diff --git a/.dockerignore b/.dockerignore index 6d9bdd0..f2429a9 100644 --- a/.dockerignore +++ b/.dockerignore @@ -1,7 +1,7 @@ /venv/ /.venv/ .git -/docker_volume/ +/models_data/ /src/tenant_test/ /huggingface/ /data/ diff --git a/.github/workflows/test.yml b/.github/workflows/test.yml index f5e711b..6d53896 100644 --- a/.github/workflows/test.yml +++ b/.github/workflows/test.yml @@ -37,8 +37,11 @@ jobs: url: http://localhost:5056 method: GET expected-status: 200 - timeout: 60000 + timeout: 240000 interval: 500 + - name: Wait for queues + run: make wait_for_queues + - name: Test with unittest run: make test diff --git a/.gitignore b/.gitignore index 62b9be0..f6b38df 100644 --- a/.gitignore +++ b/.gitignore @@ -15,7 +15,7 @@ core src/.pytest_cache outputs /performance_results/mistakes/ -/docker_volume/ +/models_data/ /huggingface/ /.ruff_cache/ /data/ diff --git a/Dockerfile b/Dockerfile index 53055bc..5d45df1 100755 --- a/Dockerfile +++ b/Dockerfile @@ -2,7 +2,7 @@ FROM pytorch/pytorch RUN apt-get update && apt-get -y -q --no-install-recommends install libgomp1 pdftohtml RUN apt-get -y install git -RUN mkdir -p /app/src /app/docker_volume +RUN mkdir -p /app/src /app/models_data RUN addgroup --system python && adduser --system --group python RUN chown -R python:python /app @@ -20,11 +20,9 @@ WORKDIR /app COPY ./src ./src ENV PYTHONPATH "${PYTHONPATH}:/app/src" -ENV NLTK_DATA=/app/docker_volume/cache/nltk_data -ENV HF_DATASETS_CACHE=/app/docker_volume/cache/HF -ENV HF_HOME=/app/docker_volume/cache/HF_home -ENV TRANSFORMERS_CACHE=/app/docker_volume/cache/Transformers -ENV HF_HOME=/app/docker_volume/cache/Transformers +ENV NLTK_DATA=/app/models_data/cache/nltk_data +ENV HF_DATASETS_CACHE=/app/models_data/cache/HF +ENV HF_HOME=/app/models_data/cache/HF_home ENV TRANSFORMERS_VERBOSITY=error ENV TRANSFORMERS_NO_ADVISORY_WARNINGS=1 ENV CUDA_VISIBLE_DEVICES=0 \ No newline at end of file diff --git a/Makefile b/Makefile index 9e9936b..efde6be 100644 --- a/Makefile +++ b/Makefile @@ -18,6 +18,9 @@ check_format: test: . .venv/bin/activate; command cd src; command python -m pytest +wait_for_queues: + . .venv/bin/activate; command cd src/scripts; command python wait_for_queues.py + remove_docker_containers: docker compose ps -q | xargs docker rm @@ -46,9 +49,6 @@ stop: delete_queues: . .venv/bin/activate; python scripts/delete_queues.py -download_models: - . .venv/bin/activate; command cd src; python download_models.py - gpu: . .venv/bin/activate; command cd src; python is_gpu_available.py diff --git a/README.md b/README.md index 889b86c..e8151ae 100644 --- a/README.md +++ b/README.md @@ -266,7 +266,7 @@ If the service is running, the end point definitions can be founded in the follo The end points code can be founded inside the file `app.py`. -The errors are reported to the file `docker_volume/service.log`, if the configuration is not changed ( +The errors are reported to the file `models_data/service.log`, if the configuration is not changed ( see [Get service logs](#get-service-logs)) ## Queue processor diff --git a/docker-compose.yml b/docker-compose.yml index 4ae7165..b3f7ffd 100755 --- a/docker-compose.yml +++ b/docker-compose.yml @@ -9,7 +9,7 @@ services: context: . dockerfile: Dockerfile volumes: - - data:/app/docker_volume + - data:/app/models_data depends_on: - pdf_metadata_extraction_worker environment: @@ -29,7 +29,7 @@ services: context: . dockerfile: Dockerfile volumes: - - data:/app/docker_volume + - data:/app/models_data shm_size: '11gb' depends_on: - mongo_metadata_extraction diff --git a/gpu-docker-compose.yml b/gpu-docker-compose.yml index c67091c..80d7b7a 100755 --- a/gpu-docker-compose.yml +++ b/gpu-docker-compose.yml @@ -9,7 +9,7 @@ services: context: . dockerfile: Dockerfile volumes: - - data:/app/docker_volume + - data:/app/models_data depends_on: - mongo_metadata_extraction - pdf_metadata_extraction_worker @@ -34,7 +34,7 @@ services: context: . dockerfile: Dockerfile volumes: - - data:/app/docker_volume + - data:/app/models_data shm_size: '11gb' depends_on: - mongo_metadata_extraction diff --git a/local-docker-compose.yml b/local-docker-compose.yml index 989b0a6..07e8e7e 100755 --- a/local-docker-compose.yml +++ b/local-docker-compose.yml @@ -9,7 +9,7 @@ services: context: . dockerfile: Dockerfile volumes: - - data:/app/docker_volume + - data:/app/models_data depends_on: - mongo_metadata_extraction - pdf_metadata_extraction_worker @@ -27,7 +27,7 @@ services: context: . dockerfile: Dockerfile volumes: - - data:/app/docker_volume + - data:/app/models_data shm_size: '11gb' depends_on: - mongo_metadata_extraction diff --git a/local-gpu-docker-compose.yml b/local-gpu-docker-compose.yml index 185cd16..9020881 100755 --- a/local-gpu-docker-compose.yml +++ b/local-gpu-docker-compose.yml @@ -9,7 +9,7 @@ services: context: . dockerfile: Dockerfile volumes: - - data:/app/docker_volume + - data:/app/models_data depends_on: - mongo_metadata_extraction - pdf_metadata_extraction_worker @@ -34,7 +34,7 @@ services: context: . dockerfile: Dockerfile volumes: - - data:/app/docker_volume + - data:/app/models_data shm_size: '11gb' depends_on: - mongo_metadata_extraction diff --git a/performance_results/all_results_10____2022_10_16_11_59.md b/performance_results/all_results_10____2022_10_16_11_59.md deleted file mode 100644 index 2c92e19..0000000 --- a/performance_results/all_results_10____2022_10_16_11_59.md +++ /dev/null @@ -1,34 +0,0 @@ - ╷ ╷ ╷ ╷ - Dataset │ Method │ Training size │ Time │ Accuracy - ═══════════════════╪════════════════════════╪═══════════════╪══════╪══════════ - code spanish │ MT5TrueCaseEnglishSpa… │ 10 │ 142s │ 100% - code spanish │ MT5EnglishSpanishMeth… │ 10 │ 153s │ 100% - code spanish │ RegexMethod │ 10 │ 0s │ 100% - code spanish │ DateParserMethod │ 10 │ 2s │ 0% - country spanish │ MT5TrueCaseEnglishSpa… │ 10 │ 212s │ 94% - country spanish │ MT5EnglishSpanishMeth… │ 10 │ 246s │ 57% - country spanish │ RegexMethod │ 10 │ 0s │ 0% - country spanish │ DateParserMethod │ 10 │ 0s │ 0% - date spanish │ MT5TrueCaseEnglishSpa… │ 10 │ 214s │ 72% - date spanish │ MT5EnglishSpanishMeth… │ 10 │ 211s │ 83% - date spanish │ RegexMethod │ 10 │ 0s │ 0% - date spanish │ DateParserMethod │ 10 │ 0s │ 90% - document code │ MT5TrueCaseEnglishSpa… │ 10 │ 164s │ 97% - document code │ MT5EnglishSpanishMeth… │ 10 │ 160s │ 99% - document code │ RegexMethod │ 10 │ 0s │ 83% - document code │ DateParserMethod │ 10 │ 2s │ 0% - judge name │ MT5TrueCaseEnglishSpa… │ 10 │ 161s │ 86% - judge name │ MT5EnglishSpanishMeth… │ 10 │ 242s │ 86% - judge name │ RegexMethod │ 10 │ 0s │ 23% - judge name │ DateParserMethod │ 10 │ 8s │ 0% - vote english │ MT5TrueCaseEnglishSpa… │ 10 │ 164s │ 100% - vote english │ MT5EnglishSpanishMeth… │ 10 │ 199s │ 100% - vote english │ RegexMethod │ 10 │ 0s │ 62% - vote english │ DateParserMethod │ 10 │ 6s │ 0% - year multilingual │ MT5TrueCaseEnglishSpa… │ 10 │ 170s │ 100% - year multilingual │ MT5EnglishSpanishMeth… │ 10 │ 163s │ 100% - year multilingual │ RegexMethod │ 10 │ 0s │ 100% - year multilingual │ DateParserMethod │ 10 │ 0s │ 0% - │ │ │ │ - average │ │ │ │ 62% - ╵ ╵ ╵ ╵ diff --git a/performance_results/all_results_20____2022_10_15_23_00.md b/performance_results/all_results_20____2022_10_15_23_00.md deleted file mode 100644 index 5912542..0000000 --- a/performance_results/all_results_20____2022_10_15_23_00.md +++ /dev/null @@ -1,34 +0,0 @@ - ╷ ╷ ╷ ╷ - Dataset │ Method │ Training size │ Time │ Accuracy - ═══════════════════╪════════════════════════╪═══════════════╪══════╪══════════ - code spanish │ MT5TrueCaseEnglishSpa… │ 20 │ 167s │ 100% - code spanish │ MT5EnglishSpanishMeth… │ 20 │ 167s │ 100% - code spanish │ RegexMethod │ 20 │ 0s │ 100% - code spanish │ DateParserMethod │ 20 │ 0s │ 0% - country spanish │ MT5TrueCaseEnglishSpa… │ 20 │ 256s │ 95% - country spanish │ MT5EnglishSpanishMeth… │ 20 │ 385s │ 70% - country spanish │ RegexMethod │ 20 │ 0s │ 0% - country spanish │ DateParserMethod │ 20 │ 0s │ 0% - date spanish │ MT5TrueCaseEnglishSpa… │ 20 │ 306s │ 95% - date spanish │ MT5EnglishSpanishMeth… │ 20 │ 305s │ 88% - date spanish │ RegexMethod │ 20 │ 0s │ 0% - date spanish │ DateParserMethod │ 20 │ 0s │ 90% - document code │ MT5TrueCaseEnglishSpa… │ 20 │ 251s │ 94% - document code │ MT5EnglishSpanishMeth… │ 20 │ 292s │ 99% - document code │ RegexMethod │ 20 │ 0s │ 84% - document code │ DateParserMethod │ 20 │ 1s │ 0% - judge name │ MT5TrueCaseEnglishSpa… │ 20 │ 254s │ 91% - judge name │ MT5EnglishSpanishMeth… │ 20 │ 252s │ 93% - judge name │ RegexMethod │ 20 │ 0s │ 33% - judge name │ DateParserMethod │ 20 │ 7s │ 0% - vote english │ MT5TrueCaseEnglishSpa… │ 20 │ 255s │ 100% - vote english │ MT5EnglishSpanishMeth… │ 20 │ 255s │ 100% - vote english │ RegexMethod │ 20 │ 0s │ 62% - vote english │ DateParserMethod │ 20 │ 5s │ 0% - year multilingual │ MT5TrueCaseEnglishSpa… │ 20 │ 254s │ 100% - year multilingual │ MT5EnglishSpanishMeth… │ 20 │ 254s │ 100% - year multilingual │ RegexMethod │ 20 │ 0s │ 100% - year multilingual │ DateParserMethod │ 20 │ 0s │ 0% - │ │ │ │ - average │ │ │ │ 64% - ╵ ╵ ╵ ╵ diff --git a/performance_results/all_results_30___2022_10_10_19_10.md b/performance_results/all_results_30___2022_10_10_19_10.md deleted file mode 100644 index fc975e8..0000000 --- a/performance_results/all_results_30___2022_10_10_19_10.md +++ /dev/null @@ -1,62 +0,0 @@ - ╷ ╷ ╷ ╷ - Dataset │ Method │ Training size │ Time │ Accuracy - ═══════════════════╪════════════════════════╪═══════════════╪══════╪══════════ - code spanish │ T5ZeroShot │ 30 │ 9s │ 15% - code spanish │ MT5TrueCaseEnglishSpa… │ 30 │ 196s │ 100% - code spanish │ MT5EnglishSpanishMeth… │ 30 │ 200s │ 100% - code spanish │ T5TransformersMethod │ 30 │ 61s │ 100% - code spanish │ T5Method │ 30 │ 43s │ 100% - code spanish │ SameInputOutputMethod │ 30 │ 0s │ 0% - code spanish │ RegexMethod │ 30 │ 0s │ 100% - code spanish │ DateParserMethod │ 30 │ 2s │ 0% - country spanish │ T5ZeroShot │ 30 │ 25s │ 16% - country spanish │ MT5TrueCaseEnglishSpa… │ 30 │ 648s │ 99% - country spanish │ MT5EnglishSpanishMeth… │ 30 │ 484s │ 81% - country spanish │ T5TransformersMethod │ 30 │ 164s │ 66% - country spanish │ T5Method │ 30 │ 83s │ 61% - country spanish │ SameInputOutputMethod │ 30 │ 0s │ 0% - country spanish │ RegexMethod │ 30 │ 0s │ 0% - country spanish │ DateParserMethod │ 30 │ 0s │ 0% - date spanish │ T5ZeroShot │ 30 │ 30s │ 0% - date spanish │ MT5TrueCaseEnglishSpa… │ 30 │ 403s │ 89% - date spanish │ MT5EnglishSpanishMeth… │ 30 │ 490s │ 91% - date spanish │ T5TransformersMethod │ 30 │ 132s │ 79% - date spanish │ T5Method │ 30 │ 88s │ 80% - date spanish │ SameInputOutputMethod │ 30 │ 0s │ 0% - date spanish │ RegexMethod │ 30 │ 0s │ 0% - date spanish │ DateParserMethod │ 30 │ 0s │ 91% - document code │ T5ZeroShot │ 30 │ 24s │ 93% - document code │ MT5TrueCaseEnglishSpa… │ 30 │ 355s │ 97% - document code │ MT5EnglishSpanishMeth… │ 30 │ 608s │ 97% - document code │ T5TransformersMethod │ 30 │ 120s │ 94% - document code │ T5Method │ 30 │ 56s │ 97% - document code │ SameInputOutputMethod │ 30 │ 0s │ 0% - document code │ RegexMethod │ 30 │ 0s │ 81% - document code │ DateParserMethod │ 30 │ 1s │ 0% - judge name │ T5ZeroShot │ 30 │ 17s │ 11% - judge name │ MT5TrueCaseEnglishSpa… │ 30 │ 363s │ 94% - judge name │ MT5EnglishSpanishMeth… │ 30 │ 360s │ 94% - judge name │ T5TransformersMethod │ 30 │ 126s │ 44% - judge name │ T5Method │ 30 │ 60s │ 36% - judge name │ SameInputOutputMethod │ 30 │ 0s │ 0% - judge name │ RegexMethod │ 30 │ 0s │ 36% - judge name │ DateParserMethod │ 30 │ 5s │ 0% - vote english │ T5ZeroShot │ 30 │ 16s │ 0% - vote english │ MT5TrueCaseEnglishSpa… │ 30 │ 362s │ 100% - vote english │ MT5EnglishSpanishMeth… │ 30 │ 360s │ 100% - vote english │ T5TransformersMethod │ 30 │ 92s │ 100% - vote english │ T5Method │ 30 │ 57s │ 100% - vote english │ SameInputOutputMethod │ 30 │ 0s │ 0% - vote english │ RegexMethod │ 30 │ 0s │ 67% - vote english │ DateParserMethod │ 30 │ 4s │ 0% - year multilingual │ T5ZeroShot │ 30 │ 15s │ 61% - year multilingual │ MT5TrueCaseEnglishSpa… │ 30 │ 366s │ 100% - year multilingual │ MT5EnglishSpanishMeth… │ 30 │ 363s │ 99% - year multilingual │ T5TransformersMethod │ 30 │ 93s │ 100% - year multilingual │ T5Method │ 30 │ 53s │ 100% - year multilingual │ SameInputOutputMethod │ 30 │ 0s │ 0% - year multilingual │ RegexMethod │ 30 │ 0s │ 100% - year multilingual │ DateParserMethod │ 30 │ 0s │ 0% - │ │ │ │ - average │ │ │ │ 57% - ╵ ╵ ╵ ╵ diff --git a/performance_results/all_results_5____2022_10_15_21_53.md b/performance_results/all_results_5____2022_10_15_21_53.md deleted file mode 100644 index 30ff6ab..0000000 --- a/performance_results/all_results_5____2022_10_15_21_53.md +++ /dev/null @@ -1,34 +0,0 @@ - ╷ ╷ ╷ ╷ - Dataset │ Method │ Training size │ Time │ Accuracy - ═══════════════════╪════════════════════════╪═══════════════╪══════╪══════════ - code spanish │ MT5TrueCaseEnglishSpa… │ 5 │ 96s │ 33% - code spanish │ MT5EnglishSpanishMeth… │ 5 │ 86s │ 100% - code spanish │ RegexMethod │ 5 │ 0s │ 100% - code spanish │ DateParserMethod │ 5 │ 1s │ 0% - country spanish │ MT5TrueCaseEnglishSpa… │ 5 │ 123s │ 87% - country spanish │ MT5EnglishSpanishMeth… │ 5 │ 137s │ 21% - country spanish │ RegexMethod │ 5 │ 0s │ 0% - country spanish │ DateParserMethod │ 5 │ 0s │ 0% - date spanish │ MT5TrueCaseEnglishSpa… │ 5 │ 153s │ 58% - date spanish │ MT5EnglishSpanishMeth… │ 5 │ 152s │ 58% - date spanish │ RegexMethod │ 5 │ 0s │ 0% - date spanish │ DateParserMethod │ 5 │ 0s │ 91% - document code │ MT5TrueCaseEnglishSpa… │ 5 │ 112s │ 96% - document code │ MT5EnglishSpanishMeth… │ 5 │ 112s │ 99% - document code │ RegexMethod │ 5 │ 0s │ 82% - document code │ DateParserMethod │ 5 │ 2s │ 0% - judge name │ MT5TrueCaseEnglishSpa… │ 5 │ 104s │ 69% - judge name │ MT5EnglishSpanishMeth… │ 5 │ 104s │ 77% - judge name │ RegexMethod │ 5 │ 0s │ 23% - judge name │ DateParserMethod │ 5 │ 9s │ 0% - vote english │ MT5TrueCaseEnglishSpa… │ 5 │ 113s │ 100% - vote english │ MT5EnglishSpanishMeth… │ 5 │ 113s │ 99% - vote english │ RegexMethod │ 5 │ 0s │ 63% - vote english │ DateParserMethod │ 5 │ 6s │ 0% - year multilingual │ MT5TrueCaseEnglishSpa… │ 5 │ 105s │ 100% - year multilingual │ MT5EnglishSpanishMeth… │ 5 │ 106s │ 100% - year multilingual │ RegexMethod │ 5 │ 0s │ 100% - year multilingual │ DateParserMethod │ 5 │ 0s │ 0% - │ │ │ │ - average │ │ │ │ 56% - ╵ ╵ ╵ ╵ diff --git a/performance_results/best_all.md b/performance_results/best_all.md deleted file mode 100644 index e9de359..0000000 --- a/performance_results/best_all.md +++ /dev/null @@ -1,54 +0,0 @@ - ╷ ╷ ╷ ╷ ╷ - Dataset │ Method │ Train size │ Test size │ Time │ Accuracy - ═══════════════════╪═══════════════════════╪════════════╪═══════════╪═════════╪══════════ - code spanish │ MT5EnglishSpanishMeth…│ 5 │ 21 │ 183s │ 100% - country spanish │ MT5TrueCaseEnglishSp… │ 5 │ 95 │ 260s │ 87% - date spanish │ DateParserMethod… │ 5 │ 95 │ 305s │ 91% - document code │ MT5EnglishSpanishMeth…│ 5 │ 95 │ 226s │ 99% - judge name │ MT5EnglishSpanishMeth…│ 5 │ 61 │ 217s │ 77% - vote english │ MT5TrueCaseEnglishSp… │ 5 │ 95 │ 232s │ 100% - year multilingual │ MT5TrueCaseEnglishSp… │ 5 │ 95 │ 211s │ 100% - - average 93% - - - ╷ ╷ ╷ ╷ ╷ - Dataset │ Method │ Train size │ Test size │ Time │ Accuracy - ═══════════════════╪═══════════════════════╪════════════╪═══════════╪═════════╪══════════ - code spanish │ MT5TrueCaseEnglishSp… │ 10 │ 16 │ 297s │ 100% - country spanish │ MT5TrueCaseEnglishSp… │ 10 │ 90 │ 458s │ 94% - date spanish │ DateParserMethod… │ 10 │ 90 │ 425s │ 90% - document code │ MT5EnglishSpanishMeth…│ 10 │ 90 │ 326s │ 99% - judge name │ MT5TrueCaseEnglishSpa…│ 10 │ 56 │ 411s │ 86% - vote english │ MT5TrueCaseEnglishSp… │ 10 │ 90 │ 370s │ 100% - year multilingual │ MT5TrueCaseEnglishSp… │ 10 │ 90 │ 333s │ 100% - - average 96% - - - ╷ ╷ ╷ ╷ ╷ - Dataset │ Method │ Train size │ Test size │ Time │ Accuracy - ═══════════════════╪═══════════════════════╪════════════╪═══════════╪═════════╪══════════ - code spanish │ MT5TrueCaseEnglishSp… │ 13 │ 13 │ 334s │ 100% - country spanish │ MT5TrueCaseEnglishSp… │ 20 │ 80 │ 642s │ 95% - date spanish │ MT5TrueCaseEnglishSpa…│ 20 │ 80 │ 611s │ 95% - document code │ MT5EnglishSpanishMeth…│ 20 │ 80 │ 545s │ 99% - judge name │ MT5EnglishSpanishMeth…│ 20 │ 46 │ 513s │ 93% - vote english │ MT5TrueCaseEnglishSp… │ 20 │ 80 │ 515s │ 100% - year multilingual │ MT5TrueCaseEnglishSp… │ 20 │ 80 │ 508s │ 100% - - average 97% - - - ╷ ╷ ╷ ╷ ╷ - Dataset │ Method │ Train size │ Test size │ Time │ Accuracy - ═══════════════════╪═══════════════════════╪════════════╪═══════════╪═════════╪══════════ - code spanish │ MT5TrueCaseEnglishSp… │ 13 │ 13 │ 510s │ 100% - country spanish │ MT5TrueCaseEnglishSp… │ 30 │ 70 │ 1404s │ 99% - date spanish │ MT5EnglishSpanishMet… │ 30 │ 70 │ 1143s │ 91% - document code │ MT5TrueCaseEnglishSp… │ 30 │ 70 │ 1164s │ 97% - judge name │ MT5TrueCaseEnglishSp… │ 30 │ 36 │ 932s │ 94% - vote english │ MT5TrueCaseEnglishSp… │ 30 │ 70 │ 892s │ 100% - year multilingual │ MT5TrueCaseEnglishSp… │ 30 │ 70 │ 890s │ 100% - - average 97% \ No newline at end of file diff --git a/performance_results/best_results_10____2022_10_16_11_59.md b/performance_results/best_results_10____2022_10_16_11_59.md deleted file mode 100644 index 367b48e..0000000 --- a/performance_results/best_results_10____2022_10_16_11_59.md +++ /dev/null @@ -1,12 +0,0 @@ - ╷ ╷ ╷ ╷ ╷ - Dataset │ Method │ Train size │ Test size │ Time │ Accuracy - ═══════════════════╪═══════════════════════╪════════════╪═══════════╪═════════╪══════════ - code spanish │ MT5TrueCaseEnglishSp… │ 10 │ 16 │ 297s │ 100% - country spanish │ MT5TrueCaseEnglishSp… │ 10 │ 90 │ 458s │ 94% - date spanish │ DateParserMethod… │ 10 │ 90 │ 425s │ 90% - document code │ MT5EnglishSpanishMeth…│ 10 │ 90 │ 326s │ 99% - judge name │ MT5TrueCaseEnglishSpa…│ 10 │ 56 │ 411s │ 86% - vote english │ MT5TrueCaseEnglishSp… │ 10 │ 90 │ 370s │ 100% - year multilingual │ MT5TrueCaseEnglishSp… │ 10 │ 90 │ 333s │ 100% - - average 96% diff --git a/performance_results/best_results_20____2022_10_15_23_00.md b/performance_results/best_results_20____2022_10_15_23_00.md deleted file mode 100644 index 597acca..0000000 --- a/performance_results/best_results_20____2022_10_15_23_00.md +++ /dev/null @@ -1,12 +0,0 @@ - ╷ ╷ ╷ ╷ ╷ - Dataset │ Method │ Train size │ Test size │ Time │ Accuracy - ═══════════════════╪═══════════════════════╪════════════╪═══════════╪═════════╪══════════ - code spanish │ MT5TrueCaseEnglishSp… │ 13 │ 13 │ 334s │ 100% - country spanish │ MT5TrueCaseEnglishSp… │ 20 │ 80 │ 642s │ 95% - date spanish │ MT5TrueCaseEnglishSpa…│ 20 │ 80 │ 611s │ 95% - document code │ MT5EnglishSpanishMeth…│ 20 │ 80 │ 545s │ 99% - judge name │ MT5EnglishSpanishMeth…│ 20 │ 46 │ 513s │ 93% - vote english │ MT5TrueCaseEnglishSp… │ 20 │ 80 │ 515s │ 100% - year multilingual │ MT5TrueCaseEnglishSp… │ 20 │ 80 │ 508s │ 100% - - average 97% diff --git a/performance_results/best_results_30____2022_10_17_15_51.md b/performance_results/best_results_30____2022_10_17_15_51.md deleted file mode 100644 index 205db2f..0000000 --- a/performance_results/best_results_30____2022_10_17_15_51.md +++ /dev/null @@ -1,13 +0,0 @@ - ╷ ╷ ╷ ╷ ╷ - Dataset │ Method │ Train size │ Test size │ Time │ Accuracy - ═══════════════════╪═══════════════════════╪════════════╪═══════════╪═════════╪══════════ - code spanish │ MT5TrueCaseEnglishSp… │ 13 │ 13 │ 510s │ 100% - country spanish │ MT5TrueCaseEnglishSp… │ 30 │ 70 │ 1404s │ 99% - date spanish │ MT5EnglishSpanishMet… │ 30 │ 70 │ 1143s │ 91% - document code │ MT5TrueCaseEnglishSp… │ 30 │ 70 │ 1164s │ 97% - judge name │ MT5TrueCaseEnglishSp… │ 30 │ 36 │ 932s │ 94% - vote english │ MT5TrueCaseEnglishSp… │ 30 │ 70 │ 892s │ 100% - year multilingual │ MT5TrueCaseEnglishSp… │ 30 │ 70 │ 890s │ 100% - - average 97% - diff --git a/performance_results/best_results_5____2022_10_15_21_53.md b/performance_results/best_results_5____2022_10_15_21_53.md deleted file mode 100644 index 5bea837..0000000 --- a/performance_results/best_results_5____2022_10_15_21_53.md +++ /dev/null @@ -1,13 +0,0 @@ - ╷ ╷ ╷ ╷ ╷ - Dataset │ Method │ Train size │ Test size │ Time │ Accuracy - ═══════════════════╪═══════════════════════╪════════════╪═══════════╪═════════╪══════════ - code spanish │ MT5EnglishSpanishMeth…│ 5 │ 21 │ 183s │ 100% - country spanish │ MT5TrueCaseEnglishSp… │ 5 │ 95 │ 260s │ 87% - date spanish │ DateParserMethod… │ 5 │ 95 │ 305s │ 91% - document code │ MT5EnglishSpanishMeth…│ 5 │ 95 │ 226s │ 99% - judge name │ MT5EnglishSpanishMeth…│ 5 │ 61 │ 217s │ 77% - vote english │ MT5TrueCaseEnglishSp… │ 5 │ 95 │ 232s │ 100% - year multilingual │ MT5TrueCaseEnglishSp… │ 5 │ 95 │ 211s │ 100% - - average 93% - diff --git a/performance_results/flan_30____2022_10_28_10_24.md b/performance_results/flan_30____2022_10_28_10_24.md deleted file mode 100644 index f2aab93..0000000 --- a/performance_results/flan_30____2022_10_28_10_24.md +++ /dev/null @@ -1,14 +0,0 @@ - ╷ ╷ ╷ ╷ ╷ - Dataset │ Method │ Train size │ Test size │ Time │ Accuracy - ═════════════════╪═════════════════╪════════════╪═══════════╪══════╪══════════ - code spanish │ FlanT5TrueCase… │ 13 │ 13 │ 21s │ 100% - country spanish │ FlanT5TrueCase… │ 30 │ 70 │ 37s │ 84% - date spanish │ FlanT5TrueCase… │ 30 │ 70 │ 30s │ 90% - document code │ FlanT5TrueCase… │ 30 │ 70 │ 33s │ 97% - judge name │ FlanT5TrueCase… │ 30 │ 36 │ 38s │ 56% - vote english │ FlanT5TrueCase… │ 30 │ 70 │ 29s │ 100% - year │ FlanT5TrueCase… │ 30 │ 70 │ 27s │ 100% - multilingual │ │ │ │ │ - │ │ │ │ │ - average │ │ │ │ │ 90% - ╵ ╵ ╵ ╵ ╵ diff --git a/performance_results/flan_all_results_5____2022_10_24_11_04.md b/performance_results/flan_all_results_5____2022_10_24_11_04.md deleted file mode 100644 index a59b919..0000000 --- a/performance_results/flan_all_results_5____2022_10_24_11_04.md +++ /dev/null @@ -1,14 +0,0 @@ - ╷ ╷ ╷ ╷ ╷ - Dataset │ Method │ Train size │ Test size │ Time │ Accuracy - ═════════════════╪═════════════════╪════════════╪═══════════╪══════╪══════════ - code spanish │ FlanT5TrueCase… │ 5 │ 21 │ 34s │ 100% - country spanish │ FlanT5TrueCase… │ 5 │ 95 │ 53s │ 73% - date spanish │ FlanT5TrueCase… │ 5 │ 95 │ 58s │ 44% - document code │ FlanT5TrueCase… │ 5 │ 95 │ 50s │ 98% - judge name │ FlanT5TrueCase… │ 5 │ 61 │ 54s │ 62% - vote english │ FlanT5TrueCase… │ 5 │ 95 │ 51s │ 97% - year │ FlanT5TrueCase… │ 5 │ 95 │ 48s │ 100% - multilingual │ │ │ │ │ - │ │ │ │ │ - average │ │ │ │ │ 82% - ╵ ╵ ╵ ╵ ╵ diff --git a/performance_results/paragraph_selector_2023_10_10_17_38.txt b/performance_results/paragraph_selector_2023_10_10_17_38.txt deleted file mode 100644 index 7db38a1..0000000 --- a/performance_results/paragraph_selector_2023_10_10_17_38.txt +++ /dev/null @@ -1,114 +0,0 @@ - │ │ Train │ Test │ │ - Dataset │ Method │ size │ size │ Time │ Acc. - ═════════════════════════════╪════════════════╪════════╪═══════╪══════╪══════ - - decides │ titles_history │ 82 │ 55 │ 49s │ 87% - signatories │ titles_history │ 82 │ 55 │ 6s │ 98% - first paragraph having seen │ titles_history │ 82 │ 55 │ 14s │ 96% - secretary │ titles_history │ 82 │ 55 │ 4s │ 99% - president │ titles_history │ 82 │ 55 │ 5s │ 98% - date │ titles_history │ 82 │ 55 │ 6s │ 98% - plan many date │ titles_history │ 95 │ 64 │ 10s │ 98% - plan many title │ titles_history │ 95 │ 64 │ 11s │ 98% - semantic president │ titles_history │ 150 │ 100 │ 283s │ 76% - Average │ │ 0 │ 0 │ 0s │ 93% - │ │ │ │ │ - average │ │ │ │ │ 94% - - title │ base_frequent_words │ 15 │ 11 │ 2s │ 83% - decides │ base_frequent_words │ 82 │ 55 │ 45s │ 84% - signatories │ base_frequent_words │ 82 │ 55 │ 5s │ 97% - first paragraph having │ base_frequent_words │ 82 │ 55 │ 14s │ 96% - seen │ │ │ │ │ - secretary │ base_frequent_words │ 82 │ 55 │ 4s │ 100% - president │ base_frequent_words │ 82 │ 55 │ 4s │ 100% - date │ base_frequent_words │ 82 │ 55 │ 6s │ 99% - plan many date │ base_frequent_words │ 95 │ 64 │ 9s │ 98% - plan many title │ base_frequent_words │ 95 │ 64 │ 11s │ 99% - semantic president │ base_frequent_words │ 150 │ 100 │ 287s │ 76% - Average │ │ 0 │ 0 │ 0s │ 93% - │ │ │ │ │ - average │ │ │ │ │ 93% - - - title │ next_previous_title │ 15 │ 11 │ 1s │ 83% - decides │ next_previous_title │ 82 │ 55 │ 53s │ 81% - signatories │ next_previous_title │ 82 │ 55 │ 5s │ 98% - first paragraph having │ next_previous_title │ 82 │ 55 │ 15s │ 96% - seen │ │ │ │ │ - secretary │ next_previous_title │ 82 │ 55 │ 4s │ 96% - president │ next_previous_title │ 82 │ 55 │ 4s │ 97% - date │ next_previous_title │ 82 │ 55 │ 6s │ 95% - plan many date │ next_previous_title │ 95 │ 64 │ 9s │ 99% - plan many title │ next_previous_title │ 95 │ 64 │ 10s │ 99% - semantic president │ next_previous_title │ 150 │ 100 │ 325s │ 77% - Average │ │ 0 │ 0 │ 0s │ 92% - - - title │ frequent_6_words │ 15 │ 11 │ 2s │ 83% - decides │ frequent_6_words │ 82 │ 55 │ 56s │ 84% - signatories │ frequent_6_words │ 82 │ 55 │ 6s │ 98% - first paragraph having │ frequent_6_words │ 82 │ 55 │ 16s │ 96% - seen │ │ │ │ │ - secretary │ frequent_6_words │ 82 │ 55 │ 5s │ 96% - president │ frequent_6_words │ 82 │ 55 │ 4s │ 97% - date │ frequent_6_words │ 82 │ 55 │ 6s │ 97% - plan many date │ frequent_6_words │ 95 │ 64 │ 10s │ 98% - plan many title │ frequent_6_words │ 95 │ 64 │ 11s │ 99% - semantic president │ frequent_6_words │ 150 │ 100 │ 332s │ 76% - Average │ │ 0 │ 0 │ 0s │ 92% - - title │ best_features │ 15 │ 11 │ 2s │ 83% - decides │ best_features │ 82 │ 55 │ 51s │ 85% - signatories │ best_features │ 82 │ 55 │ 7s │ 98% - first paragraph having seen │ best_features │ 82 │ 55 │ 15s │ 94% - secretary │ best_features │ 82 │ 55 │ 7s │ 96% - president │ best_features │ 82 │ 55 │ 5s │ 97% - date │ best_features │ 82 │ 55 │ 7s │ 97% - plan many date │ best_features │ 95 │ 64 │ 10s │ 99% - plan many title │ best_features │ 95 │ 64 │ 12s │ 99% - semantic president │ best_features │ 150 │ 100 │ 303s │ 77% - Average │ │ 0 │ 0 │ 0s │ 92% - - title │ best_features_10 │ 15 │ 11 │ 2s │ 83% - decides │ best_features_10 │ 82 │ 55 │ 49s │ 85% - signatories │ best_features_10 │ 82 │ 55 │ 6s │ 97% - first paragraph having │ best_features_10 │ 82 │ 55 │ 21s │ 96% - seen │ │ │ │ │ - secretary │ best_features_10 │ 82 │ 55 │ 5s │ 96% - president │ best_features_10 │ 82 │ 55 │ 5s │ 97% - date │ best_features_10 │ 82 │ 55 │ 7s │ 97% - plan many date │ best_features_10 │ 95 │ 64 │ 11s │ 98% - plan many title │ best_features_10 │ 95 │ 64 │ 15s │ 99% - semantic president │ best_features_10 │ 150 │ 100 │ 304s │ 76% - Average │ │ 0 │ 0 │ 0s │ 93% - - title │ avoiding_words │ 15 │ 11 │ 2s │ 83% - decides │ avoiding_words │ 82 │ 55 │ 131s │ 86% - signatories │ avoiding_words │ 82 │ 55 │ 9s │ 96% - first paragraph having seen │ avoiding_words │ 82 │ 55 │ 21s │ 96% - secretary │ avoiding_words │ 82 │ 55 │ 5s │ 96% - president │ avoiding_words │ 82 │ 55 │ 5s │ 97% - date │ avoiding_words │ 82 │ 55 │ 8s │ 97% - plan many date │ avoiding_words │ 95 │ 64 │ 23s │ 98% - plan many title │ avoiding_words │ 95 │ 64 │ 13s │ 99% - semantic president │ avoiding_words │ 150 │ 100 │ 575s │ 77% - Average │ │ 0 │ 0 │ 0s │ 93% - - - title │ common_words_weights │ 15 │ 11 │ 2s │ 83% - decides │ common_words_weights │ 82 │ 55 │ 45s │ 82% - signatories │ common_words_weights │ 82 │ 55 │ 5s │ 98% - first paragraph having │ common_words_weights │ 82 │ 55 │ 13s │ 96% - seen │ │ │ │ │ - secretary │ common_words_weights │ 82 │ 55 │ 4s │ 100% - president │ common_words_weights │ 82 │ 55 │ 4s │ 100% - date │ common_words_weights │ 82 │ 55 │ 5s │ 98% - plan many date │ common_words_weights │ 95 │ 64 │ 9s │ 98% - plan many title │ common_words_weights │ 95 │ 64 │ 10s │ 99% - semantic president │ common_words_weights │ 150 │ 100 │ 268s │ 76% - Average │ │ 0 │ 0 │ 0s │ 93% - │ │ │ │ │ - average │ │ │ │ │ 93% - - diff --git a/performance_results/segment_selector.md b/performance_results/segment_selector.md deleted file mode 100644 index bbf61e5..0000000 --- a/performance_results/segment_selector.md +++ /dev/null @@ -1,49 +0,0 @@ -``` -+----------------------------------------------------------------------------------------+ -|method |dataset | precision| recall| seconds| -+------------------------+--------------------------------+----------+----------+--------+ -|FastSegmentSelector |date | 70.37| 27.54| 1| -+------------------------+--------------------------------+----------+----------+--------+ -|SegmentSelector |date | 97.1| 97.1| 6| -+------------------------+--------------------------------+----------+----------+--------+ -|FastSegmentSelector |decides | 66.67| 17.07| 1| -+------------------------+--------------------------------+----------+----------+--------+ -|SegmentSelector |decides | 84.62| 73.33| 42| -+------------------------+--------------------------------+----------+----------+--------+ -|FastSegmentSelector |first_paragraph_having_seen | 66.67| 2.9| 2| -+------------------------+--------------------------------+----------+----------+--------+ -|SegmentSelector |first_paragraph_having_seen | 100.0| 94.2| 18| -+------------------------+--------------------------------+----------+----------+--------+ -|FastSegmentSelector |plan_many_date | 51.35| 23.75| 3| -+------------------------+--------------------------------+----------+----------+--------+ -|SegmentSelector |plan_many_date | 97.56| 100.0| 12| -+------------------------+--------------------------------+----------+----------+--------+ -|FastSegmentSelector |plan_many_title | 90.48| 43.18| 3| -+------------------------+--------------------------------+----------+----------+--------+ -|SegmentSelector |plan_many_title | 86.67| 88.64| 11| -+------------------------+--------------------------------+----------+----------+--------+ -|FastSegmentSelector |president | 90.48| 27.94| 1| -+------------------------+--------------------------------+----------+----------+--------+ -|SegmentSelector |president | 90.28| 95.59| 6| -+------------------------+--------------------------------+----------+----------+--------+ -|FastSegmentSelector |rightdocs_titles | 0.0| 0.0| 0| -+------------------------+--------------------------------+----------+----------+--------+ -|SegmentSelector |rightdocs_titles | 96.97| 88.89| 3| -+------------------------+--------------------------------+----------+----------+--------+ -|FastSegmentSelector |secretary | 0.0| 0.0| 1| -+------------------------+--------------------------------+----------+----------+--------+ -|SegmentSelector |secretary | 97.01| 97.01| 6| -+------------------------+--------------------------------+----------+----------+--------+ -|FastSegmentSelector |semantic_president | 0.0| 0.0| 18| -+------------------------+--------------------------------+----------+----------+--------+ -|SegmentSelector |semantic_president | 98.96| 60.2| 210| -+------------------------+--------------------------------+----------+----------+--------+ -|FastSegmentSelector |signatories | 0.0| 0.0| 1| -+------------------------+--------------------------------+----------+----------+--------+ -|SegmentSelector |signatories | 97.58| 94.15| 7| -+------------------------+--------------------------------+----------+----------+--------+ -|FastSegmentSelector |Average | 43.6| 14.24| 3| -+------------------------+--------------------------------+----------+----------+--------+ -|SegmentSelector |Average | 94.67| 88.91| 32| -+----------------------------------------------------------------------------------------+ -``` \ No newline at end of file diff --git a/requirements.txt b/requirements.txt index c32c905..3e0c876 100644 --- a/requirements.txt +++ b/requirements.txt @@ -1,25 +1,8 @@ -git+https://github.com/huridocs/pdf-document-layout-analysis@6262a95d1dd09055556a8e081eacfe02dd308b89 -git+https://github.com/huridocs/queue-processor@716ddf050c59035583b0852dc0b78a7860ce5c05 -slugify==0.0.1 -python-Levenshtein==0.25.1 -tdda==2.0.9 -datasets==2.19.0 -evaluate==0.4.1 -pandas==2.2.2 -dateparser==1.2.0 -langcodes==3.4.0 -nltk==3.8.1 -sentencepiece==0.2.0 -accelerate==0.29.3 mongomock==4.1.2 -fasttext-wheel==0.9.2 -rich==13.7.1 -joblib==1.4.0 -tqdm==4.66.3 -rapidfuzz==3.8.1 -sentry_sdk==1.44.0 +sentry_sdk==2.8.0 pymongo==4.6.3 -graypy==2.1.0 -setfit==1.0.3 -fuzzywuzzy==0.18.0 -httpx==0.27.0 \ No newline at end of file +sentry-sdk==2.8.0 +redis==5.0.7 +requests==2.32.3 +git+https://github.com/huridocs/queue-processor@2a961d0f3e579a63a439da058a023d04973449b2 +git+https://github.com/huridocs/trainable-entity-extractor@3d1ea053bf74a7288df3e155d1b7407e07c9d486 \ No newline at end of file diff --git a/src/Extractor.py b/src/Extractor.py index c0189d6..76f2166 100755 --- a/src/Extractor.py +++ b/src/Extractor.py @@ -5,42 +5,27 @@ from time import time import pymongo - -from config import MONGO_PORT, MONGO_HOST, DATA_PATH, config_logger -from data.ExtractionIdentifier import ExtractionIdentifier -from data.LabeledData import LabeledData -from data.LogsMessage import Severity -from data.Option import Option - -from data.PredictionData import PredictionData -from data.PredictionSample import PredictionSample -from data.SegmentationData import SegmentationData -from data.Suggestion import Suggestion +from trainable_entity_extractor.FilterValidSegmentsPages import FilterValidSegmentsPages +from trainable_entity_extractor.TrainableEntityExtractor import TrainableEntityExtractor +from trainable_entity_extractor.XmlFile import XmlFile +from trainable_entity_extractor.config import config_logger +from trainable_entity_extractor.data.ExtractionData import ExtractionData +from trainable_entity_extractor.data.ExtractionIdentifier import ExtractionIdentifier +from trainable_entity_extractor.data.LabeledData import LabeledData +from trainable_entity_extractor.data.Option import Option +from trainable_entity_extractor.data.PdfData import PdfData +from trainable_entity_extractor.data.PredictionData import PredictionData +from trainable_entity_extractor.data.PredictionSample import PredictionSample +from trainable_entity_extractor.data.SegmentationData import SegmentationData +from trainable_entity_extractor.data.Suggestion import Suggestion +from trainable_entity_extractor.data.TrainingSample import TrainingSample +from trainable_entity_extractor.send_logs import send_logs + +from config import MONGO_PORT, MONGO_HOST, DATA_PATH from data.ExtractionTask import ExtractionTask -from FilterValidSegmentsPages import FilterValidSegmentsPages -from extractors.ExtractorBase import ExtractorBase -from extractors.NaiveExtractor import NaiveExtractor -from extractors.pdf_to_text_extractor.PdfToTextExtractor import PdfToTextExtractor -from data.PdfData import PdfData - -from XmlFile import XmlFile -from data.ExtractionData import ExtractionData -from data.TrainingSample import TrainingSample -from extractors.pdf_to_multi_option_extractor.PdfToMultiOptionExtractor import PdfToMultiOptionExtractor -from extractors.text_to_multi_option_extractor.TextToMultiOptionExtractor import TextToMultiOptionExtractor -from extractors.text_to_text_extractor.TextToTextExtractor import TextToTextExtractor -from send_logs import send_logs class Extractor: - EXTRACTORS: list[type[ExtractorBase]] = [ - TextToMultiOptionExtractor, - PdfToMultiOptionExtractor, - PdfToTextExtractor, - TextToTextExtractor, - NaiveExtractor, - ] - CREATE_MODEL_TASK_NAME = "create_model" SUGGESTIONS_TASK_NAME = "suggestions" @@ -79,7 +64,9 @@ def get_extraction_data_for_training(self, labeled_data_list: list[LabeledData]) pdf_data = PdfData.from_xml_file(xml_file, segmentation_data, page_numbers_to_keep) else: pdf_data = PdfData.from_texts([""]) - sample = TrainingSample(pdf_data=pdf_data, labeled_data=labeled_data, tags_texts=[labeled_data.source_text]) + sample = TrainingSample( + pdf_data=pdf_data, labeled_data=labeled_data, segment_selector_texts=[labeled_data.source_text] + ) multi_option_samples.append(sample) return ExtractionData( @@ -94,27 +81,9 @@ def create_models(self) -> (bool, str): send_logs(self.extraction_identifier, "Loading data to create model") extraction_data: ExtractionData = self.get_extraction_data_for_training(self.get_labeled_data()) send_logs(self.extraction_identifier, f"Set data in {round(time() - start, 2)} seconds") - - if not extraction_data or not extraction_data.samples: - self.delete_training_data() - return False, "No data to create model" - - for extractor in self.EXTRACTORS: - extractor_instance = extractor(self.extraction_identifier) - - if not extractor_instance.can_be_used(extraction_data): - continue - - send_logs(self.extraction_identifier, f"Using extractor {extractor_instance.get_name()}") - send_logs(self.extraction_identifier, f"Creating models with {len(extraction_data.samples)} samples") - self.extraction_identifier.get_extractor_used_path().write_text(extractor_instance.get_name()) - self.delete_training_data() - return extractor_instance.create_model(extraction_data) - self.delete_training_data() - send_logs(self.extraction_identifier, "Error creating extractor", Severity.error) - - return False, "Error creating extractor" + trainable_entity_extractor = TrainableEntityExtractor(self.extraction_identifier) + return trainable_entity_extractor.train(extraction_data) def get_prediction_samples(self, prediction_data_list: list[PredictionData] = None) -> list[PredictionSample]: filter_valid_pages = FilterValidSegmentsPages(self.extraction_identifier) @@ -135,7 +104,7 @@ def get_prediction_samples(self, prediction_data_list: list[PredictionData] = No else: pdf_data = PdfData.from_texts([""]) - sample = PredictionSample(pdf_data=pdf_data, entity_name=entity_name, tags_texts=[prediction_data.source_text]) + sample = PredictionSample(pdf_data=pdf_data, entity_name=entity_name, source_text=prediction_data.source_text) prediction_samples.append(sample) return prediction_samples @@ -175,25 +144,8 @@ def insert_suggestions_in_db(self, suggestions: list[Suggestion]) -> (bool, str) def get_suggestions(self) -> list[Suggestion]: prediction_samples = self.get_prediction_samples(self.get_prediction_data_from_db()) - - if not self.extraction_identifier.get_extractor_used_path().exists(): - send_logs(self.extraction_identifier, f"No extractor available", Severity.error) - return [] - - extractor_name = self.extraction_identifier.get_extractor_used_path().read_text() - for extractor in self.EXTRACTORS: - extractor_instance = extractor(self.extraction_identifier) - if extractor_instance.get_name() != extractor_name: - continue - - suggestions = extractor_instance.get_suggestions(prediction_samples) - suggestions = [suggestion.mark_suggestion_if_empty() for suggestion in suggestions] - message = f"Using {extractor_instance.get_name()} to calculate {len(suggestions)} suggestions" - send_logs(self.extraction_identifier, message) - return suggestions - - send_logs(self.extraction_identifier, f"No extractor available", Severity.error) - return [] + trainable_entity_extractor = TrainableEntityExtractor(self.extraction_identifier) + return trainable_entity_extractor.predict(prediction_samples) @staticmethod def remove_old_models(extractor_identifier: ExtractionIdentifier): @@ -205,7 +157,9 @@ def remove_old_models(extractor_identifier: ExtractionIdentifier): continue for extraction_name in os.listdir(join(DATA_PATH, run_name)): - extractor_identifier_to_check = ExtractionIdentifier(run_name=run_name, extraction_name=extraction_name) + extractor_identifier_to_check = ExtractionIdentifier( + run_name=run_name, extraction_name=extraction_name, output_path=DATA_PATH + ) if extractor_identifier_to_check.is_old(): config_logger.info(f"Removing old model folder {extractor_identifier_to_check.get_path()}") shutil.rmtree(extractor_identifier_to_check.get_path(), ignore_errors=True) @@ -216,12 +170,17 @@ def calculate_task(extraction_task: ExtractionTask) -> (bool, str): run_name=extraction_task.tenant, extraction_name=extraction_task.params.id, metadata=extraction_task.params.metadata, + output_path=DATA_PATH, ) Extractor.remove_old_models(extractor_identifier) if extraction_task.task == Extractor.CREATE_MODEL_TASK_NAME: - options = extraction_task.params.options + if extraction_task.params.options: + options = extraction_task.params.options + else: + options = extractor_identifier.get_options() + multi_value = extraction_task.params.multi_value extractor = Extractor(extractor_identifier, options, multi_value) return extractor.create_models() diff --git a/src/FilterValidSegmentsPages.py b/src/FilterValidSegmentsPages.py deleted file mode 100644 index 734f296..0000000 --- a/src/FilterValidSegmentsPages.py +++ /dev/null @@ -1,152 +0,0 @@ -import json -import os -import re -from os.path import join, exists -from pathlib import Path - -from data.ExtractionIdentifier import ExtractionIdentifier -from data.LabeledData import LabeledData -from data.PredictionData import PredictionData - -MAX_PAGES = 99999 - - -class FilterValidSegmentsPages: - def __init__(self, extraction_identifier: ExtractionIdentifier): - self.labeled_data_json_path = Path(extraction_identifier.get_path(), "filter_pages.json") - self.start_gaps = [] - self.end_gaps = [] - self.valid_pages_ranges = [] - - def get_valid_pages(self, total_number_pages_per_document: list[int]) -> list[list[int]]: - if self.valid_pages_ranges == [MAX_PAGES]: - return self.get_valid_pages_when_no_labeled_data(total_number_pages_per_document) - - if min(self.start_gaps) <= min(self.end_gaps): - start = min(self.start_gaps) - end = max(self.start_gaps) + max(self.valid_pages_ranges) - return [self.get_range(start, end, number_of_pages) for number_of_pages in total_number_pages_per_document] - - valid_page_numbers_from_the_end = [] - - for number_of_pages in total_number_pages_per_document: - start = number_of_pages - max(self.end_gaps) - max(self.valid_pages_ranges) - end = number_of_pages - min(self.end_gaps) - valid_page_numbers_from_the_end.append(self.get_range(start, end, number_of_pages)) - - return valid_page_numbers_from_the_end - - def for_training(self, labeled_data_list: list[LabeledData]): - if not self.labeled_data_json_path.parent.exists(): - os.makedirs(self.labeled_data_json_path.parent) - - self.labeled_data_json_path.write_text(json.dumps([x.model_dump_json() for x in labeled_data_list])) - self.set_parameters(labeled_data_list) - pages_list = [[x.page_number for x in labeled_data.xml_segments_boxes] for labeled_data in labeled_data_list] - total_number_pages_per_document = [max(pages) if pages else 1000 for pages in pages_list] - return self.get_valid_pages(total_number_pages_per_document) - - def for_prediction(self, prediction_data_list: list[PredictionData]): - try: - with open(self.labeled_data_json_path, "r") as file: - labeled_data_dict = json.load(file) - labeled_data_list = [LabeledData(**json.loads(x)) for x in labeled_data_dict] - self.set_parameters(labeled_data_list) - except: - self.set_parameters([]) - - pages_list = [ - [x.page_number for x in prediction_data.xml_segments_boxes] for prediction_data in prediction_data_list - ] - number_pages_per_document = [max(pages) if pages else 1000 for pages in pages_list] - - return self.get_valid_pages(number_pages_per_document) - - def set_parameters(self, labeled_data_list): - if not labeled_data_list or sum([len(x.label_segments_boxes) for x in labeled_data_list]) == 0: - self.start_gaps = [0] - self.end_gaps = [0] - self.valid_pages_ranges = [MAX_PAGES] - return - - for labeled_data in labeled_data_list: - if not labeled_data.label_segments_boxes: - continue - - pages = [x.page_number for x in labeled_data.xml_segments_boxes] - number_of_pages = max(pages) if pages else 1000 - valid_page_numbers = [x.page_number for x in labeled_data.label_segments_boxes] - self.valid_pages_ranges.append(max(valid_page_numbers) - min(valid_page_numbers) + 1) - self.start_gaps.append(min(valid_page_numbers) - 1) - self.end_gaps.append(number_of_pages - max(valid_page_numbers)) - - if not self.valid_pages_ranges: - self.start_gaps = [0] - self.end_gaps = [0] - self.valid_pages_ranges = [0] - - @staticmethod - def get_range(start: int, end: int, number_pages: int) -> list[int]: - start = max(0, start - 1) - end = min(end + 1, number_pages) - return list(range(start + 1, end + 1)) - - @staticmethod - def correct_page_numbers(xml_content: str, page_numbers: list[str], ends_of_pages: list[int]): - if not page_numbers and not ends_of_pages: - return True - - if len(ends_of_pages) != len(page_numbers): - return False - - if len(page_numbers) == 1 and page_numbers[0].isnumeric(): - return True - - for page_number, next_page_number in zip(page_numbers, page_numbers[1:]): - if not page_number.isnumeric() or not next_page_number.isnumeric(): - return False - - if int(page_number) > int(next_page_number): - return False - - for page_number in page_numbers: - page_tag = re.search(f' page_tag.start()] - - if not valid_ends: - return False - - return True - - @staticmethod - def filter_xml_pages(xml_content: str, page_numbers_to_keep: list[int]): - if not page_numbers_to_keep: - return xml_content - - pages_xml = re.findall('", xml_content)] - - if not FilterValidSegmentsPages.correct_page_numbers(xml_content, page_numbers, ends_of_pages): - return xml_content - - pages_to_remove = [page_number for page_number in page_numbers if int(page_number) not in page_numbers_to_keep] - - for page_number in reversed(pages_to_remove): - page_tag = re.search(f' page_tag.start()] - removed_texts = re.sub("", "", xml_content[page_tag.start() : ends[0]]) - xml_content = "".join([xml_content[: page_tag.start()], removed_texts, xml_content[ends[0] :]]) - - return xml_content - - @staticmethod - def get_valid_pages_when_no_labeled_data(total_number_pages_per_document: list[int]) -> list[list[int]]: - valid_page_numbers = [] - for number_of_pages in total_number_pages_per_document: - valid_page_number = list(range(1, min(5, number_of_pages + 1))) - valid_page_number += list(range(number_of_pages - 3, number_of_pages + 1)) - valid_page_number = list(set([x for x in valid_page_number if x > 0])) - valid_page_numbers.append(valid_page_number) - - return valid_page_numbers diff --git a/src/XmlFile.py b/src/XmlFile.py deleted file mode 100644 index 26e083e..0000000 --- a/src/XmlFile.py +++ /dev/null @@ -1,30 +0,0 @@ -import os -import pathlib -from os.path import join - -from config import DATA_PATH -from data.ExtractionIdentifier import ExtractionIdentifier - - -class XmlFile: - def __init__(self, extraction_identifier: ExtractionIdentifier, to_train: bool, xml_file_name: str): - self.extraction_identifier = extraction_identifier - self.to_train = to_train - self.xml_file_name = xml_file_name - self.xml_file = None - self.xml_folder_path = XmlFile.get_xml_folder_path(extraction_identifier, to_train) - self.xml_file_path = os.path.join(self.xml_folder_path, self.xml_file_name) - - def save(self, file: bytes): - if not os.path.exists(self.xml_folder_path): - os.makedirs(self.xml_folder_path) - - file_path = pathlib.Path(f"{self.xml_folder_path}/{self.xml_file_name}") - file_path.write_bytes(file) - - @staticmethod - def get_xml_folder_path(extraction_identifier: ExtractionIdentifier, to_train: bool) -> str: - if to_train: - return join(extraction_identifier.get_path(), "xml_to_train") - - return join(extraction_identifier.get_path(), "xml_to_predict") diff --git a/src/app.py b/src/app.py index 374ba6b..4d63ab4 100755 --- a/src/app.py +++ b/src/app.py @@ -1,6 +1,8 @@ import os +import shutil from contextlib import asynccontextmanager import json +from os.path import join import pymongo from fastapi import FastAPI, HTTPException, UploadFile, File @@ -8,16 +10,16 @@ from sentry_sdk.integrations.asgi import SentryAsgiMiddleware import sentry_sdk - -from config import config_logger, MONGO_HOST, MONGO_PORT -from data.ExtractionIdentifier import ExtractionIdentifier -from data.LabeledData import LabeledData -from data.Option import Option +from trainable_entity_extractor.XmlFile import XmlFile +from trainable_entity_extractor.config import config_logger +from trainable_entity_extractor.data.ExtractionIdentifier import ExtractionIdentifier +from trainable_entity_extractor.data.LabeledData import LabeledData +from trainable_entity_extractor.data.PredictionData import PredictionData +from trainable_entity_extractor.data.Suggestion import Suggestion +from trainable_entity_extractor.send_logs import send_logs + +from config import MONGO_HOST, MONGO_PORT, DATA_PATH from data.Options import Options -from data.PredictionData import PredictionData -from data.Suggestion import Suggestion -from XmlFile import XmlFile -from send_logs import send_logs @asynccontextmanager @@ -60,7 +62,9 @@ async def to_train_xml_file(tenant, extraction_id, file: UploadFile = File(...)) try: filename = file.filename xml_file = XmlFile( - extraction_identifier=ExtractionIdentifier(run_name=tenant, extraction_name=extraction_id), + extraction_identifier=ExtractionIdentifier( + run_name=tenant, extraction_name=extraction_id, output_path=DATA_PATH + ), to_train=True, xml_file_name=filename, ) @@ -77,7 +81,9 @@ async def to_predict_xml_file(tenant, extraction_id, file: UploadFile = File(... try: filename = file.filename xml_file = XmlFile( - extraction_identifier=ExtractionIdentifier(run_name=tenant, extraction_name=extraction_id), + extraction_identifier=ExtractionIdentifier( + run_name=tenant, extraction_name=extraction_id, output_path=DATA_PATH + ), to_train=False, xml_file_name=filename, ) @@ -121,7 +127,7 @@ async def get_suggestions(tenant: str, extraction_id: str): suggestions_list.append(Suggestion(**document).scale_up().to_output()) pdf_metadata_extraction_db.suggestions.delete_many(suggestions_filter) - extraction_identifier = ExtractionIdentifier(run_name=tenant, extraction_name=extraction_id) + extraction_identifier = ExtractionIdentifier(run_name=tenant, extraction_name=extraction_id, output_path=DATA_PATH) send_logs(extraction_identifier, f"{len(suggestions_list)} suggestions queried") return json.dumps(suggestions_list) @@ -130,12 +136,19 @@ async def get_suggestions(tenant: str, extraction_id: str): raise HTTPException(status_code=422, detail="An error has occurred. Check graylog for more info") +@app.delete("/{tenant}/{extraction_id}") +async def get_suggestions(tenant: str, extraction_id: str): + shutil.rmtree(join(DATA_PATH, tenant, extraction_id), ignore_errors=True) + return True + + @app.post("/options") def save_options(options: Options): try: - extraction_identifier = ExtractionIdentifier(run_name=options.tenant, extraction_name=options.extraction_id) - options_list = [option.model_dump() for option in options.options] - extraction_identifier.get_options_path().write_text(json.dumps(options_list)) + extraction_identifier = ExtractionIdentifier( + run_name=options.tenant, extraction_name=options.extraction_id, output_path=DATA_PATH + ) + extraction_identifier.save_options(options.options) os.utime(extraction_identifier.get_options_path().parent) config_logger.info(f"Options {options.options[:150]} saved for {extraction_identifier}") return True diff --git a/src/config.py b/src/config.py index c5abf73..303da2f 100644 --- a/src/config.py +++ b/src/config.py @@ -1,16 +1,11 @@ -import logging import os from os.path import join from pathlib import Path -import graypy - - QUEUES_NAMES = os.environ.get("QUEUES_NAMES", "information_extraction") SERVICE_HOST = os.environ.get("SERVICE_HOST", "http://127.0.0.1") SERVICE_PORT = os.environ.get("SERVICE_PORT", "5056") -GRAYLOG_IP = os.environ.get("GRAYLOG_IP") REDIS_HOST = os.environ.get("REDIS_HOST", "127.0.0.1") REDIS_PORT = os.environ.get("REDIS_PORT", "6379") MONGO_HOST = os.environ.get("MONGO_HOST", "mongodb://127.0.0.1") @@ -20,15 +15,4 @@ APP_PATH = Path(__file__).parent.absolute() ROOT_PATH = Path(__file__).parent.parent.absolute() -DATA_PATH = join(ROOT_PATH, "docker_volume") - -HUGGINGFACE_PATH = join(ROOT_PATH, "huggingface") - -handlers = [logging.StreamHandler()] - -if GRAYLOG_IP: - handlers.append(graypy.GELFUDPHandler(GRAYLOG_IP, 12201, localname="pdf_metadata_extraction")) - -logging.root.handlers = [] -logging.basicConfig(level=logging.INFO, format="%(asctime)s [%(levelname)s] %(message)s", handlers=handlers) -config_logger = logging.getLogger(__name__) +DATA_PATH = join(ROOT_PATH, "models_data") diff --git a/src/data/ExtractionData.py b/src/data/ExtractionData.py deleted file mode 100644 index 51a00f6..0000000 --- a/src/data/ExtractionData.py +++ /dev/null @@ -1,13 +0,0 @@ -from dataclasses import dataclass - -from data.ExtractionIdentifier import ExtractionIdentifier -from data.Option import Option -from data.TrainingSample import TrainingSample - - -@dataclass -class ExtractionData: - samples: list[TrainingSample] - options: list[Option] = None - multi_value: bool = False - extraction_identifier: ExtractionIdentifier = None diff --git a/src/data/ExtractionIdentifier.py b/src/data/ExtractionIdentifier.py deleted file mode 100644 index f75425f..0000000 --- a/src/data/ExtractionIdentifier.py +++ /dev/null @@ -1,33 +0,0 @@ -import os -from os.path import join, exists -from pathlib import Path -from time import time - -from pydantic import BaseModel - -from config import DATA_PATH - - -class ExtractionIdentifier(BaseModel): - run_name: str - extraction_name: str - metadata: dict[str, str] = dict() - - def get_path(self): - return join(DATA_PATH, self.run_name, self.extraction_name) - - def get_options_path(self): - path = Path(join(DATA_PATH, self.run_name, f"{self.extraction_name}_options.json")) - if not exists(path.parent): - os.makedirs(path.parent, exist_ok=True) - return path - - def get_extractor_used_path(self) -> Path: - path = Path(join(DATA_PATH, self.run_name, f"{self.extraction_name}.txt")) - if not exists(path.parent): - os.makedirs(path.parent, exist_ok=True) - return path - - def is_old(self): - path = self.get_path() - return exists(path) and os.path.isdir(path) and os.path.getmtime(path) < (time() - (2 * 24 * 3600)) diff --git a/src/data/LabeledData.py b/src/data/LabeledData.py deleted file mode 100644 index 4a7a5aa..0000000 --- a/src/data/LabeledData.py +++ /dev/null @@ -1,32 +0,0 @@ -from pydantic import BaseModel - -from data.Option import Option -from data.SegmentBox import SegmentBox - - -class LabeledData(BaseModel): - tenant: str = "" - id: str = "" - xml_file_name: str = "" - entity_name: str = "" - language_iso: str = "" - label_text: str = "" - empty_value: bool = False - values: list[Option] = list() - source_text: str = "" - page_width: float = 0 - page_height: float = 0 - xml_segments_boxes: list[SegmentBox] = list() - label_segments_boxes: list[SegmentBox] = list() - - def to_dict(self): - labeled_data_dict = self.model_dump() - labeled_data_dict["xml_segments_boxes"] = [x.to_dict() for x in self.xml_segments_boxes] - labeled_data_dict["label_segments_boxes"] = [x.to_dict() for x in self.label_segments_boxes] - return labeled_data_dict - - def scale_down_labels(self): - for label in self.label_segments_boxes: - label.scale_down() - - return self diff --git a/src/data/LogsMessage.py b/src/data/LogsMessage.py deleted file mode 100644 index 7b1eaba..0000000 --- a/src/data/LogsMessage.py +++ /dev/null @@ -1,19 +0,0 @@ -import json -from enum import Enum - -from pydantic import BaseModel - - -class Severity(str, Enum): - error = "error" - info = "info" - - -class LogsMessage(BaseModel): - tenant: str - extraction_name: str - severity: Severity - message: str - - def dump(self): - return json.loads(self.model_dump_json()) diff --git a/src/data/Option.py b/src/data/Option.py deleted file mode 100644 index c8a8100..0000000 --- a/src/data/Option.py +++ /dev/null @@ -1,6 +0,0 @@ -from pydantic import BaseModel - - -class Option(BaseModel): - id: str - label: str diff --git a/src/data/Options.py b/src/data/Options.py index ac7c7c6..0d15b0c 100644 --- a/src/data/Options.py +++ b/src/data/Options.py @@ -1,6 +1,5 @@ from pydantic import BaseModel - -from data.Option import Option +from trainable_entity_extractor.data.Option import Option class Options(BaseModel): diff --git a/src/data/Params.py b/src/data/Params.py index 1e10c24..ea6f2f1 100644 --- a/src/data/Params.py +++ b/src/data/Params.py @@ -1,6 +1,5 @@ from pydantic import BaseModel - -from data.Option import Option +from trainable_entity_extractor.data.Option import Option class Params(BaseModel): diff --git a/src/data/PdfData.py b/src/data/PdfData.py deleted file mode 100644 index 21b3c62..0000000 --- a/src/data/PdfData.py +++ /dev/null @@ -1,99 +0,0 @@ -from typing import Optional - -from fast_trainer.Paragraph import Paragraph - -from data.SegmentationData import SegmentationData -from pdf_features.PdfFeatures import PdfFeatures - -from FilterValidSegmentsPages import FilterValidSegmentsPages -from data.PdfDataSegment import PdfDataSegment -from XmlFile import XmlFile - - -class PdfData: - def __init__(self, pdf_features: Optional[PdfFeatures], file_name="", file_type: str = ""): - self.pdf_features: PdfFeatures = pdf_features - if not file_name and pdf_features: - self.file_name = pdf_features.file_name - else: - self.file_name = file_name - self.file_type = file_type - self.pdf_path = "" - self.pdf_data_segments: list[PdfDataSegment] = list() - - def set_segments_from_segmentation_data(self, segmentation_data: SegmentationData): - pdf_segments_to_merge = dict() - pdf_segments_from_segmentation = [ - segment_box.to_pdf_segment() for segment_box in segmentation_data.xml_segments_boxes - ] - for page, token in self.pdf_features.loop_tokens(): - segment_from_tag: PdfDataSegment = PdfDataSegment.from_pdf_token(token) - - intersects_segmentation = [ - segmentation_segment - for segmentation_segment in pdf_segments_from_segmentation - if segmentation_segment.intersects(segment_from_tag) - ] - - if not intersects_segmentation: - self.pdf_data_segments.append(segment_from_tag) - continue - - segment_from_tag.segment_type = intersects_segmentation[0].segment_type - pdf_segments_to_merge.setdefault(intersects_segmentation[0], []).append(segment_from_tag) - - self.pdf_data_segments.extend( - [ - PdfDataSegment.from_list_to_merge(each_pdf_segments_to_merge) - for each_pdf_segments_to_merge in pdf_segments_to_merge.values() - ] - ) - self.pdf_data_segments.sort(key=lambda x: (x.page_number, x.bounding_box.top, x.bounding_box.left)) - - def set_ml_label_from_segmentation_data(self, segmentation_data: SegmentationData): - for label_segment_box in segmentation_data.label_segments_boxes: - for segment in self.pdf_data_segments: - if segment.page_number != label_segment_box.page_number: - continue - if segment.is_selected(label_segment_box.get_bounding_box()): - segment.ml_label = 1 - - def clean_text(self): - for segment in self.pdf_data_segments: - segment.text_content = " ".join(segment.text_content.split()) - - @staticmethod - def get_blank(): - return PdfData(None) - - @staticmethod - def from_xml_file(xml_file: XmlFile, segmentation_data: SegmentationData, pages_to_keep: list[int] = None) -> "PdfData": - try: - file_content: str = open(xml_file.xml_file_path).read() - except FileNotFoundError: - return PdfData.get_blank() - - if pages_to_keep: - xml_file_content = FilterValidSegmentsPages.filter_xml_pages(file_content, pages_to_keep) - else: - xml_file_content = file_content - - pdf_features = PdfFeatures.from_poppler_etree_content(xml_file.xml_file_path, xml_file_content) - - if not pdf_features: - return PdfData.get_blank() - - pdf_data = PdfData(pdf_features) - pdf_data.set_segments_from_segmentation_data(segmentation_data) - pdf_data.set_ml_label_from_segmentation_data(segmentation_data) - pdf_data.clean_text() - return pdf_data - - @staticmethod - def from_texts(texts: list[str]): - pdf_data = PdfData(None) - pdf_data.pdf_data_segments = PdfDataSegment.from_texts(texts) - return pdf_data - - def get_text(self): - return " ".join([segment.text_content for segment in self.pdf_data_segments if segment.text_content]) diff --git a/src/data/PdfDataSegment.py b/src/data/PdfDataSegment.py deleted file mode 100644 index 30c9be1..0000000 --- a/src/data/PdfDataSegment.py +++ /dev/null @@ -1,67 +0,0 @@ -from statistics import mode - -from pdf_features.Rectangle import Rectangle -from pdf_token_type_labels.TokenType import TokenType -from pdf_features.PdfToken import PdfToken - - -class PdfDataSegment: - def __init__( - self, page_number: int, bounding_box: Rectangle, text_content: str, segment_type: TokenType = TokenType.TEXT - ): - self.page_number = page_number - self.bounding_box = bounding_box - self.text_content = text_content - self.ml_label = 0 - self.segment_type: TokenType = segment_type - - def is_selected(self, bounding_box: Rectangle): - if bounding_box.bottom < self.bounding_box.top or self.bounding_box.bottom < bounding_box.top: - return False - - if bounding_box.right < self.bounding_box.left or self.bounding_box.right < bounding_box.left: - return False - - return True - - def intersects(self, pdf_segment: "PdfDataSegment"): - if self.page_number != pdf_segment.page_number: - return False - - return pdf_segment.bounding_box.get_intersection_percentage(self.bounding_box) > 50 - - @staticmethod - def from_pdf_token(pdf_token: PdfToken): - return PdfDataSegment( - page_number=pdf_token.page_number, - bounding_box=pdf_token.bounding_box, - text_content=pdf_token.content, - segment_type=pdf_token.token_type, - ) - - @staticmethod - def from_pdf_tokens(pdf_tokens: list[PdfToken]): - text: str = " ".join([pdf_token.content for pdf_token in pdf_tokens]) - bounding_boxes = [pdf_token.bounding_box for pdf_token in pdf_tokens] - segment_type = mode([token.token_type for token in pdf_tokens]) - return PdfDataSegment(pdf_tokens[0].page_number, Rectangle.merge_rectangles(bounding_boxes), text, segment_type) - - @staticmethod - def from_list_to_merge(pdf_segments_to_merge: list["PdfDataSegment"]): - text_content = " ".join([pdf_segment.text_content for pdf_segment in pdf_segments_to_merge]) - bounding_box = Rectangle.merge_rectangles([pdf_segment.bounding_box for pdf_segment in pdf_segments_to_merge]) - segment_type = mode([segment.segment_type for segment in pdf_segments_to_merge]) - return PdfDataSegment( - page_number=pdf_segments_to_merge[0].page_number, - bounding_box=bounding_box, - text_content=text_content, - segment_type=segment_type, - ) - - @staticmethod - def from_texts(texts: list[str]): - return [PdfDataSegment(i + 1, Rectangle(0, 0, 0, 0), text) for i, text in enumerate(texts)] - - @staticmethod - def create_with_text(text: str): - return PdfDataSegment(0, Rectangle(0, 0, 0, 0), text) diff --git a/src/data/PredictionData.py b/src/data/PredictionData.py deleted file mode 100644 index e38bfec..0000000 --- a/src/data/PredictionData.py +++ /dev/null @@ -1,19 +0,0 @@ -from pydantic import BaseModel - -from data.SegmentBox import SegmentBox - - -class PredictionData(BaseModel): - tenant: str = "" - id: str = "" - entity_name: str = "" - source_text: str = "" - xml_file_name: str = "" - page_width: float = 0 - page_height: float = 0 - xml_segments_boxes: list[SegmentBox] = list() - - def to_dict(self): - prediction_data = self.model_dump() - prediction_data["xml_segments_boxes"] = [x.to_dict() for x in self.xml_segments_boxes] - return prediction_data diff --git a/src/data/PredictionSample.py b/src/data/PredictionSample.py deleted file mode 100644 index 17011b6..0000000 --- a/src/data/PredictionSample.py +++ /dev/null @@ -1,32 +0,0 @@ -from dataclasses import dataclass - -from data.PdfData import PdfData -from data.PdfDataSegment import PdfDataSegment - - -@dataclass -class PredictionSample: - pdf_data: PdfData = None - tags_texts: list[str] = None - entity_name: str = "" - - def get_text(self): - texts = list() - for segment in self.pdf_data.pdf_data_segments: - texts.append(segment.text_content) - - return " ".join(texts) - - @staticmethod - def from_pdf_data(pdf_data: PdfData): - return PredictionSample(pdf_data=pdf_data) - - @staticmethod - def from_text(text: str, entity_name: str = ""): - pdf_data = PdfData(None) - pdf_data.pdf_data_segments.append(PdfDataSegment.create_with_text(text)) - return PredictionSample(tags_texts=[text], entity_name=entity_name, pdf_data=pdf_data) - - @staticmethod - def from_texts(texts: list[str]): - return PredictionSample(tags_texts=texts) diff --git a/src/data/SegmentBox.py b/src/data/SegmentBox.py deleted file mode 100644 index 5cd1626..0000000 --- a/src/data/SegmentBox.py +++ /dev/null @@ -1,75 +0,0 @@ -import json - -from pdf_features.PdfPage import PdfPage -from pydantic import BaseModel -from pdf_token_type_labels.TokenType import TokenType -from pdf_features.Rectangle import Rectangle - -from data.PdfDataSegment import PdfDataSegment - -SCALE_RATIO = 0.75 - - -class SegmentBox(BaseModel): - left: float - top: float - width: float - height: float - page_number: int - page_width: int = 0 - page_height: int = 0 - segment_type: TokenType = TokenType.TEXT - - def to_dict(self): - return json.loads(self.model_dump_json()) - - def to_output(self): - segment_box_dict = json.loads(self.model_dump_json()) - del segment_box_dict["page_width"] - del segment_box_dict["page_height"] - del segment_box_dict["segment_type"] - return segment_box_dict - - def get_bounding_box(self) -> Rectangle: - return Rectangle.from_width_height( - left=int(self.left), top=int(self.top), width=int(self.width), height=int(self.height) - ) - - def scale_down(self): - self.left = round(self.left * SCALE_RATIO, 0) - self.top = round(self.top * SCALE_RATIO, 0) - self.width = round(self.width * SCALE_RATIO, 0) - self.height = round(self.height * SCALE_RATIO, 0) - - def scale_up(self): - self.left = round(self.left / SCALE_RATIO, 0) - self.top = round(self.top / SCALE_RATIO, 0) - self.width = round(self.width / SCALE_RATIO, 0) - self.height = round(self.height / SCALE_RATIO, 0) - - def to_pdf_segment(self): - return PdfDataSegment( - page_number=self.page_number, - bounding_box=self.get_bounding_box(), - text_content="", - segment_type=self.segment_type, - ) - - @staticmethod - def from_pdf_segment(pdf_segment: PdfDataSegment, pages: list[PdfPage]): - page_width = pages[0].page_width if pages else 0 - page_height = pages[0].page_height if pages else 0 - - if pages and pdf_segment.page_number < len(pages): - page_width = pages[pdf_segment.page_number].page_width - page_height = pages[pdf_segment.page_number].page_height - - return SegmentBox( - left=pdf_segment.bounding_box.left, - top=pdf_segment.bounding_box.top, - width=pdf_segment.bounding_box.width, - height=pdf_segment.bounding_box.height, - page_number=pdf_segment.page_number, - page_width=page_width, - page_height=page_height, - ) diff --git a/src/data/SegmentationData.py b/src/data/SegmentationData.py deleted file mode 100644 index 53e5a0f..0000000 --- a/src/data/SegmentationData.py +++ /dev/null @@ -1,42 +0,0 @@ -from pydantic import BaseModel - -from data.LabeledData import LabeledData -from data.PredictionData import PredictionData -from data.SegmentBox import SegmentBox - - -class SegmentationData(BaseModel): - page_width: float - page_height: float - xml_segments_boxes: list[SegmentBox] - label_segments_boxes: list[SegmentBox] - - @staticmethod - def from_labeled_data(labeled_data: LabeledData) -> "SegmentationData": - return SegmentationData( - page_width=labeled_data.page_width, - page_height=labeled_data.page_height, - xml_segments_boxes=labeled_data.xml_segments_boxes, - label_segments_boxes=labeled_data.label_segments_boxes, - ) - - @staticmethod - def from_prediction_data(prediction_data: PredictionData) -> "SegmentationData": - return SegmentationData( - page_width=prediction_data.page_width, - page_height=prediction_data.page_height, - xml_segments_boxes=prediction_data.xml_segments_boxes, - label_segments_boxes=[], - ) - - def rescale(self, page_width, page_height): - factor_width = page_width / self.page_width - factor_height = page_height / self.page_height - self.page_width = page_width - self.page_height = page_height - self.xml_segments_boxes = [ - xml_segment_box.rescaled(factor_width, factor_height) for xml_segment_box in self.xml_segments_boxes - ] - self.label_segments_boxes = [ - xml_segment_box.rescaled(factor_width, factor_height) for xml_segment_box in self.label_segments_boxes - ] diff --git a/src/data/Suggestion.py b/src/data/Suggestion.py deleted file mode 100644 index 799bcf9..0000000 --- a/src/data/Suggestion.py +++ /dev/null @@ -1,100 +0,0 @@ -from pdf_token_type_labels.TokenType import TokenType -from pydantic import BaseModel - -from data.ExtractionIdentifier import ExtractionIdentifier -from data.Option import Option -from data.SegmentBox import SegmentBox -from data.PdfDataSegment import PdfDataSegment -from data.PdfData import PdfData -from data.TrainingSample import TrainingSample -from extractors.pdf_to_multi_option_extractor.filter_segments_methods.Beginning750 import Beginning750 -from extractors.pdf_to_multi_option_extractor.filter_segments_methods.End750 import End750 - - -class Suggestion(BaseModel): - tenant: str - id: str - xml_file_name: str = "" - entity_name: str = "" - text: str = "" - empty_suggestion: bool = False - values: list[Option] = list() - segment_text: str = "" - page_number: int = 1 - segments_boxes: list[SegmentBox] = list() - - def is_empty(self): - if self.empty_suggestion: - return True - - return not self.text and not self.values - - def mark_suggestion_if_empty(self): - if self.is_empty(): - self.empty_suggestion = True - - return self - - def to_dict(self): - suggestion_dict = self.model_dump() - suggestion_dict["segments_boxes"] = [x.to_dict() for x in self.segments_boxes] - return suggestion_dict - - def to_output(self): - suggestion_dict = self.model_dump() - suggestion_dict["segments_boxes"] = [x.to_output() for x in self.segments_boxes] - return suggestion_dict - - @staticmethod - def get_empty(extraction_identifier: ExtractionIdentifier, entity_name: str) -> "Suggestion": - return Suggestion( - tenant=extraction_identifier.run_name, - id=extraction_identifier.extraction_name, - xml_file_name=entity_name, - entity_name=entity_name, - ) - - def add_prediction(self, text: str, prediction_pdf_data: PdfData): - self.add_segments(prediction_pdf_data) - self.text = text - - def add_prediction_multi_option(self, training_sample: TrainingSample, values: list[Option], context_from_the_end: bool): - self.add_segments(training_sample.pdf_data, context_from_the_end) - self.values = values - - def add_segments(self, pdf_data: PdfData, context_from_the_end: bool = False): - context_segments: list[PdfDataSegment] = [x for x in pdf_data.pdf_data_segments if x.ml_label] - valid_types = [TokenType.LIST_ITEM, TokenType.TITLE, TokenType.TEXT, TokenType.SECTION_HEADER, TokenType.CAPTION] - context_segments = [x for x in context_segments if x.segment_type in valid_types] - - if not context_segments: - self.page_number = 1 - return - - if context_from_the_end: - context_segments = End750().filter_segments(context_segments) - else: - context_segments = Beginning750().filter_segments(context_segments) - - self.page_number = context_segments[0].page_number - pages = pdf_data.pdf_features.pages if pdf_data.pdf_features else [] - self.segments_boxes = [SegmentBox.from_pdf_segment(pdf_segment, pages) for pdf_segment in context_segments] - self.segment_text = " .. ".join([pdf_segment.text_content for pdf_segment in context_segments]) - - def scale_up(self): - for segment_box in self.segments_boxes: - segment_box.scale_up() - - return self - - @staticmethod - def from_prediction_text(extraction_identifier: ExtractionIdentifier, entity_name: str, text: str): - suggestion = Suggestion.get_empty(extraction_identifier, entity_name) - suggestion.text = text - return suggestion - - @staticmethod - def from_prediction_multi_option(extraction_identifier: ExtractionIdentifier, entity_name: str, values: list[Option]): - suggestion = Suggestion.get_empty(extraction_identifier, entity_name) - suggestion.values = values - return suggestion diff --git a/src/data/TrainingSample.py b/src/data/TrainingSample.py deleted file mode 100644 index b630a90..0000000 --- a/src/data/TrainingSample.py +++ /dev/null @@ -1,18 +0,0 @@ -from dataclasses import dataclass - -from data.LabeledData import LabeledData -from data.PdfData import PdfData - - -@dataclass -class TrainingSample: - pdf_data: PdfData = None - labeled_data: LabeledData = None - tags_texts: list[str] = None - - def get_text(self): - texts = list() - for pdf_metadata_segment in self.pdf_data.pdf_data_segments: - texts.append(pdf_metadata_segment.text_content) - - return " ".join(texts) diff --git a/src/extractors/ExtractorBase.py b/src/extractors/ExtractorBase.py deleted file mode 100644 index 5aecd0c..0000000 --- a/src/extractors/ExtractorBase.py +++ /dev/null @@ -1,76 +0,0 @@ -import json -from abc import abstractmethod -from os import makedirs -from os.path import exists -from pathlib import Path - -from data.ExtractionData import ExtractionData -from data.ExtractionIdentifier import ExtractionIdentifier -from data.PredictionSample import PredictionSample -from data.Suggestion import Suggestion -from data.TrainingSample import TrainingSample - - -class ExtractorBase: - def __init__(self, extraction_identifier: ExtractionIdentifier): - self.extraction_identifier = extraction_identifier - - def get_name(self): - return self.__class__.__name__ - - @abstractmethod - def create_model(self, extraction_data: ExtractionData) -> tuple[bool, str]: - pass - - @abstractmethod - def get_suggestions(self, predictions_samples: list[PredictionSample]) -> list[Suggestion]: - pass - - @abstractmethod - def can_be_used(self, extraction_data: ExtractionData) -> bool: - pass - - @staticmethod - def is_multilingual(multi_option_data: ExtractionData) -> bool: - not_multilingual_languages = ["", "en", "eng"] - - for sample in multi_option_data.samples: - if sample.labeled_data.language_iso not in not_multilingual_languages: - return True - - return False - - @staticmethod - def get_train_test_sets(extraction_data: ExtractionData) -> (ExtractionData, ExtractionData): - if len(extraction_data.samples) < 8: - return extraction_data, extraction_data - - train_size = int(len(extraction_data.samples) * 0.8) - - train_set: list[TrainingSample] = extraction_data.samples[:train_size] - - if len(extraction_data.samples) < 15: - test_set: list[TrainingSample] = extraction_data.samples[-10:] - else: - test_set = extraction_data.samples[train_size:] - - train_extraction_data = ExtractorBase.get_extraction_data_from_samples(extraction_data, train_set) - test_extraction_data = ExtractorBase.get_extraction_data_from_samples(extraction_data, test_set) - return train_extraction_data, test_extraction_data - - @staticmethod - def get_extraction_data_from_samples(extraction_data: ExtractionData, samples: list[TrainingSample]) -> ExtractionData: - return ExtractionData( - samples=samples, - options=extraction_data.options, - multi_value=extraction_data.multi_value, - extraction_identifier=extraction_data.extraction_identifier, - ) - - @staticmethod - def save_json(path: str, data: any): - if not exists(Path(path).parent): - makedirs(Path(path).parent) - - with open(path, "w") as file: - json.dump(data, file) diff --git a/src/extractors/NaiveExtractor.py b/src/extractors/NaiveExtractor.py deleted file mode 100644 index 723db28..0000000 --- a/src/extractors/NaiveExtractor.py +++ /dev/null @@ -1,20 +0,0 @@ -from data.ExtractionData import ExtractionData -from data.Suggestion import Suggestion -from extractors.ExtractorBase import ExtractorBase - - -class NaiveExtractor(ExtractorBase): - def create_model(self, extraction_data: ExtractionData) -> tuple[bool, str]: - return True, "" - - def get_suggestions(self, predictions_samples): - suggestions = list() - for prediction_sample in predictions_samples: - suggestion = Suggestion.get_empty(self.extraction_identifier, prediction_sample.pdf_data.file_name) - suggestion.text = prediction_sample.get_text() - suggestions.append(suggestion) - - return suggestions - - def can_be_used(self, extraction_data: ExtractionData) -> bool: - return True diff --git a/src/extractors/ToTextExtractor.py b/src/extractors/ToTextExtractor.py deleted file mode 100644 index 6a25f6f..0000000 --- a/src/extractors/ToTextExtractor.py +++ /dev/null @@ -1,127 +0,0 @@ -import json -import os -from pathlib import Path - -from config import config_logger -from data.ExtractionData import ExtractionData -from data.ExtractionIdentifier import ExtractionIdentifier -from data.LogsMessage import Severity -from data.PredictionSample import PredictionSample -from data.Suggestion import Suggestion -from extractors.ExtractorBase import ExtractorBase -from extractors.ToTextExtractorMethod import ToTextExtractorMethod -from send_logs import send_logs - -RETRAIN_SAMPLES_THRESHOLD = 250 - - -class ToTextExtractor(ExtractorBase): - METHODS: list[type[ToTextExtractorMethod]] = [] - - def __init__(self, extraction_identifier: ExtractionIdentifier): - super().__init__(extraction_identifier) - extractor_path = self.extraction_identifier.get_path() - self.method_name_path = Path(extractor_path, self.get_name(), "method_name.json") - os.makedirs(self.method_name_path.parent, exist_ok=True) - - def can_be_used(self, extraction_data: ExtractionData) -> bool: - pass - - def get_name(self): - return self.__class__.__name__ - - def get_suggestions(self, predictions_samples: list[PredictionSample]) -> list[Suggestion]: - method_instance = self.get_predictions_method() - send_logs( - self.extraction_identifier, - f"And also using {method_instance.get_name()} to calculate {len(predictions_samples)} suggestions", - ) - prediction = method_instance.predict(predictions_samples) - suggestions = list() - for prediction, prediction_sample in zip(prediction, predictions_samples): - entity_name = prediction_sample.entity_name - suggestions.append(Suggestion.from_prediction_text(self.extraction_identifier, entity_name, prediction)) - - for suggestion, sample in zip(suggestions, predictions_samples): - if sample.pdf_data: - suggestion.add_segments(sample.pdf_data) - - return suggestions - - def get_predictions_method(self) -> ToTextExtractorMethod: - if not self.method_name_path.exists(): - return self.METHODS[0](self.extraction_identifier) - - method_name = json.loads(self.method_name_path.read_text()) - for method in self.METHODS: - method_instance = method(self.extraction_identifier) - if method_instance.get_name() == method_name: - return method_instance - - return self.METHODS[0](self.extraction_identifier) - - def create_model(self, extraction_data: ExtractionData) -> tuple[bool, str]: - if not extraction_data.samples: - return False, "No samples to create model" - - performance_train_set, performance_test_set = self.get_train_test_sets(extraction_data) - - samples_info = f"Train: {len(performance_train_set.samples)} samples\n" - samples_info += f"Test: {len(performance_test_set.samples)} samples" - send_logs(self.extraction_identifier, samples_info) - - if len(extraction_data.samples) < 2: - best_method_instance = self.METHODS[0](self.extraction_identifier) - config_logger.info(f"\nBest method {best_method_instance.get_name()} because no samples") - best_method_instance.train(extraction_data) - return True, "" - - best_method_instance = self.get_best_method(extraction_data) - self.method_name_path.write_text(json.dumps(best_method_instance.get_name())) - - if len(extraction_data.samples) < RETRAIN_SAMPLES_THRESHOLD: - best_method_instance.train(extraction_data) - - self.remove_data_from_methods_not_selected(best_method_instance) - - return True, "" - - @staticmethod - def get_train_test_sets(extraction_data: ExtractionData) -> (ExtractionData, ExtractionData): - return ExtractorBase.get_train_test_sets(extraction_data) - - def remove_data_from_methods_not_selected(self, best_method_instance): - for method_to_remove in self.METHODS: - method_instance = method_to_remove(self.extraction_identifier) - if method_instance.get_name() != best_method_instance.get_name(): - method_instance.remove_method_data() - - def get_best_method(self, extraction_data: ExtractionData): - best_performance = 0 - best_method_instance = self.METHODS[0](self.extraction_identifier) - performance_log = "Performance aggregation:\n" - - training_set, test_set = self.get_train_test_sets(extraction_data) - for method in self.METHODS: - method_instance = method(self.extraction_identifier) - send_logs(self.extraction_identifier, f"Checking {method_instance.get_name()}") - try: - performance = method_instance.performance(training_set, test_set) - except Exception as e: - message = f"Error checking {method_instance.get_name()}" - send_logs(self.extraction_identifier, message, Severity.error, e) - performance = 0 - performance_log += f"{method_instance.get_name()}: {round(performance, 2)}%\n" - send_logs(self.extraction_identifier, f"Performance {method_instance.get_name()}: {performance}%") - if performance == 100: - send_logs(self.extraction_identifier, performance_log) - send_logs(self.extraction_identifier, f"Best method {method_instance.get_name()} with {performance}%") - return method_instance - - if performance > best_performance: - best_performance = performance - best_method_instance = method_instance - - send_logs(self.extraction_identifier, performance_log) - send_logs(self.extraction_identifier, f"Best method {best_method_instance.get_name()} with {performance}%") - return best_method_instance diff --git a/src/extractors/ToTextExtractorMethod.py b/src/extractors/ToTextExtractorMethod.py deleted file mode 100644 index da40954..0000000 --- a/src/extractors/ToTextExtractorMethod.py +++ /dev/null @@ -1,99 +0,0 @@ -import json -import os -import shutil -from abc import abstractmethod -from copy import deepcopy -from os.path import join, exists -from pathlib import Path - -from config import config_logger -from data.ExtractionData import ExtractionData -from data.ExtractionIdentifier import ExtractionIdentifier -from data.PredictionSample import PredictionSample -from extractors.pdf_to_multi_option_extractor.filter_segments_methods.CleanBeginningDot250 import CleanBeginningDot250 - - -class ToTextExtractorMethod: - - def __init__(self, extraction_identifier: ExtractionIdentifier, from_class_name: str = ""): - self.from_class_name = from_class_name - self.extraction_identifier = extraction_identifier - os.makedirs(self.extraction_identifier.get_path(), exist_ok=True) - - def get_path(self): - if self.from_class_name: - path = join(self.extraction_identifier.get_path(), self.from_class_name, self.get_name()) - else: - path = join(self.extraction_identifier.get_path(), self.get_name()) - - os.makedirs(path, exist_ok=True) - return path - - def get_name(self): - return self.__class__.__name__ - - def save_json(self, file_name: str, data: any): - path = join(self.get_path(), file_name) - - if not exists(Path(path).parent): - os.makedirs(Path(path).parent) - - with open(path, "w") as file: - json.dump(data, file) - - def load_json(self, file_name: str): - path = join(self.get_path(), file_name) - - if not exists(path): - return "" - - with open(path, "r") as file: - return json.load(file) - - @abstractmethod - def train(self, extraction_data: ExtractionData): - pass - - @abstractmethod - def predict(self, predictions_samples: list[PredictionSample]) -> list[str]: - pass - - @staticmethod - def clean_text(text: str) -> str: - return " ".join(text.split()) - - def performance(self, performance_train_set: ExtractionData, performance_test_set: ExtractionData) -> float: - if not performance_train_set.samples: - return 0 - - self.train(performance_train_set) - samples = performance_test_set.samples - predictions = self.predict( - [PredictionSample(pdf_data=deepcopy(x.pdf_data), tags_texts=x.tags_texts) for x in samples] - ) - - correct = [ - sample - for sample, prediction in zip(performance_test_set.samples, predictions) - if self.clean_text(sample.labeled_data.label_text) == self.clean_text(prediction) - ] - return 100 * len(correct) / len(performance_test_set.samples) - - def log_performance_sample(self, extraction_data: ExtractionData, predictions: list[str]): - config_logger.info(f"Performance predictions for {self.get_name()}") - filtered_extraction_data = CleanBeginningDot250().filter(extraction_data) - message = "" - for i, (training_sample, prediction) in enumerate(zip(extraction_data.samples, predictions)): - if i >= 5: - break - segments = filtered_extraction_data.samples[i].pdf_data.pdf_data_segments - document_text = " ".join([x.text_content for x in segments]) - message += f"\nprediction : {prediction[:70].strip()}\n" - message += f"truth : {training_sample.labeled_data.label_text[:70].strip()}\n" - message += f"segment selector text : {' '.join(training_sample.tags_texts)[:70].strip()}\n" - message += f"document text : {document_text[:70].strip()}\n" - - config_logger.info(message) - - def remove_method_data(self): - shutil.rmtree(self.get_path(), ignore_errors=True) diff --git a/src/extractors/bert_method_scripts/AvoidAllEvaluation.py b/src/extractors/bert_method_scripts/AvoidAllEvaluation.py deleted file mode 100644 index 70b043b..0000000 --- a/src/extractors/bert_method_scripts/AvoidAllEvaluation.py +++ /dev/null @@ -1,11 +0,0 @@ -from transformers import DefaultFlowCallback - - -class AvoidAllEvaluation(DefaultFlowCallback): - def on_step_end(self, args, state, control, **kwargs): - super().on_step_end(args, state, control, **kwargs) - - if state.global_step <= 8000: - control.should_evaluate = False - - return control diff --git a/src/extractors/bert_method_scripts/AvoidEvaluation.py b/src/extractors/bert_method_scripts/AvoidEvaluation.py deleted file mode 100644 index 4f4a409..0000000 --- a/src/extractors/bert_method_scripts/AvoidEvaluation.py +++ /dev/null @@ -1,11 +0,0 @@ -from transformers import DefaultFlowCallback - - -class AvoidEvaluation(DefaultFlowCallback): - def on_step_end(self, args, state, control, **kwargs): - super().on_step_end(args, state, control, **kwargs) - - if state.global_step <= 1000: - control.should_evaluate = False - - return control diff --git a/src/extractors/bert_method_scripts/EarlyStoppingAfterInitialTraining.py b/src/extractors/bert_method_scripts/EarlyStoppingAfterInitialTraining.py deleted file mode 100644 index 0e1b802..0000000 --- a/src/extractors/bert_method_scripts/EarlyStoppingAfterInitialTraining.py +++ /dev/null @@ -1,8 +0,0 @@ -from transformers import EarlyStoppingCallback, IntervalStrategy - - -class EarlyStoppingAfterInitialTraining(EarlyStoppingCallback): - def on_evaluate(self, args, state, control, metrics, **kwargs): - if state.global_step < 1000: - return - return super().on_evaluate(args, state, control, metrics, **kwargs) diff --git a/src/extractors/bert_method_scripts/get_batch_size.py b/src/extractors/bert_method_scripts/get_batch_size.py deleted file mode 100644 index 29530fe..0000000 --- a/src/extractors/bert_method_scripts/get_batch_size.py +++ /dev/null @@ -1,22 +0,0 @@ -import math - -import torch - - -def get_batch_size(samples_count: int): - batch_size_by_samples = math.ceil(samples_count / 100) - memory_available = torch.cuda.get_device_properties(0).total_memory / 1000000000 - limit_batch = max(int(memory_available / 5), 1) - return min(limit_batch, batch_size_by_samples) - - -def get_max_steps(samples_count): - if samples_count * 25 < 2000: - return math.ceil(25 * samples_count / 200) * 200 - - min_epochs = 3 - - if samples_count < (2000 / min_epochs): - return 2000 - - return min(math.ceil(min_epochs * samples_count / 200) * 200, 6000) diff --git a/src/extractors/bert_method_scripts/multi_label_sequence_classification_trainer.py b/src/extractors/bert_method_scripts/multi_label_sequence_classification_trainer.py deleted file mode 100755 index d437152..0000000 --- a/src/extractors/bert_method_scripts/multi_label_sequence_classification_trainer.py +++ /dev/null @@ -1,509 +0,0 @@ -#!/usr/bin/env python -# coding=utf-8 -# Copyright 2020 The HuggingFace Inc. team. All rights reserved. -# -# Licensed under the Apache License, Version 2.0 (the "License"); -# you may not use this file except in compliance with the License. -# You may obtain a copy of the License at -# -# http://www.apache.org/licenses/LICENSE-2.0 -# -# Unless required by applicable law or agreed to in writing, software -# distributed under the License is distributed on an "AS IS" BASIS, -# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. -# See the License for the specific language governing permissions and -# limitations under the License. -""" Finetuning the library models for sequence classification on GLUE.""" -import ast - -# You can also adapt this script on your own text classification task. Pointers for this are left as comments. -from math import exp -import logging -import os -import random -from dataclasses import dataclass, field -from typing import Optional - -import numpy as np -from datasets import load_dataset - -import evaluate -from sklearn.metrics import f1_score -from transformers import ( - AutoConfig, - AutoModelForSequenceClassification, - AutoTokenizer, - DataCollatorWithPadding, - EvalPrediction, - PretrainedConfig, - Trainer, - TrainingArguments, - default_data_collator, - set_seed, -) -from transformers.trainer_utils import get_last_checkpoint -from transformers.utils import check_min_version, send_example_telemetry -from transformers.utils.versions import require_version - - -# Will error if the minimal version of Transformers is not installed. Remove at your own risks. -check_min_version("4.24.0.dev0") - -require_version("datasets>=1.8.0", "To fix: pip install -r examples/pytorch/text-classification/requirements.txt") - -task_to_keys = { - "cola": ("sentence", None), - "mnli": ("premise", "hypothesis"), - "mrpc": ("sentence1", "sentence2"), - "qnli": ("question", "sentence"), - "qqp": ("question1", "question2"), - "rte": ("sentence1", "sentence2"), - "sst2": ("sentence", None), - "stsb": ("sentence1", "sentence2"), - "wnli": ("sentence1", "sentence2"), -} - -logger = logging.getLogger(__name__) - - -@dataclass -class MultiLabelDataTrainingArguments: - """ - Arguments pertaining to what data we are going to input our model for training and eval. - - Using `HfArgumentParser` we can turn this class - into argparse arguments to be able to specify them on - the command line. - """ - - task_name: Optional[str] = field( - default=None, - metadata={"help": "The name of the task to train on: " + ", ".join(task_to_keys.keys())}, - ) - dataset_name: Optional[str] = field( - default=None, metadata={"help": "The name of the dataset to use (via the datasets library)."} - ) - dataset_config_name: Optional[str] = field( - default=None, metadata={"help": "The configuration name of the dataset to use (via the datasets library)."} - ) - max_seq_length: int = field( - default=128, - metadata={ - "help": ( - "The maximum total input sequence length after tokenization. Sequences longer " - "than this will be truncated, sequences shorter will be padded." - ) - }, - ) - overwrite_cache: bool = field(default=False, metadata={"help": "Overwrite the cached preprocessed datasets or not."}) - pad_to_max_length: bool = field( - default=True, - metadata={ - "help": ( - "Whether to pad all samples to `max_seq_length`. " - "If False, will pad the samples dynamically when batching to the maximum length in the batch." - ) - }, - ) - max_train_samples: Optional[int] = field( - default=None, - metadata={ - "help": ( - "For debugging purposes or quicker training, truncate the number of training examples to this " - "value if set." - ) - }, - ) - max_eval_samples: Optional[int] = field( - default=None, - metadata={ - "help": ( - "For debugging purposes or quicker training, truncate the number of evaluation examples to this " - "value if set." - ) - }, - ) - max_predict_samples: Optional[int] = field( - default=None, - metadata={ - "help": ( - "For debugging purposes or quicker training, truncate the number of prediction examples to this " - "value if set." - ) - }, - ) - train_file: Optional[str] = field(default=None, metadata={"help": "A csv or a json file containing the training data."}) - validation_file: Optional[str] = field( - default=None, metadata={"help": "A csv or a json file containing the validation data."} - ) - test_file: Optional[str] = field(default=None, metadata={"help": "A csv or a json file containing the test data."}) - labels_number: int = field(default=2) - - def __post_init__(self): - if self.task_name is not None: - self.task_name = self.task_name.lower() - if self.task_name not in task_to_keys.keys(): - raise ValueError("Unknown task, you should pick one in " + ",".join(task_to_keys.keys())) - elif self.dataset_name is not None: - pass - elif self.train_file is None or self.validation_file is None: - raise ValueError("Need either a GLUE task, a training/validation file or a dataset name.") - else: - train_extension = self.train_file.split(".")[-1] - assert train_extension in ["csv", "json"], "`train_file` should be a csv or a json file." - validation_extension = self.validation_file.split(".")[-1] - assert ( - validation_extension == train_extension - ), "`validation_file` should have the same extension (csv or json) as `train_file`." - - -@dataclass -class ModelArguments: - """ - Arguments pertaining to which model/config/tokenizer we are going to fine-tune from. - """ - - model_name_or_path: str = field( - metadata={"help": "Path to pretrained model or model identifier from huggingface.co/models"} - ) - config_name: Optional[str] = field( - default=None, metadata={"help": "Pretrained config name or path if not the same as model_name"} - ) - tokenizer_name: Optional[str] = field( - default=None, metadata={"help": "Pretrained tokenizer name or path if not the same as model_name"} - ) - cache_dir: Optional[str] = field( - default=None, - metadata={"help": "Where do you want to store the pretrained models downloaded from huggingface.co"}, - ) - use_fast_tokenizer: bool = field( - default=True, - metadata={"help": "Whether to use one of the fast tokenizer (backed by the tokenizers library) or not."}, - ) - model_revision: str = field( - default="main", - metadata={"help": "The specific model version to use (can be a branch name, tag name or commit id)."}, - ) - use_auth_token: bool = field( - default=False, - metadata={ - "help": ( - "Will use the token generated when running `huggingface-cli login` (necessary to use this script " - "with private models)." - ) - }, - ) - ignore_mismatched_sizes: bool = field( - default=False, - metadata={"help": "Will enable to load a pretrained model whose head dimensions are different."}, - ) - - -def multi_label_run( - model_args: ModelArguments, data_args: MultiLabelDataTrainingArguments, training_args: TrainingArguments -): - # Detecting last checkpoint. - last_checkpoint = None - if os.path.isdir(training_args.output_dir) and training_args.do_train and not training_args.overwrite_output_dir: - last_checkpoint = get_last_checkpoint(training_args.output_dir) - if last_checkpoint is None and len(os.listdir(training_args.output_dir)) > 0: - raise ValueError( - f"Output directory ({training_args.output_dir}) already exists and is not empty. " - "Use --overwrite_output_dir to overcome." - ) - elif last_checkpoint is not None and training_args.resume_from_checkpoint is None: - logger.info( - f"Checkpoint detected, resuming training at {last_checkpoint}. To avoid this behavior, change " - "the `--output_dir` or add `--overwrite_output_dir` to train from scratch." - ) - - # Set seed before initializing model. - set_seed(training_args.seed) - - # Loading a dataset from your local files. - # CSV/JSON training and evaluation files are needed. - data_files = {"train": data_args.train_file, "validation": data_args.validation_file} - - # Get the test dataset: you can provide your own CSV/JSON test file (see below) - # when you use `do_predict` without specifying a GLUE benchmark task. - if training_args.do_predict: - if data_args.test_file is not None: - train_extension = data_args.train_file.split(".")[-1] - test_extension = data_args.test_file.split(".")[-1] - assert ( - test_extension == train_extension - ), "`test_file` should have the same extension (csv or json) as `train_file`." - data_files["test"] = data_args.test_file - else: - raise ValueError("Need either a GLUE task or a test file for `do_predict`.") - - for key in data_files.keys(): - logger.info(f"load a local file for {key}: {data_files[key]}") - - if data_args.train_file.endswith(".csv"): - # Loading a dataset from local csv files - raw_datasets = load_dataset( - "csv", - data_files=data_files, - cache_dir=model_args.cache_dir, - use_auth_token=True if model_args.use_auth_token else None, - ) - else: - # Loading a dataset from local json files - raw_datasets = load_dataset( - "json", - data_files=data_files, - cache_dir=model_args.cache_dir, - use_auth_token=True if model_args.use_auth_token else None, - ) - - # Labels - # Trying to have good defaults here, don't hesitate to tweak to your needs. - label_list = list(range(data_args.labels_number)) - - # Load pretrained model and tokenizer - # - # In distributed training, the .from_pretrained methods guarantee that only one local process can concurrently - # download model & vocab. - config = AutoConfig.from_pretrained( - model_args.config_name if model_args.config_name else model_args.model_name_or_path, - num_labels=data_args.labels_number, - finetuning_task=data_args.task_name, - cache_dir=model_args.cache_dir, - revision=model_args.model_revision, - use_auth_token=True if model_args.use_auth_token else None, - ) - - tokenizer = AutoTokenizer.from_pretrained( - model_args.tokenizer_name if model_args.tokenizer_name else model_args.model_name_or_path, - cache_dir=model_args.cache_dir, - use_fast=model_args.use_fast_tokenizer, - revision=model_args.model_revision, - use_auth_token=True if model_args.use_auth_token else None, - ) - - if tokenizer.pad_token is None: - tokenizer.add_special_tokens({"pad_token": "[PAD]"}) - - labels = list(range(data_args.labels_number)) - id2label = {idx: label for idx, label in enumerate(labels)} - label2id = {label: idx for idx, label in enumerate(labels)} - - model = AutoModelForSequenceClassification.from_pretrained( - model_args.model_name_or_path, - from_tf=bool(".ckpt" in model_args.model_name_or_path), - config=config, - cache_dir=model_args.cache_dir, - revision=model_args.model_revision, - use_auth_token=True if model_args.use_auth_token else None, - ignore_mismatched_sizes=model_args.ignore_mismatched_sizes, - # problem_type="multi_label_classification", - # num_labels=len(labels), - # id2label=id2label, - # label2id=label2id - ) - - # Padding strategy - if data_args.pad_to_max_length: - padding = "max_length" - else: - # We will pad later, dynamically at batch creation, to the max sequence length in each batch - padding = False - - # Some models have set the order of the labels to use, so let's make sure we do use it. - label_to_id = None - if ( - model.config.label2id != PretrainedConfig(num_labels=data_args.labels_number).label2id - and data_args.task_name is not None - ): - # Some have all caps in their config, some don't. - label_name_to_id = {k.lower(): v for k, v in model.config.label2id.items()} - if list(sorted(label_name_to_id.keys())) == list(sorted(label_list)): - label_to_id = {i: int(label_name_to_id[label_list[i]]) for i in range(data_args.labels_number)} - else: - logger.warning( - "Your model seems to have been trained with labels, but they don't match the dataset: ", - f"model labels: {list(sorted(label_name_to_id.keys()))}, dataset labels: {list(sorted(label_list))}." - "\nIgnoring the model labels as a result.", - ) - elif data_args.task_name is None: - label_to_id = {v: i for i, v in enumerate(label_list)} - - if label_to_id is not None: - model.config.label2id = label_to_id - model.config.id2label = {id: label for label, id in config.label2id.items()} - elif data_args.task_name is not None: - model.config.label2id = {l: i for i, l in enumerate(label_list)} - model.config.id2label = {id: label for label, id in config.label2id.items()} - - if data_args.max_seq_length > tokenizer.model_max_length: - logger.warning( - f"The max_seq_length passed ({data_args.max_seq_length}) is larger than the maximum length for the" - f"model ({tokenizer.model_max_length}). Using max_seq_length={tokenizer.model_max_length}." - ) - max_seq_length = min(data_args.max_seq_length, tokenizer.model_max_length) - - def preprocess_function(examples): - # Tokenize the texts - # args = (examples["text"]) - - # result = tokenizer(*args, padding=padding, max_length=max_seq_length, truncation=True) - result = tokenizer(examples["text"], padding=padding, max_length=max_seq_length, truncation=True) - - result["label"] = [ast.literal_eval(x) for x in examples["labels"]] - return result - - with training_args.main_process_first(desc="dataset map pre-processing"): - raw_datasets = raw_datasets.map( - preprocess_function, - batched=True, - load_from_cache_file=not data_args.overwrite_cache, - desc="Running tokenizer on dataset", - ) - if training_args.do_train: - if "train" not in raw_datasets: - raise ValueError("--do_train requires a train dataset") - train_dataset = raw_datasets["train"] - if data_args.max_train_samples is not None: - max_train_samples = min(len(train_dataset), data_args.max_train_samples) - train_dataset = train_dataset.select(range(max_train_samples)) - - if training_args.do_eval: - if "validation" not in raw_datasets and "validation_matched" not in raw_datasets: - raise ValueError("--do_eval requires a validation dataset") - eval_dataset = raw_datasets["validation_matched" if data_args.task_name == "mnli" else "validation"] - if data_args.max_eval_samples is not None: - max_eval_samples = min(len(eval_dataset), data_args.max_eval_samples) - eval_dataset = eval_dataset.select(range(max_eval_samples)) - - if training_args.do_predict or data_args.task_name is not None or data_args.test_file is not None: - if "test" not in raw_datasets and "test_matched" not in raw_datasets: - raise ValueError("--do_predict requires a test dataset") - predict_dataset = raw_datasets["test_matched" if data_args.task_name == "mnli" else "test"] - if data_args.max_predict_samples is not None: - max_predict_samples = min(len(predict_dataset), data_args.max_predict_samples) - predict_dataset = predict_dataset.select(range(max_predict_samples)) - - # Log a few random samples from the training set: - if training_args.do_train: - for index in random.sample(range(len(train_dataset)), 3): - logger.info(f"Sample {index} of the training set: {train_dataset[index]}.") - - # Get the metric function - if data_args.task_name is not None: - metric = evaluate.load("glue", data_args.task_name) - else: - metric = evaluate.load("accuracy") - - # You can define your custom compute_metrics function. It takes an `EvalPrediction` object (a namedtuple with a - # predictions and label_ids field) and has to return a dictionary string to float. - def compute_metrics(p: EvalPrediction): - preds = p.predictions[0] if isinstance(p.predictions, tuple) else p.predictions - preds = np.argmax(preds, axis=1) - if data_args.task_name is not None: - result = metric.compute(predictions=preds, references=p.label_ids) - if len(result) > 1: - result["combined_score"] = np.mean(list(result.values())).item() - return result - else: - predictions = list() - for logits in p.predictions: - predictions.append(list()) - for probability in [1 / (1 + exp(-logit)) for logit in logits]: - if probability > 0.5: - predictions[-1].append(1) - else: - predictions[-1].append(0) - truth = [list(x) for x in p.label_ids] - right = [x for x, p in zip(truth, predictions) if x == p] - accuracy = len(right) / len(predictions) - f1 = f1_score(truth, predictions, average="macro") - return {"accuracy": accuracy, "f1": f1} - - # Data collator will default to DataCollatorWithPadding when the tokenizer is passed to Trainer, so we change it if - # we already did the padding. - if data_args.pad_to_max_length: - data_collator = default_data_collator - elif training_args.fp16: - data_collator = DataCollatorWithPadding(tokenizer, pad_to_multiple_of=8) - else: - data_collator = None - - # Initialize our Trainer - trainer = Trainer( - model=model, - args=training_args, - train_dataset=train_dataset if training_args.do_train else None, - eval_dataset=eval_dataset if training_args.do_eval else None, - compute_metrics=compute_metrics, - tokenizer=tokenizer, - data_collator=data_collator, - ) - - # Training - if training_args.do_train: - checkpoint = None - if training_args.resume_from_checkpoint is not None: - checkpoint = training_args.resume_from_checkpoint - elif last_checkpoint is not None: - checkpoint = last_checkpoint - train_result = trainer.train(resume_from_checkpoint=checkpoint) - metrics = train_result.metrics - max_train_samples = data_args.max_train_samples if data_args.max_train_samples is not None else len(train_dataset) - metrics["train_samples"] = min(max_train_samples, len(train_dataset)) - - trainer.save_model() # Saves the tokenizer too for easy upload - - trainer.log_metrics("train", metrics) - trainer.save_metrics("train", metrics) - trainer.save_state() - - # Evaluation - if training_args.do_eval: - logger.info("*** Evaluate ***") - - # Loop to handle MNLI double evaluation (matched, mis-matched) - tasks = [data_args.task_name] - eval_datasets = [eval_dataset] - if data_args.task_name == "mnli": - tasks.append("mnli-mm") - valid_mm_dataset = raw_datasets["validation_mismatched"] - if data_args.max_eval_samples is not None: - max_eval_samples = min(len(valid_mm_dataset), data_args.max_eval_samples) - valid_mm_dataset = valid_mm_dataset.select(range(max_eval_samples)) - eval_datasets.append(valid_mm_dataset) - combined = {} - - for eval_dataset, task in zip(eval_datasets, tasks): - metrics = trainer.evaluate(eval_dataset=eval_dataset) - - max_eval_samples = data_args.max_eval_samples if data_args.max_eval_samples is not None else len(eval_dataset) - metrics["eval_samples"] = min(max_eval_samples, len(eval_dataset)) - - if task == "mnli-mm": - metrics = {k + "_mm": v for k, v in metrics.items()} - if task is not None and "mnli" in task: - combined.update(metrics) - - trainer.log_metrics("eval", metrics) - trainer.save_metrics("eval", combined if task is not None and "mnli" in task else metrics) - - if training_args.do_predict: - logger.info("*** Predict ***") - - # Loop to handle MNLI double evaluation (matched, mis-matched) - tasks = [data_args.task_name] - predict_datasets = [predict_dataset] - if data_args.task_name == "mnli": - tasks.append("mnli-mm") - predict_datasets.append(raw_datasets["test_mismatched"]) - - for predict_dataset, task in zip(predict_datasets, tasks): - # Removing the `label` columns because it contains -1 and Trainer won't like that. - predict_dataset = predict_dataset.remove_columns("label") - predictions = trainer.predict(predict_dataset, metric_key_prefix="predict").predictions - - return predictions - - kwargs = {"finetuned_from": model_args.model_name_or_path, "tasks": "text-classification"} - trainer.create_model_card(**kwargs) diff --git a/src/extractors/pdf_to_multi_option_extractor/FilterSegmentsMethod.py b/src/extractors/pdf_to_multi_option_extractor/FilterSegmentsMethod.py deleted file mode 100644 index 7ed4e77..0000000 --- a/src/extractors/pdf_to_multi_option_extractor/FilterSegmentsMethod.py +++ /dev/null @@ -1,32 +0,0 @@ -from abc import ABC, abstractmethod - -from data.PdfData import PdfData -from data.PdfDataSegment import PdfDataSegment -from data.ExtractionData import ExtractionData -from data.TrainingSample import TrainingSample - - -class FilterSegmentsMethod(ABC): - def get_name(self): - return self.__class__.__name__ - - @abstractmethod - def filter_segments(self, pdf_data_segments: list[PdfDataSegment]) -> list[PdfDataSegment]: - pass - - def filter(self, multi_option_data: ExtractionData) -> ExtractionData: - filtered_samples: list[TrainingSample] = list() - for sample in multi_option_data.samples: - filtered_pdf_data = PdfData( - pdf_features=sample.pdf_data.pdf_features, - file_name=sample.pdf_data.file_name, - file_type=sample.pdf_data.file_type, - ) - - filtered_pdf_data.pdf_data_segments = self.filter_segments(sample.pdf_data.pdf_data_segments) - - filtered_samples.append(TrainingSample(pdf_data=filtered_pdf_data, labeled_data=sample.labeled_data)) - - return ExtractionData( - samples=filtered_samples, options=multi_option_data.options, multi_value=multi_option_data.multi_value - ) diff --git a/src/extractors/pdf_to_multi_option_extractor/MultiLabelMethod.py b/src/extractors/pdf_to_multi_option_extractor/MultiLabelMethod.py deleted file mode 100644 index cc544bf..0000000 --- a/src/extractors/pdf_to_multi_option_extractor/MultiLabelMethod.py +++ /dev/null @@ -1,96 +0,0 @@ -import json -import math -import os -import shutil -from abc import ABC, abstractmethod -from os import makedirs -from os.path import exists, join -from pathlib import Path - -import torch -from numpy import argmax - -from data.ExtractionIdentifier import ExtractionIdentifier -from data.Option import Option -from data.ExtractionData import ExtractionData - - -class MultiLabelMethod(ABC): - def __init__( - self, extraction_identifier: ExtractionIdentifier, options: list[Option], multi_value: bool, method_name: str = "" - ): - self.method_name = method_name - self.extraction_identifier = extraction_identifier - self.options = options - self.multi_value = multi_value - - def get_name(self): - return self.__class__.__name__ - - def get_path(self): - if self.method_name: - path = join(self.extraction_identifier.get_path(), self.method_name) - else: - path = join(self.extraction_identifier.get_path(), self.get_name()) - - os.makedirs(path, exist_ok=True) - return path - - @abstractmethod - def train(self, multi_option_data: ExtractionData): - pass - - @abstractmethod - def predict(self, multi_option_data: ExtractionData) -> list[list[Option]]: - pass - - def save_json(self, file_name: str, data: any): - path = join(self.get_path(), file_name) - if not exists(Path(path).parent): - makedirs(Path(path).parent) - - with open(path, "w") as file: - json.dump(data, file) - - def load_json(self, file_name: str): - path = join(self.get_path(), file_name) - - with open(path, "r") as file: - return json.load(file) - - def remove_model(self): - shutil.rmtree(join(self.get_path()), ignore_errors=True) - - def get_texts_labels(self, multi_option_data: ExtractionData) -> (list[str], list[list[int]]): - texts = list() - for sample in multi_option_data.samples: - texts.append(" ".join([x.text_content.strip() for x in sample.pdf_data.pdf_data_segments])) - - labels = self.get_one_hot_encoding(multi_option_data) - return texts, labels - - def predictions_to_options_list(self, predictions) -> list[list[Option]]: - return [self.one_prediction_to_option_list(prediction) for prediction in predictions] - - def one_prediction_to_option_list(self, prediction) -> list[Option]: - if not self.multi_value: - best_score_index = argmax(prediction) - return [self.options[best_score_index]] if prediction[best_score_index] > 0.5 else [] - - return [self.options[i] for i, value in enumerate(prediction) if value > 0.5] - - def get_one_hot_encoding(self, multi_option_data: ExtractionData): - options_ids = [option.id for option in self.options] - one_hot_encoding = list() - for sample in multi_option_data.samples: - one_hot_encoding.append([0] * len(options_ids)) - for option in sample.labeled_data.values: - if option.id not in options_ids: - print(f"option {option.id} not in {options_ids}") - continue - one_hot_encoding[-1][options_ids.index(option.id)] = 1 - return one_hot_encoding - - @staticmethod - def can_be_used(extraction_data: ExtractionData) -> bool: - pass diff --git a/src/extractors/pdf_to_multi_option_extractor/PdfMultiOptionMethod.py b/src/extractors/pdf_to_multi_option_extractor/PdfMultiOptionMethod.py deleted file mode 100644 index f31d630..0000000 --- a/src/extractors/pdf_to_multi_option_extractor/PdfMultiOptionMethod.py +++ /dev/null @@ -1,116 +0,0 @@ -import shutil -from os.path import join -from typing import Type - -from sklearn.metrics import f1_score - -from data.ExtractionIdentifier import ExtractionIdentifier -from data.Option import Option -from data.ExtractionData import ExtractionData -from data.TrainingSample import TrainingSample -from extractors.pdf_to_multi_option_extractor.MultiLabelMethod import MultiLabelMethod -from extractors.pdf_to_multi_option_extractor.FilterSegmentsMethod import FilterSegmentsMethod - - -class PdfMultiOptionMethod: - REPORT_ERRORS = True - - def __init__( - self, - filter_segments_method: Type[FilterSegmentsMethod] = None, - multi_label_method: Type[MultiLabelMethod] = None, - ): - self.multi_label_method = multi_label_method - self.filter_segments_method = filter_segments_method - self.extraction_identifier = ExtractionIdentifier(run_name="not set", extraction_name="not set") - self.options: list[Option] = list() - self.multi_value = False - self.extraction_data = None - - def set_parameters(self, multi_option_data: ExtractionData): - self.extraction_identifier = multi_option_data.extraction_identifier - self.options = multi_option_data.options - self.multi_value = multi_option_data.multi_value - self.extraction_data = multi_option_data - - def get_name(self): - if self.filter_segments_method and self.multi_label_method: - text_extractor_name = self.filter_segments_method.__name__.replace("Method", "") - multi_option_name = self.multi_label_method.__name__.replace("Method", "") - text_extractor_name = text_extractor_name.replace("TextAtThe", "") - multi_option_name = multi_option_name.replace("TextAtThe", "") - return f"{text_extractor_name}_{multi_option_name}" - - return self.__class__.__name__ - - def get_performance(self, train_set: ExtractionData, test_set: ExtractionData) -> float: - self.set_parameters(train_set) - truth_one_hot = self.one_hot_to_options_list([x.labeled_data.values for x in test_set.samples], self.options) - - self.train(train_set) - predictions = self.predict(test_set) - - if not self.multi_value: - predictions = [x[:1] for x in predictions] - - predictions_one_hot = self.one_hot_to_options_list(predictions, self.options) - - try: - score = f1_score(truth_one_hot, predictions_one_hot, average="micro") - except ValueError: - score = 0 - - return 100 * score - - @staticmethod - def one_hot_to_options_list(pdfs_options: list[list[Option]], options: list[Option]) -> list[list[int]]: - options_one_hot: list[list[int]] = list() - option_labels = [x.label for x in options] - for pdf_options in pdfs_options: - pdf_options_one_hot = [0] * len(options) - - for pdf_option in pdf_options: - if pdf_option.label in option_labels: - pdf_options_one_hot[option_labels.index(pdf_option.label)] = 1 - - options_one_hot.append(pdf_options_one_hot) - - return options_one_hot - - def train(self, multi_option_data: ExtractionData): - self.set_parameters(multi_option_data) - - print("Filtering segments") - filtered_multi_option_data = self.filter_segments_method().filter(multi_option_data) - - print("Creating model") - multi_label = self.multi_label_method(self.extraction_identifier, self.options, self.multi_value, self.get_name()) - multi_label.train(filtered_multi_option_data) - - def predict(self, multi_option_data: ExtractionData) -> list[list[Option]]: - self.set_parameters(multi_option_data) - - print("Filtering segments") - filtered_multi_option_data = self.filter_segments_method().filter(multi_option_data) - - print("Prediction") - multi_label = self.multi_label_method(self.extraction_identifier, self.options, self.multi_value, self.get_name()) - predictions = multi_label.predict(filtered_multi_option_data) - - return predictions - - def get_samples_for_context(self, extraction_data: ExtractionData) -> list[TrainingSample]: - if self.extraction_data: - return self.extraction_data.samples - - return extraction_data.samples - - def can_be_used(self, multi_option_data: ExtractionData) -> bool: - if self.multi_label_method: - multi_label = self.multi_label_method(self.extraction_identifier, self.options, self.multi_value) - return multi_label.can_be_used(multi_option_data) - - return True - - def remove_method_data(self, extraction_identifier: ExtractionIdentifier): - shutil.rmtree(join(extraction_identifier.get_path(), self.get_name()), ignore_errors=True) diff --git a/src/extractors/pdf_to_multi_option_extractor/PdfToMultiOptionExtractor.py b/src/extractors/pdf_to_multi_option_extractor/PdfToMultiOptionExtractor.py deleted file mode 100644 index 4b62aec..0000000 --- a/src/extractors/pdf_to_multi_option_extractor/PdfToMultiOptionExtractor.py +++ /dev/null @@ -1,269 +0,0 @@ -import json -from collections import Counter -from os.path import join, exists -from pathlib import Path - -from data.ExtractionIdentifier import ExtractionIdentifier -from data.LogsMessage import Severity -from data.Option import Option -from data.PredictionSample import PredictionSample -from data.Suggestion import Suggestion -from extractors.ExtractorBase import ExtractorBase -from extractors.pdf_to_multi_option_extractor.PdfMultiOptionMethod import PdfMultiOptionMethod - -from data.ExtractionData import ExtractionData -from data.TrainingSample import TrainingSample -from extractors.pdf_to_multi_option_extractor.filter_segments_methods.CleanBeginningDot1000 import CleanBeginningDot1000 -from extractors.pdf_to_multi_option_extractor.filter_segments_methods.CleanBeginningDotDigits500 import ( - CleanBeginningDotDigits500, -) -from extractors.pdf_to_multi_option_extractor.filter_segments_methods.CleanEndDotDigits1000 import CleanEndDotDigits1000 -from extractors.pdf_to_multi_option_extractor.multi_labels_methods.FastTextMethod import FastTextMethod -from extractors.pdf_to_multi_option_extractor.multi_labels_methods.SetFitEnglishMethod import SetFitEnglishMethod -from extractors.pdf_to_multi_option_extractor.multi_labels_methods.SetFitMultilingualMethod import SetFitMultilingualMethod -from extractors.pdf_to_multi_option_extractor.multi_labels_methods.SingleLabelSetFitEnglishMethod import ( - SingleLabelSetFitEnglishMethod, -) -from extractors.pdf_to_multi_option_extractor.multi_labels_methods.SingleLabelSetFitMultilingualMethod import ( - SingleLabelSetFitMultilingualMethod, -) -from extractors.pdf_to_multi_option_extractor.multi_option_extraction_methods.FastSegmentSelectorFuzzy95 import ( - FastSegmentSelectorFuzzy95, -) -from extractors.pdf_to_multi_option_extractor.multi_option_extraction_methods.FastSegmentSelectorFuzzyCommas import ( - FastSegmentSelectorFuzzyCommas, -) -from extractors.pdf_to_multi_option_extractor.multi_option_extraction_methods.FuzzyAll100 import FuzzyAll100 -from extractors.pdf_to_multi_option_extractor.multi_option_extraction_methods.FuzzyAll75 import FuzzyAll75 -from extractors.pdf_to_multi_option_extractor.multi_option_extraction_methods.FuzzyAll88 import FuzzyAll88 -from extractors.pdf_to_multi_option_extractor.multi_option_extraction_methods.FuzzyFirst import FuzzyFirst -from extractors.pdf_to_multi_option_extractor.multi_option_extraction_methods.FuzzyFirstCleanLabel import ( - FuzzyFirstCleanLabel, -) -from extractors.pdf_to_multi_option_extractor.multi_option_extraction_methods.FuzzyLast import FuzzyLast -from extractors.pdf_to_multi_option_extractor.multi_option_extraction_methods.FuzzyLastCleanLabel import FuzzyLastCleanLabel -from extractors.pdf_to_multi_option_extractor.multi_option_extraction_methods.FuzzySegmentSelector import ( - FuzzySegmentSelector, -) -from extractors.pdf_to_multi_option_extractor.multi_option_extraction_methods.NextWordsTokenSelectorFuzzy75 import ( - NextWordsTokenSelectorFuzzy75, -) - -from extractors.pdf_to_multi_option_extractor.multi_option_extraction_methods.PreviousWordsSentenceSelectorFuzzyCommas import ( - PreviousWordsSentenceSelectorFuzzyCommas, -) -from extractors.pdf_to_multi_option_extractor.multi_option_extraction_methods.PreviousWordsTokenSelectorFuzzy75 import ( - PreviousWordsTokenSelectorFuzzy75, -) -from extractors.pdf_to_multi_option_extractor.multi_option_extraction_methods.SentenceSelectorFuzzyCommas import ( - SentenceSelectorFuzzyCommas, -) -from extractors.segment_selector.FastAndPositionsSegmentSelector import FastAndPositionsSegmentSelector -from extractors.segment_selector.FastSegmentSelector import FastSegmentSelector -from extractors.segment_selector.SegmentSelector import SegmentSelector -from send_logs import send_logs - -RETRAIN_SAMPLES_THRESHOLD = 250 - - -class PdfToMultiOptionExtractor(ExtractorBase): - METHODS: list[PdfMultiOptionMethod] = [ - FuzzyFirst(), - FuzzyLast(), - FuzzyFirstCleanLabel(), - FuzzyLastCleanLabel(), - FuzzyAll75(), - FuzzyAll88(), - FuzzyAll100(), - PreviousWordsTokenSelectorFuzzy75(), - NextWordsTokenSelectorFuzzy75(), - PreviousWordsSentenceSelectorFuzzyCommas(), - SentenceSelectorFuzzyCommas(), - FastSegmentSelectorFuzzy95(), - FastSegmentSelectorFuzzyCommas(), - FuzzySegmentSelector(), - PdfMultiOptionMethod(CleanBeginningDotDigits500, FastTextMethod), - PdfMultiOptionMethod(CleanEndDotDigits1000, FastTextMethod), - PdfMultiOptionMethod(CleanBeginningDot1000, SetFitEnglishMethod), - PdfMultiOptionMethod(CleanBeginningDot1000, SetFitMultilingualMethod), - PdfMultiOptionMethod(CleanBeginningDot1000, SingleLabelSetFitEnglishMethod), - PdfMultiOptionMethod(CleanBeginningDot1000, SingleLabelSetFitMultilingualMethod), - ] - - def __init__(self, extraction_identifier: ExtractionIdentifier): - super().__init__(extraction_identifier) - self.base_path = join(self.extraction_identifier.get_path(), "multi_option_extractor") - self.multi_value_path = join(self.base_path, "multi_value.json") - self.method_name_path = Path(join(self.base_path, "method_name.json")) - - self.options: list[Option] = list() - self.multi_value = False - - def create_model(self, extraction_data: ExtractionData): - self.options = self.load_options(extraction_data.options) - self.multi_value = extraction_data.multi_value - send_logs(self.extraction_identifier, f"options {[x.model_dump() for x in self.options]}") - - SegmentSelector(self.extraction_identifier).prepare_model_folder() - FastSegmentSelector(self.extraction_identifier).prepare_model_folder() - FastAndPositionsSegmentSelector(self.extraction_identifier).prepare_model_folder() - - send_logs(self.extraction_identifier, self.get_stats(extraction_data)) - - performance_train_set, performance_test_set = ExtractorBase.get_train_test_sets(extraction_data) - samples_info = f"Train: {len(performance_train_set.samples)} samples\n" - samples_info += f"Test: {len(performance_test_set.samples)} samples" - send_logs(self.extraction_identifier, samples_info) - - method = self.get_best_method(extraction_data) - - for method_to_remove in [x for x in self.METHODS if x.get_name() != method.get_name()]: - method_to_remove.remove_method_data(extraction_data.extraction_identifier) - - if len(extraction_data.samples) < RETRAIN_SAMPLES_THRESHOLD: - method.train(extraction_data) - - self.save_json(self.multi_value_path, extraction_data.multi_value) - self.save_json(str(self.method_name_path), method.get_name()) - - return True, "" - - def get_suggestions(self, predictions_samples: list[PredictionSample]) -> list[Suggestion]: - if not predictions_samples: - return [] - - training_samples, predictions = self.get_predictions(predictions_samples) - prediction_method = self.get_predictions_method() - - context_from_the_end = "End" in prediction_method.get_name() - suggestions = list() - for training_sample, prediction_sample, prediction in zip(training_samples, predictions_samples, predictions): - suggestion = Suggestion.get_empty(self.extraction_identifier, prediction_sample.entity_name) - suggestion.add_prediction_multi_option(training_sample, prediction, context_from_the_end) - suggestions.append(suggestion) - - return suggestions - - def get_predictions(self, predictions_samples: list[PredictionSample]) -> (list[TrainingSample], list[list[Option]]): - self.options = self.load_options() - self.multi_value = self.load_multi_value() - training_samples = [TrainingSample(pdf_data=sample.pdf_data) for sample in predictions_samples] - extraction_data = ExtractionData( - multi_value=self.multi_value, - options=self.options, - samples=training_samples, - extraction_identifier=self.extraction_identifier, - ) - method = self.get_predictions_method() - method.set_parameters(extraction_data) - send_logs(self.extraction_identifier, f"Using method {method.get_name()} for suggestions") - - prediction = method.predict(extraction_data) - - if not self.multi_value: - prediction = [x[:1] for x in prediction] - - return method.get_samples_for_context(extraction_data), prediction - - def load_options(self, options: list[Option] = None) -> list[Option]: - if options: - self.extraction_identifier.get_options_path().write_text(json.dumps([x.model_dump() for x in options])) - return options - - if not exists(self.extraction_identifier.get_options_path()): - return [] - - return [Option(**x) for x in json.loads(self.extraction_identifier.get_options_path().read_text())] - - def load_multi_value(self) -> bool: - if not exists(self.multi_value_path): - return False - - with open(self.multi_value_path, "r") as file: - return json.load(file) - - def get_best_method(self, multi_option_data: ExtractionData) -> PdfMultiOptionMethod: - best_method_instance = self.METHODS[0] - best_performance = 0 - performance_log = "Performance aggregation:\n" - train_set, test_set = ExtractorBase.get_train_test_sets(multi_option_data) - for method in self.METHODS: - performance = self.get_method_performance(method, train_set, test_set) - performance_log += f"{method.get_name()}: {round(performance, 2)}%\n" - if performance == 100: - send_logs(self.extraction_identifier, performance_log) - send_logs(self.extraction_identifier, f"Best method {method.get_name()} with {performance}%") - return method - - if performance > best_performance: - best_performance = performance - best_method_instance = method - - send_logs(self.extraction_identifier, performance_log) - send_logs(self.extraction_identifier, f"Best method {best_method_instance.get_name()}") - return best_method_instance - - def get_method_performance( - self, method: PdfMultiOptionMethod, train_set: ExtractionData, test_set: ExtractionData - ) -> float: - method.set_parameters(train_set) - - if not method.can_be_used(train_set): - send_logs(self.extraction_identifier, f"Not valid method {method.get_name()}") - return 0 - - send_logs(self.extraction_identifier, f"Checking {method.get_name()}") - - try: - performance = method.get_performance(train_set, test_set) - except Exception as e: - severity = Severity.error if method.REPORT_ERRORS else Severity.info - send_logs(self.extraction_identifier, f"Error checking {method.get_name()}", severity, e) - performance = 0 - - self.reset_extraction_data(train_set) - - send_logs(self.extraction_identifier, f"Performance {method.get_name()}: {round(performance, 2)}%") - return performance - - def get_predictions_method(self): - method_name = json.loads(self.method_name_path.read_text()) - for method in self.METHODS: - if method.get_name() == method_name: - return method - - return self.METHODS[0] - - def can_be_used(self, extraction_data: ExtractionData) -> bool: - if not extraction_data.options and not extraction_data.extraction_identifier.get_options_path().exists(): - return False - - for sample in extraction_data.samples: - if sample.pdf_data: - return True - - return False - - @staticmethod - def reset_extraction_data(multi_option_data: ExtractionData): - for sample in multi_option_data.samples: - for segment in sample.pdf_data.pdf_data_segments: - segment.ml_label = 0 - - @staticmethod - def get_stats(extraction_data: ExtractionData): - options = Counter() - for sample in extraction_data.samples: - options.update([option.label for option in sample.labeled_data.values]) - languages = Counter() - for sample in extraction_data.samples: - languages.update([sample.labeled_data.language_iso]) - - options_count = len(extraction_data.options) - stats = f"\nNumber of options: {options_count}\n" - stats += f"Number of samples: {len(extraction_data.samples)}\n" - stats += f"Languages\n" - stats += "\n".join([f"{key} {value}" for key, value in languages.most_common()]) - stats += f"\nOptions\n" - stats += "\n".join([f"{key} {value}" for key, value in options.most_common()]) - return stats diff --git a/src/extractors/pdf_to_multi_option_extractor/README.md b/src/extractors/pdf_to_multi_option_extractor/README.md deleted file mode 100644 index 3fe81b6..0000000 --- a/src/extractors/pdf_to_multi_option_extractor/README.md +++ /dev/null @@ -1,9 +0,0 @@ -## Do not push big files here - -Use one GPU with the following variables: - -```bash -export LANG=en_GB.UTF-8 -export CUDA_VISIBLE_DEVICES=0 -python pdf_topic_classification_benchmark.py -``` \ No newline at end of file diff --git a/src/extractors/pdf_to_multi_option_extractor/filter_segments_methods/Beginning750.py b/src/extractors/pdf_to_multi_option_extractor/filter_segments_methods/Beginning750.py deleted file mode 100644 index f8b245f..0000000 --- a/src/extractors/pdf_to_multi_option_extractor/filter_segments_methods/Beginning750.py +++ /dev/null @@ -1,42 +0,0 @@ -from copy import deepcopy - -from data.PdfDataSegment import PdfDataSegment -from extractors.pdf_to_multi_option_extractor.FilterSegmentsMethod import FilterSegmentsMethod - - -class Beginning750(FilterSegmentsMethod): - def get_first_tokens(self, pdf_data_segments: list[PdfDataSegment], text_length: int) -> list[PdfDataSegment]: - total_text = "" - filtered_segments: list[PdfDataSegment] = list() - for pdf_data_segment in pdf_data_segments: - pdf_data_segment_copy = self.get_segment(pdf_data_segment, text_length - len(total_text)) - - if not pdf_data_segment_copy: - break - - total_text += " " + pdf_data_segment_copy.text_content - filtered_segments.append(pdf_data_segment_copy) - - return filtered_segments - - @staticmethod - def get_segment(pdf_data_segment: PdfDataSegment, character_limit: int): - if character_limit <= 0: - return None - - pdf_data_segment_copy = deepcopy(pdf_data_segment) - - words = list() - text = "" - for word in pdf_data_segment_copy.text_content.split(): - if len(text + " " + word) > character_limit: - break - - words.append(word) - text += " " + word - - pdf_data_segment_copy.text_content = " ".join(words) - return pdf_data_segment_copy - - def filter_segments(self, pdf_data_segments: list[PdfDataSegment]) -> list[PdfDataSegment]: - return self.get_first_tokens(pdf_data_segments, 750) diff --git a/src/extractors/pdf_to_multi_option_extractor/filter_segments_methods/CleanBeginningDigits3000.py b/src/extractors/pdf_to_multi_option_extractor/filter_segments_methods/CleanBeginningDigits3000.py deleted file mode 100644 index 390806b..0000000 --- a/src/extractors/pdf_to_multi_option_extractor/filter_segments_methods/CleanBeginningDigits3000.py +++ /dev/null @@ -1,50 +0,0 @@ -from copy import deepcopy - -from pdf_features.Rectangle import Rectangle - -from data.PdfDataSegment import PdfDataSegment -from extractors.pdf_to_multi_option_extractor.FilterSegmentsMethod import FilterSegmentsMethod - - -class CleanBeginningDigits3000(FilterSegmentsMethod): - def get_first_tokens(self, pdf_data_segments: list[PdfDataSegment], text_length: int) -> list[PdfDataSegment]: - total_text = "" - filtered_segments: list[PdfDataSegment] = list() - for pdf_data_segment in pdf_data_segments: - pdf_data_segment_copy = self.clean_content_pdf_token(pdf_data_segment, text_length - len(total_text)) - - if not pdf_data_segment_copy: - break - - total_text += " " + pdf_data_segment_copy.text_content - filtered_segments.append(pdf_data_segment_copy) - - if not pdf_data_segments or "".join([x.text_content.strip() for x in filtered_segments]) == "": - return [PdfDataSegment(1, Rectangle(0, 0, 0, 0), "no text")] - - return filtered_segments - - @staticmethod - def clean_content_pdf_token(pdf_data_segment: PdfDataSegment, character_limit: int): - if character_limit <= 0: - return None - - pdf_data_segment.ml_label = 1 - pdf_data_segment_copy = deepcopy(pdf_data_segment) - words = list() - text = "" - for word in pdf_data_segment_copy.text_content.split(): - clean_word = "".join([x for x in word if x.isalpha() or x.isdigit()]) - - if len(text + " " + clean_word) > character_limit: - break - - if clean_word: - words.append(clean_word) - text += " " + word - - pdf_data_segment_copy.text_content = " ".join(words) - return pdf_data_segment_copy - - def filter_segments(self, pdf_data_segments: list[PdfDataSegment]) -> list[PdfDataSegment]: - return self.get_first_tokens(pdf_data_segments, 3000) diff --git a/src/extractors/pdf_to_multi_option_extractor/filter_segments_methods/CleanBeginningDot1000.py b/src/extractors/pdf_to_multi_option_extractor/filter_segments_methods/CleanBeginningDot1000.py deleted file mode 100644 index 732669a..0000000 --- a/src/extractors/pdf_to_multi_option_extractor/filter_segments_methods/CleanBeginningDot1000.py +++ /dev/null @@ -1,53 +0,0 @@ -from copy import deepcopy - -from pdf_features.Rectangle import Rectangle - -from data.PdfDataSegment import PdfDataSegment -from extractors.pdf_to_multi_option_extractor.FilterSegmentsMethod import FilterSegmentsMethod - - -class CleanBeginningDot1000(FilterSegmentsMethod): - def get_first_tokens(self, pdf_data_segments: list[PdfDataSegment], text_length: int) -> list[PdfDataSegment]: - total_text = "" - filtered_segments: list[PdfDataSegment] = list() - for pdf_data_segment in pdf_data_segments: - pdf_data_segment_copy = self.clean_content_pdf_token(pdf_data_segment, text_length - len(total_text)) - - if not pdf_data_segment_copy: - break - - if pdf_data_segment_copy.text_content and "." == pdf_data_segment.text_content[-1]: - pdf_data_segment_copy.text_content += "." - - total_text += " " + pdf_data_segment_copy.text_content - filtered_segments.append(pdf_data_segment_copy) - - if not pdf_data_segments or "".join([x.text_content.strip() for x in filtered_segments]) == "": - return [PdfDataSegment(1, Rectangle(0, 0, 0, 0), "no text")] - - return filtered_segments - - @staticmethod - def clean_content_pdf_token(pdf_data_segment: PdfDataSegment, character_limit: int): - if character_limit <= 0: - return None - - pdf_data_segment.ml_label = 1 - pdf_data_segment_copy = deepcopy(pdf_data_segment) - words = list() - text = "" - for word in pdf_data_segment_copy.text_content.split(): - clean_word = "".join([x for x in word if x.isalpha()]) - - if len(text + " " + clean_word) > character_limit: - break - - if clean_word: - words.append(clean_word) - text += " " + word - - pdf_data_segment_copy.text_content = " ".join(words) - return pdf_data_segment_copy - - def filter_segments(self, pdf_data_segments: list[PdfDataSegment]) -> list[PdfDataSegment]: - return self.get_first_tokens(pdf_data_segments, 1000) diff --git a/src/extractors/pdf_to_multi_option_extractor/filter_segments_methods/CleanBeginningDot250.py b/src/extractors/pdf_to_multi_option_extractor/filter_segments_methods/CleanBeginningDot250.py deleted file mode 100644 index 907ce64..0000000 --- a/src/extractors/pdf_to_multi_option_extractor/filter_segments_methods/CleanBeginningDot250.py +++ /dev/null @@ -1,53 +0,0 @@ -from copy import deepcopy - -from pdf_features.Rectangle import Rectangle - -from data.PdfDataSegment import PdfDataSegment -from extractors.pdf_to_multi_option_extractor.FilterSegmentsMethod import FilterSegmentsMethod - - -class CleanBeginningDot250(FilterSegmentsMethod): - def get_first_tokens(self, pdf_data_segments: list[PdfDataSegment], text_length: int) -> list[PdfDataSegment]: - total_text = "" - filtered_segments: list[PdfDataSegment] = list() - for pdf_data_segment in pdf_data_segments: - pdf_data_segment_copy = self.clean_content_pdf_token(pdf_data_segment, text_length - len(total_text)) - - if not pdf_data_segment_copy: - break - - if pdf_data_segment_copy.text_content and "." == pdf_data_segment.text_content[-1]: - pdf_data_segment_copy.text_content += "." - - total_text += " " + pdf_data_segment_copy.text_content - filtered_segments.append(pdf_data_segment_copy) - - if not pdf_data_segments or "".join([x.text_content.strip() for x in filtered_segments]) == "": - return [PdfDataSegment(1, Rectangle(0, 0, 0, 0), "no text")] - - return filtered_segments - - @staticmethod - def clean_content_pdf_token(pdf_data_segment: PdfDataSegment, character_limit: int): - if character_limit <= 0: - return None - - pdf_data_segment.ml_label = 1 - pdf_data_segment_copy = deepcopy(pdf_data_segment) - words = list() - text = "" - for word in pdf_data_segment_copy.text_content.split(): - clean_word = "".join([x for x in word if x.isalpha()]) - - if len(text + " " + clean_word) > character_limit: - break - - if clean_word: - words.append(clean_word) - text += " " + word - - pdf_data_segment_copy.text_content = " ".join(words) - return pdf_data_segment_copy - - def filter_segments(self, pdf_data_segments: list[PdfDataSegment]) -> list[PdfDataSegment]: - return self.get_first_tokens(pdf_data_segments, 250) diff --git a/src/extractors/pdf_to_multi_option_extractor/filter_segments_methods/CleanBeginningDot500.py b/src/extractors/pdf_to_multi_option_extractor/filter_segments_methods/CleanBeginningDot500.py deleted file mode 100644 index 913424e..0000000 --- a/src/extractors/pdf_to_multi_option_extractor/filter_segments_methods/CleanBeginningDot500.py +++ /dev/null @@ -1,53 +0,0 @@ -from copy import deepcopy - -from pdf_features.Rectangle import Rectangle - -from data.PdfDataSegment import PdfDataSegment -from extractors.pdf_to_multi_option_extractor.FilterSegmentsMethod import FilterSegmentsMethod - - -class CleanBeginningDot500(FilterSegmentsMethod): - def get_first_tokens(self, pdf_data_segments: list[PdfDataSegment], text_length: int) -> list[PdfDataSegment]: - total_text = "" - filtered_segments: list[PdfDataSegment] = list() - for pdf_data_segment in pdf_data_segments: - pdf_data_segment_copy = self.clean_content_pdf_token(pdf_data_segment, text_length - len(total_text)) - - if not pdf_data_segment_copy: - break - - if pdf_data_segment_copy.text_content and "." == pdf_data_segment.text_content[-1]: - pdf_data_segment_copy.text_content += "." - - total_text += " " + pdf_data_segment_copy.text_content - filtered_segments.append(pdf_data_segment_copy) - - if not pdf_data_segments or "".join([x.text_content.strip() for x in filtered_segments]) == "": - return [PdfDataSegment(1, Rectangle(0, 0, 0, 0), "no text")] - - return filtered_segments - - @staticmethod - def clean_content_pdf_token(pdf_data_segment: PdfDataSegment, character_limit: int): - if character_limit <= 0: - return None - - pdf_data_segment.ml_label = 1 - pdf_data_segment_copy = deepcopy(pdf_data_segment) - words = list() - text = "" - for word in pdf_data_segment_copy.text_content.split(): - clean_word = "".join([x for x in word if x.isalpha()]) - - if len(text + " " + clean_word) > character_limit: - break - - if clean_word: - words.append(clean_word) - text += " " + word - - pdf_data_segment_copy.text_content = " ".join(words) - return pdf_data_segment_copy - - def filter_segments(self, pdf_data_segments: list[PdfDataSegment]) -> list[PdfDataSegment]: - return self.get_first_tokens(pdf_data_segments, 500) diff --git a/src/extractors/pdf_to_multi_option_extractor/filter_segments_methods/CleanBeginningDotDigits500.py b/src/extractors/pdf_to_multi_option_extractor/filter_segments_methods/CleanBeginningDotDigits500.py deleted file mode 100644 index ae73b3a..0000000 --- a/src/extractors/pdf_to_multi_option_extractor/filter_segments_methods/CleanBeginningDotDigits500.py +++ /dev/null @@ -1,29 +0,0 @@ -from copy import deepcopy - -from data.PdfDataSegment import PdfDataSegment -from extractors.pdf_to_multi_option_extractor.filter_segments_methods.CleanBeginningDot500 import CleanBeginningDot500 - - -class CleanBeginningDotDigits500(CleanBeginningDot500): - - @staticmethod - def clean_content_pdf_token(pdf_data_segment: PdfDataSegment, character_limit: int): - if character_limit <= 0: - return None - - pdf_data_segment.ml_label = 1 - pdf_data_segment_copy = deepcopy(pdf_data_segment) - words = list() - text = "" - for word in pdf_data_segment_copy.text_content.split(): - clean_word = "".join([x for x in word if x.isalpha() or x.isdigit()]) - - if len(text + " " + clean_word) > character_limit: - break - - if clean_word: - words.append(clean_word) - text += " " + word - - pdf_data_segment_copy.text_content = " ".join(words) - return pdf_data_segment_copy diff --git a/src/extractors/pdf_to_multi_option_extractor/filter_segments_methods/CleanEndDot1000.py b/src/extractors/pdf_to_multi_option_extractor/filter_segments_methods/CleanEndDot1000.py deleted file mode 100644 index de8ec00..0000000 --- a/src/extractors/pdf_to_multi_option_extractor/filter_segments_methods/CleanEndDot1000.py +++ /dev/null @@ -1,53 +0,0 @@ -from copy import deepcopy - -from pdf_features.Rectangle import Rectangle - -from data.PdfDataSegment import PdfDataSegment -from extractors.pdf_to_multi_option_extractor.FilterSegmentsMethod import FilterSegmentsMethod - - -class CleanEndDot1000(FilterSegmentsMethod): - def get_last_tokens(self, pdf_data_segments: list[PdfDataSegment], text_length: int) -> list[PdfDataSegment]: - total_text = "" - filtered_segments: list[PdfDataSegment] = list() - for pdf_data_segment in reversed(pdf_data_segments): - pdf_data_segment_copy = self.clean_content_pdf_token(pdf_data_segment, text_length - len(total_text)) - - if not pdf_data_segment_copy: - break - - if pdf_data_segment_copy.text_content and "." == pdf_data_segment.text_content[-1]: - pdf_data_segment_copy.text_content += "." - - total_text += " " + pdf_data_segment_copy.text_content - filtered_segments.append(pdf_data_segment_copy) - - if not pdf_data_segments or "".join([x.text_content.strip() for x in filtered_segments]) == "": - return [PdfDataSegment(1, Rectangle(0, 0, 0, 0), "no text")] - - return list(reversed(filtered_segments)) - - @staticmethod - def clean_content_pdf_token(pdf_data_segment: PdfDataSegment, character_limit: int): - if character_limit <= 0: - return None - - pdf_data_segment.ml_label = 1 - pdf_data_segment_copy = deepcopy(pdf_data_segment) - words = list() - text = "" - for word in pdf_data_segment_copy.text_content.split(): - clean_word = "".join([x for x in word if x.isalpha()]) - - if len(text + " " + clean_word) > character_limit: - break - - if clean_word: - words.append(clean_word) - text += " " + word - - pdf_data_segment_copy.text_content = " ".join(words) - return pdf_data_segment_copy - - def filter_segments(self, pdf_data_segments: list[PdfDataSegment]) -> list[PdfDataSegment]: - return self.get_last_tokens(pdf_data_segments, 1000) diff --git a/src/extractors/pdf_to_multi_option_extractor/filter_segments_methods/CleanEndDot250.py b/src/extractors/pdf_to_multi_option_extractor/filter_segments_methods/CleanEndDot250.py deleted file mode 100644 index dc9443e..0000000 --- a/src/extractors/pdf_to_multi_option_extractor/filter_segments_methods/CleanEndDot250.py +++ /dev/null @@ -1,53 +0,0 @@ -from copy import deepcopy - -from pdf_features.Rectangle import Rectangle - -from data.PdfDataSegment import PdfDataSegment -from extractors.pdf_to_multi_option_extractor.FilterSegmentsMethod import FilterSegmentsMethod - - -class CleanEndDot250(FilterSegmentsMethod): - def get_last_tokens(self, pdf_data_segments: list[PdfDataSegment], text_length: int) -> list[PdfDataSegment]: - total_text = "" - filtered_segments: list[PdfDataSegment] = list() - for pdf_data_segment in reversed(pdf_data_segments): - pdf_data_segment_copy = self.clean_content_pdf_token(pdf_data_segment, text_length - len(total_text)) - - if not pdf_data_segment_copy: - break - - if pdf_data_segment_copy.text_content and "." == pdf_data_segment.text_content[-1]: - pdf_data_segment_copy.text_content += "." - - total_text += " " + pdf_data_segment_copy.text_content - filtered_segments.append(pdf_data_segment_copy) - - if not pdf_data_segments or "".join([x.text_content.strip() for x in filtered_segments]) == "": - return [PdfDataSegment(1, Rectangle(0, 0, 0, 0), "no text")] - - return list(reversed(filtered_segments)) - - @staticmethod - def clean_content_pdf_token(pdf_data_segment: PdfDataSegment, character_limit: int): - if character_limit <= 0: - return None - - pdf_data_segment.ml_label = 1 - pdf_data_segment_copy = deepcopy(pdf_data_segment) - words = list() - text = "" - for word in pdf_data_segment_copy.text_content.split(): - clean_word = "".join([x for x in word if x.isalpha()]) - - if len(text + " " + clean_word) > character_limit: - break - - if clean_word: - words.append(clean_word) - text += " " + word - - pdf_data_segment_copy.text_content = " ".join(words) - return pdf_data_segment_copy - - def filter_segments(self, pdf_data_segments: list[PdfDataSegment]) -> list[PdfDataSegment]: - return self.get_last_tokens(pdf_data_segments, 250) diff --git a/src/extractors/pdf_to_multi_option_extractor/filter_segments_methods/CleanEndDot500.py b/src/extractors/pdf_to_multi_option_extractor/filter_segments_methods/CleanEndDot500.py deleted file mode 100644 index 773011d..0000000 --- a/src/extractors/pdf_to_multi_option_extractor/filter_segments_methods/CleanEndDot500.py +++ /dev/null @@ -1,53 +0,0 @@ -from copy import deepcopy - -from pdf_features.Rectangle import Rectangle - -from data.PdfDataSegment import PdfDataSegment -from extractors.pdf_to_multi_option_extractor.FilterSegmentsMethod import FilterSegmentsMethod - - -class CleanEndDot500(FilterSegmentsMethod): - def get_tokens(self, pdf_data_segments: list[PdfDataSegment], text_length: int) -> list[PdfDataSegment]: - total_text = "" - filtered_segments: list[PdfDataSegment] = list() - for pdf_data_segment in reversed(pdf_data_segments): - pdf_data_segment_copy = self.clean_content_pdf_token(pdf_data_segment, text_length - len(total_text)) - - if not pdf_data_segment_copy: - break - - if pdf_data_segment_copy.text_content and "." == pdf_data_segment.text_content[-1]: - pdf_data_segment_copy.text_content += "." - - total_text += " " + pdf_data_segment_copy.text_content - filtered_segments.append(pdf_data_segment_copy) - - if not pdf_data_segments or "".join([x.text_content.strip() for x in filtered_segments]) == "": - return [PdfDataSegment(1, Rectangle(0, 0, 0, 0), "no text")] - - return list(reversed(filtered_segments)) - - @staticmethod - def clean_content_pdf_token(pdf_data_segment: PdfDataSegment, character_limit: int): - if character_limit <= 0: - return None - - pdf_data_segment.ml_label = 1 - pdf_data_segment_copy = deepcopy(pdf_data_segment) - words = list() - text = "" - for word in pdf_data_segment_copy.text_content.split(): - clean_word = "".join([x for x in word if x.isalpha()]) - - if len(text + " " + clean_word) > character_limit: - break - - if clean_word: - words.append(clean_word) - text += " " + word - - pdf_data_segment_copy.text_content = " ".join(words) - return pdf_data_segment_copy - - def filter_segments(self, pdf_data_segments: list[PdfDataSegment]) -> list[PdfDataSegment]: - return self.get_tokens(pdf_data_segments, 500) diff --git a/src/extractors/pdf_to_multi_option_extractor/filter_segments_methods/CleanEndDotDigits1000.py b/src/extractors/pdf_to_multi_option_extractor/filter_segments_methods/CleanEndDotDigits1000.py deleted file mode 100644 index f4feff6..0000000 --- a/src/extractors/pdf_to_multi_option_extractor/filter_segments_methods/CleanEndDotDigits1000.py +++ /dev/null @@ -1,29 +0,0 @@ -from copy import deepcopy - -from data.PdfDataSegment import PdfDataSegment -from extractors.pdf_to_multi_option_extractor.filter_segments_methods.CleanEndDot1000 import CleanEndDot1000 - - -class CleanEndDotDigits1000(CleanEndDot1000): - - @staticmethod - def clean_content_pdf_token(pdf_data_segment: PdfDataSegment, character_limit: int): - if character_limit <= 0: - return None - - pdf_data_segment.ml_label = 1 - pdf_data_segment_copy = deepcopy(pdf_data_segment) - words = list() - text = "" - for word in pdf_data_segment_copy.text_content.split(): - clean_word = "".join([x for x in word if x.isalpha() or x.isdigit()]) - - if len(text + " " + clean_word) > character_limit: - break - - if clean_word: - words.append(clean_word) - text += " " + word - - pdf_data_segment_copy.text_content = " ".join(words) - return pdf_data_segment_copy diff --git a/src/extractors/pdf_to_multi_option_extractor/filter_segments_methods/End750.py b/src/extractors/pdf_to_multi_option_extractor/filter_segments_methods/End750.py deleted file mode 100644 index e89b281..0000000 --- a/src/extractors/pdf_to_multi_option_extractor/filter_segments_methods/End750.py +++ /dev/null @@ -1,18 +0,0 @@ -from data.PdfDataSegment import PdfDataSegment -from extractors.pdf_to_multi_option_extractor.filter_segments_methods.Beginning750 import Beginning750 - - -class End750(Beginning750): - def get_first_tokens(self, pdf_data_segments: list[PdfDataSegment], text_length: int) -> list[PdfDataSegment]: - total_text = "" - filtered_segments: list[PdfDataSegment] = list() - for pdf_data_segment in reversed(pdf_data_segments): - pdf_data_segment_copy = self.get_segment(pdf_data_segment, text_length - len(total_text)) - - if not pdf_data_segment_copy: - break - - total_text += " " + pdf_data_segment_copy.text_content - filtered_segments.append(pdf_data_segment_copy) - - return list(reversed(filtered_segments)) diff --git a/src/extractors/pdf_to_multi_option_extractor/labeled_data/cejil_countries/labels.json b/src/extractors/pdf_to_multi_option_extractor/labeled_data/cejil_countries/labels.json deleted file mode 100644 index 3b837c2..0000000 --- a/src/extractors/pdf_to_multi_option_extractor/labeled_data/cejil_countries/labels.json +++ /dev/null @@ -1,254 +0,0 @@ -{ - "cejil1": [ - "Republic of Paraguay" - ], - "cejil2": [ - "Argentine Republic" - ], - "cejil3": [ - "Republic of Ecuador" - ], - "cejil4": [ - "Republic of Ecuador" - ], - "cejil5": [ - "Bolivarian Republic of Venezuela" - ], - "cejil6": [ - "Republic of Guatemala" - ], - "cejil7": [ - "Argentine Republic" - ], - "cejil8": [ - "Republic of Guatemala" - ], - "cejil9": [ - "Argentine Republic" - ], - "cejil_b3": [ - "Republic of Honduras" - ], - "cejil_staging1": [ - "Federative Republic of Brazil" - ], - "cejil_staging10": [ - "Bolivarian Republic of Venezuela" - ], - "cejil_staging11": [ - "Republic of Chile" - ], - "cejil_staging12": [ - "Republic of Colombia" - ], - "cejil_staging13": [ - "Republic of Honduras" - ], - "cejil_staging14": [ - "Republic of Paraguay" - ], - "cejil_staging15": [ - "Republic of Honduras" - ], - "cejil_staging16": [ - "Federative Republic of Brazil" - ], - "cejil_staging17": [ - "Republic of Ecuador" - ], - "cejil_staging18": [ - "Republic of Costa Rica" - ], - "cejil_staging19": [ - "Republic of El Salvador" - ], - "cejil_staging2": [ - "Republic of Colombia" - ], - "cejil_staging20": [ - "Argentine Republic" - ], - "cejil_staging21": [ - "Republic of Ecuador" - ], - "cejil_staging22": [ - "Plurinational State of Bolivia" - ], - "cejil_staging23": [ - "Republic of Colombia" - ], - "cejil_staging24": [ - "Republic of Chile" - ], - "cejil_staging25": [ - "Republic of Honduras" - ], - "cejil_staging26": [ - "Republic of Peru" - ], - "cejil_staging27": [ - "Republic of El Salvador" - ], - "cejil_staging28": [ - "Republic of Peru" - ], - "cejil_staging3": [ - "Republic of Colombia" - ], - "cejil_staging30": [ - "Republic of Honduras" - ], - "cejil_staging31": [ - "Republic of El Salvador" - ], - "cejil_staging32": [ - "Republic of Ecuador" - ], - "cejil_staging33": [ - "Republic of Honduras" - ], - "cejil_staging34": [ - "Republic of Honduras" - ], - "cejil_staging35": [ - "Republic of Colombia" - ], - "cejil_staging36": [ - "Republic of Honduras" - ], - "cejil_staging37": [ - "Republic of Haiti" - ], - "cejil_staging38": [ - "Republic of Ecuador" - ], - "cejil_staging39": [ - "Republic of Paraguay" - ], - "cejil_staging4": [ - "Republic of Guatemala" - ], - "cejil_staging40": [ - "Republic of Colombia" - ], - "cejil_staging41": [ - "Republic of Chile" - ], - "cejil_staging42": [ - "Republic of Ecuador" - ], - "cejil_staging43": [ - "Republic of Peru" - ], - "cejil_staging44": [ - "Argentine Republic" - ], - "cejil_staging45": [ - "Republic of Chile" - ], - "cejil_staging46": [ - "Republic of Chile" - ], - "cejil_staging47": [ - "Republic of Colombia" - ], - "cejil_staging48": [ - "Republic of Chile" - ], - "cejil_staging49": [ - "Republic of Ecuador" - ], - "cejil_staging5": [ - "Republic of Peru" - ], - "cejil_staging50": [ - "Republic of Peru" - ], - "cejil_staging51": [ - "Republic of Chile" - ], - "cejil_staging52": [ - "Republic of Ecuador" - ], - "cejil_staging53": [ - "Republic of Chile" - ], - "cejil_staging54": [ - "Republic of El Salvador" - ], - "cejil_staging55": [ - "United Mexican States" - ], - "cejil_staging56": [ - "Republic of Peru" - ], - "cejil_staging57": [ - "Republic of Honduras" - ], - "cejil_staging58": [ - "Republic of Peru" - ], - "cejil_staging59": [ - "Federative Republic of Brazil" - ], - "cejil_staging6": [ - "Republic of Peru" - ], - "cejil_staging60": [ - "Republic of Ecuador" - ], - "cejil_staging61": [ - "Eastern Republic of Uruguay" - ], - "cejil_staging62": [ - "Republic of Ecuador" - ], - "cejil_staging63": [ - "Eastern Republic of Uruguay" - ], - "cejil_staging64": [ - "Plurinational State of Bolivia" - ], - "cejil_staging65": [ - "Republic of Peru" - ], - "cejil_staging66": [ - "United Mexican States" - ], - "cejil_staging67": [ - "Eastern Republic of Uruguay" - ], - "cejil_staging68": [ - "Republic of Ecuador" - ], - "cejil_staging69": [ - "Republic of Ecuador" - ], - "cejil_staging7": [ - "Federative Republic of Brazil" - ], - "cejil_staging70": [ - "Republic of Guatemala" - ], - "cejil_staging71": [ - "Bolivarian Republic of Venezuela" - ], - "cejil_staging72": [ - "Republic of Panama" - ], - "cejil_staging73": [ - "Republic of Ecuador" - ], - "cejil_staging74": [ - "Republic of Peru" - ], - "cejil_staging75": [ - "Republic of Ecuador" - ], - "cejil_staging8": [ - "Republic of Chile" - ], - "cejil_staging9": [ - "Republic of Peru" - ] -} \ No newline at end of file diff --git a/src/extractors/pdf_to_multi_option_extractor/labeled_data/cejil_countries/options.json b/src/extractors/pdf_to_multi_option_extractor/labeled_data/cejil_countries/options.json deleted file mode 100644 index 03726d2..0000000 --- a/src/extractors/pdf_to_multi_option_extractor/labeled_data/cejil_countries/options.json +++ /dev/null @@ -1,198 +0,0 @@ -[ - "Islamic Republic of Afghanistan", - "Republic of Albania", - "People's Democratic Republic of Algeria", - "Principality of Andorra", - "Republic of Angola", - "Antigua and Barbuda", - "Argentine Republic", - "Republic of Armenia", - "Commonwealth of Australia", - "Republic of Austria", - "Republic of Azerbaijan", - "Commonwealth of The Bahamas", - "Kingdom of Bahrain", - "People's Republic of Bangladesh", - "Barbados", - "Republic of Belarus", - "Kingdom of Belgium", - "Belize", - "Republic of Benin", - "Kingdom of Bhutan", - "Plurinational State of Bolivia", - "Bosnia and Herzegovina", - "Republic of Botswana", - "Federative Republic of Brazil", - "Nation of Brunei, Abode of Peace", - "Republic of Bulgaria", - "Burkina Faso", - "Republic of Burundi", - "Republic of Cabo Verde", - "Kingdom of Cambodia", - "Republic of Cameroon", - "Canada", - "Central African Republic", - "Republic of Chad", - "Republic of Chile", - "People's Republic of China", - "Republic of Colombia", - "Union of the Comoros", - "Democratic Republic of the Congo", - "Republic of Costa Rica", - "Republic of Croatia", - "Republic of Cuba", - "Republic of Cyprus", - "Czech Republic", - "Democratic Republic of the Congo", - "Kingdom of Denmark", - "Republic of Djibouti", - "Commonwealth of Dominica", - "Dominican Republic", - "Democratic Republic of Timor-Leste", - "Republic of Ecuador", - "Arab Republic of Egypt", - "Republic of El Salvador", - "Republic of Equatorial Guinea", - "State of Eritrea", - "Republic of Estonia", - "Kingdom of Eswatini", - "Federal Democratic Republic of Ethiopia", - "Republic of Fiji", - "Republic of Finland", - "French Republic", - "Gabonese Republic", - "Republic of The Gambia", - "Georgia", - "Federal Republic of Germany", - "Republic of Ghana", - "Hellenic Republic (Greece)", - "Grenada", - "Republic of Guatemala", - "Republic of Guinea", - "Republic of Guinea-Bissau", - "Co-operative Republic of Guyana", - "Republic of Haiti", - "Republic of Honduras", - "Hungary", - "Republic of Iceland", - "Republic of India", - "Republic of Indonesia", - "Islamic Republic of Iran", - "Republic of Iraq", - "Ireland", - "State of Israel", - "Italian Republic", - "Republic of Côte d'Ivoire", - "Jamaica", - "Japan", - "Hashemite Kingdom of Jordan", - "Republic of Kazakhstan", - "Republic of Kenya", - "Republic of Kiribati", - "State of Kuwait", - "Kyrgyz Republic", - "Lao People's Democratic Republic", - "Republic of Latvia", - "Lebanese Republic", - "Kingdom of Lesotho", - "Republic of Liberia", - "State of Libya", - "Principality of Liechtenstein", - "Republic of Lithuania", - "Grand Duchy of Luxembourg", - "Republic of Madagascar", - "Republic of Malawi", - "Malaysia", - "Republic of Maldives", - "Republic of Mali", - "Republic of Malta", - "Republic of the Marshall Islands", - "Islamic Republic of Mauritania", - "Republic of Mauritius", - "United Mexican States", - "Federated States of Micronesia", - "Republic of Moldova", - "Principality of Monaco", - "Mongolia", - "Montenegro", - "Kingdom of Morocco", - "Republic of Mozambique", - "Republic of the Union of Myanmar", - "Republic of Namibia", - "Republic of Nauru", - "Federal Democratic Republic of Nepal", - "Kingdom of the Netherlands", - "New Zealand", - "Republic of Nicaragua", - "Republic of Niger", - "Federal Republic of Nigeria", - "Democratic People's Republic of Korea", - "Republic of North Macedonia", - "Kingdom of Norway", - "Sultanate of Oman", - "Islamic Republic of Pakistan", - "Republic of Palau", - "State of Palestine", - "Republic of Panama", - "Independent State of Papua New Guinea", - "Republic of Paraguay", - "Republic of Peru", - "Republic of the Philippines", - "Republic of Poland", - "Portuguese Republic", - "State of Qatar", - "Romania", - "Russian Federation", - "Republic of Rwanda", - "Federation of Saint Kitts and Nevis", - "Saint Lucia", - "Saint Vincent and the Grenadines", - "Independent State of Samoa", - "Republic of San Marino", - "Democratic Republic of São Tomé and Príncipe", - "Kingdom of Saudi Arabia", - "Republic of Senegal", - "Republic of Serbia", - "Republic of Seychelles", - "Republic of Sierra Leone", - "Republic of Singapore", - "Slovak Republic", - "Republic of Slovenia", - "Solomon Islands", - "Federal Republic of Somalia", - "Republic of South Africa", - "Republic of Korea (South Korea)", - "Republic of South Sudan", - "Kingdom of Spain", - "Democratic Socialist Republic of Sri Lanka", - "Republic of the Sudan", - "Republic of Suriname", - "Kingdom of Sweden", - "Swiss Confederation", - "Syrian Arab Republic", - "Taiwan (Republic of China)", - "Republic of Tajikistan", - "United Republic of Tanzania", - "Kingdom of Thailand", - "Togolese Republic", - "Kingdom of Tonga", - "Republic of Trinidad and Tobago", - "Republic of Tunisia", - "Republic of Turkey", - "Turkmenistan", - "Tuvalu", - "Republic of Uganda", - "Ukraine", - "United Arab Emirates", - "United Kingdom of Great Britain and Northern Ireland", - "United States of America", - "Eastern Republic of Uruguay", - "Republic of Uzbekistan", - "Republic of Vanuatu", - "Vatican City State", - "Bolivarian Republic of Venezuela", - "Socialist Republic of Vietnam", - "Republic of Yemen", - "Republic of Zambia", - "Republic of Zimbabwe" -] \ No newline at end of file diff --git a/src/extractors/pdf_to_multi_option_extractor/labeled_data/cejil_date/labels.json b/src/extractors/pdf_to_multi_option_extractor/labeled_data/cejil_date/labels.json deleted file mode 100644 index edfca3b..0000000 --- a/src/extractors/pdf_to_multi_option_extractor/labeled_data/cejil_date/labels.json +++ /dev/null @@ -1,245 +0,0 @@ -{ - "cejil1": [ - "December 17, 2018" - ], - "cejil2": [ - "December 7, 2018" - ], - "cejil3": [ - "November 23, 2013" - ], - "cejil4": [ - "October 5, 2018" - ], - "cejil6": [ - "March 15, 2017" - ], - "cejil7": [ - "November 28, 2005" - ], - "cejil9": [ - "October 21, 2006" - ], - "cejil_b1": [ - "June 18, 2005" - ], - "cejil_b2": [ - "January 15, 1988" - ], - "cejil_b3": [ - "June 26, 1987" - ], - "cejil_staging1": [ - "March 30, 2010" - ], - "cejil_staging10": [ - "November 18, 2020" - ], - "cejil_staging11": [ - "August 27, 2020" - ], - "cejil_staging12": [ - "December 18, 2020" - ], - "cejil_staging13": [ - "August 20, 2020" - ], - "cejil_staging15": [ - "December 17, 2020" - ], - "cejil_staging16": [ - "July 26, 2007" - ], - "cejil_staging17": [ - "December 8, 2020" - ], - "cejil_staging18": [ - "August 5, 2020" - ], - "cejil_staging19": [ - "November 18, 2020" - ], - "cejil_staging2": [ - "October 6, 2020" - ], - "cejil_staging20": [ - "November 17, 2020" - ], - "cejil_staging21": [ - "December 15, 2020" - ], - "cejil_staging22": [ - "July 17, 2020" - ], - "cejil_staging23": [ - "June 29, 2018" - ], - "cejil_staging24": [ - "August 27, 2020" - ], - "cejil_staging25": [ - "August 12, 2020" - ], - "cejil_staging26": [ - "July 26, 2019" - ], - "cejil_staging27": [ - "November 19, 2020" - ], - "cejil_staging28": [ - "November 19, 2020" - ], - "cejil_staging29": [ - "December 6, 2017" - ], - "cejil_staging3": [ - "March 12, 1997" - ], - "cejil_staging30": [ - "May 24, 2019" - ], - "cejil_staging31": [ - "December 2, 2020" - ], - "cejil_staging32": [ - "December 7, 2018" - ], - "cejil_staging33": [ - "November 12, 2009" - ], - "cejil_staging35": [ - "May 4, 2019" - ], - "cejil_staging37": [ - "April 4, 2014" - ], - "cejil_staging38": [ - "July 12, 2010" - ], - "cejil_staging39": [ - "October 3, 2019" - ], - "cejil_staging4": [ - "December 18, 2020" - ], - "cejil_staging40": [ - "July 8, 2020" - ], - "cejil_staging41": [ - "February 12, 2019" - ], - "cejil_staging42": [ - "May 8, 2018" - ], - "cejil_staging43": [ - "May 9, 2018" - ], - "cejil_staging44": [ - "November 24, 2020" - ], - "cejil_staging45": [ - "September 6, 2019" - ], - "cejil_staging46": [ - "August 27, 2020" - ], - "cejil_staging47": [ - "October 6, 2020" - ], - "cejil_staging48": [ - "August 11, 2020" - ], - "cejil_staging49": [ - "January 29, 2015" - ], - "cejil_staging5": [ - "November 24, 2020" - ], - "cejil_staging50": [ - "May 4, 2019" - ], - "cejil_staging51": [ - "November 11, 2016" - ], - "cejil_staging52": [ - "July 25, 2019" - ], - "cejil_staging54": [ - "November 18, 2020" - ], - "cejil_staging55": [ - "November 18, 2020" - ], - "cejil_staging56": [ - "December 15, 2020" - ], - "cejil_staging57": [ - "June 5, 2014" - ], - "cejil_staging58": [ - "October 8, 2020" - ], - "cejil_staging59": [ - "July 11, 2019" - ], - "cejil_staging6": [ - "March 24, 2015" - ], - "cejil_staging60": [ - "November 1, 2011" - ], - "cejil_staging61": [ - "November 9, 2019" - ], - "cejil_staging62": [ - "February 12, 2019" - ], - "cejil_staging63": [ - "November 8, 2012" - ], - "cejil_staging64": [ - "September 28, 2019" - ], - "cejil_staging65": [ - "October 5, 2018" - ], - "cejil_staging66": [ - "November 19, 2020" - ], - "cejil_staging67": [ - "May 24, 2020" - ], - "cejil_staging68": [ - "September 13, 2019" - ], - "cejil_staging69": [ - "June 19, 2020" - ], - "cejil_staging7": [ - "February 12, 2019" - ], - "cejil_staging70": [ - "March 3, 2020" - ], - "cejil_staging71": [ - "November 18, 2020" - ], - "cejil_staging72": [ - "November 18, 2020" - ], - "cejil_staging73": [ - "February 12, 2019" - ], - "cejil_staging74": [ - "November 24, 2020" - ], - "cejil_staging75": [ - "October 5, 2018" - ], - "cejil_staging8": [ - "May 4, 2019" - ], - "cejil_staging9": [ - "July 17, 2020" - ] -} \ No newline at end of file diff --git a/src/extractors/pdf_to_multi_option_extractor/labeled_data/cejil_date/options.json b/src/extractors/pdf_to_multi_option_extractor/labeled_data/cejil_date/options.json deleted file mode 100644 index 37d0775..0000000 --- a/src/extractors/pdf_to_multi_option_extractor/labeled_data/cejil_date/options.json +++ /dev/null @@ -1,60 +0,0 @@ -[ - "November 23, 2013", - "August 11, 2020", - "December 7, 2018", - "November 28, 2005", - "November 11, 2016", - "March 12, 1997", - "November 18, 2020", - "March 15, 2017", - "July 25, 2019", - "September 6, 2019", - "May 8, 2018", - "October 8, 2020", - "December 17, 2020", - "August 27, 2020", - "October 5, 2018", - "May 24, 2019", - "June 19, 2020", - "November 17, 2020", - "November 9, 2019", - "May 24, 2020", - "July 26, 2007", - "May 4, 2019", - "June 5, 2014", - "July 26, 2019", - "May 9, 2018", - "March 30, 2010", - "August 12, 2020", - "December 18, 2020", - "July 17, 2020", - "October 6, 2020", - "April 4, 2014", - "November 1, 2011", - "December 15, 2020", - "September 28, 2019", - "July 8, 2020", - "November 24, 2020", - "December 6, 2017", - "January 15, 1988", - "October 3, 2019", - "September 13, 2019", - "March 3, 2020", - "August 5, 2020", - "June 26, 1987", - "June 29, 2018", - "December 2, 2020", - "November 8, 2012", - "December 17, 2018", - "October 21, 2006", - "August 20, 2020", - "December 8, 2020", - "February 12, 2019", - "July 11, 2019", - "July 12, 2010", - "June 18, 2005", - "November 12, 2009", - "March 24, 2015", - "November 19, 2020", - "January 29, 2015" -] \ No newline at end of file diff --git a/src/extractors/pdf_to_multi_option_extractor/labeled_data/cejil_judge/labels.json b/src/extractors/pdf_to_multi_option_extractor/labeled_data/cejil_judge/labels.json deleted file mode 100644 index 8fe724f..0000000 --- a/src/extractors/pdf_to_multi_option_extractor/labeled_data/cejil_judge/labels.json +++ /dev/null @@ -1,43 +0,0 @@ -{ - "cejil5": [ - "Pier Paolo Pasceri" - ], - "cejil_b1": [ - "Antônio Augusto Cançado Trindade", - "Sergio García Ramírez" - ], - "cejil_b2": [ - "Rigoberto Espinal" - ], - "cejil_staging11": [ - "L. Patricio Pazmiño Freire" - ], - "cejil_staging19": [ - "Eduardo Vio Grossi" - ], - "cejil_staging2": [ - "Eduardo Ferrer Mac-Gregor Poisot" - ], - "cejil_staging24": [ - "L. Patricio Pazmiño Freire", - "Eugenio Raúl Zaffaroni" - ], - "cejil_staging27": [ - "Eduardo Vio Grossi" - ], - "cejil_staging28": [ - "Eduardo Vio Grossi" - ], - "cejil_staging46": [ - "Eugenio Raúl Zaffaroni" - ], - "cejil_staging47": [ - "Eduardo Ferrer Mac-Gregor Poisot" - ], - "cejil_staging5": [ - "Ricardo C. Pérez Manrique" - ], - "cejil_staging74": [ - "Eduardo Vio Grossi" - ] -} \ No newline at end of file diff --git a/src/extractors/pdf_to_multi_option_extractor/labeled_data/cejil_judge/options.json b/src/extractors/pdf_to_multi_option_extractor/labeled_data/cejil_judge/options.json deleted file mode 100644 index dd7c7f2..0000000 --- a/src/extractors/pdf_to_multi_option_extractor/labeled_data/cejil_judge/options.json +++ /dev/null @@ -1,11 +0,0 @@ -[ - "Eugenio Raúl Zaffaroni", - "Eduardo Vio Grossi", - "Pier Paolo Pasceri", - "Eduardo Ferrer Mac-Gregor Poisot", - "Antônio Augusto Cançado Trindade", - "Ricardo C. Pérez Manrique", - "Sergio García Ramírez", - "L. Patricio Pazmiño Freire", - "Rigoberto Espinal" -] \ No newline at end of file diff --git a/src/extractors/pdf_to_multi_option_extractor/labeled_data/cejil_president/labels.json b/src/extractors/pdf_to_multi_option_extractor/labeled_data/cejil_president/labels.json deleted file mode 100644 index 9deb8cb..0000000 --- a/src/extractors/pdf_to_multi_option_extractor/labeled_data/cejil_president/labels.json +++ /dev/null @@ -1,84 +0,0 @@ -{ - "cejil1": [ - "Eduardo Ferrer Mac-Gregor Poisot" - ], - "cejil7": [ - "Sergio García Ramírez" - ], - "cejil8": [ - "Héctor Fix-Zamudio" - ], - "cejil_b1": [ - "Sergio García Ramírez" - ], - "cejil_b2": [ - "Rafael Nieto Navia" - ], - "cejil_b3": [ - "Thomas Buergenthal" - ], - "cejil_staging1": [ - "Diego García-Sayán" - ], - "cejil_staging10": [ - "Elizabeth O. Benito" - ], - "cejil_staging12": [ - "Elizabeth O. Benito" - ], - "cejil_staging15": [ - "Elizabeth O. Benito" - ], - "cejil_staging17": [ - "Elizabeth O. Benito" - ], - "cejil_staging2": [ - "Elizabeth O. Benito" - ], - "cejil_staging20": [ - "Elizabeth O. Benito" - ], - "cejil_staging21": [ - "Elizabeth O. Benito" - ], - "cejil_staging24": [ - "Elizabeth O. Benito" - ], - "cejil_staging27": [ - "Elizabeth O. Benito" - ], - "cejil_staging31": [ - "Elizabeth O. Benito" - ], - "cejil_staging4": [ - "Elizabeth O. Benito" - ], - "cejil_staging44": [ - "Elizabeth O. Benito" - ], - "cejil_staging54": [ - "Elizabeth O. Benito" - ], - "cejil_staging55": [ - "Elizabeth O. Benito" - ], - "cejil_staging56": [ - "Elizabeth O. Benito" - ], - "cejil_staging58": [ - "L. Patricio Pazmiño Freire" - ], - "cejil_staging66": [ - "Elizabeth O. Benito" - ], - "cejil_staging71": [ - "Elizabeth O. Benito" - ], - "cejil_staging72": [ - "Elizabeth O. Benito" - ], - "cejil_staging8": [ - "Joel Hernández", - "Esmeralda Test Arosemena Bernal de Troitiño" - ] -} \ No newline at end of file diff --git a/src/extractors/pdf_to_multi_option_extractor/labeled_data/cejil_president/options.json b/src/extractors/pdf_to_multi_option_extractor/labeled_data/cejil_president/options.json deleted file mode 100644 index 2121349..0000000 --- a/src/extractors/pdf_to_multi_option_extractor/labeled_data/cejil_president/options.json +++ /dev/null @@ -1,12 +0,0 @@ -[ - "Thomas Buergenthal", - "Héctor Fix-Zamudio", - "Eduardo Ferrer Mac-Gregor Poisot", - "Joel Hernández", - "Sergio García Ramírez", - "Rafael Nieto Navia", - "Elizabeth O. Benito", - "L. Patricio Pazmiño Freire", - "Diego García-Sayán", - "Esmeralda Test Arosemena Bernal de Troitiño" -] \ No newline at end of file diff --git a/src/extractors/pdf_to_multi_option_extractor/labeled_data/cejil_secretary/labels.json b/src/extractors/pdf_to_multi_option_extractor/labeled_data/cejil_secretary/labels.json deleted file mode 100644 index 1eac6f2..0000000 --- a/src/extractors/pdf_to_multi_option_extractor/labeled_data/cejil_secretary/labels.json +++ /dev/null @@ -1,200 +0,0 @@ -{ - "cejil1": [ - "Pablo Saavedra Alessandri" - ], - "cejil3": [ - "Elizabeth Abi-Mershed" - ], - "cejil5": [ - "Pablo Saavedra Alessandri" - ], - "cejil6": [ - "Elizabeth Abi-Mershed" - ], - "cejil7": [ - "Pablo Saavedra Alessandri" - ], - "cejil8": [ - "Manuel Ventura Robles" - ], - "cejil_b1": [ - "Pablo Saavedra Alessandri" - ], - "cejil_b2": [ - "Charles Moyer" - ], - "cejil_b3": [ - "Charles Moyer", - "Manuel Ventura", - "Edmundo Vargas Carreño" - ], - "cejil_staging1": [ - "Emilia Segares Rodríguez" - ], - "cejil_staging10": [ - "Pablo Saavedra Alessandri" - ], - "cejil_staging11": [ - "Pablo Saavedra Alessandri" - ], - "cejil_staging12": [ - "Pablo Saavedra Alessandri" - ], - "cejil_staging13": [ - "Marisol Blanchard" - ], - "cejil_staging15": [ - "Pablo Saavedra Alessandri" - ], - "cejil_staging17": [ - "Pablo Saavedra Alessandri" - ], - "cejil_staging18": [ - "Marisol Blanchard" - ], - "cejil_staging19": [ - "Pablo Saavedra Alessandri" - ], - "cejil_staging2": [ - "Romina I. Sijniensky" - ], - "cejil_staging20": [ - "Pablo Saavedra Alessandri" - ], - "cejil_staging21": [ - "Pablo Saavedra Alessandri" - ], - "cejil_staging22": [ - "Marisol Blanchard" - ], - "cejil_staging23": [ - "Paulo Abrão" - ], - "cejil_staging24": [ - "Romina I. Sijniensky", - "Pablo Saavedra Alessandri" - ], - "cejil_staging25": [ - "Marisol Blanchard" - ], - "cejil_staging26": [ - "Pablo Saavedra Alessandri", - "Víctor Guerrero Cassuso", - "Marisol Blanchard", - "Julio Rossi Mérida", - "Sergio Valdivia Ayala" - ], - "cejil_staging27": [ - "Pablo Saavedra Alessandri" - ], - "cejil_staging28": [ - "Pablo Saavedra Alessandri" - ], - "cejil_staging29": [ - "Elizabeth Abi-Mershed" - ], - "cejil_staging30": [ - "Pablo Saavedra Alessandri", - "Marisol Blanchard" - ], - "cejil_staging31": [ - "Pablo Saavedra Alessandri" - ], - "cejil_staging32": [ - "Paulo Abrão" - ], - "cejil_staging4": [ - "Pablo Saavedra Alessandri" - ], - "cejil_staging40": [ - "Pablo Saavedra Alessandri", - "Marisol Blanchard" - ], - "cejil_staging43": [ - "Paulo Abrão" - ], - "cejil_staging44": [ - "Pablo Saavedra Alessandri" - ], - "cejil_staging45": [ - "Pablo Saavedra Alessandri", - "Marisol Blanchard" - ], - "cejil_staging46": [ - "Pablo Saavedra Alessandri" - ], - "cejil_staging47": [ - "Romina I. Sijniensky" - ], - "cejil_staging48": [ - "Pablo Saavedra Alessandri", - "Marisol Blanchard" - ], - "cejil_staging5": [ - "Pablo Saavedra Alessandri" - ], - "cejil_staging50": [ - "Paulo Abrão" - ], - "cejil_staging52": [ - "Pablo Saavedra Alessandri", - "Marisol Blanchard" - ], - "cejil_staging54": [ - "Pablo Saavedra Alessandri" - ], - "cejil_staging55": [ - "Pablo Saavedra Alessandri" - ], - "cejil_staging56": [ - "Pablo Saavedra Alessandri" - ], - "cejil_staging58": [ - "Pablo Saavedra Alessandri" - ], - "cejil_staging59": [ - "Paulo Abrão" - ], - "cejil_staging65": [ - "Marisol Blanchard" - ], - "cejil_staging66": [ - "Pablo Saavedra Alessandri" - ], - "cejil_staging67": [ - "Pablo Saavedra Alessandri", - "Marisol Blanchard" - ], - "cejil_staging68": [ - "Paulo Abrão" - ], - "cejil_staging69": [ - "Pablo Saavedra Alessandri", - "Marisol Blanchard" - ], - "cejil_staging7": [ - "Marisol Blanchard" - ], - "cejil_staging70": [ - "Marisol Blanchard" - ], - "cejil_staging71": [ - "Pablo Saavedra Alessandri" - ], - "cejil_staging72": [ - "Pablo Saavedra Alessandri" - ], - "cejil_staging74": [ - "Pablo Saavedra Alessandri" - ], - "cejil_staging75": [ - "Mario López-Garelli" - ], - "cejil_staging8": [ - "Paulo Abrão" - ], - "cejil_staging9": [ - "Pablo Saavedra Alessandri", - "Marisol Blanchard" - ] -} \ No newline at end of file diff --git a/src/extractors/pdf_to_multi_option_extractor/labeled_data/cejil_secretary/options.json b/src/extractors/pdf_to_multi_option_extractor/labeled_data/cejil_secretary/options.json deleted file mode 100644 index 27c894c..0000000 --- a/src/extractors/pdf_to_multi_option_extractor/labeled_data/cejil_secretary/options.json +++ /dev/null @@ -1,16 +0,0 @@ -[ - "Elizabeth Abi-Mershed", - "Marisol Blanchard", - "Julio Rossi Mérida", - "Víctor Guerrero Cassuso", - "Paulo Abrão", - "Sergio Valdivia Ayala", - "Emilia Segares Rodríguez", - "Romina I. Sijniensky", - "Mario López-Garelli", - "Edmundo Vargas Carreño", - "Pablo Saavedra Alessandri", - "Manuel Ventura Robles", - "Charles Moyer", - "Manuel Ventura" -] \ No newline at end of file diff --git a/src/extractors/pdf_to_multi_option_extractor/labeled_data/countries_in_favor/labels.json b/src/extractors/pdf_to_multi_option_extractor/labeled_data/countries_in_favor/labels.json deleted file mode 100644 index eebf4bb..0000000 --- a/src/extractors/pdf_to_multi_option_extractor/labeled_data/countries_in_favor/labels.json +++ /dev/null @@ -1,2120 +0,0 @@ -{ - "rightsdocs_res_45_20": [ - "Argentina", - "Australia", - "Austria", - "Bahamas", - "Brazil", - "Bulgaria", - "Chile", - "Czechia", - "Denmark", - "Fiji", - "Germany", - "Italy", - "Japan", - "Korea, Republic of", - "Marshall Islands", - "Netherlands", - "Peru", - "Poland", - "Slovakia", - "Spain", - "Ukraine", - "Uruguay" - ], - "rightsdocs_res_s25_1": [ - "Albania", - "Belgium", - "Botswana", - "El Salvador", - "France", - "Georgia", - "Germany", - "Korea, Republic of", - "Latvia", - "Maldives", - "Mexico", - "Mongolia", - "Morocco", - "Netherlands", - "North Macedonia", - "Portugal", - "Qatar", - "Saudi Arabia", - "Slovenia", - "Switzerland", - "Togo", - "United Arab Emirates", - "United Kingdom", - "Côte d'Ivoire" - ], - "rightsdocs_res_45_19": [ - "Argentina", - "Armenia", - "Australia", - "Austria", - "Bahamas", - "Brazil", - "Bulgaria", - "Chile", - "Czechia", - "Denmark", - "Fiji", - "Germany", - "Italy", - "Japan", - "Korea, Republic of", - "Marshall Islands", - "Mexico", - "Netherlands", - "Peru", - "Poland", - "Slovakia", - "Spain", - "Ukraine", - "Uruguay" - ], - "rightsdocs_res_43_10": [ - "Angola", - "Argentina", - "Bahrain", - "Bangladesh", - "Burkina Faso", - "Cameroon", - "Chile", - "Congo, the Democratic Republic of the", - "Eritrea", - "Fiji", - "India", - "Indonesia", - "Libya", - "Mauritania", - "Namibia", - "Nepal", - "Nigeria", - "Pakistan", - "Philippines", - "Qatar", - "Senegal", - "Somalia", - "Sudan", - "Togo", - "Uruguay", - "Venezuela, Bolivarian Republic of" - ], - "rightsdocs_res_43_15": [ - "Angola", - "Argentina", - "Armenia", - "Bahamas", - "Bahrain", - "Bangladesh", - "Burkina Faso", - "Cameroon", - "Congo, the Democratic Republic of the", - "Eritrea", - "Fiji", - "India", - "Indonesia", - "Namibia", - "Nepal", - "Nigeria", - "Pakistan", - "Philippines", - "Qatar", - "Senegal", - "Somalia", - "Sudan", - "Togo", - "Uruguay", - "Venezuela, Bolivarian Republic of" - ], - "rightsdocs_res_45_6": [ - "Afghanistan", - "Angola", - "Argentina", - "Bahamas", - "Bahrain", - "Bangladesh", - "Burkina Faso", - "Cameroon", - "Congo, the Democratic Republic of the", - "Eritrea", - "Fiji", - "India", - "Indonesia", - "Libya", - "Mauritania", - "Namibia", - "Nepal", - "Nigeria", - "Pakistan", - "Peru", - "Philippines", - "Qatar", - "Senegal", - "Somalia", - "Sudan", - "Togo", - "Venezuela, Bolivarian Republic of" - ], - "rightsdocs_res_42_9": [ - "Angola", - "Argentina", - "Bahamas", - "Bahrain", - "Bangladesh", - "Burkina Faso", - "Cameroon", - "Chile", - "China", - "Cuba", - "Egypt", - "Eritrea", - "Fiji", - "India", - "Iraq", - "Nepal", - "Nigeria", - "Pakistan", - "Peru", - "Philippines", - "Qatar", - "Rwanda", - "Saudi Arabia", - "Senegal", - "Somalia", - "South Africa", - "Togo", - "Tunisia", - "Uruguay" - ], - "rightsdocs_res_11926": [ - "Angola", - "Azerbaijan", - "Bangladesh", - "Bolivia, Plurinational State of", - "Brazil", - "Cameroon", - "China", - "Cuba", - "Djibouti", - "Egypt", - "Gabon", - "Ghana", - "Guatemala", - "India", - "Indonesia", - "Jordan", - "Madagascar", - "Malaysia", - "Mali", - "Mauritius", - "Mexico", - "Nicaragua", - "Nigeria", - "Pakistan", - "Peru", - "Philippines", - "Qatar", - "Russian Federation", - "Saudi Arabia", - "Senegal", - "South Africa", - "Sri Lanka", - "Uruguay", - "Zambia" - ], - "rightsdocs_res_3388": [ - "Algeria", - "Argentina", - "Benin", - "Botswana", - "Brazil", - "Burkina Faso", - "China", - "Congo", - "Costa Rica", - "Côte d'Ivoire", - "Cuba", - "Ethiopia", - "Gabon", - "India", - "Indonesia", - "Kazakhstan", - "Kenya", - "Kuwait", - "Maldives", - "Morocco", - "Namibia", - "Pakistan", - "Philippines", - "Russian Federation", - "Saudi Arabia", - "Sierra Leone", - "South Africa", - "United Arab Emirates", - "Venezuela, Bolivarian Republic of", - "Viet Nam" - ], - "rightsdocs_res_45_15": [ - "Argentina", - "Australia", - "Austria", - "Bahamas", - "Brazil", - "Bulgaria", - "Chile", - "Czechia", - "Denmark", - "Fiji", - "Germany", - "Italy", - "Korea, Republic of", - "Marshall Islands", - "Mexico", - "Netherlands", - "Peru", - "Poland", - "Qatar", - "Slovakia", - "Spain", - "Uruguay" - ], - "rightsdocs_res_12067": [ - "Angola", - "Azerbaijan", - "Bangladesh", - "Bolivia, Plurinational State of", - "Brazil", - "Cameroon", - "China", - "Cuba", - "Djibouti", - "Egypt", - "Gabon", - "Ghana", - "Guatemala", - "India", - "Indonesia", - "Jordan", - "Madagascar", - "Malaysia", - "Mali", - "Mauritius", - "Mexico", - "Nicaragua", - "Nigeria", - "Pakistan", - "Peru", - "Philippines", - "Qatar", - "Russian Federation", - "Saudi Arabia", - "Senegal", - "South Africa", - "Sri Lanka", - "Uruguay", - "Zambia" - ], - "rightsdocs_res_43_2": [ - "Afghanistan", - "Argentina", - "Australia", - "Austria", - "Bahamas", - "Brazil", - "Bulgaria", - "Chile", - "Czechia", - "Denmark", - "Fiji", - "Germany", - "Italy", - "Japan", - "Korea, Republic of", - "Marshall Islands", - "Mexico", - "Netherlands", - "Peru", - "Poland", - "Slovakia", - "Spain", - "Ukraine", - "Uruguay" - ], - "rightsdocs_res_42_28": [ - "Afghanistan", - "Angola", - "Argentina", - "Australia", - "Austria", - "Bahamas", - "Bangladesh", - "Brazil", - "Bulgaria", - "Burkina Faso", - "Chile", - "Congo, the Democratic Republic of the", - "Croatia", - "Czechia", - "Denmark", - "Fiji", - "Hungary", - "Iceland", - "India", - "Iraq", - "Italy", - "Japan", - "Mexico", - "Nepal", - "Pakistan", - "Peru", - "Rwanda", - "Senegal", - "Slovakia", - "South Africa", - "Spain", - "Togo", - "Tunisia", - "Ukraine", - "United Kingdom", - "Uruguay" - ], - "rightsdocs_res_874": [ - "Algeria", - "Argentina", - "Bangladesh", - "Bolivia, Plurinational State of", - "Botswana", - "Brazil", - "China", - "Congo", - "Côte d'Ivoire", - "Cuba", - "El Salvador", - "Ethiopia", - "Gabon", - "Ghana", - "India", - "Indonesia", - "Kazakhstan", - "Kenya", - "Maldives", - "Morocco", - "Namibia", - "Nigeria", - "Pakistan", - "Paraguay", - "Qatar", - "Russian Federation", - "Saudi Arabia", - "Sierra Leone", - "South Africa", - "United Arab Emirates", - "Venezuela, Bolivarian Republic of", - "Viet Nam" - ], - "rightsdocs_res_42_24": [ - "Angola", - "Argentina", - "Australia", - "Austria", - "Brazil", - "Bulgaria", - "Burkina Faso", - "Chile", - "Croatia", - "Czechia", - "Denmark", - "Fiji", - "Hungary", - "Iceland", - "Italy", - "Mexico", - "Nepal", - "Peru", - "Rwanda", - "Slovakia", - "South Africa", - "Spain", - "Togo", - "Ukraine", - "United Kingdom", - "Uruguay" - ], - "rightsdocs_res_41_2": [ - "Argentina", - "Australia", - "Austria", - "Bahamas", - "Bulgaria", - "Croatia", - "Czechia", - "Denmark", - "Fiji", - "Iceland", - "Italy", - "Mexico", - "Peru", - "Slovakia", - "Spain", - "Ukraine", - "United Kingdom", - "Uruguay" - ], - "rightsdocs_res_3570": [ - "Argentina", - "Austria", - "Benin", - "Botswana", - "Brazil", - "Burkina Faso", - "Chile", - "Costa Rica", - "Côte d'Ivoire", - "Czechia", - "Estonia", - "France", - "Germany", - "Ireland", - "Italy", - "Japan", - "Kazakhstan", - "Korea, Republic of", - "Maldives", - "Mexico", - "Montenegro", - "Morocco", - "North Macedonia", - "Peru", - "Philippines", - "Romania", - "Sierra Leone", - "United Arab Emirates", - "United Kingdom", - "United States" - ], - "rightsdocs_res_3352": [ - "Algeria", - "Argentina", - "Austria", - "Benin", - "Botswana", - "Brazil", - "Burkina Faso", - "Chile", - "China", - "Congo", - "Costa Rica", - "Côte d'Ivoire", - "Cuba", - "Czechia", - "Estonia", - "Ethiopia", - "France", - "Gabon", - "Germany", - "India", - "Indonesia", - "Ireland", - "Italy", - "Japan", - "Kazakhstan", - "Kenya", - "Korea, Republic of", - "Kuwait", - "Maldives", - "Mexico", - "Montenegro", - "Morocco", - "Namibia", - "North Macedonia", - "Pakistan", - "Peru", - "Philippines", - "Romania", - "Russian Federation", - "Saudi Arabia", - "Sierra Leone", - "South Africa", - "United Arab Emirates", - "United Kingdom", - "Venezuela, Bolivarian Republic of", - "Viet Nam" - ], - "rightsdocs_res_3522": [ - "Algeria", - "Argentina", - "Austria", - "Benin", - "Botswana", - "Brazil", - "Burkina Faso", - "Chile", - "China", - "Congo", - "Costa Rica", - "Côte d'Ivoire", - "Cuba", - "Czechia", - "Estonia", - "Ethiopia", - "France", - "Gabon", - "Germany", - "India", - "Indonesia", - "Ireland", - "Italy", - "Japan", - "Kazakhstan", - "Kenya", - "Korea, Republic of", - "Kuwait", - "Maldives", - "Mexico", - "Montenegro", - "Morocco", - "Namibia", - "North Macedonia", - "Pakistan", - "Peru", - "Philippines", - "Romania", - "Russian Federation", - "Saudi Arabia", - "Sierra Leone", - "South Africa", - "United Arab Emirates", - "United Kingdom", - "Venezuela, Bolivarian Republic of", - "Viet Nam" - ], - "rightsdocs_res_41_25": [ - "Australia", - "Austria", - "Bahamas", - "Bulgaria", - "Chile", - "Croatia", - "Czechia", - "Denmark", - "Fiji", - "Hungary", - "Iceland", - "Italy", - "Japan", - "Mexico", - "Peru", - "Rwanda", - "Slovakia", - "Spain", - "Ukraine", - "United Kingdom" - ], - "rightsdocs_res_3540": [ - "Algeria", - "Argentina", - "Austria", - "Benin", - "Botswana", - "Brazil", - "Burkina Faso", - "Chile", - "China", - "Congo", - "Costa Rica", - "Côte d'Ivoire", - "Cuba", - "Czechia", - "Estonia", - "Ethiopia", - "France", - "Gabon", - "Germany", - "India", - "Indonesia", - "Ireland", - "Italy", - "Japan", - "Kazakhstan", - "Kenya", - "Korea, Republic of", - "Kuwait", - "Maldives", - "Mexico", - "Montenegro", - "Morocco", - "Namibia", - "North Macedonia", - "Pakistan", - "Peru", - "Philippines", - "Romania", - "Russian Federation", - "Saudi Arabia", - "Sierra Leone", - "South Africa", - "United Arab Emirates", - "United Kingdom", - "Venezuela, Bolivarian Republic of", - "Viet Nam" - ], - "rightsdocs_res_42_3": [ - "Afghanistan", - "Argentina", - "Australia", - "Austria", - "Bahamas", - "Bahrain", - "Bangladesh", - "Brazil", - "Bulgaria", - "Burkina Faso", - "Chile", - "Croatia", - "Czechia", - "Denmark", - "Egypt", - "Eritrea", - "Fiji", - "Hungary", - "Iceland", - "Iraq", - "Italy", - "Mexico", - "Nigeria", - "Pakistan", - "Peru", - "Qatar", - "Rwanda", - "Saudi Arabia", - "Senegal", - "Slovakia", - "Somalia", - "South Africa", - "Spain", - "Togo", - "Tunisia", - "United Kingdom", - "Uruguay" - ], - "rightsdocs_res_45_31": [ - "Afghanistan", - "Angola", - "Argentina", - "Armenia", - "Australia", - "Austria", - "Bahamas", - "Brazil", - "Bulgaria", - "Burkina Faso", - "Chile", - "Congo, the Democratic Republic of the", - "Czechia", - "Denmark", - "Fiji", - "Germany", - "Italy", - "Japan", - "Korea, Republic of", - "Marshall Islands", - "Mexico", - "Nepal", - "Netherlands", - "Peru", - "Poland", - "Qatar", - "Senegal", - "Slovakia", - "Spain", - "Togo", - "Ukraine", - "Uruguay" - ], - "rightsdocs_res_45_14": [ - "Afghanistan", - "Angola", - "Bahamas", - "Bahrain", - "Bangladesh", - "Burkina Faso", - "Cameroon", - "Congo, the Democratic Republic of the", - "Eritrea", - "Fiji", - "India", - "Indonesia", - "Libya", - "Mauritania", - "Namibia", - "Nepal", - "Nigeria", - "Pakistan", - "Philippines", - "Qatar", - "Senegal", - "Somalia", - "Sudan", - "Togo", - "Venezuela, Bolivarian Republic of" - ], - "rightsdocs_res_42_26": [ - "Argentina", - "Australia", - "Austria", - "Bahamas", - "Brazil", - "Bulgaria", - "Chile", - "Croatia", - "Czechia", - "Denmark", - "Fiji", - "Hungary", - "Iceland", - "Italy", - "Japan", - "Mexico", - "Peru", - "Rwanda", - "Slovakia", - "Spain", - "Ukraine", - "United Kingdom", - "Uruguay" - ], - "rightsdocs_res_3035": [ - "Algeria", - "Argentina", - "Benin", - "Botswana", - "Brazil", - "Burkina Faso", - "China", - "Congo", - "Costa Rica", - "Côte d'Ivoire", - "Cuba", - "Ethiopia", - "Gabon", - "India", - "Indonesia", - "Kazakhstan", - "Kenya", - "Kuwait", - "Maldives", - "Morocco", - "Namibia", - "Pakistan", - "Philippines", - "Russian Federation", - "Saudi Arabia", - "Sierra Leone", - "South Africa", - "United Arab Emirates", - "Venezuela, Bolivarian Republic of", - "Viet Nam" - ], - "rightsdocs_res_12001": [ - "Angola", - "Azerbaijan", - "Bangladesh", - "Bolivia, Plurinational State of", - "Brazil", - "China", - "Cuba", - "Djibouti", - "Egypt", - "Gabon", - "Ghana", - "India", - "Indonesia", - "Jordan", - "Malaysia", - "Mali", - "Mauritius", - "Mexico", - "Nicaragua", - "Nigeria", - "Pakistan", - "Peru", - "Philippines", - "Qatar", - "Russian Federation", - "Saudi Arabia", - "Senegal", - "South Africa", - "Sri Lanka", - "Uruguay", - "Zambia" - ], - "rightsdocs_res_45_21": [ - "Argentina", - "Australia", - "Austria", - "Bahamas", - "Brazil", - "Bulgaria", - "Chile", - "Czechia", - "Denmark", - "Fiji", - "Germany", - "Italy", - "Japan", - "Korea, Republic of", - "Libya", - "Marshall Islands", - "Mexico", - "Netherlands", - "Peru", - "Poland", - "Qatar", - "Slovakia", - "Somalia", - "Spain", - "Togo", - "Ukraine", - "Uruguay" - ], - "rightsdocs_res_2898": [ - "Algeria", - "Argentina", - "Benin", - "Brazil", - "Burkina Faso", - "Chile", - "China", - "Congo", - "Costa Rica", - "Côte d'Ivoire", - "Cuba", - "Ethiopia", - "Gabon", - "India", - "Indonesia", - "Kazakhstan", - "Kenya", - "Morocco", - "Namibia", - "Pakistan", - "Peru", - "Philippines", - "Russian Federation", - "Saudi Arabia", - "Sierra Leone", - "South Africa", - "United Arab Emirates", - "Venezuela, Bolivarian Republic of", - "Viet Nam" - ], - "rightsdocs_res_3011": [ - "Algeria", - "Argentina", - "Benin", - "Botswana", - "Brazil", - "Burkina Faso", - "Chile", - "China", - "Congo", - "Costa Rica", - "Côte d'Ivoire", - "Cuba", - "Ethiopia", - "Gabon", - "India", - "Indonesia", - "Kazakhstan", - "Kenya", - "Kuwait", - "Maldives", - "Mexico", - "Morocco", - "Namibia", - "Pakistan", - "Peru", - "Philippines", - "Russian Federation", - "Saudi Arabia", - "Sierra Leone", - "South Africa", - "United Arab Emirates", - "Venezuela, Bolivarian Republic of", - "Viet Nam" - ], - "rightsdocs_res_12928": [ - "Algeria", - "Argentina", - "Brazil", - "Chile", - "China", - "Congo", - "Costa Rica", - "Côte d'Ivoire", - "Cuba", - "Ethiopia", - "India", - "Indonesia", - "Kazakhstan", - "Kenya", - "Kuwait", - "Maldives", - "Mexico", - "Morocco", - "Namibia", - "Pakistan", - "Peru", - "Philippines", - "Russian Federation", - "Saudi Arabia", - "Sierra Leone", - "South Africa", - "United Arab Emirates", - "Venezuela, Bolivarian Republic of", - "Viet Nam" - ], - "rightsdocs_res_44_19": [ - "Argentina", - "Australia", - "Austria", - "Brazil", - "Bulgaria", - "Chile", - "Czechia", - "Denmark", - "Fiji", - "Germany", - "Italy", - "Japan", - "Korea, Republic of", - "Libya", - "Marshall Islands", - "Mexico", - "Netherlands", - "Peru", - "Poland", - "Slovakia", - "Spain", - "Ukraine" - ], - "rightsdocs_res_41_3": [ - "Afghanistan", - "Angola", - "Bahamas", - "Bahrain", - "Bangladesh", - "Burkina Faso", - "Cameroon", - "China", - "Congo, the Democratic Republic of the", - "Cuba", - "Egypt", - "Eritrea", - "Fiji", - "India", - "Iraq", - "Nepal", - "Nigeria", - "Pakistan", - "Philippines", - "Qatar", - "Rwanda", - "Saudi Arabia", - "Senegal", - "Somalia", - "South Africa", - "Togo", - "Tunisia", - "Uruguay" - ], - "rightsdocs_res_43_3": [ - "Afghanistan", - "Angola", - "Argentina", - "Armenia", - "Bahrain", - "Bangladesh", - "Burkina Faso", - "Chile", - "Eritrea", - "Indonesia", - "Libya", - "Mauritania", - "Mexico", - "Namibia", - "Nigeria", - "Pakistan", - "Peru", - "Qatar", - "Senegal", - "Somalia", - "Sudan", - "Venezuela, Bolivarian Republic of" - ], - "rightsdocs_res_3546": [ - "Algeria", - "Argentina", - "Botswana", - "Brazil", - "Burkina Faso", - "Chile", - "China", - "Congo", - "Costa Rica", - "Cuba", - "Ethiopia", - "India", - "Indonesia", - "Kazakhstan", - "Kuwait", - "Mexico", - "Morocco", - "Namibia", - "Pakistan", - "Peru", - "Philippines", - "Russian Federation", - "Sierra Leone", - "South Africa", - "United Arab Emirates", - "Venezuela, Bolivarian Republic of", - "Viet Nam" - ], - "rightsdocs_res_42_23": [ - "Afghanistan", - "Angola", - "Bahamas", - "Bahrain", - "Bangladesh", - "Burkina Faso", - "Cameroon", - "China", - "Congo, the Democratic Republic of the", - "Cuba", - "Egypt", - "Eritrea", - "Fiji", - "India", - "Iraq", - "Nepal", - "Nigeria", - "Pakistan", - "Philippines", - "Qatar", - "Rwanda", - "Saudi Arabia", - "Senegal", - "Somalia", - "South Africa", - "Togo", - "Tunisia" - ], - "rightsdocs_res_859": [ - "Algeria", - "Argentina", - "Bangladesh", - "Bolivia, Plurinational State of", - "Botswana", - "Brazil", - "China", - "Congo", - "Côte d'Ivoire", - "Cuba", - "El Salvador", - "Ethiopia", - "Gabon", - "Ghana", - "India", - "Indonesia", - "Kazakhstan", - "Kenya", - "Maldives", - "Morocco", - "Namibia", - "Nigeria", - "Pakistan", - "Paraguay", - "Russian Federation", - "Saudi Arabia", - "Sierra Leone", - "South Africa", - "United Arab Emirates", - "Venezuela, Bolivarian Republic of", - "Viet Nam" - ], - "rightsdocs_res_45_5": [ - "Angola", - "Argentina", - "Bahamas", - "Bahrain", - "Bangladesh", - "Burkina Faso", - "Cameroon", - "Chile", - "Congo, the Democratic Republic of the", - "Eritrea", - "Fiji", - "India", - "Indonesia", - "Libya", - "Mauritania", - "Namibia", - "Nepal", - "Nigeria", - "Pakistan", - "Peru", - "Philippines", - "Qatar", - "Senegal", - "Somalia", - "Sudan", - "Togo", - "Venezuela, Bolivarian Republic of" - ], - "rightsdocs_res_41_23": [ - "Argentina", - "Australia", - "Austria", - "Bahamas", - "Brazil", - "Bulgaria", - "Chile", - "Croatia", - "Czechia", - "Denmark", - "Fiji", - "Hungary", - "Iceland", - "Italy", - "Japan", - "Mexico", - "Peru", - "Qatar", - "Rwanda", - "Saudi Arabia", - "Slovakia", - "Spain", - "Togo", - "Ukraine", - "United Kingdom", - "Uruguay" - ], - "rightsdocs_res_42_27": [ - "Argentina", - "Australia", - "Austria", - "Bahamas", - "Brazil", - "Bulgaria", - "Chile", - "Croatia", - "Czechia", - "Denmark", - "Fiji", - "Hungary", - "Iceland", - "Italy", - "Japan", - "Mexico", - "Peru", - "Qatar", - "Rwanda", - "Saudi Arabia", - "Slovakia", - "Somalia", - "Spain", - "Togo", - "Ukraine", - "United Kingdom", - "Uruguay" - ], - "rightsdocs_res_41_1": [ - "Argentina", - "Australia", - "Austria", - "Bahamas", - "Brazil", - "Bulgaria", - "Chile", - "Croatia", - "Czechia", - "Denmark", - "Fiji", - "Iceland", - "Italy", - "Japan", - "Mexico", - "Peru", - "Slovakia", - "Spain", - "Ukraine", - "United Kingdom", - "Uruguay" - ], - "rightsdocs_res_41_18": [ - "Argentina", - "Australia", - "Austria", - "Bahamas", - "Brazil", - "Bulgaria", - "Chile", - "Croatia", - "Cuba", - "Czechia", - "Denmark", - "Fiji", - "Iceland", - "Italy", - "Japan", - "Mexico", - "Nepal", - "Peru", - "Philippines", - "Rwanda", - "Slovakia", - "South Africa", - "Spain", - "Tunisia", - "Ukraine", - "United Kingdom", - "Uruguay" - ], - "rightsdocs_res_44_18": [ - "Afghanistan", - "Angola", - "Argentina", - "Bahamas", - "Bahrain", - "Bangladesh", - "Burkina Faso", - "Cameroon", - "Chile", - "Congo, the Democratic Republic of the", - "Eritrea", - "Fiji", - "India", - "Indonesia", - "Libya", - "Marshall Islands", - "Mauritania", - "Namibia", - "Nepal", - "Nigeria", - "Pakistan", - "Peru", - "Philippines", - "Qatar", - "Senegal", - "Somalia", - "Sudan", - "Togo", - "Uruguay", - "Venezuela, Bolivarian Republic of" - ], - "rightsdocs_res_3316": [ - "Algeria", - "Argentina", - "Benin", - "Botswana", - "Brazil", - "Burkina Faso", - "Chile", - "China", - "Congo", - "Costa Rica", - "Côte d'Ivoire", - "Cuba", - "Ethiopia", - "Gabon", - "India", - "Indonesia", - "Kazakhstan", - "Kenya", - "Kuwait", - "Maldives", - "Mexico", - "Morocco", - "Namibia", - "Pakistan", - "Peru", - "Philippines", - "Russian Federation", - "Saudi Arabia", - "Sierra Leone", - "South Africa", - "United Arab Emirates", - "Venezuela, Bolivarian Republic of", - "Viet Nam" - ], - "rightsdocs_res_862": [ - "Algeria", - "Argentina", - "Bangladesh", - "Bolivia, Plurinational State of", - "Botswana", - "Brazil", - "China", - "Congo", - "Côte d'Ivoire", - "Cuba", - "El Salvador", - "Ethiopia", - "Gabon", - "Ghana", - "India", - "Indonesia", - "Kazakhstan", - "Kenya", - "Maldives", - "Mexico", - "Morocco", - "Namibia", - "Nigeria", - "Pakistan", - "Paraguay", - "Qatar", - "Russian Federation", - "Saudi Arabia", - "Sierra Leone", - "South Africa", - "United Arab Emirates", - "Venezuela, Bolivarian Republic of", - "Viet Nam" - ], - "rightsdocs_res_42_2": [ - "Argentina", - "Australia", - "Austria", - "Bahamas", - "Brazil", - "Bulgaria", - "Chile", - "Croatia", - "Czechia", - "Denmark", - "Fiji", - "Hungary", - "Iceland", - "Italy", - "Mexico", - "Peru", - "Qatar", - "Slovakia", - "South Africa", - "Spain", - "United Kingdom", - "Uruguay" - ], - "rightsdocs_res_3576": [ - "Argentina", - "Austria", - "Benin", - "Botswana", - "Brazil", - "Burkina Faso", - "Chile", - "Costa Rica", - "Côte d'Ivoire", - "Czechia", - "Estonia", - "France", - "Gabon", - "Germany", - "Indonesia", - "Ireland", - "Italy", - "Japan", - "Korea, Republic of", - "Kuwait", - "Maldives", - "Mexico", - "Montenegro", - "Morocco", - "North Macedonia", - "Peru", - "Romania", - "Saudi Arabia", - "Sierra Leone", - "United Arab Emirates", - "United Kingdom", - "United States" - ], - "rightsdocs_res_44_21": [ - "Afghanistan", - "Argentina", - "Australia", - "Austria", - "Bahamas", - "Brazil", - "Bulgaria", - "Chile", - "Czechia", - "Denmark", - "Fiji", - "Germany", - "Italy", - "Japan", - "Korea, Republic of", - "Libya", - "Marshall Islands", - "Mexico", - "Netherlands", - "Peru", - "Poland", - "Qatar", - "Slovakia", - "Somalia", - "Spain", - "Togo", - "Ukraine", - "Uruguay" - ], - "rightsdocs_res_s27_1": [ - "Albania", - "Bangladesh", - "Belgium", - "Botswana", - "Brazil", - "Croatia", - "Egypt", - "El Salvador", - "Georgia", - "Germany", - "Ghana", - "Hungary", - "Indonesia", - "Iraq", - "Korea, Republic of", - "Kyrgyzstan", - "Latvia", - "Netherlands", - "Nigeria", - "Panama", - "Paraguay", - "Portugal", - "Qatar", - "Rwanda", - "Saudi Arabia", - "Slovenia", - "Switzerland", - "Togo", - "Tunisia", - "United Arab Emirates", - "United Kingdom", - "United States", - "Côte d'Ivoire" - ], - "rightsdocs_res_45_2": [ - "Angola", - "Burkina Faso", - "Cameroon", - "Eritrea", - "Fiji", - "Indonesia", - "Mexico", - "Namibia", - "Nepal", - "Pakistan", - "Philippines", - "Qatar", - "Sudan", - "Venezuela, Bolivarian Republic of" - ], - "rightsdocs_res_45_1": [ - "Afghanistan", - "Argentina", - "Australia", - "Austria", - "Brazil", - "Bulgaria", - "Chile", - "Czechia", - "Denmark", - "Fiji", - "Germany", - "Italy", - "Japan", - "Korea, Republic of", - "Marshall Islands", - "Mexico", - "Netherlands", - "Peru", - "Poland", - "Slovakia", - "Spain", - "Ukraine", - "Uruguay" - ], - "rightsdocs_res_s28_1": [ - "Afghanistan", - "Angola", - "Belgium", - "Brazil", - "Burundi", - "Chile", - "China", - "Congo, the Democratic Republic of the", - "Cuba", - "Ecuador", - "Egypt", - "Iraq", - "Kyrgyzstan", - "Mexico", - "Nepal", - "Nigeria", - "Pakistan", - "Peru", - "Philippines", - "Qatar", - "Saudi Arabia", - "Senegal", - "Slovenia", - "South Africa", - "Spain", - "Tunisia", - "United Arab Emirates", - "Venezuela, Bolivarian Republic of", - "Côte d'Ivoire" - ], - "rightsdocs_res_2801": [ - "Argentina", - "Austria", - "Benin", - "Botswana", - "Brazil", - "Burkina Faso", - "Chile", - "Costa Rica", - "Côte d'Ivoire", - "Czechia", - "Estonia", - "France", - "Gabon", - "Germany", - "Indonesia", - "Ireland", - "Italy", - "Japan", - "Korea, Republic of", - "Kuwait", - "Maldives", - "Mexico", - "Montenegro", - "Morocco", - "North Macedonia", - "Peru", - "Romania", - "Saudi Arabia", - "Sierra Leone", - "United Arab Emirates", - "United Kingdom", - "United States" - ], - "rightsdocs_res_41_22": [ - "Argentina", - "Australia", - "Austria", - "Brazil", - "Bulgaria", - "Chile", - "Croatia", - "Czechia", - "Denmark", - "Fiji", - "Hungary", - "Iceland", - "Italy", - "Japan", - "Mexico", - "Peru", - "Slovakia", - "Spain", - "Ukraine", - "United Kingdom" - ], - "rightsdocs_res_11983": [ - "Angola", - "Azerbaijan", - "Bangladesh", - "Bolivia, Plurinational State of", - "Brazil", - "Cameroon", - "China", - "Cuba", - "Djibouti", - "Egypt", - "Ghana", - "Guatemala", - "India", - "Indonesia", - "Jordan", - "Madagascar", - "Malaysia", - "Mali", - "Mauritius", - "Mexico", - "Nicaragua", - "Nigeria", - "Pakistan", - "Peru", - "Philippines", - "Qatar", - "Russian Federation", - "Saudi Arabia", - "Senegal", - "South Africa", - "Sri Lanka", - "Zambia" - ], - "rightsdocs_res_2880": [ - "Austria", - "Benin", - "Botswana", - "Chile", - "Costa Rica", - "Côte d'Ivoire", - "Czechia", - "Estonia", - "France", - "Germany", - "Ireland", - "Italy", - "Japan", - "Korea, Republic of", - "Maldives", - "Mexico", - "Montenegro", - "North Macedonia", - "Philippines", - "Romania", - "Sierra Leone", - "United Kingdom", - "United States" - ], - "rightsdocs_res_44_23": [ - "Afghanistan", - "Angola", - "Argentina", - "Armenia", - "Australia", - "Austria", - "Bahamas", - "Bahrain", - "Bangladesh", - "Brazil", - "Bulgaria", - "Burkina Faso", - "Chile", - "Congo, the Democratic Republic of the", - "Czechia", - "Denmark", - "Fiji", - "Germany", - "India", - "Indonesia", - "Italy", - "Japan", - "Korea, Republic of", - "Libya", - "Marshall Islands", - "Mexico", - "Nepal", - "Netherlands", - "Nigeria", - "Peru", - "Philippines", - "Poland", - "Qatar", - "Senegal", - "Slovakia", - "Somalia", - "Spain", - "Sudan", - "Togo", - "Ukraine", - "Uruguay" - ], - "rightsdocs_res_41_4": [ - "Afghanistan", - "Angola", - "Bahamas", - "Bahrain", - "Bangladesh", - "Brazil", - "Burkina Faso", - "Cameroon", - "Chile", - "China", - "Congo, the Democratic Republic of the", - "Cuba", - "Egypt", - "Eritrea", - "Fiji", - "India", - "Iraq", - "Mexico", - "Nepal", - "Nigeria", - "Pakistan", - "Peru", - "Philippines", - "Qatar", - "Rwanda", - "Saudi Arabia", - "Senegal", - "Somalia", - "South Africa", - "Togo", - "Tunisia", - "Uruguay" - ], - "rightsdocs_res_45_4": [ - "Angola", - "Argentina", - "Bahamas", - "Bahrain", - "Bangladesh", - "Burkina Faso", - "Cameroon", - "Eritrea", - "Fiji", - "India", - "Indonesia", - "Mauritania", - "Namibia", - "Nepal", - "Nigeria", - "Pakistan", - "Philippines", - "Qatar", - "Senegal", - "Sudan", - "Togo", - "Venezuela, Bolivarian Republic of" - ], - "rightsdocs_res_3531": [ - "Algeria", - "Argentina", - "Austria", - "Benin", - "Botswana", - "Brazil", - "Burkina Faso", - "Chile", - "China", - "Congo", - "Costa Rica", - "Côte d'Ivoire", - "Cuba", - "Czechia", - "Estonia", - "Ethiopia", - "France", - "Gabon", - "Germany", - "India", - "Indonesia", - "Ireland", - "Italy", - "Japan", - "Kazakhstan", - "Kenya", - "Korea, Republic of", - "Kuwait", - "Maldives", - "Mexico", - "Montenegro", - "Morocco", - "Namibia", - "North Macedonia", - "Pakistan", - "Peru", - "Philippines", - "Romania", - "Russian Federation", - "Saudi Arabia", - "Sierra Leone", - "South Africa", - "United Arab Emirates", - "United Kingdom", - "Venezuela, Bolivarian Republic of", - "Viet Nam" - ], - "rightsdocs_res_2832": [ - "Argentina", - "Austria", - "Benin", - "Botswana", - "Brazil", - "Chile", - "Costa Rica", - "Czechia", - "Estonia", - "France", - "Gabon", - "Germany", - "Ireland", - "Italy", - "Japan", - "Korea, Republic of", - "Maldives", - "Montenegro", - "North Macedonia", - "Peru", - "Romania", - "Sierra Leone", - "United Kingdom", - "United States" - ], - "rightsdocs_res_3594": [ - "Argentina", - "Austria", - "Benin", - "Botswana", - "Brazil", - "Chile", - "Costa Rica", - "Côte d'Ivoire", - "Czechia", - "Estonia", - "France", - "Germany", - "Ireland", - "Italy", - "Korea, Republic of", - "Mexico", - "Montenegro", - "North Macedonia", - "Peru", - "Romania", - "Sierra Leone", - "United Kingdom", - "United States" - ], - "rightsdocs_res_42_25": [ - "Argentina", - "Australia", - "Austria", - "Bahamas", - "Brazil", - "Bulgaria", - "Chile", - "Croatia", - "Czechia", - "Denmark", - "Hungary", - "Iceland", - "Italy", - "Japan", - "Peru", - "Slovakia", - "Spain", - "Ukraine", - "United Kingdom" - ], - "rightsdocs_res_877": [ - "Albania", - "Algeria", - "Argentina", - "Bolivia, Plurinational State of", - "Brazil", - "Congo", - "Côte d'Ivoire", - "El Salvador", - "Estonia", - "France", - "Gabon", - "Germany", - "Ireland", - "Kazakhstan", - "Latvia", - "Mexico", - "Montenegro", - "Namibia", - "Netherlands", - "North Macedonia", - "Paraguay", - "Portugal", - "Sierra Leone", - "South Africa", - "United Kingdom", - "Venezuela, Bolivarian Republic of" - ], - "rightsdocs_res_41_19": [ - "Afghanistan", - "Angola", - "Argentina", - "Bahamas", - "Bahrain", - "Bangladesh", - "Brazil", - "Burkina Faso", - "Cameroon", - "Chile", - "China", - "Congo, the Democratic Republic of the", - "Cuba", - "Egypt", - "Eritrea", - "Fiji", - "India", - "Iraq", - "Mexico", - "Nepal", - "Nigeria", - "Pakistan", - "Peru", - "Philippines", - "Qatar", - "Rwanda", - "Saudi Arabia", - "Senegal", - "Somalia", - "South Africa", - "Togo", - "Tunisia", - "Uruguay" - ], - "rightsdocs_res_42_1": [ - "Afghanistan", - "Angola", - "Argentina", - "Bahamas", - "Bahrain", - "Bangladesh", - "Burkina Faso", - "Cameroon", - "China", - "Congo, the Democratic Republic of the", - "Cuba", - "Egypt", - "Eritrea", - "Fiji", - "India", - "Iraq", - "Mexico", - "Nepal", - "Nigeria", - "Pakistan", - "Peru", - "Philippines", - "Qatar", - "Rwanda", - "Saudi Arabia", - "Senegal", - "South Africa", - "Togo", - "Tunisia", - "Uruguay" - ], - "rightsdocs_res_42_8": [ - "Angola", - "Bahamas", - "Bahrain", - "Bangladesh", - "Burkina Faso", - "Cameroon", - "China", - "Cuba", - "Egypt", - "Eritrea", - "Fiji", - "India", - "Iraq", - "Nepal", - "Nigeria", - "Pakistan", - "Philippines", - "Qatar", - "Rwanda", - "Saudi Arabia", - "Senegal", - "Somalia", - "South Africa", - "Tunisia", - "Uruguay" - ], - "rightsdocs_res_41_5": [ - "Afghanistan", - "Angola", - "Argentina", - "Bahamas", - "Bahrain", - "Bangladesh", - "Brazil", - "Burkina Faso", - "Cameroon", - "Chile", - "China", - "Congo, the Democratic Republic of the", - "Cuba", - "Egypt", - "Eritrea", - "Fiji", - "India", - "Iraq", - "Nepal", - "Nigeria", - "Pakistan", - "Peru", - "Philippines", - "Qatar", - "Rwanda", - "Saudi Arabia", - "Senegal", - "Somalia", - "South Africa", - "Togo", - "Tunisia", - "Uruguay" - ], - "rightsdocs_res_3564": [ - "Argentina", - "Austria", - "Botswana", - "Brazil", - "Chile", - "Costa Rica", - "Czechia", - "Estonia", - "France", - "Germany", - "Ireland", - "Italy", - "Japan", - "Korea, Republic of", - "Mexico", - "Montenegro", - "North Macedonia", - "Peru", - "Romania", - "United Kingdom", - "United States" - ], - "rightsdocs_res_42_4": [ - "Angola", - "Burkina Faso", - "Cameroon", - "China", - "Cuba", - "Egypt", - "Eritrea", - "Fiji", - "Iraq", - "Mexico", - "Nepal", - "Pakistan", - "Philippines", - "Qatar", - "Rwanda", - "South Africa", - "Tunisia", - "Uruguay" - ] -} \ No newline at end of file diff --git a/src/extractors/pdf_to_multi_option_extractor/labeled_data/countries_in_favor/options.json b/src/extractors/pdf_to_multi_option_extractor/labeled_data/countries_in_favor/options.json deleted file mode 100644 index 1331857..0000000 --- a/src/extractors/pdf_to_multi_option_extractor/labeled_data/countries_in_favor/options.json +++ /dev/null @@ -1,197 +0,0 @@ -[ - "Kyrgyzstan", - "Saint Lucia", - "Korea, Democratic People's Republic of", - "Qatar", - "Italy", - "Slovakia", - "South Sudan", - "Eswatini", - "China", - "Togo", - "Lithuania", - "Ukraine", - "Germany", - "Oman", - "Malta", - "Mexico", - "Chad", - "Saint Kitts and Nevis", - "Barbados", - "Montenegro", - "Palestine, State of", - "Armenia", - "Haiti", - "Luxembourg", - "Vanuatu", - "Venezuela, Bolivarian Republic of", - "Colombia", - "Azerbaijan", - "Mauritania", - "Spain", - "Turkey", - "Sao Tome and Principe", - "Zambia", - "Myanmar", - "Czechia", - "Lao People's Democratic Republic", - "Bhutan", - "Ecuador", - "Slovenia", - "Jordan", - "Belgium", - "Hungary", - "Bulgaria", - "Tonga", - "Turkmenistan", - "Israel", - "Bahamas", - "Guinea-Bissau", - "Mali", - "Maldives", - "Marshall Islands", - "Indonesia", - "Morocco", - "Saint Vincent and the Grenadines", - "San Marino", - "Solomon Islands", - "Uruguay", - "Cameroon", - "Denmark", - "Liberia", - "Tuvalu", - "Portugal", - "Niger", - "Guyana", - "Congo", - "Nepal", - "Peru", - "Japan", - "Cuba", - "Algeria", - "Finland", - "Russian Federation", - "Sweden", - "Burundi", - "Thailand", - "Grenada", - "Belarus", - "Kiribati", - "Andorra", - "Monaco", - "Samoa", - "Papua New Guinea", - "Namibia", - "Bolivia, Plurinational State of", - "Saudi Arabia", - "Antigua and Barbuda", - "Norway", - "Timor-Leste", - "Comoros", - "Korea, Republic of", - "Kenya", - "Netherlands", - "Bahrain", - "Panama", - "Uzbekistan", - "Benin", - "Trinidad and Tobago", - "North Macedonia", - "Sudan", - "Cambodia", - "Canada", - "Chile", - "Nauru", - "United Arab Emirates", - "Guatemala", - "Liechtenstein", - "Sri Lanka", - "Congo, the Democratic Republic of the", - "Botswana", - "Equatorial Guinea", - "Guinea", - "Viet Nam", - "Holy See (Vatican City State)", - "Mauritius", - "Angola", - "Libya", - "United Kingdom", - "Central African Republic", - "Somalia", - "India", - "Cape Verde", - "New Zealand", - "Uganda", - "Nicaragua", - "Palau", - "Fiji", - "Poland", - "Romania", - "Lebanon", - "Philippines", - "Rwanda", - "Afghanistan", - "Zimbabwe", - "Austria", - "Brunei Darussalam", - "Eritrea", - "Mozambique", - "El Salvador", - "Burkina Faso", - "Bangladesh", - "Iran, Islamic Republic of", - "Latvia", - "Iceland", - "Kazakhstan", - "Micronesia, Federated States of", - "Cyprus", - "Ghana", - "Sierra Leone", - "Iraq", - "Suriname", - "Malawi", - "Georgia", - "Lesotho", - "Mongolia", - "Nigeria", - "Tanzania, United Republic of", - "Paraguay", - "Jamaica", - "Moldova, Republic of", - "Malaysia", - "Tajikistan", - "Costa Rica", - "Syrian Arab Republic", - "Switzerland", - "Singapore", - "Argentina", - "Estonia", - "Dominican Republic", - "Gabon", - "Kuwait", - "Australia", - "Egypt", - "Tunisia", - "Albania", - "South Africa", - "Greece", - "Senegal", - "Ethiopia", - "Honduras", - "Bosnia and Herzegovina", - "Pakistan", - "Belize", - "Seychelles", - "Yemen", - "Brazil", - "Gambia", - "Côte d'Ivoire", - "Croatia", - "Ireland", - "France", - "Serbia", - "Madagascar", - "Djibouti", - "United States", - "Dominica" -] diff --git a/src/extractors/pdf_to_multi_option_extractor/labeled_data/countries_in_favor_empty_labels/labels.json b/src/extractors/pdf_to_multi_option_extractor/labeled_data/countries_in_favor_empty_labels/labels.json deleted file mode 100644 index a3a7802..0000000 --- a/src/extractors/pdf_to_multi_option_extractor/labeled_data/countries_in_favor_empty_labels/labels.json +++ /dev/null @@ -1,2179 +0,0 @@ -{ - "1695895074941fcy09egfwqw": [], - "1695895075594cwfvpr2xyab": [], - "1695895077479zge00r1yz2": [], - "1695895080076oprcrymxh0c": [], - "1695895080534nw6d5cxeoq": [], - "1695895086084fllr17uf4pe": [], - "1695895087330ebln6qfxjd7": [], - "1695895103069zwt3l908l": [], - "1695895106206nyuwt7z4my": [], - "1695895106939n2bbrf1l7ee": [], - "rightsdocs_res_45_20": [ - "Argentina", - "Australia", - "Austria", - "Bahamas", - "Brazil", - "Bulgaria", - "Chile", - "Czechia", - "Denmark", - "Fiji", - "Germany", - "Italy", - "Japan", - "Korea, Republic of", - "Marshall Islands", - "Netherlands", - "Peru", - "Poland", - "Slovakia", - "Spain", - "Ukraine", - "Uruguay" - ], - "rightsdocs_res_s25_1": [ - "Albania", - "Belgium", - "Botswana", - "El Salvador", - "France", - "Georgia", - "Germany", - "Korea, Republic of", - "Latvia", - "Maldives", - "Mexico", - "Mongolia", - "Morocco", - "Netherlands", - "North Macedonia", - "Portugal", - "Qatar", - "Saudi Arabia", - "Slovenia", - "Switzerland", - "Togo", - "United Arab Emirates", - "United Kingdom", - "Côte d'Ivoire" - ], - "rightsdocs_res_45_19": [ - "Argentina", - "Armenia", - "Australia", - "Austria", - "Bahamas", - "Brazil", - "Bulgaria", - "Chile", - "Czechia", - "Denmark", - "Fiji", - "Germany", - "Italy", - "Japan", - "Korea, Republic of", - "Marshall Islands", - "Mexico", - "Netherlands", - "Peru", - "Poland", - "Slovakia", - "Spain", - "Ukraine", - "Uruguay" - ], - "rightsdocs_res_43_10": [ - "Angola", - "Argentina", - "Bahrain", - "Bangladesh", - "Burkina Faso", - "Cameroon", - "Chile", - "Congo, the Democratic Republic of the", - "Eritrea", - "Fiji", - "India", - "Indonesia", - "Libya", - "Mauritania", - "Namibia", - "Nepal", - "Nigeria", - "Pakistan", - "Philippines", - "Qatar", - "Senegal", - "Somalia", - "Sudan", - "Togo", - "Uruguay", - "Venezuela, Bolivarian Republic of" - ], - "rightsdocs_res_43_15": [ - "Angola", - "Argentina", - "Armenia", - "Bahamas", - "Bahrain", - "Bangladesh", - "Burkina Faso", - "Cameroon", - "Congo, the Democratic Republic of the", - "Eritrea", - "Fiji", - "India", - "Indonesia", - "Namibia", - "Nepal", - "Nigeria", - "Pakistan", - "Philippines", - "Qatar", - "Senegal", - "Somalia", - "Sudan", - "Togo", - "Uruguay", - "Venezuela, Bolivarian Republic of" - ], - "rightsdocs_res_45_6": [ - "Afghanistan", - "Angola", - "Argentina", - "Bahamas", - "Bahrain", - "Bangladesh", - "Burkina Faso", - "Cameroon", - "Congo, the Democratic Republic of the", - "Eritrea", - "Fiji", - "India", - "Indonesia", - "Libya", - "Mauritania", - "Namibia", - "Nepal", - "Nigeria", - "Pakistan", - "Peru", - "Philippines", - "Qatar", - "Senegal", - "Somalia", - "Sudan", - "Togo", - "Venezuela, Bolivarian Republic of" - ], - "rightsdocs_res_42_9": [ - "Angola", - "Argentina", - "Bahamas", - "Bahrain", - "Bangladesh", - "Burkina Faso", - "Cameroon", - "Chile", - "China", - "Cuba", - "Egypt", - "Eritrea", - "Fiji", - "India", - "Iraq", - "Nepal", - "Nigeria", - "Pakistan", - "Peru", - "Philippines", - "Qatar", - "Rwanda", - "Saudi Arabia", - "Senegal", - "Somalia", - "South Africa", - "Togo", - "Tunisia", - "Uruguay" - ], - "rightsdocs_res_11926": [ - "Angola", - "Azerbaijan", - "Bangladesh", - "Bolivia, Plurinational State of", - "Brazil", - "Cameroon", - "China", - "Cuba", - "Djibouti", - "Egypt", - "Gabon", - "Ghana", - "Guatemala", - "India", - "Indonesia", - "Jordan", - "Madagascar", - "Malaysia", - "Mali", - "Mauritius", - "Mexico", - "Nicaragua", - "Nigeria", - "Pakistan", - "Peru", - "Philippines", - "Qatar", - "Russian Federation", - "Saudi Arabia", - "Senegal", - "South Africa", - "Sri Lanka", - "Uruguay", - "Zambia" - ], - "rightsdocs_res_3388": [ - "Algeria", - "Argentina", - "Benin", - "Botswana", - "Brazil", - "Burkina Faso", - "China", - "Congo", - "Costa Rica", - "Côte d'Ivoire", - "Cuba", - "Ethiopia", - "Gabon", - "India", - "Indonesia", - "Kazakhstan", - "Kenya", - "Kuwait", - "Maldives", - "Morocco", - "Namibia", - "Pakistan", - "Philippines", - "Russian Federation", - "Saudi Arabia", - "Sierra Leone", - "South Africa", - "United Arab Emirates", - "Venezuela, Bolivarian Republic of", - "Viet Nam" - ], - "rightsdocs_res_45_15": [ - "Argentina", - "Australia", - "Austria", - "Bahamas", - "Brazil", - "Bulgaria", - "Chile", - "Czechia", - "Denmark", - "Fiji", - "Germany", - "Italy", - "Korea, Republic of", - "Marshall Islands", - "Mexico", - "Netherlands", - "Peru", - "Poland", - "Qatar", - "Slovakia", - "Spain", - "Uruguay" - ], - "rightsdocs_res_12067": [ - "Angola", - "Azerbaijan", - "Bangladesh", - "Bolivia, Plurinational State of", - "Brazil", - "Cameroon", - "China", - "Cuba", - "Djibouti", - "Egypt", - "Gabon", - "Ghana", - "Guatemala", - "India", - "Indonesia", - "Jordan", - "Madagascar", - "Malaysia", - "Mali", - "Mauritius", - "Mexico", - "Nicaragua", - "Nigeria", - "Pakistan", - "Peru", - "Philippines", - "Qatar", - "Russian Federation", - "Saudi Arabia", - "Senegal", - "South Africa", - "Sri Lanka", - "Uruguay", - "Zambia" - ], - "rightsdocs_res_43_2": [ - "Afghanistan", - "Argentina", - "Australia", - "Austria", - "Bahamas", - "Brazil", - "Bulgaria", - "Chile", - "Czechia", - "Denmark", - "Fiji", - "Germany", - "Italy", - "Japan", - "Korea, Republic of", - "Marshall Islands", - "Mexico", - "Netherlands", - "Peru", - "Poland", - "Slovakia", - "Spain", - "Ukraine", - "Uruguay" - ], - "rightsdocs_res_42_28": [ - "Afghanistan", - "Angola", - "Argentina", - "Australia", - "Austria", - "Bahamas", - "Bangladesh", - "Brazil", - "Bulgaria", - "Burkina Faso", - "Chile", - "Congo, the Democratic Republic of the", - "Croatia", - "Czechia", - "Denmark", - "Fiji", - "Hungary", - "Iceland", - "India", - "Iraq", - "Italy", - "Japan", - "Mexico", - "Nepal", - "Pakistan", - "Peru", - "Rwanda", - "Senegal", - "Slovakia", - "South Africa", - "Spain", - "Togo", - "Tunisia", - "Ukraine", - "United Kingdom", - "Uruguay" - ], - "rightsdocs_res_874": [ - "Algeria", - "Argentina", - "Bangladesh", - "Bolivia, Plurinational State of", - "Botswana", - "Brazil", - "China", - "Congo", - "Côte d'Ivoire", - "Cuba", - "El Salvador", - "Ethiopia", - "Gabon", - "Ghana", - "India", - "Indonesia", - "Kazakhstan", - "Kenya", - "Maldives", - "Morocco", - "Namibia", - "Nigeria", - "Pakistan", - "Paraguay", - "Qatar", - "Russian Federation", - "Saudi Arabia", - "Sierra Leone", - "South Africa", - "United Arab Emirates", - "Venezuela, Bolivarian Republic of", - "Viet Nam" - ], - "rightsdocs_res_42_24": [ - "Angola", - "Argentina", - "Australia", - "Austria", - "Brazil", - "Bulgaria", - "Burkina Faso", - "Chile", - "Croatia", - "Czechia", - "Denmark", - "Fiji", - "Hungary", - "Iceland", - "Italy", - "Mexico", - "Nepal", - "Peru", - "Rwanda", - "Slovakia", - "South Africa", - "Spain", - "Togo", - "Ukraine", - "United Kingdom", - "Uruguay" - ], - "rightsdocs_res_41_2": [ - "Argentina", - "Australia", - "Austria", - "Bahamas", - "Bulgaria", - "Croatia", - "Czechia", - "Denmark", - "Fiji", - "Iceland", - "Italy", - "Mexico", - "Peru", - "Slovakia", - "Spain", - "Ukraine", - "United Kingdom", - "Uruguay" - ], - "rightsdocs_res_3570": [ - "Argentina", - "Austria", - "Benin", - "Botswana", - "Brazil", - "Burkina Faso", - "Chile", - "Costa Rica", - "Côte d'Ivoire", - "Czechia", - "Estonia", - "France", - "Germany", - "Ireland", - "Italy", - "Japan", - "Kazakhstan", - "Korea, Republic of", - "Maldives", - "Mexico", - "Montenegro", - "Morocco", - "North Macedonia", - "Peru", - "Philippines", - "Romania", - "Sierra Leone", - "United Arab Emirates", - "United Kingdom", - "United States" - ], - "rightsdocs_res_3352": [ - "Algeria", - "Argentina", - "Austria", - "Benin", - "Botswana", - "Brazil", - "Burkina Faso", - "Chile", - "China", - "Congo", - "Costa Rica", - "Côte d'Ivoire", - "Cuba", - "Czechia", - "Estonia", - "Ethiopia", - "France", - "Gabon", - "Germany", - "India", - "Indonesia", - "Ireland", - "Italy", - "Japan", - "Kazakhstan", - "Kenya", - "Korea, Republic of", - "Kuwait", - "Maldives", - "Mexico", - "Montenegro", - "Morocco", - "Namibia", - "North Macedonia", - "Pakistan", - "Peru", - "Philippines", - "Romania", - "Russian Federation", - "Saudi Arabia", - "Sierra Leone", - "South Africa", - "United Arab Emirates", - "United Kingdom", - "Venezuela, Bolivarian Republic of", - "Viet Nam" - ], - "rightsdocs_res_3522": [ - "Algeria", - "Argentina", - "Austria", - "Benin", - "Botswana", - "Brazil", - "Burkina Faso", - "Chile", - "China", - "Congo", - "Costa Rica", - "Côte d'Ivoire", - "Cuba", - "Czechia", - "Estonia", - "Ethiopia", - "France", - "Gabon", - "Germany", - "India", - "Indonesia", - "Ireland", - "Italy", - "Japan", - "Kazakhstan", - "Kenya", - "Korea, Republic of", - "Kuwait", - "Maldives", - "Mexico", - "Montenegro", - "Morocco", - "Namibia", - "North Macedonia", - "Pakistan", - "Peru", - "Philippines", - "Romania", - "Russian Federation", - "Saudi Arabia", - "Sierra Leone", - "South Africa", - "United Arab Emirates", - "United Kingdom", - "Venezuela, Bolivarian Republic of", - "Viet Nam" - ], - "rightsdocs_res_41_25": [ - "Australia", - "Austria", - "Bahamas", - "Bulgaria", - "Chile", - "Croatia", - "Czechia", - "Denmark", - "Fiji", - "Hungary", - "Iceland", - "Italy", - "Japan", - "Mexico", - "Peru", - "Rwanda", - "Slovakia", - "Spain", - "Ukraine", - "United Kingdom" - ], - "rightsdocs_res_3540": [ - "Algeria", - "Argentina", - "Austria", - "Benin", - "Botswana", - "Brazil", - "Burkina Faso", - "Chile", - "China", - "Congo", - "Costa Rica", - "Côte d'Ivoire", - "Cuba", - "Czechia", - "Estonia", - "Ethiopia", - "France", - "Gabon", - "Germany", - "India", - "Indonesia", - "Ireland", - "Italy", - "Japan", - "Kazakhstan", - "Kenya", - "Korea, Republic of", - "Kuwait", - "Maldives", - "Mexico", - "Montenegro", - "Morocco", - "Namibia", - "North Macedonia", - "Pakistan", - "Peru", - "Philippines", - "Romania", - "Russian Federation", - "Saudi Arabia", - "Sierra Leone", - "South Africa", - "United Arab Emirates", - "United Kingdom", - "Venezuela, Bolivarian Republic of", - "Viet Nam" - ], - "rightsdocs_res_42_3": [ - "Afghanistan", - "Argentina", - "Australia", - "Austria", - "Bahamas", - "Bahrain", - "Bangladesh", - "Brazil", - "Bulgaria", - "Burkina Faso", - "Chile", - "Croatia", - "Czechia", - "Denmark", - "Egypt", - "Eritrea", - "Fiji", - "Hungary", - "Iceland", - "Iraq", - "Italy", - "Mexico", - "Nigeria", - "Pakistan", - "Peru", - "Qatar", - "Rwanda", - "Saudi Arabia", - "Senegal", - "Slovakia", - "Somalia", - "South Africa", - "Spain", - "Togo", - "Tunisia", - "United Kingdom", - "Uruguay" - ], - "rightsdocs_res_45_31": [ - "Afghanistan", - "Angola", - "Argentina", - "Armenia", - "Australia", - "Austria", - "Bahamas", - "Brazil", - "Bulgaria", - "Burkina Faso", - "Chile", - "Congo, the Democratic Republic of the", - "Czechia", - "Denmark", - "Fiji", - "Germany", - "Italy", - "Japan", - "Korea, Republic of", - "Marshall Islands", - "Mexico", - "Nepal", - "Netherlands", - "Peru", - "Poland", - "Qatar", - "Senegal", - "Slovakia", - "Spain", - "Togo", - "Ukraine", - "Uruguay" - ], - "rightsdocs_res_45_14": [ - "Afghanistan", - "Angola", - "Bahamas", - "Bahrain", - "Bangladesh", - "Burkina Faso", - "Cameroon", - "Congo, the Democratic Republic of the", - "Eritrea", - "Fiji", - "India", - "Indonesia", - "Libya", - "Mauritania", - "Namibia", - "Nepal", - "Nigeria", - "Pakistan", - "Philippines", - "Qatar", - "Senegal", - "Somalia", - "Sudan", - "Togo", - "Venezuela, Bolivarian Republic of" - ], - "rightsdocs_res_42_26": [ - "Argentina", - "Australia", - "Austria", - "Bahamas", - "Brazil", - "Bulgaria", - "Chile", - "Croatia", - "Czechia", - "Denmark", - "Fiji", - "Hungary", - "Iceland", - "Italy", - "Japan", - "Mexico", - "Peru", - "Rwanda", - "Slovakia", - "Spain", - "Ukraine", - "United Kingdom", - "Uruguay" - ], - "rightsdocs_res_3035": [ - "Algeria", - "Argentina", - "Benin", - "Botswana", - "Brazil", - "Burkina Faso", - "China", - "Congo", - "Costa Rica", - "Côte d'Ivoire", - "Cuba", - "Ethiopia", - "Gabon", - "India", - "Indonesia", - "Kazakhstan", - "Kenya", - "Kuwait", - "Maldives", - "Morocco", - "Namibia", - "Pakistan", - "Philippines", - "Russian Federation", - "Saudi Arabia", - "Sierra Leone", - "South Africa", - "United Arab Emirates", - "Venezuela, Bolivarian Republic of", - "Viet Nam" - ], - "rightsdocs_res_12001": [ - "Angola", - "Azerbaijan", - "Bangladesh", - "Bolivia, Plurinational State of", - "Brazil", - "China", - "Cuba", - "Djibouti", - "Egypt", - "Gabon", - "Ghana", - "India", - "Indonesia", - "Jordan", - "Malaysia", - "Mali", - "Mauritius", - "Mexico", - "Nicaragua", - "Nigeria", - "Pakistan", - "Peru", - "Philippines", - "Qatar", - "Russian Federation", - "Saudi Arabia", - "Senegal", - "South Africa", - "Sri Lanka", - "Uruguay", - "Zambia" - ], - "rightsdocs_res_45_21": [ - "Argentina", - "Australia", - "Austria", - "Bahamas", - "Brazil", - "Bulgaria", - "Chile", - "Czechia", - "Denmark", - "Fiji", - "Germany", - "Italy", - "Japan", - "Korea, Republic of", - "Libya", - "Marshall Islands", - "Mexico", - "Netherlands", - "Peru", - "Poland", - "Qatar", - "Slovakia", - "Somalia", - "Spain", - "Togo", - "Ukraine", - "Uruguay" - ], - "rightsdocs_res_2898": [ - "Algeria", - "Argentina", - "Benin", - "Brazil", - "Burkina Faso", - "Chile", - "China", - "Congo", - "Costa Rica", - "Côte d'Ivoire", - "Cuba", - "Ethiopia", - "Gabon", - "India", - "Indonesia", - "Kazakhstan", - "Kenya", - "Morocco", - "Namibia", - "Pakistan", - "Peru", - "Philippines", - "Russian Federation", - "Saudi Arabia", - "Sierra Leone", - "South Africa", - "United Arab Emirates", - "Venezuela, Bolivarian Republic of", - "Viet Nam" - ], - "rightsdocs_res_3011": [ - "Algeria", - "Argentina", - "Benin", - "Botswana", - "Brazil", - "Burkina Faso", - "Chile", - "China", - "Congo", - "Costa Rica", - "Côte d'Ivoire", - "Cuba", - "Ethiopia", - "Gabon", - "India", - "Indonesia", - "Kazakhstan", - "Kenya", - "Kuwait", - "Maldives", - "Mexico", - "Morocco", - "Namibia", - "Pakistan", - "Peru", - "Philippines", - "Russian Federation", - "Saudi Arabia", - "Sierra Leone", - "South Africa", - "United Arab Emirates", - "Venezuela, Bolivarian Republic of", - "Viet Nam" - ], - "rightsdocs_res_12928": [ - "Algeria", - "Argentina", - "Brazil", - "Chile", - "China", - "Congo", - "Costa Rica", - "Côte d'Ivoire", - "Cuba", - "Ethiopia", - "India", - "Indonesia", - "Kazakhstan", - "Kenya", - "Kuwait", - "Maldives", - "Mexico", - "Morocco", - "Namibia", - "Pakistan", - "Peru", - "Philippines", - "Russian Federation", - "Saudi Arabia", - "Sierra Leone", - "South Africa", - "United Arab Emirates", - "Venezuela, Bolivarian Republic of", - "Viet Nam" - ], - "rightsdocs_res_44_19": [ - "Argentina", - "Australia", - "Austria", - "Brazil", - "Bulgaria", - "Chile", - "Czechia", - "Denmark", - "Fiji", - "Germany", - "Italy", - "Japan", - "Korea, Republic of", - "Libya", - "Marshall Islands", - "Mexico", - "Netherlands", - "Peru", - "Poland", - "Slovakia", - "Spain", - "Ukraine" - ], - "rightsdocs_res_41_3": [ - "Afghanistan", - "Angola", - "Bahamas", - "Bahrain", - "Bangladesh", - "Burkina Faso", - "Cameroon", - "China", - "Congo, the Democratic Republic of the", - "Cuba", - "Egypt", - "Eritrea", - "Fiji", - "India", - "Iraq", - "Nepal", - "Nigeria", - "Pakistan", - "Philippines", - "Qatar", - "Rwanda", - "Saudi Arabia", - "Senegal", - "Somalia", - "South Africa", - "Togo", - "Tunisia", - "Uruguay" - ], - "rightsdocs_res_43_3": [ - "Afghanistan", - "Angola", - "Argentina", - "Armenia", - "Bahrain", - "Bangladesh", - "Burkina Faso", - "Chile", - "Eritrea", - "Indonesia", - "Libya", - "Mauritania", - "Mexico", - "Namibia", - "Nigeria", - "Pakistan", - "Peru", - "Qatar", - "Senegal", - "Somalia", - "Sudan", - "Venezuela, Bolivarian Republic of" - ], - "1695895091619szj1a274hdq": [], - "1695895096917lo3dqcniefh": [], - "1695895098672drk2igpbu4m": [], - "rightsdocs_res_3546": [ - "Algeria", - "Argentina", - "Botswana", - "Brazil", - "Burkina Faso", - "Chile", - "China", - "Congo", - "Costa Rica", - "Cuba", - "Ethiopia", - "India", - "Indonesia", - "Kazakhstan", - "Kuwait", - "Mexico", - "Morocco", - "Namibia", - "Pakistan", - "Peru", - "Philippines", - "Russian Federation", - "Sierra Leone", - "South Africa", - "United Arab Emirates", - "Venezuela, Bolivarian Republic of", - "Viet Nam" - ], - "rightsdocs_res_42_23": [ - "Afghanistan", - "Angola", - "Bahamas", - "Bahrain", - "Bangladesh", - "Burkina Faso", - "Cameroon", - "China", - "Congo, the Democratic Republic of the", - "Cuba", - "Egypt", - "Eritrea", - "Fiji", - "India", - "Iraq", - "Nepal", - "Nigeria", - "Pakistan", - "Philippines", - "Qatar", - "Rwanda", - "Saudi Arabia", - "Senegal", - "Somalia", - "South Africa", - "Togo", - "Tunisia" - ], - "rightsdocs_res_859": [ - "Algeria", - "Argentina", - "Bangladesh", - "Bolivia, Plurinational State of", - "Botswana", - "Brazil", - "China", - "Congo", - "Côte d'Ivoire", - "Cuba", - "El Salvador", - "Ethiopia", - "Gabon", - "Ghana", - "India", - "Indonesia", - "Kazakhstan", - "Kenya", - "Maldives", - "Morocco", - "Namibia", - "Nigeria", - "Pakistan", - "Paraguay", - "Russian Federation", - "Saudi Arabia", - "Sierra Leone", - "South Africa", - "United Arab Emirates", - "Venezuela, Bolivarian Republic of", - "Viet Nam" - ], - "rightsdocs_res_45_5": [ - "Angola", - "Argentina", - "Bahamas", - "Bahrain", - "Bangladesh", - "Burkina Faso", - "Cameroon", - "Chile", - "Congo, the Democratic Republic of the", - "Eritrea", - "Fiji", - "India", - "Indonesia", - "Libya", - "Mauritania", - "Namibia", - "Nepal", - "Nigeria", - "Pakistan", - "Peru", - "Philippines", - "Qatar", - "Senegal", - "Somalia", - "Sudan", - "Togo", - "Venezuela, Bolivarian Republic of" - ], - "rightsdocs_res_41_23": [ - "Argentina", - "Australia", - "Austria", - "Bahamas", - "Brazil", - "Bulgaria", - "Chile", - "Croatia", - "Czechia", - "Denmark", - "Fiji", - "Hungary", - "Iceland", - "Italy", - "Japan", - "Mexico", - "Peru", - "Qatar", - "Rwanda", - "Saudi Arabia", - "Slovakia", - "Spain", - "Togo", - "Ukraine", - "United Kingdom", - "Uruguay" - ], - "rightsdocs_res_42_27": [ - "Argentina", - "Australia", - "Austria", - "Bahamas", - "Brazil", - "Bulgaria", - "Chile", - "Croatia", - "Czechia", - "Denmark", - "Fiji", - "Hungary", - "Iceland", - "Italy", - "Japan", - "Mexico", - "Peru", - "Qatar", - "Rwanda", - "Saudi Arabia", - "Slovakia", - "Somalia", - "Spain", - "Togo", - "Ukraine", - "United Kingdom", - "Uruguay" - ], - "rightsdocs_res_41_1": [ - "Argentina", - "Australia", - "Austria", - "Bahamas", - "Brazil", - "Bulgaria", - "Chile", - "Croatia", - "Czechia", - "Denmark", - "Fiji", - "Iceland", - "Italy", - "Japan", - "Mexico", - "Peru", - "Slovakia", - "Spain", - "Ukraine", - "United Kingdom", - "Uruguay" - ], - "rightsdocs_res_41_18": [ - "Argentina", - "Australia", - "Austria", - "Bahamas", - "Brazil", - "Bulgaria", - "Chile", - "Croatia", - "Cuba", - "Czechia", - "Denmark", - "Fiji", - "Iceland", - "Italy", - "Japan", - "Mexico", - "Nepal", - "Peru", - "Philippines", - "Rwanda", - "Slovakia", - "South Africa", - "Spain", - "Tunisia", - "Ukraine", - "United Kingdom", - "Uruguay" - ], - "rightsdocs_res_44_18": [ - "Afghanistan", - "Angola", - "Argentina", - "Bahamas", - "Bahrain", - "Bangladesh", - "Burkina Faso", - "Cameroon", - "Chile", - "Congo, the Democratic Republic of the", - "Eritrea", - "Fiji", - "India", - "Indonesia", - "Libya", - "Marshall Islands", - "Mauritania", - "Namibia", - "Nepal", - "Nigeria", - "Pakistan", - "Peru", - "Philippines", - "Qatar", - "Senegal", - "Somalia", - "Sudan", - "Togo", - "Uruguay", - "Venezuela, Bolivarian Republic of" - ], - "rightsdocs_res_3316": [ - "Algeria", - "Argentina", - "Benin", - "Botswana", - "Brazil", - "Burkina Faso", - "Chile", - "China", - "Congo", - "Costa Rica", - "Côte d'Ivoire", - "Cuba", - "Ethiopia", - "Gabon", - "India", - "Indonesia", - "Kazakhstan", - "Kenya", - "Kuwait", - "Maldives", - "Mexico", - "Morocco", - "Namibia", - "Pakistan", - "Peru", - "Philippines", - "Russian Federation", - "Saudi Arabia", - "Sierra Leone", - "South Africa", - "United Arab Emirates", - "Venezuela, Bolivarian Republic of", - "Viet Nam" - ], - "rightsdocs_res_862": [ - "Algeria", - "Argentina", - "Bangladesh", - "Bolivia, Plurinational State of", - "Botswana", - "Brazil", - "China", - "Congo", - "Côte d'Ivoire", - "Cuba", - "El Salvador", - "Ethiopia", - "Gabon", - "Ghana", - "India", - "Indonesia", - "Kazakhstan", - "Kenya", - "Maldives", - "Mexico", - "Morocco", - "Namibia", - "Nigeria", - "Pakistan", - "Paraguay", - "Qatar", - "Russian Federation", - "Saudi Arabia", - "Sierra Leone", - "South Africa", - "United Arab Emirates", - "Venezuela, Bolivarian Republic of", - "Viet Nam" - ], - "rightsdocs_res_42_2": [ - "Argentina", - "Australia", - "Austria", - "Bahamas", - "Brazil", - "Bulgaria", - "Chile", - "Croatia", - "Czechia", - "Denmark", - "Fiji", - "Hungary", - "Iceland", - "Italy", - "Mexico", - "Peru", - "Qatar", - "Slovakia", - "South Africa", - "Spain", - "United Kingdom", - "Uruguay" - ], - "rightsdocs_res_3576": [ - "Argentina", - "Austria", - "Benin", - "Botswana", - "Brazil", - "Burkina Faso", - "Chile", - "Costa Rica", - "Côte d'Ivoire", - "Czechia", - "Estonia", - "France", - "Gabon", - "Germany", - "Indonesia", - "Ireland", - "Italy", - "Japan", - "Korea, Republic of", - "Kuwait", - "Maldives", - "Mexico", - "Montenegro", - "Morocco", - "North Macedonia", - "Peru", - "Romania", - "Saudi Arabia", - "Sierra Leone", - "United Arab Emirates", - "United Kingdom", - "United States" - ], - "rightsdocs_res_44_21": [ - "Afghanistan", - "Argentina", - "Australia", - "Austria", - "Bahamas", - "Brazil", - "Bulgaria", - "Chile", - "Czechia", - "Denmark", - "Fiji", - "Germany", - "Italy", - "Japan", - "Korea, Republic of", - "Libya", - "Marshall Islands", - "Mexico", - "Netherlands", - "Peru", - "Poland", - "Qatar", - "Slovakia", - "Somalia", - "Spain", - "Togo", - "Ukraine", - "Uruguay" - ], - "rightsdocs_res_s27_1": [ - "Albania", - "Bangladesh", - "Belgium", - "Botswana", - "Brazil", - "Croatia", - "Egypt", - "El Salvador", - "Georgia", - "Germany", - "Ghana", - "Hungary", - "Indonesia", - "Iraq", - "Korea, Republic of", - "Kyrgyzstan", - "Latvia", - "Netherlands", - "Nigeria", - "Panama", - "Paraguay", - "Portugal", - "Qatar", - "Rwanda", - "Saudi Arabia", - "Slovenia", - "Switzerland", - "Togo", - "Tunisia", - "United Arab Emirates", - "United Kingdom", - "United States", - "Côte d'Ivoire" - ], - "rightsdocs_res_45_2": [ - "Angola", - "Burkina Faso", - "Cameroon", - "Eritrea", - "Fiji", - "Indonesia", - "Mexico", - "Namibia", - "Nepal", - "Pakistan", - "Philippines", - "Qatar", - "Sudan", - "Venezuela, Bolivarian Republic of" - ], - "rightsdocs_res_45_1": [ - "Afghanistan", - "Argentina", - "Australia", - "Austria", - "Brazil", - "Bulgaria", - "Chile", - "Czechia", - "Denmark", - "Fiji", - "Germany", - "Italy", - "Japan", - "Korea, Republic of", - "Marshall Islands", - "Mexico", - "Netherlands", - "Peru", - "Poland", - "Slovakia", - "Spain", - "Ukraine", - "Uruguay" - ], - "rightsdocs_res_s28_1": [ - "Afghanistan", - "Angola", - "Belgium", - "Brazil", - "Burundi", - "Chile", - "China", - "Congo, the Democratic Republic of the", - "Cuba", - "Ecuador", - "Egypt", - "Iraq", - "Kyrgyzstan", - "Mexico", - "Nepal", - "Nigeria", - "Pakistan", - "Peru", - "Philippines", - "Qatar", - "Saudi Arabia", - "Senegal", - "Slovenia", - "South Africa", - "Spain", - "Tunisia", - "United Arab Emirates", - "Venezuela, Bolivarian Republic of", - "Côte d'Ivoire" - ], - "rightsdocs_res_2801": [ - "Argentina", - "Austria", - "Benin", - "Botswana", - "Brazil", - "Burkina Faso", - "Chile", - "Costa Rica", - "Côte d'Ivoire", - "Czechia", - "Estonia", - "France", - "Gabon", - "Germany", - "Indonesia", - "Ireland", - "Italy", - "Japan", - "Korea, Republic of", - "Kuwait", - "Maldives", - "Mexico", - "Montenegro", - "Morocco", - "North Macedonia", - "Peru", - "Romania", - "Saudi Arabia", - "Sierra Leone", - "United Arab Emirates", - "United Kingdom", - "United States" - ], - "rightsdocs_res_41_22": [ - "Argentina", - "Australia", - "Austria", - "Brazil", - "Bulgaria", - "Chile", - "Croatia", - "Czechia", - "Denmark", - "Fiji", - "Hungary", - "Iceland", - "Italy", - "Japan", - "Mexico", - "Peru", - "Slovakia", - "Spain", - "Ukraine", - "United Kingdom" - ], - "rightsdocs_res_11983": [ - "Angola", - "Azerbaijan", - "Bangladesh", - "Bolivia, Plurinational State of", - "Brazil", - "Cameroon", - "China", - "Cuba", - "Djibouti", - "Egypt", - "Ghana", - "Guatemala", - "India", - "Indonesia", - "Jordan", - "Madagascar", - "Malaysia", - "Mali", - "Mauritius", - "Mexico", - "Nicaragua", - "Nigeria", - "Pakistan", - "Peru", - "Philippines", - "Qatar", - "Russian Federation", - "Saudi Arabia", - "Senegal", - "South Africa", - "Sri Lanka", - "Zambia" - ], - "rightsdocs_res_2880": [ - "Austria", - "Benin", - "Botswana", - "Chile", - "Costa Rica", - "Côte d'Ivoire", - "Czechia", - "Estonia", - "France", - "Germany", - "Ireland", - "Italy", - "Japan", - "Korea, Republic of", - "Maldives", - "Mexico", - "Montenegro", - "North Macedonia", - "Philippines", - "Romania", - "Sierra Leone", - "United Kingdom", - "United States" - ], - "rightsdocs_res_44_23": [ - "Afghanistan", - "Angola", - "Argentina", - "Armenia", - "Australia", - "Austria", - "Bahamas", - "Bahrain", - "Bangladesh", - "Brazil", - "Bulgaria", - "Burkina Faso", - "Chile", - "Congo, the Democratic Republic of the", - "Czechia", - "Denmark", - "Fiji", - "Germany", - "India", - "Indonesia", - "Italy", - "Japan", - "Korea, Republic of", - "Libya", - "Marshall Islands", - "Mexico", - "Nepal", - "Netherlands", - "Nigeria", - "Peru", - "Philippines", - "Poland", - "Qatar", - "Senegal", - "Slovakia", - "Somalia", - "Spain", - "Sudan", - "Togo", - "Ukraine", - "Uruguay" - ], - "rightsdocs_res_41_4": [ - "Afghanistan", - "Angola", - "Bahamas", - "Bahrain", - "Bangladesh", - "Brazil", - "Burkina Faso", - "Cameroon", - "Chile", - "China", - "Congo, the Democratic Republic of the", - "Cuba", - "Egypt", - "Eritrea", - "Fiji", - "India", - "Iraq", - "Mexico", - "Nepal", - "Nigeria", - "Pakistan", - "Peru", - "Philippines", - "Qatar", - "Rwanda", - "Saudi Arabia", - "Senegal", - "Somalia", - "South Africa", - "Togo", - "Tunisia", - "Uruguay" - ], - "rightsdocs_res_45_4": [ - "Angola", - "Argentina", - "Bahamas", - "Bahrain", - "Bangladesh", - "Burkina Faso", - "Cameroon", - "Eritrea", - "Fiji", - "India", - "Indonesia", - "Mauritania", - "Namibia", - "Nepal", - "Nigeria", - "Pakistan", - "Philippines", - "Qatar", - "Senegal", - "Sudan", - "Togo", - "Venezuela, Bolivarian Republic of" - ], - "rightsdocs_res_3531": [ - "Algeria", - "Argentina", - "Austria", - "Benin", - "Botswana", - "Brazil", - "Burkina Faso", - "Chile", - "China", - "Congo", - "Costa Rica", - "Côte d'Ivoire", - "Cuba", - "Czechia", - "Estonia", - "Ethiopia", - "France", - "Gabon", - "Germany", - "India", - "Indonesia", - "Ireland", - "Italy", - "Japan", - "Kazakhstan", - "Kenya", - "Korea, Republic of", - "Kuwait", - "Maldives", - "Mexico", - "Montenegro", - "Morocco", - "Namibia", - "North Macedonia", - "Pakistan", - "Peru", - "Philippines", - "Romania", - "Russian Federation", - "Saudi Arabia", - "Sierra Leone", - "South Africa", - "United Arab Emirates", - "United Kingdom", - "Venezuela, Bolivarian Republic of", - "Viet Nam" - ], - "rightsdocs_res_2832": [ - "Argentina", - "Austria", - "Benin", - "Botswana", - "Brazil", - "Chile", - "Costa Rica", - "Czechia", - "Estonia", - "France", - "Gabon", - "Germany", - "Ireland", - "Italy", - "Japan", - "Korea, Republic of", - "Maldives", - "Montenegro", - "North Macedonia", - "Peru", - "Romania", - "Sierra Leone", - "United Kingdom", - "United States" - ], - "rightsdocs_res_3594": [ - "Argentina", - "Austria", - "Benin", - "Botswana", - "Brazil", - "Chile", - "Costa Rica", - "Côte d'Ivoire", - "Czechia", - "Estonia", - "France", - "Germany", - "Ireland", - "Italy", - "Korea, Republic of", - "Mexico", - "Montenegro", - "North Macedonia", - "Peru", - "Romania", - "Sierra Leone", - "United Kingdom", - "United States" - ], - "rightsdocs_res_42_25": [ - "Argentina", - "Australia", - "Austria", - "Bahamas", - "Brazil", - "Bulgaria", - "Chile", - "Croatia", - "Czechia", - "Denmark", - "Hungary", - "Iceland", - "Italy", - "Japan", - "Peru", - "Slovakia", - "Spain", - "Ukraine", - "United Kingdom" - ], - "rightsdocs_res_877": [ - "Albania", - "Algeria", - "Argentina", - "Bolivia, Plurinational State of", - "Brazil", - "Congo", - "Côte d'Ivoire", - "El Salvador", - "Estonia", - "France", - "Gabon", - "Germany", - "Ireland", - "Kazakhstan", - "Latvia", - "Mexico", - "Montenegro", - "Namibia", - "Netherlands", - "North Macedonia", - "Paraguay", - "Portugal", - "Sierra Leone", - "South Africa", - "United Kingdom", - "Venezuela, Bolivarian Republic of" - ], - "rightsdocs_res_41_19": [ - "Afghanistan", - "Angola", - "Argentina", - "Bahamas", - "Bahrain", - "Bangladesh", - "Brazil", - "Burkina Faso", - "Cameroon", - "Chile", - "China", - "Congo, the Democratic Republic of the", - "Cuba", - "Egypt", - "Eritrea", - "Fiji", - "India", - "Iraq", - "Mexico", - "Nepal", - "Nigeria", - "Pakistan", - "Peru", - "Philippines", - "Qatar", - "Rwanda", - "Saudi Arabia", - "Senegal", - "Somalia", - "South Africa", - "Togo", - "Tunisia", - "Uruguay" - ], - "rightsdocs_res_42_1": [ - "Afghanistan", - "Angola", - "Argentina", - "Bahamas", - "Bahrain", - "Bangladesh", - "Burkina Faso", - "Cameroon", - "China", - "Congo, the Democratic Republic of the", - "Cuba", - "Egypt", - "Eritrea", - "Fiji", - "India", - "Iraq", - "Mexico", - "Nepal", - "Nigeria", - "Pakistan", - "Peru", - "Philippines", - "Qatar", - "Rwanda", - "Saudi Arabia", - "Senegal", - "South Africa", - "Togo", - "Tunisia", - "Uruguay" - ], - "rightsdocs_res_42_8": [ - "Angola", - "Bahamas", - "Bahrain", - "Bangladesh", - "Burkina Faso", - "Cameroon", - "China", - "Cuba", - "Egypt", - "Eritrea", - "Fiji", - "India", - "Iraq", - "Nepal", - "Nigeria", - "Pakistan", - "Philippines", - "Qatar", - "Rwanda", - "Saudi Arabia", - "Senegal", - "Somalia", - "South Africa", - "Tunisia", - "Uruguay" - ], - "rightsdocs_res_41_5": [ - "Afghanistan", - "Angola", - "Argentina", - "Bahamas", - "Bahrain", - "Bangladesh", - "Brazil", - "Burkina Faso", - "Cameroon", - "Chile", - "China", - "Congo, the Democratic Republic of the", - "Cuba", - "Egypt", - "Eritrea", - "Fiji", - "India", - "Iraq", - "Nepal", - "Nigeria", - "Pakistan", - "Peru", - "Philippines", - "Qatar", - "Rwanda", - "Saudi Arabia", - "Senegal", - "Somalia", - "South Africa", - "Togo", - "Tunisia", - "Uruguay" - ], - "rightsdocs_res_3564": [ - "Argentina", - "Austria", - "Botswana", - "Brazil", - "Chile", - "Costa Rica", - "Czechia", - "Estonia", - "France", - "Germany", - "Ireland", - "Italy", - "Japan", - "Korea, Republic of", - "Mexico", - "Montenegro", - "North Macedonia", - "Peru", - "Romania", - "United Kingdom", - "United States" - ], - "rightsdocs_res_42_4": [ - "Angola", - "Burkina Faso", - "Cameroon", - "China", - "Cuba", - "Egypt", - "Eritrea", - "Fiji", - "Iraq", - "Mexico", - "Nepal", - "Pakistan", - "Philippines", - "Qatar", - "Rwanda", - "South Africa", - "Tunisia", - "Uruguay" - ], - "1674746308503ltc72zcky3h": [], - "1674746294557s160p33rh8": [], - "1674746318601lt0zdzi7pwa": [], - "1674746323194yyzc4xfggfe": [], - "1674746342744g76s6nsbry": [], - "1674746343722fsshjp2gk8": [], - "1674746344261gwkjxmf7fm": [], - "1674746346307a5cgoj04hih": [], - "1674746348446iheahcd7txb": [], - "1674746350495e9n7id02hoe": [], - "1674746352071xwxjj1xv5z": [], - "1674746369407v35wueggc9": [], - "1674746374288u0pkrwh5mlh": [], - "1674746375983vqkmazyw5og": [], - "1674746398979mk72w75e329": [], - "1674746401722v5o7rpafzg": [], - "1674746412094vqvlhudtcqn": [], - "1674746428538v6u7xod401": [], - "1674746434707xeqs2we68h": [], - "1674746436573rzfve4pxg9": [], - "1674746438321eqijkzrm926": [], - "1674746439714ou4db4kqr59": [], - "1674746443261dphvbzivd7": [], - "1674746445584u8d26vxzrnh": [], - "1674746445906f5gxwtp911i": [], - "1674746446474kcn00ozwueo": [], - "1674746447876v8k2pxwrmmj": [], - "1674746450022td57wxgq74r": [], - "1674746452401u9jcq44r72l": [], - "1695894673681wog9xhfnbt": [], - "1695894704063p5fhued7tx": [], - "1695894738922hf107ngvqmp": [], - "1695894840228iecej4r3y7c": [], - "1695894864589tmcs9j07ji": [], - "1695894871414puw6hhmnoc9": [], - "1695894871656zm5p65d7ql8": [], - "1695894872356z8nj8tv50o": [], - "1695894872572fvw01r626g": [], - "1695894874549jcifsx56l4": [], - "1695895054538xqnwud856n": [], - "1695895058364cfjzcsvf3a4": [], - "1695895058564lhq9sjspm9": [], - "1695895064080v2fbywh9l29": [], - "1695895073106k7a2610zpsq": [], - "1695895109776gzfd9kmwfs": [], - "1695895113668u4qwn3694im": [] -} \ No newline at end of file diff --git a/src/extractors/pdf_to_multi_option_extractor/labeled_data/countries_in_favor_empty_labels/options.json b/src/extractors/pdf_to_multi_option_extractor/labeled_data/countries_in_favor_empty_labels/options.json deleted file mode 100644 index 1331857..0000000 --- a/src/extractors/pdf_to_multi_option_extractor/labeled_data/countries_in_favor_empty_labels/options.json +++ /dev/null @@ -1,197 +0,0 @@ -[ - "Kyrgyzstan", - "Saint Lucia", - "Korea, Democratic People's Republic of", - "Qatar", - "Italy", - "Slovakia", - "South Sudan", - "Eswatini", - "China", - "Togo", - "Lithuania", - "Ukraine", - "Germany", - "Oman", - "Malta", - "Mexico", - "Chad", - "Saint Kitts and Nevis", - "Barbados", - "Montenegro", - "Palestine, State of", - "Armenia", - "Haiti", - "Luxembourg", - "Vanuatu", - "Venezuela, Bolivarian Republic of", - "Colombia", - "Azerbaijan", - "Mauritania", - "Spain", - "Turkey", - "Sao Tome and Principe", - "Zambia", - "Myanmar", - "Czechia", - "Lao People's Democratic Republic", - "Bhutan", - "Ecuador", - "Slovenia", - "Jordan", - "Belgium", - "Hungary", - "Bulgaria", - "Tonga", - "Turkmenistan", - "Israel", - "Bahamas", - "Guinea-Bissau", - "Mali", - "Maldives", - "Marshall Islands", - "Indonesia", - "Morocco", - "Saint Vincent and the Grenadines", - "San Marino", - "Solomon Islands", - "Uruguay", - "Cameroon", - "Denmark", - "Liberia", - "Tuvalu", - "Portugal", - "Niger", - "Guyana", - "Congo", - "Nepal", - "Peru", - "Japan", - "Cuba", - "Algeria", - "Finland", - "Russian Federation", - "Sweden", - "Burundi", - "Thailand", - "Grenada", - "Belarus", - "Kiribati", - "Andorra", - "Monaco", - "Samoa", - "Papua New Guinea", - "Namibia", - "Bolivia, Plurinational State of", - "Saudi Arabia", - "Antigua and Barbuda", - "Norway", - "Timor-Leste", - "Comoros", - "Korea, Republic of", - "Kenya", - "Netherlands", - "Bahrain", - "Panama", - "Uzbekistan", - "Benin", - "Trinidad and Tobago", - "North Macedonia", - "Sudan", - "Cambodia", - "Canada", - "Chile", - "Nauru", - "United Arab Emirates", - "Guatemala", - "Liechtenstein", - "Sri Lanka", - "Congo, the Democratic Republic of the", - "Botswana", - "Equatorial Guinea", - "Guinea", - "Viet Nam", - "Holy See (Vatican City State)", - "Mauritius", - "Angola", - "Libya", - "United Kingdom", - "Central African Republic", - "Somalia", - "India", - "Cape Verde", - "New Zealand", - "Uganda", - "Nicaragua", - "Palau", - "Fiji", - "Poland", - "Romania", - "Lebanon", - "Philippines", - "Rwanda", - "Afghanistan", - "Zimbabwe", - "Austria", - "Brunei Darussalam", - "Eritrea", - "Mozambique", - "El Salvador", - "Burkina Faso", - "Bangladesh", - "Iran, Islamic Republic of", - "Latvia", - "Iceland", - "Kazakhstan", - "Micronesia, Federated States of", - "Cyprus", - "Ghana", - "Sierra Leone", - "Iraq", - "Suriname", - "Malawi", - "Georgia", - "Lesotho", - "Mongolia", - "Nigeria", - "Tanzania, United Republic of", - "Paraguay", - "Jamaica", - "Moldova, Republic of", - "Malaysia", - "Tajikistan", - "Costa Rica", - "Syrian Arab Republic", - "Switzerland", - "Singapore", - "Argentina", - "Estonia", - "Dominican Republic", - "Gabon", - "Kuwait", - "Australia", - "Egypt", - "Tunisia", - "Albania", - "South Africa", - "Greece", - "Senegal", - "Ethiopia", - "Honduras", - "Bosnia and Herzegovina", - "Pakistan", - "Belize", - "Seychelles", - "Yemen", - "Brazil", - "Gambia", - "Côte d'Ivoire", - "Croatia", - "Ireland", - "France", - "Serbia", - "Madagascar", - "Djibouti", - "United States", - "Dominica" -] diff --git a/src/extractors/pdf_to_multi_option_extractor/labeled_data/cyrilla_keywords/labels.json b/src/extractors/pdf_to_multi_option_extractor/labeled_data/cyrilla_keywords/labels.json deleted file mode 100644 index 826b28b..0000000 --- a/src/extractors/pdf_to_multi_option_extractor/labeled_data/cyrilla_keywords/labels.json +++ /dev/null @@ -1,248 +0,0 @@ -{ - "cyrilla_01": [ - "Freedom of Expression", - "Privacy" - ], - "cyrilla_02": [ - "Privacy", - "Telecommunication" - ], - "cyrilla_03": [ - "Freedom of Expression", - "Privacy" - ], - "cyrilla_04": [ - "Freedom of Expression", - "Telecommunication" - ], - "cyrilla_05": [ - "Telecommunication", - "Privacy" - ], - "cyrilla_06": [ - "Freedom of Expression", - "Privacy" - ], - "cyrilla_07": [ - "Freedom of Expression", - "Telecommunication" - ], - "cyrilla_08": [ - "Freedom of Expression", - "Privacy" - ], - "cyrilla_09": [ - "Access to Information", - "Freedom of Expression" - ], - "cyrilla_10": [ - "Freedom of Expression", - "Privacy" - ], - "cyrilla_11": [ - "Intellectual Property", - "Privacy" - ], - "cyrilla_12": [ - "Intellectual Property", - "Privacy" - ], - "cyrilla_13": [ - "Privacy", - "Freedom of Expression" - ], - "cyrilla_14": [ - "Intellectual Property", - "Privacy", - "Freedom of Expression" - ], - "cyrilla_15": [ - "Privacy", - "Freedom of Expression" - ], - "cyrilla_16": [ - "Access to Information", - "Privacy" - ], - "cyrilla_17": [ - "Intellectual Property", - "Freedom of Expression" - ], - "cyrilla_19": [ - "Telecommunication", - "Privacy" - ], - "cyrilla_20": [ - "Freedom of Expression", - "Privacy" - ], - "cyrilla_21": [ - "Freedom of Expression", - "Access to Information" - ], - "cyrilla_22": [ - "Freedom of Expression", - "Telecommunication" - ], - "cyrilla_23": [ - "Access to Information", - "Telecommunication" - ], - "cyrilla_24": [ - "Intellectual Property", - "Access to Information" - ], - "cyrilla_26": [ - "Access to Information", - "Telecommunication" - ], - "cyrilla_27": [ - "Freedom of Expression", - "Telecommunication" - ], - "cyrilla_28": [ - "Access to Information", - "Telecommunication" - ], - "cyrilla_29": [ - "Access to Information", - "Telecommunication" - ], - "cyrilla_30": [ - "Intellectual Property", - "Freedom of Expression" - ], - "cyrilla_31": [ - "Access to Information", - "Intellectual Property" - ], - "cyrilla_32": [ - "Access to Information", - "Freedom of Expression" - ], - "cyrilla_33": [ - "Access to Information", - "Freedom of Expression", - "Intellectual Property", - "Privacy" - ], - "cyrilla_34": [ - "Access to Information", - "Freedom of Expression", - "Intellectual Property", - "Privacy" - ], - "cyrilla_35": [ - "Access to Information", - "Privacy" - ], - "cyrilla_36": [ - "Access to Information", - "Telecommunication" - ], - "cyrilla_37": [ - "Access to Information", - "Telecommunication" - ], - "cyrilla_38": [ - "Access to Information", - "Telecommunication" - ], - "cyrilla_39": [ - "Access to Information", - "Telecommunication" - ], - "cyrilla_40": [ - "Access to Information", - "Telecommunication" - ], - "cyrilla_41": [ - "Access to Information", - "Telecommunication" - ], - "cyrilla_43": [ - "Access to Information", - "Telecommunication" - ], - "cyrilla_44": [ - "Intellectual Property" - ], - "cyrilla_45": [ - "Access to Information" - ], - "cyrilla_46": [ - "Telecommunication" - ], - "cyrilla_49": [ - "Telecommunication" - ], - "cyrilla_50": [ - "Intellectual Property" - ], - "cyrilla_51": [ - "Intellectual Property" - ], - "cyrilla_52": [ - "Intellectual Property" - ], - "cyrilla_54": [ - "Privacy" - ], - "cyrilla_55": [ - "Privacy" - ], - "cyrilla_56": [ - "Intellectual Property" - ], - "cyrilla_57": [ - "Intellectual Property" - ], - "cyrilla_58": [ - "Telecommunication" - ], - "cyrilla_59": [ - "Telecommunication" - ], - "cyrilla_60": [ - "Intellectual Property" - ], - "cyrilla_61": [ - "Intellectual Property" - ], - "cyrilla_62": [ - "Intellectual Property" - ], - "cyrilla_63": [ - "Telecommunication" - ], - "cyrilla_64": [ - "Telecommunication" - ], - "cyrilla_65": [ - "Telecommunication" - ], - "cyrilla_66": [ - "Telecommunication" - ], - "cyrilla_67": [ - "Telecommunication" - ], - "cyrilla_69": [ - "Intellectual Property" - ], - "cyrilla_70": [ - "Intellectual Property" - ], - "cyrilla_71": [ - "Telecommunication" - ], - "cyrilla_72": [ - "Access to Information" - ], - "cyrilla_73": [ - "Telecommunication" - ], - "cyrilla_74": [ - "Intellectual Property" - ] -} diff --git a/src/extractors/pdf_to_multi_option_extractor/labeled_data/cyrilla_keywords/options.json b/src/extractors/pdf_to_multi_option_extractor/labeled_data/cyrilla_keywords/options.json deleted file mode 100644 index ed17235..0000000 --- a/src/extractors/pdf_to_multi_option_extractor/labeled_data/cyrilla_keywords/options.json +++ /dev/null @@ -1,7 +0,0 @@ -[ - "Intellectual Property", - "Freedom of Expression", - "Telecommunication", - "Access to Information", - "Privacy" -] \ No newline at end of file diff --git a/src/extractors/pdf_to_multi_option_extractor/labeled_data/d4la_document_type/labels.json b/src/extractors/pdf_to_multi_option_extractor/labeled_data/d4la_document_type/labels.json deleted file mode 100644 index 17ef953..0000000 --- a/src/extractors/pdf_to_multi_option_extractor/labeled_data/d4la_document_type/labels.json +++ /dev/null @@ -1,120 +0,0 @@ -{ - "budget_0000253673": ["Budget"], - "budget_04002151_04002152": ["Budget"], - "budget_92059798_92059799": ["Budget"], - "budget_tcal0249116_9122": ["Budget"], - "budget_tcal0392290": ["Budget"], - "budget_tcal0468912": ["Budget"], - "budget_tcal0469073_9075": ["Budget"], - "budget_ti16370053": ["Budget"], - "budget_ti17150028": ["Budget"], - "budget_tnwl0000325": ["Budget"], - "email_2073815238b": ["Email"], - "email_2078877622": ["Email"], - "email_2083647464b": ["Email"], - "email_2083647980a": ["Email"], - "email_2085120771b": ["Email"], - "email_2085135506a": ["Email"], - "email_2085763710b_3711": ["Email"], - "email_2085802206": ["Email"], - "email_2703700191": ["Email"], - "email_81882104": ["Email"], - "form_0060208134": ["Form"], - "form_2023342299": ["Form"], - "form_2025042953": ["Form"], - "form_2029149564_2029149565": ["Form"], - "form_2064781585": ["Form"], - "form_2074132124": ["Form"], - "form_2077981537": ["Form"], - "form_2078158398": ["Form"], - "form_2084068437": ["Form"], - "form_506415657": ["Form"], - "invoice_0000137558": ["Invoice"], - "invoice_0000145742": ["Invoice"], - "invoice_0012617638": ["Invoice"], - "invoice_0060076155": ["Invoice"], - "invoice_2029370804": ["Invoice"], - "invoice_80702806": ["Invoice"], - "invoice_87104310": ["Invoice"], - "invoice_87148443": ["Invoice"], - "invoice_92891118": ["Invoice"], - "invoice_97072220": ["Invoice"], - "letter_0001216698": ["Letter"], - "letter_0060084038": ["Letter"], - "letter_2043725001": ["Letter"], - "letter_40041716-1716": ["Letter"], - "letter_500773710+-3710": ["Letter"], - "letter_501277927": ["Letter"], - "letter_507086771": ["Letter"], - "letter_515168488+-8488": ["Letter"], - "letter_522694870+-4870": ["Letter"], - "letter_83605703_5704": ["Letter"], - "memo_0000095583": ["Memo"], - "memo_0000110689": ["Memo"], - "memo_0060103627": ["Memo"], - "memo_00621905": ["Memo"], - "memo_2000450481": ["Memo"], - "memo_2061665704": ["Memo"], - "memo_89096175_89096181": ["Memo"], - "memo_91393526_91393530": ["Memo"], - "memo_93186498": ["Memo"], - "memo_93279028": ["Memo"], - "news_article_01131396-a": ["News Article"], - "news_article_2024998642": ["News Article"], - "news_article_2040124116": ["News Article"], - "news_article_2046585890_5891": ["News Article"], - "news_article_2047550322_0323": ["News Article"], - "news_article_2050740131": ["News Article"], - "news_article_2501357026_2501357027": ["News Article"], - "news_article_92314566_92314567": ["News Article"], - "presentation_0011861635": ["Presentation"], - "presentation_11007466_11007467": ["Presentation"], - "presentation_2023106319_2023106330": ["Presentation"], - "presentation_2042016198_2042016199": ["Presentation"], - "presentation_2047304282": ["Presentation"], - "presentation_2076869973_9974": ["Presentation"], - "presentation_2077305999_6000": ["Presentation"], - "presentation_2085140637_0639": ["Presentation"], - "presentation_81885683_5685": ["Presentation"], - "presentation_86610172_0173": ["Presentation"], - "resume_0000014766": ["Resume"], - "resume_2028374102_2028374105": ["Resume"], - "resume_2074979863_9866": ["Resume"], - "resume_50242768-2773": ["Resume"], - "resume_50295430-5430": ["Resume"], - "resume_50393810-3811": ["Resume"], - "resume_50407816-7817": ["Resume"], - "resume_50468530-8531": ["Resume"], - "resume_50592427-2428": ["Resume"], - "resume_50592458-2459": ["Resume"], - "scientific_publication_1002966902_1002966909": ["Scientific Publication"], - "scientific_publication_10121372_10121376": ["Scientific Publication"], - "scientific_publication_10324277_10324282": ["Scientific Publication"], - "scientific_publication_11049641_11049646": ["Scientific Publication"], - "scientific_publication_11051235_11051247": ["Scientific Publication"], - "scientific_publication_2028455225": ["Scientific Publication"], - "scientific_publication_50471442-1442": ["Scientific Publication"], - "scientific_publication_50591628-1637": ["Scientific Publication"], - "scientific_publication_50702667-2677": ["Scientific Publication"], - "scientific_publication_87153923_3926": ["Scientific Publication"], - "scientific_report_00960684_0701": ["Scientific Report"], - "scientific_report_2022149382": ["Scientific Report"], - "scientific_report_2024440741": ["Scientific Report"], - "scientific_report_2028626397_2028626398": ["Scientific Report"], - "scientific_report_2054335834_2054335835": ["Scientific Report"], - "scientific_report_2056267254": ["Scientific Report"], - "scientific_report_2505276698_6701": ["Scientific Report"], - "scientific_report_80221209_80221210": ["Scientific Report"], - "scientific_report_83977278_7287": ["Scientific Report"], - "scientific_report_88714432_4434": ["Scientific Report"], - "specification_0000056692": ["Specification"], - "specification_2030478277_2030478282": ["Specification"], - "specification_2031311704": ["Specification"], - "specification_2057457056": ["Specification"], - "specification_2057672575": ["Specification"], - "specification_2069719248": ["Specification"], - "specification_2069721763": ["Specification"], - "specification_2069728534": ["Specification"], - "specification_504562086": ["Specification"], - "specification_504564704": ["Specification"] -} \ No newline at end of file diff --git a/src/extractors/pdf_to_multi_option_extractor/labeled_data/d4la_document_type/options.json b/src/extractors/pdf_to_multi_option_extractor/labeled_data/d4la_document_type/options.json deleted file mode 100644 index e08cadc..0000000 --- a/src/extractors/pdf_to_multi_option_extractor/labeled_data/d4la_document_type/options.json +++ /dev/null @@ -1,14 +0,0 @@ -[ - "Budget", - "Email", - "Form", - "Invoice", - "Letter", - "Memo", - "News Article", - "Presentation", - "Resume", - "Scientific Publication", - "Scientific Report", - "Specification" -] \ No newline at end of file diff --git a/src/extractors/pdf_to_multi_option_extractor/multi_labels_methods/BertMethod.py b/src/extractors/pdf_to_multi_option_extractor/multi_labels_methods/BertMethod.py deleted file mode 100644 index c85acf1..0000000 --- a/src/extractors/pdf_to_multi_option_extractor/multi_labels_methods/BertMethod.py +++ /dev/null @@ -1,140 +0,0 @@ -import os -import shutil -from math import exp -from os.path import join, exists - -import pandas as pd -from transformers import TrainingArguments, AutoTokenizer - -from data.Option import Option -from data.ExtractionData import ExtractionData -from extractors.bert_method_scripts.get_batch_size import get_batch_size -from extractors.pdf_to_multi_option_extractor.MultiLabelMethod import MultiLabelMethod - -from extractors.bert_method_scripts.multi_label_sequence_classification_trainer import ( - multi_label_run, - MultiLabelDataTrainingArguments, - ModelArguments, -) - -MODEL_NAME = "google-bert/bert-base-uncased" - - -tokenizer = AutoTokenizer.from_pretrained(MODEL_NAME) - - -class BertMethod(MultiLabelMethod): - def can_be_used(self, extraction_data: ExtractionData) -> bool: - return extraction_data.multi_value - - def get_data_path(self, name): - model_folder_path = self.get_path() - - if not exists(model_folder_path): - os.makedirs(model_folder_path) - - return join(model_folder_path, f"{name}.csv") - - def get_model_path(self): - model_folder_path = self.get_path() - - if not exists(model_folder_path): - os.makedirs(model_folder_path) - - model_path = join(model_folder_path, "model") - - os.makedirs(model_path, exist_ok=True) - - return str(model_path) - - def create_dataset(self, multi_option_data: ExtractionData, name: str): - texts, labels = self.get_texts_labels(multi_option_data) - - rows = list() - - for text, label in zip(texts, labels): - rows.append([text, label]) - - output_df = pd.DataFrame(rows) - output_df.columns = ["text", "labels"] - - if name != "predict": - output_df = output_df.sample(frac=1, random_state=22).reset_index(drop=True) - - output_df.to_csv(self.get_data_path(name)) - return self.get_data_path(name) - - def train(self, multi_option_data: ExtractionData): - shutil.rmtree(self.get_model_path(), ignore_errors=True) - - training_csv_path = self.create_dataset(multi_option_data, "train") - validation_csv_path = self.create_dataset(multi_option_data, "validation") - model_arguments = ModelArguments(MODEL_NAME) - labels_number = len(self.options) - - data_training_arguments = MultiLabelDataTrainingArguments( - train_file=training_csv_path, - validation_file=validation_csv_path, - max_seq_length=256, - labels_number=labels_number, - ) - - batch_size = get_batch_size(len(multi_option_data.samples)) - t5_training_arguments = TrainingArguments( - report_to=[], - output_dir=self.get_model_path(), - overwrite_output_dir=True, - per_device_train_batch_size=batch_size, - per_device_eval_batch_size=batch_size, - gradient_accumulation_steps=batch_size, - eval_accumulation_steps=batch_size, - learning_rate=5e-05, - do_train=True, - do_eval=False, - do_predict=False, - save_total_limit=2, - save_strategy="steps", - evaluation_strategy="steps", - eval_steps=500000, - save_steps=200, - load_best_model_at_end=False, - logging_steps=50, - metric_for_best_model="f1", - num_train_epochs=23, - ) - - multi_label_run(model_arguments, data_training_arguments, t5_training_arguments) - - @staticmethod - def logit_to_probabilities(logits): - odds = [1 / (1 + exp(-logit)) for logit in logits] - return odds - - def predict(self, multi_option_data: ExtractionData) -> list[list[Option]]: - labels_number = len(self.options) - predict_path = self.create_dataset(multi_option_data, "predict") - model_arguments = ModelArguments(self.get_model_path(), ignore_mismatched_sizes=True) - data_training_arguments = MultiLabelDataTrainingArguments( - train_file=predict_path, - validation_file=predict_path, - test_file=predict_path, - max_seq_length=256, - labels_number=labels_number, - ) - - batch_size = get_batch_size(len(multi_option_data.samples)) - t5_training_arguments = TrainingArguments( - report_to=[], - output_dir=self.get_model_path(), - overwrite_output_dir=False, - per_device_train_batch_size=batch_size, - per_device_eval_batch_size=batch_size, - gradient_accumulation_steps=batch_size, - eval_accumulation_steps=batch_size, - do_train=False, - do_eval=False, - do_predict=True, - ) - - logits = multi_label_run(model_arguments, data_training_arguments, t5_training_arguments) - return self.predictions_to_options_list([self.logit_to_probabilities(logit) for logit in logits]) diff --git a/src/extractors/pdf_to_multi_option_extractor/multi_labels_methods/BertSeqSteps.py b/src/extractors/pdf_to_multi_option_extractor/multi_labels_methods/BertSeqSteps.py deleted file mode 100644 index 3e756e9..0000000 --- a/src/extractors/pdf_to_multi_option_extractor/multi_labels_methods/BertSeqSteps.py +++ /dev/null @@ -1,175 +0,0 @@ -import os -import shutil -from math import exp -from os.path import join, exists -import evaluate -import numpy as np -import pandas as pd -from transformers import ( - TrainingArguments, - Trainer, - AutoTokenizer, - DataCollatorWithPadding, - AutoModelForSequenceClassification, -) -from data.Option import Option -from extractors.bert_method_scripts.AvoidEvaluation import AvoidEvaluation -from extractors.bert_method_scripts.EarlyStoppingAfterInitialTraining import EarlyStoppingAfterInitialTraining -from extractors.bert_method_scripts.get_batch_size import get_batch_size, get_max_steps -from extractors.pdf_to_multi_option_extractor.MultiLabelMethod import MultiLabelMethod -from data.ExtractionData import ExtractionData -from data.TrainingSample import TrainingSample - -MODEL_NAME = "google-bert/bert-base-uncased" - -clf_metrics = evaluate.combine(["accuracy", "f1", "precision", "recall"]) -tokenizer = AutoTokenizer.from_pretrained(MODEL_NAME) - - -class BertSeqSteps(MultiLabelMethod): - - def can_be_used(self, extraction_data: ExtractionData) -> bool: - return extraction_data.multi_value - - def get_data_path(self, name): - model_folder_path = self.get_path() - - if not exists(model_folder_path): - os.makedirs(model_folder_path) - - return join(model_folder_path, f"{name}.csv") - - def get_model_path(self): - model_folder_path = self.get_path() - - if not exists(model_folder_path): - os.makedirs(model_folder_path) - - model_path = join(model_folder_path, "model") - - os.makedirs(model_path, exist_ok=True) - - return str(model_path) - - def create_dataset(self, multi_option_data: ExtractionData, name: str): - texts, labels = self.get_texts_labels(multi_option_data) - - rows = list() - - for text, label in zip(texts, labels): - rows.append([text, label]) - - output_df = pd.DataFrame(rows) - output_df.columns = ["text", "labels"] - - if name != "predict": - output_df = output_df.sample(frac=1, random_state=22).reset_index(drop=True) - - output_df.to_csv(self.get_data_path(name)) - return self.get_data_path(name) - - @staticmethod - def compute_metrics(eval_pred): - predictions, labels = eval_pred - predictions = 1 / (1 + np.exp(-predictions)) - predictions = (predictions > 0.5).astype(int).reshape(-1) - return clf_metrics.compute(predictions=predictions, references=labels.astype(int).reshape(-1)) - - def preprocess_function(self, sample: TrainingSample): - text = sample.get_text() - labels = [1.0 if value in sample.labeled_data.values else 0.0 for value in self.options] - - example = tokenizer(text, padding="max_length", truncation="only_first", max_length=self.get_token_length()) - example["labels"] = labels - return example - - def train(self, multi_option_data: ExtractionData): - shutil.rmtree(self.get_model_path(), ignore_errors=True) - - self.create_dataset(multi_option_data, "train") - - examples = [self.preprocess_function(x) for x in multi_option_data.samples] - data_collator = DataCollatorWithPadding(tokenizer=tokenizer) - - id2class = {index: label for index, label in enumerate([x.label for x in self.options])} - class2id = {label: index for index, label in enumerate([x.label for x in self.options])} - - model = AutoModelForSequenceClassification.from_pretrained( - MODEL_NAME, - num_labels=len(self.options), - id2label=id2class, - label2id=class2id, - problem_type="multi_label_classification", - ) - - training_args = TrainingArguments( - output_dir=self.get_model_path(), - learning_rate=2e-5, - per_device_train_batch_size=get_batch_size(len(multi_option_data.samples)), - per_device_eval_batch_size=get_batch_size(len(multi_option_data.samples)), - max_steps=get_max_steps(len(multi_option_data.samples)), - weight_decay=0.01, - eval_steps=200, - save_steps=200, - save_strategy="steps", - evaluation_strategy="steps", - load_best_model_at_end=True, - fp16=False, - bf16=False, - ) - - trainer = Trainer( - model=model, - args=training_args, - train_dataset=examples, - eval_dataset=examples, - tokenizer=tokenizer, - data_collator=data_collator, - compute_metrics=self.compute_metrics, - callbacks=[EarlyStoppingAfterInitialTraining(early_stopping_patience=3), AvoidEvaluation()], - ) - - trainer.train() - - trainer.save_model(self.get_model_path()) - - @staticmethod - def logit_to_probabilities(logits): - odds = [1 / (1 + exp(-logit)) for logit in logits] - return odds - - def predict(self, multi_option_data: ExtractionData) -> list[list[Option]]: - id2class = {index: label for index, label in enumerate([x.label for x in self.options])} - class2id = {label: index for index, label in enumerate([x.label for x in self.options])} - - self.create_dataset(multi_option_data, "predict") - - model = AutoModelForSequenceClassification.from_pretrained( - self.get_model_path(), - num_labels=len(self.options), - id2label=id2class, - label2id=class2id, - problem_type="multi_label_classification", - ) - - model.eval() - - inputs = tokenizer( - [x.pdf_data.get_text() for x in multi_option_data.samples], - return_tensors="pt", - padding="max_length", - truncation="only_first", - max_length=self.get_token_length(), - ) - output = model(inputs["input_ids"], attention_mask=inputs["attention_mask"]) - - return self.predictions_to_options_list([self.logit_to_probabilities(logit) for logit in output.logits]) - - def get_token_length(self): - data = pd.read_csv(self.get_data_path("train")) - max_length = 0 - for index, row in data.iterrows(): - length = len(tokenizer(row["text"]).data["input_ids"]) - max_length = max(length, max_length) - - return max_length diff --git a/src/extractors/pdf_to_multi_option_extractor/multi_labels_methods/FastTextMethod.py b/src/extractors/pdf_to_multi_option_extractor/multi_labels_methods/FastTextMethod.py deleted file mode 100644 index 6392f19..0000000 --- a/src/extractors/pdf_to_multi_option_extractor/multi_labels_methods/FastTextMethod.py +++ /dev/null @@ -1,87 +0,0 @@ -import os -import shutil -from os.path import join, exists -from pathlib import Path - -import fasttext - -from data.Option import Option -from data.ExtractionData import ExtractionData -from extractors.pdf_to_multi_option_extractor.MultiLabelMethod import MultiLabelMethod - - -class FastTextMethod(MultiLabelMethod): - - def can_be_used(self, extraction_data: ExtractionData) -> bool: - return True - - @staticmethod - def clean_label(label: str): - return "_".join(label.split()).lower().replace(",", "") - - def clean_labels(self, options: list[Option]): - return [self.clean_label(option.label) for option in options] - - def get_data_path(self): - model_folder_path = join(self.extraction_identifier.get_path(), self.get_name()) - - if not exists(model_folder_path): - os.makedirs(model_folder_path) - - return join(model_folder_path, "data.txt") - - def get_model_path(self): - model_folder_path = join(self.extraction_identifier.get_path(), self.get_name()) - - if not exists(model_folder_path): - os.makedirs(model_folder_path) - - return join(model_folder_path, "fast.model") - - def prepare_data(self, multi_option_data: ExtractionData): - texts = [sample.pdf_data.get_text() for sample in multi_option_data.samples] - texts = [text.replace("\n", " ") for text in texts] - labels = [ - "__label__" + " __label__".join(self.clean_labels(sample.labeled_data.values)) - for sample in multi_option_data.samples - ] - data = [f"{label} {text}" for label, text in zip(labels, texts)] - Path(self.get_data_path()).write_text("\n".join(data)) - - def train(self, multi_option_data: ExtractionData): - shutil.rmtree(self.get_model_path(), ignore_errors=True) - self.prepare_data(multi_option_data) - fasttext_params = { - "input": self.get_data_path(), - "lr": 0.1, - "lrUpdateRate": 1000, - "thread": 8, - "epoch": 600, - "wordNgrams": 2, - "dim": 100, - "loss": "ova", - } - model = fasttext.train_supervised(**fasttext_params) - model.save_model(self.get_model_path()) - - def predict(self, multi_option_data: ExtractionData) -> list[list[Option]]: - texts = [sample.pdf_data.get_text() for sample in multi_option_data.samples] - texts = [text.replace("\n", " ") for text in texts] - - model = fasttext.load_model(self.get_model_path()) - labels = self.clean_labels(self.options) - - if self.multi_value: - prediction_labels_scores = model.predict(texts, k=len(labels)) - else: - prediction_labels_scores = model.predict(texts, k=1) - - predictions: list[list[Option]] = list() - for prediction_labels, scores in zip(prediction_labels_scores[0], prediction_labels_scores[1]): - predictions.append(list()) - for prediction_label, score in zip(prediction_labels, scores): - if score > 0.5 and prediction_label[9:] in labels: - label_index = labels.index(prediction_label[9:]) - predictions[-1].append(self.options[label_index]) - - return predictions diff --git a/src/extractors/pdf_to_multi_option_extractor/multi_labels_methods/SetFitEnglishMethod.py b/src/extractors/pdf_to_multi_option_extractor/multi_labels_methods/SetFitEnglishMethod.py deleted file mode 100644 index f4dde20..0000000 --- a/src/extractors/pdf_to_multi_option_extractor/multi_labels_methods/SetFitEnglishMethod.py +++ /dev/null @@ -1,127 +0,0 @@ -import os -import shutil -from os.path import join, exists -import pandas as pd -import torch -from datasets import load_dataset -from data.ExtractionData import ExtractionData -from data.Option import Option -from setfit import SetFitModel, TrainingArguments, Trainer -from extractors.ExtractorBase import ExtractorBase -from extractors.bert_method_scripts.AvoidAllEvaluation import AvoidAllEvaluation -from extractors.bert_method_scripts.EarlyStoppingAfterInitialTraining import EarlyStoppingAfterInitialTraining -from extractors.bert_method_scripts.get_batch_size import get_batch_size, get_max_steps -from extractors.pdf_to_multi_option_extractor.MultiLabelMethod import MultiLabelMethod -from send_logs import send_logs -import gc - - -class SetFitEnglishMethod(MultiLabelMethod): - model_name = "sentence-transformers/multi-qa-mpnet-base-dot-v1" - - def get_data_path(self): - model_folder_path = self.get_path() - - if not exists(model_folder_path): - os.makedirs(model_folder_path) - - return join(model_folder_path, "data.csv") - - def get_model_path(self): - model_folder_path = self.get_path() - - if not exists(model_folder_path): - os.makedirs(model_folder_path) - - model_path = join(model_folder_path, "setfit_model") - - os.makedirs(model_path, exist_ok=True) - - return str(model_path) - - @staticmethod - def eval_encodings(example): - example["label"] = eval(example["label"]) - return example - - def get_dataset_from_data(self, extraction_data: ExtractionData): - data = list() - texts = [sample.pdf_data.get_text() for sample in extraction_data.samples] - labels = self.get_one_hot_encoding(extraction_data) - - for text, label in zip(texts, labels): - data.append([text, label]) - - df = pd.DataFrame(data) - df.columns = ["text", "label"] - - df.to_csv(self.get_data_path()) - dataset_csv = load_dataset("csv", data_files=self.get_data_path()) - dataset = dataset_csv["train"] - dataset = dataset.map(self.eval_encodings) - - return dataset - - def train(self, extraction_data: ExtractionData): - shutil.rmtree(self.get_model_path(), ignore_errors=True) - train_dataset = self.get_dataset_from_data(extraction_data) - batch_size = get_batch_size(len(extraction_data.samples)) - - model = SetFitModel.from_pretrained( - self.model_name, - labels=[x.label for x in self.options], - multi_target_strategy="one-vs-rest", - trust_remote_code=True, - ) - - args = TrainingArguments( - output_dir=self.get_model_path(), - batch_size=batch_size, - max_steps=get_max_steps(len(extraction_data.samples)), - save_strategy="steps", - eval_steps=200, - save_steps=200, - load_best_model_at_end=True, - ) - - trainer = Trainer( - model=model, - args=args, - train_dataset=train_dataset, - eval_dataset=train_dataset, - metric="f1", - callbacks=[EarlyStoppingAfterInitialTraining(early_stopping_patience=3), AvoidAllEvaluation()], - ) - - trainer.train() - - trainer.model.save_pretrained(self.get_model_path()) - - del model - del trainer - gc.collect() - torch.cuda.empty_cache() - - def predict(self, multi_option_data: ExtractionData) -> list[list[Option]]: - model = SetFitModel.from_pretrained(self.get_model_path(), trust_remote_code=True) - predict_texts = [sample.pdf_data.get_text() for sample in multi_option_data.samples] - predictions = model.predict(predict_texts) - - del model - gc.collect() - torch.cuda.empty_cache() - - return self.predictions_to_options_list(predictions.tolist()) - - def can_be_used(self, extraction_data: ExtractionData) -> bool: - if not torch.cuda.is_available(): - send_logs(self.extraction_identifier, f"GPU not available for {self.get_name()}") - return False - - if not extraction_data.multi_value: - return False - - if ExtractorBase.is_multilingual(extraction_data): - return False - - return True diff --git a/src/extractors/pdf_to_multi_option_extractor/multi_labels_methods/SetFitMultilingualMethod.py b/src/extractors/pdf_to_multi_option_extractor/multi_labels_methods/SetFitMultilingualMethod.py deleted file mode 100644 index 4efa74b..0000000 --- a/src/extractors/pdf_to_multi_option_extractor/multi_labels_methods/SetFitMultilingualMethod.py +++ /dev/null @@ -1,16 +0,0 @@ -from data.ExtractionData import ExtractionData -from extractors.ExtractorBase import ExtractorBase -from extractors.pdf_to_multi_option_extractor.multi_labels_methods.SetFitEnglishMethod import SetFitEnglishMethod - - -class SetFitMultilingualMethod(SetFitEnglishMethod): - model_name = "Alibaba-NLP/gte-multilingual-reranker-base" - - def can_be_used(self, extraction_data: ExtractionData) -> bool: - if not extraction_data.multi_value: - return False - - if ExtractorBase.is_multilingual(extraction_data): - return True - - return False diff --git a/src/extractors/pdf_to_multi_option_extractor/multi_labels_methods/SingleLabelBert.py b/src/extractors/pdf_to_multi_option_extractor/multi_labels_methods/SingleLabelBert.py deleted file mode 100644 index 27c5161..0000000 --- a/src/extractors/pdf_to_multi_option_extractor/multi_labels_methods/SingleLabelBert.py +++ /dev/null @@ -1,179 +0,0 @@ -import os -import shutil -from math import exp -from os.path import join, exists -import evaluate -import numpy as np -import pandas as pd -from transformers import ( - TrainingArguments, - Trainer, - AutoTokenizer, - DataCollatorWithPadding, - AutoModelForSequenceClassification, -) -from data.Option import Option -from extractors.bert_method_scripts.AvoidAllEvaluation import AvoidAllEvaluation -from extractors.bert_method_scripts.get_batch_size import get_max_steps, get_batch_size -from extractors.pdf_to_multi_option_extractor.MultiLabelMethod import MultiLabelMethod -from data.ExtractionData import ExtractionData -from data.TrainingSample import TrainingSample -from extractors.bert_method_scripts.EarlyStoppingAfterInitialTraining import ( - EarlyStoppingAfterInitialTraining, -) - -MODEL_NAME = "google-bert/bert-base-uncased" - -clf_metrics = evaluate.combine(["accuracy"]) -tokenizer = AutoTokenizer.from_pretrained(MODEL_NAME) - - -class SingleLabelBert(MultiLabelMethod): - def can_be_used(self, extraction_data: ExtractionData) -> bool: - return not extraction_data.multi_value - - def get_data_path(self, name): - model_folder_path = self.get_path() - - if not exists(model_folder_path): - os.makedirs(model_folder_path) - - return join(model_folder_path, f"{name}.csv") - - def get_model_path(self): - model_folder_path = self.get_path() - - if not exists(model_folder_path): - os.makedirs(model_folder_path) - - model_path = join(model_folder_path, "model") - - os.makedirs(model_path, exist_ok=True) - - return str(model_path) - - def create_dataset(self, multi_option_data: ExtractionData, name: str): - texts, labels = self.get_texts_labels(multi_option_data) - - rows = list() - - for text, label in zip(texts, labels): - rows.append([text, label]) - - output_df = pd.DataFrame(rows) - output_df.columns = ["text", "labels"] - - if name != "predict": - output_df = output_df.sample(frac=1, random_state=22).reset_index(drop=True) - - output_df.to_csv(self.get_data_path(name)) - return self.get_data_path(name) - - @staticmethod - def compute_metrics(eval_pred): - logits, labels = eval_pred - probabilities = 1 / (1 + np.exp(-logits)) - predictions_list = [np.argmax(x) if x[np.argmax(x)] >= 0.5 else -1 for x in probabilities] - return clf_metrics.compute(predictions=predictions_list, references=labels) - - def preprocess_function(self, multi_option_sample: TrainingSample): - text = multi_option_sample.get_text() - if multi_option_sample.labeled_data.values: - labels = self.options.index(multi_option_sample.labeled_data.values[0]) - else: - labels = -1 - - example = tokenizer(text, padding="max_length", truncation="only_first", max_length=self.get_token_length()) - example["labels"] = labels - return example - - def train(self, multi_option_data: ExtractionData): - shutil.rmtree(self.get_model_path(), ignore_errors=True) - - self.create_dataset(multi_option_data, "train") - - examples = [self.preprocess_function(x) for x in multi_option_data.samples] - data_collator = DataCollatorWithPadding(tokenizer=tokenizer) - - id2class = {index: label for index, label in enumerate([x.label for x in self.options])} - class2id = {label: index for index, label in enumerate([x.label for x in self.options])} - - model = AutoModelForSequenceClassification.from_pretrained( - MODEL_NAME, - num_labels=len(self.options), - id2label=id2class, - label2id=class2id, - problem_type="single_label_classification", - ) - - training_args = TrainingArguments( - output_dir=self.get_model_path(), - learning_rate=2e-5, - per_device_train_batch_size=get_batch_size(multi_option_data), - per_device_eval_batch_size=get_batch_size(multi_option_data), - max_steps=get_max_steps(multi_option_data), - weight_decay=0.01, - eval_steps=200, - save_steps=200, - save_strategy="steps", - evaluation_strategy="steps", - load_best_model_at_end=True, - fp16=False, - bf16=False, - ) - - trainer = Trainer( - model=model, - args=training_args, - train_dataset=examples, - eval_dataset=examples, - tokenizer=tokenizer, - data_collator=data_collator, - compute_metrics=self.compute_metrics, - callbacks=[EarlyStoppingAfterInitialTraining(early_stopping_patience=3), AvoidAllEvaluation()], - ) - - trainer.train() - - trainer.save_model(self.get_model_path()) - - @staticmethod - def logit_to_probabilities(logits): - odds = [1 / (1 + exp(-logit)) for logit in logits] - return odds - - def predict(self, multi_option_data: ExtractionData) -> list[list[Option]]: - id2class = {index: label for index, label in enumerate([x.label for x in self.options])} - class2id = {label: index for index, label in enumerate([x.label for x in self.options])} - - self.create_dataset(multi_option_data, "predict") - - model = AutoModelForSequenceClassification.from_pretrained( - self.get_model_path(), - num_labels=len(self.options), - id2label=id2class, - label2id=class2id, - problem_type="multi_label_classification", - ) - - model.eval() - - inputs = tokenizer( - [x.pdf_data.get_text() for x in multi_option_data.samples], - return_tensors="pt", - padding="max_length", - truncation="only_first", - max_length=self.get_token_length(), - ) - output = model(inputs["input_ids"], attention_mask=inputs["attention_mask"]) - - return self.predictions_to_options_list([self.logit_to_probabilities(logit) for logit in output.logits]) - - def get_token_length(self): - data = pd.read_csv(self.get_data_path("train")) - max_length = 0 - for index, row in data.iterrows(): - length = len(tokenizer(row["text"]).data["input_ids"]) - max_length = max(length, max_length) - - return max_length diff --git a/src/extractors/pdf_to_multi_option_extractor/multi_labels_methods/SingleLabelSetFitEnglishMethod.py b/src/extractors/pdf_to_multi_option_extractor/multi_labels_methods/SingleLabelSetFitEnglishMethod.py deleted file mode 100644 index 5bc5f2a..0000000 --- a/src/extractors/pdf_to_multi_option_extractor/multi_labels_methods/SingleLabelSetFitEnglishMethod.py +++ /dev/null @@ -1,133 +0,0 @@ -import gc -import os -import shutil -from os.path import join, exists - -import pandas as pd -import torch.cuda -from datasets import load_dataset - -from data.ExtractionData import ExtractionData -from data.Option import Option -from setfit import SetFitModel, TrainingArguments, Trainer - -from extractors.ExtractorBase import ExtractorBase -from extractors.bert_method_scripts.AvoidAllEvaluation import AvoidAllEvaluation -from extractors.bert_method_scripts.EarlyStoppingAfterInitialTraining import EarlyStoppingAfterInitialTraining -from extractors.bert_method_scripts.get_batch_size import get_batch_size, get_max_steps -from extractors.pdf_to_multi_option_extractor.MultiLabelMethod import MultiLabelMethod -from send_logs import send_logs - - -class SingleLabelSetFitEnglishMethod(MultiLabelMethod): - - model_name = "sentence-transformers/multi-qa-mpnet-base-dot-v1" - - def can_be_used(self, extraction_data: ExtractionData) -> bool: - if not torch.cuda.is_available(): - send_logs(self.extraction_identifier, f"GPU not available for {self.get_name()}") - return False - - if extraction_data.multi_value: - return False - - if ExtractorBase.is_multilingual(extraction_data): - return False - - return True - - def get_data_path(self): - model_folder_path = self.get_path() - - if not exists(model_folder_path): - os.makedirs(model_folder_path) - - return join(model_folder_path, "data.csv") - - def get_model_path(self): - model_folder_path = self.get_path() - - if not exists(model_folder_path): - os.makedirs(model_folder_path) - - model_path = join(model_folder_path, "setfit_model") - - os.makedirs(model_path, exist_ok=True) - - return str(model_path) - - @staticmethod - def eval_encodings(example): - example["label"] = eval(example["label"]) - return example - - def get_dataset_from_data(self, extraction_data: ExtractionData): - data = list() - texts = [sample.pdf_data.get_text() for sample in extraction_data.samples] - labels = list() - - for sample in extraction_data.samples: - labels.append("no_label") - if sample.labeled_data.values: - options = [option for option in self.options if option.id == sample.labeled_data.values[0].id] - if options: - labels[-1] = options[0].label - - for text, label in zip(texts, labels): - data.append([text, label]) - - df = pd.DataFrame(data) - df.columns = ["text", "label"] - - df.to_csv(self.get_data_path()) - dataset_csv = load_dataset("csv", data_files=self.get_data_path()) - dataset = dataset_csv["train"] - - return dataset - - def train(self, extraction_data: ExtractionData): - shutil.rmtree(self.get_model_path(), ignore_errors=True) - train_dataset = self.get_dataset_from_data(extraction_data) - batch_size = get_batch_size(len(extraction_data.samples)) - - model = SetFitModel.from_pretrained(self.model_name, labels=[x.label for x in self.options], trust_remote_code=True) - - args = TrainingArguments( - output_dir=self.get_model_path(), - batch_size=batch_size, - max_steps=get_max_steps(len(extraction_data.samples)), - evaluation_strategy="steps", - save_strategy="steps", - eval_steps=200, - save_steps=200, - load_best_model_at_end=True, - ) - - trainer = Trainer( - model=model, - args=args, - train_dataset=train_dataset, - eval_dataset=train_dataset, - metric="accuracy", - callbacks=[EarlyStoppingAfterInitialTraining(early_stopping_patience=3), AvoidAllEvaluation()], - ) - - trainer.train() - - trainer.model.save_pretrained(self.get_model_path()) - - del model - del trainer - gc.collect() - torch.cuda.empty_cache() - - def predict(self, multi_option_data: ExtractionData) -> list[list[Option]]: - model = SetFitModel.from_pretrained(self.get_model_path(), trust_remote_code=True) - predict_texts = [sample.pdf_data.get_text() for sample in multi_option_data.samples] - predictions = model.predict(predict_texts) - - del model - gc.collect() - torch.cuda.empty_cache() - - return [[option for option in self.options if option.label == prediction] for prediction in predictions] diff --git a/src/extractors/pdf_to_multi_option_extractor/multi_labels_methods/SingleLabelSetFitMultilingualMethod.py b/src/extractors/pdf_to_multi_option_extractor/multi_labels_methods/SingleLabelSetFitMultilingualMethod.py deleted file mode 100644 index ddf766d..0000000 --- a/src/extractors/pdf_to_multi_option_extractor/multi_labels_methods/SingleLabelSetFitMultilingualMethod.py +++ /dev/null @@ -1,18 +0,0 @@ -from data.ExtractionData import ExtractionData -from extractors.ExtractorBase import ExtractorBase -from extractors.pdf_to_multi_option_extractor.multi_labels_methods.SingleLabelSetFitEnglishMethod import ( - SingleLabelSetFitEnglishMethod, -) - - -class SingleLabelSetFitMultilingualMethod(SingleLabelSetFitEnglishMethod): - model_name = "Alibaba-NLP/gte-multilingual-reranker-base" - - def can_be_used(self, extraction_data: ExtractionData) -> bool: - if extraction_data.multi_value: - return False - - if ExtractorBase.is_multilingual(extraction_data): - return True - - return False diff --git a/src/extractors/pdf_to_multi_option_extractor/multi_labels_methods/TfIdfMethod.py b/src/extractors/pdf_to_multi_option_extractor/multi_labels_methods/TfIdfMethod.py deleted file mode 100644 index b1a54cd..0000000 --- a/src/extractors/pdf_to_multi_option_extractor/multi_labels_methods/TfIdfMethod.py +++ /dev/null @@ -1,72 +0,0 @@ -import os -from functools import lru_cache -from os.path import join, exists -from sklearn.ensemble import RandomForestClassifier -from sklearn.multiclass import OneVsRestClassifier -from joblib import dump, load -from nltk.corpus import stopwords -from nltk.stem import WordNetLemmatizer -import nltk -from sklearn.feature_extraction.text import TfidfVectorizer - -from data.Option import Option -from extractors.pdf_to_multi_option_extractor.MultiLabelMethod import MultiLabelMethod -from data.ExtractionData import ExtractionData - -nltk.download("wordnet") -nltk.download("stopwords") - -lemmatizer = WordNetLemmatizer() -stop_words = stopwords.words("english") -stop_words_set = set(stop_words) - -lemmatize = lru_cache(maxsize=50000)(lemmatizer.lemmatize) - - -class TfIdfMethod(MultiLabelMethod): - - def can_be_used(self, extraction_data: ExtractionData) -> bool: - return True - - def get_data_path(self): - model_folder_path = self.get_path() - - if not exists(model_folder_path): - os.makedirs(model_folder_path) - - return join(model_folder_path, "data.txt") - - def get_model_path(self): - model_folder_path = self.get_path() - - if not exists(model_folder_path): - os.makedirs(model_folder_path) - - return join(model_folder_path, "fast.model") - - def train(self, multi_option_data: ExtractionData): - texts = [sample.pdf_data.get_text() for sample in multi_option_data.samples] - dump(texts, self.get_data_path()) - - vectorized = TfidfVectorizer() - tfidf_train_vectors = vectorized.fit_transform(texts) - - labels = self.get_one_hot_encoding(multi_option_data) - one_vs_rest_classifier = OneVsRestClassifier(RandomForestClassifier()) - one_vs_rest_classifier = one_vs_rest_classifier.fit(tfidf_train_vectors, labels) - dump(one_vs_rest_classifier, self.get_model_path()) - - def predict(self, multi_option_data: ExtractionData) -> list[list[Option]]: - train_texts = load(self.get_data_path()) - - vectorized = TfidfVectorizer() - vectorized.fit_transform(train_texts) - - predict_texts = [sample.pdf_data.get_text() for sample in multi_option_data.samples] - - tfidf_predict_vectors = vectorized.transform(predict_texts) - - classifier = load(self.get_model_path()) - predictions_text = classifier.predict(tfidf_predict_vectors) - predictions = [prediction for prediction in predictions_text.tolist()] - return self.predictions_to_options_list(predictions) diff --git a/src/extractors/pdf_to_multi_option_extractor/multi_labels_methods/tests/test_can_be_used.py b/src/extractors/pdf_to_multi_option_extractor/multi_labels_methods/tests/test_can_be_used.py deleted file mode 100644 index 2ffbae2..0000000 --- a/src/extractors/pdf_to_multi_option_extractor/multi_labels_methods/tests/test_can_be_used.py +++ /dev/null @@ -1,122 +0,0 @@ -from unittest import TestCase - -import torch - -from data.ExtractionData import ExtractionData -from data.ExtractionIdentifier import ExtractionIdentifier -from data.LabeledData import LabeledData -from data.Option import Option -from data.PdfData import PdfData -from data.TrainingSample import TrainingSample -from extractors.pdf_to_multi_option_extractor.multi_labels_methods.SetFitEnglishMethod import SetFitEnglishMethod -from extractors.pdf_to_multi_option_extractor.multi_labels_methods.SetFitMultilingualMethod import SetFitMultilingualMethod -from extractors.pdf_to_multi_option_extractor.multi_labels_methods.SingleLabelSetFitEnglishMethod import ( - SingleLabelSetFitEnglishMethod, -) -from extractors.pdf_to_multi_option_extractor.multi_labels_methods.SingleLabelSetFitMultilingualMethod import ( - SingleLabelSetFitMultilingualMethod, -) - - -class TestSetFitEnglishMethod(TestCase): - TENANT = "multi_option_extraction_test" - extraction_id = "extraction_id" - - def setUp(self): - self.extraction_identifier = ExtractionIdentifier(run_name=self.TENANT, extraction_name=self.extraction_id) - self.options = [ - Option(id="1", label="1"), - Option(id="2", label="2"), - Option(id="3", label="3"), - Option(id="4", label="4"), - Option(id="5", label="5"), - Option(id="6", label="6"), - Option(id="7", label="7"), - Option(id="8", label="8"), - ] - - pdf_data_1 = PdfData.from_texts(["point 1"]) - pdf_data_2 = PdfData.from_texts(["point 2 point 3"]) - pdf_data_3 = PdfData.from_texts(["point 3 point 4"]) - pdf_data_4 = PdfData.from_texts(["point 4"]) - pdf_data_5 = PdfData.from_texts(["point 5 point 1"]) - pdf_data_6 = PdfData.from_texts(["point 6"]) - pdf_data_7 = PdfData.from_texts(["point 7 point 6"]) - pdf_data_8 = PdfData.from_texts(["point 8"]) - - samples = [ - TrainingSample(pdf_data_1, LabeledData(values=[self.options[0]], language_iso="en")), - TrainingSample(pdf_data_2, LabeledData(values=[self.options[1], self.options[2]], language_iso="es")), - TrainingSample(pdf_data_3, LabeledData(values=[self.options[2], self.options[3]], language_iso="en")), - TrainingSample(pdf_data_4, LabeledData(values=[self.options[3]], language_iso="fr")), - TrainingSample(pdf_data_5, LabeledData(values=[self.options[4], self.options[0]], language_iso="en")), - TrainingSample(pdf_data_6, LabeledData(values=[self.options[5]], language_iso="en")), - TrainingSample(pdf_data_7, LabeledData(values=[self.options[6], self.options[5]], language_iso="ru")), - TrainingSample(pdf_data_8, LabeledData(values=[self.options[7]], language_iso="ru")), - ] - - self.extraction_data_english_multi = ExtractionData( - multi_value=True, - options=self.options, - samples=[samples[2], samples[4]], - extraction_identifier=self.extraction_identifier, - ) - - self.extraction_data_english_single = ExtractionData( - multi_value=False, - options=self.options, - samples=[samples[0], samples[5]], - extraction_identifier=self.extraction_identifier, - ) - - self.extraction_data_non_english_multi = ExtractionData( - multi_value=True, - options=self.options, - samples=[samples[1], samples[6]], - extraction_identifier=self.extraction_identifier, - ) - - self.extraction_data_non_english_single = ExtractionData( - multi_value=False, - options=self.options, - samples=[samples[3], samples[7]], - extraction_identifier=self.extraction_identifier, - ) - - def test_can_be_used_english_single_label(self): - if not torch.cuda.is_available(): - return - setfit_single_english_method = SingleLabelSetFitEnglishMethod(self.extraction_identifier, self.options, False) - self.assertFalse(setfit_single_english_method.can_be_used(self.extraction_data_english_multi)) - self.assertTrue(setfit_single_english_method.can_be_used(self.extraction_data_english_single)) - self.assertFalse(setfit_single_english_method.can_be_used(self.extraction_data_non_english_multi)) - self.assertFalse(setfit_single_english_method.can_be_used(self.extraction_data_non_english_single)) - - def test_can_be_used_english_multi_label(self): - if not torch.cuda.is_available(): - return - setfit_english_method = SetFitEnglishMethod(self.extraction_identifier, self.options, True) - self.assertTrue(setfit_english_method.can_be_used(self.extraction_data_english_multi)) - self.assertFalse(setfit_english_method.can_be_used(self.extraction_data_english_single)) - self.assertFalse(setfit_english_method.can_be_used(self.extraction_data_non_english_multi)) - self.assertFalse(setfit_english_method.can_be_used(self.extraction_data_non_english_single)) - - def test_can_be_used_non_english_single_label(self): - if not torch.cuda.is_available(): - return - setfit_single_multilingual_method = SingleLabelSetFitMultilingualMethod( - self.extraction_identifier, self.options, False - ) - self.assertFalse(setfit_single_multilingual_method.can_be_used(self.extraction_data_english_multi)) - self.assertFalse(setfit_single_multilingual_method.can_be_used(self.extraction_data_english_single)) - self.assertFalse(setfit_single_multilingual_method.can_be_used(self.extraction_data_non_english_multi)) - self.assertTrue(setfit_single_multilingual_method.can_be_used(self.extraction_data_non_english_single)) - - def test_can_be_used_non_english_multi_label(self): - if not torch.cuda.is_available(): - return - setfit_multilingual_method = SetFitMultilingualMethod(self.extraction_identifier, self.options, True) - self.assertFalse(setfit_multilingual_method.can_be_used(self.extraction_data_english_multi)) - self.assertFalse(setfit_multilingual_method.can_be_used(self.extraction_data_english_single)) - self.assertTrue(setfit_multilingual_method.can_be_used(self.extraction_data_non_english_multi)) - self.assertFalse(setfit_multilingual_method.can_be_used(self.extraction_data_non_english_single)) diff --git a/src/extractors/pdf_to_multi_option_extractor/multi_labels_methods/tests/test_setfit_english.py b/src/extractors/pdf_to_multi_option_extractor/multi_labels_methods/tests/test_setfit_english.py deleted file mode 100644 index eb23f7f..0000000 --- a/src/extractors/pdf_to_multi_option_extractor/multi_labels_methods/tests/test_setfit_english.py +++ /dev/null @@ -1,74 +0,0 @@ -from unittest import TestCase - -import torch - -from data.ExtractionData import ExtractionData -from data.ExtractionIdentifier import ExtractionIdentifier -from data.LabeledData import LabeledData -from data.Option import Option -from data.PdfData import PdfData -from data.TrainingSample import TrainingSample -from extractors.pdf_to_multi_option_extractor.multi_labels_methods.SetFitEnglishMethod import SetFitEnglishMethod - - -class TestSetFitEnglishMethod(TestCase): - TENANT = "multi_option_extraction_test" - extraction_id = "extraction_id" - - def test_train_and_predict(self): - if not torch.cuda.is_available(): - return - extraction_identifier = ExtractionIdentifier(run_name=self.TENANT, extraction_name=self.extraction_id) - options = [ - Option(id="1", label="1"), - Option(id="2", label="2"), - Option(id="3", label="3"), - Option(id="4", label="4"), - Option(id="5", label="5"), - ] - - pdf_data_1 = PdfData.from_texts(["point 1"]) - pdf_data_2 = PdfData.from_texts(["point 2 point 3"]) - pdf_data_3 = PdfData.from_texts(["point 3"]) - pdf_data_4 = PdfData.from_texts(["point 4 point 1"]) - pdf_data_5 = PdfData.from_texts(["point 5"]) - - samples = [ - TrainingSample(pdf_data_1, LabeledData(values=[options[0]])), - TrainingSample(pdf_data_2, LabeledData(values=[options[1], options[2]])), - TrainingSample(pdf_data_3, LabeledData(values=[options[2]])), - TrainingSample(pdf_data_4, LabeledData(values=[options[3], options[0]])), - TrainingSample(pdf_data_5, LabeledData(values=[options[4]])), - ] - - samples = samples * 2 - - extraction_data = ExtractionData( - multi_value=True, options=options, samples=samples, extraction_identifier=extraction_identifier - ) - setfit_english_method = SetFitEnglishMethod(extraction_identifier, options, True) - - try: - setfit_english_method.train(extraction_data) - except Exception as e: - self.fail(f"train() raised {type(e).__name__}") - - prediction_sample_1 = TrainingSample(pdf_data=pdf_data_1) - prediction_sample_2 = TrainingSample(pdf_data=pdf_data_2) - prediction_sample_4 = TrainingSample(pdf_data=pdf_data_4) - prediction_samples = [prediction_sample_1, prediction_sample_2, prediction_sample_4] - - prediction_data = ExtractionData( - multi_value=True, options=options, samples=prediction_samples, extraction_identifier=extraction_identifier - ) - predictions = setfit_english_method.predict(prediction_data) - - self.assertEqual(3, len(predictions)) - self.assertIn(Option(id="1", label="1"), predictions[0]) - self.assertIn(Option(id="2", label="2"), predictions[1]) - self.assertIn(Option(id="3", label="3"), predictions[1]) - self.assertIn(Option(id="4", label="4"), predictions[2]) - self.assertIn(Option(id="1", label="1"), predictions[2]) - self.assertNotIn(Option(id="5", label="5"), predictions[0]) - self.assertNotIn(Option(id="4", label="4"), predictions[1]) - self.assertNotIn(Option(id="3", label="3"), predictions[2]) diff --git a/src/extractors/pdf_to_multi_option_extractor/multi_labels_methods/tests/test_setfit_multilingual.py b/src/extractors/pdf_to_multi_option_extractor/multi_labels_methods/tests/test_setfit_multilingual.py deleted file mode 100644 index 554fbb4..0000000 --- a/src/extractors/pdf_to_multi_option_extractor/multi_labels_methods/tests/test_setfit_multilingual.py +++ /dev/null @@ -1,74 +0,0 @@ -from unittest import TestCase - -import torch - -from data.ExtractionData import ExtractionData -from data.ExtractionIdentifier import ExtractionIdentifier -from data.LabeledData import LabeledData -from data.Option import Option -from data.PdfData import PdfData -from data.TrainingSample import TrainingSample -from extractors.pdf_to_multi_option_extractor.multi_labels_methods.SetFitMultilingualMethod import SetFitMultilingualMethod - - -class TestSetFitMultilingualMethod(TestCase): - TENANT = "setfit_multilingual_test" - extraction_id = "extraction_id" - - def test_train_and_predict(self): - if not torch.cuda.is_available(): - return - extraction_identifier = ExtractionIdentifier(run_name=self.TENANT, extraction_name=self.extraction_id) - options = [ - Option(id="1", label="1"), - Option(id="2", label="2"), - Option(id="3", label="3"), - Option(id="4", label="4"), - Option(id="5", label="5"), - ] - - pdf_data_1 = PdfData.from_texts(["point 1"]) - pdf_data_2 = PdfData.from_texts(["point 2 point 3"]) - pdf_data_3 = PdfData.from_texts(["point 3"]) - pdf_data_4 = PdfData.from_texts(["point 4 point 1"]) - pdf_data_5 = PdfData.from_texts(["point 5"]) - - samples = [ - TrainingSample(pdf_data_1, LabeledData(values=[options[0]])), - TrainingSample(pdf_data_2, LabeledData(values=[options[1], options[2]])), - TrainingSample(pdf_data_3, LabeledData(values=[options[2]])), - TrainingSample(pdf_data_4, LabeledData(values=[options[3], options[0]])), - TrainingSample(pdf_data_5, LabeledData(values=[options[4]])), - ] - - extraction_data = ExtractionData( - multi_value=True, options=options, samples=samples, extraction_identifier=extraction_identifier - ) - setfit_multilingual_method = SetFitMultilingualMethod(extraction_identifier, options, True) - - try: - setfit_multilingual_method.train(extraction_data) - except Exception as e: - self.fail(f"train() raised {type(e).__name__}") - - prediction_sample_1 = TrainingSample(pdf_data=pdf_data_1) - prediction_sample_2 = TrainingSample(pdf_data=pdf_data_2) - prediction_sample_4 = TrainingSample(pdf_data=pdf_data_4) - prediction_samples = [prediction_sample_1, prediction_sample_2, prediction_sample_4] - - prediction_data = ExtractionData( - multi_value=True, options=options, samples=prediction_samples, extraction_identifier=extraction_identifier - ) - predictions = setfit_multilingual_method.predict(prediction_data) - - self.assertEqual(3, len(predictions)) - self.assertIn(Option(id="1", label="1"), predictions[0]) - self.assertNotIn(Option(id="5", label="5"), predictions[0]) - - self.assertIn(Option(id="2", label="2"), predictions[1]) - self.assertIn(Option(id="3", label="3"), predictions[1]) - self.assertNotIn(Option(id="4", label="4"), predictions[1]) - - self.assertIn(Option(id="4", label="4"), predictions[2]) - self.assertIn(Option(id="1", label="1"), predictions[2]) - self.assertNotIn(Option(id="3", label="3"), predictions[2]) diff --git a/src/extractors/pdf_to_multi_option_extractor/multi_labels_methods/tests/test_single_label_setfit_english.py b/src/extractors/pdf_to_multi_option_extractor/multi_labels_methods/tests/test_single_label_setfit_english.py deleted file mode 100644 index 9f91906..0000000 --- a/src/extractors/pdf_to_multi_option_extractor/multi_labels_methods/tests/test_single_label_setfit_english.py +++ /dev/null @@ -1,60 +0,0 @@ -from unittest import TestCase - -import torch - -from data.ExtractionData import ExtractionData -from data.ExtractionIdentifier import ExtractionIdentifier -from data.LabeledData import LabeledData -from data.Option import Option -from data.PdfData import PdfData -from data.TrainingSample import TrainingSample -from extractors.pdf_to_multi_option_extractor.multi_labels_methods.SingleLabelSetFitEnglishMethod import ( - SingleLabelSetFitEnglishMethod, -) - - -class TestSetFitSingleLabelEnglishMethod(TestCase): - TENANT = "multi_option_extraction_test" - extraction_id = "extraction_id" - - def test_train_and_predict(self): - if not torch.cuda.is_available(): - return - extraction_identifier = ExtractionIdentifier(run_name=self.TENANT, extraction_name=self.extraction_id) - options = [Option(id="0", label="0"), Option(id="1", label="1"), Option(id="2", label="2")] - - pdf_data_1 = PdfData.from_texts(["point 1"]) - pdf_data_2 = PdfData.from_texts(["point 2"]) - pdf_data_3 = PdfData.from_texts(["point 3"]) - - samples = [ - TrainingSample(pdf_data_1, LabeledData(values=[options[0]])), - TrainingSample(pdf_data_2, LabeledData(values=[options[1]])), - TrainingSample(pdf_data_3, LabeledData(values=[options[2]])), - ] - - extraction_data = ExtractionData( - multi_value=False, options=options, samples=samples, extraction_identifier=extraction_identifier - ) - setfit_english_method = SingleLabelSetFitEnglishMethod(extraction_identifier, options, False) - - try: - setfit_english_method.train(extraction_data) - except Exception as e: - self.fail(f"train() raised {type(e).__name__}") - - prediction_sample_1 = TrainingSample(pdf_data=pdf_data_1) - prediction_sample_2 = TrainingSample(pdf_data=pdf_data_2) - prediction_sample_3 = TrainingSample(pdf_data=pdf_data_3) - prediction_samples = [prediction_sample_1, prediction_sample_2, prediction_sample_3] - - prediction_data = ExtractionData( - multi_value=False, options=options, samples=prediction_samples, extraction_identifier=extraction_identifier - ) - predictions = setfit_english_method.predict(prediction_data) - - self.assertEqual(3, len(predictions)) - self.assertIn(Option(id="0", label="0"), predictions[0]) - self.assertIn(Option(id="1", label="1"), predictions[1]) - self.assertNotIn(Option(id="5", label="5"), predictions[0]) - self.assertNotIn(Option(id="4", label="4"), predictions[1]) diff --git a/src/extractors/pdf_to_multi_option_extractor/multi_labels_methods/tests/test_single_label_setfit_multilingual.py b/src/extractors/pdf_to_multi_option_extractor/multi_labels_methods/tests/test_single_label_setfit_multilingual.py deleted file mode 100644 index aa8f315..0000000 --- a/src/extractors/pdf_to_multi_option_extractor/multi_labels_methods/tests/test_single_label_setfit_multilingual.py +++ /dev/null @@ -1,60 +0,0 @@ -from unittest import TestCase - -import torch - -from data.ExtractionData import ExtractionData -from data.ExtractionIdentifier import ExtractionIdentifier -from data.LabeledData import LabeledData -from data.Option import Option -from data.PdfData import PdfData -from data.TrainingSample import TrainingSample -from extractors.pdf_to_multi_option_extractor.multi_labels_methods.SingleLabelSetFitMultilingualMethod import ( - SingleLabelSetFitMultilingualMethod, -) - - -class TestSetFitSingleLabelMultilingualMethod(TestCase): - TENANT = "single_label_setfit_multilingual_test" - extraction_id = "extraction_id" - - def test_train_and_predict(self): - if not torch.cuda.is_available(): - return - extraction_identifier = ExtractionIdentifier(run_name=self.TENANT, extraction_name=self.extraction_id) - options = [Option(id="0", label="0"), Option(id="1", label="1"), Option(id="2", label="2")] - - pdf_data_1 = PdfData.from_texts(["point 1"]) - pdf_data_2 = PdfData.from_texts(["point 2"]) - pdf_data_3 = PdfData.from_texts(["point 3"]) - - samples = [ - TrainingSample(pdf_data_1, LabeledData(values=[options[0]])), - TrainingSample(pdf_data_2, LabeledData(values=[options[1]])), - TrainingSample(pdf_data_3, LabeledData(values=[options[2]])), - ] - - extraction_data = ExtractionData( - multi_value=False, options=options, samples=samples, extraction_identifier=extraction_identifier - ) - setfit_english_method = SingleLabelSetFitMultilingualMethod(extraction_identifier, options, False) - - try: - setfit_english_method.train(extraction_data) - except Exception as e: - self.fail(f"train() raised {type(e).__name__}") - - prediction_sample_1 = TrainingSample(pdf_data=pdf_data_1) - prediction_sample_2 = TrainingSample(pdf_data=pdf_data_2) - prediction_sample_3 = TrainingSample(pdf_data=pdf_data_3) - prediction_samples = [prediction_sample_1, prediction_sample_2, prediction_sample_3] - - prediction_data = ExtractionData( - multi_value=False, options=options, samples=prediction_samples, extraction_identifier=extraction_identifier - ) - predictions = setfit_english_method.predict(prediction_data) - - self.assertEqual(3, len(predictions)) - self.assertIn(Option(id="0", label="0"), predictions[0]) - self.assertIn(Option(id="1", label="1"), predictions[1]) - self.assertNotIn(Option(id="5", label="5"), predictions[0]) - self.assertNotIn(Option(id="4", label="4"), predictions[1]) diff --git a/src/extractors/pdf_to_multi_option_extractor/multi_option_extraction_methods/FastSegmentSelectorFuzzy95.py b/src/extractors/pdf_to_multi_option_extractor/multi_option_extraction_methods/FastSegmentSelectorFuzzy95.py deleted file mode 100644 index 2a92752..0000000 --- a/src/extractors/pdf_to_multi_option_extractor/multi_option_extraction_methods/FastSegmentSelectorFuzzy95.py +++ /dev/null @@ -1,148 +0,0 @@ -import math -import unicodedata -from collections import Counter -from copy import deepcopy - -from pdf_token_type_labels.TokenType import TokenType -from rapidfuzz import fuzz - -from data.Option import Option -from data.PdfData import PdfData -from data.PdfDataSegment import PdfDataSegment -from data.TrainingSample import TrainingSample -from extractors.pdf_to_multi_option_extractor.PdfMultiOptionMethod import PdfMultiOptionMethod -from data.ExtractionData import ExtractionData -from extractors.segment_selector.FastSegmentSelector import FastSegmentSelector -from extractors.pdf_to_multi_option_extractor.multi_option_extraction_methods.FuzzyAll95 import FuzzyAll95 - - -class FastSegmentSelectorFuzzy95(PdfMultiOptionMethod): - threshold = 85 - - text_types = [TokenType.TEXT, TokenType.LIST_ITEM, TokenType.TITLE, TokenType.SECTION_HEADER, TokenType.CAPTION] - - def get_appearances(self, pdf_segment: PdfDataSegment, options: list[str]) -> list[str]: - appearances = [] - - for option in options: - if len(pdf_segment.text_content) < math.ceil(len(option)): - continue - - if fuzz.partial_ratio(option, pdf_segment.text_content.lower()) >= self.threshold: - appearances.append(option) - - return list(dict.fromkeys(appearances)) - - def train(self, multi_option_data: ExtractionData): - self.set_parameters(multi_option_data) - marked_segments = list() - for sample in multi_option_data.samples: - marked_segments.extend(self.get_marked_segments(sample)) - - FastSegmentSelector(self.extraction_identifier, self.get_name()).create_model(marked_segments) - - def predict(self, multi_option_data: ExtractionData) -> list[list[Option]]: - self.set_parameters(multi_option_data) - self.extraction_data = self.get_prediction_data(multi_option_data) - return FuzzyAll95().predict(self.extraction_data) - - def get_prediction_data(self, extraction_data: ExtractionData) -> ExtractionData: - fast_segment_selector = FastSegmentSelector(self.extraction_identifier, self.get_name()) - predict_samples = list() - for sample in extraction_data.samples: - selected_segments = fast_segment_selector.predict(self.fix_two_pages_segments(sample)) - - self.mark_segments_for_context(selected_segments) - - pdf_data = PdfData(None, file_name=sample.pdf_data.file_name) - pdf_data.pdf_data_segments = selected_segments - - training_sample = TrainingSample(pdf_data=pdf_data, labeled_data=sample.labeled_data) - predict_samples.append(training_sample) - - return ExtractionData( - samples=predict_samples, - options=self.extraction_data.options, - multi_value=self.extraction_data.multi_value, - extraction_identifier=self.extraction_identifier, - ) - - @staticmethod - def remove_accents(text: str): - nfkd_form = unicodedata.normalize("NFKD", text) - only_ascii = nfkd_form.encode("ASCII", "ignore") - return only_ascii.decode() - - def get_cleaned_options(self, options: list[Option]) -> list[str]: - options_labels = [self.remove_accents(x.label.lower()) for x in options] - words_counter = Counter() - for option_label in options_labels: - words_counter.update(option_label.split()) - - clean_options = list() - for option_label in options_labels: - clean_options.append(option_label) - for word, count in words_counter.most_common(): - if count == 1: - continue - - if word not in option_label: - continue - - if len(clean_options[-1].replace(word, "").strip()) > 3: - clean_options[-1] = clean_options[-1].replace(word, "").strip() - - return clean_options - - def get_marked_segments(self, training_sample: TrainingSample) -> list[PdfDataSegment]: - cleaned_values = self.get_cleaned_options(training_sample.labeled_data.values) - appearances_threshold = math.ceil(len(cleaned_values) * 0.68) - - if not appearances_threshold: - return training_sample.pdf_data.pdf_data_segments - - fixed_segments = self.fix_two_pages_segments(training_sample) - - for segment in fixed_segments: - appearances = len(self.get_appearances(segment, cleaned_values)) - - if appearances_threshold <= appearances: - segment.ml_label = 1 - - return fixed_segments - - def fix_two_pages_segments(self, training_sample: TrainingSample) -> list[PdfDataSegment]: - text_type_segments = [x for x in training_sample.pdf_data.pdf_data_segments if x.segment_type in self.text_types] - - fixed_segments = list() - merged_segment = None - for segment in training_sample.pdf_data.pdf_data_segments: - if segment == merged_segment: - merged_segment = None - continue - - if not merged_segment: - segment, merged_segment = FastSegmentSelectorFuzzy95.fix_segment(segment, text_type_segments) - - fixed_segments.append(segment) - - return fixed_segments - - @staticmethod - def fix_segment(segment: PdfDataSegment, text_type_segments: list[PdfDataSegment]): - if segment not in text_type_segments or not segment.text_content or segment.text_content[-1] != ",": - return segment, None - - index = text_type_segments.index(segment) - if index + 1 == len(text_type_segments) or segment.page_number >= text_type_segments[index + 1].page_number: - return segment, None - - segment = deepcopy(segment) - segment.text_content += " " + text_type_segments[index + 1].text_content - - return segment, text_type_segments[index + 1] - - @staticmethod - def mark_segments_for_context(segments: list[PdfDataSegment]): - for segment in segments: - segment.ml_label = 1 diff --git a/src/extractors/pdf_to_multi_option_extractor/multi_option_extraction_methods/FastSegmentSelectorFuzzyCommas.py b/src/extractors/pdf_to_multi_option_extractor/multi_option_extraction_methods/FastSegmentSelectorFuzzyCommas.py deleted file mode 100644 index b388add..0000000 --- a/src/extractors/pdf_to_multi_option_extractor/multi_option_extraction_methods/FastSegmentSelectorFuzzyCommas.py +++ /dev/null @@ -1,18 +0,0 @@ -from data.Option import Option -from data.ExtractionData import ExtractionData -from extractors.pdf_to_multi_option_extractor.multi_option_extraction_methods.FastSegmentSelectorFuzzy95 import ( - FastSegmentSelectorFuzzy95, -) -from extractors.pdf_to_multi_option_extractor.multi_option_extraction_methods.FuzzyCommas import FuzzyCommas - - -class FastSegmentSelectorFuzzyCommas(FastSegmentSelectorFuzzy95): - def train(self, multi_option_data: ExtractionData): - self.set_parameters(multi_option_data) - super().train(multi_option_data) - FuzzyCommas().train(multi_option_data) - - def predict(self, multi_option_data: ExtractionData) -> list[list[Option]]: - self.set_parameters(multi_option_data) - self.extraction_data = self.get_prediction_data(multi_option_data) - return FuzzyCommas().predict(self.extraction_data) diff --git a/src/extractors/pdf_to_multi_option_extractor/multi_option_extraction_methods/FuzzyAll100.py b/src/extractors/pdf_to_multi_option_extractor/multi_option_extraction_methods/FuzzyAll100.py deleted file mode 100644 index 461b213..0000000 --- a/src/extractors/pdf_to_multi_option_extractor/multi_option_extraction_methods/FuzzyAll100.py +++ /dev/null @@ -1,45 +0,0 @@ -import math - -from rapidfuzz import fuzz - -from data.Option import Option -from data.PdfDataSegment import PdfDataSegment -from extractors.pdf_to_multi_option_extractor.PdfMultiOptionMethod import PdfMultiOptionMethod - -from data.ExtractionData import ExtractionData - - -class FuzzyAll100(PdfMultiOptionMethod): - - threshold = 100 - - def get_appearances(self, pdf_segments: list[PdfDataSegment], options: list[str]) -> list[str]: - appearances = [] - for pdf_segment in pdf_segments: - text = " ".join(pdf_segment.text_content.lower().split()) - for option in options: - if len(text) < math.ceil(len(option) * self.threshold / 100): - continue - - if fuzz.partial_ratio(option, text) >= self.threshold: - pdf_segment.ml_label = 1 - appearances.append(option) - - if option in text: - text = text.replace(option, "") - - return list(dict.fromkeys(appearances)) - - def predict(self, multi_option_data: ExtractionData) -> list[list[Option]]: - predictions = list() - options_labels = [x.label.lower() for x in multi_option_data.options] - options_labels_sorted = list(sorted(options_labels, key=lambda x: len(x), reverse=True)) - for multi_option_sample in multi_option_data.samples: - pdf_segments: list[PdfDataSegment] = [x for x in multi_option_sample.pdf_data.pdf_data_segments] - predictions_sample = self.get_appearances(pdf_segments, options_labels_sorted) - predictions.append([multi_option_data.options[options_labels.index(x)] for x in predictions_sample]) - - return predictions - - def train(self, multi_option_data: ExtractionData): - pass diff --git a/src/extractors/pdf_to_multi_option_extractor/multi_option_extraction_methods/FuzzyAll75.py b/src/extractors/pdf_to_multi_option_extractor/multi_option_extraction_methods/FuzzyAll75.py deleted file mode 100644 index bc6efb6..0000000 --- a/src/extractors/pdf_to_multi_option_extractor/multi_option_extraction_methods/FuzzyAll75.py +++ /dev/null @@ -1,5 +0,0 @@ -from extractors.pdf_to_multi_option_extractor.multi_option_extraction_methods.FuzzyAll100 import FuzzyAll100 - - -class FuzzyAll75(FuzzyAll100): - threshold = 75 diff --git a/src/extractors/pdf_to_multi_option_extractor/multi_option_extraction_methods/FuzzyAll88.py b/src/extractors/pdf_to_multi_option_extractor/multi_option_extraction_methods/FuzzyAll88.py deleted file mode 100644 index ad03191..0000000 --- a/src/extractors/pdf_to_multi_option_extractor/multi_option_extraction_methods/FuzzyAll88.py +++ /dev/null @@ -1,5 +0,0 @@ -from extractors.pdf_to_multi_option_extractor.multi_option_extraction_methods.FuzzyAll100 import FuzzyAll100 - - -class FuzzyAll88(FuzzyAll100): - threshold = 88 diff --git a/src/extractors/pdf_to_multi_option_extractor/multi_option_extraction_methods/FuzzyAll95.py b/src/extractors/pdf_to_multi_option_extractor/multi_option_extraction_methods/FuzzyAll95.py deleted file mode 100644 index 97297a6..0000000 --- a/src/extractors/pdf_to_multi_option_extractor/multi_option_extraction_methods/FuzzyAll95.py +++ /dev/null @@ -1,5 +0,0 @@ -from extractors.pdf_to_multi_option_extractor.multi_option_extraction_methods.FuzzyAll100 import FuzzyAll100 - - -class FuzzyAll95(FuzzyAll100): - threshold = 95 diff --git a/src/extractors/pdf_to_multi_option_extractor/multi_option_extraction_methods/FuzzyCommas.py b/src/extractors/pdf_to_multi_option_extractor/multi_option_extraction_methods/FuzzyCommas.py deleted file mode 100644 index 2794047..0000000 --- a/src/extractors/pdf_to_multi_option_extractor/multi_option_extraction_methods/FuzzyCommas.py +++ /dev/null @@ -1,147 +0,0 @@ -import json -import os -import re -from os.path import join -from pathlib import Path - -import rapidfuzz -from rapidfuzz import fuzz - -from data.Option import Option -from data.PdfDataSegment import PdfDataSegment -from data.TrainingSample import TrainingSample -from extractors.pdf_to_multi_option_extractor.PdfMultiOptionMethod import PdfMultiOptionMethod - -from data.ExtractionData import ExtractionData - - -class FuzzyCommas(PdfMultiOptionMethod): - threshold = 92 - - def __init__(self): - super().__init__() - self.options_cleaned: list[str] = list() - self.options_cleaned_by_length: list[str] = list() - self.options_cleaned_words_sorted: list[str] = list() - self.options_cleaned_words_sorted_by_length: list[str] = list() - - def get_appearances_for_segments( - self, pdf_segments: list[PdfDataSegment], aliases: dict[str, list[str]] - ) -> tuple[list[str], list[str]]: - appearances = [] - not_found_texts = list() - for pdf_segment in pdf_segments: - text = pdf_segment.text_content - texts_separated_by_comma = self.clean_texts(re.split(",|:| and ", text), False) - for one_piece_text in texts_separated_by_comma: - appearance = self.get_appearances_one_segment(one_piece_text, aliases) - - if appearance: - pdf_segment.ml_label = 1 - appearances.append(appearance) - else: - not_found_texts.append(one_piece_text) - - return appearances, not_found_texts - - def get_appearances_one_segment(self, text: str, aliases: dict[str, list[str]]) -> str: - for option_cleaned in self.options_cleaned_words_sorted_by_length: - if len(text) < len(option_cleaned) * 0.92 or len(text) > len(option_cleaned) * 1.2: - continue - - if fuzz.partial_ratio(option_cleaned, self.clean_text(text, True)) >= self.threshold: - return self.options_cleaned[self.options_cleaned_words_sorted.index(option_cleaned)] - - for option_cleaned in self.options_cleaned_by_length: - if not aliases or option_cleaned not in aliases: - continue - - for alias in aliases[option_cleaned]: - if rapidfuzz.fuzz.ratio(alias, text) > self.threshold: - return option_cleaned - - return "" - - @staticmethod - def clean_text(text: str, sort_words: bool) -> str: - text = text.lower() - text = "".join([letter for letter in text if letter.isalnum() or letter == " "]) - - if sort_words: - text = " ".join(sorted(text.split())) - else: - text = " ".join(text.split()) - - return text - - def clean_texts(self, texts: list[str], sort_words: bool) -> list[str]: - return list([self.clean_text(option, sort_words) for option in texts]) - - def predict(self, multi_option_data: ExtractionData) -> list[list[Option]]: - self.set_parameters(multi_option_data) - self.set_options_variants() - - try: - aliases = json.loads(self.get_aliases_path().read_text()) - if not aliases or not isinstance(aliases, dict): - raise FileNotFoundError - - except FileNotFoundError: - aliases = dict() - - predictions = list() - - for multi_option_sample in multi_option_data.samples: - pdf_segments: list[PdfDataSegment] = [x for x in multi_option_sample.pdf_data.pdf_data_segments] - predictions_sample, _ = self.get_appearances_for_segments(pdf_segments, aliases) - prediction_options = [self.options[self.options_cleaned.index(x)] for x in predictions_sample] - predictions.append(prediction_options) - - return predictions - - def train(self, multi_option_data: ExtractionData): - self.set_parameters(multi_option_data) - self.set_options_variants() - - aliases: dict[str, list[str]] = {option: list() for option in self.options_cleaned} - for sample in multi_option_data.samples: - sample_aliases = self.get_aliases(sample) - for option, sample_alias in sample_aliases.items(): - aliases[option] = list(dict.fromkeys(aliases[option] + [sample_alias])) - - self.get_aliases_path().write_text(json.dumps(aliases)) - - def get_aliases_path(self) -> Path: - path = Path(join(self.extraction_identifier.get_path(), "fuzzy_commas")) - - if not path.exists(): - os.makedirs(path, exist_ok=True) - - return Path(join(path, "aliases.json")) - - def get_aliases(self, sample: TrainingSample) -> dict[str, str]: - segments = [segment for segment in sample.pdf_data.pdf_data_segments if segment.ml_label] - appearances, not_found_texts = self.get_appearances_for_segments(segments, dict()) - values_ids = [option.id for option in sample.labeled_data.values] - values_labels = [option.label for option in self.options if option.id in values_ids] - truth_options = self.clean_texts(values_labels, False) - not_found_options = [option for option in truth_options if option not in appearances] - return self.find_aliases(not_found_options, not_found_texts) - - @staticmethod - def find_aliases(not_found_options: list[str], not_found_texts: list[str]) -> dict[str, str]: - aliases = dict() - cleaned_texts = [" ".join(text.lower().strip().split()) for text in not_found_texts] - - for option in not_found_options: - for text in cleaned_texts: - if rapidfuzz.fuzz.partial_ratio(option, text) > 80: - aliases[option] = text - - return aliases - - def set_options_variants(self): - self.options_cleaned = self.clean_texts(texts=[x.label for x in self.options], sort_words=False) - self.options_cleaned_by_length = sorted(self.options_cleaned, key=lambda x: -len(x)) - self.options_cleaned_words_sorted = self.clean_texts(texts=[x.label for x in self.options], sort_words=True) - self.options_cleaned_words_sorted_by_length = sorted(self.options_cleaned_words_sorted, key=lambda x: -len(x)) diff --git a/src/extractors/pdf_to_multi_option_extractor/multi_option_extraction_methods/FuzzyFirst.py b/src/extractors/pdf_to_multi_option_extractor/multi_option_extraction_methods/FuzzyFirst.py deleted file mode 100644 index 2d97f4c..0000000 --- a/src/extractors/pdf_to_multi_option_extractor/multi_option_extraction_methods/FuzzyFirst.py +++ /dev/null @@ -1,40 +0,0 @@ -import math -from rapidfuzz import fuzz - -from data.Option import Option -from data.PdfDataSegment import PdfDataSegment -from extractors.pdf_to_multi_option_extractor.PdfMultiOptionMethod import PdfMultiOptionMethod - -from data.ExtractionData import ExtractionData - - -class FuzzyFirst(PdfMultiOptionMethod): - @staticmethod - def get_first_appearance(pdf_segments: list[PdfDataSegment], options: list[str]) -> list[str]: - for pdf_segment in pdf_segments: - for ratio_threshold in range(100, 69, -10): - for option in options: - if len(pdf_segment.text_content) < math.ceil(len(option) * ratio_threshold / 100): - continue - if fuzz.partial_ratio(option, pdf_segment.text_content.lower()) >= ratio_threshold: - pdf_segment.ml_label = 1 - return [option] - - return [] - - def predict(self, multi_option_data: ExtractionData) -> list[list[Option]]: - predictions = list() - options_labels = [x.label.lower() for x in multi_option_data.options] - options_labels_sorted = list(sorted(options_labels, key=lambda x: len(x), reverse=True)) - for multi_option_sample in multi_option_data.samples: - pdf_segments: list[PdfDataSegment] = [x for x in multi_option_sample.pdf_data.pdf_data_segments] - prediction = self.get_first_appearance(pdf_segments, options_labels_sorted) - if prediction: - predictions.append([multi_option_data.options[options_labels.index(prediction[0])]]) - else: - predictions.append([]) - - return predictions - - def train(self, multi_option_data: ExtractionData): - pass diff --git a/src/extractors/pdf_to_multi_option_extractor/multi_option_extraction_methods/FuzzyFirstCleanLabel.py b/src/extractors/pdf_to_multi_option_extractor/multi_option_extraction_methods/FuzzyFirstCleanLabel.py deleted file mode 100644 index ea15e72..0000000 --- a/src/extractors/pdf_to_multi_option_extractor/multi_option_extraction_methods/FuzzyFirstCleanLabel.py +++ /dev/null @@ -1,71 +0,0 @@ -import math -import unicodedata -from collections import Counter -from rapidfuzz import fuzz - -from data.Option import Option -from data.PdfDataSegment import PdfDataSegment -from extractors.pdf_to_multi_option_extractor.PdfMultiOptionMethod import PdfMultiOptionMethod - -from data.ExtractionData import ExtractionData - - -class FuzzyFirstCleanLabel(PdfMultiOptionMethod): - - def get_appearance(self, pdf_segments: list[PdfDataSegment], options: list[str]) -> list[str]: - for pdf_segment in pdf_segments: - for ratio_threshold in range(100, 95, -1): - for option in options: - if len(pdf_segment.text_content) < math.ceil(len(option) * ratio_threshold / 100): - continue - text = self.remove_accents(pdf_segment.text_content.lower()) - if fuzz.partial_ratio(option, text) >= ratio_threshold: - pdf_segment.ml_label = 1 - return [option] - - return [] - - def predict(self, multi_option_data: ExtractionData) -> list[list[Option]]: - predictions = list() - clean_options = self.get_cleaned_options(multi_option_data.options) - clean_options_sorted = list(sorted(clean_options, key=lambda x: len(x), reverse=True)) - - for multi_option_sample in multi_option_data.samples: - pdf_segments: list[PdfDataSegment] = [x for x in multi_option_sample.pdf_data.pdf_data_segments] - prediction = self.get_appearance(pdf_segments, clean_options_sorted) - if prediction: - predictions.append([multi_option_data.options[clean_options.index(prediction[0])]]) - else: - predictions.append([]) - - return predictions - - def train(self, multi_option_data: ExtractionData): - pass - - @staticmethod - def remove_accents(text: str): - nfkd_form = unicodedata.normalize("NFKD", text) - only_ascii = nfkd_form.encode("ASCII", "ignore") - return only_ascii.decode() - - def get_cleaned_options(self, options: list[Option]) -> list[str]: - options_labels = [self.remove_accents(x.label.lower()) for x in options] - words_counter = Counter() - for option_label in options_labels: - words_counter.update(option_label.split()) - - clean_options = list() - for option_label in options_labels: - clean_options.append(option_label) - for word, count in words_counter.most_common(): - if count == 1: - continue - - if word not in option_label: - continue - - if len(clean_options[-1].replace(word, "").strip()) > 3: - clean_options[-1] = clean_options[-1].replace(word, "").strip() - - return clean_options diff --git a/src/extractors/pdf_to_multi_option_extractor/multi_option_extraction_methods/FuzzyLast.py b/src/extractors/pdf_to_multi_option_extractor/multi_option_extraction_methods/FuzzyLast.py deleted file mode 100644 index 2e97d41..0000000 --- a/src/extractors/pdf_to_multi_option_extractor/multi_option_extraction_methods/FuzzyLast.py +++ /dev/null @@ -1,40 +0,0 @@ -import math -from rapidfuzz import fuzz - -from data.Option import Option -from data.PdfDataSegment import PdfDataSegment -from extractors.pdf_to_multi_option_extractor.PdfMultiOptionMethod import PdfMultiOptionMethod - -from data.ExtractionData import ExtractionData - - -class FuzzyLast(PdfMultiOptionMethod): - @staticmethod - def get_last_appearance(pdf_segments: list[PdfDataSegment], options: list[str]) -> list[str]: - for pdf_segment in reversed(pdf_segments): - for ratio_threshold in range(100, 69, -10): - for option in options: - if len(pdf_segment.text_content) < math.ceil(len(option) * ratio_threshold / 100): - continue - if fuzz.partial_ratio(option, pdf_segment.text_content.lower()) >= ratio_threshold: - pdf_segment.ml_label = 1 - return [option] - - return [] - - def predict(self, multi_option_data: ExtractionData) -> list[list[Option]]: - predictions = list() - options_labels = [x.label.lower() for x in multi_option_data.options] - options_sorted = list(sorted(options_labels, key=lambda x: len(x), reverse=True)) - for multi_option_sample in multi_option_data.samples: - pdf_segments: list[PdfDataSegment] = [x for x in multi_option_sample.pdf_data.pdf_data_segments] - prediction = self.get_last_appearance(pdf_segments, options_sorted) - if prediction: - predictions.append([multi_option_data.options[options_labels.index(prediction[0])]]) - else: - predictions.append([]) - - return predictions - - def train(self, multi_option_data: ExtractionData): - pass diff --git a/src/extractors/pdf_to_multi_option_extractor/multi_option_extraction_methods/FuzzyLastCleanLabel.py b/src/extractors/pdf_to_multi_option_extractor/multi_option_extraction_methods/FuzzyLastCleanLabel.py deleted file mode 100644 index 4681ac9..0000000 --- a/src/extractors/pdf_to_multi_option_extractor/multi_option_extraction_methods/FuzzyLastCleanLabel.py +++ /dev/null @@ -1,23 +0,0 @@ -import math - -from rapidfuzz import fuzz - -from data.PdfDataSegment import PdfDataSegment -from extractors.pdf_to_multi_option_extractor.multi_option_extraction_methods.FuzzyFirstCleanLabel import ( - FuzzyFirstCleanLabel, -) - - -class FuzzyLastCleanLabel(FuzzyFirstCleanLabel): - def get_appearance(self, pdf_segments: list[PdfDataSegment], options: list[str]) -> list[str]: - for pdf_segment in reversed(pdf_segments): - for ratio_threshold in range(100, 95, -1): - for option in options: - if len(pdf_segment.text_content) < math.ceil(len(option) * ratio_threshold / 100): - continue - text = self.remove_accents(pdf_segment.text_content.lower()) - if fuzz.partial_ratio(option, text) >= ratio_threshold: - pdf_segment.ml_label = 1 - return [option] - - return [] diff --git a/src/extractors/pdf_to_multi_option_extractor/multi_option_extraction_methods/FuzzySegmentSelector.py b/src/extractors/pdf_to_multi_option_extractor/multi_option_extraction_methods/FuzzySegmentSelector.py deleted file mode 100644 index 6d28bbb..0000000 --- a/src/extractors/pdf_to_multi_option_extractor/multi_option_extraction_methods/FuzzySegmentSelector.py +++ /dev/null @@ -1,124 +0,0 @@ -import math -import unicodedata -from collections import Counter - -from rapidfuzz import fuzz - -from data.Option import Option -from data.PdfDataSegment import PdfDataSegment -from data.TrainingSample import TrainingSample -from extractors.pdf_to_multi_option_extractor.PdfMultiOptionMethod import PdfMultiOptionMethod -from data.ExtractionData import ExtractionData -from extractors.segment_selector.SegmentSelector import SegmentSelector - -threshold = 85 - - -class FuzzySegmentSelector(PdfMultiOptionMethod): - @staticmethod - def get_appearances(pdf_segment: PdfDataSegment, options: list[str]) -> list[str]: - appearances = [] - - for option in options: - if len(pdf_segment.text_content) < math.ceil(len(option)): - continue - - if fuzz.partial_ratio(option, pdf_segment.text_content.lower()) >= threshold: - appearances.append(option) - - return list(dict.fromkeys(appearances)) - - def predict(self, multi_option_data: ExtractionData) -> list[list[Option]]: - segment_selector = SegmentSelector(self.extraction_identifier) - segment_selector.set_extraction_segments([sample.pdf_data for sample in multi_option_data.samples]) - - predictions = list() - clean_options = self.get_cleaned_options(multi_option_data.options) - for multi_option_sample in multi_option_data.samples: - pdf_segments: list[PdfDataSegment] = [x for x in multi_option_sample.pdf_data.pdf_data_segments if x.ml_label] - predictions_sample = list() - for segment in pdf_segments: - predictions_sample.extend(self.get_appearances(segment, clean_options)) - - predictions.append([multi_option_data.options[clean_options.index(x)] for x in predictions_sample]) - - return predictions - - @staticmethod - def remove_accents(text: str): - nfkd_form = unicodedata.normalize("NFKD", text) - only_ascii = nfkd_form.encode("ASCII", "ignore") - return only_ascii.decode() - - def get_cleaned_options(self, options: list[Option]) -> list[str]: - options_labels = [self.remove_accents(x.label.lower()) for x in options] - words_counter = Counter() - for option_label in options_labels: - words_counter.update(option_label.split()) - - clean_options = list() - for option_label in options_labels: - clean_options.append(option_label) - for word, count in words_counter.most_common(): - if count == 1: - continue - - if word not in option_label: - continue - - if len(clean_options[-1].replace(word, "").strip()) > 3: - clean_options[-1] = clean_options[-1].replace(word, "").strip() - - return clean_options - - def get_segments_appearances( - self, pdf_data_segments: list[PdfDataSegment], segment_index: int, cleaned_options: list[str] - ) -> (PdfDataSegment, int, PdfDataSegment, int): - segment = pdf_data_segments[segment_index] - next_segment = self.get_next_segment(pdf_data_segments, segment_index) - appearances = len(self.get_appearances(segment, cleaned_options)) - - if next_segment: - next_segment_appearances = len(self.get_appearances(next_segment, cleaned_options)) - else: - next_segment_appearances = 0 - - return appearances, next_segment, next_segment_appearances - - def train(self, multi_option_data: ExtractionData): - self.set_parameters(multi_option_data) - for multi_option_sample in multi_option_data.samples: - self.mark_segments_for_segment_selector(multi_option_sample) - - segment_selector = SegmentSelector(self.extraction_identifier) - pdfs_data = [sample.pdf_data for sample in multi_option_data.samples] - segment_selector.create_model(pdfs_data=pdfs_data) - - def mark_segments_for_segment_selector(self, multi_option_sample: TrainingSample): - cleaned_values = self.get_cleaned_options(multi_option_sample.labeled_data.values) - appearances_threshold = math.ceil(len(cleaned_values) * threshold / 100) - - if not appearances_threshold: - return - - for i, segment in enumerate(multi_option_sample.pdf_data.pdf_data_segments): - appearances, next_segment, next_segment_appearances = self.get_segments_appearances( - multi_option_sample.pdf_data.pdf_data_segments, i, cleaned_values - ) - - if next_segment_appearances and appearances_threshold <= appearances + next_segment_appearances: - segment.ml_label = 1 - next_segment.ml_label = 1 - break - - if appearances_threshold <= appearances: - segment.ml_label = 1 - break - - @staticmethod - def get_next_segment(pdf_data_segments: list[PdfDataSegment], segment_index: int): - for j in range(segment_index + 1, len(pdf_data_segments)): - if pdf_data_segments[j].segment_type == pdf_data_segments[segment_index].segment_type: - return pdf_data_segments[j] - - return None diff --git a/src/extractors/pdf_to_multi_option_extractor/multi_option_extraction_methods/NaiveMethod.py b/src/extractors/pdf_to_multi_option_extractor/multi_option_extraction_methods/NaiveMethod.py deleted file mode 100644 index 169a59c..0000000 --- a/src/extractors/pdf_to_multi_option_extractor/multi_option_extraction_methods/NaiveMethod.py +++ /dev/null @@ -1,11 +0,0 @@ -from extractors.pdf_to_multi_option_extractor.PdfMultiOptionMethod import PdfMultiOptionMethod - -from data.ExtractionData import ExtractionData - - -class NaiveMethod(PdfMultiOptionMethod): - def predict(self, multi_option_data: ExtractionData): - return [multi_option_data.options[0] for _ in multi_option_data.samples] - - def train(self, multi_option_data: ExtractionData): - pass diff --git a/src/extractors/pdf_to_multi_option_extractor/multi_option_extraction_methods/NextWordsSegmentSelector.py b/src/extractors/pdf_to_multi_option_extractor/multi_option_extraction_methods/NextWordsSegmentSelector.py deleted file mode 100644 index c503938..0000000 --- a/src/extractors/pdf_to_multi_option_extractor/multi_option_extraction_methods/NextWordsSegmentSelector.py +++ /dev/null @@ -1,28 +0,0 @@ -from data.PdfDataSegment import PdfDataSegment -from extractors.pdf_to_multi_option_extractor.multi_option_extraction_methods.PreviousWordsSegmentSelector import ( - PreviousWordsSegmentSelector, -) - -from rapidfuzz import fuzz - - -class NextWordsSegmentSelector(PreviousWordsSegmentSelector): - def predict(self, segments: list[PdfDataSegment]) -> list[PdfDataSegment]: - self.text_segments = [x for x in segments if x.segment_type in self.text_types] - self.load_repeated_words() - - predicted_segments = [] - for segment in self.text_segments: - - index = self.text_segments.index(segment) - - next_segment_texts = [] - if index < len(self.text_segments) - 1: - next_segment_texts = self.clean_texts(self.text_segments[index + 1]) - - for word in self.next_words: - if fuzz.partial_ratio(word, " ".join(next_segment_texts)) >= 90: - predicted_segments.append(segment) - break - - return predicted_segments diff --git a/src/extractors/pdf_to_multi_option_extractor/multi_option_extraction_methods/NextWordsTokenSelectorFuzzy75.py b/src/extractors/pdf_to_multi_option_extractor/multi_option_extraction_methods/NextWordsTokenSelectorFuzzy75.py deleted file mode 100644 index 159ec35..0000000 --- a/src/extractors/pdf_to_multi_option_extractor/multi_option_extraction_methods/NextWordsTokenSelectorFuzzy75.py +++ /dev/null @@ -1,59 +0,0 @@ -import math - -from data.Option import Option -from data.ExtractionData import ExtractionData -from data.PdfData import PdfData -from data.PdfDataSegment import PdfDataSegment -from data.TrainingSample import TrainingSample -from extractors.pdf_to_multi_option_extractor.multi_option_extraction_methods.FastSegmentSelectorFuzzy95 import ( - FastSegmentSelectorFuzzy95, -) -from extractors.pdf_to_multi_option_extractor.multi_option_extraction_methods.FuzzyAll75 import FuzzyAll75 -from extractors.pdf_to_multi_option_extractor.multi_option_extraction_methods.NextWordsSegmentSelector import ( - NextWordsSegmentSelector, -) - - -class NextWordsTokenSelectorFuzzy75(FastSegmentSelectorFuzzy95): - threshold = 75 - - def predict(self, multi_option_data: ExtractionData) -> list[list[Option]]: - self.set_parameters(multi_option_data) - self.get_token_extraction_data(multi_option_data) - segment_selector = NextWordsSegmentSelector(self.extraction_identifier) - - for sample in self.extraction_data.samples: - sample.pdf_data.pdf_data_segments = segment_selector.predict(sample.pdf_data.pdf_data_segments) - self.mark_segments_for_context(sample.pdf_data.pdf_data_segments) - - return FuzzyAll75().predict(self.extraction_data) - - def train(self, multi_option_data: ExtractionData): - self.set_parameters(multi_option_data) - self.get_token_extraction_data(multi_option_data) - marked_segments = list() - for sample in self.extraction_data.samples: - marked_segments.extend(self.get_marked_segments(sample)) - - NextWordsSegmentSelector(self.extraction_identifier).create_model(marked_segments) - - def get_token_extraction_data(self, extraction_data: ExtractionData): - samples = list() - for sample in extraction_data.samples: - token_segments = [] - if sample.pdf_data.pdf_features and sample.pdf_data.pdf_features.pages: - for page in sample.pdf_data.pdf_features.pages: - token_segments.extend([PdfDataSegment.from_pdf_token(token) for token in page.tokens]) - - pdf_data = PdfData(None, file_name=sample.pdf_data.file_name) - pdf_data.pdf_data_segments = token_segments - - training_sample = TrainingSample(pdf_data=pdf_data, labeled_data=sample.labeled_data) - samples.append(training_sample) - - self.extraction_data = ExtractionData( - samples=samples, - options=self.options, - multi_value=self.multi_value, - extraction_identifier=self.extraction_identifier, - ) diff --git a/src/extractors/pdf_to_multi_option_extractor/multi_option_extraction_methods/PreviousWordsSegmentSelector.py b/src/extractors/pdf_to_multi_option_extractor/multi_option_extraction_methods/PreviousWordsSegmentSelector.py deleted file mode 100644 index 1dcccbc..0000000 --- a/src/extractors/pdf_to_multi_option_extractor/multi_option_extraction_methods/PreviousWordsSegmentSelector.py +++ /dev/null @@ -1,27 +0,0 @@ -from data.PdfDataSegment import PdfDataSegment - -from extractors.segment_selector.FastSegmentSelector import FastSegmentSelector -from rapidfuzz import fuzz - - -class PreviousWordsSegmentSelector(FastSegmentSelector): - def create_model(self, segments: list[PdfDataSegment]): - self.text_segments = [x for x in segments if x.segment_type in self.text_types] - self.save_predictive_common_words(self.text_segments) - - def predict(self, segments): - self.text_segments = [x for x in segments if x.segment_type in self.text_types] - self.load_repeated_words() - - predicted_segments = [] - for segment in self.text_segments: - - index = self.text_segments.index(segment) - previous_segment_texts = self.clean_texts(self.text_segments[index - 1]) if index > 0 else [] - - for word in self.previous_words: - if fuzz.partial_ratio(word, " ".join(previous_segment_texts)) >= 90: - predicted_segments.append(segment) - break - - return predicted_segments diff --git a/src/extractors/pdf_to_multi_option_extractor/multi_option_extraction_methods/PreviousWordsSentenceSelectorFuzzyCommas.py b/src/extractors/pdf_to_multi_option_extractor/multi_option_extraction_methods/PreviousWordsSentenceSelectorFuzzyCommas.py deleted file mode 100644 index 1e0fb99..0000000 --- a/src/extractors/pdf_to_multi_option_extractor/multi_option_extraction_methods/PreviousWordsSentenceSelectorFuzzyCommas.py +++ /dev/null @@ -1,50 +0,0 @@ -from data.Option import Option -from data.ExtractionData import ExtractionData -from data.PdfData import PdfData -from data.TrainingSample import TrainingSample -from extractors.pdf_to_multi_option_extractor.multi_option_extraction_methods.FuzzyCommas import FuzzyCommas -from extractors.pdf_to_multi_option_extractor.multi_option_extraction_methods.PreviousWordsSegmentSelector import ( - PreviousWordsSegmentSelector, -) -from extractors.pdf_to_multi_option_extractor.multi_option_extraction_methods.SentenceSelectorFuzzyCommas import ( - SentenceSelectorFuzzyCommas, -) - - -class PreviousWordsSentenceSelectorFuzzyCommas(SentenceSelectorFuzzyCommas): - def train(self, multi_option_data: ExtractionData): - self.set_parameters(multi_option_data) - extraction_data_by_sentences = self.get_extraction_data_by_sentence(multi_option_data) - marked_segments = list() - for sample in extraction_data_by_sentences.samples: - marked_segments.extend(self.get_marked_segments(sample)) - - PreviousWordsSegmentSelector(self.extraction_identifier).create_model(marked_segments) - FuzzyCommas().train(extraction_data_by_sentences) - - def predict(self, multi_option_data: ExtractionData) -> list[list[Option]]: - extraction_data_by_sentences = self.get_extraction_data_by_sentence(multi_option_data) - self.set_parameters(extraction_data_by_sentences) - self.extraction_data = self.get_prediction_data(extraction_data_by_sentences) - return FuzzyCommas().predict(self.extraction_data) - - def get_prediction_data(self, extraction_data: ExtractionData) -> ExtractionData: - segment_selector = PreviousWordsSegmentSelector(self.extraction_identifier) - predict_samples = list() - for sample in extraction_data.samples: - selected_segments = segment_selector.predict(self.fix_two_pages_segments(sample)) - - self.mark_segments_for_context(selected_segments) - - pdf_data = PdfData(None, file_name=sample.pdf_data.file_name) - pdf_data.pdf_data_segments = selected_segments - - training_sample = TrainingSample(pdf_data=pdf_data, labeled_data=sample.labeled_data) - predict_samples.append(training_sample) - - return ExtractionData( - samples=predict_samples, - options=self.extraction_data.options, - multi_value=self.extraction_data.multi_value, - extraction_identifier=self.extraction_identifier, - ) diff --git a/src/extractors/pdf_to_multi_option_extractor/multi_option_extraction_methods/PreviousWordsTokenSelectorFuzzy75.py b/src/extractors/pdf_to_multi_option_extractor/multi_option_extraction_methods/PreviousWordsTokenSelectorFuzzy75.py deleted file mode 100644 index 771b280..0000000 --- a/src/extractors/pdf_to_multi_option_extractor/multi_option_extraction_methods/PreviousWordsTokenSelectorFuzzy75.py +++ /dev/null @@ -1,33 +0,0 @@ -from data.Option import Option -from data.ExtractionData import ExtractionData -from extractors.pdf_to_multi_option_extractor.multi_option_extraction_methods.FuzzyAll75 import FuzzyAll75 -from extractors.pdf_to_multi_option_extractor.multi_option_extraction_methods.NextWordsTokenSelectorFuzzy75 import ( - NextWordsTokenSelectorFuzzy75, -) -from extractors.pdf_to_multi_option_extractor.multi_option_extraction_methods.PreviousWordsSegmentSelector import ( - PreviousWordsSegmentSelector, -) - - -class PreviousWordsTokenSelectorFuzzy75(NextWordsTokenSelectorFuzzy75): - threshold = 75 - - def predict(self, multi_option_data: ExtractionData) -> list[list[Option]]: - self.set_parameters(multi_option_data) - self.get_token_extraction_data(multi_option_data) - segment_selector = PreviousWordsSegmentSelector(self.extraction_identifier) - - for sample in self.extraction_data.samples: - sample.pdf_data.pdf_data_segments = segment_selector.predict(sample.pdf_data.pdf_data_segments) - self.mark_segments_for_context(sample.pdf_data.pdf_data_segments) - - return FuzzyAll75().predict(self.extraction_data) - - def train(self, multi_option_data: ExtractionData): - self.set_parameters(multi_option_data) - self.get_token_extraction_data(multi_option_data) - marked_segments = list() - for sample in self.extraction_data.samples: - marked_segments.extend(self.get_marked_segments(sample)) - - PreviousWordsSegmentSelector(self.extraction_identifier).create_model(marked_segments) diff --git a/src/extractors/pdf_to_multi_option_extractor/multi_option_extraction_methods/SentenceSelectorFuzzyCommas.py b/src/extractors/pdf_to_multi_option_extractor/multi_option_extraction_methods/SentenceSelectorFuzzyCommas.py deleted file mode 100644 index 895fb8d..0000000 --- a/src/extractors/pdf_to_multi_option_extractor/multi_option_extraction_methods/SentenceSelectorFuzzyCommas.py +++ /dev/null @@ -1,97 +0,0 @@ -import re -from copy import deepcopy - -from pdf_features.Rectangle import Rectangle - -from data.Option import Option -from data.PdfData import PdfData -from data.PdfDataSegment import PdfDataSegment -from data.ExtractionData import ExtractionData -from data.TrainingSample import TrainingSample -from extractors.pdf_to_multi_option_extractor.multi_option_extraction_methods.FastSegmentSelectorFuzzyCommas import ( - FastSegmentSelectorFuzzyCommas, -) - - -class SentenceSelectorFuzzyCommas(FastSegmentSelectorFuzzyCommas): - def train(self, multi_option_data: ExtractionData): - self.set_parameters(multi_option_data) - extraction_data_by_sentences = self.get_extraction_data_by_sentence(multi_option_data) - super().train(extraction_data_by_sentences) - - def predict(self, multi_option_data: ExtractionData) -> list[list[Option]]: - extraction_data_by_sentences = self.get_extraction_data_by_sentence(multi_option_data) - return super().predict(extraction_data_by_sentences) - - def get_extraction_data_by_sentence(self, multi_option_data: ExtractionData) -> ExtractionData: - samples_by_sentence = [] - for sample in multi_option_data.samples: - sentence_segment_list = self.get_sentence_segment_list(sample.pdf_data.pdf_data_segments) - samples_by_sentence.append(self.get_sample(sample, sentence_segment_list)) - - return ExtractionData( - samples=samples_by_sentence, - options=multi_option_data.options, - multi_value=multi_option_data.multi_value, - extraction_identifier=multi_option_data.extraction_identifier, - ) - - def get_sentence_segment_list(self, pdf_data_segments) -> list[(str, PdfDataSegment)]: - text_segments = [segment for segment in pdf_data_segments if segment.segment_type in self.text_types] - merged_sentences = self.get_segments_merged(text_segments) - - sentence_segment_list = [] - for segment in merged_sentences: - segment_text = " ".join(segment.text_content.split()) - for text in re.split(r"\.|:", segment_text): - if not text: - continue - - sentence_segment_list.append((text, segment)) - - if not sentence_segment_list: - return list() - - sentences_across_pages = list() - sentences_across_pages.append(sentence_segment_list[0]) - for sentence, next_sentence in zip(sentence_segment_list, sentence_segment_list[1:]): - if sentence[0][-1] == ",": - merged_sentences = " ".join([sentences_across_pages[-1][0], next_sentence[0]]) - sentences_across_pages[-1] = (merged_sentences, sentences_across_pages[-1][1]) - continue - - sentences_across_pages.append(next_sentence) - - return sentences_across_pages - - def get_segments_merged(self, segments): - segments = [segment for segment in segments if segment.text_content.strip()] - if not segments: - return list() - - merged_sentences = [segments[0]] - for segment in segments[1:]: - previous_segment_text = " ".join(merged_sentences[-1].text_content.split()) - - if previous_segment_text[-1] not in [".", ":"]: - merged_segment = deepcopy(merged_sentences[-1]) - merged_segment.text_content = f"{previous_segment_text}, {' '.join(segment.text_content.split())}" - bounding_boxes = [merged_segment.bounding_box, segment.bounding_box] - merged_segment.bounding_box = Rectangle.merge_rectangles(bounding_boxes) - merged_sentences[-1] = merged_segment - continue - - merged_sentences.append(segment) - return merged_sentences - - @staticmethod - def get_sample(sample: TrainingSample, sentence_segment_list: list[(str, PdfDataSegment)]) -> TrainingSample: - sentence_segments = list() - for sentence, segment in sentence_segment_list: - sentence_segment = deepcopy(segment) - sentence_segment.text_content = sentence - sentence_segments.append(sentence_segment) - - sentence_pdf_data = PdfData(pdf_features=None, file_name=sample.pdf_data.file_name) - sentence_pdf_data.pdf_data_segments = sentence_segments - return TrainingSample(pdf_data=sentence_pdf_data, labeled_data=sample.labeled_data) diff --git a/src/extractors/pdf_to_multi_option_extractor/multi_option_extraction_methods/tests/test_fast_segment_selector_fuzzy_commas.py b/src/extractors/pdf_to_multi_option_extractor/multi_option_extraction_methods/tests/test_fast_segment_selector_fuzzy_commas.py deleted file mode 100644 index 95d6929..0000000 --- a/src/extractors/pdf_to_multi_option_extractor/multi_option_extraction_methods/tests/test_fast_segment_selector_fuzzy_commas.py +++ /dev/null @@ -1,156 +0,0 @@ -from unittest import TestCase -from data.ExtractionIdentifier import ExtractionIdentifier -from data.LabeledData import LabeledData -from data.Option import Option -from data.PdfData import PdfData -from data.ExtractionData import ExtractionData -from data.TrainingSample import TrainingSample -from extractors.pdf_to_multi_option_extractor.multi_option_extraction_methods.FastSegmentSelectorFuzzyCommas import ( - FastSegmentSelectorFuzzyCommas, -) -from extractors.segment_selector.FastSegmentSelector import FastSegmentSelector - - -class TestFastSegmentSelectorFuzzyCommas(TestCase): - TENANT = "multi_option_extraction_test" - extraction_id = "extraction_id" - extraction_identifier = ExtractionIdentifier(run_name=TENANT, extraction_name=extraction_id) - - def setUp(self): - FastSegmentSelector(self.extraction_identifier).prepare_model_folder() - - def test_performance_100(self): - options = [Option(id="1", label="1"), Option(id="2", label="2"), Option(id="3", label="3")] - - pdf_data_1 = PdfData.from_texts(["1, 2"]) - pdf_data_2 = PdfData.from_texts(["2"]) - pdf_data_3 = PdfData.from_texts(["3, 1"]) - pdf_data_4 = PdfData.from_texts(["2, 3"]) - - samples = [ - TrainingSample(pdf_data_1, LabeledData(values=[options[0], options[1]])), - TrainingSample(pdf_data_2, LabeledData(values=[options[1]])), - TrainingSample(pdf_data_3, LabeledData(values=[options[2], options[0]])), - TrainingSample(pdf_data_4, LabeledData(values=[options[1], options[2]])), - ] - - multi_option_data = ExtractionData( - multi_value=True, options=options, samples=samples, extraction_identifier=self.extraction_identifier - ) - - fast_segment_selector_fuzzy_commas = FastSegmentSelectorFuzzyCommas() - performance = fast_segment_selector_fuzzy_commas.get_performance(multi_option_data, multi_option_data) - - self.assertEqual(100, performance) - - def test_performance_83(self): - options = [Option(id="1", label="1"), Option(id="2", label="2"), Option(id="3", label="3")] - - pdf_data_1 = PdfData.from_texts(["1, 2"]) - pdf_data_2 = PdfData.from_texts(["2"]) - pdf_data_3 = PdfData.from_texts(["3, 1"]) - pdf_data_4 = PdfData.from_texts(["4"]) - - samples = [ - TrainingSample(pdf_data_1, LabeledData(values=[options[0], options[1]])), - TrainingSample(pdf_data_2, LabeledData(values=[options[1]])), - TrainingSample(pdf_data_3, LabeledData(values=[options[2], options[0]])), - TrainingSample(pdf_data_4, LabeledData(values=[options[1], options[2]])), - ] - - multi_option_data = ExtractionData( - multi_value=True, options=options, samples=samples, extraction_identifier=self.extraction_identifier - ) - - fast_segment_selector_fuzzy_commas = FastSegmentSelectorFuzzyCommas() - performance = fast_segment_selector_fuzzy_commas.get_performance(multi_option_data, multi_option_data) - - self.assertAlmostEqual(83.33333333333334, performance) - - def test_predictions(self): - options = [ - Option(id="1", label="1"), - Option(id="2", label="2"), - Option(id="3", label="3"), - Option(id="4", label="4"), - ] - - pdf_data_1 = PdfData.from_texts(["1, 2"]) - pdf_data_2 = PdfData.from_texts(["2"]) - pdf_data_3 = PdfData.from_texts(["3, 1"]) - pdf_data_4 = PdfData.from_texts(["2, 3"]) - pdf_data_5 = PdfData.from_texts(["4, 3"]) - - samples = [ - TrainingSample(pdf_data_1, LabeledData(values=[options[0], options[1]])), - TrainingSample(pdf_data_2, LabeledData(values=[options[1]])), - TrainingSample(pdf_data_3, LabeledData(values=[options[2], options[0]])), - TrainingSample(pdf_data_4, LabeledData(values=[options[1], options[2]])), - ] - - multi_option_data = ExtractionData( - multi_value=True, options=options, samples=samples, extraction_identifier=self.extraction_identifier - ) - - fast_segment_selector_fuzzy_commas = FastSegmentSelectorFuzzyCommas() - fast_segment_selector_fuzzy_commas.train(multi_option_data) - - prediction_samples = [ - TrainingSample(pdf_data_1, LabeledData(values=[])), - TrainingSample(pdf_data_5, LabeledData(values=[])), - ] - prediction_multi_option_data = ExtractionData( - multi_value=True, options=options, samples=prediction_samples, extraction_identifier=self.extraction_identifier - ) - predictions = fast_segment_selector_fuzzy_commas.predict(prediction_multi_option_data) - - self.assertEqual(2, len(predictions)) - - self.assertEqual(2, len(predictions[0])) - self.assertTrue(Option(id="1", label="1") in predictions[0]) - self.assertTrue(Option(id="2", label="2") in predictions[0]) - - self.assertEqual(2, len(predictions[1])) - self.assertTrue(Option(id="4", label="4") in predictions[1]) - self.assertTrue(Option(id="3", label="3") in predictions[1]) - - def test_predictions_when_empy_data(self): - options = [Option(id="1", label="1"), Option(id="2", label="2"), Option(id="3", label="3")] - - pdf_data_1 = PdfData.from_texts(["1, 2"]) - pdf_data_2 = PdfData.from_texts(["2"]) - pdf_data_3 = PdfData.from_texts(["3, 1"]) - - samples = [ - TrainingSample(pdf_data_1, LabeledData(values=[options[0], options[1]])), - TrainingSample(pdf_data_2, LabeledData(values=[options[1]])), - TrainingSample(pdf_data_3, LabeledData(values=[options[2], options[0]])), - ] - - multi_option_data = ExtractionData( - multi_value=True, options=options, samples=samples, extraction_identifier=self.extraction_identifier - ) - - fast_segment_selector_fuzzy_commas = FastSegmentSelectorFuzzyCommas() - fast_segment_selector_fuzzy_commas.train(multi_option_data) - - prediction_samples = [ - TrainingSample(pdf_data_1, LabeledData(values=[])), - TrainingSample(PdfData(None), LabeledData(values=[])), - TrainingSample(PdfData.from_texts([]), LabeledData(values=[])), - TrainingSample(PdfData.from_texts([""]), LabeledData(values=[])), - ] - prediction_multi_option_data = ExtractionData( - multi_value=True, options=options, samples=prediction_samples, extraction_identifier=self.extraction_identifier - ) - predictions = fast_segment_selector_fuzzy_commas.predict(prediction_multi_option_data) - - self.assertEqual(4, len(predictions)) - - self.assertEqual(2, len(predictions[0])) - self.assertTrue(Option(id="1", label="1") in predictions[0]) - self.assertTrue(Option(id="2", label="2") in predictions[0]) - - self.assertEqual(0, len(predictions[1])) - self.assertEqual(0, len(predictions[2])) - self.assertEqual(0, len(predictions[3])) diff --git a/src/extractors/pdf_to_multi_option_extractor/results.py b/src/extractors/pdf_to_multi_option_extractor/results.py deleted file mode 100644 index 1e5e821..0000000 --- a/src/extractors/pdf_to_multi_option_extractor/results.py +++ /dev/null @@ -1,52 +0,0 @@ -from rich.table import Table -from rich import print - -from data.Option import Option -from extractors.pdf_to_multi_option_extractor.PdfMultiOptionMethod import PdfMultiOptionMethod - - -def get_results_table() -> Table: - grid = Table.grid(expand=True) - grid.add_column(justify="left") - grid.add_column(justify="left") - grid.add_column(justify="right") - grid.add_column(justify="right") - - grid.add_row( - "Task__________________", "Method name_____________________________________________", "Time(m)_____", "Score__" - ) - - return grid - - -def get_predictions_table() -> Table: - grid = Table.grid(expand=True) - grid.add_column(justify="left") - grid.add_column(justify="right") - grid.add_column(justify="right") - - grid.add_row("PDF name", "Truth", "Predictions") - - return grid - - -def format_list(options_list: list[Option]): - return "\n".join(sorted([x.label for x in options_list])) + "\n" - - -def add_prediction_row(table: Table, pdf_name: str = "", truth: list[Option] = None, predictions: list[Option] = None): - if not pdf_name: - table.add_row("", "", "", "") - return - - table.add_row(pdf_name, format_list(truth), format_list(predictions)) - - -def add_row(table: Table, method: PdfMultiOptionMethod = None, time: int = 0, score: float = None): - if not method: - table.add_row("", "", "", "") - else: - table.add_row( - method.extraction_identifier.extraction_name, method.get_name(), f"{round(time / 60, 1)}", f"{round(score, 2)}%" - ) - print(table) diff --git a/src/extractors/pdf_to_multi_option_extractor/results/old_results.txt b/src/extractors/pdf_to_multi_option_extractor/results/old_results.txt deleted file mode 100644 index 13f79de..0000000 --- a/src/extractors/pdf_to_multi_option_extractor/results/old_results.txt +++ /dev/null @@ -1,167 +0,0 @@ -Task.................. Method name...................................... Time(m) Score.. - -cyrilla_keywords CleanBeginningDot500_BertBatch1 8.8 78.78% -cyrilla_keywords CleanBeginningDot500_BertBatch1FitToke… - 74.09% -cyrilla_keywords Beginning750_BertBatch2 6.2 74.2% -cyrilla_keywords Beginning750_BertBatch1 8.7 72.75% -cyrilla_keywords CleanBeginningDot500_BertBatch2 6.2 72.7% -cyrilla_keywords CleanBeginningDot1500_BertBatch2 6.3 71.6% -cyrilla_keywords CleanBeginning750_BertBatch2 6.2 71.75% -cyrilla_keywords CleanBeginningDot750_BertBatch2 6.2 70.19% -cyrilla_keywords CleanBeginningDot750_MultiBertBatch2 5.5 64.37% -cyrilla_keywords Beginning750_MultiBertBatch2 6.2 64.38% -cyrilla_keywords CleanBeginning750_BertBatch1 8.7 66.54% -cyrilla_keywords CleanBeginning750_MultiBertBatch2 5.4 62.38% -cyrilla_keywords CleanBeginningDot500_MultiBertBatch2 4.4 66.78% -cyrilla_keywords CleanBeginningDot750_BertBatch1 8.7 68.57% -cyrilla_keywords CleanBeginningDot750_MultiBertBatch2 5.3 65.2% -cyrilla_keywords CleanBeginningDot1500_BertBatch1 8.7 69.8% -cyrilla_keywords CleanBeginningDot1500_MultiBertBatch2 8.7 66.12% -cyrilla_keywords CleanBeginningDotWithNumbers750_BertBatch1 8.7 60.74% -cyrilla_keywords CleanBeginningDotWithNumbers750_BertBatch2 6.2 67.79% -cyrilla_keywords All100FuzzyMethod 0.0 50.55% -cyrilla_keywords All88FuzzyMethod 0.0 51.31% -cyrilla_keywords All75FuzzyMethod 0.0 58.55% -cyrilla_keywords FuzzyTextExtractor_BertBatch1 8.8 56.25% -cyrilla_keywords CleanEndDot500_BertBatch1 - 37.59% -cyrilla_keywords FuzzyCleanTextExtractor_BertBatch1 9.1 47.51% - - - - - -cejil_president All75FuzzyMethod 0.0 24.52% -cejil_president LastFuzzyMethod 0.0 19.14% -cejil_president FuzzySegmentSelectorMethod 0.3 12.5% -cejil_president All100FuzzyMethod 0.0 11.83% -cejil_president CleanEndDot500_BertBatch1FitTokens 3.3 9.14% -cejil_president CleanEndDot750_BertBatch1FitTokens 3.6 8.17% -cejil_president FuzzyCleanTextExtractor_BertBatch1 3.8 9.14% -cejil_president CleanEndDot750_MultilingualBertBatch1 5.8 8.37% -cejil_president CleanEndDot750_MultilingualBertBatch1 5.8 8.37% -cejil_president CleanEndDot750_MultilingualMultiBertBa… 4.3 8.79% -cejil_president CleanEndDot250_MultilingualBertBatch1 4.9 8.31% -cejil_president CleanEndDot250_MultilingualMultiBertBa… 3.7 8.66% - -cyrilla_keywords CleanBeginningDot750_GoogleBertBase 1.6 64.97% -cyrilla_keywords CleanBeginning750_GoogleBertBase 1.6 63.51% -cyrilla_keywords CleanBeginning750_GoogleBertBase 1.6 63.51% -cyrilla_keywords CleanBeginningDot750_MultiBertBatch1 2.0 60.13% -cyrilla_keywords CleanBeginningDot750_MultiBertBase 1.0 58.03% -cyrilla_keywords CleanBeginningDot750_MultiBertBase_500_tok 1.2 55.48% -cyrilla_keywords CleanBeginningDot750_MultiBert 1.1 55.68% -cyrilla_keywords CleanBeginningDot750_MultiBertBatch2 1.3 49.47% -cyrilla_keywords CleanBeginningDot750_MultiBertBatch2 1.4 58.57% -cyrilla_keywords CleanBeginningDot750_MultiBert100Tokens 0.8 47.0% -cyrilla_keywords CleanBeginning750_GoogleBertBase 1.6 49.41% -cyrilla_keywords CleanBeginning750_GoogleBertBase_with_dot 1.6 58.97% -cyrilla_keywords NounsBeginning500_GoogleBertBase 1.7 62.36% -cyrilla_keywords NounsLargeBeginning500_GoogleBertBase 1.7 61.82% -cyrilla_keywords CleanBeginningDot500_GoogleBertBase 1.6 55.51% -cyrilla_keywords NounsBeginning500_GoogleBertBase 1.7 51.4% -cyrilla_keywords NounsBeginning500V2_GoogleBertBase 1.7 59.93% -cyrilla_keywords NounsLargeBeginning750_GoogleBertBase 1.8 50.65% -cyrilla_keywords CleanBeginning750_DistilBert 1.2 61.33% -cyrilla_keywords NounsLargeBeginning500_GoogleBertBase 1.7 61.82% -cyrilla_keywords NounsProBeginning750_GoogleBertBase 1.8 61.02% -cyrilla_keywords CleanBeginning750_DebertaBase 2.5 60.52% -cyrilla_keywords CleanWithDotBeginning750_GoogleBertBase 1.6 58.67% -cyrilla_keywords Beginning_BertBase_750 55.83% -cyrilla_keywords CleanBeginning750_Roberta 2.3 55.34% -cyrilla_keywords CleanWithDotBeginning750_Roberta 1.7 58.84% -cyrilla_keywords CleanBeginning750_GoogleBertCasedBase 2.1 50.86% -cyrilla_keywords CleanWithDotBeginning750_DistilBert 0.9 50.01% -cyrilla_keywords NounsBeginning500_GoogleBertBase 1.7 51.4% -cyrilla_keywords Summaries_GoogleBertBase 1.6 48.68% -cyrilla_keywords Summaries_GoogleBertBase 1.6 48.68% -cyrilla_keywords Summaries_GoogleBertBase 1.6 48.68% -cyrilla_keywords CleanBeginning_BertBase_750 1.6 56.47% -cyrilla_keywords CleanWithDot750_DebertaBase 2.5 55.87% -cyrilla_keywords NounsBeginning750_GoogleBertBase 1.9 40.51% -cyrilla_keywords NounsBeginning750_TfIdf 0.3 14.74% -cyrilla_keywords NounsBeginning750_FastText 0.3 33.64% -cyrilla_keywords Beginning1500_BertBase 1.6 56.86% -cyrilla_keywords Beginning500_BertBase 1.6 56.95% -cyrilla_keywords BeginningEnd1500_BertBase 1.6 55.74% -cyrilla_keywords Beginning_BertBase 1.8 49.3% -cyrilla_keywords Summaries_BertBase__title_Falconsai 1.7 49.64% -cyrilla_keywords Summaries_BertBase_multi_line 1.7 46.81% -cyrilla_keywords Summ_BertBase__title_list_Falconsai 1.7 43.95% -cyrilla_keywords Summaries_BertBase__title 1.7 39.74% -cyrilla_keywords Beginning_Fast 0.0 26.1% -cyrilla_keywords Beginning_SetFit 4.6 41.39% -cyrilla_keywords Beginning_TfIdf 0.0 26.75% -cyrilla_keywords End_BertBase 1.7 39.36% -cyrilla_keywords End_Fast 0.0 11.06% -cyrilla_keywords End_SetFit 4.3 27.9% -cyrilla_keywords End_TfIdf 0.0 20.81% -cyrilla_keywords End_BertBase 1.7 32.46% -cyrilla_keywords Summaries_SetFit 3.0 30.28% -cyrilla_keywords Summaries_BertBase_ 1.7 29.41% -cyrilla_keywords Sentence_Similarity_LightGBM 27% -cyrilla_keywords End_Fast 0.0 26.67% -cyrilla_keywords Summaries_Fast 0.0 23.82% -cyrilla_keywords Summaries_TfIdf 0.0 21.13% -cyrilla_keywords NaiveMethod 0.0 7.37% -cyrilla_keywords CleanBeginning750_GoogleBertLarge 6.2 0.0% - -Task Method name Time(m) Score -d4la_document_type Beginning_BertBase 2.7 31.74% -d4la_document_type NaiveMethod 0.0 1.46% -d4la_document_type Beginning_Fast 0.0 15.0% -d4la_document_type Beginning_SetFit 7.5 21.64% -d4la_document_type Beginning_TfIdf 0.0 9.72% -d4la_document_type End_BertBase 2.7 30.0% -d4la_document_type End_Fast 0.0 15.0% -d4la_document_type End_SetFit 7.7 28.77% -d4la_document_type End_TfIdf 0.0 9.72% - -cejil_president NaiveMethod 0.0 1.67% -cejil_president Beginning_BertBase 0.7 9.41% -cejil_president Beginning_Fast 0.0 8.89% -cejil_president Beginning_SetFit 2.0 11.11% -cejil_president Beginning_TfIdf 0.0 8.24% -cejil_president End_BertBase 0.7 8.75% -cejil_president End_Fast 0.0 8.24% -cejil_president End_SetFit 1.9 8.24% -cejil_president End_TfIdf 0.0 8.0% - -cejil_secretary NaiveMethod 0.0 0.92% -cejil_secretary Beginning_BertBase 1.4 10.55% -cejil_secretary Beginning_Fast 0.0 11.12% -cejil_secretary Beginning_SetFit 4.4 12.15% -cejil_secretary Beginning_TfIdf 0.0 12.15% -cejil_secretary End_BertBase 1.4 12.67% -cejil_secretary End_Fast 0.0 10.85% -cejil_secretary End_SetFit 4.3 11.1% -cejil_secretary End_TfIdf 0.0 17.02% - -cejil_countries NaiveMethod 0.0 0.0% -cejil_countries Beginning_BertBase 1.9 0.0% -cejil_countries Beginning_Fast 0.0 0.28% -cejil_countries Beginning_SetFit 6.2 1.66% -cejil_countries Beginning_TfIdf 0.0 0.0% -cejil_countries End_BertBase 1.9 0.0% -cejil_countries End_Fast 0.0 0.0% -cejil_countries End_SetFit 6.1 0.86% -cejil_countries End_TfIdf 0.0 0.62% - -cejil_date NaiveMethod 0.0 0.0% -cejil_date Beginning_BertBase 1.8 0.0% -cejil_date Beginning_Fast 0.0 0.0% -cejil_date Beginning_SetFit 5.8 2.79% -cejil_date Beginning_TfIdf 0.1 0.0% -cejil_date End_BertBase 1.8 0.0% -cejil_date End_Fast 0.0 0.0% -cejil_date End_SetFit 5.8 3.46% -cejil_date End_TfIdf 0.1 1.15% - -cejil_judge NaiveMethod 0.0 6.35% -cejil_judge Beginning_BertBase 0.4 0.0% -cejil_judge Beginning_Fast 0.0 5.56% -cejil_judge Beginning_SetFit 1.0 14.81% -cejil_judge Beginning_TfIdf 0.0 0.0% -cejil_judge End_BertBase 0.4 7.41% -cejil_judge End_Fast 0.0 3.7% -cejil_judge End_SetFit 0.9 18.52% -cejil_judge End_TfIdf 0.0 11.11% \ No newline at end of file diff --git a/src/extractors/pdf_to_multi_option_extractor/results/results.txt b/src/extractors/pdf_to_multi_option_extractor/results/results.txt deleted file mode 100644 index 26c0729..0000000 --- a/src/extractors/pdf_to_multi_option_extractor/results/results.txt +++ /dev/null @@ -1,110 +0,0 @@ -Task Method name Time(m) Score - -countries_in_favor extractor - 36.85% -countries_in_favor FuzzySegmentSelector - 82.68% - -d4la_document_type extractor - 56.67% -cejil_president extractor - 100.0% -cejil_secretary extractor - 86.67% -cejil_countries extractor - 76.47% -cyrilla_keywords extractor - 80.00% -cejil_date extractor - 31.25% -cejil_judge extractor - 100.0% - -cyrilla_benchmark CleanBeginningDot500_SetFit 4.1 48.22% -cyrilla_benchmark CleanEndDot1000_SetFit 5.5 43.63% - -d4la_document_type CleanBeginningDot1500_SingleLabelDeber… 35.3 56.25% -d4la_document_type CleanBeginningDot500_SingleLabelBertBa… 13.2 54.17% -d4la_document_type CleanBeginningDot500_SetFit 6.8 53.33% -d4la_document_type CleanBeginningDot1500_SingleLabelDisti… 12.5 48.96% -d4la_document_type CleanBeginningDot1500_SingleLabelBertB… 22.7 44.79% -d4la_document_type CleanBeginningDot500_BertBatch1 15.4 49.82% -d4la_document_type CleanBeginningDot500_BertBatch1 16.3 48.66% -d4la_document_type CleanBeginningDot500_DistilbertBatch1 9.6 48.24% -d4la_document_type Beginning750_BertBatch1 16.6 49.57% -d4la_document_type CleanBeginning750_BertBatch1 15.6 47.71% -d4la_document_type CleanEndDot500_BertBatch1 16.7 44.33% -d4la_document_type CleanEndDot500_DebertaBatch1 27.7 11.75% -d4la_document_type CleanBeginningDot500_SetFitAllMpnetMethod 3.8 27.91% -d4la_document_type CleanBeginningDigits3000_TfIdf 0.1 1.61% -d4la_document_type CleanBeginningDot500_BertSeqSteps 7.2 34.99% - -cyrilla_keywords CleanBeginningDot500_BertBatch1 9.0 80.82% -cyrilla_keywords CleanBeginningDot500_SetFitAllMpnetMethod 3.8 61.11% -cyrilla_keywords CleanBeginningDot500_BertSeqSteps 5.0 71.77% -cyrilla_keywords CleanBeginning750_BertBatch1 9.9 76.19% -cyrilla_keywords BeginningEnd1500_BertBatch1 9.6 76.88% -cyrilla_keywords CleanBeginningDot500_BertBatch1 9.7 72.87% -cyrilla_keywords Beginning750_BertBatch1 9.4 76.49% -cyrilla_keywords CleanBeginningDot500_BertSeq250Tokens 7.6 73.37% -cyrilla_keywords CleanBeginningDot500_BertSeqBatch1 8.1 73.07% -cyrilla_keywords CleanBeginningDot500_DistilbertBatch1 5.6 73.29% -cyrilla_keywords CleanBeginningDot1500_DebertaSequence (1 seed) 6.1 66.67% -cyrilla_keywords CleanBeginningDot1500_DebertaSequence (1 seed) 2.2 44.44% -cyrilla_keywords CleanBeginningDigits3000_TfIdf 0.0 42.11% -cyrilla_keywords CleanBeginningDot1500_BertBatch1 9.1 73.42% -cyrilla_keywords CleanBeginningDot1500_DistilbertBatch1 5.6 74.54% -cyrilla_keywords CleanBeginningDot750_BertBatch1 9.8 70.77% -cyrilla_keywords BeginningParagraphDot500_BertBatch1 9.0 67.11% -cyrilla_keywords CleanEndDot500_DistilbertBatch1 5.7 52.16% -cyrilla_keywords CleanEndDot750_DistilbertBatch1 5.6 52.71% -cyrilla_keywords Summaries_BertBatch1 8.9 68.64% -cyrilla_keywords CleanBeginningDot2500_BertBatch1Tokens350 10.6 48.23% -cyrilla_keywords NounsBeginning500_BertBatch1 9.8 43.57% -cyrilla_keywords CleanNumbersBeginningDot500_BertBatch1 9.0 52.51% -cyrilla_keywords LastFuzzyMethod 0.0 49.41% -cyrilla_keywords FuzzyAll100 0.0 57.05% -cyrilla_keywords All88FuzzyMethod 0.0 58.1% -cyrilla_keywords CleanBeginningDot1500_DebertaDeepSpeed 19.2 0.0% - -cejil_president LastFuzzyMethod 0.0 80.77% -cejil_president CleanBeginningDigits3000_TfIdf 0.1 71.45% -cejil_president FuzzySegmentSelectorMethod 0.3 74.59% -cejil_president CleanEndDot250_BertBatch1 3.7 70.58% -cejil_president CleanEndDot250_MultilingualBertBatch1 4.9 69.47% -cejil_president CleanBeginningDot500_DistilbertBatch1 2.5 67.6% -cejil_president CleanBeginningDot1500_DistilbertBatch1 2.5 67.6% -cejil_president All88FuzzyMethod 0.0 22.23% -cejil_president CleanEndDot250_MultilingualMultiBertBa… 3.6 72.5% - -cejil_secretary LastFuzzyMethod 0.0 89.21% -cejil_secretary All88FuzzyMethod 0.0 81.82% -cejil_secretary CleanBeginningDigits3000_TfIdf 0.1 59.9% - -cejil_judge CleanBeginningDigits3000_TfIdf 0.1 100.0% -cejil_judge LastFuzzyMethod 0.0 92.86% -cejil_judge All75FuzzyMethod 0.0 75.71% -cejil_judge All88FuzzyMethod 0.0 75.71% -cejil_judge All100FuzzyMethod 0.0 75.71% -cejil_judge FirstFuzzyMethod 0.0 67.86% - -cejil_countries FuzzyCleanLabel 0.0 70.08% -cejil_countries FuzzyFirstCleanTo80Label 0.0 50.00% -cejil_countries FirstFuzzyMethod 0.0 42.65% -cejil_countries FirstFuzzyCountry 0.0 54.41% -cejil_countries FirstFuzzyLastLabelWord 0.0 50.00% -cejil_countries CleanBeginningDot500_SingleLabelMultiB… 14.0 38.24% -cejil_countries All75FuzzyMethod 0.3 8.47% -cejil_countries All88FuzzyMethod 0.3 25.73% -cejil_countries LastFuzzyMethod 0.0 1.47% -cejil_countries All100FuzzyMethod 0.3 26.67% -cejil_countries FuzzySegmentSelectorMethod 2.6 12.61% - - -COMPARISON USING DIFFERENT COMPUTERS - -cyrilla_keywords ML CleanBeginningDot750_BertSeqSteps 7.0 73.02% -cyrilla_keywords ML CleanBeginningDot750_BertSequence30Epochs 4.5 72.42% -cyrilla_keywords ML CleanBeginningDot750_BertSeq30EpochsStoppin 13.2 69.14% -cyrilla_keywords ALI CleanBeginningDot750_BertSequence30Epo… 11.2 73.19% -cyrilla_keywords CleanBeginningDot750_BertSeqSteps 14.3 71.85% -cyrilla_keywords CleanBeginningDot750_BertSequence30Epochs 10.4 73.72% - -cyrilla_keywords ML CleanBeginningDot750_BertSeqSteps 7.1 70.14% -cyrilla_keywords CleanBeginningDot750_BertSeqSteps 14.9 76.06% - - -cyrilla_keywords CleanBeginningDot750_DebertaSequence30Epochs 17.5 61.6% -cyrilla_keywords ALI CleanBeginningDot750_DebertaSequence30… 18.8 62.21% -cyrilla_keywords ML CleanBeginningDot750_DebertaSequence30Epochs 8.3 66.97% diff --git a/src/extractors/pdf_to_multi_option_extractor/test/test_filter_segments.py b/src/extractors/pdf_to_multi_option_extractor/test/test_filter_segments.py deleted file mode 100644 index cbac103..0000000 --- a/src/extractors/pdf_to_multi_option_extractor/test/test_filter_segments.py +++ /dev/null @@ -1,174 +0,0 @@ -from unittest import TestCase -from data.ExtractionIdentifier import ExtractionIdentifier -from data.LabeledData import LabeledData -from data.Option import Option -from data.PdfData import PdfData -from data.ExtractionData import ExtractionData -from data.TrainingSample import TrainingSample -from extractors.pdf_to_multi_option_extractor.filter_segments_methods.CleanBeginningDigits3000 import ( - CleanBeginningDigits3000, -) -from extractors.pdf_to_multi_option_extractor.filter_segments_methods.CleanBeginningDot1000 import CleanBeginningDot1000 -from extractors.pdf_to_multi_option_extractor.filter_segments_methods.CleanBeginningDot250 import CleanBeginningDot250 -from extractors.pdf_to_multi_option_extractor.filter_segments_methods.CleanEndDot1000 import CleanEndDot1000 -from extractors.pdf_to_multi_option_extractor.filter_segments_methods.CleanEndDot250 import CleanEndDot250 - - -class TestFilterSegments(TestCase): - TENANT = "multi_option_extraction_test" - extraction_id = "extraction_id" - - def get_data(self) -> ExtractionData: - extraction_identifier = ExtractionIdentifier(run_name=self.TENANT, extraction_name=self.extraction_id) - options = [Option(id="1", label="1"), Option(id="2", label="2"), Option(id="3", label="3")] - - pdf_data_1 = PdfData.from_texts(["point 1"]) - pdf_data_2 = PdfData.from_texts(["point 2", "point 2"]) - pdf_data_3 = PdfData.from_texts(["point 3", "point 3", "point 3"]) - - samples = [ - TrainingSample(pdf_data_1, LabeledData(values=[options[0]])), - TrainingSample(pdf_data_2, LabeledData(values=[options[1]])), - TrainingSample(pdf_data_3, LabeledData(values=[options[2]])), - ] - - multi_option_data = ExtractionData( - multi_value=False, options=options, samples=samples, extraction_identifier=extraction_identifier - ) - - return multi_option_data - - def get_data_for_context(self) -> ExtractionData: - extraction_identifier = ExtractionIdentifier(run_name=self.TENANT, extraction_name=self.extraction_id) - options = [Option(id="1", label="1"), Option(id="2", label="2"), Option(id="3", label="3")] - - pdf_data = PdfData.from_texts(["point 1"] * 3000) - - samples = [ - TrainingSample(pdf_data, LabeledData(values=[options[0]])), - ] - - multi_option_data = ExtractionData( - multi_value=False, options=options, samples=samples, extraction_identifier=extraction_identifier - ) - - return multi_option_data - - def get_empty_segments(self): - extraction_identifier = ExtractionIdentifier(run_name=self.TENANT, extraction_name=self.extraction_id) - options = [Option(id="1", label="1"), Option(id="2", label="2"), Option(id="3", label="3")] - - pdf_data_1 = PdfData.from_texts([""]) - - samples = [ - TrainingSample(pdf_data_1, LabeledData(values=[options[0]])), - ] - - multi_option_data = ExtractionData( - multi_value=False, options=options, samples=samples, extraction_identifier=extraction_identifier - ) - return multi_option_data - - def get_no_segments(self): - extraction_identifier = ExtractionIdentifier(run_name=self.TENANT, extraction_name=self.extraction_id) - options = [Option(id="1", label="1"), Option(id="2", label="2"), Option(id="3", label="3")] - - pdf_data_1 = PdfData(pdf_features=None) - - samples = [ - TrainingSample(pdf_data_1, LabeledData(values=[options[0]])), - ] - - multi_option_data = ExtractionData( - multi_value=False, options=options, samples=samples, extraction_identifier=extraction_identifier - ) - return multi_option_data - - def test_filters(self): - methods = [ - CleanBeginningDigits3000(), - CleanBeginningDot250(), - CleanEndDot250(), - CleanBeginningDot1000(), - CleanEndDot1000(), - ] - - for method in methods: - multi_option_data_filtered = method.filter(self.get_data()) - first_pdf_data_segments = multi_option_data_filtered.samples[0].pdf_data.pdf_data_segments - second_pdf_data_segments = multi_option_data_filtered.samples[1].pdf_data.pdf_data_segments - third_pdf_data_segments = multi_option_data_filtered.samples[2].pdf_data.pdf_data_segments - - self.assertEqual(3, len(multi_option_data_filtered.samples)) - self.assertEqual(1, len(first_pdf_data_segments)) - self.assertEqual(2, len(second_pdf_data_segments)) - self.assertEqual(3, len(third_pdf_data_segments)) - self.assertTrue(first_pdf_data_segments[0].text_content in ["point 1", "point"]) - self.assertTrue(second_pdf_data_segments[0].text_content in ["point 2", "point"]) - self.assertTrue(third_pdf_data_segments[0].text_content in ["point 3", "point"]) - - def test_empty_text(self): - methods = [ - CleanBeginningDigits3000(), - CleanBeginningDot250(), - CleanEndDot250(), - CleanBeginningDot1000(), - CleanEndDot1000(), - ] - - for method in methods: - multi_option_data_filtered = method.filter(self.get_empty_segments()) - first_pdf_data_segments = multi_option_data_filtered.samples[0].pdf_data.pdf_data_segments - - self.assertEqual(1, len(multi_option_data_filtered.samples)) - self.assertEqual(1, len(first_pdf_data_segments)) - self.assertEqual("no text", first_pdf_data_segments[0].text_content) - - def test_no_segments(self): - methods = [ - CleanBeginningDigits3000(), - CleanBeginningDot250(), - CleanEndDot250(), - CleanBeginningDot1000(), - CleanEndDot1000(), - ] - - for method in methods: - multi_option_data_filtered = method.filter(self.get_no_segments()) - first_pdf_data_segments = multi_option_data_filtered.samples[0].pdf_data.pdf_data_segments - - self.assertEqual(1, len(multi_option_data_filtered.samples)) - self.assertEqual(1, len(first_pdf_data_segments)) - self.assertEqual("no text", first_pdf_data_segments[0].text_content) - - def test_context_beginning(self): - methods = [ - CleanBeginningDigits3000(), - CleanBeginningDot250(), - CleanBeginningDot1000(), - ] - - for method in methods: - multi_option_data = self.get_data_for_context() - method.filter(multi_option_data) - original_data_segments = multi_option_data.samples[0].pdf_data.pdf_data_segments - - for i in range(1, 45): - self.assertEqual(1, original_data_segments[i].ml_label) - - for i in range(375, 3000): - self.assertEqual(0, original_data_segments[i].ml_label) - - def test_context_end(self): - methods = [CleanEndDot250(), CleanEndDot1000()] - - for method in methods: - multi_option_data = self.get_data_for_context() - method.filter(multi_option_data) - original_data_segments = multi_option_data.samples[0].pdf_data.pdf_data_segments - - for i in range(1, 2000): - self.assertEqual(0, original_data_segments[i].ml_label) - - for i in range(2955, 3000): - self.assertEqual(1, original_data_segments[i].ml_label) diff --git a/src/extractors/pdf_to_multi_option_extractor/test/test_fuzzy_methods.py b/src/extractors/pdf_to_multi_option_extractor/test/test_fuzzy_methods.py deleted file mode 100644 index d566a6e..0000000 --- a/src/extractors/pdf_to_multi_option_extractor/test/test_fuzzy_methods.py +++ /dev/null @@ -1,194 +0,0 @@ -from unittest import TestCase -from data.ExtractionIdentifier import ExtractionIdentifier -from data.LabeledData import LabeledData -from data.Option import Option -from data.PdfData import PdfData -from data.ExtractionData import ExtractionData -from data.TrainingSample import TrainingSample -from extractors.pdf_to_multi_option_extractor.multi_option_extraction_methods.FastSegmentSelectorFuzzy95 import ( - FastSegmentSelectorFuzzy95, -) -from extractors.pdf_to_multi_option_extractor.multi_option_extraction_methods.FuzzyAll100 import FuzzyAll100 -from extractors.pdf_to_multi_option_extractor.multi_option_extraction_methods.FuzzyAll75 import FuzzyAll75 -from extractors.pdf_to_multi_option_extractor.multi_option_extraction_methods.FuzzyCommas import FuzzyCommas -from extractors.pdf_to_multi_option_extractor.multi_option_extraction_methods.FuzzyFirst import FuzzyFirst - - -class TestFuzzyMethods(TestCase): - TENANT = "TestFuzzyMethods" - extraction_id = "extraction_id" - - def test_fuzzy_all_100(self): - extraction_identifier = ExtractionIdentifier(run_name=self.TENANT, extraction_name=self.extraction_id) - options = [Option(id="1", label="item 1"), Option(id="2", label="item 2"), Option(id="3", label="item 10")] - - pdf_data_1 = PdfData.from_texts(["blah. item 1. blah"]) - pdf_data_2 = PdfData.from_texts(["blah. item 10. blah"]) - pdf_data_3 = PdfData.from_texts(["blah. item 10, item 1. blah"]) - - samples = [ - TrainingSample(pdf_data_1, LabeledData(values=[options[0]])), - TrainingSample(pdf_data_2, LabeledData(values=[options[2]])), - TrainingSample(pdf_data_3, LabeledData(values=[options[0], options[2]])), - ] - - multi_option_data = ExtractionData( - multi_value=True, options=options, samples=samples, extraction_identifier=extraction_identifier - ) - - predictions = FuzzyAll100().predict(multi_option_data) - - self.assertEqual(3, len(predictions)) - self.assertEqual([Option(id="1", label="item 1")], predictions[0]) - self.assertEqual([Option(id="3", label="item 10")], predictions[1]) - self.assertTrue(Option(id="1", label="item 1") in predictions[2]) - self.assertTrue(Option(id="2", label="item 2") not in predictions[2]) - self.assertTrue(Option(id="3", label="item 10") in predictions[2]) - - def test_fuzzy_commas(self): - extraction_identifier = ExtractionIdentifier(run_name=self.TENANT, extraction_name=self.extraction_id) - options = [Option(id="1", label="item 1"), Option(id="2", label="item 2"), Option(id="10", label="item 10")] - - pdf_data_1 = PdfData.from_texts(["blah, item 1, 2 item, item 3, blah"]) - pdf_data_2 = PdfData.from_texts(["blah, 10 item, item 1, blah"]) - - samples = [ - TrainingSample(pdf_data_1, LabeledData(values=[options[0]])), - TrainingSample(pdf_data_2, LabeledData(values=[options[2]])), - ] - - multi_option_data = ExtractionData( - multi_value=True, options=options, samples=samples, extraction_identifier=extraction_identifier - ) - - FuzzyCommas().train(multi_option_data) - predictions = FuzzyCommas().predict(multi_option_data) - - self.assertEqual(2, len(predictions)) - - self.assertTrue(Option(id="1", label="item 1") in predictions[0]) - self.assertTrue(Option(id="2", label="item 2") in predictions[0]) - self.assertTrue(Option(id="10", label="item 10") not in predictions[0]) - - self.assertTrue(Option(id="1", label="item 1") in predictions[1]) - self.assertTrue(Option(id="2", label="item 2") not in predictions[1]) - self.assertTrue(Option(id="10", label="item 10") in predictions[1]) - - def test_fuzzy_commas_aliases(self): - extraction_identifier = ExtractionIdentifier(run_name=self.TENANT, extraction_name=self.extraction_id) - options = [Option(id="1", label=" United Kingdom ")] - - pdf_data_1 = PdfData.from_texts( - ["blah, United Kingdom of Great Britain and Northern Ireland , 2 item, item 3, blah"] - ) - - pdf_data_1.pdf_data_segments[0].ml_label = 1 - - samples = [ - TrainingSample(pdf_data_1, LabeledData(values=[options[0]])), - ] - - multi_option_data = ExtractionData( - multi_value=True, options=options, samples=samples, extraction_identifier=extraction_identifier - ) - - FuzzyCommas().train(multi_option_data) - predictions = FuzzyCommas().predict(multi_option_data) - - self.assertEqual(1, len(predictions)) - - self.assertTrue(Option(id="1", label=" United Kingdom ") in predictions[0]) - - def test_fast_segment_selector_fuzzy_95(self): - extraction_identifier = ExtractionIdentifier(run_name=self.TENANT, extraction_name=self.extraction_id) - options = [Option(id="1", label="item 1"), Option(id="2", label="item 2"), Option(id="10", label="item 10")] - - text = """No matter the scale or scope of partnership, we at HURIDOCS approach the task in a way that emphasises the following values: collaboration, purpose, safety, humanity and adaptability. -We are a human rights organisation too, and our ultimate vision is a world where all people’s dignity and freedom are protected. As such, if we see that our expertise or our tool Uwazi isn’t an ideal fit for your project, we’ll tell you so and do our best to refer you to allies who can help.""" - - pdf_data_1 = PdfData.from_texts([text, "mark 1", "item 1, item 2, item 10", text]) - pdf_data_2 = PdfData.from_texts(["foo", "mark 1", "item 2", text]) - pdf_data_3 = PdfData.from_texts(["foo", "var", "mark 1", "item 10", text]) - - samples = [ - TrainingSample(pdf_data_1, LabeledData(values=[options[0], options[1], options[2]])), - TrainingSample(pdf_data_2, LabeledData(values=[options[1]])), - TrainingSample(pdf_data_3, LabeledData(values=[options[2]])), - ] * 5 - - multi_option_data = ExtractionData( - multi_value=True, options=options, samples=samples, extraction_identifier=extraction_identifier - ) - - fast_segment_selector_fuzzy = FastSegmentSelectorFuzzy95() - fast_segment_selector_fuzzy.set_parameters(multi_option_data) - fast_segment_selector_fuzzy.train(multi_option_data) - predictions = fast_segment_selector_fuzzy.predict(multi_option_data) - - self.assertEqual(15, len(predictions)) - - self.assertTrue(Option(id="1", label="item 1") in predictions[0]) - self.assertTrue(Option(id="2", label="item 2") in predictions[0]) - self.assertTrue(Option(id="10", label="item 10") in predictions[0]) - contexts = [x.text_content for x in samples[0].pdf_data.pdf_data_segments if x.ml_label] - self.assertEqual("item 1, item 2, item 10", "".join(contexts)) - - self.assertTrue(Option(id="1", label="item 1") not in predictions[1]) - self.assertTrue(Option(id="2", label="item 2") in predictions[1]) - self.assertTrue(Option(id="10", label="item 10") not in predictions[1]) - contexts = [x.text_content for x in samples[1].pdf_data.pdf_data_segments if x.ml_label] - self.assertEqual("item 2", "".join(contexts)) - - self.assertTrue(Option(id="1", label="item 1") not in predictions[2]) - self.assertTrue(Option(id="2", label="item 2") not in predictions[2]) - self.assertTrue(Option(id="10", label="item 10") in predictions[2]) - contexts = [x.text_content for x in samples[2].pdf_data.pdf_data_segments if x.ml_label] - self.assertEqual("item 10", "".join(contexts)) - - def test_fuzzy_all_75(self): - extraction_identifier = ExtractionIdentifier(run_name=self.TENANT, extraction_name=self.extraction_id) - options = [Option(id="1", label="item 1"), Option(id="2", label="item 2"), Option(id="3", label="item 10")] - - pdf_data_1 = PdfData.from_texts(["blah. item 1. blah"]) - - samples = [ - TrainingSample(pdf_data_1, LabeledData(values=[options[0]])), - ] - - multi_option_data = ExtractionData( - multi_value=True, options=options, samples=samples, extraction_identifier=extraction_identifier - ) - - predictions = FuzzyAll75().predict(multi_option_data) - - self.assertEqual(1, len(predictions)) - self.assertTrue(Option(id="1", label="item 1") in predictions[0]) - self.assertTrue(Option(id="2", label="item 2") not in predictions[0]) - self.assertTrue(Option(id="3", label="item 10") in predictions[0]) - - def test_fuzzy_first(self): - extraction_identifier = ExtractionIdentifier(run_name=self.TENANT, extraction_name=self.extraction_id) - options = [Option(id="1", label="item 1"), Option(id="2", label="item 2"), Option(id="3", label="item 10")] - - pdf_data_1 = PdfData.from_texts(["blah. item 1. blah"]) - pdf_data_2 = PdfData.from_texts(["blah. item 10. blah"]) - pdf_data_3 = PdfData.from_texts(["blah. item 10, item 1. blah"]) - - samples = [ - TrainingSample(pdf_data_1, LabeledData(values=[options[0]])), - TrainingSample(pdf_data_2, LabeledData(values=[options[2]])), - TrainingSample(pdf_data_3, LabeledData(values=[options[0], options[2]])), - ] - - multi_option_data = ExtractionData( - multi_value=True, options=options, samples=samples, extraction_identifier=extraction_identifier - ) - - predictions = FuzzyFirst().predict(multi_option_data) - - self.assertEqual(3, len(predictions)) - self.assertEqual([Option(id="1", label="item 1")], predictions[0]) - self.assertEqual([Option(id="3", label="item 10")], predictions[1]) - self.assertTrue(Option(id="1", label="item 1") not in predictions[2]) - self.assertTrue(Option(id="2", label="item 2") not in predictions[2]) - self.assertTrue(Option(id="3", label="item 10") in predictions[2]) diff --git a/src/extractors/pdf_to_multi_option_extractor/test/test_pdf_to_multi_option_extraction.py b/src/extractors/pdf_to_multi_option_extractor/test/test_pdf_to_multi_option_extraction.py deleted file mode 100644 index fcb4f46..0000000 --- a/src/extractors/pdf_to_multi_option_extractor/test/test_pdf_to_multi_option_extraction.py +++ /dev/null @@ -1,101 +0,0 @@ -from unittest import TestCase -from data.ExtractionIdentifier import ExtractionIdentifier -from data.LabeledData import LabeledData -from data.Option import Option -from data.PdfData import PdfData -from data.ExtractionData import ExtractionData -from data.PredictionSample import PredictionSample -from data.TrainingSample import TrainingSample -from extractors.pdf_to_multi_option_extractor.PdfToMultiOptionExtractor import PdfToMultiOptionExtractor - - -class TestPdfToMultiOptionExtraction(TestCase): - TENANT = "multi_option_extraction_test" - extraction_id = "extraction_id" - - def test_single_value(self): - extraction_identifier = ExtractionIdentifier(run_name=self.TENANT, extraction_name=self.extraction_id) - options = [Option(id="1", label="1"), Option(id="2", label="2"), Option(id="3", label="3")] - - pdf_data_1 = PdfData.from_texts(["point 1"]) - pdf_data_2 = PdfData.from_texts(["point 2"]) - pdf_data_3 = PdfData.from_texts(["point 3"]) - - samples = [ - TrainingSample(pdf_data_1, LabeledData(values=[options[0]])), - TrainingSample(pdf_data_2, LabeledData(values=[options[1]])), - TrainingSample(pdf_data_3, LabeledData(values=[options[2]])), - ] - - multi_option_data = ExtractionData( - multi_value=False, options=options, samples=samples, extraction_identifier=extraction_identifier - ) - - multi_option_extraction = PdfToMultiOptionExtractor(extraction_identifier) - multi_option_extraction.create_model(multi_option_data) - - prediction_sample_1 = PredictionSample(pdf_data=pdf_data_1) - prediction_sample_3 = PredictionSample(pdf_data=pdf_data_3) - suggestions = multi_option_extraction.get_suggestions([prediction_sample_1, prediction_sample_3]) - - self.assertEqual(2, len(suggestions)) - self.assertEqual([Option(id="1", label="1")], suggestions[0].values) - self.assertEqual([Option(id="3", label="3")], suggestions[1].values) - - def test_multi_value(self): - extraction_identifier = ExtractionIdentifier(run_name=self.TENANT, extraction_name=self.extraction_id) - options = [Option(id="1", label="1"), Option(id="2", label="2"), Option(id="3", label="3")] - - pdf_data_1 = PdfData.from_texts(["point 1 point 2"]) - pdf_data_2 = PdfData.from_texts(["point 2"]) - pdf_data_3 = PdfData.from_texts(["point 3 point 1"]) - - samples = [ - TrainingSample(pdf_data_1, LabeledData(values=[options[0], options[1]])), - TrainingSample(pdf_data_2, LabeledData(values=[options[1]])), - TrainingSample(pdf_data_3, LabeledData(values=[options[2], options[0]])), - ] - - multi_option_data = ExtractionData( - multi_value=True, options=options, samples=samples, extraction_identifier=extraction_identifier - ) - - multi_option_extraction = PdfToMultiOptionExtractor(extraction_identifier) - multi_option_extraction.create_model(multi_option_data) - - prediction_sample_1 = PredictionSample(pdf_data=pdf_data_1) - prediction_sample_3 = PredictionSample(pdf_data=pdf_data_3) - suggestions = multi_option_extraction.get_suggestions([prediction_sample_1, prediction_sample_3]) - - self.assertEqual(2, len(suggestions)) - self.assertTrue(Option(id="1", label="1") in suggestions[0].values) - self.assertTrue(Option(id="2", label="2") in suggestions[0].values) - self.assertTrue(Option(id="3", label="3") not in suggestions[0].values) - self.assertTrue(Option(id="3", label="3") in suggestions[1].values) - self.assertTrue(Option(id="2", label="2") not in suggestions[1].values) - self.assertTrue(Option(id="1", label="1") in suggestions[1].values) - - def test_no_prediction_data(self): - extraction_identifier = ExtractionIdentifier(run_name=self.TENANT, extraction_name=self.extraction_id) - options = [Option(id="1", label="1"), Option(id="2", label="2"), Option(id="3", label="3")] - - pdf_data_1 = PdfData.from_texts(["point one point two"]) - pdf_data_2 = PdfData.from_texts(["point two"]) - pdf_data_3 = PdfData.from_texts(["point three point one"]) - - samples = [ - TrainingSample(pdf_data_1, LabeledData(values=[options[0]])), - TrainingSample(pdf_data_2, LabeledData(values=[options[1]])), - TrainingSample(pdf_data_3, LabeledData(values=[options[2]])), - ] - - multi_option_data = ExtractionData( - multi_value=True, options=options, samples=samples, extraction_identifier=extraction_identifier - ) - - multi_option_extraction = PdfToMultiOptionExtractor(extraction_identifier) - multi_option_extraction.create_model(multi_option_data) - - suggestions = multi_option_extraction.get_suggestions([]) - - self.assertEqual(0, len(suggestions)) diff --git a/src/extractors/pdf_to_text_extractor/PdfToTextExtractor.py b/src/extractors/pdf_to_text_extractor/PdfToTextExtractor.py deleted file mode 100644 index 236e659..0000000 --- a/src/extractors/pdf_to_text_extractor/PdfToTextExtractor.py +++ /dev/null @@ -1,120 +0,0 @@ -from data.ExtractionData import ExtractionData -from data.TrainingSample import TrainingSample -from extractors.ExtractorBase import ExtractorBase -from extractors.ToTextExtractor import ToTextExtractor -from extractors.ToTextExtractorMethod import ToTextExtractorMethod -from extractors.pdf_to_text_extractor.methods.FastSegmentSelectorDateParserMethod import FastSegmentSelectorDateParserMethod -from extractors.pdf_to_text_extractor.methods.FastSegmentSelectorDateParserWithBreaksMethod import ( - FastSegmentSelectorDateParserWithBreaksMethod, -) -from extractors.pdf_to_text_extractor.methods.FastSegmentSelectorInputWithoutSpaces import ( - FastSegmentSelectorInputWithoutSpaces, -) -from extractors.pdf_to_text_extractor.methods.FastSegmentSelectorMT5TrueCaseEnglishSpanishMethod import ( - FastSegmentSelectorMT5TrueCaseEnglishSpanishMethod, -) -from extractors.pdf_to_text_extractor.methods.FastSegmentSelectorRegexMethod import FastSegmentSelectorRegexMethod -from extractors.pdf_to_text_extractor.methods.FastSegmentSelectorRegexSubtractionMethod import ( - FastSegmentSelectorRegexSubtractionMethod, -) -from extractors.pdf_to_text_extractor.methods.FastSegmentSelectorSameInputOutputMethod import ( - FastSegmentSelectorSameInputOutputMethod, -) -from extractors.pdf_to_text_extractor.methods.FirstDateMethod import FirstDateMethod -from extractors.pdf_to_text_extractor.methods.LastDateMethod import LastDateMethod -from extractors.pdf_to_text_extractor.methods.PdfToTextRegexMethod import PdfToTextRegexMethod -from extractors.pdf_to_text_extractor.methods.SegmentSelectorDateParserMethod import SegmentSelectorDateParserMethod -from extractors.pdf_to_text_extractor.methods.SegmentSelectorDateParserWithBreaksMethod import ( - SegmentSelectorDateParserWithBreaksMethod, -) -from extractors.pdf_to_text_extractor.methods.SegmentSelectorInputWithoutSpaces import SegmentSelectorInputWithoutSpaces -from extractors.pdf_to_text_extractor.methods.SegmentSelectorMT5TrueCaseEnglishSpanishMethod import ( - SegmentSelectorMT5TrueCaseEnglishSpanishMethod, -) -from extractors.pdf_to_text_extractor.methods.SegmentSelectorRegexMethod import SegmentSelectorRegexMethod -from extractors.pdf_to_text_extractor.methods.SegmentSelectorRegexSubtractionMethod import ( - SegmentSelectorRegexSubtractionMethod, -) -from extractors.pdf_to_text_extractor.methods.SegmentSelectorSameInputOutputMethod import ( - SegmentSelectorSameInputOutputMethod, -) -from extractors.segment_selector.FastAndPositionsSegmentSelector import FastAndPositionsSegmentSelector -from extractors.segment_selector.FastSegmentSelector import FastSegmentSelector -from extractors.segment_selector.SegmentSelector import SegmentSelector - - -class PdfToTextExtractor(ToTextExtractor): - - METHODS: list[type[ToTextExtractorMethod]] = [ - PdfToTextRegexMethod, - FastSegmentSelectorSameInputOutputMethod, - FastSegmentSelectorInputWithoutSpaces, - FastSegmentSelectorRegexMethod, - FastSegmentSelectorRegexSubtractionMethod, - SegmentSelectorInputWithoutSpaces, - SegmentSelectorSameInputOutputMethod, - SegmentSelectorRegexMethod, - SegmentSelectorRegexSubtractionMethod, - SegmentSelectorSameInputOutputMethod, - FirstDateMethod, - LastDateMethod, - FastSegmentSelectorDateParserMethod, - FastSegmentSelectorDateParserWithBreaksMethod, - SegmentSelectorDateParserMethod, - SegmentSelectorDateParserWithBreaksMethod, - FastSegmentSelectorMT5TrueCaseEnglishSpanishMethod, - SegmentSelectorMT5TrueCaseEnglishSpanishMethod, - ] - - def create_model(self, extraction_data: ExtractionData) -> tuple[bool, str]: - SegmentSelector(extraction_identifier=self.extraction_identifier).prepare_model_folder() - FastSegmentSelector(extraction_identifier=self.extraction_identifier).prepare_model_folder() - FastAndPositionsSegmentSelector(extraction_identifier=self.extraction_identifier).prepare_model_folder() - return super().create_model(extraction_data) - - @staticmethod - def get_train_test_sets(extraction_data: ExtractionData) -> (ExtractionData, ExtractionData): - samples_with_label_segments_boxes = [x for x in extraction_data.samples if x.labeled_data.label_segments_boxes] - - if len(samples_with_label_segments_boxes) < 2 and len(extraction_data.samples) > 10: - return PdfToTextExtractor.split_80_20(extraction_data) - - if len(samples_with_label_segments_boxes) < 10: - test_extraction_data = ExtractorBase.get_extraction_data_from_samples( - extraction_data, samples_with_label_segments_boxes - ) - return extraction_data, test_extraction_data - - samples_without_label_segments_boxes = [ - x for x in extraction_data.samples if not x.labeled_data.label_segments_boxes - ] - - train_size = int(len(samples_with_label_segments_boxes) * 0.8) - train_set: list[TrainingSample] = ( - samples_with_label_segments_boxes[:train_size] + samples_without_label_segments_boxes - ) - - if len(extraction_data.samples) < 15: - test_set: list[TrainingSample] = samples_with_label_segments_boxes[-10:] - else: - test_set = samples_with_label_segments_boxes[train_size:] - - train_extraction_data = ExtractorBase.get_extraction_data_from_samples(extraction_data, train_set) - test_extraction_data = ExtractorBase.get_extraction_data_from_samples(extraction_data, test_set) - return train_extraction_data, test_extraction_data - - @staticmethod - def split_80_20(extraction_data): - train_size = int(len(extraction_data.samples) * 0.8) - train_set: list[TrainingSample] = extraction_data.samples[:train_size] - test_set = extraction_data.samples[train_size:] - train_extraction_data = ExtractorBase.get_extraction_data_from_samples(extraction_data, train_set) - test_extraction_data = ExtractorBase.get_extraction_data_from_samples(extraction_data, test_set) - return train_extraction_data, test_extraction_data - - def can_be_used(self, extraction_data: ExtractionData) -> bool: - for sample in extraction_data.samples: - if sample.pdf_data: - return True - - return False diff --git a/src/extractors/pdf_to_text_extractor/methods/FastSegmentSelectorDateParserMethod.py b/src/extractors/pdf_to_text_extractor/methods/FastSegmentSelectorDateParserMethod.py deleted file mode 100644 index 2ef3bfc..0000000 --- a/src/extractors/pdf_to_text_extractor/methods/FastSegmentSelectorDateParserMethod.py +++ /dev/null @@ -1,9 +0,0 @@ -from extractors.pdf_to_text_extractor.methods.FastSegmentSelectorInputWithoutSpaces import ( - FastSegmentSelectorInputWithoutSpaces, -) -from extractors.text_to_text_extractor.methods.DateParserMethod import DateParserMethod - - -class FastSegmentSelectorDateParserMethod(FastSegmentSelectorInputWithoutSpaces): - - SEMANTIC_METHOD = DateParserMethod diff --git a/src/extractors/pdf_to_text_extractor/methods/FastSegmentSelectorDateParserWithBreaksMethod.py b/src/extractors/pdf_to_text_extractor/methods/FastSegmentSelectorDateParserWithBreaksMethod.py deleted file mode 100644 index 348ca92..0000000 --- a/src/extractors/pdf_to_text_extractor/methods/FastSegmentSelectorDateParserWithBreaksMethod.py +++ /dev/null @@ -1,9 +0,0 @@ -from extractors.pdf_to_text_extractor.methods.FastSegmentSelectorInputWithoutSpaces import ( - FastSegmentSelectorInputWithoutSpaces, -) -from extractors.text_to_text_extractor.methods.DateParserWithBreaksMethod import DateParserWithBreaksMethod - - -class FastSegmentSelectorDateParserWithBreaksMethod(FastSegmentSelectorInputWithoutSpaces): - - SEMANTIC_METHOD = DateParserWithBreaksMethod diff --git a/src/extractors/pdf_to_text_extractor/methods/FastSegmentSelectorInputWithoutSpaces.py b/src/extractors/pdf_to_text_extractor/methods/FastSegmentSelectorInputWithoutSpaces.py deleted file mode 100644 index 965eb92..0000000 --- a/src/extractors/pdf_to_text_extractor/methods/FastSegmentSelectorInputWithoutSpaces.py +++ /dev/null @@ -1,41 +0,0 @@ -from data.PdfDataSegment import PdfDataSegment -from data.PredictionSample import PredictionSample -from extractors.pdf_to_text_extractor.methods.SegmentSelectorSameInputOutputMethod import ( - SegmentSelectorSameInputOutputMethod, -) -from extractors.segment_selector.FastAndPositionsSegmentSelector import FastAndPositionsSegmentSelector -from extractors.text_to_text_extractor.methods.InputWithoutSpaces import InputWithoutSpaces - - -class FastSegmentSelectorInputWithoutSpaces(SegmentSelectorSameInputOutputMethod): - - SEMANTIC_METHOD = InputWithoutSpaces - - def create_segment_selector_model(self, extraction_data): - segments = list() - - for sample in extraction_data.samples: - segments.extend(sample.pdf_data.pdf_data_segments) - - fast_segment_selector = FastAndPositionsSegmentSelector(self.extraction_identifier) - fast_segment_selector.create_model(segments=segments) - return True, "" - - def predict(self, predictions_samples: list[PredictionSample]) -> list[str]: - if not predictions_samples: - return [""] * len(predictions_samples) - - fast_segment_selector = FastAndPositionsSegmentSelector(self.extraction_identifier) - - for sample in predictions_samples: - selected_segments = fast_segment_selector.predict(sample.pdf_data.pdf_data_segments) - self.mark_predicted_segments(selected_segments) - sample.tags_texts = self.get_predicted_texts(sample.pdf_data) - - semantic_metadata_extraction = self.SEMANTIC_METHOD(self.extraction_identifier, self.get_name()) - return semantic_metadata_extraction.predict(predictions_samples) - - @staticmethod - def mark_predicted_segments(segments: list[PdfDataSegment]): - for segment in segments: - segment.ml_label = 1 diff --git a/src/extractors/pdf_to_text_extractor/methods/FastSegmentSelectorMT5TrueCaseEnglishSpanishMethod.py b/src/extractors/pdf_to_text_extractor/methods/FastSegmentSelectorMT5TrueCaseEnglishSpanishMethod.py deleted file mode 100644 index f04d7de..0000000 --- a/src/extractors/pdf_to_text_extractor/methods/FastSegmentSelectorMT5TrueCaseEnglishSpanishMethod.py +++ /dev/null @@ -1,9 +0,0 @@ -from extractors.pdf_to_text_extractor.methods.FastSegmentSelectorInputWithoutSpaces import ( - FastSegmentSelectorInputWithoutSpaces, -) -from extractors.text_to_text_extractor.methods.MT5TrueCaseEnglishSpanishMethod import MT5TrueCaseEnglishSpanishMethod - - -class FastSegmentSelectorMT5TrueCaseEnglishSpanishMethod(FastSegmentSelectorInputWithoutSpaces): - - SEMANTIC_METHOD = MT5TrueCaseEnglishSpanishMethod diff --git a/src/extractors/pdf_to_text_extractor/methods/FastSegmentSelectorRegexMethod.py b/src/extractors/pdf_to_text_extractor/methods/FastSegmentSelectorRegexMethod.py deleted file mode 100644 index a4a3f80..0000000 --- a/src/extractors/pdf_to_text_extractor/methods/FastSegmentSelectorRegexMethod.py +++ /dev/null @@ -1,9 +0,0 @@ -from extractors.pdf_to_text_extractor.methods.FastSegmentSelectorInputWithoutSpaces import ( - FastSegmentSelectorInputWithoutSpaces, -) -from extractors.text_to_text_extractor.methods.RegexMethod import RegexMethod - - -class FastSegmentSelectorRegexMethod(FastSegmentSelectorInputWithoutSpaces): - - SEMANTIC_METHOD = RegexMethod diff --git a/src/extractors/pdf_to_text_extractor/methods/FastSegmentSelectorRegexSubtractionMethod.py b/src/extractors/pdf_to_text_extractor/methods/FastSegmentSelectorRegexSubtractionMethod.py deleted file mode 100644 index 473c939..0000000 --- a/src/extractors/pdf_to_text_extractor/methods/FastSegmentSelectorRegexSubtractionMethod.py +++ /dev/null @@ -1,9 +0,0 @@ -from extractors.pdf_to_text_extractor.methods.FastSegmentSelectorInputWithoutSpaces import ( - FastSegmentSelectorInputWithoutSpaces, -) -from extractors.text_to_text_extractor.methods.RegexSubtractionMethod import RegexSubtractionMethod - - -class FastSegmentSelectorRegexSubtractionMethod(FastSegmentSelectorInputWithoutSpaces): - - SEMANTIC_METHOD = RegexSubtractionMethod diff --git a/src/extractors/pdf_to_text_extractor/methods/FastSegmentSelectorSameInputOutputMethod.py b/src/extractors/pdf_to_text_extractor/methods/FastSegmentSelectorSameInputOutputMethod.py deleted file mode 100644 index 48d8a15..0000000 --- a/src/extractors/pdf_to_text_extractor/methods/FastSegmentSelectorSameInputOutputMethod.py +++ /dev/null @@ -1,9 +0,0 @@ -from extractors.pdf_to_text_extractor.methods.FastSegmentSelectorInputWithoutSpaces import ( - FastSegmentSelectorInputWithoutSpaces, -) -from extractors.text_to_text_extractor.methods.SameInputOutputMethod import SameInputOutputMethod - - -class FastSegmentSelectorSameInputOutputMethod(FastSegmentSelectorInputWithoutSpaces): - - SEMANTIC_METHOD = SameInputOutputMethod diff --git a/src/extractors/pdf_to_text_extractor/methods/FirstDateMethod.py b/src/extractors/pdf_to_text_extractor/methods/FirstDateMethod.py deleted file mode 100644 index 02d0489..0000000 --- a/src/extractors/pdf_to_text_extractor/methods/FirstDateMethod.py +++ /dev/null @@ -1,39 +0,0 @@ -from data.ExtractionData import ExtractionData -from data.PredictionSample import PredictionSample -from extractors.ToTextExtractorMethod import ToTextExtractorMethod - -from extractors.text_to_text_extractor.methods.DateParserMethod import DateParserMethod - - -class FirstDateMethod(ToTextExtractorMethod): - - def train(self, extraction_data: ExtractionData): - languages = [x.labeled_data.language_iso for x in extraction_data.samples] - self.save_json("languages.json", list(set(languages))) - - def predict(self, predictions_samples: list[PredictionSample]) -> list[str]: - predictions = [""] * len(predictions_samples) - languages = self.load_json("languages.json") - for index, prediction_sample in enumerate(predictions_samples): - segments = prediction_sample.pdf_data.pdf_data_segments - - if predictions[index] or not prediction_sample.pdf_data or not segments: - break - - predictions[index] = self.get_date_from_segments(segments, languages) - - return predictions - - def get_date_from_segments(self, segments, languages): - for segment in self.loop_segments(segments): - date = DateParserMethod.get_date([segment.text_content], languages) - if date: - segment.ml_label = 1 - return date.strftime("%Y-%m-%d") - - return "" - - @staticmethod - def loop_segments(segments): - for segment in segments: - yield segment diff --git a/src/extractors/pdf_to_text_extractor/methods/LastDateMethod.py b/src/extractors/pdf_to_text_extractor/methods/LastDateMethod.py deleted file mode 100644 index 50269e3..0000000 --- a/src/extractors/pdf_to_text_extractor/methods/LastDateMethod.py +++ /dev/null @@ -1,9 +0,0 @@ -from extractors.pdf_to_text_extractor.methods.FirstDateMethod import FirstDateMethod - - -class LastDateMethod(FirstDateMethod): - - @staticmethod - def loop_segments(segments): - for segment in reversed(segments): - yield segment diff --git a/src/extractors/pdf_to_text_extractor/methods/PdfToTextRegexMethod.py b/src/extractors/pdf_to_text_extractor/methods/PdfToTextRegexMethod.py deleted file mode 100644 index 4abd9ae..0000000 --- a/src/extractors/pdf_to_text_extractor/methods/PdfToTextRegexMethod.py +++ /dev/null @@ -1,47 +0,0 @@ -import re - -from data.ExtractionData import ExtractionData -from data.PredictionSample import PredictionSample -from extractors.ToTextExtractorMethod import ToTextExtractorMethod -from tdda import * - - -class PdfToTextRegexMethod(ToTextExtractorMethod): - - def train(self, extraction_data: ExtractionData): - samples = [x.labeled_data.label_text for x in extraction_data.samples] - samples = [sample for sample in samples if sample] - regex_list = rexpy.extract(samples) - regex_list = [regex[1:-1] for regex in regex_list] - self.save_json("regex_list.json", regex_list) - - def predict(self, predictions_samples: list[PredictionSample]) -> list[str]: - predictions = [""] * len(predictions_samples) - regex_list = self.load_json("regex_list.json") - for regex in regex_list: - for index, prediction_sample in enumerate(predictions_samples): - segments = prediction_sample.pdf_data.pdf_data_segments - - if predictions[index] or not prediction_sample.pdf_data or not segments: - break - - predictions[index] = self.get_matches(regex, segments) - - return predictions - - def get_matches(self, regex, segments): - match = re.search(regex, self.clean_text(segments[0].text_content)) - if match: - segments[0].ml_label = 1 - return str(match.group()) - - for segment, next_segment in zip(segments, segments[1:]): - text = self.clean_text(segment.text_content + " " + next_segment.text_content) - match = re.search(regex, text) - - if match: - segment.ml_label = 1 - next_segment.ml_label = 1 - return str(match.group()) - - return "" diff --git a/src/extractors/pdf_to_text_extractor/methods/SegmentSelectorDateParserMethod.py b/src/extractors/pdf_to_text_extractor/methods/SegmentSelectorDateParserMethod.py deleted file mode 100644 index 2b3aac9..0000000 --- a/src/extractors/pdf_to_text_extractor/methods/SegmentSelectorDateParserMethod.py +++ /dev/null @@ -1,9 +0,0 @@ -from extractors.pdf_to_text_extractor.methods.SegmentSelectorSameInputOutputMethod import ( - SegmentSelectorSameInputOutputMethod, -) -from extractors.text_to_text_extractor.methods.DateParserMethod import DateParserMethod - - -class SegmentSelectorDateParserMethod(SegmentSelectorSameInputOutputMethod): - - SEMANTIC_METHOD = DateParserMethod diff --git a/src/extractors/pdf_to_text_extractor/methods/SegmentSelectorDateParserWithBreaksMethod.py b/src/extractors/pdf_to_text_extractor/methods/SegmentSelectorDateParserWithBreaksMethod.py deleted file mode 100644 index 0a8d742..0000000 --- a/src/extractors/pdf_to_text_extractor/methods/SegmentSelectorDateParserWithBreaksMethod.py +++ /dev/null @@ -1,7 +0,0 @@ -from extractors.pdf_to_text_extractor.methods.SegmentSelectorDateParserMethod import SegmentSelectorSameInputOutputMethod -from extractors.text_to_text_extractor.methods.DateParserWithBreaksMethod import DateParserWithBreaksMethod - - -class SegmentSelectorDateParserWithBreaksMethod(SegmentSelectorSameInputOutputMethod): - - SEMANTIC_METHOD = DateParserWithBreaksMethod diff --git a/src/extractors/pdf_to_text_extractor/methods/SegmentSelectorInputWithoutSpaces.py b/src/extractors/pdf_to_text_extractor/methods/SegmentSelectorInputWithoutSpaces.py deleted file mode 100644 index 87a5e6a..0000000 --- a/src/extractors/pdf_to_text_extractor/methods/SegmentSelectorInputWithoutSpaces.py +++ /dev/null @@ -1,7 +0,0 @@ -from extractors.pdf_to_text_extractor.methods.SegmentSelectorDateParserMethod import SegmentSelectorSameInputOutputMethod -from extractors.text_to_text_extractor.methods.InputWithoutSpaces import InputWithoutSpaces - - -class SegmentSelectorInputWithoutSpaces(SegmentSelectorSameInputOutputMethod): - - SEMANTIC_METHOD = InputWithoutSpaces diff --git a/src/extractors/pdf_to_text_extractor/methods/SegmentSelectorMT5TrueCaseEnglishSpanishMethod.py b/src/extractors/pdf_to_text_extractor/methods/SegmentSelectorMT5TrueCaseEnglishSpanishMethod.py deleted file mode 100644 index 25fe500..0000000 --- a/src/extractors/pdf_to_text_extractor/methods/SegmentSelectorMT5TrueCaseEnglishSpanishMethod.py +++ /dev/null @@ -1,7 +0,0 @@ -from extractors.pdf_to_text_extractor.methods.SegmentSelectorDateParserMethod import SegmentSelectorSameInputOutputMethod -from extractors.text_to_text_extractor.methods.MT5TrueCaseEnglishSpanishMethod import MT5TrueCaseEnglishSpanishMethod - - -class SegmentSelectorMT5TrueCaseEnglishSpanishMethod(SegmentSelectorSameInputOutputMethod): - - SEMANTIC_METHOD = MT5TrueCaseEnglishSpanishMethod diff --git a/src/extractors/pdf_to_text_extractor/methods/SegmentSelectorRegexMethod.py b/src/extractors/pdf_to_text_extractor/methods/SegmentSelectorRegexMethod.py deleted file mode 100644 index 83872fe..0000000 --- a/src/extractors/pdf_to_text_extractor/methods/SegmentSelectorRegexMethod.py +++ /dev/null @@ -1,7 +0,0 @@ -from extractors.pdf_to_text_extractor.methods.SegmentSelectorDateParserMethod import SegmentSelectorSameInputOutputMethod -from extractors.text_to_text_extractor.methods.RegexMethod import RegexMethod - - -class SegmentSelectorRegexMethod(SegmentSelectorSameInputOutputMethod): - - SEMANTIC_METHOD = RegexMethod diff --git a/src/extractors/pdf_to_text_extractor/methods/SegmentSelectorRegexSubtractionMethod.py b/src/extractors/pdf_to_text_extractor/methods/SegmentSelectorRegexSubtractionMethod.py deleted file mode 100644 index ad8de03..0000000 --- a/src/extractors/pdf_to_text_extractor/methods/SegmentSelectorRegexSubtractionMethod.py +++ /dev/null @@ -1,7 +0,0 @@ -from extractors.pdf_to_text_extractor.methods.SegmentSelectorDateParserMethod import SegmentSelectorSameInputOutputMethod -from extractors.text_to_text_extractor.methods.RegexSubtractionMethod import RegexSubtractionMethod - - -class SegmentSelectorRegexSubtractionMethod(SegmentSelectorSameInputOutputMethod): - - SEMANTIC_METHOD = RegexSubtractionMethod diff --git a/src/extractors/pdf_to_text_extractor/methods/SegmentSelectorSameInputOutputMethod.py b/src/extractors/pdf_to_text_extractor/methods/SegmentSelectorSameInputOutputMethod.py deleted file mode 100644 index b46c1a2..0000000 --- a/src/extractors/pdf_to_text_extractor/methods/SegmentSelectorSameInputOutputMethod.py +++ /dev/null @@ -1,58 +0,0 @@ -from data.ExtractionData import ExtractionData -from data.PdfData import PdfData -from data.PdfDataSegment import PdfDataSegment -from data.PredictionSample import PredictionSample -from extractors.ExtractorBase import ExtractorBase -from extractors.ToTextExtractorMethod import ToTextExtractorMethod -from extractors.segment_selector.SegmentSelector import SegmentSelector -from extractors.text_to_text_extractor.methods.SameInputOutputMethod import SameInputOutputMethod -from send_logs import send_logs - - -class SegmentSelectorSameInputOutputMethod(ToTextExtractorMethod): - - SEMANTIC_METHOD = SameInputOutputMethod - - def train(self, extraction_data: ExtractionData): - samples_with_label_segments_boxes = [x for x in extraction_data.samples if x.labeled_data.label_segments_boxes] - extraction_data_with_samples = ExtractorBase.get_extraction_data_from_samples( - extraction_data, samples_with_label_segments_boxes - ) - success, error = self.create_segment_selector_model(extraction_data_with_samples) - - if not success: - send_logs(extraction_identifier=self.extraction_identifier, message=error) - return - - semantic_metadata_extraction = self.SEMANTIC_METHOD(self.extraction_identifier, self.get_name()) - semantic_metadata_extraction.train(extraction_data_with_samples) - - def predict(self, predictions_samples: list[PredictionSample]) -> list[str]: - segment_selector = SegmentSelector(self.extraction_identifier) - if not segment_selector.model or not predictions_samples: - return [""] * len(predictions_samples) - - segment_selector.set_extraction_segments([x.pdf_data for x in predictions_samples]) - - for sample in predictions_samples: - sample.tags_texts = self.get_predicted_texts(sample.pdf_data) - - semantic_metadata_extraction = self.SEMANTIC_METHOD(self.extraction_identifier, self.get_name()) - return semantic_metadata_extraction.predict(predictions_samples) - - def create_segment_selector_model(self, extraction_data): - segment_selector = SegmentSelector(self.extraction_identifier) - pdfs_data = [sample.pdf_data for sample in extraction_data.samples] - return segment_selector.create_model(pdfs_data=pdfs_data) - - @staticmethod - def get_predicted_texts(pdf_data: PdfData) -> list[str]: - predicted_pdf_segments = [x for x in pdf_data.pdf_data_segments if x.ml_label] - - tags_texts: list[str] = list() - for pdf_segment in predicted_pdf_segments: - for page, token in pdf_data.pdf_features.loop_tokens(): - if pdf_segment.intersects(PdfDataSegment.from_pdf_token(token)): - tags_texts.append(token.content.strip()) - - return tags_texts diff --git a/src/extractors/pdf_to_text_extractor/methods/tests/test_first_date_method.py b/src/extractors/pdf_to_text_extractor/methods/tests/test_first_date_method.py deleted file mode 100644 index a0dce71..0000000 --- a/src/extractors/pdf_to_text_extractor/methods/tests/test_first_date_method.py +++ /dev/null @@ -1,24 +0,0 @@ -from unittest import TestCase - -from data.ExtractionData import ExtractionData -from data.ExtractionIdentifier import ExtractionIdentifier -from data.LabeledData import LabeledData -from data.PredictionSample import PredictionSample -from data.TrainingSample import TrainingSample -from extractors.pdf_to_text_extractor.methods.FirstDateMethod import FirstDateMethod - -extraction_identifier = ExtractionIdentifier(run_name="date_test", extraction_name="date_test") - - -class TestFirstDateMethod(TestCase): - def test_predict_multiple_dates_spanish(self): - text = "Informe no. 52/16 caso 12.521 fondo Maria Laura órdenes guerra y otros Chile 30 de noviembre de 2016" - sample = TrainingSample(labeled_data=LabeledData(label_text="2016-11-30", language_iso="es"), tags_texts=[text]) - - extraction_data = ExtractionData(samples=[sample for _ in range(6)], extraction_identifier=extraction_identifier) - first_date_method = FirstDateMethod(extraction_identifier) - - first_date_method.train(extraction_data) - - predictions = first_date_method.predict([PredictionSample.from_text(text)]) - self.assertEqual(["2016-11-30"], predictions) diff --git a/src/extractors/pdf_to_text_extractor/test/test_pdf_to_text_extractor.py b/src/extractors/pdf_to_text_extractor/test/test_pdf_to_text_extractor.py deleted file mode 100644 index 8c63ff8..0000000 --- a/src/extractors/pdf_to_text_extractor/test/test_pdf_to_text_extractor.py +++ /dev/null @@ -1,98 +0,0 @@ -from unittest import TestCase - -from data.ExtractionData import ExtractionData -from data.ExtractionIdentifier import ExtractionIdentifier -from data.LabeledData import LabeledData -from data.SegmentBox import SegmentBox -from data.TrainingSample import TrainingSample -from extractors.pdf_to_text_extractor.PdfToTextExtractor import PdfToTextExtractor - - -class TestPdfToTextExtractor(TestCase): - TENANT = "multi_option_extraction_test" - extraction_id = "extraction_id" - extraction_identifier = ExtractionIdentifier(run_name=TENANT, extraction_name=extraction_id) - - def test_no_prediction_data(self): - pdf_to_text_extractor = PdfToTextExtractor(self.extraction_identifier) - predictions = pdf_to_text_extractor.get_suggestions([]) - - self.assertEqual(0, len(predictions)) - - @staticmethod - def get_samples(count_with_segments: int, count_without_segments: int): - labeled_data_segments = LabeledData( - label_text="text", label_segments_boxes=[SegmentBox(left=0, top=0, width=1, height=1, page_number=1)] - ) - labeled_data_no_segments = LabeledData(label_text="text") - samples = [TrainingSample(labeled_data=labeled_data_segments)] * count_with_segments - samples += [TrainingSample(labeled_data=labeled_data_no_segments)] * count_without_segments - - return samples - - def test_get_train_test_with_few_samples(self): - pdf_to_text_extractor = PdfToTextExtractor(self.extraction_identifier) - - extraction_data = ExtractionData( - samples=self.get_samples(count_with_segments=4, count_without_segments=5), - extraction_identifier=self.extraction_identifier, - ) - - train_set, test_set = pdf_to_text_extractor.get_train_test_sets(extraction_data) - - self.assertEqual(train_set.extraction_identifier, self.extraction_identifier) - self.assertEqual(test_set.extraction_identifier, self.extraction_identifier) - self.assertEqual(len(train_set.samples), 9) - self.assertEqual(len(test_set.samples), 4) - - def test_get_train_test_without_enough_labeled_segments(self): - pdf_to_text_extractor = PdfToTextExtractor(self.extraction_identifier) - - extraction_data = ExtractionData( - samples=self.get_samples(count_with_segments=9, count_without_segments=11), - extraction_identifier=self.extraction_identifier, - ) - - train_set, test_set = pdf_to_text_extractor.get_train_test_sets(extraction_data) - - self.assertEqual(len(train_set.samples), 20) - self.assertEqual(len(test_set.samples), 9) - - def test_get_train_test_without_labeled_segments(self): - pdf_to_text_extractor = PdfToTextExtractor(self.extraction_identifier) - - extraction_data = ExtractionData( - samples=self.get_samples(count_with_segments=0, count_without_segments=100), - extraction_identifier=self.extraction_identifier, - ) - - train_set, test_set = pdf_to_text_extractor.get_train_test_sets(extraction_data) - - self.assertEqual(len(train_set.samples), 80) - self.assertEqual(len(test_set.samples), 20) - - def test_get_train_test_without_enough_data(self): - pdf_to_text_extractor = PdfToTextExtractor(self.extraction_identifier) - - extraction_data = ExtractionData( - samples=self.get_samples(count_with_segments=100, count_without_segments=100), - extraction_identifier=self.extraction_identifier, - ) - - train_set, test_set = pdf_to_text_extractor.get_train_test_sets(extraction_data) - - self.assertEqual(len(train_set.samples), 180) - self.assertEqual(len(test_set.samples), 20) - - def test_get_train_test_only_labels_with_segments(self): - pdf_to_text_extractor = PdfToTextExtractor(self.extraction_identifier) - - extraction_data = ExtractionData( - samples=self.get_samples(count_with_segments=200, count_without_segments=0), - extraction_identifier=self.extraction_identifier, - ) - - train_set, test_set = pdf_to_text_extractor.get_train_test_sets(extraction_data) - - self.assertEqual(len(train_set.samples), 160) - self.assertEqual(len(test_set.samples), 40) diff --git a/src/extractors/research_multi_option_extraction/clean_data.py b/src/extractors/research_multi_option_extraction/clean_data.py deleted file mode 100644 index 5203f09..0000000 --- a/src/extractors/research_multi_option_extraction/clean_data.py +++ /dev/null @@ -1,56 +0,0 @@ -import pickle -from os.path import join -from pathlib import Path - -from fast_trainer.Paragraph import Paragraph -from fast_trainer.PdfSegment import PdfSegment -from pdf_token_type_labels.TaskMistakes import TaskMistakes -from pdf_token_type_labels.TokenType import TokenType - -from config import ROOT_PATH - - -def is_multi_line(paragraph: Paragraph): - if not paragraph.tokens: - return False - - if paragraph.tokens[0].token_type == TokenType.TITLE: - return True - - paragraph_multi_line = paragraph.tokens[0].bounding_box.bottom < paragraph.tokens[-1].bounding_box.top - return paragraph_multi_line - - -def remove_one_line_paragraph(paragraphs: list[Paragraph]): - multi_line_paragraphs = list() - for paragraph in paragraphs: - if is_multi_line(paragraph): - multi_line_paragraphs.append(paragraph) - - return multi_line_paragraphs - - -def character_density(): - with open(join(ROOT_PATH, "data/paragraphs_cache/cyrilla_58.pickle"), mode="rb") as file: - paragraphs: list[Paragraph] = pickle.load(file) - - pdf_labeled_data_root_path = join(Path(ROOT_PATH).parent, "pdf-labeled-data") - - task_mistakes = TaskMistakes( - pdf_labeled_data_root_path=pdf_labeled_data_root_path, test_id="characeter_density", pdf_name="cyrilla_58" - ) - for paragraph in paragraphs: - segment_top = min([x.bounding_box.top for x in paragraph.tokens]) + 8 - first_line_segment = PdfSegment.from_pdf_tokens([x for x in paragraph.tokens if x.bounding_box.top < segment_top]) - pdf_segment = PdfSegment.from_pdf_tokens(paragraph.tokens) - characters_count = len([x for x in first_line_segment.text_content if x.isalpha()]) - - character_ratio: float = pdf_segment.bounding_box.width / characters_count if characters_count else 0 - - task_mistakes.add(pdf_segment.page_number, pdf_segment.bounding_box, 1, 1, str(round(character_ratio, 1))) - - task_mistakes.save() - - -if __name__ == "__main__": - character_density() diff --git a/src/extractors/research_multi_option_extraction/fuzzy_selector_benchmark.py b/src/extractors/research_multi_option_extraction/fuzzy_selector_benchmark.py deleted file mode 100644 index 9fd50d4..0000000 --- a/src/extractors/research_multi_option_extraction/fuzzy_selector_benchmark.py +++ /dev/null @@ -1,48 +0,0 @@ -from pdf_token_type_labels.TaskMistakes import TaskMistakes -from sklearn.metrics import f1_score - -from data.PredictionSample import PredictionSample -from extractors.pdf_to_multi_option_extractor.PdfMultiOptionMethod import PdfMultiOptionMethod -from extractors.pdf_to_multi_option_extractor.PdfToMultiOptionExtractor import PdfToMultiOptionExtractor -from extractors.segment_selector.evaluate_config import PDF_LABELED_DATA_PATH - -from scripts.pdf_multi_option_classification_benchmark import get_multi_option_benchmark_data - - -def show_mistakes(prediction_samples): - for prediction_sample in prediction_samples: - file_name = prediction_sample.pdf_data.pdf_features.file_type - task_mistakes = TaskMistakes(PDF_LABELED_DATA_PATH, "in_favor_segment_selector", file_name) - for pdf_segment in prediction_sample.pdf_data.pdf_data_segments: - if pdf_segment.ml_label: - task_mistakes.add(pdf_segment.page_number, pdf_segment.bounding_box, 1, 1) - task_mistakes.save() - - -def run(): - task_labeled_data = get_multi_option_benchmark_data(["countries_in_favor"])[0] - - values_list = [x.labeled_data.values for x in task_labeled_data.samples[20:]] - truth_one_hot = PdfMultiOptionMethod.one_hot_to_options_list(values_list, task_labeled_data.options) - prediction_data = [PredictionSample(pdf_data=x.pdf_data) for x in task_labeled_data.samples[20:]] - - training_data = task_labeled_data - training_data.samples = training_data.samples[:20] - - extractor = PdfToMultiOptionExtractor(task_labeled_data.extraction_identifier) - # extractor.create_model(training_data) - suggestions = extractor.get_suggestions(prediction_data) - - show_mistakes(prediction_data) - - values_list = [x.values for x in suggestions] - predictions_one_hot = PdfMultiOptionMethod.one_hot_to_options_list(values_list, task_labeled_data.options) - - performance = 100 * f1_score(truth_one_hot, predictions_one_hot, average="micro") - - print("performance") - print(performance) - - -if __name__ == "__main__": - run() diff --git a/src/extractors/research_multi_option_extraction/fuzzy_wuzzy_method.py b/src/extractors/research_multi_option_extraction/fuzzy_wuzzy_method.py deleted file mode 100644 index bd1aa2f..0000000 --- a/src/extractors/research_multi_option_extraction/fuzzy_wuzzy_method.py +++ /dev/null @@ -1,92 +0,0 @@ -import pickle -from os.path import join -from fuzzywuzzy import fuzz -from fast_trainer.Paragraph import Paragraph -from fast_trainer.PdfSegment import PdfSegment - -from config import ROOT_PATH - -label_data = { - "cejil1": ["Eduardo Ferrer Mac-Gregor Poisot"], - "cejil7": ["Sergio García Ramírez"], - "cejil8": ["Héctor Fix-Zamudio"], - "cejil_b1": ["Sergio García Ramírez"], - "cejil_b2": ["Rafael Nieto Navia"], - "cejil_b3": ["Thomas Buergenthal"], - "cejil_staging1": ["Diego García-Sayán"], - "cejil_staging10": ["Elizabeth O. Benito"], - "cejil_staging12": ["Elizabeth O. Benito"], - "cejil_staging15": ["Elizabeth O. Benito"], - "cejil_staging17": ["Elizabeth O. Benito"], - "cejil_staging2": ["Elizabeth O. Benito"], - "cejil_staging20": ["Elizabeth O. Benito"], - "cejil_staging21": ["Elizabeth O. Benito"], - "cejil_staging24": ["Elizabeth O. Benito"], - "cejil_staging27": ["Elizabeth O. Benito"], - "cejil_staging31": ["Elizabeth O. Benito"], - "cejil_staging4": ["Elizabeth O. Benito"], - "cejil_staging44": ["Elizabeth O. Benito"], - "cejil_staging54": ["Elizabeth O. Benito"], - "cejil_staging55": ["Elizabeth O. Benito"], - "cejil_staging56": ["Elizabeth O. Benito"], - "cejil_staging58": ["L. Patricio Pazmiño Freire"], - "cejil_staging66": ["Elizabeth O. Benito"], - "cejil_staging71": ["Elizabeth O. Benito"], - "cejil_staging72": ["Elizabeth O. Benito"], - "cejil_staging8": ["Joel Hernández", "Esmeralda Test Arosemena Bernal de Troitiño"], -} - - -def load_paragraphs(pdf_name) -> list[Paragraph]: - paragraphs_path = join(ROOT_PATH, f"data/paragraphs_cache/{pdf_name}.pickle") - with open(paragraphs_path, mode="rb") as file: - paragraphs: list[Paragraph] = pickle.load(file) - - return paragraphs - - -options = [ - "Thomas Buergenthal", - "Héctor Fix-Zamudio", - "Eduardo Ferrer Mac-Gregor Poisot", - "Joel Hernández", - "Sergio García Ramírez", - "Rafael Nieto Navia", - "Elizabeth O. Benito", - "L. Patricio Pazmiño Freire", - "Diego García-Sayán", - "Esmeralda Test Arosemena Bernal de Troitiño", -] - - -if __name__ == "__main__": - ratio_threshold = 75 - pdf_paragraphs = dict() - for pdf_name, presidents in label_data.items(): - paragraphs = load_paragraphs(pdf_name) - pdf_paragraphs[pdf_name] = paragraphs - pdf_segments = [PdfSegment.from_pdf_tokens(x.tokens) for x in paragraphs] - is_president = False - for president in [x for x in options if x not in presidents]: - for pdf_segment in pdf_segments: - ratio = fuzz.ratio(president, pdf_segment.text_content) - if ratio > ratio_threshold: - # print(president, pdf_segment.text_content) - is_president = True - break - if is_president: - break - - print(pdf_name, president, is_president) - - # print('done') - # - # pdf_text = "Esmeralda E. Arosemena Bernal de Troitiño" - # option = "Esmeralda Test Arosemena Bernal de Troitiño" - # ratio = fuzz.ratio(pdf_text, option) - # print(ratio) - # - # pdf_text = "Elizabeth Odio" - # option = "Elizabeth blah Odio" - # ratio = fuzz.ratio(pdf_text, option) - # print(ratio) diff --git a/src/extractors/research_multi_option_extraction/get_first_paragraph.py b/src/extractors/research_multi_option_extraction/get_first_paragraph.py deleted file mode 100644 index 9a36072..0000000 --- a/src/extractors/research_multi_option_extraction/get_first_paragraph.py +++ /dev/null @@ -1,21 +0,0 @@ -from fast_trainer.PdfSegment import PdfSegment -from pdf_token_type_labels.TokenType import TokenType - -from pdf_topic_classification.pdf_topic_classification_data import get_labeled_data - -valid_types = [TokenType.TITLE] - - -def get_first_paragraph(): - task_labeled_data = get_labeled_data("cyrilla")[0] - for pdf_labels in task_labeled_data.pdfs_labels[3:]: - pdf_segments = [PdfSegment.from_pdf_tokens(paragraph.tokens) for paragraph in pdf_labels.paragraphs] - pdf_segments = [x for x in pdf_segments if x.segment_type in valid_types] - print(pdf_labels.pdf_name) - print([len(x.text_content) for x in pdf_segments]) - print("\n".join([x.text_content for x in pdf_segments])) - break - - -if __name__ == "__main__": - get_first_paragraph() diff --git a/src/extractors/research_multi_option_extraction/get_summaries.py b/src/extractors/research_multi_option_extraction/get_summaries.py deleted file mode 100644 index ae129e5..0000000 --- a/src/extractors/research_multi_option_extraction/get_summaries.py +++ /dev/null @@ -1,60 +0,0 @@ -import os -from os.path import join -from pathlib import Path - -from fast_trainer.PdfSegment import PdfSegment -from pdf_token_type_labels.TokenType import TokenType -from tqdm import tqdm - -from config import ROOT_PATH -from pdf_topic_classification.clean_data import remove_one_line_paragraph -from pdf_topic_classification.pdf_topic_classification_data import get_labeled_data -from transformers import pipeline - -# summarizer = pipeline("summarization", model="facebook/bart-large-cnn", device="cuda:0") -summarizer = pipeline("summarization", model="Falconsai/text_summarization", device="cuda:0") - -valid_types = [TokenType.TITLE, TokenType.TEXT] - - -def clean_content_pdf_token(texts): - all_text = " ".join(texts) - all_text_words = all_text.split() - clean_words = list() - for word in all_text_words: - clean_word = "".join([x for x in word if x.isalpha()]) - if clean_word: - clean_words.append(clean_word) - return clean_words - - -def get_text(texts: list[str]) -> str: - texts = clean_content_pdf_token(texts) - total_text = "" - final_texts: list[str] = list() - for text in texts: - if len(total_text + " " + text) > 1000: - break - - total_text += " " + text - final_texts.append(text) - - return " ".join(final_texts) - - -def get_summaries(): - task_labeled_data = get_labeled_data("cyrilla")[0] - for pdf_labels in tqdm(task_labeled_data.pdfs_labels): - path = Path(join(ROOT_PATH, "data", "summaries", f"{pdf_labels.pdf_name}.txt")) - os.makedirs(path.parent, exist_ok=True) - multi_line_paragraphs = remove_one_line_paragraph(pdf_labels.paragraphs) - pdf_segments = [PdfSegment.from_pdf_tokens(paragraph.tokens) for paragraph in multi_line_paragraphs] - pdf_segments = [x for x in pdf_segments if x.segment_type in valid_types] - texts = [pdf_segment.text_content for pdf_segment in pdf_segments if pdf_segment.segment_type in valid_types] - summary = summarizer(get_text(texts), max_length=130, min_length=30, do_sample=False)[0]["summary_text"] - path.write_text(summary) - print(path) - - -if __name__ == "__main__": - get_summaries() diff --git a/src/extractors/research_multi_option_extraction/label_assistant.py b/src/extractors/research_multi_option_extraction/label_assistant.py deleted file mode 100644 index 11f143f..0000000 --- a/src/extractors/research_multi_option_extraction/label_assistant.py +++ /dev/null @@ -1,10 +0,0 @@ -import typer - - -def main(): - person_name = typer.prompt("Filter string for PDFs") - print(f"Seeing PDF {person_name}") - - -if __name__ == "__main__": - typer.run(main) diff --git a/src/extractors/research_multi_option_extraction/sentence_similarity.py b/src/extractors/research_multi_option_extraction/sentence_similarity.py deleted file mode 100644 index e7f02b5..0000000 --- a/src/extractors/research_multi_option_extraction/sentence_similarity.py +++ /dev/null @@ -1,161 +0,0 @@ -import random -from os.path import join -from time import time - -import numpy as np -from fast_trainer.PdfSegment import PdfSegment -from pdf_token_type_labels.TokenType import TokenType -from sentence_transformers.util import cos_sim - -from sentence_transformers import SentenceTransformer -from sklearn.metrics import f1_score - -from config import ROOT_PATH -from extractors.pdf_to_multi_option_extractor.PdfLabels import PdfLabels -from pdf_topic_classification.pdf_topic_classification_data import get_labeled_data -import lightgbm as lgb - -model = SentenceTransformer("sentence-transformers/all-MiniLM-L6-v2") -valid_types = [TokenType.TEXT, TokenType.LIST_ITEM, TokenType.TITLE, TokenType.SECTION_HEADER, TokenType.CAPTION] - - -def one_hot_to_options_list(options, pdfs_options: list[list[str]]) -> list[list[int]]: - options_one_hot: list[list[int]] = list() - for pdf_options in pdfs_options: - pdf_options_one_hot = [0] * len(options) - - for pdf_option in pdf_options: - if pdf_option in options: - pdf_options_one_hot[options.index(pdf_option)] = 1 - - options_one_hot.append(pdf_options_one_hot) - - return options_one_hot - - -def get_similarity(sentence_1: str, sentence_2: str): - embeddings1 = model.encode(sentence_1, convert_to_tensor=True) - embeddings2 = model.encode(sentence_2, convert_to_tensor=True) - return float(cos_sim(embeddings1, embeddings2)) - - -def get_five_values(values): - return values[:5] + [0] * (5 - len(values)) - - -def get_features(option, pdfs_labels: list[PdfLabels]): - features = list() - for pdf_labels in pdfs_labels: - pdf_segments = [PdfSegment.from_pdf_tokens(paragraph.tokens) for paragraph in pdf_labels.paragraphs] - pdf_segments = [x for x in pdf_segments if x.page_number < 4] - texts_types = [ - (pdf_segment.text_content, pdf_segment.segment_type) - for pdf_segment in pdf_segments - if pdf_segment.segment_type in valid_types - ] - similarities_types = [(get_similarity(option, text), type) for text, type in texts_types] - similarities_titles = [score for score, sentence_type in similarities_types if sentence_type == TokenType.TITLE] - similarities_no_titles = [score for score, sentence_type in similarities_types if sentence_type != TokenType.TITLE] - maximum = max(similarities_types, key=lambda x: x[0]) if similarities_types else (0, TokenType.TEXT) - one_hot_maximum = [1 if index == maximum[1].get_index() else 0 for index in range(len(TokenType))] - scores = [score for score, _ in similarities_types] - average = sum(scores) / len(scores) if scores else 0 - - features.append( - one_hot_maximum - + [maximum[0], average] - + get_five_values(similarities_titles) - + get_five_values(similarities_no_titles) - ) - - return features - - -def get_model_name(option: str): - return join(ROOT_PATH, "data", f"{option.replace(' ', '')}.model") - - -def train_models(task_labeled_data, train_set: list[PdfLabels]): - for option in task_labeled_data.values: - labels = [1 if option in x.labels else 0 for x in train_set] - features = get_features(option, train_set) - lgb_train = lgb.Dataset(np.array(features), labels) - lgb_eval = lgb.Dataset(np.array(features), labels, reference=lgb_train) - - params = { - "boosting_type": "gbdt", - "objective": "regression", - } - - gbm = lgb.train( - params, lgb_train, num_boost_round=20, valid_sets=[lgb_eval], callbacks=[lgb.early_stopping(stopping_rounds=5)] - ) - - gbm.save_model(get_model_name(option)) - - -def get_train_test(task_labeled_data) -> (list[PdfLabels], list[PdfLabels]): - train_size = int(len(task_labeled_data.pdfs_labels) * 0.8) - random.seed(22) - train_set: list[PdfLabels] = random.choices(task_labeled_data.pdfs_labels, k=train_size) - test_set: list[PdfLabels] = [x for x in task_labeled_data.pdfs_labels if x not in train_set] - - train_set = [x for x in train_set if len(x.paragraphs)] - - return train_set, test_set - - -def get_predictions(task_labeled_data, test_set: list[PdfLabels]): - truth_one_hot = one_hot_to_options_list(task_labeled_data.values, [x.labels for x in test_set]) - predictions = list() - for test_pdf in test_set[:5]: - pdf_labels = list() - if not test_pdf.paragraphs: - predictions.append(pdf_labels) - continue - - for option in task_labeled_data.values: - gbm = lgb.Booster(model_file=get_model_name(option)) - features = get_features(option, [test_pdf]) - y_pred = gbm.predict(features) - if y_pred[0] > 0.5: - pdf_labels.append(option) - - predictions.append(pdf_labels) - - predictions_one_hot = one_hot_to_options_list(task_labeled_data.values, predictions) - print(100 * f1_score(truth_one_hot, predictions_one_hot, average="macro")) - - -def run(): - task_labeled_data = get_labeled_data("cyrilla")[0] - - train_set, test_set = get_train_test(task_labeled_data) - - # train_models(task_labeled_data, train_set) - get_predictions(task_labeled_data, test_set) - - -if __name__ == "__main__": - start = time() - print("start") - # run() - print( - get_similarity( - """“electronic communication” means any form of communication transmitted -or communicated electronically and includes any text message, writing, -photograph, picture, recording or other matter that is communicated -electronically;""", - "Freedom of Expression", - ) - ) - print( - get_similarity( - """“electronic communication” means any form of communication transmitted -or communicated electronically and includes any text message, writing, -photograph, picture, recording or other matter that is communicated -electronically;""", - "Privacy", - ) - ) - print("finished in", round(time() - start, 1), "seconds") diff --git a/src/extractors/segment_selector/FastAndPositionsSegmentSelector.py b/src/extractors/segment_selector/FastAndPositionsSegmentSelector.py deleted file mode 100644 index 97ce343..0000000 --- a/src/extractors/segment_selector/FastAndPositionsSegmentSelector.py +++ /dev/null @@ -1,38 +0,0 @@ -from data.PdfDataSegment import PdfDataSegment - -from extractors.segment_selector.FastSegmentSelector import FastSegmentSelector - - -class FastAndPositionsSegmentSelector(FastSegmentSelector): - def get_features(self, segment: PdfDataSegment, segments: list[PdfDataSegment]): - features = list() - text = segment.text_content - - if segment in self.text_segments: - index = self.text_segments.index(segment) - previous_segment_texts = self.clean_texts(self.text_segments[index - 1]) if index > 0 else [] - next_segment_texts = ( - self.clean_texts(self.text_segments[index + 1]) if index + 1 < len(self.text_segments) else [] - ) - else: - index = segments.index(segment) - previous_segment_texts = self.clean_texts(segments[index - 1]) if index > 0 else "" - next_segment_texts = self.clean_texts(segments[index + 1]) if index + 1 < len(segments) else "" - - for word in self.previous_words: - features.append(1 if word in previous_segment_texts else 0) - - for word in self.next_words: - features.append(1 if word in next_segment_texts else 0) - - commas_percentage = len([x for x in text if x == ","]) / len(text) if text else 0 - features.append(commas_percentage) - features.append(segment.page_number) - features.append(segment.bounding_box.top) - features.append(segment.bounding_box.left) - features.append(segment.bounding_box.width) - features.append(segment.bounding_box.height) - features.append(segment.bounding_box.right) - features.append(segment.bounding_box.bottom) - - return features diff --git a/src/extractors/segment_selector/FastSegmentSelector.py b/src/extractors/segment_selector/FastSegmentSelector.py deleted file mode 100644 index c3bc839..0000000 --- a/src/extractors/segment_selector/FastSegmentSelector.py +++ /dev/null @@ -1,172 +0,0 @@ -import json -import os -import shutil -from collections import Counter -from os.path import join, exists -from pathlib import Path - -import numpy as np -from pdf_token_type_labels.TokenType import TokenType - -from data.ExtractionIdentifier import ExtractionIdentifier -from data.PdfData import PdfData -from data.PdfDataSegment import PdfDataSegment -import lightgbm as lgb - -from extractors.segment_selector.SegmentSelectorBase import SegmentSelectorBase - - -class FastSegmentSelector(SegmentSelectorBase): - def __init__(self, extraction_identifier: ExtractionIdentifier, method_name: str = ""): - super().__init__(extraction_identifier, method_name) - self.text_types = [TokenType.TEXT, TokenType.LIST_ITEM, TokenType.TITLE, TokenType.SECTION_HEADER, TokenType.CAPTION] - self.previous_words, self.next_words, self.text_segments = [], [], [] - - if method_name: - self.fast_segment_selector_path = Path( - self.extraction_identifier.get_path(), method_name, self.__class__.__name__ - ) - else: - self.fast_segment_selector_path = Path(self.extraction_identifier.get_path(), self.__class__.__name__) - if not self.fast_segment_selector_path.exists(): - os.makedirs(self.fast_segment_selector_path, exist_ok=True) - - self.previous_words_path = join(self.fast_segment_selector_path, "previous_words.txt") - self.next_words_path = join(self.fast_segment_selector_path, "next_words.txt") - self.model_path = join(self.fast_segment_selector_path, "lightgbm_model.txt") - - def prepare_model_folder(self): - shutil.rmtree(Path(self.model_path).parent, ignore_errors=True) - - model_path = self.model_path - - if not exists(Path(model_path).parent): - os.makedirs(Path(model_path).parent) - - return model_path - - def get_features(self, segment: PdfDataSegment, segments: list[PdfDataSegment]): - features = list() - text = segment.text_content - - if segment in self.text_segments: - index = self.text_segments.index(segment) - previous_segment_texts = self.clean_texts(self.text_segments[index - 1]) if index > 0 else [] - next_segment_texts = ( - self.clean_texts(self.text_segments[index + 1]) if index + 1 < len(self.text_segments) else [] - ) - else: - index = segments.index(segment) - previous_segment_texts = self.clean_texts(segments[index - 1]) if index > 0 else "" - next_segment_texts = self.clean_texts(segments[index + 1]) if index + 1 < len(segments) else "" - - for word in self.previous_words: - features.append(1 if word in previous_segment_texts else 0) - - for word in self.next_words: - features.append(1 if word in next_segment_texts else 0) - - commas_percentage = len([x for x in text if x == ","]) / len(text) if text else 0 - features.append(commas_percentage) - - return features - - @staticmethod - def get_most_common_words(train_segments): - counter = Counter() - for segment in train_segments: - counter.update(segment.text_content.lower().split()) - return [x[0] for x in counter.most_common(30)] - - @staticmethod - def clean_texts(pdf_segment: PdfDataSegment) -> list[str]: - clean_letters = [letter for letter in pdf_segment.text_content.lower() if letter.isalnum() or letter == " "] - return "".join(clean_letters).split() - - def save_predictive_common_words(self, segments): - most_common_words = FastSegmentSelector.get_most_common_words(segments) - counter_previous_segment = Counter() - counter_next_segment = Counter() - - for previous_segment, segment, next_segment in zip(segments, segments[1:], segments[2:]): - if not segment.ml_label: - continue - - counter_previous_segment.update([x for x in self.clean_texts(previous_segment) if x not in most_common_words]) - counter_next_segment.update([x for x in self.clean_texts(next_segment) if x not in most_common_words]) - break - - self.previous_words = [x[0] for x in counter_previous_segment.most_common(2)] - self.next_words = [x[0] for x in counter_next_segment.most_common(2)] - - Path(self.previous_words_path).write_text(json.dumps(self.previous_words)) - Path(self.next_words_path).write_text(json.dumps(self.next_words)) - - def create_model(self, segments: list[PdfDataSegment]): - if not segments: - return - - if not self.method_name and Path(self.model_path).exists(): - return - - self.text_segments = [x for x in segments if x.segment_type in self.text_types] - self.save_predictive_common_words(self.text_segments) - - x, y = self.get_x_y(segments) - - if x.size == 0 or x[0].size == 0: - return - - train_data = lgb.Dataset(x, y) - num_round = 50 - - light_gbm_model = lgb.train({}, train_data, num_round) - light_gbm_model.save_model(self.model_path) - - def get_x_y(self, segments): - x_rows = [] - y = [] - - for segment in segments: - x_rows.append(self.get_features(segment, segments)) - y.append(segment.ml_label) - - x_train = np.zeros((len(x_rows), len(x_rows[0]) if x_rows else 0)) - for i, v in enumerate(x_rows): - x_train[i] = v - - return x_train, y - - def predict(self, segments): - if not exists(self.model_path) or not segments: - return [] - - self.text_segments = [x for x in segments if x.segment_type in self.text_types] - self.load_repeated_words() - - x, y = self.get_x_y(segments) - - if x.size == 0 or x[0].size == 0: - return [] - - model = lgb.Booster(model_file=self.model_path) - predictions = model.predict(x) - - return [segment for i, segment in enumerate(segments) if predictions[i] > 0.5] - - def load_repeated_words(self): - self.previous_words = [] - self.next_words = [] - - if exists(self.previous_words_path): - self.previous_words = json.loads(Path(self.previous_words_path).read_text()) - - if exists(self.next_words_path): - self.next_words = json.loads(Path(self.next_words_path).read_text()) - - def get_predictions_for_performance(self, training_set: list[PdfData], test_set: list[PdfData]) -> list[int]: - training_segments = [x for pdf_data in training_set for x in pdf_data.pdf_data_segments] - test_segments = [x for pdf_data in test_set for x in pdf_data.pdf_data_segments] - self.create_model(training_segments) - predictions = self.predict(test_segments) - return [1 if segment in predictions else 0 for segment in test_segments] diff --git a/src/extractors/segment_selector/ParagraphSegmentBox.py b/src/extractors/segment_selector/ParagraphSegmentBox.py deleted file mode 100644 index 73c5659..0000000 --- a/src/extractors/segment_selector/ParagraphSegmentBox.py +++ /dev/null @@ -1,11 +0,0 @@ -from pdf_token_type_labels.TokenType import TokenType -from pydantic import BaseModel - - -class ParagraphSegmentBox(BaseModel): - left: float - top: float - width: float - height: float - page_number: int - type: TokenType = TokenType.TEXT diff --git a/src/extractors/segment_selector/Paragraphs.py b/src/extractors/segment_selector/Paragraphs.py deleted file mode 100644 index 72b2d40..0000000 --- a/src/extractors/segment_selector/Paragraphs.py +++ /dev/null @@ -1,9 +0,0 @@ -from pydantic import BaseModel - -from extractors.segment_selector.ParagraphSegmentBox import ParagraphSegmentBox - - -class Paragraphs(BaseModel): - page_width: int - page_height: int - paragraphs: list[ParagraphSegmentBox] diff --git a/src/extractors/segment_selector/SegmentSelector.py b/src/extractors/segment_selector/SegmentSelector.py deleted file mode 100644 index 4ecc023..0000000 --- a/src/extractors/segment_selector/SegmentSelector.py +++ /dev/null @@ -1,77 +0,0 @@ -import shutil -import lightgbm as lgb - -from os import makedirs -from os.path import join, exists -from pathlib import Path - -from data.ExtractionIdentifier import ExtractionIdentifier -from data.PdfData import PdfData -from extractors.segment_selector.SegmentSelectorBase import SegmentSelectorBase -from extractors.segment_selector.methods.lightgbm_frequent_words.LightgbmFrequentWords import LightgbmFrequentWords - - -class SegmentSelector(SegmentSelectorBase): - def __init__(self, extraction_identifier: ExtractionIdentifier, method_name: str = ""): - super().__init__(extraction_identifier, method_name) - self.model_path = join(self.extraction_identifier.get_path(), "segment_predictor_model", "model.model") - self.model = self.load_model() - - def load_model(self): - if exists(self.model_path): - return lgb.Booster(model_file=self.model_path) - - return None - - def prepare_model_folder(self): - shutil.rmtree(Path(self.model_path).parent, ignore_errors=True) - - model_path = self.model_path - - if not exists(Path(model_path).parent): - makedirs(Path(model_path).parent) - - return model_path - - def create_model(self, pdfs_data: list[PdfData]) -> (bool, str): - if Path(self.model_path).exists(): - return True, "" - - valid_pdf_data = self.get_valid_pdfs_data(pdfs_data) - - if not valid_pdf_data: - return False, "No data to create model, no segments" - - self.model = LightgbmFrequentWords().create_model(valid_pdf_data, self.model_path) - - if not self.model: - return False, "No data to create model, no model created" - - self.model.save_model(self.model_path, num_iteration=self.model.best_iteration) - return True, "" - - @staticmethod - def get_valid_pdfs_data(pdfs_data: list[PdfData]) -> list[PdfData]: - valid_pdf_data = list() - for pdf_data in pdfs_data: - if not pdf_data.pdf_features or not pdf_data.pdf_data_segments: - continue - - valid_pdf_data.append(pdf_data) - return valid_pdf_data - - def set_extraction_segments(self, pdfs_data: list[PdfData]): - if not self.model: - return - - predictions = LightgbmFrequentWords().predict(self.model, pdfs_data, self.model_path) - index = 0 - for pdf_metadata in pdfs_data: - for segment in pdf_metadata.pdf_data_segments: - segment.ml_label = 1 if predictions[index] > 0.5 else 0 - index += 1 - - def get_predictions_for_performance(self, training_set: list[PdfData], test_set: list[PdfData]) -> list[int]: - self.create_model(training_set) - self.set_extraction_segments(test_set) - return [segment.ml_label for pdf_data in test_set for segment in pdf_data.pdf_data_segments] diff --git a/src/extractors/segment_selector/SegmentSelectorBase.py b/src/extractors/segment_selector/SegmentSelectorBase.py deleted file mode 100644 index 1107b63..0000000 --- a/src/extractors/segment_selector/SegmentSelectorBase.py +++ /dev/null @@ -1,22 +0,0 @@ -from abc import ABC, abstractmethod - -from data.ExtractionIdentifier import ExtractionIdentifier -from data.PdfData import PdfData - - -class SegmentSelectorBase(ABC): - - def __init__(self, extraction_identifier: ExtractionIdentifier, method_name: str = ""): - self.extraction_identifier = extraction_identifier - self.method_name = method_name - - @abstractmethod - def prepare_model_folder(self): - pass - - @abstractmethod - def get_predictions_for_performance(self, training_set: list[PdfData], test_set: list[PdfData]) -> list[int]: - pass - - def get_name(self): - return self.__class__.__name__ diff --git a/src/extractors/segment_selector/SegmentSelectorResults.py b/src/extractors/segment_selector/SegmentSelectorResults.py deleted file mode 100644 index 507f4ac..0000000 --- a/src/extractors/segment_selector/SegmentSelectorResults.py +++ /dev/null @@ -1,21 +0,0 @@ -from pydantic import BaseModel - - -class SegmentSelectorResults(BaseModel): - method: str - dataset: str - samples: int - precision: float - recall: float - seconds: int - - @staticmethod - def get_padding(): - return { - "method": "right", - "dataset": "right", - "samples": "left", - "precision": "left", - "recall": "left", - "seconds": "left", - } diff --git a/src/extractors/segment_selector/copy_method.py b/src/extractors/segment_selector/copy_method.py deleted file mode 100644 index 761a888..0000000 --- a/src/extractors/segment_selector/copy_method.py +++ /dev/null @@ -1,47 +0,0 @@ -import shutil -from pathlib import Path - -METHOD_TO_COPY = "base_frequent_words" -NEW_METHOD_NAME = "titles_history" - -METHODS_FOLDER = Path("methods").resolve() - - -def to_pascal_case(snake_str): - return "".join([x.title() for x in snake_str.split("_")]) - - -def replace_string_in_file(file_path: str, old_text: str, new_text: str): - fin = open(file_path, "rt") - data = fin.read() - data = data.replace(old_text, new_text) - fin.close() - fin = open(file_path, "wt") - fin.write(data) - fin.close() - - -def copy_method(): - old_folder = f"{METHODS_FOLDER}/{METHOD_TO_COPY}" - new_folder = f"{METHODS_FOLDER}/{NEW_METHOD_NAME}" - - print(old_folder, "old_folder") - print(new_folder, "new_folder") - - old_class_name = to_pascal_case(METHOD_TO_COPY) - new_class_name = to_pascal_case(NEW_METHOD_NAME) - - print(old_class_name, "old_class_name") - print(new_class_name, "new_class_name") - - shutil.copytree(old_folder, new_folder) - - shutil.move(f"{new_folder}/{old_class_name}.py", f"{new_folder}/{new_class_name}.py") - shutil.move(f"{new_folder}/Segment{old_class_name}.py", f"{new_folder}/Segment{new_class_name}.py") - replace_string_in_file(f"{new_folder}/{new_class_name}.py", old_class_name, new_class_name) - replace_string_in_file(f"{new_folder}/{new_class_name}.py", METHOD_TO_COPY, NEW_METHOD_NAME) - replace_string_in_file(f"{new_folder}/Segment{new_class_name}.py", old_class_name, new_class_name) - - -if __name__ == "__main__": - copy_method() diff --git a/src/extractors/segment_selector/evaluate_config.py b/src/extractors/segment_selector/evaluate_config.py deleted file mode 100644 index baa3ded..0000000 --- a/src/extractors/segment_selector/evaluate_config.py +++ /dev/null @@ -1,24 +0,0 @@ -from os.path import join - -from config import ROOT_PATH - -METHODS_TO_EXECUTE = ["titles_history"] - -LABELED_DATA_TO_USE = [ - # "rightdocs_titles", - # "title", - "decides", - "signatories", - "first_paragraph_having_seen", - "secretary", - "president", - "date", - "plan_many_date", - "plan_many_title", - "semantic_president", -] - -SIZES = [3000] -SEED = 42 - -PDF_LABELED_DATA_PATH = join(ROOT_PATH.parent, "pdf-labeled-data") diff --git a/src/extractors/segment_selector/get_data_for_performance.py b/src/extractors/segment_selector/get_data_for_performance.py deleted file mode 100644 index 73b0985..0000000 --- a/src/extractors/segment_selector/get_data_for_performance.py +++ /dev/null @@ -1,70 +0,0 @@ -import json -import pickle -from os import listdir -from os.path import join -from pathlib import Path - -from config import ROOT_PATH -from data.PdfData import PdfData -from data.SegmentBox import SegmentBox -from data.SegmentationData import SegmentationData -from performance_pdf_to_multi_option_report import PDF_DATA_FOLDER_PATH, cache_pdf_data - -LABELED_DATA_PATH = Path(ROOT_PATH.parent, "pdf-labeled-data", "labeled_data", "paragraph_selector") - -DATASETS = [ - "date", - "decides", - "first_paragraph_having_seen", - "plan_many_date", - "plan_many_title", - "president", - "president_empty_labels", - "rightdocs_titles", - "secretary", - "semantic_president", - "signatories", -] - - -def get_data_for_performance(filter_datasets: list[str] = None) -> dict[str, list[PdfData]]: - if filter_datasets: - filtered_datasets = [x for x in DATASETS if x in filter_datasets] - else: - filtered_datasets = DATASETS - - pdf_data_per_dataset = {} - for dataset in filtered_datasets: - pdf_data_per_dataset[dataset] = [] - for pdf_name in listdir(Path(LABELED_DATA_PATH, dataset)): - pickle_path = join(PDF_DATA_FOLDER_PATH, f"{pdf_name}.pickle") - if Path(pickle_path).exists(): - with open(pickle_path, mode="rb") as file: - pdf_data: PdfData = pickle.load(file) - else: - pdf_data: PdfData = cache_pdf_data(pdf_name, Path(pickle_path)) - - segmentation_data = SegmentationData( - page_width=0, page_height=0, xml_segments_boxes=[], label_segments_boxes=get_labels(dataset, pdf_name) - ) - pdf_data.set_ml_label_from_segmentation_data(segmentation_data) - pdf_data_per_dataset[dataset].append(pdf_data) - - return pdf_data_per_dataset - - -def get_labels(dataset, pdf_name): - label_segments_boxes = [] - labels = json.loads(Path(LABELED_DATA_PATH, dataset, pdf_name, "labels.json").read_text()) - for page in labels["pages"]: - for label in page["labels"]: - label_segments_boxes.append( - SegmentBox( - left=label["left"], - top=label["top"], - width=label["width"], - height=label["height"], - page_number=page["number"], - ) - ) - return label_segments_boxes diff --git a/src/extractors/segment_selector/methods/Modes.py b/src/extractors/segment_selector/methods/Modes.py deleted file mode 100644 index 45eaa88..0000000 --- a/src/extractors/segment_selector/methods/Modes.py +++ /dev/null @@ -1,47 +0,0 @@ -import dataclasses -import hashlib -from statistics import mode - -from data.PdfData import PdfData - - -@dataclasses.dataclass -class Modes: - lines_space_mode: float - left_space_mode: float - right_space_mode: float - font_size_mode: float - font_family_name_mode: str - font_family_mode: int - font_family_mode_normalized: float - pdf_segments: PdfData - - def __init__(self, pdf_segments: PdfData): - self.pdf_segments = pdf_segments - self.set_modes() - - def set_modes(self): - line_spaces, right_spaces, left_spaces = [0], [0], [0] - font_sizes, font_ids = list(), list() - - if self.pdf_segments.pdf_features: - for page, token in self.pdf_segments.pdf_features.loop_tokens(): - right_spaces.append(page.page_width - token.bounding_box.right) - left_spaces.append(token.bounding_box.left) - line_spaces.append(token.bounding_box.bottom) - font_sizes.append(token.font.font_size) - font_ids.append(token.font.font_id) - - self.font_size_mode = mode(font_sizes) if font_sizes else 0 - self.font_family_name_mode = mode(font_ids) if font_ids else "" - self.font_family_mode = abs( - int( - str(hashlib.sha256(self.font_family_name_mode.encode("utf-8")).hexdigest())[:8], - 16, - ) - ) - self.font_family_mode_normalized = float(f"{str(self.font_family_mode)[0]}.{str(self.font_family_mode)[1:]}") - - self.lines_space_mode = mode(line_spaces) - self.left_space_mode = mode(left_spaces) - self.right_space_mode = mode(right_spaces) diff --git a/src/extractors/segment_selector/methods/avoiding_words/AvoidingWords.py b/src/extractors/segment_selector/methods/avoiding_words/AvoidingWords.py deleted file mode 100644 index 3b42d82..0000000 --- a/src/extractors/segment_selector/methods/avoiding_words/AvoidingWords.py +++ /dev/null @@ -1,131 +0,0 @@ -import json -from collections import Counter -from pathlib import Path -from time import time - -import nltk -import numpy as np - -import lightgbm as lgb -from sklearn.metrics import f1_score - -from config import config_logger -from data.PdfData import PdfData -from extractors.segment_selector.methods.avoiding_words.SegmentAvoidingWords import SegmentAvoidingWords - -from nltk.tokenize import word_tokenize -from nltk.corpus import stopwords - -nltk.download("stopwords") - - -class AvoidingWords: - def __init__(self): - self.segments: list[SegmentAvoidingWords] = list() - self.model = None - self.best_cut = 0 - - def create_model(self, training_pdfs_segments: list[PdfData], model_path): - start = time() - self.set_segments(pdfs_segments=training_pdfs_segments) - - config_logger.info(f"Set segments {int(time() - start)} seconds") - - if len(self.segments) == 0: - return None - - self.save_most_frequent_words(model_path) - self.set_most_frequent_words_to_segments(model_path) - start = time() - self.run_light_gbm() - config_logger.info(f"Run lightGBM {int(time() - start)} seconds") - - return self.model - - @staticmethod - def set_model(x_train, y_train): - parameters = dict() - parameters["num_leaves"] = 70 - parameters["feature_fraction"] = 0.9 - parameters["bagging_fraction"] = 0.9 - parameters["bagging_freq"] = 0 - parameters["objective"] = "binary" - parameters["learning_rate"] = 0.05 - parameters["metric"] = "binary_logloss" - parameters["verbose"] = -1 - parameters["boosting_type"] = "gbdt" - - train_data = lgb.Dataset(x_train, y_train) - num_round = 3000 - light_gbm_model = lgb.train(parameters, train_data, num_round) - - return light_gbm_model - - def run_light_gbm(self): - x_train, y_train = self.get_training_data() - self.model = self.set_model(x_train, y_train) - - def get_training_data(self): - y = np.array([]) - x_rows = [] - for segment in self.segments: - x_rows.append(segment.get_features_array()) - y = np.append(y, segment.pdf_segment.ml_label) - - X = np.zeros((len(x_rows), len(x_rows[0]) if x_rows else 0)) - for i, v in enumerate(x_rows): - X[i] = v - - return X, y - - def set_segments(self, pdfs_segments: list[PdfData]): - self.segments = list() - for pdf_features in pdfs_segments: - self.segments.extend(SegmentAvoidingWords.from_pdf_features(pdf_features)) - - def predict(self, model, testing_pdfs_segments: list[PdfData], model_path): - self.set_segments(testing_pdfs_segments) - self.set_most_frequent_words_to_segments(model_path) - x, y = self.get_training_data() - x = x[:, : model.num_feature()] - predictions = model.predict(x) - return predictions - - @staticmethod - def get_performance(predictions, y_truth): - return f1_score(y_truth, [prediction > 0.5 for prediction in predictions]) - - def save_most_frequent_words(self, model_path): - appearing_words = Counter() - for segment in [segment for segment in self.segments if segment.pdf_segment.ml_label]: - text_tokens = word_tokenize(segment.text_content) - appearing_words.update( - [word.lower() for word in text_tokens if word.lower() not in stopwords.words() and word not in ".,"] - ) - - most_repeated_words = [x[0] for x in appearing_words.most_common()[:3]] - - avoiding_words = Counter() - for segment in [segment for segment in self.segments if segment.pdf_segment.ml_label]: - text_tokens = word_tokenize(segment.next_segment.text_content) if segment.next_segment else [] - text_tokens += word_tokenize(segment.previous_segment.text_content) if segment.previous_segment else [] - avoiding_words.update( - [ - word.lower() - for word in text_tokens - if word.lower() not in stopwords.words() and word not in ".," and word.lower() not in appearing_words - ] - ) - - config_logger.info(avoiding_words.most_common()[:4]) - most_repeated_words.extend([x[0] for x in avoiding_words.most_common()[:4]]) - self.get_frequent_words_path(model_path).write_text(json.dumps(most_repeated_words)) - - @staticmethod - def get_frequent_words_path(model_path: str | Path) -> Path: - return Path(str(model_path) + "_frequent_words") - - def set_most_frequent_words_to_segments(self, model_path: str): - most_frequent_words = json.loads(Path(self.get_frequent_words_path(model_path)).read_text()) - for segment in self.segments: - segment.set_most_frequent_words(most_frequent_words) diff --git a/src/extractors/segment_selector/methods/avoiding_words/SegmentAvoidingWords.py b/src/extractors/segment_selector/methods/avoiding_words/SegmentAvoidingWords.py deleted file mode 100755 index 9855c5e..0000000 --- a/src/extractors/segment_selector/methods/avoiding_words/SegmentAvoidingWords.py +++ /dev/null @@ -1,266 +0,0 @@ -import re -from typing import Optional - -import nltk -import numpy as np -from pdf_features.PdfToken import PdfToken -from pdf_token_type_labels.TokenType import TokenType - -from data.PdfDataSegment import PdfDataSegment -from data.PdfData import PdfData -from extractors.segment_selector.methods.Modes import Modes - -nltk.download("punkt") - - -class SegmentAvoidingWords: - def __init__(self, segment_index: int, pdf_segment: PdfDataSegment, pdf_segments: PdfData, modes: Modes): - self.modes = modes - self.previous_title_segment = None - self.previous_segment = None - self.next_segment = None - self.segment_index: float = segment_index - self.confidence: float = 0 - self.page_number = pdf_segment.page_number - self.page_index = pdf_segment.page_number - 1 - self.pdf_segment = pdf_segment - - self.segment_tokens: list[PdfToken] = [ - pdf_token - for _, pdf_token in pdf_segments.pdf_features.loop_tokens() - if self.page_number == pdf_token.page_number and pdf_segment.is_selected(pdf_token.bounding_box) - ] - - if not self.segment_tokens: - for _, pdf_token in pdf_segments.pdf_features.loop_tokens(): - self.segment_tokens = [pdf_token] - break - - self.pdf_segments: PdfData = pdf_segments - self.page_width = self.pdf_segments.pdf_features.pages[0].page_width - self.page_height = self.pdf_segments.pdf_features.pages[0].page_height - self.text_content: str = "" - self.text_len: int = 0 - self.top: float = 0 - self.left: float = 0 - self.right: float = 0 - self.bottom: float = 0 - self.height: float = 0 - self.width: float = 0 - self.font_size: float = 0.0 - self.font_family: str = "" - self.font_color: str = "" - self.line_height: int = 0 - self.numbers_quantity: int = 0 - self.numbers_percentage: float = 0 - self.starts_upper: bool = False - self.starts_number: bool = False - self.starts_number_bar: bool = False - self.starts_letter_dot: bool = False - self.starts_with_square_brackets: bool = False - self.starts_with_roman_numbers: bool = False - self.uppercase: bool = False - self.last_token: PdfDataSegment = None - self.bold: float = False - self.bold_token_number: int = 0 - self.italics: float = False - self.italics_token_number: int = 0 - self.dots_percentage: float = 0 - self.font_sizes = [token.font.font_size for _, token in self.pdf_segments.pdf_features.loop_tokens()] - self.most_frequent_words = list() - self.set_features() - - def set_features(self): - self.font_family = self.segment_tokens[0].font.font_id - self.font_color = self.segment_tokens[0].font.color - self.line_height = self.segment_tokens[0].font.font_size - self.top = self.segment_tokens[0].bounding_box.top - self.left = self.segment_tokens[0].bounding_box.left - self.right = self.segment_tokens[0].bounding_box.right - self.bottom = self.segment_tokens[0].bounding_box.bottom - words: list[str] = list() - - font_sizes = list() - for token in self.segment_tokens: - words.extend(token.content.split()) - self.top = min(self.top, token.bounding_box.top) - self.left = min(self.left, token.bounding_box.left) - self.right = max(self.right, token.bounding_box.left + token.bounding_box.width) - self.bottom = max(self.bottom, token.bounding_box.top + token.bounding_box.height) - self.bold_token_number = self.bold_token_number + 1 if token.font.bold else self.bold_token_number - self.italics_token_number = self.italics_token_number + 1 if token.font.italics else self.italics_token_number - font_sizes.append(token.font.font_size) - if self.token_after_last_token(token): - self.last_token = token - - self.top = self.top / self.page_height - self.bottom = self.bottom / self.page_height - self.right = self.right / self.page_width - self.left = self.left / self.page_width - self.text_content = " ".join(words) - self.text_len = len(self.text_content) - self.dots_percentage = self.text_content.count(".") / self.text_len if self.text_len > 0 else 0 - self.height = self.bottom - self.top - self.width = self.right - self.left - self.font_size = np.mean(font_sizes) - self.numbers_quantity = len(list(filter(lambda x: x.isdigit(), self.text_content))) - self.numbers_percentage = self.numbers_quantity / self.text_len if self.text_len > 0 else 0 - self.bold = self.bold_token_number / len(self.segment_tokens) - self.italics = self.italics_token_number / len(self.segment_tokens) - self.starts_upper = self.text_content[0].isupper() - self.starts_number = self.text_content[0].isdigit() - self.starts_number_bar = len(re.findall(r"^[0-9]\/", self.text_content)) == 1 - self.starts_letter_dot = len(re.findall(r"^[a-zA-Z]\.", self.text_content)) == 1 - self.uppercase = self.text_content.upper() == self.text_content - first_characters = self.text_content.split(" ")[0].split(".")[0] - roman_numbers = "".join(filter(lambda x: x in "IVXLCDM", first_characters)) - if len(roman_numbers) > 0 and roman_numbers == first_characters: - self.starts_with_roman_numbers = True - self.starts_with_square_brackets = self.text_content[0] == "[" - - def get_last_title_features(self): - if not self.previous_title_segment: - return list(np.zeros(22)) - - font_size_mode = sum(self.previous_title_segment.font_sizes) / len(self.previous_title_segment.font_sizes) - - return [ - self.previous_title_segment.segment_index, - len(self.previous_title_segment.multi_option_samples.multi_option_samples) - - self.previous_title_segment.segment_index, - self.previous_title_segment.page_index, - len(self.pdf_segments.pdf_features.pages) - self.previous_title_segment.page_index, - self.previous_title_segment.bold, - self.previous_title_segment.italics, - self.previous_title_segment.text_len, - self.previous_title_segment.top, - self.previous_title_segment.bottom, - self.previous_title_segment.height, - self.previous_title_segment.width, - self.previous_title_segment.font_size / font_size_mode, - self.previous_title_segment.line_height, - self.previous_title_segment.numbers_percentage, - 1 if self.previous_title_segment.starts_upper else 0, - 1 if self.previous_title_segment.starts_number else 0, - self.previous_title_segment.starts_number_bar, - self.previous_title_segment.numbers_quantity, - self.previous_title_segment.starts_with_square_brackets, - self.previous_title_segment.starts_letter_dot, - self.previous_title_segment.dots_percentage, - 1 if self.previous_title_segment.uppercase else 0, - ] - - @staticmethod - def get_other_segment_features(segment: "SegmentAvoidingWords"): - if not segment: - return list(np.zeros(22)) - - font_size_mode = sum(segment.font_sizes) / len(segment.font_sizes) - - return [ - segment.segment_index, - len(segment.pdf_segments.pdf_data_segments) - segment.segment_index, - segment.page_index, - len(segment.pdf_segments.pdf_features.pages) - segment.page_index, - segment.bold, - segment.italics, - segment.text_len, - segment.top, - segment.bottom, - segment.height, - segment.width, - segment.font_size / font_size_mode, - segment.line_height, - segment.numbers_percentage, - 1 if segment.starts_upper else 0, - 1 if segment.starts_number else 0, - segment.starts_number_bar, - segment.numbers_quantity, - segment.starts_with_square_brackets, - segment.starts_letter_dot, - segment.dots_percentage, - 1 if segment.uppercase else 0, - ] - - def get_features_array(self) -> np.array: - font_size_average = sum(self.font_sizes) / len(self.font_sizes) - - features = np.array( - [ - self.segment_index, - self.page_index, - font_size_average, - self.modes.lines_space_mode, - self.modes.font_family_mode_normalized, - self.pdf_segments.pdf_features.pages[0].page_width / 5000, - self.pdf_segments.pdf_features.pages[0].page_height / 5000, - self.modes.left_space_mode / self.page_width, - self.bold, - self.italics, - self.text_len, - self.top, - self.bottom, - self.height, - self.width, - self.font_size / self.modes.font_size_mode if self.modes.font_size_mode else 0, - self.line_height, - self.numbers_percentage, - 1 if self.starts_upper else 0, - 1 if self.starts_number else 0, - self.starts_number_bar, - self.numbers_quantity, - self.starts_with_square_brackets, - self.starts_letter_dot, - self.dots_percentage, - 1 if self.uppercase else 0, - len(self.pdf_segments.pdf_data_segments) - self.segment_index, - len(self.pdf_segments.pdf_features.pages) - self.page_index, - self.pdf_segment.segment_type.get_index(), - ] - + self.get_other_segment_features(self.previous_segment) - + self.get_other_segment_features(self.next_segment) - + self.get_last_title_features() - + self.most_frequent_words - ) - return features - - def token_after_last_token(self, token: PdfToken): - if self.last_token is None: - return True - - if self.last_token.bounding_box.bottom < token.bounding_box.bottom: - return True - - if self.last_token.bounding_box.left < token.bounding_box.left: - return True - - return False - - @staticmethod - def from_pdf_features(pdf_features: PdfData) -> list["SegmentAvoidingWords"]: - modes = Modes(pdf_features) - segments: list["SegmentAvoidingWords"] = list() - for index, pdf_segment in enumerate(pdf_features.pdf_data_segments): - segment_landmarks = SegmentAvoidingWords(index, pdf_segment, pdf_features, modes) - segments.append(segment_landmarks) - - sorted_pdf_segments = sorted(segments, key=lambda x: (x.page_index, x.top)) - - previous_title_segment: Optional[SegmentAvoidingWords] = None - - for sorted_segment in sorted_pdf_segments: - sorted_segment.previous_title_segment = previous_title_segment - if sorted_segment.pdf_segment.segment_type == TokenType.TITLE: - previous_title_segment = sorted_segment - - for index, sorted_segment in enumerate(sorted_pdf_segments): - if 0 < index: - sorted_segment.previous_segment = sorted_pdf_segments[index - 1] - - if index + 1 < len(sorted_pdf_segments): - sorted_segment.next_segment = sorted_pdf_segments[index + 1] - - return segments - - def set_most_frequent_words(self, most_frequent_words: list[str]): - self.most_frequent_words = [1 if w.lower() in self.text_content.lower() else 0 for w in most_frequent_words] diff --git a/src/extractors/segment_selector/methods/base_frequent_words/BaseFrequentWords.py b/src/extractors/segment_selector/methods/base_frequent_words/BaseFrequentWords.py deleted file mode 100644 index fb7efde..0000000 --- a/src/extractors/segment_selector/methods/base_frequent_words/BaseFrequentWords.py +++ /dev/null @@ -1,121 +0,0 @@ -import json -from collections import Counter -from pathlib import Path -from time import time - - -import nltk -import numpy as np - -import lightgbm as lgb -from sklearn.metrics import f1_score - -from config import config_logger -from data.PdfData import PdfData -from extractors.segment_selector.methods.base_frequent_words.SegmentBaseFrequentWords import SegmentBaseFrequentWords - -from nltk.tokenize import word_tokenize -from nltk.corpus import stopwords - -nltk.download("stopwords") - - -class BaseFrequentWords: - def __init__(self): - self.segments: list[SegmentBaseFrequentWords] = list() - self.model = None - self.best_cut = 0 - - def create_model(self, training_pdfs_segments: list[PdfData], model_path): - start = time() - self.set_segments(pdfs_segments=training_pdfs_segments) - - config_logger.info(f"Set segments {int(time() - start)} seconds") - - if len(self.segments) == 0: - return None - - self.save_most_frequent_words(model_path) - self.set_most_frequent_words_to_segments(model_path) - start = time() - self.run_light_gbm() - config_logger.info(f"Run lightGBM {int(time() - start)} seconds") - - return self.model - - @staticmethod - def set_model(x_train, y_train): - parameters = dict() - parameters["num_leaves"] = 70 - parameters["feature_fraction"] = 0.9 - parameters["bagging_fraction"] = 0.9 - parameters["bagging_freq"] = 0 - parameters["objective"] = "binary" - parameters["learning_rate"] = 0.05 - parameters["metric"] = "binary_logloss" - parameters["verbose"] = -1 - parameters["boosting_type"] = "gbdt" - - train_data = lgb.Dataset(x_train, y_train) - num_round = 3000 - light_gbm_model = lgb.train(parameters, train_data, num_round) - - return light_gbm_model - - def run_light_gbm(self): - x_train, y_train = self.get_training_data() - self.model = self.set_model(x_train, y_train) - - def get_training_data(self): - y = np.array([]) - x_rows = [] - for segment in self.segments: - x_rows.append(segment.get_features_array()) - y = np.append(y, segment.pdf_segment.ml_label) - - X = np.zeros((len(x_rows), len(x_rows[0]) if x_rows else 0)) - for i, v in enumerate(x_rows): - X[i] = v - - return X, y - - def set_segments(self, pdfs_segments: list[PdfData]): - self.segments = list() - for pdf_features in pdfs_segments: - self.segments.extend(SegmentBaseFrequentWords.from_pdf_features(pdf_features)) - - def predict(self, model, testing_pdfs_segments: list[PdfData], model_path): - self.set_segments(testing_pdfs_segments) - self.set_most_frequent_words_to_segments(model_path) - x, y = self.get_training_data() - x = x[:, : model.num_feature()] - predictions = model.predict(x) - return predictions - - @staticmethod - def get_performance(predictions, y_truth): - return f1_score(y_truth, [prediction > 0.5 for prediction in predictions]) - - def save_most_frequent_words(self, model_path): - count = Counter() - for segment in self.segments: - if segment.pdf_segment.ml_label: - text_tokens = word_tokenize(segment.text_content) - count.update( - [word.lower() for word in text_tokens if word.lower() not in stopwords.words() and word not in ".,"] - ) - config_logger.info("Most repeated words") - most_repeated_words = [x[0] for x in count.most_common()[:3]] - config_logger.info(most_repeated_words) - frequent_words_path = self.get_frequent_words_path(model_path) - Path(frequent_words_path).write_text(json.dumps(most_repeated_words)) - - @staticmethod - def get_frequent_words_path(model_path: str | Path) -> str: - frequent_words_path = str(model_path) + "_frequent_words" - return frequent_words_path - - def set_most_frequent_words_to_segments(self, model_path: str): - most_frequent_words = json.loads(Path(self.get_frequent_words_path(model_path)).read_text()) - for segment in self.segments: - segment.set_most_frequent_words(most_frequent_words) diff --git a/src/extractors/segment_selector/methods/base_frequent_words/SegmentBaseFrequentWords.py b/src/extractors/segment_selector/methods/base_frequent_words/SegmentBaseFrequentWords.py deleted file mode 100755 index f419a6c..0000000 --- a/src/extractors/segment_selector/methods/base_frequent_words/SegmentBaseFrequentWords.py +++ /dev/null @@ -1,266 +0,0 @@ -import re -from typing import Optional - -import nltk -import numpy as np -from pdf_features.PdfToken import PdfToken -from pdf_token_type_labels.TokenType import TokenType - -from data.PdfDataSegment import PdfDataSegment -from data.PdfData import PdfData -from extractors.segment_selector.methods.Modes import Modes - -nltk.download("punkt") - - -class SegmentBaseFrequentWords: - def __init__(self, segment_index: int, pdf_segment: PdfDataSegment, pdf_segments: PdfData, modes: Modes): - self.modes = modes - self.previous_title_segment = None - self.previous_segment = None - self.next_segment = None - self.segment_index: float = segment_index - self.confidence: float = 0 - self.page_number = pdf_segment.page_number - self.page_index = pdf_segment.page_number - 1 - self.pdf_segment = pdf_segment - - self.segment_tokens: list[PdfToken] = [ - pdf_token - for _, pdf_token in pdf_segments.pdf_features.loop_tokens() - if self.page_number == pdf_token.page_number and pdf_segment.is_selected(pdf_token.bounding_box) - ] - - if not self.segment_tokens: - for _, pdf_token in pdf_segments.pdf_features.loop_tokens(): - self.segment_tokens = [pdf_token] - break - - self.pdf_segments: PdfData = pdf_segments - self.page_width = self.pdf_segments.pdf_features.pages[0].page_width - self.page_height = self.pdf_segments.pdf_features.pages[0].page_height - self.text_content: str = "" - self.text_len: int = 0 - self.top: float = 0 - self.left: float = 0 - self.right: float = 0 - self.bottom: float = 0 - self.height: float = 0 - self.width: float = 0 - self.font_size: float = 0.0 - self.font_family: str = "" - self.font_color: str = "" - self.line_height: int = 0 - self.numbers_quantity: int = 0 - self.numbers_percentage: float = 0 - self.starts_upper: bool = False - self.starts_number: bool = False - self.starts_number_bar: bool = False - self.starts_letter_dot: bool = False - self.starts_with_square_brackets: bool = False - self.starts_with_roman_numbers: bool = False - self.uppercase: bool = False - self.last_token: PdfDataSegment = None - self.bold: float = False - self.bold_token_number: int = 0 - self.italics: float = False - self.italics_token_number: int = 0 - self.dots_percentage: float = 0 - self.font_sizes = [token.font.font_size for _, token in self.pdf_segments.pdf_features.loop_tokens()] - self.most_frequent_words = list() - self.set_features() - - def set_features(self): - self.font_family = self.segment_tokens[0].font.font_id - self.font_color = self.segment_tokens[0].font.color - self.line_height = self.segment_tokens[0].font.font_size - self.top = self.segment_tokens[0].bounding_box.top - self.left = self.segment_tokens[0].bounding_box.left - self.right = self.segment_tokens[0].bounding_box.right - self.bottom = self.segment_tokens[0].bounding_box.bottom - words: list[str] = list() - - font_sizes = list() - for token in self.segment_tokens: - words.extend(token.content.split()) - self.top = min(self.top, token.bounding_box.top) - self.left = min(self.left, token.bounding_box.left) - self.right = max(self.right, token.bounding_box.left + token.bounding_box.width) - self.bottom = max(self.bottom, token.bounding_box.top + token.bounding_box.height) - self.bold_token_number = self.bold_token_number + 1 if token.font.bold else self.bold_token_number - self.italics_token_number = self.italics_token_number + 1 if token.font.italics else self.italics_token_number - font_sizes.append(token.font.font_size) - if self.token_after_last_token(token): - self.last_token = token - - self.top = self.top / self.page_height - self.bottom = self.bottom / self.page_height - self.right = self.right / self.page_width - self.left = self.left / self.page_width - self.text_content = " ".join(words) - self.text_len = len(self.text_content) - self.dots_percentage = self.text_content.count(".") / self.text_len if self.text_len > 0 else 0 - self.height = self.bottom - self.top - self.width = self.right - self.left - self.font_size = np.mean(font_sizes) - self.numbers_quantity = len(list(filter(lambda x: x.isdigit(), self.text_content))) - self.numbers_percentage = self.numbers_quantity / self.text_len if self.text_len > 0 else 0 - self.bold = self.bold_token_number / len(self.segment_tokens) - self.italics = self.italics_token_number / len(self.segment_tokens) - self.starts_upper = self.text_content[0].isupper() - self.starts_number = self.text_content[0].isdigit() - self.starts_number_bar = len(re.findall(r"^[0-9]\/", self.text_content)) == 1 - self.starts_letter_dot = len(re.findall(r"^[a-zA-Z]\.", self.text_content)) == 1 - self.uppercase = self.text_content.upper() == self.text_content - first_characters = self.text_content.split(" ")[0].split(".")[0] - roman_numbers = "".join(filter(lambda x: x in "IVXLCDM", first_characters)) - if len(roman_numbers) > 0 and roman_numbers == first_characters: - self.starts_with_roman_numbers = True - self.starts_with_square_brackets = self.text_content[0] == "[" - - def get_last_title_features(self): - if not self.previous_title_segment: - return list(np.zeros(22)) - - font_size_mode = sum(self.previous_title_segment.font_sizes) / len(self.previous_title_segment.font_sizes) - - return [ - self.previous_title_segment.segment_index, - len(self.previous_title_segment.multi_option_samples.multi_option_samples) - - self.previous_title_segment.segment_index, - self.previous_title_segment.page_index, - len(self.pdf_segments.pdf_features.pages) - self.previous_title_segment.page_index, - self.previous_title_segment.bold, - self.previous_title_segment.italics, - self.previous_title_segment.text_len, - self.previous_title_segment.top, - self.previous_title_segment.bottom, - self.previous_title_segment.height, - self.previous_title_segment.width, - self.previous_title_segment.font_size / font_size_mode, - self.previous_title_segment.line_height, - self.previous_title_segment.numbers_percentage, - 1 if self.previous_title_segment.starts_upper else 0, - 1 if self.previous_title_segment.starts_number else 0, - self.previous_title_segment.starts_number_bar, - self.previous_title_segment.numbers_quantity, - self.previous_title_segment.starts_with_square_brackets, - self.previous_title_segment.starts_letter_dot, - self.previous_title_segment.dots_percentage, - 1 if self.previous_title_segment.uppercase else 0, - ] - - @staticmethod - def get_other_segment_features(segment: "SegmentBaseFrequentWords"): - if not segment: - return list(np.zeros(22)) - - font_size_mode = sum(segment.font_sizes) / len(segment.font_sizes) - - return [ - segment.segment_index, - len(segment.pdf_segments.pdf_data_segments) - segment.segment_index, - segment.page_index, - len(segment.pdf_segments.pdf_features.pages) - segment.page_index, - segment.bold, - segment.italics, - segment.text_len, - segment.top, - segment.bottom, - segment.height, - segment.width, - segment.font_size / font_size_mode, - segment.line_height, - segment.numbers_percentage, - 1 if segment.starts_upper else 0, - 1 if segment.starts_number else 0, - segment.starts_number_bar, - segment.numbers_quantity, - segment.starts_with_square_brackets, - segment.starts_letter_dot, - segment.dots_percentage, - 1 if segment.uppercase else 0, - ] - - def get_features_array(self) -> np.array: - font_size_average = sum(self.font_sizes) / len(self.font_sizes) - - features = np.array( - [ - self.segment_index, - self.page_index, - font_size_average, - self.modes.lines_space_mode, - self.modes.font_family_mode_normalized, - self.pdf_segments.pdf_features.pages[0].page_width / 5000, - self.pdf_segments.pdf_features.pages[0].page_height / 5000, - self.modes.left_space_mode / self.page_width, - self.bold, - self.italics, - self.text_len, - self.top, - self.bottom, - self.height, - self.width, - self.font_size / self.modes.font_size_mode if self.modes.font_size_mode else 0, - self.line_height, - self.numbers_percentage, - 1 if self.starts_upper else 0, - 1 if self.starts_number else 0, - self.starts_number_bar, - self.numbers_quantity, - self.starts_with_square_brackets, - self.starts_letter_dot, - self.dots_percentage, - 1 if self.uppercase else 0, - len(self.pdf_segments.pdf_data_segments) - self.segment_index, - len(self.pdf_segments.pdf_features.pages) - self.page_index, - self.pdf_segment.segment_type.get_index(), - ] - + self.get_other_segment_features(self.previous_segment) - + self.get_other_segment_features(self.next_segment) - + self.get_last_title_features() - + self.most_frequent_words - ) - return features - - def token_after_last_token(self, token: PdfToken): - if self.last_token is None: - return True - - if self.last_token.bounding_box.bottom < token.bounding_box.bottom: - return True - - if self.last_token.bounding_box.left < token.bounding_box.left: - return True - - return False - - @staticmethod - def from_pdf_features(pdf_features: PdfData) -> list["SegmentBaseFrequentWords"]: - modes = Modes(pdf_features) - segments: list["SegmentBaseFrequentWords"] = list() - for index, pdf_segment in enumerate(pdf_features.pdf_data_segments): - segment_landmarks = SegmentBaseFrequentWords(index, pdf_segment, pdf_features, modes) - segments.append(segment_landmarks) - - sorted_pdf_segments = sorted(segments, key=lambda x: (x.page_index, x.top)) - - previous_title_segment: Optional[SegmentBaseFrequentWords] = None - - for sorted_segment in sorted_pdf_segments: - sorted_segment.previous_title_segment = previous_title_segment - if sorted_segment.pdf_segment.segment_type == TokenType.TITLE: - previous_title_segment = sorted_segment - - for index, sorted_segment in enumerate(sorted_pdf_segments): - if 0 < index: - sorted_segment.previous_segment = sorted_pdf_segments[index - 1] - - if index + 1 < len(sorted_pdf_segments): - sorted_segment.next_segment = sorted_pdf_segments[index + 1] - - return segments - - def set_most_frequent_words(self, most_frequent_words: list[str]): - self.most_frequent_words = [1 if w.lower() in self.text_content.lower() else 0 for w in most_frequent_words] diff --git a/src/extractors/segment_selector/methods/best_features/BestFeatures.py b/src/extractors/segment_selector/methods/best_features/BestFeatures.py deleted file mode 100644 index 00faa69..0000000 --- a/src/extractors/segment_selector/methods/best_features/BestFeatures.py +++ /dev/null @@ -1,130 +0,0 @@ -import json -from collections import Counter -from pathlib import Path -from time import time - - -import nltk -import numpy as np - -import lightgbm as lgb -from sklearn.metrics import f1_score - -from config import config_logger -from data.PdfData import PdfData -from extractors.segment_selector.methods.best_features.SegmentBestFeatures import SegmentBestFeatures - -from nltk.tokenize import word_tokenize -from nltk.corpus import stopwords - -nltk.download("stopwords") - - -class BestFeatures: - def __init__(self): - self.segments: list[SegmentBestFeatures] = list() - self.model = None - self.best_cut = 0 - self.model_path: str | Path = "" - - def create_model(self, training_pdfs_segments: list[PdfData], model_path): - self.model_path = model_path - start = time() - self.set_segments(pdfs_segments=training_pdfs_segments) - - config_logger.info(f"Set segments {int(time() - start)} seconds") - - if len(self.segments) == 0: - return None - - self.save_most_frequent_words() - self.set_most_frequent_words_to_segments() - start = time() - self.run_light_gbm() - config_logger.info(f"Run lightGBM {int(time() - start)} seconds") - - return self.model - - def set_model(self, x_train, y_train): - parameters = dict() - parameters["num_leaves"] = 70 - parameters["feature_fraction"] = 0.9 - parameters["bagging_fraction"] = 0.9 - parameters["bagging_freq"] = 0 - parameters["objective"] = "binary" - parameters["learning_rate"] = 0.05 - parameters["metric"] = "binary_logloss" - parameters["verbose"] = -1 - parameters["boosting_type"] = "gbdt" - - train_data = lgb.Dataset(x_train, y_train) - num_round = 3000 - light_gbm_model = lgb.train(parameters, train_data, num_round) - - good_indexes = [i for i, importance in enumerate(light_gbm_model.feature_importance()) if importance > 50] - self.get_best_features_indexes_path().write_text(json.dumps(good_indexes)) - train_data = lgb.Dataset(x_train[:, good_indexes], y_train) - good_indexes_model = lgb.train(parameters, train_data, num_round) - - return good_indexes_model - - def run_light_gbm(self): - x_train, y_train = self.get_training_data() - self.model = self.set_model(x_train, y_train) - - def get_training_data(self): - y = np.array([]) - x_rows = [] - for segment in self.segments: - x_rows.append(segment.get_features_array()) - y = np.append(y, segment.pdf_segment.ml_label) - - X = np.zeros((len(x_rows), len(x_rows[0]) if x_rows else 0)) - for i, v in enumerate(x_rows): - X[i] = v - - return X, y - - def set_segments(self, pdfs_segments: list[PdfData]): - self.segments = list() - for pdf_features in pdfs_segments: - self.segments.extend(SegmentBestFeatures.from_pdf_features(pdf_features)) - - def predict(self, model, testing_pdfs_segments: list[PdfData], model_path): - self.model_path = model_path - self.set_segments(testing_pdfs_segments) - self.set_most_frequent_words_to_segments() - x, y = self.get_training_data() - good_indexes = json.loads(self.get_best_features_indexes_path().read_text()) - x = x[:, good_indexes] - predictions = model.predict(x) - return predictions - - @staticmethod - def get_performance(predictions, y_truth): - return f1_score(y_truth, [prediction > 0.5 for prediction in predictions]) - - def save_most_frequent_words(self): - count = Counter() - for segment in self.segments: - if segment.pdf_segment.ml_label: - text_tokens = word_tokenize(segment.text_content) - count.update( - [word.lower() for word in text_tokens if word.lower() not in stopwords.words() and word not in ".,"] - ) - config_logger.info("Most repeated words") - most_repeated_words = [x[0] for x in count.most_common()[:3]] - config_logger.info(most_repeated_words) - frequent_words_path = self.get_frequent_words_path() - Path(frequent_words_path).write_text(json.dumps(most_repeated_words)) - - def get_frequent_words_path(self) -> str: - return str(self.model_path) + "_frequent_words" - - def get_best_features_indexes_path(self) -> Path: - return Path(str(self.model_path) + "_best_features_indexes") - - def set_most_frequent_words_to_segments(self): - most_frequent_words = json.loads(Path(self.get_frequent_words_path()).read_text()) - for segment in self.segments: - segment.set_most_frequent_words(most_frequent_words) diff --git a/src/extractors/segment_selector/methods/best_features/SegmentBestFeatures.py b/src/extractors/segment_selector/methods/best_features/SegmentBestFeatures.py deleted file mode 100755 index ad8a07a..0000000 --- a/src/extractors/segment_selector/methods/best_features/SegmentBestFeatures.py +++ /dev/null @@ -1,266 +0,0 @@ -import re -from typing import Optional - -import nltk -import numpy as np -from pdf_features.PdfToken import PdfToken -from pdf_token_type_labels.TokenType import TokenType - -from data.PdfDataSegment import PdfDataSegment -from data.PdfData import PdfData -from extractors.segment_selector.methods.Modes import Modes - -nltk.download("punkt") - - -class SegmentBestFeatures: - def __init__(self, segment_index: int, pdf_segment: PdfDataSegment, pdf_segments: PdfData, modes: Modes): - self.modes = modes - self.previous_title_segment = None - self.previous_segment = None - self.next_segment = None - self.segment_index: float = segment_index - self.confidence: float = 0 - self.page_number = pdf_segment.page_number - self.page_index = pdf_segment.page_number - 1 - self.pdf_segment = pdf_segment - - self.segment_tokens: list[PdfToken] = [ - pdf_token - for _, pdf_token in pdf_segments.pdf_features.loop_tokens() - if self.page_number == pdf_token.page_number and pdf_segment.is_selected(pdf_token.bounding_box) - ] - - if not self.segment_tokens: - for _, pdf_token in pdf_segments.pdf_features.loop_tokens(): - self.segment_tokens = [pdf_token] - break - - self.pdf_segments: PdfData = pdf_segments - self.page_width = self.pdf_segments.pdf_features.pages[0].page_width - self.page_height = self.pdf_segments.pdf_features.pages[0].page_height - self.text_content: str = "" - self.text_len: int = 0 - self.top: float = 0 - self.left: float = 0 - self.right: float = 0 - self.bottom: float = 0 - self.height: float = 0 - self.width: float = 0 - self.font_size: float = 0.0 - self.font_family: str = "" - self.font_color: str = "" - self.line_height: int = 0 - self.numbers_quantity: int = 0 - self.numbers_percentage: float = 0 - self.starts_upper: bool = False - self.starts_number: bool = False - self.starts_number_bar: bool = False - self.starts_letter_dot: bool = False - self.starts_with_square_brackets: bool = False - self.starts_with_roman_numbers: bool = False - self.uppercase: bool = False - self.last_token: PdfDataSegment = None - self.bold: float = False - self.bold_token_number: int = 0 - self.italics: float = False - self.italics_token_number: int = 0 - self.dots_percentage: float = 0 - self.font_sizes = [token.font.font_size for _, token in self.pdf_segments.pdf_features.loop_tokens()] - self.most_frequent_words = list() - self.set_features() - - def set_features(self): - self.font_family = self.segment_tokens[0].font.font_id - self.font_color = self.segment_tokens[0].font.color - self.line_height = self.segment_tokens[0].font.font_size - self.top = self.segment_tokens[0].bounding_box.top - self.left = self.segment_tokens[0].bounding_box.left - self.right = self.segment_tokens[0].bounding_box.right - self.bottom = self.segment_tokens[0].bounding_box.bottom - words: list[str] = list() - - font_sizes = list() - for token in self.segment_tokens: - words.extend(token.content.split()) - self.top = min(self.top, token.bounding_box.top) - self.left = min(self.left, token.bounding_box.left) - self.right = max(self.right, token.bounding_box.left + token.bounding_box.width) - self.bottom = max(self.bottom, token.bounding_box.top + token.bounding_box.height) - self.bold_token_number = self.bold_token_number + 1 if token.font.bold else self.bold_token_number - self.italics_token_number = self.italics_token_number + 1 if token.font.italics else self.italics_token_number - font_sizes.append(token.font.font_size) - if self.token_after_last_token(token): - self.last_token = token - - self.top = self.top / self.page_height - self.bottom = self.bottom / self.page_height - self.right = self.right / self.page_width - self.left = self.left / self.page_width - self.text_content = " ".join(words) - self.text_len = len(self.text_content) - self.dots_percentage = self.text_content.count(".") / self.text_len if self.text_len > 0 else 0 - self.height = self.bottom - self.top - self.width = self.right - self.left - self.font_size = np.mean(font_sizes) - self.numbers_quantity = len(list(filter(lambda x: x.isdigit(), self.text_content))) - self.numbers_percentage = self.numbers_quantity / self.text_len if self.text_len > 0 else 0 - self.bold = self.bold_token_number / len(self.segment_tokens) - self.italics = self.italics_token_number / len(self.segment_tokens) - self.starts_upper = self.text_content[0].isupper() - self.starts_number = self.text_content[0].isdigit() - self.starts_number_bar = len(re.findall(r"^[0-9]\/", self.text_content)) == 1 - self.starts_letter_dot = len(re.findall(r"^[a-zA-Z]\.", self.text_content)) == 1 - self.uppercase = self.text_content.upper() == self.text_content - first_characters = self.text_content.split(" ")[0].split(".")[0] - roman_numbers = "".join(filter(lambda x: x in "IVXLCDM", first_characters)) - if len(roman_numbers) > 0 and roman_numbers == first_characters: - self.starts_with_roman_numbers = True - self.starts_with_square_brackets = self.text_content[0] == "[" - - def get_last_title_features(self): - if not self.previous_title_segment: - return list(np.zeros(22)) - - font_size_mode = sum(self.previous_title_segment.font_sizes) / len(self.previous_title_segment.font_sizes) - - return [ - self.previous_title_segment.segment_index, - len(self.previous_title_segment.multi_option_samples.multi_option_samples) - - self.previous_title_segment.segment_index, - self.previous_title_segment.page_index, - len(self.pdf_segments.pdf_features.pages) - self.previous_title_segment.page_index, - self.previous_title_segment.bold, - self.previous_title_segment.italics, - self.previous_title_segment.text_len, - self.previous_title_segment.top, - self.previous_title_segment.bottom, - self.previous_title_segment.height, - self.previous_title_segment.width, - self.previous_title_segment.font_size / font_size_mode, - self.previous_title_segment.line_height, - self.previous_title_segment.numbers_percentage, - 1 if self.previous_title_segment.starts_upper else 0, - 1 if self.previous_title_segment.starts_number else 0, - self.previous_title_segment.starts_number_bar, - self.previous_title_segment.numbers_quantity, - self.previous_title_segment.starts_with_square_brackets, - self.previous_title_segment.starts_letter_dot, - self.previous_title_segment.dots_percentage, - 1 if self.previous_title_segment.uppercase else 0, - ] - - @staticmethod - def get_other_segment_features(segment: "SegmentBestFeatures"): - if not segment: - return list(np.zeros(22)) - - font_size_mode = sum(segment.font_sizes) / len(segment.font_sizes) - - return [ - segment.segment_index, - len(segment.pdf_segments.pdf_data_segments) - segment.segment_index, - segment.page_index, - len(segment.pdf_segments.pdf_features.pages) - segment.page_index, - segment.bold, - segment.italics, - segment.text_len, - segment.top, - segment.bottom, - segment.height, - segment.width, - segment.font_size / font_size_mode, - segment.line_height, - segment.numbers_percentage, - 1 if segment.starts_upper else 0, - 1 if segment.starts_number else 0, - segment.starts_number_bar, - segment.numbers_quantity, - segment.starts_with_square_brackets, - segment.starts_letter_dot, - segment.dots_percentage, - 1 if segment.uppercase else 0, - ] - - def get_features_array(self) -> np.array: - font_size_average = sum(self.font_sizes) / len(self.font_sizes) - - features = np.array( - [ - self.segment_index, - self.page_index, - font_size_average, - self.modes.lines_space_mode, - self.modes.font_family_mode_normalized, - self.pdf_segments.pdf_features.pages[0].page_width / 5000, - self.pdf_segments.pdf_features.pages[0].page_height / 5000, - self.modes.left_space_mode / self.page_width, - self.bold, - self.italics, - self.text_len, - self.top, - self.bottom, - self.height, - self.width, - self.font_size / self.modes.font_size_mode if self.modes.font_size_mode else 0, - self.line_height, - self.numbers_percentage, - 1 if self.starts_upper else 0, - 1 if self.starts_number else 0, - self.starts_number_bar, - self.numbers_quantity, - self.starts_with_square_brackets, - self.starts_letter_dot, - self.dots_percentage, - 1 if self.uppercase else 0, - len(self.pdf_segments.pdf_data_segments) - self.segment_index, - len(self.pdf_segments.pdf_features.pages) - self.page_index, - self.pdf_segment.segment_type.get_index(), - ] - + self.get_other_segment_features(self.previous_segment) - + self.get_other_segment_features(self.next_segment) - + self.get_last_title_features() - + self.most_frequent_words - ) - return features - - def token_after_last_token(self, token: PdfToken): - if self.last_token is None: - return True - - if self.last_token.bounding_box.bottom < token.bounding_box.bottom: - return True - - if self.last_token.bounding_box.left < token.bounding_box.left: - return True - - return False - - @staticmethod - def from_pdf_features(pdf_features: PdfData) -> list["SegmentBestFeatures"]: - modes = Modes(pdf_features) - segments: list["SegmentBestFeatures"] = list() - for index, pdf_segment in enumerate(pdf_features.pdf_data_segments): - segment_landmarks = SegmentBestFeatures(index, pdf_segment, pdf_features, modes) - segments.append(segment_landmarks) - - sorted_pdf_segments = sorted(segments, key=lambda x: (x.page_index, x.top)) - - previous_title_segment: Optional[SegmentBestFeatures] = None - - for sorted_segment in sorted_pdf_segments: - sorted_segment.previous_title_segment = previous_title_segment - if sorted_segment.pdf_segment.segment_type == TokenType.TITLE: - previous_title_segment = sorted_segment - - for index, sorted_segment in enumerate(sorted_pdf_segments): - if 0 < index: - sorted_segment.previous_segment = sorted_pdf_segments[index - 1] - - if index + 1 < len(sorted_pdf_segments): - sorted_segment.next_segment = sorted_pdf_segments[index + 1] - - return segments - - def set_most_frequent_words(self, most_frequent_words: list[str]): - self.most_frequent_words = [1 if w.lower() in self.text_content.lower() else 0 for w in most_frequent_words] diff --git a/src/extractors/segment_selector/methods/best_features_10/BestFeatures10.py b/src/extractors/segment_selector/methods/best_features_10/BestFeatures10.py deleted file mode 100644 index 73bed1c..0000000 --- a/src/extractors/segment_selector/methods/best_features_10/BestFeatures10.py +++ /dev/null @@ -1,130 +0,0 @@ -import json -from collections import Counter -from pathlib import Path -from time import time - - -import nltk -import numpy as np - -import lightgbm as lgb -from sklearn.metrics import f1_score - -from config import config_logger -from data.PdfData import PdfData -from extractors.segment_selector.methods.best_features_10.SegmentBestFeatures10 import SegmentBestFeatures10 - -from nltk.tokenize import word_tokenize -from nltk.corpus import stopwords - -nltk.download("stopwords") - - -class BestFeatures10: - def __init__(self): - self.segments: list[SegmentBestFeatures10] = list() - self.model = None - self.best_cut = 0 - self.model_path: str | Path = "" - - def create_model(self, training_pdfs_segments: list[PdfData], model_path): - self.model_path = model_path - start = time() - self.set_segments(pdfs_segments=training_pdfs_segments) - - config_logger.info(f"Set segments {int(time() - start)} seconds") - - if len(self.segments) == 0: - return None - - self.save_most_frequent_words() - self.set_most_frequent_words_to_segments() - start = time() - self.run_light_gbm() - config_logger.info(f"Run lightGBM {int(time() - start)} seconds") - - return self.model - - def set_model(self, x_train, y_train): - parameters = dict() - parameters["num_leaves"] = 70 - parameters["feature_fraction"] = 0.9 - parameters["bagging_fraction"] = 0.9 - parameters["bagging_freq"] = 0 - parameters["objective"] = "binary" - parameters["learning_rate"] = 0.05 - parameters["metric"] = "binary_logloss" - parameters["verbose"] = -1 - parameters["boosting_type"] = "gbdt" - - train_data = lgb.Dataset(x_train, y_train) - num_round = 3000 - light_gbm_model = lgb.train(parameters, train_data, num_round) - - good_indexes = [i for i, importance in enumerate(light_gbm_model.feature_importance()) if importance > 10] - self.get_best_features_10_indexes_path().write_text(json.dumps(good_indexes)) - train_data = lgb.Dataset(x_train[:, good_indexes], y_train) - good_indexes_model = lgb.train(parameters, train_data, num_round) - - return good_indexes_model - - def run_light_gbm(self): - x_train, y_train = self.get_training_data() - self.model = self.set_model(x_train, y_train) - - def get_training_data(self): - y = np.array([]) - x_rows = [] - for segment in self.segments: - x_rows.append(segment.get_features_array()) - y = np.append(y, segment.pdf_segment.ml_label) - - X = np.zeros((len(x_rows), len(x_rows[0]) if x_rows else 0)) - for i, v in enumerate(x_rows): - X[i] = v - - return X, y - - def set_segments(self, pdfs_segments: list[PdfData]): - self.segments = list() - for pdf_features in pdfs_segments: - self.segments.extend(SegmentBestFeatures10.from_pdf_features(pdf_features)) - - def predict(self, model, testing_pdfs_segments: list[PdfData], model_path): - self.model_path = model_path - self.set_segments(testing_pdfs_segments) - self.set_most_frequent_words_to_segments() - x, y = self.get_training_data() - good_indexes = json.loads(self.get_best_features_10_indexes_path().read_text()) - x = x[:, good_indexes] - predictions = model.predict(x) - return predictions - - @staticmethod - def get_performance(predictions, y_truth): - return f1_score(y_truth, [prediction > 0.5 for prediction in predictions]) - - def save_most_frequent_words(self): - count = Counter() - for segment in self.segments: - if segment.pdf_segment.ml_label: - text_tokens = word_tokenize(segment.text_content) - count.update( - [word.lower() for word in text_tokens if word.lower() not in stopwords.words() and word not in ".,"] - ) - config_logger.info("Most repeated words") - most_repeated_words = [x[0] for x in count.most_common()[:3]] - config_logger.info(most_repeated_words) - frequent_words_path = self.get_frequent_words_path() - Path(frequent_words_path).write_text(json.dumps(most_repeated_words)) - - def get_frequent_words_path(self) -> str: - return str(self.model_path) + "_frequent_words" - - def get_best_features_10_indexes_path(self) -> Path: - return Path(str(self.model_path) + "_best_features_10_indexes") - - def set_most_frequent_words_to_segments(self): - most_frequent_words = json.loads(Path(self.get_frequent_words_path()).read_text()) - for segment in self.segments: - segment.set_most_frequent_words(most_frequent_words) diff --git a/src/extractors/segment_selector/methods/best_features_10/SegmentBestFeatures10.py b/src/extractors/segment_selector/methods/best_features_10/SegmentBestFeatures10.py deleted file mode 100755 index 2308939..0000000 --- a/src/extractors/segment_selector/methods/best_features_10/SegmentBestFeatures10.py +++ /dev/null @@ -1,266 +0,0 @@ -import re -from typing import Optional - -import nltk -import numpy as np -from pdf_features.PdfToken import PdfToken -from pdf_token_type_labels.TokenType import TokenType - -from data.PdfDataSegment import PdfDataSegment -from data.PdfData import PdfData -from extractors.segment_selector.methods.Modes import Modes - -nltk.download("punkt") - - -class SegmentBestFeatures10: - def __init__(self, segment_index: int, pdf_segment: PdfDataSegment, pdf_segments: PdfData, modes: Modes): - self.modes = modes - self.previous_title_segment = None - self.previous_segment = None - self.next_segment = None - self.segment_index: float = segment_index - self.confidence: float = 0 - self.page_number = pdf_segment.page_number - self.page_index = pdf_segment.page_number - 1 - self.pdf_segment = pdf_segment - - self.segment_tokens: list[PdfToken] = [ - pdf_token - for _, pdf_token in pdf_segments.pdf_features.loop_tokens() - if self.page_number == pdf_token.page_number and pdf_segment.is_selected(pdf_token.bounding_box) - ] - - if not self.segment_tokens: - for _, pdf_token in pdf_segments.pdf_features.loop_tokens(): - self.segment_tokens = [pdf_token] - break - - self.pdf_segments: PdfData = pdf_segments - self.page_width = self.pdf_segments.pdf_features.pages[0].page_width - self.page_height = self.pdf_segments.pdf_features.pages[0].page_height - self.text_content: str = "" - self.text_len: int = 0 - self.top: float = 0 - self.left: float = 0 - self.right: float = 0 - self.bottom: float = 0 - self.height: float = 0 - self.width: float = 0 - self.font_size: float = 0.0 - self.font_family: str = "" - self.font_color: str = "" - self.line_height: int = 0 - self.numbers_quantity: int = 0 - self.numbers_percentage: float = 0 - self.starts_upper: bool = False - self.starts_number: bool = False - self.starts_number_bar: bool = False - self.starts_letter_dot: bool = False - self.starts_with_square_brackets: bool = False - self.starts_with_roman_numbers: bool = False - self.uppercase: bool = False - self.last_token: PdfDataSegment = None - self.bold: float = False - self.bold_token_number: int = 0 - self.italics: float = False - self.italics_token_number: int = 0 - self.dots_percentage: float = 0 - self.font_sizes = [token.font.font_size for _, token in self.pdf_segments.pdf_features.loop_tokens()] - self.most_frequent_words = list() - self.set_features() - - def set_features(self): - self.font_family = self.segment_tokens[0].font.font_id - self.font_color = self.segment_tokens[0].font.color - self.line_height = self.segment_tokens[0].font.font_size - self.top = self.segment_tokens[0].bounding_box.top - self.left = self.segment_tokens[0].bounding_box.left - self.right = self.segment_tokens[0].bounding_box.right - self.bottom = self.segment_tokens[0].bounding_box.bottom - words: list[str] = list() - - font_sizes = list() - for token in self.segment_tokens: - words.extend(token.content.split()) - self.top = min(self.top, token.bounding_box.top) - self.left = min(self.left, token.bounding_box.left) - self.right = max(self.right, token.bounding_box.left + token.bounding_box.width) - self.bottom = max(self.bottom, token.bounding_box.top + token.bounding_box.height) - self.bold_token_number = self.bold_token_number + 1 if token.font.bold else self.bold_token_number - self.italics_token_number = self.italics_token_number + 1 if token.font.italics else self.italics_token_number - font_sizes.append(token.font.font_size) - if self.token_after_last_token(token): - self.last_token = token - - self.top = self.top / self.page_height - self.bottom = self.bottom / self.page_height - self.right = self.right / self.page_width - self.left = self.left / self.page_width - self.text_content = " ".join(words) - self.text_len = len(self.text_content) - self.dots_percentage = self.text_content.count(".") / self.text_len if self.text_len > 0 else 0 - self.height = self.bottom - self.top - self.width = self.right - self.left - self.font_size = np.mean(font_sizes) - self.numbers_quantity = len(list(filter(lambda x: x.isdigit(), self.text_content))) - self.numbers_percentage = self.numbers_quantity / self.text_len if self.text_len > 0 else 0 - self.bold = self.bold_token_number / len(self.segment_tokens) - self.italics = self.italics_token_number / len(self.segment_tokens) - self.starts_upper = self.text_content[0].isupper() - self.starts_number = self.text_content[0].isdigit() - self.starts_number_bar = len(re.findall(r"^[0-9]\/", self.text_content)) == 1 - self.starts_letter_dot = len(re.findall(r"^[a-zA-Z]\.", self.text_content)) == 1 - self.uppercase = self.text_content.upper() == self.text_content - first_characters = self.text_content.split(" ")[0].split(".")[0] - roman_numbers = "".join(filter(lambda x: x in "IVXLCDM", first_characters)) - if len(roman_numbers) > 0 and roman_numbers == first_characters: - self.starts_with_roman_numbers = True - self.starts_with_square_brackets = self.text_content[0] == "[" - - def get_last_title_features(self): - if not self.previous_title_segment: - return list(np.zeros(22)) - - font_size_mode = sum(self.previous_title_segment.font_sizes) / len(self.previous_title_segment.font_sizes) - - return [ - self.previous_title_segment.segment_index, - len(self.previous_title_segment.multi_option_samples.multi_option_samples) - - self.previous_title_segment.segment_index, - self.previous_title_segment.page_index, - len(self.pdf_segments.pdf_features.pages) - self.previous_title_segment.page_index, - self.previous_title_segment.bold, - self.previous_title_segment.italics, - self.previous_title_segment.text_len, - self.previous_title_segment.top, - self.previous_title_segment.bottom, - self.previous_title_segment.height, - self.previous_title_segment.width, - self.previous_title_segment.font_size / font_size_mode, - self.previous_title_segment.line_height, - self.previous_title_segment.numbers_percentage, - 1 if self.previous_title_segment.starts_upper else 0, - 1 if self.previous_title_segment.starts_number else 0, - self.previous_title_segment.starts_number_bar, - self.previous_title_segment.numbers_quantity, - self.previous_title_segment.starts_with_square_brackets, - self.previous_title_segment.starts_letter_dot, - self.previous_title_segment.dots_percentage, - 1 if self.previous_title_segment.uppercase else 0, - ] - - @staticmethod - def get_other_segment_features(segment: "SegmentBestFeatures10"): - if not segment: - return list(np.zeros(22)) - - font_size_mode = sum(segment.font_sizes) / len(segment.font_sizes) - - return [ - segment.segment_index, - len(segment.pdf_segments.pdf_data_segments) - segment.segment_index, - segment.page_index, - len(segment.pdf_segments.pdf_features.pages) - segment.page_index, - segment.bold, - segment.italics, - segment.text_len, - segment.top, - segment.bottom, - segment.height, - segment.width, - segment.font_size / font_size_mode, - segment.line_height, - segment.numbers_percentage, - 1 if segment.starts_upper else 0, - 1 if segment.starts_number else 0, - segment.starts_number_bar, - segment.numbers_quantity, - segment.starts_with_square_brackets, - segment.starts_letter_dot, - segment.dots_percentage, - 1 if segment.uppercase else 0, - ] - - def get_features_array(self) -> np.array: - font_size_average = sum(self.font_sizes) / len(self.font_sizes) - - features = np.array( - [ - self.segment_index, - self.page_index, - font_size_average, - self.modes.lines_space_mode, - self.modes.font_family_mode_normalized, - self.pdf_segments.pdf_features.pages[0].page_width / 5000, - self.pdf_segments.pdf_features.pages[0].page_height / 5000, - self.modes.left_space_mode / self.page_width, - self.bold, - self.italics, - self.text_len, - self.top, - self.bottom, - self.height, - self.width, - self.font_size / self.modes.font_size_mode if self.modes.font_size_mode else 0, - self.line_height, - self.numbers_percentage, - 1 if self.starts_upper else 0, - 1 if self.starts_number else 0, - self.starts_number_bar, - self.numbers_quantity, - self.starts_with_square_brackets, - self.starts_letter_dot, - self.dots_percentage, - 1 if self.uppercase else 0, - len(self.pdf_segments.pdf_data_segments) - self.segment_index, - len(self.pdf_segments.pdf_features.pages) - self.page_index, - self.pdf_segment.segment_type.get_index(), - ] - + self.get_other_segment_features(self.previous_segment) - + self.get_other_segment_features(self.next_segment) - + self.get_last_title_features() - + self.most_frequent_words - ) - return features - - def token_after_last_token(self, token: PdfToken): - if self.last_token is None: - return True - - if self.last_token.bounding_box.bottom < token.bounding_box.bottom: - return True - - if self.last_token.bounding_box.left < token.bounding_box.left: - return True - - return False - - @staticmethod - def from_pdf_features(pdf_features: PdfData) -> list["SegmentBestFeatures10"]: - modes = Modes(pdf_features) - segments: list["SegmentBestFeatures10"] = list() - for index, pdf_segment in enumerate(pdf_features.pdf_data_segments): - segment_landmarks = SegmentBestFeatures10(index, pdf_segment, pdf_features, modes) - segments.append(segment_landmarks) - - sorted_pdf_segments = sorted(segments, key=lambda x: (x.page_index, x.top)) - - previous_title_segment: Optional[SegmentBestFeatures10] = None - - for sorted_segment in sorted_pdf_segments: - sorted_segment.previous_title_segment = previous_title_segment - if sorted_segment.pdf_segment.segment_type == TokenType.TITLE: - previous_title_segment = sorted_segment - - for index, sorted_segment in enumerate(sorted_pdf_segments): - if 0 < index: - sorted_segment.previous_segment = sorted_pdf_segments[index - 1] - - if index + 1 < len(sorted_pdf_segments): - sorted_segment.next_segment = sorted_pdf_segments[index + 1] - - return segments - - def set_most_frequent_words(self, most_frequent_words: list[str]): - self.most_frequent_words = [1 if w.lower() in self.text_content.lower() else 0 for w in most_frequent_words] diff --git a/src/extractors/segment_selector/methods/best_features_50/BestFeatures50.py b/src/extractors/segment_selector/methods/best_features_50/BestFeatures50.py deleted file mode 100644 index 7486709..0000000 --- a/src/extractors/segment_selector/methods/best_features_50/BestFeatures50.py +++ /dev/null @@ -1,130 +0,0 @@ -import json -from collections import Counter -from pathlib import Path -from time import time - - -import nltk -import numpy as np - -import lightgbm as lgb -from sklearn.metrics import f1_score - -from config import config_logger -from data.PdfData import PdfData -from extractors.segment_selector.methods.best_features_50.SegmentBestFeatures50 import SegmentBestFeatures50 - -from nltk.tokenize import word_tokenize -from nltk.corpus import stopwords - -nltk.download("stopwords") - - -class BestFeatures50: - def __init__(self): - self.segments: list[SegmentBestFeatures50] = list() - self.model = None - self.best_cut = 0 - self.model_path: str | Path = "" - - def create_model(self, training_pdfs_segments: list[PdfData], model_path): - self.model_path = model_path - start = time() - self.set_segments(pdfs_segments=training_pdfs_segments) - - config_logger.info(f"Set segments {int(time() - start)} seconds") - - if len(self.segments) == 0: - return None - - self.save_most_frequent_words() - self.set_most_frequent_words_to_segments() - start = time() - self.run_light_gbm() - config_logger.info(f"Run lightGBM {int(time() - start)} seconds") - - return self.model - - def set_model(self, x_train, y_train): - parameters = dict() - parameters["num_leaves"] = 70 - parameters["feature_fraction"] = 0.9 - parameters["bagging_fraction"] = 0.9 - parameters["bagging_freq"] = 0 - parameters["objective"] = "binary" - parameters["learning_rate"] = 0.05 - parameters["metric"] = "binary_logloss" - parameters["verbose"] = -1 - parameters["boosting_type"] = "gbdt" - - train_data = lgb.Dataset(x_train, y_train) - num_round = 3000 - light_gbm_model = lgb.train(parameters, train_data, num_round) - - good_indexes = [i for i, importance in enumerate(light_gbm_model.feature_importance()) if importance > 50] - self.get_best_features_50_indexes_path().write_text(json.dumps(good_indexes)) - train_data = lgb.Dataset(x_train[:, good_indexes], y_train) - good_indexes_model = lgb.train(parameters, train_data, num_round) - - return good_indexes_model - - def run_light_gbm(self): - x_train, y_train = self.get_training_data() - self.model = self.set_model(x_train, y_train) - - def get_training_data(self): - y = np.array([]) - x_rows = [] - for segment in self.segments: - x_rows.append(segment.get_features_array()) - y = np.append(y, segment.pdf_segment.ml_label) - - X = np.zeros((len(x_rows), len(x_rows[0]) if x_rows else 0)) - for i, v in enumerate(x_rows): - X[i] = v - - return X, y - - def set_segments(self, pdfs_segments: list[PdfData]): - self.segments = list() - for pdf_features in pdfs_segments: - self.segments.extend(SegmentBestFeatures50.from_pdf_features(pdf_features)) - - def predict(self, model, testing_pdfs_segments: list[PdfData], model_path): - self.model_path = model_path - self.set_segments(testing_pdfs_segments) - self.set_most_frequent_words_to_segments() - x, y = self.get_training_data() - good_indexes = json.loads(self.get_best_features_50_indexes_path().read_text()) - x = x[:, good_indexes] - predictions = model.predict(x) - return predictions - - @staticmethod - def get_performance(predictions, y_truth): - return f1_score(y_truth, [prediction > 0.5 for prediction in predictions]) - - def save_most_frequent_words(self): - count = Counter() - for segment in self.segments: - if segment.pdf_segment.ml_label: - text_tokens = word_tokenize(segment.text_content) - count.update( - [word.lower() for word in text_tokens if word.lower() not in stopwords.words() and word not in ".,"] - ) - config_logger.info("Most repeated words") - most_repeated_words = [x[0] for x in count.most_common()[:3]] - config_logger.info(most_repeated_words) - frequent_words_path = self.get_frequent_words_path() - Path(frequent_words_path).write_text(json.dumps(most_repeated_words)) - - def get_frequent_words_path(self) -> str: - return str(self.model_path) + "_frequent_words" - - def get_best_features_50_indexes_path(self) -> Path: - return Path(str(self.model_path) + "_best_features_50_indexes") - - def set_most_frequent_words_to_segments(self): - most_frequent_words = json.loads(Path(self.get_frequent_words_path()).read_text()) - for segment in self.segments: - segment.set_most_frequent_words(most_frequent_words) diff --git a/src/extractors/segment_selector/methods/best_features_50/SegmentBestFeatures50.py b/src/extractors/segment_selector/methods/best_features_50/SegmentBestFeatures50.py deleted file mode 100755 index 6494daa..0000000 --- a/src/extractors/segment_selector/methods/best_features_50/SegmentBestFeatures50.py +++ /dev/null @@ -1,266 +0,0 @@ -import re -from typing import Optional - -import nltk -import numpy as np -from pdf_features.PdfToken import PdfToken -from pdf_token_type_labels.TokenType import TokenType - -from data.PdfDataSegment import PdfDataSegment -from data.PdfData import PdfData -from extractors.segment_selector.methods.Modes import Modes - -nltk.download("punkt") - - -class SegmentBestFeatures50: - def __init__(self, segment_index: int, pdf_segment: PdfDataSegment, pdf_segments: PdfData, modes: Modes): - self.modes = modes - self.previous_title_segment = None - self.previous_segment = None - self.next_segment = None - self.segment_index: float = segment_index - self.confidence: float = 0 - self.page_number = pdf_segment.page_number - self.page_index = pdf_segment.page_number - 1 - self.pdf_segment = pdf_segment - - self.segment_tokens: list[PdfToken] = [ - pdf_token - for _, pdf_token in pdf_segments.pdf_features.loop_tokens() - if self.page_number == pdf_token.page_number and pdf_segment.is_selected(pdf_token.bounding_box) - ] - - if not self.segment_tokens: - for _, pdf_token in pdf_segments.pdf_features.loop_tokens(): - self.segment_tokens = [pdf_token] - break - - self.pdf_segments: PdfData = pdf_segments - self.page_width = self.pdf_segments.pdf_features.pages[0].page_width - self.page_height = self.pdf_segments.pdf_features.pages[0].page_height - self.text_content: str = "" - self.text_len: int = 0 - self.top: float = 0 - self.left: float = 0 - self.right: float = 0 - self.bottom: float = 0 - self.height: float = 0 - self.width: float = 0 - self.font_size: float = 0.0 - self.font_family: str = "" - self.font_color: str = "" - self.line_height: int = 0 - self.numbers_quantity: int = 0 - self.numbers_percentage: float = 0 - self.starts_upper: bool = False - self.starts_number: bool = False - self.starts_number_bar: bool = False - self.starts_letter_dot: bool = False - self.starts_with_square_brackets: bool = False - self.starts_with_roman_numbers: bool = False - self.uppercase: bool = False - self.last_token: PdfDataSegment = None - self.bold: float = False - self.bold_token_number: int = 0 - self.italics: float = False - self.italics_token_number: int = 0 - self.dots_percentage: float = 0 - self.font_sizes = [token.font.font_size for _, token in self.pdf_segments.pdf_features.loop_tokens()] - self.most_frequent_words = list() - self.set_features() - - def set_features(self): - self.font_family = self.segment_tokens[0].font.font_id - self.font_color = self.segment_tokens[0].font.color - self.line_height = self.segment_tokens[0].font.font_size - self.top = self.segment_tokens[0].bounding_box.top - self.left = self.segment_tokens[0].bounding_box.left - self.right = self.segment_tokens[0].bounding_box.right - self.bottom = self.segment_tokens[0].bounding_box.bottom - words: list[str] = list() - - font_sizes = list() - for token in self.segment_tokens: - words.extend(token.content.split()) - self.top = min(self.top, token.bounding_box.top) - self.left = min(self.left, token.bounding_box.left) - self.right = max(self.right, token.bounding_box.left + token.bounding_box.width) - self.bottom = max(self.bottom, token.bounding_box.top + token.bounding_box.height) - self.bold_token_number = self.bold_token_number + 1 if token.font.bold else self.bold_token_number - self.italics_token_number = self.italics_token_number + 1 if token.font.italics else self.italics_token_number - font_sizes.append(token.font.font_size) - if self.token_after_last_token(token): - self.last_token = token - - self.top = self.top / self.page_height - self.bottom = self.bottom / self.page_height - self.right = self.right / self.page_width - self.left = self.left / self.page_width - self.text_content = " ".join(words) - self.text_len = len(self.text_content) - self.dots_percentage = self.text_content.count(".") / self.text_len if self.text_len > 0 else 0 - self.height = self.bottom - self.top - self.width = self.right - self.left - self.font_size = np.mean(font_sizes) - self.numbers_quantity = len(list(filter(lambda x: x.isdigit(), self.text_content))) - self.numbers_percentage = self.numbers_quantity / self.text_len if self.text_len > 0 else 0 - self.bold = self.bold_token_number / len(self.segment_tokens) - self.italics = self.italics_token_number / len(self.segment_tokens) - self.starts_upper = self.text_content[0].isupper() - self.starts_number = self.text_content[0].isdigit() - self.starts_number_bar = len(re.findall(r"^[0-9]\/", self.text_content)) == 1 - self.starts_letter_dot = len(re.findall(r"^[a-zA-Z]\.", self.text_content)) == 1 - self.uppercase = self.text_content.upper() == self.text_content - first_characters = self.text_content.split(" ")[0].split(".")[0] - roman_numbers = "".join(filter(lambda x: x in "IVXLCDM", first_characters)) - if len(roman_numbers) > 0 and roman_numbers == first_characters: - self.starts_with_roman_numbers = True - self.starts_with_square_brackets = self.text_content[0] == "[" - - def get_last_title_features(self): - if not self.previous_title_segment: - return list(np.zeros(22)) - - font_size_mode = sum(self.previous_title_segment.font_sizes) / len(self.previous_title_segment.font_sizes) - - return [ - self.previous_title_segment.segment_index, - len(self.previous_title_segment.multi_option_samples.multi_option_samples) - - self.previous_title_segment.segment_index, - self.previous_title_segment.page_index, - len(self.pdf_segments.pdf_features.pages) - self.previous_title_segment.page_index, - self.previous_title_segment.bold, - self.previous_title_segment.italics, - self.previous_title_segment.text_len, - self.previous_title_segment.top, - self.previous_title_segment.bottom, - self.previous_title_segment.height, - self.previous_title_segment.width, - self.previous_title_segment.font_size / font_size_mode, - self.previous_title_segment.line_height, - self.previous_title_segment.numbers_percentage, - 1 if self.previous_title_segment.starts_upper else 0, - 1 if self.previous_title_segment.starts_number else 0, - self.previous_title_segment.starts_number_bar, - self.previous_title_segment.numbers_quantity, - self.previous_title_segment.starts_with_square_brackets, - self.previous_title_segment.starts_letter_dot, - self.previous_title_segment.dots_percentage, - 1 if self.previous_title_segment.uppercase else 0, - ] - - @staticmethod - def get_other_segment_features(segment: "SegmentBestFeatures50"): - if not segment: - return list(np.zeros(22)) - - font_size_mode = sum(segment.font_sizes) / len(segment.font_sizes) - - return [ - segment.segment_index, - len(segment.pdf_segments.pdf_data_segments) - segment.segment_index, - segment.page_index, - len(segment.pdf_segments.pdf_features.pages) - segment.page_index, - segment.bold, - segment.italics, - segment.text_len, - segment.top, - segment.bottom, - segment.height, - segment.width, - segment.font_size / font_size_mode, - segment.line_height, - segment.numbers_percentage, - 1 if segment.starts_upper else 0, - 1 if segment.starts_number else 0, - segment.starts_number_bar, - segment.numbers_quantity, - segment.starts_with_square_brackets, - segment.starts_letter_dot, - segment.dots_percentage, - 1 if segment.uppercase else 0, - ] - - def get_features_array(self) -> np.array: - font_size_average = sum(self.font_sizes) / len(self.font_sizes) - - features = np.array( - [ - self.segment_index, - self.page_index, - font_size_average, - self.modes.lines_space_mode, - self.modes.font_family_mode_normalized, - self.pdf_segments.pdf_features.pages[0].page_width / 5000, - self.pdf_segments.pdf_features.pages[0].page_height / 5000, - self.modes.left_space_mode / self.page_width, - self.bold, - self.italics, - self.text_len, - self.top, - self.bottom, - self.height, - self.width, - self.font_size / self.modes.font_size_mode if self.modes.font_size_mode else 0, - self.line_height, - self.numbers_percentage, - 1 if self.starts_upper else 0, - 1 if self.starts_number else 0, - self.starts_number_bar, - self.numbers_quantity, - self.starts_with_square_brackets, - self.starts_letter_dot, - self.dots_percentage, - 1 if self.uppercase else 0, - len(self.pdf_segments.pdf_data_segments) - self.segment_index, - len(self.pdf_segments.pdf_features.pages) - self.page_index, - self.pdf_segment.segment_type.get_index(), - ] - + self.get_other_segment_features(self.previous_segment) - + self.get_other_segment_features(self.next_segment) - + self.get_last_title_features() - + self.most_frequent_words - ) - return features - - def token_after_last_token(self, token: PdfToken): - if self.last_token is None: - return True - - if self.last_token.bounding_box.bottom < token.bounding_box.bottom: - return True - - if self.last_token.bounding_box.left < token.bounding_box.left: - return True - - return False - - @staticmethod - def from_pdf_features(pdf_features: PdfData) -> list["SegmentBestFeatures50"]: - modes = Modes(pdf_features) - segments: list["SegmentBestFeatures50"] = list() - for index, pdf_segment in enumerate(pdf_features.pdf_data_segments): - segment_landmarks = SegmentBestFeatures50(index, pdf_segment, pdf_features, modes) - segments.append(segment_landmarks) - - sorted_pdf_segments = sorted(segments, key=lambda x: (x.page_index, x.top)) - - previous_title_segment: Optional[SegmentBestFeatures50] = None - - for sorted_segment in sorted_pdf_segments: - sorted_segment.previous_title_segment = previous_title_segment - if sorted_segment.pdf_segment.segment_type == TokenType.TITLE: - previous_title_segment = sorted_segment - - for index, sorted_segment in enumerate(sorted_pdf_segments): - if 0 < index: - sorted_segment.previous_segment = sorted_pdf_segments[index - 1] - - if index + 1 < len(sorted_pdf_segments): - sorted_segment.next_segment = sorted_pdf_segments[index + 1] - - return segments - - def set_most_frequent_words(self, most_frequent_words: list[str]): - self.most_frequent_words = [1 if w.lower() in self.text_content.lower() else 0 for w in most_frequent_words] diff --git a/src/extractors/segment_selector/methods/common_words_weights/CommonWordsWeights.py b/src/extractors/segment_selector/methods/common_words_weights/CommonWordsWeights.py deleted file mode 100644 index c255975..0000000 --- a/src/extractors/segment_selector/methods/common_words_weights/CommonWordsWeights.py +++ /dev/null @@ -1,121 +0,0 @@ -import json -from collections import Counter -from pathlib import Path -from time import time - - -import nltk -import numpy as np - -import lightgbm as lgb -from sklearn.metrics import f1_score - -from config import config_logger -from data.PdfData import PdfData -from extractors.segment_selector.methods.common_words_weights.SegmentCommonWordsWeights import SegmentCommonWordsWeights - -from nltk.tokenize import word_tokenize -from nltk.corpus import stopwords - -nltk.download("stopwords") - - -class CommonWordsWeights: - def __init__(self): - self.segments: list[SegmentCommonWordsWeights] = list() - self.model = None - self.best_cut = 0 - - def create_model(self, training_pdfs_segments: list[PdfData], model_path): - start = time() - self.set_segments(pdfs_segments=training_pdfs_segments) - - config_logger.info(f"Set segments {int(time() - start)} seconds") - - if len(self.segments) == 0: - return None - - self.save_most_frequent_words(model_path) - self.set_most_frequent_words_to_segments(model_path) - start = time() - self.run_light_gbm() - config_logger.info(f"Run lightGBM {int(time() - start)} seconds") - - return self.model - - @staticmethod - def set_model(x_train, y_train): - parameters = dict() - parameters["num_leaves"] = 70 - parameters["feature_fraction"] = 0.9 - parameters["bagging_fraction"] = 0.9 - parameters["bagging_freq"] = 0 - parameters["objective"] = "binary" - parameters["learning_rate"] = 0.05 - parameters["metric"] = "binary_logloss" - parameters["verbose"] = -1 - parameters["boosting_type"] = "gbdt" - - train_data = lgb.Dataset(x_train, y_train) - num_round = 3000 - light_gbm_model = lgb.train(parameters, train_data, num_round) - - return light_gbm_model - - def run_light_gbm(self): - x_train, y_train = self.get_training_data() - self.model = self.set_model(x_train, y_train) - - def get_training_data(self): - y = np.array([]) - x_rows = [] - for segment in self.segments: - x_rows.append(segment.get_features_array()) - y = np.append(y, segment.pdf_segment.ml_label) - - X = np.zeros((len(x_rows), len(x_rows[0]) if x_rows else 0)) - for i, v in enumerate(x_rows): - X[i] = v - - return X, y - - def set_segments(self, pdfs_segments: list[PdfData]): - self.segments = list() - for pdf_features in pdfs_segments: - self.segments.extend(SegmentCommonWordsWeights.from_pdf_features(pdf_features)) - - def predict(self, model, testing_pdfs_segments: list[PdfData], model_path): - self.set_segments(testing_pdfs_segments) - self.set_most_frequent_words_to_segments(model_path) - x, y = self.get_training_data() - x = x[:, : model.num_feature()] - predictions = model.predict(x) - return predictions - - @staticmethod - def get_performance(predictions, y_truth): - return f1_score(y_truth, [prediction > 0.5 for prediction in predictions]) - - def save_most_frequent_words(self, model_path): - count = Counter() - for segment in self.segments: - if segment.pdf_segment.ml_label: - text_tokens = word_tokenize(segment.text_content) - count.update( - [word.lower() for word in text_tokens if word.lower() not in stopwords.words() and word not in ".,"] - ) - config_logger.info("Most repeated words") - most_repeated_words = [x[0] for x in count.most_common()[:5]] - config_logger.info(most_repeated_words) - frequent_words_path = self.get_frequent_words_path(model_path) - Path(frequent_words_path).write_text(json.dumps(most_repeated_words)) - - @staticmethod - def get_frequent_words_path(model_path: str | Path) -> str: - frequent_words_path = str(model_path) + "_frequent_words" - return frequent_words_path - - def set_most_frequent_words_to_segments(self, model_path: str): - most_frequent_words = json.loads(Path(self.get_frequent_words_path(model_path)).read_text()) - for segment in self.segments: - segment.set_most_frequent_words(most_frequent_words) diff --git a/src/extractors/segment_selector/methods/common_words_weights/SegmentCommonWordsWeights.py b/src/extractors/segment_selector/methods/common_words_weights/SegmentCommonWordsWeights.py deleted file mode 100755 index 70317b2..0000000 --- a/src/extractors/segment_selector/methods/common_words_weights/SegmentCommonWordsWeights.py +++ /dev/null @@ -1,269 +0,0 @@ -import re -from typing import Optional - -import nltk -import numpy as np -from pdf_features.PdfToken import PdfToken -from pdf_token_type_labels.TokenType import TokenType - -from data.PdfDataSegment import PdfDataSegment -from data.PdfData import PdfData -from extractors.segment_selector.methods.Modes import Modes - -nltk.download("punkt") - - -class SegmentCommonWordsWeights: - def __init__(self, segment_index: int, pdf_segment: PdfDataSegment, pdf_segments: PdfData, modes: Modes): - self.modes = modes - self.previous_title_segment = None - self.previous_segment = None - self.next_segment = None - self.segment_index: float = segment_index - self.confidence: float = 0 - self.page_number = pdf_segment.page_number - self.page_index = pdf_segment.page_number - 1 - self.pdf_segment = pdf_segment - - self.segment_tokens: list[PdfToken] = [ - pdf_token - for _, pdf_token in pdf_segments.pdf_features.loop_tokens() - if self.page_number == pdf_token.page_number and pdf_segment.is_selected(pdf_token.bounding_box) - ] - - if not self.segment_tokens: - for _, pdf_token in pdf_segments.pdf_features.loop_tokens(): - self.segment_tokens = [pdf_token] - break - - self.pdf_segments: PdfData = pdf_segments - self.page_width = self.pdf_segments.pdf_features.pages[0].page_width - self.page_height = self.pdf_segments.pdf_features.pages[0].page_height - self.text_content: str = "" - self.text_len: int = 0 - self.top: float = 0 - self.left: float = 0 - self.right: float = 0 - self.bottom: float = 0 - self.height: float = 0 - self.width: float = 0 - self.font_size: float = 0.0 - self.font_family: str = "" - self.font_color: str = "" - self.line_height: int = 0 - self.numbers_quantity: int = 0 - self.numbers_percentage: float = 0 - self.starts_upper: bool = False - self.starts_number: bool = False - self.starts_number_bar: bool = False - self.starts_letter_dot: bool = False - self.starts_with_square_brackets: bool = False - self.starts_with_roman_numbers: bool = False - self.uppercase: bool = False - self.last_token: PdfDataSegment = None - self.bold: float = False - self.bold_token_number: int = 0 - self.italics: float = False - self.italics_token_number: int = 0 - self.dots_percentage: float = 0 - self.font_sizes = [token.font.font_size for _, token in self.pdf_segments.pdf_features.loop_tokens()] - self.most_frequent_words = list() - self.set_features() - - def set_features(self): - self.font_family = self.segment_tokens[0].font.font_id - self.font_color = self.segment_tokens[0].font.color - self.line_height = self.segment_tokens[0].font.font_size - self.top = self.segment_tokens[0].bounding_box.top - self.left = self.segment_tokens[0].bounding_box.left - self.right = self.segment_tokens[0].bounding_box.right - self.bottom = self.segment_tokens[0].bounding_box.bottom - words: list[str] = list() - - font_sizes = list() - for token in self.segment_tokens: - words.extend(token.content.split()) - self.top = min(self.top, token.bounding_box.top) - self.left = min(self.left, token.bounding_box.left) - self.right = max(self.right, token.bounding_box.left + token.bounding_box.width) - self.bottom = max(self.bottom, token.bounding_box.top + token.bounding_box.height) - self.bold_token_number = self.bold_token_number + 1 if token.font.bold else self.bold_token_number - self.italics_token_number = self.italics_token_number + 1 if token.font.italics else self.italics_token_number - font_sizes.append(token.font.font_size) - if self.token_after_last_token(token): - self.last_token = token - - self.top = self.top / self.page_height - self.bottom = self.bottom / self.page_height - self.right = self.right / self.page_width - self.left = self.left / self.page_width - self.text_content = " ".join(words) - self.text_len = len(self.text_content) - self.dots_percentage = self.text_content.count(".") / self.text_len if self.text_len > 0 else 0 - self.height = self.bottom - self.top - self.width = self.right - self.left - self.font_size = np.mean(font_sizes) - self.numbers_quantity = len(list(filter(lambda x: x.isdigit(), self.text_content))) - self.numbers_percentage = self.numbers_quantity / self.text_len if self.text_len > 0 else 0 - self.bold = self.bold_token_number / len(self.segment_tokens) - self.italics = self.italics_token_number / len(self.segment_tokens) - self.starts_upper = self.text_content[0].isupper() - self.starts_number = self.text_content[0].isdigit() - self.starts_number_bar = len(re.findall(r"^[0-9]\/", self.text_content)) == 1 - self.starts_letter_dot = len(re.findall(r"^[a-zA-Z]\.", self.text_content)) == 1 - self.uppercase = self.text_content.upper() == self.text_content - first_characters = self.text_content.split(" ")[0].split(".")[0] - roman_numbers = "".join(filter(lambda x: x in "IVXLCDM", first_characters)) - if len(roman_numbers) > 0 and roman_numbers == first_characters: - self.starts_with_roman_numbers = True - self.starts_with_square_brackets = self.text_content[0] == "[" - - def get_last_title_features(self): - if not self.previous_title_segment: - return list(np.zeros(22)) - - font_size_mode = sum(self.previous_title_segment.font_sizes) / len(self.previous_title_segment.font_sizes) - - return [ - self.previous_title_segment.segment_index, - len(self.previous_title_segment.multi_option_samples.multi_option_samples) - - self.previous_title_segment.segment_index, - self.previous_title_segment.page_index, - len(self.pdf_segments.pdf_features.pages) - self.previous_title_segment.page_index, - self.previous_title_segment.bold, - self.previous_title_segment.italics, - self.previous_title_segment.text_len, - self.previous_title_segment.top, - self.previous_title_segment.bottom, - self.previous_title_segment.height, - self.previous_title_segment.width, - self.previous_title_segment.font_size / font_size_mode, - self.previous_title_segment.line_height, - self.previous_title_segment.numbers_percentage, - 1 if self.previous_title_segment.starts_upper else 0, - 1 if self.previous_title_segment.starts_number else 0, - self.previous_title_segment.starts_number_bar, - self.previous_title_segment.numbers_quantity, - self.previous_title_segment.starts_with_square_brackets, - self.previous_title_segment.starts_letter_dot, - self.previous_title_segment.dots_percentage, - 1 if self.previous_title_segment.uppercase else 0, - ] - - @staticmethod - def get_other_segment_features(segment: "SegmentCommonWordsWeights"): - if not segment: - return list(np.zeros(22)) - - font_size_mode = sum(segment.font_sizes) / len(segment.font_sizes) - - return [ - segment.segment_index, - len(segment.pdf_segments.pdf_data_segments) - segment.segment_index, - segment.page_index, - len(segment.pdf_segments.pdf_features.pages) - segment.page_index, - segment.bold, - segment.italics, - segment.text_len, - segment.top, - segment.bottom, - segment.height, - segment.width, - segment.font_size / font_size_mode, - segment.line_height, - segment.numbers_percentage, - 1 if segment.starts_upper else 0, - 1 if segment.starts_number else 0, - segment.starts_number_bar, - segment.numbers_quantity, - segment.starts_with_square_brackets, - segment.starts_letter_dot, - segment.dots_percentage, - 1 if segment.uppercase else 0, - ] - - def get_features_array(self) -> np.array: - font_size_average = sum(self.font_sizes) / len(self.font_sizes) - - features = np.array( - [ - self.segment_index, - self.page_index, - font_size_average, - self.modes.lines_space_mode, - self.modes.font_family_mode_normalized, - self.pdf_segments.pdf_features.pages[0].page_width / 5000, - self.pdf_segments.pdf_features.pages[0].page_height / 5000, - self.modes.left_space_mode / self.page_width, - self.bold, - self.italics, - self.text_len, - self.top, - self.bottom, - self.height, - self.width, - self.font_size / self.modes.font_size_mode if self.modes.font_size_mode else 0, - self.line_height, - self.numbers_percentage, - 1 if self.starts_upper else 0, - 1 if self.starts_number else 0, - self.starts_number_bar, - self.numbers_quantity, - self.starts_with_square_brackets, - self.starts_letter_dot, - self.dots_percentage, - 1 if self.uppercase else 0, - len(self.pdf_segments.pdf_data_segments) - self.segment_index, - len(self.pdf_segments.pdf_features.pages) - self.page_index, - self.pdf_segment.segment_type.get_index(), - ] - + self.get_other_segment_features(self.previous_segment) - + self.get_other_segment_features(self.next_segment) - + self.get_last_title_features() - + self.most_frequent_words - ) - return features - - def token_after_last_token(self, token: PdfToken): - if self.last_token is None: - return True - - if self.last_token.bounding_box.bottom < token.bounding_box.bottom: - return True - - if self.last_token.bounding_box.left < token.bounding_box.left: - return True - - return False - - @staticmethod - def from_pdf_features(pdf_features: PdfData) -> list["SegmentCommonWordsWeights"]: - modes = Modes(pdf_features) - segments: list["SegmentCommonWordsWeights"] = list() - for index, pdf_segment in enumerate(pdf_features.pdf_data_segments): - segment_landmarks = SegmentCommonWordsWeights(index, pdf_segment, pdf_features, modes) - segments.append(segment_landmarks) - - sorted_pdf_segments = sorted(segments, key=lambda x: (x.page_index, x.top)) - - previous_title_segment: Optional[SegmentCommonWordsWeights] = None - - for sorted_segment in sorted_pdf_segments: - sorted_segment.previous_title_segment = previous_title_segment - if sorted_segment.pdf_segment.segment_type == TokenType.TITLE: - previous_title_segment = sorted_segment - - for index, sorted_segment in enumerate(sorted_pdf_segments): - if 0 < index: - sorted_segment.previous_segment = sorted_pdf_segments[index - 1] - - if index + 1 < len(sorted_pdf_segments): - sorted_segment.next_segment = sorted_pdf_segments[index + 1] - - return segments - - def set_most_frequent_words(self, most_frequent_words: list[str]): - self.most_frequent_words = [ - 1 / len(self.text_content.split(" ")) if w.lower() in self.text_content.lower() else 0 - for w in most_frequent_words - ] diff --git a/src/extractors/segment_selector/methods/frequent_6_words/Frequent6Words.py b/src/extractors/segment_selector/methods/frequent_6_words/Frequent6Words.py deleted file mode 100644 index f19809a..0000000 --- a/src/extractors/segment_selector/methods/frequent_6_words/Frequent6Words.py +++ /dev/null @@ -1,125 +0,0 @@ -import json -from collections import Counter -from pathlib import Path -from time import time - - -import nltk -import numpy as np - -import lightgbm as lgb -from sklearn.metrics import f1_score - -from config import config_logger -from data.PdfData import PdfData -from extractors.segment_selector.methods.frequent_6_words.SegmentFrequent6Words import SegmentFrequent6Words - -from nltk.tokenize import word_tokenize -from nltk.corpus import stopwords - -nltk.download("stopwords") - - -class Frequent6Words: - def __init__(self): - self.segments: list[SegmentFrequent6Words] = list() - self.model = None - self.best_cut = 0 - - def create_model(self, training_pdfs_segments: list[PdfData], model_path): - start = time() - self.set_segments(pdfs_segments=training_pdfs_segments) - - config_logger.info(f"Set segments {int(time() - start)} seconds") - - if len(self.segments) == 0: - return None - - self.save_most_frequent_words(model_path) - self.set_most_frequent_words_to_segments(model_path) - start = time() - self.run_light_gbm() - config_logger.info(f"Run lightGBM {int(time() - start)} seconds") - - return self.model - - @staticmethod - def set_model(x_train, y_train): - parameters = dict() - parameters["num_leaves"] = 70 - parameters["feature_fraction"] = 0.9 - parameters["bagging_fraction"] = 0.9 - parameters["bagging_freq"] = 0 - parameters["objective"] = "binary" - parameters["learning_rate"] = 0.05 - parameters["metric"] = "binary_logloss" - parameters["verbose"] = -1 - parameters["boosting_type"] = "gbdt" - - train_data = lgb.Dataset(x_train, y_train) - num_round = 3000 - light_gbm_model = lgb.train(parameters, train_data, num_round) - - return light_gbm_model - - def run_light_gbm(self): - x_train, y_train = self.get_training_data() - self.model = self.set_model(x_train, y_train) - - def get_training_data(self): - y = np.array([]) - x_rows = [] - for segment in self.segments: - x_rows.append(segment.get_features_array()) - y = np.append(y, segment.pdf_segment.ml_label) - - X = np.zeros((len(x_rows), len(x_rows[0]) if x_rows else 0)) - for i, v in enumerate(x_rows): - X[i] = v - - return X, y - - def set_segments(self, pdfs_segments: list[PdfData]): - self.segments = list() - for pdf_features in pdfs_segments: - self.segments.extend(SegmentFrequent6Words.from_pdf_features(pdf_features)) - - def predict(self, model, testing_pdfs_segments: list[PdfData], model_path): - self.set_segments(testing_pdfs_segments) - self.set_most_frequent_words_to_segments(model_path) - x, y = self.get_training_data() - x = x[:, : model.num_feature()] - predictions = model.predict(x) - return predictions - - @staticmethod - def get_performance(predictions, y_truth): - return f1_score(y_truth, [prediction > 0.5 for prediction in predictions]) - - def save_most_frequent_words(self, model_path): - count = Counter() - for segment in self.segments: - if segment.pdf_segment.ml_label: - text_tokens = word_tokenize(segment.text_content) - count.update( - [word.lower() for word in text_tokens if word.lower() not in stopwords.words() and word not in ".,"] - ) - config_logger.info("Most repeated words") - - number_repeated_words = 6 - most_repeated_words = [x[0] for x in count.most_common()[:number_repeated_words]] - most_repeated_words = most_repeated_words + [""] * (number_repeated_words - len(most_repeated_words)) - - config_logger.info(most_repeated_words) - frequent_words_path = self.get_frequent_words_path(model_path) - Path(frequent_words_path).write_text(json.dumps(most_repeated_words)) - - @staticmethod - def get_frequent_words_path(model_path: str | Path) -> str: - frequent_words_path = str(model_path) + "_frequent_words" - return frequent_words_path - - def set_most_frequent_words_to_segments(self, model_path: str): - most_frequent_words = json.loads(Path(self.get_frequent_words_path(model_path)).read_text()) - for segment in self.segments: - segment.set_most_frequent_words(most_frequent_words) diff --git a/src/extractors/segment_selector/methods/frequent_6_words/SegmentFrequent6Words.py b/src/extractors/segment_selector/methods/frequent_6_words/SegmentFrequent6Words.py deleted file mode 100755 index 35c5efc..0000000 --- a/src/extractors/segment_selector/methods/frequent_6_words/SegmentFrequent6Words.py +++ /dev/null @@ -1,266 +0,0 @@ -import re -from typing import Optional - -import nltk -import numpy as np -from pdf_features.PdfToken import PdfToken -from pdf_token_type_labels.TokenType import TokenType - -from data.PdfDataSegment import PdfDataSegment -from data.PdfData import PdfData -from extractors.segment_selector.methods.Modes import Modes - -nltk.download("punkt") - - -class SegmentFrequent6Words: - def __init__(self, segment_index: int, pdf_segment: PdfDataSegment, pdf_segments: PdfData, modes: Modes): - self.modes = modes - self.previous_title_segment = None - self.previous_segment = None - self.next_segment = None - self.segment_index: float = segment_index - self.confidence: float = 0 - self.page_number = pdf_segment.page_number - self.page_index = pdf_segment.page_number - 1 - self.pdf_segment = pdf_segment - - self.segment_tokens: list[PdfToken] = [ - pdf_token - for _, pdf_token in pdf_segments.pdf_features.loop_tokens() - if self.page_number == pdf_token.page_number and pdf_segment.is_selected(pdf_token.bounding_box) - ] - - if not self.segment_tokens: - for _, pdf_token in pdf_segments.pdf_features.loop_tokens(): - self.segment_tokens = [pdf_token] - break - - self.pdf_segments: PdfData = pdf_segments - self.page_width = self.pdf_segments.pdf_features.pages[0].page_width - self.page_height = self.pdf_segments.pdf_features.pages[0].page_height - self.text_content: str = "" - self.text_len: int = 0 - self.top: float = 0 - self.left: float = 0 - self.right: float = 0 - self.bottom: float = 0 - self.height: float = 0 - self.width: float = 0 - self.font_size: float = 0.0 - self.font_family: str = "" - self.font_color: str = "" - self.line_height: int = 0 - self.numbers_quantity: int = 0 - self.numbers_percentage: float = 0 - self.starts_upper: bool = False - self.starts_number: bool = False - self.starts_number_bar: bool = False - self.starts_letter_dot: bool = False - self.starts_with_square_brackets: bool = False - self.starts_with_roman_numbers: bool = False - self.uppercase: bool = False - self.last_token: PdfDataSegment = None - self.bold: float = False - self.bold_token_number: int = 0 - self.italics: float = False - self.italics_token_number: int = 0 - self.dots_percentage: float = 0 - self.font_sizes = [token.font.font_size for _, token in self.pdf_segments.pdf_features.loop_tokens()] - self.most_frequent_words = list() - self.set_features() - - def set_features(self): - self.font_family = self.segment_tokens[0].font.font_id - self.font_color = self.segment_tokens[0].font.color - self.line_height = self.segment_tokens[0].font.font_size - self.top = self.segment_tokens[0].bounding_box.top - self.left = self.segment_tokens[0].bounding_box.left - self.right = self.segment_tokens[0].bounding_box.right - self.bottom = self.segment_tokens[0].bounding_box.bottom - words: list[str] = list() - - font_sizes = list() - for token in self.segment_tokens: - words.extend(token.content.split()) - self.top = min(self.top, token.bounding_box.top) - self.left = min(self.left, token.bounding_box.left) - self.right = max(self.right, token.bounding_box.left + token.bounding_box.width) - self.bottom = max(self.bottom, token.bounding_box.top + token.bounding_box.height) - self.bold_token_number = self.bold_token_number + 1 if token.font.bold else self.bold_token_number - self.italics_token_number = self.italics_token_number + 1 if token.font.italics else self.italics_token_number - font_sizes.append(token.font.font_size) - if self.token_after_last_token(token): - self.last_token = token - - self.top = self.top / self.page_height - self.bottom = self.bottom / self.page_height - self.right = self.right / self.page_width - self.left = self.left / self.page_width - self.text_content = " ".join(words) - self.text_len = len(self.text_content) - self.dots_percentage = self.text_content.count(".") / self.text_len if self.text_len > 0 else 0 - self.height = self.bottom - self.top - self.width = self.right - self.left - self.font_size = np.mean(font_sizes) - self.numbers_quantity = len(list(filter(lambda x: x.isdigit(), self.text_content))) - self.numbers_percentage = self.numbers_quantity / self.text_len if self.text_len > 0 else 0 - self.bold = self.bold_token_number / len(self.segment_tokens) - self.italics = self.italics_token_number / len(self.segment_tokens) - self.starts_upper = self.text_content[0].isupper() - self.starts_number = self.text_content[0].isdigit() - self.starts_number_bar = len(re.findall(r"^[0-9]\/", self.text_content)) == 1 - self.starts_letter_dot = len(re.findall(r"^[a-zA-Z]\.", self.text_content)) == 1 - self.uppercase = self.text_content.upper() == self.text_content - first_characters = self.text_content.split(" ")[0].split(".")[0] - roman_numbers = "".join(filter(lambda x: x in "IVXLCDM", first_characters)) - if len(roman_numbers) > 0 and roman_numbers == first_characters: - self.starts_with_roman_numbers = True - self.starts_with_square_brackets = self.text_content[0] == "[" - - def get_last_title_features(self): - if not self.previous_title_segment: - return list(np.zeros(22)) - - font_size_mode = sum(self.previous_title_segment.font_sizes) / len(self.previous_title_segment.font_sizes) - - return [ - self.previous_title_segment.segment_index, - len(self.previous_title_segment.multi_option_samples.multi_option_samples) - - self.previous_title_segment.segment_index, - self.previous_title_segment.page_index, - len(self.pdf_segments.pdf_features.pages) - self.previous_title_segment.page_index, - self.previous_title_segment.bold, - self.previous_title_segment.italics, - self.previous_title_segment.text_len, - self.previous_title_segment.top, - self.previous_title_segment.bottom, - self.previous_title_segment.height, - self.previous_title_segment.width, - self.previous_title_segment.font_size / font_size_mode, - self.previous_title_segment.line_height, - self.previous_title_segment.numbers_percentage, - 1 if self.previous_title_segment.starts_upper else 0, - 1 if self.previous_title_segment.starts_number else 0, - self.previous_title_segment.starts_number_bar, - self.previous_title_segment.numbers_quantity, - self.previous_title_segment.starts_with_square_brackets, - self.previous_title_segment.starts_letter_dot, - self.previous_title_segment.dots_percentage, - 1 if self.previous_title_segment.uppercase else 0, - ] - - @staticmethod - def get_other_segment_features(segment: "SegmentFrequent6Words"): - if not segment: - return list(np.zeros(22)) - - font_size_mode = sum(segment.font_sizes) / len(segment.font_sizes) - - return [ - segment.segment_index, - len(segment.pdf_segments.pdf_data_segments) - segment.segment_index, - segment.page_index, - len(segment.pdf_segments.pdf_features.pages) - segment.page_index, - segment.bold, - segment.italics, - segment.text_len, - segment.top, - segment.bottom, - segment.height, - segment.width, - segment.font_size / font_size_mode, - segment.line_height, - segment.numbers_percentage, - 1 if segment.starts_upper else 0, - 1 if segment.starts_number else 0, - segment.starts_number_bar, - segment.numbers_quantity, - segment.starts_with_square_brackets, - segment.starts_letter_dot, - segment.dots_percentage, - 1 if segment.uppercase else 0, - ] - - def get_features_array(self) -> np.array: - font_size_average = sum(self.font_sizes) / len(self.font_sizes) - - features = np.array( - [ - self.segment_index, - self.page_index, - font_size_average, - self.modes.lines_space_mode, - self.modes.font_family_mode_normalized, - self.pdf_segments.pdf_features.pages[0].page_width / 5000, - self.pdf_segments.pdf_features.pages[0].page_height / 5000, - self.modes.left_space_mode / self.page_width, - self.bold, - self.italics, - self.text_len, - self.top, - self.bottom, - self.height, - self.width, - self.font_size / self.modes.font_size_mode if self.modes.font_size_mode else 0, - self.line_height, - self.numbers_percentage, - 1 if self.starts_upper else 0, - 1 if self.starts_number else 0, - self.starts_number_bar, - self.numbers_quantity, - self.starts_with_square_brackets, - self.starts_letter_dot, - self.dots_percentage, - 1 if self.uppercase else 0, - len(self.pdf_segments.pdf_data_segments) - self.segment_index, - len(self.pdf_segments.pdf_features.pages) - self.page_index, - self.pdf_segment.segment_type.get_index(), - ] - + self.get_other_segment_features(self.previous_segment) - + self.get_other_segment_features(self.next_segment) - + self.get_last_title_features() - + self.most_frequent_words - ) - return features - - def token_after_last_token(self, token: PdfToken): - if self.last_token is None: - return True - - if self.last_token.bounding_box.bottom < token.bounding_box.bottom: - return True - - if self.last_token.bounding_box.left < token.bounding_box.left: - return True - - return False - - @staticmethod - def from_pdf_features(pdf_features: PdfData) -> list["SegmentFrequent6Words"]: - modes = Modes(pdf_features) - segments: list["SegmentFrequent6Words"] = list() - for index, pdf_segment in enumerate(pdf_features.pdf_data_segments): - segment_landmarks = SegmentFrequent6Words(index, pdf_segment, pdf_features, modes) - segments.append(segment_landmarks) - - sorted_pdf_segments = sorted(segments, key=lambda x: (x.page_index, x.top)) - - previous_title_segment: Optional[SegmentFrequent6Words] = None - - for sorted_segment in sorted_pdf_segments: - sorted_segment.previous_title_segment = previous_title_segment - if sorted_segment.pdf_segment.segment_type == TokenType.TITLE: - previous_title_segment = sorted_segment - - for index, sorted_segment in enumerate(sorted_pdf_segments): - if 0 < index: - sorted_segment.previous_segment = sorted_pdf_segments[index - 1] - - if index + 1 < len(sorted_pdf_segments): - sorted_segment.next_segment = sorted_pdf_segments[index + 1] - - return segments - - def set_most_frequent_words(self, most_frequent_words: list[str]): - self.most_frequent_words = [1 if w.lower() in self.text_content.lower() else 0 for w in most_frequent_words] diff --git a/src/extractors/segment_selector/methods/lightgbm_frequent_words/LightgbmFrequentWords.py b/src/extractors/segment_selector/methods/lightgbm_frequent_words/LightgbmFrequentWords.py deleted file mode 100644 index 10d9a87..0000000 --- a/src/extractors/segment_selector/methods/lightgbm_frequent_words/LightgbmFrequentWords.py +++ /dev/null @@ -1,129 +0,0 @@ -import json -from collections import Counter -from pathlib import Path -from time import time - -import nltk -import numpy as np - -import lightgbm as lgb -from sklearn.metrics import f1_score - -from config import config_logger -from data.PdfData import PdfData -from extractors.segment_selector.methods.lightgbm_frequent_words.SegmentLightgbmFrequentWords import ( - SegmentLightgbmFrequentWords, -) - -from nltk.tokenize import word_tokenize -from nltk.corpus import stopwords - - -nltk.download("stopwords") - - -class LightgbmFrequentWords: - def __init__(self): - self.segments: list[SegmentLightgbmFrequentWords] = list() - self.model = None - self.best_cut = 0 - - def create_model(self, training_pdfs_segments: list[PdfData], model_path): - start = time() - self.set_segments(pdfs_segments=training_pdfs_segments) - - config_logger.info(f"Set segments {int(time() - start)} seconds") - - if len(self.segments) == 0: - return None - - self.save_most_frequent_words(model_path) - self.set_most_frequent_words_to_segments(model_path) - start = time() - self.run_light_gbm() - config_logger.info(f"Run lightGBM {int(time() - start)} seconds") - - return self.model - - @staticmethod - def set_model(x_train, y_train): - parameters = dict() - parameters["num_leaves"] = 70 - parameters["feature_fraction"] = 0.9 - parameters["bagging_fraction"] = 0.9 - parameters["bagging_freq"] = 0 - parameters["objective"] = "binary" - parameters["learning_rate"] = 0.05 - parameters["metric"] = "binary_logloss" - parameters["verbose"] = -1 - parameters["boosting_type"] = "gbdt" - parameters["min_data"] = 0 - - train_data = lgb.Dataset(x_train, y_train) - num_round = 3000 - light_gbm_model = lgb.train(parameters, train_data, num_round) - return light_gbm_model - - def run_light_gbm(self): - x_train, y_train = self.get_training_data() - self.model = self.set_model(x_train, y_train) - - def get_training_data(self): - y = np.array([]) - x_rows = [] - for segment in self.segments: - x_rows.append(segment.get_features_array()) - y = np.append(y, segment.pdf_segment.ml_label) - - X = np.zeros((len(x_rows), len(x_rows[0]) if x_rows else 0)) - for i, v in enumerate(x_rows): - X[i] = v - - return X, y - - def set_segments(self, pdfs_segments: list[PdfData]): - self.segments = list() - for pdf_features in pdfs_segments: - self.segments.extend(SegmentLightgbmFrequentWords.from_pdf_features(pdf_features)) - - def predict(self, model, testing_pdfs_segments: list[PdfData], model_path): - self.set_segments(testing_pdfs_segments) - self.set_most_frequent_words_to_segments(model_path) - x, y = self.get_training_data() - x = x[:, : model.num_feature()] - predictions = model.predict(x) - return predictions - - @staticmethod - def get_performance(predictions, y_truth): - return f1_score(y_truth, [prediction > 0.5 for prediction in predictions]) - - def save_most_frequent_words(self, model_path): - count = Counter() - for segment in self.segments: - if segment.pdf_segment.ml_label: - text_tokens = word_tokenize(segment.text_content) - count.update( - [word.lower() for word in text_tokens if word.lower() not in stopwords.words() and word not in ".,"] - ) - config_logger.info("Most repeated words") - most_repeated_words = [x[0] for x in count.most_common()[:3]] - config_logger.info(most_repeated_words) - frequent_words_path = self.get_frequent_words_path(model_path) - Path(frequent_words_path).write_text(json.dumps(most_repeated_words)) - - @staticmethod - def get_frequent_words_path(model_path: str | Path) -> str: - frequent_words_path = str(model_path) + "_frequent_words" - return frequent_words_path - - def set_most_frequent_words_to_segments(self, model_path: str): - path_frequent_words = Path(self.get_frequent_words_path(model_path)) - - if not path_frequent_words.exists(): - most_frequent_words = [] - else: - most_frequent_words = json.loads(path_frequent_words.read_text()) - - for segment in self.segments: - segment.set_most_frequent_words(most_frequent_words) diff --git a/src/extractors/segment_selector/methods/lightgbm_frequent_words/SegmentLightgbmFrequentWords.py b/src/extractors/segment_selector/methods/lightgbm_frequent_words/SegmentLightgbmFrequentWords.py deleted file mode 100755 index 618b910..0000000 --- a/src/extractors/segment_selector/methods/lightgbm_frequent_words/SegmentLightgbmFrequentWords.py +++ /dev/null @@ -1,264 +0,0 @@ -import re -from typing import Optional - -import nltk -import numpy as np -from pdf_features.PdfToken import PdfToken -from pdf_token_type_labels.TokenType import TokenType - -from data.PdfDataSegment import PdfDataSegment -from data.PdfData import PdfData -from extractors.segment_selector.methods.Modes import Modes - -nltk.download("punkt") - - -class SegmentLightgbmFrequentWords: - def __init__(self, segment_index: int, pdf_segment: PdfDataSegment, pdf_data: PdfData, modes: Modes): - self.modes = modes - self.previous_title_segment = None - self.previous_segment = None - self.next_segment = None - self.segment_index: float = segment_index - self.confidence: float = 0 - self.page_number = pdf_segment.page_number - self.page_index = pdf_segment.page_number - 1 - self.pdf_segment = pdf_segment - - self.segment_tokens: list[PdfToken] = [ - pdf_token - for _, pdf_token in pdf_data.pdf_features.loop_tokens() - if self.page_number == pdf_token.page_number and pdf_segment.is_selected(pdf_token.bounding_box) - ] - - if not self.segment_tokens: - for _, pdf_token in pdf_data.pdf_features.loop_tokens(): - self.segment_tokens = [pdf_token] - break - - self.pdf_segments: PdfData = pdf_data - self.page_width = self.pdf_segments.pdf_features.pages[0].page_width - self.page_height = self.pdf_segments.pdf_features.pages[0].page_height - self.text_content: str = "" - self.text_len: int = 0 - self.top: float = 0 - self.left: float = 0 - self.right: float = 0 - self.bottom: float = 0 - self.height: float = 0 - self.width: float = 0 - self.font_size: float = 0.0 - self.font_family: str = "" - self.font_color: str = "" - self.line_height: int = 0 - self.numbers_quantity: int = 0 - self.numbers_percentage: float = 0 - self.starts_upper: bool = False - self.starts_number: bool = False - self.starts_number_bar: bool = False - self.starts_letter_dot: bool = False - self.starts_with_square_brackets: bool = False - self.starts_with_roman_numbers: bool = False - self.uppercase: bool = False - self.last_token: PdfDataSegment = None - self.bold: float = False - self.bold_token_number: int = 0 - self.italics: float = False - self.italics_token_number: int = 0 - self.dots_percentage: float = 0 - self.font_sizes = [token.font.font_size for _, token in self.pdf_segments.pdf_features.loop_tokens()] - self.most_frequent_words = list() - self.set_features() - - def set_features(self): - self.font_family = self.segment_tokens[0].font.font_id - self.font_color = self.segment_tokens[0].font.color - self.line_height = self.segment_tokens[0].font.font_size - self.top = self.segment_tokens[0].bounding_box.top - self.left = self.segment_tokens[0].bounding_box.left - self.right = self.segment_tokens[0].bounding_box.right - self.bottom = self.segment_tokens[0].bounding_box.bottom - words: list[str] = list() - - font_sizes = list() - for token in self.segment_tokens: - words.extend(token.content.split()) - self.top = min(self.top, token.bounding_box.top) - self.left = min(self.left, token.bounding_box.left) - self.right = max(self.right, token.bounding_box.left + token.bounding_box.width) - self.bottom = max(self.bottom, token.bounding_box.top + token.bounding_box.height) - self.bold_token_number = self.bold_token_number + 1 if token.font.bold else self.bold_token_number - self.italics_token_number = self.italics_token_number + 1 if token.font.italics else self.italics_token_number - font_sizes.append(token.font.font_size) - if self.token_after_last_token(token): - self.last_token = token - - self.top = self.top / self.page_height - self.bottom = self.bottom / self.page_height - self.right = self.right / self.page_width - self.left = self.left / self.page_width - self.text_content = " ".join(words) - self.text_len = len(self.text_content) - self.dots_percentage = self.text_content.count(".") / self.text_len if self.text_len > 0 else 0 - self.height = self.bottom - self.top - self.width = self.right - self.left - self.font_size = np.mean(font_sizes) - self.numbers_quantity = len(list(filter(lambda x: x.isdigit(), self.text_content))) - self.numbers_percentage = self.numbers_quantity / self.text_len if self.text_len > 0 else 0 - self.bold = self.bold_token_number / len(self.segment_tokens) - self.italics = self.italics_token_number / len(self.segment_tokens) - self.starts_upper = self.text_content[0].isupper() - self.starts_number = self.text_content[0].isdigit() - self.starts_number_bar = len(re.findall(r"^[0-9]\/", self.text_content)) == 1 - self.starts_letter_dot = len(re.findall(r"^[a-zA-Z]\.", self.text_content)) == 1 - self.uppercase = self.text_content.upper() == self.text_content - first_characters = self.text_content.split(" ")[0].split(".")[0] - roman_numbers = "".join(filter(lambda x: x in "IVXLCDM", first_characters)) - if len(roman_numbers) > 0 and roman_numbers == first_characters: - self.starts_with_roman_numbers = True - self.starts_with_square_brackets = self.text_content[0] == "[" - - def get_last_title_features(self): - if not self.previous_title_segment: - return list(np.zeros(21)) - - font_size_mode = sum(self.previous_title_segment.font_sizes) / len(self.previous_title_segment.font_sizes) - - return [ - self.previous_title_segment.segment_index, - self.previous_title_segment.page_index, - len(self.pdf_segments.pdf_features.pages) - self.previous_title_segment.page_index, - self.previous_title_segment.bold, - self.previous_title_segment.italics, - self.previous_title_segment.text_len, - self.previous_title_segment.top, - self.previous_title_segment.bottom, - self.previous_title_segment.height, - self.previous_title_segment.width, - self.previous_title_segment.font_size / font_size_mode, - self.previous_title_segment.line_height, - self.previous_title_segment.numbers_percentage, - 1 if self.previous_title_segment.starts_upper else 0, - 1 if self.previous_title_segment.starts_number else 0, - self.previous_title_segment.starts_number_bar, - self.previous_title_segment.numbers_quantity, - self.previous_title_segment.starts_with_square_brackets, - self.previous_title_segment.starts_letter_dot, - self.previous_title_segment.dots_percentage, - 1 if self.previous_title_segment.uppercase else 0, - ] - - @staticmethod - def get_other_segment_features(segment: "SegmentLightgbmFrequentWords"): - if not segment: - return list(np.zeros(22)) - - font_size_mode = sum(segment.font_sizes) / len(segment.font_sizes) - - return [ - segment.segment_index, - len(segment.pdf_segments.pdf_data_segments) - segment.segment_index, - segment.page_index, - len(segment.pdf_segments.pdf_features.pages) - segment.page_index, - segment.bold, - segment.italics, - segment.text_len, - segment.top, - segment.bottom, - segment.height, - segment.width, - segment.font_size / font_size_mode, - segment.line_height, - segment.numbers_percentage, - 1 if segment.starts_upper else 0, - 1 if segment.starts_number else 0, - segment.starts_number_bar, - segment.numbers_quantity, - segment.starts_with_square_brackets, - segment.starts_letter_dot, - segment.dots_percentage, - 1 if segment.uppercase else 0, - ] - - def get_features_array(self) -> np.array: - font_size_average = sum(self.font_sizes) / len(self.font_sizes) - - features = np.array( - [ - self.segment_index, - self.page_index, - font_size_average, - self.modes.lines_space_mode, - self.modes.font_family_mode_normalized, - self.pdf_segments.pdf_features.pages[0].page_width / 5000, - self.pdf_segments.pdf_features.pages[0].page_height / 5000, - self.modes.left_space_mode / self.page_width, - self.bold, - self.italics, - self.text_len, - self.top, - self.bottom, - self.height, - self.width, - self.font_size / self.modes.font_size_mode if self.modes.font_size_mode else 0, - self.line_height, - self.numbers_percentage, - 1 if self.starts_upper else 0, - 1 if self.starts_number else 0, - self.starts_number_bar, - self.numbers_quantity, - self.starts_with_square_brackets, - self.starts_letter_dot, - self.dots_percentage, - 1 if self.uppercase else 0, - len(self.pdf_segments.pdf_data_segments) - self.segment_index, - len(self.pdf_segments.pdf_features.pages) - self.page_index, - self.pdf_segment.segment_type.get_index(), - ] - + self.get_other_segment_features(self.previous_segment) - + self.get_other_segment_features(self.next_segment) - + self.get_last_title_features() - + self.most_frequent_words - ) - return features - - def token_after_last_token(self, token: PdfToken): - if self.last_token is None: - return True - - if self.last_token.bounding_box.bottom < token.bounding_box.bottom: - return True - - if self.last_token.bounding_box.left < token.bounding_box.left: - return True - - return False - - @staticmethod - def from_pdf_features(pdf_features: PdfData) -> list["SegmentLightgbmFrequentWords"]: - modes = Modes(pdf_features) - segments: list["SegmentLightgbmFrequentWords"] = list() - for index, pdf_segment in enumerate(pdf_features.pdf_data_segments): - segment_landmarks = SegmentLightgbmFrequentWords(index, pdf_segment, pdf_features, modes) - segments.append(segment_landmarks) - - sorted_pdf_segments = sorted(segments, key=lambda x: (x.page_index, x.top)) - - previous_title_segment: Optional[SegmentLightgbmFrequentWords] = None - - for sorted_segment in sorted_pdf_segments: - sorted_segment.previous_title_segment = previous_title_segment - if sorted_segment.pdf_segment.segment_type == TokenType.TITLE: - previous_title_segment = sorted_segment - - for index, sorted_segment in enumerate(sorted_pdf_segments): - if 0 < index: - sorted_segment.previous_segment = sorted_pdf_segments[index - 1] - - if index + 1 < len(sorted_pdf_segments): - sorted_segment.next_segment = sorted_pdf_segments[index + 1] - - return segments - - def set_most_frequent_words(self, most_frequent_words: list[str]): - self.most_frequent_words = [1 if w.lower() in self.text_content.lower() else 0 for w in most_frequent_words] diff --git a/src/extractors/segment_selector/methods/next_previous_title/NextPreviousTitle.py b/src/extractors/segment_selector/methods/next_previous_title/NextPreviousTitle.py deleted file mode 100644 index 75d2ff1..0000000 --- a/src/extractors/segment_selector/methods/next_previous_title/NextPreviousTitle.py +++ /dev/null @@ -1,121 +0,0 @@ -import json -from collections import Counter -from pathlib import Path -from time import time - - -import nltk -import numpy as np - -import lightgbm as lgb -from sklearn.metrics import f1_score - -from config import config_logger -from data.PdfData import PdfData -from extractors.segment_selector.methods.next_previous_title.SegmentNextPreviousTitle import SegmentNextPreviousTitle - -from nltk.tokenize import word_tokenize -from nltk.corpus import stopwords - -nltk.download("stopwords") - - -class NextPreviousTitle: - def __init__(self): - self.segments: list[SegmentNextPreviousTitle] = list() - self.model = None - self.best_cut = 0 - - def create_model(self, training_pdfs_segments: list[PdfData], model_path): - start = time() - self.set_segments(pdfs_segments=training_pdfs_segments) - - config_logger.info(f"Set segments {int(time() - start)} seconds") - - if len(self.segments) == 0: - return None - - self.save_most_frequent_words(model_path) - self.set_most_frequent_words_to_segments(model_path) - start = time() - self.run_light_gbm() - config_logger.info(f"Run lightGBM {int(time() - start)} seconds") - - return self.model - - @staticmethod - def set_model(x_train, y_train): - parameters = dict() - parameters["num_leaves"] = 70 - parameters["feature_fraction"] = 0.9 - parameters["bagging_fraction"] = 0.9 - parameters["bagging_freq"] = 0 - parameters["objective"] = "binary" - parameters["learning_rate"] = 0.05 - parameters["metric"] = "binary_logloss" - parameters["verbose"] = -1 - parameters["boosting_type"] = "gbdt" - - train_data = lgb.Dataset(x_train, y_train) - num_round = 3000 - light_gbm_model = lgb.train(parameters, train_data, num_round) - - return light_gbm_model - - def run_light_gbm(self): - x_train, y_train = self.get_training_data() - self.model = self.set_model(x_train, y_train) - - def get_training_data(self): - y = np.array([]) - x_rows = [] - for segment in self.segments: - x_rows.append(segment.get_features_array()) - y = np.append(y, segment.pdf_segment.ml_label) - - X = np.zeros((len(x_rows), len(x_rows[0]) if x_rows else 0)) - for i, v in enumerate(x_rows): - X[i] = v - - return X, y - - def set_segments(self, pdfs_segments: list[PdfData]): - self.segments = list() - for pdf_features in pdfs_segments: - self.segments.extend(SegmentNextPreviousTitle.from_pdf_features(pdf_features)) - - def predict(self, model, testing_pdfs_segments: list[PdfData], model_path): - self.set_segments(testing_pdfs_segments) - self.set_most_frequent_words_to_segments(model_path) - x, y = self.get_training_data() - x = x[:, : model.num_feature()] - predictions = model.predict(x) - return predictions - - @staticmethod - def get_performance(predictions, y_truth): - return f1_score(y_truth, [prediction > 0.5 for prediction in predictions]) - - def save_most_frequent_words(self, model_path): - count = Counter() - for segment in self.segments: - if segment.pdf_segment.ml_label: - text_tokens = word_tokenize(segment.text_content) - count.update( - [word.lower() for word in text_tokens if word.lower() not in stopwords.words() and word not in ".,"] - ) - config_logger.info("Most repeated words") - most_repeated_words = [x[0] for x in count.most_common()[:3]] - config_logger.info(most_repeated_words) - frequent_words_path = self.get_frequent_words_path(model_path) - Path(frequent_words_path).write_text(json.dumps(most_repeated_words)) - - @staticmethod - def get_frequent_words_path(model_path: str | Path) -> str: - frequent_words_path = str(model_path) + "_frequent_words" - return frequent_words_path - - def set_most_frequent_words_to_segments(self, model_path: str): - most_frequent_words = json.loads(Path(self.get_frequent_words_path(model_path)).read_text()) - for segment in self.segments: - segment.set_most_frequent_words(most_frequent_words) diff --git a/src/extractors/segment_selector/methods/next_previous_title/SegmentNextPreviousTitle.py b/src/extractors/segment_selector/methods/next_previous_title/SegmentNextPreviousTitle.py deleted file mode 100755 index a0839a2..0000000 --- a/src/extractors/segment_selector/methods/next_previous_title/SegmentNextPreviousTitle.py +++ /dev/null @@ -1,276 +0,0 @@ -import re -from typing import Optional - -import nltk -import numpy as np -from pdf_features.PdfToken import PdfToken -from pdf_token_type_labels.TokenType import TokenType - -from data.PdfDataSegment import PdfDataSegment -from data.PdfData import PdfData -from extractors.segment_selector.methods.Modes import Modes - -nltk.download("punkt") - - -class SegmentNextPreviousTitle: - def __init__(self, segment_index: int, pdf_segment: PdfDataSegment, pdf_segments: PdfData, modes: Modes): - self.modes = modes - self.previous_title_segment = None - self.next_title_segment = None - self.previous_segment = None - self.next_segment = None - self.segment_index: float = segment_index - self.confidence: float = 0 - self.page_number = pdf_segment.page_number - self.page_index = pdf_segment.page_number - 1 - self.pdf_segment = pdf_segment - - self.segment_tokens: list[PdfToken] = [ - pdf_token - for _, pdf_token in pdf_segments.pdf_features.loop_tokens() - if self.page_number == pdf_token.page_number and pdf_segment.is_selected(pdf_token.bounding_box) - ] - - if not self.segment_tokens: - for _, pdf_token in pdf_segments.pdf_features.loop_tokens(): - self.segment_tokens = [pdf_token] - break - - self.pdf_segments: PdfData = pdf_segments - self.page_width = self.pdf_segments.pdf_features.pages[0].page_width - self.page_height = self.pdf_segments.pdf_features.pages[0].page_height - self.text_content: str = "" - self.text_len: int = 0 - self.top: float = 0 - self.left: float = 0 - self.right: float = 0 - self.bottom: float = 0 - self.height: float = 0 - self.width: float = 0 - self.font_size: float = 0.0 - self.font_family: str = "" - self.font_color: str = "" - self.line_height: int = 0 - self.numbers_quantity: int = 0 - self.numbers_percentage: float = 0 - self.starts_upper: bool = False - self.starts_number: bool = False - self.starts_number_bar: bool = False - self.starts_letter_dot: bool = False - self.starts_with_square_brackets: bool = False - self.starts_with_roman_numbers: bool = False - self.uppercase: bool = False - self.last_token: PdfDataSegment = None - self.bold: float = False - self.bold_token_number: int = 0 - self.italics: float = False - self.italics_token_number: int = 0 - self.dots_percentage: float = 0 - self.font_sizes = [token.font.font_size for _, token in self.pdf_segments.pdf_features.loop_tokens()] - self.most_frequent_words = list() - self.set_features() - - def set_features(self): - self.font_family = self.segment_tokens[0].font.font_id - self.font_color = self.segment_tokens[0].font.color - self.line_height = self.segment_tokens[0].font.font_size - self.top = self.segment_tokens[0].bounding_box.top - self.left = self.segment_tokens[0].bounding_box.left - self.right = self.segment_tokens[0].bounding_box.right - self.bottom = self.segment_tokens[0].bounding_box.bottom - words: list[str] = list() - - font_sizes = list() - for token in self.segment_tokens: - words.extend(token.content.split()) - self.top = min(self.top, token.bounding_box.top) - self.left = min(self.left, token.bounding_box.left) - self.right = max(self.right, token.bounding_box.left + token.bounding_box.width) - self.bottom = max(self.bottom, token.bounding_box.top + token.bounding_box.height) - self.bold_token_number = self.bold_token_number + 1 if token.font.bold else self.bold_token_number - self.italics_token_number = self.italics_token_number + 1 if token.font.italics else self.italics_token_number - font_sizes.append(token.font.font_size) - if self.token_after_last_token(token): - self.last_token = token - - self.top = self.top / self.page_height - self.bottom = self.bottom / self.page_height - self.right = self.right / self.page_width - self.left = self.left / self.page_width - self.text_content = " ".join(words) - self.text_len = len(self.text_content) - self.dots_percentage = self.text_content.count(".") / self.text_len if self.text_len > 0 else 0 - self.height = self.bottom - self.top - self.width = self.right - self.left - self.font_size = np.mean(font_sizes) - self.numbers_quantity = len(list(filter(lambda x: x.isdigit(), self.text_content))) - self.numbers_percentage = self.numbers_quantity / self.text_len if self.text_len > 0 else 0 - self.bold = self.bold_token_number / len(self.segment_tokens) - self.italics = self.italics_token_number / len(self.segment_tokens) - self.starts_upper = self.text_content[0].isupper() - self.starts_number = self.text_content[0].isdigit() - self.starts_number_bar = len(re.findall(r"^[0-9]\/", self.text_content)) == 1 - self.starts_letter_dot = len(re.findall(r"^[a-zA-Z]\.", self.text_content)) == 1 - self.uppercase = self.text_content.upper() == self.text_content - first_characters = self.text_content.split(" ")[0].split(".")[0] - roman_numbers = "".join(filter(lambda x: x in "IVXLCDM", first_characters)) - if len(roman_numbers) > 0 and roman_numbers == first_characters: - self.starts_with_roman_numbers = True - self.starts_with_square_brackets = self.text_content[0] == "[" - - def get_title_features(self, segment_title: "SegmentNextPreviousTitle"): - if not segment_title: - return list(np.zeros(22)) - - font_size_mode = sum(segment_title.font_sizes) / len(segment_title.font_sizes) - - return [ - segment_title.segment_index, - len(segment_title.pdf_segments.pdf_data_segments) - segment_title.segment_index, - segment_title.page_index, - len(self.pdf_segments.pdf_features.pages) - segment_title.page_index, - segment_title.bold, - segment_title.italics, - segment_title.text_len, - segment_title.top, - segment_title.bottom, - segment_title.height, - segment_title.width, - segment_title.font_size / font_size_mode, - segment_title.line_height, - segment_title.numbers_percentage, - 1 if segment_title.starts_upper else 0, - 1 if segment_title.starts_number else 0, - segment_title.starts_number_bar, - segment_title.numbers_quantity, - segment_title.starts_with_square_brackets, - segment_title.starts_letter_dot, - segment_title.dots_percentage, - 1 if segment_title.uppercase else 0, - ] - - @staticmethod - def get_other_segment_features(segment: "SegmentNextPreviousTitle"): - if not segment: - return list(np.zeros(22)) - - font_size_mode = sum(segment.font_sizes) / len(segment.font_sizes) - - return [ - segment.segment_index, - len(segment.pdf_segments.pdf_data_segments) - segment.segment_index, - segment.page_index, - len(segment.pdf_segments.pdf_features.pages) - segment.page_index, - segment.bold, - segment.italics, - segment.text_len, - segment.top, - segment.bottom, - segment.height, - segment.width, - segment.font_size / font_size_mode, - segment.line_height, - segment.numbers_percentage, - 1 if segment.starts_upper else 0, - 1 if segment.starts_number else 0, - segment.starts_number_bar, - segment.numbers_quantity, - segment.starts_with_square_brackets, - segment.starts_letter_dot, - segment.dots_percentage, - 1 if segment.uppercase else 0, - ] - - def get_features_array(self) -> np.array: - font_size_average = sum(self.font_sizes) / len(self.font_sizes) - - features = np.array( - [ - self.segment_index, - self.page_index, - font_size_average, - self.modes.lines_space_mode, - self.modes.font_family_mode_normalized, - self.pdf_segments.pdf_features.pages[0].page_width / 5000, - self.pdf_segments.pdf_features.pages[0].page_height / 5000, - self.modes.left_space_mode / self.page_width, - self.bold, - self.italics, - self.text_len, - self.top, - self.bottom, - self.height, - self.width, - self.font_size / self.modes.font_size_mode if self.modes.font_size_mode else 0, - self.line_height, - self.numbers_percentage, - 1 if self.starts_upper else 0, - 1 if self.starts_number else 0, - self.starts_number_bar, - self.numbers_quantity, - self.starts_with_square_brackets, - self.starts_letter_dot, - self.dots_percentage, - 1 if self.uppercase else 0, - len(self.pdf_segments.pdf_data_segments) - self.segment_index, - len(self.pdf_segments.pdf_features.pages) - self.page_index, - self.pdf_segment.segment_type.get_index(), - ] - + self.get_other_segment_features(self.previous_segment) - + self.get_other_segment_features(self.next_segment) - + self.get_title_features(self.previous_title_segment) - + self.get_title_features(self.next_title_segment) - + self.most_frequent_words - ) - return features - - def token_after_last_token(self, token: PdfToken): - if self.last_token is None: - return True - - if self.last_token.bounding_box.bottom < token.bounding_box.bottom: - return True - - if self.last_token.bounding_box.left < token.bounding_box.left: - return True - - return False - - @staticmethod - def from_pdf_features(pdf_features: PdfData) -> list["SegmentNextPreviousTitle"]: - modes = Modes(pdf_features) - segments: list["SegmentNextPreviousTitle"] = list() - for index, pdf_segment in enumerate(pdf_features.pdf_data_segments): - segment_landmarks = SegmentNextPreviousTitle(index, pdf_segment, pdf_features, modes) - segments.append(segment_landmarks) - - sorted_pdf_segments = sorted(segments, key=lambda x: (x.page_index, x.top)) - - SegmentNextPreviousTitle.set_context_titles(sorted_pdf_segments) - - for index, sorted_segment in enumerate(sorted_pdf_segments): - if 0 < index: - sorted_segment.previous_segment = sorted_pdf_segments[index - 1] - - if index + 1 < len(sorted_pdf_segments): - sorted_segment.next_segment = sorted_pdf_segments[index + 1] - - return segments - - @staticmethod - def set_context_titles(sorted_pdf_segments): - previous_title_segment: Optional[SegmentNextPreviousTitle] = None - for sorted_segment in sorted_pdf_segments: - sorted_segment.previous_titles_segments = previous_title_segment - if sorted_segment.pdf_segment.segment_type == TokenType.TITLE: - previous_title_segment = sorted_segment - - next_title_segment: Optional[SegmentNextPreviousTitle] = None - for sorted_segment in reversed(sorted_pdf_segments): - sorted_segment.next_title_segment = next_title_segment - if sorted_segment.pdf_segment.segment_type == TokenType.TITLE: - next_title_segment = sorted_segment - - def set_most_frequent_words(self, most_frequent_words: list[str]): - self.most_frequent_words = [1 if w.lower() in self.text_content.lower() else 0 for w in most_frequent_words] diff --git a/src/extractors/segment_selector/methods/titles_history/SegmentTitlesHistory.py b/src/extractors/segment_selector/methods/titles_history/SegmentTitlesHistory.py deleted file mode 100755 index 847f671..0000000 --- a/src/extractors/segment_selector/methods/titles_history/SegmentTitlesHistory.py +++ /dev/null @@ -1,274 +0,0 @@ -import re - -import nltk -import numpy as np -from pdf_features.PdfToken import PdfToken -from pdf_token_type_labels.TokenType import TokenType - -from data.PdfDataSegment import PdfDataSegment -from data.PdfData import PdfData -from extractors.segment_selector.methods.Modes import Modes - -nltk.download("punkt") - - -class SegmentTitlesHistory: - def __init__(self, segment_index: int, pdf_segment: PdfDataSegment, pdf_segments: PdfData, modes: Modes): - self.modes = modes - self.previous_titles_segments: list["SegmentTitlesHistory"] = list() - self.previous_segment = None - self.next_segment = None - self.segment_index: float = segment_index - self.confidence: float = 0 - self.page_number = pdf_segment.page_number - self.page_index = pdf_segment.page_number - 1 - self.pdf_segment = pdf_segment - - self.segment_tokens: list[PdfToken] = [ - pdf_token - for _, pdf_token in pdf_segments.pdf_features.loop_tokens() - if self.page_number == pdf_token.page_number and pdf_segment.is_selected(pdf_token.bounding_box) - ] - - if not self.segment_tokens: - for _, pdf_token in pdf_segments.pdf_features.loop_tokens(): - self.segment_tokens = [pdf_token] - break - - self.pdf_segments: PdfData = pdf_segments - self.page_width = self.pdf_segments.pdf_features.pages[0].page_width - self.page_height = self.pdf_segments.pdf_features.pages[0].page_height - self.text_content: str = "" - self.text_len: int = 0 - self.top: float = 0 - self.left: float = 0 - self.right: float = 0 - self.bottom: float = 0 - self.height: float = 0 - self.width: float = 0 - self.font_size: float = 0.0 - self.font_family: str = "" - self.font_color: str = "" - self.line_height: int = 0 - self.numbers_quantity: int = 0 - self.numbers_percentage: float = 0 - self.starts_upper: bool = False - self.starts_number: bool = False - self.starts_number_bar: bool = False - self.starts_letter_dot: bool = False - self.starts_with_square_brackets: bool = False - self.starts_with_roman_numbers: bool = False - self.uppercase: bool = False - self.last_token: PdfDataSegment = None - self.bold: float = False - self.bold_token_number: int = 0 - self.italics: float = False - self.italics_token_number: int = 0 - self.dots_percentage: float = 0 - self.font_sizes = [token.font.font_size for _, token in self.pdf_segments.pdf_features.loop_tokens()] - self.most_frequent_words = list() - self.set_features() - - def set_features(self): - self.font_family = self.segment_tokens[0].font.font_id - self.font_color = self.segment_tokens[0].font.color - self.line_height = self.segment_tokens[0].font.font_size - self.top = self.segment_tokens[0].bounding_box.top - self.left = self.segment_tokens[0].bounding_box.left - self.right = self.segment_tokens[0].bounding_box.right - self.bottom = self.segment_tokens[0].bounding_box.bottom - words: list[str] = list() - - font_sizes = list() - for token in self.segment_tokens: - words.extend(token.content.split()) - self.top = min(self.top, token.bounding_box.top) - self.left = min(self.left, token.bounding_box.left) - self.right = max(self.right, token.bounding_box.left + token.bounding_box.width) - self.bottom = max(self.bottom, token.bounding_box.top + token.bounding_box.height) - self.bold_token_number = self.bold_token_number + 1 if token.font.bold else self.bold_token_number - self.italics_token_number = self.italics_token_number + 1 if token.font.italics else self.italics_token_number - font_sizes.append(token.font.font_size) - if self.token_after_last_token(token): - self.last_token = token - - self.top = self.top / self.page_height - self.bottom = self.bottom / self.page_height - self.right = self.right / self.page_width - self.left = self.left / self.page_width - self.text_content = " ".join(words) - self.text_len = len(self.text_content) - self.dots_percentage = self.text_content.count(".") / self.text_len if self.text_len > 0 else 0 - self.height = self.bottom - self.top - self.width = self.right - self.left - self.font_size = np.mean(font_sizes) - self.numbers_quantity = len(list(filter(lambda x: x.isdigit(), self.text_content))) - self.numbers_percentage = self.numbers_quantity / self.text_len if self.text_len > 0 else 0 - self.bold = self.bold_token_number / len(self.segment_tokens) - self.italics = self.italics_token_number / len(self.segment_tokens) - self.starts_upper = self.text_content[0].isupper() - self.starts_number = self.text_content[0].isdigit() - self.starts_number_bar = len(re.findall(r"^[0-9]\/", self.text_content)) == 1 - self.starts_letter_dot = len(re.findall(r"^[a-zA-Z]\.", self.text_content)) == 1 - self.uppercase = self.text_content.upper() == self.text_content - first_characters = self.text_content.split(" ")[0].split(".")[0] - roman_numbers = "".join(filter(lambda x: x in "IVXLCDM", first_characters)) - if len(roman_numbers) > 0 and roman_numbers == first_characters: - self.starts_with_roman_numbers = True - self.starts_with_square_brackets = self.text_content[0] == "[" - - def get_last_title_features(self, index: int): - if len(self.previous_titles_segments) <= index: - return list(np.zeros(22)) - - font_size_mode = sum(self.previous_titles_segments[index].font_sizes) / len( - self.previous_titles_segments[index].font_sizes - ) - - return [ - self.previous_titles_segments[index].segment_index, - len(self.previous_titles_segments[index].pdf_segments.pdf_data_segments) - - self.previous_titles_segments[index].segment_index, - self.previous_titles_segments[index].page_index, - len(self.pdf_segments.pdf_features.pages) - self.previous_titles_segments[index].page_index, - self.previous_titles_segments[index].bold, - self.previous_titles_segments[index].italics, - self.previous_titles_segments[index].text_len, - self.previous_titles_segments[index].top, - self.previous_titles_segments[index].bottom, - self.previous_titles_segments[index].height, - self.previous_titles_segments[index].width, - self.previous_titles_segments[index].font_size / font_size_mode, - self.previous_titles_segments[index].line_height, - self.previous_titles_segments[index].numbers_percentage, - 1 if self.previous_titles_segments[index].starts_upper else 0, - 1 if self.previous_titles_segments[index].starts_number else 0, - self.previous_titles_segments[index].starts_number_bar, - self.previous_titles_segments[index].numbers_quantity, - self.previous_titles_segments[index].starts_with_square_brackets, - self.previous_titles_segments[index].starts_letter_dot, - self.previous_titles_segments[index].dots_percentage, - 1 if self.previous_titles_segments[index].uppercase else 0, - ] - - @staticmethod - def get_other_segment_features(segment: "SegmentTitlesHistory"): - if not segment: - return list(np.zeros(22)) - - font_size_mode = sum(segment.font_sizes) / len(segment.font_sizes) - - return [ - segment.segment_index, - len(segment.pdf_segments.pdf_data_segments) - segment.segment_index, - segment.page_index, - len(segment.pdf_segments.pdf_features.pages) - segment.page_index, - segment.bold, - segment.italics, - segment.text_len, - segment.top, - segment.bottom, - segment.height, - segment.width, - segment.font_size / font_size_mode, - segment.line_height, - segment.numbers_percentage, - 1 if segment.starts_upper else 0, - 1 if segment.starts_number else 0, - segment.starts_number_bar, - segment.numbers_quantity, - segment.starts_with_square_brackets, - segment.starts_letter_dot, - segment.dots_percentage, - 1 if segment.uppercase else 0, - ] - - def get_features_array(self) -> np.array: - font_size_average = sum(self.font_sizes) / len(self.font_sizes) - - features = np.array( - [ - self.segment_index, - self.page_index, - font_size_average, - self.modes.lines_space_mode, - self.modes.font_family_mode_normalized, - self.pdf_segments.pdf_features.pages[0].page_width / 5000, - self.pdf_segments.pdf_features.pages[0].page_height / 5000, - self.modes.left_space_mode / self.page_width, - self.bold, - self.italics, - self.text_len, - self.top, - self.bottom, - self.height, - self.width, - self.font_size / self.modes.font_size_mode if self.modes.font_size_mode else 0, - self.line_height, - self.numbers_percentage, - 1 if self.starts_upper else 0, - 1 if self.starts_number else 0, - self.starts_number_bar, - self.numbers_quantity, - self.starts_with_square_brackets, - self.starts_letter_dot, - self.dots_percentage, - 1 if self.uppercase else 0, - len(self.pdf_segments.pdf_data_segments) - self.segment_index, - len(self.pdf_segments.pdf_features.pages) - self.page_index, - self.pdf_segment.segment_type.get_index(), - ] - + self.get_other_segment_features(self.previous_segment) - + self.get_other_segment_features(self.next_segment) - + self.get_last_title_features(0) - + self.get_last_title_features(1) - + self.get_last_title_features(2) - + self.most_frequent_words - ) - return features - - def token_after_last_token(self, token: PdfToken): - if self.last_token is None: - return True - - if self.last_token.bounding_box.bottom < token.bounding_box.bottom: - return True - - if self.last_token.bounding_box.left < token.bounding_box.left: - return True - - return False - - @staticmethod - def from_pdf_features(pdf_features: PdfData) -> list["SegmentTitlesHistory"]: - modes = Modes(pdf_features) - segments: list["SegmentTitlesHistory"] = list() - for index, pdf_segment in enumerate(pdf_features.pdf_data_segments): - segment_landmarks = SegmentTitlesHistory(index, pdf_segment, pdf_features, modes) - segments.append(segment_landmarks) - - sorted_pdf_segments = sorted(segments, key=lambda x: (x.page_index, x.top)) - - previous_titles_segment: list[SegmentTitlesHistory] = list() - - for sorted_segment in sorted_pdf_segments: - sorted_segment.previous_titles_segments = previous_titles_segment - if sorted_segment.pdf_segment.segment_type == TokenType.TITLE: - previous_titles_segment.insert(0, SegmentTitlesHistory.copy(sorted_segment)) - previous_titles_segment = previous_titles_segment[:3] - - for index, sorted_segment in enumerate(sorted_pdf_segments): - if 0 < index: - sorted_segment.previous_segment = sorted_pdf_segments[index - 1] - - if index + 1 < len(sorted_pdf_segments): - sorted_segment.next_segment = sorted_pdf_segments[index + 1] - - return segments - - def set_most_frequent_words(self, most_frequent_words: list[str]): - self.most_frequent_words = [1 if w.lower() in self.text_content.lower() else 0 for w in most_frequent_words] - - @staticmethod - def copy(segment: "SegmentTitlesHistory"): - return SegmentTitlesHistory(int(segment.segment_index), segment.pdf_segment, segment.pdf_segments, segment.modes) diff --git a/src/extractors/segment_selector/methods/titles_history/TitlesHistory.py b/src/extractors/segment_selector/methods/titles_history/TitlesHistory.py deleted file mode 100644 index 14c4b2b..0000000 --- a/src/extractors/segment_selector/methods/titles_history/TitlesHistory.py +++ /dev/null @@ -1,121 +0,0 @@ -import json -from collections import Counter -from pathlib import Path -from time import time - - -import nltk -import numpy as np - -import lightgbm as lgb -from sklearn.metrics import f1_score - -from config import config_logger -from data.PdfData import PdfData -from extractors.segment_selector.methods.titles_history.SegmentTitlesHistory import SegmentTitlesHistory - -from nltk.tokenize import word_tokenize -from nltk.corpus import stopwords - -nltk.download("stopwords") - - -class TitlesHistory: - def __init__(self): - self.segments: list[SegmentTitlesHistory] = list() - self.model = None - self.best_cut = 0 - - def create_model(self, training_pdfs_segments: list[PdfData], model_path): - start = time() - self.set_segments(pdfs_segments=training_pdfs_segments) - - config_logger.info(f"Set segments {int(time() - start)} seconds") - - if len(self.segments) == 0: - return None - - self.save_most_frequent_words(model_path) - self.set_most_frequent_words_to_segments(model_path) - start = time() - self.run_light_gbm() - config_logger.info(f"Run lightGBM {int(time() - start)} seconds") - - return self.model - - @staticmethod - def set_model(x_train, y_train): - parameters = dict() - parameters["num_leaves"] = 70 - parameters["feature_fraction"] = 0.9 - parameters["bagging_fraction"] = 0.9 - parameters["bagging_freq"] = 0 - parameters["objective"] = "binary" - parameters["learning_rate"] = 0.05 - parameters["metric"] = "binary_logloss" - parameters["verbose"] = -1 - parameters["boosting_type"] = "gbdt" - - train_data = lgb.Dataset(x_train, y_train) - num_round = 3000 - light_gbm_model = lgb.train(parameters, train_data, num_round) - - return light_gbm_model - - def run_light_gbm(self): - x_train, y_train = self.get_training_data() - self.model = self.set_model(x_train, y_train) - - def get_training_data(self): - y = np.array([]) - x_rows = [] - for segment in self.segments: - x_rows.append(segment.get_features_array()) - y = np.append(y, segment.pdf_segment.ml_label) - - X = np.zeros((len(x_rows), len(x_rows[0]) if x_rows else 0)) - for i, v in enumerate(x_rows): - X[i] = v - - return X, y - - def set_segments(self, pdfs_segments: list[PdfData]): - self.segments = list() - for pdf_features in pdfs_segments: - self.segments.extend(SegmentTitlesHistory.from_pdf_features(pdf_features)) - - def predict(self, model, testing_pdfs_segments: list[PdfData], model_path): - self.set_segments(testing_pdfs_segments) - self.set_most_frequent_words_to_segments(model_path) - x, y = self.get_training_data() - x = x[:, : model.num_feature()] - predictions = model.predict(x) - return predictions - - @staticmethod - def get_performance(predictions, y_truth): - return f1_score(y_truth, [prediction > 0.5 for prediction in predictions]) - - def save_most_frequent_words(self, model_path): - count = Counter() - for segment in self.segments: - if segment.pdf_segment.ml_label: - text_tokens = word_tokenize(segment.text_content) - count.update( - [word.lower() for word in text_tokens if word.lower() not in stopwords.words() and word not in ".,"] - ) - config_logger.info("Most repeated words") - most_repeated_words = [x[0] for x in count.most_common()[:3]] - config_logger.info(most_repeated_words) - frequent_words_path = self.get_frequent_words_path(model_path) - Path(frequent_words_path).write_text(json.dumps(most_repeated_words)) - - @staticmethod - def get_frequent_words_path(model_path: str | Path) -> str: - frequent_words_path = str(model_path) + "_frequent_words" - return frequent_words_path - - def set_most_frequent_words_to_segments(self, model_path: str): - most_frequent_words = json.loads(Path(self.get_frequent_words_path(model_path)).read_text()) - for segment in self.segments: - segment.set_most_frequent_words(most_frequent_words) diff --git a/src/extractors/segment_selector/test/test_segment_selector.py b/src/extractors/segment_selector/test/test_segment_selector.py deleted file mode 100644 index 5c3a869..0000000 --- a/src/extractors/segment_selector/test/test_segment_selector.py +++ /dev/null @@ -1,95 +0,0 @@ -import json -import shutil -from os import makedirs -from os.path import exists, join -from time import time -from unittest import TestCase - -from config import APP_PATH, DATA_PATH -from data.ExtractionIdentifier import ExtractionIdentifier -from data.LabeledData import LabeledData -from data.SegmentBox import SegmentBox -from data.SegmentationData import SegmentationData -from data.PdfData import PdfData -from XmlFile import XmlFile -from extractors.segment_selector.SegmentSelector import SegmentSelector -from pdf_token_type_labels.TokenType import TokenType - - -class TestSegmentSelector(TestCase): - TENANT = "segment_selector_test" - extraction_id = "extraction_id" - EXTRACTION_IDENTIFIER = ExtractionIdentifier(run_name=TENANT, extraction_name=extraction_id) - TEST_XML_NAME = "test.xml" - - TEST_XML_PATH = join(APP_PATH, "tenant_test", extraction_id, "xml_to_train", TEST_XML_NAME) - BASE_PATH = join(DATA_PATH, TENANT, extraction_id) - - labels = SegmentBox( - left=400, top=115, width=74, height=9, page_number=1, page_width=612, page_height=792, segment_type=TokenType.TITLE - ) - LABELED_DATA_JSON = { - "tenant": TENANT, - "id": extraction_id, - "xml_file_name": TEST_XML_NAME, - "language_iso": "en", - "label_text": "text", - "page_width": 612, - "page_height": 792, - "xml_segments_boxes": [], - "label_segments_boxes": [json.loads(labels.model_dump_json())], - } - - XML_FILE = XmlFile( - extraction_identifier=EXTRACTION_IDENTIFIER, - to_train=True, - xml_file_name=TEST_XML_NAME, - ) - - def setUp(self): - shutil.rmtree(join(DATA_PATH, TestSegmentSelector.TENANT), ignore_errors=True) - - makedirs(join(TestSegmentSelector.BASE_PATH, "xml_to_train")) - test_folder_path = join(TestSegmentSelector.BASE_PATH, "xml_to_train", TestSegmentSelector.TEST_XML_NAME) - shutil.copy(self.TEST_XML_PATH, test_folder_path) - segment_selector = SegmentSelector(extraction_identifier=TestSegmentSelector.EXTRACTION_IDENTIFIER) - segment_selector.prepare_model_folder() - - def tearDown(self): - shutil.rmtree(join(DATA_PATH, TestSegmentSelector.TENANT), ignore_errors=True) - - def test_create_model(self): - segmentation_data = SegmentationData.from_labeled_data(LabeledData(**TestSegmentSelector.LABELED_DATA_JSON)) - pdf_segments = PdfData.from_xml_file(TestSegmentSelector.XML_FILE, segmentation_data, []) - - segment_selector = SegmentSelector(extraction_identifier=TestSegmentSelector.EXTRACTION_IDENTIFIER) - model_created, error = segment_selector.create_model(pdfs_data=[pdf_segments]) - - self.assertTrue(model_created) - self.assertEqual("", error) - self.assertTrue(exists(join(TestSegmentSelector.BASE_PATH, "segment_predictor_model", "model.model"))) - self.assertFalse(exists(join(TestSegmentSelector.BASE_PATH, "multilingual_segment_predictor_model", "model.model"))) - - def test_create_model_load_test(self): - start = time() - segmentation_data = SegmentationData.from_labeled_data(LabeledData(**TestSegmentSelector.LABELED_DATA_JSON)) - for i in range(20): - PdfData.from_xml_file(TestSegmentSelector.XML_FILE, segmentation_data, []) - - print(time() - start, "create model") - - def test_set_extraction_segments(self): - segmentation_data = SegmentationData.from_labeled_data(LabeledData(**TestSegmentSelector.LABELED_DATA_JSON)) - - pdf_features = PdfData.from_xml_file(TestSegmentSelector.XML_FILE, segmentation_data, []) - segment_selector = SegmentSelector(extraction_identifier=TestSegmentSelector.EXTRACTION_IDENTIFIER) - segment_selector.prepare_model_folder() - segment_selector.create_model(pdfs_data=[pdf_features]) - - segment_selector = SegmentSelector(extraction_identifier=TestSegmentSelector.EXTRACTION_IDENTIFIER) - segment_selector.set_extraction_segments(pdfs_data=[pdf_features]) - - extraction_segments = [x for x in pdf_features.pdf_data_segments if x.ml_label] - self.assertEqual(1, len(extraction_segments)) - self.assertEqual(1, extraction_segments[0].page_number) - self.assertEqual("Original: English", extraction_segments[0].text_content) diff --git a/src/extractors/text_to_multi_option_extractor/TextToMultiOptionExtractor.py b/src/extractors/text_to_multi_option_extractor/TextToMultiOptionExtractor.py deleted file mode 100644 index 13d5d0f..0000000 --- a/src/extractors/text_to_multi_option_extractor/TextToMultiOptionExtractor.py +++ /dev/null @@ -1,178 +0,0 @@ -import json -import os -from os.path import join, exists -from pathlib import Path -from typing import Type - -from config import config_logger -from data.ExtractionData import ExtractionData -from data.Option import Option -from data.PredictionSample import PredictionSample -from data.Suggestion import Suggestion -from extractors.ExtractorBase import ExtractorBase -from extractors.text_to_multi_option_extractor.TextToMultiOptionMethod import TextToMultiOptionMethod -from extractors.text_to_multi_option_extractor.methods.TextFastTextMethod import TextFastTextMethod -from extractors.text_to_multi_option_extractor.methods.TextFuzzyAll100 import TextFuzzyAll100 -from extractors.text_to_multi_option_extractor.methods.TextFuzzyAll75 import TextFuzzyAll75 -from extractors.text_to_multi_option_extractor.methods.TextFuzzyAll88 import TextFuzzyAll88 -from extractors.text_to_multi_option_extractor.methods.TextFuzzyFirst import TextFuzzyFirst -from extractors.text_to_multi_option_extractor.methods.NaiveTextToMultiOptionMethod import NaiveTextToMultiOptionMethod -from extractors.text_to_multi_option_extractor.methods.TextFuzzyFirstCleanLabels import TextFuzzyFirstCleanLabels -from extractors.text_to_multi_option_extractor.methods.TextFuzzyLast import TextFuzzyLast -from extractors.text_to_multi_option_extractor.methods.TextFuzzyLastCleanLabels import TextFuzzyLastCleanLabels -from extractors.text_to_multi_option_extractor.methods.TextSetFit import TextSetFit -from extractors.text_to_multi_option_extractor.methods.TextSetFitMultilingual import TextSetFitMultilingual -from extractors.text_to_multi_option_extractor.methods.TextSingleLabelSetFit import TextSingleLabelSetFit -from extractors.text_to_multi_option_extractor.methods.TextSingleLabelSetFitMultilingual import ( - TextSingleLabelSetFitMultilingual, -) -from extractors.text_to_multi_option_extractor.methods.TextTfIdf import TextTfIdf - - -class TextToMultiOptionExtractor(ExtractorBase): - SCRIPT_PATH = os.path.dirname(os.path.realpath(__file__)) - - METHODS: list[Type[TextToMultiOptionMethod]] = [ - NaiveTextToMultiOptionMethod, - TextFuzzyAll75, - TextFuzzyAll88, - TextFuzzyAll100, - TextFuzzyFirst, - TextFuzzyFirstCleanLabels, - TextFuzzyLast, - TextFuzzyLastCleanLabels, - TextTfIdf, - TextFastTextMethod, - TextSetFit, - TextSetFitMultilingual, - TextSingleLabelSetFit, - TextSingleLabelSetFitMultilingual, - ] - - def __init__(self, extraction_identifier): - super().__init__(extraction_identifier) - - self.base_path = join(self.extraction_identifier.get_path(), "text_to_multi_option") - self.multi_value_path = Path(self.base_path, "multi_value.json") - self.method_name_path = Path(self.base_path, "method_name.json") - - self.options: list[Option] = list() - self.multi_value = False - - def get_suggestions(self, predictions_samples: list[PredictionSample]) -> list[Suggestion]: - if not predictions_samples: - return [] - - predictions = self.get_predictions_method().predict(predictions_samples) - - if not self.multi_value: - predictions = [x[:1] for x in predictions] - - suggestions = list() - for prediction_sample, prediction in zip(predictions_samples, predictions): - suggestion = Suggestion.from_prediction_multi_option( - self.extraction_identifier, prediction_sample.entity_name, prediction - ) - suggestions.append(suggestion) - - return suggestions - - def get_predictions_method(self): - self.options = self.load_options() - self.multi_value = self.load_multi_value() - method_name = json.loads(self.method_name_path.read_text()) - for method in self.METHODS: - method_instance = method(self.extraction_identifier, self.options, self.multi_value) - if method_instance.get_name() == method_name: - return method_instance - - return self.METHODS[0](self.extraction_identifier, self.options, self.multi_value) - - def load_options(self, options: list[Option] = None) -> list[Option]: - if options: - self.extraction_identifier.get_options_path().write_text(json.dumps([x.model_dump() for x in options])) - return options - - if not exists(self.extraction_identifier.get_options_path()): - return [] - - return [Option(**x) for x in json.loads(self.extraction_identifier.get_options_path().read_text())] - - def load_multi_value(self) -> bool: - if not self.multi_value_path.exists(): - return False - - return json.loads(self.multi_value_path.read_text()) - - def create_model(self, extraction_data: ExtractionData) -> tuple[bool, str]: - self.options = self.load_options(extraction_data.options) - self.multi_value = extraction_data.multi_value - - best_method_instance = self.get_best_method(extraction_data) - best_method_instance.train(extraction_data) - - self.save_json(str(self.multi_value_path), extraction_data.multi_value) - self.save_json(str(self.method_name_path), best_method_instance.get_name()) - return True, "" - - def get_best_method(self, extraction_data: ExtractionData): - best_performance = 0 - best_method_instance = self.METHODS[0](self.extraction_identifier, self.options, self.multi_value) - for method in self.METHODS: - method_instance = method(self.extraction_identifier, self.options, self.multi_value) - - if len(self.METHODS) == 1: - return method_instance - - if not method_instance.can_be_used(extraction_data): - continue - - performance = self.get_performance(extraction_data, method_instance) - if performance == 100: - config_logger.info(f"\nBest method {method_instance.get_name()} with {performance}%") - return method_instance - - if performance > best_performance: - best_performance = performance - best_method_instance = method_instance - - return best_method_instance - - @staticmethod - def get_performance(extraction_data, method_instance): - config_logger.info(f"\nChecking {method_instance.get_name()}") - try: - performance = method_instance.performance(extraction_data) - except: - performance = 0 - config_logger.info(f"\nPerformance {method_instance.get_name()}: {performance}%") - return performance - - def remove_models(self): - for method in self.METHODS: - method_instance = method(self.extraction_identifier, self.options, self.multi_value) - method_instance.remove_model() - - def can_be_used(self, extraction_data: ExtractionData) -> bool: - if not extraction_data.options and not extraction_data.extraction_identifier.get_options_path().exists(): - return False - - for sample in extraction_data.samples: - if sample.labeled_data and sample.labeled_data.source_text: - return True - - return False - - def suggestions_from_predictions( - self, method_instance: type[TextToMultiOptionMethod], predictions_samples: list[PredictionSample] - ) -> list[Suggestion]: - suggestions = list() - prediction = method_instance.predict(predictions_samples, self.options) - - for prediction, prediction_sample in zip(prediction, predictions_samples): - suggestion = Suggestion.from_prediction_multi_option( - self.extraction_identifier, prediction_sample.entity_name, prediction - ) - suggestions.append(suggestion) - - return suggestions diff --git a/src/extractors/text_to_multi_option_extractor/TextToMultiOptionMethod.py b/src/extractors/text_to_multi_option_extractor/TextToMultiOptionMethod.py deleted file mode 100644 index babb22c..0000000 --- a/src/extractors/text_to_multi_option_extractor/TextToMultiOptionMethod.py +++ /dev/null @@ -1,96 +0,0 @@ -import json -import os -import shutil -from abc import abstractmethod -from os.path import join, exists -from pathlib import Path - -from numpy import argmax -from sklearn.metrics import f1_score, accuracy_score -from data.ExtractionIdentifier import ExtractionIdentifier -from data.Option import Option -from data.ExtractionData import ExtractionData -from data.PredictionSample import PredictionSample -from extractors.ExtractorBase import ExtractorBase - - -class TextToMultiOptionMethod: - def __init__(self, extraction_identifier: ExtractionIdentifier, options: list[Option], multi_value: bool): - self.options = options - self.multi_value = multi_value - self.extraction_identifier = extraction_identifier - os.makedirs(self.extraction_identifier.get_path(), exist_ok=True) - - def get_name(self): - return self.__class__.__name__ - - def save_json(self, file_name: str, data: any): - path = join(self.extraction_identifier.get_path(), self.get_name(), file_name) - if not exists(Path(path).parent): - os.makedirs(Path(path).parent) - - with open(path, "w") as file: - json.dump(data, file) - - def load_json(self, file_name: str): - path = join(self.extraction_identifier.get_path(), self.get_name(), file_name) - - with open(path, "r") as file: - return json.load(file) - - def remove_model(self): - shutil.rmtree(join(self.extraction_identifier.get_path(), self.get_name()), ignore_errors=True) - - @abstractmethod - def train(self, extraction_data: ExtractionData): - pass - - @abstractmethod - def predict(self, predictions_samples: list[PredictionSample]) -> list[list[Option]]: - pass - - def performance(self, extraction_data: ExtractionData) -> float: - if not extraction_data.samples: - return 0 - - performance_train_set, performance_test_set = ExtractorBase.get_train_test_sets(extraction_data) - - self.train(performance_train_set) - - prediction_samples = [PredictionSample(tags_texts=x.tags_texts) for x in performance_test_set.samples] - predictions = self.predict(prediction_samples) - - self.remove_model() - - correct_one_hot_encoding = self.get_one_hot_encoding(performance_test_set) - predictions_one_hot_encoding = [ - [1 if option in prediction else 0 for option in self.options] for prediction in predictions - ] - return 100 * f1_score(correct_one_hot_encoding, predictions_one_hot_encoding, average="micro") - - def get_one_hot_encoding(self, multi_option_data: ExtractionData): - options_ids = [option.id for option in self.options] - one_hot_encoding = list() - for sample in multi_option_data.samples: - one_hot_encoding.append([0] * len(options_ids)) - for option in sample.labeled_data.values: - if option.id not in options_ids: - print(f"option {option.id} not in {options_ids}") - continue - one_hot_encoding[-1][options_ids.index(option.id)] = 1 - - return one_hot_encoding - - def predictions_to_options_list(self, predictions_scores: list[list[float]]) -> list[list[Option]]: - return [self.one_prediction_to_option_list(prediction) for prediction in predictions_scores] - - def one_prediction_to_option_list(self, prediction_scores: list[float]) -> list[Option]: - if not self.multi_value: - best_score_index = argmax(prediction_scores) - return [self.options[best_score_index]] if prediction_scores[best_score_index] > 0.5 else [] - - return [self.options[i] for i, value in enumerate(prediction_scores) if value > 0.5] - - @abstractmethod - def can_be_used(self, extraction_data: ExtractionData) -> bool: - pass diff --git a/src/extractors/text_to_multi_option_extractor/labeled_data/action/labels.json b/src/extractors/text_to_multi_option_extractor/labeled_data/action/labels.json deleted file mode 100644 index a4a2f1c..0000000 --- a/src/extractors/text_to_multi_option_extractor/labeled_data/action/labels.json +++ /dev/null @@ -1,361922 +0,0 @@ -[ - { - "text": "Burkina Faso undertook to submit an interim report on progress made in the implementation of the recommendations of the universal periodic review to the Human Rights Council in 2015.", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Continue its efforts to prevent the spread of HIV/AIDS in the country, in line with its National Strategic Plan for HIV Prevention and Control 2008-2013", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Adopt and implement a comprehensive national human rights action plan ", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Continue its efforts to achieve the goals of the National Sanitary Development Plan 2006-2015", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Bring the Criminal Code provisions on sexual violence into line with international standards, ensure accountability for conflict-related sexual crimes and provide victims with adequate support and rehabilitation", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Issue a standing invitation to special procedures mandate holders to help establish the basis of human rights education and training ", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Further analyse the causes of the significantly lower wages women earn and continue to implement strategies to address the issue ", - "values": [ - "3 - Considering action" - ] - }, - { - "text": "Making more efforts to spread human rights culture in the educational field at various levels", - "values": [ - "4 - General action" - ] - }, - { - "text": "Approve in the shortest period of time the new law regarding indigenous peoples with the aim of safeguarding minority rights, specifically those of the Pygmies", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Bring the draft bill on NGOs into line with international norms and the Egyptian Constitution", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Rapidly implement the recommendations of the Lessons Learnt and Reconciliation Commission", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Adopt a comprehensive law on racism, racial discrimination, xenophobia and related intolerances which addresses hate speech and includes measures to effectively investigate and prosecute such offences", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Redouble its efforts to tackle the practice of forced and early marriage", - "values": [ - "4 - General action" - ] - }, - { - "text": "Continue the eradication of the practice of female genital mutilation (FGM) and enforce the present legislation to combat rape and other forms of violence against women, including against female refugees and internally displaced persons", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Make available the necessary resources to the Human Rights Commission to effectively implement its important mandate ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Improve the policy on health care to provide affordable health-care services to immigrant women and girls", - "values": [ - "4 - General action" - ] - }, - { - "text": "Extend a standing invitation to special-procedure mandate holders as a way of informing and supporting human rights reforms ", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Speed up the review of the Prevention of Domestic Violence Act and strengthen the mechanisms to protect, compensate, rehabilitate and reintegrate victims", - "values": [ - "4 - General action" - ] - }, - { - "text": "Adopt further and effective measures to prevent and punish episodes of harassment against journalists and human rights defenders, and ensure that nobody is arrested for exercising their right to freedom of expression", - "values": [ - "4 - General action" - ] - }, - { - "text": "Fight female genital mutilation and early marriage", - "values": [ - "4 - General action" - ] - }, - { - "text": "A similar system (as for treaty bodies) be created for the analysis and implementation of the recommendations resulting from the universal periodic review exercise", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Enhance and expand its health-care system to cover the whole country", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Ensure that detainees in the custody of the General Directorate of the Border Police and the Ministry of the Interior are treated in a humane and dignified manner and that their detention fully complies with the international obligations of Bulgaria governing the administrative detention of migrants", - "values": [ - "4 - General action" - ] - }, - { - "text": "Actively seek to address these concerns and review the use of administrative detention, which denies people their rights to liberty, due process and fair trial.", - "values": [ - "4 - General action" - ] - }, - { - "text": "Strengthen national legislation with regard to the rights of domestic workers", - "values": [ - "4 - General action" - ] - }, - { - "text": "Ratify the Optional Protocol to the Convention against Torture (OP-CAT) and swiftly establish a national preventive mechanism in accordance with the Protocol", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Take action to effectively prevent and fight violence against women, particularly domestic violence", - "values": [ - "4 - General action" - ] - }, - { - "text": "In accordance with the conclusions adopted by the Committee on the Rights of the Child in 2006, increase measures to stop child labour and to promote social reintegration of child and adolescent victims of exploitation.", - "values": [ - "4 - General action" - ] - }, - { - "text": "Repeal legal provisions that criminalize lesbian, gay, bisexual, transgender and intersex persons, in accordance with the principle of non-discrimination", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Continue efforts to improve women's rights and conduct awareness- raising and training courses for law enforcement officers in order to ensure the human rights of its people ", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Take increased measures to protect and provide redress to women at risk of or subjected to gender-based violence.", - "values": [ - "4 - General action" - ] - }, - { - "text": "Allow free exercise of the work of independent human rights organizations ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Ensure that the laws concerning non-governmental organizations do not impose undue obstacles for their functioning ", - "values": [ - "4 - General action" - ] - }, - { - "text": "The Royal Government of Cambodia has made its firm commitment toward the continuation of implementation of its reform program in all sectors in a more in-depth manner, based on four principles - individual rights, liberal democracy and multi-party system and pluralism, clear-cut separation of power and the rule of law as enshrined in the Constitution.", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Explore the possibility of establishing an independent national human rights institution in conformity with the Paris Principles", - "values": [ - "3 - Considering action" - ] - }, - { - "text": "Consider the possibility to establish a de jure moratorium with a view to abolishing the death penalty", - "values": [ - "3 - Considering action" - ] - }, - { - "text": "Take all the measures necessary at the national level for the National Human Rights Institution to comply fully with the Paris Principles and be provided with the necessary financial and human resources to fully carry out its functions ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Continue efforts to protect fundamental freedoms and human rights and to protect citizens ", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Consider ratifying the International Covenant on Civil and Political Rights and the International Covenant on Economic, Social and Cultural Rights, as recommended during the first cycle ", - "values": [ - "3 - Considering action" - ] - }, - { - "text": "Put in place a national strategy in the area of public security ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Continue to pursue its efforts to achieve the integration of immigrants and their participation in political and cultural and economic life through the National Action Plan for Integration which was adopted in 19 January 2010 ", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Strengthen efforts to eliminate discrimination against women", - "values": [ - "4 - General action" - ] - }, - { - "text": "Take further steps to ensure a safe and enabling environment for human rights defenders", - "values": [ - "4 - General action" - ] - }, - { - "text": "Ratify CPED, the Optional Protocol to the International Covenant on Economic, Social and Cultural Rights (ICESCR) and the Rome Statute of the International Criminal Court (ICC) ", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Consider becoming a State party and ratify the International Convention for the Protection of the Rights of All Migrant Workers and their Families to protect the human rights of these migrant workers ", - "values": [ - "3 - Considering action" - ] - }, - { - "text": "Guarantee freedom of association and expression for all citizens, including the press, human rights defenders, political parties, civic organizations and trade unions ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Enact legislation to prohibit FGM. ", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Respond positively to the request to visit the country made by the Special Rapporteur on freedom of religion in 2008.", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Ratify the Optional Protocol to the Convention against Torture, the International Convention on the Protection of All Persons from Enforced Disappearance, the Convention relating to the status of Stateless Persons and the Convention on the Reduction of Statelessness", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Ensure that all allegations of police brutality or other abuses perpetrated by law enforcement authorities against minors lead to a prompt and appropriate investigation and that those responsible are brought to justice ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Adopt a comprehensive national strategy to fight all forms of violence against women, including women rights defenders, both on the public and the domestic level, especially sexual harassment", - "values": [ - "4 - General action" - ] - }, - { - "text": "Review its relevant legal framework to safeguard the legitimate exercise of freedom of expression ", - "values": [ - "3 - Considering action" - ] - }, - { - "text": "Continue efforts to empower and advance women and facilitate women\u2019s participation in the society, particularly in political life, decision-making and holding leadership positions", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Establish systematic registration of all newborn children and adopt further measures, including awareness-raising campaigns, to fight child labour and violence against children.", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Adopt practical and legislative measures to ensure impartial and effective investigation of cases of ill-treatment by law enforcement bodies ", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Step up efforts to investigate and act upon instances of hate speech and hate crime and to ensure effective access to justice for victims, including lesbian, gay, bisexual, transgender and intersex persons and members of religious or ethnic minority communities", - "values": [ - "4 - General action" - ] - }, - { - "text": "Take all necessary action to respect and promote the right to freedom of expression, peaceful assembly and association in line with its international human rights obligations ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Continue to improve its comprehensive framework by introducing the definition of "torture" in compliance with article 1 of the Convention against Torture", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Continue efforts aimed at improving access to continuing education and training in the area of human rights for judicial and legal officers, including through bilateral and other engagement with partners, in the light of the expressed need for greater capacity-building and technical assistance in key areas of governance ", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Ensure that diversity is actively pursued in school curricula through awareness-raising activities in order to eliminate discrimination against minorities, especially lesbian, gay, bisexual, transgender and intersex persons", - "values": [ - "4 - General action" - ] - }, - { - "text": "Step up efforts to address the economic and social inequalities affecting the indigenous peoples", - "values": [ - "4 - General action" - ] - }, - { - "text": "Bring those State agents who have committed human rights violations, particularly those named in the United Nations Commission of Inquiry report, to justice ", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Ensure the effective implementation of its National Human Rights Action Plan", - "values": [ - "4 - General action" - ] - }, - { - "text": "Adopt a number of legislative and practical measures designed to combat manifestation of racial discrimination", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Ensure equal access to education for indigenous peoples, AfroBolivians and other disadvantaged communities and groups", - "values": [ - "4 - General action" - ] - }, - { - "text": "Establish practical measures to resolve the issue of Roma children being placed into special schools for disabled children, without clearly defined selection criteria or effective independent complaint mechanisms for parents.", - "values": [ - "4 - General action" - ] - }, - { - "text": "Make further efforts to implement the recommendations of various treaty bodies ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Ratify ICCPR, including its second protocol, and ICESCR", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Ratify following international legal instruments, respectively: (i) the International Covenant on Economic, Social and Cultural Rights and its Optional Protocol (ii) the Convention against Torture and its Optional Protocol, and finally, the three Optional Protocols to the Convention on the Rights of the Child", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Take steps to ensure that bodies entrusted with overseeing the protection of rights, such as the National Human Rights Commission, are fully mandated and resourced", - "values": [ - "4 - General action" - ] - }, - { - "text": "Continue its positive engagement toward the total eradication of excision by 2015 as indicated in national Action Plan", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Take further steps to ensure that children with disabilities be included in the development of the education system and in health insurance plans, as well as to take all necessary measures to ensure the implementation of legislation providing services for children with disabilities", - "values": [ - "4 - General action" - ] - }, - { - "text": "Enhance its implementation of laws to protect women's rights", - "values": [ - "4 - General action" - ] - }, - { - "text": "Continue deploying concrete actions aimed at eliminating discrimination against women and improve the rights of women and gender equality", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Establish a national mechanism for the prevention of torture ", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Accede to the Convention on the Protection of the Rights of All Migrant Workers and Members of their Families", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Expand the mandate of the German Institute for Human Rights to receiving complaints of human rights violations ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Review the definition of torture in its national legislation so that it fully complies with that set out in article 1 of the Convention against Torture and other Cruel, Inhuman or Degrading Treatment or Punishment ", - "values": [ - "3 - Considering action" - ] - }, - { - "text": "Accelerate the process of ratifying the Convention against Torture through its legislature", - "values": [ - "4 - General action" - ] - }, - { - "text": "Review its resident registration system to safeguard the right to privacy and limit the uses registration numbers to those strictly necessary for the provision of public services", - "values": [ - "3 - Considering action" - ] - }, - { - "text": "Continue efforts to improve conditions for girls, particularly with respect to the quality of nutrition, health care and education, and to their civil rights, including equitable heritable rights", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Issue a standing invitation to all Special proceduress ", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Adopt a new comprehensive legislation to prevent and combat all forms of discrimination and violence against women", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Continue the cooperation with the United Nations and its mechanisms in areas of technical training related to human rights", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Take steps to eliminate sexual and gender-based violence and ensure that perpetrators are held responsible and that victims have secure access to justice", - "values": [ - "4 - General action" - ] - }, - { - "text": "Increase human and technical resources for the effective implementation of the Law Against Domestic Violence (LADV)", - "values": [ - "4 - General action" - ] - }, - { - "text": "Strengthen and further develop measures to ensure that all children born within the national territory are registered ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Continue its work to achieve greater access to employment for women with disabilities ", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Proceed to the ratification of the Optional Protocol to the International Covenant on Economic, Social and Cultural Rights (ICESCR)", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Ensure that the law enforcement agencies fully observe the legal mechanism and comply with human rights principles, such as the right of the accused and suspects, in the course of carrying out their duties.", - "values": [ - "4 - General action" - ] - }, - { - "text": "Investigate the enforced disappearances cases that have not yet been clarified, in order to ensure the enjoyment of the right to truth and justice for the relatives of disappeared persons ", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Work towards the effective establishment of the national human rights institution", - "values": [ - "4 - General action" - ] - }, - { - "text": "Intensify dialogue with the Councils of various national minorities in Serbia and with their organizations ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Ensure that the security forces act in accordance with international human rights norms on the use of force and do not carry out arbitrary detentions", - "values": [ - "4 - General action" - ] - }, - { - "text": "Stop violating international human rights and humanitarian law", - "values": [ - "4 - General action" - ] - }, - { - "text": "Establish a national commission for human rights, with sufficient guarantees of independence and adequate material and human resources, which would work in close cooperation with the United Nations.", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Put greater efforts to ensure that human rights awareness, including the issue of gender equality, is included in the school curricula ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Take appropriate steps to ensure inclusive education in Czech schools", - "values": [ - "4 - General action" - ] - }, - { - "text": "Continue to fulfil its international obligations and commitments it has made in the field of human rights taking into account the country's development and its historical, cultural and religious background", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Continue its efforts to strengthen its institutional human rights infrastructures, in particular those aimed at the establishment of a family court in order to deal with resolving family disputes ", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Adopt a comprehensive policy aimed at putting an end to traditional stereotypes", - "values": [ - "4 - General action" - ] - }, - { - "text": "Ratify the 1954 Convention relating to the Status of Stateless Persons and the 1961 Convention on the Reduction of Statelessness", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Withdraw reservations to the 1951 Convention relating to the Status of Refugees in order to strengthen protection and local integration of refugees", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Continue to reinforce measures to ensure that detained children get the necessary treatment and assistance", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Consider adopting the United Nations Rules for the Treatment of Women Prisoners and Non-Custodial Measures for Women Offenders, known as the Bangkok Rules, to respond to specific needs of female inmates ", - "values": [ - "3 - Considering action" - ] - }, - { - "text": "Implement the recommendations of the International Conference on Population and Development [ICPD] Programme of Action, to close the gap between Indigenous and non-Indigenous Australians in health, education, housing and employment", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Pursue the adoption of legislative and administrative measures to promote the social integration of children in conflict with the law, in particular the implementation of a crime policy that takes account of the best interests of the child, effective use of alternative measures to pretrial detention and the strengthening of a special juvenile jurisdiction", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Continue its efforts to ensure the full implementation of the Persons with Disabilities Act 2010", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Accelerate the establishment of an independent national mechanism to visit prisons", - "values": [ - "4 - General action" - ] - }, - { - "text": "Continue the strengthening of the comprehensive regulatory framework that prohibits discrimination, including that based on gender, and promote coordination between the competent bodies and facilitate the reporting of such crimes by persons in situations of vulnerability", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Continue in its dialogue within the Constitutional Reform process with a view to adequately defining "discrimination" and guaranteeing the equal rights of all women within Bahamian society", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Continue its efforts towards the operationalization of the National Human Rights Commission", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Fully align its national legislation with the Rome Statute, by incorporating provisions to cooperate promptly and fully with the International Criminal Court and ratify the Kampala amendments to the Rome Statute ", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Pursue efforts to provide educational opportunities for girls and boys with disabilities and strengthen adult literacy programmes, especially for women in rural areas", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Take effective measures to allow independent non-governmental organizations to register and work freely.", - "values": [ - "4 - General action" - ] - }, - { - "text": "Continue efforts aimed at ensuring education for all children and make arrangements to improve the performance of the education system", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Undertake measures to ensure the right to education to Senegalese children who cannot follow the regular curriculum ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Initiate adequate reforms in the health sector ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Continue efforts aiming at establishing the independent national human rights institution", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Address the situation in its prisons and detention facilities particularly in relation to their exposure to frequent strikes of the prison guard personnel ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Address problems in applying the Violence against Women Act within the courts, towards effectively criminalizing violence against women ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Give continuity to the democratization process undertaken by the Government", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Consider establishing a national human rights institution in accordance with the Paris Principles, which should strengthen the human rights infrastructure in Kazakhstan", - "values": [ - "3 - Considering action" - ] - }, - { - "text": "Ensure the independence of the judiciary in order to safeguard the rule of law by taking immediate steps to ensure that the Constitutional Tribunal is able to deliver effective constitutional reviews", - "values": [ - "4 - General action" - ] - }, - { - "text": "Expedite action on the review of the Minerals and Mining Act to ensure sound management of the extractive sector to include control of illegal mining activities and integrate community rights", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Eradicate racism, xenophobia and all forms of discrimination against foreigners", - "values": [ - "4 - General action" - ] - }, - { - "text": "Take concrete measures to ensure the implementation of the action plan for the human rights roadmap and to ensure all its citizens have access to an independent and competent legal aid system", - "values": [ - "4 - General action" - ] - }, - { - "text": "Adopt human rights capacity-building and training programmes for law enforcement officials", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Improve law enforcement and judicial responses to human trafficking and gender-based violence, increase resources for victims services, and implement programmes to combat human trafficking in the mining sector", - "values": [ - "4 - General action" - ] - }, - { - "text": "Namibia remains committed to enhancing efforts towards the promotion and protection of human rights in order to improve the quality of life for the Namibian people.", - "values": [ - "4 - General action" - ] - }, - { - "text": "Conduct a thorough, transparent investigation into reports of missing persons related to the extensive 2014 security operation, holding accountable the individuals responsible", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Continue its efforts in sharing best practices in the promotion and protection of human rights through regional and multilateral frameworks ", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Continue to promote awareness of diversity and multiculturalism at all levels of education.", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Continue to consolidate the impressive gains that the country has thus far made in the promotion of Human Rights including in the sphere of health and social services", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Ensure that the rights of human rights defenders are respected, in line with the recommendations accepted by Cambodia during the first UPR cycle ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Take necessary measures in order to ratify core international human rights instruments, such as the Rome Statue of the International Criminal Court and the Optional Protocol to the Convention on the Elimination of All Forms of Discrimination against Women ", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Strengthen the status and role of the national human rights institution", - "values": [ - "4 - General action" - ] - }, - { - "text": "Standardise the criminalization of trafficking in persons at federal and state levels", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Recommended revising the recently proposed amendment to the Press and Publication Law to reflect article 19 of the International Covenant on Civil and Political Rights.", - "values": [ - "3 - Considering action" - ] - }, - { - "text": "Create a system of easy access for the registration of newborns", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Strengthen efforts to bring domestic human rights legislation into line with international human rights law", - "values": [ - "4 - General action" - ] - }, - { - "text": "Continue to strengthen educational policies in order to ensure the necessary conditions for full access to education", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Abolish capital punishment ", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Form a national human rights institution in compliance with the Paris Principles", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Continue its full cooperation with the Human Rights Council and its mechanisms", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Guarantee the full enjoyment by all minorities of all their social, cultural and political rights, especially their right to education", - "values": [ - "4 - General action" - ] - }, - { - "text": "Continue its positive work to combat racial discrimination and related intolerance ", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Develop a comprehensive policy in order to remove obstacles to the effective implementation of existing laws protecting women and children", - "values": [ - "4 - General action" - ] - }, - { - "text": "Strengthen actions and policies in order to combat effectively discrimination and violence suffered by persons on account of their sexual orientation or gender identity", - "values": [ - "4 - General action" - ] - }, - { - "text": "Perpetuate the measures carried out to establish a National Child Rights Committee", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Undertake reforms of the judicial system to ensure that the procedures are in conformity with international standards for an equitable judgment (article 14 of the International Covenant on Civil and Political Rights)", - "values": [ - "4 - General action" - ] - }, - { - "text": "Harmonize its national institution in order to bring it fully into line with the Paris Principles ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Implement the recommendations issued by the Venice Commission and the European Commission with regard to the rule of law", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Amend existing legislation in order to prohibit all forms of corporal punishment of children in all settings, promoting positive and non-violent forms of discipline", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Continue its efforts to implement programmes for the integration of women in development, and the provision of maternal and child health care", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Amend or revoke laws and decrees that limit the right to freedom of thought, conscience and religion", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Consider introducing at the federal level a moratorium on the use of the death penalty with a view to its permanent abolition", - "values": [ - "3 - Considering action" - ] - }, - { - "text": "Take all necessary measures for the exhaustive and efficient implementation of the anti-discrimination law", - "values": [ - "4 - General action" - ] - }, - { - "text": "Conclude all necessary decisions at the appropriate levels for setting up an independent and effective appointment system for the judiciary.", - "values": [ - "4 - General action" - ] - }, - { - "text": "Establish and implement policies and initiatives to address discrimination on the grounds of sexual orientation or gender identity", - "values": [ - "4 - General action" - ] - }, - { - "text": "Ratify or accede to, as appropriate, the Optional Protocol to ICESCR, CED, ICRMW, and the Optional Protocol to CRPD", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Recommended implementing the commitments and obligations of the ICESCR.", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Issue a national action plan for countering discrimination as well as hate crimes, including indicators for success", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Take clear measures to combat Islamophobia, racism and xenophobia and hatred", - "values": [ - "4 - General action" - ] - }, - { - "text": "Renounce the execution of persons who were minors at the time of the crime, in accordance with its commitments under CRC", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Continue and deepen efforts to firmly root human rights values and principles in the Government system, including through human rights training to state officials ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Finalize the decision on abolishing the death penalty by holding a referendum", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Ensure adequate publicity and awareness of the convictions for female genital mutilation (FGM) in order to induce a deterrent effect on concerned communities", - "values": [ - "4 - General action" - ] - }, - { - "text": "Continue taking measures to ensure that the Austrian Ombudsman Board, as its National Human Rights Institution, to be fully in line with the Paris Principles", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "The delegation stated that Cambodia was committed to establishing an independent human rights institution.", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Step up their efforts and undertake credible investigations and prosecutions against members of both sides of the post-electoral conflict, including the security forces, thus contributing to the end of impunity", - "values": [ - "4 - General action" - ] - }, - { - "text": "Take the measures required to raise awareness among the population of the rights of persons with disabilities and to guarantee the effective exercise of their rights", - "values": [ - "4 - General action" - ] - }, - { - "text": "Take concrete and practical normative and institutional measures to guarantee the rights of Afro-Panamanians ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Give special emphasis to employment, access to health care and the right to housing in the application of the national strategy on the inclusion of Travellers and Roma", - "values": [ - "4 - General action" - ] - }, - { - "text": "Fully cooperate with the Office of the High Commissioner for Human Rights and with the Special Procedures", - "values": [ - "4 - General action" - ] - }, - { - "text": "Join CRPD in order to protect persons with disabilities in Angola", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Ensure the independent and objective investigation of all cases of police arbitrariness, including murders, torture, arbitrary, detention, use of military equipment and seizure of property", - "values": [ - "4 - General action" - ] - }, - { - "text": "Further promote the proper use of technologies, with particular attention to the Internet, based on human values, respect for self and others and children's rights ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Consider strengthening its National Action Plan against Racism", - "values": [ - "3 - Considering action" - ] - }, - { - "text": "In accordance with the observations of the International Labour Organization, raise to 16 the minimum age for employment, with a view to harmonizing it with the age of completion of compulsory school education, and thus combat both the phenomenon of children dropping out of school as well as child labour", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Further develop public health policy, with a focus on guaranteeing access to health for children and women", - "values": [ - "4 - General action" - ] - }, - { - "text": "Combat impunity for crimes committed against sexual minorities, ensure that their right to assembly and association is upheld and ensure the right to equal treatment in accessing health services and justice", - "values": [ - "4 - General action" - ] - }, - { - "text": "Continue its efforts in combating trafficking as well as in the rehabilitation of victims of trafficking ", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Review the 2011 Religion Law with a view to ensuring conformity with the Constitution and international human rights standards", - "values": [ - "3 - Considering action" - ] - }, - { - "text": "Continue activities to combat traditional practices which are harmful to health", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Continue current efforts to provide every child with good quality basic education", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Ensure a favourable climate for the activities of human rights defenders, journalists and other civil society actors ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Ratify all the International Conventions it has signed, as well as the ICPPED and the Optional Protocol to CEDAW", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Consider adhering to the Rome Statute ", - "values": [ - "3 - Considering action" - ] - }, - { - "text": "Adopt measures for providing protection to women and girls with albinism, including by effectively investigating all instances of violence against them, and by prosecuting and punishing the perpetrators appropriately", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Continue to work towards modernizing legislation in line with the new Tunisian Constitution and complete the implementation of recommendations from the first session of the universal periodic review", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Continue efforts to promote and protect the rights of women and children", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Consider establishing an independent national human rights institution accredited by ICC and in conformity with the Paris Principles ", - "values": [ - "3 - Considering action" - ] - }, - { - "text": "Ratify the Convention on the Rights of Persons with Disabilities already signed in 2007 ", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Continue its commendable efforts with a view to improving access to education for its citizens", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Promote the right to development through, inter alia, enhancing national efforts aimed at combating corruption", - "values": [ - "4 - General action" - ] - }, - { - "text": "Take further steps to eliminate torture and other forms of ill treatment, and ensure an effective and impartial judicial system", - "values": [ - "4 - General action" - ] - }, - { - "text": "Consider extending additional support to linguistic and ethnic groups other than those officially recognised as ethnic minorities, with the aim to further promote diverse cultural identities and practice of multiculturalism", - "values": [ - "3 - Considering action" - ] - }, - { - "text": "Re-consider the approach on the nature of prohibition of torture and to review the non-refoulement principles in its domestic legislation", - "values": [ - "3 - Considering action" - ] - }, - { - "text": "Conduct investigation of reports related to crimes and violence by the police and the Carabineros against communities of indigenous peoples ", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Take concrete measures aiming at improving the access of women and children to justice ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Sign and ratify the ICPPED and recognize the competence of its Committee", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Ratify the International Covenant on Civil and Political Rights and its first Optional Protocol allowing individual complaints", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Ratify the Rome Statute of the International Criminal Court and accede to the Agreement on the Privileges and Immunities of the International Criminal Court", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Ensure public and transparent proceedings in cases concerning violations of the lèse-majesté legislation and the 2007 Computer Crimes Act ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Ensure that the revocation of the resident permits of married women who are victims of domestic violence is subject to a review and done only after a full evaluation of the impact on those women and their children.", - "values": [ - "4 - General action" - ] - }, - { - "text": "Investigate all cases of disappearances and homicides under civil courts and punish those responsible, and to this effect, strengthen the human rights unit of the Fiscalia General de la Nacion.", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Redouble its efforts to enforce its legal provisions prohibiting harmful and discriminatory practices that violate the rights of women and girls", - "values": [ - "4 - General action" - ] - }, - { - "text": "Strengthen the human rights framework to ensure religious freedoms", - "values": [ - "4 - General action" - ] - }, - { - "text": "Takes steps to ensure proper judicial oversight regarding the granting and revoking of media licenses", - "values": [ - "4 - General action" - ] - }, - { - "text": "Respect international law and prevailing mechanisms of the United Nations", - "values": [ - "4 - General action" - ] - }, - { - "text": "Continue its efforts to protect and promote the rights of children to life and to a sufficient standard of living and education - and seek the assistance of relevant United Nations agencies and programmes for the establishment of reception and training centres for delinquent street children of school age", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Continue efforts to implement recommendations 151 and 152 from the previous universal periodic review on the gender pay gap and women\u2019s participation in decision-making processes", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Continue to develop inclusive education and strengthen life-long education ", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Continue efforts to ensure equal access to education for women and girls, and advocate for broader participation of women in the labour force", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Plan and take concrete measures in the mid-term period with the objective of reducing pre-trial time for remand prisoners and reduce the overall number of prisoners awaiting trial rather than serving sentences", - "values": [ - "4 - General action" - ] - }, - { - "text": "Accept as many requests as possible, of special procedures of the Human Rights Council to visit Malaysia", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Develop a legal framework to explicitly address contemporary methods of trafficking", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Consider drawing up legislation to raise the legal age of marriage to 18 years", - "values": [ - "3 - Considering action" - ] - }, - { - "text": "Establish a fully independent oversight body to receive and investigate complaints of police misconduct and reports of human rights violations. Such a body would ensure that all complaints of excessive use of force by the security forces are subject to immediate, thorough and independent investigation and, if state agents are charged with misconduct, that their cases are brought to trial in an expeditious manner and in line with international standards", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Put in place measures to guarantee the exclusion by the judiciary of evidence obtained under torture", - "values": [ - "4 - General action" - ] - }, - { - "text": "Abolish corporal punishment, and cruel, inhuman, and degrading treatment in general, and public floggings, eye-gouging, flogging of school children, and amputation of limbs in particular", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Repeal or amend the Suppression of Terrorism Act of 2008 with a view to bringing it in line with international human rights obligations", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Withdraw its reservations on the Convention on the Elimination of all Forms of Discrimination against Women and incorporate all the provisions of that Convention into national law", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Continue its efforts to increase the participation of women in political life and in decision-making positions", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "That the State and devolved governments collaborate in the approval of an integration strategy for Gypsies, Travellers and Roma people in all the United Kingdom", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Ensure media freedom, including Internet freedom, by eliminating all restrictions to the activities of independent media and human rights organizations ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Ratify the Convention against Torture without delay", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "End discrimination in law and in practice against religious and ethnic minorities, including the Baha'i community", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Complete the legislative framework through the enactment of laws provided for in Constitution to strengthen the legal protection of fundamental rights and freedoms ", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Continue implementing its Programme to Eradicate the Legacy of Slavery ", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Implement and apply legislative as well as other measures that aim at the eradication of harmful tradition practices such as female genital mutilation ", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Continue to work as a matter of urgency to ensure that there are mechanisms to completely eliminate torture and extrajudicial killings, and to intensify its efforts to carry out investigations and prosecutions on extrajudicial killings and punish those responsible", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Adjust the mandate and responsibilities of the National Commission for Human Rights in accordance with the Paris Principles and provide it with sufficient financial resources to carry out its activities effectively", - "values": [ - "4 - General action" - ] - }, - { - "text": "Consider launching a holistic national plan to prevent and deal with economic recession impact and ensure job creation, public services and social welfare in favour of the people of Barbados without any discrimination", - "values": [ - "3 - Considering action" - ] - }, - { - "text": "Continue implementing the measures provided in the Strategic Plan on Equality of Opportunity 2014-2016", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Make additional efforts to ensure that domestic law is in compliance with the provisions of the Convention on the Elimination of All Forms of Discrimination against Women, particularly with regard to equality in marriage and divorce", - "values": [ - "4 - General action" - ] - }, - { - "text": "Transparently prosecute the individuals who committed crimes against all minorities under the communist regime, especially on the protracted legal case of Belene concentration camp", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Ratify and begin implementing as soon as possible the Council of Europe Convention on Preventing and Combating Violence against Women and Domestic Violence", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Extend a standing invitation to all mandate holders ", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Consider signing the Optional Protocol to the International Covenant on Economic, Social and Cultural Rights. at the opening for signature ceremony in New York in 2009.", - "values": [ - "3 - Considering action" - ] - }, - { - "text": "Strengthen the independence and effectiveness of the national human rights institution in accordance with the Paris Principles", - "values": [ - "4 - General action" - ] - }, - { - "text": "Continue to adopt legal and political measures, along with widespread awareness-raising and sensitization campaigns aimed at continuing to make progress towards gender equality, in particular in the areas of the family, labour, politics and education", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Ratify and fully align its national legislation with all the obligations under the Rome Statute of the International Criminal Court", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Abolish the death penalty since in the facts, no execution has taken place over the last twenty years ", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Continue its economic and social policies in the framework of Vision 2030 by paying greater attention to programmes for the fight against poverty and the reduction of social inequalities ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Accelerate the implementation of the laws on the freedom of expression, assembly and association and to ensure alignment with international standards, including under possible emergency measures", - "values": [ - "4 - General action" - ] - }, - { - "text": "Accelerate the steps towards ratification of the Council of Europe Convention on Preventing and Combating Violence against Women and Domestic Violence (the Istanbul Convention)", - "values": [ - "4 - General action" - ] - }, - { - "text": "Continue the national dialogue to find a peaceful political solution to the crisis", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Fully and immediately implement all Council resolutions in relation to the situation of human rights in the occupied territories.", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Fully implement the Justice Sector Reform Strategy to increase judicial independence and effectiveness", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Continue to reduce the offences punishable by the death penalty", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Complete the internal legal procedure in order to ratify ICCPR-OP 2", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Pursue a robust policy aimed at promoting and protecting the rights of indigenous people", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Speed up the review of all legislative codes, so as to bring them into conformity with ratified international instruments, particularly taking the necessary actions to include in national legislation discrimination and violence against women and eliminate existing discrimination regarding the right to property, community property and land inheritance", - "values": [ - "4 - General action" - ] - }, - { - "text": "Accede to the remaining core international human rights instruments such as ICCPR, CAT and CEDAW ", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Continue its efforts so that all forms of sexual violence against women and children are prosecuted and sanctioned and that victims obtain immediate reparation and protection ", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Step up its efforts to combat impunity and to ensure access to justice ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Enact and fully implement the necessary laws to ensure protection against interference in the establishment, functioning, and administration of worker organizations, consistent with the recommendations of ILO", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Continue ongoing efforts to ensure the return of refugees and Croatian displaced persons of Serb origin, to their home and the recovery of all of their rights, particularly with regard to their property, pension and social rights", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Continue taking necessary measures to fully eradicate child labour, without exception, in conformity with ILO Convention No. 138, ratified by the Plurinational State of Bolivia", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Continue spreading best practices in the field of enhancement of the already existing solid institutional framework", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Guarantee the effective exercise of the human right to assembly, in particular with respect to crowd control, formulate clear instructions compatible with human rights standards for the use of firearms, provide training for the police on conduct compatible with human rights, prohibit the use of violence by unofficial or plain clothes security forces and ensure all persons detained have timely access to their families and to legal counsel ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Continue efforts in the promotion and protection of human rights within the framework of the National Human Rights Action Plan established since 2013", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Continue to strengthen its efforts regarded as fundamental in assessing the impact of its economic activities on the environment", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Continue its policies and efforts to enhance the solidarity and equality among its diverse population ", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Adopt or ratify the International Convention on the Protection of the Rights of All Migrant Workers and Members of Their Families", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Continue to promote gender equality and the involvement of women in public services", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Ratify the Second Optional Protocol to the International Covenant on Civil and Political Rights, aiming at the abolition of the death penalty, and the Convention against Torture, as well as its Optional Protocol", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Accelerate, as appropriate, the pursuit of the worthy objectives set out in the National Development Plan 2008-2011 ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Adopt a new set of criteria for defining disability in accordance with international standards ", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Adopt comprehensive policies to combat sexual harassment, especially against children and adolescents, including those in street situations or living in placement institutions", - "values": [ - "4 - General action" - ] - }, - { - "text": "Prohibit racial discrimination and racist hate speech, as well as broaden the protection afforded by law", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Undertake an independent evaluation of its policy of administrative detention with a view to ending this practice, guaranteeing that all those detained without exception are brought before a judge and have immediate access to a lawyer", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Undertake a comprehensive set of measures, in practice and law, including developing a national plan of action against racism, to combat racial discrimination against foreigners and religious minorities, in particular Muslims ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Ratify the Second Optional Protocol to the International Covenant on Civil and Political Rights, and consequently amend its national legislation, in particular the Criminal Code ", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Improve conditions in detention facilities by training personnel to investigate and prosecute all alleged cases of torture, and ratify OPCAT ", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Ratify the ICED", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Open a formal, independent and objective inquiry into the election-related violence and the allegations of serious violations of human rights", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Strengthen measures to effectively prevent the violence against journalists and human rights defenders and impunity", - "values": [ - "4 - General action" - ] - }, - { - "text": "Increase the work on promotion of women's participation in the labour market", - "values": [ - "4 - General action" - ] - }, - { - "text": "Fully implement international human rights obligations towards minorities related to the use of their mother tongue and culture", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Accelerate the Daara modernization program in order to contribute to the eradication of the worst forms of child labour and ensure the enforcement of relevant national laws criminalising the organisation of begging activities", - "values": [ - "4 - General action" - ] - }, - { - "text": "Continue to combat violence against women and promote their empowerment", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Launch the process to design and implement the National Action Plan on business and human rights in accordance with the United Nations Guiding Principles on Business and Human Rights", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Promote the process of revising her current laws with a view to ensuring their conformity with the new Constitution and to better protecting and promoting human rights", - "values": [ - "4 - General action" - ] - }, - { - "text": "Strengthen efforts to protect its most vulnerable populations, in accordance with obligations under the Convention on the Elimination of All Forms of Discrimination against Women and under the Convention on the Rights of the Child, and adopt specific legislation and programmes targeting gender-based violence, including marital rape", - "values": [ - "4 - General action" - ] - }, - { - "text": "Belize remained committed to fulfilling its international human rights treaty obligations and to ensuring that the human rights and fundamental freedoms enshrined in its Constitution are guaranteed to every citizen. The Government would continue to work to strengthen its specialized human rights institutions, including the National Women's Commission, the National Committee for Families and Children, the National Council on Aging, and the National AIDS Commission, as well as the Office of the Ombudsman and legal aid office.", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Take further steps towards the total abolition of the death penalty and, as a matter of priority, sign and ratify the Second Optional Protocol to the International Covenant on Civil and Political Rights ", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Further strengthen the national machinery for the advancement of women with financial and human capacity and political authority ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Continue efforts in expanding educational facilities to rural areas and advance the educational and vocational training facilities for men and women equally", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Address efficiently and effectively the need for provisions for the mandatory reporting of all forms of abuse and the removal of a statutory limitation for sexual offences ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Take steps to ratify and implement CRPD", - "values": [ - "4 - General action" - ] - }, - { - "text": "Increase government spending on education and in the fight against AIDS, tuberculosis and malaria", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Adopt measures which guarantee the non-occurrence of cases of torture and ill-treatment in places of detention and, among them, establish an independent national preventive mechanism against torture ", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Ratify without reservations the Agreement on Privileges and Immunities of the International Criminal Court", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Continue its successful social policy, adopting actions that increase the provision of social services and giving priority to the most disadvantaged ", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Promote a policy of equality and non-discrimination and that Namibia step up its efforts to reduce poverty with economic and social measures which ensure equal opportunity to citizens in the social, economic and political life of the country ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Implement human rights awareness and anti-discrimination education programs, particularly with respect to ending discrimination on the basis of sexual orientation", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Take appropriate measures against the sharp increase in all hate-related violent crimes especially involving young people", - "values": [ - "4 - General action" - ] - }, - { - "text": "Make efforts to establish an independent national human rights commission in accordance with the Paris Principles", - "values": [ - "4 - General action" - ] - }, - { - "text": "Strengthen national efforts towards the ratification of the Convention against Torture and Other Cruel, Inhuman or Degrading Treatment or Punishment", - "values": [ - "4 - General action" - ] - }, - { - "text": "Urgently take effective measures to reduce the duration of preventive detention", - "values": [ - "4 - General action" - ] - }, - { - "text": "Use all existing instruments and mechanisms to protect the human rights and freedoms of Ukrainian citizens living on the temporarily occupied territories of Ukraine while taking political and diplomatic steps aimed at restoring Ukraine\u2019s territorial integrity within its internationally recognized borders", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Extend the jurisdiction of civil courts in cases involving violations of human rights by the military", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Fully staff and fund the national human rights institutions outlined in its Action Plan for Human Rights in order to better collect and analyse disaggregated data in support of laws, policies and safeguards related to women and girls", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Improve the quality of public education, particularly for those who live below the poverty line, particularly Afro-Brazilians, with focus on psychological health and integrating psychosocial elements in order to achieve a better learning environment", - "values": [ - "4 - General action" - ] - }, - { - "text": "Seek support of the international community in Nepal's efforts to firmly institutionalize peace building efforts", - "values": [ - "1 - Minimal action" - ] - }, - { - "text": "Undertake the corresponding measures to improve the birth registry system as recommended by the Committee on the Rights of the Child ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Endeavour to investigate all cases of gender violence, punish the perpetrators and compensate the victims", - "values": [ - "4 - General action" - ] - }, - { - "text": "Ratify-accede-adhere the International Convention on the Protection of the Rights of All Migrant Workers and Members of their Families. ", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Continue with the actions of the Inter-ministerial Committee on Human Rights, which provides follow-up to human rights recommendations", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Strengthen the right to freedom of expression in its new Press Law, as well as allowing foreign media to enter the country and report freely ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Consider lifting geographic limitations to the 1951 Refugee Convention ", - "values": [ - "3 - Considering action" - ] - }, - { - "text": "Expedite the ratification of the Optional Protocol to the Convention against Torture and establish a National Preventive Mechanism for places of detention", - "values": [ - "4 - General action" - ] - }, - { - "text": "Launch a judiciary system reform that will ensure accountability for all human rights violations by opening judicial investigations, prosecuting responsible persons as well as awarding reparations to victims, and in particular investigate and judge past crimes and bring the perpetrators of gross human rights violations to justice by, inter alia, activating transnational justice mechanisms ", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Sri Lanka will continue its efforts to strengthen its national mechanisms and procedures to promote and protect the human rights and fundamental freedoms of all its citizens through the adoption and implementation of the proposed National Plan of Action which will set targets to be achieved during the five years commencing 2009, facilitate a holistic approach to human rights protection and promotion and lead to greater cooperation between Government and civil society", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Continue the expansion of broad band connectivity to Internet and confront the limitations imposed by the blockade ", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Pursue the process of reconciliation ", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Put an end to the widespread use of torture and other cruel, inhuman or degrading treatment as well as to arbitrary and extrajudicial executions ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Adopt further measures to ensure the full enjoyment of rights of persons with disabilities, particularly in education and access to services ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Accede to the International Convention on the Protection of the Rights of All Migrant Workers and Members of their Families (ICRMW). ", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Fight against the phenomenon of child sorcerers to spare innocent childhood from this terrible calamity of another age", - "values": [ - "4 - General action" - ] - }, - { - "text": "Ensure adequate protection of LGBT people, not only through police forces on the streets, but legally via anti-discrimination law", - "values": [ - "4 - General action" - ] - }, - { - "text": "Take further action in order to encourage equal opportunities for both men and women, for instance through more equal salary levels and enhanced childcare services in order to improve reconciliation of work and family life. The National Action Plan on Gender Equality in the Employment Market ought to be fully implemented without delay", - "values": [ - "4 - General action" - ] - }, - { - "text": "Continue addressing the challenges in poverty reduction ", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Review and repeal the legislation that criminalizes consensual sexual behaviour between people of the same sex, and prohibit degrading practices imposed on people of the lesbian, gay, bisexual, transgender and intersex community, such as forced anal examinations", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Continue to examine all potential risks of human rights violations which rejected asylum seekers may face when they are deported to other countries, especially in cases where asylum seekers\u2019 children are concerned", - "values": [ - "4 - General action" - ] - }, - { - "text": "Investigate and prosecute all persons responsible for harmful practices against children, following the adoption of the new Children\u2019s Code", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Repeal the legislation which requires the transfer of pregnant girls to night-time schools and take action to ensure that pregnant students do not face restrictions in their access to education", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Adopt a national plan against sexual and domestic violence that takes into account the specific needs and vulnerabilities of migrant women and women with disabilities", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Incorporate lessons learned from the Ebola crisis in future policies and actions for human rights promotion and protection, including in the Constitutional Review Process", - "values": [ - "4 - General action" - ] - }, - { - "text": "Adopt legislation that explicitly recognizes homophobic and transphobic motivation for a criminal offence as an aggravating circumstance in its criminal law", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Continue its efforts in the promotion and protection of women's and children's rights", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Fully implement the plan of action to combat the recruitment and use of child soldiers", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Adopt urgently legislation for complementarity with the Rome Statute and provide means for implementation", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Ratify all three optional protocols to the Convention on the Rights of the Child", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Continue efforts to bring its legislation into line with the norms and principles of the overall protection system of children and adolescents.", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Continue efforts on the legislative front to combat incitement to hatred, violence and racial discrimination on the grounds of nationality, ethnicity, language, colour, religion or any other grounds, and address different existing challenges and concerns in this regard", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Continue efforts to combat human trafficking", - "values": [ - "4 - General action" - ] - }, - { - "text": "Accomplish progressively human rights voluntary goals, as set up by Human Rights Council resolution 9-12, including the ratification of the Optional Protocol to CEDAW ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Ratify the Kampala amendments to the Rome Statute", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Continue, in assistance with development partners and civil society, its fight against HIV and AIDS through advocacy, joint planning, monitoring and evaluation, for the eventual elimination of the disease", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Continue its efforts in strengthening its judicial system and the rule of law to enhance the protection of human rights of its people ", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Continue the implementation of the appropriate legal and policy frameworks for the effective combating of trafficking in persons", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "That the Human Rights Monitoring Committee tasked with monitoring the implementation of the National Human Rights Action Plan 2012-2020, be given the necessary resources to ensure its effective functioning", - "values": [ - "4 - General action" - ] - }, - { - "text": "Strengthen the SAFENET referral system for women who are victims of violence, establish shelters for women in all provinces of the Solomon Islands, and ensure that they are accessible without discrimination, including to women with disabilities", - "values": [ - "4 - General action" - ] - }, - { - "text": "Extend an open invitation to the Special Rapporteurs and to facilitate a visit by the Special Rapporteur on the question of torture", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Vigorously investigate and prosecute trafficking offenders, under the recently passed Trafficking in Persons Act", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Establish an effective mechanism for coordinating the implementation of child rights policy among relevant institutions at all levels and bring the juvenile justice system in line with the Convention on the Rights of the Child and other relevant standards ", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Establish immediately a moratorium on the death penalty as the first step toward its abolition", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Ratify the Convention against Torture and Other Cruel, Inhuman or Degrading Treatment or Punishment and its Optional Protocol ", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Ratify the Kampala amendments to the Rome Statute of the ICC", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Speed up the ratification process of the Optional Protocol to the International Covenant on Economic, Social and Cultural Rights, which establishes a communication procedure", - "values": [ - "4 - General action" - ] - }, - { - "text": "Accept the visit of the Special Rapporteur on Freedom of assembly and association", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Establish a moratorium to the death penalty with a view to its abolition ", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Continue to reform the prison system and look further into ways of reforming the Penal Code to ensure adequate prison conditions and treatment of prisoners according to international standards.", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Develop a national strategy on slavery, and effectively implement all the laws relating to the abolition of slavery ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Improve the administration of justice, including the establishment of a system of inspection of detention centres and a system to follow-up complaints of allegations of torture", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Better disseminate and ensure full observance of the Declaration on Human Rights Defenders", - "values": [ - "4 - General action" - ] - }, - { - "text": "Continue awareness-raising of the population, in particular women, on human rights and new national institutions, as well as put in place sensitization regarding stereotypes associated to human rights ", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Continue its education policy, giving special emphasis to the education of young girls ", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Strengthen its cooperation with civil society organizations for the promotion and protection of human rights in the area of health services", - "values": [ - "4 - General action" - ] - }, - { - "text": "Fulfil, with the help of the international community, its international human rights obligations.", - "values": [ - "4 - General action" - ] - }, - { - "text": "Offer programmes for education and training in human rights for law enforcement officials, the army, the police and prison services in order to prevent human rights violations, especially torture and mistreatment", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "In view of the shortcomings described in the national report, request international technical assistance ", - "values": [ - "1 - Minimal action" - ] - }, - { - "text": "Consider ratifying the International Covenant on Civil and Political Rights and the Optional Protocols thereto ", - "values": [ - "3 - Considering action" - ] - }, - { - "text": "Amend its legislation in order to ensure that children are not discriminated against on the grounds of nationality", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Pay attention to maternal and child health, and reduce child mortality ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Continue to pursue successful education programmes for all with an emphasis on the most vulnerable segments of its population", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Continue advancing in the development and implementation of the "Stork Network" and the national system for registration, monitoring and accompanying for pregnant women in order to prevent maternal mortality, in the context of the policy for integral assistance to woman's health ", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Consider favourably the request of the Special Rapporteur on the right to education and to allow the SR to visit the country.", - "values": [ - "3 - Considering action" - ] - }, - { - "text": "Address urgently the issue of impunity by strengthening the rule of law, including through a review of the judicial system", - "values": [ - "4 - General action" - ] - }, - { - "text": "Develop an institutional programme in partnership with the Eritrean diaspora and local communities to develop programmes for production, infrastructure and social development, and eliminate the fee for residing outside of Eritrea ", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Ensure that the right to family life, marriage and choice of spouse is guaranteed to every person without discrimination based on national or ethnic origin ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Continue to improve the protection and assistance to victims, as well as to raise public awareness on the risks of trafficking.", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Take concrete steps to improve access to legal representation and justice for vulnerable groups, through affordable legal aid schemes", - "values": [ - "4 - General action" - ] - }, - { - "text": "Continue to take measures in positive aspects of the State's approach to the environment", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Redouble its efforts to promote and protect women's rights, including dealing with the widespread violence against women", - "values": [ - "4 - General action" - ] - }, - { - "text": "Take the necessary measures to ensure that human rights defenders and civil society actors can carry out their legitimate work in a safe environment without threats and harassment by State and non-State actors", - "values": [ - "4 - General action" - ] - }, - { - "text": "Establish a high-level platform for the monitoring and promotion of women's rights and gender equality, and to ensure that a gender perspective is mainstreamed in policy- and decision-making", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Enhance measures to address stereotyping against and lack of employment opportunities for persons with disabilities", - "values": [ - "4 - General action" - ] - }, - { - "text": "Implement measures to facilitate the handling and investigation of complaints in an understandable fashion for children, ensure the adequate prosecution of perpetrators of child abuse and neglect, and provide services for physical and psychological recovery as well as the social reintegration of victims of sexual abuse", - "values": [ - "4 - General action" - ] - }, - { - "text": "Develop a comprehensive national strategy with a view to prevent and address all forms of violence against children", - "values": [ - "4 - General action" - ] - }, - { - "text": "Develop its legislation in order to meet the basic development needs of the country in its transitional period.", - "values": [ - "4 - General action" - ] - }, - { - "text": "Further develop national information and public education strategy that encourages the culture of disaster risk perception ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Continue strengthening the national human rights institution in line with the Paris Principles ", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Seek the provision of the requested technical capacity-building assistance to overcome identified challenges", - "values": [ - "1 - Minimal action" - ] - }, - { - "text": "Establish a moratorium on executions with a view to abolishing the death penalty in accordance with relevant General Assembly resolutions", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Take effective measures to eliminate the disparity in health-care provision between rural and urban areas and to improve the quality of health services across the country, including through the adoption of effective legislation and amendments on the national health", - "values": [ - "4 - General action" - ] - }, - { - "text": "Sign and ratify the CERD, the ICESCR and the Optional Protocol thereto, the ICCPR and the First Optional Protocol thereto, the Optional Protocol to the CEDAW, the CAT and the Optional Protocol thereto, the two Optional Protocols to the CRC, the Convention on the Rights of Persons with Disabilities and the Optional Protocol thereto, and the International Convention for the Protection of All Persons from Enforced Disappearance ", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Implement training programmes for information technology to help combat electronic crimes", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Revise the single parent family support law and introduce legislation to ensure that all children are automatically and legally registered immediately after birth, regardless of parents' legal status and origin", - "values": [ - "3 - Considering action" - ] - }, - { - "text": "Ratify the Optional Protocol to the Convention against Torture, to open up for international inspection its places of detention", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Continue to strengthen its domestic legal framework and implement its international human rights obligations ", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Make up the delay in the submission of overdue reports to treaty bodies", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Seek to effectively combat child labour by means of, inter alia, enforcing compulsory education, as stipulated in national policies", - "values": [ - "4 - General action" - ] - }, - { - "text": "Ensure that the provisions and the application of the Sharia Penal Code Order remain in strict compliance with human rights law, which includes the ban of any inhuman or degrading treatment or punishment ", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Consider ratifying the Council of Europe's Convention on Preventing and Combating Violence against Women and Domestic Violence", - "values": [ - "3 - Considering action" - ] - }, - { - "text": "Intensify the positive action already taken for improving the living conditions of persons with disabilities", - "values": [ - "4 - General action" - ] - }, - { - "text": "Continue its programme for equal access to education for women and rural populations", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Continue to implement public policies to combat poverty", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Implement human rights education and training programmes aimed at combating discrimination based on ethnic origin", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Reinforce the measures to combat FGM.", - "values": [ - "4 - General action" - ] - }, - { - "text": "Continue efforts to execute the national media strategy in cooperation with all relevant partners", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Fully respect article 1 of the ICESCR and article 1 of the ICCPR and end its policy of hostility and aggression against Nagorno-Karabakh", - "values": [ - "4 - General action" - ] - }, - { - "text": "Step up adoption of necessary amendments to its legislation and the judicial practice in order to combat more effectively extremism, xenophobia and racism", - "values": [ - "4 - General action" - ] - }, - { - "text": "Accede to and fully align its national legislation with all the obligations under the Rome Statute of the International Criminal Court", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Fully implement the National System for Comprehensive Protection and Advancement of Children and Adolescents to help protect vulnerable children and adolescents ", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Continue to implement policies for the development of its people, including measures taken for equal opportunities for women and persons with disabilities in the economic and social development of the country", - "values": [ - "4 - General action" - ] - }, - { - "text": "Adopt a law on prohibition of racism and racial discrimination as well as a relevant/appropriate national action plan in this field ", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Redouble its efforts to enforce more effectively the specific existing legislation and fully implement, among others, the Strategic National Plan for the Reduction of Maternal and Child Mortality, the National Plan for the Prevention of teenagers' pregnancy, and the Strategic Plan for the Prevention, Detection, Attention and Punishment of Violence against Women and Domestic Violence. In particular, the Dominican Republic could provide adequate resources to the relevant Ministries to ensure an effective assistance to victims ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Include "gender reassignment" as a ground for protection in domestic anti-discrimination legislation ", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Continue efforts made by the State and to increase international cooperation, in order to be exposed to all relevant international experiences", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Ratify the core international instruments, especially ICCPR, ICESCR, CAT and OP-CAT", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Amend its laws that discriminate against women, and decriminalize consensual same-sex conduct", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Consider enabling children to move between streams at a later age, noting the Special Rapporteur's observation on the right to education and particularly the young age that children are selected for streaming into the academic and non-academic schools", - "values": [ - "3 - Considering action" - ] - }, - { - "text": "Consider creating an independent prosecution authority in accordance with the United Nations guidelines and consider to fully implementing the right to a fair trial for all ", - "values": [ - "3 - Considering action" - ] - }, - { - "text": "Make efforts to promote free and unbiased local media, including by removing restrictions on local radio broadcasts", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Intensify efforts to ensure that the National Commission for Human Rights is consistent with the principles relating to the status of national institutions for the promotion and protection of human rights (the Paris Principles)", - "values": [ - "4 - General action" - ] - }, - { - "text": "Design and implement public policies and programmes to address violence against women, in particular measures against the practice of FGM and actions of protection and reparation for women victims", - "values": [ - "4 - General action" - ] - }, - { - "text": "Implement awareness-raising campaigns and education programs, working closely with traditional authorities, to promote and protect the rights of women and girls", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Ensure that Bahamian women are able to pass their nationality to their children on equal footing with men, including by withdrawing the reservation to Article 9 (2) of CEDAW ", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Continue its efforts to improve the enjoyment of human rights and to raise the living standards of its people", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Establish a national consultative body to provide a platform for all national stakeholders to be consulted on and involved in the implementation of the democratic reform process ", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Put in place temporary special measures to encourage acceleration of the achievement of substantive equality between women and men, particularly within the private employment sector ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Continue its 2003 programme aimed at combating poverty, in order to guarantee social peace and fight against exclusion, particularly in rural areas", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Continue efforts to eliminate corporal punishment especially in schools.", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Outlaw corporal punishment in the context of juvenile justice, school education and at home ", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Accelerate and strengthen migrant integration into Lithuanian society, including by developing awareness campaigns and educational programs as well as preventing and investigating manifestations of hatred", - "values": [ - "4 - General action" - ] - }, - { - "text": "Expedite the current preparations in order to specify the ratification of the Optional Protocol to the International Covenant on Civil and Political Rights", - "values": [ - "4 - General action" - ] - }, - { - "text": "Agree to the visit of the Special Rapporteur on the promotion and protection of the right to freedom of opinion and expression", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Identify the needs in terms of assistance and capacity-building in areas deemed priority ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Generate adequate infrastructure so that all citizens have access to safe drinking water for human consumption ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Adapt the detention conditions of immigrants in line with international human rights law ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Continue to carry out comprehensive reviews and studies of the relevant laws in order to ensure the fulfilment of the right to freedom of opinion and expression and the right to peaceful assembly, in accordance with the relevant international human rights instruments to which Thailand is a party", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Incorporate human rights education in school curricula ", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Continue its efforts to ensure free medical services of high quality for its population ", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Strengthen cooperation with human rights mechanisms to overcome challenges presented frankly in the national report.", - "values": [ - "4 - General action" - ] - }, - { - "text": "Abolish and amend all laws that encourage and forced, early and temporary marriages of girls as young as 9, and that allow marriage between adoptive parents and their children", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Continue considering the ratification of the main human rights instruments to which it is not yet a party", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Establish a legal framework on the right to food, building on the draft food and nutrition bill and integrating a gender perspective through a consultative process with relevant stakeholders", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Continue to place emphasis on poverty alleviation and eradication, on women's empowerment and children's rights", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Improve the availability of and access to information about mental health programmes and services which are based on respect for human rights, including for adolescents", - "values": [ - "4 - General action" - ] - }, - { - "text": "Continue its efforts to eradicate domestic violence by putting in place mechanisms to survey the proper implementation of the protocols of action by government agencies and apply appropriate sanctions where such implementation is not in line with the prescribed rules ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Take effective steps to establish a national human rights institution in line with the Paris Principles", - "values": [ - "4 - General action" - ] - }, - { - "text": "Do its utmost to submit regular reports to the treaty bodies. ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Continue to apply measures aimed at achieving higher level of quality in the administration of justice ", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Consolidate the progress made towards reaching the Sustainable Development Goals and in the improvement of human development indicators", - "values": [ - "4 - General action" - ] - }, - { - "text": "Continue to take effective measures to align its legal system with its new Constitution and with the relevant international human rights instruments", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Seriously consider ratifying the International Convention for the Protection of All Persons from Enforced Disappearance, as well as the optional protocols to the ICESCR and CRC ", - "values": [ - "3 - Considering action" - ] - }, - { - "text": "Ensure to LGBTI persons the full enjoyment and equal treatment of their human rights by repealing norms that criminalize and stigmatize them", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "[Adopt legislation against discrimination] Including discrimination based on sexual orientation and gender identity and amend provisions with a tendency to maintain discrimination related to gender", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Strengthen its efforts to combat sexual violence by adopting a legal framework to address violence against women and by incorporating the principle of equality between women and men into the Constitution", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Continue with national programmes already undertaken to reduce any form of discrimination against women until it is totally eliminated", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Introduce additional measures to reduce the practice of detaining individuals solely for immigration purposes and consider using alternatives when possible", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Continue implementing specific measures to prevent all forms of violence against women, including domestic violence, ill-treatment and sexual abuse, ensuring that there are complaints channels, facilitating access to justice and guaranteeing the prosecution and punishment of perpetrators", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Step up the ratification procedure of all the international instruments submitted to Parliament", - "values": [ - "4 - General action" - ] - }, - { - "text": "Consider legislative measures to abolish the death penalty ", - "values": [ - "3 - Considering action" - ] - }, - { - "text": "Establish structures providing assistance and systematic protection to all minors in the situation of prostitution ", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Deal with cases of violence and discrimination based on sexual orientation, both in law and in practice, by publishing disaggregated data on complaints of violence against LGBTI persons", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Continue its efforts to further strengthen the foundations of the family and its associated values among society", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Take steps to decriminalize defamation and review its media-related laws including the Printing and Publishing Act of 1967", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Continue initiatives undertaken to promote education and culture of national minorities", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Develop and implement a comprehensive strategy and judicial reforms to effectively reduce the backlog of cases", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Engage in constructive dialogue and reconciliation with the main opposition party to diffuse lingering tensions from the August 2016 general election", - "values": [ - "4 - General action" - ] - }, - { - "text": "Fully implement the 2010 National Action Plan for Inclusive Education by mainstreaming Romani students whenever possible", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Meet the stated commitment under the Maputo Declaration of allocating at least 10 per cent of the State budget to agriculture development", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Review the legislation on armed robberies, terrorism and hijacking, in accordance with the Second Optional Protocol to the ICCPR, and to commute all death sentences to life imprisonment and maintain the moratorium on the death penalty in place since 1979, with a view to completely abolishing capital punishment", - "values": [ - "3 - Considering action" - ] - }, - { - "text": "To mainstream human rights issues in all aspects of governance", - "values": [ - "4 - General action" - ] - }, - { - "text": "Adopt a formal moratorium on the death penalty with a view to fully abolishing capital punishment, both in practice and in law, for all cases and under all circumstances", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Continue to build up its engagement with its international and regional partners in order to better assist transiting refugees and migrants ", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Ensure that all perpetrators are prosecuted and victims have access to immediate redress and protection", - "values": [ - "4 - General action" - ] - }, - { - "text": "Promote the creation of an adequate environment for the full enjoyment of freedom of association, including the creation of labour unions and organizations independent from government, and initiate a review of the relevant provisions to ensure that the restrictions on freedom of association are only those provided for in the Covenant on Civil and Political Rights ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Enhance cooperation with the Human Rights Council and continue to fully engage in the international human rights mechanisms", - "values": [ - "4 - General action" - ] - }, - { - "text": "Share the experiences of the special tool for gender equality, the - equality mark -, with other countries", - "values": [ - "1 - Minimal action" - ] - }, - { - "text": "Undertake a comprehensive reform to harmonize its domestic legal system with its Constitution and the international instruments to which it is party", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Continue efforts for the protection and promotion of the rights of migrant workers", - "values": [ - "4 - General action" - ] - }, - { - "text": "Extend an invitation to the Special Rapporteur on violence against women to visit Papua New Guinea", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Further strengthen efforts to prevent and combat trafficking in persons and the sexual exploitation of children ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Continue its efforts to establish a legal framework to protect human rights by ratifying core instruments, especially the International Covenant on Economic, Social and Cultural Rights ", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Ratify the First and Second Optional Protocol to the ICCPR, the Optional Protocol to ICESCR, the Optional Protocol to the Convention on the Rights of Persons with Disabilities", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Work toward enacting legislation to incorporate the Convention on the Rights of Persons with Disabilities in its national law", - "values": [ - "4 - General action" - ] - }, - { - "text": "Reconsider the possibility of ratifying the International Convention on the Protection of the Rights of All Migrant Workers and Members of Their Families", - "values": [ - "3 - Considering action" - ] - }, - { - "text": "Take further measures to put an end to violence against women", - "values": [ - "4 - General action" - ] - }, - { - "text": "Sign and ratify, at the earliest opportunity, the Convention on the Rights of Persons with Disabilities and the Optional Protocol thereto.", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Adopt a standing invitation to human rights special procedures ", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Modify national legislation to decriminalize consensual sexual relations between persons of the same sex, as recommended and accepted during the first review", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Step up its efforts in the area of education and human rights training ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Protect the interest of migrants and minority groups, including the Asian and Pacific people, from all forms of racial stereotyping and derogatory treatment.", - "values": [ - "4 - General action" - ] - }, - { - "text": "Take steps to strengthen the enforcement of existing laws criminalizing rape and domestic violence, including by vigorously investigating and prosecuting violence against women, and providing targeted training and capacity-building to law enforcement officials", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Continue the reform of its judicial system leading to an independent judiciary, in compliance with established international standards", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Continue working to promote human rights in the country, specifically the rights of minorities ", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Consider establishing an adequate policy for a universal basic income for all its citizens ", - "values": [ - "3 - Considering action" - ] - }, - { - "text": "Step up efforts to more efficiently implement the prohibition of female genital mutilation in all areas of the country and among all groups of citizens", - "values": [ - "4 - General action" - ] - }, - { - "text": "Implement more effectively the legal framework prohibiting child labour", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Strengthen its commitment to ensuring that the fundamental rights of minorities are better respected ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Continue efforts to strengthen the right of education for all, focusing on poor populations in rural and distant areas ", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Ensure the immediate release of illegally detained persons", - "values": [ - "4 - General action" - ] - }, - { - "text": "Ratify the international human rights instruments to which it is not yet party, especially those relating to migrant workers and members of their family ", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Continue its exceptional efforts in combating poverty and developing the education system, and in addition, continue to enhance its efforts related to preserving the environment", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Adopt a national action plan to combat slavery and human trafficking ", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Take measures to ensure the freedom of children from physical punishment in accordance with the Convention on the Rights of the Child ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Continue efforts in combating human trafficking and provide the necessary assistance to victims of trafficking ", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Continue the process of accession to international human rights instruments and improvement of the national human rights legislation, especially in the context of priorities identified in the comprehensive plan of development known as Qatar National Vision 2030", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Cease without any delay deliberate and indiscriminate attacks against civilians, as well as the targeting of hospitals and schools, including through the use of barrel bombs and chemical weapons", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Following up on a 2010 recommendation, fully implement the National Plan for the Prevention and Gradual Eradication of the Worst Forms of Child Labour and the Protection of Adolescent Workers", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Strengthen the independence of the judiciary and transparency of judicial proceedings and adopt measures preventing political interference in the work of judges", - "values": [ - "4 - General action" - ] - }, - { - "text": "Consider at least further restricting the use of the death penalty only for the most serious crimes, as stated in article 6 of ICCPR with a view to soon adopting a de facto moratorium on executions ", - "values": [ - "3 - Considering action" - ] - }, - { - "text": "Strengthen the Office of the National Commissioner for Human Rights ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Ratify the Optional Protocol to the ICESCR, the International Convention for the Protection of All Persons from Enforced Disappearance and the Optional Protocol to the Convention on the Rights of the Child on a communications procedure ", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Uphold its commitment to introduce a comprehensive police reform plan and pass the new organic police law by June 2015, and share a benchmarked time-bound plan to remove the military from civilian police duties", - "values": [ - "4 - General action" - ] - }, - { - "text": "Fully involve civil society in the follow-up to this universal periodic review ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Consider promoting and strengthening vocational education and training opportunities to reduce the high number of school dropouts ", - "values": [ - "3 - Considering action" - ] - }, - { - "text": "Ensure that the Human Rights Commission is made fully compliant with the Paris Principles ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Continue the awareness-raising campaign on human rights education ", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Increase women's representation in decision-making positions", - "values": [ - "4 - General action" - ] - }, - { - "text": "Consider reviewing security laws to ensure their conformity with international human rights standards ", - "values": [ - "3 - Considering action" - ] - }, - { - "text": "Continue the progress achieved and continue expanding the realization of the right to education for all sectors of society and the dissemination of the human rights culture through educational curricula.", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Bring the criminalization of child trafficking in line with international standards.", - "values": [ - "4 - General action" - ] - }, - { - "text": "Take further steps to ensure judicial independence, which is important in guaranteeing fair trials in accordance with international human rights standards", - "values": [ - "4 - General action" - ] - }, - { - "text": "Seek to strengthen achievements in realizing the right to education, in particular with respect to free primary education and its obligation towards girls and boys ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Sign and-or ratify the Second Optional Protocol to ICCPR", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Strengthen the administration of justice according to international standards, which may contribute to reducing the growing number of cases of impunity", - "values": [ - "4 - General action" - ] - }, - { - "text": "Allow media to take their watchdog role in society.", - "values": [ - "4 - General action" - ] - }, - { - "text": "Repeal all legal provisions that contravene international norms on freedom of expression, especially all insult laws and all norms that criminalize defamation of public officials and institutions ", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Pursue and finalize the ratification process of the Optional Protocol to the Convention on the Elimination of All Forms of Discrimination against Women", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Create a managing board overseeing the allocation of funding to minority councils to prevent any possible conflict of interest", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Consider issuing an invitation to the Special Rapporteur on violence against women.", - "values": [ - "3 - Considering action" - ] - }, - { - "text": "Step up efforts to ensure complementarity and adequate resources for its human rights monitoring and protection of infrastructure", - "values": [ - "4 - General action" - ] - }, - { - "text": "Implement all possible measures to improve the country's education system", - "values": [ - "4 - General action" - ] - }, - { - "text": "Develop a strategy and national plan of action on the protection of migrants, refugees and internally displaced persons with the technical support of international and national partners ", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Repeal the Interventionist Decree against the Bolivarian Republic of Venezuela and unilateral coercive measures imposed on sovereign countries", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Full dissemination of the NHRAP and the strengthening of governmental agencies at national, provincial and local level to guarantee its full implementation", - "values": [ - "4 - General action" - ] - }, - { - "text": "Continue to improve the access to education, health care and medicine", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Continue positive efforts towards implementation of relevant legislation pertaining to, among others, the prohibition of certain cultural practices adjudged as harmful ", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Continue advancing the promotion of gender equality so that women have a greater representation in politics and that quotas are respected in regional and municipal elections", - "values": [ - "4 - General action" - ] - }, - { - "text": "Issue a standing invitation to special procedures of the United Nations human rights system ", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "In line with the recommendations of the Committee on the Rights of the Child, consider the possibility of increasing the age of criminal responsibility in line with accepted international standards", - "values": [ - "3 - Considering action" - ] - }, - { - "text": "Remove its reservations to the Convention on the Elimination of All Forms of Discrimination against Women and sign its Optional Protocol", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Build up, in cooperation with relevant United Nations bodies, an efficient and independent judiciary ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Ratify the ICCPR and ensure full implementation of all provisions", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Ensure progress in combating trafficking in persons and overcoming violence against women and children. ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Ensure full incorporation of the provisions of the Convention on the Rights of the Child into its national legal framework", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Take the measures necessary for the implementation of the MDGs, including the strategy paper for poverty eradication and the Malawi strategy for economic development ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Abide by the standards of the International Labour Organization (ILO) in the area of child employment and prohibit child prostitution and punish perpetrators of such acts ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Take measures to enhance access to basic products among vulnerable communities by creating food security programmes in areas particularly affected by the phenomenon of global warming ", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Continue to apply the strategies and plans under way to guarantee, to the maximum extent possible, the human rights of the most vulnerable groups ", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Promote the identity of the Armenian minority by further addressing its educational, religious and cultural needs", - "values": [ - "4 - General action" - ] - }, - { - "text": "Share its experience in combating corruption with the countries that have the same interest", - "values": [ - "1 - Minimal action" - ] - }, - { - "text": "Introduce a prohibition in legislation on the functioning of racist organisations, bring the Criminal Code in line with article 4 of the International Convention on the Elimination of All Forms of Racial Discrimination (ICERD), so as to criminalize incitement to hatred on racial grounds", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Continue its efforts in the protection and promotion of human rights", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Amend the Civil Code to raise the minimum age for marriage for both women and men to 18 years according to international standards.", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Sign and ratify those international human rights instruments to which it was not yet a party, particularly the Optional Protocol to the Convention on the Rights of the Child on the involvement of children in armed conflict, which had been previously recommended ", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Ratify the Protocol to Prevent, Suppress and Punish Trafficking in Persons, Especially Women and Children, supplementing the United Nations Convention against Transnational Organized Crime", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Safeguard the activities of human rights defenders", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Ensure full human rights legal protection throughout Micronesia", - "values": [ - "4 - General action" - ] - }, - { - "text": "Continue to pursue appropriate policies to improve conditions in its detention facilities ", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Continue the policy of eliminating inequalities between men and women", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Exercise restraint using anti-terrorism legislation in legal procedures against journalists and ensure the proportionality of measures that limit access to the internet", - "values": [ - "4 - General action" - ] - }, - { - "text": "Ensure the protection of children of migrant workers from statelessness", - "values": [ - "4 - General action" - ] - }, - { - "text": "Ratify CEDAW and its Optional Protocol", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Consider extending a standing invitation to the mandate holders of all special procedures of the Human Rights Council, as the Republic of Korea previously recommended in the first UPR", - "values": [ - "3 - Considering action" - ] - }, - { - "text": "Redress housing shortage by adopting a national strategy and a plan of action", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Guarantee freedom of assembly and association, including by protecting protestors from ill-treatment and by investigating allegations of abuse by officials promptly, thoroughly and independently", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Initiate the procedures aimed at ratifying the Convention against Torture", - "values": [ - "4 - General action" - ] - }, - { - "text": "Institute a national action plan on the prevention of torture and allocate sufficient resources for its implementation", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Lift severe restrictions on freedom of expression, both online and offline, and take concrete measures to protect journalists and media workers from violence and arbitrary detention without an official charge ", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Establish an immediate moratorium on the death penalty with a view to its permanent abolition and ratify the Second Optional Protocol to the International Covenant on Civil and Political Rights, aiming at the abolition of the death penalty", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Consider the possibility of acceding to the CPED and recognize the competence of its Committee", - "values": [ - "3 - Considering action" - ] - }, - { - "text": "Build upon the existing structures and strengthen the protection of victims of human trafficking, but also address the root causes of this phenomenon and involve preventative measures", - "values": [ - "4 - General action" - ] - }, - { - "text": "Do whatever is necessary to continue to promote and protect the fundamental freedoms and human rights of all its citizens", - "values": [ - "4 - General action" - ] - }, - { - "text": "Redouble efforts to eliminate extra-judicial killings and acts of violence and torture, and to educate military and police personnel on human rights principles", - "values": [ - "4 - General action" - ] - }, - { - "text": "Adhere to the Rome Statute of the ICC", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Ratify the International Convention for the Protection of All Persons from Enforced Disappearance at an early date", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Continue implementing economic, social, cultural, civil and political rights for the benefit of all its population", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Continue to take effective measures for the protection of indigenous peoples' rights", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Ensure the respect of rights and fundamental freedoms of the whole population and adopt all the necessary measures to guarantee the accountability of the authors of crimes, acts of violence, and all human rights violations", - "values": [ - "4 - General action" - ] - }, - { - "text": "Take action to eradicate violence and discrimination against women and lesbian, gay, bisexual, transgender and intersex persons, primarily in educational institutions", - "values": [ - "4 - General action" - ] - }, - { - "text": "Consider the gradual ratification of pending international instruments ", - "values": [ - "3 - Considering action" - ] - }, - { - "text": "Implement policies to guarantee the rights of displaced persons, particularly following natural disasters, as well as of those persons expelled from a third country who risk statelessness ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Redouble efforts to put in place an environmental regulatory policy to ensure the implementation of this development of plan", - "values": [ - "4 - General action" - ] - }, - { - "text": "Sign and ratify CRPD and its Optional Protocol ", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Devote more efforts in the field of harmonizing gender equality for guaranteeing their equal rights ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Address human rights abuses perpetrated by Netherlands companies abroad", - "values": [ - "4 - General action" - ] - }, - { - "text": "Cooperate fully with all human rights mechanisms", - "values": [ - "4 - General action" - ] - }, - { - "text": "Consider the ratification of the International Convention on the Protection of the Rights of All Migrant Workers and Members of Their Families pursuant to recommendation 1737 of 17 March 2006 of the Parliamentary Assembly of the Council of Europe, of which Latvia is a member ", - "values": [ - "3 - Considering action" - ] - }, - { - "text": "Ensure changes to its criminal and civil codes, decriminalize slander and libel, and protect media freedoms and the freedom of expression, including for NGOs", - "values": [ - "4 - General action" - ] - }, - { - "text": "Continue its efforts for the promotion and protection of human rights with the support of the international community, at the bilateral and multilateral levels.", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Seek to ensure the protection of all child victims and/or witnesses of crimes and comply with the United Nations Guidelines on Justice in Matters involving Child Victims and Witnesses of Crime ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Establish follow-up to carry through the teaching and training strategy", - "values": [ - "4 - General action" - ] - }, - { - "text": "Introduce comprehensive legislation on discrimination and equality of men and women", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Abolish the practice of using the judicial system to silence critics of the Government, reinforce the independence of the judiciary by increasing institutional and material support for the justice system and end the provisional nature of judicial appointments ", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Extend a standing invitation to the United Nations Special Procedures for human rights", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Consider acceding to core international human rights instruments", - "values": [ - "3 - Considering action" - ] - }, - { - "text": "Take all necessary steps to ensure full and unhindered access by independent humanitarian organizations to civilians in need of assistance in Darfur, Blue Nile and South Kordofan ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Take the necessary measures to eliminate all discriminatory treatment towards persons with disabilities", - "values": [ - "4 - General action" - ] - }, - { - "text": "Continue to strengthen and promote human rights education, including through joint educational programmes with national minorities ", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Withdraw remaining reservations made to the Convention on the Elimination of All Forms of Discrimination against Women", - "values": [ - "3 - Considering action" - ] - }, - { - "text": "Cooperate with the Special Rapporteur on the situation of human rights in Belarus and issue a standing invitation to special procedures or, if this is not agreeable, accept the special rapporteurs who have requested a visit", - "values": [ - "4 - General action" - ] - }, - { - "text": "Allow, without restrictions, unhindered access to the country for neutral observers and humanitarian actors", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Implement fully the 2011 law against domestic abuse and continue its efforts to fulfil its obligations under CEDAW", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Continue the efforts to ensure a quality education for Indonesian children ", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Strengthen the legal protection of individuals belonging to groups in the most vulnerable situations: persons living with albinism, lesbian, gay, bisexual, transgender and intersex persons, elderly women, pastoralist and hunter-gatherers/community with specific needs, and people with disabilities, in comprehensive anti-discrimination legislation", - "values": [ - "4 - General action" - ] - }, - { - "text": "Take steps to strengthen the rule of law and independence of the judiciary by promptly and thoroughly investigating all threats and incidents of violence against government opposition members and their supporters", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "That the newly established Department of Women, Children and People with Disabilities be empowered to coordinate actions amongst various Government agencies to address the issue of gender-based violence ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Continue to implement policies for the eradication of poverty ", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Withdraw its deposited interpretation of Article 4 of the ICERD, and include within the updated national plan enhanced accountability measures on combating the religious and ethnic incitement and hate speech, particularly with respect to elections and media", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Consider becoming a party to the Optional Protocol to the CRC on a communications procedure", - "values": [ - "3 - Considering action" - ] - }, - { - "text": "Continue the efforts to promote and protect the right to health and the right to education for its people in order to further improve the standard of living for all", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Ratify the remaining core human rights and other relevant international treaties, in particular the 1951 Geneva Convention relating to the Status of Refugees and its Protocol ", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Ensure that women and girls in displaced persons camps and in the general population are truly protected against all forms of violence, including early or enforced marriage and ensure that the perpetrators of crimes against women are brought to justice", - "values": [ - "4 - General action" - ] - }, - { - "text": "Strengthen measures to prevent and reduce the prevalence of HIV/AIDS", - "values": [ - "4 - General action" - ] - }, - { - "text": "Fully cooperate with the Special Rapporteur on the situation of human rights in Eritrea and respond without further delay to the longstanding request to visit the country", - "values": [ - "4 - General action" - ] - }, - { - "text": "Ensure freedom of expression and media freedom by bringing national legislation into line with international standards, including by decriminalizing defamation and related offences in relevant national laws", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Adopt a new action plan on gender equality to ensure continuity, as the previous plan expired in 2014", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Take all necessary measures to improve the conditions in prisons and resolve the issue of prison overcrowding", - "values": [ - "4 - General action" - ] - }, - { - "text": "Take further efforts to ensure that all women enjoy their right to sexual and reproductive health, and to increase access to health services, particularly in rural areas, in order to reduce the incidence of maternal mortality, especially among young, rural and indigenous women", - "values": [ - "4 - General action" - ] - }, - { - "text": "Bring legislation governing the rights of the child into line with relevant international instruments and provide the office of the Commissioner for the Protection of Children's Rights with the support needed for it to assume its role of preservation and protection of children's rights ", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Act to eliminate differences in human rights between the European and Caribbean Netherlands", - "values": [ - "4 - General action" - ] - }, - { - "text": "Amend the Penal Code to ensure full compliance with international norms on prohibition of torture ", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Ensure access of persons with disabilities to education, employment, public transportation, health and political participation, and eliminate discriminatory laws and regulations", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Continue to strengthen the rule of law in the country by swiftly adopting the Criminal Code and the Code of Criminal Procedure", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Continue efforts to eradicate and address cases of violence against women ", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Consider the possibility to introduce a system of automatic registration of children born in the country, regardless of the parents' nationality or status", - "values": [ - "3 - Considering action" - ] - }, - { - "text": "Continue working on the full implementation of the National Plan against Racism and All Forms of Discrimination ", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Take all necessary measures to lift all existing barriers in the enjoyment of the rights of persons with disabilities, with particular attention to their right to live independently, to have access to adequate health care services and to be integrated in the community", - "values": [ - "4 - General action" - ] - }, - { - "text": "Continue its measures to tackle the problem of violence against women, including domestic violence ", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "That the organization of a transparent and inclusive election process in compliance with international standards is undertaken as a matter of priority, together with the thorough transparent, impartial and independent investigation of the recent violent events ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Continue its efforts in strengthening its national legal frameworks including by taking concrete steps towards the accession of the Convention against Torture", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Repeal article 278 of the Criminal Code and prohibit corporal punishment in all settings including the home, and improve the accessibility and resourcing of education to all communities, especially those located in remote areas", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Re-establish, peacefully and without further delay, the constitutional order in the country, engaging in a genuine dialogue with all ethnic communities, through free and fair democratic elections as the only means for the Government's legitimacy, the return of the rule of law and respect for human rights. The underlying issues that have led to Fiji's political instability should be duly addressed", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Continue to enhance access to sexual and reproductive health services for women, in particular women with disabilities, women with low income, women with HIV/AIDS, and women living in the rural areas", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Undertake an inclusive process with a wide range of civil society representatives when implementing the UPR recommendations", - "values": [ - "4 - General action" - ] - }, - { - "text": "Promote the ratification of the different international human rights instruments most of which have not been ratified by the country, and continue to cooperate with the Human Rights Council and its mechanisms ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Adopt the necessary legislation and policies in order to combat violence against women", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Consider changes in legislation and administrative procedures with the view to facilitate the establishment of independent media", - "values": [ - "3 - Considering action" - ] - }, - { - "text": "Ratify the Optional Protocols to the Convention on the Rights of the Child, as previously recommended", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Prohibit expressly all forms of corporal punishment of children and promote positive and non-violent forms of discipline.", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Intensify the awareness-raising and education campaigns for local authorities, families, traditional and religious leaders and the general population in order to effectively fight against the problem of early and forced marriages ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Continue efforts towards national reconciliation", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Ensure the full enjoyment by all children of the rights recognized in the Convention on the Rights of the Child, particularly with regard to access to education and health services", - "values": [ - "4 - General action" - ] - }, - { - "text": "Increase efforts to further prevent cases of kidnapping, forced disappearances and extrajudicial killings. ensure that all perpetrators are brought to justice. and enhance its capacity in the areas of crime investigations, the judiciary and the NHRC, with the assistance of the international community.", - "values": [ - "4 - General action" - ] - }, - { - "text": "Adopt relevant measures for legislative and criminal justice improvements in relation to concerns expressed by the Committee on the Rights of the Child in relation to limitations on freedom of expression and assembly of students. ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Continue its on-going review of national laws to ensure that they are in line with its international human rights law obligations", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Conduct comprehensive public awareness campaigns and enhance the investigation and prosecution of violent crimes perpetrated on grounds of ethnicity, nationality, religion, sexual orientation or gender identity ", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Adopt a family code", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Continue with all its endeavours to ensure further success in the implementation of the recently established programs/policies, including the revised national action plan against trafficking in persons", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Enact a comprehensive strategy in order that the rights of children are further protected and widened", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Foster increased dialogue with civil society, especially regarding strengthening electoral processes", - "values": [ - "4 - General action" - ] - }, - { - "text": "Move quickly to establish a national human rights institution in full compliance with the Paris Principles", - "values": [ - "4 - General action" - ] - }, - { - "text": "Move forward on mainstreaming gender issues into all Government plans and policies", - "values": [ - "4 - General action" - ] - }, - { - "text": "Continue its efforts to support Roma-children education, including by increasing the availability of bilingual education ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Amend all laws which perpetuate discrimination against and marginalization of women.", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Ensure the elimination of the sale and trafficking of children for sexual exploitation ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Continue to implement policies for socioeconomic development of its people under the Sustainable Development Goals", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Continue to prioritise policies aimed at promoting equality, ensuring the reduction of poverty and strengthening the promotion and protection of human rights for all", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Strengthen safeguards against potential refoulement of persons in need of international protection, including by closely monitoring the situation in the countries of origin of the asylum-seekers", - "values": [ - "4 - General action" - ] - }, - { - "text": "Take further measures to systematically ensure safeguards against the occurrence of torture or ill-treatment, in particular in prison and detention facilities, while implementing also recommendations of the European Committee for the Prevention of Torture", - "values": [ - "4 - General action" - ] - }, - { - "text": "Develop domestic procedures and institutions for asylum in order to grant proper services to persons of concern in need of international protection ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Take measures to ensure that the National Office against Racial Discrimination -UNAR- is independent and adequately resourced", - "values": [ - "4 - General action" - ] - }, - { - "text": "Take measures to readjust its domestic laws to align them with the international human rights conventions it has acceded to", - "values": [ - "4 - General action" - ] - }, - { - "text": "Take all necessary steps to ensure that torture and other inhumane and degrading treatment of civilians does not occur ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Withdraw reservations from the International Covenant on Economic, Social and Cultural Rights", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Introduce educational or training programmes that promote the integration of sexual minorities with a view to preventing discrimination on the basis of sexuality", - "values": [ - "4 - General action" - ] - }, - { - "text": "Sign and ratify the International Convention for the Protection of All Persons from Enforced Disappearance, as well as the Optional Protocol to the Convention against Torture and Other Cruel, Inhuman or Degrading Treatment or Punishment", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "That the engagement with NGOs and civil society should be continued during the implementation of the second cycle accepted recommendations where appropriate ", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Continue providing support to the United Nations organizations and its specialized agencies, institutions, regional and international funds concerning humanitarian assistance", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Encourage Liberia to strengthen its policies to combat against child trafficking", - "values": [ - "4 - General action" - ] - }, - { - "text": "Accede to the 1951 Convention relating to the Status of Refugees and its 1967 Protocol and the 1961 Convention on the Reduction of Statelessness ", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Ensure that journalists and media workers are able to work freely and without governmental intimidation ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Continue facing the attempts of external interference in the country's internal affairs and continue exercising fully its sovereignty and right to self-determination ", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Better protect women against all forms of violence, including honour killings, as required under the Criminal Code, the Law on Protection of the Family and the Law of Civil Status", - "values": [ - "4 - General action" - ] - }, - { - "text": "Fully recognize the human right to safe drinking", - "values": [ - "4 - General action" - ] - }, - { - "text": "Consider making primary education compulsory, in accordance with article 28 of the Convention on the Rights of the Child", - "values": [ - "3 - Considering action" - ] - }, - { - "text": "Continue the implementation of measures designed to enhance the role of women in social and political life ", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Further strengthen awareness-raising and information programs to promote the rights of the child and consider developing a comprehensive national child protection mechanism and action plan", - "values": [ - "4 - General action" - ] - }, - { - "text": "Continue to strengthen its comprehensive free health-care system by taking the necessary steps to increase the number of qualified local health personnel in the country ", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Recommended including the right to organize, bargain collectively and strike in the law, extend the labour law to cover all groups, including domestic employees and farm labourers, make this law known to the public through awareness campaigns.", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Share the good practices in the field of international cooperation for the promotion of health services of the meritorious services extended by Medical Brigade Henry Reeve to Pakistan during the 2005 earthquake", - "values": [ - "1 - Minimal action" - ] - }, - { - "text": "Extend the length of the special campaign promoting the civil registry and make permanent the fee exemption for such registration", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Continue to promote the implementation of the necessary basic, legal and social structures to enable people to live a decent life", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Ensure that the provisions of all international human rights treaties, once ratified, are incorporated into domestic law ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Avoid maintaining special criminal courts in its penal legislation", - "values": [ - "4 - General action" - ] - }, - { - "text": "Repeal all legislative provisions which lead to discriminations based on sexual orientation and declared or perceived gender identity of persons", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Adopt a national plan of action on human rights", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Enhance initiatives on the programme to bolster a sense of national unity", - "values": [ - "4 - General action" - ] - }, - { - "text": "Continue strengthening its policy to improve access by persons with disabilities to education", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Accelerate the passage of the law establishing the Constitutional Court in accordance with the Constitution of Suriname", - "values": [ - "4 - General action" - ] - }, - { - "text": "Eradicate stereotypes and widespread abuse of Roma ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Consider ratifying International Labour Organization Convention No. 189", - "values": [ - "3 - Considering action" - ] - }, - { - "text": "Strengthen its cooperation with treaty bodies ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Ensure that the 2016 draft law on preventing and fighting domestic violence also includes punitive sanctions for the perpetrators", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Ensure prompt thorough, independent and transparent investigations into all allegations of rape, torture or other ill-treatment by law enforcement officials, hold those responsible to account and provide reparations and redress to the victims ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Fully guarantee freedom of association, including for non-governmental organizations working on human rights, notably by simplifying the registration process for NGOs", - "values": [ - "4 - General action" - ] - }, - { - "text": "Continue to support policies for the promotion of the full and equal participation of women in decision-making in all spheres of public, political and professional life ", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Further strengthen the impartiality of the judicial system", - "values": [ - "4 - General action" - ] - }, - { - "text": "Investigate and prosecute all cases of harassment and discrimination of religious minorities and non-believers ", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Prohibit corporal punishment of children", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Ensure implementation of legislation and other measures protecting the rights of persons with disabilities by, inter alia, allocating adequate funding for projects aiming at establishing a barrier-free living environment, and guaranteeing for children with disabilities equal access to education in mainstream schools", - "values": [ - "4 - General action" - ] - }, - { - "text": "Ensure necessary resources to facilitate the implementation of programs aimed at improving the situation of Roma people", - "values": [ - "4 - General action" - ] - }, - { - "text": "Pursue its efforts in promoting education and training in human rights, in particular for the capacity-building of law enforcement officials", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Disseminate information and raise awareness about the Arab Peace Initiative, launched by the King of Saudi Arabia ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Put in place a policy for the protection of children and adolescents, with a view to better protecting them against acts of violence and crimes committed against them, as well as in relation to the large number of early pregnancies", - "values": [ - "4 - General action" - ] - }, - { - "text": "Take steps necessary to advance equal education and employment opportunities for women and girls and eliminate the worst forms of child labour", - "values": [ - "4 - General action" - ] - }, - { - "text": "Redouble efforts to improve the conditions of persons deprived of their liberty, in particular by reducing periods of pre-trial detention, facilitating access to justice, and improving the facilities of detention centres", - "values": [ - "4 - General action" - ] - }, - { - "text": "Conduct and finalize a timely review of the request for recognition of the Travellers as an ethnic group", - "values": [ - "3 - Considering action" - ] - }, - { - "text": "Further develop laws and practices with regard to legal proceedings and identification of victims of human trafficking", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Ensure that those suspected of being responsible for crimes under international law in Darfur - particularly those within government security and armed forces - are investigated and prosecuted before independent and impartial courts, without resort to the death penalty ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Continue its efforts to develop and enhance its national institutions to promote and protect the human rights and fundamental freedoms of its people ", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Amend its legislation to prohibit and punish corporal punishment inflicted on children in the home and school, and increase the efforts to raise awareness of the negative effects of this practice", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Move to abolish the death penalty, accede to the Second Optional Protocol to the International Covenant on Civil and Political Rights", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Continue to eradicate poverty and improve in particular the standard of living of rural populations", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Make additional efforts to enhance the role of women in public life and ensure that these efforts are combined, for girls, with the abolition of female genital mutilation, whether it is consented to or not ", - "values": [ - "4 - General action" - ] - }, - { - "text": "That the Government has a continued focus on the situation of the San people and their rights in Botswana", - "values": [ - "4 - General action" - ] - }, - { - "text": "Step up the efforts to combat female genital mutilation", - "values": [ - "4 - General action" - ] - }, - { - "text": "Take all necessary measures to solve the problems of non-Muslim minorities caused by the closing of the Halki seminary", - "values": [ - "4 - General action" - ] - }, - { - "text": "Increase efforts to fight corruption effectively, the national anti-corruption bureau and the specialized anti-corruption prosecutor\u2019s office, established in 2015, should intensify their work in prosecuting high-level corruption in the Government, parliament and the courts. The establishment of the separate anti-corruption court would be the right step in this direction", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Repeal domestic legislation that discriminates against women, including on rights to succession to land permits and grants, and the disposal of immovable property, as well as to address obstacles to equal participation of women in political, economic and public life", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Continue to strengthen its cooperation and exchanges with international organizations in the field of education ", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Adopt legislation to specifically prohibit discrimination on the basis of sexual orientation and gender identity", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Review existing provisions with regard to detention without trial and adopt new provisions to inform those detained of their right to counsel and guarantee their access to Counsel immediately upon arrest ", - "values": [ - "3 - Considering action" - ] - }, - { - "text": "Ensure that the legislative framework guarantees the right to freedom of expression and opinion and to put an end to the intimidations which journalists are victims of", - "values": [ - "4 - General action" - ] - }, - { - "text": "Review relevant legislation, such as the Family Code, with a view to prevent discrimination of women, including with regards to marriage, inheritance or the freedom of movement ", - "values": [ - "3 - Considering action" - ] - }, - { - "text": "Ratify the International Convention on the Protection of the Rights of All Migrant Workers and Members of their Families (ICRMW).", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Consider becoming a party to the Optional Protocol to the Convention on the Rights of the Child on a communications procedure", - "values": [ - "3 - Considering action" - ] - }, - { - "text": "Stop all executions", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Thoroughly accept legal state responsibility for and take sincere measures to address its past crimes against humanity, including sexual slavery", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Guarantee the indigenous people's rights by fully engaging indigenous peoples of the country in decision-making in all the matters that affect them", - "values": [ - "4 - General action" - ] - }, - { - "text": "Strengthen further national policies against HIV/AIDS, aiming at universal access to prevention, treatment, care and support ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Pursue its efforts to guarantee to victims of human rights violations effective, flexible and prompt remedies ", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Continue efforts to improve the living conditions in immigration detention centres, especially for children victims of armed conflicts", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Carry out specific legislative reform to strengthen measures against discrimination on the basis of gender and ethnicity", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "That the Sultanate of Oman strengthen its cooperation with the Office of the High Commissioner for Human Rights with a view to holding more training sessions for awareness raising and education on human rights ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Facilitate birth registration and provide easy registration procedures for indigenous children and children of African descent ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Take steps to reform the system for juvenile justice to ensure it is brought into line with international standards set out in CRC ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Consider, when possible, to gradually increase financial resources allocated to the budget of the Afghanistan Independent Human Rights Commission.", - "values": [ - "3 - Considering action" - ] - }, - { - "text": "Ensure that the use of force and firearms is regulated in law in accordance with international standards", - "values": [ - "4 - General action" - ] - }, - { - "text": "Review recent legislative changes with a view to fully ensuring freedom of assembly and association, in accordance with international obligations ", - "values": [ - "3 - Considering action" - ] - }, - { - "text": "Repeal all state policy and regulations which condone discrimination against and harassment of Koreans in Japan", - "values": [ - "4 - General action" - ] - }, - { - "text": "Review the legislation to ensure its full compliance with the international obligations of Zimbabwe and with the country's Constitution with regard to the rights to freedom of expression, association and assembly and the elimination of discrimination against women", - "values": [ - "3 - Considering action" - ] - }, - { - "text": "Reinforce efforts to promote ethnic and religious tolerance between the different communities in the country through education and public-awareness campaigns.", - "values": [ - "4 - General action" - ] - }, - { - "text": "Amend the draft Criminal Code and Code of Criminal Procedure to bring it into line with the Second Optional Protocol to the International Covenant on Civil and Political Rights on the abolition of the death penalty and adopt them as soon as possible and initiate an awareness campaign so that the public in Benin are aware of the impact of these changes", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Continue implementing programmes aimed at protecting the rights of the child ", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Continue improving prison conditions and reducing overcrowding", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Strengthen institutionally the judicial protection to fully guarantee human rights as recognized by the Constitution.", - "values": [ - "4 - General action" - ] - }, - { - "text": "Ensure that safe and legal abortions are accessible in practice by creating clear, legally binding regulations for the implementation of the 1993 Act on Family Planning", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Ensure the equal treatment and non-discrimination of all children, irrespective of their ethnicity, including equal opportunity to access education at the same level", - "values": [ - "4 - General action" - ] - }, - { - "text": "Adopt and implement a national water strategy and plan of action covering the entire population, and make access to water and sanitation affordable to all ", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Establish an independent human rights commission in accordance with the Paris Principles", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Further improve conditions in social sectors ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Intensify its efforts to support the rights of persons with disabilities to social integration and self-reliance", - "values": [ - "4 - General action" - ] - }, - { - "text": "Continue strengthening the Plan of Action of 2014 with a view to ensuring the full enjoyment of the right to health, work and adequate standard of living", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Cooperate more intensively with United Nations human rights mechanisms, in particular by responding positively to the repeated requests for visits by the Special Rapporteurs on the situation of human rights and the right to food ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Consider stepping up measures to comprehensively address the problem of violence against women, including by increasing public awareness campaigns to sensitize the community on the issue.", - "values": [ - "3 - Considering action" - ] - }, - { - "text": "Establish a form of vetting mechanism for the promotion and training of the Armed Forces and remove and exclude members of the forces who are suspected of human rights violations, pending judicial investigation. ", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Ensure that measures limiting freedom of expression on the internet is based on clearly defined criteria in accordance with international human rights standard ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Put in place a comprehensive strategy, as advised by CEDAW to modify or eliminate cultural practices and stereotypes that discriminate against women ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Seek to reform those legal provisions that still allow direct or indirect discrimination against women", - "values": [ - "4 - General action" - ] - }, - { - "text": "El Salvador was committed to protecting the rights of Salvadorans who had migrated. In that sense the delegation considered as a great achievement the adoption, in 2011, of the Special Law on the Protection and Development of Salvadoran Migrants and Their Families. ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Decriminalize same-sex sexual activity between consenting adults and adopt measures to promote tolerance in this regard, which would also facilitate more effective educational programmes for the prevention of HIV-AIDS.", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Submission of a report, during the next review, on the fulfilment of existing voluntary pledges.", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Propose specific initiatives and policies to combat all forms of extremism, racism and xenophobia, in particular towards Muslims", - "values": [ - "4 - General action" - ] - }, - { - "text": "Continue legislative review and reform to address any instances of discrimination against women in national law", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Typify torture as a specific crime, with all the elements of the definition of article 1 of the Convention against Torture and Other Cruel, Inhuman or Degrading Treatment or Punishment, take measures to prevent police brutality, particularly against migrants, asylum seekers and foreigners, and adopt an effective and independent mechanism to address such complaints", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Take measures to ensure international humanitarian aid reaches the most vulnerable and needy", - "values": [ - "4 - General action" - ] - }, - { - "text": "Develop a comprehensive national strategy for addressing violence against Aboriginal women in a timely manner and in collaboration with relevant stakeholders such as Aboriginal women's organizations ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Adopt necessary measures for free and compulsory registration of all children, including late registration, bringing forward new and more targeted campaigns to raise awareness among families, training social workers and health professionals and civil servants in charge of the registration and birth certificates and providing the necessary resources to establish registration offices in all the country", - "values": [ - "4 - General action" - ] - }, - { - "text": "Consider ratifying the International Convention on the Protection of the Rights of All Migrant Workers and Their Families as well as the ILO Convention 189", - "values": [ - "3 - Considering action" - ] - }, - { - "text": "Continue to promote participation of women in social, economic and political life ", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Investigate all allegations of murder of civilians, torture, ill-treatment, sexual violence and arbitrary detentions carried out by the Malian army, police or other bodies under the control of the Government and ensure that perpetrators of crimes are brought to justice ", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Strengthen the protection of domestic workers", - "values": [ - "4 - General action" - ] - }, - { - "text": "Accord gender-based violence high priority ensuring the development of policies to facilitate victims' access to justice and a broad range of free services", - "values": [ - "4 - General action" - ] - }, - { - "text": "Favourably consider ratification the Convention on the Rights of Persons with Disabilities as soon as possible ", - "values": [ - "3 - Considering action" - ] - }, - { - "text": "Review its legislation with a view to prohibiting all forms of corporal punishment of children", - "values": [ - "3 - Considering action" - ] - }, - { - "text": "Give high priority to the Office for Gender Equality by providing it with necessary resources to effectively carry out its mandate ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Step up efforts of the competent Ministries to effectively train professionals such as judges, prosecutors and police officers to prosecute racist and hate crimes", - "values": [ - "4 - General action" - ] - }, - { - "text": "Submit its overdue report under ICCPR ", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Increase the budget of and strengthen the National Office against Racial Discrimination", - "values": [ - "4 - General action" - ] - }, - { - "text": "Sign and ratify the Rome Statute of the ICC", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Improve the living conditions in centres for asylum-seekers and revise existing system of dealing with individual complaints including the need to ensure that legal advice services are available in those centres ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Lesotho will continue to declare zero tolerance to corruption and take concrete steps to eliminate it such as further strengthening the DCEO and the Financial Intelligence Unit which will assist law enforcement agencies in the investigation of money laundering, corruption and fraud.", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Further improve the normative framework in order to better guarantee women's and children's rights ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Continue further improvement of the protection and promotion of human rights in the country ", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Establish a moratorium on the use of the death penalty at the federal and state level as a first step towards abolition ", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Immediately free unconditionally all persons arbitrarily detained by the Syrian authorities, as a priority women, children and older persons", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Consider the possibility of acceding to ICERD and CAT", - "values": [ - "3 - Considering action" - ] - }, - { - "text": "Pass laws and follow up on their implementation with the aim of eliminating wage discrimination against women and, in particular, discrimination based on motherhood and pregnancy", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Revise article 336 of the penal code in order to define the crime of rape as a non-consensual sexual relationship", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Take further measures for the rehabilitation and social integration of women and girls who are victims of trafficking ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Ensure that the use of force and fire arms by the security forces is regulated in accordance with the principles of necessity and proportionality and all cases of deaths and excessive use of force by security forces during civil protests are properly investigated. Revoke legal provisions that allow police personnel to provide extraordinary police services to private sector", - "values": [ - "4 - General action" - ] - }, - { - "text": "Enhance inter-ethnic, inter-religious, and inter-cultural understanding within the society, and ensure access to justice for victims of racial hatred or violence", - "values": [ - "4 - General action" - ] - }, - { - "text": "Strengthen its efforts to ensure that the necessary capacity is provided to make sure that pre-trial detention is dealt with according to international standards ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Recommended analysing the possibility of ratifying human rights instruments which are considered relevant in strengthening its promotion and protection, highlighting: ICCPR, International Convention for the Protection of All Persons Against Enforced Disappearances, and assess the possibility of accepting the competency of the Committee on Enforced Disappearances in accordance with the Convention, and the Protocol to Prevent, Suppress and Punish Trafficking in Persons, especially Women and Children, supplementing the Convention against Transnational Organised Crime", - "values": [ - "3 - Considering action" - ] - }, - { - "text": "Reform laws that contain discriminatory provisions", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Further ongoing efforts to combat human trafficking", - "values": [ - "4 - General action" - ] - }, - { - "text": "Continue the current efforts to finalize the process of adoption of a social security code and the establishment of a sustainable social security system", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Reform the penal code and abolish discrimination against people based on their sexual orientation ", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Increase international, regional and bilateral cooperation to prevent human trafficking and prosecute and punish traffickers", - "values": [ - "4 - General action" - ] - }, - { - "text": "Review and revise domestic legislation and policies to reflect the provisions and principles of the Convention on the Rights of Persons with Disabilities ", - "values": [ - "3 - Considering action" - ] - }, - { - "text": "Ratify the International Convention on the Elimination of All Forms of Racial Discrimination", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Step up prosecutions of individuals who traffic in persons and increase funding for specialized services, including shelters, for trafficking victims ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Ensure that measures be taken during military operations aimed at mitigating the impact of the armed conflict on children, by guaranteeing the principles of distinction, proportionality and precaution ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Protect the economic, social and cultural rights of the Sami people from the negative effects that may result from logging and other activities carried out by private agents", - "values": [ - "4 - General action" - ] - }, - { - "text": "Adopt a Child Protection Code that includes physical, emotional and sexual abuse", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Continue its civilized choice aimed at strengthening dialogue among religions and spreading the values of moderation and tolerance", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Complete the work towards the establishment of a national strategy on combating violence against children", - "values": [ - "4 - General action" - ] - }, - { - "text": "Provide effective legal and procedural guarantees against collection and use by security services of personal information, including abroad", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Ratify the Convention on the Reduction of Statelessness and sign and ratify the Convention relating to the Status of Stateless Persons ", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Find effective ways of realizing the rights of individuals belonging to ethnic, religious and linguistic minorities.", - "values": [ - "4 - General action" - ] - }, - { - "text": "That the forces of a free society human rights defenders, journalists and lawyers working in defence of a free media, civil liberties and human rights in Kyrgyzstan be allowed to operate in the country", - "values": [ - "4 - General action" - ] - }, - { - "text": "Immediately stop its atrocities and violations of human rights against the Kashmiri people, and allow them to exercise their right to self-determination through a free and fair plebiscite in accordance with the United Nations Security Council resolution", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Raise social awareness against any form of xenophobic and racist thinking and attitudes for the benefit of sustainable development and regional stability", - "values": [ - "4 - General action" - ] - }, - { - "text": "Strengthen policies aimed at reducing poverty", - "values": [ - "4 - General action" - ] - }, - { - "text": "Include persons with albinism in decision-making processes concerning their protection and rights", - "values": [ - "4 - General action" - ] - }, - { - "text": "Continue to ensure better protection of the rights of all citizens through the implementation of the national action plans recently adopted, in particular those relating the strengthening of the strategic framework for combating poverty", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Consolidate and boost effective implementation of commitments to protect and promote human rights, especially economic, social and cultural rights", - "values": [ - "4 - General action" - ] - }, - { - "text": "Accede to the Optional Protocol to the Convention against Torture and Other Cruel, Inhuman or Degrading Treatment or Punishment, and establish a national preventive mechanism accordingly ", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Adopt legislation and measures to allow the free practice of religions in Sudan and in South\nSudan", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Continue efforts to improve penitentiary system conditions and to reduce episodes of violence in prison", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Ensure the effective investigation of all cases of femicide, as well as punishment for those who commit that crime, and to adopt additional measures to combat that phenomenon", - "values": [ - "4 - General action" - ] - }, - { - "text": "Promulgate laws which expressly prohibit all forms of corporal punishment of minors at home as well as in kindergartens, schools and other institutions caring for children", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Continue efforts to combat human trafficking ", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Give priority to the activities on promotion and protection of trade unions freedom with a view to continue strengthening free and independent trade unions ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Amend its legislation on abortion", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Adopt measures to fight against the use of violence as a weapon of war", - "values": [ - "4 - General action" - ] - }, - { - "text": "Take all measures necessary to prevent violence against children in all its forms and to put mechanisms in place to protect especially girls who are more vulnerable to sexual abuse and violence", - "values": [ - "4 - General action" - ] - }, - { - "text": "Continue its efforts to promote education and training in human rights", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Endow the annual professional technical training plan with specific modules on human rights and continue providing resources for the programmes aimed at expanding and renovating prison infrastructure, with the objective of improving the conditions of the penitentiary system and combating prison overcrowding", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Take immediate measures to implement the recommendations of November 2008 of the Committee against Torture, particularly on the inadmissibility in court of statements made under torture and the non-refoulement of refugees from the Democratic People's Republic of Korea", - "values": [ - "4 - General action" - ] - }, - { - "text": "Adopt and effectively implement a national action plan on the rights of the child with special attention to protection of the rights of children in institutional care and children with disabilities", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Publish the figures regarding death sentences and executions", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Continue to increase input into education for Roma and other minorities", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Ratify the Optional Protocol of the CRPD", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Sign and ratify the International Convention for the Protection of All Persons from Enforced Disappearance CED ", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Investigate all reports of assaults on and harassment of human rights defenders and bring to justice those responsible.", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Consider ratifying OP-CAT", - "values": [ - "3 - Considering action" - ] - }, - { - "text": "Amend existing rules for the security forces, including the Public Order and Security Act, to ensure that the rights to peaceful assembly, freedom of association and freedom of press can be exercised", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Take all appropriate measures to protect children's rights, especially by ensuring their access to primary education", - "values": [ - "4 - General action" - ] - }, - { - "text": "Intensify efforts to combat hate speech", - "values": [ - "4 - General action" - ] - }, - { - "text": "Make further efforts toward adoption of a comprehensive anti- discrimination law, concerning, in particular, institutive actions to tackle the issue of violence against women", - "values": [ - "4 - General action" - ] - }, - { - "text": "Strengthen the investigation and punishment of human rights violations related to the 2010 ethnic conflict", - "values": [ - "4 - General action" - ] - }, - { - "text": "Enhance its health care measures and policies with an aim to reduce the prevalence of child mortality and HIV/AIDS rates ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Continue promoting awareness and empowerment policies for persons with disabilities", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Step up efforts in amending the law to allow the granting of Bahraini citizenship to children whose mothers are married to foreigners", - "values": [ - "4 - General action" - ] - }, - { - "text": "Implement a process for the independent investigation of allegations of torture and ill-treatment by law enforcement officers and improve the ability to prosecute those found responsible", - "values": [ - "4 - General action" - ] - }, - { - "text": "Continue its efforts to promote school attendance and to eliminate child labour, particularly in rural areas", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Allow international humanitarian organizations, including UNHCR and the diplomatic community, unfettered access to Hmong returnees, and further ensure that the Hmong people repatriated from Thailand are treated in accordance with international law, including the 158 eligible for third-country resettlement ", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Ratify the Optional Protocol to the Convention against Torture and Other Cruel, Inhuman or Degrading Treatment", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Take under consideration making its migration and humanitarian policies more flexible with a view to a larger reception of migrants and refugees", - "values": [ - "3 - Considering action" - ] - }, - { - "text": "The RMI is committed to abiding by the principles of the main human rights treaties and in continuing efforts in ratifying or acceding to the said treaties.", - "values": [ - "4 - General action" - ] - }, - { - "text": "Strengthen the efforts of the Supreme Council for Mothers and Children and provide sufficient resources in order to coordinate the State policy in the area of the promotion of children's rights", - "values": [ - "4 - General action" - ] - }, - { - "text": "Give special attention to families as the foundation of the well-being of the country", - "values": [ - "4 - General action" - ] - }, - { - "text": "Continue to strengthen the relations with OHCHR", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Investigate the alleged cases of torture and other human rights abuses committed by police, military and security personnel and put an end to the climate of impunity", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Undertake all necessary measures to guarantee the freedom of religion of all religious orientations, in particular the Copts, including the right to practice religion in public", - "values": [ - "4 - General action" - ] - }, - { - "text": "Protect and promote the rights of women, end sexual violence in conflict and do not allow impunity for such crimes", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "To improve logistical and financial resources", - "values": [ - "4 - General action" - ] - }, - { - "text": "Examine the possibility of expanding the scope of application and the target population of the "Bolsa Familia" programme aimed at reducing poverty and redouble its efforts to reduce social inequalities ", - "values": [ - "3 - Considering action" - ] - }, - { - "text": "Continue policies aimed at ensuring the enjoyment of the rights and freedoms of persons with disabilities and access to resources and services under the Accessible IndiaCampaign", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Put in place a comprehensive strategy and effective legislation to eliminate practices that discriminate against women ", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Reform the National Council for Social Dialogue", - "values": [ - "4 - General action" - ] - }, - { - "text": "Make further efforts to improve judicial system as a step towards ensuring the security of IDPs, one of whose priority concerns is to be able to return home.", - "values": [ - "4 - General action" - ] - }, - { - "text": "Ratify the Second Optional Protocol of the International Covenant on Civil and Political Rights", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Further efforts in this positive direction with a view to strengthen national health-care programmes so that health care is easily accessible, available and affordable for all members of society", - "values": [ - "4 - General action" - ] - }, - { - "text": "Address persisting problems, such as overcrowding and insufficient health care and to establish and independent mechanisms to overview conditions in detention facilities, with particular focus on conditions of children and their protection against violence and abuse", - "values": [ - "4 - General action" - ] - }, - { - "text": "Take the measures necessary to eliminate restrictions on freedom of worship", - "values": [ - "4 - General action" - ] - }, - { - "text": "Share its progressive experience in the promotion of peace and interethnic harmony ", - "values": [ - "1 - Minimal action" - ] - }, - { - "text": "Adopt additional measures to achieve gender equality, in policy formulation and decision-making at all levels of Government", - "values": [ - "4 - General action" - ] - }, - { - "text": "Continue its efforts in order to offer IDPs satisfactory life conditions", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Take steps to amend its Penal Code to ensure that it cannot be applied in an arbitrary manner to prevent freedom of expression ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Persist in its efforts to combat the structural causes of racial discrimination against indigenous peoples, in order to ensure access to quality education and health services", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Take further effective measures to ensure access to education for all Aboriginal girls and women as an essential part of the full realization of their human rights ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Continue the implementation of measures and strategies to directly, temporarily and comprehensively alleviate the immediate needs of households in extreme poverty", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Consider giving more role to the private sector in developing the national education and health-care systems ", - "values": [ - "3 - Considering action" - ] - }, - { - "text": "Further strengthen the legal provisions to effectively protect women who are victims of domestic violence, including marital rape", - "values": [ - "4 - General action" - ] - }, - { - "text": "Continue to promote just and fair implementation of the Sharia Penal Code through adequate training and capacity building ", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Combat corruption, ensure the independence of the judiciary. Take steps to increase the effectiveness of the judiciary and prosecutor's office, and the level of professionalism of their staff", - "values": [ - "4 - General action" - ] - }, - { - "text": "Continue to strengthen its measures and mechanisms to overcome the challenges related to the protection of the rights of vulnerable groups, including indigenous peoples.", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Strengthen measures to ensure equality of rights for indigenous peoples, including the right to health, education and adequate housing", - "values": [ - "4 - General action" - ] - }, - { - "text": "Vote for the General Assembly resolution on the Moratorium on the use of the death penalty, ratify the according conventions and abolish the death penalty", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Continue efforts to adequately respond to honour related violence, provide shelters for women in need, raise public awareness and prosecute the perpetrators as a matter of priority", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Continue to improve its domestic legislation and judiciary system to be in line with international human rights standards and obligations including intensifying human rights education and training, especially for its military and law enforcement officers, in order to enhance their awareness and promote greater accountability ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Respond effectively to all forms of violence against women including by providing law enforcement official with gender training", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Consider ratifying the main human rights instruments, particularly the ICCPR, the ICESCR and the CEDAW ", - "values": [ - "3 - Considering action" - ] - }, - { - "text": "Continue its efforts for further strengthening of human rights institutions for the effective realization of all human rights in the country", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Ratify the Rome Statute of ICC and the Agreement on the Privileges and Immunities of ICC and to fully align its national legislation with all the obligations under the Statute ", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "The delegation reiterated that the freedom of information bill will be taken to Parliament this year. There has been increase in the freedom of the press and the Government is committed to further addressing this matter within the remit of the current constitutional making process. ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Continue to support initiatives, programmes and funds aiming at supporting youth projects in order to enhance the enjoyment of economic rights and provide job opportunities", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Continue its efforts for the operationalization of the National Human Rights Commission", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Examine and revise the recently adopted Law on Societies and to remove the government approval requirement in the work of NGOs and take steps to ensure that these changes are put into practice in the interest of encouraging broad participation in Jordanian civil society ", - "values": [ - "3 - Considering action" - ] - }, - { - "text": "Conclude the ongoing consultations concerning the Disability Bill to be adopted at the nearest time possible", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "For unaccompanied children, the United States is fully committed to holding children only for the shortest amount of time necessary to complete immigration processing and to treating the children with dignity and respect during their time in United States custody.", - "values": [ - "4 - General action" - ] - }, - { - "text": "Revise its regulation and administrative practices in order to protect the human rights of female domestic migrant workers, in particular when their work permits are linked to the employer and they have been victims of human trafficking and work exploitation", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Adopt legislative measures to criminalize torture, violence against women and trafficking in persons in line with international standards", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Continue its efforts of adhering to international legal instruments in the field of human rights, inter alia, to the Optional Protocol to the Convention against Torture and Other Cruel, Inhuman or Degrading Treatment or Punishment", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Approve, as soon as possible, the law on comprehensive compensation for victims of human rights violations", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Commit internationally to the rights of the LGBT community by signing the Joint Statement on LGBT human rights from the March 2011 session of the Human Rights Council", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Guarantee full and effective recognition of sexual and reproductive rights ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Consider reviewing strategies aimed at the protection of children with a view to developing a comprehensive plan for the care of children and aligning them with the provisions of the CRC and all applicable international human rights instruments to which the Congo is a party.", - "values": [ - "3 - Considering action" - ] - }, - { - "text": "Continue its significant efforts to promote gender equality, in particular the implementation of the "Draft National Gender Policy" ", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Continue its legal measures in further safeguarding the implementation of human rights", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Formulate programmes for the effective implementation of the National Action Plan for Democracy and Human Rights ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Review current immigration policies so to improve the rights of refugees and asylum seekers", - "values": [ - "3 - Considering action" - ] - }, - { - "text": "Further strengthen the steps taken in regard to trafficking, particularly in reference to women and children", - "values": [ - "4 - General action" - ] - }, - { - "text": "Provide meaningful access to specialized training on international human rights law and mechanisms to its judges, magistrates, prosecutors and lawyers", - "values": [ - "4 - General action" - ] - }, - { - "text": "Continue efforts for the comprehensive protection of children and adolescents rights, expand the juvenile justice system and actions aimed to implement the mandatory birth registration, and for eradication of female genital mutilation", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Release under-age fighters from its military forces and effectively prosecute persons who are responsible for recruiting children for armed groups, in particular in camps and villages in Eastern Chad, criminalize recruitment of children under domestic laws and establish a national institution to coordinate the release and reintegration of released children, as agreed during the visit of the Secretary-General's Special Representative in May 2008 .", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Share with other countries its experiences in poverty reduction and agricultural development, education and health care.", - "values": [ - "1 - Minimal action" - ] - }, - { - "text": "Consider strengthening the framework and mechanisms for eliminating discrimination against women and gender-based violence by enacting and enforcing all relevant laws, already under consideration, relating to violence against women", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Recognize the right to conscientious objection, ensuring that conscientious objectors are not subjected to reprisals ", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Improve conditions for proper functioning of independent media, in particular national TV channels, in order to provide more space for expressing diverse views and opinions ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Prevent cases of torture in facilities of detention through the provision of legal safeguards for detainees and effective investigations into allegations of torture and the prosecution and sentencing of perpetrators ", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Consider implementing, with the assistance of OHCHR, a training and awareness raising programme on international human rights and humanitarian law for members of the security forces, law enforcement officials and judicial officials.", - "values": [ - "3 - Considering action" - ] - }, - { - "text": "Advance in designing a health programme allowing to tackle Malaria, Tuberculosis and HIV/AIDS, and continuing decreasing the child and maternal mortality rates, and increase life expectancy ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Take measures, such as impartial vetting, to ensure that persons under the age of 18 are not recruited by Transitional Federal Government's security forces ", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Strengthen measures to eradicate economic exploitation of children and to amend the national Labour Code to bring it into conformity with International Labour Organization Convention No. 182 concerning the Prohibition and Immediate Action for the Elimination of the Worst Forms of Child Labour", - "values": [ - "4 - General action" - ] - }, - { - "text": "Develop effective measures to combat incitement to hatred, in particular measures to effectively investigate and prosecute such manifestation of intolerance ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Ensure that government entities budget more resources to implement the national action plan to reduce violence against women, increase support and legal protection for victims and improve national data collection", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Pay attention to prevention and protection measures that address the particular vulnerability of children to trafficking", - "values": [ - "4 - General action" - ] - }, - { - "text": "Intensify efforts to advance the rights of the Arab minority population in Israel", - "values": [ - "4 - General action" - ] - }, - { - "text": "Ensure that the International Commission against Impunity in Guatemala is able to perform its work effectively", - "values": [ - "4 - General action" - ] - }, - { - "text": "Take measures to reverse secondary school drop-out rates resulting from the introduction of cost-sharing.", - "values": [ - "4 - General action" - ] - }, - { - "text": "Take further legislative and practical steps to ensure equal political, economic, cultural and social rights for those belonging to minorities, including by increasing the number of reserved seats for minorities in the parliament", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Prosecute persons implicated in such unlawful killings, including government officials and their affiliates", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Further promote inclusive and accessible education to children with disabilities at ordinary schools ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Continue efforts to sanction discrimination and violence against women and ensure that there are adequate mechanisms for the provision of assistance and protection to women victims of crime", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Recommended further reducing the applicability of the death penalty, in particular for non-violent crimes, and to provide statistics on the number of death sentences as well as on the SPC review procedure (how many cases are returned for retrial; in how many cases are defendants heard by the SPC)", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Continue to adopt programmes that provide basic services to children, including health care, housing and education", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Closely monitor the investigation and prosecution of cases of domestic and sexual violence and their effectiveness, improve access to justice for victims of such violence and provide training in the field of domestic and sexual violence for judges, police, prosecutors and other relevant professionals", - "values": [ - "4 - General action" - ] - }, - { - "text": "Undertake investigations on extrajudicial killings in order to bring the perpetrators to justice and to provide reparation to the victims or to their families", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Implement and develop programs related to health and social welfare for the elderly, especially those aimed at further expanding the availability of medicines and to improve elderly health monitoring ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Consider ratifying those international human rights instruments to which the State is not yet a party ", - "values": [ - "3 - Considering action" - ] - }, - { - "text": "Take into account the opinions of the Working Group on Arbitrary Detention on the release of around 30 persons detained arbitrarily since the last UPR ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Finalize the procedures aiming at the establishment of an independent national human rights commission.", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Reconsider the restrictions imposed by the Ministry of Social Development and take appropriate measures to ensure that civil society organizations can take an active part in the public debate on human rights ", - "values": [ - "3 - Considering action" - ] - }, - { - "text": "Consider providing sanctions against organizations that promote racial discrimination, and characterizing as criminal any act that promotes and incites racial discrimination", - "values": [ - "3 - Considering action" - ] - }, - { - "text": "End arbitrary detention, harassment and other acts of intimidation against journalists, media workers and human rights defenders ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Strengthen programmes providing equal access to health, education and social services for migrants and asylum seekers and their children", - "values": [ - "4 - General action" - ] - }, - { - "text": "Continue implementing programmes and measures aimed at guaranteeing educational and quality health-care services to all the population ", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Continue the efforts towards improving the quality of education to ensure that every child has access to primary education, as well as to promote gender equality in education", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Continue increasing efforts to combat terrorism", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Abolish the criminal provisions on defamation ", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Establish or give a mandate to a Government body to collect and publish credible official data measuring all incidences of violence against women", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Continue its efforts in favour of the rights of foreign workers, in particular, by ensuring that employers properly comply with national legislation and by continuing its cooperation with countries of origin of these foreign workers ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Speedily operationalize the National Commission for Human Rights", - "values": [ - "4 - General action" - ] - }, - { - "text": "Ensure that the Ministry of Women, the Ministry of Health, the Office of the Prosecutor General and other institutions with a role in preventing and addressing cases of gender-based violence are adequately resourced ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Pay more attention to the problems related to the independence of the judicial process", - "values": [ - "4 - General action" - ] - }, - { - "text": "Establish a national action plan against racism, work for tolerance and preserve freedom of belief", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Step up national efforts to prevent trafficking in persons", - "values": [ - "4 - General action" - ] - }, - { - "text": "Consider ratifying ICRMW and harmonizing domestic legislation with international norms ", - "values": [ - "3 - Considering action" - ] - }, - { - "text": "Ratify the Optional Protocol to Convention against Torture and Other Cruel, Inhuman or Degrading Treatment of Punishment", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Ratify the Marrakesh Treaty to Facilitate Access to Published Works for Persons Who Are Blind, Visually Impaired, or Otherwise Print Disabled", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Ratify the International Convention for the Protection of All Persons from Enforced Disappearance ", - "values": [ - "3 - Considering action" - ] - }, - { - "text": "Promote the rights of disabled people, inter alia, through the ratification and implementation of the Convention on the Rights of the Persons with Disabilities", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Poland will reinforce actions to implement equal treatment of women and men. A national programme for gender equality for the years 2009-2013 will be prepared, and the draft, on which consultations will be held with social partners and NGO representatives, covers the following areas of action: 1/ Equal economic independence of women and men, including equality in the labour market 2/ Reconciliation of family life and career 3/ Participation in political life and decision-making 4/ Equality in the area of health care 5/ Eradication of all forms of gender-driven violence 6/ Eradication of gender stereotypes, including in schoolbooks and school curricula 7/ Promotion of gender equality in external relations and development policy The action plan for gender equality will reinforce the achievements of the Beijing Platform for Action and relevant international conventions, such as the Convention on the Elimination of All Forms of Discrimination against Women. In 2008-2013, the Ministry of Labour and Social Policy will carry out two projects involving research, training and promotion. The first one will be devoted to the reconciliation of career and family roles of women and men, and the second will be on the socio-economic activation of women at local and regional levels. In accordance with the draft law on equal treatment, the minister responsible for family matters and equal treatment, using data and analyses from independent research and in conjunction with other relevant bodies, will prepare a national programme against discrimination. The programme will determine adequate measures to: 1/ Raise social awareness of the root causes and effects of discrimination 2/ Counteract violations of the principle of equal treatment 3/ Establish cooperation with relevant social partners involved in implementing equal treatment", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Accede to/ratify the 1961 Convention on the Reduction of Statelessness", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Take all necessary measures to effectively abolish early marriages, particularly in terms of prevention, awareness-raising, monitoring and punishment ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Consider officially establishing a moratorium on executions with a view to abolishing death penalty ", - "values": [ - "3 - Considering action" - ] - }, - { - "text": "Accede to CAT-OP and establish its national preventive mechanism accordingly, which would also facilitate a better and more effective fight against secret detention, prolonged detention without trial and cases of torture by prison officers.", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Consider the possibility of extending a standing invitation to the human rights special procedures and facilitating an institutional channel to give an answer to their communications ", - "values": [ - "3 - Considering action" - ] - }, - { - "text": "Continue enhancing the principle of public trials, and monitoring them in a way that does not contradict the independence of the judiciary and fair trials, including allowing [the public] to attend court hearings", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Consider stepping up efforts to achieve free and universal birth registration by, among other measures, harmonizing State and local Government entities' legislation pertaining to civil registration and eliminating remaining obstacles that prevent Roma women from registering births and obtaining birth certificates for their children", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Continue its efforts in supporting education and providing equal opportunities to boys and girls in the rural and urban areas ", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Continue to strengthen free education for all its people, particularly in rural areas, through "mobile schools" ", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Identify a follow up body which includes the Government, Civil Society, International Organizations and possibly representatives of agreeable donor countries, in order to fully implement the international recommendations, including those from the UPR", - "values": [ - "4 - General action" - ] - }, - { - "text": "Take further efforts against the trafficking of children and eliminate child labour by enforcing compulsory education", - "values": [ - "4 - General action" - ] - }, - { - "text": "Review and change national and local legislation with a view to reducing social, economic and ethnic divides within Liberian society", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Provide the necessary assistance to the victims of violence, including through adoption of rehabilitation and reintegration programmes ", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Continue to implement National Human Rights Road Framework", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Adopt adequate measures to improve sexual and reproductive health services for women, particularly education regarding prevention of early pregnancies and sexually transmitted diseases", - "values": [ - "4 - General action" - ] - }, - { - "text": "End the practice of incarcerating, mistreating, and applying travel bans against individuals on the basis of their political or religious beliefs", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Continue to devote efforts to the promotion of economic, social and cultural rights", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Continue to take steps to gradually bridge the gap in the standard of living between urban and rural areas ", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Revise its Law to Counter Information Technology Crimes to protect online expression and allow internet access without blocking content", - "values": [ - "3 - Considering action" - ] - }, - { - "text": "Adopt legal measures to ensure equality between men and women regarding nationality rights", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Bahrain is committed to establishing a national human rights institution at the earliest opportunity, bearing in mind the relevant United Nations resolutions and, in particular, the Paris Principles. In fact, in November 2007, the Cabinet issued a decision on the establishment of a national human rights institution. Once the institution has been established, it is expected to design a national action plan for the promotion and protection of human rights in the Kingdom.", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Take appropriate measures to prevent sexual violence against children and make more efforts to effectively prosecute the sexual exploitation of children", - "values": [ - "4 - General action" - ] - }, - { - "text": "Ratify the Optional Protocol to the Convention on the Rights of the Child on the involvement of children in armed conflict, signed in 2004, and implement the necessary domestic measures for its implementation", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Create a system of accountability to investigate and prosecute human rights violators in Nepal's military and law enforcement agencies ", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Prohibit the application of the death penalty to minors at the time of the offence", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Make every effort to eliminate domestic violence, with special attention to enacting and implementing a comprehensive legal framework addressing all forms of violence against women, sharing the international communities' concerns on the lack of laws specifically prohibiting violence against women and girls within the family ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Consider withdrawing the remaining declarations and reservations to CEDAW ", - "values": [ - "3 - Considering action" - ] - }, - { - "text": "Multiply efforts to combat child sex tourism, especially by adopting a comprehensive regulatory framework", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Continue to focus on maternal and child health ", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Remain steadfast in pursuing its policies towards gender equality, in particular through its Fair Work Act ", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Further advance in pursuing the fair distribution of national wealth", - "values": [ - "4 - General action" - ] - }, - { - "text": "Expand employment opportunities for women to cover government jobs which allow women to participate effectively in political life ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Ratify OP-CAT and CED and extend a standing invitation to all HRC Special Procedures ", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Strengthen efforts to eliminate child, early and forced marriage", - "values": [ - "4 - General action" - ] - }, - { - "text": "Make the necessary constitutional changes to ratify the Rome Statute", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Accede to the Convention against Torture and its Optional Protocol", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Take more adequate measures to prevent trafficking and strengthen the economic situation of women so as to reduce their vulnerability to exploitation and trafficking ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Improve access to public facilities for persons with disabilities", - "values": [ - "4 - General action" - ] - }, - { - "text": "Consider implementing a model of consensus-seeking and shared responsibility for good living", - "values": [ - "3 - Considering action" - ] - }, - { - "text": "Continue its policies and measures for the promotion and protection of the rights of the national minorities", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Give immediate and unfettered access to the Special Rapporteur on the situation of human rights in Iran", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Take into account gender equality in all areas, in view of providing equal access to decision-making positions within the government as well as to education, justice and land ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Support the National Human Rights Commission and encourage it to work in order to elevate its accreditation status from - B - to - A - ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Implement at the earliest possible moment the initiative to bring serious human rights abuses under Federal Law if it is not done yet.", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Allow the inclusion of all political opposition actors in the process of National Dialogue on Development", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Take concrete measures to further improve hygiene and sanitation in all parts of the country", - "values": [ - "4 - General action" - ] - }, - { - "text": "Develop a comprehensive national strategy to prevent and address all forms of violence against and ill-treatment of children", - "values": [ - "4 - General action" - ] - }, - { - "text": "Provide proper conditions and financial means for minority language schools within the framework of the education reform without compromising the general quality of education, also in this context, adopt additional measures to ensure a sufficient transitional period for the educational reform in minority schools", - "values": [ - "4 - General action" - ] - }, - { - "text": "Continue and intensify its programmes of human rights mass education", - "values": [ - "4 - General action" - ] - }, - { - "text": "Expedite the establishment of the national human rights institution and make if fully compliant with the Paris Principles", - "values": [ - "4 - General action" - ] - }, - { - "text": "Adopt norms that guarantee LGBTI people the full enjoyment of their rights on an equal footing, which simultaneously safeguard their non-criminalization and stigmatization", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Continue making efforts to reform the judicial system with a view to further improving its efficient management including measures to ensure timely due process ", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Prevent effectively infractions with a racist or xenophobic motivation, conduct investigations and bring the perpetrators to justice ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Explore the possibility of a universal basic income in place of the existing social protection system, in consultation with all the stakeholders", - "values": [ - "3 - Considering action" - ] - }, - { - "text": "Fully incorporate the major human rights treaties that the Lao People's Democratic Republic has ratified into its domestic laws and allocate adequate human and financial resources to implement the laws", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Announce a moratorium on the death penalty with a view to its eventual abolition. Pending this, take appropriate steps to reduce the application of the death penalty, observing due process of law in all judicial proceedings", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "While recognizing the considerable progress made by Tunisia in the field of women's rights and gender equality, recommends the consideration of the withdrawal of reservations to CEDAW.", - "values": [ - "3 - Considering action" - ] - }, - { - "text": "Ensure concrete implementation of international human rights standards at all levels through the adoption of policies, laws and other measures at the federal and state levels and through regular consultations with key stakeholders, including states, civil society organizations and others", - "values": [ - "4 - General action" - ] - }, - { - "text": "Strengthen its efforts to achieve the Millennium Development Goals targets in the areas of maternal and child mortality and the environment by end of 2015, which is currently lacking behind", - "values": [ - "4 - General action" - ] - }, - { - "text": "Continue promulgating laws and enhancing all policies to provide safe protection for women", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Bring national legislation on elections in line with international standards and commitments by allowing citizens to timely appeal to courts in matters relating to the exercise of the right to choose their local government and national Parliament ", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Continue to implement training and dissemination programmes on obligations and commitments on human rights to a broad range of audiences", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Impose a moratorium on executions and abolish the death penalty in all states of the United States", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Enact and enforce laws and implement programmes directed specifically at combating discrimination and promoting the rights of indigenous peoples", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Ensure women's adequate representation in high-level policy and decision making institutions", - "values": [ - "4 - General action" - ] - }, - { - "text": "Formulate more precisely, in collaboration with international organizations, its needs in terms of technical assistance in identified priority areas ", - "values": [ - "1 - Minimal action" - ] - }, - { - "text": "Investigate incidents of human trafficking and offer full assistance to child trafficking victims", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Strengthen its efforts to ensure that the laws prohibiting violence against women and children are enforced ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Adopt a holistic, long-term approach that involves phasing out "restaveks", incorporating international best practices which could include increased inspections, sensitisation of parents, children and employers, and guaranteed schooling for child domestics", - "values": [ - "4 - General action" - ] - }, - { - "text": "Take immediate steps to make domestic violence - including psychological abuse - beatings - rape, including marital rape - and sexual assault -- a criminal offence ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Take steps to ensure the prevention, investigation and prosecution of cases of violence against persons based on sexual orientation and gender identity", - "values": [ - "4 - General action" - ] - }, - { - "text": "Guarantee access to justice, due process and fair reparation mechanisms without any discrimination, in compliance with international human rights law", - "values": [ - "4 - General action" - ] - }, - { - "text": "Adopt a comprehensive legal framework on the rights of the children aiming also at completely outlawing the violence against children", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Expedite implementation of the recommendations contained in the 2007-2011 Enabling Masterplan to improve the lives of persons with disabilities ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Maintain its resolve to eliminate harmful practices against women and children", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Pursue efforts to continue to make exemplary progress with regard to the effective abolition of sexual mutilation.", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Submit regular reports to the treaty bodies, in particular to the Committee against Torture, the Committee on the Rights of the Child, the Human Rights Committee, the Committee on Economic, Social and Cultural Rights and the Committee on the Elimination of Racial Discrimination.", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Continue the positive developments in the protection of foreign workers ", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Revise its legislation related to abortion regarding victims of rape, especially victims that are minors and when the health of the woman is seriously at risk", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Further ensure that racially motivated crimes are effectively prosecuted and punished and that research to evaluate the incidence of racial discrimination is conducted with the aim of adopting targeted measures to eliminate such discrimination ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Comply with the recommendations of the Inter-American Commission on Human Rights and the Truth and Reconciliation Commission to ensure that security strategies promote prevention and are implemented by properly organized and trained civil police forces and not military forces", - "values": [ - "4 - General action" - ] - }, - { - "text": "Strengthen the framework of protection of the rights of children, in particular by adopting legislative and programmatic measures to prevent and punish sexual abuse, exploitation and violence against them, as well as measures to facilitate access to legal assistance, and medical and psychological support to victims of these crimes", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Georgia is working actively to meet all Millennium Development Goals including those on universal primary education and reduction of infant and under-5 mortality rates. Georgia will remain firmly committed to these efforts.", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Implement the United Nations Basic Principles on the Independence of the Judiciary and the Role of Lawyers ", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Ensure equal educational opportunities for all children, including girls and Dalit children, in line with the observations made by the Committee on the Elimination of Discrimination against Women and the Committee on Economic, Social and Cultural Rights", - "values": [ - "4 - General action" - ] - }, - { - "text": "Establish a moratorium on the application of the death penalty with a view to abolishing it", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Strengthen actions against discrimination, violence against women and female genital mutilation, ensure effective access to justice, and strengthen the implementation of sanctions against this type of crimes", - "values": [ - "4 - General action" - ] - }, - { - "text": "Continue with its plans and policies to ensure that economic improvements benefit socially all the population", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Strengthen social inclusion measures, in particular for persons with physical disabilities", - "values": [ - "4 - General action" - ] - }, - { - "text": "Take measures to raise the public's awareness of the negative impacts of corporal punishment on children", - "values": [ - "4 - General action" - ] - }, - { - "text": "Continue promoting the participation of citizens in decision-making processes ", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Continue to promote educational strategies that aim to improve the quality of education and increase enrolment rates, especially for women, children from rural areas and the poorest children, in order to avoid their economic exploitation and trafficking", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Identify its needs in terms of technical and financial assistance as well as capacity-building, and seek accordingly the requisite assistance from the relevant organizations ", - "values": [ - "1 - Minimal action" - ] - }, - { - "text": "Accede to the International Convention on the Protection of the Rights of All Migrant Workers and Members of Their Families and stop the practice of arresting immigrants for unspecified periods", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Issue a standing invitation to all special procedures", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Enact the Marriage and Divorce Bill ", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Amend, without delay, the 2009 Press and Publications Act, to bring it in line with international standards on press freedom and to ensure that no provisions unduly restrict the rights of freedom of expression, assembly and association, in conformity with the International Covenant on Civil and Political Rights ", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Implement a plan of action to promote and protect human rights, in cooperation with civil society and the Ombudsman's Office", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Consider, with the support of the international community, the establishment of a national human rights institution \n", - "values": [ - "3 - Considering action" - ] - }, - { - "text": "Put into practice the plan to set up an institution dealing with matters related to justice and human rights ", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Apply the measures envisaged to continue the trend towards poverty reduction in the country", - "values": [ - "4 - General action" - ] - }, - { - "text": "Work with civil society and local authorities to address domestic and sexual violence and provide the national police's Vulnerable Persons Unit with sufficient resources to maintain an adequate presence around the country", - "values": [ - "4 - General action" - ] - }, - { - "text": "Strengthen cooperation with treaty bodies and the special procedures of the Human Rights Council", - "values": [ - "4 - General action" - ] - }, - { - "text": "Take effective measures to reduce the high dropout rate in primary schools, in particular with regard to Roma children ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Step up efforts to protect the rights of migrant workers", - "values": [ - "4 - General action" - ] - }, - { - "text": "Revise legislation to allow abortion in cases of pregnancy resulting from rape or incest and in cases where continuation of the pregnancy would put the health or life of the woman or girl at risk", - "values": [ - "3 - Considering action" - ] - }, - { - "text": "Continue its efforts to promote gender equality, equal treatment and non-discrimination", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "The Comorian Government is committed to achieving self-sufficiency in food production by facilitating access to loans for fishing, animal husbandry and farming and providing the necessary expertise. Particular attention is devoted to the respective trade associations.", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Strengthen the capacity of the criminal police to deal with crimes related to child pornography on the Internet and to inform children and their parents about the safe use of the Internet ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Guarantee that civic organizations, human rights defenders, political parties and unions are able to carry out their legitimate activities without fear of reprisals, restrictions, judicial harassment and intimidation", - "values": [ - "4 - General action" - ] - }, - { - "text": "Develop programs to prevent discrimination based on sexual orientation and gender identity, to punish violence of this kind and ensure that victims receive appropriate support ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Ratify CRPD, which was signed by the Democratic People's Republic of Korea in July 2013", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Put in place a special law that will take into consideration the land rights of the pygmy communities", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Continue the positive experience of organizing human rights capacity-building programmes for law enforcement agencies", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Prioritize the implementation of human trafficking protection and rehabilitation programmes ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Pay more attention to the right to food and the general living conditions of the population", - "values": [ - "4 - General action" - ] - }, - { - "text": "Ensure that crimes and violations against human rights defenders and journalists are effectively investigated and prosecuted", - "values": [ - "4 - General action" - ] - }, - { - "text": "Continue the work according to the National Action Plan II to focus on the situation of orphans and vulnerable children to ensure their access to health care and education", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Fully implement the national strategy to prevent domestic violence, and conduct awareness raising campaigns and training on domestic violence for officials ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Fully implement the national integration strategy adopted earlier in the year", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Develop the measures in the area of combating human trafficking and this includes by expanding regional and international cooperation", - "values": [ - "4 - General action" - ] - }, - { - "text": "Carry out a national outreach campaign for the elimination of sexual and gender-based violence which includes information on the rights of victims", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Carry out an inclusive, evidence-based evaluation of the Danish antiterrorism legislation, as previously recommended", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Continue its efforts to promote the rights of workers and to reduce the rate of unemployment among Liberian young people, particularly through the revision of the draft proposed labour law called - Decent Work -", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Continue its efforts with a view to combating poverty and to make social services accessible for all the components of society", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Continue the enactment of laws and the strengthen of policies aimed at safe guarding the position of women and strengthening their roles in society", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Study the possibility of strengthening measures to eliminate all discriminatory treatment based on sexual orientation and gender identity", - "values": [ - "3 - Considering action" - ] - }, - { - "text": "Consider ratifying the Optional Protocol to the Convention on the Rights of the Child on a communications procedure to protect the child's rights ", - "values": [ - "3 - Considering action" - ] - }, - { - "text": "Establish an independent national preventive mechanism in accordance with its obligations under OP-CAT ", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Take necessary measures to eliminate the discriminatory barriers to access to HIV related health services, especially for women and girls in rural zones ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Continue policies and programs aiming at the improvement of women's participation in the political life and decision-making processes, including through measures aimed at reserving a quota in positions in the Parliament and Administrations for women, following international good practices", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Ensure the rights of victims to truth, justice, reparation and non repetition ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Pursue its efforts in the implementation of the recommendations made by the United Nations human rights mechanisms, especially recommendations accepted in the framework of the universal periodic review process", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Ratify, transpose in domestic law and fully implement the CAT, as well as set up an independent mechanism to monitor places of detention and to prevent torture ", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Recommended the decriminalization of consensual same-sex activity between adults and the adoption of measures to promote tolerance in this regard.", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Grant protection and allow journalists, as well as the general public, to exercise their freedom of speech", - "values": [ - "4 - General action" - ] - }, - { - "text": "Ensure that the new education law, with its emphasis on the Ukrainian language, does not lead to discrimination against minorities", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Pass legislation to address domestic violence ", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Consider introducing re-socialization programmes to ensure prisoners' reintegration into the community on release and to reduce the risk of their re-offending. ", - "values": [ - "3 - Considering action" - ] - }, - { - "text": "Join CAT and adapt its national legislation accordingly ", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Develop a national action plan on business and human rights in order to prevent development projects from violating the rights of traditional populations, indigenous peoples and workers and causing damage to the environment, and in order to ensure an effective remedy with meaningful consultations with the affected communities", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Continue its efforts to achieve the goals of the Operational Plan for Accelerating the Reduction of Maternal and New-born Mortality 2004-2015", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Establish an official moratorium on executions, with the aim to abolish the death penalty ", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Step up efforts to fight against torture and ill-treatment by signing the Optional Protocol to the Convention against Torture and other Cruel, Inhuman or Degrading Treatment or Punishment and establishing an independent national mechanism of prevention with sufficient resources ", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Reduce the high rate of maternal mortality and improve access to maternal health information and services", - "values": [ - "4 - General action" - ] - }, - { - "text": "Cooperate with the Special Envoy of the Secretary-General for Syria in order to immediately establish a negotiated and sustainable ceasefire in Aleppo", - "values": [ - "4 - General action" - ] - }, - { - "text": "That the country visit by the Special Rapporteur on Torture is realized in the near future ", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Intensify, as a matter of priority, efforts to effectively implement the standards of protection set out in CEDAW", - "values": [ - "4 - General action" - ] - }, - { - "text": "Increase its ODA from the current 0.33% to 0.7% of the GDP", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Ensure prompt, independent and thorough investigations of all allegations of torture and ill treatment allegedly committed by law enforcement officials and punish those responsible ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Continue to seek support to address the issue of internally displaced persons", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Abolish the death penalty, and in an intermediate phase, adopt an immediate moratorium on executions", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Consider ratifying those international human rights instruments to which it is not yet a party", - "values": [ - "3 - Considering action" - ] - }, - { - "text": "Pass and implement legislation to address violence against women", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Further promote the development of education and protect people\u2019s right to education", - "values": [ - "4 - General action" - ] - }, - { - "text": "Repeal all provisions criminalizing same-sex relations between consenting adults", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Ratify ILO Convention No. 189 concerning decent work for female and male domestic workers ", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Continue its reform process with all possible financial and technical assistance from the regional and international community and relevant agencies for the political, economic and social uplift of its citizens ", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Make efficient and independent investigations of allegations of torture and ill treatment at earliest with a view to bringing perpetrators to justice ", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Continue efforts towards the universalization of birth registration in a progressive manner and the consolidation of the right to an identity by prioritizing minorities", - "values": [ - "4 - General action" - ] - }, - { - "text": "Eliminate capital punishment and corporal punishment", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Take appropriate and efficient measures with the view to ending the practice of female genital mutilation ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Further increase efforts, including through legislative measures, to end discrimination against women", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "To share with the public sector and with civil society the recommendations and voluntary commitments from the second universal periodic review", - "values": [ - "1 - Minimal action" - ] - }, - { - "text": "Follow up on the recommendations set out in the March 2010 report of the OSCE Office for Democratic Institutions and Human Rights regarding shortcomings in Armenia's justice system ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Further carry out public-awareness campaigns on human rights, in particular with respect to the empowerment of women rights ", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Cooperate with the special procedures of the United Nations in issuing a standing invitation and facilitating their visits ", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Continue to carry out comprehensive reviews and studies on its existing legislation and level of preparedness, moving towards accession to international human rights instruments as it deems appropriate in the context of its institutional and legal framework, resources and national priorities", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Apply in its periodic development plans a policy on poverty reduction aimed at social and economic justice", - "values": [ - "4 - General action" - ] - }, - { - "text": "That the current sponsorship system, - kafala', be revoked and replaced with regulations in accordance with international standards", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Adapt domestic legislation to the international normative framework", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Go beyond recognizing equality of women in its legislation to ensure that this equality is de facto recognized.", - "values": [ - "4 - General action" - ] - }, - { - "text": "Amend relevant national laws and regulations by 1 October 2014, as stipulated in the Constitution", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Implement the recommendations of the Special Rapporteur on freedom of religion or belief to Israel to issue non-selective rules for the protection and preservation of religious sites and to designate holy sites on a non discriminatory basis", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Pursue its cooperation with national councils and civil society organizations", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Put an end to the military attacks against the civilian population, the practice of targeted killings, and the torture and ill treatment of Palestinian prisoners", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Ratify and implement the CED", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Take steps to promote institutions and human rights bodies and to search for the support of the international community.", - "values": [ - "4 - General action" - ] - }, - { - "text": "Continue to push forward its human rights cause in the light of its national conditions, especially by giving priority to economic development, poverty alleviation and protection of the rights of vulnerable groups ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Seek from the international community, especially United Nations organs and programmes, the necessary technical and financial assistance for the implementation of periodic review recommendations ", - "values": [ - "1 - Minimal action" - ] - }, - { - "text": "Take effective measures to safeguard the rights of prisoners and improve the living conditions for detainees", - "values": [ - "4 - General action" - ] - }, - { - "text": "Continue its efforts for ratification of ICERD and CAT", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Establish an independent body responsible for the appointment, promotion, transfer and discharge of judges ", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Continue efforts with regard steps and measures taking to enhance economic and social rights that we value greatly ", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Examine the possibility of ratifying the International Convention on the Protection of the Rights of All Migrant Workers and Members of Their Families (ICRMW), the International Convention for the Protection of All Persons from Enforced Disappearance and the Optional Protocol to the International Convention on the Elimination of All Forms of Discrimination against Women ", - "values": [ - "3 - Considering action" - ] - }, - { - "text": "Harmonize federal and state laws with international human rights instruments, in order to ensure their effective implementation, at federal and state levels ", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Ratify the Optional Protocols to ICCPR and the Optional Protocol to the Convention on the Rights of Persons with Disabilities", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Ensure that women can have access to lawful abortions by creating clear, legally binding regulations for the implementation of the 1993 Family Planning Act", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Review the compliance of national legislation with the provisions of ICCPR", - "values": [ - "3 - Considering action" - ] - }, - { - "text": "Ratify without delay the Rome Statute of the International Criminal Court", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Strengthen efforts to prevent and combat all forms of discrimination and violence against women and children by means of reinforcing the relevant legal framework, running awareness campaigns and ensuring that perpetrators are brought to justice and victims receive appropriate help", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Adopt a National Action Plan to implement the Guiding Principles on Business and Human Rights", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Provide the National Commission for Human Rights with human and material resources ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Comply with international humanitarian law provisions, in particular with the IV Geneva Convention", - "values": [ - "4 - General action" - ] - }, - { - "text": "Take all necessary measures aimed at the early ratification of the Optional Protocol on the involvement of children in armed conflict", - "values": [ - "4 - General action" - ] - }, - { - "text": "Continue developing its juvenile justice system in terms of both legislation and practice. In particular, ensure that there are adequately trained professionals and adequate infrastructure and that deprivation of liberty is only used as a measure of last resort in the case of under-aged persons.", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Continue to devote great attention to the effective implementation of the existing legislative framework on the use of the minority languages", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Send an open invitation to all Special Procedures, rapporteurs of the Human Rights Council, and the ILO ", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Further strengthen the capacity of the National Human Rights Commission ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Continue initiatives aimed at strengthening economic, social and cultural rights, contributing to sustainable development and transition to more developed economy", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Ensure the effective implementation of the Domestic Violence Act and the Sexual Offences Act, specially by promoting access to justice", - "values": [ - "4 - General action" - ] - }, - { - "text": "Evaluate the effectiveness of implementation of laws safeguarding women's rights and providing protection against domestic and gender-based violence and ensure that measures such as protection orders and the punishment for their breach or swift access of victims to justice are systematically applied and that shelters for victims of domestic violence, including in rural areas, are readily available", - "values": [ - "3 - Considering action" - ] - }, - { - "text": "Take effective measures to prevent and combat trafficking in women and children and to provide an adequate legal framework to protect victims and prosecute traffickers", - "values": [ - "4 - General action" - ] - }, - { - "text": "Adopt measures in order to appropriately receive children and adolescents deported from another country", - "values": [ - "4 - General action" - ] - }, - { - "text": "Increase the access of the rural population to the formal justice system", - "values": [ - "4 - General action" - ] - }, - { - "text": "Ratify and implement ICCPR and ICESCR as soon as possible ", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Take necessary measures to ensure that the collection and maintenance of data for criminal purposes do not entail massive surveillance of innocent persons", - "values": [ - "4 - General action" - ] - }, - { - "text": "Ensure that minors are protected in prison, including by separating them from adults", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Ensure the effective implementation of the national programme for combatting violence against women", - "values": [ - "4 - General action" - ] - }, - { - "text": "Develop ways to reduce smuggling of migrants and human trafficking across maritime borders ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Step up its efforts to carry out the second phase of its Education for All programmes to focus on providing affordable and quality secondary education in the country", - "values": [ - "4 - General action" - ] - }, - { - "text": "Increase public awareness campaigns against female genital mutilation - FGM -", - "values": [ - "4 - General action" - ] - }, - { - "text": "Increase the efforts to improve the social status of women in society and enhance political and social rights ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Implement all possible efforts to combat ill-treatment against foreign workers and to offer, through the Labour Code, adequate protection to all workers in Jordan", - "values": [ - "4 - General action" - ] - }, - { - "text": "Further step up its efforts to investigate and prosecute effectively war crimes and strengthen the capacity of domestic courts and witness protection mechanisms in this regards", - "values": [ - "4 - General action" - ] - }, - { - "text": "Intensify its efforts to protect women from harmful traditional practices, such as female genital mutilations ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Include in the relevant legal framework the definition of the crimes of sale of children and child pornography ", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Extend a standing invitation to all special procedure mandate holders of the Human Rights Council, as previously recommended", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Suitably addresses the disproportionate impact of HIV/AIDS on women and girls by increasing its efforts to further reduce the number of women and girls affected by the HIV pandemic and to increase prevention of mother-to-child transmission of HIV and AIDS", - "values": [ - "4 - General action" - ] - }, - { - "text": "Promptly, impartially and thoroughly investigate all reports of acts of torture and ill-treatment, and torture and forced disappearance perpetrated by agents of the State, ensuring that the military criminal justice system does not carry out these investigations, and take further efforts to ensure that those who report acts of torture or ill-treatment are protected from intimidation and reprisals and to implement the recommendations of the Committee against Torture made in this regard.", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Strengthen the Minor's Protection Unit", - "values": [ - "4 - General action" - ] - }, - { - "text": "Fulfil its obligations in the field of human rights and step up its efforts with respect to the rights of people from vulnerable groups, including persons in detention, women and children.", - "values": [ - "4 - General action" - ] - }, - { - "text": "Conduct awareness-raising campaigns against the discrimination of persons with albinism", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Ensure that victims of discrimination and violence based on sexual orientation and gender identity have access to rehabilitation and remedy and that all perpetrators are punished", - "values": [ - "4 - General action" - ] - }, - { - "text": "Improve the working conditions and involvement of local and international NGOs ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Proceed to release immediately and unconditionally all political prisoners", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Cease immediately the practice of not segregating women, children and men in prison facilities ", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Advance in the comprehensive implementation of the new Constitution, consistent with the protection of human rights", - "values": [ - "4 - General action" - ] - }, - { - "text": "Adhere to the National Action Plan for Children and programme for the elimination of child labour", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Repeal all provisions which criminalize sodomy and other sexual activities between consenting adults ", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Commit to improving the situation of indigenous children, in particular as concerns ill-treatment, trafficking, child labour, illegal adoptions and difficulty in accessing schools and health-care services.", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Ensure all persons who are held in custody have the benefit, from the very outset of their deprivation of liberty, of all the fundamental legal safeguards", - "values": [ - "4 - General action" - ] - }, - { - "text": "Continue strengthening the legal framework, including by fully implementing the ratified international human rights instruments, including CEDAW and CRPD", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Continue its efforts of implementing the recommendations of the National Plan of Action", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Increase its Official Development Aid with a view to reaching the UN target of 0.7 per cent", - "values": [ - "4 - General action" - ] - }, - { - "text": "Take all necessary measures to protect freedom of expression, including by ensuring that journalists and members of the political opposition are able to express their views without fear of intimidation, and by investigating and bringing to justice those responsible for violence directed at journalists", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Continue its commendable efforts to empower women in social, political, economic and public life, including by continuing its positive measures to improve women's employment", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Further strengthen activities towards inclusive education of children with disabilities ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Repeal all legal provisions that discriminate against women", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Strengthen the independence of the national human rights institution", - "values": [ - "4 - General action" - ] - }, - { - "text": "Continue efforts to expand the right to education, especially in connection with the education of children", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Continue its efforts to improve legislation and policies and to create institutional mechanisms to combat all forms of discrimination.", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Consider the possibility of establishing a moratorium on the carrying out of death sentences and evaluate the possibility of legally abolishing the death penalty", - "values": [ - "3 - Considering action" - ] - }, - { - "text": "Amend the Press and Publication Act by repealing provisions that curtail journalists' rights and prescribe excessive penalties ", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Ensure effective implementation of enacted legislation affecting women's human rights, and expedite the enactment of the Marriage and Divorce Bill, the Sexual Offences Bill and a witness protection law", - "values": [ - "4 - General action" - ] - }, - { - "text": "Invite the Special Rapporteur on Torture in order to examine the situation in all of Iraq's detention facilities and formulate recommendations for appropriate reform", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Ensure through the Labour Code, as well as in practice, the protection of the rights of all workers in Jordan, regardless of their origin", - "values": [ - "4 - General action" - ] - }, - { - "text": "Abstain from political interference in judicial proceedings", - "values": [ - "4 - General action" - ] - }, - { - "text": "Adopt a national strategy to combat trafficking in persons", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Ensure that its housing policy is drafted and implemented in accordance with international human rights standards, including access to an effective remedy and adequate compensation, and that the necessary assistance is provided to all evicted persons", - "values": [ - "4 - General action" - ] - }, - { - "text": "Conduct gender competence and domestic violence law training of its law enforcement agencies, including the police, prosecutors and judiciary", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "As a matter of priority, review its criminal law provisions and enact legislation prohibiting all forms of corporal punishment of children in all settings ", - "values": [ - "3 - Considering action" - ] - }, - { - "text": "Ensure that all perpetrators of trafficking in persons are investigated and prosecuted, and provide adequate protection, reparation and compensation and rehabilitation to the victims", - "values": [ - "4 - General action" - ] - }, - { - "text": "Further increase investment so as to improve education in rural areas", - "values": [ - "4 - General action" - ] - }, - { - "text": "Improve the rights of women, ensuring their full, equal and effective participation in conflict resolution and decision-making, including the Constitution drafting process, and tackling sexual violence, bringing perpetrators to justice", - "values": [ - "4 - General action" - ] - }, - { - "text": "Implement, fully and without delay, the law against \u201chonour\u201c crimes, which resolved an ambiguity that had allowed perpetrators to be pardoned by relatives of the victim", - "values": [ - "4 - General action" - ] - }, - { - "text": "Swiftly implement the provisions in the new Criminal Code, aiming at the elimination of the practice of female genital mutilation", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Ratify the Optional Protocol to CEDAW and withdraw reservations to article 2 (f) and (g) of CEDAW ", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Adopt legislation on comprehensive protection of children's and adolescents' rights", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Devote adequate resources, in particular financial resources and personnel, to combating femicide and all forms of violence against women", - "values": [ - "4 - General action" - ] - }, - { - "text": "Enact and implement outstanding bills and policies to fulfil its obligations under international human rights instruments to which it is a party ", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Undertake further steps to eradicate child prostitution and child labour", - "values": [ - "4 - General action" - ] - }, - { - "text": "Strengthen efforts to provide preschool education for Roma children as a prerequisite for their equal access to further education without discrimination", - "values": [ - "4 - General action" - ] - }, - { - "text": "Publicly condemn all forms of violence and discrimination based on sexual orientation, and investigate and prosecute all reported attacks and threats against individuals based on their sexual orientation ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Strengthen policies and initiatives to promote tolerance towards and integration of ethnic minorities in all spheres of society", - "values": [ - "4 - General action" - ] - }, - { - "text": "Continue and strengthen the activities of the Extraordinary Chambers in the area of the right to truth and reconciliation ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Promote the adoption, on a priority basis, of the draft bill for the prevention and elimination of all forms of discrimination and to consider favourably the criminalization of racial discrimination, in keeping with recommendations made by the Committee on the Elimination of Racial Discrimination and other international mechanisms", - "values": [ - "4 - General action" - ] - }, - { - "text": "Ratify the American Convention on Human Rights ", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Formulate a national plan to combat violence against children, including corporal punishment and sexual abuse, which includes considerations on prevention, care and reparation ", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Issue a standing invitation to all mandate holders of the special procedures", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Continue to implement programmes and measures to improve the enjoyment of the right to education and the right to health ", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Fully comply with the principles and rights enshrined in the Universal Declaration of Human Rights, the two international covenants, the CRC and CEDAW, to which it is a party ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Continue and intensify the use of best practices in the area of human rights with regard to Spain's migration policies ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Take all necessary measures to prevent extrajudicial killings and enforced disappearances and carry out impartial investigations to hold perpetrators accountable", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Further consolidate its efforts to combat trafficking in persons ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Continue seeking official development assistance as well as technical assistance from development partners with a view to finding solutions to the identified challenges hindering the enjoyment of human rights ", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Accept the request for a visit made by the Special Rapporteur on the question of torture in March 2014", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Continue to develop measures to improve the situation in prisons and the training of prison officials", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Strengthen the adoption of measures aimed at ensuring greater education coverage ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Continue efforts to ensure enjoyment by all persons of economic, social and cultural rights with a view to achieving the MDGs ", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Pursue its efforts in incorporating sustainable environmental development into its policies, considering the impact of natural disaster and degradation of natural resources on human rights despite all existing challenges", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Carry out new awareness-raising programmes within the Ministry of Women on violence against women, with short-term objectives and tangible indicators, and providing information about the fact that such actions are to be punished \n", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Step up its social integration policies and education programmes to eradicate the current situation of children living on the street who are victims of sexual exploitation and physical abuse", - "values": [ - "4 - General action" - ] - }, - { - "text": "Continue making progress in the implementation of the Indigenous Advancement Strategy to promote better opportunities in the areas of education, health and employment for indigenous communities", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "End impunity for crimes of sexual violence, establish effective mechanisms to prevent sexual violence, and ensure that victims have access to appropriate health care, in line with Security Council resolutions 1325 2000 and 1820 2008 and the Government's international obligations at large. ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Ensure the immediate and unconditional release of all political prisoners, human rights defenders and detainees and make incommunicado detentions illegal", - "values": [ - "4 - General action" - ] - }, - { - "text": "Put in place stronger mechanisms to protect women and girls against gender-based violence and provide redress to victims ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Criminalize trafficking in children and sexual exploitation of children, in line with international standards.", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Continue with its efforts to tackle corruption and to expedite the establishment of a High Court to deal with serous corruption cases", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Continue its policy and measures to guarantee progress in achieving health-related goals of the MDGs", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "(1) To offer better care to victims. (2) To train and graduate 1,000 community outreach workers to deal with mines every year. (3) To train 10 new 40-member humanitarian demining teams. (4) To set up an emergency response team. (5) To adapt policy to new challenges.(6) To destroy the remaining 26 minefields by 1 March 2011.", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Study the possibility of signing and ratifying the following international instruments: ICCPR, ICESCR, CAT and the International Convention for the Protection of All Persons from Enforced Disappearance (CED) ", - "values": [ - "3 - Considering action" - ] - }, - { - "text": "Continue to integrate human rights approaches into its policies and education at various levels ", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Extend a standing invitation to special procedures ", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Consider the possibility of ratifying the international Convention on the Protection of the Rights of All Migrant Workers and Members of Their Families ", - "values": [ - "3 - Considering action" - ] - }, - { - "text": "Ensure that rural women participate in the decision-making process and have equal access to health services at the primary care level", - "values": [ - "4 - General action" - ] - }, - { - "text": "Adopt measures to combat and punish acts of violence against women, as well as to ensure the inclusion of women in different areas of society", - "values": [ - "4 - General action" - ] - }, - { - "text": "Prepare a draft amendment to the Foreigners Act prohibiting the detention of families with minors and unaccompanied minors for the purposes of return and asylum proceedings", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Make all possible efforts to combat HIV-AIDS and to prevent the mother-to-child transmission of the virus, and request technical and financial assistance from international agencies, including WHO and UNICEF ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Ensure effective free education for all children, and ensure equitable access to education", - "values": [ - "4 - General action" - ] - }, - { - "text": "Release or bring before a court all persons detained without a charge and respect international standards in the treatment of detainees ", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Implement effectively the United Nations Declaration on the Rights of Indigenous Peoples, and establish mechanisms for its full implementation in full cooperation with the Sami people ", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Continue its efforts to raise the minimum age of criminal responsibility", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Strengthen efforts to protect, in particular, children with disabilities against any form of discrimination, including by envisaging awareness-raising campaigns.", - "values": [ - "4 - General action" - ] - }, - { - "text": "Continue implementing the policy in the area of the improvement of the rights and opportunities of women", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Recommended the legislative sanctioning of marital rape", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Strengthen efforts to enforce the criminalization of female genital mutilation ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Accelerate the adoption of a draft bill on alternative measures to detention as a solution to prison overcrowding ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Implement the Action Plan of the National Human Rights Roadmap", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Implement public policies so as to protect the work of human rights defenders in line with international standards, and implement measures aimed at the effective reduction of attacks and at their independent and effective investigation", - "values": [ - "4 - General action" - ] - }, - { - "text": "Repeal article 92(6) of the Military Criminal Act prohibiting and punishing consensual sexual activity between people of the same sex in the military", - "values": [ - "4 - General action" - ] - }, - { - "text": "Take all necessary measures for the protection of journalists and human rights defenders, in particular through the prosecution of the authors of intimidation or violence against them, and by ensuring the independence of their actions ", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Ratify promptly the Convention against Torture and its Optional Protocol, and the International Convention on the Protection of the Rights of All Migrant Workers and Members of Their Families", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Amend the Act on Equal Treatment", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Prohibit all forms of violence against women by passing and enforcing legislation providing for prevention, the adequate punishment of perpetrators, protection and support for victims, including legal remedies and paying special attention to the protection of minority women", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Increase cooperation with the relevant United Nations bodies and other regional and international organizations in its efforts to mitigate the harms from environmental degradation and adapt to the effects of climate change on its citizens ", - "values": [ - "1 - Minimal action" - ] - }, - { - "text": "Submit periodic reports, which have suffered some delays, to treaty bodies, and seek technical assistance from the OHCHR in this regard if deemed necessary", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Continue to give political attention, commitment and concrete action on the issue of combating any discriminatory practices against the Roma minority", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Amend or repeal legislation that applies the death penalty to nonserious crimes, as recommended by the Human Rights Committee, including the exercise of the right to freedom of expression or opinion or the establishment of groups, organizations or associations based on a political ideology contrary to the principles of the 1969 revolution - articles 206 and 207 of the Penal Code - ", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Ratify and strictly implement the Arms Trade Treaty without delay, giving particular attention to implementing measures to prevent the diversion and illicit trafficking of all types of conventional arms", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Promote and protect the rights of the peasants and other persons working in rural areas ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Ratify all core human rights treaties as soon as possible ", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Ratify ICRMW", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "(1) Completing the policy-formulation process in conjunction with the indigenous authorities (2) Entrenching prior consultation procedures in accordance with the most recent constitutional jurisprudence. (3) Improving the communication channels established between the Government and the ethnic authorities,16 and relations at all levels. (4) Strengthening the indigenous and Afro-Colombian authorities. (5) Ensuring that the indigenous and Afro-Colombian communities really do have a right to land. (6) Combating the poverty that affects the indigenous and Afro-Colombian communities. (7) Defining mechanisms for coordination between the ordinary and indigenous court systems.", - "values": [ - "4 - General action" - ] - }, - { - "text": "Enact a unified and comprehensive law on child rights", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Prevent and combat xenophobic statements and acts targeting migrants, asylum seekers and refugees", - "values": [ - "4 - General action" - ] - }, - { - "text": "Give full effect to recommendations 38 and 39 of the Committee on the Elimination of Racial Discrimination regarding racially motivated offences ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Give the National Programme for the Prevention of Domestic Violence and Provision of Assistance to Victims all necessary resources, in particular regarding full access to the competent judiciary institutions", - "values": [ - "4 - General action" - ] - }, - { - "text": "Seek the cooperation of UN agencies, such as ILO, to combat child labour", - "values": [ - "1 - Minimal action" - ] - }, - { - "text": "Consider the possibility of expressing its consent to accede the ICRMW ", - "values": [ - "3 - Considering action" - ] - }, - { - "text": "Respect the rights of ethnic and religious minorities and take the necessary measures to prevent and halt persecution, forced eviction and confiscation of their property ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Continue to build the capacity of health and social services to provide care to children with disabilities ", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Consider the ratification or adhesion to the Optional Protocol to the Convention on the Rights of the Child on a communications procedure", - "values": [ - "3 - Considering action" - ] - }, - { - "text": "Take appropriate measures to consider and implement the recommendations of the Special Rapporteur on the situation of human rights in Belarus", - "values": [ - "4 - General action" - ] - }, - { - "text": "Consider expediting the adoption process of the Kenyan National Policy and Action Plan for human rights ", - "values": [ - "3 - Considering action" - ] - }, - { - "text": "Analyse the possibility of ratifying the main human rights instruments, in particular the International Covenant on Economic, Social and Cultural Rights, the International Covenant on Civil and Political Rights, the International Convention on the Elimination of All Forms of Racial Discrimination, the Convention against Torture and Other Cruel, Inhuman or Degrading Treatment or Punishment, and the International Convention for the Protection of All Persons from Enforced Disappearance", - "values": [ - "3 - Considering action" - ] - }, - { - "text": "Take necessary measures regarding discrimination against women, refugees, migrants and women from ethnic groups, and to guarantee the integration of all women victims of trafficking", - "values": [ - "4 - General action" - ] - }, - { - "text": "Ratify the Migrant Convention and the European Charter for Regional or Minority Languages", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Conduct a survey on child mortality in order to get updated and reliable data", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Speed up the process of identification of discriminatory provisions against women ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Continue adopting measures to strength intercultural education and human rights education ", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Advance in the promotion of the status of women in society in order to achieve full equality in rights between women and men in all matters", - "values": [ - "4 - General action" - ] - }, - { - "text": "Extend invitations to the special rapporteurs on torture and on the independence of judges and lawyers", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Follow up its Constitutional Court decision that urges the legislative power to reform the legislation concerning access of indigenous people to radio frequencies to promote, develop and diffuse their languages, traditions and other cultural expression and reform the law on radio communication in order to guarantee the proper and free functioning of local radios", - "values": [ - "4 - General action" - ] - }, - { - "text": "Become a party to CRPD as soon as it completes the work necessary for ratifying the Convention, which is currently being undertaken by the National Committee led by the Department of Community Development ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Strengthen the measures to eliminate all discriminatory treatment based on sexual orientation or gender identity", - "values": [ - "4 - General action" - ] - }, - { - "text": "Intensify efforts to provide appropriate vocational training and employment for youths", - "values": [ - "4 - General action" - ] - }, - { - "text": "Ensure indigenous peoples adequate consultation as well as full participation in all legislative or administrative measures affecting them ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Further strengthen the promotion of the rights of women and girls ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Continue the current efforts to ensure that all children, without discrimination, enjoy the right to education", - "values": [ - "4 - General action" - ] - }, - { - "text": "Step up efforts to combat trafficking in persons, including training for officials, criminal prosecution of perpetrators as well as developing measures for the protection and rehabilitation of the victims of trafficking in persons ", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Prevent discrimination of social minorities, such as Roma people and LGBT persons and adopt a comprehensive anti-discrimination law", - "values": [ - "4 - General action" - ] - }, - { - "text": "Adopt, without delay, a new legislation that fully incorporates the principle of equality of women and men as well as a prohibition of discrimination on the basis of gender in the public and private spheres", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Canada commits to working on identifying gaps in available data in order to better assess and report on its international human rights obligations.", - "values": [ - "4 - General action" - ] - }, - { - "text": "Make further efforts to advance gender parity and protect the rights and freedoms of women and girls, including by considering ways to address economic discrimination", - "values": [ - "4 - General action" - ] - }, - { - "text": "Continue its positive work in combating racial discrimination and related intolerance", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Promulgate and implement specific laws to punish violence against women ", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Further strengthen the capacity of the Ethiopian Human Rights Commission (EHRC)", - "values": [ - "4 - General action" - ] - }, - { - "text": "Continue its initiatives in the promotion and protection of the people's right to education", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Modify the legislation which restrains freedom of expression and peaceful assembly", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Continue its efforts towards socioeconomic development and poverty eradication", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Promote the measures and reforms to consolidate the rule of law and national human rights protection mechanisms ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Develop a comprehensive and forgery-proof land registry to enable indigenous communities to hold legal titles to their ancestral land, as previously recommended", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Ensure access to sexual and reproductive health services for adolescences", - "values": [ - "4 - General action" - ] - }, - { - "text": "Strengthen its efforts to promote gender equality and the rights of women ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Abolish the death penalty as soon as possible, and, in the meantime, establish an immediate moratorium on executions ", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Continue efforts to guarantee the right to food for the Senegalese people, consider requesting technical assistance from OHCHR on the right to food ", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Establish a governmental authority to support and advise single mothers and their children", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Review legislation and registration according to which NGOs that accept foreign funding must register and identify themselves as "foreign agents" ", - "values": [ - "3 - Considering action" - ] - }, - { - "text": "Intensify its efforts to close the gender gap in education, in particular at higher levels, for which\nit is necessary to have international cooperation and technical assistance so that it can face up to the\nshortage of teachers and infrastructure needs in order to eradicate illiteracy and achieve full access to\nscientific knowledge for its population by using modern teaching methods ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Ratify outstanding core human rights instruments, including the ICCPR", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Enact legislation to fully operationalize the Human Rights and Public Administration Commission, to provide it adequate funding, and to clarify its mandate to civil society and the international community", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Take firm action to eliminate corruption and impunity in the judicial, security and executive branches", - "values": [ - "4 - General action" - ] - }, - { - "text": "Continue the efforts to reinforce the human rights institutions and the harmonization of the national legislation with the human rights conventions, to which the country is a party", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Pursue defending the sovereignty and the territorial integrity of the country without foreign interferences", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Review and amend the relevant legislation and practice in order to strengthen the independence of justice, ensure merit-based appointment of judges and protect their work against political interference", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Promote, through policies and legal norms, the accountability of the police and administrative authorities resorting to the use of force during peaceful demonstrations ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Adopt comprehensive anti-discrimination legislation, including on discrimination based on sexual orientation or gender identity, and repeal any laws which result in, or are likely to result in, the discrimination, prosecution and punishment of people solely for their sexual orientation or gender identity", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Endeavour to submit its overdue reports, some of which have been overdue since 2003, to the treaty bodies on the application of the conventions it has ratified", - "values": [ - "4 - General action" - ] - }, - { - "text": "Fully implement adopted legal measures against discrimination based on sexual orientation and gender identity", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Continue its efforts in adopting development policies which meet the needs of the people and improve the standard of living of the citizens in order to protect and promote human rights", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Take appropriate legal and administrative measures to ensure equal opportunities to access decent work for people with disabilities", - "values": [ - "4 - General action" - ] - }, - { - "text": "Adopt a national action plan against racism", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Ratify other important international human rights instruments, such as CRPD", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Strengthen and seek further assistance from the international community to support its efforts towards development and in effectively implementing the recommendations arising from the UPR", - "values": [ - "1 - Minimal action" - ] - }, - { - "text": "Accede to the international treaties on human rights and ratify CAT", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Ensure continuous progress in the area of the right to education, including the inclusion of human rights education in the curriculum ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Incorporate the Convention on the Elimination of All Forms of Discrimination against Women into national legislation and abolish all discriminatory provisions, in particular with respect to the Personal Status Code in terms of family relations and child marriage", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Continue efforts to ensure vulnerable children and adolescents in rural communities access quality education and health-care services", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Keep up with the environment of freedom of publication and freedom of expression", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Take steps with regard to children, particularly with regard to sexual exploitation and all forms of discrimination, including children with albinism", - "values": [ - "4 - General action" - ] - }, - { - "text": "Actively pursue efforts to prevent trafficking, including through information campaigns for the general public, including children, aimed at promoting awareness of the dangers associated with all forms of trafficking and to ensure protection and assistance for the victims of trafficking, with full respect for their human rights ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Allocate additional resources in order to further strengthen the work of the Ombudsman's Office ", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Investigate all cases of police brutality and torture, e.g., death of Mr. Pema Tsepak in Chambo in January this year", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Take urgent action to release all prisoners who have been detained for exercising freedom of expression", - "values": [ - "4 - General action" - ] - }, - { - "text": "Continue its ongoing cooperation with the international human rights system of the United Nations", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Consolidate its efforts in the implementation of its national priorities, including in the spheres of education, health and social services", - "values": [ - "4 - General action" - ] - }, - { - "text": "Prohibit all corporal punishment of children in all settings and repeal the right to punish children "appropriately and moderately" in the Family Law", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Step up its efforts through providing mandatory human rights education and training for law enforcement personnel, the judiciary, prison guards and other relevant public officials", - "values": [ - "4 - General action" - ] - }, - { - "text": "Take the necessary steps with a view to formally abolishing the death penalty", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Make efforts to ensure that all Iraqis, including religious minorities, can participate in elections that are safe, fair and free of intimidation and violence", - "values": [ - "4 - General action" - ] - }, - { - "text": "Intensify efforts to provide public education and training on the human trafficking law", - "values": [ - "4 - General action" - ] - }, - { - "text": "Adopt further measures to ensure universal primary education, free of charge ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Put an end to forced labour practices ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Strengthen the system of social insurance and the pension system ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Adopt public policies aimed at the full integration of persons of African descent that incorporate measures to prevent stigmatization, racial discrimination and xenophobia", - "values": [ - "4 - General action" - ] - }, - { - "text": "Establish a standing interministerial committee to improve coordination in relation to human rights reporting and follow up on the implementation of recommendations", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Adopt measures aiming to combat domestic violence", - "values": [ - "4 - General action" - ] - }, - { - "text": "Make further efforts in order to eliminate all forms of discrimination and the abuse of authority by police officers against migrants and foreigners, especially the community of Vietnamese origin people in the United States", - "values": [ - "4 - General action" - ] - }, - { - "text": "Continue its engagement by ratifying other international instruments, in particular the International Convention on the Elimination of All Forms of Racial Discrimination", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Continue efforts undertaken to ensure ratification of CPED, as well as the main international human rights instruments, to which the country is not yet a party ", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Consider the possibility of ratifying CRPD and its Optional Protocol, CED, OP-CESCR", - "values": [ - "3 - Considering action" - ] - }, - { - "text": "Allocate the necessary resources to the campaigns, plans and programs which were launched with the aim of strengthening the strife of preventing violence against women ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Align the national legislation with international law", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Adopt all necessary measures to ensure the right to life and protect individuals.", - "values": [ - "4 - General action" - ] - }, - { - "text": "Comply without exception with the principle of non-refoulement when people are in danger of being tortured or ill-treated", - "values": [ - "4 - General action" - ] - }, - { - "text": "Consider ratifying the Optional Protocols to the CRC.", - "values": [ - "3 - Considering action" - ] - }, - { - "text": "Improve its cooperation with United Nations human rights mechanisms, in particular the Special Rapporteur on the situation of human rights and other special procedures, and allow access ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Remedy the lack of coordination between the main human rights institutions", - "values": [ - "4 - General action" - ] - }, - { - "text": "Implementation of all recommendations of international committees concerning the promotion of human rights in practice", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Additional reform of the Penal Code to raise the age of sexual consent and prohibit spousal rape", - "values": [ - "4 - General action" - ] - }, - { - "text": "Consider adopting measures to counter discrimination against the descendants of slaves and the persistence of the caste system", - "values": [ - "3 - Considering action" - ] - }, - { - "text": "Incorporate robust provisions for the protection of human rights in the new Constitution, including articles on the prevention of discrimination and protection of minorities ", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Consider ratifying those international human rights instruments that the United Kingdom of Great Britain and Northern Ireland has not yet ratified", - "values": [ - "3 - Considering action" - ] - }, - { - "text": "Grant unfettered access to humanitarian assistance, including in besieged and hard-to-reach areas", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Ensure that all cases of alleged torture are promptly investigated by an independent body, perpetrators are brought to justice and victims of torture are adequately compensated ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Raise awareness of the justiciability of economic, social and cultural rights, including through awareness-raising campaigns and the inclusion of human rights in school curricula at all levels", - "values": [ - "4 - General action" - ] - }, - { - "text": "Revise the 2009 Primary School Reform Bills, so that mainstream schools can better accommodate the needs of pupils with a disability ", - "values": [ - "3 - Considering action" - ] - }, - { - "text": "Continue focusing efforts to improve the situation of women, especially in rural areas where many head families, with regard to access to educational services, justice and credit mechanisms ", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Ensure that the processing of personal data be conducted in compliance with national and international standards and obligations, and that any violations be investigated and redress provided to victims", - "values": [ - "4 - General action" - ] - }, - { - "text": "Take effective measures to further implement the National Action Plan on Gender-based Violence", - "values": [ - "4 - General action" - ] - }, - { - "text": "Ratify the Second Optional Protocol to the International Covenant on Civil and Political Rights, aiming at the abolition of the death penalty, as well as the Optional Protocol to the Convention on the Elimination of All Forms of Discrimination against Women", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Conduct further steps towards the ratification of the Optional Protocol to the Convention on the Rights of the Child on a communications procedure", - "values": [ - "4 - General action" - ] - }, - { - "text": "Conduct thorough investigations into all allegations of extrajudicial executions, and ensure that those responsible are punished in accordance with the seriousness of the crimes committed and that witnesses are protected from any possible reprisals ", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Implements both procedural and legislative measures to protect to the utmost extent possible migrant workers in the country ", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Establish a mechanism for the protection of human rights defenders", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Undertake a serious and credible study on the extent of violence against women, particularly the impact of humanitarian crisis on the issue, with a view to develop meaningful strategies to curb and eradicate violence against women", - "values": [ - "3 - Considering action" - ] - }, - { - "text": "Continue providing and expanding human rights education and training for all relevant Government authorities to build capacities of officials, and ensure effective implementation of human rights-related laws.", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Establish a genuinely independent national human rights institution in accordance with the Paris Principles, and ensure that it has a mandate to receive and handle individual complaints, monitor the human rights situation, coordinate with thematic mechanisms and cooperate with the Government and other entities in the drafting, dissemination and enforcement of human rights legislation ", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Comply with the request to visit by the Working Group on Enforced or Involuntary Disappearances.", - "values": [ - "4 - General action" - ] - }, - { - "text": "Strengthen cooperation with treaty bodies", - "values": [ - "4 - General action" - ] - }, - { - "text": "Develop programmes based on employability, entrepreneurship and microfinance in order to enable young people to get better access to the labour market", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Consider ratifying core international human rights treaties and their optional protocols, which have not yet been ratified", - "values": [ - "3 - Considering action" - ] - }, - { - "text": "Adopt a comprehensive national legislation to combat all forms of discrimination and to pass national legislation that lives up to the spirit of the Convention on the Rights of Persons with Disabilities", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Intensify the fight against impunity.", - "values": [ - "4 - General action" - ] - }, - { - "text": "Strengthen efforts in fighting against corruption, which negatively affects the enjoyment of human rights by everyone.", - "values": [ - "4 - General action" - ] - }, - { - "text": "Pay more attention to monitoring and combatting violations of the rights of religious and national minorities, including through the possible development of corresponding programmes which would take into account the ethno-cultural traditions of migrants, and, at the same time, help their integration in the Swiss society", - "values": [ - "4 - General action" - ] - }, - { - "text": "Ensure a fair and transparent process for issuing broadcasting licences and guaranteeing the independence of broadcasting regulatory bodies ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Pay more attention to providing better treatment for foreigners ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Continue efforts for provision of human rights education and training at all levels including for government functionaries", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Maintain and further build upon the HIV/AIDS prevention, care and treatment programmes", - "values": [ - "4 - General action" - ] - }, - { - "text": "Continue to provide, improve and enhance human rights education and training programmes, including the holding of workshops and seminars for the judiciary, law enforcement personnel and lawyers", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Seek technical assistance from the United Nations system and the international community to overcome the enormous human rights challenges faced by the country, in accordance with its national priorities ", - "values": [ - "1 - Minimal action" - ] - }, - { - "text": "Accelerate the creation of a completely independent and sufficiently funded body with the capacity to defend human rights in Estonia, such as a national human rights institution", - "values": [ - "4 - General action" - ] - }, - { - "text": "Take additional measures as necessary to ensure the full enjoyment of human rights by vulnerable groups that are suffering from discrimination, such as LGBTI persons, including investigation and punishment of cases of discrimination and repealing of laws that criminalize and stigmatize them", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Create a comprehensive policy about violence against women, and especially domestic violence, that prevents, punishes and eradicates these issues, especially in rural areas", - "values": [ - "4 - General action" - ] - }, - { - "text": "Adopt measures to recognize in practice the indivisibility, equality, interdependence and universality of all human rights so that legislation and judicial practice adequately ensures the enjoyment of economic, social and cultural rights and not just civil and political rights ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Continue to consider acceding to the International Convention on the Protection of the Rights of All Migrant Workers and Members of Their Families and recognize the competence of its committee", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Implement the Optional Protocol to the Convention on the Rights of the Child on the sale of children, child prostitution and child pornography, and to incorporate it into the criminal justice system", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Narrow the definition of terrorist activity within international practice to exclude journalism ", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Accede to the Optional Protocol to the Convention on the Rights of the Child on the sale of children", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Bahrain will also explore the possibility of obtaining appropriate technical assistance to strengthen national implementation of the Convention [on the Elimination of All Forms of Racial Discrimination].", - "values": [ - "1 - Minimal action" - ] - }, - { - "text": "Continue its acceleration of the poverty alleviation strategies with a view to allowing the economic emancipation of the poorer communities, including women and other vulnerable groups.", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Speed up efforts to reduce poverty and unemployment in the country", - "values": [ - "4 - General action" - ] - }, - { - "text": "Combat clandestine practices of female genital mutilations", - "values": [ - "4 - General action" - ] - }, - { - "text": "Continue with the implementation of its national strategy of environmental protection", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Call on the international community to support Sierra Leone's efforts through development assistance, technical assistance and capacity-building ", - "values": [ - "1 - Minimal action" - ] - }, - { - "text": "Harmonize the Law on the Prohibition of Discrimination with the laws and provisions at entity, district and municipal levels and increase general awareness of the law", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Investigate cases of violence against children in closed institutions and prosecute perpetrators", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Consider the possibility of ratifying the WHO Framework Convention on Tobacco Control", - "values": [ - "3 - Considering action" - ] - }, - { - "text": "Develop a well-functioning human rights infrastructure, including by establishing a national human rights institution, strengthening the mandate of the Ombudsman", - "values": [ - "4 - General action" - ] - }, - { - "text": "Continue strengthening the effective application of laws to prevent, protect and criminalize domestic violence ", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Redouble efforts to establish safe and neutral corridors for humanitarian evacuations", - "values": [ - "4 - General action" - ] - }, - { - "text": "The Government confirmed its commitment to the Council by deciding to appoint the special representative of the Ministry of Foreign Affairs, the Ambassador, on the Council", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Ensure the effective training of the judicial bodies in charge of investigating cases of gender-based violence", - "values": [ - "4 - General action" - ] - }, - { - "text": "Address the issues affecting the lack of public trust in the Judiciary and the law enforcement system, as reflected in paragraph 102 of the national report, and strengthen the independence of the Judiciary", - "values": [ - "4 - General action" - ] - }, - { - "text": "Ratify the Rome Statue of the International Criminal Court, including the accession to the Agreement on Privileges and Immunities ", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Take all the possible anti-corruption measures.", - "values": [ - "4 - General action" - ] - }, - { - "text": "Take immediate steps to prevent attacks on the human rights defenders and media and take action to investigate such acts", - "values": [ - "4 - General action" - ] - }, - { - "text": "Ensure adequate training for the police and judiciary to promptly and effectively deal with hate crimes", - "values": [ - "4 - General action" - ] - }, - { - "text": "Implement legislation and policies aimed at eliminating sexual and gender-based violence, and increase the capacity of Liberian courts specializing in sexual violence to ensure the expedient processing of rape and other sexual assault cases", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Adopt a consistent, open, merit-based process when selecting national candidates for United Nations treaty body elections", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Investigate all cases of extrajudicial executions, torture and other cruel, inhuman and degrading ill-treatments committed by security forces and prosecute those responsible, with special attention to those crimes committed against human rights defenders ", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Ensure accountability for human rights abuses, to strengthen the rule of law and break the pervasive cycle of impunity that hinders reconciliation and limits Haiti's economic development", - "values": [ - "4 - General action" - ] - }, - { - "text": "Better the conditions of urban schools, especially in the poor neighbourhoods", - "values": [ - "4 - General action" - ] - }, - { - "text": "Continue ensuring a high level of social welfare, health and education services for Kuwait's population", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Enact legislation that defines the line between freedom of expression and hate speech", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Consolidate the progress achieved in the field of human rights education and training, by regularly organizing, with the assistance of the international community, seminars and awareness-raising workshops on human rights, particularly for members of the security forces and the judiciary ", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Implement outstanding legislative reforms to prevent violence against children and child abuse in accordance with its obligations under the Convention on the Rights of the Child ", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Criminalize domestic violence against women, ratify the Optional Protocol to CEDAW", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Fully implement the recommendations of the United Nations study on violence against children", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Continue increasing efforts aimed at combating trafficking in human beings at the national as well as at the international level, including through coordination and cooperation with interested governments, international organisations and NGOs", - "values": [ - "4 - General action" - ] - }, - { - "text": "Fully implement its obligations under ICCPR to respect and ensure the right to freedom of expression", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Combat impunity by ensuring that all persons guilty of what could constitute war crimes or crimes against humanity are brought to justice", - "values": [ - "4 - General action" - ] - }, - { - "text": "Ratify the Council of Europe Convention on Preventing and Combating Violence against Women and Domestic Violence without further delay", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Take effective measures to improve women\u2019s access to health services, in particular reproductive health services", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "The accession to the Convention on the Status of Refugees and its Additional Protocol of 1967", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Continue its efforts to universalize free primary education", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Strengthen national laws to conform to international standards", - "values": [ - "4 - General action" - ] - }, - { - "text": "Adopt inclusive solutions at the state and local levels involving local enforcement agents, judiciary, community organisations and schools, end tolerance of and impunity for gender-based violence against women and girls, and that solutions include the situation of women in prisons", - "values": [ - "4 - General action" - ] - }, - { - "text": "Take action in order to provide for effective education programmes with regard to HIV-AIDS prevention.", - "values": [ - "4 - General action" - ] - }, - { - "text": "Take further measures to address domestic violence and physical child abuse, including by ensuring adequate reporting of child abuse", - "values": [ - "4 - General action" - ] - }, - { - "text": "Cooperate with the human rights mechanisms and extend a standing invitation to the special procedures of the Human Rights Council", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Lift restrictions on the right to freedom of assembly and freedom of information that are contrary to the ICCPR ", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Take the necessary measures, including the reinforcement of the legal framework, to combat violence against women and early marriages", - "values": [ - "4 - General action" - ] - }, - { - "text": "Establish an effective and inclusive process to follow-up to the recommendations emerging from the universal periodic review ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Continue efforts to ensure the promotion and protection of the rights of migrants, refugees and asylum seekers, especially those already in camps ", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Take all necessary steps to fully implement the principles of CAT without further delay and accelerate the procedures to ratify it ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Take specific measures in order to address the dis-functioning of the judicial system and the lack of internal and external monitoring of the police", - "values": [ - "4 - General action" - ] - }, - { - "text": "Take further legislative and administrative measures to safeguard the rights of minorities", - "values": [ - "4 - General action" - ] - }, - { - "text": "Decriminalize defamation and include it under the Civil Code in accordance with international standards, develop self-regulatory mechanisms of the media and strengthen the professional standards of journalism in the country", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Ensure independent, open and transparent selection procedures based on merit for judges and prosecutors", - "values": [ - "4 - General action" - ] - }, - { - "text": "Develop and implement a comprehensive set of measures to fight discrimination and protect the rights of women and children, adopt a comprehensive legislation to fight the sexual exploitation of children as well as corporal punishment, adopt a plan of action to combat domestic violence and create a mechanism to protect the rights of a child", - "values": [ - "4 - General action" - ] - }, - { - "text": "Carry out independent, impartial and effective investigations into the unlawful use of force against lesbian, gay, bisexual and transgender activists by Honduran law enforcement officials", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "The effective implementation of the repressive action provided for in the National Action Plan against Racism and Anti Semitism (2012-2014), considering the rise of this phenomenon from another age", - "values": [ - "4 - General action" - ] - }, - { - "text": "Extend standing invitations to thematic special procedures of international and regional human rights bodies and allow such visits to Venezuela", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Establish an independent national human rights institution and another institution to advocate the rights of the child", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Continue its efforts to combat corruption and strengthen the rule of law", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Strengthen the protection of migrant women from gender-based violence", - "values": [ - "4 - General action" - ] - }, - { - "text": "Ensure that its migration policies adopt a human rights based approach and respect the fundamental rights of migrants ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Increase criminal liability for sexual exploitation of children ", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Continue to work on improving access to education and reducing the disparity between boys and girls in schools, within the framework of its National Education Master Plan 2010-2019 ", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Create a fully functioning Sexual Assault Referral Centre within Mount St John's Medical Centre in order to provide a comprehensive response to the victims of sexual violence and raise the standard of care provided to victims", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Strengthen its laws to effectively combat FGM", - "values": [ - "4 - General action" - ] - }, - { - "text": "Continue its review efforts with a view to ratifying the International Convention on the Protection of the Rights of All Migrant Workers and Members of Their Families in the future", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Guarantee the exercise of freedom of expression, association and peaceful assembly, including for the political opposition, journalists and civil society ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Continue to implement its NAPA to address the impacts of climate change, with assistance from UNPD, the Global Environment Fund and other relevant international stakeholders ", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Review the law on sorcery and sorcery-related killings and investigate, prosecute and punish perpetrators of such crimes", - "values": [ - "3 - Considering action" - ] - }, - { - "text": "Develop a detailed plan of needs in order to support its request for technical assistance in the context of bilateral and multilateral cooperation", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "As recommended during the universal periodic review in 2012, respect the rights and fundamental freedoms of lesbian, gay, bisexual, transgender and intersex persons through the repeal of all norms that criminalize and stigmatize them", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Consider the establishment of a national human rights institution in line with the Paris Principles", - "values": [ - "3 - Considering action" - ] - }, - { - "text": "Consider the ratification of the international human rights treaties to which it is not yet a party, including OP-CAT and ICCPR-OP 1 and ICCPR-OP 2, aiming at the abolition of the death penalty", - "values": [ - "3 - Considering action" - ] - }, - { - "text": "Consider inadmissible, the confessions obtained under torture or ill treatment and allow all detainees to prepare their defense and communicate with a lawyer of their choice", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Integrate the protection and promotion of human rights in its environmental policies and strategies for response to disasters", - "values": [ - "4 - General action" - ] - }, - { - "text": "Adopt measures that ensure that detainees are treated in accordance with international human rights standards, prosecute cases of torture and end arbitrary detentions of persons, including of the so-called "G15" ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Ensure equal opportunities for women in the labour market, including by strengthening equal access of migrant women to effective job training and placement services in order to alleviate the concentration of qualified migrant women in low-paying jobs", - "values": [ - "4 - General action" - ] - }, - { - "text": "Ensure that all the cases of civilians, in trials before the National Safety Court for crimes allegedly committed during protests in 2011, are referred to civilian courts", - "values": [ - "4 - General action" - ] - }, - { - "text": "Ratify the Optional Protocol to the Convention against Torture without further delay, as previously recommended", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Submit all pending reports to the respective United Nations treaty bodies, namely, the Committee on Economic, Social and Cultural Rights, the Human Rights Committee and the Committee on the Rights of the Child", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Strengthen measures to prevent, investigate and punish acts of violence against migrants when they occur, as well as allegations of the mistreatment of this group by some members of the police", - "values": [ - "4 - General action" - ] - }, - { - "text": "Accede to the Palermo Protocol and continue improving its implementation of policy and legal framework related to human trafficking ", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Become a State party to CED", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Establish an immediate moratorium on the use of the death penalty with a view to abolition and in the meantime immediately end public and extrajudicial executions", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Strengthen its efforts to combat trafficking in persons, including by formulating a comprehensive anti-trafficking legal framework, especially in order to protect women and children from exploitation", - "values": [ - "4 - General action" - ] - }, - { - "text": "Ensure that neither the death penalty nor the life sentence is imposed for offences committed by persons below 18 years of age ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Allow freedom of movement of its citizens within and across the border and end the punishment of those expelled or returned from abroad, including refugees and asylum-seekers ", - "values": [ - "4 - General action" - ] - }, - { - "text": "[Ratify] The Optional Protocol to the Convention on the Elimination of All Forms of Discrimination against Women, as well as the three Optional Protocols to the Convention on the Rights of the Child", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Step up efforts in seeking assistance towards the establishment of a national human rights institution that is in line with the Paris Principles", - "values": [ - "1 - Minimal action" - ] - }, - { - "text": "Recognize at the moment of ratification the CED's competence to receive and review communications from individuals, who allege that they are victims of violations in conformity with article 31 of the CED ", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Raise the minimum age of criminal responsibility", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Explicitly recognize the legitimacy of the work carried out by human rights defenders, publicly support their work and provide protection for them", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Take all necessary steps to strengthen the freedom of expression", - "values": [ - "4 - General action" - ] - }, - { - "text": "Continue its efforts to protect the rights of migrant workers ", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Address the concerns raised by the Special Rapporteur on contemporary forms of racism, racial discrimination, xenophobia and related intolerance and xenophobia in relation to concerns about migrants and the living and working conditions of migrant workers, abolish corporal punishment for immigration offenders and enact an anti-discrimination law ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Consider ratification and full alignment of national legislation with the Rome Statute, including by incorporating provisions to cooperate promptly and fully with the International Criminal Court and to investigate and prosecute genocide, crimes against humanity and war crimes effectively before its national courts, and accede to the Agreement on the Privileges and Immunities of the International Criminal Court", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Take more practical measures for the protection of children, women and other vulnerable groups and full enjoyment of their rights", - "values": [ - "4 - General action" - ] - }, - { - "text": "Take necessary measures to ensure that all persons alleged to have committed war crimes are prosecuted in national courts, and that victims are properly compensated", - "values": [ - "4 - General action" - ] - }, - { - "text": "Ensure free and effective birth registration for all children ", - "values": [ - "4 - General action" - ] - }, - { - "text": "To implement the newest Racial Discrimination Act, by the constitution of the Institute against Racial Discrimination established in this law, and follow up of the plans and agreements such as the Programme of Action of the World Conference against racism, racial discrimination, xenophobia and related intolerance (Durban Programme of Action)", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Adopt an anti-discrimination law that can be widely applied", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Take steps to fully implement the ratified international instruments ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Establish an effective and inclusive process to follow-up on recommendations of the Working Group on the Universal Periodic Review", - "values": [ - "4 - General action" - ] - }, - { - "text": "Take appropriate measures aimed at increasing the number of women in decision-making positions as well as address the issue of a persisting wage gap between men and women ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Extend a standing invitation to special procedures mandate holders as a way of informing and supporting human rights reforms ", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Strengthen national policies to ensure that persons with albinism are fully protected from attacks and implement awareness-raising programmes which also promote their social integration in rural areas", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Accelerate the legislative process for the ratification of the Optional Protocol to the International Covenant on Economic, Social and Cultural Rights ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Reduce all forms of violence against women and children", - "values": [ - "4 - General action" - ] - }, - { - "text": "Ensure that no unnecessary or arbitrary legal or administrative restrictions on the legitimate work of civil society are in effect", - "values": [ - "4 - General action" - ] - }, - { - "text": "Specifically prohibit the practice of female genital mutilation as a matter of urgency", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Implement fully and without delay the 2010 anti-discrimination law, by integrating provisions covering discrimination based on sexual orientation", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Take a rights-based approach to adaptation to climate change ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Ensure that members of the security forces who are responsible for violations of human rights are prosecuted", - "values": [ - "4 - General action" - ] - }, - { - "text": "Incorporate a module on human rights during the training of gendarmes and policemen", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Consider the decriminalization of defamation and violation of the honour and dignity of public officials, and the abolishment of criminal penalties for libel", - "values": [ - "3 - Considering action" - ] - }, - { - "text": "Continue its efforts with a view to adopting HIV/AIDS care programs, including support services and effective prevention campaigns ", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Guarantee the right of Rohingyas to participate and vote in the coming national elections", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Consider the abolition of the death penalty and not ending the existing moratorium", - "values": [ - "3 - Considering action" - ] - }, - { - "text": "Strengthen plans and policies to eradicate violence against women", - "values": [ - "4 - General action" - ] - }, - { - "text": "Apply the 1997 Constitution, approve a law on political parties and hold democratic elections ", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Continue its efforts to harmonize its normative framework with its international human rights obligations ", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Strengthen human rights and health care education", - "values": [ - "4 - General action" - ] - }, - { - "text": "Remove restrictions on freedom of information and expression that are not in accordance with international human rights law - established by law, and deemed necessary and proportionate", - "values": [ - "4 - General action" - ] - }, - { - "text": "Ensure education free of charge in practice ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Pass the Freedom of Information Bill", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Increase efforts to establish a national human rights institution in compliance with the Paris Principles ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Pursue its efforts to combat the persistence of traditional stereotypes regarding the role and responsibilities of women and men, namely by planning awareness-raising campaigns for the media and focused programmes in the education system ", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Continue to remove any impediments that could hamper Qatari women's full participation in society", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Provide the national mechanism for the promotion of gender equality of adequate human and financial resources to enable it to effectively fulfil its mandate", - "values": [ - "4 - General action" - ] - }, - { - "text": "Continue to implement and strengthen its Poverty Alleviation Strategy and other programmes for poverty reduction, in order to build upon progress achieved thus far, and to bridge any existing regional and gender disparities", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Comply with its obligation under international law to guarantee that human rights defenders, journalists and activists can carry out their work independently and free from attacks, harassment or intimidation", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Take measures to combat the underlying causes which impede girls from completing their education ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Continue programs of human rights training for law enforcement officials, in the field of torture and ill treatment, in line with the already established practice ", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Continue to address gender inequality in the work place, and in particular, occupational segregation and the gender wage gap", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Establish a Human Rights Institute and provide closer cooperation with special procedures ", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Undertake all efforts to relax censorship and to grant oppositional groups the possibility to establish their own media outlets ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Further raise public awareness about the content of the new legislation and profile of the Ombudsman, in cooperation with NGOs, and in the education system raise awareness of children's rights, especially in cases of abuse and children's participation in civil and criminal proceedings", - "values": [ - "4 - General action" - ] - }, - { - "text": "Ensure better protection of the rights of the child", - "values": [ - "4 - General action" - ] - }, - { - "text": "Raise the awareness of the security forces with regard to the national law applicable to the rights of asylum seekers and refugees", - "values": [ - "4 - General action" - ] - }, - { - "text": "Investigate violations and attacks against journalists in order to ensure the necessary judicial stability for a functioning media", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Revoke the Fiji Human Rights Commission Decree, to lift restrictions on investigations and to take other measures to ensure that the National Human Rights Commission can operate in accordance with the Paris Principles", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Conclude the work on the draft law on marriage, divorce and family relations", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Improve the structures surrounding the situation for refugees, towards ensuring full respect in accordance with Turkey's obligations under international human rights and refugee law for the right of all persons to seek asylum as well as for the enjoyment of other rights of persons seeking asylum", - "values": [ - "4 - General action" - ] - }, - { - "text": "Explore the possibility of upgrading equipment and providing human rights education and training for police and other law enforcement personnel in the effort to improve the security situation and to further restore public confidence, in support of the police and other security forces in the country ", - "values": [ - "3 - Considering action" - ] - }, - { - "text": "Continue working towards the ratification of major international human rights instruments, such as the Optional Protocol to Suppress and Punish Trafficking in Persons, Especially Women and Children", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Cooperate fully with the United Nations human rights mechanisms", - "values": [ - "4 - General action" - ] - }, - { - "text": "Remove the crime of apostasy from its legislation", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Ensure that the rights and fundamental freedoms of persons with disabilities are respected by abolishing all practices of forced sterilization and coercive abortions of women and girls with disabilities, and by investigating and punishing their perpetrators", - "values": [ - "3 - Considering action" - ] - }, - { - "text": "Prevent child marriage by increasing the minimum age restriction of marriage to 18 for girls so as to have the same age restriction for both genders", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Promote legislation conforming fully to the Convention on the Elimination of All Forms of Discrimination against Women", - "values": [ - "4 - General action" - ] - }, - { - "text": "Continue its efforts to provide appropriate education opportunities to persons with disabilities ", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Investigate and prosecute intimidation and attacks on LGBT-community members and activists", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Stop all forms of harassment and intimidation of human rights defenders and effectively implement measures aimed at preventing violence and crimes against them", - "values": [ - "4 - General action" - ] - }, - { - "text": "Implement a program of ratification of all international human rights instruments, and then proceed to the incorporation of these in its internal legal system", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Strengthen domestic legislation on the prevention of torture in accordance with CAT ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Become a party to the Optional Protocol to the Convention on the Rights of Persons with Disabilities", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Strongly encouraged to abolish the death penalty, and while awaiting such decision, to adopt a moratorium on executions", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Continue its efforts in ensuring that the education system will benefit all groups in the society regardless of their backgrounds ", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Increase input in poverty reduction, implement the Eighth National Socioeconomic Development Plan, increase input in education, and further increase girls enrolment rate", - "values": [ - "4 - General action" - ] - }, - { - "text": "Positively consider the establishment of a moratorium on executions ", - "values": [ - "3 - Considering action" - ] - }, - { - "text": "Continue to work towards a comprehensive approach to preventing and addressing all forms of violence against women", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Fight against domestic violence and remedy the low representation of educated women in the technical and professional domains", - "values": [ - "4 - General action" - ] - }, - { - "text": "Continue to advance the work of the National Commission for Human Rights through, among others, developing a comprehensive human rights national action plan", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Enact laws and legislation aiming at combating human trafficking", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Legally prohibit the abhorrent practice of corporal punishment of children and adopt an integral law on children, which compiles the provisions of the Convention on the Rights of the Child", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Give strict orders to security forces not to make mistakes by qualifying as terrorists those who in reality are human rights defenders and members of nongovernmental organisations.", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Continue its efforts to implement the adopted strategies, in particular the National Reproductive Health Strategy 2009-2015", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Strengthen efforts aimed at increasing the representation of women in decision-making processes ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Expedite the legislative process to bring the juvenile justice system in line with the standards of the Convention on the Rights of the Child, and additionally strengthen training programmes for police officers and the judiciary ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Recognize same-sex marriages ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Sign and ratify the Second Optional Protocol to the International Covenant on Civil and Political Right ", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Continue to implement measures to reduce the high rate of displaced people", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Adopt measures to combat discrimination and promote equal economic and social opportunities for disadvantaged and marginalized individuals and groups ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Adopt a law against all forms of discrimination, including discrimination based on sexual orientation and gender identity", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Take more effective measures to combat incidents of sexual violence and intensify efforts to implement its reintegration and rehabilitation policies for victims of gender-based violence", - "values": [ - "4 - General action" - ] - }, - { - "text": "Adopt legal measures guaranteeing the right to a judicial procedure without undue delay, and allocate more resources to ensure greater efficiency in the judiciary ", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Prevent all forms of discrimination, especially discrimination based on sexual orientation or gender identity, ensuring equal treatment particularly in schools, health services and the armed forces", - "values": [ - "4 - General action" - ] - }, - { - "text": "Create ideal conditions for the Ombudsman and the High Commissioners for Consultative Governance and National Solidarity to operate", - "values": [ - "4 - General action" - ] - }, - { - "text": "Establish an independent, non-partisan and Angolan-led human rights commission in the country", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Adopt measures to ensure access for minority groups, especially children, to education in their mother tongue ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Continue to exert concrete efforts to eliminate all forms of discrimination and violence against women and children", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Strengthen the existing national human rights institution to be in compliance with the Paris Principles", - "values": [ - "4 - General action" - ] - }, - { - "text": "Strengthen awareness-raising efforts in rural areas where some cultural traditions inhibit women's rights.", - "values": [ - "4 - General action" - ] - }, - { - "text": "Consider ending the use of tasers and full body searches in prisons ", - "values": [ - "3 - Considering action" - ] - }, - { - "text": "Continue the current policy vis-a-vis Somali refugees, based on solidarity and the protection of fundamental human rights ", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Sign and ratify the Second Optional Protocol to International Covenant on Civil and Political Rights", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Consider extending an invitation to the Special Rapporteur on the independence of judges and lawyers ", - "values": [ - "3 - Considering action" - ] - }, - { - "text": "Grant access of independent observers to detention centres for migrants and clarify their status", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Ratify the Second Optional Protocol to the ICCPR ", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Strengthen measures to combat gender-based violence, particularly by emphasizing awareness-raising in education and supporting programmes for the economic empowerment of women, especially in rural areas ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Adopt specific legislation to eliminate violence against women, including domestic violence ", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Amend any articles of the Personal Status Law that breach Afghanistan's international obligations or its Constitutional protection of the equal rights of men and women", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Ensure that the freedoms of expression and peaceful assembly are respected in conformity with international standards and that members of political parties, journalists and human rights activists are able to exercise their activities and to criticize the Government without being subject to intimidation, reprisals or harassment", - "values": [ - "4 - General action" - ] - }, - { - "text": "Pursue its international efforts in the promotion of truth, justice, reparations and guarantees of non-recurrence", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Welcome the visit of the Special Rapporteur on the independence of judges and lawyers, in order to provide expertise and assistance in the process of maintaining an independent judiciary", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Consider ratification of those international instruments to which it is not yet a party ", - "values": [ - "3 - Considering action" - ] - }, - { - "text": "Provide awareness training in the area of victim abuse for those public servants such as police, prosecutors and judges, who most frequently come into contact with victims of gender-based violence in the course of their work, to assist in their understanding of the impact such violence has on its victims, and also other family members in particular children", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Enhance its efforts in combating the phenomena of trafficking in persons, particularly women and children, and raise awareness of its dangers ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Implement and monitor the NHRAP, enabling civil society organizations to participate in the process", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Continue its policy against racism and all forms of discrimination particularly in favour of indigenous peoples", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Consider acceding to the Convention against Torture and Other Cruel, Inhuman or Degrading Treatment or Punishment", - "values": [ - "3 - Considering action" - ] - }, - { - "text": "Adopt necessary practical measures to ensure equal access of girls to education at all levels and step up efforts to decrease illiteracy rate of women", - "values": [ - "4 - General action" - ] - }, - { - "text": "Ensure fair trial guarantees for prisoners subject to criminal prosecution, including those detained after last year\u2019s presidential election", - "values": [ - "4 - General action" - ] - }, - { - "text": "Incorporate into the national legislation measures to implement the Rome Statute of the International Criminal Court, including measures to cooperate with the Court", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Accomplish progressively human rights goals as set forth in Human Rights Council resolution 9-12.", - "values": [ - "4 - General action" - ] - }, - { - "text": "Progressively remove restrictions that prevent Palestinian children from having access to basic services, including schools and health care.", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "End impunity and hold the perpetrators of enforced disappearance, extrajudicial killings and torture to account and facilitate access to justice for the victims of such violations", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Ensure the prompt and independent investigation of all alleged violations against human rights defenders", - "values": [ - "4 - General action" - ] - }, - { - "text": "Facilitate access to health services for all the population in the Thai territory", - "values": [ - "4 - General action" - ] - }, - { - "text": "Continue to vigorously investigate recent cases of alleged police-led human rights abuses against African Americans and seek to build improved relations and trust between United States law enforcement and all communities around the United States", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Accelerate the implementation of the 2011 Jasmine Plan on national economic and social programmes in close collaboration with relevant stakeholders ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Introduce legislation prohibiting discrimination on grounds of sexual orientation and take measures to ensure that it is fully and effectively implemented ", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Implement effective measures and allocate adequate resources to ensure respect for international standards in prisons, especially with regard to food, health care and the hygiene of detainees", - "values": [ - "4 - General action" - ] - }, - { - "text": "Assess benefits and social support for single, unwed mothers, to ensure that the current system does not foster multi-generational social exclusion", - "values": [ - "3 - Considering action" - ] - }, - { - "text": "Reinforce the provisions of the Strategy for the Integration of Roma", - "values": [ - "4 - General action" - ] - }, - { - "text": "Maintain and strengthen its efforts to promote the rights of women, stressing particularly the guarantee of equal opportunity in the labour market ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Ratify the ICRMW, signed in 2007 ", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Set up national mechanisms to monitor, investigate, prosecute and punish incitement to and acts of hatred, intolerance, racism and xenophobia, including hate speech and racist and xenophobic acts committed on the internet and through political platform", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Ratify the Optional Protocol to the Convention on the Rights of the Child on the sale of children, child prostitution and child pornography ", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Issue and implement standing invitation to special procedures mandate-holders.", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Release all those found to be unduly or arbitrarily detained", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Regulate and implement the law on access to public information", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Continue to strengthen its cooperation with civil society organizations in promoting and protecting human rights in areas such as the administration of justice, education, public health, migrant workers and gender equality", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Sign and ratify the Convention against Torture and Other Cruel, Inhuman or Degrading Treatment or Punishment and its Optional Protocol Optional Protocol to the International Covenant on Civil and Political Rights Second Optional Protocol to the Covenant on Civil and Political Rights Optional Protocol to the Convention on the Elimination of Discrimination against Women Optional Protocol of the Covenant on Economic, Social and Cultural Rights Convention on the Rights of Persons with Disabilities and its Optional Protocol\n", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Strengthen the cooperation with civil society in the area of domestic violence, especially domestic violence against women and children and establish a more effective system of help to victims", - "values": [ - "4 - General action" - ] - }, - { - "text": "Reform the penitentiary system with the aim of ensuring humane conditions for detained persons in line with international standards ", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Guarantee without any discrimination to all disadvantaged groups of the population, including the Roma, access to adequate housing ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Withdraw its reservation to article 37(c) of the Convention on the Rights of the Child (CRC) regarding the separation of children deprived of liberty from adults", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Develop a more gender balanced land ownership law, building on the recommendation of its Royal Land Commission regarding land allotment ", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Adopt a comprehensive law on racial discrimination, with an adequate definition of racial discrimination, in accordance with the International Convention on the Elimination of All Forms of Racial Discrimination", - "values": [ - "4 - General action" - ] - }, - { - "text": "Allocate resources and accelerate national programmes on job creation, poverty reduction, decent housing, land restitution, gender equality and improvement of education and health care services", - "values": [ - "4 - General action" - ] - }, - { - "text": "Prohibit discrimination on the basis of gender, disability and sexual orientation in the Constitution", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Explore further steps with a view to strengthening domestic measures to combat human trafficking and child labour", - "values": [ - "4 - General action" - ] - }, - { - "text": "Submit overdue reports to the human rights treaty bodies", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Establish a moratorium on the use of the death penalty", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Consider requesting technical assistance from OHCHR to prepare and implement an appropriate policy that is human-rights-centred to prevent and combat violence", - "values": [ - "3 - Considering action" - ] - }, - { - "text": "Ensure protection of women and girls from all forms of violence, including sexual violence ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Secure proper follow-up to the accepted recommendation from the first UPR cycle and introduce tools that will improve the effective judicial control over the administrative decisions of the Office of Youth called Jugendamt ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Adequately sanction with severe penalties crimes of rape and sexual abuse, establish specialized courts in this area, set up support and counselling services for victims, and design a national awareness-raising programme to facilitate access to justice to women and children ", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Adopt a law to fight against discrimination, to prevent and punish discrimination in all its forms including discrimination on sexual orientation and gender identity", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Reduce significantly the periods of pre-trial detention and ensure that minors have separate spaces in the detention centres and prisons", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Speedily enact the respective policies and bills on legal aid and transitional justice to fulfil the constitutional mandate to provide justice for all", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Work towards enhancing the status, powers and functions of the office of the Ombudsman to ensure full compliance with the Paris Principles", - "values": [ - "4 - General action" - ] - }, - { - "text": "Move further ahead in drafting and implementing a national action plan to address the issue of the sale of children, child prostitution and child pornography", - "values": [ - "4 - General action" - ] - }, - { - "text": "Ensure that all allegations of torture are promptly and impartially investigated and that victims obtain redress in accordance with Libya's international obligations under the Convention against Torture", - "values": [ - "4 - General action" - ] - }, - { - "text": "Continue its efforts to strengthen its education system in accordance with the Basic Law on Education", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Implement safeguards for human rights defenders by introducing legislation to protect freedom of association and assembly", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Continue its progress in promoting and protecting women's rights with the consolidation of the institutional mechanisms and the implementation of laws which are being positively promoted", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "That equality between women and men in the workplace becomes effective in the near future", - "values": [ - "4 - General action" - ] - }, - { - "text": "Consider the practicability of enacting legislation prohibiting FGM.", - "values": [ - "3 - Considering action" - ] - }, - { - "text": "Step up efforts to implement the final observations of the Committee for the Elimination of Discrimination against Women.", - "values": [ - "4 - General action" - ] - }, - { - "text": "Undertake a national awareness campaign about the lasting negative effects of gender-based violence", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Actively promote awareness of the 2005 Labour Code and establish an accessible complaint mechanism, such as a free phone-service, to which migrant workers can confidentially report instances of abuse and exploitation as well as seek assistance ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Enforce legal safeguards to ensure fair and equal access to housing, education, employment and government services for Romani individuals and protection against arbitrary, forcible evictions and displacement from their homes or temporary residences", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Become party to the Optional Protocol to the Convention on the Rights of the Child CRC on the sale of children, child prostitution and child pornography", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Continue the consideration of ratification of the main international instruments on human rights, notably the ICESCR and ICCPR", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Take effective measures to prevent the dissemination of racist and xenophobic speeches on the Internet and through the media ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Endorse the Call to Action of the Prime Minister of the United Kingdom and unite in our commitment to end forced labour, modern slavery, human trafficking and the worst forms of child labour in our world by 2030", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Accomplish human rights voluntary goals as established by Human Rights Council resolution 9-12, including the ratification of the Convention on the Rights of Persons with Disabilities and the Optional Protocol thereto", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Continue to pursue its search for ways and means to restore peace throughout the country as peace is quite essential for development and human rights protection. ", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Take additional effective measures to combat racist crimes targeting migrants and Roma especially in the areas of employment, education, health and housing", - "values": [ - "4 - General action" - ] - }, - { - "text": "Ensure that all administrative detainees have the possibility of filing a lawsuit challenging the legality of their detention", - "values": [ - "4 - General action" - ] - }, - { - "text": "Ratify the ILO Conventions nos. 169 and 189 ", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Implement recommendations of the 2012 European Union election observation mission promoting inclusiveness and transparency of the election process", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Organise visits of the Special Rapporteur on contemporary forms of racism, the Special Rapporteur on torture, Special Rapporteur on human rights of migrants, Special Rapporteur on trafficking in human beings to the country", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Investigate all cases of violence against women, punish the perpetrators and ensure that victims receive the necessary support and compensation", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Strengthen efforts to combat extreme poverty", - "values": [ - "4 - General action" - ] - }, - { - "text": "Take concrete measures to raise public awareness and further develop legislation to combat domestic violence, especially against women and children, including through the adoption of legislation that prohibits all corporal punishment of children in any setting", - "values": [ - "4 - General action" - ] - }, - { - "text": "Continue strengthening measures aimed at addressing domestic violence, with special focus on the programmes being developed to consolidate the mechanisms to protect women and children ", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Continue working to eradicate all forms of discrimination against women, especially in the workplace", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Accelerate efforts toward the establishment of a Brazilian National Human Rights Council in accordance with the Paris Principles, including through passing a Bill on converting the Council for the Defence of the Rights of the Human Person into the National Human Rights Council which is currently in the agenda of the National Congress ", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Continue to give priority attention to the protection of the rights of the child", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Continue to make efforts to follow up on the recommendations made in the previous universal periodic review on peaceful protests", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Work with the international community to reduce the effects of climate change ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Ratify International Labour Organization Convention No. 189 concerning decent work for domestic workers ", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "While commending South African authorities for the policies adopted in the field of public health and the measures taken to fight HIV-AIDS, recommended to South Africa to increase its measures to eliminate the discriminatory barriers to access health services for people living with HIV-AIDS. ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Take further measures to combat marginalization and discrimination against Roma", - "values": [ - "4 - General action" - ] - }, - { - "text": "Incorporate into domestic legislation the crime of torture as defined in CAT ", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Immediately end all human rights violations and repression against the civilian population", - "values": [ - "4 - General action" - ] - }, - { - "text": "Take further measures aimed at consolidating its achievements with regard to expanding education to disadvantaged areas, by according special attention to the rights of the girl child, especially in nomadic communities", - "values": [ - "4 - General action" - ] - }, - { - "text": "The Federal Government is actively committed to the real achievement of equal rights for men and women and the removal of existing discrepancies.", - "values": [ - "4 - General action" - ] - }, - { - "text": "Ensure that the National Human Rights Commission has sufficient resources, personnel and a clear mandate to carry out its work in line with the Paris Principles", - "values": [ - "4 - General action" - ] - }, - { - "text": "Ratify CAT and OP-CAT ", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Enhance the scope and effectiveness of measures to combat and prevent racism so as to effectively guarantee all rights of migrants and minorities ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Extend invitations to the thematic special procedures particularly to those that have requested to visit the country.", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Amend the Criminal Code to include provisions to protect women against sexual and gender-based violence and to train and sensitize security and police officers as well as the population in general", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Continue its efforts in cooperation with the competent bodies in order to secure protection of the rights of the vulnerable groups particularly women and children ", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Undertake further steps to prevent gender-based violence and combat preventable maternal mortality and morbidity", - "values": [ - "4 - General action" - ] - }, - { - "text": "Take new measures to continue to reinforce human rights education and training", - "values": [ - "4 - General action" - ] - }, - { - "text": "Ensure that proper investigations are conducted in all cases of attacks on journalists, media workers and human rights defenders", - "values": [ - "4 - General action" - ] - }, - { - "text": "Continue to consider entering into the International Covenant on Civil and Political Rights.", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Continue implementing the National Action Plan on Disabilities 2013-2022 with emphasis on the situation of children facing multiple forms of discrimination", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Investigate all allegations of excessive use of force, racially motivated violence and ill-treatment by law enforcement officials and bring those responsible to justice", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Strengthen the role of its police and other enforcement authorities in dealing with trafficking in women and children ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Further improve the professionalism of the police force.", - "values": [ - "4 - General action" - ] - }, - { - "text": "Take steps to set up a special section in courts and tribunals to look into issues of human trafficking ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Make additional efforts to work with refugees and migrants", - "values": [ - "4 - General action" - ] - }, - { - "text": "Facilitate citizens' access to judicial appeal in cases of restrictions of freedom of assembly", - "values": [ - "4 - General action" - ] - }, - { - "text": "Ensure that all births are registered and facilitate access to birth registration services including by reducing its cost ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Continue efforts to reduce unemployment rates, including strengthening vocational training programmes", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Intensify programs to combat unemployment and poverty ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Undertake further actions in order to prevent child marriages", - "values": [ - "4 - General action" - ] - }, - { - "text": "Train police forces, border control agents, judges, lawyers and other relevant authorities to raise awareness on human trafficking and the rights of the victims, ensure that those responsible for the trafficking are investigated and prosecuted and ensure that the victims receive the adequate protection, reparation and compensation ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Carry out impartial and independent investigations of all allegations of excessive use of force and violations carried out by representatives of the security forces, in particular in cases related to communal land rights, and bring perpetrators of such violations to justice", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Abolish all discriminatory laws against women with regard to family and marriage.", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Strengthened measures to promote gender equality, particularly with regard to the gender pay-gap and women's representation in leadership positions and regional politics", - "values": [ - "4 - General action" - ] - }, - { - "text": "Take additional measures notably in the areas of housing, employment, education and access to social services, particularly to benefit the Roma ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Ratify the Convention relating to the Status of Refugees and the Convention relating to the Status of Stateless Persons ", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Prioritize action on the recommendations of different treaty bodies, in particular the Committee on the Elimination of Discrimination against Women, the Committee on the Rights of the Child and the Committee against Torture.", - "values": [ - "4 - General action" - ] - }, - { - "text": "Continue with its public policies contained in the report, in the area of the right to health, including drafting policies which would allow for full access to health care services by persons with disabilities", - "values": [ - "4 - General action" - ] - }, - { - "text": "Ratify the Council of Europe Convention on Preventing and Combating Violence against Women and Domestic Violence ", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Take appropriate measures to institute a National Human Rights Commission with a clear and independent mandate that is in line with the Paris Principles", - "values": [ - "4 - General action" - ] - }, - { - "text": "End impunity of members of the army and government officials, who commit human rights violations, and bring them to justice", - "values": [ - "4 - General action" - ] - }, - { - "text": "Implement an independent and transparent complaints mechanism to deal with reports of prisoner ill-treatment", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Establish a Juvenile Rehabilitation Centre to ensure detention separate from adults and the safety of juvenile offenders whilst in detention and to equip them to be productive citizens on release into society", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Continue all efforts to provide accessible health care and medications to all citizens", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Take effective measures to ensure the Hungarian National Police and the hate-crimes expert net improve the enforcement of laws against hate crimes, including by allocating sufficient resources, undertaking thorough investigations and prosecution, and by providing training for the front-line law enforcement", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Implement its decision on the establishment of a Constitutional Court", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Continue implementing the national laws in accordance with the universally agreed human rights norms and principles", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Ratify as soon as possible the International Covenant on Economic, Social and Cultural Rights", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Consider the possibility of signing and-or ratifying the Optional Protocol to the Convention on the Rights of Persons with Disabilities", - "values": [ - "3 - Considering action" - ] - }, - { - "text": "Develop a national human rights plan ", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Complete the transfer of capacity from the International Commission Against Impunity in Guatemala to Guatemalan institutions and protect those made most vulnerable to crimes because of impunity, including judges, witnesses, prosecutors, human and labour rights defenders, journalists, and trafficked persons", - "values": [ - "4 - General action" - ] - }, - { - "text": "Halt immediately the unjustified arms race and bring to justice those responsible for all war crimes and massacres against unarmed civilians, women, children as well as acts of torture carried-out in prisons such as Abu Ghraib, Bagram and Guantanamo ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Continue to take steps to strengthen the rule of law by ensuring the effective implementation of legal reforms", - "values": [ - "4 - General action" - ] - }, - { - "text": "Ensure registration of all children at birth as well as delayed registration of children who have not been registered at birth", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Continue and strengthen its efforts in addressing domestic violence in particular in raising the awareness of the population through information campaigns and by enhancing the system of criminal prosecutions", - "values": [ - "4 - General action" - ] - }, - { - "text": "Amend article 128 of the Criminal Code which identifies the commission of an offence with honourable motives as a mitigating excuse", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Take concrete steps to implement international legal obligations to protect peaceful assembly in line with calls from the United Nations Secretary General and the United Nations High Commissioner for Human Rights", - "values": [ - "4 - General action" - ] - }, - { - "text": "Continue its national efforts aimed at combating trafficking in persons, including through international and regional cooperation", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Take all appropriate measures to end discrimination and intimidation against persons belonging to ethnic and religious minorities", - "values": [ - "4 - General action" - ] - }, - { - "text": "Continue to implement policies that fully consider the rights of persons with disabilities when formulating and implementing all social activities and development plans", - "values": [ - "4 - General action" - ] - }, - { - "text": "Pursue its efforts to combat administrative and financial corruption.", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Ensure that all reported human rights violations are investigated and that those responsible for such violations, including police officials and personnel within the security forces, are prosecuted and punished.", - "values": [ - "4 - General action" - ] - }, - { - "text": "Carry out an evaluation into the obstacles victims of gender-based violence experience in accessing effective protection, justice and reparation and the causes which prevent them from filing a complaint", - "values": [ - "3 - Considering action" - ] - }, - { - "text": "Investigate fully allegations of serious acts of violence, including numerous murders, against trade union officers and their members, and bring their perpetrators to justice", - "values": [ - "4 - General action" - ] - }, - { - "text": "Adopt a specific legislation aimed at prohibiting all forms of FGM ", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Take concrete measures to speed up the process under the National Legislation Programme 2015-2019", - "values": [ - "4 - General action" - ] - }, - { - "text": "Ensure the adoption of legislation that prohibits child, early and forced marriage", - "values": [ - "4 - General action" - ] - }, - { - "text": "Ensure that the procedures for the registration of civil society organizations are transparent, non-discriminatory and expeditious", - "values": [ - "4 - General action" - ] - }, - { - "text": "Cooperate fully with the United Nations human rights mechanisms, including by inviting the Special Rapporteur on the situation of human rights in Iran to the country", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Develop policies favouring equal opportunities for women ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Continue its efforts related to human rights education and training as it represents a major gateway onto overcoming many long term difficulties", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Take immediate measures to restore the independence, integrity and effective functioning of the Constitutional Tribunal and its judges, including by amending pertinent legislation", - "values": [ - "4 - General action" - ] - }, - { - "text": "Continue the implementation of existing programmes and projects to enhance various socio-economic rights with a view to achieving the Millennium Development Goals ", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Strengthen efforts to improve the well-being of women migrant workers in Lebanon and their rights", - "values": [ - "4 - General action" - ] - }, - { - "text": "Implement measures to improve conditions in French prisons, including by allocating greater resources to rehabilitation of detainees, improving prisoners' access to medical treatment and instituting preventive measures to lower suicide rates ", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "The Government is committed to upholding the rule of law and promoting access to justice for all New Zealanders.", - "values": [ - "4 - General action" - ] - }, - { - "text": "Strengthen training for the police on human rights norms and standards, including the procedures to be used during security operations", - "values": [ - "4 - General action" - ] - }, - { - "text": "Take the necessary measures so that the Senegalese Human Rights Committee works with full compliance with the Paris Principles", - "values": [ - "4 - General action" - ] - }, - { - "text": "Ensure that its legislation is consistent with international human rights law pertaining to freedom of expression", - "values": [ - "4 - General action" - ] - }, - { - "text": "Ensure that the review of the press law follows the international standards on this subject, particularly with respect of the protection of journalists. ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Strengthen its collaboration with national and international civil society actors, notably by giving general accreditation to the major international human rights organizations.", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Adopt a comprehensive strategy aimed at preventing and eliminating all forms of violence against women", - "values": [ - "4 - General action" - ] - }, - { - "text": "Repeal or amend any laws that may constrain or limit a vibrant civil society, in line with international human rights obligations and the Constitution of Kenya", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Further measures aimed at achieving effective gender equality", - "values": [ - "4 - General action" - ] - }, - { - "text": "Further strengthen its efforts to review its legislative framework and make necessary adjustments to it in order to ensure that it is in conformity with Afghanistan's international human rights obligations ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Re-double its efforts in reducing and eliminating the incidence of poverty, particularly in the impoverished areas, in line with its revised National Poverty Elimination Strategy and Action", - "values": [ - "4 - General action" - ] - }, - { - "text": "Continue to strengthen its legislative and institutional framework for the promotion and protection of human rights", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Take all measures necessary to ensure full respect for freedom of religion or belief and freedom from discrimination on the basis of religion, including by way of allowing non-Muslims to become citizens and withdrawing its reservation to article 18 of ICCPR ", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Adopt a comprehensive strategy to combat all forms of violence against women and girls", - "values": [ - "4 - General action" - ] - }, - { - "text": "Take appropriate steps to accelerate the ratification process on the International Convention on the Elimination of All Forms of Racial Discrimination", - "values": [ - "4 - General action" - ] - }, - { - "text": "Continue efforts to ensure respect for human rights, while bearing in mind the religious and cultural specificities of the country.", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Review national legislation so as to reduce the high levels of female mortality caused by illegal abortion in the country, as well as the imprisonment of women for this reason", - "values": [ - "3 - Considering action" - ] - }, - { - "text": "Enact legislation recognizing the legitimate work of human rights defenders and ensuring their life, security and integrity, and conduct prompt, impartial and effective investigations into allegations of threats, attacks and violence against them ", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Strengthen and expand interreligious and intercultural dialogue", - "values": [ - "4 - General action" - ] - }, - { - "text": "Make available in international languages to the rest of the world its experience in economic revolution, modernization and in satisfying the material needs of an enormous rural population", - "values": [ - "1 - Minimal action" - ] - }, - { - "text": "Ratify the Optional Protocol to the Convention on the Rights of the Child (CRC) on a communications procedure ", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Ensure the National Observatory of Places of Deprivation of Liberty a capability to fulfil its mandate by making the institution independent from the Ministry of Justice and by providing it with a sufficient budget", - "values": [ - "4 - General action" - ] - }, - { - "text": "Intensify efforts of international cooperation to improve its institutional legal framework.", - "values": [ - "1 - Minimal action" - ] - }, - { - "text": "Continue efforts to establish a free and compulsory quality education for all children up to the age of 15", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Ensure that national security is pursued in a broad-based and inclusive manner and in full compliance with the Constitution and international human rights obligations", - "values": [ - "4 - General action" - ] - }, - { - "text": "Recommended upholding the rights of workers to freedom of association, to organise, and to collective bargaining by recognizing these rights in domestic law and by signing on to relevant ILO Conventions.", - "values": [ - "4 - General action" - ] - }, - { - "text": "Maintain disaggregated data on caste and related discrimination.", - "values": [ - "4 - General action" - ] - }, - { - "text": "Consider ratifying the ILO Convention 189 on Decent Work for Domestic Workers ", - "values": [ - "3 - Considering action" - ] - }, - { - "text": "Guarantee the full right to freedom of expression", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Step up efforts to end abusive practices by security forces and improve prison and detention centre conditions ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Redouble its efforts in the field of violence against women and domestic violence through the different measures provided in the legislation aiming at the eradication of violence against women and domestic violence", - "values": [ - "4 - General action" - ] - }, - { - "text": "Complete the process of ratification of all conventions it has signed, in particular the Convention against Torture and Other Cruel, Inhuman or Degrading Treatment or Punishment and its Optional Protocol", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Reinstate the citizenship of about 60,000 Greek nationals under the repealed Article 19 of the Greek Citizenship Code ", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Take appropriate measures to end de facto and de jure discrimination against all minority groups ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Promulgate and implement the Law Revision (Penalties in Criminal Matters) Miscellaneous Amendment Bill, with a view to a definitive abolition of the death penalty ", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Ratify the following conventions and protocols: CEDAW, the ICESCR, the Convention on the Rights of the Child, the Convention on the Rights of Persons with Disabilities, the International Convention on the Protection of the Rights of All Migrant Workers and Members of Their Families, the International Convention for the Protection of All Persons from Enforced Disappearance, the Statute of the International Criminal Court, those of the ILO, the United Nations Declaration on Indigenous Peoples, and all those from the Inter-American Human Rights System", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Continue to implement its HIV/AIDS prevention, care and treatment programmes to further reduce the prevalence rate ", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Take immediate measures to address discrimination against migrants, persons from immigrant backgrounds, asylum seekers and refugees in accessing public services, housing, the labour market and health, as was concerned by the Committee on the Elimination of Racial Discrimination, and intensify efforts, including through the adoption of a new action plan, to prevent and combat all forms of discrimination and to promote equality ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Adopt effective measures in order to combat sexual exploitation of children", - "values": [ - "4 - General action" - ] - }, - { - "text": "Be accountable for all political prisoners, in particular the members of the "G15", and release them ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Accelerate the process of adopting a new federal Constitution", - "values": [ - "4 - General action" - ] - }, - { - "text": "Ratify the Rome Statue of the International Criminal Court", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Accede to the international treaties on human rights and ratify ICESCR", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Implement the new Migrants Law fully", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Put an end to the practice of pushing-back boats transporting migrants to the high seas", - "values": [ - "4 - General action" - ] - }, - { - "text": "More actively take steps to break the cycle of impunity ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Continue its good work in further strengthening the judiciary in the country", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Extend an open and ongoing invitation to all human rights mechanisms to visit the country.", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Ensure all reports of human rights violations, including those against religious minorities and homosexuals, are investigated and prosecuted", - "values": [ - "4 - General action" - ] - }, - { - "text": "Eliminate, in law and practice, all forms of discrimination against persons belonging to religious, ethnic, linguistic and other minorities, as well as against lesbian, gay, bisexual and transgender persons", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Raise awareness among the communities on the prohibition of child labour, particularly in relation to the common social practice whereby a child, usually a daughter, is sent to live as a servant with a wealthier family, which lends itself to acts of human trafficking", - "values": [ - "4 - General action" - ] - }, - { - "text": "Ratify the Convention of the Rights of Persons with Disabilities.", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Focus on human rights in general and the rights of women in particular", - "values": [ - "4 - General action" - ] - }, - { - "text": "Ensure that the Compulsory Education Act provides for children with disabilities", - "values": [ - "4 - General action" - ] - }, - { - "text": "Continue cooperating with the Office of the High Commissioner for Human Rights (OHCHR) to ensure the best possible solutions for the full protection of human rights by all the citizens of the country", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Repeal the provisions in the Criminal Code that criminalize consensual same-sex conduct, and any other legislation which discriminates on the basis of sexual orientation or gender identity, and bring its legislation in line with Malawi's obligations under international human rights law", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "With regard to the accession to international human rights treaties and withdrawal of reservations of already ratified conventions, the delegation stated that the Government was committed to review the legislations governing citizens' rights in line with the Constitution, and that it is currently reviewing reservations to Articles 2 and 16 of CEDAW in line of the new Constitution and in conformity with the Islamic Sharia. ", - "values": [ - "3 - Considering action" - ] - }, - { - "text": "Review its domestic legislation to bring it into full conformity with all human rights conventions to which it is a party, especially CEDAW and the Convention on the Rights of the Child and to implement specific recommendations made by the Committee on the Elimination of Discrimination against Women in this regard.", - "values": [ - "3 - Considering action" - ] - }, - { - "text": "Continue to strengthen its institutional framework so that its society can continue to enjoy their rights and to fully participate in the democracy that prevails in Jordan today", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Prepare and implement an action plan for the establishment of an effective OPCAT-compliant National Preventative Mechanism, with access to the necessary resources for it to adequately fulfil its mandate", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Take all measures necessary to ensure the protection of religious minorities, including implementing the recommendations on adequate housing put forward by the Special Rapporteur after his visit in 2006", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Offer comprehensive sexuality education and ensure access to sexual and reproductive health services, including legal and safe abortion", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Enact the Prevention of Torture Bill currently pending in the parliament in compliance with the Convention against Torture and Other Cruel, Inhuman or Degrading Treatment or Punishment", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Continue to provide access to health services for the elderly under the National Programme for Health Care of the Elderly", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Continue efforts to combat poverty and provide assistance to families with limited income", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Continue efforts aimed at improving the national nutrition consumption including accelerating the process of adopting a national policy paper on this matter ", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Ensure that allegations of violence, torture, inhuman and degrading treatment of LGBT persons, by government and non-government actors, are investigated promptly and efficiently and that perpetrators are brought to justice", - "values": [ - "4 - General action" - ] - }, - { - "text": "Take measures aimed at fair and adequate representation of all minority groups in all public bodies, including the judiciary and human rights coordination bodies at the country level ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Ensure that the principles and provisions of the International Convention on the Elimination of All Forms of Racial Discrimination are directly and fully applicable under domestic law in all territories of the United Kingdom", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Ensure that perpetrators of violence, including against non-ethnic Germans, are identified and prosecuted to the fullest extent of the law", - "values": [ - "4 - General action" - ] - }, - { - "text": "Step up efforts to promote to ensure equal opportunities for all children to quality education", - "values": [ - "4 - General action" - ] - }, - { - "text": "Align its national legislation with international standards to uphold freedom of assembly and association ", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Ratify ICCPR, ICESCR and the Optional Protocols to CRC as a matter of priority ", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Consider the possibility to accede to the Optional Protocol to the Convention on the Elimination of All Forms of Discrimination against Women", - "values": [ - "3 - Considering action" - ] - }, - { - "text": "Address shortcomings in the judicial process, in particular the length of pre-trial detention, humanitarian access to prisoners, financing, independence from the Executive, and corruption", - "values": [ - "4 - General action" - ] - }, - { - "text": "Give human rights defenders legitimacy and recognition through supportive statements and ensure that they are protected in accordance with the United Nations Declaration on the Right and Responsibility of Individuals, Groups and Organs of Society to Promote and Protect Universally Recognized Human Rights and Fundamental Freedoms.", - "values": [ - "4 - General action" - ] - }, - { - "text": "Continue combating violence against women", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Continue its efforts to implement the accepted recommendations from the first review", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Continue its efforts to put in place improved solutions and legislation aimed at eliminating all forms of discrimination against women", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Step up efforts to prevent organised crime networks", - "values": [ - "4 - General action" - ] - }, - { - "text": "Amend personal status laws so as to further ensure women's rights, in particular with regard to marriage dissolution, child custody and inheritance", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Continue its policy aimed at the social integration of vulnerable groups such as Pygmies and Mbororos ", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Strengthen programmes to fight poverty ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Strengthen its efforts to promote and protect human rights in Iraq", - "values": [ - "4 - General action" - ] - }, - { - "text": "Croatia remains fully committed to making the recommendations of the Human Rights Council mechanisms more visible, including through the Internet", - "values": [ - "4 - General action" - ] - }, - { - "text": "Investigate cases of violence and threats against journalists and human rights defenders, in order to bring the perpetrators to justice", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Guarantee the enjoyment of economic, social and cultural rights, particularly health, education and adequate housing ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Amend the national legislation in order to make it compatible with international human rights standards, and to establish an NHRI", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Repeal the application of the death penalty in all areas", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Accelerate reform of the administrative justice system so that all persons have access to legal procedures of appeal", - "values": [ - "4 - General action" - ] - }, - { - "text": "Reinforce its efforts to eradicate harmful customs and practices that are discriminatory against women", - "values": [ - "4 - General action" - ] - }, - { - "text": "Sri Lanka will continue to take steps to safeguard and advance the rights of children through national mechanisms such as the National Child Protection Authority and the Ministry of Child Development and Women's Empowerment. Sri Lanka will also continue to actively support international processes that seek to advance the rights of the child.", - "values": [ - "4 - General action" - ] - }, - { - "text": "Establish a national institution for the promotion and protection of human rights consistent with the Paris Principles", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Sri Lanka will continue to work towards the submission of its periodic reports to treaty bodies.", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Undertake further measures to ensure the protection of journalists", - "values": [ - "4 - General action" - ] - }, - { - "text": "Ensure the protection of IDP's rights to voluntary and safe return to adequate restitution by, inter alia, putting in place and implementing long-term housing and property restitution policies that comply with international standards", - "values": [ - "4 - General action" - ] - }, - { - "text": "Ensure that minority groups are not disproportionally affected by the financial and economic crisis.", - "values": [ - "4 - General action" - ] - }, - { - "text": "Continue to implement the 2016-2020 National Strategy to put an end to violence against children", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Take specific measures to counter serious violations of the human rights of women, such as gender-based violence, inadequate after-care for victims of such crimes, forced marriage, and female genital mutilation ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Enact and amend legislation to ensure that the prohibition against discrimination is in line with CEDAW, especially with article 1 concerning direct and indirect discrimination in general, and article 16 relating to marriage and family relations", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Reject non-tolerant attitudes and consider a strategy on balanced and objective information to the population through the education system, attitude campaigns and political statements", - "values": [ - "3 - Considering action" - ] - }, - { - "text": "Bolster respect for pluralism and open debate by fostering a non-violent environment tolerant of dissenting voices, including those of the opposition, and avoiding politically motivated actions against critical media outlets", - "values": [ - "4 - General action" - ] - }, - { - "text": "Continue to combat poverty, with due regard for socio-economic and regional disparities ", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Take effective measures to implement the laws on sexual violence adopted in 2006, the comprehensive strategy on combating sexual violence endorsed by the Government and the road map against impunity for sexual violence, investigate all cases of sexual violence and hold the perpetrators including all members of the State security forces accountable for their crimes. ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Continue its efforts to ensure education for all children and to proceed, with the support and the assistance of the international community, to the necessary arrangements for the improvement of its educational system.", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Continue the active protection of vulnerable population groups, including children, women, disabled persons and the elderly", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Continue its efforts to promote human rights in the economic, social and cultural fields", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Step up efforts for comprehensive protection of women and girls, in particular against sexual violence", - "values": [ - "4 - General action" - ] - }, - { - "text": "Strengthen the capacity of the State Inspectorate for the Protection of Children's Rights", - "values": [ - "4 - General action" - ] - }, - { - "text": "Improve legal measures on poverty eradication and an adequate standard of living ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Continue to work for the implementation of its National Strategy to Prevent Chronic Malnutrition 2016-2020 and strengthen its Food Aid Programme to prevent food insecurity", - "values": [ - "4 - General action" - ] - }, - { - "text": "Strengthen the federal mechanism for the protection of defenders and journalists and provide it with preventive capacity, taking into account the threat posed by organized crime networks against freedom of speech and press", - "values": [ - "4 - General action" - ] - }, - { - "text": "Better protect women and children from violence, including by: reviewing child protection systems, amending the Criminal Code to include a provision on marital rape, and prosecuting all alleged perpetrators of sexual and domestic violence", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Establish a moratorium on executions with a view to abolishing the death penalty ", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Adopt practical measures to ensure absolute prohibition of violence against women and cruel treatment of children ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Continue to develop a policy framework and implement a comprehensive strategy to combat domestic violence that includes education and public awareness for rural areas, strengthened mechanisms to hold offenders to account, and enhanced training for law enforcement officials", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Continue the policy of free and compulsory education through cooperation with and assistance from the international community ", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Immediately implement a formal moratorium on the death penalty with a view to abolishing the practice", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Engage civil society in a follow-up of its UPR ", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Give priority to measures that may guarantee access to safe drinking water for all citizens", - "values": [ - "4 - General action" - ] - }, - { - "text": "Persist with the actions undertaken by the Government Plenipotentiary for Equal Treatment ", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Continue ongoing efforts to guarantee universal access to healthcare to the population ", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Facilitate the visits of the UN High Commissioner and the special procedures, including to Tibetan and Uighur area ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Continue its efforts to tackle human trafficking, especially of children, through the effective implementation of the recovery and reintegration programme for trafficked persons", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Make more efforts to create job opportunities for youth by taking the necessary measures", - "values": [ - "4 - General action" - ] - }, - { - "text": "Follow the recommendation of the Constitutional Court of Belarus to abolish death penalty and, as a first step, introduce a moratorium on capital punishment without delay", - "values": [ - "4 - General action" - ] - }, - { - "text": "Continue its efforts to widen the protection of human rights and the security of its citizen in the country as a means of consolidating social justice ", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Guarantee the rights to freedom of expression, association and peaceful assembly particularly by allowing peaceful demonstrations in line with the obligations stemming from the International Covenant on Civil and Political Rights ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Increase efforts to avoid school drop out by pregnant adolescents, through the creation of programmes that would allow for their return to school in optimal conditions for their development and that of their children", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Ratification and effective implementation of CRPD, with full participation and active involvement of NGOs in the promotion, protection and monitoring of the human rights treaty framework ", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Establish a relationship of constant cooperation with the United Nations human rights mechanisms", - "values": [ - "4 - General action" - ] - }, - { - "text": "Adopt a national plan to combat social exclusion and vulnerability of women belonging to Muslim communities, Roma women, migrants and women living in rural areas", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Introduce gender equality issues, as well as non-discrimination and non-violence due to gender identity and sexual orientation in education programmes, in school regulations and in the training of teachers", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Take stronger measures to professionalize the police force by demanding accountability and retraining key personnel, including seeking the assistance of international law enforcement experts", - "values": [ - "4 - General action" - ] - }, - { - "text": "Ratify the Rome Statute of ICC, the Conventions regarding stateless persons and OP-CAT ", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Share with developing countries and LDCs its experiences in the health field", - "values": [ - "1 - Minimal action" - ] - }, - { - "text": "Continue to strengthen the programs and initiatives aimed at guaranteeing the right to health and in particular at reducing maternal and child mortality ", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Reconsider its position and abolish the death penalty, if necessary by initially establishing a moratorium on executions ", - "values": [ - "3 - Considering action" - ] - }, - { - "text": "Continue the ongoing efforts to ensure the conformity of detention conditions with international standards", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Continue efforts to prevent racist speech, violence and discrimination against vulnerable groups, including Roma, by fighting racially motivated crimes and countering the use of racist discourse in politics and the media", - "values": [ - "4 - General action" - ] - }, - { - "text": "Continue to support and empower women in public life", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Continue to implement the discrimination reporting system in order to tackle stigmatization and discrimination of the most vulnerable groups", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Accede to the 1967 Protocol relating to the Status of Refugees and related conventions ", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Continue cooperation with the United Nations system", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Strengthen and intensify efforts to promote the role of women in society and provide them with equal opportunities in contributing and cooperating in all aspects of life, including policies and national development programmes", - "values": [ - "4 - General action" - ] - }, - { - "text": "Narrowing the gender gap in education and illiteracy ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Strengthen the legislative framework to reflect the provisions of international law on the protection of children ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Make efforts to reach the quotas established by the Southern African Development Community with regard to the integration of women in all sectors of society ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Continue and further develop public policies and programmes to enhance the inclusion of Afro-Panamanians in all aspects of life in Panama ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Apply broadly the principles of governance set out in the Universal Declaration of Human Rights, as they are key to the sustainable management of natural resources, such as protection of rainforests, and essential to the realization of fundamental economic, social and cultural rights, as recommended previously", - "values": [ - "4 - General action" - ] - }, - { - "text": "Accelerate its ratification process of the Optional Protocol to the Convention on the Elimination of All Forms of Discrimination against Women", - "values": [ - "4 - General action" - ] - }, - { - "text": "Take all necessary measures to submit a report for the eighth consultation on the measures taken to implement the Convention against Discrimination in Education ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Put into practice the plan to establish a system of human rights indicators ", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Ratify the International Convention for the Protection of All Persons from Enforced Disappearance (CED)", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Bearing in mind the protective and advanced nature of the legislation against discrimination, intensify measures intended to protect free sexual orientation and sexual identity through specific educational initiatives and awareness-raising for all society, to facilitate documentation for transsexual people in line with their identity and to guarantee access to public services without discrimination ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Give continuity to the strengthening of the national human rights institutions and related mechanisms", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Continue to take measures to strengthen the institutional and legal framework for the protection of human rights", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Continue the efforts to promote women's equality and empowerment, with emphasis on promoting enhanced economic opportunities for women and equality in the workplace", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Continue the measures to increase women's participation in public and political life ", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Consider sharing with other countries the Moroccan experience regarding the protection and promotion of the rights of migrants", - "values": [ - "3 - Considering action" - ] - }, - { - "text": "Ensure that freedom of expression is without unnecessary restrictions to ensure freedom of religion", - "values": [ - "4 - General action" - ] - }, - { - "text": "Conduct independent investigations into allegations of torture as well as violations of the rights of human rights defenders and independent journalists, including attacks against their lives and their freedom of movement, and take the necessary protection measures ", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Release the five Cuban political prisoners - arbitrarily detained, as acknowledged by the Working Group on Arbitrary Detentions in its Opinion No. 19-2005, serving unjust sentences that resulted from a politically manipulated trial in open disregard for the rules of due process ", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Enact new legislation for providing early intervention and better protect vulnerable adults from abuse and harm due to neglect and self-neglect", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Develop a coherent country-wide anti-corruption strategy and monitor its implementation.", - "values": [ - "4 - General action" - ] - }, - { - "text": "Guarantee access to justice for victims of sexual violence by ensuring the effective implementation of laws on the protection of women ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Ensure that an Australian cannot be deprived of citizenship other than in exceptional circumstances and within the framework of a specific legal procedure", - "values": [ - "4 - General action" - ] - }, - { - "text": "Completely abolish the death penalty and, to that end, to ratify as soon as possible the Second Optional Protocol to the International Covenant on Civil and Political Rights, as provided for in the 2009-2012 National Human Rights Plan", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Continue providing assistance to the National Commission for Women and Children through capacity-building and providing additional human resources and technical expertise ", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Develop, at the regional level, the State's institutions in charge of the reconstruction of historical memory of violations of human rights committed during the armed conflict ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Revise its education policy that further entrenches discrimination on the basis of sexual orientation", - "values": [ - "3 - Considering action" - ] - }, - { - "text": "Take diplomatic action and provide legal assistance to protect migrant workers ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Continue strengthening the protection and promotion of human rights through its institutions, legislation and public policies", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Stop the revocation of permanent residency status of Palestinians in East Jerusalem and provide adequate resources for the development of services and infrastructure, including the creation of new schools ", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Strengthen its partnership with the international community with a view to improving public health of the country ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Take further steps to ensure the implementation of the Declaration on the Rights of Indigenous Peoples ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Adopt the necessary measures to improve the living conditions of detainees and avoid prison overcrowding", - "values": [ - "4 - General action" - ] - }, - { - "text": "Explore further ways and means aimed at improving and enhancing the welfare and protection of victims of child abuse", - "values": [ - "3 - Considering action" - ] - }, - { - "text": "Consider extending and implement a standing invitation to all special procedures", - "values": [ - "3 - Considering action" - ] - }, - { - "text": "Consider ratification of ILO convention on decent work for domestic workers ", - "values": [ - "3 - Considering action" - ] - }, - { - "text": "Take concrete measures to implement the Public Policy and National Action Plan on Human Rights, including the assigning of appropriate funding", - "values": [ - "4 - General action" - ] - }, - { - "text": "Ensure the implementation of the existing anti-trafficking legislation ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Step up its efforts to ratify the Optional Protocol to the Convention on the Elimination of All Forms of Discrimination against Women", - "values": [ - "4 - General action" - ] - }, - { - "text": "Adopt the necessary legislations to combat the phenomenon of human trafficking", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Ensure that migrants and their families enjoy equal access to education and health care", - "values": [ - "4 - General action" - ] - }, - { - "text": "Continue strengthening protective measures and legal rights for women", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Remove the death penalty from its Penal Code with a view to ratifying the Second Optional Protocol to the International Covenant on Civil and Political Rights", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Further efforts to promulgate and implement focused legislation, action-oriented strategies and implementation in accordance with the adopted international standards as regards gender equality and non-discrimination, advancement of persons with disabilities and fully fledged opportunities for ethnic minorities ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Systematically register all religious and customary marriages", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Strengthen the national plan for combating discrimination through the incorporation of indicators and monitoring measures, through determination of the authorities responsible for its implementation and through a time frame for achievement of the goals", - "values": [ - "4 - General action" - ] - }, - { - "text": "Adopt special measures in the context of the international financial crisis in order to guarantee job opportunities in rural areas", - "values": [ - "4 - General action" - ] - }, - { - "text": "Improve the enforcement of the legal provisions prohibiting harmful and discriminatory practices against women and girls, in particular child marriages, dowry-related murders and honour killings, and ensure that all women, without discrimination, have access to public services", - "values": [ - "4 - General action" - ] - }, - { - "text": "Speed up the process of reinstating the citizenship of approximately 60,000 Greek citizens who were deprived of Greek citizenship, because of the later repelled article 19 of the Greek Citizenship Law. Create a mechanism to compensate their losses in terms of ownership rights that occurred as a result of the process ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Ensure that the efforts made to guarantee freedom of movement are continued ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Take practical measures to protect and respect the rights of Palestinian refugees and the internally displaced Palestinians and give them access to their homeland and their right to compensation for the losses and prejudices they have endured throughout ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Modify or repeal the blasphemy laws in order to bring them in line with the principles related to freedom of thought, conscience and religion, and in particular with its obligations under the ICCPR", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Prohibit corporal punishment in all settings", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Enact the law on abolishment of the death penalty", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Build on existing efforts to facilitate integration of immigrants and refugees, including by fully implementing its multiyear program for the integration of third-country nationals ", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Include sexual orientation in non-discrimination laws and equality initiatives", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Establish and strengthen policies and legal provisions for the promotion of women's rights, in particular the strengthening of their autonomy and participation in political, economic and social life, in recognition of their fundamental role in the development of a nation", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Re-examine the proposal to revise law 017/PR/2010 relating to the press regime in Chad in order to amend or withdraw the provisions which could infringe on freedom of expression and freedom of the press", - "values": [ - "3 - Considering action" - ] - }, - { - "text": "Continue its efforts to further improve the situation on trafficking in persons and to enhance protection and support for the victims of trafficking ", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Abolish the death penalty, through the accession to the Second Optional Protocol to the International Covenant on Civil and Political Rights, aiming at the abolition of the death penalty and maintain the de facto moratorium on executions until ratification", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Introduce a moratorium on executions with a view to fully abolishing the death penalty", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Improve protection mechanisms for migrants and consider establishing return programmes for migrants", - "values": [ - "4 - General action" - ] - }, - { - "text": "Continue to implement the existing policy and programmes to eradicate poverty", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Release immediately and unconditionally all persons currently detained for their peaceful political activities, and guarantee them unrestricted freedom of movement and expression and freedom to participate in political activities ", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Initiate awareness-raising campaigns and improve the discipline of its security forces with regard to combating sexual violence against women and girls. ", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Cooperate fully with investigations into human rights abuses and violations", - "values": [ - "4 - General action" - ] - }, - { - "text": "Work for the social reintegration of child soldiers, refugees and displaced persons who have opted to return to their original location", - "values": [ - "4 - General action" - ] - }, - { - "text": "Consider acceding to the Optional Protocol to the Convention on the Rights of Persons with Disabilities", - "values": [ - "3 - Considering action" - ] - }, - { - "text": "Maintain the philosophy of putting the people first in its development agenda", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Adopt further measures which aim to combat discrimination in education, combat illiteracy and promote gender equality ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Adopt appropriate measures to guarantee the independence and impartiality of the National Human Rights Commission, and ensure its ability to deal with complaints and investigate violations ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Step up efforts to combat domestic violence", - "values": [ - "4 - General action" - ] - }, - { - "text": "Improve and strengthen good governance, institutions and the rule of law for long-term stability ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Adhere to and adapt national legislation to the Arms Trade Treaty and sign the Treaty on the Prohibition of Nuclear Weapons", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Develop a national strategy aimed at eliminating poverty and homelessness", - "values": [ - "4 - General action" - ] - }, - { - "text": "Continue efforts in ensuring that National Human Rights Commission be strengthened to be in line with the Paris Principles ", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Invite other Special Rapporteurs dealing with economic and social rights to visit the country", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Take the measures necessary to ensure freedom of expression in accordance with article 19 of ICCPR and General Comment 34 of the Human Rights Committee", - "values": [ - "4 - General action" - ] - }, - { - "text": "Continue to implement measures to eradicate the legacy of and the contemporary forms of slavery", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Increase its efforts in addressing the HIV epidemic", - "values": [ - "4 - General action" - ] - }, - { - "text": "Continue to do all that is necessary to end statelessness, especially for those living in areas that have experienced armed conflict before peace", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Work with the Ombudsman for Children and relevant civil society organizations to create programmes to educate law enforcement officials on how to proactively address the problem of adolescents from ethnic minority backgrounds feeling stigmatized by and lacking trust in the police ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Take measures to resolve the cases of delayed justice and impunity, including through judicial reforms ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Continue the implementation of the national plans and programs related to the comprehensive protection and education of children and adolescent, in particular those who are homeless", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Ensure full and equal access to modern contraceptives throughout its territory, including in peri-urban, rural and indigenous territories", - "values": [ - "4 - General action" - ] - }, - { - "text": "Consider signing and ratifying the CPED and accept the competence of its Committee", - "values": [ - "3 - Considering action" - ] - }, - { - "text": "Consider the possibility of abolishing the death penalty from its legal framework", - "values": [ - "3 - Considering action" - ] - }, - { - "text": "Ratify the Optional Protocol to the Convention on the Elimination of All Forms of Discrimination against Women, as previously recommended", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Take measures to guarantee the legal protection of women in cohabitating relationships, as well as those who were previously in such relationships, and provide assistance to women victims of domestic violence through the creation of an adequate number of reception and rehabilitation facilities ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Consider adopting new legislation to counter all forms of discrimination against women and reserve a quota of non-executive board seats for women", - "values": [ - "3 - Considering action" - ] - }, - { - "text": "Enhance efforts to implement the National Action Plan on Women, in particular their participation and integration in the economy", - "values": [ - "4 - General action" - ] - }, - { - "text": "Continue to seek effective ways, through international mechanisms, to hold to account those responsible for violations of human rights and international humanitarian law in those parts of Ukraine which are de facto controlled by the Russian Federation", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Continue utmost efforts to implement effectively the National Action Plan for Persons with Disabilities", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Take measures to reduce the gender pay gap and eliminate gender-based violence", - "values": [ - "4 - General action" - ] - }, - { - "text": "Intensify its awareness-raising campaign on the harmful effect of corporal punishment and on the use of alternative and non-violent forms of discipline in a manner consistent with the child's dignity ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Take strong measures in addressing the concern raised by the Committee on the CRC on the lack of prevention of child sexual exploitation ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Seek the support of partners to pursue its efforts in the areas of the right to education and the right to health", - "values": [ - "1 - Minimal action" - ] - }, - { - "text": "Undertake awareness-raising campaigns on sexual exploitation of children ", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Allocate adequate resources to implement affirmative action policies for the protection and advancement of rights of women and girls", - "values": [ - "4 - General action" - ] - }, - { - "text": "Consider adopting a national legislation on combating sexual harassment", - "values": [ - "3 - Considering action" - ] - }, - { - "text": "Disseminate and implement the plan to achieve MDGs 4 and 5, approved by the Ministry of Health, on the basis of the right to health for mother and child ", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Further reform the law on same-sex marriage and change the concept of the traditional family as enshrined in the Constitution", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Continue its positive approach in further promoting the welfare and protecting the rights of persons with disabilities with a view of improving their living conditions", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Ratify the Convention on the Reduction of Statelessness ", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Ensure that the judiciary has the necessary independence from the executive branch, limiting the attributions of the latter to the appointment of judges, in particular to the Supreme Court.", - "values": [ - "4 - General action" - ] - }, - { - "text": "Make the declarations under articles 21 and 22 of CAT and withdraw its reservation with regard to article 20 of CAT, as recommended by the Committee", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Undertake to study the underlying causes of the street children phenomenon, including the scope of the problem, and consider developing comprehensive measures to address those causes ", - "values": [ - "3 - Considering action" - ] - }, - { - "text": "Prioritize domestic policies and resourcing aimed at eliminating violence against women and promoting non-discriminatory working relationships and respect for diversity in the workplace ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Pursue its work on reforms with a view to ensure the independence and impartiality of the judiciary and provide judges with adequate human rights training", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Speed up the birth registration process of women who are not in possession of birth certificates and identity documents, in particular in the rural and remote areas of the country", - "values": [ - "4 - General action" - ] - }, - { - "text": "Repeal laws restricting the formation of a free and independent press, including Law No. 76 of 1972, Law No. 120 of 1972 and Law No. 75 of 1973 ", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Continue and strengthen efforts to eliminate acts of torture", - "values": [ - "4 - General action" - ] - }, - { - "text": "Increase its efforts to improve the living standards of its population and particularly the access to health care, education, work and safe drinking water", - "values": [ - "4 - General action" - ] - }, - { - "text": "Continue its actions to promote gender equality and the full participation of women in the political, economic and social life of the country", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Amend the Criminal Injuries Compensation Regulations so that all victims of trafficking have access to State compensation", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Activate the items listed in the Declaration of the Islamic Summit to promote Islamic solidarity and make it a reality where there is peace and coexistence", - "values": [ - "4 - General action" - ] - }, - { - "text": "Take steps to further democratisation efforts, including by enacting laws that facilitate the registration of political parties", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Review the de facto ban on peaceful public demonstrations, the use of anti-defamation laws, and the registration process for civil society and associations, to ensure that such laws, as adopted and enforced, are consistent with international human rights guarantees of the rights to freedom of expression, freedom of peaceful assembly, freedom of association ", - "values": [ - "3 - Considering action" - ] - }, - { - "text": "Continue to improve the rule of law and undertake further measures to enhance the capacity of its law enforcement agencies ", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Sign and ratify CAT and its Optional Protocol, and establish a national preventive mechanism", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Revise the blasphemy laws so that they cannot be abused against religious minorities", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Establish an effective and independent national human rights institution in 2015", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Continue to strengthen its national human rights and democratic institutions", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Apply measures aimed at increasing the number of health professionals and ensure that they receive high-quality training ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Increase efforts to eliminate early marriages through, implementation of the relevant recommendation made by the Committee on the Elimination of Discrimination against Women", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Continue with the efforts to fight against discrimination suffered by children, especially girls with disabilities", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Sign and ratify at the earliest the Rome Statute of the International Criminal Court", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Strengthen efforts to reduce gender inequalities including to prevent death resulting from violence against women, and to encourage increased reporting of cases of rape", - "values": [ - "4 - General action" - ] - }, - { - "text": "Ratify OP-CRC-AC", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Take immediate steps to end continuing violations of international human rights law ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Put an end to arbitrary detention and prevent abuses and discrimination against third-country nationals and against groups of citizens of Libya", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Take appropriate measures to eliminate all forms of discrimination against rural women with respect to ownership of land in line with the recommendations of CEDAW", - "values": [ - "4 - General action" - ] - }, - { - "text": "Continue its efforts to ensure due commemoration of the Holocaust", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Accede to the Optional Protocol to the Convention on the Rights of the Child on a communications procedure at the earliest opportunity ", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Fund and implement a single plan and timeline with clear annual targets aimed at eliminating school segregation for Roma children and ensuring inclusive education", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Ensure that all members of ethnic and linguistic minorities, recognized as such or not, should enjoy all social rights and should be protected from any forms of discrimination ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Continue to work with international organizations and the Human Rights Council in particular to promote development and human rights", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Cooperate fully with the United Nations human rights system and consider the issuing of a standing invitation to special procedures", - "values": [ - "4 - General action" - ] - }, - { - "text": "Continue to prioritize efforts to improve the health of its people, including through the enactment of water and sanitation services", - "values": [ - "4 - General action" - ] - }, - { - "text": "Redouble its efforts in strengthening its educational system including accelerating the implementation of all the recommendations deriving from its National Forum on Education held in 2008 ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Undertake strategies to reduce gun violence, particularly among poor black youth", - "values": [ - "4 - General action" - ] - }, - { - "text": "Step up efforts to fight against torture, by implementing the anti-torture law adopted in 2013, and through the systematic prosecution of perpetrators of such acts whoever they may be", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Continue its efforts to ensure full access to education", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Consider the possibility to withdraw the reservation to article 9 of the Convention on the Elimination of All Forms of Discrimination against Women with the aim of providing Jordanian women with the right to pass on the nationality to their children", - "values": [ - "3 - Considering action" - ] - }, - { - "text": "Implement the anti-slavery law without delay and prosecute perpetrators", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Enable indigenous peoples in the territories they occupy to exercise their right to self-determination, in conformity with the Charter of the United Nations", - "values": [ - "4 - General action" - ] - }, - { - "text": "Submit a report on the situation of human rights in the Occupied Palestinian Territories since Israel is in charge as the occupying power.", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Continue efforts to fight impunity and human rights violations, with particular attention to the rights of indigenous peoples.", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Continue with the efforts to investigate and punish all those responsible for the acts of violence that occurred in 2013 and 2014, ensuring access to justice and effective judicial protection for victims", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Take measures to further reduce women's illiteracy rate and increase girls' school enrolment rate", - "values": [ - "4 - General action" - ] - }, - { - "text": "Take all appropriate ways and means to further develop and strengthen a culture of human rights, create more human rights capacity-building and promote human rights education and public awareness-raising with a view to better promoting and protecting of all human rights.", - "values": [ - "4 - General action" - ] - }, - { - "text": "Continue to develop legislation and policies to ensure effective gender equality and to combat gender violence", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Strengthen national and local policies and measures to protect migrants, especially foreign workers ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Finalize the adoption of the National Action Plan on Gender-based Violence and Human Trafficking", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Release immediately and unconditionally all persons detained for peacefully exercising the rights to freedom of expression, association and peaceful assembly", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Strengthen the comprehensive health-care system to elevate the level of health services", - "values": [ - "4 - General action" - ] - }, - { - "text": "Take the necessary steps to accede or ratify the core international human rights instruments that they are not yet acceded to", - "values": [ - "4 - General action" - ] - }, - { - "text": "Adopt an anti-discrimination law that would ensure equal treatment and non-discrimination on any grounds, including sexual orientation and gender identity.", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Become a party to the Ottawa Convention on Landmines ", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Take further measures for the improvement of the legal framework in the field of human rights, particularly in the areas of children, women and persons with disabilities ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Pursue its action to ensure the right to education for all towards the realization of the Millennium Development Goals and to extend this fundamental right to children of illegal migrants ", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Provide better training to police when dealings with girls victims of sexual violence", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Continue efforts to ensure freedom of speech and of the press, and to promptly investigate all complaints in this regard", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Fully align its national legislation with the obligations arising from the Rome Statute", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Join more human rights treaties and their Optional Protocols, especially the International Covenant on Civil and Political Rights and the International Covenant on Economic, Social and Cultural Rights", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Continue providing health care programmes to HIV/AIDS patients and work towards preventing its spread in the society ", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Expedite the process of elaboration and adoption of a law that defines and prohibits discrimination against women", - "values": [ - "4 - General action" - ] - }, - { - "text": "Improve the working conditions of judges and prosecutors, especially of prosecutors, in order to further strengthen their independence, and fill vacant positions for judges and prosecutors ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Maintain the efforts for the effective protection of the rights of internally displaced persons, with special attention to women, children and persons with special needs", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Enforce effectively the legislation adopted to prevent and prosecute violence against women as well as the trafficking in women", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Ensure the full enjoyment of all persons under Israel's jurisdiction, including the Arab minority in Israel proper", - "values": [ - "4 - General action" - ] - }, - { - "text": "Speed up the establishment of a Truth and Reconciliation Commission ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Continue to implement development and poverty reduction policies in order to promote peaceful and stable development ", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Robustly support and uphold the universal principle of freedom of expression, recognizing that such freedom is essential to a fully functioning democracy", - "values": [ - "4 - General action" - ] - }, - { - "text": "Develop indicators and a timeline for the implementation of the recent legislation on women\u2019s rights and ratify the Optional Protocol to the Convention on the Elimination of All Forms of Discrimination against Women", - "values": [ - "3 - Considering action" - ] - }, - { - "text": "Become a party to the Convention on the Rights of Persons with Disabilities and the Optional Protocol thereto", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Ratify the 1951 Convention relating to the Status of Refugees and its 1967 Protocol", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Implement fully the law on access to information and take effective measures to protect journalists and investigate all reported incidents of intimidation aimed at silencing journalists", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Adopt urgent measures to make progress on the elimination of all forms of discrimination, stigmatization and violence against people on the basis of their sexual orientation and gender identity and to promote the respect of the rights of all persons by society", - "values": [ - "4 - General action" - ] - }, - { - "text": "Issue standing invitations to all Special Procedures of the Council", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Amend the Penal Code to decriminalize witchcraft", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Continue with its efforts to protect all children, protect the rights and interests of children and provide vulnerable children with better access to childhood services", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Deepen legislative measures to eliminate the use of harmful traditional practices associated with the belief in witchcraft, that lead to delays in medical treatment provided to children and unnecessary exacerbation of treatable conditions, as expressed by the Committee on the Rights of the Child", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "After the implementation of the action plan for children in Bosnia and Herzegovina for the period 2002-2010, continue developing programmes for the protection of children, particularly on the fight against child exploitation for begging, their possible recruitment and use in armed conflicts, their protection in judicial processes, as well as their separation from adults in places of detention", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Enhance substantially its cooperation with treaty bodies and special procedures mandate holders ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Step up measures to establish trust between religious communities within the country", - "values": [ - "4 - General action" - ] - }, - { - "text": "Kenya is committed to implementing its domestic and international obligations arising from the human rights treaties that it has ratified. ", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Pursue its initiative to include the subject of \u201chuman rights\u201c in its education curriculum, as it would facilitate national reconciliation by building trust and confidence in the society", - "values": [ - "4 - General action" - ] - }, - { - "text": "Improve detention conditions in their prisons, especially when it comes to prisons for women ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Include in the Criminal Code and Military Penal Code the definition of torture established in the Convention against Torture and Other Cruel, Inhuman or Degrading Treatment or Punishment", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Fulfil the recommendation, elaborated on in paragraph 2 of the OHCHR summary, made by the Council of Europe Commissioner for Human Rights, who in 2007 called upon Poland to enact a comprehensive body of anti-discrimination legislation and to set up a body to combat discrimination.", - "values": [ - "4 - General action" - ] - }, - { - "text": "Take further measures to address the decline of female enrolment in schools, in order to ensure that young women complete their secondary education", - "values": [ - "4 - General action" - ] - }, - { - "text": "Fully cooperate with the International Criminal Court and protect witnesses", - "values": [ - "4 - General action" - ] - }, - { - "text": "Ensure equal and unhindered access to health care for the Roma.", - "values": [ - "4 - General action" - ] - }, - { - "text": "Take all necessary measures to address domestic violence and sexual harassment as well as social discrimination against women, in accordance with the Convention on the Elimination of All Forms of Discrimination against Women", - "values": [ - "4 - General action" - ] - }, - { - "text": "Recommended that specific measures be adopted by the Government to safeguard the promotion and protection of the human rights of IDPs.", - "values": [ - "4 - General action" - ] - }, - { - "text": "Continue efforts in implementing CAT and its Optional Protocol with more concrete actions", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Strengthen mechanisms to prohibit discrimination against vulnerable groups, including persons with albinism, and ensure non-discrimination on applications for accreditation by civil society organizations, including organizations such as LGBT Association of Mozambique", - "values": [ - "4 - General action" - ] - }, - { - "text": "Continue the integration of human rights courses at all levels of education", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Continue its efforts to address sexual and gender-based violence, in particular by developing effective mechanisms to prevent violence against women and girls", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Continue its efforts to complete the implementation of the voluntary pledges", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Ensure full respect, in law and in practice, for the freedom of peaceful assembly and of association, consistent with international law ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Ensure that human rights are respected by multinational corporations", - "values": [ - "4 - General action" - ] - }, - { - "text": "Conduct an independent, transparent and objective investigation to improve the human rights situation through the Commission of Inquiry ", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Ensure that everyone including human rights defenders can peacefully exercise their right to freedom of expression in conformity with obligations under the ICCPR.", - "values": [ - "4 - General action" - ] - }, - { - "text": "Take the provisions of the United Nations Declaration on the Rights of Indigenous Peoples into account in the national legislation, because the Declaration is a United Nations document and represents guidelines for the conduct of States", - "values": [ - "4 - General action" - ] - }, - { - "text": "Seek alternative solutions to deprivation of liberty for minors in particular in order to avoid pre-trial detention of minors, while awaiting judgement ", - "values": [ - "4 - General action" - ] - }, - { - "text": "The Constitution and the legal framework guarantees the minorities rights without discrimination of national and ethno-linguistic minorities. The relevant institutions are committed to draft and implement a road map to improve legislative and policy framework as regards respect for and protection of minorities. ", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Continue to pursue open migration policy and regularize existing migrants with irregular status ", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Amend the Civil Code to fully recognize the legal capacity of persons with disabilities and to ensure that they have access to inclusive education and appropriate health-care services", - "values": [ - "4 - General action" - ] - }, - { - "text": "Continue efforts to increase the representation of indigenous women in decision-making posts ", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Ratify the Rome Statute of the International Criminal Court and fully align its national legislation with the provisions thereof", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Refrain from exercising oppression and vengeance against legal activists and those demanding political reforms, the release of all detainees who are held without due cause, and guarantee the rights of prisoners and detainees through fair and just trials", - "values": [ - "4 - General action" - ] - }, - { - "text": "Continue its efforts to protect the rights and interests of special groups, including migrants, women, children and people with disabilities", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Make effective efforts to respect its international obligations not to forcibly return any individual to a country where he or she may be at risk of serious human rights violations, including torture or other ill-treatment.", - "values": [ - "4 - General action" - ] - }, - { - "text": "Continue to develop the institutional framework with respect to the promotion and protection of human rights", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Accede to the OP-CAT", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Review the Charter in line with the recommendations of the Human Rights Committee to make sure that those who violated human rights be judged and prosecuted according to international standards, and to make sure that those who criticized the Government are not subjected to criminal prosecution", - "values": [ - "3 - Considering action" - ] - }, - { - "text": "As previously recommended, promote a legal framework providing legal certainty in the area of property, particularly land tenure and protection against forced evictions, and recognize the rights of indigenous peoples, pastoralists, hunters and gatherers", - "values": [ - "4 - General action" - ] - }, - { - "text": "Ratify the International Convention for the Protection of All Persons from Enforced Disappearance, Optional Protocol to the Convention against Torture, and Optional Protocol to the Convention on the Elimination of All Forms of Discrimination against Women ", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "The process of institutionalizing the National Consultative Forum on Human Rights is on-going. Government is committed to using the platform as a vehicle to promote dialogue in the field of human rights.", - "values": [ - "4 - General action" - ] - }, - { - "text": "Consider ratifying the Second Optional Protocol to the ICCPR aiming to abolish the death penalty", - "values": [ - "3 - Considering action" - ] - }, - { - "text": "Overcome its delay in the submission of its reports to the Treaty Bodies", - "values": [ - "4 - General action" - ] - }, - { - "text": "Change a de facto moratorium, which is in place in Myanmar since 1988, to a de jure moratorium on the use of the death penalty as a first step to its abolishing", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Share with the international community its experiences in national development and poverty reduction", - "values": [ - "1 - Minimal action" - ] - }, - { - "text": "Decriminalize homosexuality and respect the fundamental rights of LGBT persons", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Work actively to abolish legal and factual discrimination based on ethnicity, gender and caste, inter alia, by developing effective and independent mechanisms for the implementation of the Caste-based Discrimination and Untouchability Act", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Dedicate more resources to fight against negative stereotypes in the media, against the most affected minority groups (lesbian, gay, bisexual, transgender and intersex persons, Gypsies, Muslims, refugees and persons granted asylum)", - "values": [ - "4 - General action" - ] - }, - { - "text": "Continue its work for the realization of its priorities contained in chapter 6 of its national report", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Ensure the right of anyone convicted of a crime to have his or her conviction and sentence reviewed by a higher tribunal, as prescribed by article14 of the International Covenant on Civil and Political Rights", - "values": [ - "4 - General action" - ] - }, - { - "text": "Review existing legislation, including the Marriage Law, to comply with the Convention on the Elimination of All Forms of Discrimination against Women ", - "values": [ - "3 - Considering action" - ] - }, - { - "text": "Finalize the new draft Constitution by continuing to adopt an inclusive approach", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Ratify the International Convention for the Protection of All Persons from Enforced Disappearance, the Convention against Discrimination in Education and also the Rome Statute", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Adopt a national plan of action against sexual exploitation of children and against child labour. Raise the minimum age of criminal responsibility to internationally accepted standards and ensure that juvenile justice protection is accorded to all children up to the age of 18 years, as previously recommended", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Ratify the Optional Protocol to the Convention against Torture and other Cruel, Inhuman or Degrading Treatment or Punishment", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Follow-up on the recommendations by CEDAW and HRC with regard to discrimination against women introduce measures to eliminate cultural practices that discriminate against women", - "values": [ - "4 - General action" - ] - }, - { - "text": "Review and reform the Prosecution Office with a view to separating clearly the function of the Minister of Justice and Prosecutor General, in full consultation with key stakeholders", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Consider ratifying the International Labour Organization (ILO) Domestic Workers Convention, 2011 (No. 189) ", - "values": [ - "3 - Considering action" - ] - }, - { - "text": "Further strengthen programmes to address child labour, in particular through inspection, investigation, and preventative measures such as improving socioeconomic conditions for children and ensuring access to education", - "values": [ - "4 - General action" - ] - }, - { - "text": "Speed up the process of approval of the new Domestic Violence Bill", - "values": [ - "4 - General action" - ] - }, - { - "text": "Sign and ratify the International Convention on the Protection of the Rights of All Migrant Workers and Members of Their Families", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Finalize the Children\u2019s Code, which is aimed at, among others, curbing child marriages and ritual crimes", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Take the necessary steps to ensure equal access to employment and training opportunities to the Kalinago people and persons with disabilities", - "values": [ - "4 - General action" - ] - }, - { - "text": "(1) Speeding up the process of establishing the truth. (2) Speeding up the identification of human remains so that they can be handed over to family members. (3) Inquiring into and investigating crimes committed by demobilized individuals against women and children (sexual violence and recruitment of children especially). (4) Promoting the National Reparation Programme. (5) Expanding the Victim and Witness Protection Programme. (6) Giving more publicity to victims' rights and taking steps which will include promoting the activities that the National Reparation and Reconciliation Commission has been carrying out. (7) Getting the regional property restitution committees into operation. (8) Completing the historical commemorative document which the Act has assigned the National Reparation and Reconciliation Commission to produce.", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Harmonize its national human rights institution so that it is in conformity with the Paris Principles", - "values": [ - "4 - General action" - ] - }, - { - "text": "Take effective measures to prevent and prohibit racial profiling by the police ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Accept the visits requested by the United Nations special procedure mandate holders and the OHCHR Regional Office for South America", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Take affirmative measures to prevent exclusion and marginalization of indigenous population of the country", - "values": [ - "4 - General action" - ] - }, - { - "text": "Issue a standing invitation to Special Procedures and seek technical assistance through the OHCHR to submit outstanding reports on the implementation of human rights treaties", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Strictly observe the principle of non-refoulement and not resort to diplomatic assurances to circumvent it ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Put an end to unlawful practices which violate human rights, including extrajudicial executions and arbitrary detention, and close any arbitrary detention centres", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Consider making the asylum procedure more transparent including at the appeals stage ", - "values": [ - "3 - Considering action" - ] - }, - { - "text": "Continue efforts for the reintegration of former child offenders in the society", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Consider alternatives to prolonged pretrial detention and provide adequate resources to address poor prison conditions", - "values": [ - "3 - Considering action" - ] - }, - { - "text": "Continue efforts to improve the situation of children and, in this context, intensify the efforts to effectively prevent child labour ", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Continue the promotion and protection of the rights of migrant workers at all levels, in particular through the agenda on migrants\u2019 health", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Speed up the approval of the Child Code and ensure that this instrument covers all the provisions of the Convention on the Rights of the Child ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Make the necessary amendments to the law on "Advokatura" of 2015 in order to remove any obstacle to the independence of the profession of a lawyer, in parallel with actions promoting the independence of judges", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Raise social awareness on the importance of women's rights", - "values": [ - "4 - General action" - ] - }, - { - "text": "Deploy more efforts in order to address the problem of street children and child work and to devise training programs and to improve qualifications of those working in the field in order to receive the necessary technical cooperation assistance from human rights mechanisms and other relevant organisations", - "values": [ - "4 - General action" - ] - }, - { - "text": "Take the necessary measures to ensure due process and independence of witnesses, judges and prosecutors", - "values": [ - "4 - General action" - ] - }, - { - "text": "Enable the full deployment, without obstruction, of the UNMISS Regional Protection Force, as authorized by Security Council resolution 2304 (2016), to bring stability and help prevent further atrocities ", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Continue together finding the path back to the place where the full respect for human rights can be found", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Following the completion of the Family Health and Safety Study, continue its actions to eradicate domestic violence", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Respond positively to all outstanding requests of special procedures and extend a standing invitation to all special procedure mandate holders", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Consider changing legislation to expressly prohibit all forms of corporal punishment in all settings (at home, in schools and in other institutions) and conduct awareness-raising efforts to change the public's attitude to corporal punishment.", - "values": [ - "3 - Considering action" - ] - }, - { - "text": "Ensure all human rights activists operating in the country, including individuals cooperating with United Nations human rights mechanisms, are spared harassment and intimidation ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Consider extending a standing invitation to United Nations human rights special procedures", - "values": [ - "3 - Considering action" - ] - }, - { - "text": "Continue to increase education quality and participation as a means to combat poverty and child labour ", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Allocate resources to educational programmes in order to change views and neutralize racist ideas that were spread by extremist groups", - "values": [ - "4 - General action" - ] - }, - { - "text": "Continue the current efforts to increase the representation of women in senior positions, including in Parliament and the Government ", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Adopt further legislative, administrative and other measures to eliminate discriminatory treatment on the basis of gender identity ", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Take steps to increase the minimum age of marriage from 16 to 18 years", - "values": [ - "4 - General action" - ] - }, - { - "text": "Continue to strengthen programmes of prevention of domestic violence, especially against children and elderly persons ", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Comply with the international cooperation principles laid down in General Assembly resolution 3074 (XXVIII) regarding the extradition of persons accused of crimes against humanity, and extradite former Bolivian authorities legally charged for their trial in the country of origin", - "values": [ - "4 - General action" - ] - }, - { - "text": "Take the necessary measures to enhance international legal cooperation in cases of serious violations of human rights and ensure the right to truth and justice", - "values": [ - "4 - General action" - ] - }, - { - "text": "Continue efforts to ensure transparent adjudication of members of the security forces for human rights abuses, and continue efforts to reform the civilian police", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "As recommended by the Committee on the Rights of the Child, take measures to address the problem of violence against children, ensure a national system to receive, monitor and investigate complaints, and, when necessary, prosecute and punish perpetrators ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Continue its efforts to overcome gaps and implement provisions to address gender violence as well as to carry out prompt, thorough and impartial investigations into all complaints of gender-based violence", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Adhere to the International Convention for the Protection of All Persons from Enforced Disappearance ", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Accede to the International Convention for the Protection of the Rights of All Migrant Workers and Members of Their Families (ICMW)", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Organise public awareness-raising campaigns, especially among women, on Senegal's law on reproductive health", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Continue its efforts to alleviate poverty and promote economic and social sustainable development", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Continue to invest in education in order to reduce the illiteracy rate further, especially among girls and young women", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Allow for thorough, transparent and independent investigations into all reports of alleged human rights violations and abuses, as well as violations of international humanitarian and human rights law since March 2011, and bring the perpetrators to justice", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Further improve accountability structures with a view to eradicate impunity ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Take the necessary measures to guarantee the freedom of expression of journalists, workers, media and members of the opposition, and allow them to operate without being intimidated or arbitrarily arrested and detained ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Smooth acceptance of visit requests by special procedures mandate holders and swift accession to core international human rights instruments such as the Convention against Torture and Other Cruel, Inhuman or Degrading Treatment or Punishment, the Convention on the Rights of Persons with Disabilities and the International Convention for the Protection of All Persons from Enforced Disappearance ", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Encourage initiatives fostering social and inter-community harmony ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Recommend the abolishment of the death penalty in accordance with General Assembly resolution 62-149.", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Take all necessary steps to ensure that persons between the age of 14 and 18 are under all circumstances tried by a specialized juvenile justice system, that the best interests of the juvenile offenders are given the highest priority so they can successfully be reintegrated into society, and that deprivation of liberty of children is used only as a measure of last resort.", - "values": [ - "4 - General action" - ] - }, - { - "text": "Take the necessary measures to improve prison conditions and reduce prison overcrowding", - "values": [ - "4 - General action" - ] - }, - { - "text": "Strengthen the CNDHC", - "values": [ - "4 - General action" - ] - }, - { - "text": "Consider ratifying the International Convention for the Protection of the Rights of Migrant Workers and Members of Their Families", - "values": [ - "3 - Considering action" - ] - }, - { - "text": "Continue the necessary efforts in order to strengthen the right to education, and include within the education process a culture of human rights ", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Adopt a law that explicitly prohibits female genital mutilation", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "On 7 November 2013, BiH became the 6th member state of the CoE to ratify the CoE Istanbul Convention. Accordingly, BiH committed itself to undertake legislative and other measures to ensure the legal, institutional and organisational framework for the prevention of violence against women, protection of victims of violence and punishing perpetrators of violence. The Strategy for implementation of the CoE Istanbul Convention was developed and some entity strategies and action plans were also developed and implemented to combat domestic violence.", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Protect migrant workers from exploitation by ensuring that applicable laws and practices conform to international labour standards set by ILO", - "values": [ - "4 - General action" - ] - }, - { - "text": "Enhance the engagement towards increasing the role of civil society, especially by widening the space for political debate and ensuring the right of human rights defenders, opposition parties and journalists to freely carry out their activities", - "values": [ - "4 - General action" - ] - }, - { - "text": "Enforce the Human Trafficking Act and the Immigration Amendment Act, and allocate sufficient resources to combat trafficking in persons, human smuggling and other irregular migration", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Take into account the human rights dimensions of human trafficking, in particular the need to protect and provide assistance to victims, in the drafting of legislation to combat human trafficking", - "values": [ - "4 - General action" - ] - }, - { - "text": "Further reduce the number of crimes carrying the death penalty and consider a moratorium and eventual abolition", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Make further efforts to promote the rights of women and children and continue its efforts in the fight against domestic violence", - "values": [ - "4 - General action" - ] - }, - { - "text": "Strengthen efforts on youth development and empowerment", - "values": [ - "4 - General action" - ] - }, - { - "text": "Further improve conditions for the protection of the rights of national minorities", - "values": [ - "4 - General action" - ] - }, - { - "text": "Continue the process of modernization of the civil registry and identification of persons and the efforts to register and provide documents to the persons living in camps and to Haitians living abroad, seek support from friendly governments and international agencies, such as the Office of the United Nations High Commissioner for Refugees, as appropriate", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Adjust the regulatory and legal framework to comply with international human rights standards in order to guarantee freedom of religion ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Concentrate on the implementation of the international human rights instruments that have been ratified by the country", - "values": [ - "3 - Considering action" - ] - }, - { - "text": "Consider reviewing existing legislation, including the Marriage Law, to comply with the Convention on the Elimination of All forms of Discrimination against Women", - "values": [ - "3 - Considering action" - ] - }, - { - "text": "Make efforts to improve the availability, accessibility and quality of health care and education, in the case of internally displaced people", - "values": [ - "4 - General action" - ] - }, - { - "text": "Pursue its efforts to review the composition of the National Human Rights Commission and to bring it into line with the Paris Principles ", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Abolish all harmful and discriminatory customary laws and practices which are directed towards women and girls", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Continue its focus on the eradication of poverty and in ensuring general well-being of its people.", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Consider accession to the Optional Protocol to the Convention on the Rights of the Child on the sale of children", - "values": [ - "3 - Considering action" - ] - }, - { - "text": "Continue strengthening its successful social programs in favour of its people", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Continue pursuing measures aimed at improving police accountability and prioritizing alleged instances of misconduct ", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Continue making efforts to combat human trafficking ", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Ratify the International Convention on the Rights of Migrant Workers and Members of Their Families (ICRMW), as previously recommended", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Strictly implement the principles of the electoral Code of Conduct in the coming election ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Guarantee freedom of religion and worship to all persons in the country", - "values": [ - "4 - General action" - ] - }, - { - "text": "Continue its efforts to develop and expand child-friendly schools based on CRC ", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Further adopt and implement policies and measures aimed at preventing and punishing discrimination and violence against women, including sexual violence ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Protect and promote the right of Ethiopians to practise their religious faith or beliefs, including by enhancing the dialogue between different faith communities to address interreligious tensions ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Consider ratifying the International Covenant on Civil and Political Rights and its Optional Protocols with a view of abolishing the death penalty", - "values": [ - "3 - Considering action" - ] - }, - { - "text": "Adopt measures to ensure access to public services for persons who do not speak English as they are a significant proportion of the Namibian population. This was recommended by the Human Rights Committee in 2004", - "values": [ - "4 - General action" - ] - }, - { - "text": "Vigorously investigate all reports of sorcery-related killings to ensure that the perpetrators are brought to justice, and develop and implement strategies, including for social and cultural change, to prevent further killings ", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Revise its national legislation to decriminalise homosexuality and prohibit all forms of discrimination ", - "values": [ - "3 - Considering action" - ] - }, - { - "text": "Recommended the reduction of the great number of crimes which are subject to capital punishment, specifically, first of all, economic crimes, as well as abolishing the death penalty and increasing transparency on this issue by publishing national official statistics", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Work with OHCHR to prepare a common core document as a way to streamline and reduce the burden of treaty reporting, which will help with the problem, acknowledged in the State report, of overdue treaty reports ", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Introduce a definition of torture into the Criminal Code making torture a distinct offence with corresponding punishments", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Step up efforts against sexual violence and improve social support services to victims ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Extend invitations to the thematic special procedures particularly to those that have requested to visit the country as well as the Working Group on Arbitrary Detention.", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Move towards the ratification of the Optional Protocol to the Convention against Torture", - "values": [ - "4 - General action" - ] - }, - { - "text": "Take the necessary measures to eliminate the limitations suffered by children with disabilities in accessing education, health and other services", - "values": [ - "4 - General action" - ] - }, - { - "text": "Take further measures to address the problems faced in the areas of employment, education and housing by persons with immigrant background ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Ratify the Second Optional Protocol to ICCPR and definitively abolish the death penalty.", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Take additional social and legal protection measures for vulnerable children who are victims of sexual abuse and for their families", - "values": [ - "4 - General action" - ] - }, - { - "text": "Ensure that persons suspected of trafficking in human beings are duly prosecuted and judged, and facilitate access to justice and compensation for victims ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Ratify the Convention on the Elimination of All Forms of Racial Discrimination, the Convention against Torture and Other Cruel, Inhuman or Degrading Treatment or Punishment and its Optional Protocol", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Undertake a thorough investigation, consistent with international practices and standards, into the disappearance of Sombath Somphone", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Carry out a revision of the various legal systems in use, Islamic, civil and customary, to ensure that its treatment of women is uniform and in line with provisions of the Convention on the Elimination of All Forms of Discrimination against Women ", - "values": [ - "3 - Considering action" - ] - }, - { - "text": "End the practice of enforced sterilization of persons with disabilities for non-therapeutic reasons", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Continue to fight poverty with the support and cooperation of the international community ", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Promote gender equality and take measures, both in law and practice, in order to increase the participation of women in public life", - "values": [ - "4 - General action" - ] - }, - { - "text": "Introduce targeted strategies and labour market reforms to promote women\u2019s increased participation in formal sector employment, including by alleviating barriers to such participation", - "values": [ - "4 - General action" - ] - }, - { - "text": "Establish a fully independent national human rights institution, in accordance with the Paris Principles", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Create a legislative framework for the protection of human rights defenders", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Accept the visit request made by the Special Rapporteur on the promotion and protection of human rights while countering terrorism", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Fully implement the Trafficking in Persons Act 2014 and ensure the continued work of the Committee against Trafficking in Persons", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Continue its efforts to sign and/or ratify other human rights instruments to which it is not yet a party", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Abolish, modify or introduce legislation, measures and practices to ensure the effective elimination of all forms of legal discrimination against women and to allow for their full participation in society, including in decision-making and political processes, on an equal basis with men", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Take additional serious measures to eliminate violence against women and children, including sexual violence", - "values": [ - "4 - General action" - ] - }, - { - "text": "Continue to take steps to raise education standards", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Amend the Criminal Code to abolish provisions allowing a perpetrator of sexual violence to escape prosecution by marrying the victim or allowing the prosecution, trial or execution of the sentence to be dropped when the victim retracts the complaint and explicitly criminalize marital rape", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Ensure that the definition of torture in national law is fully in line with the Convention against Torture", - "values": [ - "4 - General action" - ] - }, - { - "text": "Fully implement certain recommendations to which it has committed itself", - "values": [ - "4 - General action" - ] - }, - { - "text": "Continue to consider becoming party to the remaining core human rights instruments", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Further improve the rights of immigrants", - "values": [ - "4 - General action" - ] - }, - { - "text": "Strengthen education in the field of human rights", - "values": [ - "4 - General action" - ] - }, - { - "text": "Review and amend national legal and policies integration measures with a view to respect the cultural and religious backgrounds of migrant communities, in particular Arab and Muslim communities ", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Undertake thorough consultations with persons with disabilities, representatives and labour organisations, and civil society prior to entering any reservation to article 27 of the Convention on the Rights of Persons with Disabilities upon ratification, with respect to reasonable accommodation", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "End the indiscriminate bombing of residential areas and the targeting of civil facilities, including schools and hospitals", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Take effective measures to eliminate the many obstacles that prevent women from entering the labour market, include in legislation the principle of equal pay for\nequal work and the requirement that this principle be scrupulously observed by\nemployers", - "values": [ - "4 - General action" - ] - }, - { - "text": "Accede to the Optional Protocol to the Convention on the Elimination of All Forms of Discrimination against Women.", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Ensure the effective participation of national minorities in public life, in decision-making processes and in executive and judicial institutions at all levels of governance ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Ensure the registration of all children after birth in all regions of the country", - "values": [ - "4 - General action" - ] - }, - { - "text": "Open cooperation channels with all United Nations human rights mechanisms and OHCHR", - "values": [ - "4 - General action" - ] - }, - { - "text": "Cooperate fully with the Special Rapporteur on the situation of human rights in the Democratic People's Republic of Korea and other United Nations human rights mechanisms and grant them unrestricted access to the country", - "values": [ - "4 - General action" - ] - }, - { - "text": "Continue its efforts, at national and international levels, towards the protection and promotion of the civil society space", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Step up measures, such as human rights education in schools, so as to promote a more tolerant and inclusive society ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Take all necessary steps to prevent police violence and introduce programmes in police forces and enforcement authorities aimed at raising awareness against torture and other cruel, inhuman or degrading treatment", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Pursue the process already undertaken of children's civil registration", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Take a step further by becoming a party to the Optional Protocol to the Convention on the Rights of the Child on a communications procedure ", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Continue its efforts to accede to the Rome Statute establishing the International Criminal Court", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Ratify ICCPR and CPED", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Continue to pay attention to promoting gender equality and eliminating discrimination against women ", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Make every effort to preserve the various components of the existing social protection programs and ensure the rights of vulnerable groups", - "values": [ - "4 - General action" - ] - }, - { - "text": "Take steps to address challenges faced by Roma women and girls in the areas of health care and employment", - "values": [ - "4 - General action" - ] - }, - { - "text": "Continue its efforts to reduce the prevalence of female genital mutilation in the country", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Investigate and prosecute all allegations of extrajudicial, summary or arbitrary killings and bring the perpetrators to justice in accordance with international standards.", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Continue applying the country's strategies and socio-economic development plans, in particular those aimed at reducing poverty ", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Establish a roadmap for the holding of elections at the earliest possible time ", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Review its immigration laws and policies and ensure compliance with its international obligations, especially regarding the rights of children", - "values": [ - "3 - Considering action" - ] - }, - { - "text": "Give tangible form to its wish to refurbish the National Human Rights Commission.", - "values": [ - "4 - General action" - ] - }, - { - "text": "Accede to Optional Protocol to the Convention on the Rights of the Child on a communications procedure ", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Take further measures to proceed with its judicial reform, to address land issues and to combat corruption, as these are important for the promotion and protection of human rights as well as the consolidation of democracy ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Take the necessary measures so that persons below 18, being under arrest, would not be subject to corporal punishment or other forms of ill-treatment", - "values": [ - "4 - General action" - ] - }, - { - "text": "Enhance its efforts in combating violence against women ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Strengthen the actions aimed at fighting criminal organizations, drug trafficking and human trafficking ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Implement the recommendations made by the Representative of the Secretary-General on the human rights of internally displaced persons following his visit to Georgia on the eviction of IDPs and their relocation ", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Developing a high-priority action plan to raise public awareness on all forms of discrimination and ill-treatment of children", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Strengthen the fundamental principles of equality and non-discrimination within the education system", - "values": [ - "4 - General action" - ] - }, - { - "text": "Strengthen efforts on the empowerment of women by implementing programmes aimed at changing society's perception of women and removing barriers affecting the employment of women", - "values": [ - "4 - General action" - ] - }, - { - "text": "Respect and promote the human rights of female immigrants and minority women, including their freedom of religion and expression.", - "values": [ - "4 - General action" - ] - }, - { - "text": "Adopt measures to reduce violence against women", - "values": [ - "4 - General action" - ] - }, - { - "text": "Make further efforts to promote gender equality and protect all women and girls from all forms of violence", - "values": [ - "4 - General action" - ] - }, - { - "text": "Work for universal free and compulsory basic education for school-age children", - "values": [ - "4 - General action" - ] - }, - { - "text": "Sign the Second Optional Protocol to the International Convention on Civil and Political Rights, aiming at the abolition of the death penalty, as a step towards accelerating the approval of the new draft Penal Code and the draft Criminal Procedure Code that would include the abolition of the death penalty ", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Address the situation of migrants and travellers ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Step up measures and actions to benefit vulnerable women and children by encouraging their access to credit, health and education", - "values": [ - "4 - General action" - ] - }, - { - "text": "Strengthen the office of the Ombudsman in the protection of the rights of nationals", - "values": [ - "4 - General action" - ] - }, - { - "text": "Implement its legislation to prevent violence against women and adopt a strategy to properly tackle the unequal status of women ", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Apply a human rights approach in its fight against poverty and HIV-AIDS ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Continue adopting effective measures to fight against discrimination", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Examine the 2011-2028 national plan for climate change with a view to addressing the challenges in its implementation in consultation with all stakeholders", - "values": [ - "3 - Considering action" - ] - }, - { - "text": "Continue strengthening measures to address disparities in the access to education and health services for aboriginal and islander children and their families", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Adopt a new national action plan for the eradication of child labour and ensure its effective implementation", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Intensify efforts to ensure the realization of the human rights of Afro- descendant populations", - "values": [ - "4 - General action" - ] - }, - { - "text": "Ensure that those evicted are urgently provided with adequate housing ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Continue the efforts to prevent and address gender-based violence, and in this context, ratify the Council of Europe Convention on Preventing and Combating Violence against Women and Domestic Violence", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Engage in a review of special security laws, with a view to amending legislation and regulations which restrict or deny freedoms of expression, association and peaceful assembly that are inconsistent with obligations under international law, including the Internal Security Act, the Computer Crimes Act, the Emergency Decree, the Official Information Act, and lèse-majesté provisions", - "values": [ - "3 - Considering action" - ] - }, - { - "text": "Review its legislation in order to ensure that victims of human rights abuses by business enterprises have access to effective complaint and redress mechanisms", - "values": [ - "3 - Considering action" - ] - }, - { - "text": "Intensify its efforts to ensure the return of displaced persons to their places of origin and compensated them whenever return is not possible", - "values": [ - "4 - General action" - ] - }, - { - "text": "Consider the adoption of a de jure moratorium on executions with a view to abolish the death penalty", - "values": [ - "3 - Considering action" - ] - }, - { - "text": "Strengthen health-care services for its citizens through better training of the medical personnel, particularly in remote rural areas", - "values": [ - "4 - General action" - ] - }, - { - "text": "Ensure that pregnant girls and young mothers have the opportunity to continue their education", - "values": [ - "4 - General action" - ] - }, - { - "text": "New Zealand is committed to improving in three priority areas: greater economic independence for women, more women in leadership positions, and improving women's safety from violence.", - "values": [ - "4 - General action" - ] - }, - { - "text": "New Zealand is committed to maintaining ongoing partnerships with iwi, hapu and whanau Maori.", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Share and transfer, in particular to other members of its region, its experiences and good practices in preparedness to prevent and response to mitigate the impact of hurricanes and other natural disasters, as well as its important achievements in consolidating a civil defence system with recognized results in the protection of the right to life and other basic human rights of citizens", - "values": [ - "1 - Minimal action" - ] - }, - { - "text": "Adopt measures to fight against all forms of violence against women, in particular, criminalize domestic violence and sexual harassment", - "values": [ - "4 - General action" - ] - }, - { - "text": "Continue their efforts to eliminate stereotypical attitudes about migrants and to increase measures to protect them ", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Adopt measures, including appropriate legislation, to eliminate all forms of violence against women", - "values": [ - "4 - General action" - ] - }, - { - "text": "Establish a National Compensation Tribunal, as recommended in the "Bringing Them Home" report, to provide compensation to Aboriginal and Torres Strait Islander people that are negatively affected by the assimilation policy, particularly as it applies to children unfairly removed from their families and the parents of those children ", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Continue efforts in human rights awareness raising, especially within the law enforcement sector", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Take measures to effectively prevent and prosecute acts of domestic and sexual violence and assist victims of such violence", - "values": [ - "4 - General action" - ] - }, - { - "text": "Carry out a review of the relevant laws to align them with the Convention on the Elimination of All Forms of Discrimination against Women", - "values": [ - "3 - Considering action" - ] - }, - { - "text": "Introduce a moratorium on the application of the death penalty with a view to repealing it", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Accede to and fully align its national legislation with the Rome Statute of the International Criminal Court, including by incorporating provisions to cooperate promptly and fully with the Court and investigate and prosecute genocide, crimes against humanity and war crimes effectively before its national courts, and accede to the Agreement on Privileges and Immunities of the Court ", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Strengthen the measures aimed at guaranteeing freedom of expression and freedom of the press", - "values": [ - "4 - General action" - ] - }, - { - "text": "Conduct a review of prison conditions in the country's various detention facilities and implement a plan for addressing overcrowding", - "values": [ - "3 - Considering action" - ] - }, - { - "text": "Adequately resource the implementation of the Fourth National Plan of Action on Gender Equality and promptly adopt the draft law on prevention of domestic violence", - "values": [ - "4 - General action" - ] - }, - { - "text": "Criminalize domestic violence and take comprehensive measures to address violence against women and girls", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Consider the possibility of ratifying ICRMW and CPED", - "values": [ - "3 - Considering action" - ] - }, - { - "text": "Take steps to ensure the independence and impartiality of judges and prosecutors, under all circumstances and in all cases, including by remedying the provisional status of the majority of judges and prosecutors", - "values": [ - "4 - General action" - ] - }, - { - "text": "Continue efforts to strengthen the National Human Rights Commission to be fully in line with the Paris Principles ", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Dismantle the separation wall.", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Take steps in order to alleviate the scale of overcrowding in prisons and improve the conditions of those detained", - "values": [ - "4 - General action" - ] - }, - { - "text": "Provide all necessary means for the implementation of the 2015 anti-slavery law, as well as the 2014 road map on the eradication of the consequences of slavery, including specific measures for the protection of victims and effective access to justice, as well as mandatory training on anti-slavery laws for police, administrative and judicial officials", - "values": [ - "4 - General action" - ] - }, - { - "text": "Launch an awareness-raising campaign regarding the elimination of violence against women ", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Azerbaijan pledged to pay even greater attention to improving gender equality and the protection of the rights of children, and to improving the social situation of refugees and internally displaced persons.", - "values": [ - "4 - General action" - ] - }, - { - "text": "Enhance the protection for child rights by issuing the child law ", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Treat acts of torture by law enforcement officials according to the seriousness of their offence in line with previous recommendations of the Human Rights Committee ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Ensure an impartial and comprehensive investigation of all reported cases of human rights violations and bring the perpetrators to justice", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Expand media freedoms, particularly access to broadcast media, and implement the recommendations of the OSCE in regards to reversing the ban on foreign FM radio broadcasting", - "values": [ - "4 - General action" - ] - }, - { - "text": "Promote the economic and social integration of Roma individuals and respect for their rights by ensuring that due consideration is given in all policymaking processes to the impact on Roma of proposed legislation", - "values": [ - "4 - General action" - ] - }, - { - "text": "Consider ratifying International Convention on the Protection of the Rights of All Migrant Workers and Their Families", - "values": [ - "3 - Considering action" - ] - }, - { - "text": "Increase Palau's participation in the main international human rights instruments and accede to the international treaties to which is not yet party ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Ensure effective prosecution and accountability of perpetrators of genocide, crimes against humanity and war crimes, and fully cooperate with the International Criminal Court under relevant Security Council resolutions", - "values": [ - "4 - General action" - ] - }, - { - "text": "Conduct a wide awareness-raising campaign to sensitize society to issues of gender equality", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Consider fully utilizing the constitutional amendments more effectively to prevent and investigate human rights violations, punish human rights violators, and provide effective redress and remedy to human rights victims", - "values": [ - "3 - Considering action" - ] - }, - { - "text": "Ratify the international human rights instruments that had been signed but not yet ratified", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Continue to work in favour of women's rights, including the fight against early marriages, respecting the rights of widows, and eradicating female genital mutilation and respecting sexual and reproductive rights", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Continue to submit reports to treaty bodies pursuant to conventions which the country has ratified", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Apply the Yogyakarta principles as a guide to assist in further policy development", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Continue the efforts to combat all forms of racial discrimination in particular religious or ethnic discrimination by ensuring penalties that have a deterrent effect and abolishing discriminatory laws that prohibit Muslim women from wearing veils which is viewed as a way of life that should be respected and considered ", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Reconsider legislation and laws in connection with freedom of opinion and expression and general freedoms", - "values": [ - "3 - Considering action" - ] - }, - { - "text": "Ensure that all steps taken to combat terrorism fully respect the Constitution and the rule of law", - "values": [ - "4 - General action" - ] - }, - { - "text": "Continue to take measures to strengthen mechanisms for the protection of the rights of women and children", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Strengthen information, cultural and educational work by reviving traditions of honouring the foundations of the family for the protection of motherhood, childhood and the family, for the elimination and prohibition of discrimination against children or vulnerable groups on the basis of gender and against children born out of wedlock, and for the prevention of the use of child labour and prevention of violence, including domestic violence", - "values": [ - "4 - General action" - ] - }, - { - "text": "Deepen its commitment with the International Criminal Court through the adaptation of its national legislation to the Rome Statute", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Urgently reform legislation on the registration of political parties so as to favour the creation of a political sphere that guarantees pluralism for all political parties, further to articles 25 and 26 of ICCPR", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Ensure that the judiciary system respects the principle of independence from the executive branch, as well as the rule of law", - "values": [ - "4 - General action" - ] - }, - { - "text": "Increase measures to eradicate discrimination against the immigrant population, as well as to improve the situation of Gypsies and integration into Spanish society", - "values": [ - "4 - General action" - ] - }, - { - "text": "Continue its efforts to implement the Paris Agreement on climate change, including through multilateral cooperation", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Provide State and cantonal authorities with training on human rights for the protection of the rights of transgender people", - "values": [ - "4 - General action" - ] - }, - { - "text": "Ratify the International Covenant on Civil and Political Rights and its Second Optional Protocol, aiming at the abolition of the death penalty", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Implement specific standards and regulations ensuring affordable water, sanitation and food for the most vulnerable groups and the barriers and challenges to poverty alleviation are properly addressed", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Ensure accountability for perpetrators of torture and access by victims of torture to justice, redress and rehabilitation", - "values": [ - "4 - General action" - ] - }, - { - "text": "Reconsider alternatives to the detention of migrants ", - "values": [ - "3 - Considering action" - ] - }, - { - "text": "Step up efforts to continue to meet the basic needs of the poor and other vulnerable groups.", - "values": [ - "4 - General action" - ] - }, - { - "text": "Ensure that all persons deprived of their liberty are afforded all the fundamental legal safeguards in accordance with international standards", - "values": [ - "4 - General action" - ] - }, - { - "text": "Develop a shelter system for victims of trafficking ", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Continue its endeavour to increase the national general budget for education, in order to guarantee the right to quality education for children ", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Give further account to its measures to ensure public access to the Internet as well as progress being made thereon", - "values": [ - "4 - General action" - ] - }, - { - "text": "Strengthen actions and programmes of the national government to make the Colombian society more equal and free from poverty ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Fully cooperate with OHCHR as well as special procedures", - "values": [ - "4 - General action" - ] - }, - { - "text": "Speed up internal discussions for the early signing and ratification of OPCAT and establish, accordingly, the national prevention mechanism ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Amend the Sexual Offences and Domestic Violence Act to criminalize marital rape ", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Develop an instrument to monitor the implementation and verification of the recommendations from the previous and current universal periodic reviews, paying special attention to the ratification of international human rights instruments which are pending, including the Optional Protocol to the Convention against Torture", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Strengthen research on the occurrence of child trafficking and regional cooperation with countries to which Armenian children are trafficked ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Continue strengthening its national human rights institutions", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Implement a gender perspective in education at all levels, especially by providing gender-trainings for teachers", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Continue to focus on the priority to combat sexual exploitation of children", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Take concrete measures aiming at fostering a genuine human rights culture with due regard to national and regional particularities as well as historical, cultural and religious background ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Take further steps to address discrimination against minority and vulnerable groups including reviewing issues surrounding the terms indigene-indigenous and taking action to discourage politicians from using religious, ethnic or settler indigene division for political ends", - "values": [ - "4 - General action" - ] - }, - { - "text": "Continue working on its National Plan "Education for All" so that all Cambodian children and youth further enjoy an equitable education service ", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Continue with its efforts for the establishment of an independent national human rights institution in accordance with the Paris Principles ", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Consider creating an independent national human rights institution that operates in accordance with the Paris Principles ", - "values": [ - "3 - Considering action" - ] - }, - { - "text": "Keep all places of detention under systematic review.", - "values": [ - "4 - General action" - ] - }, - { - "text": "Create an independent mechanism in charge of monitoring the implementation of the Convention on the Rights of Persons with Disabilities", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Continue its valuable contributions for the strengthening of intercivilization and inter cultural dialogue", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Investigate and punish all instances of racist statements or of intolerance of ethnic minorities in speeches by politicians and public officials ", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Clearly define criminal offences provided for under article 164 of the Criminal Code, such as the incitement to hatred or discord on ethnic or racial grounds, or affronts to national honour and to religious dignity and believes, so that they are in line with international norms on freedom of expression", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Protect its citizens from labour exploitation at home and abroad by providing improved regulation and oversight of workplace practices ", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Stick to its present course, which is directed towards the improvement of all as well as to the effective promotion and protection of human rights", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Legislation was before Parliament to outlaw the practice of female genital mutilation", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Remove restrictions on activities by the media and allow them an independent and critical coverage of Government's action ", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Introduce an official moratorium on the death penalty", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Continue to work with the OSCE Organization for Democratic Institutions and Human Rights on electoral reform, with a view to ensuring that the electoral process and legislative framework is fully in line with international standards, including the International Covenant on Civil and Political Rights, well in advance of the 2011 presidential election ", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Guarantee the Independence of the judiciary and continue the fight against corruption ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Continue to provide greater human rights and anti-discrimination training to law enforcement personnel and include measures to address racism in the National Action Plan for Integration", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Strengthen its national efforts in the area of combating trafficking in persons, especially women and children, including through human rights education and training for law enforcement officials", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "That no refugees should be forcibly returned to Somalia when conditions for their safe reestablishment are not present", - "values": [ - "4 - General action" - ] - }, - { - "text": "Continue social-economic reforms directed towards the creation of new jobs, fighting poverty, increasing the quality of education and medical care", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Engage civil society in the follow-up of the UPR ", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Continue efforts to promote the integration of immigrants in Portugal ", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Further pursue investigations on human rights implications of counter-terrorism measures, such as secret detention programs, with a view to identifying allegations of torture or cruel, inhuman or degrading treatment of detainees ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Adopt further measures to drastically improve the protection of worker's rights to a safe and healthy workplace ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Continue the practice of implementing programmes aimed at further improving the welfare of the population ", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Adopt effective measures to eradicate violence against the lesbian, gay, bisexual, transsexual and intersex group, as well as the inclusion within the Charter of Rights adopted in 2011 of a provision for no discrimination on grounds of sexual orientation", - "values": [ - "4 - General action" - ] - }, - { - "text": "Implement the necessary reforms to reduce their greenhouse gas emissions and cooperate with the international community to mitigate threats against human rights resulting from climate change", - "values": [ - "4 - General action" - ] - }, - { - "text": "Ensure training for police officers, prosecutors and judges in order to ensure that they can recognize, investigate and prosecute hate crimes ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Implement a comprehensive national plan of action for the advancement of women and create mechanisms to coordinate and monitor its implementation ", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Continue its search for creative and integrated solutions to the root causes that lead to disproportionate incarceration rates of the Maori population ", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "In line with the recommendations of the Human Rights Committee with regards to discrimination against women, take measures to ensure that national laws, customary laws and some aspects of Sharia law be interpreted and implemented in accordance with the principle of what most favors the individual", - "values": [ - "4 - General action" - ] - }, - { - "text": "Take all necessary measures to effectively strengthen the combat against domestic violence and sexual violence against women ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Achieve a broad consensus to approve the law establishing a statute for victims of conflict and ensure that this law leads to effective reparations for all victims, especially victims of the State.", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Facilitate full access of international and local humanitarian organisations to prisons and speed up judicial reforms, including the construction of new prisons", - "values": [ - "4 - General action" - ] - }, - { - "text": "Expedite the ratification of the Istanbul Convention and criminalize domestic violence in order to provide more comprehensive coverage for combating violence against women and girls", - "values": [ - "3 - Considering action" - ] - }, - { - "text": "Organize awareness-raising programmes in favour of public as well as local and national authorities on issues related to combating human trafficking and relevant laws", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Intensify efforts to cooperate with the international human rights system by signing and ratifying the Optional Protocol to the International Covenant on Economic, Social and Cultural Rights - the Optional Protocol to the Covenant on Civil and Political Rights - the Optional Protocol to the\nConvention on the Elimination of All Forms of Discrimination against Women - the Convention against Torture and Other Cruel, Inhuman or Degrading Treatment or Punishment and the Optional Protocol thereto - the two Optional Protocols to the Convention on the Rights of the Child - and the Convention on the Rights of Persons with Disabilities and the Optional Protocol thereto - and ratify the International Convention for the Protection of All Persons from Enforced Disappearance \n", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Intensify efforts in its fight against violence against women and amend laws that may be obstacles to this fight", - "values": [ - "4 - General action" - ] - }, - { - "text": "Improve conditions in all prisons and detentions to be brought into compliance with international standards, including the United Nations Standard Minimum Rules for the Treatment of Prisoners ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Ratify ICESCR", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Take immediate measures to address the capacity issues faced by security and justice sectors, including reducing the amount of time it takes for court cases to be heard ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Step up efforts to tackle the practice of early and forced marriages", - "values": [ - "4 - General action" - ] - }, - { - "text": "Complete ratification of the Convention against Torture, the International Convention on the Protection of the Rights of All Migrant Workers and Members of Their Families, the Convention relating to the Status of Statelessness Persons and the Convention on the Reduction of Statelessness", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Ensure that international norms on freedom of religion and belief and cult are fully respected, including the rights of religious minorities", - "values": [ - "4 - General action" - ] - }, - { - "text": "Adopt a comprehensive approach to the security situation which ensures that the perpetrators of violence are brought to justice and that the security forces' rules of engagement take full account of due process and human rights", - "values": [ - "4 - General action" - ] - }, - { - "text": "Further strengthen the Legal Aid Department of the Ministry of Justice and establish relevant mechanisms for coordination of its activities with other entities working in the area of providing legal assistance", - "values": [ - "4 - General action" - ] - }, - { - "text": "Continue providing training for police officers, prosecutors, judges and lawyers on the scope and enforcement of the Criminal Code provision prohibiting racist acts ", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Take the measures necessary to accelerate the unification of the three national human rights institutions, which should have been completed at the end of 2006, in order to help avoid fragmented policies and administrative structures that hinder the fulfillment of human rights", - "values": [ - "4 - General action" - ] - }, - { - "text": "Expedite the adoption of legislation to prohibit all forms of corporal punishment in the home, including \u201creasonable chastisement\u201c, and ensure that those who perpetrate corporal punishment are held accountable", - "values": [ - "4 - General action" - ] - }, - { - "text": "Take additional steps aimed at addressing the high rate of child marriage, including by fully implementing the national strategy aimed at reducing child marriage by 2021", - "values": [ - "4 - General action" - ] - }, - { - "text": "Fully implement the Anti-Trafficking Act No. 11 of 2008", - "values": [ - "3 - Considering action" - ] - }, - { - "text": "Continue consolidating its social policies towards the achievement of decent employment, quality basic education and a healthy life with food security for all its people ", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Ensure that the wages of men and women are equal when doing the same work", - "values": [ - "4 - General action" - ] - }, - { - "text": "Undertake practical steps to put an end to corporal punishment of children in all settings", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Step up efforts aimed at capacity-building and increasing awareness of human rights in Yemen.", - "values": [ - "4 - General action" - ] - }, - { - "text": "Strengthen awareness-raising and training in the human rights area, in particular for judges and law enforcement personnel ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Recognize and respect the right of Palestinian people to self determination and end the occupation of all territories occupied since 1967", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Pursue with resolve the implementation of different measures aimed at reforming and strengthening the existing judicial system.", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Continue the implementation of Roma integration policies in all social economic cultural political and educational sectors", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Take the necessary steps to proclaim the Juvenile Justice Act which was passed in 2012", - "values": [ - "4 - General action" - ] - }, - { - "text": "Continue efforts empowering women in all levels of decision-making and ensuring their participation in politics, the economy and social life", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Formulate and implement a plan for the integration of people with disabilities into mainstream society ", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Complete its normative framework by the ratification of the instruments already signed, in particular the CPED, CRPD", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Continue to study how it could further improve the integration of migrants in its society, with a view to providing them with equal access to all basic social services and just conditions of work", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Improve the access of women in rural areas to justice and activities that allow them and their families to improve their living standards ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Allow national and international NGOs to conduct their work in accordance with the International Covenant on Civil and Political Rights ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Consider prompt accession to the Optional Protocol on the Covenant on Economic, Social and Cultural Rights", - "values": [ - "3 - Considering action" - ] - }, - { - "text": "Intensify specifically its efforts to combat widespread violence against women and girls, including through gender-sensitive legislation, stronger enforcement of existing laws as well as by increasing public awareness and promoting gender equality", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Promote a legal framework that provides legal certainty in property matters, in particular land ownership and protection against forced evictions ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Develop an awareness campaign to address traditional beliefs that are harmful to the rights of children, especially their right to life.", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Decriminalize same sex relations including in the Sexual Offences Act", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Further assist the efforts carried out by the new Non-Discrimination Ombudsman in providing legal protection and remedies against all forms of discrimination", - "values": [ - "4 - General action" - ] - }, - { - "text": "That the other States of Micronesia, including Yap, Chuuk and Pohnpei, introduce legislation criminalizing domestic violence, to ensure that there is a consistent approach in protecting families and criminalizing domestic violence across the whole of the Federated States of Micronesia", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Provide assistance, reintegration programs and skills training for victims of human trafficking to allow their reintegration into society", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Continue policy to empower women and children", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Further strengthen specific plans for the demobilization of children and their social reintegration ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Collaborate with NGOs or other victim advocates to promote a victim-centred approach in the identification of trafficking victims", - "values": [ - "4 - General action" - ] - }, - { - "text": "Strengthen the promotion and protection of the rights of the elderly", - "values": [ - "4 - General action" - ] - }, - { - "text": "Ratify the CRPD ", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Ensure safeguards against arbitrary arrest and torture or other cruel, inhuman or degrading treatment and ratify the Optional Protocol to the Convention against Torture and Other Cruel, Inhuman or Degrading Treatment or Punishment", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Consider the possibility of ratifying the Optional Protocol to the Convention on the Rights of the Child on the involvement of children in armed conflict", - "values": [ - "3 - Considering action" - ] - }, - { - "text": "Continue addressing effectively the socio-economic inequalities affecting the Maori.", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Take concrete legislative measures to grant for the minimum age of admission to employment as laid out by ILO Convention No. 138, in a comprehensive manner ", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Ensure effective implementation of the National Plan of Action for children (2010-2016)", - "values": [ - "4 - General action" - ] - }, - { - "text": "Call on the international community to provide the much-needed technical and technological know-how and finances to Mauritius in support of its efforts to attain full enjoyment of civil and political rights as well as economic, social and cultural rights for its population", - "values": [ - "1 - Minimal action" - ] - }, - { - "text": "Intensify its efforts towards abolishing the death penalty including through holding public consultations on a referendum on its abolition in accordance with Ghana\u2019s Constitution", - "values": [ - "4 - General action" - ] - }, - { - "text": "Reduce the length of prison sentences for non-violent crimes.", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Harmonise laws on abortion with maternal health and child marriage", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Develop an independent child rights monitoring mechanism and allocate adequate financial resources to ensure effective implementation of the relevant international obligations", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Ensure respect for the human rights of Bolivians who go to and return from Chilean territory, especially in situations that can lead to arbitrary detention, on the understanding that every person has the right to move freely, in particular the right to leave and return to his/her country ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Strengthen mechanisms aimed at combating discrimination, racism and xenophobia, and persevere in the adoption of measures to promote tolerance and respect of foreigners and members of national, racial and ethnic minorities ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Strengthen measures aimed at fighting against impunity among perpetrators of acts of sexual violence", - "values": [ - "4 - General action" - ] - }, - { - "text": "Continue its efforts to provide fundamental and basic human rights to its citizens", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Harmonize national laws with international regulations on rights of women and children", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Guarantee that hate to foreigners and racial and religious extremism are not obstacles in dealing with refugees and asylum seekers", - "values": [ - "4 - General action" - ] - }, - { - "text": "Continue a constructive dialogue with human rights non-governmental organizations, especially given the current polarization between them and the Government.", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Take concrete measures to improve victim assistance, including health and psychosocial help, to victims of sexual violence and rape, also by providing free medical certificates to rape survivors, since this for most victims unaffordable document is deemed crucial in the course of any pursued investigations", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Provide all enforcement officials with proper sensitivity training in relation to sexual orientation, gender identity and HIV-AIDS ", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Continue efforts to strengthen the legal framework, including by realizing its commitment to ratify CEDAW and CAT", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Implement all international human rights instruments related to Aboriginals, women, Arabs, Muslims and other religious minorities, migrants and refugees and enhance and protect their rights against violations", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Create a law or guidelines to end the use of excessive force against individuals suspected of involvement in terrorist activities, improve pretrial detention conditions, install video cameras in places of detention and ensure access to legal services without delay", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Immediately establish a system to prevent sexual violence against female prisoners", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Lobby for and implement access to information legislation to encourage greater transparency and government ability", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Continue to fight HIV-AIDS with the support of the international community ", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Review the legislation on religious groups and organizations so as to ensure its compliance with ICCPR ", - "values": [ - "3 - Considering action" - ] - }, - { - "text": "Consider the ratification of the International Covenant on Economic, Social and Cultural Rights and the International Convention on the Protection of the Rights f All Migrant Workers and Members of Their Families", - "values": [ - "3 - Considering action" - ] - }, - { - "text": "Increase awareness and training campaigns at national level, to combat the trafficking of women and children, and deepen this topic in school programmes ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Strengthen measures aimed at protecting vulnerable persons", - "values": [ - "4 - General action" - ] - }, - { - "text": "Take all necessary steps to formally abolish the death penalty", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Review the broad reservations to CRC and to CEDAW ", - "values": [ - "3 - Considering action" - ] - }, - { - "text": "Ensure that the Public Order management bill currently discussed is fully in line with international human rights standards", - "values": [ - "4 - General action" - ] - }, - { - "text": "Include in its action plans the protection of persons with albinism", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Implement policies focused on the integration of children with special needs into the public education system, adapt buildings, and provide training to teachers and educational staff to promote an enabling and inclusive environment for education", - "values": [ - "4 - General action" - ] - }, - { - "text": "Establish a moratorium on executions with a view to abolishing the death penalty for all crimes", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Take practical steps to address the problems of street children and take effective measures to eliminate prohibited child labour ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Accede to ILO Convention No.169 concerning Indigenous and Tribal Peoples in Independent Countries.", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Initiate legislative measures to effectively address and eradicate longstanding discrimination, including "untouchability"", - "values": [ - "4 - General action" - ] - }, - { - "text": "Ratify ICCPR and OP-CAT", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Organize visits to Canada of the Special Rapporteur on the human rights of migrants, the Special Rapporteur on torture, the Special Rapporteur on extrajudicial executions, the Special Rapporteur on trafficking in persons, especially women and children and the Special Rapporteur on sale of children, child prostitution and child pornography ", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Continue to enhance efforts to protect the human rights of migrants", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Strengthen children's access to health services, particularly as regards HIV/AIDS, malaria and tuberculosis", - "values": [ - "4 - General action" - ] - }, - { - "text": "Protect women from sexual violence by expanding the scope of the anti-domestic violence law to other situations than cohabitant couples and by explicitly criminalizing marital rape", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Ensure that the refugee flows across its territory continue to be managed in accordance with the obligations of Greece in respect of human rights", - "values": [ - "4 - General action" - ] - }, - { - "text": "Consider a large-scale transfer of land for civilian use in the northern and eastern provinces of the country", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Extend an open and permanent invitation to all United Nations special procedures", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Continue its development of education to achieve a higher primary school enrolment", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Take effective measures to ensure equal opportunities and treatment of women and men in the labour market in both private and public sectors ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Take further concrete steps to move quickly towards the abolition of the death penalty", - "values": [ - "4 - General action" - ] - }, - { - "text": "Lift restrictions on the rights to freedom of expression and association, including restrictions on the media that are not in accordance with ICCPR, and show greater tolerance for Cubans who express opposing views peacefully", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Further its efforts to fight terrorism and protect human rights at the same time, especially the support to the conclusion of a comprehensive international treaty to combat terrorism ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Lift laws that are contrary to the state's international obligations to respect, protect and promote freedom of expression and the right of peaceful and legitimate assembly", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Request assistance from the specialized agencies, funds and programmes of the United Nations in order to establish a national human rights institution which would strengthen, coordinate and develop the required measures to respect the human rights of all in the country", - "values": [ - "1 - Minimal action" - ] - }, - { - "text": "Adopt measures for the prevention of sexual abuse and provide facilities for the care, recovery and reintegration for child victims of violence", - "values": [ - "4 - General action" - ] - }, - { - "text": "Ratify the Convention against Torture and Other Cruel, Inhuman or Degrading Treatment of Punishment as soon as possible ", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Adopt measures to strengthen the administration of justice and the national human rights commission, to enforce the action of the State against organized crime", - "values": [ - "4 - General action" - ] - }, - { - "text": "Ratify the ICESCR", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Fully implement Comprehensive Act 348 on Guaranteeing a Life Free of Violence for Women", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Pursue its efforts to further empower women and enhance their condition and participation in political life.", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Ensure the consistent implementation of Law n° 17 of 2010 and protect journalists from arbitrary arrests on the grounds of defamation offenses", - "values": [ - "4 - General action" - ] - }, - { - "text": "Ratify the Optional Protocol to the Convention on the Rights of Persons with Disabilities (OP-CRPD)", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Develop a closer policy focus on the special needs and care of persons with disabilities in order to help them live productive lives and contribute to their communities ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Modify its legislation on nationality so as to guarantee equal rights for men and women with respect to the handing down of nationality to their children and spouses", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Study the possibility of creating a national system for the follow-up of international recommendations on human rights", - "values": [ - "3 - Considering action" - ] - }, - { - "text": "Continue its efforts to provide protection and care for its elderly population and other vulnerable groups", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Ensure the rights of indigenous peoples and local forest dependent peoples in law and practice, in particular regarding their rights to traditional lands, territories and resources ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Take appropriate and robust measures for the elimination of practices, such as the placement of children, early marriages and child trafficking", - "values": [ - "4 - General action" - ] - }, - { - "text": "Continue to improve standards of living, ensure broad public access to quality education and health services", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Sign and/or ratify the International Covenant on Economic Social and Cultural Rights and also ratify its Optional Protocol, the International Convention on the Protection of the Rights of All Migrant Workers and Members of Their Families and the International Convention for the Protection of All Persons from Enforced Disappearance", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Refrain from introducing the death penalty in the national legal system, also in respect of international obligations", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Continue to take steps to prevent disruption to education faced by children affected by Hurricane Matthew, and implement policies and programmes that promote access to education", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Continue its efforts in the eradication of poverty", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Pursue measures for the protection of children, in particular children living in the streets and domestic worker children", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Decriminalize defamation", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Consider amending Law No. 51 (2006) on combatting the crime of human trafficking ", - "values": [ - "3 - Considering action" - ] - }, - { - "text": "Continue to increase development aid to reach the target of 0.7% GDP as this will increase the ability of aid recipients to achieve the right to development and protect and promote human rights", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Finalize the ratification of the International Convention on the Elimination of All Forms of Racial Discrimination", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Consider prohibiting by law corporal punishment within the family and other institutions ", - "values": [ - "3 - Considering action" - ] - }, - { - "text": "Work to adhere to the protocols to those conventions that it has already signed", - "values": [ - "4 - General action" - ] - }, - { - "text": "Adopt and implement appropriate and efficient measures to address the high incidence of sexual violence against women and girls, including addressing the reported widespread impunity of perpetrators ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Ensure the right to freedom of expression online/offline in law and in practice, including by decriminalizing defamation, and to investigate all cases of threats and attacks against journalists and human rights defenders", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Ratify OP2-ICCPR ", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Ratify the Optional Protocol to the Convention on the Rights of the Child on the sale of children, child prostitution and child pornography", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Continue to pursue policies that will increase enrolment in schools of school-going aged children, in particular girls, and children from indigenous communities and minorities", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Ensure protection of migrants and minority groups, in particular of those of Asian origin, from all forms of racial stereotyping and derogatory treatment, including in line with the recommendation of CERD to develop a comprehensive legislative framework for addressing the problem of incitement to racial hatred on the Internet ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Consider ratifying the Convention on the Rights of the Child and the Rome Statute of the International Criminal Court", - "values": [ - "3 - Considering action" - ] - }, - { - "text": "Execute fully the judgement of the Inter-American Court of Human Rights regarding logging and mining concessions in the territory of the Saramaka people and enshrine land rights of indigenous and Maroon groups in the Surinamese legal framework ", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Ratify the United Nations Educational, Scientific and Cultural Organization (UNESCO) Convention against discrimination in education", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Consider ratification of the Optional Protocol to the Convention on the Elimination of Discrimination against Women, the International Convention on the Protection of the Rights of All Migrant Workers and Members of Their Families and the Convention on the Rights of Persons with Disabilities and its Optional Protocol.", - "values": [ - "3 - Considering action" - ] - }, - { - "text": "Reconsider its position on reservations to CEDAW", - "values": [ - "3 - Considering action" - ] - }, - { - "text": "Establish an independent national human rights institution in accordance with the Paris Principles which complements the role of civil society organizations", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Take measures to increase the participation of women in governance and decision-making bodies", - "values": [ - "4 - General action" - ] - }, - { - "text": "Continue to strengthen and promote the rule of law based on effective and accountable state institutions, through, inter alia, the reform of the defence sector and the adoption of measures to foster independence of the Judiciary", - "values": [ - "4 - General action" - ] - }, - { - "text": "Take measures towards ensuring the equal and the full enjoyment of the basic rights of all its citizens including persons belonging to indigenous communities, and to effectively prevent and, if necessary, combat racial discrimination ", - "values": [ - "4 - General action" - ] - }, - { - "text": "The MSAR [Macao Special Administrative Region] Government commits to improve social rights. Cooperation with the civil society and NGOs will be enhanced.", - "values": [ - "4 - General action" - ] - }, - { - "text": "Ensure prompt, impartial and full investigations into all complaints and all instances of deaths in custody", - "values": [ - "4 - General action" - ] - }, - { - "text": "Dismantle and disarm the paramilitary forces, militias and armies through the revocation of Executive Order 546 that protects their existence, putting an end to the use of child soldiers ", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Step up effort to prevent and combat sexual exploitation and trafficking in women and children, including by ensuring that all allegations of trafficking and sexual abuses are investigated and the perpetrators are brought to justice and punished ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Establish, as soon as possible, through the allocation of a budget line and the appointment of its members, the Independent High Commission as a complementary body to the Human Rights Commission of the Council of Representatives", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Continue playing a positive international role in the field of human rights by maintaining its financial contributions and continue its bilateral human rights dialogue", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Take measures to strengthen human rights education and sensitisation", - "values": [ - "4 - General action" - ] - }, - { - "text": "Continue its efforts and improve its legal and institutional frameworks for protection against discrimination by ensuring the same level of protection for all grounds of discrimination", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Take measures to reduce infant mortality rates", - "values": [ - "4 - General action" - ] - }, - { - "text": "Make further efforts to update and amend the laws on migration to bring them into line with international standards", - "values": [ - "4 - General action" - ] - }, - { - "text": "Ensure, in the context of the reform of the Penal Code and the Code of Criminal Procedure, to harmonize the Senegalese legislation with international law", - "values": [ - "4 - General action" - ] - }, - { - "text": "Enact legislation and take the necessary measures to protect people from discrimination, especially women, pygmies and indigenous peoples", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Take measures to improve the criminal justice system, including through the implementation of the 164 articles outlined in Presidential Decree No. 45 of August 2012 ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Include in Swiss law provisions against hate crime and a provision to protect against discrimination and hate speech against specific groups including women, persons with disabilities and refugees", - "values": [ - "4 - General action" - ] - }, - { - "text": "Consider re-establishing the moratorium on executions with a view to abolishing the death penalty", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Ratify the Optional Protocol to the Convention against Torture and Other Cruel, Inhuman or Degrading Treatment or Punishment", - "values": [ - "3 - Considering action" - ] - }, - { - "text": "Ratify ILO Convention No. 169 on indigenous peoples ", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Guarantee the right to freedom of expression, including freedom of the press, association and peaceful assembly and align its legislation with its obligations and commitments based on relevant international law", - "values": [ - "4 - General action" - ] - }, - { - "text": "Strengthen the National Strategic Plan for the Reduction of Maternal Mortality 2012-2016 and the National Plan for the Prevention of Adolescent Pregnancy ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Take measures to ensure the effective and timely implementation of the constitutionally mandated judicial reforms and police professionalization by providing integrated training and capacity building to stakeholders involved in the delivery of justice, including judges, prosecutors, lawyers, police and criminal investigations", - "values": [ - "4 - General action" - ] - }, - { - "text": "Strengthen its efforts in poverty alleviation in order to continue reducing the number of persons living in poverty", - "values": [ - "4 - General action" - ] - }, - { - "text": "Amend provisions of the Personal Status Code that discriminate against married women, in particular with regard to property, polygamy and repudiation, and repeal all discriminatory measures against women within the Mauritanian Nationality Code, as recommended by the Committee on the Elimination of Discrimination against Women ", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Adopt all measures with a view to full compliance of national policy with its obligations under CEDAW ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Introduce programmes and projects within the concept of human rights education on the prevention of genocide, war crimes and crimes against humanity", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Accept the recommendation of the Committee on the Rights of the Child that Colombia seek technical assistance from, inter alia, OHCHR and UNICEF, in areas including juvenile justice, rehabilitation, repatriations, police training and social reintegration of demobilized child soldiers and child victims of landmines", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Include intercultural education in school curricula ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Enhance the implementation of the existing laws, policies and mechanisms relating to human rights, enshrined in the second National Human Rights Plan of Action for the period 2009-2013 ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Develop a strategy or a national plan for the deinstitutionalization of children from residential care institutions to foster families", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Consider the adoption of a national plan of action in pursuance of the United Nations Declaration on the Rights of Indigenous Peoples (UNDRIP)", - "values": [ - "3 - Considering action" - ] - }, - { - "text": "Take all necessary measures to facilitate access for victims to justice and ensure that they obtain redress", - "values": [ - "4 - General action" - ] - }, - { - "text": "Further provide support and cooperation with regional and international organizations, financial institutions in Africa, the United Nations system and other development partners for utilizing all its advantages to turn Togo into a major economic and trade centre in West Africa ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Begin a process to amend the legal code that applies to media licensing and libel allegations, allowing for greater liberalization of the media and the availability of media to all parties and candidates during election seasons ", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Establish a timetable for reform of the system of sponsorship-based employment ", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Strengthen legislation and establish clear guidelines and measures to prevent child exploitation and their commercial sexual exploitation", - "values": [ - "4 - General action" - ] - }, - { - "text": "Provide training on human rights and freedom of the press to the police and armed forces in order to prevent any deterioration in this field ", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Ratify the ICESCR, CEDAW, CRC the CRPD, the Additional Protocol I and II - 1977 -, to the Geneva Conventions, the ICC Statute, as well as the 1st and 2nd Protocol to the Hague Convention 1954", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Thoroughly and impartially investigate all instances of extrajudicial killings and excessive force committed by security forces", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Continue its efforts to guarantee the protection and rehabilitation of the victims of trafficking in persons, especially for women and children", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Take effective legislative measures for special protection and integration mechanisms for victims of slave labour ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Ratify the Optional Protocol to the Convention against Torture and Other Cruel, Inhuman or Degrading Treatment or Punishment and bring detention conditions in places of deprivation of liberty in line with international standards", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Continue and strengthen the ongoing efforts aimed at increasing the accessibility and quality of health services and education for all its citizens", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Take specific steps to stop the spread of discriminatory statements, prejudice and stereotypes against national minorities, refugees and asylum seekers in the mass media and on social networks", - "values": [ - "4 - General action" - ] - }, - { - "text": "Amend penal code articles that punish peaceful free expression with prison terms to conform to Algeria\u2019s Constitution", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Continue reforms of the penitentiary system with special focus on human rights training for penitentiary staff", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Take additional efforts in order to improve its reporting to the treaty bodies on human rights", - "values": [ - "4 - General action" - ] - }, - { - "text": "Raise the minimum age of criminal responsibility to an acceptable level, in compliance with international standards ", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "End the practice of executing children and bring the law and judicial practices into line with fair trial guarantees in international standards", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Accede to OP-CAT", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Accelerate the poverty alleviation programmes with a view to addressing the uneven distribution of wealth, access to health and the high level of social exclusion of indigenous peoples and People of African Descent.", - "values": [ - "4 - General action" - ] - }, - { - "text": "Repeal article 230 of the Criminal Code", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Continue its efforts in implementing the national strategy to combat trafficking in persons", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Sign and ratify, as soon as possible, all fundamental international human rights instruments and their protocols ", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Increase the minimum legal age for marriage for girls and develop and implement a comprehensive and coordinated strategy to eliminate child, early and forced marriage and to support already married children and adolescent girls", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Continue implementing the recommendations of the BICI ", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Continue developing policies for true gender equality and the fight against domestic violence", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Strengthen the mandate of the National Office against Racial Discrimination", - "values": [ - "4 - General action" - ] - }, - { - "text": "Strengthen its policies on protection of minors against child labour and sexual exploitation ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Consider the recommendation by the Committee on the Rights of the Child regarding the detention of minors under the age of 14 years, particularly refugee and unaccompanied children and child asylum seekers", - "values": [ - "3 - Considering action" - ] - }, - { - "text": "Develop with UNHCR an administrative framework to distinguish refugees and asylum seekers from irregular migrants and apply international standards for the treatment of foreign nationals", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Continue with its efforts to further promote and protect human rights and freedoms ", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Continue the efforts to attain the respect for the rights and fundamental freedoms of the entire population, and adopt all necessary measures to guarantee the fight against impunity of perpetrators of crimes, acts of violence and all human rights violations", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "That the draft child rights law forbid corporal punishment of children in all settings ", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Incorporate the international instruments it acceded to into domestic legislation", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Ensure independent, effective and speedy investigation into violations of the right to freedom of expression committed by officials engaged in law enforcement duties, hold those responsible to account, and provide redress to victims", - "values": [ - "4 - General action" - ] - }, - { - "text": "Provide inclusive education for children with disabilities and include human rights education in schools", - "values": [ - "4 - General action" - ] - }, - { - "text": "Facilitate access to education and land rights, in particular for women and people in rural areas", - "values": [ - "4 - General action" - ] - }, - { - "text": "Draft and enact legislation prohibiting and punishing all forms of trafficking in persons, including the forced labour of migrants. Promulgate laws imposing stricter punishments for violations, and hold employers who violate laws accountable and establish a national minimum wage", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Release immediately and rehabilitate all those human rights defenders, journalists, other civil society representatives, imprisoned without credible criminal charges ", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Take further measures to effectively combat trafficking in human beings, especially with regard to vulnerable groups such as women and children ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Take concrete steps to ensure the 2015 national elections are more representative and participative than those in 2010, especially around freedom of assembly, and encourage debate among political parties ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Invite representatives of international human rights organizations to visit the Bolivarian Republic of Venezuela, including by issuing a standing invitation to the United Nations special procedures", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Take further measures to strengthen the mechanisms for the protection of social rights, in particular rights of children, women and persons with disabilities ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Revise Malaysia's legislative framework in order to ensure freedom of religion or belief for all", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Continue the reforms of the penitentiary system and improve the conditions at penitentiary institutions.", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Ensure the compliance of its National Ombudsman with the Paris Principles", - "values": [ - "4 - General action" - ] - }, - { - "text": "Adopt legislative and policy measures to combat discrimination based on sexual orientation and gender identity", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Strengthen its efforts, including with the international cooperation, aimed at preventing, sanctioning and eradicating all forms of violence against women, including the Female Genital Mutilation, and also adopt measures to harmonize the legal recognition of civil, political, economic and social rights between women and men ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Take further measures to address the difficulties regarding the registration of children at birth and to implement a universal birth registration strategy", - "values": [ - "4 - General action" - ] - }, - { - "text": "Further enhance the rights of children, especially orphaned and disabled children, children affected by HIV/AIDS and children from poor households", - "values": [ - "4 - General action" - ] - }, - { - "text": "Revisit the legal framework governing the civil society sector, particularly with a view to reducing bureaucratic restrictions to freedom of association and the registration of national and foreign organizations", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Cooperate fully with the United Nations High Commissioner for Human Rights in accordance with resolution 13-14 of the Human Rights Council, and significantly improve its cooperation with the United Nations treaty bodies by agreeing on timelines for submitting overdue reports - and consider the need for external assistance to that end ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Engage intensively in the struggle against racist speech in politics in order to contain its negative impact on people's attitudes towards foreigners and in the sports world", - "values": [ - "4 - General action" - ] - }, - { - "text": "Repeal laws that criminalize same-sex conduct between adults and review all legislation, policies and programmes to foster equality and prevent discrimination on the basis of sexual orientation or gender identity", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Fully harmonize its domestic legislation in accordance with all its obligations under the Rome Statute, including the obligation to judge genocide, crimes against humanity and war crimes, and do so effectively through its domestic laws ", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Continue to pay attention and provide the necessary services to priority groups in order to promote them and offer them the opportunity to participate effectively in the construction of a better future for the Iraqi people", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Adopt measures to prevent, penalize and eliminate all forms of violence against women, including stoning, rape, marital rape, sexual violence of all kinds in the framework of armed conflict, domestic violence, forced marriage and FGM ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Take appropriate measures to prosecute perpetrators of acts of torture", - "values": [ - "4 - General action" - ] - }, - { - "text": "Take further steps to remove obstacles that may occur in accessing reproductive health products and services, paying special attention to women who have been victims of rape", - "values": [ - "4 - General action" - ] - }, - { - "text": "Extend an open and permanent invitation to the United Nations human rights special procedures mandate holders ", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Pursue, within the context of paragraph 1(d) of Human Rights Council resolution 9-12, the achievement of its MDGs in the areas of health and education through national plans of action", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Work with OHCHR to prepare a common core document as a way to streamline and reduce the burden of treaty-reporting ", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Establish an independent national human rights institution in line with the Paris Principles.", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Take steps to develop the necessary laws, policies and programmes to progressively meet its obligations under the Convention on the Rights of Persons with Disabilities, including by ensuring access to all public facilities", - "values": [ - "4 - General action" - ] - }, - { - "text": "Continue trainings and human rights education of the judiciary ", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Further its commitment to human rights by becoming a party to the Rome Statute of the International Criminal Court ", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Pursue the implementation of the State programme on further modernization of the law enforcement system", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Continue its efforts to promote economic, social and cultural rights and initiate national policies to guarantee the rights of its people and create a conducive environment for socio-economic development ", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Take all necessary measures to eliminate, combat and punish all forms of discrimination and violence against women ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Establish a comprehensive witness protection scheme for cases involving war crimes, with sufficient safeguards including a identity protection system and psychological support", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Continue working against the catastrophic consequences of natural phenomena", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Repeal laws that criminalize consensual same sex adult sexual relations ", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Put a special emphasis on respecting the principle of the separation of powers, and stop any interference by members of the executive or legislative branches with the operation of the judiciary ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Continue to promote its ambitious goals in education and improve the ratio of women in leading positions in the country.", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Reinforce the fight against human trafficking", - "values": [ - "4 - General action" - ] - }, - { - "text": "Guarantee journalists and media personnel safety and security", - "values": [ - "4 - General action" - ] - }, - { - "text": "Continue to implement its effective measures to redress poverty, in particular through its newly established Social Reform Council ", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Continue the efforts to ensure the sustained implementation of the MDGs ", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Continue to improve conditions of detention, including through appropriate assistance from regional and international partners", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Ratify the Convention on Migrant Workers and Members of Their Families", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Accelerate the promulgation of the law on the promotion and protection of the rights of persons with disabilities and human trafficking", - "values": [ - "4 - General action" - ] - }, - { - "text": "Increase the participation of the Aboriginal and Torres Strait Islander communities in the process of closing the gap in opportunities and life outcomes", - "values": [ - "4 - General action" - ] - }, - { - "text": "Ensure that human rights are built into Somalia's legal framework and as a start ensure that members of the judiciary receive human rights training", - "values": [ - "4 - General action" - ] - }, - { - "text": "Combat organized crimes, terrorism, drug trafficking with the technical assistance of the international community.", - "values": [ - "4 - General action" - ] - }, - { - "text": "Continue intensifying its efforts to ratify the CED ", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Guarantee the full exercise of freedom of religion ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Implement the adopted investment plan for the judicial system, in order to improve the situation of detainees ", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "The Government will furthermore support and strengthen national capacities in implementing its human rights obligations, including those of the police, law enforcement personnel, prison and security officers, the media, non-governmental organizations and development actors.", - "values": [ - "4 - General action" - ] - }, - { - "text": "Introduce further measures to restrict the use of the death penalty and consider the re-establishment of the moratorium on executions as first steps towards eventual abolition of the death penalty", - "values": [ - "4 - General action" - ] - }, - { - "text": "Continue efforts to combat all forms of human trafficking", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Take steps to ensure the successful implementation of the national plan for the advancement of Bahraini women 2013-2022", - "values": [ - "4 - General action" - ] - }, - { - "text": "Organise training courses relating to hate crimes for officers of law enforcement and the judicial system and raise public awareness about hate crimes to encourage them to report them", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Take all the necessary measures for the prompt establishment of an independent national human rights institution in accordance with the Paris Principles", - "values": [ - "4 - General action" - ] - }, - { - "text": "Ensure that allegations of the ill treatment of persons detained by the security-police forces are investigated and that perpetrators are held accountable ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Establish a moratorium on executions as a first step towards the abolition of the death penalty", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Improve the situation of inclusion of some minority ethnic groups, in particular the Roma, who are frequently facing a situation of lack of protection.", - "values": [ - "4 - General action" - ] - }, - { - "text": "Ensure that any possible reform of the 1998 Human Rights Act has no impact on the scope of protection or the access to the remedies under the European Convention on Human Rights", - "values": [ - "4 - General action" - ] - }, - { - "text": "Continue consolidating the programs of social protection which are being implemented in order to offer greater well-being and quality of life to its people", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Ensure adequate funding and manpower for the Human Rights Commission of Sri Lanka", - "values": [ - "4 - General action" - ] - }, - { - "text": "Ratify the Rome Statute of the ICC and accede to the Agreement on the Privileges and Immunities of the ICC", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Decriminalize consensual sex relations between adults of the same sex and strengthen legislation punishing all forms of discrimination, including on the grounds of sexual orientation and gender identity", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Confirm the de facto moratorium on the death penalty by definitively and de jure abolishing the death penalty in all circumstances ", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Launch public discussions on the eventuality of abortion in cases where a woman's health or life is at risk if she continues with the pregnancy, and, as a next step, decriminalize abortion ", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Strengthen the legal framework for the protection of the rights of children and the rights of other vulnerable groups such as women, the elderly, people with disabilities and the community of Travellers ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Continue to strengthen efforts to combat discrimination against vulnerable groups, in accordance with the recommendations of the Committee against Torture ", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Develop an action plan to address disparities in socio-economic indicators between persons belonging to indigenous communities and non indigenous persons", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Continue implementing the strategies and plans for the socio-economic development of the country", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Enhance efforts to alleviate prison overcrowding and improve the overall conditions in places of detention, including assessing the impact and effectiveness of measures adopted thus far to address this issue", - "values": [ - "4 - General action" - ] - }, - { - "text": "Ratify the Convention on the Rights of Persons with Disabilities CRPD and sign and ratify the Optional Protocol to CPRD ", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Create and maintain, in law and in practice, a safe and enabling environment for civil society and human rights defenders, including in and in relation to Western Sahara, through a revision of the Criminal Code and remove limitations on freedom of expression, review the system for registration of associations and notification of assemblies and consistent application of rules to all peaceful assemblies irrespective of their topic", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Urgently address the grave violations committed against children, including sexual violence, recruitment of child soldiers and the use of children as human shields during the conflict, ratify the Optional Protocol to the Convention on the Rights of the Child on the involvement of children in armed conflict, and sign and ratify the Optional Protocol to the Convention on the Rights of the Child on a communications procedure", - "values": [ - "4 - General action" - ] - }, - { - "text": "Follow up on the request of the Inter-American Court to remove the mandatory death sentences for murder and treason and to ratify the Optional Protocols to the International Covenant on Civil and Political Rights and to abolish the death penalty", - "values": [ - "4 - General action" - ] - }, - { - "text": "Adopt follow-up actions to the national justice plan, which include administrative measures to ensure access to the justice system, training programmes, and legislative measures on safeguards to guarantee the independence of the judiciary", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Continue to intensify efforts to further increase the enrolment of children in schools", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Continue releasing political prisoners and relaunch the joint Government/civil society committee", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Continue with the ratification of international treaties as they deem appropriate", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Carry out the necessary negotiations, within the framework of the standing invitation to special procedures, to ensure the effectiveness of visits by special procedures, in particular the Special Rapporteur on the promotion and protection of freedom of opinion and expression", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Reconsider establishing a local OHCHR presence with monitoring capacities. ", - "values": [ - "3 - Considering action" - ] - }, - { - "text": "Accelerate the process of reform of the Ombudsman for Human Rights in order to comply with the Paris Principles", - "values": [ - "4 - General action" - ] - }, - { - "text": "Recognize the competence of the Committee on the Elimination of Racial Discrimination to receive and consider communications from individuals ", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Ensure that conditions of reception centres of asylum seekers are in line with international standards", - "values": [ - "4 - General action" - ] - }, - { - "text": "Consider appropriate policy measures in order to promote tolerance and non-discrimination for lesbian, gay, bisexual and transgender persons.", - "values": [ - "3 - Considering action" - ] - }, - { - "text": "Continue efforts to achieve the national strategic goals for sustainable development (2015-2020)", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Amend or regulate existing laws and approve the measures necessary to guarantee to boys, girls and adolescents effective and fair protection, especially from the point of view of gender, against sexual abuse and against exploitation in general ", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Accompany the informal moratorium on death penalty, maintained since 1997, by a commitment to the adoption of the necessary measures to establish a formal moratorium, with a view to eventually abolishing the death penalty", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Consider establishing an independent national human rights institution, in accordance with the Paris Principles", - "values": [ - "3 - Considering action" - ] - }, - { - "text": "Ensure the full implementation of ILO Conventions 182 and 138, and that it stop the practice of sending school-age children to participate in the harvesting of cotton.", - "values": [ - "4 - General action" - ] - }, - { - "text": "Take measures to prevent violence and discrimination against persons based on their sexual orientation and gender identity", - "values": [ - "4 - General action" - ] - }, - { - "text": "Establish a National Children's Commissioner to monitor compliance with CRC ", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Envisage to ratify international instruments already signed, in particular the International Covenant on Civil and Political Rights and the International Covenant on Economic, Social and Cultural Rights, and the Convention against Torture and Other Cruel, Inhuman or Degrading Treatment or Punishment ", - "values": [ - "3 - Considering action" - ] - }, - { - "text": "Make efforts to ensure the participation of women in public affairs especially in Village Committees", - "values": [ - "4 - General action" - ] - }, - { - "text": "Ratify CRPD as soon as possible to ensure that there is equal treatment for persons with disabilities pursuant to the new Constitution, as recommended previously", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Apply a moratorium on the death penalty and make efforts to eliminate capital punishment in the judicial system", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Consider granting the right to work, to asylum seekers who have been in the country for more than six months ", - "values": [ - "3 - Considering action" - ] - }, - { - "text": "Extend an open invitation to all Special Procedures of the Human Rights Council ", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Continue to invest more in education, improve coverage and quality of education and in particular ensure the right to education for children from poor families, girls, children with disabilities, and others belonging to vulnerable group", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Continue with measures to strengthen independent and impartial investigations into human rights abuses ", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Investigate and sanction effectively all reported cases of human rights violations committed during and after the political crisis, and ensure that persons belonging to the armed forces and the police are not excluded from these investigations", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Share national best practice and policies on ensuring nondiscrimination, including proposals such as to include sexual orientation in the Constitution, with States and relevant international organizations ", - "values": [ - "1 - Minimal action" - ] - }, - { - "text": "Repeal laws criminalizing consensual sexual conduct between same-sex adults", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Ensure the independence of the judiciary and international standards of fair trial, including the right to be speedily tried, the right to be informed of the charges, the right to an adequate defence, the right to legal counsel of one's own choosing, and the right of appeal in front of a higher tribunal ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Continue its efforts to facilitate a greater participation and representation of women and indigenous people in public offices", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Review and reform its legislation in order to abolish the death penalty and, in the meantime, maintain the de facto moratorium, with a view to abolishing the practice in the future, avoiding, in particular, the possibility of children being sentenced to death", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Continue efforts to improve the situation of prisoners, in particular in pretrial detention, by, inter alia, increasing the minimum space attributed to each prisoner, allocating necessary financial means, increasing custodial staff and ensuring necessary medical treatment", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Take additional steps to improve freedom of expression, including dropping remaining charges against Mr. Usmonov, and to resolve without harm to them the cases of journalists, such as Makhmadyusuf Ismoilov ", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Make sure that, in case the proposals for a British Bill of Rights are realized, the current level of human rights protection provided by the Human Rights Act of 1998 is maintained and improved", - "values": [ - "4 - General action" - ] - }, - { - "text": "Consider ratifying OP-CAT and take the necessary measures at the national level in order to do so", - "values": [ - "3 - Considering action" - ] - }, - { - "text": "Annul its illegitimate decision to annex the occupied Syrian Golan and end all settlement activities therein.", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Strengthen protection mechanisms for women victims of violence, from the first moment of the complaint", - "values": [ - "4 - General action" - ] - }, - { - "text": "Establish mechanisms for meaningful participation of civil society at the federal and regional level in the process of implementing and monitoring the NHRAP ", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Continue stepping up efforts to establish an independent national human rights institution in conformity with the Paris Principles", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Ensure that the activities of transnational corporations and other business enterprises do not have a negative impact on the enjoyment of rights of indigenous peoples, and other ethnic groups ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Continue to boost the fulfilment of their climate responsibilities by industrialized countries, which are the main cause for global warming ", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Adopt the measures necessary to guarantee freedom of religion", - "values": [ - "4 - General action" - ] - }, - { - "text": "Include in the Penal Code the crime of torture, in line with article 1 of CAT", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Strengthen the role of the NHRC as an independent institution and follow-up on its recommendations ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Take measures aimed at establishing a national human rights institution in compliance with the Paris Principles", - "values": [ - "4 - General action" - ] - }, - { - "text": "Continue its efforts to increase the quality and availability of education at all levels and all over the country", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Ensure balanced treatment of all religions and grant the same status to all religious marriages ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Consider the possibility of establishing a national human rights institution in conformity with international standards ", - "values": [ - "3 - Considering action" - ] - }, - { - "text": "Incorporate non-discrimination in its National Children policy, whilst expediting the process", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Fully implement the 2001 land law and institute a moratorium on evictions until safeguards such as full compensation and access to basic services in resettlement areas can be guaranteed ", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Ratify ICRMW, taking into account national consultations held in this connection ", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "That Thailand's legislative reforms in relation to persons with disabilities be backed by a more effective system of implementation and monitoring", - "values": [ - "4 - General action" - ] - }, - { - "text": "Adopt additional public policies aimed at eradicating discrimination against women in rural areas", - "values": [ - "4 - General action" - ] - }, - { - "text": "Adopt the Affirmative Action Bill without further delay", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Improve, with more in-depth efforts, the conditions of young gays and lesbians who live outside large cities and for those who live in multicultural communities\n", - "values": [ - "4 - General action" - ] - }, - { - "text": "Implement a health reform based on the principle of universal access to care ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Continue to seek constructive cooperation with international mechanisms and other countries in areas of human rights in a non confrontational and non-politicized manner", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Extend a standing invitation to all United Nations special procedures and accept the request for a visit of the Special Rapporteur on the question of torture", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Ratify without reservations the International Convention for the Protection of All Persons from Enforced Disappearance", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Bring the national legislation on trafficking in persons in accordance with the Palermo Protocol and international human rights law by, inter alia, amending the definition of trafficking, expanding the scope of protection and assistance to all victims without discrimination, and including a human rights based approach in the combat against trafficking in persons", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Establish a range of measures for the application of the 2014 law on education with a view to ending women and young girls' illiteracy", - "values": [ - "4 - General action" - ] - }, - { - "text": "Continue efforts in protecting the dignity and interests of migrant workers, including through appropriate institutional and legislative measures ", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Decriminalize defamation in order to make it a civil offence", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Develop a national action plan for the implementation of the Guiding Principles on Business and Human Rights", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Contribute, with Spanish civil society stakeholders, to carry out initiatives on the elaboration of an international legally binding instrument on transnational corporations and human rights in the framework of the Human Rights Council, considering that the issue of corporations is one of the six Spanish foreign policy priorities in the area of human rights", - "values": [ - "4 - General action" - ] - }, - { - "text": "Establish a machinery to compensate victims of torture.", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Organize visits of the Special Rapporteurs on contemporary forms of racism, rights of migrants and torture to the country", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Fully cooperate with the International Criminal Court for all open cases, especially for the execution of arrest warrants issued by the Court", - "values": [ - "4 - General action" - ] - }, - { - "text": "Incorporate international human rights instruments into domestic law, including the Convention on the Elimination of All Forms of Discrimination against Women and the Convention on the Rights of the Child ", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Strengthen the national follow-up systems for monitoring international recommendations, taking necessary measures for coordinating such systems and provide them with the necessary financial resources in order to fulfil their objectives", - "values": [ - "4 - General action" - ] - }, - { - "text": "Continue implementing the recommendations of the Committee on the Rights of the Child on protecting street children", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "More actively enforce its law prohibiting female genital mutilation", - "values": [ - "4 - General action" - ] - }, - { - "text": "Step up its efforts to counter manifestations of racism, xenophobia, racial and religious intolerance", - "values": [ - "4 - General action" - ] - }, - { - "text": "Continue strengthening the national infrastructure with an emphasis on the successful educational policy in order to achieve full access", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Take effective legislative measures to achieve gender parity in accordance with the Convention on the Elimination of All Forms of Discrimination against Women.", - "values": [ - "4 - General action" - ] - }, - { - "text": "The Dominican Republic thanked all delegations for their questions and comments and reiterated its serious commitment to promoting all human rights. It also reaffirmed its commitment to ratify and adhere to the conventions mentioned throughout the interactive dialogue and its openness to receiving visits by different United Nations human rights mechanisms.", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Continue efforts to ratify the International Convention for the Protection of All Persons from Enforced Disappearance ", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Further improve the justice system by fully implementing international fair trial standards such as ensuring adequate access of lawyers to their detained clients and that confidentiality of communication between them is protected, to ensure access to justice to all persons, including women and minorities", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Report regularly to relevant mechanisms of the HRC on the remittances sent by those migrant workers to their families back home in various countries of the world, in order to estimate the contribution of such remittances to the promotion of economic and social rights in developing education, housing and health in these countries ", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Persevere with efforts to better protect the rights of vulnerable groups, particularly women and children", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Ratify the Convention on the Rights of Persons with Disabilities (CRPD) and its Optional Protocol.", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Continue with its enormous efforts to fight against violence in all its forms", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Ensure effective enforcement of human rights-related laws in all its territory and at all administrative and judiciary levels.", - "values": [ - "4 - General action" - ] - }, - { - "text": "Establish juvenile rehabilitation facilities to ensure the separation of juveniles from adults in prisons in line with the process to improve prisons' overcrowding ", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Amend and review all legislative provisions which constitute a de facto discrimination against women and establish a timeline for the adoption of a comprehensive strategy to combat sexual violence including female genital mutilation", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Take effective measures to prevent human rights violations by the military and security forces, such as further training and establishing more transparent mechanisms for investigating violations", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Review the amendments to the Criminal Code in the area of "false information", in order to guarantee respect for freedom of the media and freedom of expression", - "values": [ - "3 - Considering action" - ] - }, - { - "text": "Ratify promptly the Optional Protocol to the Convention on the Rights of Persons with Disabilities", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Implement measures to protect the right to life and freedom of expression of journalists and human rights defenders, ensuring that the perpetrators of violence against them are brought to justice", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "In line with the suggestions of the Council of Europe, improve efforts to provide adequate opportunities for children belonging to minorities to learn their mother tongue and to study in their mother tongue in schools ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Implement fully its National Strategy for the Elimination of Violence against Women (2013-2016)", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Adopt effective measures to enhance the participation of indigenous peoples on issues affecting them and their rights as indigenous peoples", - "values": [ - "4 - General action" - ] - }, - { - "text": "Consider ratifying the International Convention for the Protection of All Persons from Enforced Disappearance and recognize the competence of the Committee on Enforced Disappearance, in conformity with articles 31 and 32 ", - "values": [ - "3 - Considering action" - ] - }, - { - "text": "Enhance equal political participation of its citizens, including by taking steps towards multi-party democracy ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Continue to take steps to ensure that land is made productive ", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Continue to take the necessary measures to prevent violence against women, particularly migrant women and penalise those who commit these acts of violence", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Redouble its efforts and resources to reach the target sets by the Millennium Development Goals for the improvement of the political, economic, social and cultural rights of the Cambodian people ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Adopt and implement appropriate measures to humanize its penitentiary system in accordance with international standards ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Ensure that asylum seekers have equal access to universal health-care services", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Continue to develop measures for the development of national legislation in accordance with international instruments in the field of human rights ", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "[Eliminate all barriers to the effective equality of women] Including the modification of discriminatory provisions of the family code and continue to combat gender-based violence", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Cease immediately all bombings and indiscriminate attacks with any sort of ammunition, against civilians and civilian assets such as hospitals and schools", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Consider the possibility of acceding to the International Covenant on Economic, Social and Cultural Rights and the International Covenant on Civil and Political Rights", - "values": [ - "3 - Considering action" - ] - }, - { - "text": "Continue to carry out policies aimed at improving its judicial system, reforming the law enforcement bodies and reducing the level of crime and corruption ", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Continue to promote and defend initiatives in favour of developing countries, especially in the area of the full realization of the right to development", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Accelerate domestication process of international human rights laws to which Afghanistan is a member, in particular the International Covenant on Civil and Political Rights, Convention on the Elimination of All Forms of Discrimination against Women and the Convention on the Rights of the Child ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Re-establish a moratorium on executions with a view to abolishing the death penalty ", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Enact legislation to cover all forms of violence against women (including physical, sexual, trafficking, sexual harassment, stalking, psychological and economic), protection orders, ancillary civil orders, criminal process and procedure, evidence laws and police powers", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Redouble efforts to promote the condition of women", - "values": [ - "4 - General action" - ] - }, - { - "text": "Put in place human rights training programmes for members of the judiciary and law enforcement officials, including the police, security forces and correctional officers", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Take necessary measures to improve the functioning of justice as a whole, especially regarding access to justice and right to fair trial, and pursue the implementation of the five-year strategy for the gradual reform of minors' justice", - "values": [ - "4 - General action" - ] - }, - { - "text": "Ratify the Optional Protocol to the Convention against Torture and ensure that all officials strictly observe the detention regulations defined by Malagasy law as well as the Standard Minimum Rules for the Treatment of Prisoners, in accordance with international human rights standards", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Accord priority to passing draft anti-discrimination legislation, tabled in Congress in November 2015, and reviews existing laws to ensure consistency with the draft legislation's objectives", - "values": [ - "4 - General action" - ] - }, - { - "text": "Maintain its de facto moratorium on the use of the death penalty with a view towards its total abolition, including through the ongoing process of reform of the Criminal Code", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Fully incorporate in the Constitution or other national legislation the principle of equality between men and women ", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Step up efforts to implement the resolutions on the World Programme for Human Rights Education, including through the preparation of a national plan and reports", - "values": [ - "4 - General action" - ] - }, - { - "text": "Grant jurisdiction to its civil courts over the human rights violations committed by members of armed forces when performing law enforcement functions", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Take efficient measures to improve the harsh conditions of custody centres in particular for minorities, migrants and asylum-seekers ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Continue to develop awareness-raising and action programmes for its population, with the necessary international cooperation and solidarity of the community of nations, in order to deal with the impacts of climate change", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Consider joining ILO and accede to and implement its core conventions, in particular Nos. 29, 105 and 182, on child and forced labour ", - "values": [ - "3 - Considering action" - ] - }, - { - "text": "Ratify the Optional Protocol to the Convention on the Elimination of All Forms of Discrimination Against Women", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Continue the effective application of anti-trafficking law to prosecute human trafficking and refer victims to protection services", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Fully implement without further delay the provisions of the 2011 Anti Discrimination Law ", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Consider taking effective measures to combat the climate of homophobia", - "values": [ - "3 - Considering action" - ] - }, - { - "text": "Ratify the Optional Protocol to the Convention against Torture and Other Cruel, Inhuman or Degrading Treatment or Punishment.", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Ratify the Convention on the Status of Stateless Persons", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Adopt specific legislation to combat violence against women, including social exclusion of women accused of witchcraft ", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Amend the strict eligibility requirements of the Free Legal Aid Act so that all who need it can make use of its provisions", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Guarantee the proper functioning of the National Human Rights Commission and its independence in conformity with the Paris principles", - "values": [ - "4 - General action" - ] - }, - { - "text": "Ratify ICCPR-OP 2", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Accede to the CED ", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Work towards supporting the existing cooperation between OHCHR and Kuwait", - "values": [ - "4 - General action" - ] - }, - { - "text": "Ensure fulfilment of recommendations accepted by Yemen during its previous UPR to cease threats against journalists, to take steps to guarantee and promote freedom of expression and to amend and enforce the Press and Publication Act ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Sign as soon as possible the two Optional Protocols to the Convention on the Rights of the Child ", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Review all legislation related to children to harmonize it with the CRC", - "values": [ - "3 - Considering action" - ] - }, - { - "text": "[Ratify] The ILO Indigenous and Tribal Peoples Convention 1989, (No. 169), and the International Convention on the Protection of the Rights of All Migrant Workers and Members of Their Families", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Continue reforms with a view to ensuring the promotion and the enjoyment of human rights for the Saudi people", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Take measures to eliminate the discrimination and stigmatization against lesbian, gay, bisexual, transsexual and intersex persons", - "values": [ - "4 - General action" - ] - }, - { - "text": "Continue taking measures to ensure access to basic services such as water, housing and health for the population in vulnerable situation ", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Allow children of Greek citizens working in Istanbul to attend the Greek minority schools. So far, only children of employees of the Consulate of Greece are allowed ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Without delay, take measures to put an end to extrajudicial, summary or arbitrary executions and prosecute the perpetrators of these acts", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Redouble its efforts to address sexual violence in correction and detention facilities as well as to address the problem of prison conditions, with a view to preserving the rights and dignity of all those deprived of their liberty ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Continue its endeavour in combating child abuse", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Develop and implement a set of measures aimed at promoting peaceful coexistence between all groups of the population and at combating marginalization that may target individuals or communities, including ethnic and religious minorities", - "values": [ - "4 - General action" - ] - }, - { - "text": "Continue its efforts on alignment of national legislations and international standards and good practices of human rights, especially those on civil, political, economic, social and cultural rights", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Consider recognizing the competence of the Committee on Enforced Disappearances to receive and examine communications from or on behalf of victims and other State parties, regarding violations of the International Convention for the Protection of All Persons from Forced Disappearance's (CPED) provisions", - "values": [ - "3 - Considering action" - ] - }, - { - "text": "Enhance its efforts to promote the human rights of persons with disabilities in all fields", - "values": [ - "4 - General action" - ] - }, - { - "text": "Continue taking further steps at the legislative level, that take into consideration the recent developments and the economic and social conditions of vulnerable families and provide better protection for children", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Provide all necessary resources, including financial and human resources, to the National Human Rights Commission to enhance its activities", - "values": [ - "4 - General action" - ] - }, - { - "text": "Take steps to ensure that the access of persons with disabilities to education is not limited to vocational fields but covers wider educational areas", - "values": [ - "4 - General action" - ] - }, - { - "text": "Establish a moratorium on capital executions with a view to abolishing the death penalty and to repeal all legislation that allows for the application of corporal punishment", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Strengthen all policies to bolster basic education, including education for girls, adult literacy and education for persons with disabilities", - "values": [ - "4 - General action" - ] - }, - { - "text": "Immediately cease its interference in the judiciary, and to ensure that judges are appointed and dismissed by means of an open and transparent process", - "values": [ - "4 - General action" - ] - }, - { - "text": "Prevent and treat diseases and popularize knowledge in the prevention and treatment of chronic diseases", - "values": [ - "4 - General action" - ] - }, - { - "text": "Promote a constructive dialogue between authorities and indigenous people and their organizations and the participation of indigenous people in the formulation and implementation of laws and programmes affecting their lives and provide resources to this end.", - "values": [ - "4 - General action" - ] - }, - { - "text": "Reform the penitentiary system to reduce the level of overcrowding and to improve the living conditions of persons deprived of their liberty ", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Cease its practice of interceptions and "push-backs" in its borders", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Standardize the definition of torture at the national level in compliance with the Convention against Torture ", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Further continue improving health infrastructural institutions to withstand diseases like the Ebola pandemic", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Strengthen measures to combat racial discrimination, xenophobia and other forms of intolerance, in all aspects of society, including through targeted legislative measures", - "values": [ - "4 - General action" - ] - }, - { - "text": "Continue its efforts to widen the access to education for all primary and secondary children including through allocation of more resources in the area of education", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Improve the effectiveness of prevention, investigation and prosecution of all forms of attacks against human rights defenders, journalists, lawyers and judges in order to lower their incidence and to tackle impunity for these crimes", - "values": [ - "4 - General action" - ] - }, - { - "text": "Consider the adoption of the specific legislation prohibiting all forms of corporal punishment of children", - "values": [ - "3 - Considering action" - ] - }, - { - "text": "Strengthen measures to combat child abuse", - "values": [ - "4 - General action" - ] - }, - { - "text": "Concentrate on the implementation of the international human rights instruments that have been ratified by Turkmenistan ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Continue its efforts at the international level towards the prevention of crimes against humanity", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Continue efforts to guarantee access to girls, boys, women and persons with disabilities to health services, education services, drinking water and sanitation", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Continue to increase efforts to end discrimination against lesbian, gay, bisexual, transgender and intersex persons", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Comply with CEDAW's suggestion to incorporate the Convention on the Elimination of All Forms of Discrimination against Women into its national legislation, in particular article 1 which defines discrimination against women ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Take effective measures to prevent acts of torture and ensure that allegations of torture are promptly and impartially investigated and prosecuted ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Proceed to ratification of the Convention on the Rights of Persons with Disabilities ", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Fully investigate the alleged cases of torture, ill-treatment and excessive use of force committed by police and security forces and bring the perpetrators to justice.", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Continue to strengthen the national mechanism on gender equality, as recommended by the Committee on the Elimination of Discrimination against Women ", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Ratify the OP-CEDAW.", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Further protect women's rights and combat violence against women", - "values": [ - "4 - General action" - ] - }, - { - "text": "Continue to effectively implement the Third National Plan against Trafficking in Persons ", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Make matrimonial legislation compatible with international instruments with a clear schedule so that family legislation can be replaced together with the abolition of the ban on advertising for contraceptives.", - "values": [ - "4 - General action" - ] - }, - { - "text": "Continue enactment of legislations and strengthening of efficient public policies to insure protection and respect of women rights and their role in the society, including promoting women participation in public life and development process ", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Considering ratification of unratified human rights instruments subject to evaluations done by the government", - "values": [ - "3 - Considering action" - ] - }, - { - "text": "Take concrete measures to improve the judiciary and penitentiary system, by reducing the cases of excessively long pretrial detentions and ensuring humane detention conditions", - "values": [ - "4 - General action" - ] - }, - { - "text": "Make the Ending Child Marriage Unit operational within the Ministry of Gender, Children and Social Protection", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Ensure that victims of trafficking are provided with the opportunity to seek asylum and enjoy the corresponding rights and services, to strengthen the effort to protect and assist victims of trafficking", - "values": [ - "4 - General action" - ] - }, - { - "text": "Continue to reinforce its jurisdiction in relation to the human rights of consumers in general and more particularly as applicable to the tourism sector.", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Further pursue its efforts to combat child labour", - "values": [ - "4 - General action" - ] - }, - { - "text": "Improve the living conditions and safety situation of IDPs in settlements, to strengthen their protection, particularly of women and girls from sexual violence, including granting IDPs unhindered access to humanitarian assistance ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Ratify the Rome Statute that it signed on 20 December 2000", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Apply measures aimed at guaranteeing the full respect of all refugees' human rights and humanitarian law", - "values": [ - "4 - General action" - ] - }, - { - "text": "Intensify efforts in the promotion of the rights of persons with disabilities", - "values": [ - "4 - General action" - ] - }, - { - "text": "Protect the rights of lesbian, gay, bisexual, transgender and intersex persons through the adoption of a comprehensive anti-discrimination law that prohibits all forms of discrimination, including based on sexual orientation and gender identity, and abolish article 92-6 of the Military Criminal Act, which criminalizes consensual same-sex relations", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Carry out a thorough, independent and effective inquiry about the participation in the CIA's program of extra-judicial renditions and secret detentions. Make public the findings of the inquiry and bring to justice those found guilty", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Take further initiatives towards protecting and promoting the rights of marginalized and vulnerable population ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Strengthen efforts to proactively identify both domestic and international trafficking victims among vulnerable populations, particularly children and women in prostitution", - "values": [ - "4 - General action" - ] - }, - { - "text": "Take all necessary steps to promote an environment which would allow freedom of expression to be enjoyed without undue impediment ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Strengthen measures in poverty eradication as well as in reducing socio-economic development gaps among regions and social groups ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Establish a national mechanism to identify all victims and take necessary measures to ensure access to the asylum procedure for foreign women who are victims of trafficking, or at the risk of being trafficked, who can show a need for international protection, as recommended by CEDAW, CRC, and the CESCR, in light of the serious efforts made by the Government of Spain to adopt a Plan to Combat Human Trafficking for the Purposes of Sexual Exploitation ", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Strengthen policies and programmes to combat chronic malnutrition and ensure food security", - "values": [ - "4 - General action" - ] - }, - { - "text": "Continue the reforms aimed at protecting and promoting human rights, particularly the strengthening of legislation and judicial guarantees", - "values": [ - "4 - General action" - ] - }, - { - "text": "Undertake the necessary steps for the effective implementation of the national framework programme to combat child and bonded labour", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Take appropriate measures to ensure the rights of persons with disabilities including through proper infrastructure and facilities that can accommodate their needs in schools and in the workplace", - "values": [ - "4 - General action" - ] - }, - { - "text": "Take all necessary measures to ensure the rights to food, water and sanitation for its people, as well as continued basic medical supplies and health services", - "values": [ - "4 - General action" - ] - }, - { - "text": "Continue to include in its social policies anti-discrimination measures and programmes in favour of indigenous peoples, ethnic minorities, persons with disabilities, persons with HIV-AIDS and persons facing discrimination based on their sexual orientation", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Strengthen its development efforts in the most disadvantaged regions", - "values": [ - "4 - General action" - ] - }, - { - "text": "Take due measures to prevent extrajudicial killings in the country and grant access to the Special Rapporteurs on extrajudicial, summary or arbitrary executions and on the right of everyone to the enjoyment of the highest attainable standard of physical and mental health for impartial and credible investigations", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Designing schools that are in tune with the wider world", - "values": [ - "4 - General action" - ] - }, - { - "text": "Adopt effective measures to ensure universal and free access to primary education, without discrimination between girls and boys", - "values": [ - "4 - General action" - ] - }, - { - "text": "Adopt a comprehensive programme on sexual and reproductive health and rights, based on international human rights and WHO standards, and involve non-governmental organizations working on women's rights and on reproductive rights in the preparation and implementation of this programme ", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Continue to enhance measures combating the social and cultural causes of gender-based violence, by promoting awareness-raising campaigns, especially, in the education sector ", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Repeal or revise the Public Order Act and Criminal and Seditious Libel laws, and guarantee freedom of expression for journalists", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Release immediately all Palestinian, Syrian and other Arab political detainees, and allow representatives of humanitarian organisations to visit them and deal with their situation", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Duly safeguard freedom of speech and the right to information in the fight against an emerging brand of criminality in the context of cybercrime, through the adoption and implementation of suitable regulations", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Provide unlimited access to the International Committee of the Red Cross to all detention facilities in the country ", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Ensure full respect for women's rights", - "values": [ - "4 - General action" - ] - }, - { - "text": "The National Transitional Council (NTC) should work with international partners to establish a Central African Republic-owned security force that can ensure the long term protection of the Central African Republic population from attacks by individual and groups ", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Decriminalize sexual acts between consenting adults of the same sex ", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Address overcrowding in the immigration detention facility by increasing the capacity of the existing facility or by making additional facilities available to ensure proper treatment of those detained ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Invite the Special Rapporteur on adequate housing to assist, as part of the effort to ensure a dignified standard of living, in the process of creating or reforming legislation and policies to bring them into conformity with international standards", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Ensure, as recommended by the Committee on the Elimination of Discrimination against Women, that women can have access contraception without requesting their husband\u2019s consent", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Provide all means and resources to allow children with disabilities to enjoy the right to education and have access to sport activities", - "values": [ - "4 - General action" - ] - }, - { - "text": "Improve education materials used in schools for people with special needs in order to ensure their full integration into society, economically and socially ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Ensure in practice better access of every detainee to lawyers, family members.", - "values": [ - "4 - General action" - ] - }, - { - "text": "Step up efforts for the protection of children subject to recruitment into armed forces, including through the adoption of adequate legislation on the matter", - "values": [ - "4 - General action" - ] - }, - { - "text": "Review the Libyan Penal Code articles limiting fundamental freedoms and release all individuals held solely for the peaceful exercise of their right to freedom of expression, assembly and association", - "values": [ - "3 - Considering action" - ] - }, - { - "text": "Provide shelters and legal aid to victims of domestic violence, and submit a draft law on domestic violence", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Continue its efforts to promote human rights at the international level, particularly in the field of the right to education, and continue to integrate human rights education and training in these efforts ", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Prepare, in consultation with concerned communities, a national strategy to ensure better integration of the Roma in society ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Take steps to ensure that recent amendments to the Criminal Code of 2011 are in compliance with international obligations regarding freedom of assembly and freedom of conscience ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Stop bombing its own civilian population, including with the use of barrel bombs, chemical weapons and incendiary bombs contrary to international humanitarian law", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Specifically envisage including the offence of torture in the penal and military codes ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Expand anti-trafficking measures from the large towns to the rural neighbourhoods and highly populated Roma communities so as to protect the most vulnerable groups of society", - "values": [ - "4 - General action" - ] - }, - { - "text": "Advance in measures of assistance and promotion of the rights of migrants, refugees and asylum seekers, in compliance with current international standards", - "values": [ - "4 - General action" - ] - }, - { - "text": "Adopt additional measures to eliminate violence against women and children and ensure gender equality in society", - "values": [ - "4 - General action" - ] - }, - { - "text": "Take measures to encourage the return of women to the labour market after a long absence due to maternity ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Strengthen the capacity of police in cases of violence against women by expanding training and developing protocols to respond to cases effectively", - "values": [ - "4 - General action" - ] - }, - { - "text": "Prohibit racist organizations, and take all measures to ensure that racist propaganda cannot be disseminated and that people are appropriately punished for committing racist crimes ", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Recognise the competence of CED in conformity with articles 31 and 32", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Pay particular attention to ensure that disaster management plans are continuously reviewed to ensure that the poorest sectors of the population do not suffer ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Withdraw all reservations to the Convention on the Elimination of All Forms of Discrimination against Women", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "As pledged in the national report, envisage signing and ratifying the Convention on the Reduction of Statelessness and the International Convention for the protection of All Persons From Enforced Disappearance ", - "values": [ - "3 - Considering action" - ] - }, - { - "text": "Establish national human rights institution, in accordance with the Paris Principles", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Continue to promote economic development in ethnic minority regions and strengthen their capacity for development", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Continue its efforts to change the perception of the general public and government officials, vis-à-vis minorities ", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Step up efforts to dismantle the new armed groups that have emerged since the demobilization of the paramilitaries.", - "values": [ - "4 - General action" - ] - }, - { - "text": "Elevate racial discrimination to a criminal offence", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Ensure that the equal right of women and girls to education is carried out in practice, and take steps to guarantee equal pay for equal work ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Strengthen the legislation and the national action plan to fight trafficking in persons, in order to end the sexual exploitation of children ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Take further actions to ensure free humanitarian access and to engage the regional administrations and armed groups to work towards this end ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Amend the 2010 National Security Act, by removing immunities for members of the National Intelligence and Security Services and withdrawing its powers of arrest and detention ", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Implement a system of administration of juvenile justice that fully integrates in its legislation, policies and practices the provisions and principles of the Convention on the Rights of the Child (CRC) (in particular articles 37, 39 and 49) as well as the United Nations Standard Minimum Rules for the Administration of Juvenile Justice (Beijing Rules), United Nations Guidelines for the Prevention of Juvenile Delinquency (The Riyadh Guidelines), United Nations Rules for the Protection of Juveniles Deprived of their Liberty and the Vienna Guidelines for Action on Children in the Criminal Justice System ", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Combat prevailing discrimination against children with disabilities and ensure the availability of appropriate health and equal educational services for children", - "values": [ - "4 - General action" - ] - }, - { - "text": "Continue and intensify efforts in combating poverty experienced by Roma and other disadvantaged members of the population", - "values": [ - "4 - General action" - ] - }, - { - "text": "Establish a robust mechanism to monitor all incidents of racism and implement measures to combat them more effectively", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Establish an effective and inclusive process with civil society to follow up on universal periodic review recommendations", - "values": [ - "4 - General action" - ] - }, - { - "text": "Protect human rights defenders and ensure their right to exercise their work without restrictions", - "values": [ - "4 - General action" - ] - }, - { - "text": "Investigate all cases of threats, intimidation and attacks against media personnel and ensure that those responsible are held accountable", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Continue to effectively fight against child trafficking and access to education of children with disabilities, and especially girls ", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Take necessary measures for effective implementation of the provisions of the Convention on the Protection of the Rights of Persons with Disabilities and its Optional Protocol, in particular, with regard to employment and education ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Vigorously prosecute and pursue jail sentences for convicted trafficking offenders and support prosecution efforts by finalizing the March 2009 protection law ", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "As part of its efforts to achieve inclusive education for Roma, take measures necessary to include students and teachers from the specialised education system into the regular system", - "values": [ - "4 - General action" - ] - }, - { - "text": "Undertake studies to determine the factors of racial disparity in the application of the death penalty, to prepare effective strategies aimed at ending possible discriminatory practices", - "values": [ - "3 - Considering action" - ] - }, - { - "text": "Work to apply a human rights approach to all initiatives related to disaster prevention and response to emergencies in its efforts to build national capacity and resilience to natural disasters", - "values": [ - "4 - General action" - ] - }, - { - "text": "Continue ensuring systematic human rights awareness-raising and training for all personnel working in the legal and justice system, including police, public defenders, lawyers and judges ", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Sign the International Convention for the Protection of All Persons from Enforced Disappearance ", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Take appropriate steps towards achieving Universal Health Coverage in the country", - "values": [ - "4 - General action" - ] - }, - { - "text": "Undertake awareness-raising campaigns to sensitize the security forces and to ensure the effective prosecution of perpetrators of sexual violence ", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Take all necessary measures to ensure separation of powers and due independence of the judiciary to secure the right to free and fair judicial processes ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Continue pursuing appropriate, efficient, inclusive educational policies to provide for free and compulsory education to all segments of its society, including marginalized, disadvantaged - and thus most vulnerable - groups ", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Step up its efforts to complete the reform of its judicial system, and if necessary to request technical assistance from the Office of the High Commissioner for Human Rights in this regard", - "values": [ - "4 - General action" - ] - }, - { - "text": "Map out to what extent media owners seek to influence journalists and adopt appropriate measures to prevent the mixing of private interests with journalism.", - "values": [ - "4 - General action" - ] - }, - { - "text": "Systematically continue its efforts in the area of rights of indigenous peoples", - "values": [ - "4 - General action" - ] - }, - { - "text": "Develop and implement a national awareness raising campaign on human rights", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Ratify the Optional Protocol to the Convention against Torture and Other Cruel, Inhuman or Degrading Treatment or Punishment, in line with Tunisia's aspirations to eliminate torture and other maltreatment committed by state agents ", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Maintain its commitment to achieving concrete political reform based on respect of the legitimate rights and aspirations of all its citizens, consistent with Bahrain\u2019s international obligations and acceptance of the findings and recommendations of the 2011 report of the Bahrain Independent Commission of Inquiry", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "The draft law on the provision of citizenship to children where the father is not a Bahraini citizen would be considered a priority.", - "values": [ - "3 - Considering action" - ] - }, - { - "text": "Consider introducing a specific prohibition with respect to the sale of arms when the final destination is a country where children may potentially be recruited or used in hostilities ", - "values": [ - "3 - Considering action" - ] - }, - { - "text": "Strengthen the elimination of all forms of violence against women by criminalizing domestic violence and marital rape", - "values": [ - "4 - General action" - ] - }, - { - "text": "Continue promoting the efforts in order to consolidate the rule of law and its mechanisms", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Abolish non-therapeutic sterilization of women and girls with disabilities ", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Continue efforts with the aim of establishing protection campaigns and programmes for women against domestic violence ", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Continue to strengthen all its anti-corruption institutions", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Put an end to the infamous blockade against Cuba ", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "With regard to upcoming general elections and in accordance with the recent judgment of the European Court of Human Rights, to ensure that all citizens, without distinction as to their ethnic origin, are able to present themselves to the High Chamber of Parliament and the Presidency of the State", - "values": [ - "4 - General action" - ] - }, - { - "text": "Modify or abolish blasphemy laws that limit the right to freedom of religion or belief", - "values": [ - "3 - Considering action" - ] - }, - { - "text": "Take targeted measures to address the situation of girls and the challenge of ensuring the accessibility to registration for indigenous peoples and people of African descent as well as for migrant families. The right of every child to a name and nationality should be guaranteed ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Reform laws, rules and codes of conduct that regulate police action to bring them in line with international human rights standards ", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Amends all local laws and regulations that discriminate against women and marginalized groups", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Ensure implementation of its National Education Plan 2010-2019 aiming to provide equal opportunities to boys and girls ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Continue reform and further training to ensure the end of ill-treatment during police detention ", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Adopt a law on the Truth and Reconciliation Commission which is in line with international human rights norms and which establishes the impossibility of applying an amnesty for serious human rights violations and international crimes ", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Promptly complete the ratification of the Hague Convention", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Conduct awareness-raising programmes to increase women\u2019s legal literacy", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Bring relevant provisions of the Criminal Code in line with article 19 of the International Covenant on Civil and Political Rights (ICCPR) repealing the restrictions of freedom of expression", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Strengthen measures to improve the protection of the human rights of all migrants", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Intensify efforts in the fight against poverty and to respond to the basic needs of the poor", - "values": [ - "4 - General action" - ] - }, - { - "text": "Continue with the country's decision to restructure its justice and legal system and ensure that measures taken in this regard are in compliance with human rights instruments ", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Adopt legislation that is conducive to the development and safeguarding of today\u2019s strong and vibrant NGO community in Ukraine", - "values": [ - "4 - General action" - ] - }, - { - "text": "Intensify efforts aimed at promoting rights of children, in particular, indigenous children, in terms of access to education and health care", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Commute all death penalties, progressively reduce the number of crimes that can be punished with the death penalty and eventually adopt measures for the complete abolition of the death penalty including accession to the Second Optional Protocol to the International Covenant on Civil and Political Rights", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Adhere fully to the relevant provisions of the International Convention for the Protection of the Rights of All Migrant Workers and Members of Their Families, in particular articles 76 and 77", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Take further steps to overcome the obstacles faced by persons with disabilities in accessing the labour market, including through positive action measures", - "values": [ - "4 - General action" - ] - }, - { - "text": "Create a national human rights institution", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Take all necessary measures to protect the rights of persons belonging to religious minorities, and repeal laws which restrict religious conversion", - "values": [ - "4 - General action" - ] - }, - { - "text": "Respect and protect the human rights and the fundamental freedoms of all persons without any form of discrimination ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Ensure that the national legislation enables the establishment and exercise of jurisdiction on war crimes related to conscription, recruitment and use of children in armed conflict", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Consider reviewing its labour laws with a view to addressing the wage gap between women and men and the elusive opportunities for working women to occupy leadership and decision-making positions", - "values": [ - "3 - Considering action" - ] - }, - { - "text": "Ratify the International Convention for the Protection of All Persons from Enforced Disappearance, the Convention on the Reduction of Statelessness and the Protocol to Prevent, Suppress and Punish Trafficking in Persons, Especially Women and Children, supplementing the United Nations Convention against Transnational Organized Crime", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Let the decision to grant or withhold bail remain a prerogative of the judiciary ", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Grant ministerial rank to the national council for women", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Allocate the necessary human, technical and financial resources for the implementation of the national plan of action for the prevention and eradication of violence against women and assistance to victims for the period 2017-2019", - "values": [ - "4 - General action" - ] - }, - { - "text": "Accede to the Optional Protocol to the Convention against Torture and Other Cruel, Inhuman or Degrading Treatment or Punishment.", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Ratify the Rome Statute of the International Criminal Court and the Agreement on the Privileges and Immunities of the International Criminal Court", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Increase the budget allocated to social workers responsible for assisting victims of domestic violence, by including the costs of travel to visits to assess victims and by increasing human resources", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Continue fighting harmful traditional practices, including female genital mutilation", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Adopt a comprehensive legislation with regard to discrimination, in particular discrimination against women, as well as complementary measures with the purpose of informing the population, punishing discrimination and hate speech and fighting impunity in this field", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Put an end to immunity from prosecution for spouses within marriage in order to effectively combat impunity ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Take further steps to eliminate discrimination against vulnerable or marginalized groups, including on the basis of gender or caste, by enacting laws to criminalize all forms of discrimination", - "values": [ - "4 - General action" - ] - }, - { - "text": "Urgently submit the overdue reports to treaty bodies ", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Formulate a National Human Rights Plan, in accordance with the Vienna Declaration and consulting broadly with civil society ", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Take all the necessary legal measures to explicitly ban the corporal punishment of children in all settings, including the family, schools and institutions ", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Adopt measures to criminalize the incitement to imminent violence on the basis of religion and belief", - "values": [ - "4 - General action" - ] - }, - { - "text": "Continue to combat government corruption and support the independent investigation of the alleged extrajudicial killings of 27 people by members of the Peruvian National Police", - "values": [ - "4 - General action" - ] - }, - { - "text": "Particularly address the question of access to education and the situation of disadvantaged groups of women ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Continue its committed policy, federally, provincially and territorially, to promote and protect all human right", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Take further measures to improve the living conditions in the prison system, in particular to reduce overcrowding and to improve prisoners' access to health and education services ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Establish a national agency aimed at preventing sexual and gender-based violence and at ensuring access to justice for these victims ", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Strengthen programmes and plans to eradicate effectively child labour in the short term", - "values": [ - "4 - General action" - ] - }, - { - "text": "Finalize the process of revision of the Statute of the National Commission of Human Rights to bring it into compliance with the Paris Principles", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Improve conditions in detention and prison facilities, including by increasing living space and improving access to healthcare services for detainees", - "values": [ - "4 - General action" - ] - }, - { - "text": "Adopt effective measures to combat crimes based on religious hate and facilitate access to justice to minority groups", - "values": [ - "4 - General action" - ] - }, - { - "text": "Ensure the equal treatment of women and girls in law and practice", - "values": [ - "4 - General action" - ] - }, - { - "text": "Ensure that people living with HIV-AIDS, especially children, can fully enjoy their human rights through, among others, equitable access to basic services and education.", - "values": [ - "4 - General action" - ] - }, - { - "text": "Further strengthen the conditions in which lawyers exercise their functions", - "values": [ - "4 - General action" - ] - }, - { - "text": "Elaborate a comprehensive and multidisciplinary strategy to prevent and address exploiting young citizens through illegal migration", - "values": [ - "4 - General action" - ] - }, - { - "text": "Abolish corporal punishment by law and in practice, by enacting specific national legislation prohibiting corporal punishment in all environments", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Adopt the recommendations of the CAVR and the CTF Commissions, including establishing reparations programs for victims of past human rights violations ", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Take further steps to integrate the best interests of the child at all stages of the asylum and migration process, in line with human rights obligations under the CRC, and to ensure special protection for unaccompanied asylum-seeking children ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Take further necessary measures to increase the percentage of women in decision-making positions ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Envisage ratifying CPED ", - "values": [ - "3 - Considering action" - ] - }, - { - "text": "Continue efforts aimed at effectively fighting against maternal and child mortality", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Conduct an impact assessment on the implementation of its National Action Plan on the Prevention and Combating of Domestic Violence ", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Continue its efforts within its international initiatives to strengthen economic development and raise the standard of living ", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Ratify the Convention Relating to the Status of Refugees and its 1967 Protocol", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Exhaustively investigate the killings of women on gender grounds", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Attention be paid to CERD's observation to strengthen the legislative framework in the area of non-discrimination with a special attention to gender equality, ethnic minority, indigenous people and migrants regardless of their minority status ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Continue to work with regional and international partners to ensure amicable solutions to\nremaining post-referendum issues", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Continue to prioritize resources to equip its young people with the necessary education and skills to thrive in the global economy", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Fully respect freedom of press and expression", - "values": [ - "4 - General action" - ] - }, - { - "text": "Ensure that all national legislation currently in force relating to children is in conformity with the Convention on the Rights of the Child, guaranteeing that the principles and provisions of that Convention and its protocols are applicable to every child in its territory ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Publish the recommendations of the Leveson Inquiry on the establishment of a regulatory regime for ethical media ", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Sign the Second Optional Protocol to the International Covenant on Civil and Political Rights.", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Adopt additional measures necessary to protect minorities, such as older persons, lesbian, gay, bisexual and transgender persons, persons with disabilities", - "values": [ - "4 - General action" - ] - }, - { - "text": "Ratify the European Charter for Regional or Minority Languages of the Council of Europe ", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Continue to exert its utmost efforts to ratify ILO core Conventions, including the recent ILO C. No 189 on Decent work for domestic workers", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Continue the judicial reforms, in particular the implementation of the 2012-2016 framework of transformation of the judicial system", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Identify the factors of racial disparity in the use of the death penalty and develop strategies to end possible discriminatory practices", - "values": [ - "4 - General action" - ] - }, - { - "text": "Establish a national human rights institution in conformity with the Paris Principle", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "It is committed to supporting the higher national anti-corruption authority in discharging its mandate to the full", - "values": [ - "4 - General action" - ] - }, - { - "text": "Ratify CPED ", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Continue its commitment to establishing a free birth registration system at national level in order to allow children to demand their rights during their life and to access to public services", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Implement a system of budget monitoring, accountability and transparency for each of the three islands and the Union Government as a whole.", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Strengthen the cooperation with OHCHR", - "values": [ - "4 - General action" - ] - }, - { - "text": "Reinforce the independence and the capacity of the Irish Human Rights Commission to fulfil its mandate effectively in accordance with the Paris Principles by endowing it with adequate and sufficient resources ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Carry out extensive consultations with civil society related to the repeal of the 1998 Human Rights Act. In view of the process of leaving the European Union, ensure that any new legislation aims at strengthening human rights in the entire jurisdictions of the country", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Renounce the practices of arbitrary detention and end the use of torture in places of detention", - "values": [ - "4 - General action" - ] - }, - { - "text": "Sign and ratify the Optional Protocol to the International Covenant on Economic, Social and Cultural Rights as soon as possible, to allow individual complaints of alleged violations of such rights to be heard by CESCR ", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Continue practical steps already taken to disseminate a culture of human rights in education institutions, utilizing the media for this purpose", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Strengthen the legal and institutional framework to fight against child marriage", - "values": [ - "4 - General action" - ] - }, - { - "text": "Continue to uphold the core values that are in the Tongan constitutional and customary history, in its work to ensure full compliance with human rights and fundamental freedoms for all Tongans.", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Increase its efforts to reduce its high maternal mortality rate", - "values": [ - "4 - General action" - ] - }, - { - "text": "Undertake further steps to promote efforts to overcome residual social discrimination against Roma and other ethnic minorities", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Fully align its national legislation with the Rome Statute of the ICC and accede to the Agreement on the Privileges and Immunities of the Court (APIC) ", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Costa Rica will ratify the International Convention for the Protection of All Persons from Enforced Disappearance.", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Continue strengthening the judiciary based on the principles of the independence of judges and prosecutors and ensure equal access for all to the justice system ", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Take appropriate, efficient measures to prevent discrimination and violence against religious minorities, bringing instigators to religious violence to justice", - "values": [ - "4 - General action" - ] - }, - { - "text": "Ratify the Optional Protocol to the International Covenant on Economic, Social and Cultural Rights", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Take measures to counteract serious violations and abuse of the human rights of women and girls, including early forced marriage and FGM", - "values": [ - "4 - General action" - ] - }, - { - "text": "Take all necessary measures to effectively eliminate the incidence of child, early and forced marriage", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Ratify the Rome Statute and the International Convention for the Protection of All Persons from Enforced Disappearance", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Give special attention to cases of possible discrimination for reason of sexual identity or orientation, and ensure that cases of violence against such persons are appropriately investigated and prosecuted", - "values": [ - "4 - General action" - ] - }, - { - "text": "Ratify the ICCPR", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Analyse existing legislation and repeal all rules, in particular those of the Family Code, which are contrary to the principle of equality between children or which constitute a discrimination of the rights of the child", - "values": [ - "3 - Considering action" - ] - }, - { - "text": "Implement the recommendations of the OSCE-ODIHR trial monitoring report, and provide for an independent and credible investigation into the 10 deaths following the events of 1 March 2008 ", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Strengthen effective and transparent measures to prevent and punish all forms of discrimination against minorities. Along the same lines, strengthen the measures to ensure better representation of national minorities in legislative and executive governmental bodies", - "values": [ - "4 - General action" - ] - }, - { - "text": "Extend the standing invitation to all the mechanisms and special procedures of the Human Rights Council", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Continue efforts to protect and promote the rights of the child ", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Revise its legislation on freedom of the press in order to bring it into line with international standards", - "values": [ - "3 - Considering action" - ] - }, - { - "text": "Continue providing free legal aid to the most vulnerable citizens ", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Undertake a national survey to assess the exact number of homeless children throughout the world and the root causes of this phenomenon, in order to develop a national plan of action to specifically address and remedy this problem ", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Intensify efforts to tackle femicide and violence against women", - "values": [ - "4 - General action" - ] - }, - { - "text": "Continue to enhance its efforts to take into account the needs of children, and to continue to take the measures necessary to guarantee children's rights in the field of social protection and education", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Respect indigenous peoples and ethnic minorities' rights and interests, fully consult with them on their land, autonomy, environment, language and other issues, correct the historical injustice and offer compensation", - "values": [ - "4 - General action" - ] - }, - { - "text": "Install a moratorium on the death penalty as a first step towards its total abolition", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Adopt comprehensive measures to combat trafficking in persons and extend the invitation to the Special Rapporteur on trafficking in persons, especially women and children, as well as to the Special Rapporteur on the sale of children, child prostitution and child pornography", - "values": [ - "4 - General action" - ] - }, - { - "text": "Continue implementing the program of support for the poorest families as a means to combat poverty", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Intensify efforts on public awareness and capacity building programmes of law enforcement officials in strengthening the implementation of existing law, policies and measures relating to human rights ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Implement all international resolutions, which emphasize the preservation of the character and the monuments of East Jerusalem and refrain from changing its legal status and threatening its sanctuaries and spiritual symbols", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Take all measures in further implementing its National Human Rights Action Plan, in particular by allocating sufficient funding from the national budget", - "values": [ - "4 - General action" - ] - }, - { - "text": "Consider taking all measures necessary to ensure humanitarian access to prisoners, and to fully abide by its international obligations concerning consular help provided to foreign nationals in detention", - "values": [ - "3 - Considering action" - ] - }, - { - "text": "Further strengthen its institutional framework to enable it to defend its sovereignty and protect the human rights of its people", - "values": [ - "4 - General action" - ] - }, - { - "text": "Ensure the effective implementations of the Penal Enforcement Code and the Code of Criminal Procedure which contains some progressive dispositions regarding the welfare of detainees and prisoners", - "values": [ - "4 - General action" - ] - }, - { - "text": "Reduce underrepresentation of women, including in the labour market.", - "values": [ - "4 - General action" - ] - }, - { - "text": "Strengthen guarantees for detained persons, and not to extend but to shorten the length of time of pre-trial detention", - "values": [ - "4 - General action" - ] - }, - { - "text": "Strengthen human and financial resources available to the directorate of the Ombudsman responsible for the new role of a national preventive mechanism according to the Optional Protocol to the Convention against Torture so that they match the number of facilities overseen", - "values": [ - "4 - General action" - ] - }, - { - "text": "Ratify the Convention on the Rights of Persons with Disabilities and its Optional Protocol", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Implement a national programme to combat trafficking and sexual exploitation of women and children ", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Guarantee for everyone effective protection against all discrimination based on sexual orientation or gender identity, and to publicly condemn all acts of violence connected with such discrimination and prosecute those responsible", - "values": [ - "4 - General action" - ] - }, - { - "text": "Take effective action to end gender-based discrimination, to ensure full protection of women's right, including by ending harmful practices such as female genital mutilation (FGM), and to criminalize domestic violence, including sexual abuse and martial rape ", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Within the framework of a broad political dialogue, facilitate the participation of all sectors of the society in the political process, including through support for the independence of the judiciary and the press and freedom of expression and assembly ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Give special attention particularly to the education of girls and women ", - "values": [ - "4 - General action" - ] - }, - { - "text": "In line with requests by CEDAW and the CRC, review the situation of children born out of wedlock who do not enjoy nationality, inheritance and birth registration rights", - "values": [ - "3 - Considering action" - ] - }, - { - "text": "Favourably consider ratifying the core international human rights treaties within a reasonable period of time and participating more fully with international human rights mechanisms, especially special procedures of the Human Rights Council", - "values": [ - "3 - Considering action" - ] - }, - { - "text": "Consider taking appropriate legislative steps to allow civil law marriage in Israel", - "values": [ - "3 - Considering action" - ] - }, - { - "text": "Continue efforts to combat trafficking of women and children, including the establishment of a national plan of action to combat trafficking", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Ensure respect for freedoms of expression, assembly and association, including for the exercise of trade union rights", - "values": [ - "4 - General action" - ] - }, - { - "text": "Put in place comprehensive and evidence-based sexual and reproductive health education programmes ", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Follow up on the recommendation of the Committee on Economic, Social and Cultural Rights regarding the elimination of all forms of forced labour", - "values": [ - "4 - General action" - ] - }, - { - "text": "Consider acceding to CAT, OP-CAT, CRPD and OP-CEDAW ", - "values": [ - "3 - Considering action" - ] - }, - { - "text": "Disseminate information to the population to increase awareness of women's rights and, in particular, of the 2006 Legal Capacity of Married Persons Act ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Increase the protection mechanisms for women and children as well as measures to disseminate and make their implementation more effective", - "values": [ - "4 - General action" - ] - }, - { - "text": "Consider ratifying the Rome Statute of the International Criminal Court", - "values": [ - "3 - Considering action" - ] - }, - { - "text": "Fully align its national legislation with the Rome Statute of the International Criminal Court", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Issue a standing invitation to the special procedures of the Human Rights Council, and in particular accept a visit by the Special Rapporteur on the promotion and protection of the right to freedom of opinion and expression, which has already been requested twice ", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Promote initiatives aimed at ensuring that there are equal conditions of employment for women ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Take measures to significantly improve prison conditions such as overcrowding, substandard sanitation and poor health facilities ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Continue its efforts in education, knowledge and public health, and achieve religious tolerance and social cohesion as it represents an important basis to strengthen the principles of human rights", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Review conditions in prison and detention facilities, in particular where juveniles are concerned and allow access to detention facilities to civil society organizations.", - "values": [ - "3 - Considering action" - ] - }, - { - "text": "Publicly and unequivocally condemn any attack, verbal or physical, against LGBT groups and bring those responsible to justice", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Implement measures to prevent violence, persecution and discrimination on the basis of religion and, in particular, prevent the misuse of the blasphemy laws by requiring all cases to undergo prior judicial review before charges may proceed", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Review and amend the public Order and Security Act and the Private Voluntary Organisation Act that impose considerable restrictions to the work of human rights defenders in order to bring them into line with the international standards and respect for freedom of association ", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Establish a programme of medical, psychological and social assistance for teenage mothers and develop a support network for young women to continue their studies ", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Take measures to foster a safe, respectful, enabling space for civil society, including through removing legal and policy measures unwarrantedly limiting the rights to freedom of expression and association, and to ensure that the rights of indigenous communities to prior consultation on extractive projects are rigorously enforced", - "values": [ - "4 - General action" - ] - }, - { - "text": "Refrain from interfering in the activities of human rights defenders and non-governmental organizations and ensure a safe and enabling environment for their work", - "values": [ - "4 - General action" - ] - }, - { - "text": "Increase assistance to developing countries, up to the level of 0.7 per cent of GNP, in line with UN recommendations", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Fully translate CRC into its national legislation ", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Continue its efforts for the protection of the rights of migrant workers", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Decriminalize abortion, if not completely, at least when the life or the health of the mother is in danger, by bringing the law in line with obligations deriving from several human rights conventions", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Adopt the new plan of action on gender equality", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Address the continued high prevalence of violence against women and girls, including by strengthening training for the judiciary and law enforcement personnel to enhance their capacity to respond effectively to cases of violence against women and girls", - "values": [ - "4 - General action" - ] - }, - { - "text": "Allocate sufficient resources to the National Child Rigths Committee in order to reinstate the functions of this Committee", - "values": [ - "4 - General action" - ] - }, - { - "text": "Take further steps in consolidating the cooperation with the national civil society organisations in implementation of programs aimed at promotion and protection of Human Rights", - "values": [ - "4 - General action" - ] - }, - { - "text": "Continue efforts aimed at ensuring all the rights of children and adolescents, girls in particular, in the area of freedom of expression and opinion, as well as addressing the special needs of children with disabilities, indigenous children, migrant children and other children in vulnerable situations ", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Decriminalize apostasy ", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Continue to address barriers to education of girls, with a view of increasing school enrolment at the primary and secondary levels, especially in rural areas", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Ensure all alleged cases of human rights violations by security forces are investigated urgently and transparently, with those held responsible brought to trial swiftly", - "values": [ - "4 - General action" - ] - }, - { - "text": "Adopt further measures to facilitate access for erased persons to Slovenian citizenship", - "values": [ - "4 - General action" - ] - }, - { - "text": "Ensure that ethnic minorities are granted fundamental rights and are enabled to enjoy their culture, religion and their language freely and without any form of discrimination ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Consider extending a standing invitation to all Special Procedures of the Human Rights Council ", - "values": [ - "3 - Considering action" - ] - }, - { - "text": "Adopt all necessary measures to incriminate violence against women and to conduct a resolute penal policy to combat this scourge. ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Give priority to the elimination of poverty and strive to reduce unemployment and to improve people\u2019s living standards", - "values": [ - "4 - General action" - ] - }, - { - "text": "Continue efforts to strengthen participatory democracy, as a way to ensuring participation of citizens in public affairs ", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Continue to strengthen its domestic legislation and policies to better protect children against abuses and exploitation", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Continue to implement the National Strategy for Gender Equality 2020", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Implement compulsory primary education, providing resources to ensure the quality and infrastructure of the education system", - "values": [ - "4 - General action" - ] - }, - { - "text": "Continue making efforts in raising the quality of education and to ensure that secondary education is fully free and accessible to all children", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Engage the Sami people in the ratification process of the ILO Indigenous and Tribal Peoples Convention, 1989 (No. 169)", - "values": [ - "4 - General action" - ] - }, - { - "text": "Continue the efforts towards raising the enrolment rate for children in schools, particularly for girls", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Recommended that appropriate technical and financial assistance be provided to Mali in the field of women literacy and in the struggle against the phenomenon of children living and working in the street. ", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Uphold its commitment to strengthen the national mechanism for the protection and promotion of children's rights ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Implement awareness projects and activities to combat discriminatory attitudes and further its efforts to promote human rights education ", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Consider how the riches of the country can best contribute to social and economic rights for all ", - "values": [ - "3 - Considering action" - ] - }, - { - "text": "Implement the 2014 recommendation of the Committee on the Rights of Persons with Disabilities to ensure that all medical treatments are provided with free and informed consent and that no one is confined against his will in medical facilities on the basis of actual or perceived disability", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Develop a National Plan to combat trafficking in human beings and protect its victims", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Ratify the Optional Protocol to the Convention on the Elimination of All Forms of Discrimination against Women.", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Take effective measures, assigning adequate resources, to ensure respect for international standards, notably concerning the food, health and sanitation of persons deprived of their liberty, and accept the assistance and cooperation of international actors such as the ICRC", - "values": [ - "4 - General action" - ] - }, - { - "text": "Consider ratifying major human rights instruments, in particular the International Covenant on Civil and Political Rights and the International Covenant on Economic, Social and Cultural Rights, with a view to strengthen its commitment in promoting and protecting human rights of its citizen", - "values": [ - "3 - Considering action" - ] - }, - { - "text": "Enhance and strengthen its measures, policies and institutional coordination in the implementation of the law on trafficking in persons, especially that of women and children, in order to prevent and punish this international crime", - "values": [ - "4 - General action" - ] - }, - { - "text": "Take additional measures for the full enjoyment of the right to education by children", - "values": [ - "4 - General action" - ] - }, - { - "text": "Take measures to strengthen the full independence of its legal system and shorten the time it takes for cases to go through the courts in order to boost the population's confidence in the legal system ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Adopt adequate measures for the protection and promotion of religious freedom, in order to ensure effective freedom of worship for all religious communities.", - "values": [ - "4 - General action" - ] - }, - { - "text": "Adopt stronger measures to protect minorities and indigenous peoples from discrimination and to ensure their access to public facilities", - "values": [ - "4 - General action" - ] - }, - { - "text": "Maximize, through consultation mechanisms, the participation of indigenous peoples in the determination of the public policies that affect them ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Take all the necessary measures and, as a first step, introduce a moratorium with a view to abolish the death penalty and adhere to the General Assembly resolutions in this regard", - "values": [ - "4 - General action" - ] - }, - { - "text": "Strengthen independent procedures for prison inspection, reduce overcrowding in places of detention, separate minors from adults in prisons and detentions facilities, and bring the juvenile justice system into line with internationally recognized standards", - "values": [ - "4 - General action" - ] - }, - { - "text": "Pay particular and multisectoral attention to the disadvantaged socioeconomic situations prevailing in rural areas", - "values": [ - "4 - General action" - ] - }, - { - "text": "Immediately cease the practice of forced anal examinations of lesbian, gay, bisexual, transgender and intersex persons, which are contrary to its obligations under the Convention against Torture", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Review its legislation to adopt a comprehensive strategy aimed at elimination of discrimination in all its forms and in respect of all the vulnerable groups, especially poor and disabled children", - "values": [ - "3 - Considering action" - ] - }, - { - "text": "Continue to improve the laws dealing with freedom of expression, in particular freedom of the Internet, the media, elections and political parties, and bringing them into full compliance with international standards", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Take further measures to address violence against women and shortcomings concerning the enjoyment of rights by women and girls ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Ensure the effective respect of international human rights standards for persons deprived of liberty by allocating the necessary resources", - "values": [ - "4 - General action" - ] - }, - { - "text": "Take measures to guarantee effective access to justice, reparation and protection for women victims of gender-based violence", - "values": [ - "4 - General action" - ] - }, - { - "text": "Take measures to request, without delay, the Armed Forces, security forces and other governmental bodies to cooperate fully with official investigations on human rights abuses in any part of the national territory, as an integral part of the necessary establishment of a culture of responsibility on human rights among public authorities and state agents", - "values": [ - "4 - General action" - ] - }, - { - "text": "Continue exerting further efforts to improve access of victims of trafficking and sexual violence to complaints mechanisms and protection services", - "values": [ - "4 - General action" - ] - }, - { - "text": "Soften the very strict requirements for citizenship, and to ensure nondiscrimination, particularly with regard to children who have one parent who lacks San Marino citizenship", - "values": [ - "4 - General action" - ] - }, - { - "text": "Develop adolescent-sensitive and confidential counselling services in the area of sexual and reproductive health care and information, with particular regard to adolescent girls", - "values": [ - "4 - General action" - ] - }, - { - "text": "Adopt and implement appropriate measures, enabling an effective functioning of public security forces subject to civilian control", - "values": [ - "4 - General action" - ] - }, - { - "text": "Accelerate the process of ratification of the Optional Protocol to the Convention on the Rights of the Child on a communications procedure ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Consider ratification of the Second Optional Protocol to the International Covenant on Civil and Political Rights, aiming at the abolition of the death penalty, and introduce a de facto moratorium on the imposition of the death penalty with the view to total abolishment", - "values": [ - "3 - Considering action" - ] - }, - { - "text": "Further improve its birth registration system and ensure the issuance of birth certificates to all children born on its territory", - "values": [ - "4 - General action" - ] - }, - { - "text": "Adopt legislation to protect persons with physical disabilities to guarantee their well-being and their possible rehabilitation, without any kind of discrimination", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Take concrete measures to protect child victims of sexual exploitation and prostitution", - "values": [ - "4 - General action" - ] - }, - { - "text": "Undertake the necessary steps to change traditional customs and patriarchal practices that violate the human rights of girls and women ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Review the current legislation with a view to recognizing an alternative to military service, which is accessible to all conscientious objectors and is not punitive or discriminatory", - "values": [ - "3 - Considering action" - ] - }, - { - "text": "Pay attention to the rights of minorities and equality and non- discrimination of women", - "values": [ - "4 - General action" - ] - }, - { - "text": "Implement the large number of European Court of Human Rights decisions like the one concerning the Orphanage on Prince Island, which belongs to the Orthodox Ecumenical Patriarchate, or the ones that have found that Turkey is liable for numerous violations of ECHR articles in Cyprus, namely in the occupied northern part ", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Place greater relevance to and adopt measures to ensure the realization of all economic, social and cultural rights for its population", - "values": [ - "4 - General action" - ] - }, - { - "text": "Adopt a comprehensive strategy to combat discrimination, in particular towards poor children and children with disabilities", - "values": [ - "4 - General action" - ] - }, - { - "text": "Consider amending legislation, which limit Palestinian refugees from owning property, considering the suffering of our people there and facilitate their lives and meet their human needs, with emphasis on the right to return as one of the basic rights to the Palestinian refugees", - "values": [ - "3 - Considering action" - ] - }, - { - "text": "Allow for the free and unimpeded access of human rights observers, humanitarian organizations, medical teams and ambulances to affected areas", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Continue implementing policies for combating discrimination and hate speech", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Reform the family code to remove remaining discriminations against women", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Combat discrimination against children belonging to minorities, indigenous people, and children with disabilities ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Launch media campaigns to raise awareness of human rights", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Thoroughly and transparently investigate past human rights abuses", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Consider the possibility of ratifying the Optional Protocol to the Convention on the Elimination of All Forms of Discrimination against Women, the International Convention on the Protection of the Rights of All Migrant Workers and Members of Their Families, and the International Convention for the Protection of All Persons from Enforced Disappearance ", - "values": [ - "3 - Considering action" - ] - }, - { - "text": "Vanuatu is encouraged to take steps to fully implement its policies and action plans on the rights of women and persons with disabilities", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Call upon the international community to pay attention to the difficulties associated with the\npresent stage of development in Bhutan and provide the needed assistance to it to strengthen the\ncapacity of its national mechanisms responsible for preparing periodic reports for treaty bodies and to\ntrain its law enforcement officials, judges and police officers in the area of human rights ", - "values": [ - "1 - Minimal action" - ] - }, - { - "text": "Review all laws and practices that discriminate on the basis of gender and bring them in line with international standards, including legislation with regard to marriage, divorce and inheritance", - "values": [ - "3 - Considering action" - ] - }, - { - "text": "Rescind the Sedition Act and the Newspaper Act and bring its laws and practices regarding freedom of the media and freedom of speech into line with the Universal Declaration on Human Rights \n\n", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Continue pursuing appropriate awareness raising campaigns aimed at eliminating traditional patriarchal attitudes and stereotypes regarding the roles and responsibilities of women and men in society", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Increase international cooperation to guarantee economic, cultural and social rights ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Allow freedom of expression, freedom of the media and of assembly", - "values": [ - "4 - General action" - ] - }, - { - "text": "Maintaining its good example of restricting the application of death penalty to the most serious crime and after ensuring the proper due process and judicial safeguards ", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Extend an open and standing invitation to all the Special Procedures", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Adopt specific legislation on domestic violence, especially violence against women", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "That the proposed National Gender Policy should incorporate gender mainstreaming policies in all aspects of Federated States of Micronesia domestic law and policy", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Strengthen and coordinate the efforts of all institutions at the national level to ensure the protection of the Egyptian Diaspora", - "values": [ - "4 - General action" - ] - }, - { - "text": "Consider taking the necessary measures to further improve prison conditions ", - "values": [ - "3 - Considering action" - ] - }, - { - "text": "Initiate timely, independent, impartial and effective investigations into threats and attacks against human rights defenders, particularly indigenous defenders, to ensure their effective protection", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Fulfil its international reporting obligations", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Respect and protect the right to freedom of expression and strengthen the protection of journalists, civil society activists and human rights defenders against attacks", - "values": [ - "4 - General action" - ] - }, - { - "text": "Raise the age for criminal responsibility of boys and girls and eliminate corporal punishment against minors from the domestic legislation of the Bahamas", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Consider ratifying ICESCR, CEDAW and CRC at the earliest", - "values": [ - "3 - Considering action" - ] - }, - { - "text": "Guarantee the protection of the right to freedom of expression offline and online", - "values": [ - "4 - General action" - ] - }, - { - "text": "Take all necessary measures to achieve the objective of free primary education", - "values": [ - "4 - General action" - ] - }, - { - "text": "Strengthen at the constitutional level and in a specific manner, the provisions that prohibit discrimination against women", - "values": [ - "4 - General action" - ] - }, - { - "text": "Pursue efforts to ensure the representation of women at all levels of the political process and their participation in public life without discrimination or intimidation ", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Allocate more resources to improve the conditions of prisons around the country and in French overseas territories and provide additional training to prison staff ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Move forward with the proposal to amend the Equal Treatment Act to harmonise existing legislation, especially when it comes to providing equal protection on all discrimination grounds ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Recommended further action to remove societal discrimination against children with disabilities, street children and children living in rural areas ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Adopt necessary legal measures to ensure that the National Human Rights Commission of Sri Lanka is in line with Paris Principles", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Examine additional ways to accelerate and strengthen the integration of migrants into Maltese society, including in the work place, to allow them to contribute fully to the well-being of the country", - "values": [ - "3 - Considering action" - ] - }, - { - "text": "Continue policies aimed at fighting extreme poverty, as well as those aimed at achieving food security and infrastructure development ", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Enact the education bill as soon as possible", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Launch a comprehensive national policy to universalize the right to civil registration, considering its pivotal role to ensure the realization of other human rights, including to an adequate standard of living", - "values": [ - "4 - General action" - ] - }, - { - "text": "Conduct appropriate programs towards increasing participation and enhance participation of civil society in decision-making and development process ", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Prioritize training for the judiciary and the police on how to treat victims of trafficking as well as domestic violence ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Continue efforts to reduce prison overcrowding in the context of the Master Plan 2008-2012-2016", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Adopt and implement a comprehensive national action plan for combating trafficking, and improve the implementation of the 2005 memorandum of understanding with Thailand on trafficking, especially along the border areas ", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Continue its efforts to fight against poverty ", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Continue efforts in order to provide health and education services to a larger part of the population and continue initiatives related to social housing", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Respond to all recommendations set out in the report of the Ombudsman relating to the protection of the interests of minors having behavioural problems and in difficult social situations - pay more specific attention to the rights of such minors to have appropriate educational and medical support - and effectively implement an internal common regulation and an efficient inspection system in centres to prevent and combat abuse ", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Continue to implement measures to promote infrastructure development and capacity-building, especially in the field of health and medical services", - "values": [ - "4 - General action" - ] - }, - { - "text": "Take the necessary measures to ensure that no asylum-seeker is sent back immediately to its country of origin or any other country where his/her life is in danger, in accordance with applicable international norms ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Reform the Penal Code to abolish the ban imposed on sexual relations between same sex adults, in order to comply with the commitments made in 2011", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Continue its efforts in finalising the bill to combat trafficking in persons and to provide appropriate funding and resources on programmes and activities in this regard", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Harmonize federal and state laws with international human rights instruments, and equal protection and guarantees, at federal and state levels", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Respect at least minimum standards, as long as it maintains death penalty", - "values": [ - "4 - General action" - ] - }, - { - "text": "Expand and share with other countries the experiences in research on vaccines for diseases affecting the world population, especially in developing countries ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Elaborate a holistic strategy that includes judicial and social measures to eradicate female genital mutilation", - "values": [ - "4 - General action" - ] - }, - { - "text": "Create a national human rights institution in compliance with the Paris Principles", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Amend national legislation to align it with international human rights instruments to which Sudan is party", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Strengthen the legal framework for the protection of children, as well as guaranteeing the rights of delinquent minors", - "values": [ - "4 - General action" - ] - }, - { - "text": "Amend the criminal procedure code in order to ensure the right to a lawyer and put in place a law for the protection of witnesses", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Ensure that acts of violence committed by members of security forces are prosecuted in order to combat impunity", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Strengthen efforts to carry out prompt, impartial and effective investigations into all forms of violence against women and to bring those responsible to justice", - "values": [ - "4 - General action" - ] - }, - { - "text": "Hold officials of all ranks accountable for their actions, especially regarding allegations of killings, torture and other ill-treatment ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Strengthen legislation on the prohibition of torture and improve conditions of detention in prisons", - "values": [ - "4 - General action" - ] - }, - { - "text": "Expedite the submission of national reports to the human rights treaty bodies, including to the Committee on the Rights of the Child, the Committee on the Elimination of Discrimination against Women, the Committee against Torture and the Committee on the Rights of Persons with Disabilities", - "values": [ - "4 - General action" - ] - }, - { - "text": "Intensify efforts to consolidate a broad national multisectoral strategy to combat structural discrimination, including verbal expressions, against indigenous peoples, Afro-descendants and other vulnerable groups, considering their specific needs and capacities, through the empowerment of their rights and fair reparation mechanisms", - "values": [ - "4 - General action" - ] - }, - { - "text": "Give direct constitutional recognition to the rights enshrined in the International Covenant on Economic, Social and Cultural Rights and to guarantee the enforceability by courts", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Go ahead with its intention to examine the ratification of some international human rights instruments, in particular ICCPR and ICESCR ", - "values": [ - "3 - Considering action" - ] - }, - { - "text": "Declare a de jure moratorium on the death penalty with a view to its final abolition, and in this context take steps to become Party to the Second Optional Protocol to the International Covenant on Civil and Political Rights", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Continue to ensure that its legislation and methods to combat terrorism are in accordance with the International Covenant on Civil and Political Rights ", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Continue consultations and dialogue with the public and various stakeholders in order to promote awareness of the situation of persons with disabilities and their rights, and ratify and implement the Convention on the Rights of Persons with Disabilities", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Amend the Criminal Code to lift restrictions on the freedom of movement, freedom of assembly and freedom of expression", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Continue to maintain contact and constructive dialogue with the human rights treaty bodies", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Ensure that the military or administrative detention meet the requirements of Rwandan law and international law, in particular as concerns the right to a fair trial", - "values": [ - "4 - General action" - ] - }, - { - "text": "Provide an adequate training to prison staff and ensure that the perpetrators are held accountable for their actions, in order to prevent human rights violations", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Mainstream tackling racism throughout its departments and in its policy-making.", - "values": [ - "4 - General action" - ] - }, - { - "text": "Ensure that a national human rights institution compliant with the Paris Principles covers all parts of the Netherlands, whether through extension of the mandate of the existing national human rights institution or establishment of similar but separate institutions in the Caribbean territories", - "values": [ - "4 - General action" - ] - }, - { - "text": "Recognize the mandate of the Special Rapporteur on the situation of human rights, cooperate with him and grant him access ", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Consider improving the juvenile justice system by integrating and implementing the child friendly justice standards, including by, inter alia, ensuring that children benefit from the protection of specific provisions for children in conflict with the law, and establishing specialized procedural rule to ensure that all juvenile justice guarantees are respected, and ensuring that children are held in detention only as a last resort and separately from adults in both pre-trial detention and after being sentenced", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Align with the comprehensive recommendations made by the Committee against Torture and those mentioned by the Human Rights Committee in its review of Pakistan in 2017, regarding the rule of law and access to justice", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Review the detention in solitary confinement of persons under 18 years of age, to ensure that no child is held in ordinary prisons for adults", - "values": [ - "3 - Considering action" - ] - }, - { - "text": "Ratify the Convention on the Elimination of the Worst Forms of Child Labour ILO Convention No. 182, CED, ICERD, CAT and its Optional Protocol, the ICRMW and CRPD", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Expedite implementation of the National Disaster Management Act", - "values": [ - "4 - General action" - ] - }, - { - "text": "Intensify efforts to promote fair access to land ownership and good governance, and continue reforms undertaken with the assistance of the international community, in particular the High Commissioner for Human Rights, to reinforce institutional capacities and achieve the enjoyment of full human rights by the population ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Continue the efforts to become part of all the main international human rights instruments and cooperate with the special procedures of the Human Rights Council as well as with treaty bodies ", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Recommended the adoption of a moratorium leading to abolition of the death penalty.", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Work in close collaboration with civil society organizations so as to implement all of the recommendations accepted during the universal periodic review", - "values": [ - "4 - General action" - ] - }, - { - "text": "Accede to the Agreement on Privileges and Immunities of ICC", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Adopt and implement legislative and other effective measures to protect women and children from domestic violence and abuse in all forms ", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Improve the integration of children of migrants into the national health system", - "values": [ - "4 - General action" - ] - }, - { - "text": "Promote a public discussion on women's rights and encourage influential men- whether elders, clerics, politicians or others - to participate in this discussion and raise awareness, especially amongst boys, of the importance of seeing women and girls as equal and respected partners in society.", - "values": [ - "4 - General action" - ] - }, - { - "text": "Make declarations under article 14 of the International Convention on the Elimination of All Forms of Racial Discrimination and article 22 of the Convention against Torture, to recognize the individual complaints mechanisms under those treaties ", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Accelerate the process of legislative compliance review, mentioned in the state report, in order to ratify the core human rights treaties, in particular the ICCPR ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Continue its efforts to ensure that the provisions of international human rights conventions to which it is a party are incorporated into domestic law ", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Develop a comprehensive strategy and action plan to prevent violence against women, as well as establish an effective institutional mechanism to coordinate, monitor and assess the effectiveness of the measures taken, so that all forms of violence are systematically and duly investigated and perpetrators are effectively prosecuted and punished ", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Adopt a comprehensive law against trafficking in persons", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Continue efforts made to put an end to discrimination against women as well as to all forms of violence against women, including domestic violence, and to accelerate ratification of the Istanbul Convention", - "values": [ - "3 - Considering action" - ] - }, - { - "text": "Ensure that cases of excessive use of force and violence by security forces and prison authorities are immediately stopped and investigated by an independent and impartial authority ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Strengthen the asylum procedures by, among others, improving legal assistance for asylum-seekers, expediting the procedures, and responding to specific needs of asylum-seekers who are children, women and the elderly ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Implementing a new Plan of Action to Combat Gender-Based and Generational Violence", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Continue its efforts to consolidate its national human rights institutional architecture ", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Extend a standing invitation to all United Nations special rapporteurs", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Continue its poverty reduction efforts as a means of laying the groundwork for the further enhancement of the human rights of its people.", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "As a transitional measure, implement a moratorium on the application of the death penalty ", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Ratify the Optional Protocol to the Convention against Torture and establish an independent, effective and well-resourced National Preventive Mechanism", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Develop a national strategy to include in the school system at all levels appropriate measures in the field of human rights education, in accordance with the Plan of Action 2005-2009 of the World Programme for Human Rights Education ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Continue efforts in education and training on human rights, particularly for State agents and civil servants", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Ratify the Second Optional Protocol to the International Covenant on Civil and Political Rights, to eliminate the death penalty in national legislation", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Take steps to eliminate all forms of discrimination against women and girls in relation to marriage, family relations and succession ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Consider ratifying the following international instruments: the International Convention on the Elimination of All Forms of Racial Discrimination (CERD), ICESCR, Convention on the Rights of Persons with Disabilities (CRPD) and its protocol and ILO fundamental conventions ", - "values": [ - "3 - Considering action" - ] - }, - { - "text": "Ratify the 1989 ILO Convention No. 169 on indigenous and tribal peoples ", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Consider and follow up on the recommendations that the Special Rapporteur on the Right to Education has made during his visit in 2010 in order to strengthen national strategies and education programs currently being implemented", - "values": [ - "4 - General action" - ] - }, - { - "text": "Pursue its policy in acceding to international and regional conventions and mechanisms on human rights and freedoms", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Revise the Law on non-governmental organizations to comply fully with international human rights law ", - "values": [ - "3 - Considering action" - ] - }, - { - "text": "Circulate necessary legislation to combat domestic violence, register and investigate promptly all cases.", - "values": [ - "4 - General action" - ] - }, - { - "text": "Continue to take measures to ensure social equity and reduce poverty in the country", - "values": [ - "4 - General action" - ] - }, - { - "text": "Legislate to counter human trafficking and protect victims", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Introduce an immediate moratorium on executions with the intention of abolishing the death penalty and improve methods to accurately determine the ages of all defendants, such as by improving birth registration rates ", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Guarantee the right to freedom of expression, association and peaceful assembly and the right to participate in public and political life. To reach this goal, amend all laws violating these rights and bring them in line with international human rights standards, namely the Criminal Code, the Press and Communication Code and Law No. 2011-010 on freedom of assembly and public and peaceful demonstrations", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Make more efforts in law making and law enforcement to combat incitement to racial and religious discrimination in the internet ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Step up efforts for the protection of schools with a view to ensuring that education may continue", - "values": [ - "4 - General action" - ] - }, - { - "text": "Accelerate the process of the ratification of ICRMW", - "values": [ - "4 - General action" - ] - }, - { - "text": "Review its reservations to the Convention on the Elimination of All Forms of Discrimination against Women with a view to withdrawing them, especially the reservation to the right of a child to obtain Qatari nationality from a Qatari women married to a foreign man", - "values": [ - "3 - Considering action" - ] - }, - { - "text": "Continue its efforts in empowering the National Human Rights Commission, in particular by holding consultations with all stakeholders with a view to making necessary adjustments to the existing law so as to ensure the Commission is in line with the Paris Principles in respect of its mandate, composition, organization, functioning, independence and means ", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Introduce legal and practical measures aimed at eliminating discrimination against lesbian, gay, bisexual, transgender and intersex persons, including by raising public awareness of the issue, by passing appropriate anti-discrimination legislation and by repealing discriminatory legislation", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Continue implementing the 2013-2017 National Development Plan", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Enact legislative provisions prohibiting corporal punishment of girls and boys in the home and schools ", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Continue efforts to foster economic growth and to enhance employment opportunities ", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Ensure the effective implementation of the minimum employment age set out in the Labour Code and of provisions prohibiting heavy and hazardous work for children ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Consider ratifying or acceding to other core international treaties to which it is not a party", - "values": [ - "3 - Considering action" - ] - }, - { - "text": "Continue the improvement of the conditions of detention in jails, in particular by fighting prison overcrowding ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Implement the national strategy to prevent and respond to gender based violence", - "values": [ - "4 - General action" - ] - }, - { - "text": "Review its national legislation in order to strengthen media pluralism, provide for the safety of journalists and human rights defenders and facilitate the functioning of NGOs so that these important actors can pursue their activities freely without undue interference, attacks or intimidation", - "values": [ - "3 - Considering action" - ] - }, - { - "text": "Continue to take the necessary measures to combat all forms of gender inequality", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Continue with its efforts in raising awareness and knowledge on human trafficking, including through trainings and awareness-raising measures for law enforcement organs, judges and public prosecutors", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Continue addressing, as a priority, the effects of HIV/AIDS on women and children as a priority, in particular, the mother-to-child transmission", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Free all women and girls incarcerated for having undergone an abortion, or for having endured one spontaneously, and also remove their criminal records for these motives", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Widen the access to legal assistance for prisoners, and continue to assist with their rehabilitation into society to reduce recidivism", - "values": [ - "4 - General action" - ] - }, - { - "text": "Consider the possibility of withdrawing its reservations to article 4 of the International Convention on the Elimination of All Forms of Racial Discrimination.", - "values": [ - "3 - Considering action" - ] - }, - { - "text": "Strengthen efforts to guarantee freedom of religion and belief, especially by retracting so-called anti-conversion laws", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Further its efforts in promoting the rights of persons with disabilities, including through considering a consolidated national action plan and designating an implementation national focal point, and providing the necessary resources to further ensure inclusive education and accessibility for persons with disabilities", - "values": [ - "4 - General action" - ] - }, - { - "text": "Consider the prompt implementation of the recommendations contained in the report of the Special Rapporteur on torture and other cruel, inhuman or degrading treatment or punishment A-HRC-10-44-Add.1 and the report of the Working Group on Arbitrary Detention A-HRC-7-4-Add.3 ", - "values": [ - "3 - Considering action" - ] - }, - { - "text": "Ensure sufficient resources to the so-called chapter 9 institutions, which, as independent oversight bodies, serve a crucial purpose in upholding the rule of law and good governance", - "values": [ - "4 - General action" - ] - }, - { - "text": "Continue efforts aimed at the elimination of all forms of violence against women", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Introduce the legislative measures and policies necessary to ensure the protection and promotion of the rights of boys and girls, including explicit prohibition of corporal punishment both in public and private spheres, as previously recommended", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Implement effectively the Convention on the Elimination of All Forms of Discrimination against Women, in particular by addressing deep rooted stereotypes regarding the roles and responsibilities of women and men in the family and in society", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Take concrete steps to ensure a safe and enabling environment for human rights defenders and other civil society actors, journalists and members of the opposition, while also ensuring that independent civil society can meaningfully participate in all stages of the universal periodic review process without hindrance and fear of reprisals", - "values": [ - "4 - General action" - ] - }, - { - "text": "Ratify the Optional Protocol to the Convention on the Rights of the Child on a communications procedure ", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Give full and prompt implementation to those initiatives aimed at promoting an increased involvement of women in politics ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Fulfil the Government aim of limiting the use of capital punishment promptly by reducing the scope of crimes subject to the death penalty.", - "values": [ - "4 - General action" - ] - }, - { - "text": "Ensure that all of Afghanistan's religious communities are able to practice their religion freely and that their right to freedom of religion or belief is protected in any new legislation or legislation currently under review ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Continue to effectively address issues such as poor access to education and health systems for persons with disabilities", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Continue its work to eliminate discrimination against women and children among indigenous peoples", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Review the Penal Code articles 112 (lese-majesty), 326 (defamation), and 328 (slander) as well as 14 and 15 of the 2007 Computer Crimes Act, and align them to the human rights international obligations ", - "values": [ - "3 - Considering action" - ] - }, - { - "text": "Take appropriate measures to combat all forms of violence against women", - "values": [ - "4 - General action" - ] - }, - { - "text": "Give full and effective implementation to the national campaign to reduce violence against children and women in order to further reduce the occurrence of rape and domestic violence, sexual harassment, child abuse including in educational institutions and child marriage", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Give further impetus to the reforms towards the rule of law, human rights and integrated economic development, thereby increasing national security, stability and welfare ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Ensure that all complaints of violence, including sexual violence against detainees perpetrated or facilitated by police, are fully investigated and that suspected perpetrators are brought to justice, in line with concerns raised by the Special Rapporteur on the question of torture ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Work for the effective implementation of ILO Convention 169, preventing acts of unawareness and contempt for the human rights of indigenous peoples, in particular of the Mapuche ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Accede to and fully align its national legislation with the Rome Statute of the International Criminal Court (ICC), including by incorporating provisions to cooperate promptly and fully with the ICC and to investigate and prosecute genocide, crimes against humanity and war crimes effectively before its national courts, and accede to the Agreement on the Privileges and Immunities of the International Criminal Court ", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Sign the Optional Protocol to the International Covenant on Economic, Social and Cultural Rights before the end of 2011", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Review its Poverty Reduction Programmes with a view to addressing the root causes of poverty and the adoption of effective ways of dealing with the social challenges", - "values": [ - "3 - Considering action" - ] - }, - { - "text": "Continue the current policies for the promotion and protection of women's rights in accordance with human rights guarantees included in the new 2014 Constitution", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Withdraw its reservations and interpretative declarations on the International Covenant on Civil and Political Rights and the International Convention on the Elimination of All Forms of Racial Discrimination ", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Accede and adapt its national legislation to the Rome Statute of the International Criminal Court", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Ban child corporal punishment, notably within the penal and the educational system ", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Strengthen the National Commission for the Promotion of Equality.", - "values": [ - "4 - General action" - ] - }, - { - "text": "Make greater efforts to implement the national Action Plan for Human Rights and the national policy framework on human rights", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Accelerate efforts to ensure the full operationalization of the Zimbabwe Gender Commission", - "values": [ - "4 - General action" - ] - }, - { - "text": "Consider ratifying or acceding to: 1951 Refugee Convention and ILO No. 169 Convention on Indigenous and Tribal Peoples", - "values": [ - "3 - Considering action" - ] - }, - { - "text": "Ratify the Optional Protocol to the Convention against Torture and proceed with the corresponding legal reforms in compliance with said Convention", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Provide the Child and Family Agency with adequate resources to be able to meet its targets and effectively implement the Children First Act", - "values": [ - "4 - General action" - ] - }, - { - "text": "Close without any delay all detention facilities at the Guantanamo Bay as President Barack Obama has promised ", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Ensure the coordinated implementation of the National Domestic Violence Policy ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Continue to closely monitor the hate crime and discrimination cases, following the implementation by the United Kingdom Government of the newly launched Hate Crime Action Plan of 2016", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Consider the ratification of those international instruments of human rights of which it is not a party yet", - "values": [ - "3 - Considering action" - ] - }, - { - "text": "Repeal all provisions of law criminalizing sexual activity between consenting adults", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Allow political parties and the media to operate freely - ensure an impartial review of irregularities and formal electoral complaints stemming from the November 29 elections - and establish a representative independent body to review the country's election framework and ensure the legitimacy of the democratic process ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Expedite the adoption of the national legislation on human trafficking and the draft national policy on special protection that was finalized in 2013", - "values": [ - "4 - General action" - ] - }, - { - "text": "Develop social integration policies, especially for migrants and refugees", - "values": [ - "4 - General action" - ] - }, - { - "text": "Take, through capacity-building and technical assistance from the international community, the necessary measures to restore and strengthen national institutions essential to the administration of justice, the rule of law, including the judiciary, the office of the prosecutor, and the police", - "values": [ - "4 - General action" - ] - }, - { - "text": "Integrate sign language into public media and provide training for interpreters in that field", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Improve the protection of the health of pregnant women and mothers, especially in rural areas", - "values": [ - "4 - General action" - ] - }, - { - "text": "Ensure the availability of textbooks in their mother tongue for the national minorities", - "values": [ - "4 - General action" - ] - }, - { - "text": "Issue a standing invitation to all Human Rights Council thematic special procedures, and facilitate requested visits and respond promptly and substantially to the communications transmitted to Fiji by the special procedures mandate holders", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Effectively protect and guarantee the safety and human rights of migrants, especially women and children, including those that are in transit in the national territory, ensuring their access to justice, education, health and civil registry, incorporating the principle of the best interest of the child and the family unit", - "values": [ - "4 - General action" - ] - }, - { - "text": "Accelerate its ratification process of the Optional Protocol to the International Covenant on Economic, Social and Cultural Rights", - "values": [ - "4 - General action" - ] - }, - { - "text": "Cooperate fully with the United Nations treaty bodies", - "values": [ - "4 - General action" - ] - }, - { - "text": "Provide the families concerned with all available and relevant information on the cases of persons who have disappeared ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Ratify CAT", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Enforce its established policies and uphold its legislation to prevent instances of marginalization and discrimination against women ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Take steps to address persistent cultural discrimination against indigenous people and people of African descent, including awareness-raising and the establishment of quantitative measures promoting their participation at the highest level and in decision-making positions", - "values": [ - "4 - General action" - ] - }, - { - "text": "Take appropriate measures in the field of education, in particular to combat illiteracy ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Ensure that detention conditions and provisions for access to legal and in particular judicial remedies comply with international standards and strengthen the training of police and other law enforcement officials and set up effective mechanisms to ensure an independent investigation of alleged misconduct", - "values": [ - "4 - General action" - ] - }, - { - "text": "Develop a national action plan to combat discrimination in consultation with civil society ", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Release all child soldiers", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Step up its measures in promoting and protecting the rights of children living in rural areas including through ensuring equal access to education between children living in urban and rural areas", - "values": [ - "4 - General action" - ] - }, - { - "text": "Step up measures in combating discrimination, xenophobia and related intolerance against persons belonging to religious and ethnic minorities, particularly Muslims", - "values": [ - "4 - General action" - ] - }, - { - "text": "Pay attention to the trafficking in women and children for sexual and other exploitative, purposes, preventing and combating such trafficking, also by means of including in the Human Trafficking Act a definition of trafficking, and ensure that trafficked women and girls have access to quality medical care, counselling and shelter", - "values": [ - "4 - General action" - ] - }, - { - "text": "Guarantee the rights of refugees and migrants and make substantive progress in fighting and preventing xenophobic violence", - "values": [ - "4 - General action" - ] - }, - { - "text": "Incorporate in its national law the crime of torture corresponding to the definition of torture in article 1 of the Convention against Torture", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Establish a simple and accessible procedure of birth registration to guarantee that all children have access to it", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Implement, in practice, the Prevention and Prohibition of Torture Act, including through the establishment of an effective system of prevention of all forms of torture and other cruel, inhuman or degrading treatment", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Consider acceding to those human rights instruments to which it is not a party, in particular to OP-CAT ", - "values": [ - "3 - Considering action" - ] - }, - { - "text": "Create regulations and public policies in favour of sexual and reproductive rights, especially those of women and indigenous population", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Address the electoral shortcomings raised by numerous actors, including the Special Rapporteur on Cambodia and the European Union technical assistance mission ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Withdraw reservations to CAT and accede to its Optional Protocol ", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "With reference to international instruments, San Marino recognized the importance of treaties that contain individual complaint mechanisms and was committed to addressing reporting delays and to acceding to OP-ICESCR, the Optional Protocol to the Convention on the Rights of the Child on a communications procedure, and to the United Nations Educational, Scientific and Cultural Organization (UNESCO) Convention against Discrimination in Education.", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Ensure that all human rights activists operating in the country, including individuals cooperating with United Nations human rights mechanisms, are spared from any criminalisation, harassment or intimidation and can perform freely their legitimate duties ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Ratify and fully align its national legislation with the Rome Statute of ICC", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "The Government of Bosnia and Herzegovina and the entity Governments join forces and amend the constitution in order to ensure the full political participation of all citizens at all levels of governance, regardless of their national and ethnic origin, and take further steps towards the implementation of the Sejdic and Finci decision of the European Court of Human Rights, including by establishing an implementation timeline", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Criminalize all forms of violence against women and hold the perpetrators of such violence accountable", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Continue to intensify efforts to fight against violence faced by persons with albinism", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Establish a comprehensive national policy and guidelines governing adoption in compliance with CRC ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Align national laws in accordance with the principles outlined in the Convention on the Elimination of All Forms of Discrimination against Women to address women's rights that include land acquisition, equality and citizenship of children", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Consider ratifying the International Convention on the Protection of the Rights of All Migrant Workers and Members of their Families", - "values": [ - "3 - Considering action" - ] - }, - { - "text": "Harmonize the national legislation with the Convention on the Rights of the Child and article 16.2 of the Convention on the Elimination of All Forms of Discrimination against Women by passing a legislative amendment to raise the minimum age of consent to marriage for girls to 18 years", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Improve protections for victims of domestic violence, including by ensuring timely investigations, prosecuting perpetrators, and training police in risk-based assessments", - "values": [ - "4 - General action" - ] - }, - { - "text": "Increase the training and staffing levels of institutions for children, improve oversight, and implement incentives to attract higher-quality candidates to fill positions at these institutions", - "values": [ - "4 - General action" - ] - }, - { - "text": "Improve the health sector by increasing the national budget for health and ensuring full and equal access to health in line with the health sector development plan", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Strengthen its efforts to combat violence against women, including by enacting and implementing necessary legislation and measures to ensure proper investigation and prosecution of sexual violence, thereby promoting access to remedy for victims", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Step up its efforts to combat racial profiling in all sectors, both public and private ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Take temporary special measures to address gender equality and consider reintroducing the gender equality bill to Parliament", - "values": [ - "4 - General action" - ] - }, - { - "text": "Consider the possibility of acceding to the Optional Protocol to the Convention on the Rights of the Child on the sale of children", - "values": [ - "3 - Considering action" - ] - }, - { - "text": "Continue efforts to safeguard cultural, social and economic rights, including in the least developed regions", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Invite the Special Rapporteur on extrajudicial, summary or arbitrary executions to visit the country.", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Sign and ratify the CPED and recognize the competence of its Committee ", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Take appropriate legislative and public policy measures with a view of continuing the promotion of the rights of Afro-Panamanians and the fight against racism and xenophobia", - "values": [ - "4 - General action" - ] - }, - { - "text": "Work towards enforcing the law on the education system and increase financial support specifically for education to ensure that all children receive education, and upgrade the educational infrastructure and the quality of education", - "values": [ - "4 - General action" - ] - }, - { - "text": "Take additional measures to ensure the full enjoyment of the right to education by children with an immigrant background ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Undertake a process of broad, national consultations with civil society, including the Danish Institute for Human Rights, in the follow-up to this review ", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Present the initial report on the implementation of the International Covenant on Economic, Social and Cultural Rights, as a matter of priority", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Continuing efforts aimed at promoting awareness of the culture of human rights in the society", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Institute measures to prevent and effectively respond to all incidents of violence, sexual abuse, exploitation and trafficking of women and girls, as well as introduce measures to effectively investigate, prosecute and punish all perpetrators", - "values": [ - "4 - General action" - ] - }, - { - "text": "Consider imposing adequate sanctions on parents who fail to send their children to school.", - "values": [ - "3 - Considering action" - ] - }, - { - "text": "Strengthen the institutional capacities to provide support for asylum seekers and migrants in full respect of their human rights", - "values": [ - "4 - General action" - ] - }, - { - "text": "End all construction in the Occupied Palestinian Territories and the destruction of natural and agricultural resources of the Palestinian people", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Criminalize conjugal violence and adopt a comprehensive strategy to prevent and fight against gender-based violence", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Recommended making a humanitarian gesture by liberating prisoners for political and religious offenses who are in serious health condition", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Strengthen the literacy programmes for women and girls, in particular in rural areas", - "values": [ - "4 - General action" - ] - }, - { - "text": "Submit the initial report to the International Covenant on Civil and Political Rights ", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Consider withdrawing legislation that prohibits the wearing of religious symbols ", - "values": [ - "3 - Considering action" - ] - }, - { - "text": "Elaborate a general strategy, in consultation with members of the Gypsy, Traveller and Roma communities, to ensure a systematic and coherent approach to address the problems that such communities continue to face, including discrimination and stigmatization", - "values": [ - "4 - General action" - ] - }, - { - "text": "Adopt measures to incorporate the Convention on the Rights of the Child into national legislation", - "values": [ - "4 - General action" - ] - }, - { - "text": "Continue and enhance the ongoing positive efforts aimed at increasing the quality and accessibility of health services for all its citizens ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Improve birth registration system and be supported by awareness- raising activities, in order to sustain the rise in registration numbers, especially in rural areas", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Encouraged the establishment of a National Human Rights Institution based on Paris Principles", - "values": [ - "4 - General action" - ] - }, - { - "text": "Adopt a whistleblower law so that those who identify corruption are protected from prosecution or harassment.", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Accede to ICERD ", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Proceed with the ratification of the Optional Protocol to the International Covenant on Economic, Social and Cultural Rights ", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Adopt in the period 2015-2020 the Act establishing the National Care System", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Request technical assistance from the various United Nations bodies, responsible in particular for the protection of children's rights and of persons with disabilities so that in order to ensure the effectiveness of the rights of these vulnerable persons", - "values": [ - "1 - Minimal action" - ] - }, - { - "text": "Ensure that human rights bodies such as the Public Prosecutor's Office and the Judiciary have the necessary financial and human resources as well as human rights training to guarantee their independence and impartiality so that they can perform their work effectively", - "values": [ - "4 - General action" - ] - }, - { - "text": "Continue its efforts to ensure that perpetrators of hate crimes are brought to justice and proper redress is given to victims, including by adopting measures to better track all reported hate crimes throughout the justice system", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Ratify CED", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Step up its efforts to combat and prevent discrimination faced by persons belonging to Roma communities, including ensuring the right to education on a non-discriminatory basis for all Roma children", - "values": [ - "4 - General action" - ] - }, - { - "text": "Invite a tripartite ILO mission to monitor the situation during the cotton harvest with regard to its compliance with labour Conventions to which Uzbekistan is party ", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Change the public policies and abolish legislation, norms, mechanism or discriminatory provisions against Palestinians living in Israel and in the occupied territories, including putting an end to the segregated roads for the exclusive use of the Israeli population, the settlements, the restrictions to the freedom of movement of Palestinians, the control posts, and the separation walls, the use of human shields in operations of the Israeli military and the practice of selective killings through the use of drones", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Strengthen its technical cooperation with relevant agencies and stakeholders in order to prevent the adverse impact of climate change on its promotion and protection of human rights ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Establish an independent national human rights institution in conformity with the Paris Principles, providing it with the necessary human and financial resources to effectively exercise its functions, including the investigation of allegations of torture ", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Ratify the Rome Statute of the International Criminal Court and cooperate fully with that Court", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Step up efforts towards improvement of living conditions of the prison population", - "values": [ - "4 - General action" - ] - }, - { - "text": "Review the rights of detainees and conditions in local prisons and detention facilities so that they meet international standards, in particular where juvenile offenders are concerned ", - "values": [ - "3 - Considering action" - ] - }, - { - "text": "Invigorate measures to safeguard the freedoms of press, speech, and broad participation from various sectors in political and public life", - "values": [ - "4 - General action" - ] - }, - { - "text": "Establish a mechanism for monitoring the legality of arrests and detentions", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Ensure that human rights are afforded full legal and constitutional protection in Fiji", - "values": [ - "4 - General action" - ] - }, - { - "text": "Adopt measures to facilitate greater representation of women in public office and improve the participation of women in political life", - "values": [ - "4 - General action" - ] - }, - { - "text": "Review the reservations which the Republic of Iraq made when acceding to international human rights treaties", - "values": [ - "3 - Considering action" - ] - }, - { - "text": "Enforce regulations to protect foreign workers, particularly regarding work conditions and occupational and safety standards, and prosecute violations", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Redouble its efforts to prevent any form of discrimination", - "values": [ - "4 - General action" - ] - }, - { - "text": "Strengthen policies on violence against women by means of effective complaint mechanisms and legal and social counselling", - "values": [ - "4 - General action" - ] - }, - { - "text": "Accede to the Agreement on the Privileges and Immunities of the International Criminal Court and implement it fully at the national level", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Undertake awareness campaigns directed towards the judiciary with a view to promoting non-discrimination", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Take all necessary measures to ensure that all reports of ill-treatment and torture in prisons and centres of detention are adequately investigated and ratify the Optional Protocol to the Convention against Torture", - "values": [ - "4 - General action" - ] - }, - { - "text": "Put in place further strategies and programmes focused on preventing violence against children in schools and families", - "values": [ - "4 - General action" - ] - }, - { - "text": "Pursue cooperation with the thematic procedures of the Council, based on the principles of objectivity, impartiality and non-politicisation ", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Adopt necessary mechanisms to implement the recommendations of the Special Rapporteur on freedom of religion or belief", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "The instrument of ratification for the Optional Protocol to the International Covenant on Economic, Social and Cultural Rights, as well as the Convention on the Rights of Persons with Disabilities, would be submitted within the next 18 months", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Call upon the international community, in particular the bilateral partners of Jamaica, to offer all the necessary development support and cooperation to Jamaica for the implementation of the universal periodic review recommendations in country-driven and country-owned approaches, as forcefully stressed by the Honourable Minister ", - "values": [ - "1 - Minimal action" - ] - }, - { - "text": "Consider the request of the Special Rapporteur on the right to food to visit the country", - "values": [ - "3 - Considering action" - ] - }, - { - "text": "Promptly investigate all allegations of human rights violations, including in the three southernmost provinces, and bring perpetrators to justice ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Take effective legal and practical measures to prevent and combat dissemination of racist, xenophobic and Islamophobic propaganda in particular in press and on the Internet ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Take immediate measures in order to comply fully with the Optional Protocol to the Convention on the Rights of the Child on the involvement of children in armed conflict.", - "values": [ - "4 - General action" - ] - }, - { - "text": "Continue efforts to guarantee access to education for all", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Strengthen its institutional framework, including by establishing a national human rights institution according to the Paris Principles ", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Continue consultations with a view to allowing the Uruguayan diaspora to exercise their right to vote ", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Continue to implement measures to strengthen public health services for all its citizens", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Ensure the inclusion of provisions relating to equality between men and women in the Constitution and the legislative system, and continue to pursue the implementation of effective measures to combat gender inequality ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Enact legislation that includes protection from discrimination on the basis of intersex status", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Adopt appropriate measures to disseminate widely and ensure full observance of the Declaration on Human Rights Defenders. The Declaration, as well as all other human rights standards, should in particular be made available to schools and institutions of higher education ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Intensify the efforts, including through increasing the seeking of technical cooperation, for establishing special educational programmes for boys and girls with disabilities ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Continue its efforts to strengthen the health sector, paying particular attention to access to health services for children and indigenous peoples", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Sign and ratify OP-ICESCR, which was recommended by the Spanish delegation in the first cycle", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Impose a moratorium on the death penalty with a view to abolishing the capital punishment. Further with regards to numerous cases of juvenile offenders facing the death penalty ", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "End the harassment and persecution of journalists and release the detained Washington Post reporter, Jason Rezaian, to demonstrate its commitment to freedom of expression", - "values": [ - "4 - General action" - ] - }, - { - "text": "Publish all information about the imposition and use of the death penalty, including information on executions carried out.", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Continue its actions against domestic violence, especially when the victims are children and women, and fight effectively against human trafficking ", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Undertake all measures, including by seeking technical assistance and capacity-building to address the concerns relating to the need to strengthen institutions responsible for the enforcement of human rights ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Consider acceding to the remaining international human rights treaties", - "values": [ - "3 - Considering action" - ] - }, - { - "text": "Remedy violence against women and girls, including gender and sexual violence, through the implementation of legislation that prevents and criminalises such acts", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Request the international community to provide assistance to the project on incorporating human rights in the school curriculum", - "values": [ - "1 - Minimal action" - ] - }, - { - "text": "Continue its efforts in improving the situation of women ", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Abolish the death penalty in law and ratify the Second Optional Protocol to the ICCPR", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Bring conditions in detention centres in line with international standards", - "values": [ - "4 - General action" - ] - }, - { - "text": "Increase efforts to ensure that evictions occur in compliance with the land law and that greater attention is paid to ensuring that communities relocated to resettlement sites have access to appropriate facilities, especially in urban areas ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Take legislative measures to explicitly prohibit all forms of discrimination, in particular against children with disabilities, girls and children belonging to the San communities, and to effectively protect children accused of witchcraft", - "values": [ - "4 - General action" - ] - }, - { - "text": "Continue its efforts to conform its National Human Rights Institution with the Paris Principles", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Continue its efforts to promote the full integration of ethnic minorities into Latvian society and facilitate the naturalization and acquisition of citizenship, especially in the case of children ", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Become a party to the Optional Protocol to the International Covenant on Economic, Social and Cultural Rights ", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Continue promoting programmes protecting the right to food, through sustainable agriculture that preserve the eco-system ", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Undertake the Law's implementation by all relevant authorities, at the federal, state and municipal levels, including in the prevention and eradication of violence against women, as well as care for victims", - "values": [ - "4 - General action" - ] - }, - { - "text": "Lift de jure and de facto restrictions on political parties to allow for genuine political participation and dialogue ", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Ensure full compliance with international child labour standards, including ILO Convention No. 182 on the worst forms of child labour, collaborate with the ILO to that effect and carefully consider the relevant recommendations of the Committee on the Rights of the Child and the Human Rights Committee ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Take steps to guarantee full and effective recognition of sexual and reproductive rights, notably through the decriminalization of voluntary interruption of pregnancy", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Ensure that discrimination based on sexual orientation and gender identity are specifically included in the Anti-Discrimination Act and related programmes", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Ensure the exercise of the freedom of expression, assembly, association, and the right to participate in public and political life.", - "values": [ - "4 - General action" - ] - }, - { - "text": "Consider repealing article 377 of the Criminal Code ", - "values": [ - "3 - Considering action" - ] - }, - { - "text": "Review its legislation and practice with a view to ensuring effective access to asylum procedure and upholding the principle of non-refoulement.", - "values": [ - "3 - Considering action" - ] - }, - { - "text": "Further implement the National Education Strategic Plan 2011-2013 ", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Undertake a comprehensive review of arrangements for the appointment, training and transfer of judges, with a view to ensuring their independence and their full understanding and application of human rights obligations", - "values": [ - "3 - Considering action" - ] - }, - { - "text": "Continue cooperating closely with neighbouring countries in combating and suppressing trafficking in persons, particularly women and girls and in addressing the situation of irregular migrants, refugees and asylum-seekers ", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Take appropriate measures to facilitate family reunification of migrant workers and members of their families", - "values": [ - "4 - General action" - ] - }, - { - "text": "Consider the establishment of a national human rights institution in conformity with the Paris Principles ", - "values": [ - "3 - Considering action" - ] - }, - { - "text": "Establish and adequately resource a well-functioning guardianship and care system for unaccompanied minor refugees or asylum seekers", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Repeal laws and Penal Code provisions prohibiting and punishing consenting sexual relations between adults of the same sex", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Further guarantee citizens' right to express themselves, to vote and to be elected", - "values": [ - "4 - General action" - ] - }, - { - "text": "Enact legislation on domestic violence as a matter of priority and increase access to justice for victims of\nsuch violations", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Review its national legislation on freedom of expression so that it fully complies with the relevant provisions of the International Covenant on Civil and Political Rights, and ensure the effective protection of human rights defenders against harassment or persecution ", - "values": [ - "3 - Considering action" - ] - }, - { - "text": "Convert the present de facto moratorium on executions into a formal moratorium", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Investigate, prosecute and punish those responsible for rape and other forms of gender-based violence ", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Fully cooperate with United Nations Human Rights mechanisms", - "values": [ - "4 - General action" - ] - }, - { - "text": "Adopt a comprehensive national human rights plan of action and finalise the national plan for the protection of women and children", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Continue to strengthen mechanisms to prevent and eliminate all forms of discrimination and xenophobic speech against foreigners, migrants and multicultural families", - "values": [ - "4 - General action" - ] - }, - { - "text": "Adopt and implement legislation prohibiting Female Genital Mutilation FGM, and ensure that offenders are prosecuted and punished, and take legal and education measures to combat this practice", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Enhance its efforts to prevent prison overcrowding", - "values": [ - "4 - General action" - ] - }, - { - "text": "Ensure full respect for equal rights of women in all areas of life, including by ensuring the equal participation of women in decision making ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Step up the actions for the fight against poverty, in particular in rural areas ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Ratify, without reservation, the Second Optional Protocol to the International Covenant on Civil and Political Rights and take the necessary measures so as to commute the sentences of those under the death penalty", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Pursue the implementation of the Public Policy and the National Action Plan on Human Rights 2013-2022", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Step up its efforts to detect, prevent and combat trafficking in minors for the purpose of sexual or other forms of exploitation, in accordance with recommendations of the Committee on the Rights of the Child", - "values": [ - "4 - General action" - ] - }, - { - "text": "Consider raising (from 7 years old) the minimum age of criminal responsibility ", - "values": [ - "3 - Considering action" - ] - }, - { - "text": "Continue its efforts to achieve the complete eradication of female genital mutilation, including by raising awareness about the risks associated with this practice and about its prohibition ", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Take measures to ensure full protection of children at all levels and in all spheres and to ensure that the institutions tasked to implement such measures are adequately funded and resourced in order to carry out this function effectively", - "values": [ - "4 - General action" - ] - }, - { - "text": "Germany wished to repeat its recommendation from the first cycle of the UPR, to amend the definition of discrimination in the Constitution in such a way that it covers discrimination based on descent, and abolish those laws that permit discrimination on the basis of ethnicity, language and culture", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Continue to ensure the budgetary allocations granted to the mechanism for the protection of human rights defenders, and recruit immediately the entire set of specialized staff to guarantee effective work by the mechanism and contribute thus effectively to the protection and security of all human rights defenders", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Persist in its efforts to improve the system of medical care and health care coverage in the country", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Consider ratifying international human rights conventions to which it is not yet a party ", - "values": [ - "3 - Considering action" - ] - }, - { - "text": "Increase the budget for health so as to strengthen primary care, in particular in rural areas, including sexual education, and ensure that programmes for family planning and awareness duly take into account the traditions and physical obstacles faced by women in rural areas", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Ensure that all children with displaced person status are treated equally in the law irrespective of the sex of their parents, as recommended, inter alia, by the Committee on Economic, Social and Cultural Rights in 2009 ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Study the possibility of ratifying the International Convention on the Protection of All Persons from Enforced Disappearance (CED), the Second Optional Protocol to the International Covenant on Civil and Political Rights (ICCPR-OP2), the Optional Protocol to the Convention against Torture (OP- CAT), the Optional Protocol to the International Covenant on Civil and Political Rights (ICCPR-OP1), the Optional Protocol to the International Covenant on Economic, Social and Cultural Rights (OP-ICESCR), the International Convention on the Protection of the Rights of All Migrant Workers and Members of Their Families (ICRMW), and the Optional Protocol to the Convention on the Rights of Persons with Disabilities (OP-CRPD) ", - "values": [ - "3 - Considering action" - ] - }, - { - "text": "Continue to promote economic and social sustainable development, raise people\u2019s standard of living and lay a solid foundation for the enjoyment of all human rights by its people", - "values": [ - "4 - General action" - ] - }, - { - "text": "Put an end to the restrictions on freedom of expression, including arrest of journalists and human rights activists", - "values": [ - "4 - General action" - ] - }, - { - "text": "Pursue appropriate, efficient policies to address the access of its indigenous population to employment, medical services, education and housing ", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Continue negotiations to reach agreement on pending issues such as border and natural resources ", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Continue its efforts to improve its education system and provide skills development programmes especially for youths", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Strengthen measures to eliminate gender-based violence against women", - "values": [ - "4 - General action" - ] - }, - { - "text": "Continue efforts towards abolishing the death penalty", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Consolidation of the Higher Committee on Human Rights and Fundamental Freedoms, in line with the Paris Principles, by giving it legislative status, reinforcing its administrative and financial autonomy, expanding its prerogatives - self-referral, impromptu visits to prisons, individual appeals, and developing its means of action to stand against all forms of rights violation", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Adopt measures conducive to the creation of a national human rights institution in accordance with the Paris Principles", - "values": [ - "4 - General action" - ] - }, - { - "text": "Close Jaslyk Prison, or relocate it in order to improve the conditions of detention and its accessibility ", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Ratify the Rome Statute of the International Criminal Court and accede to the Agreement on Privileges and Immunities of the International Criminal Court", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Remove the death penalty from its criminal statutes and ratify the Second Optional Protocol to the ICCPR ", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Continue to make progress on measures against migrants' discrimination", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Consider the introduction of a moratorium on the use of the death penalty in the national criminal system", - "values": [ - "3 - Considering action" - ] - }, - { - "text": "Take further positive actions in the areas of promoting equal opportunities between men and women and domestic violence", - "values": [ - "4 - General action" - ] - }, - { - "text": "Extend an invitation to the Special Rapporteur on the independence of judges and lawyers to visit Rwanda", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Implement effectively measures to assist girls and children from low-income families to have access to quality education", - "values": [ - "4 - General action" - ] - }, - { - "text": "Establish a broad based media information campaign on the rights of migrants in Arabic and in the languages of main groups of migrants ", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Develop and implement a comprehensive strategy on fighting discrimination and marginalization of indigenous peoples", - "values": [ - "4 - General action" - ] - }, - { - "text": "Review the system of administration of justice in order to expedite the delivery of justice ", - "values": [ - "3 - Considering action" - ] - }, - { - "text": "Redouble its efforts in regard to combating trafficking in persons, particularly in combating the trafficking of children for sexual and labour exploitation, including through addressing the root causes of trafficking, establishing additional shelters for rehabilitation and social integration of victims and ensuring systematic investigation, prosecution and punishment of traffickers ", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Take measures to protect journalists from harassment", - "values": [ - "4 - General action" - ] - }, - { - "text": "Consider issuing a standing invitation to special procedures ", - "values": [ - "3 - Considering action" - ] - }, - { - "text": "Continue efforts to train authorities involved in the administration and handling of justice in cases that affect indigenous peoples on the human rights of this group of society and review the cases of indigenous detainees, in particular children and women, with a view to providing them adequate assistance", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Consider ratifying the third Optional Protocol to the Convention on the Rights of the Child", - "values": [ - "3 - Considering action" - ] - }, - { - "text": "Strengthen the actions which ensure the effective implementation of legislation on special protection for women victims of violence ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Ensure the immediate release of all children associated with armed forces or groups by issuing clear orders including at local level", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Consider establishing an independent body for the promotion and monitoring of the Convention on the Rights of the Child ", - "values": [ - "3 - Considering action" - ] - }, - { - "text": "Continue with efforts to strengthen the rights of the child and protect them even further, in particular, the necessary resources should be earmarked so as to protect the weakest segments of the population, above all the disabled persons, and assistance should be requested from UNICEF in that regard.", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Strengthen measures to prevent recruitment of children in the armed forces ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Pursue its substantial efforts to alleviate the suffering and to improve the living conditions of IDPs and refugees ", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Revise the Constitution to add gender and disability as grounds for which no one may be discriminated", - "values": [ - "3 - Considering action" - ] - }, - { - "text": "Take effective steps to improve prison conditions and to reduce overcrowding", - "values": [ - "4 - General action" - ] - }, - { - "text": "Review its institutions, particularly the judiciary to ensure their compatibility with accepted world practice where politicians are given adequate space to govern and fulfil their political mandate ", - "values": [ - "3 - Considering action" - ] - }, - { - "text": "Update and enact the pending disaster management bill with a view to realizing these basic rights to clean and safe drinking water and the right to a clean environment", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Implement immediately the National Plan to Reduce Violence against Women and their Children", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Improve social and economic conditions of the members of the Traveller community ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Consider the explicit prohibition of all practices of corporal punishment of children.", - "values": [ - "3 - Considering action" - ] - }, - { - "text": "Take strong legislative and administrative measures to effectively protect women's rights ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Continue its contribution at the international level to efforts aimed at fighting hunger in\naccordance with the outcome of the World Food Summits as well as relevant resolutions of the\nGeneral Assembly and the Human Rights Council ", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Ensure that evictions take place voluntary and without coercion ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Eliminate discriminatory provisions in its legislation ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Intensify efforts in implementing its national preventive strategy against gender-based violence", - "values": [ - "4 - General action" - ] - }, - { - "text": "Continue efforts aimed at strengthening the protection of human rights, in addition to improving the education and health system", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Improve access of women to reproductive health and related services, in particular in the case of women living in rural areas, as well as adopt measures to banish the practice of female genital mutilation ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Ratify the Convention for the Protection of All Persons against Enforced Disappearance, the Convention on the Rights of Persons with Disabilities and the Optional Protocol to the Convention against Torture and Other Cruel, Inhuman or Degrading or Punishment.", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Explicitly criminalize corporal punishment of children ", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Introduce a moratorium on the execution of the death penalty with a view to completely abolishing capital punishment ", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Further strengthen the capacities of the Human Rights Institution in line with the Paris Principles", - "values": [ - "4 - General action" - ] - }, - { - "text": "Accelerate the nomination of members of the National Committee of Inquiry, as well as of the Reconciliation, Land and Public Administration Committees ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Consider accession to the Second Optional Protocol to the International Covenant on Civil and Political Rights, a de facto and de jure moratorium on the imposition of the death penalty and converting capital offences to life imprisonment sentences", - "values": [ - "3 - Considering action" - ] - }, - { - "text": "Carry out broad and systematic awareness-raising campaigns to combat stigmatization, generalization, stereotypes and prejudice against non-citizens", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Consider ratifying the Optional Protocol to the Convention on Persons with Disabilities ", - "values": [ - "3 - Considering action" - ] - }, - { - "text": "Demolish the shameful wall of separation which violates the human rights of the Palestinians", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Accelerate activities for implementation of the Agenda for Sustainable Socioeconomic Transformation", - "values": [ - "4 - General action" - ] - }, - { - "text": "Continue increasing the access of women to employment, participation in public life, education, housing and health ", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Ensure that all women and girls have access to affordable and modern contraceptive methods", - "values": [ - "4 - General action" - ] - }, - { - "text": "Increase international and regional cooperation with regard to the issue of trafficking in persons", - "values": [ - "4 - General action" - ] - }, - { - "text": "Consider ratifying the Second Optional Protocol to the International Covenant on Civil and Political Rights with a view to total abolishment of the death penalty", - "values": [ - "3 - Considering action" - ] - }, - { - "text": "Conform to the provisions of article 6 of the International Covenant on Civil and Political Rights, and move towards a moratorium on executions with a view to considering the definite abolition of the death penalty ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Take actions to avoid labour discrimination based on age, particularly against young people and the elderly, as well as promote actions to reduce prejudices based on the life cycle ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Submit its periodic reports as soon as possible and establish mechanisms for the implementation of recommendations with the participation of civil society.", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Take measures to ensure that article 15 of the Constitution fully complies with the International Covenant on Civil and Political Rights.", - "values": [ - "4 - General action" - ] - }, - { - "text": "Continue to implement the policies aimed at guaranteeing the best interests of children and adolescents, and to consider the establishment of a children's ombudsman in that context", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Strengthen the capacities of judicial institutions in order to bring those responsible for sexual violence to justice ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Continue its effort to secure satisfactory sanitary facilities in Irish prisons, including in-cell sanitation, and to mitigate overcrowding", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Take measures to guarantee freedom of religion", - "values": [ - "4 - General action" - ] - }, - { - "text": "Approve a national human rights plan early", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Accelerate the drafting, adoption and implementation of laws to determine the age of marriage so as to do away with underage marriage ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Adopt a national plan to combat human trafficking", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Continue to work with the countries of the region in special programs that address the situation of criminality against migrants", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "End violence and discrimination against migrants", - "values": [ - "4 - General action" - ] - }, - { - "text": "Provide its police force with training to ensure respect for the right to freedom of religion", - "values": [ - "4 - General action" - ] - }, - { - "text": "Consider developing a national policy of protection of human rights defenders which could focus on a national system for protection of witnesses and human rights defenders.", - "values": [ - "3 - Considering action" - ] - }, - { - "text": "Cooperate with the international community, including by providing access to the Special Rapporteur on the situation of human rights in Eritrea, in a transparent manner for the benefit of the human rights of the Eritrean people ", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Reconsider the need to maintain the current state of emergency, given its implications for human rights, with a view to lifting it as soon as possible, and to ensure that as long as it is still in force, all human rights and fundamental freedoms that cannot be derogated under international law are respected", - "values": [ - "3 - Considering action" - ] - }, - { - "text": "Adjust the Criminal Code to what is set out in articles 2 and 3 of OPCRC-SC, by criminalizing the offences enshrined in that Protocol ", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Ensure journalists and the media are able to conduct their work freely and independently", - "values": [ - "4 - General action" - ] - }, - { - "text": "Continue its efforts to combat domestic violence and gender-based violence", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Ensure that the relationship between the executive and the judiciary is based on mutual trust and respect for non-interference in their respective prerogatives and functions", - "values": [ - "4 - General action" - ] - }, - { - "text": "Order without delay the opening of impartial and independent investigations on information reporting acts of torture and ill-treatment and bring to justice perpetrators of such deeds ", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Continue to consolidate socio-economic measures to minimize the gap between rural and urban areas", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Further continue the combating of slave and child labour in the country", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Address issues of poverty, employment, education and housing of Roma people through effective implementation of integration strategy", - "values": [ - "4 - General action" - ] - }, - { - "text": "Develop and adopt a plan of action for the promotion of gender equality ", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Take concrete and resolved measures to offer immediate protection to civilians, and to propose to armed opposition a viable mechanism for a national dialogue conducive to bringing peace and serenity back to the whole country.", - "values": [ - "4 - General action" - ] - }, - { - "text": "Step up its efforts to curb domestic violence", - "values": [ - "4 - General action" - ] - }, - { - "text": "Continue efforts made to achieve ratification of the International Convention for the Protection of All Persons from Enforced Disappearance and the acceptance of the competence of its Committee ", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Raise the age of criminal responsibility to international standards", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Step up its efforts to eliminate the pay gap between men and women", - "values": [ - "4 - General action" - ] - }, - { - "text": "Explore possible ways and means to further diversify major economic activities with a view to widening the national income base in order to create an enabling environment to better promote and protect human rights in the country ", - "values": [ - "3 - Considering action" - ] - }, - { - "text": "Ensure universal access to health-care services for all, particularly, women, including migrant, disabled and elderly women ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Take appropriate measures to improve inclusion and social diversity, by conducting public campaigns on racism and xenophobia and include awareness-raising and education in the field of human rights in the curriculum of public schools", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Continue taking measures in order to protect the rights of persons with disabilities and develop programmes to ensure their enjoyment of their rights to education, health, housing and labour", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Investigate and prosecute those responsible for the unlawful acts of harassment of human rights defenders, namely NGO workers and other members of civil society, and take steps to incorporate and enforce the United Nations Declaration on Human Rights Defenders ", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Adopt a National Action Plan on Security Council resolution 1325 (2000) on women, peace and security ", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Continue reinforcing the plans and programs for the eradication of corporal punishment of children in the schools as well as in the home", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Combat discrimination based on sexual orientation and gender identity by decriminalizing "sodomy" and "indecency between males," end quote, which currently constitute crimes punishable by prison sentencing for up to seven years", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Continue efforts to improve access to health care for all, particularly those in the most vulnerable categories, persons with disabilities and rural populations ", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Accede to and fully align its national legislation with the Rome Statute and accede to the Agreement on the Privileges and Immunities of the International Criminal Court", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Take further necessary measures in fighting extremism ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Consider elaborating a comprehensive national plan to prevent and combat violence against women, and consider the necessary legislative updates", - "values": [ - "3 - Considering action" - ] - }, - { - "text": "Continue consolidating its successful educational programmes, which provide the whole population with free access to quality education for the purpose of developing an integrated education system based on the principles of accessibility and quality", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Take practical measures to combat sexist, domestic and sexual violence", - "values": [ - "4 - General action" - ] - }, - { - "text": "Reinforce the legal and implementation infrastructure aimed at upholding the rights of women and children, and continue, with strengthened international support, its efforts to combat HIV-AIDS ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Face up to the challenges and establish appropriate measures to deal with the situation of children in the juvenile justice system, taking fully into account the best interest of the children concerned and ensuring their smooth reintegration into society ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Take additional crucial measures to fight hate speech and prosecute and punish perpetrators of hate crimes", - "values": [ - "4 - General action" - ] - }, - { - "text": "Stop all forced evictions, develop and implement guidelines which comply with international human rights law ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Combat effectively all manifestations of Islamophobia and promote tolerance, intercultural dialogue and respect for diversity in the society", - "values": [ - "4 - General action" - ] - }, - { - "text": "Participate fully in the development and implementation of the regional Strategic Plan for Building Abuse-free Childhoods, referenced in the UNICEF report ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Allow freedoms of expression, association and assembly, and allow human rights associations to obtain a legal status through inclusive and official registration", - "values": [ - "4 - General action" - ] - }, - { - "text": "Provide for a child-sensitive, accessible complaint mechanism, ensuring a proper redress, rehabilitation and social reintegration for the child victims of abuse", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Adopt and implement an action plan to end impunity and reinforce its judicial system", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Adopt a national action plan to encourage women's participation in political and public life", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Guarantee a clearer separation between the State powers and, in particular, take steps to promote the independence of the judiciary, in the conviction that these measures could benefit the fight against corruption and crime ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Set priorities and adequate resources for the implementation of Uruguay's voluntary pledges and commitments as stated in its Review Report", - "values": [ - "4 - General action" - ] - }, - { - "text": "Further pursue policies and programmes which aim to improve the quality of social services, including health services and education ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Continue implementing the work to promote the right to education and the rights of the child, through strengthening interagency coordination on the activities of the law enforcement bodies ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Argentina, as a federal State, undertakes to continue preparations for the establishment of a permanent body that will coordinate activities and foster dialogue to promote exchanges of information, experiences and good practices with and among the provinces in relation to the promotion and protection of human rights, as well as with the international mechanisms for the protection of universal, regional and subregional human rights", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Withdraw the remaining reservations to ICCPR and to CAT", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Amend its Criminal Code to define torture as a crime in accordance with the definition in the Convention against Torture, including abolishing or revising article 44.1 of the Code so that there is no impunity for human rights violations ", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Adopt comprehensive measures to combat paedophilia and the increase of child prostitution", - "values": [ - "4 - General action" - ] - }, - { - "text": "Continue its efforts to raise public awareness and give special attention to the fight against racism, discrimination, xenophobia and intolerance", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Promote efforts to combat terrorism and to combat human trafficking", - "values": [ - "4 - General action" - ] - }, - { - "text": "Ratify the Rome Statute that Yemen signed in 2000 and align legislation with all the obligations related to this text ", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Take all necessary measures to significantly decrease the level of maternal mortality", - "values": [ - "4 - General action" - ] - }, - { - "text": "Conduct a comprehensive and transparent investigation into all human rights violations in the context of the fight against terrorism, in particular, the complicity of the Polish authorities with lengthy secret detention of persons, their secret transfer and a possible use of torture against them. To bring to justice the officials involved in such violations ", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Abolish the death penalty and in any event, establish a moratorium as an interim measure towards full abolition ", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Issue a standing invitation to special procedure mandate holders", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Ensure in particular access by Roma to education, housing, healthcare.", - "values": [ - "4 - General action" - ] - }, - { - "text": "Develop targeted programmes and strategies to increase the awareness of migrant women of their rights and provide free legal aid and effective remedies if and when their rights are violated", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Create an environment conducive to the unhindered work of all political parties, free from intimidation and harassment of those critical of the government, release all those imprisoned for their political views and foster a culture of political dialogue and political pluralism", - "values": [ - "4 - General action" - ] - }, - { - "text": "Consider the issuance of a standing invitation to the special procedure mandate holders", - "values": [ - "3 - Considering action" - ] - }, - { - "text": "Ratify the Optional Protocol to the Convention Against Torture (OP- CAT), put in place the national mechanism of prevention of torture as set out in that instrument, abrogate the provisions of 2008 law on the repression of terrorism, which could allow the use of torture by the police", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Continue efforts to increase the quality of and accessibility to education, including adequate resourcing of teacher training and oversight", - "values": [ - "4 - General action" - ] - }, - { - "text": "Address the concerns raised by the Human Rights Committee and the Committee on the Rights of the Child on corporal punishment.", - "values": [ - "4 - General action" - ] - }, - { - "text": "Consider adopting a clear and comprehensive definition of racial discrimination and introduce an overarching provision in its civil and administrative law prohibiting both direct and indirect racial discrimination in all areas of the life", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Ensure that the legislation on fighting terrorism complies with international standards of protection of human rights and fundamental freedoms and attend to the recommendations of the Human Rights Committee and the Committee against Torture with regard to the non-derogable character of some rights and the inadmissibility of torture", - "values": [ - "4 - General action" - ] - }, - { - "text": "Incorporate in its Framework a plan to undertake vulnerability assessments and to institute a plan for relocation of Nauruans living in vulnerable or high-risk zone to safer and habitable locations", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Define and criminalize torture in its domestic law, consistent with article 1 and article 4 of the Convention against Torture and Other Cruel, Inhuman or Degrading Treatment or Punishment", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Consider ratifying the Optional Protocol to the Convention on the Rights of the Child on a communications procedure to further enhance child protection", - "values": [ - "3 - Considering action" - ] - }, - { - "text": "Promote equal treatment before the law, including through social protection, the right to birth registration, and the right to an equal use of natural resources ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Continue to review all counter-terrorism legislation and ensure that it complies with the highest human rights standards.", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Carry out effective investigations with all sectors of the community and ethnic groups in order for all to enjoy their human rights", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Intensify its efforts to investigate and punish those responsible for punishable violence, especially that perpetrated by security forces and armed forces ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Ensure that the performance and behaviour of the State security forces are brought into line with international law and that the State investigate and punish all abuses or disproportionate use of force, particularly in cases of peaceful protestors or civilian demonstrations ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Continue intensifying its efforts in poverty eradication and economic development with a view to graduating from the least developed country category by 2020 ", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Further addressing the remaining gaps between the various populations in Israeli society", - "values": [ - "4 - General action" - ] - }, - { - "text": "Establish or designate a national human rights institution compliant with the Paris Principles", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Develop a national strategy for human rights education in the school system in accordance with the Plan of Action 2005-2009 of the World Programme for Human Rights Education, including the review and revision of curricula and textbooks, the training of teachers and the practice of human rights in the school community.", - "values": [ - "4 - General action" - ] - }, - { - "text": "Further pursue its efforts and programmes to promote human development in rural areas ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Redouble its effort in order to fully observe the Committee on the Rights of the Child's concern at persistent discrimination against Roma children, children of Turkish origin and children from groups identifying themselves", - "values": [ - "4 - General action" - ] - }, - { - "text": "Strengthen efforts to improve the literacy rate of girls and women ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Carry out a reproductive health strategy and other programmes for women's health with a view to reducing the maternal mortality rate as set out in the MDG", - "values": [ - "4 - General action" - ] - }, - { - "text": "Adopt a legislative and regulatory framework to facilitate the creation and registration of NGOs and associations which guarantee their free activity ", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Carry out a legislative review so as to ensure an automatic and legal registration at birth, while guaranteeing the protection of personal data and especially the right to access such data", - "values": [ - "3 - Considering action" - ] - }, - { - "text": "Continue to take action towards a comprehensive gender equality strategy, and introduce effective legislative measures to increase women\u2019s participation in political life and decision-making", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Continue the efforts to make primary and general secondary education and related training free of charge, with the help of the international community ", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Keep under review legislation pertaining to the policing of social protests and the tactics developed in response by law enforcement agencies, and ensure that any excessive use of force is investigated and prosecuted ", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Continue its efforts to give minority populations the greatest level of participation in decision-making and public policy options, particularly in local governments where they live as part of the community", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Consider the possibility of becoming a party to the International Convention on the Protection of the Rights of All Migrant Workers and Members of Their Families", - "values": [ - "3 - Considering action" - ] - }, - { - "text": "Scale up efforts in the fight against all types of gender-based violence and adopt continuous and permanent education and awareness-raising policies in this area ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Continue national efforts in the area of disarmament, demobilization and reintegration and in the reform of institutions involved in security and promotion of the rule of law", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Continue the progress in the human rights policies, and focus on the practices adopted in various sectors concerned with the advancement of the country such as education, health and care for the elderly", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Identify its needs for technical and financial assistance to catch up on the backlog accumulated in the presentation of reports to the treaty bodies", - "values": [ - "1 - Minimal action" - ] - }, - { - "text": "Continue its efforts to guarantee access to justice and the provision of timely, efficient, effective and high-quality services ", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Consider the ratification of the Convention against Torture and Other Cruel, Inhuman or Degrading Treatment or Punishment and its Optional Protocol", - "values": [ - "3 - Considering action" - ] - }, - { - "text": "Consider the possibility of establishing a public monitoring system of international recommendations to facilitate the systematization and follow-up of the recommendations of treaty bodies and mechanisms of the Human Rights Council", - "values": [ - "3 - Considering action" - ] - }, - { - "text": "Carry out a prompt implementation of the judicial reform to ensure that complaints in cases of torture, in strict conformity with international human rights standards and adequately involve civil society in this process", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Continue to strengthen the participation of women in the workplace and in the economic sphere, as well as its care for workers from other countries", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Put an end to violations and atrocities committed by governmental and loyalist forces in the context of the internal conflict in eastern Ukraine", - "values": [ - "4 - General action" - ] - }, - { - "text": "Adopt a law guaranteeing equal opportunities for women and men ", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Adopt a national action plan on Security Council resolution 1325 (2000) on women, peace and security", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Ratify the Optional Protocol to CAT, as well the two Optional Protocols to ICCPR, and the Rome Statute of the International Criminal Court ", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Organize a dialogue to evaluate the results of the implementation of the Access to Public Information Act (Act No. 18,381) and consider any legislative amendments that might be appropriate", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Put an end to the practice of incarcerating all the members of the family of every opposition figure, release without delay political prisoners and members of their family as well as ensure freedom of opinion and expression ", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Adopt effective measures to implement political, economic, social and culture rights of aboriginal communities and minorities, as well as prevent discrimination against them ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Take necessary measures to accede to CRPD", - "values": [ - "4 - General action" - ] - }, - { - "text": "Extend its interdepartmental approach on domestic violence also towards forms of violence outside the family, for example gender-related violence and violence against LGBT people ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Continue to promote gender equity and the empowerment of women in all decision-making processes and in the design of public policies.", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Consolidate cooperation with OHCHR to reinforce its national capacity in human rights, cited in paragraph 108 of the national report.", - "values": [ - "1 - Minimal action" - ] - }, - { - "text": "Take all necessary measures to allow victims to have access to effective remedies and reparation, and provide training to judges, magistrates and police authorities in order to apply the pertinent legislation in conformity with the Convention ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Take more active measures to promote real participation of NGOs and civil society institutions in the adoption of legislation to promote human rights ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Step up its efforts in promoting and protecting migrant workers ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Continue using its sovereign right to apply the death penalty as a tool of criminal justice in accordance with proper safeguards specified under International Human Rights Law ", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Pursue its efforts to combat poverty and continue applying measures to mitigate the impact of the economic and financial crisis on Yemeni people and share its pioneering experience in this regard with other concerned States.", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Strengthen its efforts to eliminate wage gap between men and women in the labour market", - "values": [ - "4 - General action" - ] - }, - { - "text": "Provide protection for the family as a natural and basic unit of society", - "values": [ - "4 - General action" - ] - }, - { - "text": "Improve conditions in Tanzania's prisons, including in relation to overcrowding and inadequate health care ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Pursue initiatives aimed at reducing violence against women, with focus on awareness-raising activities in this area ", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Consider ratifying the Second Optional Protocol to the International Covenant on Civil and Political Rights", - "values": [ - "3 - Considering action" - ] - }, - { - "text": "Consider inviting the Special Rapporteur on the right to education and the Special Rapporteur on the sale of children, child prostitution and child pornography, within a framework of mutual cooperation, as a constructive step towards the consolidation of greater protection for this vulnerable group ", - "values": [ - "3 - Considering action" - ] - }, - { - "text": "Consider improving the implementation of the legal framework for combating racism", - "values": [ - "3 - Considering action" - ] - }, - { - "text": "Renew its efforts to combat ongoing discrimination on a de facto and de jure basis concerning sexual orientation, and decriminalize same-sex relations ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Draft implementation instructions and provide police and the public training on the Domestic Violence Act", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Increase efforts to improve access to education in rural areas", - "values": [ - "4 - General action" - ] - }, - { - "text": "Continue to enact measures to ensure girls' right to education, namely the reinforcement of security, hiring of more female teachers and improvement of schooling facilities ", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Take further steps in promoting political participation of women ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Continue to address the negative impact on the promotion and protection of human rights, as inflicted by external coercive measures ", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Adopt necessary measures to avoid discrimination, and to protect and integrate the LGBT population ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Further strengthen its measures aimed at reduction of poverty and hunger for the welfare of Mexican people", - "values": [ - "4 - General action" - ] - }, - { - "text": "Continue to take the necessary steps to further strengthen its public health-care system", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Extend an open and standing invitation to the United Nations special procedures mandate holders ", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Take legal and administrative measures to ensure the right to freedom of expression in accordance with international obligations", - "values": [ - "4 - General action" - ] - }, - { - "text": "Conduct nation-wide educational campaigns about gender roles and the value of women and girls", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Fully align its national legislation with all obligations under the Rome Statute of the International Criminal Court, including incorporating the Rome Statute definition of crimes and general principles, as well as adopting provisions enabling cooperation with the Court ", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Carry out a review of all 50 newly adopted laws since 2001 on combating terrorism, and of their application in practice so as to check their compliance with Australia's human rights obligations ", - "values": [ - "3 - Considering action" - ] - }, - { - "text": "Amend its Nationality Law to enable women the legal right to transmit Omani citizenship to their children ", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Take more concrete action to hold accountable those responsible of violence against women and remove obstacles faced by victims ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Improve the social protection system with a view to extending social and medical coverage to everyone", - "values": [ - "4 - General action" - ] - }, - { - "text": "Take additional measures to ensure the full enjoyment of the right to education by children with an immigrant background and eliminate discrimination in access to education for them ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Step up its efforts to prevent torture and ill-treatment by ensuring that allegations of torture and ill-treatment are systematically investigated and the perpetrators are prosecuted and punished and that victims are compensated in an adequate and equitable manner", - "values": [ - "4 - General action" - ] - }, - { - "text": "Ensure the elaboration, in full transparency, of a new constitution guaranteeing the rights and freedoms of each individual, and to lift the state of emergency to allow the re-establishment of civil and political rights", - "values": [ - "4 - General action" - ] - }, - { - "text": "Take adequate measures for the safety of civil society, including political activists and journalists, conduct impartial, thorough and effective investigations into all cases of attacks, harassment, and intimidation against them and bring perpetrators of such offenses to justice ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Take further measures to protect human rights and the environment in mining areas", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Implement policies that reverse the inequality of opportunities and treatment between women and men in terms of access to employment", - "values": [ - "4 - General action" - ] - }, - { - "text": "Adopt the necessary legislative measures to ensure the full enjoyment of the right to freedom of opinion and expression in all its forms, through the elimination of excessive restrictions on its exercise", - "values": [ - "4 - General action" - ] - }, - { - "text": "Ensure that legislation is drafted and enacted to prohibit all corporal punishment of children, including in the home", - "values": [ - "4 - General action" - ] - }, - { - "text": "Formalize the moratorium on the death penalty in view of its abolition. Commute capital punishment into imprisonment", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Consider ratifying the OP-CEDAW", - "values": [ - "3 - Considering action" - ] - }, - { - "text": "Ratify the Convention on the Rights of Persons with Disabilities, the Optional Protocol to the Convention against Torture", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Promote the consolidation of the role of women with disabilities, without prejudice and stereotypes ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Allocate sufficient resources and adopt effective measures to further establish and implement national strategies on human rights, including a national action plan on human rights, an action plan on children's rights, the National Action Plan on Gender-based Violence and the national action plan for zero hunger", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Ratify Second Optional Protocol to ICCPR, aiming at abolishing the death penalty for all crimes or formalize the de facto moratorium on the death penalty ", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Establish an independent national human rights institution in line with the Paris Principles and provide it with adequate human and financial resources", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Continue efforts to change its legal practice in a way which is conducive to markedly reducing the number of the death sentences being imposed and persons executed", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Enforce a legal framework enabling media to operate freely and independently", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Continue and strengthen with international cooperation its efforts in environmental conservation and protection, which contribute significantly to global efforts to safeguard the common heritage of mankind ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Consider ratifying those international human rights instruments to which it is not yet a party, among them the International Convention on the Protection of the Rights of All Migrant Workers and Members of Their Families", - "values": [ - "3 - Considering action" - ] - }, - { - "text": "Accelerate the process for adopting the law for equality between men and women ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Amend the Penal Code and relevant legislation to end impunity for torture and ensure victims' right to justice and to compensation", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Consider timely ratification of the major international human rights instruments, including the International Convention for the Protection of All Persons from Enforced Disappearance (ICCPED) and the Convention on the Rights of Persons with Disabilities (CRPD)", - "values": [ - "3 - Considering action" - ] - }, - { - "text": "Sign and accede to the International Convention for the Protection of All Persons from Enforced Disappearance", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Address specifically the root causes of gender violence by promoting awareness programmes in the education sector and by the economic empowerment of women ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Bring its law on public associations into line with the International Covenant on Civil and Political Rights and also as recommended by the Human Rights Committee, reinstate NGOs, which were unlawfully shut down, and refrain from imposing discriminatory restrictions on the freedom of association", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Continue to prioritize the allocation of resources to the key institutions in the criminal justice system and provide extensive training for judges, prosecutors, defence counsel and investigators to ensure safe prosecutions and respect for due process", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Take appropriate action to adopt and amend domestic legislation, including the Penal Code, and effectively implement this legislation to protect children from all forms of violence.", - "values": [ - "4 - General action" - ] - }, - { - "text": "Continue efforts to ensure that the Roma, Albanian and other minorities have access to suitable and affordable housing, employment, education and health care, and that special attention be paid to promoting the integration of these populations in all areas of social life, without discrimination.", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Ensure regular consultation with civil society in the follow-up to the UPR recommendations.", - "values": [ - "4 - General action" - ] - }, - { - "text": "Review related laws to provide for a better protection and promotion of women's rights ", - "values": [ - "3 - Considering action" - ] - }, - { - "text": "Guarantee the protection of child rights and provide adequate juvenile justice facilities", - "values": [ - "4 - General action" - ] - }, - { - "text": "Accept a visit by an ILO mission during the next cotton harvesting season to monitor the situation of forced labour ", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Consolidate the constitution building and democratization process by accommodating all sections of Nepal to enable broad-based ownership and participation", - "values": [ - "4 - General action" - ] - }, - { - "text": "Adopt a national plan against racism, racial discrimination, xenophobia and related intolerance, including measures to prevent and fight racist and xenophobic violence", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Put in place an adequate health education programme and ensure effective access to health advisory services, notably for matters related to sexuality and sexual and reproductive rights", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Address difficult access to birth registration procedures, particularly for children of African decent, indigenous children and those living in rural and border areas ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Consider ratifying the Optional Protocol to the Convention against Torture", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Take preventive and more effective measures aimed at promoting and protecting human rights, especially in the light of the cases in which the safety and security of civilians is lacking and where the scope of armed conflicts in parts of the country is wider", - "values": [ - "4 - General action" - ] - }, - { - "text": "Continue its policies aimed at promoting dialogue among religions and civilizations, at both the national and international levels", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Take action to establish a National Human Rights Institution, in accordance with the Paris Principles", - "values": [ - "4 - General action" - ] - }, - { - "text": "Federal and State Governments, in consultation with civil society, broaden and intensify existing human rights training in schools as well as the routine training of police, security, prison and health personnel, and set up a monitoring and evaluation mechanism to assess progress ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Continue actions to improve compliance with the human right to water, under the framework of General Assembly resolution 64/292", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Consider establishing an independent national human rights institution in accordance with the Paris Principles to further improve coordination in the human rights sphere at the national level", - "values": [ - "3 - Considering action" - ] - }, - { - "text": "Establish an institution specifically addressing the rights of children", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Include human rights education in the curriculum", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Speed up the establishment of the national commission to fight against trafficking in persons and the implementation process of the action plan of the national policy on gender equity and equality", - "values": [ - "4 - General action" - ] - }, - { - "text": "Conduct a comprehensive review of the conformity of internal law with the provisions of the Convention on the Rights of the Child.", - "values": [ - "4 - General action" - ] - }, - { - "text": "Continue advancing towards an urgent and lasting peaceful solution to the crisis, with the preservation of its territorial integrity, and with the assistance and international solidarity, that the country requires", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Consider extending a standing invitation to the mandate holders of all special procedures of the Human Rights Council", - "values": [ - "3 - Considering action" - ] - }, - { - "text": "Consider aligning its legislation with the provisions of article 18 of the International Covenant on Civil and Political Rights.", - "values": [ - "3 - Considering action" - ] - }, - { - "text": "Strengthen activities aimed at combating discrimination on any grounds and in all spheres of life", - "values": [ - "4 - General action" - ] - }, - { - "text": "Undertake further measures aimed at protection of women's rights, including prevention of violence ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Implement training programs for the security forces so that crimes motivated by race nationality, religion ethnicity, sexual orientation or identity, are adequately investigated ", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Take measures to reinforce protections for freedom of expression in practice, including guaranteeing freedom of the press and Internet freedom", - "values": [ - "4 - General action" - ] - }, - { - "text": "Develop a redress mechanism to address all forms of discrimination and human rights violations in post-earthquake reconstruction efforts", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Eliminate detention in penitentiary establishments of asylum seekers and refugees ", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Continue advancing in the signing and ratification of the outstanding international human rights treaties", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Continue to pay particular attention to the consequences of climate change on the human rights of the population", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Continue its efforts aimed at realizing the right to work for all with a specific focus on young people", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Put into operation the national law aimed against sexual harassment of women and girls especially at learning institutions", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Prohibit hate speech and prosecute perpetrators of racist crimes ", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Give momentum to the process of completing the drafting of a National Human Rights Action Plan (NAHRAP) which would enable the country to address all human rights concerns in a comprehensive and holistic manner", - "values": [ - "4 - General action" - ] - }, - { - "text": "Revise the Personal and Family Code to fully align it with international human rights standards, including with women's rights as set out in CEDAW", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Continue to further strengthen the criminal justice system, including through capacity-building of judicial actors and law enforcement institutions so that its measures against organized crime be taken with due consideration paid to the rule of law and human rights and with an emphasis on due process", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Continue its favourable policies with concrete initiatives aimed at the most vulnerable groups such as women, children and minorities ", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Continue to implement existing legislation related to gender equality ensuring that men and women are treated equally and stereotypes regarding women are eradicated", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Repeal laws which criminalize expression of the rights of freedom of expression, of association and of assembly, and ensure that individuals detained for the peaceful exercise of these rights are released ", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Amend its laws to remove the requirement for sterilization or infertility before recognition of the gender of transsexual persons and further, consider moving to a process allowing persons to self-declare their gender identity", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Provide persons born to Singaporean mothers before 15 May 2004 an opportunity to acquire Singaporean nationality", - "values": [ - "4 - General action" - ] - }, - { - "text": "Enhance freedom of expression through radio by enacting legislation that ensures the mechanism for impartial issuing of broadcasting licenses ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Adopt as soon as possible a Code on the Rights of the Child ", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Continue its cooperation with the human rights mechanisms of the United Nations", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Continue efforts to ameliorate prison conditions, including steps to address overcrowding and violence, as well as improving access to health care, education and recreational activities", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Ensure that all allegations of torture and ill-treatment are thoroughly investigated by an independent mechanism", - "values": [ - "4 - General action" - ] - }, - { - "text": "Release of all prisoners of conscience ", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Bridge the gap in economic and social development between rural and urban areas and among regions", - "values": [ - "4 - General action" - ] - }, - { - "text": "Allocate sufficient funds in order to ensure an effective implementation of the National Action Plan to reduce violence against women that came into force in 2010 ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Proceed with the national policies aimed to promote women's position in the society and to achieve better representation in the elected councils ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Pursue the implementation of the Zero Hunger programme in order to reach the largest possible number of municipalities", - "values": [ - "4 - General action" - ] - }, - { - "text": "Ensure the full compliance of the Media Service Bill of 2015 with the right to freedom of expression as guaranteed under the International Covenant on Civil and Political Rights and that its provisions facilitate the work of independent and pluralistic media, including citizen journalists", - "values": [ - "4 - General action" - ] - }, - { - "text": "Draw up a national policy on children and a national plan of action to guide its implementation, monitoring and assessment, adopt administrative measures to ensure birth registration for all children irrespective of whether they have a christening certificate", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Establish an interministerial committee responsible for the implementation of its international human rights obligations, inter alia for implementing UPR recommendations and drafting overdue reports to the United Nations human rights treaty bodies", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Adopt a national policy to provide human rights defenders with protection and ensure investigation and punishment of threats or attacks against them", - "values": [ - "4 - General action" - ] - }, - { - "text": "Take steps to increase the participation of girls in the education system ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Withdraw reservations to CEDAW as well as to other conventions and ratify the Optional Protocol to CEDAW and other outstanding core human rights instruments ", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Ratify the Optional Protocol to the Convention against Torture and establish an effective mechanism for investigation of allegations of torture in line with the Manual on the Effective Investigation and Documentation of Torture and Other Cruel, Inhuman or Degrading Treatment or Punishment", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "The government of Albania had expressed its commitment to proactively implement the anti-corruption strategy as part of the National Strategy for Development and Integration (NSDI). CoE PACA program has provided recommendations for setting up mechanisms to increase integrity and regulate conflicts of interest with regard to the administration of staff even in the education system. Furthermore the Albanian authorities are taking into consideration the Advisory Paper of CoE on short- and middle term measures on anti-corruption. ", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Continue the efforts to improve universal access to education", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Reduce the use of security laws that limit public discussion about multi-party democracy or criticism of the Government, including by bringing security and propaganda laws into compliance with ICCPR.", - "values": [ - "4 - General action" - ] - }, - { - "text": "Ratify the third Optional Protocol to the Convention on the Rights of the Child , which establishes a complaints mechanism", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Strengthen the implementation of policies to fight domestic violence", - "values": [ - "4 - General action" - ] - }, - { - "text": "Protect girls from early or forced marriages both in law and in practice", - "values": [ - "4 - General action" - ] - }, - { - "text": "Allocate more resources in sectors that provide basic services such as health, education and employment opportunities ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Develop comprehensive anti-discrimination legislation including a clear definition of discrimination against women and racial discrimination in its legislation", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Implement the Guiding Principles on Internal Displacement, enact a national law on internal displacement with provisions for protecting displaced children, effectively address the basic needs of persons affected by internal displacement, and take every measure to ensure the protection of civilians.", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Provide possibilities for the teaching of minorities languages ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Continue the efforts to combat extreme poverty within the Sustainable Development Goals framework", - "values": [ - "4 - General action" - ] - }, - { - "text": "Persevere in fighting corruption, in educating its people and especially its children, and in further empowering its womenfolk for greater participation in all sectors.", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Pursue and strengthen efforts to eradicate differences between the regions and between urban and rural areas in the sphere of education ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Take further measures to address the disparity in wages between men and women and continue to allocate sufficient funds to increase the availability of social housing for indigenous people, those of African descent and migrants, in line with the concerns raised by the Committee on Economic, Social and Cultural Rights and the United Nations country team ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Sign and ratify the International Convention on the Rights of All Migrant Workers and Members of Their Families ", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Implement the strategic vision for education reform for 2015-2030", - "values": [ - "4 - General action" - ] - }, - { - "text": "Continue implementing programmes to improve the way they deal with persons, particularly during security operations and that the Ministry of human rights carry out awareness-raising programmes with the concerned ministries", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Ratify the international human rights instruments to which it is not a party and bring its internal legal framework into line with international obligations", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Ratify the International Covenant on Civil and Political Rights and the International Covenant on Economic, Social and Cultural Rights and their corresponding optional protocols", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Strengthen fair-trial safeguards, including the non-admissibility before the court of any evidence obtained through torture or ill treatment ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Continue giving special priority to the elderly care within the Cuban society to ensure the quality of life of this group of the population", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Ratify the Rome Statute of the ICC and the OP-CAT ", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Conclude the Tripartite Memorandum of Understanding on the future of labour relations in Fiji", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Provide human rights education and training to police officers corrections officers and judicial staff aimed at the protection of women, persons of minority sexual orientation and gender identity and national minorities ", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Strengthen legislation protecting women from violence, and amend its Penal Code to ensure that honour crimes are treated on par with other serious violent crimes and are investigated and prosecuted", - "values": [ - "4 - General action" - ] - }, - { - "text": "Continue to consult, and expand its dialogue with, civil society organizations working in the area of human rights protection, particularly in combating racial discrimination", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Include the study of human rights in the curriculum of the various stages of free education provided in state institutions", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Continue to make efforts to promote and protect the rights of women ", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Take the necessary measures to ensure that the Constitution guarantees the same protection to all inhabitants of the country, without distinction based on their sexual orientation or identity ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Fully guarantee the right to freedom of expression online/offline by revising relevant laws, including by repealing arrest, trial and imprisonment of persons exercising their freedom of opinion through media and Internet", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Seek the assistance of the Special Rapporteur on adequate housing to mitigate the problem of the lack of adequate land and assistance to the rural population ", - "values": [ - "1 - Minimal action" - ] - }, - { - "text": "Decriminalize sexual relations between consenting adults of the same sex and put an end to prejudices and social stigmatization of homosexuality", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Take steps to ensure that the National Commission for the Eradication of Child Labour can effectively carry out its mandate ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Take necessary measures to prevent any threat against human rights defenders and ensure their effective protection", - "values": [ - "4 - General action" - ] - }, - { - "text": "Continue and strengthen efforts to prevent torture and ill-treatment in detention facilities and ensure that all allegations of torture are promptly, thoroughly and independently investigated", - "values": [ - "4 - General action" - ] - }, - { - "text": "Allocate adequate resources for the implementation of its National Action Plan on Human Rights", - "values": [ - "4 - General action" - ] - }, - { - "text": "Continue its efforts in eliminating discrimination and preventing violence against women and children ", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Ensure that the application of the legislation on military jurisdiction, as well as the conduct of the peace between the Government and FARC, be consistent with the goal of the fight against impunity ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Sign and ratify the main regional and international human rights instruments ", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Ensure federal legislation to prohibit environmental pollution and reduce greenhouse gas emissions to control climate change", - "values": [ - "4 - General action" - ] - }, - { - "text": "Strengthen the awareness-raising and training of women on leadership", - "values": [ - "4 - General action" - ] - }, - { - "text": "Promote school enrolment of girls and literacy of women", - "values": [ - "4 - General action" - ] - }, - { - "text": "Deepen the harmonization process of its internal norms in the light of the international human rights standards and commitments in order to guarantee equal rights between men and women in all areas of social life ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Extend an open and standing invitation to the special procedures of the Human Rights Council and be proactive when questionnaires are sent by mandate holders ", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Pursue the efforts to remove all measures that could give rise to situations analogous to torture or cruel or inhuman treatment from its national legislation, and establish the necessary safeguards to prevent torture and abolish the death penalty", - "values": [ - "4 - General action" - ] - }, - { - "text": "Combat impunity of perpetrators of torture and ill-treatment, particularly in cases of excessive use of force by the police", - "values": [ - "4 - General action" - ] - }, - { - "text": "Share with all members of the Working Group its experience in increasing purchasing power and on efforts which have eliminated squatting in Cameroon", - "values": [ - "1 - Minimal action" - ] - }, - { - "text": "Adopt, in the near future, the proposed laws on domestic violence and sexual offences, thereby prohibiting practices that legalize violence against women", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Continue to strengthen its national coordination efforts and develop facilities and services to assist trafficked persons", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Ratify the Convention on the Status of Stateless Persons and the Convention on the Reduction of Statelessness", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Ratify the Rome Statute of the International Criminal Court and the Optional Protocol to the International Covenant on Economic, Social and Cultural Rights, which will enter into force in coming weeks ", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Respect the integrity and independence of the Constitutional Court", - "values": [ - "4 - General action" - ] - }, - { - "text": "Adopt a definition of torture in line with article 1 of the Convention against Torture and Other Cruel, Inhuman or Degrading Treatment or Punishment\n", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Become a party to the Second Optional Protocol to the International Covenant on Civil and Political Rights", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Step up its efforts to counter discrimination and violence on the basis of sexual orientation or gender identity, and to structurally collect data and provide statistics and information in this regard", - "values": [ - "4 - General action" - ] - }, - { - "text": "Increase measures to tackle illegal land evictions, including those against indigenous people, and consider fortifying the legislative framework consistently with international standards ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Continue the improvements in the field of education and consider ratifying the Convention against Discrimination in Education ", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Make efforts to ratify ICCPR and ICESCR ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Consider ratifying CAT", - "values": [ - "3 - Considering action" - ] - }, - { - "text": "Review the inconsistencies between the Children's Act of 2009 and international obligations under the Convention on the Rights of the Child, such as the prohibition of corporal punishment of children in all settings", - "values": [ - "3 - Considering action" - ] - }, - { - "text": "Intensify media campaigns to strengthen efforts aimed at eliminating stereotyped images of men and women in the family and society ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Collect and generate disaggregated data on actual manifestations of racism and discrimination with a view to evaluating the situation regarding different racial, ethnic and minority groups ", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Adopt, as an urgent priority, specific legislation to address violence against women, and provide enforcement officers with further training and support to ensure that such crimes are properly investigated and the law is enforced ", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Consider, as a party to the ICESCR, making the legal adaptations required to ensuring that economic, social and cultural rights are considered as individual and enforceable rights, with the same status as all other human rights, and not mere State goals or aspirations", - "values": [ - "3 - Considering action" - ] - }, - { - "text": "Pursue the implementation of the regional refugee housing programme in municipalities", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Proceed with the enactment of legislation effectively implementing the Optional Protocol to the Convention against Torture and Other Cruel, Inhuman or Degrading Treatment or Punishment at both state and federal level and adopt measures to adhere to the UN Nelson Mandela Rules", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Further strengthen measures to ensure rights of migrants", - "values": [ - "4 - General action" - ] - }, - { - "text": "Strengthen measures aimed at the full realization of economic, social and cultural rights", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Continue its positive efforts to consolidate the areas of health and education especially for disabled children ", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Adopt and effectively implement measures to prevent and eliminate domestic violence against women.", - "values": [ - "4 - General action" - ] - }, - { - "text": "Establish effective procedures and mechanisms to receive, monitor and investigate complaints on ill-treatment and abuse of children, including sexual abuse, through a child-sensitive inquiry and judicial procedure, including the protection of the right to privacy of the child ", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Continue its constructive efforts to promote the rights of migrants and refugees through initiatives permitting the preservation of the legal framework and its effective implementation ", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Review article 109.7 of the Organic Code of the Judiciary with a view towards guaranteeing judicial independence, including through the independent selection of judicial authorities", - "values": [ - "3 - Considering action" - ] - }, - { - "text": "Allocate sufficient financial and human resources for the implementation of the new system of public security and criminal justice, including adequate dissemination of information for users as well as the respective training of judges and lawyers", - "values": [ - "4 - General action" - ] - }, - { - "text": "Accede to the First Optional Protocol to the International Covenant on Civil and Political Rights", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Issue a standing invitation for United Nations human rights special procedures and accept all request visits by mandate holders", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Enhance efforts to facilitate the regularization of Bidouns, so that they can fully enjoy their rights", - "values": [ - "4 - General action" - ] - }, - { - "text": "Comply with all the provisions of the United Nations Declaration on Human Rights Defenders, ensuring that those who engage in human rights work are able to exercise their rights to freedom of expression, association and movement without obstruction", - "values": [ - "4 - General action" - ] - }, - { - "text": "Respect and promote the democratic principle of the right to participate in public and political life without discrimination, so that everyone can pursue their activities freely and without fear of intimidation ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Further facilitate a conducive environment for relevant human rights-related organizations to help implement the recommendations received during the UPR process ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Pay particular attention to the protection of the most vulnerable sectors of the society, including the Roma.", - "values": [ - "4 - General action" - ] - }, - { - "text": "Consider developing legislation and agreements which allow for alternatives to imprisonment in cases of minor offenses", - "values": [ - "3 - Considering action" - ] - }, - { - "text": "Establish a national human rights institution in conformity with the Paris Principles", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Continue the implementation of the National Action Plan of Education for All, with a view to improving the quality of the system of 11 years of compulsory, free, universal education, increasing progressively the necessary resources allocated for this purpose \n\n", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Continue to respect its national and international obligations with regard to a ban on the recruitment of children by the armed forces, including by the holding of awareness-raising campaigns ", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Present the constitutive documents for the establishment of the Malawi Human Rights Commission to the International Coordination Committee of National Human Rights Institutions so that they can be disseminated and their status determined in accordance with the Paris Principles ", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Review the legislative framework to re-assure the full implementation of the freedom of speech", - "values": [ - "3 - Considering action" - ] - }, - { - "text": "Review relevant legislation and its application in order to eliminate impunity for hate crimes based on sexual orientation and gender identity", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Encourage a deep nationwide dialogue on the death penalty, open to all stakeholders and views", - "values": [ - "4 - General action" - ] - }, - { - "text": "Amend legislation to change the minimum age for marriage from 15 to 18 years ", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Take the necessary measures to improve detention facilities, including renewing its Prisons Act, which was enacted in 1894", - "values": [ - "4 - General action" - ] - }, - { - "text": "Improve the protection of children by fighting against child labour, providing for children living in the streets and ensuring education for them ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Take necessary measures to eliminate legislation that criminalizes same-sex relations and to repeal section 377 A of the Penal Code", - "values": [ - "4 - General action" - ] - }, - { - "text": "Incorporate in domestic law the crime of torture and a definition comprising the elements of Article 1 of the United Nations Convention against Torture", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Take concrete steps to align the prohibition of discrimination with the prohibition contained in the Convention on the Elimination of all forms of Discrimination against Women.", - "values": [ - "4 - General action" - ] - }, - { - "text": "Effectively investigate and prosecute those responsible for excessive use of force during the national strike in Changuinola in the Province of Bocas del Toro in July 2010, and take steps to ensure total respect for freedom of assembly in the country ", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Work out methods for implementing the relevant regulations on social security for religious staff", - "values": [ - "4 - General action" - ] - }, - { - "text": "Ratify the Convention against Torture and Other Cruel, Inhuman or Degrading Treatment or Punishment and its Optional Protocol, the International Convention for the Protection of All Persons from Enforced Disappearance and the Statute of the International Criminal Court ", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Translate, publish and make available to the citizens of the country the assessments and recommendations made by relevant international human rights bodies, including the Human Rights Council's universal periodic review", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Provide the Office on Missing Persons with sufficient resources and equip the office with highly qualified members to perform its mission independently and effectively", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Continue the implementation of the national health care programme ", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Incorporate the human rights conventions into national law", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Develop and implement more substantiated programmes and initiatives for the provision of enhanced level of the rights to education and health for all ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Consider the adoption of policies and laws to prevent and combat violence against women ", - "values": [ - "3 - Considering action" - ] - }, - { - "text": "Continue efforts aimed at combating female genital mutilation, inter alia through the implementation of programmes sensitizing the population about its harmful effects ", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Continue the programmes and national plans to develop education, especially in early childhood", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Ratify the Rome Statute of the ICC and take steps to fully align the national legislation with all obligations under the Rome Statute, including by adopting provisions aimed at thorough and expeditious cooperation with the ICC ", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Ensure the provision of adequate resources for poverty reduction programmes", - "values": [ - "4 - General action" - ] - }, - { - "text": "Amend the social welfare act and other laws which deny persons with disabilities their right to work or which allow their placement in institutions without their consent", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Modernize the infrastructure of the country's penitentiaries and improve social reintegration programs for detainees, particularly ethnic Roma ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Enhance its efforts to support social rights for women, such as the right to education and health", - "values": [ - "4 - General action" - ] - }, - { - "text": "Set a specific timeframe and take concrete action to resolve the issue of abductions as soon as possible, including by repatriating the abductees", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Refrain from resorting to violence and extrajudicial executions by the security forces, in particular the so-called \u201cwar on drugs\u201c", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Adopt and implement, through an inclusive and a participatory process, national policies for the protection of women, including women human rights defenders, against any form of discrimination or violence, committed either in public or at the domestic level", - "values": [ - "4 - General action" - ] - }, - { - "text": "Strengthen measures to prevent violence against women, in particular by raising awareness of the fact that discrimination and violence against women is unacceptable, and implement legislation on violence against women and girls. Make more efforts to create a unified register on violence against women", - "values": [ - "4 - General action" - ] - }, - { - "text": "Implement swiftly and resolutely all the recommendations made by the BICI, including the investigation of documented human rights abuses during recent protests, with a view to ensuring full accountability, justice and reparations for the victims ", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Immediately halt the practice of enforced disappearance, arbitrary arrest and detention, and the systemic use of torture, and meet its obligations as a State party to the Convention against Torture", - "values": [ - "4 - General action" - ] - }, - { - "text": "Reinforce the protection and promotion of the rights of vulnerable groups, namely, children, women, disabled and elderly persons", - "values": [ - "4 - General action" - ] - }, - { - "text": "Further develop policies to ensure the full enjoyment of rights of persons with disabilities, particularly in terms of inclusive education and accessibility", - "values": [ - "4 - General action" - ] - }, - { - "text": "Pursue the process of ratification of international human rights instruments ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Pursue its efforts to put an end to remaining discriminations against women and Palestinian refugees", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Ratify the International Convention on the Rights of All Migrant Workers and Members of their Families", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Establish a National Human Rights Institution in accordance with the Paris Principles", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Recognise the notion of indigenous peoples with a view to effectively protecting their rights ", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Strengthen the efforts aimed at the full integration of the Roma population and other minorities ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Take the necessary steps to ensure that its legal system and policies are in full compliance with its international obligations in respect of freedom of expression and that the media and journalists are guaranteed the necessary freedoms to carry out their work independently and without fear of prosecution", - "values": [ - "4 - General action" - ] - }, - { - "text": "Continue taking necessary efforts and action to provide appropriate educational opportunities for persons with disabilities", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Ratify the Rome Statute of the ICC in order to finalise the accession to this instrument signed in 2000", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Double its efforts in addressing the vulnerable conditions of children who live on the streets including by implementing existing legislation against child labour and its plan of action to combat child labour", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Intensify its effort to harmonize national legislation with international standards, including by providing more training for judicial and law enforcement officials with a view to ensuring more effective application of international standards ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Develop, with the participation of civil society, a plan of action and establish a national mechanism to combat racism and discrimination", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Ratify the Convention on the protection of all persons against enforced and involuntary disappearances.", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Ensure that capital punishment is not imposed for offences committed by persons under 18 years of age ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Keep its efforts for the proper implementation of social security programs", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Ratify the Convention on the Non-Applicability of Statutory Limitations to War Crimes and Crimes Against Humanity", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Take more effective measures in order to bring the Ombudsman's Office into compliance with the Paris Principles ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Consider establishing a national human rights institution based on accepted principles", - "values": [ - "3 - Considering action" - ] - }, - { - "text": "Prevent and thoroughly halt the use and recruitment of child soldiers and ensure reintegration and access to education for former child soldiers", - "values": [ - "4 - General action" - ] - }, - { - "text": "Repeal the Decree 3/2015 of the National Council for Peace and Order, and ensure that all civilians have the right to a fair trial and are brought before civilian courts", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Accelerate the full implementation of the Plan for Equal Opportunities for Persons with Disabilities 2009-2018 and the strategy for the integration of persons with disabilities", - "values": [ - "4 - General action" - ] - }, - { - "text": "Continue to strengthen its efforts to provide better legal protection for vulnerable groups, especially women", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Consider ratifying the Second Optional Protocol to ICCPR", - "values": [ - "3 - Considering action" - ] - }, - { - "text": "Encode in law the right to organize and bargain collectively", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Continue efforts to combat discrimination against women and eliminate all forms of discrimination against them, especially domestic violence", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Strengthen efforts in human rights training and education and disseminate awareness of human rights", - "values": [ - "4 - General action" - ] - }, - { - "text": "Intensify efforts on gender equality and take further steps in promoting women in all spheres of life especially in the political life", - "values": [ - "4 - General action" - ] - }, - { - "text": "Ensure that women are not submitted to illegal parallel judicial system", - "values": [ - "4 - General action" - ] - }, - { - "text": "Take further measures to improve the situation of persons with disabilities in terms of participation and accessibility", - "values": [ - "4 - General action" - ] - }, - { - "text": "Strengthen its support to the Office of the Children's Rights Ombudsman", - "values": [ - "4 - General action" - ] - }, - { - "text": "Further reduce the mortality rate caused by the HIV/AIDS ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Continue to develop and implement a framework that holds companies, particularly those in the extractive sector, accountable for the human rights violations and the environmental degradation caused by their operations", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Continue its efforts for the promotion and protection of human rights in the world and in their country", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Enact legislation on counter-terrorism and ensure its full implementation", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Take decisive action to promote the rights of female citizens in order to achieve legal equality between men and women in terms of marriage, divorce, inheritance and child custody ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Strengthen the dialogue with AMISOM with a view to adopting special measures to protect Somali women and girls against sexual exploitation and abuse", - "values": [ - "4 - General action" - ] - }, - { - "text": "Intensify measures to promote human rights and consolidate peace in the country through dialogue and mechanisms of reconciliation ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Significantly increase its commitment to fight impunity, specifically that it a suspend, investigate and prosecute as appropriate FARDC soldiers who have been identified as perpetrators of serious human rights abuses or crimes, including the FARDC's 213th Brigade, as well as the five members of the FARDC who were credibly accused of serious human rights abuses by MONUC and United Nations Security Council over the past year - and b establish an effective screening mechanism to vet the past human rights records of officers, particularly for important posts in the military. ", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Sign and ratify CED at the earliest ", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Improve the conditions of detainees and address prison overcrowding", - "values": [ - "4 - General action" - ] - }, - { - "text": "Strengthen its policy for the full guarantee of the rights of the child, with attention to implementing the Guidelines for the Alternative Care of Children, according to resolution 11-7 of the Human Rights Council and 64-142 of the General Assembly ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Continue to promote the rights of national minorities through a legal framework", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Intensify the implementation of the Second Plan of Action combating violence against women, in particular for women in a vulnerable situation ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Invite as soon as possible the Special Rapporteur on torture and other cruel, inhuman or degrading treatment or punishment ", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Ratify the remaining Optional Protocol to the Convention on the Rights of the Child as well as the International Convention for the Protection of All Persons from Enforced Disappearance", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Accede to the 1954 Convention relating to the Status of Stateless Persons, and the 1961 Convention on the Reduction of Statelessness ", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Continue to improve the national healthcare system and ensure access to quality healthcare for all ", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Reconsider ratifying the International Convention on the Protection of the Rights of all the Migrant Workers and Members of their Families ", - "values": [ - "3 - Considering action" - ] - }, - { - "text": "Continue and enlarge social security networks for the poor, vulnerable and other disadvantaged groups, improving their well-being and their participation in social associations and social groups", - "values": [ - "4 - General action" - ] - }, - { - "text": "Accede to the Convention on the Rights of Persons with Disabilities and the Optional Protocol thereto.", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Continue implementing strategies and plans for the socio-economic development of the country", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Ratify the Optional Protocol of the Convention on the Elimination of All Forms of Discrimination Against Women", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Ensure equal opportunities for women in the labour market", - "values": [ - "4 - General action" - ] - }, - { - "text": "Strengthen measures to combat discrimination against women and ensure that additional special measures are taken to effectively empower women, in particular, women of African descent ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Promote a culture of non-discrimination and solidarity among its citizens towards migrants", - "values": [ - "4 - General action" - ] - }, - { - "text": "Intensify efforts to achieve the MDGs", - "values": [ - "4 - General action" - ] - }, - { - "text": "Immediately adopt and implement necessary legislative and administrative measures to promote a greater inclusion of women in the country's public and political life, ensuring that they effectively participate in the decision-making process, and lift the reservations made to the Convention on the Elimination of All Forms of Discrimination Against Women", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Continue to strengthen its measures aimed at the promotion and protection of the human rights of its minorities", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Accelerate the internal procedures to ratify the Rome Statute of the International Criminal Court, and adhere to the Agreement on the Privileges and Immunities of the International Criminal Court, as well as to the Convention on the Non-Applicability of Statutory Limitations to War Crimes and Crimes against Humanity", - "values": [ - "4 - General action" - ] - }, - { - "text": "Review the Public Order Management Act in order to repeal the disciplines which allow public authorities to prohibit, without due justification, peaceful protests, thus better protecting freedom of expression and of assembly", - "values": [ - "3 - Considering action" - ] - }, - { - "text": "Further promote and protect the rights of religious minorities ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Take concrete steps to put in place adequate legal protections against incitement of hatred, including hatred motivated by xenophobia and homophobia, in line with the international and domestic obligations of Bulgaria", - "values": [ - "4 - General action" - ] - }, - { - "text": "Implement additional measures aimed at eliminating discrimination and violence based on sexual orientation", - "values": [ - "4 - General action" - ] - }, - { - "text": "Make the necessary declarations under articles 21 and 22 of CAT ", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Implement a national strategy to promote interreligious and intercultural dialogue and tolerance", - "values": [ - "4 - General action" - ] - }, - { - "text": "Ensure the abolition of all forms of early and forced marriage, including through increasing the minimum age of marriage to 18 for girls", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Consider positively the request of the Special Rapporteur on the question of torture to visit the country as a matter of priority.", - "values": [ - "3 - Considering action" - ] - }, - { - "text": "Step up its efforts to reduce maternal mortality, including through an increased access to quality family planning", - "values": [ - "4 - General action" - ] - }, - { - "text": "Ratify the International Convention for the Protection of All Persons from Enforced Disappearance (CPED) and proceed to recognize the competence of its committee", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Ensure the respect for freedom of religion or belief for all its citizens", - "values": [ - "4 - General action" - ] - }, - { - "text": "Strengthen the laws ensuring the reduction of unemployment rates and increase employment opportunities to contribute to the achievement of sustainable development", - "values": [ - "4 - General action" - ] - }, - { - "text": "Take steps to eliminate violence against women and include in the legislation an explicit prohibition on discrimination against women", - "values": [ - "4 - General action" - ] - }, - { - "text": "Consider expediting becoming a party to ICERD, CRPD and OP-CRC-SC ", - "values": [ - "3 - Considering action" - ] - }, - { - "text": "Pay more attention to solve the problem of birth registration of illegal migrants ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Ratify the Second Optional Protocol to the International Covenant on Civil and Political Rights without reservations", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Ratify the Rome Statute of the International Criminal Court and the Agreement on Privileges and Immunities of the International Criminal Court", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Pursue its engagement to the official development aid ", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Step up measures to mitigate the negative impacts of economic measures, with an emphasis on improving social protection systems and eradicating poverty", - "values": [ - "4 - General action" - ] - }, - { - "text": "Continue its efforts for the protection of the rights of foreign workers, and enhance their safety and welfare through institutional arrangements", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Continue, while working with concerned parties, its comprehensive national strategy to improve the health situation, in particular to promote women's health during pregnancy and post natal care", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Ensure birth registration for all children born in Malta", - "values": [ - "4 - General action" - ] - }, - { - "text": "Enhance its efforts to strengthen the effectiveness of its human rights institution to bring it fully into line with the Paris Principles", - "values": [ - "4 - General action" - ] - }, - { - "text": "Continue its efforts to guarantee the separation of minors from adults in detention facilities ", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Take essential steps to create an environment where rule of law is preserved ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Continue strengthening the decentralization of health-care services to increase coverage, particularly in rural areas ", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Strengthen the institutions in the field of women's rights and organize training, sensitization and awareness-raising activities on the matter", - "values": [ - "4 - General action" - ] - }, - { - "text": "Pursue ongoing efforts to conclude an internationally binding instrument on transnational corporations and business and human rights", - "values": [ - "4 - General action" - ] - }, - { - "text": "Increase consequently resources devoted to the health and education sectors for the population living in rural areas", - "values": [ - "4 - General action" - ] - }, - { - "text": "Strengthen existing policies and programmes aimed at eradicating child prostitution", - "values": [ - "4 - General action" - ] - }, - { - "text": "Adopt practical measures to combat violence against women and children, particularly female genital mutilation", - "values": [ - "4 - General action" - ] - }, - { - "text": "Continue in its endeavours in consistently addressing the issues affecting indigenous peoples", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Fully implement legal provisions protecting freedom of speech in accordance with the ICCPR ", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Take all necessary measures to prevent torture and accept the longstanding request of the Special Rapporteur on torture and other cruel, inhuman or degrading treatment or punishment to visit Uzbekistan ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Share the experience of Bosnia and Herzegovina in the field of multi-ethnic teaching of tolerance in schools", - "values": [ - "1 - Minimal action" - ] - }, - { - "text": "Continue working towards the harmonization of its national legislation with those rights contained in international human rights treaties to which Papua New Guinea is a State party ", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Ratify ILO Convention No. 189 on Domestic Workers ", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Define ill-treatment in the national legislation ", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Increase the monitoring of extremist organizations that act in a discriminatory manner, take effective measures against them, and criminalize and prosecute the financing and participation in those organizations ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Effectively prevent and prosecute those responsible for sexual violence against children and fully protect children in vulnerable situations", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Finalise the procedures to ratify the International Convention on the Protection of the Rights of All Migrant Workers and Members of Their Families and the Convention against Torture", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Adopt a binding legal framework for the protection of internally displaced persons in accordance with international standards and the National Policy on Displacement", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Ensure that the enforcement and implementation of laws is in compliance with the Constitution and the country's obligations under international and regional law to respect and protect the right of everyone in Uganda to exercise their human rights to freedom of expression and peaceful assembly", - "values": [ - "4 - General action" - ] - }, - { - "text": "Continue the efforts to ensure that the Public Defender of Rights also has the mandate to combat discrimination", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Accelerate the demobilization of child combatants and ensure their proper rehabilitation with the support of the international community.", - "values": [ - "4 - General action" - ] - }, - { - "text": "Review its criminal legislation in order to incorporate a definition of torture in accordance with the Convention against Torture and Other Cruel, Inhuman or Degrading Treatment or Punishment", - "values": [ - "3 - Considering action" - ] - }, - { - "text": "Take measures to guarantee full respect of human rights to indigenous peoples, in particular through the establishment of mechanisms for their prior and informed consent on issues that affect them", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Implement the July 2013 recommendations of the Committee on the Elimination of Discrimination against Women, focusing on the recommendations under paragraph 10 and, inter alia, investigate violations of women's rights committed by Congolese security forces and armed groups and ensure access to justice for all women affected by sexual violence during the conflict ", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Continue its fight against evil terrorism including with international support and within international standards", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Step up its efforts to prevent and combat domestic violence and to ensure that the perpetrators are promptly brought to justice", - "values": [ - "4 - General action" - ] - }, - { - "text": "Seek to demonstrate that challenges presented by relationships between its federal, provincial and territorial governments do not present unnecessary obstacles to the fulfilment of treaty obligations.", - "values": [ - "4 - General action" - ] - }, - { - "text": "Undertake a thorough investigation of all alleged cases and hold the officers accountable who committed these violent acts ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Expedite investigation and take action on allegations of complicity of British military personnel in the ill-treatment of civilians and detainees overseas", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Implement and strengthen measures to protect the rights of the child, including by preventing and combating the recruitment of child soldiers and trafficking in children", - "values": [ - "4 - General action" - ] - }, - { - "text": "Submit, in 2008, eight reports to United Nations bodies, of which seven to treaty bodies: (i) Fifth and sixth periodic reports on the implementation of the International Covenant on Civil and Political Rights (ICCPR), (ii) Third periodic report on the implementation of the International Convention, against Torture and Other Cruel, Inhuman or Degrading Treatment or Punishment (CAT), (iii) Eighteenth and nineteenth periodic reports on the implementation of the International Convention on the Elimination of All Forms of Racial Discrimination (ICERD), (iv) Third periodic report on the implementation of the Convention on the Rights of the Child (CRC), (v) Initial report on the implementation of the Optional Protocol to the Convention on the Rights of the Child, concerning the involvement of children in armed conflicts, (vi) Third periodic report on the implementation of the International Covenant on Economic, Social and Cultural Rights (ICESCR), (vii) Fifth periodic report on the implementation of the International Convention on the Elimination of All Forms of Discrimination against Women (CEDAW) ", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Take the necessary measures to prohibit the use of ill-treatment", - "values": [ - "4 - General action" - ] - }, - { - "text": "Ratify immediately the Convention on the Rights of Persons with Disabilities, and establish the planned national council on disability after, rather than prior to, ratification to ensure a speedy ratification process", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Ratify the Convention on the Rights of Persons with Disabilities and effectively implement the national plan in order to make the education system open to children with disabilities", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Increase its efforts to obtain the A status in conformity with the Paris principles for the National Commission of Human Rights created in September 2011", - "values": [ - "4 - General action" - ] - }, - { - "text": "Strengthen efforts to spread education, especially for women and children ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Carry out awareness-raising campaigns in relation to the lack of deterrent effects in the application of the capital punishment and establish a de jure moratorium aiming the total abolition of the death penalty", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Withdraw the reservations to articles 11,13,15 and 16 of the Convention on the Elimination of All Forms of Discrimination against Women.", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Lift the restrictions hindering the work of civil society organizations, in particular the reception of funding to effectively carry out their work in defence of human rights", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Continue its important efforts to combat hate crime based on sexual orientation ", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Raise the minimum age of criminal responsibility and explicitly prohibit life imprisonment for persons under the age of 18 ", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Ensure free access for foreign journalists to Papua and West Papua ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Continue to raise awareness about human rights, and to strengthen national efforts to protect them, with due respect for cultural specificities and Islam", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Continue its efforts in providing health care ", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Raise the minimum age of criminal responsibility to the internationally accepted age ", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "End collective punishment of families, especially against children ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Ensure the participation of socially vulnerable groups, including women, in the process of democratization and development", - "values": [ - "4 - General action" - ] - }, - { - "text": "Develop focal points or specialized units on domestic violence, with trained and sensitized personnel, in police institutions throughout the whole country", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Earmark human and financial resources for combating violence against women by creating shelters for and providing assistance to victims", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Continue its efforts aimed at regulating the consultation process so that public policies reflect the effective participation of indigenous peoples in its implementation", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Launch a credible investigation of forced evictions and land conflicts and use the results of this investigation to help draft new legislation, which fully takes the rights of indigenous peoples into account", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Strengthen the action taken by the national council for the promotion and protection of human rights, in particular through its commissions throughout the territory", - "values": [ - "4 - General action" - ] - }, - { - "text": "Become party to the Convention against Torture and Other Cruel, Inhuman or Degrading Treatment or Punishment as well as its Optional Protocol ", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Continue to raise the level of protection of human rights of vulnerable groups, with particular reference to eliminating child labour", - "values": [ - "4 - General action" - ] - }, - { - "text": "Redouble its efforts in finalizing the establishment of an independent national human rights institution in accordance with the Paris Principles", - "values": [ - "4 - General action" - ] - }, - { - "text": "Adopt concrete measures to ensure universal access to quality primary education.", - "values": [ - "4 - General action" - ] - }, - { - "text": "Eliminate the requirement of regularity to consider acts of domestic violence as a crime from the Law 20.066 on domestic violence ", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "(In order to enhance and consolidate efforts to promote and protect human rights). Create a national human rights institution ", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Continue its efforts to combat transnational child trafficking and exploitation ", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Continue and step up its efforts towards the ratification of or accession to the International Covenant on Civil and Political Rights", - "values": [ - "4 - General action" - ] - }, - { - "text": "Reinforce initiative to mobilize assistance and external resources to face tuberculosis, malaria and diarrheal infections ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Strengthen the promotion of human rights education, training and capacity-building for government officials and other relevant stakeholders", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Take concrete steps to tackle human trafficking, in particular by strengthening the work of the National Steering Committee on Anti-Human Trafficking", - "values": [ - "4 - General action" - ] - }, - { - "text": "Give priority to the implementation of the National Action Plan for the reform of the asylum system and migration management ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Continue to promote the right to education, while prohibiting corporal punishment ", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Step up efforts to prevent the diversion of public funds and to combat cases of corruption ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Continue with action to further reduce maternal and child mortality, and the prevalence rate of HIV and AIDS ", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Comply effectively with Security Council resolution 1866 (2009) which urges to refrain from the use of force or from any act of ethnic discrimination against persons, to protect those affected, including refugees and IDPs and their property, to ensure their right to freedom of movement and residence within the borders of the State, and to facilitate unimpeded humanitarian assistance in conditions of dignity and security for these vulnerable groups ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Take more action to consolidate efforts regarding the rights of minority groups.", - "values": [ - "4 - General action" - ] - }, - { - "text": "Fully commit to the United Nations Support Mission in Libya- facilitated dialogue process, take urgent measures to promote and protect human rights, and restore the rule of law", - "values": [ - "4 - General action" - ] - }, - { - "text": "Continue to enhance its efforts to address the related challenges ahead in the promotion and protection of human rights through its relevant policies and plans of action, especially the Third National Action Plan on Human Rights ", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Accord the same rights and responsibilities to same-sex partners as those accorded to partners of the opposite sex ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Respect the privacy of individuals outside the United States in the context of digital communications and data", - "values": [ - "4 - General action" - ] - }, - { - "text": "Strengthen its efforts to address the discrepancies in access to education between girls and boys, as well as the high drop-out rates from schools", - "values": [ - "4 - General action" - ] - }, - { - "text": "Fully support the institution of the family", - "values": [ - "4 - General action" - ] - }, - { - "text": "Continue efforts to put an end to the practice of female genital mutilation ", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Take legislative measures to explicitly ban corporal punishment in all settings, including the home and penal institutions, set up effective complaints mechanisms and provide training in the identification, reporting and management of cases of ill-treatment to teachers, law enforcement and health professionals ", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Hasten the establishment of a National Human Rights Institution", - "values": [ - "4 - General action" - ] - }, - { - "text": "Ratify the OP-CAT and work towards the establishment of a national preventive mechanism in line with the Optional Protocol", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Ratify the International Convention on the Rights of All Migrant Workers and Members of Their Families", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Complete its international commitment by ratifying as a priority the International Covenant on Civil and Political Rights and the International Covenant on Economic, Social and Cultural Rights", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Continue to take measures to honour its human rights obligations and to advance the promotion and protection of human rights and freedoms", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Maintain and strengthen the economic and social model freely chosen by the Cuban people, and continue to advance in the full participation of the people in public affairs", - "values": [ - "4 - General action" - ] - }, - { - "text": "Recommended that the Criminal Code be amended to decriminalize same-sex activity between consenting adults.", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Continue its efforts to give effect to the vote of Uruguayans living abroad ", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Promote the reform of its legislation on death penalty in order to restrict its scope with a view to abolishing this cruel punishment", - "values": [ - "4 - General action" - ] - }, - { - "text": "Follow up on the recommendations of the Human Rights Committee and the Committee against Torture relating to pre-trial detention and detention of non-citizens ", - "values": [ - "4 - General action" - ] - }, - { - "text": "El Salvador pledged to continue working in reducing inequalities and disparities, especially among vulnerable groups, for which the Government already had developed strategies promoting policies of inclusion and equal opportunities. ", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Continue to develop its National Asylum service while paying special attention to human rights, to living conditions of reception facilities and to the needs of vulnerable groups", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Fully implement the recommendations of the Special Rapporteur on the independence of judges and lawyers and ensure that the concept of separation of powers is fully respected", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Become a party to OP-ICESCR, OP-CAT, CMW and CED ", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Officially endorse the United Nations Declaration on the Rights of Indigenous Peoples, and fully implement all relevant national laws and regulations ", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Make more efforts to preserve the environment when applying agricultural development and not to use internationally banned pesticides", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Repeal the Armed Forces (Special Powers) Act and the Public Safety Act and take credible actions to end the prevailing culture of impunity in \u201cIndian-Occupied Kashmir\u201c", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Ratify the second Optional Protocol to the International Covenant on Civil and Political Rights", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Adopt a comprehensive anti-discrimination law, including protection for lesbian, gay, bisexual, transgender and intersex persons", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Enforce laws criminalising gender-based violence and female genital mutilation", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Take further efforts to promote the participation of women in public life ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Accede to the Rome Statute of the International Criminal Court", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Continue the main measures adopted to eliminate discrimination against the Roma minority, as contained in the Action Plan for the Decade of Roma Inclusion 2005-2015 ", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Sign and ratify the Second Optional Protocol to the International Covenant on Civil and Political Rights, with a view to finally and entirely abolishing the death penalty", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Take steps to enhance access to counselling and related services for victims of domestic and sexual violence, including by ensuring that adequate resources are made available ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Speed up the plans to improve the situation in prisons, including the prompt construction of a new special prison in Abidjan for women and juveniles to provide for their separation from serious criminals ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Strengthen cooperation with the relevant UN human rights mechanisms in areas such as racial discrimination, the restriction on the freedom of religion and belief, human trafficking", - "values": [ - "4 - General action" - ] - }, - { - "text": "Take all necessary measures to ensure that detention conditions be made compatible with international laws and standards, particular articles 9 and 10 of the ICCPR", - "values": [ - "4 - General action" - ] - }, - { - "text": "Increase its focus on policy implementation to combat family violence, and in particular violence against women and children", - "values": [ - "4 - General action" - ] - }, - { - "text": "Complete the process of recognition of the indigenous peoples in its Constitution, implement the recommendations of the Special Rapporteur on the situation of human rights and fundamental freedoms of indigenous people and recognize their contribution to the Chilean identity as a people.", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Take further measures aimed at the protection of women and children's rights, in particular in order to raise awareness of, prevent and protect them from all forms of violence and human trafficking, including among migrants, refugees and asylum seekers", - "values": [ - "4 - General action" - ] - }, - { - "text": "Ratify additional human rights conventions and reinforce efforts to combat child labour", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Strengthen the federal legislation to combat discrimination and ensure an effective implementation with a view to a better protection of the rights of vulnerable persons, in particular children, persons in detention and persons with disabilities ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Intensify efforts against gender violence through reforms that allow the prosecution of perpetrators without requiring that the victim lodge a complaint, guaranteeing sufficient resources for shelters for victims and offering free social assistance and legal advice to victims ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Implement effective means of dismantling all forms of illegal armed groups that have emerged since the demobilization process began.", - "values": [ - "4 - General action" - ] - }, - { - "text": "Take every possible measure to ensure the protection of the civilian population, in particular vulnerable groups, such as children, women and IDP's.", - "values": [ - "4 - General action" - ] - }, - { - "text": "Take steps to ensure equality between men and women, in particular, take measures to guarantee that women enjoy equal pay for work of equal value as provided by the Labour Code, such as enhancing labour inspection measures and addressing the issue of ineffective implementation of the law, increasing awareness and favouring access to justice for affected women ", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Stop the widespread use of torture, enforced disappearance and arbitrary detention", - "values": [ - "4 - General action" - ] - }, - { - "text": "Continue protecting and promoting the rights of migrants ", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Address extant indigenous land claims, and ensure an end to discrimination against rural and indigenous communities", - "values": [ - "4 - General action" - ] - }, - { - "text": "Establish an independent body that is authorized to receive complaints on violence and abuses by the police", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Improve fair access to and the quality and sustainability of primary education", - "values": [ - "4 - General action" - ] - }, - { - "text": "Consider appropriate, effective measures to provide for a better promotion and protection of the freedom of religion or belief ", - "values": [ - "3 - Considering action" - ] - }, - { - "text": "Continue programmes on human rights education, including on prevention", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Cooperate fully with the Council Working Group on the elimination of discrimination against women in law and in practice ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Ensure a safe and enabling environment for human rights defenders, including by loosening restrictions for fundraising activities of NGOs ", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Continue implementing programmes and measures to improve the enjoyment of the right to education and the right to health ", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Speed up the process to appoint a new Ombudsman", - "values": [ - "4 - General action" - ] - }, - { - "text": "Put an end to indiscriminate attacks on civilians, ensure the protection of hospitals and medical staff and allow the passage of humanitarian relief", - "values": [ - "4 - General action" - ] - }, - { - "text": "Expand the scope of the Right of Children to Free and Compulsory Education Act and promote human rights education in the school curriculum", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Speed up the ratification of the two Optional Protocols to the CRC", - "values": [ - "4 - General action" - ] - }, - { - "text": "Establish a programme to effectively abolish the death penalty in its criminal law", - "values": [ - "4 - General action" - ] - }, - { - "text": "Include a definition of torture in the Criminal Code in full compliance with article 1 of the Convention against Torture and Other Cruel, Inhuman or Degrading Treatment or Punishment and investigate all allegations of torture and ill-treatment in an impartial, thorough, transparent, efficient and effective manner so as to bring perpetrators to justice and fight impunity", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Continue its efforts for the effective inclusion of indigenous people and migrants in society", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Ensure the investigation, prosecution and punishment of any act of discrimination or violence motivated by the victim's sexual orientation or gender identity", - "values": [ - "4 - General action" - ] - }, - { - "text": "Strengthen and diversify cooperation with bilateral partners in areas of common interest in order to promote human rights", - "values": [ - "4 - General action" - ] - }, - { - "text": "Seek international assistance to combat child labour, such as through the International Labour Organization ", - "values": [ - "1 - Minimal action" - ] - }, - { - "text": "Accelerate the process of revising the legislative framework governing prisons with a view to harmonizing it with the 2011 Constitution and international standards", - "values": [ - "4 - General action" - ] - }, - { - "text": "Take all necessary measures to raise the level of involvement of women in public and political life according to the quota stated in the relevant laws", - "values": [ - "4 - General action" - ] - }, - { - "text": "Ratify the Second Optional Protocol to the ICCPR as a matter of priority", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Continue efforts to strengthen legal frameworks and their implementation, through, inter alia, completing the ratification process of the Convention against Corruption ", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Continue strengthening its sound social policies in order to improve the quality of life of its people with an emphasis on vulnerable groups, in particular ethnic, racial and cultural minorities", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Immediately take all necessary measures to end the situation whereby ethnic minorities continue to be persecuted and are the object of serious discrimination, and not impede the access to humanitarian aid in the regions where these ethnic minorities live ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Ratify the International Convention on the Protection of All Persons from Enforced Disappearances", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Elaborate economic policies and poverty reduction strategies", - "values": [ - "4 - General action" - ] - }, - { - "text": "Combat violence against women through coordinated and comprehensive preventive measures and ensure access to justice and remedy for victims", - "values": [ - "4 - General action" - ] - }, - { - "text": "Take legal proceedings on complaints as to racial discrimination and incitement to racial and religious hatred", - "values": [ - "4 - General action" - ] - }, - { - "text": "Declare an official moratorium on the death penalty", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Consider an early ratification of the Rome Statute of the International Criminal court, including accession to the Agreement on the Privileges and Immunities of the Court", - "values": [ - "3 - Considering action" - ] - }, - { - "text": "Conclude the process for the adoption of the draft law that creates a national human rights institution in compliance with the Paris Principles ", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Strengthen measures, including the adoption of necessary legislation, to give effect to the rights enshrined in ICCPR", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Establish a moratorium on executions with a view to the definitive abolition of the death\npenalty", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Formulate a national action plan to develop specific initiatives with regard to persons with disabilities ", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Pursue its efforts related to the fight against racism and xenophobia by establishing, with a calendar for concrete action, a national and complete strategy for combating racism and xenophobia, as announced in its first national Human Rights Plan \n", - "values": [ - "4 - General action" - ] - }, - { - "text": "All parties of the Central African Republic continue to improve the security environment, maintain the social stability, and create conditions for political transition and reconstruction that people of the Central African Republic can enjoy all human rights", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Improve cooperation with the United Nations treaty bodies by agreeing on timelines for submitting overdue reports ", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Investigate the allegations of torture and ill-treatment in a prompt, impartial and effective manner and prosecute perpetrators ", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Ensure equal representation of the titular and non-titular communities in local self-government bodies", - "values": [ - "4 - General action" - ] - }, - { - "text": "Continue the selection process for a new Ombudsman, with a view to its appointment at the earliest possible, in line with the constitutional requirements and the Paris Principles", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Strengthen efforts to ensure that all newborn children are officially registered.", - "values": [ - "4 - General action" - ] - }, - { - "text": "Continue its efforts to fully implement the 2012-2015 plan of action against racism and all forms of discrimination", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Ensure the effective implementation of the Marriage, Divorce and Family Relations Bill in order to prevent the prevalence of child marriage", - "values": [ - "4 - General action" - ] - }, - { - "text": "Revive initiatives for minorities for developing measures to remove the restrictions on the use of languages other than Turkish in political and public life", - "values": [ - "4 - General action" - ] - }, - { - "text": "Increase resources and capacity towards full implementation of measures taken to fight corruption in the public and private sectors", - "values": [ - "4 - General action" - ] - }, - { - "text": "Ensure the protection of the rights of those sentenced to death, by guaranteeing among other things the suspensive effect of any appeal request or claim to review the trial", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Pursue efforts to prevent and combat human trafficking, exploitation of persons and other contemporary forms of slavery, including sexual exploitation, and provide support and protection to victims, paying particular attention to vulnerable groups such as indigenous people, children, women, people with disabilities and non-nationals", - "values": [ - "4 - General action" - ] - }, - { - "text": "In order to eradicate FGM, increase public advocacy and training of judiciary and public officials, traditional leaders and parents, both men and women ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Take the necessary measures to ensure full respect for human rights in the framework of counter-terrorism struggle, and in particular, the rights to defense and non-use of torture ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Continue its efforts to adopt the National Action Plan to Prevent and Combat Human Trafficking", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Consider the ratification of the ILO Convention 169 on Indigenous and Tribal Peoples in Independent Countries.", - "values": [ - "3 - Considering action" - ] - }, - { - "text": "Foster internal analysis on the recently adopted law on asylum and its compatibility with international human rights law.", - "values": [ - "4 - General action" - ] - }, - { - "text": "Sign, ratify or accede to, as appropriate, the Optional Protocol to the Convention on the Rights of the Child on the sale of children, child prostitution and child pornography ", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Enhance access to justice for foreign workers", - "values": [ - "4 - General action" - ] - }, - { - "text": "Expedite the adoption of the Charter of Child Rights Bill ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Abolish legal provisions allowing for reduced sentences for so-called honor crimes and undertake an awareness-raising campaign", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Continue to give priority to implementing the Truth, Reception and Reconciliation Commission and Commission of Truth and Friendship recommendations regarding victims' rights to justice, truth and reparations", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Continue to eliminate racial discrimination, and put racial violence as criminal offence, with a view to protecting all the rights of minorities including newly arrived immigrants and better integrating into the society ", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Undertake an impact assessment on the possible consequences of its foreign trade policies and investment agreements on the enjoyment of economic, social and cultural rights by the population of its partner countries", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Encourage the participation of children in all the programmes and initiatives concerning them, whenever feasible", - "values": [ - "4 - General action" - ] - }, - { - "text": "Proceed as soon as possible with the publication and implementation of its National Human Rights Action Plan for 2009-2010 ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Establishment of juvenile courts and specialized detention, re-education and rehabilitation centres for women and children in the country's eight regions", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Adopt legislation criminalizing domestic violence, including sexual violence, together with effective implementation measures", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Continue and strengthen health education and family life programs, such as education on appropriate sexual and reproductive health for every age, and access to sexual and reproductive health, including contraceptive methods", - "values": [ - "4 - General action" - ] - }, - { - "text": "Take further measures to ensure persons with disabilities enjoy their rights, in particular by ratifying the Convention on the Rights of Persons with Disabilities", - "values": [ - "4 - General action" - ] - }, - { - "text": "Urgently abolish article193-1 of the Criminal Code, which criminalizes activities by non-registered organizations and generally end the pattern of obstruction, harassment and intimidation of civil society organizations promoting and defending human rights, including trade unions, environmental groups, lesbian, gay, bisexual, transgender and intersex groups and human rights groups", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Pursue the revision of the Penal Code to provide a more comprehensive and thorough legal basis for the implementation of Indonesia's obligations ", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Continue efforts to enlarge access to treatment (of HIV/AIDS and malaria) ", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Give all in detention a fair trial", - "values": [ - "4 - General action" - ] - }, - { - "text": "Amend its legislation to enable the enjoyment and practice of freedom of religion or belief for both citizens and foreigners living in the country", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Continue its reform and humanization of the prison system, and to strengthen training programmes for prison administration staff in various categories", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Respect fully the principle of non-refoulement and ensure effective access to asylum procedures, taking into account the objectives of UNHCR's 10-Point Plan on Mixed Migration ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Set in place a comprehensive, national coordinated strategy to address gender-based violence in order to ensure the implementation of the legal framework and to tackle the high prevalence of sexual and gender-based violence, including against children", - "values": [ - "4 - General action" - ] - }, - { - "text": "Strengthen the proper functioning of the People's Lawyers Office by providing financial and technical support in order that everybody has the right to a due process and legal representation ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Continue its efforts regarding the combat of the phenomenon of trafficking in persons", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Give special regard to women and children and enhance their enjoyment of human rights and fundamental freedoms ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Continue efforts in implementing its National Strategy on Gender Equality ", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Issue an open and standing invitation to all special procedures of the Human Rights Council ", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Continue to implement policies that would further encourage women's full and active participation in its society and economy", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Take additional measures to increase access to free education for children from low-income families and families living in rural areas ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Ratify the Council of Europe Convention on preventing and combating violence against women and domestic violence ", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Improve further the situation of children, boys and girls alike, through the necessary review of laws and regulations ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Accelerate its efforts in women's empowerment and gender equality, including through the updated National Strategy for the Advancement of Women in the United Arab Emirates, 2013-2017", - "values": [ - "4 - General action" - ] - }, - { - "text": "Make additional efforts in eradicating illiteracy", - "values": [ - "4 - General action" - ] - }, - { - "text": "Ensure that national legislation is in accordance with the United Nations Declaration on the Rights of Indigenous Peoples", - "values": [ - "4 - General action" - ] - }, - { - "text": "Promote strategies for the mitigation of climate change and disseminate those through school programs", - "values": [ - "4 - General action" - ] - }, - { - "text": "Establish a moratorium on executions towards a complete abolition of the death penalty and commute all sentences to death to jail sentences ", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Train more teachers and improve the quality of education in the rural areas", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Bring the Civil Code into full conformity with its international obligations and commitments, including the Convention on the Elimination of All Forms of Discrimination Against Women, to ensure that civil partnerships and de facto non-traditional or non-Catholic marriages are recognized by the Civil Code and that women have equal rights as men in matters of inheritance and landownership", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Step up efforts towards the completion of the institutional framework for the promotion and protection of human rights, including the formulation of a national human rights action plan", - "values": [ - "4 - General action" - ] - }, - { - "text": "Allow persons originating from countries in conflict and other situations of violence and thus granted temporary subsidiary protection status to initiate family reunification proceedings during their first year in Denmark", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Undertake all efforts to create legislation against human trafficking and the smuggling of migrants for purposes of sexual exploitation and forced labour, in line with the United Nations Convention against Transnational Organized Crime and the Protocols thereto, and as pledged in the national report ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Adopt and implement all necessary measures to register the birth of children, particularly children belonging to minorities, who are born in remote areas of the country and guarantee the issuance of birth certificates and other documents", - "values": [ - "4 - General action" - ] - }, - { - "text": "Allegations of torture be effectively and independently investigated at earliest in view of prosecuting the authors of these offences", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Continue its efforts aimed at combating racism and racial discrimination and xenophobia", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Adopt and implement further measures in order to contrast discrimination against women, prevent and punish episodes of violence against women and eradicate harmful practices such as female genital mutilations and early and forced marriages ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Protect journalists, human rights defenders and other representatives of civil society against acts of intimidation and violence to which their activities may expose them", - "values": [ - "4 - General action" - ] - }, - { - "text": "Ensure that victims of grave violations receive timely, effective and appropriate services through the monitoring, reporting and response system for children affected by conflict", - "values": [ - "4 - General action" - ] - }, - { - "text": "Revise the Family Code to prohibit polygamy and marriage of minors ", - "values": [ - "3 - Considering action" - ] - }, - { - "text": "Continue to strengthen its efforts to fight against trafficking in persons and to ensure protection of its victims", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Accelerate the completion of the study on the possibility of establishing an NHRI in accordance with Paris Principles", - "values": [ - "4 - General action" - ] - }, - { - "text": "Continue to strengthen its efforts to prevent crimes committed with racial, discriminatory and xenophobic motives", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Establish a formal moratorium on the death penalty with a view to ratifying the Second Optional Protocol to ICCPR, aiming at the abolition of the death penalty", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Ratify ILO Freedom of Association and Protection of the Right to Organise Convention (No. 87), ILO Right to Organise and Collective Bargaining Convention (No. 98), and ILO Minimum Age Convention (No. 138)", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Establish institutional structures to ensure birth registration throughout the country, including of the IDP population ", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Step up efforts to prevent children from being engaged in trafficking, sexual exploitation and prostitution ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Continue its efforts to provide the National Human Rights Commission with more independence and resources", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Continue and strengthen measures to enforce existing regulations to combat negative stereotyping of women in the local media ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Take measures towards complete abolition of the death penalty ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Ensure that all allegations of torture and ill-treatment, as well as mass rapes, and sexual and gender-bases violence are promptly, independently and thoroughly investigated and to take all the necessary measures to bring perpetrators to justice", - "values": [ - "4 - General action" - ] - }, - { - "text": "Continue the efforts to strengthen the national legal framework for human rights", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Ratify the International Covenant on Civil and Political Rights", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Effectively ban torture in all its forms and ratify the OP-CAT", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Continue to step up efforts to combat the trafficking in human beings, and in particular to establish criminal liability for the production and dissemination of materials advocating the trafficking in children, child prostitution and child pornography", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Continue its efforts to improve measures to promote and protect the rights of migrant workers in the country, including to consider accession of the International Convention on the Rights of All Migrant Workers and Members of Their Families", - "values": [ - "3 - Considering action" - ] - }, - { - "text": "Adopt and effectively implement comprehensive legislation criminalising rape, domestic violence, sexual harassment and other forms of violence", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Establish a clear and comprehensive definition of violence against children, and prosecute all forms of violence, including domestic violence", - "values": [ - "4 - General action" - ] - }, - { - "text": "Take measures to further promote the right to education, including by ensuring that school facilities and well-trained teachers are adequately present throughout the country", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Establish a formal moratorium on executions with a view to abolishing the death penalty ", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Continue its efforts in taking practical steps to further reduce the rates of maternal morbidity, particularly in the rural areas", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Ensure that detained persons are treated humanely and given access to legal counsel and all allegations of torture in detention are properly investigated", - "values": [ - "4 - General action" - ] - }, - { - "text": "Continue to provide and ensure improved and easily accessible service delivery, especially to marginalized sections of the population", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Demobilize, within the guerrilla and the paramilitaries, children combatants who have been forcibly recruited.", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Introduce a moratorium on all executions and introduce legislation to abolish the death penalty", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Prohibit forced sterilization in line with requests by the Special Rapporteurs on torture, violence against women, and the right to health, and in line with the National Population Policy", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Continue advancing its efforts to improve indicators regarding poverty, illiteracy, schooling, mothers' health and access to water with the cooperation of the international community, in particular the developed countries, which must increase their official development aid and other forms of aid to Bhutan ", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Continue to work with development partners in order to improve its capabilities in implementing its anti-trafficking law", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Design and implement a comprehensive policy on care and protection to migrants, refugees and asylum-seekers in Greece ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Strengthen the law on the use of firearms by police officers, by introducing a policy of zero tolerance for their abusive use ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Consider possible revision of its legislation on administrative restrictions in order to provide a better protection of freedom of religion or belief", - "values": [ - "3 - Considering action" - ] - }, - { - "text": "Continue the constitutional review process in full transparency and clarity on the primacy of the International Covenant on Civil and Political Rights over domestic law", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Adopt comprehensive measures to address violence against women and enact legislation to ensure that such violence, including sexual abuse, constitutes a criminal offence.", - "values": [ - "4 - General action" - ] - }, - { - "text": "Ensure equal access to the enjoyment of rights such as education, health, political participation, access to justice and integration into the labour market for indigenous and Afro-descendant populations", - "values": [ - "4 - General action" - ] - }, - { - "text": "Consider ratifying the Kampala Convention ", - "values": [ - "3 - Considering action" - ] - }, - { - "text": "Ratify other core human rights treaties, particularly the International Covenant on Civil and Political Rights and the International Covenant on Economic, Social and Cultural Rights ", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Boost the cooperation with the International Criminal Court with the objective to accede to the Rome Statute of the International Criminal Court", - "values": [ - "4 - General action" - ] - }, - { - "text": "Step up measures to curb acts of racism, extremism and xenophobia and undertake efforts to improve interracial, intercultural and interreligious dialogue and sensitivity", - "values": [ - "4 - General action" - ] - }, - { - "text": "Adopt legislation expanding the verification of personal backgrounds for all acquisitions of firearms", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Decriminalize the access to its territory for persons wishing to file a request for asylum, and process the asylum applications individually and in a non-discriminatory fashion, in compliance with its international obligations", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Improve health care to further reduce child mortality", - "values": [ - "4 - General action" - ] - }, - { - "text": "Improve the situation of indigenous peoples and guarantee their rights", - "values": [ - "4 - General action" - ] - }, - { - "text": "Promote leadership of women by enacting the pending gender equality bill and ensuring its early implementation", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Undertake concrete and appropriate steps towards ratification of and accession to international human rights instruments ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Address child labour in accordance with its international obligations, notably CRC and ILO Convention No. 182 (1999) concerning the Prohibition and Immediate Action for the Elimination of the Worst Forms of Child Labour ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Consider the possibility of expressing its consent to ratify the ICRMW ", - "values": [ - "3 - Considering action" - ] - }, - { - "text": "Continue to take measures to counter organized crime, in particular drug trafficking with a view to fostering an environment that is conducive to the enjoyment of human rights for all", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Extend an open invitation to the special procedures", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Take further steps to enhance the number and quality of available accommodation facilities and other services offered to minors and vulnerable groups arriving in Greece ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Establish an independent electoral commission, allowing for open participation of political parties and objective certification of election results", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Urge the Federated States of Micronesia to ratify the Convention on the Rights of Persons with Disabilities and its Optional Protocol, and incorporate them into its domestic legislation", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Develop and implement policies to ensure gender equality throughout society and strengthen the promotion and protection of the rights of women, especially women from indigenous communities", - "values": [ - "4 - General action" - ] - }, - { - "text": "Consider endorsing and implementing the national disability policy as a tool to ensure better rights for persons with disabilities", - "values": [ - "3 - Considering action" - ] - }, - { - "text": "Fully respect the human rights of foreigners, regardless of their migratory status ", - "values": [ - "4 - General action" - ] - }, - { - "text": "To promote the creation of new units for victims' assistance in the development of the new Bolivarian National Police", - "values": [ - "4 - General action" - ] - }, - { - "text": "Continue efforts to decrease the number of prisoners and take action to improve the conditions in prisons and detention centres ", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Undertake further activities to improve the socio-economic integration of those who have returned refugees and internally displaced persons", - "values": [ - "4 - General action" - ] - }, - { - "text": "Take the necessary measures to prevent high numbers of disappearances and extrajudicial killings related to police actions, in particular with regard to children", - "values": [ - "4 - General action" - ] - }, - { - "text": "Fully protect members of opposition groups, political activists and journalists who are exercising their rights to freedom of expression, association and peaceful assembly from arbitrary detention ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Consider ending the practice of indefinite national service and begin a process of phased demobilization for those who have served for more than the statutory 18 months ", - "values": [ - "3 - Considering action" - ] - }, - { - "text": "Review all relevant existing and prepared legislation, including the Penal Code, with a view to ensuring its compliance with international human rights law, namely with protection of privacy and prohibition of discrimination", - "values": [ - "3 - Considering action" - ] - }, - { - "text": "Continue providing human rights education, in particular through access to information and promoting existing mechanisms for protection and reparation", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Consider alternatives to the detention of asylum seekers.", - "values": [ - "3 - Considering action" - ] - }, - { - "text": "Conduct an evaluation on its anti-trafficking programmes to further strengthen them where appropriate and share its lessons learned in this area ", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Provide the necessary support for national human rights bodies to help them do their work", - "values": [ - "4 - General action" - ] - }, - { - "text": "Take measures to hold accountable perpetrators of serious human rights violations by the armed groups and to offer redress to the victims in Northern Mali ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Take the necessary steps to pursue the signature, ratification and implementation of major international human rights instruments and, as a first priority, sign ICCPR and ICESCR, with a view to early ratification ", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Become party to the Rome Statute of the International Criminal Court, the Conventions on the refugees and stateless persons and the Convention to fight discrimination in Education", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Establish a national human rights institution accredited by the International Coordinating Committee of National Institutions for the Promotion and Protection of Human Rights.", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Improve the birth registration system to guarantee registration for every child with the issuance of a birth certificate", - "values": [ - "4 - General action" - ] - }, - { - "text": "Redouble its efforts in establishing a national human rights institution in accordance with the Paris Principles ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Take measures to address claims of continuing extrajudicial executions ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Eliminate detention facilities known as "safe houses" ", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Carry out independent investigations regarding the cases of violations of labour rights in the country, including in the area of forced labour and equal pay between women and men ", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Consider the possibility of issuing a standing invitation to the Special Rapporteurs as a way for the system to cooperate in defining the Government's policies for human rights", - "values": [ - "3 - Considering action" - ] - }, - { - "text": "Review the effectiveness of existing legislation to combat racism, hate crime and hate speech", - "values": [ - "3 - Considering action" - ] - }, - { - "text": "Adopt a law guaranteeing freedom of movement within the territory in accordance with ICCPR, which Cuba has signed, repeal the system of permits to leave the territory, and consequently delete from the criminal code the crime of illegal departure from the territory", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Enact and implement legislation that unambiguously prohibits all corporal punishment in the home ", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Continue its efforts to see through its reform agenda, as stipulated in its new Constitution.", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Give concrete shape to the project for the creation of a High Council for human rights and freedoms that has been submitted to the President, so that respect for human rights will be guaranteed in the constitutional reform ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Continue efforts to insure that victims of human rights violation are provided with efficient, flexible and instant compensation ", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Draw up a plan to manage and mitigate natural disasters together with the regional mechanisms and the United Nations, taking into account the possible large-scale internal and international displacement of population ", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Ensure the compilation of detailed statistics on the use of solitary confinement ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Fully align its national legislation with the Rome Statute, including by incorporating provisions to cooperate promptly and fully with the International Criminal Court and to investigate and prosecute individuals found guilty of genocide, crimes against humanity and war crimes effectively before its national courts ", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "That the new Commission be equipped with all the necessary safeguards to ensure its true independence in accordance with the Paris Principles ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Continue carrying out the policy aimed at bringing legislation in line with its international human rights obligations, and improving judicial and penitentiary systems, as well as the application of laws in the area of the rights of national and religious minorities", - "values": [ - "4 - General action" - ] - }, - { - "text": "Enhance bilateral cooperation with other countries in the field of human rights especially through dialogue and technical assistance", - "values": [ - "4 - General action" - ] - }, - { - "text": "Continue strengthening its social programmes to improve the living conditions of its people, particularly the most excluded, with the cooperation and technical assistance that is requested by the country", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Introduce an official moratorium on executions with a view to abolishing the death penalty and commute without delay all death sentences to terms of imprisonment", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Ensure the right to freedom of opinion and expression for all journalists and media groups, including by effectively investigating allegations of intimidation and attacks and by prosecuting perpetrators", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Continue to raise the literacy rate amongst women, particularly those living in rural areas", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Take further measures to bring to justice all perpetrators of abuse in order to eradicate impunity for those who commit human rights violations", - "values": [ - "4 - General action" - ] - }, - { - "text": "Continue and strengthen its efforts to combat the illegal use of children in armed conflict ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Take urgent steps to establish an independent National Human Rights Institution free from governmental control, and in full compliance with the Paris Principles", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Continue to bring about the strengthening of the structures for human rights protection in accordance with international standards ", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Take additional measures to effectively combat violence against women and promote the participation of women in political life and their insertion in the professional life", - "values": [ - "4 - General action" - ] - }, - { - "text": "Accelerate judicial proceedings against the perpetrators of human rights violations committed in 2009, establish reparation mechanisms for victims and make operational the process of justice, truth and reconciliation", - "values": [ - "4 - General action" - ] - }, - { - "text": "Organize programmes about the negative consequences of child marriage and about the importance of education", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Ratify the Indigenous and Tribal Peoples Convention, 1989 (No. 169)", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Given the deep-rooted traditions of the Albanian society, adopt an appropriate regulation relating to acts of vendetta/blood feud in the family and ensure that the perpetrators of such crimes are punished ", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Implement the Uniform Family Code as well as withdraw its reservations against CEDAW ", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Accept the request of the Working Group on Enforced Disappearances to visit the country ", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Set up an independent national human rights institution, in accordance with the Paris Principles", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Bolster mandatory human rights training for the security forces and strengthen mechanisms to investigate alleged abuses committed by security forces ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Continue its measures in favour of economic, social and cultural rights ", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Implement all necessary measures, including legal measures, so that under no circumstances can women and girls be criminally prosecuted for having solicited or obtained an abortion", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Take positive measures to further reduce infant mortality rates and maternal mortality rates ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Facilitate access to girls and boys to schools, particularly in rural areas", - "values": [ - "4 - General action" - ] - }, - { - "text": "Continue favouring the human rights approach in the reconstruction framework ", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Take further steps to protect and promote economic, social and cultural rights, in the context of climate change", - "values": [ - "4 - General action" - ] - }, - { - "text": "Expand education and awareness programmes to eradicate sexual and gender violence", - "values": [ - "4 - General action" - ] - }, - { - "text": "Continue its efforts in economic, social and cultural rights to further build upon the progress it has already made.", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Continue taking actions to punish human rights violations, such as against the right to food or the right to peace, committed or promoted by actors in the business sector, which are pushing political agendas of destabilization", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Continue to develop policies aimed at promoting and protecting human rights and realizing the welfare and development of the population", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Ensure respect of the independence of the National Human Rights Commission in accordance with the Paris Principles ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Continue to strengthen the rights of indigenous peoples, placing priority on the adoption of a law to prevent and eliminate all forms of discrimination and criminalizing such offences", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Ratify OP-CAT and simultaneously strengthen investigations of complaints of this practice", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Guarantee the right to privacy and stop spying on its citizens without judicial authorization ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Continue its efforts to enact laws in the area of equality of opportunity and rights for men and women ", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Protect the Christian and other religious minorities by fostering a climate of religious tolerance and respect in the country ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Adopt legislative and administrative regulations that allow immigrants to file an appeal against forced removal, with suspensive effects, in cases in which they could be subject to torture or other ill treatment in their countries of origin ", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Completely abolish the death penalty and sign and accede to the Second Optional Protocol to ICCPR ", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Refraining from the practice of surveillance and intrusion into the private lives of representatives of religious minorities", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Implement a national strategy on the rights of persons with disabilities", - "values": [ - "4 - General action" - ] - }, - { - "text": "Facilitate the work and function of the national human rights institution in accordance with the Paris Principles ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Accede to the Second Optional Protocol to the International Covenant on Civil and Political Rights, aimed at abolishing the death penalty, and take the necessary steps to remove the death penalty from Sudan's justice system ", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Take concrete steps to eliminate arbitrary detention as a form of persecution of political and civic dissent and release and fully rehabilitate all those sentenced directly or indirectly for their political and civic activities", - "values": [ - "4 - General action" - ] - }, - { - "text": "Further expand the universal child allowance programme coverage and incorporate a large number of eligible children and adolescents, especially those from marginalized groups and as yet undocumented children", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Go further and tackle the challenges which still persist concerning the rights of migrants, refugees, asylum seekers and their families and consider an eventual withdrawal of its reservations to the Convention on the Rights of the Child and a declaration in support of article 14 of ICERD ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Take effective measures to increase women's representation in decision-making positions in all areas, close the gender pay gap and eliminate strong gender role stereotypes and ensure that all women workers benefit from the maternity benefits scheme", - "values": [ - "4 - General action" - ] - }, - { - "text": "Submit all the reports due under the treaty bodies ", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Continue its efforts to cut its lag in presenting its reports to the treaty bodies as part of its priority programme and ask OHCHR to provide the necessary technical assistance, in particular through the training of officials to ensure that the Government is autonomous in this area in the future", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Continue the implementation of its legislative and institutional framework to protect and advance human rights, to ensure practical improvements on the ground", - "values": [ - "4 - General action" - ] - }, - { - "text": "Request assistance from the United Nations specialized agencies, specifically the World Health Organization, to provide financial and technical support as necessary to consolidate measures for the reduction of maternal and child mortality and improve children's access to health care.", - "values": [ - "1 - Minimal action" - ] - }, - { - "text": "Implement existing Law 91-1992 on Italian citizenship in a manner that preserves the rights of all children born in Italy", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Encourage diversity and tolerance of other faiths and beliefs in the education system by monitoring incidents of discrimination on the basis of belief", - "values": [ - "4 - General action" - ] - }, - { - "text": "Ongoing cooperation with OHCHR for the investigation, dissemination and respond to complaints put forward to special mechanisms and procedures with regard to alleged violations of human rights in the country, to present, co-sponsor and support according to the need, draft resolutions which condemn practices that are systematic violations of human rights in any part of the world, to maintain an open and ongoing invitation for cooperation with the special procedures and mechanisms, both from the United Nations system and the Inter-American system, so that they can come and see in situ what the human rights situation is in the country, to support the adoption of new instruments for protecting and promoting human rights internationally", - "values": [ - "4 - General action" - ] - }, - { - "text": "Ensure equal employment opportunities for women, and enhance women's participation in the workforce by recruiting qualified women for expert and supervisory positions in all ministries, diplomatic corps and the judiciary ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Put an end to the discrimination against the Muslims of Rohingya", - "values": [ - "4 - General action" - ] - }, - { - "text": "Ratify the Optional Protocols to the Convention on the Rights of the Child on the involvement of children in armed conflict and on the sale of children, child prostitution and child pornography", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Undertake efforts to combat illegal trafficking of persons, in particular those indicated in the United Nations Convention against Transnational Organized Crime and the Protocols Thereto ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Continue with the implementation of national policies against gender-based violence", - "values": [ - "4 - General action" - ] - }, - { - "text": "Take the necessary measures to ensure the independence of the International Crimes Tribunal, Bangladesh (ICT-BD), respecting the rights of all of the accused to a trial with full guarantees ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Step up efforts to consider acceding to ICRMW", - "values": [ - "4 - General action" - ] - }, - { - "text": "Ensure that earthquake relief engages and addresses the needs of members of vulnerable communities, including Dalits, and promotes decent work", - "values": [ - "4 - General action" - ] - }, - { - "text": "Ensure impartial, full and prompt investigations into all allegations of torture and other cruel, inhuman or degrading treatment, as well as appropriate prosecution and punishment of the perpetrators ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Raise awareness and promote tolerance and diversity in society, and train law enforcement officials in the detection and prosecution of hate speech ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Make use of the educational process to share the culture of human rights and raise awareness of those rights ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Continue to make efforts to protect migrant workers from all forms of exploitation and abuse, in particular those from the DPR Korea, by improving their working condition in accordance with relevant international standards", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Strengthen the national legal framework to combat torture by considering the accession of the Convention against Torture", - "values": [ - "4 - General action" - ] - }, - { - "text": "Continue its efforts aimed at the protection of economic, social and cultural rights of the most vulnerable segments of the population ", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Continue to strengthen the protection of vulnerable groups, such as disabled children and Roma in less developed cities and rural areas", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Further improve the legal framework for the protection and promotion of human rights in conformity with its national conditions ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Step up efforts to strengthen public education, awareness programmes and skill training, particularly aimed at increasing the awareness of human rights in Qatar", - "values": [ - "4 - General action" - ] - }, - { - "text": "Cooperate with the international community, in particular through cooperation with the Office for the High Commissioner for Human Rights and the recently established Commission of Inquiry", - "values": [ - "4 - General action" - ] - }, - { - "text": "Continue to adopt measures to improve the situation in the penitentiary system of the country in line with international standards", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Consider establishing an Ombudsman for children ", - "values": [ - "3 - Considering action" - ] - }, - { - "text": "Share its experiences in promoting human rights education with other countries ", - "values": [ - "1 - Minimal action" - ] - }, - { - "text": "Ratify the Protocol to the African Charter on Human and People's Rights on the Rights of Women in Africa ", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Carry forward a national awareness-raising campaign which includes mechanisms to facilitate the access of women to justice, the establishment of specialized courts, comprehensive care services for victims and national programmes to combat stereotyping of women and girls, including at the level of formal and informal education ", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Keep denouncing unilateral coercive measures in all possible scenarios", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Take the requisite measures to increase the number of women in decision-making positions as per the quotas provided for in the Electoral Code of the country", - "values": [ - "4 - General action" - ] - }, - { - "text": "Create or reinforce a transparent, effective and accountable system that includes all levels of the government and representative of the civil society, including indigenous people, to monitor and publicly and regularly report on the implementation of Canada's human rights obligations", - "values": [ - "4 - General action" - ] - }, - { - "text": "Provide adequate budget for the National Human Rights Commission", - "values": [ - "4 - General action" - ] - }, - { - "text": "Raise the age of criminal responsibility to 12 years, and prohibit corporal punishment as a sentence of the courts for all persons, but especially those under 18 years old at the time of the offence", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Continue the efforts in favour of the promotion of the rights of certain populations with a view to further improving their situation, and accelerate the process of adaptation of domestic legislation to envisage the ratification, then the incorporation in its domestic legal order, of several relevant international instruments in the area ", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Give full effect to the Law on Women's Right to a Life Free from Violence, guaranteeing their effective access to justice", - "values": [ - "4 - General action" - ] - }, - { - "text": "Undertake actions leading to a comprehensive reform of the justice and penal systems which contribute to the fight against impunity and crime investigation, comprising the responsibilities of institutions, particularly of the National Police", - "values": [ - "4 - General action" - ] - }, - { - "text": "Promote new actions and initiatives to continue progressing in its efforts to achieve the widest possible enjoyment of all human rights and fundamental freedoms for all ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Complete investigations about civil and criminal implications concerning the release of the film Fitna and initiate prosecution of the author in accordance with Dutch law.", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Withdraw its reservations to several provisions of ICCPR", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Strengthen measures to implement the country\u2019s National Health Insurance Scheme", - "values": [ - "4 - General action" - ] - }, - { - "text": "Expedite the process of ratification of the Optional Protocol to the Convention on the Elimination of All Forms of Discrimination against Women", - "values": [ - "4 - General action" - ] - }, - { - "text": "Continue efforts to promote human rights training and education for the police and army", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Strengthen efforts to promote orderly development of Internet and protect the legitimate rights and interest of ordinary people while reinforcing the legislation on Internet information protection and supervision", - "values": [ - "4 - General action" - ] - }, - { - "text": "Amend the Nationality Law of 1982 to include all religious and racial minorities, including Rohingyas, and to guarantee their full and equal citizenship, and return the previous nationality documents to them", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Organize on-site visits by the Commission of Inquiry and establish a dialogue with the Commission", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Continue to amend and update (criminal and civil) legal codes to protect women from sexual exploitation, gender-based violence and discrimination ", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Increase the mandates of existing institutions such as the Ombudsman's Office and the Leadership Code Commission, to address human rights issues", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Take all necessary measures to prevent and stop domestic violence, including through providing shelters for persons under threat, in coordination with the "Samoa Victims Support Group"", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Promote gender equality in all aspects of life and combat violence against women", - "values": [ - "4 - General action" - ] - }, - { - "text": "Establish a national human rights institution that fully complies with the Paris Principles", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Take the necessary steps to ensure that its legal system and policies are in full compliance with its international obligations in respect of freedom of expression and that journalists and human rights defenders are guaranteed the freedom to carry out their work independently and without fear of prosecution or intimidation", - "values": [ - "4 - General action" - ] - }, - { - "text": "Ensure the right to practice religion freely without discrimination and in accordance with international human rights standards ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Continue to strengthen economic, social and cultural development with full participation of the population in public and security affairs, boost socioeconomic development, industrialization and modernization, and achieve the Millennium Development Goals ", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Continue to enhance the capacity building of its national human rights institutions with the support of the international community.", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "After the signature of OPCAT last September, the Government had the intention of ratifying it in the near future. In addition, the Cabinet was positively considering the possibility of adhering to the Convention relating to the Status of Stateless Persons and the International Convention for the Protection of All Persons from Enforced Disappearance. The Government was also prepared to consider adhering to the ILO Convention No. 169, on indigenous and tribal peoples", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Continue to respect and promote the human rights of vulnerable groups, including the Roma communities.", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Step up efforts in the area of combating trafficking in human beings, including measures on the protection, reintegration and rehabilitation of victims of human trafficking ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Eliminate discrimination against migrants, and especially migrant women", - "values": [ - "4 - General action" - ] - }, - { - "text": "Continue to take measures to prevent torture and other forms of ill-treatment, including steps towards the ratification of the Optional Protocol to the Convention against Torture", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Use a national mechanism for social security needs of the most vulnerable groups", - "values": [ - "4 - General action" - ] - }, - { - "text": "Increase the number of institutions providing professional services for the upbringing and protection of orphans, protection of homeless children and the rehabilitation of children with disabilities", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Adopt further measures to combat all forms of discrimination, including discrimination based on sexual orientation and gender identity", - "values": [ - "4 - General action" - ] - }, - { - "text": "Intensify its efforts to address the problem of birth registration since lack of birth registration makes children born in poor families vulnerable to other human rights violations, including human trafficking", - "values": [ - "4 - General action" - ] - }, - { - "text": "Ensure that juveniles are detained separately from adults, without exception ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Take the necessary steps to ratify the International Covenant on Civil and Political Rights and accede to the International Covenant on Economic, Social and Cultural Rights, as accepted during the previous universal periodic review of Nauru", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Remove the obstacles which still exist in the exercise of the right to health, especially regional differences, to allow all people to enjoy quality in health services, which are freely provided in the country", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Raise the minimum age of criminal responsibility in accordance with acceptable international standards and abolish the mandatory imposition of life imprisonment for offences committed by children under the age of 18", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Redouble its efforts to save mother and child ", - "values": [ - "4 - General action" - ] - }, - { - "text": "End the use of harassment, detention, arrest, and extralegal measures such as enforced disappearance to control and silence human rights activists as well as their family members and friends", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Take all remedial measures, including legislative measures, to ensure that the rights enshrined in the International Covenant on Economic, Social and Cultural Rights are applicable and justiciable", - "values": [ - "4 - General action" - ] - }, - { - "text": "Ensure media plurality and independence, and take into account the opinions received from the Organization for Security and Cooperation in Europe and the Council of Europe, as well as from civil society, when adopting a new audiovisual code", - "values": [ - "4 - General action" - ] - }, - { - "text": "Pass the "Combating and Prevention of Trafficking in Persons Bill" currently under deliberation in the National Assembly, and move swiftly to implement it once passed ", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Strengthen efforts to investigate allegations of serious violations of international humanitarian law and the international human rights during the conflict and to hold those responsible to account", - "values": [ - "4 - General action" - ] - }, - { - "text": "Take all necessary actions to eliminate the practices enabling perpetrators of rape to escape a criminal conviction by marrying their young victims and safeguard the rights of rape victims ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Intensify strategies aimed at social and family integration of minors detained in the disciplinary section for minors of the Penitentiary Centre ", - "values": [ - "4 - General action" - ] - }, - { - "text": "To improve the implementation of the European Convention on Human Rights at national level, Slovakia is committed to ratify the Protocol No. 16 to the European Convention on Human Rights. At the same time, Slovakia will actively promote improvement of the functioning of the regional system of human rights protection established by the European Convention on Human Rights", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Continue efforts to promote the rights of women and children, and address the still high level of maternal mortality", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Ratify the International Convention on the Protection of the Rights of All Migrants Workers and Members of their Families ", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Devote special attention to protecting and promoting the rights of women and children in the processes of developing and implementing national policy", - "values": [ - "4 - General action" - ] - }, - { - "text": "Take the lead in addressing public trust in the media outlets ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Continue to enhance the education system and to support literacy programmes in Iraq", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Implement Proclamation No. 82/1995, limiting national service obligations and cease the practice of obliging citizens to serve in an armed civilian militia ", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Continue to strengthen regulation of the penitentiary facilities to fully ensure the rights of and conditions for detained persons ", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Investigate all allegations of torture and ill-treatment, including against persons detained for reasons linked to the conflict, in accordance with its international obligations", - "values": [ - "4 - General action" - ] - }, - { - "text": "To associate the CNCDH in the follow-up to the recommendations made by the treaty bodies, in addition to its ongoing cooperation with regard to the preparation of periodic reports for the human rights treaty bodies", - "values": [ - "4 - General action" - ] - }, - { - "text": "Exert greater efforts to promote corporative social responsibility of private enterprise, encouraging them to promote voluntary initiatives that contribute to human development of the Egyptian people", - "values": [ - "4 - General action" - ] - }, - { - "text": "Intensify efforts to ratify the Optional Protocol to the Convention against Torture", - "values": [ - "4 - General action" - ] - }, - { - "text": "Sign and ratify the Optional Protocol to ICESCR (OP-ICESCR). Intensify efforts with a view to the prompt ratification of CED ", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Ensure unhindered access to legal representation by persons detained in detention camps", - "values": [ - "4 - General action" - ] - }, - { - "text": "Encourage efforts undertaken by the Government to increase the involvement of the Civil Society in the public sphere ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Adopt a national plan to support the rights of children and to protect them from all forms of abuse, exploitation and violence", - "values": [ - "4 - General action" - ] - }, - { - "text": "Continue reviewing all reservations made to international human rights instruments with a view to withdrawing them", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Consider signing and ratify the International Convention on the Protection of the Rights of All Migrant Workers", - "values": [ - "3 - Considering action" - ] - }, - { - "text": "Maintain as a priority the right of vulnerable persons ", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Ratify the following international treaties to which it is not yet a party: the Optional Protocol to the International Covenant on Economic, Social and Cultural Rights, the Optional Protocol to the Convention against Torture, the International Convention on the Protection of the Rights of All Migrant Workers and Members of Their Families, and the International Convention for the Protection of All Persons from Enforced Disappearance", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Step up actions in the area of gender equality, including the implementation of the Women, Peace and Security Agenda to guarantee the participation of women in all areas of decision-making", - "values": [ - "4 - General action" - ] - }, - { - "text": "Effectively implement the principle of non-discrimination, including on grounds of sexual orientation", - "values": [ - "4 - General action" - ] - }, - { - "text": "Take the necessary legislative steps to establish a Commission for Truth, a Judicial Mechanism and an Office for Reparations as specified in resolution 30/1", - "values": [ - "4 - General action" - ] - }, - { - "text": "Consider the possibility of ratifying the Optional Protocol to the Convention on the Elimination of All Forms of Discrimination against Women ", - "values": [ - "3 - Considering action" - ] - }, - { - "text": "Extend an open and standing invitation to the mandate holders of the human rights special procedures ", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Continue its efforts to deliver free education to all, and to ensure that women, children, persons with disabilities and other vulnerable groups are at the forefront of its efforts", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Establish a thorough, transparent and impartial investigation into Sombath Somphone's disappearance, as recommended by the United Nations Special Rapporteurs", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Continue efforts to improve the social security system for better safeguarding the elderly and persons with disabilities", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Consider the establishment or the strengthening of the existing national mechanism for coordination, implementation, reporting and follow-up", - "values": [ - "3 - Considering action" - ] - }, - { - "text": "Improve training and administrative instructions for police and local authorities to ensure that the right to peaceful assembly is universally respected, including in the provinces of Papua and West Papua", - "values": [ - "4 - General action" - ] - }, - { - "text": "Step up efforts to protect the environment", - "values": [ - "4 - General action" - ] - }, - { - "text": "Take the necessary steps to ensure impartial access to adequate food, drinking water and other basic necessities for all people within its jurisdiction, including vulnerable groups ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Ensure that no child is detained on the basis of his/her immigration status", - "values": [ - "4 - General action" - ] - }, - { - "text": "Continue efforts pursued thus far to combat gender violence ", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Review its existing legislation to fully reflect the principles and provisions of CRC, especially in relation to non-discrimination, corporal punishment and juvenile justice", - "values": [ - "3 - Considering action" - ] - }, - { - "text": "Reduce the number of persons in the detention centres for migrants and create alternative measures to detention, especially for families with children or unaccompanied minors ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Define racial discrimination as an offence in domestic law in keeping with CERD's observation in 2010 and implement the recommendation of CERD to step up efforts to recognize itself as a multi-ethnic State", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Reinstate all employees and students dismissed following the events of February and March 2011 whose political activities were consistent with the right to freedom of peaceful assembly and of association, and amend Law 21/1989 and Law 32/2006 on public gathering to bring their provisions into compliance with article 21 and 22 of ICCPR, and develop an enabling legal environment for civil society to flourish", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Consider revising relevant acts restricting the freedom of expression and media in order to ensure that they conform with international human rights standards ", - "values": [ - "3 - Considering action" - ] - }, - { - "text": "Ensure that women in customary marriages enjoy the same rights as those in civil marriages ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Adopt policies to encourage women and girls to choose non-traditional fields of education and work, including relevant technical and vocational training", - "values": [ - "4 - General action" - ] - }, - { - "text": "Allow an independent body to investigate allegations of torture and to end the impunity of perpetrators", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Establish gender equality and implement measures to prevent violence against women", - "values": [ - "4 - General action" - ] - }, - { - "text": "Guarantee availability and quality of health services, in particular in rural and remote areas", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Consider the formulation of a national action plan or inter-agency mechanism to combat trafficking in persons and provide assistance to victims, bearing in mind the need to integrate a human rights-based approach.", - "values": [ - "3 - Considering action" - ] - }, - { - "text": "Continue its efforts in order to ensure the right to education for all children", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Cooperate with the United Nations human rights mechanisms and allow visits by special procedures mandate holders", - "values": [ - "4 - General action" - ] - }, - { - "text": "Ratify the Convention on the Rights of Persons with Disabilities, as previously recommended", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Make every possible effort to proceed with the early conclusion of important international human rights treaties in particular the Convention against Torture and Other Cruel, Inhuman or Degrading Treatment or Punishment", - "values": [ - "4 - General action" - ] - }, - { - "text": "Continue efforts to raise public awareness about human rights including awareness by law enforcement agencies", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Adopt specific legislation to address all kinds of discrimination, particularly taking into account the rights of persons with disabilities and older persons", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Commission a study on the insufficiencies in the implementation of the mandate of the National Mechanism on Torture Prevention due to the limitations of financial and human resources, and inform the Parliament at its next discussion of the annual report of the Mechanism ", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Ratify the two optional protocols to the ICCPR ", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Effectively provide for the application of laws prohibiting wage discrimination for equal work between men and women", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Take all necessary measures to ensure the social and economic rights of internally displaced persons and refugees, including by adopting specific anti-discrimination policies.", - "values": [ - "4 - General action" - ] - }, - { - "text": "Ban explicitly the use of racial profiling in the conduction of identity checks ", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Continue to take measures to guarantee poverty reduction and universal access to health services and education ", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Consider ratifying the following international instruments: ICCPR, the Convention on the Elimination of All Forms of Discrimination against Women (CEDAW) and its protocols, the Convention against Torture and Other Cruel, Inhuman or Degrading Treatment or Punishment (CAT) and its protocol, the 1951 Convention relating to the Status of Refugees and its 1967 Protocol", - "values": [ - "3 - Considering action" - ] - }, - { - "text": "Continue to take targeted action to eliminate the socio-economic disparities that persist among its population, including those affecting Maori, Pacific, Asian and other groups.", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Within the framework of the pertinent mechanisms and instruments, Italy strongly reiterates its continued commitment to actively contribute to the eradication of any forms of racism, in particular against vulnerable groups. However, it should be recalled that together with other countries, Italy decided not to participate in the 2009 Durban Review Conference and therefore is not in a position to adopt or endorse its Outcome Document.", - "values": [ - "4 - General action" - ] - }, - { - "text": "Guarantee to LGBTI persons the full and equal enjoyment of their human rights, and protection from criminalization and stigmatization", - "values": [ - "4 - General action" - ] - }, - { - "text": "Continue to strengthen the basic rights and non-discrimination of the Roma and Travellers", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "In line with the Government's commitment to the rights of persons with disabilities, adhere to the principles set out in the Convention on the Rights of Persons with Disabilities ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Implement the programmes recommended by the World Health Organization WHO with a view to improving the medical assistance provided to women and children", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Make a concerted effort to increase the number of households with access to piped water, sanitation and electricity, with appropriate assistance from bilateral, regional and international partners", - "values": [ - "4 - General action" - ] - }, - { - "text": "Strengthen the mainstreaming of human rights across the whole spectrum of national public policy", - "values": [ - "4 - General action" - ] - }, - { - "text": "Ratify the ICRMW", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Amend articles 301 and 318 of its Penal Code with a view of decriminalizing the explicitly non-violent exercise of freedom of expression ", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Ensure that Executive Order No. 12 pertaining to the Responsible Parenthood and Reproductive Health Act is fully implemented in order to meet the needs for modern family planning and to secure universal access to sexual and reproductive health and rights", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Abolish now the death penalty for all crimes and ratify the Second Optional Protocol to the International Covenant on Civil and Political Rights", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Start a reform of the armed forces, and take all measures necessary to combat impunity, in particular by establishing independent inquiry commissions that are transparent and credible, with a view to bringing to justice those responsible for human rights violations as soon as possible", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Prohibit corporal punishment of children at home and other alternative care settings, as it had committed to do in the UPR", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Consider establishing a national human rights institution, in line with the Paris Principles", - "values": [ - "3 - Considering action" - ] - }, - { - "text": "Take all measures to ensure the protection of children from trafficking and bring perpetrators of child trafficking to justice. ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Adopt legislation guaranteeing equality between men and women, particularly in the area of family and inheritance law.", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Ratify, without reservations, the Optional Protocol to ICESCR and the Convention Relating to the Status of Refugees, as well as its 1967 Protocol", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Promote the rights of persons with disabilities with the aim to ensuring their social integration ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Implement sustainable public policies to prevent torture and prosecute and punish perpetrators, train and sensitize the armed forces and the police, define the crime of torture in domestic legislation", - "values": [ - "4 - General action" - ] - }, - { - "text": "Carry out genuine transformation of institutions in order to fully respect the obligations undertaken by Tunisia in international human rights instruments", - "values": [ - "4 - General action" - ] - }, - { - "text": "Strengthen its efforts to prevent domestic violence, particularly violence against women", - "values": [ - "4 - General action" - ] - }, - { - "text": "Step up its efforts to enhance human rights education and training of law enforcement personnel, teachers and other civil servants ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Take significant measures to reduce poverty, especially taking into consideration the rights of children", - "values": [ - "4 - General action" - ] - }, - { - "text": "Advance the development of a national poverty policy and strengthen efforts in implementation of the country's Social Protection Strategy", - "values": [ - "4 - General action" - ] - }, - { - "text": "Ratify CAT and OP-CAT without delay", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Study whether a national action plan to combat racism should be adopted", - "values": [ - "3 - Considering action" - ] - }, - { - "text": "Consider using the OHCHR's Recommended Principles and Guidelines on Human Rights and Human Trafficking as a guide in its antitrafficking measures ", - "values": [ - "3 - Considering action" - ] - }, - { - "text": "Raise the age of criminal responsibility in line with international standards", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Continue to ratify the relevant universal human rights instruments to which it is not yet a contracting party", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Take all the necessary measures to prevent recruitment and use of children, including the criminalisation of such acts", - "values": [ - "4 - General action" - ] - }, - { - "text": "Ensure that no individual is directly or indirectly "refouled" to their country of origin, or any other country where they may face persecution ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Put in place measures to support the work of human rights defenders ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Intensify programs to combat poverty so as to improve the enjoyment of economic, social and cultural rights, particularly with regard to food security ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Improve effective access to education for children with disabilities ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Protect and promote cultural rights in order to ensure access for all Cubans to cultural values in all its manifestations ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Give continuity to strengthening national human rights institutions", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Consider the possibility of acceding to ICRMW and intensify efforts to prevent discrimination against this population\n\n", - "values": [ - "3 - Considering action" - ] - }, - { - "text": "Do not renew the Citizenship and Entry into Israel Law after its expiration in July 2009 and re-examine its scope with a view to respecting the obligation of non-discrimination.", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Deepen studies on gender perspective and prevent against any kind of discrimination in the media ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Ensure effective implementation of the ILO Forced Labour Convention no. 29 and the ILO Convention no. 100 concerning Equal Remuneration for Men and Women Workers for Work of Equal Value ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Evaluate the access of the various categories of Roma to education, jobs and social protection.", - "values": [ - "3 - Considering action" - ] - }, - { - "text": "Give priority to a successful conclusion of the peace process with every effort made to centre it on human rights as a sure foundation for the future of the country ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Accede to/ratify the third Optional Protocol to the CRC on a communications procedure ", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Restore the confidence of the population in judicial system ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Implement constitutional provisions and international obligations that support the rights to freedom of expression, assembly, association, and religion and provide an opportunity to participate in free, fair, and transparent elections ", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Implement provisions in the National Human Rights Action Plan for the protection of vulnerable individuals, including children, persons with disabilities, persons with albinism, LGBT persons, and persons diagnosed with HIV/AIDS", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Make further changes to the legislation on sponsorship to protect the rights of migrants, and to abolish the requirement that employers give consent before exit permits are issued for foreign employees", - "values": [ - "4 - General action" - ] - }, - { - "text": "Adopt, as a matter of priority, proper, comprehensive and effective measures to address all forms of violence against women and girls, including domestic violence, sexual violence and trafficking", - "values": [ - "4 - General action" - ] - }, - { - "text": "Ratify OP-ICESCR ", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Sign the Second Optional Protocol to ICCPR, the Optional Protocol to the Convention on the Rights of Persons with Disabilities, the International Convention on the Protection of the Rights of All Migrant Workers and Members of Their Families, and the International Convention for the Protection of All Persons from Enforced Disappearance ", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Ensure effective implementation of its laws on anti-discrimination against women and minorities and take effective measures to ensure protection of migrants, refugees and minorities against racial discrimination, xenophobia and related intolerance, and hate crimes", - "values": [ - "4 - General action" - ] - }, - { - "text": "Continue to take effective measures to ensure the recovery, rehabilitation, and reintegration of child soldiers ", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Step up legal protection to Malagasy women to protect against violence, including by making marital rape a criminal offence", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Conclude the ratification of the remaining instruments in particular the Convention against Torture, the International Convention for the Protection of All Persons from Enforced Disappearance and the Convention on the Elimination of All Forms of Discrimination against Women, which have been pending since the 2011 review", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Ensure a more comprehensive application of initiatives designed to improve the situation of people with disabilities, including the Livelihood Empowerment Against Poverty programme", - "values": [ - "4 - General action" - ] - }, - { - "text": "Improve the social protection and living conditions of the most vulnerable groups of the population", - "values": [ - "4 - General action" - ] - }, - { - "text": "Consider ratifying the core international human rights treaties: ICESCR, ICCPR, ICERD, CEDAW and CAT ", - "values": [ - "3 - Considering action" - ] - }, - { - "text": "Continue to take appropriate steps and allocate sufficient resources to socioeconomic rights for vulnerable groups", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Ratify ICCPR-OP2, and formalize, in the meantime, the current de facto moratorium on the death penalty", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Enact as soon as possible the statute of the Human Rights Commission to make it operational", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Develop a national strategy on water and support the establishment of regional instruments for the management of water and hydro-electrical energy to contribute to improve cooperation between the country and its neighbours", - "values": [ - "4 - General action" - ] - }, - { - "text": "Intensify awareness-raising campaigns to combat racial, Islamophobic and xenophobic stereotypes and condemn strongly and publicly hate speech in the public sphere", - "values": [ - "4 - General action" - ] - }, - { - "text": "Carry out immediate, impartial and exhaustive investigations into all allegations of torture, ill-treatment and other human rights violations, in particular in detention centres, as recommended previously, and prosecute those responsible", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Consider signing and ratifying the ICRMW ", - "values": [ - "3 - Considering action" - ] - }, - { - "text": "Reinforce policies to fight against human trafficking and migrant smuggling", - "values": [ - "4 - General action" - ] - }, - { - "text": "Take further efforts aimed at broad social inclusion, in particular in the labour market, of Roma populations ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Strengthen normative standards and measures aimed at eliminating domestic violence perpetrated against women", - "values": [ - "4 - General action" - ] - }, - { - "text": "Consider the appropriateness of taking measures to have the National Human Rights Commission accredited by the International Coordinating Committee of National Institutions for the Promotion and Protection of Human Rights.", - "values": [ - "3 - Considering action" - ] - }, - { - "text": "Ratify the Rome Statute of the International Criminal Court and fully align its national legislation with all obligations under the Rome Statute", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Protect freedom of assembly and hold accountable any police officers involved", - "values": [ - "4 - General action" - ] - }, - { - "text": "Introduce school programmes for children with learning or other disabilities ", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Reform the legal framework on freedom of assembly and association to guarantee the full exercise of this right both for individuals and legal entities", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Repeal provisions of the Criminal Code, which criminalize sexual conduct between persons of the same sex", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Take additional measures, including providing resources and assistance, access to courts and appropriate punishment for violations, to tackle sexual and intimate partner violence and exploitation of women and girls", - "values": [ - "4 - General action" - ] - }, - { - "text": "Protect Christian and other minority rights and promote interfaith dialogue among religious groups in Indonesia", - "values": [ - "4 - General action" - ] - }, - { - "text": "San Marino is indeed committed to collaborating with the United Nations Human Rights Treaty Monitoring Bodies, although the shortage of human resources within the San Marino Administration will not allow to submit more than one report per year.", - "values": [ - "4 - General action" - ] - }, - { - "text": "Promulgate more laws and regulations on economic, social and cultural rights, to improve the legal framework concerning the exercise of human rights", - "values": [ - "4 - General action" - ] - }, - { - "text": "Strengthen their efforts to ensure that the treatment of prisoners is in line with international standards", - "values": [ - "4 - General action" - ] - }, - { - "text": "Incorporate in the criminal code and the military criminal code clear provisions that prohibit all forms of torture", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Promote the relevant legislative review to encourage agreements between individuals and financial institutions in order to avoid evictions", - "values": [ - "4 - General action" - ] - }, - { - "text": "Take immediate action to bring to an end the prevailing impunity for human rights violations in the country", - "values": [ - "4 - General action" - ] - }, - { - "text": "Prohibit corporal punishment, including in the family, in line with the recent recommendation of the Committee on the Rights of the Child.", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Continue its efforts, in light of of the rights to non-discrimination and equality between men and women, to increase citizens' awareness of the necessity of female education.", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Establish an independent National Human Rights Institution, which can help the government to generate the information necessary for compiling human rights reports", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Intensify efforts to achieve further gains in the areas of poverty reduction, especially focusing on providing necessary resources to realize the right to adequate housing and improving the living conditions of the people in rural areas", - "values": [ - "4 - General action" - ] - }, - { - "text": "Strengthen measures in the promotion of the rights of persons with disabilities in political life", - "values": [ - "4 - General action" - ] - }, - { - "text": "Modify the 2012 law regulating NGOs to harmonize it with its human rights obligations", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Continue reinforcing its efforts by supporting the most vulnerable and less privileged children to complete their studies", - "values": [ - "4 - General action" - ] - }, - { - "text": "Continue to modify and implement its legislation on freedom of expression and freedom of assembly and association in order to fully meet its international human rights obligations by, inter alia, simplifying notification requirements for planned demonstrations in the spirit of peaceful freedom of assembly", - "values": [ - "4 - General action" - ] - }, - { - "text": "Include civil society in following up on the recommendations that will be accepted by Cote d'Ivoire within this periodic review ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Decriminalise defamation and place it under the civil code in accordance with international human rights standards", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Develop sustainable economic policies to reduce extreme poverty, food insecurity and unemployment", - "values": [ - "4 - General action" - ] - }, - { - "text": "Continue with efforts to implement necessary measures with a view to end long-term involuntary homelessness", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Strengthen the protection of foreign workers in the country, including through the revision of relevant legislation on their working conditions ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Envisage extending the mandatory health insurance for civil servants, as necessary, to employees of the private sector ", - "values": [ - "3 - Considering action" - ] - }, - { - "text": "Pursue all efforts to preserve the progress achieved in a number of areas such as culture, education, health and the fight against social inequality ", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Ensure due process of law for detainees, because a fair and independent judicial system is a fundamental pillar of a future democratic and stable Egypt", - "values": [ - "4 - General action" - ] - }, - { - "text": "Consider non-custodial measures for offenders, particularly for women, as a means of reducing overcrowding in prisons and the pressure on reintegration efforts.", - "values": [ - "3 - Considering action" - ] - }, - { - "text": "Continue its measures to further improve the human rights of women ", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Take all necessary measures to protect freedom of religion and belief for persons belonging to all religious groups, including by protecting persons belonging to religious minorities from violence and persecution", - "values": [ - "4 - General action" - ] - }, - { - "text": "Amend the criminal legislation in order to eliminate obstacles to freedom of expression and to freedom of association", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Reconsider any attempt to reimpose capital punishment, with the aim of not reintroducing the death penalty", - "values": [ - "3 - Considering action" - ] - }, - { - "text": "The establishment of an international round table to discuss the interrelation between security and fundamental freedoms.", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Take action to ensure the safety and freedom of action of human rights defenders ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Take all measures necessary to ensure the elimination of violence and discrimination against women, and review its reservation to the Convention on the Elimination of All Forms of Discrimination against Women with a view to withdrawing it ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Eliminate discrimination against women in law and in practice and take action to promote their participation in public life", - "values": [ - "4 - General action" - ] - }, - { - "text": "Assess the additional measures required to eradicate domestic violence as a serious problem in Norway by developing and maintaining a comprehensive database containing information on the victims and perpetrators of domestic violence ", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Continue efforts already embarked upon to ensure protection and promotion of all human rights", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Take further steps to ensure inclusive education and facilitate girls' access to secondary and higher education", - "values": [ - "4 - General action" - ] - }, - { - "text": "Ensure speedy ratification of CRPD, and take steps to ensure full conformity with the principles of the Convention without delay", - "values": [ - "4 - General action" - ] - }, - { - "text": "Proceed with early conclusion of major international human rights treaties, including the Convention on the Rights of Persons with Disabilities", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Adopt the necessary laws to contribute to alleviate the socio-economic conditions of Palestinian refugees", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Adopt necessary legislative measures to halt impunity, with effective punishment of sexual violence and of recruitment of children into armed conflict", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Continue to advance and gradually improve the quality of education provided, as part of the wide programme adopted by Ethiopia to this end ", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Effectively fight against the practice of forced child labour, including by considering taking specific administrative and penal actions towards those officials who, in their respective provinces, incentivize or facilitate the labour of children in cotton fields.", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Re-establish the NHRI as a vital, clearly independent institution with a strong mandate and sufficient capacity and resources to strengthen implementation of human rights in the country ", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Ratify the Agreement on Privileges and Immunities to the International Criminal Court", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Establish and implement, based on the performance assessment of the October 2011 Social Emergency Plan, effective economic strategies for sustainable recovery and development that integrate elements of poverty alleviation and protection of human rights", - "values": [ - "4 - General action" - ] - }, - { - "text": "Establish an independent national human rights institution to lead, coordinate, develop capacity and assist with human rights implementation", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Further enhance engagement with civil society groups registered in the country, including local youth and women's associations, in the promotion and protection of human rights ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Ensure that thorough, prompt, and impartial investigations are carried out in all cases of alleged arbitrary detentions, extrajudicial killings and other excessive use of force by police, and that perpetrators are brought to justice ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Take action with regard to the impediments that Muslim minority women in Thrace may face when sharia law is applied on family and inheritance law matters ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Take all the necessary measures to eliminate sexual violence in the country, including the full prosecution of all reported cases of sexual violence", - "values": [ - "4 - General action" - ] - }, - { - "text": "Address the discrimination faced by persons with disabilities with regards to access to education, employment and healthcare", - "values": [ - "4 - General action" - ] - }, - { - "text": "Develop a mechanism to gather statistics on education of indigenous groups ", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Increase its efforts to make sure that all children have access to primary education, while continuing its partnership for the National School Canteen Programme to address the serious problem of child malnutrition", - "values": [ - "4 - General action" - ] - }, - { - "text": "Intensify training for its police and other enforcement authorities to improve capacities in dealing with the problem of gender violence and trafficking in women and girls ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Take concrete measures to fulfil its obligations under the Convention against Torture and to accept the request of the Special Rapporteur on extrajudicial, summary or arbitrary executions to visit the country", - "values": [ - "4 - General action" - ] - }, - { - "text": "Ratify the Convention on Cybercrime and the Arms Trade Treaty within a reasonable period of time", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Continue reducing the poverty rate in rural areas and the wealth gap between rich and poor and between the urban and rural populations ", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Undertake a dialogue process with indigenous peoples to seek an appropriate consultation mechanism regarding the adoption of measures affecting indigenous peoples", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Ratify CED as soon as possible ", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Develop a clear timeline and benchmarks for the full implementation of Human Rights Council resolution 30/1", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Continue its efforts to involve relevant stakeholders, including civil society, as a partner of the Government in promoting and protecting human rights", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Ensure that no restrictions are imposed on the right to freedom of religion and belief, and guarantee greater respect for the right to freedom of expression and freedom of association", - "values": [ - "4 - General action" - ] - }, - { - "text": "Consider ratifying the 1951 Convention relating to the Status of Refugees and its 1967 Protocol", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Further strengthen measures to protect children and women from all forms of violence", - "values": [ - "4 - General action" - ] - }, - { - "text": "Implement a ban on racist organizations, in line with international obligations ", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Increase support for programmes and initiatives by strengthening partnerships with relevant stakeholders, United Nations programmes and civil society working to introduce family planning in rural areas", - "values": [ - "4 - General action" - ] - }, - { - "text": "Tackle incidences of domestic violence and femicide through a multi-pronged approach, including effective legal measures and social awareness programmes", - "values": [ - "4 - General action" - ] - }, - { - "text": "Accede to the 1951 Convention relating to the Status of Refugees and the 1967 Protocol", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Ensure that indigenous peoples are consulted when considering the viability of remote communities, and that those affected by closures of communities receive transitional support and unimpeded access to ancestral lands", - "values": [ - "4 - General action" - ] - }, - { - "text": "Consider becoming a party to other related human rights instruments, such as the Optional Protocol to the Convention on the Rights of the Child on a communications procedure", - "values": [ - "3 - Considering action" - ] - }, - { - "text": "Strengthen measures to guarantee the right to a nationality and include necessary safeguards to prevent statelessness of those born in the territory of the Dominican Republic ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Ensure early identification of victims of trafficking and provide adequate medical, legal and social assistance, including shelter ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Inform the Council about results achieved and lessons learnt in their mid-term UPR Report on the "Living Without Limits" plan", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Further the promotion and protection of human rights through the consolidation of its domestic human rights institutions with the help of the international community.", - "values": [ - "4 - General action" - ] - }, - { - "text": "Demonstrate the Government's commitment to uphold international human rights standards by ensuring full respect for the rights of citizens to freedom of speech and peaceful assembly", - "values": [ - "4 - General action" - ] - }, - { - "text": "Conclude the work initiated towards establishing an NHRI", - "values": [ - "4 - General action" - ] - }, - { - "text": "Proceed with early ratification of the Convention against Torture and Other Cruel, Inhuman or Degrading Treatment or Punishment, as well as the International Convention for the Protection of All Persons from Enforced Disappearance", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Take suitable action to address discriminatory practices in the engagement with national minorities and, in particular, the double discrimination faced by women from such minority groups", - "values": [ - "4 - General action" - ] - }, - { - "text": "Adopt appropriate policies to extend protection to all ethnic and religious minorities and ensure they enjoy the necessary legal protection in the face of widespread discrimination", - "values": [ - "4 - General action" - ] - }, - { - "text": "Give priority to the objective of attaining an inclusive and equitative education system that affords all citizens of the country access to high quality free primary education", - "values": [ - "4 - General action" - ] - }, - { - "text": "Ratify the ICPPED and adopt implementing legislation, as well as mechanisms to independently investigate and identify perpetrators of those crimes", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Continue its efforts to protect and guarantee the rights of all people, particularly those of children and women, with a view to securing for all citizens just and reasonable access to justice, education, and health care, respecting the importance and role of the family ", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Implement educational measures from early childhood rejecting all types of domestic violence and promote the reporting of cases of domestic violence ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Ratify the Optional Protocol to the Convention against Torture and establish a national preventive mechanism accordingly, and ensure that prompt, thorough and impartial investigations are carried out into all allegations of torture", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Continue the "Educate your Child" programme in the prisons", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Continue with the current efforts to implement the national plan to combat HIV/AIDS", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Continue the implementation of the national strategy on the protection and implementation of living standards of persons with disabilities", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Effectively Implement the three main National Pacts (Zero Hunger Pact, Pact for Security, Justice and Peace, and Fiscal Pact), aimed at improving living conditions of the population in general and in particular of groups living in poverty and extreme poverty", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Strengthen efforts to fulfill its obligations under the Convention for the Elimination of All Forms of Discrimination against Women and the Convention on the Rights of the Child to protect its most vulnerable populations, including women and children, notably in times of crisis", - "values": [ - "4 - General action" - ] - }, - { - "text": "Strengthen measures to prevent all forms of discrimination, ill-treatment or violence against persons with disabilities", - "values": [ - "4 - General action" - ] - }, - { - "text": "Implement measures to protect journalists and human rights defenders, as well as effective policies to guarantee freedom of expression in Paraguay", - "values": [ - "4 - General action" - ] - }, - { - "text": "Introduce the automatic acquisition of citizenship together with birth registration for children of foreign parents whose nationality cannot be passed to them, and facilitate the possibility of judicial review for all naturalisation applications which are denied", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Consider establishing an independent complaint mechanism specifically devoted to allegations of torture and ill-treatment committed by law enforcement, security, military and prison officials ", - "values": [ - "3 - Considering action" - ] - }, - { - "text": "Enhance efforts to provide access to quality education for all", - "values": [ - "4 - General action" - ] - }, - { - "text": "Endeavour to enshrine in its legislation the good current practice of not placing unaccompanied minors in detention ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Build upon its achievement in the area of human rights education and training, particularly for public officials, to strengthen the fight against alleged police violence ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Continue its efforts aimed at combating discrimination and intolerance ", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Establish a policy concerning the return of victims of human trafficking and their rehabilitation and reintegration into the work market", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Create a comprehensive policy on the rights of the child ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Adopt all types of measures to ensure universal birth registration for all children, regardless of the circumstances in which they were born or the civil or immigration status of their parents, while also facilitating the registration of children of underage mothers or mothers living in rural areas ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Adopt policies to facilitate access of descendants of slaves to education and employment under conditions of equality", - "values": [ - "4 - General action" - ] - }, - { - "text": "Adhere to or ratify Protocol No. 12 to the European Convention for the Protection of Human Rights and Fundamental Freedoms concerning the general prohibition of discrimination ", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Continue its efforts to increase international cooperation in order to benefit from other experiences and best practices in the field of combating trafficking in persons", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Enhance the capacity of the National Commission for the Promotion of Equality to follow-up and monitor responses in all cases of racial violence and discrimination", - "values": [ - "4 - General action" - ] - }, - { - "text": "Consider abolishing the death penalty as it negates the right to life and since it has not been used in Barbados for over 30 years ", - "values": [ - "3 - Considering action" - ] - }, - { - "text": "The Government is committed to meeting the needs of all members of RMG [religious minority groups] and ensuring that their rights are exercised in full.", - "values": [ - "4 - General action" - ] - }, - { - "text": "Continue to attach importance to promoting agricultural production and to strengthening international cooperation so as to reduce hunger and poverty and guarantee people's daily necessities ", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Reinforce the capacities of the Ministry of Human Rights and of the Promotion of Liberty. energize the National Commission on Human Rights. harmonize national legislation with international human rights instruments.", - "values": [ - "4 - General action" - ] - }, - { - "text": "Withdraw its reservations to the Convention against Torture", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Further strengthen the role of bodies and institutions with competence to combat discrimination, in particular the Commission for Protection against Discrimination", - "values": [ - "4 - General action" - ] - }, - { - "text": "Continue to address inequalities affecting human rights in the areas of health, education, employment and income that disproportionately affect indigenous peoples and other minority groups", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Ban executions of juvenile offenders, while at the same time providing for alternative punishments in line with the new Iranian Penal Code", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Take steps to ensure protection of the fundamental rights of all individuals born in the Dominican Republic, including the offspring of undocumented foreigners who may be at risk of becoming stateless as a consequence of Constitutional Tribunal ruling 168/13 ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Redouble its efforts in finalizing the Draft Law on the Rights of Persons with Disabilities to guarantee the promotion and protection of rights of disabled persons, in particular to ensure their participation, to increase their employment, and to enhance their rights to education", - "values": [ - "4 - General action" - ] - }, - { - "text": "Continue its efforts to empower women economically, politically and socially, and to take all necessary measures to eliminate all forms of discrimination against women", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Continue strengthening plans to facilitate access to employment for persons who are heads of households", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Continue its efforts to eliminate all forms of discrimination through the implementation of a National Action Plan, especially in the work environment ", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Increase development assistance to reach the target of 0.7 per cent of the gross national product in the interests of the sustainable development of developing countries", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "That a mechanism be established at the federal level to ensure comprehensive and coordinated compliance with international human rights instruments at the federal, local and state levels", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Ratify the Optional Protocol to the International Covenant on Economic, Social and Cultural Rights.", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Take measures to ensure full compliance with the CAT and other international standards regarding the treatment of detainees.", - "values": [ - "4 - General action" - ] - }, - { - "text": "Implement the national disability inclusive policy", - "values": [ - "4 - General action" - ] - }, - { - "text": "Namibia commits herself to promote peace and international cooperation.", - "values": [ - "4 - General action" - ] - }, - { - "text": "Adopt further measures to ensure birth registration of all children ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Ensure that the trial of the Yarran is conducted in a fair and transparent manner, consistent with Iranian law, natural justice and due legal process", - "values": [ - "4 - General action" - ] - }, - { - "text": "Provide adequate resources to the National Human Rights Commission, regardless of the enactment of an amended bill for the establishment and organization of the Commission", - "values": [ - "4 - General action" - ] - }, - { - "text": "Expand the support to international human rights instruments by adhering to the Convention against Torture and the International Convention for the Protection of All Persons from Enforced Disappearance", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Continue to address the problem of children who drop out of school", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Further progress in combating all forms of discrimination, including against LGBT persons, through the introduction and implementation of appropriate legislation, policy and practice", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Provide guarantees for children in detention, including by removing the use of solitary confinement and by separating adults and children", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Implement its vast programme launched for human rights promotion, with the support of the international community. ", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Investigate and prosecute those who committed human rights violations on both sides of the conflict ", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Ensure freedom of expression and media freedom, including Internet freedom by bringing its national legislation fully in line with international standards, including by decriminalizing defamation, misinformation and related offences in relevant national laws", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Submit its first periodic report without further delay and ensure full implementation of CEDAW and other international human rights conventions to which Afghanistan is a party.", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Raise the minimum age of criminal responsibility (which is now: 7 years)", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Formalize its acceptance of the special procedures by issuing a standing invitation to all special procedures", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Ensure the effective implementation of the Convention on the Rights of the Child (CRC), especially the rights to education and health ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Continue efforts to reform the education system because it is an important element to reduce poverty", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Establish dedicated mechanisms for the provision of remedies to victims of racial discrimination and facilitate their access to the justice system, and to ensure the reporting of hate crimes", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Take further steps to give constitutional recognition to indigenous peoples and ensure the protection of their human rights ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Ensure full respect of human rights, including the right to privacy and the right to freedom of expression, in all aspects of internet regulation, and adherence of any restrictions of those rights to the principles of legality, necessity and proportionality", - "values": [ - "4 - General action" - ] - }, - { - "text": "Consider the possibility of ensuring the implementation of the right to vote for Timorese migrant workers residing abroad", - "values": [ - "3 - Considering action" - ] - }, - { - "text": "Adopt an overall policy and strategy and take action to eliminate gender stereotypes, gaps and all forms of discrimination that women still face", - "values": [ - "4 - General action" - ] - }, - { - "text": "Step up programmes aimed at eradicating poverty and improving social indicators, including in health and education.", - "values": [ - "4 - General action" - ] - }, - { - "text": "Pursue and intensify initiatives in the area of housing", - "values": [ - "4 - General action" - ] - }, - { - "text": "Take urgent measures for the implementation of the recommendations of the UNHCR, the United Nations Human Rights Treaty Bodies and Special Procedures as regards asylum seekers and illegal migrants", - "values": [ - "4 - General action" - ] - }, - { - "text": "Continue strengthening the capacity of Government institutions on human rights and to implement the strategies and plans, especially on child labour", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Repeal all provisions that criminalize same sex relations, including in particular article 16 of the Sexual Offences Act", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Increase the availability of affordable childcare facilities", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Take necessary measures to eradicate violence against women and improve their participation in public life ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Take further measures at the national level to prevent impunity of the perpetrators of the post-election violence", - "values": [ - "4 - General action" - ] - }, - { - "text": "Set a minimum age for criminal responsibility, as well as special procedures for minor offenders", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Adopt a law to prohibit female genital mutilation", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Establish an independent national human rights institution that is compliant with the Paris Principles ", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Complete its transition from a militarized society to a democratic system based on the rule of\nlaw under civilian rule", - "values": [ - "4 - General action" - ] - }, - { - "text": "Abolish all forms of child labour, including bonded labor and take measures to ensure that no person under 18 years of age is allowed to perform hazardous work, in accordance with the ILO Convention No. 138 ", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Share with other countries good practices and achieved developments ", - "values": [ - "1 - Minimal action" - ] - }, - { - "text": "Continue its initiatives aimed at improving the rights of Ugandan women and girls, including through the enforcement of the domestic violence act ", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Promote substantive reforms in the immigration policy, which guarantee its conformity with international standards, revoking measures exposing foreigners to marginalization ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Investigate, in full consultation with stakeholders, the possibility of a universal basic income as a replacement of the existing social protection system", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Seek contributions from the international community in the Government's efforts to promote rights.", - "values": [ - "1 - Minimal action" - ] - }, - { - "text": "Adopt provisions to address the phenomenon of school dropouts particularly among Roma children and children living in rural areas, especially girls.", - "values": [ - "4 - General action" - ] - }, - { - "text": "Take appropriate measures to introduce a law on equality of treatment taking particularly into account the interests of lesbian, gay, bisexual, transgender and intersex minorities, persons with disabilities, women and other vulnerable groups", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Continue to combat poverty and malnutrition, especially among children", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Continue its efforts on the issue of inclusion of children with disabilities in the general school system and reducing the number of schools for children with special educational needs", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Take effective measures to protect all girls and women from all forms of violence and ill treatment, to carry out investigations and to ensure those responsible are punished", - "values": [ - "4 - General action" - ] - }, - { - "text": "Continue with the processes of review and reform of the judiciary so as to guarantee an independent and effective system for all ", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Take all necessary measures to prevent, investigate and prosecute violence against lesbian, gay, bisexual, transgender and intersex persons", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Adopt, as early as possible, a comprehensive law against the trafficking in human beings and to adopt the measures necessary to prevent and combat that scourge", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Provide unhindered access to humanitarian assistance to both its population and foreign nationals", - "values": [ - "4 - General action" - ] - }, - { - "text": "Proceed to the separation of the Ombudsman's Office and the National Human Rights Commission", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Consider ratifying the Optional Protocol to the Convention on the Elimination of All Forms of Discrimination against Women (CEDAW).", - "values": [ - "3 - Considering action" - ] - }, - { - "text": "Accelerate its efforts to strengthen the independence of the ombudsman institution", - "values": [ - "4 - General action" - ] - }, - { - "text": "Ensure conditions for the opposition and human rights activists to freely work and express their views without fear of unsubstantiated prosecution", - "values": [ - "4 - General action" - ] - }, - { - "text": "Address the marginalization suffered by persons with disabilities in society, especially children and girls as regards employment, education, and the basic right of access to public buildings", - "values": [ - "4 - General action" - ] - }, - { - "text": "Continue the protection of the rights of migrants", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Enhance its efforts with respect to the freedom of the press, freedom of expression and freedom of assembly and association", - "values": [ - "4 - General action" - ] - }, - { - "text": "Take all necessary steps to address xenophobia through legislation, appropriate public awareness programmes and promotion of tolerance and cultural diversity, and adopt a national action plan to combat racism, racial discrimination, xenophobia and related intolerance", - "values": [ - "4 - General action" - ] - }, - { - "text": "Intensify ongoing sensitization activities, carried out together with members of civil society, towards the reduction, or even the eradication in the future, of female genital mutilation ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Put forward more efforts to eliminate all forms of violence and discrimination against women and to ensure greater women's empowerment, representation and advancement in all sectors to comply with the new Constitution", - "values": [ - "4 - General action" - ] - }, - { - "text": "As regards Recommendations 70.47 to 70.53, which refer to decriminalizing consensual same sex relations and discrimination against gay, lesbian, bi-sexual and trans-gender persons, the delegation recalled that Guyana did attempt to include "sexual orientation" in the anti-discrimination clause in the revised constitution but that this was defeated in 2003. Whilst Guyana did not discriminate against persons based on their sexual orientation, it did not deny that interpersonal prejudices existed, based on cultural and religious beliefs. The delegation indicated that Guyana noted these recommendations and voluntarily committed to hold consultations over the next two years and to reflect the outcome of this democratic process in its domestic laws. Recommendations 70.54 and 70.55 were also noted.", - "values": [ - "3 - Considering action" - ] - }, - { - "text": "Reinforce measures to combat and prevent xenophobia and related violence ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Enhance efforts to further promote economic and social rights, as well as the rights of vulnerable groups, including women, children and people with disabilities", - "values": [ - "4 - General action" - ] - }, - { - "text": "Continue the implementation of measures to improve the capacity and effectiveness of its judicial system ", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Improve the situation of the Roma population, particularly as concerns compensation to women subjected to forced sterilization prior to 2004", - "values": [ - "4 - General action" - ] - }, - { - "text": "Take effective measures to realize the rights enshrined in the Convention on the Rights of Persons with Disabilities, which was ratified in 2011", - "values": [ - "4 - General action" - ] - }, - { - "text": "Step up its efforts geared at completing its accession to CEDAW-OP", - "values": [ - "4 - General action" - ] - }, - { - "text": "Reinforce the independence of the judiciary by increasing institutional and material support for the justice system and putting an end to the provisional nature of judicial appointments ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Sustain the initiatives to promote gender parity", - "values": [ - "4 - General action" - ] - }, - { - "text": "Adopt an official moratorium aiming at the formal abolition of the death penalty in the country and to ratify the Second Optional Protocol to the International Covenant on Civil and Political Rights", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Increase measures on the right to education to ensure equal access to education for all children ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Provide information concerning the whereabouts of detainees, to their families and legal defenders and to provide access to them", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Continue to improve the measures so that adequate access to health care and rehabilitation services needed are in place for detained psychiatric patients", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Continue to promote its poor people socio-economic policies for the improvement of its people ", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Ratify the Protocol to the African Charter on Human and Peoples' Rights on the Rights of Women in Africa and enact and enforce laws and regulations that prohibit all forms of violence against women", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Adopt measures, compatible with international norms, to guarantee the freedom of information", - "values": [ - "4 - General action" - ] - }, - { - "text": "On the recommendations relating to the gender equality and the fight against violence against women, the delegation stated that the Government was committed to continue its social and institutional reforms so that women were protected against all forms of violence.", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Pursue a policy of protecting and promoting the rights of migrant workers", - "values": [ - "4 - General action" - ] - }, - { - "text": "Ensure that all allegations of enforced disappearances, torture or any other form of ill-treatment are independently, promptly and thoroughly investigated, and perpetrators are brought to justice in accordance with international rule of law standards", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Increase efforts to identify and provide assistance to victims of human trafficking and implement and provide adequate financing for the national strategy to combat human trafficking", - "values": [ - "4 - General action" - ] - }, - { - "text": "Incorporate the provisions of the Convention on the Rights on the Child, which has been ratified by Palau, into its domestic legislation", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Remove from the legislation discriminatory provisions based on race, sex or sexual orientation, and adopt comprehensive anti-discrimination legislation ", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "The Government was committed to creating about 10,000 jobs per year.", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Continue its efforts aimed at protecting and promoting human rights and fundamental freedoms and, in this regard, adopt all necessary measures to ensure better harmonization between its national legislation and the international instruments to which Malta is a party.", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Cooperate closely with UNICEF and OHCHR in the protection of the rights of children", - "values": [ - "4 - General action" - ] - }, - { - "text": "Ensure the collection of necessary statistical data disaggregated by ethnicity and gender in order to measure, monitor, and remedy ethnic discrimination as proposed by the independent expert on minority issues ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Fully implement legislation, prohibiting female genital mutilation and violence against women and widely disseminate knowledge of it through awareness raising campaigns.", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Ratify the Rome Statute of the International Criminal Court in its 2010 version, including the Kampala amendments on the crime of aggression, and review its national legislation in order to ensure full alignment with the Statute", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Continue efforts in favour of the rights of women and children and adopt all necessary measures to efficiently combat domestic violence ", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Move towards the adoption of a comprehensive law against all forms of discrimination, including discrimination on the basis of sexual orientation and gender identity, that punishes and prohibits all forms of discrimination in public and private settings", - "values": [ - "4 - General action" - ] - }, - { - "text": "Adopt effective measures to strengthen the system for the protection and promotion of the rights of women and children", - "values": [ - "4 - General action" - ] - }, - { - "text": "Fully implement the National Strategy for the Protection of the Rights of the Child through plans of action", - "values": [ - "4 - General action" - ] - }, - { - "text": "Take systematic action on the ground for the prevention and elimination of sexual violence against women and girls. ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Establish a mechanism to follow up and evaluate the implementation of the mentioned national plan of action for children for the period 2003-2010 ", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Consider acceding to the Convention against Torture and Other Cruel, Inhuman or Degrading Treatment or Punishment ", - "values": [ - "3 - Considering action" - ] - }, - { - "text": "Increase its efforts to counter hate-speech and incitement to violence", - "values": [ - "4 - General action" - ] - }, - { - "text": "Take steps to ensure the acceptance and the general public knowledge of the existing law on anti-discrimination and to increase the practical use of the law", - "values": [ - "4 - General action" - ] - }, - { - "text": "Criminalize torture", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Consider withdrawing its reservations to article 4 (a) of ICERD ", - "values": [ - "3 - Considering action" - ] - }, - { - "text": "Increase its capacity to prevent child prostitution, protect victims, continue to raise awareness and prosecute perpetrators ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Continue efforts to strengthen existing mechanisms to better protect women and children and prevent physical and sexual abuse and discrimination, including through additional training programmes to identify those most at risk of abuse ", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Provide adequate health care for children with low economic status, as well as children who are not documented", - "values": [ - "4 - General action" - ] - }, - { - "text": "Adopt additional measures to ensure the effective application of the law to eliminate violence against women and to ensure the protection of women's rights ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Develop and implement policy to address child mortality, malnutrition, health, education and access to sanitation, of indigenous people", - "values": [ - "4 - General action" - ] - }, - { - "text": "Continue on the path of strengthening the protection of children, particularly by continuing the fight against child begging, accelerating the modernization program of the daaras and facilitating access to justice for minors", - "values": [ - "4 - General action" - ] - }, - { - "text": "Continue to strengthen its legal framework through expediting the ratification of the Convention against Torture and Other Cruel, Inhuman or Degrading Treatment or Punishment. In this regard, Indonesia together with the core group of the Convention against Torture Initiative (CTI) stands ready to support Papua New Guinea in this ratification process", - "values": [ - "4 - General action" - ] - }, - { - "text": "Remove the remaining reservation to the Convention on the Elimination of All Forms of Discrimination against Women and align its national legislation, including the Civil Code, with this Convention to give women equal rights in matters of inheritance and guardianship of children ", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Implement comprehensive national policies and strategic plans to improve equal employment opportunities", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Increase the mandate and powers of the Special Office for Children to provide advisory or legal assistance in a wider range of cases", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Consider abolition of the death penalty", - "values": [ - "3 - Considering action" - ] - }, - { - "text": "Immediately close the prison in Guantanamo and cease the illegal detention of terrorism suspects at its military bases abroad", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Expeditiously conclude and approve the draft law for moral and material reparations to victims of violations of human rights", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Establish an immediate moratorium on the use of the death penalty and commute all current death sentences", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Respond positively to pending requests for special procedure visits and extend a standing invitation to special procedure mandate holders", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Undertake further work to address access to profits from natural resources, including the role of the corporate sector in social development", - "values": [ - "4 - General action" - ] - }, - { - "text": "Continue to take steps to uphold freedom of expression by reviewing restrictive articles of its recent Cyber Crime law and consider updating the 1980 Media Law, ensuring that new legislation be aligned with article 19 of the ICCPR ", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Work to combat the danger of Islamophobia in society and political discourse and establish a comprehensive system for recording and monitoring racist crimes committed in Austria ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Make better use of the Commission's work as a contribution to improving the rule of law.", - "values": [ - "4 - General action" - ] - }, - { - "text": "Sign and ratify the CPED", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Develop public awareness campaigns to combat manifestations of discrimination and racism, including xenophobia, homophobia , anti-Semitism, and other forms of intolerance in order to further protect and strengthen the rights of members of minority groups, including Lesbian, Gay, Bisexual, and Transgender individuals and the Roma community", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Accelerate the process for the ratification of international human rights instruments to which it is not yet a party", - "values": [ - "4 - General action" - ] - }, - { - "text": "Enact relevant legislation to provide for necessary autonomy and independence of the National Human Rights Commission in accordance with the decision of the Supreme Court of Nepal", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Increase efforts to ensure universal access to health care ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Establish a moratorium on the death penalty, in accordance with the resolutions of the General Assembly", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Strengthen its policy on the rights of the child, with attention to the Guidelines for the Alternative Care of Children", - "values": [ - "4 - General action" - ] - }, - { - "text": "Recognize the centrality of human rights and the rule of law in its approach to improving public security", - "values": [ - "4 - General action" - ] - }, - { - "text": "Consider launching an action plan to combat domestic violence in Greenland ", - "values": [ - "3 - Considering action" - ] - }, - { - "text": "Ensure the effective implementation of the recently adopted legislation aimed at fighting discrimination and violence against women", - "values": [ - "4 - General action" - ] - }, - { - "text": "Explicitly prohibit by law and criminalize the use of children in hostilities by the armed forces and the recruitment and use of children in hostilities by non-State armed groups ", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Prohibit discrimination and the use of stereotypes against minority groups, so as not to qualify them publicly as "enemies", particularly in the media ", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Continue to strengthen its efforts in tackling poverty and enhancing access to basic social services such as health and education, especially for those living in rural areas", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Take the measures necessary to make sure that the upcoming presidential and legislative elections present all guarantees of freedom, regularity and transparency, and, to this end, notably accept the presence of international observers ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Take all necessary measures to provide IDPs with needed assistance ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Ratify the International Convention for the Protection of All Persons from Enforced Disappearance signed in 2008, as well as the Rome Statute signed in 2000", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Prioritize education for all ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Promote a safe, enabling environment for the work of human rights defenders through the adoption of a charter for the protection and recognition of human rights defenders", - "values": [ - "4 - General action" - ] - }, - { - "text": "Implement the law on violence against women swiftly", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Review the current maternity health care policies and introduce the necessary changes to ensure access to medical facilities for pregnant women throughout the country", - "values": [ - "3 - Considering action" - ] - }, - { - "text": "Adopt further measures to provide police, prison and judicial staff with human rights training with specific focus on protection of human rights of women, children, ethnic or national minorities as well as of persons of minority sexual orientation or gender identity and strengthen the accountability of such personnel for their proper conduct, particularly when dealing with cases of hate crimes ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Promote the development of human rights norms", - "values": [ - "4 - General action" - ] - }, - { - "text": "Put in place the transitional institutions foreseen in the Maputo Agreement, and to hold credible elections leading to the restoration of democracy and the rule of law", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Envisage the gradual ratification of other main international human rights instruments, first of all the two International Covenants, on Civil and Political Rights and on Economic, Social and Cultural Rights, and the International Convention on the Elimination of All Forms of Racial Discrimination ", - "values": [ - "3 - Considering action" - ] - }, - { - "text": "Respect citizens' constitutional right to recall a referendum by allowing the collection of signatures to proceed", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Ratify international instruments in the area of human rights that have yet to be ratified by Gabon, such as the optional protocols to the International Covenant on Civil and Political Rights", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Improve conditions in Georgian prisons, including in relation to overcrowding and inadequate health care ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Define the technical and financial needs which are required to help the country to live up to its international obligations under the main human rights instruments ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Repeal all criminal provisions dealing with freedom of expression and freedom of assembly to comply with international human rights standards", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Ensure that birth registration is effectively implemented and enforced by allocating sufficient human and financial resources to the National Identity and Civil Registry Department to promote the effectiveness of birth registration systems and processes", - "values": [ - "4 - General action" - ] - }, - { - "text": "Develop public awareness and education programs that advance tolerance on the grounds of sexual orientation and gender identity", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Continue implementation of social programs to carry out information and education activities with regard to people with disabilities ", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Respect the absolute prohibition on torture and take measures to guarantee punishment of all perpetrators", - "values": [ - "4 - General action" - ] - }, - { - "text": "Address the issue of the election of women to parliament (the Shura Council)", - "values": [ - "4 - General action" - ] - }, - { - "text": "Strengthen police training on how to investigate sexual and gender-based violence, including against children, and ensure that perpetrators of these acts are appropriately prosecuted", - "values": [ - "4 - General action" - ] - }, - { - "text": "Suppress all restrictions to freedom of expression and freedom of the press", - "values": [ - "4 - General action" - ] - }, - { - "text": "Speed up the process of ratification of the Second Optional Protocol to the International Covenant on Civil and Political Rights", - "values": [ - "4 - General action" - ] - }, - { - "text": "Speed up measures aimed at ratifying the Optional Protocol to CEDAW", - "values": [ - "4 - General action" - ] - }, - { - "text": "Adopt measures to ensure the effective implementation of legislative guarantees and programmes for the protection of witnesses and victims.", - "values": [ - "4 - General action" - ] - }, - { - "text": "Further progress in the fight against all forms of discrimination and violence against women, putting into operation the Authority for Gender Equality and Action against All Forms of Discrimination", - "values": [ - "4 - General action" - ] - }, - { - "text": "Continue its momentum on legislations and judiciary reforms toward strengthening the rule of law state, good governance and broader participation of people in socio-economic decision-making processes and human rights protection and promotion in the country", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Amend the penal code and the press law to remove criminal penalties for alleged libel and insult offences, as accepted by Bahrain during its last universal periodic review", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Strengthen prevention and monitoring measures in the health sector", - "values": [ - "4 - General action" - ] - }, - { - "text": "Set up an alternative service for conscientious objectors to the compulsory military service in order to guarantee their right to freedom of expression", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Assess the compatibility of its policies and laws with its international obligations including all core principles of human rights to which Hungary is a party", - "values": [ - "3 - Considering action" - ] - }, - { - "text": "As almost 90 per cent of children in Benin have unfortunately been victims of violence at school, organize a national campaign for raising awareness against these unacceptable offences", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Review reservations to CEDAW", - "values": [ - "3 - Considering action" - ] - }, - { - "text": "Take effective steps to address educational needs of disabled children", - "values": [ - "4 - General action" - ] - }, - { - "text": "Ensure the safety of drinking water by promoting the construction of a monitoring network for the safety of drinking water ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Continue the reforms of the judicial system already initiated and strengthen measures aimed at combating behaviour in the judiciary that may impede independent, impartial and adequate investigations and trials", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Integrate the various regional and international human rights instruments to which it is a party concerning the death penalty into its domestic legislation ", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Take further measures towards combating slavery and in particular investigate allegations of slavery and prosecute and punish the perpetrators of that offence", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Continue raising awareness and promoting tolerance and diversity in society", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Take measures to foster a safe, respectful, enabling environment for civil society, including through the removal of legal and policy measures, which unwarrantedly limit the right to association", - "values": [ - "4 - General action" - ] - }, - { - "text": "Recognise the birth right of the Palestinian people to self-determination and take concrete measures for the establishment of their independent State with Jerusalem as its capital", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Continue its efforts so as to realize the right to work, including through technical and vocational education and training", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Adopt effective measures to combat the culture of violence and impunity and to establish an independent and adequately resourced national preventive mechanism according to OP-CAT requirements ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Decriminalise same-sex activities in accordance with international human rights standards", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Raise the legal age of marriage for women and men to 18 years", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Continue its efforts to adopt a development policy to reduce poverty in order to protect and promote human rights", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Consider the possibility of ratifying ILO Convention No.169", - "values": [ - "3 - Considering action" - ] - }, - { - "text": "Ensure the right to health, and an adequate standard of living for the First Nations, Metis and Inuit ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Adopt legislation on the National Preventative Mechanism in line with international standards and fully implement it ", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Adopt the draft legislation on the protection of the rights of persons with disabilities and deploy the necessary measures for its implementation ", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Introduce an immediate formal moratorium on the death penalty as a first step towards its abolition, while commuting the existing sentences to life imprisonment terms", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "In the framework of reinforcing its pioneering policies to promote women's rights, continue its efforts aimed at prohibiting early marriages of girls, taking into account that women represent half the population.", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Take steps for combating impunity, enacting justice and ensuring rule of law in Azerbaijan, particularly to examine the conformity of the act of pardon of cruel murderer Ramil Safarov with the national legislation and international obligations of Azerbaijan as an act that encourages murder on an ethnic base, particularly killing Armenians inside the country and abroad", - "values": [ - "4 - General action" - ] - }, - { - "text": "Impose a formal moratorium on capital punishment with a view to abolishing it entirely in line with General Assembly resolutions 62/149 and 63/168 and the Second Optional Protocol to ICCPR ", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Continue the policy of expanding opportunities in the existing legislation and mechanisms of influence of civil society in decision-making process ", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Expedite the process for drafting and adopting legislation on the punishment of torture", - "values": [ - "4 - General action" - ] - }, - { - "text": "Intensify its efforts for the implementation of the Action Plan for the National Reconstruction and Development of Haiti, the National Strategy for Education for all and the training of Magistrates , the judicial authorities and law order officials including on human rights and request the necessary financial and technical assistance", - "values": [ - "4 - General action" - ] - }, - { - "text": "Implement effectively the new legal framework to guarantee women a life free from violence, providing all necessary resources to implement programmes for the attention of victims and to undertake training activities on violence and discrimination against women", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Continue strengthening its successful social programmes such as family and health-care cards for poor households, which enable millions of Indonesians to access education and health programmes", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Continue consultations aimed at establishing a national disability council and develop a clear and integrated strategy on rehabilitation needs", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Continue the adoption and implementation of public policies aimed at protecting persons with disabilities and ensure their equal access to dignified housing, employment and health ", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Proceed with the adaptation of legislation in all its national territory, in conformity with the provisions of the Second Optional Protocol to the International Covenant on Civil and Political Rights, signed and ratified by the country", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Acknowledge publicly the work of human rights defenders and trade unionists as legitimate and refrain from making public statements that could be seen as delegitimizing these groups or linking them with illegal guerrilla groups.", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Take further measures and strengthen its legislation to prevent and punish all violence against women and girls, particularly sexual abuse and domestic violence", - "values": [ - "4 - General action" - ] - }, - { - "text": "Sign and ratify the Rome Statute of the International Criminal Court at an early stage", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Abide only by internationally agreed principles of international law. in this regard, capital punishment does not fall within such agreed norms, the imposition of capital punishment is the prerogative of individual States.", - "values": [ - "4 - General action" - ] - }, - { - "text": "Demonstrate its commitment to coordinating with civil society, including NGOs, academics, and research institutions, as it develops and implements domestic human rights policy.", - "values": [ - "4 - General action" - ] - }, - { - "text": "Take steps to ensure that the housing projects under its programme for 2015-2019 are successfully implemented", - "values": [ - "4 - General action" - ] - }, - { - "text": "Take further efforts in addressing the problem of unemployment, especially among young\npeople", - "values": [ - "4 - General action" - ] - }, - { - "text": "Recommended ensuring that men and women enjoy the same rights with respect to marriage, including the selection of spouse, dissolution of the marriage, child custody and inheritance.", - "values": [ - "4 - General action" - ] - }, - { - "text": "Develop and adopt legislation in the area of protection of the rights of migrants, refugees, asylum seekers and stateless persons in accordance with relevant international standards", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Ensure adequate financial resources, both from the national budget as well as through regional and international cooperation, for the implementation of the Strategy for the Inclusion of Romanian Belonging to Roma Minority ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Pursue their efforts to seek appropriate responses to violence against women, in particular through the reinforcement of awareness-raising and prevention activities ", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Put in place independent inquiries on the use of excessive force during deportations ", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Strengthen its efforts to combat ill-treatment of and violence against children, and provide street children with the necessary protection, as well as the housing, medical services, education and access to social services they need", - "values": [ - "4 - General action" - ] - }, - { - "text": "Facilitate shortly the visit of the Special Rapporteur on the situation of human rights defenders", - "values": [ - "4 - General action" - ] - }, - { - "text": "Consider the creation of an ombudsman for children\u2019s rights in order to further advance the status of children", - "values": [ - "3 - Considering action" - ] - }, - { - "text": "Consider withdrawal of reservations with respect to the International Covenant on Economic, Social and Cultural Rights with regard to the Netherlands Antilles.", - "values": [ - "3 - Considering action" - ] - }, - { - "text": "Step up its efforts to ensure the implementation of the First Plan of Action for the National Strategy for the Protection of the Rights of Child 2012 - 2015", - "values": [ - "4 - General action" - ] - }, - { - "text": "Take additional steps to strengthen the sexual and reproductive health and rights of girls and women", - "values": [ - "4 - General action" - ] - }, - { - "text": "Actively implement existing legislation and strategies on violence against children and arrange an adequate juvenile justice system, with emphasis on raising the minimum age of criminal responsibility ", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Intensify its efforts to combat, in particular, the worst forms of child labour in line with Philippine's obligations under the ILO Convention No. 182 on the Prohibition and Immediate Action for the Elimination of the Worst Forms of Child Labour as well as No. 138 on Minimum Age for Admission to Employment ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Continue its efforts to prevent domestic violence, notably by reinforcing the legal framework and increasing the protection of victims and the prosecution of reported cases", - "values": [ - "4 - General action" - ] - }, - { - "text": "Review its policy with respect to the ratification of ILO Convention No. 111", - "values": [ - "3 - Considering action" - ] - }, - { - "text": "Do not sentence minors to capital punishment", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Adopt a law specifically classifying the various manifestations of racial discrimination as punishable acts", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Bring an end to the detention of migrant children as well as adults in a vulnerable situation, such as pregnant women and persons with disabilities", - "values": [ - "4 - General action" - ] - }, - { - "text": "Improve conditions in detention centres and avoid overcrowding, as well as the detention of migrants", - "values": [ - "4 - General action" - ] - }, - { - "text": "Ireland has chosen to prepare and submit a voluntary interim report on Ireland's progress in implementing its commitments", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Strengthen relevant provisions for the promotion of women's rights, notably for their participation in political life", - "values": [ - "4 - General action" - ] - }, - { - "text": "Further fight all forms of violence against children and women", - "values": [ - "4 - General action" - ] - }, - { - "text": "Continue its good efforts to address violence against women", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Continue the efforts and successes achieved by Government institutions in raising human rights awareness among its civil servants, and enhance the level of judicial and legal training studies within the framework of international treaties ", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Review its mandatory detention regime of asylum-seekers, limiting detention to the shortest time reasonably necessary ", - "values": [ - "3 - Considering action" - ] - }, - { - "text": "Guarantee freedom of the press and therefore to refrain from implementing more restrictive legal measures and policies", - "values": [ - "4 - General action" - ] - }, - { - "text": "Strengthens technical cooperation with the Office of the High Commissioner for Human Rights in various relevant fields", - "values": [ - "4 - General action" - ] - }, - { - "text": "Call upon relevant United Nations agencies and organizations, in particular UNICEF, to provide technical assistance to build its capacity to promote gender equality, make women more autonomous, protect children in the country and set up effective institutional mechanisms for birth registration", - "values": [ - "1 - Minimal action" - ] - }, - { - "text": "Incorporate a legal definition of the child, a minimum age for criminal responsibility and sexual consent, and enforce the law on the minimum age of marriage, as recommended by the Committee on the Rights of the Child, and develop and implement national legislation which criminalizes and penalizes the distribution, sale and display of child pornography", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Ensure the independence and impartiality of the judiciary, in particular by fighting corruption, and enable victims to defend their rights in court, by taking measures to strengthen respect for the rights of the defence and transparency of judicial proceedings", - "values": [ - "4 - General action" - ] - }, - { - "text": "Continue consolidating essential social programmes in the fight against poverty and social exclusion ", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Complete the drafting of the anti-discrimination act as soon as possible to ensure that Roma will not be discriminated in the field of employment, health care, education, housing and the administration of Justice.", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Ensure a participatory and inclusive process with civil society, including independent nongovernmental organizations, in accordance with the right to freedom of association, in the follow-up of universal periodic review recommendations ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Strengthen the legal framework in order to reduce the adverse effects affecting victims of domestic violence, in particular women", - "values": [ - "4 - General action" - ] - }, - { - "text": "Approve the draft bill leading to the complete abolition of the death penalty ", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Continue efforts to enhance the empowerment of women and the elimination of discrimination and violence against women", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Consider the possibility of adopting legislation which will promote gender equality, and to consider the adoption of legislation to provide equality of rights and opportunities.", - "values": [ - "3 - Considering action" - ] - }, - { - "text": "Continue to strengthen its system to promote and protect human rights paying special attention to the social protection of the population", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Continue the work to bringing the national legislation in line with the international commitments", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Increase the minimum age for admission to employment to 16 and prohibit all hazardous forms of labour for children under 18 years old", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Ensure that measures are in place to fight and eradicate child labour ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Continue to take measures for the increased protection of the rights of migrant workers ", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Specifically, to meet the commitments thus undertaken, the Government intends to draw up and broadly introduce social safety nets as an original mechanism providing social protection", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Amend the Non-Governmental Organizations Act, adopted in January 2016, which restricts the right to freedom of association, to bring it into conformity with the Constitution and the International Covenant on Civil and Political Rights", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Consider the introduction of a systematic appeal system with suspensive effect following a death penalty conviction in first instance", - "values": [ - "3 - Considering action" - ] - }, - { - "text": "Strive to move forward its reform programme in order to restore democracy as soon as possible", - "values": [ - "4 - General action" - ] - }, - { - "text": "Adopt and implement a national plan of action to prevent and combat child labour ", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Ratify the second Optional Protocol to ICCPR ", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Take all measures to hold free and fair elections in 2013", - "values": [ - "4 - General action" - ] - }, - { - "text": "In line with ongoing efforts in the field of sexual and reproductive health, take measures to combat violence against women and promote gender equality", - "values": [ - "4 - General action" - ] - }, - { - "text": "Continue to assist, when requested, Aruba, Curaçao and Sint Maarten to develop human rights institutions, laws and policies ", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Accede or ratify the following international instruments: International Convention for the Protection of All Persons from Enforced Disappearance, Convention on the Elimination of All Forms of Discrimination against Women, Convention against Torture and Other Cruel, Inhuman or Degrading Treatment or Punishment and the Palermo Protocol to Prevent, Suppress and Punish Trafficking in Persons, Especially Women and Children", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Undertake a comprehensive set of measures to tackle racism and racial discrimination and to combat more resolutely all its forms and manifestations ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Give effect to the provisions of CAT in national legislation ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Make efforts to enhance security in the schools in order to increase the participation of children in the education system", - "values": [ - "4 - General action" - ] - }, - { - "text": "Enhance efforts to further strengthen democratic institutions in the country ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Continue with its religious education programmes in public schools ", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Eliminate all forms of discrimination against girls, and ensure gender mainstreaming in all anti-discrimination policies and programmes ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Review the News Media Law and the Printing and Publication Enterprise Law of 2014, in consultation with media representatives, in order to bring it in conformity with international standards regarding freedom of expression", - "values": [ - "3 - Considering action" - ] - }, - { - "text": "Increase efforts to abolish child labour, also by conducting systematic labour inspections", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Bring legislation in line with article 19 of ICCPR by doing away with censorship and penalties against organs of the press and ensuring that journalists may safely exercise their functions", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Continue cooperation with civil society organizations to reduce the phenomena of violence against women ", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Adopt specific legislation criminalizing acts of domestic and sexual violence, including marital rape, investigate the incidents and ensure adequate remedies for victims", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Consider the possibility of ratifying CAT, CED, and ICRMW ", - "values": [ - "3 - Considering action" - ] - }, - { - "text": "Consider amending discriminatory provisions and administrative regulations relating to family, marriage, divorce and share of marital property, with the aim to eliminating discrimination against women", - "values": [ - "3 - Considering action" - ] - }, - { - "text": "Review article 16 (4) (c) of its Constitution to ensure that such a provision is not discriminatory against women ", - "values": [ - "3 - Considering action" - ] - }, - { - "text": "Seek from the international community and the relevant United Nations agencies the technical and financial assistance needed to help the Government to overcome challenges and the constraints listed in paragraphs 98 to 107 of the national report.", - "values": [ - "1 - Minimal action" - ] - }, - { - "text": "Consider accession to the International Convention on the Protection of the Rights of All Migrant Workers and Members of Their Families and ILO Convention No. 189", - "values": [ - "3 - Considering action" - ] - }, - { - "text": "Step up its efforts to ensure that human rights defenders are protected and allowed to conduct their work without hindrance, intimidation or harassment both at the national and local level ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Continue its efforts to combat all forms of discrimination and promote equality", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Effectively implement the law on violence against women", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Further reinforce efforts to immediately disband and disarm all paramilitary groups, including those that regrouped under different guises, and hold them accountable for their actions.", - "values": [ - "4 - General action" - ] - }, - { - "text": "Prevent impunity for crimes against journalists and media workers", - "values": [ - "4 - General action" - ] - }, - { - "text": "Take steps to reduce and prevent trafficking and provide adequate incentives and protection to victims", - "values": [ - "4 - General action" - ] - }, - { - "text": "Continue policies to reduce poverty and eradicate malnutrition and food shortages", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Undertake reform of the judiciary by revising the law on the statute of the Magistrates ", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Establish a system for clear registration of victims of trafficking in persons and spare no efforts to combat this evil ", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Expedite the ongoing process and establish a clear timeline to establish a truth-seeking commission and an Office on Reparations as well as a special court to investigate allegations of serious human rights violations", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Accelerate procedures for adopting the draft national action plan to combat racism, racial discrimination, xenophobia and related intolerance", - "values": [ - "4 - General action" - ] - }, - { - "text": "Ratify or accede as appropriate to the CED", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Ratify or accede to all core international human rights instruments such as ICCPR, ICESCR and CAT", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Amend the Constitution and election laws to permit the members of communities other than the Bosniaks, Serbs and Croats to run for the Presidency or become members of the House of Peoples", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Commitment to raising the age for compulsory education to 18 years.", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Guarantee and respect the right to freedom of expression, association and assembly putting an end to arbitrary detentions and arrests and any act of harassment against political actors and civil society, including human rights defenders", - "values": [ - "4 - General action" - ] - }, - { - "text": "Ensure and protect the right of all people to freedom of opinion and expression ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Continue its efforts in the fight against corruption to strengthen its national policy in this area", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Step up efforts for the implementation of an appropriate legal framework for the protection of women and girls from all forms of gender-based violence", - "values": [ - "4 - General action" - ] - }, - { - "text": "Fully enforce the prohibition of child labour in the informal, agricultural and domestic work, including by ensuring the right to education to all children and by defining a list of hazardous work", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Continue the implementation of programmes aimed at achieving a national health-care system that responds adequately to the needs of the population ", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Ensure that endeavours concerning legal reforms continue unhindered ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Take further effective measures to address the continued high crime rates in the areas of sexual violence against women and the trafficking of women and children", - "values": [ - "4 - General action" - ] - }, - { - "text": "Give equal recognition to the right of undocumented children to education ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Reconsider all the recommendations of the Venice Commission on the constitutional reform ", - "values": [ - "3 - Considering action" - ] - }, - { - "text": "Continue to implement initiatives that combat hate speech and foster mutual respect between communities", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Develop and implement comprehensive multisectoral strategies on child exploitation and abuse", - "values": [ - "4 - General action" - ] - }, - { - "text": "Reinstate juvenile courts and raise the age of criminal responsibility to 14 years, for all crimes, in line with international standards", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Complete the transfer of detainees to Ministry of Justice custody", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Adopt legislation prohibiting acts of discrimination on the grounds of sexual orientation and gender identity, and adopt measures to promote the rights of lesbian, gay, bisexual, transgender and intersex people and prevent their discrimination", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Seek the technical assistance of the international community in order to address challenges in the field of human rights", - "values": [ - "1 - Minimal action" - ] - }, - { - "text": "Reinforce the judicial system, by strengthening the bodies responsible for ensuring the defence of victims of human rights abuses", - "values": [ - "4 - General action" - ] - }, - { - "text": "Sign and ratify the International Convention on the Elimination of All Forms of Racial Discrimination", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Set up appropriate follow-up mechanisms in the area of the rights of workers ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Ensure adequate follow up to the review of the Domestic Violence Act conducted in 2014-2015 in order to strengthen measures to prevent and combat against all forms of discrimination and violence against women, and consider adopting a national action plan to this end", - "values": [ - "4 - General action" - ] - }, - { - "text": "Allow human rights organisations full access to detention centres", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Have a programme of education and training in human rights as a prerequisite for anyone wishing to join the armed forces ", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Ratify the Second Optional Protocol to ICCPR, aiming at the abolition of death penalty", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Move quickly to establish its new National Human Rights Institution in full compliance with the Paris Principles ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Enhance its efforts at the local level to better carry out the campaign against domestic violence ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Provide human rights training for security forces", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Continue to seek assistance and cooperation, as it deems appropriate, to support ongoing initiatives to fulfil its various international human rights obligations and implement those recommendations which will be accepted during the current universal periodic review cycle", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "In line with the Human Rights Committee, decriminalize consensual same-sex sexual relations between adults and put an end to prejudices and social stigmatization of homosexuality", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Continue to consider greater interaction with international human rights mechanisms", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "To designate focal points within each relevant Government department and request other stakeholders to designate focal points to follow up and report on the implementation of human rights issues", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Continue with the efforts to strengthen the institutional infrastructure in the field of human rights, particularly through the establishment of independent national human rights entities", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Apply the same spirit of protecting and promoting human rights, stressing human rights education, to the efforts undertaken to implement its National Vision 2020 ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Repeal legislation that deprives women from some rights, such as the right to inheritance and land ownership", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Accede or ratify the following international instruments: the Optional Protocol to the Convention against Torture and Other Cruel, Inhuman or Degrading Treatment or Punishment and the Rome Statute of the International Criminal Court ", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Share its experiences and best practices with other countries in establishing national legislation and mechanisms and pursuing international cooperation to curb human trafficking.", - "values": [ - "1 - Minimal action" - ] - }, - { - "text": "Move on speedily to the ratification and/or application of human rights instruments and optional protocols, particularly the first Optional Protocol to the International Covenant on Civil and Political Rights", - "values": [ - "4 - General action" - ] - }, - { - "text": "Ratify OP-CAT and thereby allow country visits", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Make more accessible and transparent the procedures for granting of residence permits by clarifying the criteria for awarding status, giving reasons for refusal, and improving the information given to foreigners on the remedies available to them ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Expedite implementation of the Prevention and Combating of Hate Crimes and Hate Speech Bill and of a national action plan to combat racism, racial discrimination, xenophobia and related intolerance", - "values": [ - "4 - General action" - ] - }, - { - "text": "Include children\u2019s participation in formal consultative processes that require citizens\u2019 contributions", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Ratify the Optional Protocol to the Convention against Torture and Other Cruel, Inhuman or Degrading Treatments or Punishments, following its signature in 2003", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Take effective measures against disadvantages faced by women in the labour market, including to overcome the persisting wage gap between men and women", - "values": [ - "4 - General action" - ] - }, - { - "text": "Invite the Special Rapporteurs on the independence of judges and lawyers, on the promotion and protection of the right to freedom of opinion and expression, and on torture and other cruel, inhuman or degrading treatment or punishment to visit the country ", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Continue promoting gender equality in order to explicitly eliminate all forms of discrimination against women", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Increase its efforts and take concrete policy measures in order to promote tolerance and non-discrimination of lesbian, gay, bisexual, transsexual and transgender persons ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Adopt measures designed to overcome gender discrimination stemming from national legislation and customary law in the area of marriage and family relations ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Set up a commission of National Independent Inquiry on Violence and Abuse against People with Disability", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Combat violations and violence against human rights defenders, particularly by adopting a law protecting them", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Continue the Public Security and the Criminal Justice System reforms and ensure that it is being implemented quickly to ensure that human rights violations by the security forces are systematically investigated, perpetrators are brought to justice and victims are compensated", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Amend its Constitution and its domestic legislation to prohibit discrimination on the basis of gender, to bring it into line with its CEDAW obligations ", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Achieve exemplary harmony by aligning national legislations with international treaties and protocols that it has ratified", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Ensure that the new Constitution protects all fundamental human rights, and that implementing legislation expressly defines the limited grounds on which these rights can be restricted ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Set clear time frames in regard to the ratification of the Optional Protocol to CAT and the Optional Protocol to CRC on the involvement of children in armed conflict, and that the Human Rights Council be informed accordingly. ", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Continue to seek international assistance in order to enhance the capacity to protect human rights in the country ", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Consider ratifying the ICERD", - "values": [ - "3 - Considering action" - ] - }, - { - "text": "Accept the request for a visit by the Special Rapporteur on the human right to safe drinking water and sanitation", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Establish an official moratorium on executions, in particular executions of juvenile offenders who were under the age of 18 at the time of the alleged crime, with a view to reviewing all cases of juvenile prisoners on death row", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Cease all bombings and ground attacks, including those conducted with the aid of its allies", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Ratify the Convention on the Elimination of All Forms of Discrimination against Women at the earliest opportunity", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Continue its admirable international efforts to tackle global warming, including by reminding developed countries and other major emitting States of their obligation to help promote and protect human rights in Saint Lucia by reducing greenhouse gas emissions to safe levels ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Step up efforts to strengthen the process of national reconciliation ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Develop clear guidelines on how to identify and protect victims of trafficking in persons", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Strengthen legal and other measures to address bias-motivated crimes and ensure the prompt and effective prosecution of racist and xenophobic hate crimes", - "values": [ - "4 - General action" - ] - }, - { - "text": "Continue its efforts to adopt a development policy to meet the needs of the people to reduce poverty in order to protect and promote human rights", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Ratify the Optional Protocol to CRC on the involvement of children in armed conflict (OP-CRC-AC) ", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Consider criminalizing torture under domestic law ", - "values": [ - "3 - Considering action" - ] - }, - { - "text": "Take further steps to ensure that the indigenous peoples justice system is at all times compliant with due process and other guarantees established in the International Covenant on Civil and Political Rights", - "values": [ - "4 - General action" - ] - }, - { - "text": "Adopt legislative measures to decriminalize homosexuality and consensual sexual relations between persons of the same sex", - "values": [ - "4 - General action" - ] - }, - { - "text": "Allow full and unfettered access to the United Nations Human Rights Council's Commission of Inquiry established under Human Rights Council resolution S-17/1", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Intensify efforts to combat family and sexual domestic violence and violence against women, by integrating these issues into the training of law for the enforcement officials and magistrates", - "values": [ - "4 - General action" - ] - }, - { - "text": "Implement the reforms already made by the Pahor Government to improve efficiencies in the Slovenian judicial system", - "values": [ - "4 - General action" - ] - }, - { - "text": "Strengthen measures aimed at combating discrimination against women and children, in particular those belonging to vulnerable groups and minorities", - "values": [ - "4 - General action" - ] - }, - { - "text": "Consider the possibility of ratifying CPED", - "values": [ - "3 - Considering action" - ] - }, - { - "text": "Put in place a moratorium on convictions for same-sex relationships and, over time, decriminalize homosexuality in order to fully apply the principle of equality and non-discrimination among all persons ", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Repeal laws that discriminate against women in order to strengthen gender equality ", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Put an end to the detention and trials of writers solely for the practice of their right to freedom of expression", - "values": [ - "4 - General action" - ] - }, - { - "text": "Pass legislation to raise the legal age of marriage to 18 and to eliminate the practice of forced and temporary marriages", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Remove all exceptions that allow marriage under the age of 18 years", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Continue its effort to protect the rights and interests of foreign workers", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Implement the Sharia Penal Code in a manner consistent with international human rights standards", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Take steps to protect asylum-seekers and ensure respect for the principle of non-refoulement in accordance with international refugee law and international human rights law ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Continue to develop the legal and institutional framework for the promotion and protection of human rights and develop social justice ", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Extend an open and permanent invitation to all United Nations special procedures in addition to the existing cooperation ", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Decriminalize homosexuality", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Consider abolishing the pre-approval requirement for public assemblies altogether and to replace it with an obligation of notification for the organisers of public assemblies.", - "values": [ - "3 - Considering action" - ] - }, - { - "text": "Continue its efforts to improve the protection of victims and witnesses, and their families, as well as human rights defenders, particularly those testifying in human rights-related trials, and to ensure that adequate witness protection is implemented. ", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Request technical assistance from relevant United Nations agencies and programmes and conclude partnerships with other interested countries to improve the health system, combat diseases, improve maternal health and reduce child mortality rates.", - "values": [ - "1 - Minimal action" - ] - }, - { - "text": "Further address the issue of treatment by law enforcement personnel towards criminal suspects, detainees and prisoners, in line with relevant human rights standards ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Complete the judiciary reform program PRAJUST, in particular the reform of the criminal code as well as the Code of Criminal Procedure, and ensure that inquiry procedures are reviewed and improved and investigation practices accelerated", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Ensure equality of men and women in practice and bring domestic legislation into line with the recommendations of the Committee on the Elimination of Discrimination against Women ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Continue the reform of the Criminal Code in relation to the prosecution of journalists.", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Ratify the Convention [ICRMW]", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Pay particular attention to the protection, release and reintegration of all children associated with armed groups", - "values": [ - "4 - General action" - ] - }, - { - "text": "Move towards the ratification of the Convention on the Protection of the Rights of All Migrant and Their Families Workers ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Make every effort to speed up the process of adoption of the drafts of the children's code and the law on gender equality and women's participation", - "values": [ - "4 - General action" - ] - }, - { - "text": "Develop appropriate legal frameworks for the enjoyment of the right to work and to just and favourable conditions of work to all migrant workers, especially domestic workers ", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Noting the Government's commitment to the promotion and protection of the right to freedom of opinion and expression, continue ensuring that exercise of this right does not impact negatively on other fundamental rights, including the right to privacy and freedom of religion or belief, among others ", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Continue to implement policies and programmes aimed at reducing poverty, in particular extreme poverty", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Refrain from criminalizing the legitimate activities of human rights defenders and repeal or amend all laws and policies which restrict their activities and rights, including by ensuring that anti-terrorism legislation is not misused", - "values": [ - "4 - General action" - ] - }, - { - "text": "To develop and implement a national action plan on human rights issues", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Continue to work on providing health and education services for remote areas ", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Move towards ratification of the ICCPR in the near future", - "values": [ - "4 - General action" - ] - }, - { - "text": "Establish a national human rights institution, in accordance with the Paris Principles, to provide additional protection for the human rights of its citizens ", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Abolish the death penalty and ratify the Second Optional Protocol to the International Covenant on Civil and Political Rights, aiming at the abolition of the death penalty", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Take measures to ensure the full independence of the judiciary and to ensure that guarantees of fair trail for everyone are implemented ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Continue its programme to improve social and living conditions in rural areas ", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Facilitate the visits of the Special Rapporteur on Adequate Housing and on Health, as well as requests for visits by others, including the Special Rapporteur on Freedom of Expression ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Strengthen the integration of indigenous peoples and immigrants, giving more rights to these categories", - "values": [ - "4 - General action" - ] - }, - { - "text": "Seriously consider an immediate moratorium on executions to allow a comprehensive public debate on this issue to take place", - "values": [ - "3 - Considering action" - ] - }, - { - "text": "Follow the recommendations of the 2014 Organization for Security and Cooperation in Europe election observation missions's final report", - "values": [ - "4 - General action" - ] - }, - { - "text": "Request assistance from OHCHR in preparing a common core document to streamline treaty reporting ", - "values": [ - "1 - Minimal action" - ] - }, - { - "text": "Consider freedom of expression concerns when drafting cybercrime legislation ", - "values": [ - "3 - Considering action" - ] - }, - { - "text": "Ensure proper implementation of and execution of legal provisions relevant to the protection of women's rights, and child rights specifically and the family in general", - "values": [ - "4 - General action" - ] - }, - { - "text": "Continue its efforts for universal access to health care strengthen the national public health system and pay attention to preventive health", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Strengthen the implementation of the Jordanian National Plan of Action for Children 2004-2013", - "values": [ - "4 - General action" - ] - }, - { - "text": "Extend its human rights education and awareness programme to target more public service officials", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Raise the age of marriage to 18 for both boys and girls", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Effectively implement ongoing national policy to guarantee quality education for minority", - "values": [ - "4 - General action" - ] - }, - { - "text": "Continue to pay particular attention to the issue of youth participation in the public decision-making process", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Continue to combat gender stereotypes by promoting equal representation of men and women in public office", - "values": [ - "4 - General action" - ] - }, - { - "text": "Share its positive experience and best practices with other countries regarding the high level of ethnic and religious tolerance in Brunei Darussalam ", - "values": [ - "1 - Minimal action" - ] - }, - { - "text": "Prioritize policy measures towards achieving universal, free and compulsory primary education, paying especial care to children with disabilities and those living in rural areas ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Amend the 2010 National Security Act, removing immunities from members of the National Intelligence and Security Services and revoking their powers of arrest and detention", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Continue its efforts to eradicate poverty and uplift the standards of living for all Malaysian people with more focus on the vulnerable and disadvantaged groups of people", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Consider introducing amendments to Ukraine\u2019s Criminal Code with a view to punishing homophobic crimes", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Further intensify its efforts in the fight against trafficking in human beings ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Continue efforts to guarantee freedom of expression, while safeguarding against its abuse", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Continue to take measures towards the effective implementation of the National Plan of Action against Sexual Abuse and Exploitation of Children including Trafficking", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Intensify efforts ensuring demobilisation of all child soldiers, as well as to elaborate a plan of action with concrete time period to put an end to the recruitment and employment of child soldiers", - "values": [ - "4 - General action" - ] - }, - { - "text": "Take further steps to improve access to housing, education and employment for Roma communities ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Continue its inclusive and consultative process when implementing accepted recommendations for the second cycle", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Systematically collect and analyse data on the prevalence of violence perpetrated against persons, because of their real or perceived sexual orientation or gender identity", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Continue to develop the normative and institutional framework at the national level by integrating all instruments and treaties ratified by Togo in the legislative system of the country", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Step up efforts to improve health services for all its citizens, especially in the rural areas ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Release prisoners of conscience and those arbitrarily detained, and immediately stop intimidation, persecutions and arbitrary arrests", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Urgently adopt effective measures to combat sexual violence in the whole territory, to ensure accountability for those responsible of such crimes and to ensure total redress for victims, by guaranteeing sufficient financial resources to implement such measures", - "values": [ - "4 - General action" - ] - }, - { - "text": "Accede to the ILO Domestic Workers Convention, 2011 (No. 189)", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Ensure an inclusive education system, in order to allow all children to attend classes, in particular pregnant girls", - "values": [ - "4 - General action" - ] - }, - { - "text": "Continue its efforts in providing equal opportunity of work for all, and also consider efforts to support capacity-building programmes for women ", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Take all necessary measures to ensure the independence and the integrity of the judiciary and oversight bodies", - "values": [ - "4 - General action" - ] - }, - { - "text": "Accede to the Rome Statute of the International Criminal Court, and cooperate fully with it", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Strengthen the institutional infrastructure for ensuring, promoting and protecting human rights ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Establish an official moratorium with a view to the final abolition of the death penalty and facilitate a national dialogue on the abolition", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Redouble efforts to facilitate access to urgent obstetrical care", - "values": [ - "4 - General action" - ] - }, - { - "text": "Adopt additional measures aimed at developing a global strategy to address all needs and to provide lasting solutions to internally displaced persons", - "values": [ - "4 - General action" - ] - }, - { - "text": "Investigate the reports of "knife stabbings" against people mainly from sub-Saharan Africa and ensure that the perpetrators are prosecuted and, when convicted, punished with appropriate penalties", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Make every effort to achieve an agreement with the guerrilla groups in order to achieve peace, as had been attempted in the past.", - "values": [ - "4 - General action" - ] - }, - { - "text": "Introduce a moratorium on the use of the death penalty, with a view to its abolition.", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Continue its efforts to eliminate the stereotypes regarding the roles and responsibilities of women and men in the family and in society", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Take the necessary steps to bring the Office of the Ombudsman into compliance with the Paris Principles", - "values": [ - "4 - General action" - ] - }, - { - "text": "Take the necessary steps in cooperation with the ILO to ensure an inclusive consultation process with indigenous peoples aiming at a more effective implementation of the relevant legislation", - "values": [ - "4 - General action" - ] - }, - { - "text": "Consider abolishing the death penalty, given that there has been no execution since 1992 and that death row cases are being reviewed", - "values": [ - "3 - Considering action" - ] - }, - { - "text": "Repeal legislation criminalizing male homosexuality, and introduce policies aimed at ending discrimination against homosexuals ", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Enhance the activities of the National Commission for Human Rights and ensure its conformity with the Paris Principles ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Ratify the International Covenant on Economic, Social and Cultural Rights and the International Covenant on Civil and Political Rights ", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Intensify efforts to prevent and tackle any act aimed at reducing or impeding the full enjoyment of the freedom of religion for any individual", - "values": [ - "4 - General action" - ] - }, - { - "text": "Address the underlying structural factors regarding discrimination against indigenous peoples and Afro-Bolivians and set and monitor the implementation of concrete equality targets", - "values": [ - "4 - General action" - ] - }, - { - "text": "Repeal the sections of its Criminal Code that criminalize consensual homosexual activity", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "With the support and cooperation of the international community, continue to combat diseases such as HIV-AIDS, malaria and tuberculosis, with special attention to the vulnerable.", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Fully implement Security Council resolution 2023 of 2011, which condemns Eritrea's use of the "diaspora tax" to destabilize the Horn of Africa region and violate the sanctions regime ", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Step up efforts to provide protection to migrant workers, guaranteeing them full access to justice", - "values": [ - "4 - General action" - ] - }, - { - "text": "Take action to improve both the legal framework and the overall climate in which the media operate, in order to safeguard freedom of expression and independence of the media ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Continue to provide adequate human and other resources to its anti- human trafficking programmes", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Pursue the integration of human rights education and training in school programmes and other sectors such as the administration of justice and the police ", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Favourably consider becoming a party to OP-CEDAW", - "values": [ - "3 - Considering action" - ] - }, - { - "text": "End the prosecution of journalists under the Criminal Code for peacefully exercising their right to freedom of opinion and expression and for ensuring the right to information", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Incorporate explicit prohibition of physical punishment into national legislation and monitor its implementation strictly, particularly in the case of police dealing with minors.", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Continue efforts to promote education and combat illiteracy, particularly among rural women.", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Strengthen the governance of natural resources to ensure, amongst others, their sustainable utilization", - "values": [ - "4 - General action" - ] - }, - { - "text": "Continue to adopt measures to effectively reduce the drop-out rate of students so as to ensure comprehensive realization of the right to education ", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Fully align its national legislation with the Rome Statute of the ICC and ratify the Agreement on Privileges and Immunities of the Court", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Consider ratifying all core international human rights treaties to which it is not yet a party and align them to their national legal framework ", - "values": [ - "3 - Considering action" - ] - }, - { - "text": "Establish promptly an independent national human rights institution in conformity with the Paris Principles", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Take all necessary measures to ensure the improvement of socio-economic conditions of refugees and internally displaced persons.", - "values": [ - "4 - General action" - ] - }, - { - "text": "Consider the possibility of developing a national strategy to address the rights of indigenous peoples and other groups that are subject to discrimination", - "values": [ - "3 - Considering action" - ] - }, - { - "text": "Establish a National Human Rights Institution in full compliance with the Paris Principles as a matter of priority", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Review its legislation criminalizing the termination of pregnancies in all circumstances, including in cases of rape, incest and situations where the life of the mother is at risk, making adequate information on family planning and the regulation of fertility publicly available", - "values": [ - "3 - Considering action" - ] - }, - { - "text": "Pursue its efforts in favour of gays, lesbians and transsexuals ", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Ratify the Council of Europe Convention on Action against Trafficking in Human Beings", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Continue its efforts to combat racial discrimination ", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Expedite implementation of reconciliation measures in the North. This would include removing oversight of humanitarian and NGO activities from the purview of Ministry of Defense to a civilian body, reducing the intrusiveness of military presence on civilian life in the North and setting a specific date for free and fair Northern Provincial Council elections", - "values": [ - "4 - General action" - ] - }, - { - "text": "Take necessary measures to guarantee all children the right to education", - "values": [ - "4 - General action" - ] - }, - { - "text": "Ratify the Second Optional Protocol to the International Covenant on Civil and Political Rights, aiming at the abolition of the death penalty", - "values": [ - "3 - Considering action" - ] - }, - { - "text": "Ensure that law enforcement officers receive training on human rights norms and standards", - "values": [ - "4 - General action" - ] - }, - { - "text": "Continue its efforts to harmonize its national legislation with international human rights instruments ", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Take adequate and necessary measures to address violence against women", - "values": [ - "4 - General action" - ] - }, - { - "text": "As long as the death penalty is not abolished and continues to be carried out, respect minimum standards in this regard, and in particular ensure that the death penalty is applied only for the most serious criminal offences ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Continue strengthening the protection and promotion of the right of all citizens to publicly express their beliefs and opinions", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Continue applying its successful programmes implementing CRPD ", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Sign and ratify the main ILO conventions, and the main international human rights instruments, particularly ICCPR, ICESCR, CAT and the International Convention for the Protection of All Persons from Enforced Disappearance CED ", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Undertake the necessary steps to ensure that its national institution is fully consistent with the Paris Principles ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Make further efforts to ensure the freedom of the media, the freedom of expression and the freedoms of thought and belief, continue to lay solid foundations for a democratic system, and strive to achieve economic and social development ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Enhance the protection of migrants and refugees by implementing the law on human trafficking and enhancing the operational capacities of the Commission Nationale d'Eligibilite au Statut de Refugie and the Agence Nationale de Lutte contre la traite des Personnes", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Swiftly take action to improve conditions of detention, in particular to reduce excessive use of force and overcrowding in line with the Nelson Mandela Rules", - "values": [ - "4 - General action" - ] - }, - { - "text": "Urgently conduct thorough and impartial investigation into all allegations of excessive force and abuse by law enforcement officials and bring to justice anyone suspected of having committed excessive use of force, torture or other human rights violations ", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Protect freedom of assembly by immediately repealing the Protest law, or amending it so that it is in accordance with article 73 of the 2014 Constitution and with ICCPR", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Accede to the Rome Statute", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Ensure that laws, policies and programmes to protect the rights of women, the elderly, persons with disabilities and indigenous people are effectively implemented", - "values": [ - "4 - General action" - ] - }, - { - "text": "Release all political prisoners including Valery Pal, Gulgeldy Annaniazov, Annakurban Amankylchev, Sapardurdy Khajiev and Mukhetkuli Aymuradov, and account for those prisoners whose fate is unknown", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Implement the recommendations made by the United Nations Special Rapporteur on the rights of indigenous people after his visit in 2009 ", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Implement relevant legislation for the full exercise of the right to freedom of expression, peaceful assembly and association", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Consider establishing the total prohibition of corporal punishment", - "values": [ - "3 - Considering action" - ] - }, - { - "text": "Ratify OP-ICESCR, the Rome Statute of the ICC as well as the 1954 Convention relating to the Status of Stateless Persons and the 1961 Convention on the Reduction of Statelessness ", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Facilitate the implementation of a birth registration system to allow immediate registration at birth, independently of the status or nationality of parents", - "values": [ - "4 - General action" - ] - }, - { - "text": "Ensure proper representation of minorities in the labour market as per the ratio of minorities.", - "values": [ - "4 - General action" - ] - }, - { - "text": "Immediately end violence and discrimination against members of ethnic and religious minorities, grant full citizenship rights to Rohingyas and end sexual violence committed against ethnic minority women ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Consider a moratorium on the death penalty as a step towards its effective abolition", - "values": [ - "3 - Considering action" - ] - }, - { - "text": "Continue with undertaking actions to promote the well-being of children by comprehensive suppression of violence against children", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Implement all the necessary measures to set up a National Mechanism of Prevention in line with the provisions of the Optional Protocol to the Convention against Torture", - "values": [ - "4 - General action" - ] - }, - { - "text": "Ensure that the regulation on surveillance does not violate the right to privacy, intimacy and freedom of expression of its citizens", - "values": [ - "4 - General action" - ] - }, - { - "text": "Share its experience in the fight against terrorism. ", - "values": [ - "1 - Minimal action" - ] - }, - { - "text": "Take steps to ensure the safety of journalists and to properly investigate attacks against them ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Revise its laws to establish a broadly applicable anti-discrimination law which also effectively criminalizes hate speech", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Undertake the necessary processes, by availing itself of any available technical assistance, to identify and overcome any obstacles which may exist to the country becoming a State party to additional core human rights treaties, such as the International Covenant on Economic, Social and Cultural Rights and the International Covenant on Civil and Political Rights", - "values": [ - "4 - General action" - ] - }, - { - "text": "Take effective measures to uphold the right to life and the total prohibition of torture in Guinea ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Consider ratifying the Optional Protocol to the International Covenant on Economic Social and Cultural Rights ", - "values": [ - "3 - Considering action" - ] - }, - { - "text": "Continue efforts with regard to the ratification and implementation of core human rights treaties, and develop further the institutional framework for the implementation of human rights standards contained therein ", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Continue with its efforts to address climate change and its adverse effects on people's livelihood and health, while ensuring that all climate action is guided by its human rights obligations", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Follow the recommendations of the Special Rapporteur on contemporary forms of slavery to abolish all remaining forms of slavery or slavery-related practices, and provide victims of such practices with the possibility to initiate criminal proceedings and obtain compensation", - "values": [ - "4 - General action" - ] - }, - { - "text": "Include human rights education in the school curriculum and the necessary assistance and capacity-building be provided to Lesotho in this regard", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Ensure that the objectives of initiatives such as Vision 2020 and the Economic Development and Poverty Reduction Strategy are attained, and that efforts to build a more stable and prosperous Rwanda continue ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Further strengthen measures against torture and ill-treatment", - "values": [ - "4 - General action" - ] - }, - { - "text": "Strengthen its intervention programmes for young people to increase their awareness of HIV/AIDS and on a wider basis to provide reproductive health counselling where necessary through the various Government social programmes ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Ensure the protection of the rights of women, especially by criminalizing and implementing laws on female genital mutilation, domestic and sexual violence", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Conduct relevant human rights training for senior police ", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "To call on Malawi to appeal to the international community to fully understand the many challenges faced by the Government of Malawi and consequently provide the necessary technical assistance ", - "values": [ - "1 - Minimal action" - ] - }, - { - "text": "Implement targeted training for law enforcement officials on responding to cases of domestic violence, and ensure that all allegations are fully investigated", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Implement effective measures to achieve the aim of increasing the participation of women in governance to 45 per cent in the public sector and over ten per cent in the private sector by 2014 ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Quickly ratify CEDAW", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Undertake effective actions to continue the fight against violence regarding women and children in the family setting", - "values": [ - "4 - General action" - ] - }, - { - "text": "Urgently establish a moratorium on the use of the death penalty", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Keep on efforts, both on legal and procedural grounds, to ensure equal access to quality health services for all citizens", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Take all relevant measures to avoid prolongation of administrative detention of asylum-seekers during which the freedom of movement is considerably restricted ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Accede to the core international human rights instruments, namely, the ICCPR and the ICESCR ", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Take strong measures to prevent human rights violations and abuses by its own security forces and conduct investigations on alleged human rights violations by the security forces since March of 2012", - "values": [ - "4 - General action" - ] - }, - { - "text": "Prepare and adopt the law affirming the right to establish nongovernmental organizations merely upon notification", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Take the necessary measures in law and in practice to put an end to discrimination between men and women regarding nationality", - "values": [ - "4 - General action" - ] - }, - { - "text": "Prohibit all forms of violence against children, in particular corporal punishment, which is still legally practised in schools ", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Adjust the Penal Code to fully comply with international standards of freedom of expression, and ensure that restrictions imposed in the name of security comply with the character of necessity and proportionality ", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Fight Islamophobia and support its Muslim citizens, by enabling them to practise their religion", - "values": [ - "4 - General action" - ] - }, - { - "text": "Consider ratifying other key treaties, particularly the International Covenant on Civil and Political Rights and the International Covenant on Economic, Social and Cultural Rights.", - "values": [ - "3 - Considering action" - ] - }, - { - "text": "Immediately implement all the recommendations put forward by the Waki Commission and the Special Rapporteur on extrajudicial killings ", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Establish a special tribunal based on the recommendations of the report on the investigation into the attack on the Hotel Terrain and ensure accountability for all human rights violations", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Enhance the access of ethnic and national minorities to education, health care and employment ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Accelerate its current efforts to sign and ratify the CED ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Increase the number of investigations, intensify the investigative work and improve the efficiency of judicial procedures before national courts in the case of crimes committed during the war of the 1990s and strengthen efforts to determine the fate of all missing persons in Croatia", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Fully guarantee freedom of expression and free access to information and protect journalists against threats and attacks", - "values": [ - "4 - General action" - ] - }, - { - "text": "Costa Rica reiterated its commitment of the current administration with the gender equity policy and the designation of a Minister on the Condition of Women to ensure that the gender policy remains a cross-cutting issue in all political decisions.", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Adopt the new law proposing a minimum marital age as a matter of urgency and prohibit forced marriages in all cases ", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Ensure the effective investigation of episodes of violence against women and domestic violence, to bring perpetrators to justice and provide victims with adequate compensation, protection and assistance", - "values": [ - "4 - General action" - ] - }, - { - "text": "Continue its constructive engagement with the Human Rights Council and its mechanisms", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Develop a stand-alone law on domestic violence, where gender-based violence will be qualified as a criminal offence subject to prosecution", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Strengthen measures to respect the Standard Minimum Rules for the Treatment of Prisoners", - "values": [ - "4 - General action" - ] - }, - { - "text": "Ensure due investigation of all allegations of human rights violations following the events of September 2009 and prosecute the perpetrators in accordance with international standards ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Continue its efforts for the full implementation of international human rights instruments to which it is a party.", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Initiate a review and reform of the judiciary to assure its independence and impartiality, and that specific measures are taken to ensure that military and police personnel respect international human rights and humanitarian law ", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Make greater efforts to improve confidence in and access to justice within the country", - "values": [ - "4 - General action" - ] - }, - { - "text": "Ensure the strict implementation of the prohibition of torture and illtreatment, especially in pretrial detention, and improve the conditions of detention in conformity with the international standards", - "values": [ - "4 - General action" - ] - }, - { - "text": "Take further measures to promote education in rural areas", - "values": [ - "4 - General action" - ] - }, - { - "text": "Continue its efforts to strengthen the current National Human Rights Association - established in 1986, in line with the Paris Principles", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Ensure detention conditions for irregular migrants are in conformity with EU human rights standards ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Continue efforts to ensure that households, schools and health facilities have access to safe water and sanitation", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Enhance efforts to improve the rate of birth registration among indigenous peoples and other vulnerable groups", - "values": [ - "4 - General action" - ] - }, - { - "text": "Fully cooperate with all human rights mechanisms, including accession to CAT, as well as access to the territory for the Special Rapporteur on torture ", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Continue to raise awareness of the needs of the Roma population, in particular children, and establish an adequate system that provides for their social and educational inclusion", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Designate a national mechanism for the prevention of torture and other cruel, inhuman or degrading treatment or punishment", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Ensure that primary education attains the constitutionally guaranteed universal compulsory status", - "values": [ - "4 - General action" - ] - }, - { - "text": "Strengthen efforts to protect asylum-seekers and refugees", - "values": [ - "4 - General action" - ] - }, - { - "text": "Continue its efforts and carry out education, information and awareness-raising activities aimed at an effective fight against female genital mutilations", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Continue its constructive role and contribution in the promotion and protection of human rights in the region, particularly through established regional frameworks in ASEAN, such as the ASEAN Intergovernmental Commission on Human Rights (AICHR), the ASEAN Commission on the Promotion and Protection of the Rights of Women and Children (ACWC)", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Take all necessary measures, in accordance with international human rights law, to reduce the use of detention of persons solely on grounds of immigration reasons or because they belong to minority groups ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Extend an open invitation to all the mechanisms and Special proceduress of the Human Rights Council ", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Either strengthen the existing National Child Rights Committee or establish a national human rights institution according to the Paris Principles, and ensure that the National Child Rights Committee or the new national institution is provided with sufficient human and financial resources ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Continue its efforts to create an ombudsman for children\u2019s rights", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Review the health reforms to ensure health-care services for migrants", - "values": [ - "3 - Considering action" - ] - }, - { - "text": "Establish and resource an independent police complaints commission to track and investigate complaints, in line with section 128 of Malawi's Police Act", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Speed up consideration of the ratification of the Rome Statute of the ICC", - "values": [ - "4 - General action" - ] - }, - { - "text": "Strengthen the response against the HIV/AIDS pandemic by combating discriminatory attitudes and stigmatization of persons living with the virus. The guides on HIV and human rights are a valuable tool for this goal", - "values": [ - "4 - General action" - ] - }, - { - "text": "Ratify the OP-CRC-SC", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Become a party to the International Covenant on Civil and Political Rights and its Optional Protocols", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Ratify the 1954 Convention relating to the Status of Stateless Persons and consider the possibility of establishing a procedure for the determination of statelessness in its national legislation ", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Adhere to and adapt national legislation to the Arms Trade Treaty", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Allocate sufficient funding and make available adequate human resources for the implementation of the Roma Integration Strategy 2015-2020 and the Inclusive Education Action Plan for 2016-2018", - "values": [ - "4 - General action" - ] - }, - { - "text": "Continue to expand support services for older persons to enhance their participation in society", - "values": [ - "3 - Considering action" - ] - }, - { - "text": "Continue its successful policy in combating trafficking in human beings at the national level and to play a leading role at the international level on this matter.", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Strengthen efforts to enact the existing legislation on child labour", - "values": [ - "4 - General action" - ] - }, - { - "text": "Finalize the ratification of the Convention on the Rights of Persons with Disabilities", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Continue efforts in the area of economic, social and cultural rights.", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Develop and implement gender equality policies, particularly in the labour market, and policies to fight sexual and domestic violence ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Further accelerate the sanitation coverage and the access to safe and sustainable drinking water in rural areas", - "values": [ - "4 - General action" - ] - }, - { - "text": "Review national legislation and take the necessary legislative measures to ensure that there is no overlap of functions between the Office of the Commissioner for the Protection from Discrimination and the Ombudsman, and consider granting the Ombudsman the necessary financial and human resources to enable it to fulfil its mandate with more efficiency and independence, in accordance with the Paris Principles", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Enact a more robust set of policies and procedures to combat anti-Semitism, and that a public strategy be developed to dissuade prejudices and intolerance towards the Jewish population and its culture, including with respect to Jewish memorial and commemorative sites within Lithuania", - "values": [ - "4 - General action" - ] - }, - { - "text": "Take urgent steps to follow up on the recommendation which was made at the National Dialogue Conference for a universal minimum age of marriage of 18 years and ensure that an appropriate legal framework is put in place to prevent marriage for children under the age of 18 ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Ensure better and greater access of women and girls to education with the aim of empowering them", - "values": [ - "4 - General action" - ] - }, - { - "text": "Consider the establishment or the strengthening of the existing national mechanism for coordination, implementation, reporting and follow-up, in line with elements arising from good practices identified in the 2016 OHCHR guide on national mechanisms for reporting and follow-up", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Take further steps to combat extrajudicial killings and enforced disappearances, including by providing sufficient funding to the national police force and by ensuring that alleged perpetrators of extrajudicial killings are swiftly brought to justice ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Further speed up efforts to prevent and eliminate trafficking in persons ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Further improve measures to address the problems related to gender issues, including violence against women, through, inter alia, the establishment of effective coordination and the strengthening of an enforcement and judicial system for the greater protection of women and girls ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Continue to implement the National Gender Equality and Women's Development Policy, particularly the chapter on violence against women ", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "End discrimination against citizens on the basis of the so-called "core", "wavering" and "hostile" social classes and of political connections ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Provide social services on health and access to education to children belonging to the most vulnerable groups", - "values": [ - "4 - General action" - ] - }, - { - "text": "Continue to raise awareness to eradicate existing prejudices and stereotypes against people with a migration background and foreigners", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Consider the possibility of withdrawing its reservation to Article 4 of ICERD", - "values": [ - "3 - Considering action" - ] - }, - { - "text": "Continue its efforts in promoting and protecting the rights of the child, including finalizing and implementing the new draft of a national plan to eliminate the worst forms of child labour for the period 2013-2018 ", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Strengthen protection provided for persons deprived of their liberty, preferably by ratification of the Optional Protocol to the Convention against Torture and other Cruel, Inhuman or Degrading Treatment or Punishment", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Follow up on the recommendations of the Committee on the Elimination of Discrimination against Women on redoubling national efforts in favour of gender equality, in particular through education and awareness-raising campaigns - the investigation and punishment of violations of the rights of women and girls, in particular sexual violence - and the rehabilitation and compensation of victims ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Step up efforts to ratify ICRMW ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Thorough reform of the judiciary to ensure compliance with due process and fair trial standards, including independence and impartiality", - "values": [ - "4 - General action" - ] - }, - { - "text": "Pursue efforts to address and study academic failures in the secondary schools of children from disadvantaged socioeconomic environments", - "values": [ - "4 - General action" - ] - }, - { - "text": "Strengthen the human rights protection of all inhabitants of the Dominican Republic, including migrants ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Ratify OP-CAT, the second Optional Protocol to the International Covenant on Civil and Political Rights ICCPR-OP 2 and the Convention of the Rights of Persons with Disabilities CRPD and its Optional Protocol", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Introduce a national moratorium on the death penalty aiming at complete abolition and take all necessary measures to ensure that the death penalty complies with minimum standards under international law. Exempt persons with mental illness from execution. Commit to ensuring that the origin of drugs being used is made public", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Seek international assistance to supplement the national efforts to reduce maternal and child mortality ", - "values": [ - "1 - Minimal action" - ] - }, - { - "text": "Develop a comprehensive policy with regard to all aspects of internal displacement", - "values": [ - "4 - General action" - ] - }, - { - "text": "Develop a programme to effectively improve the situation of persons in deprivation of liberty, including measures that would lead to a reduction of the mortality rates among prisoners", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Prioritize family-type care settings and foster families over institutionalized placements and include foster care as an important instrument within the special protection measures for children", - "values": [ - "4 - General action" - ] - }, - { - "text": "Continue efforts to implement the national legislation against the smuggling of migrants, human trafficking and the protection of victims ", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Take effective measures to significantly reduce the number of extrajudicial executions and bring those responsible before civil jurisdiction.", - "values": [ - "4 - General action" - ] - }, - { - "text": "Specifically prohibit corporal punishment in institutions ", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Comply with recommendation No. 1737 of 17 March 2006 of the Parliamentary Assembly of the Council of Europe, which calls for the ratification of the International Convention on the Protection of the Rights of All Migrant Workers and Members of Their Families", - "values": [ - "4 - General action" - ] - }, - { - "text": "The Government of Canada commits to tabling the outcome of its Universal Periodic Review in Parliament.", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Adopt additional measures to combat gender inequity and gender-based discrimination", - "values": [ - "4 - General action" - ] - }, - { - "text": "Consolidate the implementation of the 2020 programme in the framework of justice reform", - "values": [ - "4 - General action" - ] - }, - { - "text": "Enhance the participation of grass-roots people in decision-making processes regarding their welfare", - "values": [ - "4 - General action" - ] - }, - { - "text": "Safeguard equitable protection to all places of worship, including all Muslim and Christian sacred places", - "values": [ - "4 - General action" - ] - }, - { - "text": "Revise Law 5651, and ensure that government statements and actions fully respect freedom of opinion and expression ", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Continue to enhance the rule of law, the legal and judicial system and mechanisms in the country to promote and protect human rights ", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Prepare a national plan with allocated targets to combat violence and discrimination against women and provide access and financial aid to support services, and strengthen cooperation between different government agencies", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Facilitate the completion of existing initiatives to ratify the international instruments listed in paragraph 7 of its national report", - "values": [ - "4 - General action" - ] - }, - { - "text": "Continue efforts to allow for a harmonious life in a multi-religious, multi-cultural, multi-ethnic and multi-lingual society.", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Withdraw all reservations to CEDAW which undermine the compliance of its obligations or the purpose of the treaty", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Return to constitutional rule, to restore a democratic form of Government, to reinstate an independent judiciary, to repeal the Public Emergency Regulations and to reinstate the full independence of the Human Rights Commission", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Strengthen further ongoing efforts and steps aimed at reducing poverty and ensuring economic and social rights, particularly the right to food, for its people", - "values": [ - "4 - General action" - ] - }, - { - "text": "Ratify the Rome Statute of the International Criminal Court and the Agreement on the Privileges and Immunities of the International Criminal Court, and to fully align its national legislation with the obligations contained therein ", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Suspend without delay the executions and declare a moratorium on the application of death penalty as the first phase towards its abolition", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Implement and put in place the Human Rights Commission, in line with the Paris Principles", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Conduct full and transparent investigations into alleged cases of excessive use of force by security agents, especially during and after the 2016 elections, ensuring accountability for possible human rights violations", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Put in place a moratorium on executions, with a view to ratifying the Second Optional Protocol to the International Covenant on Civil and Political Rights, aiming at the abolition of the death penalty and consider ratifying the Optional Protocol to International Covenant on Economic, Social and Cultural Rights, the Optional Protocol to the Convention on the Rights of the Child on a communications procedure, the Convention relating to the Status of Refugees and its 1967 Protocol, as well as the Rome Statute of the International Criminal Court", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Sign and ratify the Second Optional Protocol to the International Covenant on Civil and Political Rights which prohibits the death penalty in all circumstances ", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Prohibit and punish the use of racial profiling in all programs that enable local authorities with the enforcement of immigration legislation and provide effective and accessible recourse to remedy human rights violations occurred under these programs ", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Respond positively to the request of the Special Rapporteur on extrajudicial, summary or arbitrary executions to undertake a country visit", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Repeal all legal provisions criminalizing consensual sexual activity between men and combat discrimination on the basis of sexual orientation", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Early ratification of the Optional Protocol to the Convention against Torture", - "values": [ - "4 - General action" - ] - }, - { - "text": "Continue efforts to ensure that all children finish primary school and make primary education compulsory ", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Implement a gender perspective in education at all levels, including teacher training, as well as establish a policy and appropriate measures for including children of all backgrounds in the national education system", - "values": [ - "4 - General action" - ] - }, - { - "text": "Foster policies that make it possible to reduce the youth unemployment rate, through providing opportunities for youth to have work, as well as avoiding stigmatization of people with disabilities and those coming to the world of work from national minorities", - "values": [ - "4 - General action" - ] - }, - { - "text": "Ratify CRPD, CRPD-OP and CED as soon as possible", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Accede to ICRMW and ILO Convention 189", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Adopt a school feeding programme and integrate it with local agricultural production ", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Strengthen measures to combat human trafficking, including violence against migrants", - "values": [ - "4 - General action" - ] - }, - { - "text": "Continue its work in the health area in support of its entire population ", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Revise comprehensively its national legislation in order to bring it in line with its Constitution and with the Convention on the Elimination of All Forms of Discrimination against Women", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Initiate or pursue timely, independent, impartial and effective investigations into threats and attacks against human rights defenders and bring those responsible to justice", - "values": [ - "4 - General action" - ] - }, - { - "text": "Adopt a comprehensive action plan to address wage inequalities and make available maternity leave in all public and private employments", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Pursue efforts aimed at strengthening the protection of all people from racial discrimination and by improving the existing draft pieces of legislation and passing them into law", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Enhance its efforts to implement the Plan of Action on Education for All (2003-2015)", - "values": [ - "4 - General action" - ] - }, - { - "text": "Grant equal citizenship rights to women and men", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Cooperate fully with the COI as well as with the United Nations special procedures and with the humanitarian international organizations ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Legislate stricter sentences for the act of torture and ill-treatment", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Enact specific legislation regarding trafficking in persons ", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Take all necessary legislative and policy measures to ensure that persons with disabilities have appropriate employment opportunities and children with disabilities have access to quality education", - "values": [ - "4 - General action" - ] - }, - { - "text": "Take effective measures as soon as possible in order to avoid overcrowding in prisons and other detention facilities, in line with the Standard Minimum Rules for the Treatment of Prisoners ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Ensure the independence of the National Commission for Human Rights and Freedoms, and provide it with adequate human and financial resources in the fulfilment of its mandate ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Improve the monitoring and evaluation of domestic violence prevention programmes and agencies", - "values": [ - "4 - General action" - ] - }, - { - "text": "Consider the ratification of the International Convention on the Protection of the Rights of All Migrant Workers and Members of Their Families, recognizing the jurisdiction to receive individual complaints, as previously recommended", - "values": [ - "3 - Considering action" - ] - }, - { - "text": "Ratify the Optional Protocol to CRC on children in armed conflict and the Convention on the Rights of Persons with Disabilities - CRPD -", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Ensure that the new national plan [on children] of action is equipped with an evaluation mechanism", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Complete the ongoing discussions on the conclusion of an agreement with the Muslim community in Luxembourg, as has been done with the other religions ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Disseminate in different languages the National Action Plan for the Promotion and Protection of Human Rights", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Review penal code restricting freedom of opinion, enact legislation and recognize independent unions as well as remove restrictions to peaceful demonstrations", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Speed up the process of ratification of the Second Optional Protocol to the International Covenant on Civil and Political Rights, aiming at the abolition of the death penalty ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Expedite the process of signing and ratifying the Optional Protocol to the International Covenant on Economic, Social and Cultural Rights ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Consider to put in place appropriate safeguards to protect civilians from any discriminatory, ill-treatment or criminal offences committed by members of the law enforcement agencies", - "values": [ - "3 - Considering action" - ] - }, - { - "text": "Restart its full participation with the Human Rights Council, including all its mechanisms and OHCHR", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Amend domestic legislation, in keeping with its international commitments, to include the concept of torture", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Prohibit any practice of forced early marriage of young girls, including tourist or temporary marriages, female genital mutilation, and parent-supported trafficking of children through, inter alia, the adoption and subsequent implementation of the Safe Motherhood Law, recently brought before Parliament, without delay, as recommended by the CEDAW Committee", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Integrate children with disabilities into the regular educational system and into society by special training for teachers and making the physical environment (schools, sports, leisure facilities and other public areas) accessible", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Uphold the independence of the judiciary, including by maintaining the procedures of nominations and promotions of judges by decisions of the judiciary in accordance with the Polish Constitution and international standards", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Implement the recommendations by the United Nations Treaty Bodies regarding the protection of human rights defenders and journalists", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Adopt effective measures to guarantee the right to life and the physical integrity of Honduran journalists, as well as the exercise of freedom of expression, adopt all possible measures to carry out investigations in order to end impunity for the killing of journalists", - "values": [ - "4 - General action" - ] - }, - { - "text": "Continue its efforts to establish an independent national human rights institution, in line with the Paris Principles and with a merit-based selection of board members and staff ", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Take steps to prevent incidents of discrimination and violence against women ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Continue, in line with what is described in its national report, its efforts to provide greater access to education and employment, in order to reduce the conditions for the progression of criminal organizations ", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Sign and ratify the Optional Protocol to the Convention on the Rights of Persons with Disabilities", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Continue and finalize the procedure for the decriminalization of press offenses", - "values": [ - "4 - General action" - ] - }, - { - "text": "Continue efforts in the area of human rights education and training", - "values": [ - "4 - General action" - ] - }, - { - "text": "Adopt measures providing for independent and effective investigation and prosecution of all cases of alleged ill-treatment of persons in detention facilities as well as for remedies for victims", - "values": [ - "4 - General action" - ] - }, - { - "text": "Finalizing the law for the protection of children and create a Committee to protect children, in addition to provide more efforts to solve the phenomenon of street children", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Definitively abolish the death penalty", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Consider adopting legislative measures to facilitate access of women in rural areas to land ownership, to ensure that poverty reduction and income generating strategies include provisions relating to rural women, and to ensure access by rural women and girls to education ", - "values": [ - "3 - Considering action" - ] - }, - { - "text": "Improve training of security forces with regard to combating sexual violence against women and girls and ensure accountability of perpetrators ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Continue efforts to fight violence against women, including by raising awareness on the fight against female genital mutilation", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Establish effective mechanisms to investigate, prosecute and punish trafficking offenders", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Continue to consider ratifying the Rome Statute of the International Criminal Court ", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Review legislation that is discriminatory to lesbian, gay, bisexual, transgender and intersex persons and arbitrarily interferes with the right to privacy, as it encourages stigmatisation of such person", - "values": [ - "3 - Considering action" - ] - }, - { - "text": "Continue its efforts to implement the comprehensive program to protect the rights and empowerment of women", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Institute trainings and awareness campaigns for provincial and municipal officials in respect for the rule of law and with regard to protecting the freedom of religion and other rights of members of religious groups ", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Ensure the prohibition of discrimination on the grounds of sexual orientation and gender identity", - "values": [ - "4 - General action" - ] - }, - { - "text": "Ensure that no children are held in detention on the basis of their migratory status and that special protection and assistance is provided to unaccompanied children ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Continue to pursue the ratification of Convention on the Rights of Persons with Disabilities", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Intensify the efforts in fighting against HIV/AIDS, in particular, to improve access to health-care services in rural areas", - "values": [ - "4 - General action" - ] - }, - { - "text": "Build upon developments in Sarajevo Canton police regarding training, coordination and awareness-raising in tackling discrimination of LGBT persons and implement these practices throughout the judiciary and the police", - "values": [ - "4 - General action" - ] - }, - { - "text": "Conduct effective investigation on the case of murder of Hrant Dink, Editor-in-Chief of the Turkish language Armenian weekly "Agos"", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Impose as soon as possible a moratorium on the death penalty, with the view to its definitive abolition, in line with General Assembly resolution 65/206 ", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Accept the outstanding requests for visits from the Special proceduress and respond to the communications sent by OHCHR which are awaiting replies ", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Continue its positive engagement with neighbouring countries in combating trafficking in persons and explore further ways and means aimed at improving and enhancing protection of victims of domestic violence", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Issue a standing invitation to the mandate holders of the Council ", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Continue promoting the active and effective participation of women at all decision levels ", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Increase use of non-custodial measures during the period before the imposition of a sentence", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Continue to grant all political parties unfettered access to the print and electronic media for fair elections ", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Further encourage and facilitate the representation of women in parliament, in the judiciary and in diplomatic missions abroad", - "values": [ - "4 - General action" - ] - }, - { - "text": "Redouble its efforts to fight racial discrimination, including through support to relevant NGOs, and further recommend special measures for vulnerable groups, including Ciganos, Roma and people of African descent ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Continue efforts to disseminate and raise awareness of human rights through their integration in school and university curricula and in training programmes targeting the public sector and civil society institutions", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Increase rate of women participation in decision-making in the legislative organ to 25%", - "values": [ - "4 - General action" - ] - }, - { - "text": "Take practical and legislative measures to ensure impartial and effective investigations in the field of combating and preventing torture ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Reintroduce a moratorium on executions with a view to abolition of the death penalty", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Continue efforts aimed at the promotion and protection of human rights.", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Intensify its efforts to make effective the work to establish a national human rights commission in compliance with the Paris Principles", - "values": [ - "4 - General action" - ] - }, - { - "text": "Enhance measures to ensure the human right to adequate housing, primarily for low-income population groups ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Improve its cooperation with the United Nations Treaty Bodies by submitting overdue reports as a matter of priority", - "values": [ - "4 - General action" - ] - }, - { - "text": "Consider amending article 26 of the Penal Code to criminalize torture in line with article 52 of the new Constitution adopted in 2014", - "values": [ - "3 - Considering action" - ] - }, - { - "text": "Review domestic legislation with a view to implementing the provisions of the Convention on the Elimination of All Forms of Discrimination against Women in the national law", - "values": [ - "3 - Considering action" - ] - }, - { - "text": "Continue efforts to combat all forms of violence against women, in particular female genital mutilation", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Continue to take active measures to eliminate gender gaps in human development and gender-based inequalities in reproductive health, empowerment and economic activity", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Criminalize torture and ensure impartial and effective investigations related to allegations of torture and punish the perpetrators of acts of torture", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Ensure that all children living in detention are accorded special protection, including the nutrition, health and educational services necessary for their proper development", - "values": [ - "4 - General action" - ] - }, - { - "text": "Continue awareness-raising campaigns to combat and eradicate Female Genital Mutilation and other traditional practices harmful against women and girls ", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Sign and ratify the Optional Protocol to the Convention against Torture and other Cruel, Inhuman or Degrading Treatment or Punishment", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Take measures to address the persistence of preventive detention in police centres and the high risk of ill-treatment", - "values": [ - "4 - General action" - ] - }, - { - "text": "Establish a national human rights institution to complete and complement the excellent national efforts made so far ", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Step up efforts to meet the basic needs of society's exposed groups, in particular the millions of migrants and seafarers ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Favourably consider the establishment of a moratorium on the application of the death penalty. ", - "values": [ - "3 - Considering action" - ] - }, - { - "text": "Consider ratifying the 1951 Convention relating to the Status of Refugees", - "values": [ - "3 - Considering action" - ] - }, - { - "text": "Implement and further strengthen the right to organize freely, bargain collectively and strike ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Accede to the Convention against Torture.", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Accelerate legislative and judicial reforms, particularly on death penalty and administrative detention, to be in compliance with the ICCPR", - "values": [ - "4 - General action" - ] - }, - { - "text": "Develop a national strategy for human rights education in the school system in accordance with the Plan of Action of the World Programme, which outlines a process, including an assessment of the current situation as well as the development of a national strategy, with the full participation of all relevant stakeholders ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Intensify efforts to provide easy and free access to registration of birth to all children", - "values": [ - "4 - General action" - ] - }, - { - "text": "Continue strengthening efforts for providing quality and accessible health facilities and services to improve the disparity in life expectancy among the populations", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Accelerate efforts to incorporate the Convention on the Rights of Persons with Disabilities into national law", - "values": [ - "4 - General action" - ] - }, - { - "text": "Take additional measures to address all forms of violence against women and girls, including women and girls with disabilities", - "values": [ - "4 - General action" - ] - }, - { - "text": "Continue implementing effective actions to combat discrimination and guarantee indigenous peoples\u2019 rights, by improving access to public services, life expectancy, education, including comprehensive sexual education, infrastructure and salary", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Align the Criminal Code with the International Code of Medical Ethics and that Honduras considers to legalize abortion in case of rape or incest", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Proceed with the ratification of the Optional Protocol to the Convention on the Rights of the Child on the sale of children, child prostitution and child pornography ", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Guarantee the right to the protection of privacy to all persons and take measures to ensure equality and non-discrimination on all grounds, including sexual orientation, in conformity with articles 17 (1) and 26 of the ICCPR, by revising article 338 of its Penal Code, which criminalizes sexual acts between consenting adults of the same sex ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Take necessary steps to establish a credible national human rights institution in accordance with the Paris Principles", - "values": [ - "3 - Considering action" - ] - }, - { - "text": "Undertake appropriate awareness-raising efforts, and strengthen the measures to guarantee the human rights of the residents of areas affected by Ebola virus outbreak with assistance from the international community", - "values": [ - "4 - General action" - ] - }, - { - "text": "Strengthen the fight against discrimination based on sexual orientation or gender identity", - "values": [ - "4 - General action" - ] - }, - { - "text": "Develop effective measures to overcome continuing discriminatory patterns against ethnic minorities and lesbian, gay, bisexual and transgender persons through education and training", - "values": [ - "4 - General action" - ] - }, - { - "text": "Implement the recommendations made by the Special Rapporteur on freedom of opinion and expression following his 2011 visit ", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Speed up the finalization and implementation of the National Gender Policy", - "values": [ - "4 - General action" - ] - }, - { - "text": "Make effort to put an end to the attacks by all armed groups against unarmed civilians in the Central African Republic", - "values": [ - "4 - General action" - ] - }, - { - "text": "Ensure adequate living conditions for migrants, refuges and asylum seekers for the effective promotion and protection of their rights", - "values": [ - "4 - General action" - ] - }, - { - "text": "Ensure the rights of migrants and ethnic and religious minorities", - "values": [ - "4 - General action" - ] - }, - { - "text": "Implement formal and effective prevention and protection mechanisms for women victims of violence and female genital mutilation", - "values": [ - "4 - General action" - ] - }, - { - "text": "Abolish discriminatory laws against LGBT persons and also amend its national legislation in order to include sexual orientation and gender identity as grounds of discrimination", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Adhere to the main international instruments on human rights to which it is not a party, in particular the International Convention for the Protection of All Persons from Enforced Disappearances", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Consider becoming a party to the International Convention on the Protection of the Rights of All Migrant Workers and Members of their Families ", - "values": [ - "3 - Considering action" - ] - }, - { - "text": "Continue its efforts in fostering cooperation with its neighbours to address the problem of trafficking in women and children", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Put an end to inequalities between men and women, including with respect to access to property.", - "values": [ - "4 - General action" - ] - }, - { - "text": "Investigate the deaths in government custody ", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Decriminalize defamation and make it a civil offence in accordance with international standards", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Encourage the participation of minorities, such as the Pygmies, in the political, economic and social life of the country", - "values": [ - "4 - General action" - ] - }, - { - "text": "Take measures to ensure that excessive force is not employed while apprehending and detaining criminals ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Continue promulgating legislation and promoting policies necessary to strengthen the protection of, and respect for, the rights of women and their role in society, while considering them an essential partner in the development process ", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Continue addressing constitutional reform especially in relation to combating rural poverty and improving programmes to support the access of low-income families to food", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "High priority is given to the fight against domestic violence, forced marriages and trafficking in human beings, including through the strengthening of provisions for the investigation of and punishments for such crimes, the provision of support and protection to the victims, and raising public awareness of them ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Continue strengthening policies to integrate the Roma population and ensure they have access to basic health and social services, with particular emphasis on the rights to safe drinking water and sanitation, as well as education, housing and employment", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Provide adequate protection to all categories of workers and their families, including self-employed workers through the social security regime.", - "values": [ - "4 - General action" - ] - }, - { - "text": "Ratify, without reservations, the Convention on the Non Applicability of Statutory Limitations to War Crimes and Crimes against Humanity", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Take immediate and long term actions to eliminate discrimination and violence against women, narrow the gender gap in economic and social settings, and undertake public campaigns against gender-based violence", - "values": [ - "4 - General action" - ] - }, - { - "text": "Finalize, with international technical and financial assistance, measures for the creation of a national human rights institution ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Strengthen measures to combat all forms of discrimination, focusing on sensitization and monitoring", - "values": [ - "4 - General action" - ] - }, - { - "text": "Consider extending an open and standing invitation to the special procedures", - "values": [ - "3 - Considering action" - ] - }, - { - "text": "Further step up efforts to combat trafficking, including measures to protect the victims of human trafficking, as well as consider the possibility of inviting the Special Rapporteur on trafficking in persons, especially women and children", - "values": [ - "4 - General action" - ] - }, - { - "text": "Turn more attention to some serious issues of combating impunity for law enforcement personnel and establishing an independent and effective national preventive mechanism", - "values": [ - "4 - General action" - ] - }, - { - "text": "Ensure that human rights defenders in rural areas are equally and effectively protected also in view of the existing challenges of the implementation of the Victims and Land Restitution Law ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Establish a separate and independent institution for safeguarding children rights ", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Guarantee that refugee and asylum-seeking children have access to appropriate medical services", - "values": [ - "4 - General action" - ] - }, - { - "text": "Repeal the death penalty, as previously recommended", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Adopt measures guaranteeing the protection of women, who are victims of discrimination and violence on the grounds of their sexual orientation or gender condition", - "values": [ - "4 - General action" - ] - }, - { - "text": "Adopt appropriate measures against perpetrators of police brutality that affect some asylum seekers, migrants and others", - "values": [ - "4 - General action" - ] - }, - { - "text": "Intensify efforts to improve the status of women and girls, including enhanced reproductive health measures, the fight against sexual and gender-based violence and harmful traditional practices, the domestication of the CEDAW Convention and to include women in decision-making at all levels", - "values": [ - "4 - General action" - ] - }, - { - "text": "Implement legislation to regulate the living and working conditions of domestic workers and ensure that it is compatible with the standards of the ILO Convention No. 189 ", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Incorporate CEDAW duly into its national legal framework ", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Continue to improve the conditions of persons deprived of liberty and expand the prison infrastructure in order to reduce overcrowding and improve detainees' living conditions ", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Strengthen strategies and programmes for poverty reduction and job creation, making them uniform among the nine regional states, for better effectiveness of human rights ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Accelerate the approval of the bill submitted to the Council of Ministers on prevention of enforced disappearances and repression of torture", - "values": [ - "4 - General action" - ] - }, - { - "text": "Reject any incitement to violence in the context of the State-sponsored campaign against illegal drugs and hold perpetrators of such incitement accountable", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Ratify the OP-CAT as well as the Rome Statute of the International Criminal Court, and to incorporate their provisions into domestic law ", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Strengthen safeguards for the exercise of freedom of expression and adopt legislation to protect media diversity.", - "values": [ - "4 - General action" - ] - }, - { - "text": "Criminalize the practice of female genital mutilation ", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Review and withdraw reservation to articles 2 and 16 of the Convention on the Elimination of All Forms of Discrimination against Women (CEDAW)", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "The ruling political party has committed to field at least 30 per cent women candidates at the next round of national elections in 2013.", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Implement without delay the recently adopted Action Plan on Torture and ensure that safeguards against torture are effectively granted in practice", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Revise the Family Code to prohibit polygamy and the marriage of minors, as well as to guarantee equality between men and women in inheritance matters and in the right to guardianship", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Prohibit corporal punishment in all settings through the Kingdom of the Netherlands ", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Take concrete measures to ensure the independence of the Constitutional Court and the protection of human rights and fundamental freedoms, and that political pressure is not being applied to judicial decision-making", - "values": [ - "4 - General action" - ] - }, - { - "text": "Continue to seek measures to avoid children staying with their imprisoned parents who are serving prison sentences, so as not to expose them to conditions that may affect their development", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Take all necessary measures to guarantee dignified conditions of detention, corresponding to the level of development of the country.", - "values": [ - "4 - General action" - ] - }, - { - "text": "Become a party to the ICCPR, the ICESCR, the ICERD and the CAT, as well as the Rome Statute of the ICC ", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Take measures to accelerate the increase in women's political participation at all levels of political and public life, particularly in Parliament and in the foreign services ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Accelerate the process of adoption of the draft law on the elimination of the violence against women", - "values": [ - "4 - General action" - ] - }, - { - "text": "Put in place measures that are in line with the international standards, especially the ILO Conventions No. 138 (1973) concerning Minimum Age for Admission to Employment and No. 182 (1999) concerning the Worst Forms of Child Labour", - "values": [ - "4 - General action" - ] - }, - { - "text": "Pursue efforts to promote the right to work with a view to combating unemployment whose rate has reached 18.8 percent", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Continue its efforts to enhance human rights", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Ratify the Optional Protocol to the Convention on the Elimination of All Forms of Discrimination against Women", - "values": [ - "3 - Considering action" - ] - }, - { - "text": "Take further action to combat corruption especially in the public sector.", - "values": [ - "4 - General action" - ] - }, - { - "text": "Execute the procedures for family reunification of recognized refugees with utmost speed to ensure the protection of family life of the persons concerned.", - "values": [ - "4 - General action" - ] - }, - { - "text": "Conclude the process of revision of its Constitution and national legislation so as to guarantee that they are compatible with regional and international human rights instruments to which the country is a State party", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Take further steps in combating gender-based violence, domestic violence, including sexual abuse, against women and girls", - "values": [ - "4 - General action" - ] - }, - { - "text": "Consider the possibility of acceding to the main universal human rights treaties to which Samoa is not a party, including the International Convention on the Elimination of All Forms of Racial Discrimination, the International Covenant on Economic, Social and Cultural Rights and the Convention on the Rights of Persons with Disabilities, by seeking, if need be, technical assistance from OHCHR", - "values": [ - "3 - Considering action" - ] - }, - { - "text": "Finalize the Federal Constitution by the end of 2011 ", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Accede to the Second Optional Protocol to the International Covenant on Civil and Political Rights aimed at abolishing the death penalty", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Amend the Women's Bill as well as laws related to marriage, divorce and inheritance to comply with its obligations under the Convention on the Elimination of Discrimination Against Women", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Grant access to the United Nations Rapporteurs on torture and on the independence of judges and lawyers, and facilitate their visits", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Give priority and pay special attention to the problems faced by different minority groups, in particular their student communities.", - "values": [ - "4 - General action" - ] - }, - { - "text": "That a strategic plan be implemented to ensure that all schools and educational institutions are reopened in the near future", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Enact and implement a comprehensive national urban policy to address the human rights problems arising from rapid urbanization", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Provide regular periodic reports to the United Nations treaty bodies and submit them in a timely fashion.", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Intensify efforts to address the disadvantages faced by minority groups with regard to employment and remuneration based on language proficiency", - "values": [ - "4 - General action" - ] - }, - { - "text": "Promptly establish a national mechanism for the prevention of torture", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Expand current efforts, as appropriate, to counter online intolerance", - "values": [ - "4 - General action" - ] - }, - { - "text": "Establish an effective and independent mechanism for investigating complaints against law enforcement officials, increasing public trust that suspected abuses will be properly investigated", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Continue efforts, with the support of the international community, to ensure timely reporting to treaty bodies ", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Commute all death sentences into prison sentences ", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Put an end to direct and indirect restrictions on freedom of expression and adopt appropriate measures, including legislative measures, to prevent any intimidation of journalists", - "values": [ - "4 - General action" - ] - }, - { - "text": "Ratify the Convention on Enforced Disappearances.", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Take necessary measures to ensure that women, girls and boys are prevented from being trafficked, sexually exploited or sold for prostitution ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Continue supporting the efforts to empower women in social and public life, including by providing adequate financial and human resources to implement policies and programmes afforded to them ", - "values": [ - "4 - General action" - ] - }, - { - "text": "To pursue its efforts to accede to international instruments, in particular human rights instruments", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Ensure that all those responsible for serious human rights abuses and violations of international humanitarian law are brought to justice in accordance with its international obligations ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Further intensify its efforts in the implementation of laws and policies aimed at promoting and protecting the rights of women, children and other vulnerable groups", - "values": [ - "4 - General action" - ] - }, - { - "text": "Take all necessary measures to ensure the protection of children's rights, in line with the international obligations of Solomon Islands, particularly by putting in place a juvenile justice system", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Ensure the reporting and investigation of cases of violence against women, effective awareness campaign against violence and consolidate measures to address sexual abuses and exploitation of children", - "values": [ - "4 - General action" - ] - }, - { - "text": "Fully cooperate with ILO and implement the recommendations of the ILO Inquiry Commission ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Formally abolish the death penalty for all cases and under all circumstances, as well as ratify the Second optional Protocol to the International Covenant on Civil and Political Rights ", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Protect the primary school education sector by maintaining adequate and appropriate budgets", - "values": [ - "4 - General action" - ] - }, - { - "text": "Take all appropriate measures to improve the situation of women's rights on the ground and retain in the draft Constitution currently under discussion both the provision on equality before the law regardless of sex and the provision prohibiting any law, culture, custom or tradition that undermine the dignity, welfare, interests or status of women.", - "values": [ - "4 - General action" - ] - }, - { - "text": "Consider establishing a human rights watchdog at the national level, with a proper mandate and adequate resources, in line with the Paris Principles", - "values": [ - "3 - Considering action" - ] - }, - { - "text": "Redouble efforts to enhance the positive results in the area of economic, social and cultural rights to provide more benefits to the most vulnerable populations, in particular children, indigenous peoples, people of African descent and the rural population ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Work to encourage both Qatari and expatriate women to report incidents of sexual violence, such as rape, to the authorities and increase the awareness of police, prosecutors and judges about the seriousness of the issue ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Continue to address the issue of street children by adopting a comprehensive national strategy to provide these children with official documents and adequate assistance, including recovery and social reintegration services", - "values": [ - "4 - General action" - ] - }, - { - "text": "Adopt and implement, without delay, the draft Food and Nutrition Bill of 2008 and adequately finance school meal programmes, in consultation with all relevant stakeholders", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Implement the recommendation of its National Dialogue Conference to set the minimum marriage age at 18 years in line with its obligation under the Convention on the Rights of the Child to take measures with a view to abolishing practices detrimental to the health of children ", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Implement all necessary measures aimed to abolish discrimination against children belonging to most vulnerable groups, through a greater and more focused provision of social services, carrying out awareness-raising programmes on their particular needs and a greater access to education", - "values": [ - "4 - General action" - ] - }, - { - "text": "Work on building the capacity of law enforcement officials in the area of human rights and provide them with the necessary education to guarantee the best standards in this regard", - "values": [ - "4 - General action" - ] - }, - { - "text": "Put a complete moratorium on the use of the death penalty and, short of such a decision, prohibit the death penalty for juvenile offenders and abandon the practice of public executions", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Ratify and implement the Convention of the Rights of Persons with Disabilities ", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Continue efforts to incorporate the standards of international humanitarian law into national legislation", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Initiate a long-term awareness-raising campaign against domestic violence and its root causes among the general public as well as professionals such as medical doctors, judges and the police and monitor and evaluate regularly the implementation of the domestic violence law and policies in order to strengthen the remedies and legal protection available to victims of domestic violence", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Provide adequate resources to enforce laws against human trafficking through the investigation, prosecution and, if found guilty, conviction of trafficking offenders, including in cases involving forced labour or commercial sexual exploitation", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Develop the legal framework imposing a prior authorization regime, in order to allow the emergence of a modern civil society", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Develop concrete measures to enhance and monitor the level of access and quality of health-care services for women", - "values": [ - "4 - General action" - ] - }, - { - "text": "Consider enacting a law against racial discrimination and continue efforts to put an end to racism and hate speech", - "values": [ - "4 - General action" - ] - }, - { - "text": "Continue to implement the National Strategy to Combat Trafficking in Persons ", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Strengthen its internal human rights capacity and mechanisms to ensure timely cooperation with treaty bodies, in particular fulfilling its reporting obligations under treaty bodies", - "values": [ - "4 - General action" - ] - }, - { - "text": "Amend article 230 of the Criminal Code to end criminalization of same-sex sexual relations", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Implement legislation prohibiting corporal punishment of children in the home and conduct awareness-raising campaigns on the harmful effect of corporal punishment and on the use of alternative and non-violent forms of discipline in a manner consistent with the child's dignity ", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "The Government is committed to enforcing internationally recognised media standards and has consequently promulgated a law for the regulation, registration and conduct of media organisations.", - "values": [ - "4 - General action" - ] - }, - { - "text": "Eliminate existing gaps in the legislation governing the work of the High Council of Justice in order to make sure that its powers are balanced by adequate guarantees of transparency and accountability", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Take the necessary steps to include the Human Rights Ombudsman under Group A of the Paris Principles relating to the status of national human rights institutions", - "values": [ - "4 - General action" - ] - }, - { - "text": "Ensure full implementation of the Schools Act by submitting a report to the Public Defender of Rights evaluating its impact on ending discrimination and segregation of pupils with mild mental disabilities, including children belonging to the Roma minority", - "values": [ - "4 - General action" - ] - }, - { - "text": "Respect religious and cultural rights of the Palestinian people in the Occupied Palestinian Territories, including Jerusalem, in accordance with Council resolution 6-19.", - "values": [ - "4 - General action" - ] - }, - { - "text": "Step up efforts to combat human trafficking and strengthen the protection of victims", - "values": [ - "4 - General action" - ] - }, - { - "text": "Continue its efforts to increase the percentage of women in decisionmaking positions", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Define discrimination in national legislation in line with the ICERD, and prohibit all forms of direct and indirect discrimination, including on the basis of age, gender, religion, sexual orientation, ethnicity, or nationality", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Accede to OP-CAT and establish its national preventive mechanism accordingly", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Revise the amendment to the Law on Information and Communication Networks to prevent the application of criminal legislation concerning defamation from being extended to any Internet content, and to strengthen freedom of expression and of the press with regard to political issues", - "values": [ - "3 - Considering action" - ] - }, - { - "text": "Include constitutional measures to provide for freedom of religion or belief to all persons residing in the country ", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Conduct impartial, public and thorough investigation of cases of possible involvement of Sweden in the unlawful detention, transportation, interrogation and torture by officers of the CIA of the USA of suspects of terrorism", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Promptly complete the process of ratification of other fundamental instruments, in particular the ICCPR and ICESCR, and consider ratifying the CAT, the CERD and the Rome Statute", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Introduce a national plan of action to combat violence against women", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Engage in an all-inclusive and participatory reform process and ensure that all sections of the population, including women, persons with disabilities, minority and indigenous groups and civil society organisations are brought on board ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Cease imprisoning conscientious objectors and consider granting them the right to serve instead with a civilian body independent of the military", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "End impunity for human rights violations, taking forward the recommendations of the Special Rapporteur, by investigating, prosecuting and punishing those responsible with the assistance of the United Nations ", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Adopt and implement at soon as possible the draft law for the creation of the national mechanism for the prevention of torture ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Develop mechanisms to improve the safety of journalists and ensure that all cases of attacks are investigated by independent and impartial bodies ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Better integrate the concerns of elderly persons and those with disabilities into public policies", - "values": [ - "4 - General action" - ] - }, - { - "text": "Promote the effective protection of children's rights in different relevant areas", - "values": [ - "4 - General action" - ] - }, - { - "text": "Decriminalize consensual sexual acts between adults of the same sex.", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Criminalize marital rape and adopt further measures to ensure wide accessibility and public knowledge of support available to victims of domestic violence so that they are able to protect themselves, initiate effective and fast investigations leading to punishment of perpetrators", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Develop legislation and measures to implement it to better protect rights of women and ensuring gender equality ", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Establish the institution of a children's ombudsman ", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Consider the establishment of a national commission for women to facilitate a holistic consideration at the national level of issues related to women.", - "values": [ - "3 - Considering action" - ] - }, - { - "text": "Make progress towards the protection of LGBTI people, by creating the conditions allowing them to access to basic services in the fields of health, work and religious activities, and in addition by eliminating definitely from the Criminal Code sodomy as a crime", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Harmonize the General Act on Women's Access to a Life Free of Violence and pertinent federal legislation", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Adopt measures to combat discrimination and stereotypes on the role and responsibilities of women in society ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Reinforce relevant institutional capacity to maximize the implementation of its five-year plan 2006-2012 for the elimination of the worst forms of child labour ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Continue to resist attempts to enforce any values or standards beyond the universally agreed human rights norms.", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Continue its efforts in giving due attention to the inter-ethnic issues including by ensuring effective implementation of its Policy Framework on Strengthening National Unity and Inter-Ethnic Relations", - "values": [ - "4 - General action" - ] - }, - { - "text": "End the occupation of all Palestinian and Arab territories occupied since 1967, including Jerusalem and occupied Syrian Golan, and recognize and respect the right of the Palestinian people to self-determination and their right to establish an independent sovereign Palestinian State with Jerusalem as its capital.", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Strengthen efforts to fight against poverty", - "values": [ - "4 - General action" - ] - }, - { - "text": "Continue empowering women, children and underprivileged sections of society ", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Continue to request technical assistance and capacity-building from OHCHR and the international community ", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Consider developing a comprehensive plan for the training of the judiciary, as well as a structured remuneration package that addresses conditions of service. ", - "values": [ - "3 - Considering action" - ] - }, - { - "text": "Decriminalize free consenting sexual relations between adults of the same sex and implement public policies to address discrimination based on sexual orientation or gender identity", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Full abolition of capital punishment in all cases and circumstances", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Strengthen protection of the economic and social rights of internally displaced persons, including by protecting against unlawful evictions and resolving issues related to legal ownership of living spaces currently inhabited by internally displaced persons", - "values": [ - "4 - General action" - ] - }, - { - "text": "Continue to seek technical and financial assistance from the international community to bolster national efforts in the enjoyment of all human rights, including the realization of the right to development ", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Strengthen its efforts to eradicate corruption in order to achieve the objectives of good governance", - "values": [ - "4 - General action" - ] - }, - { - "text": "Ensure that school textbooks do not contain elements that compromise the objectivity and freedom of historical research as well as the respect of rights and dignity of all", - "values": [ - "4 - General action" - ] - }, - { - "text": "Strengthen its efforts to ensure full equality between men and women and bring legislation in line with the recommendations of the Committee on the Elimination of Discrimination against Women, as well as human rights obligations and other international standards.", - "values": [ - "4 - General action" - ] - }, - { - "text": "Continue the work already under way aimed at improving the judicial system, including the efforts to establish a new Code of Criminal Procedure", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Intensify the fight against the so called ritual crimes", - "values": [ - "4 - General action" - ] - }, - { - "text": "Increase the minimum age of criminal responsibility from 10 to 18 years", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Continue efforts in strengthening its national legal frameworks, including by ratifying the ICESCR ", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Ratify and fully align its national legislation with the Rome Statute of the International Criminal Court", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Lift undue restrictions on the exercise of fundamental freedoms, particularly section 61 of the referendum law and Order number 7/2557 of the National Council for Peace and Order, to allow all Thai people to participate fully in the political reform processes, including efforts to produce a new constitution", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Modify the military code in order to eliminate capital punishment for all crimes", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Take on challenges facing the Philippines Human Rights Commission and strengthen it on the institutional level ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Resolve alleged discrimination in the restitution of property with regard to certain minority religious groups", - "values": [ - "4 - General action" - ] - }, - { - "text": "Build on its achievements and national policies to further promote the rights of women ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Follow up so as to complete its Health Master Plan 2012-2016", - "values": [ - "4 - General action" - ] - }, - { - "text": "Continue efforts to guarantee the representation in political and public life of women belonging to disadvantaged groups like women with disabilities, ethnic minorities, Roma people and migrants", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Further its work in empowering women, promoting gender equality and eliminating discrimination and violence against women and children by, inter alia, amending and promulgating relevant laws and implementing the national plan for the advancement of Bahraini women", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "End acts of repression against persons belonging to ethnic or religious minorities, particularly the Baha'i, and to respect their rights", - "values": [ - "4 - General action" - ] - }, - { - "text": "Organize campaigns aiming at promoting gender equality and to reinforce existing mechanisms to combat and to punish perpetrators of violence against women", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Proceed to further actions in order to provide a safe working environment for journalists in the country", - "values": [ - "4 - General action" - ] - }, - { - "text": "Ratify OP-CAT to establish a national independent mechanism for visiting the detention centres ", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Adopt a definition of torture under Swedish law that conforms to the definition under the Convention against Torture", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Improve further the child protection system and create conditions for ensuring the rights of the child to grow and develop in the family environment", - "values": [ - "4 - General action" - ] - }, - { - "text": "Continue to adopt measures to improve access to housing for persons with limited resources ", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Accelerate the examination of complaints on discrimination and apply relevant judgments", - "values": [ - "4 - General action" - ] - }, - { - "text": "Ensure that birth registration is free and compulsory in practice and guarantee that children without a birth certificate are not deprived of access to education, health care and other social services, in line with the recommendation of the Committee on the Rights of the Child", - "values": [ - "4 - General action" - ] - }, - { - "text": "Implement the Law on Social Protection of Disabled Persons as well as international obligations that Moldova has agreed regarding people who are disabled", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Make additional efforts to ensure that domestic law is brought into line with the provisions of CEDAW, particularly concerning marriage, divorce, inheritance, ensuring equality of rights for both spouses and the adoption of comprehensive measures to combat all forms of violence against women and girls, and the adoption of laws on domestic violence and all forms of sexual abuse ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Reinforce legislative measures to combat sexual exploitation and sexual abuses, in line with what the Committee on the Rights of the Child recommended ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Commute all death sentences to prison terms and ratify the Second Optional Protocol to the International Covenant on Civil and Political Rights with a view to definitively abolishing the death penalty ", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Modify the discriminatory provisions of the Family Code in order to harmonize those provisions with the CEDAW ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Accelerate efforts aimed at fully implementing the Development Plan for the Reduction of Violence 2010-2014, with a view to, among others, addressing violence against women ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Equatorial Guinea committed itself to study each and every recommendation carefully, with the will to implement them.", - "values": [ - "3 - Considering action" - ] - }, - { - "text": "Take measures to strengthen the independence of the judiciary.", - "values": [ - "4 - General action" - ] - }, - { - "text": "Sign the OP-CAT", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Continue efforts to raise greater awareness among Bhutanese in all areas of the country of\nthe democratic process, including voting rights, in order to foster greater political participation by all\nmembers of society ", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Encourages the reinforcement of freedom of expression and assembly in particular through the revision of article 51 of the Press Code. ", - "values": [ - "4 - General action" - ] - }, - { - "text": "China is committed to carrying out exchanges and cooperation on human rights with all countries, and to promoting the resolution of human rights issues in a fair, objective and non-selective manner by the international community.", - "values": [ - "1 - Minimal action" - ] - }, - { - "text": "Prohibit all forms of violence against children, including corporal punishment, in all settings ", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Continue strengthening the policies in favour of the rights of peasants and other persons working in rural areas", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Ratifiy the second Optional Protocol to ICCPR to abolish the death penalty. until this happens it commends the reduced number of crimes to which this penalty is applicable and hopes that this will be done in accordance with international standards and in full transparency.", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Continue its efforts to implement its strategy to combat terrorism and violent extremism in conjunction with all relevant authorities", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Continue promoting gender equality through specific laws, plans and programmes", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Immediately introduce a moratorium on executions with a view to abolishing the death penalty", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Ensure compliance with its international obligations on the right to a fair and timely trial based on clear charges and independent investigations, respecting the right of access and contact to lawyers and family", - "values": [ - "4 - General action" - ] - }, - { - "text": "Stick to its international commitments, particularly to article 19 of the International Covenant on Civil and Political Rights ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Take concrete measures to ensure necessary resources to increase effectiveness in the protection of rights of the child, including through effective monitoring of conditions in institutional care and establishing of a complaint mechanism for children, to develop and adjust new mechanisms for the protection of children based on serious research and wide piloting, and to create mechanisms to deliver foster care services", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Consider establishing or strengthening a national mechanism responsible for coordination, implementation, reporting and follow-up, in line with the critical elements (best practices) of the OHCHR global study and guide concerning national mechanisms for reporting and follow-up", - "values": [ - "3 - Considering action" - ] - }, - { - "text": "Accede to and fully align its national legislation with the Rome Statute of the International Criminal Court (ICC), including by incorporating provisions to cooperate promptly and fully with the ICC", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Implement the recently approved legislation on discrimination and violence against women and on prohibition of Genital Female Mutilation ", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Accelerate judicial reforms in order to ensure the independence and impartiality of the system and a corruption-free environment", - "values": [ - "4 - General action" - ] - }, - { - "text": "Continue to respect international humanitarian law and international law in general", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Take necessary measures to combat impunity, by incorporating the Rome Statute into domestic legislation", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Take legal measures to eliminate discrimination against children of ethnic minorities, non-Japanese nationality and children with disabilities", - "values": [ - "4 - General action" - ] - }, - { - "text": "Continue its cooperation with the international community, especially in two fields: the solution of problems of refugees and IDPs. and in its 2006-2015 State program on poverty alleviation and development", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Declare a moratorium on executions in line with the General Assembly resolutions 62-149 and 63-168", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Make changes to the Constitution Amendment Act of 2010 to fully guarantee freedom of religion or belief ", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Continue the successful social policies on education and health for the benefit of women, girls and older persons", - "values": [ - "4 - General action" - ] - }, - { - "text": "Investigate allegations concerning the deaths of people arrested during the peaceful demonstration in February 2009", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Ensure that all girls and women have access to comprehensive sexual and reproductive health promotion and care, including access to modern contraceptive methods", - "values": [ - "4 - General action" - ] - }, - { - "text": "Enact laws that enhance equal access to property rights for women", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Ensure full and effective implementation of the existing legislation and policies combating violence against women and adopt effective measures to reduce violence and impunity", - "values": [ - "4 - General action" - ] - }, - { - "text": "Continue the efforts aimed at dealing with mixed migration flows and implement appropriate identification mechanisms and other measures deriving from them in order to respond to the special needs of all persons in need of protection and support ", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Publicly condemn any attack or intimidation of journalists and human rights defenders, investigate such acts and bring perpetrators to justice", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Adopt the necessary measures to achieve the elimination of existing patriarchal and gender stereotypes that lead to discrimination against women ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Step up its efforts to combat racist, anti-Semitic and extremist expressions and actions ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Conduct in-depth examinations into how race-related issues are affecting law enforcement and the administration of justice", - "values": [ - "4 - General action" - ] - }, - { - "text": "With the assistance of the international community, increases activities aimed at incorporating human rights education in the official school curricula and strengthen the capacity of national authorities to promote the enjoyment of human rights.", - "values": [ - "4 - General action" - ] - }, - { - "text": "Ensure that a national preventive mechanism is swiftly established and that the mechanism is underpinned by a legal basis and receives the human resources and financial means necessary to carry out its mandate in an independent and efficient manner", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Allocate additional resources to the State's Prosecutor's Office to ensure the full application of the Instructions it issued in October 2008 with regard to local war crimes proceedings", - "values": [ - "4 - General action" - ] - }, - { - "text": "Ratify the International Covenant on Civil and Political Rights and the other core international human rights instruments, as well as their optional protocols", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Strengthen its cooperation with the Human Rights Council special procedures and treaty bodies in order to improve the performance by Guinea of its international obligations ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Take tangible measures to ensure that women have access to all public services, in particular to public health services ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Strengthen the National Office against Racial Discrimination in terms of its capacity to provide assistance to victims and raise awareness", - "values": [ - "4 - General action" - ] - }, - { - "text": "Take measures to ensure free and compulsory primary education", - "values": [ - "4 - General action" - ] - }, - { - "text": "Seek to ensure effective participation of the Roma in the process of ensuring their equal and non-discriminatory treatment ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Continue its efforts to provide more freedom of action to civil society organizations and human rights activists so that they may continue to promote and protect human rights", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Implement the National Action Plan to address violence related to accusations of sorcery, including by ensuring adequate funding", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Ensure that human rights defenders are able to carry out their legitimate work in a secure and free environment", - "values": [ - "4 - General action" - ] - }, - { - "text": "Continue efforts to promote economic diversification in order to promote the standard of living of citizens", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Adopt the Media Policy in Parliament ", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Take all necessary measures for an effective and exhaustive implementation of the law against discrimination", - "values": [ - "4 - General action" - ] - }, - { - "text": "Ensure that the Office of the Ombudsman is in line with the Paris Principles related to the National Institutions for promotion of human rights", - "values": [ - "4 - General action" - ] - }, - { - "text": "Continue to provide the police, prison and judicial personnel with practically oriented human rights training and education.", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Consider adhering to the International Convention on the Protection of the Rights of All Migrant Workers and Members of Their Families", - "values": [ - "3 - Considering action" - ] - }, - { - "text": "Revise the Family Code and adopt and implement other appropriate measures to prevent marriages of minors ", - "values": [ - "3 - Considering action" - ] - }, - { - "text": "Adopt and implement a National Gender Policy, in consultation with all interested stakeholders, prior to its next Universal Periodic Review", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Strengthen school infrastructure, taking into account the concerns of women and girls, particularly as regards access to appropriate sanitation facilities", - "values": [ - "4 - General action" - ] - }, - { - "text": "Take concrete measures to eliminate gender stereotypes and discrimination against women", - "values": [ - "4 - General action" - ] - }, - { - "text": "Review its legislation that restricts the media freedoms, freedom of assembly and association, and bring them in conformity with international human rights law", - "values": [ - "3 - Considering action" - ] - }, - { - "text": "Continue efforts to protect and promote the rights of the marginalized and vulnerable sections of the society", - "values": [ - "4 - General action" - ] - }, - { - "text": "Examine the possibility of creating a monitoring system of international recommendations to facilitate the systematization and follow-up of the recommendations from human rights bodies and special procedures", - "values": [ - "3 - Considering action" - ] - }, - { - "text": "Consider ratifying the International Convention on the Protection of the Rights of All Migrant Workers and Members of Their Families (ICRMW) ", - "values": [ - "3 - Considering action" - ] - }, - { - "text": "Fast-track the process to make the national institution for the protection of human rights fully compatible with the Paris Principles", - "values": [ - "4 - General action" - ] - }, - { - "text": "Adopt all necessary measures to ensure freedom of expression and to prevent any interference with press freedoms.", - "values": [ - "4 - General action" - ] - }, - { - "text": "Take further steps to protect right to assembly in line with their international obligations under the International Covenant on Civil and Political Rights and the provisions in the Ugandan constitution ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Ratify a certain number of human rights treaties such as the Optional Protocol to the International Covenant on Economic, Social and Cultural Rights", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Ratify swiftly the Optional Protocol to the Convention on the Rights of the Child on a communications procedure", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Systematically prosecute all perpetrators of slavery and slavery-like practices in line with the provisions set out in the Criminal Code ", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Continue efforts aimed at improving access to education, particularly in the rural areas, including by, inter alia, increasing the number of teachers, ensuring adequate infrastructure, learning materials and educational tools ", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Consider the next phase of the Action Plan on Gender Equality to include comprehensive and achievable goals to combat discrimination towards women in all spheres of life, including work and education", - "values": [ - "3 - Considering action" - ] - }, - { - "text": "Strengthen the role of the police and develop its capacities in order for it to be able to carry out its role in dealing with the citizens in conformity with the law", - "values": [ - "4 - General action" - ] - }, - { - "text": "Explore possibilities to further strengthen the competence, role and mandate of the human rights protection offices", - "values": [ - "3 - Considering action" - ] - }, - { - "text": "Continue its efforts to eliminate all forms of discrimination, notably against lesbian, gay, bisexual, transgender and intersex persons and against women in the labour market", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Establish an independent national human rights institution, in accordance with the Paris Principles.", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Reinforce the steps taken to reduce unemployment and raise living standards by providing more access to economic-based training and literacy courses ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Continue to strengthen its efforts to safeguard and advance the rights of its children ", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Continue and consolidate its current programmes for the benefit and protection of elderly persons", - "values": [ - "4 - General action" - ] - }, - { - "text": "Review legislation in conformity with international commitments ", - "values": [ - "3 - Considering action" - ] - }, - { - "text": "Ratify the International Convention for the Protection of All Persons from Enforced Disappearance.", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Ratify the Convention of the Rights of Persons with Disabilities without reservations.", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Provide legal protection against forced evictions", - "values": [ - "4 - General action" - ] - }, - { - "text": "Investigate all complaints of human rights violations committed by state security agencies and ensure that cases of violations are brought before the courts", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Guarantee the funding of institutions which promote tolerance and the smooth integration of foreigners", - "values": [ - "4 - General action" - ] - }, - { - "text": "Establish a national human rights institution fully compliant with the Paris Principles by elaborating an action plan for the protection and promotion of human rights ", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Place high priority on the introduction of comprehensive measures to address all forms of violence against women and children, including redress and protection of the victims.", - "values": [ - "4 - General action" - ] - }, - { - "text": "Recognize victims of trafficking, often young people, as such and provide them with protection and assistance", - "values": [ - "4 - General action" - ] - }, - { - "text": "Begin the accreditation process, as the Paris Principles play an important role in the promotion and protection of international human rights standards at the national level ", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Ratify those international instruments, which have not yet been ratified ", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "In the context of continuing its consideration concerning its accession to international treaties, accord priority to accession to the two fundamental international human rights conventions ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Put more financial resources to eradicate poverty, especially in rural areas", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Continue to explore methods of development and implementation of human rights in harmony with its characteristics, its realities and the needs of Chinese society", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Address urgently the intensive use of chemicals in agriculture", - "values": [ - "4 - General action" - ] - }, - { - "text": "Take steps for eliminating religious and racial profiling faced by minorities including Muslims, Roma people and Afro-Swedes and prosecute perpetrators of xenophobic crimes", - "values": [ - "4 - General action" - ] - }, - { - "text": "Properly address discrimination against women, also by means of sensitizing civil society.", - "values": [ - "4 - General action" - ] - }, - { - "text": "Take further steps to advance women in leadership positions in politics and the economy and create favourable conditions for their participation in the electoral process", - "values": [ - "4 - General action" - ] - }, - { - "text": "Promote awareness-raising programmes on the importance of education of children.", - "values": [ - "4 - General action" - ] - }, - { - "text": "Ensure systematic provision of adequate information to all refugees and migrants arriving in Greece on asylum procedures, the Eurpoean Union relocation scheme and family reunification possibilities", - "values": [ - "4 - General action" - ] - }, - { - "text": "Continue strengthening frameworks of cooperation between law enforcement apparatuses and civil society, in order to have further meaningful dialogue to address all relevant human rights challenges in the country", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Continue the efforts of women's empowerment and ensure their enjoyment of their legitimate rights ", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Strengthen the mechanisms of legal and social protection of children against violence, particularly sexual, of which they are victims ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Engage fully with civil society in tackling the issues of housing and justice, and women's and children's rights ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Eliminate racial segregation in schools so that all children, regardless of their ethnic origin, have access to education", - "values": [ - "4 - General action" - ] - }, - { - "text": "Increase measures to combat racial violence and incitement.", - "values": [ - "4 - General action" - ] - }, - { - "text": "Take the necessary measures to ensure that Japanese companies take into consideration the respect of human rights in their activities abroad", - "values": [ - "3 - Considering action" - ] - }, - { - "text": "Strengthen measures aiming at combating discrimination, racism and xenophobia in the country, notably against migrants, asylum seekers and the Roma community", - "values": [ - "4 - General action" - ] - }, - { - "text": "Implement the recommendations of the Committee against Torture", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Create an independent mechanism to look into the issue of disappeared persons with its own unique database", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Make a long-term plan for the step-by-step ratification of or accession to all core international human rights instruments", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Take extensive and timely steps to ensure the independence of the media free from intimidation and suppression, including through proper implementation of the media law passed in the fall of 2008. ", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Guarantee the independence of various human rights and anti-corruption institutions ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Put an end to discrimination and incitement to hatred vis-a-vis the adherents of the Baha'i faith", - "values": [ - "4 - General action" - ] - }, - { - "text": "Continue its efforts to ensure the rule of law in its national development ", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Immediately cease its military operations in the Occupied Palestinian Territories and lift the closure and seizure it imposes on the Gaza Strip", - "values": [ - "4 - General action" - ] - }, - { - "text": "Establish a strategy to implement the Law on the Elimination of Violence against Women by the creation of permanent and efficient mechanisms in order to report, investigate and publicize cases of gender violence", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Not carry out public execution and work towards the abolition of the death penalty, considering as a first measure the imposition of a moratorium", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Continue to work with UNAMI and the international community to address human rights recommendations set out in the 1 January - 30 June 2009 UNAMI Human Rights report", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Remain committed to negotiations to resolve pending areas of disagreement ", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Include a gender perspective in the follow-up of its UPR process in a systematic manner.", - "values": [ - "4 - General action" - ] - }, - { - "text": "Take concrete measures to ensure that institutions are adequately scrutinized with respect to quality standards of care and the possibility of redressing abuse and violations in order to increase the efficiency of the child protection system", - "values": [ - "4 - General action" - ] - }, - { - "text": "Extend a standing invitation to all human rights special procedures ", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Observe all human rights principles, international conventions and raise awareness among the population regarding human rights values", - "values": [ - "4 - General action" - ] - }, - { - "text": "Continue its efforts to ensure a quality education for every citizen of Dominica and especially for the most disadvantaged children ", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Develop a comprehensive and inclusive strategy to deal with the past, based on the rights of victims and the obligations of States, namely justice, reparation and guarantees of non-repetition", - "values": [ - "4 - General action" - ] - }, - { - "text": "Take the necessary steps to put an end to discrimination faced by same-sex couples, in particular, by ensuring they can marry and adopt children", - "values": [ - "4 - General action" - ] - }, - { - "text": "Allow for more transparency with regard to the selection of judges", - "values": [ - "4 - General action" - ] - }, - { - "text": "Bring domestic legislation on sexual exploitation and trafficking of minors in line with international standards ", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Submit its reports to the Human Rights Committee and Committee against Torture", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Take all appropriate action, including programmes of education and training, in order to eliminate prejudice and discrimination based on sexual orientation and gender identity ", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Further ensure the identification and protection of victims of human trafficking", - "values": [ - "4 - General action" - ] - }, - { - "text": "Continue to take the necessary measures to combat all forms of violence against women and girls and to reduce discrimination against women, in particular in the job market and in national political life, where women are seriously underrepresented ", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Cease all violations of international humanitarian and human rights law, including indiscriminate attacks on medical workers and facilities, schools, civilian infrastructure and the civilian population", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Combat the trafficking and sexual exploitation of women and girls by means of adoption of a comprehensive national action plan in this domain", - "values": [ - "4 - General action" - ] - }, - { - "text": "Ensure that tourism development in the Central Kalahari Reserve allows indigenous peoples to continue with its traditional practices, including hunting and harvesting for subsisting, as well as access to water", - "values": [ - "4 - General action" - ] - }, - { - "text": "Consider the ratification of the International Convention on the Elimination of All Forms of Racial Discrimination.", - "values": [ - "3 - Considering action" - ] - }, - { - "text": "Strive to guarantee the right to social security and achieve decent standards of living ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Step up efforts to improve the protection of the rights of women and children, notably by criminally prosecuting those responsible for the violations ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Amend the law in order to ensure that torture is established as serious crime punished with appropriate penalties and ensure that it is brought into full conformity with the definition set out in the Convention against Torture", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Provide comprehensive protection for women exposed to violence", - "values": [ - "4 - General action" - ] - }, - { - "text": "Continue to promote South American and Caribbean integration through the development of technologies of communication and information ", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Abolish the crime of honour in its penal code and continue to take the necessary measures in order to better promote women's rights in all spheres of the society", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Revise the Family Code to guarantee equality between men and women in inheritance matters ", - "values": [ - "3 - Considering action" - ] - }, - { - "text": "Sign and ratify the Convention against Torture", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Implement in totality, once adopted, the 12th National Plan for the Economic and Social Development (2017-2021) and the 20 Years National Strategy", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Set up a national human rights institution in accordance with the Paris Principles", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Ensure for asylum-seeking children effective and non-discriminatory access to education", - "values": [ - "4 - General action" - ] - }, - { - "text": "Reduce the rate of family separation of indigenous peoples caused, among others, by the removal of babies and children from their families and the imprisonment of juveniles and adults", - "values": [ - "4 - General action" - ] - }, - { - "text": "Implement the recommendations of the Committee against Torture in its 2006 Concluding Observations for Burundi, and ratify the Optional Protocol to the Convention against Torture ", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Ensure religious minorities, including Christian Protestants, are not discriminated against based on their faith ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Consider the signing, ratification or accession, as corresponds, of the main international and Inter-American human rights instruments, especially the Convention on the Rights of the Child ", - "values": [ - "3 - Considering action" - ] - }, - { - "text": "Consider stepping up efforts to combat persisting stereotypical cultural attitudes on the role of men and women and continue improving access to the labour market and education for women ", - "values": [ - "3 - Considering action" - ] - }, - { - "text": "Contribute to further reduction of maternal mortality through the establishment of an independent organ to accelerate programmes and projects in this area ", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Expand its efforts to establish and implement a sustainable and uniform system to assist in data retention, direct aid and assistance to victims in trafficking", - "values": [ - "4 - General action" - ] - }, - { - "text": "Intensify efforts to ensure universal access to health insurance, including access to maternal and child health care", - "values": [ - "4 - General action" - ] - }, - { - "text": "Establish and enforce explicit legal protection against female genital mutilation", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Implement measures to improve enforcement of laws criminalizing rape and domestic violence, including by thoroughly investigating and prosecuting all acts of violence against women, and by providing training to law enforcement officials", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Sign and ratify those international human rights instruments to which it was not yet a party, particularly International Convention for the Protection of All Persons from Enforced Disappearance, which had been previously recommended", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Finalise the accession to the international instruments on the protection of human rights signed by the country, in particular the International Covenant on Civil and Political Rights and its second Optional Protocol aiming at the abolition of the death penalty, the International Covenant on Economic, Social and Cultural Rights, the Convention against Torture and the International Convention on the Elimination of All Forms of Racial Discrimination", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Investigate and punish attacks and threats against journalists ", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Adopt all necessary measures to guarantee the rights of persons with disabilities, eliminate restrictions that may limit their legal capacity and in particular encourage access to effective judicial and administrative procedures for persons with disabilities facing situations of discrimination and inequality", - "values": [ - "4 - General action" - ] - }, - { - "text": "Consider the possibility of formalizing a moratorium on all pending executions with a view to commuting them and to eventually abolishing the death penalty ", - "values": [ - "3 - Considering action" - ] - }, - { - "text": "Continue its strategic plan adopted in 2005 for eliminating social and economic disparities in order to reduce poverty, in particular in isolated regions", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Implement necessary measures to reduce the relative high drop-out rate in primary schools", - "values": [ - "4 - General action" - ] - }, - { - "text": "End the prerogatives of the Ministry of Defence and Military Courts to detain and to charge civilians respectively", - "values": [ - "4 - General action" - ] - }, - { - "text": "Consider the possibility of establishing a national human rights institution accredited by the International Coordinating Committee of National Institutions for the Promotion and Protection of Human Rights ", - "values": [ - "3 - Considering action" - ] - }, - { - "text": "Transform its de facto moratorium on the application of the death penalty into definitive abolition", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Continue efforts to realize the national development goals as stipulated in Vision 2020 and the Economic Development and Poverty Reduction Strategy", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Establish a national human rights institution in conformity with the Paris Principles ", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Pursue efforts to overcome challenges relating to improvement of the quality of education and to close the gap between urban, rural and remote areas ", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Strengthen efforts to eliminate discrimination against women, including in the labour market", - "values": [ - "4 - General action" - ] - }, - { - "text": "Take all necessary measures to ensure the full enjoyment of human rights by women and girls, including by way of properly and promptly investigating and prosecuting cases of gender-based and sexual violence", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Ratify the Optional Protocol to the Convention against Torture and take policy measures to prevent torture and ill treatment ", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Continue its efforts to fight against violence against women and girls, in particular female genital mutilation, and adopt legislation criminalizing this harmful practice", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Review the Kenya Information and Communication (Amendment) Act and the Media Council Act in order to safeguard that the principles of the Kenyan Constitution are guaranteed and upheld", - "values": [ - "3 - Considering action" - ] - }, - { - "text": "Seek technical assistance from the international community with regard to establishing a National Human Rights Institution, intensifying public awareness in the area of human rights, improving school curriculums and improving financial and social administration in general ", - "values": [ - "1 - Minimal action" - ] - }, - { - "text": "Provide the National Dalit Commission and the National Women's Commission with sufficient resources to effectively realize their mandate ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Reinforce the application of laws prohibiting the trafficking of persons, including the trafficking for forced marriages, inter alia by adopting measures aiming at protecting and assisting victims and prosecuting and punishing those that engage in trafficking, and raising awareness among the population", - "values": [ - "4 - General action" - ] - }, - { - "text": "Expedite adoption of laws prohibiting harmful practices against women and girls, including forced and early marriage", - "values": [ - "4 - General action" - ] - }, - { - "text": "Continue to strengthen the mandate of the Austrian Ombudsman Board in order to ensure full compliance with the Paris Principles", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Continue with the efforts of introducing freedom of information through ordinary legislation as a matter of priority ", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Continue to promote economic and social development in an effort to eliminate poverty and further improve the living standards of the people ", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Continue with its efforts to promote women's participation in the political sphere", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Continue to provide basic healthcare service for people living in rural areas and increase its focus on vulnerable groups such as women, children and minorities ", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Further consider establishing an independent NHRI in accordance with the Paris Principles ", - "values": [ - "3 - Considering action" - ] - }, - { - "text": "Continue cooperation with treaty monitoring bodies and United Nations special rapporteurs ", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Continue efforts to strengthen the legal and institutional framework in the field of human rights", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Support and develop educational programs and institutions for national minorities", - "values": [ - "4 - General action" - ] - }, - { - "text": "Strengthening institutional support for the National Human Rights Commission and applying for its accreditation by the International Coordinating Committee of National Human Rights Institutions", - "values": [ - "4 - General action" - ] - }, - { - "text": "Take steps to ensure access to safe drinking water for all the indigenous communities", - "values": [ - "4 - General action" - ] - }, - { - "text": "Raise the minimum age of marriage to 18 years for both sexes ", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Ensure the safety of journalists and put an end to the impunity currently enjoyed by perpetrators of such attacks ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Draft and implement a fully comprehensive law on gender equality and a law on combating gender violence", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Provide increased support for minorities", - "values": [ - "4 - General action" - ] - }, - { - "text": "Enhance efforts to ensure effective implementation of international commitments and existing legislation to prevent and combat all forms of violence against women and girls, including sexual abuse and child early and forced marriage. Adopt measures to support victims of sexual abuse and bring perpetrators to justice", - "values": [ - "4 - General action" - ] - }, - { - "text": "Consider signing and ratifying the Rome Statute of the International Criminal Court ", - "values": [ - "3 - Considering action" - ] - }, - { - "text": "Ratify the Rome Statute and fully align its national legislation with all obligations under the Rome Statute ", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Ensure that education promotes the full respect of human rights and the active participation in a free society", - "values": [ - "4 - General action" - ] - }, - { - "text": "Redouble efforts against trafficking in persons ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Sign and ratify CAT, CED and ratify CRPD ", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Further develop the policy in the field of preservation and development of the cultural identity of persons belonging to national minorities and ethnic groups", - "values": [ - "4 - General action" - ] - }, - { - "text": "Carry out an evaluation with a view to ratifying the main human rights instruments, in particular the International Covenant on Civil and Political Rights, the International Covenant on Economic, Social and Cultural Rights and the Convention on the Rights of Persons with Disabilities ", - "values": [ - "3 - Considering action" - ] - }, - { - "text": "Pay more attention to the awareness of the citizens of Ukraine about their rights and to involvement of society in taking important decisions", - "values": [ - "4 - General action" - ] - }, - { - "text": "Continue to fully implement the Equal Pay Act in order to ensure equal remuneration for men and women", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Accede to the International Covenant on Economic, Social and Cultural Rights ", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Undertake measures to eliminate stigmatization and discrimination against children born out of wedlock by providing legal certainty in respect of their family name", - "values": [ - "4 - General action" - ] - }, - { - "text": "Closely collaborate with UNICEF and UNAIDS in order to implement programmes aimed at reducing the cases of Mother-toChild HIV Infections ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Continue to fine-tune its development agenda and by doing so, continue to effectively promote and protect human rights as well as economic, social and cultural rights in the country", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Continue to reform its policies and programmes with a view to improving the status of women, girls and children, including those with disabilities, and protecting them against violence and sexual abuse, as well as strengthening measures and mechanisms on administration of justice ", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Ratify the Kampala Amendments to the Rome Statute of the International Criminal Court ", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Implement the anti-trafficking law by investigating all cases of human trafficking", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Take measures to fight impunity of State agents guilty of serious human rights violations and facilitate access to justice for their victims", - "values": [ - "4 - General action" - ] - }, - { - "text": "Request OHCHR support to conduct awareness-raising programmes and training for those working in the human rights field and provision of technical assistance to promote human rights.", - "values": [ - "1 - Minimal action" - ] - }, - { - "text": "Step up measures to strengthen the work of local human rights institutions, including the National Commission for Human Rights, the National Commission on the Status of Women and the National Commission for Minorities", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Ratify the International Convention for the Protection of All Persons from Enforced Disappearance and adapt its national legislation to international standards in this regard", - "values": [ - "3 - Considering action" - ] - }, - { - "text": "Adopt appropriate measures to disseminate widely and ensure full observance of the Declaration on Human Rights Defenders", - "values": [ - "4 - General action" - ] - }, - { - "text": "Take practical measures for adopting a non-discriminatory approach towards the Roma minority", - "values": [ - "4 - General action" - ] - }, - { - "text": "Ensure accountability for hate crimes", - "values": [ - "4 - General action" - ] - }, - { - "text": "Continue with its efforts to increase the number of persons with disabilities employed in the public service", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Further introduce effective measures to enhance gender equity, and to create practical facilities for persons with disabilities to effectively participate in the labour market", - "values": [ - "4 - General action" - ] - }, - { - "text": "Use comparative studies to address the challenges posed by the investigation of international law crimes committed during the Civil War and the Franco regime, in line with the recommendations of the Special Rapporteur on the promotion of truth, justice, reparation and guarantees of non-recurrence", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Recognize the competence of the Committee on the Elimination of Racial Discrimination in pursuance to article 14 of the International Convention on the Elimination of All Forms of Racial Discrimination", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Coordinate with NGOs to ensure effective implementation of formal procedures to guide police and relevant government officials on how to identify victims of forced labour and forced prostitution among vulnerable groups, refer them to available services, and actively pursue traffickers", - "values": [ - "4 - General action" - ] - }, - { - "text": "Adopt legislation to prevent discrimination on the grounds of sexual orientation in the same manner as existing legislation to protect against discrimination on the grounds of ethnicity, gender and religion ", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Continue efforts to combat discrimination through strengthening of national mechanisms ", - "values": [ - "4 - General action" - ] - }, - { - "text": "That high-ranking State officials publicly express the recognition of the importance of the role played by human rights defenders, in order to support and protect the legitimate work of human rights defenders and trade union workers.", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Adopt sanitation and residual water treatment strategies in order to prevent the high rate of child mortality due to water-related diseases", - "values": [ - "4 - General action" - ] - }, - { - "text": "Continue in the cooperation with Special Procedures and the mechanisms, and consider issuing invitations to the special Rapporteurs ", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Improve the registration of children with a view to ensuring that the statelessness of children is prevented", - "values": [ - "4 - General action" - ] - }, - { - "text": "Continue its efforts to further improve access to education, housing, social security, health and employment, especially for people living in poverty or extreme poverty, and to increase even more the resources and social benefits aimed at reducing poverty and extreme poverty in the country ", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Enhance efforts to provide human rights training for law enforcement agencies", - "values": [ - "4 - General action" - ] - }, - { - "text": "Ensure an equitable and impartial approach to the administration of justice so that all perpetrators responsible for violent crimes are held to account, irrespective of their political, tribal or religious background", - "values": [ - "4 - General action" - ] - }, - { - "text": "Enact an anti-human trafficking law to protect human rights of migrants from violations by recruitment agencies, brokers and employers", - "values": [ - "4 - General action" - ] - }, - { - "text": "Redouble its efforts in fostering national unity and harmony, including by intensifying dialogues promoting deeper understanding among societies of different ethnic and faith, addressing the negative portrayal in the media of members of the Muslim community and criminalizing hate speech and all forms of incitement to hatred and violence", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Ensure that LGBT persons are not discriminated against and, as an immediate step, to amend the provisions of the penal code criminalizing consensual sexual activity among persons of the same sex and to ensure that no one is punished for such activity under Sharia law", - "values": [ - "4 - General action" - ] - }, - { - "text": "Continue its efforts in order to counter illiteracy amongst girls and women", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Ensure the independence of the judiciary", - "values": [ - "4 - General action" - ] - }, - { - "text": "Revise provisions for slander and insult in the Criminal Code so that the provisions are not used to unduly restrict journalistic activity and considerably shorten the time span given to Government institutions for imparting information to the public ", - "values": [ - "3 - Considering action" - ] - }, - { - "text": "Consider taking all necessary steps to introduce a de jure moratorium of capital executions with a view to fully abolish the death penalty", - "values": [ - "3 - Considering action" - ] - }, - { - "text": "Continue to adopt appropriate measures in combating the trafficking of human beings", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Review its domestic policies and practices to ensure full compliance with the Convention on the Rights of Persons with Disabilities ", - "values": [ - "3 - Considering action" - ] - }, - { - "text": "Adopt the necessary measures to inform women and girls about their rights related to access to sexual and reproductive health services, including the possibility of abortion, as established by domestic legislation", - "values": [ - "4 - General action" - ] - }, - { - "text": "Abolish prison terms for incitement to discrimination regarding sex, origin, language, religion or belief, and for acts damaging to an individual's honour", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Continue its positive measures in further promoting and protecting the rights of persons with disabilities, including by ensuring effective implementation of its Law on Employment as well as providing the necessary vocational training to them", - "values": [ - "4 - General action" - ] - }, - { - "text": "The allocation of additional efforts and resources to improving the country's health system", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Consider continuing on to the ratification of the core human rights instruments", - "values": [ - "3 - Considering action" - ] - }, - { - "text": "Continue efforts for the implementation of the road map aimed at reducing maternal mortality by half by 2015, and by 80 per cent by 2020 ", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Ensure further equality by allowing same-sex couples the right to marriage according to international standards", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Intensify efforts to ratify the Convention against Torture and Other Cruel, Inhuman or Degrading Treatment or Punishment", - "values": [ - "4 - General action" - ] - }, - { - "text": "The Gambia is committed to creating a conducive environment for the media to operate freely and to ensure a free flow of information as provided for in the Constitution.", - "values": [ - "4 - General action" - ] - }, - { - "text": "De-criminalize homosexuality, establish a de-facto moratorium on Article 319 of the Penal Code, and ensure that the Code is not used as basis for arbitrary arrests by the police", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Ensure that security forces do not arbitrarily harass and arrest journalists or otherwise prevent the exercise of freedom of expression", - "values": [ - "4 - General action" - ] - }, - { - "text": "Ratify the Second Optional Protocol to the International Covenant on Civil and Political Rights, aiming aiming at the abolition of the death penalty", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Enforce the existing laws against domestic violence ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Establishing training facilities tailored to meet demand, particularly in the sectors of agriculture, livestock, environment, construction and public works, crafts, transportation, culture, mining and energy, information technology and telecommunications", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Strengthen efforts in the field of equitable justice through the Philippine development plan", - "values": [ - "4 - General action" - ] - }, - { - "text": "Withdraw its interpretative declaration on the International Convention on the Elimination of All Forms of Racial Discrimination and its reservation to article 4", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Strengthen the judiciary by improving its functioning, capacity and in particular the election system of the courts and by promoting its full independence from the other State's powers and, proceed without delay to comprehensively implement the programme for the modernization of the judicial system", - "values": [ - "4 - General action" - ] - }, - { - "text": "Ratify the core international human rights treaties to which it is not yet a party", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Bahrain undertakes to begin implementing the articles and provisions of the Act on trafficking in persons.", - "values": [ - "4 - General action" - ] - }, - { - "text": "Seek assistance in establishing a national human rights institution in accordance with the Paris Principles", - "values": [ - "1 - Minimal action" - ] - }, - { - "text": "Release immediately and unconditionally all those imprisoned for peacefully exercising their rights to freedom of expression, association and assembly ", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Continue to strengthen its policies and measures for the empowerment of women", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Strengthen measures for the development of effective mechanisms to help combat impunity, including strengthening of the judiciary.", - "values": [ - "4 - General action" - ] - }, - { - "text": "Raise the age of criminal responsibility so that it complies with international standards, create an effective juvenile justice system and provide separate detention and prison facilities for juvenile offenders and appropriate training for personnel working in the juvenile justice system", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Continue efforts to ensure that all children enrol in elementary school and to consider the necessary measures to reach out to children deprived of an education", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Increase efforts to incorporate into domestic law international legal norms aimed at eliminating cultural or traditional gender-based discrimination, as indicated in the national report ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Increase the number of women in political and public life at all levels and in all areas and promote women in leadership positions and ensure that they are granted opportunities in the higher education system", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Recommended that the National Plan of Action provide specific benchmarks within a given timeframe", - "values": [ - "4 - General action" - ] - }, - { - "text": "Intensify its efforts in the area of the fight against violence, respect and discrimination against women ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Ensure laws regarding discrimination with respect to employment or occupation are enforced and that members of the Romani community have the same inclusive legal protections, wages and working conditions as others", - "values": [ - "4 - General action" - ] - }, - { - "text": "Consider developing an interreligious dialogue mechanism with a view to promoting tolerance and respect on distinctive religious and cultural values of the different ethnic groups in the country", - "values": [ - "3 - Considering action" - ] - }, - { - "text": "Investigate thoroughly all cases of the detention of persons who have entered Canada, including Russian citizens, on non-security grounds and also information about cruel treatment vis-à these people, pressure being used against them and demands that they provide personal informaiton and the unjustified searches that have been carried out as well", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Adopt, as a matter of priority, legislation to criminalize torture in line with article 1 of CAT ", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "End the practice of governmental appointment of editors and senior managers to all media outlets in the country to foster a more independent media.", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Adopt an open, merit-based selection process when selecting national candidates for United Nations treaty body elections", - "values": [ - "4 - General action" - ] - }, - { - "text": "Enforce the measures adopted to ensure the participation of minorities in public affairs", - "values": [ - "4 - General action" - ] - }, - { - "text": "Enact an immediate moratorium on executions with a view to ending the use of the death penalty, and accede to the Second Optional Protocol to the International Covenant on Civil and Political Rights, as well as the Sixth and Thirteenth Protocols to the European Convention on Human Rights ", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Fully investigate all complaints of violence perpetrated or facilitated by the security forces, and ensure that suspects are brought before the Courts in a timely manner", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Sign and ratify the Optional Protocol to the International Covenant on Economic, Social and Cultural Rights - the Optional Protocol to the Convention on the Rights of Persons with Disabilities - and the International Convention for the Protection of All Persons from Enforced Disappearance", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Halt immediately reported human rights violations by military and police officers and a general climate of impunity in Papua ", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Consider strengthening legislative protection from racial discrimination and discrimination based on sexual orientation", - "values": [ - "3 - Considering action" - ] - }, - { - "text": "Continue developing its national human rights institution in accordance with the Paris Principles", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Take all necessary steps to ensure the full enjoyment of the right of all persons to take part in the Government of his or her country ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Continue cooperation with treaty bodies and special procedures ", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Strengthen its legal framework and mechanism for the promotion and protection of human rights", - "values": [ - "4 - General action" - ] - }, - { - "text": "Continue intensifying efforts to provide high quality education and medical services to the population, including in remote rural areas ", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Continue to strengthen its policies and measures for the empowerment of women ", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Ratify the Second Optional Protocol of the ICCPR with a view to fully abolishing capital punishment ", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Accept the requests to visit the country made by some special procedures, including the request made by the Special Rapporteur on the promotion of truth, justice, reparation and guarantees of non-recurrence", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Incorporate chapters on human rights in the reconstruction and development national plan, to facilitate their implementation by all authorities", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Develop a national action plan to address the needs of victims of trafficking in human beings", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Further reinforce efforts to combat human trafficking and to protect victims of such crime, especially women and children ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Take measures to ensure that laws that require publishers to print responses to any statement of fact that impinges on the honour and reputation of a person or legal entity do not become subject to abuse by the authorities or different interest groups.", - "values": [ - "4 - General action" - ] - }, - { - "text": "Consider ratifying all outstanding international instruments to which it is not yet party and endeavour to domesticate them in its national legislation ", - "values": [ - "3 - Considering action" - ] - }, - { - "text": "Adopt appropriate measures to disseminate widely and ensure full observance of the Declaration of Human Rights Defenders ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Develop a strong institutional framework that will help to combat racism and create an atmosphere of racial tolerance in Russian society ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Consider ratification or accession to CEDAW, ICRMW, CAT and ICPPED", - "values": [ - "3 - Considering action" - ] - }, - { - "text": "Ratify the Optional Protocol to CAT, and by virtue of the latter, establish a national preventive mechanism ", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Re-launch the process of ratifying the Second Optional Protocol to the International Covenant on Civil and Political Rights with a view to the complete abolition of the death penalty", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Make sufficient judicial staff and facilities available to restore the rule of law and to conduct screening of soldiers and police officers reporting back for duty to ensure that those responsible for human rights violations are excluded from further service and face trial in due process", - "values": [ - "4 - General action" - ] - }, - { - "text": "Prohibit by law, and include in equality programmes and policies, discrimination on the grounds of sexual orientation or gender identity.", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Take all the necessary measures to complete the alignment of its legislation with all the obligations under the Rome Statute of the International Criminal Court", - "values": [ - "4 - General action" - ] - }, - { - "text": "Establish a human rights commission in compliance with the Paris Principles", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Like other European countries, set a statutory time limit for immigration detention and ensure that children are not subjected to such detention", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Review its asylum procedures to increase the efficiency of the asylum granting processes and ensure the protection of unaccompanied migrant children", - "values": [ - "3 - Considering action" - ] - }, - { - "text": "Deploy possible additional efforts to prevent cases of torture and ill-treatment and to prosecute perpetrators ", - "values": [ - "3 - Considering action" - ] - }, - { - "text": "Enhance its cooperation with OHCHR", - "values": [ - "4 - General action" - ] - }, - { - "text": "Amend its Constitution with a view to abolishing the death penalty", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Pursue its efforts, in the African context and through cooperation with concerned European countries, to find collective solutions to address the issue of illegal migration ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Become a party to ICCPR-OP 1 - withdrawn in 1997 - and ICCPROP 2 ", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Ensure that coercive measures in mental health institutions are only applied when necessary and in a proportionate manner ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Continue taking measures aimed at eliminating historical injustices and inequalities in all sectors, especially in the health and education sectors, in order to improve the living standards of all its people", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Adopt a comprehensive national strategy to ensure food and nutrition security for all in line with international standards", - "values": [ - "4 - General action" - ] - }, - { - "text": "Continue efforts aimed at ensuring the availability and accessibility of the education system to all children and improvement of school's infrastructure", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Intensify the efforts for the creation of a concrete national framework on the internal displacement, which would secure equal access to humanitarian aid but also develop a preventive strategy for new internally displaced persons, including training of security forces to this effect ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Take further steps to follow the recommendations of the Committee on the Elimination of Racial Discrimination in "reviewing its legislation on racial discrimination to ensure adequate protection of discrimination" ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Pay special attention to racially motivated crimes and strengthen its efforts to address them ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Implement recommendations issued by the Office for Democratic Institutions and Human Rights of OSCE to improve the holding of the next general elections, in 2011, and the presidential elections in 2012 ", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Continue efforts to improve the living conditions of elderly persons", - "values": [ - "4 - General action" - ] - }, - { - "text": "Ensure a gender perspective in all fields and stimulate women's participation in public life, while putting emphasis on the situation in local and rural communities.", - "values": [ - "4 - General action" - ] - }, - { - "text": "Allocate resources equitably and implement food security policies, including through sustainable agricultural practices and reduced State restrictions on the cultivation and trade of foodstuffs ", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Consider the possibility of ratifying the Optional Protocol to the International Covenant on Economic, Social and Cultural Rights ", - "values": [ - "3 - Considering action" - ] - }, - { - "text": "Expedite the adoption of the draft law on trafficking in persons, in accordance with international law", - "values": [ - "4 - General action" - ] - }, - { - "text": "Take all necessary, prompt and effective measures to remedy the problem of the length of the judicial procedure ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Urgently amend its criminal law to comply with international relevant standards.", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Establish specialized juvenile courts and provide training to enforcement and judicial officers working on juvenile cases on international standards and guidelines on juvenile justice ", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Open legal partnership models to all, regardless of their sexual orientation or gender identity", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Give full and equal rights to women", - "values": [ - "4 - General action" - ] - }, - { - "text": "Prohibit corporal punishment of children in all settings, as previously recommended ", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Slovakia will make every effort to present a voluntary interim report on the progress made in implementing the UPR recommendations.", - "values": [ - "4 - General action" - ] - }, - { - "text": "Withdraw the reservation to the first Optional Protocol to the International Covenant on Civil and Political Rights and ratify, without reservations, the Second Optional Protocol to the International Covenant on Civil and Political Rights, aiming at the abolition of the death penalty", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Continue strengthening the quality of education delivery at the basic, secondary and tertiary levels ", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Implement article 3 of the European Convention on Human Rights and abolish all legal or other restrictions for the release of sick or terminally sick inmates", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Ensure the protection of the right to freedom of religion or belief, expression, association and peaceful assembly by decriminalizing blasphemy and respecting, protecting and fulfilling the rights of all religious minorities, including the Ahmadis, Shia Muslims, Christians and Baha\u2019is", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Consider becoming a party to the 1951 Convention relating to the Status of Refugees and the Protocol thereto ", - "values": [ - "3 - Considering action" - ] - }, - { - "text": "Allow access to the country by the Commission of Inquiry", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Continue to take measures to promote and protect the rights of migrant workers", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Strengthen the measures for the protection of the rights of the child, also in order to prevent the practice of early marriage", - "values": [ - "4 - General action" - ] - }, - { - "text": "Undertake an assessment of active policies for the protection of the rights of women and strengthen mechanisms for tackling gender-based violence, with particular emphasis on employment, education and awareness-raising, as well as the system for compiling data on gender-based violence", - "values": [ - "3 - Considering action" - ] - }, - { - "text": "Back efforts to counter malnutrition with structural strategies which focus on the causes of poverty and hunger", - "values": [ - "4 - General action" - ] - }, - { - "text": "Adopt legislative and policy measures to ensure women and adolescents have access to sexual education and free and friendly reproductive health services", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Establish a Council for Persons with Disabilities in Bosnia and Herzegovina", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Reform the Nationality Act to include safeguards against statelessness, so that children born in Tonga's territory, who would otherwise be stateless, can acquire Tongan nationality ", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Make a priority the prevention and punishment of all forms of violence against women", - "values": [ - "4 - General action" - ] - }, - { - "text": "Adopt measures to combat violence against women, including domestic violence", - "values": [ - "4 - General action" - ] - }, - { - "text": "Take further measures to develop an effective implementation and monitoring mechanism for the law on domestic violence, especially to grant access to justice for women victims of violence and guarantee their protection ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Review all laws with the aim at eliminating all discriminatory norms against women.", - "values": [ - "3 - Considering action" - ] - }, - { - "text": "Take steps to ensure that the freedoms of expression and association are fully respected as called for by the 16th Special Session of the Human Rights Council", - "values": [ - "4 - General action" - ] - }, - { - "text": "Adopt legislation to limit the use of solitary confinement and abolish solitary confinement of children", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Ensure the regular training for judges, prosecutors, the representatives of the police and other law enforcement agencies on human rights, non-discrimination and the legally binding nature of international law", - "values": [ - "4 - General action" - ] - }, - { - "text": "Conclude the ratification process of the relevant Optional Protocols to the Convention on the Rights of the Child", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Adopt further measures to ensure gender equality in the society, including through the accession to and effective implementation of relevant international and regional treaties", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Concentrate attention on domestic violence", - "values": [ - "4 - General action" - ] - }, - { - "text": "Ensure that the freedom of expression and of the press guaranteed in the Constitution are effectively respected ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Strengthen work to improve the scope of the right to education, in particular for children and adolescents", - "values": [ - "4 - General action" - ] - }, - { - "text": "Fully and effectively implement the Freedom of Mass Media and Access to Information Proclamation ", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Eliminate the pay gap between men and women", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "In efforts to tackle the problem of illiteracy, continue to promote access to quality education in rural areas, which would bring long-term benefits to women, youths and indigenous groups in rural areas", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Pursue the implementation of the objectives of the National Strategy for Children and Adolescents", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Adopt effective measures to further strengthen the system for enforcement of the rights and the interests of children.", - "values": [ - "4 - General action" - ] - }, - { - "text": "Accelerate the establishment of a National Mechanism for Reporting and Follow-up", - "values": [ - "4 - General action" - ] - }, - { - "text": "Continue its efforts to enhance respect for human rights and rule of law in its security sector through education and institutional reforms ", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "The Lao PDR will continue to exchange lessons and experiences with the international community in order to enhance cooperation and technical assistance to promote and protect human rights.", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Continue its efforts to launch and implement a national human rights action plan in order to improve promotion and protection of human rights", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Effectively implement its international obligations to ensure the protection of human rights defenders and others exercising their rights to freedom of opinion and expression, peaceful assembly and association in compliance with international human rights law", - "values": [ - "4 - General action" - ] - }, - { - "text": "Highlight in its next report the measures against perpetrators in combating racist crimes", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Continue efforts to make its democratization process more inclusive and development-oriented", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Consider appropriate steps to ensure that the National Human Rights Commission functions in an independent and impartial manner", - "values": [ - "3 - Considering action" - ] - }, - { - "text": "Continue to increase budgetary allocations in the area of the access of children to education ", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Continue to ensure that programmes, services and support for HIV-prevention will reach the general population ", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Provide further assistance to women victims of violence, in line with the relevant recommendations of the Committee on the Elimination of Discrimination against Women ", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Develop legislation to regulate child labour with a view to abolishing it", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Continue improving the national legislative framework on the rehabilitation of victims of trafficking", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Consider establishing an independent national human rights institution in accordance with the Paris Principles, as suggested by the Committee on Economic, Social and Cultural Rights and the Committee on the Elimination of Racial Discrimination.", - "values": [ - "3 - Considering action" - ] - }, - { - "text": "Further strategies in cooperation with the International Labour Organisation (ILO) to eradicate child labour", - "values": [ - "4 - General action" - ] - }, - { - "text": "Strengthen the normative framework for coordinated government actions against trafficking and care for the trafficked victims, including developing a procedural framework for the return and reintegration of victims of trafficking in persons", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Take the necessary measures to remove difficulties facing persons with disabilities, including improving access to public spaces and services and empowering children and women with disabilities to exercise their rights", - "values": [ - "4 - General action" - ] - }, - { - "text": "Reform the Criminal Code to define rape as a sexual violation, irrespective of the degree of violence used or threatened by the perpetrator", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Take measures to improve prison conditions, in particular in the areas of food and sanitation, and ensure that the rights of prisoners are respected in accordance with international law standards ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Encourage enhanced cooperation with human rights bodies and all relevant stakeholders in the pursuit of a society oriented towards the attainment of internationally recognized human rights goals.", - "values": [ - "4 - General action" - ] - }, - { - "text": "Revoke any decree that prevents the courts from considering the legality of Government actions, and to abide by future judicial decisions", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Continue efforts to harmonize its legislation and ensure equality between men and women, particularly in marriage and family relations", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Establish a formal moratorium on the use of the death penalty with a view to ratifying the second Optional Protocol to the International Covenant on Civil and Political Rights ", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Allow for a free and unimpeded access of humanitarian organisations, medical teams and ambulances", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Develop rehabilitation centres for young offenders with facilities that promote the psychological and physical development of these young persons and their social reintegration ", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Consider ratifying, signing or adhering to, as appropriate, the Optional Protocol to the International Covenant on Economic Social and Cultural Rights, the International Convention on the Protection of the Rights of All Migrant Workers and Members of their Families, and the Convention for the Protection of All Persons from Enforced Disappearance", - "values": [ - "3 - Considering action" - ] - }, - { - "text": "Take additional steps in criminalizing marital rape", - "values": [ - "4 - General action" - ] - }, - { - "text": "Ensure that sexual relations between consenting adults of the same sex are not punishable by law", - "values": [ - "4 - General action" - ] - }, - { - "text": "End the culture of impunity surrounding cases of retaliation for dissent, attacks on human rights defenders and journalists, the excessive use of force during peaceful demonstrations, abuses of force by state actors, the phenomenon known as "execution of criminals" and other serious human rights violations ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Keep on its efforts on poverty reduction through the national anti-poverty strategy", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Consider to increase the level of official development assistance", - "values": [ - "3 - Considering action" - ] - }, - { - "text": "Extend a permanent and open invitation to the special procedures of the Human Rights Council", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Resume dialogue with Nepal and enhance cooperation with the Office of the United Nations High Commissioner for Refugees UNHCR to resolve the question of Bhutanese refugees, including by voluntary return, with particular attention to family reunification and other humanitarian cases", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Develop a comprehensive transitional justice strategy that will encompass accountability, reparations, security sector reform and judicial reform ahead of the presidential elections in October 2015", - "values": [ - "4 - General action" - ] - }, - { - "text": "Immediately open humanitarian access and unconditionally permit access for the Commission of Inquiry", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Guarantee that the right to worship of minorities, including Muslims, is fully respected in practice", - "values": [ - "4 - General action" - ] - }, - { - "text": "Take appropriate measures to fully implement CEDAW ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Establish promptly a NHRI in full compliance with the Paris Principles (A Status)", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Advance in the promotion of gender equality and equity and study the necessary legislative reforms to follow international standards such as CEDAW", - "values": [ - "4 - General action" - ] - }, - { - "text": "Accede to and fully align Sudan's national legislation with the Rome Statute of the International Criminal Court, including incorporating provisions to cooperate promptly and fully with the Court as it required to do under Security Council Resolution 1593 by executing outstanding arrest warrants", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Continue working with organizations and social movements in the implementation of the national human rights plan, taking into account the vast and inclusive consultation process that led to its approval", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Ensure without delay effective protection of the rights of ethnic and religious minorities ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Make efforts to include human rights principles in primary and secondary school curricula", - "values": [ - "4 - General action" - ] - }, - { - "text": "Step up the necessary measures to strengthen the powers of the National Human Rights Commission, in conformity with the Paris Principles, providing it with human and financial resources, independence and pluralism in its composition", - "values": [ - "4 - General action" - ] - }, - { - "text": "Ratify the Convention against Torture and the optional protocol thereto", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Continue providing generous support to the Syrian refugees in Turkey", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Immediately ban anti-immigrant and anti-Muslim political discourse propagated by some political parties including Sweden Democrats", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Establish specific mechanisms for the investigation and punishment of possible cases of discrimination against lesbian, gay, bisexual, transgender and intersex persons, particularly with regard to issues in relation to the administration", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Scale up the Isange One-Stop Centres to care for victims of gender-based violence and human trafficking", - "values": [ - "4 - General action" - ] - }, - { - "text": "Consider and address the issue of reportedly high number of children and adolescents in juvenile detention centres by applying child-friendly justice standards and encouraging the use of alternative sanctions and reintegration programmes ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Enact the Prevention of Torture Bill", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Become party to the UN core human rights treaties and continue its efforts towards this aim ", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Consider ratifying the following international instruments: ICCPR, ICESCR, CAT, ICERD, OP-CEDAW and CED", - "values": [ - "3 - Considering action" - ] - }, - { - "text": "Further improve the birth registration system and support it by awareness-raising activities, in order to boost the registration numbers", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Strengthen initiatives to combat exclusion, marginalization and poverty, including that of the Roma population, among other groups", - "values": [ - "4 - General action" - ] - }, - { - "text": "Promote steady economic development to further improve living standards of its people", - "values": [ - "4 - General action" - ] - }, - { - "text": "Continue addressing gender inequalities in the labour market, in particular with a view to accelerating women's representation in high ranking, decision making posts ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Strengthen measures and frameworks to combat trafficking in persons to enable the safe return and repatriation of victims of trafficking", - "values": [ - "4 - General action" - ] - }, - { - "text": "Establish a moratorium on executions with a view to abolishing the death penalty as provided by UN General Assembly Resolutions ", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Undertake effective measures to ensure the accessibility of legal and judicial services to persons in rural and remote areas ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Take steps to ensure greater independence of the judiciary, including through the establishment of a constitutional court and ombudsman system.", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Work with OHCHR to prepare a common core document as a way to streamline and reduce the burden of treaty reporting ", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Implement effective and coordinated measures to prevent violence against women, especially against young women and girls, and ensure that perpetrators of violence are brought to justice", - "values": [ - "4 - General action" - ] - }, - { - "text": "Sign and ratify the Optional Protocol to the ICESCR, as soon as possible", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Continue working on the welfare of children and women ", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Better disseminate good practices, namely to disseminate the broad implementation of human rights public policies based on the collaboration between the State and civil society", - "values": [ - "4 - General action" - ] - }, - { - "text": "Adopt a comprehensive national plan for human rights as a comprehensive document that includes effective measures for all human rights issues", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Continue to work with the National Human Rights System, to achieve greater compliance with international commitments, incorporating a differentiated approach to sectoral policies", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Take steps to improve prison conditions by reducing overcrowding in line with the United Nations Standard Minimum Rules for the Treatment of Prisoners, implement alternatives to detention, ensure access to a timely trial for those on remand, and address the issue of children living with parents in prison", - "values": [ - "4 - General action" - ] - }, - { - "text": "Strengthen and activate existing laws and legislation in the field of combating discrimination and all forms of racism and make further efforts to combat discrimination against Gypsies, nomads and Roma", - "values": [ - "4 - General action" - ] - }, - { - "text": "Modify practices for the recruitment and retention of public civil servants and army personnel in order to guarantee equal opportunities, representativeness of the ethnic and cultural composition of the country, and to facilitate the employment of women in traditionally male-dominated sectors ", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Repeal all discriminatory laws against women, withdraw all its reservations made to the Convention on the Elimination of All Forms of Discrimination against Women and increase its cooperation with the Committee on the Elimination of Discrimination against Women by implementing all recommendations made in 2007 ", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Provide specific training to law enforcement staff to enable them to better understand and prevent domestic violence ", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Continue to bolster the role and mandate of the National Human Rights Commission in line with the Paris Principles ", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Further promote human rights culture in the country", - "values": [ - "4 - General action" - ] - }, - { - "text": "Take prompt action to implement the Family Protection Act, and consider initiatives to raise community awareness of that Act ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Step up its efforts towards advancing the specific courses of action taken in its struggle against discrimination such as programmes to fight poverty and social exclusion, the Strategy for Roma Integration up to 2020 and the endorsement of the Committee for the Rights of LGBTI persons, and launch campaigns to promote tolerance and respect for diversity aimed at all segments of society ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Current initiatives to devise reforms to the legislative framework dealing with the protection of children a/ who come into conflict with the legal system, and b/ who are in need of care and protection, will be expedited, in line with recommendations made by Committee on the Rights of the Child, the UN Standard Minimum Rules for the Administration of Juvenile Justice and the Guidelines for the Prevention of Juvenile Delinquency", - "values": [ - "4 - General action" - ] - }, - { - "text": "Continue improving the living standards of its people through guarantees of the broader implementation of economic, social and cultural rights", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Continue its current approach on consolidation of human rights institutions", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Improve the situation of women and children by implementing the United Nations Security Council resolution 1325 and related resolutions on women, peace and security", - "values": [ - "4 - General action" - ] - }, - { - "text": "Effectively investigate and prosecute crimes and violations against journalists and human rights defenders, and ensure that those responsible are punished", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Initiate legislation to repeal article 193-1 of the Criminal Code, which imposes criminal penalties for participation in unregistered organizations", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Establish a national human rights institution in full compliance with the Paris Principles ", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Intensify efforts in order to eradicate from its legislation and practice all discriminatory laws and adopt a comprehensive strategy on awareness-raising campaigns to eliminate discrimination based on any grounds and against all vulnerable groups, particularly girls with respect to their inheritance and education rights, children born out of wedlock, albinos and those pertaining to the Batwa minority and taken into families under the kafala regime", - "values": [ - "4 - General action" - ] - }, - { - "text": "Consider withdrawing the declaration regarding article 124 of the Rome Statute.", - "values": [ - "3 - Considering action" - ] - }, - { - "text": "Speed up the process for ratifying CRPD and its Optional Protocol", - "values": [ - "4 - General action" - ] - }, - { - "text": "Ensure that cases of violence against women and children are thoroughly investigated, perpetrators are prosecuted and sentenced and victims receive reparation", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Determine the whereabouts of children whose fate is unknown", - "values": [ - "4 - General action" - ] - }, - { - "text": "Harmonize its Penal Code and legislation with the CRC in order to eradicate corporal punishment of children in schools and other settings ", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Take measures to revise the law on abortion with a view to permitting termination of pregnancy in cases where pregnancy is a result of rape or incest, or in situations where the pregnancy puts the physical or mental health or well-being of the pregnant woman or the pregnant girl in danger", - "values": [ - "4 - General action" - ] - }, - { - "text": "Ensure respect for the right to freedom of expression and assembly, notably during the electoral campaign ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Continue to implement the 2011-2015 Health Sector Strategy ", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Abolish the death penalty and commute existing death sentences to imprisonment ", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Increase the legal measures aimed at guaranteeing due process and the impartiality in the administration of justice, including the independence of judges and the Bar Association, paying special attention to the recommendations concerning the death penalty formulated by the Human Rights Committee, especially in relation to juvenile offenders", - "values": [ - "4 - General action" - ] - }, - { - "text": "Ensure that impartial, independent and transparent investigations into all allegations of human rights violations by security forces are conducted, in particular in the South of the country, and that those responsible are brought to justice", - "values": [ - "4 - General action" - ] - }, - { - "text": "Adopt the necessary measures and introduce the necessary amendments to the 2005 law on gender violence to ensure its effectiveness and to clearly define the sentences for offenders ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Strengthen and implement measures to promote gender equality and equity, address the underrepresentation of women in decision-making bodies, gender-based violence and elimination of harmful traditional practices", - "values": [ - "4 - General action" - ] - }, - { - "text": "Withdraw all its reservations to the Convention on the Rights of the Child ", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Take the necessary measures to ensure that minorities have access to employment ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Reinforce its policies for the protection of women taking into account the vulnerability of women refugees", - "values": [ - "4 - General action" - ] - }, - { - "text": "Establish a national institution to promote and protect human rights ", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Continue the international cooperation with the United Nations human rights machinery ", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Reconsider its policy of using administrative detention and immigration legislation to detain and remove non-citizens on the ground of national security ", - "values": [ - "3 - Considering action" - ] - }, - { - "text": "Take the necessary steps to ensure the prison in Kingstown meets international minimum standards and adheres to the Mandela Rules", - "values": [ - "4 - General action" - ] - }, - { - "text": "Ensure adequate human rights education and training for all professionals working with children", - "values": [ - "4 - General action" - ] - }, - { - "text": "Take immediate steps, including if necessary requesting relevant technical assistance in that regard, to ratify the International Covenant on Civil and Political Rights, the International Covenant on Economic, Social and Cultural Rights and the Convention against Torture", - "values": [ - "4 - General action" - ] - }, - { - "text": "Develop and adopt a national action plan on business and human rights, including measures on access to remedy, paying special attention to the position of human rights defenders", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Step up its efforts to prevent arbitrary detentions, and to investigate all cases involving arbitrary arrest, detention and torture and bring to justice those responsible", - "values": [ - "4 - General action" - ] - }, - { - "text": "Ratify the Optional Protocol to the Convention on the Elimination of All forms of Discrimination against Women", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Continue to extend the range of fundamental international instruments to which Sao Tome is already a party ", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Develop a national plan of action aimed at fostering a culture of human rights and at raising public awareness of human rights among the society", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Ensure that its NHRI is in conformity with the Paris Principles ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Take steps towards ensuring that all remaining obstacles to the work of human rights defenders are quickly removed so that they can operate in an open and secure environment.", - "values": [ - "4 - General action" - ] - }, - { - "text": "Join the large number of States that have adopted a moratorium on executions or abolished the death penalty.", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Establish immediately an official moratorium on executions with a view to abolishing the death penalty", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Continue to develop health services and further expand the coverage of safe drinking water and sanitation in order to better protect the right to health of its population", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Review possible discriminatory laws from its legislation, with a view to guaranteeing the effective promotion and protection of the rights of vulnerable groups, such as women and children.", - "values": [ - "3 - Considering action" - ] - }, - { - "text": "Release the thousands of Syrians unlawfully detained, especially women and children", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Strengthen the forum for dialogue between civil society and the Government ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Intensify its solidarity efforts for the rights to food and education in countries that cannot afford to ensure this due to a lack of financial resources", - "values": [ - "4 - General action" - ] - }, - { - "text": "Strengthen efforts to guarantee equal opportunities in the labour market, in particular for women from minority groups.", - "values": [ - "4 - General action" - ] - }, - { - "text": "Continue its efforts to apply its national programme to the promotion and protection of human rights and the plan of action", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Respect the elections timeline and take the measures necessary to ensure that the first ballot of the presidential elections takes place, as scheduled, on 27 June\n2010\n", - "values": [ - "4 - General action" - ] - }, - { - "text": "Strengthen its domestic mechanisms, especially towards eliminating acts of discrimination and violence against women and girls", - "values": [ - "4 - General action" - ] - }, - { - "text": "Implement legislation to abolish and effectively combat early and child marriage", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Investigate all cases of ill-treatment, human rights violations committed by law enforcement agencies and prosecute those responsible", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Continue to address efforts to mitigate effects of climate change, both nationally and internationally", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Continue efforts to combat trafficking in persons ", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Take measures to make schools more inclusive, without any form of discrimination", - "values": [ - "4 - General action" - ] - }, - { - "text": "The Maldives accepts this [100.91] recommendation. The Maldives commits to begin domestic awareness-raising and an open public debate on religious issues. Moreover, bearing in mind that perceptions of human rights and religion in the Maldives are heavily influenced by relevant international debates and norms, the Maldives requests international support to host, in 2012, a major international conference on modern Sharia jurisprudence and human rights.", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Ensure that all persons detained, also in terrorism-related cases, have access to legal counsel and are duly informed about the charges that are brought against them", - "values": [ - "4 - General action" - ] - }, - { - "text": "Consider introducing legislation requiring businesses to report publicly on efforts to ensure transparency in supply chains, as part of Sri Lanka\u2019s national action plan to combat human trafficking", - "values": [ - "4 - General action" - ] - }, - { - "text": "Amend the personal status laws in line with CEDAW, to ensure that women are treated in the same way as men in issues related to child custody, inheritance and divorce", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Continue to support children's homes ", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Continue its national policy to promote equal opportunities and treatment of women in respect of employment ", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Ensure efficient implementation of the Prohibition of Trafficking in Persons Act to combat trafficking in human beings, by collecting data, improving the training of police officers and other law enforcement officials, strengthening mechanisms for investigating the criminal cases of trafficking and prosecuting and punishing traffickers", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Continue implementing programmes and plans aimed at improving services linked to drinking water and sanitation", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Allow members of the LGBT communities the right to freedom of expression and assembly ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Contribute to an atmosphere supportive of a free and vibrant civil society, including by ensuring positive public communication and enhanced police capacity to provide protection and conduct investigations", - "values": [ - "4 - General action" - ] - }, - { - "text": "Establish an independent national body empowered to investigate the whereabouts of missing persons and victims of enforced disappearance, in the context of the various wars that have occurred in the country", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Effectively cooperate with the Special Rapporteur on the situation of human rights defenders", - "values": [ - "4 - General action" - ] - }, - { - "text": "Ratify the Optional Protocol to the Convention on the Rights of the Child on the Involvement of Children in Armed Conflict", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Ratify the International Convention for the Protection of All Persons from Enforced Disappearance, the Convention on the Rights of Persons with Disabilities and the Statute of the International Criminal Court", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Take measures to strengthen the independence and functioning of the country's judiciary, in particular to substantively reduce the time spent by persons in pretrial detention", - "values": [ - "4 - General action" - ] - }, - { - "text": "Ensure the allocation of necessary resources in order to implement measures planned under the National Human Rights Action Plan", - "values": [ - "4 - General action" - ] - }, - { - "text": "Criminalize the sale of children ", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Continue its efforts to engage with various ethnic groups and address their humanitarian and socio-economic needs as an integral part of its democratization and reconciliation process ", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Approve appropriate budget allocations and resources for the protection of women and women programmes, particularly in the areas of justice, health and equal opportunities", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Strengthen measures to ensure the full enjoyment of the right to freedom of peaceful assembly and expression", - "values": [ - "4 - General action" - ] - }, - { - "text": "Immediately and unconditionally release all prisoners of conscience ", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Establish an effective and inclusive process to follow up on recommendations emerging from the universal periodic review ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Continue working for a reduction in female unemployment and the elimination of discrimination against women in the labour market and for achieving equality of opportunities", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Take action to align all laws and policies with the principle of equality and non-discrimination as stated in the Constitution and in accordance with the Convention on the Elimination of All Forms of Discrimination against Women ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Accelerate the ratification processes of the Optional Protocol to the Convention on the Rights of Persons with Disabilities and the Optional Protocol to the Convention on the Rights of the Child on a communications procedure, which it signed in 2009 and 2012, respectively", - "values": [ - "4 - General action" - ] - }, - { - "text": "Give a special attention to children affected by the Constitutional Court ruling ensuring the provision of their basic rights, such as education, health and protection ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Ratify the Kampala amendment to the Rome Statute, if possible with a view to contributing to the activation of the jurisdiction of the International Criminal Court over the crime of aggression at the beginning of 2017 ", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Create a secure and enabling environment for civil society, notably by amending the Law 12-06 of 12 January 2012 to bring it into conformity with its Constitution and international obligations", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Ratify CEDAW", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Continue efforts to fight terrorism and adopt further programmes and activities to protect society from the phenomenon of terrorism, and fight extremism, which has come to pose a threat to many countries and an obstacle to their development ", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Continue measures for the adoption of the new National Action Plan on Human Rights ", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Establish a national strategy for human rights education and training", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Enhance measures to encourage participation of women in the labour market without gender discrimination, including by reducing the wage gap between men and women ", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Ratify the Rome Statute of the International Criminal Court and ensure its implementation", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Continue measures to combat poverty and social inequality by implementing rural development plans covering vulnerable groups, in particular rural women", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Continue to promote economic and social development to raise people's living standard and strengthen its social protection system ", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Build enough housing facilities so offenders under the age of 18 are housed separately from the general prison population", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Further strengthen the measures to fight human trafficking ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Continue its efforts to eliminate discrimination against and empower marginalized and vulnerable groups particularly by ensuring effective implementation of relevant laws and measures through proper and active coordination among line ministries, national and state governments, by extending disaggregated data to caste, gender, religion, status and region, and by increasing sensitization and reducing discriminatory attitudes among law enforcement officers through human rights education and training ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Permanently abolish the death penalty ", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Continue working to guarantee the human rights of women, who continue being victims of abuses and restrictions of their freedoms", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Continue work to ensure prison and detention centre conditions comply with the United Nations Standard Minimum Rules for the Treatment of Prisoners", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Consider social policies that facilitate the integration of migrants and asylum seekers", - "values": [ - "3 - Considering action" - ] - }, - { - "text": "Continue to further regulate the work of domestic workers", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Establish a mechanism to protect the rights of persons with disabilities", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "The removal of blanket restrictions on abortion for United States foreign assistance to permit its use for safe abortion in cases of rape, life or health endangerment and incest in countries where abortion is legal", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Combat the prevailing impunity, thereby defending victims' rights and promoting respect for human rights", - "values": [ - "4 - General action" - ] - }, - { - "text": "Take necessary measures aimed at combating sexual exploitation of migrant women and children, especially young girls", - "values": [ - "4 - General action" - ] - }, - { - "text": "Consider implementing, as appropriate, the recommendations of UNHCR, human rights treaty bodies and special procedures with respect to asylum-seekers, immigrants and irregular immigrants, especially children ", - "values": [ - "3 - Considering action" - ] - }, - { - "text": "Set up the national human rights institution ", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Amend the Public Order Management Act in line with international best practice, as set out by the Special Rapporteur on the rights to freedom of peaceful assembly and of association in his March 2016 joint report to the Human Rights Council", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Submit its first report to the UN Committee against Torture, which is overdue since 2003, in order to initiate the valuable dialogue with the Committee", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Continue the path along national reconciliation.", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Step up measures through legislation, policies and programmes to promote the rights of women, and protect them from being victimized by any forms of slavery and abuse", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "That the national human rights institution cooperate with other institutions from the region and seek accreditation according to the Paris Principles by ICC ", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Take steps to combat discrimination of LGBTI people in legislation and practice, including decriminalisation of sexual activities between consenting adults of the same sex", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Proceed to implement, as soon as possible and effectively, the national strategy regarding war crimes, and to formulate and adopt a national strategy regarding transitional justice", - "values": [ - "4 - General action" - ] - }, - { - "text": "Continue its efforts to combat terrorism and exert every possible effort to protect and promote human rights, in spite of all existing obstacles and threats, keeping away from external and regional interference that contributes to undermining the security and stability in Iraq", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Keep encouraging interreligious and inter-ethnic dialogue so that Ethiopia's pluralism of traditions and cultures remains an enriching and valued dimension of the country ", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "In relation to Law No. 90-07 on freedom of expression, it recommended the drafting of a follow-up report with a view to further strengthening domestic laws on freedom of expression. ", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Strengthen efforts to provide access to education, labour market and public life for persons with disabilities ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Take supplementary measures to remedy the situation reported by the NGO ARSIS which would suggest that efforts to reinforce by legislation the fight against exploitation and sexual abuse have not eliminated the problem of child exploitation, in particular for "street children" ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Study meticulously the report of the Public Defender's Office and enact the recommendations made therein to ensure that the human rights of all people deprived of their liberty are effectively protected ", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Cooperate with all United Nations special procedures and mechanisms", - "values": [ - "4 - General action" - ] - }, - { - "text": "Approve immediately the bill to reform the Penal Code to include the definition of the crimes of genocide, torture and enforced disappearance", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Consider/Study the possibility to take additional measures to combat discrimination against LGBT people", - "values": [ - "3 - Considering action" - ] - }, - { - "text": "Adopt measures to ensure freedom of the press ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Accelerate efforts to adopt an Anti-Discrimination Law", - "values": [ - "4 - General action" - ] - }, - { - "text": "Consider teaching of minority languages in public schools", - "values": [ - "3 - Considering action" - ] - }, - { - "text": "Adopt measures to improve the access for international and national humanitarian organizations to detention centres ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Consider ratifying the Convention relating to the Status of Refugees of 1951 and its 1967 Protocol, respecting the principle of non-refoulement of refugees and asylum seekers", - "values": [ - "3 - Considering action" - ] - }, - { - "text": "Continue with its commitment to fight terrorism, together with other countries in the region", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Continue with the current law reform effort to include measures protecting against discrimination based on sexual orientation, gender identity or disability", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Follow-up on the Supreme Court's ruling for a new legal framework permitting diversity in the media.", - "values": [ - "4 - General action" - ] - }, - { - "text": "Further expand and consolidate achievements made in promoting women's rights and well-being in tandem with its policy and practice of protecting and promoting human dignity", - "values": [ - "4 - General action" - ] - }, - { - "text": "Strengthen its institutional framework to allow it to defend its sovereignty and protect the human rights of its people", - "values": [ - "4 - General action" - ] - }, - { - "text": "Review and reform all policies, laws and practices that restrict women's rights to equal employment, property and credit, as well as access to medical care and related services", - "values": [ - "4 - General action" - ] - }, - { - "text": "Continue strengthening the presence of women in various institutions", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Publicly denounce all violence based on sexual orientation or gender identity and adopt effective measures to raise public awareness concerning the constitutional protection of LGBT individuals ", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Continue measures to improve the well-being and human rights protection of migrant workers, including domestic workers", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Make efforts to reverse the downward budgetary allocations to the education and health sectors in order to meet the African thresholds on health and education, respectively set in the Abuja and Dakar Declarations", - "values": [ - "4 - General action" - ] - }, - { - "text": "Protect and fulfil migrants' rights, in particular by effectively prosecuting offences committed against them and by improving their living conditions, also through the access to adequate health-care services ", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Ratify the Convention against Torture ", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Extend a standing invitation to the special procedures in order to improve its cooperation with the international community in the field of human rights", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Extend a standing invitation to the special procedure mechanisms of the United Nations ", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Continue its efforts to promote and protect human rights in collaboration with the Human Rights Council and OHCHR, on the basis of the needs identified by Azerbaijan", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Step up its efforts to guarantee the right to education to all children and take effective measures to substantially increase the rate of attendance, particularly of the female population, in schools.", - "values": [ - "4 - General action" - ] - }, - { - "text": "Develop and adopt legal and administrative measures aimed at making its education premises accessible and, on the other hand, at training teachers, with a view to guaranteeing full access to education to people with disabilities", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Continue promoting education and awareness-raising programmes on human rights for officers of the judiciary ", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Consider taking further steps towards the ratification of international human rights instruments that it is not yet a party to", - "values": [ - "3 - Considering action" - ] - }, - { - "text": "Engage on the path of accession to the Rome Statute", - "values": [ - "4 - General action" - ] - }, - { - "text": "Amend or repeal article 16 of the Constitution and amend all Personal Laws to remove discriminatory provisions against women as well as barriers to engaging in the political process", - "values": [ - "4 - General action" - ] - }, - { - "text": "Adopt a National Plan of Action as well as a specific Law to combat the sale of children, child prostitution and child pornography ", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Take all necessary measures towards becoming a State party to more core human rights treaties", - "values": [ - "4 - General action" - ] - }, - { - "text": "Review the National Security Act to ensure that it fully respects human rights, including the rights to freedom of speech, association and peaceful manifestation", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Take the necessary measures to ensure easy and effective access to the free birth register, especially for those births outside hospitals ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Continue to take steps to put an end to practices of bride-kidnapping and early marriage", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Take necessary measures to enforce the legislation on trafficking and economic exploitation of children, and connected judicial protection of minors", - "values": [ - "4 - General action" - ] - }, - { - "text": "Ensure harmonization of the Law on Domestic Violence and the child law with international human rights standards", - "values": [ - "4 - General action" - ] - }, - { - "text": "Explore possible ways of providing an adequate allocation of human, financial and technical resources to the health sector so as to ensure access to quality health services", - "values": [ - "4 - General action" - ] - }, - { - "text": "Redouble efforts in the field of primary, secondary and tertiary prevention of HIV-AIDS in order to drastically reduce its prevalence, especially among women and children ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Translate the initiatives of the National Strategy for Protection against Domestic Violence 2011-2016 and the National Anti-Discrimination Plan 2008-2013 into concrete laws", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "That steps be taken to set federal and state-level moratoria on executions with a view to abolish the death penalty nationwide ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Repeal all relevant legal provisions with a view to eliminate excessive, unjustified detention without raising credible criminal charges and bringing a detainee before a judge in compliance with international fair trial standards", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Engage members of the international donor community and seek technical assistance and capacity-building to address the problem of poverty and poor human development performance.", - "values": [ - "1 - Minimal action" - ] - }, - { - "text": "Continue its active engagement with the human rights mechanisms of UN for the protection and promotion of human rights", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Take all necessary measures to protect and promote the right of children, including their right to acquire a nationality and to be registered at birth, combat child marriages and finalize the implementation of the national plan of action for vulnerable children for the period 2014-2018", - "values": [ - "4 - General action" - ] - }, - { - "text": "Ensure that all relevant laws, codified and customary, are brought into compliance with the Convention on the Rights of the Child and ensure strict application of the Children's Law", - "values": [ - "4 - General action" - ] - }, - { - "text": "Strengthen labour protections for all workers in Jordan, with special emphasis on migrants, children, and domestic workers", - "values": [ - "4 - General action" - ] - }, - { - "text": "End the judaization of Jerusalem", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Grant the request made by the Special Rapporteur on the independence of judges and lawyers in 2006, 2008 and 2009 to visit the country ", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Consider reviewing the status and effectiveness of the NHRI to ensure its full compliance with the Paris Principles ", - "values": [ - "3 - Considering action" - ] - }, - { - "text": "Provide appropriate employment opportunities for women, ensuring equal wages for men and women", - "values": [ - "4 - General action" - ] - }, - { - "text": "Take steps to end impunity, and to bring to justice those responsible for human rights abuses or violations", - "values": [ - "4 - General action" - ] - }, - { - "text": "Implementation of the Millennium Development Goals and Government development Strategies", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Implement fully and effectively the recommendations by the Special Rapporteur on torture and other cruel, inhuman or degrading treatment or punishment in his 2003 report and the Committee against Torture in its concluding observations in 2011 ", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Ratify the Second Optional Protocol to the International Covenant on Civil and Political Rights, and take all necessary steps to abolish the death penalty in the military code", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Intensify its engagement with the international community to share its experiences in strengthening good governance and the land reform programme with a view to effectively fulfilling the Government's duties with accountability and pursuing equitable and efficient management of the distribution and utilization of land ", - "values": [ - "1 - Minimal action" - ] - }, - { - "text": "Continue the steadfast implementation of its national development strategies and plans aimed at poverty alleviation ", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Reconsider the constraints underneath the process of accession to Protocol No. 12 to the European Convention on Human Rights", - "values": [ - "3 - Considering action" - ] - }, - { - "text": "Decriminalize homosexual conduct by reforming the penal code so that for the purposes of prosecution, gross indecency would not apply to private acts between consenting adults ", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Amend its legislation to include the principle of equality between men and women and give men and women equal rights of inheritance", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Continue the efforts to enhance women's education through the effective programmes adopted by the Yemeni Government ", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Introduce adequate measures with a view to promoting cohesion of all ethnic groups.", - "values": [ - "4 - General action" - ] - }, - { - "text": "Extend the protection of the labour law to domestic workers and ensure that the rules concerning the right to stay do not put them in a situation of dependence from their employers", - "values": [ - "4 - General action" - ] - }, - { - "text": "Enhance measures aimed at combating violence against women ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Provide assistance to children in preventive detention who do not benefit from any family support", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Consider ratification of the Convention on the Rights of Persons with Disabilities ", - "values": [ - "3 - Considering action" - ] - }, - { - "text": "Maintain positive efforts to improve the functioning of its education system, particularly by increasing school attendance rates", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Implement urgent measures to guarantee birth registration for all children born on its territory", - "values": [ - "4 - General action" - ] - }, - { - "text": "Increase the minimum age of criminal responsibility in line with internationally accepted norms, and ensure that children who are deprived of their liberty are separated from adult prisoners", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Provide and improve training programmes on human rights for the judiciary, law enforcement personnel and lawyers.", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Continue paying special attention to the protection of the rights of vulnerable groups of the population, in particular, children, women, persons with disabilities, older persons, national minorities, especially Roma", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Continue promoting economic and social sustainable development in order to lay a solid foundation for the enjoyment of human rights", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Take decisive steps to end violence against women, for instance by sending a strong public message of zero tolerance and by working together with men and women to break the cycle of violence", - "values": [ - "4 - General action" - ] - }, - { - "text": "Look into the possibility of establishing the national human rights institution in China", - "values": [ - "3 - Considering action" - ] - }, - { - "text": "Apply a victim-centred approach towards victims of trafficking", - "values": [ - "4 - General action" - ] - }, - { - "text": "Ensure free access for civil society and national journalists to Papua and West Papua ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Continue efforts towards the introduction of human rights training in the educational system and training programmes", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Redouble its efforts in the comprehensive implementation of the National Plan of Action for Inclusive Education", - "values": [ - "4 - General action" - ] - }, - { - "text": "Implement adequate measures to ensure the comprehensive and effective protection of women against domestic violence and accelerate the drafting process of a bill that is consistent with international standards in this area", - "values": [ - "4 - General action" - ] - }, - { - "text": "Enact a religious freedom act expressly excluding the application of sharia to non-Muslims and decriminalizing apostasy which is considered a crime under the Penal Code (1991) ", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Reinforce the independence of the judiciary ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Sign and ratify CAT", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Provide adequate funding and human resources for its anti-human trafficking programs", - "values": [ - "4 - General action" - ] - }, - { - "text": "Raise the minimum age of criminal responsibility to at least 12 years, in line with the recommendations by the Committee on the Rights of the Child ", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Consider ratifying new international human rights instruments which would assist in strengthening its legal and institutional framework for the promotion and protection of human rights ", - "values": [ - "3 - Considering action" - ] - }, - { - "text": "Continue its efforts to work against poverty and to try to link the fight against poverty and education ", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Strengthen the regulatory and institutional framework to ensure implementation of the Zero Tolerance Policy on Torture, as well as enhancing capacity-building on the prevention of torture", - "values": [ - "4 - General action" - ] - }, - { - "text": "Respect the Cuban people's right to self-determination and cease its actions of interference and hostility against Cuba ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Consider the introduction of a moratorium on the application of the death penalty", - "values": [ - "3 - Considering action" - ] - }, - { - "text": "Become party to the Optional Protocol to the Convention on the Elimination of All Forms of Discrimination against Women", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Enhance its cooperation programmes and its assistance to developing countries ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Expedite the adoption of pending bills such as the Child Care and Protection Act, with a view to ensuring better protection for children against all types of violence and abuses", - "values": [ - "4 - General action" - ] - }, - { - "text": "Adhere to the fundamental international human rights instruments, in particular to ICCPR, ICESCR and to the Convention against Torture and Other Cruel, Inhuman or Degrading Treatment or Punishment (CAT) ", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Make efforts to eliminate extrajudicial killings and enforced disappearances, and intensify efforts to carry out prosecutions for such crimes", - "values": [ - "4 - General action" - ] - }, - { - "text": "Make more efforts in order to make the national dialogue a success, and activate the law of transitional justice", - "values": [ - "4 - General action" - ] - }, - { - "text": "Further include human rights education and awareness-raising programmes in school and university curricula as part of its efforts to promote human rights in the country ", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Consider enacting a comprehensive law prohibiting the practice of female genital mutilation", - "values": [ - "3 - Considering action" - ] - }, - { - "text": "Establish a moratorium on the death penalty with a view to its final abolition", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "That the Sultanate of Oman further pursue the practical measures which it has taken to spread a human rights culture in educational institutions, and use the media for this purpose", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Continue to develop a criminal responsibility system that respects the rights of children, with an emphasis on the promotion of educational measures and the gradual decrease in leisure activities", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Enhance its efforts to eliminate violence against women and children ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Guarantee the full recognition of sexual and reproductive rights ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Ensure that civilian officials or military personnel implicated in providing support to foreign or Congolese armed groups responsible for crimes against humanity are suspended from their positions, investigated and appropriately prosecuted", - "values": [ - "4 - General action" - ] - }, - { - "text": "Take measures to monitor the implementation of measures aimed at protecting victims of domestic violence", - "values": [ - "4 - General action" - ] - }, - { - "text": "Intensify its efforts to appoint the Ombudsman, and ensure the full functioning of the National Human Rights Commission as soon as possible ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Provide updated information regarding the judicial status of cases of murdered journalists for the report of the Director-General of the United Nations Educational, Scientific and Cultural Organization on the safety of journalists and the danger of impunity", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Put an end to torture and other cruel, inhuman or degrading punishment or treatment by applying the recommendations of the Committee against Torture, the Human Rights Committee, and the Special Rapporteur on torture and other cruel, inhuman or degrading treatment or punishment ", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Maintain its commitment to improve the quality of education to ensure the full enjoyment of the right to education ", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Ratify the Convention on the Rights of Persons with Disabilities and align national legislation and practice with it", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Expedite legislation to criminalize torture and bring perpetrators to justice, in accordance with the Convention against Torture and Other Cruel, Inhuman or Degrading Treatment or Punishment", - "values": [ - "4 - General action" - ] - }, - { - "text": "Take the necessary measures to establish a moratorium on executions", - "values": [ - "4 - General action" - ] - }, - { - "text": "Effectively implement the Act on Women's Right to a Life Free from Violence", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Redouble its efforts to ratify the Convention against Torture and Other Cruel, Inhuman or Degrading Treatment or Punishment", - "values": [ - "4 - General action" - ] - }, - { - "text": "Enact appropriate legislation against the sale and trafficking of children", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Ratify the international legal instruments on human rights to which it is not yet a party ", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Ensure the availability and quality of health services", - "values": [ - "4 - General action" - ] - }, - { - "text": "Continue to adopt necessary measures to strengthen social and cultural rights", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Continue working on the legislation on domestic violence crimes, particularly regarding the inclusion of a definition of sexual violence that also encompasses any non-consented sexual act within marriage", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Review the relevant legal provisions to ensure that all offences committed against human rights by military forces may also be submitted to civil courts", - "values": [ - "3 - Considering action" - ] - }, - { - "text": "Consider signing and ratifying those international human rights instruments to which it is not yet a party to", - "values": [ - "3 - Considering action" - ] - }, - { - "text": "Do not criminalize undocumented migration and reduce administrative detention to a minimum ", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Multiply efforts to expand the coverage of education and expand services to include the disabled", - "values": [ - "4 - General action" - ] - }, - { - "text": "Consider accession to the Convention against Torture", - "values": [ - "3 - Considering action" - ] - }, - { - "text": "Take the necessary steps to reduce discriminatory practices and violence against women.", - "values": [ - "4 - General action" - ] - }, - { - "text": "Positively consider adopting a de jure moratorium on executions with a view to abolishing the death penalty ", - "values": [ - "3 - Considering action" - ] - }, - { - "text": "Continue to develop the capacities of institutions working with persons with disabilities, including educational and health institutions ", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Introduce a legal prohibition of corporal punishment as a punitive and corrective measure in the school system and in the family", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Ratify the International Convention [ICPPED]", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Ensure equal remuneration between men and women in practice ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Continue with further efforts to guarantee children's rights, particularly in the field of social protection and education", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Monitor enforcement of environmental legislation to protect the rights of local communities and prevent environmental degradation", - "values": [ - "4 - General action" - ] - }, - { - "text": "Increase access to sexual and reproductive health services by raising the health budget to 15 per cent in line with the Abuja declaration", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Accede to or ratify the following international instruments: the Second Optional Protocol to the International Covenant on Civil and Political Rights, aiming at the abolition of the death penalty", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Consider how to deal with minor delinquency in order to provide sentences suited to the age of offenders, to educate them and lead to their social reintegration.", - "values": [ - "3 - Considering action" - ] - }, - { - "text": "Strengthen human rights protection mechanisms for Indigenous Peoples, with special attention to ensure the human rights of indigenous girls and boys", - "values": [ - "4 - General action" - ] - }, - { - "text": "Further combat racial discrimination and xenophobia, and effectively reduce the number of cases of hate crime", - "values": [ - "4 - General action" - ] - }, - { - "text": "Submit the CEDAW report overdue since 2007 ", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Establish an independent human rights institution that conforms with the Paris Principles", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Continue the efforts aimed at reducing the burden of tuberculosis in the country", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Consider establishing an independent national human rights institution fully compliant with the principles relating to the status of national institutions for the promotion and protection of human rights ", - "values": [ - "3 - Considering action" - ] - }, - { - "text": "Strengthen measures to improve the welfare and conditions of detention of children in conflict with the law ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Accede to the 1954 Convention on the Status of Stateless Persons ", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Work on implementing the women and peace and security agenda to ensure effective participation of women in all spheres", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Resume bilateral negotiations with Nepal and cooperate with the Office of the United Nations High Commissioner for Refugees to facilitate the voluntary return of refugees to Bhutan and focus in particular on addressing cases involving compelling humanitarian concerns ", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Ensure that the rights of all children are equally protected under domestic law, regardless of gender, and consider implementing the recommendations of the Committee on the Rights of the Child ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Continue to prioritize the issue of land evictions and to work with the Special Rapporteur to ensure an end to forced evictions and fulfil its obligations to respect and protect the human rights of all Cambodians, including individuals belonging to indigenous groups ", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Continue educational reform and the restructuring of the educational system, particularly paying attention towards raising awareness and education on human rights ", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Quickly ratify and implement CAT ", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Repeal the Public Emergency Regulations and to establish conditions allowing for freedom of expression, assembly and democratic dialogue, including by ensuring protection from harassment and freedom for political activists and human rights defenders", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Take immediate measures to improve the physical conditions and security situation in detention and processing centres for asylum seekers, especially for women and children. Invest in finding timely, adequate and durable solutions for refugees", - "values": [ - "4 - General action" - ] - }, - { - "text": "Consider amending the legislation on abortion in order to, as a first step, take into account situations where pregnancy is the result of sexual aggression or incest or when the pregnant woman is in danger, and assure women of their rights to safe medical and reproductive health care ", - "values": [ - "3 - Considering action" - ] - }, - { - "text": "Review periodically its migration policy in order to face the new challenges posed by this phenomenon", - "values": [ - "3 - Considering action" - ] - }, - { - "text": "Take further steps to ensure the right to education for all, especially through increasing the literacy rate", - "values": [ - "4 - General action" - ] - }, - { - "text": "Ratify the Rome Statute of the ICC and bring its legislation in line with the obligations of this Statute", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Adopt measures for the greater inclusion of the Kweyol community and other non-English speaking linguistic minorities into the social and political life of the country through specific education and training programmes ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Take necessary measures against discrimination based on ethnic and religious origin and language in employment and prosecute such cases", - "values": [ - "4 - General action" - ] - }, - { - "text": "Continue efforts to eradicate literacy rates", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Step up its efforts to ratify ICRMW", - "values": [ - "4 - General action" - ] - }, - { - "text": "Create greater awareness on the part of law enforcement personnel, and launch efforts in the field of education and training on tolerance and cultural diversity ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Continue and intensify programmes aimed at mitigating climate change negative impacts on food security and environment, and share the experience gained in this field with interested countries ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Promote the effective access to basic social services for the indigenous minority including San and Himba on an equal footing with the rest of the society, as well as rapid adoption and effective implementation of the "White Paper on Indigenous Rights" drafted by the Ombudsman Office", - "values": [ - "4 - General action" - ] - }, - { - "text": "Ensure that police officers and security personnel receive adequate human rights training and clear instructions with regard to their duty to respect human rights at all times, including the right to freedom of expression, association and peaceful assembly ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Ensure a rapid return to constitutional rule through the organization of free and transparent elections", - "values": [ - "4 - General action" - ] - }, - { - "text": "Intensify and carry forward its efforts, particularly in the area of right to education", - "values": [ - "4 - General action" - ] - }, - { - "text": "Continue the implementation of plans to reduce schools desertion rates, particularly at the secondary level ", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Continue efforts to reduce poverty through social programmes focused on human rights", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Take measures to ensure universal vaccination coverage", - "values": [ - "4 - General action" - ] - }, - { - "text": "Ratify international instruments as previously recommended and supported in the first universal periodic review, as appropriate", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Make efforts for early ratification of the Convention on the Rights of Persons with Disabilities ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Recommended to Poland that laws on press offences be liberalized.", - "values": [ - "4 - General action" - ] - }, - { - "text": "Establish and provide adequate resources for a sufficient number of safe houses to shelter victims of domestic violence.", - "values": [ - "4 - General action" - ] - }, - { - "text": "Adopt necessary measures to prevent indefinite detention of migrants, and provide all legal safeguards to detained migrants ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Consider signing-acceding to the main international human rights instruments, including ICCPR, ICESCR, ICERD and ICRMW \n\n", - "values": [ - "3 - Considering action" - ] - }, - { - "text": "Take the measures necessary to end covert gender discrimination, including domestic violence", - "values": [ - "4 - General action" - ] - }, - { - "text": "Continue engagement with the United Nations human rights mechanisms and other relevant United Nations bodies to implement the recommendations put forward today", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Rapidly complete the alignment of national legislation with the provisions of the Rome Statute of the International Criminal Court ", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Continue to strengthen its domestic legal system and enforcement measures to secure a safe living environment for its people", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Implement the Education Sector Plan as well as strategies and activities included in the Plan, to improve education management within the period 2014-2018", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Implement genuine measures ensuring truly independent judiciary, including establishing transparent procedures and criteria regarding the appointment and dismissal of judges and the use of disciplinary measures ", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Organize training and seminars on human rights for law enforcement authorities in charge of combating terrorism.", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Take all appropriate measures to end discrimination and harassment against persons belonging to ethnic and religious minorities", - "values": [ - "4 - General action" - ] - }, - { - "text": "Improve prison conditions and adopt concrete measures to eliminate overcrowding in compliance with international standards", - "values": [ - "4 - General action" - ] - }, - { - "text": "Release individuals incarcerated for publicly expressing their opinions and ensure due process for other detainees ", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Furthermore, in regard to special procedures, the Government stressed that The Gambia was committed to cooperate with the procedures and mandates and would treat with utmost urgency any request for invitations by them.", - "values": [ - "4 - General action" - ] - }, - { - "text": "A public policy that considers children to be important to development at all levels", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Take measures in order to ensure that freedom of assembly and association can be exercised in line with international obligations and refrain from imposing restrictions on civil society and human rights defenders", - "values": [ - "4 - General action" - ] - }, - { - "text": "Accede to the Optional Protocols to the Convention against Torture, to the International Covenant on Economic, Social and Cultural Rights and to the International Convention for the Protection of All Persons Enforced Disappearance, as recommended by certain treaty bodies ", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Pursue its efforts aiming at establishing a National Human Rights Institution ", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Ensure the completion and successful running of the nine rehabilitation centres in a comprehensive disability complex", - "values": [ - "4 - General action" - ] - }, - { - "text": "Institute mechanisms to enhance procedural guarantees for the detention of detainees.", - "values": [ - "4 - General action" - ] - }, - { - "text": "Revise its system of detention to reduce the use of police custody for children, and ensure that police custody of children is a measure of last resort and for the shortest period of time possible", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Re-establish a moratorium on executions in line with General Assembly resolutions and with a view to abolishing the death penalty completely ", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Continue considering the ratification of the Optional Protocol to CRC on a communications procedure", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Consistent with the requirements of fair trial provided for in Libyan constitutional instruments and relevant international conventions it has signed and ratified, abolish all special courts and related institutions, including the State Security Court and Prosecution Office, and abrogate all laws, provisions and powers related to the People's Court ", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "In line with the recommendations of the Committee on Economic, Social and Cultural Rights, revoke the condition which requires a minority group to have lived in the county at least one hundred years in order to be considered a national minority ", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Continue to take measures to ensure in practice the protection of children against sale and trafficking, in accordance with Act No. 2010-272, and ensure that persons engaging in the sale and trafficking of children are prosecuted ", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Speed up the process of acceding to the Optional Protocol to the Convention on the Rights of the Child on the sale of children, child prostitution and child pornography and the Convention on the Rights of Persons with Disabilities ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Continue its efforts in favour of persons with disabilities", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Ensure effective implementation of its domestic laws on the protection of the family and prevention of violence against women and children", - "values": [ - "4 - General action" - ] - }, - { - "text": "Continue its efforts in the area of human rights education and training, especially with activities aimed at implementing the third phase of the World Programme for Human Rights Education", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Abolish the practice of prosecuting women for "moral crimes" ", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Accede to the Protocol to Prevent, Suppress and Punish Trafficking in Persons, Especially Women and Children, supplementing the United Nations Convention against Transnational Organized Crime, and implement the Protocol in its domestic law, with penalties commensurate with this serious crime ", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Take measures to protect human rights defenders, including journalists", - "values": [ - "4 - General action" - ] - }, - { - "text": "Consider the possibility of ratifying the Convention on the Rights of Persons with Disabilities and, meanwhile, pursue efforts aimed at promoting the rights of persons with disabilities and their access to public places ", - "values": [ - "3 - Considering action" - ] - }, - { - "text": "Extend an open and permanent invitation to the United Nations human rights special procedures mandate-holders", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Create public campaigns to combat social discrimination against those who suffer with HIV ", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Continue to intensify its efforts in addressing all the remaining challenges of human rights, in particular, in the fields of promotion of economic growth, social protection and equity with special attention given to women's and children's rights through ongoing programs and plans of action ", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Introduce more careful approaches to the questions related to Roma being moved from their camps, as well as further efforts for their integration into French society", - "values": [ - "4 - General action" - ] - }, - { - "text": "Continue its cooperation with treaty bodies and submit its initial report on the implementation of ICCPR as well as the report on the application of the Optional Protocol to the Convention on the Rights of the Child on the sale of children, child prostitution and child pornography (OP-CRC-SC) ", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Repeal all legislation incompatible with the principle of equality and non-discrimination, including provisions of customary law, as recommended by the Committee on the Elimination of Discrimination against Women", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Consider an amendment to the Personal and Family Code to ensure full equality between children born in and out of wedlock", - "values": [ - "3 - Considering action" - ] - }, - { - "text": "Remove all penalties for women who seek abortion, and for doctors and other medical personnel involved in providing these services", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Harmonize its legislation with the CRC (Convention on the Rights of the Child) ", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Continue to promote legislation and actions to eliminate discrimination and strengthen protection of rights of vulnerable groups such as women, children and people with disabilities ", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Continue observing its national legal safeguards surrounding the application of death penalty as one of the legitimate tools of criminal justice", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Allocate according to its capacity, adequate human and other resources in order to strengthen the combat on human trafficking", - "values": [ - "4 - General action" - ] - }, - { - "text": "Amend the Internet Law in order to guarantee the free exercise of freedom of expression, among others, by ensuring that the Telecommunications Authority cannot block websites without judicial authorization", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Note that traditional practices of compensation between the family of the perpetrators and the victims are inconsistent with human rights standards.", - "values": [ - "4 - General action" - ] - }, - { - "text": "Continue simplification of procedures for entrepreneurs, including initiatives aiming at strengthening the pioneer role of women", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Continue upholding the rule of law, raising public awareness of human rights standards, and fighting against discrimination, in particular against minority groups, immigrants, and children with disabilities", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Widen access to free primary health services and strengthen preventive measures on HIV/AIDS transmission to children ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Conduct consultations involving all stakeholders, including civil society organisations, in order to examine whether Article 40.3.3 of the Constitution could be revised and the legal framework related to abortion broadened", - "values": [ - "3 - Considering action" - ] - }, - { - "text": "Establish a national institution for the promotion and protection of human rights in conformity with the Paris Principles", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Adopt appropriate plans or programmes to speed up the development of the country on the basis of the five priorities that it has established", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Gradually form special police intervention units with the inclusion of female personnel qualified in handling domestic violence cases ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Continue to work to reduce the levels of poverty in indigenous communities", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Continue to pursue all efforts to modernize the legal framework of the education system by enshrining therein the right to basic education", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Continue its efforts to stop child labour, particularly in the mining sector ", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Ratify OP-CAT and, although not a human rights instrument per se, the Rome Statute of the International Criminal Court (ICC)", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Take the necessary steps to ensure that all detainees are afforded a fair trial within a reasonable period", - "values": [ - "4 - General action" - ] - }, - { - "text": "Pursue judicial reform, especially to improve access to justice and to fight the inappropriate use of preventive detention", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Pursue its efforts to support the CNDHC and to bring it in conformity with the Paris Principles ", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Continue efforts to implement the policy of Education for All, especially children, at all levels", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Elimination from the Penal Code of standards which allow for discrimination against people on the grounds of their sexual orientation", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Prohibit and punish all acts of torture perpetrated by security services, government armed forces or affiliated militias", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Continue its programmes to combat violence against women, including addressing the values and attitudes that contribute to the perpetration of violence", - "values": [ - "4 - General action" - ] - }, - { - "text": "Immediately release the 12 women citizens of DPR Korea who were abducted during the former regime and Mrs. Kym Ryon Hui, who has been appealing for her return to her family, and bring to justice those responsible for the abduction", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Address hate crimes against lesbian, gay, bisexual, transgender and intersex persons", - "values": [ - "4 - General action" - ] - }, - { - "text": "Put forward its utmost efforts to eradicate sexual and gender-based violence", - "values": [ - "4 - General action" - ] - }, - { - "text": "Take all necessary steps to implement the laws protecting freedom of expression and press, and effectively prevent authorities from violating these rights ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Strengthen multisectoral actions aimed at eradicating gender-based violence, considering the importance of the empowerment of rights and awareness-raising initiatives, with special attention to adequate mechanisms for such purposes", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Adopt the necessary measures to ensure universal birth registration with an emphasis on indigenous children", - "values": [ - "4 - General action" - ] - }, - { - "text": "Give priority to protecting the rights of girl children by ensuring that all girls are registered at birth, implement wide awareness raising campaigns on the human rights of girls and promote their education", - "values": [ - "4 - General action" - ] - }, - { - "text": "Ensure that all civilians are tried before civilian courts and are granted the right to fair trial, in line with Thailand's obligations under the International Covenant on Civil and Political Rights", - "values": [ - "4 - General action" - ] - }, - { - "text": "Introduce as quickly as possible a de jure moratorium on executions ", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Ratify all international human rights conventions and protocols and those of the International Labour Organization and the Rome Statute of the International Criminal Court", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Draw up an effective and appropriate policy framework and institutional mechanism to fight hunger, food insecurity and inequality in income distribution", - "values": [ - "4 - General action" - ] - }, - { - "text": "Consider including civil society in the assessment sessions of the National Action Plan on Human Rights and in the formulation and preparation of the corresponding National Report", - "values": [ - "3 - Considering action" - ] - }, - { - "text": "Consider adopting specific laws or repealing existing legislation to combat violence against women ", - "values": [ - "3 - Considering action" - ] - }, - { - "text": "Impose a moratorium on executions and abolish the death penalty ", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Create an independent body to investigate all torture allegations, including in Thailand's Deep South, and bring perpetrators to justice", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Continue efforts for the promotion and protection of the rights of migrants, refugees and internally displaced persons, as well as persons with disabilities. ", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Take adequate and effective steps to guarantee against arbitrary and unlawful acquisition of this data", - "values": [ - "4 - General action" - ] - }, - { - "text": "Strengthen policies aimed at protecting children from trafficking and forced labour ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Establish a single independent human rights institution with a broad mandate, in line with the Paris Principles or another specialised body, to consider, issue opinions, and make recommendations on complaints submitted by women alleging violations of human rights ", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Continue its efforts to eradicate poverty through the implementation of the tools developed in the framework of the national strategic policy", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Continue its efforts to implement legal protection measures for women-victims of all forms of violence by establishing a witness protection programme as it will increase their access to justice and their protection ", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Continue its reform process with all possible financial and technical assistance from the international community and relevant agencies for the political, economic and social uplift of its citizens, in particular women.", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Submit overdue reports to the Human Rights Committee, the Committee on Economic, Social and Cultural Rights and the Committee against Torture", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Adopt a new bill amending the Criminal Code on the issues of gender-based violence, human trafficking, sexual exploitation and forced marriage", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Consider adopting national legislative measures to ensure gender equality, as stipulated in its Constitution, and to combat and eliminate violence against women ", - "values": [ - "3 - Considering action" - ] - }, - { - "text": "Conduct public campaigns on racism and xenophobia, and include human rights education in the educational curriculum of public schools", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Improve the legal protection of migrant workers, apply the provisions of the labour laws that prohibit the retention of passports of migrant workers, strengthen institutional controls for the protection of migrant workers, and remove or amend the requirement for foreign nationals to obtain their sponsor's consent in order to obtain exit visas ", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Swiftly establish a national preventive mechanism in accordance with the Optional Protocol to the Convention against Torture and Other Cruel, Inhuman or Degrading Treatment or Punishment ratified in 2004 and speed up the process of incorporation of provisions of other ratified international human rights instruments into national legislation", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Conduct appropriate and impartial investigations of excessive use of force by security forces, prosecute and punish officers responsible, and provide proper compensation to victims and their families ", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Complete ratification of the Convention on the Rights of Persons with Disabilities ", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Pursue its policies regarding human rights education and training for law enforcement officials", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Deepen dialogue with UNHCR regarding the situation of individuals belonging to the Hmong minority returned from third countries ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Increase human and financial resources of the Provedoria for Human Rights and Justice to improve the protection of human rights ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Undertake a health-care reform that guarantees universal access and integrated health-care services, and create adolescent-friendly health-care clinics ", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Alleviating extreme poverty and hunger in the country", - "values": [ - "4 - General action" - ] - }, - { - "text": "Put an end to the disproportionate use of force by the police against all citizens, in particular, Afro-Canadians", - "values": [ - "4 - General action" - ] - }, - { - "text": "Accede to the Rome Statute as well as the Agreement on Privileges and Immunities of the International Criminal Court (APIC) ", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Effectively to implement the new regulations on health services and medical care that gives the right to all persons in the country to receive urgent medical attention and be examined by specialized care services ", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Amend the Criminal Code to raise the age of criminal responsibility in accordance with international standards", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Pursue effectively its recently adopted Plan of Action for Justice Reform, inter alia by allocating the necessary resources for its prompt and full implementation", - "values": [ - "4 - General action" - ] - }, - { - "text": "Move towards swift implementation of its National Gender Policy as a positive step towards the goal of eliminating gender-based violence", - "values": [ - "4 - General action" - ] - }, - { - "text": "Elaborate a legal framework regarding disciplinary proceedings (for judges)", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Continue to support other developing countries, especially the least developed countries, in their development efforts and thus help them realize their economic, social and cultural rights ", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Investigate all allegations of attacks and arbitrary detention of lesbian, gay, bisexual, transgender and intersex persons and bring the perpetrators to justice", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Further strengthen the law enforcement and judicial system in the effort to address impunity, and to prevent the incidence of trafficking and domestic violence, as well as the sexual abuse of women and girls", - "values": [ - "4 - General action" - ] - }, - { - "text": "Take further measures and accede to the Hague Convention on the Protection of Children and Co-operation in Respect of Intercountry Adoption ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Amend internal legislation so as to prohibit domestic violence and sexual harassment against women and children and ensure that women have equality before the law", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Implement legal reforms recognizing a legally-defined age of minority that prevents early and forced marriage, detention of minors as adults and exposure of minors to the death penalty", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Ensure that victims [women who are victims of violence] receive adequate assistance, including psychosocial counselling", - "values": [ - "4 - General action" - ] - }, - { - "text": "Continue the efforts to improve the access to education for the children and youth from Roma communities as the United Nations Economic, Scientific and Cultural Organization has also suggested", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Implement policies and programmes aimed at preventing HIV/AIDS infections", - "values": [ - "4 - General action" - ] - }, - { - "text": "Ensure asylum seekers' rights and family reunification without discrimination", - "values": [ - "4 - General action" - ] - }, - { - "text": "Enhance effectiveness of its legal, executive judiciary and law enforcements reforms, in line with international human rights standards", - "values": [ - "4 - General action" - ] - }, - { - "text": "Further enhance its measures for the promotion and protection of human rights through, among others, developing a comprehensive human rights national action plan", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Sri Lanka will continue its traditional role of consensus builder and participate actively in the work of the Human Rights Council to make the Council a strong, effective and efficient body - capable of promoting and protecting the human rights and fundamental freedoms of all - and will continue to participate in the work of the Council in norm-setting in the field of human rights.", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Draw up and implement with external assistance, a comprehensive plan to address the problems faced by persons living with albinism, to include: reparation to victims of such attacks", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Take concrete steps to protect its LGBT citizens and their freedom of assembly and expression ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Sustain efforts to align the domestic legal framework with international human rights standards", - "values": [ - "4 - General action" - ] - }, - { - "text": "Continue its efforts to establish a national human rights institution, in line with the Paris Principles", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Continue its efforts aimed at combating the persistence of discriminatory stereotypes concerning the roles and responsibilities of women and men in the family and in society", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Strengthen the juvenile justice system, in particular by ensuring the designation of specialized courts and judges, which would apply procedures that take into account the specific needs of children", - "values": [ - "4 - General action" - ] - }, - { - "text": "Set up a national human rights institution in accordance with the Paris Principles ", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "That the Bill on corporal punishment of children currently under consideration, explicitly prohibit all forms of corporal punishment in all settings, and enact this Bill as a matter of priority", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Intensify its efforts to improve access to education for all, including by allocating adequate resources", - "values": [ - "4 - General action" - ] - }, - { - "text": "Study the possibility of ratifying the ICRMW", - "values": [ - "3 - Considering action" - ] - }, - { - "text": "Take adequate measures to effectively safeguard the freedoms of expression, association and assembly", - "values": [ - "4 - General action" - ] - }, - { - "text": "Further raise the quality of education on human rights for law enforcement officials and those directly involved with inmates ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Consider additional measures to guarantee the security of humanitarian aid organizations so they may undertake their work without risks ", - "values": [ - "3 - Considering action" - ] - }, - { - "text": "Initiate a process of consultations with civil society to study how to reform the 2015 law on public associations to favour freedom of association, in line with international human rights norms", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Adopt the necessary and appropriate measures to ensure that all branches of the government, Parliament and judiciary apply the Convention on the Elimination of All Forms of Discrimination against Women, and harmonize domestic legislation with that Convention ensuring that discriminatory dispositions against women are repealed", - "values": [ - "4 - General action" - ] - }, - { - "text": "Intensify efforts to combat child trafficking and international child abduction in order to conserve the gains already achieved by the Government in this area ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Continue its commitment to the promotion and protection of human rights through its thematic strategies of good governance, combating corruption, eradicating poverty and improving health conditions in the country", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Continue with the measures to improve the status of women in society", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Increase measures to guarantee equal opportunities for women and men in the labour market and provide the General Inspection of Labour with necessary human and financial resources requested to supervise and sanction discriminatory practices against women in the field of labour", - "values": [ - "4 - General action" - ] - }, - { - "text": "Expedite the formulation of a national action plan on human rights", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Sign and ratify the OP-ICESCR and the OP-CRC-IC", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Ratify and accede to the International Convention on the Protection of the Rights of All Migrant Workers and Members of Their Families ", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Fully implement the Agreement on the Resolution of the Conflict in the Republic of South Sudan, notably its provisions on accountability for violations of international humanitarian and human rights law committed during the conflict", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Take measures in order to create conditions for an inclusive political environment that includes respect for religious and ethnic minorities", - "values": [ - "4 - General action" - ] - }, - { - "text": "Continue to take actions to improve the capacity of the judiciary, including by sensitizing officials working in the judicial branch on issues concerning vulnerable groups such as women, children and persons with disabilities", - "values": [ - "4 - General action" - ] - }, - { - "text": "The delegation reiterated the commitment of Spain to present a mid-term report to strengthen the follow-up of the recommendations supported or partially supported.", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Urgently ratify the Convention against Torture and Other Cruel, Inhuman or Degrading Treatment or Punishment as well as the Optional Protocol to the Convention against Torture and Other Cruel, Inhuman or Degrading Treatment or Punishment in order to allow visits to places of detention", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Ensure that all religious communities are treated without discrimination.", - "values": [ - "4 - General action" - ] - }, - { - "text": "Investigate all alleged enforced disappearances, and accede to the International Convention for the Protection of All Persons from Enforced Disappearance ", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Step up efforts to implement the Convention on the Rights of the Child, particularly in the areas of juvenile justice, trafficking of children and child labor ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Investigate thoroughly all acts of vandalism against graves and monuments of Soviet soldiers who perished in the fight against Nazi Germany and bring the perpetrators to justice", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Extend a standing invitation to all the Human Rights Council special procedures", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Develop a sustainable mechanism to protect its population against food insecurity, through prevention strategies and the implementation of social programmes", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Re-establish a moratorium on the application of the death penalty with a view to its abolition", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Speed up the development of the "open-doors-regime" project to accommodate persons awaiting deportation ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Initiate a process of abolition of the death penalty and establish an immediate moratorium in relation to its application", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Formally establish a moratorium on the application of the death penalty, as a first step towards its definitive abolition", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Increase its efforts to fight impunity for war crimes, in particular sexual violence, by, inter alia, including a definition of sexual violence in the criminal code", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Continue its positive efforts in the promotion and protection of human rights, including, with the support of developed countries, through its commitment to allocate 0.7 per cent of GDP to ODA.", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Take concrete measures to allow the United Nations Special Rapporteur on the situation of human rights in Eritrea to fully implement her mandate, including granting her unfettered access to the country ", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Incorporate in the national legislation the provisions of the Convention on the Rights of the Child", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Develop implementation guidelines and to provide necessary budgetary support for the full realization of the Equality Act of 2013, in order to empower women", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Ratification of the Optional Protocol to CEDAW, which reflects the clear vision of Tunisia and its sustained efforts to further promote women's status and to safeguard and consolidate their rights", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Ensure punishment for perpetrators of all violence against women and also thoroughly investigate and punish members and leaders of illegal jirgas for their calls to violence against women.", - "values": [ - "4 - General action" - ] - }, - { - "text": "Carry out its efforts to end the use or recruitment of children by armed groups or forces, particularly in cooperation with the United Nations ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Enable unfettered and continue access of ICRC to detention facilities following the encouraging agreement reached in March 2008.", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Continue on its path of aligning its national legislation with its international obligations according to the instruments to which it has acceded ", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Pursue efforts to ensure that labour relations between workers and employers are in line with international labour standards", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Strengthen its efforts to properly respond to allegations of domestic violence, including by training police officers, prosecutors and judges, and to ensure that women victims of violence obtain adequate redress and support", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Strengthen protection of the rights of religious minorities, in particular the conditions for the exercise of freedom of worship, and put an end to all impunity for violations of these rights", - "values": [ - "4 - General action" - ] - }, - { - "text": "Having studied all the background information, recommended that a national programme to combat overcrowding in prisons be developed in order to bring Polish places of detention into line with international standards.", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Ratify the Optional Protocol to the Convention against Torture in keeping with the commitment undertaken by Australia during its previous UPR", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Continue to enhance senior citizens' workforce participation, as advocated under the Federal Plan for Senior Citizens, adopted in 2012", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Amend Article 149 of the Guyana Constitution to prohibit discrimination on the basis of sexual orientation and repeal Sections 351 to 353 of the Criminal Law Offences Act, which criminalizes sexual activities between consenting adults of the same sex", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Continue awareness-raising campaigns to eradicate harmful traditional practices and introduce sex education in the school curricula", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Expedite essential reforms of the judiciary", - "values": [ - "4 - General action" - ] - }, - { - "text": "Adopt immediate and positive measures to combat all forms of discrimination, xenophobia and related intolerance against the Roma communities and other ethnic groups, with regard to access to housing, quality education, employment and health care", - "values": [ - "4 - General action" - ] - }, - { - "text": "Pursue efforts to provide education for all people residing in the Lebanese territory", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Follow-up dynamically on its policies of combating prison overpopulation, in particular through the development of new facilities", - "values": [ - "4 - General action" - ] - }, - { - "text": "Ratify the Optional Protocol to the CAT and establish an independent national preventive mechanism", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Implement the recommendations from the second cycle contained in A/HRC/21/3, paras. 129.62 and 129.65, and unequivocally ban corporal punishment in all places, including at home, in alternative care institutions, in day nurseries and in schools", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Strengthen efforts to ensure retroactive birth registrations and issuance of documents for children lacking such documentation as well as to ensure that children lacking identity documents are not refused access to health, education and other public services, including child allowances", - "values": [ - "4 - General action" - ] - }, - { - "text": "Take steps to seek the Commission's reaccreditation under the Paris Principles", - "values": [ - "4 - General action" - ] - }, - { - "text": "Further refine its requirements for international assistance", - "values": [ - "1 - Minimal action" - ] - }, - { - "text": "Consider the recommendation of the Committee on Rights of the Child (Committee on the CRC) to raise the minimum age of voluntary military recruitment ", - "values": [ - "3 - Considering action" - ] - }, - { - "text": "Implement a specific strategy of birth registration for indigenous communities based on the respect of their culture", - "values": [ - "4 - General action" - ] - }, - { - "text": "Invite representatives of international human rights organizations to visit Venezuela, including by issuing a standing invitation to the UN special procedures ", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Ratify the International Convention on the Protection of the Rights of All Migrant Workers and Members of Their Families, the International Convention for the Protection of All Persons from Enforced Disappearance and the Optional Protocol to the Convention against Torture", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Continue efforts to submit national reports concerning specific human rights treaties", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Ratify and effectively implement the Rome Statute of the International Criminal Court, the International Convention for the Protection of All Persons from Enforced Disappearance and the Optional Protocol to the Convention against Torture", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Assign the necessary human and financial resources for the prompt implementation of the National Strategy to Prevent Chronic Malnutrition 2016-2020", - "values": [ - "4 - General action" - ] - }, - { - "text": "Strengthen efforts to promote access of persons with disabilities to education and labour market, their legislative protection, in particular through speeding up approval by the Parliament of the CRPD ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Continue promoting economic development in all regions and strengthening their self-development capacity", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Continue to avail itself of bilateral and international partnerships, including with various United Nations Funds, Programmes and Specialized Agencies, in areas which prove beneficial to the country", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Ratify the International Convention on the Protection of the Rights of All Migrant Workers and Members of Their Families ", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Adopt a fair immigration policy, and cease xenophobia, racism and intolerance to ethnic, religious and migrant minorities ", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Improve children's access to education ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Continue to implement its national policies and programmes regarding poverty reduction, with coordinated and robust international cooperation and assistance", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Develop a comprehensive national system of data collection, analysis and dissemination regarding immigration policies and practices to be used as a foundation for rights-based policymaking on migration", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Continue its efforts to eliminate violence against women, including domestic violence", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Continue efforts to combat discrimination suffered by the most vulnerable groups of the population, such as persons with disabilities, with HIV/AIDS or indigenous peoples", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Agree to a visit by the Special Rapporteur on torture to investigate these practices and allegations of systematic violence in detention facilities", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Amend the relevant legislation to bring the definition of torture in line with the Convention against Torture ", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Pursue its efforts aimed at improving the standard of living of its population, taking into consideration the equitable distribution of the fruit of those efforts among all segments and groups in society and among various regions ", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Take measures to fight discrimination against women particularly in rural areas", - "values": [ - "4 - General action" - ] - }, - { - "text": "Strengthen the means at the disposal of the justice system and make it more accessible to indigent persons ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Ensure that the cases of intimidation and violation against journalists and human rights defenders are effectively investigated and prosecuted and that those responsible are brought to justice", - "values": [ - "4 - General action" - ] - }, - { - "text": "That the new administration that will emerge from the elections of November 8 develop a road map for the implementation of the recommendations issued by the Human Rights Council, the General Assembly, and United Nations Special Rapporteurs and Envoys", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Ensure that all migrants in detention have access to basic services and adequate living conditions", - "values": [ - "4 - General action" - ] - }, - { - "text": "Continue its national efforts to improve access to justice and provide necessary training for personnel working in that field", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Ensure investigations and prosecution of those responsible for abduction and enforced disappearances and encourage the Supreme Court to continue investigation on this problem", - "values": [ - "4 - General action" - ] - }, - { - "text": "Ratify the Second Optional Protocol to the International Covenant on Civil and Political Rights (ICCPR-OP 2)", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Continue efforts to increase awareness on the rights of women and protection of the health of mothers and children, particularly in the remote regions of the country", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Take necessary measures to eradicate difficulties facing persons with disabilities in exercising their rights and improve their access to public places, services and social security benefits", - "values": [ - "4 - General action" - ] - }, - { - "text": "Ensure that allegations of torture and other ill-treatment are investigated promptly and effectively and that the perpetrators of these acts are prosecuted and punished according to the standards required by international norms", - "values": [ - "4 - General action" - ] - }, - { - "text": "Andorra reiterates its commitment, without prejudice to any future move to fully align its national legislation with the Rome Statute of the International Criminal Court", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Promptly ratify the Optional Protocol to the Convention on the Rights of Persons with Disabilities", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Exert more concrete efforts to fully realize the right to life, liberty and security of the person, as well as respect for the rule of law in national institutions", - "values": [ - "4 - General action" - ] - }, - { - "text": "Adopt a national action plan pursuant to the United Nations guidance on multinational corporations to guard against human rights violations", - "values": [ - "3 - Considering action" - ] - }, - { - "text": "Ratify the UNESCO Convention against Discrimination in Education", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Expedite the process of finalization of the National Action Plan on the Rights of the Child", - "values": [ - "4 - General action" - ] - }, - { - "text": "Consider early ratification of the International Covenant on Civil and Political Rights and the International Covenant on Economic, Social and Cultural Rights ", - "values": [ - "3 - Considering action" - ] - }, - { - "text": "Prevent discrimination in all cases without taking consideration of grounds such as religious beliefs or national security", - "values": [ - "4 - General action" - ] - }, - { - "text": "Introduce the post of the national ombudsman for the rights of the child with a view to the effective promotion and protection of children's rights", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Further strengthen legal provisions and social protection mechanisms to effectively protect women who are victims of domestic violence", - "values": [ - "4 - General action" - ] - }, - { - "text": "Continue to support its policy to promote dialogue among religions and civilizations through strengthening the role of the World Centre for Mediation and reinforcing the culture of tolerance and coexistence in the world ", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Repeal and do not enforce discriminatory and racial laws such as Law SB 1070 of the State of Arizona ", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Strengthen complementarity between governmental bodies so as to strengthen capacities of the institutions which deal with the needs of persons with disabilities", - "values": [ - "4 - General action" - ] - }, - { - "text": "Adopt a national human rights action plan", - "values": [ - "4 - General action" - ] - }, - { - "text": "Take further steps to reform the judicial and penal system through the training of detention and prison staff, and the creation of adequate incarceration centres so as to avoid the abuse of arbitrary detention and to eliminate the excessive use of force by penitentiary personnel", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Intensify measures to promote the rule of law while consolidating peace and stability through dialogue and national reconciliation mechanisms.", - "values": [ - "4 - General action" - ] - }, - { - "text": "Ensure that no impediments are created to the preservation, expression, and development of cultural identity by all citizens", - "values": [ - "4 - General action" - ] - }, - { - "text": "Abolish the system of reeducation through labour and black jails", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Take steps to clarify land rights and the land use situation, taking into consideration all stakeholders that are affected by the decision-making related to land ownership and use", - "values": [ - "4 - General action" - ] - }, - { - "text": "Implement a moratorium on executions", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Implement further measures to address the problems related to poverty and socioeconomic inequality in respect of regions and vulnerable groups of the population, such as rural residents", - "values": [ - "4 - General action" - ] - }, - { - "text": "Continue its policies to eradicate poverty", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Investigate and prosecute any attacks on - or false allegations in relation to - human rights defenders, in particular those working with communities to protect land, houses and access to natural resources and prevent forced displacement, an issue that has been reported on by the Special Rapporteur and the Committee on Economic, Social and Cultural Rights ", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Ensure all juvenile offenders are housed separately from adult prisoners in Correctional Facilities", - "values": [ - "4 - General action" - ] - }, - { - "text": "Ensure persecution of perpetrators of violence against women", - "values": [ - "4 - General action" - ] - }, - { - "text": "Continue its efforts to meet the benchmarks of the action plan regarding the building of the housing units for the returnees", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Finalize a professional code of conduct for police and security forces, as well as investigate alleged breaches and prosecute as appropriate, to strengthen accountability and prevent future abuses and violations ", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Consider the possibility of establishing a system to follow up on international recommendations, including universal periodic review accepted recommendations", - "values": [ - "3 - Considering action" - ] - }, - { - "text": "Facilitate a visit by the Special Rapporteur on the situation of human rights defenders", - "values": [ - "4 - General action" - ] - }, - { - "text": "Maintain and strengthen the harmonization process of the criminal legislation of the country with international standards", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Undertake measures to protect members of religious groups, including Ahmadis, Bahais, Christians and Shias from harassment and acts of violence. This should commence with holding senior law enforcement accountable for their duties that include training for law enforcement officials at the local level to ensure an effective and adequate response to these incidents. This would also include reviewing laws and regulations which discriminate, directly or indirectly against one's religion or belief, including in particular the Blasphemy Act ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Continue advancing the construction of permanent houses for farmers and herdsmen in the region on a voluntary basis and in their real needs", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Make every effort to guarantee the human rights of asylum seekers, bearing in mind international obligations", - "values": [ - "4 - General action" - ] - }, - { - "text": "Fully implement the commitment in contributing to unifying all ethnicities and representatives of all religions", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Increase the coverage and accessibility of medical services for women, with a special focus on the needs of indigenous women and women in rural areas", - "values": [ - "4 - General action" - ] - }, - { - "text": "Further strengthen the Commissions of the media, human rights and anti-corruption ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Continue its efforts to combat terrorism financing and de-legitimize income generated through criminal means ", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Strengthen measures to combat impunity within the security forces and bring all perpetrators to account", - "values": [ - "4 - General action" - ] - }, - { - "text": "Ratify the Convention against Torture and Other Cruel, Inhuman or Degrading Treatment or Punishment, as previously recommended", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Strengthen measures to combat trafficking in persons in legislation and in practice", - "values": [ - "4 - General action" - ] - }, - { - "text": "That all parties to the conflict in Libya cease violations of international humanitarian and human rights law, including attacks on civilians, as in line with previous appeals by the High Commissioner", - "values": [ - "4 - General action" - ] - }, - { - "text": "Eliminate all other forms of disparity in the treatment of heterosexual and same-sex couples, in order to ensure full equality and non-discrimination", - "values": [ - "4 - General action" - ] - }, - { - "text": "Continue to strengthen measures to protect the rights of child victims", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Guarantee equal remuneration for men and women for work of equal value", - "values": [ - "4 - General action" - ] - }, - { - "text": "Promptly take all appropriate measures and/or public policies to eliminate all forms of discrimination against migrant workers, especially women and ensure that they can exercise and enjoy their human rights in all areas on an equal footing with nationals ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Enact the Domestic Violence Bill into law, ensuring that future cases of domestic violence are dealt with decisively", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Consider ratifying the United Nations Educational, Scientific and Cultural Organization Convention against Discrimination in Education", - "values": [ - "3 - Considering action" - ] - }, - { - "text": "Develop national human rights indicators, as suggested by the OHCHR, as an instrument that allows for a more precise and coherent evaluation of its national human rights policies", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Reinforce the legal framework for the prevention of violence against women, including running a national awareness campaign and ensuring comprehensive investigation and prosecution in cases of domestic violence", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Ensure a proportional use of force by security forces and ensure that cases of torture are investigated and that the perpetrators are brought to justice", - "values": [ - "4 - General action" - ] - }, - { - "text": "Take further measures to improve children's enrolment, access, quality and sustainability of education, especially for girls", - "values": [ - "4 - General action" - ] - }, - { - "text": "Establish an independent national human rights institution in line with the Paris Principles", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Continue improving the situation of children, who were at risk, especially girls", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Implement the National Commission of Inquiry recommendations to ensure that those responsible for violations of human rights, from all parties are held accountable for their actions as soon as possible", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Review the implementation of the National Human Rights Action Plan 2009-2012 to assess its effectiveness, evaluate possible strong points or areas for improvement, and identify needs for capacity-building and opportunities for international cooperation in the promotion and protection of human rights", - "values": [ - "3 - Considering action" - ] - }, - { - "text": "Accelerate the progress of legal reforms to eliminate discriminatory provisions, especially from the civil and criminal codes. and to increase efforts to amend legislation regarding gender equality in accordance with Gabon's international obligations, including the Convention on the Elimination of All Forms of Discrimination against Women.", - "values": [ - "4 - General action" - ] - }, - { - "text": "Increase the financial and human resources available to the judicial system.", - "values": [ - "4 - General action" - ] - }, - { - "text": "Encourage greater participation of indigenous peoples through the elaboration of a law regulating the right of these peoples to prior consultation", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Issue a standing invitation to all special procedures of the Human Rights Council", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Ratify the International Convention on the Protection of the Rights of All Migrant Workers and Members of Their Families and take the necessary steps towards realising the effective protection of migrant workers and members of their families", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Ratify the Second Optional Protocol to the International Covenant on Civil and Political Rights, aiming at the Abolition of the Death Penalty in all circumstances", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Strengthen the capacity of the Human Rights Commission in South Sudan to facilitate access to justice for victims and witnesses, with due regard for their protection", - "values": [ - "4 - General action" - ] - }, - { - "text": "Adhere to or ratify the International Convention on the Protection of the Rights of All Migrant Workers and Members of Their Families ", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Invite the UN Commission of Inquiry on Human Rights in the Democratic People's Republic of Korea to visit North-Eastern China to meet officials and North Korean citizens who have fled to China", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Develop a financing mechanism for the health system that is designed to help the underprivileged ", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Continue strengthening the policies in favour of indigenous and Afro-Peruvian women through the Working Group on Indigenous Policies and the Working Group on Afro-Peruvian Policies", - "values": [ - "4 - General action" - ] - }, - { - "text": "Accede to the Convention against Torture and the Optional Protocol thereto, together with the establishment of an effective national preventive mechanism, according to the Protocol", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Continue efforts for the protection of the rights of marginalized and vulnerable segments of society including through legislative and institutional measures", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Continue its efforts to ensure the empowerment of women in the economic, health and social perspectives, including the integration of women as well as the establishment of women's health centres, to ensure the promotion and protection of women's rights in the country", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Vigorously pursue efforts to promulgate a national law guaranteeing better protection for children, and that the general principle of the best interest for the child, as contained in article 3 of the Convention, is fully reflected in that law.", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Create mechanisms to protect and support victims of sexual violence or gender violence", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Continue to address outstanding barriers to ratification of the Convention on the Rights of Persons with Disabilities, including legislative changes that need to be undertaken in view of enabling ratification", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Make an effort to implement all the accepted recommendations", - "values": [ - "4 - General action" - ] - }, - { - "text": "Take all necessary steps to ensure that the availability of safe abortion services can be guaranteed, and to sensitize communities to the problems of unsafe abortion", - "values": [ - "4 - General action" - ] - }, - { - "text": "Improve access to the Internet ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Replace the Basseterre facility with a new prison that meets international standards, and explore options for public/private partnerships and financing arrangements ", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Codify and harmonize the national legislation to expressly prohibit discrimination, and in accordance with the existing international human rights standards ", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Repeal existing legislation that restricts freedoms of expression and of assembly in accordance with Thailand's obligations under international human rights law", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Conduct a review process and if necessary, amend its national legislation ", - "values": [ - "3 - Considering action" - ] - }, - { - "text": "Modify the law relating to the nationality in a way to recognize the right of Kuwaiti women to transmit their nationality to their spouses and children", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Continue its forward movement on the Declaration of the Rights of Indigenous Peoples ", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Continue the national debate on the abolition of the death penalty", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Urgently take measures to grant legal status to over 100,000 stateless persons and ensure their protection under the labour law", - "values": [ - "4 - General action" - ] - }, - { - "text": "Take measures to allow legal and safe abortions in cases of rape or incest and in cases of risk to the woman's life or health ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Continue efforts in the prevention of human trafficking, with special attention to investigation and prosecution of all cases of sale and trafficking of children", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Increase efforts to ensure independent investigation of any allegation of torture and other ill-treatment in prisons, and prosecute those who have committed such crimes", - "values": [ - "4 - General action" - ] - }, - { - "text": "Review and amend its national legislation that discriminates against women, and challenge the social acceptability of violence against women and practices harmful to women and girls, such as female genital mutilation and early and forced marriage", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Repeal all discriminatory laws with regard to women and promote access to education at all levels ", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "End the practice of executing juvenile offenders and of public executions, including through stoning", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Ratify all pending human rights treaties ", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Continue efforts to promote women's rights and the right to health, particularly that of children, through enhancing international cooperation in these fields", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Strengthen the legal and institutional framework to combat racism and racial discrimination, ensuring that all legal provisions are applied and that active monitoring of patterns of racism and racial discrimination is carried out ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Continue its efforts to increase the participation of women in leadership at the local government level", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Expedite the necessary process to ratify the Convention on the Rights of Persons with Disabilities ", - "values": [ - "4 - General action" - ] - }, - { - "text": "That police and gendarmerie receive adequate training in crowd control and the use of force and firearms in line with international standards", - "values": [ - "4 - General action" - ] - }, - { - "text": "Continue with the efforts to end violence against women through, inter alia, the implementation of the Second National Plan on Violence against Women and by supporting international initiatives", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Take action to ensure the Supreme National Commission for Accountability and Justice is independent and operates towards the goal of free and fair elections with participation of all parties", - "values": [ - "4 - General action" - ] - }, - { - "text": "Continue efforts related to combating racist and religious hate speech", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Amend the law on citizenship in such a way that ensures that all Lebanese women, regardless of the nationality of their husband, can pass on their citizenship to their children and husbands", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Continue the efforts to address any discriminatory laws and practices in line with Sri Lanka\u2019s accepted international obligations", - "values": [ - "4 - General action" - ] - }, - { - "text": "Integrate and apply the Guiding Principles on Business and Human Rights to all its relevant policies including licensing extractive business", - "values": [ - "4 - General action" - ] - }, - { - "text": "Further continue fighting harmful traditional practices such as female genital mutilation and witchcraft-associated killings", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Hence the formal commitment made by the Dominican Republic is to continue to put into effect each and every initiative designed to foster faithful, unrestricted compliance with all its national and international human rights commitments.", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Prioritize its work with the International Labour Organization on a Joint Action Plan on child soldiers to progress the implementation of Security Council resolution 1612 (2005) ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Continue with efforts to harmonize reforms and consolidate institutions in respect of democratic principles and human rights despite the constraints that a developing country is always facing, and with the support of OHCHR and the international community ", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Continue to protect and promote the economic and social rights of minorities, in particular, migrant populations", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Consider requesting technical cooperation and assistance for the preparation and submission of reports to the United Nations treaty bodies ", - "values": [ - "3 - Considering action" - ] - }, - { - "text": "Implement measures to bridge the gender pay gap", - "values": [ - "4 - General action" - ] - }, - { - "text": "Intensify efforts to prosecute cases of hate crimes, either on the basis of race or religious belief", - "values": [ - "4 - General action" - ] - }, - { - "text": "Review of all relevant legislation and procedures to ensure systematic incorporation of international human rights obligations and their implementation on all levels of the government", - "values": [ - "3 - Considering action" - ] - }, - { - "text": "Consider withdrawing reservations to the Convention on the Elimination of All Forms of Discrimination against Women", - "values": [ - "3 - Considering action" - ] - }, - { - "text": "Take more active measures to decrease the level of unemployment of migrants, particularly among women and young people", - "values": [ - "4 - General action" - ] - }, - { - "text": "Formally declare the moratorium or abolition of the death penalty", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Carry out effective and independent investigations on excessive use of force by law enforcement officials in order to bring to justice those responsible ", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Take action to identify and release people in slavery, support victims and end discrimination, in particular discrimination based on caste or ethnicity. As part of this, the Government should formally acknowledge the continued existence of slavery and begin to collect detailed data on the number of people held in slavery to facilitate monitoring of eradication efforts under the 2007 anti-slavery law", - "values": [ - "4 - General action" - ] - }, - { - "text": "Ensure the enjoyment of freedoms of expression and assembly and put to an end the unlawful detention of peaceful protesters ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Continue and intensify the actions to prohibit child marriage", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Abolish definitively the death penalty in conformity with the provisions contained in the second Optional Protocol to the International Covenant on Civil and Political Rights ", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Pursue the adoption of a general anti-discrimination act and aim at its adoption as soon as possible.", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Continue to adopt measures to investigate, prosecute and punish the perpetrators of acts of violence against women", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Aim at enhancing social cohesion through laws and policies to meet the changing political, economic and social demands of the people to safeguard social harmony", - "values": [ - "4 - General action" - ] - }, - { - "text": "Implement fully the recommendations of the Committee on the Rights of the Child, including by taking measures to address the issue of child labour, prohibiting corporal punishment, and raising the minimum age of criminal responsibility to an internationally acceptable level ", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Ensure to all child and adolescent victims of trafficking the protection of their rights, access to justice and psychosocial rehabilitation", - "values": [ - "4 - General action" - ] - }, - { - "text": "Raise awareness campaign about rights of migrants and against racial discrimination ", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Take all measures to guarantee that the Prohibition of Female Genital Mutilation Act 2011 is fully implemented", - "values": [ - "4 - General action" - ] - }, - { - "text": "Promote a legal framework providing legal certainty for the protection of the rights of indigenous peoples", - "values": [ - "4 - General action" - ] - }, - { - "text": "Take necessary measures in increasing and improving the quality of health care facilities", - "values": [ - "4 - General action" - ] - }, - { - "text": "Overcome the challenges arising from the dramatic earthquake in 2010 by integrating a human rights approach into all its policies and practices", - "values": [ - "4 - General action" - ] - }, - { - "text": "Ratify and accede to the International Convention for the Protection of All Persons from Enforced Disappearance and withdraw its reservations to articles 2 and 15 of the Convention on the Elimination of All Forms of Discrimination against Women", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Continue its efforts in the health sector to implement the 2020 Government vision, in order to reach the goal of free health care for all Malawians ", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Establish a national human rights institution in accordance with the Paris Principles.", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Enact legislation on violence against women, including domestic violence", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Expedite the implementation of the second five-year National Development Plan", - "values": [ - "4 - General action" - ] - }, - { - "text": "Expedite action on the ratification process of the Rome Statute of the International Criminal Court", - "values": [ - "4 - General action" - ] - }, - { - "text": "Continue its efforts to eliminate discrimination against women", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Extend a standing invitation to all special procedures", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Protect human rights in Darfur and the Two Areas, including by ending violence, ensuring accountability for deaths and sexual violence, granting humanitarian access, and allowing aid agencies and NGOs to implement human rights programmes", - "values": [ - "4 - General action" - ] - }, - { - "text": "Continue its efforts to eliminate poverty, paying particular attention to the situation of children, single parents and the rural population", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Repeal corporal punishment of children", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Guarantee the human rights of citizens under the new Constitutions and establish effective mechanisms to ensure these are respected, including through the establishment of a national human rights institution in line with the Paris Principles ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Specify the criteria that apply to the consideration of violence when extending residence permits for victims of domestic violence, to facilitate their fair, standardised and transparent application", - "values": [ - "4 - General action" - ] - }, - { - "text": "Continue its positive efforts to further reduce extreme poverty by redistributing wealth among the most needy through appropriate welfare benefits", - "values": [ - "4 - General action" - ] - }, - { - "text": "Investigate all reports of extrajudicial killings in an independent and transparent manner and commit to bring to justice members of the security forces found to have been involved in such violations", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Implement fully its 1995 Constitution, including the freedoms of association, expression and assembly, for independent political parties, ethnic and religious groups and NGOs", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Declare an official moratorium on executions and ratify the Second Optional Protocol to the International Covenant on Civil and Political Rights, aiming at the abolition of the death penalty ", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Guarantee freedom of expression to journalists and allow political parties to carry out political activities.", - "values": [ - "4 - General action" - ] - }, - { - "text": "Continue efforts to combat trafficking in human beings and reinforce measures to provide adequate assistance to victims ", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Intensify measures to combat the manifestation of racism and anti-Semitism, including by police officers ", - "values": [ - "4 - General action" - ] - }, - { - "text": "In line with the British Government commitment to the universality of human rights, prohibit the indefinite detention of migrants, seek alternatives to their detention and ensure that such detention is for the shortest possible duration ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Take concrete measures to fight domestic violence, to prosecute perpetrators and to protect the victims of such practices, as well as to enhance the effectiveness and the financing of the police's specialized unit, the "Family Squad"", - "values": [ - "4 - General action" - ] - }, - { - "text": "Incorporate in its legislation a definition of discrimination against women and the principle of equality between men and women, in keeping with its obligations under the Convention on the Elimination of All Forms of Discrimination against Women", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Abolish legal provisions unduly restricting peaceful demonstrations, remove restrictions on freedom of expression contained in Law 32 of 2006, and allow the opposition greater access to television broadcasts, radio broadcasts and print media", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Allow journalists to exercise their profession, and refrain from arbitrarily withholding licence renewals", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Adopt legislation to punish the dissemination of ideas based on racial hatred or superiority, incitement to racial discrimination or any racially motivated act of violence, as recommended by the Committee on the Elimination of Racial Discrimination", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Continue to intensify its ongoing efforts to strengthen women's representation in leadership roles and decision-making positions", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Take the measures necessary to improve the level of representation of women", - "values": [ - "4 - General action" - ] - }, - { - "text": "In the framework of the human rights forum, include training and awareness programmes on human rights and international treaties to the benefit of relevant officers, including through United Nations technical assistance projects.", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Efforts will be made to further the recent achievements in clearing the backlog in reporting under the relevant human rights treaties to which Sri Lanka is a State Party, to ensure timely reporting and follow-up", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Improve public access to information on legal and policy measures taken by the Government in the field of human rights", - "values": [ - "4 - General action" - ] - }, - { - "text": "Continue pursuing the realization of the full range of human rights and fundamental freedoms for the Bhutanese people, in accordance with the country's international human rights obligations\n", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Ensure adequate reception conditions so that asylum seekers receive support in line with the requirements of the European Convention for the Protection of Human Rights and Fundamental Freedoms and of European Union law", - "values": [ - "4 - General action" - ] - }, - { - "text": "Ensure that legal and administrative measures taken to combat terrorism respect the enjoyment of human rights and fundamental freedoms ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Ratify the Convention on the Prevention and Punishment of the Crime of Genocide", - "values": [ - "3 - Considering action" - ] - }, - { - "text": "Renounce to life in prison without parole sentences for minors at the moment of the actions for which they were charged and introduce for those who have already been sentenced in these circumstances the possibility of a remission ", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Enact legislation related to CEDAW, as no corresponding domestic law has so far been enacted ", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Take all necessary measures to ensure the physical integrity of journalists and human rights defenders, including an explicit and published decision on instituting a federal investigation and prosecution in all cases involving violence against human rights defenders", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Fully implement the signed peace agreement designed to end the nearly civil war in South Sudan", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Undertake effective measures to improve prison conditions ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Continue its efforts to combat violence against women and girls", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Continue the good work in addressing the phenomenon of human trafficking", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Ensure that racially motivated attacks committed against minorities are systematically investigated, prosecuted and punished according to law.", - "values": [ - "4 - General action" - ] - }, - { - "text": "Ensure that the right to freedom of religion and belief is guaranteed and respected", - "values": [ - "4 - General action" - ] - }, - { - "text": "Promote gender equality in all socioeconomic spheres", - "values": [ - "4 - General action" - ] - }, - { - "text": "Work on the enhancement of the free health care programme and free primary education, obtaining the necessary assistance through international cooperation ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Continue its efforts in providing migrants, including those in irregular situation and migrant children, access to health, education, and other social services at par with its nationals", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Include women's rights in education curricula", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Swiftly adopt the law on the protection of human rights defenders by the Ivorian Parliament, and its immediate implementation ", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Further strengthen its efforts to combat gender discrimination, especially in the labour market ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Revise any national legislation that may be in conflict with international obligations, and strengthen efforts to ensure that any assaults against persons regardless of their religious affiliation are investigated, and that those responsible for such assaults are brought to justice ", - "values": [ - "3 - Considering action" - ] - }, - { - "text": "Continue efforts to address hate crimes and racially motivated attacks against ethnic and religious minorities, including racial profiling by law enforcement personnel", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Further address human rights issues in the country, especially through promoting human rights education ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Proceed quickly towards the ratification without reservations of the ICESCR", - "values": [ - "4 - General action" - ] - }, - { - "text": "Institute a moratorium on the application of the death penalty with a view to abolition", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Extend an open and standing invitation to Special Procedures mandate holders across the board ", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Strengthen measures for the protection of vulnerable persons", - "values": [ - "4 - General action" - ] - }, - { - "text": "Provide, together with NGOs, safe places and assistance to victims of sexual violence ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Provide more resources for the enjoyment of economic and social rights, especially in favour of vulnerable groups like women, children, poor people and minorities ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Allocate greater resources so as to significantly improve the rate of school enrolment among girls and the literacy rate among women and girls ", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Bring the policy on detention of asylum-seekers into compliance with conclusion 7 (e) of the conclusions on international protection of refugees, which recommends that expulsion measures should not include detention unless for national security reasons or public order", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Finalize efforts aimed at acceding to the International Convention for the Protection of All Persons from Enforced Disappearance and thus the full recognition of the competence of the Committee on Enforced Disappearances", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Provide for arrangements for same-sex couples to enjoy some of the rights and obligations enjoyed by non-same-sex couples.", - "values": [ - "4 - General action" - ] - }, - { - "text": "Prosecute all presumed perpetrators of human rights violations", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Make further efforts to ensure that the abortion laws are brought in line with Chile's human rights obligations ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Faced with these challenges, Niger is committed to: (a) Promoting good governance through transparent conduct of public affairs, (b) Catching up on its reporting obligations, (c) Strengthening capacity to follow up on treaty body and universal periodic review recommendations, (d) Regulating the informal sector, (e) Combating illiteracy, (f) Stepping up awareness-raising and training for women in leadership skills, (g) Continuing efforts to amend the Quota Act, (h) Adopting the charter on access to information, (i) Allocating more resources to the education sector, (j) Integrating human rights education into curricula at all levels of the education system, (k) Continuing the implementation of the decent work country programme with ILO, (l) Formulating a national plan of action to combat trafficking, in accordance with the subregional action plan of the Economic Community of West African States, (m) Adopting the draft ordinance on trafficking in persons, (n) Bringing justice closer to the public through the creation of new courts, (o) Establishing a body specialized in prison administration and human rights, (p) Adopting incentives for health personnel to specialize in certain fields and to help them practise, (q) Improving access to medicine, (r) Strengthening existing measures through the setting up of food security stocks, (s) Developing research and modernizing the agricultural and livestock sector in order to improve productivity, (t) Encouraging investment in the water industry to make better use of Niger's potential water resources, (u) Extending the supply of safe drinking water for the population and increasing the number of surface reservoirs for the irrigation of off-season crops, (v) Continuing the fight against desertification, (w) Implementing the national housing policy, (x) Formulating a national child protection policy, (y) Implementing the national gender policy and raising public awareness of violence against women, (z) Continuing efforts to adopt the personal status code, (aa) Formulating and implementing a national human rights plan, (bb) Establishing a national human rights commission in accordance with the Paris Principles, (cc) Creating a directorate for juvenile judicial protection, (dd) Establishing a safe drinking water supply system in all rural villages.", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Step up its efforts to combat discrimination and intolerance, particularly towards migrants, foreigners, asylum seekers and refugees", - "values": [ - "4 - General action" - ] - }, - { - "text": "Continue consolidating its successful plans for the reduction of poverty, extreme poverty and its combat against social exclusion ", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Strengthen the protection safeguards, in particular the control mechanisms that allow the detection of cases of migrants with special needs for international protection ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Accentuate measures to provide assistance, care and support to persons at risk of infection and those living with HIV/AIDS, through improved access to prevention, treatment and counselling services ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Consider establishing a national action plan on the rights of the child ", - "values": [ - "3 - Considering action" - ] - }, - { - "text": "Ratify the Convention against Torture and Other Cruel, Inhuman, Degrading Treatment or Punishment", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Adopt and implement appropriate, efficient measures to prevent torture and other forms of ill-treatment, to ensure prompt and credible investigations of all allegations of torture and ill-treatment, in particular deaths in custody, providing for redress and rehabilitation to victims ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Ratify OP-CAT ", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Establish a national mechanism for reporting and follow-up, which includes the elements identified in the practical guide prepared by the Office of the High Commissioner", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Allow access to its territory to the Commission of Inquiry and cooperate fully with the Commission", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Strengthen the effectiveness and the independence of the mechanisms to supervise the observance of human rights of inmates and persons under police custody with the aim of preventing ill-treatment ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Further strengthen and support the independence and impartiality of the Procuraduria para la Defensa de los Derechos Humanos and ensure that it fully adheres to the Paris Principles", - "values": [ - "4 - General action" - ] - }, - { - "text": "Take all necessary steps to ensure that relevant Romanian legislation is in conformity with its international undertakings.", - "values": [ - "4 - General action" - ] - }, - { - "text": "Implement laws, regulations and plans regarding women's rights with adequate training and resources, bearing in mind that sexual and gender-based violence and disparities in economic opportunities remain. There is scope for improvement of health-care providers' ability to offer sexual and reproductive information and services, including safe abortions", - "values": [ - "4 - General action" - ] - }, - { - "text": "Take effective measures to ensure that persons with disabilities and detained persons can exercise their right to vote ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Recognize Travellers as an official minority", - "values": [ - "4 - General action" - ] - }, - { - "text": "Encourage stronger promotion of the rights of women and children by meeting their immediate post-conflict needs. These include, for example, the elimination of gender inequalities, the promotion of equal educational opportunities as well as equal opportunities for socio-economic and political participation, and the elimination of violence against women and children", - "values": [ - "4 - General action" - ] - }, - { - "text": "Continue its commitment to fulfil the right to education and to the right to health for all its citizens and share its experiences and best practices in the promotion and protection of these two fundamental rights", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Intensify development programmes with focus on poverty alleviation and food security", - "values": [ - "4 - General action" - ] - }, - { - "text": "Abolish all provisions that criminalize consensual same-sex relationships and adopt a national policy to promote tolerance and address discrimination and violence against lesbian, gay, bisexual, transgender and intersex persons", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Ensure that the granting of land concessions or the withdrawal of land titles or the legal rights to land use does not lead to violations of human rights ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Consider the possibility of ratifying the Optional Protocols to ICCPR, CEDAW, CRC, CRPD and CED ", - "values": [ - "3 - Considering action" - ] - }, - { - "text": "Study the possibility of establishing an independent national human rights institution to promote human rights", - "values": [ - "3 - Considering action" - ] - }, - { - "text": "Pursue on-going efforts to ensure the adoption, in the near future, of a list identifying types of hazardous work prohibited to persons under the age of 18 years", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Increase transparency through the provision of public access to information about financial and other material interests of government ministers ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Strengthen the effectiveness of the Anti-Corruption Prosecutor through public oversight mechanisms for official payments made and for the assets of senior officials of the State", - "values": [ - "4 - General action" - ] - }, - { - "text": "Investigate thoroughly and prosecute all reported cases of sexual violence, and ensure that support and compensation is provided to the victims", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Take additional measures to achieve the gender equality, including specific measures to eliminate domestic and sexual violence", - "values": [ - "4 - General action" - ] - }, - { - "text": "Repeal all provisions which may be applied to criminalize sexual activity between consenting adults and adopt appropriate legislative measures to include sexual orientation and gender identity in equality and non-discrimination laws ", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Establish human rights education and training programmes for police and law enforcement officers ", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Eradicate the death sentence once and for all from its legal system ", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Ensure that the rights of human rights defenders are respected and ensure that the judicial authorities carry out thorough and impartial investigations with respect to threats, intimidation and violence against human rights defenders ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Place the Council of Justice as a full independent body outside of the control of the executive ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Intensify its raising awareness actions and take necessary measures to ensure that the most exposed persons to discrimination are aware of existing remedies and procedures ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Continue efforts towards achieving the poverty alleviation goals, and implement strategic plans and programmes related to poverty alleviation, including the national strategy for growth and the realization of the development goals ", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Improve identification of victims of trafficking in human beings, by establishing an efficient inter-agency mechanism of identification and referral of such cases", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Delimit child and early marriage by amending and unifying legislation, in particular, the Civil Code, to define the accepted age of marriage as 18", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Issue a favourable response to the request for visits to Myanmar of the representatives of the Secretary-General and Special Rapporteurs, in particular, on the human rights of displaced persons, the right to food (since 2003), freedom of religion and belief (since 2007), extrajudicial, summary or arbitrary executions (since 2007), and on the independence of judges and lawyers ", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Adopt and promote human trafficking legislation that focuses on the sexual exploitation of women and girls and provides full support to victims, and which factors in the role of cantons", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Remove all legislative and practical restrictions impeding to freely exercise civil and political rights, in particular those related to freedom of association and expression, with a view to allow the creation of political parties and respect of trade freedoms", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Adopt urgently measures to protect all children from the impact of the conflict, prohibit the recruitment, kidnapping, abuse and sexual violence of children by parties to the conflict and punish perpetrators of these violations", - "values": [ - "4 - General action" - ] - }, - { - "text": "Continue and strengthen the active interaction with regional and international organizations of human rights ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Ensure that opposition parties and civil society organizations are permitted to participate freely in the political process, without fear of retribution", - "values": [ - "4 - General action" - ] - }, - { - "text": "Increase access to health services in rural areas, in particular to reduce maternal mortality and morbidity", - "values": [ - "4 - General action" - ] - }, - { - "text": "Concentrate on the implementation of the international human rights instruments that have been ratified by Djibouti", - "values": [ - "4 - General action" - ] - }, - { - "text": "Adopt legislation assuring that LGBT people can freely exercise their rights to freedom of expression and peaceful assembly ", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Raise awareness of children's right to participation in the family and community", - "values": [ - "4 - General action" - ] - }, - { - "text": "Pursue the objective of peace in Darfur in promoting especially the rights of the minorities", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Step up the fight against racism and adopt adequate measures for the reduction of discrimination and social exclusion", - "values": [ - "4 - General action" - ] - }, - { - "text": "Take the necessary steps to implement its Constitution ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Continue its efforts to combat discrimination, xenophobia and racism against non-citizens", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Take the necessary measures to continue its efforts to prevent, punish and eradicate all forms of violence against women and, at the same time, take measures to raise the awareness of public officials and society at large about the importance of this problem ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Consolidate laws and regulations to fight all forms of discrimination, racism and xenophobia", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Update the national action plan and initiate further concrete measures to stimulate tolerance and prevent discrimination and xenophobia, and especially taking into account the situation of the Roma and the Sinti", - "values": [ - "4 - General action" - ] - }, - { - "text": "Strengthen its efforts to implement the Convention on the Rights of Persons with Disabilities by amending the Constitution to prohibit discrimination against persons with disabilities and support the role of disabled persons' organizations.", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Continue its efforts to improve access to justice for all Ukrainians", - "values": [ - "4 - General action" - ] - }, - { - "text": "Ratify the ILO Prevention of Major Industrial Accidents Convention, 1993 No. 174", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Ensure the effective implementation of the Protection Mechanism, under the Human Rights Defenders and Journalists Protection Act, to reduce impunity, especially the crimes against defenders of the human rights of migrants", - "values": [ - "4 - General action" - ] - }, - { - "text": "Amend the criminal code by incorporating the category of racist remarks to clearly define direct and indirect discrimination and recognize that racial, religious, national or ethnic grounds constitute an aggravating circumstance", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Ensure the respective participation of national and international NGOs in the follow-up of the universal periodic review process", - "values": [ - "4 - General action" - ] - }, - { - "text": "Carry on its efforts and action in the promotion of social security and labour policy", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Strengthen efforts to prevent and combat all forms of discrimination and violence against women and children, adopting comprehensive legislation and launching awareness-raising campaigns. Ensure that women victims of violence receive appropriate help and perpetrators are brought to justice", - "values": [ - "4 - General action" - ] - }, - { - "text": "Continue its efforts to enhance the rights of women and children and the institution of the family within the framework of national policies and strategies ", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Develop a national strategy that specifically addresses racism and racial discrimination", - "values": [ - "4 - General action" - ] - }, - { - "text": "Take adequate measures to fight trafficking in women and girls for the purpose of sexual exploitation as well as domestic violence against women.", - "values": [ - "4 - General action" - ] - }, - { - "text": "Continue with its efforts in enhancing girls' access to primary, secondary and tertiary education", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Pursue efforts to improve the living conditions of women, notably through measures aimed at encouraging women to stand for elective office and to seek public appointments, as well as through measures aimed at facilitating women's access to credit, land, and to basic health services", - "values": [ - "4 - General action" - ] - }, - { - "text": "Implement measures to eliminate the practice of customary law and traditional codes of conduct discriminating against women ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Set-up a national body with a view to following up on the implementation of the recommendations submitted by CEDAW after the review of Iraq in February 2014", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Step up efforts in the area of combating human trafficking, including training of officials on identifying victims of human trafficking as well as measures for the protection and rehabilitation of victims ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Continue efforts to provide protection for children living in difficult circumstances, such as poor children and street children", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Take concrete steps aiming at abolishing the death penalty and, in the meantime, establish a moratorium on the practice, while engaging in awareness-raising campaigns on human rights, with a particular emphasis on the incompatibility between the death penalty and human rights", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Take actions aimed at raising the level of the Ombudsman's Office to that of a National Human Rights Institution in line with the Paris Principles, in order to guarantee its autonomy when discharging its functions", - "values": [ - "4 - General action" - ] - }, - { - "text": "Call upon the Comoros to mobilize all its efforts and energies to ensure the full and effective implementation of the strategy for rapid growth and sustainable development adopted by the government for the period 2015-2019 ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Increase efforts and allocation of necessary resources to guarantee greater participation of women in political and leadership positions", - "values": [ - "4 - General action" - ] - }, - { - "text": "Continue implementing the public awareness campaign on hate speech on the Internet", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Consider establishing national human rights institution", - "values": [ - "3 - Considering action" - ] - }, - { - "text": "Take effective measures to ensure the equal treatment of women in accordance with its international obligations under the Convention on the Elimination of All Forms of Discrimination against Women (CEDAW) ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Strengthen further the cooperation with the international community, including OHCHR and treaty bodies", - "values": [ - "1 - Minimal action" - ] - }, - { - "text": "Step up procedures for the ratification of the Convention on the Rights of Persons with Disabilities ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Adopt the necessary measures to convert the Swiss Resource Centre for Human Rights into a national human rights institution in compliance with the Paris Principles, giving it a broad human rights mandate", - "values": [ - "4 - General action" - ] - }, - { - "text": "Undertake efforts as set out in the Sustainable Development Goals, especially those related to poverty, education, health, housing and water and sanitation", - "values": [ - "4 - General action" - ] - }, - { - "text": "Reinforce constitutional protections against discrimination to include sex, disability, sexual orientation and gender identity as prohibited grounds for discrimination ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Incorporate into the national legislation the principles of the International Convention on the Elimination of All Forms of Racial Discrimination, in particular as regards the prohibition of all forms of discrimination, including nationality or ethnic origin", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "That the necessary measures to ratify the Optional Protocol to the Convention against Torture be adopted, in conformity with the commitments made by Namibia during the first universal periodic review cycle", - "values": [ - "4 - General action" - ] - }, - { - "text": "Further promote economic and social rights of minorities and vulnerable groups ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Expeditiously approve the draft bill to create a national mechanism for the prevention of torture ", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Withdraw reservation to article 22 of the Convention on the Rights of the Child ", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Seek the assistance and necessary expertise of United Nations specialized agencies in building and strengthening institutions to rehabilitate those engaged in drug-related crimes ", - "values": [ - "1 - Minimal action" - ] - }, - { - "text": "Positively consider the visit requested by the special rapporteur on summary executions", - "values": [ - "3 - Considering action" - ] - }, - { - "text": "Strengthen public policies allowing for the elimination of forced and early marriage, levirate marriage and other harmful practices threatening the rights of women ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Take further measures to address the issue of violence against children, including trafficking and sexual abuse ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Step up efforts to tackle structural discrimination faced by minority groups, non-citizens and refugees, especially with regard to employment, education, housing, health services, and access to justice", - "values": [ - "4 - General action" - ] - }, - { - "text": "Introduce an inclusive process involving all relevant stakeholders in developing the national human rights plan of action", - "values": [ - "4 - General action" - ] - }, - { - "text": "Create conditions favourable to inter-ethnic tolerance in Cambodia for the democratic future of the country ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Take urgent and immediate steps to end its occupation of all Palestinian and Arab Territories occupied since 1967", - "values": [ - "4 - General action" - ] - }, - { - "text": "Mongolia will actively participate in the UPR process and devote its full effort in implementing proposals and recommendations of the Human Rights Council. In order to promote and protect human rights and freedoms globally, Mongolia shall engage itself in close cooperation with other countries, UN and its specialized agencies, and NGOs.", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Develop specialized programmes to assist with minor and adolescent migrants returned or deported to Honduras, in order to ensure their effective social reintegration ", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Take the necessary steps to ensure the protection of human rights defenders, including by implementing precautionary measures requested by international human rights bodies", - "values": [ - "4 - General action" - ] - }, - { - "text": "Consider ratifying the Optional Protocol to the Convention on the Rights of the Child on a communications procedure ", - "values": [ - "3 - Considering action" - ] - }, - { - "text": "Ensure the signing and ratifying of the CAT", - "values": [ - "4 - General action" - ] - }, - { - "text": "Remove all provisions from laws that allow corporal punishment and explicitly prohibit corporal punishment by law in the family, schools and other institutions ", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Continue to take appropriate measures at the national level with a view to ratifying international human rights instruments, notably those mentioned in paragraph 158 of the national report, including the Convention on the Rights of Persons with Disabilities (CRPD), ICERD, the Optional Protocol to the Convention on the Rights of the Child on the sale of children, child prostitution and child pornography (OP-CRC-SC)", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Ensure ongoing cooperation with the special rapporteur for Myanmar of the Human Rights Council and with other Special Procedures", - "values": [ - "4 - General action" - ] - }, - { - "text": "Continue to pursue its social policies upholding the institution of the family in line with traditional family values ", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Adopt a national legislation in order to implement the recommendation of the CERD regarding the absence of penal norm explicitly prohibiting racial discrimination", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Enhance cooperation and involvement of indigenous peoples in decision-making and take measures to encourage their participation in public and political life ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Give the highest priority to addressing the fundamental inequalities between some of its citizens including through its policy agenda focused on five key areas of economic development: education, citizen empowerment and protection of the vulnerable, resolution of land claims and reconciliation, governance and self government.", - "values": [ - "4 - General action" - ] - }, - { - "text": "Take further measures to eliminate violence and discrimination against women, including by criminalizing sexual harassment ", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Continue with positive work to ensure the progress of the rights of children and their full well-being", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Continue efforts to address racism, discrimination and xenophobia", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Protect journalists and human rights defenders, and carry out investigations into any threats against them ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Ensure better access to health care and education by women and girls, especially in rural areas ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Ratify ICESCR and sign its Optional Protocol allowing the right of individual petition ", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Implement and enforce national uniform standards of access to buildings, information, and communications for persons with disabilities ", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Continue to prioritise Malaysia's policies aimed at further improving the socio-economic condition of its citizens", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Uphold the constitutional order and proceed to a military reform ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Continue to develop national strategies and programmes to protect vulnerable populations, particularly women, children, persons with disabilities and elderly people ", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Make the efforts necessary to adopt the law on the protection and well-being of children in the near future, and make every effort to ensure that it is successfully implemented ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Pursue its efforts in eradicating unemployment, in particular through the 2015 programme on youth employment", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Continue strengthening measures aimed at achieving the eradication of female genital mutilation ", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Put in place stringent measures to ensure that children and youths are not recruited into the abhorrent practices incompatible with Ugandan law and culture ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Withdraw the reservations to articles 26 (c), 37 and 40 of the Convention on the Rights of the Child and ratify the Optional Protocol to the Convention on the Rights of the Child on a communications procedure", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Intensify efforts and strengthen policies and strategies to address the sale and trafficking of persons, especially women and children ", - "values": [ - "4 - General action" - ] - }, - { - "text": "In the border area, strengthen the enjoyment of the right to health, particularly with the prevention and treatment of malaria, dengue and HIV/AIDS", - "values": [ - "4 - General action" - ] - }, - { - "text": "Consider establishing a national plan of action to prevent sexual violence against children and women", - "values": [ - "3 - Considering action" - ] - }, - { - "text": "Take into account as appropriate the rights and needs of persons requiring international protection when resolving the issue on granting them asylum in Bulgaria", - "values": [ - "4 - General action" - ] - }, - { - "text": "That the National Human Rights Commission find a mechanism for cooperation with OHCHR, especially with regard to programmes and courses relating to human rights", - "values": [ - "4 - General action" - ] - }, - { - "text": "Repeal the constitutional and legislative provisions criminalizing the offense of blasphemy, these provisions could constitute an excessive limitation to the freedom of expression", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Continue taking measures aimed at closing the gender gap", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Introduce minimum wage legislation reasonable enough to provide all workers and their families with a decent standard of living ", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Accede to the Rome Statute of the International Criminal Court and fully align its national legislation with the Statute and accede to the Agreement on the Privileges and Immunities of the International Criminal Court", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Follow up government action to empower women and combat female stereotypes ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Build on its wide-ranging consultations, sensitization and confidence-building activities concerning persons with disabilities, to implement appropriate policies, legislation and practical measures to address the concerns and needs of this vulnerable group", - "values": [ - "4 - General action" - ] - }, - { - "text": "Consider taking further action to better ensure gender equality at work ", - "values": [ - "3 - Considering action" - ] - }, - { - "text": "Increase efforts to end discrimination and violence against religious minorities and prosecute those involved in incitement to religious hatred and violence", - "values": [ - "4 - General action" - ] - }, - { - "text": "Continue its achievements in the area of human rights and to take them into account as an encouraging factor for the promotion and protection of human rights.", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Remedy the difficulties in terms of access to health care for asylum seekers created by the fact that they do not have the social security number required for identification and support ", - "values": [ - "4 - General action" - ] - }, - { - "text": "On the issue of privatization of prison management, keep in mind the need to ensure the humane treatment of prisoners.", - "values": [ - "4 - General action" - ] - }, - { - "text": "Take steps to meet the minimum standards for the treatment of prisoners", - "values": [ - "4 - General action" - ] - }, - { - "text": "Ensure that all citizens, including opposition figures, such as former Prime Minister Tymoshenko, enjoy their right to fair, transparent and impartial treatment in the judicial system", - "values": [ - "4 - General action" - ] - }, - { - "text": "Ensure the full enjoyment of human rights for those hoping to find a better life in Italy, especially by strengthening structures to guarantee the rights of migrants", - "values": [ - "4 - General action" - ] - }, - { - "text": "Ratify/accede to the Rome Statute of the International Criminal Court, to implement it fully at national level and to accede to the Agreement on the Privileges and Immunities of the International Criminal Court", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Undertake a review with a view to ensuring a coordinated system bridging gaps, especially with respect to the provision of birth certificates ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Enforce the measures and policies that Pakistan has undertaken to ensure the participation of minorities in an appropriate way in the political life", - "values": [ - "4 - General action" - ] - }, - { - "text": "Bring the national human rights institution into compliance with the Paris Principles and broaden its mandate to carry out investigations into allegations of torture and ill-treatment", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Continue to consider acceding to ICESCR ", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Provide the Committee on the Elimination of Discrimination against Women with information on the steps taken to incorporate a definition of discrimination against women in appropriate national legislation and on the incorporation of the principle of equality between men and women in the Constitution", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Ratify and implement the Convention on the Rights of Persons with Disabilities ", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Continue strengthening universal birth registration services in the country, ensuring that they are free and accessible to all", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Continue undertaking efforts to address the issue of violence against children and particularly, with regard to sexual exploitation against girls ", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Take effective measures to address the inequality in the status of court interpretation of minority languages", - "values": [ - "4 - General action" - ] - }, - { - "text": "Finalize arrangements for the visit by the delegation from OHCHR", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Continue its efforts in safeguarding and protecting the rights of migrant workers", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Implement, effectively and stringently, legislation criminalizing violence against women and domestic violence, including marital rape, and improve data collection mechanisms on violence against women", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Ratify or access, as appropriate, the Optional Protocol to the International Covenant of Social, Economic and Cultural Rights", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Progressively increase its budgetary allocations to health in order to reach the 15 per cent target set by the Heads of States of the African Union in the African Strategy for Health 2007-2015.", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Continue its cooperation with neighbouring countries regarding rescue operations at sea particularly for irregular migrants entering the country", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Ensure equality among women and men in their family relations and continue to combat violence against women and children ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Take measures to eradicate trafficking in persons, with particular attention to the trafficking of children", - "values": [ - "4 - General action" - ] - }, - { - "text": "Continue centring human rights educational programmes for law enforcement officers on issues of combating torture and respect for human rights", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Ratify the International Convention for the Protection of all Persons from Enforced Disappearance CED", - "values": [ - "3 - Considering action" - ] - }, - { - "text": "Make official the de facto moratorium on the death penalty, which has been applied since 2008, with a view to abolishing it ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Create mechanisms for the protection of children against all forms of exploitation, to fight impunity of perpetrators and bring them to justice and to set up programmes for psychological treatment to children subjected to violations", - "values": [ - "4 - General action" - ] - }, - { - "text": "To establish a focal point within the Ministry of Foreign Affairs to provide coordination with stakeholders and the international community", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Step up efforts in the field of international development assistance ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Speed up the implementation of ICRMW, to which the Dominican Republic has committed itself to acceding ", - "values": [ - "4 - General action" - ] - }, - { - "text": "In the coming years, the Government will focus on policies and strategies to enhance the awareness of gender issue, change the mind-set about gender issue, as well as the prejudice about gender, strengthen international cooperation in the gender issue, especially which is related to disadvantaged groups and areas of strategic importance such as education, healthcare and employment.", - "values": [ - "4 - General action" - ] - }, - { - "text": "Continue strengthening institutions to eliminate discrimination and violence against women, in particular sexual violence, and adopt specific measures to achieve gender equality in the labour market", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Ensure the right of assembly and the right to freedom of expression, in accordance with international human rights standards, and to withdraw the Public Emergency Regulation", - "values": [ - "4 - General action" - ] - }, - { - "text": "Apply measures to increase the participation of individuals from the Serb or Roma communities in local and regional governments, and ensure that the provisions of the Constitutional Act on the Rights of National Minorities are fully applied at the regional level ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Adopt in its national legislation a definition of inhuman and degrading treatment in accordance with international standards ", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Implement fully recommendations made by the United Nations mandate holders, including through the immediate release of all political prisoners and by ending impunity, thus bringing perpetrators of human rights violations to justice", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Establish a national human rights institution in line with the Paris Principles", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Introduce more effective policies to combat child forced marriage", - "values": [ - "4 - General action" - ] - }, - { - "text": "Initiate a comprehensive set of measures to address existing inefficiencies within the judicial system including ensuring efficient prosecution and crime prevention while guaranteeing judicial independence, including that of the constitutional court. This also comprises the provision of social rehabilitation, reduction of time needed for investigative custody and taking steps to avoid prison overcrowding", - "values": [ - "4 - General action" - ] - }, - { - "text": "Collaborate with the special procedures mandate holders ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Ratify the Protocol that establishes a communication procedure relating to the Convention of the Rights of the Child", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Decriminalize sexual activity between consenting adults of the same sex, and address hate crimes on the grounds of sexual orientation and gender identity, as a matter of urgency ", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "End, investigate independently and prosecute promptly cases of sexual violence against civilians, as well as of assaults on and harassment of journalists and civil society activists", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Continue efforts to provide attention to the most disadvantaged sectors", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Take measures which promote the independence of the judiciary in law and practice ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Extend an invitation to the Special Rapporteur on violence against women, its causes and consequences ", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Consider ratification of the Convention on the Rights of Persons with Disabilities, signed in 2007", - "values": [ - "3 - Considering action" - ] - }, - { - "text": "Consider developing a comprehensive action plan to operationalize the recently adopted Child Code and to address concerns related to the care and protection of children - in this regard, give due consideration to the recently adopted Guidelines for the Alternative Care of Children. ", - "values": [ - "3 - Considering action" - ] - }, - { - "text": "Continue initiatives aimed at protecting the rights of vulnerable groups, bearing in mind their specific needs and capacities, and empowering them in the enjoyment of their rights", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Take more robust measures to prevent and punish religious hatred, discrimination, racism, extremism and xenophobia and human rights violations committed against minorities", - "values": [ - "4 - General action" - ] - }, - { - "text": "Immediately end the campaign of extrajudicial killings, which may amount to crimes against humanity under international law", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Reinforce its policies and develop specific programs aimed at preventing and effectively responding to domestic violence against women, including cases of rape within the family", - "values": [ - "4 - General action" - ] - }, - { - "text": "Introduce measures to address the situation of gender discrimination and violence against women by modifying existing laws and regulations that discriminate against women ", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Strengthen the Office of the Special Prosecutor for Human Rights, and ensure that the Special Prosecutor receives proper protection against violence and threats thereof", - "values": [ - "4 - General action" - ] - }, - { - "text": "Put an end to the practice of people detained in prisoner camps, closing political prisoner camps and promoting the necessary reforms in the judicial system to ensure fair trial and respect for due process guarantees", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Increase efforts to fight against money-laundering", - "values": [ - "4 - General action" - ] - }, - { - "text": "Ratify Rome Statute and the Optional Protocol to CAT and prosecute and punish those who committed violations to International Humanitarian Law and Human Rights Law", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Strengthen measures on combating discrimination against women and Roma, as well as eliminate stereotypes of Roma and indigenous people through awareness-raising campaigns ", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Ratify the Rome Statute on ICC", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Sign and ratify OP-CAT and establish a national mechanism to prevent torture, independent of the authorities ", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Enhance its efforts to reduce the health hazards posed by industrial activities", - "values": [ - "4 - General action" - ] - }, - { - "text": "Abrogate article 80 of Criminal Code pertaining to the infringement to the safety of State, which restricts the right to freedom of expression ", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Continue to review and refine the relevant legislations, policies and programmes to accord the elderly with more protection, services and opportunities to allow them to age with dignity and continue contributing to society where they can", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "End the discriminatory practice of maintaining "black lists" of Russian citizens - natives of the Kazbek district of Georgia - depriving them of the possibility to visit their homes, relatives and the graves of their ancestors", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Strengthen the capacity of processing, hosting and integrating asylum seekers, in close collaboration with relevant stakeholders", - "values": [ - "4 - General action" - ] - }, - { - "text": "Ratify the outstanding core treaties, such as the International Covenant on Civil and Political Rights, the Convention against Torture, and the International Convention on the Elimination of All Forms of Racial Discrimination", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Prohibit and appropriately sanction corporal punishment", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Continue its efforts to train the judiciary and law enforcement bodies in the field of human rights as well as its activities to increase the awareness of its population on this subject ", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Establish a legal framework to better protect women and girls from sexual exploitation and forced marriage", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Issue a standing invitation to United Nations special rapporteurs to the country", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Consider ratifying OP-CAT and the Rome Statute of the International Criminal Court \n", - "values": [ - "3 - Considering action" - ] - }, - { - "text": "Thoroughly investigate all instances of the persecution of lawyers, members of the judiciary, human rights defenders, and journalists, for legitimate activities in the defence of human rights as well as lift restrictions within national legislation or practice that limit NGO registration and activity", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Sign and ratify as quickly as possible the International Convention for the Protection of All Persons from Enforced Disappearance ", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Adhere to the principles of the ICRMW and give positive consideration to its eventual ratification", - "values": [ - "4 - General action" - ] - }, - { - "text": "Implement as a priority the National Action Plan against Racism, Xenophobia and Intolerance", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Continue to take measures that allow the improvement of the health and education systems of its population ", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Poland will strengthen measures to reduce domestic violence. It indicated that current solutions need to be adjusted in light of the insufficient social awareness of the threats domestic violence poses to individuals, families and society as a whole, as well as insufficient assistance to victims of violence. An annual evaluation of the implementation of the National Programme to Counter Domestic Violence for 2006-2016 will constitute the basis for its adjustment to actual needs. Eradication of violence from the family environment can first and foremost be achieved through the implementation of programmes promoting positive methods of childrearing and partnership in the family, some of which are carried out in collaboration with the European Union and the Council of Europe. In 2008 the law against domestic violence and the National Programme to Counter Domestic Violence will be amended, resulting in: 1/ A complete ban on corporal punishment, and financial support for the implementation of projects against domestic violence at municipal level within the framework of the National Programme to Counter Domestic Violence 2/ The introduction of a warrant obliging the perpetrator to leave the house immediately after an incident of violence is reported by the victimThe introduction of cost-free forensic medical examinations", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Continue supporting national initiatives that promote the full respect for human rights in particular the field of the rights of women ", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Strengthen its institutional capacity for investigation of cases of human trafficking and prosecution of perpetrators ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Abolish administrative detention and forced labour without proper trial, access to legal representation and independent supervision", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Guarantee freedom of expression and opinion, especially for journalists, writers and editors ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Accede to the Second Optional Protocol to the ICCPR and abolish the death penalty", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Give top priority to reducing further the national prevalence rate [of HIV/AIDS], especially among pregnant women ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Intensify measures to raise public awareness of the General Equal Treatment Act ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Fully restore the rights and dignity of the Palestinian people, including their rights to life, to live in dignity, adequate food, housing, health and education, as well as their freedom of movement", - "values": [ - "4 - General action" - ] - }, - { - "text": "Further enhance human rights education ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Ratify CRC and ensure from the beginning that all measures to be adopted for children incorporate its provisions ", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Continue strengthening its efforts and measures to consolidate the State of Law and the effective performance of administration of justice ", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Seek technical assistance in order to improve human rights in the country", - "values": [ - "1 - Minimal action" - ] - }, - { - "text": "Set up an independent Commission for children and women", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Accelerate efforts to prevent minors from being subjected to forced or hazardous domestic labour ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Continue with its permanent system to follow-up the recommendations, which were created by the Presidential Human Rights Commission, and includes the participation of the Civil Society and will permit to submit a mid-term report on the progress made to implement the received recommendations", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Continue to work on the creation of a national legal framework for the protection of minorities, including immigrants and refugees, thus protection from violence and appropriate treatment within society", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "On the basis of the National Human Rights Action Plan, improve and promote more effectively the protection of human rights", - "values": [ - "4 - General action" - ] - }, - { - "text": "Fight the increased rate of persons subjected to sexual and gender- based violence", - "values": [ - "4 - General action" - ] - }, - { - "text": "Revise the provisions of the Criminal Code on terrorism with a view to defining precisely terrorism-related offences and ensure legislation is in line with the International Covenant on Civil and Political Rights", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Ensure the rights of religious minorities, to enhance access to education in the language of minorities, to withdraw the reservation to article 27 of ICCPR regarding minorities and to ratify the Council of Europe Framework Convention for the Protection of National Minorities", - "values": [ - "4 - General action" - ] - }, - { - "text": "Amend domestic law regarding homosexuality, with a view to decriminalize it", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Take all necessary measures to implement the commitment to abolish the death penalty", - "values": [ - "4 - General action" - ] - }, - { - "text": "Accede to the International Labour Organization", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Take into account human rights education and training in its national education and training programs ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Effectively investigate all reported cases of harassment of members of the Roma by the police forces.", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Attempt to restrain any state initiative which approaches immigration issues in a repressive way towards the migrant community and that violates its rights by applying racial profiling, criminalizing undocumented immigration and violating the human and civil rights of persons", - "values": [ - "4 - General action" - ] - }, - { - "text": "Take the necessary measures to ensure the effective implementation of the law prohibiting labour of children under 15 years old, ensuring the perpetrators are properly sanctioned", - "values": [ - "4 - General action" - ] - }, - { - "text": "Take further steps to present periodic reports to the treaty bodies and implement the recommendations in a timely fashion.", - "values": [ - "4 - General action" - ] - }, - { - "text": "Intensify programmes aimed at eradicating poverty and improving socio-economic indicators", - "values": [ - "4 - General action" - ] - }, - { - "text": "Put an end to all sanctions and unilateral coercive measures that violate sovereignty, the self-determination of the peoples and the full exercise of human rights, imposed to countries in all the regions of the world", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Establish legal equality between men and women with a view to abolishing any discrimination and all violence, including domestic violence suffered by women and girls, and legally ban FGM.", - "values": [ - "4 - General action" - ] - }, - { - "text": "Maintain its commitment to striking a balance between the opening up of its economy and minimizing the adverse impacts on the most vulnerable and disadvantaged groups in the society.", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Continue to uphold the traditional values of family life ", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Revise the Act on the Residence of Foreign Nationals so that migrants and refugees do not pay the costs of their detention", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Ratify the international treaties to which the state is not yet party, particularly the Convention against Torture, the Convention on the Elimination of All Forms of Discrimination against Women and its Optional Protocol, the Second Optional Protocol to the International Covenant on Civil and Political Rights, aiming at the abolition of the death penalty ", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Open up channels of dialogue and cooperation with all human rights mechanisms of the United Nations and with OHCHR", - "values": [ - "4 - General action" - ] - }, - { - "text": "Further enhance measures to prevent the exploitation of children for the purposes of prostitution and pornography, as well as to prosecute persons who are guilty of the exploitation or ill treatment of children", - "values": [ - "4 - General action" - ] - }, - { - "text": "Prevent and combat racial prejudice and take the necessary measures to ensure effective protection against discrimination, in particular in the fields of employment, housing, health and education, to ensure capacity-building and the empowerment of indigenous peoples ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Continue its policy of integrating human rights in the Congolese education system", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Implement education and awareness-raising programmes on gender equality in the framework of efforts to combat stereotypes conducive to domestic violence and discrimination against women ", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Prevent early, child and forced marriages by passing into law and effectively enforcing a minimum age of 18 for marriage", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Consider developing programmes that work to conclusively eliminate violence against women and children", - "values": [ - "3 - Considering action" - ] - }, - { - "text": "Take concrete steps to streamline and ensure efficiency of judicial procedures concerning gender violence", - "values": [ - "4 - General action" - ] - }, - { - "text": "Ratify the Rome Statue of the International Criminal Court and fully align its legislation with all the obligations under the Rome Statute, including incorporating the Rome Statute definition of crimes and general principles, as well as adopting provisions enabling cooperation with the Court", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "While commending the Government for the measures already taken in combating violence against women, recommended that steps continue to be taken to follow up on the recommendations of the Human Rights Committee and CEDAW", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Ratify the CAT and ICERD", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Consider adopting universal health-care coverage to ensure healthcare provision for all, with particular attention given to vulnerable groups and those living in rural areas ", - "values": [ - "3 - Considering action" - ] - }, - { - "text": "Address the concerns of UNICEF that the principles and provisions of the Convention on the Rights of the Child were not, as at 2010, explicitly set forth in the domestic legislation ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Take stronger measures to combat domestic violence and protect its victims", - "values": [ - "4 - General action" - ] - }, - { - "text": "Reinforce its cooperation with treaty bodies and special procedures", - "values": [ - "4 - General action" - ] - }, - { - "text": "Amend the Public Order Act to allow for freedom of assembly and remove restrictions on freedom of the press by relaxing libel laws that could impede journalists", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Continue with its efforts to develop a national policy for the benefit of persons with disabilities, including the ratification of the Convention on the Rights of Persons with Disabilities", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Establish a moratorium on the application of the death penalty, with a view to abolishing capital punishment before the next universal periodic review session", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Extend an invitation to the special procedures", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Place greater emphasis on assisting former girl soldiers to reintegrate into society ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Envisaged legislative and regulatory reforms with regard to prison reform to modernize custodial care in keeping with applicable international standards, will be continued", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Intensify its efforts to combat trafficking in human beings with a special attention to the needs of the victims ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Improve prison conditions", - "values": [ - "4 - General action" - ] - }, - { - "text": "Put an end to criminal prosecutions against human rights defenders", - "values": [ - "4 - General action" - ] - }, - { - "text": "Accelerate the procedure to accede to the Hague Convention", - "values": [ - "4 - General action" - ] - }, - { - "text": "Thailand will enhance human rights protection for migrant workers and will redouble its efforts to prevent human trafficking, especially through enhancing the labour inspection system", - "values": [ - "4 - General action" - ] - }, - { - "text": "Impose an immediate moratorium on the death penalty with a view to abolishing it, and to ensure that it is never applied to persons under the age of 18 ", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Consolidate efforts of the systematic integration of human rights education and training in the school system with specific and updated programs for the State personal and the security agents ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Strengthen and consolidate efforts to counter discriminatory practices and violence against women", - "values": [ - "4 - General action" - ] - }, - { - "text": "Undertake measures ensuring rights of ethnicities and national minorities to use its native languages in practice ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Pursue efforts carried out by the Gambian Government in the framework of the national policy for gender equality and promotion of women for the period 2010 to 2020", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Increase efforts to improve the rights of the child, notably through the effective application of the prohibition of child labour, as well as the rights of women", - "values": [ - "4 - General action" - ] - }, - { - "text": "Incorporate the crime of torture in the Penal Code, including a definition of torture with all the elements listed in article 1 of the Convention against Torture ", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Enhance measures on public awareness-raising and professional education to support the implementation of the law of 2010 amending article 319 of the Penal Code to remove the clause which provided a legal defence for the use of corporal punishment in child rearing ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Put a vetting process in place in the Congolese security forces, based on the past record of its members, with the aim of preventing the recruitment of individuals who have committed human rights violations. ", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Guarantee the independence of the judiciary and ensure the right to a fair trial as outlined by the Basic Principles on the Independence of the Judiciary ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Formally abolish the death penalty in law", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Take concrete steps to implement fundamental safeguards in police custody, and prohibit the use of police stations as places for long-term detention", - "values": [ - "4 - General action" - ] - }, - { - "text": "Bring its laws in line with the Convention on the Rights of the Child", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Commit itself to raising awareness about the UPR recommendations and include interested non-governmental organizations in discussions on how to best implement recommendations.", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Continue efforts to ensure proper application and implementation of legal texts relevant to protection of women and children in particular and family rights in general", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Continue to strengthen the national preventive mechanism ", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Strengthen its efforts in fully implementing the National Plan of Action on Combating Trafficking in Human Beings ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Carry out impartial and independent investigations to combat impunity in cases of alleged violations of human rights, and inform the international community about those investigations", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Take all appropriate measures to protect children effectively from being exposed to violence, racism and pornography through mobile technology, video movies, games and other technologies, including the Internet ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Intensify efforts aimed at realizing further progress in the process of strengthening economic, social and cultural rights, and in particular the rights of children and persons with disabilities ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Build on its work to tackle gender-based violence, including through Basic Law 1-2004, and measures recently introduced to allow women who are illegal migrants to report acts of violence without fear of personal disadvantage ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Establish a body to coordinate government efforts to combat trafficking in persons and the worst forms of child labour", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Strengthen the legal standing as well as the human and financial resources of the national preventive mechanism according to the Optional Protocol to the Convention against Torture and Other Cruel, Inhuman or Degrading Treatment or Punishment so that it operates effectively", - "values": [ - "4 - General action" - ] - }, - { - "text": "Develop a comprehensive strategy and action plan to combat xenophobia and racial discrimination", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Ratify the Convention on the Rights of Persons with Disabilities and ensure that persons with disabilities are free from all forms of discrimination and social exclusion", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Pass implementing legislation before the Parliament for the Protocol to Prevent, Suppress and Punish Trafficking in Persons, especially Women and Children", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Further the implementation of a comprehensive child protection system by investing more efforts in empowering the Council for the Rights of the Child and strengthening the role of the Deputy Ombudsman for the Rights of the Child", - "values": [ - "4 - General action" - ] - }, - { - "text": "End the discriminations against the Roma and Egyptian communities", - "values": [ - "4 - General action" - ] - }, - { - "text": "Adopt a national action plan to combat violence against women and a law on domestic violence", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Adopt laws against domestic violence and against the sexual abuse of women and children", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Reinforce the inquiries regarding the electoral unrest as well as the national reconciliation mechanisms, in particular through an independent review of their effectiveness ", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Take all necessary measures to ensure the protection of the rights of children and to put an end to the recruitment and use of child soldiers", - "values": [ - "4 - General action" - ] - }, - { - "text": "Adopt and implement a comprehensive anti-discrimination law that would prohibit and sanction any direct or indirect form of discrimination based on age, race, gender, religion, sexual orientation, ethnic origin or nationality", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Implement fully and immediately measures of protection for victims of domestic violence ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Redouble its efforts to combat practices of corruption in Lesotho", - "values": [ - "4 - General action" - ] - }, - { - "text": "Ensure respect for freedom of expression, freedom of the press and freedom of association", - "values": [ - "4 - General action" - ] - }, - { - "text": "Adopt the necessary measures to eradicate the tendency and/or diffusion, through the media, and by public officials, of stereotypes that may promote discrimination against persons, based on their sexual orientation ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Adopt a comprehensive national human rights action plan and implement the national action plan on the protection of women against violence 2014-2016", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Ratify the Second Optional Protocol to the International Covenant on Civil and Political Rights and abolish the death penalty", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Continue implementing measures to prevent HIV/AIDS transmission", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Enact specific legislation that prohibits discrimination against persons based on sexual orientation", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Maintain the position that the solution to the crisis in the country is political and should be based on a national dialogue under the aegis of the Syrian people and without preconditions", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Develop an integrated national plan of gender equality that criminalizes FGM and take practical measures to eradicate it, requesting the necessary assistance ", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Consider adopting a comprehensive strategy addressing all forms of discrimination, particularly on promoting the rights of women, girls, and children with disabilities, children living in rural areas, children living in poverty, refugee children and children born out of wedlock", - "values": [ - "3 - Considering action" - ] - }, - { - "text": "Provide equal legal protections and access to public services to all its citizens, particularly its minorities and indigenous peoples", - "values": [ - "4 - General action" - ] - }, - { - "text": "Consider ratifying fundamental International Labour Organization conventions, and adopt policies to avoid discrimination against foreign workers", - "values": [ - "3 - Considering action" - ] - }, - { - "text": "Immediately and unconditionally release all those arbitrarily detained ", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Launch investigations of human rights violations and return to adherence to democratic principles, including through ensuring genuine periodic elections", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Subject any detention of migrants, refugees or asylum seekers to judicial review and ensure that persons are informed of their rights.", - "values": [ - "4 - General action" - ] - }, - { - "text": "Abolish death penalty", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Take measures to develop a comprehensive action plan to combat trafficking and the sexual exploitation of women and girls", - "values": [ - "4 - General action" - ] - }, - { - "text": "Expedite efforts to introduce a statelessness determination procedure and provide persons recognized as stateless with legal status and access to basic human rights, in full consultation with key stakeholders", - "values": [ - "4 - General action" - ] - }, - { - "text": "Respect, in close cooperation with "Somaliland" and "Puntland", freedom of expression and protect journalists and human rights defenders from abuses aimed at preventing them from exercising their legitimate activity ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Continue to develop programmes aimed at providing support to vulnerable children and, specifically, eradicate the practice of corporal punishment ", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Provide criminal liability for torture in line with article 1 of the Convention against Torture", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Specifically criminalize torture and put in place effective measures to prevent and sanction the use of torture", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Step up measures to achieve MDGs ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Halt the prosecution of citizens who are exercising the rights guaranteed under articles 18, 19, 20, 21, and 22 of the UDHR", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Ensure that its national programmes in the field of education include human rights education and training", - "values": [ - "4 - General action" - ] - }, - { - "text": "Facilitate rapid and unrestricted humanitarian access for United Nations humanitarian agencies in order to provide assistance to all civilians in need", - "values": [ - "4 - General action" - ] - }, - { - "text": "Follow up on and establish a national human rights institution", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Ensure the independence of judges from the executive in Burundi, by applying objective admission criteria within an impartial selection process and ensuring adequate funding for the judicial system ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Continue providing access to adequate housing, particularly by assisting low-income families and other disadvantaged individuals and groups ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Complete the nomination of members of the NHRC with a view to render it operational, if not done so yet", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Intensify the fight against modern forms of slavery", - "values": [ - "4 - General action" - ] - }, - { - "text": "Take measures, including disciplinary measures, to bring to the attention of those working in the educational system, in particular teachers, their obligation to refrain from corporal punishment ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Introduce, as a matter of urgency, comprehensive, efficient measures to prevent and combat the widespread economic exploitation of children, in line with its international commitments, notably ILO Conventions No. 138 and 182", - "values": [ - "4 - General action" - ] - }, - { - "text": "Genuinely articulate the Child and Adolescent Protection Act 2009, providing it with the necessary human and financial resources for its effective implementation at all levels of government", - "values": [ - "4 - General action" - ] - }, - { - "text": "Take the steps necessary to ensure that all the victims of the conflict, including internally displaced persons, can receive appropriate assistance in order to prevent a further worsening of their human rights situation, as well as to create favourable conditions for the return of internally displaced persons to their places of origin", - "values": [ - "4 - General action" - ] - }, - { - "text": "Take measures to guarantee full protection of children's human rights by eliminating and reducing child trafficking, violence against children, their sexual abuse and economic exploitation, their ritual killing, infanticide and child labour and by improving the birth registration of all children especially in rural areas", - "values": [ - "4 - General action" - ] - }, - { - "text": "Lift restrictions imposed on religious practices, cease persecution and rigid control over those professing their religious beliefs and ensure that its domestic legislation and practice is in full compliance with the requirements of article 18 of ICCPR ", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Continue to actively engage its regional and international partners to mobilize the necessary resources for the implementation of its human rights program ", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Take new measures, where necessary, concerning female victims of domestic violence", - "values": [ - "4 - General action" - ] - }, - { - "text": "Encourage the expansion of the bilateral cooperation between the Swiss and Romanian task forces against human trafficking to more countries of origin", - "values": [ - "4 - General action" - ] - }, - { - "text": "Consider ratification of the ILO convention on indigenous peoples", - "values": [ - "3 - Considering action" - ] - }, - { - "text": "Consider stepping up efforts towards reform in juvenile justice ", - "values": [ - "3 - Considering action" - ] - }, - { - "text": "Investigate and prosecute all those responsible for torture and ill-treatment, unlawful killings and widespread arbitrary arrests ", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Take necessary measures to ensure transparency in the independent appointment of judicial and prosecutorial officers ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Adopt administrative, budgetary, legislative and awareness-raising measures that ensure the right to birth registration of children of indigenous or African origin and from rural areas", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Continue the effort in the field of juvenile justice, including by considering incorporating restorative justice principles in the juvenile justice system", - "values": [ - "3 - Considering action" - ] - }, - { - "text": "Continue its efforts to protect the rights of migrants and foreign workers, particularly to further enhance their safety and welfare", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Adopt effective measures to combat violence against women and to fight poverty ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Respect in law and in practice international standards for freedom of peaceful assembly, and open a dialogue with civil society representatives to establish a list of sites, in particular in the centre of Baku, where demonstrations can take place freely", - "values": [ - "4 - General action" - ] - }, - { - "text": "Continue its efforts to improve human rights, especially in the field of health", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Continue efforts to combat corruption", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Halt and prevent attacks against civilians, including the use of rape as a weapon of war, and to allow humanitarian access to all areas ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Ensure effective legal frameworks are in place that enable the reporting, investigation and prosecution of cases of discrimination or hate crimes on the grounds of sexual orientation and gender identity", - "values": [ - "4 - General action" - ] - }, - { - "text": "Exert additional efforts to combat discrimination and xenophobia", - "values": [ - "4 - General action" - ] - }, - { - "text": "Take all appropriate measures to promote tolerance, intercultural dialogue and respect for diversity in the society", - "values": [ - "4 - General action" - ] - }, - { - "text": "To increase the financial and material resources allocated to the Interministerial Support Committee", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Continue cooperation with international mechanisms to promote and protect human rights", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Comprehensively improve the effectiveness of measures to protect the rights of the child", - "values": [ - "4 - General action" - ] - }, - { - "text": "Consider designating an institution for coordination and implementation of policy on children.", - "values": [ - "3 - Considering action" - ] - }, - { - "text": "Reinvigorate efforts to fulfil article VII of the Dayton Accords, guaranteeing refugees the right to return to their homes of origin", - "values": [ - "4 - General action" - ] - }, - { - "text": "Increase the job quota for people with disabilities", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Promote and protect all human rights for all", - "values": [ - "4 - General action" - ] - }, - { - "text": "Associate itself with the consensus on the institution-building package whose objective is to equip the Council with the mechanisms and rules necessary for its operation and implementation of its mandate", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Continue its efforts to increase the level of employment of persons with disabilities in the open labour market and take specific measures for women with disabilities", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Continue its laudable measures to address the plight of persons with disabilities, in particular through pursuance of the draft National Disability Strategy, and share its experience in this regard ", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Continue pursuing policy measures towards media plurality and independence ", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Mental capacity legislation for ratification of the Convention on the Rights of Persons with Disabilities was progressing", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "While expressing concern at the Security Surveillance Law, which restricts freedoms of former political prisoners and of prisoners of conscience to adopt measures to address the situation ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Ensure that suspected abusive employers of migrant workers can be duly prosecuted", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Remove the classification of information on the death penalty as a State secret, and provide statistics and information related to death sentences and executions ", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Continue efforts to strengthen criminal justice system and judicial institutions", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "That the government ends violent suppression of protestors, and arbitrary detention of political activists and journalists", - "values": [ - "4 - General action" - ] - }, - { - "text": "Continue to improve the social security system, and take further steps to guarantee the rights of persons with disabilities and other vulnerable groups", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Promptly investigate all allegations that military personnel and other officials have committed serious crimes and violations of human rights including extrajudicial killings, recruitment of child soldiers, torture, sexual violence and forced labour ", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Become party to OP-CAT and CPED ", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Take concrete measures to comply with its reporting obligations under the relevant human rights treaties in a timely manner.", - "values": [ - "4 - General action" - ] - }, - { - "text": "Seek development assistance from development partners and United Nations specialized agencies in order to find solutions to identified challenges hampering the enjoyment of human rights and the achievement of the Millennium Development Goals", - "values": [ - "1 - Minimal action" - ] - }, - { - "text": "Ensure that persons with intellectual and psycho-social disabilities are informed about criminal proceedings and charges against them, and enjoy the right to a fair hearing, and to adequate and effective legal assistance ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Ensure that Aboriginal and other indigenous communities are accorded equal access to services including to judicial remedies for discrimination and racism", - "values": [ - "4 - General action" - ] - }, - { - "text": "Decriminalise consensual same-sex conduct between adults and take all necessary steps to protect LGBT community from all forms of discrimination", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Continue to improve policies and programmes towards strengthening the capacities of its national institutions and public decision-making authorities and to improve the legislative and judicial environment, as well as the overall human rights infrastructure ", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Accede to Optional Protocol to the Convention on the Rights of Persons with Disabilities", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Consider signing and ratifying the ICCPR and the ICESCR", - "values": [ - "3 - Considering action" - ] - }, - { - "text": "Continue strengthening its domestic measures with regard to persons with disabilities, in accordance with its international obligations under the CRPD", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Identify, in an exhaustive manner, the conditions of application of international law, as well as the efforts made for the effective integration of the international obligations of the country ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Urgently act to protect women against any form of sexual violence ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Amend the legal definition of discrimination so that it includes a comprehensive list of banned reasons for discrimination", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Sign and ratify those core international human rights instruments to which Kiribati is not yet a party, particularly the ICCPR and its first and second protocols", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Continue efforts concerning investigations of past human rights violations, including those related to economic crimes, and the related judicial processes", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Eliminate the practice of indefinite internships for graduates of universities and technical schools and replace these with paid employment opportunities, both in the public and private sectors", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Extend an open and permanent invitation to the United Nations human rights special procedures mandate holders - ", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Agree to the request for visit by the Special Rapporteur on contemporary forms of racism.", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Decriminalize homosexuality by abrogating the legal provisions currently punishing sexual relations between consenting individuals of the same sex, and subscribe to the December 2008 General Assembly Declaration on sexual orientation and human rights", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Review, with a human rights approach, the legal framework for the promotion of investment so that provisions favour industries which respect human rights and the environment", - "values": [ - "3 - Considering action" - ] - }, - { - "text": "Invite the Special Rapporteur on violence against women, and develop, in consultation with civil society, a comprehensive plan of action to address sexual violence ", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Ensure that any reform of the juvenile justice system explicitly takes into account the differentiated needs of girls and boys ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Continue strengthening efforts to combat hate crime", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Ratify those treaties which have not yet been ratified, such as the Optional Protocol to CESCR and CRPD and its Optional Protocol", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Put an end to executions and adopt a moratorium on the death penalty", - "values": [ - "4 - General action" - ] - }, - { - "text": "Consider establishing a, or strengthening the existing, national mechanism responsible for coordination, implementation, reporting and follow-up, in line with the good practices identified by OHCHR in its study/guide concerning national mechanisms for reporting and follow-up", - "values": [ - "3 - Considering action" - ] - }, - { - "text": "Continue its efforts to fight discrimination and violence against women", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Continue efforts aimed at harmonization of national criminal justice system and legislation with the constitutional reforms", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Establish a formal moratorium on the death penalty, with a view to ratifying the Second Optional Protocol to the ICCPR", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Take legislative measures to continue to guarantee rights and equal treatment for the indigenous people in order to ensure national cohesion and social harmony", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Adhere to the principles of the main human rights treaties and favourably consider ratifying them within a reasonably short period of time ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Continue with its efforts to cooperate fully with the United Nations Special Rapporteur on the situation of human rights in Myanmar", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Take the necessary measures to combat incidents of ritual killings of children and adults in various parts of Uganda and to ensure effective investigation and prosecution of these crimes ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Ensure effective implementation of the juvenile justice law by providing training to law enforcement officials and judges and by establishing separate detention facilities for minors", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Take all the necessary legislative and other measures in order to guarantee the full independence and impartiality of the judiciary in line with the Basic Principles on the Independence of the Judiciary (endorsed by General Assembly resolutions), including by establishing an independent body responsible for the appointment, promotion, suspension and removal of judges", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Adopt the Prevention and Prohibition of Torture Regulation to make the Prevention and Prohibition of Torture Act operational", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Accede to the two optional protocols to the Convention on the Rights of the Child (CRC)", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Intensify its efforts to fight poverty and for the prosperity and welfare of all its citizens", - "values": [ - "4 - General action" - ] - }, - { - "text": "Pursue its efforts in the in the field of education in order to fulfil the Millennium Development Goals and consolidate the national plan of education for all ", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Intensify efforts to ratify Optional Protocol to the Convention against Torture to further foster the rights of liberty-deprived persons", - "values": [ - "4 - General action" - ] - }, - { - "text": "Continue setting good practices like pension schemes for the elderly and the disabled", - "values": [ - "3 - Considering action" - ] - }, - { - "text": "Speed up the process of the establishment of a national human rights institution in conformity with Paris Principles", - "values": [ - "4 - General action" - ] - }, - { - "text": "Strengthen the capacity of the judiciary at all levels and accelerate legal reforms, especially in the field of judicial treatment of high-level corruption as per the objective stated in the European Commission report of 27 June 2007 under the Cooperation and Verification Mechanism.", - "values": [ - "4 - General action" - ] - }, - { - "text": "Pursue and enhance its efforts to better address and respond to the problem of domestic violence", - "values": [ - "4 - General action" - ] - }, - { - "text": "Strengthen the measures aimed at integrating indigenous peoples in relation to the administration of justice, health and education, through the increase of intercultural services such as interpreters and bilingual professors", - "values": [ - "4 - General action" - ] - }, - { - "text": "Accede to and fully align its national legislation with the Rome Statute of the International Criminal Court and accede to the Agreement on Privileges and Immunities of the Court", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Examine possible ways to make the bureaucratic process required when terminating a pregnancy as quick as possible, and maximize its efforts to make sure that the process is conducted in a professional way ", - "values": [ - "3 - Considering action" - ] - }, - { - "text": "Ratify International Labour Organization (ILO) Convention No. 169 concerning Indigenous and Tribal Peoples in Independent Countries ", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Increase medical, judicial, psychological and socioeconomic support to victims of sexual violence", - "values": [ - "4 - General action" - ] - }, - { - "text": "Reinforce measures to ensure that women are no longer subjected to forced marriage. This could be supported by developing and implementing comprehensive educational measures on the provisions of the Persons and Family Code and on other relevant laws.", - "values": [ - "4 - General action" - ] - }, - { - "text": "Publish and implement a plan to protect rights to freedom of assembly and expression ensuring the police have adequate powers to ensure the safety of those present and that any crimes committed in connection will be thoroughly and transparently investigated", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Continue its efforts to ensure that the national laws protect freedom of expression online and offline", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Consider ratifying the Optional Protocol to CAT. ", - "values": [ - "3 - Considering action" - ] - }, - { - "text": "Adopt effective measures to ensure the eradication of all forms of discrimination based on sexual orientation and gender identity", - "values": [ - "4 - General action" - ] - }, - { - "text": "Combat the issues of rape and prostitution of minors by ensuring the full implementation of the laws criminalizing sexual abuse and exploitation ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Increase the number of female police officers and consider placing them in decision-making positions", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Enhance efforts in order to better address the issue of domestic violence", - "values": [ - "4 - General action" - ] - }, - { - "text": "Ensure that gender issues are appropriately addressed in its future programmes ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Extend the moratorium on the death penalty with a view to its abolition and take immediate measures to prohibit absolutely the application of the death penalty to persons under the age of 18 years at the time of the offence, in compliance with the international legal obligations of Maldives, in conformity with the commitments made during the first universal periodic review", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Continue and intensify its efforts to prevent and eliminate all forms of de facto discrimination against ethnic groups and persons of immigrant backgrounds ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Continue improving the quality of education by providing periodic teacher training, including instructions regarding the equal treatment of girls and boys and the importance of gender equality", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Consider increasing the minimum age of marriage, especially for girls", - "values": [ - "3 - Considering action" - ] - }, - { - "text": "Declare a moratorium on the death penalty", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Continue with ongoing efforts to combat violence and crimes against children", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Strengthen the National Institute for Older Persons as a policymaking institution on ageing and old age", - "values": [ - "4 - General action" - ] - }, - { - "text": "Carry out thorough investigations into violations of human rights in the territories of Abkhazia and South Ossetia committed by the Georgian authorities before and during the 2008 conflict", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Consider taking steps to establish an independent National Human Rights Institution", - "values": [ - "3 - Considering action" - ] - }, - { - "text": "Ensure that new human rights units are part of an integral plan for the justice and security sector.", - "values": [ - "4 - General action" - ] - }, - { - "text": "Take steps to implement the recommendations of treaty bodies ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Respect the rights of persons living in the area of Fukushima, in particular of pregnant women and children, to the highest level of physical and mental health, notably by restoring the allowable dose of radiation to the 1 mSv/year limit, and by a continuing support to the evacuees and residents", - "values": [ - "4 - General action" - ] - }, - { - "text": "Further expand the opportunities for dialogue on sexual orientation and gender identity ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Strengthen measures to promote and protect the rights of the child, including measures against sexual and labour exploitation", - "values": [ - "4 - General action" - ] - }, - { - "text": "Remove the offence of liable for journalists from the Criminal Code ", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Strengthen respect for the rule of law by promoting judicial independence and transparency through the depoliticization of the judiciary and law enforcement authorities, and by strengthening mechanisms to investigate human rights abuses or violations", - "values": [ - "4 - General action" - ] - }, - { - "text": "Undertake a comprehensive reform of the judicial system, including the establishment of a credible system of accountability for security force abuses", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Take the necessary steps for the criminalization of all acts of intolerance and hate speech", - "values": [ - "4 - General action" - ] - }, - { - "text": "Strengthen efforts to prevent violence against and abuse of children", - "values": [ - "4 - General action" - ] - }, - { - "text": "Improve the procedures for the protection against child abuse", - "values": [ - "4 - General action" - ] - }, - { - "text": "Explicitly prohibit corporal punishment to children in accordance with the recommendations of CAT", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "It renewed its commitment to improve human rights and praised the role of non-governmental organizations.", - "values": [ - "4 - General action" - ] - }, - { - "text": "As regards participation of women in the national decision-making process, Mauritius is committed to the decision taken by SADC to increase women's participation in politics and decision-making by 30%.", - "values": [ - "4 - General action" - ] - }, - { - "text": "Develop a national strategy against racial discrimination, xenophobia and Islamophobia based on a dialogue with non-governmental organizations", - "values": [ - "4 - General action" - ] - }, - { - "text": "Establish a universal birth registration system to ensure that all children have access to birth registration immediately after birth, regardless of the status of their parents", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Conclude a thorough and impartial judicial investigation into the acts of violence in Pando", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Strengthen efforts to combat, prevent, and respond to domestic violence, including by ensuring that victims of domestic violence have access to the necessary support and services that will enable them to leave abusive situations, in particular means to sustainably support themselves financially", - "values": [ - "4 - General action" - ] - }, - { - "text": "Apply programmes and means to improve the enjoyment of the right to education and the right to health", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Expressly prohibit in legislation racial discrimination and organisations inciting racial discrimination", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Allocate a major proportion of its budget to public health, emphasizing the supply of safe drinking water and sanitation services ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Adopt measures to protect and preserve the cultural heritage and traditional way of life of indigenous peoples and undertake effective consultations with indigenous peoples based on free, prior and informed consent ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Ensure that all persons belonging to disadvantaged groups and marginalized groups have access to basic health care", - "values": [ - "4 - General action" - ] - }, - { - "text": "Continue consolidating its policy of integral attention to victims and family members of human rights violations, in keeping with international standards.", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Reform the legislation with a view to providing women with equal rights in marriage, divorce, property relations, the custody of children and inheritance ", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Pursue its efforts relating to human rights education and training in order to make its internal mechanism to combat discrimination effective and more efficient ", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Repeal or amend the package of four laws on race and religion - the Religious Conversion bill, the Buddhist Women's Special Marriage bill, the Monogamy bill and the Population Control and Healthcare bill - to ensure respect for the human rights of women and ethnic and religious minority communities, and consistency with international human rights obligations and standards", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Although there are still some human rights issues that require further dialogue and consideration both nationally, and also with international partners, Tonga is proud of its achievements so far, and it remains committed to protecting its people and all who sojourn into its territory to enjoy the freedoms and protections provided by its 138 year old modern state", - "values": [ - "4 - General action" - ] - }, - { - "text": "Develop and carry out the whole range of measures for the practical implementation of provisions of the Convention on the Rights of the Child and its two Optional Protocols ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Further emphasize the quality and sustainability of the achieved targets and progress towards attaining the remaining MDG goals ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Exert further efforts to submit the periodic reports to the treaty bodies", - "values": [ - "4 - General action" - ] - }, - { - "text": "Decriminalize consenting relationships between adults of the same sex and adopt measures against violence and hate speech against lesbian, gay, bisexual, transgender or intersex persons and associations", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Enact legislation to ensure the humane treatment of prisoners", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Give high priority to reforming discriminatory legislation in order to adopt as soon as possible the draft family code, taking into account the recommendations made by CEDAW.", - "values": [ - "4 - General action" - ] - }, - { - "text": "Combine national and international efforts to combat human trafficking ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Implement political and economic reforms conducted with the full participation of all social sectors for the development of the country and better ensure the fundamental rights and freedom for the people ", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Continue ensuring the prosecution of cases of hate crimes", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Reconsider the legality of prostitution given its impact on the realization of a whole range of rights.", - "values": [ - "3 - Considering action" - ] - }, - { - "text": "Guarantee LGBTI persons the full enjoyment and equal human rights by derogating legislation that criminalizes and stigmatizes them", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Amend the Protection of Employment Act to include a prohibition against sexual harassment in the workplace", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Repeal legal provisions criminalising sexual activity between consenting adults of the same sex", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Ratify the Optional Protocol to the ICESCR", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Fully implement the provisions of the Human Rights Council's resolution on "protecting human rights defenders" adopted in March 2013 ", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Take appropriate steps to ensure the full application of existing legislation on combating racism and racial discrimination", - "values": [ - "4 - General action" - ] - }, - { - "text": "Ensure that the draft law on domestic workers, which it is hoped will be adopted very soon, is in line with ILO Convention No. 189 ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Continue cooperation and dialogue between the Government and non-governmental organizations ", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Continue implementing educational policies in the area of health and education ", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Implement the recommendation made by the Committee on the Elimination of Racial Discrimination concerning the adoption of a clear and comprehensive definition of racial discrimination and ensure that its national legislation is made uniform in this regard", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Integrate into the new Constitution important human rights guarantees, including the right to non-discrimination, freedom of expression, association and assembly, the independence of the judiciary, protection from torture and other forms of ill-treatment, the protection of the rights of the minorities, the right to life, and the protection of economic, social and cultural rights ", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Prevent and combat xenophobia and racial prejudice and assure protection for the indigenous population against discrimination ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Adhere to the global trend against the capital punishment by establishing a moratorium on its use ", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Continue efforts regarding access to the right to health", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Intensify its efforts to address discrimination against Lesbians, Gays, Bisexuals and Transsexuals (LGBT), and to investigate and prosecute crimes against LGBT-community members", - "values": [ - "4 - General action" - ] - }, - { - "text": "Strengthen efforts to ensure the access of children to compulsory education", - "values": [ - "4 - General action" - ] - }, - { - "text": "Engage in awareness-raising activities such as stressing diversity in school curricula in order to alleviate discrimination against lesbian, gay, bisexual and transgender persons ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Strengthen the protection and promotion of women's rights through appropriate legislative and policy measures and by addressing discriminatory social and cultural attitudes and practices", - "values": [ - "4 - General action" - ] - }, - { - "text": "Adopt further measures to foster inter-religious communication and public culture of promoting socio-cultural and religious diversity", - "values": [ - "4 - General action" - ] - }, - { - "text": "Carry out an annual review of the 1958 Armed Forces Special Powers Act aiming to gradually reduce its geographic scope ", - "values": [ - "3 - Considering action" - ] - }, - { - "text": "Take measures to study trafficking in persons in the country and formulate a broad strategy against trafficking, which should include the prosecution and punishment of traffickers ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Continue its legal measures on ratification of the Convention on the Rights of Persons with Disabilities which had been signed by the Government in early 2009 ", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Amend the Penal Code in order to repeal the right of a husband to punish his wife and the right of parents or custodians to punish their minor children by means of physical violence or coercion ", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Take effective measures to combat persisting hostile attitudes and discrimination towards the Roma, Kurds and persons belonging to non-Muslim minorities ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Strengthen the provisions for the protection of women, notably through the adoption of the draft law aiming at preventing violence against women", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Amend article 377 of the Penal Code to ensure that only non-consensual sexual relations between persons of the same sex are punishable", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Strengthen their efforts to promote gender equality, including through awareness-raising programmes and the development of a comprehensive national gender strategy", - "values": [ - "4 - General action" - ] - }, - { - "text": "Encouraged sharing with other developing countries its education development, especially in formulating plans to ensure that students, regardless of their location and background, have access to education", - "values": [ - "1 - Minimal action" - ] - }, - { - "text": "Take all appropriate measures in the implementation of the 2015 Juvenile Justice Act to give children aged 18 years and below an opportunity for rehabilitation", - "values": [ - "4 - General action" - ] - }, - { - "text": "Increase efforts to submit pending reports to the Committee on the Elimination of Racial Discrimination", - "values": [ - "4 - General action" - ] - }, - { - "text": "Adopt a moratorium on the execution of the death penalty, with a view to a final abolition of the death penalty", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Step up its national capacity-building programs for law enforcement officials, including through international cooperation ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Continue to defend the cooperative approach, non-politicization and respectful dialogue in the field of human rights ", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Take measures to ensure policy and institutional coherence with a view to addressing the situation of the Roma minority in a comprehensive manner. ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Further strengthen its role as an international centre for higher education ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Ratify OP-CRPD, currently before Parliament", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Consider ratifying the International Convention on the Protection of the Rights of All Migrant Workers and Members of Their Families ", - "values": [ - "3 - Considering action" - ] - }, - { - "text": "Implement the provisions of the six "Judicial Reform Packages" encompassing various rights and freedoms, in particular the freedom of expression and the media online and offline", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Adopt a policy of cooperation with OHCHR and other United Nations human rights mechanisms, including the Commission of Inquiry, and allow these mechanisms to visit the country", - "values": [ - "4 - General action" - ] - }, - { - "text": "Cooperate fully with international human rights procedures and institutions, including with the Human Rights Council fact-finding mission, with the aim of holding accountable those responsible for violations and abuses of human rights", - "values": [ - "4 - General action" - ] - }, - { - "text": "Enact legislation that promotes and protects the rights to freedom of opinion and expression", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Facilitate procedures for the establishment of new parties", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Adopt all necessary measures to address the concerns of the Committee on Economic, Social and Cultural Rights about the extent of corruption in Ukraine and its adverse impact on the enjoyment of all human rights", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Share its best practices and strategies on reduction of maternal mortality rates", - "values": [ - "1 - Minimal action" - ] - }, - { - "text": "Prohibit female genital mutilation.", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Continue its efforts to complete the accession to the relevant instruments such as the Convention against Torture and Other Cruel, Inhuman or Degrading Treatment or Punishment", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Pursue further efforts to combat discrimination against the Roma", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Ratify the Optional Protocol to the Convention against Torture with a view to establishing a national preventive mechanism against torture", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Withdraw reservations to the International Convention on the Elimination of All Forms of Racial Discrimination and take appropriate measures to combat more effectively discriminatory stereotypes ", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Develop campaigns to raise immigrants' awareness of their rights, particularly with regard to their rights to access to health care services ", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Continue efforts to develop the capacities of the institutions that deal with disabled persons ", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Ensure that the principle of freedom of association, as provided for in article 11 of the European Convention of Human Rights, is respected without any discrimination and applied in accordance with the relevant case law of the European Court of Human Rights", - "values": [ - "4 - General action" - ] - }, - { - "text": "Continue safeguarding the well-being and rights of migrant workers in Singapore and reach out to migrant workers to ensure that they understand their employment rights and responsibilities", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Ratify the Rome Statute and Agreement on the Privileges and Immunities of the International Criminal Court", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Continue efforts to fight impunity for serious violations of human rights committed during the armed conflict", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Accede to OP-CAT, and incorporate this into domestic law ", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Continue its efforts to finalize the national reconciliation process so as to preserve the promotion and protection of human rights", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Establish a comprehensive plan on gender equality, especially stressing prosecution of sexual exploitation and prevention of gender violence ", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Take measures to allocate adequate resources to develop the quality of health and educational services in plantation areas", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Continue its efforts in eliminating violence against women and girls to provide a safe living environment for them", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Continue its efforts with regard to child protection and implement an independent mechanism to monitor children\u2019s rights so as to prevent violations of existing regulations and legislation", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Promote the establishment of civil society organizations without undue restrictions and seek\nthe assistance of the United Nations system in Bhutan to this end ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Reduce violence against women through awareness and mobilization campaigns to change social norms, significantly strengthen legal accountability in cases of violence against women and improve national strategic planning to mobilize resources and improve coordination in combating violence against women", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Develop a national plan to combat trafficking in human beings with a view to strengthening the mechanism for the identification of victims of trafficking and to ensure their rights are protected", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Ensure that trials and pretrial detention comply with due process rights in ICCPR and articles 54 and 55 of the Constitution, and end all military trials of civilians", - "values": [ - "4 - General action" - ] - }, - { - "text": "Continue its efforts on current national action plans for job creation, quality education, health care and social security, with more focus on vulnerable groups of women, children, persons with difficulties, migrants and ethnic minorities", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Review the recently adopted "protection of race and religion" laws to ensure that they are in line with Myanmar's human rights treaty obligations and that they adequately protect the rights of persons belonging to minority groups", - "values": [ - "3 - Considering action" - ] - }, - { - "text": "Proceed with the internal measures necessary to comply with the obligations arising from the Optional Protocol to the International Covenant on Economic, Social and Cultural Rights", - "values": [ - "4 - General action" - ] - }, - { - "text": "Consider the possibility of ratifying CPED ", - "values": [ - "3 - Considering action" - ] - }, - { - "text": "Take additional measures to eliminate criminal networks involved in the sale of children, including for the purposes of illegal adoption", - "values": [ - "4 - General action" - ] - }, - { - "text": "Share best practices with other developing countries on poverty reduction programmes and strategies, especially in rural areas", - "values": [ - "1 - Minimal action" - ] - }, - { - "text": "Take the necessary measures to prevent and sanction forced and early marriage and female genital mutilation and strengthen public policies in place to combat the high rates of violence against women, particularly against women belonging to minorities, migrant women and women with disabilities ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Intensify programmes to enhance economic, social and cultural rights", - "values": [ - "4 - General action" - ] - }, - { - "text": "Review national legislation and develop awareness and training programmes in order to eliminate legal and de facto discrimination against boys and girls with disabilities and as well as with respect to those children living in the poorest areas of the country ", - "values": [ - "3 - Considering action" - ] - }, - { - "text": "Continue strengthening the programme on primary education and ensure full school attendance by children deprived of education at the primary and secondary levels", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Facilitate greater diversity in radio broadcasting in the context of the current review of the Constitution", - "values": [ - "4 - General action" - ] - }, - { - "text": "Enhance legislation, strategies, national action plans, initiatives and create committees on human rights", - "values": [ - "4 - General action" - ] - }, - { - "text": "Recommended that Benin ensure that no statement obtained under torture or duress can be invoked in proceedings and that orders from a superior may not be invoked as a justification of torture.", - "values": [ - "4 - General action" - ] - }, - { - "text": "Adopt the Act on the Prevention of Human Trafficking and Protection of Victims", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Intensify the investigation and punishment of cases of discrimination and gender violence", - "values": [ - "4 - General action" - ] - }, - { - "text": "Consider measures aimed at ensuring freedom of religion for groups which will become\nminorities in the two countries after the emergence of the new State", - "values": [ - "3 - Considering action" - ] - }, - { - "text": "Take concrete steps to improve access to decent work and other economic opportunities for women in achieving gender equality", - "values": [ - "4 - General action" - ] - }, - { - "text": "Ensure proper investigation of child abuse", - "values": [ - "4 - General action" - ] - }, - { - "text": "Continue to take positive measures to better protect the right of its people to education, health care, employment, housing and food, etc.", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Consider establishing a national human rights institution in accordance with the Paris Principles", - "values": [ - "3 - Considering action" - ] - }, - { - "text": "Seek to legislate minimum standards for the elimination of people trafficking, including the trafficking of women and girls", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Continue its efforts to promote domestic peace and reconciliation processes in order to foster an enabling environment for human rights development", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Implement its road map against impunity for sexual violence, the law on sexual violence as well as other applicable laws, policies and programmes in compliance with international human rights standards to hold all offenders fully accountable and punished - implement an open, effective mechanism of access to justice for the victims in an expeditious manner - and establish a functioning rehabilitation scheme for the victims", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Continue the efforts in the field of violence against women and the promotion of equality between women and men", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Ensure the full enjoyment of the right to freedom of expression in line with country's international commitments ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Carry out as soon as possible the implementation of its legislation on torture and the designation of its national preventive mechanism ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Continue implementing measures that make prevail the best interest of the child when the time comes for decision making ", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Implement human rights education and anti-discrimination awareness-raising programs for the general public in collaboration with local civil society groups working on behalf of vulnerable populations", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Fully implement the National Human Rights Action Plan, working together with civil society, and to ensure that the Plan is enshrined in law and has appropriate budgetary support", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Increase efforts to combat the trafficking in human beings, including through the development of international cooperation with interested Governments, international organizations and non-governmental organizations", - "values": [ - "4 - General action" - ] - }, - { - "text": "Re-establish a moratorium on executions with a view of abolishing the death penalty", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Ratify before the next universal periodic review cycle the Optional Protocol to the Convention against Torture and establish a national preventive mechanism accordingly", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Take further activities to improve the situation of women and to secure children's rights", - "values": [ - "4 - General action" - ] - }, - { - "text": "Consider with high priority strengthening and broadening the human capacity of the National Disaster Risk Management Office and of the Climate Change Unit before its next universal periodic review", - "values": [ - "3 - Considering action" - ] - }, - { - "text": "Ensure that training programmes focusing on human rights are mandatory for all judges, lawyers and police officers.", - "values": [ - "4 - General action" - ] - }, - { - "text": "Abolish completely the penalty of corporal punishment", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Continue efforts to ensure that women fully participate in society", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Adopt a legal instrument to protect the rights of the indigenous population especially in cases of land disputes and mining development", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Establish an information and prevention strategy to combat the discrimination against and persecution of the albino population in the country, as well as protection for these persons, in particular for albino children", - "values": [ - "4 - General action" - ] - }, - { - "text": "Continue the commitments made in terms of access to the voluntary termination of pregnancy in order to ensure full respect for sexual and reproductive rights", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Ratify the OP-CAT and establish its national preventive mechanism accordingly ", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Implement the designed public policy and launch a comprehensive awareness-raising campaign to end gender-based violence that includes sexual violence and feminicide", - "values": [ - "4 - General action" - ] - }, - { - "text": "Continue its efforts to protect child rights, in particular in its attempt to completely eradicate child labour", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Maintain the quality of public health of the country as a priority ", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Strengthen efforts to ensure that investigations into allegations of illtreatment of detainees are timely and effective ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Seek technical and financial assistance by the international community in order to contribute to further promotion of economic, social and cultural rights, including the right to development for better realization of the Millennium Development Goals", - "values": [ - "1 - Minimal action" - ] - }, - { - "text": "Accelerate the passage of the gender equality bill", - "values": [ - "4 - General action" - ] - }, - { - "text": "Ratify the Second Optional Protocol to the International Covenant on Civil and Political Rights, aimed at abolishing the death penalty", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Continue efforts aimed at combating all forms and manifestations of hatred and discrimination, including hate crimes and hate speech on a religious basis, and strengthen mechanisms for accountability in this regard", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Continue constructive cooperation with international human rights mechanisms to protect and promote human rights", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Accelerate the ratification of CRPD.", - "values": [ - "4 - General action" - ] - }, - { - "text": "Continue and strengthen its efforts in implementing the action plan to combat trafficking in persons so that all perpetrators of trafficking in persons are brought to justice and victims are provided with adequate protection and rehabilitation", - "values": [ - "4 - General action" - ] - }, - { - "text": "Ensure the respect of human rights of vulnerable persons, notably women, older persons, children, as well as persons with disabilities and with reduced mobility", - "values": [ - "4 - General action" - ] - }, - { - "text": "Take concrete steps to further develop and implement initiatives targeting not only the Roma minority but also the majority population, including children and adults, in order to increase mutual understanding and respect with a view of combating the nourishment of societal discrimination against Roma ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Immediately establish a moratorium on executions with a view to abolishing the death penalty", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Amend the law on mass media to ensure it does not unduly restrict freedom of expression, in line with recommendations made by the OSCE Representative on Freedom of the Media", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Continue implementing measures underway to intensify efforts in providing capacity-building and training programs on human rights for its law enforcement officials as well as judicial and legal officials", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Fully implement the Law on ensuring equality of the rights and opportunities for women and men, in order to eliminate the gender equality gaps in all spheres of the society", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Continue and enhance the efforts in promoting and protecting the rights of vulnerable groups including women and persons with disabilities ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Undertake concrete steps in order to prevent violence against women, including domestic violence, also through awareness-raising and educational efforts", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Expedite action on the ratification process of the Optional Protocol to the Convention against Torture", - "values": [ - "4 - General action" - ] - }, - { - "text": "Continue the coordination among print and audio-visual media to raise awareness and deepen understanding of human rights principles, and protect and promote different cultures, traditions and religions as a principal factor of stable relations among the ethnic groups ", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Reconsider amendments to the constitution, other laws and policies that contradict with Sudan's international obligations, including international human rights law and international humanitarian law", - "values": [ - "3 - Considering action" - ] - }, - { - "text": "Continue to support the national dialogue facilitation mechanism promoted by UNASUR, in which three former presidents and a representative of the Holy See participate", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Continue to enhance the protection of women against domestic violence and further promote gender equality in its society ", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Continue its efforts in seeking accountability for the past human rights violations and providing redress to their victims ", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Strengthen cooperation with the universal system of human rights by submitting their initial report to the Committee against Torture and Other Cruel, Inhuman or Degrading Treatment or Punishment, the Committee on Economic, Social and Cultural Rights and the Committee on the Elimination of All Forms of Racial Discrimination and by accepting the visit of the rapporteurs on freedom of peaceful assembly, extreme poverty and human rights defenders", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Ensure that the right to conscientious objection to military service is observed", - "values": [ - "4 - General action" - ] - }, - { - "text": "Include specific provisions adequately criminalizing acts of torture in the German Code of Crimes against Criminal Law (CCAIL) as required by CAT ", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Seek the advice of the Special Rapporteur on the promotion and protection of the right to freedom of opinion and expression and continue to cooperate with him ", - "values": [ - "1 - Minimal action" - ] - }, - { - "text": "Reinforce awareness-raising and educational programmes to prevent traditional harmful practices against women and girls and to ensure that victims have access to resources and protection and rehabilitation mechanisms", - "values": [ - "4 - General action" - ] - }, - { - "text": "Consider ratification of the Optional Protocol to the Convention on the Rights of the Child on a communications procedure ", - "values": [ - "3 - Considering action" - ] - }, - { - "text": "Continue Estonia's successful integration policy by, inter alia, implementing the State Integration Programme for 2008-2013 and continue efforts to improve the knowledge of the State language among the non-Estonian population ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Implement the recommendations of the Committee on the Rights of the Child", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Refrain from preventing or hindering the restoration of Islamic holy shrines by the Waqf.", - "values": [ - "4 - General action" - ] - }, - { - "text": "Ensure that detention centers for migrants and the treatment they receive meet the basic conditions and universal human rights law ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Establish a children's ombudsman to safeguard, protect and promote the rights of children and young people, as previously recommended", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Consider becoming a member of the International Labour Organization ILO and ratifying ILO Convention 138 on minimum age and ILO Convention 182 on the worst forms of child labour ", - "values": [ - "3 - Considering action" - ] - }, - { - "text": "Follow through the Government\u2019s plans to expand compulsory education to high school", - "values": [ - "4 - General action" - ] - }, - { - "text": "Withdraw the reservation to the Second Protocol to ICCPR and abolish the death penalty for all crimes", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Amend the relevant legislation to abolish capital punishment entirely, in keeping with General Assembly resolutions 62-149 and 63-168, as well as the Second Optional Protocol to ICCPR, and transfer the existing death sentences to imprisonment terms", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Further strengthen comprehensive measures addressing all forms of violence against women and girls", - "values": [ - "4 - General action" - ] - }, - { - "text": "To undertake substantial measures to combat trafficking through national and international collaboration, including international and national NGOs", - "values": [ - "4 - General action" - ] - }, - { - "text": "Continue its efforts to provide training and capacity building in the area of human rights for police officers and members of the judiciary and prosecution as well as journalists", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Take measures to protect rights activists and remove any impediments to the work of political opposition parties, human rights groups, and other independent civil society organizations", - "values": [ - "4 - General action" - ] - }, - { - "text": "Abide by its commitments made through the ratification of international instruments ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Implement the policy for employment of persons with disabilities and the National Roma Integration Strategy 2011-2020", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Take necessary measures to ensure that individuals suspected of committing crimes under international law and other serious human rights violations are thoroughly investigated and brought to justice", - "values": [ - "4 - General action" - ] - }, - { - "text": "Cooperate with the internal United Nations board of inquiry on its investigation into attacks on the United Nations-Syrian Arab Red Crescent relief operation", - "values": [ - "4 - General action" - ] - }, - { - "text": "Ensure that, if the amended law decriminalizing libel is adopted, it is implemented in a way that protects freedom of expression", - "values": [ - "4 - General action" - ] - }, - { - "text": "Pursue its efforts to create a national human rights institution ", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Continue its efforts, through the UNFCCC and other forums, to remind the international community, especially developed countries and other major emitting States, of their obligations to protect and promote human rights in Nepal by reducing greenhouse gas emissions to safe levels ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Consider signing and ratifying ICESCR and ICCPR ", - "values": [ - "3 - Considering action" - ] - }, - { - "text": "Continue efforts to enhance the standard of living and ensure wide access of the population to high quality education and health care system ", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Respect freedom of opinion and expression, in particular for journalists, and freedom of peaceful demonstration, without recourse to the excessive use of force", - "values": [ - "4 - General action" - ] - }, - { - "text": "Suspend the Citizenship and Entry into Israel Law (Temporary Order of 31 May 2003).", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Extend a standing invitation to the special procedures of the United Nations", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Provide adequate protection to human rights defenders at risk, especially involving the right to freedom of expression, peaceful assembly and association ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Carry out a strict and effective separation of women and men as well as children and adult prisoners in all penitentiary establishments of all cantons of the country", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Take steps aimed at properly accrediting the Ombudsperson, taking into account that the Public Defender of Rights (Ombudsperson) already complies with many of the Paris Principles", - "values": [ - "4 - General action" - ] - }, - { - "text": "Act on its commitment to set up a national agency to combat sexual violence and ensure access to justice and compensation for victims of sexual violence. ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Allow visits of ICRC to address issues regarding humanitarian assistance, internally displaced persons and persons deprived of their freedom ", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Consider an early ratification of the third OP to CRC on a communication procedure", - "values": [ - "3 - Considering action" - ] - }, - { - "text": "Continue strengthening the national human rights institutions and promoting and protecting the rights of all segments of the population ", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Intensify its efforts to ensure effective law enforcement for domestic violence against children and women, to bridge the gap between legislation and practice, along with enhancing awareness of victims' rights and training for public officers and legal professions", - "values": [ - "4 - General action" - ] - }, - { - "text": "Enhance the adoption of measures aimed at preventing the teenage pregnancy incidence", - "values": [ - "4 - General action" - ] - }, - { - "text": "Make progress, both at the legislative level and in practice, in ensuring the rights and fundamental freedoms of lesbian, gay, bisexual, transgender and intersex persons", - "values": [ - "4 - General action" - ] - }, - { - "text": "The Lao PDR will cooperate and support the work of the UN human rights mechanisms, including the Human Rights Council, fulfill the reporting obligations under human rights treaties, cooperate with the Special Procedures by extending invitation to Special Rapporteurs on thematic issues to visit the country as appropriate", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Speed finalizing drafting the special law to prevent and punish crimes of gender based violence in order to put an end and fight violence against women ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Guarantee freedom of expression and peaceful association and safeguard the activities of journalists and human rights defenders, also by amending relevant legislation in order to align it with best practices and international standards in the area of freedom of expression", - "values": [ - "4 - General action" - ] - }, - { - "text": "Seek for technical assistance to strengthen the capacity building of judicial officers, members of law enforcement forces and civil officials in the field of human rights and corruption, as well as the training of heads of committees responsible for fighting against corruption in all Ministries", - "values": [ - "1 - Minimal action" - ] - }, - { - "text": "Continue guaranteeing the access to cultural values in all its manifestations ", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Take specific measures to eliminate child marriage, early marriage and forced marriage, which remain widespread in a number of communities. These measures require new constitutional and legislative protection as well as commitments in terms of education and health for girls, and the protection against violence, as well as child protection services which must take account of the gender dimension and economic empowerment of women", - "values": [ - "4 - General action" - ] - }, - { - "text": "Promote inter-religious dialogue and other educational measures to increase the understanding and tolerance in society among all religious communities", - "values": [ - "4 - General action" - ] - }, - { - "text": "Ensure the rights of indigenous peoples, also by resolving all relevant problems to land titles and other environmental issues that affect their rights to their natural resources", - "values": [ - "3 - Considering action" - ] - }, - { - "text": "Intensify its efforts to establish a National Human Rights Institution in accordance with the Paris Principles", - "values": [ - "4 - General action" - ] - }, - { - "text": "Implement pillar 3 of the Government Action Programme 2016-2021, which focuses on improving the living conditions of the population", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Provide basic guarantees for migrant workers in accordance with the International Convention on the Protection of the Rights of All Migrant Workers and Members of their Families ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Adopt temporary special measures to facilitate greater participation and representation of women in public offices, particularly in fields relating to political and civil rights", - "values": [ - "4 - General action" - ] - }, - { - "text": "Introduce legislation to create a legal and permanent basis for the "Defensoría del los Habitantes" set up to protect human rights defenders, including providing it with an adequate budget and financial autonomy", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Combat poverty, including through the effective implementation of the Benazir Income Support Programme", - "values": [ - "4 - General action" - ] - }, - { - "text": "Continue to enhance the training being offered to security personnel, with a special focus on the fundamentals of ethics, the use of force and human rights ", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Offer longer-term alternatives that would allow trafficking victims to stay in the country on a work or residency permit, rather than solely offering repatriation or asylum", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Take further measures to combat maternal mortality and, among others, give specific follow-up to the recommendation of the Committee on the Rights of the Child concerning availability of free medical assistance to pregnant women.", - "values": [ - "4 - General action" - ] - }, - { - "text": "Ensure that all people in Bosnia Herzegovina including returnees, people with disabilities or Roma, have access to public services, including health care and education without discrimination", - "values": [ - "4 - General action" - ] - }, - { - "text": "Take immediate measures to investigate the excessive use of force and incidents of torture by the security forces and to prosecute and punish its perpetrators ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Prohibit and prosecute hate speech and discriminatory practices that incite violence towards minorities, and especially clearly endorse non-discrimination and the right of all individuals in Rakhine State to equal protection under the law", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Ratify the second Optional Protocol to the Covenant on Civil and Political Rights on the abolition of the death penalty", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Ensure that all perpetrators of violations and abuses of the international human rights law and the international humanitarian law from all sides of the conflict are investigated, prosecuted and punished in accordance with international standards and cooperate with the International Criminal Court in this regard", - "values": [ - "4 - General action" - ] - }, - { - "text": "Continue to create conducive environment for the enjoyment of freedom of religion and belief including through introduction of further measures for promoting equal rights and social harmony among followers of different religions", - "values": [ - "4 - General action" - ] - }, - { - "text": "Persist in implementing measures to remove any salary discrepancies between men and women for equal work", - "values": [ - "4 - General action" - ] - }, - { - "text": "Increase available resources for education. ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Consider the establishment of an independent national human rights institution, within, and in accordance with the appropriate domestic procedural and legal framework", - "values": [ - "3 - Considering action" - ] - }, - { - "text": "Adopt a law explicitly making racial motivation an aggravating circumstance for crimes and offences", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Make additional efforts to ensure that tribunals, prisons and the police comply with international human rights standards", - "values": [ - "4 - General action" - ] - }, - { - "text": "Take legal measures to provide free and compulsory education for all under the right to education, and implement the inclusive education policy ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Ensure that migrants have access to justice, education, health care and safety without discrimination ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Remove all anti-personnel mines and explosive remnants of war to prevent the falling of new casualties ", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Amend the criminal legislation with the view of introducing the racist motivated offence as an aggravating criminal circumstance ", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Take further action to ensure that children who have been subjected to sexual exploitation are treated as victims and that the perpetrators are brought to justice ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Take urgent measures to investigate all allegations of extrajudicial killings by law enforcement agencies with a view to bringing the perpetrators to justice", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Ensure an effective implementation of its National Policy and Action Plan on Human Rights in order to further promote and protect human rights of its population", - "values": [ - "4 - General action" - ] - }, - { - "text": "Act firmly to eliminate all forms of human rights violations committed by members of the police force, including harassment and excessive use of violence. ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Consider developing a comprehensive plan to combat trafficking in human beings ", - "values": [ - "3 - Considering action" - ] - }, - { - "text": "Take additional steps to clear up the backlog of cases in the justice system, ensure the effective implementation of the Constitutional Law on the Rights of National Minorities, and take additional measures to ensure the effective integration of minorities into society", - "values": [ - "4 - General action" - ] - }, - { - "text": "Protect freedom of religion or belief of all people living in the country", - "values": [ - "4 - General action" - ] - }, - { - "text": "Maintenance of peace, order, tranquility and stability in the country", - "values": [ - "4 - General action" - ] - }, - { - "text": "Strictly apply the provisions of the Code of Criminal Procedure, in particular those relating to the maximum period of detention on remand", - "values": [ - "4 - General action" - ] - }, - { - "text": "Pursue and strengthen current efforts to address allegations and reports of discriminatory treatment of migrant workers, especially those related to female domestic workers.", - "values": [ - "4 - General action" - ] - }, - { - "text": "Enact legislation providing for the status determination and protection of asylum seekers, refugees and stateless persons and revise national immigration laws and procedures to distinguish such persons from those termed irregular migrants", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Continue advancing in policies and programs dignifying and fully realizing the rights of indigenous peoples ", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Meet the aspirations of groups that are the victim of discrimination ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Continue harmonizing its legal framework with respect to women and children with CEDAW and the Convention on the Rights of the Child, respectively", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Consider the adoption of proper reforms in order to improve the protection of freedom for human rights defenders to carry on their initiatives", - "values": [ - "3 - Considering action" - ] - }, - { - "text": "Continue to support in international forums the right to self-determination and independence of peoples ", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Continue its efforts in favour of persons with disabilities, by meeting their specific needs, particularly in education and health", - "values": [ - "4 - General action" - ] - }, - { - "text": "Take all the necessary steps in order to ensure the independence of the judiciary", - "values": [ - "4 - General action" - ] - }, - { - "text": "Repeal section 80 of its Penal Code and, generally, ensure the independence and freedom of the press", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Make efforts to strengthen national capacities in the field of human rights while benefiting from the technical assistance of the Office of the High Commissioner for Human Rights ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Continue its efforts in favour of the education of children, especially in the rural parts of the country", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Pursue the current debate on the abolition of the death penalty in a transparent manner including with respect to civil society ", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Further review and harmonize all relevant laws in accordance with the ratified human rights instruments ", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Release the parliamentarians from the opposition who have been imprisoned and take the necessary legal measures to ensure freedom of expression, in the media and on the internet", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Ratify the International Covenant on Civil and Political Rights and the International Covenant on Economic, Social and Cultural Rights, the Rome Statute, the International Convention for the Protection of All Persons from Enforced Disappearance, the Optional Protocol to the Convention against Torture and the Convention on the Prevention and Punishment of the Crime of Genocide ", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Promote the creation of a database regarding persons with disabilities, with the objective of guiding relevant policies to make their rights effective ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Continue the process towards the ratification of the International Convention on the Protection of the Rights of All Migrant Workers and Members of Their Families and the ILO Domestic Workers Convention, 2011 (No. 189) ", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Continue to protect and promote the rights of imprisoned persons so as to make conditions and places of detention more humane", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Introduce a full prohibition of corporal punishment within the family in all states and territories ", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Extend the benefits of its health insurance, currently limited to Qataris and citizens of Gulf Cooperation Council countries, to any citizen residing in its territory ", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Redouble its efforts to ensure that actions of police forces and detention conditions are fully in line with international human rights norms ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Step up the process of the creation of a national human rights institution", - "values": [ - "4 - General action" - ] - }, - { - "text": "Consider the measures it deems appropriate to guarantee effective access to basic education for all ", - "values": [ - "3 - Considering action" - ] - }, - { - "text": "Continue to combat violence against children", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Take the necessary measures to ensure the respect of the Convention on the Rights of the Child to make sure minors are not imprisoned with adults", - "values": [ - "4 - General action" - ] - }, - { - "text": "Authorise and facilitate humanitarian access to all areas of the country", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Continue existing efforts in the field of human rights education and training ", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Develop a comprehensive policy aimed at strengthening the judicial system, focusing on the effective access to justice for women", - "values": [ - "4 - General action" - ] - }, - { - "text": "Revise the penal code in order to guarantee the freedom of expression and protect journalists from violence and harassment", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Prohibit all corporal punishment of children in all settings, including in the home", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Develop a legislative package for the prevention of and combating of gender-based violence and provide greater financial and human resources to the National Council on Gender Policy", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Defend children's rights by ensuring that the Directorate on Childhood, Adolescent and Family Issues has the appropriate legislative framework and financial resources to meet its mandate, and by implementing policies and programmes to protect children, adolescents and returned child migrants", - "values": [ - "4 - General action" - ] - }, - { - "text": "Continue to take the measures necessary to reduce discrimination against women, in particular on the job market and in national political life, where women are underrepresented, particularly through support for the efforts of the National Council for Women.", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Take the necessary measures to guarantee the proper functioning of a juvenile justice system, including, inter alia, by treating minors in a manner appropriate to their age, and abolish all corporal punishment of children in all settings", - "values": [ - "4 - General action" - ] - }, - { - "text": "Strengthen its system for monitoring, reporting and analyzing crimes of violence and discrimination against individuals based on grounds of sexual orientation or gender identity", - "values": [ - "4 - General action" - ] - }, - { - "text": "Take immediate effective and legal measures to prevent and combat violence against women, in particular those belonging to minority groups ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Finalize the National Gender Policy and its Plan of Action, so as to further promote women's rights and create an enabling environment for women", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Strengthen public policies aimed at the achievement of gender equality in law and in practice, paying particular attention to the vulnerability of elderly women and women with disabilities and especially with respect to access to education, employment and social services ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Promptly ratify CAT and sign its Optional Protocol ", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Establish a de jure moratorium on the death penalty and commute all the death sentences with a view to its abolition", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Continue efforts in strengthening democratic institutions, including through capacity-building in the State legislative, executive as well as judiciary system ", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Continue its efforts to ensure that women have the fullest access to education", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Ratify the International Covenant on Economic, Social and Cultural Rights and the Optional Protocol, and opt-in to the enquiry and inter-state mechanisms ", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Step up efforts to change the stereotype and traditional perception of Roma by the majority population, including through conducting more awareness and sensitization programmes.", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Implement alternative measures to deprivation of liberty in cases involving minors, and when they are deprived of their liberty afford them all necessary guarantees", - "values": [ - "4 - General action" - ] - }, - { - "text": "Take increased measures to protect and provide redress to women subjected to gender-based violence ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Improve guarantees for the exercise of the right to information through the ratification of ICCPR and its two protocols", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Take effective measures to better guarantee the rights of vulnerable groups such as women, children, the elderly, and people with disabilities ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Share with other countries, especially developing countries, its experience in the area of justiciability of economic and social rights.", - "values": [ - "1 - Minimal action" - ] - }, - { - "text": "Designate legal guardians for all unaccompanied children as required by Bulgarian law, to ensure that their basic needs are met as children and that their interests are protected", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Request necessary aid and technical assistance from the international community, notably United Nations development agencies, to be assisted in its efforts to promote and protect human rights in general, and to implement periodic review recommendations in particular ", - "values": [ - "1 - Minimal action" - ] - }, - { - "text": "Promote policies and educational campaigns for the promotion and protection of the rights of women, and ensure that all allegations of violence against women are promptly, thoroughly and effectively investigated, that perpetrators are held accountable and that women victims of violence obtain adequate redress, including compensation and rehabilitation", - "values": [ - "4 - General action" - ] - }, - { - "text": "Establish a moratorium on the death penalty as in interim measure towards the abolition of the capital punishment", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Fully incorporate the principles and provisions of CRC into the domestic legal system, especially those regarding corporal punishment ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Efficiently implement recently ratified international conventions, especially in the field of child rights ", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Continue its efforts to address domestic violence, promote the empowerment of women, improve the quality of education, address unemployment and to draft a new criminal code that would, inter alia, decriminalize sexual activity between consenting adults of the same sex", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Swiftly ratify the Optional Protocol to the Convention on the Rights of Persons with Disabilities, in line with the National Action Plan to Promote Equal Opportunities for Persons with Disabilities (2015-2020)", - "values": [ - "4 - General action" - ] - }, - { - "text": "While noting the important progress made since 1999 in overcoming a legacy of military dictatorship with respect to reports of extrajudicial executions by the police, to ensure that all members of the security forces and the police operate within the law", - "values": [ - "4 - General action" - ] - }, - { - "text": "Ensure the promotion and protection of the rights of indigenous peoples by completing the official register of indigenous communities, improving the process of prior consultations in the context of extractive sector projects and the provision of adequate health care and reparations to indigenous communities affected by health and environmental damage caused by extractive industries", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Pass the draft domestic violence legislation before Parliament to criminalise domestic violence, better protect victims and ensure perpetrators are prosecuted", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Further strengthen bilateral cooperation, regional and international cooperation with countries of origin, transit and destination in order to more effectively address trafficking in women, and establish rehabilitation programs for social integration and economic autonomy for women victims of sexual exploitation and trafficking ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Streamline and fine-tune policies to improve indigenous people's rights.", - "values": [ - "4 - General action" - ] - }, - { - "text": "Become a party to CEDAW", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Issue a standing invitation to special procedures, as previously recommended", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Improve and adopt measures to combat trafficking in persons, including through the draft 2012-2018 action plan, and the provision of training to judges, prosecutors and law enforcement officers ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Consider the possibility of ratifying the International Convention for the Protection of All Persons from Enforced Disappearance.", - "values": [ - "3 - Considering action" - ] - }, - { - "text": "Continue to work for the elimination of discrimination against women, particularly in rural areas", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Fully implement any judgment by the European Court of Human Rights regarding the "foreign agent" law ", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Ratify the Protocol to Prevent, Suppress and Punish Trafficking in Persons, Especially Women and Children, supplementing the United Nations Convention against Transnational Organized Crime Palermo Protocol", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Ensure equal access to education for all children", - "values": [ - "4 - General action" - ] - }, - { - "text": "End censorship of the media and ensure full freedom of expression ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Develop affirmative programmes to uplift the living standards of women and ensure their presence in decision-making positions", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Continue to strengthen social policy to provide the same opportunities and the same services to all citizens, including peasants and others working in rural areas, in road, education and hospital infrastructure and water supply, sanitation and energy", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Lift the ban on the importation of religious teaching materials and scriptures in order to enhance and protect freedom of religion and worship ", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Continue to implement recommendations to which it agreed at its first UPR ", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Take concrete legal and practical measures to combat incitement to religious hatred and intolerance", - "values": [ - "4 - General action" - ] - }, - { - "text": "Keep on its national efforts aimed at ensuring the empowerment of women", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Accomplish progressively human rights voluntary goals, as set up by Human Rights Council resolution 9-12, including the ratification of CAT ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Continue its efforts to achieve the goals of the second national Plan to eliminate excision (2012 - 2015)", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Continue with the implementation of recommendations related to the ratification of human rights international instruments ", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Pursue a regular dialogue with the stakeholders in various communities nationwide, including the village chiefs, religious leaders, men and boys as well as civil society in order to promote a better understanding of the importance of equality between women and men and to identify practical means of putting an end to harmful practices against women and girls including FGM, early and forced marriages and levirate ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Create a national governmental independent mechanism in charge of the supervision of human rights policies", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Redouble efforts to eliminate discrimination against women and apply the Convention on the Elimination of All Forms of Discrimination against Women fully.", - "values": [ - "4 - General action" - ] - }, - { - "text": "Step up its efforts to guarantee security of human rights defenders and journalists, and to put an end to all impunity in this area", - "values": [ - "4 - General action" - ] - }, - { - "text": "Ensure that all decisions from the judiciary, regarding those presumed responsible for serious human rights violations during and after the conflict, are fully respected by all concerned institutional actors, particularly by the army and the police forces ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Repeal or at least narrow the restrictions on public discourse on the issue of ethnicity, language, race, religion and politically sensitive issues in order to ensure the full enjoyment of freedom of expression and freedom of peaceful assembly and association ", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Ensure the rights of indigenous peoples, peasants and other people working in rural areas", - "values": [ - "4 - General action" - ] - }, - { - "text": "Implement the recommendations made by the United Nations Special Representative of the Secretary General on Sexual Violence in Conflict, during her visit to Colombia in May 2012 ", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Ensure the implementation of the Criminal Code with regard to the ban on FGM, to strengthen awareness campaigns and educate people about the harmful effects of this practice ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Continue efforts to promote respect of cultural, religious and linguistic diversity", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Take further steps towards protecting human rights of migrant workers, refugees and their dependants, including through signature and ratification of the 1951 United Nations Convention relating to the Status of Refugees", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Take the necessary measures to create a safe and favourable environment for civil society by respecting the human rights of all individuals, in particular the rights to freedom of expression and association", - "values": [ - "4 - General action" - ] - }, - { - "text": "Continue to investigate, in an independent and impartial manner, all human rights violations committed during the conflict and its aftermath, and to prosecute perpetrators and ensure proper redress to the victims affected, in this regard", - "values": [ - "4 - General action" - ] - }, - { - "text": "Take necessary measures to increase the number of gynaecologists in the Brazilian prison system", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Call for technical assistance for gender development, women's empowerment, child protection, prevention of trafficking in persons and disaster management ", - "values": [ - "1 - Minimal action" - ] - }, - { - "text": "Consider acceding to the three Optional Protocols to the Convention on the Rights of the Child", - "values": [ - "3 - Considering action" - ] - }, - { - "text": "Enact amendments to the Electoral Code and ensure broader participation of all citizens in the electoral process and equal enjoyment of the right to vote and to stand for election", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Take measures towards greater harmonization between national legislation and the United Nations Convention against Corruption", - "values": [ - "4 - General action" - ] - }, - { - "text": "Establish a registration system to license independent nongovernmental organizations consistent with the right to freedom of association ", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Improve the overall conditions of children by taking into account the recommendations made by the Committee on the Rights of the Child, with the support and assistance of the international community.", - "values": [ - "4 - General action" - ] - }, - { - "text": "Ratify the Convention relating to the Status of Stateless Persons and the Convention on the Reduction of Statelessness ", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Make every effort to reduce discrimination based on sexual orientation and consider abolishing all legislation which entails constraints to the realization of the rights of the lesbian, gay, bisexual and transgender population, including laws which criminalize sexual relations between consenting adults of the same sex ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Ensure that the justice system functions with independence and in full compliance with relevant international norms", - "values": [ - "4 - General action" - ] - }, - { - "text": "The Government of Bosnia and Herzegovina amend its constitution and the election law to remove discrimination on the basis of ethnicity in politics, in line with the European Court of Human Rights judgements in both Sejdic and Finci v. Bosnia and Herzegovina and Azra Zornic v. Bosnia and Herzegovina", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Ensure an independent and equitable justice for all", - "values": [ - "4 - General action" - ] - }, - { - "text": "Continue to expand the range of main international human rights instruments in effect in the country, in particular through the ratification of the Second Optional Protocol to the International Covenant on Civil and Political Rights, which aims at abolishing the death penalty ", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Actively draw upon the assistance of the international community in the anti-terrorism process and in overcoming its negative consequences.", - "values": [ - "4 - General action" - ] - }, - { - "text": "Implement the recommendation issued in 2010 by the Committee of Ministers of the Council of Europe on measures to combat discrimination based on sexual orientation or gender identity ", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Review the Code of Military Justice in order to align it more closely with international human rights obligations", - "values": [ - "3 - Considering action" - ] - }, - { - "text": "Take concrete measures to address the problem of human trafficking, including by tackling the root causes, introducing effective prevention measures, timely prosecution and punishment of traffickers, and providing protection and support to victims ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Let the legislative power complete the process of the adoption of the draft law on the National Mechanism for the Prevention of Torture", - "values": [ - "4 - General action" - ] - }, - { - "text": "Continue its full cooperation with ICC", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Speed up its implementation of the 2006 Persons with Disability Act", - "values": [ - "4 - General action" - ] - }, - { - "text": "Ensure that the legislation regarding the rights of minorities and indigenous people continue to be fully implemented, paying special attention to the protection of those people most vulnerable to threats and violence, such as human rights defenders ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Continue efforts to further strengthen the National Human Rights Commission and bring it in line with the Paris Principles ", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Strengthen efforts to improve the living conditions in detention centres.", - "values": [ - "4 - General action" - ] - }, - { - "text": "Sustain the achievements in reducing child and infant mortality", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Adopt legislation protecting women with mental disabilities from forced sterilization", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Report on the consultation of the civil society in the implementation of the outcome of the review in the next round of the universal periodic review.", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Continue concerted efforts at the international level for the prevention of the crime of genocide", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Take all measures necessary for the protection of human rights defenders and the free exercise of their activities, and prosecute those responsible for acts of harassment or violence against them", - "values": [ - "4 - General action" - ] - }, - { - "text": "Strengthen and further improve the existing measures and strategies and undertake, where necessary, actions to correct the inequalities that still exist between the various communities. ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Develop targeted public campaigns to address gender stereotypes and discriminatory practices", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Remove the requirement for civil society organizations to provide a complete list of the organization's members to the Government ", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Extend standing invitation to special procedures.", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Take additional measures to prevent all manifestations of hate speech and criminalize incitement to violence and discrimination", - "values": [ - "4 - General action" - ] - }, - { - "text": "Ensure thorough, independent and impartial investigations into the mass killings in Raba'a Square in 2013 and make the perpetrators accountable", - "values": [ - "4 - General action" - ] - }, - { - "text": "Revoke the new Ministerial Order No. 530 of 6 October 2008 restricting political assembly.", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Ratify the ICRMW and the Convention against Torture and Other Cruel, Inhuman or Degrading Treatment or Punishment (CAT) and extend a standing invitation to the United Nations Special Procedures ", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Ratify the International Convention for the Protection of All Persons from Enforced Disappearance, signed in 2007", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Continue to implement the harmonization and consolidation of antidiscriminatory laws and to move forward with the promulgation of laws protecting persons against discrimination on the grounds of sexual orientation or gender", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Take further steps on effectively implementing the Law on Elimination of Violence against Women ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Enhance and improve education, in particular by continuing to work towards the improvement of education through information technology ", - "values": [ - "4 - General action" - ] - }, - { - "text": "The delegation concluded reiterating the Government's commitment to cooperate with international human rights bodies and announced that as a further sign of commitment it would carefully follow-up on the UPR recommendations and report periodically to the Council.", - "values": [ - "4 - General action" - ] - }, - { - "text": "Implement fully the recommendations of the OHCHR field office as a mean to contribute to the improvement of the human rights situation on the ground ", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Continue taking steps in order to fully protect and promote the rights of women and children, especially by protecting them from violence ", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Strengthen the mandate of the Commission of Human Rights in view of its full independence and conformity with the Paris Principles", - "values": [ - "4 - General action" - ] - }, - { - "text": "Encourage better protection of children's rights", - "values": [ - "4 - General action" - ] - }, - { - "text": "Continue strengthening anti-corruption policies and ensure wider access to justice for every citizen, including through the provision of free legal assistance to the most vulnerable groups", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Abide by its obligations under the Second Optional Protocol to the International Covenant on Civil and Political Rights", - "values": [ - "4 - General action" - ] - }, - { - "text": "Continue its efforts to establish a legal framework to protect human rights by ratifying core instruments, especially the Convention on the Rights of Persons with Disabilities, signed by Bhutan in 2010 ", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Publish official statistics on the application of the death penalty, guarantee the right to a fair defence, and introduce a procedure for pardon petitions with a view to a moratorium on execution", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Continue to strengthen the institutional structures and support measures in order to attend to the needs of groups of persons in vulnerable conditions", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Ratify and implement in national norms ILO Convention 169", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Take all necessary measures to protect the rights of migrant workers and members of their families, particularly by ensuring their access to justice", - "values": [ - "4 - General action" - ] - }, - { - "text": "Intensify its efforts to ensure that national prison rules and policies are in line with the revised United Nations Standard Minimum Rules for the Treatment of Prisoners or the Nelson Mandela Rules", - "values": [ - "4 - General action" - ] - }, - { - "text": "Continue efforts to improve prison conditions, prison capacity and find alternative solutions to imprisonment", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Take measures to combat corruption ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Continue legislative reforms aimed at guaranteeing the effective implementation of the rights and obligations contained in international instruments, such as CEDAW, CRC and CAT ", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Strengthen measures to counter the use of racist discourse in politics and in the media", - "values": [ - "4 - General action" - ] - }, - { - "text": "Ensure the speedy passage and enactment of the Domestic Violence Bill through Parliament as a matter of urgency", - "values": [ - "4 - General action" - ] - }, - { - "text": "Pursue its integration policy for the Roma population, guaranteeing access to basic health and social services, education, housing and employment", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Ensure the protection of the rights of defenders, journalists and members of the political opposition", - "values": [ - "4 - General action" - ] - }, - { - "text": "Incarcerate immigrants only exceptionally ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Further provide training to security and law enforcement organs on the protection and promotion of human rights ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Continue to promote gender equality in the workplace and to accelerate work on reducing the wage gap", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Continue its efforts to strengthen the role of national human rights institution and the implementation of the national plan on human rights", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "That development aid must not be tied to conditionalities that do not take into account the traditional values of recipient countries ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Ensure the implementation of national laws created to abolish early marriage and impose sanctions penalizing this practice", - "values": [ - "4 - General action" - ] - }, - { - "text": "Ratify the International Covenant on Civil and Political Rights without reservations", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Consider the introduction of a complaint mechanism for children at the domestic level, as well as signature and ratification of the third Optional Protocol to the Convention on the Rights of the Child on a communications procedure", - "values": [ - "3 - Considering action" - ] - }, - { - "text": "Continue positive measures and actions on behalf of children's rights ", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Pursue the implementation of programs of action aimed at slowing down and controlling the migration flow while continuing engaging with international efforts aimed at addressing the root causes of the illegal migration phenomenon", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Ensure that forced marriages are prohibited in all cases ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Update the Plan against Domestic and Sexual Violence, that despite expiring in 2011, has not been renewed", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Consider utilizing the Yogyakarta Principles on the Application of International Human Rights Law in relation to Sexual Orientation and Gender Identity as a guide to assist in policy development ", - "values": [ - "3 - Considering action" - ] - }, - { - "text": "Ratify, in the context of its continued effort to improve the situation of children, the Optional Protocols to the relevant Convention and 1993 Hague Convention on Protection of Children and Cooperation in Respect of Intercountry Adoption ", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Adopt effective measures to prevent discrimination against women, including by ensuring equal access to education and employment opportunities ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Devise programmes of human rights education on behalf of the police and the security forces, and constantly monitor the effectiveness of such programmes", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Continue the empowerment of women and given them a bigger role in society", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Further ensure that the country's religious minorities are able to freely practice their respective beliefs ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Abolish flogging and other forms of corporal punishment, and ensure that survivors of sexual violence are not prosecuted for fornication", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Issue a standing invitation to special procedures, giving priority to the Special Rapporteur on the rights to freedom of peaceful assembly and association, and the Special Rapporteur on the situation of human rights defenders", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Put an end to abusive recourse to trials in camera, and authorize international observers to attend trials", - "values": [ - "4 - General action" - ] - }, - { - "text": "Consider establishing a formal moratorium on executions of those sentenced to death", - "values": [ - "3 - Considering action" - ] - }, - { - "text": "Intensify efforts to reform the judicial system, including the juvenile justice system", - "values": [ - "4 - General action" - ] - }, - { - "text": "Pursue measures targeted at preventing trafficking in human beings and ensuring effective protection to victims, including by adopting a comprehensive anti-trafficking law", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Adopt all necessary measures to ensure the independence of justice, including by means of effective implementation of the judicial reform ", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Consider improving its legal and institutional frameworks for protection against discrimination by ensuring the same level of protection for all grounds of discrimination", - "values": [ - "3 - Considering action" - ] - }, - { - "text": "Abolish the death penalty as soon as possible ", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Take measures to ensure that children are fully protected from corporal punishment and other forms of violence or exploitation", - "values": [ - "4 - General action" - ] - }, - { - "text": "Organize the forthcoming referendum and elections in line with international standards, including the opinions of the Office for Democratic Institutions and Human Rights of the Organization for Security and Cooperation in Europe and the Venice Commission of the Council of Europe ", - "values": [ - "4 - General action" - ] - }, - { - "text": "We are fully committed to the UPR process and the important role it plays in improving human rights across the world. We will engage civil society organisations in deciding which recommendations to accept, therefore ensuring a strategy for implementation which has buy in and is deliverable against the backdrop of reduced resources in both the statutory and voluntary sectors", - "values": [ - "4 - General action" - ] - }, - { - "text": "Provide the judiciary with adequate human and financial resources for its effective functioning with special attention to the respect of the legislation regarding the preventive detention ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Continue to work on awareness-raising of the rights and needs of children with disabilities and ensure that children with disabilities have equal access to social and appropriate health-care services", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Carry on with legislative and administrative arrangements suggested by the treaty bodies, in order to further improve effective implementation of the Government's anti-discrimination strategy", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Continue to take steps to improve the integration of different groups, in particular in the education process, and report on results at the next round of the universal periodic review.", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Adopt the Law on the Ombudsman for the Rights of the Child and incorporate an explicit definition of the crime of sale of children into the Penal Code ", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Take measures, together with her international partners, to increase shelter capacity for asylum-seekers and unaccompanied children", - "values": [ - "4 - General action" - ] - }, - { - "text": "Continue efforts to spread the culture of human rights through educational curriculums and the media", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Continue its combat against terrorism to restore security and stability to the Syrian Arab Republic and pave the way for the return of displaced persons to their homes", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Continue efforts to further improve prison conditions and share relevant best practices with the Human Rights Council ", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Ensure that the implementation of all articles of the Penal Code and other laws be in conformity with the international standards on the right to freedom of expression ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Investigate allegations of international humanitarian law and human rights violations by armed and security forces in a prompt, transparent and impartial manner and ensure that perpetrators of violations are brought to justice ", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Improve access to public services for people with a disability, particularly educational and postal services", - "values": [ - "4 - General action" - ] - }, - { - "text": "Redouble its efforts to ensure effective control in the fight against the sale and trafficking of children, including by raising awareness and by providing agents at the border with the necessary tools to identify victims and vulnerable populations so as to combat trafficking effectively", - "values": [ - "4 - General action" - ] - }, - { - "text": "Continue to promote sustainable economic and social development, eradicate poverty and improve people\u2019s living standards", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Consider the abolition of the death penalty in its legislation, and proceed to the ratification of the Second Optional Protocol to the International Covenant on Civil and Political Rights", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Amend its anti-discrimination law in order to ensure that discrimination on any grounds is prohibited in all areas of life", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Continue its efforts to enhance the rule of law and ensure peace and safety in its society ", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Finalise the citizenship verification process of persons lacking identity documents or holding a "turquoise" card and the establishment of a transparent process to legalise the residence status of those who do not meet Myanmar's citizenship criteria", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Maintain its ODA contributions up to the internationally-agreed level of 0.7 per cent", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Strengthen its measures to ensure effective investigations into all allegations of torture and ill-treatment committed by law enforcement officials ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Continue to strengthen its efforts to ensure that all police and security officers receive human rights training.", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Maintain its commitment in trying to meet human rights challenges it is facing and to ensure that the human rights of its citizens are fully protected.", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "In compliance with international human rights law, amend, adopt and effectively implement legislation to eliminate all forms of discrimination and criminalize all forms of violence against women and girls, ensure that all cases of sexual violence and harassment faced by women protesters and human rights defenders must be promptly investigated and the perpetrators brought to justice", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Continue its efforts to promote access to health services, including in local communities", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Keep ensuring women's access to justice and improving support services", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Amend the press provisions of the Penal Code to state explicitly that journalists should not be imprisoned or otherwise criminally punished solely for exercising their right to free expression", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Continue efforts to eliminate discrimination against women to allow for equal access to the labour market", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Bring the provisions of its domestic laws into compliance with the international obligations laid down in the human rights instruments it has ratified", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Sign and ratify the Convention on the Elimination of All Forms of Discrimination against Women", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Implement the recommendation of the Committee on the Rights of the Child to improve support for street children, in particular shelter, nutrition, health care and educational opportunities", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Guarantee free access to the media.", - "values": [ - "4 - General action" - ] - }, - { - "text": "Continue to provide humanitarian and development assistance to poor countries to help these countries to bear the humanitarian burden and to promote human rights", - "values": [ - "4 - General action" - ] - }, - { - "text": "Ensure judicial independence and diversity in judicial appointments", - "values": [ - "4 - General action" - ] - }, - { - "text": "Continue to pursue measures designed to reduce the number of children who are not enrolled in school", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Take measures to prevent violence and discrimination against persons on the basis of their sexual orientation and gender identity", - "values": [ - "4 - General action" - ] - }, - { - "text": "Improve transparency and due process in the criminal justice system by ensuring fair and public hearings within a reasonable timeframe, ensuring anyone arrested is promptly informed of the reasons for arrest and ensuring that defendants have access to effective representation by their defence counsel, functioning fairly and without undue constraint ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Continue its efforts to reach quickly the international target of 0.7 per cent ODA", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Establish an independent and specialized institution to investigate any allegations of human rights violations", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Examine the allegations of intimidating independent media by State institutions and ensure that appointments of members of the Broadcasting Council are made with an emphasis on the impartiality and professionalism of the candidates", - "values": [ - "3 - Considering action" - ] - }, - { - "text": "Improve the health-care system and specifically provide further measures on infrastructure and resources to maternal health, including midwife training, with a focus on health care for mothers and babies through pregnancy and childbirth", - "values": [ - "4 - General action" - ] - }, - { - "text": "Work to continue its ongoing efforts in the media sector to develop the capacities of professional associations in this field", - "values": [ - "4 - General action" - ] - }, - { - "text": "Commit to ensuring the full and impartial investigation of complaints of many of those arrested in the aftermath of the June 2010 violence", - "values": [ - "4 - General action" - ] - }, - { - "text": "Ratify without delay the Convention on the Rights of Persons with Disabilities and the Convention on the Elimination of All forms of Discrimination against Women in accordance with its previously expressed commitment", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Continue the good cooperation with the Office of the United Nations High Commissioner for Human Rights at country level, which has generated concrete results, including the development of new jurisprudence in the field of human rights", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Transform the de facto moratorium on the application of the death penalty into an abolition in law. ", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Continue to effectively implement the relevant legislation to counter discrimination and hate crimes based on ethnicity and religion", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Accelerate the process towards establishing a national human rights institution in accordance with relevant international standards", - "values": [ - "4 - General action" - ] - }, - { - "text": "Follow up on the legal framework for gender equality and domestic violence, including its application to law enforcement and judicial authorities handling cases of domestic violence, by taking more effective measures for its enforcement and increasing public awareness about the law in smaller towns and rural areas ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Strengthen ongoing programmes aimed at the achievement of universal secondary education", - "values": [ - "4 - General action" - ] - }, - { - "text": "Expedite the process of enacting the moratorium on executions", - "values": [ - "4 - General action" - ] - }, - { - "text": "Continue its educational reform towards comprehensive and inclusive education policies, with a particular focus on vulnerable groups, including children", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Continue to increase and consolidate social programmes aimed at combating poverty and social exclusion", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Continue to focus and work on the promotion and protection of women's rights in all fields", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Pursue and deploy in the whole territory the programmes and projects for the development of rural infrastructure, in particular those aimed at guaranteeing access to drinking water ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Consolidate its reconciliation efforts to ensure that durable peace prevails in the country", - "values": [ - "4 - General action" - ] - }, - { - "text": "Enact anti-discrimination laws which would better protect the rights of indigenous communities", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Facilitate training for members of the law enforcement agencies to effectively combat all forms of violence and sexual exploitation of children. ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Continue to put in place effective national policies to alleviate poverty and unemployment ", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Take further steps to eliminate discrimination against women", - "values": [ - "4 - General action" - ] - }, - { - "text": "Strengthen the public authorities in charge of protecting women and children, through adequate financial resources, and further strengthen the awareness-raising campaigns on the prohibition of female genital mutilation and the trokosi practice, which is a ritual form of servitude", - "values": [ - "4 - General action" - ] - }, - { - "text": "Adopt further measures to fight discrimination and promote, including through awareness-raising campaigns, the realization of human rights by all persons belonging to minorities, including foreigners, refugees, persons with disabilities and persons of minority sexual orientation or gender identity.", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Modify the administrative provisions on immigration to protect the victims of trafficking of persons and integrate the prevention of trafficking in persons into the policies for asylum seekers", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Improve prison conditions in the country, focusing particularly on the medical care and nutrition of inmates", - "values": [ - "4 - General action" - ] - }, - { - "text": "Conduct an independent and impartial inquiry into all enforced disappearances and extrajudicial killings so that the perpetrators of these crimes are brought to justice", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Continue efforts towards the establishment of an independent national human rights institution in full accordance with the Paris Principles", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Continue to expand the legal framework for the promotion and protection of human rights, including through the ratification of CAT, CRPD, and CED ", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Ratify the United Nations Protocol to Prevent, Suppress and Punish Trafficking in Persons, Especially Women and Children ", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Establish a moratorium with a view to abolishing the death penalty and ratifying the Second Optional Protocol of ICCPR", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Take all necessary measures to ensure the elimination of violence and discrimination against women and take steps to ensure the full incorporation of the Convention on the Elimination of All Forms of Discrimination against Women into its legal system", - "values": [ - "4 - General action" - ] - }, - { - "text": "Expedite implementation of the reform of the judicial system and intensify within the system a culture of systematic respect of human rights ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Take all necessary measures to guarantee that LGBT individuals do not face persecution based on sexual orientation or gender identity, including by decriminalizing same-sex practices in the country", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Provide effective legal protection and fair compensation in case of violation of rights linked to acts of racial discrimination", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Continue efforts to eliminate discrimination against women and establish full gender equality, especially in the labour market and at the salary level", - "values": [ - "4 - General action" - ] - }, - { - "text": "Take all necessary measures for effective application of the 2009 law on the elimination of violence against women ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Amend the Penal Code to implement the guarantees of freedom of thought, of the press and of publication enshrined in the 2014 Constitution", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Do all that is necessary to accelerate the drawing up of the various legal texts to reaffirm and reinforce the equality between all ethnic, cultural and linguistic components of Nepali society ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Amend the Penal Code to decriminalize homosexual activity between consenting adults. ", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Bring into line with international best practices the methods of combating the use of illegal drugs in the Philippines, namely in terms of prevention and alternative sanctions", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "End the use of attitude adjustment sessions and the establishment of training camps", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Continue cooperation with the United Nations human rights mechanisms ", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Respond positively to requests of visits made by United Nations special procedures and to consider issuing a standing invitation to them", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "(1) To improve guarantees of the exercise of their rights. (2) To remain in communication with them. (3) To act on its commitments in the case of the tripartite agreement with ILO (4) To encourage investigations of crimes against these groups. (5) To foster a culture in which it is easier for human rights defenders, reporters and trade unionists to operate.", - "values": [ - "4 - General action" - ] - }, - { - "text": "Take more steps in the fight against HIV/AIDS by carrying out sensitization programmes and also learning from the best practices available in this area", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Refrain from adopting any laws providing for censorship or undue control over the content of the media ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Investigate, punish and redress crimes of enforced disappearance, regardless of the time of their occurrence, in the light of the continuous nature of the crime and in accordance with its international obligations ", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Create a system of juvenile justice that includes the establishment of a children's ombudsman ", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Free without delay all persons detained for political reasons ", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Improve its cooperation with treaty bodies", - "values": [ - "4 - General action" - ] - }, - { - "text": "Strengthen its development policies in rural areas, with special emphasis on the access of children and persons with disabilities to services ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Continue its efforts to enhance its legal and institutional arsenal considered as fundamental for the promotion and protection of human rights", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Ratify the Convention on the Rights of Persons with Disabilities.", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Continue to honour its commitment to development aid to help developing countries better achieve the right to development", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Consider the extension of an open and standing invitation to the United Nations special procedures ", - "values": [ - "3 - Considering action" - ] - }, - { - "text": "Adopt a national gender policy and enhance the capacity for gender analysis with government ministries, departments and agencies that coordinate policy development", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Consider the ratification of the 1961 Convention on the Reduction of Statelessness", - "values": [ - "3 - Considering action" - ] - }, - { - "text": "Continue its efforts to sign and ratify the Optional Protocol to the Convention on the Rights of Children", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Put in place institutional guarantees to ensure that its human rights commitments are protected against popular initiatives that may violate these commitments", - "values": [ - "4 - General action" - ] - }, - { - "text": "Amend the Child Marriage Restraint Act to include an equal minimum age of marriage of 18 years for all individuals", - "values": [ - "4 - General action" - ] - }, - { - "text": "Effectively strengthen its human rights institutional framework and further promote concrete programmes to raise awareness of human rights.", - "values": [ - "4 - General action" - ] - }, - { - "text": "Continue promoting human rights education and training at all educational levels ", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Bring, in the context of a constitutional review, the Public Order Act governing public assemblies in line with the principles of the Constitution ", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Continue working on the elaboration of its national human rights policy for its prompt implementation and take into account the constructive contributions arising from this review in the aforementioned policy", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Repeal Penal Code provisions that criminalize sexual relations between consenting adults of the same sex", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Study the possibility of consolidating the national health system, including through public-private partnerships", - "values": [ - "3 - Considering action" - ] - }, - { - "text": "Cooperate actively with international mechanisms in order to implement human rights at all levels of society. ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Accelerate efforts under the Food and Nutrition Security Policy, aimed at reducing hunger by increasing access to affordable, nutritious, safe and quality food", - "values": [ - "4 - General action" - ] - }, - { - "text": "Raise the level of public awareness in relation to child sex tourism, as recommended by the Committee on the Rights of the Child", - "values": [ - "4 - General action" - ] - }, - { - "text": "Strengthen the independence, pluralism and resources of the National Human Rights Commission", - "values": [ - "4 - General action" - ] - }, - { - "text": "Agree on the dates for the visit of eight special mandate holders invited by the Government ", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Raise the minimum age for employment from 14 to 16, so that it conforms with the age of completion of compulsory education ", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Extend an open invitation to the United Nations special procedures ", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Consider establishing a mechanism to monitor the conditions of execution of the sentence of the convicted prisoners deprived of their liberty in France ", - "values": [ - "3 - Considering action" - ] - }, - { - "text": "Ratify CAT without delay ", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Implement measures to reduce the high drop-out rate among girls from schools, ensuring free primary education", - "values": [ - "4 - General action" - ] - }, - { - "text": "Consider taking steps to establish an independent police complaints mechanism with the aim to investigate all allegations of serious human rights violations by law enforcement officials ", - "values": [ - "3 - Considering action" - ] - }, - { - "text": "Redouble efforts to further reduce the income gap between the Afro-Brazilians, especially Afro-Brazilian women, and the general population", - "values": [ - "4 - General action" - ] - }, - { - "text": "Review its body of legislation prohibiting discrimination on any grounds, and in this regard, expressly prohibit discrimination due to disability, age, religious belief, sexual orientation or gender identity", - "values": [ - "3 - Considering action" - ] - }, - { - "text": "Bring domestic legislation into conformity with CEDAW", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "To keep on exerting efforts to protect and promote human rights", - "values": [ - "4 - General action" - ] - }, - { - "text": "Submit the reports due according to CRC", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Take immediate measures to end the systematic, widespread and gross human rights violations described in the report of the COI - including violations of the freedoms of thought, expression and religion, multiple forms of discrimination, violations of the freedom of movement and residence, violations of the right to food, arbitrary detention, torture and executions, and abductions and enforced disappearances from other countries", - "values": [ - "4 - General action" - ] - }, - { - "text": "Bahrain is currently examining the idea of drafting a national action plan on human rights education as soon as possible, in conjunction with relevant entities and organizations in Bahrain, and with expert input from the Office of the United Nations High Commissioner for Human Rights", - "values": [ - "3 - Considering action" - ] - }, - { - "text": "Enact a new water law as soon as possible giving effect to the right to water, as recommended by the Independent Expert on the issue of human rights obligations relating to the enjoyment of a safe, clean, healthy and sustainable environment and the Independent Expert on the issue of human rights obligations related to access to safe drinking water and sanitation", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Ensure that civil society activists and journalists are able to carry out their work free from harassment or violence", - "values": [ - "4 - General action" - ] - }, - { - "text": "Consider the ratification of the Optional Protocol to the Convention against Torture and Other Cruel, Inhuman or Degrading Treatment or Punishment ", - "values": [ - "3 - Considering action" - ] - }, - { - "text": "Extend standing invitations to all human rights special procedures", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Adopt the additional necessary measures to guarantee the full enjoyment of human rights of vulnerable groups subjected to discrimination, such as lesbian, gay, bisexual, transgender and intersex people, including investigation and punishment of cases of discrimination and the repeal of laws that criminalize and stigmatize", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Impose a moratorium on executions with a view to abolishing the death penalty nationwide ", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Ensure that members of the rebel forces who have been convicted of human rights violations do not integrate regular security services", - "values": [ - "4 - General action" - ] - }, - { - "text": "Take further effective measures to end impunity in cases of violence and torture committed by security forces ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Establish a moratorium to the death penalty and, sign and ratify the Second Optional Protocol to ICCPR", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Fully protect the legitimate rights and interests of ethnic minorities, women, children, the elderly and disabled persons", - "values": [ - "4 - General action" - ] - }, - { - "text": "Take the necessary action to publish the report of the Subcommittee on Prevention of Torture and Other Cruel, Inhuman or Degrading Treatment or Punishment in order to assist a dialogue on the implementation of the Subcommittee\u2019s recommendations", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Ratify all the different conventions and protocols relating to human rights to ensure their enjoyment by its citizens", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Establish effective regulatory mechanisms for promoting development of legal migration and preventing irregular migration and trafficking in human beings", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Establish a procedure for determining the best interest of the children during all asylum and refugee processes ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Strengthen measures to protect and provide assistance to victims of trafficking in persons, with special emphasis on children victims", - "values": [ - "4 - General action" - ] - }, - { - "text": "Fight effectively against all forms of discrimination against women, older people and people with albinism", - "values": [ - "4 - General action" - ] - }, - { - "text": "Consider extending a standing invitation to all the special procedures of the Human Rights Council", - "values": [ - "3 - Considering action" - ] - }, - { - "text": "Accede to the ILO Convention No. 182 concerning the Prohibition and Immediate Action for the Elimination of the Worst Forms of Child Labour, ratify the Statute of the International Criminal Court and the Convention against Torture and Other Cruel, Inhuman or Degrading Treatment or Punishment and its Optional Protocol, the International Convention on the Protection of the Rights of All Migrant Workers and Members of Their Families, and the ILO Convention No. 189 concerning Decent Work for Domestic Workers ", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Strengthen the implementation of poverty eradication strategies ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Repeal or amend all laws that restrict the freedoms of expression, association or assembly, including decree No. 31 of 2013, Law No. 34 of 2014, and Law No. 26 of 2015", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Implement a sanitation programme in order to eradicate poliomyelitis and tuberculosis which remain public health problems", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Prevent commercial sexual exploitation of children and ensure additional protective measures for all victims of trafficking ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Ratify the Rome Statute of the International Criminal Court and fully align its legislation with all obligations under the Rome Statute, including incorporating the definition of crimes and general principles of the Statute, as well as adopting provisions enabling cooperation with the Court ", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Bring its action in line with the assistance provided by the Council, the Secretary-General of the United Nations and the High Commissioner for Human Rights, so as to cease the violent repression, initiate an open national dialogue which is inclusive and transparent, and initiate a reliable and transparent investigation into the violent repression, which has resulted in a high number of injured and dead protestors", - "values": [ - "4 - General action" - ] - }, - { - "text": "Continue its efforts to meet the development challenges in such areas as vocational training, improving natural disaster management and protection of vulnerable groups, achieve sustainable development and enhance the State's capacities to protect rights and fundamental freedoms of all Vietnamese citizens. share the five lessons included in its national report with developing countries", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Take concrete steps to harmonize its national legislation with the Convention on the Rights of Persons with Disabilities and to ratify its Optional Protocol", - "values": [ - "4 - General action" - ] - }, - { - "text": "Rapidly adopt and implement the two draft bills recently tabled in the National Assembly to ensure the rights of transgender persons", - "values": [ - "4 - General action" - ] - }, - { - "text": "Improve detention conditions", - "values": [ - "4 - General action" - ] - }, - { - "text": "Consider ratification of the Optional Protocol to the Convention on the Elimination of All Forms of Discrimination against Women and the Optional Protocol to the Convention against Torture and Other Cruel, Inhuman or Degrading Treatment or Punishment", - "values": [ - "3 - Considering action" - ] - }, - { - "text": "Take measures to ensure the availability of adequate facilities for refugee children, including access to legal counsel, medical care and education ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Promote implementation of the Fourth National Plan on Empowerment of Persons with Disabilities 2012-2016", - "values": [ - "4 - General action" - ] - }, - { - "text": "Develop a comprehensive Women Rights Plan, aimed at eliminating discriminatory practices, as is reflected in CEDAW's report of February 2012 ", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Consider the possibility of ratifying the International Convention for the Protection of All Persons from Enforced Disappearance and of accepting the jurisdiction of the competent committee", - "values": [ - "3 - Considering action" - ] - }, - { - "text": "Continue to intensify development aid programmes with the objective of reaching 0.7 per cent of GDP as established by the United Nations", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Address the legal gaps in national legislation on human trafficking and ensure that cases of trafficking are investigated effectively at the earliest possible date with a view to bringing to justice those responsible, and ensure that victims benefit from full reparation ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Ratify the International Convention for the Protection of All Persons from Enforced Disappearance without reservations and incorporate it into domestic law", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Continue judicial reform, including through the implementation of framework programme for judicial reform 2012-2016, as well as the creation of the Judges and Magistrates Vetting Board, and by reforming the police and penitentiary system", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Introduce an effective plan focusing on the human rights of persons deprived of their liberty, especially children living in prison with their parents, who were deprived of liberty", - "values": [ - "4 - General action" - ] - }, - { - "text": "Ratify the Optional Protocols of the Convention of the Rights of the Child, raise the age of criminal responsibility to 18 years, ensure the adequate separation of children and adults in penitentiaries and jails, and ensure due legal representation for children and persons under 18 years of age within the judicial system", - "values": [ - "4 - General action" - ] - }, - { - "text": "Guarantee in all circumstances the independence of the media and take the necessary measures in order that domestic legislation on the offense against honour and defamation does not undermine the freedom of expression", - "values": [ - "4 - General action" - ] - }, - { - "text": "Take the steps necessary to formalize the moratorium on death penalty with a view to subsequently abolish the death penalty and adhere to the resolutions of the General Assembly in this regard.", - "values": [ - "4 - General action" - ] - }, - { - "text": "Undertake necessary steps in order to harmonize the Dutch law and practice with the European Convention on the Legal Status of Migrant Workers ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Step up measures to fight violence against children, particularly through the implementation of the prohibition of all corporal punishment in all settings, including within the family, in alternative care settings and schools, as set out in the draft children's code", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Continue to promote education and human rights training at the national level ", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Take the necessary measures to ban the practice of corporal punishment within the family.", - "values": [ - "4 - General action" - ] - }, - { - "text": "Enhance its efforts on the promotion and protection of the rights of persons with disabilities in line with its Strategy for Integration 2008-2016", - "values": [ - "4 - General action" - ] - }, - { - "text": "Treat migrant children in detention with due respect to human rights and work with neighbouring countries to address migrant smuggling challenges in order to end human trafficking", - "values": [ - "4 - General action" - ] - }, - { - "text": "Prevent all cases of torture and ill-treatment by police, law enforcement officials and in places of detention and ensure effective, independent and impartial investigations in all cases ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Provide effective access to legal assistance and measures of protection for all victims of gender violence, including migrants with irregular migration status ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Pursue its active participation in the international cooperation efforts to fight the trafficking against human beings ", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Recommended establishing a moratorium on executions and seriously consider abolition of the death penalty.", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Adopt and implement anti-trafficking legislation", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Endeavour to establish a national human rights institution in line with the Paris Principles", - "values": [ - "4 - General action" - ] - }, - { - "text": "Establish a monitoring mechanism to prevent abuse, guarantee decent working conditions and wage payments", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Investigate the Central Intelligence Agency torture crimes, which stirred up indignation and denunciation among people, to disclose all information and to allow investigation by international community in this regard", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Increase public awareness of human rights", - "values": [ - "4 - General action" - ] - }, - { - "text": "Issue an immediate moratorium on the use of the death penalty for juveniles and for crimes that do not meet the most serious crimes standards under international law", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Ratify the International Covenant on Civil and Political Rights and its two Optional Protocols", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Ratify ILO Convention 169 concerning Indigenous and Tribal Peoples in Independent Countries", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Take concrete measures in order to combat impunity and to prevent extrajudicial killings and torture", - "values": [ - "4 - General action" - ] - }, - { - "text": "Continue enhancing and promoting human rights through expanding and broadening human rights education and awareness-raising programmes in the country ", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Continue its efforts for the establishment of the national human rights institution", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Continue efforts in establishing stability in the country and in this regard to resume building state institutions", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Increase the efforts to promote adolescent health, particularly with respect to reproductive health in order to combat teenage pregnancy ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Strengthen the measures to prevent and combat femicide and other forms of gender-based violence", - "values": [ - "4 - General action" - ] - }, - { - "text": "Raise the age of criminal responsibility", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Fast-track the process to sign and ratify international treaties related to the Convention on the Elimination of All Forms of Discrimination against Women", - "values": [ - "4 - General action" - ] - }, - { - "text": "Ratify Optional Protocols 1 and 2 to ICCPR ", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Continue to work in the field of human rights worldwide ", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Guarantee the fundamental rights of all the country's inhabitants without discrimination and reform the Citizenship Act accordingly ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Guarantee the implementation and the effectiveness of the Children\u2019s Code, particularly making accessible the relevant public services and providing the necessary human and financial resources", - "values": [ - "4 - General action" - ] - }, - { - "text": "Prepare and regularly submit periodic reports concerning international conventions, to which Jamaica is a party", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Call on the international community to increase its support to allow the implementation of noble objectives Nigeria has set regarding human rights", - "values": [ - "1 - Minimal action" - ] - }, - { - "text": "Continue to implement preventive and legal measures to put a halt to ritual infanticide", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Ratify the main human rights treaties and investigate the possibility of the establishment of a national human rights institute, if necessary with assistance from the UN and UN member states ", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Encourage openness and transparency in the functioning of the public bodies ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Expedite action on the bill currently under consideration aimed at promoting and protecting the rights of persons with disabilities", - "values": [ - "4 - General action" - ] - }, - { - "text": "Give the female population the opportunity to achieve high-level positions with important decision-making levels ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Continue and strengthen social dialogue to support further enjoyment of economic social and cultural rights by large segments of the Georgian population ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Pursue its efforts aimed at improving the living conditions of persons with disabilities", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Ensure the prompt, impartial and effective investigation into persisting acts of harassment and persecution against human rights defenders", - "values": [ - "4 - General action" - ] - }, - { - "text": "Accede to the Optional Protocol to the Convention against Torture (OPCAT)", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Actively seek to address concerns on the use of administrative detention, to review it, and ensure that current detainees have access to legal representation and to the courts", - "values": [ - "4 - General action" - ] - }, - { - "text": "Take steps to address pay gaps between men and women and other forms of discrimination against women ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Consider prioritizing acquiescence to the Convention of the Rights of the Child, CEDAW, the ILO Convention No. 111 on Discrimination in Respect of Employment and Occupation so as to further strengthen its national framework for human rights, but also to assist in achieving their universality", - "values": [ - "3 - Considering action" - ] - }, - { - "text": "Continue efforts for the effective implementation of legislative policies and educational measures aimed at eradicating discrimination in all its forms", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Address the recommendations from treaty bodies to which it is a State Party", - "values": [ - "4 - General action" - ] - }, - { - "text": "Protect the rights of minorities, in particular by providing access to basic services for the Roma minority, including the ability for stateless Roma to obtain Croatian nationality, in accordance with its human rights obligations", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Enact the law that enables the prosecution of suspected perpetrators of domestic and sexual violence", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Prepare and intensify appropriate legislative measures to address questions relating to sexual abuse and sexual exploitation and child prostitution ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Enhance cooperation with the special procedures by encouraging visits by the working groups and special rapporteurs", - "values": [ - "4 - General action" - ] - }, - { - "text": "Ensure that the envisaged law protecting domestic workers will be adopted as soon as possible", - "values": [ - "4 - General action" - ] - }, - { - "text": "Extend for all access to the rights to healthcare, social security, and minimum wage without ethnic distinction or linguistic barriers", - "values": [ - "4 - General action" - ] - }, - { - "text": "Redouble efforts to promote the status of women", - "values": [ - "4 - General action" - ] - }, - { - "text": "Make the necessary legislative changes, including restricting the scope of the Public Order Act, to ensure the fullest possible freedoms of association and expression, and to ensure the police enforce these and other laws in a proportionate manner, including in Western Province", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Accelerate the drafting process of a bill on domestic violence and take appropriate measures in order to effectively prevent gender discrimination ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Ratify the human rights instruments to which it is not yet party, in particular the International Convention on the Protection of the Rights of All Migrant Workers and Members of Their Families", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Further enhance human rights education", - "values": [ - "4 - General action" - ] - }, - { - "text": "Continue with the policies of inclusion of the Roma population", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Allocate adequate resources to implement the legislative and administrative measures taken in order to prevent violence against women and children, including domestic violence, and provide victims with prompt and full support ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Continue to engage in a national dialogue with a view to promoting respect for diversity and tolerance.", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Institute comprehensive reporting and statistical analysis of the scale and character of violence against indigenous women, so that a national strategy can be initiated, in consultation with indigenous representatives, to respond to the severity of the issues", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Amend the Criminal Code to ensure that rape is defined according to the recommendations of the Committee on the Elimination of Discrimination against Women ", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Consider setting as its standards of protection for the rights of migrant workers those enshrined in the ICRMW and ILO Convention 189 on Decent Work for Domestic Workers ", - "values": [ - "3 - Considering action" - ] - }, - { - "text": "Take policies and legal measures to ensure equality between men and women ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Continue with encouraging the private business sector to continue undertaking relevant measures to employ persons with disabilities, in accordance with the domestic law provisions", - "values": [ - "4 - General action" - ] - }, - { - "text": "Ratify ICCPR-OP-2 and provide for the de jure abolition of the death penalty", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Take comprehensive measures to improve the level of public security in the country and to combat terrorism and extremism", - "values": [ - "4 - General action" - ] - }, - { - "text": "Undertake appropriate electoral and legislative reforms to enhance the scope for political representation of the indigenous people, particularly women. ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Continue implementing its national youth development programme as one of the means to alleviate poverty in the country", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Continue to carry out the policy aimed at improving the judicial system, reforming law enforcement bodies and decreasing the level of crime and corruption", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Enhance technical cooperation with OHCHR", - "values": [ - "4 - General action" - ] - }, - { - "text": "Approve the new Law on Childhood and include the prohibition of corporal punishment in all settings", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Implement the recommendations of the 2013 election observation missions and ensure that elections in 2015 and beyond, are free and fair and preceded by inclusive and free campaigning", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Fully implement accepted recommendations from the first universal periodic review concerning the ratification of the International Covenant on Civil and Political Rights and its Optional Protocols, the International Covenant on Economic, Social and Cultural Rights and its Optional Protocol, as well as the accession to their inquiry and inter-State complaints procedures, and the Convention on the Rights of Persons with Disabilities", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Adopt measures to prevent and eliminate the excessive use of force, such as summary executions on the part of the security forces, and ensure that the perpetrators are brought to justice", - "values": [ - "4 - General action" - ] - }, - { - "text": "Continue the programme aimed at modernizing its judicial system with the assistance of international bodies and to take measures to improve access to justice for all segments of the population", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Make a serious review of the compatibility of the 2010 National Security Act with international standards in international human rights instruments to which Sudan is a party ", - "values": [ - "3 - Considering action" - ] - }, - { - "text": "Improve the policies for the protection of the rights of children, and guarantee due access to justice for child victims of violence ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Adopt further national strategies for eradication of poverty and improvement of livelihoods for citizens ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Accept, ratify or accede, as appropriate, to the Convention against Torture", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Reform the Native Title Act 1993, amending strict requirements which can prevent the Aboriginal and Torres Strait Islander peoples from exercising the right to access and control their traditional lands and take part in cultural life ", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Consider a moratorium on the death penalty with a view to its eventual abolition ", - "values": [ - "3 - Considering action" - ] - }, - { - "text": "Give due consideration to human rights, particularly those of children and persons with disabilities, and continue to make efforts to ensure transparency in all procedures related to its treatment of immigrants and refugees", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Adopt measures to reduce the number of children without birth registration", - "values": [ - "4 - General action" - ] - }, - { - "text": "Take measures to combat de facto and de jure discrimination towards irregular migrants ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Adopt the Framework Law on disability which will incorporate the Convention on the Rights of Persons with Disabilities", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Ratify the International Convention on the Elimination of All Forms of Racial Discrimination and the International Covenant on Economic, Social and Cultural Rights", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Redouble its efforts in combating stereotypes on the role of women through facilitating the participation of women in political and public affairs and sensitizing its population on women's rights", - "values": [ - "4 - General action" - ] - }, - { - "text": "Abolish the death penalty in the new Constitution and pending the abolition of the death penalty, establish an official moratorium on the use of the death penalty", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Continue to implement policies aimed at enhancing social protection and reducing inequality, and develop infrastructure that provides more targeted social assistance, particularly to those living in rural areas", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Take the necessary measures so that all allegations of human rights violations are duly investigated and that the perpetrators are brought to justice ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Ensure that there is no difference between the acceptable age of marriage for girls and boys in all its territories and that young girls are not subjected to early marriage", - "values": [ - "4 - General action" - ] - }, - { - "text": "Strengthen the legislative provisions concerning on equality", - "values": [ - "4 - General action" - ] - }, - { - "text": "Comply with international standards on arbitrary detention, in particular establishing forms of non-custodial sentences, such as community work, and separating strictly minors from adult detainees at detentions centres, which should lead to specific detention centres for minors and their reintegration into society ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Guarantee that administrative detention of undocumented migrants is used only as an exceptional measure for the shortest possible period of time, and avoid criminalization of the irregular entry or stay of such persons in its territory ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Continue efforts to fight discrimination against women, aiming to change deep-rooted behaviours and attitudes.", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Cooperate with the Office of OHCHR in Mauritania and with civil society to conduct a study on nature, incidence and consequences of slavery, and ensure a systematic collection of disaggregated data to measure the progress realised in the application of laws and policies aimed at the eradication of slave-like and discriminatory practices", - "values": [ - "4 - General action" - ] - }, - { - "text": "Continue social and economic reforms in order to create new jobs", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Take necessary steps to improve expertise of Brunei Darussalam's obligations in ensuring effective implementation of human rights instruments to which it is a party", - "values": [ - "4 - General action" - ] - }, - { - "text": "Continue to enhance its engagement with its regional and international partners to facilitate building of capacities in countering domestic and gender-based violence and human trafficking, especially of women and children ", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Adopt a victim-centred comprehensive national framework against trafficking in persons, especially women and girls", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Conduct effective investigation and where appropriate, bring to justice persons or groups of individuals who incite intolerance and spread racist, xenophobic and anti-Semitic speech", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Adopt appropriate measures for the protection of women ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Conduct a national independent investigation into cases of violence and degrading treatment of persons with disabilities and persons suffering from mental illness in institutions and homes for the disabled", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Strengthen national coordination mechanisms and develop a comprehensive national human rights action plan, as recommended by the United Nations Secretary General in 2015, before Tajikistan's next Universal Periodic Review", - "values": [ - "4 - General action" - ] - }, - { - "text": "Strengthen its efforts to combat racist attacks committed by law enforcement personnel, particularly against the Roma, by among others, providing special training to law enforcement personnel aimed at promoting respect for human rights and tolerance for diversity ", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Implement recommendations from the Committee against Torture", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Expand the power of the Public Defender of Rights to enable it to comply with the principles of national human rights institutions according to the Paris Principles", - "values": [ - "4 - General action" - ] - }, - { - "text": "Consider ratifying the human rights treaties it has not yet ratified", - "values": [ - "3 - Considering action" - ] - }, - { - "text": "Study the possibility of developing a national environmental charter or a similar instrument to define the role and responsibilities of, as well as the coordination of action by, all relevant parties, including civil society ", - "values": [ - "3 - Considering action" - ] - }, - { - "text": "Redouble efforts to effectively end the practice of female genital mutilation, in line with recommendations by the Committee on the Rights of the Child", - "values": [ - "4 - General action" - ] - }, - { - "text": "Strengthen its legislation, in particular the Penal Code, in order to harmonize its provisions with the International Convention on the Elimination of All Forms of Racial Discrimination", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Continue its efforts for the promotion and protection of gender equality", - "values": [ - "4 - General action" - ] - }, - { - "text": "Consider ratifying ICRMW as well as ILO Convention no.189 on decent work of domestic workers ", - "values": [ - "3 - Considering action" - ] - }, - { - "text": "Ratify and implement the Convention against Torture and Other Cruel, Inhuman or Degrading Treatment or Punishment as previously recommended", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Consolidate poverty reduction programmes, as Panama is on track to meet Millennium Development Goal 1, related to extreme poverty", - "values": [ - "4 - General action" - ] - }, - { - "text": "Ensure the protection of the minors, including through adopting juvenile justice system and increasing the age of criminal responsibility for children ", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Respond favourably to the requests of the Special Rapporteur on trafficking in persons, especially women and children, to visit the country ", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "End the practice of revocation of citizenship, adopt legal and institutional safeguards to prevent discrimination against members of religious minorities and provide effective remedy for victims of arbitrary arrest, detention, summons or travel bans", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Establish an independent committee responsible for appointing judges", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Ratify the remaining core international human rights treaties, in particular the International Convention on the Elimination of All Forms of Racial Discrimination and its Optional Protocol, the International Covenant on Civil and Political Rights and its Optional Protocols, the Convention against Torture and its Optional Protocol and the Convention on the Rights of Persons with Disabilities", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Continue efforts to protect the rights of vulnerable groups of the population, and in particular, in materializing the planned draft legislation regarding children and persons with disabilities ", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Strengthen cooperation with the treaty bodies by being up to date with the submission of its national reports", - "values": [ - "4 - General action" - ] - }, - { - "text": "Take further measures for the sustainable development of the Roma community with a focus on their integration into mainstream society ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Establish swiftly a robust national preventive mechanism in accordance with the Optional Protocol to the Convention against Torture", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Strengthen gender equality policies with a view to narrowing the gender gap in all areas of society ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Work with the development partners to facilitate the implementation of the National Human Rights Action Plan", - "values": [ - "4 - General action" - ] - }, - { - "text": "Increase investments in its health system to ensure universal access to essential and affordable health services", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Reconsider their reservations to ICCPR and CRC ", - "values": [ - "3 - Considering action" - ] - }, - { - "text": "Enforce the principle of equality before the law with regard to immigrants living in Liechtenstein on the same footing as to its citizens ", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Complete promptly the establishment of the office of the undersecretary for human rights and the elaboration of a national plan on human rights ", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Strengthen its efforts to combat hunger and poverty in the country", - "values": [ - "4 - General action" - ] - }, - { - "text": "Issue clear directives to all health officials prohibiting the sterilization of women living with HIV/AIDS without their informed consent ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Lastly, the recommendations arising from our country's participation in the universal periodic review mechanism will be given proper attention by all responsible institutions and will be widely disseminated. They will be implemented as quickly and thoroughly as possible.", - "values": [ - "3 - Considering action" - ] - }, - { - "text": "Continue implementation of the National Strategy for Poverty Eradication", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Continue investments toward the achievement of economic, social and cultural rights", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Enact legislation to ensure accountability on human rights violations and environmental damages resulting from global operations of United Kingdom companies", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Set up programs and plans to enhance training and raise awareness among the workers in the area of combating human trafficking", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Establish a National Prevention Mechanism in accordance with the Optional Protocol to the Convention against Torture", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Legislative measures be adopted to decriminalize consensual sexual relations between adults of the same sex including a provision on the prohibition of discrimination on the basis of sexual orientation or on gender identity", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Continue the ongoing efforts to combat human trafficking and strengthen measures to protect victims of trafficking", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Review its Criminal Code to enhance punishment to combat racially motivated crimes", - "values": [ - "3 - Considering action" - ] - }, - { - "text": "Continue the efforts made to ratify the convention on the Optional Protocol to the Convention on the Rights of Persons with Disabilities", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Systematically and continuously integrate a gender perspective in the follow-up process to the Universal Periodic Review.", - "values": [ - "4 - General action" - ] - }, - { - "text": "Further strengthening, as to its funding and independence, of the national preventive mechanism under the Optional Protocol to the Convention against Torture (OP-CAT) so that it can function effectively and impartially", - "values": [ - "4 - General action" - ] - }, - { - "text": "Cooperate with international and regional human rights bodies to improve the situation of freedom of expression and human rights generally in the Gambia", - "values": [ - "4 - General action" - ] - }, - { - "text": "Adopt the draft amendments to the Code of Criminal Procedure and allow victims of human rights violations to participate in court proceedings", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Review the latest proposed or adopted amendments regarding the NGO and media laws and the 2010 amendments to the Civil and Penal Codes in order to ensure that Armenian legislation is in line with the best practices and international standards in the area of freedom of expression and association", - "values": [ - "3 - Considering action" - ] - }, - { - "text": "Fully align its national legislation with the Rome Statute of the International Criminal Court and continue full cooperation with the International Criminal Court in its preliminary investigation of the crimes committed on 28 September 2009 and its aftermath", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Create a reliable investigation commission consisting of professional and independent investigators to identify, arrest and prosecute the perpetrators of the Muttur murders", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Step up its efforts to eradicate child marriage and so-called \u201chonour crimes\u201c", - "values": [ - "4 - General action" - ] - }, - { - "text": "Strictly uphold and respect the international law prohibiting refoulement", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Strengthen preventive measures to combat all forms of racial discrimination ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Eliminate all direct and indirect discrimination against women in legislation and practice", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Continue current efforts to promote and protect the rights of rural women", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Support the legislative framework and institutional mechanisms to combat discrimination in the area of employment, and provide access to basic social services for minorities and migrants", - "values": [ - "4 - General action" - ] - }, - { - "text": "Increase the government expenditure in the field of education", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Create, as soon as possible, an ombudsman in accordance with the Paris Principles", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Focus on the overall implementation of its non-discriminatory provisions and to extend them to include the grounds of sexual orientation and gender identity. The implementation of overall anti-discrimination policies in Turkey should include all forms of discrimination", - "values": [ - "4 - General action" - ] - }, - { - "text": "Consider acceding to the International Covenant on Civil and Political Rights and adopt a new media law that respects freedom of expression ", - "values": [ - "3 - Considering action" - ] - }, - { - "text": "Consider enhancing human rights education through the development of public awareness campaigns and programs at all levels", - "values": [ - "3 - Considering action" - ] - }, - { - "text": "Urgently provide essential and indispensable food and medical supplies to besieged areas and facilitate the arrival of unrestricted humanitarian aid and assistance, in particular to the areas most affected by the conflict", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Seek the necessary international assistance, upon identification of its national priorities, to be better able to fulfil its obligations in the area of the promotion and protection of human rights ", - "values": [ - "1 - Minimal action" - ] - }, - { - "text": "Take all necessary measures to prevent or punish violations of human rights", - "values": [ - "4 - General action" - ] - }, - { - "text": "Continue efforts to reduce overcrowding in the prison system and ensure that the Standard Minimum Rules for the Treatment of Prisoners are observed", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Communicate more efficiently to Roma parents the importance of literacy and the positive effect of education on the children's future, and, in this task, use the help of school assistants with a Romani background", - "values": [ - "4 - General action" - ] - }, - { - "text": "Develop policies to increase gender equality to address the inequalities that persist despite legal guarantees", - "values": [ - "4 - General action" - ] - }, - { - "text": "Step up its effort to prevent violence against women, particularly victims of trafficking, by providing adequate protection and assistance, especially shelters, funding and staffs for these shelters ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Seek technical assistance, as appropriate, from the Office of the High Commissioner for Human Rights and other United Nations organizations, with a view to developing capacity for fulfilling various international human rights obligations to which it subscribes", - "values": [ - "1 - Minimal action" - ] - }, - { - "text": "Revise its legislation on abortion with a view to authorizing it at least in cases where pregnancy is the result of rape and-or an incestuous relationship, or where the fact of carrying the pregnancy to term puts the life or health of the woman in danger", - "values": [ - "4 - General action" - ] - }, - { - "text": "Sign and ratify the OP-CAT", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Consider ratification of the First Optional Protocol to the International Covenant on Civil and Political Rights", - "values": [ - "3 - Considering action" - ] - }, - { - "text": "Intensify efforts in actively promoting inter-ethnic, inter-faith and communal understanding and harmony", - "values": [ - "4 - General action" - ] - }, - { - "text": "Accelerate the drafting of the new Statute of the CNDHC, in accordance with the Paris Principles", - "values": [ - "4 - General action" - ] - }, - { - "text": "Take necessary measures to fight against any form of intolerance and hate speech targeting persons belonging to minorities", - "values": [ - "4 - General action" - ] - }, - { - "text": "Continue the good practice of having a national Human Rights Plan by formulating a comprehensive plan of action or strategy", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Take concrete steps to combat impunity with respect to human rights abuses committed by security forces, including dozos, by increasing governmental oversight of their operations, investigating credible allegations, and prosecuting cases where appropriate", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Abolish the death penalty, which is also applied to persons with mental disabilities and commute those which have already been imposed", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Establish without delay an independent national monitoring mechanism, in line with article 33 of the Convention on the Rights of Persons with Disabilities (CRPD) ", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Adopt concrete measures to implement the national strategic plan to eliminate gender-based violence, as announced in 2013", - "values": [ - "4 - General action" - ] - }, - { - "text": "Step up actions to strengthen the national mechanism for the prevention of torture", - "values": [ - "4 - General action" - ] - }, - { - "text": "Recognize the mandate of the Special Rapporteur on the situation of human rights in the Democratic People's Republic of Korea, issue an invitation to him to visit the country, and permit him to work unhindered", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Address torture and implement safeguards to prevent torture and extrajudicial executions.", - "values": [ - "4 - General action" - ] - }, - { - "text": "Honour its pledge to look into abolishing the death penalty", - "values": [ - "3 - Considering action" - ] - }, - { - "text": "Continue with the policies to tackle gender based violence and the programme of "Swift Justice"", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Adopt legislation that prohibits discrimination on the basis of sexual orientation and gender identity, and reinforce existing constitutional provisions that prohibit discrimination based on race and national origin", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Continue implementing economic and social development programmes in order to fight poverty", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Decriminalize same-sex activity between consenting adults ", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Allocate necessary resources to strengthen gender equality", - "values": [ - "4 - General action" - ] - }, - { - "text": "Continue affirmative action measures to strengthen the participation of women in publicly elected posts ", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Further its activities aimed at gender mainstreaming in Government policies ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Eliminate all forms of discrimination particularly against vulnerable children", - "values": [ - "4 - General action" - ] - }, - { - "text": "Separate juveniles from adults in detention and rehabilitation centres", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Take all possible measures to ensure the full protection of the right to freedom of opinion and expression.", - "values": [ - "4 - General action" - ] - }, - { - "text": "Consider improving the conditions of detention centres in the country, particularly the Regional Processing Centre, in line with the Standard Minimum Rules for the Treatment of Prisoners", - "values": [ - "3 - Considering action" - ] - }, - { - "text": "Strengthen the independence of the Police Complaints Authority and provide it with adequate funding and resources", - "values": [ - "4 - General action" - ] - }, - { - "text": "Accomplish the human rights goals set by resolution 9-12 of the Human Rights Council. ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Enforce legislation to prevent sexual violence and sexual exploitation", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Take further steps for the implementation of the ratified international treaties ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Revise its Law 3005/2006 on Combating Domestic Violence to address the issue of marital rape, to prohibit physical violence against minors and facilitate legal procedure for victims", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Address concerns about impunity, through reforms in the criminal justice system, as well as by ensuring the speedy investigation, arrest, prosecution, trial and conviction of perpetrators ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Strengthen measures taken to ensure access to education and healthcare within the available means ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Continue its efforts in the areas of population awareness programmes, and training of public officers on the rights of asylum-seekers and refugees ", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Prohibit all violence against children, including corporal punishment ", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Continue strengthening the Dominican social security system and the implementation of the Comprehensive Law for the national development strategy until 2030, which was issued on January 25, 2012 ", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Enact comprehensive anti-discrimination laws, especially on the basis of race, gender and HIV/AIDS status", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Continue adopting measures to promote and protect the enjoyment of economic, social and cultural rights ", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Work towards setting up programmes to rehabilitate juvenile offenders, and update legislation concerning juveniles ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Adopt necessary legislative and administrative measures to guarantee freedom of religion ", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Continue implementing legislation to address the multiple forms of discrimination on the basis of disability", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Promote human rights education through public awareness campaigns in partnership with the Office of the Human Rights Defender and academic institutions ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Extend an open and ongoing invitation to United Nations human rights special procedures mandate-holders ", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Take steps to address the culture of impunity for human rights violations by law enforcement agencies", - "values": [ - "4 - General action" - ] - }, - { - "text": "Promote the creation of pluralist, free and independent information bodies, ensure that the independence of the press is respected and protected and authorize peaceful demonstrations, as recommended previously", - "values": [ - "4 - General action" - ] - }, - { - "text": "Implement the United Nations Rules for the Treatment of Women Prisoners and Non-Custodial Measures for Women Offenders, otherwise known as the "Bangkok Rules"", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Ratify soon the Council of Europe Convention on Preventing and Combating Violence against Women and Domestic Violence", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Sign the Second Optional Protocol to the International Covenant on Civil and Political Rights and establish a moratorium on executions with a view to abolishing the death penalty", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Allow media and civil society organizations to undertake education, advocacy, monitoring and reporting on human rights issues ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Consider the possibility of ratifying CED ", - "values": [ - "3 - Considering action" - ] - }, - { - "text": "Develop promptly the implementation guidelines for the Gender Equality Act to ensure its effectiveness", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Take urgent measures to fight trafficking in persons, particularly women and children, including through international and regional cooperation, also with countries of destination in order to prevent the spread of this phenomenon and work to prosecute perpetrators", - "values": [ - "4 - General action" - ] - }, - { - "text": "Consider acceding to the ILO Worst Forms of Child Labour Convention, 1999 (No. 182)", - "values": [ - "3 - Considering action" - ] - }, - { - "text": "Strengthen and amend when necessary its Second National Plan on Human Trafficking and Sex Trafficking, 2006-2010, as well as the law on anti-trafficking passed in 2008, and ensure their due implementation ", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Organize inclusive consultations with journalists and media in order to resolve disputes that exist concerning the new media law", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Move towards the formal and final legal abolition of the death penalty.", - "values": [ - "4 - General action" - ] - }, - { - "text": "Carry out national programs to disseminate and create awareness among women in the country, related to all the aspects regulated by CEDAW ", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Thailand will amend its laws to be more in alignment with international human rights instruments, which includes ensuring that criminal laws are aligned with the Convention against Torture and the Convention for the Protection of All Persons from Enforced Disappearance and improving the laws to better protect women and children", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Rescind legislation that curbs the civil rights of Russia's LGBTI community ", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Immediately release all children recruited into the Transitional Federal Government's security forces and the establishment of rigorous vetting procedures to ensure that the armed forces and police do not include persons under the age of 18 ", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Ratify the Optional Protocol to the Convention against Torture and Other Cruel, Inhuman or Degrading Treatment or Punishment and sign the International Convention for the Protection of All Persons from Enforced Disappearance", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Ensure the full protection of the right to freedom of opinion and expression, to peaceful assembly and to freedom of association", - "values": [ - "4 - General action" - ] - }, - { - "text": "Continue the very positive track with the progress in the promotion and protection of human rights and ratify CAT as well as the CRPD", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Amend the Sierra Leone Citizenship Act so that women can transfer their nationality to their children and non-national spouses on an equal basis with men, and include a provision in the new Constitution which grants equal nationality rights to men and women", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Continue efforts to ratify the Optional Protocol to the Convention against Torture and Other Cruel, Inhuman or Degrading Treatment or Punishment", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Continue its efforts in providing support and protection for the family, as a fundamental and natural unit of society ", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Continue to take into account the judicial principles as a complimentary measure to international standards and documenting these measures", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Reinforce the regulatory and institutional measures of the Ombudsman, in conformity with the Paris Principles", - "values": [ - "4 - General action" - ] - }, - { - "text": "Consider ratifying the Optional Protocol to ICESCR ", - "values": [ - "3 - Considering action" - ] - }, - { - "text": "Adhere to the principles set out in the International Convention on the Protection of the Rights of All Migrant Workers and Members of Their Families, and to favourably consider its possible ratification, following which the country would be party to all major international human rights treaties", - "values": [ - "4 - General action" - ] - }, - { - "text": "Take measures to improve the quality of health services deteriorated due to lack of medical facilities and medicine ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Amend the law establishing the National Human Rights Commission, particularly as far as a pluralist and independent representation is concerned, with the objectives of bringing it into line with the Paris Principles and seeking accreditation by the International Coordinating Committee", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Continue their efforts aiming at protecting freedom of expression and end practices that threaten the right to freedom of expression, including threats against journalists and media", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Protect the rights of women by ensuring their participation in political life and in all the peace and reconciliation processes as well as equal opportunities in the area of education and employment ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Continue its efforts to further enhance the exercise and enjoyment of civil and political rights, including the rights to freedom of peaceful assembly in the country", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Enact a labour law that applies to nationals and enhance efforts to spread awareness among workers", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Strengthen its protection of trafficking victims", - "values": [ - "4 - General action" - ] - }, - { - "text": "Release and drop charges against all journalists and media workers arrested in the context of performing their duties", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Fully abolish the death penalty", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Request assistance from the Office of the High Commissioner for Human Rights to strengthen access to justice services, as well as for the training of judicial personnel ", - "values": [ - "1 - Minimal action" - ] - }, - { - "text": "Consider signing and ratifying the Council of Europe Convention on Preventing and Combating Violence against Women and Domestic Violence ", - "values": [ - "3 - Considering action" - ] - }, - { - "text": "Share its best practices and challenges in reaching out to the most vulnerable mine victims", - "values": [ - "4 - General action" - ] - }, - { - "text": "Continue its positive efforts in implementing the Gender Equality Strategy 2006-2016 and take measures to increase women's participation in public and political life", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Amend its Anti-Discrimination Act to expand the grounds of discrimination explicitly prohibited by the Act", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Develop a comprehensive and forgery-proof land registry to enable indigenous communities to hold legal titles to their ancestral land ", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Ensure the independence and the proper funding of the Office of the National Commissioner for Human Rights and the Institution for Children and the Family, at a time when restrictions on freedom of expression, discrimination, and gender-based and domestic violence are all on the rise ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Adopt legal provisions prohibiting traditional harmful practices against women, including adequate sanctions for violations of these provisions", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Complete the ratification procedures for the International Covenant on Economic, Social and Cultural Rights", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Increase efforts in the process of reconciling internal legislation with Convention on the Elimination of All Forms of Discrimination against Women norms through the inclusion of a specific definition of the discrimination against women, consistent with Article 1 of the Convention", - "values": [ - "4 - General action" - ] - }, - { - "text": "Continue its public awareness campaigns and fast tracking of investigation and prosecution of criminal cases in order to demonstrate to the population that the issue of killing albinos was to be taken seriously ", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Enact the law on domestic violence in order to overcome the Penal Code's shortcomings in covering domestic violence cases", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Achieve the national reconciliation project, foster solidarity among the Iraqi people, enshrine the bases of the national unity and ensure public security", - "values": [ - "4 - General action" - ] - }, - { - "text": "Amend the National Security Act of 2010 to abolish the criminal immunity enjoyed by security officers", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Accelerate efforts towards the enactment of domestic legislation to further strengthen human rights", - "values": [ - "4 - General action" - ] - }, - { - "text": "France will submit a midterm report in 2015 on the implementation of the recommendations made during the universal periodic review in January 2013", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Continue to develop the health system", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Work on the strengthening international cooperation in the field of human rights ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Consider amending the Constitution to strike provisions that appear to curtail religious freedoms", - "values": [ - "3 - Considering action" - ] - }, - { - "text": "Renew its commitment to freedom of expression and opinion as well as to pluralism, ensure free access to information, and take measures to fight threats and attacks against journalists ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Investigate and punish ill-treatment, harassment and incitement to violence and hatred, to which minorities and other vulnerable groups are subjected ", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Ensure, before the next universal periodic review, that asylum seekers and refugees have access to work and freedom of movement", - "values": [ - "4 - General action" - ] - }, - { - "text": "Create social programmes to assist children engaged in the worst forms of child labor, particularly in commercial sexual exploitation", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Increase the input in education and give importance to the inclusive education for disabled children to ensure their healthy development", - "values": [ - "4 - General action" - ] - }, - { - "text": "Redouble its efforts for the ratification of the International Convention for the Protection of All Persons from Enforced Disappearance", - "values": [ - "4 - General action" - ] - }, - { - "text": "Take additional measures to prevent criminal offences, including assault, by police officers and prison guards from occurring, and ensure that the personal integrity of detainees is guaranteed ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Provide sufficient resources to institutions responsible for implementing Law 348, the legislation that guarantees women a life free from violence, in order to improve access to justice and to ensure accountability in cases of violence against women", - "values": [ - "4 - General action" - ] - }, - { - "text": "Put an end to all forms of violence against Aboriginal women and girls ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Strengthen the capacities of health infrastructures in rural and remote areas", - "values": [ - "4 - General action" - ] - }, - { - "text": "Consider developing Human Rights Indicators as suggested by the OHCHR) as an instrument that allows for a more precise and coherent evaluation of national human rights policies", - "values": [ - "3 - Considering action" - ] - }, - { - "text": "Enhance freedom of expression", - "values": [ - "4 - General action" - ] - }, - { - "text": "Enshrine the principle of equality and non-discrimination in the Constitution without qualifications by avoiding any discriminatory clauses as the draft is finalized", - "values": [ - "4 - General action" - ] - }, - { - "text": "Consider the possibility of signing or acceding to the remaining international human rights treaties, including ICESCR and ICRMW and domesticate them in its national legislation", - "values": [ - "3 - Considering action" - ] - }, - { - "text": "Increase the level of protection of minors, particularly those who find themselves in a situation of lack of protection and outside of the compulsory schooling system.", - "values": [ - "4 - General action" - ] - }, - { - "text": "The Congo reiterates its commitment to cooperate with all United Nations bodies in general, and with those of the Human Rights Council in particular.", - "values": [ - "1 - Minimal action" - ] - }, - { - "text": "Continue supporting and cooperating with the UNDP in projects aiming at strengthening the institutional capacity of the justice system", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Consider the ratification of the international instruments to which it is not yet a party ", - "values": [ - "3 - Considering action" - ] - }, - { - "text": "Consider ratifying the Second Optional Protocol to the International Covenant on Civil and Political Rights (ICCPR), aiming at the abolition of the death penalty ", - "values": [ - "3 - Considering action" - ] - }, - { - "text": "Ensure the effective implementation of the Inclusive Education Action Plan for 2016-2018 and monitor the impact of reforms aiming at the inclusion of Romani pupils in mainstream schools", - "values": [ - "4 - General action" - ] - }, - { - "text": "Better develop the promotion aspect of integration to enhance genuine respect for diversity and knowledge of different cultures and traditions, as outlined by the European Commission against Racism and Intolerance.", - "values": [ - "4 - General action" - ] - }, - { - "text": "Review its body of legislation prohibiting discrimination to ensure equal protection on all grounds, and in this regard, consider elaborating a single comprehensive act covering all grounds for possible discrimination ", - "values": [ - "3 - Considering action" - ] - }, - { - "text": "Take all necessary measures to ban secret places of detention, particularly by envisaging the signature and ratification of the International Convention for the Protection of All Persons from Enforced Disappearance.", - "values": [ - "4 - General action" - ] - }, - { - "text": "Carry out education and awareness-raising programs on the human rights of lesbian, gay, bisexual, transgender and intersex persons", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Act in conformity with United Nations resolutions and the norms of international law and to resume full cooperation with the United Nations Human Rights Council", - "values": [ - "4 - General action" - ] - }, - { - "text": "Follow up on the request of the Human Rights Committee, suggesting the complete incorporation of the provisions of the Convention on the Elimination of All Forms of Discrimination against Women in its national legislation", - "values": [ - "4 - General action" - ] - }, - { - "text": "Implement in national legislation the prohibition and criminalization of all types of violence against women and children, specially indigenous women and children, in accordance with the commitments acquired in the corresponding Conventions", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Amend the Penal Code to criminalize all forms of sexual abuse of children regardless of the sex of the child, as currently not all forms of sexual abuse against boys are criminalized", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Consider acceding to the international human rights treaties to which it is not yet a party and strengthen efforts to obtain technical assistance from OHCHR and international donors ", - "values": [ - "3 - Considering action" - ] - }, - { - "text": "Implement the legislation to prevent and repress marriages between minors by fixing the legal age for marriage at 18 for men and women", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Take steps to end impunity for extensive use of pre-trial detention, ill- treatment and alleged torture of individuals in police custody, by investigating and prosecuting all perpetrators", - "values": [ - "4 - General action" - ] - }, - { - "text": "Ratify ICCPR and the Convention against Torture and Other Cruel, Inhuman or Degrading Treatment or Punishment CAT ", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Ensure that all allegations of torture and inhuman or degrading treatment, including those related to the June 2010 violence, are thoroughly investigated and that the perpetrators are brought to justice", - "values": [ - "4 - General action" - ] - }, - { - "text": "Continue to pursue and redouble efforts to put in place the country's development plans and strategies with a focus on improving the situation of economic and social rights of its citizens ", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Develop institutions for the support and protection of children ", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Provide access to education to children", - "values": [ - "4 - General action" - ] - }, - { - "text": "Investigate cases of disproportionate use of force by police during arrests, custody and interrogations of suspects in particular migrants ", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Take necessary measures to promote tolerance, intercultural dialogue and respect for diversity", - "values": [ - "4 - General action" - ] - }, - { - "text": "Strengthen and guarantee the independence and impartiality of the judiciary by enforcing the constitutional process for electing judges of the Supreme Court, adopting safeguard measures to prevent irregular dismissals and appointments and adopting additional anti-corruption measures", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Develop policies that allow the Republic of Moldova to combat incitement to hatred and racial discrimination", - "values": [ - "4 - General action" - ] - }, - { - "text": "Take necessary measures, including implementing the Prohibition of Female Genital Mutilation Act 2010, to ensure that victims of sexual violence and other types of violence have access to effective protection and remedy ", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Ensure the protection of religious minorities in accordance with international human rights standards and obligations, and eliminate discrimination based on religious affiliation ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Continue to provide access to education to children", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Continue with efforts for the protection of Indonesian migrants outside the country and of migrants in their territory", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Guarantee in law and in practice, without any abusive restrictions, freedom of peaceful assembly and freedoms of opinion and expression, on the internet and in the traditional media, in line with the International Covenant on Civil and Political Rights ratified by Kuwait", - "values": [ - "4 - General action" - ] - }, - { - "text": "Continue its efforts aimed at improving access of the population to primary health services and care", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Take legislative and concrete measures to prevent the use of torture and bring to justice those responsible for such violations", - "values": [ - "4 - General action" - ] - }, - { - "text": "Step up efforts to reduce the HIV/AIDS rate in the country", - "values": [ - "4 - General action" - ] - }, - { - "text": "Continue to implement the national integration plan to increase access to education for children of migrant workers", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Continue to develop and implement measures aimed at the promotion and protection of human rights of vulnerable groups, such as children, women, people with disabilities, and the elderly ", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Continue its efforts with a view to the effective implementation of the United Nations Declaration on Human Rights Education and Training", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Ensure the full implementation of the adopted law on sexual and gender-based offences against women", - "values": [ - "4 - General action" - ] - }, - { - "text": "Strengthen measures taken to combat hate speech/discourse", - "values": [ - "4 - General action" - ] - }, - { - "text": "Submit its human rights reports regularly and within a reasonable time frame, to respective Treaty Bodies and in particular the outstanding report on the implementation of the Convention against Torture", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Harmonize all anti-discrimination laws to ensure equal protection on all grounds of discrimination ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Continue investing in necessary infrastructures, which contribute to improve access to education for all ", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Promote awareness of the National Legal Office and its services to improve confidence in the justice system and to ensure that Bulgarians have adequate legal standing before the courts", - "values": [ - "4 - General action" - ] - }, - { - "text": "Reinforce policies and programmes developed to address poverty, homelessness, food insecurity as well as access to quality health-care services and education, with special focus on the most disadvantage groups, such as Aboriginal peoples ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Ensure that the new constitution of the country takes greater account of the dimension of human rights protection and promotion, as well as of democracy ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Ratify the Convention on the Protection of Persons with Disabilities.", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Amend its law on nationality to enable Lebanese women to confer their nationality to their children", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Carry out legislative measures that permit the efficient registration, not subject to administrative discretion, of civil organizations, including political parties and unions ", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Establish a procedure for providing immediate registration of arrest and detention of people and ensure that their families were systematically informed", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Take all necessary legal steps to abolish the death penalty and, in the meantime, reintroduce a de facto moratorium", - "values": [ - "4 - General action" - ] - }, - { - "text": "Continue to strengthen the national efforts to control the borders and to fight against trafficking in persons and drug smuggling as well as terrorist activities of Boko Haram in the borders and to continue the effective coordination with neighbouring countries in that regard", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Undertake a comprehensive review and revision of all discriminatory legislation in order to achieve compliance with its obligations under CEDAW.", - "values": [ - "4 - General action" - ] - }, - { - "text": "Ratify and apply the Arms Trade Treaty", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Further reform the institutional framework, including in the area of the electoral process and the mass media, in order to fully ensure the democratic process in the country", - "values": [ - "4 - General action" - ] - }, - { - "text": "Ensure access to clean drinking water is provided to the whole population", - "values": [ - "4 - General action" - ] - }, - { - "text": "Continue, in line with the international obligations, to provide support to the family as the natural and fundamental unit of society, including by adopting, when necessary, relevant legal measures at the national level", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Expand the coverage of programmes that combat poverty, such as "Tekoporã" ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Continue efforts to address cross border issues, including by strengthening the work of Indonesia - PNG Joint Border Committee, based on mutual respect", - "values": [ - "4 - General action" - ] - }, - { - "text": "Accelerate, with the cooperation of OHCHR, the internal studies and procedures necessary to establish a National Human Rights Institution in accordance with the Paris Principles", - "values": [ - "4 - General action" - ] - }, - { - "text": "Extend the National Action Plan on Human Rights to cover all relevant human rights issues, including counter-terrorism, government surveillance, migration and human rights education", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Take further measures to develop a comprehensive national health system, improving the quality and ensuring universal access to medical care", - "values": [ - "4 - General action" - ] - }, - { - "text": "Take further steps in fighting against domestic violence, including by raising public awareness ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Continue implementing the political empowerment programme launched in 2006 in promoting awareness and education in human rights, and ensure greater participation in accordance with best practices and standards in this field", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Ratify before the end of the third UPR cycle those Conventions to which Ghana is a signatory", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Establish a time line for incorporating the principle of equality between men and women in the Constitution, and for the adoption of a law and regulations to combat violence against women, including domestic violence and marital rape ", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Adopt and publish a plan by 2015 to highlight measures the Government will take to improve gender equality in France, including by enforcing existing anti-discrimination legislation more effectively", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Combat discrimination, in particular against minorities and immigrants", - "values": [ - "4 - General action" - ] - }, - { - "text": "Continue cooperating with the special procedures of the Human Rights Council, in accordance with its voluntary commitment to keeping the invitation to these procedures open", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Put an end to discrimination (particularly legal discrimination) against LGBT persons and to criminalization of homosexuality ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Ratify and implement the Convention on the Rights of Persons with Disabilities (CRPD) as well as the Optional Protocol thereto", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Give greater prominence and allocate adequate resources to the implementation of policies that strengthen the State's institutional gender framework using training courses that promote gender equality ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Establish a de jure moratorium on executions, with a view to totally and definitively abolishing the death penalty, and commute all death sentences into life imprisonment ", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Pay more attention to the issues of Islamophobia, hatred towards Muslims, and incitement to hatred against Islam and Muslims, including through newspaper articles and caricatures of the Prophet Mohammed published by certain media under the pretext of freedom of expression, which are an affront to many Muslims throughout the world and an affront to their beliefs and are denounced by all international instruments to which Sweden is a party ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Continue to take steps to ensure the well-being and protection of migrants and their rights.", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Implement the recommendation of the Human Rights Committee to discontinue public funding of political parties which propagate hate, discrimination and violence ", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Continue to promote the status of woman and to empower them", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Intensify efforts to facilitate the participation of NGOs, academic institutions and the media in safeguarding human rights", - "values": [ - "4 - General action" - ] - }, - { - "text": "Further advance all efforts to realise Japan as a gender-equal society", - "values": [ - "4 - General action" - ] - }, - { - "text": "Speed up the process of the on-going consultations on the ratification of the Optional Protocol to the Convention against Torture in the hope that the country ratifies this important instrument for the protection and promotion of human rights", - "values": [ - "4 - General action" - ] - }, - { - "text": "Intensify the implementation of the action plan addressing the alarming levels of sexual violence against women", - "values": [ - "4 - General action" - ] - }, - { - "text": "Examine the possibility of setting up a national human rights institution accredited by the International Coordination Committee of National Institutions for the Promotion and Protection of Human Rights", - "values": [ - "3 - Considering action" - ] - }, - { - "text": "Continue the promotion of human rights, justice and law ", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Advance the process of establishing an independent national human rights institution in a pragmatic manner and in consultation with all relevant actors ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Accede to the Second Optional Protocol to the International Covenant on Civil and Political Rights, aiming at the abolition of the death penalty, and take the necessary steps to remove the death penalty from Latvia's justice system ", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Set up hosting and reintegration structures for HIV-AIDS orphans.", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Increase the age of criminal responsibility of children.", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Continue its efforts to implement the Law on Execution of Sanctions.", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Accelerate the appointment of the members of the Afghan Independent Human Rights Commission", - "values": [ - "4 - General action" - ] - }, - { - "text": "Redouble its efforts and ratify the International Convention on the Protection of the Rights of All Migrant Workers and Members of Their Families the Convention Relating to the Status of Stateless Persons of 1954 and the 1961 Convention to Reduce Statelessness", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Enhance its engagement with the ASEAN Intergovernmental Commission on Human Rights ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Take measures to ensure an independent judicial system and the individual's right to a fair trial ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Render more effective the implementation of article 333 of the Criminal Code, which imposes severe sanctions for the practice of FGM. ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Continue its efforts to integrate, without delay, the Palipehutu-FNL into the defence and security forces, as well as in the various executive, administrative and diplomatic areas.", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Consider new measures to increase respect for the rights of persons with disabilities and continue to strengthen its efforts to ratify the Convention on the Rights of Persons with Disabilities ", - "values": [ - "3 - Considering action" - ] - }, - { - "text": "Work to ensure that all government agencies and relevant stakeholders are fully aware of the National Action Plan for human rights and effectively implement it for the benefit of all people, especially the most vulnerable groups in the society", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Finalize the process of the establishment of a national human rights institution in conformity with the Paris Principles", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Address on a priority basis to, at the administrative and legislative level, the issue of the detention of persons with disabilities who have not been convicted", - "values": [ - "4 - General action" - ] - }, - { - "text": "Ensure effective and systematic application of the principle of prior consultation with indigenous peoples, inter alia in its conservation efforts, including by providing specific regulatory or legislative framework", - "values": [ - "4 - General action" - ] - }, - { - "text": "Bring domestic law into full compliance with the Convention on the Rights of the Child", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "End immediately the economic and military blockade of Donbas, stop shelling its territory, and fully implement social and human rights obligations towards the region\u2019s inhabitants", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Ratify the Convention on Preventing and Combating Violence against Women and Domestic Violence, which was signed in 2013", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Take steps to provide adequate protection against sexual and genderbased violence, while ensuring that assistance is available to victims for their physical and mental rehabilitation", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Implement the National Ombudsman's call for authorities to ascertain the age of younger immigrants, so that the most appropriate protection can be arranged ", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Continue to strengthen the rule of law and improve governance", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Promote equal access for women and girls to all levels of education", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Issue a standing invitation for all special procedures and respond positively to all outstanding invitations ", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Consider early ratification of international conventions like the International Covenant on Economic, Social and Cultural Rights, the Convention on the Rights of the Child and the Convention on the Elimination of All forms of Discrimination against Women", - "values": [ - "3 - Considering action" - ] - }, - { - "text": "Immediately end all acts of torture and stop the arrest of human rights defenders, journalists and political dissidents", - "values": [ - "4 - General action" - ] - }, - { - "text": "Bring legislation in conformity with its commitments to equality and non-discrimination by reviewing article 88 of the Penal Code and by decriminalizing homosexual relations between consenting adults", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Fully ensure the safety and economic and social rights of migrant workers, in particular in irregular situations", - "values": [ - "4 - General action" - ] - }, - { - "text": "Strengthen awareness activities in all settings and adopt appropriate legislative and policy measures to address and prevent violence against children and to reintegrate former child soldiers in society in accordance with the Convention on the Rights of the Child", - "values": [ - "4 - General action" - ] - }, - { - "text": "Give consideration to establishing a national preventative mechanism ", - "values": [ - "3 - Considering action" - ] - }, - { - "text": "Introduce legislation that allows for partial or segmented transfer of the legal capacity of a disabled person ", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Introduce amendments to its domestic legislation and administrative regulations aimed at eradicating all forms of discrimination against women, children, persons with disabilities and, in general, all groups in vulnerable situations ", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Strengthen the framework for the protection of refugees and facilitate their integration at the local level", - "values": [ - "4 - General action" - ] - }, - { - "text": "Support the United Nations Declaration on the Rights of Indigenous Peoples, and devote attention to the recommendations made by the Special Rapporteur on the situation of human rights and fundamental freedoms of indigenous peoples, after her visit to the country ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Pursue initiatives at increasing public awareness of the existence and purpose of the German General Equal Treatment Act (2006), particularly among potential victims of gender discrimination ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Consider increasing funding for the National Plan to Combat HIV and AIDS and urge the international community to do more to assist ", - "values": [ - "3 - Considering action" - ] - }, - { - "text": "Consider future accession to the ICRMW ", - "values": [ - "3 - Considering action" - ] - }, - { - "text": "Initiate national consultations, involving representatives from civil society organizations and human rights defenders, in order to adopt and implement a national system to prevent and fight against torture and all forms of ill-treatment, in line with recommendations submitted by the Committee against Torture and the obligation to establish a National Preventive Mechanism, as contained in the Optional Protocol to the Convention against Torture", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Take the measures necessary to combat violence against women", - "values": [ - "4 - General action" - ] - }, - { - "text": "Continue improving the protection of national minorities in Slovakia, such as through institutional and legislative developments ", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Ratify the Convention for the Protection of All Persons Against Enforced Disappearances ", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Consider ratifying the Optional Protocols to the Convention against Torture, Convention on the Elimination of Discrimination Against Women and the Convention on the Rights of the Child", - "values": [ - "3 - Considering action" - ] - }, - { - "text": "Amend the Law of Association to allow the associations to join international coalitions without the approval of the Ministry of Social Development ", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Accelerate the implementation of the charter on the reform of the judicial system", - "values": [ - "4 - General action" - ] - }, - { - "text": "Amend the law against homosexuality and the Penal Code, which criminalizes homosexual conduct", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Keep the policies adopted to ensure the participation of women in all public affairs, including in the exercise of public posts", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Provide full support to the Rwanda Media Commission and cease government interference with its work and the work of the media in general", - "values": [ - "4 - General action" - ] - }, - { - "text": "Take effective measures to put an end to discrimination on grounds of racial or ethnic origin, skin colour, socioeconomic status, gender, religion or other status in the fields of employment and education", - "values": [ - "4 - General action" - ] - }, - { - "text": "Continue to reform its judicial and legal system in keeping with the provisions of the recently adopted Constitution", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Continue its endeavours aimed at an independent judiciary, in accordance with accepted international standards and criteria ", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Fully address the issue of enforced disappearances in close cooperation with human rights mechanisms", - "values": [ - "4 - General action" - ] - }, - { - "text": "Establish a moratorium on executions with a view to removing the death penalty from its criminal statutes and ratify the Second Optional Protocol to ICCPR ", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Ratify ILO Convention No. 189", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Give a strong response to hate speech, including in offline and online media and systematically denounce expressions of intolerance by opinion leaders ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Take further measures aimed at strengthening laws and regulations regarding human rights ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Build on the momentum achieved this far in the construction of social housing, with a view to reversing the housing deficit", - "values": [ - "4 - General action" - ] - }, - { - "text": "Solomon Islands further stated that it had recently sent an invitation to the OHCHR Regional Office for an in-country assessment for the purpose of establishing an office in Solomon Islands.", - "values": [ - "1 - Minimal action" - ] - }, - { - "text": "That a new law should ensure the right to freedom of expression, assembly and association, in accordance with international human rights law.", - "values": [ - "4 - General action" - ] - }, - { - "text": "Ensure effective national oversight and evaluation of municipal programmes that have been developed to protect the rights enshrined in Article 1 of the Dutch Constitution concerning prohibited grounds for discrimination, in particular ensure that these programmes utilize a broad systematic approach taking into consideration current fiscal realities ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Take proper measures to strengthen and enact the legislative framework aiming at protecting the rights of women and to fully implement CEDAW", - "values": [ - "4 - General action" - ] - }, - { - "text": "Take additional steps to improve gender equality and enhance women's position in marriage, divorce, nationality, custody of children and inheritance", - "values": [ - "4 - General action" - ] - }, - { - "text": "Continue to take steps to tackle gender-based violence", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Ensure gender equality in all aspects of family-related matters and raise the minimum age of marriage", - "values": [ - "4 - General action" - ] - }, - { - "text": "Abolish article 230 of the Criminal Code that criminalizes homosexuality", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Ensure that freedom of expression and freedom of the press are fully respected at all times", - "values": [ - "4 - General action" - ] - }, - { - "text": "Submit a report on the human rights situation in the OPT since Israel assumed the responsibility for this territory as the occupying power", - "values": [ - "4 - General action" - ] - }, - { - "text": "Intensify its efforts to ensure absolute equality of rights and opportunities of women and girls vis-à-vis men and boys, according to international norms", - "values": [ - "4 - General action" - ] - }, - { - "text": "The delegation stated that Guyana re-affirmed its commitment to holding consultations with civil society, the four Human Rights Commissions, various levels of government and state agencies, and the National Assembly on the follow-up to the UPR process. It also reported its initiatives to strengthen the government-NGO partnership to reduce and prevent domestic and sexual violence.", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Continue to tackle the prejudice, stigmatization and discrimination suffered by some asylum seekers, migrants and refugees", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Continue to prevent and combat violence against women, guaranteeing women's access to justice and continue to improve support services", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Reconsider current local legislation on freedom of religion, that uses vague or broad terminology and discriminatory provisions, and impedes the possibility for conversion of faith for those who wish to do so ", - "values": [ - "3 - Considering action" - ] - }, - { - "text": "Further enforce the implementation of a comprehensive child protection system, especially for those suffering from violence, forced labour and sexual exploitation ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Consider extending a standing invitation to all Special Procedures of the Human Rights Council ", - "values": [ - "3 - Considering action" - ] - }, - { - "text": "Continue to take effective measures to fully implement its SigTierras programme in order to ensure that rural women have equal access to land titles", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Remove all provisions from laws that allow corporal punishment and explicitly prohibit corporal punishment by law as a method to discipline children ", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Take legislative and policy measures to prevent and fight violence and to combat discrimination on the ground of sexual orientation and gender identity", - "values": [ - "4 - General action" - ] - }, - { - "text": "Accede to the Convention on the Elimination of All Forms of Discrimination against Women", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Create a mechanism to give visibility and value the work of human rights defenders and, develop and implement measures to protect human rights defenders should they be exposed to any risk or threat associated with the free exercise of their activities", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Adopt effective measures to prevent any form of discrimination, racism and xenophobia ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Continue efforts in combating sexual violence against children regardless of the sex of the child starting with the review of related legislation to ensure prosecution of perpetrators and adequate rehabilitation and compensation for the victims", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Strengthen the legal rights framework and enforcement of these rights for migrants, asylum seekers and victims of trafficking ", - "values": [ - "4 - General action" - ] - }, - { - "text": "In cooperation with the World Health Organization and relevant international organizations, continue to improve access to quality health care for its people ", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Renew its effort to promote and protect the rights of vulnerable groups such as children, women, persons with disabilities and older persons ", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Consider acceding to covenants on human rights such as the Convention on the Rights of the Child, the Convention against Torture and Other Cruel, Inhuman or Degrading Treatment or Punishment, and the International Convention on the Elimination of All Forms of Racial Discrimination", - "values": [ - "3 - Considering action" - ] - }, - { - "text": "Continue to cooperate in a generous way with developing countries ", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Take the necessary measures to promote the rights of persons with disabilities", - "values": [ - "4 - General action" - ] - }, - { - "text": "Take measures to improve women\u2019s representation in decision-making positions in the public sector and reduce the gender pay gap", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Study the possibility of establishing a national human rights institution accredited by the International Coordinating Committee of National Institutions for the Promotion and Protection of Human Rights.", - "values": [ - "3 - Considering action" - ] - }, - { - "text": "Prohibit policies and practices of racial segregation that disproportionately affect the Palestinian population in the OPT ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Work to obtain the accreditation of the National Human Rights Institution ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Ensure satisfactory asylum procedures for all migrants and asylum-seekers rescued at sea", - "values": [ - "4 - General action" - ] - }, - { - "text": "Consider ratifying the International Labour Organization Convention No. 189 ", - "values": [ - "3 - Considering action" - ] - }, - { - "text": "Thereby, Austria undertakes to ratify the International Convention for the Protection of All Persons from Enforced Disappearance, the Optional Protocol to the Convention against Torture and Other Cruel, Inhuman or Degrading Treatment or Punishment and the Council of Europe Convention on the Protection of Children against Sexual Exploitation and Sexual Abuse and to include children's rights into the Austrian Federal Constitution according to the Convention on the Rights of the Child. In addition to the existing criminal law provisions, which have already made any form of torture a punishable offence113, the inclusion of a definition of torture in the Criminal Code is currently underway. Work is also being done to implement the crimes under the Rome Statute for an International Criminal Court, which includes crimes against humanity and war crimes, into the Austrian penal code. Genocide is already a punishable offence under Austrian criminal jurisdiction", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Strengthen the role of its national mechanisms and institutions for the promotion and protection of human rights in the country", - "values": [ - "4 - General action" - ] - }, - { - "text": "Repeal the death penalty ", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Favourably consider revising the Public Order Amendment Decree and the Media Industry Development Decree in a way that fully ensures the rights to freedoms of association, assembly, press and expression", - "values": [ - "3 - Considering action" - ] - }, - { - "text": "Develop laws that protect freedom of religion or belief and freedom of expression", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Fully implement all obligations under the Rome Statute in its national legislation, including by incorporating provisions to cooperate promptly and fully with the ICC, and to investigate and prosecute genocide, crimes against humanity and war crimes effectively before its national courts", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Continue its efforts to ensure that national legislation complies with international human rights standards", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Ensure the broad involvement of civil society representatives in the preparatory process of the national human rights plan ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Continue to face and challenge the obstacles facing the schooling of girls and make use of technical assistance provided by the United Nations, in particular UNICEF, in order to overcome such obstacles ", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Establish a formal moratorium on the use of the death penalty with a view to ratifying the Second Optional Protocol to the International Covenant on Civil and Political Rights ", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Continue attaching its priority towards care for the elderly in order to ensure the quality of life of this group of the population ", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Take appropriate steps to facilitate the adoption of legislation on gender equality", - "values": [ - "4 - General action" - ] - }, - { - "text": "Define the trafficking in human beings as a criminal offence", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Intensify its efforts to sensitize and train medical professionals on the criminal nature of prenatal sex selection with a view to ensuring stringent enforcement of the legal prohibition of such practice ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Abolish all statutory time limits pertaining to the investigation of and prosecution for serious human rights violations", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Abolish criminal penalties that infringe on the physical integrity of convicts, for example, flogging", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Strengthen services aimed at protecting women, children and other marginalized or vulnerable groups ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Move on to de jure abolition of the death penalty", - "values": [ - "3 - Considering action" - ] - }, - { - "text": "Withdraw reservations and declarations made on the occasion of accession to the Convention on the Rights of the Child and gradually incorporate its provisions into domestic law", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Step up its efforts to eradicate negative practices and stereotypes that lead to discrimination against women", - "values": [ - "4 - General action" - ] - }, - { - "text": "Respect the rights of refugees, especially the principle of nonrefoulement ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Pursue the fight against poverty and to take policies which favour vulnerable people, and pursue economic cooperation which the country needs", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Rescind legal provisions that provide for the criminalization of lesbian, gay, bisexual, transgender and intersex persons following the principle of non-discrimination", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Continue its efforts in order to strengthen its legislation relating to human trafficking and the assistance mechanisms for these victims, as well as to guarantee the proper investigation, trial and punishment of these conducts in light of international standards ", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Bring its domestic legislation fully into line with international human rights instruments", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Ratify the Convention on the Prevention and Punishment of the Crime of Genocide and the two Optional Protocols to the Convention on the Rights of the Child within the context of the Human Rights Council resolution 9-12, entitled Human Rights Goals", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Overcome, with the technical and financial assistance of the international community, the constraints and challenges particularly in the area of education, health and employment.", - "values": [ - "4 - General action" - ] - }, - { - "text": "Amend the list of hazardous work to prohibit children under the age of 18 from working in all listed sectors", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Adopt measures to prohibit and prevent discrimination based on disability ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Adopt a comprehensive legislation that guarantees the protection of the rights of migrant workers", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Encourage full implementation of the 2004 Children's Code, in the area of education, prevention and reinsertion", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Tackle discrimination against the Muslim community and insults against Islamic sanctities and allow all Muslims to practise Islam in accordance with their religious beliefs, without Government interference or approval ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Ensure that freedom of association and the right to peaceful assembly are respected and protected, to include promoting better implementation of the Public Order Act", - "values": [ - "4 - General action" - ] - }, - { - "text": "Stop sexual violence against women and investigate all reported cases", - "values": [ - "4 - General action" - ] - }, - { - "text": "Revive the former six decade-old moratorium on the death penalty with the clear objective of complete abolition", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Take measures, with full and effective participation of indigenous peoples, to address the issues highlighted in the National Enquiry into the Land Rights of Indigenous Peoples", - "values": [ - "4 - General action" - ] - }, - { - "text": "Adopt all necessary measures to ensure that the persistent practice of female genital mutilation stops, through the criminalization of such practice and awareness campaigns", - "values": [ - "4 - General action" - ] - }, - { - "text": "Implement food security policies to combat the negative effects of poverty ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Sign and ratify the Optional Protocol to CRC on a communications procedure ", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "That legislation on the ban of corporal punishment in the exercise of parental rights be approved ", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Implement Treaty Body recommendations and develop a National Action Plan to eliminate all forms of discrimination", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Adopt a leadership role and take concrete steps to move towards the abolition of the death penalty.", - "values": [ - "4 - General action" - ] - }, - { - "text": "Share its experiences and good practices with regard to the right to health, in particular the primary, maternal and child care programs as well as HIV-AIDS control programs. and in view of the growing aging population", - "values": [ - "1 - Minimal action" - ] - }, - { - "text": "Take supplementary measures to support access of minority children to education by helping them maintain and develop their traditions and languages.", - "values": [ - "4 - General action" - ] - }, - { - "text": "Continue efforts aimed at promoting rights of children, women, persons with disabilities", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Continue supporting the National Commission for Human Rights and provide assurances to enable it to discharge its mandate independently in accordance with the Paris Principles", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Adopt the draft law aimed at establishing a human rights institution in accordance with the Paris Principles", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Ratify the Migrant Workers Convention", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "The Children's Law addresses child labour and exploitation, as does the Anti-Human Trafficking Act. In 2014, Liberia also launched a national policy to fight human trafficking. Liberia is committed to abolishing the worst forms of child labour", - "values": [ - "4 - General action" - ] - }, - { - "text": "Adopt specific legislation on domestic violence.", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Implement fully the recommendations from the TRC ", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Abolish the death penalty in law and ratify ICCPR-OP-2", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Prohibit the detention of unaccompanied children in law and end it in practice, and increase shelter capacity for unaccompanied children seeking asylum", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Make prioritized efforts to achieve Millennium Development Goals as soon as possible ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Strengthen efforts towards elimination of violence against women", - "values": [ - "4 - General action" - ] - }, - { - "text": "Launch a political consultation aimed at discussing the modalities for the abolition of the death penalty", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Continue efforts to establish a universal system for social protection, including to guarantee food security, employment, social security and the development of production", - "values": [ - "4 - General action" - ] - }, - { - "text": "Eliminate the systematic detention at the border of asylum-seekers and migrants in an irregular situation and limit to exceptional cases the deprivation of liberty of asylum-seekers during the period of the determination of their request for asylum ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Take positive steps to ensure that everyone, including human right defenders, independent journalists and NGOs, can peacefully exercise their right of the freedom of expression ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Take the necessary measures to ensure that the rights to freedom of religion, culture and expression are fully observed and protected in every administrative entity of China", - "values": [ - "4 - General action" - ] - }, - { - "text": "The Republic of Korea was proud that it had become a model case, as it had transformed from aid beneficiary to aid donor, and was committed to increasing its official development aid volumes. In 2010, the Framework Act on International Development Cooperation had been enacted and the Government intended to consider human rights principles in the planning and carrying out of development projects.", - "values": [ - "3 - Considering action" - ] - }, - { - "text": "Ratify the Convention on Cluster Munitions and the Convention on the Prohibition of the Use, Stockpiling, Production and Transfer of Anti-Personnel Mines and on Their Destruction", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Continue providing spaces for dialogue between civil society and the State to discuss human rights issues, such as the National Round table on Safeguards", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Revise the legislation to ensure acts of torture are criminalized and punishable by penalties commensurate with the gravity of the crime", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Ratify the Indigenous and Tribal Peoples Convention, 1989 (No. 169) of ILO", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Further strengthen the implementation of Kyrgyzstan's international commitments with regard to CAT and investigate all allegations of torture and ill treatment in custody", - "values": [ - "4 - General action" - ] - }, - { - "text": "Ensure protection against all forms of discrimination by incorporating in its laws, the principle of equality in accordance with CEDAW, ICERD and CRPD ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Combat impunity, prosecute perpetrators and ensure victims' access to effective remedies in case of journalists, human rights defenders and lawyers who become victims of human rights violations and abuses", - "values": [ - "4 - General action" - ] - }, - { - "text": "Continue in its endeavour in fighting against harmful traditional practices ", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Establish a monitoring system to ensure the return, rehabilitation and reintegration of internally displaced persons ", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Accelerate the process to establish a national committee on the rights of children provided for in the Children's Code", - "values": [ - "4 - General action" - ] - }, - { - "text": "Intensify its efforts to ensure the full and unhindered exercise of the freedom of expression, particularly in the context of freedom of the press and the media", - "values": [ - "4 - General action" - ] - }, - { - "text": "Ensure that Germany's law and policies are consistent with CEDAW and ICERD by revising or revoking laws and regulations that hinder access to equal opportunities ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Ratify the Convention on the Rights of the Child and the Convention against Torture", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Continue its engagement by ratifying other international instruments, in particular the International Convention on the Protection of the Rights of All Migrant Workers and Members of Their Families", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Encourage strengthening of NGOs by promoting a legal, administrative and fiscal framework in which such institutions can be created and developed and perform their activities without any obstacles and with freedom of expression ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Ratify the Second Optional Protocol to the International Covenant on Civil and Political Rights already signed by Argentina, aiming at the abolition of the death penalty.", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Strengthen measures against acts of racism and discrimination experienced in recent years on German soil ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Increase efforts to improve the quality and capacity of the judicial system", - "values": [ - "4 - General action" - ] - }, - { - "text": "Act on its previous commitment and establish a national preventative mechanism, as defined under OPCAT, and ensure the allocation of adequate resources for its functioning", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Strengthen measures to prevent and protect from trafficking in persons", - "values": [ - "4 - General action" - ] - }, - { - "text": "Investigate and prosecute all perpetrators of serious human rights abuses, especially acts of rape and sexual violence, regardless of their rank and affiliation", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Continue to combat poverty with the full support and cooperation of the international community ", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Establish mechanisms to receive, verify and investigate complaints of child ill-treatment and provide psychological and other support to victims of abuses ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Design awareness-raising campaign on cultural diversity, on countering racial discrimination, xenophobia and all other forms of intolerance and promoting inclusiveness, social cohesion and respect for the values of diversity ", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Immediately stop executions and abolish the death penalty", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Become a party to the Convention against Torture and Other Cruel, Inhuman or Degrading Treatment or Punishment and its Optional Protocol", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Improve conditions of detention consistent with international obligations and afford greater flexibility in granting human rights and humanitarian organizations access to detention centres ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Take effective measures to implement the recommendations of the Committee on the Rights of Persons with Disabilities, including with regard to the practice of sterilization of persons with disabilities without their free and informed consent", - "values": [ - "4 - General action" - ] - }, - { - "text": "Ensure asylum seekers have access to a timely individualized refugee status determination and provide for the release of those detained under the Anti Infiltration Law, in accordance with the recent decision by the Israeli High Court of Justice", - "values": [ - "4 - General action" - ] - }, - { - "text": "Take measures to improve the situation of underreporting of cases of violence and discrimination against lesbian, gay, bisexual, transgender and intersex people, and develop policies to punish and prevent those actions", - "values": [ - "4 - General action" - ] - }, - { - "text": "Set up a specialized body on penitentiary administration", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Establish without delay a national preventive mechanism in accordance with the Optional Protocol to the Convention against Torture with adequate personnel and financial resources for its effective and independent work", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Continue enforcing measures to reduce violence against women ", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Take effective measures to reduce the high maternal mortality rate", - "values": [ - "4 - General action" - ] - }, - { - "text": "Continue to implement policy measures to ensure that quality healthcare is accessible to all, particularly women and children", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Continue achieving the widest enjoyment possible of human rights and basic freedoms ", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Identify and protect children employed in the worst forms of child labour, and increase assistance to victims of forced labour and sex trafficking", - "values": [ - "4 - General action" - ] - }, - { - "text": "Take necessary measures to ensure the effective implementation of the law relating to violence against women, notably by guaranteeing access to justice for victims", - "values": [ - "4 - General action" - ] - }, - { - "text": "The Government was committed to continuing to make every effort to ensure that human rights are deeply embedded in the social, political and cultural fabric of the society. In addition to the civil and political rights, it had established a foundation for economic, cultural and social rights, as indicated in its national report.", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Consider accelerating its efforts towards its ratification of the migrant workers' rights convention (ICRMW) and of other international human rights instruments that it is not yet a party to", - "values": [ - "3 - Considering action" - ] - }, - { - "text": "Take the appropriate measures to develop the position of the Ombudsman into an independent human rights institution in line with the Paris Principles ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Ensure that all detained persons are protected by law and physically against torture and all other ill-treatment in accordance with its obligations under the Convention against Torture", - "values": [ - "4 - General action" - ] - }, - { - "text": "Continue and complete the current process for the establishment of a national commission for the promotion and protection of human rights", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Submit overdue periodic reports, as required by treaties and conventions to which Syria is a party ", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Continue strengthening small and medium-scale enterprises to create more job opportunities for the youth ", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Finalize the establishment of the Independent National Commission of Human Rights with wide civil society involvement regarding nominations", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "With the support and cooperation of the international community, seek to build up its capacities to effectively respond to natural disasters and adapt to the challenges brought about by climate change.", - "values": [ - "4 - General action" - ] - }, - { - "text": "Take the necessary measures and adopt the laws that are needed to allow better protection of children's rights ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Guarantee the effective exercise of freedom of expression, assembly and association by reforming its legislation particularly in order not to undermine the legitimate work of NGOs and human rights defenders", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Finalize adoption of the National Action Plan on Human Trafficking", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Undertake all measures to ensure the establishment of the national human rights commission with the support of the international community ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Continue implementing necessary measures to guarantee the safety of its citizens and to preserve the peaceful atmosphere and internal order and confidence in both the criminal justice system and the police system", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Continue its efforts in the promotion and protection of human rights", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Strengthen the role and resources of institutions in charge of human rights ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Incorporate into the new plans the need for a unified register of cases of violence against women, and to increase efforts to combat that scourge and impunity for those who commit such acts, and in particular to consider criminalizing the crime of femicide", - "values": [ - "4 - General action" - ] - }, - { - "text": "Strengthen actions aimed at implementing social inclusion and development policies to reduce levels of inequality and poverty", - "values": [ - "4 - General action" - ] - }, - { - "text": "Effectively guarantee the exercise of freedom of expression, association and peaceful assembly and, in this context, ensure that the law regulating demonstrations in Egypt complies with its commitments under the Covenant on Civil and Political Rights", - "values": [ - "4 - General action" - ] - }, - { - "text": "Provide more targeted social policies to help disadvantaged families, and in particular their children, so as to boost social mobility", - "values": [ - "4 - General action" - ] - }, - { - "text": "Continue working to eradicate the recruitment of children", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Sign and ratify the United Nations Convention against Corruption ", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Take all necessary measures to promote equality in education in favour of all members of minority groups, especially Roma children ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Fully implement the Anti-Human Trafficking Act No. 11 of 2008 and ensure effective investigations into the cases of sale, trafficking and abduction of children to protect them from commercial exploitation", - "values": [ - "4 - General action" - ] - }, - { - "text": "Consider reviewing the Amnesty Law put in place during the military regime.", - "values": [ - "3 - Considering action" - ] - }, - { - "text": "Enhance its engagement with its partners to better protect the rights and welfare of migrant workers and members of their families", - "values": [ - "4 - General action" - ] - }, - { - "text": "Combat more efficiently human trafficking, particularly of women and girls", - "values": [ - "4 - General action" - ] - }, - { - "text": "Continue efforts on achieving gender equality and fighting against human trafficking", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Adopt effective measures to ensure the full realization of the right to freedom of expression for all persons.", - "values": [ - "4 - General action" - ] - }, - { - "text": "We are committed to providing formerly incarcerated people with fair opportunities to rejoin their communities and become productive, law-abiding citizens. To this end, the Attorney General has called upon elected officials across the country to enact reforms to restore the voting rights of all who have served their terms in prison or jail, completed their parole or probation, and paid their fines.", - "values": [ - "4 - General action" - ] - }, - { - "text": "Take additional measures that aim at implementing labour laws that the Kingdom has ratified, especially those regarding ending all sorts of discrimination at work and equal remuneration", - "values": [ - "4 - General action" - ] - }, - { - "text": "Strengthen measures concerning the many children who continue to live on the street where they remain vulnerable to abuse ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Continue its efforts in implementing constitutional and democratic reforms ", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Allocate the human and technical resources necessary to strengthen the fight against gender violence at all levels of government and the justice system", - "values": [ - "4 - General action" - ] - }, - { - "text": "The delegation had listened in good faith to every statement and would make every effort to implement the suggestions thereon. For that purpose, it called for technical assistance and was committed to inform the Council regularly on new human rights developments.", - "values": [ - "4 - General action" - ] - }, - { - "text": "Take sufficient measures to ensure the impartiality and transparency of the judicial system, allocating sufficient funds to ensuring its effective functioning", - "values": [ - "4 - General action" - ] - }, - { - "text": "Amend article 126 of the penal code in conformity with CAT", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Accede to and fully implement the 1954 Convention relating to the Status of Stateless Persons, the 1961 Convention on the Reduction of Statelessness and the 1951 Convention relating to the Status of Refugees", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Strengthen efforts to implement the legal framework prohibiting child labour", - "values": [ - "4 - General action" - ] - }, - { - "text": "Take further measures aimed at achieving equal remuneration for men and women for the same work", - "values": [ - "4 - General action" - ] - }, - { - "text": "Investigate cases of violence against women, particularly honor crimes, take measures to ensure that the perpetrators are brought to justice and provide measures of redress to women victims", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Accept different opinion if it is expressed by human rights defenders through peaceful demonstration", - "values": [ - "4 - General action" - ] - }, - { - "text": "Ensure that human rights are afforded full legal protection ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Take all measures necessary to fully implement the CRC ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Accede to the Rome Statute of the International Criminal Court and fully implement its provisions", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Continue to implement its effective measures to prevent discrimination against women and to combat violence against them ", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Continue the efforts to combat hate speech", - "values": [ - "4 - General action" - ] - }, - { - "text": "Complete the ratification process of the International Convention for the Protection of All Persons from Enforced Disappearance (CED)", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Ratify the ILO Indigenous and Tribal Peoples Convention, 1989 (No. 169) and Domestic Workers Convention, 2011 (No. 189) ", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Review its national legislation and practice so that they comply with the principle of non-refoulement.", - "values": [ - "3 - Considering action" - ] - }, - { - "text": "Ratify and implement outstanding core international human rights treaties ", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Release immediately all persons who are detained solely on the basis of their peaceful political activity, ethnicity or religion ", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Take steps for ending forced and temporary marriages that entrap girls in sexual and domestic servitude", - "values": [ - "4 - General action" - ] - }, - { - "text": "Continue adopting measures to promote equal representation in different spheres of society, as well as efforts to eliminate wage differences based on gender, particularly in the private sector", - "values": [ - "4 - General action" - ] - }, - { - "text": "Ensure the welfare of all segments of society in an inclusive manner, including those of migrants", - "values": [ - "4 - General action" - ] - }, - { - "text": "Continue its work to strengthen independence and authority of the national judicial system", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Strengthen its ongoing Public Education Programme on Human Rights", - "values": [ - "4 - General action" - ] - }, - { - "text": "Sign or ratify the following international conventions: OP-CAT and CED ", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Resolve those cases related to confiscated properties from various religious communities", - "values": [ - "4 - General action" - ] - }, - { - "text": "Adoption of new codes - the Criminal Code, the Code of Criminal Procedure and the Code of Military Justice - bills on which have been tabled in the National Assembly (last quarter of 2009)", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Strengthen measures to ensure the full enjoyment of the rights of migrants, and the investigation and punishment of statements that incite to hate and other acts of discrimination against them, particularly those coming from officials of police, judicial and penitentiary organs as well as from immigration services", - "values": [ - "4 - General action" - ] - }, - { - "text": "Continue and strengthen, when necessary, the implementation of policies and programmes focused on the inclusion of its Roma community", - "values": [ - "4 - General action" - ] - }, - { - "text": "Take all necessary steps to enforce laws on forced labour, modern slavery and human trafficking, in particular on child trafficking", - "values": [ - "4 - General action" - ] - }, - { - "text": "Consider eventual improvements of the family support policies as well as alternative child care options in order to address the issue, inter alia, of the so-called street children ", - "values": [ - "3 - Considering action" - ] - }, - { - "text": "Take measures to amend or to eliminate cultural or traditional customs and practices, which discriminate against women", - "values": [ - "4 - General action" - ] - }, - { - "text": "Lift the reservation made to article 28, paragraph 1 (a), of the Convention on the Rights of the Child", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Continue to strengthen actions to improve access to drinking water, especially in rural areas", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Identify its specific requirements to enable it to pursue efforts aimed at promoting and protecting human rights, especially in the economic and social domains, and in this regard, call upon the international community to extend assistance and support to the Government.", - "values": [ - "1 - Minimal action" - ] - }, - { - "text": "Effectively implement its Policies and Strategies for the Prevention and Responses to Violence against Children and Youth (2015-2021) to prevent and curb violence against children, including at the provincial level ", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Be assisted by OHCHR and by the international community at large in strengthening its institutions and capacity-building efforts to help Saint Lucia meet its obligations under human rights treaties to which it is party ", - "values": [ - "1 - Minimal action" - ] - }, - { - "text": "Strengthen the promotion of understanding of a dialogue between cultures and religions as a means for the realisation of human rights", - "values": [ - "4 - General action" - ] - }, - { - "text": "Ensure the inclusion of women and girls with disabilities in all policies and programmes on equality and gender discrimination", - "values": [ - "4 - General action" - ] - }, - { - "text": "Accelerate the process of accession to the International Convention for the Protection of All Persons from Enforced Disappearance", - "values": [ - "4 - General action" - ] - }, - { - "text": "Increase the space for civil society in Rwanda. A first step should be to simplify regulations for NGOs, making it easier to register, in order to support a thriving civil society which will contribute to Rwanda's progress and prosperity", - "values": [ - "4 - General action" - ] - }, - { - "text": "Adopt measures aimed at ensuring the equal treatment of migrants, regardless of their migratory situation ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Fully implement the National Human Rights Action Plan for the period from 2009 to 2012", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Strengthen the efforts to ensure that the conditions in detention centres meet international standards", - "values": [ - "4 - General action" - ] - }, - { - "text": "Set a timeline with clear deadlines for the implementation of all Bahrain Independent Commission of Inquiry recommendations and provide regular and public reports on the progress of their implementation", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Further intensify the implementation of the National Policy for the Protection of Human Rights Defenders, and the Programme to Protect Human Rights Defenders", - "values": [ - "4 - General action" - ] - }, - { - "text": "Strengthen health care and consider the possibility of providing mobile clinics for Bedouins", - "values": [ - "4 - General action" - ] - }, - { - "text": "Swiftly ratify the Convention against Torture and Other Cruel, Inhuman or Degrading Treatment or Punishment and its Optional Protocol, ensure that domestic legislation defines torture in line with international standards, and extend an invitation to the Special Rapporteur on torture and other cruel, inhuman or degrading treatment or punishment for an official visit to the country", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Continue investing efforts in the prevention of human trafficking, with special attention to investigation and prosecution of all cases of sale and trafficking of children", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Continue to prioritize delivery of basic social services, such as primary education and health, giving particular attention to increasing access, improving infrastructure and curbing discriminatory practices, including in rural areas", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Establish a moratorium on the death penalty, as a first step towards complete abolition of this practice and accession to the Second Optional Protocol of the ICCPR ", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "In line with its tradition as a resettlement country, reverse its policies of mandatory detention and offshore processing", - "values": [ - "4 - General action" - ] - }, - { - "text": "Continue its efforts to ensure the civil and political rights of women", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Sign the two Optional Protocols to the Convention on the Rights of the Child ", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Include in the Children's Protection and Welfare Bill the prevention of the worst forms of child labour and the provision of equal access to education for all children ", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Continue its efforts to ensure universal, compulsory, free high-quality education in all areas and to reduce the financial barriers to accessing education", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Re-establish the moratorium on the death penalty", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Rapidly launch a reform process of its security forces, especially to embed extra-legal militia into the Iraqi security structure", - "values": [ - "4 - General action" - ] - }, - { - "text": "Accelerate the process of consolidating existing labour laws to, inter alia, promote the right to equal opportunities for work and at work, as well as to achieve occupational safety", - "values": [ - "4 - General action" - ] - }, - { - "text": "Implement fully the National Action Plan for the Elimination of Child Labour", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Continue its work for the full realization of human rights of the Traveller community in the country ", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Continue the work aimed at amending rules regarding the stay of proceedings in cases of \u201cminor\u201c violence in relationships and regarding the categorization of such cases", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Train public officials in human rights, in particular the police and the military, including on the excessive use of force", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Identify the causes of unemployment", - "values": [ - "4 - General action" - ] - }, - { - "text": "Pay more attention to solving the issue of under-representation of women, which subsists in many areas of society, including in decision-making.", - "values": [ - "4 - General action" - ] - }, - { - "text": "Strengthen the legal framework to combat discrimination on the basis of sexual orientation", - "values": [ - "4 - General action" - ] - }, - { - "text": "Protect women against all forms of sexual violence and ensure full respect of the Security Council resolutions on "Women, Peace and Security" in the management of the conflict, particularly by ensuring effective participation of women in the political dialogue ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Continue to draft development strategies, which Tajikistan intends to do in order to improve the standard of living", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Takes all necessary measures to ensure the effective implementation of the national human rights policy and action plan", - "values": [ - "4 - General action" - ] - }, - { - "text": "Put an end to the use of the criminal justice system to intimidate, threaten, marginalize and stigmatize journalists, social organizations and human rights defenders engaged in the defence of economic, social, cultural and environmental rights and of indigenous peoples\u2019 rights", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Ratify all significant human rights treaties, so as to reinforce the implementation of, and compliance with, international human rights law in the country", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Review migration policies that exist in the country with a view to ensure the full application of international standards ", - "values": [ - "3 - Considering action" - ] - }, - { - "text": "Consider ratification of the International Convention on the Elimination of All Forms of Racial Discrimination and International Covenant on Economic, Social and Cultural Rights ", - "values": [ - "3 - Considering action" - ] - }, - { - "text": "Continue ratifying the rest of the conventions relative to human rights that it has not ratified", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Take legal and practical steps to protect women and children from domestic violence, for example by prohibiting corporal punishment of children in all settings, including the home", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Ratify the International Covenant on Economic, Social and Cultural Rights, and its Optional Protocol", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Allocate the necessary resources for the prompt establishment of a national mechanism to prevent torture with the characteristics enshrined in OP-CAT", - "values": [ - "4 - General action" - ] - }, - { - "text": "Ratify, as early as possible, the International Convention on the Rights of All Migrant Workers and Members of Their families ", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Continue to work in the area of defence and protection of boys and girls", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Review the Penal Code so that the age of criminal responsibility is in accordance with relevant international standards", - "values": [ - "3 - Considering action" - ] - }, - { - "text": "Continue seeking development as well as technical assistance and capacity-building needs from development partners and United Nations specialized agencies with a view to finding solutions to the challenges identified as hindering the enjoyment of human rights", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Establish a moratorium on executions and reduce the number of crimes punishable by the death penalty ", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "The delegation stated that Finland was committed to reaching the goal of 0.7 per cent ODA by 2015, as set by the United Nations, and 0.51 per cent ODA by 2010, as set by the European Union.", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Respect minimum standards relating to the death penalty as long as it the latter is effectively applied", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Secure equal access to public services for migrants and minorities, including Roma ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Further strengthen measures to ensure equal access to health services for all, while giving special attention to the needs of children, women and the elderly", - "values": [ - "4 - General action" - ] - }, - { - "text": "Promote awareness-raising campaigns aimed at preventing and combating violence against women and domestic violence", - "values": [ - "4 - General action" - ] - }, - { - "text": "Ensure that children living and working on the street are provided with adequate protection, assistance, health care, education and shelter", - "values": [ - "4 - General action" - ] - }, - { - "text": "Better disseminate the Declaration on Human Rights Defenders and ensure its full observance", - "values": [ - "4 - General action" - ] - }, - { - "text": "Punish severely the perpetrators of paedophile tourism and sensitize the population to the negative effects of sex tourism", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Investigate thoroughly complaints from citizens about excessive use of force and other serious alleged abuse by the police and make public the findings of these investigations ", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Revise the legal provisions on mandatory detention of migrants and asylum seekers included in the category of irregular entries, in accordance with the recommendation of the Committee on the Elimination of Racial Discrimination (Committee on CERD) ", - "values": [ - "3 - Considering action" - ] - }, - { - "text": "Submit its national report to the Committee on the Elimination of Racial Discrimination, which is overdue since 2007", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Ensure that due process of law is observed in all judicial proceedings, including by bringing detainees before an independent judge within 72 hours and by refraining from torture and other cruel, inhuman or degrading treatment in order to extract confessions", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Improve the child anti-trafficking public campaign and put in place measures to protect victims of trafficking and put in place the necessary legal and psychosocial assistance and societal reintegration", - "values": [ - "4 - General action" - ] - }, - { - "text": "Take effective action to ensure accountability of the armed forces and law enforcement officials", - "values": [ - "4 - General action" - ] - }, - { - "text": "The State will establish a national body to deal with all human rights matters.", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Ratify the International Convention for the Protection of All Persons from Enforced Disappearance, as no country is free from cases of enforced disappearance", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Provide the necessary support, including financial, for the specialized institution to monitor the human rights situation", - "values": [ - "4 - General action" - ] - }, - { - "text": "Continue to give greater prominence to gender equality and ensure the National Women's Institute is adequately resourced ", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Accept to adhere its human rights record to the examination of the human rights experts and the relevant bodies and other United Nations mechanisms on the same manner of all members of the United Nations and in accordance with the existing rules and regulations ", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Instil a transparent, human rights-based approach related to the treatment of asylum seekers following their arrival, including the cessation of transfers to third countries", - "values": [ - "4 - General action" - ] - }, - { - "text": "Continue conducting awareness-raising activities on human rights, especially rights of women, children, minorities and migrants, to law enforcement officers", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Consider the establishment of a de jure moratorium on death penalty with a view to abolishing capital punishment in national legislation.", - "values": [ - "3 - Considering action" - ] - }, - { - "text": "Establish an accredited national human rights institution in accordance with the Paris Principles", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Continue to strengthen its institutions ", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Bring an end to segregation of Roma children in the field of education ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Implement all constitutional provisions and international obligations relating to the right to life, liberty and security of person, including by unconditionally releasing all prisoners held for their political or religious beliefs ", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Further strengthening of the judiciary by investigating all allegations of human rights violations by law enforcement officers and the police ", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Submit overdue reports to the Human Rights Committee and the Committee on the Rights of Persons with Disabilities", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Sign and ratify ICESCR, CAT, the Optional Protocol to the International Convention on the Elimination of All Forms of Discrimination against Women and CED", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Accelerate the issuance of civil society regulations to activate civil work in the areas of protecting and promoting human rights and develop the capacities of the workers in the area of human rights and guarantee their work in freedom and independence", - "values": [ - "4 - General action" - ] - }, - { - "text": "Adopt effective measures to prevent, combat and punish human trafficking", - "values": [ - "4 - General action" - ] - }, - { - "text": "Effectively implement the comprehensive national strategy to combat short- and long-term unemployment, including investment in skills development", - "values": [ - "4 - General action" - ] - }, - { - "text": "Continue seeking technical and financial assistance for demining activities, given that children continue to be among the most vulnerable sections of Lebanese society particularly in terms of their exposure to explosive remnants of war", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Consider the possibility of establishing a national human rights institution, in accordance with the Paris Principles", - "values": [ - "3 - Considering action" - ] - }, - { - "text": "Continue advancing in the organisation and extension of the education and health systems ", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Further secure the full implementation of the National Action Plan against Racism ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Enhance effectiveness of the judiciary, inter alia in terms of the length of pre-trial detention", - "values": [ - "4 - General action" - ] - }, - { - "text": "Consider granting access to primary education to the children of refugees in the country", - "values": [ - "3 - Considering action" - ] - }, - { - "text": "Continue to adopt measures in order to strengthen the Judiciary and the penitentiary system", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Sri Lanka will continue to take steps that seek to advance the empowerment of women and women's rights and gender equality at national level through the Ministry of Child Development and Women's Empowerment as well as other national mechanisms. Sri Lanka will, at the same time, support international processes that seek to advance women's rights and gender equality.", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Provide the Office of the Human Rights Commissioner with sufficient financing to fulfil its obligations", - "values": [ - "4 - General action" - ] - }, - { - "text": "Guarantee the rights to freedom of expression and assembly and ensure an inclusive debate among all stakeholders with regard to the upcoming referendum and the enactment of a new constitution", - "values": [ - "4 - General action" - ] - }, - { - "text": "Establish early a national human rights institution in conformity with the Paris Principles", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Take immediate steps to bring conditions at all detention facilities, including Her Majesty's Prison and Fort Charlotte Prison, into line with the United Nations Standard Minimum Rules for the Treatment of Prisoners", - "values": [ - "4 - General action" - ] - }, - { - "text": "Ratify and implement the African Charter on Human and Peoples' Rights", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Strengthen measures to combat violence against women, including through the effective implementation of existing legislation and the National Action Plan", - "values": [ - "4 - General action" - ] - }, - { - "text": "Abolish formally the death penalty", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Continue to decrease prison overcrowding by providing new and adequate detention facilities", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Establish legislation which penalizes early marriage, adopting appropriate measures towards its elimination", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Continue strengthening the system of the effective response and to follow up the international obligations that the Bolivarian Republic of Venezuela took upon itself in the field of human rights", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Consider ratifying the International Covenant on Civil and Political Rights", - "values": [ - "3 - Considering action" - ] - }, - { - "text": "Strengthen publicity and awareness campaigns aimed at increasing knowledge among the population about the rights of LGBT people ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Give the International Labour Organization together with the United Nations access to Uzbekistan with the aim of monitoring the development on the use of child labour and assisting with advice ", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Incorporate into anti-trafficking draft legislation a definition of trafficking in line with the Palermo Protocol, while ensuring that the scope of such legislation covers all persons, and identify and implement all appropriate measures to strike at the root cause of trafficking and sexual exploitation in Guinea-Bissau ", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Invite the Special Rapporteur on the promotion of truth, justice, reparation and guarantees of non-recurrence ", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Take the necessary measures in order for the Ministry of Women to have adequate resources to strengthen the policies for women victims of domestic violence ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Establish units for integrated assistance to victims of gender-based violence in all of the country's 32 provinces and at least one shelter in each of the country's nine regions", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Raise awareness among potential victims of racism and discrimination on the existence and scope of the General Equal Treatment Act (AGG) and of the mechanisms for invoking their rights before the courts ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Seek to increase women's political participation and representation in decision-making and women's economic empowerment", - "values": [ - "4 - General action" - ] - }, - { - "text": "Develop and implement alternate strategies to assist those being displaced as a result of the taking of land and ensure that those persons have adequate housing and access to basic services, health care and employment ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Continue to take all necessary measures to enhance the effectiveness of the protection of children, in particular in cases of sexual violence against children", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Work towards the elimination of early, forced and child marriages, in particular taking steps to further limit the circumstances in which those under 18 years of age can marry", - "values": [ - "4 - General action" - ] - }, - { - "text": "Ensure comprehensive and universal access to health services for citizens and non-citizens alike, including migrant workers, refugees, asylum seekers, indigenous peoples", - "values": [ - "4 - General action" - ] - }, - { - "text": "Accede to CAT", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Embark on a process of reform of the judiciary with a view to ensuring that it has a greater degree of independence and impartiality ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Step up efforts to further develop the human rights education system and strengthen the culture of human rights", - "values": [ - "4 - General action" - ] - }, - { - "text": "As previously recommended, provide the necessary resources and technical capacity for Zimbabwe's Human Rights Commission to function as provided for in the Constitution", - "values": [ - "4 - General action" - ] - }, - { - "text": "Include immigrant women in irregular situations in all policies aimed at the prevention of and protection against gender violence ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Begin a process leading to the ending of the death penalty punishment ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Consider extending a standing invitation to special procedures ", - "values": [ - "3 - Considering action" - ] - }, - { - "text": "Act so that the right to life and physical integrity is effectively guaranteed and all instances of the State respect and protect the right of everyone to the freedom of expression ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Double the efforts to protect children from being victimized by forced and unlawful employment, recruitment of child soldiers by militant groups, trafficking, or sexual exploitation", - "values": [ - "4 - General action" - ] - }, - { - "text": "Combat violence against women and children, by implementing existing legislation and adopting comprehensive measures to address all forms of domestic violence", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Proceed swiftly with the ratification of CEDAW", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Deepen the process of ensuring effective reparation for the wounded and the families of those killed during the revolution by providing adequate medical support and rehabilitation", - "values": [ - "4 - General action" - ] - }, - { - "text": "Eradicate in law and in practice all forms of discrimination, including traditional slavery, the caste system and develop a national strategy on slavery, as recommended by the Special Rapporteur on slavery", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Further promote awareness-raising campaigns and educational programmes in order to put an end to social rejection and stigmatization faced by unmarried pregnant women and girls", - "values": [ - "4 - General action" - ] - }, - { - "text": "Increase its efforts aiming at training and qualifying judicial staff in the area of human rights", - "values": [ - "4 - General action" - ] - }, - { - "text": "Establish a national institution for human rights in accordance with the Paris Principles, seeking international technical cooperation if necessary ", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Continue to increase education investment and provide better universal primary education", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Ratify relevant international instruments, including the Second Optional Protocol to the International Covenant on Civil and Political Rights, aiming at the abolition of the death penalty, and take the necessary steps to remove the death penalty from Mongolia's justice system ", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Lift the state of emergency that has been in effect since 1981 and replace the Emergency Law with a counterterrorism law that guarantees civil liberties", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Accede to the Optional Protocol to the Convention against Torture and other Cruel, Inhuman or Degrading Treatment or Punishment", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Review and update laws that could lead to self-censorship, such as the Sedition Proclamation and the Internal Security (General) Act, to ensure compliance with international human rights obligations", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Design and adopt programmes of action on child labour, as requested by the Committee on the Rights of the Child and ILO.", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Continue strengthening the policies aimed at protecting women", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Further strengthen institutional and legislative measures to address inequality and disparities affecting persons belonging to vulnerable groups particularly in rural areas, in terms of access to education, health and employment", - "values": [ - "4 - General action" - ] - }, - { - "text": "Take measures to ensure the independence of the judiciary", - "values": [ - "4 - General action" - ] - }, - { - "text": "Continue taking steps to prevent violence against children, child labour and trafficking", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Improve the living standards and conditions in prisons", - "values": [ - "4 - General action" - ] - }, - { - "text": "Take measures for the establishment of a national institution for the promotion and protection of human rights in accordance with the Paris Principles, in particular with regard to its Constitutional protection", - "values": [ - "4 - General action" - ] - }, - { - "text": "Respect the principle of non-refoulement", - "values": [ - "4 - General action" - ] - }, - { - "text": "Foster strong coordination among the Ministries of Health, Justice and Interior through a formal mechanism to combat gender-based violence and ensure judicial, law enforcement, and other officials are properly trained on all forms of gender-based violence and discrimination", - "values": [ - "4 - General action" - ] - }, - { - "text": "Pursue its cooperation with human rights mechanisms", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Take further measures to combat racist manifestations, in particular against Roma people ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Establish an independent national human rights commission.", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Take measures in conformity with its legislative process for the ratification of the human rights instruments it has already signed.", - "values": [ - "4 - General action" - ] - }, - { - "text": "Continue its efforts in the fight against impunity in favour of the security of citizens.", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Adopt a gender-specific approach in Armenia's policies and programmes ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Continue with its efforts to establish a national human rights institution in line with the Paris Principles", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Amend the economic aid law and the property law so that they in no circumstances discriminate against women ", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Ensure that all cases of violence against women and girls are investigated and that perpetrators are brought to justice", - "values": [ - "4 - General action" - ] - }, - { - "text": "Ensure that the National Human Rights Commission is able to discharge its functions fully, in accordance with the Paris Principles, as previously recommended", - "values": [ - "4 - General action" - ] - }, - { - "text": "Harmonize the various laws on the rights of indigenous peoples, particularly regarding their access to land and natural resources ", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Take further steps to address discrimination against women and vulnerable groups, including children.", - "values": [ - "4 - General action" - ] - }, - { - "text": "Ratify the Optional Protocol to the Convention on the Rights of the Child on the sale of children, child prostitution and child pornography and the Convention on the Rights of Persons with Disabilities ", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Commitments undertaken to promote the collective rights of afro-Ecuadorian and indigenous peoples, dissemination through a broad process of the outcome of the conference on the elimination of racial discrimination to be held next year in Geneva, adoption of the recommendations made by the Special Rapporteur on the situation of human rights and fundamental freedoms of indigenous people with regard to free and equal access to services in the administration of justice", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Adopt a relevant law to create appropriate conditions for the integration of the Meskhetian Turks returnees", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Establish a moratorium on the death penalty with a view to its abolition and sign and ratify the ICCPR-OP 2", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Continue the efforts to bring to justice perpetrators of crimes against humanity", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Develop a national institution for human rights to bring it in full compliance with the Paris Principles, by adopting the necessary legislation", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Extend an open and standing invitation to the special procedures of the Human Rights Council ", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Continue to prioritize the areas contained in the Strategic Framework for Growth and Combating Poverty and that the necessary resources are allocated for its implementation", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Continue to adopt measures in order to reduce effectively maternal mortality rate and child and infant mortality rates ", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Continue efforts to align training programmes for all government officials with international human rights law and incorporate more training in child rights into professional development courses", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Intensify its efforts to access to education for indigenous peoples and other disadvantaged communities and groups", - "values": [ - "4 - General action" - ] - }, - { - "text": "Take measures to create and strengthen the system of public care for boys, girls and adolescents who need such care, to ensure that they stay in the system until the age of 18 years as needed and that they are prepared for successful reintegration into society ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Enhance its efforts to promote and raise awareness of the culture of human rights", - "values": [ - "4 - General action" - ] - }, - { - "text": "Eliminate the use of corporal punishment as criminal punishment", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Expand support to human rights education and training initiatives, particularly for law enforcement officials handling migration issues", - "values": [ - "4 - General action" - ] - }, - { - "text": "Allow unimpeded access to all regions to ICRC, the Special Rapporteur on the situation of human rights in Myanmar, other United Nations envoys and humanitarian organizations ", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Criminalize the recruitment of children and investigate all the reports of recruitment of children by the security forces, ensuring that perpetrators are brought to justice and duly prosecuted", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Improve engagement with civil society groups, including youth and women's associations, to boost human rights ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Continue to actively engage its international partners with the view to seek technical and other assistance to build and strengthen institutional and operational capacities for human rights", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Continued action in eradicating extreme poverty ", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Ensure that all asylum-seekers in Ireland can effectively accede to the process of determination of their refugee condition and that decisions on the necessity for international protection can be reviewed and are subject to independent judicial supervision", - "values": [ - "4 - General action" - ] - }, - { - "text": "Ensure that the national Human Rights Commission becomes operational as soon as possible and that its operation be in line with the Paris Principles ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Try to promote gender equality, improve the status of women and eliminate violence against women ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Take additional measures to fight discrimination against homosexuals and persons living with HIV-AIDS.", - "values": [ - "4 - General action" - ] - }, - { - "text": "Legislation for the eradication of FGM as well as to take effective measure to raise awareness of the people", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Take necessary steps to prevent any actions that may lead to the stigmatization of migrants, asylum-seekers and ethnic or religious groups living in Germany in the context of political discourse, and address its role as a country of immigration by explicitly acknowledging the positive contribution of immigrants to German society", - "values": [ - "4 - General action" - ] - }, - { - "text": "Reinforce work for maternal and child health ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Further evaluate the status of the national human rights institution to bring it into full compliance with the Paris Principles, category A status", - "values": [ - "4 - General action" - ] - }, - { - "text": "Align all articles of the Penal Code and other laws with international standards, particularly with regard to freedom of expression ", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Continue its efforts to consolidate relations amongst the different ethnic groups in Russia ", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Further strengthen its measures to protect children and youths from all forms of violence", - "values": [ - "4 - General action" - ] - }, - { - "text": "Ensure the implementation of its obligations under international humanitarian law vis-a-vis Palestinian people ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Continue the efforts in the fight against exclusion and discrimination against persons with disabilities", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Strengthen the capacities of its National Human Rights Commission, make it more independent and bring it in conformity with the Paris Principles", - "values": [ - "4 - General action" - ] - }, - { - "text": "Ratify Additional Protocol III of the Geneva Conventions of 12 August 1949 ", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Create a comprehensive system for the collection of data that would allow assessing the situation of vulnerable groups and minorities ", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "The delegation reiterated Government's commitment to respect civil and political rights and to enable every Guinean citizen to enjoy them fully, in particular in view of the forthcoming elections. It added that it was important to consolidate and expand those rights. ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Extend its human rights education and awareness programmes to all sections of the population", - "values": [ - "4 - General action" - ] - }, - { - "text": "End conflict and violence and reach a political solution through dialogue and national reconciliation in order to bring Syria back to a normal situation", - "values": [ - "4 - General action" - ] - }, - { - "text": "Consider instituting more programs to further facilitate access by domestic workers and migrants to basic social services and just conditions of work ", - "values": [ - "3 - Considering action" - ] - }, - { - "text": "Expand further the ongoing efforts to provide medical facilities and access to vulnerable groups, particularly women and girls, in rural areas, as part of the overall effort to achieve universal health coverage in Pakistan", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Harmonize the legislation to eliminate all forms of discrimination against women, notably to ensure equality relating to inheritance and land rights", - "values": [ - "4 - General action" - ] - }, - { - "text": "Consider revising the current legislation on "combating extremism" so as to define precisely the crime of extremism and apply it only in relevant cases in full compliance with international obligations ", - "values": [ - "3 - Considering action" - ] - }, - { - "text": "Consider making further efforts to train law enforcement officials, judges and police officers in the area of human rights", - "values": [ - "3 - Considering action" - ] - }, - { - "text": "Adopt measures to ensure that women can acquire, transfer, change or preserve their nationality and transfer it to their children born abroad, such that these children could be recognised by law through birth registration", - "values": [ - "4 - General action" - ] - }, - { - "text": "Take further measures to protect the environment and human health in the context of ensuring effective ways of sustainable development ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Continue its efforts in harmonizing its Criminal Code, particularly those articles related to torture, in line with the relevant international human rights instruments ", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Consider acceding to the Convention against Torture", - "values": [ - "3 - Considering action" - ] - }, - { - "text": "Adopt, as soon as possible, the road map that guides political alternation at the end of the mandate of the Transitional Federal Institutions and consider that it should include principles of good governance, creation of institutional capacity and provision of basic social services ", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Enact legislation to combat domestic violence and sexual violence and to ban female genital mutilation", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Address the problems of street children by providing them state protection and vocational training", - "values": [ - "4 - General action" - ] - }, - { - "text": "Continue to raise, in the negotiations with international lenders, the need to protect economic, social and cultural rights in the context of the national assistance program, bearing in mind that the institutions involved, including international financial institutions, should fully take into consideration Greece's obligations under the relevant human rights treaties", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Continue its efforts to finalize and submit the Children's Bill", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Consider establishing a national human rights institution compliant with the Paris Principles and provided with the necessary resources to adequately carry out its mandate", - "values": [ - "3 - Considering action" - ] - }, - { - "text": "Review the procedures applicable to the blasphemy laws with a view to containing abuses", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Consider the ratification of the International Convention on the Protection of the Rights of All Migrant Workers and Members of Their Families and the Optional Protocol to the Convention against Torture and Other Cruel, Inhuman or Degrading Treatment or Punishment", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Enhance its cooperation programmes with developing countries ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Adequate financing of the new gender equality institution, promotion of its role through public awareness campaigns, and improvement in data collection on gender equality, domestic violence and violence against women and children", - "values": [ - "4 - General action" - ] - }, - { - "text": "Take urgent steps to incorporate the prohibition of female genital mutilation in its law and enforce it", - "values": [ - "4 - General action" - ] - }, - { - "text": "Pursue justice-system reforms, in particular with regard to strengthening the independence of the judiciary with focus on eliminating corruption and political interference ", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Implement a national strategy to tackle the trafficking of women and girls, while building on its excellent work to ensure the effective protection of all workers, including migrant workers, against discrimination, and to ratify the 2014 protocol to the Forced Labour Convention, 1930 of the International Labour Organization", - "values": [ - "4 - General action" - ] - }, - { - "text": "Strengthen measures to protect children through adequate investigations, timely prosecutions, sufficient penalties in cases of child trafficking, and implementation of legislation prohibiting the use of children for begging for the purposes of economic exploitation, in line with its obligations under international treaties and instruments", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Ratify the Optional Protocol to ICCPR (ICCPR-OP-1) as soon as possible", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Review its criminal law legislation to abolish the death penalty in order to reflect its international commitment done by the ratification of the Second Optional Protocol to the International Covenant on Civil and Political Rights", - "values": [ - "3 - Considering action" - ] - }, - { - "text": "Intensify its efforts to ratify the Optional Protocol to the Convention on the Elimination of All Forms of Discrimination against Women", - "values": [ - "4 - General action" - ] - }, - { - "text": "Further the development of its interaction with the system of special rapporteurs, including through responding to their communications ", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Enforce anti-discrimination legislation, taking special measures to foster the integration of national and ethnic minorities into society", - "values": [ - "4 - General action" - ] - }, - { - "text": "Consider alternative measures to the detention of migrants that will be less restrictive of the human rights of the individuals concerned", - "values": [ - "3 - Considering action" - ] - }, - { - "text": "Continue pursuing child protection measures", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Strengthen the respect for human rights throughout the country especially in the area of health and education for everyone", - "values": [ - "4 - General action" - ] - }, - { - "text": "Take the necessary measures to ensure access to education for all, in particular for populations in remote zones", - "values": [ - "4 - General action" - ] - }, - { - "text": "Sign and ratify the Optional Protocol to the Covenant on Economic, Social and Cultural Rights", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Prevent and combat all kind of discrimination, in particular those on the grounds of ethnicity and sexual orientation", - "values": [ - "4 - General action" - ] - }, - { - "text": "Cooperate regionally in the field of National Human Rights Institutions ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Continue its efforts to bring about gender equality and empowerment of women", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Increase awareness-raising programmes and campaigns to promote tolerance and respect for cultural diversity ", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Consider adopting measures to enhance the fight against domestic violence", - "values": [ - "3 - Considering action" - ] - }, - { - "text": "Continue its fight against any form of violence against children, women, migrants, and persons with disabilities", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Ratify the Optional Protocol to the Convention Against Torture ", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Guarantee that the new constitution clearly and expressly recognizes the fundamental principle of the separation of powers, establishes checks and balances and guarantees the independence of the judiciary and the courts, while ensuring that all stakeholders have a place at the table when drafting the new constitution", - "values": [ - "3 - Considering action" - ] - }, - { - "text": "Adopt all necessary measures to combat effectively the child labour and trafficking of children ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Accelerate the adoption of the norms related to preventing and combating domestic violence and elaborate coordinated policies in order to prevent and combat domestic and sexual violence, including support mechanisms and norms for the protection of victims", - "values": [ - "4 - General action" - ] - }, - { - "text": "Intensify the Government's efforts with a view to the most effective protection possible against the risk of child sexual abuse", - "values": [ - "4 - General action" - ] - }, - { - "text": "The delegation reaffirmed the commitment of the Bahamas to continue to work with the human rights treaty bodies and the Council to ensure that there was constructive dialogue and to enhance the capacity of the Bahamas to carry out its reporting obligations under international human rights instruments.", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "End school segregation on the basis of ethnicity, as well as review and revise school curriculums and textbooks with a view to promoting intercultural understanding and appreciation for the history and religion of all ethnic groups and national minorities", - "values": [ - "4 - General action" - ] - }, - { - "text": "Expedite the operationalization of the National Policy and Action Plan on Human Rights for more concrete action in this regard", - "values": [ - "4 - General action" - ] - }, - { - "text": "Continue its efforts to accelerate the achievement of the MDGs targets, particularly those health related MDGs ", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "That a national action plan for the protection of the human rights of LGBTI persons in Slovakia is developed and implemented, within the context of the planned human rights strategy ", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Ensure that the implementation of the national action plan for gender equality continues to be fully ensured by all sectors of the Government", - "values": [ - "4 - General action" - ] - }, - { - "text": "Continue current positive steps to promote equality and non-discrimination in the national minorities in the country.", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Revoke the law criminalizing consensual sex between adults of the same sex", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Implement a comprehensive rights-based criminal and prison policy as well as policies designed to eradicate prison violence ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Accompany the implementation of the Convention on the Rights of Persons with Disabilities with sufficient funds and concrete indicators through a new national disability policy (VAMPO) that continues the 2010-2015 policy", - "values": [ - "4 - General action" - ] - }, - { - "text": "Uphold the implementation of the Anti-Discrimination Law ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Establish the Anti-Gender-Based Violence Fund as provided for in the Act of 2011", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Continue public information campaigns to combat domestic violence, and above all violence against women", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Redouble its efforts to eradicate the problem of violence against women, in all its forms", - "values": [ - "4 - General action" - ] - }, - { - "text": "Carry on supporting the rights of the child", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Remove any rule authorizing corporal punishment and incorporate effective sanctions for such practices, as well as carry out general awareness-raising campaigns against ill-treatment of children that emphasize the peaceful resolution of violent relationships", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Ensure implementation of new measures to improve the business and investment climate in the country", - "values": [ - "4 - General action" - ] - }, - { - "text": "Make further efforts to ensure safety in prisons for both men and women", - "values": [ - "4 - General action" - ] - }, - { - "text": "Sign and ratify the 1954 Convention relating to the Status of Stateless Persons and the 1961 Convention on the Reduction of Statelessness", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Eliminate all forms of de facto discrimination against children belonging to economically disadvantaged families ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Re-establish a moratorium on executions with a view to a complete abolition of the death penalty", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Amend the 2011 Transnational Crime Bill to prohibit all forms of human trafficking by removing migration as a necessary element of human trafficking, prescribe penalties that are commensurate with those prescribed for other serious crimes, and publicly report any investigations, prosecutions, convictions, or sentences of trafficking offenders under this law, or other statute ", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Ensure that all detainees are tried without undue delay or freed if no accusation is presented", - "values": [ - "4 - General action" - ] - }, - { - "text": "Involve social partners in the drafting of the new labour law, which addresses new employment challenges, in line with international labour standards", - "values": [ - "4 - General action" - ] - }, - { - "text": "Accelerate the process of withdrawal of reservations to the Convention on the Elimination of all Forms of Discrimination against Women", - "values": [ - "4 - General action" - ] - }, - { - "text": "Take effective steps to reduce the high maternal mortality rate", - "values": [ - "4 - General action" - ] - }, - { - "text": "Continue its positive efforts in ensuring effective implementation of its National Human Rights Plan, including by seeking necessary technical and financial assistance", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Continue its global and integrated approach in all policies of gender equality in all areas and take necessary measures to increase participation of women in public and political life ", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Expedite the development of a concrete national implementation framework on human rights", - "values": [ - "4 - General action" - ] - }, - { - "text": "Take further steps to ensure the full implementation of the protection from abuse system law. This would call for a clear definition of abuses and harms under the law, so that it can provide an effective mechanism and guarantee for the protection of victims", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Reconsider its decision and permit broadcasting by non-Azeri outlets on FM frequencies", - "values": [ - "3 - Considering action" - ] - }, - { - "text": "Try to respond in a timely manner to the questionnaires sent by the special procedures.", - "values": [ - "4 - General action" - ] - }, - { - "text": "Adhere to and align national legislation with the Rome Statute, including through the incorporation of provisions to cooperate promptly and fully with the International Criminal Court", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Ratify the Optional Protocol on the Convention Against Torture (OPCAT)", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Accelerate the reforms aimed at ensuring the independence of the judiciary ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Implement reforms to ensure everyone has a right to the enjoyment of the highest attainable standard of health in Poland ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Increase efforts to provide effective assistance to women and girls who are victims of violence, in particular through the provision of safe places and psychological support \n\n", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Promote equal opportunities for ethnic and national minorities, in particular in the area of education, vocational training and employment", - "values": [ - "4 - General action" - ] - }, - { - "text": "Review its legislation and practices, ensuring that they comply fully with the principle of non-refoulement, and to ensure the accountability of persons responsible for any violation thereto", - "values": [ - "3 - Considering action" - ] - }, - { - "text": "Adopt special measures for the realisation of collective rights of indigenous peoples and the adoption of mechanisms to ensure their right to be consulted ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Harmonize national policies with the Convention on the Elimination of All Forms of Discrimination Against Women, principally with regard to the elimination of female genital mutilation", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Reinforce its campaign to raise awareness of human rights issues through the media, at the school level, in youth forums and in community activities", - "values": [ - "4 - General action" - ] - }, - { - "text": "Spare no effort to promote the holistic development of its children and youths, in particular those from the most vulnerable families to enhance social mobility and to break the vicious intergenerational cycle of poverty", - "values": [ - "4 - General action" - ] - }, - { - "text": "Establish an office of the children's ombudsman", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Adopt an anti- discrimination law to replace the law that was suspended in May 2008", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Enhance efforts to provide adequate protection to human rights defenders and to improve the human rights situations of ethnic and religious groups in certain regions, including Papua ", - "values": [ - "4 - General action" - ] - }, - { - "text": "In cases when the Finnish authorities decide that the separation of children from their natural family is necessary for the best interests of the child, adopt that measure according to a decision taken by a judicial authority, as required by the provisions of article 9 of the Convention on the Rights of the Child", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Strengthen human rights training aimed at teachers in order to eliminate discriminatory treatment of children of specific castes, as well as appropriately follow-up on the results of the training that has occurred thus far ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Combat trafficking, punish perpetrators and compensate and rehabilitate victims", - "values": [ - "4 - General action" - ] - }, - { - "text": "Implement reforms to reduce processing times for judicial cases and reduce perceptions of unfairness in the judicial system", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Widely distribute information on available domestic remedies against acts of racial discrimination and the legal means available for obtaining compensation in the event of discrimination ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Prohibit, by law, all forms of violence against children, including corporal punishment, as well as establish a minimum legal age for marriage ", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Ensure the effective prosecution of all forms of violence against women. ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Establish a formal system for granting asylum or otherwise recognizing refugee status, and remove the present geographic limitation ", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Further accelerate the reform of the justice system to ensure equal treatment for all citizens while continuing to pay specific attention to women and children ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Implement strict judicial measures to fight impunity, including the investigation and prosecution of racial hatred and related violence through criminal legal proceedings and other measures ", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Enhance its efforts to further promote the human rights of minorities, including citizens of Arab origin, by promoting their participation in politics, the economy and various sectors of society as well as by ensuring their equal access to education, health care and other social services", - "values": [ - "4 - General action" - ] - }, - { - "text": "Devote more efforts in the field of harmonizing gender equality for guaranteeing their equal rights", - "values": [ - "4 - General action" - ] - }, - { - "text": "Accede to the International Covenant on Economic, Social and Cultural Rights", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Further consolidate its national human rights infrastructure, including support to the Commission on Human Rights ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Invite the Special Rapporteur on torture and other cruel, inhuman or degrading treatment or punishment as well as the Special Rapporteur on the independence of judges and lawyers, the Special Rapporteur on the right of everyone to the enjoyment of the highest attainable standard of physical and mental health and the Special Rapporteur on extreme poverty and human rights", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Continue cooperation with civil society in capacity-building and further improve people's lives", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Strengthen its human rights infrastructure ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Continue efforts to protect workers\u2019 rights to safe and healthy working conditions", - "values": [ - "3 - Considering action" - ] - }, - { - "text": "Continue its efforts to effectively implement its existing National Action Programmes and enforce legislation recently adopted ", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Extend its sovereign jurisdiction to the protection of the people of the country and take concrete steps to eliminate all negative forces operating in the eastern part of the country", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Integrate programmes and projects aimed at benefiting Afrodescendant populations into different development plans ", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Remove restrictions on civil society, including the prohibition on NGOs receiving foreign funds, restrictions on volunteer work outside business hours, and obstacles to official registration of NGOs, in line with the rights to freedom of association and of expression", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Commit fully to the implementation of the United Nations Convention on the Elimination of All Forms of Discrimination Against Women", - "values": [ - "4 - General action" - ] - }, - { - "text": "Continue to implement the positive ongoing programs and efforts aimed at repairing and constructing the houses of persons affected by hurricanes, with a view to guaranteeing the full enjoyment of the right to an adequate housing, including with the assistance of the international community, which is called upon to ensure adequate financial and material support to those programmes", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Continue its efforts to strengthen the role of women in society and to include women in an effective manner in the development process, supporting women to enable them to participate in economic activities in the country", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Establish a mechanism under which victims of gender-based violence can file for protection orders in towns and villages where there is no magistrate, and under which protection orders can be filed outside of designated court hours", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Improve school enrolment rates by removing all obstacles to access to primary education", - "values": [ - "4 - General action" - ] - }, - { - "text": "Adopt more effective anti-trafficking measures and further evaluate measures already in use to limit human exploitation, including efforts to protect victims and to prosecute offenders of human trafficking ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Better educate security and law enforcement authorities at all levels about the basic rights of the citizens, take each reported case seriously and impartially investigate and punish those found guilty of such actions ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Redouble efforts to combat forced labour and sexual trafficking", - "values": [ - "4 - General action" - ] - }, - { - "text": "Step up the process of ratifying the International Convention on the Protection of the Rights of all Migrant Workers and Members of Their Families", - "values": [ - "4 - General action" - ] - }, - { - "text": "Continue its efforts on capacity-building programmes of law enforcement officials in strengthening the implementation of existing laws, policies and measures relating to human rights ", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Take further measures to prevent trafficking in persons in investigating and prosecuting offenders and provide effective support and redress to victims, as well as step up efforts to raise awareness about human trafficking", - "values": [ - "4 - General action" - ] - }, - { - "text": "Significantly improve its cooperation with the United Nations treaty bodies by agreeing on timelines for submitting overdue reports and, if need be, identify needs for assistance to that end ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Take additional and concrete efforts to eradicate human trafficking, prosecute traffickers under criminal law and protect and provide victims with adequate support throughout the criminal proceedings", - "values": [ - "4 - General action" - ] - }, - { - "text": "Abolish and amend all laws that encourage and permit the practice of forced, early and temporary marriages of young girls", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Pay special attention to agriculture, including subsistence farmers, in the context of the next Poverty Reduction Programme (PARP) ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Redouble its efforts under the project to reform the educational system, including by redressing the gap in school attendance between males and females working to effectively guarantee the rights of women and girls in the field of education by addressing societal and cultural constraints.", - "values": [ - "4 - General action" - ] - }, - { - "text": "Take effective action to protect women and children from sexual violence, including by strengthening and implementing legislation against domestic violence and providing counselling services and safe places for victims ", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Cooperate with the international community in order to achieve progress with regard to promotion and protection of human rights and fundamental freedoms in the country ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Carry out an assessment of plans of action on human rights and ensure that these instruments are effective in practice", - "values": [ - "3 - Considering action" - ] - }, - { - "text": "Implement the national plan of action to promote gender equality and strategies to address gender-based violence ", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Bring its domestic legislation relating to the protection of the rights of children, especially in cases of child prostitution, child pornography, and child victims of trafficking, in line with its obligations under the CRC ", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Continue the campaign put in case for the widespread access to potable water and electricity in the rural area ", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Review and reform the criminal code in order to define and penalize the offence of torture ", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Adopt measures to end violations to due process in judicial proceedings", - "values": [ - "4 - General action" - ] - }, - { - "text": "Continue implementing comprehensive social assistance programmes, aiming at reducing poverty and inequalities in the distribution of income ", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Allow and support safe and timely access to all those in need of assistance in areas under the control of the Government ", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Pursue the steps aimed at creating an NHRI ", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Continue its policies against trafficking ", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Continue supporting the United Nations humanitarian funds", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "In light of the priorities established in the fight against domestic violence, take those effective measures that it deems appropriate for the realization of the emancipation of women, in particular through education and integration in the labour market, and extend them to rural areas ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Establish measures to promote tolerance of ethnic and religious diversity in society", - "values": [ - "4 - General action" - ] - }, - { - "text": "That the process of reviewing the constitution is conducted in an open and accountable manner, which includes the general public as well as the national parliament and Zanzibar's House of Representatives ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Provide the National Action Child Protection Committee (NACPC) with sufficient authority and resources to effectively implement and coordinate comprehensive, coherent and consistent child rights policies ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Consider potential areas of expansion for the National Council on Social Issues to enable it to further promote respect for fundamental rights and freedoms for all Brunei Darussalam Darussalam's citizens ", - "values": [ - "3 - Considering action" - ] - }, - { - "text": "Take all necessary measures to ensure the full and sustainable protection of indigenous peoples and peoples of African descent, in terms of both physical security and land rights", - "values": [ - "4 - General action" - ] - }, - { - "text": "Facilitate effective monitoring in addition to reporting violations against children in armed conflict by the United Nations country team ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Reject the proposed amendment to the media law to ensure a safe operating environment for journalists", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Continue to develop laws and policies to combat sexist violence", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Continue to raise awareness of the needs of the Roma population, including children, and establish an adequate system that provides for their social and educational inclusion", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Adopt public policies to achieve the full political and economic participation of women in Panamanian society", - "values": [ - "4 - General action" - ] - }, - { - "text": "Introduce legislation that will decriminalize sexual relations between consenting adults of the same sex", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Continue the implementation of the provisions of the Second Optional Protocol to the International Covenant on Civil and Political Rights, aiming at the abolition of the death penalty, and abandon plans to restore the death penalty as a legal punishment", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Take measures to reduce trafficking in children, to raise the age of criminal responsibility and to eradicate corporal punishment of children ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Ratify the 1951 Convention relating to the Status of Refugees and its 1967 Protocol, as previously recommended", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Make progress in implementing the initiatives to prevent sexual and gender violence, especially among the displaced population, which have been developed by the Ministry of Gender and Women's Rights", - "values": [ - "4 - General action" - ] - }, - { - "text": "Ensure adequate access to information on sexual and reproductive rights for women and girls", - "values": [ - "4 - General action" - ] - }, - { - "text": "Immediately introduce an alternative military service option for conscientious objectors, ensuring it has a non-combatant or civilian character and is not of a punitive nature", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Reduce the number of offences punishable by the death penalty.", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Further strengthen CHRAJ for its compliance with the Paris Principles", - "values": [ - "4 - General action" - ] - }, - { - "text": "Take action to progress its commitment to establish a National Human Rights Institution in accordance with the Paris Principles", - "values": [ - "4 - General action" - ] - }, - { - "text": "Implement the calls by, inter alia, the Human Rights Committee and the Committee on the Rights of the Child to establish a human rights institution in accordance with the Paris Principles as soon as possible.", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Toughen its efforts to prevent religion and hate crimes as it is evident that the crimes are on the increase", - "values": [ - "4 - General action" - ] - }, - { - "text": "Step up efforts to rehabilitate and reintegrate offenders, including through the introduction of formal education programmes in prisons", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Reinforce its efforts to protect children, especially those in marginalized and disadvantaged situations", - "values": [ - "4 - General action" - ] - }, - { - "text": "Continue to study and consider the ratification of more international human rights instruments", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Continue its efforts to combat trafficking in human beings, and pay special attention to its victims", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Make efforts to accelerate the process of ratification of the Optional Protocol to the International Covenant on Economic, Social and Cultural Rights", - "values": [ - "4 - General action" - ] - }, - { - "text": "Guyana voluntarily commits to continue to actively consider those remaining international human rights instruments.", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Strengthen measures and take further concrete steps to deal with domestic violence against women by, inter alia, giving adequate follow-up to complaints, providing sufficient resources for proper evidence gathering and ensuring the prosecution of offenders ", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Continue to develop the necessary efforts to fully guarantee the rights to legal, social and economic reparation to victims of violence perpetrated in Peru, between 1980 and 2000", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Ensure that Decrees No. 982 and No. 812, with regard to the freedom of association, freedom of assembly and freedom of expression, are not applied to block the legitimate work of NGOs ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Continue efforts to establish a national human rights institution in accordance with the Paris Principles", - "values": [ - "4 - General action" - ] - }, - { - "text": "Intensify actions and adopt broad measures to combat violence against women, children, young people and lesbian, gay, bisexual and transgender persons", - "values": [ - "4 - General action" - ] - }, - { - "text": "Enhance efforts to fight all forms of discrimination against women by ensuring effective implementation of the existing legislation, by implementing a policy of equal work for equal pay and by developing a comprehensive national strategy to facilitate equal access of girls and women to all levels and fields of education", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Ratify the Convention against Torture and Other Cruel, Inhuman or Degrading Treatment or Punishment and ensure its full implementation in law and practice", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Continue efforts to guarantee better access to education and to health care for the people, including for indigenous peoples", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Take necessary steps to ensure the accessibility of the sexual and reproductive health services in Government facilities", - "values": [ - "4 - General action" - ] - }, - { - "text": "Continue defending the rights of its people to address the imposed economic sanctions", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Accelerate the processes of ratification of different instruments for human rights protection with a special emphasis on the International Covenant of Economic, Social and Cultural Rights and the International Covenant of Civil and Political Rights", - "values": [ - "4 - General action" - ] - }, - { - "text": "Continue and intensify measures for illiteracy reduction and for the access of girls and women to all levels of education and teaching ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Consider an early ratification of the third Optional Protocol to the CRC on a communication procedure ", - "values": [ - "3 - Considering action" - ] - }, - { - "text": "Ratify CAT and its Optional Protocol, and consider designating the national human rights institution, when established, as the country's national preventive mechanism ", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Include in the national penal legislation a clear definition of torture and ensure its strict criminalization", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Establish a separate centralised mechanism for the preparation of national human rights reports", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Continue its efforts to promote and protect human rights while also safeguarding the institution of the family in all its component parts, and to preserve religious tolerance ", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "To seize the CNCDH as often as possible in the context of law-making so that it efficiently assumes its advisory role", - "values": [ - "4 - General action" - ] - }, - { - "text": "Expand its policies aimed at creating income-generating opportunities for women, and improve working conditions of women in the private and informal sectors ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Improve overall conditions of prisons and adopt relevant measures to tackle the problems such as overcrowding, unsatisfactory state of prisons and shortcomings in the supply of health care ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Pursue its efforts in the area of economic, social and cultural rights, particularly in the area of the right to education", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Fully implement the National Action Plan for Children 2008-2015 entitled "Algeria worthy of children" ", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Continue to engage in a national dialogue with a view to promoting respect for diversity and tolerance in line with its obligation under the ICCPR ", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Consider amending the Code of Pleadings and Criminal Procedures with a view to preventing criminal and civil prosecutions of third parties that could lead to curbs being placed on freedom of thought and creativity.", - "values": [ - "3 - Considering action" - ] - }, - { - "text": "Ensure the full applicability and incorporation in the domestic legal system of the CEDAW", - "values": [ - "4 - General action" - ] - }, - { - "text": "Enforce existing criminal laws including ensuring that perpetrators of gender-based violence and bride kidnapping and abductions are brought to justice", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Establish and implement comprehensive measures to prevent violence against women and implement effective measures of support for victims of domestic violence", - "values": [ - "4 - General action" - ] - }, - { - "text": "Continue its close collaboration with civil society in its follow-up and implementation of UPR recommendations ", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Consider further strengthening of the national human rights institution ", - "values": [ - "3 - Considering action" - ] - }, - { - "text": "Take steps to address reported allegations of child and early and forced marriages", - "values": [ - "4 - General action" - ] - }, - { - "text": "Expedite finalization of the draft domestic violence bill ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Study the possibility to establish new measures to strengthen respect for the rights of persons with disabilities and fight against the discrimination with which they are faced ", - "values": [ - "3 - Considering action" - ] - }, - { - "text": "Cease the use of caning as a form of punishment", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Expedite the ongoing measures for combating child sex tourism", - "values": [ - "4 - General action" - ] - }, - { - "text": "Take measure to ensure the independence of the judiciary, including by means of eradicating the system of presidential decisions on the appointment of judges", - "values": [ - "4 - General action" - ] - }, - { - "text": "Guarantee a safe and enabling environment for journalists and human rights defenders and ensure that all cases of attacks against them are investigated by independent and impartial bodies", - "values": [ - "4 - General action" - ] - }, - { - "text": "Consider strengthening efforts to combat violence against women, including domestic violence and trafficking in women and children, by, inter alia, ensuring the full implementation of related laws and legislation ", - "values": [ - "3 - Considering action" - ] - }, - { - "text": "Take measures to improve detention conditions of migrant- children and ban legally the practice of detaining those children ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Seek the technical advice of the United Nations High Commissioner for Refugees to identify, prevent and reduce statelessness, protect stateless persons and address the statelessness situation ", - "values": [ - "1 - Minimal action" - ] - }, - { - "text": "Take further efforts towards the accession of the Optional Protocol to the CRC on the involvement of children in armed conflict ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Reinforce the measures to protect the rights and interests of children victims and witnesses of offences prohibited by the Optional Protocol to the Convention on the rights of the Child relating to the sale of children, child prostitution and child pornography, in line with CRC recommendations", - "values": [ - "4 - General action" - ] - }, - { - "text": "Expand appropriate employment opportunities for women and ensure equal pay for men and women, while taking the necessary measures to promote the participation of women in political life ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Ensure that national legislation is in line with international human rights standards", - "values": [ - "4 - General action" - ] - }, - { - "text": "Consider imposing a moratorium on the application of the death penalty with a view to abolishing it", - "values": [ - "3 - Considering action" - ] - }, - { - "text": "Advance in the adoption of a law prohibiting discrimination against women and establish a legal framework that favours political and economic participation of women on equal terms", - "values": [ - "4 - General action" - ] - }, - { - "text": "Direct more attention and allocate more resources for the improvement of the quality of education", - "values": [ - "4 - General action" - ] - }, - { - "text": "Extend the access and improve the quality of services of prenatal, postnatal and obstetrics health care, in order to reduce the maternal mortality rate", - "values": [ - "4 - General action" - ] - }, - { - "text": "Intensify its efforts to fight against discrimination against Roma people by tackling the root causes of this problem.", - "values": [ - "4 - General action" - ] - }, - { - "text": "Promote the establishment of places to care for and provide assistance to women victims of domestic violence.", - "values": [ - "4 - General action" - ] - }, - { - "text": "Improve the condition of detainees, prevent cruel treatment in detention places and ensure the adequate level of medical services to detainees ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Fight trafficking in persons, prosecute perpetrators and provide protection and compensation to victims ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Continue to fulfil its international human rights obligations regarding asylum seekers, refugees and migrants", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Ratify CRPD, in accordance with the commitment formulated in paragraph 128 of its national report", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Consider ratifying the International Convention on the Elimination of All Forms of Racial Discrimination ", - "values": [ - "3 - Considering action" - ] - }, - { - "text": "Conduct public campaigns to promote cultural diversity and tolerance towards minorities and victims of hate crimes", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Take necessary steps to ratify or accede to major international human rights instruments which are still outstanding ", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Indonesia is commended for enabling a vibrant civil society, including with respect to those engaged in defending human rights, and is encouraged to support and protect their work, including at the provincial and local level as well as in regions with special autonomy", - "values": [ - "4 - General action" - ] - }, - { - "text": "Support the institution of the traditional family and the preservation of family values", - "values": [ - "4 - General action" - ] - }, - { - "text": "Tighten the gap in salaries between men and women to achieve equality ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Immediately end all human rights violations against civilians in relation to their peaceful exercise of freedom of expression and assembly", - "values": [ - "4 - General action" - ] - }, - { - "text": "Eliminate discriminatory practices against women in relation to rights to succession, inheritance and possession of land", - "values": [ - "3 - Considering action" - ] - }, - { - "text": "Consider debating and adopting the framework of the law on the right to food", - "values": [ - "3 - Considering action" - ] - }, - { - "text": "Accede to the Second Optional Protocol to the International Covenant on Civil and Political Rights", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Use all the means available to raise the level of human rights awareness ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Renew all efforts to foster dialogue and to find a political solution to the ongoing conflict so as to bring stability to society through the protection of the human rights of all civilians", - "values": [ - "4 - General action" - ] - }, - { - "text": "Intensify technical and vocational training for women and adopt temporary special measures aimed at achieving de facto equal opportunities for men and women in the labour market", - "values": [ - "4 - General action" - ] - }, - { - "text": "Take further steps in the field of promotion of economic, social and cultural rights, especially in the sector of education, with a special focus on the enrolment of girls and boys in rural areas", - "values": [ - "4 - General action" - ] - }, - { - "text": "Continue implementation of initiatives to encourage the empowerment of women, in particular in rural areas", - "values": [ - "4 - General action" - ] - }, - { - "text": "Establish a national human rights institution based on the Paris Principles", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Establish a national human rights institution, in accordance with the Paris Principles, with a broad human rights mandate, and following a participatory process including civil society", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Accede and implement, step by step, the core international human rights treaties", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Seek technical and financial assistance from all friendly States and relevant international agencies to assist its efforts in fighting against drug trafficking ", - "values": [ - "1 - Minimal action" - ] - }, - { - "text": "Sign and ratify the Convention on the Rights of the Persons with Disabilities", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Ratify the Convention against Torture and Other Cruel, Inhuman or Degrading Treatment or Punishment and its Optional Protocol and swiftly move ahead with the Prevention of Torture Bill", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Take all necessary measures to solve the problem of prison overcrowding and to improve detention conditions, including by providing sufficient resources to the body responsible for investigating allegations of torture and ill-treatment and ensuring its independence", - "values": [ - "4 - General action" - ] - }, - { - "text": "Modify the penal provisions that provide for the application of the death penalty with a view to a total prohibition and ratify ICCPR-OP2, aiming at the abolition of the death penalty", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Remain to be active in seeking the continuing support of the international community for the realization of its employment-generation and poverty-alleviation programmes", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Pursue inclusion policies to promote participation of social movements and organizations in designing public human rights policies", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Strengthen the independence of the ombuds institution, including through the revision of the relevant ombudsman-related legislation", - "values": [ - "4 - General action" - ] - }, - { - "text": "Put in place adequate channels for the reporting of child abuse, with a view to criminal persecution, and to provide physical and psychological assistance for the victims of such violence", - "values": [ - "4 - General action" - ] - }, - { - "text": "Further reduce the offences punishable by death penalty", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Recommended that in line with ICCPR, Congo repeals article 331 of the Penal Code that criminalizes same sex practices between consenting adults, also with a view to more effective HIV-AIDS prevention and treatment of vulnerable sectors of the Congolese population.", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Take practical measures to collect and publish statistics on racist incidents, and based on data collection ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Ensure that the Child Work Policy complies with human rights obligations and standards", - "values": [ - "4 - General action" - ] - }, - { - "text": "Undertake a legal reform on the issues of the neglect, abuse and sexual exploitation of children, the lack of conformity of the birth registration system, the absence of legislation on child labour, and the non-existence of a clear definition of the minimum age for criminal responsibility", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Develop policies to effectively prevent violence against women, in particular domestic violence and also provide shelters and assistance to victims", - "values": [ - "4 - General action" - ] - }, - { - "text": "Continue reviewing and reforming Government programs, as needed, to ensure that they do not discriminate against particular groups ", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Recognize explicitly the legitimacy of the job done by human rights defenders and ensure that their work is carried out in a safe and enabling environment, without fear of reprisals, intimidations or acts of violence, which should be sanctioned, and those responsible be taken before justice", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Continue to ensure equal rights for women in society ", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Adopt all measures necessary to ensure equality between women and men in all areas relevant to the Convention on the Elimination of All Forms of Discrimination against Women.", - "values": [ - "4 - General action" - ] - }, - { - "text": "Call upon OHCHR to provide technical assistance to Dominica for the establishment of a national human rights institution, which is an essential building block for the progress of human rights, as previously recommended by Maldives during the first cycle", - "values": [ - "1 - Minimal action" - ] - }, - { - "text": "Establish, through these efforts to address the issue of witness protection legislatively and administratively, a witness protection system ", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Conduct thorough and impartial investigation into all allegations of torture and physical abuse and bring to justice anyone suspected of having committed excessive use of force, torture and other human rights violations ", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Allow exceptions to the Charities and Societies Proclamation to better enable NGOs, including those working on human rights, to receive funding and to operate effectively ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Continue to align its legislation with the new constitution and with the provisions of international human rights instruments", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Clarify the mandate and responsibilities of the national machinery for the advancement of women, as well as provide it with adequate visibility, power and resources", - "values": [ - "4 - General action" - ] - }, - { - "text": "Continue acceding to the core international human rights instruments", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Consider acceding to OP-CAT", - "values": [ - "3 - Considering action" - ] - }, - { - "text": "Re-establish a fully independent National Human Rights Institution in accordance with the Paris Principles ", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Strengthen measures to protect vulnerable persons", - "values": [ - "4 - General action" - ] - }, - { - "text": "Put in place effective monitoring and reporting mechanisms to ensure respect for women's rights and to address violence against women in all its forms", - "values": [ - "4 - General action" - ] - }, - { - "text": "Take measures advocated by the Human Rights Committee to bring to an end restrictions to freedom of expression and opinion and to end, notably, restrictions on the creation of private media at the same time.", - "values": [ - "4 - General action" - ] - }, - { - "text": "Laws should be enacted that would prohibit civilians being tried in military courts in the future", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Develop programmes and policies for the prevention, recovery and social integration of child victims of trafficking and exploitation in accordance with the outcome documents adopted at the 1996, 2001 and 2008 World Congresses against Sexual Exploitation of Children, held in Stockholm, Yokohama and Rio de Janeiro, respectively", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Undertake measures for the prompt signature and ratification of the core international instruments for the protection and promotion of human rights, as well as for the submission of outstanding reports", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Elaborate integrated measures to ensure unimpeded access for persons with disabilities", - "values": [ - "4 - General action" - ] - }, - { - "text": "The removal of legislation that restricts civil society from receiving international funding, and cease unannounced inspections aimed at intimidating civil society organizations ", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Respect international provisions in the area of the protection of minorities and vulnerable groups, particularly Pygmies and Mbororo", - "values": [ - "4 - General action" - ] - }, - { - "text": "Continue the successful policy on the development of human potential ", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Take immediate action to cease the practice of torture in detention facilities, and investigate and prosecute allegations of torture", - "values": [ - "4 - General action" - ] - }, - { - "text": "Promote the completion of education for children, and remove all hindrances and discrimination against children in fulfilling their right to education", - "values": [ - "4 - General action" - ] - }, - { - "text": "Ratify the ICCPR.", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "It declared the Government's firm commitment to gender mainstreaming and indicated that a range of policy initiatives were being undertaken, including the formulation of a national policy for gender equality.", - "values": [ - "4 - General action" - ] - }, - { - "text": "Adopt and implement Penal Code reforms and other measures in compliance with international human rights standards in order to combat violence against children in all its forms, and provide adequate reintegration and rehabilitation for the victims ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Formally criminalize in domestic law the recruitment and use of child soldiers by non-governmental armed groups, if it has not already done so, and enforce such laws if they already are on the books and devote resources to and partner with international organizations to prioritize the reintegration of child soldiers", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Develop a comprehensive national action plan for addressing violence against indigenous women, and, also, give due consideration to an independent national enquiry into missing indigenous women ", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Implement the Rome Statute of the International Criminal Court into domestic law, as recommended previously", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Accelerate the process of abolishing the death penalty", - "values": [ - "4 - General action" - ] - }, - { - "text": "Ensure that crimes and violations against human rights defenders, journalists and members of the opposition are effectively investigated and prosecuted, and that those responsible are brought to justice ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Consolidate reconciliation.", - "values": [ - "4 - General action" - ] - }, - { - "text": "Implement measures to address stereotypes regarding the roles and responsibilities of men and women in society ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Adopt comprehensive national legislation such as the new Broadcasting Code in order to ensure media pluralism and protect independent media", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Continue efforts to establish an independent institution for the promotion and protection of human rights and fundamental freedoms, as well as an independent national body for the promotion of the rights of the child", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Put an end to all forms of torture and other cruel, inhuman or degrading treatment or punishment, give families the right to visit detainees in places of detention wherever they are.", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Ensure that no one is arrested for exercising his or her right to freedom of expression, association and peaceful assembly", - "values": [ - "4 - General action" - ] - }, - { - "text": "Ratify the Protocol to Prevent, Suppress and Punish Trafficking in Persons, especially Women and children, a protocol to the Convention against Transnational Organized Crime ", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Continue pursuing awareness raising campaigns aimed at eliminating stigmatisation of persons with disabilities, the difficulties they face at the labour market and in general, their exclusion from social life", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Enforce the law prohibiting female genital mutilation", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Initiate a comprehensive process of legislative reform in order to guarantee equality between men and women as well as to define and prohibit discrimination on the basis of sex and gender in the public and private spheres", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Take necessary measures to reduce gender gap in the labour market ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Conduct an urgent and credible police investigation into the disappearance of Sombath Somphone, and communicate the findings, including to address any suspicions of government involvement in his abduction", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Remove children and their families and other individuals at risk, in particular survivors of torture and trauma, from immigration detention centres", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Strengthen publicity campaigns on the non-acceptability of any human rights violations", - "values": [ - "4 - General action" - ] - }, - { - "text": "Continue its ongoing efforts in promoting and enhancing women's political participation, including through the implementation of the national coalition this strategy for the period 2012-2017", - "values": [ - "4 - General action" - ] - }, - { - "text": "Step up efforts to fight racism, racial discrimination, xenophobia and associated intolerance", - "values": [ - "4 - General action" - ] - }, - { - "text": "Adopt legislation aiming at the protection of all children with disabilities with a view to combat discriminatory attitudes", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Abolish definitely death penalty", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Fully cooperate with the Office of the Prosecutor of the International Criminal Court in line with the obligations of Kenya under the Rome Statute", - "values": [ - "4 - General action" - ] - }, - { - "text": "Take all possible measures to ensure the protection of and respect for the rights of women and children at legal and practical level ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Introducing and bringing into operation a permanent body to combat trafficking.", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Guarantee the right to non-refoulement and the right to family reunification without distinction based on legal status", - "values": [ - "4 - General action" - ] - }, - { - "text": "Continue increasing investment in primary, secondary and university education, as it has progressively done so in recent years", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Encourage the establishment of non-governmental human rights organizations ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Re-establish a moratorium to executions, with a view to the final abolition of the death penalty, and ratify the Second Optional Protocol to ICCPR ", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Develop a migration policy, taking into account the international human rights standards in this respect ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Consider the legal abolition of the death penalty", - "values": [ - "3 - Considering action" - ] - }, - { - "text": "Implement a zero-tolerance policy on sexual and gender-based violence and ensure the prosecution of all perpetrators of violence against women, combined with rehabilitation and support for victims", - "values": [ - "4 - General action" - ] - }, - { - "text": "Establish a moratorium on all death sentences and executions ", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Consider adopting a comprehensive strategy for the integration of people of different ethnic origin or religion.", - "values": [ - "3 - Considering action" - ] - }, - { - "text": "Pursue efforts to prepare a new constitution in conformity with international human rights norms", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Combat effectively racial discrimination, xenophobic words and deeds, and strike down on hate crimes through legislation, law enforcement and administrative measures", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Continue its efforts in reviewing its labour law with a view to including migrant workers in its scope", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Rapidly ratify and implement the Optional Protocol to CEDAW", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Further strengthen efforts in the field of the right of education, including by increasing the national budget allocation for education and promoting multi-cultural education", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Adopt the necessary measures to eliminate in the legislation and in practice the crimes motivated by the sexual orientation of persons", - "values": [ - "4 - General action" - ] - }, - { - "text": "Provide sufficient resources to continue with systematic human rights education and training of teachers at all levels of national education", - "values": [ - "4 - General action" - ] - }, - { - "text": "Ensure full implementation of legislation aimed at combating racism, racial discrimination, xenophobia and related intolerance", - "values": [ - "4 - General action" - ] - }, - { - "text": "Include provisions in domestic legislation to prohibit discrimination in all areas, including especially discrimination based on national origin, ethnicity, language or linguistic groups, adopt necessary civil and administrative measures to guarantee the elimination of all forms of discrimination against all persons, especially those from ethnic or linguistic groups, who constitute more than one third of the population of Latvia ", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Ensure that the National Plan for Integration of Persons with Disabilities has the necessary human, institutional and financial resources for its effective implementation", - "values": [ - "4 - General action" - ] - }, - { - "text": "Ratify the Convention on the Right of Persons with Disabilities and ensure that the rights of such persons are protected in law and in practice ", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Ensure that federal and state authorities work more efficiently together to produce statistics and regular human rights reports ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Recommended further steps to eliminate racial discrimination and to promote freedom of religion and belief.", - "values": [ - "4 - General action" - ] - }, - { - "text": "Continue efforts to protect children from sexual abuse and exploitation by implementing the Basic Plan adopted in April 2017 through measures to combat sexual exploitation of children", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Ratify the Optional Protocol to the Convention on the Elimination of All Forms of Discrimination against Women (OP-CEDAW) ", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Provide the Ombudsperson' s office, which is responsible under the legislation for assisting alleged victims of discrimination and conducting independent research and issuing recommendations to achieve equal treatment, with the additional financial resources necessary to fulfil its new obligations ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Ensure that the procedures governing the registration of civil society organizations, including organizations advocating for the Saharawi people\u2019s right to self-determination, are in conformity with international standards", - "values": [ - "4 - General action" - ] - }, - { - "text": "Raise the minimum age for marriage and establish a juvenile judiciary ", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Increase support for the bill introducing financial initiatives for female candidates for political participation, enhance the consultations concerning the institutions of indigenous peoples and continue with the policy of reparation to victims of human rights violations ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Sign and ratify the UNESCO Convention on Discrimination in Education", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Expedite the development of a national plan for human rights education", - "values": [ - "4 - General action" - ] - }, - { - "text": "Establish and appoint an Ombudsman on the rights of girls, boys and adolescents", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Set the minimum age to marriage and voting to 18 years for both genders without preference", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Sign and ratify the Convention on the Rights of Persons with Disabilities and the Optional Protocol to ICESCR", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Restore full citizenship of the Rohingya living in Myanmar, ensure and protect their basic human rights, and engage constructively in the region on this issue", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Ratify the second Optional Protocol to the International Covenant on Civil and Political Rights, abolishing the death penalty ", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Adopt legislation to eliminate discrimination based on sexual orientation, and decriminalize sexual relations between consenting adults of the same sex ", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Ensure that all migrant children, irrespective of their migration status, have access to education and healthcare services in the exact same terms as Australian children do", - "values": [ - "4 - General action" - ] - }, - { - "text": "Make additional efforts in work with refugees and migrants", - "values": [ - "4 - General action" - ] - }, - { - "text": "Establish a moratorium on the application of the death penalty and consider ratifying the Second Optional Protocol to the International Covenant on Civil and Political Rights", - "values": [ - "3 - Considering action" - ] - }, - { - "text": "Continue efforts, slowly but surely, to counter the weight of traditions by way of eradicating on a gradual basis the practice of female genital mutilation", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Fully respect freedom of expression and association, and allow for unhindered activities by media", - "values": [ - "4 - General action" - ] - }, - { - "text": "Compile information on the violence against children within the family.", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Increase investment in education and improve its work to eliminate illiteracy in rural areas ", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Consider requesting technical assistance from the High Commissioner for Human Rights to fulfil the complex task of presenting the reports to the treaty bodies ", - "values": [ - "3 - Considering action" - ] - }, - { - "text": "Continue to strengthen protections for domestic violence survivors, and extend an invitation to the Special Rapporteur on violence against women, its causes and consequences to visit Mongolia", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Respect international obligations, release all political detainees, immediately stop the use of all kinds of inhumane or degrading treatment, including torture, grant relevant international organizations, such as ICRC, access to all detention facilities and inform the families of detained or deceased persons of their whereabouts and mental and physical state", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Consider positively acceding to the Optional Protocol to the Convention against Torture and Other Cruel, Inhuman or Degrading Treatment or Punishment", - "values": [ - "3 - Considering action" - ] - }, - { - "text": "Amend or repeal article 230 of the Criminal Code to end criminalization of same-sex sexual relations", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Continue strengthening its efforts in providing quality health facilities and services, particularly to address maternal and child mortality rates ", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Ensure freedom of expression and the press by decriminalizing all press offenses and prosecuting all perpetrators of threats and attacks against human rights defenders and journalists", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Without further delay, ratify the Optional Protocol to the Convention against Torture and initiate the process of establishing a National Preventive Mechanism", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Fully implement the Domestic Violence Act and ensure the effective functioning of DOVVSU", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Maintain its policy of respect and tolerance of all religious without discrimination including the right not to profess any religion", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Continue and intensify its efforts to fight corruption at all levels of public administration", - "values": [ - "4 - General action" - ] - }, - { - "text": "Adopt legislation and a coherent national policy criminalizing female genital mutilation ", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Immediately desist from violations of human rights, including attacks on civilians and unlawful killings, acts of rape and sexual violence, arbitrary detentions, abductions and lootings", - "values": [ - "4 - General action" - ] - }, - { - "text": "Adopt legislation to include payment for environmental services in order to promote sustainable economic and industrial development ", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Continue their efforts in supporting equal educational opportunities for children and young people with special educational needs ", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Release political detainees, cease arbitrary detentions and take other measures to ensure that those arrested and detained are given the right to a fair trial, in keeping with Madagascar's obligations under the International Covenant on Civil and Political Rights", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Implement programmes for human rights education and awareness-raising against discrimination, as well as for the promotion of the rights of women, children and other vulnerable groups", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Legalize its social housing to ensure access for all families", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Take timely and efficient measures to ensure that the national legal framework properly incorporates international standards and conventions, ratified by Afghanistan, pertaining to women's rights, for example CEDAW.", - "values": [ - "4 - General action" - ] - }, - { - "text": "Take additional measures aimed at achieving the gender equality", - "values": [ - "4 - General action" - ] - }, - { - "text": "Continue its effort in combating violence against women, especially domestic violence, by effectively enforcing its law and undertaking necessary legislative review, and ensure the protection of the rights of the victims", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Review its penitentiary policy to become more gender-sensitive and child-friendly, taking on board the interests of mother-prisoners and their minor children ", - "values": [ - "3 - Considering action" - ] - }, - { - "text": "Pay attention to the enforcement of laws against racial discrimination in the labour market, the development of a comprehensive anti-discrimination legislation and adoption of a comprehensive policy to ensure effective implementation of the principles of equality and non-discrimination in respect of all ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Make vigorous efforts to work with the Orthodox Church on the issue of property returns, including for it to abide by judicial rulings.", - "values": [ - "4 - General action" - ] - }, - { - "text": "Further strengthen its successful social plans and programs in favour of its people, with a special emphasis on the areas of education, nutrition and health", - "values": [ - "4 - General action" - ] - }, - { - "text": "Issue a permanent open invitation to the Special proceduress ", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Ratify the International Convention on the Protection of the Rights of All Migrant Workers and Members of Their Families (ICRMW) to further promote and protect migrants, in particular undocumented and irregular migrants ", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Take measures to ensure due process and fair trial, particularly in any process that would lead to the application of the death penalty", - "values": [ - "4 - General action" - ] - }, - { - "text": "Continue efforts to improve the health-care system, especially for girls and boys", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Continue to undertake measures that promote the rights of children, including the provision of equal access to services and protection for children of migrant workers ", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Consider the establishment of a section within the Ministry of Justice specifically dedicated to human rights", - "values": [ - "3 - Considering action" - ] - }, - { - "text": "Ensure that migrants in detention, subject to a process of expulsion are entitled to counsel, a fair trial and fully understand their rights, even in their own language ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Take steps to prevent the harassment or discrimination of lesbian, gay, bisexual, transgender and intersex persons and prosecute perpetrators", - "values": [ - "4 - General action" - ] - }, - { - "text": "Take specific targeted measures to eliminate violence against women and girls, including the establishment of a coordinating body", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Ratify the Rome Statute and take necessary measures to ensure its full implementation ", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Issue invitations to the Special Rapporteurs to assess the human rights situation in the country", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Establish a national intergovernmental independent mechanism responsible for monitoring public policies in the field of human rights", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Increase efforts to prevent and punish episodes of extrajudicial executions and illegal or arbitrary detentions", - "values": [ - "4 - General action" - ] - }, - { - "text": "Adopt the law on quotas which aims to reserve seats for women in legislative bodies of the central and state governments", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Cooperate and engage in dialogue within the United Nations human rights mechanisms, including with the Special Rapporteurs and the High Commissioner for Human Rights", - "values": [ - "4 - General action" - ] - }, - { - "text": "Consider imposing a moratorium on the death penalty with a view to abolish it and to take measures to ensure that it is never applied to persons under the age of 18 years", - "values": [ - "3 - Considering action" - ] - }, - { - "text": "Expand the legal aid services, in particular to rural areas.", - "values": [ - "4 - General action" - ] - }, - { - "text": "Raise the age of entry into marriage to 18 years in accordance with the definition of the child under the Convention on the Rights of the Child", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Continue its efforts to enhance the protection of children and improve their well-being", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Accede to the second Optional Protocol to the International Covenant on Economic, Social and Cultural Rights on the abolition of capital punishment ", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Create awareness-raising campaigns and national policies to prevent and combat discrimination in any form ", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Enact further measures to ensure adequate provision of mental health care.", - "values": [ - "4 - General action" - ] - }, - { - "text": "Ratify, in particular, ICESCR", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Ensure investigation of all allegations of torture and ill-treatment, bring perpetrators to justice in compliance with international standards for fair trials and provide rehabilitation for victims ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Review the possibility of repealing laws that criminalize on the basis of sexual orientation within the military", - "values": [ - "3 - Considering action" - ] - }, - { - "text": "Take measures to ensure that current legal protection of children is recognized and commonly known in public ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Remove all legislative and practical obstacles for the registration, funding and work of NGOs in Azerbaijan ", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Re-enforce measures to combat racism and discrimination against persons of foreign origin, in particular through the prohibition of ethnic profiling and through awareness raising in the security services as to nondiscriminatory measures and methods", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Release all children in solitary confinement", - "values": [ - "4 - General action" - ] - }, - { - "text": "Ensure that attacks on migrants, Roma and other ethnic minorities are thoroughly investigated and those responsible are brought to justice", - "values": [ - "4 - General action" - ] - }, - { - "text": "Ratify key international human rights treaties, in particular CAT and CPED, and comply with its obligations", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Swiftly conclude the process to create a National Human Rights Institution in accordance with the Paris Principles ", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Create an inter-ministerial mechanism to accord due attention to the recommendations of international mechanisms, including those emanating from the universal periodic review, with the participation of civil society ", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Adopt further measures to ensure in practice the protection of journalists against threats and attacks, including imprisonment in contravention of their right to freedom of expression.", - "values": [ - "4 - General action" - ] - }, - { - "text": "Accredit the Ombudsman to ensure its conformity with the Paris Principles ", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Present its initial report, which is overdue since 2005, to the Committee against Torture", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Consider consolidating the gains on human rights promotion and protection through the public awareness programme ", - "values": [ - "3 - Considering action" - ] - }, - { - "text": "Accord special attention to the fight against unemployment and poverty, especially on behalf of vulnerable groups", - "values": [ - "4 - General action" - ] - }, - { - "text": "Include a definition of torture in the Penal Code", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Strengthen the general public awareness of, security services and the administration of justice regarding domestic violence, sexual violence, female genital mutilation, particularly through training and launching of awareness and information campaigns", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "In the framework of the reform of the penal code and the penal procedure code, conform to the totality of the provisions of the Convention against Torture ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Continue its efforts to provide a swift and effective government response to violence against women and girls, including by strengthening the role of the national women\u2019s council, by providing it with adequate budgetary and human resources for implementing, monitoring and evaluating the national plan of action for prevention, assistance and eradication of violence against women 2017-2019", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Accede to all core international human rights instruments, in particular to the International Covenant on Civil and Political Rights and the International Covenant on Economic, Social and Cultural Rights ", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Continue to pay special attention to the needs of rural women ensuring that they participate in decision-making processes and have full access to justice, education, health services and financial facilities", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Improve the working capacity of the national mechanism on the prevention of torture, by strengthening the visits to detention and police centres", - "values": [ - "4 - General action" - ] - }, - { - "text": "Continue applying programmes and measures aimed at ensuring universal access of its population to its excellent educational and health services and maintain the highest possible quality of these services ", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Continue efforts to combat discrimination and respect minority rights ", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Take necessary measures to establish a national human rights institution in accordance with the Paris Principles.", - "values": [ - "4 - General action" - ] - }, - { - "text": "Eliminate all forms of violence against children by adopting proper legislation and ensure its implementation", - "values": [ - "4 - General action" - ] - }, - { - "text": "Poland will continue to combat and counteract racism, xenophobia, anti-Semitism and hate crimes. Although these phenomena are not common in Poland, the Government is nevertheless determined to implement a wide catalogue of preventive measures of an institutional, legal and educational nature. Poland will continue implementing and evaluating its Programme for the Roma community, the National Programme against Racial Discrimination, Xenophobia and Related Intolerance 2004-2009, and the law enforcement officer programme for combating hate crimes. Moreover, the existing network of Human Rights Advisers attached to the Police Commander-in-Chief and Voivodship Police Commanders-in-Chief will conduct ongoing monitoring of incidents, trends and crimes related to discrimination and misconduct of law enforcement authorities. They will also make analyses and elaborate proposals on the improvement of the quality and methods of the work of the law enforcement. It is also planned to create the institution of Human Rights Advisers attached to the Border Guard", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Uphold its international obligations and not reinstate the capital punishment", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Decriminalize consensual same-sex conduct, starting with the repeal of laws governing unnatural offences and indecent practices, and investigate and prosecute cases of discrimination, intimidation and attacks on lesbian, gay, bisexual, transgender and intersex persons and organizations", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Continue efforts to build a legal framework in order to ensure protection for human rights, involving inter alia the ratification of the main international instruments in this area", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Work out and implement all those necessary measures, including legislative revisions, aiming at tackling discrimination and stereotypes against women, in particular those conducive to abuses and violence ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Approve a comprehensive law for the promotion of gender equality which would include, among other issues, awareness on issues such as gender violence, and the freedom of sexual orientation", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Consider accession to the ILO Forced Labour Convention.", - "values": [ - "3 - Considering action" - ] - }, - { - "text": "Promptly ratify the Optional Protocol to the Convention on the Elimination of All Forms of Discrimination against Women", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Continue to give importance to ensure economic development, including infrastructure, in remote rural areas.", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Adopt measures, including appropriate legislation, to prevent, penalize and eliminate all forms of violence against women, end impunity for sexual violence and ensure access to justice", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Undertake consistent efforts to counter racism and promote social and religious cohesion.", - "values": [ - "4 - General action" - ] - }, - { - "text": "Ensure that all acts of torture are offences under its criminal law and considering acceding to OP-CAT ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Implement the recommendations of the Jamaican Justice System Reform Task Force Report to ensure a modern justice system that is efficient, accessible, accountable, fair and able to deliver timely results ", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Ensure the access to education for all children, including those belonging to indigenous peoples ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Continue taking strong measures to combat human trafficking and the sexual exploitation and abuse of migrant women and children, including by fully implementing the Human Trafficking Act of 2014, training law enforcement officials and ensuring adequate protection for victims of human trafficking", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Ratify the Rome Statute of the International Criminal Court as soon as possible ", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Ensure that non impediments to the preservation, expression and development of cultural identity by all citizens are created ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Take effective measures to provide adequate legal and other assistance for domestic and international trafficking victims, and intensify efforts to identify and prosecute trafficking cases", - "values": [ - "4 - General action" - ] - }, - { - "text": "Give full effect to the United Nations Declaration on the Rights of Indigenous Peoples (UNDRIP) ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Increase the representation of women at the decision-making bodies", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Ratify and implement ICCPR", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Ensure that relevant criminal law provisions and policy directives are effectively implemented", - "values": [ - "4 - General action" - ] - }, - { - "text": "Continue to carry out efforts to reduce the incidence of poverty and lessen income and educational inequalities", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Fully abolish the death penalty, without delay", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Invite the Special Rapporteur on the rights and fundamental freedoms of indigenous peoples to return to the country for a follow-up visit as soon as possible.", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Accede to the Rome Statue of the International Criminal Court (ICC), the International Convention for the Protection of All Persons from Enforced Disappearance (CPED) and, the Convention on the Prevention and Punishment of the Crime of Genocide ", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Review the national implementation of the principle of non-refoulement ", - "values": [ - "3 - Considering action" - ] - }, - { - "text": "Take the necessary steps, as soon as possible, to address the issues of inadequate protection of children from sexual exploitation as well as the insufficient investigation of the perpetrators of sexual crimes against children and the consequent low ratio of prosecutions against perpetrators of sexual crimes against children ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Eliminate discriminatory stereotypes based on gender", - "values": [ - "4 - General action" - ] - }, - { - "text": "Strengthen the National Women's Institute through greater prominence and adequate resources ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Ratify/accede to OP-CAT", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Take concrete measures to eradicate harmful practices against women and children, especially children with albinism", - "values": [ - "4 - General action" - ] - }, - { - "text": "Consider measures it deems appropriate to eliminate the discrimination in terms of disparity of salaries between men and women, in line with the provisions of the Convention on the Elimination of All Forms of Discrimination against Women ", - "values": [ - "3 - Considering action" - ] - }, - { - "text": "Intensify its oversight over Swiss companies operating abroad with regard to any negative impact of their activities on the enjoyment of human rights, particularly in conflict areas, which includes situations of foreign occupation where the risk of human rights abuses is heightened", - "values": [ - "4 - General action" - ] - }, - { - "text": "Further address the agenda of social economic development, focusing especially on the poverty reduction program with the active support of the international community, in order to contribute further to achievements of human rights", - "values": [ - "4 - General action" - ] - }, - { - "text": "Submit its 10 overdue reports to the United Nations treaty bodies", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Continue to make efforts to eradicate violence against women and children and take the necessary measures to provide appropriate treatment for victims of crimes of this sort. ", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Take additional efforts in preserving inter-ethnic and interconfessional harmony in the country ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Implement the commitment to abolish the current mandatory death sentence system, as well as to commute all death sentences to terms of imprisonment before the next UPR review ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Adopt a National Action Plan on Security Council resolution 1325 on women, peace and security", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Strengthen efforts to improve access to housing, health services, education and employment for both the Roma and Egyptian communities ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Address the phenomenon of discrimination and negative attitude based on nationality, ethnicity or religion by criminalizing the so-called hate speech", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Study the possibility of withdrawing its reservations to the Convention on the Elimination of All Forms of Discrimination against Women with regard to equality, particularly those based on nationality, and the celebration of civil acts and marriages.", - "values": [ - "3 - Considering action" - ] - }, - { - "text": "Further its efforts to increase the participation of women in politics through the integration of gender issues into national policies ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Adopt and implement, in accordance with relevant international law, national legislation to combat trafficking in women and children which will prosecute and convict traffickers, and take effective measures to prevent sexual tourism ", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Ratify the second Optional Protocol to the International Covenant on Economic, Social and Cultural Rights on the abolition of capital punishment ", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Take specific measures to ensure the full implementation of legislation on violence against women and of the national plan of action for the prevention of domestic violence and sexual violence", - "values": [ - "4 - General action" - ] - }, - { - "text": "Provide capacity-building to law enforcement officials on the identification of child victims of commercial sexual exploitation and on measures to protect children from commercial sexual exploitation", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Strengthen the cooperation between Yemen and the international human rights organizations, particularly the United Nations, and enhance interaction with the international and domestic civil society agencies ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Review its practice of imposing capital and corporal punishment and prohibit any form of corporal punishment ", - "values": [ - "3 - Considering action" - ] - }, - { - "text": "Revoke executive order 546 which has been used as a basis for armed civilian volunteer units ", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Protect vulnerable refugee populations by allowing for registration of the refugee population in Nepal and by refraining from forcibly returning Tibetan asylum-seekers to China ", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Revise the law on the press and publications to reduce restrictions on the information on the Internet", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Amend relevant regulations to align them with the international standards on freedom of expression and freedom of the press ", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Address, as a matter of priority, the conditions in Thai prisons and detention centres, including the expansion of the necessary infrastructure, prison personnel, as well as the improvement of inmates' access to medical care and legal counsel ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Continue its active engagement with the human rights mechanisms of United Nations for the protection and promotion of human rights", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Commit to improving school results of Roma pupils by 2015 ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Improve the existing activities and mechanisms to strengthen intercultural and interreligious dialogue ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Continue harmonization of the national legislation with international standards in the field of human rights.", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Continue its work in relation to the promotion of the protection of the rights of specific vulnerable groups in society such as senior citizens, the poor and those affected by natural disasters", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Consider the approval of a general law on violence against women, in conformity with the recommendation made by CEDAW ", - "values": [ - "3 - Considering action" - ] - }, - { - "text": "Malaysia is committed to maintain effective mechanisms to ensure an independent investigation of alleged misconduct by government officials, including law enforcement personnel.", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Enhance cooperation with the United Nations special procedures.", - "values": [ - "4 - General action" - ] - }, - { - "text": "In line with the Committee on Economic, Social and Cultural Rights recommendation, develop a comprehensive poverty reduction and social inclusion strategy, which should integrate economic, social and cultural rights ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Explicitly prohibit discrimination against women, in line with the provisions of the Convention on the Elimination of All Forms of Discrimination against Women ", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Take adequate measures to eradicate FGM", - "values": [ - "4 - General action" - ] - }, - { - "text": "Continue to promote gender equality to ensure a level playing field for all women in all wards of the society ", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Consider establishing an interministerial committee responsible for the implementation of its international human rights obligations, inter alia, for coordinating the drafting of national reports to the treaty bodies", - "values": [ - "3 - Considering action" - ] - }, - { - "text": "Adopt more effective measures to ensure that all children in the Republic of Moldova enjoy all rights, without discrimination, in accordance with Article 2 of CRC", - "values": [ - "4 - General action" - ] - }, - { - "text": "Raise the age of criminal responsibility from now 7 to 12 years as the absolute minimum as recommended by the CRC ", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Include participation of civil society (in mechanisms and procedures that are in place for national follow up to recommendations of treaty bodies) and publication of the concluding recommendations of treaty bodies", - "values": [ - "4 - General action" - ] - }, - { - "text": "Play an effective role to operationalize the right to development at the international level ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Actively promote steps to guarantee freedom of expression, as well as the freedom and independence of the press, including on the Internet ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Continue to resist attempts to enforce any values or standards beyond the universally agreed base, through the exercise of its sovereign right to implement its laws and legislation in conformity with those values and standards.", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Give priority attention to the further improvement of the quality and accessibility of medical care and education, particularly in rural areas ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Take firm measures to combat cross-border trafficking in women for sexual and other exploitative purposes and align its Criminal Code with the international and European Union law on trafficking in human beings", - "values": [ - "4 - General action" - ] - }, - { - "text": "Pursue its efforts for swift implementation of the Law on Foundations, and commit itself to undertake all necessary reforms in order to address the property-rights claims of non-Muslim Foundations", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Ensure that the best interests of the child are fully considered when deciding on asylum cases and uphold international obligations under the 1951 Convention relating to the Status of Refugees", - "values": [ - "4 - General action" - ] - }, - { - "text": "Take appropriate measures to ensure gender equality and non-discrimination of women in all spheres, particularly the presence of women in the democratic process and the eradication of gender discrimination in the labour market", - "values": [ - "4 - General action" - ] - }, - { - "text": "Maintain the abolition of death penalty in line with its obligations under the Second Optional Protocol to the International Covenant on Civil and Political Rights", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Adopt legislative and other measures, including awareness-raising campaigns, to discontinue the existence of harmful traditions and practices undermining the equal enjoyment of human rights by women. in particular to adopt and implement legislation prohibiting and criminalizing FGM as well as domestic and other forms of violence against women.", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "You cannot have inclusive development without peace, given the terrorism situation we call upon the Nigerian government to continue with all efforts to deal with domestic insecurity in the country", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Take measures to combat intrafamily violence ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Take all necessary measures to comply with the pertinent international norms and principles in the area of juvenile justice ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Continue its efforts to promote gender equality and eliminate discrimination against women and girls ", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Issue a standing invitation to all United Nations Special Procedures and ratify OP-CAT and establish its national preventive mechanism accordingly ", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Ensure that human rights defenders can carry out their legitimate activities without fear or undue impediment, obstruction, or legal or administrative harassment", - "values": [ - "4 - General action" - ] - }, - { - "text": "Continue its efforts to establish a national human rights institution, in line with the Paris Principles and with the full participation of civil society", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Implement the guarantee established in Article 46 of the Constitution, regarding freedom of belief and freedom of religious practice, in order to prevent in practice discriminations which affect this guarantee", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Take measures to ensure that Government and security officials implicated in human rights abuses relating to extrajudicial and arbitrary detention and the possible use of torture are investigated, prosecuted and punished", - "values": [ - "4 - General action" - ] - }, - { - "text": "Ensure that reports of domestic violence are investigated swiftly and fully, and that prosecutions are carried out with the full force of the law ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Ensure prompt and impartial investigations of cases of excessive use of force by the police and law enforcement officials", - "values": [ - "4 - General action" - ] - }, - { - "text": "Establish in law a minimum age for marital consent to put an end to early marriages of young girls ", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Strengthen efforts to ensure and protect the full independence and impartiality of the judiciary, and facilitate a broad and participatory dialogue on the challenges in the administration of justice", - "values": [ - "4 - General action" - ] - }, - { - "text": "Use every means possible to combat the rise of racism and xenophobia, including in the Internet ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Take additional measures aiming at addressing female genital mutilation, including its eventual ban in the long run", - "values": [ - "4 - General action" - ] - }, - { - "text": "Enhance the access to obstetric and maternal health services, especially in rural areas ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Take and strengthen the implementation of measures to combat all forms of violence against women, particularly sexual violence", - "values": [ - "4 - General action" - ] - }, - { - "text": "Strengthen the mandate, functions and resources of the Ombudsman's office in accordance with the Paris Principles, particularly by endowing it with means to act and investigate, and apply for its accreditation with the International Coordinating Committee of National Institutions for the Promotion and Protection of Human Rights ", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Consider developing human rights education and training programmes in the context of upgrading its national education system ", - "values": [ - "3 - Considering action" - ] - }, - { - "text": "Pursue its efforts towards the establishment of a stable political environment and the implementation of the provisions of the Ouagadougou Agreement ", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Consider a comprehensive approach and specific programs to combat racist attacks and discrimination, especially with regard to the vulnerable position of migrants", - "values": [ - "3 - Considering action" - ] - }, - { - "text": "Consider drawing up new legislation on the enforceability of the right to education", - "values": [ - "3 - Considering action" - ] - }, - { - "text": "Become party to the Convention on the Prevention and Punishment of the Crime of Genocide", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Continue its positive approach towards the establishment of an NHRI in accordance with the Paris Principles ", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Continue action to protect the conditions of migrant workers by improving existing legislation ", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Ratify the main international human rights instruments, in particular the Optional Protocol to the Convention against Torture and other Cruel, Inhuman or Degrading Treatment or Punishment and the Rome Statute of the International Criminal Court", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Step up cooperation with the special procedures", - "values": [ - "4 - General action" - ] - }, - { - "text": "Continue efforts to spread a culture of human rights in Qatar", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Strengthen the inter-sectorial coordination mechanisms to achieve a concrete materialization of the international cooperation in the areas of internal security, human rights protection and democratic political stability", - "values": [ - "4 - General action" - ] - }, - { - "text": "Step up efforts to implement the strategy to ensure that education is provided to all segment of the population", - "values": [ - "4 - General action" - ] - }, - { - "text": "Include measures to further strengthen the independence of the judiciary in the constitutional review currently under consideration", - "values": [ - "4 - General action" - ] - }, - { - "text": "Consistently apply the rulings of the Court by converting all death sentences into life in prison after more than three years on death row ", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Adopt all necessary measures so that minorities can effectively enjoy all their rights.", - "values": [ - "4 - General action" - ] - }, - { - "text": "Ensure the effective investigation of alleged attacks against human rights defenders.", - "values": [ - "4 - General action" - ] - }, - { - "text": "Withdraw its Declaration from Articles 12 and 14 of the Convention on the Rights of Persons with Disabilities (CRPD) ", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Ratify the International Convention for the Protection of All Persons from Enforced Disappearance (CED), signed by Monaco in 2007.", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Ensure that prompt, impartial and thorough investigations are carried out into all allegations of human rights violations by security forces and that the perpetrators are brought to justice, as accepted in the previous review", - "values": [ - "4 - General action" - ] - }, - { - "text": "Establish a mechanism to facilitate victim identification and ensure prosecution and punishment of all acts of female genital mutilation", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Harmonize all national legislation and elaborate policies in accordance with the Yogyakarta principles ", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Continue to seek technical cooperation and assistance from the international community, such as OHCHR and UNFPA, in relevant areas, particularly capacity-building for preparing its national reports under human rights conventions to which Samoa is a party", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Adopt strategies to combat harmful practices such as debt bondage of children and corporal punishment", - "values": [ - "4 - General action" - ] - }, - { - "text": "Open prisons and detention centres, including temporary and pre-trial facilities, to national and international monitoring including from the ICRC", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Advance towards the definitive abolition of the death penalty, adopting during this process a general moratorium on its application", - "values": [ - "4 - General action" - ] - }, - { - "text": "Prioritize implementation of the Child Justice Strategy and the National Diversion Guidelines for children in the criminal justice system", - "values": [ - "4 - General action" - ] - }, - { - "text": "Continue to pursue its successful social policies in the fight against poverty, with the aim of increasing the quality of life of its people, particularly the most vulnerable sectors", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Strengthen the rule of law by providing adequate human rights training and education to members of the administration and particularly the judiciary, including on the rights of suspects, accused and detainees during criminal proceedings", - "values": [ - "4 - General action" - ] - }, - { - "text": "Prohibit all corporal punishment of children, including at home, at schools, and as a sentence in courts and work towards a general understanding that corporal punishment of children is not beneficial but rather detrimental to their development", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Complete the process of establishing a National Human Rights Commission in accordance with the Paris Principles and fill the Ombudsman post established by law", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Consider ratifying the Rome Statute of the International Criminal Court and ensure its implementation ", - "values": [ - "3 - Considering action" - ] - }, - { - "text": "Create an enabling environment for journalists and media professionals and ensure fully transparent and impartial investigation and prosecution in all cases of attacks against them ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Consider introducing laws to specifically prevent and prosecute \u201chonour\u201c killings and prosecute those that order or sanction violence against women", - "values": [ - "3 - Considering action" - ] - }, - { - "text": "Consider removing the reservations made to the ICCPR to ensure gender equality and women's empowerment", - "values": [ - "3 - Considering action" - ] - }, - { - "text": "Take measures to combat violence against women and children", - "values": [ - "4 - General action" - ] - }, - { - "text": "Extend the coverage of gender equality programmes and institutions such as the national council of women into rural areas in order to combat gender-based discrimination and violence", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Strengthen capacities of its law enforcement agencies in order to meet the challenges of society connected with crimes and incidents which could arise as a result of traditional mentalities.", - "values": [ - "4 - General action" - ] - }, - { - "text": "Pursue and enhance its contributions to the dialogue among civilizations", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Develop a specific action plan for people with disabilities at the national level and establish advisory councils in harmony with federal policies and the federated entities", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Adopt additional measures to provide security staff and penal and judicial personnel with training on human rights, particularly concerning priority areas ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Take further measures to safeguard those Hondurans living abroad, particularly as regards to child's protection, and providing comprehensive protection for migrant boys, girls and non-accompanied adolescents once they are repatriated", - "values": [ - "4 - General action" - ] - }, - { - "text": "Investigate and bring to justice those responsible for reported abuses in the aftermath of violations of constitutional order that occurred on 28 June 2009", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Continue the progress made on the rights of persons with disabilities through the adoption of various legislative measures by ratifying the UN Convention on the Rights of Persons with Disabilities (CRPD) as well as its Optional Protocol ", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Consider issuing a standing invitation to Special Procedures ", - "values": [ - "3 - Considering action" - ] - }, - { - "text": "Adopt the revised Penal Code - in keeping with the recommendation of the Convention on the Rights of the Child - which raises the age of criminal responsibility ", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Continue and speed up efforts to promote economic, social and cultural rights for the whole population", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Amend article 11, 17 and 42 of the current NGO law 84 of 2002 so as to ensure that NGOs activities and activities of all human rights defenders not be inhibited or their ability to raise finance be impeded", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Promptly ratify the International Convention on the Protection of the Rights of All Migrant Workers and Members of Their Families and the ILO Indigenous and Tribal Peoples Convention, 1989 (No. 169)", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Continue to work on its human development plan and include cooperation and technical assistance strategies to use and integrate the outcome of the universal periodic review ", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Consider ratification of the International Convention for the Protection of All Persons from Enforced Disappearance", - "values": [ - "3 - Considering action" - ] - }, - { - "text": "Ensure protection against exploitation and forced labour for all categories of workers, including farm and domestic workers, through such measures as a review of appropriate labour regulations", - "values": [ - "4 - General action" - ] - }, - { - "text": "Strengthen efforts to implement its express commitment to establish a national human rights institution in accordance with the Paris Principles", - "values": [ - "4 - General action" - ] - }, - { - "text": "Facilitate visits requested by the Special Rapporteurs on adequate housing, freedom of opinion and expression, and independence of judges and lawyers, and to cooperate with the United Nations country team in improving the implementation of obligations", - "values": [ - "4 - General action" - ] - }, - { - "text": "Continue to make efforts with regard to reform in criminal proceedings, including enhancing the independence and impartiality of the Prosecutor's Office, as well as the updating of pretrial investigation procedures", - "values": [ - "4 - General action" - ] - }, - { - "text": "Implement progressively and effectively the legislations and policies on trafficking in persons", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Promote greater awareness and transparency in the process of complaints made against police officers and make public the results of any investigations ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Adopt legislative measures to eliminate gender violence and ensure that all women and girls who were victims of gender violence have access, among others, to health, legal and emergency services as recommended by the Committee on the Elimination of Discrimination against Women ", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Develop programmes aimed at guaranteeing the right to education and the right to health", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Adopt further measures to ensure the incorporation of its international human right obligations into national legislation.", - "values": [ - "4 - General action" - ] - }, - { - "text": "Undertake a thorough and credible investigation into the disappearance of Sombath Somphone and other cases of purported enforced disappearances", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Continue its efforts with regard to the trafficking in human beings, through the elaboration of the third national action plan for 2010-2012, and take further steps to improve assistance to the victims of trafficking ", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Continue to pay attention to the protection of political rights and civil freedoms ", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Take all necessary measures to ensure universal primary education, combat illiteracy and reduce the drop-out rate in primary schools", - "values": [ - "4 - General action" - ] - }, - { - "text": "Continue strengthening its social assistance programmes, in favour of the most vulnerable in the country", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Continue efforts to promote and protect human rights of ethnic minorities ", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Ratify the Optional Protocol to the Convention against Torture, in order to permit the Subcommittee for Prevention to conduct visits to places of detention, including reclusion centres for migrants and asylum-seekers, as well as those with the populations originating in national minorities in order to help the Government improve conditions in these centres", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Guarantee the safety and security of human rights defenders, and to ensure that all crimes against them are fully and independently investigated", - "values": [ - "4 - General action" - ] - }, - { - "text": "Take all necessary measures in order to promote the rights of women and effectively combat domestic violence, and ensure the effective implementation of existing instruments", - "values": [ - "4 - General action" - ] - }, - { - "text": "Continue to pursue the ratification of International Convention on the Elimination of All Forms of Discrimination against Women including the Convention on Migrant Workers", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Ensure impartiality and due process in the procedures by which broadcasting laws are enforced", - "values": [ - "4 - General action" - ] - }, - { - "text": "Ensure that criteria for compulsory treatment and detention in legislation and in practice are non-discriminatory and focused on safety, and remove any criteria referring to disability or "serious mental disorder" ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Continue its efforts to guarantee human rights and freedoms as enshrined in the Constitution ", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Amend existing legislation so as to outlaw marital rape", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Definitively abolish the death penalty, and sign and ratify the Second Optional Protocol to ICCPR, which bans capital punishment in all circumstances ", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Finalize the procedure to establish a national human rights institution in full compliance with the Paris Principles", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Consider acceding to the core international human rights instruments ", - "values": [ - "3 - Considering action" - ] - }, - { - "text": "Take measures to ensure the prompt release of persons detained for exercising their freedom of expression or as a result of their political views ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Continue to implement effectively the National Strategy for Gender Equality, Reduction of Gender-Based Violence and Domestic Violence ", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Enact and implement legislation to prohibit corporal punishment of children in all settings", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Sign and-or ratify the Optional Protocol to ICESR, ICRMW, the Optional Protocol to CRPD, and the International Convention for the Protection of All Persons from Enforced Disappearance ", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Continue to share and extend their experiences and good practices in assisting vulnerable groups, especially through the implementation of the National Social Workers Programme", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Ensure the protection of human rights defenders, notably the leaders of indigenous communities fighting for their rights ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Sign and ratify International Convention on the Protection of the Rights of All Migrant Workers and Members of Their Families", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Implement the 2008 recommendations by the CEDAW Committee, in particular by abolishing the system of male guardianship over women and enacting comprehensive and effective regulations on gender discrimination", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Continue training programmes aimed at human rights awareness, and disseminate it in public institutions and public sectors in accordance with international standards of human rights principles", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Seek the support of the international community in addressing human rights challenges, including development projects ", - "values": [ - "1 - Minimal action" - ] - }, - { - "text": "Enforce the 2014 Law to Protect Women and all Members of the Family from Family Violence, criminalize marital rape, and ensure that marriage to the victim does not exempt a sexual offender from punishment", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Adopt an action plan consistent with the Durban Declaration and Programme of Action in an effort to eradicate racial discrimination effectively", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Continue to implement its comprehensive programme to combat human trafficking and to encourage all cooperation with the relevant international organizations in this respect", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Accede to the International Covenant on Civil and Political Rights, the International Covenant on Economic, Social and Cultural Rights, the Convention against Torture and the Convention on the Rights of Persons with Disabilities", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Strengthen coordination and follow-up to the implementation of the universal periodic review recommendations", - "values": [ - "3 - Considering action" - ] - }, - { - "text": "Continue efforts to promote gender equality and criminalize violence against women", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Continue implementing its poverty reduction strategy and protect the rights of vulnerable groups so as to achieve a sustainable socio-economic development ", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Reduce the inequalities in the labour market by adopting and implementing an effective strategy, with special attention to women ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Establish Government plans as a follow-up to the recommendations of the Committee on the Elimination of Discrimination against Women to promote greater representation by women in all areas, particularly at work, without discrimination of any kind, as well as to prevent and eradicate domestic violence and all forms of violence against women and girls. Such plans should contemplate establishing institutional mechanisms for monitoring and assessing the effectiveness of all measures", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Guarantee freedom of expression to all media, particularly to journalists", - "values": [ - "4 - General action" - ] - }, - { - "text": "Continue its efforts in order to ratify the Convention on the Rights of Persons with Disabilities", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Take on board the concerns expressed in connection with the implementation of the right to education for all citizens ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Conduct awareness campaigns to promote birth registration of all children and take the necessary measures to ensure easy and effective access to free birth registration for the newborn", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Continue the reform of the judicial system and strengthen legal and material safeguards for the establishment of an independent judiciary, in accordance with the international principles and standards adopted in this area ", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Adopt a draft law on the marriage of minors", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Intensify programmes to combat poverty ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Adopt provisions prohibiting polygamy, early marriage and female genital mutilation", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Combat child labour with an emphasis on its worst forms in accordance with CRC and ILO standards, and consider seeking technical assistance from ILO on this matter ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Review its restrictive interpretation of therapeutic abortion and decriminalizing abortion in cases of rape, incest and sever fetal impairment", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Invite the Special Rapporteur on extrajudicial, summary or arbitrary executions", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Further promote gender equality so that women play a greater role in economic and social development ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Continue to adopt policies in order to achieve full gender parity.", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Ensure that all allegations of arbitrary detention, excessive use of force, extrajudicial executions, torture and ill-treatment by the police are promptly, thoroughly and impartially investigated", - "values": [ - "4 - General action" - ] - }, - { - "text": "Adopt and implement effective measures in order to prevent the use of violence against demonstrators, in accordance with the Law on Peaceful Assembly, and enable all groups, including those expressing dissenting views, to have their rights to freedom of peaceful assembly and association fully restored ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Consider issuing a standing invitation to the United Nations human rights special procedures", - "values": [ - "3 - Considering action" - ] - }, - { - "text": "Allow international media organizations increased access, including through a reduction of prohibitively expensive visa fees", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Continue to actively cooperate with relevant countries, international agencies and stakeholders in implementing human rights capacity-building and technical assistance programmes.", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Take immediate action to ensure all cases are reviewed by a court in accordance with fair procedures and that the rights of detainees, particularly the right to a fair trial and family visitations, are upheld.", - "values": [ - "4 - General action" - ] - }, - { - "text": "Allow for the visit of the UN Special Rapporteur on the rights of indigenous peoples", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Further strengthen its actions to ensure that the economic and social rights of vulnerable persons are protected, especially Maori, people with Pacific background and people with disabilities, and ensure that special attention is given to these persons with a view to including them fully in society.", - "values": [ - "4 - General action" - ] - }, - { - "text": "Reconsider the country's position on a possible withdrawal as a State Party to the ICC Rome Statute", - "values": [ - "3 - Considering action" - ] - }, - { - "text": "Request the international community to provide technical assistance to Cameroon to enable it to achieve its objectives", - "values": [ - "1 - Minimal action" - ] - }, - { - "text": "Establish a system for monitoring international recommendations", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Continue efforts in economic, social and cultural rights to consolidate the advances already made.", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Take all the necessary measures to shorten the pre-trial detention of all persons arrested on criminal charges, in particular that of minors, and create separate detention facilities for the latter as well as to urgently improve prison conditions", - "values": [ - "4 - General action" - ] - }, - { - "text": "Ensure that the relatively new law on the role of the office of the prosecutor is properly, uniformly and consistently implemented throughout the county ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Amend the 2006 law on protecting society from terrorist acts to avoid imposing statelessness on individuals and minimize the negative impact on the families of those affected", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Review the legislation on the minimum age for criminal responsibility with the purpose of bringing it into full conformity with the Convention on the Rights of the Child.", - "values": [ - "3 - Considering action" - ] - }, - { - "text": "Bring its Criminal Code fully in line with the Convention against Torture, particularly to include acts aimed at obtaining information from, punishing or intimidating a third person, and explicitly prohibit the use as evidence of any statement made under duress or as a result of torture", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Strengthen protection measures for children and vulnerable persons", - "values": [ - "4 - General action" - ] - }, - { - "text": "Adapt its national legislation to the requirement of the Rome Statute ", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Take the necessary measures to guarantee the right to schooling for all children", - "values": [ - "4 - General action" - ] - }, - { - "text": "Earmark a larger budget for the educational sector, and revise existing educational legislation in order to ensure access to primary education for children of all regions ", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Take effective measures to bring conditions of detention in line with international standards, in particular to reduce overcrowding, to improve the situation of juveniles and women in prisons and to promote non-custodial measures ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Further strengthen its cooperation with human rights mechanisms, in particular the United Nations treaty bodies", - "values": [ - "4 - General action" - ] - }, - { - "text": "Comply with international instruments, in order to promote the development of friendly relations between nations, guaranteeing the right of an ample right of transit in the ports of the Pacific, ensuring the universal and effective respect for human rights and fundamental freedoms within and beyond its borders ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Stop the transfer of its population to the occupied territory and put an end to all measures that encourage or perpetuate the settlements", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Establish a national human rights institution according to the Paris Principles", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Formulate an educational policy aimed at combating illiteracy, with particular emphasis on the education of the girl child ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Adopt rules and programmes to ensure freedom of expression and opinion", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Accede to CRPD and ICESR.", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Strengthen efforts to ensure eradication of child labour by introducing penalties for violating the provisions on employing children and young persons", - "values": [ - "4 - General action" - ] - }, - { - "text": "Provide protection for elected officials, for members of the opposition and all persons that criticize State institutions against arbitrary detention and ensure that any cases of aggression against them are investigated", - "values": [ - "4 - General action" - ] - }, - { - "text": "Declare an immediate moratorium on executions with the aim of abolishing the death penalty ", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Approve the licence applications for all non-governmental associations seeking registration in accordance with the law, including organizations advocating for members of minority populations", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Ensure adequate access for people with disabilities to all buildings, information, communication, education and all means of transportation ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Renew efforts to ratify OP-CAT, to establish a national preventive mechanism regarding torture, and ensure investigation and prosecution in cases of extra-judicial killing and torture, notably those implicating state agents", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Adopt an open, merit-based selection process when selecting national candidates for United Nations treaty bodies elections", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Strengthen the measures for the effective implementation of the regulatory framework in the field of immigration, asylum and refugees, in particular by training public officials involved, as well as by accelerating efforts towards the adoption of the action plan 2016-2019, in order to ensure that migrants can be fully involved in society on an equal basis with citizens", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Strengthen the enforcement of labour laws, especially by increasing training for labour inspectors to enable more thorough investigations of alleged violations, and ensuring timely collection of fines ", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Take steps to promote a just and equitable solution through renewed negotiations with affected members of the Central Kalahari Game Reserve communities and respect the economic, social and cultural rights of minorities living or formerly living on the Reserve.", - "values": [ - "4 - General action" - ] - }, - { - "text": "Pursue the actions in favour of the elderly and persons with disabilities", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Strengthen its national human rights institution in accordance with the Paris Principles", - "values": [ - "4 - General action" - ] - }, - { - "text": "Promote measures to combat the commercial sexual exploitation of children ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Establish a monitoring system for special care institutions for children and develop an action plan to gradually integrate such children in the general school system", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Include a gender perspective into its policies and programmes to combat HIV/AIDS, taking into account what has been pointed out by CEDAW", - "values": [ - "4 - General action" - ] - }, - { - "text": "Restore the protection of civil and political rights by ensuring that the Constitution meets Thailand's international human rights obligations and end the present prosecution of civilians in military courts", - "values": [ - "4 - General action" - ] - }, - { - "text": "Undertake an inclusive process with a wide range of civil society representatives when implementing the universal periodic review recommendations", - "values": [ - "4 - General action" - ] - }, - { - "text": "Implement fully the bill on access to information and take effective measures to protect freedom of the press by investigating all reported incidents of intimidation or harassment of journalists ", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Consider ratifying the International Convention on the Protection of the Rights of All Migrant Workers and Members of Their Families and the Convention against Torture and Other Cruel, Inhuman or Degrading Treatment or Punishment ", - "values": [ - "3 - Considering action" - ] - }, - { - "text": "Continue to implement measures that will allow to respond to health needs and guarantee universal access to these services ", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Ensure efficient implementation of the new \u201cHate Crime Action Plan\u201c in order to reduce racially and religiously aggravated crimes", - "values": [ - "4 - General action" - ] - }, - { - "text": "Continue human rights education for police and security forces aiming at better protection and preservation of human rights principles", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Continue to consolidate its successful measures towards the further advancing of its goal of reducing poverty by 20 per cent by 2020", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Consider stepping up its efforts towards ratification of the Protocol to Prevent, Suppress and Punish Trafficking in Persons, Especially Women and Children, Supplementing the United Nations Convention against Transnational Organized Crime (Palermo Protocol)", - "values": [ - "3 - Considering action" - ] - }, - { - "text": "Put in place mechanisms to follow up on UPR recommendations and that make it possible to verify the implementation and impact of norms and measures adopted to promote equality of rights", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Take more effective measures to address the problem of social and economic inequality, in particular in the areas of health, education and employment opportunities between the population in the urban and rural areas", - "values": [ - "4 - General action" - ] - }, - { - "text": "Continue its dialogue with indigenous persons", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Introduce a general statutory time limit on immigration detention and ensure such detention is not used in the case of vulnerable individuals or groups", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Ratify the main human rights instruments to which Bahrain is not yet party, and adapt its national legislation to these and withdraw its reservations to the Convention on the Elimination of All Forms of Discrimination against Women", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Intensify measures to improve access by minority groups and indigenous people to basic social services, such as health, education, employment, and occupation ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Remove laws criminalizing same-sex relationships", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Continue to take measures in promoting women's participation in political affairs ", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Ensure that all human rights of indigenous persons are promoted and respected, inter alia by ensuring the participation of concerned groups in the decision-making processes that affect their human rights and by ensuring that the application of the Counter-Terrorism Law does not undermine the human rights of indigenous as well as other persons ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Eliminate sterilization as a necessary criterion for the recognition of the gender of transgender persons", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Take effective measures to reduce child marriage", - "values": [ - "4 - General action" - ] - }, - { - "text": "Examine recent restrictive legislation on NGOs with a view to prevent that legitimate demonstrations and protests by civil society can be taken to Court or criminalized under the penal definition of "terrorism" or "sabotage" ", - "values": [ - "3 - Considering action" - ] - }, - { - "text": "Take the appropriate measures to abolish the death penalty from its criminal justice system", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Take action to reduce domestic violence and to criminalize it", - "values": [ - "4 - General action" - ] - }, - { - "text": "Continue the policy of free education for all children, through cooperation and assistance from the international community ", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Intensify its efforts to ensure full and effective implementation of the Law on Elimination of Violence against Women and implement United Nations Security Council resolutions on Women, Peace and Security ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Address the recommendation made in 2009 by the then Independent Expert on Extreme Poverty and Human Rights, regarding the major efforts to be undertaken to incorporate and coordinate social programmes with a cultural approach and a gender perspective ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Ensure that asylum seekers have free legal aid throughout the asylum procedure ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Study the measures it considers appropriate to enable the accreditation of the Ombudsman as National Institution of Human Rights, in accordance with the Paris Principles ", - "values": [ - "3 - Considering action" - ] - }, - { - "text": "Continue its efforts to inform and raise awareness of the population on human rights principles ", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Abolish anti-conversion laws in relation to religion and grant access to justice to victims of religious violence and discrimination ", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Abolish the criminal laws as the "National Security Law"", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Increases its efforts to eliminate alleged brutality and use of excessive force by law enforcement officials against, inter alia, Latino and African American persons and undocumented migrants, and to ensure that relevant allegations are investigated and that perpetrators are prosecuted ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Strengthen the democratic institutions ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Take the necessary measures to fully implement the 1997 Constitution and thus allow, among others, the existence and independence of political parties and other organs of civil society ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Fully ensure the right to exercise freedom of expression, including Internet freedom, and, in this respect, amend the regulations for online media", - "values": [ - "4 - General action" - ] - }, - { - "text": "Take effective measures to increase budgetary allocation to the health sector", - "values": [ - "4 - General action" - ] - }, - { - "text": "Promote a secure environment and a stable and sustainable policy to allow the Central African people to benefit from all human rights", - "values": [ - "4 - General action" - ] - }, - { - "text": "Take effective steps to prevent arbitrary use of existing regulations to discriminate against LGBT people, including their rights to freedom of expression and peaceful assembly ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Strengthen trafficking victim protection services by creating and publicizing a victim hotline and training immigration officials so trafficking victims are adequately informed of their rights ", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Continue its efforts towards the protection and promotion of human rights ", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Ensure that victims of domestic violence have access to adequate assistance, including legal and psychological counselling, medical help and shelter ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Continue efforts to put a halt to banditry and to help alleviate the suffering of its people by reforming its security services", - "values": [ - "4 - General action" - ] - }, - { - "text": "Ratify the optional protocol to the Convention against Torture and other cruel, inhumane or degrading treatment or punishment ", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Take steps to bring the definition of torture in line with the requirements of the Convention against Torture and Other Cruel, Inhuman or Degrading Treatment or Punishment", - "values": [ - "4 - General action" - ] - }, - { - "text": "Take concrete measures with a view to decriminalizing consensual same-sex relations and abolishing any discriminatory legislation against lesbian, gay, bisexual, transgender and intersex persons, even if such laws are not applied in practice", - "values": [ - "4 - General action" - ] - }, - { - "text": "Accede to international human rights instruments which is not yet acceded to", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Continue to advance its poverty reduction strategy by actively implementing its second strategy framework for Growth and poverty (CSLPII), promoting its social and economic development which would enable the country to better protect and promote the various rights of its people ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Implement Security Council resolution 1325 (2000) and related resolutions on women, peace and security", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Finalize, as soon as possible, the establishment of a Truth Reconciliation Commission faithful to the spirit of the Arusha Agreements and representative of the recommendations made during the public consultations in 2010 ", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Consider expediting the ratification of the Rome Statute of the International Criminal Court ", - "values": [ - "3 - Considering action" - ] - }, - { - "text": "Further widen its scope of assistance to women, people with disabilities and other vulnerable groups, in this regard", - "values": [ - "4 - General action" - ] - }, - { - "text": "Given that Russian is the mother tongue of a significant proportion of Ukraine's population, to consider assigning the Russian language the status of second national language.", - "values": [ - "3 - Considering action" - ] - }, - { - "text": "Take the necessary measures to reduce the early school leaving rate", - "values": [ - "4 - General action" - ] - }, - { - "text": "Adopt a law on the fight against all forms of discrimination and clearly guarantee, in its domestic law, the freedom of expression and therefore the right for LGBT persons to peaceful demonstrations ", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Continue the national efforts to combat domestic violence", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Continue its endeavours to combat all forms of human trafficking", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Take measures to bridge the wage gap between women and men ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Take adequate measures to integrate human rights education into school curricula and design human rights training programmes for civil servants and security officers ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Take measures to address stereotypical attitudes towards the Roma community and to promote access to education, health and employment for the Roma community", - "values": [ - "4 - General action" - ] - }, - { - "text": "Adopt specific criminal legislation to protect the rights of women", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Explicitly include sexual orientation and gender identity as protected grounds under the principle of non-discrimination in relevant legislation and programmes, and to apply the Yogyakarta principles with regard to human rights and sexual orientation and gender identity", - "values": [ - "4 - General action" - ] - }, - { - "text": "Ratify the Convention on the Rights of Persons with Disabilities that is has already signed in 2007 ", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Further its measures aimed at reduction of poverty and dealing with food insecurity and access to water resources ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Ensure effective implementation of the Proposed National Plan of Action for the issues raised in its National Report as well as UPR recommendations ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Expedite the creation of a national human rights institution in line with the Paris Principles", - "values": [ - "4 - General action" - ] - }, - { - "text": "Provide equal access to education by the people", - "values": [ - "4 - General action" - ] - }, - { - "text": "Take every necessary measure to ensure that no children under the age of 18 are recruited into armed forces, releasing unconditionally all children previously recruited ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Guarantee access to medical services, including safe and legal abortion, for victims of sexual violence", - "values": [ - "4 - General action" - ] - }, - { - "text": "Undertake all necessary measures to stop sexual exploitation and violence against women in the armed forces ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Ensure the realization of the right to education to all children in Cambodia, including to the children of Vietnamese origin, and sign and ratify the Optional Protocols to ICESCR and to the Convention on the Rights of the Child on a communications procedure ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Cooperate closely with the United Nations High Commissioner for Refugees with regard to the status of refugees and asylum seekers", - "values": [ - "4 - General action" - ] - }, - { - "text": "Continue implementing its project aimed at eliminating child trafficking and child labour in fishing communities", - "values": [ - "4 - General action" - ] - }, - { - "text": "Continue, as it has done, to ensure respect for the human rights of all migrants.", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Revert to the de facto moratorium of the death penalty, and foster the necessary public debate on this issue, as a previous step for the definitive abolishment of the death penalty ", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Formulate and implement a national action plan against the sexual exploitation of children ", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Develop strategies, containing both legal and social measures, to eliminate discriminatory stereotyping of the roles of women and violence against them", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Take additional tangible steps to protect children, in particular to address their critical nutritional and health-care needs", - "values": [ - "4 - General action" - ] - }, - { - "text": "Continue the implementation of the National Referral Protocol on Gender-based Violence and the National Plan of Action on Gender-based Violence (2012) all across the country", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Increase efforts to prevent trafficking in women and girls and provide support to victims effectively by implementing the integrated National Plan of Action against Trafficking in Human Beings and fully enforcing the legislation on trafficking ", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "The application of best practices in all areas of the universal periodic review process, beginning with the preparation of the report in consultation with the relevant stakeholders, in order to guarantee the implementation of the outcome of the review and follow-up on the progress made by Bahrain in implementing the outcome.", - "values": [ - "4 - General action" - ] - }, - { - "text": "Strengthen judicial institutions, inter alia by the provision of adequate staffing as well as material resources ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Stop the prosecution and persecution of people for the practice of their religion or belief including Catholics, other Christians, Tibetans, Uyghurs, and Falun Gong, and set a date for the visit of the Special Rapporteur on Freedom of Religion or Belief", - "values": [ - "4 - General action" - ] - }, - { - "text": "Continue to promote economic and social development to steadily raise peoples\u2019 living standards so as to provide a firm foundation for the enjoyment of all human rights", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Continue its efforts and initiatives to reform the judicial system", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Effectively cooperate with OHCHR and the mandate holders of the Human Rights Council, including the Special Rapporteur on the situation of human rights in Eritrea, and issue a standing invitation to the special procedures mandate holders ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Implement the CERD and the CEDAW recommendations on adequate and accessible health services in order to lower the high maternal and infant mortality among the indigenous population", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "The international community to support Kenya through a programme to build capacities and strengthen institutions for the promotion and protection of human rights ", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Continue to undertake efforts to narrow the income gap within its society and improve good governance in pursuit of a comprehensive socioeconomic advancement", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Consider acceding to ILO Convention No. 189 (2011) concerning decent work for domestic workers ", - "values": [ - "3 - Considering action" - ] - }, - { - "text": "Continue efforts to combat HIV/AIDS through the National Parliament Strategy on HIV/AIDS for 2016-2021", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Continue negotiations with a view to a peaceful resolution of pending questions ", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Continue the efforts to improve the treatment of migrants and asylum seekers", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Continue its efforts to provide educational facilities for students with special educational needs", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Strengthen efforts to implement the key reforms, including the police reform ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Ensure respect for the right to freedom of assembly, in line with its international obligations", - "values": [ - "4 - General action" - ] - }, - { - "text": "Continue and strengthen strategies and programs for comprehensive development, especially in the rural and less developed areas of the country", - "values": [ - "4 - General action" - ] - }, - { - "text": "Consider establishing a National Human Rights Institution (NHRI) in accordance with the Paris Principles", - "values": [ - "3 - Considering action" - ] - }, - { - "text": "Make efforts to combat corruption", - "values": [ - "4 - General action" - ] - }, - { - "text": "Continue to implement its various programmes to reduce HIV prevalence and to improve access to quality health care by its people ", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Adopt all necessary measures to eliminate all forms of discrimination, including indirect discrimination against women, guarantee comprehensive attention to victims of gender-based violence, sexual violence, trafficking in persons and sexual exploitation", - "values": [ - "4 - General action" - ] - }, - { - "text": "Ratify, until the next universal periodic review, ICESCR, the Convention on the Rights of the Child, Protocols I and II of the Geneva Conventions of 12 August 1949, ILO Conventions no. 87 - on freedom of association - and no. 98 - on the right to collective bargaining - as well as withdraw the reservation made to article 4 of the International Convention on the Elimination of Racial Discrimination ", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Take concrete measures aimed at effectively fighting against genderbased violence, including social awareness-raising campaigns and training programmes targeting law enforcement officials", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Decriminalize homosexuality by abrogating the legal provision that currently penalizes sexual relations with persons of the same sex, and sign the joint statement made in the General Assembly in December 2008 on human rights, sexual orientation and gender identity ", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Continue its national housing policy to address the housing shortage", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Increase its efforts to prevent racially motivated offences and adopt required legislation as well as ensure that relevant criminal law provisions are effectively implemented", - "values": [ - "4 - General action" - ] - }, - { - "text": "Address, in a comprehensive manner, the rise of negative attitudes towards immigrants as reported in the 2009 Spanish Racism and Xenophobia Report ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Take concrete measures to repeal laws and practices that are discriminatory toward women, including in respect of property, land ownership and marriage", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Ensure that domestic measures in the fight against terrorism and all forms of extremism uphold the fundamental rights", - "values": [ - "4 - General action" - ] - }, - { - "text": "Continue measures in the field of women and child's rights protection ", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Adhere to the principles under the 1951 Convention relating to the Status of Refugees and its Protocol of 1967 with a view to their ratification", - "values": [ - "4 - General action" - ] - }, - { - "text": "Ratify the Second Optional Protocol to the International Covenant on Civil and Political Rights - the Optional Protocol to the International Covenant on Economic, Social and Cultural Rights - the Optional Protocol to the Convention against Torture and Other Cruel, Inhuman or Degrading Treatment or Punishment - the Optional Protocol to the Convention on the Elimination of All Forms of Discrimination against Women - the Optional Protocol to the Convention on the Rights of the Child on the sale of children, child prostitution and child pornography - the Optional Protocol to the Convention on the Rights of the Child on the involvement of children in armed conflict - and the International Convention for the Protection of All Persons from Enforced Disappearance \n", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Accelerate the establishment and the effective implementation of a solid public defence system in all states, in agreement with recommendations 119.31, 119.10, 119.12 and 119.14 from the second cycle", - "values": [ - "4 - General action" - ] - }, - { - "text": "Continue the efforts to eliminate discrimination against the Roma and carry out a major awareness campaign among the population regarding the situation of the Roma ", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Continue to ensure inclusive education for children and persons with disabilities, as education would allow them to participate more fully in the development of their own communities ", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Continue its efforts to implement the national plan for the human rights of persons with disabilities and exert further efforts to eliminate discrimination against them and integrate them into society ", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Take necessary measure to prevent and protect further assaults on health services centres", - "values": [ - "4 - General action" - ] - }, - { - "text": "Speed up the adoption of the draft law on exempting disabled children from transportation costs within and outside cities ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Enable access to military facilities to the Special Rapporteur on the question of torture as requested ", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Take the necessary steps to ensure that security forces are subject to legal oversight and are operating in compliance with international human rights standards ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Protect the rights of human rights defenders ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Take measures towards the ratification of the Optional Protocol to the Convention against Torture", - "values": [ - "4 - General action" - ] - }, - { - "text": "Consider developing human rights indicators as suggested by OHCHR as an instrument that allows for a more precise and coherent evaluation of national human rights policies", - "values": [ - "3 - Considering action" - ] - }, - { - "text": "Strengthen measures aimed at combating racial profiling and discriminatory practices towards racial-ethnic minorities and immigrants, particularly by police and border control authorities", - "values": [ - "4 - General action" - ] - }, - { - "text": "Consider extending a standing invitation to human rights special procedures.", - "values": [ - "3 - Considering action" - ] - }, - { - "text": "Redouble its efforts to tackle the issue of violence against women, including domestic violence, by, for example, creating layers of legislative measures to safeguard victims as well as strengthening the overall implementation of relevant measures on this issue ", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Reinstate a moratorium on executions", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Develop a national plan to combat gender violence and allow effective implementation of the national and international legal framework, that also involves training of persons employed in the justice system", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Increase budgetary allocations to ensure equal access to free and quality primary education in all regions and to improve the physical infrastructure of schools, including teaching materials ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Harmonize the law with the Convention relating to the Status of Refugees", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Continue taking serious consideration on the ratification of the International Convention on the Rights of All Migrant Workers and Members of Their Families and the ILO Domestic Workers Convention, 2011 (No. 189)", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Strengthen legal and policy frameworks, programmes and coordination measures to address child labour and sexual exploitation of children", - "values": [ - "4 - General action" - ] - }, - { - "text": "Reduce illiteracy rates, in particular among women.", - "values": [ - "4 - General action" - ] - }, - { - "text": "Adopt all necessary measures to eradicate the persistent practice of FGM, including, inter alia, new awareness-raising campaigns in cooperation with international and regional organizations and civil society ", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Strengthen democracy, good governance, the rule of law and human rights through bilateral and multilateral cooperation, particularly through the United Nations", - "values": [ - "4 - General action" - ] - }, - { - "text": "With international assistance, intensify efforts against the spread of HIV/AIDS in the country, with increased attention to prevention and care for affected children ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Investigate reports and allegations of arbitrary arrest, unlawful detention and forced disappearance of opposition political figures and members of civil society, and prosecute perpetrators", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Investigate and prosecute incidents of hate speech", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "With the continued support of the international community, reinforce the capacity of law enforcement authorities through awareness-raising of police and other law enforcement officials to ensure their compliance with international human rights standards and by adopting relevant legislation", - "values": [ - "4 - General action" - ] - }, - { - "text": "Issue a standing invitation to all mandate holders under the special procedures", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Continue to seek technical assistance to address the specific problem of the disproportionately negative impact of climate change on women and children ", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Continue strengthening the role of women in the professional and labour market spheres", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Seek the help of the international community to counter all challenges, mentioned in its national report and especially poverty alleviation and improvement of the living standards of its people and all environmental constraints that challenge human rights and development efforts", - "values": [ - "1 - Minimal action" - ] - }, - { - "text": "Recommended that an amendment be made to the legal system so that crimes of sexual violence and sexual abuse are made punishable, and those responsible for such crimes do not enjoy impunity.", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Take further steps to address discrimination against women and people belonging to vulnerable groups including children, minorities and indigenous people.", - "values": [ - "4 - General action" - ] - }, - { - "text": "Continue strengthening the National Policy for the mainstreaming of an intercultural approach", - "values": [ - "3 - Considering action" - ] - }, - { - "text": "Adjust its national laws to the international obligations undertaken", - "values": [ - "4 - General action" - ] - }, - { - "text": "Respect the principles of human rights and the rule of law in the fight against terrorism", - "values": [ - "4 - General action" - ] - }, - { - "text": "Continue implementation of national priorities and measures aimed at settling issues related to the promotion and protection of human rights in accordance with its legislation and international obligations", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Sign and ratify the Convention on the Rights of Persons with Disabilities ", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Provide, in accordance with its obligations under international human rights law instruments, effective protection for the family as the fundamental and natural unit of society", - "values": [ - "4 - General action" - ] - }, - { - "text": "Promptly respond to complaints of harassment, intimidation or arbitrary arrests of human rights defenders, and take adequate measures for their safety ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Give greater attention to the programmes for the reduction of infant mortality due to Aids and the national prevalence of HIV amongst women, as well as fighting the epidemics of cholera and tuberculosis ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Ratify the conventions that Ghana is a signatory to", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Ratify the Rome Statute of ICC and OP-CAT ", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Continue to increase efforts to prevent and fight trafficking in persons, including by adopting measures necessary for the prosecution and punishment of perpetrators of trafficking in persons, and to ensure the provision of the access to shelter and rehabilitation to victims ", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Continue consultations with civil society in the follow-up to this review", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Take further steps in combating trafficking in persons.", - "values": [ - "4 - General action" - ] - }, - { - "text": "Indonesia is encouraged to identify its capacity building needs related to the Universal Periodic Review follow-up and seek regional and international cooperation in this regard, including through integration of the Universal Periodic Review recommendations, as appropriate, into its national development strategy and into its dialogue with relevant stakeholders through existing mechanisms. Such capacity-building needs could pertain, inter alia, to issues such as harmonization of local laws with national and international standards or to strengthening national human rights institutions", - "values": [ - "1 - Minimal action" - ] - }, - { - "text": "Operationalize the National Human Rights Institution and the National Child Rights Committee", - "values": [ - "4 - General action" - ] - }, - { - "text": "Adopt necessary policy measures to enable women to accede, under equal conditions, to positions of responsibility in the public and private sector ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Strengthen freedom of assembly and expression, ensuring adequate access to internet", - "values": [ - "4 - General action" - ] - }, - { - "text": "Intensify strategies aimed at respecting life from conception to its natural death", - "values": [ - "4 - General action" - ] - }, - { - "text": "Continue efforts to address the issue of IDPs with a view to finding a durable solution", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Continue increasing the quality in the social use and access to information and communication technologies ", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Adopt a comprehensive strategy to combat violence against women and a comprehensive law on violence against women that specifically criminalize domestic violence", - "values": [ - "4 - General action" - ] - }, - { - "text": "Do even more to fully harmonize all of its domestic laws with the international conventions that are in force", - "values": [ - "4 - General action" - ] - }, - { - "text": "Continue to take measures in order to reduce the rate of mortality due to HIV and AIDS ", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Continue efforts made to achieve the goals of Vision 2016.", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Take further measures to prevent torture including acceding to the Optional Protocol to CAT and establishing a national preventive mechanism accordingly", - "values": [ - "4 - General action" - ] - }, - { - "text": "Intensify its efforts in promoting equal opportunity and treatment for women in other aspects, such as employment, education and family life, as well as to adopt necessary legislation to prohibit and criminalize all forms of violence against women and domestic violence ", - "values": [ - "4 - General action" - ] - }, - { - "text": "In the general framework of substantial respect for fundamental rights and the principles of democracy and the Constitution, ensure freedom of expression and peaceful assembly and protect the activities of human rights defenders, political activists and journalists", - "values": [ - "4 - General action" - ] - }, - { - "text": "Refrain from undue restrictions, such as the prohibition to engage in the promotion and protection of human rights, in the elaboration of legislation on civil society organizations, and facilitate the registration of international NGOs", - "values": [ - "4 - General action" - ] - }, - { - "text": "Continue applying programmes and measures to prevent and combat the problem of HIV/AIDS ", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Continue efforts for the reform of the judiciary, to improve access to justice and fight against the abusive recourse to pretrial detention", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Move towards deinstitutionalisation of all children by investing in and promoting family-based care facilities for children in line with the Guidelines on Alternative Care for Children", - "values": [ - "4 - General action" - ] - }, - { - "text": "Ratify promptly the International Convention on the Protection of the Rights of All Migrant Workers and Members of Their Families and the Optional Protocol to the International Covenant on Civil and Political Rights", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Explicitly prohibit death penalty for offences committed by persons below 18 years of age, pursuant to the General Assembly resolution adopted on 20 December 2012 and Article 37 of the Convention on the Rights of the Child", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Review and revise the Code of Civil Procedure, as necessary, to ensure that persons with disabilities are not deprived of their right to vote on the basis of disability", - "values": [ - "3 - Considering action" - ] - }, - { - "text": "Consider identifying priority sectors where Maldives faces a lack of trained and qualified professionals and seek technical and capacity-building assistance from the international community", - "values": [ - "3 - Considering action" - ] - }, - { - "text": "Grant access to the Special Rapporteur on the situation of human rights in the Democratic People's Republic of Korea and accept technical cooperation from United Nations human rights mechanisms ", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Accelerate the process of the establishment of a national human rights commission in accordance with the Paris Principles", - "values": [ - "4 - General action" - ] - }, - { - "text": "Ensure that legitimate acts of political dissent are not criminalized and freedom of opinion, of the media and of assembly are fully respected when applying the Terrorist Act of 2009, in line with the NHRAP ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Ratify core international human rights treaties, including the ICCPR, ICESCR, CEDAW", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Take the necessary measures for the adoption of laws on the new Criminal Code, trafficking in persons and the prison system", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Continue the successful implementation of the new National Human Rights Action Plan (NHRAP) for 2012-2015 through its cooperation with OHCHR", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Investigate thoroughly all allegations of mistreatment of prisoners ", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Consider enacting specific legislation on domestic violence to hold perpetrators accountable for their behaviour", - "values": [ - "3 - Considering action" - ] - }, - { - "text": "Ensure that the domestic legislation concerning discrimination is consistent with that contained in the International Convention on the Elimination of all Forms of Racial Discrimination (ICERD) which deals furthermore with all forms of direct or indirect discrimination based on age, sex, religion and sexual orientation", - "values": [ - "4 - General action" - ] - }, - { - "text": "Continue promoting the rights of lesbian, gay, bisexual, transgender and intersex persons and protect them from violence and social and cultural discrimination", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Strengthen the capacities of the judiciary, including by increasing the personnel and improving its working conditions ", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Take effective measures to ensure that lawyers can defend their clients without fear of harassment and can participate in the management of their own professional organisations", - "values": [ - "4 - General action" - ] - }, - { - "text": "Develop a concrete action plan to encourage and support women's active involvement in economic and political life, including effective measures to increase women's involvement in the economy and formal political institutions by addressing existing legal, social, and cultural barriers", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Undertake actions to prevent and combat domestic violence and define a date for ratification of the Council of Europe Convention on Preventing and Combating Violence against Women and Domestic Violence ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Ensure the full realization of the rights of migrants on its territory by enacting legislation and providing training to concerned officials", - "values": [ - "4 - General action" - ] - }, - { - "text": "Ratify and implement the core human rights instruments, in particular the Convention on the Elimination of All Forms of Discrimination against Women and the Optional Protocol to the Convention against Torture and Other Cruel, Inhuman or Degrading Treatment or Punishment, and abolish the death penalty, as previously recommended", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Study the possibility of eliminating any criminalisation of same sex relations ", - "values": [ - "3 - Considering action" - ] - }, - { - "text": "That the Nigeria's President and National Assembly not approve the Same Gender Marriage Bill and eliminate all existing legislation that discriminates based on gender and sexual orientation", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Intensify efforts to enhance the independence, efficiency and accountability of the judiciary", - "values": [ - "4 - General action" - ] - }, - { - "text": "Extend an open and standing invitation to United Nations human rights special procedures mandate holders ", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Build on current efforts to address domestic and sexual violence by promoting training and public-awareness programmes, supporting the establishment of shelters for victims, and ensuring full implementation of judicial mechanisms that allow adequate investigations and punishment of perpetrators ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Promptly ratify the International Convention on the Rights of All Migrant Workers and Members of Their Families", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Increase its collaboration with regional and hemispheric partners to address high levels of violence and organised crime", - "values": [ - "4 - General action" - ] - }, - { - "text": "Ratify the Second Optional Protocol to ICCPR, aiming at the abolition of the death penalty (ICCPR-OP 2), CAT and OP-CAT, the Optional Protocol to the International Covenant on Economic, Social and Cultural Rights, and the three optional protocols to CRC", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Strengthen measures aimed at improving security in the whole country notably in response to the activities of terrorist groups in the country", - "values": [ - "4 - General action" - ] - }, - { - "text": "Remedy school dropouts, especially in the rural areas", - "values": [ - "4 - General action" - ] - }, - { - "text": "Take further measures to encourage and facilitate self-employment among the youth, enabling them to play a greater role in national development", - "values": [ - "4 - General action" - ] - }, - { - "text": "Respect freedoms of expression, association and assembly, pursuant to international instruments, use mediation procedures to calm conflicts, and end the use of imprisonment for speech critical of the Government.", - "values": [ - "4 - General action" - ] - }, - { - "text": "Establish a mechanism for monitoring public policies that protect the rights of persons with disabilities, especially in the areas of education, health and employment", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Continue efforts aimed at promoting and protecting human rights on the ground ", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Taking note of reduction of number of crimes punishable by the death sentence, consider introducing a moratorium with a view to abolish the death penalty in the future ", - "values": [ - "3 - Considering action" - ] - }, - { - "text": "Consolidate the achievements in the field of human rights protection by strengthening the financial resources allocated to the Commission for Human Rights and Good Governance", - "values": [ - "4 - General action" - ] - }, - { - "text": "Accelerate the process to adopt a law on gender equality and carry out awareness-raising activities on the issues of gender and domestic violence in the judicial sector, in the security forces as well as in schools", - "values": [ - "4 - General action" - ] - }, - { - "text": "Strengthen prevention efforts, including through legislative measures aimed against domestic violence and ensure that all professionals working with victims of domestic violence receive regular and comprehensive training", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Ensure that existing legal and constitutional provisions protecting human rights in particular freedom of expression, association and assembly are fully implemented nationwide, repeal discriminatory local by-laws contrary to the Constitution of Indonesia, prioritize progress on equality and non-discrimination, including in relation to lesbian, gay, bisexual and transgender persons, take action to prevent extremist groups from harassing, intimidating or persecuting religious and other minorities, and provide human rights training to officials in the legal and judicial system", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Ensure the implementation of law 99-05, which prohibits Female Genital Mutilation (FGM) to prevent and eradicate this practice", - "values": [ - "4 - General action" - ] - }, - { - "text": "Continue with the reform process and ratify a number of its outstanding international instruments to provide full enjoyment of all human rights to its people ", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Ensure the full enjoyment of the rights to freedom of assembly and freedom of expression, facilitate the holding of peaceful rallies and revise existing laws or refrain from adopting new laws placing undue restrictions and deterrents on the exercise of freedom of assembly and freedom of expression", - "values": [ - "4 - General action" - ] - }, - { - "text": "Strengthen further legislative and institutional mechanisms to combat all forms of exploitation and violation of women's and children's rights", - "values": [ - "4 - General action" - ] - }, - { - "text": "Take continued action to combat violence against women and girl children ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Maintain the commitment to increasingly support the rights of persons with disabilities", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Adopt all legislative and policy measures to eradicate child and forced marriages", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Implement effectively the 2030 Sustainable Development Goals and promote sustainable economic and social development in order to create a solid foundation for the development of its human rights cause", - "values": [ - "4 - General action" - ] - }, - { - "text": "Establish an A-status national human rights institution based on the Paris Principles", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Consider how best the specific needs of individuals belonging to minorities could be addressed in order to ensure their equal enjoyment of all human rights, as provided for in the Constitution.", - "values": [ - "3 - Considering action" - ] - }, - { - "text": "Adopt a uniform Family Code that fully complies with the provisions of CEDAW.", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Ratify the Convention against Torture and Other Cruel, Inhuman or Degrading Treatment or Punishment and its Optional Protocol", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Eradicate domestic child labour and economic exploitation of children", - "values": [ - "4 - General action" - ] - }, - { - "text": "Continue implementing the current policies to reduce poverty ", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Bring the national law to conformity with the international human rights standards", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Continue with the plan of national reconstruction", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Continue to adopt measures to strengthen the criminal justice system, in order to ensure accountability for crimes committed", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Pursue the implementation of the concept of Scientific Outlook on Development perspectives to ensure comprehensive, coordinated and lasting development and to continue building a harmonious society marked by democracy, primacy of the law, equity and justice", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Consider acceding to the two Optional Protocols to the ICCPR ", - "values": [ - "3 - Considering action" - ] - }, - { - "text": "Take the necessary measures aimed at preventing discrimination against children with disabilities, children living in extreme poverty and street children", - "values": [ - "4 - General action" - ] - }, - { - "text": "Incorporate its international human rights obligations into domestic laws, in particular with regard to economic, social and cultural rights ", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Decriminalize defamation as recommended by the United Nations Educational, Scientific and Cultural Organization ", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Continue efforts to harmonize national legislation with international human rights norms", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Submit as soon as possible the reports under the two international Covenants that have been pending since 1991 and 1990, respectively ", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Strengthen its cooperation with the special procedures mandate holders by responding positively to the pending visit requests and eventually consider extending a standing invitation to all of them ", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Accede to the remaining core international human rights instruments such as ICESCR, ICERD ", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Canada is committed to legislation to end a clear inequality, often adversely affecting Aboriginal women and children, to ensure that, in the event of a marriage or common law relationship break down, Aboriginal people on reserve are afforded the same rights and protections that all other Canadians currently enjoy.", - "values": [ - "4 - General action" - ] - }, - { - "text": "Promote the participation of persons with disabilities and integrate them more widely in Bahraini society", - "values": [ - "4 - General action" - ] - }, - { - "text": "Increase the number and quality of gender-sensitive training events on violence against women for the judiciary and law enforcement agencies", - "values": [ - "4 - General action" - ] - }, - { - "text": "Conduct relevant actions to prevent that minors are referred to detention centers for adults", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Revise and harmonize legislation on sexual and domestic violence with a view to penalizing all acts of violence committed against women", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Step up the implementation of programmes aimed at reducing illiteracy, as part of the achievement of the Millennium Development Goals", - "values": [ - "4 - General action" - ] - }, - { - "text": "Implement greater measures to guarantee in an effective manner the legal safeguards for all detained migrants, improve the detention and living conditions of migrants, in particular by modernizing detention centres", - "values": [ - "4 - General action" - ] - }, - { - "text": "Guarantee fully the right to freedoms of assembly, association and expression, in conformity with the International Covenant on Civil and Political Rights ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Increase its cooperation with the treaty bodies and consider adding to the number of international human rights instruments to which it is a party, for instance, by adhering to ICCPR, CAT and ICERD", - "values": [ - "4 - General action" - ] - }, - { - "text": "Ratify the International Labour Organization Domestic Workers Convention, 2011 (No. 189)", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Take measures to secure the rights of due process guaranteed by ICCPR", - "values": [ - "4 - General action" - ] - }, - { - "text": "Ensure all irregular migrants have equal access to and protection under Australian law ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Adopt a sexual and reproductive health policy for adolescents and develop a policy to protect the rights of pregnant teenagers, adolescent mothers and their children and combat discrimination against them", - "values": [ - "4 - General action" - ] - }, - { - "text": "Namibia shall continue to build the Namibian society in a spirit of harmony and national reconciliation.", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Continue to improve the promotion and protection of the rights of indigenous peoples, in particular the respect of their cultural and linguistic diversity, and further think about programmes and policies for indigenous peoples, particularly focusing on women and children ", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Continue assisting former-combatants through livelihood schemes", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Consider issuing a standing invitation to the special procedures of the Human Rights Council ", - "values": [ - "3 - Considering action" - ] - }, - { - "text": "Move forward with the ratification of the International Covenants on Civil and Political Rights and on Economic, Social and Cultural Rights, including the Second Optional Protocol to the International Covenant on Civil and Political Rights, aiming at the abolition of the death penalty", - "values": [ - "4 - General action" - ] - }, - { - "text": "Respect article 12 of the Constitution, which protects privacy, and eliminate abuses of this article that lead to arbitrary arrests and prosecutions on charges related to consensual same sex relations ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Ratify the OP-CAT and recognize the competence of CAT to examine individual complaints", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Cease bombardments, the use of chemical weapons, attacks against civilians and immediately lift all sieges", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Work towards implementing resolution 16/18 of the Human Rights Council concerning combating intolerance, negative stereotyping and stigmatization of, and discrimination, incitement to violence and violence against, persons based on religion or belief", - "values": [ - "4 - General action" - ] - }, - { - "text": "Consider extending a standing invitation to all special procedures of the Human Rights Council ", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "The Government is committed to promoting gender equality, as enshrined in the Constitution, and is making efforts to ensure women's empowerment.", - "values": [ - "4 - General action" - ] - }, - { - "text": "Provide adequate protection to indigenous peoples and ensure that their right to possess land is respected.", - "values": [ - "4 - General action" - ] - }, - { - "text": "Continue to defend the institution of the family, based on the union of a man and a woman, and to keep providing assistance to those most vulnerable to human rights violations, particularly women, children and the elderly", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Continue reforming its excellent education policy, in particular the programme of universal secondary education", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Continue improving the living standards of its people through guarantees of the broader implementation of economic, social and cultural rights ", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Intensify efforts to bring the Office of the Ombudsman into compliance with the Paris Principles", - "values": [ - "4 - General action" - ] - }, - { - "text": "Sign and ratify CED ", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Adopt the draft law on the marriage of minors", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Consider ratifying the International Convention for the Protection of All Persons from Enforced Disappearance (ICPPED)", - "values": [ - "3 - Considering action" - ] - }, - { - "text": "Prohibit and eliminate corporal punishment of children, as this is a key obligation under the Convention on the Rights of the Child and other international human rights instruments", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Continue to strengthen the abilities of the law enforcement agents to address the impunity of the perpetrators of sexual and sexist violence and to ensure the protection of the victims of trafficking", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Take steps to decriminalize homosexuality and promote respect for the principles of equality and non-discrimination against lesbian, gay, bisexual, transgender and intersex persons", - "values": [ - "4 - General action" - ] - }, - { - "text": "Take the necessary measures to prevent cruel and discriminatory treatment against asylum seekers, migrants and refugees, especially if these are minors, and ensure compliance with the principle of non-refoulement of the Convention relating to the Status of Refugees ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Take proper legal and administrative measures and adopt the national plan of action to ensure full observance of rights of indigenous peoples.", - "values": [ - "4 - General action" - ] - }, - { - "text": "Make more strenuous effort to address the issue of violence against women, including through intensifying its awareness-raising and strengthening prevention efforts and measures", - "values": [ - "4 - General action" - ] - }, - { - "text": "Take specific measures to address the high incidence of violence against women and children, as a matter of priority", - "values": [ - "4 - General action" - ] - }, - { - "text": "Continue to pay attention to all aspects of gender equality, in particular to the recommendations of the working group established by the Gender Equality Committee on the integration of gender equality aspects into process and content of all educational levels until 2020", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Put an end, de jure and de facto, to the practice of corporal punishments in traditional judicial systems", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Seek for technical capacity development assistance from the United Nations as well as its international development partners", - "values": [ - "1 - Minimal action" - ] - }, - { - "text": "Continue efforts to reduce poverty, improve the well-being of the people, protect and enforce the rights of vulnerable groups of the population", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Fully enforce the commitment to abolishing female genital mutilation ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Ratify as soon as possible the Council of Europe Convention on Preventing and Combating Violence against Women and Domestic Violence (the Istanbul Convention)", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Cooperate with civil society, non-governmental organizations and other actors to provide sufficient support for victims of domestic violence, inter alia shelters and protection, in order to comply with its international obligations ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Continue to strengthen the various mechanisms and institutions in the judicial as well as governmental level to promote and protect as well as monitor human rights, including strengthening the High Commission for Human Rights in line with the Paris Principles", - "values": [ - "4 - General action" - ] - }, - { - "text": "Increase actions against the growing phenomenon of human trafficking for the purpose of sexual exploitation", - "values": [ - "4 - General action" - ] - }, - { - "text": "Set up a database related to the socio-economic situation of the population, disaggregating the data in terms of racial and ethnic identity, persons with disabilities, national origin and gender, with a view to analyzing the social situation of different groups of the population and thus make progress in strengthening or establishing public policies to prevent and eliminate discrimination ", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Conclude the process of ratifying the Kampala amendments to the Rome Statute swiftly with a view to contributing to the activation of the jurisdiction of the International Criminal Court over the crime of aggression in 2017", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Effectively implement the Palermo Protocol, as well as other laws on human trafficking", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Continue efforts to fight against racism and racial discrimination", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Build a national commission for human rights and a human rights office in the country, and provide human rights education programmes and awareness-raising activities, calling upon the international community to consider technical assistance and financial support.", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Ensure that the fundamental principles of human rights are fully enshrined in the Constitution", - "values": [ - "4 - General action" - ] - }, - { - "text": "Investigate all reports of domestic violence, including the same-sex couples", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Decriminalize same-sex relations ", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Build state capacity to develop policy and programmatic responses to address the needs of people living with HIV", - "values": [ - "4 - General action" - ] - }, - { - "text": "Include human rights education in the curriculum of schools", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Redouble efforts in the implementation of measures seeking to reduce the gender pay gap", - "values": [ - "4 - General action" - ] - }, - { - "text": "Adopt and implement measures to protect women and children from domestic violence ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Ensure that its new human rights institution is fully compliant with the Paris Principles", - "values": [ - "4 - General action" - ] - }, - { - "text": "Reinforce the protection of human rights defenders and free those who are still detained in their capacity as human rights defenders.", - "values": [ - "4 - General action" - ] - }, - { - "text": "Follow-up the recommendations made by the Committee on the Elimination of Racial Discrimination, the Committee on Economic, Social and Cultural Rights, the Committee on the Elimination of Discrimination against Women and the special procedures that visited in September 2006, in the areas of equality and non-discrimination, paying particular attention to women and ethnic, national and religious minorities, the elimination of any distinction, exclusion or preferential treatment among groups of population in all the territories under State jurisdiction, particularly in the areas of access to justice, employment, education, health services, property rights, housing rights, family reunification, freedom of expression, belief and religion", - "values": [ - "4 - General action" - ] - }, - { - "text": "Pay particular attention to the issue of protecting journalists and those working for the mass media in order to ensure the freedom and the legitimacy of their activities ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Take necessary steps for capacity-building of employees in the human rights field", - "values": [ - "4 - General action" - ] - }, - { - "text": "Continue to seek assistance from the international community, with the support of the UN Country Team and particularly the OHCHR, in strengthening its human rights policies, including ratification of the remaining key human rights conventions and implementation of the UPR recommendations that Tajikistan will accept", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Adopt effective measures to guarantee and protect the rights of minorities without discrimination and provide them with all rights", - "values": [ - "4 - General action" - ] - }, - { - "text": "Sign the Optional Protocol to the Convention against Torture and Other Cruel, Inhuman or Degrading Treatment or Punishment ", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Bring its national legislation into conformity with international obligations on women's rights, and to follow the recommendations of the Special Rapporteur on violence against women, its causes and consequences, as well as guarantee the safety of advocates for gender equality", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Continue with actions aimed at the protection of migrant workers, especially domestic workers, from mistreatment and abuse ", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Take the necessary measures to combat discrimination against women, strengthen its domestic legislation on the rights of women and adequately enforce CEDAW provisions", - "values": [ - "4 - General action" - ] - }, - { - "text": "Further increase the attendance of girls in secondary and higher education and the participation of women in the professional sphere", - "values": [ - "4 - General action" - ] - }, - { - "text": "Strengthen actions to ensure the effective implementation of legislation for protection against all forms of racial or ethnic discrimination, with a particular consideration to the creation of oversight mechanisms", - "values": [ - "4 - General action" - ] - }, - { - "text": "Make use of the technical support from OHCHR to finalizing the overdue reports", - "values": [ - "1 - Minimal action" - ] - }, - { - "text": "Take concrete steps to increase the protection of women, ensuring that, complaints of domestic violence are properly registered and investigated by the police, and that perpetrators are prosecuted and convicted", - "values": [ - "4 - General action" - ] - }, - { - "text": "Consider adopting a moratorium on the use of the death penalty .", - "values": [ - "3 - Considering action" - ] - }, - { - "text": "Continue the serious efforts already underway to strengthen the right to education, particularly providing for increased access to education at the elementary level for girls", - "values": [ - "4 - General action" - ] - }, - { - "text": "Continue to strengthen the rights of women, particularly in relation to the equal pay issue", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Step up efforts to consider ratifying the Palermo Protocol", - "values": [ - "4 - General action" - ] - }, - { - "text": "Continue efforts to prohibit and eliminate child marriage", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Further strengthen its cooperation with the United Nations treaty bodies by submitting overdue reports as a matter of priority, and strengthen its cooperation with the special procedures", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "End the recruitment and use of children in armed forces as a matter of priority by the government forces and the opposition armed groups and to release those who have already been recruited ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Provide for adequate and consistent funding to all schools and learning institutions and ensure accountability and transparency in such funding", - "values": [ - "4 - General action" - ] - }, - { - "text": "Establish a National Preventive Mechanism in line with the Optional Protocol to the Convention against Torture requirements", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Establish a moratorium on the use of the death penalty, as a first step towards the complete abolition of this practice, and initiate a broad public debate on the death penalty with a view to its final abolition", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Consider implementing, as appropriate, the recommendations of the Office of the United Nations High Commissioner for Refugees UNHCR, human rights treaty bodies and special procedures with respect to asylumseekers and irregular immigrants, especially children ", - "values": [ - "3 - Considering action" - ] - }, - { - "text": "Release those detained solely for exercising rights to freedom of expression or for membership in a political group, and ensure remaining detainees full fair trial guarantees on an individual level", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Ensure that no person with a mental disability is executed", - "values": [ - "4 - General action" - ] - }, - { - "text": "Comply with the pertinent judgments of the ECHR concerning violations of human rights in the area of Cyprus, which are under effective control of Turkey ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Establish a Human Rights Inter-Institutional Body to allow better coordination and articulation of policies, plans and programmes from the Executive Branch aimed at improving the mechanisms for promotion and protection of human rights ", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Adopt a National Action Plan on combating racism and xenophobia, in close consultation with civil society ", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Consider amending the law so that it provides further efforts of redress for victims of domestic violence, in addition to increased punishment for repeated violations of violence against women", - "values": [ - "3 - Considering action" - ] - }, - { - "text": "Extradite Luis Posada Carriles and other terrorists sought by the Bolivarian Republic of Venezuela", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Release all prisoners of conscience and arbitrarily detained persons ", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Strengthen measures to combat family and domestic violence, particularly on access to justice and the necessary support to victims", - "values": [ - "4 - General action" - ] - }, - { - "text": "Further improve the birth registration system so as to reach universal birth registration for children in rural areas and asylum-seeking and refugee children", - "values": [ - "4 - General action" - ] - }, - { - "text": "Continue promoting education at all levels, bearing in mind the cooperation of friendly countries ", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Provide training to security forces, penitentiary services, prosecutors and judges in order to reduce the cases of institutional violence and discrimination based on sexual orientation, gender identity and expression", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Step up efforts to eliminate discrimination against women and girls in law and in practice also by adopting the pending Bills that have impact on the enjoyment of women's rights related to marriage, recognition of customary marriage, procurement, marital property, divorce and intestate succession", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Consider the possibility of acceding to and/or ratifying the International Convention on the Protection of the Rights of All Migrant Workers and Members of Their Families ", - "values": [ - "3 - Considering action" - ] - }, - { - "text": "Strengthen sexual and reproductive health services to ensure that women who qualify for legal abortion services are able to access safe, timely, quality and free services in all Mexican states", - "values": [ - "4 - General action" - ] - }, - { - "text": "Continue active efforts to de-politicize human rights in the United Nations system, and create conditions for consideration of human rights on basis of equality, mutual respect and dialogue.", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Guarantee free and unrestricted access to the Internet", - "values": [ - "4 - General action" - ] - }, - { - "text": "Take measures to improve access to grants for primary education, to make primary education compulsory, to improve the quality of primary education in remote regions and to increase the facilities to obtain secondary education throughout the country ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Adopt national legislation according to the Optional Protocol to the Convention against Torture and other Cruel, Inhuman or Degrading Treatment or Punishment", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Allow reform of the food market in order to ensure adequate food production for its population", - "values": [ - "4 - General action" - ] - }, - { - "text": "Ensure impartial and effective investigation of violence perpetrated against women and violence perpetrated against children, and ensure reparations for victims and the right to a fair trial, including legal aid, for both the victim and the accused", - "values": [ - "4 - General action" - ] - }, - { - "text": "Take further appropriate and effective measures to eliminate discrimination against Roma and ensure in particular their access to education, housing, healthcare and employment without discrimination, and gives a follow up to the recommendations of the United Nations human rights bodies in this regard.", - "values": [ - "4 - General action" - ] - }, - { - "text": "Continue its efforts to eradicate gender-based violence and to ensure the advancement of women in decision-making positions in all sectors", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Implement the National Strategy to Combat Gender-based Violence", - "values": [ - "4 - General action" - ] - }, - { - "text": "Work towards ratifying the Convention [Elimination of All Forms of Racial Discrimination], which it signed in 2015 ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Adopt an action plan to address the situation of Dalits and eliminate discrimination against them, including by ensuring access to safe drinking water and sanitation ", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Ensure all children of asylum seekers are protected", - "values": [ - "4 - General action" - ] - }, - { - "text": "Repeal all provisions that discriminate against persons on the basis of their sexual orientation or gender identity, particularly those which criminalise consensual adult same-sex relations", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Continue measures aimed at the promotion of civic responsibility to improve responsible citizenship through a culture of values and respect for human rights", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Continue strengthening the institutionalization of human rights, through establishing a national system for institutional coordination allowing to design, implement and follow-up public human rights policies", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Review the legal framework on asylum, migration and immigration and repeal the provisions on denial of stay in the country and expulsion for reasons of national security which contravene the international standards to which Denmark is a party", - "values": [ - "3 - Considering action" - ] - }, - { - "text": "Encourage the establishment of a national human rights institution compliant with the Paris Principles.", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Strengthen measures aiming to make effective the rights of the Child from an integral perspective and based on the Convention on the Rights of the Child, particularly on issue of corporal punishment", - "values": [ - "4 - General action" - ] - }, - { - "text": "Ratify ICESCR ", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Continue to strengthen educational system and ensuring equal access of disabled children to education", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Intensify efforts to accede to the Optional Protocol to the Convention against Torture and Other Cruel, Inhuman or Degrading Treatment or Punishment", - "values": [ - "4 - General action" - ] - }, - { - "text": "Become a party to the Optional Protocols to the ICCPR ", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Consider issuing standing invitations to all Special Procedures", - "values": [ - "3 - Considering action" - ] - }, - { - "text": "Bring the juvenile justice system in line with the Convention on the Rights of the Child, the Beijing Rules, the Riyadh Guidelines as well as to La Habana Rules in order to increase the age of criminal responsibility, expressly excluding criminal proceedings for all children in conflict with the law under the age of 18 years, and therefore also eliminate 'the harmful intent' criteria currently in force", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Determine terrorism in a clear manner in the Criminal Code so as to further assist the work of the relevant authorities", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Repeal all provisions of law criminalising sexual activity between consenting adults", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "As a way to strengthen Article 69 of the 2010 Child Act, remove from national legislation all forms of corporal punishment and abolish corporal punishment in the penal system", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Define and criminalize torture as a matter of priority and amend its legislation accordingly", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Continue and speed up the process of ratification of ICRMW", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Strengthen the independence of the justice system and prevent and refrain from political interference in prosecutions and trials", - "values": [ - "4 - General action" - ] - }, - { - "text": "Continue to work to fully secure the rights of the child", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Take concrete measures to address the issue of self-censorship among Moldovan journalists", - "values": [ - "4 - General action" - ] - }, - { - "text": "Improve access to justice of its citizens by reviewing legal aid procedures and the establishment of new courts ", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Prioritise the review and reform of the legislative framework to fully safeguard the rights of unaccompanied minors, including through finalisation of its National Action Plan on the Rights of the Child", - "values": [ - "4 - General action" - ] - }, - { - "text": "Put in place a juvenile justice system adapted to the needs of juvenile delinquents, particularly so that minors are not detained with adults", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Revise the penal code and criminal procedure code and within this framework the definition and criminalization of torture ", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Continue deploying its best efforts to consolidate and strengthen its institutional capacities ", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "In line with previous recommendations of Committee on the Elimination of Discrimination against Women, develop policies and programmes to support the elimination of stereotypes associated with traditional roles and prevent the emergence of new stereotypes that are discriminatory against women ", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Ratify the Optional Protocol to the Convention on the Elimination of All Forms of Discrimination against Women, taking into account the situation of victims of domestic violence in the country", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Ensure the compatibility of the quota system on the recruitment of foreign labour force with universal human rights standards", - "values": [ - "4 - General action" - ] - }, - { - "text": "Include a section aiming at promoting the human rights into the National Strategy on the Rule of Law ", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Ratify the Rome Statute of the International Criminal Court and fully align its national legislation with all obligations under the Rome Statute ", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Implement measures to ensure inclusive education for all at the primary, secondary and university levels", - "values": [ - "4 - General action" - ] - }, - { - "text": "Respond positively to outstanding requests made by several United Nations Special Procedures, including the Special Rapporteur on freedom of religion or belief, to visit China", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Continue the adoption and implementation of administrative legal measures for the protection of journalists and human rights defenders, and ensure that the perpetrators of violence against them are referred to the courts", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Consider the ratification of human rights instruments to which it is not yet a party ", - "values": [ - "3 - Considering action" - ] - }, - { - "text": "Continue to play its important role in the field of protecting and promoting human rights ", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Prohibit discrimination against persons because of their real or imputed sexual orientation, gender identity or expression, and ensure adequate protection for lesbian, gay, bisexual, transgender and intersex persons, sex workers, and other marginalized groups", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Guarantee access to health care for vulnerable social groups and populations in rural and remote zones ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Respect its commitments and take necessary measures to combat incitement to discrimination and violence in the media", - "values": [ - "4 - General action" - ] - }, - { - "text": "Implement specific and concrete measures in order to increase participation of women in the political and corporate life of the country", - "values": [ - "4 - General action" - ] - }, - { - "text": "Legally regulate the protection of the Slovenian minority in Styria in line with international legal commitments undertaken by Austria and adopt and implement concrete solutions to benefit the Slovenian minority in Styria, such as increasing the teaching of the Slovenian language in Styrian public and high schools", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Improve access to justice for women, indigenous peoples and migrants", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Proceed to a de jure moratorium on the death penalty at the earliest possible date, with a view to its final abolition and, in this regard, sign and ratify the Second Optional Protocol to the International Covenant on Civil and Political Rights ", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Intensify the efforts to criminalize and diminish all types of violence against women", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Amend the law on inheritance in the Family Code in order to respect gender equality, as stipulated in article 19 of the Constitution of Morocco", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Adopt a long-term national plan with local communities and civil society, in order to decrease the traditional practice of slavery among certain ethnic groups, avoid its continuity in future generations and eradicate it definitely", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Take further steps to reduce poverty and extreme poverty ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Continue efforts to implement the Zimbabwe Agenda for Sustainable Socioeconomic Transformation, in order to improve economic development and to enhance peace and security", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Continue to execute its policies and commitments regarding the human rights issues", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Ensure the establishment of an independent national human rights commission, in line with the Paris Principles, by 2012, as stated in the national report ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Take measures to protect women and girls from domestic violence and to ensure that acts of such violence are fully investigated and those responsible are held accountable ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Exert efforts to fight discrimination in all its forms and types ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Take steps to protect victims of violence ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Attain the voluntary human rights goals approved by the Human Rights Council.", - "values": [ - "4 - General action" - ] - }, - { - "text": "Establish training programmes addressed to staff members of shelters for orphans and persons with mental disabilities in order to enable them to respond at best to the specific needs of the residents", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Continue with its efforts to effectively implement the law on criminal sanctions for violence against women and pay special attention to ensuring coordination among institutions providing assistance and support to victims ", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Extend an open and standing invitation to special procedures mandates holders", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Adopt necessary measures to secure full respect for freedom of the media.", - "values": [ - "4 - General action" - ] - }, - { - "text": "Redouble efforts for the effective implementation of criminal provisions relating to acts of ethnic discrimination so as to prevent discrimination and human rights violations committed against persons belonging to minority groups", - "values": [ - "4 - General action" - ] - }, - { - "text": "Specifically prohibit, sanction and effectively prevent the practice of female genital mutilation for children under the age of 18 ", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Combat intimidation and pressure practices against journalists and human rights defenders", - "values": [ - "4 - General action" - ] - }, - { - "text": "Strengthen efforts to prevent discrimination and violence against women and girls, including by eradicating harmful practices such as child, early and forced marriage", - "values": [ - "4 - General action" - ] - }, - { - "text": "Consider ratifying all outstanding international human rights instruments, and update domestic legislation to bring it into line with their provisions ", - "values": [ - "3 - Considering action" - ] - }, - { - "text": "Cooperate with international human rights mechanisms and with special procedures mandate holders", - "values": [ - "4 - General action" - ] - }, - { - "text": "Establish a mechanism for improving coordination and strengthening various institutions dealing with violence against women", - "values": [ - "4 - General action" - ] - }, - { - "text": "Ratify the Rome Statute of the International Criminal Court, including the accession the Agreement on the Privileges and Immunities ", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Strengthen existing policies to combat human trafficking", - "values": [ - "4 - General action" - ] - }, - { - "text": "Put in place a strategy to ensure that the rights of women are upheld by the justice system in line with Vanuatu's obligations under CEDAW.", - "values": [ - "4 - General action" - ] - }, - { - "text": "Adopt an effective strategy to combat domestic violence and ensure that women's shelters are made available to ensure the security of victims of domestic violence ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Continue its efforts to combat all forms of discrimination", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Promote and protect the rights of peasants and other people working in rural areas ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Bring the Family Code in line with international instruments", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Cooperate with the treaty bodies and the mechanisms of the Human Rights Council", - "values": [ - "4 - General action" - ] - }, - { - "text": "Further address the human rights challenges, strengthen the mechanisms and take appropriate measures to reduce the level of domestic violence, increase the representation of women in the decision-making bodies and provide human rights training for target groups like jurists, police, migrants, minority groups and media as a means of human rights promotion ", - "values": [ - "4 - General action" - ] - }, - { - "text": "The Government expresses its commitment to cooperate with the Special Rapporteur [on Contemporary Forms of Racism],including in the event the Special Rapporteur expresses a wish to visit Botswana", - "values": [ - "4 - General action" - ] - }, - { - "text": "Abolish the death penalty, considering the existence of the de facto moratorium", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Take measures to protect the rights of the internally displaced, through comprehensive attention and reparation, in particular access to basic services", - "values": [ - "4 - General action" - ] - }, - { - "text": "Pursue its action in the area of education, and ensure that all legal practitioners benefit from it, namely, judges, penitentiary staff and law enforcement personnel in the rule of law", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Continue consolidating its programmes and socio-economic measures essential to achieve poverty reduction and social exclusion to the utmost wellbeing of its people ", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Provide the Ombudsman with the necessary material resources in compliance with the Paris Principles ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Address appropriately the issue of overcrowding as one of the major problems faced by the prisons which seriously affects the lives of the inmates in maintaining a good health standard", - "values": [ - "4 - General action" - ] - }, - { - "text": "Strengthen efforts to guarantee the rights of people with disabilities, in particular by fully implementing the provision of the Convention on the Rights of Persons with Disabilities", - "values": [ - "4 - General action" - ] - }, - { - "text": "Stop all criminal prosecutions, arrests and all other forms of intimidation of individuals as a result of the peaceful exercise of their rights to freedom of expression, freedom of association, and assembly, or freedom of religion and belief", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Continue efforts to strengthen its international cooperation to prevent and punish acts involving the sale of children, child prostitution, child pornography and child sex tourism ", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Amend the Proclamation for the Registration and Regulation of Charities and Societies so as to bring it into conformity with international human rights standards ", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Step up its efforts to quickly complete the process to implement transitional justice mechanisms and to put an end to impunity of perpetrators of extrajudicial executions or political executions ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Envisage the adoption of a national plan for the promotion of the rights of the child and call for international assistance to allow it implement such a plan", - "values": [ - "3 - Considering action" - ] - }, - { - "text": "Adopt a proactive and comprehensive strategy to eliminate discrimination against all vulnerable groups", - "values": [ - "4 - General action" - ] - }, - { - "text": "Ratify the International Convention for the Protection of All Persons from Enforced Disappearance without making reservations and recognize the competence of the Committee on Enforced Disappearances to receive and consider communications", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Continue the enlargement and going into depth of the quality of the national health system, if possible, earmarking more financial resources of the total national budget and through the training of specialised personnel", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Definitively abolish the death penalty in its domestic legislation ", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Strengthen anti-discrimination laws, and their implementation, to enhance tolerance and promote inclusiveness in Turkey ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Increase public actions to allow the access to education, health, employment and decent housing for the Roma community, and put emphasis on combating violence against Roma women", - "values": [ - "4 - General action" - ] - }, - { - "text": "Reconsider the announcement of its possible withdrawal from the Rome Statute", - "values": [ - "3 - Considering action" - ] - }, - { - "text": "Establish a moratorium on the death penalty with a view to considering its subsequent abolition", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Continue making progress in the implementation of the national reconciliation project through the Ministries of National Integration and Reconciliation and of National Coexistence, Dialogue and Official Languages", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Submit to human rights treaty bodies those reports which are overdue within one year", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Intensify measures to tackle extremism and discrimination against religious and ethnic minority groups, including the Roma people ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Introduce measures to reduce detention of individuals solely for immigration purposes and consider other alternatives than detention to use when possible ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Continue to improve socioeconomic development strategies and plans in order to avoid xenophobia and other forms of intolerance towards foreigners in South Africa", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Restore functionality of the National Programme for the Protection of Human Rights Defenders", - "values": [ - "4 - General action" - ] - }, - { - "text": "Reach bilateral agreements with the countries of origin of the children who are victims of trafficking, particularly Benin, Mali, Nigeria and Togo, and reinforce the internal legal framework to effectively combat this crime", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Establish measures and policies to encourage greater participation of girls in the higher education systems", - "values": [ - "4 - General action" - ] - }, - { - "text": "Fully implement the 2006 law on sexual violence and monitor the application of this law in order to ensure that impunity for sexual violence is addressed, including in the security forces", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Step up efforts to diversify its economy, including in the areas of agriculture, fisheries, manufacturing and construction", - "values": [ - "4 - General action" - ] - }, - { - "text": "Prosecute all Central Intelligence Agency operatives that have been held responsible for torture by the United States Senate Select Committee on Intelligence", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Bahrain will consider seriously the possibility of enacting a law on combating racial discrimination.", - "values": [ - "3 - Considering action" - ] - }, - { - "text": "Consider the enactment of the moratorium on the death penalty under its domestic law", - "values": [ - "3 - Considering action" - ] - }, - { - "text": "Guarantee freedom of religion and belief to all groups and minorities, including in relevant legislation, without discrimination", - "values": [ - "4 - General action" - ] - }, - { - "text": "Develop and implement a national action plan to cultivate a culture of respect and tolerance and promote intercultural understanding", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Fully abide by its commitment to the European Union relocation scheme, put an end to the practice of issuing expulsion orders prior to registering asylum applications and fully comply with the principle of non-refoulement", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Make every possible effort to comply with the recommendations made by the Committee on the Rights of the Child", - "values": [ - "4 - General action" - ] - }, - { - "text": "Continue to cooperate closely with civil society to combat child mortality so as to attain the MDG 4 ", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Continue its positive measures for the protection of the dignity of the individual, freedom of thought, conscience and religion ", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Ensure respect for the rights of indigenous children or children living in rural or remote areas, adopt the necessary measures to ensure respect for the rights of girls, boys and adolescents living in the streets or in situations of vulnerability", - "values": [ - "4 - General action" - ] - }, - { - "text": "Continue, in cooperation with the relevant international organizations, to implement its commitments as listed in paragraph 42 of its national report with regard to the worrying issue of the use of anti-personnel landmines by illegal armed groups.", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Conduct public campaigns to promote cultural diversity and tolerance and establish a governmental monitoring mechanism for such crimes", - "values": [ - "4 - General action" - ] - }, - { - "text": "Ensure that sentencing laws are appropriate and adequate to address domestic and sexual violence", - "values": [ - "4 - General action" - ] - }, - { - "text": "Continue its close cooperation with the United Nations and NGOs", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Establish an official moratorium on executions, with a view to abolishing the death penalty", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Ratify swiftly the Optional Protocols to the Convention against Torture and Other Cruel, Inhuman or Degrading Treatment or Punishment as well as to the Convention on the Rights of Persons with Disabilities", - "values": [ - "4 - General action" - ] - }, - { - "text": "Continue the process of ratification of international human rights instruments, in particular the Second Optional Protocol to the International Covenant on Civil and Political Rights, aiming at the abolition of the death penalty and, as a first step, establish a moratorium on executions", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Establish mechanisms to identify children among asylum seekers and refugees involved in armed conflicts", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Take urgent measures to investigate and sanction before justice harmful practices, such as forced marriage, female genital mutilation, widowhood practice, levirate and sororate, and purification rites for adulterous women", - "values": [ - "4 - General action" - ] - }, - { - "text": "Step up the efforts aimed at the adoption of the new 10-year National Programme on Strengthening Child Development and Protection ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Endeavour to sustain the maximum humane care for "illegal immigrants" and assist them to utilize, on a timely basis, the prevailing legal system in the country to address their situation ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Reconsider the possibility of lifting reservations to the CRC ", - "values": [ - "3 - Considering action" - ] - }, - { - "text": "Take measures to protect journalists from harassment and attacks and ensure independent, credible investigations of alleged cases and the prosecution of offenders", - "values": [ - "4 - General action" - ] - }, - { - "text": "Continue to pay particular attention to children, incorporating into social programs measures to eradicate all forms of violence against girls, boys and adolescents", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Step up its legislative and policy measures, awareness campaigns and implementation of the 2025 Time Bound Programme on the elimination of child labour ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Adopt the necessary measures to address the issues of sexual exploitation of children and traditional practices of violence against children such as the abandonment of twins, as a matter of priority, including at the level of accountability", - "values": [ - "4 - General action" - ] - }, - { - "text": "Investigate all cases of violations of human rights in all counterterrorism settings related to lengthy secret detentions, extraordinary renditions, and the possible application of torture against individuals, and bring those responsible of such violations to justice ", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Abolish all forms of institutional discrimination against Islamic religious minorities", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "With the support from the relevant international organisations, continue to provide public health care services to its people, especially women and children", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Ratify the Convention against Torture and Other Cruel, Inhuman or Degrading Treatment or Punishment, as previously accepted", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Increase State funding for shelter services for victims of violence and especially minorities and vulnerable groups", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Initiate visits of the Human Rights Council special procedures on the right to education and adequate housing and food with a view to developing more effective measures to drop poverty levels", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Investigate cases of excessive use of force during arrest, detention and questioning of suspects ", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Ensure lawyers freedom to exercise their professional duties by guaranteeing unhindered access to their clients, freedom to represent their clients without threats from state or other actors and that such threats are promptly investigated", - "values": [ - "4 - General action" - ] - }, - { - "text": "Employ further measures to ensure the security of religious minorities, including Buddhists and Hindus ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Conclude the process of ratification of the Optional Protocol to CEDAW and to OP-CRC-SC and consider ratifying the optional protocols to CAT, the International Covenant on Economic, Social and Cultural Rights (CESC) and CED ", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Review the kafala system in order to comply with international standards ", - "values": [ - "3 - Considering action" - ] - }, - { - "text": "Ratify, as a priority, the United Nations Convention against Transnational Organized Crime and the Protocols thereto, as well as the Rome Statute of the ICC, and consequently to fully align its national legislation with all obligations under the Rome Statute ", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Step up efforts to ensure the right to food in the country", - "values": [ - "4 - General action" - ] - }, - { - "text": "Investigate and prosecute State actors and individuals perpetrating violence against LGBTI persons", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Implement the Convention on the Rights of Child in the context of its national policy on children", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Take measures to enforce the Inter-American Court sentences on the rights of indigenous peoples", - "values": [ - "4 - General action" - ] - }, - { - "text": "Issue, as a matter of priority, an invitation for the Special Rapporteurs on torture, human trafficking, migrants, and for the Independent Expert on the minority issues", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Focus on raising awareness among policy implementers about the rule of law for the purpose of ensuring the human rights of Iraqi citizens, combating corruption and restoring public trust in the Government", - "values": [ - "4 - General action" - ] - }, - { - "text": "Continue strengthening measures of fighting against domestic violence and human trafficking, including by increasing the number and geographic coverage of reception centres for families and victims", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Enact comprehensive anti-discrimination legislation, including a clear definition of discrimination against women", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Improve local administrative and judicial mechanisms to recover lands in the shortest possible time", - "values": [ - "4 - General action" - ] - }, - { - "text": "Cease the use of child soldiers by local militia groups", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Provide the National Human Rights Commission with all the necessary resources to make it fully compliant with the Paris Principles (A Status) ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Eliminate completely all legal and political provisions which discriminate on the basis of civil status of women and violate sexual and reproductive rights ", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Adopt, as soon as possible, the bill to abolish the death penalty, meanwhile maintain the current de facto moratorium and introduce a de jure moratorium until the permanent abolition of the death penalty goes into effect", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Continue its efforts to promote human rights in all spheres, in particular in regard to protecting the victims of violence", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Take effective measures to guarantee the human rights and fundamental freedoms of the people of Fiji", - "values": [ - "4 - General action" - ] - }, - { - "text": "Institute a de jure moratorium on the death penalty, with a view to its future abolition", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Withdraw legislation that criminalizes homosexuality between consenting adults and to prosecute violence directed against persons because of their sexual orientation", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Move forward training programmes on human rights for the security forces, and prevent, investigate and sanction cases of violence committed by law enforcement officials", - "values": [ - "4 - General action" - ] - }, - { - "text": "Repeal the parental right "to punish" children in family law and define what constitutes ill-treatment in line with the State's international obligations", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Take measures to ensure for victims effective recourse against any act of torture, particularly those committed in detention centres ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Continue efforts for international cooperation in the field of human rights and benefit from relevant international experiences", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Continue to promote human rights education and training at all levels of the education system", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Take necessary measures to ensure that law enforcement officials receive the necessary training ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Develop a comprehensive plan of action to address violence against women on the basis of the repeated recommendations made by the United Nations and the Inter-American human rights system ", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Step up efforts to protect displaced persons, particularly providing assistance and access to public services on an equal basis", - "values": [ - "4 - General action" - ] - }, - { - "text": "Continue its efforts to achieve development, the eradication of poverty and the elimination of racial discrimination", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Adopt a national action plan to promote the rights of persons with disabilities, in line with CRPD, with special attention to the implementation of inclusive education and the promotion of labour market inclusion", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Continue its efforts in the area of gender equality and protection of women and children as well as the human rights training activities for members of the armed and security forces, magistrates, judicial officials and prison authorities ", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Take measures aimed at diminishing threats and intimidation against journalists and civil society, as well as opponents against the Government", - "values": [ - "4 - General action" - ] - }, - { - "text": "Increase its efforts to safeguard the human rights of women, ageing people, persons with disabilities and children, in particular street children", - "values": [ - "4 - General action" - ] - }, - { - "text": "Consider repealing the blasphemy laws, or at least amending them, to protect persons from eventual abuses or false accusations and to moderate the penalties", - "values": [ - "3 - Considering action" - ] - }, - { - "text": "Intensify efforts to address cases of sexual violence and exploitation of children.", - "values": [ - "4 - General action" - ] - }, - { - "text": "Ensure freedom of expression and access to information by ending the practice of interfering with access to the internet and the practice of censorship in online and print media ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Continue with training for civil servants, those in courts, forces of law and order, on human rights, as well as with empowering the population with these rights ", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Submit its overdue reports to the treaty bodies, including the Committee on the Elimination of Discrimination against Women and the Committee on the Rights of the Child", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Continue to provide protection to the family as the natural and fundamental unit of the society", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Continue to investigate acts of threats and aggression against human rights defenders and journalists and bring to justice those perpetrators ", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Accede to the Optional Protocol to the Convention on the Elimination of All Forms of Discrimination against Women", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Prosecute perpetrators of hate crimes and xenophobic acts and prevent misuse of information and communications technologies for this purpose", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Adopt the necessary measures to repeal all legislation that discriminates against and penalizes persons because of their sexual orientation", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Share experiences and best practices with regard to the treatment of prisoners ", - "values": [ - "1 - Minimal action" - ] - }, - { - "text": "Continue strengthening institutional frameworks, including by finalizing the bill on an NHRI in line with the Paris Principles and the National Strategic Action Plan on Human Rights", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Continue its efforts to eliminate discrimination against women in law and in practice, by amending the legislation on personal status and nationality as well as the Penal Code", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Make all efforts to submit overdue reports to the treaty bodies and to ratify already signed treaties ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Continue to strengthen internal accountability mechanisms for all security agencies, including by investigating and prosecuting members of security agencies responsible for human rights violations", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Fully respect the rights of children, without any discrimination, and give necessary prerogatives to the ombudsman working in this area", - "values": [ - "4 - General action" - ] - }, - { - "text": "Create the proper legal framework that gives the Special Prosecutor for Crimes Against Journalists sufficient jurisdiction to investigate and indict perpetrators with greater independence", - "values": [ - "4 - General action" - ] - }, - { - "text": "Continue the efforts to provide the needed health services coverage as well as intensify efforts for the prevention and control of HIV-AIDS ", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "That any sanctions for violations of freedom of assembly are proportionate and do not create undue obstacles to freedom of assembly ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Adopt specific legislation and measures under the Human Rights National Plan to help prevent, prosecute and punish domestic violence against women and also to end discrimination against women within the society", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Repeal any discriminatory provision in existing laws on sexual orientation and gender identity", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Ensure that all victims of violence have access to counselling and assistance with recovery ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Further ameliorate the integration process of immigrants and combat all forms of discrimination against them ", - "values": [ - "4 - General action" - ] - }, - { - "text": "May develop a programme aimed at increasing the legal competence of the employees of correctional institutions so that they can effectively address issues pertaining to the early release of convicted persons", - "values": [ - "3 - Considering action" - ] - }, - { - "text": "Promptly carry out an in-depth investigation into all allegations of torture and ill-treatment, such as the case of the three persons executed in January 2017, and bring those responsible to justice", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Ratify as soon as possible the International Convention on the Protection of All Persons from Enforced Disappearance.", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Adopt the draft law on the prevention of torture and other forms of cruel, inhuman or degrading treatment or punishment by complying with established international norms", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Sign and ratify ICCPR and ICESCR, CRPD as well as its Optional Protocol, the Optional Protocol to CEDAW and the two Optional Protocols to CRC", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Adopt all necessary measures to deal with the situation of street children ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Further implement concrete measures and policies to combat trafficking of children and child labour in the country", - "values": [ - "4 - General action" - ] - }, - { - "text": "Increase resource allocations to government agencies mandated to implement laws tackling violence against women", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Maintain the commitment to ensure that people with disabilities fully enjoy all their rights", - "values": [ - "4 - General action" - ] - }, - { - "text": "Adopt strict safeguards to ensure that no statement obtained through torture can be used in courts", - "values": [ - "4 - General action" - ] - }, - { - "text": "Take steps to ratify the International Convention on the Protection of the Rights of All Migrant Workers and Members of Their Families", - "values": [ - "4 - General action" - ] - }, - { - "text": "One of the main priorities of the Government remains a quick improvement of the quality of teaching", - "values": [ - "4 - General action" - ] - }, - { - "text": "Carry on relentlessly with more effective measures in further bolstering the implementation of sharia law in the country ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Enact and implement legislation that protects children, and set the minimum age for marriage at 18 for both girls and boys ", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Guarantee a safe and enabling environment to all human rights defenders, investigate all allegations of attacks, harassment and intimidation against them, and ensure that the legislation on freedom of expression, including online, is fully in compliance with article 19 of the International Covenant on Civil and Political Rights", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Sign and ratify OP-CEDAW and CED ", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Strengthen the protection of LGBT individuals", - "values": [ - "4 - General action" - ] - }, - { - "text": "Investigate and punish the cases of intimidation, harassment, persecution, torture and enforced disappearances, especially against political dissidents, journalists, ethnic and religious minorities and human rights defenders", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Increase efforts in order especially to protect victims of human trafficking", - "values": [ - "4 - General action" - ] - }, - { - "text": "Develop and strengthen financially the state-sponsored legal aid framework, so that lawyers avoid cases of evictions from social housing", - "values": [ - "4 - General action" - ] - }, - { - "text": "Enhance job opportunities at home for the population susceptible to human trafficking, especially those from disadvantaged background who seek employment overseas", - "values": [ - "4 - General action" - ] - }, - { - "text": "Strengthen its efforts to improve the social, political, living, and health conditions for Romani citizens through legal, administrative and socioeconomic means ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Make every effort to ensure that the forthcoming World Cup and Olympics will bring lasting benefits to the poorest and most marginalized urban inhabitants ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Implement the Universal Basic Education policy for all children without discrimination with focus on integration of children with disabilities and equal access for girls in primary and secondary education", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Implement alternatives to help young persons and adults complete their schooling", - "values": [ - "4 - General action" - ] - }, - { - "text": "Enhance its investigation of complaints of abuse by police ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Consider ratifying the International Convention for the Protection of All Persons from Enforced Disappearance, the Convention on the Rights of Persons with Disabilities and its Optional Protocol, the Second Optional Protocol to the International Covenant on Civil and Political Rights ", - "values": [ - "3 - Considering action" - ] - }, - { - "text": "Ensure the rights to freedoms of expression, association and peaceful assembly, both online and offline, in particular by revoking the use of military force to control public order and ceasing State security raids such as Operation Liberation and Protection of the People", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Continue implementing and promoting the programme for special social assistance and other social poverty-reduction programmes ", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Implement measures to reduce poverty and instances of social exclusion among indigenous people and Afro-Honduran communities", - "values": [ - "4 - General action" - ] - }, - { - "text": "Set up specialized bodies to investigate and prosecute allegations of flagrant violations of human rights committed in the framework of 'arraigo'", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Accelerate the ratification of both the International Covenant on Civil and Political Rights (ICCPR) and the International Covenant on Economic, Social and Cultural Rights (ICESCR), the Convention against Torture (CAT) and its Optional Protocol (OP-CAT) ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Accede to the first Optional Protocol of ICCPR", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Consider ratifying the 1990 International Convention on the Protection of the Rights of All Migrant Workers and Members of Their Families", - "values": [ - "3 - Considering action" - ] - }, - { - "text": "Continue efforts in promoting and nurturing a vibrant civil society.", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "To the government of the Republic of Srpska effectively investigate and prosecute violations against human rights defenders", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Finalize the development of the Inclusive Education Policy giving effect to the right to education of all school-aged children and young persons", - "values": [ - "4 - General action" - ] - }, - { - "text": "Strengthen inter-ministerial coordination in law enforcement activities of agencies and implementation of measures to protect human rights and fundamental freedoms.", - "values": [ - "4 - General action" - ] - }, - { - "text": "Continue to improve the social security system", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Repeal provisions of the law on media and the new decree on the Internet that criminalize basic human rights and subordinate individual rights to the interests of the state", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Expedite action to establish the Gender Equality Council", - "values": [ - "4 - General action" - ] - }, - { - "text": "Continue its efforts to further strengthen the National Human Rights Commission in accordance with the Paris Principles", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Adopt a national policy on children with disabilities and ensure access to education and health services for all children with disabilities", - "values": [ - "4 - General action" - ] - }, - { - "text": "Bangladesh is always committed to cooperate with international human rights mechanisms. ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Amend the Charities and Societies Proclamation to facilitate the effective operation and financing of NGOs ", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Continue with its efforts to promote and protect the right to work, the right to health and the right to education of its people in order to maintain an adequate standard of living for all", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Continue its efforts to fight unequal access to education ", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Strengthen the capacity of the judicial system, including the transitional justice mechanisms and the national human rights institutions, and contribute to the efforts of the national reconciliation", - "values": [ - "4 - General action" - ] - }, - { - "text": "Ensure the systematic enforcement of laws eliminating child labour, including the establishment of a clear minimum age for domestic work", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Further strengthen its efforts to prevent torture and ill treatment in places of deprivation of liberty, combat trafficking in persons and promote gender parity", - "values": [ - "4 - General action" - ] - }, - { - "text": "Enhance the efforts aimed at monitoring the accomplishment of the human rights obligations relating to the enjoyment of a safe, clean, healthy, and sustainable environment, particularly with regard to air quality and industrial pollution ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Expeditiously open crossing points and checkpoints.", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Establish an independent and impartial institution to investigate and prosecute human rights abuses and violations committed by the law enforcement and security forces, in order to ensure that these violations are properly investigated and sanctioned and compensation provided to victims", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Maintain article 266(b) of the Criminal Code and adopt measures to avoid that the shelving of cases related to racial or religious hatred does not dissuade victims from continuing to file complaints, and does not lead to impunity for the perpetrators of such crimes ", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Continue promoting respect for human rights and conduct investigations into human rights violations", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Take the necessary measures to guarantee non-discrimination of ethnic Roma, through the full implementation of the 2012-2020 strategy and campaigns to combat all forms of discrimination and xenophobia against this group ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Adopt a law that combats discrimination comprehensively and guarantees effective protection and equal opportunities for all people", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "That inclusive and longer-term measures be taken with respect to linguistic policy, education and participation in decision-making for minorities ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Intensify efforts for the effective and rapid social and educational reintegration of child soldiers who remain in military camps ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Continue to provide protection to victims of trafficking in human beings and to ensure systematic procedures for the identification of victims ", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Consider ratifying the Optional Protocol to CAT as soon as possible.", - "values": [ - "3 - Considering action" - ] - }, - { - "text": "Take steps to ensure that all child labour is ended", - "values": [ - "4 - General action" - ] - }, - { - "text": "Take additional measures to address issues of overcrowding in its prisons in compliance with international standards", - "values": [ - "4 - General action" - ] - }, - { - "text": "On gender-based violence: establish accessible reporting mechanisms and strengthen investigation and enforcement capacity", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Continue efforts aiming at enforcing and protecting women's rights, and support social empowerment for them", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Revise "Decree 72" and "Decree 174" relating to the management, provision and use of the Internet, to ensure their consistency with international human rights obligations, and in particular with Articles 19, 21 and 22 of ICCPR ", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Continue developing policies to guarantee and affirm the rights of migrant women", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Integrate fully the principles and provisions of the Convention on the Rights of the Child into its domestic law", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Simplify the registration procedure for political parties and other public associations and foundations", - "values": [ - "4 - General action" - ] - }, - { - "text": "Allocate more funds for training of health care staff, including doctors, midwives, nurses, and social workers", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Abolish the death penalty and consider ratifying the Second Optional Protocol to ICCPR ", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Consider taking on board CEDAW recommendations to criminalise domestic violence. ", - "values": [ - "3 - Considering action" - ] - }, - { - "text": "Take all necessary steps to ensure the protection of human rights defenders, including journalists, against any violence, retaliation, or adverse discrimination as a consequence of their legitimate exercise of the rights according to the Declaration on Human Rights Defenders", - "values": [ - "4 - General action" - ] - }, - { - "text": "Redouble its efforts towards combating stereotypical division of gender roles in family and society", - "values": [ - "4 - General action" - ] - }, - { - "text": "Establish an independent mechanism to monitor the rights of the child, in accordance with the Convention on the Rights of the Child and the recommendations from the Committee on the Rights of the Child", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Continue to implement policies for development of its people under the Sustainable Development Goals", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Develop a national policy for the protection of human rights defenders and bring to justice all perpetrators of attacks on or threats against human rights defenders to combat impunity", - "values": [ - "4 - General action" - ] - }, - { - "text": "Strengthen further the criminal justice system", - "values": [ - "4 - General action" - ] - }, - { - "text": "Bolster the implementation of Law No. 8/2016 on Persons with Disabilities and strengthen its efforts to tackle child labour to ensure children\u2019s access to social, health and education services", - "values": [ - "4 - General action" - ] - }, - { - "text": "Continue applying strategies to reduce criminality, address sexual abuse and child trafficking, and protect civilians from criminals.", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Revise the Penal Code to make all new laws conform with international human rights standards", - "values": [ - "3 - Considering action" - ] - }, - { - "text": "Adopt legislation prohibiting FGM and other discriminatory cultural practices", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Continue its ongoing efforts to promote and protect economic, social and cultural rights of migrant workers in Singapore, including efforts to enhance reach out to migrant workers on their employment rights, responsibilities, and their avenues of recourse", - "values": [ - "4 - General action" - ] - }, - { - "text": "Continue its efforts to secure the economic and social rights of the people in spite of the global financial crisis \n", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Adopt a comprehensive national action plan against racism and adopt clear measures to combat effectively racially motivated violence", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Consider favourably the request for visits by thematic mandate-holders ", - "values": [ - "3 - Considering action" - ] - }, - { - "text": "Adopt a national action plan for business and human rights, building on the Guiding Principles on Business and Human Rights", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Cooperate with the United Nations mechanisms including with the Special Rapporteur on the situation of human rights in Belarus", - "values": [ - "4 - General action" - ] - }, - { - "text": "Strengthen the national mechanisms for the advancement of women so that a gender perspective is reflected, in a cross-cutting manner, as a priority issue in policies and sectoral programmes", - "values": [ - "4 - General action" - ] - }, - { - "text": "Accept the establishment of a permanent human rights component in the United Nations Mission for the Referendum in Western Sahara (MINURSO), being the only peacekeeping mission not having this component ", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Consider ratifying the Optional Protocol to the Convention on the Elimination of All Forms of Discrimination against Women.", - "values": [ - "3 - Considering action" - ] - }, - { - "text": "Eliminate unjustified restrictions on the right to religious freedom and stop persecution of individuals for their peaceful religious activity ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Ensure that the definition of rape in the Faroese legislation is brought into line with international standards so that rape is criminalized in all circumstances, including within marriage", - "values": [ - "4 - General action" - ] - }, - { - "text": "Consider the ratification of the new Optional Protocol to the Convention on the Rights of the Child on a communications procedure ", - "values": [ - "3 - Considering action" - ] - }, - { - "text": "Ensure full and unhindered humanitarian access, in the territories under control, to all people in need", - "values": [ - "4 - General action" - ] - }, - { - "text": "Put in place appropriate regulatory and enforcement measures to increase compliance with the Domestic Violence Act and the Female Genital Mutilation act, and take steps to ensure that acts of violence against women, including women with disabilities, are investigated and prosecuted", - "values": [ - "4 - General action" - ] - }, - { - "text": "Continue to proceed with the adoption of the National Action Programme in the field of human rights in accordance with the provisions of the Vienna Declaration and Programme of Action on Human Rights ", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Take necessary measures to implement a gender prospective in education at all levels, including by training teachers", - "values": [ - "4 - General action" - ] - }, - { - "text": "Adhere immediately to the principles of the International Convention on the Rights of All Migrant Workers and Members of their Families, and consider its ratification in a favourable light", - "values": [ - "4 - General action" - ] - }, - { - "text": "Continue efforts to implement its commitments, as described in paragraphs 67, 71 and 76 of the national report with regard to the protection of displaced persons, women and children.", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Improve the prison conditions and solve the problem of overcrowding", - "values": [ - "4 - General action" - ] - }, - { - "text": "Ratify pending core international human rights instruments, notably the Convention against Torture and Other Cruel, Inhuman or Degrading Treatment or Punishment, and the International Convention on the Elimination of All Forms of Racial Discrimination, as well as the Rome Statute of the International Criminal Court, including accession to the Agreement on\nPrivileges and Immunities \n", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Continue to work towards ratification of ILO Convention No. 169 and thereby secure the Sami people's rights", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Continue efforts to promote gender equality and strengthen the role of women in society", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "To not yield to the pressure to reintroduce the death penalty and maintain its abolition, in accordance with the global trend towards abolition ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Establish and enforce strict legislation criminalizing rape in every context, including marital rape ", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "The Government was strongly committed to upholding and ensuring human rights for its people, the delegation took careful note of the comments made during the UPR session, and Kiribati would continue to work hard in meeting its human rights obligations.", - "values": [ - "4 - General action" - ] - }, - { - "text": "Produce the necessary funding in order to concretizing the strategy with the aim of eliminating violence against women and to criminalize such offence ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Expedite the domestic legal procedures required for early ratification of the International Covenant on Economic, Social and Cultural Rights", - "values": [ - "4 - General action" - ] - }, - { - "text": "Include in its Criminal Code provisions that offer specific protections for women against domestic violence ", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Develop, within the United Nations and regional mechanisms, a mitigation and management plan for disasters, with a human rights approach, in accordance with what has been suggested by the Office of the United Nations High Commissioner for Refugees ", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Work with the Organization for Economic Cooperation and Development on implementation of recommendations to address concerns about the limits that the media law places on freedom of expression.", - "values": [ - "4 - General action" - ] - }, - { - "text": "Reform the sponsorship system, removing the requirement for foreign workers to obtain permission before leaving Qatar or moving jobs", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Strengthen the National Human Rights Commission (NHRC) to enable it to maintain its A-status accreditation", - "values": [ - "4 - General action" - ] - }, - { - "text": "Establish a permanent, integrated, national structure for combating trafficking in persons", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Continue carrying out its sound public policies for drinking water and sanitation coverage for all its population, which have already allowed to surpass the seventh Millennium Development Goal ", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Monitor the effective implementation of laws preventing violence against women", - "values": [ - "4 - General action" - ] - }, - { - "text": "Envisage the inclusion of the UPR outcome in the National Human Rights Plan", - "values": [ - "3 - Considering action" - ] - }, - { - "text": "Consider additional steps to improve conditions for children from vulnerable backgrounds.", - "values": [ - "3 - Considering action" - ] - }, - { - "text": "Opt for the prohibition of the use of corporal punishments, especially those involving minors ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Withdraw the amendments to the Penal Code that introduce the death penalty and maintain the current de facto moratorium ", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Consider ratifying the Convention on the Elimination of All Forms of Discrimination against Women, the Optional Protocol thereto and the Convention on the Protection of the Rights of All Migrants and the Members of Their Families", - "values": [ - "3 - Considering action" - ] - }, - { - "text": "Strengthen efforts to increase food security for the general population, and particularly those in extreme poverty in rural areas, as well as increase its budget for social infrastructure and social services, including health, education, and water and sanitation ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Take all necessary measures to put an end to arbitrary arrests and prolonged detention without charge and without trial, especially for political reasons ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Keep the fight against poverty, in particular through the implementation of the integrated municipal rural-development and poverty control programs", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Speed up its efforts to reduce poverty and unemployment in the country and seek broader international cooperation to deal with the threats posed by climate change ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Sign and ratify remaining core international human rights instruments", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Continue its efforts to combat domestic violence, sexual harassment and exploitation of women, in particular adolescents, women heads of households without a partner and girls with children", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Continue the fight against police violence, notably through the implementation of the 1994 Evidence Act that allows for the video surveillance of police custody ", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Intensify the efforts to promote tolerance and diversity in the community and train law enforcement personnel to detect and prosecute perpetrators of hate speech ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Step up efforts to respond to questionnaires sent by special procedures mandate holders, and report to the United Nations treaty bodies in a more timely manner in order to thus fulfil its international obligations", - "values": [ - "4 - General action" - ] - }, - { - "text": "Implement effective strategies which address child trafficking, and thoroughly investigate all cases of disappearance of child refugees", - "values": [ - "4 - General action" - ] - }, - { - "text": "Sign the Treaty on the Prohibition of Nuclear Weapons", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Engage in dialogue and cooperation with United Nations human rights mechanism on the basis of mutual respect and equality", - "values": [ - "4 - General action" - ] - }, - { - "text": "Redouble its efforts in addressing the issue of extreme poverty and develop more sustainable poverty reduction strategies which include access to clean water, adequate sanitation, food and shelter", - "values": [ - "4 - General action" - ] - }, - { - "text": "Consider ratifying the Optional Protocol to the International Covenant on Economic, Social and Cultural Rights, the Convention on the Protection of All Persons from Enforced Disappearance, the Convention on the Rights of Persons with Disabilities, as well as the ILO Conventions 169 and 189", - "values": [ - "3 - Considering action" - ] - }, - { - "text": "Consolidate its national gender policy that promotes women rights and their participation in the development of their society", - "values": [ - "4 - General action" - ] - }, - { - "text": "Abolish the death penalty and in the interim rigorously apply international standards for fair trial in all death penalty cases and respect national legal procedures and the standards required by the Privy Council and the United Nations for the protection of the rights of prisoners sentenced to death", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Promote awareness-raising campaigns and adaptive policies aimed at eliminating child, early and forced marriage", - "values": [ - "4 - General action" - ] - }, - { - "text": "Take all appropriate measures to promote tolerance, intercultural dialogue and respect for diversity", - "values": [ - "4 - General action" - ] - }, - { - "text": "Take concrete measures to enhance the participation of women in political and public life, including in efforts for conflict resolution and state building", - "values": [ - "4 - General action" - ] - }, - { - "text": "Take all necessary steps to fully commit to end impunity for international crimes by acceding to the Rome Statute of the ICC and fully align its national legislation with all obligations under the Rome Statute ", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Fully implement Article 2 of the Universal Declaration of Human Rights, which provides that Everyone is entitled to all the rights and freedoms set forth in this Declaration, without distinction of any kind, such as race, colour, sex, language, religion, political or other opinion, national or social origin, property, birth or other status, and to recognize that sex also includes sexual orientation", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Make progress towards the abolition of the crime of apostasy and the elimination of other laws and practices contrary to freedom of religion and/or belief", - "values": [ - "4 - General action" - ] - }, - { - "text": "Continue to improve the national infrastructure to assist victims of trafficking and develop a national system for the recognition and support of child victims of trafficking", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Consider the possibility of announcing moratorium on the use of the death penalty ", - "values": [ - "3 - Considering action" - ] - }, - { - "text": "Adopt additional measures, including legal measures aimed at protecting and promoting the right to education for all", - "values": [ - "4 - General action" - ] - }, - { - "text": "Increase efforts in the fight against impunity and corruption, through increasing the financial resources for the judiciary and through the implementation of judicial reforms aimed at fully ensuring the independence of the judiciary", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Increase the resources allocated to the Commissioner for Gender Equality and Equal Treatment as a matter of priority ", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Improve the living conditions for prisoners", - "values": [ - "4 - General action" - ] - }, - { - "text": "Seek technical and financial assistance from the international community to implement the recommendations from the periodic review ", - "values": [ - "1 - Minimal action" - ] - }, - { - "text": "Do all its best in order to put an end to hatred speech based on xenophobia and try to do all it can in order to tackle this matter within the institutions of the entire country", - "values": [ - "4 - General action" - ] - }, - { - "text": "Take all necessary measures to ensure that allegations of human rights violations brought to the knowledge of the authorities are systematically subjected to inquiries and punished where appropriate.", - "values": [ - "4 - General action" - ] - }, - { - "text": "Join efforts with international partners in finding innovative solutions for efficient water management to ensure basic subsistence for all", - "values": [ - "4 - General action" - ] - }, - { - "text": "Take the necessary measures to accede to the International Covenant on Economic, Social and Cultural Rights of 1966", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Review its legislation and public policies in order to safeguard the exercise of freedom of expression as well as to decriminalize defamation, libel and slander. ", - "values": [ - "3 - Considering action" - ] - }, - { - "text": "Continue its efforts to advance the empowerment of women and to promote gender equality", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Intensify cooperation with the Council of Europe, in particular the Venice Commission, in properly implementing freedom of association and assembly ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Deepen in actions and measures intended to accede to the Convention on the Rights of Persons with Disabilities and guarantee the full exercise of human rights of persons with disabilities", - "values": [ - "4 - General action" - ] - }, - { - "text": "Continue to raise efforts pointed at eradicating poverty, and ensure strict implementation of the National Human Development Plan 2013-2017 ", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Ensure the protection of human rights defenders and journalists as well as efficient and impartial investigation of threats and attacks targeting them", - "values": [ - "4 - General action" - ] - }, - { - "text": "Continue to fight against human trafficking with the cooperation of international organizations ", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Ensure birth registration of all children to facilitate the access to social services", - "values": [ - "4 - General action" - ] - }, - { - "text": "Continue with judicial reform, improving the capacity of the penal system to combat impunity", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Support and develop education programmes and institutions for national minorities in their mother-tongue", - "values": [ - "4 - General action" - ] - }, - { - "text": "Improve access to health care for all and in this regard, provide adequate resources to its health care system, including by providing necessary training to improve its health services", - "values": [ - "4 - General action" - ] - }, - { - "text": "Ensure dialogue with important sectors of civil society, leaving aside stigmatizing speech and anything that would be unjustified on one side or the other. in this context, it is especially important to finalize the agreed national human rights plan of action", - "values": [ - "4 - General action" - ] - }, - { - "text": "Ratify the fundamental international human rights law instruments, particularly the International Covenant on Economic, Social and Cultural Rights, the International Covenant on Civil and Political Rights, and the Convention against Torture", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Take comprehensive measures to counter discrimination on the grounds of sexual orientation and gender identity", - "values": [ - "4 - General action" - ] - }, - { - "text": "Enhance the prevention of and combat trafficking in human beings, including internal and cross-border trafficking of women and children for the purpose of sexual exploitation or forced labour, by inter alia implementing anti-trafficking legislation, protecting victims and offering necessary help and assistance", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Continue to take measures to guarantee the right that its people have to enjoy a sustainable environment", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Give priority to programmes for upgrading land and water resources to reduce the long-term vulnerability caused by drought and allowing the population to satisfy its needs in water and food - and, in this regard, request the assistance of competent United Nations agencies and programmes ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Continue taking legislative action to eliminate the marginalization of women from socioeconomic and political spheres and strengthen mechanisms for protection against gender-based violence", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Continue its endeavours towards better serving its people by securing a higher standard of human rights", - "values": [ - "4 - General action" - ] - }, - { - "text": "Do not apply the Law on the Protection of Minors against the Detrimental Effect of Public Information to restrict freedom of expression, and facilitate access to legal remedies of persons who consider that the enjoyment of their right has been affected", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Withdraw all reservations and declarations on the international instruments to which it is a party that undermine its obligations or the purpose of the treaty", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Take necessary measures to ensure that sufficient up-to-date data on the worst forms of child labour would be made available", - "values": [ - "4 - General action" - ] - }, - { - "text": "Set up its national human rights institution in accordance with the Paris Principles", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Amend the Civil Code in order to bring to 18 years old the legal marriage age for both boys and girls, and repeal the amendment to the Law on the Protection of Children and Adolescents with No Guardian, which allows for marriage between adoptive parents and their adopted child", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Consider acceding to the Rome Statute of the International Criminal Court ", - "values": [ - "3 - Considering action" - ] - }, - { - "text": "In order to promote an effective gender equality, develop policy, legislative and administrative measures to ensure a better representation of women in decision-making and managerial positions in all sectors of public administration and, so far as possible, in the private sector ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Sign and ratify the second Optional Protocol to ICCPR", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Respond comprehensively toward both terrorism and terrorists", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Improve access to health care for vulnerable groups, including pregnant women, as well as take measures to reduce child mortality ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Investigate all allegations of torture, especially those made in the context of the process against Kpatcha Gnassingbé and his followers ", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Implement an awareness-raising campaign for parents aimed at increasing the school enrolment rate of girls", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Improve the protection of women and children by ensuring that protection services are enhanced and enshrined in law, that victims are provided with more information on access to such support and medical care, and that legislation regarding women's health and therapeutic abortion are revised", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Continue its efforts to create an inclusive society for persons with disabilities through the National Council for the Protection of Persons with Disabilities which monitors the implementation of the policies", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Take immediate measures to effectively implement the Juvenile Justice and Welfare Act of 2006 ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Adopt an effective plan of action for the demarcation of indigenous lands and provide the necessary financial resources to ensure an effective policy for the protection of the rights of indigenous peoples and to prevent land-related conflicts", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Extend a standing invitation to the special procedures mechanisms to visit the country", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Develop a national plan of action to combat trafficking in human beings ", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Withdraw its remaining reservations to the Convention on the Elimination of All Forms of Discrimination against Women", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Accelerate the steps undertaken to make the national institution for the protection of human rights established in 1998 fully compatible with the Paris Principles and provide it with the necessary resources empowering it to fulfil its mandate ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Formulate a systematic approach toward eradication of stereotypes regarding women in society creating a climate of zero tolerance for violence against women", - "values": [ - "4 - General action" - ] - }, - { - "text": "Double its efforts in promoting understanding and tolerance among people of different faiths and ethnic backgrounds", - "values": [ - "4 - General action" - ] - }, - { - "text": "Conduct public awareness campaigns and education programmes on human rights issues targeting all sectors of the population", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Bridge the gaps left by the amended law on registered Palestinian Refugees, such as allowing Palestinian refugees to extract temporary work permits", - "values": [ - "4 - General action" - ] - }, - { - "text": "Expedite the considerations to become a party to the ICCPR and ICESCR", - "values": [ - "4 - General action" - ] - }, - { - "text": "Update and continue implementing the National Plan for Good Living", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Accede to the ICCPR and take necessary measures to ensure its full implementation in the national legislation", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Publish clear instructions on the use of force during protests in compliance with international human rights standards and ensure that the training of law enforcement personnel incorporates best human rights practices ", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Continue its efforts to ensure that all children enjoy equal rights without discrimination ", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Acknowledge the right of refugees to return to their homes, according to the Fourth Geneva Convention.", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Provide every possible support and assistance to the national project for rural health to increase the standard of nutrition and improve public health and to strengthen the relationship between health and indicators such as sanitation and personal hygiene", - "values": [ - "4 - General action" - ] - }, - { - "text": "Continue its efforts to guarantee social protection for persons with disabilities and their full integration into society", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Continue efforts to conduct the national reconciliation", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Ratify without delay the Council of Europe Convention on Preventing and Combating Violence against Women and Domestic Violence and expedite the harmonization of legislation in accordance with it", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Continue to closely consult with civil society in implementing the recommendations made during the UPR", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Continue implementing policies aimed at intensifying the combat against discrimination, especially with respect to female migrant workers", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Consider signing and ratifying the Rome Statute of the International Criminal Court as soon as possible.", - "values": [ - "3 - Considering action" - ] - }, - { - "text": "Establish a separate ombudsperson particularly dedicated to the rights of children", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Amend the Newspaper Act of 1958 to ensure that it respects and protects the right to freedom of expression in accordance with international standards ", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Take measures aimed at establishing a national human rights institution with a broad mandate that promotes and protects human rights in accordance with the Paris Principles", - "values": [ - "4 - General action" - ] - }, - { - "text": "Continue implementing access for all women to reproductive health services and improving the quality of care given", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Guarantee freedom of expression by protecting journalists, bloggers and media professionals from arbitrary arrest and detention and from censorship, including by amending those provisions in the Criminal Code and the draft media law that are inconsistent with international standards of freedom of expression ", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Continue to promote a balanced representation of men and women in leadership positions", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Guarantee the right to privacy of private and personal communications according to international standards", - "values": [ - "4 - General action" - ] - }, - { - "text": "Continue full cooperation with the international human rights mechanisms ", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Continue its efforts aimed at ratifying the Convention for the Protection of All Persons from Enforced Disappearance", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Ensure equal access to quality health-care services, including by promoting training and capacity-building of medical personnel and students ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Undertake additional measures to address the disproportionate impact of violence on poor, minorities and immigrant women", - "values": [ - "4 - General action" - ] - }, - { - "text": "Continue the efforts aimed at ratifying the CPED as well as the main international instruments on human rights, to which the country is not yet a party ", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Continue with the training of law enforcement officials, based on the request for technical cooperation contained in paragraph 152 of the national report.", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Consider its position with regard to Article 22.4 and Article 76 of the International Convention on the Protection of the Rights of All Migrant Workers and Members of Their Families", - "values": [ - "3 - Considering action" - ] - }, - { - "text": "Establish an official moratorium on executions", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Modify the law on citizenship to grant women the right to transmit the Omani nationality to their children", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Consider availing itself of offers for technical assistance to facilitate its submission of reports to the relevant treaty bodies ", - "values": [ - "3 - Considering action" - ] - }, - { - "text": "Strengthen its efforts to prevent and combat human trafficking offences through studying international best practices, developing domestic legislation in conformity with international standards, establishing institutions and agencies and strengthening cooperation with relevant international organizations and bodies ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Work jointly with the mechanisms of the United Nations system, in particular the Special Envoy of the Secretary-General for Syria", - "values": [ - "4 - General action" - ] - }, - { - "text": "Continue its efforts in the area of women's rights and finalize the national action plan to combat domestic violence ", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Review its legislation to complete the abolition of imprisonment penalties for publication offences", - "values": [ - "3 - Considering action" - ] - }, - { - "text": "Adopt the Act and the comprehensive national plan to combat trafficking in persons", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Implement a national plan of action that would abolish discrimination against women, which is fostered by gender inequality", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Adopt a national plan against racism, discrimination, xenophobia and other forms of intolerance", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Establish as a priority a reform of the judiciary by strengthening a justice system which would be better able to combat impunity and corruption, including by putting an end to exaggerated pre-trial detention.", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Pursue the strengthening of the capacity-building of country's qualified specialists and managers working in the human rights field", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Make additional efforts to support the economic and social programmes which it has adopted as part of its national obligations under the International Covenant on Economic, Social and Cultural Rights and general human rights principles ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Accede to the International Convention on the Elimination of All Forms of Racial Discrimination", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Continue active work in combating domestic violence", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Establish a mechanism guaranteeing the correct identification of victims of the trafficking in persons and provide them with adequate and comprehensive support, especially in the case of minors ", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Ensure that all LGBT persons fully and equally enjoy their human rights, in conformity with Gambia's international obligations, and as an immediate step, to repeal the provisions in the Criminal Code that criminalize sexual activity among persons of the same sex", - "values": [ - "4 - General action" - ] - }, - { - "text": "Continue the practices of valuing social dialogue and promoting the concept of tolerance in Omani culture", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Adopt measures to collect disaggregated data on the phenomenon of human trafficking and adopt and implement policies to address it ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Ensure that perpetrators of crimes of sexual violence are consistently brought to justice, and guarantee the protection of witnesses and survivors", - "values": [ - "4 - General action" - ] - }, - { - "text": "Modify its criminal code in order to establish a definition on torture and harshness of sentences according to the Convention on Torture.", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Ratify the Convention against Torture and the International Covenant on Civil and Political Rights", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Reinforce its efforts to protect the rights of people with disabilities and to oversee the work of mental health residential facilities, and amend its legal framework to ensure that it contains human rights guarantees in line with international standards", - "values": [ - "4 - General action" - ] - }, - { - "text": "Consider giving special attention to the rights of women and girls with disabilities, including their reproductive rights, the right to be free from violence, to work, to receive education and to participate in decision-making", - "values": [ - "3 - Considering action" - ] - }, - { - "text": "Ensure the implementation of the Convention on the Rights of Persons with Disabilities in line with national efforts", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Promote the institutionalization of the agency for social inclusion of Roma communities.", - "values": [ - "4 - General action" - ] - }, - { - "text": "Consider the ratification of the Optional Protocol to the Convention on the Elimination of All Forms of Discrimination against Women, and other international instruments to which the country is not a party", - "values": [ - "3 - Considering action" - ] - }, - { - "text": "Provide refugees and their families with identification certificates making sure that all children of refugees have access to education, and repeal restrictions on refugees' rights to own property, to work, to establish and incorporate businesses and to travel freely", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Further its efforts focused on combating trafficking in human beings, particularly women and children ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Introduce legislation to implement the European Court of Human Rights judgement in the A, B and C versus Ireland case", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Adopt adequate and effective measures to protect infant and maternal health, as well as access to family planning and contraceptive methods ", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Follow through on the Government's commitment to investigate the killing of activist Hassan Guyo, and thoroughly investigate all extrajudicial killings in Kenya, with a view of ensuring accountability", - "values": [ - "4 - General action" - ] - }, - { - "text": "Decriminalize same sex activity between consenting adults and adopt further measures to promote tolerance in this regard", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Establish specific measures to investigate alleged cases of ill-treatment of detainees and punish those responsible for such abuses", - "values": [ - "4 - General action" - ] - }, - { - "text": "Establish a moratorium to the death sentence and eradicate the practice of death by stoning", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Address the issue of female genital mutilation in an appropriate manner through awareness-raising programmes for parents, women, girls and traditional and religious leaders and suitable legal instruments, as previously recommended in the first universal periodic review and accepted by Sierra Leone", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Repeal discriminatory blasphemy laws against religious minorities and ensure that there is no impunity for those who commit hate crimes", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Develop a national plan of action aimed at fostering a genuine human rights culture and raising human rights public awareness among the society with due regard to national and regional particularities as well as historical, cultural and religious backgrounds", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Carry out a thorough and independent investigation on the policy of forced sterilization undertaken by the authorities in the 1990s, so as to ensure that those persons responsible do not enjoy impunity and that victims can obtain reparation", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Modify Law 107 on the Rights to Public Meetings, bring it in line with international standards", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Ensure that human rights defenders and representatives of civil society are effectively protected from any form of intimidation and harassment and engage constructively with them identifying solutions of Venezuela's human rights challenges ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Strengthen the dialogue with the African Union and the United Nations with a view to adopting strategies for the protection of human rights", - "values": [ - "4 - General action" - ] - }, - { - "text": "Continue making legislative and concrete efforts to promote human rights", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Improve the conditions of prisoners and pre-trial detainees and prevent any kind of abuse of prisoners by security personnel ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Continue efforts to combat discrimination against women through appropriate legal provisions", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Finalise the ratification of the Optional Protocol to the Convention against Torture", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Continue to take effective measures to promote gender equality", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Ensure that legislation relating to the Internet and other new communication technologies respects international human rights obligations", - "values": [ - "4 - General action" - ] - }, - { - "text": "Take necessary measures to provide reproductive health-care services for women and girls in line with its Convention on the Elimination of All Forms of Discrimination against Women obligations", - "values": [ - "4 - General action" - ] - }, - { - "text": "Ratify the Optional Protocol to the Convention against Torture, as also recommended by the Qatari National Human Rights Committee ", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Seek to harmonize the human rights norms in the four countries of the Kingdom according to the international standards", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Consider including the component of human rights education and training in its national education programme and in the training programmes for the police and those who administrate justice ", - "values": [ - "3 - Considering action" - ] - }, - { - "text": "Continue to intensify efforts to achieve equality and non discrimination in the framework of equality and equity between men and women", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Consider further improving access to health and education with a focus on improving maternal and new born health facilities and expanding the secondary and tertiary education opportunities for all", - "values": [ - "3 - Considering action" - ] - }, - { - "text": "Speed up the accession to the international human rights instruments that were approved in principle and take the necessary measures to apply their provisions", - "values": [ - "4 - General action" - ] - }, - { - "text": "Step up efforts to address the unemployment in particular in the rural regions including through special targeted programs to stimulate economic growth and development ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Put an end to the economic financial and commercial embargo against Cuba and Sudan ", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Amend the civil and military penal codes to bring them into line with CAT, to which Nicaragua is party, and bring to justice those responsible for acts of torture", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "The early ratification and implementation of OP-CAT ", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Continue developing the domestic legislation and institutional framework for the promotion and protection of human rights ", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Intensify efforts towards the implementation of some of the recommendations of the last review, which are already in the process of being implemented", - "values": [ - "4 - General action" - ] - }, - { - "text": "To encourage the early adoption of the Law on Combating Corruption, Embezzlement and Illegal Enrichment,", - "values": [ - "4 - General action" - ] - }, - { - "text": "Lesotho was committed to preventing illicit trafficking of conventional arms. The International Convention on Certain Conventional Weapons had been ratified and the Arms Trade Treaty had been signed.", - "values": [ - "4 - General action" - ] - }, - { - "text": "Take prompt and effective steps to protect human rights defenders from violent attacks", - "values": [ - "4 - General action" - ] - }, - { - "text": "Intensify its efforts to expand and strengthen the training of law enforcement officials and to enhance public awareness in relation to respect for the human rights and fundamental freedoms of immigrants, refugees and ethnic minorities ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Address the inequities based on rural-urban divide and gender imbalance ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Increase access to affordable contraceptive methods throughout the country, include comprehensive sexuality education in school curricula, and provide adequate and effective sexual and reproductive health services, including to adolescents", - "values": [ - "4 - General action" - ] - }, - { - "text": "Undertake further efforts to prevent the use of child soldiers and to demobilize and reintegrate child soldiers ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Consider ratifying the Second Optional Protocol to the International Covenant on Civil and Political Rights and establish a de jure moratorium on the death penalty with the view of total abolition thereof", - "values": [ - "3 - Considering action" - ] - }, - { - "text": "Take additional measures aimed at protecting and promoting women's rights in education, health and work sectors, as well as the legal capacity for women", - "values": [ - "4 - General action" - ] - }, - { - "text": "Take urgent action to introduce an explicit statutory ban on solitary confinement for children in remand prisons and police cells", - "values": [ - "4 - General action" - ] - }, - { - "text": "Proceed on the commitment to ratify the following protocols: the International Convention for the Protection of All Persons from Enforced Disappearance, the Optional Protocol to the convention against torture and Other Cruel, Inhuman or Degrading Treatment or Punishment, and the Second Optional Protocol to the International Covenant on Civil and Political Rights", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Further strengthen the promotion and protection of rights of foreign workers", - "values": [ - "4 - General action" - ] - }, - { - "text": "Adopt measures to improve detention conditions in Polish prisons", - "values": [ - "4 - General action" - ] - }, - { - "text": "Adhere to the 1954 Convention relating to the Status of Stateless Persons and 1961 Convention on the Reduction of Statelessness ", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Bring to a conclusion the legislative process and proceed to implement the bill on the protection of human rights defenders, journalists, those working in the media, and justice officials", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Fight against domestic violence through more effective measures against perpetrators, and especially by protecting and avoiding the deportation of migrant women victims of gender violence", - "values": [ - "4 - General action" - ] - }, - { - "text": "Ratify Optional Protocol to the Convention against Torture and Other Cruel, Inhuman or Degrading Treatment or Punishment", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Further improve its cooperation with the special rapporteurs of the United Nations ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Strengthen minorities' training for teachers in order to overcome such challenges as communication barriers due to language so as to integrate children of minorities into the local education system ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Repeal laws criminalizing abortion in cases of rape, incest and severe fetal impairment and eliminate all punitive measures", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Strengthen the capacity of the law enforcement agencies to combat the phenomenon of human trafficking", - "values": [ - "4 - General action" - ] - }, - { - "text": "Place an absolute ban on death sentences against persons below the age of 18 at the time when the offence was committed", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Improve the collection of hate-crime data by law enforcement authorities and encourage victims to report hate crimes and incidents ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Continue to review all counter-terrorism legislation and ensure that it complies with the highest human rights standards ", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Continue the efforts to promote parity between men and women", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Take necessary measures to end harmful traditional practices against women, sexual harassment in public and work places and domestic violence", - "values": [ - "4 - General action" - ] - }, - { - "text": "Ratify the Convention on the Rights of Persons with Disabilities without further delay", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Continue the efforts for the equal guarantee of the right to free medical assistance for children, with special attention to those from disadvantaged environments", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Ratify the International Convention for the Protection of All Persons from Enforced Disappearance and the Optional Protocol to the Convention on the Elimination of All Forms of Discrimination against Women", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Ensure that cases of torture will be systematically investigated and perpetrators held accountable", - "values": [ - "4 - General action" - ] - }, - { - "text": "Take necessary measures to implement CEDAW, especially with emphasis on issues of violence and abuse based on gender. ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Systematically and continuously integrate a gender perspective in the follow up process to the UPR.", - "values": [ - "4 - General action" - ] - }, - { - "text": "Repeal all laws that discriminate against women ", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Authorise the launching of an independent international inquiry on the allegations on the violations of human rights in the Somali region since 2007, and bring those responsible to justice ", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Establish a moratorium on the use of the death penalty, aiming for its legal abolition", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Set up a national human rights institution in line with the Paris Principles", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Continue the efforts towards improving the human rights conditions in Congo, especially through integrating human rights into the educational system in order to raise the awareness about human rights", - "values": [ - "4 - General action" - ] - }, - { - "text": "Systematically review the family Code in order to amend and repeal all gender-based discriminatory provisions", - "values": [ - "3 - Considering action" - ] - }, - { - "text": "Accelerate the establishment of a national mechanism for the prevention of torture ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Accelerate the exercise that it has initiated to consider the possibility of acceding to a number of international human rights instruments, including the Convention on the Elimination of All Forms of Discrimination against Women", - "values": [ - "4 - General action" - ] - }, - { - "text": "Consider withdrawing reservations to core international human rights instruments, in particular ICCPR, ICERD and CRC ", - "values": [ - "3 - Considering action" - ] - }, - { - "text": "Withdraw the territorial exclusion for Greenland and the Faroe Islands to the Optional Protocol to the Convention on the Rights of the Child on the sale of children, child prostitution and child pornography", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Provide due access by migrants, asylum seekers and refugees to health care and other protection systems, such as education and employment services", - "values": [ - "4 - General action" - ] - }, - { - "text": "Review regulations, policies and practices in accordance with article 21 of the ICCPR", - "values": [ - "3 - Considering action" - ] - }, - { - "text": "Ratify the 1951 Convention relating to the Status of Refugees and the Protocol to it, as well as the Convention against Torture", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Continue to strengthen its domestic legislative, institutional and administrative machinery to fight challenges such as poverty, illiteracy, gender disparity and social inequality", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Continue to protect and promote human rights in the Caribbean Netherlands by reducing poverty, providing a minimum of social security and establishing legal offices to provide legal advice and referrals to increase access to justice", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Initiate the process to incorporate the Convention on the Rights of the Child into national legislation and continue the formulation of a third plan of action for human rights", - "values": [ - "4 - General action" - ] - }, - { - "text": "Take concrete steps to investigate the allegations, including legal action, and to prevent reoccurrence of the coercive sterilization of Roma women and compensate victims.", - "values": [ - "4 - General action" - ] - }, - { - "text": "Take appropriate steps to address acts of torture of all persons, including migrants in detention, and to tackle the phenomenon of child labour and ensure that all children of school going age have unimpeded access to education", - "values": [ - "4 - General action" - ] - }, - { - "text": "Continue efforts in promoting gender equality, including ensuring equal pension entitlements for women", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Continue its effort to create human rights training for national public defence personnel", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Make operational in the nearest future the National Commission on Human Rights and the Ombudsman institution ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Seek the support and advice of the various United Nations agencies in order to meet its international commitments in the protection and safeguarding of human rights.", - "values": [ - "1 - Minimal action" - ] - }, - { - "text": "Initiate an inclusive dialogue which would guarantee minority representatives a fair joint-decision power on the basis of the four previous proposals (APRC Expert Majority Report, All Party Representative Committee Report, Proposals for Constitutional Reforms, and Mangala Report)", - "values": [ - "4 - General action" - ] - }, - { - "text": "Seize this opportunity to create a corruption-free environment ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Redouble efforts aimed at the implementation of legal provisions against domestic and gender violence, with particular attention to raising the awareness and proper training of the police", - "values": [ - "4 - General action" - ] - }, - { - "text": "Implement measures to protect detainees from torture, cruel, inhuman or degrading treatment and ensure that all cases of persons detained are brought to the attention of the judiciary without delay. ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Take steps to improve prison conditions, including overcrowding and the lack of social rehabilitation measures", - "values": [ - "4 - General action" - ] - }, - { - "text": "Explore alternative ways to treat persons with mental and psychosocial disabilities and impartially investigate the excessive use of restrictive measures in mental health institutions", - "values": [ - "3 - Considering action" - ] - }, - { - "text": "Ratify the Optional Protocol to the Convention on the Rights of the Child on the sale of children, child prostitution and child pornography signed in 2000", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Promotion and protection of human rights is a continuous and unending process, and Ghana is committed to ensure that the institutions charged with that responsibility are further strengthened to carry out their mandates effectively", - "values": [ - "4 - General action" - ] - }, - { - "text": "Continue the progressive measures taken to promote the rights of migrant workers and their health", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Redouble its efforts to develop the Welfare Development Plan 2016-2023, with particular emphasis on the protection and promotion of the rights of older persons", - "values": [ - "4 - General action" - ] - }, - { - "text": "Accelerate the ongoing process to harmonize existing legislation with the Constitution", - "values": [ - "4 - General action" - ] - }, - { - "text": "Continue to make progress in the implementation of the National Plan to Generate Decent Work, with a view to achieving the employment goals by 2015", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Respect, as long as it maintains the death penalty, at least minimum standards related to the death penalty, in particular ensuring that the death penalty is only imposed for the most serious offences ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Reinforce its efforts to combat racism by taking measures to adopt comprehensive anti-discrimination legislation ", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Improve conditions in schools, and persist in efforts to facilitate access to education, especially for indigenous peoples, and promote the opportunity to access mother language education", - "values": [ - "4 - General action" - ] - }, - { - "text": "Strengthen actions to combat discrimination and negative attitudes against women, including women belonging to Roma and migrants and against children of minority groups ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Continue to extend and strengthen the system of primary healthcare and improve the quality of such services, with particular attention to indigenous women and peoples", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Establish an effective policy to guarantee the implementation of non-discriminatory sex education throughout the education system and at all levels, in line with current up-to-date scientific information and from a human rights approach", - "values": [ - "4 - General action" - ] - }, - { - "text": "Step up efforts to eradicate child abuse and domestic violence through the effective implementation of national strategies ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Continue to improve its policies to protect and promote the rights of women and their empowerment ", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Strengthen domestic judicial and criminal law and its effective enforcement, with respect to the accountability and corresponding sanctions of those found responsible of grave/serious human rights violations during the internal conflict in Sierra Leone, while respecting due process ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Lift all restrictions on humanitarian access to populations in need of assistance, in particular to besieged and hard-to-reach areas, and ensure the safe evacuation of those civilians who wish to leave, particularly those in Aleppo and 15 other territories that the United Nations has classified as besieged by Syria", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Declare a moratorium on the application of death penalty, as a first step towards its abolition", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Revise the Criminal Code and associated laws to ensure compliance with international standards, guarantee equality between men and women, criminalize marital rape, decriminalize sexual relations outside marriage, abolish discrimination against children born outside marriage, increase the minimum age of marriage to 18 years, decriminalize consensual same-sex relations and develop public awareness programmes to address the stigmatization of lesbian, gay, bisexual, transgender and intersex persons", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Fully respect the principle of non-refoulement and ensure effective access to asylum procedures for those fleeing human rights violations", - "values": [ - "4 - General action" - ] - }, - { - "text": "Promote and protect the rights of peasants and other people working in rural areas", - "values": [ - "4 - General action" - ] - }, - { - "text": "End discrimination in law and practice against indigenous and Afro- Honduran people and strengthen protection for lesbian, gay, bisexual, transgender and intersex persons", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Continue guaranteeing solid coordination between institutions responsible for addressing issues regarding children ", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Prioritize actions to reduce and eradicate torture and ill-treatment and that allegations of torture and ill-treatment of convicted prisoners and detainees be investigated in a timely, transparent and independent fashion", - "values": [ - "4 - General action" - ] - }, - { - "text": "Issue a standing invitation to special procedure mandate holders ", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Double its efforts to eliminate the gender wage gap", - "values": [ - "4 - General action" - ] - }, - { - "text": "Strengthen efforts to protect the rights of people with albinism and other vulnerable and minority groups", - "values": [ - "4 - General action" - ] - }, - { - "text": "Abolish or reform the restrictive law on sponsorship, which drives potential labour exploitation and human trafficking, strengthen enforcement of the labour law, continue to increase awareness of human rights of migrant workers, and expand legal protections ", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Maintain its commitment to the realization of the right to work for all including through technical and vocational training for young people", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Sign and ratify the United Nations Convention on the Rights of Persons with Disabilities as soon as possible.", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Ensure that all Vanuatu people are able to access health services ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Develop more effective strategies to prevent and combat HIV/AIDS", - "values": [ - "4 - General action" - ] - }, - { - "text": "Renew the national plan of action against racism or elaborate a new one, always in collaboration with civil society", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Maintain the moratorium aiming at the abolition of the death penalty", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Adopt and implement the Child Protection Bill, preventing children from becoming victims of child abuse and publicly raising awareness for their rights", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Take steps to ensure that the National Human Rights Commission is given a mandate in conformity with the Paris Principles", - "values": [ - "4 - General action" - ] - }, - { - "text": "Consider the possibility of ratifying the OP-ICESCR ", - "values": [ - "3 - Considering action" - ] - }, - { - "text": "Consider ratifying the Optional Protocol to the Convention on the Rights of the Child on a communications procedure, to ensure that the child's voice and needs are heard and protected ", - "values": [ - "3 - Considering action" - ] - }, - { - "text": "Transmit to the Committee on the Elimination of Racial Discrimination its overdue national reports, in order to share its experience in this domain.", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Establish a National Human Rights Commission in line with the Paris Principles to provide for effective promotion and protection of human rights at the national level ", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Adopt positive measures to enable people with disabilities and national minorities to have access to education, health services and an adequate standard of living", - "values": [ - "4 - General action" - ] - }, - { - "text": "Pursue ongoing efforts and negotiations that have as an objective to end the recurring armed conflicts in the eastern province of the country", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Engage with civil society organisations representing lesbian, gay, bisexual, transgender and intersex persons to implement education on human rights and anti-discrimination awareness-raising programmes ", - "values": [ - "4 - General action" - ] - }, - { - "text": "To organize a consultation to elaborate a national action plan to follow up on Vienna Declaration and Programme of Action adopted by the World Conference on Human Rights and of the Durban Declaration and Programme of Action adopted by the World Conference against Racism, Racial Discrimination, Xenophobia and Related Intolerance", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Redouble efforts to prevent, combat and punish violence against women and children and to fight effectively against traditional practices harmful to women, particularly in rural areas ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Re-evaluate its policy on the ICERD ", - "values": [ - "3 - Considering action" - ] - }, - { - "text": "Develop a National Action Plan on ending violence against women and children ", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Consider withdrawing its reservations to articles 26, 37 (c) and 40 of the Convention on the Rights of the Child", - "values": [ - "3 - Considering action" - ] - }, - { - "text": "Continue to provide well-coordinated financial and other appropriate assistance to sections of its society, such as single-parent families, large families and families of foreign origin ", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Increase efforts to prevent and sanction gender violence and sexual abuse", - "values": [ - "4 - General action" - ] - }, - { - "text": "Take measures to improve the situation of widows and girl orphans, including by ensuring protection of inheritance through enforcement of legislative provisions.", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Consider formally abolishing the death penalty and acceding to the Second Optional Protocol to the ICCPR, aimed at abolishing the death penalty", - "values": [ - "3 - Considering action" - ] - }, - { - "text": "Consider making the declarations under Articles 21 and 22 of the Convention against Torture and Other Cruel, Inhuman or Degrading Treatment or Punishment", - "values": [ - "3 - Considering action" - ] - }, - { - "text": "Take measures to raise awareness in the population with a view to eliminating stigmatization and discrimination suffered by persons with disabilities", - "values": [ - "4 - General action" - ] - }, - { - "text": "Sign and ratify the Optional Protocol of the International Covenant on Economic, Social and Cultural Rights", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Expedite steps being taken to establish an independent National Human Rights Institution ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Montenegro committed itself to making an active contribution to universal fight for human rights: working with other members and stakeholders on further development of the Human Rights Council, and the mechanisms of the Universal Periodical Review, actively promoting and protecting human rights through implementation of norms on human rights and by providing adequate response to any violation of these rights, working within the Human Rights Council to enable rapid reaction in case of crisis, finding new ways to promote effective coordination and engagement of the United Nations system in the area of human rights, strengthening cooperation between member-states, United Nations agencies, and other international and regional organizations, national institutions for protection of human rights and civil society, supporting and promoting international cooperation and dialogue in order to improve numerous programs on human rights, gender equality, protection of children, democracy, good governance, and the rule of law.", - "values": [ - "4 - General action" - ] - }, - { - "text": "Redouble national measures aimed at ensuring that every child in the country is issued with a birth certificate promptly at birth", - "values": [ - "4 - General action" - ] - }, - { - "text": "Disseminate a culture of human rights and strengthen its national efforts to protect human rights, while respecting its cultural specificities and the Islamic Shari'a ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Pursue efforts to combat violence against women, notably by intensifying awareness-raising campaigns about respect for women's rights", - "values": [ - "4 - General action" - ] - }, - { - "text": "Improve the financing methodology, strengthen relevant coordination, and create better conditions for its own development ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Enact legislation on domestic violence and seek to eliminate all forms of violence against women while increasing access to justice for women victims, especially in remote and rural areas ", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Ensure that criminal provisions are not misused to curb the ability of human rights defenders or other protesters to exercise their rights to freedom of expression, assembly and association and that appropriate authorities reconsider the cases of those arrested and prosecuted ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Further maintain national efforts to ensure compliance and stability of the MDGs ", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Explicitly prohibit in national legislation corporal punishment in all settings, including at home", - "values": [ - "4 - General action" - ] - }, - { - "text": "Expand the programme to boost birth registration to cover more outlying areas", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Take measures to abolish the death penalty ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Guarantee gender equality and women's rights, including sexual and reproductive health rights", - "values": [ - "4 - General action" - ] - }, - { - "text": "Identify opportunities to enhance the effectiveness and independence of national human rights bodies ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Enhance its efforts to prevent racially motivated acts of violence against Muslims and other minorities and to punish the perpetrators of such crimes ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Review the regional resettlement arrangement with a view to ending or reforming the offshore processing and offshore detention of asylum seekers, and to release asylum seekers from detention while their claims are being processed, priority being given to releasing children and families as soon as possible, and, in the interim, to provide adequate safeguards for the detainees in detention, including providing reasonable standards of security and hygiene", - "values": [ - "3 - Considering action" - ] - }, - { - "text": "Continue its efforts in the domain of access to housing, vital for the realization of several other rights, in order to meet the needs for adequate housing at an affordable price for all segments of the American society ", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Suggest the ratification of the Convention on the Rights of Persons with Disabilities and its Optional Protocol", - "values": [ - "3 - Considering action" - ] - }, - { - "text": "Improve access to justice, including due process and redress, for victims of sexual violence in the military, this would include removing from the chain of command the decision about whether to prosecute cases of alleged assault", - "values": [ - "4 - General action" - ] - }, - { - "text": "Consider the measures eventually leading to the abolishment of capital punishment in the country", - "values": [ - "3 - Considering action" - ] - }, - { - "text": "Approve a plan of action to fight discrimination, and against any initiatives of political associations or groups that promote racism or xenophobia ", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Strengthen measures for the promotion of intercultural understanding and tolerance in order to overcome unacceptable cases of intolerance and absence of respect for the religion of others in the country", - "values": [ - "4 - General action" - ] - }, - { - "text": "Ensure the effective implementation of the National Plan of Action against Human Trafficking", - "values": [ - "4 - General action" - ] - }, - { - "text": "Continue with the sensitization programmes in order to increase human rights awareness among the citizens of the country", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Continue the cooperation with the United Nations in the area of human rights", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Abolish the death penalty for all crimes and in all circumstances", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Adopt the relevant legal texts and set up monitoring mechanisms to ensure their implementation ", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Simplify procedures for the registration and creation of political parties", - "values": [ - "4 - General action" - ] - }, - { - "text": "Apply effectively all protection measures provided for in the Law on the Welfare and Protection of Children", - "values": [ - "4 - General action" - ] - }, - { - "text": "Advance in the implementation of measures aimed at improving the situation of persons with disabilities", - "values": [ - "4 - General action" - ] - }, - { - "text": "Consider withdrawing the reservations made to the CRC", - "values": [ - "3 - Considering action" - ] - }, - { - "text": "Seek technical and capacity-building assistance to increase its capacity for the implementation of its treaty obligations ", - "values": [ - "1 - Minimal action" - ] - }, - { - "text": "Consolidate the enforcement of the law concerning human trafficking, particularly in cases of sexual and labour exploitation, which are two very sensitive issues in the country ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Continue its commendable efforts in the area of good governance and human rights, in particular through its newly established Governance Advisory Council and the Task Force on Treaty Reporting", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Mainstream human rights and transitional justice issues into any future national reconciliation negotiations.", - "values": [ - "4 - General action" - ] - }, - { - "text": "Provide specific training aimed at the protection of human rights in particular of women, children and persons of minority ethnicity, sexual orientation or gender identity to all law enforcement and judicial officials.", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Take the necessary measures to ensure that all persons born in Luxembourg obtain a nationality if otherwise they would become stateless, and regardless of the immigration status of their parents", - "values": [ - "4 - General action" - ] - }, - { - "text": "Consider positively OHCHR offers of technical assistance and cooperate with the Human Rights Council special procedures in support of national efforts in this regard ", - "values": [ - "3 - Considering action" - ] - }, - { - "text": "Ensure that a comprehensive consultation process with all stakeholders, including civil society, is carried out during the design of the Strategic Plan for the Management, Prevention and Elimination of Domestic Violence", - "values": [ - "4 - General action" - ] - }, - { - "text": "Strengthen its policy to fight poverty in rural areas", - "values": [ - "4 - General action" - ] - }, - { - "text": "Continue efforts to improve all political as well as economic, social and cultural rights in conformity with the universally agreed human rights standards and norms.", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Invite NGOs working on press freedom to a constructive dialogue on how Mexico can stop the violence against journalists and ensure press freedom", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Enact legislation to enshrine the 1996 Supreme Court ruling in legislation and explicitly prohibit all corporal punishment of children in the home", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Amend personal status laws and develop a comprehensive policy at the national level, consistent with the Convention on the Elimination of All Forms of Discrimination against Women, to ensure that women are treated in the same way as men in issues related to child custody, inheritance and divorce", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Strengthen the legislation in order to criminalize all forms of corporal punishment of children in all circumstances", - "values": [ - "4 - General action" - ] - }, - { - "text": "Give high priority to the adoption of practical measures for the full implementation of texts governing the media in Chad so that journalists can fully exercise their profession.", - "values": [ - "4 - General action" - ] - }, - { - "text": "Issue a standing invitation to Special Procedures and consider early accession to major international human rights instruments such as the ICCPR, ICESCR, ICERD, CAT, and ICPED", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Combat all forms of discrimination and abuse against LGBTI persons", - "values": [ - "4 - General action" - ] - }, - { - "text": "Take all necessary measures to prevent torture and other cruel, inhuman and degrading treatment or punishment.", - "values": [ - "4 - General action" - ] - }, - { - "text": "Address concerns over migrant detention centre conditions, including by guaranteeing the right to obtain speedy judicial review of the lawfulness of any detention and to be released if detention is determined unlawful ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Ensure full alignment of its national legislation with all obligations under the Rome Statute of the International Criminal Court (ICC), acceding also to its Agreement on Privileges and Immunities", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Bahrain will continue its efforts to achieve comprehensive development, with the emphasis on the centrality of human rights in development and the importance of supporting a culture of human rights by all available means, including through education, the media, etc.", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Update the 1936 Law on Prisons and include provisions on alternative sanctions in order to decongest prisons", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Ratify the Protocol to the Covenant on Economic, Social and Cultural Rights ", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Increase the number of law enforcement officials, judges and prosecutors receiving training specific to human rights and minority groups", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Reform its legislation with a view to establish the prohibition of all forms of corporal punishment of children, an indispensable component for the prevention and elimination of violence against children, as well as for the respect for children's rights, dignity and physical integrity", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Ensure decent work without discrimination by enhancing effective implementation of the Basic Plan for Gender Equality and the Act on Promotion of Women\u2019s Participation in the Workplace, and by ensuring reasonable wages and safe working conditions for foreign workers, particularly those under the Technical Internship and Training Program", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Continue to protect and strengthen freedom of the press and media", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Continue strengthening the programmes carried out for the social protection of all the Kyrgyz people in the fight against poverty and social inequity", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "In line with the recommendations of the Committee on the Elimination of Discrimination against Women, adopt a national plan to eliminate stereotypes regarding the role of women in society, and speed up the reform process to guarantee equality between men and women, including with regard to the transfer of nationality, the custody of children, divorce and inheritance ", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Seek the assistance of the international community to meet the Millennium Development Goals ", - "values": [ - "1 - Minimal action" - ] - }, - { - "text": "Take measures to ensure that the national mechanism for the prevention of torture and other cruel, inhuman and degrading treatment is provided with sufficient resources to operate effectively", - "values": [ - "4 - General action" - ] - }, - { - "text": "Explicitly prohibit all corporal punishment of children in all settings, including the home", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Implement measures to address the sex ratio imbalance in its population given the harm that occurs when many women and girls are missing, and put in place safeguards that ensure policies related to the family are consent-based", - "values": [ - "4 - General action" - ] - }, - { - "text": "Consider the establishment of a children's Ombudsman ", - "values": [ - "3 - Considering action" - ] - }, - { - "text": "Proceed in the development of effective tools to measure the impact of existing schemes for human rights education, both in the short and long term", - "values": [ - "4 - General action" - ] - }, - { - "text": "Strengthen its efforts and establish and implement policies and measures to address discrimination based on sexual orientation and gender identity ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Bring its domestic legislation in line with international standards on the sexual exploitation of children and establish a clear definition of child pornography ", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Continue efforts to eliminate discriminatory practices against women, particularly regarding the granting of nationality ", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Continue to allocate more budget in health sectors", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Continue implementing the integrated programme of rural development and the fight against poverty", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Protect human rights defenders and journalists from violence and arbitrary arrests, address impunity for crimes against human rights defenders and journalists, and notify the United Nations Educational, Scientific and Cultural Organization of the status of judicial inquiries into the murder of journalists ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Ensure the equal rights of people by legally recognizing same-sex marriage", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Take all the necessary measures to eliminate discrimination based on sexual orientation and gender identity", - "values": [ - "4 - General action" - ] - }, - { - "text": "Take additional efforts on children's issues, including the compilation of statistical data, establishment of a monitoring system and overall enhancement of child protection measures ", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Speed up the registration in the pipeline in order to deal with the pending challenges in the promotion and protection of human rights", - "values": [ - "4 - General action" - ] - }, - { - "text": "Continue to address persistent discriminatory practices that hinder equal participation of women in economic, socio-civic, political, and all other spheres, by encouraging educational institutions and media practitioners to portray women as capable leaders and as significant contributors to growth and development of a society", - "values": [ - "4 - General action" - ] - }, - { - "text": "Further ensure political representation of the three religious minority groups and promote their stronger involvement in the planning and implementation of various projects providing financial assistance for their educational and cultural needs ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Guarantee that all allegations of attacks, threats and acts of harassment or intimidation targeting human rights defenders are subject to thorough investigations", - "values": [ - "4 - General action" - ] - }, - { - "text": "Adopt comprehensive legislation to counter discrimination, and take steps to ensure that equality enshrined in such legislation or in existing law is achieved in practice", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Continue introducing measures needed to close the gender pay gap", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Implement fully the Law on the Elimination of Violence against Women and refrain from approving any new legislation which may compromise the implementation of the Convention on the Elimination of All Forms of Discrimination against Women, to which Afghanistan is party ", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Enact legislation on domestic violence to protect the rights of women as a matter of priority ", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Further strengthen the capacity to promote children's rights at the federal, regional and local levels ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Stop all acts of intimidation, corporal punishment or arrest linked to the activities of human rights defenders, political activists and journalists, and guarantee freedom of expression, without introducing any provisions restricting its exercise ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Ensure that the National Human Rights Commission operates in line with the Paris Principles", - "values": [ - "4 - General action" - ] - }, - { - "text": "Continue to positively engage the United Nations human rights mechanisms and instruments", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Continue its efforts to bring about the prompt ratification of the Convention against Torture and Other Cruel, Inhuman or Degrading Treatment or Punishment and its Optional Protocol", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Continue strengthening the legislative framework for the promotion and protection of human rights for all people in the country in accordance with international human rights obligations", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Eliminate traditional harmful practices, such as the rising number of deaths due to dowry and burning of widows", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "End the recruitment of children and their participation in armed groups ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Initiate the accession procedure to the Optional Protocol to the Convention against Torture", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Promote access to property for women in rural areas", - "values": [ - "4 - General action" - ] - }, - { - "text": "Keep its commitment to uphold human rights treaty obligations and engage constructively with human rights mechanisms", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Ratify International Labour Organization (ILO) fundamental conventions and in particular the Indigenous and Tribal Peoples Convention No. 169.", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Further strengthen its policy to foster the development and enjoyment of human rights by all Cubans, particularly in the realm of anti-discrimination", - "values": [ - "4 - General action" - ] - }, - { - "text": "Take measure to protect the LGBTI community, especially by decriminalizing consensual sexual acts between adult males and by implementing legislation ending discrimination based on sexual orientation and gender identity", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Widen the scope of international obligations through ratification of international treaties such as the Optional Protocol to the Convention on the Rights of the Child on a communications procedure", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Continue strengthening social security to cover all segments of society ", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Albanian institutions are committed to implement the recommendations contained in the resolution of the Committee of Ministers of the Council of Europe (adopted in February 2014). In the road map (adopted in May 2014) on the fulfilment of the five priorities of the European Commission are foreseen measures for the protection of minorities. In this framework a Working Group is established with representatives of central institutions and independent institutions in order to evaluate the existing legal and policy framework for the protection of minorities and to present proposals related the improvement of legal framework and policies for minorities. ", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Continue to promote among Australians a comprehensive campaign of tolerance and non-discrimination", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Continue its efforts in pursuing a good-willed strategy to enhance the rights and conditions of workers including the foreign workers, hand in hand with an awareness-raising campaign for migrant workers ", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Consider the possibility of ratifying the ICRMW and ILO Convention No. 143 on Migrations in Abusive Conditions and the Promotion of Equality of Opportunity and Treatment of Migrant Workers ", - "values": [ - "3 - Considering action" - ] - }, - { - "text": "Ratify the OP-CRC-SC and take necessary measures aiming at the accreditation of the Public Defender of Rights of Citizens by the International Coordinating Committee of National Institutions", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Ratify the Optional Protocol to the Convention on the Rights of the Child on children in armed conflict and the Optional Protocol to the Convention on the Rights of the Child on the sale of children, child prostitution and child pornography, at the earliest possible time", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Ratify the International Convention for the Protection of All Persons from Enforced Disappearance (CED) ", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Seek the assistance of the international community, the United Nations and its specialized agencies in providing the country with the needed support in confronting these challenges towards ensuring the promotion and protection of human rights and the attainment of its Millennium Development Goals ", - "values": [ - "1 - Minimal action" - ] - }, - { - "text": "Adopt a comprehensive public policy and law to eradicate female genital mutilation ", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Take a proactive approach to encouraging employment of persons with disabilities ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Bring its domestic legislation in line with the rights to freedom of expression, association and assembly, and to enact and implement a law of association enabling all NGOs to operate legally, without harassment and undue government interference", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Continue moving forward in land demarcation and indigenous environment, taking into consideration the characteristics of each indigenous people", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Proceed with the preparation and implementation of the National Action Plan for the Equality of Women and Men in the Labor Market ", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Establish clear processes and procedures for the selection of independent and impartial members of the National Media Commission", - "values": [ - "4 - General action" - ] - }, - { - "text": "Continue the on-going process of the exchange of views and experiences with other countries with respect to the improvement of national legislation in the field of human rights", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Reflect on how to revise its legislation in order to better protect freedom of religion or belief for all individuals and groups without discrimination, in full compliance with article 18 of International Covenant on Civil and Political Rights ", - "values": [ - "3 - Considering action" - ] - }, - { - "text": "Continue efforts on the elimination of all forms of discrimination against women ", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Continue efforts to promote the status of women in society and their effective participation in the decision-making process of the country ", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Take all necessary measures to bring its legislation on child labour in line with international obligations and continue implementing the programmes that provide education facilities for working children", - "values": [ - "4 - General action" - ] - }, - { - "text": "Adopt specific measures to combat discrimination against Roma", - "values": [ - "4 - General action" - ] - }, - { - "text": "Fully implement the Second National Plan on Human Trafficking and Sex Trafficking, with particular emphasis on measures to support victims, such as legal, medical and psychological support and provision of shelters ", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Protect the rights of refugees and migrants, in particular the rights of women and children who are refugees and migrants", - "values": [ - "4 - General action" - ] - }, - { - "text": "Define expectations from relevant United Nations organizations and agencies with regards to technical and financial assistance and to solicit, therefore, the necessary international assistance to overcome material and infrastructural constraints mentioned in its national report", - "values": [ - "1 - Minimal action" - ] - }, - { - "text": "Take more effective measures in the field of health and the right to education", - "values": [ - "4 - General action" - ] - }, - { - "text": "Establish measures for greater accountability to prevent loss of life ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Strengthen efforts to eradicate child abuse, child labour and the sexual exploitation of children", - "values": [ - "4 - General action" - ] - }, - { - "text": "Additionally, in view of the existence of the dualist system for the implementation of international conventions, enact domestic laws to make sure that there is real enforcement of the international instruments that Saint Lucia is party to ", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Implement a comprehensive policy for the development of human rights that includes a national institution that allows the coordination and implementation of the said policy", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Continue its efforts to improve the quality of health services for mothers and children, including the education of pregnant women and mothers with a view to decreasing maternal and neonatal mortality rates, and to seek the assistance of the international community with a view to providing better health services to the people ", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Accredit a national human rights institution in accordance with the Paris Principles ", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Intensify action against child sex tourism", - "values": [ - "4 - General action" - ] - }, - { - "text": "Take all necessary measures to put an end to acts of intimidation and violence committed against journalists and human rights defenders ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Ratify the Convention on the Rights of Persons with Disabilities as a matter of priority ", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Increase the number of competent personnel in the Public Prosecutor's office working to combat violence against women ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Amend the Law on Foreigners to include an explicit limit to administrative detention", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "In cooperation with other European nations and international organizations, work to improve resources, living conditions, and safety at migrant processing centres", - "values": [ - "4 - General action" - ] - }, - { - "text": "Continue implementing and strengthening social inclusiveness, equality and non-discriminatory public practices, among which "Brazil without Poverty" ", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Increase efforts to combat human trafficking, ensure accountability of those involved in trafficking, including any public official, and to prevent double victimization of victims through charges such as illegal migration or falsification of documents ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Adopt legislation to ensure that alternative services offered to conscientious objectors are of a civilian nature, placed under civilian authorities\u2019 control, and devoid of any punitive dimension, examine the situation of individuals who are currently imprisoned for refusing to submit to compulsory military training, with a view to offering them an alternative civilian service", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Continue efforts as to ensure that MDG1 can be achieved for 2015, so that its population be able to fully enjoy the rights inherent to a decent and respectable life", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "That the family, as defined in the Constitution, remains the genuine expression of national culture ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Intensify efforts to prevent violations of children\u2019s rights and accelerate the adoption and implementation of laws prohibiting harmful practices against women and girls, including trokosi and female genital mutilation", - "values": [ - "4 - General action" - ] - }, - { - "text": "Ensure that the Attorney General's Office and other offices thoroughly and aggressively investigate murders, corruption and organized crime, and prosecute alleged perpetrators", - "values": [ - "4 - General action" - ] - }, - { - "text": "Ensure that the legal framework on religious societies continues to be applied in an equal and transparent manner", - "values": [ - "4 - General action" - ] - }, - { - "text": "Continue to implement policies that promote gender equality and provide women with opportunities to play an active role in social, economic and political spheres", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Strengthen the independent functioning of the judiciary in order to reduce delays in judicial proceedings, enhance transparency of the processes and guarantee the right to speedy trial", - "values": [ - "4 - General action" - ] - }, - { - "text": "Ratify the United Nations Educational, Scientific and Cultural Organization Convention against Discrimination in Education", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Revise section 375 of the Penal Code so as to criminalize all acts of rape without exception and irrespective of the marital status and gender of the victim ", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Become a party to the Optional Protocol to CEDAW.", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Try to minimize the negative consequences of drug-related crimes on human rights", - "values": [ - "4 - General action" - ] - }, - { - "text": "Increase its efforts to prevent acts of discrimination against migrants.", - "values": [ - "4 - General action" - ] - }, - { - "text": "Establish a national human rights institution ", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Formally prohibit corporal punishment in all settings", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Continue strengthening its successful education policies as well as the social protection programmes being implemented in order to provide the highest quality of life and well-being to its people ", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Implement specific legislation to protect women against sexual and gender-based violence and ensure that Nigerian women benefit from full equality before the law", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Commit to the implementation of all the recommendations received at the first UPR", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Amend the Anti-Terrorism Proclamation with a view to bringing this Proclamation into conformity with international human rights standards and narrow the definition of terrorism used ", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Extend a standing invitation to the Special Procedures of the United Nations and strengthen cooperation with the treaty bodies", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Increase the measures aimed at eliminating corruption in the mechanisms for the processing of residence and work permits for citizens of non-European Union member States ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Pass legislation giving same-sex couples the possibility to enter into a civil union contract ", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Engage members of the international donors and seek technical assistance and capacity building to address the problem of food security and access to clean and fresh water", - "values": [ - "4 - General action" - ] - }, - { - "text": "End prosecutions under articles 156 and 156a of the Criminal Code for exercising freedom of religion and expression", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Continue its leading international efforts to tackle global warming, including by reminding developed countries and major emitting States of their obligation to help promote and protect human rights in Samoa by reducing greenhouse gas emissions to safe levels", - "values": [ - "4 - General action" - ] - }, - { - "text": "In its implementation of Constitution article 69, ensure compliance with its obligations under the International Covenant on Civil and Political Rights (ICCPR) ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Extend a standing invitation to all Special Procedure Mandate holders", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Continue to work towards reaching the MDGs of universal primary education, gender equality in access to education, and further reduction in infant mortality ", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Ensure that investigations of alleged torture are not carried out by the same authority accused of committing acts of torture", - "values": [ - "4 - General action" - ] - }, - { - "text": "Investigate and prosecute allegations of all hate speech and political discourse against minorities ", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Prevent and punish all forms of violence especially that which targets women and girls, and ensure that the criminal code contains provisions covering the various forms of sexual violence", - "values": [ - "4 - General action" - ] - }, - { - "text": "Consider signing and ratifying the Convention against Torture and Other Cruel, Inhuman or Degrading Treatment or Punishment", - "values": [ - "3 - Considering action" - ] - }, - { - "text": "Enact and strengthen laws providing the right to education, and take effective measures to protect the rights of the child", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Submit its report to the Committee on the Elimination of Racial Discrimination as soon as possible.", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Ensure effective investigation, prosecution and sanctioning of members of the police who use excessive force or are responsible for unlawful killings ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Strengthen legal protection for women and ensure gender equality and non-discrimination", - "values": [ - "4 - General action" - ] - }, - { - "text": "Consider granting Qatari nationality to the children of Qatari women married to foreign nationals", - "values": [ - "3 - Considering action" - ] - }, - { - "text": "Take the necessary measures to effectively combat discrimination based on sexual orientation in law as well as practice ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Adopt a national plan of action for children's rights and provide the National Commission on the Rights of the Child with the necessary resources", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Maintain the necessary efforts to promote corporate responsibility, which is linked to the full enjoyment of human rights of the population", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Establish an independent complaints mechanism mandated to investigate allegations of human rights violations ", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Adopt measures to ensure the protection of the life as well as the physical and psychological integrity of lesbian, gay, bisexual, transgender and intersex persons", - "values": [ - "4 - General action" - ] - }, - { - "text": "Take appropriate measures for ensuring prosecution for trafficking in human beings", - "values": [ - "4 - General action" - ] - }, - { - "text": "Strengthen the mechanism dealing with expatriate workers to meet the service requirements and to protect their rights according to its Labour Law", - "values": [ - "4 - General action" - ] - }, - { - "text": "Criminalise domestic and marital violence ", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Take the necessary steps to amend the Code on Persons and the Family, the law governing inheritance, matrimonial regimes and bequests and the Criminal Code in order to bring them into conformity with the principle of non-discrimination as set out in the Convention on the Elimination of All Forms of Discrimination against Women.", - "values": [ - "4 - General action" - ] - }, - { - "text": "Amend its Criminal Code to cover various forms of sexual violence, including marital rape and domestic violence, and enforce all legislation concerning women and girls", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "End the two-year regulatory gap and promulgate new electoral regulations so that Turkish citizens belonging to non-Muslim communities be able to manage their charitable foundations", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Intensify engagement with the international community for ensuring access of international human rights monitoring mechanisms to the Georgian regions of Abkhazia and Tskhinvali region/South Ossetia", - "values": [ - "4 - General action" - ] - }, - { - "text": "Continue its efforts to develop training programs within the framework of the project entitled "Democratic Citizenship and Human Rights"", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Proceed to the development of a new National Human Rights Plan and implement the National Strategy for the Elimination of Violence against Women", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Consolidate the process of updating its national legislation in accordance with its international commitments.", - "values": [ - "4 - General action" - ] - }, - { - "text": "Continue its efforts aiming at the elimination of discrimination against women by further aligning its legislation and national policies to the provisions of the Convention on the Elimination of All Forms of Discrimination against Women", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Ratify at its earliest opportunity other core human rights instruments, particularly, those to which it is already a signatory, namely CEDAW, Convention on the Rights of the Child, ICESCR, and the Convention on the Rights of Persons with Disabilities", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Accede to the Agreement on the Privileges and Immunities of the Court ", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Strengthen the strategies and measures for fulfilling children's rights in the Poverty Reduction Strategy Plan", - "values": [ - "4 - General action" - ] - }, - { - "text": "Establish measures at the national and state level to remove obstacles in terms of access by the population to pain palliative medicines ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Abolish discrimination based on religion or beliefs", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Continue to strengthen national policies for the promotion and protection of the rights of migrants, in particular to combat racial discrimination ", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Continue guaranteeing the provision of health, food and social protection services in favour of the Nicaraguan people ", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Ratify the International Covenant on Civil and Political Rights, the International Covenant on Economic, Social and Cultural Rights, as well as the Convention against Torture", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Ensure that legislative reforms do not infringe the independence of the judiciary", - "values": [ - "4 - General action" - ] - }, - { - "text": "Continue to conduct outreach activities to raise public awareness of human rights ", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Ratify the Second Optional Protocol to ICCPR, aiming at the abolition of death penalty ", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Review the Code of Criminal Procedure as regards the use of force by law enforcement officials, in particular section 46", - "values": [ - "3 - Considering action" - ] - }, - { - "text": "Take effective measures to combat poverty ", - "values": [ - "4 - General action" - ] - }, - { - "text": "In view of the trajectory in recent years of increased instances of human trafficking to and via Iceland, the government may need to pay continued attention to help victims of trafficking ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Ratify or sign, as relevant, the International Convention on the Protection of the Rights of All Migrant Workers and Members of Their Families ICRMW, with a view to being consistent with its practice on this matter", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Provide protection to the family as the natural and the fundamental unit of the society", - "values": [ - "4 - General action" - ] - }, - { - "text": "Integrate human rights in the educational system at various levels", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Take measures, in collaboration with civil society organizations, aimed at ensuring women's right to non-discrimination and equality, as proposed by the Committee on the Elimination of Discrimination against Women", - "values": [ - "4 - General action" - ] - }, - { - "text": "Take all necessary steps to ensure that children with a migration background have unhindered and equal access to education", - "values": [ - "4 - General action" - ] - }, - { - "text": "Ensure that measures are taken to accelerate the sustainable return of refugees and internally displaced persons to their places of origin, by improving their reception conditions", - "values": [ - "4 - General action" - ] - }, - { - "text": "Continue to implement programmes for the protection of women's rights, in particular pregnant women, with a view to significantly reducing the maternal and infant mortality rates and the malnutrition rate", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Create a specific institution to ensure the proper implementation of measures related to gender equality and violence ", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Take measures to improve the legal and social situation of the illegal residents, in particular by granting them residency, issuing them personal documents, and enabling them access to the public health and education system ", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Consider taking initial steps towards the ratification of ICRMW", - "values": [ - "3 - Considering action" - ] - }, - { - "text": "Strengthen the implementation of its Human Trafficking and Transportation (Control) Act 2007 and its Regulation 2008 ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Ratify the CERD, the ICCPR and the Optional Protocols thereto, the ICESCR, the CAT and the Optional Protocol thereto, the Optional Protocols to the CRC, the Convention on the Rights of Persons with Disabilities and the Optional Protocol thereto, and the International Convention for the Protection of All Persons from Enforced Disappearance ", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Establish clear standards of respect for human rights for officials who exercise immigration control at points of entry into the Netherlands territory, in order to ensure a respectful, equal and non-discriminatory treatment and protection of the human rights of all persons entering the territory", - "values": [ - "4 - General action" - ] - }, - { - "text": "Human rights training for public civil servants, generating continuous training processes for public officials and officials in the area of justice", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Review and adapt its Constitution and laws to ensure that discrimination on grounds of sexual orientation and gender identity is prohibited", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Continue efforts to create an environment harmonizing citizens' rights to peaceful protest with the need for security and integrity of the country and with efforts to maintain public order and protect public and private property", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Take further steps to combat human trafficking", - "values": [ - "4 - General action" - ] - }, - { - "text": "Adopt all measures, as a matter of priority, to eliminate female genital mutilation", - "values": [ - "4 - General action" - ] - }, - { - "text": "Implement measures that strengthen the protection of the rights of children and adolescents in order to eradicate child labour and prohibit the sexual exploitation of children", - "values": [ - "4 - General action" - ] - }, - { - "text": "Further strengthen the protection of rights of vulnerable groups, like children, women, migrant workers and persons with disabilities", - "values": [ - "4 - General action" - ] - }, - { - "text": "Continue efforts aimed at reduction of the maternal mortality rate", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Immediately end the occupation of Georgia's region of Abkhazia and the Tskhinvali region as an overreaching method for numerous different forms of severe human rights violations therein", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Strengthen further the child protection system in the country through the necessary reforms, adopting a human-rights based approach", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Ratify the 1954 Convention relating to the Status of Stateless Persons ", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Join the moratorium established by General Assembly Resolution 62-149, as a preliminary step toward abolishing capital punishment", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Conduct environmental impact studies when granting mining concessions and promote prior consultation and transparency measures during these concessions", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Adopt all necessary measures to bring the perpetrators of all serious human rights violations in the country to justice ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Continue making progress in the implementation of measures to offer assistance and rehabilitation to persons displaced due to natural disasters", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Consider sharing its experience and best practices in its efforts to strengthen the human rights values in the society through relevant United Nations mechanisms ", - "values": [ - "3 - Considering action" - ] - }, - { - "text": "Take comprehensive measures to protect the rights of all national minorities, including the so-called erased people and promote their full integration into society", - "values": [ - "4 - General action" - ] - }, - { - "text": "Lift the infamous economic, commercial and financial blockade as well as liberate immediately the five Cubans held in prison for 12 years ", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Increase education programmes and awareness-raising of police officers in the field of human rights", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Continue its constructive engagement with civil society in its UPR process and on other human rights issues ", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Share with all United Nations members, particularly with developing countries, taking into account its sense of solidarity, Cuba's experiences in the promotion and protection of the right to health of millions of people around the world", - "values": [ - "1 - Minimal action" - ] - }, - { - "text": "Continue the existing efforts in order to provide better health services to all", - "values": [ - "4 - General action" - ] - }, - { - "text": "A review of federal and state legislation to restrict the number of offences carrying the death penalty and steps towards federal- and state-level moratoriums on executions with a view to its permanent abolition", - "values": [ - "3 - Considering action" - ] - }, - { - "text": "Decriminalize same-sex activity between consenting adults", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Lift restrictions on the right to freedom of assembly, in line with the ICCPR", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Accelerate the establishment of the national human rights institution in accordance with the Paris Principles", - "values": [ - "4 - General action" - ] - }, - { - "text": "Address the root causes of domestic violence in order to carry out awareness campaigns on violence against women and their rights, especially in rural areas", - "values": [ - "4 - General action" - ] - }, - { - "text": "Review and revise existing laws to ensure that they are nondiscriminatory, in accordance with international standards ", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Continue the reduction of maternal and infant mortality rates, and continue with the national plan for the development of children and youth", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Introduce a comprehensive definition of racial discrimination related to the constitutional provisions on equality and non-discrimination and measures taken", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Create programmes to combat traditional attitudes that treat sexual and psychological abuse as misdemeanours and continue to provide necessary services and support to victims ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Ensure that changes in the national legislation affecting the Human Rights Act do not result in weakening human rights protection mechanisms in the country", - "values": [ - "4 - General action" - ] - }, - { - "text": "Accede to and fully align national legislation with the Rome Statute of the International Criminal Court", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Continue its tremendous efforts to improve the level of protection and services provided for pilgrims", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Improve the access to justice for victims of sexual and gender-based violence, enhance the capacity of the police to investigate cases of sexual and gender-based violence and enact the relevant legislation, including the Domestic Violence Act", - "values": [ - "4 - General action" - ] - }, - { - "text": "Intensify its efforts to eliminate discrimination against migrant, black, Muslim and other minority women, who still face multiple forms of discrimination ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Recommended that the national action plan on human rights reflect concrete steps towards the ratification of the ICCPR", - "values": [ - "4 - General action" - ] - }, - { - "text": "Take all the necessary measures to restore the State authority", - "values": [ - "4 - General action" - ] - }, - { - "text": "Ensure that all acts of torture are crimes according to national legislation, and that the definition used complies with that set out in article 1 of CAT", - "values": [ - "4 - General action" - ] - }, - { - "text": "Tackle the subject of torture in a comprehensive way, including by fighting impunity and providing for compensation of victims", - "values": [ - "4 - General action" - ] - }, - { - "text": "Continue to combat all forms of discrimination against women ", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Continue the efforts to promote the right to health, in particular by giving priority to primary health care and by strengthening the attention paid to mental health problems. Likewise, promote the right to health of persons with disabilities and lesbian, gay, bisexual, transgender and intersex persons", - "values": [ - "4 - General action" - ] - }, - { - "text": "Respect the rights to freedom of expression, association and assembly by allowing human\nrights defenders, political dissidents and journalists to express their views freely in line with\ninternational human rights law", - "values": [ - "4 - General action" - ] - }, - { - "text": "Continue its efforts to improve the situation of the Roma population ", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Decriminalize sexual relations between consenting adults of the same sex, and carry out legislative and administrative measures prohibiting discrimination based on sexual orientation, especially with regard to access to employment, education and housing ", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Adopt appropriate measures with a view to integrating women more in economic activities and guarantee them the right to equal treatment and equal pay for work of equal value", - "values": [ - "4 - General action" - ] - }, - { - "text": "End the practice of using defamation lawsuits and other legal and administrative actions to censor, fine, and imprison individuals for speaking or writing on political issues, and remove all discriminatory media guidelines", - "values": [ - "4 - General action" - ] - }, - { - "text": "Step up its efforts in fighting domestic violence and take measures to prevent secondary victimization and the negative impact of domestic violence on children", - "values": [ - "4 - General action" - ] - }, - { - "text": "Continue reforming the judiciary system", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Accede to the International Convention on the Protection of the Rights of All Migrant Workers and Members of Their Families ", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Adopt the law on human trafficking", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Design training programs on human rights for police and security forces, to guarantee better protection of human rights standards", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Enact and enforce legislation to afford legal protection from violence and discrimination to all its citizens, including women, girls, the lesbian, gay, bisexual, transgender and intersex community and religious minorities, including through effective prosecutions in accordance with the rule of law", - "values": [ - "4 - General action" - ] - }, - { - "text": "Devote attention to education and awareness-raising in the area of international humanitarian law and on human rights principles generally among the members of Government army and security forces as well as the AMISOM peacekeeping force ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Accept a visit to the country from the Special Rapporteur on torture and other cruel, inhuman or degrading treatment or punishment", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Endeavour to implement the remaining recommendations of the previous and present UPR process", - "values": [ - "4 - General action" - ] - }, - { - "text": "Support the active participation of non-governmental organizations and other civil society representatives in the work of the Council", - "values": [ - "4 - General action" - ] - }, - { - "text": "Strengthen efforts aimed at ratifying the International Convention for the Protection of All Persons from Enforced Disappearance", - "values": [ - "4 - General action" - ] - }, - { - "text": "Continue efforts in providing full access to health services for the general population", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Strengthen efforts with regard to timely reporting to United Nations human rights treaty bodies, and especially submit its second report to the Human Rights Committee as soon as possible.", - "values": [ - "4 - General action" - ] - }, - { - "text": "In order to further preserve and protect their local culture and national heritage, accede to the UNESCO Conventions on the Safeguarding of the Intangible Cultural Heritage and the Protection and Promotion of the Diversity of Cultural Expressions ", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Ratify the Optional Protocol to the Convention on the Elimination of all Forms of Discrimination against Women ", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Initiate an awareness-raising campaign for the society at large to ensure a more generalized tolerance.", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Continue to implement the National Strategy for Long-Term Development "Angola 2025"", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Stay strongly committed to the topic and further discussion leading to an amendment of the Constitution prohibiting discrimination based on sex and gender.", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Ensure that all legal standards are in conformity with the Convention on the Elimination of All Forms of Discrimination against Women and actively fight against the practice of female genital mutilation", - "values": [ - "4 - General action" - ] - }, - { - "text": "Continue to increase investments in education to improve the enrolment rate ", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Intensify efforts to recognize and highlight the contribution of women to national economic, social and political development, lift women out of poverty and provide victims of violence against women with adequate protection and recourse to justice", - "values": [ - "4 - General action" - ] - }, - { - "text": "Further promote the country's economic recovery, through reducing poverty and considerably improving infrastructure in service delivery", - "values": [ - "4 - General action" - ] - }, - { - "text": "Take specific and additional measures aimed at strengthening its national unity and internal domestic security and fostering cooperation in order to disseminate the culture of social peaceful coherence and guarantee freedom of expression that ensures social justice among all components of society", - "values": [ - "4 - General action" - ] - }, - { - "text": "Pursue the cooperation with international human rights mechanisms", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "To put in place measures to increase access to education for all children and improve the educational infrastructure and quality of education", - "values": [ - "4 - General action" - ] - }, - { - "text": "Consider widely disseminate information on the provision of CEDAW to the publics through education system, awareness-raising campaigns and gender sensitivity training", - "values": [ - "3 - Considering action" - ] - }, - { - "text": "Adopt laws prohibiting female genital mutilation and take focused measures to ensure that such practices are dropped as a result of broader awareness-raising campaigns.", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Take steps to establish a National Human Rights Institution in full compliance with the Paris Principles", - "values": [ - "4 - General action" - ] - }, - { - "text": "Continue with measures to improve the situation of asylum seekers and refugees ", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Encourage the participation of public and private sectors and non-governmental organizations in the efforts towards poverty eradication, among other by creating more employment opportunities and providing human resources skills and training", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Persevere in implementing its Action Plan and ensure its wide dissemination among the local population, in all the official languages of the country", - "values": [ - "4 - General action" - ] - }, - { - "text": "Ensure complete separation of remand and sentenced prisoners, juvenile and adult prisoners and detained immigrants", - "values": [ - "4 - General action" - ] - }, - { - "text": "Continue efforts to improve access to health care, in particularly to combat malaria, HIV/AIDS and tuberculosis", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Prohibit all forms of discrimination, including discrimination on the basis of sexual orientation and gender identity", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Take measures against arbitrary or illegal interferences in private life and correspondence", - "values": [ - "4 - General action" - ] - }, - { - "text": "Ratify the Second Optional Protocol to the International Covenant on Civil and Political Rights, with the ultimate aim of abolishing the death penalty in all circumstances", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Continue increasing skills development programmes to public officers and staff, hospital staff and police officers on how to assist persons with disabilities as well as children with special needs", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Pursue constitutional reforms with a view to elaborate coherent criminal legislation at federal level", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Take necessary measures for the improvement of the conditions of prisons and places of detention", - "values": [ - "4 - General action" - ] - }, - { - "text": "Grant a legal rank to the ICESCR that allows its provisions to be directly invoked in the domestic legal system", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Accelerate efforts providing maternal and child health services, as well as to significantly reduce under five child mortality rates", - "values": [ - "4 - General action" - ] - }, - { - "text": "Continue to seek assistance from the United Nations system and the international community in order to promote human rights awareness throughout the country ", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Effectively implement the anti-trafficking law and provide resources and training for government officials", - "values": [ - "4 - General action" - ] - }, - { - "text": "Continue efforts in the submission of periodic reports, including by utilizing the potential offered by international cooperation and technical assistance ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Submit its pending reports to the relevant treaty bodies.", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Strengthen measures to protect children from the worst forms of labour, and ensure full implementation of the Children's Protection and Welfare Act", - "values": [ - "4 - General action" - ] - }, - { - "text": "Continue building the social structure of the country, focusing on the promotion and protection of the family as the vital unit of the society", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Commute all death sentences to terms of imprisonment", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Exert further efforts to adopt the draft law submitted to parliament on full equality between women and men in the area of social insurance and tax law, the draft law on the lifting of restrictions on the assets of wives whose spouses are declared bankrupt, and the draft law on the protection of women from domestic violence", - "values": [ - "4 - General action" - ] - }, - { - "text": "Accord priority to the ratification of ICCPR", - "values": [ - "4 - General action" - ] - }, - { - "text": "Amend or repeal the Public Order and Security Act", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Sign and ratify the Optional Protocol to International Covenant on Economic, Social and Cultural Rights, allowing for individual complaints of alleged violations of these rights to be heard by the Committee on Economic, Social and Cultural Rights ", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Continue to enhance gender equality and the empowerment of women", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Raise the age of criminal responsibility as proposed in the model Child Justice Bill of the OECS from 2007", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Achieve real progress with regard to women's rights by reforming the Nationality Act, to ensure gender equality and to give Qatari women the right to transmit their nationality to their children, and by withdrawing reservations to the Convention on the Elimination of All Forms of Discrimination against Women and the Optional Protocol thereto ", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Take further measures to ratify CRPD", - "values": [ - "4 - General action" - ] - }, - { - "text": "Continue to develop a national strategy for human rights education in the school system at all levels, in accordance with the Plan of Action 2005-2009 of the World Programme for Human Rights Education, including the review and revision of curricula and textbooks, the training of teachers and the practice of human rights in the school community", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "End the inhuman blockade of Gaza", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Make efforts to guarantee gender wage equality, including those aimed at women\u2019s access to management positions", - "values": [ - "4 - General action" - ] - }, - { - "text": "Pursue efforts aimed at ensuring an inclusive education within the framework of the National Plan on Education 2014-2014, in particular in rural areas", - "values": [ - "4 - General action" - ] - }, - { - "text": "Consider ratifying the International Covenant on Civil and Political Rights and its Second Optional Protocol, aiming at the abolition of the death penalty", - "values": [ - "3 - Considering action" - ] - }, - { - "text": "Ratify ICRMW, as a fundamental step towards the protection of human rights in the country", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Continue to cooperate in a sustained manner with the Special Procedures and the OHCHR field office in order to guarantee universal human rights standards to its people ", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Continue its efforts aimed at combating the gender gap by ensuring that girls have equal access to school, especially in rural areas", - "values": [ - "4 - General action" - ] - }, - { - "text": "The Government was committed to reducing the time taken to process applications for citizenship to an average of six months", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Ratify OP-ICESCR, and accept its investigation and inter-State communications mechanisms", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Ensure the legal recognition of conscientious objection to military service", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Undertake the necessary legislative measures to criminalize domestic violence", - "values": [ - "4 - General action" - ] - }, - { - "text": "Re-examine the Mining Act of 1995 with a view to reinforcing its environmental provisions and sustainable development practices, which will help the mining industry to become one of the main contributors to the country\u2019s wealth", - "values": [ - "3 - Considering action" - ] - }, - { - "text": "Take further steps to ensure more participation of Sri Lankan Muslims in the reconciliation process and national efforts of economic, social, and cultural integration", - "values": [ - "4 - General action" - ] - }, - { - "text": "Implement without any delay the recently presented action plan to improve the security and well-being of people with albinism", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Consider accession to ICCPR, ICESCR, CAT and other core human rights treaties\n\n", - "values": [ - "3 - Considering action" - ] - }, - { - "text": "Take appropriate action to guarantee freedom of expression, association and assembly - including by allowing the participation of opposition parties and civil society ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Take further measures to combat ill-treatment of prisoners and detainees by the police, including improved police training, intensified courses on practical aspects of police ethics and specialized courses on hate crime investigation", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Conduct a thorough, prompt and impartial investigation on the assassinations of journalists and human rights defenders including those as referred to in paragraphs 18, 21, 24 and 58 of the report, and bring the perpetrators to justice", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Support the efforts to promote and protect the rights of vulnerable groups such as children, women, disabled persons and the elderly ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Continue to take measures to prevent child trafficking, sexual exploitation and sale of children, child prostitution and child pornography", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Accede, as soon as possible, to the human rights international instruments to which it is not yet a party", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Take concrete measures to facilitate and ensure access to humanitarian assistance, especially for affected civilians and vulnerable groups in conflict areas", - "values": [ - "4 - General action" - ] - }, - { - "text": "Provide, with the support of the international community, the various initial and periodic reports", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Enhance its efforts to curb hate speech in the media while investigating and appropriately sanctioning the perpetrators for such hate speeches ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Abolish the death penalty and accede to the Second Optional Protocol to the International Covenant on Civil and Political Rights", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Channel its efforts into implementing poverty-alleviation strategies, particularly in suburban and rural areas ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Adopt as a matter of priority the Code of Criminal Procedure and promote the training of justice officials", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Continue its efforts in the fight against HIV by adopting a comprehensive national policy to deal with the epidemic and diseases that are sexually transmitted and tuberculosis", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Continue efforts to strengthen the national human rights architecture.", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Consider establishing an independent national human rights institution in conformity with the Paris Principles and set up an independent human rights structure to receive human rights complaints from individuals", - "values": [ - "3 - Considering action" - ] - }, - { - "text": "Consider submitting an interim report on the implementation of UPR recommendations", - "values": [ - "3 - Considering action" - ] - }, - { - "text": "Continue to engage its partners with the view to build capacity and mobilize resources in support of its development efforts and in fulfilling its human rights obligations", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Ratify the convention to combat discrimination in the area of education", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Rapidly complete the process of considering ratifying OP-CAT", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Take measures to guarantee the exercise of the right to freedom of association and peaceful assembly and to promote and facilitate the activities of NGOs", - "values": [ - "4 - General action" - ] - }, - { - "text": "Continue addressing accountability issues and implementation of the LLRC Action Plan as planned", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Continue its efforts to reduce and eradicate gender-based violence, by ensuring due diligence in the prosecution and trial of those who commit acts of this nature and by providing adequate training to the relevant authorities regarding the protection from and prevention of violence against women and girls", - "values": [ - "4 - General action" - ] - }, - { - "text": "Ensure provision and adequate and timely assistance, including judiciary assistance and interpreters, to victims of sexual exploitation, both women and children, or other gender-based violence, regardless of their nationality, race or origins", - "values": [ - "4 - General action" - ] - }, - { - "text": "The Government is committed to providing an inclusive society for senior citizens. Furthermore, the Government has committed FJD 4 million towards a food voucher scheme to assist senior citizens.", - "values": [ - "4 - General action" - ] - }, - { - "text": "Take appropriate measures to reform its penal code", - "values": [ - "4 - General action" - ] - }, - { - "text": "Strengthen the supervision of prisons and detention facilities by allocating sufficient resources for that purpose, and increase efforts to improve their conditions so as to comply with international standards ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Follow-up on the implementation of guidelines to strengthen the promotion and protection of children's rights", - "values": [ - "4 - General action" - ] - }, - { - "text": "Establish a strategy to eliminate cultural practices against women ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Combat human trafficking and forced labour through the establishment of systematic and regular monitoring mechanisms", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Design policies and programmes aimed at combating harmful traditional practices, in particular female genital mutilation", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Ensure protection of refugees, migrants and members of their families, including their social integration in line with international standards ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Take the necessary measures to guarantee its citizens' right to equality before the law, to be presumed innocent until proven guilty, and to a fair and public trial, as well as the right to freedom from arbitrary arrest or detention ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Extend a standing invitation to the special procedures of the Human Rights Council ", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Intensify training and information programmes for law enforcement officials to ensure full respect for human rights during the performance of their duties ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Take all measures to ensure the independence, including financial, and the effectiveness of the national human rights institution and to protect it from all forms of pressure or reprisal in connection with its work to promote and protect human rights", - "values": [ - "4 - General action" - ] - }, - { - "text": "Establish appropriate policies to account for and remedy any deficiencies in the application of the Family Protection Act of 2014 and adopt a strategy involving civil society in combating and eliminating domestic violence, sexual abuse and any other form violence against women", - "values": [ - "4 - General action" - ] - }, - { - "text": "Accede to CEDAW, without reservations that could be incompatible with the object and purpose of this Convention", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Remove from its Religious Organizations Law prohibition on unregistered religious activities, and undue restrictions on religious material, education and attire ", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Further progress to overcome the causes of extreme poverty, a major factor in the cases of juvenile delinquency and human trafficking, especially of the young by a firm implementation of the 2013 national policy on trafficking in persons", - "values": [ - "4 - General action" - ] - }, - { - "text": "Improve the penitentiary system and the situation of detainees ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Extend an open-ended invitation to all Special Procedures of the Human Rights Council ", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Take all necessary measures to enhance the effectiveness of its national policy on the rights of persons with disabilities", - "values": [ - "4 - General action" - ] - }, - { - "text": "Accelerate the process of establishing the national institution for the protection of human rights in conformity with the Paris Principles ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Take forward and complete, with political stakeholders, the electoral process as a matter of urgency", - "values": [ - "4 - General action" - ] - }, - { - "text": "Consider as soon as possible, compiling statistical data on sexual offences against children and putting in place a registry of persons convicted of such offences", - "values": [ - "3 - Considering action" - ] - }, - { - "text": "Establish a national institution in accordance with the Paris Principles, providing it with the necessary technical and financial resources and request technical cooperation from the Office of the High Commissioner for Human Rights ", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Continue to take concrete measures to prevent violence and sexual offences against women and children and to ensure the prosecution of perpetrators of such violence", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Measurably improve access to the legal system for Roma and other groups facing discrimination and carry out a campaign to increase awareness among these minorities of their rights and means of redress when infringement occurs", - "values": [ - "4 - General action" - ] - }, - { - "text": "Take all necessary steps to address the concerns expressed by civil society in the Slovakian national report through necessary policy and implementation reforms.", - "values": [ - "4 - General action" - ] - }, - { - "text": "Improve the quality of maternity services in urban and rural areas, increase the proportion of children born in hospitals and reduce the child mortality rate", - "values": [ - "4 - General action" - ] - }, - { - "text": "Bring the 2009 Press and Publications Act and all other relevant legislation in line with international and constitutional obligations to protect the right to freedom of expression", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Facilitate visits by all special procedures mandate holders outstanding since 2005, and extend an invitation to the Secretary-General so that he may investigate the post-election violence and independently assess the human rights situation", - "values": [ - "4 - General action" - ] - }, - { - "text": "While finalizing the new law on administrative and territorial division, take into full account the European Charter of Local Self- Government of the Council of Europe and article 108, paragraph 2, of the Albanian Constitution ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Investigate and prosecute incidents of sexual violence perpetuated by both parties to the conflict", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Consolidate all human rights efforts through, inter alia, developing a comprehensive national human rights action plan", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Ensure that any law governing the Internet is in compliance with the international human rights obligations of Viet Nam as a State party to ICCPR ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Continue its positive efforts aimed at raising the status of women in the society, protecting maternity and supporting the family ", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Acceded to the First Optional Protocol to the International Covenant on Civil and Political Rights and the Optional Protocol to the Convention on the Elimination of All Forms of Discrimination against Women and the Optional Protocol to the Convention against Torture ", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Continue the implementation of the national strategic action plan 2012-2016 on persons with disabilities", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Ensure an independent judiciary that operates without political interference by the State and uphold an internationally recognized notion of the rule of law by reviewing and amending the constitutional and legislative provisions that may compromise or diminish the independence and impartiality of the judiciary, as recommended by the Committee on Economic, Social and Cultural Rights ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Conduct impartial investigations and prosecutions against members of the security forces, regardless of rank, implicated in violations of human rights and international humanitarian law, including sexual violence", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Provide systematic training to judges, prosecutors and lawyers on the application of legislation prohibiting discrimination and violence against women", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Consider the ratification of other core international human rights instruments, in particular the International Covenant on Civil and Political Rights, the Convention on the Elimination of All Forms of Racial Discrimination, the International Convention on the Protection of the Rights of\nAll Migrant Workers and Members of Their Families, and the Convention against Torture and Other Cruel, Inhuman or Degrading Treatment or Punishment \n", - "values": [ - "3 - Considering action" - ] - }, - { - "text": "Continue to strengthen 15 sectors identified for effective implementation of the Sustainable Development Goals ", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Adopt the necessary legislative instruments for the implementation of the Mental Health Act", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Continue strengthening the social protection programmes adopted for persons with disabilities ", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Proceed with the efforts aimed to restore security and achieve national reconciliation, as they are considered two conditions for any serious national project aiming to promote human rights ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Address the due identification and processing of those guilty of human rights violations in conflict situations", - "values": [ - "4 - General action" - ] - }, - { - "text": "Conclude its procedure for the ratification of the International Convention for the Protection of All Persons from Enforced Disappearance", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Guarantee the right to freedom of assembly and of association in accordance with international obligations ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Continue implementing the policy of free, public, compulsory education, redefining the length and cycles, including by allocating sufficient budget and resources", - "values": [ - "4 - General action" - ] - }, - { - "text": "Ensure that the amended press law complies with ICCPR and that the legal framework allows the existence of privately owned media.", - "values": [ - "4 - General action" - ] - }, - { - "text": "Proceed as soon as possible to the establishment of a national human rights institution in conformity with the Paris Principles", - "values": [ - "4 - General action" - ] - }, - { - "text": "Make every effort to fulfil its voluntary pledges to include a definition of torture enshrined in CAT into the national Criminal Code ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Lift unnecessary restrictions on the granting of visas, in particular multiple entry visas, to members of the Christian clergy in the exercise of their religious duties.", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Ensure that federal legislation provides adequate protection for women and children, including by criminalizing violence in line with obligations under international human rights law", - "values": [ - "4 - General action" - ] - }, - { - "text": "Review the personal status legislation and the Penal Code in order to modify or delete articles that discriminate against women, to comply with the Constitution, as well as international law, and work to lift the reservation on article 16 of CEDAW", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Take measures with a view to preventing and combating of arbitrary arrest, violence, abuse and exploitation of migrants ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Promote judicial independence and strengthen the rule of law by ensuring that key institutions such as the Constitutional Tribunal and the Supreme Court operate in a free, fair and transparent manner and serve as an effective and independent check on the executive and legislative branches", - "values": [ - "4 - General action" - ] - }, - { - "text": "Continue negotiations with a view to peacefully settling the remaining stipulations of the CPA, particularly with regard to issues like border demarcation, foreign debts, oil and water sharing and citizenship, with the understanding that nobody will be stateless", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Act on the promise made by the President in 2004 to reform the press law and to eliminate prison terms for press offences ", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Involve indigenous peoples and peasant communities in the implementation and planning of projects related to the extractive sector", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Continue to strengthen its efforts to promote and protect fundamental freedoms and rights guaranteed under ICCPR ", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Put in place a comprehensive strategy to ensure that all children have equal access to education ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Consider ratifying the Convention against Torture", - "values": [ - "3 - Considering action" - ] - }, - { - "text": "Continue efforts aimed at combating trafficking of human beings ", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Further promote inter-ethnic harmony and tolerance, particularly with regard to the Serb and Roma minorities ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Continue to respond to the previous recommendations by several Special Rapporteurs to ensure that its policies and practices regarding the dismantling of Roma settlements and the expulsion of migrant Roma conform in all respects to European and international human rights law ", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Ensure that all criminal law provisions, including Section 244A of the Criminal Code, which imposes harsh penalties for a wide range of legitimate expression, are fully consistent with the enjoyment of the right to freedom of opinion and expression and the right to freedom of peaceful assembly and association", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Establish an institutional framework which protects the rights of the child and guarantees implementation of these rights ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Make every effort to repeal the application of the death penalty", - "values": [ - "4 - General action" - ] - }, - { - "text": "Further strengthen the child rights protection system by bringing the national legislation in line with the provisions of the Convention on the Rights of the Child", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Guaranty the compliance of Guatemala's legislation with the provisions of ICEDAW", - "values": [ - "4 - General action" - ] - }, - { - "text": "Recommended follow-up to the recommendations of the Committee on the Elimination of Racial Discrimination and to ensure that the rights of migrants are respected, particularly by law enforcement officials. ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Development of a comprehensive and uniform compensation policy for the displaced and dispossessed.", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Adopt legislative measures strengthening the protection of unaccompanied foreign minors", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Do more to ensure that the hard-fought freedom of expression is guaranteed by the government and protected under Iraqi laws and Iraqi courts", - "values": [ - "4 - General action" - ] - }, - { - "text": "Adopt prompt measures aimed at ensuring an adequate assessment of the need for solitary confinement in each case of police detention, as well as ensuring a stricter implementation of the 48 hours statutory limit to the use of such a short term public order measure ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Improve the investigation of cases of violence against human rights defenders and journalists and publicly acknowledge the importance of human rights defenders in achieving a pluralistic and democratic society", - "values": [ - "4 - General action" - ] - }, - { - "text": "Consider the possibility of acceding to the 1951 Convention relating to the Status of Refugees and its 1967 Protocol, in the spirit of the tradition in Nepal of hosting refugees ", - "values": [ - "3 - Considering action" - ] - }, - { - "text": "Continue to consider ratification of international instruments", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Continue efforts to promote gender equality in combating discrimination and violence against women and girls, in particular domestic violence and early marriages", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Facilitate complaints from victims of gender-based violence and their access to justice, prosecute and punish the perpetrators and protect the victims", - "values": [ - "4 - General action" - ] - }, - { - "text": "Call for the assistance of the High Commissioner for Human Rights, in particular to facilitate the timely submission of its periodic reports to treaty bodies ", - "values": [ - "1 - Minimal action" - ] - }, - { - "text": "Make further efforts to achieve equal and universal access to education", - "values": [ - "4 - General action" - ] - }, - { - "text": "Further elaborate and integrate a gender perspective in the national education system ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Make further efforts and set specific targets to decrease the number of incidents in particular through mechanisms and institutions protecting women from domestic violence.", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Put in place a specific mechanism for implementing previous accepted recommendations", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Consider ratifying the Optional protocol to Convention on the Rights of the Child ", - "values": [ - "3 - Considering action" - ] - }, - { - "text": "Increase its efforts, to fight effectively against trafficking in human beings, in particular sex tourism involving children and to adopt the draft law on the protection of domestic workers ", - "values": [ - "4 - General action" - ] - }, - { - "text": "That any draft law that infringes fundamental human rights and violates commitments of Ukraine to international human rights law like the European Convention on Human Rights and the ICCPR be recalled", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Take concrete measures in order to ensure that any interference with the right to privacy comply with the principles of legality, proportionality and necessity, regardless of the nationality or location of the individuals affected", - "values": [ - "4 - General action" - ] - }, - { - "text": "Review and update its anti-hate speech legislation to provide equal protection to all religious minorities ", - "values": [ - "3 - Considering action" - ] - }, - { - "text": "Comply with the judgements of the European Court of Human Rights concerning violations of human rights in the areas of Cyprus that are under effective control of Turkey", - "values": [ - "4 - General action" - ] - }, - { - "text": "Increase its budget allocation for indigenous peoples ", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Increase its effort in promoting women's empowerment and capacity building through public awareness, education and skill training ", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Ratify the International Convention on the Protection of the Rights of all Migrant Workers and Members of their Families ", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Consider abolishing the death penalty and ratifying the Rome Statute of the International Criminal Court, at its earliest convenience", - "values": [ - "3 - Considering action" - ] - }, - { - "text": "Adopt legislative measures that would prohibit public funding of parties that engage in propaganda of racism and xenophobia", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Ratify the Convention against Torture and Other Cruel, Inhuman or Degrading Treatment or Punishment and its Optional Protocol, the Convention on the Rights of Persons with Disabilities, the International Convention on the Protection of all Persons from Enforced Disappearance and the Rome Statute ", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Continue improving the quality of education for all, including indigenous children, through the provision of more infrastructure, educational materials and learning tools", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Reform the penitentiary system and resolve the problems of prison overcrowding", - "values": [ - "4 - General action" - ] - }, - { - "text": "Repeal the anti-sodomy law, which criminalizes the private consensual conduct of gay men", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Complete the ratification process of the Council of Europe's "Istanbul Convention"", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Take further measures to ensure that rights of children deprived of their liberty are fully protected, including by ensuring that children shall be deprived of their liberty only as a measure of last resort and for the shortest appropriate period of time ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Enact the Freedom of Information bill, and repeal laws that that provide criminal penalties for libel ", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Facilitate immediate access for victims of sexual violence to available services", - "values": [ - "4 - General action" - ] - }, - { - "text": "Prevent and pursue through the judicial process, all violent acts against religious and tribal minorities, Dalits and other casts ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Intensify efforts to investigate and prosecute perpetrators of child sexual abuse and provide specialized assistance to victims ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Ratify CAT and OP-CAT", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Allow independent monitors to access all Eritrean detention facilities and ensure that international standards of law in the treatment of prisoners are respected in Eritrea ", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Pursue appropriate measures to effectively prevent torture and illtreatment, ensuring that all alleged cases of torture are credibly and independently investigated and prosecuted, providing due redress to victims ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Ensure that legislation on consultation with indigenous groups is well-formed, takes into account indigenous peoples' concerns, and is effectively implemented", - "values": [ - "4 - General action" - ] - }, - { - "text": "Remove barriers prohibiting scheduled castes and schedule tribes from registering their children\u2019s births and obtaining birth certificates", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Take effective measures aimed at reinforcing the capacities and the independence of the justice system, and to facilitate visits by the Special Rapporteur on the independence of judges and lawyers", - "values": [ - "4 - General action" - ] - }, - { - "text": "Reinforce the schooling of persons with disabilities", - "values": [ - "4 - General action" - ] - }, - { - "text": "Strengthen its legal framework and mechanism for promoting and protecting the human rights of its population", - "values": [ - "4 - General action" - ] - }, - { - "text": "Reform the detention system to bring it in line with international standards, including by implementing safeguards such as electronic recordings of the entire interrogation process, and ensuring that detainees are not questioned without the presence of a lawyer and have prompt and unhindered access to legal counsel", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Continue strengthening access to education, in particular, to orphans, children with disabilities and children of missing parents", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Continue its efforts in the area of protection of the environment and natural resources by effectively implementing Law 42/2014", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Improve the conditions of detention in police stations and prisons and effectively investigate credible allegations of abuse, consistent with the Convention against Torture and Other Cruel, Inhuman or Degrading Treatment or Punishment", - "values": [ - "4 - General action" - ] - }, - { - "text": "In conformity with article 77 of the ICRMW, recognize the competence of the Committee to receive and consider communications which allege violations of individual rights recognized by this Convention ", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Take the necessary measures to prevent outlawing or penalizing legitimate and peaceful activities or social demands by indigenous organizations and peoples and reinforce the notion that the Anti-Terrorism Act is to be applied only within its scope and not to acts related to non-violent claims of indigenous peoples, taking into account the recommendations of the Human Rights Committee.", - "values": [ - "4 - General action" - ] - }, - { - "text": "Improve the conditions in administrative detention centres and ensure that the open centres meet adequate standards of living at all times", - "values": [ - "4 - General action" - ] - }, - { - "text": "Continue to improve women's socio-economic condition in line with the recent reforms undertaken by the government ", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Put an end to corporal punishment in all settings", - "values": [ - "4 - General action" - ] - }, - { - "text": "Closely monitor the situation of other disadvantaged groups such as women migrant workers, women prisoners and victims of trafficking", - "values": [ - "4 - General action" - ] - }, - { - "text": "Renew the mandate of the National Disabilities Council", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Complete the updating of legislation by decriminalizing homosexual relations between consenting adults", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Issue a standing invitation to the special procedures ", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Increase human rights training and awareness-raising programmes for prosecution and judicial officers and the media", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Make the necessary constitutional and legislative amendments to implement its National Domestic Violence Policy with a view to end violence against women and girls", - "values": [ - "4 - General action" - ] - }, - { - "text": "Expand the legal coverage to protect against sexual harassment and intensify public awareness-raising campaigns in the field of violence against women", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Continue focusing its efforts to carry out its plan for national reconstruction, allowing citizen participation and paying special attention to the most vulnerable sectors of society ", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Implement the human rights provisions contained in the core treaties and take advantage of the technical assistance that has already been offered to it ", - "values": [ - "4 - General action" - ] - }, - { - "text": "That anti-minority attacks be publicly condemned by authorities, and that such attacks are investigated in order to bring the perpetrators to justice ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Establish a definition of the child in accordance with the Convention on the Rights of the Child as well as incorporate the principle of the best interests of the child in the Constitution", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Re-establish a moratorium with a view to abolishing the death penalty", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Continue efforts with a hope of establishing a national human rights institution in line with the Paris Principles", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Adopt appropriate measures to counter discrimination of LGBT people and to develop policies in order to integrate existing legislation against discrimination at various societal levels in Romania", - "values": [ - "4 - General action" - ] - }, - { - "text": "Take effective measures to prohibit the use of corporal punishment for minors in schools", - "values": [ - "4 - General action" - ] - }, - { - "text": "Guarantee, explicitly, equal rights before the law for non-citizens", - "values": [ - "4 - General action" - ] - }, - { - "text": "Consider the issuance of a standing invitation to special procedures mandate holders", - "values": [ - "3 - Considering action" - ] - }, - { - "text": "Sign and ratify the International Convention for the Protection of All Persons from Enforced Disappearance.", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Continue to promote and support programmes such as the Jobs Access Gateway to equip persons with disabilities with the appropriate skills to secure gainful employment", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Ensure transparency and impartiality in the appointment process of judges, implementing clear procedures and objective criteria and ensure that judicial staff are not subject to political interference", - "values": [ - "4 - General action" - ] - }, - { - "text": "Pending abolition, establish an independent and impartial body to conduct a review of all cases of persons sentenced to death, with a view to commuting the death sentences or at least ensuring fair trials that fully comply with international standards", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Intensify its efforts to eliminate discrimination against migrants and other minority women, who still face multiple forms of discrimination with respect to education, health, employment and social and political participation ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Fully recognize the right of conscientious objection to military service without discrimination as to the religion or belief on which the objection is based, and provide civilian alternative service compatible with international standards ", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Continue efforts to strengthen legal framework, including considering ratification of the International Convention on the Protection of the Rights of All Migrant Workers and Members of their Families", - "values": [ - "3 - Considering action" - ] - }, - { - "text": "Refrain from introducing and/or repeal any legislation that criminalizes sexual activities between consenting adults and take all necessary measures to prevent discrimination on the basis of sexual orientation and/or gender identity or expression", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Further enhance the environment for the development of civil society organizations, including in the areas of legal awareness-raising, advocacy and human rights monitoring", - "values": [ - "4 - General action" - ] - }, - { - "text": "Adopt comprehensive and integral legislation to eliminate discrimination and all forms of violence against women and to promote their advancement in all areas, including the economic area", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Take measures to ensure the effective protection of the human rights of refugees", - "values": [ - "4 - General action" - ] - }, - { - "text": "Implement the Protocol on fight against trafficking in human beings of the Ministry of Justice as well as adopt the new national strategy to prevent and combat trafficking in human being and to protect victims", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Continue to strengthen its cooperation with regional and international partners to pursue development programs to promote the socio-economic rights of its people", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Eliminate all forms of discrimination against Roma, migrants and asylum seekers ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Improve the situation of persons with disabilities", - "values": [ - "4 - General action" - ] - }, - { - "text": "Devise and implement an appropriate determination procedure to identify stateless persons within the Bahamas and afford them adequate protection", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Pursue awareness-raising activities on domestic violence, including prosecution and sentencing of the perpetrators", - "values": [ - "4 - General action" - ] - }, - { - "text": "Strengthen cooperation on the issue of refugees on the regional level, and focus on the most vulnerable groups or persons in the collective centres in order to find a just solution for them and close those centres", - "values": [ - "4 - General action" - ] - }, - { - "text": "Comply with the principles of international cooperation, as defined in Resolution 3074 of the General Assembly, for the extradition of persons accused of crimes against humanity ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Include in its criminal law the definition of rape and other crimes of a sexual nature, according to International Law", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Consider issuing a standing invitation to special procedures mandate holders", - "values": [ - "3 - Considering action" - ] - }, - { - "text": "Consolidate the measures aimed at combating violence against women and at achieving social reintegration of those women who are victims of human trafficking", - "values": [ - "4 - General action" - ] - }, - { - "text": "Extend a standing invitation to all Human Rights Council mandate holders", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Ensure inclusive quality education, including teacher training on pupils with special needs as well as mentoring and career guidance in order to decrease the amount of Roma students opting out early from the educational system", - "values": [ - "4 - General action" - ] - }, - { - "text": "Take steps to fully implement the 2007 Domestic Violence Act, inter alia by ensuring that effective and prompt investigations are carried out for any allegations of domestic violence and female genital mutilation, and that those responsible are brought to justice", - "values": [ - "4 - General action" - ] - }, - { - "text": "Review the existing mechanism and framework for handling allegations of excessive use of force, including the use of weapons by law enforcement officials, in order to ensure full compliance with the Convention against Torture ", - "values": [ - "3 - Considering action" - ] - }, - { - "text": "Strengthen efforts to stop extrajudicial killings and enforced disappearances in the country", - "values": [ - "4 - General action" - ] - }, - { - "text": "Exert more efforts to promote and protect the rights of Muslim minorities ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Introduce an immediate moratorium on the use of the death penalty with a view to its abolition ", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Intensively pursue current national priorities and strategies, with effective measures focusing on the rights to health, education, gender equality, social protection and women's participation in employment and sociopolitical progress", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Secure unlimited access and entirely satisfactory monitoring conditions for humanitarian organisations", - "values": [ - "4 - General action" - ] - }, - { - "text": "Strengthen literary programmes for women and girls living in rural communities", - "values": [ - "4 - General action" - ] - }, - { - "text": "Increase efforts to prevent sexual and gender violence, especially regarding groups at risk, such as child girls refugees, and decrease gender inequality through urgently improving legislation and educational programmes", - "values": [ - "4 - General action" - ] - }, - { - "text": "Take measures to decriminalize homosexuality and take special measures of non-discrimination with regard to lesbian, gay, bisexual, transgender and intersex persons", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Allow meaningful and confidential access for international groups to persons returned to the Lao People's Democratic Republic from Thailand", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Ensure access to joint and inclusive quality education, with special attention towards the Roma minority, persons with disabilities and LGBT issues", - "values": [ - "4 - General action" - ] - }, - { - "text": "Accelerate the process of ratification of the International Covenant on Civil and Political Rights and the International Covenant on Economic, Social and Cultural Rights, the International Convention on the Elimination of All Forms of Racial Discrimination and the Convention against Torture", - "values": [ - "4 - General action" - ] - }, - { - "text": "Expedite the necessary legislative reforms and set a concrete timeline towards ratification of the Convention on the Rights of Persons with Disabilities", - "values": [ - "4 - General action" - ] - }, - { - "text": "Consider signature and ratification of ILO Conventions No. 138 and 182. ", - "values": [ - "3 - Considering action" - ] - }, - { - "text": "Fully cooperate with regional and international human rights bodies ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Vigorously pursue reforms towards redressing gender inequalities in secondary schools", - "values": [ - "4 - General action" - ] - }, - { - "text": "After calling on all its partners to help Burundi with support of all kinds, the head of the delegation reaffirmed the Government's commitment to continuing its policy of strengthening the democratic process and the rule of law, expanding civil liberties and improving the protection of human rights", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Intensify its efforts to ensure that human rights are fully respected in the fight against terrorism.", - "values": [ - "4 - General action" - ] - }, - { - "text": "A thorough reform of the current penitentiary system which is obsolete and insufficient ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Revise and amend legislation, including the 2014 National Security Service Act and the 2015 Non-Governmental Organizations Act, which have been used to restrict the rights to freedom of expression, association and peaceful assembly ", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "New Zealand is fully committed to combating racism, racial discrimination, xenophobia and related intolerance, and remains supportive and actively engaged in global efforts to that end.", - "values": [ - "4 - General action" - ] - }, - { - "text": "Cooperate with the Human Rights Council and allow full access to the Commission of Inquiry in its territory", - "values": [ - "4 - General action" - ] - }, - { - "text": "A policy to combat trafficking in persons, based on prevention, prosecution and the international legal framework. In this connection, alongside the awareness-raising activities, the Government is paying particular attention to compliance with court judgements in cases of trafficking, the protection of victims and witnesses during legal proceedings, and the strengthening of partnerships with countries in the subregion through the exchange of information and mutual legal assistance", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Carry on with the consultations to ratify the major international human rights instruments", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Give the new Independent Commission of Investigations the necessary political support and operational resources to fulfil its mandate ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Effectively investigate hate crimes and violent attacks against individuals from vulnerable and marginalized groups, including ethnic and religious minorities, prosecute perpetrators as well", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Review its Equality Act in relation to gender identity and the rights of intersex persons in the context of rights to health services", - "values": [ - "3 - Considering action" - ] - }, - { - "text": "Facilitate the implementation of the mandate of the National Committee against Human Trafficking with concrete measures and avoid impunity", - "values": [ - "4 - General action" - ] - }, - { - "text": "Maintain and strengthen measures to enhance the promotion and protection of human rights ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Enact legislation to ensure the unhindered participation of persons with disabilities in the education system and in the labour market", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Review the legislation and national public policies regarding the rights of the child in the light of the Convention on the Rights of the Child and its Optional Protocols", - "values": [ - "3 - Considering action" - ] - }, - { - "text": "Take measures to provide for the representation of ethnic minorities in the government organs, organs and committees established in the new constitutions, and elected bodies, such as parliament", - "values": [ - "4 - General action" - ] - }, - { - "text": "Give high priority to the introduction of comprehensive and holistic measures to address all forms of violence against women and to protect its victims.", - "values": [ - "4 - General action" - ] - }, - { - "text": "Consider the possibility of ratifying the International Convention for the Protection of All Persons from Enforced Disappearance, and of accepting the competence of the relevant Committee", - "values": [ - "3 - Considering action" - ] - }, - { - "text": "Strengthen the national bodies responsible for ensuring the protection of persons with disability against all forms of violations that they may be subjected to and promote their full integration into society", - "values": [ - "4 - General action" - ] - }, - { - "text": "Study the possibility of signing and ratifying CED ", - "values": [ - "3 - Considering action" - ] - }, - { - "text": "Review its legislation in order to ensure that all legislation, including any laws regulating the internet access to information, comply with international human rights standards protecting freedom of expression and freedom of assembly", - "values": [ - "3 - Considering action" - ] - }, - { - "text": "Expand education and human rights training programmes so that these are included as well in the training for magistrates, judges, lawyers, and eventually in education and in general", - "values": [ - "4 - General action" - ] - }, - { - "text": "Implement the recommendations of the Constitutional Review Commission speedily", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Ensure that the trials of seven Baha'is are fair and transparent and conducted in accordance with international standards, and that Iran amend all legislation that discriminates against minority groups", - "values": [ - "4 - General action" - ] - }, - { - "text": "Offer cooperation and access to the Special Rapporteur on the situation of human rights in Eritrea ", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Continue to undertake measures to support and protect the rights of persons with disabilities", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Include sexual orientation and gender identity as one of the forbidden grounds for discrimination as well as amending the norms relating to the criminalization of homosexual conduct between consenting persons", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Abolish by law the use of corporal punishment in all settings", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Undertake a participatory process in the implementation of the UPR recommendations", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Uphold the human rights mechanisms and the special procedures", - "values": [ - "4 - General action" - ] - }, - { - "text": "Continue its endeavours in addressing the needs of the differently-abled with the aim of acceding to the UN CRPD in the near future", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Repeal all provisions that may be applied to criminalize sexual activity between consenting adults, and which are contrary to its commitment to equality and non-discrimination", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Continue to work towards improving the living conditions of the Roma population in general and, in particular, of vulnerable children", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Take as soon as possible the necessary measures to safeguard the rights of internally displaced persons and refugees, ensure the protection of the civilian population in accordance with international standards and give follow-up to the specific recommendations in this regard of the Human Rights Committee and the Representative of the Secretary-General on human rights of internally displaced persons.", - "values": [ - "4 - General action" - ] - }, - { - "text": "Consider improving assistance, including medical and social services, and shelter for trafficking victims, particularly women and children ", - "values": [ - "3 - Considering action" - ] - }, - { - "text": "Make the necessary legal, policy and practice-related changes to enable the ratification of the Council of Europe Convention on Preventing and Combating Violence against Women and Domestic Violence (Istanbul Convention) and dedicate sufficient resources to central, devolved and local authorities to ensure its effective implementation", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Ensure free and fair elections held peacefully in regular intervals and at all levels in accordance with international standards, conduct impartial investigation into allegations of excessive use of force by the police and arbitrary arrests during the elections and bring perpetrators to justice", - "values": [ - "4 - General action" - ] - }, - { - "text": "Continue to improve accessibility to education, especially in the post- conflict and underdeveloped areas", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Strengthen measures in order to ensure that all children have a valid birth certificate and deploy additional and more coordinated efforts to protect children from early and forced marriages ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Continue to work towards reducing the number of crimes subject to the death penalty ", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Provide the National Council for Reparations with financial and other resources.", - "values": [ - "4 - General action" - ] - }, - { - "text": "Carry out the electoral reforms proposed by the Supreme Court of Uganda and independent observers to ensure future elections can be held while respecting human rights", - "values": [ - "4 - General action" - ] - }, - { - "text": "Continue to promote programmes related to the strengthening of respect for human rights", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Establish national mechanisms to combat violence against women, especially in Darfur ", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Continue to investigate human rights violations, particularly enforced disappearances that occurred in the recent past, regardless of the time elapsed since the commencement of the crime. Ensure that all State officials, including judges and prosecutors, receive adequate, specific training on the International Convention for the Protection of All Persons from Enforced Disappearance and the obligations it imposes on States parties", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Take appropriate measures to prevent torture and to ensure that all allegations of torture are properly and independently investigated, and ensure that the law adopted to define torture is in accordance with article 1 of the Convention against Torture.", - "values": [ - "4 - General action" - ] - }, - { - "text": "Implement effectively the regulation on domestic workers and persons with similar status and provide the migrant workers with adequate protection from abuse in the part of employers ", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Continue to improve its education system and ensure access to quality education for all ", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Further strengthen its efforts in ensuring the protection of children's rights, including by fully implementing the 2013 Vulnerable Children Bill and by considering implementing the restorative justice principles to all children ", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Strengthen its cooperation with special procedure on reported cases of illegal arrest, fully respect the fundamental liberties of human rights defenders and train the police forces to respect human rights and non-violent techniques of maintaining order, and to prosecute the perpetrators of violence", - "values": [ - "4 - General action" - ] - }, - { - "text": "Ratify the Rome Statute of ICC", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Strengthen the children\u2019s health sector with adequate resources", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Take steps to submit overdue reports to treaty bodies", - "values": [ - "4 - General action" - ] - }, - { - "text": "Take all necessary measures to protect journalists from harassment and attacks and to ensure that all allegations of violence and intimidation of journalists are promptly and impartially investigated and perpetrators brought to justice", - "values": [ - "4 - General action" - ] - }, - { - "text": "Apply a national development policy which incorporates the Sustainable Development Goals, the creation of an enabling environment for economic growth and improved services for the most marginalized communities", - "values": [ - "4 - General action" - ] - }, - { - "text": "Develop and carry out a plan for implementation of the Anti-Discrimination Law, including positive and preventive actions. In particular, address discrimination based on gender identity and sexual orientation ", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Develop and implement a national plan of action to address violence afflicting indigenous women and girls, providing for an adequate reaction of authorities and a resolution to the root causes of the violence ", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Extend legal requirements of barrier-free access for persons with disabilities to private entities that provide goods and services to the public ", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Continue exercising its sovereign right of adopting national legislation and the penal code, including the application of the death penalty", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Take into consideration the possibility to amend its criminal code in order to abolish the death penalty", - "values": [ - "3 - Considering action" - ] - }, - { - "text": "Continue strengthening all human rights, particularly in the areas of eradicating poverty, promoting and protecting the rights of children and adolescents, and fighting against human trafficking", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Continue active cooperation with the international human rights monitoring mechanisms, including treaty bodies and special procedures of the for persons in detention, with involvement of public monitoring commissions ", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Accede to CAT in a timely manner as recommended by the Committee on the Elimination of Discrimination against Women in 2007.", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Take necessary steps to become a party to the International Convention on the Protection of the Rights of All Migrant Workers and Members of Their Families", - "values": [ - "4 - General action" - ] - }, - { - "text": "Review and update the Public Order and Security Act and the Private Voluntary Organizations Act to be in line with international human rights standards", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Amend laws that permit the compulsory acquisition of land by private businesses so that the expropriation is only permitted in the cases of necessary, proportionate and narrowly construed public interest, with strong procedural safeguards", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Better protect human rights defenders, in particular in rural areas, and foster dialogue between the Government and human rights organizations, using if necessary the mediation of the local OHCHR office.", - "values": [ - "4 - General action" - ] - }, - { - "text": "Extend its human rights awareness programme to all sections of the population", - "values": [ - "4 - General action" - ] - }, - { - "text": "Introduce law that will criminalize use of children in military actions ", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Continue to extend its State scholarship programmes to ensure that students do not drop out of school because of poverty ", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Undertake all necessary measures to prevent unlawful treatment by law enforcement bodies, in particular against foreigners and German citizens of foreign origin ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Intensify its efforts to prevent incidents of sexual and gender-based violence within refugee communities and convict the perpetrators of such crimes", - "values": [ - "4 - General action" - ] - }, - { - "text": "Ratify the main international human rights instruments, including ICCPR, ICESCR, ICERD, and CAT. Also sign and ratify OP-ICESCR, OPCAT, OP-CRC-AC, OP-CRC-SC, CED, CRPD and its Optional Protocol (OPCRPD)", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Ensure further effective implementation of the recently established programmes/policies on the protection of the principles and the rights of minorities that requires an equal approach and respect for each minority's different characteristics ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Continue the work to further social and economic integration of the Roma population, reduce direct and indirect school segregation of Roma children and actively promote Roma participation in society through education", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Continue national policies to put an end to poverty through initiatives on development", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Move on speedily to the ratification and/or application of human rights instruments, particularly CAT", - "values": [ - "4 - General action" - ] - }, - { - "text": "Take measures to prevent violence against women and girls, particularly by the development of a strategy for protection and social reintegration in order to reduce child trafficking and sexual abuse", - "values": [ - "4 - General action" - ] - }, - { - "text": "Carry out independent and impartial inquiries with respect to allegations of mistreatment in detention ", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Revise its legal framework in the area of mass media, free public discussion, and peaceful assembly, with a view to bring in it in compliance with relevant provisions of ICCPR", - "values": [ - "3 - Considering action" - ] - }, - { - "text": "Finalize issuing a standing invitation to the United Nations mandate holders, which was already declared to be considered after the first round of the universal periodic review", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Take further measures to improve the treatment of persons arrested, detained or imprisoned, including by strengthening the National Preventive Mechanism", - "values": [ - "4 - General action" - ] - }, - { - "text": "Immediately end extrajudicial executions and carry out an independent and impartial investigation into all enforced disappearances and extrajudicial executions in order to bring the authors of these crimes to justice", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Thoroughly investigate all allegations of mistreatment of prisoners ", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Strengthen and boost the experience it already has in reforming the educational system by promoting a human rights culture through its integration into school curriculums, particularly in rural areas.", - "values": [ - "4 - General action" - ] - }, - { - "text": "Bring an immediate end to harassment and intimidation of independent journalists and media institutions and amend the legislation that restricts press freedom and freedom of expression", - "values": [ - "4 - General action" - ] - }, - { - "text": "Argentina reaffirms its commitment to continue working on bringing the United Nations Standard Minimum Rules for the Treatment of Prisoners into line with the norms of international human rights law", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Give priority to the recommendations made by the Special Rapporteur on the human rights of migrants", - "values": [ - "4 - General action" - ] - }, - { - "text": "Continue to develop the rule of law, including the independence of the judiciary and the impartiality of court processes, in order to bring legislation and practices further into line with the principles of the international legal system", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Continue to provide and improve programmes on human rights for the judiciary, law enforcement personnel and lawyers ", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Promote political dialogue with all sectors of society, including civil society, with a view to enhancing the contribution of these sectors to the development process ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Take measures to provide those at risk of statelessness with identity documents, with particular regard to the Roma", - "values": [ - "4 - General action" - ] - }, - { - "text": "Take further steps to strengthen the delivery of health-care services and improve health-care infrastructure", - "values": [ - "4 - General action" - ] - }, - { - "text": "Make further efforts to implement the national strategy on reproductive health and set standards for maternal health ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Take all appropriate measures to eliminate all forms of discriminations against women, in particular with respect to property, the sharing and inheritance of land and access to education, the labour market and political life.", - "values": [ - "4 - General action" - ] - }, - { - "text": "Continue promoting the rights of children, particularly in guaranteeing their access to quality education, so as to ensure that they would be able to enter the workforce with the necessary skills", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Take specific measures to promote access to health-care services, especially in rural areas", - "values": [ - "4 - General action" - ] - }, - { - "text": "Submit regularly its reports to the treaty bodies of the conventions it is party to, like the Committee on the Rights of the Child and the Committee on the Elimination of Racial Discrimination.", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Begin the implementation of specific and comprehensive anti-discrimination laws.", - "values": [ - "4 - General action" - ] - }, - { - "text": "Continue its efforts to further build its capacity and increase awareness on human rights", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Develop a national plan of action to enforce the rights of children in a comprehensive manner and based on the Convention on the Rights of the Child ", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Ensure the freed bonded laborers' access to fertile land and their equal enjoyment of human rights, including the right to work and right to property, in line with the observations made by the Committee on Economic, Social and Cultural Rights", - "values": [ - "4 - General action" - ] - }, - { - "text": "Adopt specific legislation to criminalize all forms of violence against women ", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Review convictions, commute sentences, or drop charges for all persons who engaged in non-violent political expression ", - "values": [ - "3 - Considering action" - ] - }, - { - "text": "Pursue its programmes to develop former conflict zones in order to bring afflicted communities at par with those living in other provinces of the country.", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Implement ECRI's recommendation to continue to monitor hate crimes and to work with the community to increase understanding of the impact of such offences, and to pursue efforts to improve the police gathering of evidence of racist motivations ", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Sign and ratify the Convention on the Rights of Persons with Disabilities and the Optional Protocol to the International Covenant on Economic, Social and Cultural Rights", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Ratify OP-CAT ", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Ensure the political and social-economic rights of minority groups in Niger Delta, and that consultations in this regard are undertaken with these minority groups", - "values": [ - "4 - General action" - ] - }, - { - "text": "Pursue the reforms in the penitentiary system with a view to ending overpopulation in prisons ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Accelerate the full operationalization of the National Institute for Human Rights in the near future ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Raise public awareness about the equality of rights of women with regard to nationality, consider amending the national legal system to ensure the equal rights for women and men in this area, and continue working and promoting national initiatives aimed at gender equality in the country", - "values": [ - "4 - General action" - ] - }, - { - "text": "Take the necessary measures to ensure that human rights standards, not only European but also international, are incorporated into Austrian law ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Implement strategies to promote better access to education for girls at all levels", - "values": [ - "4 - General action" - ] - }, - { - "text": "Create a national public service network covering sports for both the urban and rural areas", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Step up existing efforts towards the protection of the rights of minorities, especially by fighting discrimination against children of Roma descent in the field of education, and by guaranteeing the right to adequate housing of the Serbian minority", - "values": [ - "4 - General action" - ] - }, - { - "text": "Consider putting in place measures or legislation to ensure prevention and punishment of acts of violence against women, and ensure that rapists do not evade criminal prosecution by marrying their victims ", - "values": [ - "3 - Considering action" - ] - }, - { - "text": "Further examine methods to promote greater representation of members of minority groups in the government and parliament", - "values": [ - "3 - Considering action" - ] - }, - { - "text": "Decriminalize sexual activity between same-sex consenting adults and ensure the protection of human rights for sexual minorities in conformity with the State's human rights obligations ", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Ensure that the Commissioner for Information of Public Importance be given greater access to information so that he may fully determine whether such information should be withheld from access to the public", - "values": [ - "4 - General action" - ] - }, - { - "text": "Ratify or accede to the remaining existing international human rights treaties, especially the Optional Protocol to the Convention on the Rights of the Child on the participation of children in armed conflict, the Optional Protocol to the Convention on the Rights of the Child on the sale of children, child prostitution and child pornography, the International Covenant on Civil and Political Rights and its second Optional Protocol, aiming at the abolition of the death penalty, as well as the Convention against Torture", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Take the necessary steps to eliminate discrimination against women in all spheres of society, including making legislative amendments", - "values": [ - "4 - General action" - ] - }, - { - "text": "Ensure that foreigners from third countries are protected from racial discrimination, and encourage high-ranking State officials and politicians to take a clear position against racism and xenophobia", - "values": [ - "4 - General action" - ] - }, - { - "text": "Fully align the national legislation with all obligations arising out of the Rome Statute of the ICC ", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Change its legislation to ensure the exercise of the political rights in the mother tongue as prescribed in the OSCE report of 7 January 2015", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Review existing restrictions on freedom of expression, participation in the political process and the media, and amend or abolish any undue or excessive restrictions which may exist ", - "values": [ - "3 - Considering action" - ] - }, - { - "text": "Consider the possibility of introducing amendments to the legislation relating to combating domestic violence", - "values": [ - "3 - Considering action" - ] - }, - { - "text": "That any changes in legislation uphold fundamental freedoms and ensure non-discrimination, including on the basis of religion or sexual orientation", - "values": [ - "4 - General action" - ] - }, - { - "text": "Repeal amendments to Act 779 and urgently address the high levels of violence against women and girls ", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Continue its constructive engagement and cooperation with the international human rights mechanism, including through technical cooperation", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Strengthen capacity-building in field of human rights for military, police personnel and for civil servants with emphasis on criteria for the attention of specific populations", - "values": [ - "4 - General action" - ] - }, - { - "text": "Continue its efforts to completely abolish the death penalty, respecting thus the right to life of every human being.", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Implement the 1954 Convention on statelessness to ensure that stateless persons in Britain access British nationality", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Adopt an integrated strategy for the elimination of discrimination on any basis, which deals in particular with racially-motivated attacks against foreigners, persons of African descent and human rights defenders ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Put in practice a broad system of alternative measures to deprivation of liberty of minors so that it is used only as a last resort, for the shortest time possible and in the appropriate conditions", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Make efforts to incorporate into national legislation the prohibition of all forms of the corporal punishment of children ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Guarantee the right to freedom of religion for the Eritrean citizens ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Consider the signing and ratification of ICRMW, as well as the consequent and gradual adaptation of national legislation in accordance with the standards contained in that Convention", - "values": [ - "3 - Considering action" - ] - }, - { - "text": "Continue strengthening its sound social policies that favour the people, with special emphasis on the most vulnerable groups", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Continue its efforts to accede to or ratify more human rights treaties and their Optional Protocols", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Intensify efforts in the promotion of the rights of persons with disabilities ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Develop appropriate policies and measures to effectively support ethnic minorities ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Continue to enhance engagement with its regional and international partners to strengthen its capacity for the protection and promotion of human rights ", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Improve the quality of basic education through programmes to ensure that teachers have adequate content knowledge and appropriate training, as well as by prioritizing the most disadvantaged schools in infrastructure and other improvement programmes", - "values": [ - "4 - General action" - ] - }, - { - "text": "Pursue its efforts to combat racism, racial discrimination, xenophobia and related intolerance", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Redouble its efforts in strengthening the Ombudsman with a view to achieving a full compliance status with the Paris Principles", - "values": [ - "4 - General action" - ] - }, - { - "text": "Further enhance the promotion and protection of women\u2019s rights, including addressing violence against women and femicide", - "values": [ - "4 - General action" - ] - }, - { - "text": "Provide free legal aid to women without sufficient means in order to facilitate their access to justice", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Amend its criminal legislation to include crimes of hatred and of discrimination on the grounds of sexual orientation and gender identity", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Continue human rights training of police forces.", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Limit the use of or abolish solitary confinement of children", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Continue to make efforts to guarantee the rights and participation of foreigners, in accordance with the commitment made in paragraph 124 of the National Report", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Step up its excellent cooperation with civil society and to ensure that this helps further to protect human rights", - "values": [ - "4 - General action" - ] - }, - { - "text": "Take concrete measures to reduce the resort to detention of migrants solely for immigration purposes ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Redouble its efforts to complete the process of aligning the Penal Code with the Rome Statute of the International Criminal Court", - "values": [ - "4 - General action" - ] - }, - { - "text": "Take steps to complete the establishment of the National Preventive Mechanism in accordance with OP-CAT", - "values": [ - "4 - General action" - ] - }, - { - "text": "Protect rights of migrants, asylum seekers and refugees in accordance with international human rights standards with a view to combat discrimination against them", - "values": [ - "4 - General action" - ] - }, - { - "text": "Repeal all legal provisions that discriminate against persons on the grounds of their sexual orientation or gender identity", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Recommended that Colombian justice complete its work designed to establish the truth, putting an end to impunity and protect the human rights.", - "values": [ - "4 - General action" - ] - }, - { - "text": "Facilitate the work of non-governmental organizations and other relevant civil society groups in the country ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Take further measures to ensure protection of property rights, pursuant to international standards, including the provisions in articles 14 and 21 of the African Commission on Human and Peoples' Rights and article 5 of CERD ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Launch a national dialogue, as well as a campaign through media and in the schools, to tackle all forms of discrimination against lesbian, gay, bisexual and transgender (LGBT) persons ", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Increase efforts to provide human rights education to everyone involved in the judicial process, particularly people working in prisons ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Continue to engage with the affected communities to provide protection to those most vulnerable to hate crimes and discrimination, and to better understand their circumstances", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Take all relevant steps to protect human rights defenders", - "values": [ - "4 - General action" - ] - }, - { - "text": "Extend an open invitation to the human rights special procedures ", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Improve access to effective legal remedies for victims of discrimination", - "values": [ - "4 - General action" - ] - }, - { - "text": "Continue the programmes to reform the judicial sector and penitentiary facilities", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Investigate thoroughly all cases of illegal recruitment of children in armed groups and bring the perpetrators to justice ", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Multiply actions aimed at reinforcing legislation in the domain of human rights.", - "values": [ - "4 - General action" - ] - }, - { - "text": "Reform the Law on Public Associations to bring it in line with its obligations under the ICCPR, including by simplifying the legal and procedural requirements for registration by civil society organizations and minimizing reporting obligations to authorities ", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Ensure adequate legal and social protection for women and girls subjected to gender-based violence", - "values": [ - "4 - General action" - ] - }, - { - "text": "Consider extending systematic training on human rights to all police and prison officers", - "values": [ - "3 - Considering action" - ] - }, - { - "text": "Intensify efforts to effectively implement the measures adopted to combat trafficking in human beings, in particular in terms of victim protection ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Ensure that human rights are explicitly protected in domestic law, including by reinstating the 1997 Constitution and immediately restoring the judges, magistrates and other judicial officers removed by President Iloilo on 10 April 2009", - "values": [ - "4 - General action" - ] - }, - { - "text": "Adopt temporary special measures in areas which women are underrepresented and accelerate the advancement of women ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Take practical measures to provide safer working conditions, suitable for its citizens", - "values": [ - "4 - General action" - ] - }, - { - "text": "Continue to study and review human rights instruments. Bhutan has always been of the view that the government must first build the necessary social and political institutions and develop its human resources before it assumes any additional international treaty obligations. In the absence of strong institutions and qualified personnel, it remains seriously constrained in fulfilling the obligations as required in the international treaties/conventions. As its capacity is enhanced, Bhutan will consider ratifying relevant international human rights instruments", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Continue to strengthen the capacity for action in the fight against human trafficking, and in combating discrimination and promoting integration", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Take all necessary measures to ensure the full realization of the mandate of the Ombudsman's Office", - "values": [ - "4 - General action" - ] - }, - { - "text": "Allocate adequate resources for ensuring access to safe drinking water and sanitation, to proper health care services for women and children, as well as to affordable and satisfactory education", - "values": [ - "4 - General action" - ] - }, - { - "text": "Whilst death penalty remains in place, rigorously apply international standards for fair trial in all death penalty cases and respect national legal procedures and the standards required by the Privy Council and the United Nations for the protection of the rights of prisoners sentenced to death", - "values": [ - "4 - General action" - ] - }, - { - "text": "Amend its legislation to repeal laws which criminalize consensual adult same-sex relations", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Continue to harmonize its domestic legislations with those international human rights instruments that Uganda is a party ", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Continue taking measures to combat gender-based violence and to take further measures to ensure the effective implementation of laws offering protection against this violence", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Ensure freedom of assembly and association, freedom of opinion and expression, including on the Internet, and protect freedom of the press", - "values": [ - "4 - General action" - ] - }, - { - "text": "Continue its efforts in guaranteeing and facilitating access to justice for all citizens ", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Continue the efforts in favour of migrant workers", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Continue its efforts aimed at fighting trafficking in persons, particularly children and women, and at ensuring compensation and rehabilitation for trafficking victims ", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Classify hate speech with racist content and incitement to hatred as crimes punishable under criminal law", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Allocate the necessary resources to the fight against discrimination on the basis of gender and sexual orientation, so as to accelerate progress on this matter", - "values": [ - "4 - General action" - ] - }, - { - "text": "Ratify the Optional Protocol to the Convention on the Rights of the Child on the sale of children, child prostitution and child pornography and sign and ratify the Optional Protocol to the Convention on the Rights of the Child on a communications procedure", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Intensify efforts at improving and strengthening its human rights institutions", - "values": [ - "4 - General action" - ] - }, - { - "text": "Continue to take measures to accelerate the increase in the participation of women in political decision-making positions, the judiciary and the civil service ", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Strengthen actions to promote and protect rights of women and child ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Ensure that the Action Plan on ending the recruitment and use of children signed in 2012 is fully implemented", - "values": [ - "4 - General action" - ] - }, - { - "text": "Enhance the cooperation with civil society", - "values": [ - "4 - General action" - ] - }, - { - "text": "Undertake proactive policies to promote the rights of individuals, especially with regard to their sexual orientation and HIV/AIDS status ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Investigate complaints of all ill-treatment by ethnic minorities, including Africans and Roma, and hold perpetrators responsible ", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Enhance its efforts for the protection of children from all forms of violation including domestic violence and sexual exploitation ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Take all appropriate measures to ensure an effective implementation of the prohibition of female genital mutilation, especially in terms of prevention, sensitization, control and legal sanctions ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Postpone the implementation of the Sharia Penal Code Order, 2013, pending a comprehensive review ensuring the Order's compliance with international human rights standards, and put in place a formal moratorium on the use of the death penalty, with a view to its abolition", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Continue the consideration of its accession to the Rome Statute of the International Criminal Court", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Continue to take measures to prevent and combat racially motivated crimes as well as hate crimes ", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Continue its efforts to strengthen its legal framework to combat prolonged pre-trial detention", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Continue strengthening its efforts in safeguarding the rights of women and children", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Ratify the 1954 Convention relating to the Status of Stateless Persons and the 1961 Convention on the Reduction of Statelessness ", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Ensure the protection of all components of the right to freedom of religion or belief, as protected under the ICCPR, including by withdrawing its reservations to article 27 on minority rights", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Accede to the Council of Europe Convention on Preventing and Combating Violence against Women and Domestic Violence", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "In light of the recommendation of the Committee on the Rights of the Child, act on combating discrimination by targeting situations of discrimination and vulnerability affecting children belonging to all minorities", - "values": [ - "4 - General action" - ] - }, - { - "text": "Repeal all discriminatory provisions in the personal status code and ensure equality of rights between men and women", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Ratify the International Convention for the Protection of All Persons from Enforced Disappearance", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Consider the possibility of enhancing the measures required for the protection of the rights of the elderly ", - "values": [ - "3 - Considering action" - ] - }, - { - "text": "Take action to reduce and eliminate all cases of abductions and disappearances", - "values": [ - "4 - General action" - ] - }, - { - "text": "Continue its efforts to enhance the protection and empowerment of women", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Consider issuing a standing invitation to United Nations human rights special procedures ", - "values": [ - "3 - Considering action" - ] - }, - { - "text": "Define the minimum age for criminal responsibility in compliance with international standards", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Repeal article 398 of the Afghan Penal Code with a view to ensuring full accountability for the perpetrators of so-called honour killings ", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Ensure that emergency shelters and social housing units meet an adequate standard, especially for families with children ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Continue policies to combat trafficking, and promote assistance to victims", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Protect freedom of expression both offline and online by bringing legislation such as Decrees 2 and 72 into compliance with international human rights law", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Strengthen its cooperation with the United Nations Support Mission in Libya and the Office of the United Nations High Commissioner for Human Rights in order to resume capacity-building of national institutions dealing with human rights, transitional justice and the rule of law, according to its Government's expressed wishes", - "values": [ - "4 - General action" - ] - }, - { - "text": "Develop a strategy to combat child labour", - "values": [ - "4 - General action" - ] - }, - { - "text": "Bahrain will examine the possibility of issuing an annual or a periodic national report on the human rights situation on the ground.", - "values": [ - "3 - Considering action" - ] - }, - { - "text": "Strengthen cooperation with international human rights mechanisms, treaty bodies and special procedures", - "values": [ - "4 - General action" - ] - }, - { - "text": "Keep the Human Rights Council informed about the follow-up to the "Talent to the Top" charter and inform it of the results obtained by signatories ", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Review legislation concerning family law and laws relating to the authority of guardians over women, and to amend or repeal laws that discriminate against women", - "values": [ - "3 - Considering action" - ] - }, - { - "text": "Review and where necessary adapt school and early childhood education curricula, teaching and school practices to foster the elimination of gender-based discrimination and stereotyping, as well as to promote the empowerment of girls from an early age", - "values": [ - "3 - Considering action" - ] - }, - { - "text": "Perform systematically a study of the impact of all measures (laws and decrees) regarding women's rights ", - "values": [ - "3 - Considering action" - ] - }, - { - "text": "Create an Ombudsman for the issues of national minorities ", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Continue to provide educational and training facilities for persons with disabilities, double its efforts to reduce child labour and provide care for vulnerable children in schools and on the streets", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Continue to pursue commendable efforts to combat HIV and AIDS, and share experiences, particularly regarding the involvement of youth in programmes designed to fight this scourge ", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Make national planning and national budgeting gender-responsive", - "values": [ - "4 - General action" - ] - }, - { - "text": "Review the 2008 Genocide Ideology Law and other related laws to bring them in line with international standards through a more precise and restrictive definition of the crime, including a clear statement of intent to commit, assist or incite genocide ", - "values": [ - "3 - Considering action" - ] - }, - { - "text": "Develop and implement a plan of action to protect the safety and human rights of community activists and members of social organizations", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Provide adequate budget to existing human rights promotion programs and strengthen their practical application", - "values": [ - "4 - General action" - ] - }, - { - "text": "Fully implement without further delay the provisions of the national action plan on gender equality and domestic violence ", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Increase the protection of women against violence particularly those of immigrant background, by, inter alia, strengthening their access to counselling and support services nationwide ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Fully implement the framework for the reform of the justice system established in the September 2010 report by the Special Rapporteur on the situation of human rights in Cambodia ", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Ratify the remaining international human rights conventions and continue without delay to harmonize its national legislation with the international obligations of the Lao People's Democratic Republic under the respective human rights conventions, and implement them in policy and practice and strengthen its legal complaints system to ensure that most vulnerable groups have effective access to justice", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "In cooperation with the media, implement the agreed action plan within the dialogue between the Government and the media community on improvement of media freedoms", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Ensure the mainstreaming of gender equality in all its policies and increase the representation of women in decision-making positions at the local level", - "values": [ - "4 - General action" - ] - }, - { - "text": "Step up its efforts to address the issue of trafficking of women and children", - "values": [ - "4 - General action" - ] - }, - { - "text": "Voluntary commitments regarding the rights of children, young adolescents and adult senior citizens, development of a concerted agenda and policies for their protection, establishment of an institutional network to eradicate child labour, dissemination of the legal framework which contemplates young people as subjects of rights, through the development of an agenda for social protection and promotion of their rights, as a cross-cutting issue within all state programmes, dissemination of the rights of senior citizens based on the 2002 International Convention of Madrid and the Law on the Senior Adult", - "values": [ - "4 - General action" - ] - }, - { - "text": "Ratify ICPPED", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Incorporate a definition of torture in domestic law in line with Article 1 of the Convention against Torture", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Further increase inputs in education and further improve school enrolment rate", - "values": [ - "4 - General action" - ] - }, - { - "text": "Bring appropriate solutions to the problems of disparities linked to economic, social and cultural rights, as highlighted in the national report ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Make the necessary adjustments to ratify the International Convention on the Protection of the Rights of All Migrant Workers and Members of Their Families", - "values": [ - "4 - General action" - ] - }, - { - "text": "Review legislation in order to raise the minimum age of criminal responsibility in line with international standards", - "values": [ - "3 - Considering action" - ] - }, - { - "text": "Provide the victims of human trafficking with the effective access to legal remedies and compensation ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Make every possible efforts to implement the Roma Strategy and Action Plans, in compliance with the strategy and the Decade of Roma Inclusion, which is to end in 2015.", - "values": [ - "4 - General action" - ] - }, - { - "text": "Review the Law on Religion in order to guarantee freedom of religion in compliance with international standards", - "values": [ - "3 - Considering action" - ] - }, - { - "text": "Pursue work to draft and enact a law establishing registered partnership for same sex couples.", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Consider establishing a moratorium on the death penalty with a view to abolishing it ", - "values": [ - "3 - Considering action" - ] - }, - { - "text": "Mexico is committed to restricting the use of preventive custody to only very exceptional cases as a precautionary measure to protect the higher interest of life, to safeguard the integrity of persons, to protect legal rights or to prevent suspects from evading justice.", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Step up its efforts towards ratifying the International Convention on the Protection of the Rights of All Migrant Workers and Members of Their Families", - "values": [ - "4 - General action" - ] - }, - { - "text": "Facilitate the work and the function of the Ombudsman in accordance with the Paris Principles ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Take all legal measures to adopt and implement a national racial justice plan consistent with the Durban Declaration and Programme of Action", - "values": [ - "4 - General action" - ] - }, - { - "text": "Provide the Ombudsman's office with sufficient resources for exercising its role in accordance with its mandate", - "values": [ - "4 - General action" - ] - }, - { - "text": "Determine its technical and financial assistance needs in order to solicit the support from its bilateral and multilateral partners", - "values": [ - "1 - Minimal action" - ] - }, - { - "text": "Combat the phenomenon of early and forced marriage by amending the relevant legislation accordingly", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Harmonize its national legislation with the Rome Statute of the International Criminal Court, including measures of cooperation with the Court and to investigate the crime of genocide, crimes against humanity and war crimes", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Consider prohibiting corporal punishment against children and ensure that it is explicitly prohibited in all schools and educational institutions, and all other institutions and forms of alternative care", - "values": [ - "3 - Considering action" - ] - }, - { - "text": "Expedite the adoption of the Children's Protection and Welfare Bill ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Improve the documentation process for citizens, which would help actual and effective realization of children's rights in adoption processes", - "values": [ - "4 - General action" - ] - }, - { - "text": "Proceed to the abolition of current legislation criminalizing sexual relations between persons of the same sex ", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "To consider ratifying the ICESCR and its Optional Protocols ", - "values": [ - "3 - Considering action" - ] - }, - { - "text": "Give proper follow-up to the resolution which forbids the forced evictions of persons, and defend the rights of the displaced and indigenous people", - "values": [ - "4 - General action" - ] - }, - { - "text": "Strengthen cooperation with Human Rights Council treaty monitoring bodies", - "values": [ - "4 - General action" - ] - }, - { - "text": "Consider the possibility of acceding to and/or ratifying the Convention on the Rights of Persons with Disabilities and its Optional Protocol ", - "values": [ - "3 - Considering action" - ] - }, - { - "text": "Consider the possibility of implementing free primary education.", - "values": [ - "3 - Considering action" - ] - }, - { - "text": "Ratify the International Convention on the Protection of the Rights of All Migrant Workers and Members of Their Families Convention on Migrant Workers", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Eliminate all forms of corporal punishment from its legislation", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Give legal recognition to same-sex relationships ", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Fully implement the national plan for the advancement of Bahraini women (2022) in its five lines", - "values": [ - "4 - General action" - ] - }, - { - "text": "Continue to optimise the activities of its mechanisms for the protection of human rights by establishing a coordinating Human Rights Council as a part of Ombudsman institution to ensure compliance of the institution framework with the Paris principles", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Continue, in view of its rich history, culture and tradition, its efforts and initiatives to promote dialogue among religions and civilizations, including by focusing on the theme of promoting and protecting human rights and a culture of peace", - "values": [ - "4 - General action" - ] - }, - { - "text": "Strengthen measures to systematically integrate gender in public policies and, where appropriate, through gender-sensitive budgeting ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Make efforts to strengthen the legislative framework to protect the lesbian, gay, bisexual, transgender and intersex community from all forms of discrimination and intimidation or violence by amending laws which criminalize consensual same-sex relations", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Repeal all provisions that discriminate against persons on the grounds of their sexual orientation or gender identity, including those in the Sexual Offences Act ", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Effectively implement United Nations treaty bodies' recommendations and as appropriate on indigenous people", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Create an autonomous and independent national human rights institution in conformity with the Paris Principles and with the technical assistance of OHCHR", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Guarantee access to education for all, and in particular to strengthen the public sector, while access to a continuous and quality education curriculum is deteriorating", - "values": [ - "4 - General action" - ] - }, - { - "text": "Continue to promote the right to work for all including through providing technical and vocational training for young people", - "values": [ - "4 - General action" - ] - }, - { - "text": "Sign and ratify the Optional Protocol to the CAT ", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Intensify efforts to facilitate the participation of women in political and public affairs", - "values": [ - "4 - General action" - ] - }, - { - "text": "Ensure that the new Civil and Commercial Code does not allow for deprivation of legal capacity of persons with disabilities", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Take measures to raise awareness among the public and all players involved in the judicial system regarding the need to respect and apply the legislation on violence against women", - "values": [ - "4 - General action" - ] - }, - { - "text": "Establish a periodical review process of Costa Rica's laws and practices so as to eradicate all forms of discrimination against women, both de facto and de jure, in accordance with its internationally acquired commitments ", - "values": [ - "3 - Considering action" - ] - }, - { - "text": "With regard to the rule of law, launch informative programmes to raise awareness of anti-corruption mechanisms, such as the Professional Standard Division, as well as increase the funding of such institutions", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Ratify OP-CRC-SC, OP-CAT, CRPD and its Optional Protocol, CED, and OP-ICESCR ", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Speed up the process of implementing the Optional Protocol to the Convention against Torture. ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Increase government spending on education to provide compulsory public and private education", - "values": [ - "4 - General action" - ] - }, - { - "text": "Speed up the process of establishing a national human rights institution in conformity with the Paris Principles ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Repeal or revise legislation, notably the relevant provisions of the Aceh Islamic Criminal Code, which criminalizes sexual relations among consenting adults of the same sex, as well as legislation that discriminates on the basis of sexual orientation or gender identity", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Develop relevant legislation to resolve the issue of ownership of private media, in a spirit of transparency ", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Progressively realize the right to health to the maximum of its available resources by ensuring the equal and non-discriminatory access of all persons, including women and children to quality and low-cost community health care and the respect of this right by everybody, including "traditional leaders" and other stakeholders", - "values": [ - "4 - General action" - ] - }, - { - "text": "Include information on the implementation of the treaties in its overseas territories in its national reports to treaty bodies on a regular basis.", - "values": [ - "4 - General action" - ] - }, - { - "text": "Share its experiences of, in particular, international volunteers, whether armed fighters or doctors, and tell through multiple media whether the internet or illustrated stories, of the experiences, values and the ethics of the Cuban struggle", - "values": [ - "1 - Minimal action" - ] - }, - { - "text": "Provide the Office for Women's Development with the necessary resources to promote gender equality in all policy areas", - "values": [ - "4 - General action" - ] - }, - { - "text": "Continue efforts to draw up a national framework for human development that takes into consideration gender equality and non-discrimination", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Continue its efforts to develop national information and education strategy which encourages a culture of disaster risk reduction ", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Take all measures necessary to ensure full respect for the freedom of expression in accordance with Kyrgyzstan's international obligations ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Stress and promote access to health services, including by training medical staff", - "values": [ - "4 - General action" - ] - }, - { - "text": "Take steps to ratify the International Convention for the Protection of All Persons from Enforced Disappearance.", - "values": [ - "4 - General action" - ] - }, - { - "text": "Continue its efforts to ensure consistency between national laws and international human rights conventions which it has ratified", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Mental health services in schools should benefit from sufficient resources and qualified staff in order to deal with problems affecting in particular adolescents, such as suicidal thoughts and nutritional or addictive problems ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Establish the Truth and Reconciliation Commission and the Commission of Inquiry on Disappearances as stipulated in the 2006 Comprehensive Peace Agreement ", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "To inform CNCDH, as often as possible in advance, of the preparation of draft laws where the Commission could usefully play its role of providing advice on all matters relating to its area of competence", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Further continue boosting the birth registration rate by the existing nationwide awareness campaigns among the citizens", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Continue efforts to accede to the Convention against Torture and Other Cruel, Inhuman or Degrading Treatment or Punishment, as well as its optional protocol, and the International for the Protection of All Persons from Enforced Disappearances, and ratify ILO Conventions No. 169 and no. 189 ", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Continue to take measures to protect the rights of the elderly and persons with disabilities", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Request the necessary assistance from the international community to allow it to strengthen its capacities and to assist it in overcoming the difficulties and constraints it faces in the area of human rights ", - "values": [ - "1 - Minimal action" - ] - }, - { - "text": "Take the necessary steps towards the establishment of a national human rights institution or a similar regional body in accordance with the Paris Principles", - "values": [ - "4 - General action" - ] - }, - { - "text": "Continue efforts to reduce unemployment rates among youths, including by strengthening vocational training programmes", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Improve the functioning of the National Electoral Commission and Zanzibar Electoral Commission, ensuring their decision-making processes are fully transparent and impartial", - "values": [ - "4 - General action" - ] - }, - { - "text": "Adopt the draft law on an independent national human rights institution in accordance with the Paris Principles, as soon as possible", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Implement the content of the National Consultative Forum to help Nigeria improve its performance in the area of human rights", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Bring its Human Rights Ombudsman's Office into compliance with the Paris Principles, including by providing it with adequate financial and human resources", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Make available the necessary resources to the National Human Rights Commission to ensure it is able to operate effectively", - "values": [ - "4 - General action" - ] - }, - { - "text": "Establish a moratorium on executions with a view to proceeding towards the abolition of the death penalty", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Continue its policy in favour of children, in particular the fight already initiated by the Government against child labour ", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Adopt and implement the protocol on the protection of human rights defenders that has been developed by the Ministry of Justice and Human Rights", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Take all necessary measures to eliminate definitely practices of female genital mutilation and child marriages", - "values": [ - "4 - General action" - ] - }, - { - "text": "Consider signing and ratifying the Optional Protocol to the Convention on the Rights of Persons with Disabilities", - "values": [ - "3 - Considering action" - ] - }, - { - "text": "Continue its efforts to improve the protection of victims and witnesses, and their families, as well as human rights defenders, particularly those testifying in human rights-related trials, and to ensure that adequate witness protection is implemented.", - "values": [ - "4 - General action" - ] - }, - { - "text": "Continue to combat violence against women and implement a national awareness plan to for the elimination of cultural and traditional practices harmful to women, including female genital mutilation ", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Consider promoting more effective participation by indigenous peoples in political decision-making.", - "values": [ - "3 - Considering action" - ] - }, - { - "text": "Provide oversight to ensure investigation and prosecution as appropriate against police officers alleged to have been involved in extrajudicial killings", - "values": [ - "4 - General action" - ] - }, - { - "text": "Envisage adhering to international human rights instruments by giving priority to ICESCR and ICCPR, and seek, if needed, technical assistance to this end ", - "values": [ - "3 - Considering action" - ] - }, - { - "text": "Consider ratifying the ILO Domestic Workers Convention, 2011 (No. 189)", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Encourage highly placed State officials and politicians to take a clear stance against racist and xenophobic political discourse", - "values": [ - "4 - General action" - ] - }, - { - "text": "Seek assistance for the immediate implementation, by the international community, of Security Council resolution 1964 (2010) so as to create means for the delivery of basic social services to the population ", - "values": [ - "1 - Minimal action" - ] - }, - { - "text": "Step up its efforts to combat racism and xenophobia and ensure that racially-motivated crimes are promptly detected, investigated and sanctioned ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Strengthen the national legal framework that enables the recently created ombudsman on children to carry out its mandate efficiently and effectively", - "values": [ - "4 - General action" - ] - }, - { - "text": "Accede to the International Convention on the Protection of the Rights of All Migrant Workers and Members of Their Families, as another significant step in the protection of human rights", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Guarantee freedom of religion and belief by abolishing the mandatory registration for religious groups, and ensure that the 2011 religion law is in conformity with international human rights standards", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Continue to invest more in rural development projects through best practices such as micro credit financing", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Eliminate the system of exit visas for those wishing to travel abroad ", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Investigate thoroughly complaints from citizens about assault or other abuse by the police and provide information to the public about the disposition of such complaints ", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Continue to mobilize resources and necessary support to enhance its capacity to fulfil its human rights obligations", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Combat torture and other inhuman or degrading treatment and ensure that these acts do not go unpunished", - "values": [ - "4 - General action" - ] - }, - { - "text": "Ensure respect for the rights and fundamental freedoms of children through sanctioning the authors of all exploitation and forced labour practices", - "values": [ - "4 - General action" - ] - }, - { - "text": "Continue working towards the elimination of the user-pay policy for education with the aim of providing free primary education, as per Millennium Development Goal 2 ", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Accept the right to present individual communications provided for the Optional Protocol to the International Covenant on Economic, Social and Cultural Rights, and withdraw the reservation to the International Covenant on Economic, Social and Cultural Rights ", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Accelerate the process of ratification of the International Convention for the Protection of All Persons from Enforced Disappearance", - "values": [ - "4 - General action" - ] - }, - { - "text": "That the United Kingdom Government, parliamentarians, human rights institutions and civil society organizations continue to work closely together in order to ensure that vulnerable groups such as ethnic and religious minorities, refugees and migrants are better protected against hate speech and hate-related crime and that they are provided with greater certainty and legal protection", - "values": [ - "4 - General action" - ] - }, - { - "text": "Ensure compliance of the Ombudsman's institution with the Paris Principles ", - "values": [ - "4 - General action" - ] - }, - { - "text": "With the assistance and strengthened support of the international community, to continue with its constitutional approach of subtle balance between constitutional respect for different historical and cultural contexts, decentralization through federalism, the inherited burden of decades of military totalitarianism and the Government's will to strongly turn towards democracy", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Review thoroughly and amend the Communications Code to ensure that it is in line with international best practices and standards on freedom of expression", - "values": [ - "3 - Considering action" - ] - }, - { - "text": "Bring its legislation in line with international standards by removing the relevant sections that criminalize consensual same-sex conduct from the Criminal Law (Offences) Act", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Pass legislation to address sexual and gender based violence and ensure its full application, among others by providing the required budgetary allocations for legal and psychological assistance to victims ", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Continue to criminalize and ultimately eradicate sexual and gender- based violence such as female genital mutilation and harmful traditional practices, including trials by ordeal", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Impose a moratorium on the use of the death penalty", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Pursue initiatives to strengthen economic, social and cultural rights in order to promote sustainable development", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Continue to apply strategies and plans aimed at reducing poverty and achieving the socio-economic development of the country ", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Adopt and implement a national programme for promoting education for girls at all levels and the eradication of root causes of school dropout ", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Ensure the elimination of any form of discrimination against children, especially children in marginalized and disadvantaged situations", - "values": [ - "4 - General action" - ] - }, - { - "text": "Provide the legal framework for the establishment of a national human rights institution in accordance with the Paris Principles, and in consultation with civil society", - "values": [ - "4 - General action" - ] - }, - { - "text": "Accelerate the revision of the Genocide Ideology Law by precisely defining the crime in line with international standards, and ensuring that intention, assistance and incitement to genocide are clearly stated in the definition ", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "The Government is firmly committed to improving existing conditions to satisfy international human rights standards in the operation of lock-ups and correctional facilities, however, the chief obstacles to this goal include the outdated physical infrastructure of the lock-ups and prisons and the inadequacy of human and financial resources to supervise and operate lock-ups and prisons.", - "values": [ - "4 - General action" - ] - }, - { - "text": "Take further steps in advancing the protection of women and children, by ratifying the Optional Protocol to the Convention on the Elimination of All Forms of Discrimination against Women as well as the Optional Protocol to the Convention on the Rights of the Child on the sale of children, child prostitution and child pornography ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Eliminate discrimination against women in the area of marriage by eradicating the practices of child, early and forced marriage and by ensuring equal inheritance rights for men and women", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Make subject to review in civilian courts all convictions and sentences rendered by the National Security Courts ", - "values": [ - "3 - Considering action" - ] - }, - { - "text": "Accelerate and strengthen legislative and educational actions to combat discrimination in all its forms", - "values": [ - "4 - General action" - ] - }, - { - "text": "Review the Nationality Act to ensure equality between women and men with regard to the acquisition, change and retention of nationality", - "values": [ - "3 - Considering action" - ] - }, - { - "text": "Envisage the ratification of the International Convention on the Protection of the Rights of All Migrant Workers and Members of Their Families which was signed by Togo in 2001", - "values": [ - "3 - Considering action" - ] - }, - { - "text": "Intensify its efforts in taking all necessary measures to stop violence and discrimination against religious groups ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Develop a policy aimed at strengthening the judiciary branch", - "values": [ - "4 - General action" - ] - }, - { - "text": "Maintain the humane policy that ensures the protection of the rights of migrants, and guarantee them access to justice, education and healthcare, regardless of their status", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Appeal the verdict made by the Amsterdam District Court in the case of Geert Wilders on the charges of incitement to hatred and discrimination ", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Endeavour to protect the security and rights of persons belonging to minorities, to bring to justice individuals and organizations that violate their rights and to ensure fair and proportional representation of all minorities in security apparatuses, governance and decision-making bodies at regional and federal levels", - "values": [ - "4 - General action" - ] - }, - { - "text": "Take fully into account the recommendations of the Special Rapporteur on Freedom of Religion aimed at promoting and fully ensuring freedom of religion for all religious communities throughout Azerbaijan", - "values": [ - "4 - General action" - ] - }, - { - "text": "Address the situation of persisting gender-based discrimination in political, social and economic life, including by eliminating all laws that discriminate against women ", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Consider the establishment of budgetary allotments to improve the conditions of the prison population", - "values": [ - "3 - Considering action" - ] - }, - { - "text": "Continue addressing the recommendations made by the Special Rapporteur on the situation of human rights and fundamental freedoms of indigenous people", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Continue to effectively and fully implement the National Strategy to Protect Children\u2019s Rights for the term 2012-2018", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Take steps towards the abolition of the death penalty", - "values": [ - "4 - General action" - ] - }, - { - "text": "Address seriously the issues of abductees, prisoners of war and separated families", - "values": [ - "4 - General action" - ] - }, - { - "text": "Ensure the independence and impartiality of the judiciary, and independent and impartial investigations of all allegations of human rights violations ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Pursue the adoption of the draft law on the rights of persons with disabilities in accordance with its international obligations, particularly under the International Convention on the Rights of Persons with Disabilities, ratified in 2009 ", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Continue its efforts in order to strengthen legislation to prevent and punish the use of boys and girls in pornography ", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Increase its efforts in the field of maternal health, educating birth attendants and increasing the number of obstetrics clinics throughout the country", - "values": [ - "4 - General action" - ] - }, - { - "text": "Ratify the Second Optional Protocol to the International Covenant on Civil and Political Rights Aimed at the Abolition of the Death Penalty (ICCPR-OP 2).", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Continue the implementation of measures to improve the access to health services by all children ", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Include sexual orientation and gender identity in equality laws and initiatives.", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Conclude as soon as possible the process towards the ratification of the ILO Convention (169) on indigenous and tribal peoples in independent countries and carry out the necessary internal normative adjustments to this end ", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Strengthen legislations to combat sexual offences against minors ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Continue its efforts to integrate the provisions of the human rights treaties it has ratified into the national law", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Strengthen measures aimed at protecting vulnerable persons and ensure that they have full access to natural resources", - "values": [ - "4 - General action" - ] - }, - { - "text": "Continue to appropriately implement all changes promised to its people and strengthen the dialogue mechanisms with civil society", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Complete the process of renovating correctional facilities and ensure that they adhere to approved international standards", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Complete its institutional efforts ensuring that international human rights norms adopted by Mexico have constitutional status and are applied as supreme law in courts proceedings", - "values": [ - "4 - General action" - ] - }, - { - "text": "Issue a standing invitation to the United Nations special procedure mandate holders and the representatives of the Inter-American Commission on Human Rights", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Ensure that relevant rules are applied equally irrespective of sex and adopt legislation to allow the transmission of nationality by naturalized Monegasque women to their children.", - "values": [ - "4 - General action" - ] - }, - { - "text": "Continue its efforts to ensure access to education for all children", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Implement all the recommendations of the United Nations Committee against Torture ", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Take necessary measures to the effective implementation of the Convention on the Rights of Persons with Disabilities, with due regard to the disabled children experiencing discrimination in accessing mainstream education", - "values": [ - "4 - General action" - ] - }, - { - "text": "Continue to carry out measures in the field of child rights protection ", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Continue to pay special attention to the disadvantaged sections of the society, in particular ethnic minorities and persons with disabilities, so as to ensure their fuller participation in the socio-political life of the country.", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Take further measures to ensure the promotion and protection of the rights of indigenous people ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Reject any plans for lowering the minimum age of criminal responsibility", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Ensure that the legislation on violence against women is specific and comprehensive, covering all forms of violence.", - "values": [ - "4 - General action" - ] - }, - { - "text": "Continue consultations towards this end [adoption a National Human Rights Action Plan] with stakeholders", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Continue working for inclusive education, facilitating the enrolment of children with disabilities and children of Roma ethnicity in regular educational centres", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Continue promoting and implementing its programs of social inclusion to make citizens' participation more active, and in particular the participation of minorities or excluded groups", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Continue efforts to combat child marriage", - "values": [ - "4 - General action" - ] - }, - { - "text": "Ensure that legislation defining the minimum legal age of marriage at 18 is enforced at all levels, everywhere in the country", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Pursue its efforts to overcome the problems faced by migrants, particularly in having access to education and to the labour and housing markets", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Continue efforts aimed at implementing existing national policies and plans to further strengthen health and education systems", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Continue strengthening the steps taken to ensure the protection of children in conflict with the law, including considering adopting restorative justice principles", - "values": [ - "3 - Considering action" - ] - }, - { - "text": "Expedite, as far as possible, the setting up of the National Human Rights Commission in order to have, together with civil society, a good overview of the situation in the country \n", - "values": [ - "4 - General action" - ] - }, - { - "text": "Enforce effectively both the existing and new laws to promote and protect the rights of women and children, as well as members of religious minorities, in order to promote tolerance and an inclusive society", - "values": [ - "4 - General action" - ] - }, - { - "text": "With regard to the fight against corruption, the Ministry of Justice, the Independent Anti-Corruption Office and the Committee for the Safeguard of Integrity had signed an agreement on 29 August 2014 to update their 10-year joint action plan. The three signatories had pledged to implement the action plan and increase efforts to combat corruption.", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Create an enabling environment for the independent operation of various media outlets, including guaranteeing their access to effective remedies in cases of alleged political pressure and interference", - "values": [ - "4 - General action" - ] - }, - { - "text": "Consider prioritizing the restoration of the rule of law in the country through, inter alia, the adoption of measures aimed at combating impunity ", - "values": [ - "3 - Considering action" - ] - }, - { - "text": "Expedite as a matter of priority the establishment of a hybrid court for South Sudan, in line with the Agreement on the Resolution of the Conflict in the Republic of South Sudan, to try violations of human rights and other serious crimes in South Sudan and ensure accountability of all perpetrators ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Continue to make the most of its experience within the framework of the South Asian Association for Regional Cooperation ", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Continue to practice the adoption and implementation of national action plans in various areas of human rights to implement certain recommendations accepted in the framework of the Universal Periodic Review ", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Ratify the Convention relating to the Status of Refugees of 1951 and its 1967 Protocol", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Foster a better understanding of the needs of young people and establish guidelines for their development", - "values": [ - "4 - General action" - ] - }, - { - "text": "Strengthen the public health system to ensure better access to primary care for all, especially through universal health coverage", - "values": [ - "4 - General action" - ] - }, - { - "text": "Take measures to ensure that persons with disabilities are recognized as a vulnerable group and can enjoy their economic, cultural and social rights", - "values": [ - "4 - General action" - ] - }, - { - "text": "Ensure equal access to education for all vulnerable people, including women, children and persons with disabilities", - "values": [ - "4 - General action" - ] - }, - { - "text": "Strengthen measures to ensure gender equality in law and in practice, in particular by applying positive measures for the participation of women in public life and the private sector", - "values": [ - "4 - General action" - ] - }, - { - "text": "By acceding to the Convention against Torture and other Cruel, Inhumane or Degrading Treatment or Punishment, the Republic of Azerbaijan took commitments for creating effective legislation, administrative, court and other measures for prevention of torture and systematic and purposeful steps in this direction were granted by the State.", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Maintain the efforts to meet the basic needs of the poor and other vulnerable groups with the view to achieving an adequate standard of living for all ", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Enact the Legal Education and Legal Practitioners Amendment Bill and the Legal Aid Bill currently pending before Parliament ", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Continue efforts to highlight the negative repercussions of both terrorism and unilateral coercive measures on national development plans and on the enjoyment of basic human rights by its citizens", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Ensure that adequate medical care is available to all persons in detention facilities maintained by the Government and militias affiliated with it", - "values": [ - "4 - General action" - ] - }, - { - "text": "Continue strengthening national laws and regulations in the view to avoiding violence and discrimination against migrant workers and raising awareness on the existence of cultural diversity", - "values": [ - "4 - General action" - ] - }, - { - "text": "Maintain and further build upon its HIV/AIDS preventive, care and treatment programmes ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Expedite the adoption of the Prevention and Combating of Hate Crime and Hate Speech Bill, ensuring a strong legal framework against such crimes", - "values": [ - "4 - General action" - ] - }, - { - "text": "Ensure the independence of SUHAKAM in accordance with the Paris Principles and amend act 597, so that the SUHAKAM's scope covers all rights in the Universal Declaration of Human Rights", - "values": [ - "4 - General action" - ] - }, - { - "text": "Promote gender equality including through an awareness-raising programme to combat negative stereotyping against women", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Adopt a national strategy and plan of action to ensure access to adequate and acceptable education for Roma children", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Recommends that steps be taken to guarantee the rights of detainees, including immediate access to a lawyer, information to families on detentions, and ensuring that judicial authorities are informed of all detentions.", - "values": [ - "4 - General action" - ] - }, - { - "text": "Continue incorporating new provisions into the legislative framework to reduce disparities between men and women, bearing in mind that half of the population are women ", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Expedite necessary legislative measures to expressly prohibit corporal punishment in all settings, including the family and alternative care settings", - "values": [ - "4 - General action" - ] - }, - { - "text": "Take measures to address concerns of racial discrimination in the application of its national policies ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Engender a convivial political atmosphere in order to facilitate speedy reconciliation among all groups, religious and minority", - "values": [ - "4 - General action" - ] - }, - { - "text": "Ensure that the rights of all children are equally protected under domestic law, regardless of gender, and consider implementing the recommendations of the Committee on the Rights of the Child", - "values": [ - "4 - General action" - ] - }, - { - "text": "Guarantee the life, integrity and physical safety of children and adolescents placed in State shelters, provide adequate reparation for the damages caused, prohibit corporal punishment of children in all settings, and repeal the legal exemptions endorsed in the Civil Code and Law", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Strengthen the participation of women in decision-making circles and leadership positions and enable them to play a role in all fields of development", - "values": [ - "4 - General action" - ] - }, - { - "text": "Include human rights education in training programme for the government officials", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Demand that Government representatives declare their assets as stipulated under the law and in a way that these could be verifiable ", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Speed up the process of the ratification of the ICCPR", - "values": [ - "4 - General action" - ] - }, - { - "text": "Carry out prompt investigations into all threats and attacks targeting human rights defenders and guarantee that those responsible are brought to justice and punished in a manner commensurate with the gravity of their acts", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Give consideration to ratifying the Optional Protocol to CAT", - "values": [ - "3 - Considering action" - ] - }, - { - "text": "Comply strictly with the normative provisions regarding the minimum age for marriage, and prevent and investigate cases of forced marriage, prosecuting the perpetrators and ensuring assistance to victims", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Take the measures necessary to end discrimination against women in the workplace, and to implement ILO recommendations to ensure equal remuneration for work of equal value in the public and private sectors", - "values": [ - "4 - General action" - ] - }, - { - "text": "Adopt the necessary measures to guarantee that norms that regulate the use of the force in activities relating to public security are in accordance with international human rights standards", - "values": [ - "4 - General action" - ] - }, - { - "text": "Adopt efficient measures to reduce prison overcrowding and enhance hosting conditions of penitentiary facilities and shelters ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Ensure that all counter-terrorism measures carried out fully comply with the international law obligations of Kenya", - "values": [ - "4 - General action" - ] - }, - { - "text": "Strengthen the protection of all people from racial discrimination by improving the existing draft pieces of legislation and passing them into law", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Intensify measures to advance women\u2019s rights, including vocational training of youth and measures relating to access to justice, and legislative reform, as well as implementation of gender responsiveness at all levels of governance and policymaking", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Strengthen the independence of the judiciary and the capacity of the judicial system", - "values": [ - "4 - General action" - ] - }, - { - "text": "Amend the Penal and Criminal Code to abolish generic crimes such as "activities against the State or society" ", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Establish a de jure moratorium on the death penalty and a commutation of all capital sentences with a view to its future abolition", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Speed up the process of ratification of CAT as one of the important steps in its commitment to the observance of human rights", - "values": [ - "4 - General action" - ] - }, - { - "text": "Set up a federal human rights institution", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Bolster the investigation of cases of gender-based violence and violence against journalists", - "values": [ - "4 - General action" - ] - }, - { - "text": "Pay particular attention to the process of judicial and legal reform by strengthening the legal framework", - "values": [ - "4 - General action" - ] - }, - { - "text": "Increase women in decision-making process", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Report back to the Human Rights Council. This should include the investigation of all cases of human rights violations committed during the twenty-year armed conflict and bringing to justice those responsible in trials meeting international standards and granting reparations to victims.", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Ratify/adhere to the international instruments to which it is not yet a party, such as ICCPR and its Second Optional Protocol, aiming at the abolition of the death penalty, ICESCR, CAT, CED, the International Convention on the Protection of the Rights of All Migrant Workers and Members of Their Families (ICRMW), and the Optional Protocols to CRC ", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Continue implementing the legislation on the protection of the rights of indigenous peoples and their lands, as well as the anti-discrimination laws, especially with regard to religion and physical conditions such as albinism", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Consider the possibility of acceding to the International Convention for the Protection of All Persons from Enforced Disappearance.", - "values": [ - "3 - Considering action" - ] - }, - { - "text": "Take further steps to encourage migrant children in all federal states to strive for higher education or to complete professional training after leaving school ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Continue ongoing legal reforms and seek technical assistance from relevant international partners, if deemed necessary.", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Take measures to promote and protect the human rights of women, namely, measures to prevent, to inform and to fight against discrimination and violence against them", - "values": [ - "4 - General action" - ] - }, - { - "text": "Further strengthen the policies to protect children\u2019s rights", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Seek technical assistance to address food security challenges in order to mitigate the negative effects of malnutrition and poverty", - "values": [ - "1 - Minimal action" - ] - }, - { - "text": "Speed up its efforts to reduce poverty and unemployment and decrease the economic and social disparities between the regions ", - "values": [ - "4 - General action" - ] - }, - { - "text": "The Government has highly valued the participation and contribution of the representatives of the civil society in the early stages of the review process, namely in carrying out an objective assessment of the human rights situation before being reviewed and it has been committed to continue the established cooperation with the civil society during the follow-up process. ", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Ensure compliance with its obligations under article 37 (a) of the Convention on the Rights of the Child not to impose capital punishment for offences committed by persons below 18 years of age.", - "values": [ - "4 - General action" - ] - }, - { - "text": "Consider participation of the Parliament in a human rights commissioner's appointment process ", - "values": [ - "3 - Considering action" - ] - }, - { - "text": "Ratify the Convention on the Protection of the Rights of All Migrant Workers and Members of Their Families ", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Continue the reform of the land tenure system to meet the national objectives of poverty reduction, food security and environmental protection ", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Continue exercising its sovereign right of implementing its penal code in conformity with the universally agreed human rights standards, including the application of the death penalty.", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Ratify the International Convention on the Protection of the Rights of Migrant Workers and Members of Their Families", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Continue to uphold and respect human rights standards and obligations as it pursues counter-terrorist operations", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Take steps to integrate in national legislation the provisions of both Optional Protocols to the CRC, once ratified, and to strengthen relevant national implementation mechanisms ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Ratify the Optional Protocols to ICCPR, ICESCR and CAT as well as the 1954 Convention relating to the Status of Stateless Persons, the 1961 Convention on the Reduction of Statelessness", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Ensure a sufficient health budget, full and equal access to health services, in particular adolescent, reproductive and family planning services and relevant education", - "values": [ - "4 - General action" - ] - }, - { - "text": "Release immediately and unconditionally all human rights defenders, student activists and political prisoners, and end ongoing trials of political detainees", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Increase cooperation and coordination between governmental institutions and the National Council for Women as the best framework to ensure that women's rights take root and promote women", - "values": [ - "4 - General action" - ] - }, - { - "text": "Accelerate efforts to establish an independent national human rights institution which is in conformity with the Paris Principles", - "values": [ - "4 - General action" - ] - }, - { - "text": "Take measures to ensure that children under 18 are protected against sale and trafficking, and that investigations and prosecutions of offenders were carried out, and penalties imposed ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Enact comprehensive anti-discrimination legislation and ensure that there are adequate means of redress ", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Revisit the Law concerning the Senegalese Commission of Human Rights to bring it into conformity with the Paris Principles", - "values": [ - "3 - Considering action" - ] - }, - { - "text": "Establish an independent body to investigate disputes over land, territories and resources", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Continue the measures to combat discrimination against LGBTI persons ", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Continue efforts to preserve national, cultural and religious diversity so as to promote harmony among ethnic groups and religions", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Accelerate the adoption of the draft law on narcotics, which exempts from criminal prosecution any consumer requiring medical follow-up", - "values": [ - "4 - General action" - ] - }, - { - "text": "Ratify the International Covenant on Civil and Political Rights and the International Covenant on Economic, Social and Cultural Rights", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Adopt measures to criminalize the recruitment of child soldiers, put an end to the impunity of persons involved in trafficking in organs or organizing child prostitution, and accompany these measures with a policy of access to basic services and to education for the most vulnerable children", - "values": [ - "4 - General action" - ] - }, - { - "text": "Continue efforts to improve quality education and ensure access to education in all areas of the country ", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Ensure that training of all military and security personnel does include a human rights component and that respect and protection of human rights during service is ensured and monitored", - "values": [ - "4 - General action" - ] - }, - { - "text": "Consider ratification of the Rome Statute of the International Criminal Court", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Strengthen the relevant measures with regard to combating prejudices and negative stereotypes affecting indigenous peoples and members of minorities, and assure protection against discrimination, particularly in employment, housing, health and education ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Find possibilities to strengthen the oversight of governmental and law enforcement agencies in the field of trafficking in human beings ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Respect and fortify the independence of the judiciary to ensure the fair and equal application of justice and the rule of law", - "values": [ - "4 - General action" - ] - }, - { - "text": "Mexico will follow up on the recommendations with the full participation of civil society and autonomous human rights institutions, through the Commission for Government Policy on Human Rights.", - "values": [ - "4 - General action" - ] - }, - { - "text": "Strengthen its programmes aimed at the promotion of the right to health ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Cooperate with special procedures and OHCHR by authorizing and facilitating procedures for the Special Rapporteur on the question of torture, the Special Rapporteur on the right to health, the Special Rapporteur on the situation of human rights defenders, the Special Rapporteur on the independence of judges and lawyers, the Special Rapporteur on freedom of opinion and expression, the Working Group on Arbitrary Detention, the Special Rapporteur on extrajudicial executions and the Special Rapporteur on violence against women requesting to visit the country.", - "values": [ - "4 - General action" - ] - }, - { - "text": "Consider ways to depoliticize ethnicity and promote policies of inclusion", - "values": [ - "3 - Considering action" - ] - }, - { - "text": "Continue its efforts to promote and facilitate school attendance, particularly among children from economically disadvantaged families.", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Continue supporting the family institution, which is one of the most important units in achieving goals of sustainable development goals in any State", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Respect the Paris Principles and put in place national mechanisms and institutions to monitor and follow up on the implementation of its international obligations ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Enact the draft law on domestic violence in full compliance with international standards", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Commit to the path of abolishing the capital punishment by adopting as soon as possible, a moratorium and commuting the sentences that have already been pronounced", - "values": [ - "4 - General action" - ] - }, - { - "text": "Strengthen measures to combat discrimination, with special attention to the situation of minorities, by adopting laws and policies for the effective promotion and protection of their rights", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Take all appropriate measures to address the issue of impunity and to implement adequate mechanisms of transitional justice.", - "values": [ - "4 - General action" - ] - }, - { - "text": "Establish a national human rights institution accredited by the International Coordinating Committee", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Adopt and enact the legislation banning female genital mutilation at the earliest possible stage", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Strengthen the programmes of the national policy for childhood", - "values": [ - "4 - General action" - ] - }, - { - "text": "Develop and implement, in cooperation with local customary authorities, a strategy to eliminate discriminatory traditional practices against women, including in respect of access to and ownership of land ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Expedite action taken to modify legislation to promote equality between men, women and children in matters of inheritance and succession", - "values": [ - "4 - General action" - ] - }, - { - "text": "Continue the work to achieve equal representation for men and women not only in the National Assembly, but also at all the levels of State powers", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Accord particular attention to the protection of the rights of migrant workers ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Pursue vigorously the action plan for the Roma, including ensuring equal treatment and easy access to social services for them", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Continue its effort to combat domestic violence and promote gender equality", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Continue its efforts to ensure the rights of persons with disabilities, including through the finalization of the ratification of CRPD ", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Adopt comprehensive measures to ensure access to justice, provision of compensation and assistance to facilitate reintegration into local communities for victims of trafficking, particularly women and children", - "values": [ - "4 - General action" - ] - }, - { - "text": "Take all the necessary measures to implement and enforce existing legal and regulatory frameworks on gender equality and non-discrimination", - "values": [ - "4 - General action" - ] - }, - { - "text": "Step up efforts on monitoring and evaluation of the activities related to women's empowerment and child protection through development of an appropriate monitoring system ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Continuously seek international support in terms of technical and financial assistance in order to increase capacity-building and to develop programmes and policies aimed at promoting the enjoyment of human rights to all citizens in key areas, such as health and education ", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Ensure that the relevant provisions of the Criminal Code are brought into line with the obligations of Morocco under the International Covenant on Civil and Political Rights, in particular with regard to freedom of speech and opinion", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Implement the necessary policies to encourage women to participate in political and public life", - "values": [ - "4 - General action" - ] - }, - { - "text": "Intensify its efforts to humanize its penitentiary system ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Consider going beyond current legislation and to ban corporal punishment, also in the private sector and in its Overseas Territories.", - "values": [ - "3 - Considering action" - ] - }, - { - "text": "End the policy of providing two different types of identity documents for trans and cisgender people", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Redouble its efforts to combat trafficking in persons and protect its victims, in particular children", - "values": [ - "4 - General action" - ] - }, - { - "text": "Ensure that the procedures governing registration of civil society organizations are in conformity with international human rights standards, transparent, nondiscriminatory, expeditious and inexpensive, and allow for the possibility to appeal ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Establish a formal moratorium on executions with a view to abolishing the death penalty and support the General Assembly resolution on the moratorium on the use of death penalty ", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Fully implement the Action Plan to end and prevent the recruitment of children into the armed forces", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Ratify a number of conventions, inter alia, the Rome Statute of the International Criminal Court and the CED.", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Continue efforts in its current economic and political platform that aim at protecting and guaranteeing people's rights, namely religious freedom.", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Implement special detention and internment centres for boys and girls, with a view to avoiding their future criminalization and to promote the reintegration into society", - "values": [ - "4 - General action" - ] - }, - { - "text": "Adopt and implement efficient measures to combat the persistence of trafficking and sexual exploitation ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Take positive and constructive measures in order to effectively reduce the deprivation under which the Palestinian people are living.", - "values": [ - "4 - General action" - ] - }, - { - "text": "Guarantee the right of Roma people to adequate housing, water and sanitation, work, education, and security of tenure of their settlements", - "values": [ - "4 - General action" - ] - }, - { - "text": "Adopt specific legal measures to better protect aliens and racial and ethnic groups against discrimination ", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Consider the possibility of ratifying other human rights core instruments", - "values": [ - "3 - Considering action" - ] - }, - { - "text": "Continue working on establishing a national human rights institution, in accordance with the Paris Principles", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Continue to involve Angolan civil society actors, notably those working in the field of human rights, in the implementation of the policy already defined by the Government", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Contribute towards combating impunity internationally, as soon as possible the mandate bestowed on it by the African Union and to bring the former head of State of Chad, Mr. Hissène Habré to justice ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Adopt legislative and administrative measures to prevent any form of discrimination against minority ethnic groups in education, health, employment, housing and other areas ", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Continue to promote the harmonization of laws, so as to make possible the legal framework necessary to implement the Convention against Torture", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Continue engaging members of the international donor community with a view to building capacity, particularly with regard to securing improvements in the economic and social rights situation of its population.", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Take all the appropriate measures to protect women and girls against all forms of sexual violence and ensure the full respect of the "Women, Peace and Security" resolutions of the Security Council, by ensuring an increased participation of women in decision-making regarding conflict resolution and peace process", - "values": [ - "4 - General action" - ] - }, - { - "text": "Extend the prohibition of corporal punishment to the home and the family ", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Take robust measures to promote gender equality and safeguard the rights of women and girls", - "values": [ - "4 - General action" - ] - }, - { - "text": "Continue supporting the activities of centres aimed at strengthening the rights of and opportunities for women and child victims of violence", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Become party to the Convention on the Elimination of All Forms of Discrimination against Women ", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Deploy the necessary efforts to improve the functioning of the courts dealing with sexual crimes in the country, while intensifying public awareness-raising campaigns aimed at reducing the underutilization of these courts", - "values": [ - "4 - General action" - ] - }, - { - "text": "Persevere in punishing offenders of women's rights.", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Sign or ratify the following international human rights instruments: the Optional Protocols to the Convention on the Rights of the Child, the Convention relating to the Status of Stateless Persons and the Convention on the Reduction of Statelessness, the Optional Protocol to the Convention on the Rights of Persons with Disabilities, the International Convention on the Protection of the Rights of All Migrant Workers and Members of Their Families, the Convention against Torture and Other Cruel, Inhuman or Degrading Treatment or Punishment, the Convention on the Prevention and Punishment of the Crime of Genocide, the Rome Statute of the International Criminal Court, and the Protocol to Prevent, Suppress and Punish Trafficking in Persons, especially Women and Children ", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Consider devising and implementing a national strategy for human rights education which would cover both the formal educational sector and a wider public for enhancing human rights awareness", - "values": [ - "3 - Considering action" - ] - }, - { - "text": "Continue advancing in the adoption of measures aimed at the non-discrimination of people on the basis of their sexual orientation or gender identity", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Take steps to fully harmonize the nationality law to provide women the right to acquire, change or retain their nationality, on an equal basis with men, in line with the provisions of the Convention on the Elimination of Discrimination against Women", - "values": [ - "4 - General action" - ] - }, - { - "text": "Legally prohibit discrimination on the grounds of sex, sexual orientation and gender identity and punish acts of violence that affect lesbian, gay, bisexual, transsexual and intersex persons", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Ensure freedom of expression, of assembly and of association in accordance with its international obligations and do not interfere with civil society organizations and their activities by excessive regulations which are formulated ambiguously", - "values": [ - "4 - General action" - ] - }, - { - "text": "Continue taking the necessary measures to strengthen the efforts aiming to combat discrimination and hatred of foreigners", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Make progress on the abolition of the death penalty", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Study the possibility of designing and implementing a national plan to combat discrimination against persons of African descent and indigenous peoples", - "values": [ - "3 - Considering action" - ] - }, - { - "text": "Cease to hinder the freedom of movement of UNAMID and humanitarian agencies ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Fight against stigmatization of child victims of exploitation and sexual abuse", - "values": [ - "4 - General action" - ] - }, - { - "text": "Promote non-violent methods of child-rearing and education and ensure that the law prohibiting corporal punishment is enforced", - "values": [ - "4 - General action" - ] - }, - { - "text": "Finalize the Programme of Action for the new Asylum, Migration and Integration Fund 2014-2020 in due time frame", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Create a genuinely favourable environment-free and safe- to promote functioning of truly independent media ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Take the necessary measures to ensure the entry into force of new education laws and ensure the expansion of intercultural programmes ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Fulfill its pledge to review the definition of torture in Egyptian law and ensure its consistency with the Convention against Torture in order to strengthen its fight against torture", - "values": [ - "3 - Considering action" - ] - }, - { - "text": "Repeal all provisions in domestic law allowing for the death penalty and establish an official moratorium on executions with a view to abolishing the death penalty", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Adopt a national plan owned by the different entities against racism, racial discrimination, xenophobia and intolerance", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Revise the Penal Code as well as other legislation such as the Family Code to ensure that they are in compliance with international standards ", - "values": [ - "3 - Considering action" - ] - }, - { - "text": "Create a strong, independent judiciary by training more judges, prosecutors and court clerks and establishing mixed chambers", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Pass legislation to combat trafficking in human beings in the form of sham marriages ", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Mainstream the issues of immigrant women into its employment policies and programmes", - "values": [ - "4 - General action" - ] - }, - { - "text": "Continue working on the design and implementation of programmes to promote the rights of specific groups, such as the project entitled - Policy and plan to fully integrate the Afro-Panamanian population - ", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Continue the application of policies and programmes on comprehensive and sustainable development", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Attach more importance to the protection of social vulnerable groups, including women, children, elderly and the poor people", - "values": [ - "4 - General action" - ] - }, - { - "text": "Continue its efforts to provide adequate housing and an adequate standard of living for all", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Continue efforts aimed at the ratification of the International Convention for the Protection of All Persons from Enforced Disappearance ", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Ensure compliance with the Standard Minimum Rules for the Treatment of Prisoners and guarantee all detainees access to a fair and equitable trial within a reasonable time frame", - "values": [ - "4 - General action" - ] - }, - { - "text": "Adopt and update a national plan of action on children's rights", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "End the use of life imprisonment without parole for offenders under the age of 18 at the age of crime, regardless of the nature of that crime", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Respect the right to life and maintain the abolition of the death penalty", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Adopt policy and legislative measures to establish a specific framework for the protection against discrimination based on sexual preference along with the abrogation of criminal provisions that criminalize consensual relations between adults of the same sex", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Expedite the setting up of the Human Rights Commission", - "values": [ - "4 - General action" - ] - }, - { - "text": "Conclude as soon as possible the drafting of the National Human Rights Plan of Action (para. 31 of the National Report)", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Seek to integrate human rights perspectives in its National Development Strategy, in particular as regards domestic violence ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Make efforts to improve cooperation with human rights mechanisms and special procedures by extending to them a standing invitation", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Take steps to fully implement the National Strategic Framework for Ending Child Marriage and allocate adequate resources to the Ending Child Marriage Unit within the Ministry of Gender, Children and Social Protection", - "values": [ - "4 - General action" - ] - }, - { - "text": "Increase the resource allocation for the health sector, especially to fulfil steps towards securing a comprehensive healthcare system", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Immediately reinstate the moratorium on the death penalty with a view to abolishing it", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Provide the opportunity to use personal names, place names, street names and other geographical indications in minority languages, as well as enabling the contact with the authorities in minority language on the territories where a significant part of the population belongs to those minorities", - "values": [ - "4 - General action" - ] - }, - { - "text": "Continue with its literacy programmes", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Put in place a comprehensive policy against violence to slightly reduce domestic/family violence and protect vulnerable populations ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Further facilitate the acquisition of citizenship by individuals born in the country who are children of non-citizens", - "values": [ - "4 - General action" - ] - }, - { - "text": "Reduce the vulnerability of migrants to exploitation and discrimination through, among other measures, the review of the system to grant work permits and raising awareness of employers", - "values": [ - "4 - General action" - ] - }, - { - "text": "Following the enactment of the Education Act (2013), adopt policies and regulations to strengthen access to and quality of education, which is free and compulsory for all school-aged children", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Strengthen the work on the fight against the trafficking of persons", - "values": [ - "4 - General action" - ] - }, - { - "text": "Enact comprehensive anti-discrimination legislation, including a prohibition on discrimination on grounds of ethnicity, sexual orientation and gender identity", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Further strengthen cooperation with other countries and relevant international organizations by sharing good experiences in achieving universal access to education and quality education for all", - "values": [ - "4 - General action" - ] - }, - { - "text": "Ensure prompt, thorough and impartial investigations into all cases of suspected extrajudicial executions and other use of force ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Consider fostering policies on land use and urban-rural inequality and continue efforts to combat poverty ", - "values": [ - "3 - Considering action" - ] - }, - { - "text": "Take measures towards respecting fully the principle of non-refoulement when it comes to a foreigner\u2019s refugee status", - "values": [ - "4 - General action" - ] - }, - { - "text": "Continue taking measures to eradicate gender discrimination and to promote effective equality and the overcoming of traditional stereotypes, for instance through awareness raising campaigns or programs at the education field", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Develop national mechanisms for the protection of vulnerable groups in the population", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Adopt the necessary measures to ensure that the implementation of the Organic Act on Communication is in conformity with the right to freedom of expression and the relevant international standards", - "values": [ - "4 - General action" - ] - }, - { - "text": "Continue to strengthen Government policies to ensure children are not exploited or trafficked", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Protect the rights of the indigenous communities in terms of exploiting and using their lands", - "values": [ - "4 - General action" - ] - }, - { - "text": "Amend relevant domestic legislation so as to offer married women the same level of protection against coerced sex as to unmarried women and remove the law which discriminates against a wife's and female child's right to inherit property", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Continue monitoring the guarantee of the exercise of the human right to drinking water and sanitation, respecting the principle of non-discrimination, granting specific attention to rural communities and vulnerable groups, and supporting the committees for drinking water and sanitation as well as the municipal governments ", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Continue to strengthen measures to ensure independence of the Office of the Human Rights Advocate ", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Continue its current efforts in the field of promotion and protection of women's rights", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Cooperation with the Human Rights Council in establishing a national mechanism to implement, over the next four years, the recommendations resulting from the universal periodic review", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "That the Parliament, the Government and all political parties take concrete steps to create a more enabling environment for Albanian women to advance in political and public positions ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Strengthen mechanisms at the national level to reduce poverty among members of socially vulnerable groups and the problems facing them, and share its experiences with interested developing countries", - "values": [ - "4 - General action" - ] - }, - { - "text": "Take all measures to abolish the use of the death penalty ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Adopt tangible actions to assist persons with disabilities, particularly in terms of access to the labour market and the fight against poverty and social exclusion", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Confirm the commitment by the Ministry of Education to implement the National Action Plan for Inclusive Education", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "End the prosecution of civilians in military courts and immediately transfer any cases of civilians facing proceedings before military courts to civilian courts", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Intensify efforts to guarantee equal opportunities for women in the public service, especially in senior governmental positions", - "values": [ - "4 - General action" - ] - }, - { - "text": "Accelerate the process for the ratification of the Convention on the Rights of Persons with Disabilities ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Consolidate its efforts towards improving all aspects of education and health in accordance with its National Action Plan ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Abolish the death penalty and sign and ratify both Optional Protocols to the ICCPR ", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Establish an independent national human rights institution in accordance with the Paris Principles ", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Intensify efforts to ensure that women and girls receive the same treatment as men and boys", - "values": [ - "4 - General action" - ] - }, - { - "text": "Implement effectively the law against torture, in particular in sentences for cruel, inhuman or degrading treatment inflicted to drug traffickers", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Establish a national human rights institution with a broad mandate and sufficient resources, in accordance with the Paris Principles, which includes concrete mandates regarding the rights of women and social, economic and cultural rights", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Foster harmonization of its domestic legislation with its international obligations", - "values": [ - "4 - General action" - ] - }, - { - "text": "Adopt effective measures to prevent and punish all forms of discrimination against minority groups by adding clear provisions to articles 25 to 27 of the Constitution to ensure the prohibition of discrimination on all grounds, including sexual orientation and gender identity, as well as by adding clear protection provisions in criminal laws concerning public assembly, obscenity and public nuisance", - "values": [ - "4 - General action" - ] - }, - { - "text": "Continue to work to improve conditions in its prisons, including through the implementation of the United Nations Body of Principles for the Protection of All Persons under Any Form of Detention and Imprisonment, and the United Nations Standard Minimum Rules for the Treatment of Prisoners ", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Continue with its efforts to ratify the International Convention for the Protection of All Persons from Enforced Disappearance", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Continue its positive efforts to promote and protect economic, social and cultural rights and combat poverty ", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Establish a national commission for women's and children's affairs ", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Prohibit discrimination on gender, disability, ethnicity and socioeconomic grounds, and adopt a comprehensive strategy to eliminate all forms of discrimination", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Ensure that the Professional Standards Unit of the Police complete its investigations in a timely fashion, and that it expand police training to address concerns about abuse by police ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Implement mechanisms to follow up UPR recommendations in order to verify the implementation and impact of policies and measures adopted to promote equality of rights and non-discrimination for all citizens, in particular the measures aimed at vulnerable groups such as women, children, ethnic minorities, the LGBTI community and persons in the situation of disability ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Seek assistance from the international community to define, in consultation with the Government, needs in the area of technical and financial assistance for implementing priority programmes in terms of the State policies to promote and protect human rights ", - "values": [ - "1 - Minimal action" - ] - }, - { - "text": "Take further action to combat corruption.", - "values": [ - "4 - General action" - ] - }, - { - "text": "Reconsider the relevant provisions of the new Constitution in order to ensure keeping access to abortion as a safe and legal option, and to ensure that the same protection and rights apply to every person regardless of their sexual orientation ", - "values": [ - "3 - Considering action" - ] - }, - { - "text": "Continue its efforts to draft and adopt its Children's Code, in accordance with its national human rights agenda", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Ratify and implement in the national legislation the Rome Statute of the International Criminal Court", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Give priority to penitentiary reform, allocating adequate resources, and provide responses to the lack of food and care and the fact that the laws and regulations on the prison system are out of date, as well as to the insufficient infrastructure, management and training. ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Continue applying the programs and measures aimed at guaranteeing health and education of quality for its citizens", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Increase efforts to prevent and combat all forms of abuse of children and adopt preventive measures and provide protection and services for their recover", - "values": [ - "4 - General action" - ] - }, - { - "text": "Ensure prompt and credible investigation of all alleged cases of sexual violence perpetrated by armed groups regardless their affiliation and provide appropriate redress to victims", - "values": [ - "4 - General action" - ] - }, - { - "text": "Launch awareness campaigns and financially support NGOs working in the area of crimes related to prejudice and hate", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Withdraw reservation to article 37 of the CRC and strengthen procedures and child protection services in cases of ill-treatment", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Continue to apply a zero-tolerance approach against torture and cruel, inhuman and degrading punishments, in line with domestic legislation and international human rights law", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Take the necessary measures to combat all forms of intolerance and offences motivated by hatred or racial considerations", - "values": [ - "4 - General action" - ] - }, - { - "text": "All levels of Government in Bosnia and Herzegovina consider providing equal access to sexual and reproductive health education and services, including affordable modern methods of contraception", - "values": [ - "3 - Considering action" - ] - }, - { - "text": "Undertake continued action including legislation to address the marginalization of women, children and other vulnerable groups from socio-economic and political spheres ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Strengthen the state of laws, grass-root democracy and social equitability ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Consider ratifying the conventions on stateless persons ", - "values": [ - "3 - Considering action" - ] - }, - { - "text": "Sri Lanka will continue to work towards the economic development of the Eastern Province, which will uplift standards of living and the realization of social, economic and cultural rights, and also assist strengthening and smooth functioning of democratic institutions. Sri Lanka will also promote the dissemination and inculcation of best practices, good governance and political pluralism, as well as take measures for the rehabilitation and reintegration of ex-combatants, particularly children and young persons", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Continue to implement measures to enhance the protection of women and girls against violence", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Establish a moratorium on executions with a view to abolishing the death penalty ", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Adopt the necessary measures to guarantee the independence and impartiality of the judiciary, ensuring to all persons the respect of due process guarantees, in accordance with article 14 of International Covenant on Civil and Political Rights", - "values": [ - "4 - General action" - ] - }, - { - "text": "Increase its efforts to provide mediation machinery to provide victims of discrimination on the basis of sexual orientation more accessible and rapid remedies. ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Abolish the death penalty in its Constitution. Despite a de facto moratorium, people continue to be sentenced to death", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Ensure freedom of expression in conformity with the principles of the Constitution and adopt additional measures to put this in practice ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Review its discriminatory national laws on security and adopt sensitization campaigns to protect against racial profiling and stereotyping on the grounds of nationality, ethnicity, descent and race, with regards to terrorism, as suggested by CERD", - "values": [ - "3 - Considering action" - ] - }, - { - "text": "Continue to combat all forms of violence against children, including trafficking of children and violence against so-called "witch children"", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Continue to cooperate with the African Union and the United Nations mechanisms established to assist with the resolution of the situation in Somalia ", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Guarantee freedom of expression, press, associations and peaceful assembly of journalists, activists and participants in demonstrations", - "values": [ - "4 - General action" - ] - }, - { - "text": "Strengthen the interministerial committee to combat trafficking in persons to provide effective protection to victims of trafficking, particularly women and children", - "values": [ - "4 - General action" - ] - }, - { - "text": "Issue and implement a standing invitation to all special procedures ", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Provide children with child-sensitive mechanisms for lodging complaints in case they are victims of violence and sexual exploitation ", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Establish an independent national human rights institution with a broad mandate and matching resources in line with the Paris Principles", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Continue to adopt gender-responsive policies and programmes to cultivate a conducive environment for women's development and empowerment", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Continue with current activities and efforts to ensure that the establishment of democracy and a democratic culture of governance in the country are firmly entrenched and made sustainable through completion of the institution and capacity-building process and the process of enacting various laws and regulations as may be required by the Constitution ", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Amend legislation to decriminalize defamation, slander and libel and convert them into matters regulated by civil law rights standards set by the United Nations and the Inter-American Commission on Human Rights observations and recommendations", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Reverse its position favouring a three-year extension for the Transitional Federal Parliament and instead adopt a one-year extension coupled with governmental reforms and benchmarks, including the completion of a national Constitution within one year, and elections for the President and Speaker of Parliament in summer 2011", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Act upon the resolutions adopted by the Human Rights Council", - "values": [ - "4 - General action" - ] - }, - { - "text": "Undertake efforts to improve all prison facilities in Guyana ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Provide greater protections and assistance for member of vulnerable groups and uphold the rights of vulnerable groups by combating gender-based violence, child labour, statelessness, and human trafficking more broadly ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Consistent with the observations of the Committee on the Elimination of Racial Discrimination and the Special Rapporteur on the situation of human rights and fundamental freedoms of indigenous peoples, continue the new dialogue between the State and the Maori regarding the Foreshore and Seabed Act of 2004, in order to find a way of mitigating its discriminatory effects through a mechanism involving prior informed consent of those affected.", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Continue to strengthen the victim and witness protection programme under the Justice and Peace Law and allocate sufficient resources.", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Provide constitutional bodies, such as the National Human Rights Commission, and relevant government entities with the necessary mandate to effectively investigate and document all crimes against ethnic and religious minorities with a view to prosecuting those responsible", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Continue efforts in the prevention of violence against children", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Pay particular attention to the rights of the child, especially in combating trafficking and exploitation", - "values": [ - "4 - General action" - ] - }, - { - "text": "Positively consider adopting specific legislation on domestic violence, especially violence against women, with a view to ensuring synergy with the implementation of the national action plan 2015-2019 for combating genderbased violence", - "values": [ - "3 - Considering action" - ] - }, - { - "text": "Intensify gender efforts, amending relevant legal provisions which establish subordination to male guardianship and adopt a comprehensive gender policy and awareness campaigns aimed at all areas of society and public administration ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Extend a standing invitation to the special procedures of the Human Rights Council and coordinate in the shortest possible terms the requested visits", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Protect the natural family and marriage, formed by a husband and a wife, as a basic cell of society as it provides the best conditions for raising children ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Continue to apply programmes and measures to tackle the challenges that Chad has been facing since 2009, particularly when it comes to child labour, violence against women and entrenched poverty", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Actively participate in the work of the Human Rights Council on the basis of dialogue and cooperation to contribute to enhancement of the capacity, effectiveness, transparency and objectivity of the Council ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Improve the health services", - "values": [ - "4 - General action" - ] - }, - { - "text": "Ratify the two Optional Protocols to the Convention on the Rights of the Child, on the involvement of children in armed conflict and on the sale of children, child prostitution and child pornography", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Repeal provisions of the legislation regulating NGOs that require the registration of organizations receiving financial support from outside sources as "foreign agents" ", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "That the visit by the Working Group on enforced or involuntary Disappearances agreed upon in principle take place within 2009", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Continue to give special emphasis to address the issue of women's illiteracy", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Continue including young people in the democratic process through the commission established for this purpose", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Take further action to further reduce the high rate of maternal and infant mortality and provide full access to health care and health education by women, and address problems relating to poverty, hard work and illiteracy ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Take a human rights approach to issues of race, citizenship and religion to foster an inclusive society in which all are equally protected ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Accelerate its accession to several international human rights instruments in order to make up for the backlog in this area ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Release, immediately and unconditionally, all detainees, who have participated in peaceful protests lacking credible criminal charges ", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Give due consideration to the establishment of a national human rights institution in accordance with the Paris Principles ", - "values": [ - "3 - Considering action" - ] - }, - { - "text": "Ensure full respect of the institutional balance established by the Constitution, and take the necessary measures to restore as early as possible the prerogatives of the elected parliament", - "values": [ - "4 - General action" - ] - }, - { - "text": "Become a party to CAT and take the necessary national measures to comply with its provisions ", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Consider ratifying or accede to the Rome Statute of the ICC, to implement it fully at the national level, and accede to the Agreement on Privileges and Immunities", - "values": [ - "3 - Considering action" - ] - }, - { - "text": "Continue paying particular attention to the conditions of vulnerable groups such as persons with disabilities and indigenous peoples.", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Increase human and financial investments to support effective implementation of National Policies for Women and Gender Equality and Child Protection", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Adopt the announced national human rights programme which will serve to define and measure courses of action for ensuring compliance with the constitutional principles relating to human rights", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Abolish the death penalty for all persons considered as minors under international law ", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Take further legislative and other steps to enhance women's rights and consider accession by Kuwait to the Optional Protocol to CEDAW (OP-CEDAW) as well as the withdrawal of its reservations to CEDAW ", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Adopt comprehensive legislation on fighting all forms of sexual harassment in relation to women and children ", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Consider ratifying the International Convention for the Protection of All Persons from Enforced Disappearance, to and accept the competence of the relevant committee", - "values": [ - "3 - Considering action" - ] - }, - { - "text": "Establish a formal moratorium on the death penalty with a view to ratifying the Second Optional Protocol to the International Covenant on Civil and Political Rights", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Guarantee to victims of crimes punished by international law access to mechanisms of national justice in order that they can request reparation", - "values": [ - "4 - General action" - ] - }, - { - "text": "Take steps, including by implementation of gender quotas for candidates presented for election by political parties to increase women's representation in public and political life", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Allow the courts or another politically independent body to hear final appeals against the cancellation or denial of passports, visas or other Nauruan travel documents", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Continue promoting social values among children and youth through public programs, so that they contribute to their full development and prevent tragedies such as suicide or drug use", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Continue work on introducing awareness-raising and educational programmes on human rights into the curricula of schools and universities and on organizing relevant programmes for civil servants ", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Undertake further efforts to eliminate gender discrimination in the labour market and guarantee equal pay for equal work", - "values": [ - "4 - General action" - ] - }, - { - "text": "Withdraw its reservations to the International Convention on the Elimination of All Forms of Racial Discrimination (ICERD), ICESCR and ICCPR ", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Take all measures to ensure that the counter-terrorism efforts in Yemen are applied in accordance with human rights obligations.", - "values": [ - "4 - General action" - ] - }, - { - "text": "Urge to take measures for the introduction of specific modules on human rights at all levels of education, and to continue its cooperation with international and regional human rights mechanisms, boost the national framework of humanitarian consultation created by the decree of 23 January 2013 and to strengthen the role of NGOs' interface and civil society ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Ratify the Rome Statute and fully cooperate with the International Criminal Court that those responsible for crimes under international law are prosecuted and justice for the victims is guaranteed", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Restore the right to receive pensions for those deprived of it merely because they had expressed an opinion against the Government", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Amend its Criminal Code, specifically to make the racial motivation of a crime an aggravating circumstance and to allow for enhanced punishment to combat the occurrence of such acts", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Continue raising public awareness to combat discrimination, particularly those stemming from Islamophobia and fears of terrorism", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Establish a National Human Rights Institution in compliance with the Paris Principles ", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Ensure full implementation of laws prohibiting corporal punishment in all settings, including through campaigns to raise awareness among adults and children, as well as the promotion of positive and non-violent forms of discipline that do not affect the upbringing of children", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Create the conditions that allow the Human Rights Ombudsperson to acquire A status according to the Paris Principles, by enlarging its mandate to receive allegations of torture and abuse and by providing it with the necessary resources to enable it to fulfil its functions", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Apply the Recommended Principles and Guidelines of OHCHR when addressing the issue of trafficking", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Review the order, 39/GM/2003 (despacho) banning pregnant girls to attend day schools", - "values": [ - "3 - Considering action" - ] - }, - { - "text": "Develop and implement education and awareness-raising campaigns to promote diversity and respect, while condemning racism and xenophobia", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Ensure that all reports of domestic violence are thoroughly investigated and that the perpetrators are brought to justice ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Maintain its policy of broadening and strengthening international cooperation in the sphere of human rights", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Extend, before the end of 2016, a standing invitation to the Special Rapporteur on the promotion and protection of the right to freedom of opinion and expression as well as to the Working Group on Enforced or Involuntary Disappearances", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Join ILO and ratify core conventions, particularly Nos. 105, 182 and 138, and allow related monitoring by ILO staff ", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Increase efforts to implement the recommendations of treaty bodies and to use the ongoing negotiations on a new constitution to include general non-discrimination provisions for all Israeli citizens.", - "values": [ - "4 - General action" - ] - }, - { - "text": "Proceed to the ratification of the International Convention for the Protection of the Rights of All Migrant Workers and Members of Their Families, in conformity with recommendation No. 1737, of 17 March 2006, of the Council of Europe Parliamentary Assembly, of which Sweden is an active member", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Immediately ratify ICCPR and its Optional Protocols, and incorporate the provisions into national legislation", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Continue to ensure, as established, individual and collective religious assistance to those inmates who request it ", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Launch a campaign to disarm the civilian population that supports the reduction of death rates related to gun violence", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Enhance public accountability for the judiciary by limiting political interference, increasing transparency in judicial processes, and ensuring all judicial staff hiring is merit-based", - "values": [ - "4 - General action" - ] - }, - { - "text": "Adopt a national policy to ensure equality between men and women ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Undertake credible and independent investigations of alleged human rights violations in the Somali Region ", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Intensify efforts to counter violence against women and children", - "values": [ - "4 - General action" - ] - }, - { - "text": "Continue to ensure that its terrorism prevention legislation and measures comply with the international human rights standards ", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Create a board of independent inspectors examining conditions in detention facilities and the behaviour of police officers", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Work with all sectors to ensure the Human Rights and Equality Commission is an effective agent for enhancing the country's commitment to human rights", - "values": [ - "4 - General action" - ] - }, - { - "text": "Intensify efforts to combat racism, racial discrimination and xenophobia", - "values": [ - "4 - General action" - ] - }, - { - "text": "Continue strengthening the national human rights institution in accordance with Paris Principles, especially in terms of increasing its independence and authority", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Bring the prison and detention conditions in line with international human rights norms and standards, including the Nelson Mandela Rules", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Make additional efforts to fight against homophobia, discrimination and violence against LGBT persons", - "values": [ - "4 - General action" - ] - }, - { - "text": "Carefully consider the implementation of the recommendations of the Committee on Economic, Social and Cultural Rights on women's reproductive health and rights.", - "values": [ - "3 - Considering action" - ] - }, - { - "text": "Strengthen cooperation with the international community and organizations including the United Nations Children's Fund (UNICEF), OHCHR and ILO with a view to building capacity and getting technical advice and assistance on matters related to addressing trafficking in persons ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Consider the appropriateness of establishing a national human rights institution in compliance with the Paris Principles", - "values": [ - "3 - Considering action" - ] - }, - { - "text": "Strengthen efforts to ensure the functionality of monitoring and reporting mechanism of violations of the rights of the child in the entire country, especially in rural areas ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Ensure that no one is detained for political reasons ", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Consider ratification of the Optional Protocols to the International Covenant on Economic, Social and Cultural Rights and to the Convention against Torture and Other Cruel, Inhuman or Degrading Treatment or Punishment ", - "values": [ - "3 - Considering action" - ] - }, - { - "text": "Strengthen its efforts to fully implement legislation on violence against women and children and prosecution and convictions of perpetrators and to ensure that all programmes, projects and measures to combat violence against women also reach Roma women ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Introduce a specific article on domestic violence in the framework of the forthcoming reform of the criminal code", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Make efforts to achieve gender equality, including through adoption of the Property Rights of Spouses Bill and the Intestate Succession Bill", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Take all the necessary measures to combat violence linked to racial discrimination, as well as hate crimes and speeches, including against refugees and migrants", - "values": [ - "4 - General action" - ] - }, - { - "text": "Make sure that sexual and reproductive rights are respected and protected ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Unconditionally abolish its extraterritorial legislation on human rights and related matters, including the "North Korea Human Rights Act"", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Continue progressing with its efforts to strengthen the National Police with the aim of consolidating a police force that guarantees the due safety of citizens to exercise their fundamental rights", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Amend Article 37 of the 1998 Employment Equality Act in order to prevent such discrimination against homosexuals and unmarried parents", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Take mandatory measures to reduce the wage gap between men and women in all areas, and to promote better representation of women in leadership positions", - "values": [ - "4 - General action" - ] - }, - { - "text": "Continue the reforms to improve policies and programmes towards promotion and protection of human rights", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Continue to support the UN human rights funds ", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Accelerate the free twelve year compulsory education ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Undertake concrete steps to guarantee the rights of women as enshrined in international conventions.", - "values": [ - "4 - General action" - ] - }, - { - "text": "Halt the colonization with illegal settlements and the destruction of the homes, cultural and religious sites of the Palestinian people", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Call on the international community to offer very much needed technical assistance to Tuvalu as stipulated and outlined in paragraph 77 of the national report and to address the call by Tuvalu for technical assistance in the establishment of a human rights institution.", - "values": [ - "1 - Minimal action" - ] - }, - { - "text": "Consider further actions to promote better access to education for children in Greenland and in the Faroe Islands", - "values": [ - "3 - Considering action" - ] - }, - { - "text": "Withdraw the draft law on "formation of positive attitude to non-traditional sexual relations'' and develop and implement comprehensive anti-discrimination legislation, in close cooperation with civil society", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Combat impunity by ensuring prompt, thorough and transparent investigations of all violations against human rights defenders, and the prosecution of perpetrators", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Continue the measures to promote women rights, including the advancement of women's empowerment ", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Conduct independent and impartial inquiry in relation to all enforced disappearances and extrajudicial executions and that the perpetrators of these crimes be brought to justice ", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Secure greater investment in the education sector, without delay, in order to achieve the Education for All goal by 2015 ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Adopt all necessary measures, in accordance with article 7, paragraph 1, of the Convention on the Rights of the Child, to guarantee the registration of all girls and boys at birth in Solomon Islands, as well as for those persons who have not been registered at birth ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Continue its achievements in the area of freedom of religion", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Take other urgent measures for the re-integration of children who have surrendered to the governmental forces asking for special protection or who are currently held in prisons.", - "values": [ - "4 - General action" - ] - }, - { - "text": "Undertake relevant safe measures on migrants trying to reach Australian borders according to the International Convention on the Protection of the Rights of All Migrant Workers and Members of Their Families", - "values": [ - "4 - General action" - ] - }, - { - "text": "Ratify the ICRMW, in order to better protect the rights of migrant workers, including undocumented migrant workers", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Take further action to protect the rights of migrants in view of the persistent reports on violations of the rights of migrants", - "values": [ - "4 - General action" - ] - }, - { - "text": "Continue efforts to find solutions to improve the situation of IDPs and refugees ", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Extend the mandate of the Federal Anti-Discrimination Agency with adequate resources, as part of strengthening the anti-discrimination structures ", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Continue to work towards improving child healthcare within the framework of its Integrated Management of Childhood Illnesses Strategy ", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Strengthen the implementation in practice, of the law on the eradication of violence against women, particularly through the implementation of strategic action plans and the establishment of units for comprehensive care to victims, with emphasis on regions and localities ", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Complete the exercises in strengthening national legal and administrative frameworks in order for them to be in line with human rights principles by fully implementing those frameworks, in particular the 2009 law on the Elimination of Violence against Women and the inclusion of restorative justice principles in the 2004 Juvenile Code ", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Proceed with child protection legislative reform ", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Adopt and fully implement as soon as possible the national action plan against domestic violence", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Implement institutional reforms to abolish current provisions on the death penalty ", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Create and maintain a safe and enabling environment for civil society actors to freely associate, by amending relevant laws and ensuring they are not invoked to curtail the right to freedom of peaceful assembly", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Adopt measures to decriminalise consensual sexual acts among adults of the same sex so as to adapt its legislation to the International Covenant on Civil and Political Rights ", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Adopt a comprehensive law against discrimination on all grounds, including legal protection of victims", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Review the national action plan against trafficking, strengthening coordination between the Confederation, cantons and civil society to ensure a harmonized, robust and victim-oriented response", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Strengthen the adoption of necessary measures to implement a national programme aimed at eliminating violence against children ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Continue its progressive efforts and measures to implement the second NHRAP", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Develop an environmental strategy in line with international standards", - "values": [ - "4 - General action" - ] - }, - { - "text": "Consider undertaking educational and awareness-raising actions promoting co-responsibility in the domestic sphere and preventing domestic violence", - "values": [ - "3 - Considering action" - ] - }, - { - "text": "Consider the implementation of the necessary safeguards for the protection of children against corporal punishment", - "values": [ - "4 - General action" - ] - }, - { - "text": "Give favourable consideration to prohibit the death penalty and corporal punishment in the Constitution and Ethiopian legislation in the area of the right to life ", - "values": [ - "3 - Considering action" - ] - }, - { - "text": "Continue measure to provide human rights trainings and capacity-building to civil servants and law-enforcement officials in line with the world programme for human Rights Education", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Review its national legislation by enacting specific provisions to cooperate promptly and fully with the International Criminal Court ", - "values": [ - "3 - Considering action" - ] - }, - { - "text": "Ensure that the new labour legislation includes provisions prohibiting discrimination both in the employment and the recruitment procedures, as set out in ILO Convention No. 111 ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Continue to share its experiences in the area of health ", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Adopt concrete grassroots programmes to sensitize communities to abolish cultural practices which violate the human rights, life and dignity of women and young girls.", - "values": [ - "4 - General action" - ] - }, - { - "text": "Continue advancing in the fight against torture and ill-treatment in the administration of justice, of the security forces of the State and in the penitentiary centres", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Take legislative measures to ensure that all children are effectively protected from sexual exploitation", - "values": [ - "4 - General action" - ] - }, - { - "text": "Criminalize female genital mutilation", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Take further legal, political and practical measures to reduce the phenomenon of non-citizens", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Intensify its efforts to ensure that Indigenous Peoples and the Afro- Peruvian community fully enjoy economic, social and cultural rights, as enshrined in the Universal Declaration on Human Rights", - "values": [ - "4 - General action" - ] - }, - { - "text": "Expedite staffing of the Ombudsman office and strengthen it by allocating the necessary budget", - "values": [ - "4 - General action" - ] - }, - { - "text": "Immediately release all Palestinian, Syrian and other Arab prisoners and detainees", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Consider the possibility of signing and-or ratifying OP-CESCR ", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Accede to the Convention on the Rights of Persons with Disabilities while bringing the Mental Health Act of 2001 into line with the provisions of this Convention", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Ensure the judiciary, including the Supreme Council of the Judiciary (CSPJ) is provided with adequate resources and able to operate free from political interference ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Amend the National Security Law to provide clarity and prevent abusive interpretations of the law", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Increase efforts to develop a system of education in the area of human rights and to strengthen the culture of human rights in society", - "values": [ - "4 - General action" - ] - }, - { - "text": "Implement awareness raising programmes and provide support to women victims of violence as well as adopt a national plan which guarantees access to reproductive health services", - "values": [ - "4 - General action" - ] - }, - { - "text": "Strengthen criminal legislation with regard to trafficking of children and women ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Cooperate with all the United Nations human rights mechanisms and engage with OHCHR", - "values": [ - "4 - General action" - ] - }, - { - "text": "Take measures to enable the adequate representation of all components of society in all organs of government, particularly women and ethnic minorities", - "values": [ - "4 - General action" - ] - }, - { - "text": "Prevent the introduction of new laws that would go against media pluralism and freedom", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Redouble efforts to implement the recommendations of the Committee on the Rights of the Child concerning the application of environmental rules to ensure universal access to drinking water and sanitation ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Ensure the rights of indigenous peoples, in particular the rights to traditional lands, territories and resources, and their right to be consulted ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Not to treat the issue of Hijab for Muslims as if it were only an accessory or a religious symbol rather than a compulsory religious edict that a large number of Muslim women want to observe", - "values": [ - "4 - General action" - ] - }, - { - "text": "Consider reforming its legislation with a view to abolishing the death penalty, in the meantime, a formal moratorium on such punishment should be adopted", - "values": [ - "3 - Considering action" - ] - }, - { - "text": "Explicitly prohibit corporal punishment in the family and implement existing prohibitions", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Accept outstanding requests from special mandate holders, including that of the Special Rapporteur on the independence of judges and lawyers, to visit Fiji", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Protect and respect the right to freedom of expression and introduce legislation and institutions to ensure the independence of the media, prevent censorship and promote transparency in public affairs", - "values": [ - "4 - General action" - ] - }, - { - "text": "Agree to the request for visit by the Special Rapporteur on the Rights and Fundamental Freedoms of Indigenous Peoples.", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Further the work on various ministerial decisions and the implementation of monitoring mechanisms on protection of migrant workers from human rights violation", - "values": [ - "4 - General action" - ] - }, - { - "text": "Tackle advocacy of religious hatred that constitutes incitement to discrimination, hostility or violence in political discourse and in the media", - "values": [ - "4 - General action" - ] - }, - { - "text": "Continue to narrow wage disparities between men and women in line with the country\u2019s Equal Pay Programme for 2016-2019", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Increase resources to address gender-based violence", - "values": [ - "4 - General action" - ] - }, - { - "text": "Step up the cooperation with the special procedures of the Human Rights Council and eventually consider extending a standing invitation to all special procedures mandate holders of the Human Rights Council", - "values": [ - "4 - General action" - ] - }, - { - "text": "Implement in a comprehensive manner the national plan against female genital mutilation and allocate adequate resources to this end ", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Ensure that all acts of violence against women and girls are criminalized, that perpetrators are prosecuted and punished, and that victims of violence have access to immediate measures of protection, reparations and social reintegration ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Establish a prosecution mechanism for perpetrators of violence against women and girls", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Request a major degree of solidarity and cooperation from neighbouring States in response to the problematic of being a landlocked country and in terms of the right of development for all ", - "values": [ - "1 - Minimal action" - ] - }, - { - "text": "Restrict the use of the death penalty to crimes that meet the threshold of \u201cmost serious crimes\u201c under international law", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Continue to strengthen its efforts aimed at economic development, with particular emphasis on improvement of social infrastructure for service provision", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Prosecute and punish traffickers and those who exploit the prostitution of women, and also protect victims of trafficking ", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Decriminalize the irregular crossing of borders and strengthen mechanisms for detecting, identifying and assisting vulnerable migrants on the borders, including minors, possible asylum seekers and victims of human trafficking", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Evaluate the possibility of increasing its efforts to prevent, criminalize and eliminate all forms of violence against women, including measures aimed at the promotion of their rights and the elimination of patriarchal and discriminatory stereotypes ", - "values": [ - "3 - Considering action" - ] - }, - { - "text": "Adapt labour legislation and improve existing practices with a view to ensuring equal pay for women and overcoming any pay inequalities", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Continue to promote its successful social policies in favour of its people, with special attention to the most vulnerable sectors", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Withdraw its reservations to CEDAW and ratify the Optional Protocol to CEDAW", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Continue to implement the national strategic plan for education, with special emphasis on the right to education of vulnerable groups including children living in rural areas, persons with disabilities, nomads and internally displaced persons", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Establish a national institution on human rights in accordance with the Paris Principles", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Redouble the efforts to ensure that women are represented in political life and implement recommendations of the Truth and Reconciliation Commission in that regard ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Adopt measures to end discrimination and violence based on sexual orientation and gender identity, actual or perceived, in compliance with its human rights obligations", - "values": [ - "4 - General action" - ] - }, - { - "text": "Investigate all complaints of harassment and persecution against human rights defenders and non-governmental organizations, and sanction those responsible ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Adopt and seek technical assistance from donor agencies to implement a national training programme for judges, lawyers, civil society groups and schoolchildren on their rights to water, food security, life, education and health in relation to climate change, and the ways in which the courts can help to develop a Pacific jurisprudence on the relationship between climate change and human rights", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Become a party to CAT", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Make further efforts to combat violence and sexual abuses against children for the effective realization of their rights.", - "values": [ - "4 - General action" - ] - }, - { - "text": "Continue adopting a job friendly policy and ensuring equal employment opportunities for urban and rural residents", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Continue strengthening the institutional mechanism for the promotion and protection of human rights ", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Fully investigate allegations of corruption and criminality within the police force", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Ensure the effective implementation of the Convention on the Elimination of All Forms of Discrimination against Women and actively promote gender equality", - "values": [ - "4 - General action" - ] - }, - { - "text": "Consider ratifying the Convention on the Rights of Persons with Disabilities and its Optional Protocol", - "values": [ - "3 - Considering action" - ] - }, - { - "text": "Continue efforts to alleviate discrimination and support inclusion efforts for members of minority groups", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Ratify the Rome Statute of ICC and fully align legislation with all the obligations under the Rome Statute ", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Ratify and effectively implement the Optional Protocol to the Convention on the Rights of the Child on a communications procedure", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Continue attaching great importance to education and solve effectively the problem of children dropping out of school, so as to guarantee their right to education", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Ensure that the judiciary is independent and free of political interference, and combat corruption, irregularities and delays in the administration of justice", - "values": [ - "4 - General action" - ] - }, - { - "text": "Adopt legislation at the national and provincial levels to protect human rights defenders and take effective measures to ensure its implementation. ", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Expedite the implementation of an efficient and autonomous National Preventive Mechanism, as stipulated in the OP-CAT and ensure that it enjoys the independence, resources and other conditions needed to fulfil its task", - "values": [ - "4 - General action" - ] - }, - { - "text": "Ensure that the proposed new Bill of Rights to replace the Human Rights Act, if adopted, does not remove or weaken any human rights protection granted under the current Act", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Continue to accelerate efforts to resolve the situation in the Southern Border Provinces and ensure the reconciliation remains a priority ", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Ensure the independent, impartial, and effective functioning of the National Human Rights Commission in line with the Paris Principles ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Ratify and implement OP-CRC-SC on the sale of the children, child prostitution and child pornography ", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Consider establishing a moratorium on the death penalty ", - "values": [ - "3 - Considering action" - ] - }, - { - "text": "End all torture or ill-treatment of detainees and the use of unlawful interrogation methods", - "values": [ - "4 - General action" - ] - }, - { - "text": "Continue the process necessary for the adoption of the comprehensive anti-discrimination law", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Authorities ensure separate incarceration of juveniles and adults and of pre-trial detainees and convicted prisoners", - "values": [ - "4 - General action" - ] - }, - { - "text": "Intensify efforts in the fight against trafficking in persons, in particular women and children", - "values": [ - "4 - General action" - ] - }, - { - "text": "Continue taking active measures to eliminate all forms of discrimination against women", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Raise the minimum age for domestic work to 18 years of age, and strongly reconsider increasing the minimum wage in this sector", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Enforce the prohibition of all corporal punishment of children in all settings, including in the domestic sphere and in care settings", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Consider fostering national strategies to combat child labour and to promote decent work.", - "values": [ - "3 - Considering action" - ] - }, - { - "text": "Implement measures for the improvement of prison facilities and thus reduce overcrowding in line with the United Nations Standard Minimum Rules for the Treatment of Prisoners (the Nelson Mandela Rules)", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Adopt the latest draft amendments to the Marriage and Family Relations Act that equalize same-sex unions and other family unions and ban the corporal punishment of children", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Improve the work of the National Human Rights Commission with a view to conform it to the Paris Principles, and to reinforce its legal framework to better fight against discrimination", - "values": [ - "4 - General action" - ] - }, - { - "text": "Consider formulating a national plan of action on trafficking, with a particular focus on data on trafficking in children", - "values": [ - "3 - Considering action" - ] - }, - { - "text": "Expedite the process of eradicating poverty through targeted programmes and social inclusion policies.", - "values": [ - "4 - General action" - ] - }, - { - "text": "Become a party to the Convention against Torture ", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Expedite action to allow for the full realization and protection of all children in Austria ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Engage members of the international community and international organizations for capacity-building support and technical assistance, particularly in the areas of economy, employment opportunity, human resources development and poverty alleviation ", - "values": [ - "1 - Minimal action" - ] - }, - { - "text": "Focus on education as the most important part of a long term sustainable solution for the Roma population and have patience and perseverance with this work. Roma children must be given the same opportunities and not put in schools aimed at mentally challenged students ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Tackle negative attitudes related to gender and discrimination against women through human rights training of law enforcement and judicial bodies' agents", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Give powers to the the Truth for Reconciliation Commission to subpoena and to protect witnesses to ensure that the whole truth is established ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Grant the right to family reunification to all refugees", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Continue measures to re-establish the unity of the State to bring about the Constitutional order and to organize universal democratic elections ", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Ensure equal opportunity to employment and the right to equal pay for equal jobs for women ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Encourage pursuing efforts to overcome the backlog in the submission of periodic reports", - "values": [ - "4 - General action" - ] - }, - { - "text": "Guarantee freedom of peaceful assembly", - "values": [ - "4 - General action" - ] - }, - { - "text": "Speed up and finalize the process of criminalizing the practice of FGM and take practical steps to eradicate it", - "values": [ - "4 - General action" - ] - }, - { - "text": "Continue the investigation of human rights violations, particularly enforced disappearances ", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "With regard to the international human rights treaties: Consideration of withdrawal of its reservations to Article 5 of the CRC Optional Protocol on the Sale of Children, Child Prostitution and Child Pornography, consideration of accession to a number of ILO Conventions and the Convention against Torture, ratification of the Convention on the Rights of Persons with Disabilities, the Convention against Transnational Organized Crime and the Protocol to Prevent, Suppress and Punish Trafficking in Persons, especially Women and Children", - "values": [ - "3 - Considering action" - ] - }, - { - "text": "Accede to the Optional Protocol to the Convention against Torture, and to establish an effective national preventive mechanism ", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Abolish the propiska system and adopt further legislative and other measures to ensure compliance of its legal system and practice with the protection of freedom of movement.", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Prioritize and fund information campaigns for non-discrimination and universal access for lesbian, gay, bisexual, transgender and intersex groups in Ghana", - "values": [ - "4 - General action" - ] - }, - { - "text": "Sign CRPD ", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Ratify all other international instruments it agreed to ratify during its first UPR review ", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Strengthen the legal framework to fight all crimes against children", - "values": [ - "4 - General action" - ] - }, - { - "text": "Continue its efforts to combat poverty and ensure sustainable development ", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Consider extending a standing invitation to all special procedures of the Human Rights Council ", - "values": [ - "3 - Considering action" - ] - }, - { - "text": "Continue to improve the quality of education in rural and mountainous areas, and consider increasing the subsidy allocated to education in those areas ", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Prepare a holistic childhood plan with a particular attention to the problem of child labour", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Become a State party to the Convention relating to the Status of Refugees and its Protocol", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Proceed with the ratification of the Optional Protocol to the Convention against Torture", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Continue its efforts in the social field, in particular for those most in need, especially in the field of nutrition, health and education", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Establish counselling services and shelters for victims of violence", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Review the current practice of participatory rights of persons with disabilities in elections, with the aim of identifying the necessary changes in consultation with relevant stakeholders, and implementing measures to ensure the voting rights of persons with disabilities", - "values": [ - "3 - Considering action" - ] - }, - { - "text": "Ensure access of the International Humanitarian Organization to the prison camps and to other detention centers", - "values": [ - "4 - General action" - ] - }, - { - "text": "Continue the legal reform process in accordance with the provisions of the newly adopted Constitution", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "As recommended by the Committee on the Rights of the Child, ensure that the law against trafficking of human being and sexual exploitation of children be better implemented and take better measures to protect girls engaged in domestic work from economic exploitation and sexual abuse ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Harmonize anti-discrimination laws", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Ensure the proper functioning of the juvenile justice system in compliance with international standards and to guarantee that minors are always heard in the presence of a legal representative ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Develop in partnership with Aboriginal and Torres Strait Islander peoples a National Strategy to give effect to the United Nations Declaration on the Rights of Indigenous Peoples, and to facilitate the constitutional recognition of Aboriginal Australians", - "values": [ - "4 - General action" - ] - }, - { - "text": "Ratify the International Convention for the Protection of All Persons from Enforced Disappearance and the Optional Protocol to the Convention against Torture, and bring its national legislation into compliance with all obligations", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Take all necessary steps to become a State party to the following treaties: the International Convention on the Rights of All Migrant Workers and Members of their Families, the Convention against Torture and Other Cruel, Inhuman or Degrading Treatment or Punishment, and the International Convention for the Protection of All persons from Enforced Disappearance ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Introduce a mandatory appeal system in capital cases and to ensure that inmates themselves, their families and their legal representatives are provided with adequate information about a pending execution and to allow a last family visit or communication with the convicted person", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Strengthen its efforts, in particular by prosecuting such practice and by promoting gender equality in general, in order to effectively eliminate female genital mutilation and cutting ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Repeal the legal provisions that allow the death penalty and declare a moratorium on executions ", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "That the United Nations Declaration on the Rights of Indigenous People be used as a guide to interpret the State obligations under the Convention relating to indigenous peoples ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Adopt measures to criminalize incitement to hatred and imminent violence based on religion or belief ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Ratify the 2000 United Nations Trafficking in Persons Protocol", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Study the possibility of a universal basic income programme in all regions with a view to phasing out the existing social protection system, in full consultation with key stakeholders", - "values": [ - "3 - Considering action" - ] - }, - { - "text": "Continue its efforts to guarantee the human rights of Indigenous peoples", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Ratify the International Convention for the Protection of All Persons from Enforced Disappearance, as well as recognize the competence of its Committee ", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Strengthen efforts aimed at combating trafficking in persons and sexual exploitation of women and children and the problem of street children ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Commit not only to removing the defence of reasonable chastisement but also to criminalizing corporal punishment with the concomitant pledges towards raising awareness and providing the necessary resource to support parents in adopting positive and alternative forms of discipline. ", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Further incorporate all the ratified international legal instruments into domestic law", - "values": [ - "4 - General action" - ] - }, - { - "text": "Cease all forms of forced displacement, in accordance with the Guiding Principles on Internal Displacement of 1998 ", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Adopt appropriate measures to disseminate widely and ensure full observation of General Assembly resolution 53-144.", - "values": [ - "4 - General action" - ] - }, - { - "text": "Pursue its efforts to promote and facilitate schooling and attendance, especially for disadvantaged families", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Establish clearly defined programmes to ensure improvement of the labour situation of migrant women in situations of vulnerability ", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Create a specialized detention centre for dangerous prisoners who suffer psychiatric conditions.", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Ratify the Second Optional Protocol to the International Covenant on Civil and Political Rights, and the Rome Statute", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Address in legislation all forms of gender-based violence, both within as well as outside of marriage", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Strengthen the national programme for the protection of human rights defenders, in particular its funding and human resources", - "values": [ - "4 - General action" - ] - }, - { - "text": "Improve the situation with implementation of its reporting obligations to the United Nations human rights bodies ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Provide comprehensive support to the institution of the family", - "values": [ - "4 - General action" - ] - }, - { - "text": "Complete the process of the development of a national human rights plan that is geared to take into account the implementation of the 2030 Agenda", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Redouble efforts towards providing education for Women and the Girl Child", - "values": [ - "4 - General action" - ] - }, - { - "text": "Acknowledge the human rights violations in the country and take steps to end such violations and abuses by implementing the recommendations in the COI's final report and cooperating with the Special Rapporteur and OHCHR", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Continue promoting the empowerment of women ", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Create an independent body to investigate cases of torture and guarantee compensation for victims. Additionally, bring conditions of detention in line with international standards and ensure respect for the judicial guarantees of detainees ", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Ratify the Optional Protocol to the Convention against Torture and Other Cruel, Inhuman or Degrading or Punishment in the near future and designating of an effective national preventive mechanism.", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Study the possibility of creating a follow-up system on international recommendations which includes universal periodic review accepted recommendations", - "values": [ - "3 - Considering action" - ] - }, - { - "text": "Encourage and contribute to the design of the most suitable socioeconomic integration plan for the subregion, as part of the developmental challenges of the subregion ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Ensure that thorough and impartial investigations are carried out into allegations of attacks against human rights defenders", - "values": [ - "4 - General action" - ] - }, - { - "text": "Invite and facilitate a visit by the Special Rapporteur on the independence of judges and lawyers and the Special Rapporteur on torture", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Consider the ratification of the Second Optional Protocol to the International Covenant on Civil and Political Rights, aiming at the abolition of the death penalty", - "values": [ - "3 - Considering action" - ] - }, - { - "text": "Ratify those international instruments on human rights to which Senegal is not yet part", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Give favourable consideration to withdrawing the reservation on CRC and CEDAW.", - "values": [ - "3 - Considering action" - ] - }, - { - "text": "Continue efforts in combating human trafficking and provide the necessary assistance to the victims of trafficking", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Make effective the Paris Principles, notably those relating to the establishment of a national human rights commission ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Renew its efforts and adopt and fully implement a comprehensive anti-discrimination law", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Continue to consolidate the rights of women and people belonging to vulnerable groups, including indigenous peoples and persons of diverse sexual orientation and gender identity, both within its legal framework and in practice", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Take additional efforts towards the participation of women in the area of political life", - "values": [ - "4 - General action" - ] - }, - { - "text": "Ratify and fully align its national legislation with the Rome Statute of the ICC", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Put an end in practice to all forms of corporal punishment and derogate the laws allowing for this practice ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Consider the adoption of measures commensurate with international standards on the subject and the launching of public campaigns about non-violent forms of discipline.", - "values": [ - "3 - Considering action" - ] - }, - { - "text": "Develop a national protocol for searching for reportedly disappeared persons and to investigate allegations of human rights violations and ensure that perpetrators are brought to justice and victims have received reparations", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Consider developing and implementing a comprehensive plan of action to further women's rights, including measures to combat violence against women ", - "values": [ - "3 - Considering action" - ] - }, - { - "text": "Ensure that the national human rights institution and the national preventive mechanism envisaged by the Optional Protocol to the Convention against Torture comply fully with the Paris Principles", - "values": [ - "4 - General action" - ] - }, - { - "text": "End impunity for the perpetrators of violence related to the 2007 elections", - "values": [ - "4 - General action" - ] - }, - { - "text": "Strengthen efforts in addressing maternal and child mortality", - "values": [ - "4 - General action" - ] - }, - { - "text": "Operationalize the fund establishment for compensation of victims of the unfortunate events recently faced Bahrain, in accordance with relevant best practices", - "values": [ - "4 - General action" - ] - }, - { - "text": "Review reservations to ICCPR and CRC with a view to withdrawing or limiting them ", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Adopt a comprehensive anti-discrimination law which would prohibit discrimination on any ground and establish mechanisms to ensure the principles of equality and non-discrimination, and legal remedies in cases of discrimination", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Ratify-accede to the Rome Statute of the ICC ", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Combat gender inequality and discriminatory practices in the areas of work, the family, social roles and personal integrity, by amending vague or non-existing legislation and rules addressing pervasive stereotypes", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Increase involvement in the field of international cooperation to face the consequences of both international food and economic crises ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Review the provisions of the Penal Code to ensure the effective exercise of freedom of opinion and expression without fear of reprisals in accordance with international standards", - "values": [ - "3 - Considering action" - ] - }, - { - "text": "Actively support the promotion and universal implementation of the human right to safe drinking water and sanitation in accordance with the recommendations made by the Human Rights Council in its various resolutions on this issue", - "values": [ - "4 - General action" - ] - }, - { - "text": "Continue the legal and legislative reforms ", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Intensify its efforts to ratify the Optional Protocol to the Convention against Torture and Other Cruel, Inhuman or Degrading Treatment", - "values": [ - "4 - General action" - ] - }, - { - "text": "Grant the request of families of victims to get information on the names and places of detention of detained persons", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Extend an open invitation to all mechanisms and special procedures mandate holders ", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Continue to strengthen the protection of the rights of women and improve the social status of women in accordance with relevant international treaties ", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Review the anti-terrorist law and its application so that it cannot be abused for persecution of persons from indigenous communities, including the Mapuche, for their peaceful political or religious activity.", - "values": [ - "3 - Considering action" - ] - }, - { - "text": "Take measures in law and in practice to decrease child marriage, most notably among girls", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Continue to address the issue of child labour and exploitation and to finalize the draft of the National Action Programme ", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Take effective measures to prevent and investigate cases of human trafficking for forced prostitution and forced labor", - "values": [ - "4 - General action" - ] - }, - { - "text": "Take urgent steps to ensure that women victims of wartime violence have access to justice and reparation, including adequate psychosocial and economic support, as well as access to health-care services", - "values": [ - "4 - General action" - ] - }, - { - "text": "Adopt emergency measures to ensure that the UN Standard Minimum Rules for the Treatment of Prisoners are respected in all prisons of Venezuela ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Ensure respect for the rights of migrant workers, improving their working conditions and prosecuting the perpetrators of violence against them", - "values": [ - "4 - General action" - ] - }, - { - "text": "Consider the possibility of eliminating criminal sanctions to undocumented migrants as well as those sanctions against those who provide services for the protection of their rights", - "values": [ - "3 - Considering action" - ] - }, - { - "text": "Consider the establishment of a national human rights institution based on the good practices of other countries", - "values": [ - "3 - Considering action" - ] - }, - { - "text": "Look further into improving its laws in the area of violence against women, in cooperation with the United Nations country team and the Committee on the Elimination of Discrimination against Women ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Ratify as soon as possible the Convention on the Rights of Persons with Disabilities", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Establish an official moratorium on executions with a view to the definitive elimination of the death penalty from the legislation", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Continue to strengthen the response of its criminal justice system to violent crimes against women and girls, in particular measures to support capacity to investigate, prosecute and punish such crimes", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Continue efforts in promoting the rights of women and their participation in higher decision-making posts", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Raise the minimum age of those subject to military draft to 18", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Intensify its efforts in terms of prevention, sanction and eradication of all forms of violence against women ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Carry out the national consultations on the death penalty, which it had engaged to hold during the eighth session of the Working Group on the UPR, so as to continue advancing towards the abolition of the death penalty", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Promote the independence and pluralism of the media, mindful that freedom of expression is a fundamental human right ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Accelerate the implementation of alternative measures to detention through the adoption of legal and policy measures outlined in articles 88, 89 and 102 of the Penal Code, and ensure that children and adolescents in detention facilities are separated from adults, in accordance with Mozambique's obligations under the Convention on the Rights of the Child", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Continue to set up policies and programmes necessary to guarantee adequate housing at reasonable cost for all inhabitants, particularly people with limited income", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Establish a national independent mechanism responsible for the inspection of detention centres", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Hold those responsible for grave, widespread and systematic violations of human rights, including crimes against humanity, accountable for their depraved actions", - "values": [ - "4 - General action" - ] - }, - { - "text": "Take measures to protect and fulfil the rights of all women migrant workers and to ensure that they are not subjected to discriminatory practices.", - "values": [ - "4 - General action" - ] - }, - { - "text": "Promptly bring individuals accused of a crime before a judge to demonstrate commitment to respect the rule of law and Guinea's obligations under Article 9 of ICCPR", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Adopt legislation, fill vacancies and provide adequate resources to ensure that institutions such as the judiciary, which play a vital role in protecting and implementing human rights, are independent and effective", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Provide complete and accurate information and access to all methods of family planning irrespective of sex or religion and embed this policy in a legal framework with the adoption of the pending Reproductive Health Bill", - "values": [ - "4 - General action" - ] - }, - { - "text": "Take concrete measures to eradicate child labour, and ensure boys and girls primary and secondary school completion", - "values": [ - "4 - General action" - ] - }, - { - "text": "Continue to fight to overcome its challenges with the assistance of the international community ", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Implement the recently adopted United Nations Rules for the Treatment of Women Prisoners and Non-custodial Measures for Women Offenders (the Bangkok Rules) to improve the treatment of female offenders and seek appropriate assistance for its implementation from relevant United Nations agencies", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Consider ratifying the Convention on the Rights of Persons with Disabilities and the Optional Protocol thereto.", - "values": [ - "3 - Considering action" - ] - }, - { - "text": "Share with other countries, in particular multicultural countries, its experiences in the strengthening of education", - "values": [ - "1 - Minimal action" - ] - }, - { - "text": "Investigate impartially cases of use of excessive force against protesters and cases of killings during the recent demonstrations ", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Seek cooperation to United Nations agencies and international organizations, in order to request assistance to improve poverty indicators, access to food, drinking water and health ", - "values": [ - "1 - Minimal action" - ] - }, - { - "text": "Give clear instructions to the security forces to always act in compliance with international human rights law, to bring to justice anyone suspected of having committed extrajudicial killings, excessive use of force, torture, rape and other grave human rights violations, and to cooperate with the United Nations Commission of Inquiry ", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Request technical and financial assistance from partners and specialized United Nations agencies (with regard to demographic growth, poverty reduction, protection of the informal sector and the environment) ", - "values": [ - "1 - Minimal action" - ] - }, - { - "text": "Adopt legislation that allows children of Bahraini mothers and non-Bahraini fathers to obtain Bahraini nationality ", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Undertake a participatory and inclusive process with all interested civil society organizations in Venezuela in the implementation of UPR recommendations ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Continue efforts in land matters, including through the effective and transparent implementation of measures of land allocation ", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Strengthen international cooperation with other countries on poverty reduction, the realization of the MDGs and good governance", - "values": [ - "4 - General action" - ] - }, - { - "text": "In the context of detention, strengthen existing police oversight mechanisms and provide victims of torture and ill-treatment with compensation", - "values": [ - "4 - General action" - ] - }, - { - "text": "Accelerate the enactment of the law on violence against women and the adoption of the international definition of gender-based violence", - "values": [ - "4 - General action" - ] - }, - { - "text": "Consider initiating a strategy for comprehensive legal framework on prevention of gender-based discrimination and improving the role of women in society", - "values": [ - "3 - Considering action" - ] - }, - { - "text": "Not respond to any comment that is outside of Jordan's legal commitments and international principles agreed upon by consensus", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Consider the possibility of ratification of the Convention on the Rights of Persons with Disabilities ", - "values": [ - "3 - Considering action" - ] - }, - { - "text": "Reaffirm its commitment to democracy, human rights and the rule of law immediately and ensure that security forces exercise restraint in the face of peaceful and democratic protests and cease intimidation of the media", - "values": [ - "4 - General action" - ] - }, - { - "text": "Mainstream disabilities rights into government policies and action plans", - "values": [ - "4 - General action" - ] - }, - { - "text": "Ensure effective participation of the Roma communities in the process of implementing their right to adequate housing.", - "values": [ - "4 - General action" - ] - }, - { - "text": "Raise, through education, the level of awareness and knowledge about human rights of the population, with a focus on the most vulnerable social groups, to ensure their full enjoyment of all human rights, in particular economic and social rights ", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Continue to cooperate and seek technical assistance, if and where necessary, in improving democracy and ensuring the protection and promotion of the human rights of all Cambodians ", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Improve the socio-economic situation with the support of the international community.", - "values": [ - "4 - General action" - ] - }, - { - "text": "Initiate reforms to bring its legislation on and practice of freedom of expression and opinion in line with international standards ", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Consider ratification of the Optional Protocol to the Convention against Torture and Other Cruel, Inhuman or Degrading Treatment or Punishment", - "values": [ - "3 - Considering action" - ] - }, - { - "text": "Cease all steps to reintroduce the death penalty, which would be contrary to its obligations under the Optional Protocol to the International Covenant on Civil and Political Rights, urgently accept a visit from the Special Rapporteur on extrajudicial, summary or arbitrary executions, without preconditions or limitations, fully investigate and prosecute all cases of extrajudicial killings and enforced disappearances, take immediate steps to combat torture in the criminal justice system, including torture in police stations to extract confessions, and fully respect international human rights law in its efforts to combat the trade in and use of illegal drugs", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Strengthen policies and programmes to address violence against women and combat child prostitution", - "values": [ - "4 - General action" - ] - }, - { - "text": "Create the necessary educational structures in order that all citizens have easy access to education and improve prison conditions ", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Allocate the necessary resources to ensure universal primary education for girls and boys alike by 2015 and accept the request from the Special Rapporteur on the right to education to visit the country", - "values": [ - "4 - General action" - ] - }, - { - "text": "Accelerate the process of passing a legislation to reform the mandatory minimum sentences begun with the Smart on Crime initiative", - "values": [ - "4 - General action" - ] - }, - { - "text": "Set up mechanisms to implement the national child act, which incorporates the Convention on the Rights of the Child and which is considered a positive step that grants applicable rights to Kenyan children ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Continue resisting attempts to enforce any values or standards beyond the universally agreed ones, continue exercising its sovereign right of implementing its laws and legislation in conformity with the universally agreed human rights standards and norms. ", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Strengthen the human rights education training program and expand it to other governmental departments", - "values": [ - "4 - General action" - ] - }, - { - "text": "Adopt new measures to investigate and judge those responsible for the attack on the Argentine Israelite Mutual Association in 1994", - "values": [ - "4 - General action" - ] - }, - { - "text": "Give priority to the fight against criminal gangs and emerging bands and, in this context, investigate threats and attacks against human rights defenders from these gangs, and grant them the necessary security guarantees.", - "values": [ - "4 - General action" - ] - }, - { - "text": "Adopt measures preventing reprisals against individuals and groups cooperating with international human rights mechanisms and ensure impartial investigations into all allegations of reprisal and accountability for reprisals", - "values": [ - "4 - General action" - ] - }, - { - "text": "Cooperate with the United Nations human rights mechanisms, particularly the special procedures mandate holders", - "values": [ - "4 - General action" - ] - }, - { - "text": "Pursue actions aimed at strengthening and harmonizing the child protection legal framework, including the establishment of child protection units within the various tribunals of the country", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Continue its efforts to adopt a law modernizing the migration regime, which incorporates a human rights approach, recognizes the rights and obligations of regular and irregular migrants and contains provisions regarding a national migration policy, the fight against trafficking in persons and the protection of refugees ", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Continue to establish policy to support the creation of income-generating activities through the provision of ongoing training, the promotion of entrepreneurship and the granting of credit to specific projects", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Cease harassment and discrimination by police of members of ethnic minorities and peaceful religious adherents under the pretext of combating violent extremism, and grant registration to peaceful religious groups", - "values": [ - "4 - General action" - ] - }, - { - "text": "Take effective measures to effectively combat discrimination on all grounds, including on grounds of sexual orientation or identity ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Submit rapidly its national report to the Committee on the Elimination of Discrimination against Women (CEDAW) that was due in 2007 and include a section on violence against women as requested by the Committee", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Establish a system providing children and their parents the real opportunity to choose from among religious, multi-denominational or non-denominational types of schooling and curricula", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Consider implementing the recommendations of UNHCR, human rights treaty bodies and special procedures with respect to asylum-seekers and irregular immigrants especially children ", - "values": [ - "3 - Considering action" - ] - }, - { - "text": "Continue the implementation of measures aimed at eradicating poverty and illiteracy", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Address prison overcrowding and separate children from adult prisoners", - "values": [ - "4 - General action" - ] - }, - { - "text": "Further to the resettlement of over 760,000 IDPs by 31 December 2012, efforts to resettle internally displaced persons including those residing with host families, who wish to return, and those in a situation of protracted displacement will be continued in consultation with the affected populations, so as to resolve the issue of internal displacement in a sustainable manner. Special focus will be paid to post-resettlement activity including provision of permanent shelters, sanitation and potable water", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Work to ensure that the legislation necessary to give effect to the Rome Statute be adopted as soon as possible, prosecute all those accused of war crimes and crimes against humanity, regardless of their position in the hierarchy, and strip of their function in the army or civil service those identified as perpetrators of grave human rights violations. ", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Continue to strengthen its efforts in health reform, in particular with regard to primary health care ", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Ensure equal rights of lesbian, gay, bisexual and transgender people by legally recognizing same-sex marriage and civil partnerships", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Continue promoting the bill on enforced disappearances", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Bring into line the Law on Gender Equality with the Law on the Elimination of All Forms of Discrimination, combating the patriarchal attitudes and stereotypes on the roles and responsibilities of women and men", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Step up its efforts to establish its national human rights institution in accordance with the Paris Principles ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Investigate and prosecute all allegations of ill-treatment of persons in police custody", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Take further measures to combat racism and xenophobia and incorporate the International Convention on the Elimination of All Forms of Racial Discrimination into domestic laws", - "values": [ - "4 - General action" - ] - }, - { - "text": "Revise the electoral law for autonomous regions in order to involve all citizens in decision-making and the development of their autonomous regions", - "values": [ - "3 - Considering action" - ] - }, - { - "text": "The Libyan Government would like to express its thanks to the Working Group on the Universal Periodic Review and reaffirm its commitment to strive to implement those recommendations it has accepted.", - "values": [ - "4 - General action" - ] - }, - { - "text": "Ratify the Optional Protocol to the Convention on the Rights of the Child on children in armed conflict and the Optional Protocol to the Convention on the Rights of the Child on the sale of children, child prostitution and child pornography", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Align the press law and penal code with the obligations under international human rights law, especially article 19 of the International Covenant on Civil and Political Rights", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Give the International Committee of the Red Cross access to all detention facilities including to Korotoro. ", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Take further measures to combat racism and all forms of discrimination, especially with respect to women, children, indigenous people and Afro-Bolivians", - "values": [ - "4 - General action" - ] - }, - { - "text": "Fully implement the National Policy for Persons with Disabilities ", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Put in place measures to strengthen the protection of victims of trafficking: among others, to screen and protect victims of human trafficking instead of treating them as criminal offenders, to provide them with temporary shelters during legal proceedings, to support witness protection programs and to provide appropriate remedial measures other than deportation ", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Speed up the procedures to complete the process of the ratification of the Convention on the Rights of Persons with Disabilities", - "values": [ - "4 - General action" - ] - }, - { - "text": "Provide adequate funding for the national human rights institution and reduce its reliance on external sources", - "values": [ - "4 - General action" - ] - }, - { - "text": "Further strengthen and expand national action plans to reduce child poverty and that of their families ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Promote the reintegration of child soldiers", - "values": [ - "4 - General action" - ] - }, - { - "text": "Step up its attention and develop programmes for the social protection of citizens that suffer discrimination and social inequalities and eliminate all discriminatory provisions in legislation in some states", - "values": [ - "4 - General action" - ] - }, - { - "text": "Ensure that members of the security forces responsible for violations of human rights are brought to justice, and improve prison conditions", - "values": [ - "4 - General action" - ] - }, - { - "text": "Strengthen and expand the Mechanism to Protect Human Rights Defenders and Journalists including by providing it with adequate resources and powers to carry out its work and creating a mechanism for consultation with indigenous and other communities affected by land transactions", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Increase the effectiveness in preventing any cases of xenophobia or racial discrimination that have been demonstrated by officials and increase its activities to combat these scourges ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Continue initiatives such as the National Women's Bank which have given women income earning opportunities and access to banking services", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Ensure that Iraq's legislation guarantees de jure and de facto non discrimination against women", - "values": [ - "4 - General action" - ] - }, - { - "text": "Ensure the full respect of the rights of migrants and minorities such as the Roma, including by strengthening the measures against acts of racial discrimination, xenophobia and intolerance ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Continue to pursue its measures to curb incitement to violence, brutality and child pornography ", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Combat corruption in the judicial system and promote justice", - "values": [ - "4 - General action" - ] - }, - { - "text": "Provide comprehensive human rights training for law enforcement officers, including on issues related to forced eviction and violence against detainees and to racial discrimination and xenophobia", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Establish a national human rights institution fully compliant with the Paris Principles, as Belgium committed to in the previous review", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Abolish the laws on sponsorship and include domestic workers in laws that protect workers", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Fully integrate a gender perspective in the follow-up process to the UPR.", - "values": [ - "4 - General action" - ] - }, - { - "text": "Extend a standing invitation to all special procedures of the Human Rights Council to promote and strengthen legislation and public policies on human rights", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Provide refugee children with access to social services, such as health and education", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Ensure that the proposed new Traditional Courts Bill, if adopted, does not violate South Africa's international obligations or its own Constitution in the area of women's rights and gender equality ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Intensify national discussions with a view to abolishing the death penalty", - "values": [ - "4 - General action" - ] - }, - { - "text": "Intensify measures and initiatives to support persons with disabilities", - "values": [ - "4 - General action" - ] - }, - { - "text": "Continue its constructive engagement with civil society to enable tangible results on the ground through their joint undertakings in the promotion and protection of human rights in the country ", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Pursue its efforts, with the assistance and cooperation of the international community, for the realization of the rights of women and women's empowerment as an important sector of society that can contribute significantly to the development of the country", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Adopt time-bound measures to increase children with disabilities' access to inclusive education in mainstream schools, and that it ensure funding for the specific services necessary to help these students reach their full learning potential and participate along with other students", - "values": [ - "4 - General action" - ] - }, - { - "text": "Strengthen measures to fight discrimination against women and children, particularly in rural areas", - "values": [ - "4 - General action" - ] - }, - { - "text": "Render operational and grant adequate resources to the National Council against Gender-Based Violence and develop a multisectoral national strategic plan on this issue", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Pursue and scale up the implementation of inclusive education policies", - "values": [ - "4 - General action" - ] - }, - { - "text": "Adopt and implement, through an inclusive process, a revised Access to Information Act and Media Service Bill in line with international human rights law and standards", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Further develop more inclusive school programmes to ensure better integration of children with disabilities and indigenous children", - "values": [ - "4 - General action" - ] - }, - { - "text": "Strengthen the mechanisms set up by the "Commission of Human Rights and Integration", to ensure the best possible monitoring and evaluation of the human rights situation in the country", - "values": [ - "4 - General action" - ] - }, - { - "text": "Continue its positive efforts aimed at the reduction of the number of persons in penitentiary institutions ", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Commit completely to implement the outcome of the first UPR ", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Continue strengthening women's participation in society and in decision-making processes ", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Further the implementation of the Framework Convention for the Protection of National Minorities and of the laws on the prohibition of discrimination, especially those related to hate crimes ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Expedite the implementation of the Extended National Strategic Framework on HIV/AIDS that was adopted in 2014", - "values": [ - "4 - General action" - ] - }, - { - "text": "Combat all forms of discrimination, including based on sexual orientation or sexual identity", - "values": [ - "4 - General action" - ] - }, - { - "text": "Prohibit corporal punishment of children in all settings and guarantee children's rights to adequate standard of living with special attention to orphans, providing them with access to safe drinking water and education", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Adhere to the Paris Principles, which address the status and the functioning of national institutions for the protection and promotion of human rights, by ensuring the independence of Fiji's Human Rights Commission", - "values": [ - "4 - General action" - ] - }, - { - "text": "Ensure the full exercise of freedom of expression for independent journalists and media, inter alia, by taking into due consideration the recommendations of the Council of Europe Commissioner for Human Rights", - "values": [ - "4 - General action" - ] - }, - { - "text": "Establish an express prohibition on traditional practices and rituals that put at risk the physical integrity of persons, in particular persons living with albinism", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Widen health care to vulnerable groups, in particular women of minority groups", - "values": [ - "4 - General action" - ] - }, - { - "text": "Spare no effort in fighting violence against children and the drug trafficking of which they are victims", - "values": [ - "4 - General action" - ] - }, - { - "text": "Put an end by law to death by stoning and reduce the number of crimes that are punishable by the death penalty, excluding the death penalty for crimes related to drugs ", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Continue strengthening a system of data collection with a view to determine the extent of manifestations of racism and direct and indirect racial discrimination.", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Gather statistics on the various groups accessing public services in order to obtain an accurate picture of the use of services by different minorities", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Continue its efforts to advance the role of women in society and support women in acceding to high-level decision-making posts.", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Release persons arbitrarily detained and ensure that all complaints of torture and ill-treatment of detainees are investigated promptly, thoroughly and independently", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Ratify CED ", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Consider recognizing same-sex couples ", - "values": [ - "3 - Considering action" - ] - }, - { - "text": "Consider adoption of a moratorium on the death penalty at the federal level", - "values": [ - "3 - Considering action" - ] - }, - { - "text": "Strengthen the Integrity Commission to enable it to receive and investigate complaints against public officials ", - "values": [ - "4 - General action" - ] - }, - { - "text": "The Lao PDR will continue to disseminate information about human rights conventions to officials, civil servants, officers at the central and local levels and to the general public, including the youth and children.", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Ensure, in the framework of migration control and extradition agreements, the protection of the rights of the persons concerned by ensuring that their physical integrity and due process rights are not violated", - "values": [ - "4 - General action" - ] - }, - { - "text": "Abolish the practice of female genital mutilation", - "values": [ - "4 - General action" - ] - }, - { - "text": "Pursue efforts to prevent and eradicate gender-based violence, including domestic violence, raising awareness among society, ensuring due diligence regarding the prosecution and judgment of perpetrators and providing relevant training to the competent authorities on the protection and prevention of violence against women and girls", - "values": [ - "4 - General action" - ] - }, - { - "text": "Continue promoting the national human rights policies, especially in the field of economic, social and cultural rights, in order to improve the quality of life of its population, to alleviate the standard of living of the most vulnerable", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Extend the scope of free basic health care to groups that are not yet covered by this benefit", - "values": [ - "4 - General action" - ] - }, - { - "text": "Lower the stringent requirements for proof of domestic violence so that existing law criminalizing domestic violence can be more readily applied in practice. ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Approve its draft refugee law to ensure full realization of refugees' rights, in particular protection of the principle of non-refoulement, and pay special attention to measures aimed at protecting vulnerable groups such as women at risk, victims of torture and unaccompanied children.", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Engage the various cantons with a view to once again bringing an anti-discrimination law before parliament", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Continue its efforts to eradicate female genital mutilation", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Strengthen the role of the National Council for Childhood and Adolescence ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Continue to build on progress made in gender equality", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Take measures to guarantee access to health care for all, and strengthen the public sector, which suffers from difficulties in operating as well as from strong territorial inequalities", - "values": [ - "4 - General action" - ] - }, - { - "text": "Impose a moratorium on capital punishment and commute existing death sentences to imprisonment terms with a view to abolish the capital punishment entirely", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Strengthen the work of the National Human Rights Commission, particularly in fighting against arbitrary detention ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Make primary education compulsory, free and accessible to all children", - "values": [ - "4 - General action" - ] - }, - { - "text": "Continue its measures on awareness-raising campaigns and other necessary measures with regard to the promotion of equity in the society and the elimination of discrimination against women ", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Adopt measures to prevent the possibility of extrajudicial executions and to fully prevent the use of torture by State Security Forces", - "values": [ - "4 - General action" - ] - }, - { - "text": "Pay special attention to the recommendations of the Human Rights Committee in the field of freedom of movement, including the right to leave the country ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Continue to implement its plans and strategies that enhance the economic and social welfare of indigenous peoples", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Continue pursuing its anti-poverty strategy, strengthen the rights of vulnerable groups, and make efforts to realize sustainable economic and social development ", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Further improve the living conditions of Roma, especially ensuring access to running water, electricity and housing, as well as providing education, employment and health care for all members of the Roma community", - "values": [ - "4 - General action" - ] - }, - { - "text": "Fully respect the human rights of asylum seekers, refugees and migrants and to address intolerance, violence by police officers and discrimination in the areas of employment and housing", - "values": [ - "4 - General action" - ] - }, - { - "text": "Take all measures to ensure protection of women and girls from violence and to end impunity of perpetrators of such crimes", - "values": [ - "4 - General action" - ] - }, - { - "text": "Continue efforts to strengthen and protect human rights in accordance with international standards, in keeping with the cultural values of the Emirati people.", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Strengthen mechanisms to integrate migrant children in the school system", - "values": [ - "4 - General action" - ] - }, - { - "text": "Hold accountable those who commit religiously motivated acts of violence", - "values": [ - "4 - General action" - ] - }, - { - "text": "Effectively counter all forms of racism, xenophobia and intolerance ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Seek technical, material and financial assistance from the international community in order to help to address its human rights challenges ", - "values": [ - "1 - Minimal action" - ] - }, - { - "text": "Sign and ratify the Optional Protocol to the Convention against Torture (OP-CAT), accede to the International Convention for the Protection of All Persons from Enforced Disappearance (CED) and ratify the Rome Statute of the International Criminal Court ", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Ensure that its counter-terrorism legislation and the national designation for terrorist groups are in full compliance with the legal safeguards enshrined in the ICCPR ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Eliminate all exceptions permitting the marriage of minors under 18", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Continue taking measures to promote social and economic rights", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Review its legislation and practice with a view to ensuring effective access to asylum procedures, upholding the principle of non-refoulement, and ensure the protection of all human rights of asylum seekers upon entry and also during the procedure, including by minimizing their detention, ensuring access to legal counsel and providing in particular all persons in detention with all procedural safeguards in compliance with international standards.", - "values": [ - "3 - Considering action" - ] - }, - { - "text": "Consider the issue of introducing a moratorium for capital punishment", - "values": [ - "3 - Considering action" - ] - }, - { - "text": "Recommended that all cases of rape and other forms of sexual violence be investigated in an expeditious, effective and impartial manner by an independent body and that all accused be prosecuted", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "End the impunity of members of the Malaysian Volunteer Corps (RELA) for acts of violence, corruption, and the abuse of power against immigrants by amending the relevant RELA regulation", - "values": [ - "4 - General action" - ] - }, - { - "text": "Address over-crowding in prisons, and continue to address the special needs of women prisoners ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Formulate, in cooperation with regional and United Nations mechanisms, a plan for the management and mitigation of natural disasters which includes potential mass displacements of the population ", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Ensure victims of sexual and gender-based violence have access to social and legal support, and that perpetrators of sexual and gender-based violence are brought to justice", - "values": [ - "4 - General action" - ] - }, - { - "text": "Continue to strengthen its human rights framework, including through giving full implementation to existing institutional and legal protections", - "values": [ - "4 - General action" - ] - }, - { - "text": "Integrate into its domestic law the various international human rights instruments to which it is a party", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Ratify ICCPR", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Repeal the provisions in the Family Code which discriminate against children born outside of wedlock", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Repeal all legislative provisions which criminalize sexual activity between consenting adults", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "End discrimination against people with intellectual and psychological disabilities and implement tools to encourage their employment", - "values": [ - "4 - General action" - ] - }, - { - "text": "Bring its legislation into conformity with its commitment to equality and non-discrimination for all by prohibiting discrimination based on sexual orientation or gender identity ", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Lift the Public Emergency Regulations and to restore an environment in which all of Fiji's citizens can meet freely and express political opinions without fear or retribution", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Ensure adoption of measures for social integration of refugees and asylum seekers that are fully in line with international standards", - "values": [ - "4 - General action" - ] - }, - { - "text": "Strengthen laws and policies for effective implementation to end violence against children and ensure the full implementation of the 2003 Child Rights Act", - "values": [ - "4 - General action" - ] - }, - { - "text": "Enhance the protection of children from abuse, including prostitution, child pornography and forced marriages", - "values": [ - "4 - General action" - ] - }, - { - "text": "Continue and strengthen its efforts relating to the number of children, especially boys, entering secondary school", - "values": [ - "4 - General action" - ] - }, - { - "text": "End forced labour", - "values": [ - "4 - General action" - ] - }, - { - "text": "Ensure full respect for the human rights of migrants", - "values": [ - "4 - General action" - ] - }, - { - "text": "Issue a standing invitation to all special procedure mandate holders and facilitate without delay a visit by the Special Rapporteur on torture, as well as all other pending visit requests from special procedure mandate holders", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Provide more effective powers to the person primarily responsible for the national preventive mechanism against human rights violations and make it possible for her to monitor all State organs ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Specify the prohibition of the death penalty in a future organic law ", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Improve cooperation with the Independent Expert on the situation of human rights in Sudan, including on the implementation of the recommendations by the Group of Experts ", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Become a party to OP-CAT", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Limit the provisions on restrictions of freedom of expression in conformity with the international standards", - "values": [ - "4 - General action" - ] - }, - { - "text": "Continue its efforts in addressing the welfare of foreign workers", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Take all necessary measures to abolish in practice cases of early and forced child marriages ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Adopt and apply the laws on the status of judges and prosecutors, on the judicial organization and functioning of tribunals and on the High Council of the Judiciary to guarantee the independence of the judiciary system ", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Receive special rapporteurs from the Human Rights Council as well as from the African Commission on Human Rights", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Address the root causes that result in human trafficking", - "values": [ - "4 - General action" - ] - }, - { - "text": "Take steps to strengthen and promote the rights of journalists and bloggers to freely exercise their right to freedom of expression", - "values": [ - "4 - General action" - ] - }, - { - "text": "Continue to address the inequalities affecting particularly the Roma community", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Finalize the ongoing five-year National Action Plan on Human Rights and put in place the necessary mechanisms for its implementation", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Take steps to enable accession to OP-CAT", - "values": [ - "4 - General action" - ] - }, - { - "text": "Take all necessary steps to protect human rights defenders from intimidation, ill-treatment or violence, including enforced disappearances, and to ensure prompt, impartial and thorough investigation of all allegations, including those of enforced disappearances", - "values": [ - "4 - General action" - ] - }, - { - "text": "Facilitate high education and free education to all school-aged children", - "values": [ - "4 - General action" - ] - }, - { - "text": "Speed up its accession to the Optional Protocol to the International Covenant on Economic, Social and Cultural Rights", - "values": [ - "4 - General action" - ] - }, - { - "text": "Establish a National Human Rights Institution in line with the Paris Principles and set out a detailed roadmap to this effect so that the Institute may commence its work at the earliest possible opportunity", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "That the emergency legislation under the state of emergency, which is the root cause to many human rights problems in Egypt, be repealed, and that future legislation be elaborated based on the enjoyment of human rights", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Expedite the process of establishing an independent and effective national human rights institution with a broad human rights mandate, in accordance with the Paris Principles", - "values": [ - "4 - General action" - ] - }, - { - "text": "Ensure the incorporation of the principles and norms of the international human rights law, especially of those treaties to which the Philippines is party, into its national legislation", - "values": [ - "4 - General action" - ] - }, - { - "text": "Strengthen its national policy for gender equity and equality", - "values": [ - "4 - General action" - ] - }, - { - "text": "Establish a national human rights institution in line with the Paris Principles, drawing on the experience of the Icelandic Human Rights Centre", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Review the law on the special powers of the armed forces to align it with its obligations under the International Convention on Civil and Political Rights ", - "values": [ - "3 - Considering action" - ] - }, - { - "text": "End the practice of forced detention of dissenters in the so-called "reeducation camps" and investigate all allegations of torture and ill-treatment therein", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Review public school curricula in order to eliminate prejudice against religious and other minorities", - "values": [ - "3 - Considering action" - ] - }, - { - "text": "Conclude the process of ratifying the Optional Protocol to CEDAW, as well as OP-CRC-AC, and the Optional Protocol to CRPD ", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Consider the ratification of the Protocol to the African Charter on Human and Peoples\u2019 Rights on the Rights of Women in Africa", - "values": [ - "3 - Considering action" - ] - }, - { - "text": "Fully capacitate and empower the national institute for women", - "values": [ - "4 - General action" - ] - }, - { - "text": "Repeal or modify the blasphemy laws in order to bring them into line with the principles related to freedom of thought, conscience and religion and, in particular, with its obligations under the International Covenant on Civil and Political Rights", - "values": [ - "3 - Considering action" - ] - }, - { - "text": "Ratify the Convention on the Rights of Persons with Disabilities and its Optional Protocol, and promote the awareness of the society and institutions on the right to equality and non-discrimination of persons with disabilities in all areas of life", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Establish a comprehensive data collection system to better assess the level of discrimination that exists against different minority groups in Austria ", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Continue its efforts to adopt legislations to combat trafficking and protect women's rights in particular nationality and gender equality", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Expedite its efforts towards the enactment of the gender equality legislation and set up appropriate mechanisms for its implementation", - "values": [ - "4 - General action" - ] - }, - { - "text": "Continue to take steps to ensure that the National Human Rights Institution is in conformity with the Paris Principles", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Allow privately owned media outlets to be established ", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Pave the way for implementation of the Extractive Industries Transparency Initiative involving all groups of society ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Continue promoting a gender perspective", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Enhance cooperation with international treaty bodies by submitting overdue reports to CERD, CESCR and HR Committee", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Abolish the death penalty and immediately declare a moratorium on all executions.", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Adopt and implement a national plan in accordance with the Durban Declaration and Programme of Action", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Ratify the Optional Protocol of 1999 to CEDAW", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Issue an open invitation to Special Procedures", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Introduce a de facto and de jure moratorium on the death penalty, with a view to adopting a law abolishing the death penalty ", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Accede to the 1961 Convention on the Reduction of Statelessness and take all relevant measures in order to reduce the number of stateless persons", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Further enhance efforts to achieve the remaining Millennium Development Goals", - "values": [ - "4 - General action" - ] - }, - { - "text": "Promote gender equality and adopt legislation to protect vulnerable groups ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Continue efforts to eradicate poverty and ensure sustainable development ", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Israel remains committed to the principle of accountability and will continue to conduct investigations regarding any alleged violation of domestic or international laws.", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Consider adopting legislation that fully incorporates the principle of equality of women and men, as well as a definition and prohibition of discrimination on the basis of sex and gender in the public and private spheres", - "values": [ - "3 - Considering action" - ] - }, - { - "text": "Ensure that all investigations into complaints related to torture and other ill-treatments are carried out promptly, impartially and thoroughly", - "values": [ - "4 - General action" - ] - }, - { - "text": "Take appropriate measures and introduce legislation which would prohibit corporal punishment of children ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Expedite prosecution of cases of violence and intimidation of the media, impose penalties for government officials convicted of these offences and publicly demonstrate support for freedom of expression by denouncing violence against and intimidation of the media in Peru.", - "values": [ - "4 - General action" - ] - }, - { - "text": "Strengthen its efforts to fully integrate the Roma into society and to combat discrimination against them, so they can enjoy their economic, social and cultural rights, especially in education, employment and housing ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Take steps to combat child abuse and child labour", - "values": [ - "4 - General action" - ] - }, - { - "text": "Promulgate an anti-discrimination law, based on article 14, paragraph 1 of the Japanese Constitution, which prohibits all forms of discrimination, especially against foreigners", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Amend the provisions of the Crime and Penalty Law, the Election and Referendum Law, the Labour Code and the Prison Law which are in contradiction to its international obligations under CEDAW and take concrete measures to improve the social, economic and political participation of women.", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Take necessary measures to deal with the situation of women in prisons and protect them against all forms of violence, especially against harassment and sexual violence", - "values": [ - "4 - General action" - ] - }, - { - "text": "Issue an invitation to the United Nations High Commissioner for Human Rights so that he carries out a technical mission in Belarus, pursuant to resolution 17/24", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Ratify the ICCPR, ICESCR, CAT, Convention for the Protection of All Persons from Enforced Disappearance (CPED), CERD, the Rome Statute and the 1951 Convention relating to the Status of Refugees", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Further develop its sound social policies in order to increase the quality of life of its people, particularly in the neediest areas ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Ratify the Rome Statute of the ICC as well as OP-CAT and establish a National Torture Prevention Mechanism", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Prioritize the protection of the right to life of Cubans in the fight against disasters and share its experiences with the countries of the region ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Strengthen measures to promote tolerance and dialogue between civilizations and take categorical measures to fight hate speech and to penalize the perpetrators of such speech", - "values": [ - "4 - General action" - ] - }, - { - "text": "Take measures for the prevention of torture and other cruel, inhuman and degrading treatment. ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Continue efforts for the prompt adoption of the Law on Juvenile Justice", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Bolster the constitutional Bill of Rights by acceding to ICCPR and the first Optional Protocol thereto and, in that context, initiate a process in order to ensure compatibility of existing national laws and decrees with the new Constitution. Part of this process should be strengthening the judiciary", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Repeal any legal provision that criminalizes consensual relations between adults of the same sex and combat the discrimination against LGBT persons through awareness-raising and education campaigns to begin at school ", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Strengthen its efforts to prevent all forms of violations of the rights of women and children, including sexual exploitation, child labour and human trafficking", - "values": [ - "4 - General action" - ] - }, - { - "text": "Step up its efforts for the protection and assistance of trafficking victims, including through adequate state financing for victims' shelters ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Consider a comprehensive human rights act as recommended by the National Human Rights Consultative Committee ", - "values": [ - "3 - Considering action" - ] - }, - { - "text": "Establish a moratorium on executions with a view to abolishing the death penalty, and guarantee that no individual under the age of 18 at the time of their alleged crime is sentenced to death, in line with its obligations under the Convention on the Rights of the Child", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Consider ratifying the International Convention on the Protection of the Rights of All Migrant Workers", - "values": [ - "3 - Considering action" - ] - }, - { - "text": "Continue its activities in the field of poverty eradication ", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Actively and prudently push forward reform of re-education through labour according to its national realities, so that everything goes according to its system", - "values": [ - "4 - General action" - ] - }, - { - "text": "Continue strengthening its programmes of employment creation, food and assistance to the most vulnerable in the fight against poverty and social inequality", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Step up efforts to address discrimination and social exclusion faced by persons belonging to the Roma minority with particular emphasis on integrated schooling and social housing", - "values": [ - "4 - General action" - ] - }, - { - "text": "Modify its national and customary laws in order to prevent child, early and forced marriage", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Take all necessary measures to avoid collective and arbitrary punishments of presumed rebels' collaborators, put an end to the abuses committed by security forces and to the practice of enforced disappearances, particularly of minorities and journalists ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Issue an open invitation to the human rights special procedures of the United Nations", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Continue ongoing efforts to timely submit due national reports to the treaty monitoring bodies", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Pursue efforts to train personnel for the optimal care of children in the context of access to education and health care, and within the implementation of effective social programmes in these areas", - "values": [ - "4 - General action" - ] - }, - { - "text": "Continue to implement the 1995 Programme of Measures for Assisting the Roma, and to introduce annually reviewed targets to measure progress", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Establish formal procedures to proactively identify trafficking victims among vulnerable populations and refer them to protective services", - "values": [ - "4 - General action" - ] - }, - { - "text": "Establish an effective national monitoring system to ensure that throughout the process detainees are protected by the minimum safeguards for those deprived of their liberty, as provided for by international law ", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Refrain from imposing disproportionate or discriminatory restrictions on freedom of association and reject draft laws on money laundering, treason and foreign agents", - "values": [ - "4 - General action" - ] - }, - { - "text": "Extend a standing invitation to all United Nations human rights mechanisms", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Continue its programmes and interventions to reduce the HIV/AIDS infections among its people with the support of the World Health Organization (WHO) and other international organizations", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Reaffirm its commitments to international human rights instruments through their transposition or integration into its national legislation, and intensify its efforts to submit its overdue reports to the treaty bodies ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Modify the regulations of the Family Code which are discriminatory against girls and women, regarding guardianship of minors, inheritance, divorce, polygamy and rejection", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Investigate and prosecute all persons found guilty of extrajudicial killings and attacks on human rights defenders ", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Commit to full transparency on the combination of medicines used during executions by injection", - "values": [ - "4 - General action" - ] - }, - { - "text": "Consider the accession to core human rights instruments and to other main international human rights treaties that it is not yet a party to", - "values": [ - "3 - Considering action" - ] - }, - { - "text": "Ensure that incidents of violence against women and children are thoroughly investigated and perpetrators of violence are brought to justice", - "values": [ - "4 - General action" - ] - }, - { - "text": "Step up relevant measures to protect the rights of women, children, persons with disabilities, and migrants ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Revise domestic legislation governing the National Human Rights Commission to bring it in line with the Paris Principles ", - "values": [ - "3 - Considering action" - ] - }, - { - "text": "Consider the establishment of quotas to ensure a gender-balanced representation in business administrative councils", - "values": [ - "3 - Considering action" - ] - }, - { - "text": "Develop and implement national legislation explicitly prohibiting female genital mutilation and ensure its practical enforcement. Enhance school programmes and community education to raise public awareness about the harmful effects of this practice which constitutes a serious form of violence against women and a serious attack on human rights ", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Support the previous interventions about the abolition of the capital punishment in Japan.", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Increase its investment into education and health to ensure better education and health services for the whole population in particular in rural areas", - "values": [ - "4 - General action" - ] - }, - { - "text": "Continue its policies on improving the rights of the child ", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Put an end to all forms of discrimination against women, both in law and in practice", - "values": [ - "4 - General action" - ] - }, - { - "text": "Continue its efforts and take the necessary measures to address the lack of women representation in Parliament", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Develop a national pay strategy to monitor pay gaps mechanisms and establish a comprehensive childcare policy, as recommended by the Committee on the Elimination of All Forms of Discrimination against Women ", - "values": [ - "4 - General action" - ] - }, - { - "text": "The United States is committed to preventing and effectively prosecuting hate crimes. In 2009, we enacted a powerful new tool, the Shepard-Byrd Hate Crimes Prevention Act, which enhanced federal prosecution for violent crimes motivated by religious, racial, or national origin bias and enabled federal prosecution of crimes based on sexual orientation, gender, gender identity, and disability. Over the last five years, DOJ has obtained convictions of more than 160 defendants on such charges, a nearly 50 percent increase over the previous five years. DOJ also continues to prosecute other hate crimes, and in 2014 assisted Kansas authorities in the investigation of a fatal shooting at a Kansas City Jewish community center. In January 2015, the FBI began collecting more detailed data on bias-motivated crimes, including those committed against Arab, Hindu, and Sikh individuals.", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Continue its efforts aimed at eliminating discrimination and preventing violence against women and children, as well as taking further measures, with a longer-term strategy, aimed at protecting women\u2019s rights", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Continue its efforts to promote human rights education and training at all levels of education, including capacity building for persons in charge of enforcing current human rights laws, policies and measures ", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Repeal all laws criminalizing women and girls for abortion and take all necessary measures to ensure safe and legal abortion in cases of rape or incest and in cases of serious danger for the health of women ", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Decriminalize sexual relations between consenting adults of the same sex", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Ratify and implement the following international instruments: CPED and OP-CAT ", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Abide by the principle of non-refoulement and take steps to ensure that refugees/asylum seekers are not returned", - "values": [ - "4 - General action" - ] - }, - { - "text": "Take all necessary measures towards acceding to the Rome Statute of the International Criminal Court", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Abolish life imprisonment without the possibility of parole for non-violent offenses", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Take appropriate steps to ratify various international treaties including the Second Optional Protocol to the International Covenant on Civil and Political Rights, aiming at the abolition of the death penalty (ICCPR-OP-2) and OP-CEDAW", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Sign and ratify the Optional Protocol of the International Covenant on Economic, Social and Cultural Rights allowing individual complaints of alleged violations of these rights to be heard by CESCR ", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Reinstate the moratorium on the death penalty with a view to abolishing it", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Prohibit all forms of corporal punishment of children and ratify the three Optional Protocols to the Convention on the Rights of the Child", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Continue, with urgent international assistance and cooperation without conditionalities, to strengthen its policies in the fields of education and health in order to be able to provide the basic social services required by its people, in conditions that guarantee equal access, with special attention to the most vulnerable sectors of the population ", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Seek technical assistance from the international donor community including relevant UN agencies and funds for building capacity for government officials, particularly law enforcement, legal and judicial personnel ", - "values": [ - "1 - Minimal action" - ] - }, - { - "text": "Continue to intensify strategies to eliminate violence against women, ensure that women enjoy a legal capacity identical to that of men, and remedy the gender gap faced by women in employment ", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Continue with its policies of gender equality and equity mechanism in all areas ", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Enhance efforts to ensure the protection of children's rights, as outlined in the Convention on the Rights of the Child and its Optional Protocols", - "values": [ - "4 - General action" - ] - }, - { - "text": "Guarantee adequate protection of workers through the effective implementation of legislative and administrative labour laws.", - "values": [ - "4 - General action" - ] - }, - { - "text": "Continue to promote opportunities for women in society so that they can actively participate in the decision-making process ", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Use public awareness-raising campaigns to prevent discrimination, if they have not yet been implemented.", - "values": [ - "4 - General action" - ] - }, - { - "text": "Take measures to further develop the health-care system, especially in rural areas", - "values": [ - "4 - General action" - ] - }, - { - "text": "Further promote freedom and pluralism of the media as key elements for enabling the exercise of freedom of expression ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Dismantle the wall in the Occupied Palestinian Territories and refrain from expansion of settlements.", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Guarantee the full recognition of sexual and reproductive rights", - "values": [ - "4 - General action" - ] - }, - { - "text": "Establish a national child welfare committee, as provided for by the Child Care and Protection Act ", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Repeal all provisions criminalizing sexual activity between consenting adults", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Lift discriminatory provisions against women in its domestic law, particularly in the Civil and Penal Code and in the Education Act", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Consider the views of the Committee against Torture, according to which the existing provisions of the Code of Criminal Procedure relating to police custody do not provide for the notification of rights or the presence of a lawyer, and that some people are held without charge or awaiting trial for several years ", - "values": [ - "3 - Considering action" - ] - }, - { - "text": "Introduce stronger measures to protect indigenous peoples and AfroColombians from attacks by armed groups and take measures to guarantee their rights", - "values": [ - "4 - General action" - ] - }, - { - "text": "Raise the minimum age of criminal responsibility to an age in accordance with CRC ", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Urgently review the Presidential decree expanding the role of military courts with a view to ensuring fair trial guarantees and limiting the jurisdiction of military courts", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Consider ratifying the International Convention on the Protection of the Rights of all Migrant Workers and Members of their Families", - "values": [ - "3 - Considering action" - ] - }, - { - "text": "Take further steps to address discrimination against women and vulnerable groups, including children, persons belonging to minorities and indigenous people.", - "values": [ - "4 - General action" - ] - }, - { - "text": "Continue policies to strengthen the rights of children ", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Take steps to ensure that no woman or girl is subject to criminal sanctions for abortion", - "values": [ - "4 - General action" - ] - }, - { - "text": "Increase efforts on gender equality", - "values": [ - "4 - General action" - ] - }, - { - "text": "Abolish the continued use of death penalty, stoning and retribution for murder", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Step up its efforts to provide adequate health facilities and comprehensive education for all", - "values": [ - "4 - General action" - ] - }, - { - "text": "Take concrete steps to implement the March 2016 recommendations of the Committee on the Elimination of Discrimination against Women", - "values": [ - "4 - General action" - ] - }, - { - "text": "Guarantee access to justice and the right to reparation for victims in a non-discriminatory way, in conformity with international standards.", - "values": [ - "4 - General action" - ] - }, - { - "text": "Adopt all necessary measures to combat the phenomenon of child sex tourism, including by consistently prosecuting offenders on their return for the crimes committed abroad ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Implement the recommendations of the Committee on the Rights of the Child on street children and their sexual exploitation, child prostitution, violence against children and child labour.", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Ensure the transparency, effectiveness, impartiality and independence in the processes of investigation of human rights violations", - "values": [ - "4 - General action" - ] - }, - { - "text": "Continue contribute to the integration of the Roma and the Sinti into local communities, and to give them access to housing, work, education and professional training", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Draft, support the passage of, and implement comprehensive antitrafficking legislation in line with the UN Palermo Protocol", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Accede to the Second Optional Protocol to the International Covenant on Civil and Political Rights, aimed at abolishing the death penalty, and take all necessary steps to remove the death penalty from Antigua and Barbuda law", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Continue consolidating its correct social programs in favour of its people, in the fight against poverty, exclusion and social injustice underscoring the areas of nutrition, health, education and employment, for which it is important that the Community of Nations provide the cooperation and technical assistance that Guyana requires", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Continue efforts to strengthen democracy, good governance, the rule of law and equality ", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Issue a standing invitation to all Special Procedures of the Human Rights Council ", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Withdraw the reservation to article 18 of the International Covenant on Civil and Political Rights", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Consider wider establishment of shelter houses for women and children seeking protection from domestic violence", - "values": [ - "3 - Considering action" - ] - }, - { - "text": "Stop the war crimes committed by its troops abroad, including the killings of innocent civilians and prosecute those who are responsible", - "values": [ - "4 - General action" - ] - }, - { - "text": "Take measures to safeguard the human rights of prisoners, and to separate juvenile and adult prisoners ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Strengthen coordination between the Brazilian Institute of the Environment and Renewable Natural Resources and the Brazilian National Indian Foundation", - "values": [ - "4 - General action" - ] - }, - { - "text": "Adopt comprehensive legislation to counter discrimination and take steps to ensure that equality enshrined in such legislation or in existing law is achieved in practice", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Proceed with the implementation of strategies and policies to support human rights infrastructures and to achieve further progress in promoting a culture of respect for human rights", - "values": [ - "4 - General action" - ] - }, - { - "text": "Take appropriate steps to amend regulations that discriminate against women", - "values": [ - "4 - General action" - ] - }, - { - "text": "Take into particular consideration the vulnerable situation of migrants and refugees in the country, in particular women and children", - "values": [ - "4 - General action" - ] - }, - { - "text": "Amend the laws to include protection for domestic service work ", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Intensify its efforts to combat all discrimination based on social, racial, ethnic, linguistic and religious grounds ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Expedite the establishment of its National Preventive Mechanism, in keeping with its obligations under the Optional Protocol to the United Nations Convention against Torture", - "values": [ - "4 - General action" - ] - }, - { - "text": "Continue its efforts to promote greater prosperity and improve the welfare of the population, notably through progressive education and health policies", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Fight against discrimination in society more effectively", - "values": [ - "4 - General action" - ] - }, - { - "text": "Implement a comprehensive policy to fight the trafficking in persons, with special focus on boys, girls and adolescents, with a view to give visibility to the problem and understand the trends, forms and manifestations of the problem of trafficking in the country with a view to ending it", - "values": [ - "4 - General action" - ] - }, - { - "text": "Take further initiatives to address the phenomena of poverty and unemployment", - "values": [ - "4 - General action" - ] - }, - { - "text": "Issue an open and standing invitation to all special procedures, particularly to the Special Rapporteur on Torture and Other Cruel, Inhuman or Degrading Punishment or Treatment", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Share with other countries, through the UPR process, its experiences and best practices gained from creating a gender-equal society", - "values": [ - "1 - Minimal action" - ] - }, - { - "text": "Ensure the full exercise of freedom of expression and of the freedom of all independent media, both national and foreign ones, regardless to their nature: press, internet, radio or television", - "values": [ - "4 - General action" - ] - }, - { - "text": "Conduct public awareness campaigns within the refugee community on the importance of registration and ensure strong implementation of the Action Plan for Solving the Status of Internally Displaced Persons", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Undertake effective steps to fully ensure all political, economic, social and cultural rights of minorities, including Armenians in Turkey, inter alia, by taking all necessary measures to ensure preservation of their national identity and cultural heritage ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Continue with actions aimed at safeguarding due process in all judicial instances", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Redouble its efforts to maintain continuing progress in fighting poverty", - "values": [ - "4 - General action" - ] - }, - { - "text": "Continue to implement policies that increase access to employment, in particular for youths and in rural areas", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Include in Icelandic legislation a definition of racial discrimination", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Launch a comprehensive review leading to legal and policy reforms which protect the rights of refugees and migrants, including rights to family reunification and enact legislation creating an offence for racial violence, and design and implement training for judges and prosecutors on the nature of hate crimes on the basis of race", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Step up the implementation of measures to reduce discrimination based on gender and sexual orientation, including awareness activities ", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Continue her efforts and measures in investing in education for all as a means to guarantee the gender equality and to foster the human rights culture in the society", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Take all necessary measures to improve implementation of the human rights provisions of the Constitution into the laws enacted thereof. ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Speed up the revision of the Constitution of the Republic of Malawi and ensure harmonization of laws in line with its international obligations regarding the definition of the child", - "values": [ - "4 - General action" - ] - }, - { - "text": "Adopt and develop a comprehensive national action plan that addresses traditional harmful practices and gender-based violence against women and girls", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Ratify-accede to CAT-OP.", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Ensure that civil society organizations and NGOs can work freely and unhindered by undue restrictions, including prohibitive registrations requirements, burdensome programme approval and authorization regulations as well as censorship of printed materials ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Continue to cooperate with the special procedures of the Human Rights Council in investigating cases of enforced and involuntary disappearances", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Strengthen efforts aimed at eliminating HIV-AIDS, and cooperate with WHO in this regard ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Consider implementing recommendations of relevant treaty bodies in accordance with their national priorities ", - "values": [ - "3 - Considering action" - ] - }, - { - "text": "Ratify international human rights instruments, particularly, the Convention against Torture and other Cruel Inhuman or Degrading Treatment or Punishment's Optional Protocol, the International Convention for the Protection of All Persons from Enforced Disappearance, the Optional Protocol on the Convention on the Elimination of All Forms of Discrimination against Women as well as the ILO Convention 169 concerning Indigenous and Tribal Peoples in Independent Countries ", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Advance in the application of legislative measures aiming at the prohibition of discrimination in education, in particular in the rural areas, with a view to promoting gender equality ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Increase the health budget allocation to the recommended minimum of 15 per cent of GDP, in line with commitments under the Abuja Declaration, in order to counter the alarming maternal and under-five mortality and morbidity rates", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Adopt special measures to ensure that persons in particularly vulnerable situations, such as children, have meaningful access to the justice system and other complaint procedures", - "values": [ - "4 - General action" - ] - }, - { - "text": "Develop, in partnership with civil society, a national action plan for women with defined targets, to address issues such as violence against women, pay inequality, the situation of Maori and Pacific women, and women with disabilities ", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Seek the assistance of the international community to help Uganda enact laws for the promotion and protection of human rights", - "values": [ - "1 - Minimal action" - ] - }, - { - "text": "Continue to improve all social security system for all its elderly population", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Strengthen measures to increase the participation by ethnic minority women in line with CEDAW recommendations.", - "values": [ - "4 - General action" - ] - }, - { - "text": "Continue efforts to ensure that children are protected from all forms of violence and exploitation, particularly from child labour in hazardous conditions", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Exert further efforts in addressing the negative impacts of the unilateral coercive measures on the enjoyment of human rights in the Sudan", - "values": [ - "4 - General action" - ] - }, - { - "text": "Strengthen efforts to prevent and combat all kinds of discrimination, in particular against women and lesbian, gay, bisexual, transgender and intersex persons", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Continue to make progress on combatting violence against women and on the efforts to sanction and prevent human trafficking", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Take the necessary steps to address concerns over the rights of vulnerable groups, including internally displaced persons, refugees and migrants, and carry forward measures to integrate them effectively into the broader social and political systems", - "values": [ - "4 - General action" - ] - }, - { - "text": "Consider favourably the inclusion of the outcome of the present review in the human rights national strategic plan referred to in paragraph 124 of the national report", - "values": [ - "3 - Considering action" - ] - }, - { - "text": "Ensure equal rights and opportunities to all persons without distinction and promote policies to prevent discrimination based on sexual orientation and gender identity", - "values": [ - "4 - General action" - ] - }, - { - "text": "Intensify its efforts to promote and protect the human rights of specific groups within society, such as women, children, disabled persons and the elderly, with a view to empowering them and alleviating their vulnerability ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Redouble its efforts towards reaching a political settlement to the crisis in the Syrian Arab Republic through comprehensive dialogue with all parties", - "values": [ - "4 - General action" - ] - }, - { - "text": "Establish a moratorium on the use of the death penalty, in accordance with General Assembly resolution 62-149, taking into account that the death penalty has not been applied since 1957 ", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Take the legislative and administrative measures necessary to fully guarantee freedom of religion in the country, in particular to prevent any form of discrimination or undue obstacles in the registration of associations of religious minorities ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Accede to and fully align its national legislation with the Rome Statute of the International Criminal Court and accede to the Agreement on the Privileges and Immunities of the Court", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Decriminalize same-sex relations between consenting adults by repealing article 230 of the Criminal Code", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "End all enforced evictions from displacement camps and establish an official moratorium on mass eviction until all legal and procedural safeguards compliant with international human rights standards are in place", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Continue its efforts in raising awareness campaigns to sensitize communities and general public on issues of domestic violence, with the support of the international community and other United Nations agencies ", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Develop and promote education in the area of human rights and the dissemination of knowledge on international human rights standards among the population ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Allocate more resources to improve the capacity of the various constitutional commissions and oversight offices tasked with the promotion and protection of human rights in order to strengthen the implementation of their mandates", - "values": [ - "4 - General action" - ] - }, - { - "text": "Enact legislation that penalizes cases of rape, abuse and incest, to raise awareness on these issues, and to actively pursue the punishment of those guilty of those crimes", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Continue its efforts to eliminate stereotypes associated with traditional gender roles in the family and society ", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Continue on its constructive path to promoting equality and non-discrimination ", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Continue to codify all legislation related to human rights, with a view to transforming it into one national system", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Ensure equality of rights between men and women to acquire, transfer, change or conserve nationality and transmit it to children born abroad, as recommended in the Convention on the Elimination of All Forms of Discrimination against Women", - "values": [ - "4 - General action" - ] - }, - { - "text": "Adopt necessary measures to eradicate impunity for human rights violations, particularly against journalists.", - "values": [ - "4 - General action" - ] - }, - { - "text": "Align its norms to the human rights based approach in light of the new challenges faced", - "values": [ - "4 - General action" - ] - }, - { - "text": "Create a mechanism for the prevention of torture that complies with the requirements established by the Optional Protocol to the Convention against Torture, giving special emphasis to the independence of this mechanism ", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Consider ratifying outstanding human rights treaties and the Rome Statute of the International Criminal Court and withdraw existing reservations to treaties, to which Viet Nam is a party ", - "values": [ - "3 - Considering action" - ] - }, - { - "text": "Continue full and effective implementation of the decisions of the European Court of Human Rights ", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Continue adopting measures to strengthen institutions in the field of aging ", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Resort to technical assistance provided by international organizations for the effective implementation of international human rights standards set out in the main international instruments to which it is a party", - "values": [ - "1 - Minimal action" - ] - }, - { - "text": "Continue the policy agenda to strengthen the specialized justice system to protect women", - "values": [ - "4 - General action" - ] - }, - { - "text": "Establish a juvenile justice system ", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Take the necessary steps to ensure that victims of human rights violations and their families have access to full reparation in the form of restitution, compensation, satisfaction and rehabilitation ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Take the necessary measures to end attacks against civilians and to ensure unimpeded humanitarian access to the camps of internally displaced persons in Darfur, including by lifting the state of emergency ", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Take positive measures towards guaranteeing appropriate conditions for people in detention including involvement of the system of public observer commissions that monitor penitentiary institutions ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Support more actively the implementation of the rights of sexual minorities as a means to fight social isolation and discrimination", - "values": [ - "4 - General action" - ] - }, - { - "text": "Azerbaijan expressed its readiness to periodically submit information on the implementation of the recommendations.", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Ensure better enforcement of laws protecting employees from anti-union discrimination.", - "values": [ - "4 - General action" - ] - }, - { - "text": "Strengthen measures aimed at fighting discrimination", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Review provisions regarding lengthy pre-trial detention without court and investigation decisions", - "values": [ - "3 - Considering action" - ] - }, - { - "text": "Ensure country-wide implementation of the Marriage Act establishing the legal age for marriage as 21 years of age", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Work on raising the legal marriage age to 18 years", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Continue to strengthen the legal and institutional framework for the promotion and protection of all human rights ", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "That the intention of the decree, recently signed by H.H. Shaykh Mohammed al- Maktoum that no journalist should receive prison sentences for its publications, be secured through the enactment of a modernized press and publications law.", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Effectively investigate and prosecute crimes and violations against human rights defenders and journalists, and to bring to justice those responsible", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Promote efforts to ensure that the right to freedom of expression can be fully exercised and that all violations against human rights defenders and journalists are effectively investigated and prosecuted ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Ratify and implement the Convention on the Elimination of All Forms of Discrimination against Women and other international human rights treaties and their Optional Protocols, as previously recommended", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Ensure that any complaint of violations of international human rights obligations can be examined in Canadian courts and effective adequate remedies will be provided to victims", - "values": [ - "4 - General action" - ] - }, - { - "text": "Eliminate or cease enforcing laws impeding freedom of expression ", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Strengthen measures to combat forced or early marriages", - "values": [ - "4 - General action" - ] - }, - { - "text": "Continue making efforts to advance in meeting its commitments under the international instruments to which the State is a Party ", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Build on its rule of law tradition to actively combat corruption and other obstacles to the economic, social, cultural, civil and political rights of its people", - "values": [ - "4 - General action" - ] - }, - { - "text": "Increase the efforts to fully implement the Act on Women's Right to a Life Free from Violence, coordinate the programmes and institutions that address violence against women and effectively combat all forms of violence against women", - "values": [ - "4 - General action" - ] - }, - { - "text": "Continue its efforts to strengthen the rights of persons with disabilities and guarantee equal opportunities in the attainment of education by children with disabilities", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Take all necessary steps to strengthen the protection of the civilian population, particularly women and children, from violence. ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Sign and ratify the Optional Protocol to the International Covenant on Economic, Social and Cultural Rights as soon as possible, allowing individual complaints of alleged violations of Economic, Social and Cultural rights to be heard by the Committee on Economic, Social and Cultural Rights ", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Provide demobilized children with assistance and penalize those responsible for their recruitment ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Continue to take practical steps to expedite the abolition of the death penalty", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Continue implementing the 2016-2019 national human rights plan", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Ensure that its National Preventive Mechanism under the Optional Protocol to the Convention Against Torture and Other Cruel, Inhuman or Degrading Treatment or Punishment (OPCAT) is provided with the necessary human, financial and logistical resources to be able to carry out its preventive work effectively", - "values": [ - "4 - General action" - ] - }, - { - "text": "Improve the standards and the situation of human rights in prisons, and to carry out an independent investigation into cases of violence in prisons", - "values": [ - "4 - General action" - ] - }, - { - "text": "Positively consider issuing a standing invitation to the special procedures of the Human Rights Council ", - "values": [ - "3 - Considering action" - ] - }, - { - "text": "Accede to the CPED and accept the competence of its monitoring body ", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Accede to the Optional Protocol to Convention on the Elimination of All Forms of Discrimination against Women", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Ensure full enjoyment of human rights and fundamental freedoms by immigrants within the immigration procedure, including their rights for adequate remedies in case of an excess of power by immigration authorities", - "values": [ - "4 - General action" - ] - }, - { - "text": "Repeal all provisions criminalizing sexual relations between consenting adults of the same sex, and incorporate sexual orientation as a basis for unlawful discrimination in all areas of labour legislation", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Intensify efforts made so far to identify and eradicate trafficking in children and women for the sex trade", - "values": [ - "4 - General action" - ] - }, - { - "text": "Work towards ensuring that its National Human Rights Commission accords in full with the Paris Principles ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Promote a wide as possible consultation process that includes religious leaders, traditional leaders, members of the security forces, staff members of the administration of justice, as well as civil society in order to determine the Government's needs in the fight against slavery and related practices ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Continue strengthening its excellent programmes for social protection, working for the achievement of welfare and the best possible standard of living for its people", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Institute measures that guarantee a free and independent media environment", - "values": [ - "4 - General action" - ] - }, - { - "text": "Further develop policies and programmes to alleviate and eradicate poverty, with special emphasis on vulnerable groups, by taking forward initiatives such as the National Action Plan and Programme against Corruption", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Take the necessary measures to change the structures that prevent the implementation of CEDAW, including with regard to violence or murders linked to witchcraft ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Fulfil its commitment to equality and non-discrimination by repealing all legal provisions that criminalize sexual activity between consenting adults and investigate all cases of discrimination based on sexual orientation and gender identity ", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Respect freedom of expression and association, and restrict to the extent strictly necessary the use of criminal prosecutions against people who make use of such rights", - "values": [ - "4 - General action" - ] - }, - { - "text": "Effectively fight against torture and ill-treatment, especially in places of detention, ensuring that these acts are the subject of independent investigations and appropriate legal prosecutions, and that the use of preventive detention is exceptional and strictly regulated ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Continue efforts to strive for all citizens to live in harmony without discrimination against any races and nationalities", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Ensure the full enjoyment of human rights by women and girls, including through public awareness-raising and measures to improve investigation and prosecution of sexual and gender-based violence", - "values": [ - "4 - General action" - ] - }, - { - "text": "Cease spying on communications and private data of people in the world", - "values": [ - "4 - General action" - ] - }, - { - "text": "Ensure equal rights and opportunities for children of immigrants, Roma and indigenous people, investigate allegations of bullying ethnic minority children in schools and take effective measures to protect them against prejudice, violence and stigmatization ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Strengthen its policies of promotion and protection of the rights of women through public policies that foster gender equality in the country", - "values": [ - "4 - General action" - ] - }, - { - "text": "Consider incorporating sexual and reproductive health education into the school curriculum", - "values": [ - "3 - Considering action" - ] - }, - { - "text": "Deepen the measures taken to combat gender-based violence, sexual abuses and violations suffered by women with a special focus on migrant women and women with disabilities", - "values": [ - "4 - General action" - ] - }, - { - "text": "Continue to take concrete steps to improve the rights of women and children, including through ratification of the Optional Protocol to CEDAW and addressing the concerns of the Committee on the Rights of the Child ", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Continue its efforts in the fight against corruption ", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Ensure the full implementation of its national legislation, with a view to combating racism and xenophobia", - "values": [ - "4 - General action" - ] - }, - { - "text": "Resume the de facto suspension of the death penalty pending its abolition", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Take the necessary measures to combat corruption, address its causes and eradicate its roots", - "values": [ - "4 - General action" - ] - }, - { - "text": "Take steps to ensure the provision of appropriate support for parents and families at risk to prevent the abandonment of children", - "values": [ - "4 - General action" - ] - }, - { - "text": "Accelerate the establishment of a national commission on persons with disabilities", - "values": [ - "4 - General action" - ] - }, - { - "text": "Speed up the process of adoption of the National Strategic Plan on Gender-based Violence", - "values": [ - "4 - General action" - ] - }, - { - "text": "Respect its obligations under international human rights and humanitarian law with respect to the Palestinian people.", - "values": [ - "4 - General action" - ] - }, - { - "text": "Accede to the Optional Protocols to the Convention on the Rights of the Child ", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Further strengthen the protection of the rights and dignity of foreigners subjected to identity checks or expulsion procedures ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Intensify awareness-raising measures against femicide and violence against women, as well as on the recommendations of the Committee on the Elimination of Discrimination against Women", - "values": [ - "4 - General action" - ] - }, - { - "text": "Comply with international treaties and standards for the full enjoyment of the rights of members of non-Muslim communities and their institutions", - "values": [ - "4 - General action" - ] - }, - { - "text": "Establish a comprehensive child labour policy ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Undertake thorough and comprehensive studies of international instruments and conventions, including ICCPR and ICESCR, prior to its accession to those instruments", - "values": [ - "3 - Considering action" - ] - }, - { - "text": "Consider the ratification of the Palermo Protocol on Trafficking in Persons ", - "values": [ - "3 - Considering action" - ] - }, - { - "text": "Consider taking all necessary steps to introduce a de jure moratorium on capital executions with a view to fully abolishing the death penalty and ratifying the Second Optional Protocol to the International Covenant on Civil and Political Rights", - "values": [ - "3 - Considering action" - ] - }, - { - "text": "Pursue reforms in the justice sector", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Protect land rights for indigenous communities", - "values": [ - "4 - General action" - ] - }, - { - "text": "Share experiences and good practices with other countries in areas of development and protection of human rights ", - "values": [ - "1 - Minimal action" - ] - }, - { - "text": "Permit teenage mothers to return to formal education and to sit exams while pregnant and after giving birth, including the use of gradual approaches, such as separate classes or sittings, aimed at breaking cycles of poverty, teenage pregnancy and domestic abuse", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Bring forward legislation providing a clear legal process for the restoration of rights for individuals affected by the erasure", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Pursue the efforts to eradicate poverty and promote social justice", - "values": [ - "4 - General action" - ] - }, - { - "text": "Step up its efforts to reduce poverty, particularly rural poverty ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Cyprus is determined to intensify its efforts to safeguard human rights and is committed to continue working for the further advancement of raising awareness and education on human rights, despite the current economic constrains which have negatively affected the country's economy and social cohesion.", - "values": [ - "4 - General action" - ] - }, - { - "text": "Strengthen actions on equal opportunities ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Continue with its efforts to develop education as a great investment for the future", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Take urgent action to develop a specific policy to protect the rights of minorities and indigenous peoples and address the key question of racism", - "values": [ - "4 - General action" - ] - }, - { - "text": "Establish special services and reintegration programmes for victims of trafficking ", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Consider ratifying other pending fundamental International Labour Organization (ILO) Conventions such as Convention No. 189 (2011) concerning decent work for domestic workers ", - "values": [ - "3 - Considering action" - ] - }, - { - "text": "Accelerate efforts for the establishment of a national human rights institution in conformity with the Paris Principles", - "values": [ - "4 - General action" - ] - }, - { - "text": "Adhere to ICRMW ", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Continue implementing measures for the reduction and alleviation of poverty", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Step up its efforts to address the prevalence of violence against women by adopting a strategy for the implementation of the Council of Europe Convention on Preventing and Combating Violence against Women and Domestic Violence", - "values": [ - "4 - General action" - ] - }, - { - "text": "Consider ratifying other international human rights conventions, including ILO Convention No. 189", - "values": [ - "3 - Considering action" - ] - }, - { - "text": "Seek possible ways to speed up the adoption of the religious harmony bill currently discussed by national lawmakers ", - "values": [ - "4 - General action" - ] - }, - { - "text": "That, in order to ensure cooperation and dialogue with the international community, to submit responses to the communications by the various special rapporteurs.", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Develop plans or strategies to address homelessness and poverty", - "values": [ - "4 - General action" - ] - }, - { - "text": "Fulfil its reporting obligations under treaty bodies", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Ratify the International Convention for the Protection of All Persons from Enforced Disappearance and recognize the competence of the Committee (in conformity with articles 31 and 32) ", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Call on the international community to respond favourably to Bangladesh's request for capacity building and technical assistance to overcome the difficulties and challenges facing the country", - "values": [ - "1 - Minimal action" - ] - }, - { - "text": "Mobilise the efforts of the international community to provide effective assistance to Nepal in accordance with national priorities", - "values": [ - "1 - Minimal action" - ] - }, - { - "text": "Take necessary measures to promote girls' access to education, particularly in rural areas ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Increase policies in view to educating and protecting talibé children beggars, particularly from human trafficking, exploitation and all forms of abuse", - "values": [ - "4 - General action" - ] - }, - { - "text": "Pursue its efforts aimed at supplying food to detainees", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Ensure full compliance with its law on access to information, and that the Office for Coordination of Access to Information be sufficiently staffed and equipped to undertake its responsibilities", - "values": [ - "4 - General action" - ] - }, - { - "text": "Increase the minimum age for voluntary recruitment into the armed forces to 18 years, and criminalize explicitly the violation of the provisions of the Optional Protocol to the Convention on the Rights of the Child on the involvement of children in armed conflict", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Ratify the OP-CEDAW without reservations", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Conduct appropriate public awareness-raising campaigns with a view to eliminate female genital mutilation and other harmful traditional practices", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Intensify measures to fully realize the rights of indigenous peoples, in particular their representation in civil service and public institutions.", - "values": [ - "4 - General action" - ] - }, - { - "text": "Review and amend laws, as appropriate, to ensure that publically-funded schools provide equal access to education for all, irrespective of one's faith or religious affiliation", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Adopt and implement a comprehensive strategy to prevent violence against children", - "values": [ - "4 - General action" - ] - }, - { - "text": "Adopt and implement legislation prohibiting corporal punishment under all circumstances and accompany this with a public awareness-raising campaign", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Take urgent measures to end extra-judicial killings, and enforced disappearances of human rights defenders, to investigate all cases and bring those responsible to justice", - "values": [ - "4 - General action" - ] - }, - { - "text": "Devote attention to the education of children and use education to spread a human rights culture though school curricula ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Fully and transparently investigate alleged grave breaches of international humanitarian law during the conflict", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Ratify the Rome Statute of the International Criminal Court", - "values": [ - "4 - General action" - ] - }, - { - "text": "Ratify the Convention on the Rights of Persons with Disabilities, the Optional Protocol to the Convention against Torture and the Optional Protocol to the Convention on the Rights of the Child on the sale of children, child prostitution and child pornography ", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Increase efforts to effectively enforce the provisions of the Penal Code on sexual and domestic violence and prosecute any such acts ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Design a complete strategy against all forms of discrimination, including traditional and modern forms of slavery, which include practices of early and forced marriages, servitude, and forced labour of children", - "values": [ - "4 - General action" - ] - }, - { - "text": "Continue efforts to combat human trafficking and provide all necessary requirements to ensure the implementation of the strategic plan on this matter", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Canada acknowledges that there are challenges and the Government of Canada commits to continuing to explore ways to enhance efforts to address poverty and housing issues, in collaboration with provinces and territories.", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Continue its efforts to ratify CPED, International Convention on the Protection of the Rights of All Migrant Workers and Members of Their Families (ICRMW), OP-ICESCR and, the Optional Protocol to the Convention against Torture and other Cruel, Inhuman or Degrading Treatment or Punishment (OP-CAT) ", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Raise the minimum age of criminal responsibility to at least 12 years, as recommended by the CRC, and enforce compulsory segregation of juveniles from adults in detention ", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Continue this work of alleviating of poverty and developing social economic sphere in the context of realization of national strategic plan in the area of development", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Continue its efforts to ensure that all cases of child sexual abuse are reported before the justice, as well as the offer of complaint procedures that are effective, easily accessible and of a confidential nature for the victims", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Take all measures to end the application of cruel, inhuman or degrading penalties such as flogging ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Eliminate the type of crime of \u201cunnatural carnal knowledge\u201c and adopt measures to eradicate discrimination motivated by sexual orientation and gender identity", - "values": [ - "4 - General action" - ] - }, - { - "text": "End impunity for extrajudicial killings, enforced disappearances and torture, including those perpetrated by security forces, by undertaking thorough investigations and vigorous prosecutions of perpetrators ", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Reinforce respect for the rights to freedom of religion, freedom of conscience and free association", - "values": [ - "4 - General action" - ] - }, - { - "text": "Carry out its engagement, in a constructive dialogue, with the United Nations human rights monitoring bodies ", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Continue efforts in adopting required measures to ensure child care, including for disabled children, and ensure their rights in education and health ", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Do its best in addressing the issue of internally displaced persons", - "values": [ - "4 - General action" - ] - }, - { - "text": "Accede to and fully align its national legislation with the Rome Statute, including by incorporating provisions to cooperate promptly and fully with the International Criminal Court", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Maintain its commitment and continue the actions undertaken to consolidate the democratic system based on the protection of its citizens' civil and political rights and the search for truth, justice and reparation in relation to the grievances of the past.", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Combat impunity.", - "values": [ - "4 - General action" - ] - }, - { - "text": "Consider amending the Constitution to allow women to convey their citizenship to their children and foreign spouses on an equal basis with men", - "values": [ - "3 - Considering action" - ] - }, - { - "text": "Write and publish an action plan with clear milestones and timelines to ensure swift and effective implementation of legislation protecting the living and working conditions of foreign workers", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Encourage the ratification of the International Convention for the Protection of All Persons from Enforced Disappearance, as well as the ratification of Optional Protocol to the Convention on the Rights of the Child on a communications procedure", - "values": [ - "4 - General action" - ] - }, - { - "text": "Appoint the members of the Human Rights Commission and provide the necessary means for its functioning and independence", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Strengthen the implementation of policies to permit teenaged mothers to return to formal education and sit exams after giving birth, aimed at breaking cycles of poverty, teenage pregnancy and domestic abuse", - "values": [ - "4 - General action" - ] - }, - { - "text": "Abolish all legislation, measures and practices that discriminate against women, further to the report of the Special Rapporteur on Violence Against Women. In particular, to abolish legislation and practices which prevent women from participating fully in society on an equal basis with men, including strict gender segregation practices, limitations on freedom of movement, the prohibition on women driving and restricted access by women to work, public places and commercial facilities", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Strengthen efforts to protect freedom of religion and promote interreligious dialogue", - "values": [ - "4 - General action" - ] - }, - { - "text": "Establish a functional registry system reaching the whole population, by, inter alia, extending the time for free birth registration and offering birth certificate establishment procedures for the unregistered", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Issue an open invitation to the special procedures", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Consider raising the minimum age of criminal responsibility ", - "values": [ - "3 - Considering action" - ] - }, - { - "text": "Consider ratifying the International Convention on the Protection of the Rights of All Migrant Workers and Members of Their Families", - "values": [ - "3 - Considering action" - ] - }, - { - "text": "Address the societal acceptance of violence against women and ensure punishment for all perpetrators of violence against women", - "values": [ - "4 - General action" - ] - }, - { - "text": "Continue strengthening the rehabilitation and reintegration of victims of human trafficking with the support of the international community", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "End harassment and intimidation of journalists, human rights defenders and civil society activists ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Continue efforts to increase the human rights culture in its society through the training and capacity-building of law enforcement and the judicial system in the field of human rights ", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Take further steps to eliminate torture and other cruel, inhuman or degrading treatment or punishment and to ensure an effective and impartial judicial system.", - "values": [ - "4 - General action" - ] - }, - { - "text": "Provide human rights education, including related to sexual orientation and gender identity, to all law enforcement officials", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Reinforce its role as a global leader on human rights by becoming a party to the International Covenant on Economic, Social and Cultural Rights, the Convention on the Elimination of All forms of Discrimination against Women, the Convention on the Rights of the Child, and the Convention on the Rights of Persons with Disabilities", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Ratify the Second Optional Protocol to the International Covenant on Civil and Political Rights (ICCPR)", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "End all settlement activities in the Occupied Palestinian Territories, in particular in and around occupied Jerusalem", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Develop as a matter of priority a multi-ethnic, inclusive and non-discriminatory common core curriculum, with all levels of Government ensuring that the content of school textbooks promotes and encourages tolerance among ethnic minority groups", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Enact legislation enabling political parties to register and contest elections", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Stop the participation of members of the Estonian armed forces in annual so called remembrance events glorifying the former legionaries of "Waffen SS" and Nazi collaborators", - "values": [ - "4 - General action" - ] - }, - { - "text": "Intensify its efforts to complete the alignment of national legislation with the provisions of the Rome Statute and to expedite the process of ratification of OP-CAT", - "values": [ - "4 - General action" - ] - }, - { - "text": "Consider providing the National Council for Combating Discrimination, Ombudsman and relevant institutions with adequate resources to carry out their work and to minimize duplication of their functions and competence areas ", - "values": [ - "3 - Considering action" - ] - }, - { - "text": "Explore the possibility of elaborating and adopting a national policy for gender equality in accordance with the international instruments in this area to which Saudi Arabia is a party", - "values": [ - "3 - Considering action" - ] - }, - { - "text": "Suspend the duties of all officers of security forces implicated in cases of enforced disappearance, extrajudicial execution or torture, and ensure that impartial and credible inquiries are carried out so that those responsible for such acts are brought to justice ", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Give high priority to the enforcement of the Law on Fighting against Domestic Violence in order to ensure that victims have access to adequate means of protection and compensation ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Take all necessary measures to provide adequate protection to journalists and human rights defenders, in particular regarding enforced disappearances and extrajudicial killings", - "values": [ - "4 - General action" - ] - }, - { - "text": "Ensure comprehensive training and education for all security forces and prison staff in human rights and international humanitarian law, and adopt legal and other necessary measures to ensure their full accountability for any violations of these norms.", - "values": [ - "4 - General action" - ] - }, - { - "text": "Continue to pursue development and anti-poverty policies, step up international cooperation, and intensify its efforts to alleviate poverty ", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Revise the existing legislation, in particular the "Protection of Journalists Law number 21" with a view to remove all restrictions on the freedom of the press and to ensure full protection of journalists and other media-workers", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Continue its efforts in order to place a premium on education, particularly by assuring that there be a sufficient number of properly trained local teachers", - "values": [ - "4 - General action" - ] - }, - { - "text": "Increase transparency of its traditional and social media by guaranteeing the rights of Chinese citizens to freely critique any state organ or functionary", - "values": [ - "4 - General action" - ] - }, - { - "text": "Take all the necessary measures to ensure that the national human rights institution is in full compliance with the Paris Principles", - "values": [ - "4 - General action" - ] - }, - { - "text": "Consider acceding to the OP-CEDAW, OP-CAT and the CRPD ", - "values": [ - "3 - Considering action" - ] - }, - { - "text": "Take measures to ensure the effective participation of minorities in the social, economic and cultural life of the country and that they are adequately represented in State institutions and public administration ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Take the necessary measures to guarantee affordable and high quality health care throughout the country", - "values": [ - "4 - General action" - ] - }, - { - "text": "Continue to eradicate poverty and create employment opportunities for youth", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Prevent violence against Roma women and girls, including their harassment at school, and fill the gaps in Roma women's formal education ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Consider working with Ghana and other like-minded countries to promote the Migrant Workers Convention", - "values": [ - "3 - Considering action" - ] - }, - { - "text": "Define its priorities and determine its needs in order to support its request for technical assistance in the area of human rights.", - "values": [ - "1 - Minimal action" - ] - }, - { - "text": "Denounce gender discrimination ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Address fully the recommendations of the Truth and Reconciliation Commission and to do so to at a published timetable", - "values": [ - "4 - General action" - ] - }, - { - "text": "Ensure that allegations of abuse of prisoners are subject to effective and independent investigations ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Improve the performance of public institutions in the protection, promotion and fulfilment of human rights in the country", - "values": [ - "4 - General action" - ] - }, - { - "text": "Give clear orders to the security forces regarding the need to constantly respect international human rights norms, especially the full prohibition of torture and other ill-treatments", - "values": [ - "4 - General action" - ] - }, - { - "text": "Focus more resources on ethnic reconciliation in the education of school-aged children to foster tolerance and appreciation for diversity in the next generation. ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Ensure that the provisions of the Convention on the Rights of Persons with Disabilities (CRPD) are duly implemented", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Sign and ratify the International Covenant on Civil and Political Rights and the International Covenant on Economic, Social and Cultural Rights as soon as possible.", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Take further steps to combat racial discrimination and human trafficking ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Consider using the cooperation mechanisms and facilities offered by the international community system to overcome the shortage of technical and financial resources it may have ", - "values": [ - "3 - Considering action" - ] - }, - { - "text": "Take more efficient steps to prevent and punish violence against women in all its manifestations", - "values": [ - "4 - General action" - ] - }, - { - "text": "Develop further and implement policies and legislation aimed at gender equality, particularly with regard to acquisition of nationality and to sexual or domestic violence ", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Consolidate the protection of women\u2019s human rights with new mechanisms and laws in this area", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Ensure the implementation of the legislation aimed at ensuring gender equality between men and women", - "values": [ - "4 - General action" - ] - }, - { - "text": "Put forward more efforts to eliminate all forms of discrimination against women and ensure greater women's empowerment, representation and advancement in all sectors", - "values": [ - "4 - General action" - ] - }, - { - "text": "Continue to promote awareness campaigns on the question of HIV/AIDS and the rights of people who suffer from it ", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Finalize the set-up of the Human Rights Commission and ensure its functioning in accordance with the Paris Principles", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Apply special temporary measures in all areas where women are underrepresented or under unfavourable conditions", - "values": [ - "4 - General action" - ] - }, - { - "text": "Take effective measures to prevent racial discrimination and violation of the rights of indigenous peoples", - "values": [ - "4 - General action" - ] - }, - { - "text": "Ensure that all persons requesting asylum in Latvia enjoy all procedural guarantees and that decisions on asylum, including those made under accelerated procedures, can be appealed and suspended to avoid the risk of refoulement", - "values": [ - "4 - General action" - ] - }, - { - "text": "Adopt necessary measures to improve conditions in prisons and other places of detention", - "values": [ - "4 - General action" - ] - }, - { - "text": "Continue to collaborate with sporting associations with a view to promoting tolerance and diversity", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Amend legislation to remove all provisions granting security forces or Government officials immunity from prosecution for criminal acts", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Complete quickly the National Health Plan 2021, which was prepared in 2005 and is currently undergoing reform, to enable the full enjoyment of the highest possible level of health for the citizens of Honduras", - "values": [ - "4 - General action" - ] - }, - { - "text": "Continue efforts to implement the development goals and the institutional, administrative reforms it has undertaken.", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Adopt a decisive criminal policy to prosecute and punish perpetrators of violence against women and practice a policy of prevention so as to enhance the sensitivity of society at large to this matter.", - "values": [ - "4 - General action" - ] - }, - { - "text": "Continue cooperating with the Human Rights Council to implement the initiatives undertaken for the well-being and the full enjoyment of human rights of its population", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Increase efforts to prevent any abuse against people in police custody and improve the living conditions of detainees", - "values": [ - "4 - General action" - ] - }, - { - "text": "Establish a unified national policy to reduce poverty ", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Ensure safety of refugees and asylum seekers by also seeking international assistance", - "values": [ - "4 - General action" - ] - }, - { - "text": "Consider setting up a juvenile justice system, bearing in mind the minimum standards for administration of justice for minors under the guidelines of the United Nations for preventing juvenile delinquency ", - "values": [ - "3 - Considering action" - ] - }, - { - "text": "Work on the implementation and dissemination of observations of treaty bodies.", - "values": [ - "4 - General action" - ] - }, - { - "text": "Decriminalize press offences, and allow private radio broadcasting at the national level", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Become a party to the outstanding core international human rights treaties ", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Commit itself to combating institutional bias that can result in the overrepresentation of specific groups in the criminal justice system.", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Continue to promote policies and programmes providing access to education for all, as well as on literacy", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Ratify ICCPR, ICESCR the Optional Protocols to CEDAW and CRPD, and the 1951 Convention relating to the Status of Refugees and its 1967 Protocol ", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Enhance the efforts to combat violence against women and to improve women's access to safe shelter ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Pursue efforts to combat the multiple forms of discrimination against women, particularly from rural areas, in terms of access to justice and to decision-making positions", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "The delegation informed that Estonia had been presenting its candidature to the Human Rights Council for 2012 - 2015 in order to actively contribute to the Council's work for the promotion of human rights. In this respect, Estonia planned to present its voluntary commitments and pledges which would set out its commitment to uphold and advance internationally the highest standards of human rights and contribute to the effective promotion and protection of human rights at the UN level.\n", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Establish a moratorium on the use of the death penalty with a view to its abolition, and, in the meantime, ensure full compliance in all death penalty cases with international fair trial standards ", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Take necessary steps to ensure that individuals suspected of committing crimes under international law and other civil and human rights violations are thoroughly investigated and brought to justice", - "values": [ - "4 - General action" - ] - }, - { - "text": "Strengthen EHRC in order to make it compliant with the Paris Principles ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Remove barriers in accessing legal remedies against domestic violence including by improving the collaboration between relevant institutions and revisiting evidentiary requirements , and to ensure that restraining orders are enforced", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Strengthen measures conducive to responding to the recommendations made by the Secretary-General in 2007, directed to the prevention and elimination of all types of violence, especially sexual violence, against women and girls ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Continue reinforcing the mandate of the Commission on Implementation of international obligations in the field of human rights", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Extend the notion of racism to bring it in line with the International Convention on the Elimination of All Forms of Racial Discrimination ", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "That the law enforcement authorities put an end to stop and search practices based on religious and ethnic profiling ", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Strengthen its efforts to eradicate the illegal spread of narcotic drugs ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Continue its efforts to finalize the national plan for the comprehensive protection of children and adolescents (2015-2019)", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Provide women with equal access to education and employment opportunities, and give priority attention to women-led households in the Government's poverty-alleviation and food security programs", - "values": [ - "4 - General action" - ] - }, - { - "text": "Draft a national strategy and adopt a code for the protection of children", - "values": [ - "4 - General action" - ] - }, - { - "text": "Strengthen the adult literacy education programme", - "values": [ - "4 - General action" - ] - }, - { - "text": "Take appropriate steps to initiate the elaboration of a monitoring mechanism of the human rights situation in the Transnistrian region of the Republic of Moldova, with the involvement of civil society representatives from both banks of the river Nistru", - "values": [ - "4 - General action" - ] - }, - { - "text": "Ensure the effective access of all children to education, in particular migrant and indigenous children, and take effective measures to combat their exclusion from the education system", - "values": [ - "4 - General action" - ] - }, - { - "text": "Ratify the Optional Protocol to the International Covenant on Economic, Social and Cultural Rights (OP-CESCR) ", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Review legislation and its application, and commit resources to training for police and prosecutors in order to eliminate the widespread impunity for domestic violence", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Continue making efforts to ensure that employers and sponsors fully respect the social and cultural rights of migrant workers and domestic workers, their right to housing and an adequate standard of living, and their right to education and training ", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Proceed with the promulgation of the necessary laws in order to abolish the male guardianship system while, in parallel, the stereotypes affecting women's enjoyment of their rights, including their personal status law, should be remedied", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Strengthen measures aimed at fighting against discrimination, racism and xenophobia in the country, especially concerning migrants and asylum seekers", - "values": [ - "4 - General action" - ] - }, - { - "text": "Repeal the Proclamation for Registration of Charities and Societies and promote the development of an independent, transparent, and effective civil society and human rights community ", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Protect space for dissent, including by decriminalizing libel and minimizing fines against media outlets", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "End the use of military technology and weaponry that have proven to be indiscriminate and cause excessive and disproportionate damage to civilian life ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Take all possible measures to eliminate stereotypes and practices which contribute to discrimination against women ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Take urgent measures against prison overcrowding by favouring alternative measures to separate persons ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Provide the necessary resources to address the extreme poverty and marginalization faced by Roma", - "values": [ - "4 - General action" - ] - }, - { - "text": "Allow full participation by all ethnic and democratic groups, including the National League for Democracy and Aung San Suu Kyi, in the political life of the country, allowing the start of a genuine process of national reconciliation ", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Implement the prerogatives of the consultative and participatory council on indigenous peoples created in 2016", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Release immediately and unconditionally all persons convicted for merely exercising their fundamental rights to freedom of expression and assembly, especially during anti-government protests that began in February 2011 ", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Adopt as a matter of priority legislative and other measures to guarantee gender equality and strengthen efforts to eradicate customs and traditions that discriminate women, and that the minimum legal age for marriage of girls is increased to 18 years.", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Sign and ratify promptly the CED ", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Strengthen its efforts to reduce maternal mortality rates", - "values": [ - "4 - General action" - ] - }, - { - "text": "Include a specific prohibition on discrimination on the basis of sexual orientation in the Anti-discrimination Law", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Take measures to prevent child pregnancies by providing access to comprehensive sexuality education and integral sexual and reproductive health services for teenagers", - "values": [ - "4 - General action" - ] - }, - { - "text": "Study the possibility of being party to the following international instruments: ICESCR and CED ", - "values": [ - "3 - Considering action" - ] - }, - { - "text": "Amend the provisions of the Law on the Ombudsman for Children, that impedes the Ombudsman from investigating the claims of children that find themselves in a situation of irregular migration", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Ensure inclusive education in line with the Convention on the Rights of Persons with Disabilities", - "values": [ - "4 - General action" - ] - }, - { - "text": "Prohibit by law the worst forms of corporal punishment of children in all places", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Ensure effective follow-up to the activities included in the campaign against racism and hate crimes, which officially ended in May 2017, possibly through the development of a new campaign on the same topic", - "values": [ - "4 - General action" - ] - }, - { - "text": "Bring national legislation in line with regional and international human rights treaties to which it is a party", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Steps be taken to enhance and strengthen the independence of the judiciary", - "values": [ - "4 - General action" - ] - }, - { - "text": "Continue improving the outreach to all ethnic communities to actively participate in the political process so as to strengthen Ethiopia's democracy and prevent potential conflicts ", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Continue carrying out its sound public policies from the Ministry of Popular Power for Indigenous Peoples, to guarantee the respect and observance of the rights of Indigenous Peoples and Afro-descendant Communities ", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Accede to the Rome Statute of the International Criminal Court (ICC) and harmonise its national legislation with it, including the integration of the provisions to fully cooperate with the Court, and to investigate and prosecute genocide, crimes against humanity and crimes of war before their national courts ", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Ensure adequate financial and human resources to effectively implement its National Human Rights Action Plan", - "values": [ - "4 - General action" - ] - }, - { - "text": "Maintain its efforts in the context of the right to housing", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Provide adequate training for judges, including human rights training, to ensure all judicial proceedings conform to international fair trial standards, and take concrete measures to strengthen the impartiality and independence of the Judicial Services Commission, including through ensuring that the composition and functioning of the Commission is in line with international principles of independence and accountability of the judiciary", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Continue to enhance women's empowerment and greater representation in all sectors", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Adopt measures to ensure that Dominican of Haitian descent are not denied citizenship or access to civil and birth registration procedures and are not arbitrarily subject to retroactive cancellation of birth and identity documents ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Take concrete measures to ensure full respect for freedom of expression and of the press and release persons detained for exercising their freedom of expression, or as a result of their political views ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Ensure the adequate financial resources for the national human rights institutions", - "values": [ - "4 - General action" - ] - }, - { - "text": "Ratify CAT and its Optional Protocol", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Take further measures to ensure that the definition of terrorist acts in Monaco is in line with its human rights obligations.", - "values": [ - "4 - General action" - ] - }, - { - "text": "Consider acceding to the Second Optional Protocol to the International Covenant on Civil and Political Rights.", - "values": [ - "3 - Considering action" - ] - }, - { - "text": "Continue its efforts to increase job opportunities for educated women in the Libyan Arab Jamahiriya ", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Take steps to meet international standards for prison and detention centre conditions ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Continue efforts to promote education for the good of all", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Having in mind the overall needs of BiH society, the priorities are the following: adoption of a national action plan for human rights, capacity building and unifying of the BiH Ombudsmen institutions, enforcement of the Law on Prohibition of Discrimination, harmonization of domestic legislation with the European acquis communautaire, implementation of recommendations of UN committees, training of judges, prosecutors and others actors in the field of human rights, population census, the analysis of the social situation in BiH (better cooperation between entities and the state), the implementation of action plans for Roma and improvement of implementation of educational needs of Roma (Education and training of the Roma population), improve the protection of the human rights activists, conducting specific measures to eliminate segregation in schools (two schools under one roof), promote women politicians and leaders- promote the importance and the role of women in political life, condemnation of violence in the family- (talk publicly about the violence in the family - the politicians and leaders), the realization of the National strategy on war crimes processing, the Strategy and reform of the judicial system (OSCE - Report), the establishment of the best national mechanisms for the protection against torture, the improvement of mechanisms to preserve independence of the judiciary (High Judicial and Prosecutorial Council of BiH-HJPC, prosecutor's office, courts, SIPA, the establishment of a unique BiH ombudsman institution, the Constitutional Court and the competent ministries should propose legal measures for the timely execution of final judgments and insurance of funds and other resources for substantial return.", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Intensify efforts to combat practices and beliefs that undermine human rights, including the rights of women and children ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Step up efforts towards the prevention and suppression of human trafficking and the smuggling of migrants by air, land and sea", - "values": [ - "4 - General action" - ] - }, - { - "text": "Accede to the United Nations Convention relating to the Status of Stateless Persons of 1954 and to the Convention on the Reduction of Statelessness of 1961 ", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Condemn strongly the attacks on migrants, Roma and other ethnic minorities, ensuring that the attacks are investigated fully by the police and that those responsible are brought to justice", - "values": [ - "4 - General action" - ] - }, - { - "text": "Domesticate the Convention against Torture and Other Cruel, Inhuman or Degrading Treatment or Punishment", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Unconditionally release all prisoners detained solely because of their political, religious or other conscientiously held beliefs ", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Step up efforts to ensure the full respect of freedom of religion and worship, including by reviewing laws and provisions at all levels related to the freedom of religion, in order to align them with article 18 of ICCPR.", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Guarantee access for persons with disabilities to education, health care and employment on an equal footing and without discrimination", - "values": [ - "4 - General action" - ] - }, - { - "text": "Establish measures to integrate informal economic activities in the national economy thus allowing inter alia access to credit and financial services and simplifying the procedures of access to appropriate training", - "values": [ - "4 - General action" - ] - }, - { - "text": "Continue promoting initiatives which contribute to foster inter-cultural understanding, which is a central element to prevent all forms of discrimination, xenophobia and intolerance ", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Accelerate the progress of consultations and ensure that the national human rights institution functions in accordance with the Paris Principles", - "values": [ - "4 - General action" - ] - }, - { - "text": "Ensure equal rights for members of the Roma and Sinti minorities, to ensure that all Roma and Sinti children are enrolled in school, and to make efforts to encourage regular school attendance by these children", - "values": [ - "4 - General action" - ] - }, - { - "text": "Improve the collection and publishing of gender-specific data in the fields of economic and social development", - "values": [ - "4 - General action" - ] - }, - { - "text": "Ratify, without further delay, the Convention against Torture and Other Cruel, Inhuman or Degrading Treatment or Punishment ", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Prosecute perpetrators of gender-based violence and bride-kidnapping", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Establish effective coordination and monitoring structures to ensure Convention on the Rights of the Child implementation across national and local governments", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Establish a national human rights institution in accordance/compliance with the Paris Principles ", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Implement a national policy for gender equality and take steps to ensure greater representation of women in decision-making ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Enhance its capacity to promote and protect human rights, with the support of the international community, in terms of capacity-building and technical assistance in human rights, as requested by Burkina Faso.", - "values": [ - "4 - General action" - ] - }, - { - "text": "Pass legislation which qualifies domestic violence and spousal rape as crimes", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "In line with recommendations of the Committee in the Rights of the Child, enhance efforts to find a prompt solution for either the return or resettlement of people living in refugee camps, with particular attention to children and women and reunification of families", - "values": [ - "4 - General action" - ] - }, - { - "text": "Continue to pursue efforts to improve access to education, including for persons with disabilities", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Implement legal reforms to promulgate a criminal code, ensure transparent and fair criminal trials, and prevent arbitrary, secret and indefinite detention and torture in custody", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Extend a permanent and open invitation to the United Nations human rights special procedures", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Strengthen the full implementation of legislation on corporal punishment of children, including through awareness raising, education programmes, and appropriate complaints mechanisms ", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Establish, as rapidly as possible, the independent children's commission responsible for investigating violations of children's rights and monitoring the implementation of the 2008 Child Act", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Strengthen the existing national plan of action on the protection of children, in particular on its policies in the prevention, recovery and reintegration of children victims of sexual exploitation", - "values": [ - "4 - General action" - ] - }, - { - "text": "Follow up on the recommendations made by the Special Rapporteur on the situation of human rights and fundamental freedoms of indigenous peoples in 2004.", - "values": [ - "4 - General action" - ] - }, - { - "text": "Actively support programmes strengthening religious freedom and tolerance especially in the run-up to the elections in 2013", - "values": [ - "4 - General action" - ] - }, - { - "text": "Consider ratifying the International Labour Organization (ILO) Domestic Workers Convention, 2011 (No. 189)", - "values": [ - "3 - Considering action" - ] - }, - { - "text": "Strengthen the efforts to ensure inclusive education without discrimination for children with disabilities, and guide all cantons to refrain from a segregated approach in this context", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Continue to protect the right to life from conception to natural death", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Promote equal employment opportunities for women and all of its national minorities ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Establish a national human rights institution with a broad mandate and sufficient resources, in compliance with the Paris Principles, that includes a concrete mandate regarding the rights of women", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Implement fully the Global Political Agreement, including those articles relating to the security of persons and prevention of violence, freedom of expression and freedom of assembly and association ", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Expedite the efforts in combating corruption and in consolidating the rule of law", - "values": [ - "4 - General action" - ] - }, - { - "text": "Accelerate the creation of the Constitutional Court and the Constitutional bodies, ensuring that they and other institutions, including the National Authority for the Prevention of Torture, are independent, adequately resourced and swiftly operational", - "values": [ - "4 - General action" - ] - }, - { - "text": "Establish an inclusive process to follow up on the universal periodic review recommendations ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Intensify its efforts to fight against all forms of discrimination, be it racial, national or social, and to promote and protect dignity and equality which are the guiding principles of concrete and effective implementation of human rights. ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Consider the withdrawal of reservations to CEDAW Convention", - "values": [ - "3 - Considering action" - ] - }, - { - "text": "Strengthen its efforts to combat racism, racial discrimination, xenophobia and related intolerance, and implement the recommendations of the Committee in this regard.", - "values": [ - "4 - General action" - ] - }, - { - "text": "Grant access to international humanitarian agencies such as WFP ", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "With the support of international institutions, submit the various pending initial and periodic reports", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Recommended that any restrictions on the activities of civil society be lifted and safeguards implemented to prevent human rights defenders from being prosecuted for their peaceful activities.", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Complete the process of judicial and penal reform", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Take all necessary measures to fully implement the Convention on the Rights of the Child, including by prohibiting corporal punishment of children in all settings", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Continue strengthening the measures it is taking to promote gender equality and the empowerment of women ", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Consider developing human rights indicators, as suggested by OHCHR, as an instrument that allows for a more precise and coherent evaluation of national human rights policies", - "values": [ - "3 - Considering action" - ] - }, - { - "text": "Finalize the National Child Protection Strategy and the Children's Bill", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Provide greater support for foster care as an alternative to institutionalization of children.", - "values": [ - "4 - General action" - ] - }, - { - "text": "Investigate all credible allegations related with the Presidential elections in 2008, particularly in the areas of torture, arbitrary detentions and enforced disappearances ", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Ensure effective criminal justice responses to all forms of sexual and gender-based violence, particularly domestic violence and female genital mutilations", - "values": [ - "4 - General action" - ] - }, - { - "text": "Improve the precarious situation of indigenous peoples and Afro- descendent communities", - "values": [ - "4 - General action" - ] - }, - { - "text": "Ratify the United Nations Convention against Transnational Organised Crime and its Protocols to Prevent, Suppress and Punish Trafficking in Persons, especially Women and Children, and Against the Smuggling of Migrants by Land, Sea and Air ", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Continue to promote the fight against poverty, inequality and social exclusion at the national, regional and international levels ", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Strengthen the application of the rights enshrined in the International Covenant on Economic, Social and Cultural Rights, with special attention to children, women, persons with disabilities, the elderly and families with limited resources ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Increase efforts to reduce the imprisonment of indigenous Australians", - "values": [ - "4 - General action" - ] - }, - { - "text": "Argentina undertakes to continue developing institutional mechanisms, with the participation of civil society, to comply with the decisions of regional and international human rights organizations, including by developing compliance charts that show the agencies in charge, the measures to be taken and the corresponding deadlines", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Pursue positive endeavours aimed at promoting and protecting the rights of women, including through the strengthening of the measures already taken to prevent and combat trafficking in women", - "values": [ - "4 - General action" - ] - }, - { - "text": "Continue the implementation of the policy aimed at improving the judicial system, reforming the law enforcement bodies and reducing the crime rate and corruption ", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Develop its third human rights action plan to guide its policy direction and ensure the implementation of programmes for an even more robust promotion and protection of human rights", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Thoroughly investigate all allegations of sexual violence and bring perpetrators of such crimes to justice, in accordance with international standards", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Continue the process of bringing national legislation into line with international standards ", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Consider the ratification of CED and CRPD.", - "values": [ - "3 - Considering action" - ] - }, - { - "text": "Ensure that the voices of and challenges faced by minorities are acknowledged by the authorities and included in the decision-making processes that affect them", - "values": [ - "4 - General action" - ] - }, - { - "text": "Continue its efforts to promote and protect human rights within the country", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Enhance and, where appropriate, review the implementation of medium- and long-term strategies, including the Strategic Development Plan 2007-2011, the 2020 Plan for Indigenous Fijians, the National Policy for Persons Living with Disabilities 2008-2018 and the national AIDS strategy, inter alia, with a view to achieving further gains in the promotion and protection of human rights in the country", - "values": [ - "4 - General action" - ] - }, - { - "text": "Ensure that the best interests of the child are fully considered when deciding on asylum cases", - "values": [ - "4 - General action" - ] - }, - { - "text": "Intensify policies for job creation and programmes for the social reintegration of young people, especially those who were child soldiers during the civil war ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Take all necessary measures to guarantee that its citizens, particularly journalists, enjoy full freedom of opinion and expression", - "values": [ - "4 - General action" - ] - }, - { - "text": "Develop and adopt comprehensive strategies to address all forms of violence against women, and raise educational awareness to eliminate female genital mutilation", - "values": [ - "4 - General action" - ] - }, - { - "text": "Promote the completion of existing initiatives to reform national legislation so that cases of alleged violation of human rights by the armed forces are considered in civilian courts ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Ensure that violations committed by members of the security forces are subject to legal proceedings", - "values": [ - "4 - General action" - ] - }, - { - "text": "Ensure an effective implementation of the criminal legislation and the respect of the principle of a 48 hour limit for any legal framework", - "values": [ - "4 - General action" - ] - }, - { - "text": "Continue the legislative review with a view to ensuring equality between women and men in law and practice in all areas of life", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Ratify the Rome Statute of the International Criminal Court to ensure accountability for, prevention of, and justice for the victims of human rights violations, and fully cooperate with the International Criminal Court", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Ensure that its new Penal Code is fully consistent with international human rights standards and that it abolishes corporal punishment and the death penalty ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Ensure that acts of discrimination against LGBT persons and persons belonging to other vulnerable groups are properly investigated and perpetrators held accountable ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Consider ratifying the Second Optional Protocol to the ICCPR ", - "values": [ - "3 - Considering action" - ] - }, - { - "text": "Take measures to guarantee proper and genuine analysis of each refugee petition on a case-by-case basis ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Enact a plan to achieve national reconciliation based on dialogue and with the full ownership of all Libyans, including women and ethnic, religious and other minorities, while cooperating closely with the United Nations Support Mission in Libya and the Office of the United Nations High Commissioner for Human Rights", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Consider the possibility of contemplating exceptions to the general prohibition of abortion, especially in cases of therapeutic abortion when the mother's life is in danger as well as in cases of pregnancies resulting from rape or incest ", - "values": [ - "3 - Considering action" - ] - }, - { - "text": "That relevant laws, including the Public Order Act and the Public Entertainment and Meeting Act not be invoked to curtail the right to freedom of peaceful assembly, including that of civil society ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Continue efforts to strengthen the system for combating trafficking in persons and establish a response mechanism to provide assistance to victims of this crime", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Continue adopting measures like the Temporary Plan for Education 2013-2015 guaranteeing education free of charges", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Ensure that all individuals, including members of the armed forces, police and intelligence services, suspected of committing crimes under international law or other serious human rights abuses are brought to justice in fair trials. ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Continue its efforts with a view to approving the constitutional reform package ", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Continue its efforts to strengthen the National Human Rights Commission, in line with the Paris Principles and with full participation of the civil society", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Consider taking necessary steps to develop technical expertise to gain a better understanding of its obligations in ensuring effective implementation of human rights instruments ", - "values": [ - "3 - Considering action" - ] - }, - { - "text": "Implement, as soon as possible, the recommendations of the international commission of inquiry concerning the events of 28 September 2009", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Prevent child marriage by having a minimum age restriction of marriage at 18 without any exception", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Continue to strengthen efforts to reduce maternal and infant mortality, including by developing the midwifery workforce and making the services of skilled birth attendants available, accessible and, where necessary, free of charge ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Apply the law of 2011 in relation to the protection of children", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Combat discrimination based on nationality, ethnicity or religion", - "values": [ - "4 - General action" - ] - }, - { - "text": "Undertake measures to assist and protect the most vulnerable social groups ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Further intensify its efforts to combat human trafficking", - "values": [ - "4 - General action" - ] - }, - { - "text": "Review the definition of rape so that the lack of consent has a central place in this criminal conduct", - "values": [ - "3 - Considering action" - ] - }, - { - "text": "Increase its efforts to ensure that children in vulnerable situations, including Roma children, have equal access to education and to end segregation of Roma children in schools", - "values": [ - "4 - General action" - ] - }, - { - "text": "Take the measures necessary to accelerate the enactment of the bill on sexual offenses and domestic violence", - "values": [ - "4 - General action" - ] - }, - { - "text": "Ratify the Optional Protocol to the Convention on the Elimination of all Forms of Discrimination against Women", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "The MSAR [Macao Special Administrative Region] Government commits to extend compulsory education until the end of secondary school.", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Stop arresting people for same-sex relations", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Take measures in order to fully guarantee the rights of children, in particular with reference to the treatment of juveniles in the judicial system, and to prevent and combat the involvement of children in armed conflicts, their trafficking and their exploitation in the prostitution and pornography industry", - "values": [ - "4 - General action" - ] - }, - { - "text": "Improve further the general secondary education ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Further promote the collective rights of women, children, persons with disabilities, people belonging to ethnic and religious groups, and persons living with HIV/AIDS, and promote tolerance and mutual respect for all, including by developing a mechanism to this end ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Take urgent and concrete measures to ensure the practical enjoyment by the Roma of their rights", - "values": [ - "4 - General action" - ] - }, - { - "text": "Publicly condemn hate crimes and hate speech, and ensure the investigation, prosecution and punishment of discrimination or violence motivated by the victim\u2019s national, ethnic or religious identity", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Increase the resources so that female survivors of violence and domestic abuse can denounce the crimes with guarantees they will be not repeated", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Intensify efforts against sexual abuse and child pornography, with more awareness campaigns about the punitive character of these crimes, particularly in rural areas ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Continue the implementation of the strategic plan for the development of literacy and non-formal education 2012-2016", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Provide for conscientious objectors various forms of alternative service which are compatible with the reasons for conscientious objection, of a non-combatant or civilian character, in the public interest and not of a punitive nature", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Pay special attention to education and training in the field of human rights, in particular for members of the law enforcement and judiciary bodies", - "values": [ - "4 - General action" - ] - }, - { - "text": "Continue working on strengthening the protection and the necessary guarantee for all victims of racism or other forms of discrimination ", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "To elaborate the possibility to eliminate corporal punishment and the death penalty", - "values": [ - "3 - Considering action" - ] - }, - { - "text": "Address rape as a crime", - "values": [ - "4 - General action" - ] - }, - { - "text": "Improve the mechanisms for the reception of refugees and asylum seekers, ensuring that they are offered psychological and legal assistance, help with languages as well as the opportunity to access employment which corresponds to their professional skills ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Fully ensure gender equality in labour recruitment and appointments to political posts", - "values": [ - "4 - General action" - ] - }, - { - "text": "Extend a standing invitation to all special procedures of the Council ", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Manifest, as soon as possible, the commitment of the Jamaican Government to establish a national human rights institution, in line with the Paris Principles", - "values": [ - "4 - General action" - ] - }, - { - "text": "Improve the health and education systems", - "values": [ - "4 - General action" - ] - }, - { - "text": "Specify modalities for the implementation of the National Security Law so that this law cannot be used against freedoms of expression, association and peaceful assembly", - "values": [ - "4 - General action" - ] - }, - { - "text": "Amend the Law on Freedom of Conscience and Religious Organizations to fully protect the right to freedom of religion or belief in compliance with international norms and obligations. Remove restrictions imposed over religious education and literature, activities of religious organizations, and religious dress to promote religious tolerance", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Clarify its position on the death penalty, and reaffirm its commitment to a de facto moratorium", - "values": [ - "4 - General action" - ] - }, - { - "text": "Fully involve civil society in the follow-up to this review ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Further improve the conditions of prisons to make them more conducive to the rehabilitation of inmates as per the comment of EHRC ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Take appropriate measures to combat school dropout", - "values": [ - "4 - General action" - ] - }, - { - "text": "Adopt an official moratorium aiming at the formal abolishment of the death penalty in the country", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "National human rights institution/civil society involvement in follow-up and implementation", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Continue to provide financial assistance for countries in need of socio-economic development and extend support for the global effort in the realization of the right to development as stipulated in the Millennium Development Goal 8.", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Continue to firmly fight arbitrary executions and impunity, assure the protection of the civilian population and promote the return of refugees and displaced persons to their regions of origin.", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Halt to all executions and establish a moratorium on the death penalty with a view to abolishing capital punishment", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Deepen and extend its social policies in order to eradicate extreme poverty, in particular in the rural area", - "values": [ - "4 - General action" - ] - }, - { - "text": "Accede to the International Convention on the Elimination of All Forms of Racial Discrimination, to the two optional protocols to the International Covenant on Civil and Political Rights, with particular reference to the abolition of the death penalty in all circumstances", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Take more effective measures to combat racial discrimination, in particular against vulnerable groups of women, especially Roma and migrant women, as well as measures to reinforce the respect of their human rights by all available means", - "values": [ - "4 - General action" - ] - }, - { - "text": "Submit its two overdue reports to the Committee on the Elimination of Racial Discrimination", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Increase efforts to develop the Swiss Resource Centre for Human Rights into a national human rights institution in compliance with the Paris Principles", - "values": [ - "4 - General action" - ] - }, - { - "text": "Ensure a higher level of awareness of the population in order to overcome stigmatization", - "values": [ - "4 - General action" - ] - }, - { - "text": "Protecting indigenous populations against mining companies and make them play a part in decision making", - "values": [ - "4 - General action" - ] - }, - { - "text": "Place a moratorium on the death penalty with the long-term view of repealing it", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Reconsider the establishment of a moratorium on the use of the death penalty.", - "values": [ - "3 - Considering action" - ] - }, - { - "text": "Continue its ongoing efforts, in accordance with the Twenty-Year Vision Strategic Plan for Development, to achieve global and sustainable development", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Continue efforts to monitor the cotton harvest in order to prevent forced labour and to take law enforcement efforts against trafficking ", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Complete the ratification of CRPD and OP-CRC-AC", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Continue efforts on encouraging cultural exchanges between the residents and migrants", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Pay special attention to the needs of rural women and women heads of households, ensuring that they participate in decision-making processes and have full access to justice, education, health services and credit facilities, and eliminate all forms of discrimination against women with respect to ownership and inheritance of land ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Intensify its cooperation with the treaty bodies", - "values": [ - "4 - General action" - ] - }, - { - "text": "Recommended that juvenile courts and justices be established to enhance access to justice of children in conformity with their specific needs.", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Intensify efforts on a national scale for the sustainable use of natural resources ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Extend all necessary cooperation to the Office of the High Commissioner for Human Rights for its staff to visit as quickly as possible and to carry out the investigations mandated by resolution S-16/1", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Ensure that all allegations of serious human rights violations by law enforcement officials are investigated in full and dealt with appropriately ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Introduce measures to ensure the free, fair and open conduct of trials in accordance with international standards including access to Legal Counsel in pre-trial custody", - "values": [ - "4 - General action" - ] - }, - { - "text": "Put in place a new fully independent national human rights institution in line with the Paris Principles", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Continue to strengthen its efforts to protect the rights of vulnerable groups with a particular focus on narrowing the gaps between the different regions", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Improve the implementation of the anti-discrimination law, including disseminating the information on its provisions to the public as well as the personnel of the justice and law enforcement systems and strengthen the role of the Ombudsperson in this regard", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Prioritize the retention of girls in schools and accord to them the opportunity and the environment to progress at a par with their male colleagues", - "values": [ - "4 - General action" - ] - }, - { - "text": "Take steps to ensure that prompt, effective and impartial investigations are carried out into the killings of all Somali civil-society actors and journalists ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Ratify the Optional Protocol to CED", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Take urgent, strong and coordinated action at all levels to eradicate torture, punish perpetrators, compensate victims and ensure effective legal safeguards for all persons deprived of their liberty", - "values": [ - "4 - General action" - ] - }, - { - "text": "Adopt measures to guarantee the rights of the Rohingya refugees who are in Bangladesh, applying the principle of non-refoulement and allowing NGOs to carry out their work regarding refugees ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Strengthen promotion and protection of persons with disabilities and elderly ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Further consider measures to secure the integration of the Roma community", - "values": [ - "3 - Considering action" - ] - }, - { - "text": "Completely abolish the death penalty", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Continue its efforts towards human rights training, capacity-building and human rights education, especially through integrating human rights in the educational curriculum", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Implement the recommendations of the Working Group on Arbitrary Detention and the Human Rights Committee regarding the detention of asylum seekers, including political asylum, and guarantee the full enjoyment of their right to freedom of movement and full and immediate access to independent medical personnel and legal representation", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Ratify the Rome Statute of the International Criminal Court and implement it in its national legislation", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Pursue cooperation with UNDP to lay foundations for human rights and learn from experience", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Pursue efforts to re-establish the A status of the Norwegian Centre for Human Rights, guaranteeing its full independence ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Continue the initiatives directed towards the promotion and protection of the rights of the national minorities", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Ensure due protection of rights of its diverse religious, national or ethnic and linguistic minority groups threatened by the increased violence and tensions and to prevent their discrimination", - "values": [ - "4 - General action" - ] - }, - { - "text": "Align the legal framework applicable to freedom of the press and publication and to audiovisual communication with applicable international standards", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Take active measures to find a solution in Nepal and Bhutan for the remaining number of refugees", - "values": [ - "4 - General action" - ] - }, - { - "text": "Intensify its efforts to ensure that collective centres and resettlement zones for IDPs that are still in operation meet adequate living standards, in particular access to drinking water and basic sanitation. Forced evictions should be exceptional, proceed in compliance with due process and respect the right to adequate housing for the affected population ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Abolish or amend all Penal Code articles that place impermissible restrictions on the freedom of expression", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Pursue particular efforts to spread awareness of human rights and disseminate its principles among its citizens", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Develop a comprehensive strategy to prevent, prohibit and combat hate speech, as a matter of priority, including measures to effectively investigate and prosecute related offences ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Give priority to the full implementation of the Act on Women's Right to a Life Free from Violence and adopt the draft bill on trafficking in persons", - "values": [ - "4 - General action" - ] - }, - { - "text": "Continue to monitor the implementation of the National Strategy for Combating Violence against Women", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Take measures to work towards improving the living conditions for refugees and asylum seekers", - "values": [ - "4 - General action" - ] - }, - { - "text": "Step up efforts to improve prison conditions and police cells, in order to decongest prisons", - "values": [ - "4 - General action" - ] - }, - { - "text": "Ensure decent living conditions in all reception and detention centres for migrants and asylum seekers by providing adequate services", - "values": [ - "4 - General action" - ] - }, - { - "text": "Continue searching for a way to adopt a legal framework which will enable its citizens resident abroad to exercise their right to vote.", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Consider adopting a law to eliminate violence against women including domestic violence and make more efforts in order to ensure universal access to compulsory education", - "values": [ - "3 - Considering action" - ] - }, - { - "text": "Publish a consolidated list of missing persons", - "values": [ - "4 - General action" - ] - }, - { - "text": "Continue to promote religious tolerance and to hold to account the perpetrators of violence and threats against religious minorities ", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Extend a standing invitation to all Special Procedures of the Human Rights Council ", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Provide sufficient resources to the Office of the Ombudsman for its effective functioning.", - "values": [ - "4 - General action" - ] - }, - { - "text": "Implement the reconciliation put forth by the Independent Policing Oversight Authority's 2014 reports on the "Usalama Watch" security operation and on the Mpeketoni attacks", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Address the geographic inequalities in access to education and school enrolment rates by creating new institutions and expanding the school transport system ", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Continue to provide access to UN Special Procedure mandate-holders who are seeking to help Pakistan to identify and address human rights challenges", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Strengthen measures to eliminate customary practices leading to violence, in particular vendetta and honour killings and domestic violence, and ensure effective access of potential and actual victims to protection ", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Realize the right to adequate housing by ensuring the right of post- war returnees to recover privately owned housing, regardless of their ethnic background, and by improving housing conditions in returnee communities", - "values": [ - "4 - General action" - ] - }, - { - "text": "An efficient follow-up system for the recommendations given by SUHAKAM be developed and measures taken to ensure the compliance of the Commission with the Paris Principles", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Extend an open and standing invitation to all special procedures mechanisms ", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Investigate all acts of discrimination against the Dalit community", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Work on adopting new laws to promote gender equality, women's participation in public affairs and punish domestic violence ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Complete the process of ratification of the International Convention for the Protection of All Persons from Enforced Disappearance", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Develop a legislative framework which guarantees freedom of expression and freedom of the press ", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Acknowledge legally the rights of indigenous and tribal peoples to own, develop, control and use their lands, resources and communal territories according to customary law and traditional land-tenure system ", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Take effective measures to ensure the full realisation of the right to freedom of expression", - "values": [ - "4 - General action" - ] - }, - { - "text": "Take steps to protect IDPs including through the provision of durable housing solutions and by ensuring that forced evictions are carried out in accordance with international standards ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Strengthen measures to prevent cases of domestic violence and the killing of women, and ensure that perpetrators be taken to justice", - "values": [ - "4 - General action" - ] - }, - { - "text": "Promptly ratify the International Covenant on Economic, Social and Cultural Rights", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Continue in the advancement of empowering women, particularly to ensure that the representation of women in political and public organs fully reflects the diversity of people in Norway, including migrant workers, migrant women and women who belong to minorities ", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Design a strategy against trafficking and sexual exploitation of women and girls covering the proper detection and protection of victims, with an impact on the whole country", - "values": [ - "4 - General action" - ] - }, - { - "text": "Identify and implement best practices to combat child labour in violation of international standards in the fishing industry on Lake Volta", - "values": [ - "4 - General action" - ] - }, - { - "text": "Invite the Special Rapporteur on the human rights of migrants, the Special Rapporteur on torture, the Special Rapporteur on human trafficking, and the Special Rapporteur on the sale of children, child prostitution and child pornography ", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Take necessary measures to ensure that effective protection against discrimination in all aspects of their employment is provided to all migrant domestic workers", - "values": [ - "4 - General action" - ] - }, - { - "text": "Fight against discrimination based on origin, gender and sexual orientation, and strengthen its legislative framework to provide recognition and protection for transgender persons", - "values": [ - "4 - General action" - ] - }, - { - "text": "Halt serious violations of human rights and humanitarian law including covert external operations by the CIA, carried out on the pretext of combating terrorism ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Strengthen anti-hate and anti-discrimination legislation in the Turkish Penal Code, specifically article 122, by prohibiting hate crimes and discrimination based on sexual orientation", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Consider accession to the Second Optional Protocol to the International Covenant on Civil and Political Rights with the aim of abolishing the death penalty and introducing an official moratorium on executions", - "values": [ - "3 - Considering action" - ] - }, - { - "text": "Improve access to education by all people, particularly children in the interior of the country", - "values": [ - "4 - General action" - ] - }, - { - "text": "Take all necessary measures to promote the rights of women and to effectively combat domestic violence", - "values": [ - "4 - General action" - ] - }, - { - "text": "Continue measures to enhance the protection of the human rights of women and gender equality, taking into account the observations of the CEDAW Committee.", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Seek support from the international community in its on-going efforts for the promotion of human rights and development", - "values": [ - "1 - Minimal action" - ] - }, - { - "text": "Ensure the processing of asylum-seekers' claims in accordance with the United Nations Refugee Convention and that they are detained only when strictly necessary ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Continue to strengthen national institutions responsible for human rights", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Ratify the Optional Protocol to the Convention against Torture and establish a national preventive mechanism", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Create an environment conducive to free, fair and inclusive elections, including by ensuring the neutrality, independence and professionalism of the Supreme Electoral Council ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Continue to carry out human rights campaigns to improve the human rights awareness of the general public", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Continue to direct attention to enhance human rights training for police officers and more effective ways of dealing with hate crimes", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Place special emphasis, in its general policy of protection of persons with disabilities, on the protection of children with disabilities, who are more vulnerable to discrimination ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Ratify the International Covenant on Economic, Social and Cultural Rights", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Ratify the Optional Protocol to the Convention on the Rights of the Child on the sale of children, child prostitution and child pornography and the Hague Convention on Protection of Children and Co-operation in Respect of Intercountry Adoption ", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Redouble efforts for the full realization of the "Education for All" policy", - "values": [ - "4 - General action" - ] - }, - { - "text": "That laws, regulations and plans are followed-up with adequate training and resources to ensure that the improved rights of women become a reality on the ground ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Continue and step up efforts already under way to make sure that there is better access and better quality for health and education services for all citizens", - "values": [ - "4 - General action" - ] - }, - { - "text": "Officially declare a moratorium on executions with a view to abolish the death penalty in future", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Expand the remit of the interministerial child trafficking committee to include adults, ensuring adequate human and financial resources to support national efforts", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Establish specific programmes to prevent dropout from school and support the continuation of studies", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Continue to attach priority in the area of international cooperation to combating poverty, to mother and child health, to education and to combating pandemics", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Work towards repealing regional or local by-laws discriminating against persons based on their sexual orientation or gender identity", - "values": [ - "4 - General action" - ] - }, - { - "text": "Further streamline the Aliens Act to ensure that acts which may lead to expulsion are in line with international refugee and human rights law ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Continue to improve its education system and ensure access to quality education for all", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "That the necessary measures are implemented to guarantee freedoms of expression, association and peaceful assembly ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Take effective measures to prosecute and punish trafficking and the exploitation of persons, as recommended by the Committee against Torture", - "values": [ - "4 - General action" - ] - }, - { - "text": "Expand the space for independent activities of civil society groups and issue a standing invitation to the special procedures to visit the Comoros ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Continue to work closely with ASEAN to build on the mechanisms of the ASEAN Intergovernmental Commission on Human Rights (AICHR) and the ASEAN Commission on the Promotion and Protection of the Rights of Women and Children (ACWC) to promote and protect the rights of the peoples of ASEAN", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Promote participation and representation of women in governmental and private sectors. ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Ensure the independence of the branches of government, in particular the electoral and judicial branches, ensure due process and avoid arbitrary arrests", - "values": [ - "4 - General action" - ] - }, - { - "text": "Ratify or accede to, where appropriate, the Rome Statute of the International Criminal Court ", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Intensify efforts to promote ethnic and religious tolerance in the country.", - "values": [ - "4 - General action" - ] - }, - { - "text": "Reinforce its efforts in provision of free and compulsory primary education ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Pursue efforts to combat sexual exploitation of children", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Implement effectively legislation on violence against women to combat misogynous stereotypes, discrimination and violence", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Immediately introduce a moratorium on executions and abolish the death penalty and ratify the Second Optional Protocol to the ICCPR", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Continue efforts towards the elimination of violence against women in all conflict areas, female genital mutilation and early and forced marriage ", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Consider establishing additional national human rights mechanisms to promote and protect human rights ", - "values": [ - "3 - Considering action" - ] - }, - { - "text": "Introduce a moratorium on executions as soon as possible", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Intensify efforts to make segments of the society benefit from equitable economic growth ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Continue the efforts in ensuring the rights of the migrant workers, including in terms of access to all social and health services ", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Adopt the necessary measures to guarantee access to justice for women", - "values": [ - "4 - General action" - ] - }, - { - "text": "Continue ensuring an environment conducive to the full respect and protection of the rights of refugees and asylum seekers within Austrian society at large", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Repeal all provisions that criminalize consensual same sex relationships between adults or discriminate against homosexuals ", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Impose a moratorium on executions immediately with the ultimate goal of abolishing the death penalty altogether.", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Adopt further legislative measures in order to combat racist, xenophobic and Islamophobic acts and manifestations, particularly against Muslim sanctities including in the political arena and in the media ", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Fully implement the National Plan of Action for Inclusive Education and eliminate practices that lead to the continued segregation of Roma children at school, redouble efforts to remedy all shortcomings faced by Roma children in the field of education", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Increase efforts to ensure the independence and transparency of the judiciary", - "values": [ - "4 - General action" - ] - }, - { - "text": "Continue strengthening efforts to combat racism, intolerance and hate crimes", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Consider the abolition of the death penalty in its legal system and proceed with the ratification of the Second Optional Protocol to the International Covenant on Civil and Political Rights", - "values": [ - "3 - Considering action" - ] - }, - { - "text": "Adhere to OP-CAT and consequently establish a national mechanism responsible to conduct visits to detention centres", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Ban corporal punishment sentences and life sentences, in particular for children ", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Promote the participation of women in public affairs, including raising the rate of their representation in elected councils", - "values": [ - "4 - General action" - ] - }, - { - "text": "Ensure human rights defenders the free exercise of their activities and refrain from harassment and intimidation against them", - "values": [ - "4 - General action" - ] - }, - { - "text": "Develop concrete plans to address and control abuses perpetrated by gang inmates against other prisoners, as well as the corrupt practices of prison officials who have condoned and exacerbated violence and other dangerous conditions in the nation's detention centres", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Take measures to ensure free and fair elections in the future ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Give continuity to fighting poverty and underdevelopment ", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Effectively implement measures to harmonize norms of citizenship for foreign spouses to bring these norms in line with the CEDAW in the shortest time possible. ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Improve prison conditions and hold accountable all those who are responsible for torture and discrimination in penitentiary facilities", - "values": [ - "4 - General action" - ] - }, - { - "text": "Continue to implement the National Policy on Justice and Human Rights", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Undertake a comprehensive set of measures to tackle racial discrimination and to combat resolutely all forms and manifestations of racism, racial discrimination, xenophobia and related intolerance", - "values": [ - "4 - General action" - ] - }, - { - "text": "Step up its cooperation with the special procedures of the Human Rights Council by responding positively to the pending visit requests by the special procedure mandate holders", - "values": [ - "4 - General action" - ] - }, - { - "text": "In respect to the ratification of the Rome Statute of the ICC, the delegation stated that Ukraine remained committed to the idea of the establishment of the international court. Ukraine was also demonstrated its full commitment in effective execution of judgments of the European Court of Human Rights of the Council of Europe", - "values": [ - "4 - General action" - ] - }, - { - "text": "Redoubling efforts to increase women's representation in society", - "values": [ - "4 - General action" - ] - }, - { - "text": "Complete its procedure to accede to CEDAW ", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Review its legislation so that it provides legal support for collective bargaining and the right to strike", - "values": [ - "3 - Considering action" - ] - }, - { - "text": "Repeal criminal defamation laws, particularly those providing special punishment for alleged defamation", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Make the fight against corruption sustainable by ensuring that due legal process is being followed from the opening of an investigation through to the end. Political outbursts should be avoided to leave room for genuine and independent work by police and prosecution. Furthermore, practices should be developed and implemented to prevent future cases of high-level corruption, mainly by ensuring increased and effective transparency in processes such as privatization and public tenders", - "values": [ - "4 - General action" - ] - }, - { - "text": "Categorize statelessness as a protection status and provide stateless persons expedited and affordable access to British nationality", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Step up efforts towards ensuring freedom of expression and the protection of journalists, and seek the assistance, as required, of special procedures, OHCHR and the United Nations Educational, Scientific and Cultural Organization, in order to achieve that end", - "values": [ - "4 - General action" - ] - }, - { - "text": "Finalize the commitment to accede to the International Convention on the Protection of the Rights of All Migrant Workers and Members of Their Families", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Continue to guarantee the rights of religious and ethnic minorities ", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Widen its consultation process on the development of policy, legislation and regulations to ensure that all legislative instruments are assessed as to their positive and negative impacts on human rights", - "values": [ - "4 - General action" - ] - }, - { - "text": "Establish policies and programmes designed to promote the integration of migrants into society and the respect to their rights, including the protection of their physical integrity ", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Set up appropriate protection mechanisms to eradicate child exploitation and hold the perpetrators of trafficking and abuse accountable ", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Introduce a legal ban on the use of corporal punishment of children", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Strengthen and enhance the role of women especially in the decision making area", - "values": [ - "4 - General action" - ] - }, - { - "text": "Ensure the observance of the principles of international humanitarian law by all parties in conflict", - "values": [ - "4 - General action" - ] - }, - { - "text": "Further consolidate their successful programmes and policies, mainly in the field of economic, social and cultural rights, with emphasis on its sounded educational policy for all", - "values": [ - "4 - General action" - ] - }, - { - "text": "Continue the national strategy that was set up by the government of Algeria to combat violence against women by setting up adequate legislative and judicial guarantees ", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Make further advances through the accession to ICCPR, ICESCR, OP-CAT and OP-CEDAW", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Provide the Commission of Inquiry with full cooperation", - "values": [ - "4 - General action" - ] - }, - { - "text": "Accelerate the ratification process of the Convention against Torture and the International Convention on the Protection of the Rights of All Migrant Workers and Members of Their Families", - "values": [ - "4 - General action" - ] - }, - { - "text": "Ensure prioritization of improving the living conditions of detainees.", - "values": [ - "4 - General action" - ] - }, - { - "text": "Ease tensions in rural areas by developing an effective land registration system with a clear complaints handling mechanism", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Accelerate the enactment and implementation of CED ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Spare no efforts to consolidate programmes of social protection and assistance, in particular programmes for the transfer of food, development programmes on behalf of vulnerable groups, particularly women in poverty, and micro-credit programmes which have produced positive results for this segment of the population", - "values": [ - "4 - General action" - ] - }, - { - "text": "Continue efforts to strengthen the rights of the child, protect children from sexual exploitation and combat trafficking in children and early marriage", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Prioritize the setting-up of the Independent Police Complaint Board, building on best practices of the Complaints, Discipline and Internal Investigations Department", - "values": [ - "4 - General action" - ] - }, - { - "text": "Continue consolidating social protection programmes undertaken in favour of persons with disabilities", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Continue the provision of free and universal access to public health ", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Conduct immediate and impartial investigation of all reports on torture and cruel, inhuman or degrading treatment, bring those found guilty to justice and provide compensation to victims ", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Continue to provide support to national human rights institutions and create new ones, if the need arises.", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Adopt comprehensive and human-centred approaches to its anti-illegal drug policy, particularly the provision of appropriate health measures", - "values": [ - "4 - General action" - ] - }, - { - "text": "Revise its legislation on violence against women in order to strengthen the rights of victims and to fight the impunity of perpetrators ", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Incorporate a definition of racial discrimination into its legislation and a prohibition of racial discrimination into the Criminal Code", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Continue its cooperation with the High Commissioner in order to benefit from technical assistance necessary to help create a solid legal framework, strengthen national structures for human rights, and ensure the efficient administration of justice in the fight against impunity, abuses and all other attacks on human rights", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Extend a standing Invitation to the Special Procedures in order to improve its cooperation with the international community in the field of human rights", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Bring an end to the practice of forced abortion", - "values": [ - "4 - General action" - ] - }, - { - "text": "Consider developing Human Rights Indicators, as suggested by the OHCHR, as an instrument that allows for a more precise and coherent evaluation of national human rights policies", - "values": [ - "3 - Considering action" - ] - }, - { - "text": "Ensure speedy passage of the bills on the establishment of a NHRI and Office of the Ombudsman. ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Continue to strengthen the implementation of the rights to drinking water and sanitation for the whole population, especially for rural communities", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Fully implement the obligations from the Framework Convention for National Minorities of the Council of Europe and allow the registration of OMO Ilinden PIRIN and allow fully enjoyment of all rights to the Macedonian minority and other minorities, by fulfilling cultural and other related rights", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Strengthen the existing health-care system to enhance access to health services by all with special emphasis on preventing life-threatening illnesses and incidents", - "values": [ - "4 - General action" - ] - }, - { - "text": "Prohibit the corporal punishment of children at home, at school, in penal institutions, in alternative-care settings and as a traditional form of sentencing ", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Ensure full implementation of the principle of non-discrimination, inter alia, by amending domestic legislation and increasing awareness among the population ", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Continue the reform of the judicial system to guarantee and strengthen the independence of the judiciary, and to ensure a higher degree in solving cases and in the implementation of judicial decisions. Especially convenient would be the establishment of a training plan in the area of human rights for its application among officials of the Judiciary ", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Intensify its efforts to cooperate with the international community to alleviate the repercussions of the crisis on Syrian citizens", - "values": [ - "4 - General action" - ] - }, - { - "text": "Increase its efforts to fully implement the Maria da Penha Law regarding the rights of women victims of domestic violence ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Further integrate persons with disabilities into society", - "values": [ - "4 - General action" - ] - }, - { - "text": "The Government of Canada is committed to addressing outstanding land claim and treaty issues, and in 2012, announced a new results-based approach to treaty and self-government negotiations. ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Uphold the total prohibition against torture and reform its laws in accordance with its international obligations under the Convention against Torture and Other Cruel, Inhuman or Degrading Treatment or Punishment ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Ensure separate juvenile detention facilities for all juvenile offenders.", - "values": [ - "4 - General action" - ] - }, - { - "text": "Including sexual orientation and gender identity in hate speech provisions, by making provisions in law for same-sex civil partnership or marriage, and by making arrangements for the relevant Polish authorities to provide Polish citizens wishing to marry or otherwise register a same-sex relationship abroad with all necessary documentation", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Consider the implementation of initiatives aimed at identifying needs on the situation of gender related human rights, in order to acquire information to strengthen the national legislation and public policies in this area", - "values": [ - "3 - Considering action" - ] - }, - { - "text": "Ratify the Hague Convention on Protection of Children and Co-operation in Respect of Intercountry Adoption", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Explore the possibility of establishing an independent national human rights institution, in accordance with the Paris Principles", - "values": [ - "3 - Considering action" - ] - }, - { - "text": "Ratify or accede to the Convention against Torture and Other Cruel, Inhuman or Degrading Treatment or Punishment, the International Covenant on Economic, Social and Cultural Rights, the International Convention on the Protection of the Rights of All Migrant Workers and Members of Their Families and the International Convention on the Elimination of All Forms of Racial Discrimination ", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Harmonize Law 293 on domestic violence to ensure it is in line with the Convention on the Elimination of All Forms of Discrimination against Women, and allocate human, institutional and financial resources for its proper implementation", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Issue a standing invitation ", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Review and eliminate laws that discriminate against women, especially in issues of inheritance, and bring in line with international standards ", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Make public, upon its completion, the report of the Commission of Inquiry set up to investigate alleged violations of religious freedom ", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Ensure that allegations of harassment of journalists are investigated, that perpetrators are punished, and the independent media are free from unjustified restrictions ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Ensure the speedy adoption of the law on protection of human rights defenders by the Parliament and its immediate and effective implementation ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Take the necessary measures to respect the separation and independence of powers, including of the National Electoral Council, Parliament and the judiciary, in particular of the Supreme Court of Justice", - "values": [ - "4 - General action" - ] - }, - { - "text": "Take all necessary steps to eliminate harmful practices towards girls, as well as release all children who are subjected to the trokosi practice", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Enact independent legislation focused specifically on combating discrimination, in particular for gender", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Design plans and strategies to ensure sustainability in protecting the rights of women and children ", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Review all executive laws relevant to juveniles", - "values": [ - "3 - Considering action" - ] - }, - { - "text": "Adopt and implement legal and practical measures to ensure the protection of religious minorities, including Christians, Ahmadis, Hindus and Sikhs, in line with paragraph 34 of the concluding observations of the Human Rights Committee", - "values": [ - "4 - General action" - ] - }, - { - "text": "Review its national legislation and bring into conformity with the Convention on the Rights of the Child and the Convention on the Elimination of all Forms of Discrimination against Women ", - "values": [ - "3 - Considering action" - ] - }, - { - "text": "Take measures to prosecute the perpetrators of human rights violations that specifically target members of religious groups in order to safeguard freedom of religion and ensure the right to security of the person", - "values": [ - "4 - General action" - ] - }, - { - "text": "Speed up the process for the adoption of the National Plan to Reduce Violence against Women and their Children", - "values": [ - "4 - General action" - ] - }, - { - "text": "Continue to promote the establishment of a national commission to search for girls and boys who disappeared during the internal armed conflict", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Introduce national legislation that criminalizes all forms of torture and ill treatment, that Lebanon prosecutes perpetrators of torture, and imposes judicial sentences that correspond to the gravity of torture crimes committed", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Consider ratifying the Convention on the Elimination of All Forms of Discrimination against Women", - "values": [ - "3 - Considering action" - ] - }, - { - "text": "Expedite the review of the Constitution and make appropriate amendments in order to align the national legislation and policies with regional and international human rights obligations undertaken by the country", - "values": [ - "4 - General action" - ] - }, - { - "text": "Improve the situation of work migrants by enabling them to easily switch employers and to have access to decent housing. The provisions of the Employment Act should also apply to foreign domestic workers", - "values": [ - "4 - General action" - ] - }, - { - "text": "Continue to take effective measures to increase enrolment in primary and secondary schools, reduce the high rate of students dropping out or repeating years, in particular in rural areas, and find ways to address the lack of school infrastructure in those areas ", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Take the appropriate measures to implement a separate juvenile justice system, and consider providing separate detention facilities for minor cases in appropriate cases ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Continue promoting the work of the Higher Committee for Migration in order to promote the rights of migrants and to implement the possibility for Egyptian migrants abroad to caste their vote", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Take all necessary measures to guarantee full access to education for children belonging to Roma communities and support their social inclusion.", - "values": [ - "4 - General action" - ] - }, - { - "text": "Boost activities and strategies aimed at achieving all Millennium Development Goals, especially those related to the rights to education and health care and the rights of vulnerable groups ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Sign and ratify the Optional Protocol to ICESCR as soon as possible", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Take immediate steps to strengthen measures to protect children from all forms of violence, including trafficking in children ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Ensure access to basic health care and medical assistance to all people living in Spain without discrimination, including migrants with an irregular situation", - "values": [ - "4 - General action" - ] - }, - { - "text": "Continue its efforts aimed at the promotion of human rights expertise and education and public awareness about human rights protection", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Make efforts to adopt legislation to prevent incitement to religious and racial hatred ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Implement the recommendation of the Committee on the Elimination of Racial Discrimination (CERD) to adopt specific legislation to outlaw direct and indirect racial discrimination, and guarantee access to effective protection and remedies through competent national courts", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Take immediate action to cease the practice of forced labour, including in detention facilities, and take urgent measures to ensure that children are not forced to participate in mobilization projects ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Continue its efforts to implement the strategy of the Ministry of Health, particularly in the area of maternal and child health so as to reduce even further the child mortality rate, which is in connection with the Millennium Development Goal 4 ", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Take legislative and administrative measures to ensure the right of association and peaceful protest", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Ensure access and right to education, especially among children and youth and to provide free and compulsory primary education for all children", - "values": [ - "4 - General action" - ] - }, - { - "text": "Effectively implement the Standard Operational Procedures on the prevention and management of Gender-Based Violence, including through adequate funding", - "values": [ - "4 - General action" - ] - }, - { - "text": "Address more the deep-rooted gender stereotypes that perpetuated discrimination against women", - "values": [ - "4 - General action" - ] - }, - { - "text": "Ratify as soon as possible the ILO Indigenous and Tribal Peoples Convention, 1989 (No. 169)", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Support further human rights training for police, corrections and justice officials. Promote regular, independent monitoring of detention facilities and ensure that detainees have immediate and effective means of redress and protection when their rights are violated.", - "values": [ - "4 - General action" - ] - }, - { - "text": "Ensure that all aspects of criminal procedure are in line with accepted international standards", - "values": [ - "4 - General action" - ] - }, - { - "text": "Launch awareness raising programmes on a national level regarding women", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Adopt measures that ensure compliance with the Law on Reproductive Health, by promoting the provision of education allowances in areas with high rates of forced and early marriages", - "values": [ - "4 - General action" - ] - }, - { - "text": "China is committed to keeping the channel open for people to express grievances and make complaints. It prohibits restriction of normal acts of petition in any forms, and would never allow suppression of petitioners or establishment of any forms of "black jails".", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Ratify and implement the Convention against Torture and Other Cruel, Inhuman or Degrading Treatment or Punishment, as well as its Optional Protocol", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Enhance the right of education, especially for children with disabilities", - "values": [ - "4 - General action" - ] - }, - { - "text": "Continue its efforts to accelerate the achievement of the MDGs targets, particularly those related to health", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Ensure more freedom of movement for the Palestinians in the West Bank and particularly Gaza in order to assure adequate standards of living of the Palestinian people and improve their access to health, education and work.", - "values": [ - "4 - General action" - ] - }, - { - "text": "Ensure a conducive environment for human rights defenders to carry out their legitimate activities without fear or undue hindrance", - "values": [ - "4 - General action" - ] - }, - { - "text": "Continue to implement programs and measures to move forward in the achievement of the MDGs between now and 2015 ", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Adopt measures to eliminate all forms of discrimination in health-care settings, including in the context of HIV/AIDS, while paying particular attention to the specific needs of key populations, including lesbian, gay, bisexual, transgender and intersex persons", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Promptly ratify the Convention on the Rights of Persons with Disabilities and its Optional Protocol", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Continue its sustained work in the implementation of State program, over a period of 10 years, to transfer children from State institutions to families and alternative care", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Review the compliance of its national legislation with provisions of the International Covenant on Civil and Political Rights on non-discrimination, in particular with regard to women and persons of minority ethnicity, sexual orientation or gender identity ", - "values": [ - "3 - Considering action" - ] - }, - { - "text": "Extend a standing invitation to all special procedures of the Human Rights Council", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Involve civil society in the implementation of recommendations, and follow up from the present review", - "values": [ - "4 - General action" - ] - }, - { - "text": "Undertake profound legal reforms in accordance with international law, legalize and support free market activities that provide citizens with a livelihood, and release all prisoners detained for exercising private economic activities", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Strengthen the rule of law by establishing an independent complaints commission capable of investigating and prosecuting complaints against the security forces and a police service commission responsible for police recruitment, transfers and promotion ", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Fully implement the National Roadmap to Combat the Vestiges of Slavery", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Ensure that the courts effectively apply penalties to those responsible for rape with a focus on police and State officials", - "values": [ - "4 - General action" - ] - }, - { - "text": "Redraft the Equal Opportunity Plan for persons with disabilities to bring it into line with the General Law on Person with Disability", - "values": [ - "4 - General action" - ] - }, - { - "text": "Incorporate a legal definition of racial discrimination into domestic legislation.", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Take concrete steps to strengthen protection of women, ensuring that complaints of domestic violence are properly registered and investigated by the police, and that perpetrators are prosecuted and convicted ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Review the July 2009 Law on Assembly and Manifestation imposing several restrictions on the right to assembly and to demonstrate in order to ensure free and unhampered enjoyment of this right ", - "values": [ - "3 - Considering action" - ] - }, - { - "text": "Increase support for families to facilitate the pursuance by children of primary and secondary education", - "values": [ - "4 - General action" - ] - }, - { - "text": "Authorize the press to work freely, lift all restrictions to political opposition, put stop to the prosecution of journalists and ensure that cases of harassment against defenders of economic and social rights are investigated ", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Speed up the review process of its Constitution and include special considerations regarding equality between men and women", - "values": [ - "4 - General action" - ] - }, - { - "text": "Consider the possibility of acceding to the International Covenant on Economic, Social and Cultural Rights and the International Covenant on Civil and Political Rights.", - "values": [ - "3 - Considering action" - ] - }, - { - "text": "Continue its efforts to provide minority and migrant boys and girls the best possible access to the general education that benefits all citizens of the country", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Ratify the Convention against Torture and Other Cruel, Inhuman or Degrading Treatment of Punishment and its Optional Protocol", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Ratify and implement the International Convention for the Protection of All Persons from Enforced Disappearance", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "As a follow-up to the results of the review, design and implement a national programme to apply the initiatives and commitments mentioned in the national report ", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Take concrete steps to make other forms of alternative care more accessible, i.e. promote guardianship and foster care systems as well as develop community based family support services that prevent the abandonment of children from their families", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Draft their Constitutions in an inclusive process with the participation of civil society, women\nand minorities. Also, ensure that the new Constitutions include a catalogue of human rights, in\nparticular the freedom of speech and assembly, and take the multiethnic and multireligious\nbackground of their population into account", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "While continuing its positive initiatives, invest more rigour in evaluating the outcomes of planned activities in many of these areas: prisons conditions, criminal justice system, juvenile justice system, violence and extrajudicial killings committed by state military police, torture, protection of human rights defenders, violence against women, indigenous communities, rural violence and land conflict, child and slave labour, impunity for those involved with human trafficking and corruption.", - "values": [ - "4 - General action" - ] - }, - { - "text": "Continue the practice of adopting national plans of action on various fields with the purpose to improve the human rights situation in the country, as well as to implement some of the recommendations given by the United Nations treaty bodies", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "End illegal detentions in Guantanamo Bay or bring the detainees to trial immediately", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Speed up the process of the ratification of the OP-CAT ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Further its measures aimed at the reduction of poverty and dealing with food insecurity and access to water resources ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Call on the international community for assistance in attaining its goals, including the Millennium Development Goals.", - "values": [ - "1 - Minimal action" - ] - }, - { - "text": "Ensure that asylum seekers, refugees and migrants, particularly unaccompanied minors and children are given all necessary protection and social support", - "values": [ - "4 - General action" - ] - }, - { - "text": "Take all necessary practical measures to tackle forced labour, modern slavery and human trafficking in line with the 2014 Protocol to the Forced Labour Convention, 1930 (No. 29)", - "values": [ - "4 - General action" - ] - }, - { - "text": "Review legislation on the rights of migrants and asylum seekers in accordance with Hungary's obligations under international and European Law and to better apply existing internal rules, namely those related to the handling of unaccompanied children", - "values": [ - "3 - Considering action" - ] - }, - { - "text": "As per the Constitution of the Maldives, everyone has the right to education without discrimination of any kind. The Maldives offers free education up to higher secondary level, and free local and international exams to all children, adopting a policy of "No Child Left Behind". This policy includes catering for children with special education needs, and teaching civic education, life skills and human rights, with a view to building a productive, respectful, and responsible future generation. The Government is committed to accelerate the ratification process of UNESCO convention against discrimination in Education. As the Constitution and regulations stand, no discrimination exists. Government is taking efforts to make education more accessible to vulnerable groups in society, like persons with disabilities, children of poor families", - "values": [ - "4 - General action" - ] - }, - { - "text": "Continue efforts to promote gender equality and empower the position of women", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Ratify the Convention on the Protection of the Rights of All Migrant Workers and Members of Their Families, improve the situation of detention of migrants and shorten the time they spent in detention facilities, punish all acts of violence against a migrant committed by any citizen, law enforcement officer, judicial or Government authority so that there is no room for impunity", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Enhance women's access to health care, in particular to sexual and reproductive health services.", - "values": [ - "4 - General action" - ] - }, - { - "text": "Adapt the Citizenship Act of 1982 in order to put an end to the statelessness of the Rohingya population ", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "End forced conversions and marriages of minorities, including Hindu, Sikh and Christian women, and prosecute all cases", - "values": [ - "4 - General action" - ] - }, - { - "text": "Adopt measures targeted to remedy school dropouts", - "values": [ - "4 - General action" - ] - }, - { - "text": "Consider a request for technical assistance and cooperation to prepare and submit reports to the United Nations treaty monitoring bodies ", - "values": [ - "3 - Considering action" - ] - }, - { - "text": "Ratify the Convention on the Rights of Persons with Disabilities ", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Enact legal and societal reforms in order to ensure that non-native citizens and legal residents are able to fully enjoy their constitutionally and internationally protected human rights", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Promote educative programmes to reduce discrimination and prejudicestowards persons with disabilities, and ensure that all members of society, including those with disabilities, are able to enjoy equal participation in the presidential vote in 2010 ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Remove the restrictions on the capacity of journalists to freely criticize the Government without fearing reprisals by updating the law on communication of 1990, and the Special Commission on Audio-Visual Communication", - "values": [ - "4 - General action" - ] - }, - { - "text": "Look for means to improve the remuneration system for judges to offer better guarantees of independence ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Continue to implement National Social Inclusion Strategy", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Guarantee the Indigenous Peoples\u2019 right to free, prior and informed consent and ensure they receive land titles, also in remote regions", - "values": [ - "4 - General action" - ] - }, - { - "text": "Continue to make further efforts to advance the human rights of socially vulnerable people, including persons with disabilities.", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Adopt comprehensive anti-discrimination legislation in line with international and European standards", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Promote the capacity of social and health services so that they can provide care to children with disabilities ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Increase the transparency of arrival and return procedures concerning immigrants and refugees", - "values": [ - "4 - General action" - ] - }, - { - "text": "Intensify its awareness and campaign programmes to encourage school enrolment of children who have been excluded from the education system", - "values": [ - "4 - General action" - ] - }, - { - "text": "Prosecute all cases of human rights violations, war crimes and crimes against humanity in a non-discriminatory and impartial manner, consistent with the requirements under the International Covenant on Civil and Political Rights", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Further develop the multi-lingual approach by which foreign language children are enabled to keep in touch with their mother tongue while learning Luxemburgish, French and German", - "values": [ - "4 - General action" - ] - }, - { - "text": "Reinforce its efforts to ensure the thorough investigation and prosecution of crimes of gender-based and domestic violence and guarantee access to justice for victims", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Continue to pay attention to the right to health of the child, elderly people, the poor and other vulnerable groups ", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Make the necessary efforts for the ratification of the Fifth National Action Plan 2015-2019", - "values": [ - "4 - General action" - ] - }, - { - "text": "Define the scope of defamation and disinformation charges to ensure that these do not impinge on freedom of expression and give clear guidance to judicial officials so that these provisions do not result in a large number of cases where the charges are disproportionate ", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Continue to cooperate with the international community, including the mechanisms of the Human Rights Council and of the United Nations", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Effectively regulate and implement the norms in force regarding the prohibition of discrimination on the basis of race, gender, disability or social condition", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Strengthen efforts to ensure the security and safety of family and the protection of family from experiencing negative consequences", - "values": [ - "4 - General action" - ] - }, - { - "text": "With regard to children, take necessary measures to improve the birth registry system, following the recommendation of the CRC in not identifying any ethnic or religious group in official documents which could allow discriminatory treatment, to avoid statelessness, to ban corporal punishment in families and schools and other institutions, by organizing educational campaigns, and start reforms in the juvenile justice system, following the Convention and the international standards by increasing the age of criminal responsibility ", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Ratify the international human rights instruments to which Indiais not a State party yet", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Adopt and implement a national plan of action for children", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Repeal laws that criminalize consensual same-sex conduct, and prohibit discrimination on the grounds of sexual orientation or gender identity in all areas of public life, including employment, health and education, bringing Samoa legislation into conformity with its commitment to equality ", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Accelerate the implementation of the NHRAP, adopted in 2013 ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Continue strengthening social programmes to realize the interest of the Kuwaiti people", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Ensure that its legislation addresses all forms of violence, explicitly prohibits corporal punishment in all settings and includes measures to raise awareness of positive, non-violent and participatory forms of child-rearing throughout the Kingdom, in particular in Aruba and in the Caribbean Netherlands", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Set up an inclusive system for access to quality health care for all social categories, in particular disadvantaged and marginalized groups, in consultation with concerned communities and stakeholders", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Ensure allocations for the implementation of the Government's poverty reduction strategy and ensure that international development aid is utilized for the realization of the right to an adequate standard of living", - "values": [ - "4 - General action" - ] - }, - { - "text": "Take further steps to halt and reverse the increase in the number of violent hate crimes", - "values": [ - "4 - General action" - ] - }, - { - "text": "Enact specific legislation that prohibits and punishes racial discrimination ", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Increase its efforts in ensuring full compliance of its domestic legislation with the Convention on the Rights of the Child, including by introducing a legal minimum age for criminal accountability in line with international standards", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Continue to take measures to eradicate all forms of violence against women including female genital mutilation, ensure the effective implementation of legal instruments in this connection, and allocate more resources to the Ministry for Women Affairs, the police and the judiciary and broaden awareness-raising campaigns in this respect ", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Consider ratification of the International Labour Organization Convention No. 189 ", - "values": [ - "3 - Considering action" - ] - }, - { - "text": "Take firm action in collaboration with the international community to decisively combat the destructive trend of drug trafficking.", - "values": [ - "4 - General action" - ] - }, - { - "text": "Consider acceding to ICESCR, the International Convenant on Civil and Political Rights (ICCPR), the Convention against Torture and Other Cruel, Inhuman or Degrading Treatment or Punishment (CAT), and ICRMW ", - "values": [ - "3 - Considering action" - ] - }, - { - "text": "Continue efforts to further improve the standards of living of its population with emphasis on improving access to education and eliminate illiteracy definitively ", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Step up national efforts in combating all forms of human trafficking", - "values": [ - "4 - General action" - ] - }, - { - "text": "Submit its overdue report to the Committee on the Elimination of Racial Discrimination", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Fully cooperate with the competent humanitarian bodies in order to secure the protection of internally displaced children ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Ratify CPED", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Take all necessary steps to adopt legislative and other measures to explicitly prohibit discrimination on the basis of sexual orientation and gender identity", - "values": [ - "4 - General action" - ] - }, - { - "text": "Awareness-raising and support for the full participation of civil society, beginning with follow-up to the consideration of Bahrain's report in April 2008.", - "values": [ - "4 - General action" - ] - }, - { - "text": "Cease anti-immigration campaigns and rhetoric of incitement to hatred, xenophobia and anti-Semitism and take measures to fight against hate speech and hate crimes in general", - "values": [ - "4 - General action" - ] - }, - { - "text": "Continue its efforts to guarantee the rights of migrants, in particular migrant workers and members of their families", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Enhance freedom of expression, association and assembly ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Take the necessary measures to strengthen the independence of the judiciary, to eliminate corruption and to ensure that the conditions of persons deprived of their liberty are in conformity with relevant international standards.", - "values": [ - "4 - General action" - ] - }, - { - "text": "End the occupation of all Palestinian and Arab territories occupied, including Jerusalem.", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Repeal all sentences by the National Safety Court, to refer these cases to criminal courts in order that all these trials are conducted in a fair, swift and transparent manner ", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Consider ratifying the Optional Protocols to the Convention on the Rights of the Child", - "values": [ - "3 - Considering action" - ] - }, - { - "text": "Step up efforts to eliminate gender inequity and implement the national strategy on ending child marriages", - "values": [ - "4 - General action" - ] - }, - { - "text": "Continue ongoing efforts of the Government towards increased realization of the human rights of its people, including through poverty alleviation measures and investment in health and education", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Implement the commitment to rebuild the Shi'a places of worship destroyed ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Investigate and sanction the cases of attacks, threats, harassment or intimidation against journalists, lawyers and human rights defenders", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Provide suitable, dedicated secure facilities for serious juvenile offenders, with greater training for personnel involved in their supervision, and meaningful alternatives to imprisonment for minor juvenile offenders ", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Sign and ratify the Convention against Torture and other Cruel, Inhuman or Degrading Treatment or Punishment ", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Improve national legislation to ensure equality between men and women based on the non-discrimination principle ", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Review the recent national strategy for the protection of rights of children and take into account the concerns and recommendations made during the second UPR cycle in this regard", - "values": [ - "3 - Considering action" - ] - }, - { - "text": "Double efforts to ensure that in 2015, Chad reaches the Millennium Development Goals, namely the attainment of quality education for all at the primary level", - "values": [ - "4 - General action" - ] - }, - { - "text": "Ensure inspections of school facilities and establish clear reporting systems for cases of violence in schools", - "values": [ - "4 - General action" - ] - }, - { - "text": "Ensure that the Philippine Development Plan for 2017-2022, the Conditional Cash Transfer Programme and the Sustainable Livelihood Programme continue to be adequately financed and are more targeted in their delivery, so that assistance can reach those most in need across the country", - "values": [ - "4 - General action" - ] - }, - { - "text": "Enact appropriate legislation and accelerate the process of recognizing erased citizens", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Decriminalize sexual activities between consenting adults of the same sex, as previously recommended", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Conduct a public awareness campaign, with engagement at the highest political levels, to strengthen the implementation of the 2006 Prevention of Domestic Violence Act, and highlight the unacceptability of violence against women and address the attitudes and stereotypes that perpetuate discriminatory practices that are harmful and violent towards women", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Continue to strengthen national human rights institutions, including the independence of the judiciary", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Continue its efforts towards promoting equal opportunities between men and women, especially in regards to labour rights", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Continue cooperation with the United Nations human rights mechanisms in order to protect and promote human rights", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Gradually consider the ratification of outstanding international human rights instruments ", - "values": [ - "3 - Considering action" - ] - }, - { - "text": "Continue to promote non- formal education in order to make greater progress in advancing people's education level", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Kyrgyzstan expressed its readiness to accept 127 recommendations as its voluntary commitments.", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Continue to pursue policies that will expand opportunities for all children of school-going age to access high quality education, in particular those with special-education needs", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Carry out the necessary efforts to increase expenditures for social programmes, particularly relative to education and access to housing ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Take advantage of the substantial expertise that civil society organizations represent, and consult regularly with them on human rights related policy documents ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Decriminalize press offenses, and reform or repeal the Media Law, which limits the freedom of press ", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "In the area of the rights of migrants, follow-up to programmes and the national plan for the human development of migrants and the promotion and protection of migrants and their families", - "values": [ - "4 - General action" - ] - }, - { - "text": "Ratify the Indigenous and Tribal Peoples Convention, 1989 (No. 169) of the International Labour Organization", - "values": [ - "4 - General action" - ] - }, - { - "text": "Ensure that after independence, no one will be discriminated against because of their origin from the other State, respectively ", - "values": [ - "4 - General action" - ] - }, - { - "text": "The Government reaffirms its commitment to promoting respect for the dignity of human person and it will therefore work to reduce the number of situations that threaten the human rights paradigm.", - "values": [ - "4 - General action" - ] - }, - { - "text": "Make its best efforts to ensure that the migrant workers and their families, in particular their children, enjoy an adequate livelihood, housing, health care and education", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Continue implementing programmes and measures to improve the enjoyment of the right to education and the right to health, including for the indigenous peoples ", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Devise specific programs aimed at countering growing Islamophobic and xenophobic trends in society ", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Establish an independent national human rights institution in line with the Paris Principles, with a mandate and resources to investigate complaints of human rights violations", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Improve the collection of data on hate crimes and incidents, work to find the reasons behind the unreported cases, encourage victims to report and if necessary take measures to protect them", - "values": [ - "4 - General action" - ] - }, - { - "text": "Apply and provide follow-up to plans to eradicate child labour.", - "values": [ - "4 - General action" - ] - }, - { - "text": "Continue to offer programmes to train women in political leadership and implement awareness campaigns with respect to the their political participation.", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Strengthen measures to fight the discrimination of which certain communities are victims, including persons of African descent and migrants", - "values": [ - "4 - General action" - ] - }, - { - "text": "Prohibit traditional practices that endanger the physical and psychological integrity of women, such as those affecting women and girls with albinism", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Consider progressively withdrawing its reservations to international human rights instruments", - "values": [ - "3 - Considering action" - ] - }, - { - "text": "Continue its efforts in strengthening the education system including to consider and implement the recommendations made by the Special Rapporteur on the Right to Education to further promote the right to education for all in Senegal", - "values": [ - "3 - Considering action" - ] - }, - { - "text": "Continue efforts in terms of climate change mitigation strategy, including through assistance to the Samoan population in case of natural disasters and with the support of the international community", - "values": [ - "4 - General action" - ] - }, - { - "text": "Continue the efforts to combat hate speech, racism, xenophobia and all forms of discrimination against refugees and migrants", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Extend the deadline for late registration of births and put in place a simple and free birth registration procedure as well as a national strategy to raise awareness on the importance of birth registration", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Define the crime of domestic violence and sexual harassment in the legislation ", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Adopt concrete measures to remove children from the streets and preventing their use in prostitution, pornography and other illegal acts", - "values": [ - "4 - General action" - ] - }, - { - "text": "Considering ratifying the International Labour Organization Convention No.189 concerning Decent Work for Domestic Workers", - "values": [ - "3 - Considering action" - ] - }, - { - "text": "Continue to engage international partners to further pursue human rights awareness programmes and implement the national human rights action plan", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Consider accession to the remaining core international human rights instruments ", - "values": [ - "3 - Considering action" - ] - }, - { - "text": "Abolish death penalty for minors and drug dealers", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "End the strict system of male guardianship and give full legal identity to Saudi women", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Hold accountable, in accordance with international standards, all parties responsible for violations of international human rights and humanitarian law and abuses of human rights, and include human rights guarantees in the new Constitution", - "values": [ - "4 - General action" - ] - }, - { - "text": "Ratify the Rome Statute of ICC ", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Put an end to all practices of corporal punishment that takes place in educational facilities and detention centres ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Recognize the extraterritorial application of the CAT, according to its jurisprudence ", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Continue in its efforts in protecting general freedoms and basic rights in all areas that the Constitution emphasised in harmony with the principles of human rights", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Pursue discussions on the legal framework for the voluntary termination of pregnancy and consider, in this framework, amending its criminal code to provide for voluntary termination of pregnancy", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Fully cooperate with United Nations mechanisms on the promotion and protection of human rights, as well as with the United Nations High Commissioner for Human Rights ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Strengthen measures to progressively reduce the illiteracy rate in the country", - "values": [ - "4 - General action" - ] - }, - { - "text": "Respect the de facto moratorium on the death penalty which had been in place since 2004 ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Consider an early ratification of the third Optional Protocol to CRC on a communications procedure ", - "values": [ - "3 - Considering action" - ] - }, - { - "text": "Revise laws and policies regarding public order policing and the use of force, including lethal force by law enforcement officials", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Seek to end impunity for perpetrators of sexual violence by thoroughly investigating all credible allegations of sexual violence and prosecuting individuals against whom there is sufficient evidence of such abuses, in compliance with its obligations under the International Covenant on Civil and Political Rights regarding due process ", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Issue a standing invitation to the special procedures of the Human Rights Council and ensure an enabling environment for the activities of journalists, human rights defenders and other civil society actors", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Submit overdue reports to the relevant UN treaty bodies", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Continue developing training methods and educating police, prison guards and the judiciary in areas of human rights ", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Withdraw the general reservation to CEDAW and those foreseen in relation to articles 9, 15 and 16", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Repeal all provisions that criminalise consensual same-sex conduct and ensure that anti-discrimination laws cover sexual orientation ", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Take affirmative steps to ensure that individuals' religious refusals are regulated to conform with international human rights standards that protect sexual and reproductive rights and the rights to equality and non- discrimination on the basis of sex, gender, sexual orientation or gender identity", - "values": [ - "4 - General action" - ] - }, - { - "text": "Strengthen the state of law and good governance in harmony with the traditional culture of the country, especially on the legal enforcement and capacity-building for national agencies on human rights", - "values": [ - "4 - General action" - ] - }, - { - "text": "Continue making efforts to investigate, prosecute and punish offenders of human trafficking ", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Ratify the Optional Protocol to the ICESCR, and also accept the enquiry mechanism and communication between States", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Take measures to provide redress for crimes of honour killings, acid attacks and forced marriages.", - "values": [ - "4 - General action" - ] - }, - { - "text": "Carry out the submission of its pending report to the Human Rights Committee as soon as possible ", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Develop a monitoring system to implement recommendations accepted at the previous universal periodic review cycle and ensure implementation", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Canada commits to identifying the causes of violence against Aboriginal women and developing appropriate responses in consultation with Aboriginal and civil society organizations.", - "values": [ - "4 - General action" - ] - }, - { - "text": "Continue efforts to strengthen equality between men and women and in combatting trafficking in persons", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Effectively investigate and prosecute violations committed against human rights defenders and journalists", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Strengthen the capacities of the National Commission on Human Rights and make it in conformity with the Paris Principles", - "values": [ - "4 - General action" - ] - }, - { - "text": "Continue strengthening efforts to ensure respect for the right to nondiscrimination of children in the country, in particular children and families living in poverty and children of minority groups, including the Roma ", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Reform the status of the National Commission of Human Rights in line with the Paris Principles, thereby guaranteeing its independence", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Further promote tolerance and dialogue between different ethnic and religious groups ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Accede to the Agreement on the Privileges and Immunities of the International Criminal Court and incorporate it into its national law ", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Ensure that an independent body is established to investigate reports of detained children's exposure to torture and to cruel, inhuman or degrading treatment", - "values": [ - "4 - General action" - ] - }, - { - "text": "Ensure an increased normative and institutional control of law enforcement offices and security forces personnel with a view to avoid cases of excessive use of force and ill treatment of detainees ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Lift the restrictions that hinder free expression and ensure that human rights defenders and independent journalists are not victims of intimidations or arbitrary prosecutions and detentions ", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Adopt measures to ensure a fair representation of women in ministerial positions of the country", - "values": [ - "4 - General action" - ] - }, - { - "text": "Cooperate fully with ILO to end forced and child labour including in the military", - "values": [ - "4 - General action" - ] - }, - { - "text": "Strengthen its efforts to reform its criminal procedure law in order to guarantee a fair and timely legal process ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Take all necessary social, education and legal measures towards the complete elimination of female genital mutilation ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Ratify the International Convention on the Protection of all Persons from Enforced Disappearances, the International Covenant on Economic, Social and Cultural Rights and the Convention on the Rights of Persons with Disabilities", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Consider ratifying the Second Optional Protocol to the International Covenant on Civil and Political Rights, aiming at the abolition of the death penalty", - "values": [ - "4 - General action" - ] - }, - { - "text": "Ensure access to comprehensive human rights training for all prison staff ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Strengthen efforts to prevent and combat every kind of discrimination, including by adopting a comprehensive law and by means of awareness campaigns", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Accomplish progressively human rights goals as set up by Human Rights Council Resolution 9-12", - "values": [ - "4 - General action" - ] - }, - { - "text": "Continue efforts in the implementation of sustainable development strategies for the year 2030", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "End the harassment of those who are critical of government policies and drop any politically motivated charges against them", - "values": [ - "4 - General action" - ] - }, - { - "text": "Create a judicial system for minors and improve their situation, including the separation of minors from adults in prisons.", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Work towards empowering the institutions that uphold the promotion of human rights, good governance and the rule of law ", - "values": [ - "4 - General action" - ] - }, - { - "text": "That further measures be taken in the areas of economic and social rights for women and minorities, including providing equal access to decent work and reducing the number of homeless people ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Continue to achieve its objective of establishing respect for law in society ", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Explicitly prohibit the corporal punishment of children in all settings ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Implement the recommendations in the report of the COI", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Take effective measures to prevent any violence against journalists or human rights defenders", - "values": [ - "4 - General action" - ] - }, - { - "text": "Put forward extensive efforts to strengthen cooperation with the United Nations human rights mechanisms, particularly by issuing a standing invitation to the special procedures and recognizing the mandate of the Special Rapporteur on the situation of human rights in Belarus", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Enhance cooperation with the OHCHR by agreeing to outstanding requests for visits to China and extending a standing invitation for future UN special procedures requests", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Reform, as a matter of urgency, the law that criminalizes sexual relations between adults of the same sex ", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Consider adopting a de jure moratorium on the death penalty soon, with a view to abolishing the death penalty", - "values": [ - "3 - Considering action" - ] - }, - { - "text": "In addition to suggestions made by various Special Rapporteurs who agree with Chile's assessment, strengthen a judicial response to sexual violence on grounds of gender and ensure that women victims of violence have the same access to justice as men", - "values": [ - "4 - General action" - ] - }, - { - "text": "Give continuity to legislative and institutional reforms for the promotion and protection of human rights ", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Continue cooperation with regional and international human rights mechanisms, in particular in the areas of technical cooperation and training", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Implement a comprehensive policy to address serious deficiencies in the judiciary and in the security forces, as recommended by the Jamaican Justice System Reform Task Force ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Reform its nationality law to ensure that all citizens have equal right to confer nationality to their children and the children born to citizen mothers are no longer at risk of statelessness", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Take measures to re-establish an independent judiciary.", - "values": [ - "4 - General action" - ] - }, - { - "text": "Decriminalize consensual sexual relations between adults of the same sex, and abolish all legal provisions discriminating against homosexual, bisexual or transsexual persons ", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Strengthen efforts to eliminate discrimination and racism, in line with paragraph 35 of the national report ", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Complete the process of establishing the national human rights commission", - "values": [ - "4 - General action" - ] - }, - { - "text": "Continue to take action at all levels to address the interlinked root causes of preventable mortality and morbidity of children under 5 and consider applying the "Technical guidance on the application of a human rights-based approach to the implementation of policies and programmes to reduce and eliminate preventable mortality and morbidity of children under 5 years of age", A/HRC/27/31", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Establish State-wide inclusive education, including through the allocation of necessary resources, and provide regular training for school personnel", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Take all necessary measures to provide individuals that are under threat of being forcibly evicted with full protection against forced eviction in line with international obligations and commitments", - "values": [ - "4 - General action" - ] - }, - { - "text": "Develop additional programmes to end the practice of using the Juvenile Training Centres to detain children as a form of alternative care ", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Undertake reforms with a view to bring national legislation in line with ratified international human rights instruments", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Completely eradicate the practice of female genital mutilation through education and awareness campaigns in the communities ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Ensure that all laws, regulations and judicial interpretations comply with the Constitution and the ICCPR to ensure that the constitutionally provided right to freedom of expression is fulfilled", - "values": [ - "4 - General action" - ] - }, - { - "text": "Train the judiciary on the rights of persons with disabilities, taking into account their needs and special skills", - "values": [ - "4 - General action" - ] - }, - { - "text": "Request from OHCHR the necessary support for the process of ratification of a greater number of international human rights instruments", - "values": [ - "1 - Minimal action" - ] - }, - { - "text": "Include legislative safeguard against statelessness with regards to children born in its territory, who would otherwise be stateless, to acquire Tuvaluan nationality ", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Pursue its efforts to diligently combat the smuggling and trafficking of persons and envisage appropriate channels for sharing its experience and its knowledge with countries that may wish to benefit from them ", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Raise the level of official development assistance to achieve the United Nations target of 0.7 percent of GDP and allow duty free-quota-free access to all products of all LDCs ", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Invite the Special Rapporteur and/or an international humanitarian organization recognized for its independence to visit "reform institutions" and other correctional and penitentiary institutions to assess/evaluate detention conditions with a view to proposing measures to improve these conditions so that they meet international norms and standards", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Favourably consider ratifying the International Covenant on Civil and Political Rights, International Covenant on Economic, Social and Cultural Rights and the Convention on the Rights of Persons with Disabilities in order to improve compliance with human rights international norms and standards", - "values": [ - "3 - Considering action" - ] - }, - { - "text": "Undertake more effective measures to further improve the implementation of Shari'ah law in the country", - "values": [ - "4 - General action" - ] - }, - { - "text": "Include sexual orientation and gender identity as prohibited grounds for discrimination in legislation and equality initiatives ", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Fully respect the rights of all citizens to freedom of assembly and association, including by allowing labour, political and civil groups to assemble peacefully, free from Government interference in accordance with international human rights standards", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Give priority to ensuring protection of freedom of speech", - "values": [ - "4 - General action" - ] - }, - { - "text": "Consider ratifying CRPD ", - "values": [ - "3 - Considering action" - ] - }, - { - "text": "Strengthen legislation on violence against women and domestic violence by adopting the draft law on the subject and by acceding to the Istanbul Convention", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Continue combating violence against women by ensuring the application of the law prohibiting domestic violence against women", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Adopt a national coordination framework to combat all forms of violence against children, dealing with aspects of gender violence", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Grant immediate release and enforceable right to compensation to remedy the arbitrary detention of Israeli citizen, Mr. Ouda Tarabin, imprisoned for over 14 years", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Take further enhancing measures for the enjoyment of educational and health services by all", - "values": [ - "4 - General action" - ] - }, - { - "text": "Continue to improve its public policies aimed at combating violence against women", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Continue to make every effort to end impunity, especially for armed forces' human rights violations ", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Establish a moratorium on executions with a view to abolishing the death penalty", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Complete the children's code with the inclusion of specific provisions for the protection of children from discrimination, abuse, exploitation, neglect and violence", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Become party to the Optional Protocol to the International Covenant on Economic, Social and Cultural Rights ", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Decriminalize abortion in all circumstances and ensure that safe and legal abortion services are available for those women and girls whose pregnancy is a result of rape or whose lives or health are put at risk ", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Recommended that Indonesia's efforts would be rounded off by a standing invitation to all special procedures", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Undertake systematic actions for the reintegration of former child soldiers into civil society", - "values": [ - "4 - General action" - ] - }, - { - "text": "Intensify efforts in enhancing the rights of Indigenous Australians: by addressing the underlying causes of their plight, by providing opportunities in health, education, housing and employment, and addressing the high rate of their incarceration in prison", - "values": [ - "4 - General action" - ] - }, - { - "text": "Continue to ensure effective implementation of the national and transnational referral mechanism for victims of trafficking, and improve public awareness about the human trafficking issue", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Amend article 1 of the Law on Ensuring Equality by including criteria such as social origin, marital situation, health status, sexual orientation, gender identity, and gender expression in the main list of criteria for categories to be protected from discrimination", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Accede to and adapt its national legislation to the Rome Statute, including incorporation of dispositions to swiftly and fully cooperate with the International Criminal Court", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Work for amelioration of the situation of migrants, particularly in regards to access to and quality of the asylum procedure, the conditions in detention centres and to ensure that protection is granted to refugees in line with its international obligations, by implementing the National Action Plan for Migration Management and taking necessary further actions ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Adopt all necessary measures to tackle the root causes of the problems of child prostitution, sexual tourism, use of children in pornography and trafficking in women, stepping up its efforts to improve the economic situation", - "values": [ - "4 - General action" - ] - }, - { - "text": "Continue efforts to enhance the operational effectiveness of its national human rights institutions as well as strengthen activities to promote education and awareness of human rights", - "values": [ - "4 - General action" - ] - }, - { - "text": "Allocate the necessary funds to ensure effective implementation of the National Action Plan to combat violence against women ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Develop and implement a comprehensive national strategy to fight the worst forms of corporal punishment of children", - "values": [ - "4 - General action" - ] - }, - { - "text": "Cooperate with the special procedures of the Human Rights Council, including the Special Rapporteur on the situation of human rights in Iran", - "values": [ - "4 - General action" - ] - }, - { - "text": "Expedite action to implement the agreed Action Plan in line with the spirit of the LLRC through a process inclusive of all people belonging to all ethnicity", - "values": [ - "4 - General action" - ] - }, - { - "text": "Remove any rule criminalizing sexual relations between consenting adults of the same sex, and include sexual orientation and gender identity as unlawful grounds of discrimination in all areas", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Recognize and guarantee the legitimacy of the work of human rights defenders, as of that of trade unions workers and journalists, ensure their protection and that violations of their rights are prosecuted.", - "values": [ - "4 - General action" - ] - }, - { - "text": "Ratify pending international human rights instruments, particularly the two Optional Protocols to ICCPR and the Optional Protocol to CAT ", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Adopt a national action plan to implement the United Nations Guiding Principles on Business and Human Rights", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Further strengthen its judicial institutions and the national human rights institution, in order to guarantee their effective independence ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Conclude, as a matter of priority, the process leading to the establishment of a national human rights institution, with a broad human rights mandate", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Ratify the Optional Protocol to the Convention against Torture and Other Cruel, Inhuman or Degrading Treatment or Punishment and present the most delayed reports, particularly on the Convention on the Elimination of All Forms of Racial Discrimination and on the two International Covenants ", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Step up efforts to pursuing the right to education for all, particularly in the realization of the right to education for girls", - "values": [ - "4 - General action" - ] - }, - { - "text": "Canada is committed to engaging with civil society and intends to hold further consultations in follow-up to the UPR.", - "values": [ - "4 - General action" - ] - }, - { - "text": "Step up efforts to prevent discrimination and violence against women and girls", - "values": [ - "4 - General action" - ] - }, - { - "text": "Immediately cease all forms of forced displacement, in accordance with the applicable international humanitarian and human rights law and the Guiding Principles on Internal Displacement (1998)", - "values": [ - "4 - General action" - ] - }, - { - "text": "Urgently address the shortage of medical services and satisfy people's basic necessities in the spirit of the 2015 recommendations by the Committee on Economic, Social and Cultural Rights", - "values": [ - "4 - General action" - ] - }, - { - "text": "Strengthen measures to ensure that there are effective remedies for potential victims of discrimination", - "values": [ - "4 - General action" - ] - }, - { - "text": "Take immediate steps to address the problems with the application of the current legislation and policies, including a lack of public funding, so as to protect the right to life, bodily integrity, liberty and security of all women", - "values": [ - "4 - General action" - ] - }, - { - "text": "Recommended that the example of the United Kingdom in issuing, in principle, a specific law dealing with incitement to racial and religious hatred, be emulated as a good practice in countries which have not done so, in implementation of article 20(2) of ICCPR and its stipulated purpose.", - "values": [ - "1 - Minimal action" - ] - }, - { - "text": "Continue efforts to strengthen a culture of tolerance to eliminate all forms of discrimination against vulnerable groups ", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Implement recommendations of the United Nations human rights bodies concerning the establishment of an independent national human rights institute in line with the Paris Principles", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Seek financial assistance for mitigation and adaption activities to address the impact of climate change", - "values": [ - "1 - Minimal action" - ] - }, - { - "text": "Give appropriate attention to end racial discrimination against the Arab and Muslim communities in Canada including racial and religious profiling", - "values": [ - "4 - General action" - ] - }, - { - "text": "Ratify ICPPED in as timely a fashion as possible", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Establish a national independent preventive mechanism as provided for by the Optional Protocol to the Convention against Torture and Other Cruel, Inhuman or Degrading Treatment or Punishment, to which Togo is a party since July 2010", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Continue the improvement and enhancing of the use of information and communications technologies in education", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Prohibit torture in its domestic legislation in line with CAT and abolish the death penalty.", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Sign and ratify the International Covenant on Economic, Social and Cultural Rights as well as the International Convention on the Protection of the Rights of All Migrant Workers and Members of Their Families", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Approve general legislation to combat discrimination, which expressly covers all spheres of life, and defines and prohibits discrimination on any ground, taking measures against all expressions and manifestations of prejudices such as hate speech, racism and xenophobia", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Re-establish a moratorium on executions with a view to the complete abolition of the death penalty ", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Create and adopt a law that specifically addresses trafficked persons in the country and abolish all practices of penalizing trafficked women and children for unlawfully exiting the country upon their deportation back to DPRK ", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Continue its efforts to ensure the right to access to information and freedom of expression by adopting regulations that would be in accordance with both the South African Constitution and the international treaties and commitments of South Africa", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "In line with the concern expressed by a number of treaty bodies, take action to provide constitutional protection to both national and international human rights acts and standards", - "values": [ - "4 - General action" - ] - }, - { - "text": "Further implement effective measures to prevent and prosecute manifestations of racism, racial discrimination and xenophobia, as well as to promote the human rights of vulnerable groups, including migrants, Roma and people of African descent ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Urge Japan to seek ways to initiating a dialogue with its indigenous peoples so that it can implement the United Nations Declaration on the Rights of Indigenous Peoples.", - "values": [ - "4 - General action" - ] - }, - { - "text": "Continue making progress in the implementation of legislative provisions to prohibit and combat discrimination against children with disabilities, children with HIV/AIDS, and girls, in line with the Committee on the Rights of the Child recommendation", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Review the law on equality of spouses in order to eliminate discrimination against women in customary marriages in relation to property rights, so that the rights recognized in customary marriages are the same as in civil marriages ", - "values": [ - "3 - Considering action" - ] - }, - { - "text": "Attach greater relevance and adopt measures to guarantee the enjoyment of all economic, social and cultural rights of its population", - "values": [ - "4 - General action" - ] - }, - { - "text": "Put an end to corporal punishment in schools and in the home, and to revise article 1.10 of the Criminal Code.", - "values": [ - "4 - General action" - ] - }, - { - "text": "Continue efforts to combat violence against women and early and forced marriage", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Step up its measures to mitigate the scourges of xenophobia, which include, among others, visible policing, community awareness programmes, promotion of tolerance and cultural diversity ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Enhance efforts to improve on access to quality education for all at all levels", - "values": [ - "4 - General action" - ] - }, - { - "text": "Take without further delay all necessary steps to establish an independent national human rights institution in accordance with the Paris Principles and return support to the Ombudsman Commission", - "values": [ - "4 - General action" - ] - }, - { - "text": "Improve its cooperation with the United Nations Special Rapporteur on the situation of human rights in Myanmar and guarantee the mandate holder regular and unrestrained access to the country ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Enact the Prevention and Combating of Trafficking in Persons Bill as soon as possible ", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Take necessary measures to ensure effective implementation of laws guaranteeing free registration of births nationwide, including by educating families and communities on the importance of birth registration in order to contribute, among other things, to eliminating the practice of early and forced marriage and increase access to education, health care and other public services", - "values": [ - "4 - General action" - ] - }, - { - "text": "Implement amendments to the Labour Code to strengthen legal measures to combat the sale and trafficking of children", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Adopt comprehensive measures to combat trafficking in human beings, organize a visit of the Special Rapporteur on trafficking in persons as well as of the Special Rapporteur on the sale of children, child prostitution and child pornography to the country", - "values": [ - "4 - General action" - ] - }, - { - "text": "Continue to combat any form of discrimination, as well as stereotypes of persons belonging to minorities", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Take measures to ensure that economic growth is proportional in the different parts of the country and benefits the whole population, including the country's minorities", - "values": [ - "4 - General action" - ] - }, - { - "text": "Universalisation of lower secondary education", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Continue its combat against child trafficking from any origin and use of child labour in all forms, especially in auto industry, and to strengthen its measures for rehabilitation and education for the child victims of trafficking", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Continue to strengthen its social policies in order to provide the greatest possible well-being to its people, especially to the most vulnerable sectors", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Take concrete measures to protect the rights and promote the development of indigenous peoples while ensuring their full participation in the decision-making and implementation of policies that affect them ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Encourage the implementation of its national policy on poverty alleviation to realize its goals of eradicating poverty in the country by 2030", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Introduce comprehensive legislation and more stringent enforcement of existing laws in the areas of domestic violence towards women and human trafficking ", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Extend a standing invitation to special procedure mandate holders", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Adopt legislative and other measures to ensure that detainees are not questioned without the presence of a lawyer and that they have prompt and unhindered access to legal counsel", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Ensure investigations and recommend action against abuses by law enforcers, as a way of curbing violations", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Do its utmost to bring national legislation in line with the Espoo and Aarhus Conventions in order to ensure a general enjoyment of the right to an environment that is safe for life and health", - "values": [ - "4 - General action" - ] - }, - { - "text": "Guarantee the right to legitimate freedom of expression, association and assembly, and release political prisoners, including activists, lawyers and journalists, detained solely for exercising these rights", - "values": [ - "4 - General action" - ] - }, - { - "text": "Provide basic health-care services to indigenous communities and consider eliminating the structural discrimination against them and the migrant community", - "values": [ - "4 - General action" - ] - }, - { - "text": "Follow up on the recommendation made in 2012, strengthening its legislation, investigating and punishing effectively the discrimination based on sexual orientation and gender identity, expressed through hate speeches and acts of violence", - "values": [ - "4 - General action" - ] - }, - { - "text": "Address the wage gender gaps and improve the status of women in the labour market", - "values": [ - "4 - General action" - ] - }, - { - "text": "Continue efforts in the educational sector and eradication of illiteracy", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Continue taking measures to prevent discrimination, intimidation and reprisals in accordance with international human rights standards, through more efficient implementation of relevant legislation ", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Take more effective steps in strengthening gender equality and women empowerment in the country and in ensuring a plan of comprehensive development of children ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Accede to the Rome Statute of the International Criminal Court ", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Identify gaps for further protection and harmonization of vulnerable groups, including religious minorities", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Reject the Anti-Homosexuality Bill and decriminalize homosexual relationships between consenting adults ", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Recommend the dialogue and cooperation in the field of the promotion and protection of human rights", - "values": [ - "4 - General action" - ] - }, - { - "text": "Review some reservations which Egypt has entered to human rights treaties in order to explore the feasibility of withdrawing them.", - "values": [ - "3 - Considering action" - ] - }, - { - "text": "Repeal or reform thoroughly the so-called blasphemy law", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Continue to promote the implementation of the pilot project aimed at vaccination against cervical cancer", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Continue efforts to increase the school enrolment rate and literacy among nomadic populations", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "The United States is committed to supporting tribes' efforts to recover their human remains, sacred and ceremonial objects and cultural property that has been stolen, looted or trafficked.", - "values": [ - "4 - General action" - ] - }, - { - "text": "Take immediate action to ensure essential levels of food supply protecting the most vulnerable groups from hunger and nutritional problems", - "values": [ - "4 - General action" - ] - }, - { - "text": "Continue the efforts of the Government to endow the national human rights institution with sufficient budgetary resources", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Reconsider its position relating to the ratification of ICMW in line with Recommendation 1737 of 17 March 2006 of the Parliamentary Assembly of the Council of Europe ", - "values": [ - "3 - Considering action" - ] - }, - { - "text": "Request the technical assistance of United Nations bodies in implementing ratified international instruments and for the effective functioning of structures which have been put in place", - "values": [ - "1 - Minimal action" - ] - }, - { - "text": "Ensure independence and adequate financial resources for the Sudanese Human Right's Commission", - "values": [ - "4 - General action" - ] - }, - { - "text": "Implement human rights training programmes for the security forces, emphasizing the use of force according to the criteria of necessity and proportionality", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Establish a national human rights commission in conformity with the Paris Principles ", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Adopt measures to prevent and mitigate the adverse human rights impact of companies operating in Togo", - "values": [ - "4 - General action" - ] - }, - { - "text": "Strengthen sexual and reproductive health education, as recommended by the Committee on Economic, Social and Cultural Rights", - "values": [ - "4 - General action" - ] - }, - { - "text": "Combat the trafficking of children, including the problem of combatting the forced begging of children", - "values": [ - "4 - General action" - ] - }, - { - "text": "Ratify the Convention against Torture and its Optional Protocol ", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Improve the detention conditions of children of foreigners who seek to receive the status of refugees and who live in the territory of Poland in closed facilities ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Ensure that the due process in all trials is guaranteed, in accordance with international standards", - "values": [ - "4 - General action" - ] - }, - { - "text": "Adopt the pending legislation on harassment and violence in the workplace and continue to ensure protection of non-Monegasque workers from any form of discrimination, including in terms of access to social and health services ", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Take decisive steps to decrease political control over State-owned media and to ensure independence of private and State-owned media", - "values": [ - "4 - General action" - ] - }, - { - "text": "End harassment and detention of persons who exercise their rights to freedom of assembly, association, expression and religion and release those currently held on such grounds", - "values": [ - "4 - General action" - ] - }, - { - "text": "Sign and ratify the Convention on the Elimination of All Forms of Discrimination against Women, and adopt a law prohibiting female genital mutilations ", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Strengthen awareness campaigns on the harmful consequences of female genital mutilation and bring all excision practitioners to justice", - "values": [ - "4 - General action" - ] - }, - { - "text": "Take further steps to promote greater media freedom, including by ensuring that the Rwanda Media Commission becomes a more independent self-regulatory body", - "values": [ - "4 - General action" - ] - }, - { - "text": "Establish a moratorium on executions, with a view to abolishing the death penalty for all crimes", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Continue its policy to protect the family as the natural and fundamental group unit of society based on the stable relationship between a man and a woman.", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Develop an additional framework to secure food necessities, with the cooperation of the international community ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Strengthen ongoing efforts to bring EHRC into conformity with the Paris Principles ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Hold open and transparent elections ", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Become a party to the main international human rights treaties and therefore ratify ICCPR and ICESCR", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Speed up the efforts of poverty reduction with the assistance of the international community to provide its people with social protection ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Develop a national strategy for ensuring the eradication, in law and in practice, of all violence against women, including domestic violence and the practice of female genital mutilation, as recommended by CEDAW ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Complete the ratification of the Convention on the Rights of Persons with Disabilities (CRPD) as well as the Optional Protocol to the Convention on the Elimination of All Forms of Discrimination against Women (OP-CEDAW)", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Continue the initiatives for the promotion of tolerance and diversity with the aim of protecting the rights of national and ethnic minorities of the country", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Accelerate the process towards the ratification of International Convention on the Protection of the Rights of All Migrant Workers and Members of their Families and the Optional Protocol to the International Covenant on Economic, Social and Cultural Rights", - "values": [ - "4 - General action" - ] - }, - { - "text": "Revise its national legislation with a view to the total elimination of discrimination against women and implement effective measures to address violence against women in line with the CEDAW Committee recommendations.", - "values": [ - "3 - Considering action" - ] - }, - { - "text": "Ratify the Framework Convention for the Protection of National Minorities", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Ensure that children with disabilities are protected from all forms of violence and receive suitable inclusive education and training", - "values": [ - "4 - General action" - ] - }, - { - "text": "Consider measures aimed at ensuring freedom of religion for groups which will become minorities in the two countries after the emergence of the new State ", - "values": [ - "3 - Considering action" - ] - }, - { - "text": "Redouble efforts through legislative measures and public policies to ensure that its legislation is aligned with international human rights obligations", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Consider acceding to the Convention relating to the Status of Stateless Persons and the Convention on the Reduction of Statelessness ", - "values": [ - "3 - Considering action" - ] - }, - { - "text": "Continue implementing the Dili Declaration, entitled "Invest in women and children - invest in equality", endorsed by the National Parliament, the Government, the Church and civil society", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Seek technical expertise from the Special Procedure mechanism by issuing a standing invitation to all Rapporteurs ", - "values": [ - "1 - Minimal action" - ] - }, - { - "text": "Ensure fully safety and security of migrant workers and their families", - "values": [ - "4 - General action" - ] - }, - { - "text": "Review compliance of its national legislation with the principle of nondiscrimination, in particular with regard to persons of minority ethnicity, sexual orientation to adopt a comprehensive antidiscrimination legal framework specifically protecting against discrimination on these grounds, and lead long-term awareness-raising campaign on these issues among the public ", - "values": [ - "3 - Considering action" - ] - }, - { - "text": "Adopt strong and decisive measures to punish those responsible for the rape of girls and women", - "values": [ - "4 - General action" - ] - }, - { - "text": "Continue the efforts initiated to ratify CPED, as well as the main international instruments on human rights to which the country is not yet a party", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Proceed with the ratification of the Optional Protocol to the Convention of the Rights of Persons with the Disabilities (CRPD) ", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Accept an independent OHCHR presence and allow the entry of international human rights monitors.", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Implement the Seventh National Development Plan (2017-2020) in order to address the human rights challenges that it recognizes as pending", - "values": [ - "4 - General action" - ] - }, - { - "text": "Continue efforts for the promotion and protection of rights of women and devise policies for their empowerment", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Abolish religious discrimination in the schools", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Establish a national prevention mechanism in line with the Optional Protocol to the Convention against Torture", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Ensure that adequate resources are invested for the effective implementation of the National Human Rights Action Plan 2017-2021, in particular at the provincial level", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Facilitate effective coordination between the Confederation, cantons and civil society to ensure the compatibility of popular initiatives with its obligations under international human rights", - "values": [ - "3 - Considering action" - ] - }, - { - "text": "Continue increasing the enrolment rate of children in primary schools and achieve equal gender opportunities, particularly in setting up policies that strengthen the rights of girls in education and provide education to all those who have been deprived (vulnerable groups), and improve the quality of the public education system ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Conduct awareness and education campaigns on gender-based violence and create accessible complaints mechanisms for reporting sexual and domestic violence", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Take effective measures to improve the situation of the Roma and Romani/Taters minorities and ensure that all forms of discrimination against them in the provision of services are firmly opposed and appropriately sanctioned ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Increase professional and effective working procedures in addressing child sexual abuse cases", - "values": [ - "4 - General action" - ] - }, - { - "text": "Share its experiences in provision of free education to all children ", - "values": [ - "1 - Minimal action" - ] - }, - { - "text": "Continue to channel her tremendous resources into social programmes with a view to eradicating poverty ", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Speed up the process of selecting the members of the Human Rights Commission to make it operational", - "values": [ - "4 - General action" - ] - }, - { - "text": "Take legislative action to ensure every person's right to freely choose one's religion in line with the Indian Constitution and effectively and swiftly prosecute acts of violence against religious minorities ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Guarantee full implementation of all European Court of Human Rights rulings within an adequate time frame", - "values": [ - "4 - General action" - ] - }, - { - "text": "Take effective measures to combat violence and discrimination against women, including cases of murder and disappearances", - "values": [ - "4 - General action" - ] - }, - { - "text": "Continue the process of the juvenile justice reform by taking further measures in line with the nature of children and their needs", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Elaborate State policies and establish mechanisms targeting discrimination against marginalized and vulnerable categories of children ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Address deficiencies in the legal framework of the electoral process, abolish restrictions on domestic and international observation, strengthen independence and transparency of the Electoral Commission and deal with flaws in the voters' register and with problems with the media coverage", - "values": [ - "4 - General action" - ] - }, - { - "text": "Provide, as a matter of priority, support to ensure the sustainable return of refugees and internally displaced persons", - "values": [ - "4 - General action" - ] - }, - { - "text": "Implement the law which provides criminal penalties for official corruption effectively", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Continue disclosing human rights violations by the Israeli regime in the Occupied Syrian Golan and other Arab territories", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Accelerate the process of establishment of the national human rights institution", - "values": [ - "4 - General action" - ] - }, - { - "text": "Consider the ratification of and accession to all outstanding human rights instruments ", - "values": [ - "3 - Considering action" - ] - }, - { - "text": "Adopt a national human rights action plan", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Ensure that the policy of promoting the Georgian language is not pursued to the detriment of the linguistic rights of minorities ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Protect the social status of the family as the basic unit of the social structure", - "values": [ - "4 - General action" - ] - }, - { - "text": "Intensify efforts for the full respect of the rights of women and people belonging to vulnerable groups including children, minorities and indigenous people and their protection from discriminatory practices.", - "values": [ - "4 - General action" - ] - }, - { - "text": "Promote the strengthening of the legal framework for the protection of children and adolescents with disabilities", - "values": [ - "4 - General action" - ] - }, - { - "text": "Criminalize in national legislation enforced disappearance in conformity with international standards and ratify the International Convention on the Protection of All Persons from Enforced Disappearance", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Ratify at the earliest the International Convention for the Protection of All Persons from Enforced Disappearance and fully recognize the competence of the Committee on Enforced Disappearances, as provided for in articles 31 and 32 of the Convention ", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Focus on the training programmes of religious leaders on promoting concepts of dialogue and tolerance", - "values": [ - "4 - General action" - ] - }, - { - "text": "Ratify the United Nations Declaration on the Rights of Indigenous Peoples", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Pass a decree that recognizes to the Truth for Reconciliation Commission of Thailand the power to gather information from any public or private entity as well as to call all kinds of witnesses", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Introduce legislation to prohibit the rights of men to physically punish their wives ", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Continue to implement policies to fight poverty and promote economic development", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Promote further human rights education and training for law enforcement agents", - "values": [ - "4 - General action" - ] - }, - { - "text": "Continue their great efforts to put an end to all practices likely to interfere with the peaceful coexistence among the different groups of the multi-ethnic society of Australia ", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Enhance national policies for the freedom of religion and other practices of minorities", - "values": [ - "4 - General action" - ] - }, - { - "text": "Establish a workshop on education to exchange views and experiences with developed and developing countries.", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Reinforce policies to protect the fundamental rights of internally displaced persons", - "values": [ - "4 - General action" - ] - }, - { - "text": "Continue its efforts in the area of providing welfare to older persons ", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Amend the abortion law to allow for safe abortion in cases of rape, incest or when the health and life of the pregnant woman is at risk", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Take steps to improve the access to public information through the establishment of an independent and autonomous body to guarantee timely and effective access in compliance with international standards", - "values": [ - "4 - General action" - ] - }, - { - "text": "Intensify efforts in the fight against extrajudicial executions, rape and torture", - "values": [ - "4 - General action" - ] - }, - { - "text": "Put in place technical assistance programmes to strengthen the capacity of the Ombudsman", - "values": [ - "4 - General action" - ] - }, - { - "text": "Reconsider the concession of refugee centers to private businesses taking into account the impact such a policy has on the right to access to justice, as well as the practical consequences of the financial incentives that this creates", - "values": [ - "3 - Considering action" - ] - }, - { - "text": "Incorporate human rights consideration into poverty alleviation projects", - "values": [ - "4 - General action" - ] - }, - { - "text": "As a high priority, introduce federal law which prohibits discrimination on the grounds of sexual orientation ", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Fight malaria and HIV-AIDS with the support of the international community ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Finalise and publish at an early date and then swiftly implement its National Human Rights Action Plan for 2009-2010", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Strengthening efforts to address trafficking in persons, especially women and children, and sexual violence ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Respond favourably to UN Special Rapporteurs' outstanding visit requests and facilitate them when necessary", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Ensure equal opportunities in the labour market, particularly by promoting access to work for the various social groups ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Continue the policies developed to combat the actions of economic aggression against the Venezuelan people, and guarantee its human rights, in particular those of the most vulnerable groups", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Further develop its sound and successful social policies to support the population, especially those most in need", - "values": [ - "4 - General action" - ] - }, - { - "text": "Take immediate steps to remove juvenile prisoners from death row.", - "values": [ - "4 - General action" - ] - }, - { - "text": "Accelerate the domestication of the provisions of the international human rights instruments to which it is a party", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Establish sustainable and effective centres where women whose rights have been violated and who have been victims of abuse and violence can go and find support ", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Organize a by-election in Nukufetau as soon as practicable ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Ratify-accede-adhere the International Convention on the Protection of the Rights of All Migrant Workers and Members of their Families.", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Accede to and fully implement the 1954 Convention relating to the Status of Stateless Persons and the 1961 Convention on the Reduction of Statelessness in order to secure the basic rights of stateless persons and introduce a formal procedure to determine statelessness", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Accelerate the enactment process of the new Criminal Code", - "values": [ - "4 - General action" - ] - }, - { - "text": "Establish a National Human Rights Institution in accordance with the Paris Principles, as per the recommendations from its last universal periodic review appearance", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Proceed with the ratification of the International Convention for the Protection of All Persons from Enforced Disappearance ", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Implement the 2013 Public Benefits Organizations Act, and ensure that any amendments to the Act are undertaken in consultation with civil society", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Increase its efforts to fight human trafficking ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Chile is committed to elaborating a National Human Rights Action Plan which, in its methodology, provides for ample consultations with the civil society prior to its launching", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Enact comprehensive prison and related judicial reform to ensure that conditions of detention are in conformity with United Nations Standard Minimum Rules for the Treatment of Prisoners, including but not limited to: addressing overcrowding and sanitary issues in prisons, providing sufficient resources for rehabilitation and reintegration of prisoners, and relieving the judicial backlog that has contributed to the detention of over 2,000 people in remand awaiting a trial, many who have been in custody for several years", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Exert concrete efforts to eliminate all forms of discrimination and violence against women", - "values": [ - "4 - General action" - ] - }, - { - "text": "Continue its efforts in reforming Djibouti's Criminal Code and the Code of Criminal Procedure by incorporating a clear definition of torture and an explicit prohibition of torture and other ill-treatment in its domestic law ", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Conduct such specific awareness-raising campaigns which can help to sensitize the general Ivorian public regarding the rights of LGBTI persons", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Ratify CED, OP-CRC-AC and CRPD", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Include specific references to human rights law in the agreement of ceasefire throughout the country and establish a comprehensive system to monitor its implementation", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Reconsider the abolition of the death penalty as a sentence for various crimes", - "values": [ - "3 - Considering action" - ] - }, - { - "text": "Shed full light on the serious human rights violations committed during the armed conflict and during the 2007 elections by the police and the security forces and incorporate into domestic law the provisions of the Rome Statute of the International Criminal Court ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Ending mass arbitrary expulsion of migrant workers and to ensure that their human rights are respected in all deportation processes ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Engage closely with civil society in the follow-up on the recommendations of the Human Rights Council", - "values": [ - "4 - General action" - ] - }, - { - "text": "Ensure that allegations of human rights violations by security forces are subjected to independent and impartial investigations and more generally take measures to strengthen the fight against impunity", - "values": [ - "4 - General action" - ] - }, - { - "text": "Meet its obligations to cooperate with the International Criminal Court pursuant to Security Council resolution 1970 (2011)", - "values": [ - "4 - General action" - ] - }, - { - "text": "Continue efforts to promote all universally agreed human rights and fundamental freedoms.", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Put an end to the state of emergency in force since 2009", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Ensure that asylum seekers and children of refugees receive the same quality of education as other children in Danish schools", - "values": [ - "4 - General action" - ] - }, - { - "text": "Put in place measures that guarantee the integrity and protection of prisoners and detainees, particularly vis-à-vis other prisoners, in the light of cases of rapes that have led to an increase of HIV positive prison population prevalence", - "values": [ - "4 - General action" - ] - }, - { - "text": "Take additional steps to fight different pandemics and ensure access of population to basic medical services, especially in rural areas", - "values": [ - "4 - General action" - ] - }, - { - "text": "Abolish any discriminatory measures that target Muslims and Arabs at airports", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Apply the recommendation of the Special Rapporteur on the right to health on obstacles to access to health services by marginal populations, and to address this problem through educational programmes on diversity, and to train professionals in the health sectors.", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Facilitate the integration of refugees, including by combating stereotypes, prejudice and hate speech", - "values": [ - "4 - General action" - ] - }, - { - "text": "Develop a national plan for combating hate crimes in order to ensure continuity and sustainability", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Continue its efforts for the promotion of the role of women within the Government and elected bodies ", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Ratify ICERD, ICESCR, ICCPR, and the Convention against Torture and Other Cruel, Inhuman or Degrading Treatment or Punishment ", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Adopt concrete measures to end, as a matter of priority, the enrolment of children in armed forces, including ratifying and implementing the Optional Protocol to the Convention on the Rights of the Child on the involvement of children in armed conflict", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Withdraw its reservations to the Convention on the Elimination of All Forms of Discrimination against Women", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Consider ratification of core international human rights instruments to which it is not yet a party, such as ICCPR and ICESCR ", - "values": [ - "3 - Considering action" - ] - }, - { - "text": "Establish a national human rights institution fully consistent with the Paris Principles, ensure its independence and allocate sufficient resources to it", - "values": [ - "4 - General action" - ] - }, - { - "text": "Continue strengthening its national institutional capacity in promoting and protecting human rights, including through completing the process of establishment of a national human rights institution in accordance with the Paris Principles ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Continue its national efforts, with the support and assistance of the international community, for the promotion and protection of human rights, particularly in the realization of economic, social and cultural rights of the people of Kenya", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Bring its legislation into conformity with its commitment to equality and non-discrimination, by prohibiting discrimination based on sexual orientation", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Continue promoting the right to education, in particular access to education for boys and girls from Afro-Panamanian, indigenous, rural and migrant communities", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Ensure prompt and effective implementation of the NAPIE and other strategies and action plans relevant to the full realization of the rights of Roma children by, inter alia, making available the necessary human and other resources and setting clear, measurable and ambitious targets for transfers of children to ordinary education and for overall de-segregation of the school system", - "values": [ - "4 - General action" - ] - }, - { - "text": "Ratify the CAT, OP-CAT, ICCPR-OP2", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Share with other countries its experience in the education of persons with disabilities and in providing them with employment", - "values": [ - "1 - Minimal action" - ] - }, - { - "text": "Consider acceding to the ICRMW", - "values": [ - "3 - Considering action" - ] - }, - { - "text": "Amend the provisions concerning offences against national security which could restrict freedom of expression, including on the Internet, particularly articles 79, 88 and 258 of the Penal Code, to ensure its compliance with Viet Nam's international obligations, including ICCPR ", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Combat violence against women through effective legislation and law enforcement measures", - "values": [ - "4 - General action" - ] - }, - { - "text": "Ensure the independence of judiciary and lawyers", - "values": [ - "4 - General action" - ] - }, - { - "text": "Ratify the Convention on the Rights of the Child and the International Convention on the Protection of the Rights of All Migrant Workers and Members of Their Families", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Repeal section 377 of the Indian Penal Code, which criminalizes same-sex conduct between consenting adults, and enact legislation consistent with the Supreme Court\u2019s recognition of the rights of transgender persons", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Strengthen measures to combat the negative effect of the economic activities of companies on the environment and biodiversity", - "values": [ - "4 - General action" - ] - }, - { - "text": "Continue its internal measures for the adoption of the Family Protection and Domestic Violence Bill ", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Continue to advance efforts to address gender inequality and undertake further measures, such as enacting specific legislation to protect vulnerable populations, including women, children and indigenous peoples, from violence and exploitation", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Adopt measures to promote equality of the rights of lesbian, gay, bisexual and transgender persons and end discrimination against them regard", - "values": [ - "4 - General action" - ] - }, - { - "text": "Continue to strengthen efforts to prevent law enforcement officers of using excessive force", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "In light of the current lack of normative legislation to support the consistent development and implementation of the country's human rights programme, continue to call for technical assistance and advice on best practices from the international community ", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Review the current regional offshore processing arrangement, and policy of mandatory detention of refugees, stateless persons and migrants, and uphold all human rights obligations towards refugees, stateless persons and migrants, including the principle of non-refoulement", - "values": [ - "3 - Considering action" - ] - }, - { - "text": "Take more steps in sensitizing the local population on human rights instruments", - "values": [ - "4 - General action" - ] - }, - { - "text": "Strengthen maternity protection ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Continue its efforts to throw light on the violations of the right to life, personal integrity and freedom perpetrated under its jurisdiction, in accordance with what has been requested in successive United Nations General Assembly resolutions ", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Seek which tangible support the international community, particularly States in a position to do so, may extend to assist Sri Lanka in bridging these gaps in order to enhance the effective realization of the full range of human rights for all Sri Lankans.", - "values": [ - "1 - Minimal action" - ] - }, - { - "text": "Intensify measures aiming at promoting tolerance, intercultural dialogue and the respect of diversity, strengthening awareness-raising campaigns ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Take all necessary measures to protect the human rights, dignity and physical integrity of female members of the armed forces through an awareness-raising campaign, and also by taking firm judicial and disciplinary action against perpetrators ", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Recognize the right to conscientious objection to military service and reinstate the alternative civilian national service ", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Continue exerting increased efforts in the implementation of the Sustainable Development Goals", - "values": [ - "4 - General action" - ] - }, - { - "text": "Amend legislation, in line with Committee on the Elimination of Racial Discrimination recommendations, to provide for the possibility of adopting special measures to promote equal opportunities, and address structural discrimination and inequality faced by immigrants, and minority groups, including Afro-Swedes and Muslims", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Implement its commitment to guarantee freedom of association and expression", - "values": [ - "4 - General action" - ] - }, - { - "text": "Follow the recommendations of the Special Rapporteur on contemporary forms of slavery and implement the 2014 roadmap of the Government to eradicate slavery", - "values": [ - "4 - General action" - ] - }, - { - "text": "Ratify the Istanbul Convention without delay", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Release all persons detained solely for peaceful political activities, inquire into all cases of alleged torture in detention facilities and bring those responsible to justice", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Amend the citizenship law of 1969, which prevents women from granting citizenship to their children, to ensure women's right to grant citizenship to their children", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Continue efforts in the education system to ensure access to education for all segments of the society", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Continue the adoption of measures aimed at ensuring the effective implementation of the Law on access to public information in all branches of the State", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Strengthen the application in all its territory of the Convention on the Rights of Persons with Disabilities, guaranteeing that the different measures initiated are in line with the approach defined in the Convention", - "values": [ - "4 - General action" - ] - }, - { - "text": "Rephrase its definition of torture in national legislation by aligning it with the Convention against Torture and ensure that the new definition comprehends all elements of torture ", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Establish a National Human Rights Institution ", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Incorporate into domestic law the provisions of the treaties that Botswana has freely acceded", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Expedite the introduction of a statelessness determination procedure and ensure that it is in line with international standards and guidance from the Office of the United Nations High Commissioner for Refugees", - "values": [ - "4 - General action" - ] - }, - { - "text": "Ensure that opposition parties are permitted to participate freely in the political process without fear of retribution.", - "values": [ - "4 - General action" - ] - }, - { - "text": "Reinforce the judicial system and law enforcement authority with a view to eliminating widespread and organized violent crimes which seriously threaten public safety, especially the safe school environment", - "values": [ - "4 - General action" - ] - }, - { - "text": "Strengthen the state of laws and good governance, including further capacity-building for law enforcement mechanisms and national institutions on human rights ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Intensify efforts to carry out necessary reforms in the security sector", - "values": [ - "4 - General action" - ] - }, - { - "text": "Amend the Bar Council Act in order to allow for the Bar Council to become a truly independent and self-governing association", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Punish any harassment, intimidation or discrediting of civil society groups ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Ensure that members of the Roma community, and members of other vulnerable groups, are protected from violence and attack, including when these groups wish to assembly, hold events or organize demonstrations ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Increase human and financial resources of the Office of the Ombudsperson for Equal Treatment ", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Consider ratifying international instruments to which it is not a party to in order to strengthen its legal arsenal on human rights, particularly the ICRMW and the ILO Convention 189 on decent work for domestic workers ", - "values": [ - "3 - Considering action" - ] - }, - { - "text": "Amend legislation on nationality in order to be able to grant Nepali nationality through either parent", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Expedite action on the reform process to remove provisions in domestic legislation which discriminate against women. ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Intensify its public expenditure on the implementation of economic, social and cultural rights ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Take further steps to achieve gender equality through ensuring equal opportunity in the workplace", - "values": [ - "4 - General action" - ] - }, - { - "text": "Refrain from any action incompatible with the non-discrimination of religious and ethnic minorities as well as of LGBT persons", - "values": [ - "4 - General action" - ] - }, - { - "text": "Adopt legislation prohibiting discrimination on the grounds of sexual orientation and gender identity, introducing also awareness-raising programs that promote respect for sexual diversity", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Introduce and publish a national action plan to improve conditions and address over-crowding in prisons, including an increased focus on rehabilitation ", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Take all necessary measures in order to eliminate violence against women and children, including through consolidation of the legal system with respect to human trafficking counter-measures", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Ratify the two 1966 Covenants and their Optional Protocols", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Ratify the Optional Protocol to the ICESCR and the Optional Protocol to the Convention on the Rights of the Child on a communications procedure ", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Further foster its measures in relation to migrant women and foreign adopted children that are exposed to domestic violence ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Develop a constructive partnership with the United Nations and NGOs working on food and medical assistance, and guarantee safe access to the country, including in areas where violent actions against federal authorities take place - this partnership should constitute one of the cornerstones of the new agriculture and land-use policies in Ethiopia ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Continue giving its utmost attention to the advancement of the rights of the child, in particular efforts to prevent and eliminate the worst forms of child labor ", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Redouble its efforts to ensure access to health services in the country ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Take a comprehensive set of measures to tackle racism and racial discrimination and to combat more resolutely all its forms and manifestations, particularly racist and xenophobic political platforms", - "values": [ - "4 - General action" - ] - }, - { - "text": "Spare no efforts in creating conditions conducive to the peaceful and democratically credible holding of the 2015 presidential elections, in particular by convening a solid voter registration process reforming as necessary the National Election Commission", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "The Italian Government was also committed to gender equality and to preventing and eliminating discrimination based directly or indirectly on sex, racial or ethnic origin, religion or belief, age or gender identity.", - "values": [ - "4 - General action" - ] - }, - { - "text": "Take concrete action to reduce the gender gap in decision-making positions and ensure equal remuneration for men and women for work of equal value", - "values": [ - "4 - General action" - ] - }, - { - "text": "Ensure that persons with temporary protection status have the right to immediately initiate family reunification proceedings, and that the age limit for family reunification for children be raised from 15 to 18", - "values": [ - "4 - General action" - ] - }, - { - "text": "Ratify the International Convention on the Elimination of All Forms of Racial Discrimination and consider ratifying the International Covenant on Economic, Social and Cultural Rights", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Strengthen capacity-building with regard to human rights for civil servants involved in the protection of women and girl and boy victims of violence and sexual abuse", - "values": [ - "4 - General action" - ] - }, - { - "text": "Sri Lanka should work with international and domestic non-State actors to halt the recruitment and use of child soldiers", - "values": [ - "4 - General action" - ] - }, - { - "text": "Take necessary measures to enable all citizens to fully take part in the democratic process in advance of the 2015 elections, including allowing open and inclusive electoral debate, civic and voter education, election monitoring and the active engagement of civil society organizations and independent media ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Bring legislation on freedom of expression, assembly and association in line with international human rights standards, in particular by repealing the "Media Industry Development Decree" 2010 in order to end intimidation and harassment of those that express criticism of the State, to change the climate of fear and self-censorship and to ensure that no one is arbitrarily arrested and detained for exercising their rights", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Publicly order its security forces and all militia and forces affiliated with it not to commit unlawful attacks, including targeting civilians ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Ratify the Optional Protocol to the Convention against Torture as soon as possible and establish an independent national preventive mechanism in compliance with the requirements of the Optional Protocol", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Adopt a legal framework clearly defining crimes of trafficking of children for sexual exploitation, economic exploitation or other purposes, while imposing appropriate sanctions", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Address the gaps in the legislation on domestic violence identified by the Committee established by the Bureau of Gender Affairs", - "values": [ - "4 - General action" - ] - }, - { - "text": "Continue to seek international technical cooperation and assistance, especially in the areas of health and education ", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Continue efforts to provide access to health care to all the population under a health insurance system at the national level", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Seek to ensure the effective participation of Roma people in the process of assuring their equal and non-discriminatory treatment", - "values": [ - "4 - General action" - ] - }, - { - "text": "Outlaw the practice of torture and cruel, inhuman and degrading treatment, including the whipping of persons for alleged violations of the Immigration Act", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Accept a visit by the working group on arbitrary detention to investigate the detention conditions of prisoners", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Give particular attention to potential discrimination based on multiple grounds ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Consider taking steps towards strict implementation of its laws prohibiting traditional practices harmful to women and children", - "values": [ - "3 - Considering action" - ] - }, - { - "text": "Strengthen guarantees for detained persons, and not to extend but to shorten the length of time of pretrial detentions.", - "values": [ - "4 - General action" - ] - }, - { - "text": "Take initiatives to improve recruitment and retention of female police officers ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Step up measures to prevent suicide, especially among young people", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Align its national legislation with all obligations under the Rome Statute, including by incorporating the provisions enabling cooperation with the Court ", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Strengthen implementation of the National Agricultural Policy to ensure access to food and address malnutrition", - "values": [ - "4 - General action" - ] - }, - { - "text": "Continue efforts to strengthen measures to enhance the promotion and protection of human rights including social, political, economic and cultural rights ", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Establish a National Commission on Human Rights in accordance with the Paris Principles", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Take effective and rapid steps through the enactment of legislation to combat hate speech, Islamophobia and aggressive racist acts, which are increasingly prevalent in society, and ensure their effects are addressed in the long term", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Strengthen its work to promote a human rights culture throughout the country and ensure rule of law and equal treatment before the law", - "values": [ - "4 - General action" - ] - }, - { - "text": "Continue to strengthen measures in the fight against corruption, extortion and fraud", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Ensure that the new plan for a reorganization of the justice sector, as mentioned in the Government Program 2015-2020, guarantees the impartiality of the courts, full access for all citizens, and sufficient resources at all levels", - "values": [ - "4 - General action" - ] - }, - { - "text": "Make further efforts to combat racial discrimination and xenophobia, and to promote racial and religious harmony ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Cooperate fully with the Special Procedures of the Human Rights Council and ensure everyone enjoys the right to unhindered access to and communication with the United Nations, its representatives and mechanisms, including by preventing and ensuring adequate protection against reprisals", - "values": [ - "4 - General action" - ] - }, - { - "text": "Ratify the International Convention for the Protection of All Persons from Enforced Disappearance (CED), sign and ratify the Optional Protocol to the Convention against Torture and Other Cruel, inhuman, or Degrading Treatment or Punishment (OP-CAT) and establish a national independent mechanism to inspect detention places ", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Intensify efforts on gender equality", - "values": [ - "4 - General action" - ] - }, - { - "text": "Issue a standing invitation to all mandate holders of the Council ", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Assure full respect of freedom of association and peaceful assembly and punish all excessive use of force by security officers against peaceful demonstrators", - "values": [ - "4 - General action" - ] - }, - { - "text": "Undertake further initiatives to address hate speech directed against members of vulnerable groups, and ensure sufficient focus on this topic in the education system", - "values": [ - "4 - General action" - ] - }, - { - "text": "Ratify the Convention on the Rights of Persons with Disabilities and improve the integration of persons with disabilities in the education system.", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Give special regard to women and children and enhance their enjoyment of human rights and fundamental freedoms.", - "values": [ - "4 - General action" - ] - }, - { - "text": "Develop a national action plan with a view to ensure free and compulsory education ", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Allow ICRC full and unrestricted access to places of detention ", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Strengthen its measures to combat violence against children ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Take necessary measures and steps to improve legislation on the right to health and ensure access for all persons to health services without discrimination ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Criminalise child marriage", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Support family-oriented approaches for the protection of the rights of the child and implement the already existing national policy in this regard ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Conduct impartial investigations into all cases of attacks, harassment and intimidation of journalists and bring perpetrators to justice", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Take measures to protect further and promote the rights of women, including through international cooperation to prevent human trafficking and by criminalizing domestic violence and marital rape ", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Continue further on its effort to establish synergy between different institutions in the country ", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Continue to strengthen the National Office against Racial Discrimination with the view to combating hate speech and protect Roma, racial and religious minorities including Muslims from violence and discrimination", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Continue strengthening the legislative framework for the prevention and combating of racial discrimination and prejudiced-based practices", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Formulate a national plan of action to combat racism and xenophobia", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "To establish a human rights desk under the Ministry of Justice and Constitutional Affairs to coordinate human rights issues at the national level. The mandate of the desk will be defined in consultation with the Uganda Human Rights Commission", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Promote further comprehensive protection of the rights of children", - "values": [ - "4 - General action" - ] - }, - { - "text": "Protect and fulfil children's rights, eradicating child labour and the sexual exploitation of minors", - "values": [ - "4 - General action" - ] - }, - { - "text": "Strengthen laws prohibiting religious and racial discrimination and criminalizing hate speech and incitement to religious and racial hatred", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Further consolidate on important fields of rules of law, gender equality, and social welfare to better overall conditions for vulnerable groups such as women, children and youth", - "values": [ - "4 - General action" - ] - }, - { - "text": "Build the capacity of national institutions and mechanisms to promote and protect human rights in the implementation of international human rights instruments ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Analyze each of the United Nations treaty bodies recommendations in close cooperation with civil society to implement them or to report publicly on the reasons why it considers their implementation not appropriate ", - "values": [ - "3 - Considering action" - ] - }, - { - "text": "Accede and ratify to the International Convention for the Protection of All Persons from Enforced Disappearance (CPED)", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Further strengthen accountability for human rights violations by the police and implement a national prevention mechanism against torture ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Continue its fight against poverty with the support and cooperation of the international community", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Accede to ICCPR, ICESCR, CAT, and the Rome Statute of the ICC ", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Provide the necessary resources to the Permanent Multisectoral Commission in Charge of Follow-up to the Convention on the Rights of Persons with Disabilities, with an expanded structure that allows the participation of all the stakeholders", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Fully implement the land law passed.", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Take the necessary measures to avoid detention of asylum-seekers and to avoid situations which may equate the condition of immigrants to that of felons ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Consider, within its vision, acceding to other core human rights treaties, including ICERD ", - "values": [ - "3 - Considering action" - ] - }, - { - "text": "Multiply its efforts to involve in the decision-making the active participation of different social structures, especially those geared to combat poverty and social equality ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Take all necessary steps to complete the process of implementation of the Indigenous and Tribal Peoples Convention No. 169.", - "values": [ - "4 - General action" - ] - }, - { - "text": "Continue to take vigorous measures including improving relevant laws to further promote gender equality", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Endeavour to put in place structures that guarantee the citizenship rights of its people", - "values": [ - "4 - General action" - ] - }, - { - "text": "Consider ratifying the Second Optional Protocol to the International Covenant on Civil and Political Rights, aiming at the abolition of the death penalty", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Amend the 2009 Media Law to comply with its international obligations, with particular focus on removing unjustified interference with the right to freedom of expression ", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Strengthen the coordination between the different authorities intervening in the combat against trafficking, including those in charge of assisting and protecting victims, in particular children", - "values": [ - "4 - General action" - ] - }, - { - "text": "Establish a national strategy to combat violence against women and girls, and take appropriate measures for coordinated, multisectoral responses in this regard ", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Take measures to incorporate into its national legislation the crime of enforced disappearance", - "values": [ - "4 - General action" - ] - }, - { - "text": "Continue to take strong actions, including appropriate judicial measures, to counter all forms of discrimination and hate crimes, in particular those based on religion and ethnicity", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Continue reinforcing the enjoyment by people with disabilities of all their political, social and economic rights", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Ensure that the draft law on juvenile justice and the draft law on prohibition of corporal punishment of children is adopted and implemented in line with international standards ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Accelerate the repeal of discriminatory legislative provisions and adopt measures to protect and promote the traditional knowledge of the Batwa minority in accordance with the United Nations Declaration on the Rights of Indigenous Peoples", - "values": [ - "4 - General action" - ] - }, - { - "text": "Study the possibility of ratifying or adhering to the International Convention for the Protection of All Persons from Enforced Disappearance, the Optional Protocol to the Convention against Torture and the International Convention on the Protection of the Rights of All Migrant Workers and Members of Their Families", - "values": [ - "3 - Considering action" - ] - }, - { - "text": "Strengthen legislation on freedom of expression and conscience", - "values": [ - "4 - General action" - ] - }, - { - "text": "Expedite the completion of its strategic national action plan for human rights", - "values": [ - "4 - General action" - ] - }, - { - "text": "Continue to guarantee non-discrimination for all and share further experiences with regard to the new integration policies with regard to guaranteeing human rights", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Fully implement the National Plan of Action on Child Labour ", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Ensure and apply transparent and non-discriminatory decision-making processes with regard to the registration of media outlets and the accreditation of foreign journalists", - "values": [ - "4 - General action" - ] - }, - { - "text": "Carry out training to identify acts of torture for law enforcement personnel, the Office of the Director of Public Prosecutions, doctors, psychologists and any officials during the detention process. Additionally establish a complaints and follow-up mechanism", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Continue its efforts, through the United National Framework Convention on Climate Change and other forums, to remind the international community, especially developed countries and other major emitting states, of their obligations to protect and promote human rights in Nauru by reducing greenhouse gas emissions to safe levels ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Ensure safe and unhindered access to all humanitarian personnel and humanitarian assistance to the civilian population, and most importantly refrain from imposing blockades on the Gaza Strip.", - "values": [ - "4 - General action" - ] - }, - { - "text": "Continue to further promote women's rights and increase their participation in all fields of society", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Ensure on-going protective measures to maintain and advance the levels of human rights developments", - "values": [ - "4 - General action" - ] - }, - { - "text": "Withdraw its reservations to the CRC concerning detained and asylum seeking children ", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "HIV and AIDS poses a threat to Lesotho's development thus Lesotho will reduce incidence of HIV by at least 15 percent and increase coverage for anti-retroviral treatment (ART) to at least 80 percent of the population by 2017.", - "values": [ - "4 - General action" - ] - }, - { - "text": "Continue to promote the completion of drafting the national human rights action plan ", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Ensure that the New Education Sector Plan is well implemented and adequately resourced, in order to raise education standards at all levels in the country", - "values": [ - "4 - General action" - ] - }, - { - "text": "Step up efforts to ensure the basic human rights of all detainees by improving the material condition in prison facilities and police detention centres as well as investigating cases regarding ill-treatment and violence in prisons and conducting trainings for prison officers", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Combat impunity for attacks on human rights defenders by effectively investigating allegations and by prosecuting those responsible.", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Amend the Citizenship and Nationality Law to enable Jordanian women to pass on their nationality to their children and spouses on an equal basis with Jordanian men", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "As for the special procedures, we reaffirm our commitment and willingness to consider any request for a country visit by any United Nations rapporteur.", - "values": [ - "3 - Considering action" - ] - }, - { - "text": "Immediately release the remaining political prisoners", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Strengthen efforts to address racial discrimination including through implementing the Multinational Plan to Eliminate Racial Discrimination and Ethnic and Cultural Exclusion", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Continue the policy for the improvement of the situation of women and their integration in public and political life.", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Adopt and implement an effective legal framework and undertake appropriate public awareness campaigns to eliminate discrimination against women", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Continue to work to strengthen national human rights institutions, while consolidating the achievements in human rights ", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Take concrete measures to guarantee respect for the rights and fundamental freedoms of all the population, and take the necessary actions to investigate and punish those responsible for the kidnapping of refugees, arbitrary detention, torture, executions and enforced disappearances", - "values": [ - "4 - General action" - ] - }, - { - "text": "Ensure the full implementation of women\u2019s rights, in particular in relation to effective access to sexual and reproductive health and rights", - "values": [ - "4 - General action" - ] - }, - { - "text": "Provide active and immediate protection for all human rights defenders ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Take all necessary measures to combat domestic violence, punish offenders, provide material and psychological relief to victims, as recommended by the Human Rights Committee, and promote family and associated values in society to tackle domestic violence.", - "values": [ - "4 - General action" - ] - }, - { - "text": "Ensure that all acts of torture are specific offences under its criminal law ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Engage stakeholders such as civil society organizations, the private sector, local communities, donors, and multilateral institutions in the realization of the fundamental international principles on human rights protection", - "values": [ - "4 - General action" - ] - }, - { - "text": "Consider putting in place temporary special measures in areas where women are underrepresented or disadvantaged and provide additional resources to accelerate the improvement of the status of women", - "values": [ - "3 - Considering action" - ] - }, - { - "text": "Consider ensuring that the issue of violence against women be considered by the Human Rights and Anti-Discrimination Commission as one of its priorities", - "values": [ - "3 - Considering action" - ] - }, - { - "text": "Ratify the Convention against Torture and the Second Optional Protocol to the International Covenant on Civil and Political Rights", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Reform the judicial system to guarantee its neutrality and independence and assure access to justice for persons belonging to minorities and vulnerable groups", - "values": [ - "4 - General action" - ] - }, - { - "text": "Continue the work undertaken for the adoption of a new criminal code which guarantees the independence of the judicial system and the holding of fair and just trials", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Take more efforts to eliminate discrimination against women ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Ratify the International Convention for the Protection of All Persons from Enforced Disappearance ", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Consider ratifying the two Optional Protocols to the Convention on the Rights of the Child ", - "values": [ - "3 - Considering action" - ] - }, - { - "text": "Continue to engage civil society in the process of implementation of UPR recommendations ", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Revise the Family Code to guarantee equality between fathers and mothers in guardianship of their children ", - "values": [ - "3 - Considering action" - ] - }, - { - "text": "Give consideration to incorporating the UN Rules for the Treatment of Women Prisoners and Non-Custodial Measures for Women Offenders, also known as the "Bangkok Rules", as part of its policy on the treatment of prisoners", - "values": [ - "3 - Considering action" - ] - }, - { - "text": "Implement the recommendations contained in the Commission's report which were all accepted by the Government, particularly the one regarding the establishment of a programme of national reconciliation ", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Combat trafficking in persons, especially in women and children, as well as prosecuting and investigating all perpetrators of these crimes", - "values": [ - "4 - General action" - ] - }, - { - "text": "Review some of the laws that have been promulgated that prohibited clothes that reflect a religious connotation", - "values": [ - "3 - Considering action" - ] - }, - { - "text": "Proceed with ratifying and fully implementing international instruments to which it is a signatory, including CAT ", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Continue to cooperate with the Human Rights Council and its mechanisms", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Continue the reforms in the area of women's rights, including regarding patrimonial status and particularly regarding forced and underage marriages ", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Increase actions for access to schooling ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Continue its efforts in the field of economic, social and cultural rights as well as rights recognized in the UDHR and ICCPR", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Continue to develop its National Safe School Framework to provide a safe environment for students to receive a good education that is free from harassment, aggression and bullying", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Further strengthen its cooperation with the special procedures", - "values": [ - "4 - General action" - ] - }, - { - "text": "Strengthen the national gender equity and equality policy", - "values": [ - "4 - General action" - ] - }, - { - "text": "Take steps to reverse the negative trend of the decrease in vaccination coverage in Ukraine", - "values": [ - "4 - General action" - ] - }, - { - "text": "Ensure that the Truth Commission created in November 2011 be provided with sufficient resources to recognize the right of victims to justice, in particular for crimes with no statute of limitation ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Take measures to reduce prison overcrowding and improve conditions for detainees ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Continue strengthening the efforts to ratify the ICED", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Continue with the policies promoting the human rights of vulnerable groups, in particular indigenous peoples, peasants and other persons working in rural areas", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Bring the Ombudsman institution in line with the Paris Principles", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Continue to engage with civil society groups and demonstrate that challenges presented by relationships between its federal, provincial and territorial governments do not present unnecessary obstacle to ensuring implementation of its international human rights obligations", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Strengthen its efforts to combat sexual exploitation of and sexual violence against children", - "values": [ - "4 - General action" - ] - }, - { - "text": "Further strengthen cooperation with human rights mechanisms, improve compliance with treaty body reporting mechanisms and consider accession to the First Optional Protocol to ICCPR ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Redouble its efforts to create an environment that ensures freedom of expression for journalists and media, including by revising the 2013 law and the 2015 governmental regulation on media, towards encouraging a free and active press", - "values": [ - "4 - General action" - ] - }, - { - "text": "Develop and start the implementation of the policy on reducing the wage gap between man and women, including in the sector of low paid women jobs ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Give further impetus to the creation of a national human rights institution in accordance with the Paris Principles ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Accede to the Rome Statute of the International Criminal Court and fully align its national legislation with the Rome Statute, including by incorporating provisions to cooperate promptly and fully with the Court and to investigate and prosecute genocide, crimes against humanity and war crimes effectively before its national courts ", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Canada recognizes that poverty requires long-term and sustainable solutions. F-P/T governments are committed to enhancing the income security of Canadians through programs that reduce poverty", - "values": [ - "4 - General action" - ] - }, - { - "text": "Take appropriate legislative and administrative measures to fight against domestic violence and physical abuse of children, and engage in an exchange of information with those countries that are developing best practices in these fields.", - "values": [ - "4 - General action" - ] - }, - { - "text": "Take measures to address the issue of prison overcrowding and poor prison conditions, including providing prisoners with access to medical staff and court-appointed counsel.", - "values": [ - "4 - General action" - ] - }, - { - "text": "Step up measures to bring an end to attacks against hospitals and their personnel, humanitarian and health units, and humanitarian convoys, and bring perpetrators to justice", - "values": [ - "4 - General action" - ] - }, - { - "text": "Develop a strategy and an operational national action plan to combat child marriage", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Reinforce the efforts to prevent and combat trafficking in human beings for sexual exploitation with particular focus on children ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Allow for family reunification for children in as many cases as possible and ensure that Danish jurisprudence on family reunification is in accordance with its human rights obligations ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Adopt national legislation prohibiting the recurring forced marriages of minors in the country", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Seek the international assistance for strengthening the capabilities of the State structures and security institutions, while continuing its measures in this regard ", - "values": [ - "1 - Minimal action" - ] - }, - { - "text": "Specifically determine its needs in order to be able to seek international assistance in its endeavors.", - "values": [ - "1 - Minimal action" - ] - }, - { - "text": "Secure sufficient resources for the ombudsperson\u2019s office so that it can fully carry out its functions", - "values": [ - "4 - General action" - ] - }, - { - "text": "Create appropriate conditions for the full realization of the economic, social and cultural rights of Roma and people of African descent ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Continue efforts to facilitate and promote indigenous peoples\u2019 access to education, sanitation, property and public positions", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Consider to end the use of corporal punishment for person under 18 and to establish a moratorium on executions of persons having committed crimes before the age of 18 ", - "values": [ - "3 - Considering action" - ] - }, - { - "text": "Whilst the death penalty remains in place, adopt a 3 tiered classification of murder that would abolish mandatory imposition of the death penalty and hand decision making power to the presiding judge ", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Accelerate the establishment of the new national human rights institution with a mandate in accordance with the Paris Principles as a matter of priority ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Ratify, without reservations, the Convention on the Elimination of All Forms of Discrimination against Women and its Optional Protocol, and review national legislation in light of its provisions to eliminate all discriminatory laws against women ", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Promote efforts aimed at implementing the Convention on the Rights of the Child", - "values": [ - "4 - General action" - ] - }, - { - "text": "Take necessary measures to fight against discriminatory practices of the police based on ethnic origin", - "values": [ - "4 - General action" - ] - }, - { - "text": "Open the information space in the Democratic People's Republic of Korea so that all its people have access to information of their choice and the possibility to impart it freely without fear of reprisals", - "values": [ - "4 - General action" - ] - }, - { - "text": "Investigate the role of security forces in child recruitment and hold those responsible accountable.", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Further strengthen efforts to ensure equal access of girls and women to all levels of education ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Adopt specific legislation on domestic violence, in particular which ensures (i) such violence constitutes a criminal offence, (ii) victims have access to means of redress, and (iii) perpetrators are held accountable ", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Step up efforts towards respecting the principle of interdependence of human rights, as laid down in the Vienna Declaration and Programme of Action, by promoting and protecting economic and social rights on an equal footing with those of a civil and political nature. This may be achieved by ratifying international instruments on civil and political rights and by strengthening national legislation relating to the protection of fundamental rights and freedoms", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Implement the principle of non-discrimination guaranteed by the Constitution, and guarantee the rights of Bidouns to their nationality", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Intensify efforts and allocate resources for measures aimed at eradicating female genital mutilation, as a matter of priority ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Lift restrictions on the registration of associations and freedom of assembly, decriminalize defamation, adopt a framework to protect journalists from intimidation and harassment, and implement the best practices on peaceful assembly put forward by the Special Rapporteur to ensure compliance with the International Covenant on Civil and Political Rights", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Ensure that the National Institute for Human Rights continues to accord with the Paris Principles and is sufficiently resourced to further advance human rights in Chile", - "values": [ - "4 - General action" - ] - }, - { - "text": "Harmonize the definition of torture in their national legislation with the internationally accepted definition as outlined in the Convention against Torture", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Incorporate all of the substantive provisions of the Convention on the Elimination of All Forms of Racial Discrimination into domestic law, with a view to ensuring comprehensive protection against racial discrimination", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Implement policies and measures which comprehensively address hate speech through legislative and institutional frameworks", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Continue efforts to eliminate domestic violence against women and ensure that women are economically empowered ", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Deepen measures which are considered as necessary to reduce maternal mortality rates and to prevent teenage pregnancy", - "values": [ - "4 - General action" - ] - }, - { - "text": "Accept Articles 76 and 77 of the ICRMW", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "In the light of its national realities, to continue to implement the policy of strictly controlling and applying the death penalty", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Ensure the exercise of the right to freedom of expression, including through access to Internet sites and social networks without undue restrictions", - "values": [ - "4 - General action" - ] - }, - { - "text": "Prioritize gender equality initiatives within its Tonga Strategic Development Framework and intensify its efforts to increase women's participation at all formal decision-making levels", - "values": [ - "4 - General action" - ] - }, - { - "text": "Become party to the remaining United Nations human rights instruments, in particular the International Convention on the Protection of the Rights of All Migrant Workers and Members of Their Families", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Strengthen the capacity for following up on recommendations made by treaty bodies and during the universal periodic review", - "values": [ - "4 - General action" - ] - }, - { - "text": "Ensure protection and assistance to all victims of trafficking", - "values": [ - "4 - General action" - ] - }, - { - "text": "Take steps to fight against trafficking in human beings and to comply with the conclusions of the Committee of the Right of the Child and other treaty bodies.", - "values": [ - "4 - General action" - ] - }, - { - "text": "End impunity for personnel in uniform. ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Sri Lanka will take measures for the effective implementation of the 13th Amendment to the Constitution.", - "values": [ - "4 - General action" - ] - }, - { - "text": "Enact legislation allowing human rights NGOs to monitor and visit detention centres", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Adopt additional measures to completely implement the Domestic Violence Prevention Act, with reference to the expired 12-month term following its adoption in 2012", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Study the possibility of ratifying the Optional Protocol to the Convention on the Rights of Persons with Disabilities and the International Convention for the Protection of All Persons from Enforced Disappearance ", - "values": [ - "3 - Considering action" - ] - }, - { - "text": "Carry out appropriate, independent, effective and transparent investigations into the deaths that occurred between 24 and 28 March 2010 in West Kingston during police operations, make public the outcomes of such investigations, and bring to justice the perpetrators of human rights violations ", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Amend the Criminal Code to penalize hate crimes and crimes of social intolerance based on sexual orientation, gender identity and sexual characteristics", - "values": [ - "4 - General action" - ] - }, - { - "text": "Continue its efforts for the promotion and protection of human rights, particularly in the area of building a more robust national human rights architecture and overcoming the capacity constraints emanating from the lack of resources and technical expertise", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Develop and implement awareness programmes about sexual and reproductive health targeting youth", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Provide follow-up to the Council of Europe Convention on Action against Trafficking in Human Beings with a particular concern on unaccompanied minors", - "values": [ - "4 - General action" - ] - }, - { - "text": "Argentina undertakes to continue promoting the reforms needed to guarantee the full implementation of the right to information by making all information from the public and private sectors public and available to citizens in general", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Further support the work of the Afghanistan Independent Human Rights Commission by employing a transparent and participatory selection process for the Commission's members ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Cooperate with and seek the support of the international community in devising its plans and strategies and in the area of capacity-building to be able to implement them", - "values": [ - "1 - Minimal action" - ] - }, - { - "text": "Strengthen its laws to prohibit racial profiling and strengthen its efforts to promote humane, dignified and non-selective treatment for migrants and other persons who are not of Irish origin", - "values": [ - "4 - General action" - ] - }, - { - "text": "Undertake a comprehensive set of measures to tackle racial discrimination and combat more resolutely all forms and manifestations of racism, racial discrimination, xenophobia and religious intolerance against foreigners and religious minorities, such as Muslims ", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Conduct training programmes on human rights to increase awareness among public servants, especially the staff of law enforcement bodies and the judiciary", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Take urgent measures to establish a formal moratorium on executions of prisoners on death row", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Expedite the enactment and implementation of the bill on the protection of human rights defenders, journalists and justice officials, and provide adequate resources to establish an effective protection mechanism", - "values": [ - "4 - General action" - ] - }, - { - "text": "Take all necessary measures to put an end to such acts, notably by bringing to justice State officials guilty of torture or ill-treatment ", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Step up efforts aimed at eliminating harmful cultural practices, which hamper the full respect for the human rights of women", - "values": [ - "4 - General action" - ] - }, - { - "text": "Enact legislation which would, in line with article 1 of the Convention against Torture, prevent and eliminate torture and combat impunity.", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Continue implementing the obligations under the international human rights treaties ratified by the Lao People's Democratic Republic", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Ratify CRPD, CPED and OP-CAT ", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Seek assistance from delegations that are materially capable of assisting Botswana in its endeavours with regard to treaty body reporting, human rights education and training, components of the national statistical system and the system to monitor development.", - "values": [ - "1 - Minimal action" - ] - }, - { - "text": "Intensify collective efforts to ensure that scheduled elections are conducted as smoothly as possible, in spite of ongoing recovery efforts utilizing its renowned resilience", - "values": [ - "4 - General action" - ] - }, - { - "text": "Continue working with its development partners to invest in the education sector", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Strengthen efforts to achieve full equality in the enjoyment of all human rights by women, including by elaborating and implementing strategies to encourage greater participation by women in Turkey's political and economic life ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Continue considering the incorporation of a gender perspective into policies and programmes, in accordance with what was recommended by the Committee on the Elimination of Discrimination against Women", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Adopt practical measures to promote equal representation of men and women in elected public office and to guarantee equal remuneration and satisfactory working conditions to all citizens", - "values": [ - "4 - General action" - ] - }, - { - "text": "Proceed with implementing development projects, particularly those related to clean drinking water and health care", - "values": [ - "4 - General action" - ] - }, - { - "text": "Continue to build policy dialogue between the Government and independent civil society organizations.", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Provide more direct social assistance and relocation support to victims of trafficking, enhance efforts to prevent the factors behind continued trafficking and ensure effective prosecution of the perpetrators", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Continue programmes aimed at improving the level of education through financial support, especially for girls belonging to poor families ", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Continue efforts to eradicate and address cases of violence against women and child abuse", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Issue a standing invitation to the United Nations human rights special procedures", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Take further steps to ensure equality with respect to all aspects of employment and occupation", - "values": [ - "4 - General action" - ] - }, - { - "text": "Intensify efforts to develop poverty alleviation programmes with specific attention to empower marginalised and vulnerable groups within the society, such as children, women and the elderly ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Rescind the amendment of law 105b that allows for civilians to be prosecuted in military courts if accused of terrorism", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Adopt measures to address the problems of exploitation and domestic trafficking of children and ensure that all cases of trafficking are subject to proper investigation", - "values": [ - "4 - General action" - ] - }, - { - "text": "Reinforce anti-corruption laws", - "values": [ - "4 - General action" - ] - }, - { - "text": "Legally recognize marriage between persons of the same sex", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Continue to pay special attention to the protection of the rights of the most vulnerable groups such as persons with disabilities ", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Continue to strengthen measures to promote the equal rights of women and to counter discrimination.", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Take measures to ensure that the children of undocumented migrants are provided with access to medical services", - "values": [ - "4 - General action" - ] - }, - { - "text": "Continue its efforts to ensure school attendance and for the provision of housing, food and health services to vulnerable children ", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Make further efforts to address the problem of unemployment", - "values": [ - "4 - General action" - ] - }, - { - "text": "Adhere to the principles of the Convention on the Protection of the Rights of All Migrant Workers and Members of Their Families, and consider favourably its eventual ratification ", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Place the responsibility for all unaccompanied minor asylum seekers up to the age of 18 years with the Child Welfare Services ", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Take the necessary measures to protect journalists against intimidation, violence, censorship and abusive convictions, and have published and applied the new media law adopted by the Parliament.", - "values": [ - "4 - General action" - ] - }, - { - "text": "Take steps to protect the rights and regularize the citizenship status of all individuals, including those who formerly held temporary identification cards", - "values": [ - "4 - General action" - ] - }, - { - "text": "Ratify the Optional Protocol to the Convention against Torture and Other Cruel, Inhuman or Degrading Treatment or Punishment without delay", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Consider ratifying the Convention on the Rights of Persons with Disabilities and continue its efforts to implement the National Action Plan on Persons with Disabilities 2014-2018", - "values": [ - "3 - Considering action" - ] - }, - { - "text": "Make appropriate and transparent budget allocations for poverty alleviation, primary education, basic health care and sanitation, to realize fundamental economic and social rights, particularly in respect of the poorest, and fully account for all social spending", - "values": [ - "4 - General action" - ] - }, - { - "text": "Take special measures to guarantee Roma children equal access to inclusive quality education and ensure full participation of the Roma themselves in these efforts", - "values": [ - "4 - General action" - ] - }, - { - "text": "Continue to support the implementation of the socioeconomic development plan aimed at the eradication of poverty in the country ", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Continue to strengthen its ongoing efforts in the education system, to ensure quality universal primary and secondary education for all children", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Conduct regular monitoring of the situation related to trafficking in persons to effectively combat it", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Guarantee freedom of expression and free access of citizens to public information", - "values": [ - "4 - General action" - ] - }, - { - "text": "Discard efforts to narrow down and legally entrench a restrictive definition of family based exclusively on heterosexual marriage that could be considered discriminatory, an inclusive concept of partnership, also for same sex couples, would be a positive step", - "values": [ - "4 - General action" - ] - }, - { - "text": "Allocate financial and human resources to the implementation of the Gender Equality Act and amend all laws that discriminate against women, in particular the Citizen Act", - "values": [ - "4 - General action" - ] - }, - { - "text": "Increase protection for women victims of domestic violence by implementing the existing legislation, investigating and punishing the perpetrators, creating a sufficient number of shelters and providing police protection", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Continue its efforts to combat racial discrimination, xenophobia and racism", - "values": [ - "4 - General action" - ] - }, - { - "text": "Continue cooperation with ILO on the ratification of the fundamental labour conventions", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Take all necessary measures to prevent discrimination in hiring in the active population, since access to employment on the part of minorities is limited", - "values": [ - "4 - General action" - ] - }, - { - "text": "Adopt specific legislation prohibiting discrimination against women on the basis of gender or marital status ", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Take measures to improve the efficiency of existing legislation in the area of trafficking in persons ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Continue its efforts to strengthen the fight against the discriminations to which women are victims", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Further strengthen its efforts to address minority issues with the aim of overcoming the remaining obstacles to the full implementation of the human rights of minorities as one of the most vulnerable groups within society ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Consider the possibility of ratifying the Optional Protocol to the Convention on the Elimination of All Forms of Discrimination against Women, and the Rome Statute", - "values": [ - "3 - Considering action" - ] - }, - { - "text": "Fight all forms of racism, xenophobia and anti-Semitism and ensure that tolerance and intercultural understanding are promoted and conveyed to the public, including by political figures, and develop, in close consultation with national minority representatives, a comprehensive strategy for the promotion of social cohesion with respect for diversity", - "values": [ - "4 - General action" - ] - }, - { - "text": "Promptly and impartially investigate all allegations of torture and ill-treatment and strictly hold perpetrators accountable", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Make further efforts to protect children against all risks of sexual or economic exploitation", - "values": [ - "4 - General action" - ] - }, - { - "text": "Stimulate those citizens with social influence, such as political leaders, journalists, artists and social elements with high visibility to increase society's awareness of human rights.", - "values": [ - "4 - General action" - ] - }, - { - "text": "Take measures to introduce a de jure moratorium on executions and take concrete steps towards the abolition of the death penalty", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Ensure that civil society is involved in the implementation of the outcome of the review.", - "values": [ - "4 - General action" - ] - }, - { - "text": "Take legislative measures to prohibit all forms of FGM and ensure that perpetrators of this harmful practice are brought to justice ", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Combat discrimination of any kind against persons with disabilities, and take specific measures to improve the standard of living for such persons", - "values": [ - "4 - General action" - ] - }, - { - "text": "Establish a moratorium on executions with a view to abolishing the death penalty and to commute, without delay, all death sentences to terms of imprisonment", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "It also commits to maintain its timely reporting and cooperation with all human rights mechanisms, including the UPR. Improving the participation of civil society organisations in this process will remain a key priority. ", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Amend section 5 of the Sexual Offences Act 2009 in order to ensure that sexual intercourse by a husband with his wife without her consent is a criminal offence in all circumstances", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Adopt a comprehensive Anti-Discrimination Act to protect the human rights of lesbian, gay, bisexual, transgender and intersex individuals and other marginalized groups", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Continue efforts to guarantee the fullest possible enjoyment of economic, social and cultural rights, so that it can continue to make headway towards ensuring the fulfilment of the Millennium Development Goals", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Hasten the process of establishing the national human rights commission in line with the proposal of the 2014 draft Constitution", - "values": [ - "4 - General action" - ] - }, - { - "text": "Meet provisions of international humanitarian law, particularly the Fourth Geneva Convention.", - "values": [ - "4 - General action" - ] - }, - { - "text": "Take further legislative and practical measures to allow ethnic minorities to preserve their cultural identity, to fully exercise their human rights and to ensure their participation in decision-making, in accordance with the Chinese Constitution", - "values": [ - "4 - General action" - ] - }, - { - "text": "Seek technical assistance and capacity-building support from the Office of the High Commissioner for Human Rights to facilitate the timely submission of reports to treaty bodies, as well as in the areas of human rights training and education ", - "values": [ - "1 - Minimal action" - ] - }, - { - "text": "Establish a national human rights institution in conformity with the Paris Principles on the status of national institutions for the promotion and protection of human rights", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Take relevant measures in order to prevent the possible negative impacts of the austerity measures on the human rights situation for the most vulnerable groups, particularly children ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Reduce overcrowding and improve physical situation of prisoners and administrative management in prisons ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Extend a standing invitation to the special procedures of the Human Rights Council ", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Ensure the free participation of representatives of all political parties, including the National League of Democracy as well as other non parliamentary political parties, representatives of ethnic groups and other relevant stakeholders across society in an inclusive political process ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Take appropriate measures to ensure the implementation of the plan of activities to achieve gender equality in Montenegro for the period 2008-2012.", - "values": [ - "4 - General action" - ] - }, - { - "text": "Consolidate the legal framework for the promotion and protection of human rights by ratifying the International Covenant on Economic, Social and Cultural Rights (ICESCR) and International Convention on the Protection of the Rights of All Migrant Workers and Members of Their Families (ICRMW)", - "values": [ - "4 - General action" - ] - }, - { - "text": "Set up adequate mechanisms that allow for the development of legislation and support prevention and protection policies for children in all fields", - "values": [ - "4 - General action" - ] - }, - { - "text": "Provide further information with regard to efforts to reduce poverty among children in half by 2010.", - "values": [ - "4 - General action" - ] - }, - { - "text": "Continue the consultation process with all concerned parties to elaborate a new draft of the law against trafficking in persons", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Issue a standing invitation to all United Nations human rights special procedures", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Immediately ensure the right of return to all Palestinian refugees in line with international law and relevant resolutions, in particular resolution 194", - "values": [ - "4 - General action" - ] - }, - { - "text": "Encourage Liberia, with the support of relevant United Nations agencies, particularly the UNHCR, to make greater efforts in finding durable solutions for refugees", - "values": [ - "4 - General action" - ] - }, - { - "text": "Redouble efforts aimed at fully implementing the Action Programme to Eliminate Child labour in Namibia 2008-2012 ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Eliminate the criminalization of homosexuality and adopt urgent measures to amend the Criminal Code to this effect ", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Introduce legal and other measures to reduce maternal mortality and morbidity stemming from unsafe abortions", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Start consultations with its national human rights institutions to request accreditation from the International Coordinating Committee", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Improve access to education for disadvantaged people ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Take steps to fully implement the Law against Discrimination by introducing additional enabling legislation and strengthening the institution of the Human Rights and Freedoms Ombudsman", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Continue its efforts to preserve freedom of religion and belief and to ensure respect for all religions under the umbrella of law ", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Ensure the birth registration of all children in French Guyana", - "values": [ - "4 - General action" - ] - }, - { - "text": "Develop transparent and effective mechanisms to prevent violence, particularly violence against women and children, and make sure that such mechanisms are supported by sufficient capacity and resources to address the problem", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Take appropriate measures to protect the most vulnerable children, particularly girls, disabled children and rural children, and ensure effective protection of children against sexual abuse, all forms of violence and exploitation, trafficking and child labour.", - "values": [ - "4 - General action" - ] - }, - { - "text": "Ensure access to an independent lawyer to all persons deprived of their liberty ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Continue efforts in poverty eradication through effective implementation of its Strategic Framework for Poverty Eradication as well as the National Strategy on Food Security and the Strategy for the Rural Sector", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Strengthen its efforts to effectively enforce the criminalization of female genital mutilation, as well as the implementation of a national plan of action against female genital mutilation ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Intensify measures in comprehensively addressing the problem of human trafficking and violence against women, including by, among others, implementing social, educational and legal safeguards, public awareness campaigns to sensitize the community and to continue building law enforcement capabilities and capacities", - "values": [ - "4 - General action" - ] - }, - { - "text": "Introduce comprehensive and continuous public education, awareness-raising and social mobilization programmes on the harmful effects of corporal punishment", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Consider ratifying the international human rights conventions to which the Central African Republic has not yet been a party", - "values": [ - "3 - Considering action" - ] - }, - { - "text": "Enact measures concerning women's and children's rights, with the view to addressing the current problems in these fields", - "values": [ - "4 - General action" - ] - }, - { - "text": "Ensure all relevant domestic laws include disability as a prohibited ground of discrimination ", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Continue efforts to reduce pretrial detention by expanding, at the national level, the rehabilitation programme Coetivy", - "values": [ - "4 - General action" - ] - }, - { - "text": "Develop credit mechanisms and programmes to facilitate the acquisition of housing", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Incorporate the provisions of the Convention on the Rights on the Child in the national legal order", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Take into consideration the recommendations from the Office of the Ombudsman, as well as provide it with enough resources to operate", - "values": [ - "4 - General action" - ] - }, - { - "text": "Ratify the International Convention for the Protection of All Persons from Enforced Disappearances ", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Adopt legislation and promote measures to prevent discrimination based on sexual orientation and gender identity", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Take all appropriate measures to end domestic violence", - "values": [ - "4 - General action" - ] - }, - { - "text": "Deploy further efforts in order to prevent and punish violence against women and abuses, in particular those related to domestic violence", - "values": [ - "4 - General action" - ] - }, - { - "text": "Ratify the Second Optional Protocol to the International Covenant on Civil and Political Rights, aiming at the abolition of the death penalty.", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Study the possibility of ratifying the CRPD ", - "values": [ - "3 - Considering action" - ] - }, - { - "text": "Consider the establishment of a national human rights institution", - "values": [ - "3 - Considering action" - ] - }, - { - "text": "Protect victims of trafficking in persons by allocating additional resources and services in all cantons, and prosecute and punish perpetrators according to the severity of their crime", - "values": [ - "4 - General action" - ] - }, - { - "text": "Establish an institutional mechanism to combat discrimination and violence against women and children, particularly children from minority peoples", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Ensure that the rights of women and ethnic minorities are not undermined as a result of the recently introduced set of Protection of Race and Religion laws", - "values": [ - "4 - General action" - ] - }, - { - "text": "Ensure that Human rights violations by police and prison officials, particularly cases of torture and other ill-treatment, are investigated and do not go unpunished ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Take all necessary steps to ensure that torture and other inhuman and degrading treatment of civilians do not occur", - "values": [ - "4 - General action" - ] - }, - { - "text": "Strengthen actions aimed at eliminating discrimination against women, in particular by guaranteeing effective access to education to girls and pregnant teenagers", - "values": [ - "4 - General action" - ] - }, - { - "text": "Adopt a penal code, consistent with international human rights standards", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Accede to the International Convention on the Protection of the Rights of All Migrant Workers and Members of Their Families, and the Convention against Discrimination in Education ", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Step up efforts to overcome social scourges, including the consumption of drugs ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Strengthen legislation to protect children from all forms of violence", - "values": [ - "4 - General action" - ] - }, - { - "text": "Take further measures to prevent discrimination on the basis of ethnicity ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Allow for greater freedom of expression for members of the press in advance of the elections, including political reporting, granting equal media access to and coverage of oppositions candidates.", - "values": [ - "4 - General action" - ] - }, - { - "text": "Continue efforts to eliminate all obstacles standing in the way of justice.", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Increase the provision of resources for education establishments in remote and rural areas, as well as regions inhabited by ethnic minorities", - "values": [ - "4 - General action" - ] - }, - { - "text": "Amend the Constitution to provide guarantee for freedom of religion in Myanmar, in line with Article 18 of the Universal Declaration of Human Rights", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Eliminate all forced labour and hazardous child labour and implement recommendations of the ILO supervisory bodies", - "values": [ - "4 - General action" - ] - }, - { - "text": "Pursue its efforts in order to curb the violence against women.", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Cooperate fully with the special procedures and respond positively to the outstanding requests for visits by mandate-holders ", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Ensure that adequate status is accorded to minority languages", - "values": [ - "4 - General action" - ] - }, - { - "text": "Pay attention to the development of infrastructure in remote regions.", - "values": [ - "4 - General action" - ] - }, - { - "text": "Ensure that human rights and fundamental freedoms enshrined in its Constitution are protected in the fight against terrorism and the national security plan and actions, pay particular attention to safeguarding the rights and safety of minorities and marginalized groups, as well as human rights defenders, refugees and stateless persons, address root causes of insecurity and radicalization and point out the need for a comprehensive counter-radicalization strategy", - "values": [ - "4 - General action" - ] - }, - { - "text": "Reinforce measures aiming at the protection of the rights of migrants and asylum seekers and the improvement of their conditions", - "values": [ - "4 - General action" - ] - }, - { - "text": "Draft and implement a penal code and amend the Law of Criminal Procedure to comply with all its obligations under international law, including prohibitions on judicially sanctioned corporal punishment and the execution of juvenile offenders", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Develop and implement a national strategy to combat human trafficking, particularly of women and girls, with enhanced support services for victims", - "values": [ - "4 - General action" - ] - }, - { - "text": "Remove all obstacles to freedom of expression and movement against human rights defenders, including all travel bans", - "values": [ - "4 - General action" - ] - }, - { - "text": "Continue to empower women through its micro credit programme and intensify efforts to support rural women with access to water ", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Adopt measures to condemn racist rhetoric and hate speech, and apply specific measures on the integration and inclusion of migrants aimed at the population at large", - "values": [ - "4 - General action" - ] - }, - { - "text": "Adopt a comprehensive national action plan to combat racism and discrimination", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Strengthen cooperation with treaty bodies and submit overdue reports", - "values": [ - "4 - General action" - ] - }, - { - "text": "Implement a comprehensive legal and policy framework to end practices which are discriminatory and lead to violence against women and girls, including witchcraft killings, rape, domestic violence and practices related to customary ownership and inheritance of land ", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Further strengthen the monitoring and evaluation efforts on women's empowerment and child protection", - "values": [ - "4 - General action" - ] - }, - { - "text": "Consider ratifying ILO Convention No. 169 within a reasonable timeframe ", - "values": [ - "3 - Considering action" - ] - }, - { - "text": "Take measures to end impunity for acts of sexual violence against women and girls", - "values": [ - "4 - General action" - ] - }, - { - "text": "Improve conditions of reception and detention of refugees and migrants in accordance with international standards", - "values": [ - "4 - General action" - ] - }, - { - "text": "Ratify the Council of Europe Convention on Preventing and Combating Violence against Women and Domestic Violence in a timely manner", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Criminalize all forms of human trafficking of children by enacting the strict anti-trafficking legislation", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Implement the reforms necessary to improve the effectiveness of the justice system in order to guarantee the right to a fair trial, in particular to guarantee court access for and adequate court utilization by linguistic minorities", - "values": [ - "4 - General action" - ] - }, - { - "text": "Undertake a comprehensive reform of the institutions and judicial systems, including revision of the national criminal law and reform of the judiciary, with a view to complying with the international instruments to which it is a State party, including the International Covenant on Civil and Political Rights ICCPR ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Consider ratifying the Optional Protocol to the Convention on the Rights of Persons with Disabilities", - "values": [ - "3 - Considering action" - ] - }, - { - "text": "Further work on political, economic and social empowerment of women ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Consider reviewing its Aliens Act in favour of temporary residents on humanitarian grounds", - "values": [ - "3 - Considering action" - ] - }, - { - "text": "Cooperate with the High Commissioner for Human Rights, treaty bodies and special procedures mandate holders ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Continue its efforts to ensure that the Equality and Anti-Discrimination Ombudsperson's office has adequate resources to promote its work ", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Pursue efforts to combat extreme poverty, notably within the framework of the Patriotic Agenda 2025", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Ensure and protect freedom of religion, both in legislation and in practice, and take measures to prevent discrimination in practice against persons from all religions and beliefs.", - "values": [ - "4 - General action" - ] - }, - { - "text": "Create jobs in order to reduce unemployment amongst its youth", - "values": [ - "4 - General action" - ] - }, - { - "text": "Take necessary measures to avoid any use of detention of asylum seekers during the process of determining their refugee status ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Drive forward legislative reforms and adopt administrative measures to eradicate torture in law and in practice", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Develop a national strategy to tackle modern slavery, including ratification of the 2014 ILO protocol to the Forced Labour Convention, and increased efforts to protect rural workers and women at risk of trafficking", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Ensure sufficient resources for effective functioning of its national preventive mechanism provided for in the Optional Protocol to the Convention against Torture and Other Cruel, Inhuman or Degrading Treatment or Punishment OP-CAT and further strengthen mechanisms for independent investigation of alleged cases of torture and for effective access of victims to remedies with special attention to protection of women, children and persons of minority sexual orientation or gender identity ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Clear the backlog of responses to thematic questionnaires from special procedures ", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Make progress in the effective realization of human rights to safe drinking water and sanitation through increasing the public water infrastructures, particularly in rural areas and in informal urban settlements, through the adequate training and awareness-raising on sanitation of the local communities who benefit from these services", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Amend its domestic laws to ensure that all people in the country are able to enjoy their fundamental human rights ", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Ensure effective birth registration of all children, raise the age of criminal responsibility in compliance with CRC and adopt specific measures to strengthen protection of human rights of children from vulnerable groups, such as children in detention, internally displaced children and children of refugees", - "values": [ - "4 - General action" - ] - }, - { - "text": "Ensure the effective implementation of policies and operations aimed at dismantling trafficking networks and smuggling of migrants", - "values": [ - "4 - General action" - ] - }, - { - "text": "Take concrete and effective measures to ensure that food, medicine and other humanitarian relief distribution at Government depots takes place without reference to partisan political considerations ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Lift the reservations of the Federated States of Micronesia to the Convention on the Elimination of All Forms of Discrimination against Women ", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Consider the establishment of a moratorium on the use of death penalty with a view to its abolition", - "values": [ - "3 - Considering action" - ] - }, - { - "text": "Guarantee the protection of fundamental human rights and freedoms of its citizens by guaranteeing the independence of the judicial bodies, impartiality in decision-making, respecting defendants' right to fair trial, ensuring access to free legal aid and restoring citizens' trust in the justice system by fighting impunity ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Continue harmonizing its domestic legislation with its international human rights obligations ", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Use consultations to ensure that a truth and reconciliation commission and a special tribunal be established as soon as possible.", - "values": [ - "4 - General action" - ] - }, - { - "text": "Become party without delay to the Convention on the Rights of Persons with Disabilities", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Strengthen the process of educational reform", - "values": [ - "4 - General action" - ] - }, - { - "text": "Establish a national human rights programme which fully incorporates international instruments to which Hungary is a party ", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Submit its second periodic national report to the Committee on Economic, Social and Cultural Rights, which has been due since 2006", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Enhance the role of the Ombudsman and take measures providing for the effective implementation of its functions as a national preventive mechanism in accordance with the Optional Protocol to the Convention against Torture and Other Cruel, Inhuman or Degrading Treatment or Punishment ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Cooperate with the human rights mechanisms in particular the Special Rapporteur on the situation of human rights in Eritrea ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Continue to work with all neighbouring countries to find a lasting solution to illegal and economic migrants through the bilateral process, based on agreements already reached between the Governments of Bhutan and Nepal", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Work with positive interaction with regard to the requests to recover stolen assets, and extradite those involved in the violations of human rights and corruption cases", - "values": [ - "4 - General action" - ] - }, - { - "text": "Continue to implement an early warning system, within the framework of the work of the Ombudsman's Office, in order to prevent different human rights violations ", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Take necessary measures to ensure that all persons detained by the police are fully informed of their fundamental rights from the very outset of their deprivation of liberty ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Ensure the rights of migrant workers, especially in the sector of agriculture where the use of child labourers is a common practice", - "values": [ - "4 - General action" - ] - }, - { - "text": "Ratify the Optional Protocol [OP-CSC-SC]", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Ratify international instruments in the prevention of trafficking in persons", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Ratify or accede to the Rome Statute of the ICC, the International Convention for the Protection of All Persons from Enforced Disappearance (CPED), the Optional Protocol to CRC on the involvement of children in armed conflict (OP-CRC-AC)", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Follow up to the recommendations formulated by the United Nations High Commissioner for Human Rights in March 2010 aimed at establishing a national plan of action for human rights, and by the Committee against Torture in 2009 with a view to establishing an independent body to investigate allegations of ill treatment and torture", - "values": [ - "4 - General action" - ] - }, - { - "text": "Italy abides by its commitment towards the implementation of the constitutional principle of the right to freedom of opinion and expression, including in the press and media sectors, by ensuring pluralism, the widest variety of information and views, including by national, regional and local newspapers, magazines, radio and TV channels, web-based information, and more generally the independence of the media.", - "values": [ - "4 - General action" - ] - }, - { - "text": "Continue strengthening protective measures and legal rights for women and children, including by giving women equal status to men in matters of divorce, inheritance and child custody ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Strengthen its anti-corruption policy.", - "values": [ - "4 - General action" - ] - }, - { - "text": "Encourage the efforts taken for the creation of an independent mechanism for the monitoring of the application of the Convention on the Rights of Persons with Disabilities", - "values": [ - "4 - General action" - ] - }, - { - "text": "Undertake the appropriate measures to prevent and combat domestic violence and sexual violence committed by military personnel and police officers against young girls and adolescents", - "values": [ - "4 - General action" - ] - }, - { - "text": "Seek, in cooperation with relevant international organizations and stakeholders, to include human rights education in school curricula, as appropriate ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Examine the possibilities for developing a legislative framework for the issue of compensation to war victims and a set of measures to overcome the problem of internally displaced persons ", - "values": [ - "3 - Considering action" - ] - }, - { - "text": "Establish a special body to combat racism and discrimination based on race, ethnicity, nationality, language and religion", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Adopt specific measures to combat discrimination against children with disabilities in accessing an inclusive education", - "values": [ - "4 - General action" - ] - }, - { - "text": "Take effective measures to combat violence against women and also the trafficking in persons", - "values": [ - "4 - General action" - ] - }, - { - "text": "Fulfil its obligations, including under the Convention on the Prohibition of the Development, Production, Stockpiling and Use of Chemical Weapons and on Their Destruction and international humanitarian law, and cease all deliberate, indiscriminate and disproportionate attacks against civilians", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Continue implementing training programmes of public officers within the framework of the revised National Action Plan against Trafficking of Human Beings ", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Strengthen measures to address overcrowding in detention centres, including through increased resort to alternative forms of punishment and adopt measures to reduce the use of pre-trial detention ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Secure the necessary resources for the effective implementation of the law against abuse of women, in particular through the strengthening of the special police force to combat gender-based violence (FELCV) so that it can fulfil its mandate", - "values": [ - "4 - General action" - ] - }, - { - "text": "Address the large wage gap between men and women and prohibit the termination of employment of women upon their return from maternity leave", - "values": [ - "4 - General action" - ] - }, - { - "text": "Guarantee appropriate funding for the effective and efficient implementation of the judiciary reform and its related Action Plan", - "values": [ - "4 - General action" - ] - }, - { - "text": "Continue its efforts to strengthen the judicial system through, inter alia, technical training and development assistance ", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Further strengthen measures to protect human rights defenders", - "values": [ - "4 - General action" - ] - }, - { - "text": "Maximize its efforts to resolve the cases of statelessness, in coordination with UNHCR and with the support, among others, of the United Nations and Inter-American multilateral systems, strengthening a national civil registration system, so as to ensure that all the inhabitants of the Dominican Republic enjoy their rights ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Closely cooperate with the international community in implementing the recommendations by the LLRC and the National Action Plan for the Promotion and Protection of Human Rights in the context of promoting reconciliation and accountability", - "values": [ - "4 - General action" - ] - }, - { - "text": "Pursue its efforts to providing women and children with all their rights", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Allow for independent investigations into the circumstances surrounding the deaths of Oswaldo Paya and Harold Cepero ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Harmonize efforts and coordinate the roles and tasks of stakeholders involved in managing access to drinking water and sanitation to ensure provision of drinking water, in particular for rural populations ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Align policies to ensure access to land and water for pastoralists with the African Union Framework on Pastoralism", - "values": [ - "4 - General action" - ] - }, - { - "text": "Take measures to ensure that journalists exercise their profession freely and fight against impunity of the perpetrators of violence against them", - "values": [ - "4 - General action" - ] - }, - { - "text": "Confirm in deed the status of standing invitation to the Special Procedures, in particular by inviting the Special Rapporteurs on the rights of migrant workers, on trafficking in persons, particularly women and children, as well as on the sale of children ", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Withdraw its reservations to article 10, paragraph 1, of CRC ", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Develop initiatives aimed at ensuring access to the judiciary by indigenous persons", - "values": [ - "4 - General action" - ] - }, - { - "text": "Continue to expand the opportunities for women's political and public participation, employment and education", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Revoke the blanket ban on prisoners\u2019 exercise of their right to vote, in order to comply with the rulings of international courts on this matter", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "A policy based on unstinting efforts to raise awareness of human rights. ", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Carry out appropriate actions in order to harmonize its internal legislation with the Convention on the Rights of Persons with Disabilities", - "values": [ - "4 - General action" - ] - }, - { - "text": "Consider ratification of the Council of Europe Convention on Preventing and Combating Violence against Women and Domestic Violence (the Istanbul Convention)", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Recommended the accession to the ICCPR, ICESCR", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Develop an action plan to ensure that journalists are able to conduct their work freely and without fear of retribution ", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Continue pursuing initiatives aimed at improving the educational system with a view to further developing technical and vocational education and training", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Ratify and/or accede promptly to, as appropriate, the three Optional Protocol to the Convention on the Rights of the Child", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Conduct public awareness campaigns in the media to fight against drug consumption, abusive consumption of alcohol and suicide among young women and girls", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Consider the legal abolition of death penalty", - "values": [ - "3 - Considering action" - ] - }, - { - "text": "Speed up the adoption of the family law and take the necessary measures for its enforcement", - "values": [ - "4 - General action" - ] - }, - { - "text": "Sign and ratify the International Convention for the Protection of All Persons from Enforced Disappearance", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Abolish forced treatment and protect persons with disabilities in psychiatric hospitals from violence, abuse and ill-treatment", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Consider ratifying the Optional Protocol to the International Covenant on Economic, Social and Cultural Rights", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Accelerate efforts, under the Organization Act No. 1-2004 on comprehensive protection measures against gender-based violence, to facilitate access to medical and legal services for women in distress across Spain, particularly within immigrant communities ", - "values": [ - "4 - General action" - ] - }, - { - "text": "That the Government of South Sudan and all parties to the conflict immediately end the gross violations of human rights and serious violations of international humanitarian law, including targeted attacks on civilians, rape and sexual and gender-based violence, and arbitrary detention and abduction, and commit to and implement a political solution to the conflict", - "values": [ - "4 - General action" - ] - }, - { - "text": "Expedite the ratification of the Rome Statute of the International Criminal Court", - "values": [ - "4 - General action" - ] - }, - { - "text": "Update the council periodically about its efforts in combating terrorism", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Comply with the obligations of an occupying power, in line with international humanitarian law, providing water and sanitation to the occupied population ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Consider ratifying the Optional Protocol to the Convention on the Rights of Persons with Disabilities.", - "values": [ - "3 - Considering action" - ] - }, - { - "text": "Continue efforts towards improving literacy and reducing poverty through education and skills enhancement programs under the National Development Plan to 2030", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Strengthen the Women's Affairs Department located within the Ministry of Labour and Home Affairs by providing it with authority, decision-making power, and human and financial resources", - "values": [ - "4 - General action" - ] - }, - { - "text": "Continue to improve the procedures for prosecuting and sanctioning those responsible for acts of violence against women, as well as guaranteeing constant monitoring of the implementation of the national plan to eradicate gender-based violence against children", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Continue efforts for the advancement of women and their participation in public life, and fight violence against women", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Increase the protection of ethnic and religious minorities as well as women, human rights defenders and journalists", - "values": [ - "4 - General action" - ] - }, - { - "text": "Criminalize rape in marriage ", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Abolish the death penalty in domestic law for all crimes, adopt an immediate official moratorium on executions and commute without delay all death sentences into prison sentences", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Ensure the freedom of religious minorities, in particular Muslims, in exercising their religious practices, and respect their right to choose the language of their own, used in their religious scripts, and also respect their right to financial supports and services provided by their brothers of faith from other countries", - "values": [ - "4 - General action" - ] - }, - { - "text": "Ensure access to health insurance and high-quality medication to low income persons", - "values": [ - "4 - General action" - ] - }, - { - "text": "Ensure that asylum-seekers and irregular migrants are treated according to Greece's human rights obligations and strengthen all efforts to implement the national action plan on asylum reform and migration management ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Take strong measures to prevent child labour and make sure that children who are employed as domestic help, the so-called "restaveks", can go to school", - "values": [ - "4 - General action" - ] - }, - { - "text": "Abolish legislation discriminating on the basis of sexual orientation, in order to guarantee the same rights to all citizens, including LGBT persons ", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Implement effectively the Green Scheme, the San Development, Land distribution, the Mass Housing Programme, Water Supply and Sanitation, Safe drinking water, and Equipment Aid Scheme to SMEs", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Strengthen the national mechanisms to improve the protection of the rights of children", - "values": [ - "4 - General action" - ] - }, - { - "text": "Pursue ongoing cooperation with human rights mechanisms", - "values": [ - "4 - General action" - ] - }, - { - "text": "Continue its efforts in order to re-establish the functioning of a national human rights institution in accordance with the Paris Principles ", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Eliminate discrimination affecting freedom of religion", - "values": [ - "4 - General action" - ] - }, - { - "text": "Recognize the right to Kuwaiti nationality of those persons who have been left stateless due to the nationality law in 1959, and provide for the same enjoyment of their human rights as to other citizens", - "values": [ - "4 - General action" - ] - }, - { - "text": "Ratify the OP-CEDAW", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Recommended that the authorities take all necessary measures to protect journalists who have been victims of intimidation, and identify and bring the perpetrators before the courts.", - "values": [ - "4 - General action" - ] - }, - { - "text": "Make the national Human Rights Commission operational", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Continue with the efforts related to the protection of the rights of people with disabilities", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Continue to develop and implement successful climate change mitigation and adaptation policies and practices", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Strengthen its efforts to draw up comprehensive strategies and action plans to eradicate trafficking in persons.", - "values": [ - "4 - General action" - ] - }, - { - "text": "Continue its efforts to fight against trafficking in persons and protect the rights of migrants", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Accelerate the process to adopt the Gender Equality Bill in order to strengthen its efforts to address discrimination against women", - "values": [ - "4 - General action" - ] - }, - { - "text": "Take measures to ensure the full harmonization of the provisions of the Optional Protocol to the Convention on the Rights of the Child on the involvement of children in armed conflict", - "values": [ - "4 - General action" - ] - }, - { - "text": "Consider acceding to the main human rights instruments to which it is not a party, in particular the Convention against Torture and Other Cruel, Inhuman or Degrading Treatment or Punishment and its Optional Protocol ", - "values": [ - "3 - Considering action" - ] - }, - { - "text": "Continue its efforts of reform in the criminal justice system, from the police to the courts, through the prison administration", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Criminalize gender-based violence in all its forms, including the psychological ones", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Address the concerns expressed by two treaty bodies relating to minority rights and also labour rights, made by the Human Rights Committee and the Committee on Economic, Social and Cultural Rights", - "values": [ - "4 - General action" - ] - }, - { - "text": "Strengthen its efforts to promote food security and eradicate all forms of malnutrition, and ensure quality education to all children through inclusive policies", - "values": [ - "1 - Minimal action" - ] - }, - { - "text": "Accelerate significantly asylum procedures and ensure that they respect the principles of the rule of law", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Put an end to the violations of the rights to peaceful assembly and freedom of expression, torture and other ill-treatment ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Implement the recommendations of its Constitutional Reform Committee and establish separate legislation to prohibit discrimination on the basis of sexual orientation", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Give more attention to asylum-seekers and unaccompanied minors in cases of family reunion ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Consider including, in the request to establish a country office of OHCHR, a request for technical assistance and cooperation with a view to the development of a comprehensive strategy, with the participation of civil society, to ensure respect for and the defence of human rights", - "values": [ - "3 - Considering action" - ] - }, - { - "text": "Take all necessary measures to reduce poverty", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Encourage Viet Nam to continue to improve conditions of worship for all, enhance exchange of laws, and disseminate values of tolerance and peace with a view to developing principles of interfaith dialogue ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Further strengthen its efforts against the long-standing issue of widespread impunity", - "values": [ - "4 - General action" - ] - }, - { - "text": "Cooperate fully with special procedures mandate holders and UNAMID", - "values": [ - "4 - General action" - ] - }, - { - "text": "Lift its reservations to articles 9 and 29 of CEDAW and its reservation to CRC ", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Proceed to ratify ICPPED, signed in 2007", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Consolidate the fight against violence against women and against all forms of discrimination", - "values": [ - "4 - General action" - ] - }, - { - "text": "Continue the increased respect of the rights of lesbian, gay, bisexual and transgender people and ensure the approval of an inclusive Family Code respectful of the right to gender identity and sexual orientation ", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Improve conditions in all prisons and other detention facilities to ensure compliance with international standards, including the UN Standard Minimum Rules for the Treatment of Prisoners and further effectively address the issue of prison overcrowding", - "values": [ - "4 - General action" - ] - }, - { - "text": "Ratify CEDAW and the Convention against Torture and Other Cruel, Inhuman or Degrading Treatment (CAT)", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Continue its efforts to improve legal and institutional reform to ensure that an effective system for the administration of justice and the provision of access to justice are put in place", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Record and document cases of trafficking in women and children as well as exploitation of migrant women and girls in prostitution, and share the information with other countries in the region to facilitate greater cooperation in combating this problem.", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Submit overdue reports to the relevant United Nations treaty bodies", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Grant comprehensive support to the institute of family", - "values": [ - "4 - General action" - ] - }, - { - "text": "Take necessary measures to improve prison conditions.", - "values": [ - "4 - General action" - ] - }, - { - "text": "Continue and strengthen the promotion of the rights of migrants residing in the United Kingdom", - "values": [ - "4 - General action" - ] - }, - { - "text": "Amend legislation in the area of adoption of children in order to better ensure the protection of the rights of children ", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Make combating discrimination against vulnerable girls a national priority and adopt a comprehensive strategy to eliminate discrimination on any grounds against all vulnerable groups, as recommended by the Committee on the Rights of the Child ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Recommended the declaration of a moratorium on the death penalty as a first step towards its abolition, in compliance with General Assembly resolution 62-149.", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Ratify the Second Optional Protocol to ICCPR aiming at the abolition of the death penalty ", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Continue the dialogue with all parties to put an end to the Darfur crisis, which would enable all displaced persons and refugees to return to their home villages and towns ", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Intensify efforts to address impunity and incidence of trafficking and domestic violence as well as sexual abuse of women and girls including by strengthening law enforcement and judicial system, recruiting more women in the police and judiciary, and organizing more gender awareness campaigns within the Iraqi armed forces and police", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Continue to increase and diversify agricultural production by resorting to agricultural strategies, which could be based on models of production that have proven to be worthwhile ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Cooperate with the special procedures of the Human Rights Council and their missions.", - "values": [ - "4 - General action" - ] - }, - { - "text": "Adopt a formal moratorium on the application of the death penalty, while it awaits de jure abolition", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Urgently conduct new trials of all defendants who have been convicted in national safety courts", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Pay special attention to the recommendations of the Special Rapporteur on racism who cautioned that xenophobia needs to be addressed squarely to avoid right wing extremism", - "values": [ - "4 - General action" - ] - }, - { - "text": "Expedite the process of ratification of the International Convention on the Protection of the Rights of All Migrant Workers and Members of Their Families", - "values": [ - "4 - General action" - ] - }, - { - "text": "Strengthen the protection of people with disabilities, step up exchange of experience with other States in the field of protection of rights of children with disabilities", - "values": [ - "4 - General action" - ] - }, - { - "text": "Strengthen efforts to prevent and punish human trafficking, as well as to protect trafficking victims thorough effective assistance provision, elimination of their stigmatization and cooperation with countries of origin ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Intensify efforts to enhance women's participation in the decision-making process in both public and private sectors, in accordance with the progress achieved in the field of education of women ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Establish shelters and other facilities for victims of violence, including domestic and sexual violence, and ensure their adequate medical, psychological, legal and financial support, and combat domestic and sexual violence through, inter alia, public awareness campaigns, education, and the promotion of equal and non-discriminatory access to employment opportunities, health infrastructure, water and sanitation facilities, and justice ", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Continue its support for the Second Optional Protocol to the International Covenant on Civil and Political Rights", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Continue efforts to promote the rights of women, as well as the education and health of the Libyan people", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Continue with its programmes to promote and protect the rights of women, children, disabled persons and the elderly", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Take steps to strengthen legal aid programmes and speed up the scheduling of trial dates and provide for better living conditions in both prisons and detention centres ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Continue to prevent and eradicate human trafficking as part of the Bali Process on People Smuggling, Trafficking in Persons and Related Transnational Crime", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Work on renewing the National Strategy to empower women by integrating additional programmes and projects to strengthen the role of women as a main partner in the development process ", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Continue efforts to consolidate the national framework for protection of human rights", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Ratify, without making any reservation, the Agreement on the Privileges and Immunities of the International Criminal Court", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Become party to the Second Optional Protocol to the International Covenant on Civil and Political Rights ", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Ratify the International Covenant on Economic, Social and Cultural Rights and the International Covenant on Civil and Political Rights and other core international human rights treaties and conventions to which it is not yet party", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Intensify its efforts to alleviate the remaining obstacles to access to health care for pregnant women and mothers in order to decrease significantly the rate of maternal mortality", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Continue the promotion of sexual and reproductive rights of women and eliminate discriminatory practices, in conformity with the provisions of the Convention on the Elimination of All Forms of Discrimination against Women", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Establish an effective investigation mechanism concerning allegations of torture and ill-treatment that would ensure the conviction of perpetrators", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Take proactive and sustained measures to eliminate stereotypical attitudes about the roles and responsibilities of women and men, including through awareness-raising and educational campaigns directed at both women and men and the media", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Continue to work on strengthening access to health care services, particularly for vulnerable groups of society", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Consider accession to the remaining core international human rights instruments and withdrawing existing reservations to CEDAW and CRC ", - "values": [ - "3 - Considering action" - ] - }, - { - "text": "Step up efforts to prevent ill-treatment of minors deprived of liberty and guarantee their effective rehabilitation", - "values": [ - "4 - General action" - ] - }, - { - "text": "Conduct immediate, independent, objective and adequate investigations in all cases of racially motivated crimes and hate crimes in the framework of judicial process ", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Take steps to guarantee the political rights of its people, freedom of expression, association and assembly, in particular ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Fully fund its national human rights action plan", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Implement effective domestic measures to ensure all acts of torture are offences under its criminal law", - "values": [ - "4 - General action" - ] - }, - { - "text": "Take further steps to ensure the independence of the judiciary. ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Introduce a moratorium on capital executions, with a view to abolish the death penalty", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Enhance human rights education programmes for citizens and the armed forces to promote a culture of peace and respect for human rights.", - "values": [ - "4 - General action" - ] - }, - { - "text": "Continue to engage its international and regional development partners for support in the continued implementation of its defence and security sector reform initiatives, and to take initial steps to ensure that law enforcement personnel are provided with appropriate human rights education and training", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Repeal all laws and policies that discriminate against human rights defenders", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Continue to implement national laws in compliance with international human rights instruments in all areas, especially on the human rights of vulnerable groups, rights of the child, women's rights, rights of persons with disabilities and elderly persons", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Complete the process of adoption of the child protection act", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Despite the constraints faced as a Small Island Developing State, Barbados is committed to a human rights based approach to development, to the principles of good governance, the rule of law and ensuring that its people have the highest levels of civil, political, economic, social and cultural rights", - "values": [ - "4 - General action" - ] - }, - { - "text": "Remove constraints on civil society groups and human rights defenders.", - "values": [ - "4 - General action" - ] - }, - { - "text": "Pursue its efforts aimed at the promotion of the rights of the child, in addition to the implementation of the national plan for childhood", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Make specific efforts to implement the action plan against sexual violence fully and to make this the Government's priority. ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Intensify efforts to fight racism and xenophobia", - "values": [ - "4 - General action" - ] - }, - { - "text": "Continue adopting a positive perspective towards the accession to international human rights treaties that the Comoros has not yet acceded to", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Continue its efforts to tackle extrajudicial killings and enforced disappearance to strengthen the rule of law and respect for human rights", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Continue to vigorously implement the National Approach to Eliminating Sexual and Gender Based Violence in Kiribati to ensure the full enjoyment of human rights for all persons, and accede to the Optional Protocol to the Convention on the Rights of the Child on the sale of children, child prostitution and child pornography", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Guarantee the Palestinian people access to all basic services, especially drinking water", - "values": [ - "4 - General action" - ] - }, - { - "text": "Continue efforts to advance gender equality and continue tackling the gender equality issues indicated in the national report ", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Promote legislation that is in keeping with the Convention on the Elimination of All Forms of Discrimination against Women, including on preventing violence against women", - "values": [ - "4 - General action" - ] - }, - { - "text": "Strengthen efforts to increase public awareness of the importance of tolerance and intercultural dialogue, and pursue measures to promote and facilitate the integration of migrants", - "values": [ - "4 - General action" - ] - }, - { - "text": "Monitor continuously the extractive activities of oil companies in Mayan territory, which must always respect human rights", - "values": [ - "4 - General action" - ] - }, - { - "text": "Raise awareness of the Anti-Discrimination Act among law enforcement and judicial officials", - "values": [ - "4 - General action" - ] - }, - { - "text": "Strengthen the promotion of gender and the fight against violence against women", - "values": [ - "4 - General action" - ] - }, - { - "text": "Take effective measures to ensure the full realization of the right to freedom of expression, by inter alia reviewing the Printing Presses and Publications Act, the Sedition Act and the Evidence Act", - "values": [ - "4 - General action" - ] - }, - { - "text": "Establish a de jure moratorium on executions ", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Ratify the International Covenant for the Protection of All Persons from Enforced Disappearance", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Take necessary measures to eradicate the trend and/or the dissemination, through the media and by public officials, of stereotypes that might encourage discrimination against migrants, especially migrant women ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Combat gender-based violence through its National Action Plan, Domestic Violence Act and anti-violence outreach programs", - "values": [ - "4 - General action" - ] - }, - { - "text": "Ensure the right to a fair trial for all and ban traditional and informal justice systems", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Ratify the Second Optional Protocol to the International Covenant on Civil and Political Rights (ICCPR-OP 2) ", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Strengthen its efforts for protecting victims of trafficking in persons and organize awareness-raising programmes in favour of public on issues related to combating human trafficking", - "values": [ - "4 - General action" - ] - }, - { - "text": "Abolish the death penalty.", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Take concrete steps to adopt the legislation necessary to follow up to Prime Minister Renzi's announcement to work on the recognition of same-sex relationships in Italy, as part of Italy's efforts to further strengthen measures to combat discrimination and violence based on sexual orientation and gender identity", - "values": [ - "4 - General action" - ] - }, - { - "text": "Create a climate in which journalists are able to report on sensitive issues without fear or harassment and reprisal.", - "values": [ - "4 - General action" - ] - }, - { - "text": "Adapt recruitment guidelines of the police and security forces in order to guarantee the proportional representation of ethnic minorities and an increased representation of women", - "values": [ - "4 - General action" - ] - }, - { - "text": "Consider giving priority to the training of law enforcement officials regarding the treatment of detainees.", - "values": [ - "3 - Considering action" - ] - }, - { - "text": "Continue efforts to strengthen steps and provide resources for the National Commission for Women and Children", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Accelerate its efforts on combatting human trafficking ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Continue progress on various relevant programs, including broad-based accessibility projects for persons with disabilities in the country", - "values": [ - "4 - General action" - ] - }, - { - "text": "Continue to reassess the necessity, and, where the need exists, consider devising programmes that incorporate the prohibition of extrajudicial killings and enforced disappearances for the Philippines Army and National Police, and establish the adequate safeguards and monitoring mechanisms to guarantee compliance", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Take the necessary measures to end violence against women including domestic violence and against aboriginal women, and implement CEDAW and the Human Rights Committee recommendations in this context", - "values": [ - "4 - General action" - ] - }, - { - "text": "Ensure the effective implementation of the National Action Plan against Trafficking and to provide the necessary assistance to the victims of trafficking", - "values": [ - "4 - General action" - ] - }, - { - "text": "Pursue development and health policies that respond to the needs of the Iranian people", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Ensure that sexual orientation, gender identity and expression are included as prohibited grounds for discrimination in the legislation, and take steps towards the legal recognition of the identity of transgender persons", - "values": [ - "3 - Considering action" - ] - }, - { - "text": "Pursue development policies and programmes aimed at poverty alleviation ", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Introduce, in the interim, "hot seating" in schools as a stop gap measure to reduce overcrowding in classes ", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Enhance its efforts to encourage people to enrol their children in schools as well as to improve access to education", - "values": [ - "4 - General action" - ] - }, - { - "text": "Continue to mobilize internal resources and capacity while strengthening cooperation with partners and United Nations agencies to address poverty challenges ", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Take effective measures to prevent violence against women and children", - "values": [ - "4 - General action" - ] - }, - { - "text": "Consider the complete abolition of capital punishment in its internal legislation.", - "values": [ - "3 - Considering action" - ] - }, - { - "text": "Take further steps to combat domestic violence, including a greater gender sensitization", - "values": [ - "4 - General action" - ] - }, - { - "text": "Strengthen measures to protect the rights of minorities ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Reinforce policies already in place aimed at preventing and effectively responding to domestic violence against women, including the protection by the State of the displaced surviving victims ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Apply comprehensively the practice of implementing human rights monitoring at the national level through direct communication with the population", - "values": [ - "4 - General action" - ] - }, - { - "text": "Maintain records for all persons detained by the security forces.", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Continue the efforts for the adoption of a law on religious communities which aims to guarantee their freedom of conscience and consolidates the fight against discrimination in that regard", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Protect journalists and human rights defenders and ensure that they can operate freely and without fear of reprisal", - "values": [ - "4 - General action" - ] - }, - { - "text": "Take the necessary measures to ensure equal access for all to basic social services", - "values": [ - "4 - General action" - ] - }, - { - "text": "Ensure that legislation related to the State's commitment to human rights is adopted and enforced as soon as possible.", - "values": [ - "4 - General action" - ] - }, - { - "text": "Strengthen its institutional framework to ensure harmonization of its national legislation with its international obligations in the area of human rights, and undertake the process of establishing a national human rights institution in accordance with the Paris Principles", - "values": [ - "4 - General action" - ] - }, - { - "text": "Consider the adoption of a comprehensive strategy to eliminate gender violence, particularly domestic violence and marital rape", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Implement all necessary measures to combat trafficking and smuggling of persons, and prevent the human rights abuse and the exploitation of migrants", - "values": [ - "4 - General action" - ] - }, - { - "text": "Speed up the process of establishing a national human rights institution in conformity with the Paris Principles", - "values": [ - "4 - General action" - ] - }, - { - "text": "Continue the process of ratification of the main international human rights instruments", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Broaden the current de facto moratorium on the death penalty so as to abolish it in all cases, including serious crimes, and sign and ratify the Second Optional Protocol to the ICCPR ", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Educate prison populations on the HIV-AIDS virus and respect sanitary conditions of prisons.", - "values": [ - "4 - General action" - ] - }, - { - "text": "Reinstate the full independence and functionality of the Human Rights Commission to bring it in line with the Paris Principles and in accordance with the recommendations it had already accepted at the last UPR review", - "values": [ - "4 - General action" - ] - }, - { - "text": "Make further efforts to strengthen the capacity of human rights institutions", - "values": [ - "4 - General action" - ] - }, - { - "text": "Take further measures to combat discrimination against minorities, and ensure that they are genuinely put into practice in the field ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Continue to improve living standards, access for basic services such as health and education with the full support and cooperation of the international community.", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "A policy that takes account of Gabon's treaty-related commitments and the effective application of its laws. ", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Ratify the CAT, CPED and the Second Optional Protocol to the International Covenant on Civil and Political Rights (ICCPR-OP2) ", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Ensure the prosecution and punishment of perpetrators of human trafficking as well as to endure necessary assistance to victims", - "values": [ - "4 - General action" - ] - }, - { - "text": "Continue to implement the programmes for development mentioned in paragraph 4 of the national report, and strengthen the systematic integration and promotion of human rights in these programmes ", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Accept a visit from the United Nations High Commissioner for Human Rights or a United Nations special rapporteur to identify steps to strengthen human rights institutions", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Guarantee the protection of all people from discriminatory norms and practices on the grounds of sexual orientation and gender identity in all spheres of life", - "values": [ - "4 - General action" - ] - }, - { - "text": "Ratify the international human rights instruments that have been signed but not yet ratified, particularly the Convention on the Rights of Persons with Disabilities, the Optional Protocol of the Convention Against Torture and the Convention for the Protection of All Persons from Enforced Disappearance", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Suspend the application of article 128 in the Criminal Code, with a view to revoke it", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Ensure the collection of statistical data on incidents of anti-Semitism, xenophobia and racial discrimination", - "values": [ - "4 - General action" - ] - }, - { - "text": "Address the problem of low participation of women in the political life and in the decision-making bodies, in particular through the consideration of affirmative measures ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Continue to implement strategies and plans for the socioeconomic development of the country, in particular for the reduction of poverty", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Ensure that all parties to the conflict prepare, in the framework of Security Council resolution 1612 2005, action plans to identify, release and ensure reintegration of all child soldiers, to prevent further recruitment and to address all other grave violations against children", - "values": [ - "4 - General action" - ] - }, - { - "text": "Bring the penitentiary system of juveniles in full compliance with the international norms and standards", - "values": [ - "4 - General action" - ] - }, - { - "text": "Improve emphasis and transparency in tackling gender-based violence by introducing specific measures to encourage more reporting by the public and increased investigations, prosecutions, convictions and sentences to deter those who commit gender-based violence", - "values": [ - "4 - General action" - ] - }, - { - "text": "Ratify CEDAW and adopt legislation to protect victims of domestic violence ", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Consider accession to the ICRMW in order to prevent discrimination, and to ensure equal access to just conditions of work and basic social services, particularly for migrants in vulnerable situations", - "values": [ - "3 - Considering action" - ] - }, - { - "text": "Continue to implement health policies that guarantee the right to health for all", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Ensure for all the right to a fair trial", - "values": [ - "4 - General action" - ] - }, - { - "text": "Ratify the Optional Protocol to CRC on the involvement of children in armed conflict", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Provide judicial remedies through the national human rights institution for migrants who have been discriminated against in the labour market because of their origin, religion, nationality or ethnicity, and strengthen structural measures to combat stereotypes during selection and recruitment processes", - "values": [ - "4 - General action" - ] - }, - { - "text": "Continue cooperating with the United Nations human rights mechanisms ", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Promote more effective efforts to keep children in schools, particularly girls.", - "values": [ - "4 - General action" - ] - }, - { - "text": "Introduce policies aimed at ending discrimination against individuals on the basis of their gender identity or sexual orientation, and repeal legislation criminalizing homosexuality ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Further enhance provisions of human rights education and training to its citizens ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Consider ratifying the International Covenant on Economic, Social and Cultural Rights and the Convention against Torture", - "values": [ - "3 - Considering action" - ] - }, - { - "text": "Establish a formal procedure to improve compliance with the State obligation to protect stateless persons, in line with the Convention relating to the Status of Stateless Persons of 1954", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Pay further attention to women's rights and gender equality issues at the policy making level ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Strengthen monitoring mechanisms which address incidents of forced child labour and further combat the trafficking of children ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Regarding the reform of the justice system, the delegation stated that Liberia had made progress and was committed to enhancing the system and strengthening access to justice, particularly via the establishment of the regional hubs for justice and security. As mentioned earlier, the delegation stated that the standing invitation to the special procedures was being prepared and should be issued very soon", - "values": [ - "4 - General action" - ] - }, - { - "text": "Uphold its responsibility to ensure the civilian nature of camps by implementing its humanitarian obligations in line with the 1951 Convention relating to the Status of Refugees", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Urgently set into force legislation that criminalizes all forms of violence against women, including in domestic settings ", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Put in place protection measures that would allow girls to return to school after giving birth and raise awareness with a view to eliminating the existing prejudices that impede and discourage teenage mothers from returning to school", - "values": [ - "4 - General action" - ] - }, - { - "text": "Adopt legislation for the protection of domestic workers to guarantee their rights in accordance with international standards and prosecute violence against domestic workers", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "In accordance with article 70 of the Constitution, speed the process for the local registration of churches and religious organizations as mandated under the framework on religion and allow for an equitable resolution of property disputes as required under the Constitution and the Prime Minister's decree on religious property.", - "values": [ - "4 - General action" - ] - }, - { - "text": "Consider acceding to the Convention on the Rights of Persons with Disabilities, and devise national policies and legislation to protect the rights of persons with disabilities ", - "values": [ - "3 - Considering action" - ] - }, - { - "text": "Fully respect and protect the right to privacy", - "values": [ - "4 - General action" - ] - }, - { - "text": "Strengthen its efforts with regard to the fighting against enforced disappearances", - "values": [ - "4 - General action" - ] - }, - { - "text": "Continue to promote the right to education for all, particularly for the underprivileged and disadvantaged ", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Conduct awareness-raising campaigns regarding equal opportunities and responsibilities for men and women, in order to abolish discrimination on the basis of gender and lead to greater representation of women in positions of responsibility", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Step up its cooperation with the United Nations by addressing a standing invitation to special procedures and present the overdue report on the implementation of the CRC ", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Invite the Working Group on Enforced or Involuntary Disappearances", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Protect the rights of children", - "values": [ - "4 - General action" - ] - }, - { - "text": "Sign the Optional Protocol to the Convention against Torture at the earliest possible opportunity", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Take special measures to accelerate women's participation at all levels and in all areas of public life.", - "values": [ - "4 - General action" - ] - }, - { - "text": "Sign and ratify the Optional Protocol to the International Covenant on Economic, Social and Cultural Rights, and ratify the Optional Protocol to the Convention on the Elimination of All Forms of Discrimination against Women, the Optional Protocol to the Convention against Torture and Other Cruel, Inhuman or Degrading Treatment or Punishment, the Optional Protocol to the Convention on the Rights of Persons with Disabilities and the International Convention for the Protection of All Persons from Enforced Disappearance ", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Ratify CRC, which it signed in 2008, and submit its outstanding report ", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Continue to play an active role in international forums to fight racism and paedophilia", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Fully align its national legislation and policies with the provisions of the United Nations Convention against Corruption in order to effectively combat corruption and to further improve integrity, transparency and accountability ", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Take all the measures necessary, in particular by reinforcing the current structures, to play a leadership role to prevent and combat violence against women and children, including sexual abuses, especially in the displacement camps", - "values": [ - "4 - General action" - ] - }, - { - "text": "Continue and intensify efforts to eliminate all forms of discrimination and violence against women, including by adopting a national plan for the eradication of female genital mutilation ", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Respond favourably to requests to visit by the special procedures and extend to them an open invitation", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Comply with the rulings of the Inter-American Court of Human Rights, as established by article 23 of the Constitution ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Step up efforts to improve the functioning of the education system to make it easier for all children, including children with disabilities, to have access to education", - "values": [ - "4 - General action" - ] - }, - { - "text": "Ratify the International Convention for the Protection of All Persons from Enforced Disappearance, the Optional Protocol to the Convention against Torture and Other Cruel, Inhuman or Degrading Treatment or Punishment and the Convention against Discrimination in Education", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Continuation and strengthening of measures aimed at promoting equality between men and women", - "values": [ - "4 - General action" - ] - }, - { - "text": "Heed the recommendations of the Special Rapporteur on the human right to safe drinking water and sanitation regarding improvements to water and sanitation infrastructure", - "values": [ - "4 - General action" - ] - }, - { - "text": "Continue to take all necessary measures to ensure that teachers are adequately trained, that girls and boys from all areas have equal access to education and that enrolment in primary and secondary education, including in rural and less developed areas, significantly increase", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Take further steps to ensure universal enrolment of children of compulsory school age", - "values": [ - "4 - General action" - ] - }, - { - "text": "Remove the obstacles preventing victims of discrimination from effective access to justice, adopt appropriate measures to facilitate reporting on this crime by national, ethnic and religious minorities ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Ensure effective investigation into all allegations of torture or mistreatment.", - "values": [ - "4 - General action" - ] - }, - { - "text": "Create an environment of freedom of the media, and encourage media to project positive images of women and of the equal status and responsibilities of women and men in the private and public spheres ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Undertake an awareness-raising campaign against sexual violence ", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Adopt legislation prohibiting discrimination on the basis of sexual orientation and gender identity and repeal all legal provisions criminalizing sexual acts between consenting adults of the same sex", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Spread the culture of human rights in all sectors and institutions of society, in particular legislators and the staff of the judicial system and review its education curricula with a view to incorporating human rights principles", - "values": [ - "4 - General action" - ] - }, - { - "text": "Strengthen cooperation with the international community and organizations including the United Nations in building capacity and technical cooperation in crucial areas such as poverty eradication, increase access to sanitation, education, combating drug abuse and illegal drug trafficking", - "values": [ - "4 - General action" - ] - }, - { - "text": "Take appropriate measures and allocate required resources in the interest of achieving the millennium development goal on universal primary education ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Enhance measures to effectively and comprehensively combat racism, discrimination and xenophobia, including by addressing the problems faced by migrants, especially migrant workers, and ensuring integration of migrants in the local community and labour market", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Intensify programmes aimed at fighting criminality and ensuring respect for human rights", - "values": [ - "4 - General action" - ] - }, - { - "text": "Investigate and prosecute all allegations of torture carried out by government correctional services or security forces ", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Ratify the seven core international human rights instruments including the Convention against Torture and Other Cruel, Inhuman or Degrading Treatment or Punishment, the International Covenant on Civil and Political Rights, the International Convention on the Elimination of All Forms of Racial Discrimination and the International Covenant on Economic, Social and Cultural Rights and their Optional Protocols", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Continue the efforts to eliminate corruption through access to public information", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Intensify efforts to uphold the respect for the rule of law by ensuring an independent and well functioning judicial system.", - "values": [ - "4 - General action" - ] - }, - { - "text": "Continue to fight poverty through its national poverty reduction strategy", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Establish, within a clear time frame, an independent national human rights institution, in accordance with the Paris Principles and ensure that its mandate covers women\u2019s rights and gender equality", - "values": [ - "4 - General action" - ] - }, - { - "text": "Further develop the support and protection system for the victims of domestic violence, including by providing an adequate number of safe houses", - "values": [ - "4 - General action" - ] - }, - { - "text": "Ensure implementation of legislation on the minimum wage in all sectors", - "values": [ - "4 - General action" - ] - }, - { - "text": "A public policy that covers and takes account of indigenous peoples (Pygmies) at the institutional level", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Integrate the refugees into society as a matter of necessity through combatting stereotypes that inflame hatred feelings towards them in the society", - "values": [ - "4 - General action" - ] - }, - { - "text": "Ensure the full implementation of the recently adopted law on sexual and gender-based violence against women and pursue efforts aimed at eradicating these vices", - "values": [ - "4 - General action" - ] - }, - { - "text": "Continue efforts to eradicate stereotypes regarding the position of women in society and to set specific goals, targets and time frames to increase the representation of women, including Roma women, in legislative assemblies and government positions", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Intensify efforts to guarantee universal access to health services, information and education on health and sexual and reproductive rights, particularly for adolescents", - "values": [ - "4 - General action" - ] - }, - { - "text": "Continue implementing measures to combat corruption ", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Further guarantee effective access to education for all children, especially those from indigenous communities, refugee children and children whose families live in rural areas or below the poverty line and take effective measures to fight against the factors behind their exclusion from the educational system.", - "values": [ - "4 - General action" - ] - }, - { - "text": "Make fully operational the National Observatory for the rights of children and clearly define its coordinating role", - "values": [ - "4 - General action" - ] - }, - { - "text": "Enhance the efforts to improve the security situation and protection of minorities", - "values": [ - "4 - General action" - ] - }, - { - "text": "Work to extend its efforts regarding free primary education to all", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Strengthen existing efforts to ensure a safe and healthy environment ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Investigate at earliest cases of forced disappearances and to proceed to sign and ratify the International Convention for the Protection of All Persons from Enforced Disappearance", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Consider making racist motivation a specific aggravating circumstance in sentencing", - "values": [ - "3 - Considering action" - ] - }, - { - "text": "Repeal existing regional laws banning homosexual propaganda ", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Strengthen the implementation of the National Plan of Action 2012- 2016 on Eliminating the Intolerable Forms of Child Labour and to consider follow-up mechanisms", - "values": [ - "4 - General action" - ] - }, - { - "text": "Protect the rights of older persons and persons with disability to ensure their access to the labour market", - "values": [ - "4 - General action" - ] - }, - { - "text": "Continue its efforts for a full implementation, in all levels, of the National Disability Strategy", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Continue strengthening the judicial system in order to put a real end to impunity for human rights violations", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Increase efforts in order to effectively combat impunity ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Fast-track the finalization of the National Strategy framework aimed at responding to and preventing child, early and forced marriage", - "values": [ - "4 - General action" - ] - }, - { - "text": "Invite the relevant special rapporteurs to visit Mexico and make necessary recommendations to uplift the lot of indigenous communities, in line with its commitments and relevant international instruments", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Ensure that cases of domestic violence are properly investigated and prosecuted ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Establish a participatory and inclusive mechanism with civil society to follow up on the universal periodic review recommendations", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Continue to implement measures to facilitate public access to adequate housing ", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Further action to ensure that court services are available in all regions, and that fees associated with court action are not prohibitive", - "values": [ - "4 - General action" - ] - }, - { - "text": "Take measures to put an end to the recruitment of children by the armed forces or armed groups", - "values": [ - "4 - General action" - ] - }, - { - "text": "Continue the efforts aiming at further promoting the rights of persons with disabilities and increasing their employment and their integration to the labour market", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Study amending its Penal Code, by incorporating the criminalization of all forms of violence against women ", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Improve weak administrative and judicial systems that pose obstacles to safeguarding the rights of members of religious minorities", - "values": [ - "4 - General action" - ] - }, - { - "text": "Consider incorporating the United Nations Rules for the Treatment of Women Prisoners and Non-Custodial Measures for Women Offenders, otherwise known as the "Bangkok Rules", as part of its programme to enhance the conditions of detainees in Her Majesty's Prison ", - "values": [ - "3 - Considering action" - ] - }, - { - "text": "Make every effort possible to ensure the human rights of prisoners and detainees are fully observed in the criminal justice system", - "values": [ - "4 - General action" - ] - }, - { - "text": "Continue with its commendable efforts to promote and protect human rights and freedoms ", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Introduce legislation to explicitly prohibit all corporal punishment of children as recommended by the Committee on the Rights of the Child ", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Improve the existing procedures for registering children to guarantee equality for children and equal legal treatment without any discrimination", - "values": [ - "4 - General action" - ] - }, - { - "text": "Prevent incidents of violence against members of ethnic and religious communities ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Make ragging of students an offence and conduct awareness-raising campaigns against ragging ", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Put an end to the practice of ethnic profiling which is ineffective and counter-productive", - "values": [ - "4 - General action" - ] - }, - { - "text": "Replying to the advance questions and recommendations made regarding enforcement of the practice of flogging and of the death penalty, Maldives wished to ensure all partners that it remained committed to strengthening the legislative and judicial framework involved in cases of flogging, informed them that the Government remained dedicated to further strengthening those systems and processes and looked forward to any kind of support from partners. Similarly, with regard to the enforcement of the death penalty, Maldives stated that such punishment would not be resorted to unless it was endorsed by all court tiers and was in line with all regulations and procedures", - "values": [ - "4 - General action" - ] - }, - { - "text": "Consider the possibility to extend a standing invitation to all special procedures of the Human Rights Council, in order to strengthen cooperation with the universal human rights system", - "values": [ - "3 - Considering action" - ] - }, - { - "text": "Adopt legislative, administrative and financial arrangements to ensure the independence of the Judiciary and abolish any power of appointment, rating and control by the Executive on judges and on the High Council of the Judiciary ", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Fully implement its National Roma Integration Strategy to combat socioeconomic marginalization and discrimination and continue to condemn all acts of violence against Roma persons ", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Develop a National Plan of Action on eliminating violence against women and strengthen efforts to fulfil its obligations under CEDAW ", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Respect freedom of expression, assembly and association, in particular by not prosecuting people on the sole grounds of their membership of a political movement, and by implementing the recommendations of the Special Rapporteur on the promotion and protection of the right to freedom of opinion and expression following his visit ", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Create a favourable institutional framework to improve the condition of women by integrating them into social, economic and political life ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Continue pursuing and enhancing housing programmes, which appear to have yielded good results ", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Continue efforts to improve social services that provide support to victims of human trafficking, forced labour and those who have been sexually exploited", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Actively engage with public councils under the State bodies while developing measures aimed at ensuring human rights in a more comprehensive manner", - "values": [ - "4 - General action" - ] - }, - { - "text": "Introduce professional training, capacity-building and cooperation for law enforcement and judicial authorities to identify and address racially motivated crimes ", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Release Alan Gross and imprisoned journalists such as Jose Antonio Torres immediately", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Consider ratifying Protocol No. 12 to the Convention for the Protection of Human Rights and Fundamental Freedoms (European Convention on Human Rights), and the Council of Europe Convention on Preventing and Combating Violence against Women and Domestic Violence ", - "values": [ - "3 - Considering action" - ] - }, - { - "text": "Continue to address the problems related to the working conditions and prioritize the protection and welfare of the workers, especially the women ", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Continue its policy in defence of the right to life.", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Take appropriate measures to combat violence and harassment against human rights defenders and journalists", - "values": [ - "4 - General action" - ] - }, - { - "text": "That the implementation of the existing legislation to prevent and punish torture, both at federal and state level, remains a top priority", - "values": [ - "4 - General action" - ] - }, - { - "text": "The Philippine Government commits itself to the continuing transformation of its security sector into one that is compliant with human rights, international humanitarian law (IHL), and the rule of law. Along this direction, the Government ensures that members of the security forces are continuously trained on human rights and IHL, specifically in their responsibility to protect human rights and the rights of human rights defenders. These responsibilities and obligations are embodied in the Armed Forces of the Philippines' Internal Peace and Security Plan, also known as Bayanihan (Cooperation).", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Ratify the Second Optional Protocol to ICCPR ", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Seek technical assistance to ensure the necessary competences and skills to enable its officials to draft upcoming reports, including to the treaty bodies.", - "values": [ - "1 - Minimal action" - ] - }, - { - "text": "Set up a national human rights institution in accordance with the Paris Principles.", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Establish specialized shelters for children victims of human trafficking ", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Take necessary measures to increase the percentage of women in decision making positions in private and corporate sectors", - "values": [ - "4 - General action" - ] - }, - { - "text": "Take into account, when examining the UPR recommendations, those that are in line with its religious, social and cultural specificities.", - "values": [ - "4 - General action" - ] - }, - { - "text": "Swiftly accede to the Second Optional Protocol of the International Covenant on Civil and Political Rights ", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Continue to address the important issues related to the judicial reform and in particular the question of the living conditions of detainees, also by continuing to implement the PRAJUST Programme, launched with the support of the European Union", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Adopt appropriate measures of a legislative and political nature, including allocation of financial resources, in order to align its national human rights institution with the Paris Principles", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Submit its overdue initial reports to the Committee on Migrant Workers and the Committee on the Rights of Persons with Disabilities ", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Continue to accelerate the momentum of the political, socio-economic and administrative reform to further fulfil socio-economic needs of the people", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Take further measures to combat bridal kidnappings and child, early and forced marriage", - "values": [ - "4 - General action" - ] - }, - { - "text": "Adopt a concrete plan and measures leading to the abolition of segregated settings and achievement of better education outcomes for children from Romani communities ", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Prosecute perpetrators of hate crimes against vulnerable groups", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "The Government is committed to ensuring the progressive implementation of the principle that at least five percent of the members of the public in elective and appointive bodies are persons with disabilities as is provided for under Article 54(2) of the Constitution. Article 100 of the Constitution provides for the enactment of legislation to promote the representation in Parliament for marginalized groups which includes persons with disabilities, by 2015.", - "values": [ - "4 - General action" - ] - }, - { - "text": "Combat various forms of violence against women", - "values": [ - "4 - General action" - ] - }, - { - "text": "Strengthen the introduction of various mechanisms for promoting employment among young people through entrepreneurship in different areas", - "values": [ - "4 - General action" - ] - }, - { - "text": "Continue its efforts to further reduce poverty, particularly in rural areas", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Strengthen prevention and awareness-raising programmes to address xenophobia and violent extremism at the national and subregional levels", - "values": [ - "4 - General action" - ] - }, - { - "text": "Adopt effective measures to address the problem of overcrowding of the penitentiary centres and ensure adequate conditions for detainees", - "values": [ - "4 - General action" - ] - }, - { - "text": "Recommended that National legislation and customs and traditional practices should be further harmonized with the Convention on the Rights of the Child and the Convention on the Elimination of All Forms of Discrimination against Women.", - "values": [ - "4 - General action" - ] - }, - { - "text": "Strengthen measures aimed at protecting children against violence and all kinds of sexual exploitation", - "values": [ - "4 - General action" - ] - }, - { - "text": "Make means available to give effect to the norm which raises the minimum age for military service and guarantees that minors not be subjected to any treatment that violates fundamental human rights and that they be ensured the right not to do their military service", - "values": [ - "4 - General action" - ] - }, - { - "text": "Continue its efforts to achieve full compliance with the rights of the child despite widespread poverty ", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Transform the de facto moratorium on death penalty into a de jure moratorium.", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Accelerate efforts for early enactment of the draft new bill which includes the definition of torture consistent with CAT ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Ensure fair and rapid justice for all perpetrators of human rights violations", - "values": [ - "4 - General action" - ] - }, - { - "text": "Continue efforts to consolidate and deepen the judicial reform process so as to improve the quality of the civil service and facilitate access to justice ", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Strengthen the implementation of non-discrimination and hate crime legislation by continuing to monitor incidents, by ensuring that racially motivated violence is fully and effectively investigated, and by implementing measures to encourage Roma and other victims to report hate crimes and to ensure their protection from reprisal when they do ", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Take further measures to ensure the safety and freedom of action of human rights defenders ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Ensure access to good-quality education, including postgraduate education and vocational training, for indigenous women", - "values": [ - "4 - General action" - ] - }, - { - "text": "Adopt laws that recognize and guarantee the right to conscientious objection to military service, ensuring that any genuinely civilian alternative is not punitive in length", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Introduce necessary measures to ensure full respect of human rights for all, including for Lesbian, Gay, Bisexual and Transgender people, by reviewing the Law on the Protection of Minors against the Detrimental Effect of Public Information", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Increase its allocation of resources devoted to education", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Treat equally same-sex relationships with opposite-sex relationships, including the right to equal consideration for adoption and access to reproductive medicine ", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Continue to strengthen its legislative framework to promote and protect human rights", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Consider establishing a national human rights institution in full compliance with the Paris Principles", - "values": [ - "3 - Considering action" - ] - }, - { - "text": "Consider ratifying ILO Convention No. 169 ", - "values": [ - "3 - Considering action" - ] - }, - { - "text": "Criminalize the worst forms of child labour and accede to international treaties which ban this practice", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Continue to develop training programmes in the field of human rights for law enforcement officials", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Promote continuous and regular training programs for judicial and public magistrates and allocate sufficient resources to improve working conditions", - "values": [ - "4 - General action" - ] - }, - { - "text": "Revoke article 7 of the new law on education adopted in September 2017", - "values": [ - "4 - General action" - ] - }, - { - "text": "Establish rapidly an impartial national human rights institution in line with the Paris Principles", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Continue making progress in promoting the economic, social and cultural rights through strengthening of social programmes, currently undertaken by the Government for the benefit of its people", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Ensure primary education to all children and improve its quality", - "values": [ - "4 - General action" - ] - }, - { - "text": "Make procedures for registration of civil society organizations transparent, non-discriminatory and expeditious", - "values": [ - "4 - General action" - ] - }, - { - "text": "Bolster its practical capacity to oversee the working and living conditions of foreign workers", - "values": [ - "4 - General action" - ] - }, - { - "text": "Continue the efforts related to human rights education and awareness-raising", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Continue adopting all the necessary measures to promote human rights in the country", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Address the problems of extrajudicial killings and torture by security forces and improve prison situations", - "values": [ - "4 - General action" - ] - }, - { - "text": "In this context, the key priorities are summarized in this report and there is maintained the commitment to lead efforts for accession and ratification of some key instruments that the country has not acceded, and to submit regular reports to the bodies of United Nations Treaty.", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Consider seriously ratifying the Convention on the Rights of Persons with Disabilities CRPD - the Optional Protocol to the Convention on the Elimination of Discrimination Against Women OP-CEDAW and the Optional Protocol to the Convention on the Rights of the Child on the involvement of children in armed conflict OP-CRC-AC", - "values": [ - "3 - Considering action" - ] - }, - { - "text": "Ensure more fully the rights of persons with disabilities, as well as the rights of women and of children", - "values": [ - "4 - General action" - ] - }, - { - "text": "Adopt the measures necessary to combat discrimination of all kinds, including those based on sexual orientation, gender, colour, religion and political opinion.", - "values": [ - "4 - General action" - ] - }, - { - "text": "Continue with its fight against discrimination suffered by minorities", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Continue its endeavours on development and poverty alleviation throughout the community, notably for vulnerable groups, such as women and children", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Take specific and targeted measures to effectively prevent discrimination against Scheduled Castes.", - "values": [ - "4 - General action" - ] - }, - { - "text": "Harmonize the penal code applied in cases of war crimes, in addition to the review of verdicts where appropriate. In addition, it is necessary to define adequately the condition of victims of war and to provide necessary reparation", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Continue in the process of promoting and protecting the rights of members belonging to minority groups", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Take clear steps to ensure that Somali security forces (and militias under its purview) comply with international human rights law and international humanitarian law, including by integrating human rights training into security sector reform programmes ", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Give priority to and allocate resources for implementing current national strategies, programmes and measures, with more focus on addressing the challenges and disparities in employment, education and health care, especially for vulnerable groups of women, children, migrants and the elderly ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Accept visit requests from the UN Special Rapporteurs and the Inter- American Commission on Human Rights ", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Continue the authorities' efforts to prevent and combat torture both at the federal and state levels ", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Allow the establishment of private media and issue licences to private broadcasting radio and television stations ", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Pursue measures, in law and in practice, that address the wage gap in the private sector and unequal access to managerial posts, with women in a disadvantaged situation", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Continuing to implement the project "Uruguay, united in putting an end to violence against women, children and adolescents" 2012-2014", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Step up the fight against child pornography to better protect children", - "values": [ - "4 - General action" - ] - }, - { - "text": "Continue efforts in allocating more resources to ensure the betterment of economic and social rights of citizens, in particular in the areas of poverty reduction, urban-rural equality, education, public services, etc. ", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Continue to work towards completion of necessary internal processes so that it may accede to the Optional Protocol to the Convention on the Rights of the Child on the sale of children", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Take further measures to improve the condition of the reception centres for asylum seekers and ensure asylum seekers have access to adequate standard of living", - "values": [ - "4 - General action" - ] - }, - { - "text": "Investigate the serious human rights violations committed since independence and prosecute those responsible", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Take appropriate measures to disseminate widely and ensure full observance of the Declaration on Human Rights Defenders", - "values": [ - "4 - General action" - ] - }, - { - "text": "Create and maintain, in law and in practice, a safe and enabling environment, in which human rights defenders can operate free from hindrance and insecurity, in accordance with Human Rights Council resolution 22/6", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Ensure prompt and impartial investigations into accusations and complaints of violence, intimidation, harassment and surveillance of human rights defenders", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Allow for the full independence and effective functioning of the judiciary to ensure fundamental rights and freedoms for all persons such as, inter alia, the freedom of expression or opinion, association, and peaceful assembly, particularly in the context of future electoral processes ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Promote further internal consultations to ensure the adoption of a code of protection of children in conformity with the Convention on the Rights of the Child ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Consider the establishment of an integrated human development programme", - "values": [ - "3 - Considering action" - ] - }, - { - "text": "Heed the calls of the international community by immediately ending the repression and the climate of terror that it has imposed on its own population by respecting in all circumstances the rules of international law and by bringing to justice those responsible and the perpetrators of these crimes ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Ratify all international human rights instruments that have already been signed", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Continue to work on protecting the rights of migrants, especially the children of migrants ", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Recommended that all reports of rape and sexual violence by law enforcement officials be promptly and impartially investigated and that perpetrators be brought to justice", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Take the necessary measures to ensure that national protection laws against sexual violence, including in the domestic context, be applied at all levels consistently and effectively to fight against impunity", - "values": [ - "4 - General action" - ] - }, - { - "text": "Enhance its policies regarding access to education, in particular for girls.", - "values": [ - "4 - General action" - ] - }, - { - "text": "Continue its practice of further strengthening the national human rights institution", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Improve the effectiveness of measures to protect vulnerable children against sexual abuse and protect children with albinism", - "values": [ - "4 - General action" - ] - }, - { - "text": "Intensify the work related to inter-ethnic reconciliation, with special attention to the integration of ethnic minorities into public service and law enforcement bodies", - "values": [ - "4 - General action" - ] - }, - { - "text": "Repeal all provisions in its domestic law criminalizing consensual sexual activity between adults of the same sex and combat discrimination against lesbian, gay, bisexual and transsexual persons through political, legislative and administrative measures ", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Design an adequate mechanism for assisting street children so that they can benefit from aid and reintegration services ", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Finalize its ratification of the Convention on the Rights of Persons with Disabilities, and actively address the needs of persons with disabilities especially in remote areas of the country", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Continue measures to improve the education system and ensure universal access to quality education ", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Adopt practical measures to ensure the right to peaceful assembly guaranteeing the proportionality in the use of force by security forces", - "values": [ - "4 - General action" - ] - }, - { - "text": "Take further legislative and practical measures to end violence against women, including the phenomenon of bride kidnapping as well as early and forced marriage", - "values": [ - "4 - General action" - ] - }, - { - "text": "Adopt necessary steps to ensure that victims of violence are not obliged to pay costs of their medical examination and that trials of alleged perpetrators take place in due time to avoid their release in accordance with Art. 14 (4) of the Constitution, which may amount to impunity of perpetrators.", - "values": [ - "4 - General action" - ] - }, - { - "text": "Continue to strengthen the successful social policies undertaken to meet the needs of its people, especially in the most needy areas of society, that unfair economic sanctions imposed should be lifted and international cooperation should be provided without any condition ", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Ratify the Optional Protocol to the Convention against Torture and establish a national preventive mechanism in accordance with the Optional Protocol", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Conduct an awareness-raising and educational campaign among the populations with the view to eliminate all the socio-cultural barriers which impede the full enjoyment of the rights of women", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Adopt measures to address all forms of discrimination - such as against women or religious minorities - including support to public debates, awareness-raising campaigns and steps towards the revision of discriminatory provisions in the legislation", - "values": [ - "4 - General action" - ] - }, - { - "text": "Repeal regional legislation that tolerates discrimination based on sexual orientation, and take concrete measures preventing from using regulations in force with discriminatory purposes against the rights of LGBT persons", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Ensure that all the courts and the prosecutors' offices of various entities take adequate measures to support and protect witnesses, in order to avoid the transfer of files to these entities resulting in impunity, particularly in cases of sexual violence", - "values": [ - "4 - General action" - ] - }, - { - "text": "Further intensify its efforts to promote gender equality, to combat violence against women and girls, sexual harassment and abuse, and recognize the important role of non-governmental organizations in this field", - "values": [ - "4 - General action" - ] - }, - { - "text": "Pass legislation specifically dealing with violence against women, including domestic violence, providing for prosecution of individuals committing acts of violence against women \n\n", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Continue efforts to prevent the smuggling of Yemeni children outside the country.", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Raise the minimum age of marriage to 18", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Enact legislation bringing into force the International Convention for the Protection of All Persons from Enforced Disappearance in Chilean legislation ", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Restore all victims of the occupation of Palestinian and Arab territories, in conformity with international law norms", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Establish a formal moratorium on the use of the death penalty with a view to ratifying ICCPR-OP 2", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Re-consider ratification of the Second Optional Protocol to the International Covenant on Civil and Political Rights, aiming at the abolition of the death penalty", - "values": [ - "3 - Considering action" - ] - }, - { - "text": "Continue its efforts to build the necessary capacities for the incorporation of human rights in the democratic reform processes and the application of the Constitution", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Legally establish an independent judiciary and ensure that all laws are in line with the principles of international law ", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Intensify efforts to eradicate poverty, particularly among the Orang Asli in Peninsular Malaysia and the natives of Sabah and Sarawak", - "values": [ - "4 - General action" - ] - }, - { - "text": "Within the next 24 months, Cyprus undertook to make its national human rights institution fully compatible with the Paris Principles, including its financial independence, as the relevant bill had to go through parliamentary procedures.", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Combat more effectively the sexual exploitation of children and child labour, by improving the implementation of the February 2013 law against smuggling and trafficking in persons, and by strengthening coordination among the agencies comprising the national coalition against trafficking in persons ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Submit the initial report to the Committee against Torture, as well as all due reports to other treaty bodies", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Immediately and unconditionally release all political prisoners and ensure that all trial proceedings conform to international fair trial standards, including the right to a fair and public trial by a competent, independent and impartial tribunal, access to legal counsel of one's choosing, the presumption of innocence, and the opportunity to appeal through a process of judicial review ", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Put an end to the glorification of Nazi criminals and other complicit persons, including Stepan Bandera and Roman Shukhevych", - "values": [ - "4 - General action" - ] - }, - { - "text": "Take steps to ensure that laws on gender equality and domestic violence are enforced effectively", - "values": [ - "4 - General action" - ] - }, - { - "text": "Implement urgently the recommendations of the High Commissioner for Human Rights of February 2008.", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Give impetus to accelerate the regional process on the question of the thousands of persons who are still missing, which is vital for the rule of law as well as for regional reconciliation", - "values": [ - "4 - General action" - ] - }, - { - "text": "Continue its efforts to improve access to education for all, including by providing adequate resources", - "values": [ - "4 - General action" - ] - }, - { - "text": "Take effective legal measures to prevent and combat the dissemination of racist, xenophobic and Islamophobic propaganda, particularly in the press and on the internet ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Finalize the creation and facilitate the functioning of a national council for persons with disabilities", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Redouble its efforts to fight against crimes of honour, through public awareness and punishment of perpetrators and ensure that measures of protection for potential victims be determined with their full participation", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Recommended that the Government and armed groups that are signatories to the cease fire concluded pursuant to the agreement of 7 September 2006 continue efforts to implement it.", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Strengthen the institutional capacity of the Independent National Commission on Human Rights established in 2011, the Ministry of Justice and the judiciary", - "values": [ - "4 - General action" - ] - }, - { - "text": "Continue strengthening its correct education policies as well as the social protection programmes which are being implemented, with a view to providing the best standard of living for its people", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Provide enough financial and personnel resources to enable the Attorney General's office, as well as law enforcement authorities, to fight corruption in the country", - "values": [ - "4 - General action" - ] - }, - { - "text": "Ratify the Optional Protocol to the International Covenant on Economic, Social and Cultural Rights (OP-ICESCR), already signed by Guinea-Bissau", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Introduce a formal moratorium on the death penalty with a view to its abolition. ", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Contribute to the implementation of the recently adopted Human Rights Council resolution on children living and working on the streets ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Continue efforts to provide education for persons with disabilities people and integrate them into society ", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Step up the efforts to combat discrimination against women at all levels", - "values": [ - "4 - General action" - ] - }, - { - "text": "Continue its efforts to transform its progress on the level of macroeconomic indicators into enhanced measures of social justice and elevated degrees of human development, particularly by ensuring universal, compulsory and free basic education ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Multiply its awareness-raising campaigns and trainings on combating racial discrimination", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Abolish the death penalty and ratify the Second Optional Protocol to the International Covenant on Civil and Political Rights, aiming at the abolition of the death penalty ", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Incorporate into its domestic law norms protecting all children, including indigenous children, in line with the Convention on the Rights of the Child ", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Ensure the effective implementation of the national strategy to combat maternal and infant mortality and to increase access for women and girls to basic health-care services ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Honduras announced that it would submit a mid-term report on the implementation of UPR recommendations. ", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Prioritize implementation of a coordinated national and local disaster risk preparedness plan of action", - "values": [ - "4 - General action" - ] - }, - { - "text": "Examine the possibility of becoming party to the following international instruments: ICESCR, ICCPR, CAT, CED, ICRMW ", - "values": [ - "3 - Considering action" - ] - }, - { - "text": "Operationalize/enforce legal mechanisms on ensuring gender equality", - "values": [ - "4 - General action" - ] - }, - { - "text": "Adopt new child protection legislation as soon as the consultative process can be concluded", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Continue its efforts to combat torture and ill-treatment", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Ratify the two Optional Protocols to the CRC on the involvement of children in armed conflict and on the sale of children, child prostitution and child pornography ", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Intensify the support of the family as an institution ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Implement the normative framework in order to ensure protection of the victims of trafficking", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Effectively implement the recent legislation on police reform and witness protection", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Ratify the International Convention for the Protection of All Persons from Enforced Disappearance and recognize the competence of its Committee, in accordance with articles 31 and 32 ", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Consider expanding human rights education in the school programme so that it includes the main international human rights instruments, and consider strengthening and expanding the human rights education programmes for law enforcement officials and military personnel ", - "values": [ - "3 - Considering action" - ] - }, - { - "text": "Adopt legal protection for migrant workers and enforce them, including with respect to wages and working hours, and address allegations of excessive agency fees and forced detention by "repatriation companies" ", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Continue efforts to strengthen legal and institutional frameworks to promote and protect human rights, including through the formulation of a national human rights plan of action, and expediting the amendment process to the law regulating the NHRI so that it is fully in accordance with the Paris Principles ", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Sign and ratify CRPD-OP ", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Further strengthen its efforts in promoting the rights of persons with disabilities and to ensure their integration in the society ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Enhance efforts to ensure compliance with international standards as set out in the Manual on the Effective Investigation and Documentation of Torture and Other Cruel, Inhuman or Degrading Treatment or Punishment", - "values": [ - "4 - General action" - ] - }, - { - "text": "Investigate activities of fabrication and dissemination of false information, and take measures with regard to persons engaged in illegal activities through Internet", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Work towards additional efforts to promote economic and social rights, to enhance in particular the right to work, education, health and housing", - "values": [ - "4 - General action" - ] - }, - { - "text": "Work towards passing legislation that provides ethnic minorities and vulnerable groups, including women and persons with disabilities, protection from discrimination and legal recourse for victims of discrimination", - "values": [ - "4 - General action" - ] - }, - { - "text": "Work with all relevant stakeholders, including non and civil society, in addressing the problem involving the movements of toxic waste ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Maintain its efforts to continue ensuring respect for freedom of religion and belief for all Cubans and maintain its policy of respect and tolerance for all religions without discrimination", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Eliminate the practice of unlawful postponement and of refusal to register NGOs, including international NGOs and those critical of the Government and defending human rights ", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Put in place measures to eliminate harmful traditional practices and raise awareness for attitudes to change in relation to discriminatory gender roles", - "values": [ - "4 - General action" - ] - }, - { - "text": "The establishment of the human rights governance, promotion and protection institutions provided for in the Constitution.", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Continue to formulate appropriate plans to establish a compulsory education policy ", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Consider measures in order to prevail the situation of the high level domestic violence ", - "values": [ - "3 - Considering action" - ] - }, - { - "text": "Ratify the third Optional Protocol to the Convention on the Rights of the Child on a communications procedure, fully implement the Children's Protection and Welfare Act, and ensure effective law enforcement", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Consider the abolition of death penalty and to consider ratifying the Second Optional Protocol to the International Covenant on Civil and Political Rights aiming at the abolition of the death penalty.", - "values": [ - "3 - Considering action" - ] - }, - { - "text": "Consider extending a standing invitation to all special procedures of the Human Rights Council. ", - "values": [ - "3 - Considering action" - ] - }, - { - "text": "Review and amend the various penal laws that prevent journalists from carrying out their essential mission in full security and independence.", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Continue incorporating the gender perspective in all policies and programmes and improve existing practices in this matter", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Guarantee, in compliance with its obligations under ICCPR, the effective independence of the procedures and administration of justice, restricted emergency legislation, adequate protection for human rights defenders and political opposition members, and the effective guarantee of freedom of expression and opinion and freedom of religion and belief", - "values": [ - "4 - General action" - ] - }, - { - "text": "Continue on achievements in the field of human rights", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Continue its efforts in achieving the MDGs, in particular in the area of the health of its population ", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Continue providing the full exercise of women and children rights within the framework of the Plan of Action on Family Institution and Women ", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Accede to the international treaties on human rights and ratify ICCPR", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Take measures to guarantee freedom of demonstration and ensure protection of demonstrators", - "values": [ - "4 - General action" - ] - }, - { - "text": "Share its experience and good practices with other developing countries with respect to poverty eradication", - "values": [ - "1 - Minimal action" - ] - }, - { - "text": "Continue to fully cooperate with the Independent Expert on the situation of human rights in Sudan, including with respect to the implementation of recommendations ", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Fully implement national legislation on trafficking and address root causes of trafficking", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Give particular attention to human rights protection of people with disabilities in order to secure their rights", - "values": [ - "4 - General action" - ] - }, - { - "text": "Continue to work in favor of the vulnerable groups, in particular children and women, taking into account the international obligations already contracted ", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Adopt national legislation prohibiting all domestic violence and discrimination in law and in fact against women and girls ", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Launch, with the participation of all media, a process of reflection on the role and responsibility of the media with respect to combating racism, xenophobia and related intolerance ", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Continue its efforts in providing a decent standard of living for its people, and provide them with enforced social security ", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Take all necessary measures to prevent the reappearance of Nazism in order to eradicate the root cause of all racially motivated criminal acts ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Intensify its efforts to bring the Senegalese Human Rights Committee into full compliance with the Paris Principles and thus to restore its "A" status", - "values": [ - "4 - General action" - ] - }, - { - "text": "Set up an independent inquiry into the justification for calling a State of Emergency which would inter alia investigate the actions of the security services during the State of Emergency ", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Consider adhering to the Second Optional Protocol to the International Covenant on Civil and Political Rights, aiming at the abolition of the death penalty, and abolish the death penalty", - "values": [ - "3 - Considering action" - ] - }, - { - "text": "Close down all camps where prisoners of conscience are held and release unconditionally all political prisoners ", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Put in place a strategy to combat discriminatory stereotypes and implement, in collaboration with civil society, awareness-raising programs to enhance non-stereotypical portrayals of women and girls", - "values": [ - "4 - General action" - ] - }, - { - "text": "Become a party the Optional Protocol to the Convention against Torture (OPCAT)", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Adopt the necessary measures to ensure the investigation and prosecution of violations of the right to life and physical integrity, in light of human rights and international humanitarian law standards ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Consider abolishing the death penalty or at least establishing a moratorium on executions ", - "values": [ - "3 - Considering action" - ] - }, - { - "text": "Continue its efforts to eradicate poverty and social inequality", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Consider as a crime all acts of violence, regardless of the harm that they cause, in addition to specifically punishing violence based on sexual orientation or gender identity", - "values": [ - "3 - Considering action" - ] - }, - { - "text": "Implement specific steps to combat the high level of deaths of indigenous persons in places of detention ", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Continue to consider ratification of more international human rights instruments", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Ensure that the freedom of expression, press freedom and internet freedom will not result in racism, intolerance and hatred against minority groups ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Strengthen its actions to curb sexual exploitation of children ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Expedite its efforts on enacting the legal aspect of the office of the undersecretary for human rights and prepare its national human rights plan as a next step ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Implement reforms to ensure Vanuatu is able to meet its obligations under the United Nations Convention against Torture regarding prosecution for acts of torture, attempt to commit torture, or complicity or participation in torture ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Advance significantly in the submission of overdue reports to different Treaty Bodies, as well as sign and ratify the Optional Protocol to the International Covenant on Economic, Social and Cultural Rights - the Optional Protocol to the Convention on the Elimination of All Forms of Discrimination against Women - the two Optional Protocols to the Convention on the Rights of the Child - the International Convention for the Protection of All Persons from Enforced Disappearance - and the Optional Protocol to the Convention against Torture and Other Cruel, Inhuman or Degrading Treatment or Punishment \n", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Release immediately and rehabilitate all those imprisoned without credible criminal charges ", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Focus on eliminating violence and creating safe places for victims of gender-based, sorcery related, and sexual violence", - "values": [ - "4 - General action" - ] - }, - { - "text": "Guyana made a commitment, before the UPR, that once evidence and witnesses are available all those responsible for the crime wave of 2002-2008 would be brought to justice, whether they were part of the violent criminal gangs or those in the "Phantom Squad". ", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Reply favourably and without delay to the requests of United Nations human rights experts and mechanisms to visit Algeria", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Protect persons with albinism against ritual crimes more effectively", - "values": [ - "4 - General action" - ] - }, - { - "text": "Ensure timely prosecution of human rights cases before the National Criminal Court and that all alleged violations of human rights, including labour rights, are investigated and prosecuted by the civilian justice system", - "values": [ - "4 - General action" - ] - }, - { - "text": "Strengthen efforts to combat discrimination against children belonging to national minorities, particularly Roma, and reduce the number of children living in poverty", - "values": [ - "4 - General action" - ] - }, - { - "text": "Intensify efforts to implement measures to encourage peaceful coexistence among all populations and combat marginalization", - "values": [ - "4 - General action" - ] - }, - { - "text": "Consider expediting the ratifications of the core human rights treaties to which it is not yet a party, as recommended previously", - "values": [ - "3 - Considering action" - ] - }, - { - "text": "Undertake concrete measures to further promote gender equality in employment, gender responsive approach in the judicial system and better maternal care ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Enhance efforts to implement existing policy instruments aiming at protecting women's rights, and to enhance the support given to victims of violence, for example through adequate resourcing of counselling centres", - "values": [ - "4 - General action" - ] - }, - { - "text": "Sign and ratify CAT, as recommended previously ", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Continue its efforts to facilitate and promote indigenous peoples' access to education, sanitation, property, and public positions", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Continue its efforts in the area of human rights, particularly in providing elementary education for all, and combat illiteracy", - "values": [ - "4 - General action" - ] - }, - { - "text": "Ensure that the Constitution is aligned with international human rights standards, thus contributing to political efforts aimed at fully restoring unity, peace, and security throughout Libya", - "values": [ - "4 - General action" - ] - }, - { - "text": "Consider the establishment of a central agency to address human trafficking", - "values": [ - "3 - Considering action" - ] - }, - { - "text": "Implement the recommendations of the Committee on the Rights of the Child to ensure comprehensive protection of the rights of children, including those of minority groups, indigenous peoples and migrant workers", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Strengthen efforts aimed at ensuring equal rights for women in the field of work", - "values": [ - "4 - General action" - ] - }, - { - "text": "Keep up the current efforts in order to improve conditions of detention, including limiting the overcrowding in prisons ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Facilitate the integration of refugees by combating stereotypes", - "values": [ - "4 - General action" - ] - }, - { - "text": "The United States is firmly committed to addressing the causes and impacts of climate change. The National Environmental Policy Act requires federal agencies to incorporate environmental considerations in their planning and decision-making processes. The President's Climate Action Plan has committed to cut carbon pollution and other greenhouse emissions, promote renewable energy development and use, cut waste in homes, businesses, and factories, conserve land and water resources, use sound science to manage climate impacts, launch a climate resilience toolkit and climate data initiative, and actively engage in international efforts to address global climate change.", - "values": [ - "4 - General action" - ] - }, - { - "text": "Provide members of its police force with training on human rights and improve inmate conditions in detention facilities ", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Align its national legislation with the ratified international human rights treaties", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Adopt a national plan to promote and protect the rights of all women and girls, in particular those victims of the conflict, making sure that resources for its implementation are available", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Undertake further work to ensure that the law is adequate to prosecute cases involving domestic violence and that such laws are properly enforced through, for example, increased police capacity-building and the appointment of female officers ", - "values": [ - "4 - General action" - ] - }, - { - "text": "adopt comprehensive plans of action to achieve gender equality and to fight violence against women", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Continue efforts to further implement the National Development Plan for the period 2013-2015", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Implement meaningful electoral reform to ensure the transparency and independence of the Electoral Commission and its adherence to democratic principles, and prevent the misuse of State resources for campaign financing", - "values": [ - "4 - General action" - ] - }, - { - "text": "Investigate all allegations of abuse of police authority and prosecute the perpetrators", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Continue its humanitarian aid to least developed countries", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Continue to strengthen social protection programmes developed on behalf of its people, especially the population most in need", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Continue to implement its initiatives in combating the HIV-AIDS pandemic and share its experiences in this regard", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Take measures to eliminate discrimination based on sexual orientation and gender identity.", - "values": [ - "4 - General action" - ] - }, - { - "text": "Make more efforts to develop poverty reduction strategies and adopt legislations to ensure safe drinking water and sanitation ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Consider formulating a national human rights plan of action that unifies all efforts and stakeholders as well as streamline and mainstream all human rights programmes", - "values": [ - "3 - Considering action" - ] - }, - { - "text": "Ratify the International Covenant on Economic, Social and Cultural Rights, the Convention against Torture and the Optional Protocol to the Convention on the Rights of the Child on the sale of children, child prostitution and child pornography", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Consider ratifying the Convention on the Rights of Persons with Disabilities, as a matter of priority ", - "values": [ - "3 - Considering action" - ] - }, - { - "text": "Amend laws on the minimum age of criminal responsibility, which make it possible to deal with some children as adult criminals", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Undertake education programmes on a human rights-based handling of asylum-seekers and refugees and build institutional capacity for the development of a national refugee status determination procedure ", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Take measures to ensure non-discrimination on grounds of sexual orientation and gender identity ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Adopt a roadmap for the ratification of the International Convention for the Protection of All Persons from Enforced Disappearance", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Continue applying measures to combat trafficking in human beings, covering areas such as prevention, investigation, prosecution and punishment of perpetrators ", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Ratify CAT as well as the Optional Protocol to the Convention against Torture and Other Cruel, Inhuman or Degrading Treatment or Punishment (OP-CAT) ", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Consider addressing the disparities in the delivery of and access to quality basic social services such as health, education, water and sanitation services.", - "values": [ - "3 - Considering action" - ] - }, - { - "text": "Investigate allegations of extrajudicial killings and deaths in custody as well as of trafficking in human organs", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Ensure access of all children to free and compulsory primary education and accede to the UNESCO Convention against Discrimination in Education ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Further strengthen laws and policies to protect the freedom of religion and belief, as well as the freedom of expression, association and assembly ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Put an end to the practice of capita punishment, and declare a moratorium on the death penalty as soon as possible with a view to its abolition ", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Consider raising the Ombudsman as a national institution for human rights accredited with the International Coordinating Committee of National Institutions for the Promotion and Protection of Human Rights", - "values": [ - "3 - Considering action" - ] - }, - { - "text": "Replace death sentences with an appropriate alternative sanction ", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Repeal as soon as possible the provisions in the Penal Code and particularly articles 13 and 16 of the law on sexual offences of 1986, penalizing sexual relations between consenting individuals of the same sex", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Adopt appropriate measures to comprehensively counter any type of discrimination against migrants ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Repeal the right "to administer reasonable punishment" and clearly prohibit corporal punishment in all settings, including in the home", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Legislate for the prohibition of female genital mutilation", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Review its Constitution and legislation to ensure that discrimination on the basis of sexual orientation and gender identity is prohibited", - "values": [ - "3 - Considering action" - ] - }, - { - "text": "Establish an independent Human Rights Commission to identify and denounce human rights violations", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Withdraw the reservations to the Convention on the Elimination of All Forms of Discrimination against Women.", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Amend the Criminal Code to provide that crimes motivated by discrimination on the grounds of sexual orientation or gender identity are investigated and prosecuted as hate crimes", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Continue efforts to end child labour through the establishment of an inter-agency coordination mechanism at the national and subnational levels in order to implement the National Plan for the Prevention and Eradication of Child Labour", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Make further efforts to overcome the difficult issue of discrimination on the grounds of religion, gender, race or otherwise ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Involve the Ministry for Women's Rights and women's rights organizations in the legislative process", - "values": [ - "4 - General action" - ] - }, - { - "text": "Implement full the 2013 Public Benefits Organizations Act, and safeguard rights and space for civil society, in line with the Kenyan Constitution", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Implement further measures to combating and preventing torture, as well as strengthen existing mechanisms for the implementation of the recommendations of the United Nations Committee Against Torture and other international bodies ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Adopt measures to guarantee the religious freedom and integrity of believers and their places of worship, regardless of their creed", - "values": [ - "4 - General action" - ] - }, - { - "text": "Continue its efforts to prevent and combat trafficking in persons, especially women and children, by entirely financing and implementing the National Plan for the Prevention and Eradication of the Sexual Exploitation of Girls, Boys and Adolescents. Amend the national legislation on the sexual exploitation and trafficking in children to bring it in line with the international instruments ", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Extend a standing invitation to the Council's Special Procedures", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Extend its anti-discrimination laws and hate crime legislation", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Strengthen the cooperation with the United Nations human rights mechanisms, in particular by permitting visits by special procedures mandate holders", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Consider enhancing the protection of religious freedom by adopting legislative measures and promoting awareness raising campaigns", - "values": [ - "3 - Considering action" - ] - }, - { - "text": "Strengthen efforts to combat poverty", - "values": [ - "3 - Considering action" - ] - }, - { - "text": "Further strengthen cooperation with the United Nations human rights machinery and consider further actions that would strengthen, through greater integration, complementarity and visibility, the various components of its national system for protecting human rights.", - "values": [ - "4 - General action" - ] - }, - { - "text": "With regard to extending a standing invitation to Human Rights Council special rapporteurs, the Congolese delegation reiterated its commitment to cooperating with United Nations bodies.", - "values": [ - "4 - General action" - ] - }, - { - "text": "Conclude as soon as possible the ratification process of the Optional Protocol to the International Covenant of Economic, Social and Cultural Rights ", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Take the necessary measures to effectively fight against discrimination by public and private actors", - "values": [ - "4 - General action" - ] - }, - { - "text": "Adjust existing laws governing non-governmental organizations to adapt them to international human rights laws and standards", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Criminalize hate speech and incitement to hatred which leads to imminent violence", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Strengthen and increase current efforts, including through international cooperation, aimed at protecting the rights of children and women, with a particular emphasis on combating violence against women and social exclusion, in line with international instruments that the Plurinational State of Bolivia is party to", - "values": [ - "4 - General action" - ] - }, - { - "text": "Take steps to ensure the right to freedom of expression, including by ensuring that journalists can carry out their work independently while protecting their well-being", - "values": [ - "4 - General action" - ] - }, - { - "text": "Reinstitute its suspension of implementation of the Sharia Penal Code. Conduct a comprehensive review of the new Penal Code in relation to obligations under international law ", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Further strengthen the national programme to eradicate slavery, and take measures to ensure that complaints regarding slavery are being brought before the domestic courts", - "values": [ - "4 - General action" - ] - }, - { - "text": "Extend a standing invitation to all thematic Special Procedures of the Human Rights Council ", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Make further efforts to strengthen the legal framework in the areas of security and law enforcement as well as ensure that the judiciary is guided by international human rights law with a particular focus on the importance of an impartial and independent judicial system", - "values": [ - "4 - General action" - ] - }, - { - "text": "Consider ratifying the International Convention on the Protection of the Rights of all Migrant Workers and Members of their Families ", - "values": [ - "3 - Considering action" - ] - }, - { - "text": "Continue to make efforts to protect human rights of persons in detention facilities", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Strengthen efforts to increase women's access to health-care facilities and medical assistance in order to address the prevailing high maternal mortality rate", - "values": [ - "4 - General action" - ] - }, - { - "text": "Reform the military justice system to exclude civilians from its jurisdiction and be used only to hear offences arising in the context of military duties ", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Respect freedom of expression and religion and non-stigmatization of some sectors of society in combating terrorism ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Consider ratifying the ICESCR ", - "values": [ - "3 - Considering action" - ] - }, - { - "text": "Take steps to further strengthen the impartiality and independence of the judiciary by implementing existing judicial procedures, and by promptly and thoroughly investigating any allegations or complaints of corruption in its courts", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Request all necessary technical assistance enabling the Government to meet its international commitments", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Step up its efforts in order to prevent gender-based violence, punish perpetrators and provide the victims with adequate remedies, inter alia by enhancing the resources devoted to the Ministry of Women and establishing the Units for the Integrated Assistance for Victims in all provinces ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Ratify or sign, whichever is applicable, the convention against Torture", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Implement the Protection of Children from Sexual Offences Act to increase the protection of children from sexual abuse", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Sign the Optional Protocol to the International Covenant on Economic, Social and Cultural Rights.", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Protect freedom and self-regulation of the press by clarifying and strengthening the competencies of the Rwanda Media Commission", - "values": [ - "4 - General action" - ] - }, - { - "text": "Make further efforts to increase access of young people and women to the labour market", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Introduce legislation prohibiting secrecy in adoption and guaranteeing the right of the child to know his or her origins", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Take steps to improve the situation of asylum seekers and refugees through, inter alia, discontinuing the practice of detention of unaccompanied children, providing identification documents for refugees and ensuring their access to social assistance, implementing integration and housing programmes, as well as refraining from detaining asylum seekers, except as a last resort", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Continue strengthening its institutional framework in conformity with the Convention on the Rights of Persons with Disabilities", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Maintain efforts to protect the rights of vulnerable groups, considering their specific needs and capabilities, through the empowerment of their rights, and fair reparation mechanisms", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Consider ratifying the International Convention on the Rights of Migrant Workers and Members of Their Families and ILO Convention No. 189 ", - "values": [ - "3 - Considering action" - ] - }, - { - "text": "Continue its efforts aimed at promoting education in rural areas, in particular for women, as contained in the Ninth Strategic Development Plan, as well as extending this plan if necessary ", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Commute all remaining death sentences into life imprisonment and consider ratifying the Second Optional Protocol to the International Covenant on Civil and Political Rights, aiming at the abolition of the death penalty", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Guarantee the civil registration of children born out of marriage, as well as of refugee and stateless children", - "values": [ - "4 - General action" - ] - }, - { - "text": "Consider ratifying ICERD, CRPD, CAT, the Optional Protocols to ICCPR OP-2, to CAT and CRPD, the Rome Statute, the Palermo Protocol and the Convention for the Prevention and Punishment of the Crime of Genocide", - "values": [ - "3 - Considering action" - ] - }, - { - "text": "Continue with initiatives envisaged to the implementation of plans and social development programmes, including those intended for early childhood care in the fields of health and education as tools to overcome poverty and extreme poverty", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Guarantee journalists and media personnel safety and security, when they are discharging their professional duties", - "values": [ - "4 - General action" - ] - }, - { - "text": "Ratify the the Optional Protocol to the Convention against Torture and establish a national preventive mechanism accordingly", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Continue to protect the rights of its children, by implementing successful programs that ensure 100% access to birth registration, as well as strengthening the legal framework that guarantees the universal right to education and promote emphasis on care, access and opportunities ", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Effectively follow up the guidelines adopted by the Dominican Republic and Haiti Joint Commission on concrete measures to safeguard the fundamental rights of people of Haitian origin ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Advance in reforming the Criminal Code to decriminalize abortion", - "values": [ - "4 - General action" - ] - }, - { - "text": "Consider establishing an independent national human rights institution", - "values": [ - "3 - Considering action" - ] - }, - { - "text": "Proceed with the establishment of a national human rights institution in compliance with the Paris Principles ", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Work effectively in order to bring all laws into line with the revised Constitution on the Rights of Persons with Disabilities", - "values": [ - "4 - General action" - ] - }, - { - "text": "Make progress in the abolition of the death penalty through ratification of the Second Optional Protocol to the International Covenant on Civil and Political Rights, aiming at the abolition of the death penalty, recognizing the existing moratorium", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Ratify all the human rights conventions to which it is not yet a party", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Further strengthen access of public services with cultural relevance to its people", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Ratify, without making any reservation, the International Convention for the Protection of All Persons from Enforced Disappearance, implement it into national law and recognize the competence of the Committee on Enforced Disappearances to receive and consider from or on behalf of victims or other States parties", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Take more concrete measures with a view to fostering a genuine human rights culture with due regard to national and regional particularities as well as historical, cultural and religious backgrounds", - "values": [ - "4 - General action" - ] - }, - { - "text": "Launch the human rights educational programmes for law enforcement officers on combating torture and respect for human rights", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Continue its efforts to prioritize the restoration of lasting peace in Casamance, including through its Casamance development pole project", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Intensify its efforts to realize gender equality, including by implementing the recommendation made by the Committee on the Elimination of Discrimination against Women in 2003 aimed at changing social stereotypes that encourage discrimination against women and impede their egalitarian performance in society ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Ratify the Convention on the Rights of Persons with Disabilities, signed in 2007", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Take further strong measures to prevent trafficking and exploitation of women and children ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Abolish the death penalty definitively in accordance with the Second Optional Protocol to ICCPR ", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Provide the proper framework for appeals within the 2009 antiterrorist law in order to guarantee respect for fundamental rights ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Declare a moratorium on executions with a view to abolishing the death penalty ", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Enact legislation to protect the land rights of indigenous persons and to ensure that their interests are safeguarded in the context of the exploitation of natural resources", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Guarantee the rights of women in law and in practice, including in the labour market, and combat violence against women and impunity for perpetrators", - "values": [ - "4 - General action" - ] - }, - { - "text": "Take measures towards the adherence to the World Health Organization standards on health service delivery", - "values": [ - "4 - General action" - ] - }, - { - "text": "Strengthen the enforcement of the Domestic Violence Act and adopt the Sexual Offences Bill", - "values": [ - "4 - General action" - ] - }, - { - "text": "Ratify and adapt its national legislation to the Arms Trade Treaty", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Look to identify a more accurate measure of the extent of domestic violence, thereby providing a tool to better measure the success of domestic violence prevention and conviction agencies and programmes.", - "values": [ - "3 - Considering action" - ] - }, - { - "text": "Ratify the International Convention on the Protection of the Rights of All Migrant Workers and Members of Their Families", - "values": [ - "3 - Considering action" - ] - }, - { - "text": "Further strengthen the promotion and protection of the human rights of the Myanmar people and the ethnic groups in Northern Rakhine State ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Ensure the prosecution and punishment of perpetrators of human trafficking, and ensure necessary assistance and protection services to victims", - "values": [ - "4 - General action" - ] - }, - { - "text": "Exert all efforts to redress discriminatory treatment imposed on ethnic minorities, including ethnic Koreans", - "values": [ - "4 - General action" - ] - }, - { - "text": "Oversee the strengthening of technical cooperation between Bhutan and various United Nations organs to enhance capacity in the field of exchange of technology and information ", - "values": [ - "1 - Minimal action" - ] - }, - { - "text": "Continue applying the measures adopted with a view to achieving the proposed goals relating to education", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Review all type of provisions that could lead to the discrimination of lesbian, gay, bisexual, transgender and intersex persons, as well as review labour provisions which may affect domestic workers", - "values": [ - "3 - Considering action" - ] - }, - { - "text": "Ratify the international human rights instruments, particularly the Convention on the Rights of Persons with Disabilities ", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Ensure that all national legislation complies with international standards on freedom of expression and media freedom, and take steps to prevent arbitrary suspension of media outlets", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Take further steps to tackle impunity, including independent investigations of killings by security forces ", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Take more effective measures to reduce violence against women, especially in the domestic sphere, to eliminate the occurrence of 'feminicidios' and to reduce gender inequality ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Ensure effective implementation of CEDAW at the federal, provincial and territorial levels with particular attention to Aboriginal women and girls ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Continue efforts in the fight against social inequality and poverty ", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Guarantee to women effective access to the courts and strengthen assistance and support to victims ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Improve the access of disabled children to education by increasing the number of specialized educational teams and customized facilities", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Abolish provisions in the Martial Law Act and section 17 of the Emergency Decree which grant immunity for criminal and civil prosecution to State officials", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Fight against disparities among cantons when it comes to the implementation of regulations favouring or protecting human rights", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Pursue efforts to promote the rights of women and adopt all necessary measures to fight against violence against them ", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Accede and fully align its national legislation with the Rome Statute of the International Criminal Court", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Ensure that the recently adopted Child Protection Code is duly implemented to prevent child labour", - "values": [ - "4 - General action" - ] - }, - { - "text": "Complete the process of the ratification of CRPD", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Explore alternative policies concerning asylum seekers and consider working with UNHCR to train its professionals who work with asylum seekers.", - "values": [ - "3 - Considering action" - ] - }, - { - "text": "Consider ratifying the Second Optional Protocol to the International Covenant on Civil and Political Rights, aiming at the abolition of the death penalty and commit current death sentences to life imprisonment as far as possible", - "values": [ - "3 - Considering action" - ] - }, - { - "text": "Establish a more effective mechanism of dialogue with human rights defenders in the area of sexual minorities ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Continue its engagement with the human rights mechanisms of the United Nations for the protection and promotion of human rights", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Implement the CEDAW recommendations in implementing measures that will enable and encourage more women's participation in state and municipal political life", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Ensure women's access to quality sexual education as well as to condoms and other means necessary for the practice of an informed and responsible sexual health ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Continue its efforts in combating drug trafficking and fighting this scourge", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Ratify at the earliest the Second Optional Protocol to International Covenant on Civil and Political Rights as well as Protocol No. 13 to the European Convention on Human Rights concerning the abolition of the death penalty ", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Work more strongly against incitement to racial hatred and racist violence against indigenous persons and persons of African descent", - "values": [ - "4 - General action" - ] - }, - { - "text": "Give continuity to the strengthening of national human rights institutions and mechanisms", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Ensure that conditions of detention are in line with international norms and standards in particular the detention of migrants and asylum seekers", - "values": [ - "4 - General action" - ] - }, - { - "text": "Genuine and full commitment to its commitments pursuant to the International Convention against the Recruitment, Use, Financing and Training of Mercenaries, as these activities have destructive impacts on human rights", - "values": [ - "4 - General action" - ] - }, - { - "text": "Adopt a permanent moratorium on the death penalty with the view of its future abolition", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Respect the legitimate rights of all its citizens to freedom of assembly, expression and participation in political societies", - "values": [ - "4 - General action" - ] - }, - { - "text": "Ratify the International Convention for the Protection of All Persons from Enforced Disappearance as well as the Second Optional Protocol to the International Covenant on Civil and Political Rights, aiming at abolition of the death penalty ", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Accede to the following international instruments: Optional Protocol to the Covenant on Civil and Political Rights, Second Optional Protocol to the Covenant on Civil and Political Rights, Optional Protocol to the Convention on the Elimination of Discrimination against Women, Convention against Torture, Optional Protocol to the Convention against Torture, International Convention on the Protection of the Rights of All Migrant Workers and Members of Their Families", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Bring into force the country's law that encompasses specific provisions for special categories of patients, such as mentally disabled offenders and those lacking capacity, to give consent for treatment ", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Investigate and prosecute all war crimes, regardless of the ethnic origins of the victims and the perpetrators of the crimes", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Strengthen its policies to improve labour standards for all workers and continue its efforts in reducing child labour ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Adhere to and adapt its national legislation with the Rome Statute", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Raise the minimum age of criminal responsibility to an acceptable level, in compliance with international standards \n", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Intensify awareness-raising campaigns about albinism to combat prejudice, stigmatization, discrimination and violence against persons with albinism", - "values": [ - "4 - General action" - ] - }, - { - "text": "A participatory and inclusive process with civil society in the implementation of UPR recommendations", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Implement legislative instruments in a manner that ensures full freedom of expression, leading to active and genuine civil society participation in the electoral and state-building processes", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Continue its efforts in the fight against violence and discrimination based on sexual orientation and gender identity ", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Ratify the International Covenant on Civil and Political Rights and the International Covenant on Economic, Social and Cultural Rights, as well as the International Convention on the Elimination of All Forms of Racial Discrimination", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Speed up the legislative process to operationalize the draft law amending the nationality act so as to address the problem of statelessness in the country", - "values": [ - "4 - General action" - ] - }, - { - "text": "Implement effective measures to tackle child labour ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Increase efforts to implement the laws on violence against women and to extend the area of influence of the National Institute for Women, providing legal assistance to victims of domestic violence ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Guarantee better the rights of the child, especially the rights to civil registry, education, health and protection against violence.", - "values": [ - "4 - General action" - ] - }, - { - "text": "Ensure that everyone enjoys the same protection against all forms of discrimination, in all circumstances", - "values": [ - "4 - General action" - ] - }, - { - "text": "Continue its efforts for stability, national reconciliation and the protection of human rights", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Take into account the recommendations of the National Commission for Equal Opportunities concerning the need to amend the Equal Opportunities legislation so that it covers the elderly, persons living with HIV and discrimination on the grounds of sexual orientation", - "values": [ - "4 - General action" - ] - }, - { - "text": "Adopt legislation against gender violence", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Promote a full registration of children so as to confront the situation of food insecurity and malnutrition", - "values": [ - "4 - General action" - ] - }, - { - "text": "Ratify ICCPR, ICESCR and CAT ", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Strengthen the role of the Human Rights Defender institution to allow the Defender to increase his monitoring and expand his work to the regions ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Finalize a national action plan on business and human rights in order to implement the United Nations Guiding Principles on Business and Human Rights", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Introduce legislation criminalizing FGM and domestic violence and launch an awareness and education campaign as part of implementing the legislation", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Adopt further measures aimed at better guaranteeing freedom of religion, particularly by eliminating bureaucratic and administrative obstacles, which hinder the activities carried out by religious communities and groups ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Consider further facilitation of the acquisition of citizenship and increased efforts to promote the registration of newborns ", - "values": [ - "3 - Considering action" - ] - }, - { - "text": "Continue applying special legal measures to juvenile from the detention stage until confinement and enforcement of the sentence, including by considering incorporating restorative justice principles in the juvenile justice system", - "values": [ - "3 - Considering action" - ] - }, - { - "text": "Ensure that any physical and moral harm against journalists or human rights defenders is subjected to an investigation and that those responsible are duly prosecuted ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Ensure the adoption of a comprehensive law on violence against women", - "values": [ - "4 - General action" - ] - }, - { - "text": "Continue strengthening its actions on the elimination of violence against women", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Take necessary measures to ensure that the prohibition of FGM has the desired effect on the ground.", - "values": [ - "4 - General action" - ] - }, - { - "text": "Take more resolute legal and practical measures to combat intolerance based on ethnic origin and take further steps to promote mutual understanding and respect between persons belonging to various groups", - "values": [ - "4 - General action" - ] - }, - { - "text": "Further enhance the integration of indigenous peoples and communities of migrants by granting them more rights and by combating discrimination and racism ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Swiftly ratify the Rome Statute of the International Criminal Court", - "values": [ - "3 - Considering action" - ] - }, - { - "text": "Continue implementing the remaining accepted recommendations of the Council from the first universal periodic review cycle", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Continue with its efforts to strengthen the effectiveness and independence of the justice system", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Implement the 2008 recommendation of the Human Rights Committee to repeal section 146 of the Criminal Code, which criminalizes sexual relations between consenting adults of the same sex ", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Establishment of an inter-institutional forum on human rights issues for the preparation of periodic reports", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Encourage initiatives aimed at promoting respect and religious tolerance and cultural diversity", - "values": [ - "4 - General action" - ] - }, - { - "text": "Take necessary measures to ensure equal treatment as well as consider ways of helping to eradicate stereotypes for women in rural areas ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Reintroduce the moratorium on executions as a first step towards the abolition of the death penalty ", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Adopt measures to reduce the negative impact of mining on the environment and the rights of indigenous peoples and their lands, in conformity with international standards", - "values": [ - "4 - General action" - ] - }, - { - "text": "Take more vigorous public action against all forms of child trafficking for sexual exploitation, labour or other purposes", - "values": [ - "4 - General action" - ] - }, - { - "text": "Further recognize the rights of same-sex couples by legalizing samesex marriage and adoption ", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Continue strengthening the efforts undertaken to help young people and adolescents ", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Carry out the necessary legal reforms to fully abolish the death penalty and accede to the Second Optional Protocol to the International Covenant on Civil and Political Rights, aiming at the abolition of the death penalty ", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Effectively implement the 2009 Anti-Torture Act, with a particular focus on ensuring that all alleged victims of torture and ill-treatment have effective access to a medical evaluation of their injuries by institutionalising the use of the Istanbul Protocol, including by providing guidelines to judges, prosecutes, forensic doctors and medical personnel dealing with detained persons, to detect and document physical and psychological trauma of torture ", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Develop a comprehensive national action plan on human rights", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Repeal legislation criminalizing women and girls for having an abortion, as well as healthcare providers performing such services, and take measures to allow legal and safe abortions at least in cases of rape or incest, in cases where the life or health of the mother is at risk, or where the foetus is diagnosed with grave health deficiencies", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Take steps to ensure the legal recognition of all religions and grant each religious minority the possibility of legal registration with a specific ministerial office as a legal public entity", - "values": [ - "4 - General action" - ] - }, - { - "text": "Improve detention conditions in the correctional institutions and temporary detention centers of asylum seekers ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Repeal article 338 of the penal code, which criminalizes sexual acts between two consenting adults of the same sex", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Strengthen interministerial coordination for a better implementation of the current Children's Action Plan ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Strengthen the fight against all forms of child labour by investigating cases of the worst forms of child labour, bringing alleged perpetrators to justice and ensuring that victims are adequately protected, assisted and compensated", - "values": [ - "4 - General action" - ] - }, - { - "text": "Introduce legislation to ensure assistance and protection for unaccompanied children seeking asylum", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Withdraw its reservations to the CRC and fully incorporate that instrument into its national legislation, as well as consider the ratification of the Optional Protocol to the Convention on the Rights of the Child on the sale of children, child prostitution and child pornography ", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Recommended that a national commission on human rights be established in accordance with the Paris Principles.", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Accede to the Optional Protocol to the Convention against Torture and establish the national preventive mechanism accordingly ", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Establish an effective and inclusive process to follow up on the recommendations of the Working Group \n", - "values": [ - "4 - General action" - ] - }, - { - "text": "Extend invitations to the Special Rapporteur on torture and the Special Rapporteur on human rights defenders", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Promptly and impartially investigate all allegations of torture, and prosecute those responsible for ordering, carrying out or acquiescing in torture or ill-treatment", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Stop all settlement activities", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Consider the establishment of an independent national human rights institution in accordance with the Paris Principles", - "values": [ - "3 - Considering action" - ] - }, - { - "text": "Complete the national process on the establishment of a National Preventative Mechanism in accordance with OP-CAT", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Adopt the WHO Strategic Approach to strengthen sexual and reproductive health policies and programmes", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Continue to implement policies and develop infrastructure that increase access to employment, particularly for youths", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Extend an open invitation to special procedures", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Raise the level of human rights awareness in society", - "values": [ - "4 - General action" - ] - }, - { - "text": "Further enhance effective access to legal aid for women from all regions, including indigenous women and women of African descent ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Take measures to reduce unemployment, especially among young people, and promote their integration into the social and political life of the country, with the goal of maintaining and enhancing its stability and security", - "values": [ - "4 - General action" - ] - }, - { - "text": "Declare an official moratorium on the use of the death penalty with a view to its abolition from the penal code and commute the sentences of prisoners already sentenced to death", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Continue its efforts to establish a national human rights institution in line with the UN Paris Principles", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Continue its efforts for the full implementation of the Convention against Torture", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Continue to support the rights of the LGBTI community through its human rights framework ", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Continue its efforts to break the linkages between elements of the armed forces, State security forces and illegal paramilitary groups.", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Consider declaring a moratorium on the death penalty ", - "values": [ - "3 - Considering action" - ] - }, - { - "text": "Increase its efforts to ensure full respect of the rights of persons belonging to minorities and indigenous groups, including education of their children ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Take all necessary measures, as appropriate, to ensure the legal protection of foreign workers through policies designed at preventing any form of abuse", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Develop a national plan of action to implement the Guiding Principles on Business and Human Rights", - "values": [ - "4 - General action" - ] - }, - { - "text": "Pursue sustained policies aimed at the promotion of women\u2019s full and equal participation in decision-making at all levels of government", - "values": [ - "4 - General action" - ] - }, - { - "text": "Provide adequate funding and resources for the work of the Human Rights and Anti-Discrimination Commission", - "values": [ - "4 - General action" - ] - }, - { - "text": "Stop and prevent violations and abuses of children's rights, including by actively preventing and combating the recruitment and use of children in hostilities", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Continue completing the process of reforming the justice system and guarantee the independence of the judiciary in accordance with the relevant constitutional requirements", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Continue its efforts to build the capacities of the health and social services sectors with the aim of providing necessary care for persons with disabilities, including children with disabilities ", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Consideration be given to revising the Criminal Code in order to repeal the provision that criminalizes the sexual activity between consenting adults.", - "values": [ - "3 - Considering action" - ] - }, - { - "text": "Consider the possibility of establishing a national human rights institution in line with the Paris Principles that govern these mechanisms, while also asking for technical and financial assistance ", - "values": [ - "3 - Considering action" - ] - }, - { - "text": "Adopt a comprehensive anti-discrimination law which includes all grounds for discrimination", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Adopt measures to guarantee adequate protection and respect for the right to information, and freedoms of expression, and the press ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Continue its efforts to achieve other Millennium Development Goals, in accordance with the human rights priorities that the State has established in its national policy", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Continue with its efforts to combat violence against women and children, especially domestic violence and violence related to accusations of sorcery", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Develop and submit proposals for capacity development assistance in disaster management, proposals might include, for example, strengthening the knowledge of relevant national stakeholders of the impact of climate change and of sound disaster management from a human rights perspective", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Lift its reservations to article 9 of the Convention on the Elimination of All Forms of Discrimination against Women ", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Call for the international community to provide full technical and financial support as a way of improving the national machinery for the advancement of women.", - "values": [ - "1 - Minimal action" - ] - }, - { - "text": "Intensify efforts to implement its express commitment to establish a national human rights institution in accordance with the Paris Principles", - "values": [ - "4 - General action" - ] - }, - { - "text": "Ensure that family reunification of refugees and migrants are respected in the asylum process", - "values": [ - "4 - General action" - ] - }, - { - "text": "Annul the provision of medical treatment without consent as laid down in Icelandic law", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Strengthen the judiciary in order to guarantee its investigation and prosecution capacity so as to ensure access to justice for all citizens, in particular victims of sexual violence ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Strengthen the independence of the national mechanism for the prevention of torture and other forms of ill-treatment, including through the provision of a separate and adequate budget", - "values": [ - "4 - General action" - ] - }, - { - "text": "Maintain an interfaith harmony, in particular the very useful initiative to hold conferences such as those held in 2003, 2006 and 2009, which brought together senior representatives of world and traditional religions", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Adopt legislative provisions for the prohibition, punishment and effective prevention of the practice of female genital mutilation ", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Continue efforts to fully ensure respect for fundamental freedoms, especially the freedom of assembly and the freedom of association, as well as the freedom of the press", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Enhance the transparency of its public decision-making and the use of public resources for public purposes ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Withdraw its reservations to the 1951 Refugee Convention ", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Consider the possibility of ratifying the International Covenant on Civil and Political Rights, the International Covenant on Economic, Social and Cultural Rights, the International Convention for the Protection of All Persons from Enforced Disappearance and the Convention on the Rights of Persons with Disabilities", - "values": [ - "3 - Considering action" - ] - }, - { - "text": "Continue its efforts with a view to definitely abolishing the death penalty, and adhere to the Second Optional Protocol to the International Covenant on Civil and Political Rights, aiming at the abolition of the death penalty ", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Take steps to incorporate the crime of torture as defined by article 1 of the Convention against Torture into domestic law", - "values": [ - "4 - General action" - ] - }, - { - "text": "Continue to facilitate and strengthen the work of NGOs and other civil society actors, as well as guarantee their social media ", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Intensify efforts to fight violence against women by the public awareness-raising campaigns, by adequately resourcing the relevant initiatives and by training law enforcement personnel", - "values": [ - "4 - General action" - ] - }, - { - "text": "Revise the minimum wage to guarantee the protection of workers by ensuring a decent standard of living, in consultation with all relevant stakeholders", - "values": [ - "3 - Considering action" - ] - }, - { - "text": "Intensify efforts to prevent overcrowding in prisons", - "values": [ - "4 - General action" - ] - }, - { - "text": "Take more steps to protect the rights of all persons under legal processes of criminal justice and to guarantee due processes are applied to all of them", - "values": [ - "4 - General action" - ] - }, - { - "text": "Continue the close cooperation with OHCHR and the international community in order to face the challenges in terms of transitional justice for human rights violations occurred during the current crisis ", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Enhance efforts to fight all forms of discrimination against women by ensuring effective implementation of existing legislation", - "values": [ - "4 - General action" - ] - }, - { - "text": "Strengthen the administrative and budgetary autonomy of the Senegalese Committee for Human Rights", - "values": [ - "4 - General action" - ] - }, - { - "text": "Ensure greater civic education on electoral and Constitutional rights to ensure that referendums are useful and effective", - "values": [ - "4 - General action" - ] - }, - { - "text": "Carry out further activities aimed at supporting the rehabilitation and reintegration of remand prisoners and convicts by organizing professional training for them ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Ensure the independence of the Office of the Ombudsman in accordance with the Paris Principles ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Continue to increase its efforts to ensure the enjoyment of socioeconomic rights by citizens ", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Ensure that basic education is compulsory and step up its efforts to address the issue of high drop-out rates in schools and in promoting the right of girls to education ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Adopt a comprehensive law on non-discrimination based on international human rights standards, including gender identity and expression, and sexual orientation, which would enhance and specify the protection provided for in article 321 of the Penal Code, and which would create an independent body to promote non-discrimination and equality, and monitor compliance with this law by public and private actors", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Terminate the practice of holding persons suffering from mental illness in prisons and prison psychiatric wards ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Continue efforts and engage in a structured interfaith dialogue, including religious minorities", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Take measures to ensure that abuses of force committed by security state agents, including summary executions, are promptly processed", - "values": [ - "4 - General action" - ] - }, - { - "text": "Continue to combat poverty with the assistance from international community", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Take all necessary measures to protect schools from military use by fighting forces", - "values": [ - "4 - General action" - ] - }, - { - "text": "Intensify its efforts to ensure that education, health, employment and social protection programmes are inclusive and not discriminatory. Apply also these measures to all the countries and territories that form the kingdom of the Netherlands ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Bring its methods of combating the use of illegal drugs into line with international standards", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Make all efforts to increase its overseas development assistance to bring it more in line with the promised target of 0.7 per cent of gross national income, thus facilitating the promotion of human rights in poor countries ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Continue to intensify its efforts to achieve MDG 5 by the given deadline", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Adopt legislative measures to check trafficking in women and girls", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Ensure the protection of workers exercising the right to freedom of peaceful assembly and association and enable the full implementation of the right to freedom of expression in the country ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Continue its efforts to prevent and combat domestic violence", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Continue to undertake comprehensive training programmes for local officials, monitor progress on implementation of legislation.", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Reinforce measures aimed at combating ethnic, racial and gender based discrimination. Bearing in mind that Bosnia and Herzegovina is currently holding the chairmanship of the Decade for Roma Inclusion, undertake more measures to promote the inclusion of persons belonging to the Roma minority during the tenure of this initiative", - "values": [ - "4 - General action" - ] - }, - { - "text": "End discrimination against same-sex couples in Northern Ireland by bringing the relevant law into line with other parts of the United Kingdom", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Adopt specified standards for accommodation of unaccompanied children and establish additional conditions for the appointment of a guardian for them ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Recommends that Saint Lucia Requests technical assistance from the OHCHR and the international community and urges the Office and the international community to facilitate such request and to support the country's overall development goals and aspirations ", - "values": [ - "1 - Minimal action" - ] - }, - { - "text": "Review the death penalty with the intention of introducing a moratorium and abolishing it. ", - "values": [ - "3 - Considering action" - ] - }, - { - "text": "Adopt and implement effective laws to prevent, suppress and eliminate discrimination against women and to combat domestic violence.", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Pursue its commitment to the ratification of international conventions by ratifying fundamental instruments, in particular the International Covenant on Economic, Social and Cultural Rights, the International Convention on the Protection of All Migrant Workers and Members of Their Families", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Ensure the anti-terrorism measures in line with full respect for fundamental human rights while combating terrorism", - "values": [ - "4 - General action" - ] - }, - { - "text": "Develop judicial assistance and protection mechanisms for victims of domestic violence.", - "values": [ - "4 - General action" - ] - }, - { - "text": "With the support of the international community, persevere in its efforts in education in order to guarantee the realization of this right for all and integrate education and human rights training in its curriculum. ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Ensure that the Senegal Human Rights Committee has the necessary resources to enable it to function independently and in accordance with the Paris Principles", - "values": [ - "4 - General action" - ] - }, - { - "text": "Take measures necessary to define and criminalize torture in the forthcoming Criminal Code", - "values": [ - "4 - General action" - ] - }, - { - "text": "Continue efforts, in consultation with indigenous peoples, towards addressing the issue of the rights of indigenous peoples through the application of Convention No. 169 and the realization of the principles established in the United Nations Declaration on the Rights of Indigenous Peoples", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Take further steps to reform the judicial and penal system and create adequate incarceration centres in conformity with international standards", - "values": [ - "4 - General action" - ] - }, - { - "text": "Ensure its Criminal Code provisions do not criminalize individuals based on sexual orientation", - "values": [ - "4 - General action" - ] - }, - { - "text": "Ensure effective implementation of the provisions set out in the Convention on the Rights of Persons with Disabilities", - "values": [ - "4 - General action" - ] - }, - { - "text": "Adopt temporary special measures in all areas in which women are underrepresented, especially in the labour market and higher education ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Continue with the awareness campaigns against gender discrimination, domestic violence and sexual assault and establish mechanisms to effectively act against these sorts of aggressions", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Increase resources to prisons to improve conditions, to the police to develop specialties in forensics and evidence collection, and the Department of Public Prosecutions to hasten the speed of trial procedures", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Strengthen efforts to combat family violence against women and children with a particular focus on indigenous communities ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Speed up the law reforms and public administration programmes aimed at deepening and broadening democratic norms, principles and standards.", - "values": [ - "4 - General action" - ] - }, - { - "text": "Ratify, at the earliest possible date, the Optional Protocol to the Convention against Torture and Other Cruel, Inhuman or Degrading Treatment or Punishment and establish preventive mechanism accordingly", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Persist in its reforms as set out in the Road Map for Democracy and Sustainable Socio-Economic Development, and to request aid and assistance from the international community for that purpose", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Take adequate measures to ensure full compatibility of national legislation with the provisions and principles of the Convention on the Rights of the Child and its Optional Protocols", - "values": [ - "4 - General action" - ] - }, - { - "text": "Maintain its outstanding efforts in providing health and educational services free to all its citizens", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Continue efforts aimed at promoting awareness of the culture of human rights in the Gambian society", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Promote the approval of the national policy and action plan for human rights", - "values": [ - "4 - General action" - ] - }, - { - "text": "Accelerate citizenship verification processes so that populations now deprived of identity documents do not remain in an illegal situation", - "values": [ - "4 - General action" - ] - }, - { - "text": "Pay attention to the recommendations made by the Human Rights Committee in 2011, on the legislative reforms to be adopted to guarantee legal equality between men and women, in particular the new Criminal Code, and the Code of the Person and Family", - "values": [ - "4 - General action" - ] - }, - { - "text": "Pass laws prohibiting female genital mutilation", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Establish indicators to measure child poverty and consider adopting additional measures for reducing poverty amongst youth ", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Ratify, as soon as possible, the International Convention on the Protection of the Rights of All Migrant Workers and Members of Their Families", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "In order to further prevent impunity, broaden victim participation in court proceedings, as well as ensure witness protection", - "values": [ - "4 - General action" - ] - }, - { - "text": "Ratify the Second Optional Protocol to the International Covenant on Civil and Political Rights, aiming at the abolition of the death penalty, as well as Protocols No. 6 and No. 13 to the European Convention for the Protection of Human Rights and Fundamental Freedoms, with the aim of abolishing the death penalty", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Adopt effective measures to stabilize the situation in the area of rights of migrants, including the end of the practice of unauthorized forced repatriation of migrants", - "values": [ - "4 - General action" - ] - }, - { - "text": "Explicitly prohibit by law and criminalize the use of children in hostilities by armed forces and the recruitment and use of children in hostilities by non-State armed groups ", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Take urgent steps to facilitate the work of human rights defenders and civil society, including through guaranteeing freedom of expression and the media and protection of all persons from intimidation, threats, attacks or reprisals for seeking to cooperate with the United Nations, and through allowing unimpeded humanitarian access to conflict affected populations, with appropriate protection to humanitarian actors ", - "values": [ - "4 - General action" - ] - }, - { - "text": "In accordance with the Constitution, to allow ethnic minorities to fully exercise their human rights, to preserve their cultural identity and to ensure their participation in decision-making; (and address these issues in the National Plan of Action)", - "values": [ - "4 - General action" - ] - }, - { - "text": "Decriminalize same-sex relations and review national legislation with a view to promoting equality and preventing discrimination of any kind", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Further strengthen its engagement in the promotion of prevention of atrocities by undertaking efforts to prevent atrocities at the national level, since history shows that no country is immune to atrocities", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Take further measures to provide protection and assistance to vulnerable social groups, including the elderly, persons with disabilities, poor families, orphans and others ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Strengthen the deployment of specific measures to foster the rights of vulnerable social groups, including children, adolescents, women, refugees and internally displaced people, as well as persons with disabilities", - "values": [ - "4 - General action" - ] - }, - { - "text": "Step up efforts within the framework of the Alliance of Civilizations for the promotion of the dialogue and rapprochement between religions and peoples", - "values": [ - "4 - General action" - ] - }, - { - "text": "Actively protect the rights to freedom of expression and to peaceful assembly by ensuring that any restriction on those rights is lawful, necessary and proportionate ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Ensure, as a matter of urgency, that the national portion of the budget for the Extraordinary Courts is met ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Abolish all protection and impunity for perpetrators of honour killings", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Continue to address all forms of political, economic and social discrimination against the Maori by meeting their various demands for constitutional and legal reforms and recognition.", - "values": [ - "4 - General action" - ] - }, - { - "text": "Amend the law and expressly prohibit corporal punishment", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Make more efforts to raise awareness among the public in general, and in particular, by the law enforcement bodies, that domestic violence must be dealt with as a serious public crime ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Consider redoubling its efforts in the fight against terrorism", - "values": [ - "3 - Considering action" - ] - }, - { - "text": "Consider ratifying the Convention on the Protection of the Rights of All Migrant Workers and Members of Their Families ", - "values": [ - "3 - Considering action" - ] - }, - { - "text": "Accede to the Convention relating to the Status of Stateless Persons", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Share best practices with interested developing countries.", - "values": [ - "1 - Minimal action" - ] - }, - { - "text": "Implement standard procedures to identify victims of human trafficking, establish a referral mechanism to facilitate the provision of protective services for them and dedicate financial or in kind support to NGOs providing services to victims ", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Ratify the remaining international human rights instruments and implement them and follow up on them", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Ratify the pending principle international human rights treaties, such as the Rome Statute, the International Convention for the Protection of All Persons from Enforced Disappearance (CED) and OP-CAT ", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Repeal all legislative and administrative measures aimed at the judaization of occupied East Jerusalem, including those that allow excavations in the vicinity of the AlAqsa Mosque", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Continue intensifying its cooperation with the UN human rights mechanisms", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Provide them with the appropriate technical assistance in order to enhance their capacities in this aspect ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Strengthen its commitment for implementing all its programs and policies in the social sector", - "values": [ - "4 - General action" - ] - }, - { - "text": "Increase the age of leaving care to 18 years and enact and implement legislation aimed at improving support for children in care as well as after leaving care, in particular with regard to access to education and vocational training", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Improve the protection of children by fighting against child labour ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Consider replacing the National Observatory for Human Rights with a permanent and independent human rights institution, in accordance to the Paris Principles ", - "values": [ - "3 - Considering action" - ] - }, - { - "text": "Take effective legislative and practical measures for the comprehensive protection and promotion of civil, social, economic and cultural rights of indigenous peoples", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Consider reviewing its domestic legislation on migration with the aim of aligning it with the international laws and standards ", - "values": [ - "3 - Considering action" - ] - }, - { - "text": "Adopt the draft law on trafficking in persons ", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Further take measures in order to improve its legislation, policy and practice on gender equality and on prevention and response to gender-based violence", - "values": [ - "4 - General action" - ] - }, - { - "text": "Ratify the Convention against Torture and the Optional Protocol ", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Explicitly prohibit corporal punishment in all settings, including the home, schools and alternative care facilities, and establish appropriate complaints mechanism for children", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Ensure that all ethnic groups are treated equally and have equal access to social services, including health and education", - "values": [ - "4 - General action" - ] - }, - { - "text": "Decriminalize consensual sexual relations between same-sex adults, and combat cases of discrimination against those persons", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Continue its efforts aimed at promoting and protecting all human rights and to continue its cooperation with human rights mechanisms, and to work towards the establishment of the national human rights institution and the implementation of national actions plans, in particular regarding equality between the two sexes ", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Continue its efforts in order to address the issue of internal displacement", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Reinvigorate the dialogue with neighbouring countries in order to allow for the return of Bhutanese refugees still living in camps across the border ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Consider the possibility of ratifying the International Convention for the Protection of All Persons from Enforced Disappearance (CED) ", - "values": [ - "3 - Considering action" - ] - }, - { - "text": "Ensure effective enforcement of the Law on Violence against Women ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Acknowledge and guarantee the indigenous peoples' rights, including by fully engaging indigenous peoples of the country in decision-making in all the matters that affect them", - "values": [ - "4 - General action" - ] - }, - { - "text": "Remove the death penalty from its criminal statutes and ratify ICCPR-OP-2 ", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Develop cooperation with the ICRC, allowing it access to all places where persons are or may be deprived of their liberty ", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Ratify the ICRMW, and ensure its domestic implementation", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Continue Governments' efforts to combat poverty", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Pay particular attention to indigenous Pygmy peoples, in order to guarantee their access to land and natural resources ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Guarantee freedom of the media in the draft media law in accordance with international standards ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Consider adopting a holistic approach in order to enable the totality of IDPs to sustain themselves and have access to employment, education and health care ", - "values": [ - "3 - Considering action" - ] - }, - { - "text": "Continue looking into the promotion of the status of women with a view to ensure that violence and all sorts of discrimination against women are effectively eliminated and in line with international standards", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Reinforce training of police and justice officials on the issue of violence against women in order to improve the response by the Mexican authorities", - "values": [ - "4 - General action" - ] - }, - { - "text": "Take measures to ensure that torture is defined and listed as a specific offence within Benin's criminal law.", - "values": [ - "4 - General action" - ] - }, - { - "text": "Continue the implementation of the necessary affirmative measures to achieve gender parity ", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Reinstate the moratorium on the use of death penalty in accordance with the Nigeria's commitment during the Universal Periodic Review in 2009", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Consider the possibility of acceding to the Optional Protocols to the Convention on the Rights of the Child.", - "values": [ - "3 - Considering action" - ] - }, - { - "text": "Put a special emphasis on gender equality, the effectiveness protection of children and the protection of victims of albinism", - "values": [ - "4 - General action" - ] - }, - { - "text": "Continue specially its efforts to combat human trafficking ", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Ensure that men and women enjoy their human rights on an equal footing ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Report back to the Human Rights Council about further concrete measures taken with regard to the improvement of prison conditions according to international standards, and that the recommendations of the different treaty bodies in this regard be implemented as soon as possible.", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Step up efforts in formulating protocols to implement the indigenous peoples' right to free, prior and informed consent", - "values": [ - "4 - General action" - ] - }, - { - "text": "Ratify the Rome Statute of the International Criminal Court (ICC) and fully align its national legislation with all obligations under the Rome Statute, including by incorporating provisions to cooperate promptly and fully with the ICC, and to investigate and prosecute genocide, crimes against humanity and war crimes effectively before its national courts", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Ensure the effective implementation of the National Plan for the Integration of Persons with Disabilities, especially regarding access to education and employment", - "values": [ - "4 - General action" - ] - }, - { - "text": "Continue commuting death sentences and continue the de facto moratorium on the application of the death penalty, maintained since 1993, with a view to abolishing it", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Continue making efforts in the field of training and education in human rights for law enforcement agencies", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Prevent and punish all forms of violence against women, including spousal rape", - "values": [ - "4 - General action" - ] - }, - { - "text": "In light of the recent report by the Council of Europe's Committee for the Prevention of Torture, continue investments in prison and detention facilities, with a particular focus on improving material conditions for suspects held in police establishments and pre-detention centres ", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Intensify its efforts to eliminate violence against women and to develop a national plan of action", - "values": [ - "4 - General action" - ] - }, - { - "text": "Seek the support and technical assistance of OHCHR to ensure effective compliance by the Fiji Human Rights Commission with the Paris Principles", - "values": [ - "1 - Minimal action" - ] - }, - { - "text": "Ensure the independence and impartiality of the judiciary", - "values": [ - "4 - General action" - ] - }, - { - "text": "Continue the process of eliminating the differences between the Caribbean and the European parts of the Netherlands as soon as possible", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Eliminate overcrowding in prisons and improve conditions in its penitentiary system in line with the United Nations Standard Minimum Rules for the Treatment of Prisoners", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Continue acceding to the main international human rights instruments to which it is not yet a party, particularly, to the International Convention for the Protection of All Persons from Enforced Disappearance", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Review its newly adopted penal code with a view to ensuring its compliance with the permissible limitations to freedom of expression as stated in ICCPR ", - "values": [ - "3 - Considering action" - ] - }, - { - "text": "Repeal the blasphemy law and respect and guarantee freedoms of religion or belief and of expression and opinion for all, including Ahmadis, Hindus and Christians", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Raise the minimum age of marriage to 18 for both boys and girls", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Prioritise the completion of a comprehensive asylum and refugee law that makes provision, inter alia, for the strengthening of the capacity of the National Refugee Assistance Committee to ensure it operates effectively in handling its mandate", - "values": [ - "4 - General action" - ] - }, - { - "text": "Take action in order to avoid discrimination of LGBT persons, in practice and through law ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Take further steps to ensure the representation of women in senior levels within the public and private sectors is increased ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Undertake legislative amendments to ensure migrant women and girls have equal access to nationals to public health-care services", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Strive to eradicate the root causes of human trafficking", - "values": [ - "4 - General action" - ] - }, - { - "text": "Ratify ICRMW ", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Step up its efforts to protect all citizens from violence and discrimination, including lesbian, gay, bisexual and transgender persons", - "values": [ - "4 - General action" - ] - }, - { - "text": "Carry on the legislative amendments to repeal all discriminatory provisions against women and adopt a comprehensive law on violence against women ", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Take urgent action to protect human rights defenders, non- governmental organizations and journalists, and to investigate and prosecute all who threaten them", - "values": [ - "4 - General action" - ] - }, - { - "text": "Sign and ratify CRPD ", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Continue adopting the necessary measures to eliminate wage discrimination at work between men and women ", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Continue to take steps to address domestic violence and human trafficking through education and awareness campaigns and services to victims, as well as ensuring the effective application of the law against perpetrators", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Abolish by law the death penalty and proceed to the ratification of the Second Optional Protocol to the International Covenant on Civil and Political Rights", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Further strengthen the National Independent Human Rights Commission through provision of required resources ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Reconsider, in the same spirit of openness, the possibility of ratifying the International Convention on the Protection of the Rights of All Migrant Workers and Members of Their Families, in accordance with paragraph 12.1 of recommendation no. 1737 of 17 March 2006 of the Parliamentary Assembly of the Council of Europe, of which Spain is an active member ", - "values": [ - "3 - Considering action" - ] - }, - { - "text": "Provide effective training to public services personnel in the application of non-discrimination laws and standards in order to combat prejudice and discriminatory behaviour", - "values": [ - "4 - General action" - ] - }, - { - "text": "Abolish definitively the death penalty.", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Proceed with the ratification of relevant international instruments not yet ratified and monitor implementation of instruments already ratified", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Continue to strengthen the provision of health-care services to its people, particularly women and children", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Ensure that a gender perspective is fully integrated in the next stages of the review, including the outcome of the UPR process.", - "values": [ - "4 - General action" - ] - }, - { - "text": "Withdraw its reservation on pertinent articles of the International Convention on the Elimination of All Forms of Racial Discrimination, the International Covenant on Economic, Social and Cultural Rights, the International Covenant on Civil and Political Rights and the Optional Protocol to the Convention on the Rights of the Child on armed conflict ", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Fully implement and strengthen the legislative framework to fight against domestic violence, sexual aggressions and rape, including marital rape", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Establish measures and policies to address the stigmatization of persons with albinism and ensure they are effectively protected against discrimination", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Follow up on the recommendations addressed to it by the treaty bodies and special procedures ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Continue, in cooperation with the World Health Organization, to improve its national health care system and ensure access to quality health care for all ", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Review its respective Decree of 2016 related to protection of human rights defenders in order to ensure wider participation of civil society and enhanced protection of human rights defenders and their families", - "values": [ - "3 - Considering action" - ] - }, - { - "text": "Further improve the conditions of women's in rural areas", - "values": [ - "4 - General action" - ] - }, - { - "text": "Amend national legislation that entails discriminatory practices, prosecution and punishment of persons for their sexual orientation or gender identity, and adopt measures to promote tolerance in the society through education and awareness campaigns", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Ratify the Rome Statute and take necessary measures to ensure its implementation in the national legislation ", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Continue preventing and combating violence against women, including domestic violence ", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Launch information campaigns about HIV/AIDS, through the media and through door to door action on how to prevent the transmission of the virus, namely by the use of condoms", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Actively combat any form of racism, xenophobia and intolerance ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Take further steps to restore security with due consideration to the rule of law and human rights", - "values": [ - "4 - General action" - ] - }, - { - "text": "Repeal the National Security Act and ensure institutional and legislative reform of the National Intelligence and Security Services, including the establishment of a judicial oversight mechanism ", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Finalize the process already under way for the ratification of the Convention on the Rights of Persons with Disabilities ", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Ensure the effective implementation of the National Action Plan on Human Rights", - "values": [ - "4 - General action" - ] - }, - { - "text": "Ratify the Optional Protocol to the Convention on the Rights of the Child (CRC) on the involvement of children in armed conflict.", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Design and implement the National Plan on Business and Human Rights in line with the United Nations Guiding Principles on the matter", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Ensure access to adequate shelter, psychosocial, legal, and health care services for survivors of domestic violence, including in rural areas", - "values": [ - "4 - General action" - ] - }, - { - "text": "Strengthen measures taken to fight poverty and unemployment, including through the intensified implementation of programmes in the National Development Plan for 2012-2015 in order to combat poverty and foster development", - "values": [ - "4 - General action" - ] - }, - { - "text": "Continue efforts to protect children from sexual exploitation, protect unaccompanied refugee children and protect them from enforced disappearance", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Work closely with the international community in the humanitarian response to the ongoing drought and to ensure that humanitarian aid is distributed in a non-political, non-discriminatory manner", - "values": [ - "4 - General action" - ] - }, - { - "text": "Implement international human rights obligations within Federally Administered Tribal Areas and refrain from detention that contravenes international standards of due process", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Continue its efforts to maintain social stability and to promote economic development, and make a good effort to develop people's lives and improve it ", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Deepen legislative endeavours in the fight against gender-based violence, within as well as outside of marriage", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Establish an independent national human rights institution with a broad protection mandate and with adequate financial and human resources, in accordance with the Paris Principles", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Step up its efforts to ratify the Convention on the Rights of Persons with Disabilities ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Ratify the Convention against Torture and its Optional Protocol and incorporate it into domestic law, in line with the new Constitution", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Strengthen its policies to provide care and support for children infected or affected by HIV/AIDS, particularly those orphaned", - "values": [ - "4 - General action" - ] - }, - { - "text": "Restore confidence in its legal system by ensuring the clear and unambiguous division of powers, including the indisputable independence of its judicial processes and judges", - "values": [ - "4 - General action" - ] - }, - { - "text": "Strengthen the achievements in the area of consolidation of human rights", - "values": [ - "4 - General action" - ] - }, - { - "text": "Thailand will become a party to the Convention for the Protection of All Persons from Enforced Disappearance, ILO Conventions No. 87 on Freedom of Association and Protection of the Right to Organise and No. 98 on the Right to Organise and Collective Bargaining", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Continue to engage with the Aboriginal population and Torres Strait Islanders and ensure the equal protection of their fundamental rights ", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Prohibit by law the confinement of more persons than the number of spots available in places of detention. In addition, establish by law mechanisms to immediately solve overcrowding", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Formalize its longstanding non-use of capital punishment by abolishing all legal provisions for capital punishment ", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Continue to promote its social and economic development and try to eliminate poverty so as to lay a solid foundation for the full enjoyment of all human rights by its population", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Take the necessary steps towards the establishment of a national human rights institution (NHRI), in accordance with the principles relating to the status of national institutions for the promotion and protection of human rights (Paris Principles) ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Seek technical assistance and cooperation to combat the high prevalence of non-communicable diseases and its root causes", - "values": [ - "1 - Minimal action" - ] - }, - { - "text": "Adopt immediately legislation that prohibits racial discrimination, as previously recommended", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Take into account the situation and special needs of the Roma and migrants in the elaboration and implementation of all programmes and projects aimed at improving living conditions and the opportunities of the population in general ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Continue to seek technical assistance in drafting legislation in the field of children's rights ", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Develop a strategic plan to prevent the high rate of school dropout and eradicate child labour", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Enact a national legislation that prohibits religious, racial and colour profiling particularly in context of the fight against terrorism ", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Consider the possibility of acceding to the optional protocols to the various United Nations conventions on human rights.", - "values": [ - "3 - Considering action" - ] - }, - { - "text": "Advance in the implementation of the Guiding Principles on Business and Human Rights at the national level as a complement to Ecuador\u2019s efforts to establish a binding instrument on transnational corporations and human rights", - "values": [ - "4 - General action" - ] - }, - { - "text": "Adopt measures to strengthen the judicial system for the provision of effective, independent and credible service", - "values": [ - "4 - General action" - ] - }, - { - "text": "Establish a national human rights institution and consider designating the national preventative mechanism under the Optional Protocol to the Convention against Torture and Other Cruel, Inhuman or Degrading Treatment or Punishment ", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Implement the UN Rules for the Treatment of Women Prisoners and Non-Custodial Measures for Women Offenders, otherwise known as the "Bangkok Rules" ", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Take additional concrete measures to combat xenophobia, hate speech and discrimination against foreigners, migrants and multicultural families", - "values": [ - "4 - General action" - ] - }, - { - "text": "Continue to guarantee freedom of expression creating additional conditions for its fulfilment", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Accept the right to present individual communications provided for in the Optional Protocol to the Convention on the Rights of Persons with Disabilities", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Ensure in the elaboration and implementation of the national land policy that economic, social and cultural as well as civil and political rights of all affected persons are fully respected, including by applying international standards such as the guidelines on land tenure and on responsible investment in agriculture of the Food and Agriculture Organization of the United Nations, in particular by providing full, adequate and effective compensation for expropriations and by recognizing and protecting customary land rights", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Take all necessary steps to accelerate the enforcement of the law regarding the acceptance and integration of foreigners.", - "values": [ - "4 - General action" - ] - }, - { - "text": "Reduce gradually the number of persons sentenced to death, and ensure that efforts on this matter are pursued", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Extend a standing invitation to special mandate holders", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Continue its efforts to eradicate the practice of FGM by, for example, looking at the lessons learned by other countries in the region that are dealing with this issue", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Consider amending legislation that penalizes consensual same-sex relations between adults in order to guarantee the rights of the lesbian, gay, bisexual, transgender, and intersex community, among others", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Seek technical and financial assistance from the international community in order to build the capacity of those working in the field of human rights towards the improvement of their activities for the benefit of the population, to achieve envisaged objectives in the field of administration of justice, construction and/or rehabilitation of prisons in accordance with international standards, to implement the recommendations by the Commission on Truth, Justice and Reconciliation, to introduce human rights in school curricula and, to harmonize national legislation with international instruments", - "values": [ - "1 - Minimal action" - ] - }, - { - "text": "Revise the Family Law to ensure gender equality ", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Continue efforts aimed to minimize the environmental impact of economic activities affecting indigenous peoples", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Adopt a legal definition of all forms of discrimination against women and take affirmative measures, allowing the elimination of direct and indirect discrimination ", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Take appropriate steps to ensure the effectiveness of its Inter-Ministerial Working Group for Combating Trafficking in Human Beings and of the national coordinator on human trafficking and continue to improve public awareness of this issue", - "values": [ - "4 - General action" - ] - }, - { - "text": "Take the measures necessary to ensure that same-sex partners are treated equally with opposite-sex partners throughout Slovenian law", - "values": [ - "4 - General action" - ] - }, - { - "text": "Review the imposition of the death penalty", - "values": [ - "3 - Considering action" - ] - }, - { - "text": "Consider a moratorium on death penalty with a view to abolishing it in the future", - "values": [ - "3 - Considering action" - ] - }, - { - "text": "Continue its efforts to promote the political participation of women at all levels and to increase the representation of women in the judiciary", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Consider the abolition of the criminalization of therapeutic abortion in accordance with the recommendations made by various treaty bodies", - "values": [ - "3 - Considering action" - ] - }, - { - "text": "Draft a concrete strategy to ensure that it will eventually submit all pending reports to treaty bodies ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Strengthen the fight against all forms of discrimination, particularly violence against women and girls, with special emphasis on the fight against sexual violence and female genital mutilation", - "values": [ - "4 - General action" - ] - }, - { - "text": "Abolish the practice of early and forced marriage for girls", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Lastly, the delegation confirmed that the Democratic Republic of the Congo was committed to pursuing its efforts in cooperation with the entire international community", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Tunisia decided to create an institution related to the General Human Rights Coordinator in charge of the follow-up to treaty bodies' recommendations in order to promote their effective implementation", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Review the list of crimes punishable by death and bring the enforcement of capital punishment into line with international standards, with a view to the reintroduction of the moratorium and the eventual abolition of the death penalty", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Continue to increase and consolidate programmes and social measures that will lead to and are essential for the urgent reduction of poverty and social exclusion levels, with the fair distribution of national wealth, to permit the best possible well-being of its population, and, if necessary to that end, seek international assistance and solidarity ", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Continue to implement the National Strategy for Women [2011-2021] for promoting women's development", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Continue working with UNICEF and other relevant partners to encourage school enrolment for children to maximize the potential of Madagascar's next generation", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Ensure compliance with the rights of children and women, in prohibiting in particular corporal punishment and in implementing a plan of action against domestic violence ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Take concrete measures to prevent prison overcrowding and enhance prison education and training in order to reintegrate inmates into society", - "values": [ - "4 - General action" - ] - }, - { - "text": "Withdraw existing reservations to the Convention on the Rights of the Child and the Convention on the Elimination of All Forms of Discrimination against Women ", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Continue its efforts with the view of the prompt approval of the legislation in the area of the protection of the rights of the child ", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Adopt a new law to prohibit trafficking in human beings and increase protection granted to victims", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Ensure the equitable distribution of water and food to the entire population, especially during times of drought ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Take into account, in its efforts to promote and protect human rights, the specific needs of such vulnerable groups as children, women, persons with disabilities and the elderly ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Further strengthen measures against discrimination with regard to women, national minorities, persons of minority sexual orientation or gender identity and persons with disabilities", - "values": [ - "4 - General action" - ] - }, - { - "text": "Commit to the ratification of the CRPD promptly ", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Continue to strengthen the promotion and protection of the rights of vulnerable groups, such as women, children, persons with disabilities and the elderly ", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Continue action to reduce maternal and infant mortality", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Strengthen measures to fight human trafficking, especially of women and children, in line with international legal standards in this area", - "values": [ - "4 - General action" - ] - }, - { - "text": "Implement legislation that codifies the protection guaranteed in the 1954 Convention relating to the Status of Stateless Persons in national legislation", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Step up efforts in prevention and treatment of HIV/AIDS infections", - "values": [ - "4 - General action" - ] - }, - { - "text": "Reform penal laws to define torture in accordance with article 1 of the Convention against Torture and declare its non-derogable nature", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Consider enacting, in consultation with civil society, an optional civil code that takes into account Lebanon's international human rights obligations", - "values": [ - "3 - Considering action" - ] - }, - { - "text": "Continue implementing measures to eliminate wage inequalities between the genders", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Ensure, as a minimum, that women can access lawful abortion by creating clear, legally binding regulations for the implementation of the 1993 Family Planning Act ", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Continue its work to prevent the forced labour of women especially in the sugar cane plantations ", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Consider ratifying the main international human rights instruments not ratified, including the Rome Statute of the International Criminal Court", - "values": [ - "3 - Considering action" - ] - }, - { - "text": "Publicly denounce extrajudicial killings and other abuses in the anti-drug campaign", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Conduct impartial, thorough and effective investigations into all cases of attacks, harassment and intimidation of human rights defenders and journalists, and hold all perpetrators accountable", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Continue efforts to establish a national monitoring and follow-up system in the field of human rights in order to assess the relevance of national policies", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Continue to invest resources to expand social programmes that promote and protect the human rights of older persons in Guatemala, in particular those living in poverty, to allow them to age with dignity", - "values": [ - "4 - General action" - ] - }, - { - "text": "Take measures to continue to fight impunity in prisons.", - "values": [ - "4 - General action" - ] - }, - { - "text": "Extend a standing invitation to all special procedure mandate holders ", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Adopt specific gender equality legislation in line with the provisions of the Convention on the Elimination of All Forms of Discrimination against Women, including by defining discrimination against women in accordance with article 1 of the Convention", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Establish a mechanism to create an effective system for the protection of children", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Make further progress on follow-up to the work of the CAVR and Commission on Truth and Friendship - particularly with regard to adopting legislation on reparations for the victims of past abuses and the establishment of a "Memory Institute"", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Strengthen its work towards combating trafficking in persons with assistance from the relevant United Nations agencies and the international community, as deemed necessary", - "values": [ - "4 - General action" - ] - }, - { - "text": "Abolish all provisions of laws and regulations that do not provide equal rights to women ", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Step up efforts to review its domestic legislations and policies with a view to ratifying ICRMW ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Adopt a clear and comprehensive definition of racial discrimination, in full compliance with CERD recommendations", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Give continuity and strengthen positive measures underway to increase the quality and accessibility of health services for all citizens ", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Favourably consider becoming a party to the ICCPR, ICESCR, CAT and CERD", - "values": [ - "3 - Considering action" - ] - }, - { - "text": "Change its laws to modify the definition of juveniles to ensure that all persons under 18 years old are provided with protection and guarantees ", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Implement rigorously the legislation establishing the minimum age of marriage at 18 years old", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Introduce a moratorium on the death penalty with a view to the future abolition of capital punishment, and ratify the Second Optional Protocol to the International Covenant on Civil and Political Rights", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Consider ratifying the International Convention on the Rights of Migrant Workers and Members of Their Families", - "values": [ - "3 - Considering action" - ] - }, - { - "text": "Stay steadfast in promoting adequate social policies that aim to achieve just distribution of wealth and social wellbeing of the population ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Enhance efforts to promote understanding of the Sharia Penal Code through awareness programmes and other relevant activities ", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Consider lifting its reservations in respect of article 10 2 b and 3 of ICCPR ", - "values": [ - "3 - Considering action" - ] - }, - { - "text": "Reinforce its political and judiciary institutions to promote human rights and all other basic rights of the population", - "values": [ - "4 - General action" - ] - }, - { - "text": "Renew the national equality plan, bearing in mind recommendations that have been made to the country in this area ", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Study the possibility of having campaigns for registering girls, boys and adolescents in the North and North-east of Brazil, with the cooperation of the universal system of human rights ", - "values": [ - "3 - Considering action" - ] - }, - { - "text": "Continue its efforts for the ratification of CEDAW and ratify the Convention at the earliest possible date", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Increase the expenditure allocated for education in order that it could be accessible to children across the country ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Intensify efforts to eliminate discrimination against indigenous children, Afro-descendant children, migrant children and children with disabilities ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Intensify efforts to bring down the high number of enforced disappearances and kidnappings in the country, with particular attention to indigenous human rights defenders.", - "values": [ - "4 - General action" - ] - }, - { - "text": "Adopt concrete measures to prevent discrimination against persons with disabilities in the private sector and in access to services such as health and education", - "values": [ - "4 - General action" - ] - }, - { - "text": "Strengthen efforts to promote women's participation in public life, particularly at the higher corporate levels", - "values": [ - "4 - General action" - ] - }, - { - "text": "Work on promoting a society of tolerance through educational measures", - "values": [ - "4 - General action" - ] - }, - { - "text": "Legally define the limit between freedom of expression and hate speech, and take measures to ensure that minorities are represented in the social and political spheres", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Evaluate the possibility to incorporate the principle of non- refoulement into the refugees law", - "values": [ - "3 - Considering action" - ] - }, - { - "text": "Continue its efforts in addressing the harmful practice of female genital mutilation and ensure that all such cases are promptly investigated and prosecuted and that victims have access to social and medical services", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Develop a comprehensive strategy to effectively improve the situation of the Roma community in areas such as housing, education, employment and health care", - "values": [ - "4 - General action" - ] - }, - { - "text": "Amend the trade union act in order to guarantee freedom of association and the effective recognition of the right of collective bargaining", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Take the necessary measures to fight against discrimination faced by persons with disabilities ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Increase efforts to implement the National Plan to Combat Trafficking in Persons", - "values": [ - "4 - General action" - ] - }, - { - "text": "Move forward on reform similar to that of the police of the judicial system, which has to this point proved inadequate to handle the cases of those suspected of involvement in the violence ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Continue efforts in eradicating illiteracy and adult education and share its pioneering experience in this field", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Continue to defend the fundamental values enshrined in its constitutional history and its tradition in its efforts to ensure the full enjoyment of all human rights, in particular economic, social and cultural rights ", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Further ensure that those who legitimately exercise their rights to freedom of expression and peaceful assembly be not subject to reprisals", - "values": [ - "4 - General action" - ] - }, - { - "text": "Take steps to address issues raised by both the Special Rapporteur on the independence of judges and lawyers and the Human Rights Committee regarding the independence of the judiciary and the administration of justice", - "values": [ - "4 - General action" - ] - }, - { - "text": "The delegation expressed the authorities' commitment to continue to cooperate with the United Nations and to carry out effective work on behalf of human rights protection. ", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Consider taking more resolute action to prevent and punish perpetrators of racially motivated acts of violence against members of the Muslim and Arab communities, the indigenous population, Canadian citizens of foreign origin, foreign workers, refugees and asylum-seekers", - "values": [ - "3 - Considering action" - ] - }, - { - "text": "Take the steps necessary to ensure that its upcoming presidential elections are free, fair and in line with international standards, in full respect of article 25 of the International Covenant on Civil and Political Rights, including by allowing opposition parties to freely participate", - "values": [ - "4 - General action" - ] - }, - { - "text": "Establish a national mechanism for the protection of the rights of persons with disabilities", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Seek the support of the international community in the framework of technical and financial assistance in order to strengthen its capacities for the timely implementation of activities relating to human rights ", - "values": [ - "1 - Minimal action" - ] - }, - { - "text": "Continue measures to enhance female representation in society", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Guarantee the right to receive, seek and impart information and ideas in compliance with article 19 of ICCPR", - "values": [ - "4 - General action" - ] - }, - { - "text": "Put in place specific programmes to improve the employment situation, in particular for young people ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Ensure that women who are victims of discrimination and violence have access to protection of their rights and to justice", - "values": [ - "4 - General action" - ] - }, - { - "text": "Adopt all necessary measures to prevent violence against children as well as child abuse and neglect ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Ensure access to health care and effective health coverage for all individuals without discrimination", - "values": [ - "4 - General action" - ] - }, - { - "text": "Further strengthen its successful land reform and resettlement program, which grants land to historically disadvantaged groups", - "values": [ - "4 - General action" - ] - }, - { - "text": "Establish a moratorium on the implementation of Article 347bis of the Penal Code that "shall be punished by imprisonment of six months to five years and a fine a person who has sexual relations with a person of the same sex" and encourage non-violence towards all, regardless of sexual orientation, as well as the protection of defenders of these rights, including their lawyers ", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Adopt pertinent legislative measures to prohibit all forms of corporal punishment against children and adolescents in any situation ", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Pursue efforts to combat xenophobia and to train police officers, prosecutors, judges and future legal professionals in the scope and application of the relevant legal framework ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Extend a permanent invitation to the Special Procedures ", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Continue to promote poverty alleviation and enhance poverty reduction of women and children and people with disabilities", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Take effective measures to investigate all allegations of serious human rights violations and abuses committed by law enforcement officials and private security guards ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Continue to strengthen efforts to eliminate discrimination in employment and occupation faced particularly by women and Roma persons, pursuant to the recommendations of ILO supervisory bodies ", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Adopt a comprehensive policy to address the root causes of child trafficking", - "values": [ - "4 - General action" - ] - }, - { - "text": "An inter-institutional board has been set up to address the issue of minors living in prisons and efforts are being made to move them out gradually. A commitment has been made to establish reception centres for such minors in order to provide them with the best possible living conditions", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Engage in a constructive dialogue with the National Assembly, with agreed outcomes on economic and governance challenges by July 2017", - "values": [ - "4 - General action" - ] - }, - { - "text": "Promote the exercise of freedom of expression without undue restrictions, by amending or repealing the 2013 Organic Act on Communication", - "values": [ - "4 - General action" - ] - }, - { - "text": "Ensure stable and systematic funding for the media of the Slovenian minority in Hungary, namely for Radio Monoster/Szentgotthárd, the Porabje weekly and the Slovenian TV programme ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Ratify the Rome Statute and the Optional Protocols to ICCPR and the Optional Protocol to ICESCR ", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Ratify the Convention on the Rights of the Child and the International Covenant on Economic, Social and Cultural Rights", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Take measures to ensure full rights of association, by reviewing the Charities and Societies Proclamation as regards funding restrictions imposed on civil society organizations working with human rights ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Continue efforts in developing and improving the quality of education so as to preserve human dignity and development in the country ", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Ensure, in accordance with articles 5 and 7 of ICCPR, freedom from torture, while in detention, for all, regardless also of sexual orientation", - "values": [ - "4 - General action" - ] - }, - { - "text": "Seek support from the Council and work together with the Council so that Djibouti progressively fulfils its identified objectives for improving the promotion and protection of human rights in the country", - "values": [ - "1 - Minimal action" - ] - }, - { - "text": "Consider the abolition of the death penalty and accede to the Second Optional Protocol to ICCPR related to the abolition of the death penalty ", - "values": [ - "3 - Considering action" - ] - }, - { - "text": "Adopt necessary measures to enhance the courts' competence and functioning as far as the administration of justice is concerned, including the training of the staff in courts in the area of human rights ", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Amend its laws to ensure the protection of the rights of LGBTI persons by including sexual orientation and gender identity as prohibited grounds for discrimination and by decriminalizing same-sex relations", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Formulate awareness-raising activities as part of efforts to prevent the practice of child marriage, and consider improving the availability of antenatal and postnatal services to women ", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Accelerate the procedures of adoption of the code on the protection of children", - "values": [ - "4 - General action" - ] - }, - { - "text": "Adopt specific measures to ensure the protection of the human rights of children of persons in detention or prison and to improve access to education for children with disabilities ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Encouraged Benin, in particular in the areas of economic, social and cultural rights, to continue achieving its progress.", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Enact urgent legislative amendments to the Penal Code to ensure that the rights of women from all religious and ethnic communities are safeguarded", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Step up efforts to expedite the judicial reform process to ensure guaranteed access to justice and the provision of timely, efficient, effective and high-quality services for the people of Ecuador ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Ensure that the police and judiciary are trained to deal impartially with women reporting gender based violence, and that all such complaints are fully investigated and prosecuted", - "values": [ - "4 - General action" - ] - }, - { - "text": "Make progress in the prevention and mitigation of the negative impact on the rights of children and adolescents caused by different sources of violence", - "values": [ - "4 - General action" - ] - }, - { - "text": "Put forward its utmost efforts to abolish practices such as honor killing, early forced marriage and domestic violence both at the legal and policy levels ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Improve legislation in the area of the protection of the rights of the national minorities ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Step up efforts to fight racial prejudice and violence, xenophobia and intolerance", - "values": [ - "4 - General action" - ] - }, - { - "text": "Remove from the final version of the new Constitution all references to traditions or customary law in the field of family and private law which may be conducive to violations of human rights", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Assess in terms of the fight against HIV/AIDS and Malaria its assistance needs and request such assistance particularly from the World Health Organisation", - "values": [ - "1 - Minimal action" - ] - }, - { - "text": "Take concrete actions in the elaboration of regulatory laws of the constitutional reform to ensure that victim's rights are guaranteed, that military courts have a restrictive and exceptional scope, and that alleged human rights crimes, such as extrajudicial killings, in no case will be addressed by military courts ", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Continue to revise the criminal law to bring it fully in line with relevant international and regional obligations and in particular to ensure the protection of national, ethnic, religious or linguistic minorities", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Decriminalize homosexuality as well as protect freedom and privacy of persons", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Take effective steps to ensure greater participation of minorities in public life, and review available remedies for victims of racial discrimination and incitement to hatred, in particular against Roma communities", - "values": [ - "4 - General action" - ] - }, - { - "text": "Further intensify its efforts to eliminate structural racism and racial discrimination in all its forms ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Strengthen initiatives to sensitize the population about the criminal nature of domestic violence and bring those responsible for this crime to justice", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Take further steps to protect the rights of the child, prevent child abuse, exploitation and violence", - "values": [ - "4 - General action" - ] - }, - { - "text": "Become a State party of the International Convention for the Protection of All Persons from Enforced Disappearances ", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "The State under review will involve civil society and national human rights institutions in consultation and socialization of the Universal Periodic Review procedure until its next Universal Periodic Review.", - "values": [ - "4 - General action" - ] - }, - { - "text": "Continue making efforts to promote civil, political, economic, social, environmental and cultural rights in all areas of society", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Grant unfettered access to Belarus for the Special Rapporteur on the situation of human rights in Belarus and other special procedures mandate holders, comply with the recommendations of the Rapporteur's reports without delay and resume cooperation with all international organizations", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Abolish corporal punishment, both in law and in practice ", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Amend the Family Safety Act to provide anonymity and protection for those who make complaints of family violence under the Act", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Adopt specific and comprehensive anti-discrimination laws.", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Have a regular dialogue with human rights defenders on an equal footing with them", - "values": [ - "4 - General action" - ] - }, - { - "text": "Ratify and accede to the International Convention for the Protection of All Persons from Enforced Disappearance and the Convention on the Rights of Persons with Disabilities and withdraw reservations to the Convention against Torture and the International Convention on the Protection of the Rights of All Migrant Workers and Members of Their Families", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Fully respect the provisions of international human rights instruments including ICCPR and CAT in the context of counter terrorism measures", - "values": [ - "4 - General action" - ] - }, - { - "text": "Ensure that all detainees are protected from torture or other illtreatment and that detention conditions meet the Standard Minimum Rules for the Treatment of Prisoners and the Basic Principles for the Treatment of Prisoners", - "values": [ - "4 - General action" - ] - }, - { - "text": "Solve long-standing conflicts between the Government and ethnic groups in a peaceful manner ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Continue the national efforts in the area of social inclusion of persons with disabilities", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Concretize in the domestic legal order, the process of harmonization of the protection against all grounds of discrimination ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Consider the timely ratification of the Convention on Enforced Disappearance.", - "values": [ - "3 - Considering action" - ] - }, - { - "text": "Continue efforts to strengthen legal frameworks and their implementation, through, inter alia, completing the ratification process of the Convention on the Rights of Persons with Disabilities", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Issue a standing invitation to the human rights special procedures", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Consider establishing an independent body to safeguard the independence of the judiciary", - "values": [ - "3 - Considering action" - ] - }, - { - "text": "Conduct research concerning root causes and monitor all trends which may give rise to racist and xenophobic behaviour", - "values": [ - "3 - Considering action" - ] - }, - { - "text": "Establish a moratorium of capital executions with a view to fully abolish the death penalty ", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Continue its efforts to guarantee full equality, opportunities and treatment for women and continue implementing national development plans ", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Continue to adopt measures with a view to abolishing the death penalty, in particular to ratify the second Optional Protocol to the International Covenant on Civil and Political Rights", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Continue to promote women and make sure they are effectively present at the level of decision-making", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Make those responsible for gross violations of human rights in American prisons and prisons under the jurisdiction of America outside its territory accountable", - "values": [ - "4 - General action" - ] - }, - { - "text": "Complete the reform of the judiciary", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Set up immediately the hybrid court provided for in the 2015 peace agreement", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Implement at the federal level a moratorium on executions ", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Continue the holistic approach of the Inter-Agency Committee on Anti-Illegal Drugs focusing on law enforcement operations, as well as on the rehabilitation and reintegration of drug users", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Cooperate with OHCHR, allow access to an OHCHR mission to Eritrea, as requested by the High Commissioner for Human Rights, and accept the visit requests made by five special procedures mandate holders ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Take steps to ensure that legislation protects the full rights of sexual minorities ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Continue to apply measures to guarantee the implementation of CRPD", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Put an end to the \u201cbaby box\u201c initiatives, which allow the anonymous abandonment of children without knowing their identity", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Repeal laws that restrict civil rights, including the Royal Decree of 1973 and components of the Suppression of Terrorism Act, and develop a legislative framework to protect the rights to freedom of expression, association and peaceful assembly, including rights related to forming and participating in political parties and civil society organizations ", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Revise its legislation to provide automatic acquisition of citizenship by children born to non-citizens after 21 August 1991 ", - "values": [ - "3 - Considering action" - ] - }, - { - "text": "Seriously consider implementing the observations and recommendations of different treaty bodies.", - "values": [ - "3 - Considering action" - ] - }, - { - "text": "Consider ratifying the International Covenant on Civil and Political Rights ", - "values": [ - "3 - Considering action" - ] - }, - { - "text": "Ensure sufficient resources for the functioning of the national preventive mechanisms, following the ratification of the Optional Protocol to the Convention against Torture and Other Cruel, Inhuman and Degrading Treatmemt or Punishment (OPCAT)", - "values": [ - "4 - General action" - ] - }, - { - "text": "Take all measures necessary to ratify the Rome Statute of the ICC ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Incorporate into national legislation provisions to ensure the effective implementation of the rights of men and women to equal pay for equal work", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Strengthen policy that would protect and promote food security as well as increase in the access to adequate, clean and safe drinking water especially for the population who live below poverty line ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Continue to develop the institutional and legal framework in respect of human rights ", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Step up efforts to pursue policies and programmes for a healthy environment", - "values": [ - "4 - General action" - ] - }, - { - "text": "Continue efforts to ensure the protection of all human rights defenders and reporters.", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Strengthen its national mechanisms and international cooperation to combat trafficking in persons and, particularly, child sex tourism", - "values": [ - "4 - General action" - ] - }, - { - "text": "Establish a national body to develop and coordinate services to address the rights of children and child protection issues and ensure full implementation of the Convention on the Rights of the Child", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Continue efforts to ensure access to quality health care to all South Africans in line with efforts to achieve universal health-care coverage by 2030", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Take all procedures to prevent all forms of violence against children and women", - "values": [ - "4 - General action" - ] - }, - { - "text": "Strengthen its efforts to close the gaps in the infant and maternal mortality rates", - "values": [ - "4 - General action" - ] - }, - { - "text": "Ensure that human rights defenders, including victims of human rights violations, witnesses, prosecutors, forensic experts, journalists and trade union workers, can carry out their human rights work freely and without fear of intimidation.", - "values": [ - "4 - General action" - ] - }, - { - "text": "Free all persons arrested as a result of their political opinion or because they took part in peaceful demonstrations, and ensure that charges against them are dismissed ", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Continue its measures with a view of strengthening the investigative and enforcement powers of the Human Rights Commission", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Ensure that its domestic laws guarantee the protection of the human rights of migrant workers, including their right to freedom of movement and the right to an adequate standard of living", - "values": [ - "4 - General action" - ] - }, - { - "text": "Promote inter-ethnic tolerance through adequate measures, including awareness-raising campaigns in the media in close cooperation with civil society and minority associations", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Adopt additional measures to eliminate the worst forms of child labor and bring the minimum age of access to employment into line with international standards", - "values": [ - "4 - General action" - ] - }, - { - "text": "Achieving an average real GDP growth rate of 10 per cent", - "values": [ - "4 - General action" - ] - }, - { - "text": "Sensitize the police, the judiciary, public administration and the general population to the importance of gender equality.", - "values": [ - "4 - General action" - ] - }, - { - "text": "Become a party to regional and international human rights instruments that it has not yet signed up to despite its efforts to fulfil its international obligations", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Abolish the death penalty and to consider ratifying the second Optional Protocol to ICCPR ", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Take measures including investigation of unfair dismissal of judges and ensure the independence and impartiality of the judicial system", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Continue implementing as effectively as possible measures aimed at combating trafficking and smuggling of migrants, including children, with a view to sexual exploitation, particularly concerning assistance to the victims ", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Make efforts to adopt comprehensive legislation on violence against women with provisions on domestic violence and marital rape as specific offences in the Criminal Law and punish perpetrators as well as provide assistance and recovery for victims", - "values": [ - "4 - General action" - ] - }, - { - "text": "Promote human rights education and training", - "values": [ - "4 - General action" - ] - }, - { - "text": "Continue the efforts to provide high quality education to all children and adolescents in the Peruvian territory, particularly to those belonging to groups in situations of vulnerability, such as indigenous peoples, Peruvian afro- descents, Afro-Peruvian communities and persons with disabilities", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Continue strengthening the capacity of government institutions, including the judiciary, police, prison service and government ministries, on the application of a human rights-based approach", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Share and exchange its experiences with other nations, especially developing ones, in legal system reforms. ", - "values": [ - "1 - Minimal action" - ] - }, - { - "text": "Take steps to ensure universal enrolment in primary school for both boys and girls and to increase attendance of secondary schools, as well as to ensure the integration of human rights into school curricula at all levels", - "values": [ - "4 - General action" - ] - }, - { - "text": "Adopt a legislative framework for ensuring the right of all migrant children to the best possible medical services and adequate housing, and fully implement those rights ", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Consider establishing a formal moratorium on executions of persons condemned to death and examine the possibility of abolishing the death penalty", - "values": [ - "3 - Considering action" - ] - }, - { - "text": "Deepen measures aimed at guaranteeing the fight against impunity of perpetrators of acts of gender violence and sexual abuse, in particular against women and girls living in the IDP camps", - "values": [ - "4 - General action" - ] - }, - { - "text": "Establish a human rights education system for members of the police and detention and prison staff, together with systems for the full and independent investigation and regular punishment of human rights violations by such personnel", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Ratify CAT, as it committed itself to do when elected to the Human Rights Council", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "In view of the Secretary-General's reports, elaborate a national action plan that addresses the prevalence of sexual violence, especially towards girls", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Amend the definition of discrimination contained in Law No. 20.609 to harmonize it with the recommendations of the Committee on the Elimination of All Forms of Discrimination against Women ", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Adopt specific legislation to prohibit violence against women, including domestic violence ", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Strengthen the efforts to prevent and combat human trafficking, protect victims and guarantee them access to medical, social, judicial and rehabilitation services, as well as psychological support", - "values": [ - "4 - General action" - ] - }, - { - "text": "Undertake to abolish the death penalty or, in the absence of abolition, respect international standards restricting the scope of its application", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Provide protection to maternity and childhood, in particular, introduce additional measures for the protection of families with small children", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Consider acceding to other international human rights instruments to which it is not yet party ", - "values": [ - "3 - Considering action" - ] - }, - { - "text": "Strengthen safeguards against wrongful sentencing to death and subsequent wrongful execution by ensuring, inter alia, effective legal representation for defendants in death penalty cases, including at the post- conviction stage", - "values": [ - "4 - General action" - ] - }, - { - "text": "Fully cooperate with the special procedures mandate-holders", - "values": [ - "4 - General action" - ] - }, - { - "text": "Put an end to arbitrary restrictions on freedom of expression and to prior censorship of national and foreign media", - "values": [ - "4 - General action" - ] - }, - { - "text": "Take all necessary measures to implement the National Roma Integration Strategy. This includes the provision of financial means regarding the efficient implementation of this Strategy ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Continue its work in combating religiously motivated crimes and acts of violence ", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Adopt and implement a national policy project aimed at persons with disabilities, especially ensuring the effective rights of children with disabilities and their participation in all spheres of society", - "values": [ - "4 - General action" - ] - }, - { - "text": "Consider fostering policies on combating child trafficking and define the crimes of the sale of children and child pornography ", - "values": [ - "3 - Considering action" - ] - }, - { - "text": "Consider ratifying the International Covenant on Economic, Social and Cultural Rights and the International Covenant on Civil and Political Rights and its Optional Protocols", - "values": [ - "3 - Considering action" - ] - }, - { - "text": "Continue its efforts in order to counter illiteracy amongst girls", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Put in place within six months a concrete plan, covering the next two-year period, to improve implementation of the 2009 Law on the Elimination of Violence Against Women, including the measures recommended to Afghanistan by the Committee on the Elimination of Discrimination against Women in July 2013 ", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Continue the practice of holding public meetings with senior authorities in the country, so that persons from the communities can have access to higher authorities and participate in the process of seeking solutions and decision-making", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Pursue the policies that give priority to the promotion of the right to education for all ", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Strengthen its efforts to promote direct funding and develop a range of living options for persons with disabilities", - "values": [ - "4 - General action" - ] - }, - { - "text": "Carry out awareness raising campaigns for the prevention of domestic violence, particularly against women and girls", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Enhance effort towards full integration of the Roma community into the society with a view to improve their overall living condition ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Ensure the protection of the rights of refugees and combat discrimination to which some of them are victims ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Take measures to ensure due process and fair trials, particularly in any proceeding that could entail the application of the death penalty", - "values": [ - "4 - General action" - ] - }, - { - "text": "Take measures to prohibit in practice anti-immigration speech and racist propaganda", - "values": [ - "4 - General action" - ] - }, - { - "text": "Consider abolishing the death penalty in the context of the moratorium ", - "values": [ - "3 - Considering action" - ] - }, - { - "text": "Ratify and implement the remaining four ILO core conventions concerning freedom of association and protection of the right to organize, the right to organize and collective bargaining, forced labour and the abolition of forced labour", - "values": [ - "3 - Considering action" - ] - }, - { - "text": "Consider an early ratification of the third Optional protocol to the Convention on the Rights of the Child on a communications procedure (OPIC)", - "values": [ - "3 - Considering action" - ] - }, - { - "text": "Take all necessary measures to enhance the effectiveness of the Office of the Ombudsman and include, inter alia, effective monitoring and promotion of child rights.", - "values": [ - "4 - General action" - ] - }, - { - "text": "Strengthen policy that would protect, promote and facilitate the implementation of the right to food, especially for the population who live below poverty line ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Support awareness programming to make potential victims more aware of the risks associated with trafficking and better prepare them to identify potential situations in which they could be trafficked", - "values": [ - "4 - General action" - ] - }, - { - "text": "Ratify the International Convention on the Protection of the Rights of All Migrant Workers and Members of Their Families at the earliest convenience", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Follow the provisions of articles 2 and 25 of ICCPR and articles 6, 12 and 13 of ICESCR.", - "values": [ - "4 - General action" - ] - }, - { - "text": "Include anti-discrimination legislation with regard to sexual orientation, gender identity and HIV-AIDS and to reform the law on sexual offences of 1998 ", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Continue its endeavours in fostering the rule of law and social cohesion", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Continue to cooperate with the United Nations, other international organizations and the world community to settle all the humanitarian issues ", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Continue human rights education and training \n\n", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Facilitate unimpeded humanitarian access to civilians in all areas affected by the current civil war", - "values": [ - "4 - General action" - ] - }, - { - "text": "Continue to promote economic, social and culture development to provide better conditions for the enjoyment of all rights by its people ", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Continue its efforts in the area of human rights with regard to post-incarceration situations in order to ensure a better reintegration into society for prisoners ", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Establish a national human rights institution with both advisory and investigative functions and in full compliance with the Paris Principles ", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Continue to allocate sufficient resources to ensure the effective implementation of the Family Protection Act, and to adopt further measures to combat domestic violence, with a special focus on women and girls with disabilities, who are at greater risk of all sorts of violence ", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Promote equality between men and women, and to this end reinforce its cooperation with international and regional mechanisms, especially special procedures ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Further enhance the capacity, neutrality and independence of the judiciary.", - "values": [ - "4 - General action" - ] - }, - { - "text": "Intensify its efforts in the area of social, economic and cultural rights and give a more important role to gender and inter-culturality in public policies, in particular in education, health and justice", - "values": [ - "4 - General action" - ] - }, - { - "text": "Implement measures to ensure that the Aboriginality of victims of gender-based violence is accurately recorded ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Continue the protection of women, migrants, persons with disabilities and elderly people, groups which are particularly vulnerable in this moment of economic and financial crisis ", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Conduct a review of the Personal Status Law and the Labour Law with a view to repealing articles that discriminate against women ", - "values": [ - "3 - Considering action" - ] - }, - { - "text": "Undertake harmonization of Libya's nationality law to place women on an equal footing with men regarding the right to acquire, change or pass on their nationality", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Consolidate the rule of law and human rights principles in the society", - "values": [ - "4 - General action" - ] - }, - { - "text": "Immediately and unconditionally release prisoners arrested on politically motivated charges, including members of the Islamic Renaissance party of Tajikistan, Group 24 and their lawyers", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Raise public awareness on the rights of vulnerable groups of people, as stipulated in the Italian legal system", - "values": [ - "4 - General action" - ] - }, - { - "text": "Continue its efforts in order to address the problems related to internal displacement", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Intensify efforts to combat child labour and trafficking in persons, especially women and children ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Take all the necessary measures to decriminalize sexual relations between consenting same-sex adults and take additional measures to combat discrimination and violence against lesbian, gay, bisexual and transgender persons", - "values": [ - "4 - General action" - ] - }, - { - "text": "Continue the resettlement of all internally displaced persons as a result of the conflict and guarantee the transfer or compensate those people who cannot return to their places of origin", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Expand the so-called "Isange One-Stop Centres" to respond to and prevent gender-based violence and provide care for victims", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "As soon as possible complete its review and repeal the new press law as it appeared to go against the Chadian Constitution and the International Covenant on Civil and Political Rights, to which Chad is a party. ", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Address those situations (in protecting children's rights) that still raise concern, such as the lack of criminalization for the possession of pornographic material regarding children", - "values": [ - "4 - General action" - ] - }, - { - "text": "Formally incorporate education about child sexual abuse and its prevention into the training of teachers and other professionals working with children, health professionals, lawyers and police officers", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Withdraw all reservations to OP-CAT ", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Adopt adequate measures for the protection and promotion of religious freedom, in order to ensure an effective freedom of worship of all religious communities and comply with its international obligations in this field, and ensure the right to seek, receive and provide information and ideas, including by electronic means and from foreign sources.", - "values": [ - "4 - General action" - ] - }, - { - "text": "Accelerate work on the protection of the rights of children and women in particular", - "values": [ - "4 - General action" - ] - }, - { - "text": "Continue its efforts to address discrimination based on race, national identity or religious belief and to promote cultural diversity and tolerance, including through the implementation of article 161 of the Criminal Code", - "values": [ - "4 - General action" - ] - }, - { - "text": "In consultation with civil society, develop and pass legislation that decriminalizes consensual same-sex sexual conduct", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Consider establishing an independent national human rights institution in accordance with the Paris Principles ", - "values": [ - "3 - Considering action" - ] - }, - { - "text": "Repeal section 8(2) of the Aliens Employment Act, which requires that employers, when reducing manpower or working hours of all employees, terminate, first, the contracts of foreign nationals ", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Continue cooperation with treaty bodies by submitting overdue reports", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Actively improve the protection of female domestic workers against violence and sexual abuse", - "values": [ - "4 - General action" - ] - }, - { - "text": "Ensure compliance of the People's Advocate (Ombudsman's) Office with the Paris Principles ("A" status) ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Enact legislation to make the right to collective bargaining through trade unions in line with international commitments", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Consider ratification of the Optional Protocol to the Convention on the Rights of the Child on a communications procedure (OP-CRC-IC) ", - "values": [ - "3 - Considering action" - ] - }, - { - "text": "Put in practice concrete programs for awareness raising against discrimination for gender identity and sexual orientation, guarantee the respect for privacy ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Ensure that the new bill for the press and electronic media complies with international norms and continues its efforts to ensure respect for the right to freedom of expression and the right to peaceful assembly and association", - "values": [ - "4 - General action" - ] - }, - { - "text": "Increase the number of magistrates to alleviate court proceedings, and take measures regarding their election to ensure their independence", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Undertake continued and enhanced efforts to protect and provide redress to women suffering from violence and to continue raising awareness, through training and other means, in the judicial system, including to the police, of the necessity to act against all cases of sexual and gender-based violence, including on the grounds of real or perceived sexual orientation, gender identity or expression", - "values": [ - "4 - General action" - ] - }, - { - "text": "Adopt urgent reforms of the Penal Code and other relevant legislation to restore the rights of women, girls, and adolescent victims of rape and other forms of violence against them, to receive protection, legal assistance and health care, including access to legal and safe therapeutic abortion, and their full rehabilitation and reinsertion", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Urgently take all necessary measures to end impunity, if need be with the assistance of the United Nations ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Although Switzerland raised the minimum age of criminal responsibility of children from 7 to 10 years of age, it is recommended that it continue with efforts to bring the minimum age of criminal responsibility to an acceptable level according to international standards", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Welcoming the recognition of access to safe drinking water as an inalienable right of all human beings, continue efforts with regard to monitoring and accountability, guaranteeing the minimum standards of availability, quality and accessibility", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Establish an independent national human rights institution, in conformity with the Paris Principles ", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Guarantee in law and in fact the freedom of expression, freedom of the press and freedom of assembly and association, in conformity with ICCPR ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Consider adopting laws and regulations in favour of children, abandoned minors, persons with disabilities and the elderly", - "values": [ - "3 - Considering action" - ] - }, - { - "text": "Enable human rights organizations to monitor general elections", - "values": [ - "4 - General action" - ] - }, - { - "text": "Take concrete measures to prevent racially motivated crimes and investigate and prosecute all acts of political discourse against minorities", - "values": [ - "4 - General action" - ] - }, - { - "text": "Prioritize necessary reforms to modernize legislation and eliminate all forms of discrimination.", - "values": [ - "4 - General action" - ] - }, - { - "text": "Redouble its efforts to prevent and eliminate all signs of racism and xenophobia", - "values": [ - "4 - General action" - ] - }, - { - "text": "Continue the work aimed at the prohibition of child labour ", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Initiate legislation introducing the possibility of conscientious objection or an alternative civilian service for citizens eligible for military service", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Step up the efforts contributing to combating discrimination and hate crimes, including by penalizing and introducing a ban on forms of speech that constitute religious and racial hatred, especially in the context of campaigning for elections ", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Seek additional assistance from various United Nations institutions in order to fully comply with international commitments to protect and promote human rights ", - "values": [ - "1 - Minimal action" - ] - }, - { - "text": "Ratify the international instruments combating statelessness, and consider a reform of the civil status guaranteeing the rights of all Haitians, including those who live abroad ", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "A broad approach including improved legal representation of prisoners, separate detention facilities for persons under the age of 18 and continuing improvements to the prison infrastructure", - "values": [ - "4 - General action" - ] - }, - { - "text": "Consider early ratification of OP-CEDAW, signed in 2001 ", - "values": [ - "3 - Considering action" - ] - }, - { - "text": "Continue to combat discrimination, hate speech and racism", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Accelerate the process of ratification of the Convention against Torture", - "values": [ - "4 - General action" - ] - }, - { - "text": "Bring the legal age of marriage tom18 for women as for men", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Enact laws which fully abolish child, early and forced marriage", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Consider ratifying the ILO Convention No. 87 concerning Freedom of Association and Protection of the Right to Organise ", - "values": [ - "3 - Considering action" - ] - }, - { - "text": "Develop effective measures to eradicate racism and xenophobia, including hate speech", - "values": [ - "4 - General action" - ] - }, - { - "text": "Focus its attention more on the serious issues of combating impunity. investigate human rights violations systematically and prosecute and punish those responsible for such violations, without exception.", - "values": [ - "4 - General action" - ] - }, - { - "text": "Ensure child labour law enforcement, and investigation and prosecution of trafficking offences and publish key labour and law enforcement data on child labour", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Ratify the Second Optional Protocol to ICCPR, aiming at the abolition of the death penalty", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Consider introducing an earmarked quota for fathers in the parental leave ", - "values": [ - "3 - Considering action" - ] - }, - { - "text": "Continue to improve legislative mechanisms in the area of human rights", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Adopt the necessary measures with a view to ratifying the Optional Protocol to the CRPD", - "values": [ - "4 - General action" - ] - }, - { - "text": "Revise its death penalty legislation so that it complies with ICCPR and particularly to ensure that the death penalty does not apply to minors ", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Become a party to the main human rights instruments", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Extend a standing invitation to the Council's special procedures", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Take measures to increase the capacity and independence of the Ombudsman", - "values": [ - "4 - General action" - ] - }, - { - "text": "Consider acceding to the Agreement on the Privileges and Immunities of the International Criminal Court ", - "values": [ - "3 - Considering action" - ] - }, - { - "text": "Enact legislation to ensure that imprisonment is used only as a last resort when sentencing all juvenile offenders, ensure that they are held separately from adult offenders, and provide systematic resource realization support to them ", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Provide a legislative basis for the OPCAT National Preventive Mechanism, and ensure the institutionalized participation of civil society ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Take measures to stop violence that has cost the lives of more than five thousand women, and caused more than 500,000 rapes in the last year", - "values": [ - "4 - General action" - ] - }, - { - "text": "Ensure that the rights of indigenous people and respect of the environment and biodiversity are taken into due consideration in economic activities", - "values": [ - "4 - General action" - ] - }, - { - "text": "Observe an official moratorium on executions in order to envisage, ultimately, the final abolition of capital punishment", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Deploy necessary human, legal and financial measures in order to effectively implement the recommendations issued by the United Nations treaty bodies", - "values": [ - "4 - General action" - ] - }, - { - "text": "Consider the possibility of ratifying more human rights treaties, such as the Convention on the Rights of Persons with Disabilities and the Convention relating to the Status of Refugees", - "values": [ - "3 - Considering action" - ] - }, - { - "text": "Respect international human rights obligations regarding the right to privacy when intercepting digital communications of individuals, collecting personal data or requiring disclosure of personal data from third parties", - "values": [ - "4 - General action" - ] - }, - { - "text": "Keep legal and procedural efforts to implement measures for women's access to a broader range of jobs and to address the causes of the concentration of women in the informal sector ", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Give further effect to international human rights instruments in the domestic legislation, including from the provisions contained in the CRC ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Withdraw reservations in respect of article 18 of ICCPR ", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Ensure that after independence, no one will be discriminated against because of their\norigin from the other State, respectively", - "values": [ - "4 - General action" - ] - }, - { - "text": "Promote a more effective policy aimed at integrating Roma on issues related to education, employment, housing and health, that will produce positive results", - "values": [ - "4 - General action" - ] - }, - { - "text": "Re-examine the use of prolonged police detention.", - "values": [ - "3 - Considering action" - ] - }, - { - "text": "Take appropriate measures to secure the independence of the judiciary, including by amending the regulatory framework providing for such independence", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Adopt measures to improve the system of protection of children and adolescents, and in particular, to eradicate child abuse in homes and reform the juvenile justice system ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Undertake a public advocacy campaign to combat gender-based violence, in consultation with all relevant stakeholders", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Fully implement CAT, emphasizing the strengthening of training and capacity building programmes for the police and military officers, and the harmonization of local laws with the Convention ", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Strengthen measures on combating discrimination against women and eliminate stereotypes of Afro-descendant and indigenous people through awareness-raising campaigns ", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Respect the provisions of the Proclamation on National Service and immediately end the practice of indefinitely extending military service", - "values": [ - "4 - General action" - ] - }, - { - "text": "Combat discriminatory practices against children and adolescents belonging to minorities or in a situation of special vulnerability ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Issue standing invitations to United Nations Special Procedures mandates holders, and facilitate and welcome fact-finding missions to Zimbabwe ", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Although the establishment and operationalization of the Human Rights Commission has been a lengthy process, the Government remains committed to its operationalization as it will complement the primary role of Government as a responsible agency for the promotion, protection and monitoring of human rights. Lesotho will continue to work with external stakeholders and development partners to operationalize the Commission.", - "values": [ - "4 - General action" - ] - }, - { - "text": "Ensure that the standards of a fair trial are guaranteed under all circumstances.", - "values": [ - "4 - General action" - ] - }, - { - "text": "Lift all military checkpoints and end all restrictions on the rights of Palestinians to movement and their rights to health and education.", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Continue to improve the criminal justice system for children, including by making the court more child-friendly, and to come up with specialized response to children in conflict with the law", - "values": [ - "4 - General action" - ] - }, - { - "text": "Guarantee the independence of the Extraordinary Chambers and allow them to prosecute and try offenders other than those already indicted ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Continue its successful social policy in the field of health, providing the necessary resources to ensure maintaining the large institutional capacity currently exhibited by its comprehensive health system ", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Continue to safeguard the principle of equality between men and women in financial, educational, healthcare and housing sectors by elaborating comprehensive anti-discrimination law", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Amend the legislation in force to allow women to open bank accounts and register property titles in their names", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Redouble efforts to prevent sexual violence in the military and ensure effective prosecution of offenders and redress for victims", - "values": [ - "4 - General action" - ] - }, - { - "text": "Strengthen efforts to ensure better participation of women at all spheres of public life and especially at political level ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Ratify the Second Optional Protocol to the ICCPR, aiming at the abolition of the death penalty", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "In regard to freedom of movement, make more flexible the requirements for those people who change their place of residence within the country so that they have equitable access to social security, health care, education and pensions ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Consider acceding to ICCPR and ICESCR ", - "values": [ - "3 - Considering action" - ] - }, - { - "text": "Examine the possibility to accede to the International Covenant on Economic, Social and Cultural Rights ", - "values": [ - "3 - Considering action" - ] - }, - { - "text": "Implement legislative measures to increase the percentage of women in decision-making and popular election positions", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Present overdue reports to the Committee on the Elimination of Discrimination against Women", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Take the necessary measures to eradicate the discrimination based on sexual orientation", - "values": [ - "4 - General action" - ] - }, - { - "text": "Continue the fruitful cooperation with the UN human rights mechanisms and the process of ratification of the international instruments to which Congo is not yet a party", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Grant full access to enable international monitoring of detention facilities under the control of the Government and its supporters", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "The closure of Guantanamo prison as the detention conditions violate the UDHR and ICCPR and the European Convention on Human Rights - ECHR - and all other related human rights instruments", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Ratify ILO Convention 169", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Smarten security checks so as to take into account the frequent homonymy specific to Moslem names so as to avoid involuntary discrimination against innocent people with such names because of namesakes listed as members of terrorist groups ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Undertake a comprehensive review of the child protection system, social assistance and family policies to ensure coordinated and efficient services", - "values": [ - "3 - Considering action" - ] - }, - { - "text": "Ensure implementation of the second phase of the National Action Plan on Gender-based Violence and continue efforts to improve access to justice and shelter for victims of abuse", - "values": [ - "4 - General action" - ] - }, - { - "text": "Promote measures against discrimination based on sexual orientation and gender identity, including the investigation, and, where appropriate, the sanction of those responsible of acts of discrimination and violence against LGBTI persons", - "values": [ - "4 - General action" - ] - }, - { - "text": "Maintain under study the ratification of the International Convention on the Protection of the Rights of All Migrant Workers and Members of Their Families from a human rights perspective, recognizing the fact that human rights are universal in nature and therefore are not conditioned by migrant status", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Recognise civil unions between people of the same sex as a first step in the fight against discrimination based on sexual orientation and gender identity", - "values": [ - "3 - Considering action" - ] - }, - { - "text": "Strengthen, in close cooperation with relevant stakeholders, the capacity to process, treat and shelter asylum-seekers and irregular migrants, in accordance with relevant regional and international standards ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Undertake further measures in order to address the problem of shortage of teachers, especially in rural and remote areas ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Continue efforts to enhance the necessary measures related to the implementation of the National Development Plan through appropriate means", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Guinea is committed to undertaking ambitious and courageous reforms aimed at building a democratic society that respects human rights.", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Reconsider its decision not to sign a comprehensive agreement with OHCHR aimed at human rights promotion and protection", - "values": [ - "3 - Considering action" - ] - }, - { - "text": "Step up the fight against false job offers and sign agreements with countries where Cambodian women are hired", - "values": [ - "4 - General action" - ] - }, - { - "text": "Criminalize the production and dissemination of materials advertising the sale of children, child prostitution and child pornography, and to bring its Penal Code into conformity with the Optional Protocol to the Convention on the Rights of the Child on the sale of children, child prostitution and child pornography", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Take all necessary measures to combat violence against women, including discrimination in employment", - "values": [ - "4 - General action" - ] - }, - { - "text": "Take additional serious measures to combat xenophobia, hate speech and discrimination based on race, nationality, ethnicity and religion", - "values": [ - "4 - General action" - ] - }, - { - "text": "Continue international cooperation and support international efforts to reach a peaceful and comprehensive settlement to the crisis in the Syrian Arab Republic", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Continue with its adoption of relevant normative legal acts aimed at upholding the constitutional rights and liberties of the citizens of Azerbaijan, as well as the establishment of control measures for their efficient realization ", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Continue strengthening measures to address cases of violence and organized crime", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Continue education and awareness raising campaigns on human rights ", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "End all forms of racial discrimination in terms of housing, education, health care, social security and labor ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Increase efforts to combat all forms of human trafficking ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Strengthen its efforts to promote gender equality", - "values": [ - "4 - General action" - ] - }, - { - "text": "Consider ways by which participation of women in political life be further increased, both in terms of absolute numbers but also in terms of quality of participation", - "values": [ - "3 - Considering action" - ] - }, - { - "text": "Fully comply with its binding international human rights obligations in the light of Iran's commitment towards improving the overall human rights situation in the country", - "values": [ - "4 - General action" - ] - }, - { - "text": "Take the necessary steps to ensure the consolidation of peace, justice and reconciliation in the country", - "values": [ - "4 - General action" - ] - }, - { - "text": "Abolish banishment in view of its inhumane character.", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Take measures to combat violence against women, including domestic and sexual violence, with a particular attention to women from minority groups", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Establish an effective and inclusive process to follow-up on recommendations emerging from the universal periodic review ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Make adequate labour conditions and decent work an important criterion for granting building contracts and permits and actively improve the enforcement of labour laws, including by applying penalties to and blacklisting contractors who violate the relevant laws and decrees ", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Further strengthening social security programs for mothers of children with severe disabilities ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Give positive consideration to ratifying the Optional Protocol to the Convention against Torture (OPCAT), the Convention on the Rights of Persons with Disabilities (CRPD) and the International Convention for the Protection of All Persons from Enforced Disappearance (CED)", - "values": [ - "3 - Considering action" - ] - }, - { - "text": "Share in detail and through the appropriate mechanisms of the Council, its achievements, experiences and lessons drawn in the following areas: (a) how it managed to bring down poverty rates in urban and rural areas in a consistent and progressive way during the last 35 years; (b) how the establishment of the Anti- Corruption Academy in Malaysia helped and continues to help fighting corruption and raising awareness", - "values": [ - "1 - Minimal action" - ] - }, - { - "text": "Continue efforts in the direction of the positive improvements in women and children's rights, especially measures taken to combat domestic violence", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Stop the increasing deforestation and indiscriminate exploitation of minerals since, on one hand, this limits the right of indigenous peoples to live in their traditional agricultural lands and, on the other hand, it contributes enormously to the ecosystem's imbalance and accelerates climate change with the negative consequences it brings ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Apply fairly and without discrimination all registration procedures and in conformity with international standards.", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Ratify the Convention on the Rights of Migrant Workers and Their Family Members.", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Develop measures aimed at addressing women's low occupational representation and the promotion of diversification of women's academic and professional choices, including in non-traditional fields ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Continue to actively promote the right to education for all and further its efforts to promote human rights education and training ", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Continue its ongoing efforts to improve the legal and regulatory framework to prevent, detect and suppress activities connected with trafficking in persons ", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Implement a national strategy to modify or eradicate, in accordance with the Convention on the Elimination of All Forms of Discrimination against Women, harmful practices and stereotypes that discriminate against women", - "values": [ - "4 - General action" - ] - }, - { - "text": "Continue its efforts in addressing the issue of violence against women, building on the adoption of the 2015 law criminalizing domestic violence against women", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Fully respect the right to choose and express religious beliefs freely, including for members of both recognized and unrecognized religious minorities ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Introduce necessary reforms in the education system for reducing school dropout rates, particularly in secondary education", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Continue promoting measures against extreme poverty and in favour of social inclusion", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Strengthen the implementation of existing legislation and promote awareness-raising activities aimed at protecting women's rights, at increasing girls' enrolment rate in schools and fighting against all forms of violence against women, including domestic violence", - "values": [ - "4 - General action" - ] - }, - { - "text": "Enact legislation to address the status of children born out of wedlock ", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Ratify the Convention on the Elimination of All Forms of Discrimination against Women to ensure full gender equality and adopt a comprehensive national action plan with clear goals and deadlines to eliminate all forms of violence against women, including sexual violence and female genital mutilation", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Further enhance the freedom of expression, especially of journalists and social media users", - "values": [ - "4 - General action" - ] - }, - { - "text": "Grant unimpeded access by humanitarian personnel to populations in need of assistance", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Continue working for the comprehensive application of its National Policy of Food and Nutritional Security, promoting the generation of selfconsumption food ", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Establish, wherever necessary, independent and credible commissions of inquiry on war crimes and crimes against humanity ", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Accelerate efforts to devise and implement anti-discrimination public awareness programmes, including in the health services sector, and intensify campaigns to encourage tolerance and interreligious and intercultural dialogue", - "values": [ - "4 - General action" - ] - }, - { - "text": "That substantive reform of the penal system is pursued as a priority by the Government ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Prevent the indefinite detention of persons with mental disabilities", - "values": [ - "4 - General action" - ] - }, - { - "text": "Continue its efforts to further spread in the country the model of rural growth in the Mahatma Gandhi National Rural Employment Guarantee Act ", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Accept the Rome Statute of the International Criminal Court.", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Take measures to end the practice of guardianship and abolish existing legal provisions that require a guardian's authorization", - "values": [ - "4 - General action" - ] - }, - { - "text": "Take further steps to improve access to quality education for internally displaced children, in particular children with disabilities, as a follow-up to the recommendations contained in paragraphs 97.42 and 97.126 of the outcome report (A/HRC/22/7) from the second cycle", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Continue effective efforts to protect and promote cultural rights with a view to ensuring access of all Cubans to cultural values in all their manifestations", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Adopt national legislation on refugees and asylum-seekers", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Carry out concrete actions, including those of an administrative or budgetary nature, to consolidate effective communication channels with civil society and to promote the development of education programmes", - "values": [ - "4 - General action" - ] - }, - { - "text": "Continue to strengthen the existing legal framework and deepen measures aimed at preventing gender-based violence", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Urgently repeal legislation criminalising consensual homosexual activity and release from detention individuals convicted of those offences ", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Continue its efforts towards aligning its national legislation to international human rights law and, in this regard, lift the general reservation to CEDAW and reconsider policies which limit the rights of women to act as autonomous and equal members of the Saudi society", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Take into account the observations made by the Human Rights Committee and the Special Rapporteur on the promotion and protection of human rights while countering terrorism. ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Support interfaith dialogue as a means to enhance mutual understanding, peace and tolerance among different religious, ethnic and linguistic communities ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Promote and protect civil society space and carry out effective and impartial investigations into all cases of intimidation and violence against civil society actors and hold perpetrators of such acts accountable in accordance with international fair trial standards ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Continue efforts to solve problems related to the penitentiary system, in particular overcrowding in prisons", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "End arbitrary arrests and detentions and ensure that suspects have access to justice and a fair trial", - "values": [ - "4 - General action" - ] - }, - { - "text": "Ensure effective implementation of the legislation against trafficking of human beings and enhance support to the victims of trafficking, especially women and children", - "values": [ - "4 - General action" - ] - }, - { - "text": "Continue its mainstreaming of climate change adaptation across developmental activities with the assistance of the international community", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Transmit to the Committee on the Rights of the Child the combined third and fourth periodic reports and the reports for the two Optional Protocols to the Convention within the scheduled time", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Be more proactive in promoting and protecting freedom of religion and belief, including in preventing hate speech, racist propaganda and ethnic profiling ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Continue improving the performance of the national human rights institution in accordance with the standards set out in the principles relating to the status of national institutions for the promotion and protection of human rights (the Paris Principles) ", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Continue harmonizing its national laws with its obligations under international human rights law, with a view to giving priority in this regard to the International Convention on the Elimination of Racial Discrimination ", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Issue a standing invitation to all the Special Procedures of the Human Rights Council", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Introduce a bill to establish a children's ombudsman ", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Continue its efforts in the area of human rights training, particularly for staff of penitentiary establishments", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Fully implement the recommendations of the Committee on the Rights of the Child contained in paragraph 61 of document CRC-C-ERI-CO-3 ", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Look into measures to protect the best interests, needs and physical, social and psychological development of babies and children affected by parental detention or imprisonment.", - "values": [ - "4 - General action" - ] - }, - { - "text": "Step up efforts to combat the trafficking in human beings, including the development of international cooperation with interested Governments, international organizations and NGOs ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Adopt awareness-raising programs to combat gender related stereotypes", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Adopt amendments to the Labour Code regarding the sale and trafficking of children", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Submit its pending reports to the relevant treaty bodies ", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Reconsider ratifying the International Convention for the Protection of All Persons from Enforced Disappearance", - "values": [ - "3 - Considering action" - ] - }, - { - "text": "Develop a national plan of action on eliminating violence against women ", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Continue making practical steps aimed at the development of the institutional and human rights infrastructure to better implement its human rights obligations, taking into account applicable international humanitarian law", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Strengthen in the field the rights of persons with disabilities despite difficulties", - "values": [ - "4 - General action" - ] - }, - { - "text": "Intensify its efforts to eliminate the gender wage gap and promote women\u2019s representation in political and economic affairs", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Ratify the Rome Statute of the International Criminal Court, OP-CAT and the ILO Conventions that it has not ratified to date", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Consider the possibility of adopting new measures to improve its human rights protection system ", - "values": [ - "3 - Considering action" - ] - }, - { - "text": "Abolish the death penalty in all circumstances, although the existence of a moratorium on executions, the commutation of such penalties into prison sentences, and the efforts made to restrict, in the Constitution, the application of the death penalty to a reduced number of crimes, are welcomed", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Continue its constructive dialogue on human rights issues with its national and international partners ", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Avoid criminalization of migrants", - "values": [ - "4 - General action" - ] - }, - { - "text": "Take further legislative measures and policies to combat racist manifestations, in particular against Roma, including in the media and in the political arena", - "values": [ - "4 - General action" - ] - }, - { - "text": "Take further steps to promote education in the languages of the national minorities, including in the areas where the number of students may be decreasing", - "values": [ - "4 - General action" - ] - }, - { - "text": "Continue its combat against hate crime and all forms of discrimination against minorities in accordance with international standards and its human rights obligations and to bring perpetrators to justice", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Ratify the ILO Equality of Treatment Social Security Convention, 1962 No. 118", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Respect the legitimate exercise of freedom of association and ensure all human rights activists operating in the country, including individuals cooperating with United Nations human rights mechanisms, are spared from any harassment of intimidation ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Continue its efforts to reach the Millennium Development Goals by 2015, in particular, it underlined the importance of strengthening the education sector by increasing the number of primary and secondary schools, attaining parity in all levels of schooling and strengthening higher education ", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Consider revising Executive Decree No. 739 on the regulation of social organizations and the Organic Act on Communication in the light of international commitments on human rights", - "values": [ - "3 - Considering action" - ] - }, - { - "text": "Sign and ratify the Second Optional Protocol to CAT, and create an independent mechanism for the monitoring of detention facilities ", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Increase the number and frequency of labour inspections, particularly in the primary sector, with adequately trained inspectors and without prior notifications, in line with Kazakhstan's international obligations", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Develop a holistic strategy to allow combating racism, racial discrimination, xenophobia and other related forms of intolerance", - "values": [ - "4 - General action" - ] - }, - { - "text": "Consider issues related to the access of asylum seekers, taking into account obligations under the international treaties", - "values": [ - "3 - Considering action" - ] - }, - { - "text": "Adopt effective policy measures aimed at combating and eliminating violence against women, including domestic violence, and encourage the high level participation of women in the labour market and especially decision making ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Ensure that human rights defenders, lawyers and other civil society actors are able to carry out their legitimate activities without fear or threat of reprisal, obstruction or legal and administrative harassment ", - "values": [ - "4 - General action" - ] - }, - { - "text": "In accordance with national circumstances, continue to strengthen mutual respect and tolerance and different cultures among religions and maintain social plurality while maintaining improved family harmony and respect for women", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Cooperate with special procedures of the Human Rights Council, including by swiftly providing access for special rapporteurs with outstanding requests for visits to Bahrain", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Further strengthen the commitment of Indonesia to strengthen the human rights dimension in business activities and continue its leading role in this regard", - "values": [ - "4 - General action" - ] - }, - { - "text": "Strengthen efforts to effectively implement the legislation in force on the subject of gender violence in order to reduce the current percentages of mistreated women. Put in place awareness raising campaigns to combat rejection in society and increase protection for victims ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Ensure appropriate protection is offered to the victims of genderbased violence including enabling them to seek police assistance, leading to prosecution of the perpetrators as appropriate", - "values": [ - "4 - General action" - ] - }, - { - "text": "Improve oversight of working conditions to prevent labour exploitation, especially in the domestic and agricultural sectors where foreign workers are particularly vulnerable ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Establish a training programme for penitentiary, judicial and security personnel to ensure its consistent application", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Provide systematic training on women\u2019s rights to all law enforcement personnel, medical staff and judicial officials", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Close as soon as possible the witch camps", - "values": [ - "4 - General action" - ] - }, - { - "text": "Accede to the International Convention on the Protection of the Rights of All Migrant Workers and Members of their Families", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Reform the marital partnership (regimen patrimonial de sociedad conyugal) to ensure compliance with its acquired international obligations", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Ensure applications for accreditation by non-governmental organizations (NGOs) are processed objectively, expeditiously, and in accordance with principles of non-discrimination, and that long-pending applications are promptly reviewed in accordance with these principles ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Fully explore the possibility of consolidating the work and functions of existing ombuds-institutions and establish a national human rights institution in compliance with the Paris Principles", - "values": [ - "3 - Considering action" - ] - }, - { - "text": "Work towards improving people's basic rights such as the right to food and the right to the highest attainable standard of health", - "values": [ - "4 - General action" - ] - }, - { - "text": "Continue endeavours aimed at combating domestic violence and ensure that all reports of domestic violence are thoroughly investigated and perpetrators are brought to justice in accordance with the law", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Strengthen efforts that are in place to put an end early and forced marriages and bride-kidnapping", - "values": [ - "4 - General action" - ] - }, - { - "text": "Strengthen and continue sharing its experience and the promotion of the role of gender in the national leadership", - "values": [ - "1 - Minimal action" - ] - }, - { - "text": "Take all the necessary steps to ensure that the national human rights institution complies fully with the Paris Principles", - "values": [ - "4 - General action" - ] - }, - { - "text": "Continue its policy to combat racism and all forms of discrimination and racial intolerance and continue implementing affirmative actions for vulnerable groups ", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "End the strike hard campaign associated with numerous serious violations of human rights", - "values": [ - "4 - General action" - ] - }, - { - "text": "Abolish corporal punishment for children", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Develop monitoring capacity and legislation to enhance the prevention, investigation and prosecution of crimes of violence against individuals on the grounds of their sexual orientation or gender identity ", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Further strengthen and expand its human rights education and awareness schemes ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Review the legislation and adopt measures to ensure equal access to education for disabled children, children with special education needs, children of foreigners or from poor families and/or minorities", - "values": [ - "3 - Considering action" - ] - }, - { - "text": "Undertake criminal justice reforms in line with international standards to ensure prompt investigations and trials for alleged perpetrators of human trafficking and to address extrajudicial killings and sexual violence against women and children", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Sign and ratify the CRPD ", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Develop all possible efforts to preserve freedom of expression in the media and social networks, in accordance with the recommendations of the universal and regional human rights systems", - "values": [ - "4 - General action" - ] - }, - { - "text": "Keep working on awareness measures, including in schools, to combat discriminatory attitudes based on sexual orientation", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "End intimidation, threats and physical attacks on journalists and promote open reporting and commentary on issues of public concern", - "values": [ - "4 - General action" - ] - }, - { - "text": "Rapidly adopt a legal framework establishing a National Human Rights Institution, in conformity with the Paris Principles ", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Adopt all possible measures to reduce maternal and child mortality and to facilitate the access of women and adolescents to sexual and reproductive health services", - "values": [ - "4 - General action" - ] - }, - { - "text": "Provide human rights training with regard to the protection of vulnerable groups, in particular women, children, indigenous peoples and persons of minority sexual orientation or gender identity to law enforcement officials, judicial officers and all State officials", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Intensify efforts to eliminate all forms of discrimination against women ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Adopt a comprehensive anti-discrimination law to ensure that the Roma enjoy equal access to employment, education and health care", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Adopt special measures to accelerate the full and equal participation in public and political life of women, including women of African descent, as recommended by the Committee on the Elimination of Discrimination against Women ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Take immediate actions to fully guarantee the right to freedom of expression for everyone", - "values": [ - "4 - General action" - ] - }, - { - "text": "Develop gender policies that allow a wider participation of women in politics ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Ensure, through legislative reforms, that protection and promotion of laws of freedom of expression as well as of peaceful assembly and association are guaranteed for all inhabitants of the country ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Place emphasis on linking the objective of poverty eradication to those of eliminating child labour and increasing school enrolment ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Cooperate with the international community to guarantee the return of all Muslim refugees and displaced persons, and guarantee the cooperation with all sides, and allow them full access to humanitarian assistance", - "values": [ - "4 - General action" - ] - }, - { - "text": "Safeguard the family institution and marriage as a marital union between a man and a woman based on free consent ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Respond positively to visits already requested by special procedures.", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Establish a national human rights institution for the promotion and protection of human rights in accordance with the Paris Principles", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Responding to the advance questions regarding anti-Semitism and Islamophobia, the delegation noted that the Government was strongly committed to countering all forms of religious discrimination and social prejudices.", - "values": [ - "4 - General action" - ] - }, - { - "text": "Strengthen the monitoring of national labour conditions to eliminate the practice of bonded labour and unlawful child labour", - "values": [ - "4 - General action" - ] - }, - { - "text": "Repeal the right of parents to use corporal punishment", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Recommended the development of a national strategy for human rights education in the school system at all levels, in accordance with the Plan of Action 2005-2009 of the World Programme for Human Rights Education, including the review and revision of curricula and textbooks, the training of teachers and the practice of human rights in the school community.", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Present the remaining reports to treaty bodies without delay, and make every effort to avoid such delays in the future ", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Accelerate its efforts to enact legislation on the protection of stateless persons", - "values": [ - "4 - General action" - ] - }, - { - "text": "Allocate sufficient and, if necessary, additional resources for the recruitment and training of personnel in children's institutions, and intensify efforts to raise the number of foster families and provide them with adequate training for foster care", - "values": [ - "4 - General action" - ] - }, - { - "text": "Continue its cooperation with the international and regional human rights mechanisms, in particular in the area of technical assistance and training", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Continue to combat all forms of discrimination and racism in sports ", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Guarantee the protection of fundamental freedoms even in counter-terrorist legislation.", - "values": [ - "4 - General action" - ] - }, - { - "text": "Further strengthen measures to protect children from all forms of violence", - "values": [ - "4 - General action" - ] - }, - { - "text": "Secure the cooperation and full involvement of local government units and civil society partners in the implementation of anti-trafficking laws and programmes", - "values": [ - "4 - General action" - ] - }, - { - "text": "Abolish the death penalty and reintroduce the moratorium ", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Improve domestic legislation to fight discrimination against women", - "values": [ - "4 - General action" - ] - }, - { - "text": "Include, among the priorities of the Second National Strategic Development Plan, the access to sanitation along with access to drinking water which is already contained ", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Strengthen efforts to eliminate patriarchal attitudes and stereotypes that discriminate against women, including through a comprehensive public awareness programme", - "values": [ - "4 - General action" - ] - }, - { - "text": "Continue improving the situation of women through pro-women policies.", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Continue to promote sustainable economic and social development and improve people\u2019s living standards", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Make torture a criminal offence in accordance with the Convention against Torture", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Create a safer working environment for journalists", - "values": [ - "4 - General action" - ] - }, - { - "text": "Prosecute and convict perpetrators of domestic violence ", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Ensure, in particular through its Independent National Security Legislation Monitor, that its national legislation is in keeping with its international obligations in the field of human rights ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Consider specifically with regard to the prevention of physical abuse of children the implementation of the recommendations of the Committee on the Rights of the Child.", - "values": [ - "3 - Considering action" - ] - }, - { - "text": "Continue to implement measures to give free legal assistance in case of gender-based violence", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Promote and foster economic, social and cultural rights for its people, with the objective of capitalizing on the progress that has already been made in this respect.", - "values": [ - "4 - General action" - ] - }, - { - "text": "Strengthen legislation protecting women and girls from forced or underage marriage and strengthen its penal code regarding rape, in particular by removing article 308 and amending the Penal Code to remove the exemption of those accused of honour crimes from prosecution, and strengthen the enforcement of this legislation, particularly in refugee camps ", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Ensure that LGBT people can express themselves freely for example, in the Belgrade Pride in 2013 ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Strengthen poverty reduction policies ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Continue its fight against poverty, lack of adequate food, safe water and sanitation, while paying special attention to the need to introduce a child rights-based approach in all policies", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Continue efforts to ensure that the right to health can be enjoyed on a fair and equal basis by\neveryone in the country within the context of attaining the Millennium Development Goals, and\nimprove the training of medical and paramedical personnel", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Strengthen the technical capabilities of the judicial and legal institutions ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Take administrative and legal measures against perpetrators of racially motivated acts, targeting migrants and minority communities ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Adopt initiatives to ensure gender-sensitive poverty eradication programmes and strategies ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Strengthen the capacity of the National Commission for the Promotion of Equality with regards to the follow up, investigation, and monitoring of cases of racial discrimination and violence, and initiate the corresponding legal actions, in order to combat impunity", - "values": [ - "4 - General action" - ] - }, - { - "text": "Ensure the right to food for its entire population without any restriction", - "values": [ - "4 - General action" - ] - }, - { - "text": "Continue its work to ratify the Law on Adoption and the Hague Convention on the Protection of Children and Co-operation in Respect of Intercountry Adoption ", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Use the new national plan of action on human rights and international humanitarian law to address the issue of extrajudicial killings comprehensively", - "values": [ - "4 - General action" - ] - }, - { - "text": "Ensure gender equality by including it in the Constitution and enact relevant laws, namely, on the empowerment of women and gender equality, and to combat stereotypes that encourage discrimination against women", - "values": [ - "4 - General action" - ] - }, - { - "text": "Continue and strengthen measures to prevent and repress offences and violence against women and girls, including through early childhood education, awareness-raising and enhancing effective mechanisms of reparation", - "values": [ - "4 - General action" - ] - }, - { - "text": "Take the measures necessary to ensure that eviction is a last resort, and to adopt legislation and guidelines that strictly define the relevant circumstances and safeguards for the moment when an eviction is carried out", - "values": [ - "4 - General action" - ] - }, - { - "text": "Take appropriate measures to ensure that torture does not occur in cases of detention, to improve the overall conditions for persons in detention, and to sign and ratify CAT and the Optional Protocol thereto", - "values": [ - "4 - General action" - ] - }, - { - "text": "Introduce at the earliest a moratorium on the death penalty", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Effectively cooperate with the Special Rapporteur on the rights to freedom of peaceful assembly and of association", - "values": [ - "4 - General action" - ] - }, - { - "text": "Adopt effective measures for the protection of and assistance to victims of gender-based violence and ensure that all cases of gender-based violence are duly investigated and perpetrators prosecuted", - "values": [ - "4 - General action" - ] - }, - { - "text": "Review laws and practices to ensure that they are compliant with international human rights law", - "values": [ - "3 - Considering action" - ] - }, - { - "text": "Ratify the Rome Statute", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Take further steps to address victims' rights, including taking forward reparations for victims of internal armed conflict, and to explore possible cooperation with United Nations special procedures in that regard", - "values": [ - "4 - General action" - ] - }, - { - "text": "Continue the policy of strengthening guarantees of social and economic rights of citizens, in particular in the area of education, health care, social protection and labour, and give special attention to the vulnerable groups such as children, persons with disabilities and national minorities", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Conduct a human rights education campaign among the law enforcement officials, to ensure permanent democratic freedoms in political life and in the work of the security forces, not just during electoral periods", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Consider the ratification of International Labour Organization Convention No. 169", - "values": [ - "3 - Considering action" - ] - }, - { - "text": "Consolidate further and exchange its experiences in programmes aimed at specialized care for young people, taking into account their interests and socioeconomic situation, all of which helps young people to develop their full potential", - "values": [ - "4 - General action" - ] - }, - { - "text": "Commute all death sentences, declare a moratorium on executions and move towards abolition of the death penalty ", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Continue its policies and efforts to combat human trafficking especially those of women and children", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Comprehensive measures including legislative means to ensure independence of media", - "values": [ - "3 - Considering action" - ] - }, - { - "text": "Implement all necessary measures in order to ensure that its national human rights body is in full compliance with the Paris Principles", - "values": [ - "4 - General action" - ] - }, - { - "text": "Make every effort to eradicate hazardous forms of child labour and sexual exploitation of minors and ensure that the offences are effectively investigated and prosecuted", - "values": [ - "4 - General action" - ] - }, - { - "text": "Endeavour to tackle issues of discrimination, particularly discrimination on grounds of ethnicity and linguistic traditions", - "values": [ - "4 - General action" - ] - }, - { - "text": "Seek the assistance of the Office of the United Nations High Commissioner for Human Rights to facilitate Grenada's request for technical assistance so that it may better fulfil its reporting obligations under the respective human rights instruments to which it is a party ", - "values": [ - "1 - Minimal action" - ] - }, - { - "text": "Take into consideration the possibility of adopting a moratorium of capital executions at the state and federal levels, given that 26 states have abolished or adopted a moratorium on capital executions", - "values": [ - "3 - Considering action" - ] - }, - { - "text": "Increase the level of its contribution of official development assistance to reach at least the threshold of 0.7 percent of GNP", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Ensure full gender equality in marriage and family relations, including by expressly prohibiting gender-based discrimination and repealing remaining discriminatory provisions", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Condemn acts of violence and human rights violations committed against persons because of their sexual orientation or gender identity and ensure adequate protection for human rights defenders who work on the rights of LGBT persons ", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Sign and ratify the 1951 Convention relating to the Status of Refugees, and enact domestic refugee law in line with international standards", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Meet its official development assistance target of 0.7 per cent of its gross national product", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "End compulsory drug treatment and reform mandatory reporting requirements to allow for anti-discriminatory access to health care", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Continue addressing, as a priority, the enjoyment by all people of the right to food and to ensure food security ", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Consider using the Yogyakarta Principles on the Application of International Human Rights Law in relation to Sexual Orientation and Gender Identity as a guide to assist Czech human rights policies.", - "values": [ - "3 - Considering action" - ] - }, - { - "text": "Adopt, in close consultation with the Ombudsman Board and civil society, a national action plan on human rights containing specific implementation targets and measurable indicators", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Respect and ensure the rights set forth in CRC of each child without discrimination of any kind ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Intensify its actions to address the problem of racially motivated crimes and excessive use of force by police against the Roma community and persons belonging to other vulnerable groups.", - "values": [ - "4 - General action" - ] - }, - { - "text": "Accept legal responsibility for and address, once and for all, the Japanese military sexual slavery and other violations committed in the past in other Asian countries including Korea", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Continue aligning the juvenile justice system with international standards", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Strengthen measures to combat domestic and sexual violence against women", - "values": [ - "4 - General action" - ] - }, - { - "text": "Establish and implement a comprehensive integration strategy for an early-stage integration of migrants, refugees and asylum-seekers ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Continue taking the necessary measures to keep girls in schools, and guarantee that they continue their official and higher education", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Repeal the Penal Code provisions criminalizing sex between consensual same-sex partners and remove discriminatory language against lesbian, gay, bisexual, transgender and intersex persons or minority groups or their supporters", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Expedite work on the formulation and implementation of the national plan of action for vulnerable children, which aims at benefitting 1.8 million vulnerable children in Malawi", - "values": [ - "4 - General action" - ] - }, - { - "text": "Take steps to raise the standards of press freedom and to adapt the Printing Presses and Publication Act to facilitate independent news media coverage", - "values": [ - "4 - General action" - ] - }, - { - "text": "Elaborate a national action plan on the promotion and protection of human rights ", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Consolidate the gender equality in the professional field by applying the principle "equal pay for equal work" in the pay system, to reduce wage gaps linked to gender, which consequently leads to differences on retirement pensions between men and women", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Continue efforts towards ratifying the CPED and accept the competence of its Committee ", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Ensure birth registrations while strengthening the implementation of mobile registration units of civil status", - "values": [ - "4 - General action" - ] - }, - { - "text": "Take all measures to ensure that free and fair elections are held as scheduled on 27 June and 18 July this year, guaranteeing all persons' right to participate in the Government of their country ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Continue efforts to establish a national institution in accordance with the Paris Principles.", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Take necessary steps to provide children with disabilities access to quality education", - "values": [ - "4 - General action" - ] - }, - { - "text": "Give continuity to strengthening of national human rights institutions and mechanisms to further promote and protect human rights in the country", - "values": [ - "4 - General action" - ] - }, - { - "text": "Decriminalize homosexual activity ", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Fully recognize the situation of the minority groups and take ample action in order to meet these challenges, including combating discrimination against minority groups, not least the Serb and Roma minorities", - "values": [ - "4 - General action" - ] - }, - { - "text": "Strengthen the different measures aiming at respecting rights of persons with disabilities, particularly boys and girls", - "values": [ - "4 - General action" - ] - }, - { - "text": "Pursue the implementation of the roadmap of March 6th 2014 concerning the elimination of all contemporary forms of slavery", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Ensure access to religious sites, especially in the Holy City of Jerusalem, and abolish all restrictions imposed on the right to freedom of movement and the right to manifest one's religion. ensure the preservation of the cultural and religious heritage in the Occupied Palestinian Territories, particularly in Jerusalem, and refrain from any actions that aim at changing the character and-or status of these sites.", - "values": [ - "4 - General action" - ] - }, - { - "text": "Continue its information campaign across the country on the rights of disabled persons in order to ensure the full realization of the rights of persons with disabilities and their integration into society", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Thoroughly and impartially investigate and, if credible evidence emerges, prosecute all allegations of human rights violations, in particular enforced disappearances, custodial torture and extra-judicial killings ", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Increase the level of investment in education and social and cultural affairs in rural areas to ensure an equal provision of all services, in particular to disadvantaged groups such as women and indigenous children ", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Increase the representation of women within the State and local administration", - "values": [ - "4 - General action" - ] - }, - { - "text": "Continue its efforts to halt the brain drain to foreign countries ", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Cease all actions as a third-State proxy, and to refrain from financing, organizing, training, supplying and equipping non-State actors committing acts in violation of international law", - "values": [ - "4 - General action" - ] - }, - { - "text": "Ratify the Rome Statute on the creation of the International Criminal Court as well as the International Convention for the Protection of all Persons from Enforced Disappearance ", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Take legislative and enforcement measures to eliminate all forms of violence against women, including to withdraw Egypt's reservations to the Convention on the Elimination of All Forms of Discrimination against Women", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Ratify the Convention of the Council of Europe on the Protection of Children against Sexual Exploitation and Sexual Abuse", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Continue in its implementation of the Millennium Development Goals, with the necessary support of the international community, in order to reduce infant mortality rates, improve maternal health and strengthen the fight against HIV-AIDS, malaria and other illnesses.", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Intensify efforts to improve the quality of education, to deal with the issue of high dropout rates, and continue to increase resources for educational infrastructure", - "values": [ - "4 - General action" - ] - }, - { - "text": "Implement transparent and inclusive mechanisms of public consultations with civil society organizations on all issues mentioned above - i.e. gender equality, minority rights, redressing wartime crimes, inclusive quality education for minorities and discrimination against LGBT persons", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Introduction and implementation of fully comprehensive anti- discrimination legislation to include sexual orientation and gender", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Continue making efforts to achieve full social equality between men and women", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Consider abolishing the death penalty or putting a moratorium on its use", - "values": [ - "3 - Considering action" - ] - }, - { - "text": "Ensure compulsory and free education for all", - "values": [ - "4 - General action" - ] - }, - { - "text": "Issue a standing invitation to Special Procedures mandate holders", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Permit visits from all 10 United Nations special procedures who have requested a visit ", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Improve the situation of women and continue efforts to combat violence against women", - "values": [ - "4 - General action" - ] - }, - { - "text": "Establish a national human rights institution in line with Paris Principles ", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Continue the efforts for the protection of children and the elimination of violence against them", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Increase law enforcement against trafficking for forced labour and take steps to systematically identify and protect victims of trafficking ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Set up a juvenile justice system and train more judges for juvenile courts", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Respect the right of the Palestinians to self-determination and the establishment of their independent State with Jerusalem as its capital as stipulated in various international treaties.", - "values": [ - "4 - General action" - ] - }, - { - "text": "Fully implement the National Gender Policy Action Plan", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Carry out judicial and penitentiary reform aimed to guarantee that trials are impartial and fair and that detention conditions are in accordance with international law, not only in letter but also in practice ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Effectively implement the National Strategy of Protection against Family Violence 2011-2016", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Guarantee the rights of women, particularly with regard to eradicating forced sterilizations, and ensure safe contraception policies and equal labour conditions ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Review its sentencing policy for perpetrators of human trafficking and strengthen assistance measures to victims", - "values": [ - "3 - Considering action" - ] - }, - { - "text": "Enhance the transparency of the election of members of the Ombudsman Office based on professionalism", - "values": [ - "4 - General action" - ] - }, - { - "text": "As a part of its commitment to guarantee civil and political rights as well as economic, social and cultural rights of its people, Sri Lanka will continue to align its development strategy within the larger framework of promoting local values and social protection for women, children, elderly and differently-abled people and other vulnerable groups in society and respect for human rights and good governance", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Continue its efforts to further the promotion of education", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Update the Council by December 2013 on the progress of the launch of its national human rights institution, with specific reference to its adherence to the Paris Principles", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Implement the national plan of action against ill-treatment 2011-2013 ", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Continue improving its legislation towards a judicial reform with a view to having a modern legislation which adapts to new challenges", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Adopt legislation on the restitution of the properties confiscated during the communist period ", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Continue reinforcing the policy on effective and qualitative access to health services for vulnerable populations, especially women of African descent who still remain the group with the highest mortality", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Ratify the International Convention on the Protection of the Rights of All Migrant Workers and Members of Their Families and ILO Convention No. 189", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Ensure that asylum procedures fully respect the best interest and special needs of unaccompanied children", - "values": [ - "4 - General action" - ] - }, - { - "text": "Re-introduce the de facto moratorium of the death penalty with a view to its abolition", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Request necessary technical assistance in the education sector, particularly when it comes to teaching tools and technological and scientific material ", - "values": [ - "1 - Minimal action" - ] - }, - { - "text": "Sign and ratify the Second Optional Protocol to the International Covenant on Civil and Political Rights, aiming at the abolition of the death penalty ", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Strengthen its mechanisms for ensuring that the compatibility of citizen\u2019s initiative with the obligations arising from international human rights instruments to which Switzerland is a party is subject to some form of check before such initiatives are put to the vote", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Set the minimum age for contracting marriage at 18 years for girls and boys ", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Continue its successful initiatives to fight the worst forms of child labour, in particular child trafficking for the purposes of labour exploitation and prostitution", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Carry out further efforts to combat human trafficking", - "values": [ - "4 - General action" - ] - }, - { - "text": "Adopt a national plan for poverty reduction, supported by a follow-up mechanism", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Reinforce the Ombudsman on Equal Opportunities, including through providing this office with adequate funding in order to ensure its compliance with international standards in this regard", - "values": [ - "4 - General action" - ] - }, - { - "text": "Take legal and institutional measures to strengthen the independence of the judges, ensure freedom of expression and lift the restrictions on access to Internet and social media", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Adopt effective legal measures to combat human trafficking, and swiftly prosecute perpetrators of such crimes ", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Address awareness campaigns at both men and women, to project positive images of women and of the equal status and responsibilities of men and women in the private and public spheres", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Guarantee to prisoners access to basic medical care and adequate food ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Take the necessary measures to end discrimination against women in workplaces and implement ILO and CESCR recommendations to ensure equal remuneration for work of equal value in public and private sectors", - "values": [ - "4 - General action" - ] - }, - { - "text": "Reinforce efforts to protect and rehabilitate the victims of trafficking ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Ratify OP-CRC-AC and OP-CRC-SC", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Further strengthen the institutions and mechanisms to ensure the implementation and follow-up of human rights public policies", - "values": [ - "4 - General action" - ] - }, - { - "text": "Develop provisions of a training programme to raise the awareness of the judiciary to the racial dimension of crime and to ensure that judges take into account racist motivation as an aggravating circumstance when they sentence in criminal cases", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Sign and ratify the International Convention for the Protection of All Persons from Enforced Disappearance ", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Improve the "Phoenix Programme" in order to facilitate the social integration of women upon their release from prison", - "values": [ - "4 - General action" - ] - }, - { - "text": "Hand in its initial report to the Committee against Torture as soon as possible", - "values": [ - "4 - General action" - ] - }, - { - "text": "Consider accession to the European Charter for Regional or Minority Languages ", - "values": [ - "3 - Considering action" - ] - }, - { - "text": "Pending abolition of the death penalty, reinstate the moratorium on executions and introduce a statutory prohibition on the death penalty and execution of persons with mental disabilities and those who were juveniles at the time of the crime", - "values": [ - "3 - Considering action" - ] - }, - { - "text": "Strengthen and effectively implement its legislation to prohibit, prosecute and punish hate speech, incitement to hatred and acts of religious profiling ", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Establish an inclusive process to follow up the UPR recommendations", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Keep the necessary measures to combat continued deforestation in order to ensure the effective enjoyment of economic, social and cultural rights", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Continue to take measures to eradicate poverty and to ensure better access to education and health care ", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Implement the recently adopted Human Rights Council resolution on children working and/or living on the street and give priority attention to the prevention of this phenomenon by addressing its diverse causes through economic, social, educational and empowerment strategies. These include proper birth registration, health care, education, awareness-raising and assistance to families", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Engage civil society, activists, NGOs and media to seek common ground on the Protection of State Information Bill ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Take effective measures and provide funds for the development of standards and policies to meet the needs of the most vulnerable groups in various areas, in particular education, health and housing", - "values": [ - "4 - General action" - ] - }, - { - "text": "Secure civilian infrastructure throughout South Sudan, in particular protection-of-civilians sites, and protect civilians, humanitarian workers and human rights defenders from human rights violations and abuses, including extrajudicial killings, enforced disappearances, torture and indiscriminate violence", - "values": [ - "4 - General action" - ] - }, - { - "text": "Ratify the International Covenant on Civil and Political Rights, the International Convention on the Elimination of All Forms of Racial Discrimination and the International Covenant on Economic, Social and Cultural Rights and its Optional Protocol", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Take necessary steps to find a final solution to the problem of overcrowding in some prisons in Switzerland", - "values": [ - "4 - General action" - ] - }, - { - "text": "Withdraw its reservations to the CRC ", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Submit all overdue reports to the relevant United Nations treaty bodies", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Continue its efforts to combat domestic violence, paying special attention to the situation of women and children ", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Implement electoral reform, as recommended by the Special Rapporteur on Cambodia, in order to prevent future recurrences of these issues ", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Accede to OP-CAT and establish its national preventive mechanism accordingly ", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Adopt a definition of torture which is fully in compliance with article 1 of the Convention against Torture, its inclusion as a specific crime in Thailand's legislation, and undertake prompt, thorough and impartial investigation of all allegations of torture and ill-treatment", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Apply Act No. 6/2006 preventing and punishing torture and prosecute those who are suspected of involvement in this type of crime, including members of security forces ", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Consider formulating measures that would recognize that a truly meaningful enjoyment of the right to freedom of expression is only realized when exercised with responsibility.", - "values": [ - "3 - Considering action" - ] - }, - { - "text": "Step up efforts on raising the awareness of the population of the impact of climate change and involve the population more in the decision-making process in mitigating and adapting to the consequences of such changes.", - "values": [ - "4 - General action" - ] - }, - { - "text": "Provide substantial resources to the key institutions in the criminal justice system and extensive training for judges, prosecutors, defence counsels and investigators in order to ensure safe prosecutions and respect for due process", - "values": [ - "4 - General action" - ] - }, - { - "text": "Make all necessary efforts to address discrimination against Roma, including in employment, education, health care, housing and loan practices ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Adopt the necessary additional measures to effectively prevent and combat sexual violence against women, particularly minors.", - "values": [ - "4 - General action" - ] - }, - { - "text": "Criminalize explicitly domestic violence and marital rape and make sure that the definition of rape is in line with international standards, and take steps to facilitate the reporting of domestic and sexual violence and protect victims", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Ratify the African Union Convention for the Protection and Assistance of Internally Displaced Persons in Africa, in the light of the ongoing review of Kenya's refugee law", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Sri Lanka's plan to address the forcible recruitment of child soldiers should be publicized", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Ensure the full enjoyment of freedom of expression and of the press by removing all of the restrictions imposed, including by decriminalizing defamation, in accordance with its obligations under ICCPR and its commitment taken during the previous review ", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Further enhance its cooperation with OHCHR and the mechanisms of the Human Rights Council ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Consider raising the age of criminal responsibility from 12 to 14 years, even for the most serious crimes", - "values": [ - "3 - Considering action" - ] - }, - { - "text": "Put an end to the practice of corporal punishment", - "values": [ - "4 - General action" - ] - }, - { - "text": "Adopt a new media law enshrining freedom of the press ", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Accelerate the resolution of pending property cases by adopting the relevant new legislative framework", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Ensure that crimes and violations against human rights defenders and journalists are effectively investigated and prosecuted, and that those responsible are punished ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Expand public awareness campaigns to cover effectively all forms of slavery", - "values": [ - "4 - General action" - ] - }, - { - "text": "Take measures to eliminate traditional practices that are in contradiction with human rights obligations", - "values": [ - "4 - General action" - ] - }, - { - "text": "Repeal article 230 of the Criminal Code, which criminalizes same-sex relations between consenting adults and discontinue the practice of forced anal exams to prove homosexual behaviour", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Stop the intimidation and harassment of human rights defenders, journalists, bloggers, media and artists", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Increase the minimum age of criminal responsibility contained in the Law of the Child in accordance with international human rights norms to ensure the protection of the rights of all children", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Take further steps to ensure the progressive realization for all inhabitants of the human right to safe drinking water and sanitation ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Ensure that gender-based violence is reported, duly investigated and prosecuted", - "values": [ - "4 - General action" - ] - }, - { - "text": "Implement the Rome Statute of the International Criminal Court into national law", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Conduct impartial, immediate and effective investigations into all presumed cases of extrajudicial or summary execution, including appropriate documentation of each alleged offence, preservation of evidence and compliance with procedural safeguards", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Increase the minimum age of employment to 16 years in line with the observations of the ILO", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Take further action in ensuring and preserving the political, economic, social and cultural rights of the Crimean Tatars, which would also be conducive to better inter-communal relations", - "values": [ - "4 - General action" - ] - }, - { - "text": "Pursue its efforts at the international level to create an international order based on justice and equality", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Accede to the International Convention on the Protection of the Rights of All Migrant Workers and Members of Their Families (ICRMW) ", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Adopt comprehensive national legislation in order to facilitate access to information, foster media pluralism and protect independent media", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Take measures to improve the working conditions of migrant workers", - "values": [ - "4 - General action" - ] - }, - { - "text": "Continue to implement strategies and plans and to increase women\u2019s participation in decision-making positions in the public sector", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Establish an official moratorium to abolish the death penalty, as called for in five General Assembly resolutions, including most recently resolution 69/186 of 18 December 2014", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Strengthen the measures on combating domestic and other forms of gender-based violence", - "values": [ - "4 - General action" - ] - }, - { - "text": "Extend a standing invitation to all UN special procedure mandate holders ", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Consider developing and adopting a freedom of information law in accordance with international standards ", - "values": [ - "3 - Considering action" - ] - }, - { - "text": "Expeditiously enact a new NGO law in line with the new Constitution which will grant legal personality to NGOs upon notification", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Conduct, jointly with special procedures of the Human Rights Council, a comprehensive and impartial investigation of all cases of cruel treatment and the use of excessive force by police officers against the participants in demonstrations that were held in Poland in November, 2011 ", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Put in place a broad strategy to eliminate patriarchal attitudes and stereotypes that discriminate against women in conformity with Articles 2 (f) and 5 (a) of CEDAW", - "values": [ - "4 - General action" - ] - }, - { - "text": "Adopt further measures to ensure gender equality in the society, including through implementing and updating, when necessary, the National Strategy to Combat Gender-based Violence", - "values": [ - "4 - General action" - ] - }, - { - "text": "Accurate statistical information relating to socio-economic conditions of the people will be gathered and collated to better enable identification of social and economic rights issues and their resolution", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Continue efforts in promoting the Congolese people's rights.", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Spread the culture of human rights and strengthen religious and faith tolerance", - "values": [ - "4 - General action" - ] - }, - { - "text": "Despite the fact that Italy had not ratified the International Convention on the Protection of the Rights of All Migrant Workers and Members of Their Families (ICRMW), the Italian legislative framework already guaranteed the rights of regular and irregular migrants. Moreover, Italy was committed to promoting a debate at the European level on that topic.", - "values": [ - "4 - General action" - ] - }, - { - "text": "Thailand will promote the right to education for disadvantaged and marginalized children so that these children are able to access education for all on an equal basis with others", - "values": [ - "4 - General action" - ] - }, - { - "text": "Guarantee all citizens the right to take part in the conduct of public affairs, in particular as regards policy making on land distribution and use", - "values": [ - "4 - General action" - ] - }, - { - "text": "Increase opportunities for the representation of women in Government functions ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Bring national legislation into line with international commitments made by the Marshall Islands on non-discrimination against women, in particular the Convention on the Elimination of All Forms of Discrimination against Women and continue its efforts to implement the Convention", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Ratify the Optional Protocol to CESCR ", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Repeal legal provisions which criminalize sexual activity between consenting adults of the same sex ", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Ratify the International Covenant on Civil and Political Rights and the Optional Protocol thereto, the International Convention on the Elimination of All Forms of Racial Discrimination, the Optional Protocol to the International Covenant on Economic, Social and Cultural Rights, the Convention against Torture and Other Cruel, Inhuman or Degrading Treatment or Punishment and the Optional Protocol thereto, and the two Optional Protocols to the Convention on the Rights of the Child - sign and ratify the International Convention for the Protection of All Persons from Enforced Disappearance, the Convention on the Rights of Persons with Disabilities and the Optional Protocol thereto", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Make further advances through withdrawing its reservations to CEDAW, CRC and CERD", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Guinea-Bissau sought to fulfill the commitments made in this regard with the publication of the said laws allowing detainees female to be in separate cells with the male.", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Continue its positive efforts to strengthen the implementation of the National Human Rights Plan by providing the necessary financial and human resources", - "values": [ - "4 - General action" - ] - }, - { - "text": "Launch an urgent appeal to the international community to provide the Congolese population with aid for the strengthening of basic infrastructure, such as the construction of distribution centres for drinking water, roads, housing, power stations, etc. ", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Intensify its efforts to carry out investigations and prosecutions on extrajudicial killings and punish those responsible.", - "values": [ - "4 - General action" - ] - }, - { - "text": "Take all necessary measures to further promote the rights of women and girls, including abolishing all discriminatory laws, implementing the national action plan to combat sexual violence and ending female genital mutilation", - "values": [ - "4 - General action" - ] - }, - { - "text": "Further develop, enhance and expand awareness-raising campaigns to counter human trafficking ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Continue to take effective measures to overcome and solve the problem of income inequality in the country", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Prolong a moratorium on the death penalty with a view to abolishing capital punishment entirely", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Implement the recommendations of the COI", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Share the process of implementation of the recent Law on Femicide, particularly concerning the training of the judiciary", - "values": [ - "1 - Minimal action" - ] - }, - { - "text": "Invite international mechanisms, in particular those for the strengthening of gender equality, women's rights, children's rights and the elimination of all forms of discrimination", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Continue efforts to ensure decent housing for all citizens ", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Further simplify the process of media registration and lower fees for broadcasting licensing ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Reinforce its efforts in the area of the implementation of obligations under international human rights law, in particular those pertaining to freedom of opinion and expression", - "values": [ - "4 - General action" - ] - }, - { - "text": "Implement the recommendations made by the Committee Against Torture on human rights defenders.", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Implement programmes to guarantee the rights of children with regard to health, education and protection from violence, and develop national awareness-raising plans to combat school dropout", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Work through the United Nations mechanism in progressive development of the third generation of human rights, particularly the value of international solidarity", - "values": [ - "4 - General action" - ] - }, - { - "text": "Thoroughly investigate cases of alleged discrimination against members of the Jewish and Muslim communities, including people of African descent, and bring the perpetrators of such crimes to justice", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Amend all statutory and customary laws as soon as possible to establish the minimum age of marriage at 18 years, and create and implement a comprehensive national plan of action to combat the practice of child marriage and its root causes", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Provide for the comprehensive protection and promotion of all human rights and fundamental freedoms enshrined in the Universal Declaration of Human Rights ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Consider the ratification of the Optional Protocol to the International Covenant on Economic, Social and Cultural Rights", - "values": [ - "3 - Considering action" - ] - }, - { - "text": "Continue its efforts to promote the full exercise of the right to freedom of information and expression", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Strengthen existing mechanisms as well as create new legal policies that prevent and combat human trafficking", - "values": [ - "4 - General action" - ] - }, - { - "text": "Strengthen the technical assistance so as to allow Mali to overcome its difficulties and improve the human rights situation in the country ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Strengthen the fight against discrimination affecting the Roma minority in access to housing, employment, education, social services and participation in public life ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Take further steps to eliminate discrimination against people based on their sexual orientation or gender identity", - "values": [ - "4 - General action" - ] - }, - { - "text": "Continue the measures aimed at the improvement of the quality of education and of health services ", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Ratify the OP-CRC-AC", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Take steps to fully incorporate the core treaties ratified by Uruguay, namely CEDAW and CRC, into domestic legislation.", - "values": [ - "4 - General action" - ] - }, - { - "text": "Consider acceding to the Optional Protocol the Convention against Torture and Other Cruel, Inhuman or Degrading Treatment or Punishment", - "values": [ - "3 - Considering action" - ] - }, - { - "text": "Implement without delay the proposals for improved procedures and modalities as regards its asylum policy and to review its detention policy and that such review include how to ensure that children are not detained pending age determination", - "values": [ - "4 - General action" - ] - }, - { - "text": "Prevent and combat trafficking in persons and intensify the protection of victims", - "values": [ - "3 - Considering action" - ] - }, - { - "text": "Continue taking measures to protect social rights, including the rights of children, women and persons with disabilities", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Expedite progress in preparing the legal framework for a national human rights institution ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Implement the 2011 recommendations of the International Coordinating Committee of National Institutions for the Promotion and Protection of Human Rights to ensure the high standards and independence of India's National Human Rights Institutions ", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Continue its efforts to reform its human rights institutions in line with the principles relating to the status of national institutions for the promotion and protection of human rights (the Paris Principles)", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Continue to adopt policies and legislations to guarantee the equality for women in all spheres and that they benefit from judicial remedies against any discriminatory practice or violence", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Continue its efforts aimed at improving access to health services", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Enforce effectively all relevant laws criminalizing violence against women and domestic violence", - "values": [ - "4 - General action" - ] - }, - { - "text": "Continue fostering educational attainment of Roma children as indicated in the 2004 common country assessment report ", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Continue the cooperation with the Special Procedures and the United Nations High Commissioner for Human Rights in their work to promote and protect human rights", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Take immediate steps to effectively eradicate and remedy widespread and systematic administrative practices of torture and ill-treatment, especially in detention facilities, suppression of the rights to assembly and freedom of expression, including media freedom and safety of journalists, and of control of judiciary by the executive in line with the United Nations treaty monitoring bodies' recommendations ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Continue to ensure effective functioning of the telemedicine system ", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Revise its social benefit programmes for assisting vulnerable families", - "values": [ - "3 - Considering action" - ] - }, - { - "text": "Continue to combat discriminatory societal behaviours, including by working at reforming domestic laws, in particular land and family laws, which require amendments in order for Tuvalu to in compliance with the Convention on the Elimination of Discrimination against Women", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Adopt, as soon as possible, a de jure moratorium on executions with a view to the abolition of the death penalty ", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "End detention of asylum-seekers at borders and create alternatives to detention for asylum-seeking families", - "values": [ - "4 - General action" - ] - }, - { - "text": "Cooperate fully with the International Criminal Court and its Prosecutor and provide it with the necessary support pursuant to Security Council resolution 1593 (2005) ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Continue to progress the establishment of an independent, Paris Principles-compliant, national human rights institution", - "values": [ - "3 - Considering action" - ] - }, - { - "text": "Take all necessary social, educational and legal measures to eliminate the practise of FGM", - "values": [ - "4 - General action" - ] - }, - { - "text": "Adopt the definition of torture used in article 1 of CAT ", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Ratify the Optional Protocol to the Convention against Torture and establish the national preventive mechanism at the earliest possible", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Pursue efforts to address concerns regarding child labour, in particular through its Action Programme to Eliminate Child Labour in Namibia 2008-2012 ", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Become a party to the ICCPR, the ICESCR, the CAT and its Optional Protocol, the ICERD and the Convention relating to the Status of Refugees and the Protocol thereto", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Consider signing and progressively ratifying international human rights instruments to which the country is not yet a party, especially the Optional Protocol to the Convention on the Rights of the Child", - "values": [ - "3 - Considering action" - ] - }, - { - "text": "Continue efforts to combat discrimination and promote the right to education and the rights of women", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Complete necessary legislative reforms towards the criminalization of domestic violence", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Continue to improve the judicial system ", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Recommended that Benin, following the recommendation of the Committee against Torture,establish without further delay an effective and independent national preventive mechanism.", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Complete the draft national action plan for the promotion and protection of human rights and the draft national action plan on violence against women ", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Promote gender equality, including equal remuneration for men and women for equal work ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Adopt and enact laws on the sale of children, child prostitution and child pornography, and other forms of sexual exploitation of children ", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Continue the reforms under way, notably the attention to the promotion of the rights of women and children, providing for the necessary protection and their personal development.", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Sign and ratify the following international instruments: ICESCR and its Optional Protocol (OP- ICESCR), the ICERD, the Second Optional Protocol to the ICCPR, and finally the Optional Protocol to the Convention on the Rights of the Child on a communications procedure ", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Consolidate and enhance its progress achieved for the promotion of civil and political rights, notably in the areas of freedom of expression, freedom of the media and the dissemination of a human rights culture", - "values": [ - "4 - General action" - ] - }, - { - "text": "Fulfil its commitments on the use of minority languages in justice, in both criminal and civil procedures ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Repeal the law against homosexuality, which facilitates discrimination against lesbian, gay, bisexual and transgender people, encourages harassment and violence against them and imposes sentences of life imprisonment for the offenses of homosexuality, same-sex marriage and "aggravated homosexuality"", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Intensify its efforts in the area of human rights education and capacity-building, and organize training seminars on human rights for those working in relevant institutions and bodies ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Work at reducing the high incidence of all forms of violence against women, prosecute perpetrators of such acts and criminalize all forms of violence against women", - "values": [ - "4 - General action" - ] - }, - { - "text": "Strengthen its policy to prevent, combat and punish human trafficking, particularly by providing assistance to victims, whatever their nationality.", - "values": [ - "4 - General action" - ] - }, - { - "text": "Do not concede asylum seekers' transfer to detention centres in third countries ", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Focus on the development of law enforcement capacities in order to fight impunity", - "values": [ - "4 - General action" - ] - }, - { - "text": "Legally recognize same-sex marriage", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Allocate additional funds to the National Human Rights Commission in order for it to effectively fulfil its mandate ", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Effectively combat human trafficking and swiftly investigate the whereabouts of kidnapped persons in particular ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Ensure the establishment of a moratorium of the death penalty in those states that have not abolished it yet", - "values": [ - "4 - General action" - ] - }, - { - "text": "Further ensure on its territory harmonized legislation on domestic violence and continue strengthening the referral mechanisms in order to provide protection to victims of domestic violence", - "values": [ - "4 - General action" - ] - }, - { - "text": "Enhance access to primary health care and education for people in the South, with an aim to achieve universal access for all ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Closely follow guidelines in the relevant General Assembly resolutions in its endeavours to prevent and combat violence against women and children", - "values": [ - "4 - General action" - ] - }, - { - "text": "Introduce strong legislation prohibiting attacks against journalists, effectively investigate such acts and prosecute the perpetrators, as previously recommended", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Continue maintaining its strong will to take necessary steps where further improvement and harmonization with international standards is needed", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Ratify the International Convention for the Protection of All Persons from Enforced Disappearance and the Optional Protocol to the Convention against Torture and Other Cruel, Inhuman and Degrading Treatment or Punishment", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Further strengthen its Equality Act\u2019, in particular, to provide better health services to groups in vulnerable situations including migrants", - "values": [ - "4 - General action" - ] - }, - { - "text": "Ratify human rights treaties to which Tuvalu is not yet a party.", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Take the necessary measures in order to establish a National Human Rights Institution in accordance with the Paris Principles", - "values": [ - "4 - General action" - ] - }, - { - "text": "Seek necessary assistance for its efforts to improve human rights in its territory, particularly the rights of migrants and asylum seekers", - "values": [ - "1 - Minimal action" - ] - }, - { - "text": "Respect and protect the rights of human rights defenders and journalists to conduct their work without hindrance, intimidation or harassment ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Ensure, in accordance with its international obligations, that the right to freedom of expression is fully respected ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Continue to ensure full and complete protection of persons with albinism ", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Make available all the necessary needs to guarantee the success of the National Plan of Action of Gender Equality 2015-2020", - "values": [ - "4 - General action" - ] - }, - { - "text": "Ensure that indigenous persons fully enjoy all human rights, including the rights to education, adequate access to health services and land rights", - "values": [ - "4 - General action" - ] - }, - { - "text": "Abolish the death penalty with respect to all forms of crime", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Adopt a clear and broad definition of child pornography and child prostitution in accordance with international law. Eliminate the possibility that children between 15 and 18 years of age can legally engage in prostitution", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Strengthen the policy of promotion of children's rights and the implementation of the Guidelines for the Alternative Care of Children, according to Human Rights Council resolution 11-7 and L.50 of the sixty-fourth session of the United Nations General Assembly ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Carry out awareness-raising campaigns at the community level regarding women's and girls' rights, and combat any discriminatory practices against women and girls ", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Continue the efforts aiming to eliminate all forms of discrimination and violence against women ", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Take steps to ensure full accountability of law enforcement agencies, including by strengthening complaints procedures ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Continue its efforts to speed up the implementation of the National Human Rights Roadmap and the related Action Plan", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Continue with its efforts to achieve the ratification of the CRPD", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Ensure access to justice, investigating an alarming pattern of violence afflicting indigenous women throughout the country and allegations of an inadequate response by authorities, as well as addressing the root causes of violence against indigenous women in order to end all forms of violence against Aboriginal women and girls ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Consider becoming a party to ICRMW", - "values": [ - "3 - Considering action" - ] - }, - { - "text": "Finalise the adoption of the law on the protection of the rights of the child, which has been recently announced", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Continue to protect the institution of the family, based on a stable relationship between a man and a woman", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Strengthen the implementation of the Law for Integral Protection of Children and Adolescents", - "values": [ - "4 - General action" - ] - }, - { - "text": "Intensify efforts to secure detention conditions, including care of children and young people deprived of their liberty, which fully meet international human rights standards", - "values": [ - "4 - General action" - ] - }, - { - "text": "Enact laws to ensure gender equality in wages and to reduce domestic violence and follow-up application ", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Continue its commendable efforts to promote understanding between nationals and foreign residents, as well as its efforts in the area of education in ethnic and religious tolerance", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Continue to reinforce efforts to promote the rights of vulnerable groups such as women and children, especially orphaned and disabled children and child victims of trafficking and sexual exploitation", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Ratify the International Convention on the Rights of Persons with Disabilities\n", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Adopt effective measures to prevent and protect human rights defenders from violence and ensure the prompt, thorough and effective investigation and appropriate punishment of such acts and ensure that human rights defenders operate in an enabling environment.", - "values": [ - "4 - General action" - ] - }, - { - "text": "Establish an adequate mechanism to ensure an effective response to sexual and domestic violence", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Set up a NHRI in accordance with the Paris Principles", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Ratify all the international instruments on human rights", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Strengthen efforts in the area of integrating human rights education in school curricula", - "values": [ - "4 - General action" - ] - }, - { - "text": "Establish a National Human Rights Institution in conformity with the Paris Principles", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Strengthen measures on combating discrimination against indigenous and migrant children and children with disabilities, as well as investigate all cases of ill-treatment of children by police officers and prison guards ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Strengthen efforts in the area of development by giving priority to economic, social and cultural rights", - "values": [ - "4 - General action" - ] - }, - { - "text": "Take appropriate legislative and practical measures to prevent racial bias in the criminal justice system ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Give continuity to fighting poverty and improving the quality of life of people ", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Ratify ILO convention 182 on the worst forms of child labour following the relevant recommendation made by Committee on the Rights of the Child in 2008 ", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Impose a moratorium on executions with a view to abolishing the death penalty ", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Continue to maintain efforts towards ensuring free primary education for all Madagascan children and promote the right of the girl child to education", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Continue the implementation of the national strategy to combat violence in intimate relations for 2009-2012 ", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Strengthen the institutional framework for human rights ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Conduct a national debate on the establishment of a moratorium on the use of the death penalty, with a view to its abolition", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Consider acceding to the International Convention on the Protection of the Rights of All Migrant Workers and Members of Their Families", - "values": [ - "3 - Considering action" - ] - }, - { - "text": "Continue its cooperation with civil society organizations in the follow-up to this review", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Consider establishing the national preventive mechanism, with the necessary legal and administrative provisions for its effective functioning in full independence, and sensitizing prison and police officers on a human rights-based approach towards detainees", - "values": [ - "3 - Considering action" - ] - }, - { - "text": "Continue the fight against impunity, especially regarding violence against women, children, human rights defenders, journalists and all other vulnerable groups", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Develop, in cooperation with all relevant national institutions, a comprehensive national human rights plan and a national human rights education plan ", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Consider enacting a law that regulates freedom of the press", - "values": [ - "3 - Considering action" - ] - }, - { - "text": "Continue efforts in safeguarding the welfare of all segments of society and the protection of their rights ", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Pursue its efforts to strengthen the Human Rights and Administrative Justice Commission, in particular by ensuring adequate financing and guaranteeing its efficiency", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Intensify its efforts to ratify the International Convention for the Protection of All Persons from Enforced Disappearances ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Continue to work on reducing violence against women in all spheres, keeping in mind the recommendations made on this subject in the context of its second UPR ", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Reach the human rights goals set by the Council in its resolution 9-12.", - "values": [ - "4 - General action" - ] - }, - { - "text": "Take an effective stand against hate speech and aggressive attitudes that are becoming increasingly mainstream", - "values": [ - "4 - General action" - ] - }, - { - "text": "Promote human rights education and training, particularly among such administrators of justice as police officers, judges and prosecutors", - "values": [ - "4 - General action" - ] - }, - { - "text": "Strengthen the fight against xenophobia on social networks and the Internet", - "values": [ - "4 - General action" - ] - }, - { - "text": "Align its legislation and practice with international standards with regard to prisons.", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Establish a monitoring mechanism against torture and all other forms of ill-treatment and to allow the conduction of periodic visits in all places of detention", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Continue and strengthen efforts to eliminate acts of torture, specially by security services ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Continue providing health-care services at primary health-care facilities at minimum or no cost ", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Provide the TRCT with necessary power, sufficient resources, and the continued independence it requires to be effective", - "values": [ - "4 - General action" - ] - }, - { - "text": "Continue intensifying efforts to combat all cases of torture and other cruel, inhuman or degrading treatment, and launch the National Verification Mechanism that allows to bring complaints before the judiciary ", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Should take action to protect the principle of legal security by expanding the capacity in the prison system so that all inmates are guaranteed a treatment in accordance with the Standard Minimum Rules for the Treatment of Prisoners", - "values": [ - "4 - General action" - ] - }, - { - "text": "Take more effective measures to combat racial discrimination and intolerance against migrants, and improve the legislative framework with the aim of fostering social acceptance of migrants", - "values": [ - "4 - General action" - ] - }, - { - "text": "Strengthen measures to guarantee gender equality as well as actions to prevent violence against women", - "values": [ - "4 - General action" - ] - }, - { - "text": "Transpose thoroughly and implement child legislation at the provincial level", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Take active measures to abolish corporal punishment of children in all settings", - "values": [ - "4 - General action" - ] - }, - { - "text": "Speed up the adjustment of national legislation to the Convention on the Rights of the Child, both at State and autonomous regions levels", - "values": [ - "4 - General action" - ] - }, - { - "text": "Extend an open and standing invitation to Special Rapporteurs and Representatives with a view to making progress in the fulfilment of human rights commitments made", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Accede to and fully align its national legislation with the Rome Statute of the ICC", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Abolish the system of re-education through labour ", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Adopt measures to promote gender equality and non- discrimination, particularly in the area of employment ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Ratify the International Convention on the Protection of the Rights of All Migrant Workers and Members of Their Families ICRMW ", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Take the necessary steps, including requesting technical assistance, to comply with reporting obligations to the United Nations treaty monitoring bodies ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Further empower its Special Court on Rape and Other Forms of Violence, enforce the laws against female genital mutilation and increase its efforts to create national public awareness programmes about sexual and gender-based violence", - "values": [ - "4 - General action" - ] - }, - { - "text": "Re-instate the dismissed members of the judiciary.", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Include accurate Holocaust information in all public school lesson plans ", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Immediately, thoroughly and un-biasedly investigate all cases of allegations of abuses of authority by law enforcement officials, including while dispersing demonstrations ", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Ratification of the Optional Protocol to the Convention on the Elimination of Discrimination against Women ", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Bring up to date the submission of the periodic reports to the treaty bodies", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Ensure all detainees be properly charged and brought to trial without delay, or released, and that an independent body in Gambia investigate allegations of ill-treatment, torture and extra-judicial executions", - "values": [ - "4 - General action" - ] - }, - { - "text": "Accede to the OP-CAT and establish an effective National Preventive Mechanism and further adopt additional measures to ensure its full implementation without any exceptions of the principle of non-refoulement", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Establish an effective and inclusive process to follow up on the recommendations emerging from the universal periodic review ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Review the norms on defamation in the context of the international frameworks related to freedom of expression and opinion", - "values": [ - "3 - Considering action" - ] - }, - { - "text": "Intensify efforts to increase the rate of registration and participation in the educational system of Roma children ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Consider the establishment of a legal moratorium on the death penalty with a view to abolishing capital punishment ", - "values": [ - "3 - Considering action" - ] - }, - { - "text": "The delegation emphasized the commitment of the Libyan Government to work on the implementation of all accepted recommendations and called for the establishment of a genuine partnership with all international organizations and civil society organizations that were interested in the realization and promotion of human rights and rule of law in Libya.", - "values": [ - "4 - General action" - ] - }, - { - "text": "Regarding human trafficking and violence against women and children, take further legislative steps, where necessary, and accelerate efforts for their effective implementation ", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Continue its work to safeguard full respect of human rights for, and non-discrimination of, the Roma population in Greece, in line with Greece's international obligations, and in doing so fully and effectively implement adopted strategies at all levels", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Consider the possibility of signing and ratifying the Optional Protocol to the Convention on the Rights of the Child on the sale of children, child prostitution and child pornography. ", - "values": [ - "3 - Considering action" - ] - }, - { - "text": "Continue to improve access to healthcare and raise awareness of reproductive health for women, children, youth, as well as migrants and asylum seekers in order to decrease maternal, child and infant mortality", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Step up its efforts to ease access by people to sanitation and drinking water", - "values": [ - "4 - General action" - ] - }, - { - "text": "Adopt measures to ensure the protection of free speech and freedom of the press, ensuring that human rights defenders can carry out their legitimate activities", - "values": [ - "4 - General action" - ] - }, - { - "text": "Enhance the legislation on gender and domestic violence by criminalizing sexual harassment in all its forms and by adopting a specific definition of domestic violence as a criminal offence, covering both physical and psychological violence ", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Allocate adequate resources to the National Human Rights Commission", - "values": [ - "4 - General action" - ] - }, - { - "text": "Harmonize its legislation, regulations and policies with ILO Convention No. 29 (1930) concerning Forced or Compulsory Labour and No. 138 (1973) concerning Minimum Age for Admission to Employment ", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Ensure that the birth registration system is further improved and supported by awareness-raising activities, in order to achieve registration for all", - "values": [ - "4 - General action" - ] - }, - { - "text": "Step up the awareness-raising campaigns concerning human rights by translating international instruments concerning human rights into the various national languages ", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Pursue measures aiming at protecting women and addressing the issue of violence against them ", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Implement a national strategy which includes the review and the drafting of laws, and campaigns to raise awareness about discrimination at all levels of society, including traditional leaders, aimed at modifying or eliminating, in accordance with the Convention on the Elimination of All Forms of Discrimination against Women (CEDAW), harmful stereotypes and practices which discriminate women ", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Ensure a national mechanism for transitional justice and national reconciliation, starting with the immediate release of the conflict mapping report of the Human Rights Commission and ensure adequate security assistance for its staff ", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Incorporate without delay the Convention on the Elimination of All Forms of Discrimination against Women in its national legislation and make it applicable in its judicial proceedings, as recommended by the Committee on the Elimination of Discrimination against Women", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Further develop, with international support, a human rights training and capacity-building exercise for judiciary and law enforcement personnel.", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Continue its efforts in combating violence against women by, inter alia, raising awareness of the victims' rights, increasing public understanding to avoid social exclusion of the victims and empowering women and girls by enhancing access to education", - "values": [ - "4 - General action" - ] - }, - { - "text": "Maintain its good example in observing the legal safeguards surrounding the application of death penalty", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Sign and ratify OP-CESCR, allowing individual complaints of alleged violations of these rights to be heard by the Committee ", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Take further steps to increase participation by women in Parliament, and in government leadership positions, including through further consideration of temporary special measures", - "values": [ - "4 - General action" - ] - }, - { - "text": "Continue to make concerted efforts to protect the rights of overseas migrant workers", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Ratify as early as possible the International Convention on the Rights of Persons with Disabilities\n", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Ratify the CAT ", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Encourage a broader appreciation of the role, value and contribution of women in community and national development in Solomon Islands with a view to creating national awareness of political participation and representation by women, at all decision making levels, including the Parliament ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Take consistent anti-corruption measures to enhance good governance and to promote transparency in the delivery of public services", - "values": [ - "4 - General action" - ] - }, - { - "text": "Take further requisite measures to ensure full independence of the judiciary, which will have a meaningful contribution to their democracy and instil confidence in the people of Kyrgyzstan", - "values": [ - "4 - General action" - ] - }, - { - "text": "Investigate the numerous cases of aerial bombardments", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Require that the police act with restraint when not directly threatened", - "values": [ - "4 - General action" - ] - }, - { - "text": "Engage with the United Nations and development partners when technical support is required", - "values": [ - "1 - Minimal action" - ] - }, - { - "text": "Ensure that the complaints mechanisms of the Ombudsman are easily accessible to all in need, including children ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Continue intensifying the efforts on the protection of children's rights and interests", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Complete by making the amendment to the proposed amendment to the nationality law that guarantees the Bahraini nationality for children from a Bahraini mother and a non-Bahraini father law ", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Maintain the positive efforts aiming to find durable solutions by way of repatriation, reintegration and resettlement of refugees ", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Continue to generate employment opportunities and train people forself-employment ", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Ensure that the freedoms of assembly and expression are upheld and respect the 2003 Supreme Court ruling stating that these freedoms are fundamental", - "values": [ - "4 - General action" - ] - }, - { - "text": "Move quickly to establish the Independent High Commission for Human Rights IHCHR and, notwithstanding budget pressures, ensure adequate funding for the IHCHR and the Ministry of Human Rights", - "values": [ - "4 - General action" - ] - }, - { - "text": "Strengthen the domestic legal framework to prevent and punish human rights violations committed by transnational corporations and other enterprises", - "values": [ - "4 - General action" - ] - }, - { - "text": "In order to foster a further dialogue between religions, to develop an educational and awareness program focusing on the different religions in the country", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Reduce protracted pretrial detention by seeking alternatives to confinement in all possible cases and by ensuring more expedient court processes", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Adopt further measures to reduce the gender pay gap in all sectors of the economy", - "values": [ - "4 - General action" - ] - }, - { - "text": "Comprehensively investigate incidents and allegations of hate crimes and xenophobic attacks and bring their perpetrators to justice", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Intensify its efforts to stem the development of racism and xenophobia and to ensure that the materials which are published in media do not contribute to creating an atmosphere of hostility, intolerance and rejection towards migrants", - "values": [ - "4 - General action" - ] - }, - { - "text": "Take measures to reduce prison overcrowding in the country, particularly in the Champ-Dollon prison, and ensure that no one is detained preventively beyond 48 hours", - "values": [ - "4 - General action" - ] - }, - { - "text": "Take steps to promote religious dialogue on issues that affect women's human rights and the implementation of laws tackling violence against women", - "values": [ - "4 - General action" - ] - }, - { - "text": "Continue to take all necessary steps to combat corruption, ensure judicial independence and promote a fair and transparent legal system for all Slovak citizens ", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Strengthen cooperation with the special procedures of the Human Rights Council by extending a standing invitation to all the special procedures mandate holders", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Proceed with ratifying the Rome Statute of the International Criminal Court", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Consider an early ratification of the third OP to CRC (OPIC) on a communication procedure ", - "values": [ - "3 - Considering action" - ] - }, - { - "text": "Ratify the International Covenants, CAT, the Convention on the Rights of Persons with Disabilities, ICERD, as well as the Rome Statute of the International Criminal Court ", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Strengthen its cooperation on issues of extradition and guarantee the cooperation and responsiveness of financial institutions with regard to requests for recovering assets of illicit origin ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Ratify promptly the Optional Protocol to the Convention on the Rights of the Child on the involvement of children in armed conflict", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Amend its legislation so as to include an explicit provision on prohibition of discrimination based on gender and a specific provision on the definition of direct and indirect discrimination", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Update the constitutional provisions regarding the definition of a child to be in harmony with the overall definition in the Convention on the Rights of the Child", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Take further measures aiming at women's empowerment ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Ensure that the 2007 law making slavery a criminal offence is effectively enforced and that all people suspected of slavery are property prosecuted ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Issue a standing invitation to the special procedures of the Human Rights Council ", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Prevent all forms of discrimination and vilification and deliberate negative stereotyping of the Roma community, Muslims and migrants", - "values": [ - "4 - General action" - ] - }, - { - "text": "Adopt appropriate measures to guarantee equal access to education without any discrimination to pave the way to the country's economic and social development in a sustainable manner", - "values": [ - "4 - General action" - ] - }, - { - "text": "Continue efforts to ensure free access to health care throughout the country", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Establish an official moratorium on executions with a view to abolishing the death penalty", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Take additional measures to protect child victims of violence", - "values": [ - "4 - General action" - ] - }, - { - "text": "Follow up on the recommendations by its National Aids Council, and include men having sex with other men in its HIV/AIDS policies", - "values": [ - "4 - General action" - ] - }, - { - "text": "Adopt measures to eliminate domestic violence, rape and sexual harassment, ensuring the safety of victims and the timely response to complaints, as well as access to free legal assistance", - "values": [ - "4 - General action" - ] - }, - { - "text": "Continue its efforts to combat impunity and violations of human rights, with particular attention to the rights of indigenous populations and persons of African descent ", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Strengthen policies aimed at protecting the work of human rights defenders", - "values": [ - "4 - General action" - ] - }, - { - "text": "Increase efforts to reduce infant, neonatal and maternal mortality, through systematic prevention and treatment mechanisms and accessible maternal and infant health-care services", - "values": [ - "4 - General action" - ] - }, - { - "text": "Institute a framework for combating gender-based violence and punishing perpetrators", - "values": [ - "4 - General action" - ] - }, - { - "text": "Continue to take steps, in particular within the national Action Plan against domestic violence, and ensure that victims have effective access to complaint mechanisms ", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Strengthen policies on the elimination of inequalities in the access to employment on the grounds of gender or racial origin", - "values": [ - "4 - General action" - ] - }, - { - "text": "Continue and strengthen its efforts towards enforcing the law on female genital mutilation ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Establish an effective legal framework to protect the right to adequate housing of persons belonging to the Roma minority and ensure that cases of discrimination against them are swiftly investigated", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Draft their Constitutions in an inclusive process with the participation of civil society, women and minorities. Also, ensure that the new Constitutions include a catalogue of human rights, in particular the freedom of speech and assembly, and take the multiethnic and multireligious background of their population into account ", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Accede to-ratify the Rome Statue of the International Criminal Court.", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Continue with its active efforts to improve its legislation to further promote gender equality and the rights of women", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Ratify the Optional Protocol to the Convention against Torture and establish a national preventive mechanism related to it.", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Provide its National Human Rights Commission with adequate funding in order for it to be able to fulfil its role", - "values": [ - "4 - General action" - ] - }, - { - "text": "Remove from the Constitution provisions allowing racial discrimination", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Strengthen its efforts to address the problems of street children and child labour ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Establish a monitoring and coordination mechanism to implement the national humans rights action plan", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Take effective measures to cope with the high rate of HIV transmission by strengthening the national strategic plan to combat HIV/AIDS", - "values": [ - "4 - General action" - ] - }, - { - "text": "Raise the minimum age of criminal responsibility from 7 to 18 years", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Ensure that youth in conflict with the law are handled by the juvenile justice system and have access to free legal advisory assistance", - "values": [ - "4 - General action" - ] - }, - { - "text": "Share its experiences and good practices in international cooperation aimed at implementing the right to health of millions of people, through initiatives such as the Comprehensive Health Programme and Operation Miracle, among others", - "values": [ - "1 - Minimal action" - ] - }, - { - "text": "Continue efforts to combat human trafficking and to protect victims of such crimes, especially women and children", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Ensure that the provisions of the 2009 Charities and Societies Proclamation are in compliance with international human rights standards, including the freedom of expression and assembly ", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Decriminalize the act of attempted suicide", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Consider applying the Yogyakarta Principles on the Application of International Human Rights Law in relation to Sexual Orientation and Gender Identity as a guide to assist in policy development", - "values": [ - "3 - Considering action" - ] - }, - { - "text": "Continue to realize the right to work for its citizens, including through providing opportunities for vocational training and technical education for young people", - "values": [ - "4 - General action" - ] - }, - { - "text": "Respond positively to all pending requests of special procedures for visits without further delay.", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Guarantee effective implementation of regulation to eliminate abusive child labour practices, including measures to ensure that children remain in the educational system", - "values": [ - "4 - General action" - ] - }, - { - "text": "Continue its efforts to combat crime in a manner which enhances the rule of law in maintaining social stability, upholding justice and respecting human rights ", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Ratify the 1951 Convention relating to the Status of Refugees and its 1967 Protocol, the 1954 Convention relating to the Status of Stateless Persons and the 1961 Convention on the Reduction of Statelessness", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Consider amending its domestic laws to grant Omani women equal rights with men with regard to transmission of their nationality to their children, as previously recommended", - "values": [ - "3 - Considering action" - ] - }, - { - "text": "Ratify the Rome Statute of the ICC", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Consider ratifying and implementing international human rights treaties such as the International Covenant on Economic, Social and Cultural Rights ", - "values": [ - "3 - Considering action" - ] - }, - { - "text": "Take every possible measure to put an end to discrimination against people with disabilities.", - "values": [ - "4 - General action" - ] - }, - { - "text": "Adopt the necessary legal framework and launch appropriate policies, including awareness\ncampaigns for the public, to guarantee the indiscriminate access of the Nepalese minority to the\nsame enjoyment of human rights as for other Bhutanese citizens", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Establish the national mechanism for the prevention of torture, in accordance with OP-CAT", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Take all necessary steps to ensure the effective implementation of legislation seeking to combat violence against women and girls, and take specific measures to protect those who are victims of violence based on their sexual orientation and gender identity", - "values": [ - "4 - General action" - ] - }, - { - "text": "Conduct a credible and impartial investigation and address all allegations of human rights violations with a view to bringing the perpetrators to justice", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Abolish articles 301 and 318 of the Penal Code, which limit freedom of expression ", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Eradicate the practice of female genital mutilation and continue its efforts regarding gender equality", - "values": [ - "4 - General action" - ] - }, - { - "text": "Reform its legislation on religious freedom in order to ensure adequate protection for all religious minorities, with a view to gradually allowing public practice of other faiths and beliefs ", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Protect and guarantee the right to life and to a fair trial also in the context of the campaign against drug trafficking, and take all necessary steps to guarantee a proportionate use of force by the security forces", - "values": [ - "4 - General action" - ] - }, - { - "text": "Implement and apply human rights legislation in practice as well as implement the ombudsman's recommendations", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Enhance activities aimed at eliminating discrimination against women and gender-based violence", - "values": [ - "4 - General action" - ] - }, - { - "text": "Adopt and implement effective legislation aimed at banning female genital mutilation and punishing the perpetrators", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Sign and ratify the Optional Protocol to the International Covenant on Economic, Social and Cultural Rights \n", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Ratify the OP-CAT and establish an effective National Preventive Mechanism ", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Withdraw its reservations to articles 9 (2), 15 (4) and 16 (1), (c), (d) and (g) of the Convention on the Elimination of Discrimination against Women (CEDAW)", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Ensure full implementation of international human rights obligations regarding freedom of expression", - "values": [ - "4 - General action" - ] - }, - { - "text": "Become a party to ICERD, ICCPR and its Optional Protocols, ICESCR, the Convention on the Prevention and Punishment of the Crime of Genocide, the Rome Statute of the International Criminal Court and the Convention on the Status of Refugees and its Protocol", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Implement measures to ensure girls' and women's access to all levels of education and ensure a higher level of women's participation in public life ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Do its utmost in ensuring that allegations of self-censorship, threats against journalists and low public trust in the media are investigated in a timely, transparent and effective manner and that those responsible are held to account ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Ratify the International Convention for the Protection of all Persons from Enforced Disappearance", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Complete the ratification process for the two Optional Protocols to the Convention on the Rights of the Child, on the involvement of children in armed conflict and on the sale of children, child prostitution and child pornography, and for the Protocol to the African Charter on Human and Peoples' Rights on the Rights of Women in Africa", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Step up efforts to improve literacy rates among its population, focusing on women and girls, notably in the rural area", - "values": [ - "4 - General action" - ] - }, - { - "text": "Take all necessary measures to ensure that the trade union rights of workers in Cambodia are fully respected and that trade unionists are able to exercise their activities in a climate free of intimidation and risk to their personal security and their lives", - "values": [ - "4 - General action" - ] - }, - { - "text": "Promote national efforts aiming at achieving gender equality and women's empowerment on the political and social level", - "values": [ - "4 - General action" - ] - }, - { - "text": "Continue the process to ratify and implement into domestic law the several international human rights instruments that still wait for this formal acceptance ", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Monitor the environmental impact of the oil industry on human rights of people in the Niger Delta, taking in the relevant and suitable measures", - "values": [ - "4 - General action" - ] - }, - { - "text": "Continue the current efforts to strengthen measures to counter discriminatory attitudes in society, including through public education and equality initiatives and legislative measures ", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Ratify the Convention against Torture, and prohibit corporal punishment, present in legislation, in the penal system ", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Continue its ongoing review of national laws to ensure that they are in line with its international human rights law obligations", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Continue to move forward through the adoption of all measures and policies that can achieve greater efficiency in the promotion and protection of human rights, and the promotion of the rule of law ", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "The national report makes it clear that harmful traditional practices are deeply rooted in the culture of the Nigerian peoples, we therefore encourage the Nigerian government to intensify its efforts in the field of human rights education to eradicate this problem that only seems to weaken the development prospects in this country", - "values": [ - "4 - General action" - ] - }, - { - "text": "Further promote human rights education and training at all levels", - "values": [ - "4 - General action" - ] - }, - { - "text": "Continue concentrating efforts for the inclusion of pupils of Roma origin in the educational system", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Consider aligning its domestic legislations and enacting new laws, as appropriate, in order to fully implement its human rights obligations, particularly those relating to combating trafficking in persons, especially women, girls and children", - "values": [ - "3 - Considering action" - ] - }, - { - "text": "Step up measures to combat acts of racism by the law enforcement bodies, including against Travellers", - "values": [ - "4 - General action" - ] - }, - { - "text": "Strengthen measures to ensure gender equality, particularly in the transmission of nationality to the children of women married to non-citizens ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Establish a mechanism for transitional justice ", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Strengthen activities in favour of rural areas by focusing on education and on preventing disadvantaged children from dropping out of school ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Enlarge the mandate and allocate sufficient resources to the Office of the Ombudsman, as a human rights institution, and ensure that it complies with the Paris Principles ", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Step up efforts to improve and conserve the environment, including by strengthening the relevant laws and providing the public with the necessary information, education and awareness regarding the impacts of environmental pollution and degradation ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Take all appropriate measures to enable and facilitate the acquisition of Slovenian citizenship by the "erased persons", paying particular attention to the children of "erased persons" in 1992, who are still stateless. Ensure compensation for all "erased persons" and, in this regard, review their compensation schemes, on the basis of the amounts and criteria established by the European Court of Human Rights and ensure the implementation of measures to reintegrate "erased persons"", - "values": [ - "4 - General action" - ] - }, - { - "text": "Ensure effective coordination between the activities of the expert council of ethnic policy and the action plan for the implementation of the national strategy for human rights with a view to ensuring non-discrimination", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Improve the situation of indigenous minorities, particularly regarding the right to property, access to housing, right to participation and intercultural education", - "values": [ - "4 - General action" - ] - }, - { - "text": "Develop non-custodial alternatives in relation to the sole or primary carers of children.", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Fight discrimination against LGBT persons both in law and in practice, as it impacts on the possibilities of education, justice and access to health services, with emphasis on the difficulties faced by transgender people ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Adopt a comprehensive law on violence against women", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Continue to promote the establishment of a national human rights institution in accordance with the Paris Principles", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Amend the criminal code in order to include the definition of sexual violence, in accordance with international standards", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Continue the efforts to improve prison conditions ", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Adopt and implement legislation ensuring effective protection of LGBT people, inter alia on the prohibition of discrimination and hate crimes, a confidential complaints mechanism and protection of LGBT minors", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Consider ratifying the ICESCR", - "values": [ - "3 - Considering action" - ] - }, - { - "text": "Continue its efforts in promoting human rights education and national human rights protection mechanisms", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Ratify the Convention relating to the Status of Stateless Persons", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Extend an open invitation to the Human Rights Council Special Procedures, and in particular to the Special Rapporteur on Torture and the Special Rapporteur on the promotion and protection of human rights and fundamental freedoms while countering terrorism ", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Continue to strengthen the cooperation between the State and civil society organizations involved in human rights education", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Continue to consolidate its social policies to improve the living conditions of its people, in particular for those most in need, with the support of the cooperation and solidarity of the international community", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Ratify the International Convention for the Protection of All Persons from Enforced Disappearance and recognize the competence of the Committee on Enforced Disappearances (in accordance with articles 31 and 32 of this instrument)", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Adopt measures to ensure that Dominicans of foreign descent keep their Dominican nationality, avoiding possible cases of statelessness ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Establish an independent body with the mandate to conduct investigations into any acts of torture and the ill-treatment of all persons in detention", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Adopt effective measures to improve the socioeconomic status of indigenous women and children as well as of those of African descent ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Repeal or amend those sections of the Penal Code that prevent LGBT persons from having equal rights ", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Consider introducing legislation prohibiting corporal punishment of children", - "values": [ - "3 - Considering action" - ] - }, - { - "text": "Prevent the use of torture and ill-treatment on suspects in police custody and prosecute those responsible", - "values": [ - "4 - General action" - ] - }, - { - "text": "Continue to improve the living conditions of migrants, refugees and asylum seekers", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Allow international independent organizations to visit Cuba", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Establish an independent body responsible for investigating possible police abuses ", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Ensure closer monitoring of the implementation of the National Action Plan for Women by developing the monitoring and evaluation capacity of the Ministry of Women's Affairs and other national entities", - "values": [ - "4 - General action" - ] - }, - { - "text": "Continue its work to combat societal discrimination and xenophobia ", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Continue efforts to ensure the enrolment of all segments of society in education", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Consider ratifying the Convention against Torture and its Optional Protocol, the Convention on the Elimination of All Forms of Discrimination against Women, the Protocol to the African Charter on Human and People's Rights on the Rights of Women in Africa and the International Convention for the Protection of All Persons from Enforced Disappearance ", - "values": [ - "3 - Considering action" - ] - }, - { - "text": "Government is committed to establishing a code of ethics for investors.", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Strengthen the framework for protecting children's rights, particularly through measures to prevent child abuse, exploitation and violence against children, and consider revising the juvenile justice system to raise the age for criminal responsibility according to the Convention on the Rights of the Child", - "values": [ - "4 - General action" - ] - }, - { - "text": "Ratify the Convention against Torture and Other Cruel, Inhuman or Degrading Treatment or Punishment and ensure that the instrument of ratification is fully consistent with the Convention ", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Take all necessary measures to protect women and children from violence, particularly sexual abuse and exploitation, including through the adoption of awareness-raising programmes, as well as by means of sexual education policies", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Work with UNHCR and the Core Group to develop a near-term initiative to allow some\nrefugees to return immediately to Bhutan, granting special consideration to cases of humanitarian\nconcern, such as those involving the elderly", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Heed the calls of the COI and Human Rights Council resolution 25/25 to end human rights violations, in particular, those that amount to crimes against humanity, and bring perpetrators to justice", - "values": [ - "4 - General action" - ] - }, - { - "text": "Sign and ratify, as soon and possible, the International Covenant on Civil and Political Rights and the Convention against Torture and Other Cruel, Inhuman or Degrading Treatment or Punishment ", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Ratify OP-CAT, as well as OP-CRC-AC ", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Reinforce positive discrimination measures envisioned in favour of indigenous peoples and people of African descent", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Continue to increase women's access to employment, public life, education, housing and health", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Continue efforts to achieve a fair socioeconomic order to continue the struggle against social disparity, promoting equality", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Safeguard and expand religious freedom by revising national legislation so that it recognizes and protects all forms of religion or belief, theistic, atheistic and non-theistic, as set out in article 18 of the Universal Declaration of Human Rights, including for those outside the six officially recognized religions", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Continue to cooperate with the UN and other international organisations to develop its legal and institutional framework with respect to the promotion and protection of Human Rights in Timor-Leste ", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Consider withdrawing reservations to the Convention on the Elimination of All Forms of Discrimination against Women and to adopt and implement specific legislation to prevent and counter violence against women, including domestic violence, and to create an institutional framework dedicated to receiving complaints, to ensuring the effective protection of women who suffered or are at the risk of suffering from violence and to provide compensation and accountability against perpetrators", - "values": [ - "3 - Considering action" - ] - }, - { - "text": "Pursue efforts to protect children from violence", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Sign and ratify the Second Optional Protocol to ICCPR, aiming at the abolition of the death penalty", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Continue to raise awareness on harmful cultural norms and traditional practices as well as human rights education in primary school system", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Work to share and implement best practices in the area of promoting the rights of children with disabilities", - "values": [ - "4 - General action" - ] - }, - { - "text": "Adopt a legislative framework on minorities and indigenous peoples consistent with human rights", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Adopt a comprehensive anti-discrimination law aimed at preventing racial discrimination, and ensure that it is applied to the whole territory of the Swiss Federation", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Continue implementing measures to combat and prevent racism, racial discrimination and xenophobia, and to guarantee equality of opportunities", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Continue taking effective measures to eliminate discrimination against Bedouin women and strengthen the respect of their fundamental rights through concrete and voluntary measures", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Incorporate international conventions, to which Afghanistan is a party, into domestic legal reform initiatives and translate these into concrete policies and programmes.", - "values": [ - "4 - General action" - ] - }, - { - "text": "Review national legislation with the aim of decriminalizing homosexuality between consenting adults and prohibiting discrimination on the grounds of sexual orientation and gender identity ", - "values": [ - "3 - Considering action" - ] - }, - { - "text": "Become a party to the Convention on the Rights of the Child", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Establish a comprehensive, robust and effective legislative mechanism aiming at the prohibition and legal sanction of all forms discrimination", - "values": [ - "4 - General action" - ] - }, - { - "text": "Pursue efforts to take the necessary measures to ensure the full implementation of the Rome Statute, the CRPD and the Optional Protocol to CEDAW in its national legislation ", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Continue strengthening the mechanisms to supervise the observance of human rights of the inmates, with the aim of preventing ill-treatment, and handle all complaints of torture and other ill-treatment in a timely manner ", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Intensify its efforts to fight against racism, intolerance and xenophobia in society", - "values": [ - "4 - General action" - ] - }, - { - "text": "Do not undertake criminal proceedings against Palestinian juveniles in military courts", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Extend a standing invitation to human rights mechanisms to visit the country and to support national efforts in these areas", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Protect and promote freedom of expression and media pluralism", - "values": [ - "4 - General action" - ] - }, - { - "text": "Establish an effective independent monitoring mechanism to investigate complaints of torture", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Adopt a law to combat human trafficking, sexual exploitation, as well as to ensure victim rehabilitation", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Continue measures to protect the rights of migrant workers, including combatting racism, xenophobia and religious intolerance", - "values": [ - "4 - General action" - ] - }, - { - "text": "Set up the national mechanism for prevention of torture", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Provide more resources for implementing the national policies and programmes in favour of social vulnerable groups like women, children, poor people, ethnic minorities and migrants ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Adopt specific criminal legislation in conformity with article 4 of the Convention for the Elimination of Racial Discrimination ", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Abolish the death penalty and ratify ICCPR-OP 2", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Consider enacting the draft law on the Rights of the Child at the earliest convenience ", - "values": [ - "3 - Considering action" - ] - }, - { - "text": "Strengthen the capacities of its reporting system in order to tackle its backlog in reporting to treaty bodies", - "values": [ - "4 - General action" - ] - }, - { - "text": "Amend the Marriage Act to allow same-sex partners to marry and to recognize same-sex marriages from overseas ", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Consider ratifying all outstanding international instruments and continue to domesticate such instruments", - "values": [ - "3 - Considering action" - ] - }, - { - "text": "The government will continue to work with these non-governmental organisations so as to develop a constructive dialogue with them in advancing the country's socio-economic development.", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Consider ratifying those international human rights instruments it had not yet ratified, including the International Convention on the Protection of the Rights of All Migrant Workers and Members of Their Families", - "values": [ - "3 - Considering action" - ] - }, - { - "text": "Ensure coherence with the mandates of the national preventive mechanism in the establishment process of the new national human rights institution", - "values": [ - "4 - General action" - ] - }, - { - "text": "Put an end to enforced disappearances and torture in all places of deprivation of liberty, as well as extrajudicial executions", - "values": [ - "4 - General action" - ] - }, - { - "text": "Seek from the international community and United Nations specialized agencies the technical assistance necessary to establish a national human rights institution as well as to overcome the challenges and constraints listed in the national report ", - "values": [ - "1 - Minimal action" - ] - }, - { - "text": "Continue the cooperation in health matters with the developing countries, particularly LDCs", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Prohibit all forms of corporal punishment of children in any context (including in the home) ", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Continue with the efforts to prevent, punish and eradicate all forms of violence against women", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Step up efforts to effectively prevent and combat discrimination of persons belonging to national minorities, in particular regarding their access to education and health care", - "values": [ - "4 - General action" - ] - }, - { - "text": "Strengthen its national human rights institutions by providing them with adequate resources", - "values": [ - "4 - General action" - ] - }, - { - "text": "Ratify and accede to the International Convention on the Protection of the Rights of All Migrant Workers and Members of their Families ", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Install soon additional 'Centros de Justicia para las Mujeres' to improve access to justice for women throughout the national territory", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Further develop measures to combat HIV/AIDS, with special focus on reducing infant and child mortality ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Extend an open invitation to the Special Procedures ", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Cooperate with the Commission of Inquiry established by the Human Rights Council", - "values": [ - "4 - General action" - ] - }, - { - "text": "Continue in its plans to realize the enjoyment of economic, social and cultural rights, and tackle the problems related to the illegal and unjustified economic sanctions against the country", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Take further steps to enable civil society to thrive without interference and restrictions.", - "values": [ - "4 - General action" - ] - }, - { - "text": "Hasten the submission of the juvenile justice bill, aimed at establishing a juvenile justice and welfare system in the country", - "values": [ - "4 - General action" - ] - }, - { - "text": "Ratify promptly the International Convention for the Protection of All Persons from Enforced Disappearance, the Optional Protocol to the Convention against Torture, and the Convention relating to the Status of Refugees", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Embark on public sensitization programmes and adopt anti-discrimination legislation to address all forms of racism, racial discrimination, xenophobia and related intolerance", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Take necessary measures to prevent degrading and cruel treatment of persons with disabilities, especially minors", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Continue to address gender inequality ", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Continue the momentum on the democratization process and improve the current policies and measures to ensure the equality and the full enjoyment of human rights and fundamental freedoms for all people, in particular the social vulnerable groups, like women and children", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Continue advancing in the creation of the National Plan for Infancy and Adolescence ", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Take necessary measures to preserve the ancestral lands of indigenous peoples", - "values": [ - "4 - General action" - ] - }, - { - "text": "Ensure that prompt, thorough and impartial investigations are carried out into all deaths in custody as well as all allegations of torture and illtreatment", - "values": [ - "4 - General action" - ] - }, - { - "text": "Continue its efforts aimed at ensuring respect for, and eradication of discrimination against, indigenous peoples and persons of African descent, in particular women and girls ", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Raise public awareness of hate speech against lesbian, gay, bisexual and transgender persons and take steps to increase reporting of hate crimes against lesbian, gay, bisexual and transgender persons", - "values": [ - "4 - General action" - ] - }, - { - "text": "Evaluate the measures taken with regard to the action plan concerning combating human trafficking and strengthen its efforts in this regard through follow-up measures ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Continue taking action to reduce maternal and infant mortality", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Follow-up with a policy to combat trafficking in persons based on prevention, prosecution in accordance with the international law", - "values": [ - "4 - General action" - ] - }, - { - "text": "Set a minimum age for leaving school, which would provide incentives for addressing early marriage and child labour", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Designate a coordinator for the implementation of the Convention on the Rights of Persons with Disabilities, establish indicators for compliance and supervision, ensure that the oversight mechanism has an adequate status to contribute and follow up on a national policy on disability, and ensure that disability is considered as a cross-cutting issue in its public policies ", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Continue its policies and efforts to enhance the solidarity and equality among its multi-ethnic population ", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Adopt a comprehensive anti-discrimination law enforced uniformly throughout the Confederation", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Increase the focus, targeted efforts and effective measures regarding eliminating discrimination, and to make further efforts and measures to promote the rights of minorities, inter alia, ethnic minorities.", - "values": [ - "4 - General action" - ] - }, - { - "text": "Adopt the National Action Plan to combat violence against women, by investigating complaints and instituting criminal proceedings against perpetrators, even in the absence of formal complaints", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Implement the Prevention and Prohibition of Torture Act, whose definition of torture complies with the Convention against Torture, in order to ensure an effective system for preventing all forms of torture", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Speed up the implementation of the national gender policy and to establish the national gender council by providing appropriate resources", - "values": [ - "4 - General action" - ] - }, - { - "text": "Establish an independent national human rights institution in accordance with the Paris Principles.", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Continue its efforts in strengthening the capacities of the Commission of Human Rights by providing it with financial and human resources and expand those efforts through cooperation with the regional organisations and the United Nations Institutions", - "values": [ - "4 - General action" - ] - }, - { - "text": "Continue with its programmes for improving the living standards of its citizens, including indigenous peoples, Afro-Ecuadorians and Montubios", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Ensure full cooperation of the Croatian Government in making available all requested documents to the International Criminal Tribunal for the former Yugoslavia ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Allow journalists to freely exercise their profession and grant international media access to its territory", - "values": [ - "4 - General action" - ] - }, - { - "text": "Undertake further legal and institutional reforms to ensure an effective system of administration of justice", - "values": [ - "4 - General action" - ] - }, - { - "text": "Continue to seek the needed technical assistance to enable it to meet its various human rights commitments", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Continue the process of accession to or ratification of the pending main international human rights instruments, in particular OP-CRPD ", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Study the possibility of becoming a party to ICCPR as well as ICESCR, as these two international conventions are really cornerstones of the whole human rights system ", - "values": [ - "3 - Considering action" - ] - }, - { - "text": "Step up efforts to ensure that people living in the remote and rural areas, in particular the indigenous peoples, receive adequate support services relating to accommodation and all aspects of health and education ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Take further appropriate and effective measures to eliminate discrimination against Roma.", - "values": [ - "4 - General action" - ] - }, - { - "text": "In relation to armed conflicts in Darfur, South Kordofan, and Blue Nile, with multiple attacks against the civilian population, take concrete measures for the displaced population and in order to facilitate for humanitarian access ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Take measures in the legislative sphere and policy measure to strengthen mechanisms for combating trafficking", - "values": [ - "4 - General action" - ] - }, - { - "text": "Establish adequate mechanisms to identify potential asylum-seekers in border procedures, undertake measures aimed at avoiding prolongation of administrative detention of asylum-seekers and at improving the living conditions and treatment of asylum-seekers and refugees ", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Take effective steps to fully strengthen the rule of law, effectively ensure the impartiality and independence of the judiciary", - "values": [ - "4 - General action" - ] - }, - { - "text": "Undertake measures to strengthen synergy and coordination among the various national institutions responsible for the protection of human rights ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Amend legislation to prohibit the activities of organizations which promote and incite racial and religious hatred", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Take effective measures to increase women's representation in decision-making positions and close the pay gap", - "values": [ - "4 - General action" - ] - }, - { - "text": "Accomplish progressively the human rights goals as set forth in Human Rights Council resolution 9-12. ", - "values": [ - "4 - General action" - ] - }, - { - "text": "The reservation of Ireland to Article 19.2 of the International Covenant on Civil and Political Rights, concerning the licensing of broadcasting enterprises, will be withdrawn", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Accelerate its efforts to ratify CRPD", - "values": [ - "4 - General action" - ] - }, - { - "text": "Continue to combat maternal and child mortality", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Speed up ratification of the Convention against Torture.", - "values": [ - "4 - General action" - ] - }, - { - "text": "Take all the initiatives necessary to re-establish a legitimate political framework and guarantee the full enjoyment of fundamental human rights by the population", - "values": [ - "4 - General action" - ] - }, - { - "text": "Redouble efforts to achieve permanent coordination between the national council for women and the provincial and municipal offices for the implementation of national gender equality plans", - "values": [ - "4 - General action" - ] - }, - { - "text": "Take into account accessibility for persons with disabilities in the reconstruction process ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Consider establishing the national human rights institution in accordance with the Paris Principles", - "values": [ - "3 - Considering action" - ] - }, - { - "text": "Ensure that discriminatory laws are amended or repealed, adopt a comprehensive strategy to modify or eliminate negative cultural practices and stereotypes, and strengthen efforts to implement existing legislative measures regarding violence against women, including assistance and protection for victims ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Continue efforts to prevent violence and sexual abuse against boys and girls, and increase its efforts to bring to justice those responsible ", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Guarantee respect for human rights in the fight against terrorism and ensure that all perpetrators of violations, including extrajudicial executions, are prosecuted", - "values": [ - "4 - General action" - ] - }, - { - "text": "Continue to apply plans and strategies for the socio-economic development of the country", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Establish permanent courts in all 13 municipalities to increase access to justice, particularly in rural areas", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Ensure provision of adequate financial and human resources for the implementation of the law on the protection of human rights defenders, journalists, social communicators and justice officials and commit to reviewing its operation, including its consistency with international human rights standards, after a period of initial implementation", - "values": [ - "4 - General action" - ] - }, - { - "text": "Ensure respect of the rights of migrant workers and members of their families ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Ensure the investigation of all incidents of hate crimes and hate speech and prosecute the perpetrators", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Support the establishment of human rights units within more ministries ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Issue an open invitation to the Special Procedures ", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "End discrimination against women by amending its legislation to guarantee women equal rights, in accordance with its international obligations, including with regard to marriage and divorce", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Take steps to establish an independent national human rights institution", - "values": [ - "4 - General action" - ] - }, - { - "text": "Ratify the Convention [CRPD]", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Continue to adopt measures to increase the rate of issuance of birth certificates, especially in rural areas, while introducing specific measures to register migrant children at birth", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Take effective measures to ensure de facto equality of all women ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Strengthen existing criminal and family laws or adopt a comprehensive law that addresses all forms of violence against women, including domestic and sexual violence, ensuring that all women and girl victims of acts of violence are protected by these laws and have access to immediate means of protection as well as to reparation, and that perpetrators are prosecuted", - "values": [ - "4 - General action" - ] - }, - { - "text": "Further strengthen its measures to combat all forms of trafficking in persons and protect and rehabilitate its victims", - "values": [ - "4 - General action" - ] - }, - { - "text": "The RMI is committed to fulfilling its human rights obligations under the CRC and CEDAW and continuing to adhere to the Universal Declaration on Human Rights as well as the United Nations Charter. Due to capacity and resources issues, the RMI has yet to ratify the other core human rights conventions, but is considering doing so.", - "values": [ - "4 - General action" - ] - }, - { - "text": "Ratify the Inter-American Convention against Racism, Racial Discrimination and Related Forms of Intolerance", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Ratify, as soon as possible, the Convention on the Rights of Persons with Disabilities", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Take steps to reduce overcrowding in the prisons by imposing alternative sentences, where possible ", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Exert utmost efforts to eliminate and prevent child labour, in particular in the mining sector, agriculture and as domestic servants ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Undertake a review of detention conditions for asylum-seekers to ensure they are fully in line with international and European standards ", - "values": [ - "3 - Considering action" - ] - }, - { - "text": "Accelerate the establishment of the national human rights institution and to ensure is conformity with the Paris Principles", - "values": [ - "4 - General action" - ] - }, - { - "text": "Continue to integrate technology into education through the Ceibal Centre", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Establish a national human rights institution in compliance with the Paris Principles", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Raise the age of criminal responsibility, which is currently set at 8 years", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Ratify the Convention on the Rights of the Child, the Convention on the Elimination of All forms of Discrimination against Women, the Convention on the Rights of Persons with Disabilities and the Rome Statute of the International Criminal Court, as previously recommended", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Consider including provisions against torture in its new Constitution to ensure effective redress for victims of torture ", - "values": [ - "3 - Considering action" - ] - }, - { - "text": "Continue to fight against trafficking in persons and strengthen support mechanisms for victims of trafficking", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Continue implementation of policies to combat discrimination against people from disadvantaged groups, including providing them with access to social security, health services, education and housing ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Continue its policy to establish a climate of trust, understanding and mutual respect between the different religions in the country", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Take all necessary legal and practical measures to prevent child abuse and neglect, and adopt a plan of action to combat any form of violence against children ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Adhere and adopt national legislation in line with the Rome Statute, including the incorporation of the provisions for swift cooperation with the International Criminal Court", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Put in place a comprehensive national human rights action plan, in cooperation with civil society", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Consider establishing a de jure moratorium on capital punishment and commute the existing death sentences", - "values": [ - "3 - Considering action" - ] - }, - { - "text": "Reinforce the legislative framework and institutional mechanisms aimed at excluding all discriminatory practices that prevent equal access to employment for persons belonging to ethnic, national or religious minorities ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Continue its efforts with a view to ratifying the Convention for the Protection of All Persons from Enforced Disappearance ", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Adopt sectoral plans for the promotion of human rights in order to promote the human rights of vulnerable groups such as women, children and persons with disabilities ", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Amend its broadcasting laws so as to ensure the real independence of the regulatory body for television and radio ", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Ratify the Rome Statute of the International Criminal Court, the Convention against Torture and the Optional Protocol to the Convention against Torture ", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Consider abolishing the kafala system for all migrant workers and eliminating the exit permit system ", - "values": [ - "3 - Considering action" - ] - }, - { - "text": "Consider the possibility of ratifying International Labour Organization Convention 189 on domestic workers", - "values": [ - "3 - Considering action" - ] - }, - { - "text": "Continue its steps to further promote and protect the rights of the child, including addressing child abuse and sexual exploitation of children", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Strengthen efforts to protect lesbian, gay, bisexual, transgender and intersex persons against violence and discrimination", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Continue national poverty reduction efforts ", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Strengthen the efforts to eradicate female genital mutilation, including by legal prohibition of such practice and awareness-raising and education of all, especially women and girls", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Share its experiences in promoting human rights through its role as promoter of regional cooperation and development mediator in conflict resolution and peace building in the West African sub-region", - "values": [ - "1 - Minimal action" - ] - }, - { - "text": "Take even further measures to continue to address issues of data on trafficking in women and girls in line with recommendations of the Committee on the Elimination of Discrimination against Women ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Remove reservations to the CEDAW ", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Develop and implement plans and strategies to raise awareness about human rights, including at the local and community levels, and provide human rights training and education for Government officials in particular law enforcement officials ", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Develop a comprehensive national strategy to prevent and address all forms of violence against children with a view to strengthen measures to encourage child victims to report instances of violence, abuse and neglect", - "values": [ - "4 - General action" - ] - }, - { - "text": "Ratify the ILO Convention on decent work for domestic workers ", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Call upon the competent authorities to ensure the right of access to a lawyer by detained persons", - "values": [ - "4 - General action" - ] - }, - { - "text": "Consider ratifying the Convention on the Rights of Persons with Disabilities CRPD", - "values": [ - "3 - Considering action" - ] - }, - { - "text": "Revise the legislation to cover all forms of violence against women", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Consider amending or repealing its legislation to close the gaps in the protection of women against discrimination.", - "values": [ - "3 - Considering action" - ] - }, - { - "text": "Strengthen the laws to ensure that sexual orientation and gender identity are included among the grounds for prohibition of discrimination in order to prevent impunity in acts of discrimination based on those grounds", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Carry out efforts in harmonizing legal provisions to guarantee the rights of victims of domestic violence", - "values": [ - "4 - General action" - ] - }, - { - "text": "Ratify the Optional Protocol to the Convention against Torture and establish a national preventive mechanism under the Optional Protocol", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Establish an open, genuine, all-inclusive and effective national dialogue among different concerned parties with the aim of effectively addressing the legitimate aspirations and concerns of all the population in a democratic manner ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Increase efforts to combat discrimination on the grounds of sexual orientation ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Recommended that marital rape, child abuse and domestic violence be criminalized, perpetrators are prosecuted and sanctioned, human rights training be provided for officials dealing with instances of domestic violence and child abuse, and that child-sensitive procedures be adopted during criminal proceedings involving children.", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Develop national plans of action on children and on human rights ", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Consider becoming a party to OP-CAT ", - "values": [ - "3 - Considering action" - ] - }, - { - "text": "Continue its positive engagement towards elimination of discrimination against women", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Back efforts to counter child malnutrition and continue to strengthen programmes to eradicate poverty and extreme poverty", - "values": [ - "4 - General action" - ] - }, - { - "text": "Establish - with the involvement of the Congolese civil society and the support of the international community in the process - independent and impartial specialized mixed chambers within the national judicial system to address crimes committed under international law and other serious human rights violations", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Take appropriate measures to fight illiteracy, ensure equal opportunities for women and men in the labour market, and provide for participation in political and public life and equal access to justice", - "values": [ - "4 - General action" - ] - }, - { - "text": "Continue to build, fairly distribute and judiciously apply the resources in the National Education Fund, to ensure that the right of education of all Haitians is protected and promoted at all times without discrimination", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "The instrument of ratification for the Optional Protocol to the Convention on the Rights of the Child on the involvement of children in armed conflict would be submitted within three months", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Consider adopting a specific legislation to eliminate violence against women, including domestic violence ", - "values": [ - "3 - Considering action" - ] - }, - { - "text": "Ratify the Convention against Torture Other Cruel, Inhuman or Degrading Treatment or Punishment and its Optional Protocol, as well as the Optional Protocol to the International Covenant on Economic, Social and Cultural Rights", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Strengthen its measures to protect the rights of foreigners, immigrants, asylum-seekers and the Roma as well as enhance its integration programmes to enforce the principles of equality and non-discrimination, which are enshrined in its Constitution ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Strengthen its efforts to make the legal system for asylum seekers effectively accessible, prevent delays and administrative obstacles and guarantee to asylum seekers the necessary procedural safeguards in detention according to international standards.", - "values": [ - "4 - General action" - ] - }, - { - "text": "Bring ODA up to the internationally committed 0.7 per cent of GDP to Developing countries and 0.2 per cent to LDCs, specially, to support in the areas of poverty reduction, climate challenges and persons with disabilities ", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Ratify the International Convention on the Protection of the Rights of All Migrant Workers and Members of their Families ", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Address the issue of human rights in the pursuit of economic growth in local areas", - "values": [ - "4 - General action" - ] - }, - { - "text": "Continue its efforts towards universal access to education, including the provision of free schooling at all levels", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "The delegation highlighted that there was the political will in Benin to ensure that human rights prevailed, and that the country was committed to continuing with the major reforms initiated in respect of the promotion and protection of human rights.", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Continue its innovative programmes to eradicate illiteracy, and continue its initiatives to spread education at all levels and throughout the country", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Ensure full compliance with international law with regard to forced evictions", - "values": [ - "4 - General action" - ] - }, - { - "text": "Address the concerns and, as necessary, implement recommendations of Treaty Bodies and United Nations agencies by taking any necessary steps to ensure that no individual is exposed to the dangers of torture or cruel, inhuman or degrading treatment or punishment when extradited or deported ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Take measures aimed at further strengthening of national human rights institutions", - "values": [ - "4 - General action" - ] - }, - { - "text": "Take forward the democratic process of repealing the Eighth Amendment of the Irish Constitution with a clear timeline, and take all necessary steps to decriminalise abortion in all circumstances, in accordance with the recommendations of the Human Rights Committee, the Committee on Economic, Social and Cultural Rights and the Committee on the Rights of the Child", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Call on the United Nations Development Programme and the Commonwealth Secretariat to continue to assist Mauritius in capacity-building", - "values": [ - "1 - Minimal action" - ] - }, - { - "text": "Sign and-or ratify the Optional Protocol to the International Covenant on Economic, Social and Cultural Rights, the International Convention on the Protection of the Rights of All Migrants Workers and Members of Their Families, and the International Convention for the Protection of All Persons from Enforced Disappearance", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Consider amending the Declaration of Citizens' Rights to expressly include such grounds as race, colour, language, nationality and national or ethnic origin, which are currently subsumed under the notion of personal status", - "values": [ - "3 - Considering action" - ] - }, - { - "text": "Cooperate with the Extraordinary Chambers, the United Nations, international donors and civil society to develop a strategy aimed at ensuring that the national jurisdictions can benefit from the experience of the Extraordinary Chambers ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Strengthen efforts to improve prison conditions", - "values": [ - "4 - General action" - ] - }, - { - "text": "Guarantee that journalists and other media workers can carry out their work independently and without fear of persecution, including by reviewing its defamation laws to make sure they are in full compliance with international human rights law", - "values": [ - "4 - General action" - ] - }, - { - "text": "Explicitly prohibit all corporal punishment of children in all settings, including in the home", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Implement the recommendations of the Human Rights Committee, namely to establish an independent national human rights institution with a broad mandate for human rights protection in conformity with the Paris Principles", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Consider the possibility of speeding up the process of establishing a new National Human Rights Institution in full compliance with the Paris Principles ", - "values": [ - "3 - Considering action" - ] - }, - { - "text": "Repeal or amend ambiguous provisions relating to national security in the Penal Code to prevent those provisions being applied in an arbitrary manner to stifle legitimate and peaceful dissent, debate and freedom of expression ", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Conclude the development of a national strategy for combating the trafficking in persons and their illicit movement", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Prevent the destruction of places of worship and cemeteries", - "values": [ - "4 - General action" - ] - }, - { - "text": "Speed up the process of establishing a special law on trafficking in persons", - "values": [ - "4 - General action" - ] - }, - { - "text": "Consider greater provision for the protection of freedom of association, freedom of speech and rights to judicial appeal, including by aligning all articles of the Penal Code and other relevant laws with international standards ", - "values": [ - "3 - Considering action" - ] - }, - { - "text": "Remove restrictive practices against Christians and other minorities, including limitations on religious activities, freedom of thought and conscience, in accordance with international law", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Ensure that both boys and girls have equal access to education", - "values": [ - "4 - General action" - ] - }, - { - "text": "Continue to address the grievance of and empower vulnerable groups - particularly women, children, indigenous people, and people of African descent - by reducing urban-rural discrepancies and promoting equal access to opportunities for all, especially access to health care, education, employment, housing and social security ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Create and maintain a safe and enabling environment for civil society, human rights defenders and journalists", - "values": [ - "4 - General action" - ] - }, - { - "text": "Restore the moratorium on the death penalty", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Continue efforts aimed at increasing the participation of women in the economic and political spheres as well as to consider ratification of CEDAW ", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Remove the broad range of restrictions on the rights to peaceful assembly and freedom of expression in the Law on the Right to Peaceful Assembly and Peaceful Procession, replace the system of prior authorization for peaceful assemblies with a system of voluntary notification and remove criminal sanctions for acts protected under international standards on freedom of expression and peaceful assembly", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "To conduct an active campaign against the creation of negative stereotypes in relation to migrants and minorities, to step up measures to prevent discrimination against Muslims and to strengthen the dialogue with the Muslim communities", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Make every effort to guarantee the right to seek asylum and to provide adequate housing for refugees", - "values": [ - "4 - General action" - ] - }, - { - "text": "Consider ratifying the Convention on the Rights of Persons with Disabilities at the earliest opportunity ", - "values": [ - "3 - Considering action" - ] - }, - { - "text": "Consolidate her achievements in strengthening the legal framework, ensuring social welfare, and combating racial discrimination, racism and extremism", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Put in place a national policy to ensure the rights of lesbian, gay, bisexual, transgender and intersex persons, and punish cases of discrimination and those guilty of discrimination", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Apply criminal provisions on hate speech and hate crimes strictly, and conduct public awareness-raising campaigns to promote tolerance", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Take further appropriate measures, including the adoption of a national plan of action to tackle challenges resulting from global warming or climate change and adverse human activities, in particular with regard to sanitary systems ", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Continue measures to fight drug trafficking and terrorism", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Consider ratifying those international human rights instruments to which it is not yet a party, such as the International Convention on the Protection of the Rights of All Migrant Workers and Members of Their Families", - "values": [ - "3 - Considering action" - ] - }, - { - "text": "Develop a detailed framework to implement and raise awareness about the Declaration in consultation with indigenous peoples ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Improve prosecution of femicide and all forms of violence against women and ensure that victims have access to shelters and other support services, including health services", - "values": [ - "4 - General action" - ] - }, - { - "text": "Combat negative stereotypes and prejudice against persons with disabilities ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Consider ratifying the Second Optional Protocol to the International Covenant on Civil and Political Rights (ICCPR-OP2) and take steps towards a "de jure" abolition of the death penalty ", - "values": [ - "3 - Considering action" - ] - }, - { - "text": "Continue progress in the implementation of policies designed for the advancement of women and ensuring quality social services that are universal in coverage and benefit the whole of the population ", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Continue to disseminate the culture of human rights and education", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Ratify the Optional Protocol to the Convention on the Rights of the Child on the involvement of children in armed conflict as soon as possible", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Ratify the International Covenant on Economic, Social and Cultural Rights and the Optional Protocol thereto, the Optional Protocol to the Convention on the Rights of the Child on a communications procedure and the International Covenant on Civil and Political Rights and the Optional Protocols thereto ", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Respond effectively to the request for information by the Human Rights Committee in 2009 regarding the follow-up given to the recommendations related to forced disappearances, assassinations, summary and extrajudicial executions, and life sentences in isolation cells ", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Continue its efforts to further guarantee freedom of expression ", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Continue the efforts to implement the National Strategy for Children and Adolescents 2010-2030", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Adopt measures to combat impunity in cases of enforced disappearances during the internal conflict which took place between 1992 and 1998 ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Intensify the necessary measures to guarantee the right of all children to have their birth registered, in particular children of African descent, indigenous children and those who live in rural and border areas ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Consider formulating a national human rights action plan and further strengthen the inter-ministerial technical committee as well as the national human rights commission in accordance with the Paris Principles", - "values": [ - "3 - Considering action" - ] - }, - { - "text": "Ensure that detention of civilians, especially children, is carried out in accordance with international law and standards and without any discrimination paying particular attention to the recommendations of the CRC", - "values": [ - "4 - General action" - ] - }, - { - "text": "Take the necessary steps to strengthen international cooperation through multilateral, regional and bilateral arrangements for the prevention, detection, investigation, prosecution and punishment of those responsible for acts involving the sale of children, child prostitution, child pornography and child sex tourism", - "values": [ - "4 - General action" - ] - }, - { - "text": "Adopt laws to forbid harmful traditional practices", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Strengthen national efforts to protect migrants and refugees", - "values": [ - "4 - General action" - ] - }, - { - "text": "Continue efforts to implement the provisions of the new Constitution in order to ensure that indigenous peoples fully enjoy their rights", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Continue providing and improving human rights education and training for judicial and law enforcement officials", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Issue a standing invitation to special procedures ", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Introduce positive discrimination measures to promote women\u2019s access to work", - "values": [ - "4 - General action" - ] - }, - { - "text": "Establish and strengthen programmes for combating prejudice and mechanisms for monitoring acts of ethnic-based discrimination and violence", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Strengthen efforts aimed at promoting gender equality, including through educational campaigns, while paying specific attention to the needs of rural women", - "values": [ - "4 - General action" - ] - }, - { - "text": "Continue to take effective measures ensuring the realization of the right to work for its citizens including through national programmes to promote decent work and full and productive employment especially for women and young people", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Update the memorandum of understanding with the Dominican Republic on repatriation mechanisms in accordance with international standards and norms", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Adopt legislation in accordance with the Rome Statute of the International Criminal Court and have a thorough discussion in Parliament on the establishment of mixed chambers, in order to guarantee fair trials for those who have committed crimes against humanity ", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Strengthen the protection and assistance provided to victims in the national action plan against domestic and sexual violence, including measures to encourage complaints, and access to justice, legal advice, medical and psychological attention", - "values": [ - "4 - General action" - ] - }, - { - "text": "Ratify the Optional Protocol to the Convention against Torture at the earliest opportunity.", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Lift all restrictions regarding the use of Internet by adopting the necessary measures", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Amend the Penal Code to prohibit corporal punishment", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Stop the discriminatory approach that requires only foreign workers in various sectors to mandatorily undergo HIV/AIDS testing, which is not required for Korean nationals", - "values": [ - "4 - General action" - ] - }, - { - "text": "Ratify ILO Convention No. 189 on Decent Work for Domestic Workers ", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Reiterate its recommendation made during the UPR in 2009 calling for decriminalization of homosexuality in Cameroon ", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Adjust its definition of torture to the definition of CAT and carry out legislative reforms to adjust the penalties to the seriousness of the crime of torture and in order not to apply the statute of limitations to torture", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Strengthen means and mechanisms to raise awareness among citizens regarding access to justice ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Strengthen its efforts to end discrimination against women by incorporating the principle of equality into the Constitution in the context of its constitutional review", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Take specific measures to prohibit corporal punishment of children in all settings, including at home", - "values": [ - "4 - General action" - ] - }, - { - "text": "Bring official development assistance (ODA) up to the internationally committed 0.7 per cent of GDP", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Consider the request put forward by the Federal Council for Children, Adolescent and the Family to adjust the provincial procedural legislation for the establishment of non-custodial measures", - "values": [ - "3 - Considering action" - ] - }, - { - "text": "Continue ongoing efforts in promoting the culture of mutual respect and peaceful coexistence among different religious communities in the society", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Reduce the use of preventive detention and isolation of the detainees ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Elaborate a specific law on domestic violence against women ", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Ratify the Second Optional Protocol to the International Covenant on Civil and Political Rights, aiming at the abolition of the death penalty", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Continue to encourage the initiatives aimed at disseminating the values of respect and religious tolerance in the community", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Take measures to implement the Human Rights Committee and CERD recommendations to protect the rights of persons belonging to ethnic, religious and linguistic minorities.", - "values": [ - "4 - General action" - ] - }, - { - "text": "Modify its new law on associations, by lifting the limits on their establishment, their functioning and their financing, so as to bring this law in conformity with its obligations and in order to ensure that civil society can function freely ", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Ratify the Optional Protocol to the Convention against Torture and Other Cruel, Inhuman or Degrading Treatment of Punishment and the International Convention for the Protection of All Persons from Enforced Disappearances", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Effectively implement legal provisions aimed at eliminating racial discrimination ", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Step up efforts to prevent racially motivated crimes.", - "values": [ - "4 - General action" - ] - }, - { - "text": "Find for all persons still detained in the Guantanamo Bay detention center a solution in line with the United States obligations regarding the foundations of international and human rights law, in particular with the International Covenant on Civil and Political Rights ", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Make urgent strides towards decreasing domestic violence by ensuring that laws, policies and practices in relation to domestic violence are in line with Timor-Leste's obligations under the Convention on the Elimination of All Forms of Discrimination against Women, and ensure law enforcement officials receive training to implement these laws", - "values": [ - "4 - General action" - ] - }, - { - "text": "Face up to and reflect on its past and present a responsible interface to the international community by making apologies on the issue of comfort women and giving compensation to its victims", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Step up efforts on gender promotion, the protection of children's rights and the fight against acts of sexual violence as envisaged in the national strategy in this regard", - "values": [ - "4 - General action" - ] - }, - { - "text": "Promote large-scale registration campaigns for women voters, in particular in rural areas and notably for indigenous women, with a view to ensuring their full participation in political and public life", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Ratify the International Convention for the Protection of All Persons from Enforced Disappearances", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Improve the situation of minorities in the country", - "values": [ - "4 - General action" - ] - }, - { - "text": "Strengthen awareness and training of women for leadership positions", - "values": [ - "4 - General action" - ] - }, - { - "text": "Pursue the process of adoption of the basic law concerning the elimination of violence against women", - "values": [ - "4 - General action" - ] - }, - { - "text": "Ensure that victims of domestic, gender-based and sexual violence are able to report incidents and press charges without fear of adverse consequences in case of losing in court", - "values": [ - "4 - General action" - ] - }, - { - "text": "Consider seeking membership in the International Labour Organization with a view to ratifying the Organization's fundamental Conventions", - "values": [ - "3 - Considering action" - ] - }, - { - "text": "Continue its efforts to create a positive working environment for all foreign workers ", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Take steps to ensure that women and girls with German residency who were forced to marry abroad have a right to return", - "values": [ - "4 - General action" - ] - }, - { - "text": "Germany pledges to guarantee the rights arising from the Covenant to all persons subject to the authority of its police or armed forces abroad", - "values": [ - "4 - General action" - ] - }, - { - "text": "Implement legislation on violence against women and girls and strengthen its legal and institutional support for victims of violence, including by full investigation, bringing to prosecution where appropriate all female murders, and ensuring that all victims of sexual violence have the right to justice and police protection", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Provide fairness and swift action in protecting the rights and legitimate interests of indigenous minorities", - "values": [ - "4 - General action" - ] - }, - { - "text": "Continue strengthening measures which favour full gender equality, paying special attention to the integration of women into the labour market without discrimination, in line with the measures established in the 2013 European Union Progress Report ", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "The delegation stated that the 52 recommendations supported by the Comoros represented a commitment and reiterated their firm intention to implement them. The country was deeply attached to the ideals of human rights and reiterated that the outcome of the review would be fully embraced by the Comoros.", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Continue efforts to combat poverty and to promote social equality", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Take all necessary measures to protect rights of migrant workers, especially those regarding means of remedies", - "values": [ - "4 - General action" - ] - }, - { - "text": "Extend a standing invitation to all special procedures mandate holders and respond positively to all outstanding requests of mandate holders to visit the country", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Adopt the measures necessary to ensure that the issuance of work and residence permits does not depend entirely on employers, so that victims of exploitation are not prevented from obtaining justice ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Allow the Human Rights Council mandated Commission of Inquiry immediate and unhindered access to Syria", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Sign and ratify CAT-OP.", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Spearhead public policies, procedures and guidelines with a focus on the comprehensive protection of women from violence ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Strengthen the protection of women and children by modifying section 375 of the Penal Code, which does not recognize marital rape even when the spouse is a minor ", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Accede to the core human rights instruments to which it is not yet a party, particularly CRC and CEDAW ", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Repeal national provisions that discriminate against lesbian, gay, bisexual and transgender persons, and decriminalize consensual sexual relations between adults of the same gender", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Sign the Optional Protocol to CEDAW and the Optional Protocols to CRC ", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Bahrain affirms its willingness to cooperate with the Committee against Torture on the implementation of article 20 of the Convention.", - "values": [ - "4 - General action" - ] - }, - { - "text": "Continue carrying out efforts in enhancing the health services coverage in the country, according to its national development plans", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Strengthen the protection of hospitals and school infrastructure in conflict zones", - "values": [ - "4 - General action" - ] - }, - { - "text": "Implement the plan of action to eliminate the worst forms of child labour", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Strengthen its efforts to promote the independence of the judiciary", - "values": [ - "4 - General action" - ] - }, - { - "text": "Increase efforts to swiftly ratify fundamental treaties on human rights, such as ICCPR and ICESCR, also by taking advantage of the available international technical assistance to address possible shortcomings in fulfilling the requirements of the international treaties ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Take effective steps to ensure the implementation of the Convention on the Rights of the Child and the ILO Conventions No. 138 concerning Minimum Age for Admission to Employment and No. 182 concerning the Prohibition and Immediate Action for the Elimination of the Worst Forms of Child Labour.", - "values": [ - "4 - General action" - ] - }, - { - "text": "Take all necessary steps to strengthen to neutrality and independence of its judiciary", - "values": [ - "4 - General action" - ] - }, - { - "text": "Define torture according to article 1 of the CAT", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Enact a comprehensive anti-trafficking law and make proactive efforts to identify and assist trafficking victims", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Implement the recommendations made by the International Ombudsman Institute on its fact-finding mission to Poland with regard to the Human Rights Commissioner", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Remove the statute of limitations for the crime of torture", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Fill the vacancies in the Supreme Court (Cour de Cassation), as those justices have the authority to make the legal system more efficient", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Immediately end all infringement on the rights to freedom of expression, association and peaceful assembly under section 44 of the 2014 interim constitution, the Computer Crimes Act, and articles 112 and 116 of the Penal Code - and unconditionally release persons detained or imprisoned for exercising these rights", - "values": [ - "4 - General action" - ] - }, - { - "text": "Establish a moratorium on the application of death penalty with a view to its definitive abolition in legislation and, in this case, sign and ratify the Second Optional Protocol to the International Covenant on Civil and Political Rights ", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Continue implementing the model of seeking consensus and shared responsibility for good living", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Lift the ban on Hijab and respect the right of Muslim women to express their beliefs", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Take early action to become a party to the International Covenant on Economic, Social and Cultural Rights ICESCR and the International Covenant on Civil and Political Rights ICCPR ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Abolish the practice of torture, cruel, inhuman and degrading treatment, including the collective punishment of families, as reported by the Special Rapporteur, and amend national legislation to prohibit the torture and other ill-treatment of children, as recommended by the Committee on the Rights of the Child", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Adopt safeguards to ensure that asylum seekers are not returned to countries where they will face persecution", - "values": [ - "4 - General action" - ] - }, - { - "text": "Institutionalize a consultation mechanism with indigenous community assemblies in order to include them in any decision-making that might affect their rights and interests ", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Eliminate from the Criminal Code the crime of guilt by association", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Continue strengthening Ecuador\u2019s excellent education policy", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Continue to avail itself of technical assistance and international cooperation in its efforts relating to disaster management and preparedness as well as climate change mitigation ", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Close cooperation with civil society, NGOs and the media in order to prevent harassment and threats against journalists, media organizations, human rights defenders and NGOs in the future ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Following the recommendations of CEDAW, introduce measures to eliminate negative harmful cultural practices and stereotypes that discriminate women", - "values": [ - "4 - General action" - ] - }, - { - "text": "Continue to strengthen its cooperation with the Human Rights Council and its mechanisms", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Further strengthen the capacity to counter natural disasters ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Request development assistance to achieve the Millennium Development Goals ", - "values": [ - "1 - Minimal action" - ] - }, - { - "text": "Prevent, punish and eradicate all forms of violence against women including marital rape", - "values": [ - "4 - General action" - ] - }, - { - "text": "Continue its efforts to improve its educational system and seek international assistance in this regard.", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Adopt all necessary measures in order to ensure full protection of the children and the enjoyment of all rights by the children of Colombia ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Ensure the independence of SUHAKAM in accordance with the Paris Principles, so that the SUHAKAM's scope covers all rights in the Universal Declaration of Human Rights", - "values": [ - "4 - General action" - ] - }, - { - "text": "Continue progressively improve domestic legislation in accordance with the international obligations of Kazakhstan", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Further strengthen measures to promote health care, the quality of education and job creation for the people living in rural and remote areas ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Issue a standing invitation to all United Nations Special Procedures mandate holders ", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Strengthen its system of protection of migrant workers and members of their families", - "values": [ - "4 - General action" - ] - }, - { - "text": "Bring its national legislation into conformity with the provisions of the international human rights instruments to which it is a party", - "values": [ - "4 - General action" - ] - }, - { - "text": "Urgently release all remaining political prisoners ", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Implement the recommendations of CRC in order to guarantee the rights of homeless children", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "An anti-torture bill be enacted by the current Parliament ", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Amend national legislation to grant women equal rights to men, in regard to passing citizenship to their foreign spouse", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Ensure all allegations of excessive use of force or other security force abuses are investigated in a prompt, effective and independent manner", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Preventing and combating the crime of trafficking in persons, effective implementation of a national plan of action to combat the crime of trafficking in persons", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Continue to take measures to provide education and health care, especially in mountainous areas and for ethnic minorities and with their involvement.", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Establish acts with racist motivation as a criminal offences", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Further develop and strengthen its programs and services to promote the rehabilitation of victims of trafficking ", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Continue efforts in favour of women in rural areas.", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Continue efforts to provide more education to persons with disabilities", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Set priorities and allocate necessary resources for implementing its National Economic and Social Development Plan for Horizon 2020, with more focus on employment for youth, gender equality, urban planning, adequate housing, health care and education", - "values": [ - "4 - General action" - ] - }, - { - "text": "Take further steps to provide access to education for all citizens, in particular in rural areas", - "values": [ - "4 - General action" - ] - }, - { - "text": "Reconsider the use of corporal and capital punishment under the Sharia Penal Code ", - "values": [ - "3 - Considering action" - ] - }, - { - "text": "Swiftly ratify the Convention against Torture and Other Cruel, Inhuman or Degrading Treatment or Punishment as well as the Optional Protocol thereto ", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Ensure that the establishment of an expert group on abortion matters will lead to a coherent legal framework including the provision of adequate services", - "values": [ - "4 - General action" - ] - }, - { - "text": "Enact public awareness campaigns and government training, as well as increased enforcement of anti-discrimination and hate crime laws, in order to decrease anti-Semitism and discrimination against members of ethnic minority groups ", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Continue its proactive efforts in order to ensure full gender equality in education and the labour market", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Consider ratification of the International Covenant on Civil and Political Rights and its Optional Protocol", - "values": [ - "3 - Considering action" - ] - }, - { - "text": "Continue with its efforts to avoid excessive use of force by law enforcement officials, in particular related to the policing of demonstrations and crowd control", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Continue implementing the national strategy for the promotion and protection of human rights", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Consider ways to ensure the outcomes of popular referenda can be implemented in a manner consistent with the international human rights treaties to which Switzerland is a party", - "values": [ - "4 - General action" - ] - }, - { - "text": "Continue strengthening its successful education policy, in conditions that ensure access to education with full equality ", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Continue taking comprehensive and effective measures with a view to eradicating all forms of race-centred crimes ", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Develop an effective, transparent and fair resettlement policy and process that is based on national consultations and international best practice and suspend all planned resettlements until this framework is in place ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Continue progress in harmonizing its legislation on child labour with international standards", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Continue efforts to ensure that "secret evidence" is only used in cases where there is a serious and immediate threat to public security and ensure independent and effective judicial oversight ", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Continue addressing overcrowding in prisons and ensure that minimum standards are met, as previously recommended", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Meet obligatory reporting requirements for the conventions to which Nauru is a party and extend invitations to relevant working groups and special rapporteurs to visit Nauru", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Continue its efforts to prevent, sanction and eradicate all forms of violence against women, as well as to overcome stereotypes, which cause gender-based discrimination", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Consider amending this NGO's legislation in order to reduce restrictions on their activities and allow them adequate freedom of action", - "values": [ - "3 - Considering action" - ] - }, - { - "text": "Engage the relevant international organizations and international donors to address the problem of food crises and provide better access to safe drinking water for the population ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Consider extending a standing invitation to all special procedures of the Human Rights Council. ", - "values": [ - "3 - Considering action" - ] - }, - { - "text": "Strengthen efforts to protect the rights of migrants by combating racial stereotypes and discriminatory attitudes, including through awareness-raising campaigns and by enforcing legislation against racial discrimination in all areas of public life ", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "In line with the 2030 Agenda, adopt a policy aimed at putting an end to harmful practices against girls, such as forced early marriage and genital mutilation, among others", - "values": [ - "4 - General action" - ] - }, - { - "text": "Continue the efforts directed towards the promotion of the right to health in the country", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Take further steps on the abolition of the death penalty in accordance with the Constitution and national legislation", - "values": [ - "4 - General action" - ] - }, - { - "text": "Reduce the length of alternative service for conscientious objectors so that it is the same length as the military service ", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Adherence to international standards for respect for detainees\u2019 rights and the conditions of detention", - "values": [ - "4 - General action" - ] - }, - { - "text": "Ensure that victims of hate crimes have access to assistance and protection, including counselling and legal assistance ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Abolish the death penalty in law and ratify the Second Optional Protocol to the International Covenant on Civil and Political rights", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Implement measures that guarantee the right to work to its citizens, in particular to youth under the age of 25 and women ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Sign and ratify the new Optional Protocol to the Convention on the Rights of the Child on a communications procedure ", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Pursue its efforts to ensure equal rights for men and women.", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Remove the barriers that hinder the effective accessibility of boys and girls with disabilities to education ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Take further steps to improve the operation of the judicial process so as to ensure the conclusion of cases within a reasonable time", - "values": [ - "4 - General action" - ] - }, - { - "text": "Issue a standing invitation to all mandate holders of the Human Rights Council ", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Intensify the initiatives to enforce its legislation aimed at combating racial discrimination and take measures to combat racist speech of politicians as well as manifestations of racism in the media, in particular by prosecuting those responsible", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Pursue its efforts in the area of the right to education.", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Carefully monitor the impact of legislation, policies and programmes to eliminate inequality between women and men, and take steps to ensure that equal rights are enjoyed de facto", - "values": [ - "4 - General action" - ] - }, - { - "text": "In light of exceptional circumstances, appeal to the international community for its consent to cancelling Sudan's debt, which would constitute remarkable progress towards achievement of the Millennium Development Goals, ensure conditions of an equitable economic development and have a positive impact on the enjoyment of human rights for millions of Sudanese ", - "values": [ - "1 - Minimal action" - ] - }, - { - "text": "Consider ratifying the third Optional Protocol on the Rights of the Child on a communications procedure", - "values": [ - "3 - Considering action" - ] - }, - { - "text": "Include in its National Strategy for Gender Equality 2009-2013 measures to promote the participation of women in decision-making bodies in the public and private sphere ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Consider the adoption of a separate action plan on combating human trafficking and improve coordination of anti-trafficking actions at the national and municipal levels", - "values": [ - "3 - Considering action" - ] - }, - { - "text": "Develop a work plan to implement the National Strategy of 2011 to prevent violence against women", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Establish enforced disappearances and extrajudicial executions as criminal offenses under the Penal Code ", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Amend the Marriage Law in the Faroe Islands to allow for same sex marriages", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Continue to strengthen the national legislative framework in favour of the most vulnerable groups such as women, children, and disabled", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Continue its efforts to eliminate poverty, ensure the right to food and housing for its population and promote harmony among various communities", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Take better account of the situation of vulnerable populations and adopt legislation to ensure promotion and protection of handicapped persons, children and women. ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Continue with the efforts to ratify the CRPD and the International Convention on the Protection of the Rights of All Migrant Workers and Members of Their Families (ICRMW) ", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Sign and ratify the regional and international instruments to which the State is not yet a party", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Continue the efforts to widen the scope of the 1996 Bill of Rights to include economic, social and cultural rights", - "values": [ - "4 - General action" - ] - }, - { - "text": "Cooperate in the follow-up to this review", - "values": [ - "4 - General action" - ] - }, - { - "text": "Continue efforts to improve the situation of migrants, at the legal, judicial and administrative levels.", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Take measures aimed at increasing the representation of minority groups in the public and private spheres", - "values": [ - "4 - General action" - ] - }, - { - "text": "Ratify the Optional Protocol to the Convention on the Elimination of All Forms of Discrimination against Women and further strengthen efforts on gender issues", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Review counter-terrorism measures that target individuals and groups based on race, ethnicity and religion, including Muslims and Muslim communities, and ensure that such measures do not associate or contribute to associating terrorism with any religion, race, culture, ethnic group or nationality", - "values": [ - "3 - Considering action" - ] - }, - { - "text": "Continue its efforts to ratify the following conventions: CPED and OP-CAT ", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Take a proactive approach to combating HIV-AIDS through educational and awareness-raising programmes for both the general public and drug users.", - "values": [ - "4 - General action" - ] - }, - { - "text": "Present, before the next review, the combined report to the Committee on the Rights of the Child", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Convert the Swiss Resource Centre for Human Rights into a wholly independent national human rights institution, in compliance with the Paris Principles, when the pilot project ends in 2015", - "values": [ - "4 - General action" - ] - }, - { - "text": "Raise the level of professionalism and efficiency in the police force", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Make the information about the legislation available to countries facing problems of smuggling of migrants, in order to help them to develop such laws", - "values": [ - "1 - Minimal action" - ] - }, - { - "text": "Strengthen measures to grant foreign children and children of asylum-seekers equal access to the same standards of services in the field of education.", - "values": [ - "4 - General action" - ] - }, - { - "text": "Continue to invest in education and training", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Continue its efforts, if necessary, in cooperation with United Nations agencies, namely UNICEF to combat the recruitment of children into military forces and to reintegrate children released from the army into normal life.", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Take all necessary measures to guarantee freedom of the press, in particular by repealing the criminalization of defamation so it is only covered by civil law, and introduce simplified and more transparent procedures for obtaining broadcasting licenses ", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Ratify ICESCR and ICCPR.", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Take the necessary steps to ensure that persons with disabilities have adequate means to participate in politics, especially in the electoral process", - "values": [ - "4 - General action" - ] - }, - { - "text": "Further develop a national strategy, with the full participation of all relevant stakeholders, for the integration of human rights into educational policies, curricula, textbooks and the training of teachers", - "values": [ - "4 - General action" - ] - }, - { - "text": "Consider implementing the existing legislation on non-discrimination with respect to all children within its jurisdiction ", - "values": [ - "3 - Considering action" - ] - }, - { - "text": "Ensure that Congress adopt the law on access of citizens to public information", - "values": [ - "4 - General action" - ] - }, - { - "text": "Take the necessary measures, namely in the legislative field, to ensure an independent, free and diversified press", - "values": [ - "4 - General action" - ] - }, - { - "text": "Consider the possibility of acceding to the International Convention on the Protection of the Rights of All Migrant Workers and Members of Their Families.", - "values": [ - "3 - Considering action" - ] - }, - { - "text": "Ensure that all refugees within the territory of Pakistan enjoy their basic human rights and are protected from arbitrary arrest, humiliation and enforced expulsion", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Modify the law on inheritance to prevent discrimination against widows, and guarantee right to all properties including the right to own land", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Set up, in consultation with civil society, a clear and transparent fiscal policy for managing oil revenues, which would call for publication of the national budget, identification of foreign bank accounts and verification of Government expenditures", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Ratify the pending core international human rights instruments, in particular CRC, ICESCR, and its OP, CEDAW and its OP as well as CRPD, and others, and ensure their due translation into the domestic legislation and review existing ratifications with a view to withdraw all reservations and declarations", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Lift all the restrictions on the rights to freedom of expression and of the press, including Internet freedom and fully implement its obligations in accordance with ICCPR ", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "That the new National Human Rights Institution be independent, and be given a strong mandate, capacity and resources for the effective realization at the national level of human rights ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Continue to take steps to ensure that those organizations, with which it is affiliated, like the TMVP, stop recruiting child soldiers and release them", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Adopt and implement fair and transparent measures for the sustainable return of members of the Serb minority ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Ratify the Rome Statute of the International Criminal Court and fully align its legislation with all obligations under the Rome Statute, including incorporating the Rome Statute definition of crimes and general principles, as well as adopting provisions enabling cooperation with the Court ", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Introduce freedom of information legislation in compliance with international standards", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Amend the Swedish Constitution so as to give explicit recognition to the Sami people ", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Provide a fair public trial to all political prisoners and prohibit and penalize torture in the detention centers", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Take measures to combat the use of torture and related acts", - "values": [ - "4 - General action" - ] - }, - { - "text": "Ensure that the Bill of Rights Act appropriately reflects all of New Zealand's international human rights obligations and that all subsequent legal provisions, including immigration laws, are in accordance with it and cannot limit its scope", - "values": [ - "4 - General action" - ] - }, - { - "text": "Ensure that IDPs and returnees can fully enjoy their rights relating to social protection, health care, education, housing, employment and physical security", - "values": [ - "4 - General action" - ] - }, - { - "text": "Continue efforts to eradicate poverty, paying special attention to the situation of street children and children with disabilities", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Enhance measures swiftly to address the issues of impunity, arbitrary arrests and detention, the lack of access to a fair trial and reliance on traditional courts, among others", - "values": [ - "4 - General action" - ] - }, - { - "text": "Continue efforts to effectively combat human trafficking, to protect child victims of sexual exploitation and to prevent abuse of girls as domestic servants ", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Adhere to the recommendation by CEDAW to closely monitor the effective implementation of the new legal framework in the Employment Act and Labour Code, provide anti-discrimination provisions for the advancement of women and minorities and ensure that the private sector fully abides by anti-discrimination laws.", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Take immediate measures to ensure the autonomy of the judiciary vis-a-vis the executive ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Ratify OP-CRC-SC ", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "At the national level, Portugal also renews its pledge to continue to improve its national machinery and mechanisms to monitor implementation of international obligations, Treaty bodies' recommendations, and the outcome of this review. The strengthening of civil society participation and NGO interaction in these processes will also be actively pursued.", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Enact a provincial legislation on domestic violence as well as an increased number of support structures for women on the provincial level", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Issue clear, public orders to all armed forces, military intelligence units and allied militias to prevent and punish all abuses, including crimes of sexual and gender-based violence", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Continue to undertake measures to enhance the rule of law to protect the rights of its people", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Provide girls who are minors with a mandatory psycho-social consultation before any termination of pregnancy", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Consider acceding to International Convention on the Protection of the Rights of All Migrant Workers and Members of Their Families", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Intensify its efforts to humanize its penitentiary system, including the identification and closure of all unauthorized prisons and detention centres", - "values": [ - "4 - General action" - ] - }, - { - "text": "Continue to strengthen its efforts in ensuring housing for all Egyptian citizens", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Take effective measures to dissuade child marriage and to protect the fundamental rights of the children ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Accelerate efforts to reduce maternal and infant mortality ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Establish necessary measures to eliminate the worst forms of child labour, including raising the minimum age for all hazardous work to 18 and developing a list of hazardous occupations and activities not permitted for children", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Continue consolidating social programs and measures adopted to date, that are key in fighting poverty and social exclusion, with actions that increase the provision of social services, giving priority to the most deprived sectors of society, to advance in the achievement of the highest attainable level of wellbeing for its people", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Adopt a more supportive policy with regard to human rights defenders and as part of it, form a network of independent and specialized lawyers to provide legal aid for them ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Cooperate with the Special Rapporteurs visiting the country and take into account their views", - "values": [ - "4 - General action" - ] - }, - { - "text": "Prevent religiously motivated incidents against Muslims and promote multiculturalism and tolerance", - "values": [ - "4 - General action" - ] - }, - { - "text": "Launch an outreach campaign directed towards the erased living abroad, informing them about the adoption of any new legislative measures and the possibility of benefiting from them", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Scale up its efforts to ensure equal protection against all forms of discrimination", - "values": [ - "4 - General action" - ] - }, - { - "text": "With the support and cooperation of the international community, continue to fight poverty, particularly extreme poverty.", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Continue to prioritize the rehabilitation and reintegration of former child soldiers", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Accede to OP-CAT and establish a national preventive mechanism provided by the Protocol", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Formalize a closer cooperation with local and international NGOs, in order to make a better use of available resources, when addressing the difficult humanitarian situation in Greece today ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Strengthen measures to enhance access to education ", - "values": [ - "4 - General action" - ] - }, - { - "text": "The rights of women and girls are firmly entrenched in Canada's Constitution and Canada is committed to improving their lives, particularly ending all forms of violence against women.", - "values": [ - "4 - General action" - ] - }, - { - "text": "Continue to uphold and enact national laws and legislation in accordance with universally agreed human rights standards it has ratified ", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Find a formula to solve the gaps in the Justice and Peace Law and allow for a legal response to the situation of legal limbo that many thousands of ex-members of AUC find themselves in while awaiting trial.", - "values": [ - "4 - General action" - ] - }, - { - "text": "Reconsider the decision to expel judges, prosecutors and other foreign professionals who are assisting in the judicial reform of Timor-Leste", - "values": [ - "3 - Considering action" - ] - }, - { - "text": "Increase the promotion and build public awareness of the Human Rights Desk, so that aggrieved persons are aware of it as a channel of redress ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Facilitate and enhance the dialogue process among all relevant stakeholders in the Syrian Arab Republic in order to find a lasting, peaceful solution and to immediately end any form of violence and destruction of civil and public facilities", - "values": [ - "4 - General action" - ] - }, - { - "text": "Take additional steps to combat the impunity which has contributed to the rise in femicide and the attacks on human rights defenders.", - "values": [ - "4 - General action" - ] - }, - { - "text": "Establish constitutional reforms that will guarantee the separation of powers, the rule of law, the independence of the judiciary and the civil and democratic rights of Kyrgyzstan's citizens ", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Take the necessary measures to ensure access to education without discrimination and establish universal free primary education", - "values": [ - "4 - General action" - ] - }, - { - "text": "Continue its efforts against trafficking in persons ", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Intensify its programs to extend social and economic rights to all and improve standard of living for those with limited income", - "values": [ - "4 - General action" - ] - }, - { - "text": "Take further measures to enhance relevant human rights laws and regulations", - "values": [ - "4 - General action" - ] - }, - { - "text": "Take steps to address the 19.7 per cent gender pay gap ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Continue to take further steps to improve the environment for naturalisation as well as ensure the protection of social and political rights of non-citizens", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Continue its efforts in increasing the financial resources allocated to provide welfare services to vulnerable members of the society", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Redouble its efforts to meet Millennium Development Goal 1 to eradicate extreme hunger and poverty ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Establish laws and cultivate processes and institutions to protect women's rights, foster women's political participation, and ensure equitable representation of their interests and concerns", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Ratify the Optional Protocol to the International Covenant on Economic, Social and Cultural Rights as well as the Optional Protocol to the Convention on the Rights of the Child on a communications procedure", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Sign and ratify the Optional Protocol to the Convention against Torture and Other Cruel, Inhuman or Degrading Treatment or Punishment and establish an independent national mechanism to monitor places of deprivation of liberty ", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Consider the establishment of a de jure moratorium on the use of the death penalty with a view to abolishing capital punishment in national legislation.", - "values": [ - "3 - Considering action" - ] - }, - { - "text": "Ensure that everyone can peacefully exercise the right of freedom of expression in conformity with the ICCPR ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Consider ratification of other core human rights treaties, such as the International Covenant on Social, Economic and Cultural Rights and the Convention on the Rights of Persons with Disabilities ", - "values": [ - "3 - Considering action" - ] - }, - { - "text": "Provide increased support to the family as the dominant and only natural environment suitable for raising children, to ensure adequate protection", - "values": [ - "4 - General action" - ] - }, - { - "text": "Strengthen measures to address the needs of indigenous peoples and Afro-Peruvians", - "values": [ - "4 - General action" - ] - }, - { - "text": "Continue on the path of reducing the wage gap between men and women, including by combating the root causes of the gender pay gap ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Set priorities to ensure the basic social and economic rights, particularly in the fields of employment, poverty reduction, education and healthcare. At the same time, priority policies and measures should also be provided to support the social vulnerable groups, like women, children and the poor people ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Continue its efforts in enhancing the rule of law to ensure long-term stability and sustainable development", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Prohibit corporal punishment in other public institutions and abolish whipping as a form of punishment ", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Take the necessary measures for the ratification of the International Convention for the Protection of All Persons from Enforced Disappearance ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Submit its pending reports to the relevant treaty bodies and, to this end, seek technical assistance to strengthen its capacity for preparing the relevant reports ", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Provide law enforcement and judicial officials with specific training regarding the protection of human rights of women, children and persons of minority sexual orientation or gender identity, and ensure proper investigation and punishment of any human rights violations committed by this personnel ", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Continue the work of the Truth and Reconciliation Commission", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Adopt concrete measures aimed at reducing the vulnerability of children to child labour and sexual exploitation, so as to ensure that Guatemala is a country free from child labour and its worst forms", - "values": [ - "4 - General action" - ] - }, - { - "text": "Take steps to alternate male and female candidates on the electoral in order to ensure a more equitable representation, with a view to follow-up on the recommendations contained in paragraphs 116.28 and 116.29 of the report of the Working Group on the Universal Periodic Review from the second cycle", - "values": [ - "4 - General action" - ] - }, - { - "text": "Continue strengthening its policies in the field of economic, social and cultural rights with the aim to provide the best standard of living possible to its people, to which end it is very important to count on the cooperation and solidarity of the international community ", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Transmit its overdue reports to the Human Rights Committee, the Committee on Economic, Social and Cultural Rights, the Committee on the Elimination of Racial Discrimination (CERD) and the Committee against Torture in order to share experience and progress in these domains", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Strengthen its policy for the full guarantee of the rights of the child, with attention to combating child labour and the implementation of the Guidelines for the Alternative Care of Children, in accordance with Human Rights Council resolution 11-7 and draft resolution A-C.3-64-L.50 of the General Assembly. ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Sign and ratify the International Convention on the Protection of the Rights of All Migrant Workers and Members of their Families and incorporate it into law", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Develop a national human rights plan in accordance with the Vienna Declaration and Programme of Action ", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Allocate the necessary resources to fulfil the mandate of the Ombudsman, and ensure compliance of this institution with the Paris Principles", - "values": [ - "4 - General action" - ] - }, - { - "text": "Continue with the improvement of conditions in all prisons and detention facilities to ensure compliance with international standards, including the United Nations Standard Minimum Rules for the Treatment of Prisoners", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Ensure prior consultations with indigenous communities in accordance with ILO Convention No.169", - "values": [ - "4 - General action" - ] - }, - { - "text": "Consider establishing an official moratorium on executions with a view to abolishing the death penalty as called for by the UN General Assembly resolution 69/186", - "values": [ - "3 - Considering action" - ] - }, - { - "text": "Intensify its efforts to combat domestic violence by effectively implementing its laws, particularly the Family Protection Act (2013), improving access to justice, provinding adequate support for victimes and raising awareness of women's rights", - "values": [ - "4 - General action" - ] - }, - { - "text": "Continue policies aimed at intensifying the fight against all forms of corruption ", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Develop a national strategy for human rights education in the school system, in accordance with the Plan of Action of the World Programme for Human Rights Education, with the full participation of all stakeholders", - "values": [ - "4 - General action" - ] - }, - { - "text": "Seek out international technical assistance and cooperation and use this to consolidate the National Policy for Children and Youth with an infrastructure that meets its needs and the participation of all sectors in the society in the fight for the recognition of children's rights, with particular attention to those who are placed in a situation of extreme vulnerability ", - "values": [ - "1 - Minimal action" - ] - }, - { - "text": "Continue to improve employment opportunities and remove barriers to employment for persons with disabilities", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Strengthen measures to combat gender-based violence and gender inequality in practice, motivated by discriminatory traditional practices", - "values": [ - "4 - General action" - ] - }, - { - "text": "Increase steps to improve the participation of women in the labour market and in leadership and governance positions in the public and private sectors ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Continue proactive measures to promote rights of indigenous peoples as well as of the Afro-Brazilian population and ensure their well-being", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Accede to the Convention against Torture and Other Cruel, Inhuman or Degrading Treatment or Punishment and the Optional Protocol to the Convention on the Rights of the Child on the involvement of children in armed conflict", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Continue the measures implemented to ensure the right to water and sanitation within the framework of General Assembly resolution 64/292", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Continue to work towards ensuring greater representation of women in high-level policy and decision-making institutions, especially in the national legislature and local government bodies.", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Advance in the eradication of violence against women, intensifying actions such as those developed by the Domestic Violence Branch of the Police, and put in place measures that contribute to the elimination of traditional practices such as female gender mutilation, the trokosi practice and forced marriage", - "values": [ - "4 - General action" - ] - }, - { - "text": "Strengthen socioeconomic projects to ensure economic, social and cultural rights, and consequently, to improve the standard of living of the citizens ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Expedite the proceedings to abolish the death penalty", - "values": [ - "4 - General action" - ] - }, - { - "text": "Combat early marriage and the practice of bride price, in line with what was said by the Special Rapporteur on violence against women, its causes and consequences", - "values": [ - "4 - General action" - ] - }, - { - "text": "Ensure universal birth registration and take the necessary steps to achieve universal primary education and combat illiteracy", - "values": [ - "4 - General action" - ] - }, - { - "text": "Reinforce policies to address the needs of migrants and refugees by providing for the safe and voluntary return of refugees and internally displaced persons to their homes and ensuring the rehabilitation of affected areas in accordance with international law", - "values": [ - "4 - General action" - ] - }, - { - "text": "Include in its next universal periodic review report information on the measures it has taken to implement article 261 bis of its criminal code, in particular on combating denial, trivialization or attempts to justify genocide or other crimes against humanity", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Redouble efforts to promote and safeguard the freedom and independence of the press and electronic media on the basis of international standards and norms", - "values": [ - "4 - General action" - ] - }, - { - "text": "Consider ratification of the International Covenant on Economic, Social and Cultural Rights, the International Covenant on Civil and Political Rights, as well as the Second Optional Protocol to the International Covenant on Civil and Political Rights, aiming at the abolition of the death penalty", - "values": [ - "3 - Considering action" - ] - }, - { - "text": "Ensure full-time school attendance at all levels to children belonging to disadvantaged and marginalized groups", - "values": [ - "4 - General action" - ] - }, - { - "text": "Ratify the Optional Protocol to the Convention against Torture and Other Cruel, Inhuman or Degrading Treatment or Punishment, in order to establish a national preventive mechanism", - "values": [ - "4 - General action" - ] - }, - { - "text": "Transpose the Rome Statute of the International Criminal Court into national law", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Continue to engage its multilateral, regional and bilateral partners to strengthen its capacity and resources for the effective implementation of its poverty-alleviation programmes and for meeting its international human rights obligations", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Strengthen relevant legislation to tackle racism and intolerance and take concrete measures to prohibit public instigation to racial violence, hatred and discrimination", - "values": [ - "4 - General action" - ] - }, - { - "text": "Strengthen the protection of the rights of persons with disabilities", - "values": [ - "4 - General action" - ] - }, - { - "text": "Continue ongoing efforts aimed at the adoption of the law for the protection of human rights defenders, journalists, social communicators and justice officials", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Investigate and hold accountable state security agents and members of the police and army who have committed human rights abuses as well as ensure adequate compensation for victims ", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Ratify the Second Optional Protocol to ICCPR and implement its provisions in national legislation through the abolition of the death penalty ", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Sign and ratify the International Convention on the Protection of the Rights of all Migrant Workers and Their Families", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Take steps to investigate sexual violations against women and adopt measures to prevent the repetition of acts against civilians by any of the groups in conflict, in compliance to international humanitarian law", - "values": [ - "4 - General action" - ] - }, - { - "text": "Continue its efforts to materialize its decision to create an independent institution for the protection and the promotion of human rights, in accordance with the Paris Principles, and with a clear mandate and sufficient resources ", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Repeal any unreasonable restrictions on freedom of expression particularly for the media", - "values": [ - "4 - General action" - ] - }, - { - "text": "Establish a process for handling requests for nationality by Bidouns in accordance with international standards", - "values": [ - "4 - General action" - ] - }, - { - "text": "Take adequate measures to combat acts of racism and xenophobia against non-nationals", - "values": [ - "4 - General action" - ] - }, - { - "text": "Abolish the death penalty in the law and ratify the Second Optional Protocol to the ICCPR", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Introduce comprehensive legislation criminalizing violence against women, including marital rape", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Make every effort to ensure that the graduation rate from the First Nations' students reaches the level of other Canadian students ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Consider establishing a national human rights institution accredited by the International Coordinating Committee of National Institutions for the promotion and protection of human rights in order to raise public awareness and guide the authorities", - "values": [ - "3 - Considering action" - ] - }, - { - "text": "Pursue eradicating child labour in Kenya by enforcing compulsory education", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Continue efforts made to promote and protect the rights of persons with disabilities ", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Continue its efforts to enhance the rights of women in particular to eliminate all forms of violence against women", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Establish an independent civilian authority charged with receiving complaints and investigating allegations of crimes committed by members of the Zimbabwe Republic Police, military and armed forces ", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Take all the necessary measures to fight against all forms of violence against women and proceed to investigate and punish those responsible", - "values": [ - "4 - General action" - ] - }, - { - "text": "Continue its efforts to strengthen economic, social and cultural rights, particularly the rights of women, children and persons with disabilities", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Enact specific laws and policies recognizing and protecting the work of human rights defenders and enabling safe and unhindered access to international human rights mechanisms", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Establish a State institution responsible for policy development, follow-up and coordination of actions in the area of human rights ", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "As a step to advance the situation of women, abolish the principle of guardianship over women", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Make enforced disappearance a criminal offence and ensure that all allegations of enforced disappearance and extrajudicial executions are thoroughly investigated and those responsible brought to justice", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Respond positively to visit requests by the special procedures of the Human Rights Council", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Protect effectively the rights of refugees and migrants and adopt concrete measures to combat and prevent xenophobic violence", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Enact the draft law on domestic violence in full compliance with the international human rights standards", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Continue to carry out further measures to reduce poverty and redouble its efforts to strengthen relations and harmony between the different races in the country", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Accede to the Second Optional Protocol to the International Covenant on Civil and Political Right", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Urgently address the inconsistency in the age of marriage in the Marriage Act and the Constitution", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Speed up the ratification of ICPPED", - "values": [ - "4 - General action" - ] - }, - { - "text": "Take concrete measures with a view to abolishing the Security Law. ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Increase efforts to promote gender equality in the economic and political fields", - "values": [ - "4 - General action" - ] - }, - { - "text": "Prevent different forms of danger for children such as life on the streets, domestic violence, child trafficking, child labour, armed conflict, sexual exploitation", - "values": [ - "4 - General action" - ] - }, - { - "text": "Improve the system of gathering and analysis of statistics regarding migrants' workers and develop a national strategy for migration in the wider framework of the economic development policies of the country ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Continue to strengthen measures aimed at protecting and rehabilitating women victims of sexual and domestic violence", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Consider further steps to engage women in politics in order to increase the number of women in decision-making positions ", - "values": [ - "3 - Considering action" - ] - }, - { - "text": "Continue the process aimed at establishing a Truth and Reconciliation Commission ", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Take adequate measures to ensure an increased participation of women in all areas of society, including in political life ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Recommended the liberation of all human rights defenders who remain in prison about the situation of Solijon Abdurakhmanov and Agzam Turgunov.", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Implement the "National Health Policy" as a way of promoting the right to health", - "values": [ - "4 - General action" - ] - }, - { - "text": "Seek technical assistance with a view to harmonizing national legislation with ratified international human rights instruments ", - "values": [ - "1 - Minimal action" - ] - }, - { - "text": "Review laws and regulations that call for immediate and automatic deportation of migrant workers on health grounds", - "values": [ - "3 - Considering action" - ] - }, - { - "text": "Ratify CED, CAT and OP-CAT, CRPD and OP-CRPD, as well as the two optional protocols to CRC ", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Make a declaration within a frame of article 21 and 22 of Convention against Torture, to improve the conditions of detainees and to prevent maltreatment of prisoners in prisons belonging to the Ministry of Interior", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Extend cooperation to the Office of the High Commissioner for Human Rights so that the Office can visit Syria as soon as possible, and facilitate the investigation requested by the Human Rights Council", - "values": [ - "4 - General action" - ] - }, - { - "text": "Reconsider, with regard to concerns raised by the International Holocaust Remembrance Alliance, legislation that restricts open and honest scientific research and that can serve to intimidate researchers", - "values": [ - "3 - Considering action" - ] - }, - { - "text": "Take steps to put in place public order legislation which respects the right of assembly and demonstration while safeguarding citizen's rights to protection and safety ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Install a proper reconciliation and transitional justice framework in conformity with international standards and good practice and in line with the recommendations of the National Dialogue Conference and the report of the United Nations High Commissioner on Human Rights, including effective legislation on transitional justice and the appointment of members in the independent commission to investigate allegations of human rights violations committed by Government security forces during the events of 2011 ", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Take further steps to integrate refugees", - "values": [ - "4 - General action" - ] - }, - { - "text": "Take further measures to ensure that Roma people fully enjoy their human rights, including by preventing and combating discrimination and racially motivated crimes against Roma people ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Strengthen measures to combat ethnic profiling and to further separate it from hate speech which targets certain minorities, and protect the exercise of freedom of expression", - "values": [ - "4 - General action" - ] - }, - { - "text": "Guarantee the enjoyment of human rights of the minorities and vulnerable groups in the country, including the indigenous peoples and migrants", - "values": [ - "4 - General action" - ] - }, - { - "text": "Step up efforts in ensuring that the development and poverty alleviation programmes fully benefit the vulnerable groups, including minority and indigenous communities and rural women", - "values": [ - "4 - General action" - ] - }, - { - "text": "Adhere to and adapt national laws to the Rome Statute of the International Criminal Court", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Continue to invest resources and prioritize efforts to provide relevant education and training to enhance the employability of its citizens, particularly the youth and unemployed", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Ensure that Viet Nam complies with its international obligations regarding freedom of expression, religion and assembly ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Continue its efforts aimed at enhancing gender equality and improving the means to protect the rights of national minorities", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Consider that any person detained by its armed forces is under its jurisdiction, and respect its obligations concerning the human rights of such individuals ", - "values": [ - "3 - Considering action" - ] - }, - { - "text": "Continue the efforts to promote and protect the rights of women, and strengthen measures already adopted aimed at enhancing their political participation", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Enhance efforts to address Islamophobia, racial discrimination and intolerance including towards Roma, religious minorities and immigrants, as well as other related intolerance", - "values": [ - "4 - General action" - ] - }, - { - "text": "Prosecute persons responsible for serious violations of human rights and ratify the Rome Statute", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Continue its efforts to avoid school drop-out rate ", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Strengthen efforts to prevent and combat all forms of discrimination and violence against women and ensure that women victims of violence receive appropriate help and perpetrators are brought to justice", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Strengthen education for law enforcement personnel on international human rights laws, including the Convention on the Elimination of All Forms of Discrimination against Women and the International Covenant on Civil and Political Rights", - "values": [ - "4 - General action" - ] - }, - { - "text": "Strengthen its efforts in making all forms of sexual violence against women and girls, including marital rape, criminal offences", - "values": [ - "4 - General action" - ] - }, - { - "text": "Continue the necessary legal and institutional steps to reform the National Human Rights Commission so that it meets the Paris Principles", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "With respect to follow-up to the universal periodic review, Niger intends to take the following measures: the organization of a national workshop to report back on the conduct of the review, the preparation of an internal assessment of follow-up, the drafting and submission of a midterm report to the Human Rights Council on the implementation of the universal periodic review recommendations, and the drafting of a human rights action plan by the inter-ministerial committee. As with the reparation of the universal periodic review, interested stakeholders (the National Commission on Human Rights and Fundamental Freedoms and civil society) will be involved in this process.", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Continue participating in opportunities for the search to an end to the crisis and achieve peace and stability in the country, under the principles of respect of independence, international legality and sovereignty of the Syrian Arab Republic", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Consider ratifying ICPPED", - "values": [ - "3 - Considering action" - ] - }, - { - "text": "Consider taking all necessary steps to introduce a de jure moratorium on capital executions with a view to fully abolish the death penalty, and to ratify the Second Optional Protocol to the International Covenant on Civil and Political Rights", - "values": [ - "3 - Considering action" - ] - }, - { - "text": "Enforce legislation that criminalizes all forms of violence against women, including the Protection from Harm Act, and establish a system of regular data collection on such crimes", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Continue pursuing and redoubling efforts to establish plans and strategies for the development of the country, concentrating on the improvement of the situation of economic and social rights of its citizens, and seek to benefit from the support and services of OHCHR and the international community. ", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Sign and ratify the Optional Protocol to the International Covenant on Economic, Social and Cultural Rights and the Second Optional Protocol to the International Covenant on Civil and Political Rights, aiming at the abolition of the death penalty", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Redouble efforts against trafficking in persons, in particular through the adoption of the new National Strategy 2013-2018", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Continue its efforts to combat impunity and human rights violations with particular focus on the rights of women and children.", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Address the excessive use of force by law-enforcement officers by ensuring public agents are held to account for allegations of misconduct, abuse and violence", - "values": [ - "4 - General action" - ] - }, - { - "text": "Sign and ratify the Convention on the Elimination of All Forms of Discrimination against Women ", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Establish a Constitutional Commission to conduct a comprehensive review of the 2013 Constitution and carry out national consultations to ensure that the Constitution is reflective of the will of the people", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Expand and develop its social programs with a special emphasis on the most disadvantaged persons, especially women and children", - "values": [ - "4 - General action" - ] - }, - { - "text": "Respect the fundamental rights of individuals, including the rights to freedom of expression and association and respect the prohibition of arbitrary arrest and detention, as well as the procedural guarantees", - "values": [ - "4 - General action" - ] - }, - { - "text": "Safeguard the rights of individual refugees and asylum seekers and ensure their access to a fair procedure for examining their asylum requests", - "values": [ - "4 - General action" - ] - }, - { - "text": "Sign and ratify the Convention on the Rights of Persons with Disabilities and its Optional Protocol ", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Take all necessary measures to ensure the effective implementation of the Criminal Code, which sanctions the crime of femicide", - "values": [ - "4 - General action" - ] - }, - { - "text": "Develop a national human rights plan of action to improve awareness of the conventions to which the Lao People's Democratic Republic is a party, and encourage civil society engagement on human rights issues ", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Review existing legislation and programs to prevent and eradicate violence and sexual exploitation against children and adolescents, to ensure they meet international best practices", - "values": [ - "3 - Considering action" - ] - }, - { - "text": "Continue appropriate measures to ensure the realization of the socioeconomic rights of its people and to provide adequate resources for vulnerable groups facing economic challenges ", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Ensure that education covers all areas of the country, including the living areas of refugees, bearing in mind that the mandate of the UNRWA covers the educational needs of Palestinian refugees.", - "values": [ - "4 - General action" - ] - }, - { - "text": "Continue to engage bilateral, regional and multilateral partners to better protect the rights and welfare of migrants and members of their families", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Continue to implement policies and programmes to guarantee the rights to education, health and food, in addition to combating poverty", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Amend the criminal code to decriminalize same-sex sexual activity between consenting adults and adopt legislation that prohibits discrimination on the basis of sexual orientation and gender identity", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Create a legislative framework that guarantees freedom of information favouring the establishment of private media ", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "That the action initiated in favour of the rights and quality of life of indigenous peoples, comprising the Action Plan 2009-2013, the adoption of the Law of 2011 and the forthcoming publication of the corresponding implementing decree, be pursued through the formulation and implementation of a new and even more efficient multi-year plan", - "values": [ - "4 - General action" - ] - }, - { - "text": "Continue consolidating work done in the international community concerning the rejection of unilateral coercive measures including the illegal embargo against Cuba", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Allocate adequate financial resources for education in the State Budget as provided for by the Law on Education 2011", - "values": [ - "4 - General action" - ] - }, - { - "text": "Canada accepts in part recommendation 45 [Integrate economic social and cultural rights in its poverty reduction strategies in a way that can benefit the most vulnerable groups in society, specially the Aborigines, afro-Canadians, migrants, persons with disabilities, youth, women with low incomes, and single mothers and adopt all necessary measures, including the full implementation of the United Nations Declaration on the Rights of Indigenous Peoples, to guarantee Aboriginals the full enjoyment of their rights including economic, social and cultural so that their standard of living was similar to that of the rest of the citizens in Canada] and commits to giving appropriate attention to vulnerable groups in policy development. The Government of Canada also commits to giving greater prominence to the Market Basket Measure as one of the tools used to measure low income.", - "values": [ - "4 - General action" - ] - }, - { - "text": "Recommended the decriminalization of consensual same-sex activity between adults.", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Croatia remains committed to continue to build effective and efficient asylum system, in particular through the strengthening of institutional framework, training of responsible officials as well as ameliorating conditions for the accommodation of asylum seekers awaiting the outcome of the process.", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Ensure that clear targets and indicators are developed with civil society in the next Growth and Development Strategy to protect and monitor human rights, particularly the rights of women and girls ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Work on the implementation of the Agenda on Women, Peace and Security so as to ensure effective participation of women in all areas of decision-making processes", - "values": [ - "4 - General action" - ] - }, - { - "text": "Take all necessary measures to protect the right to health and life of residents living in the area of Fukushima from radioactive hazards and ensure that the Special Rapporteur on the Right to Health can meet with affected and evacuated people and civil society groups", - "values": [ - "4 - General action" - ] - }, - { - "text": "Step up efforts aimed at effectively preventing violence against women, including rape, domestic violence and sexual harassment", - "values": [ - "4 - General action" - ] - }, - { - "text": "Continue to fight poverty with the active support of the international community", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Proceed to the ratification the Second Optional Protocol to the International Covenant on Civil and Political Rights aiming at the abolition of the death penalty", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Criminalize gender violence and modify the definition of rape to define it as non-consensual sex within or outside marriage", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Enact legislation on community-based associations, violence against women, the rights of persons with disabilities, human trafficking, trade unions and health insurance.", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Continue efforts to implement the total prohibition of torture and illtreatment by integrating CAT into domestic legislation and ratify OP-CAT ", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Intensify efforts to address illegal trafficking in persons and drugs", - "values": [ - "4 - General action" - ] - }, - { - "text": "As recommended by the Committee on the Elimination of Racial Discrimination, pursue means of recording complaints, prosecutions and sentences related to racially motivated crimes and investigate how such issues are addressed through the criminal justice system. ", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Adopt a more comprehensive legislation to combat domestic violence and all forms of sexual abuse ", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Continue to enhance its partnership with specialized agencies of the United Nations in order to implement human rights and boost its cooperationwith special procedures mandate holders of the Human Rights Council", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Take further action to improve prison conditions, especially to account for the specific needs of women and children in detention ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Envisage legislative reforms and namely the adoption of the press law in Burundi aiming to comply with human rights international standards", - "values": [ - "3 - Considering action" - ] - }, - { - "text": "Abolish the death penalty for all cases, and sign and ratify OP2-ICCPR ", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Continue the national policy for greater access to education for all children and to include in the school system, at all levels, appropriate measures in the field of human rights education, in accordance with the Plan of Action 2005-2009 of the World Programme for Human Rights Education.", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Recommend that the international community help political actors to implement the decisions resulting from the Ouagadougou Agreement ", - "values": [ - "1 - Minimal action" - ] - }, - { - "text": "Allocate more resources to its human rights bodies in order to ensure their effective functioning in line with international standards", - "values": [ - "4 - General action" - ] - }, - { - "text": "Enhance efforts to curb hate crimes against certain religious communities, ethnic groups and other minorities including indigenous people", - "values": [ - "4 - General action" - ] - }, - { - "text": "Adopt a comprehensive policy to ensure universal access to reproductive health and rights according to the programme of action of the Beijing Conference and in line with the 2030 Agenda for Sustainable Development", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Further ensure access to compulsory education and equal learning opportunities for all children", - "values": [ - "4 - General action" - ] - }, - { - "text": "Take actions to provide accountability for human rights violations ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Decriminalize homosexuality and abrogate the law which prohibits sexual relations between people of the same sex ", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Put more emphasis on employment, especially on reducing the unemployment rate of young people", - "values": [ - "4 - General action" - ] - }, - { - "text": "Ensure the adoption of the legal aid system that is now in preparation, which should improve the protection of victims of discrimination and introduce broader legal advice options for people in need, as from 1 July 2018", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Strengthen anti-terrorism by incorporating capacity with other African States to fight the scourge of terror ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Provide concrete legal measures against hate speech and incitement", - "values": [ - "4 - General action" - ] - }, - { - "text": "Speed up the process of accession to the ICESCR and ICCPR", - "values": [ - "4 - General action" - ] - }, - { - "text": "Consider ratifying core international human rights conventions, especially ICMW (International Convention on the Protection of the Rights of All Migrant Workers and Their Families) as well as ILO Convention 189 (Decent Work for Domestic Workers) ", - "values": [ - "3 - Considering action" - ] - }, - { - "text": "Ratify the first Optional Protocol to ICCPR", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Ensure compliance with its international obligations through the implementation of effective legislative and other measures to protect women and girls from domestic and sexual violence, including sexual harassment, by prohibiting sexual harassment, and establishing the administrative procedures by which sexual harassment complaints can be investigated and perpetrators held accountable", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Recognize the right to conscientious objection to military service in law and practice ", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Consider the issue of ratification of the Convention on the Rights of Persons with Disabilities", - "values": [ - "3 - Considering action" - ] - }, - { - "text": "Share its best practices within poverty reduction and the promotion of social equality at the bilateral and multilateral level ", - "values": [ - "1 - Minimal action" - ] - }, - { - "text": "Strengthen efforts to assist Palestinians living in Lebanon who are lacking identity documents so that it will be possible for them to live a decent life", - "values": [ - "4 - General action" - ] - }, - { - "text": "Ensure the immediate release of all children in the context of negotiations with armed groups and facilitate the preparation of concrete and time-bound action plans to halt the recruitment of children by armed groups and Government forces", - "values": [ - "4 - General action" - ] - }, - { - "text": "Ensure that the Palestinians enjoy the religious and cultural rights contained in the Universal Declaration of Human Rights and allow them unhindered access to places of worship in conformity with the Fourth Geneva Convention", - "values": [ - "4 - General action" - ] - }, - { - "text": "Implement fully its obligations under the Convention on the Rights of Persons with Disabilities,", - "values": [ - "4 - General action" - ] - }, - { - "text": "Continue to make efforts to combat gender-based violence ", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Consider the ratification of ICCPR-OP2 aiming at the abolition of the death penalty and of the Rome Statute of the International Criminal Court (ICC) ", - "values": [ - "3 - Considering action" - ] - }, - { - "text": "Take necessary measures aimed at verifying alleged human rights violations committed by members of the security services", - "values": [ - "4 - General action" - ] - }, - { - "text": "Strengthen its cooperation with human rights special procedures and consider issuing a standing invitation", - "values": [ - "4 - General action" - ] - }, - { - "text": "Ratify the UNESCO Convention against Discrimination in Education and ensure that primary education is free and compulsory for all", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Strengthen protection of victims of trafficking.", - "values": [ - "4 - General action" - ] - }, - { - "text": "Continue to provide financial and other forms of support to women and other vulnerable groups", - "values": [ - "4 - General action" - ] - }, - { - "text": "Continue efforts on judicial reform, ensuring meaningful, independent accountability mechanisms and improved transparency throughout the judicial process ", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Start developing a National Action Plan on Human Rights as well as a National Action Plan against Racism, Racial Discrimination, Xenophobia and other related intolerances ", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Ensure further protection to refugees and asylum seekers", - "values": [ - "4 - General action" - ] - }, - { - "text": "Continue efforts to strengthen human rights", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Ensure that the recommendations of the Commission for Reception, Truth and Reconciliation are implemented and that the necessary support is provided to the victims of past human rights violations", - "values": [ - "4 - General action" - ] - }, - { - "text": "Improve access to health services", - "values": [ - "4 - General action" - ] - }, - { - "text": "Guarantee the rights of persons with disabilities and aim to integrate them in development programmes to ensure their effective participation in society ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Establish anti-discrimination ombudsmen in each of its cantons ", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Fully respect the choices of parents concerning the education of their children in accordance with arts. 14 and 18 of the Convention on the Rights of the Child ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Abolish the death penalty for all crimes ", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Observe all human rights principles and international conventions, and raise awareness among the population regarding human rights values", - "values": [ - "4 - General action" - ] - }, - { - "text": "Take all necessary steps to implement the outstanding elements of the peace agreement and to complete the electoral process as quickly as possible ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Continue its national efforts to focus on the quality and sustainability of development targets ", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Undertake more efforts to effectively combat the human trafficking phenomenon ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Share its experience on achievements in areas such as education and health care ", - "values": [ - "1 - Minimal action" - ] - }, - { - "text": "Take the appropriate steps towards the adoption of a child protection code in conformity with the Convention on the Rights of the Child ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Consider reaccession to ICCPR-OP 1, as well as the ratification of the Second Optional Protocol to ICCPR, with a view to entirely abolishing capital punishment", - "values": [ - "3 - Considering action" - ] - }, - { - "text": "Increase cooperation with the Turkish Cypriot community with the aim of further promoting the rights of all individuals in Cyprus ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Ensure that the issue of early child marriage is addressed promptly, inter alia by making the minimum age for marriage equal for girls and boys ", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Ensure that all victims of gender-based violence have effective access to appropriate resources, including legal assistance and protection measures ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Address the problems faced by women belonging to minorities.", - "values": [ - "4 - General action" - ] - }, - { - "text": "Exert further efforts to implement the national plan to combat human trafficking", - "values": [ - "4 - General action" - ] - }, - { - "text": "Incorporate economic, social and cultural rights in the Bill of Rights of 1990, while taking measures to ensure that the competent authorities review the bills, regulations and policies so that these are compatible with the provisions of ICESCR ", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Ensure that its legislation allows for processes of consultations in all actions affecting indigenous peoples ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Address the gender disparity as well as women's limited access to education, their limited political representation and limited participation in decision-making ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Continue to make efforts to sustainably increase coverage and benefits under the Bono Juana Azurduy voucher system with a view to reducing levels of maternal and infant mortality and chronic malnutrition among children under the age of 2", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Continue its efforts to increase access to health services and strengthen the delivery of high-quality health care", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Commute all death sentences, in particular executions of political prisoners, and abolish, in practice, public executions by hanging and stoning", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Deal with the problems of overcrowding and insufficient food provisions in prisons", - "values": [ - "4 - General action" - ] - }, - { - "text": "Implement measures to protect the right to life and freedom of expression of human rights defenders, and ensure that the perpetrators of violence are brought to justice", - "values": [ - "4 - General action" - ] - }, - { - "text": "Raise the minimum age for marriage to 18 years and improve maternal and neonatal health services, especially in rural areas and among indigenous people ", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Submit without any delay the initial report under the Optional Protocol to CRC on the involvement of children in armed conflict ", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Continue promoting equitable representation of women in the Parliament and Government", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Improve the identification of eligible beneficiaries of social protection schemes", - "values": [ - "4 - General action" - ] - }, - { - "text": "Ratify the International Convention for the Protection of All Persons from the Enforced and Involuntary Disappearance ", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Cooperate fully with the procedures and mechanisms of the Human Rights Council", - "values": [ - "4 - General action" - ] - }, - { - "text": "Continue with its very successful and socially-oriented economic policy, including by for example providing proper drinking water to poor households and to special hardship regions", - "values": [ - "4 - General action" - ] - }, - { - "text": "Support fully to the adoption of the necessary information educational measures to promote racial, ethnic and religious tolerance, with the emphasis on those characteristics that are results of natural-historical development", - "values": [ - "4 - General action" - ] - }, - { - "text": "Consider ratification other international human rights treaties to which it is not yet a state party", - "values": [ - "3 - Considering action" - ] - }, - { - "text": "Strengthen the protection of ethnic and religious minorities and ensure that all abuses against them are duly investigated and the perpetrators are brought to justice also in the context of the current crisis", - "values": [ - "4 - General action" - ] - }, - { - "text": "Collect and disaggregate data on violence against women so as to ensure a better assessment about the implementation of applicable legislation", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Continue adapting legislation, at the federal, provincial and local levels, to the provisions of the Convention on the Rights of Persons with Disabilities, ensuring the participation of organizations that represent persons with disabilities in those processes", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Revoke laws that allow for the suppression of the rights to freedom of assembly and expression ", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Seek the support of the Office of the United Nations High Commissioner for Human Rights and the international community in the key areas listed in the report for which capacity-building is required ", - "values": [ - "1 - Minimal action" - ] - }, - { - "text": "Ratify a number of international legal instruments and the Second Optional Protocol to the International Covenant on Civil and Political Rights and align its national laws with international standards regarding the abolition of the death penalty", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Take more resolute action to prevent, and punish perpetrators, of racially motivated acts and propaganda that targeted ethnic minorities and foreigners", - "values": [ - "4 - General action" - ] - }, - { - "text": "Ratify the International Covenant on Economic, Social and Cultural Rights, the International Covenant on Civil and Political Rights, and the International Convention on the Elimination of All Forms of Racial Discrimination", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Take immediate steps to ensure that the national regulations relating to the Internet guarantee freedom of expression", - "values": [ - "4 - General action" - ] - }, - { - "text": "Take further steps for the protection of physical and sexual integrity of children, including by actively preventing the recruitment and use of children in armed conflict and ensuring their effective rehabilitation in accordance with the best interests of the child", - "values": [ - "4 - General action" - ] - }, - { - "text": "Strengthen efforts towards the ratification of the International Covenant on Civil and Political Rights and the International Covenant on Economic, Social and Cultural Rights", - "values": [ - "4 - General action" - ] - }, - { - "text": "Adopt measures aimed at the identification of victims of human trafficking and provide them with the protection and rehabilitation ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Continue efforts to ensure the submission of national reports to the treaty bodies ", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Ensure that persons with disabilities have the right to enrol in the electoral census and vote", - "values": [ - "4 - General action" - ] - }, - { - "text": "Address all acts of religious intolerance and discrimination ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Ensure access to justice for victims of sexual violence by ensuring the effective implementation of laws protecting women", - "values": [ - "4 - General action" - ] - }, - { - "text": "Strengthen the mandate of the National Human Rights Commission of Korea to conduct visits and investigations to places of detention so as to effectively function as a national torture preventive mechanism and consequently to consider acceding to the Optional Protocol to the Convention against Torture and Other Cruel, Inhuman or Degrading Treatment or Punishment", - "values": [ - "4 - General action" - ] - }, - { - "text": "Ensure that all human rights treaties are given full legal effect in domestic laws ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Enhance the training of border guards, immigration personnel and judges in the field of international refugee law with a view to ensuring protection and full respect for the rights of all refugees and asylum-seekers ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Consider the ratification of the International Convention on the Protection of the Rights of All Migrant Workers and Members of Their Families (ICRMW)", - "values": [ - "3 - Considering action" - ] - }, - { - "text": "Step up efforts in ratifying the International Convention on the Protection of the Rights of All Migrant Workers and Members of Their Families", - "values": [ - "4 - General action" - ] - }, - { - "text": "Establish measures to strengthen the fight against domestic violence", - "values": [ - "4 - General action" - ] - }, - { - "text": "Ratify the International Convention on the Protection of the Rights of All Migrant Workers and Members of Their Families, considering the equal and universal character should prevail for all international human rights instruments", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Take steps to ensure that freedom of religion is respected ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Carry on its efforts to protect the rights of vulnerable groups including children and persons with disabilities ", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Involve civil society in the follow up to the UPR review", - "values": [ - "4 - General action" - ] - }, - { - "text": "Commute without delay death sentences to prison terms, and definitively abolish capital punishment in all circumstances ", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Continue to further improve the already existing solid institutional framework regarding the protection of human rights and fundamental freedoms, and share best practices in this field ", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Continue to strengthen the achievements of health indicators, particularly related to child and maternal health, through the improvement of public health services ", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Amend the labour law to address the inconsistency with regard to the minimum age to work and the school age for compulsory education, as well as more vigorously enforce the labour laws related to child labour ", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Continue implementing throughout the country the criminal accusatory system, ensuring the same criminal procedure for the whole population", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Continue efforts to implement the Growth and Transformation Plan for 2010-2015 in order to improve enjoyment of economic and social rights and to achieve social justice ", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Continue considering adhering to the International Convention on the Protection of the Rights of All Migrant Workers and Their Families, as previously recommended", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Ensure that the security forces comply with international human rights law to ensure no extrajudicial executions, torture, ill treatment, rape and other grave human rights violations ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Give high priority to the creation of an independent national human rights institution in accordance with the Paris Principles and the establishment of an Ombudsman institution", - "values": [ - "4 - General action" - ] - }, - { - "text": "Ensure that all detained persons have prompt access to a doctor and a lawyer, as well as contact with their families, at all stages of detention, and that detainees held by the Political Security Department be given prompt access to legal advice and information.", - "values": [ - "4 - General action" - ] - }, - { - "text": "End jurisdiction of military courts over civilians and review all rules of criminal procedure so that they fully comply with international standards of fair trial, and provide full support for the bill aimed at ensuring this compliance. ", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Become a party to the ICCPR, ICESCR, CERD, and CAT", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Ensure the right to equality before courts and tribunals, and to a fair trial, as provided for by the Universal Declaration of Human Rights and ICCPR, and as outlined by the United Nations Basic Principles on the Independence of the Judiciary", - "values": [ - "4 - General action" - ] - }, - { - "text": "Consider integrating the provisions of the International Covenant on Economic, Social and Cultural Rights into domestic legislation to ensure the justiciability of these rights.", - "values": [ - "3 - Considering action" - ] - }, - { - "text": "Ratify the other international human rights treaties to which it is not yet a party ", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Take measures to reduce the number of crimes committed based on xenophobia and racial intolerance", - "values": [ - "4 - General action" - ] - }, - { - "text": "Consider introducing civic and human rights education in the school curriculum", - "values": [ - "3 - Considering action" - ] - }, - { - "text": "Guarantee the rights of minorities, elaborate and implement a legal and regulatory framework for the respect and protection of vulnerable populations ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Sign the Convention against Torture and Other Cruel, Inhuman or Degrading Treatment or Punishment and its Optional Protocol, the International Convention for the Protection of All Persons from Enforced Disappearance, as well as the Optional Protocols to the Convention on the Rights of the Child", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Ensure the full implementation of the presidential decree forbidding the imprisonment of women for non-payment of dowries on separating from their husbands ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Step up policies to combat discrimination against women in the labour market, particularly with regard to wage disparities and the concentration of women in low-paid jobs ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Strengthen legislation to prohibit torture and ill-treatment as well strengthen legislation against human trafficking", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Take concrete steps to ensure freedom of the media and investigate any intimidation and\narbitrary detention of journalists and human rights defenders with a view to bringing such practices to\nan end", - "values": [ - "4 - General action" - ] - }, - { - "text": "Adopt reforms allowing women the transmission of citizenship as a measure in favour of gender equality and the reduction of cases of statelessness ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Incorporate the largest human rights protection guarantees in the Constitution being drafted, partly contained in the current interim Constitutional Declaration", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Respect the human rights of prisoners of war, guaranteed by the penal norms ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Finalize and implement the first response protocol for urgent intervention, so that the problem of violence against women and girls is dealt with effectively and that ministries concerned are provided with the budget necessary to apply the Domestic Violence Prevention and Protection Act", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Ratify the Second Optional Protocol to the International Civil and Political Rights aiming at the formal abolition of the death penalty in the country", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Prosecute and punish persons who, despite awareness campaigns, continue to be perpetrators or accomplices of FGM, according to the law of 22 January 1999", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Further its efforts towards the establishment of a national human rights institution that is compliant with the Paris Principles", - "values": [ - "4 - General action" - ] - }, - { - "text": "Adopt measures to increase the number of women working on violence against women issues in law enforcement agencies ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Consider modifying or repealing the criminal legislation on defamation to take away the possibility of depriving anyone of his or her liberty on account of opinions", - "values": [ - "3 - Considering action" - ] - }, - { - "text": "Take all the necessary steps to address the placing of asylum-seeking and migrant children in detention, including by repealing relevant legislation allowing for the detention of families accompanied by children", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Consider, possibly within the framework of a desirable re-orientation of European policy, ratifying the International Convention on the Protection of the Rights of All Migrant Workers and Members of Their Families, even if initially with reservations", - "values": [ - "3 - Considering action" - ] - }, - { - "text": "Adopt effective measures in the structured labour market in order to accelerate the elimination of occupational segregation ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Allocate adequate resources for community-based services to prevent family separation, including for children with disabilities", - "values": [ - "4 - General action" - ] - }, - { - "text": "Further progress in the eradication of poverty through the successful implementation of the Government Transformation Programme, particularly in the poverty zones of Orang Asli in Peninsular Malaysia, and the indigenous peoples of Sabah and Sarawak", - "values": [ - "4 - General action" - ] - }, - { - "text": "Amend the Criminal Code in order to criminalize the recruitment of children under the age of 18 years into armed forces and establish a mechanism to provide former child soldiers with the necessary assistance for their reintegration in society", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Promote a safe and favourable environment that allows individuals and groups to exercise the freedoms of expression, association and peaceful assembly and put an end to harassment, intimidation, arbitrary arrests and physical attacks, particularly in the context of peaceful demonstrations ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Continue implementing the 3N Initiative to guarantee the exercise of the right to food", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Ratify the Rome Statute of ICC (signed in 2000) and incorporate it into its national legislation", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Continue their efforts to enhance respect and fulfillment of the right to education and to ensure access to education for girls and prevent early school dropout", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Ratify the Optional Protocol to the Convention against Torture and Other Cruel, Inhuman or Degrading Treatment or Punishment, the First and Second Optional Protocols to the International Covenant on Civil and Political Rights, the International Convention for the Protection of all Persons against Enforced Disappearances ", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Continue to respect the terms of the SADC roadmap and that political leaders work together towards reconciliation", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Ensure that the law governing access to abortion in Northern Ireland fully complies with international human rights law, by decriminalizing abortion and ensuring access to abortion in cases of severe and fatal fetal anomalies and where the pregnancy is a result of rape or incest", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Sustain its dialogue with indigenous groups affected by the intensified state's mining activities in the North and to reach an agreement that is acceptable for both sides ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Support the implementation of domestic measures to ensure the protection of socially vulnerable groups of the population, including children", - "values": [ - "4 - General action" - ] - }, - { - "text": "Fully prosecute extrajudicial killings, enforced disappearances and forced displacements and take strong action to stop their occurrence.", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Re-establish the Special Prosecutor's office for past-political and social movements or create a similar office, which would be a strong signal towards combating impunity for victims and their families", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Sign the Second Optional Protocol to the International Covenant on Civil and Political Rights as well as establish a moratorium on executions with a view to formally abolishing the death penalty", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Continue its policy to ensure comprehensive protection of citizens' economic, social and cultural rights", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Adopt a comprehensive strategy addressing all forms of discrimination against all groups of children ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Promote and protect the rights of indigenous peoples, peasants and other people working in rural areas", - "values": [ - "4 - General action" - ] - }, - { - "text": "Take steps to withdraw its reservations to the Convention on the Elimination of All Forms of Discrimination against Women", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Elaborate a plan and create national mechanisms to combat violence against women in Darfur ", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Restore a democratically elected Government in accordance with, inter alia, article 25 of the International Convention on Civil and Political Rights", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Set out a clear legislative timetable for ratification of the ICCPR", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Ensure draft legislation relevant to protecting vulnerable groups is successfully implemented, such as the Law on the Elimination of Domestic Violence and the Law on the Welfare of Older Persons", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Encourage Mauritius to continue with its positive efforts in promoting and protecting human rights of its people and share its experience in this area with other countries", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Give attention, once the draft of the Human Rights Plan of Action for the promotion and protection of human rights is enacted, not only to the implementation of its articles but also the monitoring of it", - "values": [ - "4 - General action" - ] - }, - { - "text": "Adopt measures to empower girls and boys to make conscious decisions regarding their health and well-being through mainstreaming of sexual and reproductive health education", - "values": [ - "4 - General action" - ] - }, - { - "text": "Take all necessary measures to ratify the Rome Statute of the International Criminal Court", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Establish an appropriate system of juvenile justice in conformity with international standards and its international commitments", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Continue to introduce legislation to fulfil its obligations under the Convention on the Rights of the Child", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Continue to cooperate with the United Nations and other international organizations to strengthen human rights in Nepal ", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Continue the implementation of the national Action Plan for Human Rights, and finalize the draft national policy framework on human rights", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Continue efforts in support of the Truth, Justice and Reconciliation Commission", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Consider the introduction of possible amendments to its national legislation on citizenship and nationality, so that, with respect to such issues, men and women are treated on an equal basis before the law", - "values": [ - "3 - Considering action" - ] - }, - { - "text": "Adopt legislation allowing for paternity leave", - "values": [ - "4 - General action" - ] - }, - { - "text": "Further strengthen the successful implementation of the Vision 2030 Strategic Plan, in the fight against poverty", - "values": [ - "4 - General action" - ] - }, - { - "text": "Pursue its programmes and consolidated approach in the promotion and protection of all human rights including in the empowerment of women.", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Adequately staff Family Support Units in police stations to address violence against women ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Enable the Committee on Missing Persons in Cyprus to continue working on the exhumation, identification and return of human remains ", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Combat impunity by increasing the capacity of investigators and prosecutors and reducing corruption in the public sector and judiciary", - "values": [ - "4 - General action" - ] - }, - { - "text": "Extend standing invitation to United Nations Special Procedures mandate holders to visit the country", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Ensure prompt, impartial and comprehensive investigations of all complaints of torture or cruel, inhuman or degrading treatment or punishment of persons subjected to any form of arrest, detention or imprisonment ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Raise the minimum age for marriage to comply with international child rights standards, to prevent child, early and forced marriage", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Positively consider requests for country visits of special procedures of the Council and implement the recommendations stemming from United Nations human rights mechanisms ", - "values": [ - "3 - Considering action" - ] - }, - { - "text": "Put in place effective measures and policies to address discrimination against indigenous peoples", - "values": [ - "4 - General action" - ] - }, - { - "text": "Ensure the full and continued implementation of the various legislations put in place to safeguard the human rights and fundamental freedoms of all persons", - "values": [ - "4 - General action" - ] - }, - { - "text": "Ensure prompt and effective investigations into allegations of excessive use of force, and enforcement of judicial summons and prosecution of abuses committed", - "values": [ - "4 - General action" - ] - }, - { - "text": "Withdraw its reservations to CRC ", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Continue and complete the process of ratification of OP-CRC-AC ", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Ratify the International Covenant on Civil and Political Rights and the International Covenant on Economic, Social and Cultural Rights and ensure the conformity of national legislation with international obligations", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Ensure the safety of journalists and take further steps to create an environment conducive to a free and independent media. ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Adopt specific legislation on violence against women and forced marriages, in conformity with CEDAW and CRC, in order to prevent and to combat discrimination against women", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Take all measures to protect journalists in the fulfilment of their mission by implementing the provisions of the new Press Code which criminalize aggressions against them ", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Work with the international community, including WHO and the Global Fund, to fight diseases through securing relevant expertise ", - "values": [ - "1 - Minimal action" - ] - }, - { - "text": "Enact the crimes set out in the Rome Statute of the International Criminal Court in its domestic law, as appropriate ", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Take into account recommendations made by treaty bodies and special procedures, especially those relating to women and children, in developing a national action plan for human rights", - "values": [ - "4 - General action" - ] - }, - { - "text": "Continue collaborating with the special procedures of the Human Rights Council on cases of enforced or involuntary disappearance", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Strengthen the protection of children\u2019s rights, including by maintaining a minimum age of 15 years for criminal liability and raising the age of sexual consent to 16 years", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Unequivocally and publicly condemn attacks against Roma and other minorities whenever they occur and effectively investigate all reported cases of harassment of members of the Roma by the police forces ", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Maintain the tempo to reform the constitution and conclude this important reform as it will consolidate and enhance the legal framework for protection and promotion of human rights", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Continue progress in education, with special attention to the education of girls", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Implement all resolutions adopted by the Council, in particular resolution 7-18, in which the Council requested Israel to cooperate with the Special Rapporteur on the human rights situation in the Palestinian territories occupied since 1967 and to immediately withdraw all legislative and administrative measures aiming at making the occupied East Jerusalem Jewish, including measures that allow archaeological digging around the Aqsa Mosque, the building of a synagogue, the establishment and expansion of settlements and the shutting down of Palestinian institutions.", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Ratify the CRPD, the ICPPED and the Optional Protocol to CAT", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Sign the International Convention for the Protection of All Persons from Enforced Disappearance.", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Ratify the Optional Protocols to ICCPR, CEDAW and CAT", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Complete its strict approach to female genital mutilations with awareness-raising, prevention and education of the concerned communities", - "values": [ - "4 - General action" - ] - }, - { - "text": "Enhance social protection to ensure the delivery of food assistance and address malnutrition", - "values": [ - "4 - General action" - ] - }, - { - "text": "Inform UNESCO on the actions taken to prevent the impunity of the perpetrators of the killings of journalists, and notify UNESCO of the status of the judicial inquiries conducted", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Study the possibility of becoming party to the following international instruments: Optional Protocol to the International Covenant on Economic, Social and Cultural Rights the International Convention for the Protection of All Persons from Enforced Disappearance the International Convention on the Protection of the Rights of All Migrant Workers and Members of Their Families, Optional Protocol to the Convention against Torture and other Cruel, Inhuman or Degrading Treatment or Punishment", - "values": [ - "3 - Considering action" - ] - }, - { - "text": "Revise its legislation on the prevention and punishment of rape, with particular attention to marital rape ", - "values": [ - "3 - Considering action" - ] - }, - { - "text": "Take action at all levels to address the interlinked root causes of preventable mortality and morbidity of children under 5 and consider applying the technical guidance on the application of a human rights-based approach to the implementation of policies and programmes to reduce and eliminate preventable mortality and morbidity of children under 5 years of age (A/HRC/27/31)", - "values": [ - "4 - General action" - ] - }, - { - "text": "Increase measures to strengthen women's rights and combat stereotypes that can interfere with the enjoyment of women's fundamental rights ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Pursue efforts to strengthen and to protect the rights of the child, and to integrate education of the rights of the child into the school curriculum", - "values": [ - "4 - General action" - ] - }, - { - "text": "Sign and ratify the newly adopted Optional Protocol to the International Covenant on Economic, Social and Cultural Rights, allowing individual complaints of alleged violations of these rights to be heard by the Committee on Economic, Social and Cultural Rights ", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Appoint a new Ombudsman without further delay, after the mandate of the present incumbent expired in 2008, while ensuring that the institution complies fully with the Paris Principles", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Further develop initiatives aimed at fighting judicial corruption, including through the implementation of adequate education of judges ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Strengthen its cooperation with the human rights mechanisms, in particular with the special procedures", - "values": [ - "4 - General action" - ] - }, - { - "text": "Implement the recommendations made by the European Committee against torture and other inhuman and degrading treatment or punishment at its visit in the country ", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Continue to promote and protect the rights of women and children", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Address all obstacles that prevent women from reporting acts of violence to the police.", - "values": [ - "4 - General action" - ] - }, - { - "text": "Step up the process of creating the Authority for Gender Equality and Action against All Forms of Discrimination", - "values": [ - "4 - General action" - ] - }, - { - "text": "Reform existing laws that can be used to discriminate against lesbian, gay, bisexual, transgender and intersex persons, including article 534 of the Lebanese Penal Code criminalising "sexual acts against nature"", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Ensure women's participation in public, constitutional, and transitional justice processes", - "values": [ - "4 - General action" - ] - }, - { - "text": "Protect and guarantee respect for freedom of information and expression, particularly for journalists, bloggers and human rights defenders, and undertake a review of legislation governing the press to ensure its compliance with international standards ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Continue strengthening the national human rights institutions ", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Continue to implement the measures outlined in its 2014 action plan against labour market discrimination", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Seek appropriate technical assistance, from the international community or development partners, regarding international reporting obligations, including overdue ones, and capacity building for training of local staff and for the implementation of international commitments within domestic legislation as highlighted in paragraph 113 of the national report ", - "values": [ - "1 - Minimal action" - ] - }, - { - "text": "Complete reforms of the judiciary", - "values": [ - "4 - General action" - ] - }, - { - "text": "Treat those in custody in accordance with international human rights principles, and bring to justice perpetrators of attacks on journalists ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Establish mechanisms to monitor and evaluate the compliance with its human rights obligations ", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Ratify the Optional Protocol to Convention against Torture ", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Strengthen its current and planned measures to ensure respect for the rights of vulnerable groups ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Take the necessary measures to allow the Bhutanese refugees who wish to return to Bhutan to do so safely and in conditions that respect their rights ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Continue implementing national policies related to persons with disabilities", - "values": [ - "4 - General action" - ] - }, - { - "text": "Continue the significant reforms that have been already implemented to enable the National Human Rights Commission to be in conformity with the Paris Principles", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Continue to implement strategies to combat child sexual exploitation including trafficking of children, ensure accountability for the exploitation of children, and provide adequate resources for the shelter and rehabilitation of child victims", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Guarantee the right to freedom of association by the establishment of an open political space allowing all citizens to exercise this right without interference", - "values": [ - "4 - General action" - ] - }, - { - "text": "Conduct a study on the need for legislative and administrative adjustments for the domestic implementation of human rights", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Strengthen efforts to combat illiteracy", - "values": [ - "4 - General action" - ] - }, - { - "text": "Continue efforts at protecting all members of society from discrimination, harassment and violence, regardless of their sexual orientation", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Establish necessary mechanisms to eradicate extrajudicial, summary and arbitrary executions by bringing perpetrators to justice and intensifying efforts to eradicate the use of torture and inhuman and degrading treatment", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Fully and effectively eradicate practices of slavery and ensure that all victims of crimes of slavery receive justice, truth and reparation", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Implement strict measures, including in the area of legislation, to combat hate speech and other manifestations of racism and xenophobia, including on the internet, in line with the obligations under articles 19 and 20 of ICCPR ", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Adopt effective measures to prevent gender-based violence and provide protection and assistance to victims, harmonize domestic legislation with international instruments on human trafficking", - "values": [ - "4 - General action" - ] - }, - { - "text": "Duly cooperate with the special procedures of the Human Rights Council and issue a standing invitation to all special procedures ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Back up the commitment to establishing a national human rights institution by asking for the necessary technical assistance and support from the international community.", - "values": [ - "4 - General action" - ] - }, - { - "text": "Pay more attention to measures to promote interreligious dialogue and prevent all forms of discrimination as well as to ensure that citizens can live in safety", - "values": [ - "4 - General action" - ] - }, - { - "text": "Strengthen its efforts to modify or repeal existing laws and regulations that discriminate against women and girls ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Urgently move to ratify the Convention on the Rights of Persons with Disabilities, the Convention on the Rights of the Child and the Convention on the Elimination of All forms of Discrimination against Women", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Amend the Foreign Contribution (Regulation) Act to ensure the right to freedom of association, which includes the ability of civil society organizations to access foreign funding, and protect human rights defenders effectively against harassment and intimidation", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Accede to the International Convention on the Protection of the Rights of All Migrants Workers and Members of Their Families.", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Preparation and adoption of the National Action Plan for the Promotion and Protection of Human Rights by 2010", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Continue with the efforts of providing equal access to education by all national races in the country", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Strengthen its efforts to ensure that effective protection measures are promptly in place in order to prevent, combat and sanction acts of violence against women and children, notably domestic violence and sexual violence ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Focus on nationwide enforcement of its existing anti-discrimination law, plan adequately for nationwide implementation, especially as it relates to discrimination against indigenous persons ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Take concrete measures to address the wage-gap based on gender inequality in order to ensure that women and men receive equal pay for work of equal value ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Strengthen and accelerate mechanisms aiming at eradicating the harmful practice of female genital mutilation", - "values": [ - "4 - General action" - ] - }, - { - "text": "Continue partnerships with Member States and United Nations bodies as it deems necessary in furthering its efforts to ensure the independence of the judiciary", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Remove jurisdiction over torture cases involving police and prison abuse from the Police Court to civil courts", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Intensify efforts to combat discrimination on all grounds, including age, religion and sexual orientation", - "values": [ - "4 - General action" - ] - }, - { - "text": "Consider extending a standing invitation to the special procedures mechanism", - "values": [ - "3 - Considering action" - ] - }, - { - "text": "Reinforce efforts addressing high level of adult illiteracy and low rate of girl's enrolment in secondary and higher levels of education ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Further intensify the implementation of the coordinated initiative to end early, forced and child marriage", - "values": [ - "4 - General action" - ] - }, - { - "text": "Introduce a moratorium on executions as an intermediate step towards the abolition of the death penalty, reforming the Criminal Code", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Accelerate the progress to ratify the International Convention for the Protection of All Persons from Enforced Disappearance", - "values": [ - "4 - General action" - ] - }, - { - "text": "[Give full and equal rights to women] In all areas", - "values": [ - "4 - General action" - ] - }, - { - "text": "Regarding the use of excessive force by the police, implement an independent complaint mechanism, which will investigate any allegation concerning violence, acts of torture and other mistreatments by the police ", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Implement effective measures to prevent intimidation of voters in future elections.", - "values": [ - "4 - General action" - ] - }, - { - "text": "Repeal 14.74 of the Penal Code and take all necessary legislative and other measures to eliminate discrimination and violence on the basis of sexual orientation or gender identity", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Maintain, during the implementation phase of the recommendations made during the meeting of this Working Group, the inclusive approach adopted during the preparatory phase of the national report", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Undertake effective legal and administrative measures to ensure greater security of tenure for Roma, especially for those living in informal setting ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Consider requesting assistance from the international community to facilitate the implementation of its obligations in the protection and promotion of human rights ", - "values": [ - "3 - Considering action" - ] - }, - { - "text": "Take steps to develop new legislation and policies for law enforcement officials to guarantee accountability of security forces and respect for human rights ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Keep on encouraging the third basic plan for gender equality and implementing it continuously", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Redouble efforts to fight against ill-treatment of children, particularly by the investigation, trial and punishment of perpetrators", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Fully incorporate its international human rights obligations in domestic law through the adoption of a comprehensive justiciable law on human rights", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Strengthen the legislation suppressing advocating crimes against humanity and ensure the training of judges on its application, as well as the issues of civic education in public schools", - "values": [ - "4 - General action" - ] - }, - { - "text": "Further intensify its efforts to promote gender equality and to combat gender-based violence, including the rapes of minors and the most frequently reported cases of sexual and gender-based violence", - "values": [ - "4 - General action" - ] - }, - { - "text": "Continue to promote the right to education, including ensuring equal access to education for vulnerable groups", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Set the universal minimum age for marriage to 18 years, in line with the Civil Marriage Law", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Ensure the principles of equality and non-discrimination by including the principle in the Basic Law and legislation", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Foster equal and unconditional access to health care and education for all inhabitants of the country", - "values": [ - "4 - General action" - ] - }, - { - "text": "Positively consider ratifying the Convention on the Rights of Persons with Disabilities to fully ensure the rights of persons with disabilities to education, employment and their participation in political and public life", - "values": [ - "3 - Considering action" - ] - }, - { - "text": "Sign and ratify the Palermo Protocol ", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Include, systematically and continuously, a gender-perspective into the follow-up process to the Universal Periodic Review.", - "values": [ - "4 - General action" - ] - }, - { - "text": "Adhere and adapt its national legislation to the Arms Trade Treaty and sign the Treaty on the Prohibition of Nuclear Weapons", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Continue working towards implementing the 3Ends programme to combat violence against women", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "To continue to develop a gender-responsive approach to issues on women and children, including in the judicial system and on violence against women and children", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Raise the minimum age of criminal responsibility to 18 years and abolish child marriage by raising the age of marriage to 18", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Enhance and enshrine in law services aimed at protecting women and provide women with adequate information on how to access such support and medical care, including permitted abortions", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Intensify ongoing efforts in the fight against racism, particularly against racial violence ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Share the best practices in the implementation of the National Plan on Human Rights, and in the preparation of the UPR", - "values": [ - "1 - Minimal action" - ] - }, - { - "text": "Address concerns regarding discrimination against minorities, including Roma people and develop a comprehensive strategy to combat hate speech, including measures to effectively investigate and prosecute such offences ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Request technical assistance with regard to the human rights of persons with disabilities so as to ensure that it has the resources and capacity necessary to make their rights effective ", - "values": [ - "1 - Minimal action" - ] - }, - { - "text": "Abolish as soon as possible the death penalty in the 35 Federal States where this brutal practice is authorized ", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Ensure that no one is executed for a crime that he/she would have committed when he/she was under the age of 18 years, and commute death sentences already pronounced against minors to appropriate alternative sentences ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Strengthen measures taken to combat trafficking in persons, in particular children and women ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Address the problems of maternal mortality and child malnutrition in remote areas of the country ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Continue its active cooperation with the United Nations mechanisms and submit its periodic reports to treaty bodies, as appropriate ", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Develop a comprehensive strategy to prevent sexual exploitation of children and their cruel treatment and increase criminal liability for these crimes", - "values": [ - "4 - General action" - ] - }, - { - "text": "Take concrete measures to eliminate all discrimination against women, protect women from being victimized by domestic violence, and promote the participation of women in all aspects of life, including politics, administration and socio-economic settings", - "values": [ - "4 - General action" - ] - }, - { - "text": "Continue to devote great attention to the situation of the most vulnerable groups ", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Use alternatives to detaining children, and enact regulations to ensure greater protection of children's rights particularly such as the use of restraints and strip searches", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Carry out prompt, credible and impartial investigations of all alleged extrajudicial killings and other excessive use of force by law enforcement officials resulting in death and bring all perpetrators to justice in compliance with international standards for fair trials ", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Prosecute the perpetrators of forced displacement independently of other possible crimes and human rights violations, instead of considering it an accessory fact or a simple consequence of armed conflict.", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Adopt measures to secure the independent and effective investigation of allegations of torture by the police, in compliance with the Manual on the Effective Investigation and Documentation of Torture and Other Cruel, Inhuman or Degrading Treatment or Punishment (the Istanbul Protocol)", - "values": [ - "4 - General action" - ] - }, - { - "text": "Rapidly create a national human rights institution in conformity with Paris Principles ", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Ensure an independent judiciary in order to guarantee the right to a fair trial", - "values": [ - "4 - General action" - ] - }, - { - "text": "Ensure that the country's laws are in compliance with international human rights standards", - "values": [ - "4 - General action" - ] - }, - { - "text": "Ensure that the de facto moratorium declared by the President of Mongolia in January 2010 is incorporated into legislation with a view to completely abolishing the death penalty ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Ensure the rights of victims and families to justice and an effective remedy in law and ensure that the Truth and Reconciliation Commission be granted sufficient powers to complete its job effectively", - "values": [ - "4 - General action" - ] - }, - { - "text": "Provide medical care for displaced persons", - "values": [ - "4 - General action" - ] - }, - { - "text": "Formalize its present de facto moratorium on executions with a view to legislating to abolish the death penalty soon ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Take more resolute measures in combating racial discrimination, xenophobia and prejudices against members of religious and ethnic minorities, including by actively promoting inter-cultural, inter-ethnic and inter-faith understanding and tolerance", - "values": [ - "4 - General action" - ] - }, - { - "text": "Sustain efforts to eradicate domestic violence and gender-based violence", - "values": [ - "4 - General action" - ] - }, - { - "text": "Investigate all cases of domestic violence, in collaboration with the civil society engaged in this field and todevelop a comprehensive national strategy to facilitate equal access of girls and women to all levels and fields of education", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Redouble efforts to stem the development of racism and xenophobia", - "values": [ - "4 - General action" - ] - }, - { - "text": "Take all necessary actions to comply with its obligations as set out in the Second Optional Protocol to the International Covenant on Civil and Political Rights", - "values": [ - "4 - General action" - ] - }, - { - "text": "Enshrine equality before the law for all persons within the Jordanian jurisdiction, including the amendment of the Personal Status Act to address discrimination against women in relation to inheritance, the right to work, divorce and guardianship", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Continue efforts to harmonize nation legislation with international conventions to which Benin is a party", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Face up to and reflect on history, sincerely apologize on the issue of \u201ccomfort women\u201c, make compensations to the victims, and ensure the right of the public to information in this regard", - "values": [ - "4 - General action" - ] - }, - { - "text": "Adhere to the International Convention on the Protection of the Rights of All Migrant Workers and Members of Their Families", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Take all necessary measures to modify or eliminate cultural practices and stereotypes that discriminate against women including awareness-raising.", - "values": [ - "4 - General action" - ] - }, - { - "text": "Effectively address poverty and unemployment, in cooperation with international community", - "values": [ - "4 - General action" - ] - }, - { - "text": "Consolidate the rule of law and social cohesion as preconditions to promote and protect human rights ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Incorporate the social protection scheme, the "Universal Child Allowance" into law and extend it to cover children of marginalized groups including migrant workers and children of parents deprived of their liberty", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Continue efforts in the fight against discrimination in all areas, paying special attention to vulnerable groups", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Fully guarantee the independence of the judiciary, in particular by taking concrete measures to ensure that judges can exercise their profession in full impartiality ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Continue to consider ratification of ICRMW", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Strengthen participation by persons with disabilities in social life", - "values": [ - "4 - General action" - ] - }, - { - "text": "Continue to implement the United Nations Convention against Corruption to prevent and punish corruption.", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Ensure the implementation of comprehensive sexuality education for women and girls, including information on sexual and reproductive health and rights", - "values": [ - "3 - Considering action" - ] - }, - { - "text": "Develop and operationalize a comprehensive strategy on preventing maternal, neonatal and child mortality", - "values": [ - "4 - General action" - ] - }, - { - "text": "Strengthen the social policies aimed at integrating minorities into the labour market", - "values": [ - "4 - General action" - ] - }, - { - "text": "Recognize the equality of women and, if it is needed, reinforce the prohibition of female genital mutilation ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Strengthen measures to ensure registration of all Roma in Serbia.", - "values": [ - "4 - General action" - ] - }, - { - "text": "Grant the Health Department with the human and material resources to enable it to offer adequate services to persons with disabilities", - "values": [ - "4 - General action" - ] - }, - { - "text": "As a mechanism to avoid the rise of intolerance, discrimination or xenophobia, adopt effective measures to fight and punish every form of intolerance, discrimination, xenophobia, and racism against persons of certain descent, specially refugees, asylum-seekers, and migrants, regardless of their status ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Engage and involve the national parliament in the follow-up process and implementation of the accepted recommendations in the second UPR report of Vanuatu, and as an example, by hosting a briefing on the role of Parliament on the UPR process and implementation ", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Considering the high number of rape cases, take all necessary measures with a view to strengthening the foundation of family and avoid resorting to measures and legislation which endanger the very foundation of the family in society ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Decriminalize abortion when the pregnancy endangers the mother's life or health, and when it is the result of rape", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Continue to develop measures to ensure non-discrimination against women and promote gender equality", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Intensify efforts towards the total eradication of female genital mutilation", - "values": [ - "4 - General action" - ] - }, - { - "text": "Continue to enhance the rule of law by strengthening its law enforcement agencies", - "values": [ - "4 - General action" - ] - }, - { - "text": "Take effective measures to protect all children against torture, cruel, inhuman and degrading treatment as well as investigating and punishing those responsible ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Conduct active reforms in the fight against prison overcrowding", - "values": [ - "4 - General action" - ] - }, - { - "text": "Fully cooperate with the Special Rapporteur on the situation of human rights in the Palestinian territories occupied since 1967 ", - "values": [ - "4 - General action" - ] - }, - { - "text": "The RMI is committed to developing socio-economic strategies and plans.", - "values": [ - "4 - General action" - ] - }, - { - "text": "Ensure the promotion and protection of reproductive rights of women in agreement with international standards", - "values": [ - "4 - General action" - ] - }, - { - "text": "Remove all policies targeting Rohingyas in Rakhine State, especially those that violate fundamental human rights, particularly those restricting freedom of travel, marriage, education, freedom of worship, two child policy applied only to them, denial of basic healthcare, and illegal construction of Buddhist settlements on their land, arbitrary taxes and exploitation", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Strengthen mechanisms guaranteeing judicial independence, including fully empowering the Government anti-corruption unit to act against corruption within the judiciary ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Continue the implementation of measures aimed at promoting the enjoyment of human rights by youth", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Eliminate, juvenile executions and executions of persons for crimes that they committed when they were under the age of 18", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Expand its human rights education campaign, especially that on the rights of women, children, the elderly and minorities, to law enforcement officers", - "values": [ - "4 - General action" - ] - }, - { - "text": "Step up its efforts for the rehabilitation of former child soldiers - in particular through enhanced cooperation with the international community - and adopt measures necessary for their rehabilitation in an appropriate environment.", - "values": [ - "4 - General action" - ] - }, - { - "text": "Take further steps to strengthen the rule of law and democratic governance", - "values": [ - "4 - General action" - ] - }, - { - "text": "Reform the Comprehensive Criminal Code in relation to the legal extension of abortion and to decriminalize abortion in cases of rape, incest and severe fetal impairment", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Continue efforts to further enhance the separation of powers ", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Enable and support the Afghan Independent Human Rights Commission to continue its work as an effective and independent institution, including a transparent selection process of Commissioners, and by adequately funding the Commission on a permanent basis ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Take steps to ensure that, both at federal and provincial level, there is no impunity for the crime of torture.", - "values": [ - "4 - General action" - ] - }, - { - "text": "Strictly enforce relevant laws, with equal emphasis on care and rehabilitation, and prosecute those responsible in order to provide meaningful results and ensure the protection of women and children, especially in the eastern part of the country ", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Continue its policies and programmes to improve the efficiency and quality of basic social services such as health and education for its citizens", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Eradicate the continued impunity for perpetrators of crimes against freedom of expression ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Intensify measures to address the problems of maternal mortality and unsafe abortions, reviewing punitive provisions regarding the latter ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Examine the possibility of drafting and adopting a special law to combat trafficking in persons", - "values": [ - "3 - Considering action" - ] - }, - { - "text": "Address how victims of sexual violence by illegal armed groups who are not considered parties to the conflict can access appropriate reparations ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Strengthen measures to ensure the human rights of migrants and their families", - "values": [ - "4 - General action" - ] - }, - { - "text": "Review its national legislation in order to ensure its full alignment with the obligations under the Rome Statute, including adoption of the provisions enabling the cooperation with the Court ", - "values": [ - "3 - Considering action" - ] - }, - { - "text": "Cooperate with the International Criminal Court ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Strengthen its cooperation with treaty bodies", - "values": [ - "4 - General action" - ] - }, - { - "text": "Ratify the International Convention for the Protection of All Persons from Enforced Disappearance, as previously recommended", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Complete as soon as possible a general framework of measures to ensure equality of chances for people with disabilities ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Prioritize national consultations to establish transitional justice mechanisms to ensure that reconciliation and justice address allegations of the most serious crimes, including war crimes, crimes against humanity and genocide.", - "values": [ - "4 - General action" - ] - }, - { - "text": "To the Faroe Islands: Establish a National Human Rights Institution covering the Faroe Islands according to recommendations made by the United Nations General Assembly [1994] and the Committee on Economic, Social and Cultural Rights [2013]", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Recommended reinstituting the Office of the Government Plenipotentiary for the Equality of Men and Women or a similar governmental structure to serve as an effective mechanism at the highest possible political level for the promotion of gender equality and to coordinate the integration of gender perspective across all sectors.", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Take further legal measures to increase the visibility and transparency of asylum applications, ensuring an open process for claimants and consistency with human rights principles ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Strengthen efforts towards the protection of women and children's rights, and ensure thorough investigations of alleged violence against women, including sexual violence", - "values": [ - "4 - General action" - ] - }, - { - "text": "Intensify its direct engagement with the OHCHR in order to ensure that the country receives coherent, appropriate, tailor-made assistance from the United Nations as a whole", - "values": [ - "4 - General action" - ] - }, - { - "text": "Announce a moratorium on the application of the death penalty with a view to its abolition in law", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Cease the practice of refoulement of refugees and asylum-seekers, which puts at risk their lives and their families' lives ", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Accede to the international human rights covenants and seek the support of OHCHR for the process of implementation of these treaties at the national level ", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Continue working with national and state governments and women's groups to remove the reservations to the Convention on the Elimination of All Forms of Discrimination against Women ", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Ratify the International Covenant on Civil and Political Rights and its two optional protocols", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Reduce restrictions on peaceful assembly and association, allow individuals to participate freely in independent political societies, consistent with the Constitution and national action charter, and cease unwarranted legal action against Wefaq and Wa\u2019ad for engaging in protected activities", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Adopt a law that prohibits discrimination on the basis of gender.", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Remove the agriculture exemption in the Fair Labour Standards Act which would raise the age for harvesting and hazardous work for hired children taking care to distinguish between farm owner and farm worker children", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Continue towards the implementation of the OP-CAT, the First Optional Protocol to the ICCPR and the Optional Protocol to CEDAW", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Consider issuing a standing invitation ", - "values": [ - "3 - Considering action" - ] - }, - { - "text": "Take measures to adequately protect human rights defenders, to ensure proper investigation into alleged attacks and to prosecute those found responsible", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Ensure the promotion of economic, social and cultural rights, including better access to education for female children and persons with disabilities, as well as combating illiteracy ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Step up capacity-building efforts aimed at achieving the implementation of its human rights obligations", - "values": [ - "4 - General action" - ] - }, - { - "text": "Take effective measures to overcome deep-rooted stereotypes on the role of women and girls ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Apply, without exception, the time limit for detention of persons suspected of terrorism stipulated in the Protection of Freedoms Bill, including cases of administrative detention in emergency situations ", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Continue national efforts to ensure harmonization of national legislation with international human rights law", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Adopt measures to shed light on a number of existing enforced disappearances.", - "values": [ - "4 - General action" - ] - }, - { - "text": "Take steps to improve prison conditions and reduce overcrowding, as well as to reduce the period of pre-trial detention", - "values": [ - "4 - General action" - ] - }, - { - "text": "Continue to strengthen measures adopted to combat the scourge of gender-based violence, improving their effectiveness and increasing the protection of victims ", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Bahrain is determined to strengthen its capacities in order to ensure: Effective implementation of its obligations under the international human rights treaties which it has ratified and signed.", - "values": [ - "4 - General action" - ] - }, - { - "text": "Provide effective institutional mechanisms that duly protect girls against sexual abuses and effectively prevent early and forced marriage", - "values": [ - "4 - General action" - ] - }, - { - "text": "Seek technical assistance in order to further advance the dissemination of human rights in the country", - "values": [ - "1 - Minimal action" - ] - }, - { - "text": "Carry on with the implementation of concrete measures to significantly reduce prison overcrowding in Costa Rica, and address the nonseparation of minor and adult detainees ", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Establish a strategy to improve the existing mechanisms for reporting cases of sexual and gender-based violence against women and girls and to ensure access to justice for victims", - "values": [ - "4 - General action" - ] - }, - { - "text": "Step up efforts to fight female genital mutilation", - "values": [ - "4 - General action" - ] - }, - { - "text": "Continue actions aimed at the return to the Chagos Archipelago of the Chagossians displaced from the island of Diego Garcia and the other islands of the Archipelago, and to consider including in these actions processes for the reparation of victims", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Continue its positive efforts in addressing the issue of violence against women, including ensuring the effective implementation of recommendations made by its national platform to end gender-based violence which was introduced in October 2011", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Step up the review of the 2007 law to combat slavery in order to ensure that exhaustive, impartial, and effective investigations can be carried out of all alleged slavery crimes", - "values": [ - "4 - General action" - ] - }, - { - "text": "Take the necessary legal measures to ensure the right to family reunification of children aged over 15 years", - "values": [ - "4 - General action" - ] - }, - { - "text": "Pursue actions to fight all forms of discrimination", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Intensify efforts to eradicate differences between employees with permanent contracts and those who do not have permanent employment", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Continue to work to protect the rights of the child ", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Ensure the freedom of persons to choose a religion or belief including the right to change one's current religion or belief.", - "values": [ - "4 - General action" - ] - }, - { - "text": "Guarantee access to legal abortions in all jurisdictions throughout the country, supported by publicity campaigns on the right to legally interrupt pregnancy in cases provided for by law, as well as training for health-care workers", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Ensure the independence and integrity of the authority and division for witness and victim protection and allocate sufficient funds beginning with the 2018 budget", - "values": [ - "4 - General action" - ] - }, - { - "text": "Take the necessary steps to curb racist propaganda, including on the internet", - "values": [ - "4 - General action" - ] - }, - { - "text": "Review legislation on abortion and ensure that women have access to legal abortion health services, especially in cases where their life or health is at risk", - "values": [ - "3 - Considering action" - ] - }, - { - "text": "Consider ratifying or acceding to the International Convention on the Protection of the Rights of All Migrant Workers and Members of Their Families", - "values": [ - "3 - Considering action" - ] - }, - { - "text": "Improve access to reproductive health services for pregnant women ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Extend an early invitation to the UN Special Rapporteur on Torture", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Intensify its awareness-raising campaigns on the situation of disabled children, and support the efforts of civil society to improve rehabilitation and reintegration of children with disabilities and effectively implement the existing legislation on birth registration", - "values": [ - "4 - General action" - ] - }, - { - "text": "Establish a national human rights mechanism pursuant to the Paris Principles, by drawing up a cooperation agreement between the different Belgian entities, without affecting the operation and independence of existing institutions that have a human rights mandate", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Ensure the application, in line with international human rights provisions, of articles 3 of the new Constitution that guarantees freedom of worship for all ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Prohibit corporal punishment of children at home and in schools", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Establish a National Mechanism, as requested in the report of the Lessons Learnt and Reconciliation Commission, in order to shed light on the fate of all disappeared persons and detained persons and to cooperate with the ICRC and the Working Group on Enforced or Involuntary Disappearance", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Carry out an inclusive evidence-based evaluation of the Danish antiterrorism legislation ", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Establish additional standards to guarantee the swift and appropriate appointment of guardians to unaccompanied minors", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Enhance its capacity to promote human rights in the areas mentioned in paragraph 108 of the national report, with the appropriate technical assistance of OHCHR.", - "values": [ - "4 - General action" - ] - }, - { - "text": "Ratify the Convention [Elimination of All Forms of Racial Discrimination] at the earliest opportunity", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Reinforce the broad range of safeguards in favour of the most vulnerable groups such as persons with disabilities and the homeless to allow them the full enjoyment of their rights and dignity", - "values": [ - "4 - General action" - ] - }, - { - "text": "Intensify efforts to prosecute all alleged crimes of torture and illegal detention perpetrated by armed and security forces", - "values": [ - "4 - General action" - ] - }, - { - "text": "Adopt legislation explicitly prohibiting corporal punishment of children, as previously recommended", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Adopt the necessary legislative measures in the Criminal Code to define domestic violence and criminalize marital rape as a specific crime ", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Ratify the Optional Protocol to the Convention against Torture and Other Cruel, Inhuman or Degrading Treatment or Punishment and establish a national preventive mechanism", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Consider ratifying the Convention on the Elimination of All Forms of Discrimination against Women and to ensure women equal inheritance rights", - "values": [ - "3 - Considering action" - ] - }, - { - "text": "Improve its public health system, especially to upgrade the existing facilities in both central and local hospitals nationwide, as well as to put in place measures to reduce infant mortality, malnutrition, and epidemics, especially HIV/AIDS", - "values": [ - "4 - General action" - ] - }, - { - "text": "Ensure that it grants the right to freedom of association and the possibility for associations to carry out their work without undue restrictions", - "values": [ - "4 - General action" - ] - }, - { - "text": "Continue to take measures to strengthen the justice system", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Attach more importance to the protection of rights of the child through national plans for economic and social development", - "values": [ - "4 - General action" - ] - }, - { - "text": "Intensify efforts to reduce wage inequality on the basis of gender", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Include in the Anti-discrimination Law a specific prohibition on discrimination on the basis of sexual orientation", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Broaden the scope of its international human rights obligations by acceding to the ICCPR, ICESCR, ICERD and CAT", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Adopt the necessary measures to ensure the release of the people deprived of their liberty for motives of conscience ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Consider ratifying, as soon as possible, fundamental international human rights instruments such as the Convention against Torture and Other Cruel, Inhuman or Degrading Treatment or Punishment and the International Covenant on Economic, Social and Cultural Rights ", - "values": [ - "3 - Considering action" - ] - }, - { - "text": "Strengthen efforts in the areas of civil and political freedoms, including freedom of expression and the press and freedom of religion.", - "values": [ - "4 - General action" - ] - }, - { - "text": "Make further efforts in increasing participation of persons with disabilities at all levels of political and public life, especially the electoral process", - "values": [ - "4 - General action" - ] - }, - { - "text": "Continue the implementation of all obligations of the CRC, in particular to combat violence against children and forced labour", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Set the minimum legal age for marriage at 18 years and explicitly prohibit forced early marriage ", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Continue working to ensure the independence and transparency of its judicial system as well as to improve the conditions of its penitentiaries", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Redouble efforts to address and abolish the death penalty in the context of the review process of the Constitution", - "values": [ - "4 - General action" - ] - }, - { - "text": "Enshrine in legislation the right of access of detainees to a lawyer immediately after detention and not after 48 hours. ", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Incorporate anti-discrimination provisions in its Constitution, especially relating to race, ethnicity or religion, to ensure the necessary protection for persons who would be mostly affected by those discriminatory practices ", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Remove restrictions on freedom of expression notably concerning the connection to the Internet ", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Create a national human rights institution fully in conformity with the Paris Principles", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Implement the UN Rules for the Treatment of Women Prisoners and Non-Custodial Measures for Women Offenders, otherwise known as the "Bangkok Rules" and seek appropriate assistance in its implementation from relevant UN agencies in order to further improve treatment of female offenders ", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Abolish the criminalization of single mothers, allow full legal recognition of children born outside marriage (including with regard to their name and right of inheritance) and introduce DNA testing to ascertain paternity", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Take additional measures aimed at eliminating all forms of discrimination against women and at strengthening their situation and participation in all State institutions ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Ratify CRC, including its two Optional Protocols ", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Strengthen the human rights education of the law-enforcement agencies, public servants, especially on the rights of women and children", - "values": [ - "4 - General action" - ] - }, - { - "text": "Ratify and implement ILO Convention 169", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Increase its efforts and adopt a new national plan of action for children, ensuring specialized training for teachers and persons in the field of education of children with disabilities", - "values": [ - "4 - General action" - ] - }, - { - "text": "Continue efforts for the protection of the rights of people affected by HIV-AIDS, including through the approval of the bill prepared by the Government for the protection of persons living with HIV-AIDS, which is now under consideration by the Council of Ministers", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Put an end to all practices that threaten the right to freedom of expression, including threats against journalists and media outlets ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Further reinforce its legislation to combat internal and cross-border trafficking in persons, by revising the Criminal Code to adequately sanction the perpetrators of trafficking and exploitation of the victims of trafficking ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Release immediately all political prisoners and administrative detainees", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Take the necessary measures to fight violence against women and domestic violence", - "values": [ - "4 - General action" - ] - }, - { - "text": "Put in place an effective mechanism for addressing the reported multiple forms of discrimination against indigenous women in Nepal", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Strengthen strategies to guarantee the protection of the rights of migrants and refugees in order to ensure their access to justice, education and health, regardless of their status", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Continue putting forward effective measures in order to eliminate discrimination against women ", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Continue with its efforts aiming to promote and protect economic and social rights ", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Continue to spearhead progress toward the promotion of gender equality and development for women, in particular in areas of education and employment", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Consider ratifying all outstanding human rights instruments of the United Nations, and to improve its cooperation with United Nations treaty bodies by agreeing to submit overdue reports in a timely manner", - "values": [ - "3 - Considering action" - ] - }, - { - "text": "Pursue aggressively its efforts to achieve its goals stated in the Vision 2020, through effective international cooperation and technical assistance ", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Take action to tackle the backlog of prisoners who have been detained without trial or beyond the end of their sentence", - "values": [ - "4 - General action" - ] - }, - { - "text": "Deploy further efforts in order to eradicate child labour, so as to better ensure full enjoyment of the rights of every child ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Intensify efforts made so far to identify and eradicate racism ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Take necessary steps to ensure that all children exposed to sexual exploitation receive protection and assistance", - "values": [ - "4 - General action" - ] - }, - { - "text": "Ensure that adequate measures provided for in the law on lustration comply with Polish obligations under fundamental international human rights instruments", - "values": [ - "4 - General action" - ] - }, - { - "text": "Prohibit or limit detention for reasons of migratory status and establish a specialized institution for migration ", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Revise national legislations with a view to ensuring it's conformity with the Constitution and with the international human rights obligations of Swaziland ", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Put in place legislation ensuring the equality of men and women and prohibiting discrimination against women ", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Improve the allocation of human and financial resources to the Ombudsman Offices for Children and Adolescents and Prosecutors Offices to effectively combat and address violence against children and adolescents", - "values": [ - "4 - General action" - ] - }, - { - "text": "Amend the Constitution accordingly and in compliance with international human rights treaties and humanitarian laws", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Proceed with the ratification of the Convention for the Protection of All Persons from Enforced Disappearance, which was the object of a recommendation accepted by Slovenia during the first cycle", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Intensify efforts to strengthen the criminal justice system and reform the juvenile justice system", - "values": [ - "4 - General action" - ] - }, - { - "text": "In line with Human Rights Council resolution 9-12, consider elaborating a national human rights programme and plan of action to strengthen the capacity of the State to promote and protect human rights ", - "values": [ - "3 - Considering action" - ] - }, - { - "text": "Consider favorably ratification of the International Convention on the Protection of the Rights of All Migrant Workers and Members of Their Families ", - "values": [ - "3 - Considering action" - ] - }, - { - "text": "Expand the food possibilities of the population through an agricultural system of higher productivity and production ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Ratify the Convention relating to the Status of Refugees and its Protocol", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Implement withdrawal of reservations on ICERD", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Ratify the Convention on Preventing and Combating Violence against Women and Domestic Violence (the Istanbul Convention)", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Develop legislation and appropriate sentences for juvenile offenders ", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Strengthen the principle of legality with an emphasis in due process in conformity with international human rights norms ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Continue efforts to combat gender stereotyping and gender inequality across the board and work towards empowerment of women in all spheres of society, including addressing sexual harassment in the work place", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Create tools to effectively address domestic violence", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Supplement its legislation in matters of human rights protection and promotion by ratifying other international instruments, in particular the CPED and the OP-ICESCR ", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Guarantee that religious minorities can freely exercise their right to freedom of thought, conscience and religion in worship, as well as their observance, practice and teaching", - "values": [ - "4 - General action" - ] - }, - { - "text": "Continue its gender-sensitive campaigns to create a more nondiscriminatory environment", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Strengthen the legal framework to combat all forms of violence against women and ensure its concrete implementation", - "values": [ - "4 - General action" - ] - }, - { - "text": "Continue to harmonise its domestic laws with the international human rights conventions to which it is party, in line with democratic principles and fundamental freedoms and equality ", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Bring the laws on rape into compliance with international norms, particularly with regard to the legal definition of rape and the timeframe to file complaints", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Set up an anti-trafficking public campaign and take measures to protect victims and give them the necessary legal and psycho-social assistance and societal reintegration, and indicate the needs for technical assistance and capacity-building to the international community.", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Take further measures to ensure freedom of expression", - "values": [ - "4 - General action" - ] - }, - { - "text": "Take into account recommendations made by the Committee on the Elimination of Discrimination against Women when it raised the increase in the number of women victims of trafficking, as well the prevalence of acts of violence against women ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Continue its efforts in the area of the promotion of gender equality and of the health of the mother and the girl child.", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Cease application of life imprisonment without parole for juvenile offenders and to review all existing sentences to provide for a possibility of parole ", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Further intensify its efforts in the training of the State's authorities and the public in general regarding international human rights standards ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Ratify the Council of Europe Convention on the Protection of Children against Sexual Exploitation and Sexual Abuse ", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Continue paying attention to promoting and protecting the human rights of vulnerable groups, especially improving the situation of indigenous peoples.", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Make sure that there are no delays in submitting answers to the thematic questionnaires of the special procedures of the Human Rights Council", - "values": [ - "4 - General action" - ] - }, - { - "text": "Expand efforts to combat human trafficking and account for other forms of trafficking, such as labour exploitation and forced begging", - "values": [ - "4 - General action" - ] - }, - { - "text": "Take effective legal and practical measures to eliminate all forms of discrimination and violence against women and children, in particular women and children with disabilities, immigrant and refugee women and children, and women and children from ethnic and religious minorities, especially Muslims and Roma ", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "That the proposed draft law which would allow Lebanese women to pass on their nationality to their children and foreign spouses be adopted as soon as possible", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Establish a more formal system to provide protection for refugees and asylum-seekers ", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Strengthen measures taken to protect vulnerable groups", - "values": [ - "4 - General action" - ] - }, - { - "text": "Guarantee that the legal and institutional framework ensures that children in conflict with the law be dealt with in a manner that conforms to international standards ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Increase the measures to prevent and punish domestic violence, particularly against migrant women", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Repeal all discriminatory provisions in national law based on gender ", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Continue its cooperation with OHCHR ", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Take necessary measures to ensure respect for the right to freedom of association, including by repealing legislative and administrative restrictions on the activities of NGOs ", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Take additional measures to train its security force, as recommended in 2008, in order to guarantee respect for human rights ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Prohibit the use of torture and other cruel, inhuman or degrading treatment as punishment for detainees", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Promote national efforts aimed at enhancing judicial reform, so as to cater for expanding recourse to courts of law, partly as a result of the growth of the Gambian economy", - "values": [ - "4 - General action" - ] - }, - { - "text": "Ratify the ICRMW, as well as the International Convention for the Protection of All Persons from Enforced Disappearance.", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Abolish imprisonment and establish a non-military service for conscientious objectors", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Become a party to the third Optional Protocol to the Convention on the Rights of the Child ", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Ratify Additional Protocols I and II to the Geneva Conventions of 1949", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Persevere in its efforts to promote the rights of education.", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Strengthen measures to combat violence against women, and abuse and neglect of children ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Continue to protect, through legal and administrative acts, freedom of expression and freedom of the press, as well as access to information ", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Accede to the Optional Protocol to CAT, establish its national preventive mechanism accordingly", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Formalize its moratorium on the death penalty by abolishing it in law and ratify the Second Optional Protocol to ICCPR", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Guarantee the full independence of the judiciary in accordance with Basic Principles on the Independence of the Judiciary as laid down by the General Assembly in its resolution 40-146, and establish an independent monitoring mechanism of court proceeding in order to enhance the independence of the judiciary.", - "values": [ - "4 - General action" - ] - }, - { - "text": "Make progress in the use of alternative measures to the detention of migrants", - "values": [ - "4 - General action" - ] - }, - { - "text": "Amend the Penal Code to include a definition of torture in conformity with the Convention against Torture and conduct independent and prompt investigation of all claims of torture and ill-treatment", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Develop a birth registration system", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Further strengthen its measures to combat all forms of trafficking in women and children and protecting and rehabilitating its victims", - "values": [ - "4 - General action" - ] - }, - { - "text": "Provide the necessary protection for and preserve the dignity of asylum seekers, ensure their access to legal assistance, facilitate family reunification procedures for migrants, and provide them with social security", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Improve access to anti-retroviral treatment for vulnerable groups, including women.", - "values": [ - "4 - General action" - ] - }, - { - "text": "Increase efforts to promote human rights culture in the country", - "values": [ - "4 - General action" - ] - }, - { - "text": "Continue efforts to prevent violence against women and girls and to ensure them quality service for their sexual and reproductive health", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Transform the de facto moratorium on the death penalty into an official moratorium with a view to fully abolishing the death penalty", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Increase its efforts to prevent and combat violence against women and human trafficking and adopt a National Plan of Action for the advancement of the human rights of women ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Strengthen the capacity of judicial administrators.", - "values": [ - "4 - General action" - ] - }, - { - "text": "Increase efforts designed to reinforce mutual understanding between the migrant communities and Swiss society in general ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Call on Djibouti to request the international community for capacity-building and technical assistance in the area of human rights ", - "values": [ - "1 - Minimal action" - ] - }, - { - "text": "Implement an effective birth registration policy for the whole country in order to consolidate the rights of children ", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Review the legislation on defamation and slander so that these are not subject to criminal sanctions but only liable to a civil action ", - "values": [ - "3 - Considering action" - ] - }, - { - "text": "In the same line, Argentina pledges to recognize the competence of the Committee under the International Convention for the Protection of the Rights of All Migrant Workers and Members of Their Families.", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Continue with the efforts aimed at tackling discrimination and religious intolerance", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Give a positive response to the visit request of the Working Group on Arbitrary Detention", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Sign and ratify the Optional Protocol to the International Covenant on Civil and Political Rights ", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Reinstate and respect the moratorium on the death penalty with a view to preparing a referendum on its possible abolition in accordance with the stipulations of the national Constitution", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Increase the percentage of the national budget for health to 15 per cent as per the Abuja Declaration on Roll Back Malaria in Africa", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Investigate in a transparent manner all cases of human rights violations against protesters", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Adopt a law prohibiting all forms of discrimination against indigenous communities and guarantee access to comprehensive quality education for Guarani speakers", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Withdraw all reservations to the 1951 Convention relating to the Status of Refugees and its 1967 Protocol and accede to the 1961 Convention on the Reduction of Statelessness", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Support steps regarding the rights of persons with disabilities with administrative arrangements, in order to ensure that these rights are enjoyed by all persons with disabilities within the society, especially children with disabilities", - "values": [ - "4 - General action" - ] - }, - { - "text": "Provide the necessary assistance to evicted persons, especially members of vulnerable groups, including women, children and the elderly", - "values": [ - "4 - General action" - ] - }, - { - "text": "Adopt a strategy so that children of vulnerable groups are not excluded from the education system ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Take all appropriate measures to eliminate illiteracy throughout the country ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Better deploy resources, including manpower, to enhance the capacity of the Office of the Ombudsman ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Accelerate approval of the reforms of the Roma Community Act and strengthen coordination with all actors involved to address the strategies of the national programme of measures for Roma", - "values": [ - "4 - General action" - ] - }, - { - "text": "Protect children accused of witchcraft from ill-treatment and abuse, as previously recommended", - "values": [ - "4 - General action" - ] - }, - { - "text": "Continue promoting its successful cultural policies that have far-reaching social content, stimulate participation by the popular sectors of the population and extend culture to all as a mechanism to combat exclusion and poverty", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Strengthen the preventive measures aimed at combating the trafficking in persons", - "values": [ - "4 - General action" - ] - }, - { - "text": "Accede to ICCPR-OP2, aimed at abolishing the death penalty and take the necessary steps to remove the death penalty from its justice system ", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Take all necessary steps to ensure the recovery, rehabilitation and reintegration of child soldiers and address the underlying exclusion and marginality, which makes rural children particularly vulnerable to recruitment by armed groups", - "values": [ - "4 - General action" - ] - }, - { - "text": "Adopt comprehensive legislation to fight all forms of discrimination, in particular against women", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Undertake mental health awareness campaigns to educate communities", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Continue addressing the issues of sexual exploitation of women and girls", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Publish a detailed roadmap of planned human rights and political reforms", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Increase coordination between the police and the Office of the Attorney General in investigation of violence against human rights defenders and develop a national policy for the protection of human rights defenders.", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Continue to mobilize resources and the necessary technical support to further enhance its capacity to fulfil its human rights obligations", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Comply with its CEDAW obligations, and undertake further steps to empower women at all levels by creating more employment opportunities and increasing their rights in participation in decision-making ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Include a definition of torture in its Criminal Code incorporating all elements contained in article 1 of the Convention against Torture and Other Cruel, Inhuman or Degrading Treatment or Punishment", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Take measures to ensure the independence of the judiciary, in particular by prosecuting and punishing with severe sanctions those responsible for acts undermining the independence or impartiality of judicial proceedings ", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Continue to address remaining social inequalities and unequal access to opportunities and services by the poor and the marginalized ", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Develop programme for sharing of its experiences in addressing the right to development with African countries in the context of the Forum on China-Africa cooperation", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Strengthen measures to protect children who are victims of abuse, following, the recommendations of the Committee on the Rights of Children, UNIFEM and UNICEF, among others ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Issue a standing invitation to United Nations rapporteurs ", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Share with interested countries the Iranian experience with regard to promoting the participation of civil society", - "values": [ - "1 - Minimal action" - ] - }, - { - "text": "Cooperate fully with the United Nations mechanisms established to follow the situation of human rights in the occupied Arab territories, especially the Special Committee to investigate Israeli practices affecting the human rights of the Palestinian people and other Arabs of the territories occupied by Israel since 1967, and allow the Committee to visit the occupied Syrian Golan", - "values": [ - "4 - General action" - ] - }, - { - "text": "Accelerate the process to establish a human rights commission in accordance with the Paris Principles", - "values": [ - "4 - General action" - ] - }, - { - "text": "Strengthen the efforts to guarantee to all the population of Sierra Leone access to basic social services within the framework of the MDGs ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Consider the adoption of a legal framework to address violence against women ", - "values": [ - "3 - Considering action" - ] - }, - { - "text": "Ensure that its policies, legislation, regulations and enforcement measures effectively serve to prevent and address the heightened risk of business involvement in abuses in conflict situations, which includes situations of foreign occupation", - "values": [ - "4 - General action" - ] - }, - { - "text": "Use appropriate international experience to ensure human rights in the ecological crisis zone.", - "values": [ - "4 - General action" - ] - }, - { - "text": "Strengthen human rights education to ensure that the population is better informed ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Adopt further measures to promote working condition of migrant workers, especially women migrant workers and to improve their integration in the Korean society", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Strengthen educational and awareness-raising programmes for local communities in order to promote awareness of human rights issues among society at large, and stimulate the participation of civil society organizations in the promotion and protection of human rights", - "values": [ - "4 - General action" - ] - }, - { - "text": "Establish and set up a national human rights institution in conformity with the Paris Principles", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Consider new ways of addressing growing economic and social inequities arising out of rapid economic growth and share experiences-results of best practices in addressing poverty. ", - "values": [ - "3 - Considering action" - ] - }, - { - "text": "Continue its efforts in promoting gender equality including expanding the role of women in its national development ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Continue finding the appropriate solutions for the challenges mentioned in the national report and faced by the citizens in their full enjoyment of fundamental rights whether it is political, economic, social and cultural rights", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Ensure that all legislation and programmes in support of the Justice and Peace process comply with international standards.", - "values": [ - "4 - General action" - ] - }, - { - "text": "Give importance to guaranteeing that refugees who fall into the category of "war refugees" are given the right to family reunification", - "values": [ - "4 - General action" - ] - }, - { - "text": "Consider ratifying the Convention Against Torture and Other Cruel, Inhuman or Degrading Treatment or Punishment (CAT).", - "values": [ - "3 - Considering action" - ] - }, - { - "text": "Implement a zero-tolerance policy on gender-based violence", - "values": [ - "4 - General action" - ] - }, - { - "text": "Continue to use the information and social media to promote the culture of human rights and, in particular, the rights of the child ", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Complete current initiatives for the adoption of the National Plan against racism and discrimination, in consultation with organizations of persons of African descent and organizations of indigenous peoples ", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Consider issuing a standing invitation to Special Procedures mandate holders ", - "values": [ - "3 - Considering action" - ] - }, - { - "text": "Continue efforts to combat ill-treatment of children and design policies and programmes to address these practices \n\n", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Ensure that administrative detention complies with Israel's international commitments, and that it remains an exceptional measure and of a limited period, and that it is conducted in the respect of fundamental guarantees, in particular the rights of the defence of detainees and the right to a fair trial within a reasonable time", - "values": [ - "4 - General action" - ] - }, - { - "text": "Share positive experiences and best practices with other countries regarding racial and religious tolerance ", - "values": [ - "1 - Minimal action" - ] - }, - { - "text": "Strengthen national and local initiatives aimed at protecting and promoting the universal human rights of all migrants and members of their families ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Share with others its good practices in easing childcare burden which disproportionately affects women", - "values": [ - "1 - Minimal action" - ] - }, - { - "text": "Strengthen its efforts to achieve universal birth registration, including by establishing permanent and automated birth registration services in all pre-and post natal healthcare institutions. These services should be accessible to all people throughout the whole country, including in rural areas ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Continue raising the awareness of the population through human rights education programmes ", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Consider a moratorium on the application of capital sentences.", - "values": [ - "3 - Considering action" - ] - }, - { - "text": "Train the health care personnel to screen and document instances of domestic violence", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Make available statistics and other factual information on the use of the death penalty ", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Continue bolstering the investigative and prosecutorial resources in order to conduct prompt, transparent, credible and effective investigations of the killing of journalists since March 2010, and effectively prosecute those responsible for these crimes", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Continue to strengthen protective measures and legal rights for women, and give full citizenship rights to the children of Qatari mothers and non-Qatari fathers ", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Bring its legislation into line with the new Constitution to ensure the full exercise of freedom of expression, association and assembly", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Continue awareness-raising programmes about racial and ethnic diversity in schools, strengthening the monitoring of the implementation of anti-discriminatory policies, especially in remote areas ", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Take additional steps, including legislative steps, to eradicate discrimination against migrant workers, members of their families as well as representatives of religious and national minorities ", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Systematically continue the positive efforts undertaken regarding the rights of indigenous peoples", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Upgrade primary and secondary health-care infrastructure and increase budgetary allocations to the Ministry of Health and Child Care in line with regional and international obligations", - "values": [ - "4 - General action" - ] - }, - { - "text": "Redouble its efforts to improve the economy", - "values": [ - "4 - General action" - ] - }, - { - "text": "Fast-track the process to sign and ratify international treaties related to the African Charter on Human and Peoples' Rights among others", - "values": [ - "4 - General action" - ] - }, - { - "text": "Work with the Special Rapporteur on Freedom of Expression on reviewing the lèse-majesté and Computer Crimes laws to ensure that they cannot be exploited ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Continue ensuring access to health institutions and services in conformity with the National Health Insurance Scheme with a view to implementing the objective of universal health coverage by 2019", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Continue to introduce new polices and measures that promote the social and economic inclusion of all persons with disabilities", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Continue its constructive role and contribution in the promotion and protection of human rights in the region ", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Ensure access of women to education and control of resources with a view to promptly eliminating inequality between men and women ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Ratify the Optional Protocol to the Convention on the Rights of the Child on the participation of children in armed conflict and the Optional Protocol to the Convention on the Rights of the Child on the sale of children, child prostitution and child pornography", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "The Government and local entities expeditiously eliminate segregation and ethnic divisions in schools and promote a multi-ethnic learning environment that will allow students to learn their own languages, cultures, histories and religions", - "values": [ - "4 - General action" - ] - }, - { - "text": "Ensure that suspension of media outlets, including online media, cannot occur without judicial procedures on the basis of strict necessity and proportionality ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Establish a body (ombudsman, commissioner or the like) as a prominent institution to protect the rights of minorities and immigrants", - "values": [ - "4 - General action" - ] - }, - { - "text": "Stop the implementation of counter-insurgency programmes that target human rights defenders and civilians", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Prohibit corporal punishment as a form of sentence as well prohibit corporal punishment in all other settings ", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Bring its legislation into conformity with its commitment to equality and non-discrimination, including by prohibiting discrimination based on sexual orientation", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Take concrete measures to make primary education effectively compulsory and free ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Continue efforts to improve the national legislation and law enforcement measures aimed at the promotion and protection of the rights of persons with disabilities", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Continue efforts to improve the protection of victims and witnesses, and their families, as well as human rights defenders, particularly those testifying in human rights-related trials, and to ensure that adequate witness protection is implemented.", - "values": [ - "4 - General action" - ] - }, - { - "text": "Take concrete steps to further reduce overcrowding of prisons, including through the increased application of alternative sentencing for juvenile offenders ", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Take concrete steps to effectively increase the protection of the rights of pastoralists", - "values": [ - "4 - General action" - ] - }, - { - "text": "Consider strengthening the efforts in the area of combating trafficking of women and children by cooperating closely with countries in the region", - "values": [ - "3 - Considering action" - ] - }, - { - "text": "Underscore discipline and respect by youth for the aged under Brunei's Care for the Elderly Project, bearing in mind that an older person or parent who is abused by a caregiver would still feel humiliated, however much he or she is fed", - "values": [ - "4 - General action" - ] - }, - { - "text": "Adopt measures to ensure open and free campaign before the 2015 presidential elections, grant the opposition representatives access to all State controlled media, and promote work of all journalists", - "values": [ - "4 - General action" - ] - }, - { - "text": "Continue to promote the democratization of mass media through the promotion of bilingualism and the use of media in rural areas", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Consider ratifying ILO Convention No. 169 on Indigenous and Tribal Peoples in Independent Countries.", - "values": [ - "3 - Considering action" - ] - }, - { - "text": "Adopt new legislation that guarantees the freedom of the media as well as the right to information", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Adopt as soon as possible a draft law introducing criminal responsibility for the use of torture by law enforcement officers", - "values": [ - "4 - General action" - ] - }, - { - "text": "Address the specific needs of minorities and migrants, particularly women and children ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Implement the recently adopted United Nations rules of treatment of women prisoners and non-custodial measures from women offenders, otherwise known as Bangkok rules, to ensure that special needs of women in prisons or in custody are appropriately addressed ", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Make further efforts to ensure equal protection from discrimination", - "values": [ - "4 - General action" - ] - }, - { - "text": "Monitor the implementation of the 2015 modern slavery legislation, including its effectiveness in combating trafficking in women and girls", - "values": [ - "4 - General action" - ] - }, - { - "text": "Ask the international community for assistance to strengthen its capacity, thereby supporting it in its actions, particularly to attain the MDGs.", - "values": [ - "1 - Minimal action" - ] - }, - { - "text": "Repeal Order 3/2015 by the National Council for Peace and Order and the 2015 Public Assembly Act, and stop the use of the 2007 Act on Computer-Related Offences as well as Criminal Code Articles 112, 326, and 328 to restrict freedom of expression", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Enhance efforts in order to better serve the interests of the child on the issue of adoption", - "values": [ - "4 - General action" - ] - }, - { - "text": "Take all necessary measures to combat violence against children and ratify the Optional Protocols to the Convention on the Rights of the Child", - "values": [ - "4 - General action" - ] - }, - { - "text": "Redouble its efforts to ensure the rights of LGBTI persons and, in line with the Human Rights Committee's recommendations, combat all forms of social stigmatization of homosexuality, bisexuality and transsexuality, and hate speech, discrimination and violence based on sexual orientation or gender identity", - "values": [ - "4 - General action" - ] - }, - { - "text": "Engage civil society in the implementation process of the accepted UPR recommendations", - "values": [ - "4 - General action" - ] - }, - { - "text": "Take the necessary measures to prevent arbitrary detentions based on discriminatory criteria of any kind, particularly those related to phenotype or those directed against LGBT persons ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Continue efforts aimed at the improvement of the situation of women and their empowerment ", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Consider acceding to the 1954 Convention relating to the Status of Stateless Persons, and the 1961 Convention on the Reduction of Statelessness", - "values": [ - "3 - Considering action" - ] - }, - { - "text": "Undertake legislative measures to criminalize marital rape", - "values": [ - "4 - General action" - ] - }, - { - "text": "Ensure equal access to education for all children, including migrant and refugee children, by abolishing legal and administrative preconditions such as the propiska", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Ratify the International Convention on the Elimination of All Forms of Racial Discrimination.", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Continue improving the health and education systems ", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Actively participate in the refugee resettlement/humanitarian admission process directly from Turkey to the European Union, as this is actually the only way to save lives and crack down criminal networks of smugglers", - "values": [ - "4 - General action" - ] - }, - { - "text": "Continue to reinforce its efforts towards attaining quality education at all levels", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Establish an effective National Preventative Mechanism within the one year deadline established by the Optional Protocol to the Convention against Torture and Other Cruel, Inhuman or Degrading Treatment or Punishment (OPCAT) and hold early civil society consultations on the sort of mechanism that would be most appropriate", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Establish an evaluation mechanism of the antiterrorist strategy that takes into account the observations made by special procedures and treaty bodies, and that evaluates its human rights implications", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Continue to promote women empowerment", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Take measures to address violence and discrimination directed towards persons based on their sexual orientation, especially related to employment ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Adopt a hate crime investigation protocol and ensure that victims of hate crimes have effective access to the mechanisms of justice and redress", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Consider the accession of the International Convention on the Protection of the Rights of All Migrants Workers and Members of their families", - "values": [ - "3 - Considering action" - ] - }, - { - "text": "Further strengthen efforts to promote good governance", - "values": [ - "4 - General action" - ] - }, - { - "text": "Fast-track the enactment of its Domestic Violence Act, criminalize female genital mutilation, enforce laws that protect children from sexual abuse and exploitation, and prosecute and punish complicit officials", - "values": [ - "4 - General action" - ] - }, - { - "text": "Ensure that the new criminal procedure code respects the human rights of those held in custody, and that the statements informing migrants of the justification for their deportation is in one of the languages that the deportee understands ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Continue efforts to obtain international assistance and technical expertise for the promotion of human rights ", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Establish a national human rights institution compliant with the Paris Principles", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "May establish a national preventive mechanism for the prevention of torture in accordance with the provisions of the Convention against Torture and its Optional Protocol", - "values": [ - "3 - Considering action" - ] - }, - { - "text": "Consider providing appropriate human rights education and training to public servants and law enforcement officials", - "values": [ - "3 - Considering action" - ] - }, - { - "text": "Work on the elimination of the causes of minor's recruitment by armed groups and guarantee full rehabilitation, social reintegration and school reintegration of those children who participated or were affected by the conflict, including those who had to be accommodated in internal displaced camps and to take into account the linguistic, cultural, and religious diversity in Sri Lanka", - "values": [ - "4 - General action" - ] - }, - { - "text": "Take full and necessary measures to restore the administration of justice and exert its utmost efforts to realise the rule of law", - "values": [ - "4 - General action" - ] - }, - { - "text": "Ratify OP-CAT, and introduce human rights education for police and security forces", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Complement the efforts necessary to the establishment of the national human rights institution in line with the Paris Principles", - "values": [ - "4 - General action" - ] - }, - { - "text": "Adopt measures to assure to all persons with disabilities access to educational and vocational training programmes, in consultation with these persons and their representatives ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Adhere to the Second Optional Protocol to the International Covenant on Civil and Political Rights, and declare a moratorium on pending executions, with a view to abolishing the death penalty", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Take effective measures to improve access by all prisoners to legal advice, health and education services ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Continue with the cooperation programs, in line with the World Food Programme, with priority given to the most vulnerable groups, such as elderly persons, women and children, and ensure they are implemented transparently", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Exert more effort to promote women's participation in public life through executing the national strategy for Jordanian women 2012-2015", - "values": [ - "4 - General action" - ] - }, - { - "text": "Consider comments of the Special Rapporteur on health regarding the negative impacts that the Trans Pacific Partnership agreements would have on access to medicines", - "values": [ - "3 - Considering action" - ] - }, - { - "text": "Promote the very foundation of family and its associated values with a view to preventing domestic violence.", - "values": [ - "4 - General action" - ] - }, - { - "text": "Consider further strengthening policies and laws to put in place an effective and holistic system towards combating violence against women and ensuring justice for victims", - "values": [ - "3 - Considering action" - ] - }, - { - "text": "Establish an independent national human rights institution aligned with the Paris Principles", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Continue efforts in ensuring gender equality in all the spheres of the society, including making efforts to narrow the gender pay gap", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Continue giving priority to vulnerable groups in the distribution of international assistance ", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Continue the efforts to promote gender equality, with regard to the high female unemployment rates", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Adopt appropriate legislation in full conformity with international standards on the rights of indigenous peoples", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Abolish the death penalty and commute existing death penalties sentences to prison sentences", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Intensify efforts to ensure gender equality and eliminate sexual and gender-based violence", - "values": [ - "4 - General action" - ] - }, - { - "text": "Create an environment, inter-alia through a legislative framework, that promotes rather than restricts the right to freedom of assembly and that encourages citizens to express their diverse views ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Ratify the International Convention for the Protection of all Persons from Enforced Disappearance ", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Step up existing efforts to implement human rights education and training across all levels of society.", - "values": [ - "4 - General action" - ] - }, - { - "text": "Explore the possibility of creating a monitoring system for international recommendations to facilitate the systematization and follow-up to the recommendations of the human rights bodies and special procedures", - "values": [ - "3 - Considering action" - ] - }, - { - "text": "Continue efforts to promote gender issues in favour of equality between men and women in all areas of socioeconomic life and access to resources", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Allow the visit of the Special Rapporteur on torture and other cruel, inhuman or degrading treatment or punishment, whose request had been pending for 18 years, in line with India's standing invitation issued in 2011 to all Special Procedures of the HRC ", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Implement the Supreme Court rulings of 2013 and 2015 on the Truth, Reconciliation and Disappearance Act so that investigation into human rights violations committed during the civil war, compensation for victims and reconciliation efforts are undertaken in accordance with international standards on transitional justice", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Carry out training activities and exchange of experiences on human rights with other countries of the Pacific Islands", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Strengthen the justice system in order to avoid loss of faith and respect in the judicial system among citizens, including to raise the efficiency of birth registration system ", - "values": [ - "4 - General action" - ] - }, - { - "text": "To guarantee the human rights and freedoms of migrant workers through the promotion of legislation on migration that ensures decent and respectful treatment towards this vulnerable group, as well as its access, without discrimination, to, inter alia, health and education systems; accession to the International Convention for the Protection of the Rights of All Migrant Workers and Members of Their Families would be an important step in that regard", - "values": [ - "4 - General action" - ] - }, - { - "text": "Strengthen and closely monitor laws protecting girls and women from female genital mutilation through dedicated programmes and mechanisms", - "values": [ - "4 - General action" - ] - }, - { - "text": "Finalize the text of a balanced counter-terrorism law.", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Strengthen measures to combat sexual assault and violence against women and girls", - "values": [ - "4 - General action" - ] - }, - { - "text": "Although Tuvalu is not a party to the other core human rights treaties the Government is still committed to ensuring effective monitoring of human rights situation on the ground and to meet the targets outlined in the Te Kakeega II, The National Strategy on Sustainable Development. ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Continue making efforts to seek the necessary resources to lead the Gambia towards development", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Include in the school system at all levels, appropriate measures in the field of human rights education, in accordance with the Plan of Action of the World Programme for Human Rights Education, including appropriate training of law enforcement officials", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Implement the child and youth programme of 2013-2016", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Introduce a de jure moratorium on the execution of the death penalty, for as long as that penalty is not abolished", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Combat, within the framework of the law of the State, neo-Nazi groups and others promoting racial hatred and violence.", - "values": [ - "4 - General action" - ] - }, - { - "text": "Take appropriate measures to reduce infant mortality and improve access to health services in rural areas", - "values": [ - "4 - General action" - ] - }, - { - "text": "Continue to ensure transparency and accountability in all procedures related to its treatment of refugees and asylum seekers", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Ratify the ILO Convention N. 189 on Domestic Workers and adopt the Act for the Protection of Domestic Workers ", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Enforce the legislative efforts regarding the security of human rights defenders, with a view to effectively implementing measures and programmes ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Continue reinforcing and protecting the rights of migrants", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Pursue reforming the judicial system to strengthen its effectiveness, particularly by improving access to justice and detention conditions", - "values": [ - "4 - General action" - ] - }, - { - "text": "Strengthen the independence of the judiciary by reforming the Judicial Services Commission's process for selecting and appointing judges", - "values": [ - "4 - General action" - ] - }, - { - "text": "Withdraw its reservations to Article 37 (c) of CRC ", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Guarantee separated families fundamental right to know the fate of their family members across the border and to communicate and regularly meet together ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Adopt further measures to end impunity for attacks against human rights defenders and against persons because of their sexual orientation or gender identity, including specific education and awareness raising programmes for law enforcement, judicial and other authorities, which focus, inter alia, on protection of enjoyment of human rights by persons of minority sexual orientation and gender identity.", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Consider ratifying the International Covenant on Civil and Political Rights, the International Covenant on Economic, Social and Cultural Rights and the Convention against Torture and Other Cruel, Inhuman or Degrading Treatment or Punishment", - "values": [ - "3 - Considering action" - ] - }, - { - "text": "Continue ensuring the implementation of measures in order to fully eliminate discrimination, racism and xenophobia against minorities, refugees, asylum seekers and migrants", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Take effective measures to thoroughly investigate all allegations of ill- treatment of detainees, of abuse of force by police and military forces and of attacks against journalists and human rights defenders, so to ensure that all those responsible are brought to justice", - "values": [ - "4 - General action" - ] - }, - { - "text": "Repeal the law criminalizing same-sex relations among consenting adults", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Continue its efforts to reduce maternal and infant mortality, saving mother and child ", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Apply promptly and in a non-discriminatory manner the Plan for the Regularization of Foreigners and consider, for these effects, the recommendations of the Inter-American Commission on Human Rights following its visit to the country on December 6, 2013, stating that the process, as a whole, be made in accordance with its international human rights obligations ", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Further implement laws to effectively guarantee equality between men and women ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Continue strengthening measures towards equality, taking into account the situation of disadvantaged groups for which positive discrimination is recommended ", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Adopt a law against the placement of children in domesticity that are victims of several abuses", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Take steps towards the complete abolition of the death penalty ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Continue to consider ratifying the International Convention for the Protection of All Persons from Enforced Disappearance ", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Strengthen all necessary measures to effectively prohibit and prevent incitement to hatred and racist propaganda, particularly on the Internet, including by ensuring awareness of the problem at the federal and Länder levels", - "values": [ - "4 - General action" - ] - }, - { - "text": "Strengthen human rights education, specifically in order to address effectively the phenomenon of gender-based and caste-based discrimination.", - "values": [ - "4 - General action" - ] - }, - { - "text": "Take further steps to ensure practical realization of the improved national legislation, in particular in the areas of children's and women's rights protection, counter-trafficking, education and judiciary", - "values": [ - "4 - General action" - ] - }, - { - "text": "Strengthen efforts to finalize, adopt and implement, in consultation and cooperation with relevant stakeholders, including civil society, a national plan of action for children, as recommended by the Committee on the Rights of the Child", - "values": [ - "4 - General action" - ] - }, - { - "text": "Strengthen its cooperation with OHCHR, including with regard to the training of relevant public officials, on the basis of identified technical assistance needs and with a view to establishing a multi-year programme", - "values": [ - "4 - General action" - ] - }, - { - "text": "With the support from the international community, make efforts to integrate a human rights approach in public policies and establish a credible data collection centre", - "values": [ - "4 - General action" - ] - }, - { - "text": "Ensure the right to food and other economic, social and cultural rights, without any kind of discrimination", - "values": [ - "4 - General action" - ] - }, - { - "text": "Make the law on NGOs more flexible, in particular by abolishing the annual registration requirement ", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Put in place a broad strategy, which includes legislation, to change or eliminate practices and cultural stereotypes which discriminate against women, in compliance with the CEDAW Convention ", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Evaluate the internal guidelines and criteria with regards to risk assessment in the countries of origin of asylum-seekers and ensure a continuous flow of information and education on these internal guidelines ", - "values": [ - "3 - Considering action" - ] - }, - { - "text": "Withdraw reservation to article 4 of the International Convention on the Elimination of All Forms of Racial Discrimination.", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Repeal articles 236 and 230 of the Criminal Code to put an end to the criminalization of adultery and same-sex relationships, as well as to methods of collecting evidence that constitute a violation of the dignity and physical integrity of persons", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Study the possibility of becoming a party to the following international instrument: CRPD ", - "values": [ - "3 - Considering action" - ] - }, - { - "text": "Strengthen the SAFENET Referral Network system for women who are victims of domestic violence and sexual abuse and consider establishing in all provinces shelters accessible to all women, including those with disabilities", - "values": [ - "4 - General action" - ] - }, - { - "text": "Immediately reinstates the moratorium on death penalty", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Amend the 2013 Communications Law to stop the use of the vaguely defined concept of "social emergency" to suspend or suppress legitimate communications and exchanges of information, or otherwise to limit freedom of opinion and expression", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Consider reviewing its position via-à-vis acceding to the ICCPR, ICESCR, ICERD, CAT and ICRMW", - "values": [ - "3 - Considering action" - ] - }, - { - "text": "Continue its efforts with regard to the gender policy and, more concretely, specialize in programmes in the area of education against gender violence for professionals in law enforcement and the judiciary ", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Conduct effective awareness raising activities to combat torture", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Support partnerships, particularly with the private sector, for the implementation of the Zimbabwe Agenda for Sustainable Socioeconomic Transformation", - "values": [ - "4 - General action" - ] - }, - { - "text": "Step up efforts and establish a capacity building programme to encourage women's participation in decision-making positions", - "values": [ - "4 - General action" - ] - }, - { - "text": "Adopt effective measures to ensure conditions of detention that respected the dignity of prisoners in particular the revised United Nations Standard Minimum Rules for the Treatment of Prisoners (The Nelson Mandela Rules) ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Persevere in its policy of promotion and protection of the rights of minorities and vulnerable persons ", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Participate more actively in the international programs of technical assistance and capacity-building in the field of human rights ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Continue to strengthen its efforts in tackling poverty and enhancing the access of all persons,\nespecially those living in rural areas, to basic social services such as health and education ", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Further strengthen the national endeavours in promoting and protecting the rights of persons with disabilities in line with the Convention on the Rights of Persons with Disabilities", - "values": [ - "4 - General action" - ] - }, - { - "text": "Put an end to corporal punishment and other forms of violence in schools", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Ensure that a robust law protecting human rights defenders, journalists and justice officials is adopted and effectively implemented and that its impact is regularly assessed", - "values": [ - "4 - General action" - ] - }, - { - "text": "Strengthen and accelerate legislative and educational actions to prevent violence against women and girls, especially domestic violence", - "values": [ - "4 - General action" - ] - }, - { - "text": "Continue its efforts to allocate sufficient resources to ensure the effective implementation of the Family Protection Act.", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Further protect women's rights by providing more assistance to poor women and women with disabilities ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Follow up on the recommendations made by the Representative of the Secretary-General on the human rights of internally displaced persons, particularly those relating to the need to adopt measures for reconciliation and to implement a comprehensive strategy for the internally displaced", - "values": [ - "4 - General action" - ] - }, - { - "text": "Keep up its efforts aimed at increasing the transparency in the appointment process of the Ombudsman and introduce the necessary legislative changes in order to reinforce the institutional capacities of the Office and bring its competences in line with the Paris Principles", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Continue its efforts to establish a free and compulsory quality education for children up to the age of 15 years", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Conduct more human rights training programmes for law enforcement and judicial officials - allow access for independent international observers, especially to the penitentiary and detention centres - and offer more guarantees of independence to the judicial power, in accordance with article 14 of the ICCPR ", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Continued humanitarian support for refugees from the Horn of Africa and provision of all humanitarian welfare requirements within the limits of available means", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Ensure that the statute of the national human rights commission is in conformity with the Paris Principle, to ensure that it is fully operational, as recommended by the Committee on the Rights of the Child.", - "values": [ - "4 - General action" - ] - }, - { - "text": "Work towards abolition of the death penalty", - "values": [ - "4 - General action" - ] - }, - { - "text": "Reconsider criminal convictions handed down on the basis of lèse- majesté and the Computer Crimes laws when the conditions of a fair and equitable trial as defined by the international human rights law have not been met ", - "values": [ - "3 - Considering action" - ] - }, - { - "text": "Proceed with ratifying the CRPD and CRC", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Complete the procedures for ratifying the Convention against Torture and Other Cruel, Inhuman and Degrading Treatment or Punishment and the Convention on the Protection of All Persons from Enforced Disappearance.", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Speed up the reforms on the legislation for citizenship for children of Bahraini mother and non-Bahraini father", - "values": [ - "4 - General action" - ] - }, - { - "text": "Continue with its efforts and initiatives to enact the necessary legislation to protect human rights and promote them and to ensure economic development and a higher standard of living", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Continue its efforts to ratify CPED, ICRMW and OP-CAT ", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Continue to develop national mechanisms to combat trafficking in human beings, including by conducting a thorough investigation into reports of cases of human trafficking and by establishing a legal framework for the protection of child victims of human trafficking", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Continue efforts to bring national legislation relevant to human rights in line with the Tunisian Constitution and its international human rights obligations", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Ensure that all racist behaviour is effectively investigated and duly punished", - "values": [ - "4 - General action" - ] - }, - { - "text": "Continue its efforts on the ratification of other human rights instruments and relevant protocols", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Take appropriate steps to fully align national legislation with all obligations under the Rome Statute, including by adopting specific provisions aimed at thorough and expeditious cooperation with the Court ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Continue its efforts with a view to the effective implementation of the provisions of the United Nations Declaration on Human Rights Education and Training ", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Ensure due process and accountability in the administration of justice, and hold perpetrators of any ill-treatment of prisoners to account", - "values": [ - "4 - General action" - ] - }, - { - "text": "Continue to implement programs aimed at improving the quality of and access to education, giving particular attention to the needs of children from underprivileged families, including those in the rural and underserved areas ", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Guarantee that people of the lesbian, gay, bisexual, transgender and intersex communities have effective access to health services, including treatment for HIV/AIDS", - "values": [ - "4 - General action" - ] - }, - { - "text": "Consider ratifying the remaining United Nations core treaties, in particular the International Covenant on Civil and Political Rights and the International Covenant on Economic, Social and Cultural Rights, and conclude the ratification of the two Optional Protocols to the Convention on the Rights of the Child", - "values": [ - "3 - Considering action" - ] - }, - { - "text": "Sign and ratify the two International Covenants, the Convention against Torture and Other Cruel, Inhuman or Degrading Treatment or Punishment, the International Convention for the Protection of All Persons from Enforced Disappareance, and the International Convention on the Elimination of All Forms of Racial Discrimination. In particular, sign and ratify the International Convention on the Elimination of All Forms of Discrimination against Women and its Optional Protocol, whose ratification was approved by the Senate in early 2008 and is still awaiting for the approval of the House of Representatives", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Ensure that Local Preventive Mechanisms are created by encouraging states to do so as envisaged by the national law on torture and expand the application of custody hearings to the entire country as set by Resolution 213 of the National Council of Justice", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Continue working towards the adoption of plans and public policies for the promotion and protection of the rights of lesbian, gay, bisexual and transgender persons and other vulnerable populations likely to be discriminated against", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Study the possibility of taking measures against religious discrimination and religious based violence ", - "values": [ - "3 - Considering action" - ] - }, - { - "text": "Fully cooperate with the Independent Expert on the situation of human rights in Sudan ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Proceed to arrest and transfer to the Hague Mr. Bosco Ntaganda, who is subject to an arrest warrant by the International Criminal Court.", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Sign and ratify the Optional Protocol to the International Covenant on Economic, Social and Cultural Rights and ratify the Council of Europe Convention on preventing and combating violence against women and domestic violence ", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Ratify as soon as possible the International Convention on the Protection of All Persons from Enforced Disappearances, major instrument in fighting impunity, and recognize the competence of the Committee on Enforced Disappearances", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Continue efforts to strengthen its institutional frameworks for human rights, including by giving consideration towards the establishment of a national human rights institution as guided by the Paris Principles ", - "values": [ - "3 - Considering action" - ] - }, - { - "text": "Educate domestic workers on regulations regarding domestic workers by making it available in all languages and take all necessary measures to implement the regulations in practice", - "values": [ - "4 - General action" - ] - }, - { - "text": "Adopt the measures necessary to guarantee the right of any person deprived of liberty to have access to an immediate remedy to challenge the legality of that detention ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Adopt a comprehensive national framework to combat trafficking in women and girls", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Continue to take the necessary measures for effectively fighting human trafficking and child labour ", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Adopt safeguards to ensure freedom of expression ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Repeal the Access to Information and Protection of Privacy Act and the Public Order and Security Act, and license independent broadcasters ", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Take concrete measures to eliminate child labour and child sex tourism", - "values": [ - "4 - General action" - ] - }, - { - "text": "Increase funding for education and enforce compulsory schooling for all children", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Raise the age when compulsory education ends to at least 16", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Adopt a moratorium on the death penalty with a view to its abolition", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "To further build up on its effort to fully protect human rights in the country", - "values": [ - "4 - General action" - ] - }, - { - "text": "Ratify the second Optional Protocol of the ICCPR, and formally establish a moratorium on the use of death penalty with a view to its abolition ", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Respect, protect and promote the human rights of all persons, without discrimination on any grounds, including sexual orientation, gender identity or same-sex relationships between consenting adults", - "values": [ - "4 - General action" - ] - }, - { - "text": "Take measures to ensure the provision of the required resources for the full implementation of the new educational system introduced in 2012", - "values": [ - "4 - General action" - ] - }, - { - "text": "Take the necessary measures to protect the victims of Boko Haram and the terrorist groups, in particular children", - "values": [ - "4 - General action" - ] - }, - { - "text": "Comply with the recommendations of the Rapporteur on trafficking in persons, especially in women and children and send an invitation to the Rapporteurs' to perceive the human rights situation in the country", - "values": [ - "4 - General action" - ] - }, - { - "text": "Enact legislation prohibiting all forms of traditional practice of FGM in line with recommendations made by CEDAW and the Committee on the Rights of the Child ", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Adopt measures to ensure that people can change their legally recognized gender without sex-reassignment surgery", - "values": [ - "4 - General action" - ] - }, - { - "text": "Early establishment of a National Human Rights Institution in Belgium", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Continue the institutional framework initiated to establish a National Human Rights Institution in accordance with the Paris Principles", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Manifest publicly and energetic to its security forces and intelligence services that extrajudicial executions would not be tolerated and that also make the necessary efforts to eradicate this practice, including the prosecution of those responsible", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Adopt positive policies to include representatives of minorities at various levels in national and local government ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Make every possible effort, both at home and at the international level, to raise awareness about the issue of genocide and to combat impunity, with the aim of preventing the recurrence of any acts of genocide ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Adopt additional measures, including legislative ones, to eradicate the practice of deliberate exploitation of children and the use of corporal punishment against children", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Despite the volume of work performed there is still much to do in this field [equal oportunities for persons with disabilities], the State is committed to ensure the continuity of those activities.", - "values": [ - "4 - General action" - ] - }, - { - "text": "Ensure full respect for human rights by law enforcement agencies and ensure that violations are subjected to judicial prosecutions", - "values": [ - "4 - General action" - ] - }, - { - "text": "Introduce legal provisions effectively guaranteeing the safety of human rights defenders", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Consider the possibility of ratifying the International Convention for the Protection of All Persons from Enforced Disappearance CED and accept the jurisdiction of the relevant committee ", - "values": [ - "3 - Considering action" - ] - }, - { - "text": "Strengthen the actions aimed at guaranteeing the enjoyment of the most fundamental rights and the access to the basic infrastructures in the most remote areas", - "values": [ - "4 - General action" - ] - }, - { - "text": "Take steps to protect freedom of expression, including online freedoms", - "values": [ - "4 - General action" - ] - }, - { - "text": "Implement additional measures to combat discrimination, defamation and violence (including cyber racism) against the Arab population and Australian Muslims, against recently arrived migrants (primarily from Africa) and also foreign students (essentially coming from India) ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Continue its work towards the speedy ratification of CPRD", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Review the provisions of the Criminal Code providing for prison sentences for slander and publication of false information, and introduce amendments in order to concretely protect freedom of expression and of the press", - "values": [ - "3 - Considering action" - ] - }, - { - "text": "Abolish de jure the death penalty for all crimes", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Ensure that the Office of the Ombudsman continues to operate at full capacity and is brought into conformity with the Paris Principles", - "values": [ - "4 - General action" - ] - }, - { - "text": "Ensure the independence of the National Institution for Human Rights and grant it the necessary means to function in accordance with the Paris Principles, and issue a standing invitation to Mandate Holders of the Human Rights Council ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Work towards more balanced geographical coverage of health-care services with specific focus on rural areas", - "values": [ - "4 - General action" - ] - }, - { - "text": "Continue the measures aimed at the improvement of the protection, integration and, in particular, access to education of children with disabilities ", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Exert more efforts to protect cultures, especially those of ethnic minorities, and to promote the protection of cultural relics", - "values": [ - "4 - General action" - ] - }, - { - "text": "Adopt legislative and public policy measures to combat discrimination against ethnic minorities, and guarantee the respect of their civil and political rights", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Make efforts to reduce the poverty rate", - "values": [ - "4 - General action" - ] - }, - { - "text": "Ratify the Optional Protocol to the Convention against Torture and set up a national prevention mechanism in the framework of the criteria and safeguards provided by this instrument, as previously recommended", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Enforce existing legislation on women's, children's and adolescents' rights", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Put in place a system to support victims of sexual and gender-based violence", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Strengthen measures combating all forms of violence against women and children, especially through the reinforcement of the legal framework in this field ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Derogate the legislation that criminalizes the LGBT community, and put an end to the defamatory and harassing campaigns against them", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Accelerate the process of harmonizing its national legislation with the provisions of the international instruments, to which it is a party", - "values": [ - "4 - General action" - ] - }, - { - "text": "Continue to implement laws and regulations for protection and promotion of rights of people with disabilities", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Effectively fight against extrajudicial killings, including by non-State actors, by strengthening accountability mechanisms and implementing the necessary reforms ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Continue efforts to tackle discrimination against Aboriginal women in all sectors of society, including employment, housing, education and health care", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Ratify the International Convention on the Protection of the Rights of All Migrant Workers and Members of Their Families, signed in 2013", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Continue to make efforts to guarantee fully the principle of non-discrimination. these efforts will be further boosted by the work of the new Ministry for the Advancement of Woman", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Adopt legal and administrative provisions for the issuance of free birth certificates for all children born in the national territory, and for the establishment of civil registry offices in all districts, including rural districts", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Condemn all acts of intimidation of, or violence against, members of religious minorities, and bring all perpetrators to justice without delay", - "values": [ - "4 - General action" - ] - }, - { - "text": "Respect in all circumstances the principle of non-refoulement, guarantee that asylum seekers have an asylum procedure which is in line with international standards, and respond to the requests for information made by the Committee on the Elimination of Racial Discrimination regarding the treatment of asylum seekers ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Argentina has initiated the procedure towards the recognition of the competence of the Committee of the Convention for the Protection of All Persons from Enforced Disappearance to examine individual or inter-State communications.", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Consider ratifying the CRPD", - "values": [ - "3 - Considering action" - ] - }, - { - "text": "Continue to strengthen cooperation with the Human Rights Council and its mechanisms ", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Assess the situation and take measures to reduce pollution emissions from the Cerano coal power plant in Puglia and the Taranto metallurgical plant to ensure an adequate standard of living and health in those areas", - "values": [ - "3 - Considering action" - ] - }, - { - "text": "Facilitate the access of ethnic minority group children to education for instance by allowing them to attend school in their traditional dress or by providing them with free school uniforms", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Put an end to the use of discriminatory ethnic profiling by inserting the necessary legal safeguards against the abuse and deliberate targeting of certain ethnic and religious groups ", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Take steps to reduce school wastage rate, having in mind that today 25 percent of a given class did not complete primary school", - "values": [ - "4 - General action" - ] - }, - { - "text": "Undertake further measures to improve sexual and reproductive health especially for marginalized groups.", - "values": [ - "4 - General action" - ] - }, - { - "text": "Ensure the implementation of the National Gender-Based Violence Action Plan and put a halt on gender-based violence", - "values": [ - "4 - General action" - ] - }, - { - "text": "Continue its legislative reforms to address discriminatory cultural practices, including FGM, in line with CEDAW recommendations", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Expeditiously implement the Anti-Human Trafficking Act and provide facilities and necessary assistance to the victims, in particular women and children", - "values": [ - "4 - General action" - ] - }, - { - "text": "Adhere to the International Convention on the Protection of the Rights of All Migrant Workers and Members of their Families and recognize the competence of the Committee ", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Implement specific legislation criminalising female genital mutilation and domestic violence ", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Ensure that the constitutional framework duly protects journalists, media and civil society against intimidation, threats and assaults, and review the Penal Code accordingly", - "values": [ - "4 - General action" - ] - }, - { - "text": "Continue efforts to guarantee the rights of persons with disabilities, and improve their social integration", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Continue efforts for the empowerment of women in society", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Combat more vigorously the phenomenon of domestic violence, in particular violence against children, including by the introduction of a coherent and clear legislative framework prohibiting corporal punishment", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Continue to implement measures to promote full and effective equality in the social, economic and political spheres ", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Strengthen its efforts aimed at enhancing women\u2019s representation in politics and the economy", - "values": [ - "4 - General action" - ] - }, - { - "text": "Provide the National Human Rights Council with the necessary budgetary, administrative and political independence to fully implement its functions", - "values": [ - "4 - General action" - ] - }, - { - "text": "Strictly implement its international obligations on addressing the impunity of perpetrators of torture, notably article 4 of the Convention against Torture and Other Cruel, Inhuman or Degrading Treatment or Punishment", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Ratify the optional protocol to CAT which it signed in 2008", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Ensure that criminal defamation law is not used to silence critics, and to protect journalists' sources and whistle-blowers", - "values": [ - "4 - General action" - ] - }, - { - "text": "Speed up the adoption of a national plan of action to prevent and combat trafficking in persons", - "values": [ - "4 - General action" - ] - }, - { - "text": "Seek from the international community technical help and assistance in terms of civil and political rights, mentioned in its national report, namely, access to justice, law enforcement, and environment protection", - "values": [ - "1 - Minimal action" - ] - }, - { - "text": "Combat racial profiling and Islamophobia on a non-discriminatory basis applicable to all religious groups", - "values": [ - "4 - General action" - ] - }, - { - "text": "Ratify the International Convention for the Protection of the Rights of All Migrant Workers and Members of Their Families (ICRMW) ", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Continue efforts to curb trafficking, in cooperation with neighbouring countries, non-governmental organizations and the United Nations, including by developing safe channels of labour migration and by strengthening law enforcement, policing and awareness-raising activities ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Consider ratifying OP-CAT, as well", - "values": [ - "3 - Considering action" - ] - }, - { - "text": "Inform Foreign Missions regularly of efforts to ensure compliance with consular notification and access for foreign nationals in United States custody at all levels of law enforcement", - "values": [ - "4 - General action" - ] - }, - { - "text": "Work towards taking measures in relation to the psychological and physical impact of domestic violence on children.", - "values": [ - "4 - General action" - ] - }, - { - "text": "Complete the transposition of treaties ratified by Mauritania into national law and promote their dissemination and effective implementation", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Continue interacting constructively with the special procedure mechanisms of the Human Rights Council", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Continue its efforts to reduce poverty, especially in fulfilling the rights of vulnerable groups", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Allocate adequate resources for programmes ensuring the full enjoyment of the rights of children and adolescents", - "values": [ - "4 - General action" - ] - }, - { - "text": "Take measures against xenophobia and Islamophobia. Improve the implementation of the existing legal framework for combating racism", - "values": [ - "4 - General action" - ] - }, - { - "text": "Continue measures to increase the overall ratio of tax to gross domestic product, in particular implementing recommendations from the final report of the Tax Reforms Commission, including steps to provide a proper mechanism to improve tax collection at the national and provincial levels in an open and transparent manner, with a view to ensuring that everyone pays their fair share", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Consider the adoption of a comprehensive policy to address forced evictions of owners who can no longer pay their mortgages", - "values": [ - "3 - Considering action" - ] - }, - { - "text": "Accede to ICCPR-OP 2, aimed at abolition of the death penalty ", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Proceed with the implementation of the National Action Plan on Integration to strengthen measures to tackle xenophobia, racism and intolerance, and increase intercultural understanding, including through community-based programmes", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Intensify efforts to combat all forms of child labour by strengthening the labour inspectorate to ensure effective implementation of child labour laws, both in formal and informal sectors ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Enhance efforts to protect the rights of persons with disabilities, thereby continuing progress already achieved in this area ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Take additional concrete steps to combat societal discrimination on the basis of race, sexual orientation, disability or gender identification", - "values": [ - "4 - General action" - ] - }, - { - "text": "Ensure that Serbian jurisdictions are able to rigorously apply criminal provisions related to racial and discriminatory offences ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Continue to strengthen the educational system and to ensure equal access of disabled children to education", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Take additional measures to facilitate access to health service for all members of society, especially women", - "values": [ - "4 - General action" - ] - }, - { - "text": "Continue prioritizing the promotion of the right to education for all ", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Continue to advance the rule of law and to deepen the reform of the judicial system", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Take all necessary measures, including by undertaking a reform of legislation governing the telecommunications sector and guaranteeing access to public information, to guarantee freedom of the press, freedom of expression and the right to peaceful assembly ", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Continue efforts to eradicate gender-based violence, including domestic violence, by raising awareness in society, ensuring due diligence in the prosecution and trial of those who commit such acts and providing relevant training to the competent authorities regarding the protection and prevention of violence against women and girls", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Continue its specific measures already undertaken to ensure that persons concerned are informed about the content of the Family Protection Law ", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Revise relevant legislation particularly the federal law on countering terrorism and the law on extremism to ensure their compatibility with international obligations of the Russian Federation ", - "values": [ - "3 - Considering action" - ] - }, - { - "text": "Continue its economic and social policies, and to pay more attention and efforts on improving the quality of life of people living in rural areas and suffering from social exclusion ", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Review the report of the High Commissioner on sexual orientation and gender identity and give consideration to implementing its recommendations ", - "values": [ - "3 - Considering action" - ] - }, - { - "text": "Enhance ongoing efforts to strengthen the protection of foreign workers, so as to ensure the continuous improvement of working and housing conditions while continuously monitoring labour law violations ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Continue implementing measures to improve gender equality in the country and to eliminate discrimination against women", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Reflect upon and consider setting a date for signing the International Convention on the Protection of All Persons from Enforced Disappearance.", - "values": [ - "3 - Considering action" - ] - }, - { - "text": "Uphold its international obligations relating to refugees", - "values": [ - "4 - General action" - ] - }, - { - "text": "Establish mobile courts especially in the rural areas", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Further its endeavours with regard to the smooth and productive activities of the Inter-Racial and Religious Confidence Circles Steering Committees, and continue its efforts to strengthen social harmony in the country", - "values": [ - "4 - General action" - ] - }, - { - "text": "Step up its efforts in order to provide a safe environment for journalists, human rights defenders and other civil society actors", - "values": [ - "4 - General action" - ] - }, - { - "text": "Impose an immediate de jure moratorium on executions, with a view to the complete abolition of the death penalty for all crimes", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Actively pursue international cooperation aimed at adapting to the adverse effects of climate change", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Allow for a requested visit by the Working Group on Arbitrary Detention \n", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Devote particular attention to fighting the worst forms of child labour and child trafficking, including that for the purpose of commercial sexual exploitation", - "values": [ - "4 - General action" - ] - }, - { - "text": "Consider expediting the adoption of draft law on domestic violence", - "values": [ - "3 - Considering action" - ] - }, - { - "text": "Continue the dialogue and substantive cooperation with human rights non-governmental organizations, in particular those involved in protecting human rights defenders", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Engage firmly against sexual violence, ensure the right of victims to obtain justice and redress, combat persistent impunity and strengthen the capacities of the national agency fighting against sexual violence", - "values": [ - "4 - General action" - ] - }, - { - "text": "Harmonize legal measures and policies in order to guarantee rights of victims of domestic violence in accordance with international standards, for instance, by amending the Criminal Procedure Law that would expand the term 'family member' in the criminal offence of domestic violence to include a former spouse or partner ", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Undertake effective efforts and policies to eliminate discriminatory practices, dissemination of hate speech, including threats on resorting to forceful means such as deportation, to stop persistent hostile attitudes on the part of the general public, including attacks towards Roma, Kurds and non-Muslim minorities, also by taking demonstrable steps to prevent and combat such attitudes through information campaigns, awareness-raising and education, among others ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Provide human rights training to law enforcement and judicial officers, with a specific focus on the protection of the rights of women, children and persons of minority sexual orientation or gender identity and adopt further measures to ensure protection of these persons against violence and abuse", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Establish a mechanism to allow for speedy and correct judicial decisions under strict observance of constitutional and international law regarding the territorial rights of indigenous peoples", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Investigate allegations of ill-treatment of children living in centres and homes, and as appropriate, take all necessary corrective measures", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Introduce a moratorium on executions with a view to abolish the death penalty ", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Continue efforts to improve conditions of detention and abolish the death penalty, with a view to commuting all death sentences", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Revise the Penal Code Order of 2013 to prohibit torture or other cruel, inhuman or degrading treatment or punishment and to bring Brunei's domestic legislation into line with its international human rights commitments on the freedoms of religion and of expression ", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "To reform, in accordance with the Constitution, the institutions of the Judicial Organ.", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Guarantee the practice of freedom of expression and of the press ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Investigate all cases of xenophobic violence", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Continue efforts aimed at strengthening the roles, functions and capacities of national institutions and mechanisms responsible for the promotion and protection of human rights and fundamental freedoms, including the sharia legal system", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Maintain its efforts in the area of combating trafficking in persons, especially women and children, including through a victim-oriented approach and an enhanced level of international and regional cooperation", - "values": [ - "4 - General action" - ] - }, - { - "text": "Take more effective measures to combat, or even eradicate hate crimes and speeches against minority groups in Norway, putting the accent on prevention of and follow-up to these acts ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Withdraw reservations to CAT", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Consider formalizing the de facto moratorium on the death penalty", - "values": [ - "3 - Considering action" - ] - }, - { - "text": "Ratify the main international human rights instruments, particularly CRPD and its Optional Protocol ", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Revise penal laws regarding the criminalization of women and girls in cases of abortion as well as of the doctors who practise it", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Take concrete and effective measures to ensure the ratification and gradual implementation as soon as possible of the Convention on the Rights of Persons with Disabilities, signed in 2007", - "values": [ - "4 - General action" - ] - }, - { - "text": "Take all necessary measures towards upholding the total prohibition against torture and, in this regard, conduct thorough and impartial investigations into all allegations of torture and physical abuse and bring to justice anyone suspected of having committed excessive use of force, torture and other human rights violations ", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Consider ratifying the Optional Protocol to the Convention against Torture, the Optional Protocol to the Convention on the Elimination of All Forms of Discrimination against Women and the Second Optional Protocol to the International Covenant on Civil and Political Rights, aiming at the abolition of the death penalty", - "values": [ - "3 - Considering action" - ] - }, - { - "text": "Redouble efforts in order to ensure the full incorporation of the provisions of the Convention on the Elimination of All Forms of Discrimination against Women into domestic legislation", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "End its severe restrictions on the rights to free expression, association and assembly and end the harassment and persecution of journalists and bloggers", - "values": [ - "4 - General action" - ] - }, - { - "text": "Continue efforts to protect the rights of women and children, as well as other vulnerable groups", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Continue strengthening the independence and impartiality of the judiciary and guaranteeing greater transparency of legal procedures, through measures such as the review of the Criminal Code and of the Public Prosecutor's Office ", - "values": [ - "3 - Considering action" - ] - }, - { - "text": "Strengthen its efforts in HIV/Aids prevention and treatment and reduce child and maternal mortality rates ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Continue ensuring the enjoyment of the right to food and food security for all ", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Set up an independent and impartial commission of inquiry on any alleged case of forced disappearance or extrajudicial execution ", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Request technical assistance and cooperation as deemed appropriate from the international community, including relevant United Nation and specialized agencies in respect of capacity development for human rights implementation", - "values": [ - "1 - Minimal action" - ] - }, - { - "text": "Enact legislation to combat domestic violence", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Extend a standing invitation to the mandate holders of all special procedures of the Human Rights Council", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Legislative protection for children includes criminal sanctions for all forms of violence against children", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Eliminate the death penalty in the national legislation and adopt an official moratorium on it", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Promote and disseminate the United Nations declaration on human rights defenders and adopt national legislation for its effective implementation, investigate threats, attacks and intimidations against human rights defenders and ensure their protection", - "values": [ - "4 - General action" - ] - }, - { - "text": "Continue efforts aimed at finding effective measures to protect human rights defenders ", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Ensure that all persons, including members of the national army, the police and intelligence service, who are suspected of having committed crimes of international law and other grave human rights violations, are brought before the courts in fair trials that do not lead to the death penalty", - "values": [ - "4 - General action" - ] - }, - { - "text": "Adopt relevant legislative acts and put forward monitoring mechanisms to ensure their effective implementation", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Strengthen the programmes developed to promote employment, food provision and social assistance in favour of national minorities and other vulnerable sectors of the population, in the fight against poverty and social inequality ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Ensure prompt investigation into allegations of and bring to justice those committing attacks against Palestinian human rights defenders.", - "values": [ - "4 - General action" - ] - }, - { - "text": "Increase its efforts to improve the education system, as a tool to enhance peaceful coexistence in the country", - "values": [ - "4 - General action" - ] - }, - { - "text": "Adopt legal instructions and orders to all armed forces, military intelligence and allied militia, with the aim to prevent and punish all abuses, including crimes of sexual and gender-based violence", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Take appropriate action to guarantee freedom of expression, association and assembly - including by allowing independent media, political parties and civil society groups to operate ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Take the necessary measures in favor of the right to work and fair conditions of work so that workers belonging to minorities, in particular women and undocumented migrant workers, do not become victims of discriminatory treatment and abuse in the work place and enjoy the full protection of the labour legislation, regardless of their migratory status", - "values": [ - "4 - General action" - ] - }, - { - "text": "Ratify the Optional Protocol to CEDAW, which was signed in 2001", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Strengthen the implementation of measures and provisions to eradicate all forms of discrimination and violence against women and girls ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Ratify the Rome Statute of the International Criminal Court and fully align its legislation with all the obligations under the Rome Statute", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Continue combating violence against women and domestic violence, taking into account the vulnerability of migrant women and adopting new legislative measures in support of this group", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Continue active cooperation with international organizations on the provision of technical assistance to support people with disabilities", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Pay the highest possible attention to children's rights, particularly through adopting a comprehensive code on children's rights", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Continue efforts in theoretical research related to national human rights organs", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Strengthen the strategic planning process initiated in its human rights national plan (2007-2031)", - "values": [ - "4 - General action" - ] - }, - { - "text": "Strengthen efforts to overcome the bottlenecks that slow down the process of implementation of the country\u2019s international obligations in the field of human rights", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Ensure that services for persons with disabilities support to the greatest extent possible their independence and that more community-based living choices are created for them in compliance with the Convention on the Rights of Persons with Disabilities", - "values": [ - "4 - General action" - ] - }, - { - "text": "Strengthen efforts to guarantee the independence of the judiciary according to international human rights standards", - "values": [ - "4 - General action" - ] - }, - { - "text": "Take all necessary measures to complete the process of establishing a national human rights institution in accordance with the Paris Principles", - "values": [ - "4 - General action" - ] - }, - { - "text": "Create and maintain, in law and in practice, a safe and enabling environment, in which human rights defenders and civil society can operate free from hindrance and insecurity, in accordance with Human Rights Council resolutions 22/6 and 27/31", - "values": [ - "4 - General action" - ] - }, - { - "text": "Enhance the development of the social security system, raise the level of social security", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Establish effective consultation processes with the indigenous peoples and communities concerned for any project that might affect their territory or livelihoods", - "values": [ - "4 - General action" - ] - }, - { - "text": "Repeal all legislation giving rise to discrimination against people on grounds of their sexual orientation or gender identity and refrain from reintroducing the Anti-Homosexuality Act, annulled by the Supreme Court in 2014", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Review the National Security Act, in particular the extensive powers granted to the National intelligence and Security Service, to bring it in line with international human rights law", - "values": [ - "3 - Considering action" - ] - }, - { - "text": "Intensify its efforts in protecting the rights of women and promote gender equality by revising legal framework, strengthening law enforcement and supporting victims of domestic violence in their legal process, rehabilitation and reintegration", - "values": [ - "4 - General action" - ] - }, - { - "text": "Continue to combat discriminatory societal behaviours, in particular discrimination against women in law and practice, and take further steps to address violence against women, and domestic violence in particular ", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Increase efforts to criminalize human trafficking and take necessary measures for its prevention", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Share its experiences and best practices in the field of reduction of poverty and improvement of standards of living with other developing countries", - "values": [ - "1 - Minimal action" - ] - }, - { - "text": "Update the 1996 Action Plan to combat sexual exploitation of children and ensure its effective implementation, including monitoring and evaluation ", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Eliminate any legislation or measures that discriminate on the basis of religion", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Take the necessary measures to ensure to improve education for children ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Take measures to prevent the sexual abuse, neglect and trafficking of children, child prostitution and pornography, in line with commitments under the OP-CRC-SC", - "values": [ - "4 - General action" - ] - }, - { - "text": "Address the wage gap by further strengthening measures in ensuring that women and men receive equal pay for work of equal value ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Achieve MDGs in order to design and implement comprehensive prevention programmes, and address food insecurity and malnutrition by adopting policies at federal and provincial levels to make vaccines mandatory", - "values": [ - "4 - General action" - ] - }, - { - "text": "Adopt legislative and other measures to explicitly prohibit and eradicate female genital mutilation, and reinforce awareness and education programmes about its harmful effects ", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Release all arbitrarily detained persons in Bahrain, including the Danish-Bahrain citizen Abdulhadi Al-Khawaja, a victim of torture who needs treatment and rehabilitation", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Expedite its on-going efforts in developing comprehensive strategies, plans, programmes and projects with a view to improve the protection of women in Guatemala", - "values": [ - "4 - General action" - ] - }, - { - "text": "Consider ratifying the International Convention for the Protection of All Persons from Enforced Disappearance CED and the Convention on the Rights of Persons with Disabilities CRPD - the two Optional Protocols to the International Covenant on Civil and Political Rights ICCPR - the Optional Protocols to the Convention on the Elimination of All Forms of Discrimination against Women and CRPD - and Convention No. 169 of the International Labour Organization, and accomplish the human rights goals set by Human Rights Council resolution 9-12 ", - "values": [ - "3 - Considering action" - ] - }, - { - "text": "Continue actions to address the needs of persons with disabilities", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Complete the national process aimed at abolishing the death penalty and ratify the Second Optional Protocol to International Covenant on Civil and Political Rights, aiming at the abolition of the death penalty ", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Conclude consultations on the composition of the National Commission for Human Rights, and make the Commission operational ", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "The Royal Government is committed to effectively implementing the policies of immigration along with the policy against all kinds of discrimination and at the same time safeguarding the country's sovereignty, national interests, reputations, dignity and harmony in the society.", - "values": [ - "4 - General action" - ] - }, - { - "text": "Prohibit child labour under the age of 15, and of those who have not yet completed compulsory education ", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Respect the ruling of the International Court of Justice of the Hague, of 27 June 1986, which orders the United States Government to compensate Nicaragua for the terrorist acts that the people of Nicaragua suffered on those years from the part of the American President Ronald Reagan ", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Consider establishing mechanisms aimed at early identification, referral, assistance and support for victims of trafficking", - "values": [ - "3 - Considering action" - ] - }, - { - "text": "Provide more resources to support the effective implementation of the Magna Carta of Women ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Guarantee non-discrimination against persons belonging to minorities ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Speed up as far as possible the adoption of the draft labour law including the section on domestic workers ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Gabon pledged to include civil society in its action and to turn to the National Human Rights Commission not only for the preparation of national reports but also for other activities related to the promotion and protection of human rights", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Respect its commitments concerning the freedom of expression which it undertook by ratifying the ICCPR ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Approve the request for a visit by the Special Rapporteur on the sale of children, child prostitution and child pornography ", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Take further measures to address violence against women, including domestic and sexual violence, especially in the field of prevention", - "values": [ - "4 - General action" - ] - }, - { - "text": "Take measures in order to ensure the compliance with the ILO Convention No. 169 and the Declaration on the Rights of Indigenous Peoples, including the recognition of the right to land and natural resources of all indigenous peoples in Paraguay ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Strengthen efforts to ensure the full enrolment of children, particularly girls, in educational institutions", - "values": [ - "4 - General action" - ] - }, - { - "text": "Consider signing the Convention on the Rights of Persons with Disabilities CRPD ", - "values": [ - "3 - Considering action" - ] - }, - { - "text": "Guarantee access to health services for those affected by the Fukushima nuclear accident, as well as for the generations of survivors of the use of nuclear weapons", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Continue to step up its efforts to integrate the human rights approach in the study plans and programmes of the national education system ", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Take additional measures to promote equality of access to employment", - "values": [ - "4 - General action" - ] - }, - { - "text": "Apply stronger measures to combat violence against women, as a follow-up to the National Strategy for the Elimination of Violence against Women 2013-2016", - "values": [ - "4 - General action" - ] - }, - { - "text": "Consider ratifying the Optional Protocol to CAT", - "values": [ - "3 - Considering action" - ] - }, - { - "text": "Provide clear instructions to the police, the gendarmerie and other relevant public officials as to their obligation to respect the absolute prohibition of torture", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Continue to work on raising the training of human resources and teachers to facilitate access to education for pupils with special needs ", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Ensure that all public power is exercised with respect for the equal worth of all, and the liberty and dignity of all persons ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Further consolidate measures to promote and protect the rights of migrants, including through monitoring mechanisms and awareness-raising of the public ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Enact without delay national legislation on domestic violence and marital rape and all forms of sexual abuse, and ensure equal rights for women, in law and in practice, in the areas of land ownership, inheritance, marriage and the protection of women and children, as recommended by the Committee on the Elimination of Discrimination against Women ", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Enhance efforts to provide appropriate assistance to victims of human trafficking and utilize the OHCHR Recommended Principles and Guidelines on Human Rights and Human Trafficking as a reference ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Continue its commendable engagement in the field of the international development cooperation despite current challenges ", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Ensure investigations of violence against women, and establish victim support programmes for affected women", - "values": [ - "4 - General action" - ] - }, - { - "text": "Explicitly and publicly recognize the legitimacy of the work of human rights defenders, including by making public statements recognizing their contribution to the promotion and protection of human rights and the rule of law", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Continue efforts to prevent violence against children ", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Strengthen cooperation with the treaty bodies by requesting the necessary technical assistance to this end", - "values": [ - "4 - General action" - ] - }, - { - "text": "Ensure that indigenous peoples are able to defend their constitutional right to ancestral lands without discrimination and their prior, informed consent is sought in cases of projects that may affect their rights ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Take all necessary steps to eliminate torture and other inhuman punishments in prisons and detention facilities", - "values": [ - "4 - General action" - ] - }, - { - "text": "Implement the recommendation made by the Committee on the Elimination of Discrimination against Women in 2008 on drafting strategies and programmes to combat prostitution. ", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Consider ratifying OP-CAT ", - "values": [ - "3 - Considering action" - ] - }, - { - "text": "Improve prison conditions by considering the implementation of the relevant concluding observations already made by treaty bodies in this respect", - "values": [ - "3 - Considering action" - ] - }, - { - "text": "Redouble its efforts to improve the basic standard of living including health and the education system", - "values": [ - "4 - General action" - ] - }, - { - "text": "Allow ICRC to gain access to prisons", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Promptly ratify and implement the human rights conventions signed in September 2013", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Take further steps to implement the recommendations accepted during the first review cycle", - "values": [ - "4 - General action" - ] - }, - { - "text": "Take necessary measures to eliminate discriminatory practices in the labour market with respect to women", - "values": [ - "4 - General action" - ] - }, - { - "text": "Engage with the Human Rights Council's special procedure mandate holders on addressing human rights challenges", - "values": [ - "4 - General action" - ] - }, - { - "text": "Complete the ratification process of CRPD", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Further strengthen measures to prevent and combat discrimination and investigate allegations of hate crimes", - "values": [ - "4 - General action" - ] - }, - { - "text": "Continue programmes and policies for the economic empowerment of women", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Continue to implement the Strategy for Roma Integration up to 2020", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Recognize the right of conscientious objection by law, to decriminalize refusal of active military service and to remove any current prohibition from employment in Government or public organizations, in line with the recommendation by the Human Rights Committee", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Continue to implement effective crime prevention measures to ensure safety and social order in its society ", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Invite women and other marginalized sectors to participate in other government consultative bodies ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Continue to bolster its legal arsenal with regard to child labour", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Establish a de jure moratorium on the application of the death penalty aimed at its definitive abolition in line with the recommendations of the Truth and Reconciliation Commission ", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Enhance efforts to reduce the high maternal and under-five morbidity and mortality rates", - "values": [ - "4 - General action" - ] - }, - { - "text": "Effectively implement the Law on Domestic Violence against Women, and enforce the policy of "zero tolerance" of sexual abuse in schools to provide better protection for women and girls ", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Keep combating discrimination in respect of employment and occupation for this important group of people, in accordance with Ecuador's Constitution and law ", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Sign the Optional Protocol to the United Nations Convention against Torture and Other Cruel, Inhuman or Degrading Treatment or Punishment ", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Complete the process of establishing the independent high commission for human rights", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Implement measures, including through legislation, to protect all citizens from discrimination due to their religious beliefs - and prosecute those involved in the persecution of religious groups ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Prevent any initiative contrary to General Comment 34 of the Committee of Human Rights", - "values": [ - "4 - General action" - ] - }, - { - "text": "Establish, in close collaboration with the international community, an independent international commission of inquiry or any other similar mechanism enabled to deal with human rights violations and international humanitarian law violations committed by all parties ", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Continue cooperating constructively with the universal human rights mechanisms and continue the practice of cooperation and dialogue with civil society", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Promptly ratify the International Convention on the Elimination of All Forms of Racial Discrimination", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Establish freedom of information laws, including by amending the Official Information Act of 1976, and increase access to Internet ", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Continue the efforts in the area of human rights training for the judiciary and police staff", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Step up its cooperation with the Special Procedures of the Human Rights Council by responding positively to the pending visit requests of the Special Procedures mandate holders and eventually consider extending a standing invitation to all the Special Procedures mandate holders of the Human Rights Council", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Step up the efforts to improve gender equality as well as to promote the rights of persons with disabilities, especially with regard to access to education and employment opportunities", - "values": [ - "4 - General action" - ] - }, - { - "text": "Steadily review the implementation of its new system of terrorism prevention and investigation to ensure the effectiveness in practice of safeguards against abuse and the deliberate targeting of certain ethnic groups", - "values": [ - "3 - Considering action" - ] - }, - { - "text": "Take action at all levels to address the interlinked root causes of preventable mortality and morbidity of children under 5 and consider applying the Technical guidance on the application of a human rights-based approach to the implementation of policies and programmes to reduce and eliminate preventable mortality and morbidity of children under 5 years of age (A/HRC/27/31)", - "values": [ - "4 - General action" - ] - }, - { - "text": "Strengthen its efforts to combat poverty and social inequalities", - "values": [ - "4 - General action" - ] - }, - { - "text": "Continue to take a comprehensive approach through its law and justice, civil society and health programmes to address the high incidence of violence against women ", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Continue to develop laws and make efforts to ensure freedom of religion and belief", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Continue to work towards clearing its backlog of periodic reports to the treaty bodies", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Provide Guyana security force members with adequate training on the appropriate use of force in accordance with international standards ", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Renew its commitment in favour of a national strategy to fight against racism ", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Re-establish a moratorium on executions with a view to abolishing the death penalty", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Continue its efforts to combat human trafficking and provide assistance to victims, especially women and children ", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Pass a law to criminalize all forms of human trafficking and ratify the 2000 Protocol to Prevent, Suppress and Punish Trafficking in Persons, especially Women and Children, Supplementing the United Nations Convention against Transnational Organized Crime", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Strengthen its social integration policy and take vigorous measures to combat all discriminatory practices proven in the territory ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Ratify ICCPR, ICESCR, CEDAW, OP-CEDAW and OP-CRC on the sale of children, child prostitution and child pornography.", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Establish an immediate moratorium on the death penalty with a view to its permanent abolition", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Take all necessary measures to implement the Act on the Prevention and Punishment of Violence against Women in order to effectively eliminate all forms of violence against women, including female genital mutilation and forced marriage", - "values": [ - "4 - General action" - ] - }, - { - "text": "Complete the enactment of the draft child protection act and incorporate in the act provisions to counter child, early and forced marriage", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Intensify efforts to better organize existing infrastructure and facilities relating to education so as to ensure that all children have equal access to education in both urban and rural areas", - "values": [ - "4 - General action" - ] - }, - { - "text": "Continue to allocate resources necessary for the implementation of projects to provide housing, food and temporary social assistance to victims of trafficking", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Strengthen its support to the Afghanistan Independent Human Rights Commission and the newly established Human Rights Unit within the Ministry of Justice, especially in the field of mapping past human rights abuses.", - "values": [ - "4 - General action" - ] - }, - { - "text": "Consider ratifying ILO Convention 189", - "values": [ - "3 - Considering action" - ] - }, - { - "text": "Ratify the Second Protocol of the International Covenant on Civil and Political Rights, aiming at the abolition of the death penalty, in order to de jure abolish the death penalty ", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Establish measures and programmes to eradicate human trafficking and gender-based violence, especially of women and girls", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Continue successfully implementing affirmative measures in order to guarantee gender equality and all its ensuing consequences ", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Take steps to reduce the use of pre-trial custody, to increase alternatives to imprisonment and to develop policies to protect the best interests of children with a parent in detention", - "values": [ - "4 - General action" - ] - }, - { - "text": "Continue its efforts to lower unemployment rate of persons with disabilities ", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Counter the trend of repressing free speech, including restrictions on media outlets, and take concrete steps to meet its obligations to create an environment that fosters freedom of expression ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Combat all forms of trafficking in children", - "values": [ - "4 - General action" - ] - }, - { - "text": "Enhance the level of cooperation with different United Nations treaty bodies and special procedures ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Ensure that those who find themselves in an irregular situation have legally recognized access to medical services and assistance, as provided in article 12 of the International Covenant on Economic, Social and Cultural Rights ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Guarantee effective consultations with communities that might be affected by development projects and exploitation of natural resources", - "values": [ - "4 - General action" - ] - }, - { - "text": "Strengthen the implementation of compulsory education for nine years", - "values": [ - "4 - General action" - ] - }, - { - "text": "Withdraw the Jaafari law on personal status issues, passed by the Council of Ministers in February 2014, which would legalize child, early and forced marriage and violate the human rights of women and children", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Prioritize the need to become party to the International Convention on the Elimination of All Forms of Racial Discrimination ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Sign, ratify and implement into its national legislation key human rights treaties, such as ICCPR and ICESCR", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Enact a law for the protection of human rights defenders", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Ensure the systematic functioning of all mechanisms for the delivery of financial and other forms of assistance to those in need which have been established within the framework of the National Social Assistance Programme", - "values": [ - "4 - General action" - ] - }, - { - "text": "Ensure that laws on indigenous peoples as well as their implementation comply with the Declaration on the Rights of Indigenous Peoples", - "values": [ - "4 - General action" - ] - }, - { - "text": "Fully cooperate with the Secretary-General, the African Union special envoys and OHCHR on the situation in Western Sahara", - "values": [ - "4 - General action" - ] - }, - { - "text": "Respect, protect and fulfill the human rights of stateless Rohingya persons, prioritize improving the situation of the Rohingya refugees, finalize its refugee policy and take measures to reinstate the resettlement programme", - "values": [ - "4 - General action" - ] - }, - { - "text": "Continue deploying efforts to attach priority to the vulnerable situation of child workers and children working in gold mining, and increase inspection of labour to ensure the effective application of laws related child labour in the formal and informal sectors, and ratify the ILO Convention No. 189 on Domestic Workers ", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Lift reservations to the articles 14, 20 and 21 of United Nations Convention on the Rights of the Child as these are incompatible with the object and purpose of the Convention", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Further strengthen the National Commission in accordance with the Paris Principles ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Consider ratifying the Optional Protocol to the Convention on the Rights of Persons with Disabilities (OP-CRPD) ", - "values": [ - "3 - Considering action" - ] - }, - { - "text": "Continue on the path towards development and democracy ", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Establish an institution to supervise and evaluate the implementation of the Convention on the Rights of the Child, in particular to put in place a plan of action to protect and reintegrate street children", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Withdraw reservations made to the Convention on the Elimination of All Forms of Discrimination against Women (CEDAW)", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Free health service", - "values": [ - "4 - General action" - ] - }, - { - "text": "Apply in an efficient manner the legislation that prohibits female genital mutilation", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Sign and ratify the Optional Protocol to the International Covenant on Economic, Social and Cultural Rights (OP-ICESCR) and OP-CRPD ", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Take urgent measures to protect women and girls against discrimination and gender disparities, in particular by ensuring their access to education", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Continue to enhance the human rights system according to the universally agreed principles, and refuse the imposition of values outside the legally agreed framework ", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Positively consider the establishment of a national human rights institution in accordance with the Paris Principles", - "values": [ - "3 - Considering action" - ] - }, - { - "text": "Adopt suitable measures and mechanisms, including the allocation of financial resources to prevent and combat effectively trafficking in persons", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Finalize the implementation of the "Master Plan for More Humane Prison Facilities" and continue to take action to address the problem of overcrowding in prisons and its consequences in regards to the conditions of the prisoners ", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Increase efforts in order not to use declarations of persons affirming having confessed under torture as evidence in judicial procedures, and carry out the corresponding thorough investigations", - "values": [ - "4 - General action" - ] - }, - { - "text": "Address the issue of unduly protracted detentions and to promote the use of alternative measures to pretrial detention, in particular for pregnant women and young children.", - "values": [ - "4 - General action" - ] - }, - { - "text": "Ratify or accede to the main instruments on human rights, in particular the International Covenant on Economic, Social and Cultural Rights ", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Continue its efforts to promote gender equality and women's empowerment", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Devote sufficient resources to the criminal justice and prison systems in an effort to reduce the sentencing backlog", - "values": [ - "4 - General action" - ] - }, - { - "text": "Promote efforts to abolish the death penalty ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Seek financial and technical assistance necessary to meet the challenges identified by the World Food Programme, namely the persistent food deficits, recurring drought and high malnutrition rates ", - "values": [ - "1 - Minimal action" - ] - }, - { - "text": "Intensify efforts to combat sexual violence and ill-treatment against women and children, including by providing specific training to law enforcement officers and judges ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Keep up its good work in upholding the rights of women, among other vulnerable groups", - "values": [ - "4 - General action" - ] - }, - { - "text": "Urgently adopt and implement measures to address child labour, in particular its exploitative forms", - "values": [ - "4 - General action" - ] - }, - { - "text": "Call upon the international community to provide substantial technical assistance to Cote d'Ivoire in order to expand the already outstanding achievements made in human rights promotion ", - "values": [ - "1 - Minimal action" - ] - }, - { - "text": "Consider ratification of the Optional Protocol to the Convention on the Rights of the Child on the involvement of children in armed conflict", - "values": [ - "3 - Considering action" - ] - }, - { - "text": "Ensuring that the rights to freedom of religion or belief of all migrant workers and members of their families are respected, inter alia ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Continue its efforts to implement the Istanbul Convention by ensuring that it has a sufficient budget, increase the number of shelters for women and children victims of violence, strengthen penalties for rape, improve the training of professionals for better reception of victims and better processing of their complaints", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Abolish the practice of arraigo", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Improve the overall situation of media freedom", - "values": [ - "4 - General action" - ] - }, - { - "text": "Immediately take all necessary measures to ensure access to humanitarian assistance and to protect civilians, including humanitarian workers, human rights defenders, and media workers, from attack", - "values": [ - "4 - General action" - ] - }, - { - "text": "Establish quick and effective measures to prevent, punish and eliminate violence against women taking into account the recommendations of the Committee on Economic, Social and Cultural Rights and the Human Rights Committee on effective access to justice for the victims of gender violence, police protection and the establishment of shelters for victims", - "values": [ - "4 - General action" - ] - }, - { - "text": "Adopt a broadly applicable anti-discrimination law, including a comprehensive definition of discrimination, with a view to ensuring the prohibition of all forms of direct and indirect discrimination, including on the basis of age, gender, religion, sexual orientation, ethnicity or nationality", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Intensify measures to enhance the participation of women in public life", - "values": [ - "4 - General action" - ] - }, - { - "text": "Consider reviewing policies on the detention of migrants that might imply their criminalization based on their migration status and promoting the creation of regular pathways for the admission and regularization of undocumented migrants", - "values": [ - "3 - Considering action" - ] - }, - { - "text": "Take holistic measures to protect the rights of persons with disabilities, the elderly and other vulnerable groups", - "values": [ - "4 - General action" - ] - }, - { - "text": "Strengthen measures to protect women who are victims of or are threatened with violence", - "values": [ - "4 - General action" - ] - }, - { - "text": "Abolish the death penalty and commute to prison terms the death sentences already pronounced", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Extend to all parts of the country the training given to the police, prosecutors and judges to effectively investigate, prosecute and punish hate crimes", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Use a gender sensitive approach in all poverty alleviation programmes ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Enact a comprehensive anti-discrimination law designed to prevent, combat and punish all forms of violence against women and girls, including domestic and sexual violence, and discriminatory infringements of the right to education ", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Take prompt measures to put an end to the current overcrowding and precarious conditions of prisoners ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Continue to implement policies to ensure the availability and affordability of education to all Indonesians, in particular those in the remote regions and those with special needs", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Further implement measures on the protection of victims of mistreatment and torture and on the prosecution of perpetrators", - "values": [ - "4 - General action" - ] - }, - { - "text": "Adopt a moratorium on the application of death penalty to put an end to the practice of public executions and the imposition of the death penalty for religious or political crimes ", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Provide the necessary resources to the health system, in order to strengthen it, and especially in order to lower child and maternal mortality rates", - "values": [ - "4 - General action" - ] - }, - { - "text": "Continue strengthening efforts to combat discriminatory attitudes towards children with disabilities and promote their participation in all aspects of social and cultural life ", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Implement measures to prevent violence against the LGBT community, through training and advocacy campaigns ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Review article 7 of the National Security Act, which restricts freedom of expression", - "values": [ - "3 - Considering action" - ] - }, - { - "text": "Review its legal measures and, if necessary, request the necessary technical assistance so as to ensure that boys and girls of all regions of the country have access to free and compulsory primary education ", - "values": [ - "3 - Considering action" - ] - }, - { - "text": "Review the practices concerning the removal of children from their families by the Child Welfare Service, in the light of the best interest of the child and take necessary measures to maintain the special bond of the child with his/her cultural, ethnic and religious identity, after removal from the family", - "values": [ - "3 - Considering action" - ] - }, - { - "text": "Develop and implement a comprehensive strategy to eliminate harmful practices, including early and forced marriage, FGM and unequal access to inheritance, based on the recognition of the equality between men and women, and supported by religious and traditional leaders, civil society, men and boys, as well as other relevant stakeholders ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Continue its positive efforts in reducing the numbers of persons at risk of poverty or social exclusion by 2020", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Allow due legal processes and judicial review by high courts and the Supreme Court for cases tried by military courts", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Take legislative measures to guarantee the independence of the National Peace and Reconciliation Commission and to ensure it is provided with the necessary powers and resources to effectively fulfil its constitutional mandate", - "values": [ - "4 - General action" - ] - }, - { - "text": "Take necessary steps to entrench, in practice as well as in legislation, freedom of expression and freedom of the media", - "values": [ - "4 - General action" - ] - }, - { - "text": "Eliminate the use of torture and other cruel, inhuman degrading treatment or punishment in places of detention.", - "values": [ - "4 - General action" - ] - }, - { - "text": "Strengthen and expand policies, protections and programs addressing gender-based violence and sexual exploitation of children, provide targeted training to law enforcement, and ensure survivors are protected and have access to medical and legal services", - "values": [ - "4 - General action" - ] - }, - { - "text": "Effectively implement the Convention on the Rights of Persons with Disabilities and the Optional Protocol thereto", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Continue improving the living conditions of detainees.", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Ratify the Second Optional Protocol to the International Covenant on Civil and Political Rights, aiming at the Abolition of the Death Penalty ", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Take appropriate measures to promote the registration of all children, paying particular attention to the most vulnerable and marginalized groups ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Strengthen efforts to alleviate social discrimination against Muslims, Roma, Jews and foreigners of African origin", - "values": [ - "4 - General action" - ] - }, - { - "text": "Ensure the full application of the Elimination of Violence against Women Law ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Take all necessary measures to ensure the application of all laws and the training of officials in the rights of the child", - "values": [ - "4 - General action" - ] - }, - { - "text": "Develop awareness-raising campaigns aimed at changing attitudes and behaviours related to domestic violence ", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Ratify the Agreement on the Privileges and Immunities of the International Criminal Court", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Ensure that decent sanitary conditions are guaranteed for detainees ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Include sexual orientation and gender identity specifically in antidiscrimination legislation, and consider using the Yogyakarta Principles on the Application of International Human Rights Law in relation to Sexual Orientation and Gender Identity ", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Strengthen its efforts to include the various Iranian cultures and traditions in its national legislation", - "values": [ - "4 - General action" - ] - }, - { - "text": "Take measures to implement the Supreme Court's decision concerning same sex marriage", - "values": [ - "4 - General action" - ] - }, - { - "text": "Establish a national human rights institution in line with the Paris Principles ", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Ensure that Australia lives up to its international obligations regarding asylum seekers and refugees", - "values": [ - "4 - General action" - ] - }, - { - "text": "Devote more effort to addressing the outstanding human rights issues through the National Action Plan, which is now in place, and provide adequate financial and human resources for its effective implementation", - "values": [ - "4 - General action" - ] - }, - { - "text": "Regulate minority and indigenous rights on the constitutional and legislative level, to establish a National Minorities Commission and to set up a national policy for the promotion and protection of minority languages", - "values": [ - "4 - General action" - ] - }, - { - "text": "Step up efforts to accede to the Trafficking in Persons Protocol ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Intensify efforts to eliminate, to a large extent, all possible forms of violence against children and institute comprehensive policies that guarantee the rights of children, including children with disabilities, irrespective of gender", - "values": [ - "4 - General action" - ] - }, - { - "text": "Consider elaborating an integrated national strategy to address the different forms of violence against women", - "values": [ - "3 - Considering action" - ] - }, - { - "text": "Adopt measures to eliminate all forms of violence against women including by ensuring that the perpetrators are prosecuted and punished and that the required protection and assistance is provided for the victims", - "values": [ - "4 - General action" - ] - }, - { - "text": "Ensure that domestic legislation conforms with the Convention on the Elimination of All Forms of Discrimination against Women and other human rights instruments, fully align its national legislation with the Rome Statute of the International Criminal Court and ratify the Optional Protocol to the Convention on the Rights of Persons with Disabilities", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Take adequate measures to protect its population from violence committed by the security forces and establish an independent mechanism for the investigation of complaints regarding abuses carried out by law enforcement officials ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Guarantee dual nationality in order to prevent discrimination against children whose parents have not renounced their nationality of origin", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Take immediate steps toward the adoption of the freedom of information Bill, building on its efforts to improve good governance, accountability and transparency", - "values": [ - "4 - General action" - ] - }, - { - "text": "Continue its efforts for empowering women to better improve their participation at the decision-making level", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Prioritize the enjoyment of the right to education all over the country", - "values": [ - "4 - General action" - ] - }, - { - "text": "Ratify or accede to all the core United Nations human rights instruments listed in the relevant compilation of OHCHR of 12 February 2014, relating to political rights, civil rights, economic and social rights, elimination of racial discrimination, torture, rights of women and genocide ", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Continue to strengthen the legal system and the State mechanism to protect human rights", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Consider joining ILO and ratifying its core Conventions", - "values": [ - "3 - Considering action" - ] - }, - { - "text": "Unify, both at federal and state level, the criminalization of offenses related to trafficking in persons", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Halt immediately all executions and implement a moratorium on the use of the death penalty", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Continue to participate actively in meetings of the Economic and Social Council and its various commissions and in the General Assembly and Security Council.", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Expand the legislation in order to protect women against all forms of violence and ensure that gender-based violence does not lead to impunity ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Abolish the practice of revoking nationality as a punishment on any grounds", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Adopt a moratorium on executions and abolish the death penalty", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Take the measures aiming at reinforcing the fight against torture and the fight against impunity", - "values": [ - "4 - General action" - ] - }, - { - "text": "Adhere to the Optional Protocol to the Convention against Torture", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Close the illegal places of detention, which are the source of grave human rights violations", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Consider contributing to the objective of mainstreaming the right to development in its ODA programmes and policies ", - "values": [ - "3 - Considering action" - ] - }, - { - "text": "Further strengthen existing efforts to integrate human rights in the national development policies, strategies and plans ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Continue a dialogue with minority religions", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Deepen its efforts to eliminate discrimination against women and respect the rights of the child by reforming the Nationality Law to enable Omani mothers to transmit their nationality to their children, regardless of the nationality of their father", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Establish an independent, impartial and credible national human rights institution in line with the Paris Principles", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Strengthen and ensure the independence of its human rights institutions such as the National Human Rights Commission in accordance with the Paris Principles and ensure its pluralist character.", - "values": [ - "4 - General action" - ] - }, - { - "text": "Adopt a new action plan against trafficking, reduce the time taken to issue residence permits and remove disparities thereof between cantons and remove structural and individual obstacles to work and training for migrants to combat racial discrimination through legal and administrative measures", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Develop and apply, as a matter of priority, strategies aimed at combating sexual violence against women, and especially girls, and ensure that they are provided with support for physical and mental health", - "values": [ - "4 - General action" - ] - }, - { - "text": "Implement effective measures to fight child labour and trafficking in children.", - "values": [ - "4 - General action" - ] - }, - { - "text": "Consider ratifying the ILO Discrimination (Employment and Occupation) Convention, 1958 (No. 111)", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Ensure that women enjoy equal access to the labour market and equal pay for work of equal value ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Prohibit corporal punishment of children at home ", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Take effective measures to eradicate underage recruitment under 18, to elaborate programmes for protection of children from torture, cruel, inhuman or degrading treatment and to provide independent access to physical and psychological recovery, social reintegration and compensation for victims of armed conflicts ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Actively seek funding to mitigate the harms from environmental degradation and adapt to the effects of climate change", - "values": [ - "1 - Minimal action" - ] - }, - { - "text": "Continue to take steps to decrease child mortality rate ", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Increase allocations for education and continue to improve the general quality of education", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Promote citizen and community participation in poverty alleviation programs currently being developed", - "values": [ - "4 - General action" - ] - }, - { - "text": "Continue attention towards further ratifications, including CAT and ICERD", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Thoroughly reform the legal framework regulating the founding and operation of independent media enterprises", - "values": [ - "4 - General action" - ] - }, - { - "text": "Continue to allocate sufficient resources to address the challenge of overcrowding, inadequate health and other services in the prisons, and to bring the prison conditions into line with international standards.", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Consider passing a domestic violence law which makes reporting of violence within the family and especially against women and children mandatory, and which creates a regime of family violence restraining orders designed to protect the family against further violence", - "values": [ - "3 - Considering action" - ] - }, - { - "text": "Make its procedures and decisions more transparent, and limit recourse to the law on State secrecy for corruption crimes, thus allowing monitoring bodies' independence and access in order to ensure that sanctions are fully applied ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Repeal laws that provide for the criminalization of LGBT persons, in accordance of the principle of non-discrimination", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Bhutan is committed to continue participating actively in all UN human rights activities with the objective of drawing on international best practices that can be incorporated into relevant domestic policies and legislations.", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Continue the fight against poverty as one of the country's key priorities", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Continue paying attention to persons with special needs", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Continue improving the often still precarious conditions in Benin prisons", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Intensify efforts in the field of ethnic diversity, including by strengthening the inclusive and multicultural education system ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Establish without delay a national prevention mechanism against torture, allowing non-governmental organizations and the Human Rights Commission of Uganda to have access to detention centres", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Ensure that the authorities allow and facilitate the registration of non-governmental organizations and opposition parties ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Fight against torture, in particular torture against minors ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Report back to the Human Rights Council on the concrete steps taken to implement the action plan mentioned in the report and on the difference this has made for the situation on the ground", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Regulate labour relations with special reference to ancillary or domestic workers", - "values": [ - "4 - General action" - ] - }, - { - "text": "Continue the policy aimed at improving the judicial system, reforming law enforcement bodies and lowering the level of crime and corruption", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Consider amending the Internal Security Act and bring domestic security legislation in line with international human rights standards, including through increasing legal safeguards of detainees and abolishing the practice of long detention without trial", - "values": [ - "3 - Considering action" - ] - }, - { - "text": "Register all individuals detained under security laws, and make this information publicly available.", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Take steps to protect the right to freedom of assembly and freedom of opinion and expression by ensuring the effective investigation and prosecution of alleged threats and violence by various non-state actors and extremist groups toward individuals and groups, including civil society organizations and individuals based on their sexual orientation", - "values": [ - "4 - General action" - ] - }, - { - "text": "Respond to communications and questionnaires of mandate holders.", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Take concrete and stern actions to ensure equal treatment for all in society, in particular to remove de facto discrimination against and xenophobic attitudes towards migrants, asylum seekers, refugees and other ethnic-religious minorities ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Continue implementing sound public policies to eradicate extreme poverty and hunger as acknowledged by specialized United Nations agencies", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Conduct follow-up activities related to the implementation of national legislation and awareness campaigns aimed at reducing the number of cases of domestic violence", - "values": [ - "4 - General action" - ] - }, - { - "text": "Continue to promote and protect human rights through education and institutional reforms", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Continue to implement a national gender equality policy by strengthening legislation for protection and non-discrimination, as well as equality ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Take steps to ensure that prisoners and detainees under the age of 18 are housed separately from the general prison population ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Implement the constructive recommendations of the LLRC, including the removal of the military from civilian functions, creation of mechanisms to address cases of the missing and detained, issuance of death certificates, land reform, devolution of power, and disarming paramilitaries", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Take necessary measures to hand in its national reports to CERD on time", - "values": [ - "4 - General action" - ] - }, - { - "text": "Strengthen efforts in order to achieve the MDGs and coordinate efforts with other developing countries and stakeholders", - "values": [ - "4 - General action" - ] - }, - { - "text": "Drop the planned amendments to the Terrorism Suppression Act, which would broaden the definition of a terrorist act by reducing judicial oversight, allow courts to consider classified information without giving it to defendants and give the Prime Minister the sole responsibility for designating groups and individuals as terrorists.", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Taking into consideration the reports of the Secretary-General about alleged human rights violations committed by the Forces Nouvelles, take measures to ensure the right to life, physical integrity and security of people ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Strengthen the efforts to ensure equal labour opportunities for women", - "values": [ - "4 - General action" - ] - }, - { - "text": "Create and maintain, in law and practice, a safe and enabling environment in which journalists, media workers, human rights defenders and civil society can operate free from hindrance and insecurity, in accordance with Human Rights Council resolutions 22/6, 27/5 and 27/31", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Eradicate persistent discrimination against and segregation of Roma children who are forced to attend schools for children with mental disabilities", - "values": [ - "4 - General action" - ] - }, - { - "text": "It must be noted that, the Government of the Republic of Azerbaijan is committed to cooperate with UN Human Rights Council, the Office of the High Commissioner for Human Rights and other mechanisms on human rights on protection and promotion of human rights, which is a priority issue for the Republic of Azerbaijan", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Fully implement its action plan to improve the living conditions of minorities, especially Roma ", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Respect the human rights of internally displaced persons and refugees.", - "values": [ - "4 - General action" - ] - }, - { - "text": "Take necessary measures to ensure that the National Human Rights Institution is brought into compliance with the Paris Principles", - "values": [ - "4 - General action" - ] - }, - { - "text": "Continue its efforts to prevent, punish and eradicate all forms of violence against women as well overcoming stereotypes which provoke genderbased discrimination ", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Combat impunity for attacks on human rights defenders, by effectively investigating allegations and by prosecuting those responsible and that Guatemala develop Government policy for the protection of human rights defenders, taking into account the views of civil society and also including the views delineated by the Presidential Commission on Human Rights in 2007.", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Facilitate the return of refugees and internally displaced persons", - "values": [ - "4 - General action" - ] - }, - { - "text": "Amend the Penal Code in order to criminalize all forms of sexual abuse of children, regardless of the sex of the child, and bring the perpetrators to justice", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Ensure that measures to address HIV also address the broader needs of vulnerable communities", - "values": [ - "4 - General action" - ] - }, - { - "text": "Continue its efforts in promoting and protecting human rights and other fundamental freedoms of the Libyan people ", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Ratify the main United Nations human rights instruments, particularly OP-CAT and CED", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Consider the possibility of acceding to and/or ratifying the Optional Protocol to the Convention on the Elimination of All Forms of Discrimination against Women ", - "values": [ - "3 - Considering action" - ] - }, - { - "text": "Adopt a comprehensive anti-discrimination law that addresses all grounds of discrimination", - "values": [ - "4 - General action" - ] - }, - { - "text": "Implement fully the new law on femicide and ensure that the physical security of women is protected by implementing CEDAW recommendations.", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Improve detention facilities, in particular to address overcrowding and sanitation problems", - "values": [ - "4 - General action" - ] - }, - { - "text": "Provide for training of members of the legal profession to be gender sensitive and work towards mobilization of religious leaders to support such efforts ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Continue improving conditions of detention, notably through the separation of quarters of children, women and men in detention facilities where this has not been achieved yet ", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Continue to fight against all forms of discrimination affecting religious minorities", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Allocate more educational resources to central and western regions, rural areas, remote and border areas, and in ethnic minority areas", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Implement legal reforms and measures necessary to eliminate all forms of discrimination against women, particularly regarding the age of marriage and the possibility of keeping the maiden's name", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Thoroughly investigate attacks on persons living with albinism and ensure that perpetrators of violations committed against them are brought to justice", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Provide secure shelter, as well as psychological and other assistance, to victims of domestic violence", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Continue enhancing legislation and policies to fight the scourge of gender-based violence at its roots, and in particular strengthen awareness-raising campaigns both in the media and in educational establishments ", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Bring legislation on the death penalty in line with international minimum standards, in particular by abolishing mandatory death penalty and the death penalty for drug-related offences, and take steps to approving a moratorium with a view to eventual abolition", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Strengthen the institutional framework for the protection of children's rights by setting up welcome centres and socio-professional training ", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Increase its scrutiny over extractive and logging industries and associated companies and businesses, with a view to reducing its negative impact on the environment and, consequently, its negative effects on the full enjoyment of human rights ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Continue its efforts to overcome the challenges of extreme poverty with the support and assistance of the international community ", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Lift the economic, financial and commercial blockade against Cuba, which affects the enjoyment of the human rights of more than 11 million people ", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Proceed with the abolition of the death penalty", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Continue efforts to improve standards of living, ensure broad access to quality education and health services", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Following the moratorium in force since 2004, undertake further measures to fully abolish the death penalty", - "values": [ - "4 - General action" - ] - }, - { - "text": "Eliminate negative stereotypes as well as combating torture and ill treatment by the law enforcement agencies", - "values": [ - "4 - General action" - ] - }, - { - "text": "Continue strengthening policies to promote gender equality and empowerment of women", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Call on OHCHR, in consultation with the Government, to provide technical assistance regarding the incorporation of international human rights instruments into domestic law.", - "values": [ - "1 - Minimal action" - ] - }, - { - "text": "Continue making efforts for the formulation of a national policy on gender ", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Establish a national plan to combat trafficking in persons and trafficking in women and children ", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Conduct national awareness campaigns to eradicate the discrimination against single mothers, in law and in practice", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "To take steps to increase women's participation in society as well as to further secure the rights of women and girls", - "values": [ - "4 - General action" - ] - }, - { - "text": "Step up efforts to promote, in law and in practice, the inclusion of persons of African descent in the educational system and on the labour market by taking policy measures", - "values": [ - "4 - General action" - ] - }, - { - "text": "Accede to/ratify the International Convention for the Protection of All Persons from Enforced Disappearance", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Promotion of human rights within the national police, modification of the document on criminal police record, creation of a human rights and anti-corruption unit within the National Police, reform of the manual on procedures for the handling of children", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Adopt a specific law against discrimination consistent with article 1 of the Convention on the Elimination of All Forms of Discrimination against Women ", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Establish a new NHRI, in accordance with the Paris Principles ", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Consider the establishment of a national human rights institution that will be granted accreditation status by the International Coordinating Committee of National Institutions for the Promotion and Protection of Human Rights", - "values": [ - "3 - Considering action" - ] - }, - { - "text": "Revise the legal framework on the rights of women and implement policies to eradicate discriminatory practices, including the necessary arrangements and adjustments as regard inheritance issues", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Accede to the Convention on the Rights of all Migrant Workers and Members of Their Families.", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Continue efforts to improve and facilitate access to the Internet and refrain from any restrictions on content other than permitted under international human rights law, in particular ICCPR", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Continue working to promote gender equality in the country ", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Define racial discrimination as an offence in domestic law in keeping with CERD's observation in 2010", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Further strengthen the implementation of some of the provisions of the law on comprehensive protection measures to tackle gender-based violence ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Develop an early-warning system by raising public awareness of the risks associated with migration and fictitious marriages ", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Take action to establish an independent national human rights institution in accordance with the Paris Principles.", - "values": [ - "4 - General action" - ] - }, - { - "text": "Decriminalize same-sex relations between consenting adults and ensure that no person is subject to arbitrary arrest or detention because of their sexual orientation or gender identity ", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Consider the possibility of extending a standing invitation to the human rights special procedures and setting up an institutional channel for responding to communications from them", - "values": [ - "3 - Considering action" - ] - }, - { - "text": "Continue working for the welfare of children, women and persons with disabilities", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Establish a special unit for the protection of children's rights", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Revise the Foreign Contribution (Regulation) Act to ensure benign working conditions for civil society in India", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Redouble its efforts to address racially motivated hate crimes by ensuring that all such incidents are thoroughly investigated and that perpetrators are brought to justice, and to continue to raise awareness of its people on this issue ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Reconsider being party to the International Convention on the Protection of the Rights of All Migrant Workers and Members of Their Families ", - "values": [ - "3 - Considering action" - ] - }, - { - "text": "Strengthen efforts to combat and prevent domestic and sexual violence against women", - "values": [ - "4 - General action" - ] - }, - { - "text": "Provide financial and human resources to the Interior Ministry to seize the large quantities of arms that exist within the civilian population and to improve the security situation and the living conditions of its prisons.", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Work to advance the legal and policy framework on evictions, expropriations and resettlements and to ensure that those resettled have access to the necessary facilities and support ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Amend the Action Plan to Promote Equality and Prevent Ethnic Discrimination 2009-2012 and the Action Plan to Improve Standards for Roma People June 2009 to contain policies that specifically address labour market inequalities based on ethnic origin ", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Consider ratifying the two remaining Optional Protocols to CRC to further ensure children's rights ", - "values": [ - "3 - Considering action" - ] - }, - { - "text": "Seek assistance from the United Nations specialized agencies, funds and programmes, especially within the framework of partnerships, with a view to realizing human rights in the areas of education, health, housing and development, and in addressing the legacy of nuclear tests ", - "values": [ - "1 - Minimal action" - ] - }, - { - "text": "Take effective measures to combat violence against women", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Consider re-examining reservations to the Convention on the Rights of the Child, the Convention on the Elimination of All Forms of Discrimination against Women and the Convention against Torture with a view to withdrawing them", - "values": [ - "3 - Considering action" - ] - }, - { - "text": "Give a high priority to the ratification of the Optional Protocol to the Convention on the Elimination of All Forms of Discrimination against Women", - "values": [ - "4 - General action" - ] - }, - { - "text": "Strengthen measures to ensure access to free birth registration of children, in particular of indigenous children", - "values": [ - "4 - General action" - ] - }, - { - "text": "Intensify its efforts to incorporate in its internal legal system international legal norms aiming at eliminating gender based discrimination ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Ratify the International Covenant on Economic, Social and Cultural Rights and the Optional Protocol thereto, the Optional Protocol to the Convention against Torture and Other Cruel, Inhuman or Degrading Treatment or Punishment, and the International Convention for the Protection of All Persons from Enforced Disappearance", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Continue its efforts in the field of human trafficking and most importantly facilitate access to justice for the victims ", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Establish clear legislation criminalizing hate crimes and ensure all incidents of religious hate speech are investigated", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Strengthen implementation of its obligations under the Convention on the Rights of the Child by adopting legislation based on the Organization of Eastern Caribbean States model Children (Care and Adoption) Bill, model Status of Children Bill, and model Child Justice Bill", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Make every effort to preserve the climate of peace achieved by the Comprehensive Peace\nAgreement during the six years of transition", - "values": [ - "4 - General action" - ] - }, - { - "text": "Uphold the rule of law, and make every effort to ensure that domestic war crime trials are carried out fairly and without discrimination", - "values": [ - "4 - General action" - ] - }, - { - "text": "Implement public policies permitting gender equality in the political and economic life of the country", - "values": [ - "4 - General action" - ] - }, - { - "text": "Extend a standing invitation to the special procedures mandate holders", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Strengthen the protection of ethnic minorities' religious, civil, socio-economic and political rights", - "values": [ - "4 - General action" - ] - }, - { - "text": "Decriminalize relations between persons of the same sex", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Further improve the quality of its health services through the implementation of its National Health Strategic Plan ", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Maintain and strengthen its political support and financial cooperation for the operations of the Office of the United Nations High Commissioner for Refugees, for the implementation of social projects in favour of Colombian refugees ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Continue to improve policies and programmes to advance the status of women and girls, and to protect children ", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Ratify the Rome Statute of the International Criminal Court as well as the International Convention for the Protection of All Persons from Enforced Disappearance ", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Investigate all attacks and hate speech against members of religious minorities, prosecute perpetrators and take steps to prevent reoccurrence", - "values": [ - "4 - General action" - ] - }, - { - "text": "Continue with the constitution making process, which should be transparent and include consultations with civil society", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Continue the accession process to the core human rights treaties ", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Continue to promote access to education", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Continue with its plans to enhance economic development in all regions of Sri Lanka", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Intensify efforts to prevent and combat cases of exploitation of children related to sexual tourism, including through legal measures that effectively protect child victims of sexual exploitation and prostitution, and to bring the perpetrators of these aberrant practices to justice ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Continue and strengthen, with international support and cooperation, its efforts to mitigate the negative impact of climate change, as well as disaster management programmes", - "values": [ - "4 - General action" - ] - }, - { - "text": "Establish operational mechanisms to receive complaints of any racist acts, investigate them and issue sanctions and compensation commensurate with their seriousness", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Adopt legislation to prevent and end all forms of violence against children", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Ratify the International Convention for the Protection of All Persons from Enforced Disappearance, the Rome Statute and the Optional Protocol to the Convention against Torture and Other Cruel, Inhuman or Degrading Treatment or Punishment ", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Intensify specific awareness-raising activities regarding sexual orientation at a national level to contribute to a better protection of the rights and freedoms of gays, lesbians, bisexuals and transsexuals ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Continue to strengthen its human rights infrastructure by adopting legislation and programs that would protect women and children from domestic violence and other forms of abuse, in line with international standards", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Implement criminal law provisions aimed at combating racially motivated crimes and punishing perpetrators", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Promote the strengthening of the very foundation of the family and its associated values in society through appropriate ways and means.", - "values": [ - "4 - General action" - ] - }, - { - "text": "Facilitate the provision of sufficient funding and staffing for the Human Rights Commission and different commissioners, including the recently appointed Commissioner against racial discrimination", - "values": [ - "4 - General action" - ] - }, - { - "text": "Refrain from reintroducing the death penalty and from lowering the minimum age of criminal responsibility", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Establish efficient mechanisms to investigate and punish hate crimes, racial harassment and racial discrimination against minorities and vulnerable groups", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Adopt legislation that criminalizes domestic violence and sanctions sexual harassment as a criminal offence, in accordance with the CEDAW provisions ", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Adopt comprehensive anti-discrimination legislation and take measures to prevent and combat discrimination on any grounds, including based on sexual orientation and gender identity, and religion", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Strengthen domestic legislation to include provisions that provide explicit protection from sexual and gender violence", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Ratify, as soon as possible, the International Covenant on Economic, Social and Cultural Rights, the International Covenant on Civil and Political Rights and the respective optional protocols to those Covenants ", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Continue its efforts to further the enforcement of child rights and laws", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Consider ratifying CRPD and ensuring its full implementation in domestic law ", - "values": [ - "3 - Considering action" - ] - }, - { - "text": "Embark on a reform of the judiciary to ensure its independence and impartiality ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Continue its efforts to support developing countries in their fight against poverty through its development assistances ", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Continue strengthening counter terrorism measures", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Promote the active presence of women in the society", - "values": [ - "4 - General action" - ] - }, - { - "text": "Ensure the investigation of all allegations of ill treatment and excessive use of force, and bring the perpetrators to justice ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Implement measures in support of enhanced participation of people with disabilities in the workforce", - "values": [ - "4 - General action" - ] - }, - { - "text": "Investigate fully and effectively harassment and attacks on journalists and bring those responsible to justice.", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Consider an early ratification of the Third Optional Protocol to the Convention on the Rights of the Child on a communication procedure", - "values": [ - "3 - Considering action" - ] - }, - { - "text": "Pass the Affirmative Action Bill speedily to allow the increase of women present in political offices", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Amend article 12 of the Constitution to facilitate the automatic incorporation in the internal legal system of international conventions it has signed up to in the area of human rights", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Adopt in line with the 2030 Agenda all legislative and political measures as needed to guarantee universal access to sexual and reproductive health, according to the Plan of Action of the Beijing Conference", - "values": [ - "4 - General action" - ] - }, - { - "text": "Take steps to ensure the independence of Elections Cameroon (ELECAM), including through allocation of sufficient budget", - "values": [ - "4 - General action" - ] - }, - { - "text": "Introduce a formal and immediate moratorium on executions as a first step towards the abolition of the death penalty and to commute all death sentences to terms of imprisonment, in line with international human rights standards", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Take all necessary measures to guarantee the exercise of the work of human rights defenders and take measures to fight impunity for perpetrators of attacks and threats against them", - "values": [ - "4 - General action" - ] - }, - { - "text": "Continue its efforts in gender mainstreaming in education and employment", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Continue promoting the repeal of prevailing discriminatory provisions against women and girls, especially those in the Civil and Criminal Codes", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Formally abolish the death penalty and ratify the Second Optional Protocol to the International Covenant on Civil and Political Rights", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Ratify the Convention on the Non-Applicability of Statutory Limitations to War Crimes and Crimes against Humanity", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Adopt an adequate legal framework in line with its commitments under the Palermo Protocol to combat human trafficking ", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Enhance its interaction with human rights organizations, as well as continue working on mechanisms of consultation between the Government and civil society, including enabling more effective involvement of civil society in the preparation of legal acts", - "values": [ - "4 - General action" - ] - }, - { - "text": "Incite open, cognizant, public and expert discussions in Malta on introducing abortion legislation even though in limited cases where the mother's or child's life is at risk", - "values": [ - "4 - General action" - ] - }, - { - "text": "Continue its efforts to ensure that its people have access to healthcare services, especially in rural areas", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Adopt legislation prohibiting the dissemination of ideas and expressions of racial hatred and violence against any group of persons", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Review its legislative and administrative measures with the aim of eliminating gender discrimination ", - "values": [ - "3 - Considering action" - ] - }, - { - "text": "Implement policies to combat discrimination against women, both in public and private life ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Adopt swiftly the comprehensive draft child rights law", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Properly investigate all attacks against human rights defenders and prosecute their perpetrators", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "The Government of Tuvalu remains committed and supportive of ongoing national discussions on the potential establishment of a national human rights institution. It is also supportive of a regional human rights commission.", - "values": [ - "4 - General action" - ] - }, - { - "text": "Expedite ratification of the Convention against Torture", - "values": [ - "4 - General action" - ] - }, - { - "text": "Develop a clear definition regarding the sale of children in the Penal Code and ensure its full enforcement with serious punishment for perpetrators ", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Cease forced dispossession and guarantee just and transparent process when it comes to land tenure ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Adopt legislation and measures to allow the free practice of religions in Sudan and in South Sudan ", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Abolish by law the death penalty and consider ratifying ICCPR-OP2", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Continue to step up efforts to combat human trafficking", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Pursue efforts aimed at eradicating the practice of female genital mutilation", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Continue to promote human rights education and training at all educational levels, disseminating international human rights instruments and national legislation to law enforcement officers to continue increasing their awareness of their role in protecting people's rights, particularly those of vulnerable and marginalised groups ", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Take steps to bring the National Human Rights Commission in line with the Paris Principles", - "values": [ - "4 - General action" - ] - }, - { - "text": "Amend visa application system by removing any requirements that violate the right to privacy", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Expedite the approval of the draft national action plan to combat racism, racial discrimination, xenophobia and related intolerance, by the relevant organ, and allocate proper resources for its implementation", - "values": [ - "4 - General action" - ] - }, - { - "text": "Strengthen the system of protection of the rights of the child by additional measures", - "values": [ - "4 - General action" - ] - }, - { - "text": "Implement a comprehensive strategy aimed at modifying or eliminating patriarchal attitudes and stereotypes which discriminate against women, in accordance with the provisions of CEDAW, included in the educational system, promote campaigns in the media to strengthen the understanding of equality between women and men, as well as expand public education programmes, particularly in rural and remote areas ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Pursue its commitment to developing human resources and to strengthening national social and political institutions in order to enhance its capacity to fulfil its international human rights obligations", - "values": [ - "4 - General action" - ] - }, - { - "text": "Replace the de facto moratorium with a de jure moratorium, to commute all death sentences, and stay all executions", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Raise the minimum legal age for marriage for women to correspond to the minimum legal age for men", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Redouble efforts to identify victims of human trafficking among asylum seekers, in particular unaccompanied children", - "values": [ - "4 - General action" - ] - }, - { - "text": "Promote improvement in the juvenile justice system ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Intensify efforts to address socioeconomic rights, particularly access to health and education", - "values": [ - "4 - General action" - ] - }, - { - "text": "Not to repeal section 266(b) of the Criminal Code ", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Adopt legislative and practical measures towards ensuring equality and equal opportunity in the fields of employment, education, health care and housing for all ethnic groups ", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Intensify the actions which ensure the integration of the Roma community and their full enjoyment of their human rights, in particular the rights to work and education", - "values": [ - "4 - General action" - ] - }, - { - "text": "Prohibit the use of torture, respect the principle of medical neutrality and the special protections granted to medical units by international humanitarian law, and protect and support humanitarian workers in their work", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Expedite the adoption of the draft law on trafficking in persons in accordance with international law", - "values": [ - "4 - General action" - ] - }, - { - "text": "Ensure that obligations regarding freedom of assembly and freedom of expression, to which Azerbaijan committed on becoming a member of the Council of Europe, are implemented consistently and transparently ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Continue to improve its health system and ensure access to quality health for all", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Reinforce the fruitful cooperation with the treaty body organs of the United Nations", - "values": [ - "4 - General action" - ] - }, - { - "text": "Establish an independent mechanism to investigate complaints related to discrimination and segregation within the schooling system ", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Improve the conditions of detention.", - "values": [ - "4 - General action" - ] - }, - { - "text": "Ensure comprehensive sexuality education with a view to preventing teen pregnancies and the spread of sexually transmitted infections, in particular HIV", - "values": [ - "4 - General action" - ] - }, - { - "text": "Intensify efforts to improve and ensure access to education for all children and to include human rights subjects in the school curricula", - "values": [ - "4 - General action" - ] - }, - { - "text": "Ratify the three optional protocols to the Convention on the Rights of the Child", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Step up efforts to combat violence against women by strictly enforcing relevant laws and improve victim support mechanisms", - "values": [ - "4 - General action" - ] - }, - { - "text": "Fully align its national legislation with the Rome Statute of the International Criminal Court, to ratify the Kampala amendments to the Rome Statute on the crime of aggression and to accede to the Agreement on the Privileges and Immunities of the International Criminal Court", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Investigate fully and effectively the violations committed against human rights defenders and journalists and to bring to justice those responsible", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Strengthen oversight with a view to ending excessive use of force by law enforcement bodies, particularly when it is directed to the racial minorities and bring those responsible for violation of laws to justice", - "values": [ - "4 - General action" - ] - }, - { - "text": "Continue efforts to achieve gender equality ", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "End politically motivated prosecutions and court proceedings, including those against members of the Human Rights Commission, and address the cases of individuals who have been convicted and imprisoned without minimum fair trial guarantees, such as former President Nasheed", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Prioritize public education and information as well as capacity building of state institutions as part of efforts to strengthen implementation of national human rights legislation", - "values": [ - "4 - General action" - ] - }, - { - "text": "Continue working to promote the rights of persons with disabilities and mainstreaming the rights of minorities and vulnerable groups in the social programmes and projects of the Government ", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Take all necessary measures to ensure effective implementation of the Caste-based Discrimination and Untouchability Act of 2011 and to eliminate all forms of discrimination against women", - "values": [ - "4 - General action" - ] - }, - { - "text": "Investigate and ensure justice to all reported cases of intimidation, harassment and attacks of human rights defenders and journalists", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Submit, as soon as possible, country reports to the Committee on the Elimination of Racial Discrimination, the Committee on Economic, Social and Cultural Rights, the Committee on the Elimination of Discrimination Against Women, the Committee against Torture and the Committee on the Rights of the Child", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Collaborate with treaty bodies and special procedures mandate holders ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Maldives will submit a mid-term review on the progress made on the implementation.", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Ratify the Optional Protocol to ICESCR, OP-CEDAW", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Share its best practices in the field of education for children with disabilities", - "values": [ - "1 - Minimal action" - ] - }, - { - "text": "Ratify ICESCR ", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Eliminate the prohibition of conversion to another religion, which undermines freedom of religion", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Immediately grant full and unconditional humanitarian access for the United Nations to the entire country, especially to the territories under siege by government forces", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Adopt and implement robust measures to better address domestic violence ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Become a member of ILO and ratify its conventions, in particular, Convention No. 111 concerning discrimination in respect of employment and occupation.", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Ratify and implement in national law the outstanding core international human rights treaties, in particular OP-ICESCR and CED ", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Step up their efforts in combating trafficking in persons ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Finalise the adoption of the Domestic Violence Bill and ensure that perpetrators of domestic violence are held to account", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Strongly recommended the repeal or amendment of Law 88 and Article 91 of the Criminal Code and the immediate release of unlawfully imprisoned human rights defenders, journalists, and others affected by the aforementioned legislation", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Review its national legislation with a view to bringing the definition of torture in line with the Convention against torture (CAT)", - "values": [ - "3 - Considering action" - ] - }, - { - "text": "Ratify the core international human rights instruments such as ICESCR", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Consider formulating legislation on eliminating violence against women, including domestic violence ", - "values": [ - "3 - Considering action" - ] - }, - { - "text": "Withdraw its two reservations to CEDAW", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Expand further the efforts and resources allocated to programmes devoted to promoting youth employment, particularly of young people with disabilities", - "values": [ - "4 - General action" - ] - }, - { - "text": "Continue to adopt all legislative and executive measures against gender-based violence, with special attention to migrant victims", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Step up efforts for the improvement of the justice as well as the penitentiary system", - "values": [ - "4 - General action" - ] - }, - { - "text": "Accede to the 1954 Convention relating to the Status of Stateless Persons and to the 1961 Convention on the Reduction of Statelessness ", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Strengthen human rights education as a pillar of prevention of gender-based violence", - "values": [ - "4 - General action" - ] - }, - { - "text": "Develop a national plan to combat discrimination, including through training for law enforcement agents and legal professionals and a campaign to raise public awareness", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Continue its on-going positive efforts for the promotion and protection of economic, social and cultural rights, and especially the priority given to health and education ", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Establish an independent national human rights institution to coordinate, develop capacities and strengthen respect for human rights in the country, in line with the Paris Principles", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Redouble efforts made to prevent and support victims of domestic violence, in particular children and women ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Join the 67 States that have signed the joint statement on human rights, sexual orientation and gender identity", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Grant expedited family reunification to refugees who are entitled to asylum due to the general situation in their home country, in particular "war refugees"", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Consider the ratification of the Rome Statute of the International Criminal Court", - "values": [ - "3 - Considering action" - ] - }, - { - "text": "Establish a national human rights institution in accordance with the Paris Principles and adopt a national action plan to address structural racial discrimination", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Strengthen measures to eliminate violence and discrimination against women and girls, particularly in rural and remote areas", - "values": [ - "4 - General action" - ] - }, - { - "text": "Amend the Citizenship Law to ensure that all persons born in Romania obtain a nationality, otherwise they would be stateless, regardless of the status of the parents ", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Establish a system for data collection to better evaluate the situation of migrants, and consolidate efforts to ensure that their rights are respected", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Stop the land segregation that has fomented the building of walls and barriers in areas such as Presov, Michalovce, Partizanske or Trebisov", - "values": [ - "4 - General action" - ] - }, - { - "text": "Continue to consolidate the positive societal policies in favour of vulnerable sectors, particularly children and adolescents", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Further promote and protect the rights of the national minorities", - "values": [ - "4 - General action" - ] - }, - { - "text": "Adopt and implement specific legislation on gender equality", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Consider developing a comprehensive domestic legal framework on the treatment of asylum seekers and refugees with a view to better ensure their basic human rights and living conditions", - "values": [ - "3 - Considering action" - ] - }, - { - "text": "Continue its efforts to effectively implement the New Zealand Disability Strategy with a view to ensuring the full realization of human rights for persons with disabilities ", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Eliminate all barriers to students' access to education in all provinces", - "values": [ - "4 - General action" - ] - }, - { - "text": "Continue with the programmes already launched to combat poverty ", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Request the international community assist the Democratic Republic of the Congo in strengthening the operational capacities of its provincial human rights divisions within the country", - "values": [ - "1 - Minimal action" - ] - }, - { - "text": "Consider an early ratification of the CAT and OP-CAT, ICCPR- OP2, OP-CEDAW, OP-ICESCR, OPs to CRC improve its cooperation with Special Procedures and other Human Rights mechanisms", - "values": [ - "3 - Considering action" - ] - }, - { - "text": "Intensify efforts to combat racial discrimination and intolerance targeting foreign nationals and minority groups, including by investigating promptly and taking action against the perpetrators of racist and xenophobic speeches and public statements", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Ratify and implement the CRPD, with active involvement of representatives of persons with disabilities ", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Continue strengthening the democratic character of its institutions, laws, policies and programmes that maintain their clear popular and participatory nature ", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Introduce a simpler registration process for religious organizations than currently exists.", - "values": [ - "4 - General action" - ] - }, - { - "text": "Pursue its efforts in the area of health and education", - "values": [ - "4 - General action" - ] - }, - { - "text": "Continue supporting the family as the main unit of society, promote strengthening of traditional family values", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Provide for an unhindered access of asylum-seekers to justice ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Further strengthen the financial resources of the Uganda Human Rights Commission", - "values": [ - "4 - General action" - ] - }, - { - "text": "Continue its constructive efforts in the field of human rights education, including its active cooperation with the key international organizations towards this end", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Take further measures for ensuring appropriate protection of the human rights of the Bidoun population", - "values": [ - "4 - General action" - ] - }, - { - "text": "Ensure full respect for freedom of expression and the press", - "values": [ - "4 - General action" - ] - }, - { - "text": "Consider establishing an independent commissioner for child rights", - "values": [ - "3 - Considering action" - ] - }, - { - "text": "Put an end to discrimination and repression against people because of their ethnic and religious affiliation, including Baha'is, Kurds, Ahwazis and Christians", - "values": [ - "4 - General action" - ] - }, - { - "text": "Continue to improve the supply of portable water, especially in the rural areas, with the support of the international community", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Strengthen the implementation of measures in order to achieve the prohibition of female genital mutilation", - "values": [ - "4 - General action" - ] - }, - { - "text": "Continue ongoing efforts to fully eradicate illiteracy ", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Ratify the Convention against Torture, the Convention on the Protection of All Persons from Enforced Disappearance and the Convention on the Protection of the Rights of All Migrant Workers and Members of Their Families", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Continue and accelerate efforts towards ratification of the Convention on the Rights of Persons with Disabilities", - "values": [ - "4 - General action" - ] - }, - { - "text": "Bring legislation governing the acquisition, retention or transfer of citizenship in line with article 9 of the Convention on the Elimination of Discrimination against Women, by removing any remaining discrimination", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Take more effective measures to combat all forms of violence against women and girls and to ensure that the perpetrators of violence are taken to justice and punished ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Do not further liberalize abortion and instead implement laws aimed at protecting the right to life of the unborn, recognizing that life starts at conception, and further, affirm that there is no international right to abortion", - "values": [ - "4 - General action" - ] - }, - { - "text": "Establish an effective and inclusive process with independent nongovernmental organizations to follow up on the universal periodic review recommendations ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Ratify as soon as possible the International Convention for the Protection of All Persons from Enforced Disappearance, a major instrument in the fight against impunity, and recognize the competence of the Committee on Enforced Disappearances", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Reinforce the measures to fight against the sexist stereotypes affecting women in particular, and stress the promotion of equal opportunity, namely through the full implementation of the laws on gender equality and equal treatment", - "values": [ - "4 - General action" - ] - }, - { - "text": "Enact the Integrated Education Act, so as to ensure children's rights to education by way of a coordinated legal framework, prescribing - inter alia -the extension of the compulsory primary school at least to 13 years age ", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Expedite the ratification of the Convention on the Rights of the Child", - "values": [ - "4 - General action" - ] - }, - { - "text": "Ratify the Rome Statute on the International Criminal Court and the ICRMW", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Continue work in order to ensure universal free primary education and broadened access to education and health care", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Continue its efforts for the judicial reforms to promote and protect the independence of judiciary", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Ratify the Optional Protocol to the Convention against Torture and other Cruel, Inhuman and Degrading Treatment or Punishment, the Optional Protocol to the Convention on the Elimination of All Forms of Discrimination against Women, and the Second Optional Protocol to the International Covenant on Civil and Political Rights ", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Follow up on CEDAW recommendations to amend the Special Marriage Act in the light of article 16 and the Committee's general recommendation 21 on giving equal rights to property accumulated during marriage.", - "values": [ - "4 - General action" - ] - }, - { - "text": "Improve access to justice for women victims of domestic violence and gender-based violence", - "values": [ - "4 - General action" - ] - }, - { - "text": "Ensure that legislation, including the proposed Bill 8711, is fully compliant with Ukraine's international commitments, including under the European Convention on Human Rights", - "values": [ - "4 - General action" - ] - }, - { - "text": "Consider the ratification of international human rights instruments to which it is not yet a party ", - "values": [ - "3 - Considering action" - ] - }, - { - "text": "Further enhance its efforts in promoting gender equality, as well as combating all forms of gender-based violence", - "values": [ - "4 - General action" - ] - }, - { - "text": "Carry out necessary measures, including legislative amendments, to ensure that all persons born in Serbia have access to birth registration regardless of the status of their parents ", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Continue to strengthen its environmental conservation efforts, which contribute significantly to global efforts to safeguard the common heritage of mankind ", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Seek the assistance of the international community in its efforts to combat poverty and to providing the necessary social services to its population based on the national priorities determined by the Government of Gambia", - "values": [ - "1 - Minimal action" - ] - }, - { - "text": "Sign, ratify and implement into its national legislation key human rights treaties, such as CAT", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Take the measures necessary to prevent discrimination against minorities, as well as to contribute to the positive image of migrants in the country", - "values": [ - "4 - General action" - ] - }, - { - "text": "Strengthen measures to prevent and eradicate all manifestations of discrimination, xenophobia and violence against foreign nationals", - "values": [ - "4 - General action" - ] - }, - { - "text": "Ensure that laws enacted to regulate non-governmental organizations will not undermine their independence or unduly restrict their activities in the defence of human rights", - "values": [ - "4 - General action" - ] - }, - { - "text": "Prioritize the reduction of its judicial backlog ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Promote the national policy aimed at achieving gender equality and the empowerment of women", - "values": [ - "4 - General action" - ] - }, - { - "text": "That the country assess the possibility of harmonizing its domestic legislation with standards set out in international instruments, according particular attention to two questions: the status of prisoners and the need to define the offence of torture in the aforementioned legislation", - "values": [ - "3 - Considering action" - ] - }, - { - "text": "Strengthen the efforts to fight against discrimination, guaranteeing the physical and mental integrity of the population", - "values": [ - "4 - General action" - ] - }, - { - "text": "Ensure free and compulsory primary education", - "values": [ - "4 - General action" - ] - }, - { - "text": "Continue the work being done to improve national legislation and law enforcement practices in the field of protecting the rights of disabled persons, according due consideration to generally acknowledged international standards", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Increase efforts to bring legislation in line with the principle of equality between women and men as well as to develop human rights education programs for its citizens to increase awareness of their rights under international human rights instruments ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Continue and further increase its efforts aimed at empowering women in Saudi society", - "values": [ - "4 - General action" - ] - }, - { - "text": "Carry on the efforts for the empowerment of women and provide employment opportunities for women", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Consider the effect and continued relevance of its remaining reservations to the Convention on the Rights of Persons with Disabilities, and consider the possibility of withdrawing them ", - "values": [ - "3 - Considering action" - ] - }, - { - "text": "Create more social awareness-raising campaigns against gender-based violence, with particular emphasis on its condemnation by the highest levels of the Administration - and more human rights training programmes for employees in the security and justice sectors ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Respond favourably to the request of special procedures mandate holders to enter the whole country, and fully cooperate with special procedures and other human rights mechanisms, in particular the Special Rapporteur on the situation of human rights in the Democratic People's Republic of Korea", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Continue to give greater impetus to a policy to prevent, combat and eradicate torture, including improvement of the definition of torture in accordance with article 1 of CAT", - "values": [ - "4 - General action" - ] - }, - { - "text": "Strengthen efforts to find a solution to the unrest in the southern border areas and ensure that justice is achieved for all sides ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Maintain and intensify the efforts towards the elimination of poverty and social inequality ", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Ratify the Second Optional of the ICCPR aiming at the abolition of the death penalty, as it is an indispensable instrument in furthering the enjoyment of the right to life ", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Intensify its efforts to domesticate the international norms aimed at eliminating gender based discrimination", - "values": [ - "4 - General action" - ] - }, - { - "text": "Take general measures to eliminate gender stereotypes on the role and obligations of women and men, in particular through awareness-raising campaigns and education", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Consider adopting cash grant policies to alleviate poverty of vulnerable groups and to link it with health care, such as vaccination and prenatal care", - "values": [ - "3 - Considering action" - ] - }, - { - "text": "Continue to deploy efforts to increase equity and equality between men and women in public service, particularly with the establishment of the High State Council for Equality and move forward with measures and legislation for social integration of migrant workers", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Consider ratifying the Convention on the Rights of Persons with Disabilities and put in place in timely fashion the draft law on people with disabilities.", - "values": [ - "3 - Considering action" - ] - }, - { - "text": "Take concrete measures to reduce child and maternal mortality rates", - "values": [ - "4 - General action" - ] - }, - { - "text": "Continue efforts to strengthen its democratic institutions and values and develop comprehensive national human rights policies to embrace all economic and social domains, such as education, health, the environment and poverty eradication programmes and support their implementation", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Ensure systematic access to education for all asylum-seeking children", - "values": [ - "4 - General action" - ] - }, - { - "text": "Adopt and duly implement measures to eradicate female genital mutilation, including public awareness-raising campaigns against this phenomenon ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Continue its efforts to provide universal access to education", - "values": [ - "4 - General action" - ] - }, - { - "text": "Intensify measures to strengthen inter-confessional and inter-ethnic harmony in the country", - "values": [ - "4 - General action" - ] - }, - { - "text": "Consider establishing a Constitutional Commission to conduct a comprehensive review of the Constitution, thereby ensuring that it is reflective of the will and aspirations of the citizens of Fiji, seeing that this might help to bring about a more stable political structure", - "values": [ - "3 - Considering action" - ] - }, - { - "text": "Enhance awareness-raising campaigns to combat and eradicate female genital mutilation and other traditional practices harmful to young women.", - "values": [ - "4 - General action" - ] - }, - { - "text": "Strengthen the national programmes to eliminate slavery and take measures to ensure that complaints regarding slavery are taken seriously and are being brought before the domestic courts", - "values": [ - "4 - General action" - ] - }, - { - "text": "Continue and further strengthen its anti-corruption policy.", - "values": [ - "4 - General action" - ] - }, - { - "text": "Pursue the implementation of the right to education for all with a particular attention given to the realization of this right for girls", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Become party to the International Convention on the Protection of the Rights of All Migrant Workers and Members of Their Families ", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Continue efforts to promote and protect economic and social rights through development strategies to encourage investment and employment", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Consider imposing a de facto moratorium on the use of the death penalty with a view to its total abolition", - "values": [ - "3 - Considering action" - ] - }, - { - "text": "Prohibit by law the practice of corporal punishment of children as a disciplinary method", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Improve the practical application and the incorporation of an inclusive approach to the rights of persons with disabilities in the adoption of the legislative measures to guarantee, in particular, equal access to public services", - "values": [ - "4 - General action" - ] - }, - { - "text": "Ensure equality in law between men and women and take necessary measures to combat discrimination, particularly in order to reduce pay gaps ", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Provide the necessary resources, personnel and authority to the Ministry of Labour to effectively enforce Guatemalan labour law, and comply with internationally recognized worker rights", - "values": [ - "4 - General action" - ] - }, - { - "text": "Increase measures to identify women and child victims of trafficking effectively in order to provide them with adequate assistance, and to consider not penalizing them for crimes committed as a direct result of being trafficked", - "values": [ - "4 - General action" - ] - }, - { - "text": "Reinstitute its moratorium on the use of the death penalty, as a first step towards its complete abolition and accede to the Second Optional Protocol to the International Covenant on Civil and Political Rights", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Develop the institutional environment for the protection of human rights in Iraq\n", - "values": [ - "4 - General action" - ] - }, - { - "text": "Strengthen its efforts to eliminate gender stereotyping", - "values": [ - "4 - General action" - ] - }, - { - "text": "Consider establishing a permanent inter-ministerial committee responsible for the implementation of its international human rights obligations, inter alia, for coordinating the drafting of the national reports to the treaty bodies and for organizing country visits by the Council's Special Procedures ", - "values": [ - "3 - Considering action" - ] - }, - { - "text": "Raise the age of criminal responsibility for juvenile offenders to at least 12 years, in line with the CRC's general comment ", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Expedite the process of granting citizenship to those minorities, including the Rohingyas, who consider Myanmar as home", - "values": [ - "4 - General action" - ] - }, - { - "text": "Increase efforts to promote human rights culture in society", - "values": [ - "4 - General action" - ] - }, - { - "text": "End the violation of the rights of indigenous peoples ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Continue promoting access to justice as a mean to combat violations of rights, in particular those of persons deprived of their liberty", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Facilitate the process of immigration's regularization for those persons who have resided in the country for an extended period and allow the registration of their children born in Malaysia", - "values": [ - "4 - General action" - ] - }, - { - "text": "Undertake further measures to ensure freedom of the press based on the decriminalization of press offences and respect for the legitimate rights of the press", - "values": [ - "4 - General action" - ] - }, - { - "text": "Decriminalize consensual sexual relations between consenting adults of the same sex", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Issue a standing invitation to all United Nations Special Rapporteurs and Working Groups ", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Take stronger steps to fight widespread crime and violence, with a special emphasis on bringing to justice of those responsible ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Continue its efforts in advancing human rights and freedoms in the country and especially in the conflict-affected areas", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "With the support from the WHO and other relevant UN agencies, continue to implement programmes to improve access to quality health-care services by its people ", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Investigate, and in the future prevent, cases mentioned by CESCR of the denied access of Roma to health services and their segregation in hospitals, including the existence of separate maternity wards for Roma women in some hospitals ", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Pursue the process of reconciliation and consolidate the peace building measures embarked on since the end of the conflict", - "values": [ - "4 - General action" - ] - }, - { - "text": "Harmonize national laws to incorporate the International Covenant on Civil and Political Rights, in particular articles 9, 12, 19, 21 ", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Adopt necessary measures to create the necessary conditions for the activities of a free independent mass media", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Further strengthen its cooperation with the Special Rapporteur on Cambodia and consider inviting special procedures thematic mandate holders in order to benefit from their expertise ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Continue the efforts which aim at expanding the inclusion of the general public in the decision-making process", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Undertake urgently a campaign and initiate programmes aimed at eliminating all forms of de jure and de facto discrimination against women.", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Develop a professional management approach within prisons as recommended by the Council of Europe's Committee for the Prevention of Torture ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Continue efforts to achieve universal basic education and reduce primary school drop-out rates, with the support of the international community.", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Accelerate the implementation of the advanced regionalization, as a means to further promote the participation of citizens, especially women and youths, from the 12 regions of the Kingdom in the political and economic governance of the country", - "values": [ - "4 - General action" - ] - }, - { - "text": "Confirm its commitment to equality and non-discrimination by explicitly prohibiting any discrimination on grounds of sexual orientation and gender identity ", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Adopt legislative and policy measures to combat discrimination on the basis of gender and against children and persons with disabilities", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Consolidate national human rights efforts through a federal human rights act and reinvigorating the National Human Rights Plan of Action", - "values": [ - "4 - General action" - ] - }, - { - "text": "Continue its work in defence of the rights of women, by promoting action to empower women", - "values": [ - "4 - General action" - ] - }, - { - "text": "Continue efforts to raise public awareness of human rights and effectively combat racism, racial discrimination and intolerance ", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Raise at the national level the institutions responsible for the design and implementation of gender policies", - "values": [ - "4 - General action" - ] - }, - { - "text": "Harmonize anti-discrimination laws by broadening their application scope so as to include the grounds of religion, belief, age and sexual orientation", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Build on Special Rapporteurs' visits and to issue standing invitations and to agree to all outstanding requests by the special procedures of the Human Rights Council.", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Increase budget allocations for the education and health sectors", - "values": [ - "4 - General action" - ] - }, - { - "text": "Adopt protocols on domestic and sexual violence for police agents", - "values": [ - "4 - General action" - ] - }, - { - "text": "Improve access for persons with disabilities to education and health care, with particular focus on children", - "values": [ - "4 - General action" - ] - }, - { - "text": "Adopt a strategic plan which includes elements of prevention, investigation and punishment of acts of violence as well as redress for victims, awareness raising and training for law enforcement staff", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Strengthen efforts in the fight against all forms of violence against women and to ratify OP-CEDAW", - "values": [ - "4 - General action" - ] - }, - { - "text": "Abolish the caste system that continues to promote de facto slavery through domestic servitude and bondage or forced labour", - "values": [ - "4 - General action" - ] - }, - { - "text": "Consider applying a moratorium on executions, with a view to ultimately abolishing the death penalty", - "values": [ - "3 - Considering action" - ] - }, - { - "text": "Continue with its current positive efforts for furtherance of the human rights protection ", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Ratify the Optional Protocol to CAT and the Optional Protocol to ICESCR", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Step up efforts to provide information and education on sexually transmitted diseases to its population, as well as to combat stigma against people living with HIV/AIDS", - "values": [ - "4 - General action" - ] - }, - { - "text": "Recognize that, though national Belgium's legislation fully complies with requirements to guarantee the absence of racial discrimination, it is not truly effective as complaints of discrimination by non-citizens and persons of foreign origin continue to be numerous, encourage the adoption of necessary measures to combat racial discrimination establishing public polices that would fight outbreaks of intolerance, discrimination and xenophobia. Additionally, fully respect the human rights of foreigners independently of their migration status", - "values": [ - "4 - General action" - ] - }, - { - "text": "Continue its efforts to improve conditions of detention ", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Further enhance the mandate of the Ombudsman Board in accordance with the Paris Principles ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Ratify the Convention on the Rights of Persons with Disabilities CRPD, OP-CAT and the Rome Statute ", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Remove the penalty of imprisonment from articles 102bis, 179, and 308 of the Penal Code", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Take effective measures to safeguard the rights of prisoners and to improve the living conditions, including medical and health services, for detainees", - "values": [ - "4 - General action" - ] - }, - { - "text": "Take steps to prevent attacks against immigrants and hate speech ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Introduce in its national legislation the definition of torture, reflecting that set out in article 1 of the Convention against Torture and other Cruel, Inhuman and Degrading Treatment or Punishment, and accede to its Optional Protocol OPCAT ", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Fully implement the recommendations of the LLRC, in particular steps to ensure independent and effective investigations into all allegations of serious human rights violations, in the context of Sri Lanka's civil war and its aftermath", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Exert more effort to enable women's participation in the political and the public life, and eliminating the barriers that prevent women from enjoying their rights, whether cultural or societal", - "values": [ - "4 - General action" - ] - }, - { - "text": "Cooperate fully with the Working Group on Enforced and Involuntary Disappearances ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Decriminalize consensual same-sex activity between adults. ", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Implement outcome-oriented programmes to empower women's participation in the work force and in political sphere", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Continue efforts to ensure the submission of national reports to the treaty bodies ", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Suspend the duties of officials implicated in any cases of enforced disappearance, summary execution and torture, and ensure all necessary measures are taken to investigate fully and impartially such cases and to bring the alleged perpetrators to justice before an independent tribunal, and, if found guilty, to ensure that they are punished in accordance with the international human rights obligations of Belarus, in compliance with General Assembly resolution 62-169", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Continue strengthening the role of the Inter-Religious Council in order to deepen the ethical values and fight against the moral corruption so that extreme and radical ideologies are eradicated from the society", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Accede to the Optional Protocol to the Convention against Torture and other Cruel, Inhuman or Degrading Treatment or Punishment, and incorporate its principles into domestic law ", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Further eliminate stereotypical attitudes about the roles and responsibilities of women and men ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Intensify efforts to strengthen programmes, projects and other measures to prevent discrimination against vulnerable groups, including some Roma women, asylum-seekers and migrants ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Establish a NHRI in accordance with the Paris Principles promptly.", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Adopt a specific domestic violence legislation to criminalize rape in marriage ", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Step up efforts to combat violence against children, including prohibition of corporal punishment", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Ratify the ILO Convention No. 169", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Adopt educational measures, from childhood, to foster social rejection of violence against women and children and encourage the use of complaints against such cases ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Ensure effective implementation of the National Roma Integration Strategy (2012-2020), including by identifying lessons learned and best practices in the implementation of the first phase", - "values": [ - "4 - General action" - ] - }, - { - "text": "Continue efforts so that the language referring to human rights truly reflects gender equality.", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Consider an early ratification of the third Optional Protocol to CRC on a communication procedure", - "values": [ - "3 - Considering action" - ] - }, - { - "text": "Step up efforts to strengthen public education, awareness-raising programmes and skill training at all levels, particularly aimed at preventing negative attitudes and behaviours, and to promote tolerance and respect for diversity", - "values": [ - "4 - General action" - ] - }, - { - "text": "Adopt the legislation facilitating the work of NGOs in a way that will promote human rights and benefit the overall political process in Egypt", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Strengthen the education system by making it mandatory and free of cost", - "values": [ - "4 - General action" - ] - }, - { - "text": "Adopt domestic laws to promote and guarantee women's political representation in decision making positions", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Initiate investigations into all allegations of torture or other forms of ill-treatment in a thorough, impartial and independent manner as required by international human rights law.", - "values": [ - "4 - General action" - ] - }, - { - "text": "Demonstrate a clear track record of war crime cases which shows standardized sentencing through a fair and non-discriminatory process", - "values": [ - "4 - General action" - ] - }, - { - "text": "Ratify the 1961 Convention on the Reduction of Statelessness and take concrete steps at national level to prevent and eliminate the causes that lead to statelessness", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Become a party to the three Optional Protocols to the Convention on the Rights of the Child", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Repeal past amnesty laws and bring to justice those responsible for human rights violations. Also, steps should be taken to establish an independent complaints mechanism with a mandate to investigate all allegations of human rights violations and abuses by security forces and armed opposition groups ", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Consider, as necessary, strengthening anti-discrimination policies and measures, paying particular attention to reception centres for asylum seekers and within the national programme against Racial Discrimination, Xenophobia and related intolerance ", - "values": [ - "3 - Considering action" - ] - }, - { - "text": "Continue the measures undertaken to promote the rights of women, including the on-going work on a draft law on the prevention of and fight against violence against women", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Grant and recognize refugee status for all persons coming under the mandate of the United Nations High Commissioner for Refugees, in particular by giving them the national documents necessary to that effect", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Prohibit all corporal punishment of children, including in the home", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Fully involve civil society in the work to follow up this session", - "values": [ - "4 - General action" - ] - }, - { - "text": "Further secure promotion and protection of the rights of women, combat against domestic violence and guarantee gender equality ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Ensure the constitutionality of the new Islam Law and guarantee that its implementation safeguards the full enjoyment of the freedom of religion and belief", - "values": [ - "4 - General action" - ] - }, - { - "text": "Appropriately fight and eradicate the worst forms of child labour.", - "values": [ - "4 - General action" - ] - }, - { - "text": "The Government of Kenya is committed to reducing hunger and malnutrition.", - "values": [ - "4 - General action" - ] - }, - { - "text": "Take into account the requirements related to sustainable development and the protection of the environment in the development of public policies", - "values": [ - "4 - General action" - ] - }, - { - "text": "Continue to provide better protection for the rights of all its citizens through the implementation of the national action plan against discrimination which reflects the firm resolve of the Government to combat all forms of discrimination on the grounds of origin in accordance with its international obligations ", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Consider introducing a definition of discrimination in its criminal law.", - "values": [ - "3 - Considering action" - ] - }, - { - "text": "Continue implementing the universal pension for older persons, and ensure that it reaches all intended recipients", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Continue efforts aimed at the protection of children from violence ", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Establish a definition of the child in accordance with article 1 and other principles and provisions of CRC, increase the legal age of majority of criminal responsibility, review legislation in force and customary law which establish different minimum ages in different sectors and which may not be in accordance with the relevant provisions of CRC", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Review the legislation and policies to warrant the full observance of international juvenile justice standards and cooperate with UNICEF on this matter", - "values": [ - "3 - Considering action" - ] - }, - { - "text": "Undertake a participatory and inclusive process with civil society organizations, including indigenous peoples organizations, in the implementation of universal periodic review recommendations ", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Consider re-acceding to the American Convention on Human Rights and accepting the contentions jurisdiction of the Inter American Court of Human Rights", - "values": [ - "3 - Considering action" - ] - }, - { - "text": "Eliminate all impediments to freedom of religion and belief at juridical and administrative levels, and put an end to the intimidation of members of religious communities.", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Uphold freedom of expression, including with respect to public denunciations of the royal family.", - "values": [ - "4 - General action" - ] - }, - { - "text": "Continue progress towards passage of subordinate legislation and full implementation of the Police Service Act 2009 and the Police Powers and Duties Act 2009 ", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Accelerate the ongoing efforts aimed at elaborating a national strategy to fight against poverty with particular emphasis on the reduction of extreme poverty", - "values": [ - "4 - General action" - ] - }, - { - "text": "Redouble efforts to protect freedom of opinion and belief and to promote media freedom and the rights of journalists", - "values": [ - "4 - General action" - ] - }, - { - "text": "Resist calls to further liberalize abortion and instead implement laws aimed at protecting the right to life of the unborn, and recognize that life starts at conception", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Improve the working conditions of human rights activists, to take all steps necessary to strengthen freedom of expression and freedom of the press and, in particular, to rigorously prosecute cases of intimidation against media representatives", - "values": [ - "4 - General action" - ] - }, - { - "text": "End the practice of forced return of persons who sought asylum in bordering States after the events in Andijan.", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Continue to empower the Roma minority and provide them with a greater role in society", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Consider its strong position and abolish the death penalty, if necessary by initially establishing a moratorium on executions, which would be in line with General Assembly resolution 63-168 on the moratorium on the use of the death penalty.", - "values": [ - "3 - Considering action" - ] - }, - { - "text": "Take steps to tackle corruption in the judiciary and the police, including by increasing access to relevant training, increasing oversight of both organizations and taking action when inappropriate behaviour is discovered", - "values": [ - "4 - General action" - ] - }, - { - "text": "Keep promoting progress in lesbian, gay, bisexual, transgender and intersex issues, especially in preventing discrimination based on gender or sexual orientation", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Further continue taking effective counter-terrorism measures as terrorism is a cause for serious human rights abuses in the country", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Ensure that Roma children have equal opportunities in access to quality education at all levels", - "values": [ - "4 - General action" - ] - }, - { - "text": "Adopt measures to strengthen the national human rights infrastructure, and continue its efforts to spread a culture of human rights and to build the necessary institutions and provide the necessary training and capacity building to the concerned departments", - "values": [ - "4 - General action" - ] - }, - { - "text": "Develop training programs for youth so as to improve their access to the labour market", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Monitor the implementation and ensure compliance with the law on vocational rehabilitation to make sure that persons with disabilities are not subject to discrimination and have equal opportunities to find employment", - "values": [ - "4 - General action" - ] - }, - { - "text": "Take further measures to improve women's access to decision-making and management positions, and to positions with improved career prospects, in both the public and private sectors", - "values": [ - "4 - General action" - ] - }, - { - "text": "Consider the ratification of ICESCR and the ICCPR, recalling paragraph 1 (a) of resolution 9-12 adopted by the HRC.", - "values": [ - "3 - Considering action" - ] - }, - { - "text": "Take measures to eliminate discrimination against Yezidis ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Carefully consider the proposed law on restrictions of the activities of non-governmental organizations to ensure that it does not impede the valuable work they are doing, together with Kyrgyz authorities, to combat human rights abuses and uphold individual freedoms in the country", - "values": [ - "3 - Considering action" - ] - }, - { - "text": "Withdraw its draft legislation criminalizing the promotion of homosexuality, and refrain from adopting any other legislation that restricts freedom of expression", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Continue to implement programmes and measures to ensure the enjoyment of the right to education and the right to health ", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Criminalise all forms of torture and ill- treatment", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Establish a moratorium on executions, with a view to abolishing the death penalty", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Adopt and implement reforms aimed at facilitating credible and responsible criminal investigations that respect human rights and at eliminating judicial corruption in order to ensure that persons suspected of breaking the law are apprehended, tried and sentenced in an efficient, accountable and transparent manner", - "values": [ - "4 - General action" - ] - }, - { - "text": "Consider the possibility of signing and ratifying the International Convention for the Protection of All Persons from Enforced Disappearance and accept the competence of its Committee.", - "values": [ - "3 - Considering action" - ] - }, - { - "text": "Complete, without delay, the ratification of the Convention against Torture and Other Cruel, Inhuman or Degrading Treatment or Punishment", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Provide access to drinking water for each Sudanese ", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Deepen the legal initiatives and their enforcement aimed at ensuring a legal and de facto situation that guarantees the human rights of migrants", - "values": [ - "4 - General action" - ] - }, - { - "text": "Maintain efforts to ensure the full implementation of the national plan of action against racism", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Promote the active participation of civil society in the process of follow-up to the UPR, noting broad participation of civil society in preparation of Cuba's national report", - "values": [ - "4 - General action" - ] - }, - { - "text": "Share its experience with other countries as regards education programmes for students to teach them the values of tolerance and openness of Islam", - "values": [ - "1 - Minimal action" - ] - }, - { - "text": "Intensify efforts aimed at accelerating the elimination of discrimination against women and promoting gender equality, including through the development of the proposed national database on gender-based violence", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Legally abolish the death penalty", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Strengthen measures to combat the phenomenon of FGM", - "values": [ - "4 - General action" - ] - }, - { - "text": "Intensify its efforts to protect the rights of the child, especially children in poverty, victims of child prostitution and children with disabilities, undertake a comprehensive review of national legislation to guarantee full implementation of the principle of non-discrimination as well as adopt a national strategy to mitigate against such a situation, as recommended by the Committee of the Rights of the Child in 2004, take all necessary measures to put an end to the practice of child soldiers ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Take necessary action to implement its commitment to extend standing invitations to the Special Procedures of the Human Rights Council ", - "values": [ - "4 - General action" - ] - }, - { - "text": "In the context of the fight against terrorism, that the use of force be in line with the United Nations Charter and international human rights law and with due respect for the necessity and proportionality criteria", - "values": [ - "4 - General action" - ] - }, - { - "text": "Persist in its efforts despite the difficulties both internal and external it has to face ", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Address the perceived climate of impunity by ensuring that any allegations of abuse are thoroughly investigated and effectively prosecuted ", - "values": [ - "4 - General action" - ] - }, - { - "text": "The Maldives partially accepts this [100.60] recommendation. The Maldives is committed to taking a wide-range of actions to eliminate violence against women.", - "values": [ - "4 - General action" - ] - }, - { - "text": "Consider acceding to the Optional Protocol to International Covenant on Civil and Political Rights", - "values": [ - "3 - Considering action" - ] - }, - { - "text": "Continue to proceed with the work of reviewing and making necessary adjustments to relevant domestic laws and regulations for the prompt ratification of CEDAW.", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Adopt comprehensive measures to address violence against women and girls", - "values": [ - "4 - General action" - ] - }, - { - "text": "Continue to improve its efforts regarding the integration of citizen of Muslim confession within the German society while at the same time ensuring enjoyment of their human rights including the right to freedom of religious practices", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Take all necessary measures to prevent exploitation, including human trafficking that Rohingya Muslims are suffering from, and address the root causes that force them to be vulnerable to those practices", - "values": [ - "4 - General action" - ] - }, - { - "text": "Take all necessary measures to guarantee the full and effective implementation of laws on the protection of women and girls so as to strengthen the rights of victims, but also to fight against the impunity of perpetrators of violence against them", - "values": [ - "4 - General action" - ] - }, - { - "text": "Take all steps to improve prisoners' condition. ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Establish a national human rights institute in accordance with the Paris Principles, in accordance with the Order of Application relating to the human resources of the national human rights institution created in 2015", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Investigate and prosecute crimes of trafficking in persons and provide effective support and rehabilitation for the victims", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Remain vigilant on the issues of blood feud and domestic violence - develop and support programmes to provide help to victims of domestic violence ", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Suspend Article 128 of the Iraqi Penal Code and put in place steps to repeal it completely", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Expedite its efforts to adopt the law on the prohibition of all fascist and neo-fascist organizations and the use of their symbols", - "values": [ - "4 - General action" - ] - }, - { - "text": "Improve its efforts on child protection systems, particularly children belonging to marginalized and disadvantaged groups ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Take steps to further ensure freedom of speech and freedom of access to information both online and offline", - "values": [ - "4 - General action" - ] - }, - { - "text": "Continue efforts to combat poverty through comprehensive programmes aimed at both rural and urban areas", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Improve access to drinking water and sanitation in rural areas and urban settlements as well as in key areas such as schools in order to bring about the realization of the right to drinking water and the right to sanitation", - "values": [ - "4 - General action" - ] - }, - { - "text": "Undertake efforts to prevent child labour, the segregation of children with disabilities in educational system and prevent the crimes committed against children, especially smuggling and sexual harassment ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Continue applying the provisions of the Penal Code regarding FGM, bringing to justice and punishing perpetrators of those crimes, their accomplices and those who do not denounce them, intensify awareness raising campaigns and training with a view to explain that FGM is a form of discrimiantion and violence based on gender, and thus eradicate this practice and the cultural justifications in which it is based", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Pay specific attention to staff members' education and human rights training of personnel of law-enforcement agencies, courts and investigating authorities ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Ensure that, at a minimum, the institution of the ombudsman will be in a position to provide full protection to vulnerable groups through a human rights institution in conformity with the Paris Principles", - "values": [ - "4 - General action" - ] - }, - { - "text": "Amend domestic legislation to remove all forms of gender-based discrimination and protect the rights of women and children", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Dedicate sufficient resources to national human rights institutions to enhance their effective functioning and independence", - "values": [ - "4 - General action" - ] - }, - { - "text": "Consult and involve NGOs as well as civil society in the follow-up to the UPR ", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Take further measures to promote equal representation of men and women in decision-making positions", - "values": [ - "4 - General action" - ] - }, - { - "text": "Ratify the Convention on the Rights of Persons with Disabilities as soon as possible ", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Establish a national human rights institution in accordance with the principles relating to the status of national institutions for the promotion and protection of human rights (the Paris Principles)", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Revise laws still containing discriminatory provisions, enact comprehensive anti-discrimination legislation and expressly include the prohibition of discrimination on the grounds of sexual orientation or gender identity in such legislation ", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Consider the possibility of ratifying or acceding, as appropriate, to ICRMW, CED, OP-CAT and CRPD ", - "values": [ - "3 - Considering action" - ] - }, - { - "text": "Adopt an anti-trafficking law to protect and assist victims of such criminal and clandestine activities ", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Promote and advance policies that focus on the alleviation of poverty", - "values": [ - "4 - General action" - ] - }, - { - "text": "Study the possibility of the ratification of the Optional Protocol to the Convention against Torture", - "values": [ - "3 - Considering action" - ] - }, - { - "text": "Ensure the implementation of gender equality laws, specifically the General Act for Equality between men and women, in all 32 states", - "values": [ - "4 - General action" - ] - }, - { - "text": "Consider responding affirmatively to the visits requested by human rights mandate holders, within the context of its cooperation with OHCHR ", - "values": [ - "3 - Considering action" - ] - }, - { - "text": "Continue to undertake measures to promote and enhance the rights of women", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Continue the dialogue and positive measures to foster national reconciliation and social cohesion", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Fully guarantee freedom of expression and establish a national observatory for demonstrations, in particular with a view to elections", - "values": [ - "4 - General action" - ] - }, - { - "text": "Ratify without delay the Optional Protocol to the Convention on the Rights of the Child on the involvement of children in armed conflict and the Optional Protocol to the Convention on the Rights of the Child on the sale of children, child prostitution and child pornography", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Maintain constructive cooperation with the treaty bodies of the United Nations human rights instruments to which the Democratic People's Republic of Korea is a State party", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Use fully the National Human Rights Institute as a fundamental piece of the comprehensive strategy for the protection of human rights ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Strengthen the Sex Discrimination Act as indicated in the national report, and consider the adoption of temporary special measures, as recommended by the Committee on the Elimination of All Forms of Discrimination against Women ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Ratify the Optional Protocol to the Convention on the Rights of Persons with Disabilities (OP-CRPD) ", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Withdraw all reservations with regard to CEDAW and CRC", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Recognize the principle of non-discrimination, which prohibits discrimination on any ground, including sexual orientation, and to abolish the law that criminalises homosexuality without delay", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Put an end to the obligation for children to follow their last year of school in the military camp of Sawa ", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Approve a comprehensive law on the fight against human trafficking especially for women ", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Continue strengthening its social plans in the area of the reduction of poverty and social exclusion ", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Ensure that victims of domestic violence have access to immediate remedies and protection, and review legislation on residence permits with a view to avoiding the effect that the application of the law might have in practice, forcing women to remain in abusive relationships", - "values": [ - "4 - General action" - ] - }, - { - "text": "Continue to promote gender equality and eliminate discrimination against women and girls in accordance with its obligations under the Convention for the Elimination of All Forms of Discrimination against Women ", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Harmonize national legislation governing registration and funding of NGOs with the Venice Commission recommendations, with a view to ensuring a free and open space for its civil society ", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Improve the conditions of workers and employers so as to enjoy their right to form their own organizations as well as to enjoy appropriate protection against any act of discrimination aimed at undermining freedom of association", - "values": [ - "4 - General action" - ] - }, - { - "text": "Appoint an independent ombudsperson to guarantee more effective control of compliance with human rights norms by State organs", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Consider establishing a moratorium on executions of the death penalty with the aim of abolishing it", - "values": [ - "3 - Considering action" - ] - }, - { - "text": "Continue to implement policies for the development of its people, including measures to eradicate poverty and ensure food security", - "values": [ - "4 - General action" - ] - }, - { - "text": "Formally abolish the death penalty, as previously recommended", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Bring all legislation concerning communication surveillance into line with international human rights standards and especially require a test of necessity and proportionality for all communications surveillance", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Consider withdrawing its declaration made upon ratification of the Convention on the Rights of the Child, and continue and complete its review of legislation to ensure full compliance with the Convention", - "values": [ - "3 - Considering action" - ] - }, - { - "text": "Expedite the submission of reports to treaty bodies", - "values": [ - "4 - General action" - ] - }, - { - "text": "Increase efforts to tackle domestic violence, gender stereotypes and discrimination on that ground", - "values": [ - "4 - General action" - ] - }, - { - "text": "Continue efforts to combat trafficking in human beings and prosecute traffickers ", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Comply with the recommendations of the Committee on the Rights of the Child and the Committee on the Elimination of All Forms of Discrimination against Women concerning the sterilization of women and girls with disabilities", - "values": [ - "4 - General action" - ] - }, - { - "text": "Strengthen efforts in mitigating the effects caused by the decline in schools in recent years to ensure that the children's schooling cycle is not left vulnerable", - "values": [ - "4 - General action" - ] - }, - { - "text": "Ratify the Conventions on refugees and stateless persons", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Strengthen actions that aim at eliminating cultural patterns that discriminate against women, promoting adequate access to judicial protection in order to prevent cases of violence affecting their life, health and integrity remaining unpunished", - "values": [ - "4 - General action" - ] - }, - { - "text": "Promote human rights education for security and police forces ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Intensify the implementation of the National Action Plan on Women and of gender-sensitive poverty reduction and development programmes", - "values": [ - "4 - General action" - ] - }, - { - "text": "Continue to take agricultural productivity measures to ensure food security in the country", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Include concrete measures to effectively reduce social and regional inequalities in the context of the next Poverty Reduction Programme (PARP) ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Continue implementing the designed road map, with a view to putting in place a national mechanism for the prevention of torture", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Increase access to health establishments and care by trained personnel, in particular in rural areas and regarding post-natal care ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Adopt effective measures to overcome the inequality affecting women in accordance with the provisions of the CEDAW and recommendations of UNDP-UNIFEM ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Continue to work, with development partners, towards compulsory basic education for all children, building on the progress and reforms to date ", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Combat torture committed in particular by law enforcement officers and in prisons and ensure that such acts not remain unpunished", - "values": [ - "4 - General action" - ] - }, - { - "text": "Include human rights education in school curricula", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Consider acceding to the Rome Statute", - "values": [ - "3 - Considering action" - ] - }, - { - "text": "Intensify its efforts to support the rights and freedoms of minorities by undertaking prompt and impartial investigations into reports of attacks against religious and ethnic minorities and bring to justice those responsible", - "values": [ - "4 - General action" - ] - }, - { - "text": "Combat human trafficking and forced prostitution in particular of children ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Oversee the effective implementation of the law on domestic violence ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Redouble its efforts for the ratification of the International Convention on the Protection of the Rights of All Migrant Workers and Members of Their Families", - "values": [ - "4 - General action" - ] - }, - { - "text": "Ensure the adequate completion of investigations into the killings of aid workers, including by encouraging the Presidential Commission of Inquiry to use its legal investigative powers to their full extent.", - "values": [ - "4 - General action" - ] - }, - { - "text": "Strengthen its efforts to prevent all forms of discrimination", - "values": [ - "4 - General action" - ] - }, - { - "text": "Complete the ratification process of ICRMW ", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Take the necessary steps to ensure that all allegations of mistreatment are impartially investigated ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Repeal all discriminatory provisions against lesbian, gay, bisexual and transgender people ", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Strengthen policies aimed at the protection of children and the prevention of domestic violence", - "values": [ - "4 - General action" - ] - }, - { - "text": "Ensure the application in the private sector of the provisions against sexual harassment of the Labour and Employment Relations Act", - "values": [ - "4 - General action" - ] - }, - { - "text": "Integrate into national legislation the principles and provisions of international human rights instruments ratified by Syria, and abolish laws that contradict them", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Make every effort to ensure that the Deceased Estates Bill and the Marriage, Divorce and Family Relations Bills, particularly in relation to the rights of women, enter into force as soon as possible ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Continue the efforts to combat the practice of female genital mutilation", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Guyana is primarily committed to the implementation of the recently adopted Rights of Persons with Disabilities Act. This statute has been carefully scrutinised and found to be in compliance with the Convention. Guyana will continue to actively consider ratifying the Convention.", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Further combat discrimination against persons with drug dependence and persons living with HIV-AIDS, particularly children", - "values": [ - "4 - General action" - ] - }, - { - "text": "Allocate resources to promote universal access to HIV prevention and treatment in state and NGO-run health-diagnostic facilities without fear of stigma and discrimination", - "values": [ - "4 - General action" - ] - }, - { - "text": "Review Article 373 of the Criminal Code so that it cannot be abused for persecution of persons belonging to sexual minorities.", - "values": [ - "3 - Considering action" - ] - }, - { - "text": "Take all necessary steps to fully commit to end impunity for international crimes by acceding to the Rome Statute of the ICC and to fully align its national legislation with all obligations under the Rome Statute ", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Continue taking temporary special measures to accelerate the improvement of the situation of women", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Adopt laws to combat ritual crimes, punish appropriately the instigators and perpetrators of such offences, and put in place a comprehensive strategy to eliminate them", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Incorporate the Convention on the Elimination of All Forms of Discrimination against Women, the International Covenant on Economic, Social and Cultural Rights and the Convention against Torture into national legislation as soon as possible.", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Continue its efforts by ratifying the International Convention on the Protection of the Rights of All Migrant Workers and Members of Their Families ", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Sign and ratify the Optional Protocol to the International Covenant on Economic, Social and Cultural Rights, the International Convention for the Protection of All Persons from Enforced Disappearance, as well as intensify its efforts for the prompt ratification of the Convention on the Rights of Persons with Disabilities and its Optional Protocol", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Ensure the right to freedom of religion or belief ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Strengthen the protection of journalists and investigate those responsible for spreading personal data of journalists and inciting attacks against them. Investigate and prosecute as a matter of priority killings of journalists, such as that of Pavel Sheremet", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Continue to promote the efforts to make mentally and psychologically disabled persons benefit from the health-care services", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Ratify the Optional Protocol to the Convention on the Rights of the Child", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Intensify efforts in fighting the root causes of violence against women by paying special attention to addressing alcohol and drug abuse", - "values": [ - "4 - General action" - ] - }, - { - "text": "will consider ratification of the ICRMW after having completed a study of its legal implications", - "values": [ - "3 - Considering action" - ] - }, - { - "text": "Promote effective follow-up to the recommendations issued by the international monitoring mechanisms to the country in the field of human rights ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Report on the implementation of the 2012-2016 Action Plan against Child Abuse, including sexual violence and child pornography, during the next interim UPR report ", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Adhere to the initiative on Voluntary Principles on Security and Human Rights", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Adopt appropriate measures to ensure the protection of human rights defenders, journalists and political opponents against acts of aggression and intimidation", - "values": [ - "4 - General action" - ] - }, - { - "text": "End the deliberate and indiscriminate attacks against civilians in Darfur and prosecute those responsible for these attacks ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Introduce a comprehensive and inclusive national plan of action to guarantee the rights of persons with disabilities, in accordance with international human rights law", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Request international assistance in order to combat scourges such as malaria, tuberculosis and HIV/AIDS ", - "values": [ - "1 - Minimal action" - ] - }, - { - "text": "Further strengthen cooperation with the UN human rights mechanisms, particularly Special Procedures and try to respond in a timely manner to the questionnaires sent by the Special Procedures", - "values": [ - "4 - General action" - ] - }, - { - "text": "Lift all restrictions on the media which violate the constitutionally recognized right to the freedom of expression and establish a calendar for the revision of norms such as the Emergency Decree of the Public Administration in Emergency Situations, the 2007 Computer Crimes Act and article 112 of the Penal Code which defines the crime of lèse-majesté tied to the concept of national security", - "values": [ - "4 - General action" - ] - }, - { - "text": "Implement follow up mechanisms of the UPR recommendations that allows verifying the implementation and impact of legislation and measures adopted to promote equal rights and non-discrimination for all citizens, in particular vulnerable groups such as: women, children, ethnic minorities, LGBTI community and persons with disabilities ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Include a comprehensive definition of racial discrimination and a definition of torture in the relevant laws", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Further improve the legislative framework to control trafficking in migrant women and their exploitation in prostitution and in inhuman and undignified occupations", - "values": [ - "4 - General action" - ] - }, - { - "text": "Accede to the 1954 Convention relating to the Status of Stateless Persons and the 1961 Convention on the reduction of statelessness ", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Work towards raising awareness of the right to a safe environment through participation and cooperation among all partners", - "values": [ - "4 - General action" - ] - }, - { - "text": "Expedite action to address the two issues contained in paragraphs 30(a) and (b) of the national report through the proposed amendment to the Representation of the People Act. ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Continue efforts to promote equality between women and men, by encouraging a balanced representation in decision-making positions, equality in the labour market and in entrepreneurship, including equal pay, among other aspects", - "values": [ - "4 - General action" - ] - }, - { - "text": "Adopt measures to increase the representation of women in positions of responsibility in the legislative and executive organs, setting specific deadlines for this", - "values": [ - "4 - General action" - ] - }, - { - "text": "Sign and ratify the international conventions and covenants in the field of human rights and allow women to contribute to the labour market, education, and political participation", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Continue following-up on steps taken to eliminate discrimination against women, including through awareness raising and continuous strengthening of the relevant legal and institutional frameworks ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Improve the facilities in the reception centres", - "values": [ - "4 - General action" - ] - }, - { - "text": "Take the necessary measures to combat violence against women and discrimination in employment", - "values": [ - "4 - General action" - ] - }, - { - "text": "Ghana's Criminal Code be amended to decriminalise sexual activity between consenting adults. ", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Systematically and continuously integrate a gender perspective in the follow-up process to the UPR.", - "values": [ - "4 - General action" - ] - }, - { - "text": "Provide, in the fight against AIDS, support and access to medicines to all people in need ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Implement public awareness campaigns to promote tolerance and respect for cultural diversity and to counter prejudice, stereotypes, discrimination, racism, and Islamophobia", - "values": [ - "4 - General action" - ] - }, - { - "text": "Develop and introduce specific measures directed at improving professional training of the staff of the children institutions, improving the legislation and practice in the provision of psychiatric treatment, as well as eradicating discrimination against ethnic minorities ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Continue efforts to combat human trafficking both through the introduction of relevant legislation as through national and state programs and plans for its implementation", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Consider signing and ratifying the Optional Protocol to the Convention on the Elimination of All Forms of Discrimination against Women", - "values": [ - "3 - Considering action" - ] - }, - { - "text": "Issue a standing invitation to all thematic Special Procedures mandate holders, in particular the Special Rapporteur on the rights to freedom of peaceful assembly and of association", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Continue efforts to guarantee effective social coverage and all related services", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Continue the efforts to promote human rights, with the strengthening of the national legislative framework on human rights", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Raise awareness among religious leaders, magistrates and different political actors with a view to combat sociocultural factors which run counter to the harmonious development of Guinean society", - "values": [ - "4 - General action" - ] - }, - { - "text": "Redouble the capacity-building efforts for all the security forces, aiming at avoiding practices of racial bias, or, directed, among others, against vulnerable minorities such as lesbian, gay, bisexual, transgender and intersex persons", - "values": [ - "4 - General action" - ] - }, - { - "text": "Strengthen measures to respond to gender-based violence in every sphere of public and private life ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Eliminate the harmful practice of early marriage and raise awareness among the public and parents for the effective protection of minor girls", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Ratify and implement ICCPR and ICESCR as soon as possible without restrictions and take measures to adapt its national legislation ", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Continue implementing programmes and measures aimed at guaranteeing universal health and education services of quality to the entire population ", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Continue its efforts to put in place effective poverty reduction and health strategies, particularly to solve the problem of low life expectancy and high mortality rate.", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Protect and promote the right of Nigerians to practice their religious faith or beliefs, including by enhancing the dialogue between different faith communities to address interreligious tensions - particularly those in the Middle Belt States - and to combat all forms of extremism", - "values": [ - "4 - General action" - ] - }, - { - "text": "Continue its efforts aimed at strengthening the institutional capacities of the People's Advocate institution", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Further develop, exponentially and progressively, free and compulsory quality education for all children up to 15 years of age", - "values": [ - "4 - General action" - ] - }, - { - "text": "Adopt a general legal framework against discrimination, defining this crime comprehensively, including direct and indirect forms of discrimination, contemplating all spheres of public and private law, and criminalising acts committed by public and private agents", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Consider further cooperation with the international human rights monitoring mechanisms, including treaty bodies and Special procedures of the Human Rights Council", - "values": [ - "3 - Considering action" - ] - }, - { - "text": "Continue efforts to strengthen the rule of law by ensuring greater effectiveness and transparency in the judicial system, combating corruption, and investigating all reports of abuse and torture by police", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Continue ongoing efforts and adopt effective measures and policies to stop and prevent sexual violence against women and girls ", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Re-adopt the moratorium on death penalty with a view of its total elimination.", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "As a first step, consider amending their legislation on the death penalty in order to restrict its scope and adjust it to the international minimum standards on the death penalty, and, in the light of the increasing awareness of the international community on the matter, as reflected in General Assembly resolutions approved in 2007 and 2008, consider the establishment of a moratorium on the use of the death penalty with a view to abolishing capital punishment in the national legislation", - "values": [ - "3 - Considering action" - ] - }, - { - "text": "Pursue and enhance efforts to combat human trafficking as well as raising awareness as to the threat posed by this scourge and protect its victims", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Impose an immediate moratorium on all death sentences", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Intensify its efforts to oversee Czech companies operating abroad with regard to any negative impact of their activities on the enjoyment of human rights, particularly in conflict areas which includes situations of foreign occupation, where there are heightened risks of human rights abuses", - "values": [ - "4 - General action" - ] - }, - { - "text": "Conduct outreach programmes in rural areas in order to ensure that women with disabilities are not discriminated against or socially excluded", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Exert more efforts towards strengthening the rights of the child through the adoption of a national policy for children", - "values": [ - "4 - General action" - ] - }, - { - "text": "In line with the rules 83-85 of the United Nations Standard Minimum Rules for the Treatment of Prisoners, "the Nelson Mandela rules", to create an external, independent inspection body that has access to all categories of prisoners in all places of detention that are under the Ministry of Justice", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Elaborate an action plan for ensuring free access to the electronic media and for liberalizing the electronic media ownership rules", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Step up the process of reviewing the reservations made to the international human rights treaties", - "values": [ - "4 - General action" - ] - }, - { - "text": "Continue to focus on the overall improvement in the quality of education provided, particularly in rural areas ", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Promote and uphold the freedom of the media and the right to freedom of expression and ensure that legislation and practice are brought in line with article 19 of the International Covenant on Civil and Political Rights as well as conducting impartial investigations into all cases of attacks, harassment and intimidation and bringing perpetrators to justice", - "values": [ - "4 - General action" - ] - }, - { - "text": "Make greater efforts to establish a national institution for human rights and cooperate with the Office of the United Nations High Commissioner for Human Rights and other relevant United Nations organs, and seek from the international community the necessary financial support to attain that objective ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Take all possible measures to protect the rights of expatriate workers, particularly the means for legal redresses", - "values": [ - "4 - General action" - ] - }, - { - "text": "Take all necessary measures to ensure that all children, particularly Roma children, have equal opportunities for access to school. ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Ensure that any persons involved in racial discrimination acts are investigated and prosecuted, and, if found guilty of such incidents, punished with appropriate penalties ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Continue to improve its education system and ensure access to quality education for all, in cooperation with UNESCO", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Strengthen training and awareness-raising of the main social actors on international human rights standards", - "values": [ - "4 - General action" - ] - }, - { - "text": "Implement recommendations made by independent electoral observation missions in relation to the conduct of the October 28th Ukrainian parliamentary elections, as a matter of priority", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Step up its efforts to ensure equal treatment of women and girls, particularly by ratifying the Convention to Eliminate All Forms of Discrimination against Women", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Establish a national mechanism to prevent torture competent to visit detention centres and monitor the situation of detainees", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Implement the constitutional review of the death penalty and to confirm commitment to a moratorium with a view to abolishing death penalty", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Encourage the collective return of the Iraqi refugees, ensure their rights and reintegrate them into the unified Iraqi society", - "values": [ - "4 - General action" - ] - }, - { - "text": "Adopt socio-economic measures aimed at ensuring the social and labour integration of the Roma minority ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Put an end to mandatory religion courses for the "Alevis"", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Strengthen its policy to combat racism, racial discrimination, xenophobia and related intolerance", - "values": [ - "4 - General action" - ] - }, - { - "text": "Prevent discrimination or trafficking of migrant workers, establish warning mechanism and complaints mechanisms in case of violations and carry out awareness campaigns on their rights", - "values": [ - "4 - General action" - ] - }, - { - "text": "Continue its efforts to ensure access to state education for all children, without regard to their legal status", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Duly implement and follow-up on the National Health Strategic Plan, above all its HIV related provisions, with a view to fighting new infections, discrimination and lethality", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Enhance efforts to achieving the Seven-Step Roadmap as the Government of Myanmar has promised toward building a democratic and ruled-by-law State ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Take all necessary measures to provide appropriate support to allow disadvantaged families and their children to move out of poverty sustainably and continue to provide assistance to those who remain under the poverty line ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Continue work in the fight to eradicate racism, incitement to racial hatred and all forms of discrimination, especially against migrants ", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Ratify the International Convention on the Protection of the Rights of All Migrant Workers and Members of Their Families.", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Enhance its efforts to prevent and root out all kind of national and ethnic intolerance, as well as condemn any incitement to ethnic and religious hatred and hate speech against the Roma in particular", - "values": [ - "4 - General action" - ] - }, - { - "text": "Consider ratifying ICRMW ", - "values": [ - "3 - Considering action" - ] - }, - { - "text": "Introduce into the life of the people of Maldives only that which is in keeping with their traditions and customs and their public morals ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Take the necessary steps for the ratification of ICESCR, ICCPR, ICERD and CAT ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Continue to strengthen cooperation with civil society organizations", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Guyana supported Recommendation 70.43 on increasing the age of criminality and volunteered to report the outcomes of the on-going consultations in relation to the new draft Juvenile Justice Bill.", - "values": [ - "4 - General action" - ] - }, - { - "text": "Incorporate in the legislation the combat against discrimination based on gender identity or expression ", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Take further steps to protect freedom of expression by creating an environment in which the media can operate freely, without discrimination, fear of retribution, or arbitrary punishment", - "values": [ - "4 - General action" - ] - }, - { - "text": "Modify its legislation to ensure that the provisions prohibit and penalize the sale and trafficking of girls and boys under the age of 18 for sexual and labour exploitation ", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Ensure the effective implementation and enforcement of existing legislation with a view to reducing structural disadvantages that hamper the effective realization of substantive gender equality", - "values": [ - "4 - General action" - ] - }, - { - "text": "Review its legislation regarding discriminatory practices against women", - "values": [ - "3 - Considering action" - ] - }, - { - "text": "Respond positively to the request for a visit of the Special Rapporteur on freedom of religion or belief ", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Amend its national legislation on defamation and blasphemy in accordance with international human rights law", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Provide law enforcement and judiciary members with training on addressing domestic violence and child abuse cases and build their capacity to record and track complaints ensuring that all allegations are thoroughly investigated and that all perpetrators are prosecuted", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Ratify international instruments still pending, particularly the International Covenant on Civil and Political Rights, the International Covenant on Economic, Social and Cultural Rights, the Optional Protocol to the Convention against Torture, the Optional Protocol to the Convention on the\nRights of Persons with Disabilities, and the Rome Statute", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Complete the Process of adopting legislative measures to prevent and prosecute acts of torture and other ill-treatment, according to international standards", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Fully prohibit corporal punishment against children in all settings, including at home", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Offer redress for the many enforced disappearances and summary executions", - "values": [ - "4 - General action" - ] - }, - { - "text": "Works towards the rapid inclusion within its national legislation of the provisions of recently ratified instruments including the Rome Statue", - "values": [ - "4 - General action" - ] - }, - { - "text": "Protect human rights of all individuals without any discrimination based on gender, origin, religion or customs", - "values": [ - "4 - General action" - ] - }, - { - "text": "Request for technical assistance and capacity building from the Office of the High Commissioner for Human Rights in order to continue to improve the lives of the Tanzanians ", - "values": [ - "1 - Minimal action" - ] - }, - { - "text": "Intensify its cooperation efforts, including with international organizations, with view to harmonize its human rights legislation", - "values": [ - "4 - General action" - ] - }, - { - "text": "Consider the recommendation of the Committee on Economic, Social and Cultural Rights to adopt specific legislation on domestic violence, particularly against women", - "values": [ - "3 - Considering action" - ] - }, - { - "text": "Fully implement the 2003 law on juvenile justice", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Ratify the first Optional Protocol to the International Covenant on Civil and Political Rights", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Reinforce legal protections against discrimination to include sexual orientation and gender identity as prohibited grounds for discrimination ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Continue to invest in education, giving special attention to women and girls.", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Prioritize measures to minimize and end pay differentials between men and women ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Continue the policy of protection of national minorities and promotion of religious tolerance ", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Safeguard freedom of expression, association and of the press and eradicate any type of activity that may be considered torture under judicial procedures ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Further increase efforts in the promotion and protection of the rights of the child", - "values": [ - "4 - General action" - ] - }, - { - "text": "Guarantee the independence of the judiciary by reforming article 109, number 7, of the Organic Code of the Judiciary in order to clearly delimit, in accordance with international law, the figure of \u201cinexcusable error\u201c, which is now insufficiently safeguarded against misuse for targeting judges", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Ensure the effective implementation of the right to development by strengthening local capacity", - "values": [ - "4 - General action" - ] - }, - { - "text": "Continue the significant progress made in fighting trafficking", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Continue its measures in order to increase opportunities for consultations on child rights issues with relevant stakeholders ", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Punish the perpetrators of racial aggression", - "values": [ - "4 - General action" - ] - }, - { - "text": "Strengthen its specialized Juvenile Justice system, to promote alternative measures to deprivation of liberty, and continue improving the social services available to adolescents deprived of their liberty", - "values": [ - "4 - General action" - ] - }, - { - "text": "Ratify other major international human rights conventions such as the International Covenant on Civil and Political Rights, International Covenant on Economic, Social and Cultural Rights, and the Convention on the Rights of Persons with Disabilities ", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "The Head of Delegation assured that the Government was fully committed to educating its populace on human rights issues, including introducing such training in the primary and secondary school curriculum", - "values": [ - "4 - General action" - ] - }, - { - "text": "Impose an immediate moratorium on the death penalty, and commute all death sentences to imprisonment terms with a view to abolishing it entirely ", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Impose an immediate moratorium on executions as a first step towards the abolition of the death penalty", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Continue consolidating its efforts to extend basic education to all children ", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Carry out general awareness-raising campaigns aimed at combating discrimination in all its forms", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Re-establish a moratorium on the death penalty with a view of its elimination", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Carry out effective and independent investigations into allegations of torture and ill treatment in order to bring the perpetrators to justice and ensure that the victims enjoy full reparation ", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Take immediate steps to implement all decisions of the Constitutional Court concerning bilingual topography and Slovenian as an official language in the province of Carinthia ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Enhance efforts in a way which guarantees combatting corruption as the government amended its financial and administrative bureau and expand its mandate in accordance with the sultanate decree 27 of 2011", - "values": [ - "4 - General action" - ] - }, - { - "text": "Continue the ongoing efforts, particularly concerning awareness, education and training in the field of human rights", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Consider strengthening measures aimed at the protection and integration of persons with disabilities, especially children with disabilities", - "values": [ - "3 - Considering action" - ] - }, - { - "text": "Provide the National Centre for the Prevention of Torture with the necessary resources for its adequate functioning, and ensure its full independence", - "values": [ - "4 - General action" - ] - }, - { - "text": "Continue its commendable high level of cooperation and engagement with the United Nations mechanisms ", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Continue paying attention to promoting and protecting the human rights of vulnerable groups.", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Recognize the collective rights of indigenous peoples to their lands and resources, giving the matter priority when the issue of land rights is raised in Parliament as indicated in the Government's statement in October 2010 ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Develop a programme of protection for journalists", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Strengthen the implementation of the second National Human Human Rights Plan of Action by all relevant Government agencies ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Enact legislation that prohibits age-based discrimination", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Review the media law of 28 December 2015 to ensure compliance with international standards on freedom of expression", - "values": [ - "3 - Considering action" - ] - }, - { - "text": "Continue its efforts to eliminate discrimination on political, economic, social and ethnic grounds, in line with the Constitution, in order to achieve equality among all citizens", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Strengthen efforts and measures to counter the dissemination of racist, xenophobic and anti-Semitic propaganda, which generate incitement to racial hatred ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Adopt clear and comprehensive legislation regarding domestic violence, in full compliance with CEDAW recommendations ", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Revise the "Law on public associations" in order to guarantee the full enjoyment of the right to freedom of association in conformity with international rights and standards", - "values": [ - "3 - Considering action" - ] - }, - { - "text": "Simplify NGO registration requirements and remove the NGO Board from the supervision of security organizations ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Continue implementing the recommendations of the LLRC report and the report of the Panel of Expert in accordance with the Human Rights Council Resolution 19/2", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Take effective action to end impunity and to investigate and bring to justice anyone suspected of having committed offences under international law or other human rights abuses ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Adopt a comprehensive national action plan that a) includes clear objectives and tangible measures to implement all human rights - b) allocates financial and human resources for each measure envisaged - and c) establishes an evaluation mechanism for regular monitoring of the measures ", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Take more systematic measures to promote gender equality in practice by, inter alia, increasing women's participation in the Police Force. ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Further intensify the Government\u2019s activities to boost youth employment", - "values": [ - "4 - General action" - ] - }, - { - "text": "Complete the process aimed at the abolition of the death penalty", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Establish clear legal protections for human rights defenders and civil society organizations and abide by them", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Enhance the status of the national plan of UPR follow up into a comprehensive national human rights' plan of action ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Introduce legislation at the earliest opportunity to give the Children's Commissioner for England an explicit role of promoting and protecting children's rights in line with the CRC and to make the Commissioner more independent from Government and more accountable to Parliament ", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Continue its efforts to build more classrooms under the Intermediate Strategy for Education and Literacy (SIPEA) programme ", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Accede to and implement the 1954 and 1961 statelessness conventions", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Take necessary measures to ratify the International Covenant on Economic, Social and Cultural Rights and the Optional Protocol to the Convention on the Rights of the Child on a communications procedure", - "values": [ - "4 - General action" - ] - }, - { - "text": "Re-establish the rule of law in the whole territory, by monitoring the army, the police, the gendarmerie and the customs in the exercise of their functions", - "values": [ - "4 - General action" - ] - }, - { - "text": "Ratify the International Convention for the Protection of All Persons from Enforced Disappearance and the Optional Protocol to the Convention against Torture, paying particular attention to these problems in prisons", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Ratify the Second Optional Protocol to ICCPR, aiming at the abolition of the death penalty and to consider the repeal of provisions allowing for the death penalty", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Accelerate the implementation of the national plan to combat female genital mutilation so that this practice is eradicated and effectively criminalized, and additionally, strengthen education and awareness-raising programmes", - "values": [ - "4 - General action" - ] - }, - { - "text": "Strengthen its protection programme against sexual and sexist violence, with a focus on the availability, accessibility and quality of protection measures, and ensure the full enjoyment of sexual and reproductive rights", - "values": [ - "4 - General action" - ] - }, - { - "text": "Continue to promote the participation of women in the public and political life of the country until they have gradually achieved a level of gender equality.", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Adopt a law to protect human rights defenders that includes special protection for vulnerable groups of defenders, including women defenders and those who express themselves through the Internet and social media", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Ensure the independence and adequate capacity of the Ugandan Human Rights Commission", - "values": [ - "4 - General action" - ] - }, - { - "text": "Continue in its efforts to accelerate the achievement of substantive equality for women and men, with a greater focus on women, especially minority women, in decision-making policy positions in the public and private sectors", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Consider including in its next universal periodic review report information on measures it has taken to analyse potential risk factors of atrocity crimes, including through utilization of the Framework of Analysis for Atrocity Crimes", - "values": [ - "3 - Considering action" - ] - }, - { - "text": "Effectively implement existing laws in the area of domestic violence and strengthen the prevention activities and protect victims including through the establishment of protection facilities in remote areas", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Take measures to put an end to torture and ill-treatment practised by the police forces and to combat the impunity of people responsible for such offences, including by ratifying the Optional Protocol to the Convention against Torture and Other Cruel, Inhuman or Degrading Treatment or Punishment", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Intensify its efforts to promote inter-ethnic harmony through education, and implement concrete measures for the integration of minorities into Croatian society", - "values": [ - "4 - General action" - ] - }, - { - "text": "Ratify the Convention on the Elimination of All Forms of Discrimination against Women and adopt a National Action Plan on Security Council Resolution 1325 on women, peace and security", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Institute specific legislative measures aimed at eliminating the practice of discrimination against minority groups, including women and girls", - "values": [ - "4 - General action" - ] - }, - { - "text": "Continue to take measures to improve its health-care service, especially to guarantee the right of children to healthy growth ", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Continue to promote partnerships between the authorities and civil society organizations, to complete the process of return of refugees and displaced persons, to solve the issue of housing accommodation, through accelerated accommodation of the former tenancy right holders and full implementation of the action plan to achieve progress in the implementation of the Housing Care Programme for former tenancy rights holders within and outside the areas of special state concern, as a precondition for the sustainable and dignified return of refugees and displaced persons ", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Bring the mass event legislation into line with the international standards on freedom of assembly, including by abolishing the licensing principle of the conduct of events and by abolishing the requirement for the applicants to pay for maintenance of public order and for providing medical service as an indispensable condition for carrying out the event", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Continue its effort in the active implementation of the National Strategy for the Fight against Human Trafficking and Illegal Migration ", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Continue to ensure access to quality education for all Ecuadorians through continuous improvements in the training of educators", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Duly investigate the crimes of hate and discrimination, among them, the most recent acts committed against the lesbian, gay, bisexual, transgender and intersex community", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Continue to enhance its activities towards the eradication of poverty in all its states and share its experiences with other countries", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Immediately cease all public support for the employment of children in cotton harvesting and that the Government publicly condemn and effectively combat all forms of child labour", - "values": [ - "4 - General action" - ] - }, - { - "text": "Continuation of efforts to ensure the extradition of persons accused of human rights violations and crimes against humanity.", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Prohibit the holding of the annual gathering in March in the centre of Riga in a memory of soldiers who fought in the Latvian legion of the Waffen SS as well as condemn strictly any attempts to glorify the memory of those who fought in the Waffen SS and collaborated with Nazis", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Continue with the measures aimed at promoting and protecting effectively in law and in practice the human rights of women", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Vanuatu's National Advisory Board on Climate Change is committed to steering and guiding development partners interested in engaging in human rights and climate/disaster issues in Vanuatu, including by providing expedited program approvals and nominating counterparts, intervention sites and priority areas.", - "values": [ - "4 - General action" - ] - }, - { - "text": "The Tongan Government believes that social, economic and cultural rights are important. It is fully committed to a vigorous development of Tonga's economic, social and cultural goals. It has consistently pursued a progressive agenda on social, economic and cultural policy and can point to the practical strategies of SDP8 and increased funding for education and healthcare as evidence of its commitment", - "values": [ - "1 - Minimal action" - ] - }, - { - "text": "Implement effectively the legislation prohibiting the forced military recruitment of children under the age of 18 ", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Fully implement the Domestic Violence Act and develop a comprehensive policy to raise awareness of and prevent domestic violence", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Ensure compliance with article 4 of the International Covenant on Civil and Political Rights and the general observation number 29 of the Human Rights Committee on state of emergencies.", - "values": [ - "4 - General action" - ] - }, - { - "text": "Continue to review its laws and policies to bring them in conformity with the Constitution and to promote the rule of law, inclusiveness and an effective two-tier government", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Engage a civil society in the follow-up implementation process of the universal periodic review recommendations", - "values": [ - "4 - General action" - ] - }, - { - "text": "All national legislation that criminalized homosexuality be brought into line with the Universal Declaration on Human Rights and other relevant instruments", - "values": [ - "4 - General action" - ] - }, - { - "text": "Ratify the Agreement on the Privileges and Immunities of the International Criminal Court and take all necessary measures for their implementation as well as the preservation of the integrity of the Rome Statute", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Successfully conclude the process of ratification of the Optional Protocol of the Convention against Torture ", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Devote more resources to national development plans to better ensure the most essential economic and social rights of its population ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Intensify the efforts in the investigation of pending allegations of serious human rights and international humanitarian law violations by all parties in the armed conflict", - "values": [ - "4 - General action" - ] - }, - { - "text": "Adopt a national plan to protect human rights and take the necessary measures to ensure effective protection against discrimination in various fields, particularly employment, housing, health and education ", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Expedite ratification of the Convention against Torture and its Optional Protocol", - "values": [ - "4 - General action" - ] - }, - { - "text": "Carry out awareness-raising campaigns on sexual and gender-based violence, as recommended by the UNHCR, and ensure that all the reported cases receive an adequate response", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Further enhance gender equality, including by taking appropriate administrative or legal measures, as well as allocating adequate resources to empower women ", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Abolish the death penalty and ratify the Second Optional Protocol to the International Covenant on Civil and Political Rights aiming at the abolition of the death penalty", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Show leadership in human rights issues by protecting all human rights within the country, including those LGBT, and the freedom of movement and expression of human rights defenders, starting by organizing a dialogue between government, civil society and interested individuals, on these and other human rights related issues ", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Abide by its UPR engagements made in 2009 by fully respecting and protecting the rights and freedoms of Human Rights Defenders and journalists and that no fines or prison sentences are imposed on persons for expressing political views or opposition to the current government ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Carry on with projects to decrease the lack of access to safe drinking water and sanitation in order to combat the risk of cholera contamination", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Continue and deepen respect for indigenous peoples, recognizing their cultural wealth and facilitating their participation in national and community issues, particularly issues of direct concern to them such as property and land use, to eliminate all discrimination against indigenous persons or indigenous communities.", - "values": [ - "4 - General action" - ] - }, - { - "text": "Continue its efforts in harmonizing its national legislation with the human rights instruments to which Chad is a party", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Pursue cooperation with the international human rights mechanisms", - "values": [ - "4 - General action" - ] - }, - { - "text": "Take all necessary measures to strengthen the fight against domestic violence and sexual violence against women", - "values": [ - "4 - General action" - ] - }, - { - "text": "Step up the process of consultations concerning the accession to the International Convention for the Protection of All Persons from Enforced Disappearance, as previously recommended", - "values": [ - "4 - General action" - ] - }, - { - "text": "Increase efforts to improve the effective protection of LGBT persons, abandon legislation work on draft law no. 8711 on so-called "propaganda of homosexuality" and refrain from other legislation infringing on the human rights and fundamental freedoms of LGBT persons ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Repeal the blasphemy laws and restrictions and end their use against Ahmadi Muslims and others, and grant the visit of the Special Rapporteur on the promotion and protection of the right to freedom of opinion and expression", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Adopt comprehensive national legislation that allows for compliance with and implementation of its international obligations concerning migrants, asylum seekers, refugees and stateless persons", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Faithfully implement the national action program for education for all by 2015", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Modify the Law on marriage and its provisions on conjugal authority, that infringe the principle of equality, by restricting rights such as to apply for bank credits or to acquire properties, for which the husband's written consent is required", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Accord appropriate attention to the education sector in the medium and long term as the only way to correct the lack of human resources and institutional capacities in the country.", - "values": [ - "4 - General action" - ] - }, - { - "text": "Ratify CED and the other major human rights instruments it has not yet ratified ", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Supervise conditions in youth correctional facilities and guarantee that it complies with the Law on Child Care and Protection, in order to determine the progress made at the national level", - "values": [ - "4 - General action" - ] - }, - { - "text": "Fully implement in time the provisions contained in the Master Plan regarding penal establishments ", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Withdraw existing reservations to ICCPR and ratify both ICCPR Optional Protocols ", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Continue to adopt effective legislative measures to ensure women's security and rights, and strengthen the national mechanism on gender policies", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Ensure the establishment, within the National Independent Human Rights Commission, of a mechanism to follow up on the extra-judicial executions noted ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Continue and strengthen its efforts in addressing domestic violence", - "values": [ - "4 - General action" - ] - }, - { - "text": "Develop a national strategy to eliminate poverty", - "values": [ - "4 - General action" - ] - }, - { - "text": "Create a system to collect updated and disaggregated data on the situation of the rights of the child ", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Allow the National Human Rights Commission to function in an independent manner in full compliance with the Paris Principles", - "values": [ - "4 - General action" - ] - }, - { - "text": "To draw up a table showing the concordance between national legislation and international human rights instruments, particularly the Convention on the Elimination of Discrimination against Women and the Convention on the Rights of the Child", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Consider introducing incentives for better political participation of minorities and immigrants with a view to upholding their integration into society", - "values": [ - "3 - Considering action" - ] - }, - { - "text": "Adopt comprehensive strategies to combat racism, including specific measures on the status and protection of persons of Haitian origin ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Present, to the extent possible, the reports that are due to the various treaty bodies to which Malta is party.", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "[Ratify] Particularly the International Covenant on Economic, Social and Cultural Rights, the International Covenant on Civil and Political Rights, the Convention against Torture and Other Cruel, Inhuman or Degrading Treatment or Punishment, and the Convention on the Elimination of All Forms of Discrimination against Women", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Amend further its Law on the Media, the Law on Publication and other related regulations to comply with international human rights standards \n\n", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Adhere to the Convention on the Rights of the Child and its two Optional Protocols and\nendorse the Paris Commitments to protect children from unlawful recruitment or use by armed forces\nor armed groups", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Extend a standing invitation to special procedures of the Human Rights Council ", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Treat all detainees humanely and immediately release all prisoners detained without charge or trial or opportunity for appeal ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Reconsider its position vis-à-vis the capital punishment with the ultimate aim of abolishing the death penalty totally ", - "values": [ - "3 - Considering action" - ] - }, - { - "text": "Repeal article 490 of the Criminal Code criminalizing sexual relationships outside marriage in order to eliminate risks associated with abandonment and institutional stigmatization of children born out of wedlock", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Further adopt additional measures, including granting suspensive effect to appeals against deportation orders, to ensure its full implementation without any exceptions of the principle of non-refoulement", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Implement the recommendations made by the Organization for Security and Co-operation in Europe (OSCE) Office for Democratic Institutions and Human Rights after the 2011 parliamentary and 2012 presidential elections", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Consider acceding to the International Convention for the Protection of All Persons from Enforced Disappearance, as well as the Optional Protocol to the International Covenant on Economic, Social and Cultural Rights and the Optional Protocol to the Convention on the Rights of Persons with Disabilities.", - "values": [ - "3 - Considering action" - ] - }, - { - "text": "Intensify efforts aimed at efficiently safeguarding the freedom of expression", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Introduce and enforce legislation prohibiting corporal punishment of children in all settings, including in the family, schools and all places of deprivation of liberty", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Ensure that juvenile justice is fully implemented and that children are not ill-treated in detention and their rights not violated. ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Harmonize the Law on Public Assembly with international standards ", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Continue to implement and build on efforts to address female genital mutilation/cutting, including by engaging state and non-state stakeholders in dialogue on education, programming, and legislation needed to eliminate this harmful practice and advance gender equality", - "values": [ - "4 - General action" - ] - }, - { - "text": "Put an end to extrajudicial executions and torture, in particular in the context of the fight against drugs", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Enact legislation dealing with prohibiting violence against women and implement it in law and practice ", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "As recommended by the Committee on the Rights of the Child and the Committee on Economic, Social and Cultural Rights, intensify efforts to achieve better promotion and protection of the rights of the child ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Double its efforts in addressing the persistent gender discrimination", - "values": [ - "4 - General action" - ] - }, - { - "text": "Ratify the Second Optional Protocol to ICCPR aiming at abolishing of the death penalty for all crimes or formalizing the de facto moratorium on the death penalty", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Take effective policy measures in order to combat racism, intolerance, stereotypes and unlawful attitudes against ethnic and religious minorities and take legislative measures that prohibit hate speech", - "values": [ - "4 - General action" - ] - }, - { - "text": "Continue to cooperate with the United Nations and the Human Rights Council in protecting and promoting human rights ", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Take concrete measures to ensure effective birth registration, particularly in remote and rural areas.", - "values": [ - "4 - General action" - ] - }, - { - "text": "Modify promptly the law on transexuality to facilitate registration of a change of gender on official documents, without requiring transsexuals to divorce, in line with the decision of the Constitutional Court", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Adopt and implement a national plan inspired by the Durban Declaration and Programme of Action, for the benefit especially of disadvantaged minorities, which are Afro-Americans and indigenous peoples", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Continue the efforts to facilitate the registration of births and create awareness of the importance of this procedure, which allows access to all other rights and basic services such as education and health", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Take specific and effective measures required in order to ensure respect for freedom of expression and association ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Pay particular attention to polygamy in a future global action plan to combat violence against women and children", - "values": [ - "4 - General action" - ] - }, - { - "text": "Establish an effective and inclusive process to follow up on universal periodic review recommendations ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Meet regularly with civil society organizations involved in human rights activities as partners in the promotion of these rights.", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Further protect and promote the right to safe drinking water and sanitation", - "values": [ - "4 - General action" - ] - }, - { - "text": "Guarantee that the national human rights institution has full independence in accordance with the Paris Principles ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Take the necessary measures to review its domestic legislation so as to guarantee the prohibition and sanction of discrimination in all its forms, especially on the basis of gender, sexual orientation and disability", - "values": [ - "4 - General action" - ] - }, - { - "text": "Allocate at least 25 per cent of the national budget for education and eliminate all discretional fees in order to ensure free primary education for all children ", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Carry out more efforts to combat all kinds of discrimination and violence against women", - "values": [ - "4 - General action" - ] - }, - { - "text": "Sign and ratify the Convention on Migrant Workers and Members of Their Families", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Ensure that the establishment of its national human rights institutions complies with the Paris Principles", - "values": [ - "4 - General action" - ] - }, - { - "text": "Take effective legal measures to prohibit the use of "Tasers" by the police against various groups of peoples ", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Complete the process for the establishment of a national preventive mechanism on torture", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Develop cooperation on the issues of human rights with international organizations and their mechanisms, in particular by engaging constructively with the Special Rapporteur on the situation of human rights and responding positively to offers of technical assistance by OHCHR \n\n", - "values": [ - "4 - General action" - ] - }, - { - "text": "Intensify the dialogue with religious leaders in order to erase all remaining restrictions on religions by law", - "values": [ - "4 - General action" - ] - }, - { - "text": "Guinea acknowledges that it is experiencing difficulties in protecting and supporting victims and witnesses. However, it remains committed to setting up an effective and consistent mechanism to this end.", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Strengthen the capacity and enhance the resources of the National Commission on Gender Policy to ensure the full enjoyment of gender equality", - "values": [ - "4 - General action" - ] - }, - { - "text": "Ensure that migrant workers and their families and in particular children have access to sufficient means of subsistence, to housing, to health care and to education", - "values": [ - "4 - General action" - ] - }, - { - "text": "Enact legislation and adopt measures to ensure that businesses and their branches operating in Switzerland are accountable for any violations of human rights or damage to the environment around the world", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Step up efforts to combat discrimination and violence by adopting measures to raise awareness among the population and public officials of the negative effects of public stigmatization on any grounds, including against individuals on the basis of their sexual orientation or gender identity", - "values": [ - "4 - General action" - ] - }, - { - "text": "Continue efforts in addressing the welfare of expatriate workers", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Immediately respect the ceasefire and facilitate full and unimpeded access for humanitarian aid to the entire country", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Continue to eliminate barriers to women enjoying effective access to justice and promote knowledge of their rights and provide basic legal assistance", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Continue its reforms of the judicial system to improve the quality and efficiency of case handling in the courts ", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Take adequate measures to combat human trafficking ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Establish a moratorium on the use of the death penalty with a view to its abolition, ensure judicial proceedings with all international guarantees and abolish collective punishments", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Ratify CAT, ICPPED, the Convention on the Rights of Persons with Disabilities (CRPD) and the various Inter-American human rights instruments", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Endorse and begin implementing the National Gender Policy", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Consider favourably reviewing its national legislation to prevent victims of trafficking in persons from being punished ", - "values": [ - "3 - Considering action" - ] - }, - { - "text": "Consider establishing a new moratorium on executions, with a view to abolishing the death penalty in the future", - "values": [ - "3 - Considering action" - ] - }, - { - "text": "Establish a special committee to oversee the implementation of the CARICOM Implementation Agency for Crime and Security report recommendations", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Ensure respect of fair and equitable judicial proceedings", - "values": [ - "4 - General action" - ] - }, - { - "text": "Take adequate measures to combat all forms of racial discrimination, racism and xenophobia on the basis of ethnicity ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Continue its efforts to develop policies aimed at the protection of women rights", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Suspend executions of persons whose age is subject to doubt, having in mind the establishment of a special commission to determine the age of accused suspected of being a minor at the time of commitment of the crime ", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Sign the International Convention on the Protection of the Rights of All Migrant Workers and Members of Their Families (ICRMW) ", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Allocate more resources to improve educational infrastructure as well as to take the necessary steps to ensure that members of the local communities, especially those living in the rural areas, realize the importance of education for both boys and girls", - "values": [ - "4 - General action" - ] - }, - { - "text": "Take all necessary measures to abrogate in its legislation the provisions allowing the application of death penalty ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Ensure the effective application of the Convention against Torture.", - "values": [ - "4 - General action" - ] - }, - { - "text": "Continue to take necessary measures to enable women to be equal partners in development and decision-making ", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Do all possible to guarantee that schools are safe places for children ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Pursue the effective implementation of measures aimed at combating discrimination and violence against women", - "values": [ - "4 - General action" - ] - }, - { - "text": "Ratify the Rome Statute of the International Criminal Court", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Ratify CED as soon as possible.", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Reinforce its efforts to tackle impunity and corruption nationwide via the creation of a federal anti-corruption institution with the ability to prosecute, and through the allocation of adequate resources to investigate and prosecute crimes against women and children", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Review corruption in the healthcare system and implement measures to ensure that all persons have access to adequate healthcare without discrimination", - "values": [ - "3 - Considering action" - ] - }, - { - "text": "Take all necessary steps to ensure that its national human rights institution is fully effective and independent in accordance with the Paris Principles ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Noting that there currently are two national human rights institutions, avoid duplication - assign clear and well- defined competencies in accordance with the Paris Principles - and elaborate a National Human Rights Plan that integrates all spheres of public administration ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Accomplish progressively human rights voluntary goals as set up by Human Rights Council resolution 9-12 ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Continue to prioritize policies aimed at enhancing the access of all children to education", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Recommended a follow-up on the decision to not carry out the death penalty.", - "values": [ - "4 - General action" - ] - }, - { - "text": "Take additional steps to combat crime, especially that committed by young people and carry out strategies to protect them", - "values": [ - "4 - General action" - ] - }, - { - "text": "Sign and-or ratify the Convention against Torture and Other Cruel, Inhuman or Degrading Treatment of Punishment and its Optional Protocol ", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Continue its efforts to combat corruption in order to continue ensuring its economic growth to guarantee the enjoyment of economic, social and cultural rights by all its citizens", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Protect the right to property of the land of the indigenous and traditional peasant communities to prevent the dispossession of land suitable for agriculture in the present context of economic and social development ", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Strengthen the independence of the National Human Rights Committee by limiting the role of government appointees ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Ratify the Optional Protocol to the Convention on the Rights of the Child on the sale of children, child prostitution and child pornography", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Ensure that the separation of ordinary and indigenous courts does not contribute to tensions among different communities, but rather promotes inclusion and social stability by, inter alia, bringing the jurisdiction into full conformity with the new Constitution", - "values": [ - "4 - General action" - ] - }, - { - "text": "Review policies aimed at protecting the rights of children, with a view to establishing a juvenile justice system to address violations of children's rights, in particular, discrimination against children affected by HIV-AIDS, disabled children and those born out of wedlock", - "values": [ - "3 - Considering action" - ] - }, - { - "text": "Continue implementing measures to eradicate all forms of discrimination, including against people with other origins", - "values": [ - "4 - General action" - ] - }, - { - "text": "Develop a national plan of action to combat violence against women ", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Abolish the discriminatory practice of forced and early marriage, high drop-out rates in schools and restrictions to university education for girls, and promote active participation of women in the society", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Establish appropriate coordination mechanisms that can ensure an effective multisectoral response to cases of sexual and domestic violence", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Embark on the path to definitely abolishing the death penalty, and ratify the Second Optional Protocol to ICCPR, aiming at the abolition of the death penalty", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Stop arbitrary detention and release all those unfairly and indiscriminately arrested, as previously recommended", - "values": [ - "4 - General action" - ] - }, - { - "text": "Continue to strengthen education cooperation with international educational organizations ", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Take immediate and transparent action to stop the use of torture and other ill-treatment of all detainees, including forced hard labour and denial of food quotas ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Ensure that women victims of violence have prompt access to justice and that the acts of violence are adequately prevented, investigated, punished and redressed", - "values": [ - "4 - General action" - ] - }, - { - "text": "Establish a mechanism in order to systematically monitor human rights in the administration of justice and to organise human rights training courses for public officials.", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Make further efforts to raise awareness on gender equality and to combat discrimination against women ", - "values": [ - "4 - General action" - ] - }, - { - "text": "New Zealand is committed to identifying and addressing gaps in information to better understand the causes of inequality.", - "values": [ - "4 - General action" - ] - }, - { - "text": "Continue the positive work on the domestication of human rights treaties as indicated in the midterm report", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Adopt further effective measures and policies aimed at increasing the number of registered births", - "values": [ - "4 - General action" - ] - }, - { - "text": "Continue efforts and initiatives to promote dialogue, peace and tolerance amongst peoples, between religions, civilizations and cultures", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Improve the enforcement of the Single-Parent Family Support Act", - "values": [ - "4 - General action" - ] - }, - { - "text": "Ensure for the Palestinians of the occupied territories access without hindrance to their natural resources, particularly water resources, and implement in this context the obligations stemming from international humanitarian law ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Bring all legislation concerning communication surveillance in line with international human rights standards and especially recommend that all communication surveillance requires a test of necessity and proportionality", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Ratify promptly the International Convention on the Protection of the Rights of All Migrant Workers and Members of Their Families, the Optional Protocol to the International Covenant on Civil and Political Rights and the Optional Protocol to the Convention on Rights of Persons with Disabilities", - "values": [ - "3 - Considering action" - ] - }, - { - "text": "Ensure achieving more development in executing cases analysis programmes regarding child rights cases and cooperation with the civil society", - "values": [ - "4 - General action" - ] - }, - { - "text": "Address the problem of Roma children dropping out of school, and promote the Roma language in the school system", - "values": [ - "4 - General action" - ] - }, - { - "text": "Amend national legislation in order to include hate crimes and domestic violence and take effective measures to ensure equal access to employment, social security, inclusion and equal opportunities for all people, especially for members of minorities. These measures should also facilitate the regularization of non-citizens, avoid discrimination arising from a lack of knowledge of the official language and offer alternatives which foster inclusion and cohesion in society, in particular in the education system", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Continue efforts to promote and strengthen human rights, in particular by focusing on the economic growth and by improving the well-being of the population", - "values": [ - "4 - General action" - ] - }, - { - "text": "Adopt measures to reinforce existing mechanisms on combating racial discrimination.", - "values": [ - "4 - General action" - ] - }, - { - "text": "Favourably consider the ratification of ILO Convention No. 169 concerning Indigenous and Tribal Peoples in Independent Countries. ", - "values": [ - "3 - Considering action" - ] - }, - { - "text": "Reform labour laws to ensure that domestic workers are legally protected and improve the enforcement of those laws, in order to ensure that the rights of foreign workers in Qatar are guaranteed ", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Reform the legal system so as to entrench accountability of the military and the security apparatus, to end impunity for human rights violations committed by the members of these institutions and provide compensation to the victims", - "values": [ - "4 - General action" - ] - }, - { - "text": "Undertake a global revision of its national legislation in order to harmonize it with human rights instruments to which Tanzania is party, with a view to guaranteeing gender equality", - "values": [ - "3 - Considering action" - ] - }, - { - "text": "Continue to expand the coverage of the National Health Insurance and Social Protection Fund to include more disadvantaged persons and those previously without coverage, in accordance with its national plan", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Extend an invitation to the Special Rapporteur on torture to visit North Caucasus under his usual terms of operation ", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Speed up the establishment process of a regional office of OHCHR in Cairo", - "values": [ - "4 - General action" - ] - }, - { - "text": "Solidify the democratic process by organizing a popular referendum on presidential term limits and setting a date for and plan to hold local elections", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "With support from the international community, draft legislative bills on domestic violence, and on child abuse ", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Continue consultation with numerous stakeholders in its follow-up to the UPR report", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Accept the competence of the Committee against Torture to conduct confidential inquiries and to receive and consider communications from States or individuals", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Continue efforts to support the rights of the child and protect children from sexual exploitation and trafficking", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Finalize the on-going study, create and establish a national human rights institution in conformity with the Paris Principles", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Step up efforts for a rapid and definitive application of the country's Constitution, ensuring that it incorporates the principles and commitments arising from international human rights instruments to which Eritrea is signatory or has acceded ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Consider entering into bilateral and multilateral cooperation agreements with concerned States to address the protection needs of unaccompanied migrant children from Honduras, including their repatriation and reintegration", - "values": [ - "3 - Considering action" - ] - }, - { - "text": "Consider the possibility of strengthening efforts to ratify the International Convention for the Protection of All Persons from Enforced Disappearances ", - "values": [ - "3 - Considering action" - ] - }, - { - "text": "Continue working in order to guarantee the human rights of its citizens and the strengthening of the democratic model that is adopted by its people ", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Increase access to contraceptive methods for all women as required by CESCR ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Consider enacting specific domestic legislation on combating domestic violence and human trafficking ", - "values": [ - "3 - Considering action" - ] - }, - { - "text": "Accede to the Convention against Torture and Other Cruel, Inhuman or degrading Treatment of Punishment, and incorporate its provisions into domestic law ", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Cooperate with the mandate holders of special procedures and treaty bodies", - "values": [ - "4 - General action" - ] - }, - { - "text": "Reduce the illiteracy rate among girls", - "values": [ - "4 - General action" - ] - }, - { - "text": "Amend the Criminal Procedural Code to the effect that detention records have to record the identity of the officers involved in detaining a person, in line with Principle 12 of the Body of Principles for the Protection of All Persons under Any Form of Detention or Imprisonment", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Address the prevalence of exploitative child labor by enforcing its labor laws ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Continue its policy to ensure gender equality aimed at upholding the rights of women", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Increase efforts to strengthen the merit-based recruitment of judges, inter alia, by effectively implementing the new Law on Courts requiring all newly appointed first-instance judges to have graduated from the Academy for Judges and Prosecutors two-year training programme", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Sign and ratify the Optional Protocol to the Convention on the Rights of the Child CRC on the sale of children, child prostitution and child pornography", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Take necessary measures to integrate human rights programmes in the curricula", - "values": [ - "4 - General action" - ] - }, - { - "text": "Continue the efforts to strengthen food security for all its people, particularly in rural areas ", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Continue its work to improve the scope of education and its quality at every level", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Ratify ICESCR and ICCPR at the earliest possible date ", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Promote prevention and assistance policies in the area of reproductive health, in particular for adolescents", - "values": [ - "4 - General action" - ] - }, - { - "text": "Guarantee and create an enabling environment to the activities of the journalists and human rights defenders and civil society", - "values": [ - "4 - General action" - ] - }, - { - "text": "Provide medical and psychological support, as well as legal assistance, to women victims of gender-based violence ", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Fully implement its National Plan of Action for human rights and its plans of actions to implement various human rights conventions and treaties ", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Continue its efforts in the field of the protection of child rights", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Take further steps in enabling fuller participation of women in Saudi Arabian public life by guaranteeing women and girls their right to education, employment, freedom of movement, marriage with their free and full consent and health, including protection from and redress for family violence ", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Increase efforts to guarantee and protect freedom of religion and belief, in line with its obligations under the International Covenant on Civil and Political Rights", - "values": [ - "4 - General action" - ] - }, - { - "text": "Redouble its efforts in ensuring greater access to maternal and child health care services for women and children including by providing necessary health infrastructure in rural and urban areas", - "values": [ - "4 - General action" - ] - }, - { - "text": "Further improve its cooperation with all United Nations human rights mechanisms, submitting its overdue reports to treaty bodies, as well as its response to communications of the special procedures", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Continue its efforts to ensure full respect for human rights and further pursue the implementation of the national action plan in that direction, taking into account as a matter of priority\nthe importance of respecting the freedoms of religion and belief", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Complete its consideration of the abolition of the death penalty and move to abolition ", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Accede to OP-CAT and establish an effective national mechanism to prevent torture or degrading treatment", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Continue to pursue current policies to ensure the enjoyment of all human rights by all Tunisians, particularly with regard to health and education ", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Continue actions aimed at peaceful coexistence between different ethnic and religious groups in the country", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Adequately train staff and well-resource judges, judicial personnel, and civil servants who work to fight child labour", - "values": [ - "4 - General action" - ] - }, - { - "text": "Increase efforts to fulfil engagements and obligation stemming from ratified Conventions.", - "values": [ - "4 - General action" - ] - }, - { - "text": "Conform the recently adopted amendments to the Criminal Code to international human rights standards, promptly investigate attacks on journalists and human rights defenders and hold accountable the perpetrators", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Continue its policy to nationally implement its international and regional commitments regarding the rights of women, effectively combating all forms of violence against them. ", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Take immediate steps to improve the situation in Southern Thailand so the special security laws can be lifted", - "values": [ - "4 - General action" - ] - }, - { - "text": "Reform the status of migrant workers in order to ensure the protection of their rights against all forms of discrimination", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Provide adequate minority protection for indigenous and tribal groups ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Explore, along with the international community, every possible way to provide IDPs and returnees with immediate assistance.", - "values": [ - "3 - Considering action" - ] - }, - { - "text": "Extend an open invitation to all special procedures of the Human Rights Council", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Release prisoners detained as conscientious objectors to military service and ensure that civilian alternatives to military service are not punitive or discriminatory and remain under civilian control", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Present a standing invitation to United Nations special rapporteurs, including the Special Rapporteur on the promotion and protection of the right to freedom of opinion and expression and the Special Rapporteur on torture and other cruel, inhuman or degrading treatment or punishment, to visit Zambia", - "values": [ - "4 - General action" - ] - }, - { - "text": "Committed to strengthening its judicial and judiciary institutions, as set out in the Strategic Plan for the Justice Sector (2011-2030), within a framework of independence and technical rigour, ensuring the increased access to justice. This commitment will take the form of a clear focus on the training of legal professionals, consolidation of the activity of private lawyers and investment in infrastructures", - "values": [ - "4 - General action" - ] - }, - { - "text": "To counter allegations of torture and ill-treatment in prison facilities, allow ICRC and other international observers to have immediate, full and genuine access to all detention facilities to ensure proper treatment of prisoners", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Continue its efforts to implement the judicial reforms undertaken in the last years ", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Continue the implementation of the recommendations of the Truth and Reconciliation Commission to foster national harmony", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Strengthen existing efforts to prevent violence against women, including through financial support for shelters for victims of violence ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Guarantee women effective access to justice in cases of harassment and sexual and domestic violence", - "values": [ - "4 - General action" - ] - }, - { - "text": "Pursue the consolidation, in a decisive manner, of an educational system which is increasingly in line with the needs and specificities of its population, as the only way of making progress towards social development and welfare, towards which the international community should provide its assistance and cooperation ", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Take steps to place higher priority on the prosecution of violence and discrimination against women, transgender and transsexual people, as well as access to justice for victims of these crimes", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Create an independent national human rights institution, as well as facilitate the legal recognition of NGOs and human rights defenders, simplifying the procedure for their recognition and functioning", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Approve the Criminal Code and, in particular, the abolition of the death penalty", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Implement public awareness and education programmes on sexuality aimed at adolescents that includes information on contraceptive health, family planning, sexual and reproductive health, sexually transmitted diseases and HIV/AIDs ", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Lift the general reservation to CEDAW and amend national legislation accordingly ", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Consider positively declaring a moratorium on the application of the death penalty, with a view its abolition", - "values": [ - "3 - Considering action" - ] - }, - { - "text": "Intensify its efforts in the name of gender equality, amend the legal provisions that establish a system of patronising gender promotion and protection for gender reasons, and develop a comprehensive policy in favour of gender equality, including awareness campaigns in areas of society and public administration ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Ensure that human rights defenders are protected from unjust imprisonment, intimidation and violence and that it release those imprisoned or sentenced for carrying out peaceful human rights advocacy", - "values": [ - "4 - General action" - ] - }, - { - "text": "Take measures to improve the monitoring, identification and care of unaccompanied minors who arrive in the country", - "values": [ - "4 - General action" - ] - }, - { - "text": "Ensure the right to freedom of association and enable the registration of NGOs working on issues of sexual orientation and gender identity ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Accede and fully align its national legislation with the Rome Statute of the International Criminal Court, including by incorporating provisions to cooperate promptly and fully with the Court, and investigate and prosecute genocide, crimes against humanity and war crimes effectively before its national courts", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Authorize and facilitate the medical evacuation of civilians", - "values": [ - "4 - General action" - ] - }, - { - "text": "Extend outreach and identification efforts to women and children in prostitution, to ensure that trafficking victims are identified, given care and not penalized for crimes committed as a direct result of being trafficked to identify proactively potential trafficking victims among its undocumented immigrants to continue to investigate and prosecute allegations of trafficking-related complicity and to expand public awareness campaigns aimed at reducing domestic demand for commercial sex acts", - "values": [ - "4 - General action" - ] - }, - { - "text": "The abolition of the Press Scrutiny Board and the Broadcasting Censorship Board and take concrete steps to ensure that the press and broadcasting media can operate freely", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Continue efforts undertaken with a view to incorporating provisions of international instruments into domestic legislation and becoming a party to international instruments to which it is not yet a party.", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Extend a standing and open invitation to the special procedures of the Human Rights Council", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Implement accepted UPR recommendations on the decriminalization of defamation, and repeal provisions of the Criminal Code on the defamation of public officials and of the Law on the Leader of the Nation, which introduced a new article into the Criminal Code prohibiting and punishing insults against the honour of the President", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Implement measures and awareness-raising campaigns to eradicate female genital mutilation and other harmful practices against women", - "values": [ - "4 - General action" - ] - }, - { - "text": "Ensure that cases of domestic violence against women and girls are carefully investigated and that the perpetrators and collaborators are brought to justice", - "values": [ - "4 - General action" - ] - }, - { - "text": "Facilitate equitable distribution of the nation's wealth in order to address any imbalances in and among the regions which could lead to future disagreements ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Adopt legislation ensuring protection of human rights of ethnic communities, including their participation in government decisions", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Following concerns expressed by the Committee against Torture, investigate reported cases of physical ill-treatment by the police and ensure the rooting out of such unlawful practices ", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Implement a legal system which improves the human rights of peasants and other persons working in rural areas ", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Intensify investigations of cases on trafficking of human beings for the purpose of labour exploitation and investigate all reports on alleged involvement of state officials in offenses related to human trafficking ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Ratify the Rome Statute on the Establishment of the ICC", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Consider the adoption of a de jure moratorium on executions, as a first step towards the abolition of the death penalty ", - "values": [ - "3 - Considering action" - ] - }, - { - "text": "Continuously provide gender-sensitive trainings to authorities handling gender-based violence cases", - "values": [ - "4 - General action" - ] - }, - { - "text": "Strengthen the system of development councils in order to improve the participation of the indigenous population in public management", - "values": [ - "4 - General action" - ] - }, - { - "text": "Extend a standing invitation to United Nations special procedure mandate holders", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Continue efforts to promote and protect the rights of women, children and juveniles and overcome their vulnerability ", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Continue the measures for poverty reduction", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Continue the reconciliation policy and implement, with support from the international community, all decisions resulting from the Ouagadougou Agreement ", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Continue strengthening its social protection programme that is already implementing, in order to provide for even greater well-being quality for its people", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Continue to seek capacity-building assistance, guidance, and technical support from the United Nations and regional partners to fulfil its human rights obligations", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Adopt legislative and other measures aimed at including all erased persons, regardless of where they currently reside", - "values": [ - "4 - General action" - ] - }, - { - "text": "Continue its active engagement with the human rights mechanisms of United Nations for the promotion and protection of human rights", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Take all necessary measures to put an end to discrimination against gays, lesbians and transsexuals ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Amend all discriminatory provisions in personal status laws in particular issues related to child custody, inheritance and divorce", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Ratify the CRPD", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Take concrete steps to eliminate gender-based violence, in particular female genital mutilation", - "values": [ - "4 - General action" - ] - }, - { - "text": "Continue to give particular attention to indigenous peoples when implementing the poverty reduction and alleviation programmes and ensure that it works towards the elimination of any discriminatory measures applied to them.", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Ratify the Optional Protocol to the Convention on the Rights of the Child, OP-CAT, and the Rome Statute of the ICC, at the earliest opportunity ", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Continue human rights training and awareness-raising activities, particularly for security forces", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Child and maternal mortality are the key indicators for the country's level of development as they reveal the state of quality of health of health services and health programmes. Lesotho will reduce child and maternal mortality by at least 25 percent by 2017.", - "values": [ - "4 - General action" - ] - }, - { - "text": "That practices and traditional cultural customs are neither harmful to women, nor have a discriminatory impact, since during the Namibian struggle for national liberation women fought alongside and on par with men for the country's independence, and that they receive the necessary merit and attention in society ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Address all sexual and gender based-violence and discrimination, especially against women, by reforming the Criminal Code and Personals Status Code to bring it into line with the Convention on the Elimination of All Forms of Discrimination against Women, including by criminalizing marital rape and abolishing provisions allowing a perpetrator of sexual violence to escape prosecution by marrying their victim", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Continue consolidating its health system, particularly in the mother-child area", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Ensures full respect for the right to freedom of expression and media freedom by preventing all harassment and undue detention of journalists and civil society activists", - "values": [ - "4 - General action" - ] - }, - { - "text": "Review the proposal by the National Council for Human Rights on the enactment of a unified law on the construction of places of worship.", - "values": [ - "3 - Considering action" - ] - }, - { - "text": "Take further measures to ensure full and consistent protection of human rights in domestic law and policies, taking into account the recommendations made by United Nations human rights bodies and the New Zealand Human Rights Commission ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Intensify efforts to implement the National Employment Policy in creating more employment opportunities for the youth population", - "values": [ - "4 - General action" - ] - }, - { - "text": "Rescind regional laws and regulations which favour and tolerate discrimination based on sexual orientation, and refrain from adopting similar laws at the federal level, as well as take measures to prevent the arbitrary use of existing regulations against LGBT rights, including their rights to freedom of expression and peaceful assembly", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Consider ratifying the International Convention for the Protection of All Persons from Enforced Disappearance and the Optional Protocol to the International Covenant on Economic, Social and Cultural Rights", - "values": [ - "3 - Considering action" - ] - }, - { - "text": "Continue to take steps towards ratifying the International Convention on the Protection of the Rights of All Migrant Workers and Member of Their Families ", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Continue to fight the "Upsurge" in Ritual Crimes", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Continue with efforts to combat violence against women and take additional measures to reduce violence by addressing the reasons for the withdrawal of many protection order petitions in cases of domestic violence, and ensuring that all reports of domestic violence are thoroughly investigated and that the perpetrators are brought to justice in accordance with the law ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Consider ratifying the Optional Protocol to the Convention against Torture ", - "values": [ - "3 - Considering action" - ] - }, - { - "text": "Establish an official moratorium against the death penalty and take the necessary measures in view of its abolition ", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Strengthen the measures to combat violence against women and draw up proper indicators to evaluate progress", - "values": [ - "4 - General action" - ] - }, - { - "text": "Take all necessary steps to revise the Protection of Life during Pregnancy Act 2013 in line with International Human Rights standards", - "values": [ - "4 - General action" - ] - }, - { - "text": "Increase efforts to ensure the independence of the judiciary and strengthen the capacity of law enforcement and judicial organs. ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Improve cooperation with human rights mechanisms, including presenting outstanding reports and approving visits for special procedures", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Establish a moratorium on all the executions and, eventually, abolish death penalty", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Harmonize all laws with the Constitution of 2013 and ensure they are implemented in full accordance with human rights", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "The introduction of the National Action Plan for Democracy and Human Rights, targeting four priority areas: Governance and democracy, the promotion of economic, social, cultural and environmental rights, the promotion of the rights of specific groups (children, persons with disabilities, older persons and refugees) and the strengthening of the legal and institutional framework for the promotion and protection of human rights", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Introduce amendments to criminal law to expand the list of prosecutable signs of discrimination", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Implement and enforce the right not to be arbitrarily displaced and the Guiding Principles on Internal Displacement ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Continue exploring new policy measures to promote gender equality in order to achieve gender balance in political bodies.", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Continue in its efforts to implement accepted recommendations of the first cycle of the UPR working group ", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Proceed to ratify CRPD ", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Consider, as a priority, the implementation of an effective moratorium on the imposition and execution of the death penalty, and consider the abolition of the death penalty in its domestic legislation", - "values": [ - "3 - Considering action" - ] - }, - { - "text": "Continue to seek support from the international community and relevant United Nations agencies in meeting its challenges in hosting the refugee population ", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Continue the fruitful cooperation with the United Nations Assistance Mission for Iraq UNAMI in order to strengthen the human rights protection, while considering the difficult circumstances and the security situation in Iraq and taking into account the traditions of the Iraqi people", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Continue civil society consultation in its follow up and implementation of the UPR outcome", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Increase the level of its contribution of official development assistance (ODA) to attain 0.7 per cent of gross national income ", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Revise the legislation on child marriage and the legal age of marriage so as to be consistent with international standards, with the aim of both harmonizing the legal framework by eliminating the co-existence of different prescriptions in Civil Law and in Shari'a regulations and preventing the practice of early and forced marriages", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Respect the rights of all persons to due process of law, particularly the presumption of innocence", - "values": [ - "4 - General action" - ] - }, - { - "text": "Adopt the necessary measures to guarantee easy and effective access to free birth registration", - "values": [ - "4 - General action" - ] - }, - { - "text": "Continue with the efforts of realizing the targets of the Millennium Development Goals in the areas of nutrition, gender equality in primary education, reduction of maternal and child mortality", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Accelerate the implementation of the national strategy for Roma integration and fight against discrimination in employment, education and health care", - "values": [ - "4 - General action" - ] - }, - { - "text": "Amend the legal framework to guarantee equal personal status of women as well as equal rights in relation to property, inheritance and custody of children ", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Continue strengthening the institutions responsible for the promotion and protection of human rights", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Strengthen its internal human rights monitoring system by proceeding with the accreditation of the National Human Rights Commission with A category rating according to the Paris Principles", - "values": [ - "4 - General action" - ] - }, - { - "text": "Improve prison conditions, including by relieving overcrowding in prisons.", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Take measures to facilitate the effective performance of the functions of the Ombudsman, ensuring the adequate provision of financial resources for its work and an appropriate follow-up of its recommendations ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Continue consolidating and increasing its national social inclusion programmes", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Fully abolish the death penalty ", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Create an institutional strategy to reduce domestic violence ", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Continue to strengthen enforcement of anti-trafficking legislation by investigating and prosecuting offenders, while also reinforcing the mechanisms of support, rehabilitation, protection and redress for victims", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Decriminalize same-sex relationships between consenting adults and strengthen efforts to address inequality and discrimination based on sexual orientation and gender identity", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Continue legal and legislative reforms and develop means to implement and monitor them ", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Continue the efforts embarked to ratify International Convention for the Protection of All Persons from Enforced Disappearance (CPED)", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Ensure that military personnel assigned to peace missions are provided with adequate training and clear guidance in relation to the protection, rights and needs of women, including issues related to sexual and gender-based violence as well as sexual exploitation and abuse ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Confer nationality to all stateless minor children, regardless of age or the condition or nationality of their parents", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Ratify the second Optional Protocol to ICCPR", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Take effective measures to address the needs of women belonging to minorities, such as Roma women, in order to eliminate all forms of discrimination against them", - "values": [ - "4 - General action" - ] - }, - { - "text": "Initiate a national dialogue on the right of women to reproductive health, including with respect to the consequences of restrictive laws on abortion, including the criminalization of abortion", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Restrict the application of the death penalty to the most serious crimes as a step towards the abolition of the death penalty", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Include human rights education in the school curricula and teachers' education.", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Take the necessary measures to eliminate cases of torture in prisons", - "values": [ - "4 - General action" - ] - }, - { - "text": "Improve the access to the National Protection Unit and its impact in rural areas, and take new steps to protect human rights defenders, journalists, indigenous leaders and people involved in land restitution processes ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Conclude the process of ratification of the Convention on the Rights of Persons with Disabilities ", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Reopen the Greek minority high school on Imvros island", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Continue to engage international and regional partners to seek technical and other assistance towards its full compliance with its human rights treaties obligations", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Adopt a comprehensive strategy to prevent gender-based violence and thoroughly investigate and prosecute incidents of domestic violence perpetrated against migrant populations", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Consider ratifying CRPD and its Optional Protocol, and accomplish the human rights goals set by the Human Rights Council in resolution 9-12 ", - "values": [ - "3 - Considering action" - ] - }, - { - "text": "Ensure that transnational corporations and other business enterprises operating in or managed from its territory are legally accountable for human rights abuses and violations", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Adopt a definition of torture fully in compliance with article 1 of the Convention against Torture and other Cruel, Inhuman or Degrading Treatment or Punishment ", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Ratify International Labour Organization Convention No. 87", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Further improve the social status of persons with disabilities", - "values": [ - "4 - General action" - ] - }, - { - "text": "Adopt a national plan against racism, racial discrimination, xenophobia and intolerance that includes aspects such as education and training in human rights for all levels of public administration and a system of data collection for overseeing and controlling xenophobic and racist acts, carry out a comprehensive analysis on the effectiveness of legislative measures which seek to prohibit and punish using xenophobic messages or the incite to racial discrimination by political parties, and establish a simplified and flexible mechanism to process and deal with claims based on possible acts of discriminatory treatment by security forces and bodies", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Intensify efforts to improve the existing situation in prisons and detention centres ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Increase its budget for migration detention centres and migrant care through intensified cooperation with EU partners ", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Ensure that all persons suspected of having committed or being accomplices of crimes against international law are brought to national courts and judged in accordance with international norms", - "values": [ - "4 - General action" - ] - }, - { - "text": "Take measures to guarantee full and effective recognition of sexual and reproductive rights, in particular through the decriminalization of the voluntary interruption of pregnancy ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Pursue its efforts in order to ensure an efficient work of the Economic and Financial Crimes Commission", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Continue to take measures with a strong social impact to improve the economic situation of the Haitian people, by focusing on vulnerable groups, particularly women, children and persons with disabilities", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Recommended taking urgent steps to abolish the various systems of arbitrary detention", - "values": [ - "4 - General action" - ] - }, - { - "text": "Take more efficient measures to prevent and eliminate manifestations of racism, xenophobia and intolerance in political speech ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Intensify efforts to reinforce the human rights protection system and fight impunity and ensure the independence of the judicial system.", - "values": [ - "4 - General action" - ] - }, - { - "text": "Continue with the policy of promoting and protecting the rights of women, in accordance with the Constitution of 2014", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Amend Armenia's Criminal Code to ensure it is consistent with the definition in the Convention against Torture and Other Cruel, Inhuman or Degrading Treatment or Punishment, particularly the inclusion of acts committed by public officials", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Continue applying the country's socio-economic development strategies and plans ", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Adopt legislation and raise public awareness to combat domestic violence ", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Consider the possibility of ratifying CED", - "values": [ - "3 - Considering action" - ] - }, - { - "text": "Put an end to extra-judicial executions and prosecute the perpetrators of such acts by means of a fair trial", - "values": [ - "4 - General action" - ] - }, - { - "text": "Continue with the government's efforts to improve policies and programs in the treatment of persons deprived of liberty ", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Ensure that its National Strategy for Roma Integration is implemented in full to enable the Roma community to better integrate into society, giving them greater access to public amenities, healthcare and public housing", - "values": [ - "4 - General action" - ] - }, - { - "text": "Remove obstacles preventing women having effective access to justice and adopt appropriate measures to promote basic legal assistance and knowledge of women's rights, including the right to obtain redress in the courts ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Continue to promote gender equality and combat all forms of discriminatory practices against women. ", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Ratify all core human rights treaties to which Malaysia is not a party", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Establish an effective and independent mechanism to investigate all allegations of torture promptly, independently and thoroughly", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Immediately impose a moratorium on executions, with a view to complete abolition of the death penalty, make public information about past executions and death sentences handed down by the courts, and review the Penal Code and the Misuse of Drugs Act, with a view to repealing all provisions on mandatory death sentencing and removing all presumption of guilt clauses ", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Launch awareness-raising campaigns focusing on women's rights", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Consider extending a standing invitation to special procedures", - "values": [ - "3 - Considering action" - ] - }, - { - "text": "Undertake further work regarding the independence of the judiciary and corruption in the judiciary and across the executive.", - "values": [ - "4 - General action" - ] - }, - { - "text": "Adopt measures, including disciplinary measures, in order to raise the awareness of professionals of the education system, in particular teachers, on their obligation of abstaining from resorting to corporal punishment ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Strengthen the accountability and prosecution of law enforcement officers who commit abuses against lesbian, gay, bisexual and transgender persons and ethnic minorities", - "values": [ - "4 - General action" - ] - }, - { - "text": "To provide training for members of the Interministerial Support Committee for the Preparation of Reports", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Ensure throughout the country, protection and promotion of human rights in accordance with the first chapter of the recently promulgated Constitution of Transition and effectively criminalize the violations of such rights", - "values": [ - "4 - General action" - ] - }, - { - "text": "Continue to establish democracy, good governance, rule of law and equality", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Strengthen measures to protect women and children against harmful cultural practices such as moletry and stigmatization of twins", - "values": [ - "4 - General action" - ] - }, - { - "text": "Promote and protect the rights of persons with disabilities by, among others, involving persons with disabilities in all phases of ratification of the CRPD and the Palau National Policy on Disability, and ensuring access to education as well as an inclusive education system at all levels for children with disabilities ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Consider acceding to other international instruments to which it is not yet party and reflect on the ways and means which would permit the country to incorporate these rights into its domestic law", - "values": [ - "3 - Considering action" - ] - }, - { - "text": "Further strengthen the community-based rehabilitation programme for drug addicts, inpatients and outpatients for their integration into society", - "values": [ - "4 - General action" - ] - }, - { - "text": "Commute the pending death sentences to imprisonment terms ", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Implement effective measures to prevent and reduce infant and neonatal mortality in the context of the 2016-2020 Roadmap", - "values": [ - "4 - General action" - ] - }, - { - "text": "Continue to enact laws and promote policies aimed at protecting women and enhancing their roles in society", - "values": [ - "4 - General action" - ] - }, - { - "text": "Instil a human rights-based approach regarding the protection of migrants and asylum-seekers, including the cessation of pushbacks to the sea, while refraining from deportation and formally prohibiting detention of children", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Continue to expand the experience in gender sensitive budgeting, which could be considered as a good practice for all of the Middle East and North Africa region and elsewhere", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Take the necessary steps to ensure that journalists are able to operate without intimidation or interference.", - "values": [ - "4 - General action" - ] - }, - { - "text": "Consider legislative measures to tackle the question of domestic violence ", - "values": [ - "3 - Considering action" - ] - }, - { - "text": "Strengthen the efforts to prevent and combat trafficking in human beings for sexual purposes, with particular attention to children", - "values": [ - "4 - General action" - ] - }, - { - "text": "Adopt the human rights action plan elaborated recently", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Promote equality between women and men, in particular concerning the level of participation of women in public life and in the employment sector.", - "values": [ - "4 - General action" - ] - }, - { - "text": "Introduce legislation to prohibit corporal punishment in all areas, including in the family, school and all places of deprivation of liberty, taking into account general comment No. 8 of the Committee ", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Enact legislation that criminalizes rape", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Take all necessary steps to end discrimination and to improve the living conditions of the Roma population, inter alia, through the provision of adequate housing and public infrastructure", - "values": [ - "4 - General action" - ] - }, - { - "text": "Take more effective measures to protect and promote the rights of women and girls, as they continue to be subjected to widespread violence, discrimination and exploitation", - "values": [ - "4 - General action" - ] - }, - { - "text": "Adopt an open, merit-based selection process when selecting national candidates for treaty body elections", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Reform the Labour Code so that it ensures the protection of the labour rights of all workers, including domestic and construction workers, and put in place mechanisms to improve enforcement of the law ", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Guarantee the right to education by enrolling all migrant children into mainstream Bulgarian schools and provide necessary language support classes to facilitate their integration", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Intensify programs to combat crime and extreme poverty ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Continue to promote the protection of the rights of women and children", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Issue clear public orders to the security forces to cease arbitrary arrest, detention and torture", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Submit its report that has been overdue since 2013 to the Committee against Torture", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Introduce gender as an issue in the school curriculum in order to combat stereotypes and cultural factors to inequality ", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Take all measures to establish a legal framework to address the issues affecting the migrant population, minorities, refugees and indigenous people", - "values": [ - "4 - General action" - ] - }, - { - "text": "Reinforce the multi-party system", - "values": [ - "4 - General action" - ] - }, - { - "text": "Consider the recommendation of the Committee against Torture with regard to ratification of the Second Optional Protocol to the International Covenant on Civil and Political Rights, aiming at the abolition of the death penalty", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Significantly step up its efforts in addressing the reportedly high number of rape cases, particularly against young victims, and gender-based violence", - "values": [ - "4 - General action" - ] - }, - { - "text": "Continue its efforts to provide full access to education and to reduce the mortality rate through the improvement of health care services", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Enhance the rights of women to civic participation ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Continue to prioritize gender mainstreaming and to ensure that appropriate mechanisms are in place to implement, monitor and review the Government's strategy", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Accept and faithfully implement the recommendations of the COI, especially those contained in the Human Rights Council's resolution", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Ensure that children under the age of 18 are not recruited into any armed group on the national territory ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Take a lead role in generating global opinion in favour of promoting human rights through fighting poverty", - "values": [ - "4 - General action" - ] - }, - { - "text": "Ensure implementation of the national programme of family violence prevention (2009-2014) and prevent all forms of violence against women and children, including domestic violence ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Promote increase autonomy to persons with disabilities in the fields of health, employment and education as additional steps following the ratification of the Convention on the Rights of Persons with Disabilities", - "values": [ - "4 - General action" - ] - }, - { - "text": "Continue the actions aimed at raising awareness among religious and customary leaders", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Extend a standing invitation to special procedures, as previously recommended", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Strengthen the independence and the mandate of its national human rights institution and provide it with adequate financial and human resources to assist it in meeting the standards required by the Paris Principles ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Improve the monitoring and implementation of measures to combat violence against women ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Include in its national legislation a clear definition of child pornography and review legislation with a view to criminalizing child prostitution, including the adoption of a victim-oriented approach towards children victims of sexual exploitation", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Consider the possibility of ensuring free and compulsory education, at least at the primary level", - "values": [ - "3 - Considering action" - ] - }, - { - "text": "Ratify the major international instruments, including the ICCPR and the ICESCR", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Accede to the Rome Statute creating the International Criminal Court", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Take all necessary measures to stop acts of torture and Cruel, Inhuman or Degrading Treatment", - "values": [ - "4 - General action" - ] - }, - { - "text": "Continue efforts to ensure respect for the rights of the child including developing a comprehensive national strategy to prevent and combat all forms of violence against children including domestic violence, sexual trafficking and exploitation of the children", - "values": [ - "4 - General action" - ] - }, - { - "text": "Further promote the law on the minimum age of marriage at 18 years ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Continue to work to ensure key pieces of national legislation, including the 1999 Penal Code and 2003 Criminal Procedures Code, are consistent with its international human rights treaty commitments.", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Continue its efforts in combating trafficking in persons and smuggling of migrants", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Consolidating democratic process and strengthening local governance", - "values": [ - "4 - General action" - ] - }, - { - "text": "Continue with the efforts carried out to combat the discrimination suffered by minorities", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Amend the Civil Code and Family Registration Law in accordance with Japan's international human rights obligations and in this regard make particular efforts to address the concluding observations of CEDAW", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Implement recommendations made in the Office of the Ombudswoman's extraordinary report related to human rights complaints on access to education, procedural guarantees in the demolition of illegal dwellings and police conduct ", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Take measures to eliminate cases of discrimination against certain groups in society", - "values": [ - "4 - General action" - ] - }, - { - "text": "Continue its efforts to ensure that migrants and women belonging to minorities continue to be the focus of government programmes specifically geared towards the protection of their rights", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Continue its reflections and work with a view to having a written Constitution ", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Continue to promote and protect the fundamental freedoms and human rights of all its citizens", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Address harsh living conditions in immigration detention centres", - "values": [ - "4 - General action" - ] - }, - { - "text": "Continue its efforts in establishing a National Human Rights Institution, in line with the Paris Principles", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Strengthen the measures to combat domestic violence, in particular the effective implementation of the existing legal framework, data collection and training of State officers responsible of receiving complaints", - "values": [ - "4 - General action" - ] - }, - { - "text": "Revise the national legislation with a view to guarantee that all persons are registered at birth, independently of their migrant condition or the nationality of their parents", - "values": [ - "3 - Considering action" - ] - }, - { - "text": "Continue its work for the clarification of all operational aspects of specific laws regarding gender equality and improve the implementation of these measures", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Expedite implementation of the law against Sexual Offences, and ensure coordinated implementation of the National Domestic Violence Policy ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Remain unswerving in pursuing measures geared at addressing the challenges that the Government identifies in its national report, in particular relating to good governance and respect for the rule of law ", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Intensify its fight against trafficking, including by addressing the root causes of the problem such as gender-based poverty ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Complete internal legal procedures in order to ratify the Rome Statute of the International Criminal Court", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Expand education and awareness campaigns on the issue of trafficking in persons and make efforts to study human trafficking in the country", - "values": [ - "4 - General action" - ] - }, - { - "text": "Enact legislation that explicitly prohibits corporal punishment of children in the home ", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Adopt measures at the legislative level which directly prohibit racist and xenophobic statements and guarantee access to effective protection and measures of legal defence in the appropriate national courts", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Adopt the implementing decrees of the ordinance on pastoralism, guaranteeing the protection of land rights", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Establish mechanisms and procedures for the protection of rights of child victims of human trafficking ", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Strengthen measures to address the needs of people affected and displaced by conflict and seek durable solutions to their displacement", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Consider incorporating the United Nations Rules for the Treatment of Women Prisoners and Non-custodial Measures for Women Offenders, otherwise known as the "Bangkok Rules", as part of its programme to enhance the conditions of women detainees in prisons ", - "values": [ - "3 - Considering action" - ] - }, - { - "text": "Ensure the implementation of already ratified international conventions in the sphere of children's rights protection", - "values": [ - "4 - General action" - ] - }, - { - "text": "Maintain and strengthen the achievements made in poverty elimination and further consolidate its continued efforts by giving focus to its integrated rural development schemes and in line with its priority and experience to promote the right to development", - "values": [ - "4 - General action" - ] - }, - { - "text": "Eliminate from the Criminal Code the criminalization of same-sex sexual relationships and at the same time redouble efforts to end discrimination against the LGBT group ", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Accede to the Convention against Enforced Disappearance ", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Transparently investigate allegations of ill-treatment committed by law enforcement officers during and after the June 2010 events and take clear steps to combat the arbitrary detentions and torture of detainees, especially of the ethnic Uzbek population in the southern regions", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Survey the extent of unsafe illegal abortions and introduce measures to safeguard women's universal right to life and health ", - "values": [ - "3 - Considering action" - ] - }, - { - "text": "Issue a standing invitation to all special procedures.", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Ensure equality and non-discrimination of children born out of wedlock in issues related to the acquisition of nationality, inheritance rights and birth registration", - "values": [ - "4 - General action" - ] - }, - { - "text": "Ensure safe access to legal abortion, including for female rape victims, within the public health system in all regions. Initiate a public debate on the decriminalization of abortion", - "values": [ - "4 - General action" - ] - }, - { - "text": "Sign the Optional Protocol to the Convention against Torture", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Continue to carry out its excellent effort to ensure nine years' compulsory education for all children from the age of six ", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Strengthen its measures to eradicate child abuse, sexual exploitation of children", - "values": [ - "4 - General action" - ] - }, - { - "text": "Introduce strong legislation prohibiting attacks against journalists to effectively investigate such acts and prosecute the perpetrators", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Continue and strengthen efforts to combat poverty ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Consider extending an open standing invitation to special procedures mechanisms.", - "values": [ - "3 - Considering action" - ] - }, - { - "text": "Improve detention conditions in conformity with the United Nations Standard Minimum Rules for the Treatment of Prisoners and the United Nations Rules for the Treatment of Women Prisoners and Non-custodial Measures for Women Offenders", - "values": [ - "4 - General action" - ] - }, - { - "text": "Effectively implement the Strategy for the inclusion of the Romanian citizens belonging to the Roma minority for the period 2012-2020 and make further efforts in guaranteeing the rights of the Roma in education, employment, housing and cultural fields ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Continue incorporating the Convention on the Elimination of All Forms of Discrimination against Women into its domestic legal system to eliminate all forms of discrimination against women", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Adopt laws that guarantee the rights of refugees and asylum seekers, that establish the prohibition of expulsion, return and extradition of a person to another State in case that there are well-founded reasons to believe that this person would be in danger of being subjected to torture or ill-treatment", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Continue efforts to fight against poverty ", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Follow up on recommendations of the ILO Committee of Experts on the Application of Conventions and Recommendations so that the 2006 amended Employment Act No. 4 ensures equal remuneration for men and women for work of equal value ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Strengthen its efforts to combat racial discrimination, especially in the judicial system ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Strengthen its regulatory and policy framework, in accordance with international human rights standards, for the effective protection of asylum seekers and refugees", - "values": [ - "4 - General action" - ] - }, - { - "text": "Consider ratifying the Second Optional Protocol to the International Covenant on Civil and Political Rights aiming at the abolition of the death penalty", - "values": [ - "3 - Considering action" - ] - }, - { - "text": "Cooperate in the follow-up to this review ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Withdraw its reservations to CAT (arts. 21 and 22) and ratify OPCAT without reservations", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Expressly prohibit discrimination based on sexual orientation and gender identity, and decriminalize same-sex sexual conduct between consenting adults", - "values": [ - "4 - General action" - ] - }, - { - "text": "Continue endeavours to reduce poverty and bridge the income gap between the different regions and between rural and urban areas", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "While continuing to protect freedom of opinion and expression consistent with article 73 of the Constitution, maintain article 233 (a) of the General Penal Code and article 27 of the Media Act, which explicitly prohibit hate speech and direct incitement to hatred ", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Work closely with the Council of Europe on judicial reform and support a system of court monitoring based on civil society participation", - "values": [ - "4 - General action" - ] - }, - { - "text": "Consider ratifying the Optional Protocol to the CRPD", - "values": [ - "3 - Considering action" - ] - }, - { - "text": "Finalize the draft law amending certain provisions of the 1963 citizenship act to enable Bahraini women married to non-Bahraini men to confer their nationality on their children without any conditions", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Continue the implementation of the municipal health service program and the national development program 2012-2015", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Accede to further international human rights treaties ", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Immediately and unconditionally release all political prisoners and ensure their full rehabilitation", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Take measures to guarantee the independence of national institutions", - "values": [ - "4 - General action" - ] - }, - { - "text": "Review the nationality law ", - "values": [ - "3 - Considering action" - ] - }, - { - "text": "Take effective measures to ensure accessibility of safe drinking water and access to adequate sanitation facilities, particularly in remote rural areas ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Accede to the Convention on the Prevention and Punishment of the Crime of Genocide ", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Continue the efforts of the Government to ensure the improvement of its educational and health systems, as well as progress on other socio-economic and cultural rights", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Increase the efficiency of court case management, thereby ensuring access to trial without undue delay", - "values": [ - "4 - General action" - ] - }, - { - "text": "Grant independent national and international monitoring organizations full access to all detention facilities ", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Allow individuals the right to associate freely and provide expeditious due process for all those accused of crimes ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Ensure that all human rights defenders are able to conduct their work in line with the provisions of the United Nations Declaration on Human Rights Defenders (A/RES/53/144)", - "values": [ - "4 - General action" - ] - }, - { - "text": "Ensure that all trials, including those of persons charged with terrorism or in connection with membership of banned religious organizations, uphold international standards of fair trial ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Continue efforts towards combating violence against women and children ", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Continue strengthening measures to prevent and combat discrimination based on sexual orientation, ensuring the free expression of, and respect for, persons belonging to the lesbian, gay, bisexual, transgender and intersex community", - "values": [ - "4 - General action" - ] - }, - { - "text": "Ratify the conventions on human rights not yet ratified and proceed to the harmonization of those already ratified with domestic legislation", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Ensure the protection of human rights defenders in accordance with the United Nations Declaration on Human Rights Defenders", - "values": [ - "4 - General action" - ] - }, - { - "text": "Give the National Human Rights Institution to be established a broad mandate to promote and protect human rights in accordance with the Paris Principles", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Take and strengthen necessary legislative measures required to incorporate in its domestic law the provisions contained in international human rights instruments to which it is a party.", - "values": [ - "4 - General action" - ] - }, - { - "text": "Continue to implement the process of penitentiary reform based on the three pillars established by the Government", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Consider positively the acceptance of the contentious jurisdiction of the Inter-American Court of Human Rights ", - "values": [ - "3 - Considering action" - ] - }, - { - "text": "Ensure a participatory and inclusive process with civil society in the implementation of the universal periodic review recommendations, including organizations representing minorities", - "values": [ - "4 - General action" - ] - }, - { - "text": "Ratify ICCPR and its two Optional Protocols, ICESCR and its Optional Protocols, CAT, the Optional Protocol to CEDAW, the Rome Statute of the International Criminal Court, the Convention relating to the Status of Refugees and its Protocol, the Convention relating to the Status of Stateless Persons, and the Convention on the Reduction of Statelessness ", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "It will liaise with the President of the Human Rights Council and the Office of the High Commissioner for Human Rights on the possible organization of visits that might prove useful for the purposes of discussions and consultations.", - "values": [ - "1 - Minimal action" - ] - }, - { - "text": "Develop a comprehensive strategy for the environment in order to address the problems of water contamination and air pollution", - "values": [ - "4 - General action" - ] - }, - { - "text": "Take appropriate steps to strengthen the implementation of the comprehensive strategy on combating sexual violence and to improve the effectiveness of the prosecution aimed at ending impunity of the perpetrators of crimes. ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Establish policies, programmes and services to provide children with greater protection and care ", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Continue its efforts to provide educational facilities for people with special needs", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Continue the steps aiming at combating corruption and achieve the efforts to develop national mechanisms in this regard", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Accept the establishment of an international, credible and independent inquiry mechanism to shed light on the violations since the 2009 presidential elections", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Step up efforts towards gender equality", - "values": [ - "4 - General action" - ] - }, - { - "text": "Sign and ratify the International Covenant on Economic, Social and Cultural Rights, the International Covenant on Civil and Political Rights and the Convention against Torture and other Cruel, Inhuman or Degrading Treatment or Punishment", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Commute all existing death sentences to imprisonment and ensure the complete abolition of the death penalty, including through the ratification of the Second Optional Protocol to the International Covenant on Civil and Political Rights (ICCPR-OP2) ", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Share with the members of the international community its best practices and policies and programmes, including educational programmes, with respect to women, children, older persons and persons with disabilities.", - "values": [ - "1 - Minimal action" - ] - }, - { - "text": "Consider ratifying the Optional Protocol to the Convention on the Elimination of All Forms of Discrimination against Women ", - "values": [ - "3 - Considering action" - ] - }, - { - "text": "Make all possible efforts to achieve the complete elimination of all kinds of violence against women and girls, including domestic violence", - "values": [ - "4 - General action" - ] - }, - { - "text": "Reinforce existing legislation to ensure a fair judicial treatment, especially for the most vulnerable categories, such as women and children", - "values": [ - "4 - General action" - ] - }, - { - "text": "Continue evaluating its national capacities so as to be in line with the international human rights treaties it has acceded to or ratified", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Setup a national strategy to combat trafficking in persons as defined by the existing Penal Code", - "values": [ - "4 - General action" - ] - }, - { - "text": "Ensure prompt, credible, transparent, impartial and comprehensive investigations leading to prosecutions of the allegations of gross violations and abuses of international human rights law and violations of international humanitarian law, thus guaranteeing that perpetrators are duly accountable before justice", - "values": [ - "4 - General action" - ] - }, - { - "text": "Realize effectively the plans to overcome poverty and achieve sustainable development", - "values": [ - "4 - General action" - ] - }, - { - "text": "Guarantee the full exercise of freedom of association, promote and facilitate the activities of all non-governmental organizations", - "values": [ - "4 - General action" - ] - }, - { - "text": "Ensure that all parties responsible for the post-election crimes of 2010 be brought to justice regardless of their political affiliation", - "values": [ - "4 - General action" - ] - }, - { - "text": "Take concrete measures aiming at fostering a genuine human rights culture with due regard to national and regional particularities as well as historical, cultural and religious backgrounds ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Ratification of ILO Conventions Nos. 138 concerning Minimum Age for Admission to Employment, 182 concerning the Prohibition and Immediate Action for the Elimination of the Worst Forms of Child Labour, 169 concerning Indigenous and Tribal Peoples in Independent Countries, 155 concerning Occupational Safety and Health and the Working Environment and 170 concerning Safety in the use of Chemicals at Work ", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Take all necessary measures to put an end to all forms of discrimination against women in the labour market", - "values": [ - "4 - General action" - ] - }, - { - "text": "Establish an ombudsperson for children according to the Paris Principles", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Provide greater freedom to journalism", - "values": [ - "4 - General action" - ] - }, - { - "text": "Continue its work on meeting its objectives in the field of development as set out in the Millennium Declaration ", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Take more efforts to prevent children from sexual exploitation and separation from families, and give them the opportunity and assistance to grow up in an environment of freedom and dignity ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Prepare an appropriate normative framework for mental health institutions and social care facilities, ensuring that it prohibits the nonconsensual use of coercive practices such as psychiatric medication or electroconvulsive therapy", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Take steps to ratify the Optional Protocol to the Convention on the Rights of the Child on the involvement of children in armed conflict", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Make progress in the drafting and implementation of policies and measures aimed at attaining Sri Lanka\u2019s sustainable development and overcoming challenges of climate change for the protection and promotion of human rights of its population", - "values": [ - "4 - General action" - ] - }, - { - "text": "Ensure that the freedom of speech of civil society organizations and special interest groups is promoted and respected across Indonesia so that they can, within the legal framework, voice their views and concerns, even on issues that can be sensitive", - "values": [ - "4 - General action" - ] - }, - { - "text": "Ensure that the recently adopted legislation on the minimum legal age to work is properly applied", - "values": [ - "4 - General action" - ] - }, - { - "text": "Continue to provide greater technical assistance to developing countries", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Promote initiatives aimed at ensuring that there is employment stability for pregnant women ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Ratify the 1960 Convention against Discrimination in Education and accede to the African Union Convention for the Protection and Assistance of Internally Displaced Persons in Africa ", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Review the proposed amendment of Spain's national security law to ensure the right of an individual to seek asylum", - "values": [ - "3 - Considering action" - ] - }, - { - "text": "Accede to the Convention on the Rights of Persons with Disabilities and the International Convention for the Protection of All Persons from Enforced Disappearance ", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Consider ratifying the Second Optional Protocol to ICCPR, aiming at the abolition of the death penalty", - "values": [ - "3 - Considering action" - ] - }, - { - "text": "Introduce long-term measures including programmes to change the tenor of the political discourse in campaigns in order to achieve greater female participation in decision-making ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Review national laws to prohibit the detention of minors", - "values": [ - "3 - Considering action" - ] - }, - { - "text": "Ensure that non-governmental organizations and human rights defenders can freely conduct their activities", - "values": [ - "4 - General action" - ] - }, - { - "text": "Continue its efforts, in cooperation with UNICEF and relevant international organizations, to eradicate child labour", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Fully implement the recommendations of the CEDAW and CRC on the decriminalization of abortion and on exceptions to the general prohibition of abortion for cases of therapeutic abortion and when the pregnancy is the result of rape or incest", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Prohibit and punish corporal punishment both in the home, as well as in public institutions such as schools and prisons ", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Amend its national legislation to be in conformity with the provisions of the Convention on the Elimination of All Forms of Discrimination against Women, including when revising the Bill of Rights and the Political Parties Bill, in order to protect and promote women\u2019s rights and gender equality", - "values": [ - "4 - General action" - ] - }, - { - "text": "Continue its efforts to provide universal good quality education for all children, especially girls", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Adopt and implement measures to provide for independent media free from any intimidation and suppression, in accordance with its international obligations ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Elaborate and adopt a plan which promotes a greater and wider understanding of discrimination and intolerance and its various manifestations and also adopt administrative measures which allow the combating of discrimination on the basis of ethnicity, nationality or language", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Revise the legal age for criminal responsibility ", - "values": [ - "3 - Considering action" - ] - }, - { - "text": "Accelerate the ratification of all international human rights instruments", - "values": [ - "4 - General action" - ] - }, - { - "text": "Continue with the implementation of the new Civil and the Civil Procedure Codes, and the Criminal and the Criminal Procedure Codes, which will ease the jurisdiction procedures", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Reform the regime of defamation offences, which has a chilling effect on freedom of expression", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Continue implementing current socioeconomic development projects and programmes for the promotion and protection of all human rights ", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Involve domestic human rights organizations in the follow-up to this review and in the implementation of its National Human Rights Action Plan ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Proceed, within the shortest possible amount of time, with the establishment of a national human rights institution in accordance with the Paris Principles ", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Make available adequate budgetary allocations, despite financial constraints, for the continued provision and improvement of education and health services which are essential to protect the rights of the poorest and the most vulnerable members of society ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Study the possibility of mitigating the negative impact of budget cuts on access to health and an adequate standard of living", - "values": [ - "3 - Considering action" - ] - }, - { - "text": "Look into amending the ban on students wearing religious symbols in schools, including the hijab", - "values": [ - "3 - Considering action" - ] - }, - { - "text": "Increase its efforts to attain equality of rights between men and women, including through awareness raising activities to combat patriarchal cultural practices and gender stereotypes that undermine the exercise of such rights ", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Strengthen awareness-raising campaigns about the forms of contracting HIV/AIDS and respective preventive measures, particularly focusing on marginalized young persons, drug users, sexual workers of both sex and other groups which are vulnerable to being infected", - "values": [ - "4 - General action" - ] - }, - { - "text": "Consider the possible establishment of a national human rights institution, according to the Paris Principles ", - "values": [ - "3 - Considering action" - ] - }, - { - "text": "Adopt a National Action Plan on Security Council resolution 1325 (2000) on Women, Peace and Security", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Increase efforts to combat child labour, which is very often combined with hazardous or dangerous conditions of work", - "values": [ - "4 - General action" - ] - }, - { - "text": "Continue with efforts to fight against human trafficking ", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Cease the unacceptable practices of unlawful detention and torture, allow in independent observers and immediately release all prisoners of conscience", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Reinforce the National Referral Mechanism to identify and assist victims of human trafficking", - "values": [ - "4 - General action" - ] - }, - { - "text": "Continue to improve access to basic services, such as health and education, with the full support and cooperation of the international community ", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Continue to work with regional and international partners to ensure amicable solutions to remaining post-referendum issues ", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Bring its Ombudsman Board into compliance with the Paris Principles", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Undertake all necessary measures to prevent the torture and mistreatment of inmates ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Address violence and hate speech against religious minorities", - "values": [ - "4 - General action" - ] - }, - { - "text": "Cooperate with the United Nations and Human Rights Council mechanisms, particularly the Commission of Inquiry established by the Human Rights Council", - "values": [ - "4 - General action" - ] - }, - { - "text": "Continue the ratification of international instruments to which the country is not yet a party, in particular those relating to human rights", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Extend an open, permanent invitation to international human rights mechanisms.", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Take swift action to further enhance equality legislation, particularly in the area of partnership and cohabitation, as proposed by the current Maltese Government", - "values": [ - "4 - General action" - ] - }, - { - "text": "Accede to the 1954 Convention relating to the Status of Stateless Persons and the 1961 Convention on the Reduction of Statelessness", - "values": [ - "3 - Considering action" - ] - }, - { - "text": "The existing women's and children units in the country which are staffed with police officers be strengthened with sufficient human and logistical resources ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Enhance efforts in achieving gender equality", - "values": [ - "4 - General action" - ] - }, - { - "text": "Increase the human and financial resources of the National Human Rights Commission in order to allow it to obtain A status from the International Coordinating committee of national institutions for the promotion and protection of human rights", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Stop extrajudicial killings of citizens of the United States of America and foreigners, including those being committed with the use of remotely piloted aircraft", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Continue its efforts in ensuring that the housing conditions of workers to be continuously inspected and monitored ", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Continue to harmonize, implement and enforce existing laws aimed at protecting the human rights of women and children.", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Submit overdue reports to the Committee on the Elimination of Racial Discrimination, the Committee on Economic, Social and Cultural Rights, the Human Rights Committee and the Committee on the Elimination of Discrimination against Women", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Continue efforts to promote human rights, particularly in the areas of education and professional training ", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Initiate as possible, with the assistance of the international community, the programmes of investment need in the health, education and social security sectors", - "values": [ - "4 - General action" - ] - }, - { - "text": "Adopt further measures to address racism and support community tolerance", - "values": [ - "4 - General action" - ] - }, - { - "text": "Guarantee effective protection of children's rights, including access to education and protection from child labour", - "values": [ - "4 - General action" - ] - }, - { - "text": "Increase women's participation in political and public life", - "values": [ - "4 - General action" - ] - }, - { - "text": "Introduce legislation to criminalize the practice of female genital mutilation", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Continue to take steps to improve the penitentiary system ", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Continue making progress in the efforts needed to have a National Human Rights Institution in conformity with the Paris Principles ", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Fully implement its national action plan to combat intimate partner violence and other forms of domestic violence", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Grant Palestinian refugees the right to own land", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Foster partnerships between the government, national human rights institutions, and civil society ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Continue ensuring the right to safe drinking water and sanitation for all persons", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Formulate civil and administrative laws which complement the provisions of the criminal law and are directed towards combating discrimination on the basis of ethnicity, nationality or language, in the fields of employment and the public services in particular", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Take all measures necessary to ensure the independence of the judiciary", - "values": [ - "4 - General action" - ] - }, - { - "text": "Accelerate the process of finalizing its National Policy and Action Plan for human rights, and strengthen its national human rights infrastructure ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Respond to the suggestion made by the special procedures in paragraph 69 (n) of document A/68/284 regarding cases of Alaska, Hawaii and Dakota ", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Consider ratification of the third Optional Protocol to the CRC on a communication procedure ", - "values": [ - "3 - Considering action" - ] - }, - { - "text": "Reinforce the mandates of the National Council to Fight Corruption", - "values": [ - "4 - General action" - ] - }, - { - "text": "Consider the possible signature and ratification of the International Convention for the Protection of All Persons from Enforced Disappearance (CPED) ", - "values": [ - "3 - Considering action" - ] - }, - { - "text": "Consider without delay enacting legislation to address domestic violence, including marital rape", - "values": [ - "3 - Considering action" - ] - }, - { - "text": "Strengthen the means of action of the training centre for judicial professions created in 2010", - "values": [ - "4 - General action" - ] - }, - { - "text": "Strengthen the ongoing legislative processes regarding the equality between men and women", - "values": [ - "4 - General action" - ] - }, - { - "text": "Create and operationalize a national human rights institution for the promotion and protection of human rights", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Increase the availability of specialized services for the victims of forced labour and trafficking for sex, in partnership with civil society, including by implementing the dedicated victim assistance fund as required by law", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Review its Family Code to remedy provisions, which still represent discrimination against women regarding the issues of divorce and rape witnesses. ", - "values": [ - "3 - Considering action" - ] - }, - { - "text": "Consider ratifying the Convention on the Prevention and Punishment of the Crime of Genocide ", - "values": [ - "3 - Considering action" - ] - }, - { - "text": "Continue to follow up the UPR in the framework of the National System for Human Rights and International Humanitarian Law. ", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Consolidate economic, social and cultural rights ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Continue to advance the draft law on gender equality and justice", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Investigate allegations of abuses against workers of the Olympic Complex of Sochi ", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Review the provisions in its penal code which contain punitive measures against women who have undergone illegal abortions", - "values": [ - "3 - Considering action" - ] - }, - { - "text": "Strengthen efforts at promoting inclusive education, including through regional initiatives", - "values": [ - "4 - General action" - ] - }, - { - "text": "Continue its efforts towards ensuring gender equality in the field of education, health and employment", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Establish a sustainable cooperation between the Ministry of Interior and civil society organizations dealing with domestic and gender-based violence", - "values": [ - "4 - General action" - ] - }, - { - "text": "Continue its efforts in the fight against violence and discrimination against women, and ensure the effective implementation of existing legislation, particularly legislation on the minimum legal age of marriage", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Consider ratification of CRPD ", - "values": [ - "3 - Considering action" - ] - }, - { - "text": "Ensure that human rights agencies, including the Myanmar National Human Rights Commission and the Myanmar Press Council, are able to function as effective and independent agencies", - "values": [ - "4 - General action" - ] - }, - { - "text": "Step up efforts in fighting trafficking of human beings ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Continue with the implementation of literacy and remedial education, especially in rural areas", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Facilitate as soon as possible the visits requested by the special procedures of the Human Rights Council", - "values": [ - "4 - General action" - ] - }, - { - "text": "Abrogate all provisions criminalizing freedom of expression ", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Achieve the implementation of the national strategy for persons with disabilities and introduce a legal regime of subsidized transport for persons with disabilities", - "values": [ - "4 - General action" - ] - }, - { - "text": "Ensure the issuance of legal documents for stateless persons while working on a systemic resolution of statelessness in the country in accordance with international standards", - "values": [ - "4 - General action" - ] - }, - { - "text": "Implement the voluntary pledges it presented as it applied to the Human Rights Council. namely, the principles of universality, objectivity and non-selectivity in the consideration of human rights issues, and the elimination of double standards and politicization in addressing human rights issues of different communities and peoples domestically and internationally", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Repeal all legal provisions that discriminate against persons on the grounds of their sexual orientation, including those in the Sexual Offences Act and in the Criminal Code", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Take appropriate measures to eliminate all forms of discrimination against women and girls as well as persons with albinism", - "values": [ - "4 - General action" - ] - }, - { - "text": "Revise laws and national, regional and local policies to fully recognize and protect the rights of indigenous peoples in domestic law uniformly throughout the nation", - "values": [ - "3 - Considering action" - ] - }, - { - "text": "Take additional measures to counter all forms of racial discrimination and xenophobia", - "values": [ - "4 - General action" - ] - }, - { - "text": "Accelerate the adoption of the draft Code on the protection of the child and the draft Code on persons and family", - "values": [ - "4 - General action" - ] - }, - { - "text": "Focus on addressing discrimination against persons with disabilities", - "values": [ - "4 - General action" - ] - }, - { - "text": "Take the necessary steps towards the establishment of a national human rights institution in accordance with the Paris Principles ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Withdraw the reservations to ICCPR ", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Continue reviewing policies for the effective implementation of the Sustainable Development Goals", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Develop the necessary initiatives in order to prevent and combat any school segregation of Gypsy students", - "values": [ - "4 - General action" - ] - }, - { - "text": "Ratify the Optional Protocol [OP-CAT]", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Ensure effective implementation of its poverty alleviation policy as well as consider adopting a comprehensive national strategy to ensure food and nutrition security for its people", - "values": [ - "4 - General action" - ] - }, - { - "text": "Take further measures to prevent human trafficking, strengthen the protection of victims and provide them with redress", - "values": [ - "4 - General action" - ] - }, - { - "text": "Include information about Greece being a country of destination and transit for human trafficking in school curriculums at secondary and university levels ", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Guarantee and make systematic the use of independent and impartial investigations into alleged cases of torture ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Make every effort to stop violence and the forced recruitment and use of minors as combatants", - "values": [ - "4 - General action" - ] - }, - { - "text": "Ensure that the High Commission for Human Rights functions in accordance with the Paris Principles", - "values": [ - "4 - General action" - ] - }, - { - "text": "Ensure effective implementation of the 2014 National Action Plan to combat trafficking in persons and related offences, including slavery", - "values": [ - "4 - General action" - ] - }, - { - "text": "Continue its efforts to strengthen the framework for the protection and promotion of human rights", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Ensure gender equity in higher education institutions of the country by increasing the number of female students ", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Fulfil its international commitments by ratifying the Rome Statute of the International Criminal Court", - "values": [ - "4 - General action" - ] - }, - { - "text": "Undertake further governmental initiatives and projects aimed at comprehensively combating discrimination against women", - "values": [ - "4 - General action" - ] - }, - { - "text": "Submit its outstanding reports to the Committee on Economic, Social and Cultural Rights, the Human Rights Committee and the Committee against Torture ", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Continue strengthening the application of the National Human Rights Action Plan", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Continue to apply a zero-tolerance approach to torture and cruel, inhuman or degrading treatment or punishment", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Continue human rights education and awareness-raising programmes undertaken by governmental and non-governmental organizations to disseminate a culture of human rights ", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Intensify its efforts to combat and prevent malnutrition among children", - "values": [ - "4 - General action" - ] - }, - { - "text": "Intensify measures to address factors driving women and girls into prostitution ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Act in accordance with the standards included in the UN International Declaration on Human Rights Defenders in 1998 and cooperate seriously with human rights organizations, particularly through in-depth discussion of their reports and recommendations in the follow-up of this universal periodic review", - "values": [ - "4 - General action" - ] - }, - { - "text": "Continue to undertake effective plans and programmes to ensure the achievement of the Millennium Development Goals, especially in terms of health through measures to increase access to health services for the public ", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Take necessary measures to ensure that all children are registered at birth ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Intensify efforts to submit national reports to the various treaty bodies", - "values": [ - "4 - General action" - ] - }, - { - "text": "Devise a national strategy for the ratification of or adhesion to the core international human rights treaties", - "values": [ - "4 - General action" - ] - }, - { - "text": "Extend migrant workers rights equally to all migrant workers, regardless of their age and gender", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Withdraw all of its reservations to CEDAW and CRC as soon as possible", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Consider the implementation of the Guidelines for the Appropriate Use and Conditions of Alternative Care for Children, in accordance with Human Rights Council resolution 11-7 and General Assembly resolution 64-142 ", - "values": [ - "3 - Considering action" - ] - }, - { - "text": "Strengthen cooperation with human rights mechanisms, particularly treaty bodies", - "values": [ - "4 - General action" - ] - }, - { - "text": "Control its borders, effectively, to prevent the movement of terrorist groups, including those benefiting from transnational organized crime", - "values": [ - "4 - General action" - ] - }, - { - "text": "Investigate and hold to account persons involved in cases of enforced disappearance, arbitrary detention and acts of corruption or extortion associated therewith, and communicate the findings of such investigations to the victims' families", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Establish a moratorium on the death penalty as an interim measure towards its total abolition", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Promote the active participation of civil society in the process of follow-up to the UPR", - "values": [ - "4 - General action" - ] - }, - { - "text": "Continue reporting on the implementation of human rights treaties to which it is a party ", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Ensure the effective implementation of the National Plan against Racism and Discrimination", - "values": [ - "4 - General action" - ] - }, - { - "text": "Harmonize its domestic laws in order to give effect and prominence to international human rights treaties ", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Continue efforts to establish a national human rights institution that is in line with the Paris Principles and allocate adequate resources", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Continue its efforts to fight against poverty and illiteracy", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Include in its Constitution and legislation a clear definition of discrimination against women, and enshrine in law the principle of equality between women and men ", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Increase efforts in the war on drugs at all levels", - "values": [ - "4 - General action" - ] - }, - { - "text": "Take effective measures to combat the persistence of stereotypes based on racial discrimination and intolerance ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Set up a strategy to promote the rights of women to combat discrimination against women and girls, focusing in particular on matters such as early or forced marriage, sexual violence, equal access to education and equal access to land ownership, inter alia", - "values": [ - "4 - General action" - ] - }, - { - "text": "Remove any reference to the crime of witchcraft from the penal code", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Intensify efforts in fully implementing all the recommendations of the Truth and Reconciliation Commission (TRC), in particular with regard to victims' compensation and institutional reforms.", - "values": [ - "4 - General action" - ] - }, - { - "text": "Enhance efforts to better integrate the Roma community into society", - "values": [ - "4 - General action" - ] - }, - { - "text": "Support the efforts made to establish the procedures for transitional justice under the 2000 Arusha agreements, in particular setting up methods for national consultations, as called for by the Security Council in its resolution 1606 (2005).", - "values": [ - "4 - General action" - ] - }, - { - "text": "Continue implementing its national plans and programmes to reach poverty eradication goals", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Establish a mechanism that monitors the implementation of the 2014 anti-discrimination legislation and action-oriented strategies", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Ensure the protection of indigenous peoples' rights and ensure the right of indigenous peoples to be heard before traditional indigenous land is being exploited.", - "values": [ - "4 - General action" - ] - }, - { - "text": "Enlist the support of the international community to resolve the internal and cross-border conflicts that continue to undermine its national security. ", - "values": [ - "1 - Minimal action" - ] - }, - { - "text": "Pursue its commitment to ensure fully the respect of human rights of persons with disabilities, namely that these persons enjoy an adequate standard of living, including in rural areas", - "values": [ - "4 - General action" - ] - }, - { - "text": "Address gender disparity proactively ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Continue the procedures and measures taken to enable women to be equal partners and participants in development ", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Provide its civilian courts with jurisdiction over human rights violations committed against civilians by members of the armed security forces to ensure accountability", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Keep the momentum of political, socio-economic and administrative reform to comply with the socio-economic needs of the population", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Submit all overdue reports to United Nations human rights convention treaty bodies and answer the questionnaires sent by special procedure mandate holders.", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Harmonize the procedures for reviewing asylum decisions with the Convention against Torture and other relevant human rights treaties and provide State legal aid for migrants who need it", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Put in place a comprehensive political strategy and develop specific legislation aimed at eliminating violence and discrimination against women, in accordance with the Convention on the Eliminations of All Forms of Discrimination against Women", - "values": [ - "4 - General action" - ] - }, - { - "text": "Maintain and expand those existing initiatives to fight against trafficking in children and child labour, and protect children from sexual exploitation and other forms of modern slavery, especially by enhancing services of registration at birth", - "values": [ - "4 - General action" - ] - }, - { - "text": "Urgently enact the Sexual Offences and Domestic Violence Bill, and ensure that all domestic legislation is brought into conformity with the country's commitments under the Convention on the Elimination of All Forms of Discrimination against Women ", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Initiate awareness-raising campaigns and programmes on human rights in general and on the rights of women and children in particular ", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Guarantee the right to family reunification of migrants held in detention and continue with the efforts to protect the human rights of migrant persons, particularly their economic, social and cultural rights", - "values": [ - "4 - General action" - ] - }, - { - "text": "Expedite efforts in its consideration of setting up an independent National Human Rights Institution in accordance with the Paris Principles", - "values": [ - "4 - General action" - ] - }, - { - "text": "Undertake every effort to stop all violence in the context of the conflict, including summary executions, arbitrary, extrajudicial killings, amputations, floggings and the use of civilians as human shields ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Regarding recommendations made by the Human Rights Committee that action be taken to raise the age of criminal responsibility to an acceptable level under international standards, and to reduce domestic violence, take action to address these concerns if they have not been fully addressed ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Continue improving the conditions in prisons, particularly to focus on conditions around pretrial detention", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Continue working to ensure that human rights training is carried out more systematically and made available to all relevant interested parties, including the army and prison staff", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Publish precise information on the identity and number of convicted persons currently on death row ", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Established proper timelines for the implementation of the recommendations of the Bahrain Independent Commission of Inquiry ", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Continue efforts to eliminate harmful tradition practices and female genital mutilation", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Strengthen criminal justice reform efforts in order to ensure a speedy and fair trial for all accused", - "values": [ - "4 - General action" - ] - }, - { - "text": "Adopts practical measures to implement the Law on Domestic Violence (and its legal instruments), and that Angola allocates a multi-annual budget to the Ministry involved to this effect", - "values": [ - "4 - General action" - ] - }, - { - "text": "Further strengthen existing flagship programmes for social safety nets", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Strengthen protection measures for human rights defenders", - "values": [ - "4 - General action" - ] - }, - { - "text": "Adopt measures to ensure that the education plan and teaching materials have an inter-cultural perspective (for all), bearing in mind the culture and history of different minority groups.", - "values": [ - "4 - General action" - ] - }, - { - "text": "Give special attention to educating Roma girls, many of whom are often unable to finish school because of their gender ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Undertake the legislative changes necessary for the abolition of the death penalty and establish a formal moratorium in this regard, as well as ratify the Second Optional Protocol to ICCPR", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Provide primary education accessible to all by making education compulsory at the primary level", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Continue with implementation of the National Plan to Reduce Violence Against Women and their Children with a particular focus on support services and resources available to women living in more remote areas, and women from culturally and linguistically diverse backgrounds", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Respect and defend life from conception to natural death, based on amendments of state constitutions, promoting a similar protection at federal and local levels", - "values": [ - "4 - General action" - ] - }, - { - "text": "Continuation of cooperation between governmental and nongovernmental institutions, considering the dialogue and cooperation among them", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Adopt a new national plan of action on children with adequate follow-up mechanisms for full implementation", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Continue the positive developments related to the elimination of discrimination based on sexual orientation and recognize same-sex unions at the national level", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Reflect and take measures on how to make media more responsible in addressing trafficking issues, in order to make an additional input to tackling this scourge ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Review laws and regulations on free, prior and informed consultations to ensure they are in line international standards, in consultation with the representatives of the indigenous community, with a view to follow up on recommendations contained in paragraphs 116.108, 116.110, 116.112 and 116.113 of the Report of the Working Group on the Universal Periodic Review from the second cycle", - "values": [ - "4 - General action" - ] - }, - { - "text": "Combat stereotypes regarding the role of women, in particular by sensitizing the population in rural areas", - "values": [ - "4 - General action" - ] - }, - { - "text": "Encourage civic participation, including of civil society in the electoral process.", - "values": [ - "4 - General action" - ] - }, - { - "text": "Issue an invitation to OHCHR for an official visit by November 2017", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Ratify and implement the Marrakesh Treaty to Facilitate Access to Published Works for Persons Who Are Blind, Visually Impaired, or Otherwise Print Disabled", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Establish effective legislative measures, such as quotas, to improve the participation of women in political life and decision-making processes", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Carry out a security sector reform and a reform of the judicial system guaranteeing the independence of the judiciary ", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Incorporate the provisions of the United Nations conventions on human rights into national legislation, to ensure the direct application of international treaties by the courts ", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Create and implement, in conjunction with all social partners, a holistic policy aimed at progressively eradicate child labour", - "values": [ - "4 - General action" - ] - }, - { - "text": "Ensure adequate registration of discriminatory motives by raising awareness among the legal profession and law enforcement officials of the need to recognize aggravated circumstances specific to hate crimes and discrimination at all levels of prosecution and criminal procedures ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Continue efforts for the emancipation and empowerment of women", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Take measures to eliminate corporal punishment that could lead to torture and cruel, inhuman or degrading treatment for victims, mainly children", - "values": [ - "4 - General action" - ] - }, - { - "text": "Continue its efforts in combating trafficking in persons including strengthening the preventive measures on sexual exploitation of women and children", - "values": [ - "4 - General action" - ] - }, - { - "text": "Continue its efforts in the promotion and protection of children's rights, including through the implementation of the Plan of Action of Family Institution and Women and public education campaigns on the rights of the child ", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Continue to improve national laws and institutions, in particular in the field of protecting the human rights of women and children ", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Establish a national action plan to combat racism, racial discrimination, xenophobia and related intolerance consistent with the provisions of the Durban Declaration and Programme of Action", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Strengthen the technical and the human institutional capacity in order to consolidate the efforts being made by Chad with a view to the promotion and protection of human rights.", - "values": [ - "4 - General action" - ] - }, - { - "text": "Continue efforts to eradicate the practice of detaining children together with adults in prisons for adults", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Continue to take measures to promote equality between men and women at all levels of society and government", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Continue maximum efforts to ensure freedom from discrimination for certain minorities, especially school age children and women", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Continue the networking by the Fijian Judiciary and Fiji's Human Rights and Anti-Discrimination Commission with relevant international organizations to strengthen the protection and promotion of human rights in the country", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Allow the access of international observers to the places of detention", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Continue its efforts to implement the National Action Plan to end gender-based violence and to further promote gender equality", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Take the additional measures necessary to eliminate discrimination against the Roma community and other vulnerable groups in the country", - "values": [ - "4 - General action" - ] - }, - { - "text": "Intensify its efforts to ensure that higher education is equally accessible to all, on the basis of capacity", - "values": [ - "4 - General action" - ] - }, - { - "text": "Introduce a moratorium on death sentences with a view to abolishing the death penalty ", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Develop a comprehensive policy for the development of human rights that includes a national human rights institution that allows for the articulation, coordination and implementation of policy in practice", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "With the support from the international community, draft legislative bills on domestic violence and on child abuse", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Take additional steps to guarantee equal access for women to appropriate health services, especially sexual and reproductive health services, and ratify the Optional Protocol to the Convention on the Elimination of All Forms of Discrimination against Women", - "values": [ - "4 - General action" - ] - }, - { - "text": "Continue to further enhance peace, development and democracy", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Strengthen its national child protection system and ensure its full implementation - intensify its efforts to raise public awareness against trafficking in children for sexual exploitation and forced labour within its National Strategy for the Fight against Trafficking in Human Beings as well as other policies and programmes - and adopt appropriate rehabilitation and reintegration mechanisms for the victims ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Ensure adequate resources for poverty alleviation programmes, in line with the commitments to pursue inclusive economic development", - "values": [ - "4 - General action" - ] - }, - { - "text": "Amend and harmonize all relevant laws in order to ensure that child marriage is strictly prohibited and criminalized", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Respect and guarantee the right to freedom of expression, association and peaceful assembly of journalists, civil society activists, human rights defenders and demonstrators, as well as speedily and effectively investigating threats against them and ensuring that perpetrators are tried", - "values": [ - "4 - General action" - ] - }, - { - "text": "Bring in line the definition of racial discrimination in federal and state legislation with the provisions of the International Convention on the Elimination of All Forms of Racial Discrimination", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Continue its fruitful cooperation with United Nations human rights mechanisms, including the special procedures ", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Take steps to ensure the provision of adequate shelter, including staffing and durable resources, for victims of domestic violence", - "values": [ - "4 - General action" - ] - }, - { - "text": "Consider setting up an independent national human rights institution to oversee and monitor human rights situations in the country and to promote public awareness on the promotion and protection of human rights", - "values": [ - "3 - Considering action" - ] - }, - { - "text": "Continue to pursue social policies in keeping with family values and not be intimidated by suggestions on social norms that are controversial, non-universal and specific to certain societies ", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Eliminate the backlog of reports to the human rights treaty bodies and the responses to thematic questionnaires of HRC special procedures ", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Reinforce institutional and administrative measures, including the reestablishment of the Council for the Prevention of Racial Discrimination, Xenophobia and Related Intolerance", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Call on the international community to provide technical assistance in the field of human rights to allow to achieve its obligations in improving the human rights situation", - "values": [ - "1 - Minimal action" - ] - }, - { - "text": "Guarantee the effective protection of children's rights offline as well as online by amending the relevant national laws if necessary and providing adequate resources ", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Lift its reservations to the CEDAW", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Expand and reinforce its work in the health and education sectors, particularly to protect the rights of vulnerable sectors, including indigenous peoples, women and children", - "values": [ - "4 - General action" - ] - }, - { - "text": "In line with CEDAW recommendations, address the problem of maternal and infant mortality and make every effort to increase women's access to health services", - "values": [ - "4 - General action" - ] - }, - { - "text": "Strengthen, through adequate sanctions and awareness-raising campaigns, the fight against gender violence. In this regard, consider the adoption of measures, such as quotas, incentives and/or preferential treatment, that promote the incorporation of women into education and the economy, both in the public and private spheres", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Continue its efforts on further strengthening the rights of women, children and persons with disabilities", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Issue a standing invitation to all United Nations special procedures and respond favourably to all outstanding requests ", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Intensify efforts to resolve persistent challenges with respect to the integration of foreigners, in particular in the areas of access to quality education, health services and housing, labour rights, processes of naturalization and family reunification.", - "values": [ - "4 - General action" - ] - }, - { - "text": "Adopt measures to ensure the employment of youth and also other vulnerable groups of the population, including persons with disabilities and migrants", - "values": [ - "4 - General action" - ] - }, - { - "text": "Reply favorably to the request by the UN Special Rapporteur against torture for a visit and extend its full support to such a mission", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Strengthen policies to prevent school dropout", - "values": [ - "4 - General action" - ] - }, - { - "text": "Consider acceding to the OP-CAT", - "values": [ - "3 - Considering action" - ] - }, - { - "text": "Immediately live up to its commitment to end the use of child soldiers and minors in armed conflicts", - "values": [ - "4 - General action" - ] - }, - { - "text": "Issue a standing invitation to the Special Procedures ", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Continue to work towards closing the existing gaps in the protection of human rights and the promotion of welfare for indigenous peoples in order to achieve sustainable economic and social development", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Redouble its efforts in favor of the respect of the rights of indigenous peoples, in line with the provisions of the United Nations Declaration on the Rights of Indigenous Peoples", - "values": [ - "4 - General action" - ] - }, - { - "text": "Ensure that conditions of detention of death row inmates comply with international standards", - "values": [ - "4 - General action" - ] - }, - { - "text": "Continue its efforts to achieve equal access for women to the labour market, particularly thoroughly trough vocational training programmes", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Continue its efforts on the prevention of violence against women", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Adopt specific legislation on domestic violence, especially violence against women and children", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Ratify the Optional Protocol to the International Covenant on Economic, Social and Cultural Rights, as a key way of strengthening the functions of the Committee and improving the protection and credibility of these rights ", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Grant all the necessary resources for the establishment of the judicial units specialized on legal provisions related to violence against women", - "values": [ - "4 - General action" - ] - }, - { - "text": "Heighten the action to mitigate and eventually eliminate extreme social inequalities within the country thereby ensuring equal access by all persons to health care, education and housing ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Adopt the necessary measures to reduce statelessness", - "values": [ - "4 - General action" - ] - }, - { - "text": "Ensure that allegations of torture and ill-treatment are promptly and impartially investigated, and that perpetrators are held accountable", - "values": [ - "4 - General action" - ] - }, - { - "text": "Intensify efforts to address violence against women, in particular domestic violence", - "values": [ - "4 - General action" - ] - }, - { - "text": "Accede to regional and international treaties to which it is not party, including the International Convention on the Protection of the Rights of All Migrant Workers and Members of Their Families and the International Convention for the Protection of All Persons from Enforced Disappearance, and include the provisions of these instruments in its domestic legislation ", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Ensure respect for the right to a private life, as guaranteed by the International Covenant on Economic, Social and Cultural Rights, to which the Libyan Arab Jamahiriya is a State party, by reviewing its national law criminalizing consensual sexual relations out of wedlock ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Continue its active engagement with the United Nations human rights mechanisms for the protection and promotion of human rights ", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Provide more specialized detention centres for mentally ill or addict detainees that respect their special needs and circumstances", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Ratify ILO Convention No. 169.", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Ensure that all provisions of the International Covenant on Economic, Social and Cultural Rights are given full effect in its domestic legal order, and in that regard ensure the justiciability of those rights", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Increase the participation of women in decision-making positions and in the political and public spheres", - "values": [ - "4 - General action" - ] - }, - { - "text": "Take further measures to strengthen the judicial system and to increase accountability for human rights violations, including by ensuring the investigation and prosecution of these crimes ", - "values": [ - "4 - General action" - ] - }, - { - "text": "In line with its standing invitation to special procedures, engage with and accept visits by special procedures", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Accede to the ICCPR and its Optional Protocols, and ICESCR, and adopt measures to promote awareness of the rights contained in these instruments ", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Implement the National Action Plan for the Advancement of Women by: amending legislation to include sexual violence in conflict within the Preventing Sexual Violence Law, removing military impunity for human rights violations - including sexual violence, and appointing a Gender Advisor within the President's Office", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Establish a mandatory and free education for all, with a view to continue the fight against illiteracy", - "values": [ - "4 - General action" - ] - }, - { - "text": "Dismantle groups of power and other clandestine structures of corruption that prevent guarantees of fair trials and due process, in line with international standards", - "values": [ - "4 - General action" - ] - }, - { - "text": "Carry out effective, impartial investigations into allegations of deaths, torture and ill-treatment caused by excessive use of force by the police and prison officials ", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Protect persons, particularly women and children, against violence, exploitation and abuse", - "values": [ - "4 - General action" - ] - }, - { - "text": "Establish protection measures for victims and witnesses of these crimes ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Take the necessary measures to ensure freedom of expression and association of everyone and, specifically simplify the registration procedure for public associations, including nongovernmental organizations, political parties and trade unions - remove the prohibition against any activity by non-registered associations - and abolish article 193-1 of the Constitution, which criminalizes the carrying out of an activity within such a non-registered organization ", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Cooperate with the special procedures concretely by accepting the repeated requests for a country visit by the Special Rapporteurs on the situation of human rights situation and the right to food", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Stop the recruitment of child soldiers into both the armed forces and militias", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Rapidly implement the recently adopted criminal procedure code ", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Implement the recommendations included in the OHCHR report on street children (A/HRC/19/35) ", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Prevent the continued police brutality and excessive use of force by law enforcement officials, as well as analyse and eliminate its concrete reasons", - "values": [ - "4 - General action" - ] - }, - { - "text": "Take further measures to eradicate discrimination against women, as prescribed by Article 17 of the Omani Basic Statute of the State, as well as by the positive remarks made during the previous round of the universal periodic review in 2011, by considering the withdrawal of its reservation to Article 9 of the Convention on the Elimination of All Forms of Discrimination against Women and allowing women to pass on their citizenship to their children in the same manner as men", - "values": [ - "4 - General action" - ] - }, - { - "text": "Abolish stoning and flogging from its legislation, as mentioned by the Committee against Torture", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "As recommended by CRC, to continue awareness-raising campaigns to combat and eradicate FGM and other traditional practices harmful to health and seek to bring about positive trends in traditional behaviour ", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Consult NGOs in the follow-up of the UPR outcome, in order to achieve the practical application and implementation of the recommendations", - "values": [ - "4 - General action" - ] - }, - { - "text": "Pursue its efforts aimed at allowing all children to have access to schooling and address disparities in access to education", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Establish trainings for police officers on children's rights, to ensure that these act appropriately towards child victims or delinquents", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Address widespread impunity - including for attacks against journalists, civil society and human rights defenders, women and LGBTI persons - by conducting timely and impartial investigations, investigating threats of violence, and prosecuting perpetrators", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Repeal the laws which criminalize sexual activity between consenting adults of the same sex", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Reinstate the age of criminal responsibility of 14 years of age as prescribed in the Children's Act", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Legislate a specific definition of torture as recommended by the Committee against Torture in June 2017", - "values": [ - "4 - General action" - ] - }, - { - "text": "Provide all the material and human means to ensure the success of the National Human Rights Plan which was ratified by Parliament for the period 2014-2019", - "values": [ - "4 - General action" - ] - }, - { - "text": "Strengthen training within the judiciary on the Convention on the Elimination of All Forms of Discrimination against Women and carry out campaigns on the rights of women and existing resources in cases of gender-based violence or discrimination", - "values": [ - "4 - General action" - ] - }, - { - "text": "Guarantee access to public and political life on an equal basis to Roma, and this through their participation in the decision-making processes", - "values": [ - "4 - General action" - ] - }, - { - "text": "Consider appointing an Ombudsman with responsibility for investigating alleged violations of human rights as a short-term measure.", - "values": [ - "3 - Considering action" - ] - }, - { - "text": "Ensure full respect for the rights to freedom of association, expression, religion or belief and movement", - "values": [ - "4 - General action" - ] - }, - { - "text": "Formulate more effective development strategies and programmes to reduce poverty and provide employment and income-generating opportunities for the population, in particular youth and people living in rural areas ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Take necessary measures for the realization of women's rights in rural and remote areas ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Establish an independent mechanism for the monitoring of the situation of persons with disabilities", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Continue the policy of national reconciliation in a spirit of accommodation ", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Ensure, as quickly as possible, the effective implementation of the Technical guide for the comprehensive treatment of non-punishable abortion at the national level so that access to legal abortion is guaranteed in practice", - "values": [ - "4 - General action" - ] - }, - { - "text": "Establish a moratorium on the death penalty, as a first step towards complete abolition of this practice and accession to the Second Optional Protocol to the ICCPR", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Consider drawing up a comprehensive human rights' national plan of action ", - "values": [ - "3 - Considering action" - ] - }, - { - "text": "Consider abolishing the death penalty and, as a first step, establish a moratorium on executions", - "values": [ - "3 - Considering action" - ] - }, - { - "text": "Increase oversight of labour recruitment agencies licensed in Lesotho, and accelerate legal reforms to combat the worst forms of child labour", - "values": [ - "4 - General action" - ] - }, - { - "text": "Become a party to the Optional Protocol to the Convention against Torture and Other Cruel, Inhuman or Degrading Treatment or Punishment ", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Make further steps towards the abolishment of the death penalty", - "values": [ - "3 - Considering action" - ] - }, - { - "text": "In the field of the judicial reform system, continue implementing and taking further the Programme to Restructure the Justice system, through on-going training for public officials in the judiciary aiming at materializing a management model to guarantee access to justice in a timely, efficient, effective and quality manner ", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Consider joining the convention on the rights of migrant workers in line with recommendation 1737 of 17 March 2006 of the Parliamentary Assembly of Council of Europe", - "values": [ - "3 - Considering action" - ] - }, - { - "text": "Consider ratifying the OP-CRC-SC ", - "values": [ - "3 - Considering action" - ] - }, - { - "text": "Adopt the necessary judicial and administrative measures to ensure effectively the investigation and punishment of cases of discriminatory treatment by law enforcement officers, in particular against lesbian, gay, bisexual, transgender and intersex people", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Protect the human rights defenders and investigate any reported cases of intimidation, harassment and attacks against them", - "values": [ - "4 - General action" - ] - }, - { - "text": "Strengthen efforts to reduce the maternal mortality rate, giving particular emphasis to reducing the number of deaths caused by unsafe abortions", - "values": [ - "4 - General action" - ] - }, - { - "text": "Continue its development activities in Northern Rakhine State ", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Consider ratifying the International Convention on the Protection of the Rights of All Migrant Workers and Members of Their Families, in line with recommendation 1737 of 17 March 2006 adopted by the Parliamentary Assembly of the Council of Europe, to which Croatia is an active member ", - "values": [ - "3 - Considering action" - ] - }, - { - "text": "Complete the process of ratifying the International Convention on the Protection of the Rights of All Migrant Workers and Members of Their Families", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Combat human trafficking, "death squads", violence and related sexual exploitation ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Urge the international agencies to support the efforts of the Government of Yemen in combating poverty, reducing unemployment and improving the level of food security ", - "values": [ - "1 - Minimal action" - ] - }, - { - "text": "Continue efforts in the sector of the judicial system with the support of the international community.", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Become a party to the Optional Protocol to the Convention against Torture ", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Take measures to facilitate access to credit for women in rural areas", - "values": [ - "4 - General action" - ] - }, - { - "text": "Ensure that all parties resolve their differences peacefully and within the framework of the national constitution and laws ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Refrain from and prevent any executive interference with lawyers' conduct of their professional duties", - "values": [ - "4 - General action" - ] - }, - { - "text": "Carry out awareness-raising campaigns on all matters related to gender violence", - "values": [ - "4 - General action" - ] - }, - { - "text": "Accede to other international human rights instruments to which it is not yet party in order to strengthen its national provisions to ensure human rights specifically with regards to persons with disabilities", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Adopt a comprehensive and integral policy against discrimination in all its forms, especially against women, people of African descent and indigenous peoples, along with a respective plan of action", - "values": [ - "4 - General action" - ] - }, - { - "text": "Significantly increase spending for potable water supply and sanitation projects, especially in rural areas, up to a value close to 0.5. per cent of gross domestic product", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Further strengthen its educational policy in order to provide an inclusive education that meets the needs of its people, ensuring their full and equal access with the necessary assistance and selfless cooperation of the international community", - "values": [ - "4 - General action" - ] - }, - { - "text": "Amend the provision of the Civil Code stating that a child born out of wedlock has, in his or her non-proprietary relations with his or her father or mother, the same rights and obligations as a legitimate child so as to put an end to this form of discrimination in terms of property succession.", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Give attention and provide adequate follow-up to the recommendations made by the Special Rapporteur on the promotion and protection of human rights while countering terrorism following his visit to the country, in coordination with the involved ministries and civil society organizations", - "values": [ - "4 - General action" - ] - }, - { - "text": "Intensify efforts to address discrimination on the basis of sexual orientation or gender identity, and investigate and prosecute crimes against lesbian, gay, bisexual and transgender (LGBT) community members ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Put in place a National Human Rights Commission ", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Become party to the Rome Statute of the International Criminal Court ", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Review all national legislation relating to the principle of non-discrimination, particularly as it applies to women and minorities, including sexual minorities, so that it complies fully with international instruments that prohibit all forms of discrimination.", - "values": [ - "3 - Considering action" - ] - }, - { - "text": "Respond positively to the request for an invitation of the Special Rapporteur on extrajudicial, summary or arbitrary executions to visit the country", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Amend its National Human Rights Commission Act in order to guarantee the independence and financial autonomy of this Commission", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Improve the effectiveness and accessibility of domestic remedies against racial discrimination", - "values": [ - "4 - General action" - ] - }, - { - "text": "Strengthen measures to protect and promote the rights of foreign workers ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Pay particular attention to protect childhood, as established in the strategic framework 2008-2015, through intensifying actions to enact a Children Protection Code ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Develop and strengthen its human rights training programmes for police forces and the judiciary, addressing among others the appropriate use of force as well as issues relating to discrimination and profiling based on race", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Strengthen efforts on the implementation of Guinea's Poverty Reduction Strategy", - "values": [ - "4 - General action" - ] - }, - { - "text": "Adhere to the International Convention for the Protection of All Persons from Enforced Disappearance", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Work with religious leaders on an urgent basis to promote religious tolerance, restore inter-religious harmony and to prevent a cycle of violence and reprisals", - "values": [ - "4 - General action" - ] - }, - { - "text": "Strive to amend its Criminal Code to decriminalize same-sex activity between consenting adults in accordance with the recommendation of the Human Rights Committee.", - "values": [ - "4 - General action" - ] - }, - { - "text": "Fully implement the World Programme for Human Rights Education and develop a national action plan in this field, including activities of human rights training for all public officials and law enforcement agents ", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Luxembourg undertakes to submit an interim report in 2015 on the progress made in the implementation of the recommendations of the universal periodic review to the Human Rights Council", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Conduct thorough and impartial investigation into allegations that the police or any person of the justice system has taken part in discriminatory actions", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Abolish the measures relating to the death penalty in the national legislation and additionally accede to the Second Optional Protocol to ICCPR ", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Reverse current practices regarding the rights of refugees, asylum seekers and migrant workers", - "values": [ - "4 - General action" - ] - }, - { - "text": "Work diligently to stop the war and end the conflict in the Syrian Arab Republic by bringing all efforts to achieve a political settlement by the Syrians themselves and have control over it in accordance with the Geneva communiqué", - "values": [ - "4 - General action" - ] - }, - { - "text": "Address disparities in access to social services by all, especially children, and continue the dialogue that will significantly advance on this matter ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Continue its efforts in combating trafficking in persons", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Put forward its best efforts to eliminate all forms of discrimination against women, including early forced marriage of girls and unequal rights to marriage, divorce, inheritance and child custody", - "values": [ - "4 - General action" - ] - }, - { - "text": "Establish a legal framework for the comprehensive protection of the rights of migrants, in particular the rights of migrant children or children of migrant parents ", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Establish a strategy to reduce children\u2019s school dropout", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Accelerate the deliberations on the draft law on domestic violence ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Adopt targeted policies and programmes to offer protections for the most vulnerable in society, including women, children and persons with disabilities, and to eliminate discrimination against them ", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Provide health care to persons with mental disabilities", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Bring the minimum criminal age of responsibility and the minimum age for marriage into line with CRC, and ban any form of corporal punishment ", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Establish guidelines for training on human rights in primary and secondary education, with homogenous curricula in all the educational centres ", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Consider adopting legal provisions to ensure that primary education is free and compulsory for all children without discrimination ", - "values": [ - "3 - Considering action" - ] - }, - { - "text": "Consider actively acceding to the Convention on the Rights of Persons with Disabilities ", - "values": [ - "3 - Considering action" - ] - }, - { - "text": "Unify the supervision of Iraq's prisons and detention centers, which is currently under the jurisdiction of various authorities, under the Ministry of Justice so as to improve the condition of these facilities and the process of crime investigation and to guarantee transparency", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Reiterate its recommendations to guarantee the right to freedom of expression and conscience of all representatives of civil society, including religious minorities, and to revise the judgments against the prisoners who were convicted for having freely expressed their opinion", - "values": [ - "4 - General action" - ] - }, - { - "text": "Continue to strengthen its leadership in enhancing regional inclusive mechanisms for the protection of migrant workers through legally binding instruments", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Ratify CAT and its Optional Protocol ", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Ensure that the conditions of detention of irregular migrants and asylum seekers do not constitute a degrading treatment. Limit the practice of detention of migrants, especially unaccompanied minors", - "values": [ - "4 - General action" - ] - }, - { - "text": "Complete the ratification process of the Convention on the Rights of Persons with Disabilities ", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Take practical steps to address the serious problems of street children and sexual exploitation of children.", - "values": [ - "4 - General action" - ] - }, - { - "text": "Take legal measures aimed at preventing ethnically motivated crimes", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Adapt the legislative framework in order to ensure access to sexual and reproductive health services, including contraception and family planning, for unmarried women as well as married women, without the consent of their spouse", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Prohibit early and forced marriage", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Continue its efforts in the area of empowerment of women and enhance their role in the political, economic and social fields, as well as seeking collaboration with partners and stakeholders at the national and regional levels in order to continue to improve the human rights situation in Sudan ", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Take the steps necessary to further reduce court backlogs", - "values": [ - "4 - General action" - ] - }, - { - "text": "Ensure in practice that all women are able to exercise their legal right to a safe abortion, without discrimination of any kind", - "values": [ - "4 - General action" - ] - }, - { - "text": "Accede to the Optional Protocol to the International Covenant on Economic, Social and Cultural Rights", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Better protect LGBTI persons and persons with AIDS against any act of discrimination and violence and review its legislation in this context", - "values": [ - "4 - General action" - ] - }, - { - "text": "Increase efforts aiming to guarantee the right to freedom of religion and belief", - "values": [ - "4 - General action" - ] - }, - { - "text": "Ensure that gender issues and women's rights are mainstreamed in all Government programmes, particularly in labour and employment and antipoverty measures", - "values": [ - "4 - General action" - ] - }, - { - "text": "Incorporate into the Constitution and the national legislation the right to enjoy the highest standards possible of mental and physical health", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Repeal all provisions giving rise to discrimination on the grounds of sexual orientation or gender identity and ensure the respect of the fundamental freedoms of all citizens", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Take further steps to fight discrimination and make sure that perpetrators of racist and hate crimes be held duly responsible for their crimes", - "values": [ - "4 - General action" - ] - }, - { - "text": "Ratify the International Covenant on Civil and Political Rights and its Optional Protocols and the International Covenant on Economic, Social and Cultural Rights and its Optional Protocol", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Strengthen the protection of children, in particular by fighting against early marriage ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Bring its national legislation fully in line with international standards on freedom of expression by decriminalizing defamation in domestic law", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Effectively implement the Zero Hunger Challenge Initiative to reduce hunger and malnutrition", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Provide for a child-sensitive, accessible complaint mechanism, ensuring a proper redress, rehabilitation and social reintegration and for the child victim of abuse ", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Continue with the process of harmonizing national laws, regulations and legislations with the provisions of the international human rights treaties to which it is a party and take appropriate measures in this regard ", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Take action to promote and increase the opportunities for public and open debates on death penalty", - "values": [ - "4 - General action" - ] - }, - { - "text": "Continue the reform of the judicial system in line with Mongolia's international commitments", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Exert utmost efforts towards preventing all forms of torture and inhuman or degrading treatment, while ensuring full accountability of perpetrators as well as redress and rehabilitation to victims ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Investigate all cases of xenophobia violence and attacks against migrants, including the involvement of law enforcement officers in such crimes", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Ratify more human rights treaties, especially the International Covenant on Economic, Social and Cultural Rights and the International Covenant on Civil and Political Rights ", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Extend standing invitation to all special procedure mandate holders", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Continue promoting the active participation and empowerment of young people in the processes of national decision-making", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Ensure equal rights for women in the area of employment ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Speed up the ratification of international legal instruments not yet ratified", - "values": [ - "4 - General action" - ] - }, - { - "text": "Ensure the full respect of the freedoms of association and peaceful demonstration in compliance with the international commitments of Uganda, in particular in the implementation of the Public Order Management Act of 2013", - "values": [ - "4 - General action" - ] - }, - { - "text": "Continue implementing polices that will make it possible to increase the accessibility and quality of health care services ", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Ratify the ICCPR and CAT ", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Grant citizenship to all those who live on a permanent basis in the territory of Estonia and wish to become a citizen, grant, as a mater of urgency, the right to citizenship to all children born in Estonia of so-called non-citizens, without exception, lift the prohibition on access of membership in political parties to so-called non-citizens who have permanent residency in the country and are citizens of countries which are not members of the European Union, as well as provide non-citizens the passive right to vote in municipal elections ", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Remove undue restrictions on the organization of peaceful protest in opposition to the Government, and repeal the application of criminal penalties to peaceful participation in unauthorized protests", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Make additional efforts to combat corruption and to examine the possibility of ratifying the United Nations Convention against Corruption", - "values": [ - "4 - General action" - ] - }, - { - "text": "Enable those representatives of special procedures who already requested visits, to conduct them.", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Criminalize torture, in line with international human rights obligations, and fight extrajudicial executions, through, inter alia, capacity-building for State agents", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Accelerate the creation of an independent national human rights institution conforming to the Paris Principles, or extend the mandate of the mediator to human rights", - "values": [ - "4 - General action" - ] - }, - { - "text": "Establish, at all levels, a moratorium on executions with a view to completely abolish the death penalty ", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Continue to provide and improve training programmes on human rights for the judges and judiciary personnel", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Honour its obligations under international humanitarian law with regard to the situation in the Occupied Palestinian Territories.", - "values": [ - "4 - General action" - ] - }, - { - "text": "Adopt further special measures to prevent, combat and punish hate crimes as well as xenophobia and racism ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Reform legislation in the area of the right to freedom of conscience and religion ", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Take effective measures to remove the obstacles for vulnerable children to accede to quality education ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Withdraw the declaration made upon accession, regarding article 1 of CAT ", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Fully implement its constitutional provision on freedom of expression and establish a freedom of information law in accordance with international standards", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Take all necessary measures to reduce murder rates among Afro-Brazilian men, particularly through robust educational programmes adapted to their needs, following recommendations 119.138, 119.154, 119.157, 119.158, 119.159 and 119.160 from the second cycle", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Ensure the improvement of prisons' conditions by providing training in human rights to penitentiary staff and strengthening the National Observatory of Places of Deprivation of Liberty", - "values": [ - "4 - General action" - ] - }, - { - "text": "Provide primary and secondary education for all children, irrespective of their legal status ", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Study the possibility of developing and adopting in the near future a national action plan on the rights of the child ", - "values": [ - "3 - Considering action" - ] - }, - { - "text": "Move forward quickly with a national action plan to combat genderbased violence, including human trafficking", - "values": [ - "4 - General action" - ] - }, - { - "text": "Improve the implementation of the law on granting asylum.", - "values": [ - "4 - General action" - ] - }, - { - "text": "Redouble its attention with regard to the denial of religious intolerance and xenophobia ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Continue the implementation of laws to combat violence and discrimination against women", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Amend the relevant legislation with a view to abolishing capital punishment, in line with General Assembly resolutions 62-149 and 63-168 and the Second Optional Protocol to the International Covenant on Civil and Political Rights, and commute existing death sentences to terms of imprisonment ", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Consider the ratification of the Rome Statue", - "values": [ - "3 - Considering action" - ] - }, - { - "text": "Make efforts to reduce regional disparities in access to education and to provide inclusive education for children with disabilities", - "values": [ - "4 - General action" - ] - }, - { - "text": "Take concrete steps and ensure that all necessary resources are provided to government agencies in order to increase the efficiency of a child protection system", - "values": [ - "4 - General action" - ] - }, - { - "text": "Ensure that the interrogation of detainees in police custody are systematically monitored and recorded and that the Code of Criminal Procedure is harmonized with article 15 of the Convention against Torture and article 14, paragraph 3, of the International Covenant on Civil and Political Rights, and uphold the right of defence to have access to all relevant materials.", - "values": [ - "4 - General action" - ] - }, - { - "text": "Continue to engage its regional and bilateral partners with the view to build capacity and mobilize resources in support of efforts to fulfil its human rights obligations", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Continue to allow unfettered regular access of the ICRC to all detention facilities in accordance with the ICRC standard working procedures also beyond the trial period.", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Give positive consideration, as a matter of priority, to ratification of at least the International Covenant on Civil and Political Rights and the International Covenant on Economic, Social and Cultural Rights.", - "values": [ - "3 - Considering action" - ] - }, - { - "text": "Take steps to bring Cambodia's laws and practices into line with existing international human rights standards in relation to freedom of expression, including press freedom", - "values": [ - "4 - General action" - ] - }, - { - "text": "Encourage employment opportunities programmes for the elderly and strengthen measures to prevent and punish discrimination against them ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Speed up the process of ratification of the Optional Protocol to the Convention against Torture", - "values": [ - "4 - General action" - ] - }, - { - "text": "Strengthen its efforts in establishing the National Human Rights Institution, in line with the Paris Principles and with full participation of the civil society", - "values": [ - "4 - General action" - ] - }, - { - "text": "Consider the rules for the registration of religious groups, and to take steps to promote interfaith harmony, including with regard to those faiths considered to be non-traditional in the country, in order to adhere to the Constitution and to international norms", - "values": [ - "3 - Considering action" - ] - }, - { - "text": "Amend the Personal Status Law to bring it into conformity with international standards, that protection of women from domestic violence and investigations of violence within families be ensured, and forced marriage be prohibited in all cases ", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Preserve and promote the identity of the family, recognizing its foundation in the union of man and woman based on free consent ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Ratify or accede to the main instruments on human rights, in particular the International Convention on the Elimination of All Forms of Racial Discrimination ", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Put an end to denying the right to education of children belonging to minorities or who do not have a residency permit in the country ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Establish anti-discrimination laws and regulations to ensure that lesbian, gay, bisexual and transgender persons enjoy equal treatment, including at schools and in the workplace", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Continue development programmes, especially in rural areas ", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Bring all legislation concerning communication surveillance in line with international human rights standards, and especially ensure that all communications surveillance requires a test of necessity and proportionality", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Adopt a multiannual action plan to implement the National Policy on Human Rights, and the recommendations of the Human Rights Council, with an effective monitoring structure ", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Adopt effective legal and administrative measures to forcefully combat xenophobic and racial discrimination, and genuinely protect the rights of ethnic minorities", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Provide for free, compulsory education, accessible to all, with particular care paid to disabled children by allocating sufficient financial and human resources to the education system ", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Develop policies, plans and information campaigns to eradicate at all levels stereotypes and discrimination against people based on their sexual orientation or gender identity, focusing particularly on public officials and those in charge of law enforcement", - "values": [ - "4 - General action" - ] - }, - { - "text": "Continue to strengthen the combat against racial discrimination and intolerance in all manifestations and protect the legitimate rights of the migrants and minority groups", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Continue international cooperation and dialogue with the aim to improve the socioeconomic circumstances of its people", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Step up efforts to combat prejudices against ethnic minorities and to improve relations between the general public and minority communities ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Continue its efforts to eradicate acts of racism and other forms of discrimination", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Seek to improve the enrolment rate of girls in primary and secondary schools", - "values": [ - "4 - General action" - ] - }, - { - "text": "Prohibit federal law enforcement authorities from engaging in racial profiling", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Implement the 2011-2014 action plan for children and the Strategy for combating violence against children 2012-2015, provide sufficient resources for the Strategy, enact a comprehensive national law on the rights of the child, ensure effective means of reporting violence against children and provide material and psychological assistance to victims of such violence", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "As a high priority, ratify OP-CAT and establish a National Preventative Mechanism ", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Incorporate the rights enshrined in the United Nations Declaration on the Rights of Indigenous Peoples into domestic law and ratify ICERD ", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Demonstrate greater flexibility and tolerance with respect to religious minorities by reforming Law 2/04 on Freedom of Religion to conform to the provisions of the Angolan Constitution, as well as international human rights obligations", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Consider introducing specific provisions in the Islamic Penal Code about investigation, prosecution and punishment of perpetrators of domestic violence", - "values": [ - "3 - Considering action" - ] - }, - { - "text": "Consider adopting specific legislation on domestic violence and violence against women", - "values": [ - "3 - Considering action" - ] - }, - { - "text": "Repeal of articles in the penal code which allow the imprisonment of journalists for their writing and amend the press provisions of the penal code so that they explicitly state that journalists not be imprisoned or otherwise punished for the sole exercise of their right to free expression", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Ratify the Convention on the Rights of Persons with Disabilities and ratify the Optional Protocol to the Convention on the Rights of Persons with Disabilities and adopt a legislation on gender pay equity", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Abolish the death penalty in its legislation, while taking note of the absence of executions in the country since 1954 ", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Further focus its national spending on improving health and education services and increasing the availability of social housing ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Take concrete measures to guarantee the effective participation of indigenous peoples in decisions that affect them, in line with systematically implementing the right to consultation ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Ensure equal protection from all forms of discrimination, including by harmonizing and extending the scope of anti-discrimination laws to include the grounds of religion and belief, age and sexual orientation", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Adopt measures that are more adapted to children in the judicial system", - "values": [ - "4 - General action" - ] - }, - { - "text": "Accelerate the process of reviewing the law on witchcraft", - "values": [ - "4 - General action" - ] - }, - { - "text": "Continue efforts to combat violence, particularly against women", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Investigate the disappearance of unaccompanied children from asylum reception centres and search for and identify those who might have been victims of enforced disappearance", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Continue to enhance its efforts to protect women, children and other vulnerable groups against discrimination and violence", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "End all construction in the Occupied Palestinian Territories and the destruction of natural and agricultural resources of the Palestinian people.", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Adopt legislative measures to counter sexual harassment in the workplace, including penalties and opportunities for women victims to report such situations", - "values": [ - "4 - General action" - ] - }, - { - "text": "Continue all efforts and measures aimed at promoting and strengthening capacity of national institutions for the implementation of Islamic sharia rules", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Pursue its efforts to combat overcrowding in prisons", - "values": [ - "4 - General action" - ] - }, - { - "text": "Investigate, prosecute and punish those responsible for the harassment of members of the judiciary, and provide adequate redress for victims", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Intensify its efforts to strengthen the legal mechanism in order to improve the access of people to the justice system", - "values": [ - "4 - General action" - ] - }, - { - "text": "Continue to cooperate with the Prosecutor of the International Criminal Court", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Further engage with relevant international stakeholders, including United Nations human rights mechanisms", - "values": [ - "4 - General action" - ] - }, - { - "text": "Speed up efforts to establish a national system for free universal birth registration throughout the country, including remote areas and strengthen awareness on the importance of birth registration", - "values": [ - "4 - General action" - ] - }, - { - "text": "That the model legal framework expressed by the Leahy Laws be applied with respect to all countries receiving US's security assistance, and that the human rights records of all units receiving such assistance be documented, evaluated and followed up upon in cases of abuse", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Facilitate the registration of all births and promote, in line with article 7 of the Convention on the Rights of the Child, birth registration of those children who were not registered at birth, in particular in the rural and remote areas of the country. Simultaneously, provide training to personnel in charge of birth registration", - "values": [ - "4 - General action" - ] - }, - { - "text": "Accede to and fully align national legislation with the Rome Statute", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Continue pursuing appropriate, efficient policies under the National Strategy for the Integration of Roma Communities aimed at further improving the access of Roma to education and, based on the evaluation of the impact of the existing policies, consider the adoption of additional measures ", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Reinforce ongoing work to guarantee equal social services to all", - "values": [ - "4 - General action" - ] - }, - { - "text": "Put in place new mechanisms that allow victims of hate crimes to be informed quickly and accurately of the changes in their cases, to be heard in the context of legal proceedings and to receive appropriate legal and psychological assistance", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Redouble its efforts to reduce violence against women and domestic violence", - "values": [ - "4 - General action" - ] - }, - { - "text": "Develop and implement a National Action Plan for Human Rights to further ensure systematic and comprehensive approach for the promotion and protection of human rights, with the full engagement of the civil society", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Continue efforts in combating discrimination against persons belonging to a Russian-speaking minority", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Immediately publish a timeline ensuring that legislation, including the Public Order and Security Act, the Access to Information and Protection of Privacy Act and relevant electoral legislation, will be aligned with the Constitution before the end of the eighth session of Parliament", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Establish concrete goals to accelerate the achievement of substantive equality between women and men and ensure effective elimination of discrimination against women", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Continue improving the situation of children in its multiple dimensions and taking into account the recommendations of the Advisory Group of Experts on solutions to child poverty ", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Continue to consolidate its national education system, according to the needs of its people with the aim of advancing development and social well-being so that the international community may offer the technical assistance and cooperation which the country needs", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Recommended full commitment of the national human rights commission to the improvement of indigenous rights.", - "values": [ - "4 - General action" - ] - }, - { - "text": "Provide State officials and judiciary and law enforcement officials with human rights training specifically focusing on the protection of human rights, in particular those of vulnerable groups, and on the practical implications of the 2005 Law on freedom of public expression..", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Abolish the death penalty in conformity with the Second Optional Protocol to the International Covenant on Civil and Political Rights", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Support comprehensively increased efficiency in fighting violence against children", - "values": [ - "4 - General action" - ] - }, - { - "text": "Improve coordination on trafficking, the monitoring of the implementation of anti-trafficking legislation, ensure the rights of victims are protected, including the right to redress and economic and social support", - "values": [ - "4 - General action" - ] - }, - { - "text": "Ratify the OP-CAT as recommended previously in 2009 ", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Strengthen laws in the area of the right to education", - "values": [ - "4 - General action" - ] - }, - { - "text": "Step up efforts to prevent sexual violence against women and children and strengthen measures for the rehabilitation of boys and girls affected by armed conflicts ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Place a particular focus on the education and employability of Roma women in integration policies, since women and children are the most vulnerable groups within the Roma community", - "values": [ - "4 - General action" - ] - }, - { - "text": "Develop and implement preventative and protection policies and measures for the victims of child labour.", - "values": [ - "4 - General action" - ] - }, - { - "text": "Take measures to combat impunity of all those who attack human rights defenders", - "values": [ - "4 - General action" - ] - }, - { - "text": "Proceed with the adoption and implementation of a code of conduct for the treatment of asylum seekers, and stop the practice of intercepting and pushing back the boats of the asylum-seekers into international waters, with the implementation of measures consistent with the provisions of international law and international standards", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Seek further technical assistance from OHCHR and other relevant agencies in order to promote human rights education and capacity-building, especially for public sector employees as well as for its preparation for reporting under international instruments ", - "values": [ - "1 - Minimal action" - ] - }, - { - "text": "Ensure the effective implementation of the national plan of action for prevention, assistance and eradication of violence against women 2017-2019, established by Law No. 26485", - "values": [ - "4 - General action" - ] - }, - { - "text": "Continue to implement measures to protect the rights of the child", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Take necessary measures to tackle hate speech carried out by politicians targeting members of minorities, migrants, asylum seekers, refugees and so on", - "values": [ - "4 - General action" - ] - }, - { - "text": "Take the necessary measures to implement article 23 of the Convention on the Rights of the Child.", - "values": [ - "4 - General action" - ] - }, - { - "text": "Continue efforts to increase the participation of women in leadership at the local government level", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Establish a formal moratorium on the death penalty and in particular cease all planned executions of juvenile offenders and prohibit the imposition of the death penalty for crimes committed by minors", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Ensure the inclusion of a human rights approach in the measures to address the migrant situation, taking into particular account the situation of vulnerable population", - "values": [ - "4 - General action" - ] - }, - { - "text": "Review the minimum mandatory sentences in order to assess their disproportionate impact on the racial and ethnic minorities", - "values": [ - "3 - Considering action" - ] - }, - { - "text": "Adjust its internal legislation to the standards of the International Convention for the Protection of All Persons from Enforced Disappearance, including the obligation to define the offence of enforced disappearance ", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Step up its efforts, in complying with its international human rights obligations, and end discrimination of ethnic minorities to ensure they are able to carry out peaceful activities without harassment, threat of detention or imprisonment", - "values": [ - "4 - General action" - ] - }, - { - "text": "By implementing its national poverty policy and programme, redouble efforts to reduce poverty and improve the lives of vulnerable groups of the population", - "values": [ - "4 - General action" - ] - }, - { - "text": "Avoid any legislative amendments which would disproportionately limit the exercise of the right to freedom of assembly", - "values": [ - "4 - General action" - ] - }, - { - "text": "Activate the efforts to combat trafficking in persons, and rehabilitate its victims", - "values": [ - "4 - General action" - ] - }, - { - "text": "The Federal Government is actively committed to the creation of a framework to make it easier for men and women to reconcile a career with family commitments. Development of child-care is a political priority.", - "values": [ - "4 - General action" - ] - }, - { - "text": "Continue its efforts in order to promote human rights and public liberties", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Progressively implement economic, social and cultural rights, notably by ensuring the appropriate level of social expenditures ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Accede to the International Covenant on Civil and Political Rights and the International Covenant on Economic, Social and Cultural ", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Revise the law governing the National Human Rights Commission and develop its capacity to bring it in line with the Paris Principles", - "values": [ - "3 - Considering action" - ] - }, - { - "text": "Fully fund implementation of the new national plan to combat HIV-related stigmatization and discrimination", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Conduct a comprehensive review of existing legislation, and harmonize law and customary practices in all four states with international standards ", - "values": [ - "3 - Considering action" - ] - }, - { - "text": "Ratify the International Convention on the Protection of the Rights of All Migrant Workers and their families, the Second Optional Protocol to the International Covenant on Civil and Political Rights, the Third Additional Protocol to the Geneva Conventions of 1949, the Conventions on statelessness, and ILO Convention 169", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Continue to dedicate resources to promote the right to education and the rights of children.", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Continue to strengthen the laudable initiatives to ensure a fully integrated school system for migrants, ethnic minorities, women, girls and boys, notably from the Roma communities", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Further strengthen its national machinery to ensure gender equality ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Follow through with the implementation of its national development agenda under Vision 2030", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Accept requests for visits from special procedures so that they can take place as soon as possible", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Improve the incarceration conditions of prisoners, particularly by reducing overcrowding, malnutrition and the shortage of adequate medical care", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Further develop the quality of education and health-care policies in the country ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Ratify the OP-CAT ", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Investigate allegations of executive branch interference in judicial decision-making ", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Allocate sufficient resources for the Sustainable Development Goals", - "values": [ - "4 - General action" - ] - }, - { - "text": "Accept the inclusion of a human rights dimension in the mandate of the United Nations Mission for the Referendum in Western Sahara", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Continue to implement the national education strategic plan to raise the coverage of education and its quality ", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Ensure the establishment and implementation of proactive and effective approaches to combating and penalizing human trafficking in the country \n\n", - "values": [ - "4 - General action" - ] - }, - { - "text": "Ensure freedom of religion in the legislation and in practice and promote tolerance through awareness-raising campaigns and free access to information ", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Continue the national programme for the modernization of the judicial system ", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Recommended that federal legislation be strived for to provide protection against all forms of discrimination, including on grounds of sexual orientation and gender identity. ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Put forward continued efforts in raising awareness and working towards addressing issues related to the racial discrimination", - "values": [ - "4 - General action" - ] - }, - { - "text": "Uphold a consistent and robust protection of religious freedom, including religious speech and conscientious objection, and provide for accommodation of religious views and actions regarding social issues", - "values": [ - "4 - General action" - ] - }, - { - "text": "Reinforce judicial reforms initiated in 2009 with a view to ensuring the judiciary's independence, transparency, efficiency and accessibility", - "values": [ - "4 - General action" - ] - }, - { - "text": "Avoid requiring re-registration of civil society organizations", - "values": [ - "4 - General action" - ] - }, - { - "text": "Continue efforts to promote access to justice, with a view to ensuring legal protection in the enjoyment of human rights by all citizens on an equal basis ", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Continue to strengthen measures to improve access to justice and education to women and girls in rural areas", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Consider issuing a standing invitation to special procedure mandate holders ", - "values": [ - "3 - Considering action" - ] - }, - { - "text": "Comply with the recommendations of the Human Rights Committee with regard to the adoption of the necessary policy and legal framework to combat domestic violence effectively.", - "values": [ - "4 - General action" - ] - }, - { - "text": "Step up its efforts to comprehensively address this trend (the trend that political and public figures including media made discriminatory and discriminatory speech against Muslims), not only from the freedom of expression perspective but also from socio-cultural point of view ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Strengthen efforts aimed at planning public policies for the of the rights of women through their active participation in the political, economic and social development of the country ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Ensure that, in practice, undocumented children can benefit from health care and education", - "values": [ - "4 - General action" - ] - }, - { - "text": "Seek the help of the international community through different programmes of capacity building and technical assistance ", - "values": [ - "1 - Minimal action" - ] - }, - { - "text": "Adopt a national strategy to continue and intensify the deinstitutionalization process aimed at replacing current shelters with alternative housing and means of care better suited to meeting the needs of orphans and-or persons with mental disabilities", - "values": [ - "4 - General action" - ] - }, - { - "text": "Ensure that all allegations of exploitation and sexual abuse of children in the Central African Republic by Gabonese soldiers are promptly and effectively investigated, and take steps to prevent this situation in the future", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Review the Criminal Code with special attention to discrimination against women.", - "values": [ - "3 - Considering action" - ] - }, - { - "text": "Intensify its effort to improve human rights for women and to combat key problems such as human trafficking, sexual violence, domestic violence and exploitation of women and children ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Step up efforts aimed at improving the situation of women, also through education and specific awareness-raising campaigns about the perils of female genital mutilation (FGM)", - "values": [ - "4 - General action" - ] - }, - { - "text": "Continue to strengthen the democratic experience that it has embarked upon", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Promote a comprehensive policy of sensitization to the fight against domestic violence ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Bring its legislation and practices into line with international obligations ", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Adopt measures to ensure protection of journalists and human rights defenders against harassment, attacks and arbitrary detention.", - "values": [ - "4 - General action" - ] - }, - { - "text": "Enact legislation to protect equality of rights for women in line with the Convention on the Elimination of All Forms of Discrimination against Women", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Implement the recommendations of the Human Rights Committee, by prosecuting and sentencing, as appropriate, the perpetrators of the extrajudicial executions of December 1982 and the Moiwana massacre in 1986", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Elaborate a gender-sensitive approach in the programmes and policies which address human rights discrimination and take the necessary actions to raise awareness on attitudes and stereotypes targeting women and sexual minorities in society", - "values": [ - "4 - General action" - ] - }, - { - "text": "Take steps to revise the legislation on immigration by introducing time limits for the detention of migrants and asylum seekers, as well as considering revising the changes introduced to visas for foreign spouses based on income criteria", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Ratify the Third Optional Protocol to the Convention on the Rights of the Child ", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Avail itself of the technical assistance and capacity-building support provided by OHCHR ", - "values": [ - "1 - Minimal action" - ] - }, - { - "text": "Increase efforts to prevent domestic violence and, inter alia, to strengthen action to assist victims, and take into account the recommendations of the Human Rights Committee ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Take further steps to protect human rights defenders, including those working in relation to the rights of indigenous, including through ensuring impartial, thorough and effective investigations into all attacks, harassment and intimidation against human rights defenders and prosecution of all alleged perpetrators of such offences, and further, fully implement the national programme to protect human rights defenders through the adoption of a specific legal framework, allocation of a budget and the setting up of multi-disciplinary teams to implement it", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Take vigorous measures to protect people suffering from albinism against the different forms of violence of which they are victims", - "values": [ - "4 - General action" - ] - }, - { - "text": "Combat gender-based discrimination and implement the UN Security Council resolution 1325 and related resolutions on women, peace and security", - "values": [ - "4 - General action" - ] - }, - { - "text": "Further strengthen institutional building in public health to ensure people\u2019s right to health", - "values": [ - "4 - General action" - ] - }, - { - "text": "Ratify at the earliest the OP-CAT", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Establish an official moratorium on executions with a view to abolishing the death penalty, commute all death sentences to terms of imprisonment and ensure rigorous compliance in all death penalty cases with international standards for trials", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Improve detention conditions by providing food, water and sanitary installations as well as by reducing prison overcrowding ", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Continue the process of bringing its national legislation in line with international standards", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Finalize the procedure to ratify the International Convention for the Protection of All Persons from Enforced Disappearance", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Take the necessary measures to ensure that the Persons with Disability Act (2006) is in line with the Convention on the Rights of Persons with Disabilities", - "values": [ - "4 - General action" - ] - }, - { - "text": "Continue to reinforce actions aimed at protecting children against violence, cruelty, exploitation, demoralisation, neglect and other forms of maltreatment ", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Consider taking all necessary measures to eliminate violence and discrimination against women in all areas of public and private life", - "values": [ - "3 - Considering action" - ] - }, - { - "text": "Develop and implement education campaigns aimed at preventing sexual violence and addressing the attitudes and stereotypes which perpetuate such violence", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Withdraw its reservation to the International Covenant on Civil and Political Rights", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Continue efforts to combat terrorism, the drug trade and drug use, within the framework of the Constitution, the law and international human rights standards", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Monitor the implementation and impact of reforms to end the segregation of Roma children in the education system, and ensure that discriminatory attitudes and treatment of children by teachers and other staff are properly addressed", - "values": [ - "4 - General action" - ] - }, - { - "text": "Ratify the International Convention on the Protection of the Rights of All Migrant Workers and Members of Their Families as a fundamental step towards the protection of human rights ", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Train members of the judiciary and law enforcement officials to make them aware of all types of violence against women, and strengthen public awareness campaigns", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Continue to adopt strategies and enforce policies and procedures needed to ensure the protection and the respect of migrant workers, halt all means of discrimination in the workplace, ensure equality in salaries and benefits and ensure the efficiency of the justice mechanisms", - "values": [ - "4 - General action" - ] - }, - { - "text": "Continue to support the programmes aimed at enhancing human rights education and training, and consider integrating this subject into primary education ", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Take special measures aimed at accelerating gender equality in all areas where women are underrepresented or disadvantaged", - "values": [ - "4 - General action" - ] - }, - { - "text": "Abolish the death penalty and sign and ratify both Optional Protocols to ICCPR", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Take steps to ensure that female prisoners are guarded by female prison officers exclusively ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Expedite the reform of the Criminal Code in order to include a definition of torture in accordance with the Convention Against Torture", - "values": [ - "4 - General action" - ] - }, - { - "text": "Effectively apply the law on intra-family violence to combat domestic violence and promote gender equality", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Seek support from international partners to assist the Government in continuing its efforts to provide access to education for migrants and asylum seekers", - "values": [ - "1 - Minimal action" - ] - }, - { - "text": "Continue working on programmes to combat discrimination, particularly against persons belonging to minorities or vulnerable groups", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Issue a standing invitation to all Special Procedures, and establish a calendar", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Bring its legislation into conformity with its support for the General Assembly Statement on Human Rights, Sexual Orientation and Gender Identity and its international human rights obligations, by repealing the provisions which criminalize sexual activity between consenting adults of the same sex ", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Ensure respect for and protection of lesbian, gay, bisexual, transgender and intersex persons through measures such as the decriminalization of homosexual relations in the armed and security forces, the recognition of same-sex couples and the right to change identity for transgender people", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Share best practices in the promotion and protection of human rights taking into account the multireligious, multi-cultural and multi-ethnic nature of Indian society.", - "values": [ - "1 - Minimal action" - ] - }, - { - "text": "Adopt, as soon as possible, the Criminal Code containing the provisions on the abolition of the death penalty and the criminalization of torture, and adopt the law criminalizing all forms of trafficking and the decrees of application of the Children\u2019s Code", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Ratify the First Optional Protocol to the International Covenant on Civil and Political Rights", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Continue to fully implement the Disabilities Act 2014", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Facilitate the establishment of an OHCHR country office in Myanmar, able to operate throughout the country with a full promotion and protection mandate and establish a timeframe in that respect", - "values": [ - "4 - General action" - ] - }, - { - "text": "Intensify its efforts to combat and eliminate human trafficking ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Take the necessary steps to strengthen the legal framework surrounding elections so as to ensure that future elections are free and fair, thereby allowing Cambodian citizens to have a say in the decisions that affect their lives and to elect the officials who reflect and respond effectively to their needs ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Continue to work for strengthening its human rights infrastructure in cooperation with relevant United Nations human rights organs ", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Repeal sections 76, 77 and 79 of the Offences against the Person Act, which criminalize same-sex male intercourse ", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Enforce proper amendments to the Criminal Code in order to put it into line with the provisions enshrined, inter alia, in the Constitution of Chad and to continue reinforcing the legal framework to protect women's rights, with the aim of effectively addressing any act of violence against women, including female genital mutilations and early and forced marriages, a practice which is sadly still too much widespread in the country", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Put in place special measures to monitor, identify, and report sexual and gender-based violence, with a view to its prevention and punishment, bearing in mind the need to exclude these crimes, where feasible, from amnesty processes", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Ratify the Convention against Torture", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Prepare and submit, with the assistance of OHCHR, if required, all overdue reports to the Committee on the Elimination of Discrimination against Women, the Committee on the Rights of the Child and Committee on the Elimination of Racial Discrimination", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Ratify the Optional Protocol to the Convention against Torture and Other Cruel and Inhumane Treatment or Punishment ", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Consider establishing an independent mechanism for monitoring children's rights and providing necessary financial resources for its functioning", - "values": [ - "3 - Considering action" - ] - }, - { - "text": "Continue taking the steps necessary to ensure the signing of the national agreement on criminal justice", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Include mechanisms for the internal control of prison guards in the rules and regulations for prisons and detention centres.", - "values": [ - "4 - General action" - ] - }, - { - "text": "Create and implement a national action plan for the elimination of domestic violence and child abuse with the technical assistance of specialized agencies and programmes of the United Nations system ", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Consider transferring oversight for allegations of ill-treatment of all prisoners to an appropriate civilian judicial authority", - "values": [ - "3 - Considering action" - ] - }, - { - "text": "Continue working to eradicate the practices that allow rapists to avoid prosecution if they marry their victims", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "End various forms of inequality", - "values": [ - "4 - General action" - ] - }, - { - "text": "Ensure that the good practice of the "high rate of female parliamentary representation" is materialized through enhanced women's participation in decision-making in the country ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Pay special attention to the needs of women in rural and remote areas ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Take all necessary and appropriate measures to eradicate all forms of child labour, in accordance with international legal standards, and to protect children from economic exploitation.", - "values": [ - "4 - General action" - ] - }, - { - "text": "The Government firmly intended to conduct a broad-based discussion with all concerned State bodies and nongovernmental organizations, as well as with other civil society institutions and the media, to look at the recommendations emerging from the report on Uzbekistan and to develop and implement an appropriate national plan of action", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Implement reforms on judicial independence and rule of law recommended by the International Bar Association Human Rights Institute in 2015", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Prioritize the education of the girl child ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Take greater measures to ensure the safety of all its people, including directly targeted groups such as human rights defenders, community leaders, journalists and trade unionists.", - "values": [ - "4 - General action" - ] - }, - { - "text": "Continue to make progress in education and health care, with a particular focus on women and girl children", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Take all the necessary measures to fight against femicide and the lynching and killings of persons based on their sexual orientation.", - "values": [ - "4 - General action" - ] - }, - { - "text": "Allow women to participate fully and equally in society by abolishing the guardianship system, appointing more women to positions of authority, and increasing freedom of movement", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Take further steps in view of the ratification of CRPD as soon as possible within a 10 years' timeframe", - "values": [ - "4 - General action" - ] - }, - { - "text": "Take advantage of the substantial expertise that civil society represents, and enter into regular consultations with NGOs on human rights related issues, including the follow-up of the recommendations of the various United Nations treaty bodies ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Reiterate publicly its support to human rights defenders, generate an environment where they can work freely and take measures to fight against the impunity of perpetrators of aggressions and threats against them ", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Bring its legislation in line with the international human rights conventions that Iran has ratified, including CRC, and abolish at least the death penalty for crimes committed by persons under the age of 18", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Continue promoting and disseminating information on the rights of persons with disabilities, as well as the use of sign language and Braille", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Pay priority attention to gender equality and discrimination against women, as well as on the grounds of race and ethnicity, and ensure the application of the principles and provisions of the International Convention on the Elimination of All Forms of Racial Discrimination in the domestic legislation of the country", - "values": [ - "4 - General action" - ] - }, - { - "text": "Adopt a comprehensive law on violence against women and girls that addresses the importance of consent and provides adequate protection for victims and appropriate penalties for perpetrators", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Continue its cooperation with the United Nations and other international organizations to develop its legal and institutional framework with respect to the promotion and protection of human rights in Singapore ", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Formulate a comprehensive anti-discrimination act that prohibits all forms of discrimination, including those based on race, gender, nationality, etc.", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Continue the implementation of the National Development Strategy 2011-2016 in order to realize the objectives of the Qatar National Vision 2030 ", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Guarantee the full enjoyment of the rights of the LGBT community ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Continue efforts which aim to alleviate poverty", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Continue to apply existing legislation and adopt measures to eradicate female genital mutilation ", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Allow complete and unfettered access to the Commission of Inquiry and implement all Human Rights Council resolutions on the human rights situation in the Syrian Arab Republic", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Continue strengthening the institutional capacity in the human rights sector in the country, particularly through promotion, dissemination and human rights education in the various national institutions, and establish follow-up mechanisms for human rights recommendations", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Reject any attempts to impose on it any values or standards beyond its international legal obligations and not in conformity with its social values", - "values": [ - "4 - General action" - ] - }, - { - "text": "Ratify the Domestic Workers Convention, 2011 No. 189", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Ensure consultation processes which allow a public debate and interaction with the independent civil society, with sufficient time during the drafting of new laws and public policies", - "values": [ - "4 - General action" - ] - }, - { - "text": "Take the necessary measures to amend existing legislation in order to bring possible restrictions to freedom of expression or assembly in line with international human rights norms and standards", - "values": [ - "4 - General action" - ] - }, - { - "text": "Implement legislation against violence and the discrimination against women in a comprehensive way and with a gender perspective", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Implement measures to prohibit corporal punishment of children in schools", - "values": [ - "4 - General action" - ] - }, - { - "text": "Work towards addressing statelessness and protecting the rights of stateless persons", - "values": [ - "4 - General action" - ] - }, - { - "text": "Consider ratifying the Convention on the Rights of Persons with Disabilities in the future", - "values": [ - "3 - Considering action" - ] - }, - { - "text": "Strengthen protection of women and children, ethnic minorities, migrants, persons with disabilities, older persons and other vulnerable groups", - "values": [ - "4 - General action" - ] - }, - { - "text": "Step up its efforts to ease overcrowding in the prison system and especially look for alternative non-custodial measures for adolescents", - "values": [ - "4 - General action" - ] - }, - { - "text": "Expedite the deliberation, and follow by enactment, of the law on the establishment of a national human rights institution in accordance with the Paris Principles", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Undertake awareness-raising campaigns to foster equal opportunities and responsibilities for women and men both in private and public spheres", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Take all appropriate measures to prevent, investigate and punish manifestations of violence, intolerance and discrimination against lesbian, gay, bisexual, transgender and intersex people", - "values": [ - "4 - General action" - ] - }, - { - "text": "Intensify efforts for drafting a constitution which guarantees the fundamental rights of persons, as well as the separation and independence of the executive, legislative and judicial branches", - "values": [ - "4 - General action" - ] - }, - { - "text": "Continue to strengthen and effectively implement the rule of law, especially through an effective reform of the judicial system, and to strengthen democratic institutions ", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Seek to enhance international cooperation to address the lack of human capacity and financial resources in the peace process and post conflict reconstruction ", - "values": [ - "1 - Minimal action" - ] - }, - { - "text": "Accede to the ICESCR and bring national legislation in compliance with relevant provisions of this Covenant ", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Take steps to combat religious intolerance, as exemplified by the characterization in textbooks of missionary activities as a national threat ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Make public the whole report of the Subcommittee on the Prevention of Torture, following its visit to Nauru in May 2015", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Take steps towards the withdrawal of Algeria's reservations to articles 2 and 16 of CEDAW, which Slovenia considered contrary to the object and purpose of the Convention. ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Take concerted action to eradicate slavery including by enforcing the anti-slavery law and ensuring prosecution of perpetrators, taking measures to prevent slavery, protect and rehabilitate victims, and raising awareness of the criminalisation of slavery", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Guarantee protection of human rights of nomad pastors, most of them of the Fulani ethnicity", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Punish and prevent trafficking in children for the purpose of forced labour ", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Establish a national mechanism independent of the public prosecutor and the attorney general for the investigation and prosecution of crimes committed during and following the 2007 election period ", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Strengthen the ban on the initiation of women with the view to totally eliminating the practice of female genital mutilation in the country", - "values": [ - "4 - General action" - ] - }, - { - "text": "Fully ensure the freedoms of expression and association and take all necessary measures to ensure that human rights defenders can carry out their missions", - "values": [ - "4 - General action" - ] - }, - { - "text": "Continue programmes to fight poverty and to bring about the realization of economic, social and cultural rights, favouring especially the most vulnerable categories of society, women and children living in regions exposed to natural catastrophes, and continue the zero hunger programme", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Maintain the moratorium on the implementation of the death penalty as a step towards its definitive abolition ", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Continue implementation of its 10-point socioeconomic agenda and create skills-enhancement programmes on the basis of the human resources road map for 2016-2022", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Increase efforts and adopt all the necessary measures for the fight against discrimination in all its forms, particularly against minorities, and among them the most vulnerable children and women", - "values": [ - "4 - General action" - ] - }, - { - "text": "Reform its National Human Rights Commission to regain its A status and promote and protect human rights", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Adopt all necessary political and legislative measures to decriminalize sexual relations between consenting adults of the same sex as well as adopt measures to guarantee the enjoyment of the right to health without discrimination based on sexual orientation", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Strengthen the judiciary and make it independent by training judges in order to guarantee effective implementation of the law.", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Organize a national campaign to raise awareness on the specific needs of women victims of domestic violence and gender-based violence", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Promote cross-cutting measures to prevent discrimination against persons with disabilities in the education system, including measures that allow for a safe physical access to education centres and classrooms", - "values": [ - "4 - General action" - ] - }, - { - "text": "Fully implement the recommendations on human rights defenders it accepted during the previous UPR, including investigating fully and effectively violations committed against human rights defenders and journalists and bringing to justice those responsible", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Ensure the use of objective, transparent and non-discriminatory selection criteria in the allocation of broadcast licences, and to avoid bringing defamation cases against media outlets", - "values": [ - "4 - General action" - ] - }, - { - "text": "Continue its efforts to put in place the conditions for the eventual ratification of the International Convention on the Protection of all Persons from Enforced Disappearance (CPED) ", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Review legislation, and amend it where necessary, to remove provisions which allow Government and military personnel to act with impunity ", - "values": [ - "3 - Considering action" - ] - }, - { - "text": "Consider as a first step the application of a moratorium on executions, both at the state and federal levels, with a view to ultimately abolishing the death penalty", - "values": [ - "3 - Considering action" - ] - }, - { - "text": "Resolve fully the problem of the identification documents of the Palestinian refugees and modify legislative provisions and policies that have discriminatory consequences on the Palestinian population as compared to other non-citizens", - "values": [ - "4 - General action" - ] - }, - { - "text": "Accede to the Protocol to Prevent, Suppress and Punish Trafficking in Persons, Especially Women and Children, supplementing the United Nations Convention against Transnational Organized Crime", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Ensure that any interference with the right to privacy therein complies with the principles of legality, necessity and proportionality", - "values": [ - "3 - Considering action" - ] - }, - { - "text": "Continue to implement the programme of human rights education and capacity-building among the relevant stakeholders", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Continue its efforts towards achieving the right to food and food security ", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Accede to the International Covenant on Civil and Political Rights and its Second Optional Protocol, aiming at the abolition of the death penalty", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Take measures to improve safeguards for freedom of the press. ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Step up enforcement of laws protecting women from rape and violence, criminalize spousal rape and treat honor killings no differently than murder.", - "values": [ - "4 - General action" - ] - }, - { - "text": "Ensure equal remuneration to men and women", - "values": [ - "4 - General action" - ] - }, - { - "text": "Continue its effort in strengthening the protection of the right to food ", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Continue paying special attention for the protection of the rights of children ", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Withdraw its reservations to the Convention on the Rights of the Child and its Protocols ", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Comply fully with its obligations under the ICCPR and the recommendation of HR Committee", - "values": [ - "4 - General action" - ] - }, - { - "text": "Put an end to all United States military presence in foreign territories, which is the root cause of human rights abuses, including homicide and rape", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Establish policies and programmes aimed at combating racism, xenophobia and discrimination in the education system", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Continue its successful measures in the field of education", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Immediately adopt a moratorium on the death penalty as a first step towards its abolition ", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Take steps to promote intercultural and inter-religious dialogue and cooperation to strengthen non-discrimination campaigns and to enhance participation of minorities in public life to promote an inclusive society ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Ensure the safety of journalists and independence of the media, including in the run-up to the elections, and the rigorous implementation of the Organic Law of 22 June 2010 on freedom of the press", - "values": [ - "4 - General action" - ] - }, - { - "text": "Ensure the integration and effective implementation of strategies on drop-out rate reduction, child labour elimination and poverty alleviation ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Put in place policies, legal frameworks and executive actions for human development and empowerment of women", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Ratify the Second Optional Protocol to the International Covenant on Civil and Political rights, aiming at the abolition of the death penalty", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Continue to make progress towards the full recognition of ethnic and cultural diversity that characterizes the Kyrgyz people", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Undertake a participatory and inclusive process with civil society organizations, including indigenous peoples in the implementation of universal periodic review recommendations ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Ensure the protection of journalists, media personnel and human rights defenders against any attacks, investigate and prosecute such attacks and bring those responsible to justice", - "values": [ - "4 - General action" - ] - }, - { - "text": "Withdraw all reservations to the International Covenant on Civil and Political Rights ", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Recommended Pakistan's positive reaction in its efforts to confront the humanitarian problem related to the large number of refugees, which could be an example for other countries.", - "values": [ - "1 - Minimal action" - ] - }, - { - "text": "Ratify the ICCPR without further delays and integrate all provisions into domestic legislation", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Proceed to a de jure abolition of the death penalty and ratify the Second Optional Protocol to the International Covenant on Civil and Political Rights, aiming at the abolition of the death penalty", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Prioritize the need to become party to the Convention against Torture and Other Cruel, Inhuman or Degrading Treatment or Punishment", - "values": [ - "4 - General action" - ] - }, - { - "text": "Continue its good work of contributing to the United Nations and its human rights mechanisms", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Combat school dropouts and increase the number of students who finish secondary education", - "values": [ - "4 - General action" - ] - }, - { - "text": "Continue efforts to promote good governance, political dialogue and actions in favour of peace", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Strengthen cooperation with non-governmental organizations, and ensure that the rights of all those involved in human rights advocacy are protected under Iranian law, in accordance with its obligations under ICCPR, and that freedom of association is enshrined in Iranian law", - "values": [ - "4 - General action" - ] - }, - { - "text": "Continue its efforts to empower women and underprivileged segments of the society ", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Take all necessary steps to promptly adopt and implement a comprehensive national disability policy in full compliance with international standards", - "values": [ - "4 - General action" - ] - }, - { - "text": "Ratify the 1951 Convention relating to the Status of Refugees and its Optional Protocol of 1967, and accede to the 1954 Convention relating to the Status of Stateless Persons and the 1961 Convention on the Reduction of Statelessness ", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Advocate for the revision of labour code provisions to ensure the full application of the principle of "equal pay for equal work" for both men and women", - "values": [ - "4 - General action" - ] - }, - { - "text": "Take further steps to improve the conditions of vulnerable categories of its population, in particular children in poverty, who face food insecurity and mistreatments, and disabled people, who are still victims of stigmatization and discrimination", - "values": [ - "4 - General action" - ] - }, - { - "text": "Continue the implementation of the recommendations contained in the report of the High Commissioner ", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Implement effectively the Law to Protect Family and Prevent Violence against Women", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Further enhance the mandate of the Myanmar Human Rights Body so that it can discharge its duties in accordance with the Paris Principles", - "values": [ - "4 - General action" - ] - }, - { - "text": "Amend article 41(2) of the Constitution on the role and status of women in order to render its provisions gender-equal ", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Take appropriate measures to address the disparities in access to safe drinking water and sanitation between the rural and urban areas, paying particular attention to persons belonging to vulnerable and marginalized groups ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Accelerate the effective implementation of the National Plan 2010-2012 on persons with disabilities including providing them with employment opportunities ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Strengthen the response to various forms of violence against woman and take appropriate measures in order to ensure gender equality in the labor market", - "values": [ - "4 - General action" - ] - }, - { - "text": "Adopt a comprehensive and integrated approach to its gender equality policies in all areas, especially with regard to refugees, asylum-seekers, displaced persons and persons with disabilities ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Adopt international human right standards to deal with the problem of female genital mutilation", - "values": [ - "4 - General action" - ] - }, - { - "text": "Investigate all cases of politically motivated violence, including the circumstances surrounding the disappearance of human rights defender Itai Dzamara, and ensure that those responsible are brought to justice", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Ensure the rule of law, in particular through proper management of judicial structures and systems", - "values": [ - "4 - General action" - ] - }, - { - "text": "Continue to design and implement growth and job creation programmes targeting the most disfavoured of the population", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Strengthen a multisectoral response at all levels in addressing the gender-based violence", - "values": [ - "4 - General action" - ] - }, - { - "text": "Continue its efforts for the implementation of the Sustainable Development Goals, especially those related to education, and for their integration in the national policies", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Ensure the effective implementation of the national strategy on maternal and child mortality, including through addressing root causes of under-5 mortality, such as poverty, undernutrition, harmful practices, and lack of access to safe drinking water, health-care services and education", - "values": [ - "4 - General action" - ] - }, - { - "text": "Set up an effective format for introducing a dialogue with representatives of minorities, acquiring comprehensive information on their problems and needs, developing and implementing, in consultation with them, policies and programmes to improve their situation, as well as to prevent and eradicate racial discrimination against them", - "values": [ - "4 - General action" - ] - }, - { - "text": "Ensure that adequate resources, political commitment and support be given in preparation for the upcoming presidential and parliamentary elections in 2014, which must be held in a free, fair and transparent manner and in accordance with international standards ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Condemn all forms of racism, including in political speech and on the Internet, and prosecute those involved", - "values": [ - "4 - General action" - ] - }, - { - "text": "Develop an investigation protocol with gender and ethnicity perspectives that can be used by the offices of Attorneys General of States in all cases where women human rights defenders report threats or attacks", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Step up its efforts in the promotion and protection of the rights of children, including continuing its measures to combat violence against children ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Maintain efforts aimed at combating various forms of violence against women", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Continue to make efforts to implement and apply the Historical Memory Act ", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Allocate adequate funding and provide necessary human resources to fully implement policies and programmes aimed at eradicating all forms of gender-based violence", - "values": [ - "4 - General action" - ] - }, - { - "text": "Take further measures to correct the gaps in employment, salary, health care and education that exist between Maori and non-Maori peoples.", - "values": [ - "4 - General action" - ] - }, - { - "text": "Accomplish progressively the human rights goals set up by the Human Rights Council in its resolution 9-12.", - "values": [ - "4 - General action" - ] - }, - { - "text": "Remove reservations and interpretative statements to the International Covenant on Civil and Political Rights.", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Ensure the right to habeas corpus in all cases of detention ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Wider availability of multi-denominational and non-denominational schools to better cater to the multi-cultural society in Ireland today", - "values": [ - "4 - General action" - ] - }, - { - "text": "Adopt with the support of the international community, strategies aimed at eradicating any practice which violates the rights of women with particular emphasis on prevention, punishment and elimination of any forms of gender-based violence and increase the steps taken to ensure equality before the law of civil, political, economic and social rights for men and women", - "values": [ - "4 - General action" - ] - }, - { - "text": "Further promote protection of the rights of the child, giving emphasis to Indigenous Children", - "values": [ - "4 - General action" - ] - }, - { - "text": "Implement measures to improve sanitation conditions and prevent overcrowding in administrative detention centres, especially those under the authority of migration authorities ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Continue its efforts to establish a national human rights institution in line with the Paris Principles and with full participation of the civil society", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Implement policies to support food production, access to credit and school meals programs linked to local food production ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Strengthen efforts to consolidate the independence of the judiciary and to speed up implementation of measures aimed at reducing the backlog of cases before domestic courts", - "values": [ - "4 - General action" - ] - }, - { - "text": "Intensify its efforts to guarantee to its people the right to food and all other human rights.", - "values": [ - "4 - General action" - ] - }, - { - "text": "Take legal and educational measures in order to effectively combat violence against women and domestic violence ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Ensure that those who commit torture are held accountable and ratify CAT and its Optional Protocol", - "values": [ - "4 - General action" - ] - }, - { - "text": "Maintain the protection of the right to life from conception to natural death following article 15 of the Slovak constitution that states: "Human life is worthy of protection even prior to birth" ", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Become a party to ICESCR ", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Continue efforts to ensure that national laws comply with its international human rights obligations", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Promote and uphold freedom of the media and the right to freedom of expression and to ensure that legislation and State practice are brought in line with article 19 of the International Covenant on Civil and Political Rights", - "values": [ - "4 - General action" - ] - }, - { - "text": "The Government of Saint Vincent and the Grenadines wishes to inform that there are several organisations dealing with various aspects of human rights and related human issues operating within its territory and welcomes these recommendations but cannot accept them at the present time to create a national human rights institution in accordance to the Paris Principles. As a result, the Government commits to undertake consultation with stakeholders and with the support and assistance of the international community to create such an institution.", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Ensure that all forms of violence against women and girls, including domestic violence and all forms of sexual abuse, are criminalized ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Take positive steps to implement the Family Safety Act amongst law enforcement agencies", - "values": [ - "4 - General action" - ] - }, - { - "text": "Prioritize the need to become party to the following important human rights treaties, namely: ICERD, CAT and OP-CAT, ICRMW, and the Rome Statute, taking into account the fact that the Democratic People's Republic of Korea has already acceded to the Convention on the Prevention and Punishment of the Crime of Genocide, in 1989", - "values": [ - "4 - General action" - ] - }, - { - "text": "Strengthen the national strategy to guarantee better access to education for all children and to include in the school system, at any level, appropriate measures in the area of human rights education in accordance with the 2005-2009 Plan of Action of the World Programme for Human Rights Education", - "values": [ - "4 - General action" - ] - }, - { - "text": "Take measures that ensure that children of ethnic minorities can remain within the school system. In this regard, it is suggested that these measures are implemented at the level of local governments with an important number of Roma or Hungarian population residing there and that adequate follow-up of the progress is carried out in this regard ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Work on overcoming the obstacles related to economic problems and the scarcity of resources through cooperation with the international community and the United Nations so as to ensure the promotion and protection of human rights", - "values": [ - "4 - General action" - ] - }, - { - "text": "Carry out in-depth investigations of actions of some politicians during their electoral campaigns and statements that incite hatred", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Take concrete measures to ensure that the Law on Protection of National Minorities will be effectively implemented, in order to overcome the social challenges facing the Roma people", - "values": [ - "4 - General action" - ] - }, - { - "text": "Prohibit Government employees from requesting guardians' permission to allow women to conduct official business, particularly in situations such as filing complaints for domestic violence", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Take all necessary measures to prevent violence and intolerance of a racist, xenophobia and homophobic character in conformity with international law and standards", - "values": [ - "4 - General action" - ] - }, - { - "text": "Conduct immediate, impartial and exhaustive investigations into all allegations of excessive use of force, ill-treatment and arbitrary arrest by all law enforcement agencies, and strengthen accountability mechanisms", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Consider ratifying the outstanding international human rights instruments and further update domestic laws to be in line with the articles of those treaties ", - "values": [ - "3 - Considering action" - ] - }, - { - "text": "Receive other thematic Rapporteurs, than the Special Rapporteur on the right to food and the Special Rapporteur on the question of torture", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Continue to address the concerns of human rights treaty bodies, special procedures and UNHCR in respect of immigrant, refugee and minority women in the area of equality and non-discrimination, and consider implementing, as appropriate, their recommendations ", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Strengthen efforts aiming at disseminating the human rights culture through various activities throughout the country", - "values": [ - "4 - General action" - ] - }, - { - "text": "Swiftly adopt a new Penal Procedure Code and Correctional Execution Code to allow for alternative sentencing", - "values": [ - "4 - General action" - ] - }, - { - "text": "Effectively implement its obligation to ensure freedom of religion in accordance with the ICCPR ", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Allow the return of the refugees", - "values": [ - "4 - General action" - ] - }, - { - "text": "Take further measures to combat poverty of elderly women, single mothers with children and women with disabilities", - "values": [ - "4 - General action" - ] - }, - { - "text": "Ensure human rights training for State security forces in order to enhance their capacity to protect human rights", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Implement an action plan on domestic violence and sexual violence against women, including immigrants and those from minority groups", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Consider discontinuing measures that curtail human rights and fundamental freedoms ", - "values": [ - "3 - Considering action" - ] - }, - { - "text": "Prevent and punish torture and ill treatment in accordance with the recommendations made by the Committee against Torture", - "values": [ - "4 - General action" - ] - }, - { - "text": "Consider the ratification of the Convention against Torture", - "values": [ - "3 - Considering action" - ] - }, - { - "text": "Reinforce efforts for women and girls subjected to trafficking", - "values": [ - "4 - General action" - ] - }, - { - "text": "Make further efforts with a view to withdrawing reservations to CEDAW ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Take the necessary measures to guarantee the human rights of migrants, including ratifying ICRMW.", - "values": [ - "4 - General action" - ] - }, - { - "text": "Empower the National Human Rights Commission, including by providing adequate budget and office space to conduct sensitization on trafficking and to handle complaints related to trafficking", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Cooperate with special procedures mandate holders.", - "values": [ - "4 - General action" - ] - }, - { - "text": "Set priorities and provide adequate resources for enhancing the protection and promotion of the rights to education, health care and social welfare, especially those of vulnerable groups such as women, children, ethnic minorities, migrants and people with difficulties ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Speed up the procedure to adopt a Code on the Protection of Children", - "values": [ - "4 - General action" - ] - }, - { - "text": "Establish a National Human Rights Commission", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Take further measures to guarantee access to education at all levels, in particular at university level ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Give more importance to the schooling of girls in its education programmes, which would certainly contribute to combat female genital mutilation.", - "values": [ - "4 - General action" - ] - }, - { - "text": "Declare illegal and prohibit organizations promoting and inciting racial hatred, in line with the international norms", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Effectively apply the biennial action plans to prevent the trafficking in human beings, whose victims are often women and children forced into prostitution against their will, and to establish mechanisms for border and airport control to prevent such crimes, as well as conduct information campaigns and provide adequate assistance to victims", - "values": [ - "4 - General action" - ] - }, - { - "text": "Continue promoting the right of women, especially rural women and guarantee their equality in employment opportunities ", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Expand the social welfare scheme and the number of beneficiaries.", - "values": [ - "4 - General action" - ] - }, - { - "text": "Adopt a comprehensive anti-discrimination legislation that includes all grounds set out in the International Covenant on Economic, Social and Cultural Rights ", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Establish, in consultation with civil society, a clear and transparent fiscal policy to manage revenues, combat corruption and account for the use of public funds", - "values": [ - "4 - General action" - ] - }, - { - "text": "Continue constructive cooperation with the United Nations human rights mechanisms", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Fully investigate the alleged cases of arrest and deportation of journalists and filmmakers depicting the problems of the Mapuche people.", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Strengthen the implementation of the Growth and Transformation Plan to build on the achievements of poverty reduction ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Amend the legislation to ensure an effective follow-up instrument for the public defenders and the members of the national preventive mechanism", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Harmonize national legislation, including in particular human rights legislation, with international human rights standards", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Adopt a legislative framework ensuring protection against all forms of offences motivated by prejudice", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Through stronger cross-institutional cooperation, provide more special services for children with disabilities, including taking necessary measures to improve the educational conditions ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Educate the public and law enforcement on women's legal rights, particularly in cases of rape and domestic violence, while undertaking to develop and implement a holistic strategy to prevent family violence, with the participation of all stakeholders", - "values": [ - "4 - General action" - ] - }, - { - "text": "Amend its Islamic Penal Code law on Offences against the National and International Security of the Country to define national security and associated breaches in specific terms that do not infringe upon the internationally guaranteed rights of free speech and assembly", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Set up measures to facilitate and accelerate the implementation of the law on the elimination of violence against women ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Complete its accession and speedily ratify the International Covenant on Civil and Political Rights and the International Covenant on Economic, Social and Cultural Rights.", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Ratify the Istanbul Convention ", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Strengthen its policy aimed at combating prejudice against minorities", - "values": [ - "4 - General action" - ] - }, - { - "text": "Accede to the Optional Protocol to the Convention on the Rights of the Child on the sale of children, child prostitution and child pornography ", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Argentina undertakes to promote initiatives in the Human Rights Council, among other forums, that seek to increase the protection afforded migrants and to spearhead discussions on the development and implementation of public policies on the subject", - "values": [ - "4 - General action" - ] - }, - { - "text": "Continue to pursue its outstanding and noble activities within the Human Rights Council", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Establish a National Human Rights Institution in compliance with the Paris Principles", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Decriminalize defamation within its civil code in accordance with international standards", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Continue its efforts to strengthen the normative and institutional framework for the protection and promotion of human rights ", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Continue to create an enabling climate for religious and cultural tolerance and understanding at the grass roots level ", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Strengthen the measures to ensure a safe environment for the activities of human rights defenders", - "values": [ - "4 - General action" - ] - }, - { - "text": "Continue efforts to raise public awareness of human rights, in particular the child rights", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Strengthen its commitment to empowering women and youth and continue to build on the achievements already made and expedite action on its review of the National Youth Police, which is currently underway ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Ratify as soon as possible the Convention on the Rights of Persons with Disabilities, without any reservation ", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Ensure effective implementation of the new National Strategy to prevent and eradicate early marriages", - "values": [ - "4 - General action" - ] - }, - { - "text": "Adopt effective measures to prevent any harassment or intimidation of all those exercising the right to freedom of opinion and expression, including journalists and human rights defenders.", - "values": [ - "4 - General action" - ] - }, - { - "text": "Ratify the Second Optional Protocol to the International Covenant on Civil and Political Rights, aiming at the abolition of the death penalty, and in the meantime, establish a moratorium on execution", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Endeavour to implement the obligations under article 14 of ICCPR, which comprehensively guarantees the right to a fair trial and the rights of the accused", - "values": [ - "4 - General action" - ] - }, - { - "text": "Take the steps necessary to resolve the problem of the fragmentation of the education system, including strengthening policy development and strategic planning, improving access to inclusive and high-quality education, promoting child participation, taking measures to prevent discrimination against and segregation of children, and promoting tolerance and respect for diversity in the education system", - "values": [ - "4 - General action" - ] - }, - { - "text": "Establish an official moratorium on executions and ratify the Second Optional Protocol to the International Covenant on Civil and Political Rights, aiming at the abolition of the death penalty, so as to bring the legislation into conformity with the de facto situation", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Continue its efforts to achieve equitable socio-economic development, address poverty alleviation through its overarching objective according to its current policies and Action Plans with the support by the international community in order to meet the targets of MDGs", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Continue implementing programmes and measures to improve the enjoyment of the right to education, the right to health and the right to food ", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Continue taking measures and setting awareness programs aimed at enhancing women's rights in different spheres including programmes that aim at clearing the misconception between Islamic sharia and negative cultural norms", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Continue to implement the National Strategy for the Integration of Roma Communities and ensure that it is appropriately and responsibly funded ", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Update national laws to cover all forms of trafficking, and eliminate cross-border trafficking in persons and forced marriage", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Implement an effective law to protect the women and child victims of domestic violence ", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Strengthen measures to eliminate discrimination against Roma and children on the basis of religion in health and education sectors", - "values": [ - "4 - General action" - ] - }, - { - "text": "Respond to problems of discrimination on the labour market linked to the refusal to hire persons on the grounds of their origin or race", - "values": [ - "4 - General action" - ] - }, - { - "text": "Continue with major coordinated efforts of the State, civil society and other relevant actors to fulfil the Plurinational Plan for Children, Childhood and Adolescence, implementation expected from 2014 to 2025, while considering the importance deserved by the empowerment of beneficiaries, and the sensitization of society for a proper inclusion", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Consider alternatives to the detention of irregular migrants and asylum- seekers, limit the length of detentions, ensure access to legal and health assistance and uphold its obligations under the Vienna Convention on Consular Relations ", - "values": [ - "3 - Considering action" - ] - }, - { - "text": "Ratify the four fundamental conventions of ILO concerning freedom of association and prohibition of forced or compulsory labour", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Modify all discriminatory provisions on the social and legal status of children born out of wedlock", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Elaborate additional measures to increase awareness of human rights culture", - "values": [ - "4 - General action" - ] - }, - { - "text": "Address the issue of youth holistically within national development plans ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Call for the support of the international community to provide the urgently needed technical and financial assistance in support of its efforts and for the implementation of the recommendations that may come out of this review.", - "values": [ - "1 - Minimal action" - ] - }, - { - "text": "Enhance technical cooperation with and seek support from the UN human rights mechanisms for further consideration of ratification of important documents on human rights, including the ICESCR ", - "values": [ - "4 - General action" - ] - }, - { - "text": "The Dominican Republic reiterated its commitment to continue cooperating with international organizations with the goal of strengthening its national institutions, and to comply with human rights requirements as set forth in the Declaration of Human Rights and all international human rights conventions.", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Step up efforts aimed at strengthening the independence of both of the judiciary and the media ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Urgently strengthen its commitment to the international human rights system in order to receive specialized help, through the extension of a standing invitation to all special procedures ", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Continue to invest resources to ensure that all children between the ages of 5 and 16, in particular girls in difficult regions, have access to quality basic and secondary education", - "values": [ - "4 - General action" - ] - }, - { - "text": "Develop alternatives to the mandatory sentencing laws placing children as young as 10 years of age in juvenile detention centres", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Implement public policies which guarantee to members of linguistic minorities the enjoyment of all their human rights, including the revision of the Law on Languages and the repeal of those articles which might impair their rights", - "values": [ - "4 - General action" - ] - }, - { - "text": "Continue and strengthen measures to fight against malnutrition, both chronic and acute", - "values": [ - "4 - General action" - ] - }, - { - "text": "Adhere to the Additional Protocols I and II to the Geneva Conventions", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Consider elaboration and adoption of a policy on child justice or a comprehensive programme through the National Child Justice Forum", - "values": [ - "3 - Considering action" - ] - }, - { - "text": "Adopt measures to eradicate in a definitive manner the practice of female genital mutilation ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Amend the Press and Publication Act so that it clearly and unequivocally protects freedom of expression for journalists and enforce this law.", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Take preventive and punitive measures against instigation of religious hatred", - "values": [ - "4 - General action" - ] - }, - { - "text": "Continue to work towards comprehensive rule of law reform including strengthening the police, corrections, and justice sectors, and building the institutional capacity of the Ministries of the Interior and Justice", - "values": [ - "4 - General action" - ] - }, - { - "text": "Continue to strengthen its programmes and policies in the area of economic, social and cultural rights, in order to increase the quality of life of its people, in particular the most vulnerable sectors of the population", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Further revise its legislation to include protection against all forms of violence against women", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Strengthen the fight against harmful traditional practices, such as the stigmatization of children accused of sorcery", - "values": [ - "4 - General action" - ] - }, - { - "text": "Put in place and adequately fund mechanisms for the collection and analysis of disaggregated data on maternal mortality and morbidity and domestic violence in order to better understand prevailing trends and assess the effectiveness of measures in place ", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Integrate fully a gender perspective in the next stages of the UPR review, including the outcome of the review.", - "values": [ - "4 - General action" - ] - }, - { - "text": "Address all urgent appeals sent by the United Nations special procedures mandate holders ", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Continue the realization of the right to education and the right to health for children in light of the Government's adoption of the Strategic Programme for the Protection of the Rights of the Child (2013-2016)", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Ensure the effective and independent functioning of the national preventive mechanism under the Optional Protocol to the Convention against Torture", - "values": [ - "4 - General action" - ] - }, - { - "text": "Continue the successful and important practice of accession to the core international human rights instruments ", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Ratify the Kampala amendments to the Rome Statute on the crime of aggression", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Review its anti-terrorism law and Criminal Code to definitively abolish the death penalty and ratify the Second Optional Protocol to the International Covenant on Civil and Political Rights", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Continue the work to bring the national legal framework in line with its international obligations", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Step up its efforts in enhancing the impact of the measures taken to address traditional discriminatory practices and persisting stereotypes about the roles and responsibilities of women and men", - "values": [ - "4 - General action" - ] - }, - { - "text": "Continue to consider the possibility of ratifying the Convention on the Protection of the Rights of All Migrant Workers and Members of Their Families, due to its universal nature and specific content, as well as ILO Convention 169, of 1989, concerning Indigenous and Tribal Peoples", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Eliminate discrimination against Roma and other minorities, including Muslims in law and practice, and protect their rights", - "values": [ - "4 - General action" - ] - }, - { - "text": "Continue its effort in implementing the programme of disarmament, demobilization and reintegration (DDR) of child soldiers ", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "The delegation further noted that Governments in Canada are also committed to guaranteeing the equality of the sexes under the law.", - "values": [ - "4 - General action" - ] - }, - { - "text": "Adopt a human-rights approach when designing projects under the Austrian Development Cooperation", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Ensure the effective implementation of the International Commission against Impunity's mandate on the ground as necessary to remove any obstacles for serious international investigations and pay particular attention to the effective implementation of victims' assistance and protection programmes in the fight against impunity.", - "values": [ - "4 - General action" - ] - }, - { - "text": "Continue its cooperation with OHCHR and explore new avenues for human rights cooperation", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Continue with positive actions and programs aimed at guaranteeing universal education and health services of quality to its people as well as those aimed at reducing poverty ", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Take necessary measures to enhance the enjoyment of the freedom of expression", - "values": [ - "4 - General action" - ] - }, - { - "text": "Promote recovery and conservation of traditional knowledge in order to restore ancestral heritage ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Follow through with a recommendation accepted by Saint Kitts and Nevis during its previous universal periodic review to ratify the Optional Protocol to the Convention on the Rights of the Child on children in armed conflict and the Optional Protocol to the Convention on the Rights of the Child on the sale of children, child prostitution and child pornography", - "values": [ - "4 - General action" - ] - }, - { - "text": "More actively conduct education and awareness campaigns on the issue of trafficking in persons and make efforts to study human trafficking in the country, adopt proactive procedures to identify victims of trafficking among vulnerable groups, such as foreign workers and women in prostitution, and investigate trafficking cases", - "values": [ - "4 - General action" - ] - }, - { - "text": "Include marital rape as an offence under the proposed Sexual Offences Bill", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Ratify the Optional Protocol to the Convention against Torture", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Step up the actions in favour of fighting poverty and social exclusion, focusing on minorities and vulnerable persons ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Immediately halt all violations of international human rights and humanitarian law by the security forces ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Continue with its efforts to combat racism, racial discrimination, xenophobia, as well as set up mechanisms to prosecute perpetrators of racist acts ", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Integrate human rights in the school curricula ", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Deepen the actions that ensure the effective implementation and legislation that guarantee the equality and protection of women", - "values": [ - "4 - General action" - ] - }, - { - "text": "Take the necessary political, legislative, judicial and administrative steps to redress most urgently the unacceptable humanitarian situation created by the Constitutional Court ruling ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Take more effective measures to ensure that the perpetrators of acts of discrimination, hate crimes and xenophobia are adequately deterred and sanctioned ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Consider signing and ratifying the International Convention on the Elimination of All Forms of Racial Discrimination ", - "values": [ - "3 - Considering action" - ] - }, - { - "text": "Guarantee freedom of religion or belief by considering the decriminalization of blasphemy, and adopt measures to protect the rights of persons belonging to religious minorities", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Portugal is committed to fully fulfilling its national obligations in the field of human rights and to further improving its national mechanisms to monitor progress in this field.", - "values": [ - "4 - General action" - ] - }, - { - "text": "Consider the ratification of the third Optional Protocol to the Convention on the Rights of the Child", - "values": [ - "3 - Considering action" - ] - }, - { - "text": "Mainstream human rights in all national programmes and policies ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Establish more shelters for women victims of violence ", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Share with other countries good practices in promoting and strengthening dialogue between civilizations", - "values": [ - "1 - Minimal action" - ] - }, - { - "text": "Review conditions in all prisons and detention facilities with a view to ensuring their compliance with the Standard Minimum Rules for the Treatment of Prisoners, in particular to establish separate juvenile detention facilities.", - "values": [ - "3 - Considering action" - ] - }, - { - "text": "Taking into account the section in the national report relative to the fight against discrimination and the promotion of freedom of opinion and expression, strengthen action to ensure the effective implementation of legislation against discrimination and religious violence", - "values": [ - "4 - General action" - ] - }, - { - "text": "Consider the establishment of a National Human Rights Institution, in conformity with the Paris Principles", - "values": [ - "3 - Considering action" - ] - }, - { - "text": "The Ministry is committed to bringing an increasingly research based, evidence driven approach to the practice of social development and poverty reduction.", - "values": [ - "4 - General action" - ] - }, - { - "text": "Address the problem of discrimination against women, particularly in the labour market, with regard to the gender-based wage gap", - "values": [ - "4 - General action" - ] - }, - { - "text": "Ensure implementation of environment protection legislation", - "values": [ - "4 - General action" - ] - }, - { - "text": "Support the efforts of civil society in strengthening human rights through specifying the necessary resources to implement its activities in spreading awareness on the principles of human rights", - "values": [ - "4 - General action" - ] - }, - { - "text": "Combat trafficking and sale in human beings", - "values": [ - "4 - General action" - ] - }, - { - "text": "Strengthen the legislative framework and ensure its effective enforcement in eliminating all forms of discrimination against women", - "values": [ - "4 - General action" - ] - }, - { - "text": "Continue to combat terrorism in the subregion in order to preserve peace, security and prosperity", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Intensify its efforts to combat domestic violence and its efforts to ensure that victims of domestic violence have access to adequate assistance, including legal and psychological counselling, medical help and shelter", - "values": [ - "4 - General action" - ] - }, - { - "text": "Take further measures to prevent and combat violence against children and women ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Implement measures to ensure speedier resolution of legal cases, for example, encouraging out of courts settlements and better use of information technology ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Further its national efforts to eradicate trafficking in persons, especially women and children", - "values": [ - "4 - General action" - ] - }, - { - "text": "Lift all its reservations to the Convention on the Elimination of All Forms of Discrimination against Women", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Expedite the establishment of a national human rights institution in compliance with the Paris Principles, while taking into account the characteristics of Samoa, including its culture, policies and legislation ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Continue to strengthen its activities to integrate persons with special needs into social life, bearing in mind that need", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Continue its commitment in assisting the enrolment of poor children in education and ensuring their health care ", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Allow the Working Group on Arbitrary Detention to visit the country and to be guaranteed access to all places of detention ", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Take appropriate measures to ensure that primary education is totally free of charges", - "values": [ - "4 - General action" - ] - }, - { - "text": "Ratify the Convention against Torture and Other Cruel, Inhuman or Degrading Treatment or Punishment and the International Convention for the Protection of All Persons from Enforced Disappearance", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Establish a de jure moratorium on capital punishment, with a view to abolishing the death penalty ", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Abide by its international obligations with regard to the procedures for arrest and detention, to guarantee human rights and fundamental freedoms and to exercise the task of governing with due respect for the rule of law", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Continue its efforts to promote and protect rights of migrants ", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Set up effective mechanisms for the recovery of indigenous lands ", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Continue and further efforts to prevent and eliminate trafficking in persons", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Abolish temporary marriage, child, early and forced marriage and prosecute "honour" crimes", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Adopt legislative measures to criminalize discrimination against women, particularly of minority groups, disabled women and older women", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Remove the exception of marital rape from the definition of rape in article 375 of the Penal Code, in line with the efforts already undertaken for the protection of women", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Make it a priority on the agenda of the new Government and, if necessary, the Parliament,\nefforts to seek a constructive solution to the refugee problem, respecting the rights of those\nconcerned, and in that context step up dialogue with the international community and the United\nNations humanitarian agencies ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Take necessary measures to combat child prostitution and ensure that those children have access to adequate services for their recovery and social reintegration ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Intensify efforts to ensure the appropriate functioning of the organization in charge of receiving gender-based violence complaints", - "values": [ - "4 - General action" - ] - }, - { - "text": "Review politically motivated trials of the past. ", - "values": [ - "3 - Considering action" - ] - }, - { - "text": "Continue its efforts to combat all forms of discrimination and religious fanaticism", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Incorporate the provisions of those instruments (ICCPR, ICESCR and CAT as well as to the Optional Protocol to CEDAW) into domestic law ", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Regularly and in due time deliver reports to the respective treaty bodies regarding the implementation of conventions and optional protocols to which Portugal is a party ", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Develop and implement policies to protect the rights of the child which fully take into account the implications of the increasing number of HIV-AIDS orphans ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Continue its efforts to alleviate violence against women, by establishing courts specialized in women's issues and family violence ", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Build on its achievement and redouble its efforts to combat police brutality through administrative and judicial sanctions against perpetrators, training and education for serving police officers, and consider including relevant human rights education materials in the cadets' training curriculum", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Continue to enhance laws and policies of access to education for the most disadvantaged learners, as done through the Alternative Learning System", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Ratify without reservations the following conventions and protocols: CEDAW, the ICESCR, the Convention on the Rights of the Child, the Convention on the Rights of Persons with Disabilities, the International Convention on the Protection of the Rights of All Migrant Workers and Members of Their Families, the International Convention for the Protection of All Persons from Enforced Disappearance, the Statute of the International Criminal Court, those of the ILO, the United Nations Declaration on Indigenous Peoples, and all those from the Inter-American Human Rights System", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Cooperate with the Special Rapporteur, in particular to allow him immediate and unrestricted access to the country, camps of ordinary prisoners and political prisoners, and implement the recommendations of the COI", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Ensure implementation of the Domestic Violence Act, especially on violence against women", - "values": [ - "4 - General action" - ] - }, - { - "text": "Forbid corporal punishment of children ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Accede to the International Convention for the Protection of All Persons from Enforced Disappearance", - "values": [ - "3 - Considering action" - ] - }, - { - "text": "Abstain from the adoption of legislation limiting freedom of association as protected by ICCPR, in particular legislation on "foreign agents"", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Continue its efforts to overcome the practice of female genital mutilation and other practices that affect the rights of women ", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Accede to the 1954 Convention relating to the Status of Stateless Persons and the 1961 Convention on the Reduction of Statelessness, in accordance with the commitments made during the Ministerial Conference held in Abidjan on 23 February 2015", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Increase funding to the health sector to the levels committed to in the Abuja Declaration and particularly increase the general health infrastructure, the patient to medical staff ratio and improve health-care access for women from poor and/or rural backgrounds", - "values": [ - "4 - General action" - ] - }, - { - "text": "Ensure prevention of discrimination against women", - "values": [ - "4 - General action" - ] - }, - { - "text": "Intensify its efforts, through legislation and practical measures, to promote and protect the rights of children against all forms of violence", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Continue working to harmonize its normative framework with obligations of international instruments recently adhered to", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Continue its efforts to strengthen the judiciary in the field of human rights and improve access to justice", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Consider incorporating human rights programmes in the Panamanian system of education", - "values": [ - "3 - Considering action" - ] - }, - { - "text": "Consider, in its spirit of commitment, the possibility of acceding to CMW ", - "values": [ - "3 - Considering action" - ] - }, - { - "text": "Take appropriate steps, with the help of the international community, to ensure for the Liberian people an adequate standard of living, and the rights to food, health and education", - "values": [ - "4 - General action" - ] - }, - { - "text": "Take all measures which may contribute to combat female genital mutilation ", - "values": [ - "4 - General action" - ] - }, - { - "text": "End the practice of publishing in the media and on the Internet materials inciting racial and ethnic intolerance", - "values": [ - "4 - General action" - ] - }, - { - "text": "Strengthen the office of Ombudsman and the police department's office of internal affairs in order to improve capacity to hear and investigate complaints.", - "values": [ - "4 - General action" - ] - }, - { - "text": "Reform the judiciary to ensure its independence and respect of international norms such as the respect of the right of the defence and the right to a fair trial. Review regulations on the appointment, dismissal and disciplinary procedures against judges as well as the length of their mandates", - "values": [ - "4 - General action" - ] - }, - { - "text": "Strengthen its commitment in favor of the abolition of the death penalty by ratifying the Second Optional Protocol to the International Covenant on Civil and Political Rights", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Recognize the competence of the Committee established under the Convention for the Protection of All Persons from Enforced Disappearance ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Bring its national legislation in accordance with all obligations under the Rome Statute, including the definition of crimes and general principles, and adopt provisions to enable cooperation with the International Criminal Court ", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Take active measures to eliminate gender-based violence against women, specifically refugee women, and take immediate appropriate measures to eliminate all forms of discrimination against women, in line with the Convention on the Elimination of All Forms of Discrimination against Women", - "values": [ - "4 - General action" - ] - }, - { - "text": "Continue working, nationally and internationally, in the implementation of the Central America security strategy", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Consider the adoption of a comprehensive law and an action plan to combat violence against women ", - "values": [ - "3 - Considering action" - ] - }, - { - "text": "Continue its efforts aiming at addressing the persisting wage gap between men and women ", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Bring to justice anyone who threatens, abducts or attacks human rights defenders, journalists, bloggers or others who work to promote democracy", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Provide effective sanctions for discrimination against people living with HIV, to ban mandatory HIV testing as a condition of employment and to ensure that persons living with HIV are not arbitrarily prevented from working or attending vocational schools.", - "values": [ - "4 - General action" - ] - }, - { - "text": "Step up efforts to ratify the Optional Protocol to the Convention against Torture", - "values": [ - "4 - General action" - ] - }, - { - "text": "Investigate and criminalize cases of xenophobic and stigmatizing discourses expressed by public officials and politicians", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Continue its efforts to ensure the realization of the right to education for all with a special emphasis on the promotion of women", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Adopt law on gender equality", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Step up efforts to ensure the protection of foreign nationals from any forms of attacks and to hold offenders accountable", - "values": [ - "4 - General action" - ] - }, - { - "text": "Adopt a law on violence against women and girls in all settings as well as a strategy for its implementation", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Continuously improve its endeavours to eradicate poverty in the country", - "values": [ - "4 - General action" - ] - }, - { - "text": "Share its good practices in terms of affording decent housing for vulnerable groups, so that others could benefit from such a positive experience ", - "values": [ - "1 - Minimal action" - ] - }, - { - "text": "Implement programmes focused on employability, entrepreneurship and microfinance to make sure that young people find it easier to join the labour market", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Redouble its efforts regarding trafficking, with a special focus on trafficking in children", - "values": [ - "4 - General action" - ] - }, - { - "text": "Finalize, as soon as possible, the draft legislation for the establishment of a national human rights institution in conformity with the Paris Principles ", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Prohibit incitement to racial hatred, including take effective measures to prevent hate speech against ethnic and religious minorities during election campaigns and in the media", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Abolish the death penalty and commute without delay all death sentences to terms of imprisonment", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Take further action to enforce and implement the laws that have been passed and take measures to ensure that women are informed of their rights.", - "values": [ - "4 - General action" - ] - }, - { - "text": "Effectively investigate the cases concerning attacks against journalists, opposition members and human rights defenders ", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Take the necessary measures to create independent courts for minors", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Establish as soon as possible mechanisms to ensure transparent and responsible governance of the extractive industries sector which fulfil the membership requirements in the Extractive Industries Transparency Initiative ", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Ensure that foreign students are not being arbitrarily deprived of the right to education in universities on their own free choice and interest ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Amend the Penal Code to provide that crimes motivated by discrimination on any grounds, including disability, gender identity and expression and sexual orientation, are included in the Code and therefore can be investigated and prosecuted as hate crimes", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Eliminate gender stereotypes in the national idiosyncrasy ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Take necessary measures to adopt or improve subsidiary laws in the alignment of constitutional and legal amendments related to human rights' improvement", - "values": [ - "4 - General action" - ] - }, - { - "text": "Comply with its legal obligations under international law alongside its obligations deriving from international human rights treaties to which Israel is a party", - "values": [ - "4 - General action" - ] - }, - { - "text": "Continue its efforts in protecting and promoting the right to safe drinking water and sanitation nationally and globally ", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Continue its efforts to promote and protect the rights of women, children and persons with disabilities, and pay particular attention to the population in rural areas ", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Take measures to give adequate enforcement to Law No. 20.507, such as developing a standard operating procedure to identify victims of trafficking ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Promote the adoption of measures to combat discrimination against women and promote gender equality", - "values": [ - "4 - General action" - ] - }, - { - "text": "Ratify International Convention on the Protection of the Rights of All Migrant Workers and Members of Their Families", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Proceed with the ratification of instruments that have not yet been ratified and accelerate the process of withdrawing reservations in order to ensure the fullest enjoyment of human rights for the population", - "values": [ - "4 - General action" - ] - }, - { - "text": "Take the necessary measures towards a primary education fully free of charge", - "values": [ - "4 - General action" - ] - }, - { - "text": "Continue its steps to promote human rights through effective measures to realize the rights set out in the International Convention for the Protection of All Persons from Enforced Disappearance", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Put an end to the practice of secret detention", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Ratify CAT, ICRMW, ICERD and the Optional Protocol to ICCPR", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Extend a standing invitation to the special procedures, as accepted during the first cycle of the universal periodic review of Liberia, as previously recommended", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Harmonize all laws and regulations in order to ensure equal treatment of persons with disabilities throughout the country, and to eliminate differential treatment of persons with disabilities based on a cause of disability", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Take concrete measures to guarantee access to safe drinking water and sanitation for all, particularly for those in rural areas", - "values": [ - "4 - General action" - ] - }, - { - "text": "Compile a new voter registration list to ensure full participation of the electorate in future elections.", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Continue its activities to eliminate racism, xenophobia and other acts of intolerance \n\n", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Criminalize feminicide in accordance with international standards and comply in general with CEDAW general recommendation No. 19", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "In the future, ensure the timely provision of replies to thematic questionnaires received from special procedures ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Adopt a national action plan against racism in accordance with the Durban Declaration and Programme for Action, and ensure that racism and hate speech, including in the context of elections and politics, are appropriately and explicitly criminalized and penalized", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Adopt all the measures necessary to combat discrimination in all its forms, including racism and xenophobia ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Strengthen the witness protection programme", - "values": [ - "4 - General action" - ] - }, - { - "text": "Respect the right of any individual to practice his or her religion of belief without any restriction ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Accede to the 1951 Refugee Convention and its 1967 Protocol and adopt measures to ensure recognition of refugees and regularization of their stay, including access to basic needs and protection against exploitation", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Apply its anti-corruption legislation in a rigorous manner and ensure the effectiveness, independence and impartiality of the judicial system ", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Fully abolish death penalty in the law and ratify the Second Optional Protocol to the International Covenant on Civil and Political Rights, aiming at the abolition of the death penalty", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Continue commendable efforts to establish the principle of social harmony among the members of the community", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Limit the use of detention of asylum seekers, refugees and stateless persons", - "values": [ - "4 - General action" - ] - }, - { - "text": "Continue to intensify its efforts to consolidate the progress achieved in the area of health", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Continue to implement the National Social Welfare Policy for Persons with Disabilities", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Redouble efforts in the area of poverty eradication, including by allocating adequate human and financial resources and providing support and material assistance to the disadvantaged groups in the country", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Recommended the repeal of laws discriminating against non-Muslims, if any.", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Adopt the Marriage, Divorce and Family Relations Bill", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Continue its commitment to the cause of promoting and protecting human rights and fundamental freedoms, and to advance the implementation of policies and measures that reflect this commitment ", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Continue the implementation of the national programme to combat the consequences of slavery, and increase the awareness raising campaigns on its prohibition", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Take further steps toward the abolition of the death penalty in law", - "values": [ - "4 - General action" - ] - }, - { - "text": "Ensure birth registration of all children born on South African territory, regardless of the immigration status or nationality of the parents", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Continue to consider entering into ICESCR and ICCPR ", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Strengthen measures to counter discriminatory attitudes in society, including through public education and equality initiatives and legislative measures to prevent discrimination on the basis of sexual orientation and gender identity.", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Take practical steps to implement fully the Convention on the Rights of Persons with Disabilities at both the federal and state levels to ensure that persons with disabilities enjoy equal rights and opportunities in Papua New Guinea, including by creating a database to guide policy planning and provision of services ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Redouble its efforts to guarantee the autonomy, independence and impartiality of the judiciary", - "values": [ - "4 - General action" - ] - }, - { - "text": "Strengthen the publicity, implementation and monitoring of the National Human Rights Programme and step-up dialogue with civil society in this regard", - "values": [ - "4 - General action" - ] - }, - { - "text": "Ensure the enjoyment by people with disabilities of their rights while in detention premises", - "values": [ - "4 - General action" - ] - }, - { - "text": "Continue the actions taken to combat human trafficking, particularly for forced prostitution, begging and underpaid work", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Increase the ODA to 0.7 per cent of the GNI, as agreed internationally, to strengthen the developing countries against poverty and to achieve development", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Continue to work on its national plans for social inclusion and poverty alleviation.", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Take further steps to consider adhering to the Convention on the Rights of Persons with Disabilities", - "values": [ - "4 - General action" - ] - }, - { - "text": "Amend the Criminal Code so that it explicitly provides sanctions against organizations propagating racist ideas as well as hate speech", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Prosecute the instigators of hate crime and provide remedies for victims of hate speech", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Continue reducing disparities between men and women in order to reach full parity, particularly with regard to access of women to courts and property ownership as well as empowering their role in (economic) production ", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Strengthen the measures to combat violence against women as well as support victims and survivors of such violence", - "values": [ - "4 - General action" - ] - }, - { - "text": "Accede to the Optional Protocol to the Convention of the Rights of the Child on the sale of children, child prostitution and child pornography", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Move to implement the recommendations towards national reconciliation proposed by the Truth, Justice, and Reconciliation Commission", - "values": [ - "4 - General action" - ] - }, - { - "text": "Reveal the fate and location of those persons who forcefully disappeared during the period of the Gaddafi regime, among whom the Lebanese Leader, Imam Moussa Al-Sadr and his two companions, who disappeared after their visit to Libya on 31 August 1978, following their meeting at that time with the Libyan President Muammar Gaddafi", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Issue an open invitation to the United Nations special mechanisms", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Consider developing Human Rights Indicators as an instrument that allows for a more precise and coherent evaluation of national human rights policies", - "values": [ - "3 - Considering action" - ] - }, - { - "text": "Adopt complete legislation against discrimination dealing with all parts of life explicitly and prohibiting discrimination on all grounds, notably based on race, sexual orientation and gender identity", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Release all political prisoners and bring its national legislation into compliance with article 19 of the International Covenant on Civil and Political Rights which guarantees freedom of expression ", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Consider ratifying the International Covenant on Economic, Social and Cultural Rights, the International Covenant on Civil and Political Rights, and the Second Optional Protocol thereto", - "values": [ - "3 - Considering action" - ] - }, - { - "text": "Continue efforts to ensure the safety, security and dignity of foreign migrant workers, including women domestic workers, through requisite institutional and legislative measures", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Abolish the death penalty, despite obstacles", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Accede to the Convention on the Reduction of Statelessness", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Reform existing laws that can be used to discriminate against lesbian, gay, bisexual, and transgender persons, including the provision of "unnatural crime" laws prohibiting "carnal intercourse against the order of nature"", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Ensure effective protection from violence and sexual exploitation for women, particularly women who are migrants or from minority groups", - "values": [ - "4 - General action" - ] - }, - { - "text": "Continue strengthening the positive efforts already under way to promote gender equality", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Ratify the ICCPR, the ICESCR, the CAT and the CERD ", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Respect and protect freedom of expression and end all practices that threaten the right to freedom of expression, including threats against journalists and media outlets ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Bhutan became an Observer to the International Labour Organization (ILO) in June this year with a view to becoming a member in the near future.", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Ensure that, in practice, girls have equal access to education.", - "values": [ - "4 - General action" - ] - }, - { - "text": "Consider acceding to the Optional Protocol to the Convention on the Rights of the Child on the involvement of children in armed conflict", - "values": [ - "3 - Considering action" - ] - }, - { - "text": "Acknowledge the existence of political prison camps, and take immediate steps to close them ", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Further step up the efforts and allocate sufficient funds to ensure the effective implementation of the National Action Plan to prevent violence against women as well as broaden the action plan to cover domestic violence ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Reform judicial system, so that the Moldavan courts and prosecution offices fulfill expectations pertaining to independence from political authorities, incorruptibility, length of procedures, and decent wages for law enforcement personnel", - "values": [ - "4 - General action" - ] - }, - { - "text": "Safeguard the democratic nature of Lebanon, as prescribed by Article 25 of the International Covenant on Civil and Political Rights, by carrying out local elections as planned, without delay, as well as by urgently facilitating the appointment of a president and the holding of a parliamentary election", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Include in its debates, within the framework of the legislative review process, indigenous participation as a democratizing principle for civic participation at all levels, municipal, legislative and executive ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Ratify the Convention against Torture and Other Cruel, Inhuman or Degrading Treatment or Punishment, and the International Convention for the Protection of All Persons from Enforced Disappearance, and ensure their implementation in the country", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Provide human rights training to judges, police officers, prison guards and all law enforcement officers ", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Act swiftly to address issues of discrimination against girls in education, especially sexual abuse and harassment of girls in schools, as well as difficulties faced by children in rural areas in accessing education", - "values": [ - "4 - General action" - ] - }, - { - "text": "Promote gender equality in law and in practice, particularly through education and public awareness", - "values": [ - "4 - General action" - ] - }, - { - "text": "Reconsider the lèse-majesté and Computer Crime laws in the framework of a public debate open to everyone and transparent, in order to bring them into line with the provisions of the International Covenant on Civil and Political Rights", - "values": [ - "3 - Considering action" - ] - }, - { - "text": "Take all measures to eradicate child labour, particularly in the informal sector and rural areas", - "values": [ - "4 - General action" - ] - }, - { - "text": "Intensify ongoing efforts to adjust domestic legislation to international standards", - "values": [ - "4 - General action" - ] - }, - { - "text": "Step up efforts to consider ratify ILO Convention 189", - "values": [ - "4 - General action" - ] - }, - { - "text": "Continue the positive efforts to improve access to health for all its citizens, including through cooperation and strengthened international financial assistance ", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Take the necessary measures to guarantee full conformity of the national human rights institution with the Paris Principles", - "values": [ - "4 - General action" - ] - }, - { - "text": "Fulfil the conditions set forth in paragraph 17 of the national report, so as to be able to consider ratification of the International Convention for the Protection of All Persons from Enforced Disappearance, the Optional Protocol to the Convention on the Elimination of All Forms of Discrimination against Women and the Optional Protocol to the Convention against Torture", - "values": [ - "3 - Considering action" - ] - }, - { - "text": "Take steps to improve prison conditions", - "values": [ - "4 - General action" - ] - }, - { - "text": "Ensure that the Plan of Action signed in 2011 by the Government and the United Nations and the road map to put an end to the phenomenon of child soldiers are fully implemented", - "values": [ - "4 - General action" - ] - }, - { - "text": "Establish a Police Service Commission responsible for appointments, promotions and transfers ", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Amend the concerned legislation with a view to abolishing the capital punishment entirely, in line with General Assembly resolutions 62-149 and 63-168 as well as the second Optional Protocol to ICCPR, and transfer the existing death sentences to imprisonment terms ", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Strongly condemn hate speech, adequately investigate racist hate speech and racially motivated violence and prosecute the perpetrators", - "values": [ - "4 - General action" - ] - }, - { - "text": "Take all necessary measures to prevent torture and ensure that the absolute prohibition of torture is observed as recommended.", - "values": [ - "4 - General action" - ] - }, - { - "text": "The delegation welcomed positive comments regarding Kazakhstan's achievements in gender policy and reaffirmed Kazakhstan's commitment to implement its obligations under the Convention on the Elimination of All Forms of Discrimination against Women and other relevant international polices.", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Actively engage in efforts aiming at establishing an effective ban on payments of ransoms by foreign merchant navies, which undermine the human rights of all potential hostages as well as Somalis", - "values": [ - "4 - General action" - ] - }, - { - "text": "Ensure the effective protection of migrants, particularly women migrant workers, against discrimination", - "values": [ - "4 - General action" - ] - }, - { - "text": "Continue its efforts to raise education standards and improve access to education", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Promote the right to education, inter alia, through combating the challenges of access to schools", - "values": [ - "4 - General action" - ] - }, - { - "text": "Take immediate steps to end violence and discrimination against ethnic minorities ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Review security laws to ensure their conformity with the international human rights standards and in particular with regard to juvenile (alleged) offenders ", - "values": [ - "3 - Considering action" - ] - }, - { - "text": "Take steps to ensure the prompt enforcement of the National Action Plan for Women of Afghanistan, the Elimination of Violence Against Women Law and its international CEDAW obligations and reject any further attempts to water down the intentions of those measures ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Review the new legislation on child labour and consider developing a national plan to reduce child labour", - "values": [ - "3 - Considering action" - ] - }, - { - "text": "Reflect the results of the evaluation exercise on the implementation of recommendations of the treaty bodies conducted jointly by the Government and OHCHR in the work of the Guatemalan authorities in the future in order to achieve the effective realization of human rights in the country.", - "values": [ - "4 - General action" - ] - }, - { - "text": "Adopt legal measures to eliminate all forms of discrimination against women and girls, including legislation concerning the right of ownership, sharing and inheritance of land for women", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Fully implement all laws, policies and programmes which have been adopted to strengthen gender equality and the rights of women ", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Continue strengthening the application of the discrimination reporting system, which protects the rights of people because of their sexual orientation and gender identity", - "values": [ - "4 - General action" - ] - }, - { - "text": "Improve access to age-appropriate HIV, sexual and reproductive health services especially among adolescents", - "values": [ - "4 - General action" - ] - }, - { - "text": "Pay special attention to acts of violence against homosexuals ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Increase prosecutions and strengthen sentencing of human trafficking offenders, and fully implement the Palermo Protocol to prohibit and penalise all forms of trafficking", - "values": [ - "4 - General action" - ] - }, - { - "text": "Urgently adopt all the necessary measures to foster inclusive dialogue and provide minorities with adequate protection", - "values": [ - "4 - General action" - ] - }, - { - "text": "Continue the consultation with civil society in a follow-up to its universal periodic review ", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Adopt a national action plan against torture and other cruel, inhuman or degrading treatment or punishment, ensure that all the complaints formulated in this field are the object of an impartial and effective investigation, and sign and ratify OP-CAT ", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Positively consider signing and ratifying the principal international and inter-American human rights instruments, as well as reviewing the reservations and declarations that may affect the object and purpose of such instruments", - "values": [ - "3 - Considering action" - ] - }, - { - "text": "Increase efforts to investigate and prosecute those responsible for threats or violence against human rights defenders, trade unionists, community leaders and journalists ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Move towards ratifying the Optional Protocol to the Convention against Torture and Other Cruel, Inhuman or Degrading Treatment or Punishment", - "values": [ - "4 - General action" - ] - }, - { - "text": "Study the possibility of ratifying the International Convention on the Protection of the Rights of All Migrant Workers and Members of Their Families ", - "values": [ - "3 - Considering action" - ] - }, - { - "text": "Ensure without delay the full incorporation of CEDAW provisions into domestic law, and take further steps to prevent all forms of gender-based violence ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Abolish all discriminatory customary laws and practices that violate the rights of women, in accordance with international obligations under the Convention on the Elimination of All Forms of Discrimination against Women", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Take all necessary measures to establish a formal moratorium on executions, with a view to abolishing the death penalty ", - "values": [ - "4 - General action" - ] - }, - { - "text": "The immediate and unconditional release of all human rights defenders, democracy activists and other political prisoners ", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Accelerate reforms with the aim to guarantee good governance and more vigorously address the issue of corruption", - "values": [ - "4 - General action" - ] - }, - { - "text": "Strengthen its efforts in promoting the right to health, including access to a comprehensive health care ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Fully implement the United Nations Declaration on the Rights of Indigenous Peoples, and remove discriminatory legal barriers", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Ratify the Second Optional Protocol to the International Covenant on Civil and Political Rights, aiming at the abolition of the death penalty with the ultimate aim of abolishing the death penalty in all circumstances", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Examine the possibility of ratifying the core human rights treaties to which the country is not yet a party and raising its reservations on those which it has ratified ", - "values": [ - "3 - Considering action" - ] - }, - { - "text": "Set up structural measures to address systematically violence and violation of fundamental rights, of which women and human rights defenders are victims", - "values": [ - "4 - General action" - ] - }, - { - "text": "Continue efforts started in 2007 to promote women's rights, in particular the prohibition of all forms of female genital mutilation ", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Take effective measures to investigate and prosecute all incidents and acts of violence targeting individuals based on sexual orientation", - "values": [ - "4 - General action" - ] - }, - { - "text": "Provide adequate resources to enable the Counselling Centre to discharge its mandate more effectively", - "values": [ - "4 - General action" - ] - }, - { - "text": "Resume the measures of social protection and care for the most disadvantaged affected by the international economic and financial crisis", - "values": [ - "4 - General action" - ] - }, - { - "text": "Continue enhancing investment in education to reduce the school dropout rates", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Address the violent conflicts between nomadic pastoralists and sedentary farmers as a matter of urgency, bring to justice those responsible for the killings and human rights violations and compensate victims", - "values": [ - "4 - General action" - ] - }, - { - "text": "Raise the minimum age of criminal responsibility and establish detention facilities exclusive for minors, separate from those for adults", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Ensure that victims of human trafficking are not detained but instead granted proper protection, as well as expand the reflection period while making it entirely unconditional ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Establish mechanisms to increase the population's access to government information ", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Allocate sufficient resources for the effective implementation of the National Plan of Action for Children ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Continue efforts to provide humanitarian assistance to developing countries", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Ratify other human rights conventions to which Indiais not yet a State party", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Take stronger measures to combat discrimination in both the public and private sectors while promoting greater women's participation at the highest levels of decision-making ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Continue its efforts in combating trafficking in persons and protect the victims thereof within the framework of implementing its own national legislation and within the country's international commitments", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Ensure that the rights of all its people to freedom of expression, religion, and peaceful assembly are respected ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Provide for and ensure the personal security of human rights defenders, witnesses, court officials, prosecutors and others who are subject to threats and other abuses connected with their efforts to support human rights and democracy, to combat impunity", - "values": [ - "4 - General action" - ] - }, - { - "text": "Improve the conditions of the access of vulnerable people to healthcare ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Take further steps to address ethnic profiling in practice ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Strengthen measures to reduce gender inequality", - "values": [ - "4 - General action" - ] - }, - { - "text": "Expedite the process for ratifying the Convention on the Rights of Persons with Disabilities in line with Timor-Leste's National Action Plan for Persons with Disabilities 2014-2018", - "values": [ - "4 - General action" - ] - }, - { - "text": "Adopt, as a matter of priority, all legal and administrative measures to prohibit and punish corporal punishment of children in all settings, including at home ", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Intensify efforts for the security of human rights defenders and reinforce cooperation with all stakeholders, in particular, the states and military police ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Consider abolishing the death penalty or formalize the current de facto moratorium", - "values": [ - "3 - Considering action" - ] - }, - { - "text": "Enact a crime of torture as defined in article 1 of the Convention against Torture.", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Take immediate measures to abolish the death penalty for persons that were under-age at the time of the crime, as well as for those convicted individuals having significantly impaired mental ability or mental illness", - "values": [ - "4 - General action" - ] - }, - { - "text": "Call on development partners to explore ways and means to enhance its capacity in the implementation of its human rights obligations, as well as to promote human rights at the grass-roots level through, inter alia, the elaboration of programmes for human rights education.", - "values": [ - "1 - Minimal action" - ] - }, - { - "text": "Share its experiences, expertise, and good practices in the promotion and protection of the right to health, including initiatives in place with regard to public health and health tourism", - "values": [ - "1 - Minimal action" - ] - }, - { - "text": "Ratify the conventions on refugees and stateless persons", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Create a legislative framework and implement public policies and social awareness campaigns to eliminate violence and discrimination based on sexual orientations and gender identity", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Take the necessary measures to establish completely free primary education", - "values": [ - "4 - General action" - ] - }, - { - "text": "Ratify the International Convention for the Protection of all Persons against Enforced Disappearances", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Abolish the death penalty or establish a de jure moratorium on the application of the death penalty", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Facilitate the establishment of an appropriate self-regulatory media system", - "values": [ - "4 - General action" - ] - }, - { - "text": "Adopt legal measures and other measures to supervise the implementation of the CRC in the occupied Arab territories and, in conformity with this convention, apply a definition of the child as a person under the age of 18 in the Palestinian territories as well", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Continue its special efforts to empower women in various areas, in particular in the labour market ", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Cease the practice of detaining trafficking victims, and allow them to travel, work and reside outside government facilities", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Continue its efforts and initiatives to spread education.", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Consider the ratification of and accession to the outstanding major international human rights instruments ", - "values": [ - "3 - Considering action" - ] - }, - { - "text": "Take the necessary measures to ensure that the Independent National Human Rights Commission fully complies with the Paris Principles", - "values": [ - "4 - General action" - ] - }, - { - "text": "Ratify ICERD, CAT and its Optional Protocol, CPED, and the Rome Statute of the International Criminal Court (ICC)", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Consider revising its national legislation in order to prevent situations of statelessness ", - "values": [ - "3 - Considering action" - ] - }, - { - "text": "Eliminate discrimination between women and men in inheritance rights ", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Take necessary measures for establishing a specialized juvenile justice system and continue efforts for the reintegration of former child offenders in the society, in compliance with the Convention on the Rights of the Child", - "values": [ - "4 - General action" - ] - }, - { - "text": "Amend its Citizenship Act to avoid discrimination on the basis of sex and mitigates discrimination of women in employment and reduce existing wage gaps ", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Complete the process of aligning its national legislation with the provisions of the Rome Statute, and step up the ratification process of OP-CAT and establish a national preventive mechanism against torture ", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Ensure proper investigation, prosecution and adequate sanctions in all cases of human trafficking, including through the training of relevant personnel", - "values": [ - "4 - General action" - ] - }, - { - "text": "Combat trafficking and sexual exploitation of women and children, and exploitation of children in the workplace.", - "values": [ - "4 - General action" - ] - }, - { - "text": "Consolidate the progress made within the framework of literacy programmes", - "values": [ - "4 - General action" - ] - }, - { - "text": "Further strengthen the resources, powers and independence of the new anti-corruption bodies that will step up Ukraine\u2019s fights against corruption", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Continue to work to improve national mechanisms for the promotion of human rights", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "The Albanian Government is committed to implementing the National Strategy and Action Plan for the Decade of Roma Inclusion in order to improve the living standards of Roma community. An effective mechanism is set up to monitor and evaluate the progress at the national level of the National Strategy on Roma and the National Action Plan "Decade of Roma Inclusion" as well as the cooperation among institutions at the central and local level", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Continue to strive for a careful balance between measures taken against harmful traditional practices and respect for traditional cultural and spiritual beliefs", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Review and repeal all legal provisions which discriminate against women, especially provisions in the Family Code, Penal Code and tax law, with a view to achieving de jure equality", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Take measures to eliminate any discrimination and segregation in the education system against Roma children", - "values": [ - "4 - General action" - ] - }, - { - "text": "Review the reservation to article 32 of the Convention on the Rights of the Child.", - "values": [ - "3 - Considering action" - ] - }, - { - "text": "Start a dialogue with the NGOs of the Turkish communities in Rhodes and Kos for the solution of their problems in the field of religious freedom and resume Turkish-language education, which has been denied since 1972 ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Adopt all necessary measures to ensure freedom of expression by ensuring equal treatment of the media and by avoiding any interference with freedom of the press ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Adopt measures to ensure full compliance with laws criminalizing bride kidnapping, forced marriage and polygamy, as well as the training of police and judicial staff in strengthening those mechanisms aimed at respecting the rights and protection of victims of domestic violence ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Fully implement the advisory opinion of the ICJ concerning the separation wall", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Improve conditions in hospitals in order to ensure the provision of appropriate health-care services ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Take all necessary actions to protect homosexuals from harassment, discrimination and violence.", - "values": [ - "4 - General action" - ] - }, - { - "text": "Investigate and deal with complaints in relation to slavery and similar treatments, and protect children from these practices", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Ensure, with effective measures, the demobilization of all child soldiers and secure their rehabilitation and social integration ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Put in place safeguards to ensure that freedom of assembly is not adversely affected in the implementation of the Public Processions and Meetings Bill ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Continue to strengthen the institutional and legal framework to combat discrimination", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Enhance the rights of women regarding civic participation ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Amend section 114A of the Evidence Act with the objective of increasing freedom of expression", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Extend an invitation to the Special Rapporteur on the promotion and protection of the right to freedom of opinion and expression ", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Strengthen the cooperation with human rights mechanisms and extend a standing invitation to the special procedures", - "values": [ - "4 - General action" - ] - }, - { - "text": "Follow the recommendations made by OHCHR regarding the human rights situation in the conflict-affected areas of eastern Ukraine, particularly with respect to due process, the treatment of prisoners and detainees, and gender-based and sexual violence", - "values": [ - "4 - General action" - ] - }, - { - "text": "Accede to/ratify OP-CAT ", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Fully respect all international obligations by accepting the legally binding United Nations documents and by its membership in the United Nations, especially articles 1, 3, 6 and 15 of the International Covenant on Civil and Political Rights, and by respecting the decisions of the other United Nations bodies and other organizations at the national level, especially, the decisions of the Human Rights Court in Strasbourg, in regard to minority rights", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Ratify the Rome Statute of the International Criminal Court and align its national legislation ", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Continue with the positive approach in the field of education, especially the construction of more schools and educational centres, which contributed to an increase in student enrolment rates in the various stages of education", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Adopt comprehensive measures on the protection of women against any form of public or domestic violence and the implementation of a national policy to protect women at risk and to bring perpetrators to justice, as well as adopt measures for the protection of human rights defenders and journalists", - "values": [ - "4 - General action" - ] - }, - { - "text": "Intensify its on-going efforts to close the gap in opportunities and life outcomes between Indigenous and non-Indigenous peoples, especially in the areas of housing, land title, health care, education and employment ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Cooperate with United Nations human rights mechanisms, in particular COIs of the Human Rights Council", - "values": [ - "4 - General action" - ] - }, - { - "text": "Support all stakeholders, including Community Education Committees, religious groups, NGOs in their effort to provide education services to all, with a particular emphasis on access of girls to basic education", - "values": [ - "4 - General action" - ] - }, - { - "text": "Strengthen measures to combat poverty, in particular poverty of women and children", - "values": [ - "4 - General action" - ] - }, - { - "text": "Reinforce measures aimed at abolishing female genital mutilation", - "values": [ - "4 - General action" - ] - }, - { - "text": "Strive to maintain a constructive working relationship with the Special Rapporteur on the situation of human rights in Cambodia in respect of his independence and that of OHCHR", - "values": [ - "4 - General action" - ] - }, - { - "text": "Continue maintaining good cooperation with the Office of the United Nations High Commissioner for Refugees (UNHCR) in favour of refugees with disabilities", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Further improve access by persons with disabilities to education through the implementation of the National Strategy for the Disabled", - "values": [ - "4 - General action" - ] - }, - { - "text": "Continue with efforts to harmonize reforms and consolidate mechanisms and institutions ", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Increase efforts at eliminating all forms of discrimination against women, including adopting effective measures to implement existing legislation on this subject", - "values": [ - "4 - General action" - ] - }, - { - "text": "Raise the awareness of its law enforcement officials so that individuals may exercise their right to freedom of religion or belief free from harassment or threat of human rights violations", - "values": [ - "4 - General action" - ] - }, - { - "text": "Protect free and independent media, namely through the revocation of article 305 of the Penal Code and article 13 of the Press Law", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Continue the promotion of human rights in conformity with the universally recognized principles and reject attempts to impose foreign values that are outside the United Nations legally approved framework.", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Incorporate into its legislation measures of prompt and effective cooperation with the International Criminal Court, as well as, obligations to investigate and prosecute in its territory crimes established in the Rome Statute ", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Revise the Children\u2019s Act in order to set the minimum age for marriage to 18 years for both boys and girls", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Establish a moratorium on executions with a view to abolish capital punishment ", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "The Government also reiterates its unwavering commitment to provide the necessary space and freedom for the independent institutions in the Maldives to function freely and responsibly", - "values": [ - "4 - General action" - ] - }, - { - "text": "Take the necessary measures to fully incorporate into Australian legislation its international obligations in the field of human rights ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Give individuals, groups and organs of society the legitimacy and recognition to promote human rights and express their opinions or dissent publicly ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Implement the recommendations of the reform committee established by the Bureau of Gender Affairs, including the inclusion of a gender sensitive and victim-centered approach in the legislation", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Establish a moratorium on executions with a view to abolishing the death penalty, and commute sentences to the death penalty to prison terms", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Ratify the Optional Protocol to CAT.", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Ensure that senior State officials refrain from public statements degrading to women and inconsistent with the Turkish constitution and Islamic values", - "values": [ - "4 - General action" - ] - }, - { - "text": "Improve treatment of prisoners by encouraging provinces to implement the national mechanism to prevent torture, increasing training for police and prison officials and addressing overcrowding", - "values": [ - "4 - General action" - ] - }, - { - "text": "Withdraw its reservation to article 16 of CEDAW and introduce legislative reforms to give women equal rights in marriage, divorce, property relations, child custody and inheritance", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Establish a moratorium on the death penalty, in view of its definitive abolition", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Remove all ethnic profiling in the working methods of the police and other officials responsible for law enforcement", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Modify the low minimum age for marriage for girls and boys ", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Continue to further combat violence against women and adopt necessary legislation to prohibit and criminalize all forms of violence against women and domestic violence", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Put in place a comprehensive strategy and take all necessary measures to modify or eliminate cultural practices and stereotypes that discriminate against women.", - "values": [ - "4 - General action" - ] - }, - { - "text": "Continue deepening measures aimed at achieving the eradication of practices such as female genital mutilation and cutting, as well as forced marriages", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Improve the health-care infrastructure, particularly by paying special attention to enhancing access to health care for women in poor and rural areas", - "values": [ - "4 - General action" - ] - }, - { - "text": "Strengthen efforts in order to prevent attacks on human rights defenders", - "values": [ - "3 - Considering action" - ] - }, - { - "text": "Consider the possibility of ratifying the International Convention on the Protection of the Rights of All Migrant Workers and Members of Their Families ", - "values": [ - "3 - Considering action" - ] - }, - { - "text": "Complete the process of establishment of a national human rights institution", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Expand mechanisms aimed at ensuring consultation with people belonging to national minorities and that the representatives of these minorities participate effectively in making decisions that affect them", - "values": [ - "4 - General action" - ] - }, - { - "text": "Steps up its efforts to prevent harmful practices carried out on children", - "values": [ - "4 - General action" - ] - }, - { - "text": "Continue its efforts aimed at improving access to health services and education", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Continue with ongoing efforts to ratify the Convention on the Rights of Persons with Disabilities and the International Convention for the Protection of All Persons from Enforced Disappearance, in line with recommendations it accepted during its first review in 2011 ", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Repeal the Sedition Act", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Consider the creation of a public body tasked with monitoring and creation of preventative measures to counter violence and sexual abuse against children", - "values": [ - "3 - Considering action" - ] - }, - { - "text": "Continue its efforts to promote and protect the right to education and make additional efforts to make access to education easier for all ", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Ratify the Optional Protocol to the Convention on the Elimination of All Forms of Discrimination against Women, adopt national legislation prohibiting female genital mutilation and implement standards on women's rights in order to ensure that they can enjoy autonomy", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Closely monitor the situation of other disadvantaged groups such as women migrant workers and women prisoners ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Continue fighting against gender-related violence, including FGM, by enhancing measures, such as ad hoc awareness-raising campaigns and legal aid programme to increase victims' access to justice", - "values": [ - "4 - General action" - ] - }, - { - "text": "Make the most of the programmes of assistance available, especially at the level of the United Nations system, for the achievement of the national priorities defined in terms of human rights ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Consider the possibility of signing and ratifying the International Convention on the Protection of the Rights of All Migrant Workers and Members of their Families (ICRMW).", - "values": [ - "3 - Considering action" - ] - }, - { - "text": "Show understanding and flexibility for refugees and asylum-seekers who are often in an irregular situation and face possible expulsion ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Continue to strengthen and promote gender equality and to safeguard the rights of women ", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Continue commitment to human rights through the ratification of the International Convention on the Protection of the Rights of All Migrant Workers and Members of Their Families in accordance with recommendation 1737 of 17 March 2006, adopted by the Parliamentary Assembly of the Council Europe, of which Denmark is a member ", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Enact legislation to ensure women and girls' rights are protected, including legislation banning early and forced marriages", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Raise the capacity of the Vital Events and National Identity Card Registration Agency in order to ensure the right of all persons to birth and death registration ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Take measures to improve the situation of children who are still living in institutions", - "values": [ - "4 - General action" - ] - }, - { - "text": "Take steps to recognize the Roma people as its own citizens and to protect them against racial discrimination", - "values": [ - "4 - General action" - ] - }, - { - "text": "Maintain and intensify efforts and ensure the full implementation of legislation regarding violence against women and prosecute and sanction those responsible for such acts in line with the recommendation made by the Committee on the Elimination of Discrimination against Women", - "values": [ - "4 - General action" - ] - }, - { - "text": "Sign and ratify the Convention against Torture and Other Cruel, Inhuman or Degrading Treatment or Punishment and the Optional Protocol thereto, as well as the Convention for the Protection of all Persons against Enforced Disappearance.", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Ratify the Optional Protocol to the Convention against Torture and the Optional Protocol to the Convention on the Rights of Persons with Disabilities ", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Follow the principle of applying limits on freedoms to those organizations and entities that are involved in spread of hate speech, make xenophobic or defamatory statements and incite discrimination and violence ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Continue its efforts to promote the rights of women and gender equality.", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Consider enacting a specific law for HIV-AIDS related cases", - "values": [ - "3 - Considering action" - ] - }, - { - "text": "Take measures to improve the participation of all stakeholders, with a focus on women and indigenous people in decision making processes that could have an impact on future development of rural communities", - "values": [ - "4 - General action" - ] - }, - { - "text": "Guarantee in law the right to representation for defendants and carry out the necessary actions to implement it in practice", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Criminalise the practice of female genital mutilation as an offence in its Penal Code ", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Continue to improve conditions of detention", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Further promote measures for the advancement of women and address traditional stereotype attitudes which limit their self-development", - "values": [ - "4 - General action" - ] - }, - { - "text": "Ensure that the public broadcasting system increases the time allocated to regional language programmes and that sufficient financial and human resources are made available for this purpose ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Develop the practical steps to enhance freedom of speech and freedom of the press.", - "values": [ - "4 - General action" - ] - }, - { - "text": "Strengthen the effective implementation of measures undertaken to combat trafficking, and protect victims of trafficking ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Continue applying the strategies and plans for socio-economic development of the country", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Adopt a comprehensive policy to protect the rights of persons with disabilities, and to build on measures already adopted such as the establishment of the General Directorate for persons with disabilities", - "values": [ - "4 - General action" - ] - }, - { - "text": "Consider the inclusion of human rights in school curricula", - "values": [ - "3 - Considering action" - ] - }, - { - "text": "Intensify the efforts to not allow, in practice, the use as evidence confessions obtained under the use of torture or by other illegal methods", - "values": [ - "4 - General action" - ] - }, - { - "text": "Consider reinstating, without qualification, the Racial Discrimination Act into the arrangements under the Northern Territory Emergency Response and any subsequent arrangement ", - "values": [ - "3 - Considering action" - ] - }, - { - "text": "Allocate the resources required for the Sierra Leone Human Rights Commission to carry out its core statutory functions ", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Take steps to ensure adequate support and access to health-care facilities for those in rural areas", - "values": [ - "4 - General action" - ] - }, - { - "text": "Include the issue of discrimination against lesbian, gay, bisexual, transgender and intersex persons in the human rights awareness courses", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Continue to be committed to economic and social development, reduce the development gap between rural and urban areas, better protect people's right to health and right to development ", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Continue with its efforts to bring incarceration facilities into line with international standards, especially regarding overcrowding, cell sanitation and the separation of young prisoners", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Record and publish official statistics about incidents or reports on racially motivated crimes, and improve the collection of hate-crime data by law-enforcement officials and authorities ", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Tunisia's commitment to objectively and constructively contribute, at the level of examination and follow-up to its report, to promoting the UPR mechanism's modalities and objectives, as contained in General Assembly resolution 60/251, which includes "ensuring universality, objectivity and non-selectivity in the consideration of human rights issues" and making sure that "the promotion and protection of human rights [are] based on the principles of cooperation and genuine dialogue". ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Ratify the Convention against Torture and other Cruel, Inhuman or Degrading Treatment or Punishment and its Optional Protocol, the Optional Protocol to the Convention on the Rights of the Child on the involvement of children in armed conflict, the Optional Protocol to the Convention on the Rights of the Child on the sale of children, child prostitution and child pornography, as well as the International Convention on the Protection of the Rights of All Migrant Workers and Members of their Families", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Strengthen the resources given to the Office of Women's Affairs and consider the possibility of complying with the recommendations of UNHCR and CEDAW, concerning the abolition of the legal provisions that prevent the transmission of nationality to Bahamian women", - "values": [ - "4 - General action" - ] - }, - { - "text": "Take practical measures to rehabilitate women prisoners after their release and to rehabilitate offending juveniles and street children.", - "values": [ - "4 - General action" - ] - }, - { - "text": "Accelerate the legal reform process in order to ensure that all discriminatory provisions in the legislation are abolished ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Continue to increase human and financial resources allocated by the Government to fight poverty and improve services in the fields of health and education", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Adopt and implement comprehensive policy measures, including appropriate awareness-raising campaigns, to overcome negative gender-based stereotypical attitudes about the roles of women ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Always protect the rights of children", - "values": [ - "4 - General action" - ] - }, - { - "text": "Ratify the Optional Protocol to the Convention on the Elimination of All Forms of Discrimination against Women (CEDAW).", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Consider the possibility of ratifying the Optional Protocol to the Convention against Torture and Other Cruel, Inhuman or Degrading Treatment or Punishment CAT ", - "values": [ - "3 - Considering action" - ] - }, - { - "text": "Further efforts to be made to make birth registration available to all groups of the population", - "values": [ - "4 - General action" - ] - }, - { - "text": "Implement effective measures against domestic violence, including spousal rape, bring perpetrators to justice, and develop public education campaigns in this area", - "values": [ - "4 - General action" - ] - }, - { - "text": "Take steps toward the abolition of the death penalty", - "values": [ - "4 - General action" - ] - }, - { - "text": "Adopt an effective policy for the integration of migrants ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Bring the laws regulating the use of force by law enforcement officers in line with international standards, particularly taking into account components of proportionality and necessity, to create an independent oversight mechanism with respect to complaints against criminal conduct by the police", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Ratify the other international instruments on human rights that the country is not yet a party to", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Respect all United Nations decisions and the withdrawal of Israel from all the occupied Arab and Palestinian Land", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Establish an independent national human rights institute which would be in full compliance with the Paris Principles", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Step up measures to safeguard the rights of the child, including by preventing discrimination against children of disadvantaged or vulnerable groups, and by stronger implementation of child labour laws and the revised 2012-2015 National Action Plan on Children's Rights", - "values": [ - "4 - General action" - ] - }, - { - "text": "Criminalize racial discrimination and enforce laws which protect the rights of the black population", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Ratify the Convention on the Rights of Persons with Disabilities, and in so doing, ensure adequate education for children with mental and physical disabilities", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Take measures to protect the rights of IDPs, including long-term housing and property restitution policies that meet international standards, and protecting the rights to a voluntary, safe return and adequate restitution.", - "values": [ - "4 - General action" - ] - }, - { - "text": "Take legislative and practical measures to ensure the independence and effectiveness of the judiciary ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Strive to further enhance and share its experiences regarding the role of traditional institutions in dispensing justice and reconciliation ", - "values": [ - "1 - Minimal action" - ] - }, - { - "text": "Accede to the OP-CAT and the ICESCR ", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Establish a moratorium on executions in view of abolishing the death penalty", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Provide adequate support to sexually exploited or at-risk children ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Take measures to comprehensively address long-standing issues identified under agenda item 4 of the Kenya National Dialogue and Reconciliation, including with regard to judicial and police reform", - "values": [ - "4 - General action" - ] - }, - { - "text": "Continue to participate actively in follow-up to the proceedings of relevant conferences, including the forthcoming review of the Durban Declaration and Programme of Action of the World Conference to Combat Racism and Racial Discrimination.", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "The delegation reiterated the commitment of the Government of Ghana to uphold human rights in the country. It also looks forward to continued cooperation with the Human Rights Council and all other human rights mechanisms", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Ensure that policies, legislation, regulations and enforcement measures effectively serve to prevent and address the heightened risk of business involvement in abuses in conflict situations, which includes situations of foreign occupation", - "values": [ - "4 - General action" - ] - }, - { - "text": "Establish a moratorium on the death penalty with a view to its abolishing in the shortest delay", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Consider the abolition of the death penalty", - "values": [ - "3 - Considering action" - ] - }, - { - "text": "Increase public awareness on human rights and promote human rights education and training", - "values": [ - "4 - General action" - ] - }, - { - "text": "Redouble efforts to combat discrimination against indigenous peoples and people of African descent and, in addition, continue to strengthen the national institute against discrimination, xenophobia and racism", - "values": [ - "4 - General action" - ] - }, - { - "text": "Intensify campaigns to prevent human trafficking and to increase the protection offered to victims, including their right to legal redress", - "values": [ - "4 - General action" - ] - }, - { - "text": "Strengthen the National Office against Racial Discrimination -UNAR-, as Italy had accepted in the previous UPR cycle", - "values": [ - "4 - General action" - ] - }, - { - "text": "Continue to improve and extend the work of its National Task Force on Trafficking in Persons", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Continue its efforts to put a halt to all negative cultural practices and stereotypes that discriminate against women ", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Continue its efforts to investigate racially motivated crimes and to bring perpetrators to justice so that members of vulnerable groups can live in safety and dignity ", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Government is committed to offer comprehensive sexual and reproductive health and rights services in tandem with the international, regional and national policies such as the 1994 International Conference on Population and Development (ICPD) Programme of Action, ICPD 10, Millennium Development Goals (MDGs), African Union Sexual and Reproductive Health Rights (SRHR) Policy Guidelines, the African Union Health Strategy, the Southern Africa Development Community Health Strategy, and the Maputo Plan of Action. Other national policies are the Malawi Reproductive Health Strategy 2006-2010, the Malawi Reproductive Health Service Delivery Guidelines, the Road Map for Accelerating the Reduction of Maternal and Neonatal Mortality and Morbidity in Malawi, the Malawi Accelerated Child Survival and Development Strategy, the National Gender Policy, and the Malawi Population Policy.", - "values": [ - "4 - General action" - ] - }, - { - "text": "Meet the provision of technical facilities as laid down requirements of the Convention on the Rights of Persons with Disabilities", - "values": [ - "4 - General action" - ] - }, - { - "text": "Continue working towards the ratification of existing human rights treaties", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Consider ratifying ICRMW and ILO Convention 189", - "values": [ - "3 - Considering action" - ] - }, - { - "text": "Continue its efforts in order to eliminate child marriage", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Strengthen measures to combat the phenomena of xenophobia ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Consider ratifying the Optional Protocol to the Convention on the Rights of the Child (CRC) on the involvement of children in armed conflict.", - "values": [ - "3 - Considering action" - ] - }, - { - "text": "Strengthen gender equality policies, particularly the promotion of employment of women in all fields", - "values": [ - "4 - General action" - ] - }, - { - "text": "Take legislative measures to fully implement the provisions of the Convention on the Elimination of All Forms of Discrimination against Women", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Finalize the process of adoption of the draft law on gender-based violence, ensuring its effective implementation", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Design and implement policies to prevent and combat discrimination on any grounds, including based on sexual orientation and gender identity", - "values": [ - "4 - General action" - ] - }, - { - "text": "Ratify the Optional Protocol to the International Covenant on Civil and Political Rights", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Establish a holistic legal and policy framework to guarantee the equal right of children with disabilities to access good-quality health-care services, public buildings and transportation ", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Ratify promptly the ILO Convention 169 ", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Adopt concrete measures to fight discrimination against women in all spheres of life, especially by increasing the representation of women in the middle and higher positions of political and economic life", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Promote understanding, tolerance and friendship between nations and racial and ethnic groups", - "values": [ - "4 - General action" - ] - }, - { - "text": "Take concrete measures to implement the Domestic Violence Prevention Act", - "values": [ - "4 - General action" - ] - }, - { - "text": "Reform the legislation on family life, especially the law on legal marriage age, which sets it at 15 years for girls and boys and which should be raised to 18 years, at a minimum", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Increase efforts to implement the National Plan to Combat Trafficking in Persons and the National Agenda on Equality for Human Mobility", - "values": [ - "4 - General action" - ] - }, - { - "text": "Repeal provisions which establish compulsory detention for those who enter the country in an irregular manner", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Put an end to repression, investigate acts of repudiation and protect all persons who are the targets of intimidation or violence ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Immediately investigate all allegations involving the torture and other ill treatment of those arrested or detained during the demonstrations in June 2009", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Review the legislation criminalizing abortion and amend it so that abortion is no longer a criminal offence", - "values": [ - "3 - Considering action" - ] - }, - { - "text": "Remove the prohibition on wearing the hijab in public schools.", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Ratify the Convention against Torture and Other Cruel, Inhuman or Degrading Treatment or Punishment and its Optional Protocol and the International Convention on the Rights of All Migrant Workers and Members of their Families", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Increase attention to the integration process for refugees", - "values": [ - "4 - General action" - ] - }, - { - "text": "Commute all the death sentences to prison sentences and ratify the second Protocol to the ICCPR in view of the definitive abolition of death penalty ", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Speed up the adoption of the Family and Personal Code enshrining the rights of women", - "values": [ - "4 - General action" - ] - }, - { - "text": "Continue its efforts towards the early finalization of the anti-terrorism law, which can serve to combat terrorism while ensuring promotion and protection of human rights", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Increase its legal efforts to combat all forms of intolerance, racism, and xenophobia, particularly the implementation of legal provisions of hate crime that remains inadequate for Roma", - "values": [ - "4 - General action" - ] - }, - { - "text": "Strengthen mechanisms to guarantee independence and impartiality of the judiciary and law enforcement institutions by implementing precise rules on judicial appointments and police oversight", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Swiftly ratify the International Covenant on Civil and Political Rights and the Convention on the Rights of Persons with Disabilities", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Continue policies and programs to improve the quality of basic social services provided to citizens, such as health care and education ", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Ratify the Optional Protocol to International Covenant on Economic Social and Cultural Rights (ICESCR-OP) ", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Provide training and promote capacity building among its institutions to guarantee the effective application of the Women's Charter", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Investigate and, if it is the case, put an end to cases of arbitrary arrest, illegal detentions and torture by the police and security forces", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Accelerate the ratification of the Rome Statute of the International Criminal Court", - "values": [ - "4 - General action" - ] - }, - { - "text": "Consider ratifying the Rome Statute of the International Criminal Court and fully align its legislation with all obligations under the Rome Statute, including incorporating the Rome Statute definition of crimes and general principles, as well as adopting provisions enabling cooperation with the Court ", - "values": [ - "3 - Considering action" - ] - }, - { - "text": "Put in place policies on accessibility for persons with disabilities with a view to allow them to be more active members of the society, including in the labour market ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Continue to adopt the necessary measures for the school enrolment of migrants' children to be mandatory in all federal states in accordance with national legislation and local commitments ", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Continue its active efforts to promote children's rights, including the implementation of the new law on children promulgated in 2010, disarmament, demobilization and reintegration activities for children, enhancement of a juvenile court system, and work towards the compulsory registration of births and the eradication of female genital mutilation ", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Establish affirmative actions for members of Roma communities, including by considering reserving vacancies at universities and at the public service", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Declare new moratorium with a view to ensure definitive abolition of the death penalty.", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Continue cooperating with the international mechanisms for the promotion and protection of human rights", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Call on the international community to support Mauritius by providing all assistance needed to improve its programmes for the protection and promotion of human rights", - "values": [ - "1 - Minimal action" - ] - }, - { - "text": "Further ensure indigenous groups are able to express their views, have access to relevant political and decision-making processes and are provided with the support necessary to meaningfully engage on issues that affect them.", - "values": [ - "4 - General action" - ] - }, - { - "text": "Ratify the the Optional Protocol to the Convention against Torture and establish a strong and independent national preventive mechanism", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Steadily implement as well as further enhance measures to address discrimination and violence against women", - "values": [ - "4 - General action" - ] - }, - { - "text": "Ensure that human rights violations, including extrajudicial killings, illegal detentions, torture and gender-based violence, committed by all sides in the Russian-instigated conflict in eastern Ukraine are recorded, investigated and the perpetrators brought to justice", - "values": [ - "4 - General action" - ] - }, - { - "text": "Continue promoting its successful programmes and social policies, with international assistance and cooperation, to advance social development and achieve greater well-being of its population", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Take measures to provide Roma with increased opportunities for education and employment", - "values": [ - "4 - General action" - ] - }, - { - "text": "Keep on efforts both on legal and procedural grounds to improve conditions of detention and to speed up the adoption of the draft criminal code", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Fully align domestic legislation with the Rome Statute of the International Criminal Court through explicit provisions on the duty to cooperate promptly and fully with the Court", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Continue to further strengthen the rule of law to provide a safe and stable living environment for its people", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Ensure that access to legal assistance upon detention is not delayed, that detainees have the possibility to communicate with a lawyer in private and that they are brought in front of a judge within 72 hours, as stipulated by law ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Continue the policy of free education through cooperation with and assistance from the international community ", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Strengthen the legal and judicial system in order to ensure that perpetrators of human trafficking, among others, are brought to justice", - "values": [ - "4 - General action" - ] - }, - { - "text": "Take effective steps to counter harassment and abuse of girls in the educational system and ensure that perpetrators are effectively punished ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Continue fulfilling its obligations under the international treaties to which it is a party", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Continue efforts to prevent internal trafficking and trafficking from the country to other countries, in accordance with the recommendation of the Special Rapporteur on the trafficking in persons, especially women and children", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Adopt measures to stamp out discrimination arising as a result of the practice of racist, ethnic, or religious profiling", - "values": [ - "4 - General action" - ] - }, - { - "text": "Continue with current efforts to eradicate poverty, indigence and social exclusion.", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Withdraw reservations to articles 14 and 21 of CRC as well as to article 18 of ICCPR ", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Intensify its efforts to ratify the Convention against Torture and other Cruel, Inhuman or Degrading Treatment or Punishment", - "values": [ - "4 - General action" - ] - }, - { - "text": "Consider the ratification of the International Convention on the Protection of the Rights of All Migrant Workers and Members of their Families", - "values": [ - "3 - Considering action" - ] - }, - { - "text": "Implement a new plan against people trafficking for sexual exploitation as soon as possible", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Establish an effective and inclusive process to follow up on the implementation of recommendations emerging from the universal periodic review ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Further increase its national spending on health and education sectors to meet the targets of the Millennium Development Goals ", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Ratify the already signed International Convention for the Protection of All Persons from Enforced Disappearance", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Set a clear timetable to commit itself to the principles of human rights and humanitarian laws in all occupied Arab territories.", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Review, adopt and implement the pending draft national policy on persons with disabilities to ensure non-discrimination in education, employment and healthcare", - "values": [ - "3 - Considering action" - ] - }, - { - "text": "Monitor health centres to ensure that patients provide fully informed consent before any sterilization procedure is carried out and that the complaints filed on grounds of coerced sterilization are duly investigated and victims are granted effective remedies.", - "values": [ - "4 - General action" - ] - }, - { - "text": "Continue to reinforce the implementation of public policies regarding persons with disabilities", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Take prompt and effective steps to hold to account perpetrators of corruption, extortion, torture and other forms of violence in the ranks of the judiciary and the police and security forces", - "values": [ - "4 - General action" - ] - }, - { - "text": "Ratify ICCPR ", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Withdraw its reservations to various international human rights instruments so as to allow complaints both by individuals and from other States parties", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Establish effective and transparent mechanisms to prevent violence, in particular against women, girls and boys, and ensure that these mechanisms are allocated with the necessary capacity and resources to be operational", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Recommended the Government to take next step of abolishing the death penalty in its national legislation.", - "values": [ - "4 - General action" - ] - }, - { - "text": "Continue its efforts and close cooperation with relevant international organizations in combating child trafficking", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Give priority to the implementation of the Palermo Protocol and the prosecution of persons benefiting from human trafficking", - "values": [ - "4 - General action" - ] - }, - { - "text": "Ensure that members of the political opposition, civil society organizations as well as journalists are free to express their views and opinions, including guarantees for their rights to freedom of assembly ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Not resort to abusive pretrial detention and ensure that persons arrested or detained are promptly brought to trial in accordance with the guarantees contained in the International Covenant on Civil and Political Rights", - "values": [ - "4 - General action" - ] - }, - { - "text": "Continue with the current efforts against the practice of domestic violence ", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Strengthen its work to further deserve the title of "Humanitarian Leader" which was given to it by the Secretary-General Ban Ki-Moon", - "values": [ - "4 - General action" - ] - }, - { - "text": "Consider including in its next universal periodic review report information on measures it has taken to analyse potential risk factors that could lead to atrocities, including by utilizing the United Nations Framework of Analysis for Atrocity Crimes: A Tool for Prevention, and on any assistance it has given to other States to prevent atrocity crimes", - "values": [ - "3 - Considering action" - ] - }, - { - "text": "Provide the National Programme for the Protection of the Rights of the Child for 2013-2016 with the necessary resourcing and strengthen its implementation, especially in respect of children in closed or partially-closed institutions", - "values": [ - "4 - General action" - ] - }, - { - "text": "With the assistance of the international community continue to promote economic, social and cultural rights, which make Senegal a model of democracy in Africa ", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Continue in its endeavour to tackle child mortality and morbidity in the country", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Panama has committed itself to generating statistics on the situation of persons with disabilities, to guide the drafting of public policies. The delegation also detailed a number of additional measures to ensure respect for the rights of persons with disabilities.", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Establish a moratorium on executions", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Continue to improve access to health-care services by funding programmes that improve the quality of health services in rural villages", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Strengthen the health service infrastructure and the restructuring of the public health system", - "values": [ - "4 - General action" - ] - }, - { - "text": "Strengthen its policies to protect the rights of migrants and minority groups and ensure the integration of those groups into Norwegian society ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Remove any obstruction of the right to justice for victims of sexual violence and provide them with effective treatments", - "values": [ - "4 - General action" - ] - }, - { - "text": "Continue its efforts to reduce maternal mortality and strengthen the health-care system", - "values": [ - "4 - General action" - ] - }, - { - "text": "Continue to reinforce efforts to support inclusive growth and prioritize budgetary allocations in primary education and in the reduction of malnutrition and maternal and infant mortality rates to achieve progress in the remaining Millennium Development Goals", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Grant the requests made by the Special Rapporteur on torture and other cruel, inhuman or degrading treatment or punishment in 2005 and 2007 and by the Special Rapporteur on the situation of human rights in Eritrea to visit the country ", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Adopt the concept of discrimination in line with CEDAW for the definition of fundamental rights related to gender equality ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Accede to international human rights conventions not yet acceded to ", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Undertake further efforts to promote the tasks of all government departments that provide public services", - "values": [ - "4 - General action" - ] - }, - { - "text": "Immediately release its remaining political prisoners, investigate reports of mistreatment and take action against those allegedly responsible in accordance with domestic and international law", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Fully incorporate the Convention on the Elimination of Discrimination against Women into its domestic system", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Reinforce its efforts to end impunity concerning serious human rights violations including those perpetrated by high ranking military officers as well as those related to sexual violence against women ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Take measures aimed at eliminating all forms of discrimination against women and girls, and to protect their rights, especially to education at all levels, and to receive medical care during all their stages of life, including during pregnancy ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Take all necessary measures to ensure that the law on freedom of assembly is not applied in an unduly strict manner by the local authorities.", - "values": [ - "4 - General action" - ] - }, - { - "text": "Adopt without delay proper measures aimed at ensuring the immediate release of all children-soldiers and tackle this grave breach of human rights as a high priority", - "values": [ - "4 - General action" - ] - }, - { - "text": "Ensure effective implementation of the provisions punishing acts of torture ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Regarding the "Caprivi" trial provide adequate compensation for the 35 persons acquitted who had spent long periods in remand detention", - "values": [ - "4 - General action" - ] - }, - { - "text": "Fully implement the recommendations of the Consultative Task Force on Reconciliation, including to repeal the Prevention of Terrorism Act and replace it with international best practice legislation", - "values": [ - "4 - General action" - ] - }, - { - "text": "Consider withdrawing reservations with respect to article 4 of ICERD, articles 9, 10, 12 , 14, 19, 21, 22 and 26 of ICCPR, ICCPR-OP 1, CEDAW, CAT and CRC ", - "values": [ - "3 - Considering action" - ] - }, - { - "text": "Provide its existing and new national institutions and bodies for the advancement of women and gender equality with adequate human, technical and budgetary resources", - "values": [ - "4 - General action" - ] - }, - { - "text": "That steps be taken to abolish the lese-majesty legislation and the 2007 Computer Crimes Act, and the immediate implementation of public and transparent proceedings in cases concerning these laws", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Consider an early ratification of the third Optional Protocol to The Convention on the Rights of the Child on a communications procedure", - "values": [ - "3 - Considering action" - ] - }, - { - "text": "Requested more information on reforms with respect to forced marriage, particularly on providing assistance to victims of forced marriage.", - "values": [ - "1 - Minimal action" - ] - }, - { - "text": "Ratify the Optional Protocol to the Convention on the Elimination of All Forms of Discrimination against Women (CEDAW)", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Adopt policies and take measures to ensure full realization of the right to safe drinking water and sanitation, with special focus on rural areas ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Further strengthen the capacity of the institution of Ombudsman ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Accelerate the implementation of the new law and regulations relating to juvenile justice", - "values": [ - "4 - General action" - ] - }, - { - "text": "Protect children by ensuring the full and immediate demobilization of all children, the prohibition of forced recruitment of children into the armed forces and the prosecution and punishment of those responsible for forcibly recruiting children", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Institute further administrative measures to secure the equitable representation and participation of women in governance", - "values": [ - "4 - General action" - ] - }, - { - "text": "Take the necessary measures in order to stop human rights abuses against journalists and human rights defenders, conduct impartial, effective and thorough investigations, publish the results of these investigations and ensure that such violations do not remain unpunished", - "values": [ - "4 - General action" - ] - }, - { - "text": "Take measures to rectify the situation of low participation of women in decision-making bodies and public life, the wage gap between women and men, and the high illiteracy rate among women ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Undertake a revision of the National Human Rights Commission's independence, including its economic independence, in order to bring the Commission's legal foundation de facto into compliance with the Paris Principles", - "values": [ - "4 - General action" - ] - }, - { - "text": "Continue developing the human rights legal framework ", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Follow the Council of the European Union Asylum Qualification Directive in future cases with regard to sexual orientation as a ground for asylum-seeking. ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Follow up on the recommendation by the Committee on the Elimination of Discrimination\nagainst Women to introduce specific legislation and raise public awareness in order to close the\ngender gap, particularly in rural areas ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Accede to the ILO Convention No. 189 on domestic workers", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Seek assistance from the international community to take efforts to provide technical assistance and training necessary to build capacities in the areas of legislative work, the judiciary, security, education, and care for IDPs and persons with disabilities ", - "values": [ - "1 - Minimal action" - ] - }, - { - "text": "Further strengthen measures aimed at preventing and combating domestic violence", - "values": [ - "4 - General action" - ] - }, - { - "text": "Immediately criminalize rape within marriage ", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Explore the possibility of establishing a national human rights institution in accordance with the Paris Principles ", - "values": [ - "3 - Considering action" - ] - }, - { - "text": "Incorporate its international obligations under human rights instruments into domestic law", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "As a follow-up to the recommendations made in paragraphs 90.45, 90.46, 90.47, 90.48, 90.49, 90.57 and 90.60 of the report of the Working Group on the second review cycle of Poland A/HRC/21/14, reinstate the Council for the Prevention of Racial Discrimination, Xenophobia and Related Intolerance, with a view to addressing racism in sport to demonstrate the authorities\u2019 seriousness in combating such prejudices, in full consultation with key stakeholders", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "In line with the recommendations from the Committee on the Rights of the Child, take immediate steps to halt and abolish the death penalty and life sentences for crimes committed by persons under 18", - "values": [ - "4 - General action" - ] - }, - { - "text": "Respond to the challenges that prevent the effective implementation of the Gender Alert system", - "values": [ - "4 - General action" - ] - }, - { - "text": "Monitor and report on the compliance with the recommendations put forward by the special rapporteurs on the independence of judges and lawyers, on migrants and on extrajudicial executions", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Further strengthen mechanisms fostering prosecution of all perpetrators of sexual and gender-based violence", - "values": [ - "4 - General action" - ] - }, - { - "text": "Take the necessary measures to improve the situation of foreign workers ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Increase efforts to reduce poverty and stimulate development of the most marginalized groups, particularly indigenous communities, involving them in the decisions regarding their rights and interests ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Take effective measures to reduce and combat malaria, HIV/AIDS and tuberculosis", - "values": [ - "4 - General action" - ] - }, - { - "text": "Effectively combat all manifestations of Islamophobia, neo-Nazism, and investigate, prosecute and punish all hate crimes against minorities", - "values": [ - "4 - General action" - ] - }, - { - "text": "Implement the recommendations of the 2008 Constitutional Review ", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Sign, ratify or accede to the Second Optional Protocol to the International Covenant on Civil and Political Rights and the International Convention for the Protection of All Persons from Enforced Disappearance", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Continue making efforts to realize the right to education of children, particularly those from remote rural areas", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Continue its efforts to adapt the law on combating human trafficking and the smuggling of the labour force in accordance with the international convention against transnational organized crime and its protocol ", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Strengthen the implementation of legislation aimed at the elimination of violence against women and increase funding for assistance to the victims, in particular with regard to domestic violence and bride kidnapping", - "values": [ - "4 - General action" - ] - }, - { - "text": "Strengthen the fight against racism and racial discrimination", - "values": [ - "4 - General action" - ] - }, - { - "text": "Consider the formulation and implementation of public policies aimed at ensuring women's enjoyment of their human rights in the area of equality ", - "values": [ - "3 - Considering action" - ] - }, - { - "text": "Consider acceding to the major international instruments, including the International Covenant on Economic, Social and Cultural Rights ", - "values": [ - "3 - Considering action" - ] - }, - { - "text": "Take measures to promote the participation of women in the decisionmaking process ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Investigate and prosecute all crimes against humanity as well as cases of torture and disappearances in order to bring the perpetrators to justice", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Early ratification and full implementation of the Optional Protocol to the Convention on the Rights of the Child on the involvement of children in armed conflict", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Commute the sentences of the last individuals to be sentenced to death and work to improve the detention conditions in the country\u2019s prisons", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Strengthen the provisions of legal aid services in all regions and ensure enhanced awareness of key CEDAW provisions by the judiciary", - "values": [ - "4 - General action" - ] - }, - { - "text": "Consider the needs of people with disabilities in reconstruction efforts ", - "values": [ - "3 - Considering action" - ] - }, - { - "text": "Continue to take all necessary steps to promptly establish a national human rights institution compliant with the Paris Principles", - "values": [ - "4 - General action" - ] - }, - { - "text": "Accede to the Rome Statute of the International Criminal Court to complement national mechanisms and ensure accountability for gross human rights and international humanitarian law violations", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Accede to the international treaties on human rights and ratify OPCRC-IC", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Propose concrete dates for visits by the Special Rapporteurs on freedom of opinion and expression, and freedom of association and assembly, respectively", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Step up the progress made over the last decade in the field of equality and women's rights ", - "values": [ - "4 - General action" - ] - }, - { - "text": "It also informed about Hungary's intention to submit mid- term report to recap the implementation of the accepted recommendations.", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Put in place a strategy for the promotion of access to education for women and girls, reduce dropout rates among girls in secondary education and improve the access to and the quality of education in rural areas ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Strengthen the national system of protection and promotion of childhood and adolescence ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Redouble its efforts and allocate more resources to address the problem of violence against women and children in this area, in particular through increasing women's empowerment, public awareness, education and training as well as increase vigilance and monitoring by the relevant authorities", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Work with civil society on follow-up to the review.", - "values": [ - "4 - General action" - ] - }, - { - "text": "Take necessary actions to implement its commitment to extend a standing invitation to the special procedures of the Human Rights Council ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Take additional measures to eliminate the phenomenon of domestic violence against women ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Thoroughly investigate the threats against human rights defenders and civil society organizations, bring to justice those responsible and guarantee reparations to the victims, especially those working for women's rights", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "To examine the possibility of withdrawing or modifying the reservations entered by the Government regarding articles 14 (2) and 16 of the Convention on the Elimination of All Forms of Discrimination against Women", - "values": [ - "3 - Considering action" - ] - }, - { - "text": "Take further appropriate actions to combat gender based violence, discrimination and legalize domestic violence", - "values": [ - "4 - General action" - ] - }, - { - "text": "Work closely with its citizens, especially the indigenous population, in order to promote environmental protection ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Reconcile policies related to ethnic Hungarians abroad with neighbouring countries primary responsibility for minority protection ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Ratify the African Union Convention for the Protection and Assistance of Internally Displaced Persons in Africa (the Kampala Convention)", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Take necessary measures to ensure that discrimination on the basis of disability, economic status, sexual orientation or living with HIV-AIDS is prevented.", - "values": [ - "4 - General action" - ] - }, - { - "text": "Spare no effort to face and mitigate the consequences of climate change and natural disasters", - "values": [ - "4 - General action" - ] - }, - { - "text": "Strengthen its measures to prevent and combat xenophobia and racial prejudice among politicians, public officials and the general public, in line with the recommendation of the CERD ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Continue efforts to reduce corruption and increase accountability", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Take measures to enforce legislation prohibiting child labour and to facilitate access to education for all children, particularly the poor and disadvantaged", - "values": [ - "4 - General action" - ] - }, - { - "text": "Strengthen efforts to ensure the full implementation of the principle of nondiscrimination, particularly in the promotion of gender equality and women's empowerment ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Ratify the International Convention on the Protection of the Rights of All Migrant Workers and Members of Their Families ", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Strengthen efforts to ensure access to education in all areas of the country, including rural areas", - "values": [ - "4 - General action" - ] - }, - { - "text": "Continue its fight against the negative consequences of climate change", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Continue its efforts in order to strengthen the protection of victims of trafficking", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Apply international standards relating to the treatment of refugees and asylum seekers, provide them with adequate services and speed up the processing of their application", - "values": [ - "4 - General action" - ] - }, - { - "text": "Sign and ratify the Convention on the Reduction of Statelessness ", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Continue to bring its policies and legislation in line with its obligations under the Convention on the Elimination of All Forms of Discrimination against Women (CEDAW).", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Ensure effective implementation of the Libreville Peace Agreement, and put an end to the prevailing insecurity and violence in the country", - "values": [ - "4 - General action" - ] - }, - { - "text": "Implement the National Action Plan on Human Rights for 2017-2021", - "values": [ - "4 - General action" - ] - }, - { - "text": "Adopt concrete measures to eradicate child labour, abuse and sexual exploitation of children, including its involvement in sexual tourism", - "values": [ - "4 - General action" - ] - }, - { - "text": "Engage with other mandate holders, especially with the special rapporteurs on the right to freedom of expression, on human rights defenders and on torture ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Continue efforts aimed at the implementation of the Millennium Development Goals and achieve prosperity for the people, in particular by facilitating access for the population to the necessary health services", - "values": [ - "4 - General action" - ] - }, - { - "text": "Strengthen efforts in order to achieve the MDGs with international cooperation and support ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Repeal the provisions criminalizing same-sex sexual relations between consenting adults, to respect the principles of equality and non- discrimination among all persons", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Improve prison conditions to bring them in line with internationally accepted standards and guidelines", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Continue efforts to submit overdue reports requested by the committees of various international conventions to which Belize is a party, and seek technical assistance for the establishment of these reports.", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Further harmonize its national legislation with the international obligations of Laos under the respective conventions, and accede to instruments allowing for individual complaints", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Implement human rights education programmes for law enforcement officials", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Step up the implementation of measures to combat, prevent and punish acts of child abuse, child neglect and domestic violence ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Sign and ratify OP-CAT as recommended by Spain in 2010", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Ratify the CED, the first OP-ICCPR and OP-ICESCR ", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Continue to create just and favourable conditions of work", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Consider ratifying those international human rights instruments to which it is not yet a State party ", - "values": [ - "3 - Considering action" - ] - }, - { - "text": "Bring the juvenile justice system fully into line with the Convention on the Rights of the Child", - "values": [ - "4 - General action" - ] - }, - { - "text": "Ensure that it (the National Council for Human Rights) effectively performs its tasks and avoid duplication with other human rights bodies", - "values": [ - "4 - General action" - ] - }, - { - "text": "Pay further attention to the issue of domestic violence, the gender gap in tertiary education and women's participation in politics ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Accord priority to the provision of required resources in order to ensure the effective implementation of the Comprehensive Act on the Protection of Children and Adolescents", - "values": [ - "4 - General action" - ] - }, - { - "text": "Continue firmly to combat the scourge of sexual violence and impunity and bring to justice those responsible for grave human rights and international humanitarian law violations", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Follow up its commitment to increase public aid for the development of countries in need.", - "values": [ - "4 - General action" - ] - }, - { - "text": "Further improve human rights records in the country ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Liechtenstein will intensify its examination of the necessary implementation measures with a view to a possible accession to the Convention on the Rights of Persons with Disabilities and its Optional Protocol", - "values": [ - "3 - Considering action" - ] - }, - { - "text": "Implement provisions of criminal legislation aimed at combating racially motivated crimes and prosecute those responsible, as well as increase awareness among persons belonging to national minorities about the means available for legal protection from discrimination and hatred", - "values": [ - "4 - General action" - ] - }, - { - "text": "Promptly approve the license applications for all civil society organizations that meet legal requirements, including those organizations advocating for minority populations ", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Continue to combat human trafficking and violence against children and women ", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Carry out proper actions aimed at granting indigenous people the full enjoyment of their rights, in particular health care and education ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Ratify or accede as appropriate to the Rome Statute of the International Criminal Court, OP-CAT and ICCPR-OP1 and ICCPR- OP2 ", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Strengthen measures taken to combat human trafficking", - "values": [ - "4 - General action" - ] - }, - { - "text": "Issue a standing invitation to the Special Procedures of the United Nations Human Rights Council", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Vigorously develop the economy, reduce unemployment, guarantee the employment of its people, especially young people, and improve work conditions", - "values": [ - "4 - General action" - ] - }, - { - "text": "Guarantee the independence of the judiciary", - "values": [ - "4 - General action" - ] - }, - { - "text": "Redouble efforts to ensure the empowerment of women in political and economic plans in order to reduce gender inequalities", - "values": [ - "4 - General action" - ] - }, - { - "text": "Increase efforts to eliminate child poverty and bring domestic legislation in line with the Convention on the Rights of the Child", - "values": [ - "4 - General action" - ] - }, - { - "text": "Heed the observations of those treaty bodies that express concern about the multiple forms of discrimination suffered by minorities and vulnerable groups in Swedish society, bringing its domestic normative framework into line with international human rights norms to which it is a State party", - "values": [ - "4 - General action" - ] - }, - { - "text": "Take steps to stop prohibition on wearing of religious symbols including the headscarf ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Lift the reservation on article 2 of the United Nations Convention on the Elimination of All Forms of Discrimination against Women, review and repeal all sections of the Constitution and other remaining discriminatory provisions that allow discrimination based on gender, and include in the Constitution, and/or other appropriate legislation, prohibition of both direct and indirect discrimination on grounds of gender", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Look into the possibility of creating a national human rights institution ", - "values": [ - "3 - Considering action" - ] - }, - { - "text": "Continue to make progress on important issues for the promotion of human rights and its democratization, particularly in judicial reform and measures to address land issues ", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Continue the efforts to combat school dropout, in particular in the countryside", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Adopt ILO Convention No. 138 (1973) concerning Minimum Age for Admission to Employment so that no child under 14 years of age is engaged in an apprenticeship, and ensure that Children and Adolescents' Defence Committees have adequate resources to fulfil their tasks", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Make plans to sign and ratify the core human rights treaties", - "values": [ - "4 - General action" - ] - }, - { - "text": "Continue to finalize the establishment of the Constitutional Court and expedite the overhaul of the laws that are inconsistent with the Constitution and international human rights standards so as to expand on the environment that is conducive for the further implementation of recommendations made in the context of the universal periodic review", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Take steps to ratify the core human rights conventions, in particular the International Covenant on Economic, Social and Cultural Rights ", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Facilitate the access of children to primary education ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Foster an inclusive society in which all, regardless of race, citizenship and religion, are equally protected ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Continue suspending capital death penalties by establishing, as a first step, a moratorium on all executions, and by subsequently abolishing the death penalty completely ", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Ratify the International Convention for the Protection of All Persons from Enforced Disappearance (CED) as soon as possible", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Intensify the fight against inequalities ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Ensure better protection for persons with disabilities and the elderly ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Continue to make full efforts to promote its economic recovery and guarantee its citizens their economic, social and cultural rights ", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Strengthen efforts against all forms of violence against women, including domestic violence ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Enhance its efforts aimed at preventing and combating and bringing to justice perpetrators of hate crimes, as well as acts of racism, xenophobia and discrimination against vulnerable groups, including lesbian, gay, bisexual, transgender and intersex individuals", - "values": [ - "4 - General action" - ] - }, - { - "text": "Ratify CAT without undue delay ", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Establish an official moratorium on executions and ratify the Second Optional Protocol to the International Covenant on Civil and Political Rights with a view to abolishing the death penalty", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Enable the people of Western Sahara to exercise their right to self-determination through a democratic referendum", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Pursue appropriate policies with a view to strengthening efficiency, impartiality, and independence of its judiciary ", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Establish a national human rights institution that is compliant with the Paris Principles", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Strengthen its existing initiatives to end early, forced and child marriage", - "values": [ - "4 - General action" - ] - }, - { - "text": "Reform the Criminal Code to punish all cases of sexual and domestic violence", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Swiftly finalize the ratification of CRPD and its Optional Protocol ", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Take measures aimed at guaranteeing the effective and impartial implementation of legislation and at putting an end to impunity in cases of domestic violence", - "values": [ - "4 - General action" - ] - }, - { - "text": "Combat the crimes of abduction of and trafficking in women, provide women victims with physical and psychological rehabilitation services with a view to their integration into the society, continue improving the pension system covering urban and rural areas", - "values": [ - "4 - General action" - ] - }, - { - "text": "Consider adopting a law on domestic violence and criminalizing different types of violence against women", - "values": [ - "3 - Considering action" - ] - }, - { - "text": "Take necessary measures to achieve the social reintegration of boys, girls and adolescents victims of armed gangs", - "values": [ - "4 - General action" - ] - }, - { - "text": "Either immediately free political prisoners and human rights activists who have been illegally detained or forced out of the country, or allow them to return to Uzbekistan to enjoy their basic rights and freedoms ", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "The government is committed to addressing the issue of domestic violence.", - "values": [ - "4 - General action" - ] - }, - { - "text": "Support the more effective implementation of provisions of CAT and submit its pending reports to CAT", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Sign and ratify the following international instruments: the Optional Protocols to the International Covenant on Civil and Political Rights - the International Convention on the Elimination of All Forms of Racial Discrimination - the Convention against Torture and the Optional Protocol thereto - the Optional Protocols of the Convention on the Rights of the Child - the Convention on the Rights of Persons with Disabilities and the Optional Protocol thereto - and the International Convention for the Protection of All Persons from Enforced Disappearance ", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Ratify ICCPR, ICESCR as well as CAT ", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Take further steps to eliminate discrimination against the Roma population, especially in the field of health ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Continue the moratorium on the death penalty and move towards its elimination", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Continue to fervently implement the "Human Rights Action Plan" ", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Implement the national action plan for persons with disabilities", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Overhaul fundamentally legislation on abortion, in the first place with regard to victims of rape, especially victims that are minors, as well as concerning pregnancies which seriously endanger the health of the woman ", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Adopt legislation and measures to prevent violence against women and children, including through the strengthening of its monitoring mechanism", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Take actions to improve sexual and reproductive health and rights according to previous recommendations and formulate a national strategy on sexual and reproductive health and rights, and integrate sexual and reproductive health into the next national health programme for 2026-2036", - "values": [ - "4 - General action" - ] - }, - { - "text": "Make it a priority to ensure gender equality in all spheres of life, and that Guinea-Bissau formulates a comprehensive strategy to eliminate negative attitudes and practices that affect women and girls", - "values": [ - "4 - General action" - ] - }, - { - "text": "Implement urgently all accepted recommendations from 2009 that remain outstanding", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Suspend article 128 of the Iraqi Penal Code, as a first step towards the permanent removal from it of honourable motives as a mitigating excuse", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Reform its legal framework on freedom of religion by streamlining, facilitating and increasing the transparency of the registration process for religious organizations, including eliminating the obligation for religious groups to seek prior authorization to gather, and removing limitations on the printing, import and distribution of religious materials ", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Ratify the Rome Statute of the International Criminal Court", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Consider acceding to CAT.", - "values": [ - "3 - Considering action" - ] - }, - { - "text": "Take all feasible measures to protect children from recruitment by State-allied and non-State armed groups, including contributing information, analysis and recommendations to the United Nations and other stakeholders to support and strengthen their efforts to ensure that international standards are upheld ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Continue its efforts to submit its outstanding periodic reports", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Continue its active participation in international human rights cooperation and carry out more international technical assistance programmes in human rights ", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Abolish any possible legal grounds for differentiated treatment between national and ethno-linguistic minorities", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Take steps to eliminate traditional cultural practices that discriminate against women", - "values": [ - "4 - General action" - ] - }, - { - "text": "Share its experience and best practices in realization of the right to food and the fight against poverty, in particular in the area of micro-credit, with other developing countries", - "values": [ - "1 - Minimal action" - ] - }, - { - "text": "Cooperate with the Special Procedures and accept requests currently pending by the Special Rapporteurs to carry out country visits", - "values": [ - "4 - General action" - ] - }, - { - "text": "Continue to increase investment in education and strengthen infrastructure for education", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Adopt the abolition of the death penalty, or at least a moratorium on its application, as it has already done twice in 1977 and 1998 ", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Establish a national human rights institution in conformity with the Paris Principles ", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Strengthen the free and compulsory primary education system and to reduce the gender and rural-urban disparities ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Develop and implement a National Action Plan on Human Rights in order to have a systematic strategy for the promotion and protection of human rights ", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Take steps to implement the national integration strategy to ensure the participation of minorities in Georgia's cultural, social and economic life", - "values": [ - "4 - General action" - ] - }, - { - "text": "Call on the international community to encourage the present stage of development in Nepal and provide the necessary assistance to strengthen Nepal's domestic capacity to address the challenges ", - "values": [ - "1 - Minimal action" - ] - }, - { - "text": "Strengthen its measures to prevent torture and address the impunity of such acts", - "values": [ - "4 - General action" - ] - }, - { - "text": "Strengthen its efforts in generating social awareness of positive gender roles, targeting particularly alleviation of existing gender-based disparities in education and the labour market.", - "values": [ - "4 - General action" - ] - }, - { - "text": "Establish a moratorium on the death penalty, as the first step towards its full abolition", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Address concerns regarding the promotion and protection of human rights expressed by the Human Rights Council in its resolutions ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Abandon the policy of using diplomatic assurances concerning torture and other ill-treatment as a means to avoid exposing persons to the risk of such human rights violations during any type of involuntary transfer to the territory or the custody of another State ", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "In accordance with its imperatives dictated by its national realities, to proceed to legislative, judicial and administrative reform as well as create conditions permitting the ratification, as soon as possible, of the ICCPR", - "values": [ - "4 - General action" - ] - }, - { - "text": "Further sensitize the Croatian public to the asylum question, in order to facilitate the integration of asylum seekers", - "values": [ - "4 - General action" - ] - }, - { - "text": "Guarantee the right to freedom of expression, opinion, conscience and religion or belief as well as the right to peaceful assembly and the right to freedom of association ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Continue to build the capacity of an independent judiciary that would process court cases more effectively and independently ", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Amend or revoke legislation, such as the "Anti-Terror Law" and the "Law on Meetings and Demonstrations", ensuring their provisions cannot be misused", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Consolidate the constitutional and legislative framework to prevent discrimination against persons with disabilities ", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Continue to strengthen the legal framework for the promotion and protection of human rights, including through the ratification of the ICCPR and ICESCR, which are key instruments for the promotion and protection of a number of other fundamental rights, as well as the ICRMW ", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Fully implement its national action plan on the UN Security Council resolution 1325 to meaningfully involve women in peace process and to combat gender-based violence and discrimination", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Progress domestic child protection legislation and ratify the Optional Protocol to the Convention on the Rights of the Child on the sale of children, child prostitution and child pornography", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Continue efforts to implement the Universal Primary Education Policy, including by increasing its budgetary allocation and formulating the compulsory education policy ", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Continue its policies to improve access to education for all, including for migrant workers and members of their families", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Include all migrants irrespective of their status within the national plans and programmes to integrate and ensure their human rights", - "values": [ - "4 - General action" - ] - }, - { - "text": "Eliminate child marriages and increase the minimum age for marriage under exceptional circumstances", - "values": [ - "4 - General action" - ] - }, - { - "text": "Ensure that affordable healthcare and medicines remain available to all Malaysians, especially for those residing in the interior and remote areas of the country", - "values": [ - "4 - General action" - ] - }, - { - "text": "To strengthen the mechanisms to protect the rights of migrants, such as training workshops for members of the Immigration Authorities who perform control checks at entry and departure points", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Reinforce the policies for the protection against racism, renewing the National Action Plan against Racism (2005- 2008)", - "values": [ - "4 - General action" - ] - }, - { - "text": "Continue working in order to establish a national human rights institution in line with the Paris Principles, taking into account the recommendations from the treaty bodies in this regard ", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Take all steps necessary to remove ethnic segregation from schools, in order to encourage greater understanding among young people of different ethnicities", - "values": [ - "4 - General action" - ] - }, - { - "text": "Continue the efforts made in enhancing the right to education particularly education of children", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Continue its cooperation with the United Nations in the field of human rights", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Take more effective measures to prevent and supress manifestations of racism, xenophobia and intolerance and encourage a positive climate of dialogue in this regard", - "values": [ - "4 - General action" - ] - }, - { - "text": "Concentrate on the implementation of the international human rights instruments that have been ratified by Pakistan ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Pursue efforts to improve women's access to education and health services and strengthen their role in local development planning", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Consider accession to core international human rights instruments, as appropriate ", - "values": [ - "3 - Considering action" - ] - }, - { - "text": "Work to conclude the reforms of the justice system", - "values": [ - "4 - General action" - ] - }, - { - "text": "Take measures for the full implementation of the Anti-Discrimination Act by law enforcement officials and judicial officials with a view to guaranteeing effective investigation and punishment of those who commit acts of discrimination against migrants, refugees and asylum seekers", - "values": [ - "4 - General action" - ] - }, - { - "text": "Consolidate access to information and culture for all people ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Ensure that all reports of human rights violations are investigated and that those suspected of violations are suspended from active duty and brought to justice ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Urgently investigate cases of arbitrary arrest and detention, including those which may constitute enforced disappearances ", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Conduct, jointly with Special Procedures of the Human Rights Council, comprehensive and transparent investigations regarding information/reports on participation of the Romanian authorities in CIA secret programs of arbitrary detention and secret transfers of suspects", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Initiate a bill to reform of the Criminal Code in order to incorporate as soon as possible the criminalization of torture in line with the definition set forth in Article 1 of the Convention against Torture and Other Cruel, Inhuman or Degrading Treatment or Punishment", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Take measures to provide the Office of the Ombudsman with adequate resources ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Continue protecting the natural family and marriage, formed by a husband and a wife, as the fundamental unit of society, as well as the unborn", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Speed up the process of formulating an antidiscrimination legal framework and strengthen the role of administrative structures established to sanction any form of discrimination. ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Continue to ensure better protection of the rights of all citizens through implementing an anti-discrimination law which could effectively protect different social groups, particularly the most vulnerable ", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Continue advancing on the specialization of the juvenile justice system, including the development of an appeals mechanism ", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Continue the efforts deployed by the Greek government to start the implementation of the children alternative care program", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Investigate and prosecute racist and xenophobic discourse and incitement to hatred in the media and on the Internet by extremist politicians", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Ratify ICERD, CAT, ICRMW, CRPD and CED", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Enact into law the proposed Law on Combating and Preventing Discrimination", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Engage with civil society groups in the follow-up to the universal periodic review ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Continue with the projects and programs for the protection of indigenous communities, particularly in the field of education of their children", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Adopt concrete measures to eliminate differentiation at work and reduce inequality by ensuring the strict implementation of the 2012 Law aimed at reducing wage inequality based on sex", - "values": [ - "4 - General action" - ] - }, - { - "text": "Consider either reinstating the Council for the Prevention of Racial Discrimination, Xenophobia and Related Intolerance, or establishing an alternative multi-stakeholder institution with the objective of preventing discrimination and intolerance", - "values": [ - "3 - Considering action" - ] - }, - { - "text": "Adopt a comprehensive law on domestic violence", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Take the necessary measures for the prompt ratification of the Rome Statute as well as the adoption of legislation to implement the Statute ", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Continue strengthening the institutional framework for the promotion and protection of minority rights in the country", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Continue to develop and implement its adaptation strategies with assistance from the international community ", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Rapidly complete the process of harmonizing national legislation with CAT with respect to the definition of torture", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Ensure that child victims of offences under OP-CRC-SC are provided with assistance, including social reintegration and physical and psychological recovery ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Grant the ICRC full access to closed institutions", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Complete the ongoing compensation process so that as many victims of gross human rights violation committed during the past military dictatorship as possible can benefit from the reparation measures.", - "values": [ - "4 - General action" - ] - }, - { - "text": "Develop further the united register for cases regarding domestic violence against women to create a full body of statistics regarding gender based violence throughout the entire country", - "values": [ - "4 - General action" - ] - }, - { - "text": "Continue to reduce poverty and extreme poverty", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Continue providing specialized assistance to young people ", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Defend and protect women from all violence especially women prisoners", - "values": [ - "4 - General action" - ] - }, - { - "text": "Submission of periodic reports to various treaty bodies", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Adopt a specific law on domestic violence, including by criminalizing marital rape ", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Ensure the protection of refugees, migrants and their families in full compliance with international standards", - "values": [ - "4 - General action" - ] - }, - { - "text": "Create a national human rights institution in conformity with the Paris Principles", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Implement the recommendations of various treaty bodies as well as of the national Parliament Commissioner for Human Rights to establish a separate juvenile justice system for children and youth in line with European and international standards, as soon as possible.", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Continue efforts to answer queries and questionnaires submitted by Special Procedures mandate holders ", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Further combat violence against children in the school environment ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Counter discrimination and promote a more inclusive society", - "values": [ - "4 - General action" - ] - }, - { - "text": "Strengthen child protection system with effective mechanisms, including investigation of reports of cases of cases of child abuse", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Adopt laws and executive measures that guarantee that migrant persons with disabilities and with special needs are guaranteed all their rights and to, in particular, protect them", - "values": [ - "4 - General action" - ] - }, - { - "text": "Remove undue restrictions and infringements to the enjoyment of freedoms of expression, association and peaceful assembly", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Give priority to the promotion and protection of human rights in all policies developed by the Government ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Continue efforts to advance the status of women in rural areas, including access to basic services, and study the possibility of introducing a gender-based approach in the national budget", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Continue efforts at protecting migrant workers and members of their families from exploitation", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Address the question of the conditions offered to asylum and refuge seekers during the processing of their applications and once the procedure is completed, ensure that these people enjoy the human rights which they are entitled to under the Convention relating to the Status Refugees of 1951 and other applicable international norms", - "values": [ - "4 - General action" - ] - }, - { - "text": "Make education one of its top priorities, and reinforce - equitable access to higher education - based on academic and educational standards ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Institute an urgent review of laws, regulations and procedures relating to the use of force and firearms by law enforcement officials", - "values": [ - "3 - Considering action" - ] - }, - { - "text": "Sign and ratify all international human rights instruments to which it is not yet party ", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Strengthen the normative framework for the protection of human rights, including the monitoring, investigation and reparation for human rights violations committed by Australian enterprises in their territories and in third States", - "values": [ - "4 - General action" - ] - }, - { - "text": "Continue to develop comprehensive human rights training and education programmes for various sectors of society, including assessment measures ", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Develop a national plan of action to end violence against indigenous women and take the necessary measures to ensure that national protection laws against domestic violence are enforced at all levels in a consistent and effective manner ", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Give priority to the improvement of the situation of certain vulnerable groups, especially women and children.", - "values": [ - "4 - General action" - ] - }, - { - "text": "Prevent and promptly, thoroughly and impartially investigate, prosecute and punish human trafficking and provide adequate protection and means of redress to the victims", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Establish a formal adhesion programme which includes the allocation of funds by the federal government to support the national policy on torture prevention", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Take measures to ensure the effective protection of the right to freedom of expression and information, as well as the independence of the media, and release all human rights defenders, journalists, and religious and political dissidents detained for the peaceful expression of their opinion ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Continue to strengthen access to education through various programmes and initiatives", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Respect international standards that provide safeguards guaranteeing protection of the rights of those facing the death penalty, to progressively restrict the use of the death penalty and reduce the number of offences for which it may be imposed, and establish a moratorium on executions with a view to abolishing the death penalty.", - "values": [ - "4 - General action" - ] - }, - { - "text": "Ratify the Rome Statute and OPCAT ", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Hasten the establishment of an independent national human rights institution with the support of and in cooperation with the international community ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Take effective measures to reduce overcrowding in prisons and lengthy pre-trial detention as well as strengthen the judicial system including for juvenile offenders ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Investigate harassment and attacks against journalists and human rights defenders in order to bring those liable to justice ", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Guarantee the conformity of the national Human Rights Commission with the Paris Principles, strengthen its independence and protect its members against reprisals and intimidation", - "values": [ - "4 - General action" - ] - }, - { - "text": "Continue the promotion of the rights of women", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Bolster its efforts to address the issue of trafficking in persons, especially women and girls, in a more comprehensive and systematic manner that includes all aspects of prevention, protection and prosecution ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Ensure that its military justice system is fully compliant with international human rights law, and that all allegations of human rights abuses by military personnel are investigated promptly and effectively", - "values": [ - "4 - General action" - ] - }, - { - "text": "Continue to give particular priority to Special Education for children who require highly specialized care ", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Redouble efforts to combat violence against women and girls, and ensure greater representation of women in managerial and decision-making positions ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Further invest in the medical and educational fields to promote comprehensive economic and social development", - "values": [ - "4 - General action" - ] - }, - { - "text": "Enhance the training and oversight of police to ensure compliance with domestic and international standards and human rights norms ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Strengthen human rights training and awareness-raising programmes for the police", - "values": [ - "4 - General action" - ] - }, - { - "text": "Continue efforts in the fight against impunity for gross violations of human rights committed during the armed conflict", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Enhance cooperation with the United Nations treaty bodies system and special procedures, through implementation of the recommendations of the treaty bodies and the universal periodic review ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Improve the treatment of all prisoners as regards medical and dental care, heating in winter, cooling in summer as well as the nutritional quality of the food served", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Adopt the measures necessary to combat de facto and de jure discrimination against migrants in irregular situations", - "values": [ - "4 - General action" - ] - }, - { - "text": "Continue to respect, protect, promote and fulfil all the rights and fundamental freedoms as stipulated in the bill of rights", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Enhance the legal protection of children against all types of violence and prohibit, through adequate legislative measures, all forms of corporal punishment ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Intensify efforts to prevent and combat violence against children, including corporal punishment", - "values": [ - "4 - General action" - ] - }, - { - "text": "Provide vaccination to all segments of society, especially women and children, in order to reduce mortality rates and raise life expectancy ", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Step up measures to combat discriminatory acts and hate speech against certain minority groups, emphasizing prevention and follow-up", - "values": [ - "4 - General action" - ] - }, - { - "text": "Agree to a moratorium on the death penalty as a first step toward ultimate abolition", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Take the necessary measures against all forms of discrimination and to maintain its efforts to raise awareness on this issue", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Solicit the necessary international assistance and cooperation in the establishment of a National Commission on Human Rights in accordance with the Paris Principles", - "values": [ - "1 - Minimal action" - ] - }, - { - "text": "Redouble its efforts to intensify human rights education and training of law enforcement officers, teachers and civil servants ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Take effective measures to fight the trafficking of foreign women and girls through its territory.", - "values": [ - "4 - General action" - ] - }, - { - "text": "Ratify the Kampala Amendments to the Rome Statute ", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Continue enhancing the implementation of public policies on education and health", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Adopt national legislation pertaining to refugees that includes the rights of refugees and asylum seekers", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Increase efforts to strengthen the rule of law ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Strengthen health-care services, with particular attention to women's and children's health", - "values": [ - "4 - General action" - ] - }, - { - "text": "Enhance safeguards on the use of the death penalty, including: adequate and early legal representation for cases which could attract the death penalty, non-application of the death penalty to those with mental illness, revising the Criminal Code to accord with relevant international human rights laws and obligations, and reinstating a moratorium on the use of the death penalty", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Adapt national legislation to fulfil its obligations under the Committee on the Elimination of Racial Discrimination.", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Strengthen the social welfare system to protect children in the most affected communities from harmful practices, violence and exploitation ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Guarantee detainees their fundamental rights, especially the right of access to a lawyer.", - "values": [ - "4 - General action" - ] - }, - { - "text": "Redouble its efforts to enforce the relevant legislation such as the Combating of Rape Act to eliminate all forms of gender-based violence, and continue the ongoing efforts to address the root causes and contributing factors of the violence", - "values": [ - "4 - General action" - ] - }, - { - "text": "Continue reform programmes with the support of the international community, as reflected in the Government's Development Strategies Plan and Policies, in its efforts to further advance human rights and improve the well-being of its people ", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Abrogate any provisions of defamation in criminal law, and replace them by appropriate provisions under civil law ", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Take necessary steps domestically to ensure compliance with the obligations under the international human rights instruments to which it is a party", - "values": [ - "4 - General action" - ] - }, - { - "text": "Bring the definition of torture in domestic law into line with the definition in article 1 of CAT", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Incorporate child sex tourism explicitly as a criminal offence in order to bring national legislation in conformity with the Optional Protocol to the Convention on the Rights of the Child on the sale of children, child prostitution and child pornography", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Continue efforts aimed at strengthening the fight against racism, racial discrimination and xenophobia", - "values": [ - "4 - General action" - ] - }, - { - "text": "Continue to pay high attention to and promote production of agriculture in order to reduce the number of people suffering from extreme poverty so as to guarantee a basic livelihood to people ", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Sign and ratify CAT and the Protocols thereto", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Continue all initiatives and efforts to improve the standard of living of the people of Brunei, especially in the field of health and quality of education", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Respond positively to the requests for a visit by the Special Rapporteur on the sale of children ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Consider ratifiying the Rome Statute of the International Criminal Court", - "values": [ - "3 - Considering action" - ] - }, - { - "text": "Ensure widespread, unannounced and rigorous factory inspections where breaches of the Labour Act 2006 occur and that those responsible are held accountable in a manner sufficient to ensure deterrence ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Implement Security Council resolutions in order to facilitate a (peaceful) political transition led by the Syrian people and based on the Geneva communiqué", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Adopt a law aimed at promoting access to education and health services for all children with disabilities", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Fight more vigorously human trafficking in the Mediterranean", - "values": [ - "4 - General action" - ] - }, - { - "text": "Continue with relevant consultations and adopt a law on combating trafficking in persons", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Remove the exception relating to marital rape from the definition of rape in section 375 of the Indian Penal Code", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Accelerate on-going efforts to ensure access to clean and safe water, and to healthcare, countrywide", - "values": [ - "4 - General action" - ] - }, - { - "text": "Intensify an all-inclusive transparent process with a view to fulfilling the aspirations of all Syrian people", - "values": [ - "4 - General action" - ] - }, - { - "text": "Adopt measures to effectively prevent the practice of female genital mutilation", - "values": [ - "4 - General action" - ] - }, - { - "text": "Continue to intensify the necessary actions to eliminate discrimination as well as the trend and/or media dissemination of stereotypes, which may encourage discrimination against minorities, particularly against Roma and Hungarians", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Intensify, through the creation of new plans, the efforts to reform the police corps, and counteract insecurity, illegal weapons' trafficking and sale of narcotics ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Speed up the rebuilding and compensation process in the aftermath of the Canterbury earthquakes ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Strengthen national institutions established to protect democracy and human rights and fight corruption", - "values": [ - "4 - General action" - ] - }, - { - "text": "Endeavour to introduce a law prohibiting violence and discrimination and combat xenophobic discourse and all forms of racial discrimination", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Establish an effective and independent police oversight mechanism.", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Expedite the enactment of existing Bills that would impact on the enjoyment of women's rights", - "values": [ - "4 - General action" - ] - }, - { - "text": "Strengthen domestic efforts to tackle modern slavery of children and rural workers, including through ratification of the ILO Protocol of 2014 to the Forced Labour Convention, 1930", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Improve measures to provide more access by all citizens to housing", - "values": [ - "4 - General action" - ] - }, - { - "text": "Continue the process of national reconciliations in order to enshrine the bases of the national unity, stability and internal security", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Establishment of a national shelter for the rehabilitation of former women prisoners upon release and their reintegration into society ", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Accelerate the process of ratification of the Optional Protocol to the International Covenant on Civil and Political Rights", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Strengthening coordination and effectiveness in official development assistance", - "values": [ - "4 - General action" - ] - }, - { - "text": "Continue its contribution to the efforts in alleviating the suffering of the vulnerable group of refugees until they return to their homeland ", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "With the support of the international community, continue to fight poverty.", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Consider becoming a member of the International Labour Organization (ILO) and ratifying the core ILO conventions ", - "values": [ - "3 - Considering action" - ] - }, - { - "text": "Establish without delay an independent national human rights institution in accordance with the Paris Principles", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Explicitly prohibit all corporal punishment of children, including in the home", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Ensure that crimes and violations against human rights defenders, journalists and lawyers are effectively investigated and prosecuted. that those responsible are punished", - "values": [ - "4 - General action" - ] - }, - { - "text": "Continue its policies aimed at strengthening the educational system", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Enhance the implementation of the laws and regulations of Cyprus in the protection of migrant workers ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Ensure, with the support of the international technical assistance, access for the entire population, including internally displaced persons, to drinking water and sanitation, food and nutrition, as well as health services", - "values": [ - "4 - General action" - ] - }, - { - "text": "Facilitate the active involvement of civil society stakeholders, including human rights non-governmental organizations, in follow-up to the review ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Consider ratifying the International Convention on the Protection of the Rights of All Migrant Workers and Members of Their Families and International Labour Organization Convention No. 189", - "values": [ - "3 - Considering action" - ] - }, - { - "text": "Reform its nationality law, provide women the capacity to acquire, retain and transfer citizenship on an equal basis with men, and bring the law into compliance with international human rights standards", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Guarantee the protection of the civil and political rights of all, particularly dissidents and members of minority groups", - "values": [ - "4 - General action" - ] - }, - { - "text": "Continue to seek the necessary technical and capacity-building assistance to effectively implement key national priorities and international human rights obligations", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Increase further the efforts aimed at preventing and eradicating human trafficking, including considering the possibility for the development of the national plan of action ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Amend the Constitution in keeping with the recent ruling by the European Court of Human Rights to recognize the equality of all citizens and prevent discrimination against minorities", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Take steps to ensure that all individuals can fully exercise their rights to peaceful assembly, association and freedom of expression, without intimidation or harassment. This includes revising laws to facilitate NGO registration and operations, sanctioning excessive interference by State officials, and reforming the Penal Code and national security laws to ensure that provisions related to criminal defamation, libel and insult are consistent with international human rights obligations", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Fulfil the obligations assumed as a State party to the Second Optional Protocol to the International Covenant on Civil and Political Rights, aimed at the abolition of the death penalty, and oppose any attempt to reinstate capital punishment", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Do its utmost to allow safe, timely and unimpeded access to humanitarian assistance ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Improve the access for persons with disabilities to education and health care, with particular focus on children ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Stop the sieges of Syrian cities and towns, including east Aleppo, in breach of international humanitarian law. Humanitarian access must be immediately ensured to all the Syrian people in need", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Continue to strengthen the work of the independent commission established to investigate the whereabouts of disappeared persons", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Take effective measure to eliminate discrimination on the grounds of race, religion and nationality and to guarantee the rights of Muslims, Roma people and migrant workers ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Continue to promote initiatives on dialogue among cultures", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Bolster the Office of the Federal Special Prosecutor on violence against women so that it may better investigate cases, and that cases falling within local jurisdiction be investigated with due diligence", - "values": [ - "4 - General action" - ] - }, - { - "text": "Fully protect and promote freedom of expression, association and peaceful assembly for all, without fear of arbitrary detention, intimidation or harassment, and investigate all allegations of torture or ill-treatment and hold the perpetrators to account", - "values": [ - "4 - General action" - ] - }, - { - "text": "Implement the strategic plan for the prevention, identification, support and prosecution of acts of violence against women and domestic staff ", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Develop and implement a new disarmament, demobilization and reintegration programme for dealing with armed groups, ensuring that former combatants are given realistic opportunities to reintegrate into the community and that children involved with armed groups are treated in line with international law", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Reform the National Security Act (2010) so it adheres to international standards, including by removing provisions that provide National Intelligence and Security Service officers with immunity from prosecution", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Ensure the immediate and unconditional release of all children recruited and used by armed groups, in particular through the immediate issuance of clear orders on all levels, and to take all measures required to prevent any future recruitment, and to ensure that child victims of armed conflict have access to adequate care, counselling and assistance with recovery and reintegration into their communities", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Ensure that relevant legislation guarantees the exercise of the rights to freedom of expression and association for all individuals, including human rights defenders and journalists", - "values": [ - "4 - General action" - ] - }, - { - "text": "Strive to put into practice the economic rights of individuals and make all possible efforts to overcome the difficulties with which the economy is confronted owing to the global financial crisis", - "values": [ - "4 - General action" - ] - }, - { - "text": "Take effective measures to curb discrimination and negative attitudes against migrants in Norway", - "values": [ - "4 - General action" - ] - }, - { - "text": "Prohibit corporal punishment at home and in schools and sensitize families in this respect", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Adopt political measures to increase the representation of women in decision-making and high-level posts in the public administration ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Adhere to article 14 of the International Convention on the Elimination of all Forms of Racial Discrimination in view of recognizing the competence of the Committee to receive and examine communications from individuals or groups of persons who allege being victims of violations of any of the rights stipulated in the Convention ", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Fight against impunity through conducting exhaustive investigations of all allegations of human rights violations", - "values": [ - "4 - General action" - ] - }, - { - "text": "Continue to seek technical assistance from the international community in the implementation of the accepted recommendations in the first and second cycles of the UPR", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Modify the current legislation to eliminate discrimination based on sexual orientation", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Contribute to reinforcing the role of civil society and suppress the administrative constraints and financial restrictions imposed by the 2009 law ", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Expeditiously and fully investigate and prosecute acts of violence and discrimination targeting women, indigenous, and lesbian, gay, bisexual, transgender and intersex (LGBTI) persons and guarantee an effective remedy to victims and their families", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Reflect on ways and means to address the obstacles and challenges that still affect Jamaican society, in particular the high rate of violent crime and worsening security problems and the country's extreme vulnerability to natural disasters and global economic instability, within a framework of close cooperation with the international community ", - "values": [ - "3 - Considering action" - ] - }, - { - "text": "Ensure implementation of the Convention on the Rights of Persons with Disabilities ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Amend the criminal code to address hate speech and incitement to violence and discrimination in the context of the media and election campaigning ", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Continue efforts to strengthen the capacity and compatibility between the investigation and prosecution of cases", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Continue its endeavour to create an independent national human rights institution that complies with the Paris Principles.", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Increase efforts at providing free and affordable education, including secondary education, to all segments of the population ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Increase efforts to eliminate all forms of violence against women, especially sexual violence against girls and adolescents", - "values": [ - "4 - General action" - ] - }, - { - "text": "Take effective measures to ensure the full implementation of the laws against \u201chonour\u201c crimes and rape and raise the legal age of marriage to 18 years in all provinces", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Continue working on its national policy on equal opportunities for women in order to enhance their participation and empowerment in public processes", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Continue improving economic, social and cultural rights.", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Strengthen the efforts made to combat violence against women by way of information, prevention, protection of victims and punishment of the perpetrators.", - "values": [ - "4 - General action" - ] - }, - { - "text": "Introduce a comprehensive strategy to eliminate patriarchal attitudes and stereotypes that discriminate against women, protect media pluralism and guarantee freedom of speech and access to information and education ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Legislation was being prepared to enable ratification of the Optional Protocol to the Convention against Torture", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Continue efforts to promote and protect human rights with all possible technical assistance by the international community and OHCHR.", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Continue implementing programmes and measures aimed at ensuring universal health care and quality education services for all its population", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Further ensure the promotion and protection of cultural diversity and tolerance within society through effective measures, including public campaigns", - "values": [ - "4 - General action" - ] - }, - { - "text": "Study and develop a more effective and convenient public service system, especially in social insurance, education and training, health care and legal assistance ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Continue with efforts to achieve approval in Congress of the Rome Statute of the International Criminal Court.", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Abolish all provisions in the Penal Code allowing capital punishment, and declare a moratorium on all executions ", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Continue to fight poverty with the support of the international community \n\n", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Continue its efforts to ensure full implementation of the rights of women.", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Strengthen efforts to ensure equality in the application of the law, counter discrimination against persons belonging to all minorities, promote their active participation in public life, and provide public services and infrastructure fairly.", - "values": [ - "4 - General action" - ] - }, - { - "text": "Take effective legal, institutional and awareness-building measures to combat domestic violence, racially-instigated crimes and trafficking of women for sexual exploitation.", - "values": [ - "4 - General action" - ] - }, - { - "text": "Take the necessary measures to improve conditions of detention, prevent and bring an end to arbitrary arrests and detentions and the practice of secret detention and, in this connection, set up a control mechanism for prisons which is independent and has free access to prisons ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Take concrete measures to abolish the death penalty", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Take effective measures to raise awareness of the rights stipulated in the conventions it has acceded to concerning the judiciary and law enforcement officials", - "values": [ - "4 - General action" - ] - }, - { - "text": "Consider ratifying the International Convention on the Protection of the Rights of All Migrant Workers and Members of their Families and the International Labour Organization Domestic Workers Convention, 2011 (No. 189)", - "values": [ - "3 - Considering action" - ] - }, - { - "text": "Allow the Special Rapporteur on the situation of human rights in Eritrea to visit the country, cooperate fully with her and give due consideration to the recommendations contained in her first report ", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Carry out the necessary amendments to its national legislation so that no crime is punished by the death penalty", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Continue its positive efforts in promoting and protecting the human rights of its people ", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Pass legislation as soon as possible to ensure that the Second Optional Protocol to the International Covenant on Civil and Political Rights is implemented in domestic law as soon as practicable", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Improve policies against discrimination through legislation regulating hate crimes, racism, xenophobia and anti-Semitism", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Strengthen measures to ensure the full independence of the judiciary", - "values": [ - "4 - General action" - ] - }, - { - "text": "Take urgent measures for the promotion and protection of the rights of the Palestinian population", - "values": [ - "4 - General action" - ] - }, - { - "text": "Promote judicial reforms and continue reducing the number of annual pending cases", - "values": [ - "4 - General action" - ] - }, - { - "text": "Eliminate discriminatory laws and adopt legislation on the status of all languages existing in Georgia ", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "To ensure an effective national preventive mechanism, as requested in OP-CAT, provide in its draft law for the full independence of this institution ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Enhance the law on the freedom of the media and promulgate laws on the freedom of expression", - "values": [ - "4 - General action" - ] - }, - { - "text": "Accede to the Rome Statute of ICC", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Continue to carry out further measures to strengthen the harmony between different ethnic and religious communities ", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Strengthen measures, including through international dialogue and cooperation, to combat human trafficking and provide appropriate assistance to victims of trafficking ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Consider improving and protecting particular groups including disabled and elderly ", - "values": [ - "3 - Considering action" - ] - }, - { - "text": "Ensure effective implementation of the proposed National Plan of Action for the promotion and protection of human rights ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Allow full access to and cooperate fully with the Commission of Inquiry and civil society monitors", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Pursue its thorough efforts to enshrine democratic norms and human rights", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Adopt the revised Persons and Family Code, criminalize domestic violence and intensify the fight against traditional practices, which discriminate against women or are detrimental to them ", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Seek the support of the international community and cooperate with it to formulate policies aimed at further broadening access to free and compulsory education, particularly for children from poor households ", - "values": [ - "1 - Minimal action" - ] - }, - { - "text": "Continue the scaled up efforts in all parts of the country to address and contain HIV/AIDS which has been one of the leading causes of morbidity and mortality", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Enact comprehensive legislation prohibiting all forms of torture and take measures to prevent all acts of torture in areas outside the national territory under its effective control", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Establish an official moratorium on the use of the death penalty ", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Redouble its efforts to advance women's rights, including by improving legal systems regulating marriage and family relations in a way that eliminates discrimination against women", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Strengthen the measures Ecuador has taken to address the needs of indigenous peoples", - "values": [ - "4 - General action" - ] - }, - { - "text": "Implement further actions in promoting social and work security, as well as efforts to spread the country\u2019s growth model in rural areas", - "values": [ - "4 - General action" - ] - }, - { - "text": "Ensure that the education system is fully equipped to implement an inclusive education policy ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Continue its efforts in effectively implementing the amendment to the Anti-Discrimination Act with a view to further combating discrimination in the country ", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Abolish the death penalty and, in any event, establish a moratorium as an interim measure towards full abolition ", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Introduce adequate measures with a view to promoting freedom of expression as well as media freedom ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Establish mechanisms for dealing with cases of corporal punishment of children with a view to effective law enforcement", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Continue its positive practice of incorporating intercultural education into the education system as part of the recognition of ethnic diversity", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Comply with its obligations with respect to the right to freedom of expression and information", - "values": [ - "4 - General action" - ] - }, - { - "text": "Continue the harmonization of legal frameworks in line with Constitutional texts", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Remove the requirement in the law on sponsorship for foreign nationals to obtain the permission of their current employer before moving jobs or leaving the country, and ensure that the rights of migrant workers are protected ", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Adopt all necessary measures to put an end to the widespread practice of corporal punishment of minors at home, in school and by the police force, as recommended by the Committee on the Rights of the Child in 2003.", - "values": [ - "4 - General action" - ] - }, - { - "text": "Continue to apply measures to guarantee access to health services and quality education for all its population ", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Accelerate the reduction of preventable maternal, new-born and child mortality in the country", - "values": [ - "4 - General action" - ] - }, - { - "text": "Train professionals involved in the judicial system on the relevant international standards on a fair trial and rule of law ", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Publicly speak out on reported cases of intimidation and violence - including murder - of trade unionists, the staff of non-governmental organizations and journalists and to ensure effective investigations and accountability for perpetrators", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Continue its international efforts to create an international order based on cooperation and inclusion", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Strengthen its cooperation with countries in the region to prevent and combat trafficking, in particular of women", - "values": [ - "4 - General action" - ] - }, - { - "text": "Develop a national strategy to guarantee better access to education to all children and to include in the school system at all levels appropriate measures in the field of human rights education, in accordance with the Plan of Action 2005-2009 of the World Programme for Human Rights Education", - "values": [ - "4 - General action" - ] - }, - { - "text": "Adopt a comprehensive national plan to address comprehensively the problem of gender-based violence, whether physical, psychological or sexual, providing to all relevant public services sufficient resources to implement these policies, taking into account the specific circumstances of women and girls who suffer from the most serious vulnerability", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Embark on a clear road map for the swift implementation of the legislation and regulatory framework for the new Constitution so that it can make progress with regard to economic, social and cultural rights and to achieve the Millennium Development Goal related to poverty reduction", - "values": [ - "4 - General action" - ] - }, - { - "text": "Take measures towards adopting specific legislation prohibiting domestic violence and spousal rape", - "values": [ - "4 - General action" - ] - }, - { - "text": "Repeal provisions in national law that criminalize same sex relations, including in the Sexual Offences Act, and take steps to ensure the rights of these persons are protected ", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Take the necessary measures to put an end to impunity in all cases of violence against women", - "values": [ - "4 - General action" - ] - }, - { - "text": "Apply international human rights and humanitarian law in the Occupied Palestinian Territories and the occupied Syrian Golan.", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Seriously address the issues of child pornography and human trafficking in girls and boys for sexual purposes, including by encouraging police and border forces to strengthen efforts at fighting these phenomena as well as seeking accountability where lack of state efforts at prosecution could amount to human rights violations ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Ratify the ILO Domestic Workers Convention, 2011 (No. 189)", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Continue strengthening the legal safeguards against ill treatment, and pursue efforts to reduce incidents of ill treatment by law enforcement personnel", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Criminalize homophobic hate speech in the public discourse", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Broaden the area of freedom of the media, in particular by eliminating restrictions on foreign and national media and adopting more flexible rules relating to the accreditation of foreign journalists.", - "values": [ - "4 - General action" - ] - }, - { - "text": "Make further efforts for combating domestic violence, as the problem of domestic violence is still present", - "values": [ - "4 - General action" - ] - }, - { - "text": "Incorporate the provisions of the Convention against Torture into domestic laws, and implement the recommendations of the Committee against Torture following the inquiry mission to Lebanon", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Effectively implement the Zero Tolerance Campaign and key interventions of the National Human Rights Action Plan 2015 with regard to gender-based violence", - "values": [ - "4 - General action" - ] - }, - { - "text": "Consider expanding application of the Custody Hearings Programme and make it feasible before all State Courts", - "values": [ - "3 - Considering action" - ] - }, - { - "text": "Proceed with the early conclusion of the International Convention for the Protection of All Persons from Enforced Disappearance", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Intensify its efforts to protect women from domestic and sexual violence and to ensure that acts of such violence are fully investigated and those responsible held accountable ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Step up processes that would raise the level of health care to all Iraqis", - "values": [ - "4 - General action" - ] - }, - { - "text": "Take all necessary measures to provide street children with protection and rehabilitation", - "values": [ - "4 - General action" - ] - }, - { - "text": "To work actively towards political and economic empowerment of women ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Extend an open and standing invitation to all special procedures of the Human Rights Council ", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Take measures to amend the 2005 counter-terrorism law with the aim of reducing the risk of misapplication of the law", - "values": [ - "4 - General action" - ] - }, - { - "text": "Consider ratification of the third protocol to the Convention on the Rights of the Child, thereby establishing a procedure for the presentation of communications", - "values": [ - "3 - Considering action" - ] - }, - { - "text": "Amend the Criminal Code as to abolish the death penalty ", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Expedite legal and institutional reforms to fully protect in law and in practice freedom of expression, association and assembly, and religion and belief", - "values": [ - "4 - General action" - ] - }, - { - "text": "Further strengthen the Slovak National Centre for Human Rights (SNCHR) so that it can discharge its mandate in a comprehensive and effective manner. ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Ratify the International Convention for the Protection of All Persons from Enforced Disappearance as an expression of its commitment to addressing this issue", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Collaborate with the Haitians authorities on migration issues ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Support women\u2019s conflict prevention efforts and provide technical assistance on conflict resolution processes to countries emerging from conflict in order to promote women\u2019s effective participation", - "values": [ - "4 - General action" - ] - }, - { - "text": "Intensify its efforts to fight corruption, including by raising public awareness ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Continue and deepen the Second Plan on Equal Opportunities for Men and Women and the Government's Agenda for Gender Equality so as to totally eliminate discrimination against women at work, in decision-making positions, in the management of the marital partnership (regimen patrimonial de sociedad conjugal) and in society as a whole.", - "values": [ - "4 - General action" - ] - }, - { - "text": "Continue reviewing the legislation that has discriminatory consequences on women", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Take necessary measures to speed up gender equality in practice, especially in access to professions, including at the highest level, to property, capital, medical services and housing", - "values": [ - "4 - General action" - ] - }, - { - "text": "Organise regional and international conferences in cooperation with international and regional human rights organisations in order to exchange views, best practices and experiences in strengthening a human rights culture", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Promote the human rights education and awareness-raising", - "values": [ - "4 - General action" - ] - }, - { - "text": "Ratify the International Convention on the Protection of the Rights of All Migrant Workers and Their Families to guarantee their protection against all human rights violations", - "values": [ - "4 - General action" - ] - }, - { - "text": "Adopt and establish all the necessary legal and institutional framework to protect and shelter victims of all forms of exploitation and harassment ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Combat hate propaganda and incitement against minority groups, especially LGBTI persons, religious minorities, AIDS patients and persons with disabilities through the adoption of a comprehensive package of laws and effective mechanisms to combat discrimination, including in the public administration", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Consider ratifying the Convention on the Rights of Persons with Disabilities as well as the Optional Protocol to the Convention on the Rights of the Child on the involvement of children in armed conflict ", - "values": [ - "3 - Considering action" - ] - }, - { - "text": "Step up its efforts to implement the Police Powers and Duties Act (PPDA) ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Guarantee freedom of expression, the press, assembly and association, as well as freedom of religion and belief in accordance with the International Covenant on Civil and Political Rights", - "values": [ - "4 - General action" - ] - }, - { - "text": "Consider a complete abolition of the death penalty.", - "values": [ - "3 - Considering action" - ] - }, - { - "text": "Eliminate any discriminatory provisions that are incompatible with international treaties dealing with the rights of women.", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Strengthen its cooperation with treaty bodies, including by agreeing on timelines for the submission of overdue reports ", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Continue to implement the necessary measures to ensure the right to education for all citizens", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Intensify human rights awareness campaigns", - "values": [ - "4 - General action" - ] - }, - { - "text": "Make further efforts to ensure that the social services provided for children remain a priority.", - "values": [ - "4 - General action" - ] - }, - { - "text": "Consider adopting a de jure moratorium in view to abolishing the death penalty", - "values": [ - "3 - Considering action" - ] - }, - { - "text": "Intensify cooperation with the international community in order to ensure access of international human rights and humanitarian actors and monitoring mechanisms to the whole territory of Ukraine within its internationally recognized borders with the aim to monitor, report on and address the human rights situation", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Take measures to combat and abolish all forms of slavery in practice", - "values": [ - "4 - General action" - ] - }, - { - "text": "Provide effective protection to migrant workers and address the issue of the exploitation of migrant workers", - "values": [ - "4 - General action" - ] - }, - { - "text": "Investigate in an exhaustive manner all alleged cases of torture and ill-treatment, bring to justice the perpetrators and ensure moral and material support to the victims ", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Remove its reservation to article 16 of CEDAW concerning the equality of men and women in all matters relating to marriage and family relations, and adjust its domestic framework accordingly ", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Maintain the strategies of holistic health and provisions of health care, with special emphasis on vulnerable groups, despite the budget cuts due to the economic crisis ", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Sign and ratify OP-CAT ", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Have further legal procedures to combat racial discrimination and develop a plan to combat racism, as recommended by the Committee on the Rights of the Child", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Take the necessary legal measures to protect journalists and investigate all acts of intimidation and violence against journalists", - "values": [ - "4 - General action" - ] - }, - { - "text": "Strengthen the Ministry for the Advancement of Women to meet the specific needs of women and girls", - "values": [ - "4 - General action" - ] - }, - { - "text": "Improve schools and other educational facilities and environments to meet the needs of persons with disabilities ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Continue strengthening the health system and the implementation of the national strategy to fight HIV/AIDs ", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Consider the possibility of acceding to the Rome Statute of the ICC as well as its Agreement on Privileges and Immunities", - "values": [ - "3 - Considering action" - ] - }, - { - "text": "Continue to develop measures aimed at strengthening the rights of women, non-discrimination and the elimination of obstacles created by socio- cultural models and stereotypes ", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Implement its commitment to holding a constitutional referendum on children's rights with a view to incorporating those rights into the Irish Constitution ", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Continue efforts to combat sexual violence against children", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Continue interaction with the Human Rights Council and its mechanisms with a view to strengthening the rule of law and protecting human rights in accordance with international instruments to which Libya has acceded", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Provide particular attention to social groups which are in vulnerable situation, such as women, children, persons with disabilities and the elderly", - "values": [ - "4 - General action" - ] - }, - { - "text": "Actively consider specific legislation in the area of gender discrimination, including violence against women", - "values": [ - "3 - Considering action" - ] - }, - { - "text": "Intensify the policy of social reintegration of abandoned children and school dropouts", - "values": [ - "4 - General action" - ] - }, - { - "text": "Provide training services and professional development to all teachers", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Further advance its national efforts on the promotion and protection of human rights through, among others, developing a comprehensive Human Rights National Action Plan", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Guinea takes this opportunity to reiterate its pledges to recognize, protect and promote human rights in order to better safeguard them within the country, and undertakes to continue to build on its frank and constructive dialogue at the international level, inter alia with the United Nations human rights bodies.", - "values": [ - "4 - General action" - ] - }, - { - "text": "Facilitating access for undocumented immigrants and their children to health care under that Act", - "values": [ - "4 - General action" - ] - }, - { - "text": "Continue to assess the possibility of acceding to ICESCR and ICCPR ", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Continue its efforts to improve education in the country, to enhance the number of girls enrolled in pre-primary and primary education and to ensure a compulsory and free education", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Accede to OP-CAT and the optional protocols to the treaties to which it is a Contracting Party in order to recognize the competence of Treaty Bodies in complaints, inquiry and urgent action procedures ", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Request the international community to provide appropriate assistance, enabling Chad to achieve the objectives envisaged in paragraph 89 of its national report.", - "values": [ - "1 - Minimal action" - ] - }, - { - "text": "Further seek international financing and cooperation for judiciary and police reform and for the provision of care and support for victims of sexual violence. ", - "values": [ - "1 - Minimal action" - ] - }, - { - "text": "Abolish the death penalty and ratify OP-CAT ", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Thoroughly implement legislation and develop procedures involving civil society to ensure the protection of indigenous people, especially in the context of land disputes and forced evictions", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Address unemployment among young people ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Continue adopting measures to eliminate discrimination, particularly gender-based discrimination ", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Continue strengthening the judiciary system, in particular the independence of the judiciary, access to justice, and combating impunity", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Seek technical assistance to meet its human rights obligations, including the submission of its overdue reports to the relevant treaty bodies", - "values": [ - "1 - Minimal action" - ] - }, - { - "text": "Abide by its commitment of 2009 and establish a clear timeframe in order to ratify ICCPR", - "values": [ - "4 - General action" - ] - }, - { - "text": "Consider ratifying the ILO Domestic Workers Convention, 2011 (No. 189) ", - "values": [ - "3 - Considering action" - ] - }, - { - "text": "Ratify the following international human rights instruments: the second Optional Protocol to the International Covenant on Civil and Political Rights - OP-CAT - the two Optional Protocols to CRC - CRPD and its Optional Protocol and the Rome Statute ", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Ensure operation of the national preventive mechanism, particularly by allowing the National Human Rights Commission unhindered access to all detention facilities", - "values": [ - "4 - General action" - ] - }, - { - "text": "Unequivocally condemn all incitement to violence or hatred and ensure that provisions for addressing agitation against a national or ethnic group are clearly stipulated under Austrian law ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Step up efforts to achieve greater independence of the judiciary. In this regard, substantially increase the resources for the administration of justice, provide training and education on human rights for its staff, and adopt legislative measures to strengthen the independence of judicial action in accordance with international standards ", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Continue its efforts to find ways to vindicate human rights of citizens, in particular of the families of the victims of disappearances.", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Continue efforts to combat human trafficking and rehabilitate its victims", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Protect and guarantee freedoms of expression and association in order to enable human rights defenders, NGOs and other civil society actors to be able to conduct their activities without fear of being endangered or harassed", - "values": [ - "4 - General action" - ] - }, - { - "text": "The new softened media regulations for foreign journalists be extended to Chinese journalists", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Invite the Council to adopt the National Report of the Kingdom of Bahrain and to present the comprehensive support needed for the Kingdom of Bahrain in order to handle related challenges ", - "values": [ - "1 - Minimal action" - ] - }, - { - "text": "Increase the human and financial resources of the Ministry for Temporarily Occupied Territories and International Displaced Persons in order to fulfil its mandate fully", - "values": [ - "3 - Considering action" - ] - }, - { - "text": "Regularly publish updated socioeconomic data, including on health and nutrition, especially by strengthening existing national instruments, such as the Venezuelan system of food and nutrition surveillance", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Granting the right to those who object to serve in the army on conscientious grounds to serve instead with a civilian body independent of the military, such as in the form of the newly established and strengthened Public Commission for National Civil Service", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Continue reforms to improve conditions of detention and make increased use of non-custodial measures as suggested by treaty bodies ", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Establish a general coordinated strategy on gender issues within all the public institutions", - "values": [ - "4 - General action" - ] - }, - { - "text": "Develop an academic curriculum on the basis of human rights standards, values and international conventions", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Amend its legislation for the legal recognition of same-sex couples ", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Continue consolidating the successful measures established to ensure food security and the welfare of its people ", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Continue deepening the ongoing consultations of the human rights institutions of the State with social organizations and non-State actors", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Observe the national law for all young girls with regards to the legal age of marriage and take firm action to prevent young girls from becoming victims of forced and early marriage, particularly in rural areas", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Strengthen actions against harmful cultural practices", - "values": [ - "4 - General action" - ] - }, - { - "text": "Provide adequate accommodation for refugees and asylum seekers and their children, away from unhealthy locations such as near airports", - "values": [ - "4 - General action" - ] - }, - { - "text": "Address the root causes of the situation in Rakhine State, including articulating a clear pathway to citizenship for those who identify as Rohingya", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Develop proactive strategies for economic development and social cultural transformation, with priority given to addressing the problems of discrimination against women, gender-based violence, the HIV/AIDS epidemic, child labour, corporal punishment of children, and sorcery-related killings", - "values": [ - "4 - General action" - ] - }, - { - "text": "Consolidate its economic growth initiatives with the help of its technical and financial partners ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Continue developing and implementing measures that allow the inclusion of persons with disabilities", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Strengthen measures to further reduce the gap in the redistribution of wealth as part of its ongoing efforts toward poverty eradication", - "values": [ - "4 - General action" - ] - }, - { - "text": "Provide full implementation of the National Policy for the Protection of Human Rights Defenders", - "values": [ - "4 - General action" - ] - }, - { - "text": "Ensure adequate training of police in order to increase their capability to deal with domestic violence cases, and take further steps to raise public awareness of domestic violence as a criminal offence ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Strengthen measures concerning people with disabilities", - "values": [ - "4 - General action" - ] - }, - { - "text": "Continue its efforts in protecting the rights of persons with disabilities and make its experience available in the framework of sharing best practices ", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Acknowledge the full applicability of ICCPR to persons subject to its jurisdiction both at home and abroad", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Actively review the level of protection of children within the criminal justice system, through raising the age of criminal responsibility and avoid the trying of cases involving children between the ages of 16 and 18 in adult courts ", - "values": [ - "3 - Considering action" - ] - }, - { - "text": "Consider ratifying international human rights treaties to which it is not yet a State party", - "values": [ - "3 - Considering action" - ] - }, - { - "text": "Bring the State legislation into line with CRPD", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Issue a standing invitation to all Special Procedures", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Consider ratifying the ICCPR and establishing a National Human Rights Institution", - "values": [ - "3 - Considering action" - ] - }, - { - "text": "Investigate all allegations of torture and ill-treatment in prisons and places of detention and prosecute persons responsible", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Take forward the concept of environmental rights at the Human Rights Council, bearing in mind Costa Rica's historic leadership on this issue", - "values": [ - "4 - General action" - ] - }, - { - "text": "Continue taking measures to prevent infanticide of so-called child witches", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Address the issue of hate crime and racist and xenophobic discourse", - "values": [ - "4 - General action" - ] - }, - { - "text": "Improve the procedures used to identify victims and to address the special needs of child victims of trafficking", - "values": [ - "4 - General action" - ] - }, - { - "text": "Apply the methodological proposal to implement the consultation accepted by the Quiché indigenous authorities on those matters related to indigenous people", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Continue the efforts of reforming the educational sector and reducing illiteracy, especially among women ", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Operationalize the Technological University", - "values": [ - "4 - General action" - ] - }, - { - "text": "That the Department of Gender Affairs ensure that its programmes to combat domestic and sexual violence include measures that target violence perpetrated against men and boys", - "values": [ - "4 - General action" - ] - }, - { - "text": "Ensure that all citizens can take part in political life without discrimination ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Strengthen measures to ensure that women's access to education is enhanced", - "values": [ - "4 - General action" - ] - }, - { - "text": "Strengthen cooperation with human rights mechanisms in order to continue to harmonize national legislation with the international standards", - "values": [ - "4 - General action" - ] - }, - { - "text": "Continue its efforts to fight against hate crimes, hate speech and incitement to hatred, including in political discourse, to prosecute members of racist or xenophobic extremist groups, and to combat racial prejudice and racial discrimination in the media ", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Accede to and fully align the national legislation with the Rome Statute of the International Criminal Court, including by incorporating provisions to cooperate promptly and fully with the Court in investigations and prosecutions, and accede to the Agreement on Privileges and Immunities of the Court", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Watch over the full implementation of laws that forbid corporal punishment in all settings through, among other measures, awareness-raising campaigns between adults and children, as well as the promotion of positive and non-violent forms of discipline that do not affect the upbringing of these children ", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Take measures aimed at ensuring the economic rights of women, addressing the issue of their employment and increasing their participation in the political life of the country ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Restore the legitimacy and credibility of trials in the country", - "values": [ - "4 - General action" - ] - }, - { - "text": "Continue its efforts to fight poverty and ensure sustainable development, and to implement at the maximum extent the national development strategy for 2006-2015 and the national poverty reduction strategy for 2010-2012", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Speed up the process to adopt the Development Plan for Children and Families 2011-2020 ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Further efforts to establish a national human rights institution in full compliance with the Paris Principles in order to deepen the scope of the human rights protection in the Republic of Yemen ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Implement the comprehensive diversity strategy for 2016-2026", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Consider establishing an independent national human rights institution that complies with the Paris Principles.", - "values": [ - "3 - Considering action" - ] - }, - { - "text": "Taking into account the provisions of the CRC, to take further measures to prohibit all forms of violence against children, including corporal punishment and to raise the minimum age of criminal responsibility", - "values": [ - "4 - General action" - ] - }, - { - "text": "Ensure all cases of human rights violations are impartially investigated and prosecuted in proportion with the crimes committed ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Consider ratifying or acceding to: OP-CAT", - "values": [ - "3 - Considering action" - ] - }, - { - "text": "Accede to the ICERD ", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Continue to take steps to ensure that its laws and politics are in line with the articles of the Convention on the Rights of Persons with Disabilities", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Share its experiences and lessons learned with other developing countries.", - "values": [ - "1 - Minimal action" - ] - }, - { - "text": "Continue its efforts to guarantee the rights of women and to eradicate gender discrimination, and pay special attention to combat gender- motivated violence against migrant women ", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Increase programmes aimed at combating prejudices regarding the role of women in society, in order to complement the legislative and institutional efforts to achieve de jure and de facto equality between men and women ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Consider the possibility of signing or ratifying the International Covenant on Civil and Political Rights (ICCPR), the International Covenant on Economic, Social and Cultural Rights (ICESCR), the International Convention on the Elimination of All Forms of Racial Discrimination (ICERD), the Convention against Torture and Other Cruel, Inhuman or Degrading Treatment or Punishment (CAT) and the International Convention for the Protection of All Persons from Enforced Disappearance ", - "values": [ - "3 - Considering action" - ] - }, - { - "text": "Ensure the enforcement of the legal framework for the prosecution of human traffickers and appropriate assistance for victims of trafficking in human beings ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Promote the drawing up and adoption of a national human rights plan", - "values": [ - "4 - General action" - ] - }, - { - "text": "Establish a moratorium on the use of the death penalty in view of its abolition", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Take additional measures in order to improve the implementation of legislation protecting against domestic violence, including through awareness raising campaigns and training on domestic violence for officials ", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Unconditionally abolish its extraterritorial legislation on human rights and other related matters against other countries including the North Korea Human Rights Act, as these legislations represent flagrant breach of their sovereignty and insulting violations of the dignity and the rights of the people", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Provide access to adequate housing, with a focus on assistance to low-income families ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Take the necessary measures for the full implementation of the Optional Protocol to the Convention against Torture, and in particular, establish an independent national preventive mechanism", - "values": [ - "4 - General action" - ] - }, - { - "text": "Establish a formal moratorium on the death penalty with a view to ratifying the Second Optional Protocol to the International Covenant on Civil and Political Rights ", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Continue its efforts in order to reduce stereotypical approaches to the roles and responsibilities of women", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Do not house all prisoners together, but rather separate them on the basis of the nature and severity of their crime ", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Further open its doors to cooperation with human rights and humanitarian organizations, including by extending an open invitation to Special Procedures and allow ICRC to have access to prisons and visit prisoners ", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "The Government provides compulsory and free primary schools. There needs to be a system of checks to ensure that all children are allowed to go to school. Legislation provides that parents can be taken to court and charged if proved that they purposely hold their children from school. Due to financial constraints, some families may prefer boys go to school whilst girls are 'educated' at home. This practice is fast becoming extinct and education statistics have shown higher number of girls obtaining scholarships in past years. Primary, Secondary, Junior Secondary Schools (JSS) and Tertiary Institutions are highly subsidized by Government through provision of Teacher salaries, free equipment and other teaching materials.", - "values": [ - "1 - Minimal action" - ] - }, - { - "text": "Continue efforts to establish a national human rights institution in accordance with the Paris Principles", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Amend article 14 of the Computer Crimes Act to ensure it cannot be used to prosecute cases of alleged defamation", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Take the necessary measures to implement the recommendations of CEDAW and the Human Rights Committee concerning violence against women and FGM.", - "values": [ - "4 - General action" - ] - }, - { - "text": "Intensify efforts to prevent discrimination against ethnic groups and combat discrimination against persons from immigrants backgrounds ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Continue efforts to lay the foundations for stability and development at all levels, particularly with regard to the promotion and protection of human rights", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Take additional legislative and other measures to address gender inequality and racial discrimination", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Guarantee access to primary and secondary education to all children, including migrant children and asylum seekers ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Respect the right to freedom of assembly as well as to carry out investigations into excessive use of force by security forces against peaceful protesters", - "values": [ - "4 - General action" - ] - }, - { - "text": "Ensure the realization of freedom of the press and the media, in line with ICCPR standards", - "values": [ - "4 - General action" - ] - }, - { - "text": "Ratify or access, as appropriate, the Convention on Migrant Workers", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Consider adapting the Marriage Act of 1971 and set a minimum marriage age at 18 years for boys and girls according to international standards", - "values": [ - "3 - Considering action" - ] - }, - { - "text": "Ratify the International Convention for the Protection of All persons from Enforced Disappearance", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Ensure access to effective asylum procedures in line with international law and ensure that migration policies fully respect the principle of non-refoulement and are in line with European Union legislation", - "values": [ - "4 - General action" - ] - }, - { - "text": "Include human rights courses in the in-service training of public and law enforcement officials", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Continue the reform process and ensure accountability by investigating all allegations of torture and mistreatment and by prosecuting any individuals found responsible, including senior government officials ", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Adopt quick and effective measures, as well as necessary legislation, in order to explicitly prohibit, prevent, punish and abolish discrimination on any grounds, including on the basis of HIV-AIDS status ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Take further comprehensive measures to address the issue of corruption, in particular in the police force.", - "values": [ - "4 - General action" - ] - }, - { - "text": "Modify the criminal code to harmonize its provisions with those of the International Convention on the Elimination of All Forms of Racial Discrimination", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Promote cultural diversity and acceptance of multiculturalism ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Monitor the implementation of the legislation concerning freedom of religion with a view to ensuring full enjoyment of the freedom to practice one's religion by all religious communities and groups in the country.", - "values": [ - "4 - General action" - ] - }, - { - "text": "Implement a zero-tolerance policy on sexual and gender-based violence and ensure the prosecution of all perpetrators of violence against women, rehabilitation and support for victims of violence", - "values": [ - "4 - General action" - ] - }, - { - "text": "Identify specific challenges confronting the country, prioritize them in line with the needs and aspirations of its citizens and then seek support from the international community to face these challenges in a systematic and verifiable manner.", - "values": [ - "4 - General action" - ] - }, - { - "text": "Ensure that prisoners or detainees are treated with dignity and humanity, with due consideration for the Standard Minimum Rules for the Treatment of Prisoners ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Take further steps to address discrimination against women, with a particular focus on reducing violence against women", - "values": [ - "4 - General action" - ] - }, - { - "text": "Continue strengthening the necessary policies to promote gender equality, with a focus on education, on adopting awareness campaigns for the population against gender violence, and on putting in place specific legislation that criminalizes violence against women", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Release all remaining political prisoners", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Improve the quality of public education in order to preserve the excellent standards which have prevailed in Lebanon for decades at the different levels of education", - "values": [ - "4 - General action" - ] - }, - { - "text": "Ensure a favourable climate for the activities of journalists, human rights defenders and other actors of civil society ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Strengthen mechanism for the implementation of legislation in force including laws against discrimination and the manifestation of racism ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Allocate sufficient resources for potable water projects, especially in rural and marginalized areas ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Take measures to facilitate access to justice for victims of sexual violence, such as by issuing the medical certificates necessary to lodge complaints for sexual violence ", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Ensure that impartial and effective investigations of attacks against journalists take place and that those responsible are brought to justice", - "values": [ - "4 - General action" - ] - }, - { - "text": "Consider the possibility of signing and-or ratifying the International Convention for the Protection of all Persons from Enforced Disappearance CED", - "values": [ - "3 - Considering action" - ] - }, - { - "text": "Adopt, as soon as possible, public norms and policies designed to punish physical and psychological abuse against persons with disabilities and take concrete measures to improve treatment and care conditions, including social protection measures", - "values": [ - "4 - General action" - ] - }, - { - "text": "Take steps to ensure that all deportations are conducted in coordination with the Government of the Democratic Republic of the Congo and that all returns respect the human rights and the dignity of migrants", - "values": [ - "4 - General action" - ] - }, - { - "text": "Put measures in place to better protect religious freedom, including through bringing the older Penal Code, which prohibits conversion from Islam, in line with the Constitution, and enabling people of all religions to practice religion openly without risking discrimination ", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Maintain its effective protection for the family as the natural and fundamental unit of the society ", - "values": [ - "3 - Considering action" - ] - }, - { - "text": "Continue to take effective measures to increase enrolment in primary and secondary schools, to reduce the high dropout rate of students, particularly in rural areas, and to address the lack of school infrastructure in those areas", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Establish an independent vetting mechanism to exclude suspected perpetrators of gross human rights violations from the army, police and intelligence services. ", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Work closely with OHCHR to build the capacity of its national institutions and seeks States' assistance on counter-terrorism strategies, especially by countering terrorist fund-raising efforts in their territories and in accordance with Security Council resolutions and international conventions.", - "values": [ - "4 - General action" - ] - }, - { - "text": "Adopt additional measures for the elimination of FGM and traditional practices which cause pain to women ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Continue efforts to improve labour relations system through the development of social dialogue between the Government and the organizations of employers and workers", - "values": [ - "4 - General action" - ] - }, - { - "text": "Improve protection of victims of domestic violence, including by providing with shelter and legal aid", - "values": [ - "4 - General action" - ] - }, - { - "text": "Maintain a public and accessible list of all detainees in the country, including those that were detained for incidents related with the armed conflict", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Accede to the international instruments to which Saint Lucia is not a party, submit overdue reports to the corresponding treaty bodies, and strengthen its cooperation with OHCHR for the institutional development of the human rights protection system ", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Continue to implement strategies to reduce poverty and to improve and promote education \n\n", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Reconsider its position about the continued legality of corporal punishment of children ", - "values": [ - "3 - Considering action" - ] - }, - { - "text": "Ensure that all killings by law enforcement personnel are properly registered and thoroughly, independently investigated ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Adopt a National Action Plan on Security Council resolution 1325 on Women, Peace and Security", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Consider legislation and-or additional policy measures to promote tolerance and non-discrimination of lesbian, gay, bisexual and transgender persons.", - "values": [ - "3 - Considering action" - ] - }, - { - "text": "Hong Kong Special Administrative Region and Macao Special Administrative Region continue to function according to their realities and preserve different rights of their citizens in accordance with their laws", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Harmonize traditional and legal regulations regarding the protection of women as well as the elimination of all exceptions based in traditional practices, to the principle of non-discrimination of article 23 of the Constitution", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Create a positive environment for the activities of human rights organizations and other independent non-governmental organizations, notably by eliminating obstacles to their official registration ", - "values": [ - "4 - General action" - ] - }, - { - "text": "End politically motivated prosecutions of individuals it deems opposition, and take steps to strengthen the rule of law, including respecting minimum guarantees as laid out in the International Covenant on Civil and Political Rights, equal protection of the law, and judicial independence ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Establish a moratorium on the death penalty, accede to the Second Optional Protocol to the International Covenant on Civil and Political Rights, and take all necessary steps to remove the death penalty from Trinidad and Tobago law ", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Continue to improve procedures to ensure the rights of people of African descent", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Expand the activity of the Commissioner for the Rights of Child ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Strengthen efforts to ensure women's representation in influential posts in national and regional government", - "values": [ - "4 - General action" - ] - }, - { - "text": "Extend the protection of the Labour Code to domestic workers", - "values": [ - "4 - General action" - ] - }, - { - "text": "Step up efforts to investigate and act upon instances of hate speech and hate crime and to ensure effective access to justice and remedies for victims, including lesbian, gay, bisexual, transgender and intersex persons and members of religious or ethnic minority communities", - "values": [ - "4 - General action" - ] - }, - { - "text": "Invite representatives of international human rights organizations to visit the Bolivarian Republic of Venezuela, including by issuing a standing invitation to the United Nations special procedures and work with OHCHR on a truth commission", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Redouble efforts to fight all forms of discrimination and racism, including hate speech and xenophobia", - "values": [ - "4 - General action" - ] - }, - { - "text": "Abolish definitively the death penalty, in continuation of the de facto moratorium on executions applied since 2007 ", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Combat hate speech and hate crime, including in the political sphere, and, to this end, collect and evaluate hate speech and hate crime data, and promote inter-ethnic and interreligious tolerance, in particular in the education system", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Consider signature and ratification of the Optional Protocol to the Convention on the Elimination of All Forms of Discrimination Against Women. ", - "values": [ - "3 - Considering action" - ] - }, - { - "text": "That the Malagasy political movements agree on a transitional Government in keeping with the Maputo and Addis Ababa agreements and that the transitional Government returns the country to democracy through organizing inclusive, free, fair and transparent elections as soon as possible", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Take measures to ensure that all the legislation, especially on press and media, including digital media, is fully aligned with its international human rights obligations", - "values": [ - "4 - General action" - ] - }, - { - "text": "Continue its successful efforts to improve the living conditions of persons with disabilities", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Enhance legislative reforms amongst others by taking measures to ensure in the short term, as well as legally and in practice, the registration of fully independent human rights NGOs", - "values": [ - "4 - General action" - ] - }, - { - "text": "Continue the programmes aimed at promoting the human rights of disabled persons and submit within the set timeframe the initial report to the Committee established by the Convention on the Rights of Persons with Disabilities", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Continue efforts to reduce non-attendance and the dropout rate from the educational system", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Furthermore, based on the model of Sweden, Romanian authorities are preparing a reflection process for the launch of a comprehensive National Plan of Action (NPA) for Human Rights, which will be reviewed annually. Within the framework of this process, which has also been discussed with the Commissioner for Human Rights of the Council of Europe, a conference will be convened this year, at which the authorities and the main stakeholders from the civil society will discuss the guidelines for the Action Plan", - "values": [ - "3 - Considering action" - ] - }, - { - "text": "Promote the human rights education programmes for police, security and penal personnel.", - "values": [ - "4 - General action" - ] - }, - { - "text": "Ensure all the procedural guarantees and the right to a fair trial for all persons indicted of committing a crime, including the right to defence and access to a lawyer", - "values": [ - "4 - General action" - ] - }, - { - "text": "Continue to encourage the immediate registration of newly born children, and introduce mechanisms to ensure that the absence of a parent does not prevent the registration of the child concerned", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Strengthen the work of all existing national human rights institutions in the Syrian Arab Republic", - "values": [ - "4 - General action" - ] - }, - { - "text": "Protect the rights to freedom of expression and assembly and ensure all abuses allegedly committed by police are transparently investigated ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Investigate, prosecute and punish all those allegedly responsible for political-ethnic violence during and after the 2007 elections ", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Continue to work within the frame of the Gender National Policy 2011-2021, in a standing national campaign to fight against discrimination and violence against women ", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Continue the promotion and the protection of human rights, particularly for women, children and vulnerable groups in the society", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Fully implement the new criminal procedure code, including necessary constitutional and statutory reforms needed to limit the powers of the Prosecutor General's office, and establish an impartial and independent criminal justice system, in line with Ukraine's obligations under the ICCPR", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Step up its efforts to prevent domestic violence, including through enforcing existing legislation, continuing its awareness-raising campaigns, as well as through efficiently implementing, and where necessary, introducing new state programmes to protect the victims of domestic violence and to offer them psychological support and access to shelter ", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Work towards the earliest possible adoption and effective implementation of the Law on Social Protection ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Draft and adopt a countrywide anti-discrimination strategy, in close cooperation with all relevant stakeholders, including with regard to sexual orientation and gender identity, and the Roma community", - "values": [ - "4 - General action" - ] - }, - { - "text": "Continue the momentum to reduce incidences of HIV/AIDS by public education and campaigns", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Make the necessary legal amendments in order to eliminate standards that criminalize and stigmatize lesbian, bisexual, gay, transgender and intersex persons", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Guarantee the freedom of the media, ensuring their protection from any political interference and promoting the establishment of an independent press council", - "values": [ - "4 - General action" - ] - }, - { - "text": "Establish a unified registry of cases of violence against women, and to intensify efforts to improve human rights for women", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Ratify core international human rights conventions, in particular CAT and CEDAW", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Develop explicit legislation implementing the provisions of the Convention on the Elimination of All Forms of Discrimination against Women, and invite the Special Rapporteur on violence against women, its causes and consequences, to the country ", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Consider accepting the jurisdiction of the treaty bodies to receive complaints, conduct inquiries and take urgent actions", - "values": [ - "3 - Considering action" - ] - }, - { - "text": "Adopt a law against corruption ", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Take further efforts in refining its domestic legislation in various fields of human rights, reforming the judiciary and improving the situation of people who are deprived of their liberty, so as to further ensure the promotion and protection of human rights for its peoples ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Take concrete measures aiming at fostering a genuine human rights culture with due regard to national and regional particularities as well as historical, cultural and religious backgrounds", - "values": [ - "4 - General action" - ] - }, - { - "text": "Advance in the establishment of the national mechanism for the prevention of torture envisioned in Law No. 26827", - "values": [ - "4 - General action" - ] - }, - { - "text": "Continue to submit its reports on the implementation of the Convention on the Elimination of All Forms of Discrimination against Women ", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Take steps leading to a formal abolition of the death penalty ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Accede to CAT, as well as the Optional Protocol thereto, and establish a national preventive mechanism provided for by the Protocol", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Continue its efforts in combating gender-based violence, particularly on women with disabilities, through effective implementation of its National Strategy for the Elimination of Violence against Women 2013-2016", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Make further efforts to protect civil rights in judicial procedures, including by ensuring immediate access to an attorney upon arrest", - "values": [ - "4 - General action" - ] - }, - { - "text": "Ensure that all Maoist army personnel disqualified as minors have unhindered access to the rehabilitation packages and ensure that children are not exposed to or forced to participate in violent activities by political parties ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Effectively combat domestic violence and establish shelters and support centres with medical, psychological and legal support ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Undertake a comprehensive review of legislation with a view to ensuring de jure and de facto equality between men and women", - "values": [ - "3 - Considering action" - ] - }, - { - "text": "Step up its cooperation with the Special Procedures and eventually consider extending a standing invitation to all the Special Procedures mandate holders of the Human Rights Council", - "values": [ - "4 - General action" - ] - }, - { - "text": "Continue its efforts to reach the remaining targets of the Millennium Development Goals", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Ratify the Council of Europe Convention on Preventing and Combating Violence against Women and Domestic Violence, without delay", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Encourage the visit of the Special Rapporteur on trafficking in persons, specially women and children, within the framework of the open and permanent invitation extended to special procedures", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Establish the national human rights commission in conformity with the Paris Principles", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Address in particular high school dropout among students belonging to ethnic minorities ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Accede to the Second Optional Protocol to the International Covenant on Civil and Political Rights, aimed at abolishing the death penalty, and take the steps necessary to remove the death penalty from Guyana's justice system ", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Continue strengthening social programmes for the most vulnerable sectors of the population, in particular children, women, the elderly and those with disabilities belonging to minorities", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Consider repealing the lèse-majesté law so as to expand the freedom of opinion and expression to include full freedom of expression in relation to the monarchy ", - "values": [ - "3 - Considering action" - ] - }, - { - "text": "Continue and enhance efforts to establish its National Human Rights Commission, with a view to completing and strengthening the country's legal and institutional framework related to human rights", - "values": [ - "4 - General action" - ] - }, - { - "text": "Continue its consideration to ratify the International Convention on the Protection of the Rights of All Migrant Workers and Their Families", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Adopt measures to implement the legal principle of natural judge, so that civilians can be tried in ordinary courts", - "values": [ - "4 - General action" - ] - }, - { - "text": "Integrate the various regional and international human rights instruments to which it is a party into its domestic legislation", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Push forward further reforms that will guarantee in practice the separation of powers and, in particular, the independence of the judiciary, including through the training of judges ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Continue its efforts to ratify the International Convention for the Protection of All Persons from Enforced Disappearance", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Continue to harmonize its national legislation on children with the international standards contained in the Convention on the Rights of the Child and its Protocols, and any other relevant instrument to which it is party", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Respond, without delay, to concerns raised by several special rapporteurs on the conditions of detention in the Carmichael Detention Centre.", - "values": [ - "4 - General action" - ] - }, - { - "text": "Ensure equality between men and women in its new Constitution as well as the right of all to be free from discrimination", - "values": [ - "4 - General action" - ] - }, - { - "text": "Expedite the preparation and adoption of norms and regulations to implement the provisions of the Child Adoption Act and the 2011 Child Care and Protection Act ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Step up its institutional and operational capacity with respect to the administration of justice in order to bring a halt to impunity and to comply with international human rights instruments.", - "values": [ - "4 - General action" - ] - }, - { - "text": "Ensure follow-up of legislative measures for the protection and inclusion of foreigners", - "values": [ - "4 - General action" - ] - }, - { - "text": "Ensure human rights standards are observed in the current government\u2019s conduct of its campaigns against illegal drugs", - "values": [ - "4 - General action" - ] - }, - { - "text": "Ensure the enjoyment of all human rights by migrants, and further strengthen efforts aiming at their regularization ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Refrain from criminalizing the legitimate activities of human rights defenders and journalists and repeal or amend all laws and policies which restrict their activities and rights", - "values": [ - "4 - General action" - ] - }, - { - "text": "Strengthen international cooperation to combat illegal drugs and human trafficking", - "values": [ - "4 - General action" - ] - }, - { - "text": "Channel social, political and institutional conflicts through dialogue and democratic participation, while ensuring judicial independence and the separation of powers", - "values": [ - "4 - General action" - ] - }, - { - "text": "Strengthen key human rights institutions with a sharp focus on the protection of women and children", - "values": [ - "4 - General action" - ] - }, - { - "text": "Continue the efforts to implement the National Anti-Discrimination Plan 2008-2013 ", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Ensure the full implementation of international obligations and constitutional guarantees, including with regard to the prohibition of torture", - "values": [ - "4 - General action" - ] - }, - { - "text": "Respond favourably to the requests of the Special Rapporteurs on torture and on the situation of human rights defenders to visit the country ", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "To inculcate human rights, voter education and civic education in the education curriculum of schools", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Continue its efforts to intensify the fight against all forms of corruption ", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Take measures aimed at ensuring transparency, justice and non- repression in the presidential election process of 2015, including by inviting international observers", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Continue promoting education for all, in particular for persons with special needs", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Continue efforts towards the promotion and preservation of the Saharo-Hassani cultural heritage, as enshrined in the 2011 Constitution", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Strengthen the legal context, the institutions and the resources of the judicial system to guarantee an independent judiciary", - "values": [ - "4 - General action" - ] - }, - { - "text": "Establish its effective national preventive mechanism in compliance with OP-CAT", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Strengthen its legal complaints system to ensure that women have effective access to justice", - "values": [ - "4 - General action" - ] - }, - { - "text": "Engage in open-ended consultations with the full range of ethnic and religious minority groups on measures to improve respect for all human rights of persons belonging to minorities ", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Redouble its efforts to combat abuse and sexual exploitation of minors, by improving the mechanisms for its early detection, by encouraging complaints of cases of real or suspected abuse in order to ensure a thorough investigation, prosecution of those responsible and adequate rehabilitation of victims ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Follow up the recommendations of the Committee on the Elimination of Racial Discrimination and the Committee on the Elimination of Discrimination against Womenon discrimination against women.", - "values": [ - "4 - General action" - ] - }, - { - "text": "Take further steps to ratify relevant treaties and conventions, keeping in line its priorities and the domestic legislative process", - "values": [ - "4 - General action" - ] - }, - { - "text": "Promote an open environment where individuals can express diverse views without fear of harassment or prosecution ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Adopt legislation that clearly defines and criminalizes torture", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Further promote freedom of expression, association and the press", - "values": [ - "4 - General action" - ] - }, - { - "text": "Take into account its international human rights commitments when conducting the process of institutional and national policies reforms started in 2011 ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Enact new measures to combat the trafficking in women and children for the purposes of sexual exploitation.", - "values": [ - "4 - General action" - ] - }, - { - "text": "Promote greater representation of women in professional education, in decision-making positions in Government and in Parliament", - "values": [ - "4 - General action" - ] - }, - { - "text": "Ensure the explicit legal prohibition of corporal punishment of children in all settings", - "values": [ - "4 - General action" - ] - }, - { - "text": "Continue work towards the improvement of women's rights. In particular, incorporate in law the principle of equality between men and women and ban child marriage", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Ratify the International Convention on the Protection of the Rights of All Migrants Workers and Members of Their Families", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Strengthen its education policies to ensure that no child drops out of school at primary level due to structural reasons", - "values": [ - "4 - General action" - ] - }, - { - "text": "Amend the Family Code in order to raise to 18 the minimum age for marriage to define forced marriage as a crime to intensify educational measures in the area of reproductive health and to improve the conditions of access to secondary education, especially in rural areas", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Continue to take effective measures to improve detention conditions and limit overcrowding in detention centres, including those administered by the migration authorities ", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Consider positively the establishment of the moratorium on the death penalty with a view to its abolition ", - "values": [ - "3 - Considering action" - ] - }, - { - "text": "Carry out further awareness-raising campaigns to combat trafficking in persons, and include this issue in the school programmes, for a greater prevention of the phenomenon", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Adopt legal and administrative measures to make effective the investigation and sanction of violations of human rights during international operations, in which members of armed forces and other government agents participate", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Consider establishing a national human rights institution in accordance with the Paris Principles ", - "values": [ - "3 - Considering action" - ] - }, - { - "text": "Make sure that the periodic reports to the United Nations treaties bodies that are overdue are submitted without further delay", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Further pursue its efforts to create appropriate institutional mechanisms to counter all forms of discrimination and further pursue its efforts to provide human rights training for police personnel to effectively fight hate crimes ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Sign and ratify the OP-ICESCR, OP-CAT, OP-CRC-AC ", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Continue with its work in the area of women's rights adopting a gender perspective in all public and private scenarios and encouraging the empowerment of women with a view to challenging the current inequality in the society", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Adopt a law on the bar association that recognizes the right of the bar to self-government and guarantees proper representativeness by regular elections and regional representation ", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Ensure a climate in which all citizens are able to freely express their opinions and beliefs, without fear of reprisal or retribution and invite the Special Rapporteur on freedom of opinion and expression to visit", - "values": [ - "4 - General action" - ] - }, - { - "text": "Provide "non-citizens" with equal access to employment, education, health care, and social welfare, as well as take into account their interests in the conclusion of international treaties and agreements", - "values": [ - "4 - General action" - ] - }, - { - "text": "Continue to advocate for the principle of equality between men and women in the decision making", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Continue cooperation with the mandate of the Special Rapporteur on the situation of human rights in Cambodia and implement his recommendations ", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Adopt a formalized national referral mechanism defining the roles and procedures of all institutions in the identification of victims of trafficking in human beings ", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Ratify the International Convention on the Rights of All Migrant Workers and Members of Their Families and the ILO Domestic Workers Convention, 2011 (No. 189)", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Continue the full implementation of the National Plan for Good Living 2009-2013 ", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Progressively realize the right to education for all, by creating conditions in which the most vulnerable receive access to basic education, and in this context, to implement a policy to also encourage girls to attend school", - "values": [ - "4 - General action" - ] - }, - { - "text": "Adopt and implement a definition of torture consistent with its obligations under the International Covenant on Civil and Political Rights and the Convention against Torture and Other Cruel, Inhuman, Degrading Treatment or Punishment ", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Continue its efforts to mitigate the negative impact of the economic crisis on human rights and to urge the international lenders to support the Government's endeavours in this area", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Fight impunity ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Enable the Office of the Human Rights Commissioner to receive and deal with complaints of victims of discrimination", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Establish an independent national human rights institution, in conformity with the Paris Principles", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Ensure the effective implementation of the Family Peace Act to address the issue of domestic violence", - "values": [ - "4 - General action" - ] - }, - { - "text": "Establish rules that limit preventive custody in the absence of formal criminal charges ", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Intensify efforts to guarantee the good functioning of the Commissioner on Gender Equality by providing sufficient resources", - "values": [ - "4 - General action" - ] - }, - { - "text": "Accede to CAT and the Optional Protocol thereto", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Continue its work to ensure the further refinement of laws aimed at protecting children's rights in order to step up criminal and administrative responsibilities for crimes and offences committed against children or involving children in crime", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Address the issue of gender-based violence in a comprehensive manner", - "values": [ - "4 - General action" - ] - }, - { - "text": "Make efforts aimed at broadening the scope of application of freedom of expression", - "values": [ - "4 - General action" - ] - }, - { - "text": "Submit its overdue reports to two treaty bodies", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Take concrete steps towards the establishment of a national human rights institution in conformity with the Paris Principles ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Enhance its efforts on the full implementation of the Convention against Torture", - "values": [ - "4 - General action" - ] - }, - { - "text": "Continue to implement laws and regulations for the protection and socioeconomic growth of women and the rights of children", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Ensure that the rights of the human rights defenders are properly respected and perpetrators are brought to justice", - "values": [ - "4 - General action" - ] - }, - { - "text": "The PNDH-3 institutionalized Brazil's voluntary commitment to prepare annual reports on the situation of human rights in the country, in dialogue with civil society. The State will marshal efforts to effectively develop the reports beginning in 2012.", - "values": [ - "4 - General action" - ] - }, - { - "text": "Further its efforts to address ethnic and racial profiling, particularly in stop and search operations carried out by police and customs and immigration officials ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Further strengthen measures to enhance the participation of women in decision-making ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Prohibit the recruitment of child soldiers and take measures against all violators ", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Take specific steps to ensure prompt and thorough investigations of all allegations of excessive use of force and ill-treatment by law enforcement officials, including police and prison guards", - "values": [ - "4 - General action" - ] - }, - { - "text": "Continue looking into the feasibility of ratifying the Convention against Torture and the International Convention on the Protection of the Rights of all Migrant Workers and Members of Their Families", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Abandon the practice of arbitrary detention of journalists and decriminalize defamation", - "values": [ - "4 - General action" - ] - }, - { - "text": "Share an evaluation on progress in the implementation of the Programme to Restructure the Justice system by the Transition Council of the Judiciary ", - "values": [ - "1 - Minimal action" - ] - }, - { - "text": "Take further steps to implement a policy of free compulsory education as established by the Indonesian Government over a period of 12 years so that all Indonesian children may have access to education ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Strengthen measures, including at the local level, to combat cultural stereotypes and discrimination against minorities and migrants", - "values": [ - "4 - General action" - ] - }, - { - "text": "Enhance policy for the protection of children's rights and strengthen mechanisms currently in place and promote and protect the rights of children ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Address overcrowding, sanitation, violence, and medical and psychological care in prisons", - "values": [ - "4 - General action" - ] - }, - { - "text": "Adopt a national action plan on gender mainstreaming", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Address the youth unemployment and combat effectively the existing discrimination against migrants in terms of their working conditions and requirements governing access to employment", - "values": [ - "4 - General action" - ] - }, - { - "text": "Take all necessary measures to guarantee, in all circumstances, full respect of freedom of expression and freedom of the press, reform, in that regard, the provisions of the Information and Communication Act in order to bring the national legislation in line with international standards", - "values": [ - "4 - General action" - ] - }, - { - "text": "Adopt regulations recognising the rights of same-sex couples and of self-defined gender or transgender persons ", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Design long-term strategy and awareness-raising programmes to eliminate harmful practices such as domestic violence and early marriages in particular", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Further improve the prison conditions in the country ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Take effective legislative, administrative and other measures to prevent, investigate and punish acts of torture or ill-treatment and to ratify the Optional Protocol to the Convention against Torture", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Take all the necessary measures to ensure that all persons, including journalists, opposition leaders and political opponents and human rights defenders can freely exercise their rights to freedom of expression, association and peaceful assembly without fear of arrest, detention, intimidation or harassment", - "values": [ - "4 - General action" - ] - }, - { - "text": "Carry out awareness-raising campaigns to curb the trafficking in human beings and sex tourism", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Make efforts to take into account the need to integrate indigenous and Afro-Honduran peoples into the labour market", - "values": [ - "4 - General action" - ] - }, - { - "text": "Undertake steps to guarantee that trials take place within a reasonable period of time, and that special measures be taken to address the backlog of criminal cases ", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Accelerate its efforts to achieve the targets on reducing infant mortality rate and achieving universal health-care scheme, including improving of the maternal health in remote areas", - "values": [ - "4 - General action" - ] - }, - { - "text": "Study the possibility to establish new measures aimed at eliminating any discriminatory treatment towards ethnic minorities", - "values": [ - "3 - Considering action" - ] - }, - { - "text": "Continue efforts to put an end to violence against women and children", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Raise awareness on the responsibility to investigate cases of human rights violations against women and girls in the IDP camps", - "values": [ - "4 - General action" - ] - }, - { - "text": "Establish and ensure the proper functioning of a national preventive mechanism", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Increase efforts to address prison overcrowding, antiquated facilities and undue delays in prosecution that have prolonged pre-trial detention ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Pursue its efforts to combat poverty and promote economic, social and cultural rights with a view to achieve the MDG's by 2015.", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Seize this opportunity to do its utmost to safeguard the fundamental rights of all citizens, regardless of gender and ethnicity, in all of its territory, in line with the Universal Declaration of Human Rights, the International Covenants on Human Rights and other relevant human rights instruments ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Continue to enable women and the disabled and provide them a greater role in society", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Complete the process of putting in place the New National Human Rights Institution on the basis of the Paris Principles ", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Create a special anti-corruption court and ensure its proper functioning", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Strengthen the Penal Code as an effective instrument in combating hate speech", - "values": [ - "4 - General action" - ] - }, - { - "text": "Effectively address the issue of land grabbing, including through providing redress to farmers and others whose land was illegally or arbitrarily seized", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Continue to strengthen the functions of the Office of the Attorney-General and the Ministry for Legal Affairs, with a view to harmonizing national and international obligations in the field of human rights.", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Take firm measures to end discrimination and violence against women, children and people from vulnerable groups so as to enhance a better respect for their dignity and human rights ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Revisit existing legislation and programmes with the aim to enhance social protection for all migrants, reduce xenophobia, and improve public perception of migrants ", - "values": [ - "3 - Considering action" - ] - }, - { - "text": "Develop and implement specific laws, policies and mechanisms that recognize and protect the work of civil society, human rights defenders and journalists", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Ensure that respect for the principal of non-discrimination on the basis of gender includes lesbian, gay, bisexual, transgender and intersex persons and adopt specific anti-discrimination legislation for this group", - "values": [ - "4 - General action" - ] - }, - { - "text": "Improve the situation for and empower women and girls, by creating a more non-discriminatory environment, ensuring equal representation and the right to education, as well as addressing issues such as gender-based violence, including honour crimes, FGM and child marriage", - "values": [ - "4 - General action" - ] - }, - { - "text": "Strengthen the efforts to combat poverty", - "values": [ - "4 - General action" - ] - }, - { - "text": "Consider incorporating into its national legislation the specific crime of torture, reflecting fully the definition of torture in article 1 of the Convention against Torture and Other Cruel Inhuman or Degrading Treatment or Punishment, so that the grave nature of this crime is thus clearly visible and discernible from other crimes ", - "values": [ - "3 - Considering action" - ] - }, - { - "text": "Upgrade the status of the Human Rights Commission of Maldives to - A - status according to the Paris Principles by fully ensuring its independence, including with regard to budgetary allocations ", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Raising the level of protection for children, in particular against sexual abuse and child labour", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Strengthen the promotion and the protection of the rights of persons with disabilities", - "values": [ - "4 - General action" - ] - }, - { - "text": "Align domestic legislation with international standards on detention, and to ratify the Convention against Torture and Other Cruel, Inhuman or Degrading Treatment or Punishment", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Continue to work to eliminate all forms of stigmatization or discrimination based on sexual orientation or gender identity", - "values": [ - "4 - General action" - ] - }, - { - "text": "Ban the use of harmful devices such as ultra sound and flash ball devices and taser guns ", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Undertake effective measures to combat poor detention conditions", - "values": [ - "4 - General action" - ] - }, - { - "text": "Italy is committed to promoting LGBT rights, combating discrimination on the ground of sexual orientation and guaranteeing the implementation of relevant legislation already in force, to ensure gender equality, including the prevention and removal of discriminatory conducts for reasons directly or indirectly based on sex, racial or ethnic origin, religion or belief, age or sexual orientation", - "values": [ - "4 - General action" - ] - }, - { - "text": "Adopt all necessary measures to eradicate child abuse, labour and sexual exploitation of children, as well as violence against children, paying particular attention to cases of children who are killed because they were born with disabilities, malformation, without pigmentation or because their mother died during childbirth", - "values": [ - "4 - General action" - ] - }, - { - "text": "Adopt social integration policies aimed at preventing girls, boys and adolescents from dropping out of school", - "values": [ - "4 - General action" - ] - }, - { - "text": "Sign and ratify OP-CAT as a matter of priority and found the national preventive mechanism accordingly", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Further strengthen measures to combat human trafficking, including by adopting a comprehensive strategy to combat trafficking, especially of women and children ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Implement legislative measures to ensure that persons under 18 years of age cannot be subject to receiving the death penalty", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Develop actions to improve the living conditions of asylum seekers and avoid discrimination on grounds of nationality or country of origin", - "values": [ - "4 - General action" - ] - }, - { - "text": "Continue to implement new policies and expand the coverage and scope of existing ones, to better promote gender equality, in particular for women in the countryside and low-income families", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Continue efforts for the full implementation of the Anti-Human Trafficking Act, in order to identify child victims of trafficking and provide legal assistance to them", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Consider abolishing the death penalty and eliminate mandatory death penalty sentences", - "values": [ - "3 - Considering action" - ] - }, - { - "text": "Ensure that the Truth and Reconciliation Commission, as well as to the Commission on Disappearances be operational within the briefest delay and that there be no amnesty for grave violations of human rights ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Extend a standing invitation to all mandate holders", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Extend education services to rural zones and guarantee access for all persons to a quality education without distinction, including persons belonging to indigenous and Afro-descendant communities, in order to reduce inequality in the country", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Consider ratifying the OP-CEDAW ", - "values": [ - "3 - Considering action" - ] - }, - { - "text": "Guarantee the independence of judiciary and take all the necessary measures to combat impunity", - "values": [ - "4 - General action" - ] - }, - { - "text": "Implement previous recommendations to guarantee the protection of the civil and political rights of all minority groups", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Strengthen cooperation and partnership, including with OHCHR, to continue with the implementation of national policy in the matters of disability, health and disaster management", - "values": [ - "4 - General action" - ] - }, - { - "text": "Become a party to the International Convention for the Protection of All Persons from Enforced Disappearance at an early stage", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Develop comprehensive anti-discrimination legislation including prohibiting discrimination on the basis of sexual orientation and gender identity ", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Take further measures to remove disparities in access to health care, in particular with respect to vulnerable groups and regions that are poorly served ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Strengthen efforts to eliminate violence against women and girls and harmful practices", - "values": [ - "4 - General action" - ] - }, - { - "text": "Ensure that the new Penal Code safeguards the rights guaranteed by ICCPR, to which Iran is a signatory, in particular by defining or removing offences open to political manipulation, such as so-called offences against national and international security, currently used to curtail freedom of expression, assembly and association", - "values": [ - "4 - General action" - ] - }, - { - "text": "Strengthen legislative provisions that exist to promote gender equality", - "values": [ - "4 - General action" - ] - }, - { - "text": "Repeal legislation relating to so-called "pre-criminal social dangerousness", as provided for in Articles 72, 73 and 74 of the Cuban Penal Code ", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Ratify all the core international human rights treaties to which the country is not yet a party, including the International Covenant on Civil and Political Rights, the International Covenant on Economic, Social and Cultural Rights , the International Convention on the Elimination of All Forms of Racial Discrimination, the Convention against Torture and Other Cruel, Inhuman or Degrading Treatment or Punishment as well as the International Convention for the Protection of All Persons from Enforced Disappearance", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Criminalize and effectively combat incitement to racial hatred, xenophobia and religious intolerance - including by prohibiting racist and xenophobic organizations and prosecuting perpetrators ", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Continue to take measures to narrow the gender wage gap and enhance the equal opportunities of work between men and women", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Continue the process of full alignment between its national legislation and all obligations under the Rome Statute", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Strengthen policies to promote education and address educational gender imbalances.", - "values": [ - "4 - General action" - ] - }, - { - "text": "Submit its overdue reports to the respective treaty bodies", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Recognize the rights of the Palestinian people to self-determination and respect their right to establish an independent state of which East Jerusalem is the capital", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Cooperate with regard to sharing expertise and experiences in the area of providing welfare to older persons, so that this pioneering experience is benefited from ", - "values": [ - "1 - Minimal action" - ] - }, - { - "text": "Continue work aimed at increasing the participation of women in the political life of the country", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Continue to support the reform of the legislation on domestic violence by conducting public awareness-raising and providing professional training on the provisions of the 2010 Act on the Prevention of Domestic Violence to ensure its effective implementation ", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Promptly investigate crimes and violations against human rights defenders and journalists and prosecute the perpetrators", - "values": [ - "4 - General action" - ] - }, - { - "text": "Accede to the1951 Refugee Convention and its 1967 Protocol", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Revise the provisions on defamation and libel in order that these are not considered crimes in national legislation ", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Sign and ratify the Optional Protocols to the CRC on the sale of children, child prostitution and child pornography and on the involvement of children in armed conflicts, and ratify the United Nations Convention on the Rights of Persons with Disabilities ", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Intensify the efforts to combat effectively violence against women and girls and prosecute perpetrators ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Continue efforts in strengthening national human rights mechanisms", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Continue efforts to eliminate human trafficking and promote the protection of victims", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Adopt a moratorium on the death penalty and put an end to public executions ", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "That all alleged attacks on human rights defenders are promptly and thoroughly investigated, and that perpetrators are held accountable", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Increase its efforts in the field of violence and domestic violence against women and children aiming for an eradication of both", - "values": [ - "4 - General action" - ] - }, - { - "text": "Consider legislating a special personal status law that would contribute to the strengthening of women's rights", - "values": [ - "3 - Considering action" - ] - }, - { - "text": "Adopt all necessary measures to guarantee the fight against impunity for the perpetrators of crimes, acts of violence and all human rights violations", - "values": [ - "4 - General action" - ] - }, - { - "text": "Review the provisions of domestic criminal law in line with international provisions in order to introduce the corresponding amendments, in particular the effective adoption of the habeas corpus procedure", - "values": [ - "3 - Considering action" - ] - }, - { - "text": "Allocate sufficient financial and human resources to national human rights institutions", - "values": [ - "4 - General action" - ] - }, - { - "text": "Continue to protect the institution of the natural family ", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Strengthen efforts to prevent and eradicate forced marriage of children and adolescents", - "values": [ - "4 - General action" - ] - }, - { - "text": "Ratify ILO Convention No. 169, concerning indigenous and tribal peoples, and the Ibero-American Convention on the Rights of Young People ", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Ensure the establishment of an inclusive education system", - "values": [ - "4 - General action" - ] - }, - { - "text": "Take all necessary measures to ensure the protection of civil society actors and journalists and to investigate cases of threats and attacks against them", - "values": [ - "4 - General action" - ] - }, - { - "text": "Reform its Penal Code to criminalize FGM and approach all this process in an integral manner", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Curtail the practices of incarceration, mistreatment towards and the application of travel bans against individuals on the basis of political or religious beliefs", - "values": [ - "4 - General action" - ] - }, - { - "text": "Amend the relevant legislation in order to abolish capital punishment entirely, in line with the Second Optional Protocol to the International Covenant on Civil and Political Rights", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Adopt swiftly the necessary legislation and develop a comprehensive anti-trafficking strategy and plan of action to combat trafficking of children and women, especially for the purpose of sexual exploitation ", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Take all action necessary to ensure the protection of refugees and asylum seekers, including the provision of access to birth registration for all children born in Libya, and the ratification of the Convention relating to the Status of Refugees and its 1967 Protocol", - "values": [ - "4 - General action" - ] - }, - { - "text": "Take the necessary measures in order to eliminate all discriminatory treatment of Bahraini women married to non-Bahrainis ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Continue actions for the promotion and protection of the human rights of peasants and other persons working in the rural areas ", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Take steps towards the ratification of ICCPR", - "values": [ - "4 - General action" - ] - }, - { - "text": "Implement the National Gender Policy and work with women's civil society groups to implement it in all spheres of national life", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Adjust the new abortion law protocol to give women the right to abort in cases of incest and rape based on the police report only", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Implement the European Court of Human Rights judgement in the case of Sejdic and Finci", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Pursue the ongoing inquiries into allegations of violations of children's rights in armed conflict, such as conscriptions and abductions of children anywhere and to adopt vigorous measures to prevent such violations.", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Consider the possibility of establishing an independent national human rights institution in line with the Paris Principles", - "values": [ - "3 - Considering action" - ] - }, - { - "text": "Accelerate the implementation of the package of measures for the protection of children, including the prompt adoption of a comprehensive Code of the Child, the establishment of a Children's Ombudsman with effective means, and the implementation of a plan to pull out children from streets", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Continue efforts to address FGM, early marriage, and violence against women and girls which remain deeply rooted, according to reports ", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Continue supporting all programmes aimed at improving the health of its population in order to reduce mortality rates ", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Close Guantanamo and secret detention centres", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Work closely with the international community towards the priority goal of education for all, especially children with disabilities ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Allow a visit by the Working Group on Arbitrary Detention, granting it full access to all detention centres", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Continue its work on the elimination of discrimination against women", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Support the role of the family in protecting and promoting the rights of persons with disabilities, and accelerate implementation of the necessary legal conditions for the realization of their rights in services and public places", - "values": [ - "4 - General action" - ] - }, - { - "text": "Further develop measures permitting the full inclusion of persons with disabilities in economic, political, social and cultural life, using a human-rights-based approach ", - "values": [ - "4 - General action" - ] - }, - { - "text": "When continuing to implement the death penalty, do not apply it to persons with intellectual disabilities", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Continue to give priority to national policies in the national human development plan for 2009-2011", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Prohibit child labour in family enterprises and extend the list of dangerous activities in line with the recommendations of the Committee on the Rights of the Child", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Take steps to continue to strengthen the operation of domestic human rights institutions, including the Human Rights Ministry, National Human Rights Commission and the Commission of the Status of Women", - "values": [ - "4 - General action" - ] - }, - { - "text": "Expedite the process of returning occupied private properties to their rightful owners, and promote the successful conclusion of ongoing legal proceedings by strengthening the applicable legal framework", - "values": [ - "4 - General action" - ] - }, - { - "text": "Protect the rights of indigenous peoples through the implementation of prior consultation mechanisms as established in the ILO Indigenous and Tribal Peoples Convention, 1989 (No. 169)", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Define torture in its domestic legislation and to make it a criminal offence with specific sanctions, in support of the Convention against Torture and Other Cruel, Inhuman or Degrading Treatment or Punishment", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Establish a national preventive mechanism to prevent torture ", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Take further efforts to promote and protect women's rights, including measures to prevent and combat trafficking in women ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Strengthen its policy aimed at preventing torture, ill-treatment and other cruel or inhumane treatment by the sentence-execution officers in Georgian penitentiary establishments", - "values": [ - "4 - General action" - ] - }, - { - "text": "Consider designing operative mechanisms to ensure that boys, girls and adolescents who are victims of the armed conflict be a priority in programmes to restore their rights and reparation programmes, taking into account the right to family reunification, health, education and psychosocial care", - "values": [ - "3 - Considering action" - ] - }, - { - "text": "Introduce a complete abolition of the death penalty through legal reform", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Continue to fight domestic violence against women, including by improving and strengthening the capacity of rehabilitation centers in the country, especially ensuring access to victims from rural areas ", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Set up an independent national mechanism for the monitoring of detention facilities, which complies with the criteria laid down in the same protocol ", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Adopt all necessary measures to comprehensively implement the Protocol to Prevent, Suppress and Punish Trafficking in Persons, Especially Women and Children", - "values": [ - "4 - General action" - ] - }, - { - "text": "Continue to strengthen the national cultural policy ", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Continue its active engagement with its international and regional partners to implement technical cooperation and assistance programs on human rights protection", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Inform families about the whereabouts of persons in detention facilities and regularly publish lists of detainees who have died in detention facilities operated by the Government and militias affiliated with it", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Continue strengthening the measures taken to ensure women\u2019s rights and achieve gender equality", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Consider seeking technical assistance from the relevant United Nations agencies to meet its human rights obligations ", - "values": [ - "3 - Considering action" - ] - }, - { - "text": "Accede to ICCPR and ICESCR in the near future and ensure their effective implementation ", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Continue to play an active role in the works of the Human Rights Council and continue to contribute in solving the issues relating to human rights in a fair, objective and non-selective manner", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Consolidate all positive realizations achieved during the period of political transformation, especially in the human rights field", - "values": [ - "4 - General action" - ] - }, - { - "text": "Intensify its efforts to change stereotypical images and discriminatory attitudes and perceptions regarding the roles and responsibilities of women and girls and men and boys in the family and in society", - "values": [ - "4 - General action" - ] - }, - { - "text": "Continue to implement provisions contained in the Family Code and the Comprehensive Act against Violence towards Women ", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Consider signing and ratifying the Convention on the Protection of All Persons from Enforced Disappearance", - "values": [ - "3 - Considering action" - ] - }, - { - "text": "Accelerate its programme to combat HIV/AIDS pandemic that continue to saturate the health system with its high of morbidity and mortality rates ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Ratify the International Convention on the Protection of All Persons from Enforced Disappearance.", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Develop a law criminalizing discrimination based on social origin, racial hatred and acts of violence against indigenous people.", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Ratify the Hague Convention on the Protection of Children and Cooperation in Respect of Inter-country Adoption ", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Improve effective consultation with indigenous communities before granting licenses for the economic exploitation of disputed land.", - "values": [ - "4 - General action" - ] - }, - { - "text": "Ensure that racially motivated violence and other hate crimes are fully and effectively investigated and that those responsible are prosecuted under the laws providing for sanctions which reflect the gravity of the human rights abuses ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Continue efforts to ensure adequate housing for all", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Identify the Government department that will be responsible for implementing the new migration and aliens act Law 8764 and determining rules for its implementation ", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Continue strengthening measures aimed at addressing issues of domestic violence and female genital mutilation, including raising awareness campaigns, ensuring effective access to justice for victims, and developing a comprehensive support system for gender-based violence victims", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Adopt legislative measures to incriminate accusations of witchcraft against children", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Continue the process for the ratification of the Second Optional Protocol to the International Covenant on Civil and Political Rights, aiming at the abolition of the death penalty, there being a draft law which was formulated in 2011 ", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Enhance the political participation law", - "values": [ - "4 - General action" - ] - }, - { - "text": "Continue its work progressing towards implementation of the Convention on the Rights of Persons with Disabilities (CRPD), including through prompt implementation of the new Building Code for the Public Works Department to ensure buildings and amenities are disability-friendly ", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Further develop its integration policy of migrants and national minorities into the society ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Continue its efforts aimed at enforcing and improving the quality of the educational system with a view to ensuring that the young generation would receive the best opportunities for education and training ", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Implement the national preventive mechanism against torture", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Unconditionally release all Palestinian prisoners especially children and women", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Continue its efforts in consolidating peace as well as efforts to achieve social inclusion and reconciliation through the implementation of its National Development Plan for 2010-2014 "Prosperity for All" ", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Incorporate the definition of torture into the criminal code in conformity with the standards in the Convention against Torture", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Take a policy in order to guarantee effective application of the law on real estate ownership and overcome the customs which make it impossible for women to inherit land", - "values": [ - "4 - General action" - ] - }, - { - "text": "Continue to strengthen its social plans and programmes in particular in the area of employment, health and food to ensure the best possible well-being of its people with a special emphasis on the most excluded sectors of the population", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Accede to the Rome Statute as amended at the Review Conference in Kampala in 2010 and align its national legislation with all obligations under the Rome Statute ", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Start a national consultation with a view to becoming a member of the ILO and adhering to the core ILO conventions, as previously recommended", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Do more to combat all forms of discrimination, with a focus on vulnerable groups", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Ensure that all migrants have effective access to services related to economic, social and cultural rights, irrespective of their migration status ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Continue the efforts in order to eradicate extreme poverty in the country", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "The adoption of a moratorium on the death penalty with a view to abolishing capital punishment in national legislation ", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Ratify additional human rights treaties such as the ICESCR, the Convention of the Rights of the Child, the International Convention for the Protection of All Persons from Enforced Disappearances and the Convention on Rights of Persons with Disabilities in order to further strengthen their support to the United Nations Human Rights mechanisms ", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Continue its action in the area of official development aid ", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Adopt the draft revised criminal code, which defines and criminalizes torture ", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Ensure the functioning juvenile justice system throughout the country and raise the age of criminal responsibility that comply with the acceptable international standards, as previously recommended", - "values": [ - "4 - General action" - ] - }, - { - "text": "Redouble efforts to increase women's representation in society and to join the Optional Protocol to the Convention on the Elimination of All Forms of Discrimination against Women.", - "values": [ - "4 - General action" - ] - }, - { - "text": "Establish without further delay the Truth and Reconciliation Commission and Disappearances Commission and ensure their independence from political interference ", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Train professionals in the area of judicial affairs so as to enable them to perform their role effectively", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Continue the efforts aimed at strengthening the fight against torture, in compliance with international law ", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Establish an effective organization within the Government for implementing the child protection programme as an initial step ", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Enhance its efforts to eradicate violence against women and to improve the status of women in society", - "values": [ - "4 - General action" - ] - }, - { - "text": "Expedite establishment of an independent monitoring mechanism of all places of detention ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Ensure protection and security in IDP camps. and, while safeguarding the rights to return and to restitution, adopt a policy to provide IDPs with adequate interim housing solutions.", - "values": [ - "4 - General action" - ] - }, - { - "text": "Take appropriate steps in order to prevent, identify and address situations of risk of suicide in persons with disabilities", - "values": [ - "4 - General action" - ] - }, - { - "text": "Intensify efforts to combat child labour", - "values": [ - "4 - General action" - ] - }, - { - "text": "Continue to seek assistance from the international community to attain its objectives of full implementation of human rights", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Strengthen national measures to address abuses towards children and end corporal punishment", - "values": [ - "4 - General action" - ] - }, - { - "text": "Immediately prohibit the death penalty and immediately prohibit its application to minors ", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Promote the rights of women and enable them to participate more effectively in public life ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Set up credible mechanisms to investigate human rights violations carried out by the security forces in order to allow for the compensation of victims and to bring to justice those responsible for these acts ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Protect human rights defenders and journalists by promptly investigating complaints of harassment and holding perpetrators accountable ", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Develop strategies to stop the spread of xenophobic speech in the social and political spheres that include mechanisms to ensure legal and social assistance to victims of racism and hate crimes", - "values": [ - "4 - General action" - ] - }, - { - "text": "Fully align its national legislation with the Rome Statute, including by incorporating the definition of crimes and principles and acceding to the Agreement on Privileges and Immunities of the Court (APIC) ", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Strengthen the legal framework for the protection and non-discrimination of lesbian, gay, bisexual, transgender and intersex people", - "values": [ - "4 - General action" - ] - }, - { - "text": "Address concerns arising under the Organic Act on Communication (2013) which impose an increased level of self-censorship on media outlets", - "values": [ - "4 - General action" - ] - }, - { - "text": "Prohibit corporal punishment by law in all settings, including the home. ", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Take effective measures to prohibit any manifestations of discrimination and racism ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Take measures to protect children who are victims of trafficking or of violence", - "values": [ - "4 - General action" - ] - }, - { - "text": "Continue with efforts to effectively address gender pay gap and ensure equal pay for work of equal value in public and private sector and report on the results in the following universal periodic review cycle", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Continue its efforts in combating poverty, and in improving the levels of education and health of its people ", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Consider prohibiting corporal punishment of children in all settings", - "values": [ - "3 - Considering action" - ] - }, - { - "text": "Strengthen the access to primary education for all segments, particularly women ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Through modalities including the Inter-Ministerial Committee on Human Rights and the Consultative Committee on Humanitarian Assistance, Sri Lanka will continue to promote and protect human rights, coordinate humanitarian assistance and facilitate the work of local and international agencies providing such assistance.", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Provide adequate support to children in the care of their extended families ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Continue in its efforts to tackle manifestation of racism and xenophobia including a review of the respective law to ensure that full and equal rights are guaranteed to all", - "values": [ - "3 - Considering action" - ] - }, - { - "text": "Carry out actions against terrorism in full respect for human rights law and standards and without undue restrictions on fundamental freedoms, such as freedom of expression and freedom of the press, and on civil society space", - "values": [ - "4 - General action" - ] - }, - { - "text": "Further pursue its commitment to guaranteeing full respect for the rights of the child, in particular, children with disabilities, and guarantee that all violations of these rights, in particular allegations of abuse and ill-treatment, are brought to justice", - "values": [ - "4 - General action" - ] - }, - { - "text": "Continue promoting social policies aimed at meeting the needs of its people, especially its indigenous populations, for which it is important to have appropriate technical assistance and international aid in order to continue strengthening capacity in this area ", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Take measures to strengthen legal and institutional mechanisms aimed at preventing, punishing and eliminating all forms of discrimination, including discrimination based on gender, racial and national origin, and religion ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Consider developing a system of alternative sentencing to effectively reduce the number of women and children held in prison", - "values": [ - "3 - Considering action" - ] - }, - { - "text": "Establish greater protections for journalists under threat and ensure prompt investigations of threats, harassment, and crimes against journalists", - "values": [ - "4 - General action" - ] - }, - { - "text": "Engage the civil society in the process of implementation of the UPR recommendations", - "values": [ - "4 - General action" - ] - }, - { - "text": "Continue endeavours to advance the process of political settlement to the Syrian issue", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Continue its work in upholding family as the basic social institution and in the protection of its rights", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Take effective measures to deal with violence against women and girls ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Finalize the first national plan to combat trafficking in persons, and provide all necessary resources to ensure the successful implementation", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Continue the provision of social housing to the rural communities with the aim of improving their living conditions ", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Reform national legislation with the aim of improving the protection of children and women from violence and above all domestic violence ", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Ensure the right to freedom of expression in the soon to be reviewed provisional constitution and in its federal and regional media legislation", - "values": [ - "4 - General action" - ] - }, - { - "text": "Refuse any attempts to impose any values alien to the contractual and commitments of Jordan", - "values": [ - "4 - General action" - ] - }, - { - "text": "Proceed with international cooperation and with the United Nations specialised agencies to enhance the government efforts in providing free education and eliminate illiteracy", - "values": [ - "1 - Minimal action" - ] - }, - { - "text": "Put an end, as soon as possible, to the state of emergency and ensure that the provisions of the future anti-terrorism law scrupulously respect human rights", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Take the necessary measures to strengthen capabilities for the promotion and protection of the environment", - "values": [ - "4 - General action" - ] - }, - { - "text": "Strengthen the role of the family in order to protect children from drugs and sexual exploitation, and reduce juvenile delinquency ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Combat all forms of discrimination against refugee children, asylum seekers and undocumented migrants", - "values": [ - "4 - General action" - ] - }, - { - "text": "Continue with reforms and practical measures in line with international standards in order to reach gender equality ", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "End the practice of prohibiting pregnant girls in Sierra Leone from attending schools and taking exams, as required under article 2 and 28 of the Convention on the Rights of the Child", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Ombudsman service", - "values": [ - "4 - General action" - ] - }, - { - "text": "Further develop legislation and practices in the media sector to strengthen the right to freedom of expression", - "values": [ - "4 - General action" - ] - }, - { - "text": "Continue to deep the existing policy on democratization of access to higher-education and implement measures envisaged to strengthening the autonomy of universities, through the active participation of the university community's member ", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Design and implement policies for access to justice for victims of domestic violence, including free and extensive services providing legal and psychological support, as well as shelters", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Promptly take concrete and legal measures to address impunity for sexual and gender-based violence, including when committed by members of the armed forces", - "values": [ - "4 - General action" - ] - }, - { - "text": "Put an end to the occupation of all Arab and Palestinian territories, including the Syrian Golan", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Take concrete steps towards the abolition of the death penalty and corporal punishment, including ratifying the Convention against Torture and its Optional Protocol", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Recognize the right to association as established by ILO, for migrant, agricultural workers and domestic workers ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Continue systematically its efforts regarding the rights of indigenous peoples", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Take concrete measures to stop extrajudicial killings and invite the Special Rapporteur on extrajudicial, summary or arbitrary executions to visit the country without conditions", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Amend legislation in order to decriminalize abortion under certain circumstances, such as pregnancies that are the result of rape, as previously recommended", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Enact comprehensive legislation against discrimination to avoid any kind of discrimination on the grounds of religion, sexual orientation and gender identity, language, political conviction or physical or mental disability", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Continue to apply a victim-centred approach to the fight against trafficking and consider the use of the OHCHR Recommended Principles and Guidelines on Human Rights and Human Trafficking as a reference tool", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Continue enhancing its role in peacekeeping operations, including providing medical services and continuing its support to capacity building in all conflict regions in the world", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Strengthen its legislative framework by including penal sanctions for perpetrators of acts of forced marriage and non-protection against female genital mutilation", - "values": [ - "4 - General action" - ] - }, - { - "text": "Ensure the enrolment in the education system of children of non-regularized immigrants ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Intensify its efforts to achieve the national goals for poverty reduction, food security and socioeconomic development, including through land management reforms ", - "values": [ - "4 - General action" - ] - }, - { - "text": "In light of the upcoming elections, implement key OSCE commitments for democratic elections ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Continue stepping up efforts in the area of combating trafficking in persons, including considering acceding to the Palermo Protocol to Prevent, Suppress and Punish Trafficking in Persons, Especially Women and Children, and invite the Special Rapporteur on trafficking in persons, especially women and children", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Continue fighting against human trafficking", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "To continue and find additional measures to answer the basic needs of the poor and other vulnerable sectors", - "values": [ - "4 - General action" - ] - }, - { - "text": "Take necessary measures to ensure full enjoyment of freedom of expression, notably press freedom, and to prevent, combat and punish acts of harassment and aggression committed against journalists.", - "values": [ - "4 - General action" - ] - }, - { - "text": "Create an effective juvenile justice system in order to defend children's rights", - "values": [ - "4 - General action" - ] - }, - { - "text": "Develop statistics on cases of gender-based violence and analyse why many women do not to denounce abuses", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Protect its migrant workers from exploitation by ensuring that applicable laws and practices conform to international human rights standards guaranteeing migrant workers their human rights, including the right to freedom of movement", - "values": [ - "4 - General action" - ] - }, - { - "text": "Find an agreement as soon as possible on the visit of the Special Rapporteur on torture ", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Amend the appropriate legislation in order to ensure that the definition of rape covers all cases of non-consensual sexual acts", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Consider the ratification of all core international human rights instruments ", - "values": [ - "3 - Considering action" - ] - }, - { - "text": "Ratify the Convention against Torture, and subsequently ensure the adoption of provisions that expressly prohibit torture in police settings", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Continue to address the promotion and protection of the rights of persons with disabilities by developing specific employment programmes", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Ratify as soon as possible important international human rights instruments to which it is not yet a party, inter alia, CAT, CRPD and CED, and issue a standing invitation to special procedures ", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Increase efforts to implement all the recommendations it had committed to during its previous UPR ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Continue to combat racial and ethnic hatred and to ensure that manifestations of racial, ethnic and religious hatred are promptly investigated and prosecuted.", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Secure the human rights of lesbian, gay, bisexual and transgender persons by amending Article 534 of the Lebanese Penal Code and by codifying a protection against the discrimination of lesbian, gay, bisexual and transgender persons into law", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Closely monitor developments relating to extreme right and racist movements, including skinhead groups, and reinforce efforts to counter the dissemination of racist and xenophobic propaganda by a section of the population through the Internet", - "values": [ - "4 - General action" - ] - }, - { - "text": "Accept the request for a visit made by the Special Rapporteur on the question of torture", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Further strengthen its efforts on implementing the first cycle's recommendation no 4 on protection of witnesses and victim", - "values": [ - "4 - General action" - ] - }, - { - "text": "Introduce, within its overall security policy, further measures to secure life of confessional groups and indigenous people, and further pursue its policy of involving the representatives of the latter in new political and social structure of Iraq", - "values": [ - "4 - General action" - ] - }, - { - "text": "Argentina will promote the adoption by the Human Rights Council of a declaration on the right to truth and memory.", - "values": [ - "4 - General action" - ] - }, - { - "text": "Extend an open standing invitation to the special procedures of the Human Rights Council", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Implement more measures to prevent violence against women, such as the training workshops conducted by the Office for the Defence of Indigenous Women\u2019s Rights on the protection of indigenous women", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Fulfil its obligation under ICCPR and fully guarantee the freedom of assembly and freedom of expression on the Internet as well as offline to all its citizens ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Implement measures to ensure boys and girls have equal opportunity to education at all levels", - "values": [ - "4 - General action" - ] - }, - { - "text": "Continue efforts for the protection and promotion of the rights of migrants", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Review all relevant legislation so as to eliminate all forms of discrimination against or marginalization of women.", - "values": [ - "3 - Considering action" - ] - }, - { - "text": "Eliminate the crime of defamation from the criminal code in order that these facts are examined under the civil code", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Decisively take issue with human rights violations and war crimes of the past decades with a view to bringing the perpetrators to justice ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Prohibit explicitly corporal punishment in all settings, including in the home and as a sentence of the courts", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Continue applying the measures necessary to reduce the risks of contracting infectious sexually transmitted diseases and HIV, through its preventive health care services", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Agree on a date for a possible visit by the United Nations Special Rapporteur on extrajudicial, summary or arbitrary executions requested in 2008 ", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Amend the Law on the Protection of Minors against the Detrimental Effect of Public Information so that it cannot be abused for discriminating against and punishing persons for their sexual orientation and gender identity", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Make further efforts to develop and implement appropriate legislative and administrative measures to provide equal employment opportunities for men and women and to address the issue of the wage gap. ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Review and repeal domestic law which criminalizes sexual orientation", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Fairly redistributing the fruits of growth", - "values": [ - "4 - General action" - ] - }, - { - "text": "Continue with the efforts carried out to combat criminal acts motivated by racial or religious hatred as well as their incitement", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Ensure that the new system of universal health care guarantees availability and access to services to boys and girls and contraception methods to adolescents, while allowing access to these services in general without discrimination on any grounds", - "values": [ - "4 - General action" - ] - }, - { - "text": "Expedite the legal procedures relating to the Bahraini nationality act of 1963, thus allowing citizenship to be granted, without restrictions, to children of Bahraini women married to foreigners", - "values": [ - "4 - General action" - ] - }, - { - "text": "Ratify the Domestic Workers Convention, 2011 (No. 189), of the International Labour Organization", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Intensify its efforts to prevent violence against women, protect survivors and prosecute perpetrators", - "values": [ - "4 - General action" - ] - }, - { - "text": "Allow ICRC unimpeded access to the 2,200 political prisoners ", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Approve and implement the national action plan to combat racial discrimination developed in 2013", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "End all forms of attacks and harassments as well as cases of arbitrary arrest of human rights defenders and address the problem of impunity for these acts. ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Release all political prisoners and pro-reunification figures who have been unjustly detained by arbitrary application of \u201cNational Security Law\u201c", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Establish a legal definition of torture in line with article 1 of CAT, and independent mechanisms to investigate and prosecute related cases ", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Adhere to the 1951 Convention on the Status of the Refugees and its additional Protocols", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Implement all recommendations of the Commission of Inquiry, while fully cooperating with the Commission and allowing it access into the Syrian Arab Republic", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Strengthen efforts to combat discrimination against persons with disabilities and take specific measures to increase employment opportunities for them", - "values": [ - "4 - General action" - ] - }, - { - "text": "Pay special attention to ensure that children of migrant background are not denied academic opportunities based primarily on their acquired proficiency in the German language", - "values": [ - "4 - General action" - ] - }, - { - "text": "Continue efforts to fight against torture", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Take all appropriate measures to prohibit and punish all forms of sexual violence against women and girls by the different armed groups", - "values": [ - "4 - General action" - ] - }, - { - "text": "Strengthen the Child Labour Monitoring System to ensure that children are withdrawn from the labour market in line with the ILO campaign", - "values": [ - "4 - General action" - ] - }, - { - "text": "Sign and ratify OP-ICESCR", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Take adequate steps to promote and protect the rights of asylum seekers, refugees and migrants", - "values": [ - "4 - General action" - ] - }, - { - "text": "Adopt an immediate and effective moratorium on executions ", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Ratify CEDAW-OP, as well as the Convention on the Prevention and Punishment of the Crime of Genocide, the Palermo Protocol and the optional protocols to CRC.", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Implement the recommendations of the CERD, including the adoption of a clear definition of racial discrimination in its domestic legislation, adoption of legislative measures and that would criminalize incitement to racial hatred, and effective sanctions for hate crimes", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Take concrete steps to enhance women's awareness of their rights and guarantee and increase women's public and political participation ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Continue the efforts made to combat discriminatory practices based on age or religion, and undertake corresponding investigations of acts of domestic violence for social motivations ", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Ensure the effective implementation of the National Strategy to Combat Trafficking in Persons", - "values": [ - "4 - General action" - ] - }, - { - "text": "Cooperate fully with the International Criminal Court throughout the process ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Further eliminate corruption, to strengthen the independence of the justice system and to prevent political interference in prosecutions and trials", - "values": [ - "4 - General action" - ] - }, - { - "text": "Consider withdrawing the remaining declarations and reservations to the Convention on the Elimination of All Forms of Discrimination against Women", - "values": [ - "3 - Considering action" - ] - }, - { - "text": "Increase the annual budget allocations for health section in order to provide for quality healthcare as well as adequate education, training and salaries for medical and paramedical staff", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Continue its efforts to conform the Senegalese Committee for Human Rights to the Paris Principles", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Promote and strengthen international humanitarian cooperation and assistance so as to provide for programmes and mechanisms to contribute to the elimination of threats and limitations to human rights of refugee and displaced persons", - "values": [ - "4 - General action" - ] - }, - { - "text": "Take necessary measures, as recommended by the Committee on the Rights of the Child, to prevent child abuse and neglect and increase efforts to ensure the registration of all children at birth.", - "values": [ - "4 - General action" - ] - }, - { - "text": "Put in place measures to combat all forms of racial discrimination", - "values": [ - "4 - General action" - ] - }, - { - "text": "Take effective measures to combat domestic violence ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Consolidate progress made in the field of human rights education and envisage setting up, with the assistance of the international community, national human rights education and training programmes, particularly training and awareness-raising of security forces, law enforcement officials and members of the judiciary ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Rescind the decision to prohibit the peaceful expression of religious beliefs, including the wearing of religious symbols in schools, in line with the freedom of religion or belief guaranteed by the Universal Declaration of Human Rights, the Convention on the Rights of the Child, and the European Union Guidelines on the promotion and protection of freedom of religion or belief", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Consider ratifying the Second Optional Protocol to ICCPR and continue its efforts to increase national awareness in order to secure the abolition of the death penalty", - "values": [ - "3 - Considering action" - ] - }, - { - "text": "Amend existing legislation so that evidentiary requirements are made less strict and do not fall disproportionately on the victim, and so that the sentencing of sexual abusers is brought into line with the gravity of the crime committed ", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Ratify the ILO Convention No. 189 concerning Decent Work for Domestic Workers in order to protect the rights of domestic workers", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Strengthen the protection of individuals against discrimination, including based on sexual orientation or gender identity", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Better implement laws aimed at eliminating all forms of violence against women as recommended by CESCR ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Accelerate efforts with the Joint Senate Committees on Justice, National Defence and Legislative Studies regarding the early adoption of the reform to bring the criminal offence of enforced disappearance in conformity with standards established by the International Convention on the matter, in accordance with paragraph 86 of the Report", - "values": [ - "4 - General action" - ] - }, - { - "text": "Continue to strengthen police-community relations with a view to reduce tension in the community", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Continue efforts to increase employment opportunities and improve the employment situation for women and to promote women's rights", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Deepen the measures taken to ensure the fight against impunity and guarantee to all victims of human rights violations compensation and the establishment of all adequate mechanisms for rehabilitation", - "values": [ - "4 - General action" - ] - }, - { - "text": "Finalize the process of ratification of the Convention against Torture and Other Cruel, Inhuman or Degrading Treatment or Punishment and the International Convention for the Protection of All Persons from Enforced Disappearance", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Implement what came in the women's and children's strategies, and the development of policies and programs that promote these two issues", - "values": [ - "4 - General action" - ] - }, - { - "text": "Accede to OP-ICESCR and CED ", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Continue enhancing the legal protection of freedom of religion and belief, aiming at gradually allowing the public practice of all faiths and beliefs", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Strengthen the role and capacity to act of the Child Protection Unit with the support and assistance of the international community in order to allow it to fully fulfil its mission", - "values": [ - "4 - General action" - ] - }, - { - "text": "Continue its efforts in the field of economic social and cultural rights.", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Make further efforts to properly handle the case of discrimination and violence against women, including the prosecution of alleged perpetuators", - "values": [ - "4 - General action" - ] - }, - { - "text": "Continue with its efforts to promote and protect human rights and freedoms ", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Take steps for further promotion and protection of the human rights in the country ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Amend and-or adopt and implement legislation providing for the full application of the juvenile justice infrastructure and system, in accordance with the provisions of CRC and other international standards ", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Accelerate the ratification process of ICESCR", - "values": [ - "4 - General action" - ] - }, - { - "text": "Repeal laws that criminalize a person's sexuality", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Ratify core international human rights instruments, including the International Covenant on Civil and Political Rights and its Optional Protocols, the International Covenant on Economic, Social and Cultural Rights, and the Convention against Torture and its Optional Protocol", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Abolish laws and practices that encourage discrimination and violence against women and girls", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Decriminalize defamation and incorporate this into the Civil Code", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Strengthen and standardize measures with a view to ensuring better protection of migrants, refugees and asylum seekers throughout its entire territory", - "values": [ - "4 - General action" - ] - }, - { - "text": "Develop economic and social indicators for migrants and minority groups and that the government incorporate an economic cultural and social rights perspective as well as affirmative action in this regard", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Accede to the 1951 Convention relating to the Status of Refugees and the 1967 Protocol thereto, and ensure effective protection of refugees in line with international standards.", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Consider the achievement of the human rights goals approved by resolution 9-12 of the Human Rights Council", - "values": [ - "3 - Considering action" - ] - }, - { - "text": "Establish public policies to raise awareness for the elimination of cultural practices that are contrary to the rights of women, including premarital contracts determined by a donation", - "values": [ - "4 - General action" - ] - }, - { - "text": "Ensure structural and operational independence of the national human rights institution in accordance with the Paris Principles", - "values": [ - "4 - General action" - ] - }, - { - "text": "Consider taking additional steps to promote economic development and a higher standard of living", - "values": [ - "3 - Considering action" - ] - }, - { - "text": "Amend the Charter of Fundamental Rights and Freedoms to include sexual orientation and gender identity and expression as a protected category", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Continue strengthening the effort to take measures to protect the rights of migrants", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Take measures to ensure the respect of freedom of religion and to end all types of reprisals against those who converted from Islam ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Adopt the necessary measures to prevent abuses against migrant workers and respect for their rights", - "values": [ - "4 - General action" - ] - }, - { - "text": "Consider establishing a National Human Rights Institution", - "values": [ - "3 - Considering action" - ] - }, - { - "text": "Continue to implement youth unemployment programmes in order to produce a skilled workforce to meet the requirements of the labour market and promote youth entrepreneurship ", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Following the lifting of the State of Emergency in February 2011, promptly take measures to bring all other legislation and decrees in conformity with its international obligations aimed at fully ensuring freedom of expression, including on the internet, and freedom of peaceful assembly and of association ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Adopt further anti-discrimination measures, including implementing the Council of Europe's recommendation for Switzerland to adopt comprehensive anti-discrimination legislation and prohibit discrimination regarding employment and accommodation in civil matters ", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Codify the principles of gender equality in all areas of its national legal framework ", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Continue to focus on and dedicate programmes to inclusive education for all, also with regard to ending segregation of Roma children", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Incorporate CAT into domestic law and investigate and prosecute those suspected of torture and other cruel, inhuman or degrading treatment", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Accede to CAT in a timely manner.", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Maintain the network of pre-university institutions with access to education in minority languages in line with the recommendation by the Committee on Economic, Social and Cultural Rights on the guarantees for the rights of ethnic minorities", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Strengthen measures taken within the reform policies to make the prison system more humane, in particular through training of personnel and improved prison administration ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Establish a specific action plan to combat gender-based violence with a special system of prevention for this type of violence and also broaden the network of assistance for victims of sexual violence or gender-based violence", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Commit resources to enforce existing legislation to protect women, and equip courts and police to fully protect the rights of all women and enhance their access to justice, any new legislation should protect those rights.", - "values": [ - "4 - General action" - ] - }, - { - "text": "Double its efforts to conclude the adoption of the National work Plan for the promotion of human rights and start in the implementation ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Increase its efforts to further strengthen the national mechanism for the advancement of women and to provide such mechanism with adequate resources", - "values": [ - "4 - General action" - ] - }, - { - "text": "Avoid experiments on detainees with electric impulsion weapons provoking acute pain, which canconstitute a form of torture, in penitentiaries.", - "values": [ - "4 - General action" - ] - }, - { - "text": "Promote vigorously the participation of women in decision-making positions, both in the public and private sectors", - "values": [ - "4 - General action" - ] - }, - { - "text": "Investigate thoroughly cases of female genital mutilation and bring the perpetrators to justice", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Take measures to further improve access to education especially to women and children", - "values": [ - "4 - General action" - ] - }, - { - "text": "Take action to eliminate sale of children, child prostitution and child pornography ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Enshrine in its Constitution the protection of rights of national and ethnic minorities", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Adopt more effective measures ensuring that all children throughout the Lithuanian territory enjoy all rights, without discrimination, in line with article 2 of the Convention on the Rights of the Child", - "values": [ - "4 - General action" - ] - }, - { - "text": "Step up measures to combat trafficking and smuggling of persons, especially trafficking of children and establish the necessary measures for the prevention, investigation and punishment of persons or groups involved in this crime", - "values": [ - "4 - General action" - ] - }, - { - "text": "Commission further studies on the issue of the death penalty, with a view to its abolition", - "values": [ - "3 - Considering action" - ] - }, - { - "text": "Pursue its efforts to implement the plan of action for combatting child labour", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Ratify other human rights conventions, particularly the Convention against Torture and the International Convention on the Protection of the Rights of All Migrant Workers and Members of Their Families", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Develop a policy to protect human rights defenders ", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Ratify the Optional Protocol to the the Convention on the Elimination of All Forms of Discrimination against Women ", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Increase efforts to combat discrimination and violence against women and impunity for such crimes, through national institutions, including the ISDEMU and the Secretariat for Social Inclusion", - "values": [ - "4 - General action" - ] - }, - { - "text": "Protect civilians and civilian infrastructure, in accordance with international humanitarian law and customary international law, and stop its indiscriminate aerial bombardments, including the use of barrel bombs", - "values": [ - "4 - General action" - ] - }, - { - "text": "Deepen its commitment with the International Criminal Court through adapting its national legislation to the Rome Statute", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Seek to ensure full participation of the Roma themselves in the efforts to the full realization of the rights of Roma children", - "values": [ - "4 - General action" - ] - }, - { - "text": "Seek to intensify national efforts to implement alternative learning programmes for children and youth", - "values": [ - "4 - General action" - ] - }, - { - "text": "Continue to strengthen access to education through various programmes and initiatives for all children", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Pursue the strengthening of its cooperation with treaty bodies, step up its efforts in domesticating international human rights legal instruments by supporting its request to strengthen capacities in the areas which it has set out", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Take measures to prevent all incidents of violence against women, in particular in rural areas, and ensure effective interventions by law enforcement officials responding to allegations of violence committed by intimate partners, and prosecute perpetrators", - "values": [ - "4 - General action" - ] - }, - { - "text": "Consider incorporating the "Bangkok Rules", to its internal regulations for the treatment of women prisoners", - "values": [ - "3 - Considering action" - ] - }, - { - "text": "Ratify OP-CRC-IC", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Continue its efforts to combat corruption, social and economic inequalities ", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Restore the cessation of hostilities declaration that reduced violence in Darfur and the Two Areas and facilitate immediate and unfettered humanitarian access to conflict areas", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Foster the human rights culture within the society with a view to further promoting and protecting human rights ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Adopt a national plan of action to combat sexual and gender-based violence, criminalize marital rape as a matter of urgency and strengthen laws and their implementation on trafficking in persons", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Combat gender inequality and discriminatory practices in the areas of work, the family, social roles and personal integrity, by combating practices such as female genital mutilation and gavage", - "values": [ - "4 - General action" - ] - }, - { - "text": "Provide international humanitarian organisations with immediate, free and unimpeded access to all populations in need, including those held in labour camps or political prison camps", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Remove restrictions related to the activities of journalists, in particular the obligation to register and the high level of qualification required to establish a newspaper, and ensure journalists, in particular those known for their critical position vis-à-vis the Government, the liberty to practice their profession, carry out investigations, and publish the results thereof, without reprisals ", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Make greater effort to ensure that victims of human rights violations, most often women and children, are allowed to exercise their right to seek redress in the formal judicial system, and to prevent any practices that fall short of international human rights standards ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Provide sufficient resources for gender-sensitive training of law enforcement officers and of the judiciary to improve the investigation and prevention of violence against women", - "values": [ - "4 - General action" - ] - }, - { - "text": "Consistent with the recommendation of the Committee against Torture, strengthen the fight against impunity and look into all allegations of torture and ill-treatment committed by law enforcement authorities and prosecute those responsible for such acts ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Abolish juvenile death penalty and corporal punishment", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Ratify the Second Optional Protocol to the International Covenant on Civil and Political Rights (ICCPR), aiming at the abolition of the death penalty", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Continue efforts with a view to fully tackling the problem of discrimination against minority groups.", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Adapt its legislation to ensure greater security for women and children ", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Take appropriate steps with a view to releasing all imprisoned conscientious objectors without delay ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Strengthen efforts for providing appropriate assistance to victims of trafficking in human beings and disseminate information on their right to compensation and ways to access it", - "values": [ - "4 - General action" - ] - }, - { - "text": "Enact legislation to explicitly prohibit corporal punishment of children in all settings", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Extend an invitation to the Special Rapporteur on freedom of religion or belief ", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Ratify the Optional Protocol to the Convention against Torture.", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Ratify both the International Covenant on Economic, Social and Cultural Rights and the International Covenant on Civil and Political Rights ", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Address deficiencies of the legal and policy system regarding the issue of pregnant children for better protecting young girls, as some of them had been forced to continue high-risk pregnancies with long-lasting impact on their physical and mental health", - "values": [ - "4 - General action" - ] - }, - { - "text": "Establish an independent mechanism in all cantons of the country with a mandate to investigate all complaints about excessive use of force, cruel treatment and other police abuse", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Repeal section 377 A of the Penal Code to decriminalize homosexuality", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Argentina reaffirms its commitment to continue strengthening the protection of human rights at a universal and regional level, and also to preserve and strengthen the role of NGOs in the promotion and defence of human rights.", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Continue its efforts in strengthening moderation and religious tolerance, particularly through the education sector", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Ratify the Optional Protocol to the Convention against Torture (OP-CAT)", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Reinstitute Turkish mother tongue lessons as part of the primary and secondary school curricula", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Increase its further efforts in the area of combating human trafficking, including considering the possibility to develop a state program or a plan of actions aimed at strengthening the Government's measures to prevent and eliminate sexual exploitation and trafficking of children ", - "values": [ - "4 - General action" - ] - }, - { - "text": "The Government of Kiribati commits to continuing and completing work on the implementation of the key priorities under the Kiribati Development Plan. Kiribati commits to working with partners nationally, regionally and internationally to implement its human rights obligations.", - "values": [ - "4 - General action" - ] - }, - { - "text": "Take steps to ensure that the Truth and Reconciliation Commission and the Commission on Disappearances function in accordance with international standards, and bring the perpetrators of serious human rights violations to justice", - "values": [ - "4 - General action" - ] - }, - { - "text": "Prevent unwanted pregnancies as provided under the Choice on Termination of Pregnancy Act", - "values": [ - "4 - General action" - ] - }, - { - "text": "Amend the relevant legislation to bring the definition of torture into line with the Convention against Torture, and ensure that evidence obtained from torture is not invoked in any proceedings ", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Fully guarantee the right of freedom of religion or belief, to ensure the protection of all religious groups and minorities and to re-establish a legal framework for the enhancement of this right", - "values": [ - "4 - General action" - ] - }, - { - "text": "Abolish corporal punishment as a legal penalty, in particular caning", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Recognize the legitimacy of the work of human rights defenders and provide them with protection, and avoid arbitrary arrests and reprisals, investigate threats or attacks against them and bring those responsible to justice", - "values": [ - "4 - General action" - ] - }, - { - "text": "Redouble efforts in sex education and access to sexual and reproductive health in the whole country with a view to reducing maternal mortality and combating AIDS, early pregnancies, abortions carried out in situations of risk, child marriages and violence and sexual exploitation", - "values": [ - "4 - General action" - ] - }, - { - "text": "Continue promoting a dialogue that could lead to the abolition or establishment of a moratorium on the death penalty ", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Intensify its efforts to combat domestic violence including rape and work against the impunity for this violence, take measures such as awareness-raising and training of the police officials in the judicial system and medical officers ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Eradicate the death penalty as a type of punishment from the legal system after wide consultation with countries which recently took the same step ", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Devote increased attention to spreading a human rights culture through educational institutions and media", - "values": [ - "4 - General action" - ] - }, - { - "text": "Immediately halt mandatory detention of asylum seeker children", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Cooperate fully with United Nations experts and rapporteurs, including the Special Rapporteur on the situation of human rights in Iran, in line with the standing invitation issued by the Government", - "values": [ - "4 - General action" - ] - }, - { - "text": "Provide all families of all abducted persons with full information on their fate and whereabouts and allow the abductees and their descendants to return immediately to their countries of origin", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Incorporate structural reforms that allow the separation of powers, establishing conditions for an independent judiciary, a multiparty political system and a National Assembly that reflects the interests of citizens at national, regional and local levels ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Develop and implement a holistic strategy to prevent violence within the family, with the participation of all stakeholders, including men, women, girls, boys, religious groups, the media and NGOs ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Ratify or access, as appropriate, the Optional Protocol to the Convention on Torture", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Continue efforts in implementation of the country's Plans of Action in particular those relating to the safeguard of the economic, social and cultural rights of the people, including those of the most vulnerable ones and disadvantaged groups", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Submit its outstanding reports to the treaty bodies as soon as possible", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Continue, as a main priority of the Bulgarian legislative and administrative policies, the fight against all forms of religious hatred, discrimination, racism, extremism and xenophobia", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Consider reducing the administrative processes for the registration of political parties", - "values": [ - "3 - Considering action" - ] - }, - { - "text": "Take further measures to improve conditions in the juvenile detention centres and further structural measures to promote rehabilitation of minors in conflict with the law and prepare them for integration into the society.", - "values": [ - "4 - General action" - ] - }, - { - "text": "Provide free treatment to women and men living with HIV/AIDS to prevent mother-child transmission ", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Take the necessary measures to bring into justice and prosecute perpetrators of violations of the international human rights law and humanitarian Law", - "values": [ - "4 - General action" - ] - }, - { - "text": "Eliminate any legislation that has discriminatory effects against women in family and public life, in line with CEDAW, by, inter alia, including "gender" as a prohibited ground of discrimination in its Constitution ", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Cooperate with the United Nations Special Rapporteur on the situation of human rights in the country", - "values": [ - "4 - General action" - ] - }, - { - "text": "Develop a national integrated human rights plan in accordance with the Vienna Declaration and Programme of Action", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Ensure the effective implementation of the Prohibition of Female Genital Mutilation Act of 2010, as well as to prosecute and punish the perpetrators of that practise ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Encourage the development of integrationist multiracial organizations, including political parties, in line with ICERD and in accordance with a previous recommendation of the Committee on the Elimination of Racial Discrimination", - "values": [ - "4 - General action" - ] - }, - { - "text": "Uphold respect for and protection of the rights of all individuals to self-identification, freedom of expression and freedom of association, including for the members of ethnic, religious and linguistic groups that are not officially recognized as minorities", - "values": [ - "4 - General action" - ] - }, - { - "text": "Exchange with other States its successful experience in the field of rehabilitation of surrenders, suspected and/or imprisoned persons for terrorism", - "values": [ - "1 - Minimal action" - ] - }, - { - "text": "Adopt and implement a comprehensive and non-discriminatory law on violence against women and girls", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Formulate a national work plan for the implementation of the United Nations Guiding Principles on Business and Human Rights to ensure that multinational companies headquartered in Japan do not violate human rights", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Restrict the application and to consider the possibility of abolition of the death penalty", - "values": [ - "4 - General action" - ] - }, - { - "text": "Adopt concrete policy measures to eradicate the clandestine practice of female mutilation and to allocate human and financial resources to relevant authorities to succeed", - "values": [ - "4 - General action" - ] - }, - { - "text": "Decriminalize sexual activity between consenting adults and repeal all provisions of the newly enacted Penal Code that discriminate against women and sexual minorities and introduce cruel or inhuman forms of punishment", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Adopt more efficient measures to prevent domestic violence and all other forms of violence against and abuse of women and children ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Ensure reform efforts respect and strengthen judicial independence and improve delivery of justice", - "values": [ - "4 - General action" - ] - }, - { - "text": "Consider instigating a national plan to combat violence against women and girls, including in relation to human trafficking ", - "values": [ - "3 - Considering action" - ] - }, - { - "text": "Continue to take measures in order to support young people in terms of education and employment ", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Take concrete measures to prevent children from becoming stateless and guarantee universal access to free primary education, irrespective of citizenship and immigration status", - "values": [ - "4 - General action" - ] - }, - { - "text": "Further develop its institutional and human rights infrastructure, including the appointment of a federal ombudsperson", - "values": [ - "4 - General action" - ] - }, - { - "text": "Consider incorporating the United Nations Rules for the Treatment of Women Prisoners and Non-Custodial Measure for Women Offenders, otherwise known as the "Bangkok Rules", as a part of its programme to enhance the conditions of women detainees in prison ", - "values": [ - "3 - Considering action" - ] - }, - { - "text": "Institutionalize consultation mechanisms with human rights organizations of the civil society", - "values": [ - "4 - General action" - ] - }, - { - "text": "Protect the rights to freedom of association and assembly in accordance with its international obligations, notably those under the International Covenant on Civil and Political Rights, and cease the dissolution of political parties and civil society organizations", - "values": [ - "4 - General action" - ] - }, - { - "text": "Guarantee the effective delivery of humanitarian assistance to civilians and the protection of humanitarian actors, with full respect for international humanitarian law, while stepping up cooperation with the UNMISS Human Rights Division, in particular concerning the implementation of the cessation-of-hostilities agreement of January 2014", - "values": [ - "4 - General action" - ] - }, - { - "text": "Maintain its positive approach to studying the question of accession to ICESCR ", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Cooperate with the Commission of Inquiry and allow it to access the Syrian Arab Republic", - "values": [ - "4 - General action" - ] - }, - { - "text": "Continue implementation of the National Monitoring and Evaluation Plan for the National Operational Plan for HIV and AIDS (2012-2016) ", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Continue taking measures to further promote and guarantee the right to education in the country, and particularly to increase school attendance among young people ", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Take all necessary measures for the prevention and combating of child trafficking, and for the provision of effective remedies for victims", - "values": [ - "4 - General action" - ] - }, - { - "text": "Combat poverty and ensure the right to education for all, with the support of the international community.", - "values": [ - "4 - General action" - ] - }, - { - "text": "Accelerate its efforts to combat corruption in the country including through the effective implementation of the new National Anticorruption Strategy 2012-2015 ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Establish, in line with international standards, a standing independent body to carry out investigations of all allegations of torture and other ill-treatment, deaths in custody and unlawful killings ", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Enact pending anti-torture legislation ", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Adopt the comprehensive law on violence against women and girls", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Establish torture as a criminal offence, in terms fully in line with article 1 of the Convention against Torture and Other Cruel, Inhuman or Degrading Treatment or Punishment", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Pursue initiatives aimed at reinforcing the provision of economic, social and cultural rights with a view to promoting sustainable development and transition to a green economy ", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Establish an effective and inclusive process to follow up on the recommendations resulting from the universal periodic review", - "values": [ - "4 - General action" - ] - }, - { - "text": "Bring the perpetrators of trafficking of children to justice", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Proceed to carry out impartial and independent investigations of all complaints from women alleging to have been subjected to forced sterilization in order to determine who is responsible and bring them to justice.", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Take all necessary measures in order to impose a moratorium on the use of the death penalty, with a view to abolishing it both at the federal and State levels ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Establish a Paris Principles-compliant national human rights institution", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Recommended further strengthening cooperation through open invitations to Special Procedures", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Continue investments to improve public education and public services and facilities", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Work with and through media to promote tolerance among all citizens of Croatia, and take measures to address the stereotyping of some groups of citizens based on their origin", - "values": [ - "4 - General action" - ] - }, - { - "text": "Guarantee freedom of movement for all people as well as free movement of all goods within the Occupied State of Palestine and to and from foreign countries", - "values": [ - "4 - General action" - ] - }, - { - "text": "Eliminate reported discrimination against religious minorities such as the Baha'is and offer better legal protection to such communities", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Continue measures to ensure the smooth running of the newly established institutions and implementation of legislative acts in the field of human rights", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Ensure that comprehensive measures are in place to thoroughly investigate and provide judicial remedies for cases of violations following the armed conflict", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Continue efforts aimed at acceding to other international conventions, especially ICCPR and ICESCR", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Empower the Roma population to participate in decision-making processes to better respond to their needs.", - "values": [ - "4 - General action" - ] - }, - { - "text": "Take concrete and effective measures - such as the establishment of investigations and judicial prosecutions, as well as training in human rights - to punish and prevent abuses, in particular sexual violence, committed against refugees in the camps", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Positively respond to pending visits request by Special Procedures mandate holders", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Establish without any delay an official moratorium on executions", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Devise a long-term Government strategy aimed at integration of immigrants ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Develop a national strategy to eliminate all discriminatory practices against women, conduct awareness campaigns to eliminate inequality and abolish the practice of female genital mutilation, and ensure access to education for all women and girls", - "values": [ - "4 - General action" - ] - }, - { - "text": "Define and prohibit discrimination against women", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Continue its efforts to design and implement its plans aimed at promoting human development programmes in the important sectors in the country ", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Establish an independent national human rights institution in line with the Paris Principles and by strengthening results-based human rights monitoring throughout the country ", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Respect the rights of all its citizens to freedom of assembly, freedom of association and freedom of expression, which are guaranteed by the Swazi Constitution and by international human rights instruments particularly by allowing labour, political and civil society groups to assemble peacefully, free from Government interference", - "values": [ - "4 - General action" - ] - }, - { - "text": "Take measures to implement rulings from the Inter-American Court of Human Rights on land rights of indigenous communities in Paraguay", - "values": [ - "4 - General action" - ] - }, - { - "text": "Take into account the constructive contributions arising from this review in the current national social policies ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Continue efforts to strengthen institutional and legal basis for the protection of human rights", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Cooperate with United Nations agencies, regional bodies and development partners in building capacities, training and exchanging human rights expertise and experiences with other Pacific Island countries", - "values": [ - "1 - Minimal action" - ] - }, - { - "text": "Consider reducing the number of crimes for which the capital punishment may be handed, including non-violent crimes, as well as establishing a moratorium on the use of the death penalty", - "values": [ - "3 - Considering action" - ] - }, - { - "text": "Continue with the reform of the judicial system by improving case-handling in the courts and the execution of judicial decisions in order to boost public confidence in the administration of justice ", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Continue its efforts to reduce the rates of infant mortality as a component of the right to health", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Review its practice of returning aliens to regions where they may encounter real risks of persecution or serious harm, particularly in Iraq ", - "values": [ - "3 - Considering action" - ] - }, - { - "text": "Reach the human rights goals set out by the Council in its resolution 9-12.", - "values": [ - "4 - General action" - ] - }, - { - "text": "Continue to make gradual progress towards cultural change regarding sexual abuse and gender-based violence, which include all sectors of society, and to adopt legislative measures that specifically prohibit all acts of sexual abuse, including sexual rape during marriage", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Extend a standing invitation to all mandate holders of the Council", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Take appropriate measures for the ratification of the International Convention for the Protection of All Persons from Enforced Disappearance", - "values": [ - "4 - General action" - ] - }, - { - "text": "Ensure that the authorities, especially the police, protect communities and groups threatened by violence and discrimination, and that the Roma can fully enjoy their human rights without intimidation or discrimination", - "values": [ - "4 - General action" - ] - }, - { - "text": "Intensify poverty alleviation and promote economic and social development so as to improve people's living standards ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Repeal the provisions of the Tongan Criminal Offences Act criminalizing consensual sex between adults of the same gender ", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Continue to promote the education and training in human rights of the law enforcement officials to increase the awareness about their role on the protection of fundamental rights of people, in particular the most vulnerable and marginalized groups ", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Improve detention facilities and overall detention conditions, also by means of training law enforcement officials in human rights.", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Enhance implementation of the constitutional provisions on freedom of expression", - "values": [ - "4 - General action" - ] - }, - { - "text": "Succeed with greater pace in land reform in the cast away areas by pursuing public policies targeted at improving the life of African descendants and minorities.", - "values": [ - "4 - General action" - ] - }, - { - "text": "Take further steps to ensure the full respect of the fundamental rights of migrants, asylum-seekers and refugees", - "values": [ - "4 - General action" - ] - }, - { - "text": "Continue efforts to finalize the draft national action plan to combat racism, racial discrimination, xenophobia and related intolerance", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Specifically criminalize enforced disappearances in the penal code and reinforce the capacities of the Pakistanis Inquiry Commission on Enforced Disappearances in order that the Commission can fully carry out its mission", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Take into thorough consideration the recommendations of the Venice Commission in the process of elaborating national legislation", - "values": [ - "3 - Considering action" - ] - }, - { - "text": "Continue to undertake awareness-raising and prevention campaigns aimed at addressing gender-based violence and discrimination against women ", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Allocate additional resources to the judicial system as necessary to ensure timely due process ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Reform its directive on family reunification to establish specifically family reunification for child asylum seekers relocated to the United Kingdom or who have been recognized as refugees", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Accelerate the process of accession and then ratify the International Convention on the Protection of the Rights of All Migrant Workers and Members of Their Families ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Ratify and domesticate International Convention on the Protection of the Rights of All Migrant Workers and Members of Their Families", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Accelerate the process of bringing its national legislation into compliance with the provisions of the main international instruments to which it is a party.", - "values": [ - "4 - General action" - ] - }, - { - "text": "Invite the Special Rapporteur on human rights defenders to visit the country in the near future", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Continue efforts to eradicate early marriage and take necessary measures to further promote girls' education, including through enhancement of the educational system ", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Continue to provide persons with disabilities with equal access to health including free and informed consent with health interventions and take necessary measures to repeal legislation restricting these", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Take further measures towards the full realization of the national strategy for the protection of persons with disabilities", - "values": [ - "4 - General action" - ] - }, - { - "text": "Investigate and punish cases involving the intimidation, harassment, persecution and torture of journalists, activists and human rights defenders, as well as participants in demonstrations ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Continue its efforts for further progressing in promoting economic and social rights of its people", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Continue its efforts in countering racist discourse in politics and in the media, fighting racially motivated crimes, and eliminating violence and discrimination based on sexual orientation and gender identity", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Develop a national strategy to tackle modern slavery and contribute towards the realization of Sustainable Development Goal 8.7, and, as part of this, ratify the ILO Protocol of 2014 to the Forced Labour Convention, 1930, and build law enforcement capability to further facilitate the investigation, prosecution and conviction of human traffickers", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Step up efforts to complete the process to establish a national human rights institution in accordance with the Paris Principles", - "values": [ - "4 - General action" - ] - }, - { - "text": "Ensure that the National Human Rights Institution is fully compliant with the Paris Principles ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Repeal sections of the Malaysian Penal Code that criminalize consensual same-sex conduct between adults", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Continue to strengthen its education policy, with international cooperation and technical assistance, enabling the required infrastructure to provide an inclusive education that meets the needs of its people, in conditions that guarantee full equality in terms of access ", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Continue to build its technological independence through the adoption and consolidation of measures to optimize the access of all Venezuelans to technologies of communication and information ", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Respond to requests for visits of special procedures' mandate holders by agreeing with OHCHR on a plan for visits as soon as possible ", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Strengthen government policy aimed at ensuring inter-ethnic harmony and culture diversity", - "values": [ - "4 - General action" - ] - }, - { - "text": "Modify the family law by eliminating discrimination between men and women, and fight effectively domestic violence", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Take into account the recommendation of the Committee on the Elimination of Discrimination against Women to adequately address the situation of migrant and refugee women in the labour market ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Take all necessary actions to guarantee to the population, especially women in vulnerable situations, safe access to reproductive and sexual health services, including family planning and education on the matter", - "values": [ - "4 - General action" - ] - }, - { - "text": "Ensure respect for the principle of non-discrimination and adopt comprehensive anti-discrimination legislation", - "values": [ - "4 - General action" - ] - }, - { - "text": "Diligently work towards achieving its noble target to ensure free primary and secondary education schooling", - "values": [ - "4 - General action" - ] - }, - { - "text": "Ratify the International Convention for the Protection of All Persons from Enforced Disappearance and ensure that international conventions to which Togo is a party are effectively integrated into domestic law", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "will examine the possible implementation of the United Nations Rules for the Treatment of Women Prisoners and Non-Custodial Measures for Women Offenders, otherwise known as the "Bangkok Rules"", - "values": [ - "3 - Considering action" - ] - }, - { - "text": "Make it easier for displaced persons in Lebanon, and their children, to obtain legal status in order to prevent any violation of fundamental rights recognised in treaties to which Lebanon is party, and develop a legal framework defining and protecting the rights and freedoms of those individuals", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Strengthen its National Plan on Disability, so that people with disabilities have progressively access to a wider array of services, which would provide them with greater independence", - "values": [ - "4 - General action" - ] - }, - { - "text": "Share with other States its expertise and achievements in the management of institutions providing special needs education ", - "values": [ - "1 - Minimal action" - ] - }, - { - "text": "Define incitement to violence on grounds of sexual orientation and gender identity as a criminal offence", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Investigate all crimes committed in relation to the crises in Mali, in all areas of the country ", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Continue efforts to improve universal access to primary health care and the right to education", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Intensify the measures for gender equality and equal treatment, particularly regarding the rights of women and the integration of national minorities, in accordance with the commitment formulated in paragraph 160 of its national report and the recommendations of the Committee on the Elimination of Racial Discrimination and the Committee on the Elimination of Discrimination against Women", - "values": [ - "4 - General action" - ] - }, - { - "text": "Prioritize the adoption and enactment of the Domestic Violence Bill and put in place further comprehensive measures to prevent and address gender-based violence, including the establishment of institutions for victim support", - "values": [ - "4 - General action" - ] - }, - { - "text": "Ensure the effective implementation of existing legislation on nondiscrimination, including by consulting with civil society, disseminating information to vulnerable groups about legal protections that are available to them and directing appropriate resources where needed to improve implementation", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Prevent domestic and gender violence and child abuse, including through public awareness-raising programmes on child abuse and in particular on sexual abuse ", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Undertake more effective measures to ensure the accessibility of crucial public services, such as education and healthcare, to the general population, particularly those living in rural areas ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Take measures to reduce the numbers of domestic violence cases and ensure that all victims get immediate access to reparation and protection measures, including judicial protection orders, legal assistance and reception centres in sufficient numbers ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Strengthen its efforts in the fight to eliminate violence against women and children ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Establish stronger laws against perpetrators of child abuse and to increase penalties and sentencing in courts ", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Ratify OP-CAT and incorporate it into domestic legislation ", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "That the Complaints and Human Rights Office of the Public Security Directorate and the National Centre for Human Rights work closely together to monitor the strict application of the rule of law for detainees", - "values": [ - "4 - General action" - ] - }, - { - "text": "Set up a shelter for victims of sexual abuse and violence", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Take further measures to prevent and combat violence against women and consider the enactment of a specific law ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Continue to adopt legislation that guarantees freedom of media", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Examine the possibility of enshrining the prohibition of torture in its legal framework", - "values": [ - "3 - Considering action" - ] - }, - { - "text": "Further pursue efforts to pass a national law which would ensure a greater degree of protection for children ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Establish a national human rights institution, in accordance with the Paris Principles", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Take concrete measures to remedy the excessive use of force by security forces", - "values": [ - "4 - General action" - ] - }, - { - "text": "Ratify as soon as possible ICCPR", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Continue to implement the measures necessary to find solutions for stateless persons", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Continue to take proactive and innovative steps aimed at ensuring sustainable development policies related to the promotion of economic, social and cultural rights", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Combat all forms of discrimination against persons with albinism", - "values": [ - "4 - General action" - ] - }, - { - "text": "Take measures to make the juvenile justice system more effective, in particular by ensuring the separate detention of juveniles as well as expeditious access of juveniles to legal counsels ", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Ratify the Protocol No. 12 to the Council of Europe Convention for the Protection of Human Rights and Fundamental Freedoms", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Organize, as a matter of urgency, inclusive national political consultations to reinstate democracy and rule of law ", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Continue strengthening actions directed at the implementation of the law on access to public information", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Continue with the policy to reduce violence against children and young people", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Introduce legislation to protect against discrimination based on sexual orientation, gender identity and intersex status", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Begin the process of drafting legislation to promote and protect the rights of persons with disabilities", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Establish a commission to investigate the alleged human rights violations in 2011 and ensure that all perpetrators are brought to justice ", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "End measures to restrict freedom of expression and assembly including short-term detentions and the use of criminal charges such as "precriminal social dangerousness", "contempt" and "resistance"", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Adopt legislation to legally prohibit corporal punishment of children ", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Establish and enforce laws and policies that criminalize and help prevent child, early and forced marriages", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Consider the possibility of raising the minimum criminal age and refrain from the practice of keeping children in custody ", - "values": [ - "3 - Considering action" - ] - }, - { - "text": "Amend the General Scheme of the International Protection Bill to address family reunification, best interests of the child and the legal framework of reception conditions", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Consider the possibility of adhering to the Second Optional Protocol of the ICCPR, abolishing the death penalty", - "values": [ - "3 - Considering action" - ] - }, - { - "text": "Take appropriate action to put into place free primary school education for all and to make primary education compulsory. ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Strengthen cooperation with human rights mechanisms and engage with OHCHR, and avail itself of the Office's expertise, in order to demonstrate transparency and to adopt measures to better ensure the full enjoyment of human rights and fundamental freedoms for all", - "values": [ - "4 - General action" - ] - }, - { - "text": "Maintain endeavours to decrease overcrowding of prisons and detention facilities through continued facility construction and improvements by other means", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Conduct an analysis of the discriminatory treatments that may be affecting foreigners, especially in the field of employment, and consider amending its legislation in accordance with the result of this study ", - "values": [ - "3 - Considering action" - ] - }, - { - "text": "Take further steps to combat trafficking of persons", - "values": [ - "4 - General action" - ] - }, - { - "text": "Consider creating a National Human Rights Institution in accordance with the Paris Principles ", - "values": [ - "3 - Considering action" - ] - }, - { - "text": "Consider the possibility of ratifying the Rome Statute and fully align its national legislation with the obligations under that instrument, including by incorporating provisions to investigate and prosecute genocide, crimes against humanity and war crimes by the national courts ", - "values": [ - "3 - Considering action" - ] - }, - { - "text": "Modify or repeal article 230 of the Criminal Code in order to decriminalize same-sex relations between consenting adults", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Decriminalize homosexual conduct by repealing relevant provisions within the Offences against the Person Act that may be used to criminalize homosexual conduct between consenting adults ", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Consider signing and ratifying CAT", - "values": [ - "3 - Considering action" - ] - }, - { - "text": "Consider signing the SADC Protocol on Gender and Development", - "values": [ - "3 - Considering action" - ] - }, - { - "text": "Adopt measures to legally abolish the death penalty ", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Ratify the CED ", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Continue increasing the allocation of additional resources to improve the living conditions of the Roma population in the informal settlements, by strengthening their security of tenancy and ensuring the human right to drinking water and sanitation and access to electricity", - "values": [ - "4 - General action" - ] - }, - { - "text": "Update the national action plan for the implementation of the rights of the child, drafted in 2012", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Suspend the application of the death penalty and definitely abolish it", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Prohibit the widespread practice of female genital mutilation/cutting in Somalia, including by amending the penal code to ban the practice and bringing legislation into conformity with Article 15 (4) of the Provisional Constitution ", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Intensify its work to improve the situation of its indigenous population.", - "values": [ - "4 - General action" - ] - }, - { - "text": "Adopt a comprehensive list of hazardous work prohibited to children and amend its laws to raise the minimum age for employment to at least 15 and to expressly prohibit the use, procuring or offering of a child for pornography", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Accelerate its efforts aimed at implementing its plans and programmes in order to better protect and promote human rights and fundamental freedoms.", - "values": [ - "4 - General action" - ] - }, - { - "text": "Take measures to ensure a proper legal framework for the Affirmative Action Policy", - "values": [ - "4 - General action" - ] - }, - { - "text": "Increase the support to children with disabilities so that they can live in the community and avoid their institutionalization", - "values": [ - "4 - General action" - ] - }, - { - "text": "Take the necessary measures to guarantee the exercise of the right to family reunification of unaccompanied children recognized as refugees or resettled", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Introduce and seek prompt passage of access-to-information legislation", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Seek technical assistance from OHCHR in regard to human and material constraints faced ", - "values": [ - "1 - Minimal action" - ] - }, - { - "text": "Work with WHO and ILO to improve levels of sanitation, hygiene and maternal health care in order to reduce the spread of communicable diseases ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Investigate reports of harassment and detention of human rights defenders, including alleged mistreatment while in police custody, with a view to ending impunity", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "The RMI is a party to the Convention on the Rights of the Child (CRC) and the Convention on the Elimination of all Forms of Discrimination Against Women (CEDAW). The Women in Development Office and the Child Rights Office have been set up under the Ministry of Internal Affairs to implement the provisions of both conventions and ensure the fulfillment of RMI's obligation. The RMI submitted its initial country report as well as its 2nd Periodic Report to the UN Committee on the Rights of the Child, but has yet to do so with respect to CEDAW. Although the RMI has ratified only 2 of the core human rights conventions, it is envisaged that the RMI will be in a better position to ratify other conventions. The fact of the matter is, however, that due to capacity and resource constraints, full implementation of the 2 human rights conventions ratified thus far has been difficult already. In the same token, it should be noted that where the construction of a written law is open to more than one interpretation, an interpretation which is consistent with the RMI's international obligations will be preferred. The goal to ratify other human rights conventions remains nevertheless.", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Strengthen its efforts to promote and protect the rights of persons with disabilities", - "values": [ - "4 - General action" - ] - }, - { - "text": "Incorporate sexual violence within the Comprehensive Reparations Programme", - "values": [ - "4 - General action" - ] - }, - { - "text": "Intensify efforts to improve the human rights of women, and take measures to combat harmful traditional practices under customary law, such as early and forced marriage, trafficking, polygamy and levirate marriage ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Consider establishing legal assistance offices in order to assist those who cannot afford the services of a private lawyer", - "values": [ - "3 - Considering action" - ] - }, - { - "text": "Implement the recommendations of the United Nations expert on the independence of judges and lawyers, particularly with a focus on challenges faced by women and other disadvantaged groups in accessing justice, including combating impunity and corruption ", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Consider ratifying ICRMW", - "values": [ - "3 - Considering action" - ] - }, - { - "text": "Guarantee access to basic social services, including lodgings, hygiene, health and education, to all migrants and members of their families", - "values": [ - "4 - General action" - ] - }, - { - "text": "Continue to enhance access to basic health services, especially for children.", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Take and publicize measures to strengthen media independence, and to address concerns over media concentration", - "values": [ - "4 - General action" - ] - }, - { - "text": "Better distribute food and other resources with a view to achieving the Millennium Development Goals by 2015. ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Establish appropriate national strategies with the aim to identify and address structural discrimination in the justice system", - "values": [ - "4 - General action" - ] - }, - { - "text": "Ratify all main international human rights treaties, especially ICCPR-OP2, Optional Protocol to the Convention against Torture and other Cruel, Inhuman or Degrading Treatment or Punishment (OP-CAT), the Optional Protocols to the Convention on the Rights of the Child, on the involvement of children in armed conflict (OP-CRC-AC) and on the sale of children, child prostitution and child pornography (OP-CRC-SC), and incorporate these treaties fully in the national legislation", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Establish without delay a moratorium on the death penalty and ratify the Second Optional Protocol to the International Covenant on Civil and Political Rights, aiming at the abolition of the death penalty", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Step up efforts aimed at increasing the employment of women in the formal sector, including ensuring equal pay to women in the labour market", - "values": [ - "4 - General action" - ] - }, - { - "text": "Reinforce its efforts to regulate labor relations in a framework that safeguards dignity and rights and is consistent with international standards, in particular with regard to ancillary or domestic workers", - "values": [ - "4 - General action" - ] - }, - { - "text": "Do and act in light of its national reality in order to guarantee unity, peace, stability in Myanmar and in the region ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Adopt all necessary measures to reduce prejudice and discrimination against the LGBT community, including through the training of the police, prosecutors and judges to respond effectively to violence against LGBT activists and to ensure the adequate protection of LGBT persons in the work place", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Take all necessary measures to prevent reprisals and inter-communal violence, and to disarm the militias ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Adopt national policies that protect and guarantee the rights of all migrant workers in Costa Rica, in particular to address the needs of women and children ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Ensure that all police officers are aware of and abide by international human rights standards on police use of force", - "values": [ - "4 - General action" - ] - }, - { - "text": "Adopt a legal moratorium on the use of death penalty. ", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Adopt measures to harmonize the legal order with the constitutional provisions on equality between men and women, including the revision of the Penal Code ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Establish national mechanisms to monitor and stop incitement to hatred, acts of racism and Islamophobia", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Withdraw reservations to United Nations treaties and ensure that all international treaties are fully transformed into national law ", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Take measures to protect human rights defenders, particularly in the Western Sahara, against harassment, repression, arrest or detention, including by granting an official accreditation to the associations working in this field ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Take the necessary measures to prevent child abuse and neglect and investigate cases of domestic violence, ensuring that sanctions be applied to perpetrators.", - "values": [ - "4 - General action" - ] - }, - { - "text": "Continue its efforts to eradicate poverty with the support and cooperation of the international community", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Continue efforts to promote freedom of expression and information by protecting journalists", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Ratify the 1961 Convention on the Reduction of Statelessness and establish safeguards to guarantee birth registration to all children born in the country who would otherwise be stateless", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Consider signing the Optional Protocol to the International Covenant on Economic, Social and Cultural Rights at the opening-for-signature ceremony on 24 September, during the treaty event in New York.", - "values": [ - "3 - Considering action" - ] - }, - { - "text": "Put in place effective measures to implement the Child Rights Act and protect children from sexual and gender-based violence, abuse, exploitation, trafficking, and the worst forms of child labour ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Reinstate a de facto moratorium of the death penalty, with a view to abolish the punishment", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Explore all the ways for enabling the development of a pluralistic society in a peaceful environment", - "values": [ - "4 - General action" - ] - }, - { - "text": "Allow independent international monitoring bodies unconditional access to detention facilities in order to perform their functions", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Adopt a transparent, independent and impartial mechanism to ensure justice for the victims of the events of 28 September 2009, including the prosecution of those responsible for gross human rights violations, in line with international standards ", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Establish mechanisms to disseminate information about the consequences of acts of violence against children ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Continue its efforts to combat poverty - ensure sustainable development - improve access to health care and education - and achieve the Millennium Development Goals ", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Further promote a culture of human rights among the society, to strengthen national capacities and to address short comings in the area of human rights promotion and protection including the rule of law and adequate protection of vulnerable segments of the population", - "values": [ - "4 - General action" - ] - }, - { - "text": "Adhere to the International Covenant on Economic, Social and Cultural Rights.", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Consider signing and ratifying the International Convention on the Rights of All Migrant Workers and Members of Their Families ", - "values": [ - "3 - Considering action" - ] - }, - { - "text": "Take measures to ensure the implementation of national and international norms on trafficking in persons, particularly children, including through the establishment of a national births register", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Effectively implement the Domestic Violence Prevention and Protection Act through advocacy and awareness-raising amongst targeted audiences", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Increase education on human rights to raise public awareness and the capacity of relevant legal agencies to better ensure the rights and basic freedoms of the people within the nation's rule of law ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Ensure effective enforcement of the Trafficking in Persons Act and continue to combat trafficking in persons as well as arms smuggling and drug trafficking ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Refrain from imposing excessive fines on media outlets fordefamation, while working to adopt the law on defamation, which abolishes criminal liability for defamation and insult", - "values": [ - "4 - General action" - ] - }, - { - "text": "Establish adequate services and opportunities for children with disabilities", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Continue improving the living standards of poor persons and those living in remote areas to which access is difficult ", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Strengthen the necessary measures to enhance tolerance and dialogue among civilizations", - "values": [ - "4 - General action" - ] - }, - { - "text": "Avoid any obstacle to the work exercised by individuals and institutions protecting human rights in Nicaragua ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Prepare and implement a specific birth registration strategy for indigenous peoples", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Ensure migrants found at sea are afforded the full measures of protection they are entitled to under international law ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Continue taking measures with a view to ratifying the Convention on the Rights of Persons with Disabilities as a priority", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Take effective action against child labour, and against smuggling or abduction, exploitation or sexual abuse of children.", - "values": [ - "4 - General action" - ] - }, - { - "text": "Ratify the Rome Statute of the International Criminal Court as well as its Agreement on Privileges and Immunities without formulating any reservation", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Step up its effort in improving access to education for children from Ciganos and Roma communities and continue to combat racial stereotypes against those communities ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Take further measures to facilitate family reunification", - "values": [ - "4 - General action" - ] - }, - { - "text": "Revoke the current sponsorship system, kafala, and replace it with regulations in accordance with international standards ", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Accede to the Convention relating to the Status of Refugees", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Continue extending its international commitments and consider ratification of the Rome Statute of the International Criminal Court ", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Police be trained to provide improved investigation and prosecution services to women subjected to violence including rape, and that resources be made available to improve access to shelters ", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Increase efforts to prosecute offenders of human trafficking, identify and protect trafficking victims, and make efforts to prevent trafficking crimes ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Implement the Ouagadougou Agreement in full, and hold fair elections by end June 2010 ", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Improve the investigation of alleged human rights violations by law enforcement officials, including by establishing an independent mechanism to investigate such allegations with the power to order disciplinary proceedings and refer cases directly to the judicial authorities", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Adopt measures to eliminate discrimination against people of African descent and indigenous peoples ", - "values": [ - "4 - General action" - ] - }, - { - "text": "In line with a previous recommendation made by the Committee on Economic, Social and Cultural Rights, adopt effective measures to combat the culture of violence and impunity and to better protect human rights defenders, including indigenous leaders and peasant activists", - "values": [ - "4 - General action" - ] - }, - { - "text": "Take measures to integrate technical vocational education and training into formal education", - "values": [ - "4 - General action" - ] - }, - { - "text": "Ensure the full and effective implementation of the Domestic Violence (Protection Order) Act.", - "values": [ - "4 - General action" - ] - }, - { - "text": "Effectively enforce existing legislation in order to prevent and prohibit the practice of early marriages", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Implement policies to guarantee that girls and women with disabilities have equal access to education, employment and work", - "values": [ - "4 - General action" - ] - }, - { - "text": "Further review and abolish those laws which are discriminatory against women and religious minorities according to international standards", - "values": [ - "3 - Considering action" - ] - }, - { - "text": "Prohibit poligamy", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Continue to promote efforts aimed at developing methodological and innovative approaches balancing the short-term needs and the long-term vision in order to establish a sustainable education system", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Ban corporal punishment as a disciplinary measure in schools and in homes, and conduct awareness campaigns so as to reduce the scope of such action ", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Continue to improve efforts to combat gender-based violence, and establish a mechanism for protecting abused women ", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Continue the revision of anti-terrorism and data protection legislation and policies and repeal the provisions that contravene the applicable international law in areas such as due process and imprisonment, and develop measures to prevent and combat racial profiling by law enforcement bodies", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Implement the recommendations of the Committee on Economic, Social and Cultural Rights, specifically recommendations 21 and 22", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Meet its funding commitments to the Truth and Reconciliation Commission for the duration of its mandate ", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Withdraw the reservations to the Convention on the Elimination of All Forms of Discrimination against Women, particularly articles 2 (f), 9 and 15.", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Continue the implementation of the national health programme for indigenous peoples in order to reduce inequalities in the health status of indigenous peoples", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Continue to implement its commitments on the promotion of human rights", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Ratify the Second Optional Protocol to ICCPR as soon as possible ", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Adopt specific legislation to protect women and children with a view to fully implement the provisions of CEDAW and CRC ", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Make all forms of violence against women and children criminal offences, and to provide victims of violence with effective mechanisms of redress and protection", - "values": [ - "4 - General action" - ] - }, - { - "text": "Intensify programmes of human rights education with a view to fight racist prejudices and to start such programmes already at school level ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Promote the political participation of women in public positions of power", - "values": [ - "4 - General action" - ] - }, - { - "text": "Accede to regional and international treaties to which it is not party, including the Rome Statute of the International Criminal Court, and include the provisions of these instruments in its domestic legislation", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Pursue efforts to ratify international human rights instruments", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Amend section 27 paragraph 1 of the Constitution, incorporate into the legislation the principle of equality between women and men and a prohibition of discrimination on the basis of sex as well as enact legislation to enforce the prohibition of discrimination ", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Enhance the capacity of the Haitian National Police to respect and protect human rights through specialized training ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Continue its measures with regard to the better regulation and mainstreaming of the operation of the Ombudsman", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Ratify the Optional Protocol to the Convention against Torture, as previously recommended", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Fulfil its first cycle commitment to strengthen the independence and impartiality of its national Human Rights Commission", - "values": [ - "4 - General action" - ] - }, - { - "text": "Consider ratifying the International Convention for the Protection of All Persons from Enforced Disappearance and accept the competence of the relevant committee.", - "values": [ - "3 - Considering action" - ] - }, - { - "text": "Continue commitment against all forms of violence against women, particularly sexual violence, female genital mutilations and forced marriage", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Promote accountability by taking the necessary measures to allow the responsible entities (such as the Ministry of Justice, the National Police, the National Bureau of Investigation, the Commission on Human Rights and the Office of the Ombudsman) to conduct investigations into allegations of human rights violations in an efficient, independent and impartial manner so that justice is served ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Maintain constructive and cooperative dialogue with the United Nations system in the field of human rights ", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Continue its achievements in the field of human rights as an encouragement factor for the promotion and protection of human rights", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Continue taking all necessary measures to incorporate the rights of disabled persons in all aspects of public policies, including by strengthening the national secretariat for persons with disabilities to standardize protocols and guidelines for the implementation of rehabilitation services at the national level", - "values": [ - "4 - General action" - ] - }, - { - "text": "Consider ratification of the Optional Protocol to the Convention on the Elimination of All Forms of Discrimination against Women.", - "values": [ - "3 - Considering action" - ] - }, - { - "text": "Pursue measures adopted to establish a plan of action to combat child labour, in cooperation with the International Labour Organization (ILO)", - "values": [ - "4 - General action" - ] - }, - { - "text": "Respond as soon as possible to the pending request for the visit of the independent expert on the issue of foreign debt, in line with the standing invitation to the special procedures it had extended in 2009 ", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Continue its policies to combat violence against women and take further steps to promote their access to justice ", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Share experience and good practices with other countries in areas of development and protection of human rights", - "values": [ - "1 - Minimal action" - ] - }, - { - "text": "Penalize the use of xenophobic and racist rhetoric and prohibit organizations which promote or incite to racial discrimination ", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Offer a standing invitation to all special procedures and seek international technical assistance as recommended by several United Nations human rights treaty monitoring bodies.", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Consider the possibility of ratifying the Optional Protocol to the Convention against Torture and Other Cruel, Inhuman or Degrading Treatment or Punishment", - "values": [ - "3 - Considering action" - ] - }, - { - "text": "Further pursue its efforts aimed at promoting economic growth and raising living standards in the Sultanate ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Expedite the creation of a National Human Rights Institution in accordance with the Paris Principles", - "values": [ - "4 - General action" - ] - }, - { - "text": "Strengthen public policies so that children from disadvantaged backgrounds and foreign origin may enjoy the best possible level of education", - "values": [ - "4 - General action" - ] - }, - { - "text": "Implement monitoring mechanisms to stop people trafficking ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Create a special mechanism responsible for independent child rights monitoring", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Take necessary action to address the impediments faced by the Turkish minority in exercising its religious freedoms, including the prevention of choosing religious leaders and their discouragement from restoring the property of the foundations and refusal for construction of mosques in the cities", - "values": [ - "4 - General action" - ] - }, - { - "text": "Extend a standing invitation to all special procedures of the Human Rights Council and submit regular reports to the treaty bodies", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Put an immediate end to human rights violations documented in the report of the COI, many of which constitute, in the view of the report, crimes against humanity ", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Continue to promote the rights of women, with a focus on obtaining demonstrable results as regards, in particular, access to health services and to the labour market", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Consider extending a standing invitation to all Special Procedures", - "values": [ - "3 - Considering action" - ] - }, - { - "text": "Pursue the implementation of strategies and action plans in favour of the socio-economic and cultural development", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Adopt and implement the revised Right to Information Bill in order to establish a robust legislative framework for access to information", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Continue to improve the health-care services especially in conjunction to reducing the high mortality rate", - "values": [ - "4 - General action" - ] - }, - { - "text": "The ratification of the Convention on the Rights of Persons with Disabilities", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Ensure the full respect for freedom of expression and freedom of assembly for all, including LGBT people", - "values": [ - "4 - General action" - ] - }, - { - "text": "Provide adequate resources to fully implement its National Programme to Combat Trafficking in Human Beings, paying particular attention to combating trafficking of children ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Accede to the Optional Protocol to CAT and establish its national preventive mechanism as required under that Protocol", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Prioritize policies and programmes on nutrition, vaccination and health workers to reduce maternal, neonatal, and child mortality, and make sufficient budgetary allocations", - "values": [ - "4 - General action" - ] - }, - { - "text": "Continue with efforts to promote and protect human rights according to international commitments and religious and cultural specificities", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Ratify the International Covenant on Economic, Social and Cultural Rights.", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Take steps to implement a comprehensive legal framework addressing all forms of violence against women and children ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Adopt special legislation to prevent and combat violence against women and girls and to prosecute and punish the perpetrators ", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Continue its efforts to raise awareness in rural communities about marriage laws and the dangers of child, early and forced marriage ", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Allow independent human rights monitors to visit the country, cooperate with special procedures and start an open debate, both domestically and at international level, on the findings of the COI", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Take the necessary measures to guarantee the proper functioning of a juvenile justice system including, inter alia, by treating minors in a manner appropriate to their age ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Strengthen cooperation with civil society organizations", - "values": [ - "4 - General action" - ] - }, - { - "text": "Effectively promote ethnically mixed organizations around common civil, professional and business interests in order to fully support the social cohesion of all ethnic groups", - "values": [ - "4 - General action" - ] - }, - { - "text": "Set up a new forum (type Joint Governance Assessment) that would allow the government to address the governance issues (including human rights) with development partners ", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Continue the efforts in strengthening the programme and policy of social inclusion and cohesion of all citizens, in particular with respect to the protection of the rights and legitimate interests of the vulnerable and minority groups ", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Continue its efforts to enhance labour rights and ensure the safety of workers, including giving full legislative expression of the principle of equal remuneration for men and women for work of equal value", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Impose a moratorium on pending executions and review the Penal Code with the aim of a complete abolition of the death penalty", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Continue the efforts to implement consultation mechanisms and ensure the protection of human rights of indigenous groups ", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "The National Human Rights Institution be made fully operational and ensure that it functions in conformity with Paris Principles", - "values": [ - "4 - General action" - ] - }, - { - "text": "Increase the total number of Public Defenders and to secure a constant presence of Public Defenders in all detention institutions", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Continue to improve living conditions in rural areas through the realization of social infrastructures and guaranteeing better services for its population", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Comply with the recommendations of the Committee on Economic, Social and Cultural Rights to prepare studies on the impact on the human rights of local communities in third countries of agro-fuel projects promoted by Belgian companies", - "values": [ - "4 - General action" - ] - }, - { - "text": "Take all necessary measures to fight effectively against all forms of discrimination", - "values": [ - "4 - General action" - ] - }, - { - "text": "Obtain support from the CICIG and enhance judicial power to solve the issue of impunity.", - "values": [ - "4 - General action" - ] - }, - { - "text": "Refrain from targeting or restricting the activities of civil society organizations based on their political affiliation or their receipt of foreign funding", - "values": [ - "4 - General action" - ] - }, - { - "text": "Support and facilitate the legal establishment of the commission in charge of the self-regulation of the media in Rwanda and provide adequate and sufficient resources so that it carries out its mandate freely and independently", - "values": [ - "4 - General action" - ] - }, - { - "text": "End discrimination against ethnic minorities to ensure that non-Muslims are not subjected to Sharia law and are able to practise their own religion without hindrance", - "values": [ - "4 - General action" - ] - }, - { - "text": "Refrain from preventing or hindering the restoration of Islamic holy shrines by the Waqf", - "values": [ - "4 - General action" - ] - }, - { - "text": "Protect the right to freedom of assembly and association of human rights defenders", - "values": [ - "4 - General action" - ] - }, - { - "text": "Continue to promote human rights education", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Improve the living conditions of asylum seekers and step up efforts directed towards improving the treatment of asylum seekers and refugees", - "values": [ - "4 - General action" - ] - }, - { - "text": "Ratify as soon as possible the International Convention for the Protection of All Persons from Enforced Disappearance and fully recognize the competence of the Committee on Enforced Disappearances, as provided for in articles 31 and 32 of the Convention ", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Expedite the adoption of a social housing policy that will include the most vulnerable segments of society, such as minorities, in particular Roma as well as persons who live in conditions of extreme poverty, persons with disabilities, migrants and refugees", - "values": [ - "4 - General action" - ] - }, - { - "text": "Enact legislation prohibiting all forms of traditional practice of FGM in line with recommendations made by the Human Rights Committee, CEDAW and the Committee on the Rights of the Child.", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Actively consider appointing a Child Ombudsman as per CRC recommendations ", - "values": [ - "3 - Considering action" - ] - }, - { - "text": "Work with the African Union to establish a hybrid court and the commission for truth, reconciliation and healing within the time frame set out in the peace agreement", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Continue the efforts in fighting social inequalities and poverty, especially of women and children, by promoting the respect for fundamental human rights and adopting policies that provide favourable conditions of work, in line with international human rights law", - "values": [ - "4 - General action" - ] - }, - { - "text": "Seek technical assistance in various areas from the international community, particularly OHCHR.", - "values": [ - "1 - Minimal action" - ] - }, - { - "text": "Fully implement the international obligations emanating from the Convention on the Prevention and Punishment of the Crime of Genocide", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Take the necessary steps, including a prompt and thorough investigation into human rights violations and abuse cases committed in the country", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Set up an independent mechanism for investigating complaints of violations of human rights.", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Undertake information campaigns to prevent discrimination, homophobic and transphobic violence", - "values": [ - "4 - General action" - ] - }, - { - "text": "Take all necessary measures to effectively implement the Child Care and Protection Act", - "values": [ - "4 - General action" - ] - }, - { - "text": "Develop policies and measures to ensure equal access to services, particularly access to mainstream education, and participation of persons with disabilities in the elaboration and evaluation of programmes which concern them ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Adopt legislation that criminalizes domestic violence in all provinces and ensure, promote and facilitate the effective implementation of this legislation by, inter alia, providing training for law enforcement officers", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Lift multiple reservations to international human rights treaties, including the ICESCR and the Optional Protocols to the CRC ", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Strengthen measures to combat racial discrimination, including against incitement of discrimination or violence on racial, ethnic or religious grounds", - "values": [ - "4 - General action" - ] - }, - { - "text": "Sign and ratify the Optional Protocol to the Convention on the Elimination of All Forms of Discrimination against Women and take all appropriate legislative measures", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Include a prohibition of discrimination of any kind, including discrimination based on sexual orientation and gender identity, in areas outside employment, in line with international standards ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Implement in full the Optional Protocol to the Convention against Torture, which Lebanon acceded to in 2008, in particular by establishing a national preventative mechanism as a matter of priority", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Implement the recommendation given by the Committee on the Elimination of Discrimination against Women (CEDAW) to conduct a comprehensive study on the situation of minority women and develop a national strategy to improve the living conditions for minority women", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Expedite the implementation of the Public Policy for Coexistence and Elimination of Racism and Racial Discrimination", - "values": [ - "4 - General action" - ] - }, - { - "text": "Consider the possibility of mainstreaming a human rights approach into the immigration policies", - "values": [ - "3 - Considering action" - ] - }, - { - "text": "Establish a fully implementable national action plan which guarantees full protection of vulnerable groups ", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Continue to expand its health insurance coverage to all citizens, including those in rural areas", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Continue to strengthen the programmes of social protection being implemented in order to provide the best possible welfare and quality of life for its people, especially for those most in need", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Investigate the torture and death of 18,000 detainees in its prisons since March 2011, and publish a clear report on the subject", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Provide guarantees for the effective investigation and prosecution of the cases of violence against women", - "values": [ - "4 - General action" - ] - }, - { - "text": "In order to achieve a full and effective implementation of the Strategic National Plan on Sexual and Reproductive Health, mobilize adequate resources to improve access of women to the justice system", - "values": [ - "4 - General action" - ] - }, - { - "text": "Integrate specialized and holistic rehabilitation services into the public health system ", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Establish measures to respond more effectively to requests for refuge", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Consider implementing the recommendations of UNHCR with respect to refugees and IDPs ", - "values": [ - "3 - Considering action" - ] - }, - { - "text": "Adopt legislation prohibiting the corporal punishment of children within the family ", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Continue to engage with the international community, particularly the major emitting countries of the developed world, many of whom are States members of the Council, working with them in order to protect the human rights of Tuvaluans by securing significant global reductions in greenhouse gas emissions", - "values": [ - "4 - General action" - ] - }, - { - "text": "Ensure accountability for all acts of torture that occur within the framework of the fight against terrorism", - "values": [ - "4 - General action" - ] - }, - { - "text": "Sign and ratify ICCPR ", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Fulfil its international obligations by ratifying as a matter of priority the International Covenant on Civil and Political Rights and the International Covenant on Economic, Social and Cultural Rights", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Step up its efforts to ratify the International Convention on the Protection of the Rights of All Migrant Workers and Members of Their Families and the Trafficking in Persons Protocol", - "values": [ - "4 - General action" - ] - }, - { - "text": "Undertake all necessary measures to prevent discrimination and violence against LGBTI persons", - "values": [ - "4 - General action" - ] - }, - { - "text": "Continue its efforts to address the challenges it faces, with the support of the States members of the United Nations.", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "In addition to the provision of free education at Primary and Secondary level, the Government has also made a commitment to the education of tertiary students. In line with theme of "Building a Smarter Fiji", the Government has announced a number of initiatives ensuring the youth of Fiji access to tertiary education , one of which is a low interest loan to any Fijian student who is accepted at any of the tertiary institutions in Fiji. The Tertiary Education Loan Scheme (TELS) covers the cost of tuition and will not be repaid until after a student has graduated and entered employment. The Government has allocated 600 scholarships for tertiary students who achieve the highest marks in the Fiji Seventh Form Examination under the National Toppers Scheme.", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Continue its efforts to combat violence against women, such as domestic violence and forced marriages, and promote gender equality, by fully implementing relevant legislation, conducting awareness-raising programmes for the population and bringing to justice the perpetrators of these violence", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Strengthen efforts to improve the education system, reduce the dropout rates and eradicate illiteracy by inter alia, allocating more resources in the education sector and strengthening cooperation with the international community and organizations including UNICEF and UNESCO", - "values": [ - "4 - General action" - ] - }, - { - "text": "Continue to fight resolutely against the practice of arbitrary or summary executions and against impunity", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Decriminalize sexual activity between consenting adults of the same sex, and address hate crimes on the grounds of sexual orientation and gender identity, as matter of urgency, as previously recommended", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Provide adequate resources, including taking capacity-building measures, to enable the judiciary and the legal authorities to function properly", - "values": [ - "4 - General action" - ] - }, - { - "text": "Adopt policy and legislative measures to encourage the participation of women in the political and public life, and accompany this process with awareness campaigns involving the appropriate public institutions and civil society", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Improve the critical situation for women by taking measures including the elimination of forced and early marriage and female genital mutilation, as well as by increasing the representation of women in the political decision-making process ", - "values": [ - "4 - General action" - ] - }, - { - "text": "As long as the Government of the Democratic People's Republic of Korea maintains the death penalty, respect minimum standards in that regard, Economic and Social Council resolution 1984/50 and the standing provisions of ICCPR (articles 6 and 14) as well as of CRC (article 37)", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Reschedule the postponed visit of the Working Group on Arbitrary Detention and set the date for the visit of the Special Rapporteur on the human rights of migrants", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Continue proceedings to expedite the trials of detainees with all the guarantees and to improve the living conditions of the prison population", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Provide the necessary human means and resources for the effective implementation of the Sexual Offences Act and the national policy on domestic violence", - "values": [ - "4 - General action" - ] - }, - { - "text": "Ensure a fair trial for all detained, complying with international standards, within a reasonable timeframe", - "values": [ - "4 - General action" - ] - }, - { - "text": "Take on board policies to promote human rights regardless of the sexual orientation of persons", - "values": [ - "4 - General action" - ] - }, - { - "text": "Extend the benefits of the labour legislation to domestic workers, and ensure that abuses by employers are systematically prosecuted and punished ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Respect the right to freedom of expression and association, and make the minimum use of criminal proceedings against persons availing themselves of those rights ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Continue the process of abolishing the death penalty and consider the ratification of the Second Optional Protocol to the International Covenant on Civil and Political Rights", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Study the possibility of becoming a party to the following international instruments: ICCPR, ICESCR and CRPD ", - "values": [ - "3 - Considering action" - ] - }, - { - "text": "Redouble its efforts to reduce unemployment and poverty, thereby ensuring that each and every Ghanaian can benefit from the fruits of the country's impressive economic growth", - "values": [ - "4 - General action" - ] - }, - { - "text": "Create conditions for the realization of the right to the truth, which is the necessary precondition for the prevention, recognition and punishment of genocide ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Continue efforts to combat racism, racial discrimination and related forms of intolerance motivated by gender, age, nationality, language, religion, beliefs, opinions, political activity, trade union activity, kinship, health status, disability, sexual orientation or other personal characteristics, paying special attention to the structural elements of discrimination that may affect the effective exercise of the rights to health, education, decent work and participation in decision-making", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Provide medical follow-up for HIV-positive mothers and respective infected children.", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Croatia expressed its commitment to make all recommendations more visible and to the comprehensive UPR exercise, although it can certainly be improved.", - "values": [ - "4 - General action" - ] - }, - { - "text": "Strengthen the role of its national mechanisms for the promotion and protection of the rights of minorities, refugees and internally displaced persons, with appropriate assistance from the international community.", - "values": [ - "4 - General action" - ] - }, - { - "text": "Amend the current Act on the Legal Recognition of the Gender of Transsexuals by abolishing the need for sterilization or infertility as a requirement for a person\u2019s legal recognition of their gender identity", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Engage civil society in the UPR follow-up process ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Continue efforts for increasing quality of children's education, especially in rural areas ", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Accept, ratify or accede to the Rome Statute of the International Criminal Court", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Take further steps fully to understand the causes of inequality faced by indigenous people and to minimize their effects ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Ratify the Protocol to the African Charter on Human and Peoples\u2019 Rights on the Rights of Women in Africa (the Maputo Protocol)", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Extend a standing invitation to special procedures to allow them easy access in visiting Fiji and thus assist the authorities in pursuing progress", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Continue to promote the empowerment of women and their participation in society", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Consider introducing amendments to the Act on the national mechanism for the prevention of torture within the Ombudsman\u2019s Office, which will allow an additional funding for the mechanism", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Align the national legislation with international standards to guarantee freedom of assembly and association, in particular as regards the notification of the organisation of peaceful assemblies", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Reform its relevant legislation to provide for the full enjoyment of the right to freedom of expression, the right to the freedom of assembly and the right to freedom of association ", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Continue efforts to implement the human right to safe water and sanitation, ensuring this human right without discrimination for the poorest sectors of the population, including indigenous peoples and migrants", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Consider increasing the resources of social protection, in particular for families suffering from poverty", - "values": [ - "3 - Considering action" - ] - }, - { - "text": "Intensify efforts to combat human trafficking", - "values": [ - "4 - General action" - ] - }, - { - "text": "Strengthen the measures taken on the fight against discrimination against women", - "values": [ - "4 - General action" - ] - }, - { - "text": "Ensure the full implementation of the National Action Plan against Human Trafficking as a means of ensuring the promotion and protection of victims of trafficking", - "values": [ - "4 - General action" - ] - }, - { - "text": "Make fully operational the mechanisms for implementing the minority strategy and the national Roma strategy, such as the National Minority Council and a special funding mechanism.", - "values": [ - "4 - General action" - ] - }, - { - "text": "Further strengthen the National Preventive Mechanism under the Optional Protocol to the Convention against Torture and Other Cruel, Inhuman or Degrading Treatment or Punishment by ensuring its autonomy, allocating necessary resources and developing a plan for its effective implementation ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Continue its efforts to eradicate all forms of discrimination against the elderly ", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Review the institutions of the Human Rights Commission and the Human Rights Commissioner ombudsperson, and to take the measures necessary to bring them into conformity with the Paris Principles", - "values": [ - "3 - Considering action" - ] - }, - { - "text": "Introduce an effective system towards the elimination of female genital mutilation (FGM) and develop governmental policy in this regard ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Consider ratifying other key international human rights treaties, including the International Covenant on Economic, Social and Cultural Rights, the International Convention on the Elimination of All Forms of Racial Discrimination, and the Convention against Torture and Other Cruel, Inhuman or Degrading Treatment or Punishment, as well as Optional Protocols to the Convention against Torture ", - "values": [ - "3 - Considering action" - ] - }, - { - "text": "Continue to promote the training and education of qualified people, especially in the sphere of health in developing countries ", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Establish a national institution for the advancement of women in accordance with the provisions of the Beijing Platform for Action", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Take steps to fully implement the ratified international documents ", - "values": [ - "4 - General action" - ] - }, - { - "text": "To continue to promote and protect the fundamental freedoms and human rights of all its citizens", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Continue to strengthen the capacity of domestic institutions to combat sexual and gender-based violence, including through cooperation with the international community", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Join the declaration on sexual orientation and gender identity, while noting with congratulations the decriminalization of homosexuality", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Increase efforts to prevent labour market discrimination against workers with non-resident backgrounds, women and persons with disabilities by identifying and analysing the root causes of such discrimination and mitigating them through advocacy and training programmes", - "values": [ - "4 - General action" - ] - }, - { - "text": "Address gender inequality, protect the rights of women, improve their social status and effectively combat violence against women", - "values": [ - "4 - General action" - ] - }, - { - "text": "Ratify the Optional Protocols to the two Covenants [ICCPR and ICESCR] and CEDAW", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Take all social, educational and legal measures necessary to address the phenomenon of children accused of witchcraft", - "values": [ - "4 - General action" - ] - }, - { - "text": "Strengthen the resources of the National Commission on Human Rights", - "values": [ - "4 - General action" - ] - }, - { - "text": "Consider abolishing the death penalty or establish an official moratorium on its use", - "values": [ - "3 - Considering action" - ] - }, - { - "text": "Take capacity-building measures to strengthen the response of law enforcement authorities on human trafficking, including, inter alia, through the increase of budget and the appropriate training of personnel", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Facilitate acceding to both the International Covenant on Civil and Political Rights and the International Covenant on Economic, Social and Cultural Rights", - "values": [ - "4 - General action" - ] - }, - { - "text": "Maintain the de facto moratorium on the death penalty with a view to abolishing it", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Issue a standing invitation to the Human Rights Council special procedures", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Further strengthen the legal framework for the promotion and protection of human rights, including by completing the ratification process of the International Convention on the Protection of the Rights of All Migrant Workers and the Members of Their Families and the Convention of the Rights of Persons with Disabilities", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Disseminate information to the population of Botswana on ways and means to avail themselves of available judicial remedies relating to discrimination against women", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Continue taking steps to ensure that births of all children are registered ", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Continue consolidating the Equality Ombudsman's mandate in combating discrimination", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Take concrete steps to end ethnic segregation in schools, include diversity and tolerance education in primary school curricula, and submit outstanding reports to the implementation on the UNESCO Convention against Discrimination in Education", - "values": [ - "4 - General action" - ] - }, - { - "text": "Accede to the Convention against Torture and Other Cruel, Inhuman or Degrading Treatment or Punishment and its Optional Protocol, and the International Convention on the Protection of the Rights of All Migrant Workers and Members of their Families", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Amend the recently adopted cybercrime legislation to make sure it does not infringe human rights and redraft the Access to Information Bill and the Media Service Bill of 2015 in line with international human rights law and highest human rights standards", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Adequately resource its judicial system, and take steps to ensure the independence of the judiciary", - "values": [ - "4 - General action" - ] - }, - { - "text": "Continue efforts to combat violence against most vulnerable groups, especially women", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Consider undertaking measures that promote gender equality and the rights of women in the internal normative framework ", - "values": [ - "3 - Considering action" - ] - }, - { - "text": "Explicitly task the department of Climate Change and Energy to examine the human rights implications of climate change, particularly as it relates to the State's ability to realize socioeconomic rights", - "values": [ - "4 - General action" - ] - }, - { - "text": "Revitalize the Social Missions and maintain their characteristic of service to the community ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Take further measures to ensure equality between men and women, including through facilitation of women's participation in public affairs and the labour market ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Continue to implement the "Bogeumjari Housing" project which ensures solid and affordable housing to low income families by 2018", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Continue efforts to combat poverty through the Poverty Reduction Strategy Paper and the third edition of the Growth Strategy for Poverty Reduction covering the period 2011-2014", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Debate thoroughly, in the Plurinational Legislative Assembly, the issue of the right of individuals to appeal in cases addressed by communal courts, before the law on jurisdiction delimitation is adopted and, in that context, to devote particular attention to the contradiction between article 28 of the Procedural Penal Code and article 192.1 of the new Constitution", - "values": [ - "3 - Considering action" - ] - }, - { - "text": "Continue to be supported in its endeavours to address the issue of violence against women", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Continue promoting measures to ensure the right to identity for children in rural areas", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Continue to implement judicial reforms in the country", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Promote and strengthen the foundation of the family and its values among the society.", - "values": [ - "4 - General action" - ] - }, - { - "text": "Improve access to education, in particular in marginalized areas", - "values": [ - "4 - General action" - ] - }, - { - "text": "Take targeted measures or affirmative action, where necessary, to ensure active participation of women in the labour market and to close the wage gap between women and men.", - "values": [ - "4 - General action" - ] - }, - { - "text": "Strengthen efforts aimed at achieving the Sustainable Development Goals", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Consider extending a standing invitation to all the special procedures mandate holders of the Human Rights Council", - "values": [ - "3 - Considering action" - ] - }, - { - "text": "Develop the new media legislation on the basis of broad consultation with all stakeholders, and to ensure full respect for international standards on human rights", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Urgently develop and implement an action plan to implement the Strategy for the Repatriation of Meskhetians 2014", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Eliminate barriers preventing access of children with disabilities to the education system", - "values": [ - "4 - General action" - ] - }, - { - "text": "Consider ratifying the International Convention on the Protection of the Rights of All Migrant Workers and Members of Their Families and ILO Domestic Workers Convention, 2011 (No. 189)", - "values": [ - "3 - Considering action" - ] - }, - { - "text": "Guarantee freedom of expression without any kind of discrimination, complying with the obligation of due diligence in the protection of individuals against abuses of non-State actors and ensuring that the civil defamation law is not used with the aim of preventing legitimate criticism ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Carry out indispensable urban rehabilitation and reconstruction in accordance with the relevant legislation and internationally accepted human rights standards", - "values": [ - "4 - General action" - ] - }, - { - "text": "Bahrain will explore the possibility of reviewing some of its existing reservations to the treaties to which it is a party. By way of example, Bahrain has already withdrawn its reservation to article 20 of the Convention against Torture.", - "values": [ - "3 - Considering action" - ] - }, - { - "text": "Continue to engage with relevant international human rights mechanisms constructively.", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Consider ways to strengthen the National Human Rights Commission in line with the principles relating to the status of national institutions for the promotion and protection of human rights (the Paris Principles)", - "values": [ - "4 - General action" - ] - }, - { - "text": "Prohibit corporal punishment at school, at home and in public institutions for children and in the context of the administration of justice ", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Ensure the allocation of adequate resources for the effective implementation of policies and programmes against violence against women and trafficking in persons ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Adhere to the global trend against the capital punishment by establishing, as a first step, a moratorium on its use ", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Ensure that every child, particularly unaccompanied minors, whether on the high seas or on its territory, who seeks to enter Italy, has the right to an individual consideration of his/her circumstances and is provided prompt access to asylum and other relevant national and international procedures and protective measures", - "values": [ - "4 - General action" - ] - }, - { - "text": "Continue to put in place effective strategies to reduce poverty, particularly in rural areas.", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Continue taking measures to increase the participation of women in all social and economic spheres of Seychelles and continue implementing regulations to end all forms of discrimination against them", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Reduce delays in investigations and prosecutions by police, judges and prosecutors by creating mechanisms to fully implement legal and constitutional provisions guaranteeing access to justice for both victims of crime and offenders", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Do everything in its power to continue to live up to its well-deserved reputation, particularly by working actively to combat xenophobic, racist, anti-Semitic and Islamophobic acts which are tending to increase in the country", - "values": [ - "4 - General action" - ] - }, - { - "text": "Become a party to the remaining Optional Protocol to the Convention on the Rights of the Child on a communications procedure ", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Implement awareness-raising activities on the provisions of the Family Code and strengthen the judicial structure designed to assure respect for the Code in order to build on progress to be made with the adoption of the Code, and seek the support and assistance of the international community.", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Develop programmes to raise awareness on legislation, in the area of gender equality between workers, employers and the judiciary, strengthen the existing measures, and promote new measures to combine family responsibilities with work", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Establish an immediate moratorium on the death penalty as a first step towards its final abolition, withdraw the mandatory nature of the death sentence, publish detailed statistics on the death sentence and on executions", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Take additional measures to protect women from domestic violence ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Establish strategies and allocate resources aimed at achievement of the Sustainable development goals, especially those related to poverty eradication, equal access to resources, rights to education and health care and rights of the vulnerable groups", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Accede to the Rome Statute and fully align its national legislation with the Statute", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Increase action to tackle violations of religious freedom especially, but not only, against members of religious minorities", - "values": [ - "4 - General action" - ] - }, - { - "text": "Accede to the Rome Statute of the ICC and its Agreement on Privileges and Immunities", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Continue to develop programmes and measures aimed at ensuring quality and free education and health services for its population ", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Continue conducting policy programmes to support the effective implementation of the new Child Protection Act, in particular focusing on prevention and early intervention in cases of child abuse and domestic violence", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Develop a comprehensive, multisectoral national strategic plan on gender-based violence", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Declassify death penalty sentences imposed in the past as a State secret, with the aim of providing the families of those who were executed with information on their relatives sentenced to death ", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Continue efforts to support employment generation among the youth", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Continue applying the benefits of economic growth to all the population", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Intensify efforts to increase the level of well-being of the population and improve the national human rights protection system ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Redouble its efforts to ensure that its citizens fully enjoy the highest attainable standards of physical and mental health possible, including through international cooperation", - "values": [ - "4 - General action" - ] - }, - { - "text": "Implement measures to prevent sex-selective abortions, and conduct educational campaigns about gender roles and the value of women and girls ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Continue to promote and protect effectively, in law and in practice, the human rights of women and of internally displaced persons ", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Implement in national norms, the commitments made when ratifying the ICESCR and the CERD through the implementation of the recommendations which have come out of their respective Committees", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Establish a national human rights institution accredited by the International Coordinating Committee ", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Prompt adoption of Bill no. 2442 with amendments that guarantee the independence and autonomy of the National Preventative Mechanism members, in conformity with Brazil's OPCAT obligations ", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Consider the extension of a standing invitation to the special procedures of the Council.", - "values": [ - "3 - Considering action" - ] - }, - { - "text": "Consider ratification of the Second Optional Protocol to the International Covenant on Civil and Political Rights with the view to abolishing the death penalty, as signed in 2012", - "values": [ - "3 - Considering action" - ] - }, - { - "text": "Take into full consideration the recommendations made by the United Nations human rights mechanisms on hate speech", - "values": [ - "4 - General action" - ] - }, - { - "text": "Continue to strengthen the National Human Rights Commission", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Consider the possibility of ratifying the Optional Protocol to the Convention against Torture and other cruel, inhuman or degrading treatment ", - "values": [ - "3 - Considering action" - ] - }, - { - "text": "Accede to the International Convention on Protection of the Rights of All Migrant Workers and Members of Their Families.", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Implement the outstanding recommendations contained in the December 2011 report of the Working Group on Enforced or Involuntary Disappearances", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Provide comprehensive care to victims of landmines and cluster munitions through its development plans and the application of the Convention on the Rights of Persons with Disabilities", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Reduce the high rate of maternal mortality", - "values": [ - "4 - General action" - ] - }, - { - "text": "Consider taking comprehensive measures to address indigenous peoples' claims, giving due consideration to the United Nations Declaration on the Rights of Indigenous Peoples ", - "values": [ - "3 - Considering action" - ] - }, - { - "text": "Increase the human and financial resources made available to the office of the ombudsperson to enable it to fulfil its expanded mandate", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Amend the basic laws and other legislation in order to include the prohibition of discrimination and the principle of equality, in accordance with the recommendations of United Nations human rights treaty bodies", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Ratify the main international human rights instruments, including OP-CAT, the optional protocols to the Convention on the Rights of the Child, the Convention on the Rights of Persons with Disabilities and its Optional Protocol, and the International Convention for the Protection of All Persons from Enforced Disappearance, and ensure that their provisions are incorporated into the national legal system", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Prohibit child labour in contravention of ILO Convention No. 138 on Minimum Age and promote an information policy for those concerned families ", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Continue its efforts to address discrepancies in the enjoyment of rights by vulnerable groups, including children with disabilities, refugee children and children living in rural areas ", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Continue its measures with regard to the promotion and protection of children's rights and combating violence against women ", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Put an end to the institutional crisis so that Malian political actors can speak with a same voice for resolving the political crisis and re-establishing the territorial integrity of the country", - "values": [ - "4 - General action" - ] - }, - { - "text": "Strengthen measures to ensure that the Roma population can fully enjoy their economic, social and cultural rights in a way comparable to the rest of the population", - "values": [ - "4 - General action" - ] - }, - { - "text": "Protect the freedom of association, in accordance with the Egyptian Constitution, by adopting a new NGO law fully in line with international standards and best practices, including on foreign funding", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Develop transparent procedures for prior consultations with indigenous peoples on the use of indigenous lands", - "values": [ - "4 - General action" - ] - }, - { - "text": "Take judicial and administrative measures to ensure equality and empowerment of women, including fair representation in the legislative and executive branches of the State and participation in political decision-making", - "values": [ - "4 - General action" - ] - }, - { - "text": "Consider ratifying the ILO Domestic Workers Convention, 2011 (No. 189)", - "values": [ - "3 - Considering action" - ] - }, - { - "text": "Raise awareness about the Law on Reproductive Health and strengthen education efforts in this area, ensure that perpetrators of female genital mutilation are prosecuted, address the health consequences of female genital mutilation and provide medical support to victims ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Establish a recurrent system of review of its prisons by United Nations and other relevant international observers, in support of their stated commitment to continue to improve the prison system in Cuba", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Respect and protect the ability of human rights defenders and lawyers to carry out their work without hindrance, intimidation or harassment, in line with the United Nations Declaration on Human Rights Defenders and the United Nations Basic Principles on the Role of Lawyers ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Adopt a moratorium on executions to allow a comprehensive public debate on the issue and to consider establishing an official death penalty review body to make public recommendations for its reform", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Submit all overdue reports to treaty bodies as soon as possible", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Take measures to reduce the number of teenage pregnancies, to provide a sufficient level of youth health services, especially in rural areas, taking into account the recommendations of the Committee on the Rights of the Child, among other bodies ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Ensure that existing statutes prohibiting gender discrimination are properly implemented and enforced, and increase through effective implementation and enforcement efforts to address violence against women and children ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Establish policies and procedures that protect the human rights and security of all Nigerians including LGBT persons, their families and associates", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Continue with its excellent national plan to combat all forms of discrimination and make the results available in English so that countries like Sri Lanka can absorb them as best practices", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Implement a more inclusive governance system that promotes further representation of women into the national institutions", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Continue its efforts to ensure the independence of the judiciary", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Take steps to improve access to buildings for people with a disability", - "values": [ - "4 - General action" - ] - }, - { - "text": "Consider the possibility of establishing a national human rights institution in conformity with the Paris Principles ", - "values": [ - "3 - Considering action" - ] - }, - { - "text": "Continue consultations with civil society in the follow-up to this review ", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Adopt effective measures, including allocating sufficient resources to implement the existing legislation for the protection of women and children. ", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Continue with the efforts undertaken by the National Disabilities Unit, with a view to promoting the ratification of CRPD ", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Seek technical assistance from the Office of the High Commissioner for Human Rights to support the national efforts aimed at implementing the human rights obligations of Antigua and Barbuda", - "values": [ - "1 - Minimal action" - ] - }, - { - "text": "Revoke recently introduced laws that obstruct fundamental freedoms", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Take stronger measures to ensure equal rights and opportunities, regardless of ethnicity and sex ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Call for the support of the international community to assist it in addressing the challenge of armed conflict with its rebel armed groups, which has brought about human right abuses, including sexual violence, recruitment of child soldiers, problems of refugees and internally displaced persons, poverty illiteracy and ignorance among others.", - "values": [ - "1 - Minimal action" - ] - }, - { - "text": "Redouble its efforts to improve the condition of school facilities in rural areas", - "values": [ - "4 - General action" - ] - }, - { - "text": "Take concrete steps to ensure the independence of the judiciary", - "values": [ - "4 - General action" - ] - }, - { - "text": "Accelerate the progress of the Third National Action Plan for Human Rights, with the full participation of all stakeholders", - "values": [ - "3 - Considering action" - ] - }, - { - "text": "Ensure conditions at detention centres comply with international and Brazilian law and that particular attention is given to conditions faced by vulnerable prisoners including pregnant women, children, and lesbian, gay, bisexual, transgender and intersex persons, and provide human rights training to officials in the legal and judicial system", - "values": [ - "4 - General action" - ] - }, - { - "text": "Take effective measures to prevent all acts of torture and ill treatment ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Increase focus on supervisory and control mechanisms in the labour market. Develop a wider scope of protection against discrimination and more tools to address the rights of persons who are subject to human trafficking", - "values": [ - "4 - General action" - ] - }, - { - "text": "Bring all legislation concerning communication surveillance in line with international human rights standards and, especially, ensure that all communications surveillance are tested for necessity and proportionality", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Carry out an awareness-raising campaign to persuade citizens to abandon the female genital mutilation practice ", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Take steps to criminalize hate crimes, including discrimination based on sexual orientation or gender identity, both in law and speech", - "values": [ - "4 - General action" - ] - }, - { - "text": "Take steps to guarantee a fair and timely trial to all defendants, reduce the use of preventive detention, and adopt measures to restructure the prison system, starting with the realization of those contained in paragraphs 58 and 59 of the National Report ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Continue its endeavours to ratify the ICCPR in the very near future", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Redouble its efforts to develop and maintain a qualified cadre of highly motivated primary and secondary school teachers capable of providing quality education to students", - "values": [ - "4 - General action" - ] - }, - { - "text": "Take additional measures to fight early pregnancies", - "values": [ - "4 - General action" - ] - }, - { - "text": "Grant to the Joint United Nations Human Rights Office and other independent mechanisms free access to places of detention of the National Intelligence Agency and the National Guard and any other detention centre that is still inaccessible to external observers\n\n", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Continue adapting health, education and transport services to the needs of persons with disabilities ", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Ease burdensome registration requirements for human rights NGOs ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Continue fighting violence against women ", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Implement tangible measures against discrimination of women, including the adoption of legislation to promote gender balance and steps to strengthen the position of the Ombudsman office on gender equality", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Implement measures to ensure more effective legal procedures and speedier resolution of legal cases", - "values": [ - "4 - General action" - ] - }, - { - "text": "Take all necessary measures to fight efficiently against impunity, notably by providing the necessary means to the organ charged with systematically investigating all allegations of torture and ill-treatment and by clarifying its status ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Consider making the declaration provided for in Article 14 of the Convention on the Elimination of All Forms of Racial Discrimination ", - "values": [ - "3 - Considering action" - ] - }, - { - "text": "Continue its close cooperation with OHCHR", - "values": [ - "1 - Minimal action" - ] - }, - { - "text": "Continue the important process of reconciling the improvement of women\u2019s rights and duties within the provision of sharia law", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Put an end to forced evictions and demolition of Roma settlements without previous notice and, if such cases take place, offer alternative housing solutions ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Request technical assistance from OHCHR to improve the promotion of human rights", - "values": [ - "1 - Minimal action" - ] - }, - { - "text": "Consider ratification of the International Convention for the Protection of All Persons from Enforced Disappearance and accept the competence of the relevant Committee.", - "values": [ - "3 - Considering action" - ] - }, - { - "text": "Intensify its efforts to fight against poverty, including through international cooperation and the implementation of lessons learned from successful experiences", - "values": [ - "4 - General action" - ] - }, - { - "text": "Release all persons including pro-reunification patriots who were unjustly arrested and imprisoned according to the "National Security Law"", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Adopt further appropriate measures in order to improve the quality of education for the pupils belonging to national minorities, especially for those learning in lesser used languages ", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Stipulate a clear definition of the crime of torture in its national legal framework in compliance with the Convention against Torture and Cruel, Inhuman or Degrading Treatment or Punishment and ensures investigation of all allegations of torture and ill-treatment, bring perpetrators to justice in compliance with international fair trial standards, providing rehabilitation to victims", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Modernize and simplify the civil registry system ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Strengthen standing efforts aiming at the realization of the right to development especially through sharing experiences and best practices with other developing countries ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Take measures to guarantee the full and effective recognition of sexual and reproductive rights, especially through the decriminalization of abortion ", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Operationalize gender strategy in education, including early education, in order to combat female illiteracy and child, early and forced marriages", - "values": [ - "4 - General action" - ] - }, - { - "text": "Strengthen efforts to fulfil obligations under the Convention on the Elimination of All Forms of Discrimination against Women CEDAW and the Convention on the Rights of the Child CRC ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Guarantee the implementation and effective application of legislation to eliminate discrimination against women, in order to mitigate the structural disadvantages which stand in the way of gender equality", - "values": [ - "4 - General action" - ] - }, - { - "text": "Enhance freedom of expression and assembly, and to safeguard all groups, journalists and especially human rights defenders", - "values": [ - "4 - General action" - ] - }, - { - "text": "Begin procedures as soon as possible to have its national human rights institution accredited it by the International Coordinating Committee of National Institutions.", - "values": [ - "4 - General action" - ] - }, - { - "text": "Further strengthen its policies and programmes aimed at combating discrimination and intolerance and ensure that incidents are subject to prompt and independent investigation and effective prosecution", - "values": [ - "4 - General action" - ] - }, - { - "text": "Ensure the full enjoyment of freedom of expression for all and protect the freedom of the media ", - "values": [ - "4 - General action" - ] - }, - { - "text": "On lesbian, gay, bisexual and transgender (LGBT): stop arresting individuals based on their sexual orientation, gender identity or appearance and repeal legislative measures that criminalize consensual homosexual conduct ", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Take all necessary steps in the areas of legislation and political measures to protect migrant workers from abusers, traffickers and unscrupulous employers and to guarantee the non-discrimination of non- citizens with regard to conditions and requirements to access the labour market", - "values": [ - "4 - General action" - ] - }, - { - "text": "Continue enhancing women\u2019s economic empowerment, particularly in the arrangements of income-generating activities", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Consider the possibility to allocate financial resources to implement the Law against Femicide and other Forms of Violence against Women and establish mechanisms to coordinate and monitor its enforcement", - "values": [ - "3 - Considering action" - ] - }, - { - "text": "Abolish death penalty by adopting a law commuting all death sentences that have been pronounced.", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Take the appropriate legislative measures for the proper defence and protection of human rights defenders and investigate all threats and attacks suffered by this group to bring to justice those responsible for such acts", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Condemn discrimination, particularly that based on sexual orientation and identity", - "values": [ - "4 - General action" - ] - }, - { - "text": "Intensify strategies aimed at combating trafficking in women, especially those aimed at the sex trade ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Ratify the Optional Protocol to the Convention against Torture as rapidly as possible and establish a national preventive mechanism in accordance with it", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Respond favourably to the request of the Special Rapporteur on torture to visit the country", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Amend the Criminal Code and the Organic Code of Military Justice, eliminating the crimes of contempt and vilification ", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Abide by its international obligations, including those under the Fourth Geneva Convention.", - "values": [ - "4 - General action" - ] - }, - { - "text": "Ensure that violence, threats and intimidations against human rights defenders are properly investigated and prosecuted", - "values": [ - "4 - General action" - ] - }, - { - "text": "Continue efforts, including by raising awareness, in order to prevent domestic violence and violence against women", - "values": [ - "4 - General action" - ] - }, - { - "text": "Consider introducing a de jure moratorium on the death penalty with the view to abolish the death penalty", - "values": [ - "3 - Considering action" - ] - }, - { - "text": "Consider elaborating norms relating to persons with disabilities ", - "values": [ - "3 - Considering action" - ] - }, - { - "text": "Promote human rights teaching in schools ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Further effectively investigate, prosecute and punish all hate crimes and establish an authority where complaints in this regard can be addressed", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Continue its efforts in the area of combating female genital mutilation, inter alia, through the implementation of programmes sensitizing the population about its harmful effects ", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Strengthen the implementation of the third National Human Rights Plan of Action by all relevant government agencies", - "values": [ - "4 - General action" - ] - }, - { - "text": "Develop a national strategy to tackle exploitative labour practices and to ratify the ILO Protocol of 2014 to the Forced Labour Convention, 1930, and continue to strengthen protections for children", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Conduct a standing information campaign to disseminate international obligations under international human rights law and international humanitarian law, and to intensify the training of law enforcement officials to ensure that they are aware of their obligation to apply in practice the principles of those international instruments as acknowledged in the national report, with the assistance of OHCHR", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Redouble efforts in its refusal of religious intolerance and xenophobia", - "values": [ - "4 - General action" - ] - }, - { - "text": "Continue to implement its National Strategy for Poverty Eradication and ensure access to quality education for all", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Build on current efforts to improve the overall human rights environment in the country through restoring stable governance and the rule of law", - "values": [ - "4 - General action" - ] - }, - { - "text": "Adapt its legislation to ensure that all arrested and detained persons can swiftly appear before a judge and in conformity with international law", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Take the necessary measures to maintain existing and/or set up new anti-violence shelters to assist and protect women victims of violence", - "values": [ - "4 - General action" - ] - }, - { - "text": "Intensify efforts towards strengthening inter-confessional harmony and a culture of human rights in the country", - "values": [ - "4 - General action" - ] - }, - { - "text": "Step up efforts to enhance the participation of women in all spheres of socio-economic life, in line with the progress made in education ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Implement the recommendations from the Special Rapporteur on the rights of indigenous peoples", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Intensify its efforts to implement the pending recommendations", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Continue with the efforts to ensure respect for the rights and fundamental freedoms of the entire population and compliance with international humanitarian law, particularly the principles of distinction, proportionality and precaution during attacks", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Stay on the path of consolidation of political stability in the country, under the principles of free self-determination and sovereignty, for which it is very important to rely on international cooperation and assistance ", - "values": [ - "4 - General action" - ] - }, - { - "text": "To reform, in accordance with the Constitution, the institutions of the Judicial Organ,", - "values": [ - "4 - General action" - ] - }, - { - "text": "Refuse any attempts to enforce principles outside internationally binding mechanisms, as per the internationally recognized human rights principles", - "values": [ - "4 - General action" - ] - }, - { - "text": "Continue its decisive efforts to make progress in fighting poverty and in overcoming social inequity", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Establish a policy for gender promotion to ensure the improved representation of women in decision-making bodies ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Ensure the effective investigation of cases of violence against women, prosecute and punish perpetrators", - "values": [ - "4 - General action" - ] - }, - { - "text": "That federal and state authorities impose a moratorium on executions with a view to abolishing the death penalty nationwide", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Continue to maintain the promotion and protection of human rights as a major priority in national policies and strategies", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Immediately criminalize rape within marriage and give men and women equal rights of inheritance ", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Prior to the next cycle of the UPR for Fiji, take further steps in the consideration of extending an invitation to special rapporteurs", - "values": [ - "3 - Considering action" - ] - }, - { - "text": "Ensure the proper and thorough investigation of torture cases in prison facilities and at police stations ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Undertake further campaigns against homophobia", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Further effectively implement the National Action Plan on Gender Equality and the Action Plan for Combating Domestic Violence by ensuring required financing and reinforcing the capacities of professionals", - "values": [ - "4 - General action" - ] - }, - { - "text": "Redouble efforts to improve access by young people and vulnerable groups to decent work", - "values": [ - "4 - General action" - ] - }, - { - "text": "Continue efforts to curb discriminatory and harmful practices towards women as well as existing high rate of maternal mortality", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Luxembourg pledged to achieve the human rights voluntary goals enshrined in Council resolution 9/12", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Ratify the Optional Protocol to the Convention against Torture and establish without delay an effective national preventive mechanism with adequate personnel and financial resources", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Fully guarantee the independence of the judiciary in conformity with relevant international norms", - "values": [ - "4 - General action" - ] - }, - { - "text": "Continue strengthening measures to facilitate access by all to justice", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Ensure that all those involved in the reception process for migrants have the training, time and ability to identify persons who want to apply for asylum. Anyone claiming to be an unaccompanied minor should benefit, without exception, from the specific protections guaranteed under Italian law, pending a properly conducted age determination", - "values": [ - "4 - General action" - ] - }, - { - "text": "Consider ratifying the Convention against Torture and its Optional Protocol", - "values": [ - "3 - Considering action" - ] - }, - { - "text": "Issue standing invitation for the UN human rights special procedures and accept all requested visits by mandate holders", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Abolish the practice of arraigo, as recommended by the Committee against Torture", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Enact laws to provide for and regulate freedom of assembly and peaceful demonstration in line with ICCPR ", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Take measures in order to reduce gender stereotypes regarding the roles and the responsibilities of women in the family and in the society ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Include Human Rights education and training among its educational programmes, in accordance with the guidelines of the United Nations World Programme for Human Rights Education and Training, both in the first and second stages ", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Give more visibility to the Afghanistan Independent Human Rights Commission and increase its human and technical resources to carry out its work effectively.", - "values": [ - "4 - General action" - ] - }, - { - "text": "Continue to take measures ensuring poverty eradication and access to health and education services ", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Move towards harmonization between national laws and the Convention on the Rights of the Child", - "values": [ - "4 - General action" - ] - }, - { - "text": "Continue to allocate financial assistance for developing countries in the framework of Official Development Assistance (ODA) and meet the commitment made in this regard at the international level ", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Develop a national strategy to guarantee better access to education to all children and to include in the school system, at all levels, appropriate measures in the field of human rights education, in accordance with the Plan of Action 2005-2009 of the World Programme for Human Rights Education", - "values": [ - "4 - General action" - ] - }, - { - "text": "Ban FGM by amending the penal code and implement a total elimination of such practice ", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Strengthen its legal framework by acceding to the International Convention for the Protection of All Persons from Enforced Disappearance and the Convention on the Rights of Persons with Disabilities, and by ensuring that the national legislation is in accordance with the provisions of the Rome Statute of the International Criminal Court", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Review its legislation to ensure all forms of hatred against minorities are prohibited by law", - "values": [ - "3 - Considering action" - ] - }, - { - "text": "Cooperate with international and regional organizations and diplomatic missions to tackle problems experienced by asylum seekers, refugees and foreigners who lose their documents in the country", - "values": [ - "4 - General action" - ] - }, - { - "text": "Increase the budget for prisons to add new bed space and staff, provide training for prison personnel and explore other types of detention for nonviolent offenders to reduce the burden on prison facilities and staff", - "values": [ - "4 - General action" - ] - }, - { - "text": "Strengthen efforts to ensure gender equality in the workplace and implement measures to enhance representation of women at senior-level and managerial positions in government and other sectors", - "values": [ - "4 - General action" - ] - }, - { - "text": "Continue efforts by the Government to ensure the enjoyment of economic, social and cultural rights, especially medical care and education, despite the difficulties and challenges identified in its national report ", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Effectively implement the national plan against discrimination with the active participation of all interested groups", - "values": [ - "4 - General action" - ] - }, - { - "text": "Derogate the law on blasphemy guaranteeing in practice the right to freedom of religion", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Continue ratifying core human rights treaties, namely the International Covenant on Civil and Political Rights and the International Covenant on Economic, Social and Cultural Rights", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Continue to share at the international level its national practices of its Second National Action Plan Human Trafficking ", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Consider signing and-or ratifying ICERD, ICCPR and the Optional Protocols thereto, CAT and the Optional Protocol thereto, the Rome Statute and the Convention for the Prevention and Punishment of the Crime of Genocide ", - "values": [ - "3 - Considering action" - ] - }, - { - "text": "Introduce and implement a comprehensive legal framework to protect women and girls against all forms of gender-based violence and, in particular, introduce legislation that prohibits domestic violence ", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Strengthen efforts to prevent torture, especially with respect to people under custody by the criminal investigations department, police and military agencies", - "values": [ - "4 - General action" - ] - }, - { - "text": "Take prompt and effective measures to safeguard the equal enjoyment of human rights by all, and to combat discrimination in all its forms", - "values": [ - "4 - General action" - ] - }, - { - "text": "Broaden the mandate of its equality bodies and increase their human and financial resources", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Preserve its positive record on combating trafficking and modern slavery by fully implementing activities envisaged in its second National Plan to Fight Human Trafficking", - "values": [ - "4 - General action" - ] - }, - { - "text": "Decriminalize abortion, at least in certain cases, such as danger to the mother's life and health, the non-viability of the foetus or a pregnancy arising from rape ", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "In conclusion, the Islamic Republic of Iran wishes to reiterate its firm commitment to continue constructive cooperation with the United Nations human rights machineries, in particular with the Human Rights Council and the UPR mechanism. ", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Consider the adoption of a comprehensive national policy on the protection of the rights of the child, in line with CRC", - "values": [ - "3 - Considering action" - ] - }, - { - "text": "Continue implementing the human rights action plan", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Take deterrent measures to combat discrimination against women, girls and religious minorities and work towards eliminating poverty among those groups", - "values": [ - "4 - General action" - ] - }, - { - "text": "The Republic of Yemen is committed to establishing an institutional mechanism to implement the recommendations of the universal periodic review and to deal with its findings in a responsible manner.", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Promote and protect the rights of indigenous peoples, peasants and other rural workers", - "values": [ - "4 - General action" - ] - }, - { - "text": "Develop a comprehensive deinstitutionalization plan for people with disabilities that aims to support their life in their communities, and ensure inclusive education for people with disabilities", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Continue its efforts to achieve social development and, in line with its national plan 2013-2018, as highlighted in the 4th Chapter in the Report", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Ensure that judges, lawyers and other justice professionals are fully protected from threats, intimidation and other external pressures that seek to challenge and threaten their independence and impartiality", - "values": [ - "4 - General action" - ] - }, - { - "text": "Continue the efforts made to expand education, in particular children's education, and accord greater importance to the spreading of the culture of human rights through the media and educational institutions ", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Consider signing and ratifying the International Covenant on Economic, Social and Cultural Rights ", - "values": [ - "3 - Considering action" - ] - }, - { - "text": "Establish promptly a national human rights institution in accordance with the Paris Principles, which presumes that it is independent and open to civil society ", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Continue its ongoing efforts and commitment to uphold the lives of its people through the provision of best education, housing and medical care", - "values": [ - "4 - General action" - ] - }, - { - "text": "Abolish the discriminatory provision requiring a foreigner to present a guarantor in order to be able to initiate a civil action before a court", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Cease executions and establish a moratorium with a view to abolishing the death penalty", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Ensure that changes in the asylum laws and regulations are compliant with international human rights standards", - "values": [ - "4 - General action" - ] - }, - { - "text": "Raise the age of criminal responsibility in compliance with international standards ", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Pursue further efforts in order to further bolster economic, social and cultural rights and support the implementation of programmes and national related plans", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Take all necessary measures to find a solution to a number of problems the non-Muslim communities are facing, such as difficulties in training the clergy and difficulties in enjoying their property rights ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Implement a moratorium on the death penalty, and take steps to accede to the Second Optional Protocol of the ICCPR", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Continue efforts to promote and protect human rights ", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Attach importance to employment for women in the process of gender equality promotion", - "values": [ - "4 - General action" - ] - }, - { - "text": "Establish the national human rights institution in accordance with the Paris Principles", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Adopt measures aimed at strengthening the Independent National Authority for Human Rights in order for it to be fully compliant with the Paris Principles, in particular, providing it with adequate resources and more qualified staff so as to strengthen the National Preventive Mechanism against Torture and undertake information campaigns, especially among vulnerable groups ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Continue efforts to ratify the Optional Protocol to the Convention on the Rights of the Child on a communications procedure", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Raise the education level of the disabled and make sure that school-age disabled children generally receive compulsory education", - "values": [ - "4 - General action" - ] - }, - { - "text": "Work on increasing the attendance rate of children at all levels of education, also with the aim of hampering and weakening the capability of criminal organizations to attract youngsters in the vicious circle of illegal activities and violence", - "values": [ - "4 - General action" - ] - }, - { - "text": "Ensure that foreign nationals in detention have access to consular assistance by establishing measures that could facilitate timely issuance of permits for prison visits by consular authorities", - "values": [ - "4 - General action" - ] - }, - { - "text": "Continue its efforts to eliminate discrimination against women and promote gender equality ", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Adopt further measures aiming at addressing the situation of discrimination between men and women and to eradicate negative stereotypes ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Ratify ICESCR and its Optional Protocol and ICERD ", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Abolish legally the death penalty and ratify the Second Optional Protocol to the International Covenant on Civil and Political Rights", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Adopt a professional code of conduct for judges and prosecutors", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Strengthen the judiciary by implementing a transparent, merit-based and clearly defined selection process for Supreme Court justices", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Continue its efforts to overcome discrimination and social exclusion on the basis of gender, caste, class, ethnic group, disability or geographic situation, in order to ensure the respect of civil, political, economic, social and cultural rights ", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Provide necessary financial resources for the application of the law concerning femicide, as well as of the National Plan for the Prevention of Domestic Violence and Violence against Women", - "values": [ - "4 - General action" - ] - }, - { - "text": "Take concrete actions to implement recommendations made by the Committee against Torture in 2009, by the Committee on the Rights of the Child in 2007 and by the Human Rights Committee in 2006 concerning the violent killing of juveniles, emphasizing in particular effective investigations, so as to arrest and punish all material and intellectual perpetrators of such killings, as well as raise awareness about the mistreatment of children", - "values": [ - "4 - General action" - ] - }, - { - "text": "Continue providing training in international humanitarian law to judges, prosecutors, the police and the defence forces ", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Decriminalize abortion in all circumstances and ensure that women and girls can access safe and legal abortion, and guarantee access to medical services for survivors of sexual violence", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Effectively implement the respective procedures and to further promote rights of foreign nationals, migrants and asylum seekers.", - "values": [ - "4 - General action" - ] - }, - { - "text": "Review the definition of torture in its national law so that it complies fully with that in article 1 of the Convention against the Torture and other Cruel, Inhuman or Degrading Treatment or Punishment ", - "values": [ - "3 - Considering action" - ] - }, - { - "text": "Ensure the identification, protection and access of victims to justice and guarantee effective investigations into cases of trafficking", - "values": [ - "4 - General action" - ] - }, - { - "text": "Continue pursuing the implementation of the national food security strategy and the strategy concerning the rural sector in order to achieve food security and combat poverty", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Ratify the 1954 Convention relating to the Status of Stateless Persons", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Accelerate the implementation of its strategies and national policies aimed at finding effective solutions for the main health problems in the country ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Identify efforts to combat all forms of discrimination and to ensure that hate crimes motivated by racism, xenophobia or other forms of discrimination are effectively investigated and perpetrators are brought to justice", - "values": [ - "4 - General action" - ] - }, - { - "text": "Continue with the strategy of combating terrorism in order to protect human rights", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Continue its policy of national reconciliation and implement the decisions of the inclusive political dialogue.", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Consider introducing anti-discriminatory legislation and establish a specialized body to combat racism and discrimination which could form part of a body with wider objectives in the field of human rights generally", - "values": [ - "3 - Considering action" - ] - }, - { - "text": "Take the necessary measures to effectively eliminate the worst forms of child labour", - "values": [ - "4 - General action" - ] - }, - { - "text": "Consider, as appropriate, the accession to core human rights instruments ", - "values": [ - "3 - Considering action" - ] - }, - { - "text": "Continue to work towards creating an environment of mutual trust so that the achievements and the investments made by the Government and people of the Bolivarian Republic of Venezuela will not be lost", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Take specific legal provisions to protect the rights of older persons and people living with albinism", - "values": [ - "4 - General action" - ] - }, - { - "text": "Continue its effort to ensure the access of all citizens to safe drinking water and sanitation ", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Ratify ICCPR, ICESCR and its Second Optional Protocol, and CAT ", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Avoid the retroactive application of the norms that could result from the execution of the Constitutional Court's judgment 168/13 and generate situations of statelessness for citizens holding the Dominican citizenship ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Promote gender equality and to safeguard the rights of women ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Ensure that Inuit children can retain their identity and use their own language", - "values": [ - "4 - General action" - ] - }, - { - "text": "Adopt legislative measures to permit the realization of peaceful demonstrations and promote freedom of expression", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Enhance the protection of freedom of expression and thought, including, dissenting political opinions, and ensure free access to information for all, inter alia through the Internet ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Take the necessary steps to make the anti-discrimination services available in all municipalities and widely inform the public of their availability", - "values": [ - "4 - General action" - ] - }, - { - "text": "Enact legislation and take effective measures to protect and promote women's rights, especially with regard to forced marriages, honour killings and access to education for all girls.", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Ensure the protection of migrants, refugees and their families in accordance with international standards ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Consider withdrawing its reservations to articles 17, 29 and 30 of the Convention on the Rights of the Child", - "values": [ - "3 - Considering action" - ] - }, - { - "text": "Continue to take active measures to combat discrimination, to ensure equality and to strengthen the independence of the Ombudsman in order to bring it into compliance with the Paris Principles", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "In line with the conclusions of the report produced by the Truth, Justice and Reconciliation Commission in 2013, take all necessary steps to put in place a programme to give reparations to all victims of the 2007-2008 post-electoral violence", - "values": [ - "4 - General action" - ] - }, - { - "text": "Take the necessary measures to establish a national procedure for the determination of refugee status", - "values": [ - "4 - General action" - ] - }, - { - "text": "Continue to further improve conditions for juveniles in pretrial detention facilities", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Further ensure that the Child's Advocate has sufficient resources to exercise his or her mandate effectively", - "values": [ - "4 - General action" - ] - }, - { - "text": "Provide the most efficient means possible of protection for victims of discrimination, including by improving and broadening the mandate of the Ombudsman so that it also covers combating discrimination", - "values": [ - "4 - General action" - ] - }, - { - "text": "Adopt specific legislation to guarantee the exercise of the rights to freedom of opinion and expression", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Implement speedily the Committee on the Rights of Persons with Disabilities recommendations", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Strengthen cooperation with national and international human rights institutions in order to implement the national human rights action plan", - "values": [ - "4 - General action" - ] - }, - { - "text": "Maintain efforts towards ensuring the full domestic implementation of the provisions of CEDAW and align all domestic laws with human rights instruments, which Iraq is a State party to", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Continue its efforts with a view of preventing and eliminating of trafficking in human beings ", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Seek the support of the international community for the establishment of a national human rights institution and finalize the revision of its constitution ", - "values": [ - "1 - Minimal action" - ] - }, - { - "text": "Issue a standing invitation to all the Special Procedures and accept their requests when they seek to visit Malaysia", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Reduce violence against women and increase the number of shelters for battered women", - "values": [ - "4 - General action" - ] - }, - { - "text": "Implement measures to ensure that the rights to acquire, transfer and retain citizenship are extended equally to all women and their children", - "values": [ - "4 - General action" - ] - }, - { - "text": "Speed up the process of incorporation of fundamental social rights to the Constitution ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Ensure that the Criminal Code is fully in accordance with the International Covenant on Civil and Political Rights", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Abolish de jure the death penalty and proceed to ratify the Second Optional Protocol to the International Covenant on Civil and Political Rights", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Continue to improve its health system and training for health personnel ", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Step up efforts to prevent or limit hatred, racist and xenophobic acts and speeches, including on the Internet", - "values": [ - "4 - General action" - ] - }, - { - "text": "Consider ratifying ICERD ", - "values": [ - "3 - Considering action" - ] - }, - { - "text": "Actively encourage dialogue between various religious groups to enhance interfaith solidarity, and to prevent potential violence and the spread of religious hatred", - "values": [ - "4 - General action" - ] - }, - { - "text": "Adopt legislative measures to outlaw domestic violence if it has not done so already", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Continue to take measures to ensure an effective compliance with the legislations regarding the most vulnerable groups of the population ", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Consider amending its domestic laws to grant women equal rights with men with regard to transmission of their nationality to their children", - "values": [ - "3 - Considering action" - ] - }, - { - "text": "Streamline its experience of establishing Inter-ministerial public administration and delegation dealing with human rights in order to make other countries benefit from this experience ", - "values": [ - "1 - Minimal action" - ] - }, - { - "text": "Intensify efforts to promote and protect the rights of the child ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Redouble its efforts with a focus on trafficking for the purpose of labour exploitation and special focus on trafficking in children ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Abolish the death penalty and ratify the Second Optional Protocol to ICCPR ", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Share, through international cooperation, its successful experiences in programs and projects of social benefit ", - "values": [ - "1 - Minimal action" - ] - }, - { - "text": "Review its domestic legislation and practice to bring them both in compliance with its international obligations in the area of the rights of the child, in particular regarding (i) protection against kidnapping and trafficking, and (ii) the juvenile justice system including through providing adequate separate facilities of corresponding capacity for juveniles in detention or prison and adopting specific measures for the protection of their human rights", - "values": [ - "3 - Considering action" - ] - }, - { - "text": "Take measures to enforce the criminalization of female genital mutilation, ensuring that offenders are prosecuted and punished in accordance with the law, as well as re-enforcing public education and awareness-raising programmes aimed at eliminating this practice", - "values": [ - "4 - General action" - ] - }, - { - "text": "Extend a standing invitation to special procedure mandate-holders as a way of informing and supporting human rights reforms ", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Take the necessary measures to ratify the Convention against Torture and Other Cruel, Inhuman or Degrading Treatment or Punishment and the International Convention for the Protection of All Persons from Enforced Disappearance", - "values": [ - "4 - General action" - ] - }, - { - "text": "Increase the efforts to combat all forms of violence against children in all spheres", - "values": [ - "4 - General action" - ] - }, - { - "text": "Accelerate plans for the adoption and implementation of a national strategy for children", - "values": [ - "4 - General action" - ] - }, - { - "text": "Promote the inclusiveness of persons with disabilities", - "values": [ - "4 - General action" - ] - }, - { - "text": "Express a strong commitment to protecting and advocating the fundamental human rights of members of the lesbian, gay, bisexual and transgender communities as equal citizens, in keeping with the country's commitments to international conventions", - "values": [ - "4 - General action" - ] - }, - { - "text": "Sign and ratify OP-CAT and CED and declare to accept the competence of the Committee against Enforced Disappearances provided for in articles 31 and 32 of the Convention ", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Allow the unimpeded ability of humanitarian agencies to deliver humanitarian assistance, including food aid, to all parts of the country", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Continue its work for the realization of human rights of the Roma population in the country and to focus on implementation of adopted strategies at a local level as well as on countering discrimination by private actors ", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Continue its effort to strengthen its institutional capacity and legislative framework to combat violent crimes and maintain law and order to ensure the enjoyment of human rights by its people ", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Continue the policy of increasing the number of women in public and political life ", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Deepen measures to enquire on and punish acts of discrimination against people of African descent", - "values": [ - "4 - General action" - ] - }, - { - "text": "Follow up on the recommendation of ILO to continue efforts to ensure full equality of opportunity and treatment for women, persons of African Descent and indigenous persons ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Prohibit the use of corporal punishment in homes and in schools and conduct awareness campaigns to reduce the scope of this action ", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Strengthen public awareness-raising campaigns relating to racism and intolerance, and adopt measures aimed at fighting racism in the media", - "values": [ - "4 - General action" - ] - }, - { - "text": "Intensify its efforts to progressively implement the recommendations of the Committee on the Rights of the Child, in collaboration with the relevant United Nations agencies", - "values": [ - "4 - General action" - ] - }, - { - "text": "Improve existing and develop new rehabilitation and reintegration programmes for children in conflict with the law who are residing in semi-open and residential institutions", - "values": [ - "4 - General action" - ] - }, - { - "text": "Strengthen and expand the education infrastructure in order to offer quality inclusive education to all children on its territory", - "values": [ - "4 - General action" - ] - }, - { - "text": "Conduct investigations into the acts of intimidation or aggression towards journalists who criticize the Government, and guarantee that any restriction to the exercise of their profession is compatible with the provisions of ICCPR ", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Make food security a priority ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Secure what is prescribed in Article 149 of the Brazilian Penal Code, relating to the criminal prosecution of the crime of slavery ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Continue to improve its education system and access to quality education for its people ", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Continue to promote gender equality in all fields ", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Conduct more public prevention and awareness-raising campaigns on protection measures against HIV-AIDS, in particular for poor adolescent and people from the vulnerable group.", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "New Zealand is committed to continued action to address racism, racial discrimination, xenophobia and related intolerance.", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Take all measures necessary to find a lasting solution to the situation of the repatriated Hmong, notably by settling the question of the legal status of persons concerned and granting refugee status to those to whom the United Nations High Commissioner for Refugees UNHCR has accorded the status of person of concern, in full cooperation with UNHCR, and allowing the delivery of international assistance for resettlement, as proposed by certain States ", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Establish a coordination mechanism to combat child labour, including in all its worst forms", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Ratify OP-CAT and CED", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Continue its efforts in a systematic manner to increase the availability of human rights education and training programmes for the law enforcement and judicial authorities ", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Operationalize the National Human Rights Commission and ensure that its operating is in line with the Paris Principles", - "values": [ - "4 - General action" - ] - }, - { - "text": "Look to ensure the avoidance of national service conscripts being used as forced labour for private enterprises and to end the recruitment of children under the age of 18 into military service and training ", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Further strengthen its national policies to combat sexual exploitation and trafficking in human beings ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Continue implementing programmes to guarantee the enjoyment of economic, social and cultural rights, in particular the right to education and the right to health", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Continue its efforts on the promotion and protection of human rights and main freedoms ", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Guarantee freedom of expression and peaceful association and safeguard the activities of human rights defenders, in particular by promoting effective national policies to protect their initiatives", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Ratify the Convention on the Non-Applicability of Statutory Limitations to War Crimes and Crimes against Humanity ", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Take urgent steps toward the full and prompt implementation of the recommendations of the Committee against Torture.", - "values": [ - "4 - General action" - ] - }, - { - "text": "Restore officially the moratorium on executions, which had been in place since 2006, throughout the whole country", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Consider the possibility of developing a complex of measures aimed at combating hate speech", - "values": [ - "3 - Considering action" - ] - }, - { - "text": "Eradicate, in national legislation and in practice, torture or other cruel, inhuman and degrading treatment", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Accelerate the process of considering the Education Bill currently under consideration at the Ministry of Education", - "values": [ - "4 - General action" - ] - }, - { - "text": "Continue strengthening the child protection and persons with disabilities services in order to provide legal protection against all forms of discrimination", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Review the Criminal Code to ensure its conformity with article 15 of the Convention against Torture.", - "values": [ - "3 - Considering action" - ] - }, - { - "text": "Ensure the compliance of the Office of the Ombudsman with the Paris Principles on national human rights institutions for the promotion and protection of human rights", - "values": [ - "4 - General action" - ] - }, - { - "text": "Ratify the ICRMW ", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Ratify and accede to the Convention on the Rights of Persons with Disabilities ", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Guarantee freedoms of assembly and association and repeal article 193-1 of the Criminal Code, which criminalizes civil activity of non- registered organizations, and the Law on Mass Events", - "values": [ - "4 - General action" - ] - }, - { - "text": "Control and stop domestic violence levels, especially towards women and children, through the creation of national protection institutions and revise the reservations to the Convention on the Elimination of All Forms of Discrimination against Women, especially those regarding age of marriage and abolish the practice of domestic violence ", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Step up efforts to effectively deal with discrimination, violence and hate speech against migrants", - "values": [ - "4 - General action" - ] - }, - { - "text": "Review the Law on Religion so as to ensure that the right to freedom of religion is upheld in compliance with international legal standards ", - "values": [ - "3 - Considering action" - ] - }, - { - "text": "Design and implement measures to allow the exercise of cultural and religious life of ethnic and religious minorities, such as the Rastafari and Garifuna, without obstacles or stigmatization", - "values": [ - "4 - General action" - ] - }, - { - "text": "Continue its process of consultation with civil society in its follow-up to this review.", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Take necessary steps to ensure and safeguard the human rights of the civilian population living in areas where armed forces and national police personnel perform operations against illegal trafficking activities", - "values": [ - "4 - General action" - ] - }, - { - "text": "Adopt legislation to prohibit and combat domestic violence", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Allow the visits of human rights special procedures that are pending to take place in a timely manner and consider issuing a standing invitation to the human rights special procedures", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Continue to take effective measures to safeguard the rights and status of the unemployed and vulnerable groups, through focused social assistance and income support", - "values": [ - "4 - General action" - ] - }, - { - "text": "Continue efforts in the promotion and protection of child rights, and look into forming a national institution for the protection of child rights", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Adjust detention and prison facilities as well as standards of treatment so that they are gender-sensitive and ensure effective protection of the personal safety of all detainees and prisoners ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Continue its efforts to promote and protect human rights and to strengthen good governance and respect for the rule of law ", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Improve its cooperation with the United Nations treaty bodies by making it a priority to submit its future reports on time ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Define torture in its Criminal Procedure Code in accordance with the CAT standards", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Continue implementation of the Government\u2019s \u201cBasic Plan on Measures against Child Sexual Exploitation\u201c, and supporting and rehabilitation of victims", - "values": [ - "4 - General action" - ] - }, - { - "text": "Release detainees whose arrests are linked to their support for the opposition ", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Withdraw reservations to the Convention on the Elimination of all forms of Discrimination against Women and ratify its Optional Protocol ", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Withdraw support from the proposed amendment that would curtail the power of the Ombudsman Commission, especially its ability to investigate independently human rights violations ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Keep striving to eradicate unchecked criminality, corruption and gang activity, which produce devastating human rights violations, especially those acts of violence and murder, by focusing on education, proper employment and transparency in law enforcement", - "values": [ - "4 - General action" - ] - }, - { - "text": "Swiftly implement the Law of Compensation of the Immovable Property of the Jewish Religious Communities of Lithuania ", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Safeguard the independence of its judiciary", - "values": [ - "4 - General action" - ] - }, - { - "text": "Strengthen the policies of supplementary payments of income and housing assistance, in order to avoid more families being unable to pay their mortgages", - "values": [ - "4 - General action" - ] - }, - { - "text": "Sign, ratify and implement in national law ICESCR, ICCPR and their Optional Protocols ", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Take necessary measures to combat xenophobia, racism and discrimination in public speech", - "values": [ - "4 - General action" - ] - }, - { - "text": "Pay increased attention to matters of gender parity", - "values": [ - "4 - General action" - ] - }, - { - "text": "Continue to protect the population against climate change by pursuing the efforts undertaken under the framework of the United Nations Framework Convention on Climate Change", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Continue to improve conditions in the country's prisons and detention facilities, especially in provincial detention facilities", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Continue to support healthcare services by exploring the possibility of establishing a system of medical insurance that would ensure healthcare coverage to all social groups, especially the poorest", - "values": [ - "3 - Considering action" - ] - }, - { - "text": "Establish training programmes for judges focusing on Saudi Arabia's international human rights obligations", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Expedite the ratification of the Convention on Preventing and Combating Violence against Women and Domestic Violence (the Istanbul Convention)", - "values": [ - "4 - General action" - ] - }, - { - "text": "Continue to engage its regional and international partners with the view of seeking technical and other assistance towards its full compliance with its human rights treaty obligations", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Ratify Additional Protocol III to the Geneva Conventions of 12 August 1949", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Abolish the death penalty and ratify the Optional Protocol to the International Covenant on the Civil and Political Rights", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Take all necessary measures to ensure a safe working environment for journalists and media workers", - "values": [ - "4 - General action" - ] - }, - { - "text": "Take the appropriate legislative measures to ensure direct prosecution under criminal law of sexual exploitation and ill-treatment of children.", - "values": [ - "4 - General action" - ] - }, - { - "text": "Implement expeditiously the law prohibiting female genital mutilation and bring the perpetrators to justice", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Strengthen the independence and autonomy of the National Commission on Human Rights, granting it with resources so that it can act effectively", - "values": [ - "4 - General action" - ] - }, - { - "text": "Continue measures for the prevention of forced sterilization and provision of legal remedies to victims of such violations. ", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Continue the efforts to combat trafficking in persons with a special emphasis on women and children.", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Promote, through its migration service, the civil, political and social rights of migrant workers ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Increase the participation of women in decision-making institutions ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Provide adequate training in human rights for administrative officials and law enforcement personnel", - "values": [ - "4 - General action" - ] - }, - { - "text": "Fully implement the Rome Statute of the International Criminal Court ", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Continue to raise awareness on the needs of the Roma population, in particular children, and establish an adequate system that provides for their social and educational inclusion, including by allocating sufficient resources", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Respect the rules of fair procedure in accordance with its obligations under the international law and release immediately all persons detained without any valid reason ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Continue to implement strategies and socio-economic development plans in order to advance in the realization of the Millennium Development Goals by 2015 ", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Continue its national efforts, with the support and assistance of the international community, in the promotion and protection of human rights particularly in the realization of economic, social and cultural rights of its people", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Abolish torture and other cruel, inhuman and degrading treatment in all forms, in particular stoning, flogging and the amputation of limbs, and the execution of minors, as recommended by the Human Rights Committee and the relevant special mandate holders, respectively.", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Fully investigate abuses against persons with albinism and ensure that those responsible for crimes are prosecuted", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Initiate constitutional and legislative reforms aiming at the full abolition of the death penalty", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Re-evaluate the ratification of the Convention for the Protection of All Persons from Enforced Disappearance ", - "values": [ - "3 - Considering action" - ] - }, - { - "text": "Devise more specific measures to eliminate discrimination against women, ethnic minorities, migrants, Muslim and people of African origin ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Study the possibility of being party to the following international instruments: ICCPR, CEDAW and CAT", - "values": [ - "3 - Considering action" - ] - }, - { - "text": "Continue reinforcing the work of the National Commission for the Prevention of Torture and Other Cruel, Inhuman or Degrading Treatment", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Provide space for civil society organizations in line with international standards and best practices, and in this respect, release from prison those human rights defenders who called for the full abolition of slavery", - "values": [ - "4 - General action" - ] - }, - { - "text": "Continue to strengthen efforts to combat human trafficking and to raise awareness of its danger ", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Continue its fight against all forms of organized crime, in particular drug trafficking and terrorism ", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Continue efforts to reduce statelessness and to facilitate access to citizenship for long-term residents in Estonia", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Legislate to restrict the detention of terror suspects without charge and ensure legality of such detention, including through action by the judicial system ", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Extend a standing invitation to all special procedures of the United Nations to further such cooperation", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Adhere to the Optional Protocol to the Convention against Torture and Other Cruel, Inhuman or Degrading Treatment or Punishment, at the earliest", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Upgrade the efficiency and the skills of teachers ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Bring the case against former President Habré to trial as quickly as possible", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Enhance the process of ratification of the Optional Protocol to the Convention against Torture ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Create conditions enabling girls to attend school without discrimination", - "values": [ - "4 - General action" - ] - }, - { - "text": "Consolidate and support the promotion of education for economically vulnerable children", - "values": [ - "4 - General action" - ] - }, - { - "text": "Ensure, through a coordinated and comprehensive institutional effort, access to justice for women who have been victims of violence", - "values": [ - "4 - General action" - ] - }, - { - "text": "Step up its cooperation with United Nations special procedures.", - "values": [ - "4 - General action" - ] - }, - { - "text": "Raise the minimum age of criminal responsibility to bring it into conformity with international standards and provide children under 18 years with due protection from juvenile justice system ", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Sign and ratify the Convention on Economic, Social and Cultural Rights ", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Measures to aid students with mid-day meals, uniforms and learning materials will be continued and enhanced, child rights committees are being established in every school and further islandwide recruitment of Tamil medium teachers is ongoing. National competency standards for vocational education will be made available in all national languages", - "values": [ - "4 - General action" - ] - }, - { - "text": "Adopt the necessary measures to guarantee easy and effective access to free birth registration, including to Pygmy children", - "values": [ - "4 - General action" - ] - }, - { - "text": "Work closely with OHCHR in order to seek its assistance in meetings the obligations to the United Nations treaty bodies and implementing the recommendations received under the universal periodic review", - "values": [ - "1 - Minimal action" - ] - }, - { - "text": "Ensure that corporal punishment is explicitly prohibited in all schools and educational institutions and all other institutions and forms of alternative care", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Consider ratifying the Convention on the Protection of the Rights of All Migrant Workers and Members of Their Families", - "values": [ - "3 - Considering action" - ] - }, - { - "text": "Reform the Public Order Act and ensure that law enforcement agencies are instructed to uphold the Act without political bias", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Promote a legal framework giving legal certitude in terms of property, in particular with regard to land ownership and protection against force evictions and recognition of the rights of indigenous people, pastoralists, hunters and gathering peoples ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Undertake adequate steps concerning the property claims of persons from Bulgarian identity from eastern Thrace as previously recommended", - "values": [ - "4 - General action" - ] - }, - { - "text": "Consider adopting comprehensive measures that provide adequate guarantees to the protection of the rights of migrant persons, particularly in relation to the right to housing", - "values": [ - "3 - Considering action" - ] - }, - { - "text": "Ensure accountability for the systematic and widespread violations and abuses of human rights and violations of international humanitarian law that are being committed on a large scale throughout the Syrian Arab Republic by all parties, some of which may amount to crimes against humanity", - "values": [ - "4 - General action" - ] - }, - { - "text": "Continue efforts aimed at enhancing the realization of the right to education and improving its quality", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Take further steps in the area of promotion and protection of the rights of persons with disabilities, to improve accessibility to services, including for persons with disabilities living in disadvantaged areas", - "values": [ - "4 - General action" - ] - }, - { - "text": "Cooperate fully with UNAMID in Darfur in order to prevent and prosecute any human rights violations ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Consider ratification of the Convention against Torture", - "values": [ - "3 - Considering action" - ] - }, - { - "text": "Ensure that rape is categorized as a sexual violation rather than according to the degree of violence used or threatened by the perpetrator, and facilitate access to justice for victims of rape to ensure that cases of rape are reported and prosecuted in court ", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Consider the possibility of ratifying the International Convention for the Protection of All Persons from Enforced Disappearance and the International Convention on the Protection of the Rights of All Migrant Workers and Members of Their Families", - "values": [ - "3 - Considering action" - ] - }, - { - "text": "Pursue its efforts to ratify the Optional Protocol to the Convention against Torture", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Introduce measures to eliminate or modify customs and harmful traditional practices that discriminate against women, eliminate FGM, put an end to harmful widowhood rites and implement protective measures for this group in relation to eviction and inheritance, and halt the practice of trokosi.", - "values": [ - "4 - General action" - ] - }, - { - "text": "Increase State-funded security for minority religious community institutions as well as community members, and counter xenophobic and racist discourse against members of minority groups", - "values": [ - "4 - General action" - ] - }, - { - "text": "Promote a culture of equality through equal participation of all members of society and particularly the participation of women in rural areas", - "values": [ - "4 - General action" - ] - }, - { - "text": "Thoroughly investigate alleged extrajudicial killings and ensure accountability", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Ensure no one is subject to criminal processes for exercising rights to peaceful assembly and of association, nor subject to violence, harassment, persecution, intimidation or reprisals", - "values": [ - "4 - General action" - ] - }, - { - "text": "Acknowledge the legitimate role of human rights defenders and create and maintain a safe and enabling environment for human rights defenders and journalists to carry out their legitimate work without threat of violence or reprisals", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Promote and respect the basic rights of persons with disabilities without distinction", - "values": [ - "4 - General action" - ] - }, - { - "text": "Create mechanisms for preventing and fighting against all forms of exploitation, abuse and violence against children", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Step up its efforts to protect civil society space within the country", - "values": [ - "4 - General action" - ] - }, - { - "text": "Recommended that the justiciability of economic, social, and cultural rights be established in domestic law.", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Consider the possibility of ratifying the International Covenant on Economic, Social and Cultural Rights ", - "values": [ - "3 - Considering action" - ] - }, - { - "text": "Consider the possibility to ratify OP-CAT", - "values": [ - "3 - Considering action" - ] - }, - { - "text": "Civil society be actively involved in the further universal periodic review process of Canada", - "values": [ - "4 - General action" - ] - }, - { - "text": "Sign the first Optional Protocol to the International Covenant on Civil and Political Rights", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "A public policy based on the State's strengthening of the legal framework for human rights", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Proceed with the ratification of international human rights treaties and other relevant international instruments to which Sudan is not yet a party ", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Support new laws and measures to counter discriminatory attitudes in society and to prevent discrimination on the basis of sexual orientation and gender identity by providing public education and supporting equality initiatives ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Take the necessary legal and policy measures to end discrimination, including of women, children and Dalits ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Continue its efforts aimed at promoting and protecting the rights of children ", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Recognizing the critical role played by CSOs, the government is committed to collaborating with and providing support to CSOs. ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Continue monitoring tendencies that may give rise to racist and xenophobic acts, in accordance with the recommendations of the Committee on the Elimination of Racial Discrimination and other treaty bodies.", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Foster a genuine culture of human rights in line with national and regional particularities as well as cultural, historical and religious backgrounds", - "values": [ - "4 - General action" - ] - }, - { - "text": "Fight against all forms of discrimination and abuse of migrant workers, particularly women", - "values": [ - "4 - General action" - ] - }, - { - "text": "Pay due attention to the recommendations made by the Special Rapporteur on torture ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Amend the Penal Code to provide that crimes motivated by discrimination on any grounds, gender identity and expression and sexual orientation, are investigated and prosecuted as hate crimes", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Strengthen the measures adopted to ensure the effective prohibition of prostitution by minors under 18 years, paying particular attention to the prohibition of the use of this type of prostitution or of the offer of it ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Declare a moratorium for the abolition of death penalty", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Implement the Second Optional Protocol to the International Covenant on Civil and Political Rights into domestic law as soon as practicable", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Take the necessary steps towards ratifying CRPD", - "values": [ - "4 - General action" - ] - }, - { - "text": "Promote legislation on corporate social responsibility and the dissemination of guiding principles on business and human rights with a view to improving safety in the work place and working conditions for employees ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Adopt all urgent measures to ensure better conditions of detention for the high number of people currently detained, many of whom have not benefited from the guarantees of due process", - "values": [ - "4 - General action" - ] - }, - { - "text": "Strengthen efforts to submit all overdue reports to United Nations human rights treaty bodies.", - "values": [ - "4 - General action" - ] - }, - { - "text": "Eliminate from the Criminal Code the article relating to blasphemy", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Continue the current practice of hosting asylum seekers and refugees and consider steps to improve their basic human rights and living conditions", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Continue to strengthen domestic legislation to promote and protect the rights of women, children, domestic workers and the migrant workers", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Request the assistance of United Nations bodies in the area of regulating migration flows, in order to set up techniques to support and facilitate the return and reintegration in dignity and security of Angolan displaced persons and refugees", - "values": [ - "1 - Minimal action" - ] - }, - { - "text": "Undertake effective measures to ensure the implementation of legislation guaranteeing the principle of non-discrimination, adopting a comprehensive strategy to eliminate all forms of discrimination, particularly on the basis of gender, and strengthen its efforts aimed at harmonizing its national legislation with ratified international instruments ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Monitor the functioning of media regulatory bodies and the application of penalties in order to ensure they remain separated from outside influence", - "values": [ - "4 - General action" - ] - }, - { - "text": "Raise the minimum age of marriage to 18 years", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Fully integrate a gender perspective in the UPR process, including the outcome of the review, in accordance with resolution 5-1.", - "values": [ - "4 - General action" - ] - }, - { - "text": "Take serious steps in addressing the problem of widespread piracy attacks and robbery off the Somali coast including by cooperating with the international community in adopting the possible options identified by the Secretary-General to further the aim of prosecuting persons responsible for acts of piracy and armed robbery at sea ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Create care mechanisms for the communities affected by the conflict, including psychiatric care", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Constructively engage to garner technical and financial support from the United Nations agencies and the wider international community for the more effective promotion and protection of human rights", - "values": [ - "1 - Minimal action" - ] - }, - { - "text": "Establish a special court with an independent prosecutor once the Truth Reconciliation Commission has ended its mandate ", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Increase judicial transparency in the use of the death penalty", - "values": [ - "4 - General action" - ] - }, - { - "text": "Continue the de facto moratorium on the death penalty and further take steps towards its legal abolition", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Adopt a moratorium on eviction until measures are taken to guarantee effective implementation of the 2001 law on land property and to deal with this problem in a more humane and dignified manner ", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Ensure the full and equal enjoyment by women of all human rights without discrimination.", - "values": [ - "4 - General action" - ] - }, - { - "text": "Grant access to quality education for Roma children in mainstream schools", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Ratify and implement without delay the International Convention for the Protection of All Persons from Enforced Disappearance", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Continue on the path of dialogue with its immediate neighbours and with the European Union, with a view to ensuring that together they continue to meet the challenges of migration in the humane and constructive spirit to which they are all committed ", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Continue expanding access to voluntary termination of pregnancy in order to ensure the full recognition of sexual and reproductive rights", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Continue its efforts to implement the National HIV and AIDS Strategic Plan", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Intensify its efforts to accelerate women's equal participation at all levels and in all areas of public life.", - "values": [ - "4 - General action" - ] - }, - { - "text": "Put an end to all practices of torture, align its definition of torture with article 1 of the Convention against Torture and other Cruel, Inhuman or Degrading Treatment or Punishment and ratify the Optional Protocol to the Convention against Torture and other Cruel, Inhuman or Degrading Treatment or Punishment ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Become party to the International Convention for the Protection of All Persons from Enforced Disappearance ", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Strengthen protection of journalists against intimidation, death threats and attacks", - "values": [ - "4 - General action" - ] - }, - { - "text": "Develop, in compliance with CRPD, a legal framework that ensures an environment without barriers or obstacles, and includes access to goods and services", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Ensure the registration of all newly born children so as to continue reducing the number of adult non-citizens", - "values": [ - "4 - General action" - ] - }, - { - "text": "Limit the use of prolonged periods of pre-trial detention for nonnationals", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Consider ratification of core human rights treaties, including ICCPR, ICESCR and ICERD to be followed by their effective implementation", - "values": [ - "3 - Considering action" - ] - }, - { - "text": "Ratify the International Convention for the Protection of All Persons from Enforced Disappearance, and the Convention on the Rights of Persons with Disabilities and its Optional Protocol ", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Strengthen measures and enact specific legislation to combat discrimination and violence against women, in particular sexual and domestic violence", - "values": [ - "4 - General action" - ] - }, - { - "text": "Expand custody hearing programmes to cover all pre-trial detainees by passing draft bill 554/2011. Provide specific training according to the Istanbul Protocol to judges and public prosecutors working in custody hearings", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Continue to strengthen measures to promote the economic empowerment of women particularly in the time of the financial crisis", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Elaborate a specific definition of discrimination against women in Armenia's legislation ", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Maintain, as a permanent priority, the quality improvement in public health of the country ", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Consider implementing an educational campaign aimed at the promotion of gender equity, as well as awareness-raising on harmful practices against women \n\n", - "values": [ - "3 - Considering action" - ] - }, - { - "text": "Comply fully with its obligations and commitments related to freedom of expression, including for members of the press ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Take further measures on anti-discrimination and equality to address gender stereotypes and discriminatory practices that fuel domestic gender-based violence", - "values": [ - "4 - General action" - ] - }, - { - "text": "Continue building the national human rights institutional framework and ensure its effective functioning", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Respect all provisions of the Convention relating to the Status of Refugees, including the principle of non-refoulement for all persons standing at the Bangladesh borders, whose life would be threatened ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Ensure equal rights and opportunities for women by promoting education and vocational training, with the aim of getting women out of low-skilled and low-paid jobs", - "values": [ - "4 - General action" - ] - }, - { - "text": "Continue the process of ratification of international instruments, particularly those related to human rights, to which the country is not yet party", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Continue to promote programmes for human rights education and awareness-raising", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Ratify the Rome Statute of the International Criminal Court as well as the Optional Protocol to the Convention on the Elimination of All Forms of Discrimination against Women", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Intensify efforts to proactively identify trafficking victims among vulnerable populations, particularly women in prostitution and migrant men in the agricultural sector ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Ensure that the work of the NHRI is aligned with the Paris Principles ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Reduce the scope of application of the death penalty, and publish statistics to show that the use of the death penalty is falling in China", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Strengthen its efforts relating to the fight against human trafficking, ensuring that all aspects of the issue, from prevention to the suppression of crimes and the protection of victims, are taken into consideration", - "values": [ - "4 - General action" - ] - }, - { - "text": "Strengthen suitable mechanisms for the identification of situations of violence against persons with disabilities", - "values": [ - "4 - General action" - ] - }, - { - "text": "Strengthen its cooperation with treaty bodies and give the greatest possible attention to the recommendations of the Committee on the Rights of the Child and the Committee on the Elimination of Discrimination against Women and the various United Nations joint reports ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Improve and strengthen cooperation with all relevant United Nations special procedures and mechanisms to, inter alia, improve the enjoyment of human rights by populations in the Occupied Palestinian Territories and to reverse the dire humanitarian situation there", - "values": [ - "4 - General action" - ] - }, - { - "text": "Re-impose an immediate formal moratorium on the death penalty with a view of a complete abolition of the capital punishment ", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Increase the efforts towards fighting against human trafficking, including by considering the possibility of the development of state programs and plans of action in this area ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Guarantee full independence of the judiciary", - "values": [ - "4 - General action" - ] - }, - { - "text": "Adopt domestic laws and administrative regulations aimed at eradicating all forms of discrimination against persons of foreign origin, members of ethnic or linguistic minorities, refugees, asylum-seekers and migrant workers, by ensuring the enjoyment of their fundamental rights, irrespective of their migration status ", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Combat discrimination against Roma and implement special measures in the education, housing, health and employment spheres, as well as investigating and prosecuting all discriminatory acts directed at Roma children", - "values": [ - "4 - General action" - ] - }, - { - "text": "Take appropriate measures to translate its international obligations into its national laws and regulations to ensure their effective implementation", - "values": [ - "4 - General action" - ] - }, - { - "text": "Continue its action to align, to strengthen and to make compatible national legislation with its international obligations in accordance with the treaties to which it is a party", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Issue a standing invitation to United Nations Special Procedures mandate holders", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Establish and implement laws and public health policy aimed at eradicating female genital mutilation ", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Accede to and fully align its national legislation with the Rome Statute, including by incorporating provisions to cooperate promptly and fully with the ICC in investigations and prosecutions and accede to the Agreement on the Privileges and Immunities of the International Criminal Court", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "End the detention of political activists and release all political prisoners without delay", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Continue the programmes for economic and social development by correcting disparities between urban and rural areas", - "values": [ - "4 - General action" - ] - }, - { - "text": "Allow free movement of Albanian and Roma minorities and resolve the problem of lack of identity documents, which constitutes an obstacle to the exercise of their rights", - "values": [ - "4 - General action" - ] - }, - { - "text": "Strengthen further the effective implementation of the National Plan of Action against Trafficking in Human Beings, in line with suggestions made by CEDAW ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Ratify the Council of Europe Convention on Prevention and Combating Violence against Women and Domestic Violence", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Further strengthen the judicial institutions and expand the use of mobile courts", - "values": [ - "4 - General action" - ] - }, - { - "text": "Redouble efforts and undertake efficient measures to implement CRPD, in particular as regards accessibility to public premises and the labour market ", - "values": [ - "4 - General action" - ] - }, - { - "text": "A sustained improvement of the humanitarian situation in the Palestine territories can only be achieved by the permanent settlement of the conflict. Encouraged the international community to continue its efforts to that end. necessary measures must be taken to ameliorate the living conditions of the Palestine people. Call on all parties concerned to refrain from any action that could undermine the process leading to a durable solution.", - "values": [ - "4 - General action" - ] - }, - { - "text": "Establish mechanisms for the evaluation and follow-up of the implementation of human rights public policies and programmes, in particular those referred to the fight against discrimination in all its forms and on any grounds, taking into account the recommendations from the universal periodic review and other human rights mechanisms", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Significantly improve its cooperation with the United Nations treaty bodies by agreeing on timelines for the submission of overdue reports, and consider the need for external assistance to that end", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Take all relevant measures to fight against sexual violence and bring perpetrators to justice", - "values": [ - "4 - General action" - ] - }, - { - "text": "Reinstate the moratorium on executions, and ban the death penalty for defendants who suffer from mental illness or who were minors at the time of their alleged crimes", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Make further efforts to accede and fully align its national legislation with the Rome Statute of the International Criminal Court", - "values": [ - "4 - General action" - ] - }, - { - "text": "Proceed in providing effective protection for the family as the natural and fundamental unit of society", - "values": [ - "4 - General action" - ] - }, - { - "text": "Respect - in law and in practice - the right of individuals to assemble peacefully", - "values": [ - "4 - General action" - ] - }, - { - "text": "Live up to all its obligations under international humanitarian law and international human rights law and provide immediate, full and unhindered humanitarian access to all populations in need throughout the Syrian Arab Republic", - "values": [ - "4 - General action" - ] - }, - { - "text": "Intensify its efforts with a view to creating the conditions in order that the National Human Rights Commission conform with the Paris Principles", - "values": [ - "4 - General action" - ] - }, - { - "text": "Continue and strengthen efforts to find a solution that respects the land rights of indigenous groups and ensures legal protection of their human rights.", - "values": [ - "4 - General action" - ] - }, - { - "text": "Continue extending its international commitments and consider ratification of the International Covenant on Civil and Political Rights ", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Bring its national legislation in line with the Rome Statute of the International Criminal Court and, in particular, incorporate the necessary provisions to fully cooperate with the Court when it comes to investigating and prosecuting for genocide, crimes against humanity and war crimes in its national courts", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Strengthen its efforts to ensure that juvenile justice standards are fully implemented, in particular that children are detained only as a last resort and for as short a time as possible, that children's rights are not violated while in detention and that programmes are in place to train specialized judges and other professionals involved in the juvenile justice system.", - "values": [ - "4 - General action" - ] - }, - { - "text": "Continue to fully cooperate with the Independent Expert on the situation of human rights in Sudan ", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Develop and implement a national plan of action to combat poverty ", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Continue to promote school attendance for girls ", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Steps to counter negative attitudes and stereotypes towards disabled persons", - "values": [ - "4 - General action" - ] - }, - { - "text": "Take stronger action, at the federal government level, to counter "death squads" ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Take new measures to put an end to cultural practices that discriminate against children with disabilities, women, and all persons living with HIV/AIDS", - "values": [ - "4 - General action" - ] - }, - { - "text": "Revisit its decision not to support the United Nations Declaration on the Rights of Indigenous Peoples, with a view to protecting the rights of indigenous peoples in the country, and engage with the Maori and the wider community to promote the realization of indigenous rights.", - "values": [ - "3 - Considering action" - ] - }, - { - "text": "Ratify human rights treaties such as the International Convention on the Elimination of All Forms of Racial Discrimination, the International Covenant on Economic, Social and Cultural Rights, the International Covenant on Civil and Political Rights, the Convention against Torture and the Optional Protocol to the Convention on the Elimination of All Forms of Discrimination against Women", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Adopt and implement the Domestic Violence Bill", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "The Government is committed to creating an environment that promotes sustainable economic growth while ensuring that the rights and welfare of its workers are protected. ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Improve conditions for prisoners in order to ease overcrowding and existing conditions, and ensure them the right to adequate food", - "values": [ - "4 - General action" - ] - }, - { - "text": "Take concrete steps towards ratifying the Rome Statute of the International Criminal Court as early as possible", - "values": [ - "4 - General action" - ] - }, - { - "text": "End incitement to hatred, including statements that show contempt for General Assembly resolutions 60-7 and 61-255, on Holocaust remembrance and Holocaust denial, respectively", - "values": [ - "4 - General action" - ] - }, - { - "text": "Continue to prioritize the budget for public education", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Reconsider the legal status of lesbian, gay, bisexual and transgender people, and consider taking concrete steps to protect them from violence and discrimination ", - "values": [ - "3 - Considering action" - ] - }, - { - "text": "Ensure full adherence to its international human rights obligations in its overseas counter-terrorism operations and set up comprehensive legislative and implementation frameworks for the identification, investigation, prosecution, and punishment of perpetrators of various human rights violations ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Consider ratifying ILO Convention No. 169 as a matter of priority ", - "values": [ - "3 - Considering action" - ] - }, - { - "text": "Eliminate the practice of racial profiling and surveillance by law enforcement officials", - "values": [ - "4 - General action" - ] - }, - { - "text": "Continue its efforts to assist indigenous communities, including the Pygmies, who share the same culture as those living in the Central African Republic.", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Take the necessary measures to fight against impunity for human rights violations, regardless of who the perpetrators are", - "values": [ - "4 - General action" - ] - }, - { - "text": "Continue its efficient role in promoting women's rights and ensuring that women enjoy all fundamental freedoms ", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Continue current efforts to ratify the International Covenant on Economic, Social and Cultural Rights (ICESCR) as well as the International Convention on the Elimination of All Forms of Racial Discrimination (ICERD) as soon as possible ", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Ensure that immigration legislation is in accordance with its international human rights obligations", - "values": [ - "4 - General action" - ] - }, - { - "text": "Adopt measures to strengthen its mechanisms to combat trafficking, with a special focus on trafficking of boys and girls for sexual exploitation", - "values": [ - "4 - General action" - ] - }, - { - "text": "Establishment and implementation of a National Human Rights Plan which cover access to education and health, including aspects of sexual and reproductive and health, as well as, concrete measures to eliminate violence against women ", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Better attract and facilitate the participation of socio-political organizations in the promotion and protection of human rights ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Accede to the Convention on the Prevention and Punishment of the Crime of Genocide and the Optional Protocols to the International Covenant on Civil and Political Rights (ICCPR) ", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Continue legislative and practical efforts to improve living conditions in prison and detention facilities, in particular with regard to reducing overcrowding and ensuring access to health care and education", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Decriminalize sexual relations between consenting adults of the same sex and amend national legislation to include sexual orientation as prohibited grounds for discrimination", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Continue providing migrants and their families access to education, health care, and housing at par with its citizens", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Introduce an alternative non-punitive service of genuine civilian character, under civilian control and of a length comparable to military service", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Take the measures necessary to prevent the detention of minors in adult prisons", - "values": [ - "4 - General action" - ] - }, - { - "text": "Prohibit harmful practices, including by adopting additional measures to fight against all forms of violence against women and girls", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Strengthen efforts to reduce drug abuse, as recommended by the Committee on the Rights of the Child ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Ensure fair and proper legal action in relation to those investigated and prosecuted, including impartial trials and reasonable sentences, as well as detention standards that meet international norms ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Consider allocating the Office of the Ombudsman with sufficient human and financial resources to allow it to be fully operational ", - "values": [ - "3 - Considering action" - ] - }, - { - "text": "Explore the possibility of consolidating the work of existing institutions and establishing a national human rights institution in conformity with the Paris Principle", - "values": [ - "3 - Considering action" - ] - }, - { - "text": "Continue action to ensure the equality of men and women in the work place, including the implementation of programmes to combat wage gaps", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Withdraw its reservations made to CEDAW ", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Establish a human rights monitoring system, which allows access to detention centres in northern Nigerian, works with affected communities and promotes accountability for serious violations of human rights", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Increase its efforts to improve conditions in detention facilities \n\n", - "values": [ - "4 - General action" - ] - }, - { - "text": "Expedite the ratification of the OP-CRC-SC", - "values": [ - "4 - General action" - ] - }, - { - "text": "Ensure compliance with the human right to water and sanitation according to General Assembly resolution 64/292", - "values": [ - "4 - General action" - ] - }, - { - "text": "Combat child poverty, in particular that which affects Maori children, those who live in the Pacific islands and children with disabilities ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Increase efforts in the process of technical support and consultation services in order to support the reforms in the area of human rights in order to align them with international standards", - "values": [ - "4 - General action" - ] - }, - { - "text": "Look to ensure the continued separation of party and State, to allow adequate transparency and space for further democratic growth, including the impartial functioning of the Supreme Electoral Council in line with recommendations made by regional and international institutions ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Adopt measures aimed at protecting persons belonging to minority groups, including internally displaced persons belonging to minorities", - "values": [ - "4 - General action" - ] - }, - { - "text": "Make sincere efforts to build up levels of confidence and reconciliation among religious groups through dialogue between religious leaders", - "values": [ - "4 - General action" - ] - }, - { - "text": "Consider making some amendments to the Aliens Act, particularly as regards appeals against decisions from the Supreme Migration Court ", - "values": [ - "3 - Considering action" - ] - }, - { - "text": "Strengthen policies and measures to address incidents of discrimination perpetuated against indigenous and Afro-Peruvian women, especially in relation to access to education, employment and health-care services", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Guarantee basic services to the children of migrants in irregular situations, in particular in the areas of education and health", - "values": [ - "4 - General action" - ] - }, - { - "text": "Adopt comprehensive antidiscrimination legislation.", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Continue with the formulation of a human rights strategy and with human rights education.", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Adopt measures against child activities in convents dedicated to voodoo, where child abuses take place. Additionally, take measures to sanction and prevent the practice of infanticide of so-called \u201cwitch children\u201c", - "values": [ - "4 - General action" - ] - }, - { - "text": "Encourage the devolved government of Northern Ireland to align its legal framework on sexual and reproductive health and rights, and its reproductive health services, with the rest of the United Kingdom", - "values": [ - "4 - General action" - ] - }, - { - "text": "Adopt and implement targeted measures to address the root causes of slavery, including poverty, inequality and customary norms", - "values": [ - "4 - General action" - ] - }, - { - "text": "Amend regulations related to arrest and detention by the Jamaica Constabulary Force, so that they clearly define the rights of detainees, strengthen judicial oversight of arrests, and provide specific remedies for breach of duty", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Create and adopt all legislative and administrative measures necessary to ensure that all families, including those based on non-conventional family models, are treated equally under the law, particularly with regard to issues of residency and inheritance", - "values": [ - "4 - General action" - ] - }, - { - "text": "Continue to guarantee religious freedom by taking away any impediment to the full enjoyment of this basic human rights for all its citizens", - "values": [ - "4 - General action" - ] - }, - { - "text": "Continue implementation of national programmes in the sphere of education and health care", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Continue to make efforts to ensure women's participation in political life and in decision making", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Guarantee the human rights of citizens under the new Constitutions and establish effective mechanisms to ensure these are respected, including through the establishment of a national human rights institution in line with the Paris Principles", - "values": [ - "4 - General action" - ] - }, - { - "text": "Take all necessary measures to effectively protect children from sexual exploitation", - "values": [ - "4 - General action" - ] - }, - { - "text": "Conduct more active policy against racial discrimination, including addressing the issue of incorporating an adequate definition of racial discrimination in national legislation", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "The Dominican Republic further reiterated its commitment to addressing specific issues in which it had recognized difficulties, such as violence against women, the situation of children and child labour. It was also the goal of the Government to address the issue of executions as well.", - "values": [ - "4 - General action" - ] - }, - { - "text": "Guarantee freedom of religion or belief and the full respect of the rights of persons belonging to minorities ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Criminalise domestic violence, ensuring to victims effective access to immediate means of protection and reinforcing prosecution of perpetrators ", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Adopt an Organization for Security and Cooperation in Europe High Commissioner on National Minorities-compliant strategy on national minorities as soon as possible, in order to clearly affirm the commitment of the Republic of Moldova to national minorities' rights", - "values": [ - "4 - General action" - ] - }, - { - "text": "Continue its positive efforts and share its experiences, best practices and lessons learned, such as in the field of women's rights and the empowerment of women, and in the struggle against racism and racial discrimination.", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Finalize and implement the draft National Action Plan for Children, and put in place effective national legislation and policies to protect the rights of children ", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Eradicate the crimes of sexual abuse and trafficking in children", - "values": [ - "4 - General action" - ] - }, - { - "text": "Continue efforts to combat discrimination and promote greater social integration of immigrants, and indigenous and minority groups", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Ratify OP-ICESCR, OP-CEDAW and OP-CAT", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Continue to make traditional communities aware of the consequences in terms of human rights abuses of harmful traditional practices", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Continue the development and implementation of measures aimed at reducing human rights violations by the security forces in particular extrajudicial executions, arbitrary detention and torture, as well as making the mechanisms of tackling impunity more effective", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "In line with the concerns expressed by the Committee against Torture and the Human Rights Committee, establish an independent body to safeguard the independence of the judiciary and supervise the appointment, promotion and regulation of the profession", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Japan is pleased to commit itself to follow up the majority of the recommendations it was given.", - "values": [ - "4 - General action" - ] - }, - { - "text": "Adopt measures to abolish the death penalty ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Continue its efforts to realise universal human rights by a - ratifying CEDAW, b - becoming a party to the United Nations Convention on the Rights of the Child, c - acceding to ICESCR, d - ratifying the United Nations Convention on the Rights of Persons with Disabilities", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Establish specialized tribunals with a view to accelerating trials related to family cases, in which the best interests of children should prevail", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Ensure the allocation of sufficient resources for the implementation of the food security policy", - "values": [ - "4 - General action" - ] - }, - { - "text": "Announce a moratorium on the death penalty with a view to its eventual abolition", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Take measures to ensure that Constitutional and legal protections for religious minorities are upheld and in particular that their places of worship are protected, including from violent attack ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Guarantee that de facto moratorium on executions will continue and consider abolishing the death penalty ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Costa Rica will continue to adopt new international human rights and humanitarian law instruments, such as the Convention on the Protection and Promotion of the Diversity of Cultural Expressions, the Optional Protocol to the International Covenant on Economic, Social and Cultural Rights, the International Convention for the Protection of All Persons from Enforced Disappearance and the Convention on Cluster Munitions. It will also follow up on the appropriate implementation of the Convention on the Rights of Persons with Disabilities.", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Consider becoming party to the International Convention on the Protection of the Rights of All Migrant Workers and Members of Their Families", - "values": [ - "3 - Considering action" - ] - }, - { - "text": "Consider establishing a moratorium on the death penalty with a view to its abolishment", - "values": [ - "3 - Considering action" - ] - }, - { - "text": "Continue its efforts in developing a policy on free primary education.", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Take effective legal and practical measures to eliminate all forms of discrimination and violence against women and children, particularly women and children belonging to ethnic and religious minorities, including Muslims who still face multiple forms of discrimination with respect to education, health, employment and social and political participation ", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Complete the procedure of accession to the Second Optional Protocol to the International Covenant on Civil and Political Rights, aiming at the abolition of the death penalty, to formalize the de facto moratorium on the death penalty ", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Review and strengthen existing legislation prohibiting violence against women and discrimination on any grounds - allocate significant financial and human resources to enforce implementation of policy, and increase accountability measures for acts of violence by state actors ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Review legislation on abortion, as advocated by various treaty bodies, to which Malta is party, Consider creating exceptions to the general prohibition of abortion, including for medical reasons or in cases of pregnancy resulting from rape or incest, Remove repressive provisions for women who have recourse to abortion", - "values": [ - "3 - Considering action" - ] - }, - { - "text": "Ratify ICCPR-OP2 ", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "To strengthen public policy in education at all levels and modalities, especially those aimed at the promotion, dissemination and respect for human rights", - "values": [ - "4 - General action" - ] - }, - { - "text": "Decriminalize same-sex consensual relationships and adopt all necessary measures to combat discrimination and violence based on sexual orientation or gender identity, and guarantee access of lesbian, gay, bisexual, transgender and intersex people to health services", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Continue efforts for the reinforcement of the Rule of Law, the respect and the actual implementation of human rights throughout the country, in particular through the completion of the existing reform process in the field of justice, territorial administration, the civil registry, the Civil Code and the Family Code.", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "The remaining demining activity in respect of conflict affected areas will be completed so as to facilitate return of the displaced in keeping with the national mine action programme", - "values": [ - "4 - General action" - ] - }, - { - "text": "Abolish the death penalty under the military legislation ", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Ensure that the International Commission against Impunity in Guatemala is able to operate without interference and that government institutions key to anti-corruption efforts continue to be adequately funded with dedicated leadership", - "values": [ - "4 - General action" - ] - }, - { - "text": "Ratify the Convention relating to the Status of Refugees", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Consider including the provision on gender equality and non discrimination in its Human Rights and Liberty Law", - "values": [ - "3 - Considering action" - ] - }, - { - "text": "Investigate all pending reports of enforced or involuntary disappearances and punish the perpetrators of these crimes", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Introduce practical measures, such as alternative means, to shorten periods of imprisonment", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Continue to honour its international human rights commitments through compliance with its obligations", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Adopt the bill on persons deprived of liberty", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Ensure equal treatment and non-discrimination against lesbian, gay, bisexual and transgender persons, and other vulnerable groups", - "values": [ - "4 - General action" - ] - }, - { - "text": "Call on Djibouti to seek the appropriate technical assistance from the international community to enable the country to build its human right capacities ", - "values": [ - "1 - Minimal action" - ] - }, - { - "text": "Enact national legislation to translate the ratified international treaties into national law", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Sign and ratify the third Optional Protocol to the Convention on the Rights of the Child on a communications procedure, without reservations", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Consider ratifying the following international instruments: the International Covenant on Civil and Political Rights and the second Optional Protocol thereto, the International Convention for the Protection of All Persons from Enforced Disappearance and the Optional Protocol to the Convention against Torture, implementing the national preventive mechanism ", - "values": [ - "3 - Considering action" - ] - }, - { - "text": "Ratify the optional protocols to ICESCR and ICCPR and the optional protocols to CEDAW and the one concerning children in armed conflict, signed in 2007", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Continue efforts in ending the political instability in the country ", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Continue the fight against discrimination, exclusion, dehumanization, stigmatization and violence suffered by scheduled castes", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Engage actively in the fight against domestic violence, amend its legislation and adopt relevant measures to tackle the problem of domestic violence ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Inform the international community of the conditions of the G11 and other political, media and religious detainees and grant access to them by an international organization to ascertain their conditions, and make clear the charges against them and the legal process to which they will be subjected", - "values": [ - "4 - General action" - ] - }, - { - "text": "Accelerate the reform to establish a NHRI in accordance with the Paris Principles.", - "values": [ - "4 - General action" - ] - }, - { - "text": "Take the necessary steps to strengthen the independence and impartiality of the judiciary", - "values": [ - "4 - General action" - ] - }, - { - "text": "Share its experiences and best practices in poverty alleviation with other developing countries", - "values": [ - "1 - Minimal action" - ] - }, - { - "text": "Consider the possibility of the abolition of the death penalty in its statutes", - "values": [ - "3 - Considering action" - ] - }, - { - "text": "Extend an open and permanent invitation to all special procedures ", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Continue to implement the National Action Plan to Combat Trafficking in Persons 2015-2019", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Continue taking further steps for the strengthening of judicial system", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Include human rights education in the school curricula", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Take concrete measures to implement the Migration and Aliens Act adopted in August 2009", - "values": [ - "4 - General action" - ] - }, - { - "text": "Continue to pay close attention to its obligations under international humanitarian and international human rights law, including with respect to foreign nationals and stateless persons", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Increase all kinds of measures aimed at establishing a national human rights institution, in compliance with the Paris Principles, with the assistance of the Office of the United Nations High Commissioner for Human Rights ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Harmonise legislation with international obligations and standards in the field of combatting violence against women by effectively criminalizing domestic violence, sexual violence, including marital rape, as well as human trafficking, in addition to establishing effective measures for assistance to victims and access to justice", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Immediately and unconditionally release all prisoners of conscience imprisoned only for exercising their right to freedom of expression, association and peaceful assembly", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Strengthen its efforts in bringing more equity in ensuring rights and opportunities of rural communities especially, ethnic minorities, women and children who live in those areas.", - "values": [ - "4 - General action" - ] - }, - { - "text": "Persist investigating allegations of violence and ill-treatment by the Police Forces and ensure that international human rights standards are respected at all levels of public administration", - "values": [ - "4 - General action" - ] - }, - { - "text": "Promptly ratify the Optional Protocol to the Convention against Torture and Other Cruel, Inhuman or Degrading Treatment or Punishment", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Continue to invest sufficient resources in the judicial system so that it could combat impunity", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Assess the possibility of making domestic violence an independent crime, and redouble efforts to ensure the effective implementation of the 2007 Action Plan against Violence ", - "values": [ - "3 - Considering action" - ] - }, - { - "text": "Maintain its efforts in the area of combating trafficking in persons, especially women and children, based on the relevant National Action Plan endorsed in 2012", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Prohibit child labour of minors under the age of 14", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Continue to strengthen policies to promote education and to address educational imbalances between urban and rural areas and among regions", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Promote the exercise of freedom of expression, association and peaceful assembly, notably of members of political parties, unions, media and civil society without the risk of undue restrictions ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Consider adopting public policies on ensuring quality education for children and adolescents, and further allocate adequate financial resources to this endeavour, including by focusing on reducing the number of school dropouts ", - "values": [ - "3 - Considering action" - ] - }, - { - "text": "Continue its efforts to provide full access to education, the labour market and public life for persons with disabilities", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Continue its active engagement with its international and regional partners towards surmounting technical and financial constraints in implementing the recommendations of the Truth, Justice and Reconciliation Commission, especially those that pertain to human rights", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Punish the practice of female genital mutilation and any harmful practices for physical and psychological health of girls and women", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Further strengthen policies and measures to combat discrimination and violence against women, in particular by considering specific legislation on domestic violence ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Take the measures necessary to review its domestic legislation in order to guarantee the free and compulsory birth registration of all children born in the country", - "values": [ - "3 - Considering action" - ] - }, - { - "text": "Continue progress in building institutions, considering their importance in protecting and promoting human rights and public freedoms and developing the Tunisian society ", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Intensify the work regarding the protection of children from violence, promptly identify and suppress cases of cruel treatment of children", - "values": [ - "4 - General action" - ] - }, - { - "text": "Carry out an active prevention policy against violence and acts of intimidation against media and members of the political opposition, and give the established mechanisms the necessary resources and means to accomplish their mandate in the field of human rights protection", - "values": [ - "4 - General action" - ] - }, - { - "text": "Further invest in education and give special attention to the education of girls and young women ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Lift its reservation on Article 9 of the Convention on the Elimination of All Forms of Discrimination against Women and allow women to pass the citizenship to their children", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Strengthen and intensify actions to combat domestic violence ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Take all appropriate measures to ratify OP-CAT and establish a national preventive mechanism to align itself with its neighbours' positive practices", - "values": [ - "4 - General action" - ] - }, - { - "text": "Provide sufficient resources for the effective functioning of the child protection system, including through training of social workers, standards to limit the case load per social worker and their adequate remuneration", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Provide adequate resources for the full implementation of domestic laws that prohibit harmful traditional practices against women", - "values": [ - "4 - General action" - ] - }, - { - "text": "Strengthen the efforts to prevent domestic violence, protect its victims and punish the perpetrators, including by removing articles 109 and 252 of the Penal Code ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Continue to cooperate with Special Procedures and mechanisms and consider extending invitations to Special Rapporteurs", - "values": [ - "4 - General action" - ] - }, - { - "text": "Continue efforts to ensure the rights of persons with disabilities aiming at the creation of the legal and institutional frameworks for the implementation of the Convention on the Rights of Persons with Disabilities, taking into account the national strategy adopted for 2010-2018 ", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Lift immediately the blockade on the Gaza strip, and stop any Israeli attacks on the Gaza strip", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Investigate and prosecute those who committed human rights violations on both sides of the country's civil war and provide reparations to victims in line with international, standards under the newly-formed Truth and Reconciliation Commission", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Continue its efforts in promoting the right to education so as to ensure access to education for all its young citizens ", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Expedite the adoption of a Constitution and ensure that all national laws are in conformity with international human rights law", - "values": [ - "4 - General action" - ] - }, - { - "text": "Undertake measures to promote tolerance and non-discrimination on grounds of sexual orientation or identity in line with the Yogyakarta Principles ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Encourage putting in place a broader social safety net designed to cover all segments of society, notably persons working in the informal sectors as well as vulnerable persons", - "values": [ - "4 - General action" - ] - }, - { - "text": "Consider ratifying the International Convention on the Protection of the Rights of All Migrant Workers and Members of Their Families and the ILO Domestic Workers Convention, 2011 (No. 189)", - "values": [ - "3 - Considering action" - ] - }, - { - "text": "While guaranteeing this freedom of speech, strengthen Internet governance to make sure the contents that incite war, racial hatred or defamation of religions are prohibited, and pornographic websites that are harmful to children and minors are banned or restricted", - "values": [ - "4 - General action" - ] - }, - { - "text": "Undertake legislative reforms to criminalize trafficking in persons, in accordance with the definition contained in the Palermo Protocol.", - "values": [ - "4 - General action" - ] - }, - { - "text": "Withdraw its declaration on article 2 (c) in order to give full effect to the Optional Protocol to the Convention on the Rights of the Child on the sale of children, child prostitution and child pornography in addressing all forms of child pornography", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Increase investments aimed at closing the quality gap between education in urban and rural, remote areas or those with ethnic minorities, as well as investments aimed at increasing education on the content of the Universal Declaration of Human Rights and core international human rights instruments ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Extend a standing invitation to the special procedures mandate holders ", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Inform the ILO about progress made by Belize in the implementation of its National Policy on Gender", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Improve the situation of women and children by implementing Security Council resolution 1325 (2000) on women, peace and security and adopting a relevant national action plan", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Address the structural causes of poverty faced by the most economically vulnerable communities, in particular regarding chronic malnutrition", - "values": [ - "4 - General action" - ] - }, - { - "text": "Amend the definition of discrimination in the Constitution in such a way that it covers discrimination based on descent and abolish those laws that permit discrimination on the basis of ethnicity, language and culture.", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Fully implement the Decade of Roma Inclusion 2005-2015 Programme to address all forms of discrimination against the Roma people and to improve the conditions of Roma settlements.", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Continue strengthening its policies and programmes for enhancing women's empowerment and equality", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Give appropriate mandate and financial resources to the National Human Rights Commission and the Office of the Mediator of the Republic.", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Outlaw corporal punishment at home and provide victims of domestic violence with access to legal remedies and protection from potential perpetrators", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Ensure effective implementation of the measures or strategies established to counter and prevent trafficking in persons, including by intensifying efforts to prosecute perpetrators and providing adequate protection to trafficking victims, especially women and children", - "values": [ - "4 - General action" - ] - }, - { - "text": "Maintain, in strict compliance of law, to avoid impunity for people who are qualifying themselves as human rights defenders with the objective of attacking the interests of the state and the people of China", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Consider strengthening its policy and relevant legislation, as well as allocating adequate resources, to further promote gender equality and women's participation in public life ", - "values": [ - "3 - Considering action" - ] - }, - { - "text": "Pursue efforts to prevent abuses committed by law enforcement forces and to improve prison conditions ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Consider adopting comprehensive anti-discrimination legislation, addressing all manifestations of racism, racial discrimination, xenophobia and related intolerance in all spheres of life", - "values": [ - "3 - Considering action" - ] - }, - { - "text": "Continue efforts to eliminate poverty", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Ratify the Rome Statute of the International Criminal Court and to fully align its legislation with all obligations under the Statute ", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Continue implementing the National Illiteracy Eradication Project, giving priority to girls and women", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Take all necessary measures to ensure equal access to justice for all citizens and guarantee a fair process before a competent, independent and impartial tribunal ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Adhere to the Optional Protocol to the Convention on the Rights of the Child on a communications procedure", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Implement previous commitments to increase state resources allocated to Arab Israeli and Bedouin communities, especially for education, and ensure equal access to education, housing, healthcare and employment for individuals in these communities", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Speed up implementation of policies and measures in poverty reduction, malnutrition eradication and food security", - "values": [ - "4 - General action" - ] - }, - { - "text": "Continue its collaboration with the United Nations to improve the submission of human rights reports", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Conclude the ratification process of the CED ", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Further strengthening the criminal justice system and prison management in the country ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Take the necessary steps to enhance the capacity of the National Human Rights Commission of Mongolia to enable it to carry out its mandate freely and independently for it to comply with the Paris Principles", - "values": [ - "4 - General action" - ] - }, - { - "text": "Amend the current legislation regarding the media to eliminate the criminalization of "desacato", contempt, libel or slander, in line with the international human rights standards ", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Allow the international community meaningful and confidential access to Lao Hmong returnees from Thailand ", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Speed up its national examination procedures with a view of prompt ratification of the Convention on the Elimination of All forms of Discrimination against Women", - "values": [ - "4 - General action" - ] - }, - { - "text": "Continue to develop its health-care undertakings to better guarantee people\u2019s right to health", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Decriminalize same-sex conduct by repealing Sections 365 and 365A of the Penal Code", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Consider ratifying the Convention for the Protection of Migrant workers and their families ", - "values": [ - "3 - Considering action" - ] - }, - { - "text": "Intensify efforts to improve the situation in detention centres and prisons, with a special focus on ensuring the separation of juvenile convicts from adult inmates", - "values": [ - "4 - General action" - ] - }, - { - "text": "Implement a comprehensive assistance programme for children living on the streets, ensuring that they have access to sanitation, education and social security", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Continue its efforts aimed at fighting trafficking in persons and, in particular, the trafficking and exploitation of children", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Abolish the punishment of caning, particularly those who have exceeded the period stated in the Visa or the residency", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Facilitate women's access to justice and employment", - "values": [ - "4 - General action" - ] - }, - { - "text": "Continue its efforts to provide humanitarian and development aid", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Adopt a comprehensive sexual and reproductive health policy for adolescents and ensure that sexual and reproductive health education is a part of the mandatory school curricula and targeted at adolescents", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Accede to the 1951 Geneva Convention relating to the Status of Refugees and its 1967 Protocol", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Ratify the Second Protocol to the ICCPR ", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Counter the trend of repressing free speech, including restrictions on media outlets, and take concrete steps to meet its obligation to create an environment that fosters freedom of expression", - "values": [ - "4 - General action" - ] - }, - { - "text": "Ratify the International Convention for the Protection of All Persons from Enforced Disappearance and fully recognize the competence of the Committee on Enforced Disappearances, as provided for in articles 31 and 32 of the Convention", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Continue its efforts to cooperate with the Special Rapporteur on the situation of human rights defenders, to ensure that all allegations of improper use of criminal laws against journalists and dissenting voices, including human rights defenders, are investigated in an effective, impartial and prompt manner", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Provide an update at its mid-term review on the number of detention centres in the country containing separate facilities for juvenile offenders", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Fully implement the adopted action plan on the recruitment of children to the armed forces and take into consideration the relevant recommendations made by the Secretary-General in his annual report on children and armed conflict ", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Impose at least a moratorium on the death penalty", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Expedite the revision of the legal framework on refugees", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Provide adequate professional training and human rights education to PNC", - "values": [ - "4 - General action" - ] - }, - { - "text": "Take steps to increase the participation of women in government", - "values": [ - "4 - General action" - ] - }, - { - "text": "All measures and actions taken to effectively address concerns raised by the Office of the United Nations High Commissioner for Refugees (UNHCR), human rights treaty bodies and special procedures be in line with international human rights laws.", - "values": [ - "4 - General action" - ] - }, - { - "text": "Continue measures to strengthen the capacity of national human rights protection mechanisms", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Apply laws on improving the status of women in the country and their marital status", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Immediately release human rights defenders and other prisoners of conscience, particularly those detained and imprisoned for participating in peaceful demonstrations since March 2011", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Implement a plan to combat violence against women and to guarantee equal rights, abrogating the legal provisions that prohibit women from borrowing, signing contracts, opening bank accounts or applying for a passport without their husband's authorization ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Decriminalize homosexual relations and practices-consensual same-sex activities between adults and outlaw discrimination on the basis of sexual orientation", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Include women in high-level decision-making positions ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Develop and implement a national action plan for human rights in order to framework a systematic and comprehensive approach to the promotion and protection of human rights ", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Strengthen measures to eradicate patriarchal stereotypes against women, including through education and awareness programs", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Do everything possible to ensure gender equality in the country", - "values": [ - "4 - General action" - ] - }, - { - "text": "Expedite the enactment of the proposed Women Empowerment and Gender Equality Bill", - "values": [ - "4 - General action" - ] - }, - { - "text": "Improve access to education for marginalized groups in order to improve social and economic conditions for them. One group that may benefit from this are the Harratin", - "values": [ - "4 - General action" - ] - }, - { - "text": "Criminalize the corporal punishment of children in all circumstances and places", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Continue its efforts in improving human rights in the country, especially education of girls", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Put in place measures aimed at integrating minorities, reducing their vulnerability to exploitation and discrimination and guaranteeing their access to work in accordance with their educational qualifications and professional experience ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Extend the rights enjoyed by traditionally established religions to believers of non-traditional religions, and to enable them to carry out their peaceful activities free from Government interference", - "values": [ - "4 - General action" - ] - }, - { - "text": "Take concrete steps to create and maintain a safe and enabling environment for human rights defenders", - "values": [ - "4 - General action" - ] - }, - { - "text": "Repeal administrative measures that promote acts that undermine human rights, such as incentives for the military in accordance to the number of deaths inflicted in combat.", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Further strengthen its efforts to promote equality, non-discrimination and tolerance through the monitoring of racially motivated violence and inclusion of human rights education in school and university curriculum ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Consider aligning national laws, including customary laws with the provisions of international human rights instruments to which Togo is a party ", - "values": [ - "3 - Considering action" - ] - }, - { - "text": "Intensify executive and legislative efforts to eliminate the practice of female genital mutilation ", - "values": [ - "4 - General action" - ] - }, - { - "text": "End the illegal detention of Palestinians and the torture to which they are subjected", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Investigate and vigorously prosecute crimes perpetuated against vulnerable groups, such as the disabled and persons with albinism", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Adopt concrete measures to tackle structural inequalities, occupational segregation, the gender pay gap, and to ensure equal opportunities for women in all spheres of life", - "values": [ - "4 - General action" - ] - }, - { - "text": "Make all the necessary efforts to remove the reservations from the Convention on the Elimination of all Forms of Discrimination against Women", - "values": [ - "4 - General action" - ] - }, - { - "text": "Continue to fully investigate all alleged cases of ill-treatment by the police, including during student demonstrations ", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "The delegation also reiterated Benin's commitment to the UPR as well as its commitment to continue its cooperation with all the mechanisms of the Human Rights Council", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Continue increasing assistance for vulnerable persons", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Continue taking measures to integrate international human rights laws and standards (for treaties it is a party to) into the framework of its domestic law ", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Ensure Zimbabwe's Human Rights Commission has the resources and independence to carry out its mandate in accordance with Paris Principles", - "values": [ - "4 - General action" - ] - }, - { - "text": "Launch a nationwide education and awareness campaign to prevent stigmatization of persons with albinism to ensure their security and facilitate their equal access to education and employment ", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Devise a comprehensive national strategy for the implementation of the Convention on the Rights of Persons with Disabilities", - "values": [ - "4 - General action" - ] - }, - { - "text": "Implement legislative measures regarding access to information and establish mechanisms to facilitate public access in line with best practices", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Reinforce efforts in improving conditions in the penitentiary facilities ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Continue its efforts to promote the rights of people with disabilities and ensure that persons with disabilities have equal access to all public facilities and services", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Recommended that a national commission on human rights be established in accordance with the Paris Principles in fulfilment of its voluntary pledges. ", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Acknowledge the right of refugees to return to their homes, according to the Fourth Geneva Convention", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Ratify CAT ", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Strengthen the legal and institutional framework for the promotion and protection of human rights and to continue expanding the social justice ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Consider favourably accession to the Rome Statute of the International Criminal Court", - "values": [ - "3 - Considering action" - ] - }, - { - "text": "Consider and adequately address certain legislative and administrative measures which could negatively affect the legitimate activities of NGOs ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Review criminal justice procedures to reduce the length of detention without trial and replace preliminary inquiries with sufficiency hearings in the High Court, reducing the time it takes to bring matters to trial ", - "values": [ - "3 - Considering action" - ] - }, - { - "text": "Withdraw reservations to the Convention against Torture", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Increase its investment in education so that future generations are better able to engage in the social and economic development of the country and to further take steps to eradicate corporal punishment in schools", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Ensure and protect the full independence and impartiality of the judiciary and guarantee that it can carry out its judicial functions without any form of pressure or interference", - "values": [ - "4 - General action" - ] - }, - { - "text": "Take necessary steps to allow individual complaints mechanisms under United Nations human rights treaties such as the Convention against Torture and Other Cruel, Inhuman or Degrading Treatment or Punishment, the International Covenant on Civil and Political Rights and the Convention on the Rights of the Child", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Move towards the ratification of the International Convention on the Protection of the Rights of All Migrant Workers and Members of Their Families", - "values": [ - "4 - General action" - ] - }, - { - "text": "Step up efforts to eliminate all forms of discrimination against women", - "values": [ - "4 - General action" - ] - }, - { - "text": "Provide the police and armed forces with clear instructions and the necessary training so that they act in accordance with international human rights norms, in particular with regard to extrajudicial executions, torture and ill-treatment, arbitrary detentions and acts of intimidation", - "values": [ - "4 - General action" - ] - }, - { - "text": "Adopt without delay urgent measures to stop torture, violence, killings and serious overcrowding and degrading conditions in the prisons in Brazil", - "values": [ - "4 - General action" - ] - }, - { - "text": "Finalize without further delay the fifth report to the Committee on Economic, Social and Cultural Rights, the sixth report to the Human Rights Committee and the third report to the Committee against Torture, overdue since 2012 ", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Accelerate the effective implementation of the Convention on the Rights of Persons with Disabilities and its harmonization at the national level", - "values": [ - "4 - General action" - ] - }, - { - "text": "Continue to implement the National Policy and National Plan of Human Rights", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Ratify and accede to the Convention against Torture and Other Cruel, Inhuman or Degrading Treatment or Punishment, the International Convention on the Protection of the Rights of All Migrant Workers and Members of Their Families and the International Convention for the Protection of All Persons from Enforced Disappearance ", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Consider the possibility of adopting the necessary measures to eliminate all discriminatory treatment and criminalization based on sexual orientation", - "values": [ - "3 - Considering action" - ] - }, - { - "text": "Ratify the core international human rights instruments, in particular the Convention on the Rights of the Child and the Convention on the Elimination of All forms of Discrimination against Women", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Swiftly adopt the necessary implementing legislation to ensure effective prevention of violence against women and punishment of the offenders", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Intensify the fight against stereotypes regarding the Roma minority and further strengthen human rights education and training for representatives of the public authorities in general and law enforcement officials in particular.", - "values": [ - "4 - General action" - ] - }, - { - "text": "Take measures to ensure the full incorporation of the provisions of the Convention on the Rights of the Child in Swedish legislation", - "values": [ - "4 - General action" - ] - }, - { - "text": "Positively consider extending a standing invitation to special procedures of the Human Rights Council ", - "values": [ - "3 - Considering action" - ] - }, - { - "text": "Enhance measures to reduce societal discrimination and incidents of violence against members of ethnic and religious minorities", - "values": [ - "4 - General action" - ] - }, - { - "text": "Consider harmonizing its civil and criminal codes with international human rights norms, particularly regarding marriage, family relations, patrimony and succession.", - "values": [ - "3 - Considering action" - ] - }, - { - "text": "Establish a national human rights commission accredited by the International Coordinating Committee", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Reinforce the legal framework for the prevention of discrimination and violence against women", - "values": [ - "4 - General action" - ] - }, - { - "text": "Cooperate with Human Rights Council special procedures and mechanisms, as well as engage in a dialogue with OHCHR with a view to ensuring respect for human rights and fundamental freedoms ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Adopt further measures, with reference to the principle of non-refoulement, to ensure granting possible requests of the Committee against Torture for interim measures in individual cases aimed at preventing the breach of provisions of the Convention against Torture.", - "values": [ - "4 - General action" - ] - }, - { - "text": "Continue its efforts to combat trafficking in persons, especially women and children", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Take necessary measures to enable women to exercise their rights without harassment, coercion, and discrimination ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Pursue efforts to fully recognize women rights, their empowerment and participation in decision-making", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Increase the number of counsels with a view to guaranteeing the right to defence for all citizens, in accordance with a 2008 Human Rights Committee recommendation", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Enact legislation that declares illegal and prohibits any organisation which promotes or incites racism and racial discrimination", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Ensure better control of the State's Security Forces, especially by promoting independent investigations into the cases of human rights violations in which they have been implicated ", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Intensify its awareness-raising activities to eradicate female genital mutilation ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Actively consider undertaking more aggressive strategies to increase the number of people with immigrant heritage in the public service, particularly the police, civil service and the judiciary, in order to better reflect the broad diversity within France.", - "values": [ - "3 - Considering action" - ] - }, - { - "text": "Strengthen the cooperation with mandate holders, even considering the extension of a standing invitation, as Brazil has ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Continue to provide adequate funding to its anti-human trafficking programmes and free legal aid system", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Intensify its poverty reduction measures including through extending its entrepreneurial scheme to cover all vulnerable groups nationally", - "values": [ - "4 - General action" - ] - }, - { - "text": "Continue to improve implementation of the Human Rights Defenders and Journalists Protection Act and the national protection mechanism at the federal and state level", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Allocate sufficient resources to strengthen public health, aiming to provide affordable and quality basic medical services", - "values": [ - "4 - General action" - ] - }, - { - "text": "Exert its utmost efforts to eradicate the persistent widespread phenomenon of child labour", - "values": [ - "4 - General action" - ] - }, - { - "text": "Continue efforts to improve health and education services to ensure equal access for all citizens", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Enact and implement laws and policies that recognize and protect human rights defenders, and ensure prompt, thorough and impartial investigations of all violations against them", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Re-engage with international human rights monitoring and assistance mechanisms by agreeing to establish an OHCHR field presence, whose mandate would allow unfettered access to monitor, investigate and report human rights violations and promote remedial measures, including criminal investigation, prosecution and capacity-building of domestic human rights mechanisms.", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Take appropriate measures to tackle practically the problem of trafficking for sexual exploitation in a comprehensive manner.", - "values": [ - "4 - General action" - ] - }, - { - "text": "Take further measures to improve access to justice for citizens", - "values": [ - "4 - General action" - ] - }, - { - "text": "Put an end to racism and racial discrimination, in particular, against the indigenous people, including demolition of buildings and discontinuation of funding to essential and municipal services in indigenous communities pursued by both federal and local governments, as well as the enforced sterilization and adoption of indigenous women and children", - "values": [ - "4 - General action" - ] - }, - { - "text": "Further strengthen human rights, particularly economic, social and cultural rights for its people, for which international cooperation and solidarity are important", - "values": [ - "4 - General action" - ] - }, - { - "text": "Continue the efforts to strengthening the capacity building of national institutions in field of human rights promotion and protection", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Continue providing human rights training within the municipalities and in schools providing general education", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Continue to prioritize poverty eradication during the implementation of the National Development Program thus laying a more solid material foundation for its people to better enjoy their human rights", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Continue to combat the culture of impunity", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Develop a long-term strategy to address food insecurity, including programmes to rehabilitate and strengthen rural infrastructure and to provide food assistance to vulnerable populations.", - "values": [ - "4 - General action" - ] - }, - { - "text": "Continue its measures on the field of strengthening of bodies involved in the promotion and protection of human rights ", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Fully align its national legislation with all obligations under the Rome Statute, including by incorporating provisions to investigate and prosecute genocide, crimes against humanity and war crimes effectively before its national courts ", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Ratify the Optional Protocol to CAT", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "The delegation reaffirmed Ethiopia's firm commitment to further strengthen the freedom of expression and peaceful assembly as well as zero-tolerance against torture. ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Improve the legal definition of children at risk of losing parental care, take measures to systematically identify children at risk, and provide adequate support and other services to prevent separation of children from their families ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Continue the work for eradication of violence against women and children, including sexual violence", - "values": [ - "4 - General action" - ] - }, - { - "text": "Accelerate the adoption and implementation of the law on the Children's Ombudsman and strengthen actions for the education and protection of vulnerable children who are begging or are not attending school", - "values": [ - "4 - General action" - ] - }, - { - "text": "Promulgate and implement as soon as possible the law amending the definition of torture and ensure that it is used to investigate complaints of torture and ill-treatment", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Continue its efforts to amend legislation and strengthen measures to deal with the problem of violence against women and girls, including honour killings, with a view to ensuring that all types of discrimination and violence against women are effectively eliminated.", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Continue to work towards improving the opportunities for women within society in order to empower them to become an important driving force for development.", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "We appreciate the Kingdom's role in facilitating hajj and omra, and we commend the efforts the kingdom is taking and recommend they continue those efforts", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Strengthen the capacity of the National Human Rights Committee in the area of impartial monitoring, investigation, and reception of allegations of torture or ill-treatment ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Introduce effective measures to prevent and eliminate discrimination and persecution on the grounds of religion or belief", - "values": [ - "4 - General action" - ] - }, - { - "text": "Continue with its international cooperation through its assistance in capacity building for human rights protection in different parts of the world ", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Continue restoring and promoting the human rights of its people, taking into particular consideration the most vulnerable groups, as it has been doing it from its last review", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Continue ensuring that living conditions in prisons are adequate for the development of the child and try to seek alternative measures to institutional confinement for pregnant women and mothers with young children ", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Ratify the Optional Protocol to the Convention on the Elimination of All Forms of Discrimination against Women, the Second Optional Protocol to International Covenant on Civil and Political Rights, the Optional Protocol to the Convention against Torture and Other Cruel, Inhuman or Degrading Treatment or Punishment", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Seek the necessary financial support, technical assistance and capacity-building from relevant UN and other international organizations to promote the right to an adequate standard of living", - "values": [ - "1 - Minimal action" - ] - }, - { - "text": "The Government of Andorra has drafted an initial technical report on the possibility of adopting the provisions of the revised European Social Charter it had not previously accepted, taking into account the legislative changes that have occurred in Andorra since it ratified the Charter in 2004. Andorra can accept this recommendation and commits itself to\nratifying new Charter provisions with a view to guaranteeing the rights of workers in accordance with the Charter.", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Continue its efforts to ensure that treatment of migrants and asylum-seekers is in accordance with relevant international standards", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Take appropriate measures to ensure that obligations under the ICRMW are incorporated into domestic laws", - "values": [ - "4 - General action" - ] - }, - { - "text": "Urgently and comprehensively bring conditions for the prison population into line with international human rights standards", - "values": [ - "4 - General action" - ] - }, - { - "text": "Establish awareness-raising programmes addressed to law enforcement forces aimed at preventing torture and other cruel, inhuman or degrading treatment, as well as efficient investigative mechanisms in order to fight against impunity in this regard ", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Fully implement its obligations under international law, including international human rights law and international humanitarian law, in particular the 1949 Fourth Geneva Convention, relating to the treatment of non-combatants", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Accede to the 1951 Refugee Convention and the 1967 Protocol thereto ", - "values": [ - "3 - Considering action" - ] - }, - { - "text": "Finalise the process of abolishing the death penalty with a view to ratifying the Second Optional Protocol of the International Covenant on Civil and Political Rights", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Continue to make efforts to further promote women's rights and eliminate discrimination ", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Provide, in accordance with its obligations under international human rights instruments, effective protection for the family as the fundamental and natural unit of society ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Provide unlimited access to ICRC to all detention facilities in the country ", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Further fight discrimination of persons with an immigrant background ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Intensify its efforts to ratify the Optional Protocol to the Convention against Torture, including by holding multi-stakeholder consultations on a possible national preventive mechanism model most suitable for South Africa", - "values": [ - "4 - General action" - ] - }, - { - "text": "Submit its overdue report to the Committee on Economic, Social and Cultural Rights and the Committee against Torture", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Consider early ratification of the newest OP to CRC on a communications procedure", - "values": [ - "3 - Considering action" - ] - }, - { - "text": "Extend a standing invitation to United Nations special procedures ", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Encourage and strengthen cooperation and coordination with civil society and the NGOs in the field of human rights", - "values": [ - "4 - General action" - ] - }, - { - "text": "Continue with its efforts for the improvement of social-economic indicators through elimination of poverty and provision of better employment opportunities for its citizens ", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "De-occupy the territories of Georgia - Abkhazia and Tskhinvali region including South Ossetia, and until remaining in the territories in question, to comply with the obligation incumbent upon the occupying power by the rules of the international humanitarian law", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Commit fully to protecting and promoting indigenous rights through appropriate measures in law, policy and practice ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Continue combating all forms of child abuse", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Ratify the Optional Protocol to the Convention against Torture, and the International Convention for the Protection of All Persons from Enforced Disappearance, and make the declaration provided for in article 22 of the Convention against Torture ", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "More actively confront the crimes against national minorities", - "values": [ - "4 - General action" - ] - }, - { - "text": "Ensure, in law and practice, all guarantees of due process of law established in ICCPR, including the principle of presumption of innocence, as well as avoiding any punishment for the exercise of other rights recognized under the Covenant, such as freedom of expression and the right to association and assembly", - "values": [ - "4 - General action" - ] - }, - { - "text": "Pass comprehensive legislation on access to public information and adopt a law covering the three branches of power", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Revise the Bosman act to ensure that all nationals, regardless of their birth place, are not excluded from living and working in the Netherlands", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Pursue effective policies in combating violence against women and children.", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Declare a moratorium on the death penalty with the aim of its abolition, commute all death sentences to prison sentences, and sign and ratify the Second Optional Protocol to ICCPR", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Request technical and financial assistance from relevant United Nations institutions to reactivate the innovative hospital project concerning the ill treatment of children, which has been suspended owing to a lack of resources ", - "values": [ - "1 - Minimal action" - ] - }, - { - "text": "Allow abortion, especially in cases where the pregnancy involves a risk to the life or health of the pregnant women, or is the result of rape or incest", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Encourage States that had not yet done so to become parties to the major human rights instruments and, accordingly, to comply with their obligations thereunder", - "values": [ - "4 - General action" - ] - }, - { - "text": "Strengthen civil society to participate in humanitarian assistance and in major sports events", - "values": [ - "4 - General action" - ] - }, - { - "text": "Share experiences and good practices with other countries in the areas of development and the protection of human rights", - "values": [ - "1 - Minimal action" - ] - }, - { - "text": "Consider establishing a national human rights institution", - "values": [ - "3 - Considering action" - ] - }, - { - "text": "Ratify the Optional Protocol to the Convention on the Elimination of All Forms of Discrimination against Women and the Optional Protocol to the Convention against Torture", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Fully align the institutional and operational framework of the national Human Rights Commission to be in line with the Paris Principles", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Continue to take further action to ensure equal enjoyment of human rights by Roma people.", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "End the policy of mandatory detention for all unauthorized arrivals, ensure that detention is only applied as a last resort, establish statutory time limits for detention and ensure access to an effective judicial remedy to review the necessity of detention", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Consider ratification of the International Covenant on Economic, Social and Cultural Rights, and the Covenant on Civil and Political Rights and its optional Protocols", - "values": [ - "3 - Considering action" - ] - }, - { - "text": "Establish an independent National Human Rights Institution which conforms to the Paris Principles, either by strengthening the existing Ombudsman's Office or through the creation of a new body ", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Limit media ownership concentration and ensure media pluralism", - "values": [ - "4 - General action" - ] - }, - { - "text": "Guarantee the right of all people to live and develop in accordance with their self-perceived gender identity", - "values": [ - "4 - General action" - ] - }, - { - "text": "Strengthen the protection framework for the rights of the child, particularly through measures to prevent child abuse, exploitation and violence against children, as well as facilitating access to justice and legal aid, and medical and psychological support to victims", - "values": [ - "4 - General action" - ] - }, - { - "text": "Continue efforts in strengthening its institutional capacity to promote and protect human rights, in particular to accelerate the establishment of the office of the undersecretary for human rights, and to formulate a comprehensive national human rights plan of action ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Ratify and implement ICCPR and ICESCR as soon as possible without reservations ", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Establish a moratorium on the death penalty as a first step towards abolition of the death penalty", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Consider acceding to CEDAW", - "values": [ - "3 - Considering action" - ] - }, - { - "text": "Put in place a comprehensive strategy, including legislative measures to eliminate practices and stereotypes that discriminate women, such as polygamy and the bride price ", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Issue a standing invitation to the human rights special procedures ", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Create an independent Human Rights Institution in accordance with the Paris Principles ", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Establish specific legislation to fill the legislative gap of a lack of specific legal provisions to prohibit domestic violence and marital rape ", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Continue its efforts in ensuring the improvement of the status of women, including through intensifying the implementation of programmes and activities for the empowerment of women and enhancing women's participation in the political field", - "values": [ - "4 - General action" - ] - }, - { - "text": "Invest adequate financial and manpower resources to improve its prison conditions, to the level required by its human rights obligations ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Take additional measures to ensure the integration of indigenous peoples in public institutions", - "values": [ - "4 - General action" - ] - }, - { - "text": "Continue its efforts to maintain the accomplishments already made in the field of human rights", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Allow for a mission to the Office of the Prosecutor General of the International Criminal Court to undertake investigations into acts committed in the country after the events of September 2002 ", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Ratify the CCPR, CESCR, Third Optional Protocol of CRC and CAT", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Establish a moratorium on the use of the death penalty with a view to its total abolition ", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Enter into other commitments considered necessary for the promotion, protection and enforcement of human rights in the country ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Explicitly codify and penalize sexual exploitation of children. ", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Strengthen the mechanisms to ensure the safe and independent participation of civil society organizations in human rights discussions in the country and in their cooperation with the various United Nations mechanisms", - "values": [ - "4 - General action" - ] - }, - { - "text": "Deepen actions against discrimination and violence suffered by lesbian, gay, bisexual, transgender and intersex persons, in particular, ensure access to courts as well as the investigation and punishment of these acts, and strengthen the assistance provided to victims", - "values": [ - "4 - General action" - ] - }, - { - "text": "Take concrete steps towards the abolition of the death penalty", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Make all efforts to guarantee and to protect the rights and freedoms enshrined in the international instruments the country is a party to", - "values": [ - "4 - General action" - ] - }, - { - "text": "Continue the elaboration and implementation of national action plans in order to improve the situation of children and the protection of their rights ", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Implement the provisions in the African Union's Maputo protocol into its national legislation, including women's rights to medical abortion in cases of sexual assault, rape, incest and where the life of the mother or the foetus is in danger", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "See to it that its action within and outside the Council was based on the commitments it has undertaken and on principles of objectivity, impartiality and non-selectivity", - "values": [ - "4 - General action" - ] - }, - { - "text": "Take all legislative and policy measures necessary to guarantee full equality between men and women", - "values": [ - "4 - General action" - ] - }, - { - "text": "In the context of the tragic events relating to the discovery of the bodies of 11 young people in the area of Ocana, and cases known as false positives, expedite the designation of persons within all military units, to be responsible for promptly dealing with claims against any actions by units, or the individuals that compose them, which are contrary to fundamental rights.", - "values": [ - "4 - General action" - ] - }, - { - "text": "Strengthen its legislation as well as promptly implement existing legislation, with a view to promote and protect women's rights", - "values": [ - "4 - General action" - ] - }, - { - "text": "Eliminate obstacles and restrictions to freedom of assembly and peaceful protest, and adopt a law that guarantees the free enjoyment of these freedoms, in conformity with the International Covenant on Civil and Political Rights", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Immediately release Zinaida Mukhortova from forced psychiatric detention and ensure that involuntary detention on mental health grounds should only be possible in exceptional circumstances clearly defined in law, and based on a determination by qualified health care professionals", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Abolish the death penalty for all crimes, and sign and ratify the Second Optional Protocol to the International Covenant on Civil and Political Rights ", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Complete its process to conform the National Human Rights Commission to the Paris Principles ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Consider signing and ratifying the Optional Protocol to the International Covenant on Economic, Social and Cultural Rights", - "values": [ - "3 - Considering action" - ] - }, - { - "text": "Provide adequate funding and adopting the necessary measures for the effective implementation of the ICRPD that Guatemala had ratified in 2009", - "values": [ - "4 - General action" - ] - }, - { - "text": "Continue to support programmes that ensure religious coexistence and working on developing an interreligious dialogue", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Consider issuing a standing invitation to all Special Procedures mandate-holders ", - "values": [ - "3 - Considering action" - ] - }, - { - "text": "Consider the possibility of acceding to the International Covenant on Economic, Social and Cultural Rights, the International Convention on the Protection of the Rights of All Migrant Workers and Members of Their Families", - "values": [ - "3 - Considering action" - ] - }, - { - "text": "End conscription of persons for indefinite periods into national service and cease forced participation of persons in the citizen militia and other national projects ", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Take the necessary steps to establish the National Human Rights Institution", - "values": [ - "4 - General action" - ] - }, - { - "text": "Establish a National Human Rights Institution in keeping with the Paris Principles", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Strengthen the judiciary in order to fight against impunity and all forms of crime", - "values": [ - "4 - General action" - ] - }, - { - "text": "Establish a national institution for the protection of human rights in conformity with the Paris Principles", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Pursue its efforts, and continue, to guarantee all human rights - and accede to the International Convention on the Protection of the Rights of All Migrant Workers and Members of Their Families ", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Continue undertaking measures to reduce environmental degradation as an essential requirement to reduce the impact of poverty", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Continue its efforts in the domain of development aid, in particular in favour of the least developed countries ", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Strengthen efforts to ensure respect for fundamental human rights", - "values": [ - "4 - General action" - ] - }, - { - "text": "Ensure specific human rights training and education for judicial staff and prison officers and ensure their full accountability for any violation.", - "values": [ - "4 - General action" - ] - }, - { - "text": "Continue to ensure the effective implementation of its legislation and policies to prevent and combat human trafficking", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Adopt a national strategy to combat violence against women and to ensure equal participation of women in political and social life ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Ratify step by step the outstanding core international instruments, namely the Second Optional Protocol to the International Covenant on Civil and Political Rights, the Optional Protocol to the Convention against Torture and other Cruel, Inhuman or Degrading Treatment or Punishment, the , the Optional Protocol to the Convention on the Elimination of All Forms of Discrimination against Women ", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Combat impunity on crimes against judges by creating a protection system for judges under threat ", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Repeal sections of the Penal Code that criminalize sexual activities between consenting adults of the same sex and withdraw the two bills currently before the House of Representatives that would further criminalize same-sex relations", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Protect the right to freedom of assembly and of expression", - "values": [ - "4 - General action" - ] - }, - { - "text": "Endorse the final outcome document approved during the Durban Review Conference. ", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Ensure that the rights of minorities are fully protected.", - "values": [ - "4 - General action" - ] - }, - { - "text": "Continue the efforts to achieve an effective registration of all births, with special attention to children belonging to ethnic minorities", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Make easier the living conditions of the Batwa community which are of concern, particularly with regard to their access to land", - "values": [ - "4 - General action" - ] - }, - { - "text": "Continue efforts to combat criminal violence and to investigate and adjudicate all accusations of human rights violations, in particular regarding extrajudicial executions and the excessive use of force by civilian authorities", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Criminalize all forms of corporal punishment against children and sign and ratify the Optional Protocol to CRC on a communications procedure ", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Enhance equal access to social services for all people, paying special attention to the needs of vulnerable communities living in remote regions ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Step up its efforts to prevent and combat trafficking in persons and protect and assist trafficked victims", - "values": [ - "4 - General action" - ] - }, - { - "text": "Continue to implement actions aimed at reducing poverty and inequality", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Take steps for free, compulsory and inclusive, quality education for all children", - "values": [ - "4 - General action" - ] - }, - { - "text": "Investigate and prosecute all those responsible for the mistreatment or abuse of detained persons in Iran, including during the attacks on prisoners in Evin Prison in April 2014 and in the wake of the 2009 presidential election", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Take concrete measures to ensure free reporting by the media and ensure due process and the independence of the justice system", - "values": [ - "4 - General action" - ] - }, - { - "text": "Continue its efforts to ensure the enrolment of all segments of the society in education ", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Increase its un-earmarked contribution to the OHCHR", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Adopt and implement a national protocol to guarantee equal access to therapeutic abortion for women and girls as part of sexual and reproductive health services", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Develop public policies aimed at guaranteeing the rights of persons with disabilities, mainly in education, professional development and participation in social life on an equal footing", - "values": [ - "4 - General action" - ] - }, - { - "text": "Strengthen policies for the protection of the rights and interests of children ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Recognize explicitly the legitimacy of the work of human rights defenders and ensure for them a safe environment without fear of intimidation or reprisals, investigate threats or attacks against them and bring those responsible to justice", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Continue with its on-going efforts to address its human trafficking situation which has implications beyond Thailand's borders ", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Study the possibility of becoming a party to the following international instruments: ICESCR and ICRMW ", - "values": [ - "3 - Considering action" - ] - }, - { - "text": "Continue to seek the assistance of the international community to help upgrade its educational system, improve health services and provide adequate housing, drinking water and sanitation to its citizens", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Maintain actions aimed at improving the public health system of the country, including in the area of HIV/AIDS", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Continue to promote women's emancipation in all spheres of society ", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Establish a national institution for human rights, in conformity with the Paris Principles", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "The counter-terrorism law that is to replace the current state of emergency take into account the recommendations made by the Special Rapporteur on the promotion and protection of human rights and fundamental freedoms while countering terrorism", - "values": [ - "4 - General action" - ] - }, - { - "text": "Adopt and implement the plan of action against early marriages", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Continue combating terrorism resolutely to ensure the Iraqi people to enjoy the rights in safety", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Strengthen its actions to eliminate forced and premature marriage", - "values": [ - "4 - General action" - ] - }, - { - "text": "Ensure that the police and National Bureau of Investigation pursue serious rights violations allegedly committed by military and police personnel", - "values": [ - "4 - General action" - ] - }, - { - "text": "Continue to implement the national programme to eradicate the legacy of slavery, with a focus on impartial and effective investigations into all allegations of slavery and slavery-like practices", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Align policies to ensure access to land and water for pastoralists with the African Union Framework on Pastoralism and conclude regional agreements to facilitate cross-border pastoralism", - "values": [ - "4 - General action" - ] - }, - { - "text": "Make all efforts to apply existing national legislation in order to reduce the current rate of FGM in the country, including effective criminal prosecution of the practice, appropriate awareness campaigns, and education in schools", - "values": [ - "4 - General action" - ] - }, - { - "text": "Grant the Special Rapporteur on the situation of human rights in Myanmar unimpeded access to Rakhine state, including the internment camps, as well as any other requested meetings countrywide on her next visit", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Further pursue efforts aimed at promoting the protection of the rights of migrant workers and share its pioneering experience in international forums ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Accede to OP-CAT ", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Review its legislation to bring the criminal responsibility of children in line with international standards", - "values": [ - "3 - Considering action" - ] - }, - { - "text": "Ratify the Second Optional Protocol to the ICCPR and the Optional Protocol to the ICESCR ", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Continue to strengthen educational policies.", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Continue with the implementation of its National Development Plan (NDP) which promotes greater public-private partnership and the continuation of its export-led and market-driven development ", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Pay particular attention to children belonging to vulnerable groups, including children with disabilities and from minority communities ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Step-up measures to effectively combat racism and xenophobia while inculcating respect, tolerance and intercultural understanding, especially in schools", - "values": [ - "4 - General action" - ] - }, - { - "text": "Consider issuing a standing invitation to United Nations human rights special procedures ", - "values": [ - "3 - Considering action" - ] - }, - { - "text": "Implement the recommendations of the UN Panel of Experts on accountability, bringing all those allegedly responsible for violations of international human rights law and international humanitarian law to justice in compliance with international standards", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Strengthen its policy for the full guarantee of the rights of the child, with attention to the implementation of the Guidelines for the Alternative Care of Children, according to resolution 11-7 of the Human Rights Council and resolution 64-142 of the General Assembly ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Continue its efforts to ensure the effective representation of all minority groups in the highest decision-making positions", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Enhance education and awareness-raising to ensure maximum respect for the rights of girls", - "values": [ - "4 - General action" - ] - }, - { - "text": "Expand actions to combat violence against women as well as stereotypes, especially through outreach campaigns and bolstering the relevant national plans and programmes", - "values": [ - "4 - General action" - ] - }, - { - "text": "Finalise the National Action Plan on the Rights of the Child and address, as a matter of priority, the issue of unaccompanied children", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Continue to increase spending on education in order to improve coverage and quality of education with the special attention to the right to education of the vulnerable groups, including poor students, girls and children with disabilities", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Consider establishing a national human rights institution in conformity with the Paris Principles", - "values": [ - "3 - Considering action" - ] - }, - { - "text": "Intensify its efforts to prevent and combat violence against children and other members of vulnerable groups", - "values": [ - "4 - General action" - ] - }, - { - "text": "Continue to implement policies and programmes to promote gender equality and to provide more opportunities for women to improve their social, economic and political standing in society", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Continue efforts to make education more accessible through a compulsory primary education policy ", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Take measures to improve women's participation in the political process and the various aspects of life ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Take steps to tackle the current culture of impunity and ensure that high-level cases of alleged corruption are brought to court and processed appropriately ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Finalize the ratification process of relevant international conventions to which the country is not yet a party", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Consolidate the experience of regionalization and continue the participation of youths and women in all the regions of the Kingdom, including the southern provinces", - "values": [ - "4 - General action" - ] - }, - { - "text": "End the trial of civilians in military courts and ensure that all civilians are tried before civilian courts and are granted the right to fair trial and to bail", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Fully align its national legislation with all obligations under the Rome Statute, including by incorporating provisions on full and prompt cooperation with the ICC ", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Move on speedily to the ratification and/or application of human rights instruments, particularly the Convention on the Elimination of All Forms of Discrimination against Women", - "values": [ - "4 - General action" - ] - }, - { - "text": "Intensify its efforts to protect individuals from racism, xenophobia and hate crimes by encouraging reporting and ensuring proper recording of hate crimes as well as ensuring that bias movements are fully taken into account in the investigation, prosecution and sentencing of offences. All victims of hate crimes must have access to justice", - "values": [ - "4 - General action" - ] - }, - { - "text": "Establish an official moratorium on executions and abolish the death penalty for all crimes", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Consider ratification of the Convention against Transnational Organized Crime and its Palermo Protocol ", - "values": [ - "3 - Considering action" - ] - }, - { - "text": "Promptly adopt measures, as the Council of Europe Commissioner for Human Rights recommends, that would effect the return of internally displaced persons in all areas where it exercises effective control ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Continue its ongoing efforts to raise birth registration levels through the revision of the Code for Civil Registry in line with the recommendation made by the Committee on the Rights of the Child ", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Complete the elaboration of the National Action Plan on the Rights of the Child and address, as a matter of priority, the issue of unaccompanied children", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Increase the efforts to conduct open and transparent dialogue with civil society on any changes to legislation which affect the rights of citizens ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Accede to the Convention on the Rights of Persons with Disabilities, especially because this country [Botswana] already applies the provisions of this Convention in practice, as demonstrated by its commitment to submit a voluntary report", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Adopt and effectively implement legislation to ensure equal treatment of persons with disabilities in accordance with CRPD, as well as prohibit discrimination based on sexual orientation and gender identity and provide effective protection to LGBT persons", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Recommended that all possible measures be taken to eliminate torture and other inhuman or degrading treatment or punishment, including that all mechanisms such as the PPCA and Victim Support Unit are fully implemented.", - "values": [ - "4 - General action" - ] - }, - { - "text": "Put in place measures to improve the infrastructure of educational institutions as well as increase the access of children to education", - "values": [ - "4 - General action" - ] - }, - { - "text": "Continue to enhance dialogue and propagate tolerance among people ", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Facilitate the development of concrete action plans and determine deadlines in order to put an end to the recruitment of children, in accordance with the recommendations of the Special Representative of the Secretary-General for Children and Armed Conflict", - "values": [ - "4 - General action" - ] - }, - { - "text": "Sign and ratify the International Convention on the Protection of the Rights of All Migrant Workers and Members of their Families and accede to its principles", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Identify its needs in terms of technical and financial assistance to improve prison conditions and consequently seek assistance from relevant international institutions and programmes competent in this area ", - "values": [ - "1 - Minimal action" - ] - }, - { - "text": "Continue to promote education and human rights training at the national level", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Continue its efforts to strengthen the institutional and normative human rights framework with regard to freedom of expression", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Step up measures to eliminate discrimination against vulnerable groups, especially women", - "values": [ - "4 - General action" - ] - }, - { - "text": "Take steps to enhance the treatment of children born in prison, as well as pregnant women prisoners ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Continue to address and implement its plans of action in relevant areas of human rights in particular on the promotion and protection of minorities and other vulnerable groups", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Ensure effective and independent investigations into all reports of extrajudicial executions and ensure that reports of killings, threats, attacks and acts of intimidation against human rights defenders and journalists are thoroughly and promptly investigated and those responsible brought to justice", - "values": [ - "4 - General action" - ] - }, - { - "text": "Continue efforts for the empowerment of women, children and the underprivileged sections of the society ", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Set up strategies and establish mechanisms which encourage victims of marital violence to denounce their aggressors before the judicial authorities ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Continue efforts aiming at ratifying the International Convention for the Protection of All Persons from Enforced Disappearance ", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Continue to redouble efforts to guarantee full enjoyment of the right to freedom of assembly and peaceful association, investigating complaints as to excessive use of force on the part of State security agents against social activists, human rights representatives as well as representatives of the trade unions", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Continue with efforts aimed at promoting truth, justice, memory and reparation for the serious human rights violations committed between 1974 and 1999 ", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Ratify the International Convention on the Elimination of All Forms of Racial Discrimination", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Finland is committed to present a voluntary interim report on the progress made in implementing the UPR recommendations to the Human Rights Council in 2014.", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Strengthen and implement the effective protection and full integration into society, of migrants, refugees, asylum seekers and minorities, including the commitments of the New York Declaration for Refugees and Migrants", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Ensure that multinational business enterprises and their subsidiaries are legally accountable for any violations of children\u2019s rights and human rights in general", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Ensure inclusive education, taking all the measures required to end cases of segregation of children belonging to ethnic minorities in schools", - "values": [ - "4 - General action" - ] - }, - { - "text": "Proceed quickly towards the ratification of ICCPR without reservations", - "values": [ - "4 - General action" - ] - }, - { - "text": "Increase the necessary efforts to guarantee the inclusion of persons with disabilities in society, with special attention to access to education", - "values": [ - "4 - General action" - ] - }, - { - "text": "Amend the Criminal Code to explicitly criminalize marital rape, to abolish provisions allowing a perpetrator of sexual violence to escape prosecution by marrying the victim (Criminal Code, article 227 bis)", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Ratify the Second Optional Protocol to ICCPR aiming at the abolition of the death penalty", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Take effective steps to ensure the implementation of the 2013 media reform legislation, including the independence of the Rwanda Media Commission, review legal provisions unduly restricting freedom of expression and the press and ensure that journalists are not harassed or intimidated", - "values": [ - "4 - General action" - ] - }, - { - "text": "Start discussions on introducing gender quotas on the boards of public limited companies.", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Fully implement school health policies and the policy on adolescent health to provide reproductive health education for adolescents and prevent teenage pregnancy", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "The Government of Kenya has committed itself to ensuring the right to adequate housing through a number of policies, legislative and programmatic interventions.", - "values": [ - "4 - General action" - ] - }, - { - "text": "Give powers to the NHRC to effectively protect human rights in accordance with the Paris principles", - "values": [ - "4 - General action" - ] - }, - { - "text": "Take steps to remedy the shortcomings related to the definition of torture and to the Criminal Procedure Code, which did not ensure that evidence obtained from torture is not invoked in any legal proceedings, to ensure conformity with the provisions of the Convention against Torture ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Enhance measures to protect the rights of children, women and other vulnerable groups", - "values": [ - "4 - General action" - ] - }, - { - "text": "Enact and enforce legislation to raise the legal age of marriage for boys and girls to 18", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Undertake further steps to preserve and promote the traditional means of livelihood of the Sami people, such as reindeer grazing and fishing ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Consider the ratification of the new third Optional Protocol to the Convention on the Rights of the Child on a communication procedure", - "values": [ - "3 - Considering action" - ] - }, - { - "text": "Prioritize and resolve past crimes, through accelerating the discussion and approval of draft laws on reparations and the memory institute", - "values": [ - "4 - General action" - ] - }, - { - "text": "Intensify its efforts and reinforce all institutions and mechanisms concerned with the reintegration of demobilized child soldiers into Chadian society", - "values": [ - "4 - General action" - ] - }, - { - "text": "Ratify the Convention for the Protection of All Persons from Enforced Disappearance and accept the jurisdiction of the Committee on Forced Disappearances.", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Ratify the Convention on the Rights of Persons with Disabilities and work to implement the Pacific Regional Strategy on Disability ", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Take further appropriate steps to support and to enhance the status of the German-speaking communities in Slovenia", - "values": [ - "4 - General action" - ] - }, - { - "text": "Ensure a climate of constructive and transparent interaction between different cultures and religions", - "values": [ - "4 - General action" - ] - }, - { - "text": "Redouble its efforts to implement the outputs of the general conference of education, training and research held in May 2010 and to seek technical assistance from relevant United Nations organizations", - "values": [ - "4 - General action" - ] - }, - { - "text": "Establish mechanisms for the identification of victims of trafficking as well as referral mechanisms and provide temporary residence permits, protection and support to all victims of trafficking ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Ensure equal treatment of all workers carrying out the same tasks", - "values": [ - "4 - General action" - ] - }, - { - "text": "Continue its efforts in the protection of children, including through the finalization of its Children's Bill aimed at consolidating the various legislation on children's rights and harmonizing all laws in line with the Convention on the Rights of the Child", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Reinforce further its efforts in the area of prevention of trafficking in human beings, with particular focus on children ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Strengthen the national human rights institution and strengthen its independence", - "values": [ - "4 - General action" - ] - }, - { - "text": "Strengthen the implementation of the recommendations of the International Commission on Access to Justice and Victims Assistance, and of those observations made by the Convention on the Elimination of All Forms of Discrimination against Women", - "values": [ - "4 - General action" - ] - }, - { - "text": "Make further efforts to ensure human rights for women and develop effective mechanisms for the monitoring, investigation and punishment of offenders in cases of violence against women", - "values": [ - "4 - General action" - ] - }, - { - "text": "Pursue reforms aimed at further protecting the media from undue political interference", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Adopt and ensure effective implementation of existing legislative proposals to improve conditions in prisons in line with international standards", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Consider formalizing a moratorium on death penalty and consider the abolition of capital punishment", - "values": [ - "3 - Considering action" - ] - }, - { - "text": "Ratify the International Convention on the Protection of the Rights of All Migrant Workers and Members of Their Families", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Adopt and implement further measures in order to address the gender wage gap, improve women's access to entrepreneurship and ensure a balanced representation of women in the labour market", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Reform the Criminal Code and the Code of Criminal Procedure in order to bring them in line with international standards, and improve all aspects of conditions of detention ", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Consider ratifying the Convention on the Political Rights of Women.", - "values": [ - "3 - Considering action" - ] - }, - { - "text": "Ratify the International Convention for the Protection of All Persons from Enforced Disappearance and harmonize the convention with the national legislation", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Give priority to achieving the objectives set by its national development strategy and in particular its commitment to ensure that women take, at minimum, 35 per cent of places in professional training programmes and 20 per cent of vacant posts.", - "values": [ - "4 - General action" - ] - }, - { - "text": "Continue to work to improve mobility and accessibility for persons with disabilities, in line with existing Lithuanian and EU regulations, and the Convention on the Rights of Persons with Disabilities", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Make available the human rights records of all units receiving US's security assistance", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Investigate all alleged crimes and hold accountable, in accordance with international standards, all those responsible for violations and abuses of human rights and humanitarian law", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Give a yearly briefing to the Human Rights Council on the follow-up to the recommendations of this universal periodic review session as a voluntary measure ", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Proceed promptly with the ratification of Additional Protocol I and II to the Geneva Conventions of 1949 ", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Contribute to an atmosphere supportive of independent and diverse media, including by encouraging all actors, including public officeholders and political actors, to condemn any attempt to intimidate the media and by fully investigating all complaints of media harassment and prosecuting those responsible", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Take all measures that guarantee the representation of minorities in social and political areas", - "values": [ - "4 - General action" - ] - }, - { - "text": "Take further measures for ensuring proper protection of rights of migrants, including migrant workers", - "values": [ - "4 - General action" - ] - }, - { - "text": "Intensify its endeavours to implement effectively the Law on the Promotion and Protection of the Rights of Persons with Disabilities ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Continue in its efforts with regard to the ratification of the Convention on the Rights of Persons with Disabilities and the Bill on the protection, autonomy and promotion of the rights and freedoms of persons with disabilities ", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Revoke reservations concerning articles 2 and 16 of CEDAW, and ensure that all women in Iraq are protected from discrimination", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Make efforts to fully guarantee freedom of expression and information, in accordance with Moldova's international obligations", - "values": [ - "4 - General action" - ] - }, - { - "text": "Continue efforts to bring its system of security certificates concerning immigration into compliance with international human rights standards", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Conduct an impartial investigation of all cases of ill-treatment and excessive use of force by law enforcement officials, including on racial grounds", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Fulfil obligations and commitments under international law to enhance efforts to combat hate crimes, especially those targeting refugees, migrants and based on religious background", - "values": [ - "4 - General action" - ] - }, - { - "text": "Consider ratifying the Optional Protocol to the CEDAW as well as the Optional Protocol to the CAT ", - "values": [ - "3 - Considering action" - ] - }, - { - "text": "Intensify its efforts to enhance the protection of the rights of vulnerable groups and persons with disabilities, particularly women and children and speed up the accession to the Optional Protocol to the ICESCR", - "values": [ - "4 - General action" - ] - }, - { - "text": "Issue a directive to the military with a view to expanding the category of humanitarian exceptions to permit human rights defenders to enter and leave Gaza for their work.", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Continue its efforts to promote access by persons with disabilities to the labor market by strengthening the system of job reserve for persons with disabilities", - "values": [ - "4 - General action" - ] - }, - { - "text": "Pursue its efforts aimed at implementing the Convention against Torture and Other Cruel, Inhuman or Degrading Treatment or Punishment, as well as its Optional Protocol ", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Ensure that the constitutional amendment prohibiting speech that would violate the dignity of the Hungarian nation cannot be used to silence criticism and limit freedom of expression as guaranteed under the International Covenant on Civil and Political Rights ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Continue its efforts to achieve the Millennium Development Goals ", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Continue to implement the provisions of the Comprehensive Peace Agreement and ensure the rule of law in the country ", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Amend the Criminal Code in order to decriminalize missionary activities and to put an end to religious persecution of non-registered religious groups ", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Ensure that the Serbian minority is not discriminated against in the provision of posts in the public sector and in real estate acquisitions or rental applications", - "values": [ - "4 - General action" - ] - }, - { - "text": "Consider an early ratification of the third optional protocol to the Convention on the Rights of the Child on a communication procedure", - "values": [ - "3 - Considering action" - ] - }, - { - "text": "Continue working with the aim to eradicate all forms of violence against women ", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Continue efforts on the international level in the fight against impunity", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Continue to ensure access to education for all and to improve the education standards to lay a firm foundation for its economic development", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Strengthen methods for combatting trafficking", - "values": [ - "4 - General action" - ] - }, - { - "text": "The Government of Somalia reiterated its commitment to engaging proactively with civil society and encouraged civil society to continue to work with the Government to support the national agenda for change.", - "values": [ - "4 - General action" - ] - }, - { - "text": "Continue to take measures to ensure freedom of the media and press freedom", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Take measures to address obstacles to accessing free education ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Provide unhindered access by the Netherlands Institute for Human Rights to places of detention to further strengthen its role in promoting human rights in the country", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Continue its effort to prevent domestic violence and further promote gender equality", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Intensify their efforts to further improve the situation concerning the protection of rights of persons with disabilities", - "values": [ - "4 - General action" - ] - }, - { - "text": "Pay more attention to the problems of discrimination against nonethnic Danes and multicultural relations", - "values": [ - "4 - General action" - ] - }, - { - "text": "Strengthen the mandate of the Ombudsman to review administrative decisions and align it with the Paris Principles", - "values": [ - "4 - General action" - ] - }, - { - "text": "Ensure inclusive campaigning before the 2015 elections and grant all political parties equal access to the media ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Take further steps to implement the national programme of family violence prevention", - "values": [ - "4 - General action" - ] - }, - { - "text": "Review the application of the associations law from 2012 so as to ensure that it strengthens the right to freedom of association, and conduct the legislative consolidation of the law accordingly", - "values": [ - "3 - Considering action" - ] - }, - { - "text": "Finalise the revision of child act in order to set up coordination mechanism related to cases of child victims trafficking", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Complete the process of adoption of the revised Law on the National Human Rights Commission so that its structure and mandate are consistent with the Paris Principles", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Raise the minimum age of criminal responsibility to an internationally accepted level, and in line with the Convention on the Rights of the Child, the Beijing rules and Riyadh guidelines", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Sign ICRMW ", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Take measures to develop an integral plan of action to combat trafficking and the sexual exploitation of women and girls, including through medical and psychological assistance to victims of these crimes", - "values": [ - "4 - General action" - ] - }, - { - "text": "Continue to strike a balance between the implementation of civil and political rights and economic, social and cultural rights.", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Expedite the establishment of a national human rights institution in accordance with the Paris Principles", - "values": [ - "4 - General action" - ] - }, - { - "text": "Continue efforts aimed at ensuring protection of the rights of persons with intellectual and psychological disabilities who require a high level of support, including through allocation of the necessary financial resources", - "values": [ - "4 - General action" - ] - }, - { - "text": "Improve on providing health care facilities to all communities in the country", - "values": [ - "4 - General action" - ] - }, - { - "text": "Amend, if necessary, the relevant discriminatory legal provision concerning the transfer of citizenship to children of women in mixed marriages", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Create wide-ranging protection against the denial of rights to persons with disabilities to facilities and equal rights", - "values": [ - "4 - General action" - ] - }, - { - "text": "Consider enactment of a national legislation on food and nutrition security", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Continue to support the family which is one of the main actors in achieving sustainable development goals in any state", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Prepare, through its National Committee for the Drafting of Human Rights Reports, the outstanding initial and subsequent periodic reports to the Committee on Economic, Social and Cultural Rights.", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Consider the possibility of ratifying the International Convention on the Protection of the Rights of All Migrant Workers and Members of Their Families", - "values": [ - "3 - Considering action" - ] - }, - { - "text": "Incorporate in the domestic law the explicit prohibition of child labour, adopt an array of measures to guarantee inclusive education and the nondiscrimination of children with disabilities in the regular education system ", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Strengthen its national human rights mechanism, including by ensuring its adherence to the Paris Principles", - "values": [ - "4 - General action" - ] - }, - { - "text": "Consider ratifying the International Convention on the Rights of All Migrant Workers and Members of Their Families ", - "values": [ - "3 - Considering action" - ] - }, - { - "text": "Enhance efforts to guarantee freedom of speech and of the press and other media, and to ensure that complaints in this regard are promptly investigated and that the perpetrators are prosecuted and punished ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Take steps to guarantee the enjoyment of freedom of expression and freedom to demonstrate ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Take advantage fully and effectively from the technical assistance provided by the international community in the field of training and capacity- building of national institutions on human rights", - "values": [ - "4 - General action" - ] - }, - { - "text": "Include specific provisions for the protection of girls in the draft law on the protection of children with a view to preventing child, early and forced marriages and criminalize attempts to marry persons below the age of 18 years, as well as sexual offences against children", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Study the possibility of adopting additional measures to fight against trafficking in persons", - "values": [ - "3 - Considering action" - ] - }, - { - "text": "Continue peace talks among the people to avoid ethnic and religious conflicts and scale up national reconciliation process in the country", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Continue the reforms to improve policies and programmes towards promotion and protection of all human rights", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Explicitly punish, by legal provisions, persons practising female genital mutilation (FGM), as well as parents or holders of parental authority, who consented to the practice of FGM ", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Investigate alleged arbitrary arrests of demonstrators and excessive periods of pretrial detention that reportedly took place following the election", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Increase the protection of victims of sexual violence by providing them with the necessary support to facilitate their psychological and physical rehabilitation ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Ensure respect of the constitutional and legislative provisions regulating custody, compensate for the shortcomings in the texts, whenever necessary, ensure that conditions of arrest, custody and detention are respected and, provide the judiciary with the means to guarantee its independence ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Ratify the Rome Statute of the ICC and accede to the Agreement on Privileges and Immunities of the ICC ", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Montenegro is strongly committed to resolving the status of DPs and IDPs and to improving their situation. ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Continue stepping up efforts to combat trafficking in human beings and adopt a separate plan of action on combating trafficking in human beings to improve coordination at the national level", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Ensure better protection of journalists and combat abuse and violence to which they are subject ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Further intensify its efforts to overcome the high disparity in income between men and women", - "values": [ - "4 - General action" - ] - }, - { - "text": "Continue to create employment opportunities and promote the development of income generating activities to uplift the poor", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Take the necessary steps, firstly, to better protect all victims of xenophobic discrimination, especially Islamophobia, and secondly, to conduct awareness campaigns to counteract amalgams between migrants, Muslims and terrorism", - "values": [ - "4 - General action" - ] - }, - { - "text": "Provide specialized training to the police forces on how to deal with situations of domestic violence", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Re-examine recent legislation that limits dissemination of certain information via the Internet, including through social media", - "values": [ - "3 - Considering action" - ] - }, - { - "text": "Adopt efficient measures to stop child labour, especially in cases in which children work in a hazardous environment", - "values": [ - "4 - General action" - ] - }, - { - "text": "Consider the reestablishment of the Council for the Prevention of Racial Discrimination, Xenophobia and Related Intolerance", - "values": [ - "3 - Considering action" - ] - }, - { - "text": "Strengthen women's participation in politics ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Adopt specific legislation to combat domestic violence, provide protection for its victims, and swiftly prosecute perpetrators of such violence ", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Take measurable steps to fully implement the Elimination of Violence Against Women law, and investigate thoroughly all suspected cases of gender based violence and violence against defenders of women's rights and bring those responsible to justice", - "values": [ - "4 - General action" - ] - }, - { - "text": "Continue and intensify efforts for further promotion of economic, social and cultural rights, including the right to development for better realization of the Millennium Development Goals", - "values": [ - "4 - General action" - ] - }, - { - "text": "Consider inviting the United Nations Special Rapporteur on human rights defenders and the Special Rapporteur on human rights defenders of the African Commission on Human Rights for a joint visit ", - "values": [ - "3 - Considering action" - ] - }, - { - "text": "Implement and enforce the changes to the Criminal Code which criminalize all forms of trafficking and raise prison sentences for anyone committing the offense of trafficking in persons ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Provide law enforcement officials more information on international human rights instruments", - "values": [ - "4 - General action" - ] - }, - { - "text": "Continue intensifying its efforts and measures to consolidate the rule of law and the national human rights protection mechanisms", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Implement the necessary measures to fulfil CRPD so there may be full realization of the rights of this important segment of the population ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Constantly monitor the implementation of the national plan for the eradication of gender-based violence against children adolescents and women, in order to ensure the proper investigation, prosecution and punishment of the persons responsible for acts of violence against women", - "values": [ - "4 - General action" - ] - }, - { - "text": "Regarding trafficking of women and girls and their sexual exploitation, to formulate a comprehensive strategy, which should include measures of prevention, prosecution and punishment of offenders and increased regional and international cooperation.", - "values": [ - "4 - General action" - ] - }, - { - "text": "Ensure effective human rights training for the protection of transgender persons", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Consider ratifying the Second Optional Protocol to ICCPR aiming at the abolition of the death penalty ", - "values": [ - "3 - Considering action" - ] - }, - { - "text": "Review the assessment regarding the absence of any racial discrimination within the country, as recommended by the Committee on the Elimination of Racial Discrimination, and adopt legislation that prohibits racial discrimination, especially against Black Africans, as well as guarantee that migrant workers are treated on a non-discriminatory basis, as recommended by the Committee on Economic, Social and Cultural Rights ", - "values": [ - "3 - Considering action" - ] - }, - { - "text": "That the various parties fully commit themselves to overcoming current difficulties and find a definitive and lasting solution", - "values": [ - "4 - General action" - ] - }, - { - "text": "Further increase its efforts to combat human trafficking ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Enact laws to protect women in employment free from any form of discrimination.", - "values": [ - "4 - General action" - ] - }, - { - "text": "Ensure protection of the right of peaceful assembly and release all persons arrested in this connection, e.g., Ms. Tashi Tao and Ms. Dhungtso in Kardze County", - "values": [ - "4 - General action" - ] - }, - { - "text": "Enact a law prohibiting torture and ratify the OP-CAT as the Uganda Human Rights Commission has recommended demonstrate real commitment by holding those accountable who have committed acts of torture and ensuring timely and adequate compensation to victims ", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Continue its efforts in maintaining social harmony ", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Grant free and unfettered access to the Special Rapporteur on the situation of human rights in the Democratic People's Republic of Korea and to all special procedures mandate-holders ", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Adhere to the Convention on the Protection of the Rights of All Migrant Workers and Members of Their Families ", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Continue its efforts in strengthening the institutional human rights system through decentralization process, in particular by establishing a number of governmental human rights institutions in all its regions", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Intensify efforts to meet the Millennium Development Goals within the remaining period", - "values": [ - "4 - General action" - ] - }, - { - "text": "Adopt legal and administrative measures to ensure freedom of movement and other basic rights of refugees, in particular, apply appropriate exemption categories for persons with specific protection needs in order to allow their continued stay in urban centres and avoid forced relocation, avoiding family separations among refugees and asylum seekers", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Extend Government funding to schools for persons with disabilities ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Respecting the core labour standards and promoting corporate social responsibility throughout Tanzania, and in particular, develop and implement measures to eliminate child labour ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Ratify the International Convention on the Protection of All Persons from Forced Disappearance.", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Take the measures necessary for the in-service training of the judges regarding judicial improvements on issues of human rights ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Ensure greater policy and institutional control over the State Security Corps and Forces in order to avoid cases of excessive use of force and abuse against detainees", - "values": [ - "4 - General action" - ] - }, - { - "text": "Investigate and prosecute perpetrators of sectarian violence and ensure victims' recourse to the judicial system", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Sign and ratify the Optional Protocols to ICCPR, ICESCR and CAT and the International Convention for the Protection of All Persons from Enforced Disappearance ", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Intensify efforts to raise awareness among the public of the importance of birth registration and the birth registration process", - "values": [ - "4 - General action" - ] - }, - { - "text": "Review the legislation on the press offences of libel and defamation with a view to ensuring full protection and realization of the freedom of expression", - "values": [ - "3 - Considering action" - ] - }, - { - "text": "Continue applying programs and measures aimed at guaranteeing universal access to quality education and health services to the population ", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Review national legislation, in particular the Nationality and Residence Act, the Penal Code and the Personal Act, so as to repeal provisions that could facilitate discrimination ", - "values": [ - "3 - Considering action" - ] - }, - { - "text": "To review the rules and regulations of the Supreme Council of the Judiciary with a view to reducing the executive branch's influence over the judiciary", - "values": [ - "3 - Considering action" - ] - }, - { - "text": "Intensify the efforts working towards the MDG5, including by withdrawing its reservation to Article 16 in Convention on the Elimination of All Forms of Discrimination against Women, and by ensuring access to information and counselling on SRHR as set out in its National Population Policy ", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Continue efforts to rebuild Somalia while taking into consideration the respect for human rights and international humanitarian law", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Strengthen further its efforts to end trafficking in women and children, and to take effective measures to prosecute and punish trafficking in persons", - "values": [ - "4 - General action" - ] - }, - { - "text": "Ensure domestic institutions protect, promote and monitor the rights of women and girls and strengthen equality between men and women by ensuring the full participation of women in policy and decision-making processes", - "values": [ - "4 - General action" - ] - }, - { - "text": "Eliminate all forms of child labour", - "values": [ - "4 - General action" - ] - }, - { - "text": "Undertake efforts aimed at protecting the rights of foreign workers and prohibiting abuses that might be practiced against them", - "values": [ - "4 - General action" - ] - }, - { - "text": "Pursue its endeavours to guarantee basic education for all citizens", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Ratify the United Nations Educational, Cultural and Scientific Organization (UNESCO) Convention against Discrimination in Education", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Allow foreign residents to vote in local elections, and take all necessary measures to ensure the enjoyment by non-citizens of human rights in general ", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Strengthen measures to contain the spread of infectious diseases in prisons and consider re-establishing substitution programs for intravenous drug users, as recommended by the Council of Europe Commissioner for Human Rights ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Respond positively to the request for a visit made by the Special Rapporteur on extrajudicial, summary or arbitrary executions and the Special Rapporteur on the situation of human rights defenders ", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Ensure that a sufficient number of safe crisis centres and shelters are available to women victims of violence, in accordance with the recommendation of the Committee on the Elimination of Discrimination against Women", - "values": [ - "4 - General action" - ] - }, - { - "text": "Stop illegal practices targeting memorials and sacred religious places of national and religious minorities", - "values": [ - "4 - General action" - ] - }, - { - "text": "Examine the possibility for creating a follow up system for international recommendations, including accepted universal periodic review recommendations", - "values": [ - "3 - Considering action" - ] - }, - { - "text": "Take effective action so that the Immigration Amendment Bill is fully accorded to the international standards in the treatment of persons in need of international protection and so it does not unfairly and arbitrarily discriminate against asylum seekers ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Issue a standing invitation to all special procedures mandate holders ", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Continue promoting women's rights in order to encourage their participation in decision-making processes", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Take concrete measures for future promotion and protection of economic, social and cultural rights, including the right to development for better realization of the MDGs.", - "values": [ - "4 - General action" - ] - }, - { - "text": "Continue efforts aimed at the elimination of harmful practices and stereotypes that discriminate against women", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Consider continuing efforts to secure and retain adequate medical personnel in hardship and marginalized areas", - "values": [ - "3 - Considering action" - ] - }, - { - "text": "Consider ratifying the Convention [ICRMW]", - "values": [ - "3 - Considering action" - ] - }, - { - "text": "Continue taking measures to improve the education system and universal access to quality education", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Amend the Nationality Law to ensure that women have the right to pass on their nationality to their children and husband", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Continue its efforts in order to counter illiteracy", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Continue promoting the work of the National Commissions for Women and for Dalit, through the reinforcement of resources that allows them to work in an efficient manner ", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Take necessary legislative measures to bring existing laws and regulations into conformity with the human rights provisions in the new Constitution.", - "values": [ - "4 - General action" - ] - }, - { - "text": "In order to strengthen implementation of its obligations under human rights treaties, Bahrain will explore the possibility of creating a working group made up of government ministries with competence for human rights to carry out coordination and follow-up activities. ", - "values": [ - "3 - Considering action" - ] - }, - { - "text": "Fully implement the OSCE recommendations concerning the reform of election regulations, in close cooperation with the Office for Democratic Institutions and Human Rights ", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Take the necessary steps, including legislative measures, to prevent and eradicate violence against women", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Reprioritize resources to increase the budget for basic education, including the provision of additional tuition assistance to orphans and vulnerable children ", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Improve identification of the victims of trafficking in human beings by setting up a coherent national mechanism of identification and referral of such cases", - "values": [ - "4 - General action" - ] - }, - { - "text": "Strengthen measures to eliminate discrimination against persons belonging to indigenous populations", - "values": [ - "4 - General action" - ] - }, - { - "text": "Allocate an appropriate amount of funds to the courts and provide adequate human and material resources to enable the judiciary to properly perform its functions ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Undertake the necessary measures to bring its national legislation in conformity with international human rights conventions", - "values": [ - "4 - General action" - ] - }, - { - "text": "Guarantee the right to freedom of expression, online and offline, to fully ensure that journalists can pursue their profession without harassment and fear of reprisals, and review its legislation to bring it in line with international human rights standards", - "values": [ - "4 - General action" - ] - }, - { - "text": "Enact laws and design plans and strategies in the area of combating racism, racial discrimination, and racial profiling and investigate relevant cases to ensure provision of reparations to victims ", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Continue supporting dialogue and international efforts to move towards a political solution, which is the exclusive responsibility of the Syrian people in their own right to self-determination without any foreign interference", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Intensify efforts to eliminate the servitude and forced labour persisting in some parts of the country", - "values": [ - "4 - General action" - ] - }, - { - "text": "Establish a national human rights institution fully compliant with the Paris Principles", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Continue strengthening services for children with disabilities and adopt policies for their inclusion in regular education ", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Investigate allegations that stop and search orders disproportionately fall on persons belonging to ethnic, religious and other minorities and introduce adequate safeguards in this regard ", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Implement the programme to combat violence against women and ensure that victims have access to health care and legal assistance ", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Continue efforts to protect children talibés against exploitation and end the practice of child begging at the national level", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Take measures to establish an official moratorium on executions with a view to abolishing the death penalty for all crimes and consider introducing appropriate constitutional provisions to warrant this", - "values": [ - "4 - General action" - ] - }, - { - "text": "Prevent and eliminate all acts of torture and accede to the Optional Protocol to the Convention against Torture", - "values": [ - "3 - Considering action" - ] - }, - { - "text": "Continue efforts to promote and facilitate school attendance, in particular among children from economically disadvantaged families, and to ensure nondiscrimination within the school environment.", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Take measures to improve the relations between all public officials and members of the Roma minority through training courses as well as increased employment of members of the Roma minority by public institutions.", - "values": [ - "4 - General action" - ] - }, - { - "text": "Adopt all the legislative and policy measures to guarantee a comprehensive inclusion of persons with disabilities in all spheres of activities to ensure the full enjoyment of their rights", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Eliminate corporal punishment as a disciplinary measure in the home and take measures to establish a complaints and investigation procedure for acts of violence against children", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Ratify the third Optional Protocol to the Convention on the Rights of the Child ", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Establish a national human rights institution to protect and promote human rights in accordance with the existing international standards ", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Modify the criminal codes with a view to harmonizing them and bringing them into conformity with international criminal law obligations and commitments in the sphere of proceedings against perpetrators of international crimes, in particular war crimes involving sexual violence", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Continue its efforts to promote the rights of the child and pursue its fight to eradicate the FGM which still persists in the country ", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Lower the amount of workers needed to form a trade union and repeal policies which result in exerting influence over the appointment of union leaders, in order to strengthen the full enjoyment of the right to freedom of association ", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Implement the report of the National Inquiry Commission and the commitments taken to fight against impunity, by prosecuting the presumed perpetrators of human rights abuses during the post-electoral crisis regardless of their political affiliation", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Amend the law "On counteracting extremist activities" to define extremism in terms of actual use of violence", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Promptly ratify the Optional Protocol to the Convention against Torture and accede to the ILO Indigenous and Tribal Peoples Convention, 1989 (No. 169)", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Improve police training in order to raise awareness against racial profiling", - "values": [ - "4 - General action" - ] - }, - { - "text": "Conclude its own procedures to ratify the Optional Protocol to the Convention on the Rights of Person with Disabilities", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Establish an effective national policy for combating trafficking in persons and establish appropriate mechanisms for the protection of its victims", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Set up effective legislative or others measures to protect women and children against domestic violence and all forms of ill-treatment", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Promote equality between men and women in the labour market, including, inter alia, equal pay for equal work and the support of domestic care and tasks", - "values": [ - "4 - General action" - ] - }, - { - "text": "Investigate, and when appropriate, prosecute perpetrators of serious crimes, including abuses perpetrated by both sides of the post-election violence, on a non-discriminatory basis and regardless of their ethnic, religious, or political affiliations, to promote national reconciliation and the rule of law", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Consider withdrawing its reservations to a number of articles of CEDAW, and also consider ratifying its Optional Protocol", - "values": [ - "3 - Considering action" - ] - }, - { - "text": "Ratify all core international human rights treaties, most notably the International Covenant on Economic, Social and Cultural Rights ", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Strengthen current measures to ensure that primary education is free and compulsory for all children", - "values": [ - "4 - General action" - ] - }, - { - "text": "Respond positively to requests from Special Procedures on the right to food, human rights defenders, adequate housing, health, extrajudicial executions and toxic waste to visit China", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Continue to implement and strengthen its policy and measures to eradicate poverty", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Establish an independent national human rights commission in compliance with the Paris Principles with a strong mandate.", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Adopt further comprehensive measures to combat domestic violence, taking into account recommendations of United Nations human rights bodies in this regard.", - "values": [ - "4 - General action" - ] - }, - { - "text": "Reinforce efforts aimed at the setting up of regional assemblies to take services closer to the rural communities", - "values": [ - "4 - General action" - ] - }, - { - "text": "Speed up the process of adopting the new Penal Code that foresees the abolition of the death penalty ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Protect the children and families of migrants and refugees.", - "values": [ - "4 - General action" - ] - }, - { - "text": "Issue a standing invitation and cooperate with Special Procedures mandate holders", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Establish a system of support for its victims and potential victims, including a network of shelters, use awareness-raising campaigns to uproot societal acceptability of violence against women, and ensure strict punishment of all its perpetrators, in particular in cases of so-called honour crimes", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Modify the penal code to legally prohibit all forms of FGM. Complement punitive measures with awareness-raising and educational activities. Consider developing an action plan to intensify efforts for the eradication of FGM", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Share its experience with others in the field of human development and poverty reduction", - "values": [ - "1 - Minimal action" - ] - }, - { - "text": "Ratify the CAT and OP-CAT", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Strengthen the impartiality of the Judicial Service Commission and ensure the independence of the judiciary", - "values": [ - "4 - General action" - ] - }, - { - "text": "Ensure equal protection of girls and boys from all forms of sexual abuse and exploitation ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Continue consulting and involving indigenous people in all debates and decision-making processes with direct impact on them ", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Allocate adequate financial means and put proper legal foundations in place in order to ensure that the concerns expressed by the National Mechanism for the Prevention of Torture are addressed", - "values": [ - "4 - General action" - ] - }, - { - "text": "Intensify its efforts to pass a law on associations", - "values": [ - "4 - General action" - ] - }, - { - "text": "Amend Section 44 of the Non-Governmental Organizations Act, 2016, to ensure its compliance with the national constitutional requirement that every criminal offence be well defined and adopt NGO Act regulations to enable and protect the rights to freedom of expression, peaceful assembly and association, both online and offline", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Share their experiences in the judicial reforms with other States", - "values": [ - "1 - Minimal action" - ] - }, - { - "text": "Repeal ordinance 44 on regulating administrative justice, which authorizes administrative detention, house arrest or detention in special protection centre and psychiatric facilities for two-year renewable periods without trial.", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Adopt additional positive steps to enhance the economic and social situation of persons with special needs and the poorest segments of the population ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Identify and define its needs from OHCHR and international partners in the various domains of human rights, in order for them to assist the Government in its national efforts to overcome the obstacles and challenges hindering the fulfilment of the national plans", - "values": [ - "1 - Minimal action" - ] - }, - { - "text": "Continue implementing programmes and measures to ensure the enjoyment of quality health and education services for all its population ", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Guarantee an all-embracing freedom of expression and in particular stop censorship and repressive measures against journalists and civil society activists.", - "values": [ - "4 - General action" - ] - }, - { - "text": "Ratify ILO Convention No. 169 and incorporate it into its national norms ", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Invite the Special Rapporteur on the situation of human rights defenders to visit ", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Continue to improve the knowledge of human rights among its population, especially by promoting education and awareness-raising activities on the matter ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Include domestic work among the fields covered by the Employment Act, which would significantly improve the situation of many migrant workers ", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Strengthen the legal framework for women's rights and its implementation ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Continue efforts in connection with the prevention of violence against children and the fight against child trafficking, child prostitution and pornography ", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Institute an immediate moratorium on the punishment by flogging, with a view to abolishing this practice at the legislative level", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Take measures to address the increase in racist and xenophobic violence, including the provision of courses and training on discrimination for law enforcement personnel, judicial authorities and health professionals", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "As indicated within the national report, seek technical assistance from OHCHR in the areas of effective implementation and reporting obligations of international human rights instruments ", - "values": [ - "1 - Minimal action" - ] - }, - { - "text": "Criminalise as an offence domestic violence, violence within marriage and all forms of sexual abuse, as well as prohibit and punish by law the practice of early and forced marriages", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Continue to face, with tenacity, the current and future challenges so that all its children, in particular, are free from any violation of their rights, especially their right to education", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Continue its efforts to consolidate the progress achieved in promoting women's rights and protecting human rights ", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Seek assistance and technical expertise from the OHCHR to develop a common core document so as to streamline treaty reporting ", - "values": [ - "1 - Minimal action" - ] - }, - { - "text": "Address the issue of gender-based violence, and to develop a comprehensive strategy or action plan for the prevention and elimination of all forms of violence against women and girls", - "values": [ - "4 - General action" - ] - }, - { - "text": "Continue constructive cooperation with universal mechanisms for the promotion and protection of human rights", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Take effective legal steps to eliminate child and forced marriage", - "values": [ - "4 - General action" - ] - }, - { - "text": "Take further steps to bring to justice the perpetrators of human rights violations, particularly those named in the United Nations Commission of Inquiry report into the crimes of 28 September 2009", - "values": [ - "4 - General action" - ] - }, - { - "text": "Increase the percentage of the national budget allocated to health, and extend to all persons without distinction based on gender the right to health care", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Continue the work towards the abolition of the death penalty under all circumstances and accede to the Second Optional Protocol to the International Covenant on Civil and Political Rights, aiming at the abolition of the death penalty ", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Provide all the support to the Inter-Agency Council to enable it to implement the National Directive Mechanism Rules regarding victims of human trafficking", - "values": [ - "4 - General action" - ] - }, - { - "text": "Consider eliminating the clause that expands the use of the death penalty for economic crimes", - "values": [ - "3 - Considering action" - ] - }, - { - "text": "Ensure adequate funding for the public education system and improve the availability, accessibility and quality of general education in rural areas", - "values": [ - "4 - General action" - ] - }, - { - "text": "Consider extending a standing invitation to special procedures mandate-holders ", - "values": [ - "3 - Considering action" - ] - }, - { - "text": "Ratify the Optional Protocol to the Convention Against Torture and Other Cruel, Inhuman or Degrading Treatment or Punishment", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Implement the updated National Policy on Persons with Disabilities", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Consider lifting existing reservations to the international human rights treaties", - "values": [ - "3 - Considering action" - ] - }, - { - "text": "Continue its cooperation with the international human rights mechanisms ", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Consider the withdrawal of the general reservation made upon ratification of CEDAW, whereby, in the event of a conflict between the provisions of Islamic law and those of the Convention, the former shall prevail", - "values": [ - "3 - Considering action" - ] - }, - { - "text": "Ensure the protection of freedom of opinion, and ensure that the press has margin for manoeuvre, as does civil society ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Ratify the new optional protocol to the Convention on the Rights of the Child", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Put in place appropriate mechanisms to ensure effective protection of women exposed to domestic violence, sexual harassment, spousal rape, forced marriage, crimes in the name of honour and other forms of violence ", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Strengthen its measures to effectively implement national programmes on human rights, in particular regarding their integration into the educational system ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Implement measures to fight against child labour", - "values": [ - "4 - General action" - ] - }, - { - "text": "Ratify as soon as possible the Convention on the Elimination of All forms of Discrimination against Women", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Take all measures necessary to ensure that the forthcoming elections are peaceful, free and fair, while fully guaranteeing the right to take part in the conduct of public affairs and the right to vote ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Continue implementing the good policies for improving the education infrastructure", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Take steps to further strengthen the National Human Rights Commission and the Anti-corruption Commission to ensure that they will be able to operate independently and effectively", - "values": [ - "4 - General action" - ] - }, - { - "text": "Strengthen the national plans and policies to prevent acts of discrimination and violence motivated by racial and/or religious hatred, xenophobia, homophobia and gender grounds", - "values": [ - "4 - General action" - ] - }, - { - "text": "Strengthen measures to assist victims of human trafficking, taking into account their fundamental rights and the needs of particularly vulnerable groups such as women domestic workers and sex workers", - "values": [ - "4 - General action" - ] - }, - { - "text": "Strengthen efforts to fight against female genital mutilations ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Ratify the International Convention on the Protection of the Rights of All Migrant Workers and Members of Their Families, as previously recommended", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Approve a legislative initiative that proscribes the death penalty and ratify the Second Optional Protocol to the International Covenant on Civil and Political Rights, aiming at the abolition of the death penalty", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Consider allocating an adequate budget for the agencies responsible for investigating human trafficking and for taking care of victims", - "values": [ - "3 - Considering action" - ] - }, - { - "text": "Seek technical and financial support of the international community to improve its human rights infrastructure ", - "values": [ - "1 - Minimal action" - ] - }, - { - "text": "Ensure that appropriate policies and procedures are put in place so that the National Assembly approves, implements and enforces, in a consultative and transparent manner, the six laws replacing Law 30 ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Review existing conditions of the Carmichael Road Detention Centre with input from independent observers to bring conditions up to international standards and investigate allegations of physical abuse by detention officers", - "values": [ - "3 - Considering action" - ] - }, - { - "text": "Review compliance of its criminal and civil codes with provisions on freedom of expression in the International Covenant on Civil and Political Rights", - "values": [ - "3 - Considering action" - ] - }, - { - "text": "Continue its efforts to reduce poverty and improve living conditions, particularly among vulnerable groups ", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Withdraw reservations to CEDAW", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Take steps to establish an independent, effective and well-resourced national preventive mechanism in compliance with Optional Protocol to the Convention against Torture requirements", - "values": [ - "4 - General action" - ] - }, - { - "text": "Comprehensively address harmful cultural practices, and increase the age of marriage to 18, in conformity with the provisions of the Convention on the Rights of the Child", - "values": [ - "4 - General action" - ] - }, - { - "text": "Intensify the dialogue with religious minorities with a view to fostering a better understanding of peaceful coexistence and religious tolerance ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Enact these treaties (International instruments Nigeria ratified) into its domestic legislation", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Take concrete steps towards accession to the International Convention on the Protection of the Rights of All Migrant Workers and Members of Their Families and ILO Convention No. 189", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Improve the human-rights capacity-building programme and step up efforts to promote and raise awareness of these rights.", - "values": [ - "4 - General action" - ] - }, - { - "text": "Continue its efforts for strengthening human rights infrastructure", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Encourage the legislative measures and policies necessary to ensure the protection and promotion of the rights of boys and girls, in following-up the recommendations received during the previous review cycle", - "values": [ - "4 - General action" - ] - }, - { - "text": "Intensify the efforts to eradicate domestic violence, through education and legal measures and the implementation of a plan of action ", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Ratify the Optional Protocol to the International Covenant on Economic, Social and Cultural Rights and accept its mechanisms of inquiry and communications", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Consider withdrawing its reservation to articles 76 and 77 of the International Convention on the Protection of the Rights of All Migrant Workers and Members of Their Families", - "values": [ - "3 - Considering action" - ] - }, - { - "text": "Ensure the full implementation of the National Action Plan on Female Genital Mutilation, and enact the law criminalizing this practice that had been proposed in the revision of the Penal Code two years ago ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Combat domestic violence against women and children", - "values": [ - "4 - General action" - ] - }, - { - "text": "Boost the investigative capacity of the National Independent Human Rights Commission and ensure full participation by civil society in its work", - "values": [ - "4 - General action" - ] - }, - { - "text": "Abolish the anti-human rights \u201cNational Security Law\u201c and other laws which are in contravention of international human rights standards as well as the provocative \u201cNorth Korean Human Rights Act\u201c", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Take concrete measures aimed at reducing the poverty rate and further increasing access to education and health care for all, particularly for vulnerable segments of the society including women and children.", - "values": [ - "4 - General action" - ] - }, - { - "text": "Establish a system of juvenile justice to guarantee protection of the rights of the child in this situation ", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Establish procedures and allocate resources to identify victims of trafficking in persons and provide appropriate services for them", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Continue efforts to implement the national action plan against all forms of gender-based violence", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Combat the persistence of racist stereotypes and hate speech against the Amazigh, asylum seekers, refugees and sub-Saharan Africans", - "values": [ - "4 - General action" - ] - }, - { - "text": "Continue its fight against poverty ", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Complete the process of fully implementing its obligations under the Rome Statute into domestic law, in particular by adopting provisions that allow for full cooperation with the International Criminal Court", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Release all people in administrative detention for political reasons including bishops, priests, artists, reporters, dissidents, people working to advance human rights, and their family members, and eliminate extra-judicial measures like forced disappearances", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Ratify international human rights instruments to which Colombia is not yet a party ", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Eliminate discriminatory provisions from the Constitution to adopt comprehensive anti-discrimination legislation including, inter alia, protection against discrimination based on sex or gender to strengthen the protection of persons against statelessness and to adopt measures to guarantee universal birth registration under all circumstances, including for Roma children", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "With the support of the international community, continue to fight poverty and meet the Millennium Development Goals and those of Vision 2016.", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Take measures to reduce the amount of time that defendants spend in pre-trial detention ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Repeal sections 61 and 62 of the "Offences Against the Persons Act 1861", which criminalize consensual same-sex relations", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Speed up the process to ratify the Convention against Torture and the Optional Protocol thereto", - "values": [ - "4 - General action" - ] - }, - { - "text": "Train more professional health workers to fill and carry out the work of the newly established health centres ", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Continue to improve the engagement, empowerment, education, entrepreneurship and social enterprise of youth", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Consider the abolition of the death penalty, in accordance with the Second Optional Protocol to the International Covenant on Civil and Political Rights", - "values": [ - "4 - General action" - ] - }, - { - "text": "Take targeted and efficient measures to address the discrimination and exclusion of minorities that include awareness-raising of the majority population of the need to show respect and understanding towards minorities in accordance with the fundamental principle that "all human beings are born free and equal in dignity and rights"", - "values": [ - "4 - General action" - ] - }, - { - "text": "Improve the situation of vulnerable children, particularly those living in rural and remote areas,\nand children with disabilities ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Take measures to curb incitements of hatred in the British mass media, in line with international standards", - "values": [ - "4 - General action" - ] - }, - { - "text": "Further promote multiculturalism including by taking measures against incitement of discrimination or violence, based on race or religions, and strengthening interfaith dialogue among communities", - "values": [ - "4 - General action" - ] - }, - { - "text": "Continue efforts to improve health services for all", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Investigate and fairly prosecute those implicated in torture or other forms of mistreatment", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Continue its efforts towards eliminating negative sexist stereotypes that lead to discrimination against women, both in the public and private life ", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "The RMI is committed to addressing domestic violence and other issues affecting women.", - "values": [ - "4 - General action" - ] - }, - { - "text": "Ensure the separation of children from adults detained in police stations and prisons", - "values": [ - "4 - General action" - ] - }, - { - "text": "Adopt a legal definition of discrimination against women according to the Convention on the Elimination of All Forms of Discrimination against Women", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Intensify efforts aimed at achieving health-related Millennium Development Goals including child health, maternal mortality, HIV-AIDS, malaria and other major diseases and access to safe water ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Create specific protection institutions that provide a voice and protection for the integration and development of refugees and asylum seekers", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Establish protective measures that would allow young students to re- enter the mainstream education system after childbirth", - "values": [ - "4 - General action" - ] - }, - { - "text": "Step up its efforts to protect women and girls from sexual violence in marriage", - "values": [ - "4 - General action" - ] - }, - { - "text": "Cooperate fully with the International Criminal Court ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Design and implement educational programmes promoting greater inclusiveness in classrooms ", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Enhance efforts to eliminate discrimination against Afghan women and to promote leadership and equal participation in political, peace and reconciliation processes ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Increase steps to prosecute traffickers and to identify, assist and protect victims of trafficking.", - "values": [ - "4 - General action" - ] - }, - { - "text": "Further support the development of the health sector, paying special attention to rural areas where availability, accessibility, quality and use of health services remain limited, in an effort to further promote and protect the human rights of its people ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Continue to strengthen the Office of the Ombudsman of the Ministry of the Interior, the Ombudsman of the National Security Agency and the Special Investigations Unit, so they can fulfil their mandates effectively", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Reinforce girls' education, notably in the rural areas ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Adopt and implement temporary special measures in order to accelerate the realization of women's de facto equality with men in all areas, particularly with regard to women's participation in decision-making and access to economic opportunities ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Finalize the ratification of the Convention on the Rights of Persons with Disabilities ", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Make efforts to ensure that the future generations learn the truth of history, including the issue of so-called \u201ccomfort women\u201c", - "values": [ - "4 - General action" - ] - }, - { - "text": "Adopt preventive measures, including through regional cooperation, on sexual exploitation of women, particularly minors.", - "values": [ - "4 - General action" - ] - }, - { - "text": "Adopt and implement a national plan for children that includes legislative measures, such as the prohibition of the use of children in armed conflicts ", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Establish a moratorium on the use of the death penalty, as a first step towards complete abolition of this practice and as a way of reassuring the Japanese public that adequate law enforcement does not require the state to carry out executions", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Continue constructive cooperation with United Nations human rights mechanisms", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Consider ratifying the International Convention on the Protection of the Rights of All Migrant Workers and Members of Their Families as well as ILO Convention no.189 ", - "values": [ - "3 - Considering action" - ] - }, - { - "text": "Conduct independent investigations into allegations of police misconduct, and create an independent body to investigate complaints against members of the police force", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Take measures to ensure equal access to education, especially for those living in rural areas", - "values": [ - "4 - General action" - ] - }, - { - "text": "Take effective measures to facilitate the return of Meskhetian Turks to Georgia, and to guarantee their rights ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Continue to carry out actions and programmes aimed at guaranteeing educational and health services for all", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Extend a standing invitation to all Special Procedures", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Introduce measures to promote the full and active participation of women in public life", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Continue, in cooperation with the relevant international organizations, to improve access to quality health care for all its people", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Introduce a moratorium on the execution of the death penalty", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Ensure effective implementation of the United Nations Rules for the Treatment of Women Prisoners and Non-custodial Measures for Women Offenders (the Bangkok Rules) and the United Nations Standard Minimum Rules for the Treatment of Prisoners (the Nelson Mandela Rules), particularly by promoting the capacity-building for prison personnel", - "values": [ - "4 - General action" - ] - }, - { - "text": "Provide all victims of violence against women an unhindered access to justice and ensure that all perpetrators are brought to justice in accordance with international standards ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Continue efforts to promote tolerance, harmony and respect of human rights among all communities in Myanmar, including through possible review of legal frameworks, human rights' education and interfaith dialogues and cooperation involving all segments in the society", - "values": [ - "3 - Considering action" - ] - }, - { - "text": "Strengthen the existing laws and legislation in order to combat different forms of discrimination, racism and hatred", - "values": [ - "4 - General action" - ] - }, - { - "text": "Intensify efforts in the fight against hate speech and train law enforcement officials in this respect", - "values": [ - "4 - General action" - ] - }, - { - "text": "Officially and publicly condemn all acts of torture and ill-treatment so that they do not remain unpunished, resorting to civilian and not to military justice", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Set a timeframe for the ratification of the ICCPR and the CAT", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Share its experience and best practices, with other interested countries, on the protection and consolidation of the right of persons with disabilities and exchange experience with interested countries", - "values": [ - "1 - Minimal action" - ] - }, - { - "text": "Draw up and implement a comprehensive law on trafficking in persons", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Establish more specialized juvenile courts to dispense justice ", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Introduce legislation, uniformly across the Confederation, that explicitly protects LGBT persons from discrimination, and take into account the issues faced by LGBT persons when creating a general act on equal treatment", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Speed up the review of the legal framework on migration and asylum in order to align it with the International Covenant on Civil and Political Rights", - "values": [ - "4 - General action" - ] - }, - { - "text": "Consider taking measures aimed at affecting a de facto and de jure moratorium on the death penalty", - "values": [ - "3 - Considering action" - ] - }, - { - "text": "Reform the justice system, ensuring its compliance with international standards for fair trial", - "values": [ - "4 - General action" - ] - }, - { - "text": "Strengthen its cooperation with specialized agencies and programmes of the United Nations system, including the United Nations Population Fund, the United Nations Children's Fund, the Joint United Nations Programme on HIV-AIDS and the Office of the United Nations High Commissioner for Human Rights ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Examine the possibility of ratifying other international conventions that it has not yet ratified, in particular the two International Covenants and the International Convention on the Protection of the Rights of All Migrant Workers and Members of Their Families", - "values": [ - "3 - Considering action" - ] - }, - { - "text": "Strengthen the capacity of the national human rights mechanisms", - "values": [ - "4 - General action" - ] - }, - { - "text": "Ensure that the Criminal Code is brought into line with the Second Optional Protocol of the ICCPR in respect of the abolition of the death penalty", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Develop efforts to strengthen the programme of reforms of the judicial system", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Continue to work towards increasing the representation of women in leading and decision-making positions", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Consider ratifying the International Convention on the Protection of All Persons from Enforced Disappearance", - "values": [ - "3 - Considering action" - ] - }, - { - "text": "Submit its pending periodic reports to the Committee on the Elimination of Racial Discrimination", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Set up an independent national human rights institution in compliance with the Paris Principles", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Resume cooperation with OHCHR in order to receive technical assistance in strengthening and ensuring the independence of the judiciary, guaranteeing access to justice for all citizens, and establishing mechanisms and institutions at the national level that are effective in promoting and protecting human rights and fundamental freedoms", - "values": [ - "1 - Minimal action" - ] - }, - { - "text": "Protect people with disabilities, interned in psychiatric hospitals, against acts of violence, abuse and ill-treatment, through the establishment of independent monitoring mechanisms", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Finalize the study and consideration to become a State Party to the Convention on the Rights of Persons with Disabilities , provide adequate social protection for persons with grave disabilities, and improve opportunities for socioeconomic advancement of persons with disabilities", - "values": [ - "3 - Considering action" - ] - }, - { - "text": "Enact the bill on the International Covenant on Civil and Political Rights, which lapsed in Parliament", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Carry out immediate investigations into all allegations of torture committed during the regime of Ben Ali, and ensure that victims and their families are entitled to rehabilitation and compensation ", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Establish an immediate moratorium on the death penalty, as a first step towards its complete abolition, and publish detailed statistics on death sentences and executions", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Improve the operational and financial performance of water supply enterprises to increase water safety and quality", - "values": [ - "4 - General action" - ] - }, - { - "text": "The Government facilitate a visit by the Special Rapporteur on the situation of human rights defenders ", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Continue to seek even better coordination among all the stakeholders with a view to overcoming possible problems in adopting human rights legislation", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Informs of the measures that will be enforced to support the health system", - "values": [ - "4 - General action" - ] - }, - { - "text": "Further safeguard and promote the rights of women by placing greater emphasis on the fight against domestic violence and violence against women", - "values": [ - "4 - General action" - ] - }, - { - "text": "Take further measures to provide women and men with equal opportunities in the labour market for example by improving the availability, affordability and quality of childcare ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Continue its accession to the core international human rights instruments", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Take decisive steps to combat criminal impunity", - "values": [ - "4 - General action" - ] - }, - { - "text": "Revise relevant laws and practice to ensure compliance with ICCPR including for bloggers and public access to internet", - "values": [ - "3 - Considering action" - ] - }, - { - "text": "Step up efforts to create favourable work conditions for women, youth and persons with disabilities", - "values": [ - "4 - General action" - ] - }, - { - "text": "Continue working on measures to enable women to have effective access to the justice system", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Establish a moratorium on the death penalty with a view to its abolition in the shortest delay and sign and ratify the second Optional Protocol to the ICCPR ", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Issue a bill that criminalizes defamation of religious prophets and symbols as well as criminalizes hate speech in the media which creates incitement to hatred and xenophobia", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Consider the possibility of inviting the Special Rapporteurs on freedom of expression and freedom of religion to visit the country.", - "values": [ - "3 - Considering action" - ] - }, - { - "text": "Recognize the right to safe drinking water and sanitation ", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Continue policies aimed at reducing inequalities in access to the full enjoyment of human rights by all the social groups with special attention paid to women, children and persons with disabilities ", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Encourage the inclusion of boys and girls with disabilities in the general education system ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Take immediate and concrete steps to rectify the deficiencies in Argentinian prisons, detention centres and police stations, such as overcrowding, poor access to health services, insufficient food, bad ventilation, precarious sanitary conditions and squalor", - "values": [ - "4 - General action" - ] - }, - { - "text": "Fully cooperate with the International Criminal Court. ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Sign and ratify ICESCR and the International Covenant on Civil and Political Rights (ICCPR-OP 1) ", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Continue to apply programmes and measures to ensure the enjoyment of the right to education and the right to health", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Keep on the current efforts to improve conditions of detention including limiting the overcrowdedness of prisons", - "values": [ - "4 - General action" - ] - }, - { - "text": "Consider the elaboration of a national policy for the child, which encompasses health, culture and sports", - "values": [ - "3 - Considering action" - ] - }, - { - "text": "Continue to enhance the realization of the human rights to water and sanitation, giving special attention to ensuring that all homes, health centres and educational establishments have safe drinking water and improved sanitation facilities", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Work without delay for national reconciliation and continue the efforts made in favour of the dialogue between all the components of the Central African Republic society", - "values": [ - "4 - General action" - ] - }, - { - "text": "Consider the establishment of an independent national human rights institution in conformity with the Paris Principles", - "values": [ - "3 - Considering action" - ] - }, - { - "text": "Intensify its efforts to increase access to public information", - "values": [ - "4 - General action" - ] - }, - { - "text": "Establish a moratorium on executions with a view to the total abolition of capital punishment ", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Continue to prioritize the education and health sectors in its development plans ", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "More effectively enforce the criminal penalties for official corruption", - "values": [ - "4 - General action" - ] - }, - { - "text": "Increase further pro-poor public spending with a view to implementing the poverty eradication strategy ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Continue efforts to combat cases of torture by adopting specific legislation to criminalize torture, by developing training programs for the security forces and by ensuring that perpetrators of these crimes are prosecuted", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Establish an independent institution in charge of human rights in accordance with the Paris Principles ", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Amend the existing legislation in order to address the gaps in the protection of victims of contemporary slavery, as well as to criminalize child trafficking in accordance with international standards", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Continue efforts to promote the political participation of women", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Maintain and reinforce all measures aimed at eradicating female genital mutilation, which is often related to other forms of aggression against women", - "values": [ - "4 - General action" - ] - }, - { - "text": "Remove the ban on wearing the hijab in schools and universities, and the prohibition on teachers under the age of 50 wearing beards", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Condemn and put an end to unresolved homicides and enforced disappearances", - "values": [ - "4 - General action" - ] - }, - { - "text": "Promote gender equality and protection of childhood", - "values": [ - "4 - General action" - ] - }, - { - "text": "Adopt a national strategy for improving the situation in the penitentiary system", - "values": [ - "4 - General action" - ] - }, - { - "text": "Take measures to ensure that hate crimes and discrimination based on sexual orientation or gender identity are vigorously investigated and appropriately prosecuted", - "values": [ - "4 - General action" - ] - }, - { - "text": "Take concrete steps to protect and promote freedom of expression and press freedom as outlined in the road map for ending the crisis", - "values": [ - "4 - General action" - ] - }, - { - "text": "Guarantee respect of the principles of proportionality and necessity in all cases of use of force in conformity with the Basic Principles on the Use of Force and Firearms by Law Enforcement Officials", - "values": [ - "4 - General action" - ] - }, - { - "text": "Facilitate the access to UNHCR", - "values": [ - "4 - General action" - ] - }, - { - "text": "Strengthen the measures aimed at guaranteeing and reinforcing the rights of older persons", - "values": [ - "4 - General action" - ] - }, - { - "text": "Ensure that vulnerable children and adolescents in rural communities have access to quality education and health care services", - "values": [ - "4 - General action" - ] - }, - { - "text": "Secure the effective functioning of its national preventive mechanism in accordance with OP-CAT ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Continue developing measures in order to ensure that affected Sami communities can participate actively in consultations on issues related to land rights, water and resources", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Take resolute measures to put an end, without further delay, to the continuing segregation of Roma children at school", - "values": [ - "4 - General action" - ] - }, - { - "text": "Harmonise its national legislation regarding freedom of expression with the International Covenant on Civil and Political Rights, and ensure the independence of the Regulations Commission of Communications", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Revise its decision not to participate in the Durban Review Conference on racism due to take place in April this year in Geneva", - "values": [ - "3 - Considering action" - ] - }, - { - "text": "Follow-up the Committee on the Rights of the Child's recommendations relating to the practice of female genital mutilation, and organize awarenessraising campaigns in public and in schools ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Guarantee protection and effective access to justice to women victims of violence, including by ensuring that perpetrators are brought to justice and by providing sufficient resources and targeted training to law enforcement, the judiciary and health-service personnel", - "values": [ - "4 - General action" - ] - }, - { - "text": "Pursue its commitment to the ratification of international conventions by ratifying fundamental instruments, in particular the Convention on the Rights of Persons with Disabilities", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Continue efforts to hold a national dialogue to strengthen constitutional democracy, a participant and protagonist in the Bolivarian Republic of Venezuela", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Ratify the International Covenant on Civil and Political Rights and the International Covenant on Economic, Social and Cultural Rights ", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Continue its efforts to combat violence against women", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Take steps to ensure that civil society can operate without intimidation and to ensure freedom of the press, including for independent media ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Amend its customary law so as to ensure compliance with the Convention on the Elimination of All Forms of Discrimination against Women, particularly in respect of inheritance", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Put an end to recruitment and use of child soldiers, especially on border areas, not consider them as deserters, and consider ratifying the Optional Protocol to CRC on the involvement of children in armed conflict ", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Consider ratifying the International Covenant on Civil and Political Rights and the International Covenant on Economic, Social and Cultural Rights, which are key instruments for the promotion and protection of a number of other fundamental rights", - "values": [ - "3 - Considering action" - ] - }, - { - "text": "Respect freedom of opinion and expression, as well as freedom of association and peaceful demonstration, in particular for rights defenders", - "values": [ - "4 - General action" - ] - }, - { - "text": "Strengthen the national mechanism for the implementation of the decisions of the Human Rights Committee, the Committee against Torture, the Committee on the Elimination of Racial Discrimination and the Committee on the Elimination of Discrimination against Women in individual complaints.", - "values": [ - "4 - General action" - ] - }, - { - "text": "Implement strict judicial measures on corruption and bribery, which continue to have devastating effects on socio-economic rights.", - "values": [ - "4 - General action" - ] - }, - { - "text": "Ensure that the draft amendments to the Code on Children and Adolescents explicitly prohibit corporal punishment of children in all settings, including in the home, and that they are enacted as a matter of priority", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Continue its efforts to eliminate poverty, especially in remote regions", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Strengthen measures against acts of racism and discrimination, xenophobia and intolerance", - "values": [ - "4 - General action" - ] - }, - { - "text": "Develop efficient and transparent mechanisms to prevent violence, particularly against women, girls and boys, and ensure that these mechanisms have the necessary capacity and resources to tackle this issue ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Revise the Criminal Procedure Code to allow for a more equal distribution of powers between prosecutors and defence", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Take specific measures to ensure effective investigation of acts of violence against LGBT persons and hold the perpetrators to account ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Continue to strengthen the rights of women, eliminating sexist stereotypes that lead to discrimination against women in public and private life ", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Increase efforts to convict and punish trafficking offenders, with sufficiently stringent penalties, under existing legislation and complete and enact draft legislation prohibiting the forced labour and forced prostitution of adults ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Take measures to eliminate discrimination against women, especially domestic violence ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Accelerate the process of ratification of ICRMW", - "values": [ - "4 - General action" - ] - }, - { - "text": "Improve its efforts on educational reform towards a comprehensive education policy with a particular focus on vulnerable groups, including children, person with disabilities and minorities ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Work for more diversified ownership of the media, and thoroughly investigate cases of intimidation-harassment against journalists, in order to fully ensure freedom of the press", - "values": [ - "4 - General action" - ] - }, - { - "text": "Enact legislation that prohibits all forms of human trafficking, increase law enforcement efforts, and implement standard procedures to identify victims and provide them with protection ", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Remedy the measure which resulted in weakening the protection afforded by the Comprehensive Act against Violence towards Women (Act 779) and avoid putting women in a situation where they must negotiate with their abusers ", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Continue its efforts in improving the level of education for girls ", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "The United States is committed to accountability for Homeland Security personnel involved in any wrongdoing or misconduct, including excessive use of force.", - "values": [ - "4 - General action" - ] - }, - { - "text": "In the application of the death penalty, act in accordance with the CRC (article 37), to which the United Arab Emirates is a party", - "values": [ - "4 - General action" - ] - }, - { - "text": "Intensify its on-going efforts towards improving the living conditions of its people, especially the most vulnerable groups", - "values": [ - "4 - General action" - ] - }, - { - "text": "Continue further improvement of the promotion and protection of human rights in the country", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Ensure more effective protection of children and better promotion of their well-being in every dimension, particularly with respect to trafficking and sexual exploitation, excisions, early marriages and forced labour", - "values": [ - "4 - General action" - ] - }, - { - "text": "Facilitate and ensure registration of all children born in Albania ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Strengthen efforts on the full and effective implementation of the United Nations human rights conventions that the country acceded to", - "values": [ - "4 - General action" - ] - }, - { - "text": "Take more concrete steps to improve the situation of persons with disabilities and ratify the International Convention on the Rights of Persons with Disabilities", - "values": [ - "4 - General action" - ] - }, - { - "text": "Consider revising the Married Persons Equality Act of 1996 in a way that eliminates discriminatory provisions against women, including those affecting marriage, land ownership and inheritance rights", - "values": [ - "3 - Considering action" - ] - }, - { - "text": "Improve the effectiveness of the administration of justice", - "values": [ - "4 - General action" - ] - }, - { - "text": "Consolidate support services for women victims of violence", - "values": [ - "4 - General action" - ] - }, - { - "text": "Ratify the first Optional Protocol to the International Covenant on Civil and Political Rights and sign and ratify the second Optional Protocol to ICCPR", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Guarantee the poorest people access to legal aid", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Cooperate actively with the international community and international financial institutions in the implementation framework for development cooperation programmes, in order to fully implement the protection and promotion of human rights ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Pursue, as a matter of priority, the ratification of OP-CAT, recommended in 2010 by the Committee against Torture, and include in the national Criminal Code a definition of torture as contained in the Convention against Torture ", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Provide adequate funding and staffing for the Women's National Institute and 29 other institutional offices to design and promote equal opportunities for women and their organizations, to ensure their optimal functioning ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Ensure that the national human rights commission is given financial autonomy as well as independence for its mandate, immunity and designation of its members, according to the Paris Principles", - "values": [ - "4 - General action" - ] - }, - { - "text": "Revise national legislation so as to effectively implement the provisions of the Convention on the Rights of Persons with Disabilities", - "values": [ - "3 - Considering action" - ] - }, - { - "text": "Bahrain studies and reviews the international human rights treaties to which it has yet to accede in order to assess the feasibility of acceding to them. It will seek international assistance and cooperation in order to strengthen individual and institutional capacities in this connection.", - "values": [ - "3 - Considering action" - ] - }, - { - "text": "Step up cooperation with special procedures mandate holders by responding positively to the pending visit requests and eventually consider extending a standing invitation to all special procedures mandate holders of the Human Rights Council ", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Safeguard enjoyment of human rights for all minorities, particularly Rohingyas, bring to an end discriminatory practices faced by the community, and prosecute perpetrators of violations", - "values": [ - "4 - General action" - ] - }, - { - "text": "Continue efforts to investigate human rights violations committed during the military dictatorship and provide victims and their families with the corresponding reparations ", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Take measures to further improve access to education for children with immigrant backgrounds", - "values": [ - "4 - General action" - ] - }, - { - "text": "Consolidate its justice, security and defence sector reforms to prevent the recurrence of coups d'état and ensure a sustainable constitutional order in Guinea-Bissau", - "values": [ - "4 - General action" - ] - }, - { - "text": "Continue to address violence against women including measures to ensure that domestic violence and rapes are duly reported", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Establish a timetable for signature and ratification of the International Convention for the Protection of All Persons from Enforced Disappearance, and for full recognition of the competence of the Committee on Enforced Disappearance ", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Fast track the drafting of a federal bill on prevention of violence in the family ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Take measures to ensure the unhindered exercise of freedom of expression and freedom of assembly ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Grant to the National Centre for the Prevention of Torture the necessary financial resources to ensure its functioning and independence in accordance with OPCAT", - "values": [ - "4 - General action" - ] - }, - { - "text": "Continue strengthening its successful policies developed to increase access to education and health, particularly for women and children as well as consolidating housing for families in need", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Stop the offshore processing of asylum requests", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Fully implement the NHRAP ", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Make further efforts to enhance awareness of rights of women and children as contained in the newly adopted laws", - "values": [ - "4 - General action" - ] - }, - { - "text": "Increase its efforts to provide education for all, particularly for women and children, and address inequality in education", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Ratify the Kampala amendments to the Rome Statute, if possible with a view to contributing to the activation of the jurisdiction of the International Criminal Court over the crime of aggression at the beginning of 2017 ", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Make further efforts to promote and protect the rights of expatriate workers, who make a significant contribution to the economic development and prosperity of Qatar", - "values": [ - "4 - General action" - ] - }, - { - "text": "Strengthen implementation of the human right to sanitation at the national level as well as the promotion of hygiene", - "values": [ - "4 - General action" - ] - }, - { - "text": "Repeal any law limiting the right to free expression in the media", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Ensure a free and compulsory primary education by implementing the Education Act", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Increase efforts to implement the recommendations of treaty bodies and include general non-discrimination provisions for all Israeli citizens in the framework of basic law", - "values": [ - "4 - General action" - ] - }, - { - "text": "Redouble efforts to build lasting peace in Darfur by exercising restraint, engaging with the African Union/United Nations peace process in Doha and improving the security situation in which humanitarian workers operate ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Expedite the adoption of a national action plan on food security and nutrition", - "values": [ - "4 - General action" - ] - }, - { - "text": "Attain as soon as possible the ratification of major international legal instruments already signed by Angola", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Continue to reinforce the measures of fight against xenophobia, racism and intolerance with regard to migrants and asylum seekers", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Revise its legislation and practice so that they both ensure full protection of the principle of non-refoulement.", - "values": [ - "3 - Considering action" - ] - }, - { - "text": "Take all necessary measures to ensure the safety of human rights defenders.", - "values": [ - "4 - General action" - ] - }, - { - "text": "Improve efforts aimed at increasing access to safe drinking water and reducing cases of infectious diseases.", - "values": [ - "4 - General action" - ] - }, - { - "text": "Include human rights and citizenship rights in the curriculum of schools and the training courses of law enforcement officials ", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Hand in its initial report to the Committee against Torture as soon as possible", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Take steps to strengthen the right to a fair trial and improve prison conditions through adherence to: the Basic Principles on the Independence of the Judiciary and the Basic Principles on the Role of Lawyers, the International Covenant on Civil and Political Rights, and the Standard Minimum Rules on the Treatment of Prisoners ", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Consider ratifying the Optional Protocol to the Convention against Torture and Other Cruel, Inhuman or Degrading Treatment or Punishment", - "values": [ - "3 - Considering action" - ] - }, - { - "text": "Prohibit and criminalize corporal punishment imposed on children athome and school, and increase efforts to raise awareness about the negative effects of this practice ", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Implement stricter policies aimed at ending racial violence as perpetuated against migrants and foreigners", - "values": [ - "4 - General action" - ] - }, - { - "text": "Create a national mechanism for the review of complaints of the populations concerning human rights violations", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Step up efforts to prevent sexual violence by awareness raising and education campaigns aimed at a better understanding of the notion of equality between women and men and a greater capacity to establish relationships based on mutual respect ", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Pass comprehensive and specific legislation on violence against women that contains both criminal and civil provisions", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Conform to repeated demands of the international community not to detain political prisoners and not to engage in judicial proceedings for political motives, liberalize the media sector, and guarantee freedom of expression and of the media, and reform electoral law so as to guarantee the transparency of vote counting, and, finally, lift all obstacles to the functioning of non-governmental organizations and political parties ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Adopt a law on the rights of patients, including women\u2019s rights in the field of reproductive health, and organize the training of personnel involved in the supervision of reproductive health services in order to preserve the fundamental rights of women and girls in the area of obstetrics and gynaecological health care", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Respect the universally recognized right to nationality set forth in the Universal Declaration of Human Rights, and stop revoking citizenships, while reinstating citizenships that have already been revoked", - "values": [ - "4 - General action" - ] - }, - { - "text": "Redouble efforts in harmonization of the legal system of the country", - "values": [ - "4 - General action" - ] - }, - { - "text": "Take measures to ensure the universal access to healthcare services, paying particular attention to the needs of persons living in rural and remote areas", - "values": [ - "4 - General action" - ] - }, - { - "text": "Define its priorities and needs for technical assistance, strengthening its capacities and improving the infrastructures", - "values": [ - "1 - Minimal action" - ] - }, - { - "text": "Invite to the country the Special Rapporteur on Contemporary Forms of Racism, the Special Rapporteur on the Human Rights of Migrants, and the Special Rapporteur on Torture", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Complete the ratification process of the CPED signed in 2007 ", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Continue pursuing efficient, appropriate policies to provide for a better protection of migrant workers, this most vulnerable workforce ", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "That every effort be made, given the importance of the Defender of Rights and the amalgamation of previous independent authorities, that it be given all necessary resources and powers to exercise its functions", - "values": [ - "4 - General action" - ] - }, - { - "text": "Consider investing more in health so as to reduce the high mortality rate of children, high maternal mortality, tuberculosis and other communicable and non-communicable diseases", - "values": [ - "3 - Considering action" - ] - }, - { - "text": "Strengthen the administration of mines and regional labour inspection offices, to effectively implement the related laws, in order to guarantee the relevant human rights ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Expedite the ratification of the Optional Protocols to the Convention on the Rights of the child", - "values": [ - "4 - General action" - ] - }, - { - "text": "Continue paying special attention to the implementation of national policies for marginalized or vulnerable social groups, including migrant children, aboriginals and disabled persons", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Continue to implement its macro-economic and structural policy in such a way as to ensure the enjoyment of human rights, and to achieve dignified living conditions for the entire population of Bolivia", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Take measures to ensure that the police respond to and investigate complaints regarding violence against women and that the perpetrators are prosecuted and punished, and collect data on the number of prosecutions and convictions, including at the provincial level", - "values": [ - "4 - General action" - ] - }, - { - "text": "Continue efforts to close the gender gap, especially in workforce participation and equality before the law", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Ensure that national labour legislation respects international law in this field", - "values": [ - "4 - General action" - ] - }, - { - "text": "Include freedom of expression, press freedom and access to information in the Constitution", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Allocate adequate personnel and financial resources so that the Strategy for the Protection from Domestic Violence and the Law on Juvenile Justice System can properly ensure the protection of the rights of child and women, filling those gaps that still hinder the prevention of domestic violence and other abuses, as well as the fair prosecution of their perpetrators", - "values": [ - "4 - General action" - ] - }, - { - "text": "Consider signing or ratifying, as appropriate, the following international human rights instruments: the Optional Protocols to ICCPR, CAT, the Rome Statute of the International Criminal Court and the Convention on the Prevention and Punishment of the Crime of Genocide ", - "values": [ - "3 - Considering action" - ] - }, - { - "text": "Adopt a comprehensive gender equality law ", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Make further efforts to protect children's rights, including improvements to the juvenile justice system ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Continue efforts made to upgrade the status of Yemeni women to one of equality with that of men, including with regard to their representation in society and politics, their access to education and their treatment before the law.", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Complete the judicial reform and the anti-corruption policy by reforming the Prosecutor General\u2019s Office, reforming the State Security Service according to international standards, as drawn up with the support of Euro-Atlantic institutions, and introduce, as provided for in the relevant legislation, specialized anti-corruption courts", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Adopt temporary special measures to increase the participation of women in all fields", - "values": [ - "4 - General action" - ] - }, - { - "text": "Ensure that its legal framework allows for free and independent operation of national and international media in accordance with its international human rights obligations under ICCPR ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Increase professional training and adopt guidelines for improving the conduct of police, prosecution, and courts in investigating bias-motivated crimes and cases of domestic violence", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Make further efforts to enhance integration in general through, inter alia, addressing unemployment among young and foreign-born citizens, and in particular to prevent radicalization", - "values": [ - "4 - General action" - ] - }, - { - "text": "Adopt a comprehensive approach with regard to indigenous policies as a cross-cutting pillar for all government policies, with an emphasis on those policies with greater social impact ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Adopt comprehensive measures to address the problem of overcrowding, prevent suicides among inmates and improve health conditions in prisons ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Bring its national legislation in line with its international obligations", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Continue its efforts to eradicate child sex tourism including through strengthening the relevant penal legislative frameworks", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Continue to put in place with international assistance effective programs aimed at reducing poverty, especially in the rural areas which host 80 percent of the whole population ", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Provide humanitarian assistance at the extent possible to neighbouring countries which need assistance because of man-made or natural catastrophes ", - "values": [ - "1 - Minimal action" - ] - }, - { - "text": "Promote efforts to prohibit child labour and eradicate this practice in the country", - "values": [ - "4 - General action" - ] - }, - { - "text": "Establish food self-sufficiency projects aimed at vulnerable groups and develop technical education to allow access of young people to the labour market", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Strengthen the institutional and legal framework to counter all forms of discrimination based on considerations of race, ethnic origin, religion or colour", - "values": [ - "4 - General action" - ] - }, - { - "text": "Taking into account the high level of violence which persists in the county, step up efforts to fight crime and tackle impunity with a view to ensuring the rights to life, liberty and security of its citizens", - "values": [ - "4 - General action" - ] - }, - { - "text": "Make efforts to achieve respect for all fundamental rights and freedoms of the entire population, especially women and children, and take all necessary measures to ensure the fight against impunity for the perpetrators of crimes, acts of violence and all human rights violations", - "values": [ - "4 - General action" - ] - }, - { - "text": "Withdrawal of reservations annexed to the law concerning ratification of CRC, given the evolution of Tunisian legislation and the enactment of new laws promoting the rights of the child", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Ensure the integration and effective implementation of strategies on poverty alleviation, social security, gender equality and the protection of child rights", - "values": [ - "4 - General action" - ] - }, - { - "text": "Establish a national action plan to prevent child marriage", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Disseminate widely the recommendations which will be made to Mauritius at the conclusion of this review", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Prosecute the perpetrators of tortures, extrajudicial executions and other serious violations of human rights committed in Guantanamo, Abu Ghraib, Bagram, the NAMA and BALAD camps, and those carried out by the Joint Special Operations Command and the CIA ", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Continue the positive work in combating racial discrimination and other forms of intolerance", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Invite the Special Rapporteur on the human rights of migrants and the Special Rapporteur on contemporary forms of slavery to assess the situation of domestic migrant workers", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Sri Lanka will introduce changes in both formal and non-formal educational systems to introduce and/or further develop the human rights content within these programmes with a view to nurturing a culture of human rights in society.", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Delete all discriminatory provisions against women that may exist in its national laws", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "End impunity through a thorough, independent inquiry into all human rights violations allegations, as previously recommended, including by giving access to the Commission of Inquiry", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Advance its efforts to ratify CRPD ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Give priority to measures that reduce the backlog of court cases and that provide for adequate staffing in law courts ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Consider ratifying the International Convention for the Protection of All Persons from Enforced Disappearance. and accept the competence of the Committee on Enforced Disappearances.", - "values": [ - "3 - Considering action" - ] - }, - { - "text": "Make the necessary constitutional changes to end discrimination against minorities in exercising their right to full political participation", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Strengthen its efforts to combine social security and poverty alleviation measures with the free and compulsory education programme that will enable the provision of the free education for all children", - "values": [ - "4 - General action" - ] - }, - { - "text": "Continue to promote human rights training for public officials and authorities", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Consider and concur with the recommendation of the Committee on the Elimination of Racial Discrimination to ratify the amendments to article 8, paragraph 6 of the International Convention on the Elimination of Racial Discrimination ", - "values": [ - "3 - Considering action" - ] - }, - { - "text": "In line with the recommendation of the Committee on the Elimination of Racial Discrimination, continue strengthening its efforts to limit manifestations of racism and xenophobia ", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Step up efforts to combat child labour with a view to its progressive eradication in a given time frame", - "values": [ - "4 - General action" - ] - }, - { - "text": "Consider ratification/accession to the Rome Statute of the ICC, to implement it fully at the national level and consider accession to the Agreement on Privileges and Immunities of the ICC", - "values": [ - "3 - Considering action" - ] - }, - { - "text": "Adopt appropriate legislation to ensure better protection for the freedom of expression, the freedom of the press, and the freedom of information ", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Continue efforts to ensure the implementation of the Millennium Development Goals, in particular by ensuring universal primary education and combating illiteracy, which would guarantee that the population enjoys its social and economic rights", - "values": [ - "4 - General action" - ] - }, - { - "text": "Continue efforts to promote and protect the rights of all segments of the population ", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Endeavour to establish a human rights institution in the country in accordance with the Paris Principles ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Review existing laws and policies and repeal or amend where necessary to ensure their compatibility with the right to freedom of religion or belief, in line with Indonesia's Constitution and its international obligations ", - "values": [ - "3 - Considering action" - ] - }, - { - "text": "Commute all death sentences and declare a moratorium on executions", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Sign, ratify and incorporate into national legislation key human rights treaties, such as ICCPR-OP 1, OP-CAT and CED ", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Take all measures to ensure that all trafficked people are able to access the support and services they are entitled to, including free legal aid and access to their right to compensation ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Conduct a comprehensive review and structural reform of the administration of justice with the aim of ensuring judicial independence and reducing the growing number of cases of impunity", - "values": [ - "3 - Considering action" - ] - }, - { - "text": "Ratify the Convention against Torture and its Optional Protocol to and set up a National Preventive Mechanism accordingly ", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Consider the establishment of a national human rights institution in line with the Paris Principles ", - "values": [ - "3 - Considering action" - ] - }, - { - "text": "Continue deploying efforts aimed at preventing and punishing all forms of violence against women and girls and further consolidate female representation in executive and decision-making positions", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Introduce an independent complaints mechanism on the conduct of security forces and establish a Nepal Police Service Commission ", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Establish a formal moratorium on the death penalty and work towards its abolition ", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Strengthen further the powers of the Swiss Federal Commission against Racism in line with the Council of Europe's recommendations ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Assess the implementation and effectiveness of laws aimed at ending and preventing all forms of discrimination, in particular against women and Dalits, and take concrete steps to translate anti-discrimination efforts into effective practice on the ground", - "values": [ - "3 - Considering action" - ] - }, - { - "text": "Sign and ratify the Optional Protocol to CAT and the International Convention for the Protection of All Persons from Enforced Disappearance ", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Take the steps necessary to improve the situation of deportees and asylum seekers", - "values": [ - "4 - General action" - ] - }, - { - "text": "That the principles of governance set out in the Universal Declaration of Human Rights are applied, as they are key to the sustainable management of natural resources, such as protected rainforests, and essential to the realization of fundamental economic, social and cultural rights", - "values": [ - "4 - General action" - ] - }, - { - "text": "Ensure that competent bodies investigate allegations of torture, enforced disappearance and secret detention, that those responsible are punished and that programmes providing reparation for victims are established", - "values": [ - "4 - General action" - ] - }, - { - "text": "Ratify and accede to the International Convention on the Protection of the Rights of All Migrant Workers and Members of Their Families", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Ratify the Convention against Torture and Other Cruel, Inhuman or Degrading Treatment or Punishment and its Optional Protocol, and prohibit all corporal punishment of children in all settings, including at home environment", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Establish an independent human rights commission ", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Continue the strengthening of the national human rights institutions and mechanisms", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "That the Government and responsible authorities fully investigate all cases and reports on torture in a prompt, transparent and independent manner and bring to justice those responsible", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Reinforce its criminal prosecution system with a view towards ensuring accountability of all perpetrators related to human trafficking ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Continue to develop legislation and policies to promote gender equality, placing particular focus on the participation of women in politics", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Adopt a comprehensive national action plan on the prevention of racism, racial discrimination, xenophobia and intolerance as recommended by the Committee on the Rights of the Child", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Improve conditions in Antigua and Barbuda's prisons and detention facilities ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Increase action aimed at ensuring the promotion of freedom of religion for all confessions throughout the country", - "values": [ - "4 - General action" - ] - }, - { - "text": "Develop programs allowing girls to stay in the educational system and avoid early drop-outs and the same should be provided for children with disabilities ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Improve the level of participation of women in the decision-making process ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Strengthen its educational policy to guarantee the required quality of education, accessible to all members of its population, especially the marginalized and most vulnerable groups ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Reform its legislative arsenal on this point and establish effective protection of homosexuals against discrimination and attacks", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Begin an independent investigation of all cases of arbitrary detention denounced due to UK's implication in the program of secret detention led by the United States ", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Continue to implement policies, and ensure that adequate resources are allocated, to support the integration and active participation of all persons with disabilities in Gabonese society", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Effectively implement across the country the Comprehensive Program to Prevent, Address, Punish and Eliminate Violence against Women", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Incorporate into the national legislation the definition of torture under the Convention against Torture and Other Cruel, Inhuman or Degrading Treatment or Punishment, and ensure that any statement made as a result of torture will not be used as evidence in any judicial proceeding in accordance with article 15 of the said Convention", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Continue to take further steps for enhancing access to justice", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Launch a comprehensive plan to prevent, combat and reintegrate juvenile delinquents with particular attention to the necessary adaptation of relevant laws to the age of the detainees ", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Continue its cooperation with international human rights mechanisms", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Strengthen the national framework for the reduction of all forms of discrimination, especially against persons with albinism", - "values": [ - "4 - General action" - ] - }, - { - "text": "Strengthen the independence of the judiciary, put an end to extrajudicial executions and arbitrary detentions, and strengthen the penitentiary authority", - "values": [ - "4 - General action" - ] - }, - { - "text": "Strengthen respect for the human rights of migrants, including those in detention centres", - "values": [ - "4 - General action" - ] - }, - { - "text": "Continue adopting measures to ensure the rights of the ethnic minorities living in the country ", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Bring promptly all detainees before a judge ", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Recognize the competence of the Committee against Torture as provided for in articles 21 and 22 of CAT ", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Take measures to ensure access to basic services by internally displaced persons and refugees", - "values": [ - "4 - General action" - ] - }, - { - "text": "Consider adopting a comprehensive law against human trafficking and implement its National Action Plan against Trafficking", - "values": [ - "3 - Considering action" - ] - }, - { - "text": "Accelerate the adoption of a bill on preventing and combating discrimination ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Develop comprehensive policies and programmes on gender-based violence, including training of security forces, prosecutors and judges in order to properly deal with those cases", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Consider ratifying the Convention on the Rights of Persons with Disabilities and the Convention on the Protection of the Rights of All Migrant Workers and Members of Their Families.", - "values": [ - "3 - Considering action" - ] - }, - { - "text": "Continue its efforts to reach the threshold of 5.5 per cent share of minorities in the total number of employees, in line with the Action Plan for the Employment of National Minorities in Public Administration Bodies 2011- 2014, in particular in those regions where minorities have significant presence", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Prevent discrimination against and the stigmatization of women and girls who have been the victims of such crimes and acts of violence, so that they will not be accused of adultery and be treated as criminals ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Appeal to the international community to take individual and collective initiatives to exempt the debts of Sudan ", - "values": [ - "1 - Minimal action" - ] - }, - { - "text": "Bring in humanitarian assistance, including food and medical supplies, to all civilians in need, without discrimination", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Ensure that allegations of abuse by members of security forces are investigated in a prompt, thorough, credible and impartial manner, that those responsible, including officials with oversight responsibility are disciplined or prosecuted in accordance with international standards, and that victims of abuse receive adequate compensation by the State", - "values": [ - "4 - General action" - ] - }, - { - "text": "Step up its efforts to investigate and prosecute old cases of violence against journalists in order to establish a better environment for press freedom at a national level", - "values": [ - "4 - General action" - ] - }, - { - "text": "Promote the development of a vibrant and effective civil society including by promulgating legislation in accordance with international human rights law, in particular to protect the rights of trade unions, NGO's and freedom of the media", - "values": [ - "4 - General action" - ] - }, - { - "text": "Take all appropriate steps to ensure the implementation of the Council on Women's Participation, created by Organic Law 3-2007, in view of the important role played by non-governmental organizations and other civil society organizations in the promotion of women's human rights and gender equality, as recommended by CEDAW ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Build on progress towards the establishment of an independent national preventive mechanism with the necessary mandate and resources to fulfill its obligations under the Optional Protocol to the Convention against Torture and Other Cruel, Inhuman or Degrading Treatment or Punishment", - "values": [ - "4 - General action" - ] - }, - { - "text": "Set up a criminal policy which is determined to prevent, combat and punish those responsible for violence against women and take specific measures for the victims of violence.", - "values": [ - "4 - General action" - ] - }, - { - "text": "Extend a permanent invitation to all special procedures mandate holders", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Ensure the safety and proper treatment of all persons held in custody by the police. ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Step up programmes against extreme poverty and improve the quality of life of the population ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Assess the impact of the minimum age limit for overseas spouses or fiancés on the prevention of forced marriage and review its policy in this regard ", - "values": [ - "3 - Considering action" - ] - }, - { - "text": "Continue to implement measures which allow all people to have access to health-care service", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Continue its efforts relating to human rights education and training, particularly for law enforcement agents ", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Increase its efforts at eradicating torture by launching independent and credible investigations into alleged cases of torture and holding those responsible to account and providing compensation and support to the victims", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Take all necessary measures to combat xenophobia and Islamophobia and to eliminate all forms of discrimination and violence against all migrants, Muslims and people of African origin", - "values": [ - "4 - General action" - ] - }, - { - "text": "Transmit the overdue reports to the Human Rights Committee, the Committee on the Elimination of Discrimination against Women and the Committee against Torture", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Disseminate information concerning trafficking and sexual exploitation throughout rural areas with an emphasis on boy and girl children and adolescents, with a view to prevention ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Consider acceding to ICRMW ", - "values": [ - "3 - Considering action" - ] - }, - { - "text": "Promote community awareness and enact laws to curb violence against people with disabilities and special needs ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Ensure the effective implementation of legislation to combat domestic violence", - "values": [ - "4 - General action" - ] - }, - { - "text": "The Government of Israel is committed to ensuring that these citizens [Bedouin population] enjoy modern living conditions, and to that end has adopted a comprehensive policy for the immediate improvement in their standards of living.", - "values": [ - "4 - General action" - ] - }, - { - "text": "Extend an open and standing invitation to all Special Procedures", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Strengthen the policies against the existence of early marriages of girls and polygamy, as well as the laws fighting impunity ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Ensure equal access to education of vulnerable people including women, children and persons with disabilities", - "values": [ - "4 - General action" - ] - }, - { - "text": "Continue to enhance its institutions in the field of child protection and stop their exploitation", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Adopt targeted measures to ensure the full implementation of the Convention against Torture and Other Cruel, Inhuman or Degrading Treatment or Punishment including by disseminating information to increase awareness among law enforcement personnel, by making sure that there is no impunity for acts of torture and by providing redress and adequate compensation to victims of torture", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Improve the condition of access of vulnerable persons, particularly those with disabilities, pregnant women, children and the elderly, to healthcare ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Ensure a safe environment for civil society participation, particularly the protection of persons contributing to the work of the Human Rights Council", - "values": [ - "4 - General action" - ] - }, - { - "text": "Continue addressing the problem of child abuse, inter alia, through nationwide strategies aimed at improving the protection of children against abuse and neglect ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Respect the rights of the Palestinian people to self-determination and to have their sovereign independent state with East Jerusalem as its capital", - "values": [ - "4 - General action" - ] - }, - { - "text": "Conduct a public awareness campaign regarding domestic violence, ensuring that citizens understand the protection afforded to them under the law ", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Establish a better coordination between the different institutional bodies competent in matters of non-discrimination", - "values": [ - "4 - General action" - ] - }, - { - "text": "Encourage the Government to ensure prompt and independent investigations and accountability for any violations of human rights as well as adequate compensation for the victims thereof ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Apply the commitments undertaken under the national legislation for the protection of the most vulnerable citizens, notably children, senior citizens and persons with disabilities", - "values": [ - "4 - General action" - ] - }, - { - "text": "Adopt a comprehensive anti-discrimination legislation to avoid all forms of discrimination on the basis of ethnicity, religion, sexual orientation or gender identity, language, political belief, mental or physical disability", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Follow-up the recommendation made by the Committee on the Elimination of Discrimination against Women in 2007 regarding the implementation of a strategy to modify or eliminate negative cultural practices and stereotypes that are harmful to and discriminate against women ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Improve access to affordable healthcare for all through the effective implementation of its policies and directives", - "values": [ - "4 - General action" - ] - }, - { - "text": "Continue to implement programmes and policies aimed at strengthening inter-religious dialogue and fostering tolerance and understanding", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Increase efforts to strengthen the respect of women's rights and to promote gender equality.", - "values": [ - "4 - General action" - ] - }, - { - "text": "Enhance efforts to promote gender equality and combat all forms of discrimination, including those on the basis of sexual orientation and gender identity", - "values": [ - "4 - General action" - ] - }, - { - "text": "Engage civil society in a follow-up to its universal periodic review ", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Continue its efforts to address the situation of half the prison population in the country being Maori through, among other things, its Drivers of Crime initiative and Youth Crime Action Plan recently launched ", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Establish a mechanism for comprehensive assistance for and protection of human rights defenders, including indigenous civil society activists, and include them in its design", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Slovakia remained committed to working towards the implementation of the voluntary pledges undertaken when presenting its candidature to the Council.", - "values": [ - "4 - General action" - ] - }, - { - "text": "Ensure that any legislation on NGOs is fully in line with international human rights law, including freedom of expression and freedom of association", - "values": [ - "4 - General action" - ] - }, - { - "text": "Combat extreme poverty ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Repeal all provisions in laws that criminalize same sex relations between consenting adults and ensure the rights of those persons are protected", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Legislate to remove the death penalty from its statute and commute to custodial sentences those death sentences that have already been handed down", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Continue to work to improve access to justice and economic, social and cultural rights of ethnic minorities and indigenous people", - "values": [ - "4 - General action" - ] - }, - { - "text": "Repeal provisions in its legislation which are discriminatory towards women, including in respect of inheritance, land ownership and legal capacity ", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Raising the indicator for Yemeni women's access to health care and services, facilitating their access to economic and environmental resources, encouraging their ntegration into the labour market and ensuring that they have greater access to loans to meet their needs", - "values": [ - "4 - General action" - ] - }, - { - "text": "Ratify the International Covenant on Civil and Political Rights and its protocols", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Take appropriate measures to combat racial prejudice in both the public and private media channels", - "values": [ - "4 - General action" - ] - }, - { - "text": "Continue its efforts to incorporate in-cell sanitation in all prison facilities ", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Continue its positive efforts to increase the culture of the human rights of the Libyan people ", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Release all political prisoners, including Gulgeldy Annaniazov, and account for those prisoners whose fate is unknown ", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Accelerate the legislative process for the ratification of the Optional Protocol to the Convention on the Elimination of All Forms of Discrimination against Women ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Continue taking measures aimed at improving the conditions in prisons and other detention facilities", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Review the law on state language, which discriminates against linguistic minorities in access to the labour market and ensure that appeals from those who do not master the Latvian language sufficiently are considered by state bodies, through providing them an opportunity to use their mother tongue before state bodies", - "values": [ - "3 - Considering action" - ] - }, - { - "text": "Strengthen the judiciary by combating slowness as well as addressing corruption and the repressive treatment of adolescents ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Improve the domestic legislation regarding working conditions, especially for women and young people", - "values": [ - "4 - General action" - ] - }, - { - "text": "Counter the adverse effects of economic activities such as oil production and mining on the full enjoyment of some economic and social rights of communities living in adjacent territories", - "values": [ - "4 - General action" - ] - }, - { - "text": "Explore the possibility of consolidating existing Ombudsmen institutions and mechanisms into a single National Human Rights Institution in accordance with the Paris Principles and seek A-status accreditation by the ICC for NHRIs ", - "values": [ - "3 - Considering action" - ] - }, - { - "text": "Abolish the death penalty sign and ratify ICCPR-OP2", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Apply and adopt a comprehensive anti-discrimination law containing a general prohibition of all forms of direct and indirect discrimination", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Continue its cooperation with the United Nations special procedures ", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Bring its legal and policy framework in line with its international obligations, including the Declaration on Human Rights Defenders, by repealing all laws and policies that restrict the rights and activities of human rights defenders, including defamation and libel laws", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Abolish the death penalty completely and, in the meantime, establish a formal moratorium on executions, as urged by the respective General Assembly resolutions ", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Derogate legislation that criminalizes same-sex activities between consenting adults and adopt measures to combat incitement to hatred for reasons of sexual orientation or gender identity, and allow the registration of NGOs that defend matters of sexual orientation and gender identity without discrimination ", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Consider approving the draft bill for the protection of human rights defenders, journalists, social communicators and justice officials", - "values": [ - "3 - Considering action" - ] - }, - { - "text": "Extend an open invitation to all special procedures of the Human Rights Council ", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Evaluate the National Plan for Equal Rights and Opportunities between Men and Women with a view to the development and implementation of a national gender policy", - "values": [ - "3 - Considering action" - ] - }, - { - "text": "Abrogate all discriminatory laws against non-Jewish children", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Consider withdrawing its reservations to various human rights instruments ", - "values": [ - "3 - Considering action" - ] - }, - { - "text": "Ensure that the laws of the high level regulating the fight against terrorism are consistent with international standards of human rights protection ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Guarantee protection and access to justice for women who are victims of violence", - "values": [ - "4 - General action" - ] - }, - { - "text": "Take all necessary measures to accelerate the adoption and implementation of the Marriage Bill (2015) to help end child marriage in Zambia", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Ratify ILO Convention No. 189 (2011) concerning decent work for domestic workers and adapt its national legislation accordingly ", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Continue the implementation of laws on migration and amendments, to ensure that the laws are always fully in line with international standards", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Allow international election observation in all upcoming elections", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Continue guaranteeing the invocation of conscientious objection by health professionals, in order to safeguard freedom of conscience of medical personnel", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Improve the situation of women and enforce specific legislation regarding violence against women and ensuring their sexual and reproductive rights", - "values": [ - "4 - General action" - ] - }, - { - "text": "Tuvalu engaged to come back to the working group with a more formal commitment as to which recommendations and what plan would be the way forward for the country to continue in its efforts to address human rights", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Bear in mind the need to work towards securing the full range of human rights and fundamental freedoms, including the right to development, for all Bhutanese, in continuing the pursuit of Gross National Happiness ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Ratify the Optional Protocol to the Convention against Torture and implement a National Preventative Mechanism", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Ratify the Convention on the Rights of Persons with Disabilities", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Take steps to ensure and protect the full independence and impartiality of the judiciary", - "values": [ - "4 - General action" - ] - }, - { - "text": "Bring an end to the illegal construction of Jewish settlements and the transfer of Jewish populations to the OPT without delay", - "values": [ - "4 - General action" - ] - }, - { - "text": "Further protect children's rights - in particular, fully implement the prohibition of child labour and adopt legislation providing for responsibility for the use of child labour ", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Continue implementing its social policies and programmes with a view to strengthening social harmony, in particular to help the elderly and the low-income citizens", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Adopt a law on the media in order to guarantee the freedom of expression and information", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Step up efforts to ensure access to education, health, employment and participation in political public life for women, in particular rural and ethnic minority women", - "values": [ - "4 - General action" - ] - }, - { - "text": "Put an emphasis on the training of those responsible for the protection of the rights of women and children", - "values": [ - "4 - General action" - ] - }, - { - "text": "Widen the mandate of the Parliamentary Ombudsman to address racial discrimination in public and private entities", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Put in place labour laws which would include a minimum age of employment, and which protect children from commercial exploitation", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Adopt specific legislation aiming at the elimination of violence against women, in line with international standards, which adequately addresses the dimensions of prevention, protection and assistance", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Protect civil society actors, including human rights organizations, against any harassment or persecution, including arbitrary arrest or enforced disappearance, and improve the legal framework so that it encourages and facilitates the operation of non-governmental organizations", - "values": [ - "4 - General action" - ] - }, - { - "text": "Take the necessary steps to end detention of unaccompanied minors, and pending such measures, ensure that they are detained separately from adults and receive adequate and free legal representation", - "values": [ - "4 - General action" - ] - }, - { - "text": "Continue its efforts to ensure that all children have access to education at all levels and all categories", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Strongly recommended that Cuba allow the exercise of the right to freedom of expression, and freedom of association and assembly, by enabling such entities to obtain legal status under national law without requiring government affiliation vis-a-vis a State counterpart", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Become a party to the ICESCR", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Establish an appropriate mechanism for the protection and the promotion of children rights ", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Codify torture as an offence in law, in keeping with the definition set out in CAT", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Adopt and fully implement the draft Nationality Law", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Continue to implement measures against gender stereotypes in the national idiosyncrasy ", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Continue to tackle the issue of women's empowerment in the light of the recommendations emerging from this review and of those made by the relevant treaty bodies", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Commitment of the State to promote the legal and administrative conditions for real and effective equality and to take necessary steps to prevent and combat discrimination, marginalization, vulnerability and exclusion", - "values": [ - "4 - General action" - ] - }, - { - "text": "Repeal the provisions in the Criminal Code which criminalize sexual relations between consenting adults of the same sex (lesbian, gay, bisexual, transgender and intersex persons)", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Strengthen law enforcement by ensuring that clear instructions are given to police forces to always act in compliance with international human rights law", - "values": [ - "4 - General action" - ] - }, - { - "text": "Provide all unaccompanied children with appropriate legal guardians, as required by Bulgarian law and ensure their basic needs are met", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Continue to implement the Chittagong Hill Tracts Peace Accords (CHT) ", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Take urgent measures to establish a formal moratorium on executions of persons sentenced to death", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Sustain and promote the Government's socioeconomic developmental policies by means of, inter alia, devoting more attention to any possible discrepancy between urban and rural areas in this regard", - "values": [ - "4 - General action" - ] - }, - { - "text": "Continue to implement the NHRAP ", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Revise its legislation and administrative practices to correct the amendment of birth certificates in which the name of the father is removed as a consequence of births out of wedlock ", - "values": [ - "3 - Considering action" - ] - }, - { - "text": "Refrain from referring to laws other than the press code when dealing with infractions of the freedom of expression", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Reply to all outstanding communications sent to Peru by OHCHR", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Enact legislation that also allows non-Muslims to acquire Maldivian citizenship ", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Take visible policy and other measures to ensure the freedom of religion and belief and address the alarming trend of racism, racial discrimination, xenophobia and related intolerance including mob violence committed, incited and advocated by right-wing parties and affiliated extremist organizations against minorities, particularly Muslims, Christians, Sikhs and Dalits", - "values": [ - "4 - General action" - ] - }, - { - "text": "Pursue efforts in the field of judicial reform and upgrade laws to reflect the will and interest of all segments of society ", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Ratify the Optional Protocols to the International Covenant on Civil and Political Rights, to the Convention on the Elimination of All Forms of Discrimination against Women and to the Convention on the Rights of Persons with Disabilities", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Strengthen the working conditions and involvement of civil society organizations ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Ensure the full participation of indigenous, communities of African descent and women in all levels of public affairs", - "values": [ - "4 - General action" - ] - }, - { - "text": "Continue efforts to establish an independent National Human Rights Institutions (NHRI) in accordance with the Paris Principles ", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Consider amending the juvenile justice law to cover all children under the age of 18 years", - "values": [ - "3 - Considering action" - ] - }, - { - "text": "Work with the media and civil society organizations in changing attitudes and combat discrimination against women ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Fully implement the National Strategic Development Plan aimed at reducing poverty and achieving sustainable development, including through the enactment of the draft National Policy on Social Development", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Amend its laws, including those on marriage, custody, divorce, property rights, and indecency, to ensure compliance with international human rights law ", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "A public policy based on harnessing the work of NGOs", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Promote measures aimed at preventing child labour and violence against children, in compliance with the ILO conventions and the other relevant international instruments", - "values": [ - "4 - General action" - ] - }, - { - "text": "Amend the Shia Personal Status Law consistent with its international human rights obligations to ensure equal respect for the human rights of all Afghans, including women", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Consider establishing national human rights institutions in compliance with the Paris Principles ", - "values": [ - "3 - Considering action" - ] - }, - { - "text": "Maintain the protection of the right to life from conception to natural death", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Intensify efforts to eliminate all forms of practical discrimination against children ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Adopt laws and implement policies to supress all forms of de facto discrimination against any person or group", - "values": [ - "4 - General action" - ] - }, - { - "text": "Continue to strive for the inclusion of a gender perspective in all of its development plans and programmes, with positive measures to achieve the effective promotion and protection of the rights of women", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Step up efforts to combat trafficking in persons", - "values": [ - "4 - General action" - ] - }, - { - "text": "Ratify and implement effectively the Optional Protocol to the Convention against Torture and Other Cruel, Inhuman or Degrading Treatment or Punishment (OP-CAT)", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Harmonize all its relevant legislation relating to the age of marriage and raise the age of marriage to 18", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Consider ratifying the Optional Protocol to the CAT in the near future ", - "values": [ - "3 - Considering action" - ] - }, - { - "text": "Deepen awareness measures regarding the fight against discrimination, in particular by ensuring the investigation and punishment of acts of a discriminatory nature", - "values": [ - "4 - General action" - ] - }, - { - "text": "Continue efforts to reduce poverty and limit disparities in education and income", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Take all necessary measures to combat the recruitment and use of children in hostilities, including by releasing children associated with the conflict.", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Consider adopting development plans to improve the living conditions of the vulnerable populations, especially women and children", - "values": [ - "3 - Considering action" - ] - }, - { - "text": "Combat better against racial discrimination", - "values": [ - "4 - General action" - ] - }, - { - "text": "Enact legislation prohibiting violence based on sexual orientation, and repeal laws that directly or indirectly criminalize consensual same-sex sexual activities", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Continue with awareness raising measures for the recognition and dissemination of the rights of persons with disabilities and to implement, as quickly as possible, the Law on persons with disabilities ", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Maintain the peaceful atmosphere that was created by the Comprehensive Peace Agreement throughout the six years of the transitional period, by taking measures to reduce tension and all parties should refrain from taking any unilateral steps that would undermine the purpose of the Agreement", - "values": [ - "4 - General action" - ] - }, - { - "text": "Provide international support aimed at improving the situation of human rights", - "values": [ - "4 - General action" - ] - }, - { - "text": "Continue to apply the strategies and socio-economic development plans designed to reduce poverty", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Promote the establishment of a legal framework in accordance with international human rights obligations that would allow the development of pluralistic, free and independent media, and free access to information, including to foreign media ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Take further measures to enhance the participation of women in the legislature ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Ratify the International Convention on the Protection of All Persons from Forced Disappearance and acknowledge the competency of the Committee provided for in the Convention.", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Consider strengthening press freedom protections contained in the 1999 press law.", - "values": [ - "3 - Considering action" - ] - }, - { - "text": "Review counter-terrorism measures which target individuals or groups based on race, ethnic background or religion, including Muslims or Muslim communities", - "values": [ - "3 - Considering action" - ] - }, - { - "text": "Improve respect for the right to freedom of assembly in line with its domestic legislation and its obligations under article 21 of the ICCPR", - "values": [ - "4 - General action" - ] - }, - { - "text": "Speed up the process of setting up the national mechanism on the prevention of torture", - "values": [ - "4 - General action" - ] - }, - { - "text": "Proceed to ratify the International Convention for the Protection of All Persons from Enforced Disappearance", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Take action to narrow the gender pay gap and to ensure equal opportunities for women on the labour market", - "values": [ - "4 - General action" - ] - }, - { - "text": "Continue its efforts to prevent and properly criminalize torture and illtreatment by state agents, investigate, appropriately prosecute and punish those responsible, and compensate the victims", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Review the anti-terrorism law and its implementation in order to ensure it cannot be abused for harassment, detention and prosecution of dissenters", - "values": [ - "3 - Considering action" - ] - }, - { - "text": "Raise the quality of education so as to provide the high quality human resources for its social and economic development", - "values": [ - "4 - General action" - ] - }, - { - "text": "Establish targets for improving the representation of women in senior management in the public service and set measurable targets for realizing gender pay equality.", - "values": [ - "4 - General action" - ] - }, - { - "text": "Step up measures to put an end to sexual violence and promote participation of women in political and public life", - "values": [ - "4 - General action" - ] - }, - { - "text": "Sign and ratify the Convention against Torture and Other Cruel, Inhuman or Degrading Treatment or Punishment", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Ratify ICESCR, CERD, CRPD and the International Convention for the Protection of All Persons from Enforced Disappearance (CED), with their respective optional protocols", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Take additional steps to improve accessibility to education, including for children in domestic service and children with disabilities and ensure inclusive and quality education for all", - "values": [ - "4 - General action" - ] - }, - { - "text": "Take measures to ensure respect for human rights for migrant workers, including by promoting constructive dialogues and capacity-building, with a view to achieving an efficient system of integration for migrant workers", - "values": [ - "4 - General action" - ] - }, - { - "text": "Envisage softening legislation towards decriminalisation of abortion, especially in cases of rape", - "values": [ - "3 - Considering action" - ] - }, - { - "text": "Align its criminal justice system with its obligations under the ICCPR and other international human rights instruments", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Continue efforts to recognize decent work, to reduce structural underemployment and gradually expand the purchasing power of labour income, in the context of strengthening the social and solidarity-based economic system", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Allow the Special Rapporteur on torture and other cruel, inhuman or degrading treatment or punishment to visit Bahrain, following up on the acceptance of recommendations to that effect made in the second cycle", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Repeal penal sanctions on homosexuality in the police force", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Address the legal gaps in the area of child custody and include relevant provisions relating to protection of women who are the victims of domestic violence as recommended by the Special Rapporteur on violence against women", - "values": [ - "4 - General action" - ] - }, - { - "text": "Continue with free pre-natal care services to reduce maternal mortality", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Ensure that the refugee status determination process is conducted in a fair, effective and transparent manner in line with international law", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Bring its Criminal Code into conformity with its international commitments by taking appropriate steps to ensure that same-sex activity between consenting adults is not subject to criminal sanctions ", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Integrate a human rights based approach in the presidential commission for the reform of the police, establish an independent governance mechanism to investigate violations of human rights and ensure access to justice for victims ", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Continue promoting and protecting the rights of vulnerable people: women, children, the elderly and persons with disabilities", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Develop further effective campaigns and programmes to improve access to health services, employment and housing for Roma, take effective measures to guarantee their protection against poverty and social exclusion and develop effective monitoring and evaluation mechanisms for the assessment of the results of these campaigns, programmes and measures.", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Take measures allowing the exercise of the lawful activities of human rights defenders, in a favourable legal and administrative environment", - "values": [ - "4 - General action" - ] - }, - { - "text": "Repeal the Sedition Act and sustain previous reforms in the human rights field", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Enforce legislation that criminalizes child trafficking, through investigation and prosecution of trafficking offenses, reconvene the Inter-Ministerial Steering Committee on Trafficking, and allocate specific funds to the committee for implementation of a national action plan", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Continue cooperating with the Office of the United Nations High Commissioner for Human Rights to strengthen human rights education within the judiciary, and the military and security forces", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Increase poverty reduction and development policies that promote the participation of vulnerable groups in decisions regarding their rights and interests", - "values": [ - "4 - General action" - ] - }, - { - "text": "Fulfil its obligation under article 12 of the ICCPR by allowing the Lao Hmong refugees who have received third-country invitations to migrate to these countries if they wish to do so, and provide the means for them to do so ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Adopt a comprehensive plan on the rights of the child that fight trafficking, labour exploitation, sexual abuse and physical violence", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Strengthen legislation to ensure gender equality, in particular to prevent violence against women and stop early and forced marriages", - "values": [ - "4 - General action" - ] - }, - { - "text": "Implement measures to ensure appropriate treatment of detainees, work to eliminate the detention of persons without charge or trial and ensure transparency for all sentences", - "values": [ - "4 - General action" - ] - }, - { - "text": "Consider signing and ratifying the International Convention for the Protection of All Persons from Enforced Disappearance. and consider accepting the competence of the Committee on Enforced Disappearances.", - "values": [ - "3 - Considering action" - ] - }, - { - "text": "Take concrete measures to combat all forms and manifestations of racism, racial discrimination and related intolerance, particularly against religious minorities", - "values": [ - "4 - General action" - ] - }, - { - "text": "Continue to exert all efforts for a peaceful resolution to the serious political tension, which is the source of a multitude of humanitarian and social concerns", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Strengthen the mechanisms to protect victims of gender-based violence ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Continue to strengthen the rights of persons with disabilities particularly by facilitating their access to public buildings and facilities", - "values": [ - "4 - General action" - ] - }, - { - "text": "Improve governance and enjoyment of human rights through improved budgetary accountability and work to combat corruption, including by extending the transparency principles of the Extractive Industries Transparency Initiative to its budgetary process ", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Ratify without delay CPED and translate it into national legislation", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Collaborate with international aid agencies to improve medical assistance and distribute free medical certificates for victims of sexual violence, carry out an awareness-raising campaign throughout the country about the relationship between sexual violence and HIV-AIDS prevention and give priority to the establishment of sexual and reproductive health programmes for women and girls ", - "values": [ - "1 - Minimal action" - ] - }, - { - "text": "Continue to fight against child labour and ensure their rights, and in this respect, accept to develop a comprehensive cooperation with ILO which shall include the fight against forced labour ", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Conduct information campaigns so as to familiarize the public and minority groups on the law and legislation relating to racial discrimination", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Promote and strengthen child protection mechanisms, especially in rural areas, and ensure equal access to education for all children, with a particular focus on children from marginalized groups and minorities ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Issue standing invitations to all special procedures", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Adhere to the following international instruments: the Second Optional Protocol to the International Covenant on Civil and Political Rights, the International Convention on the Protection of the Rights of All Migrant Workers and Members of Their Families, the Optional Protocol to the Convention on the Rights of the Child on the involvement of children in armed conflict, the Optional Protocol to the Convention on the Rights of Persons with Disabilities, and the International Convention for the Protection of All Persons from Enforced Disappearance ", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Ensure independent investigations into all cases of torture or unlawful killings and that all those suspected of being responsible are brought to justice in trials that observe international fair trial standards", - "values": [ - "4 - General action" - ] - }, - { - "text": "Become a party to OP-CEDAW", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Amend the Penal Code to remove all criminal penalties for alleged libel offences and the press law to bring its provisions into compliance with article 19 of ICCPR ", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Continue to ensure strong legislative protection for children, including by increasing the minimum age of marriage to 18", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Consider ratifying the Optional Protocol to the Convention on the Elimination of All Forms of Discrimination against Women (CEDAW)", - "values": [ - "3 - Considering action" - ] - }, - { - "text": "Consider incorporating the United Nations Rules for the Treatment of Women Prisoners and Non-Custodial Measures for Women Offenders, otherwise known as the "Bangkok Rules", as part of its programme to enhance the condition of detainees ", - "values": [ - "3 - Considering action" - ] - }, - { - "text": "Enhance its efforts to raise school attendance rates, especially among girls, and reduce the drop-out rate", - "values": [ - "4 - General action" - ] - }, - { - "text": "Study the possibility to ratify the Second Optional Protocol to the International Covenant on Civil and Political Rights ", - "values": [ - "3 - Considering action" - ] - }, - { - "text": "Pass an anti-trafficking law that prohibits and penalizes all forms of human trafficking", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Take new measures to promote access to justice, in particular for rural communities and women", - "values": [ - "4 - General action" - ] - }, - { - "text": "Step up its efforts towards the ratification of other international human rights conventions, including ILO Convention No. 189", - "values": [ - "4 - General action" - ] - }, - { - "text": "Amend the Law of Marriage Act of 1971 and increase the minimum marital age for girls, as well as prevent child, early and forced marriage", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Adopt the draft anti-discrimination law with provisions prohibiting sexual harassment as soon as possible", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Join the favourable momentum generated by the adoption of the United Nations Declaration on the Rights of Indigenous Peoples and give its support to this instrument", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Enact specific legislation to prohibit racism and racial discrimination ", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Strengthen the independence of institutions such as the Human Rights Commission of Sri Lanka, the Police Commission and Election Commission", - "values": [ - "4 - General action" - ] - }, - { - "text": "Investigate all cases of forced disappearances, put an end to secrete detentions and provide reparation to victims ", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Sign and ratify the Council of Europe Convention on Preventing and Combating Violence against Women and Domestic Violence (Istanbul Convention) ", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Address the issue of inadequate water supply in the country urgently, including by providing appropriate temporary measures to communities in rural and urban areas in finding alternative means of water supply", - "values": [ - "4 - General action" - ] - }, - { - "text": "Maintain human rights education as a basic part of its National Human Rights Action Plans, including the relevant training of law enforcement agents, public servants and youth", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Make further progress in fulfilling its commitment to close the Guantanamo detention facility and abide by the ban on torture and inhumane treatment of all individuals in detention", - "values": [ - "4 - General action" - ] - }, - { - "text": "Adopt measures to ensure protection for children under the age of 18 from hazardous and unsafe working environments ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Intensify efforts for the early establishment of a national independent human rights institution in accordance with the Paris Principles", - "values": [ - "4 - General action" - ] - }, - { - "text": "Sufficiently safeguard in relevant legislation the guarantees provided in the Constitution to effectively protect the rights of national minorities and equal representation of members of national minorities.", - "values": [ - "4 - General action" - ] - }, - { - "text": "Ensure that appropriate resources are provided for the full implementation of laws and programmes to combat trafficking of women and children ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Ratify the International Covenant on Civil and Political Rights and the Convention against Torture", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Release detained Baha'i leaders and end policies of discrimination against Baha'i and other religious and ethnic minorities", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Enable full and unimpeded humanitarian access to all besieged and hard-to-reach areas and that all parties to the conflict take constructive actions", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Accelerate efforts towards the establishment of a Paris Principles-compliant national human rights institution", - "values": [ - "4 - General action" - ] - }, - { - "text": "By the end of 2014, adopt and implement the recommendations on electoral reform of the Special Rapporteur on Cambodia ", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Consider the possibility of increasing or matching resources toward socio-economic and development programmes aimed at, among others, further alleviating poverty and reducing unemployment ", - "values": [ - "3 - Considering action" - ] - }, - { - "text": "Take measures to combat domestic violence, in particular against children, including the usage of corporal punishment", - "values": [ - "4 - General action" - ] - }, - { - "text": "Develop a national strategy to combat poverty ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Improve domestic mechanisms for the implementation of international human rights obligations", - "values": [ - "4 - General action" - ] - }, - { - "text": "Take legislative and statutory measures to eliminate all forms of discrimination against women, persons with disabilities and children affected by HIV/AIDS", - "values": [ - "4 - General action" - ] - }, - { - "text": "Intensify efforts to investigate and prosecute those responsible for the recently reported crimes committed against journalists", - "values": [ - "4 - General action" - ] - }, - { - "text": "Take all necessary legal and other measures to effectively implement reparation programmes for victims of past human rights violations during the 1980-2000 period and report back about the results to the Human Rights Council", - "values": [ - "4 - General action" - ] - }, - { - "text": "Continue combating gender stereotypes and all forms of discrimination and violence against women", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Allocate more financial and other resources to ensure effective implementation of initiatives related to the advancement of women and gender equality, in particular the 365-day National Plan of Action to end gender violence ", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Continue its efforts in promoting and protecting the rights of persons with disabilities with particular attention to the specific needs of women and children with disabilities, especially by increasing awareness of their rights to prevent social discrimination and providing equal access to adequate social and health services", - "values": [ - "4 - General action" - ] - }, - { - "text": "Continue strengthening its efforts to guarantee the promotion and protection of human rights as enshrined in its Constitution ", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Further guarantee the status and rights of national ethnic and linguistic minorities on the legislative and judicial front as well as in the policy front", - "values": [ - "4 - General action" - ] - }, - { - "text": "Decree maternity leave as mandatory ", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Consider issuing a standing invitation to all UN human rights special procedures", - "values": [ - "3 - Considering action" - ] - }, - { - "text": "Take necessary steps for the reformation of the Myanmar Human Rights Body as the Human Rights Commission in accordance with the Paris Principles ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Finalize, adopt and implement the pastoral law so that it serves as an instrument to reduce the level of resource-based conflicts in the country ", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Review its position on the recognition of the rights of minorities and that it begin collecting data on the socio-economic status of the population, disaggregated by ethnic identity, confession and gender, in order to identify social problems affecting ethnic and religious minorities.", - "values": [ - "3 - Considering action" - ] - }, - { - "text": "Provide better guarantees for the independence of the judiciary, including by reforming the Magistrates' High Council ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Take measures to broaden antiviral treatment for people living with HIV/AIDS ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Comply with the provisions of Security Council resolution 2351 of 2017, which extends the mandate of the United Nations Mission for the Referendum in Western Sahara and align itself with the principle of self-determination of the Saharawi people", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Strengthen the protection of minorities and ensure an end to impunity in this context", - "values": [ - "4 - General action" - ] - }, - { - "text": "Continue efforts to increase awareness of the culture of human rights and establish an institutional culture which respects human rights in the country ", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Consider extending a standing invitation to the special procedures mandate holders", - "values": [ - "3 - Considering action" - ] - }, - { - "text": "Combat racism and xenophobia, and strengthen efforts at promoting intercultural understanding and tolerance", - "values": [ - "4 - General action" - ] - }, - { - "text": "Put in place a national human rights institution in accordance with the Paris Principles", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Quickly establish the Constitutional Court and expedite the revision of laws that are incompatible with the Constitution and international human rights standards", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Consider the recommendation of UNESCO to ratify the Convention against Discrimination in Education", - "values": [ - "3 - Considering action" - ] - }, - { - "text": "Continue efforts to provide social care for children at risk, especially those from socioeconomically poor backgrounds ", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Continue its effective work in the area of defending the rights of the family women and children", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Accede to the ICCPR and bring national legislation in compliance with relevant provisions of this Covenant", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Continue its special civil registration campaign", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Ensure justice that is independent and transparent, and that respects the right to defence", - "values": [ - "4 - General action" - ] - }, - { - "text": "Establish a holistic strategy to strengthen social cohesion and to respect religious diversity", - "values": [ - "4 - General action" - ] - }, - { - "text": "Strengthen its monitoring system to eliminate possibility of forced child labour in cotton production ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Continue to step up efforts to raise the minimum age for criminal responsibility including continuing review of relevant legislation", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Adopt comprehensive legislation to combat discrimination in line with its international obligations and standards, which includes discrimination based on sexual orientation and gender identity", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Sign and ratify the International Convention for the Protection of All Persons from Enforced Disappearance, thereby recognizing its competence, pursuant to articles 31 and 32 of that instrument", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Continue to consolidate the process to further strengthen the country's democratization and the Rule of Law", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Implement fully the visible bilingual topography in the Friuli-Venezia Giulia autonomous region populated by the Slovenian minority", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Take necessary measures to ensure the right to fair trial", - "values": [ - "4 - General action" - ] - }, - { - "text": "Investigate allegations of arbitrary arrests and maltreatment of detained persons at the Gikondo Transit Centre, and bring the perpetrators to justice", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Ensure full participation of ethnic groups and castes in the Constitution-making process, in particular in the Constituent Assembly", - "values": [ - "4 - General action" - ] - }, - { - "text": "Put in place a national plan to effectively combat the trafficking in human persons, and to cooperate with neighboring countries", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Pass gender equality legislation including the Property Rights of Spouses Bill, the Affirmative Action Bill and the Intestate Succession Bill", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Increase ongoing action to eliminate discrimination against women at all levels in society", - "values": [ - "4 - General action" - ] - }, - { - "text": "Continue its efforts in enhancing the capacity of law enforcement officials in the field of the rule of law and human rights through increasing training activities", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Take measures to support and strengthen prosecutions for human rights violations by the judiciary, with reference to the recommendations made by the Council of Europe Commissioner for Human Rights, including withrespect to the strengthening of the independence and effectiveness of the Prosecutor's Office", - "values": [ - "4 - General action" - ] - }, - { - "text": "Ratify the Optional Protocol to CEDAW as well as the Optional Protocol to the African Charter on the Rights of Women ", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Accede to ICCPR-OP2, aimed at abolishing the death penalty, and formalizing the de facto moratorium on the death penalty ", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Continue to strengthen the programmes for gender equity and social inclusion of women", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Work closely with international human rights bodies particularly with relation to the follow-up of UPR recommendations.", - "values": [ - "4 - General action" - ] - }, - { - "text": "Take action so as to cooperate with the Special Rapporteurs of the United Nations ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Take further steps to protect the LGBT population from intolerance, hate speech, and physical attacks as well as to ensure the better inclusion of the LBGT population and to promote tolerance in this regard ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Consider the establishment of a permanent governmental mechanism to implement the universal periodic review recommendations", - "values": [ - "3 - Considering action" - ] - }, - { - "text": "Launch a national campaign to combat all forms of marginalisation or discrimination based on gender, religion or ethnicity", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Ratify CAT and the Optional Protocols thereto", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Continue efforts to implement the development policy as defined in the Act on Missions, Great Missions and Micro-missions of 2014", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Consider taking steps towards the abolition of the death penalty", - "values": [ - "3 - Considering action" - ] - }, - { - "text": "Strengthen measures to foster training and awareness of public officials, particularly police and justice officials, on relevant human rights issues", - "values": [ - "4 - General action" - ] - }, - { - "text": "Become party to the Optional Protocol to ICCPR", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Improve the text of the draft law for victims in order to include victims of state agents, in keeping with United Nations recommendations.", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "The delegation informed about Hungary's willingness to accede to the Optional Protocol to the Convention against Torture (OP-CAT) as a part of its pledges to the Human Rights Council as well as about the Government's steps to prepare this ratification.", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Ensure immediate and unhindered access by the Commission of Inquiry and the special procedures of the Human Rights Council to the country and provide them with all necessary assistance", - "values": [ - "4 - General action" - ] - }, - { - "text": "Continuing education programmes and early warning concerning teen pregnancies and ensure that girls and pregnant teenagers continue their studies during pregnancy", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Further strengthen women's rights and review Articles 40 and 41 of the Irish constitution with a view to abandon formulations that potentially promote gender discrimination and to bring Ireland's laws on abortion into compliance with international human rights standards in law and in practice", - "values": [ - "3 - Considering action" - ] - }, - { - "text": "Fully implement the already existing and recently amended legislation to combat racism and xenophobia", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Consider reviewing and withdrawing the many and extensive reservations to the human rights treaties to which it is State party ", - "values": [ - "3 - Considering action" - ] - }, - { - "text": "Introduce alternatives to the military service for conscientious objectors, abolish prison sentences and release all persons who have been incarcerated for having refused the military service in the absence of a civilian alternative", - "values": [ - "4 - General action" - ] - }, - { - "text": "Review the National Human Rights Commission with the aim of bringing it into conformity with the Paris Principles ", - "values": [ - "3 - Considering action" - ] - }, - { - "text": "Continue its efforts towards people with special needs, and ensure that they are exempted from paying some expenses", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Adopt relevant measures and policies to eliminate discrimination of more vulnerable groups of children including indigenous children, children from rural areas, as well as children with disabilities", - "values": [ - "4 - General action" - ] - }, - { - "text": "Give special attention to the rights of women and further promote education and development and their representation in politics and public life.", - "values": [ - "4 - General action" - ] - }, - { - "text": "Respect the rights of Human Rights Defenders and protect them in their everyday struggle ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Take effective measures to combat cases of blood feuds and follow up those measures ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Repeal all legislative provisions that discriminate against persons on the grounds of their sexual orientation, including in the Sexual Offences Act, within the next two years ", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Accede to international human rights instruments to which it is not yet a party", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "In line with international standards, deem torture to be a crime that is not subject to any limitation, and strengthen the capacity for independent investigations into acts of torture ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Take action to ensure the legal age of marriage of 18 years is enforced nationwide for both boys and girls", - "values": [ - "4 - General action" - ] - }, - { - "text": "Formulate a national plan of action on human rights and strengthen the Ethiopian Human Rights Commission EHRC, for example, by assisting in opening regional offices and providing access to all detention centres ", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Ratify the International Convention on Protection of All Persons from Enforced Disappearance", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Set up an independent national human rights institution in accordance with the Paris Principles", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Guarantee the right to freedom of expression, association and peaceful assembly of journalists, activists, human rights defenders and those who take part in demonstrations", - "values": [ - "4 - General action" - ] - }, - { - "text": "Assess the recommendation made by the Committee on the Rights of the Child with regard to seeking technical assistance from the United Nations, in order to implement the recommendations of the study on violence against children and the establishment of a juvenile justice system", - "values": [ - "3 - Considering action" - ] - }, - { - "text": "Through the national strategy against corruption 2012-2015, take the measures necessary to ensure the implementation of the recommendations relating the cooperation and verification mechanism (CVM) issued by the European Commission, and including continuing efforts to prevent and combat corruption in the political and judicial sectors", - "values": [ - "4 - General action" - ] - }, - { - "text": "Implement the national Action Plan for Human Rights and the national policy framework on human rights referred to in chapter XII of the national report", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Repeal legislation which allows for the death penalty, in line with Liberia's commitments under the Second Optional Protocol to the International Covenant on Civil and Political Rights", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Bring national legislation in line with the provisions of the international instruments, and ensure its implementation in practice ", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Enhance efforts in the provision of adequate housing and address the identified backlog in this regard.", - "values": [ - "4 - General action" - ] - }, - { - "text": "Examine the possibility of promoting the adoption of a code of ethics for investors, including in the tax-free zones, and to address the issue of violence against women", - "values": [ - "3 - Considering action" - ] - }, - { - "text": "Consider the withdrawal of all reservations and declarations that undermine the objective and spirit of the human rights instruments, in particular reservation to article 6 paragraph 5 of the International Covenant on Civil and Political Rights that bans the imposition of the death penalty to those who committed a crime when they were minors", - "values": [ - "3 - Considering action" - ] - }, - { - "text": "Repeal or amend laws used to suppress peaceful political dissent and freedom of expression, association and assembly, including by granting those fundamental rights to the new members of Parliament ", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Take all necessary measures to remove discriminatory provisions from the constitution and the electoral law in line with the European Court of Human Rights judgement", - "values": [ - "4 - General action" - ] - }, - { - "text": "Consider taking the necessary steps to ratify or accede to the outstanding main international human rights instruments and treaties", - "values": [ - "3 - Considering action" - ] - }, - { - "text": "Continue strengthening the initiatives taken for the observance of the rights and responsibilities of children and adolescents in conflict with the law", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Take into consideration the views of the civil society and respect European Union standards when elaborating the security law package", - "values": [ - "4 - General action" - ] - }, - { - "text": "Fully domesticate the human rights instruments which were recently acceded to with the aim of fully and effectively implementing them", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Continue its efforts to combat sexual violence against women and to effectively apply the law against sexual violence of 2006. ", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Consider ratifying the Convention on the Rights of Persons with Disabilities, and ensuring its full implementation in domestic law ", - "values": [ - "3 - Considering action" - ] - }, - { - "text": "Intensify its efforts to create a culture of tolerance in society through, inter alia, the use of public and private media ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Promote inclusive education for persons with disabilities and reduce progressively the special schools", - "values": [ - "4 - General action" - ] - }, - { - "text": "Enforce or institute mechanisms for ensuring that the first grade of school is free for all children", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Cooperate with the international community in order to strengthen the efforts in solving the humanitarian crises in the country", - "values": [ - "4 - General action" - ] - }, - { - "text": "Continue its role in promoting dialogue between different religions and civilizations, based on the principle of peaceful coexistence and a culture of moderation and tolerance ", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Implement public awareness campaigns on discrimination based on sexual preference ", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Implement effectively the legislation on violence against women to combat misogynous stereotypes, discrimination and violence whose victims are women", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Enact legislation to prohibit discrimination, including based on sexual orientation and gender identity", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Investigate in an effective and independent manner and as soon as possible, allegations of torture, ill-treatment and extrajudicial executions with a view to bring perpetrators to justice ", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Consider ratification of the International Covenant on Civil and Political Rights and its second Optional Protocol, with the view of total abolition of the death penalty", - "values": [ - "3 - Considering action" - ] - }, - { - "text": "Continue efforts to fully eradicate sexual mutilation.", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "As part of national reconstruction and the reinforcement of the rule of law, ratify and implement the International Covenant on Civil and Political Rights ICCPR ", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Properly investigate extrajudicial killings and bring to justice alleged perpetrators, to ensure that all police and counter-terrorism activities are carried out in compliance with the country's international obligations", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Strengthen cooperation with civil society on promoting nondiscrimination and protecting the rights of migrants, refugees and asylum seekers ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Reform the current Public Order Act to include measures that fully uphold the rights to freedom of expression and peaceful assembly, making it more conducive to political participation by all Zambians and ensure that enforcement of the Act is consistent with Zambia\u2019s human rights obligations, including through training of its security forces", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Include specific components in public policies and budgets to address the needs of persons belonging to minorities, including Roma women and children", - "values": [ - "4 - General action" - ] - }, - { - "text": "Continue facilitating equal access to justice for all and provide legal aid, in particular to vulnerable groups, minority groups and marginalized people", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Open up independent inquiries on the excessive use of force during expulsions of persons from the territory of the Confederation", - "values": [ - "4 - General action" - ] - }, - { - "text": "Consider ratifying ICRMW and International Labour Organization (ILO) Convention 189 (2011) concerning decent work for domestic workers", - "values": [ - "3 - Considering action" - ] - }, - { - "text": "Take the necessary measures to effectively regulate the acquisition, possession and use of firearms by civilians, in order to protect the human rights of all persons", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Introduce more efficient legal regulations obliging employers to respect immigrants' right to decent working conditions or establish a special monitoring body to support the Decent Work Agenda ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Adopt legislation to raise public awareness to prohibit and eliminate all forms of corporal punishment ", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Take the appropriate measures to improve the conditions of detainees, in particular those awaiting trial", - "values": [ - "4 - General action" - ] - }, - { - "text": "Facilitate extended access to prisons for NGOs and implement the recommendations contained in the report of the Community Para-Legal Taskforce on Human Rights with regard to persons detained by the security forces.", - "values": [ - "4 - General action" - ] - }, - { - "text": "Accelerate the process for the drafting and adoption of a law on gender equality ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Provide the legal and operational framework for an independent judiciary, inter alia, by establishing fair procedures and criteria regarding the appointment and dismissal of judges ", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Take further steps to support freedom of expression and the right to freedom of movement ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Strengthen the resources allocated to the implementation of the adopted National Action Plan for children for the period 2005-2015 ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Promote and protect the rights of vulnerable peoples, the right to education and to right to development to bring down poverty in urban and rural areas simultaneously while maintaining peace, stability and protection of the environment ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Implement the Strategy for Improvement of the Position of Roma and Egyptians in Montenegro 2012-2016", - "values": [ - "4 - General action" - ] - }, - { - "text": "Take steps towards the ratification of ICCPR's two optional protocols", - "values": [ - "4 - General action" - ] - }, - { - "text": "Review domestic legislation on the media in order to bring it into line with article 19 of the ICCPR", - "values": [ - "3 - Considering action" - ] - }, - { - "text": "Continue to seek development and technical assistance for capacity-building from development partners, with a view to finding solutions to the identified challenges militating against the fulfilment of its commitments ", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Plan to re-establish the National AIDS Commission so as to effectively support programmes and policies to combat HIV/AIDS", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Step up all efforts to protect the rights of migrants and also foster their economic and cultural life and improve their standard of living, particularly for large families, and provide them with Government financial support", - "values": [ - "4 - General action" - ] - }, - { - "text": "Continue its measures for the overall alleviation of poverty in the country ", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Further improve the application of the act criminalizing violence against women", - "values": [ - "4 - General action" - ] - }, - { - "text": "Bridge the wage gap between men and women ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Review the laws and measures about marriage, especially of people belonging to minorities", - "values": [ - "3 - Considering action" - ] - }, - { - "text": "The Government is committed to protecting the rights of refugees and ensuring humane treatment.", - "values": [ - "4 - General action" - ] - }, - { - "text": "Promote equal opportunities and enhance strategies against discrimination faced by immigrants and minority groups, both ethnic and religious", - "values": [ - "4 - General action" - ] - }, - { - "text": "Establishing an independent commission chaired by a special Prosecutor to help identify and incarcerate the crimes perpetrated by individuals or groups based on racism", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Revoke the amendments of March 2017 to the Law on prevention of corruption, which compel members of anti-corruption non-governmental organizations to release financial declarations", - "values": [ - "4 - General action" - ] - }, - { - "text": "Consider establishing a national human rights institution in compliance with the Paris Principles", - "values": [ - "3 - Considering action" - ] - }, - { - "text": "Ensure the protection of the human rights of journalists and human rights defenders and guarantee that perpetrators of violations against human rights defenders be brought to justice", - "values": [ - "4 - General action" - ] - }, - { - "text": "Take all necessary steps towards effective implementation of the national action plan on the implementation of the Convention on the Rights of the Child for the period 2017-2022", - "values": [ - "4 - General action" - ] - }, - { - "text": "Continue to intensify efforts to ratify the International Convention for the Protection of all Persons against Enforced Disappearance ", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Ensure that all children are issued with a birth certificate in order to access various social services, with particular focus on children of migrants ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Ratify the Convention on the Rights of Persons with Disabilities (CRPD) ", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Strengthen the dialogue and broad cooperation with human rights defenders, and strengthen their protection ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Revise the practice of excessive use of force to dissolve crowds and protect its inhabitants' rights to freedom of assembly and of association", - "values": [ - "3 - Considering action" - ] - }, - { - "text": "Continue its efforts to establish programmes and promulgate domestic laws aimed at combating all contemporary forms of racism, racial discrimination, xenophobia, linguistic discrimination and related forms of intolerance ", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Further strengthen the judicial institutions through the improvement of the remunerations for public defenders and prosecutors", - "values": [ - "4 - General action" - ] - }, - { - "text": "Carry-out awareness raising campaigns on the importance of adopting a unified law on the family and increasing the minimum age for marriage ", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Guarantee effectively that education is free for all children. ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Enhance the participation of civil society in the strengthening of human rights through appropriate support to civil society organizations, in particular those who focus on the most vulnerable groups, notably children, minorities and indigenous peoples", - "values": [ - "4 - General action" - ] - }, - { - "text": "Adopt additional measures that tend to develop a comprehensive strategy that tends to address the needs of IDPs and provide sustainable solutions", - "values": [ - "4 - General action" - ] - }, - { - "text": "Continue efforts for the appropriate representation of national minorities in public and judicial authorities", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Considering strengthening dialogue with the Council and its special procedures, and cooperation with all relevant United Nations special procedures and mechanisms", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Adopt the necessary measures to prevent overcrowding in prison facilities ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Continue its efforts in relation to its environmental policies", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Implement the relevant treaty body recommendations, in particular the International Covenant on Economic, Social and Cultural Rights (ICESCR) recommendation to step up efforts to prevent and halt killings of so-called "witch children" by including provisions in the criminal law to suppress this practice and organizing campaigns to heighten awareness of its criminal nature among local authorities, doctors, midwives and the population at large", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Adopt the Sexual Offences and Domestic Violence Bill especially to protect women from gender based-violence", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Implement a public awareness campaign to promote the effective implementation of the law granting women the access to rural landownership (Law No. 034/2009/AN)", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Conduct a thorough investigation of the root causes of gender-based violence and base future policy interventions on its results", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Complete its international commitments by ratifying on a priority basis the International Covenant on Civil and Political Rights", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Continue its fight against terrorism", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Ratify the International Convention for the Protection of All Persons from Enforced Disappearance, the Optional Protocol to the Convention against Torture, the Optional Protocol to the Convention on the Elimination of All Forms of Discrimination against Women, and the UNESCO Convention on the Elimination of Discrimination in Education", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Re-establish a moratorium on the death penalty as a first step towards complete abolishment of this practice and accession to the Second Optional Protocol to the ICCPR", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Continue efforts to counter corruption and particularly to look into the opportunity to adopt legislation on corruption in line with the United Nations Convention against Corruption ", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Take effective measures to respond to child abuse by establishing a comprehensive child protection policy", - "values": [ - "4 - General action" - ] - }, - { - "text": "Take more effective steps to ensure that the process of building places of worship for Muslim and other minority groups is facilitated with a view to ensuring freedom of religion for all segments of society", - "values": [ - "4 - General action" - ] - }, - { - "text": "Develop specialized and differentiated programmes to assist migrant children returned or deported to Honduras, with an approach of restoring their rights while ensuring their effective reintegration into the family and society", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Establish a juvenile justice system that not only strives to punish, but rather to help juveniles to re-integrate into society, taking into account existing international standards in this regard ", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Develop and implement a plan of action to combat trafficking in persons in order to combat all forms of exploitation that may be targeting women, children and other vulnerable groups ", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Ensure protection of freedom of expression and association, and take action to protect journalists ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Fully implement the Convention on the Rights of Persons with Disabilities and in this regard designate a focal point as coordination mechanism based on appropriate consultation with DPOs", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Undertake immediate steps to establish an independent police complaints mechanism with a mandate to investigate all allegations of serious human rights violations by law enforcement officials in cases such as sexual violence in custody ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Increase efforts for the ratification of the Arms Trade Treaty with the aim of consolidating common international norms to regulate international trade in conventional arms, ammunition and parts and components, contributing to peace and security, reducing human suffering and promoting cooperation and transparency ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Estonia notes that it is committed to ratifying already this year the Convention of the Rights of Persons with Disabilities (CRPD). However, at this stage, no definitive answer can be given regarding the recommendation to sign and ratify the Optional Protocol to the Convention of the Rights of Persons with Disabilities (OP-CPRD).", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Extend a standing invitation to all Special Rapporteurs of the Human Rights Council ", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Continue to work on programmes to motivate and promote education for young people", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Sustain and create new platforms for human rights education", - "values": [ - "4 - General action" - ] - }, - { - "text": "End discrimination against members of the Rohingya population and members of other minority groups, including by providing a pathway to or restoring citizenship for stateless persons without requiring them to accept ethnic designations they do not agree with, removing restrictions on freedom of movement, and revising discriminatory legislation, including the 1982 Citizenship Act and the four "race and religion" laws", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Accelerate the ratification process of the Convention against Torture and Other Cruel, Inhuman or Degrading Treatment or Punishment ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Amend the Special Marriage Act before its next review ", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Take further appropriate measures to improve the situation of children, in particular children victims of war, children living and-or working in the streets, minors in prison and AIDS orphans.", - "values": [ - "4 - General action" - ] - }, - { - "text": "Strengthen the protection of women from violence, fight against impunity for perpetrators of violence against women and take specific measures for victims ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Ratify the UNESCO Convention against Discrimination in Education ", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Prevent all acts of torture and ill-treatment and ensure prompt and impartial investigations into complaints", - "values": [ - "4 - General action" - ] - }, - { - "text": "Ratify the Second Optional Protocol to the International Covenant on Civil and Political Rights with the view to abolishing the death penalty, signed in 2012, and also amend national criminal legislation on that basis as currently under discussion in the National Assembly", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Appoint a prison ombudsperson to deploy to local prisons to respond to prisoners' complaints", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Strengthen the work of the Human Rights Commission in line with the Paris Principles ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Redouble efforts to prevent and eliminate racial discrimination, xenophobia and the intolerance against migrants, refugees and asylum seekers", - "values": [ - "4 - General action" - ] - }, - { - "text": "Ratify the Convention on the Status of Refugees and its Optional Protocol", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Explore possibilities for further cooperation at the regional and international levels with relevant stakeholders with a view to achieving the Millennium Development Goals related to poverty eradication, nutrition, water and sanitation and environmental sustainability", - "values": [ - "3 - Considering action" - ] - }, - { - "text": "Adopt clear measures to ensure that humanitarian aid is not disrupted in a systematic way", - "values": [ - "4 - General action" - ] - }, - { - "text": "Continue with its efforts to reduce poverty, in particular, to increase its focus on anti-poverty programmes in rural areas", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Better protect the rights of ethnic and other minorities, including so-called "settlers", in particular their rights of citizenship and indigenous rights, and to ensure their equal and non-discriminatory treatment in the whole country", - "values": [ - "4 - General action" - ] - }, - { - "text": "Implement the recommendations made by the Special Rapporteur on extrajudicial, summary or arbitrary executions and take steps to verifiably disarm all paramilitary groups. ", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Promote equal access to education through inclusive policies in the education system aimed at children from poor, foreign and minority families ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Design and implement its action plan for strengthening legal and institutional frameworks to combat racism and racial discrimination, ensuring that all legal provisions are fully applied, that racism and racial discrimination are actively monitored and that training is carried out for all relevant authorities to provide equal access to legal redress for all victims of crime", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Strengthen institutions dealing with the rights of persons with disabilities", - "values": [ - "4 - General action" - ] - }, - { - "text": "Continue its efforts to meet the needs of the elderly and improve the quality of their life regarding housing and transport ", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Accelerate the implementation of training and information programmes for law enforcement officers with a view to combating and suppressing the trafficking in women and girls, and to establish child protection networks to that end", - "values": [ - "4 - General action" - ] - }, - { - "text": "Ratify the Convention against Torture and Other Cruel, Inhuman or Degrading Treatment or Punishment and incorporate its provisions into domestic law ", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Cooperate with all United Nations special procedures mandate holders who wish to visit Iran", - "values": [ - "4 - General action" - ] - }, - { - "text": "Execute the judgments of the European Court of Human Rights regarding the applications of the Turkish Union of Xanthi, the Cultural Association of Turkish Women of Rodopi and the Evros Minority Youth Association", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Proceed to the ratification of the Second Optional Protocol to the International Covenant on Civil and Political Rights aiming at the abolition of the death penalty", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Maintain a strong focus on the issue of domestic violence and implement systematic measures to protect the victims of domestic violence ", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Adopt a national action plan against racism, racial discrimination, xenophobia and related intolerance, including religious intolerance and discrimination", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Promote human rights through education and training", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Strengthen its human rights protection mechanisms for vulnerable groups and indigenous peoples", - "values": [ - "4 - General action" - ] - }, - { - "text": "Intensify cooperation with the Independent Electoral Commission to set a definitive date for holding presidential elections and to ensure that the registry of voters and the identification of the population is carried out in an adequate and reliable manner ", - "values": [ - "4 - General action" - ] - }, - { - "text": "End the prosecution of and release journalists and other individuals detained solely for exercising their rights to freedom of expression, peaceful assembly and association", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Take appropriate measures to address the economic exploitation of children and ensure full respect of their rights in compliance with the international standards set out in the Convention on the Rights of the Child and the ILO fundamental conventions", - "values": [ - "4 - General action" - ] - }, - { - "text": "Ensure more effective protection of victims of domestic violence ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Fully outlaw marriage before the age of 18 without exception in accordance with its international obligations", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Continue to strengthen data collection to better understand the scale and severity of hate crimes, in order to assess the impact of the Hate Crime Action Plan", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Ratify the Convention against Torture and prohibit corporal punishment and other cruel treatment of girls and boys", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Clearly define the mandate and the responsibilities of the national mechanism for the advancement of women and allocating the necessary resources to enable it to promote equality and mainstreaming gender equality and ensuring coordination of activities in this field", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Continue efforts to establish a national human rights commission in accordance with the Paris Principles", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Consider the ratification of those international human rights instruments to which the United States is still not a party", - "values": [ - "3 - Considering action" - ] - }, - { - "text": "Maintain its effective protection of the family as the natural and fundamental unit of the society", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Continue to prioritize the investigation and prosecution of serious international crimes regardless of political affiliation and cooperate with the International Criminal Court in this regard", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Speed up the process of establishment of a human rights commission ensuring its independence and full compliance with the Paris principles", - "values": [ - "4 - General action" - ] - }, - { - "text": "Take further actions in protecting the rights of the child by prohibiting all corporal punishment of children as required by the Convention on the Rights of the Child", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Continue to take positive efforts and measures to maintain access to education for all", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Address the overcrowding of prisons, including through actions to minimize long pretrial detention periods", - "values": [ - "4 - General action" - ] - }, - { - "text": "Strengthen its efforts for the promotion of equality between men and women, and take measures to increase the active participation of women in political and public life ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Take further steps to mitigate the impact of the economic crisis and the austerity measures on social and economic rights of the most vulnerable groups of the society", - "values": [ - "4 - General action" - ] - }, - { - "text": "Take measures to ensure reparation to victims of acts of torture committed under United States' control and allow access to the International Committee of the Red Cross to detention facilities under the control of the United States", - "values": [ - "4 - General action" - ] - }, - { - "text": "Take necessary steps to establish a national human rights institution.", - "values": [ - "4 - General action" - ] - }, - { - "text": "Step up efforts to improve its legal and institutional frameworks for protection against discrimination", - "values": [ - "4 - General action" - ] - }, - { - "text": "Broaden the understanding of the definition of trafficking and to mainstream a human-rights based approach in dealing with policies directed towards eliminating trafficking in persons", - "values": [ - "4 - General action" - ] - }, - { - "text": "Review national and local legislation, including provincial by-laws, to ensure that freedom of religion and belief is universally protected", - "values": [ - "3 - Considering action" - ] - }, - { - "text": "Recommended that further measures be put in place to ensure that the cultural and traditional beliefs practiced in customary law applied by the Local Courts do not lead to discrimination against women.", - "values": [ - "4 - General action" - ] - }, - { - "text": "Ensure the effective implementation of the relevant action plans, including the National Roma Integration Strategy", - "values": [ - "4 - General action" - ] - }, - { - "text": "Take necessary steps to improve treatment of prisoners in compliance with international standards", - "values": [ - "4 - General action" - ] - }, - { - "text": "Guarantee for each and every person including journalists and defenders of human rights the exercise of freedom of expression, to this end, conduct serious and complete investigations into cases of intimidation and to bring offenders to justice ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Continue its persistent efforts to promote mechanisms for the protection of the rights of children, particularly children with disabilities, and to secure their rights, and continue the implementation of programmes for children ", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Continue efforts and ensure the full implementation of legislation regarding violence against women and prosecute and sanction those responsible for such acts in line with the recommendation made by the Committee on the Elimination of Discrimination against Women", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Sign and ratify the International Covenant for the Protection of All Persons from Enforced Disappearance", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Continue its efforts and strong policy to address all forms of violence and discrimination against women, minorities and other vulnerable groups.", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Grant unfettered access to Belarus for international human rights monitors", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Continue the endeavour to facilitate the access of elderly persons to preventive services and necessary treatment", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Include in its national legislation specific and explicit safeguards guaranteeing that no evidence obtained through torture or other ill treatment may be used before the court ", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Effectively incorporate the provisions of the international human rights instruments into national legislation", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Continue the fight against impunity, and to provide justice for victims of crimes", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Continue its measures in laws and other pieces of legislation concerning the promotion of equity, the situation of women and their education opportunities ", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Ratify the Convention on the Rights of Persons with Disabilities (CRPD).", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Take measures to implement and guarantee international human rights for asylum seekers, and in particular the right of women and girls who are seeking asylum to be protected from gender-based violence", - "values": [ - "4 - General action" - ] - }, - { - "text": "Further enhance the operational effectiveness of the national human rights institutions in accordance with their mandates through the provision of adequate human and financial resources", - "values": [ - "4 - General action" - ] - }, - { - "text": "Pursue the development of its institutional framework concerning the promotion and protection of human rights ", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Enhance policies and measures to protect social vulnerable groups, especially women, children and elderly persons", - "values": [ - "4 - General action" - ] - }, - { - "text": "Ensure women's equal access to employment", - "values": [ - "4 - General action" - ] - }, - { - "text": "Fulfil all the commitments made on transitional justice, including through the creation of an accountability mechanism which is credible, victim-centric and supported by international practitioners and through full operationalization of independent and impartial work of the recently established Office of Missing Persons", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Continue efforts to protect effectively women, children, and ethnic minorities\u2019 rights, and combat discrimination they are facing", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Lift the reservation on article 4 of the International Convention on the Elimination of All Forms of Racial Discrimination", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Increase efforts aimed at combating intersectional discrimination against women and girls based on their belonging to ethnic minority groups or on gender", - "values": [ - "4 - General action" - ] - }, - { - "text": "Intensify youth programs and create more employment opportunities for young people", - "values": [ - "4 - General action" - ] - }, - { - "text": "Continue the constructive cooperation with the human rights treaty bodies", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "The National Human Rights Commission of Mongolia, which has an - A - status accreditation, should play a decisive role in the exercise of drafting a gender equality law as well as during its implementation ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Consider acceding to the main human rights instruments, including ICCPR, ICESCR and CAT ", - "values": [ - "3 - Considering action" - ] - }, - { - "text": "Continue and strengthen efforts to combat poverty with the assistance of the international community ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Adopt and implement, through an inclusive and a participatory process, national policies for the promotion and protection of children's rights, with a particular focus on the right to an adequate standard of living and the right not to be subjected to any form of discrimination, exploitation or violence", - "values": [ - "4 - General action" - ] - }, - { - "text": "Continue to train public officials on human rights", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Continue working to combat child, early and forced marriage, to legally prohibit female genital mutilations and to increase support to girls from the poorest households and rural areas who are reportedly more at risk of being subject to these practices", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Allow the National Human Rights Commission to fully exercise its functions, in line with the Paris Principles", - "values": [ - "4 - General action" - ] - }, - { - "text": "Take appropriate measures to meet the needs of indigenous and rural populations that still have clear difficulties to access to safe drinking water and sanitation", - "values": [ - "4 - General action" - ] - }, - { - "text": "Adopt and implement efficiently a law against domestic violence ", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Continue efforts and endeavours to improve overall human rights protection in the country ", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "The Ministry of Justice, jointly with civil society organizations, should consider conducting awareness-raising campaigns among parliamentary representatives and society as a whole", - "values": [ - "3 - Considering action" - ] - }, - { - "text": "Continue to promote programmes for access to education for all, in particular in primary education ", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Repeal the 1980 Law on publications and amend other relevant legislation to ensure it is aligned with international human rights law on the freedom of expression ", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Continue the efforts to implement the Strategy of the Government of Romania for the inclusion of the Romanian citizens belonging to the Roma minority for the period 2012-2020 ", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Design and implement a series of measures to combat discriminatory stereotypes, including stereotypes based on gender", - "values": [ - "4 - General action" - ] - }, - { - "text": "Move towards ratification of the International Convention for the Protection of All Persons from Enforced Disappearance", - "values": [ - "4 - General action" - ] - }, - { - "text": "Take more effective procedures to counter discrimination and xenophobia ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Promote a gender equality law regarding the rights to property, inheritance and marriage ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Ratify the Rome Statute of the ICC and fully align its legislation with the Rome Statute", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Further develop measures against domestic violence against women", - "values": [ - "4 - General action" - ] - }, - { - "text": "Repeal laws that criminalize homosexuality", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Provide additional funding for the protection of religious minorities", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Take further action against the use of excessive force by the police", - "values": [ - "4 - General action" - ] - }, - { - "text": "Mainstream the principle of non-discrimination and equality in the Basic Law of Israel that discriminates against non-Jewish children and undertake measures necessary to stop policies and measure that affect Palestinians resident in the occupied State of Palestine", - "values": [ - "4 - General action" - ] - }, - { - "text": "Further promote equal treatment between women and men by increasing national awareness campaigns on gender equality, especially on women's rights", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Ensure the full independence of the Office of the Ombudsman in accordance with the Paris Principles on independent national human rights institutions ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Initiate and promote a public debate on abortion in cases of diagnosed medical necessity and decriminalize abortion in such cases ", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Take legislative and practical steps to guarantee that LGBTI persons can enjoy all human rights without discrimination", - "values": [ - "4 - General action" - ] - }, - { - "text": "Provide its National Human Rights Commission with the resources it needs to publicise its recommendations and reinforce its independence", - "values": [ - "4 - General action" - ] - }, - { - "text": "Step up its efforts aimed at strengthening its effective implementation of the Convention against Torture and other Cruel, Inhuman or Degrading Treatment or Punishment", - "values": [ - "4 - General action" - ] - }, - { - "text": "Continue implementing its socio-economic development strategies and plans ", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Take action to stop attacks on human rights defenders and make sure that perpetrators are held accountable for crimes committed, in accordance with international standards", - "values": [ - "4 - General action" - ] - }, - { - "text": "Establish an independent national human rights institution in full compliance with the Paris Principles", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Take concrete measures to improve the independence of the judiciary", - "values": [ - "4 - General action" - ] - }, - { - "text": "Carry out thorough, transparent and independent investigations into all reports of alleged human rights violations and abuses since March 2011, and bring the perpetrators to justice", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "While paying special tribute to the pioneering role of Brazil in developing bio fuels based on non-edible agricultural products, scale up this experience and preserve the right to food.", - "values": [ - "4 - General action" - ] - }, - { - "text": "Further strengthen its efforts by enacting national legislation to prohibit harmful practices and strengthen its efforts to increase awareness on women's rights ", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Amend and where necessary repeal all legislation which restricts the ability of journalists to carry out their work freely and which impacts upon the independence of the media", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Adopt and comprehensively implement the draft law on the marriage among same-sex persons ", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Ensure a prompt, complete and effective implementation of the action plan to bring the recruitment of child soldiers to an end", - "values": [ - "4 - General action" - ] - }, - { - "text": "Continue to consolidate the national development plan on the eradication of poverty", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Effectively guarantee the exercise of freedom of expression, association and peaceful assembly and the right to participate in public life and politics, in line with the obligations set forth in the Covenant on Civil and Political Rights", - "values": [ - "4 - General action" - ] - }, - { - "text": "Accede to the Convention on the Rights of All Migrant Workers and Members of Their Families in accordance with Recommendation 1737 of 17 March 2006 of the Parliamentary Assembly of the Council of Europe ", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "The State is committed to improving its cooperation with the special procedures and to ensuring transparency in its dealings with them.", - "values": [ - "4 - General action" - ] - }, - { - "text": "Continue and strengthen policies to combat all forms of discrimination, with special attention to discrimination against women, and establish a legal framework to combat domestic violence ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Adopt a law to prevent, punish and eradicate violence against women", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Consider the ratification of ICRMW", - "values": [ - "3 - Considering action" - ] - }, - { - "text": "Seek further cooperation with the international community and relevant United Nations agencies to enhance its technical capacity-building in mitigating the impact of climate change on its efforts to promote and protect human rights within its country", - "values": [ - "1 - Minimal action" - ] - }, - { - "text": "Establish stronger measures to increase access to education particularly to those living in rural areas", - "values": [ - "4 - General action" - ] - }, - { - "text": "Strengthen measures directed towards the protection from discrimination and further integration of the Roma ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Adopt measures to promote tolerance towards homosexuality, which would also facilitate more effective educational programmes for HIV-AIDS prevention", - "values": [ - "4 - General action" - ] - }, - { - "text": "Ratify ICPPED, signed in February 2007 ", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Maintain the peaceful atmosphere that was created by the Comprehensive Peace Agreement throughout the six years of the transitional period, by taking measures to reduce tension and all parties should refrain from taking any unilateral steps that would undermine the purpose of the Agreement ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Strengthen measures taken at national level to ensure food security in the country ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Provide mandatory human rights training for its police force ", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Consider establishing as a first step a moratorium with a view to abolishing the death penalty", - "values": [ - "3 - Considering action" - ] - }, - { - "text": "Adopt labour laws and social security norms in accordance with international protection standards, criminalize sexual abuse, and adequately regulate child labour", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Complete the investigation on its involvement in Central Intelligence Agency rendition and secret detention programmes, within a reasonable time", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Implement the recommendations of the ad hoc committee mandated by the National Assembly, and conduct an independent and transparent investigation into the excessive use of force leading to the punishment of those responsible ", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Continue to make efforts to promote the rights of children so as to improve their situation, particularly in the areas of education and health care ", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "End all restrictions on political activities and meetings and allow the registration of political parties, as recognize under the Constitution.", - "values": [ - "4 - General action" - ] - }, - { - "text": "Continue the effective implementation of the CRPD", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Ensure the full realization of freedom of association and freedom of expression and revise all legislation excessively restricting the work of civil society, including the envisaged so-called "foreign agents" law stigmatizing and crippling the work of NGOs", - "values": [ - "4 - General action" - ] - }, - { - "text": "Eliminate discrimination against migrants and religious and ethnic minorities and ensure equal opportunity for enjoyment of their economic, social and cultural rights ", - "values": [ - "4 - General action" - ] - }, - { - "text": "When human rights violations occur, hold security forces and other government officials accountable and provide appropriate remedies for victims of abuses and discrimination, including against members of vulnerable populations", - "values": [ - "4 - General action" - ] - }, - { - "text": "Intensify measures to effectively combat child sexual abuse and exploitation", - "values": [ - "4 - General action" - ] - }, - { - "text": "Carry on its efforts on education and training for the population ", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Examine the possibility of ratifying OP-CAT and the Rome Statute", - "values": [ - "3 - Considering action" - ] - }, - { - "text": "Ensure that any death in custody is investigated by an independent and impartial authority", - "values": [ - "4 - General action" - ] - }, - { - "text": "Carry out all necessary efforts aimed at achieving the ratification of the human rights treaties signed by Angola between 2013 and 2014", - "values": [ - "4 - General action" - ] - }, - { - "text": "Continue working closely with the Independent Expert on the situation of human rights in Haiti ", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Develop, in partnership with indigenous communities, a national strategy to implement the United Nations Declaration on the Rights of Indigenous Peoples", - "values": [ - "4 - General action" - ] - }, - { - "text": "Continue to support employment generation among the young people", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Eliminate the mandatory character of caning as a first step with a view to abolishing this practice altogether", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Ensure the safety of journalists against violence and harassment", - "values": [ - "4 - General action" - ] - }, - { - "text": "Further improve the situation pertaining to minority issues, especially in the social and economic fields for the disadvantaged groups, and promote equal opportunities for them to have access to education and other related sectors at all levels", - "values": [ - "4 - General action" - ] - }, - { - "text": "Continue with efforts to counter hate speech, as well as incitement to xenophobia and discrimination for nationality or religious reasons", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Accede to CED", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Consider legally abolishing the death penalty as soon as possible.", - "values": [ - "3 - Considering action" - ] - }, - { - "text": "Continue its efforts to combat social inequality and poverty", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Ratify the first Optional Protocol to ICCPR before the next UPR cycle ", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Continue efforts to restore security and stability and to achieve a national comprehensive reconciliation", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Put the law on polygamy in effect.", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Ensure effective monitoring of the electronic wage protection system at national level and extend its implementation to all companies based in Oman", - "values": [ - "4 - General action" - ] - }, - { - "text": "Ratify the main international human rights instruments, particularly ICCPR and ICESCR, the International Convention on the Elimination of All Forms of Racial Discrimination, the Convention against Torture and the Optional Protocol thereto, the Convention on the Rights of Persons with Disabilities, the International Convention for the Protection of All Persons from Enforced Disappearance, the Optional Protocols to CEDAW and the Convention on the Rights of the Child", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Extend a standing invitation to all special procedures mandate holders as a sign of goodwill to cooperate fully with all human rights mechanisms ", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Guarantee the prohibition of use of cruelty and excessive or fatal force by law enforcement officials against people of Latin American or African origin as well as illegal migrants and to investigate such cases of excessive use of force", - "values": [ - "4 - General action" - ] - }, - { - "text": "Integrate gender perspective when addressing impunity and lack of safety of journalists and human rights defenders", - "values": [ - "4 - General action" - ] - }, - { - "text": "Allow the United Nations humanitarian agencies full and unconditional countrywide humanitarian access", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Enforce the implementation of the National Prison Policy at all levels and work towards establishing more juvenile courts and juvenile retention homes especially on Zanzibar", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Increase effort being carried out to combat violence against women ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Expedite the ratification of the ICCPR", - "values": [ - "4 - General action" - ] - }, - { - "text": "Prioritize the early establishment of a national human rights institution in line with the Paris Principles ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Criminalize public incitement of acts against persons on the basis of sexual orientation or gender identity ", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Abolish the death penalty and ratify the second Optional Protocol to the International Covenant on Civil and Political Rights", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Accede to or ratify the Second Protocol to the International Covenant on Civil and Political Rights, which promotes international commitment in abolishing the death penalty ", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Strengthen and widen the scope of the awareness campaigns against child abuse, as well as the establishment of the Action Team on Child Protection to oversee cases of abuse, including corporal punishment ", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Ratify the Convention against Torture Articles 21 and 22", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Take appropriate measures to implement its commitments referred to in paragraphs 119 and 120 of the national report, in particular ratifying various international instruments.", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Reinforce advocacy and information measures through specific human rights education and training programmes.", - "values": [ - "4 - General action" - ] - }, - { - "text": "Continue to work to review its domestic legal framework in order to harmonize it with international norms to which Grenada is a party ", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Fully implement and enforce laws on elimination of violence against children", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Further address all forms of gender-based violence, including the issue of incorporating the definition of gender-based violence in the National Programme for the Prevention of Domestic Violence and Provision of Assistance to Victims for 2014-2020", - "values": [ - "4 - General action" - ] - }, - { - "text": "Cooperate with Treaty Bodies in submitting its reports regularly", - "values": [ - "4 - General action" - ] - }, - { - "text": "Take all the necessary measures to put an end to violence committed against women and children", - "values": [ - "4 - General action" - ] - }, - { - "text": "Adopt rapidly all the necessary measures to put the law on violence against women into practice", - "values": [ - "4 - General action" - ] - }, - { - "text": "Strengthen policies to counter the phenomenon of homelessness, especially among children, and put an end to it", - "values": [ - "4 - General action" - ] - }, - { - "text": "Establish without delay an effective, well-resourced and staffed national preventive mechanism according to the Optional Protocol to the Convention against Torture", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Establish a national plan on human rights ", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Adopt and implement a National Policy for persons with disabilities", - "values": [ - "4 - General action" - ] - }, - { - "text": "Amend its legislation to guarantee that freedom of expression on the Internet cannot be limited by the arbitrary decision of authorities", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Guarantee the inapplicability of laws and customs which discriminate against women and increase awareness-raising activities in this area", - "values": [ - "4 - General action" - ] - }, - { - "text": "Conduct a review of legislation to ensure that it complies with article 19 of ICCPR, which protects the right to freedom of expression", - "values": [ - "3 - Considering action" - ] - }, - { - "text": "Set up a monitoring system to ensure the rights of migrants and members of their families, especially rights to housing, employment and education ", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Launch additional awareness programmes that aim at enhancing the degree of awareness of women's rights and address the misconception between sharia law and negative cultural patterns", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Ratify the Kampala Amendments to the Rome Statute of the International Criminal Court on the crime of aggression ", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Make urgent efforts to ensure humane conditions for detainment in prisons. ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Ensure and guarantee non-discriminatory access to health services, education, justice and employment for all persons, irrespective of their actual or perceived sexual orientation or gender identity", - "values": [ - "4 - General action" - ] - }, - { - "text": "Continue, diversify and strengthen its policy for the promotion of women and the protection of children", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Establish a national regulatory framework for the assessment of human rights and environmental impact of companies headquartered in Switzerland", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Exert more efforts aiming at the elimination of all forms of discrimination against women, particularly in the labour market", - "values": [ - "4 - General action" - ] - }, - { - "text": "Ensure adequate funding for education to increase the number of schools and teachers and ensure equal access of girls to all levels of education ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Promptly ratify and implement the Optional Protocol to CAT", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Finalize the National Policy for Women within a reasonable time frame ", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "The recommendations which we accept will enjoy our commitment in terms of implementation", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Improve its overall cooperation with United Nations human rights mechanisms, in particular all mechanisms of the Council and the treaty bodies", - "values": [ - "4 - General action" - ] - }, - { - "text": "Ratify the International Convention on the Protection of all Persons from Enforced Disappearance, and accept the competence of the Committee on Enforced Disappearances pursuant to articles 31 and 32 of the Convention", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Make its immigration procedures more transparent and objective and take concrete measures to avoid the misuse of procedures to profile on the basis of race, religion and origin", - "values": [ - "4 - General action" - ] - }, - { - "text": "Action in order to build broad support for LGBT-rights in the new comprehensive anti-discrimination law ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Raise the age of criminal responsibility so that it is in line with the international commitments undertaken by Belize", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Ensure the protection of freedom of expression and of assembly in law and in practice, especially with regard to political participation and the safety of journalists", - "values": [ - "4 - General action" - ] - }, - { - "text": "Enact those pending bills that are aimed at empowering women, including the women's Reservation Bill and the amendments to Panchayati Raj Act ", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "That further efforts should be taken to improve the detention regime, taking into consideration the recommendations in the UNHCR Position Paper", - "values": [ - "4 - General action" - ] - }, - { - "text": "Ensure that the minimum age of marriage at 18 years of age is respected, including by preventing judges from authorizing children to marry under article 20 of the Family Code", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Ratify the United Nations Convention on the Rights of Persons with Disabilities by the next UPR review", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Cyprus is committed to completing the process of ratification in the near future, including the Optional Protocol to the Convention on the Rights of the Child on the involvement of children in armed conflict (OP-CRC-AC).", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Continue efforts to strengthen the institution of the family and improve the situation of women ", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Proceed with the establishment of a National Preventive Mechanism against Torture in accordance with the Optional Protocol to the Convention against Torture, ensuring their independence, adequate funding and resources, and the development of a detailed plan for its effective implementation ", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Adopt comprehensive legislation on discrimination", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Approve the request for a visit by the Special Rapporteur on freedom of religion or belief ", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Adopt a stand-alone law to combat domestic violence, so that violence against women will be qualified as a criminal and civil offence subject to prosecution", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Ratify OP-CAT and incorporate it into national legislation ", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Further strengthen measures aimed at combating discriminatory practices towards minorities, in particular the Roma community", - "values": [ - "4 - General action" - ] - }, - { - "text": "Continue to address issues pertaining to IDPs, in line with the relevant state programmes", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Strengthen measures to combat more effectively all forms of discrimination and violence against women, taking into account that in this matter, customs and traditions are often the main obstacle to overcome, in order to achieve the objectives", - "values": [ - "4 - General action" - ] - }, - { - "text": "Adopt and implement without delay a Children's Code incorporating the provisions of international human rights treaties, in particular the United Nations Convention on the Rights of the Child, ILO Convention No. 182 on the Worst Forms of Child Labour, and ILO Convention No. 138 on the Minimum Age for Admission to Employment ", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Continue the efforts and cooperation in combatting trafficking in persons in regional frameworks along with the share of the country's positive experience in this field", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Continue its efforts to effectively implement its Development Plan on Social Protection ", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Establish a community education program to raise awareness of domestic violence against women and options open to them to bring an end to this crime", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Pay priority attention to education and training in the area of human rights for staff of the law enforcement bodies, courts and investigative bodies ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Further intensify its engagement with the international community, especially with developing countries, to exchange and share its best practices relating to the efforts on strengthening the rule of law and socio-economic development", - "values": [ - "1 - Minimal action" - ] - }, - { - "text": "Take measures to protect human rights defenders from prosecution and ensure a safe environment for their activities.", - "values": [ - "4 - General action" - ] - }, - { - "text": "Accede to the 1954 Convention relating to the Status of Stateless Persons and the 1961 Convention on the Reduction of Statelessness ", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Take all necessary measures to guarantee the independence of justice without control or political interference ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Set up a National Human Rights Institution in conformity with the Paris Principles", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Continue to implement appropriate measures and allocate necessary resources to ensure that the objectives of its national strategy on equality and gender are achieved", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Recognize gender identity as possible ground for discrimination and gender identity and sexual orientation as an aggravating circumstance for hate crime ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Introduce human rights education for all government officials and departments and ensure that a human rights-based approach is mainstreamed across government policy.", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Step up protection for persons with disabilities with a rights-based approach in order to ensure their full integration into society", - "values": [ - "4 - General action" - ] - }, - { - "text": "Ratify the ILO Work on Fishing Convention, 2007 (N0. 188)", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Take measures to ensure the access of migrants and non-citizens, especially children, to justice, employment, education, housing and health services ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Ratify and implement OP-CAT at the earliest possible date", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Take practical steps, including through public information campaigns and greater community-level engagement, to accelerate the eradication of FGM and to reduce the number of child, early and forced marriages", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Encourage the adoption and implementation of legislation to combat all forms of discrimination, in compliance with international human rights standards and in line with Paraguay's commitments", - "values": [ - "4 - General action" - ] - }, - { - "text": "Take measures to reduce inequalities between social categories, in particular regarding the youth ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Strengthen efforts to prevent and combat all forms of discrimination and violence against women, also by adopting and implementing effective measures on the issue, and ensure that women victims of violence receive appropriate help and that perpetrators are brought to justice", - "values": [ - "4 - General action" - ] - }, - { - "text": "Consider favourably the ratification of the International Convention on the Protection of the Rights of All Migrant Workers and Members of their Families ICRMW ", - "values": [ - "3 - Considering action" - ] - }, - { - "text": "Amend or repeal articles 227 and 239 of the Criminal Code to explicitly criminalize marital rape and redefine rape in line with international standards", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Strengthen efforts on the implementation of the Child Care and Protection Act", - "values": [ - "4 - General action" - ] - }, - { - "text": "Extend in the region the positive experience in education and health care, including through special training", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Take all necessary measures to enhance the effectiveness of the Office of the Ombudsman and include, inter alia, effective monitoring and promotion of the rights of persons belonging to national minorities.", - "values": [ - "4 - General action" - ] - }, - { - "text": "Put forward its best efforts to ensure women's empowerment, representation and advancement, especially in the public sector ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Strengthen cooperation with the special procedures of the Council.", - "values": [ - "4 - General action" - ] - }, - { - "text": "Provide more convenient living conditions to children without parents", - "values": [ - "4 - General action" - ] - }, - { - "text": "Strengthen norms and programmes to combat discrimination and violence based on sexual orientation and gender identity", - "values": [ - "4 - General action" - ] - }, - { - "text": "Ensure respect for freedom of expression, in particular with regard to journalists, associations and non-governmental organizations defending fundamental rights, including the rights of lesbian, gay, bisexual, transgender and intersex persons", - "values": [ - "4 - General action" - ] - }, - { - "text": "Take concrete steps including becoming a party to and implementing CRC and CEDAW ", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Reinforce the harm reduction measures targeting drug users in order to avoid adverse health effects, including increased HIV infections and hepatitis", - "values": [ - "4 - General action" - ] - }, - { - "text": "Undertake efforts towards eradication of gender stereotypes that have negative impact on the situation of women, in particular those from the rural areas", - "values": [ - "4 - General action" - ] - }, - { - "text": "Adopt legislative or other measures and awareness-raising campaigns to combat and prevent discrimination and societal stigma, in particular against persons with disabilities and persons affected by HIV/AIDS ", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Prioritize efforts to implement domestic policies to give effect to the protection of human rights, and the prevention of politically-motivated violence and intimidation ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Promote initiatives to protect women from violence, such as the national network on violence against women, and the national observatory against sexual and gender-based violence, and elaborate the national plan to combat all forms of violence, including domestic violence", - "values": [ - "4 - General action" - ] - }, - { - "text": "The Ministry of Disaster Management and Human Rights will organize a regional seminar for parliamentarians on a human rights related theme in 2008.", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Ratify the Optional Protocol to the International Covenant on Economic, Social and Cultural Rights and the Optional Protocol to the Convention against Torture", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Continue its efforts towards achieving gender equality and the attainment of the MDGs for all Algerians", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Adopt legislation to decriminalize homosexuality and to recognize the rights of lesbian, gay, bisexual and transgender people", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Recognize the important work of human rights defenders and ensure their effective protection against threats and violence due to their work", - "values": [ - "4 - General action" - ] - }, - { - "text": "Implement without delay the recommendations of treaty bodies and special procedures of the Human Rights Council", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Continue efforts to ensure protection of human rights for inclusive development and to reduce the level of poverty, particularly in rural areas and among the vulnerable strata of the population", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Include in the Criminal Code violence, sexual attacks and abuse perpetrated by spouses", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Further strengthen measures to prevent and combat discrimination and hate crimes against ethnic minorities and other vulnerable groups, including lesbian, gay, bisexual and transgender persons ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Enhance the role of youth and empower them in nation-building", - "values": [ - "4 - General action" - ] - }, - { - "text": "Review the effectiveness of its current legal framework on nondiscrimination with a view to initiating a harmonization process, by including the participation of civil society in this process, as well as simplifying the procedures to ensure that the complaints against racial discrimination are being processed effectively ", - "values": [ - "3 - Considering action" - ] - }, - { - "text": "Strengthen efforts to prevent violence against women", - "values": [ - "4 - General action" - ] - }, - { - "text": "Accede to the OPCAT, improve its national implementation of the CAT, establish an independent and effective complaints procedure for victims of torture and review its compliance with the principle of non-refoulement", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Continue the policy to promote and protect women's rights ", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Ratify ICCPR and its Second Optional Protocol ", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Move and speed up the amendment of the criminal code to punish sexual violence, and to adopt a comprehensive law to punish violence against women and children", - "values": [ - "4 - General action" - ] - }, - { - "text": "Expedite the drafting and the adoption of the gender equality bill ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Adopt measures to put an end to harmful practices, such as early and forced marriages and genital mutilation, in line with the 2030 Agenda for Sustainable Development", - "values": [ - "4 - General action" - ] - }, - { - "text": "Take further measures to reduce the backlog of judicial cases, both nationally and at the European Court of Human Rights", - "values": [ - "4 - General action" - ] - }, - { - "text": "Redouble efforts to ensure the enjoyment of human rights of all migrants, ensuring decent and fair treatment regardless of their immigration status", - "values": [ - "4 - General action" - ] - }, - { - "text": "Become party to the Optional Protocol to the Convention on the Elimination of All Forms of Discrimination against Women ", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Withdraw reservations to CAT and CRC ", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Address concerns about increasing interference by the executive in the judiciary", - "values": [ - "4 - General action" - ] - }, - { - "text": "Continue to take further steps to strengthen its education system, particularly through the initiatives outlined in its Strategic Plan ", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Consider ratification of the Convention on the Protection of the Rights of All Migrant Workers and Members of Their Families", - "values": [ - "3 - Considering action" - ] - }, - { - "text": "Decriminalize defamation and make it part of the Civil Code", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Continue to facilitate education for all with due regard to girls' education and nondiscriminatory access and ensuring its quality ", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Take all the necessary measures to ensure that journalists are not subject to violence and reprisals for their work", - "values": [ - "4 - General action" - ] - }, - { - "text": "To keep, as a priority for the country, the protection of the right to life of all Cubans in confronting the various dangers of disaster ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Carry out without further delay an independent, credible investigation into the unexplained disappearance of a human rights defender, Sombath Somphone, which occurred on 15 December 2012 in Vientiane", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Protect the rights of internally displaced persons and fight discrimination against them", - "values": [ - "4 - General action" - ] - }, - { - "text": "Adopt necessary legislative and administrative measures to guarantee the security of LGBT persons and facilitate their access to justice and legal assistance ", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Continue its cooperation with various international organizations particularly the Office of the United Nations High Commissioner for Human Rights in order to achieve additional progress in the field of economic, social and cultural rights", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Canada is committed to the promotion and implementation of the Convention on the Rights of the Child (CRC) and does so through a combination of constitutional protections and FPT legislative and administrative measures, in keeping with its longstanding approach.", - "values": [ - "4 - General action" - ] - }, - { - "text": "Continue implementing the 3N Initiative in order to ensure the full realization of the right to food", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Continue consolidating the educational system in line with the needs of their population, to make progress towards delivering social well-being and encouraged Nigeria to continue on this path with the support and cooperation of the international community", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Consider establishing a comprehensive legislation to combat discrimination faced by LGBT people ", - "values": [ - "3 - Considering action" - ] - }, - { - "text": "Adopt comprehensive anti-discrimination legislation, including on the basis of sexual orientation and gender identity", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Continue its efforts to raise public awareness and to include human rights education in the school curricula", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Consider expediting the ratification of the core human rights treaties, including the Optional Protocol to the Convention against Torture and Other Cruel, Inhuman or Degrading Treatment or Punishment and the International Convention on the Protection of the Rights of All Migrant Workers and Members of Their Families", - "values": [ - "3 - Considering action" - ] - }, - { - "text": "In view of the increasing challenges posed by climate changes, develop a human rights-based climate change adaptation strategy ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Publicize and implement the national human rights action plan", - "values": [ - "4 - General action" - ] - }, - { - "text": "Reinforce its efforts even further and call upon the international community and specially OHCHR to assist Djibouti by providing technical assistance for the implementation of recommendations from treaty bodies", - "values": [ - "1 - Minimal action" - ] - }, - { - "text": "Further work to achieve effective equality between men and women, particularly when it comes to laws governing divorce, inheritance and custody of children", - "values": [ - "4 - General action" - ] - }, - { - "text": "Place greater emphasis on sensitization and gather data disaggregated by age, gender and the relationship between victims and offenders in relation to gender-based violence", - "values": [ - "4 - General action" - ] - }, - { - "text": "Ensure that the new ten-year plan between the Ministry of Justice and the Anti-Corruption Office fully addresses corruption practices in all branches of the judiciary, civil service and armed forces", - "values": [ - "4 - General action" - ] - }, - { - "text": "Consider signing and ratifying the Optional Protocol to Convention on the Elimination of All Forms of Discrimination against Women ", - "values": [ - "3 - Considering action" - ] - }, - { - "text": "Consider signing and ratifying OP-ICESCR", - "values": [ - "3 - Considering action" - ] - }, - { - "text": "Continue the ratification process for the main international instruments ", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Establish an independent National Commission on Indigenous Peoples and ensure that laws, policies and their implementations are in accordance with the United Nations Declaration on the Rights of Indigenous Peoples ", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Protect human rights defenders and journalists against harassment and attacks and to fully ensure freedom of assembly ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Continue efforts to protect and promote human rights in conformity with its self pledged commitments and the development needs of society.", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "End impunity through a credible investigation by the special judicial commission and try those responsible for human rights violations", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Abolish corporal punishment in all settings, and strengthen child protection systems in full compliance with international human rights obligations, including through the implementation of national child protection programmes by December 2018 ", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Expedite the process to put in place a human rights action plan", - "values": [ - "4 - General action" - ] - }, - { - "text": "Improve access for Afro-Ecuadorians to decent housing, education and good living", - "values": [ - "4 - General action" - ] - }, - { - "text": "Ensure that its NHRI accords in full with the Paris Principles ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Continue the national reconciliation endeavours in order to restore security and stability all over the country ", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Ratify the International Convention on the Protection of the Rights of All Migrant Workers and Members of Their Families (ICRMW)", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Ratify the International Covenant on Economic, Social and Cultural Rights and its Optional Protocol ", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Effectively implement United Nations treaty bodies' recommendations", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Take necessary measures, so as not to allow the lowering of the minimum age of criminal responsibility ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Establish a NHRI in accordance with the Paris Principles through the legislative process.", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Continue to extend cooperation with the United Nations and to make the best use of the international expertise available through the relevant international mechanisms", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Enhance and improve laws and legislation to combat all forms of discrimination, racism and foreign hatred", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Sign and ratify the International Convention on the Protection of the Rights of All Migrant Workers and Members of their Families", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Take urgent measures to guarantee better conditions of detention and that the application of preventive detention is not the norm, strictly limiting its duration through alternative non-custodial measures", - "values": [ - "4 - General action" - ] - }, - { - "text": "Adopt new measures to strengthen the participation of women in the decision-making process ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Further strengthen the temporary special measures in areas in which women are underrepresented", - "values": [ - "4 - General action" - ] - }, - { - "text": "Give priority to combating corruption and incompetence in the judiciary, and provide sufficient human and material resources for the administration of justice ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Increase the initiatives to guarantee access for all to drinking water and sanitation ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Strengthen measures aimed at poverty eradication ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Consider ratifying the ICRMW as well as ratifying the ILO Convention No. 189", - "values": [ - "3 - Considering action" - ] - }, - { - "text": "Ensure that all laws and policies adopted are in conformity with international human rights law and standards, including on the fight against terrorism", - "values": [ - "4 - General action" - ] - }, - { - "text": "Adopt laws to increase the age of criminal responsibility", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Continue and strengthen actions put in place to improve the rights of children and women, and the right to health for all its population", - "values": [ - "4 - General action" - ] - }, - { - "text": "Take all measures to avoid incidents of violations of the Standard Minimum Rules for the Treatment of Prisoners", - "values": [ - "4 - General action" - ] - }, - { - "text": "Establish a moratorium on executions with a view to removing the death penalty from its criminal statutes and ratifying the Second Optional Protocol to the International Covenant on Civil and Political Rights ", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "The Afghan Government sign and ratify the Second Optional Protocol to the ICCPR, abolish the death penalty and commute the sentences of those facing execution.", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Take all necessary measures to implement the Optional Protocol to the Convention on the Rights of the Child, particularly to combat the sale, exploitation, and prostitution of children", - "values": [ - "4 - General action" - ] - }, - { - "text": "Consider the possibility of withdrawing its reservation to article 30 of the Convention on the Rights of the Child in line with the principles of the French Constitution, especially after the 2008 reform", - "values": [ - "3 - Considering action" - ] - }, - { - "text": "Maintain its positive efforts to improve the juvenile justice system in conformity with the Convention on the Rights of the Child and the United Nations Standard Minimum Rules for the Administration of Juvenile Justice ", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Take immediate, clear and credible steps to return Fiji to democracy and the rule of law, including through a broad-based and genuine dialogue among the key political parties in Fiji, and in line with calls by the Security Council, which will enable Fiji to fully participate once again in the international community, including the Pacific Islands Forum and the Commonwealth", - "values": [ - "4 - General action" - ] - }, - { - "text": "Implement a comprehensive disarmament policy and strengthen the judicial system to reduce levels of impunity ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Continue its efforts to better promote and protect the rights of persons in custody in places of pretrial detention and in prisons", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Take the necessary measures to prevent domestic violence, through the creation of a national action plan, in particular Finland was urged that the violence not be classified depending on the degree of violence or threat used by the author ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Make concrete efforts to increase the representation of women in public decision-making processes", - "values": [ - "4 - General action" - ] - }, - { - "text": "Examine the possibility of establishing a national human rights institution ", - "values": [ - "3 - Considering action" - ] - }, - { - "text": "Increase its efforts to combat racial discrimination and racist attacks, particularly against the Roma", - "values": [ - "4 - General action" - ] - }, - { - "text": "Consider signing or ratifying, as appropriate, the following international human rights instruments: ICCPR, ICESCR and ICERD ", - "values": [ - "3 - Considering action" - ] - }, - { - "text": "Ensure that the right to fair trial is not affected by the excessive length of the court proceedings and of excessive pre-trial detention ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Ratify ICCPR-OP 2, aiming at the abolition of the death penalty", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Expedite the process of establishing a mechanism to coordinate and monitor the implementation of a new national human rights action plan 2017- 2020", - "values": [ - "4 - General action" - ] - }, - { - "text": "Withdraw reservations to ICCPR", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Consider ratifying the Optional Protocol to the Convention against Torture and Other Cruel, Inhuman or Degrading Treatment or Punishment (OP-CAT) and the Rome Statute of the International Criminal Court", - "values": [ - "3 - Considering action" - ] - }, - { - "text": "Adopt further measures to fully ensure the right to education of children accompanying rural workers migrating to urban areas", - "values": [ - "4 - General action" - ] - }, - { - "text": "Ensure that the death penalty is not applied to minors, in keeping with resolutions adopted by the United Nations in this area.", - "values": [ - "4 - General action" - ] - }, - { - "text": "Continue its efforts to improve health services, especially for vulnerable women and children with HIV/AIDS", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Ensure that peaceful demonstrators are not imprisoned, harassed or ill-treated by police for exercising their rights to freedom of expression and peaceful assembly", - "values": [ - "4 - General action" - ] - }, - { - "text": "Continue to cooperate with the United Nations and other international organizations to strengthen human rights in Nicaragua", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Continue to strengthen measures to effectively reduce discrimination and all forms of violence against women", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Continue its cooperation with the United Nations and other international organizations to strengthen human rights ", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Continue implementing the plan to fight corruption", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Continue the effective and action-oriented cooperation between Government and national human rights institutions ", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Allocate additional resources to provide human rights training for judges in order to enhance their current knowledge of human rights principles ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Give priority to free education in the national budget allocations and take measures to prevent school drop out. ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Increase the space for the representation of women in senior government positions", - "values": [ - "4 - General action" - ] - }, - { - "text": "Abolish totally the death penalty even in cases of serious offenses", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Emphasize and step up the fight against female genital mutilation, working together with local communities and educating girls and women about the negative consequences of this practice ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Step up its employment stimulation measures and enhance access of the poor to basic services, including sanitation, health and education", - "values": [ - "4 - General action" - ] - }, - { - "text": "Reinforce socioeconomic development policies, with particular focus on poverty reduction and food security", - "values": [ - "4 - General action" - ] - }, - { - "text": "Adopt measures to facilitate family reunification as recommended by the Special Rapporteur on DPRK ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Strengthen the measures regarding education and reduction of poverty of minority populations", - "values": [ - "4 - General action" - ] - }, - { - "text": "Step up efforts to ensure the full respect of freedom of religion and worship, including by reviewing provisions of the Penal Code related to the freedom of religion, in order to eliminate all forms of discrimination based on religion or belief.", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Adopt and apply legislation that effectively improves detention conditions in prison centres and ensure the respect of judicial guarantees offered to detainees", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Grant full access to all prison facilities in the country to the representatives of ICRC and other international mechanisms, such as the Special Rapporteurs on torture, and human rights defenders, and the Working Group on Arbitrary Detention in accordance with their request ", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Reduce significantly the use of the death penalty with a view to its complete abolition.", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Continue its efforts regarding human trafficking for sexual exploitation, and consider drafting a new version of the comprehensive plan to fight trafficking for sexual exploitation", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Prioritize efforts to reform the security sector to ensure appropriate training and oversight mechanisms are in place, and to draft new legal provisions to ensure the independence of the judiciary in line with international standards ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Appoint accomplished, independent prosecutors to lead the Prosecutor General and National Anti-Corruption Directorate offices, ensuring they remain free from political interference", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Draft, in consultation with civil society, and adopt a law on gender identity for transgender persons in which their right to identity is recognized among other civil and political rights", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Ensure women's access to reproductive health services ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Further reinforce measures to combat all forms of discrimination and inequality", - "values": [ - "4 - General action" - ] - }, - { - "text": "Continue its efforts in alleviating poverty through health, education and housing programmes and in developing enabling legislation to ensure the human rights of vulnerable groups", - "values": [ - "4 - General action" - ] - }, - { - "text": "Find a durable and equitable solution to the problems faced by the Bedouin communities, particularly in the area of possession of land", - "values": [ - "4 - General action" - ] - }, - { - "text": "Continue strengthening national human rights institutions and mechanisms", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Investigate and prosecute effectively violations against human rights defenders and journalists, and that the Government forcefully denounce these attacks against human rights defenders, and that the State authorities give human rights defenders legitimacy and recognition through supportive statements", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Continue to step up its efforts in the promotion and protection of human rights with the full support of the international community, as requested in the report submitted by Tonga to the UPR.", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Adopt effective and comprehensive measures to prevent and eliminate all forms of violence against women and girls, and to intensify campaigns to raise awareness about the criminal nature of domestic violence", - "values": [ - "4 - General action" - ] - }, - { - "text": "Consider ratifying or acceding to: ICRMW, CED", - "values": [ - "3 - Considering action" - ] - }, - { - "text": "Continue carrying out the system of regional autonomy in the ethnic minorities areas and give a more special treatment to ethnic minorities in politics, the economy, culture and education ", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Bring domestic law into full compliance with CRC ", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Further amend the Law on Police to bring it in line with international standards ", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Adopt public policies for migrants in conformity with its international obligations", - "values": [ - "4 - General action" - ] - }, - { - "text": "Place special emphasis on addressing the socio-economic disadvantages of the Roma, particularly in the areas of employment, education, housing and access to health services. egregation in school should be eliminated through both incentives and sufficient penalty in case of violation ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Ensure adequate safeguards are in place to ensure protection of human rights defenders, including those working within indigenous communities ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Take the necessary steps in order to increase the availability of social housing and emergency housing support and to adopt appropriate measures to solve the long-term needs", - "values": [ - "4 - General action" - ] - }, - { - "text": "Promptly create a national mechanism for the prevention of torture with access to all places of deprivation of liberty ", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Adopt clear measures to guarantee the rights of all refugees and asylum seekers and protection, and not to classify them and arrest them as illegal immigrants", - "values": [ - "4 - General action" - ] - }, - { - "text": "Continue ensuring, through the Vaccination Program, the immunization coverage of the Cuban population", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Condemn the use of torture and other ill treatment and ensure the prompt, impartial and comprehensive investigation of all complaints involving the torture of any person subjected to any form of arrest, detention or imprisonment ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Ratify, at the earliest possible date, the International Convention for the Protection of All Persons from Enforced Disappearance ", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Consider giving a greater role to the private sector in developing the national education and health system ", - "values": [ - "3 - Considering action" - ] - }, - { - "text": "Continue its efforts to guarantee comprehensive coverage on its territory for preschool education", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Implement specific measures to promote inclusive education of children with disabilities", - "values": [ - "4 - General action" - ] - }, - { - "text": "Promote comprehensibly the increased protection of the rights of the child", - "values": [ - "4 - General action" - ] - }, - { - "text": "Accomplish progressively the human rights goals set forth in Human Rights Council resolution 9-12. ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Continue the process of ratification of international instruments, especially in the area of human rights", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Conduct thorough and impartial investigation into all allegations of torture and physical abuse, and bring to justice anyone suspected of having committed excessive use of force, torture and other human rights violations ", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Review its approach towards religious groups and practitioners, including those not organized in the officially recognized churches", - "values": [ - "3 - Considering action" - ] - }, - { - "text": "Continue its efforts to further accelerate its ongoing process of developing a comprehensive mechanism to further promote and protect human rights and freedoms ", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Sign and ratify OP-ICESCR as soon as possible, allowing individual complaints of alleged violations of these rights to be heard by the Committee on Economic, Social and Cultural Rights", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Allocate sufficient resources to specialized courts and tribunals with jurisdiction over femicide and other forms of violence against women", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Continue to fully use technical assistance and international cooperation to promote the implementation of national development programmes so as to improve its capacity in protecting its people's right to health and education ", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Ratify the Optional Protocol to the International Covenant on Civil and Political Rights, the Optional Protocol to the Convention on the Elimination of Discrimination against Women, the International Convention on the Protection of the Rights of All Migrant Workers and Members of Their Families, the Convention on the Rights of Persons with Disabilities and the International Convention for the Protection of All Persons from Enforced Disappearance and accept the competence of the Committee on Enforced Disappearances", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Engage in order to address any form of discrimination against LGBTI people and in particular to prevent any practice which can harm their dignity, such as unnecessary sex reassignment surgery, especially when carried out without duly informed consent", - "values": [ - "4 - General action" - ] - }, - { - "text": "Amend the Criminal Code to criminalize domestic violence clearly and implement a comprehensive strategy to eliminate all forms of violence against women", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Incorporate CEDAW into the national legislation in order that its provisions could be invoked before the courts", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Intensify its efforts to promote economic development", - "values": [ - "4 - General action" - ] - }, - { - "text": "Expedite the national ratification process of key international conventions which will improve Swazi Government's cooperation with the relevant international bodies", - "values": [ - "4 - General action" - ] - }, - { - "text": "Establish a national human rights institution so as to promote human rights and address the many challenges mentioned by Lebanon in its national report ", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Eliminate all harmful traditional practices and stereotypes, including female genital mutilation", - "values": [ - "4 - General action" - ] - }, - { - "text": "Continue to take effective measures to prevent violence against women.", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Amend existing legislation so as to ensure equal succession and inheritance rights for women. ", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Take further measures to eliminate discriminatory gender stereotypes ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Consider a reform of the civil registration system guaranteeing the rights of all Haitians, including those living abroad", - "values": [ - "3 - Considering action" - ] - }, - { - "text": "Work on strengthening the implementation, monitoring and enforcement of its existing legal framework protecting the equality of women, particularly in the area of employment, in order to achieve a successful reduction in the wage gap between men and women ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Consider returning to a de facto moratorium on all death sentences", - "values": [ - "3 - Considering action" - ] - }, - { - "text": "Increase and regularize the core funding of the Afghanistan Independent Human Rights Commission ", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Continue the de facto moratorium on executions with a view to abolishing the death penalty and, in this respect, commute all death sentences into terms of imprisonment ", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Take steps to end the current culture of impunity by ensuring that all allegations of abuse are investigated by the judiciary in a timely, independent and transparent manner", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Expedite the process to establish the national human rights institution", - "values": [ - "4 - General action" - ] - }, - { - "text": "Prevent and combat all forms of discrimination and violence against women and other vulnerable groups", - "values": [ - "4 - General action" - ] - }, - { - "text": "Ensure that children of minority groups have equal access to education and introduce curricula recognizing their right to use and receive education in their own language ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Continue promoting a dialogue and national reconciliation to achieve peace and move towards the development of country", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Revise the law on religious organizations so that clauses prohibiting unregistered religious activities and unjustified restrictions are repealed ", - "values": [ - "3 - Considering action" - ] - }, - { - "text": "Establish a national human rights institution that is fully compliant with the Paris Principles ", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Effectively implement the Anti-Torture Act with a special focus on the responsibility of superior officers, access to medical services and the establishment of a sufficiently resourced rehabilitation programme for victims ", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Increase the percentage of overall government spending dedicated to health and education", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Abolish in law the death penalty and ratify the Second Optional Protocol to the International Covenant on Civil and Political Rights aimed at abolishing the death penalty", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Ensure the best interests of indigenous people in carrying out large scale national development projects ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Amend the Prison Act of 1936 with a view to a suitable reform of the Thai penitentiary system", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Combat crimes committed against human rights defenders through prompt, impartial and transparent investigations", - "values": [ - "4 - General action" - ] - }, - { - "text": "Continue the human rights awareness and training of the population", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Take appropriate measures to strengthen the implementation of the 2011 Act on Support for Family and Alternative Care Systems", - "values": [ - "4 - General action" - ] - }, - { - "text": "Adopt effective measures to ensure freedom of expression and the protection of journalists, as well as of opposition and critics of the Government", - "values": [ - "4 - General action" - ] - }, - { - "text": "Allocate necessary resources for the full realization of the rights under the International Covenant on Economic, Social and Cultural Rights ICESCR, with a view to strengthening poverty reduction programmes and guaranteeing adequate access to health and education ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Continue to strengthen policies and programmes to combat domestic and sexual violence against women, including a system of psychological, legal and physical support for the victims", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Bring the new Media Law in line with international standards, and particularly ensure that it does not undermine the work of journalists, freedom of expression and the right to information of the population", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Complete as soon as possible the process of accession to Convention against Torture and Other Cruel, Inhuman or Degrading Treatment or Punishment and the International Convention for the Protection of All Persons from Enforced Disappearance ", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Establish a norm leading to the separation of women and men in penitentiary centres and between adults and minors and set up measures to ensure compliance with this norm, having heard information on the measures that will be adopted in penitentiary centres", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Strengthen its efforts to prevent trafficking of minors by allocating sufficient resources to the immigration authorities to investigate every case of missing minors ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Continue working on a national policy and legislation that can guarantee greater equality of opportunity between men and women", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Continue efforts to fight against discrimination, racism and hate speech", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Analyse the possibility of creating a follow-up system to the international recommendations", - "values": [ - "3 - Considering action" - ] - }, - { - "text": "Continue to realize the rights of persons with disabilities, including their right to education, in the framework of the National Plan for the Integration of Persons with Disabilities which it has adopted", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Take all appropriate measures for the effective implementation of its voluntary commitment in terms of international cooperation to work towards food security and gender equality", - "values": [ - "4 - General action" - ] - }, - { - "text": "Ratify the Additional Protocol to the Convention on cybercrime, concerning the criminalisation of acts of a racist and xenophobic nature, including holocaust denial, committed through computer systems", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Revise the human rights training programmes for the security forces, emphasizing the use of force according to the criteria of necessity and proportionality and putting an end to extra-judicial executions ", - "values": [ - "3 - Considering action" - ] - }, - { - "text": "Immediately implement a moratorium on executions and work further towards fully abolishing the death penalty", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Take further measures to bolster the national health system", - "values": [ - "4 - General action" - ] - }, - { - "text": "Take additional measures to strengthen awareness-raising campaigns to promote respect for children's rights", - "values": [ - "4 - General action" - ] - }, - { - "text": "Take more concrete measures aiming at fostering a genuine human rights culture with due regard for national and regional particularities, as well as historic, cultural and religious backgrounds", - "values": [ - "4 - General action" - ] - }, - { - "text": "Reinforce strategies to achieve poverty reduction targets.", - "values": [ - "4 - General action" - ] - }, - { - "text": "Repeal the laws that criminalize consensual sexual activities between people of the same sex, and protect lesbian, gay, bisexual and transsexual persons from discrimination and violence ", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Take the necessary measures to ensure that children and minors in rehabilitation centres and youth centres are not in any way submitted to torture or ill-treatment, in conformity with the provisions of the Convention on the Rights of the Child ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Conduct an in-depth revision of all legislation in order to fully guarantee the application of the principle of non-discrimination in domestic legislation", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Further strengthen the foundation of family and avoid resorting to measures and legislation which endanger the very foundation of family in society ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Continue incorporating effective forms of participation of its citizens in the process of decision-making, specially through the mechanisms of a representative, direct and community democracy aiming at the development of the country in all issues of public interest with a special emphasis on the needs of persons that require priority attention", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Enhance its efforts in protecting children rights.", - "values": [ - "4 - General action" - ] - }, - { - "text": "Continue to implement policies which guarantee the effective right to freedom of religion for the Muslim minority of Thrace", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Provide the office of the Ombudsman with the human and financial resources necessary for it to exercise its mandate in accordance with the principles relating to the status of national institutions for the promotion and protection of human rights", - "values": [ - "4 - General action" - ] - }, - { - "text": "Take all necessary actions to protect and improve the situation of children", - "values": [ - "4 - General action" - ] - }, - { - "text": "Ratify the core international human rights instruments such as CAT", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Adopt effective measures to address the high levels of pregnancy among girls and adolescents, and ensure their effective access to sexual and reproductive health care and services and education programmes", - "values": [ - "4 - General action" - ] - }, - { - "text": "Introduce legislative measures to expand the prohibition of and protection against discrimination through explicit measures to protect individuals", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Revise its legislation on abortion, including its Constitution, to provide for additional exceptions in cases of rape, incest or serious risks to the health of the mother, building on the recommendation from the Human Rights Committee", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Ratify the Optional Protocol to the Convention on the Rights of the Child on a communications procedure (OP-CRC-IC)", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Complete at the earliest the ratification process of the International Convention for the Protection of All Persons from Enforced Disappearance and fully recognize the competence of the Committee on Enforced Disappearances, as provided for in articles 31 and 32 of the Convention ", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Immediately cease the harassment and intimidation of independent media and to proceed to a reform of the legislation applicable to ensure full respect of freedom of expression", - "values": [ - "4 - General action" - ] - }, - { - "text": "Strengthen its programmes and adopt further measures for combating HIV/AIDS, malaria and cholera ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Continue taking assertive measures in combating organized crime and criminal gangs with a view to protecting the civilian population ", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Fully investigate all allegations of intimidation and violence against civil society actors, and to prosecute those responsible", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Continue the process of ratifying those human rights instruments to which Nigeria is not yet a State party", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Continue efforts in the provision of free and compulsory education", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Ratify the Optional Protocol to the International Covenant on Economic, Social and Cultural Rights, as well as the Optional Protocol to the Convention on the Rights of the Child on a communications procedure", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Take all measures to eradicate the practice of corporal punishment in the family and juvenile justice systems and to ensure effective implementation of the ban on this punishment in schools", - "values": [ - "4 - General action" - ] - }, - { - "text": "Continue applying effective measures for the promotion of employment among young people that allow fair and satisfactory labour conditions", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Intensify efforts to prevent and eliminate discrimination against indigenous children, children with disabilities, and girls", - "values": [ - "4 - General action" - ] - }, - { - "text": "Continue to seek assistance from the international community, with the support of the United Nations country team, in strengthening its human rights policies and implementing the universal periodic review recommendations, particularly in building capacity for its human rights officers ", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Ensure the protection of the rights of domestic migrant workers, the majority of whom are women whose rights are not protected under the 2004 Law on parity ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Further facilitate access to justice by persons belonging to minority groups ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Implement existing laws to prosecute sexual and gender-based violence, in particular female genital mutilation as well as domestic violence, and to address legal gaps and other deficiencies in measures to combat sexual and gender-based violence effectively", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Request international assistance deemed pertinent to implement measures to improve the human rights situation of children and adolescents ", - "values": [ - "1 - Minimal action" - ] - }, - { - "text": "Respect and protect the right of all groups and individuals to participate in legitimate political activities", - "values": [ - "4 - General action" - ] - }, - { - "text": "Seriously combat human trafficking and sexual exploitation, ensure victim assistance, prosecute human traffickers, as well as enhance further cooperation with the countries concerned", - "values": [ - "4 - General action" - ] - }, - { - "text": "Continue to cooperate closely with human rights mechanisms and the special procedures", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Prohibit child recruitment into local defence forces or into any armed group ", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Continue to fully cooperate with the Independent Expert on the situation of human rights in\nSudan", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Continue giving special priority to the care of street children", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Continue efforts to maintain harmony among ethnic and religious groups in society", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Continue to give special attention to the rights of children and women asylum seekers, in particular by providing shelter, and ensuring their protection from violence ", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Guarantee to Rohingya and other ethnic minorities the full enjoyment of their civil and political rights, in particular the right to vote in the forthcoming elections", - "values": [ - "4 - General action" - ] - }, - { - "text": "Continue its efforts to ensure that the laws protect freedom of expression", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Adopt early the Constitution and the draft laws in the process of enactment, in line with "Vision 2016" programme proposed by the Government", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Make every effort to achieve a sustainable return to democracy and constitutional rule at the earliest time possible", - "values": [ - "4 - General action" - ] - }, - { - "text": "Continue taking measures that guarantee the right to education of its population ", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Provide training on the rights of the child to public officials and civil servants", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Introduce a separate system of juvenile justice, with particular emphasis on rehabilitation and reintegration activities, stop the application of isolation measures on juveniles and ensure that the minimum age of fourteen for criminal liability in domestic and international law is respected without exceptions", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Issue a standing invitation for the special procedures, in particular, granting access for the requested visits ", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Ensure that all girls, including pregnant girls and young mothers, can complete minimum levels of education in a safe environment", - "values": [ - "4 - General action" - ] - }, - { - "text": "Adopt holistic plans and policies to achieve gender equality in public and private spheres and further recommends that specific measures be taken to increase women\u2019s participation at all levels and promote women\u2019s appointment in leadership positions", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Increase its efforts to address the human rights challenges faced by all sex workers ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Establish a moratorium on the use of the death penalty, with a view to its legal and practical abolition", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Sign and ratify the two International Covenants, CAT, CRPD and their respective Optional Protocols, and CED, and ratify the two Optional Protocols to CRC and CEDAW and its Optional Protocol ", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Continue implementing the Strategic National Plan for the development of health for the period 2010-2015", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Ratify the core ILO conventions, including the Domestic Workers Convention, 2011 (No. 189), and reform the law on sponsorship, removing the requirement for foreign nationals to obtain the permission of their current employer before changing jobs or leaving the country ", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Combat discrimination and all types of violence against women in the country, and multiply efforts for the empowerment of women in every area of life", - "values": [ - "4 - General action" - ] - }, - { - "text": "Ensure that the Ombudsman of Human Rights and Freedoms has the necessary resources and staff in order to fully carry out its functions", - "values": [ - "4 - General action" - ] - }, - { - "text": "Continue the efforts to develop the National Service for Women and help it to implement the equal opportunities plan that would strengthen the role of women and their empowerment in society ", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Consider, as a first step, amending domestic legislation on the death penalty in order to restrict its scope and adjust it to the international minimum standards on the death penalty and consider establishing a moratorium on the use of the death penalty with a view to its abolition", - "values": [ - "3 - Considering action" - ] - }, - { - "text": "Strengthen the mandate of its national human rights institution and provide it with adequate support in terms of financial and human resources", - "values": [ - "4 - General action" - ] - }, - { - "text": "Enact electoral reforms to address problems noted by multiple observers during February 2016 elections, including by making the process for appointment to the Electoral Commission more inclusive and transparent", - "values": [ - "4 - General action" - ] - }, - { - "text": "Strengthen measures to protect the human rights of non-citizens and migrant workers to prevent their exploitation and discrimination", - "values": [ - "4 - General action" - ] - }, - { - "text": "Continue with the efforts aimed at improving inclusion at all levels of education ", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Carry out an analysis to identify priorities in the human rights agenda and implement public policies that incorporate a transversal human rights perspective", - "values": [ - "3 - Considering action" - ] - }, - { - "text": "Continue to establish mechanisms to end discrimination towards the Roma community", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Carry on the efforts to combat all forms of discrimination and violence against women", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Continue to carry out reforms in the country in order to fully ensure the protection of human rights and the rule of law in accordance with all relevant laws and codes, as stated in its national report ", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Enhance its educational system with a focus on further improving literacy rates, with the support of the international community ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Extend the applicability of all international human rights instruments to which it has acceded to the whole territory of the country ", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Take legislative and administrative measures to remove legal restrictions and social barriers to women's equal participation in the work force and access to education and government decision-making positions", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Repeal or substantially amend the Criminal Law (Codification and Reform) Act, the Public Order and Security Act (POSA), the Miscellaneous Offences Act (MOA), and the Access to Information and Protection of Privacy Act (AIPPA) to bring them in line with Zimbabwe's international human rights obligations ", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Expedite the completion of statutes that provide a guarantee for further human rights promotion and protection, including on land rights, on access to the courts, and on combating human trafficking", - "values": [ - "4 - General action" - ] - }, - { - "text": "Transpose these international instruments, the International Covenant on Civil and Political Rights and its first Optional Protocol, the Convention against Torture and Other Cruel, Inhuman or Degrading Treatment or Punishment and its Optional Protocol, the Convention on the Elimination of All Forms of Discrimination against Women, into domestic law strengthening among others legislative protection from gender violence and all forms of discrimination, particularly against women, children and on the ground of sexual orientation", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Intensify efforts made to achieve further progress in enhancing economic, social and cultural rights, especially the rights of women, children, and disabled ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Establish a system for birth registration that covers all children without discrimination by reason of race, ethnicity or nationality, sex or religion", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Strengthen the training programmes on human rights for the benefit of law enforcement officials", - "values": [ - "4 - General action" - ] - }, - { - "text": "Allocate adequate budgetary resources to the effective implementation of its national action plan for the prevention, assistance and eradication of violence against women and ensure that sufficient safe shelters for women victims are available and easily accessible in every province", - "values": [ - "4 - General action" - ] - }, - { - "text": "Consider, in partnership with civil society and women's groups, a better access to support centres, psycho-social and legal services, as well as other services for victims of domestic violence, including in rural areas", - "values": [ - "3 - Considering action" - ] - }, - { - "text": "Ratify the European Charter for Regional or Minority Languages", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Guarantee to all citizens, without exemptions, equal access to public services and to an adequate standard of living", - "values": [ - "4 - General action" - ] - }, - { - "text": "Continue to further ensure rights of women and girls", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Uphold the principle of non-refoulement and ensure that all asylum seekers are given prompt access to accessible, fair and individualized refugee status determination", - "values": [ - "4 - General action" - ] - }, - { - "text": "Strengthen protection for women and children against violence and exploitation\n\n", - "values": [ - "4 - General action" - ] - }, - { - "text": "Continue to further promote gender equality in the country, in particular through education and capacity-building activities", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Take further appropriate actions to promote effective implementation of the existing legal framework", - "values": [ - "4 - General action" - ] - }, - { - "text": "Ratify ILO Convention No. 138 concerning the minimum age for admission to employment ", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Put in place a global strategy aimed at eliminating harmful practices and stereotypes against women", - "values": [ - "4 - General action" - ] - }, - { - "text": "For the purposes of fully protecting the human rights of all Namibians, secessionists be pursued and be brought to book ", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Continue efforts to find peaceful solutions to any issues pertaining to the protection of human rights in the country, including through inclusive dialogues involving relevant civil societies", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Better train its law enforcement officials to ensure that perpetrators of sexual violence are prosecuted in a more severe and consequent manner, and follow the recommendations of the Committee on the Elimination of Discrimination against Women to guarantee appropriate compensation and support and assistance measures for victims of sexual violence.", - "values": [ - "4 - General action" - ] - }, - { - "text": "Complete the establishment of a National Human Rights Institution in conformity with the Paris Principles", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Consider taking measures to eliminate forms of discrimination against workers from ethnic minorities", - "values": [ - "3 - Considering action" - ] - }, - { - "text": "Pursue its seven points development programme formulated by the President of the Republic", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Accede to the Convention on the Non-Applicability of Statutory Limitations to War Crimes and Crimes against Humanity without making any reservations, and incorporate it into its national legislation", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Ensure a thorough and impartial investigation of all cases of torture and ill treatment and ensure punishment of persons responsible for them according to the law.", - "values": [ - "4 - General action" - ] - }, - { - "text": "Take concrete measures to protect women, who remain marginalized, discriminated against and at the high risk of being subjected to violence", - "values": [ - "4 - General action" - ] - }, - { - "text": "Continue its efforts at all Government levels to give women of all ages access to all information and all services necessary to take informed decisions based on their needs regarding reproductive health", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Consider ratifying CAT and OP-CAT, the International Convention on the Protection of the Rights of All Migrant Workers and Members of their Families (ICRMW), and the Protocol to Prevent Suppress and Punish Trafficking in Persons, Especially Women and Children (Palermo Protocol) ", - "values": [ - "3 - Considering action" - ] - }, - { - "text": "Designate an Ombudsman as soon as possible considering that the national ombudsman\u2019s office has been without leadership for the past eight years", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Widely publish the outcome of this universal periodic review and to make regular and inclusive consultation with civil society an integral part of the follow-up to the universal periodic review and also of the preparation of the next national report to the universal periodic review", - "values": [ - "4 - General action" - ] - }, - { - "text": "Further strengthen efforts at combating HIV/AIDS, especially with a focus on adolescents and young adults, such as through awareness-raising ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Strengthen existing policies aimed at continued improvement of the electoral system, including with the aid of international cooperation, and taking into account a cross-cutting gender perspective", - "values": [ - "4 - General action" - ] - }, - { - "text": "Accept a visit by the Special Rapporteur on the situation of human rights defenders and the Special Rapporteur on extrajudicial, summary or arbitrary executions ", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Train educators and health workers in identifying signs of sexual abuse in children ", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Consider ratification of the Optional Protocol to the International Covenant on Economic, Social and Cultural Rights ", - "values": [ - "3 - Considering action" - ] - }, - { - "text": "Ratify the Optional Protocol to the Convention against Torture and establish its national preventive mechanism accordingly", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Ensure the protection of persons with disabilities", - "values": [ - "4 - General action" - ] - }, - { - "text": "Apply a dignified and human treatment that respects the universal principles of human rights for people in situation of human mobility, whether migrants or refugees, with special emphasis on strengthening and implementing policies to address trafficking of persons from a holistic approach, particularly regarding women, children and other vulnerable groups, as well as to combat all forms of discrimination, with measures including complaint an denunciation mechanisms for victims that enable them to achieve reparations.", - "values": [ - "4 - General action" - ] - }, - { - "text": "Consider extending a standing invitation to all Special proceduress mandate holders of the Human Rights Council ", - "values": [ - "3 - Considering action" - ] - }, - { - "text": "Redress laws and government practices that discriminate against members of religious minorities, and in particular urgently pass a unified law that makes construction and repair requirements equal for the places of worship of all religious groups", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Continue to maintain its significant achievements in the empowerment of women ", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Take the necessary measures to prevent the use of torture ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Take immediate measures towards the protection and re-settlement of IDPs", - "values": [ - "4 - General action" - ] - }, - { - "text": "Maintain as a permanent priority the increase of the public health quality in the country ", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Actively consider reviewing its position on minorities by recognizing and protecting them as minority groups.", - "values": [ - "3 - Considering action" - ] - }, - { - "text": "Eliminate all forms of corporal punishment with a view to abolishing them ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Share with the international community its experiences in rehabilitating and reintegrating former LTTE child soldiers", - "values": [ - "1 - Minimal action" - ] - }, - { - "text": "Facilitate the realization of economic, social and cultural rights through the reconstruction of the areas affected by earthquakes in 2010 and 2011 ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Endeavour to ratify without delay all international human rights statutes that it has yet to sign ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Cease all planned executions of juvenile offenders, and to prohibit the imposition of the death penalty for crimes committed by minors", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Redouble its efforts to promote access to higher education on conditions of equality and to reduce financial barriers that prevent access to that level of education ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Continue the efforts made to combat discrimination against minorities ", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Not only work to bring perpetrators to justice, but also establish a dialogue among relevant stakeholders to address the root causes of xenophobia", - "values": [ - "4 - General action" - ] - }, - { - "text": "Carry out efforts for the implementation of recommendations on the improvement of the judiciary and the judicial system that the Russian Federation made at the last universal periodic review", - "values": [ - "4 - General action" - ] - }, - { - "text": "Ensure compliance of the National Human Rights Commission with the Paris Principles", - "values": [ - "4 - General action" - ] - }, - { - "text": "Take further action and measures in order to further promote women's participation in the judiciary and all other sectors of life in the country ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Consider ratifying the ILO Convention No. 189 concerning Decent Work for Domestic Workers", - "values": [ - "3 - Considering action" - ] - }, - { - "text": "Adopt additional measures to protect religious, cultural and ethnic minorities subjected to discrimination", - "values": [ - "4 - General action" - ] - }, - { - "text": "Take necessary measures to ensure that perpetrators of human rights violations are prosecuted to put an end to their impunity ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Accede to the core international human rights instruments, namely ICCPR and ICESCR ", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Ensure that its efforts to harmonize and consolidate Commonwealth anti-discrimination laws address all prohibited grounds of discrimination and promote substantive equality ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Accede to the Second Optional Protocol to the International Covenant on Civil and Political Rights aimed at the abolition of the death penalty ICCPR-OP2", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Take immediate steps to put an end to violations of human rights, namely by implementing the recommendations of the report of the COI, established by the Human Rights Council ", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Submit reports to the Committee on the Rights of the Child as soon as possible ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Adopt national legislation criminalizing domestic violence", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Establish a procedure to review decisions by the Director of Public Prosecution regarding the prosecution of police officers for unlawful killings ", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Adopt measures to ensure the inclusive education of persons with disabilities", - "values": [ - "4 - General action" - ] - }, - { - "text": "Ensure that all suspects in police custody have prompt and immediate access to a lawyer", - "values": [ - "4 - General action" - ] - }, - { - "text": "Undertake all necessary steps to ensure just and timely settlement of the property claims of displaced persons of Bulgarian identity from Eastern Thrace in conformity with the United Nations principles on Housing and Property Restitution for Refugees and Displaced Persons and the instruments of the Council of Europe related to the redress for loss of housing, land and property of refugees and displaced persons ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Take all the necessary measures to criminalize violence against women and girls and adopt a committed and determined criminal policy to fight against this surge ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Provide further training and legal assistance on the application of the Family Protection Act", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Re-establish its police unit specialized to combat human trafficking and sexual exploitation", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Increase its funding to actors engaged in combating violence and sexual abuse of women", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Maintain the level of education in one\u2019s mother tongue for the persons belonging to national minorities, as per paragraph 167 of its national report regarding education in mother tongue, with due attention paid to the content and the number of hours", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Further expand human rights education and training programmes", - "values": [ - "4 - General action" - ] - }, - { - "text": "Strengthen the National Human Rights Commission in line with the Paris Principles", - "values": [ - "4 - General action" - ] - }, - { - "text": "Guarantee an environment for journalists free of intimidation and attacks", - "values": [ - "4 - General action" - ] - }, - { - "text": "Continue with efforts to combat human trafficking, inter alia, consider inviting the Special Rapporteur on trafficking in persons, especially women and children, to the country", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Allow bloggers, journalists, other internet users and non-governmental organizations (NGOs) to promote and protect human rights specifically by ensuring that laws concerning the Internet comply with the freedom of expression and information", - "values": [ - "4 - General action" - ] - }, - { - "text": "Share its experience in fighting human trafficking with other States and continue its efforts to fight this social ill in cooperation with the international community ", - "values": [ - "1 - Minimal action" - ] - }, - { - "text": "Continue to prioritize eradicating poverty and further improving people's living standards ", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Ensure freedom of expression and media freedom by guaranteeing that journalists and media workers are able to practise their professions in a free and safe environment and that all attacks on journalists and media workers are investigated and by criminalizing defamation", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Ask OHCHR to reply to the appeal made by the Government to send a needs assessment mission in areas enumerated in para. 118 of the national report and, pursuant to the results of this mission, seek the necessary assistance to ensure that Djibouti reached its goals and to meet its human rights commitments", - "values": [ - "1 - Minimal action" - ] - }, - { - "text": "Ratify international human rights instruments to which Canada has not yet become party ", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Undertake a participatory and inclusive process with civil society organizations, including indigenous peoples, in the implementation of the universal periodic review recommendations ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Repeal corporal punishment and the death penalty from its penal system ", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Consider reverting to the moratorium on executions and take steps towards the abolition of the death sentence", - "values": [ - "3 - Considering action" - ] - }, - { - "text": "Ratify, as soon as possible, the Second Optional Protocol to the International Covenant on Civil and Political Rights ", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Enforce the 2005 anti-trafficking law and ratify the Protocol to Prevent, Suppress and Punish Trafficking in Persons, especially Women and Children, supplementing the United Nations Convention against Transnational Organized Crime", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Take appropriate measures to address social inequality and disparities by paying particular attention to persons belonging to vulnerable and marginalized groups and providing better access to education, health and employment ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Take necessary measures to implement the National Disability Policy ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Abolish the death penalty or establish a moratorium \n\n", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Accelerate efforts aimed at the promotion and protection of human rights, including through tackling problems of public safety, economic and judicial safety and human development", - "values": [ - "4 - General action" - ] - }, - { - "text": "Complete the ongoing review of the criminal code with the aim of promoting and protecting women's rights, include provisions dealing with violence against women, particularly domestic violence, and ratify CEDAW ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Adopt measures ensuring effective national birth registration, including through programmes of mobile registration units and registration of those without documentation.", - "values": [ - "4 - General action" - ] - }, - { - "text": "Facilitate possible future visits by mandate holders", - "values": [ - "4 - General action" - ] - }, - { - "text": "Consider taking the requisite measures aimed at the speedy ratification of all the outstanding international human rights instruments accepted in 2010, these being ICCPR-OP 2, CAT, OP-CAT and OP-ICESCR", - "values": [ - "3 - Considering action" - ] - }, - { - "text": "Step up efforts to ensure the effective implementation of the ban on FGM, in particular through the implementation of preventive measures such as the dissemination of information and awareness-raising among populations at risk ", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Take the measures necessary to ratify or accede to the 169 International Labour Organization ILO Convention, the Optional Protocol to the Convention against Torture and, in particular, the International Convention for the Protection of All Persons from Enforced Disappearance", - "values": [ - "4 - General action" - ] - }, - { - "text": "Establish a moratorium on all executions and eventually abolish the death penalty ", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Expedite the adoption of the law to combat violence against women and ensure that it makes all forms of violence against women a criminal offence, including domestic violence and marital rape, and amend the provisions of the Criminal Code in order to eliminate any possibility of impunity for the perpetrators of violence against women", - "values": [ - "4 - General action" - ] - }, - { - "text": "Ratify ICCPR and ICESCR ", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Keep on efforts, both on legal and procedural grounds, to ensure full respect and protection for the rights of persons with disabilities, including access to education and providing resources in that regard ", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Carry out necessary reforms to address stigma against persons with disabilities in order to strengthen implementation of the Convention on the Rights of Persons with Disabilities", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Continue to pursue a policy ensuring that there is no distortion in the development of economic, social, cultural, civil and political rights.", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Take practical and legislative measures, including in the Constitution, in order to eliminate incitement to violence and repetition of attacks against freedom of religion and religious cult", - "values": [ - "4 - General action" - ] - }, - { - "text": "Take concrete steps to encourage broader participation of women in decision-making processes", - "values": [ - "4 - General action" - ] - }, - { - "text": "Ratify the International Convention on the Elimination of All Forms of Racial Discrimination ", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Continue efforts aimed at improving the administration of the justice system and the situation of persons deprived of their liberty ", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Take all necessary steps to ensure that key government institutions responsible for tackling human trafficking - especially of women and children - are properly funded", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Amend its laws to prohibit corporal punishment of children in all settings and circumstances, and take further steps to eradicate child labour and guarantee the right to education of all children", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Develop and implement a strategy to address the disproportionate enrolment of Roma children in comparison with children with disabilities in special schools.", - "values": [ - "4 - General action" - ] - }, - { - "text": "Take effective actions to curb over-sexualization of women in media ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Expedite its efforts in combating against trafficking of women and girls through, inter alia, increasing its cooperation with international, regional and bilateral mechanism ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Make further efforts to prevent sexual and domestic violence as pointed out by the relevant treaty bodies", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Take special measures for unemployed women ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Take necessary measures to reduce gun violence, concerned at the large number of gun-related deaths and injuries, which disproportionately affect members of racial and ethnic minorities", - "values": [ - "4 - General action" - ] - }, - { - "text": "Complete the amendments expected to be carried out on the crime of rape in the Criminal Code of the Faroe Islands", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Work with the EU and the UN for further participation of other important human rights mechanisms, including the protocols to the CRC ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Continue strengthening its successful education policy with a view to achieving full inclusion in schooling for all sectors of the country as the only way to advance towards development with a human face thus achieving real social welfare of the people, for which Nicaragua has the full support of the Venezuelan Revolutionary process", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Operationalize the "human rights action plan" that was issued by "Federal Government in October 2012" which includes many issues, among them, the commitment to protect the right to freedom of religion and belief, and measures to combat religious bias and discrimination based on religion and belief", - "values": [ - "4 - General action" - ] - }, - { - "text": "Reinforce the human rights protection of vulnerable and disabled children ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Strengthen measures to promote citizenship", - "values": [ - "4 - General action" - ] - }, - { - "text": "Take concrete measures to combat child sex tourism", - "values": [ - "4 - General action" - ] - }, - { - "text": "Continue measures to promote equality between women and men and to combat domestic violence", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Continue with the steps already taken on the right to life, liberty and security of the person and in particular to continue the moratorium on the death penalty and work towards eliminating it", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Recognize conscientious objection to military service, and allow conscientious objectors the option to perform an appropriate alternative service of a genuinely civilian character and of a length comparable to that of military service", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Continue its efforts for the development of a comprehensive national action plan for human rights", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Continue promoting the right to health of its citizens, particularly maternal and child health services", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Enhance efforts to fight all forms of discrimination against women and domestic violence, including by adopting new legislation to this effect and ensuring its effective implementation", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Take more steps towards full implementation of CEDAW recommendations ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Adopt the necessary measures to guarantee that, in accordance with national legislation, children under 14 years of age do not work, and amend the Constitution so as to raise to 18 years the minimum age for engaging in work that is likely to be harmful", - "values": [ - "4 - General action" - ] - }, - { - "text": "Continue its efforts to complete the accession to the relevant instruments such as the International Covenant on Civil and Political Rights", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Put into operation this important mechanism, the Commission of Inquiry, including by expediting the appointment of its members to look into the 2011 events and bring those who committed human rights violation to account ", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Take all the necessary measures to establish a moratorium on the death penalty as a first step towards its total abolition", - "values": [ - "4 - General action" - ] - }, - { - "text": "In the light of the concerns expressed by the Special Committee to Investigate Israeli Practices in the Occupied Territories, the Special Rapporteur on human rights and counter-terrorism and the High Commissioner for Human Rights regarding the continued deterioration of human rights and the humanitarian situation in the Occupied Palestinian Territory emanating from, among others, the construction of the security wall, address the violations immediately, including through the cessation of the occupation.", - "values": [ - "4 - General action" - ] - }, - { - "text": "Continue the efforts aimed at further enhancing the status of women and gradually do away with some traditional concepts in the rural areas that are likely to entrench practices that may still hamper progress in gender equality", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Continue its efforts to improve the reception conditions of asylumseekers, including the provision of free legal aid, in particular to those who apply for asylum at the border, and those in detention ", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Comply, in law and in practice, with its obligations under the International Covenant on Civil and Political Rights ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Enact law providing for full citizenship rights for the children of Bahrain mothers and non-Bahrain fathers ", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Waive the moratorium on granting licenses to radio and television broadcasters and the 2008 amendments to the Law on Television and Radio of 2000, and carry out legislative measures safeguarding the independence of the National Commission on Television and Radio and the Council on Radio and Public Television ", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Continue and intensify the fight against social scourges, with a focus on reducing domestic violence and juvenile delinquency ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Seek assistance to increase the number and scope of its magistrate courts to address the many legal problems it faces", - "values": [ - "1 - Minimal action" - ] - }, - { - "text": "Reinforce further the country's efforts in the area of prevention of trafficking in human beings", - "values": [ - "4 - General action" - ] - }, - { - "text": "Consider strengthening programmes to combat and prevent HIV/AIDS, with special attention to women and children ", - "values": [ - "3 - Considering action" - ] - }, - { - "text": "Consider as a first step to establish a moratorium on the death penalty with a view to its abolition", - "values": [ - "3 - Considering action" - ] - }, - { - "text": "Adopt additional legislative measures on gender equality to ensure equal participation for women in all decision-making positions in all areas of public administration", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Successfully adopt Persons with Disabilities Rights Act ", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Accede to the main international human rights instruments, including the International Covenant on Civil and Political Rights (ICCPR) and the International Covenant on Economic, Social and Cultural Rights (ICESCR).", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Consider the ratification of the Optional Protocol to the Convention on the Elimination of All Forms of Discrimination against Women, the International Convention on the Protection of the Rights of All Migrant Workers and Members of their Families, and the International Convention for the Protection of All Persons from Enforced Disappearance", - "values": [ - "3 - Considering action" - ] - }, - { - "text": "Consider ratifying the International Labour Organization Domestic Workers Convention, 2011 (No. 189) ", - "values": [ - "3 - Considering action" - ] - }, - { - "text": "Step up measures to combat trafficking in persons and sex tourism, including through rapid creation within the Government of a special body to deal with these issues", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Continue its efforts to strengthen the independence of the judiciary at both the legal and implementing levels", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Take further steps to provide access to education for all children", - "values": [ - "4 - General action" - ] - }, - { - "text": "Conduct public awareness policies and programmes, in cooperation with civil society, to change cultural paradigms and attitudes in order to encourage and promote respect for LGBTI persons and fight against prejudice and discrimination against LGBTI persons ", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Provide appropriate services with the necessary resources, including to train and raise the awareness of the judiciary and the public, in order to ensure that these new measures adopted to fight racial discrimination or gender/sexual identity discrimination are effective", - "values": [ - "4 - General action" - ] - }, - { - "text": "Ensure that the immigration law and its proposed amendments are in compliance with the principle of non-refoulement and the prohibition of inhuman or degrading treatment, most importantly the provisions allowing for summary return of migrants and refugees without due process", - "values": [ - "4 - General action" - ] - }, - { - "text": "Continue taking the necessary measures of accountability to ensure full compliance in all sectors with the national legislation in the field of gender rights and equality ", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Put an end to forced evictions, notably by improving the application of the land law of 2001, ensuring a better verification of land titles and guaranteeing strengthened protection of the population affected by the expropriations, which implies in particular prior consultations, a search for alternative solutions to expropriations, offers of re-housing and appropriate compensation of evicted persons ", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Review the procedure for the selection of the ombudsman and, more broadly, the selection, training and status of judges, taking into account the recommendations of the Venice Commission", - "values": [ - "4 - General action" - ] - }, - { - "text": "Take concrete steps towards abolishing the death penalty", - "values": [ - "4 - General action" - ] - }, - { - "text": "Ratify the Second Optional to the International Covenant on Civil and Political Rights, aiming at the abolition of the death penalty, the Optional Protocol to the Convention against Torture and Other Cruel, Inhuman or Degrading Treatment or Punishment, and the Optional Protocol to the International Covenant on Economic, Social and Cultural Rights", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Continue its leadership in the Human Rights Council on human rights and environment, including through its support to the newly appointed Independent Expert on Human Rights and Environment", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Share its experiences, in all the international languages, particularly the English language, of its ability to fight ethically and morally", - "values": [ - "1 - Minimal action" - ] - }, - { - "text": "Further improve life conditions and the prevention of ill-treatment of detainees in State penitentiaries in compliance with international standards", - "values": [ - "4 - General action" - ] - }, - { - "text": "Promote laws on the rights of children and adolescents especially in the area of health", - "values": [ - "4 - General action" - ] - }, - { - "text": "Repeal all legislation and regulations that restrict women and girls from accessing information and advice related to their sexual and reproductive health and rights, including contraception", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Reform Bruneian laws and policies, such as the Sedition Act, to ensure consistency with international standards ", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Envisage withdrawing its reservations to ICERD ", - "values": [ - "3 - Considering action" - ] - }, - { - "text": "Outlaw the death penalty for persons convicted of crimes committed before the age of 18, without exception, and implement a moratorium on all executions", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Continue its efforts to guarantee the rights of women", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Continue its measures to protect the rights of persons with disabilities", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Instigate an open and inclusive national dialogue leading to early and credible elections", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Take concrete measures to combat violence against women and children as well as expedite the adoption of the draft law on domestic violence that would allow victims to file complaints and seek protection", - "values": [ - "4 - General action" - ] - }, - { - "text": "Bring about a change in attitudes with a view to eliminating persistent stereotypical attitudes about the roles and responsibilities of women and men in the family and in society ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Continue to strengthen legislative and policy measures to counter violence against women", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Ratify the Optional Protocols to the Convention on the Rights of the Child", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Maintain its important humanitarian effort in cooperation with the international community and particularly the Office of the United Nations High Commissioner for Refugees in full respect of international refugee law", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Vigorously prosecute security force personnel who violate the law ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Continue efforts to address discrimination against women and combat gender-based violence", - "values": [ - "4 - General action" - ] - }, - { - "text": "Take concrete steps to ratify the Convention on the Rights of Persons with Disabilities and effectively implement policies and programmes to ensure the full enjoyment of all related rights", - "values": [ - "4 - General action" - ] - }, - { - "text": "Decriminalize consensual same-sex activity between adults ", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Ratify and implement ILO Convention No. 87 regarding freedom of association and protection of the right to organize", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Focus on marginalised groups or disadvantaged sections of society. Of particular relevance would be measures to improve health and education", - "values": [ - "4 - General action" - ] - }, - { - "text": "Harmonize the immigration legislation in accordance with the Convention on the Rights of the Child ", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Finalize the process of establishing a national human rights institution in accordance with the Paris Principles as soon as possible ", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Gender equality in the workplace, particularly concerning the executive level and the possibility of women gaining management positions, concerning both public enterprise and the private sector, as well as equal pay for men and women ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Make steps towards more sustainable reduction of school dropouts", - "values": [ - "4 - General action" - ] - }, - { - "text": "Maintain the de facto moratorium on executions that has been in force since the 1970s.", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Comprehensively amend or repeal, as a matter of urgency, the Witchcraft Act ", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Continue its efforts to improve standard of living conditions, including promoting social security ", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Take all necessary measures in order to make sure that cases of enforced disappearance are only addressed by the civilian courts and not special ones such as military courts", - "values": [ - "4 - General action" - ] - }, - { - "text": "Sign and ratify the Optional Protocol to the Convention on the Rights of Persons with Disabilities ", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Continue to strengthen its efforts and its track on socio-economic and political reforms in the bid to enhance the promotion and protection of fundamental human rights and freedoms ", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Recognize in law the gender identity of transgender people and do not restrict the rights of lesbian, gay, bisexual, transgender and intersex people", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Continue applying and reinforcing programmes and public policies on inclusion, poverty reduction, equality promotion and non-discrimination, with particular attention to women, children, the elderly and persons with disabilities, among other vulnerable groups", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Make all possible efforts in order to guarantee compliance with the interdiction of slavery in the new constitution ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Adopt and implement the United Nations Declaration on the Rights of Indigenous Peoples ", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Continue and reinforce current efforts aimed to increase the access to and quality of services to health and education for all its citizens", - "values": [ - "4 - General action" - ] - }, - { - "text": "Consider setting up an independent national human rights institution that would comply with the Paris Principles, and providing this institution with the necessary resources to effectively fulfil its mandate", - "values": [ - "3 - Considering action" - ] - }, - { - "text": "Strengthen existing mechanisms within its institutional infrastructure to eradicate discriminatory, cultural or based on customary laws, practices to the detriment of women, children, minorities and LGBT groups", - "values": [ - "4 - General action" - ] - }, - { - "text": "Further strengthen public institutions to combat trafficking in persons, through dedicated resources, enhanced cooperation with civil society, and incorporating best practices", - "values": [ - "4 - General action" - ] - }, - { - "text": "Intensify fighting radicalization and terrorism at its early stage to sustain the enjoyment of human rights and basic freedoms of all Singaporeans", - "values": [ - "4 - General action" - ] - }, - { - "text": "Enforce the principle of separation between State and Church in accordance with its own Constitution and not to condition the fulfilment of the rights of some of its citizens by the agreement of a religious body ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Continue to build up comprehensive efforts aimed at eliminating trafficking in persons, both at the national and international levels ", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Step up the fight against trafficking in persons and the unlawful smuggling of migrants through various modalities ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Allow access for international organizations to ethnic minority areas ", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Continue its reform of the system to protect children and enhance the social services for its population through the New Generation programme ", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Accede to the Rome Statute of the International Criminal Court (ICC)", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Give strong priority, as part of the process of judicial reform, to the work of the Law Reform Commission on strengthening the traditional local courts in relation to human rights and constitutional guarantees ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Repeal any remaining laws and regulations that discriminate against women and girls, and to ensure that these laws are in compliance with human rights obligations and commitments", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "That Greenland reform and upgrade municipal competences and accountability in order to apply constructive measures and to promote protection of the child against violence, and to assist families in rehabilitation efforts on substance abuse and addiction", - "values": [ - "4 - General action" - ] - }, - { - "text": "Further promote gender equality and combat violence against women", - "values": [ - "4 - General action" - ] - }, - { - "text": "Implement foster care programmes and alternatives to the penalty of deprivation of liberty", - "values": [ - "4 - General action" - ] - }, - { - "text": "Reconsider its practice of voting by local residents for the granting of citizenship, as well as consider reducing the length of the period of required residency.", - "values": [ - "3 - Considering action" - ] - }, - { - "text": "Take further measures to increase the participation of women in political life", - "values": [ - "4 - General action" - ] - }, - { - "text": "Ensure, in addition to the full implementation of the Law 6-2006, that no statements or confessions obtained under torture are admitted as evidence ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Sign and ratify the Optional Protocol to the Convention on the Rights of the Child on a communication procedure ", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Ratify or sign, as relevant, the International Convention for the Protection of All Persons from Enforced Disappearance CED, with a view to being consistent with its practice on this matter ", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Establish coordinated disaster risk management strategies and action plan", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Develop the legislative framework aimed at combating corruption", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Take urgent steps to fully respect the rights of ethnic minorities, including peaceful political and religious practices and expressions of cultural identity", - "values": [ - "4 - General action" - ] - }, - { - "text": "Pursue the development of enforcement mechanisms so that the National Action Plan for Combating Domestic Violence against Women is consistently implemented", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Under the Constitution, the Government recognizes the right of the people to health services, and its obligation to take every step reasonable and necessary to provide said services with the health care system including 2 hospitals in the urban centers and 58 health centers in the outer islands. The Government therefore provides free medical services to its people. Where these services cannot be provided, there are referral programs for patients to Honolulu, Philippines, and Taiwan. In renegotiating the Compact of Free Association with the United States, the RMI Government had maintained that one of its priority areas was health. From the Fiscal Year 2004 through 2009, one (1) new Health Center was constructed including five (5) maintenance projects for 46 outer island dispensaries using Compact public infrastructure funding. Planning already initiated for a new hospital in Majuro, and the hospital redevelopment project for the new hospital aims for ground breaking in early 2011. ", - "values": [ - "1 - Minimal action" - ] - }, - { - "text": "Implement further measures to tackle the problem of violence against women and combat impunity in this regard.", - "values": [ - "4 - General action" - ] - }, - { - "text": "Bring the legislation against sexual exploitation of children fully in conformity with the principles and provisions of CRC, the Palermo Protocol and the Council of Europe Convention against Cybercrime and Convention on the Protection of Children against Sexual Exploitation and Sexual Abuse ", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Strengthen the national policies on gender to reduce discrimination against women and increase their participation in the political and economic spheres", - "values": [ - "4 - General action" - ] - }, - { - "text": "Ensure that neither the death penalty nor the life sentence is imposed for offences committed by persons under the age of 18 ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Make the necessary efforts to repeal all legal provisions which can be applied to criminalize consensual sexual activity between adults of the same sex ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Fully incorporate its international human-rights obligations into domestic law by introducing a comprehensive judicially enforceable federal Human Rights Act", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Amend the Personal Status Law and Penal Code to guarantee equal rights for women and provide guarantees that domestic violence will be effectively prosecuted", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Promote a holistic perspective on the rights of the child in its international development assistance policy, in line with articles 4 and 12 of the Convention on the Rights of the Child", - "values": [ - "4 - General action" - ] - }, - { - "text": "Take measures to promote greater participation and representation of women in public positions, especially in politics", - "values": [ - "4 - General action" - ] - }, - { - "text": "Protect North Korean refugees in accordance with international law, honouring the principle of non-refoulement", - "values": [ - "4 - General action" - ] - }, - { - "text": "Establish an effective and inclusive process to follow-up on universal periodic review recommendations, bearing in mind that the active participation of civil society is essential to a meaningful review process", - "values": [ - "4 - General action" - ] - }, - { - "text": "Continue and strengthen its relationship of cooperation with the Office of the United Nations High Commissioner for Human Rights in order to develop an instrument for follow-up to the recommendations of the system\u2019s mechanisms", - "values": [ - "4 - General action" - ] - }, - { - "text": "Continue its efforts to fight against discriminatory and racist behaviour and trends", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Explore with the Ministries of Education at the state levels the incorporation of more content in school curricula on the longstanding historical contribution of the Roma and Sinti communities to German society and culture", - "values": [ - "3 - Considering action" - ] - }, - { - "text": "Consider ways of improving the authorities' response to hate crimes based on sexual orientation or gender identity", - "values": [ - "3 - Considering action" - ] - }, - { - "text": "Pay greater attention to the respect for women's rights when adopting legislative measures and abrogate all discriminatory measures against women.", - "values": [ - "4 - General action" - ] - }, - { - "text": "Consider more comprehensive measures that go beyond the 15 integrated justice services referred to in the national report", - "values": [ - "3 - Considering action" - ] - }, - { - "text": "Step up efforts to eliminate discrimination against indigenous children, Afro-descendant children and migrant children ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Undertake reform and an investment plan to improve conditions in the penitentiary system.", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Strengthen efforts to ensure the rights of migrants ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Formalise the political engagement with relation to the death penalty by signing and ratifying ICCPR- OP 2, aimed at abolishing the death penalty", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Set up a national institution in line with the Paris Principles and ensure a climate that is favourable to the activities of human rights defenders, journalists and other civil society actors", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Continue training and building the capacity of law enforcement institutions on human rights", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Strengthen the implementation of the second National Plan of Action by relevant Government agencies", - "values": [ - "4 - General action" - ] - }, - { - "text": "Reinstate the moratorium on the use of the death penalty as a first step towards its abolition", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Consider taking all necessary steps to establish a de jure moratorium, with a view to fully abolish the death penalty", - "values": [ - "3 - Considering action" - ] - }, - { - "text": "Adopt laws and promote programmes aimed at eliminating gender inequality, especially as regards access to opportunities and remuneration for men and women ", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Properly disseminate the National Strategy for the Prevention and Eradication of Child Labour among all central, local institutions and civil society", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Continue to develop and ensure an effective policy in combating organized crime and corruption", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Continue to support people with disabilities to participate in decisions about their fundamental rights", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Implement the regulations recently adopted with regard to property rights, and ensure that they are fully implemented by the competent judicial bodies ", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Ensure that the best interests of the child are taken into account when arresting, detaining, sentencing or considering early release for a sole or primary carer of the child, bearing in mind that visits of a parent in prison are primarily a right of the child rather than a privilege of the prisoner that can be withdrawn as a disciplinary measure ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Take all possible measures to ensure respect and promotion of international human rights law, international humanitarian law and international refugee law.", - "values": [ - "4 - General action" - ] - }, - { - "text": "Facilitate access to the Judiciary, especially for indigenous persons ensuring that they are represented in public affairs", - "values": [ - "4 - General action" - ] - }, - { - "text": "Increase women representation in Government to the 30 per cent guaranteed by the Constitution", - "values": [ - "4 - General action" - ] - }, - { - "text": "Expedite the review and alignment of national laws with the new Constitution", - "values": [ - "4 - General action" - ] - }, - { - "text": "Give greater consideration to the protection of human rights during judicial processes related to terrorism", - "values": [ - "3 - Considering action" - ] - }, - { - "text": "Identify the challenges in implementing its national migration management policy", - "values": [ - "4 - General action" - ] - }, - { - "text": "Continue its literacy campaign in cooperation with the United Nations Children's Fund (UNICEF)", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Continue to fight impunity by pursuing crimes that occurred during or in conjunction with the post-electoral conflict and previous conflicts in the country, regardless of which side in the conflicts the perpetrators belonged to. This includes continuing cooperation with the International Criminal Court ", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Take immediate measures to derogate from norms that criminalize and stigmatize lesbian, gay, bisexual, transgender and intersex persons and investigate and sanction the perpetrators of acts of discrimination and violence against them", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Carry out constructive and cooperative engagement with the special procedures, including the Special Rapporteur on the situation of human rights in Iran", - "values": [ - "4 - General action" - ] - }, - { - "text": "Resolve gender inequality with regards to conferring Barbadian nationality from parents to their children", - "values": [ - "4 - General action" - ] - }, - { - "text": "Continue promoting partnerships with regional and international institutions in order to give impetus to the development process and improve living standards of its nationals", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Facilitate the registration of NGOs", - "values": [ - "4 - General action" - ] - }, - { - "text": "Continue to implement the national strategy for the total elimination of FGM and all forms of excision ", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Fulfil its obligations under international human rights law and review its national legislation, as a matter of urgency, to decriminalize same-sex relationships and prohibit discrimination on any grounds, including sexual orientation ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Publicly support human rights advocacy and create a safe environment for all who promote human rights. ", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Ensure that the principle of the best interests of the child is adequately reflected in relevant laws ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Take the measures necessary to address the situation related to the absence of a control mechanism for detention procedures, in accordance with international human rights standards", - "values": [ - "4 - General action" - ] - }, - { - "text": "Continue strengthening the judiciary and further improve access to justice", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Ensure, in practice, the non-discrimination and respect of the rights of persons belonging to minorities, be they ethnic, cultural or religious, in particular the Bedouin and the Arab", - "values": [ - "4 - General action" - ] - }, - { - "text": "Review its decree on Internet-based information control and management to ensure citizens' rights to information and expression are respected", - "values": [ - "3 - Considering action" - ] - }, - { - "text": "Strengthen enforcement legislation and programmes regarding prohibition of commercial sexual exploitation of children", - "values": [ - "4 - General action" - ] - }, - { - "text": "Provide adequate support to the victims of sexual violence, in particular through the provision of counselling services and safe places ", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Continue to adopt measures in order to ensure the creation of a comprehensive anti-discrimination framework", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Take measures to strengthen the monitoring mechanisms to combat child labour and the economic exploitation of minors ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Spare no effort to expedite the eradication of the practice of female genital mutilation, availing itself of all existing measures at its disposal, such as criminal law, policies and awareness raising campaigns, among others ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Strengthen the protection of journalists by ensuring the effective investigation of violations of their rights ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Consider the ratification of the Optional Protocol to the Convention against Torture.", - "values": [ - "3 - Considering action" - ] - }, - { - "text": "Continue its efforts aimed at eliminating poverty and reducing inequality", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Review existing laws including the Law on Press and Publication to ensure freedom of expression in accordance with international standards", - "values": [ - "3 - Considering action" - ] - }, - { - "text": "Continue measures to increase access to health services for all, and enhance quality while giving special attention to the groups in vulnerable situations", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Review criminal law to make it fully comply with relevant international and regional obligations and, in particular, guarantee the protection of national, ethnic, religious or linguistic minorities", - "values": [ - "3 - Considering action" - ] - }, - { - "text": "Consider the inclusion of "gender" among the criteria of discrimination", - "values": [ - "3 - Considering action" - ] - }, - { - "text": "Abolish the death penalty and ratify the Second Optional Protocol to the Second Optional Protocol to the International Covenant on Civil and Political Rights ", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Nominate an ombudsperson for children ", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Take the necessary measures to eliminate legislation and policies that criminalize, in a direct or an indirect way, same sex relations and discriminate against lesbian, gay, bisexual, transgender and intersex persons", - "values": [ - "4 - General action" - ] - }, - { - "text": "Adopt a comprehensive national housing strategy with a view to ensuring access to adequate and affordable housing", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Take measures to promote and protect freedom of expression", - "values": [ - "4 - General action" - ] - }, - { - "text": "Introduce appropriate measures necessary to allow persons with disabilities to exercise their right to vote ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Fully implement the recommendations of the Convention on the Elimination of All Forms of Discrimination against Women issued in 2013 regarding the situation of women, including temporary special measures to ensure non-discrimination of women belonging to minorities, and allocating adequate funding for the national action plans and strategies aimed at eliminating all forms of discrimination against women belonging to the Roma population", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Take measures to follow-up on the recommendations of the Human Rights Committee, by putting an end to censorship of the press and to the harassment of journalists.", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Strengthen measures allowing indigenous communities to have access to education ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Implement public awareness campaigns to promote tolerance and respect for cultural diversity and to counter prejudice, stereotypes, discrimination, racism, and Islamophobia", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Continue actions to improve the situation of women, and take additional actions to eliminate forced or arranged marriage, polygamy and sexual violence ", - "values": [ - "3 - Considering action" - ] - }, - { - "text": "Take action with a view to bringing to an end the ratification procedures for the Rome Statute of the ICC", - "values": [ - "4 - General action" - ] - }, - { - "text": "Support efforts to prevent human rights abuses in Crimea and Donbas by facilitating access for monitors, human rights defenders, journalists, and lawyers, and investigate thoroughly any credible allegations of abuses by Ukrainian forces, and use all appropriate methods to promote accountability for abuses", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Introduce federal legislation criminalising violence against women", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Improve data compilation methods as well as statistics and strengthen the Central Statistics Office", - "values": [ - "4 - General action" - ] - }, - { - "text": "Adopt a law against different types of discrimination and for equality in the public and private sector, and the monitoring of complaints", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Strengthen its national policy on HIV/AIDS and ensure that young people are educated and engaged about safe sex and reproductive health practices", - "values": [ - "4 - General action" - ] - }, - { - "text": "Continue to address the marginalization and exclusion of women in the economic, social and political spheres, with special attention paid to eliminating the harmful practice of child marriage", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Intensify efforts in the field of the protection of children, ratify soon the Council of Europe Convention on the Protection of Children against Sexual Exploitation and Sexual Abuse, and implement the provisions contained therein ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Ratify and implement the International Convention on the Protection of the Rights of All Migrant Workers and Members of Their Families", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Continue to take the necessary measures for effectively fighting human trafficking and child labour\n\n", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Amend the Constitution to include freedom from discrimination on the grounds of sex.", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Take steps to bring about a change in attitudes with a view to eliminating deep-rooted stereotypes regarding the roles and responsibilities of women and men in the family and in society, which are reflected in women's educational choice, their situation in the labour market and their underrepresentation in political and public life and decision making positions ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Give a prominent role to civil society - not least women's organizations - in efforts to address domestic violence and violence against women and place focus on strengthening public awareness ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Ratify ICRMW in line with the recommendations made by CRC, CERD and CESCR ", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Improve the conditions for fair trial by introducing reforms to limit the Military Tribunal's jurisdiction to members of the armed forces and enhance the independence of the judiciary", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Take measures to address inequities in access to HIV-AIDS treatment and support, particularly in rural areas. ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Take all necessary measures to ensure the effective application of the Federal Act to prevent and punish Torture", - "values": [ - "4 - General action" - ] - }, - { - "text": "Further adopt and enact legislation to criminalise racial and racially motivated and hate crimes, to institutionalise national mechanisms for the collection of data on, and monitoring of, incidents of racism, racial discrimination and xenophobia, and to adopt laws and concrete measures to ensure the prompt, impartial and independent investigation, prosecution and punishment of perpetrators of incidents of racial, and racially-motivated hate speech, discrimination, and crimes ", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Forbid corporal punishment of children and take order in that matter ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Increase the focus on persons with disabilities and work towards integrating them in the community ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Prosecute cases of discrimination based on ethnic origin and language in employment", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Maintain its de facto moratorium on the use of the death penalty with a view to its total abolition", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Continue applying an inclusive approach for the implementation of national programmes in the area of employment", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Consider acceding to the 1951 Convention relating to the Status of Refugees and its 1967 Protocol", - "values": [ - "3 - Considering action" - ] - }, - { - "text": "Take effective action to combat and eliminate the phenomenon of female genital mutilation and ensure the full implementation of the relevant National Action Plan", - "values": [ - "4 - General action" - ] - }, - { - "text": "Intensify efforts to combat domestic violence and violence against women ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Take further steps to increase the budget for public education and continue to improve school facilities for children", - "values": [ - "4 - General action" - ] - }, - { - "text": "Make, until its next UPR review, substantial progress towards fulfilling its reporting obligations, including by requesting technical assistance if needed ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Allocate sufficient funds for the effective application of the Violence against Women Act ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Strengthen measures to prevent sexual exploitation of children, ensure prompt investigation of allegations of exploitation and sexual abuse, and punish perpetrators ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Accede to the International Convention for the Protection of All Persons from Enforced Disappearance as soon as possible", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Continue with policies and plans aimed at eliminating domestic violence and violence against children", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Undertake actions, with the support of the international community, aimed at improving access to health for the population", - "values": [ - "4 - General action" - ] - }, - { - "text": "Ensure that humanitarian access is granted to civilian populations in all conflict-affected areas", - "values": [ - "4 - General action" - ] - }, - { - "text": "Action plan for implementation covering both cycles of the universal periodic review as well as other mechanisms", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Enhance the protection of the rights of the child", - "values": [ - "4 - General action" - ] - }, - { - "text": "Strengthen national legislation criminalizing violence against women in order to remove the existing loopholes that leave room for perpetrators to escape punishment", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Continue addressing the HIV/AIDS impact on women and children, in particular the mother-to-child transmission ", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Promote human rights education", - "values": [ - "4 - General action" - ] - }, - { - "text": "Strengthen its national institutions in charge of the promotion and protection of human rights, with a view to fostering access to justice, particularly for the most vulnerable groups, such as women, older persons, children, indigenous peoples, persons with disabilities, people of African descent and the lesbian, gay, bisexual, transgender and intersex community", - "values": [ - "4 - General action" - ] - }, - { - "text": "Abstain from any practice that could endanger the lives of civilians", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Continue its active commitment on the international level for the prevention of genocide and crimes against humanity", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Improve compliance with International Labour Organization standards, including in relation to forced labour ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Pursuing a participatory process in implementing the National Development Plan ", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Share its experience relating to primary education and the promotion of women's rights with interested countries ", - "values": [ - "1 - Minimal action" - ] - }, - { - "text": "Launch wide education campaigns against the phenomenon of violence against perceived witches together with concrete measures to protect victims or potential victims of such attacks.", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Establish a moratorium on executions and initiate a broad public debate on the question of the death penalty with a view to its final abolition", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Take measures to control domestic violence, specifically for the rights of women ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Study the possibility to repeal the death penalty from its legal system ", - "values": [ - "3 - Considering action" - ] - }, - { - "text": "Take steps to promote equal working conditions for women and the right to private property ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Set up clear regulatory frameworks for the activities of the security companies in order to ensure their legal accountability regarding human rights abuses", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Develop a comprehensive strategy for children in street situations, using a child-rights approach and addressing both prevention and response", - "values": [ - "4 - General action" - ] - }, - { - "text": "Invest further efforts in political empowerment of representatives of minority communities with a view to encourage their meaningful participation in political processes at the local, regional and national levels, and thus provide for their better integration in the society", - "values": [ - "4 - General action" - ] - }, - { - "text": "Ratify international human rights treaties: Second Optional Protocol to the International Covenant on Civil and Political Rights, aiming at the abolition of the death penalty, Convention on the Rights of Persons with Disabilities ", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Adopt all measures to comply with its obligations under CERD, in particular to prohibit and punish organization of and participation in neo-Nazi demonstrations.", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Guarantee the fight against impunity by ensuring that all the perpetrators of human rights violations are prosecuted and tried, when appropriate, by the international criminal justice", - "values": [ - "4 - General action" - ] - }, - { - "text": "Sign and ratify the Optional Protocol to the Convention Against Torture ", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Adopt necessary measures to prevent violations of human rights and international humanitarian law within the framework of military operations", - "values": [ - "4 - General action" - ] - }, - { - "text": "Continue to consolidate its successful social plans, particularly its very successful education policy", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Adopt legislative measures to establish a comprehensive national system of care for victims of gender violence, including social awareness programs, the empowerment of women and the establishment of a network of shelters or refuges", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Put in place a comprehensive strategy, including review and formulation of legislation, to modify or eliminate traditional practises and stereotypes that discriminate against women", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Since Zambia has one of the highest birth rates in the world, develop and implement a comprehensive strategy on population and education policies, in line with and respecting economic, social and cultural rights", - "values": [ - "4 - General action" - ] - }, - { - "text": "Take further measures to bring down the wide pay gap that still exists between men and women in the workplace, reportedly reaching as high as 30 per cent, by assisting women to reconcile work and family life", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Increase cooperation with the relevant United Nations bodies and other international organizations in the efforts to reduce the incidence of maternal and infant mortality and increase women's access to health care facilities ", - "values": [ - "1 - Minimal action" - ] - }, - { - "text": "Continue its efforts in addressing historical injustices and protecting the rights of the victims of such injustices, both at the national and international levels", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "End discrimination against Palestinian households and children when loans are made available in areas such as healthcare and create a strategy for children in disadvantaged areas, in particular the Bedouin communities, migrants and asylum seekers", - "values": [ - "4 - General action" - ] - }, - { - "text": "Respect legislation on maximum duration of pretrial detention, and implement alternatives to preventive detention", - "values": [ - "4 - General action" - ] - }, - { - "text": "Consider developing Human Rights Indicators, as an important instrument that allows for a more precise and coherent evaluation of national human rights policies", - "values": [ - "3 - Considering action" - ] - }, - { - "text": "Fulfil its commitments under the Peace, Security and Cooperation Framework for the Democratic Republic of the Congo and the Region to comprehensively fight against all armed groups, in particular the Forces démocratiques de libération du Rwanda", - "values": [ - "4 - General action" - ] - }, - { - "text": "Strengthen capacity-building in the area of human rights and raise the level of awareness with regard to these rights", - "values": [ - "4 - General action" - ] - }, - { - "text": "Establish a system for the management of complaints of torture and ill-treatment by police and security forces to ensure that such acts, committed against civilians or prisoners, are effectively investigated and sanctioned", - "values": [ - "4 - General action" - ] - }, - { - "text": "Further implement policies to eliminate violence against women and children", - "values": [ - "4 - General action" - ] - }, - { - "text": "Sign and ratify CAT ", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Take measures to put an end to any recruitment or use of children in armed forces and groups within the police forces", - "values": [ - "4 - General action" - ] - }, - { - "text": "Accede to the International Convention on the Protection of the Rights of All Migrant Workers and Members of Their Families", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Strengthen measures to combat violence against children, particularly with regard to the prevention of early and forced child marriages and child trafficking and in particular through awareness-raising campaigns among families", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Put into place and build the capacity of an independent Human Rights Commission to highlight human rights violations", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Take additional legal and other measures to reduce pre-trial detention and overcrowding in detention facilities through increased resort to alternative forms of punishment ", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Adopt a comprehensive national work-plan to combat racial discrimination ", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Amend the 2002 Law on Alternative Medicine in order to prevent healers harming persons with albinism", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Continue the implementation of the education plan of 2014-2016", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Ensure that domestic and sexual violence against women and girls is investigated and that perpetrators are prosecuted", - "values": [ - "4 - General action" - ] - }, - { - "text": "Combat effectively against all discriminatory practices against women in its territory ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Proceed to ratify the second protocol to the International Covenant on Civil and Political Rights ICCPR concerning the abolition of the death penalty ", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Take swift and efficient action to mitigate the adverse effects of the rising cost of housing in Male through various measures, such as social benefits or microfinance schemes, in order to enhance the enjoyment of the right to adequate housing ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Ensure the full protection of refugees and displaced persons by strengthening the appropriate mechanisms of attention to safeguard optimal standards in their living conditions", - "values": [ - "4 - General action" - ] - }, - { - "text": "Strengthen the legal definition of rape by grounding it in lack of consent, rather than the use or threat of force, to ensure that the law provides better protection for survivors ", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Continue to strengthen national human rights mechanisms to protect the most vulnerable sectors of society", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Pursue this route of promoting and protecting human rights and to be encouraged by the international community, more particularly the Human Rights Council.", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Further empowerment of the Legislation Department of the Ministry of Justice in the area of specialized human resources, professional staff and other necessary facilities ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Guarantee the free, open and transparent nature of future presidential elections so that they are properly carried out and credible ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Strengthen the Special Prosecutor for Attention to Crimes against Freedom of Expression (FEADLE), and ensure reparation for the victims, as well as provide the mechanism for the protection of human rights defenders with the necessary support to fulfil its mandate ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Continue strengthening with specific measures the implementation of the two-year programme of action to promote the rights and inclusion of persons with disabilities", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Support and implement the Presidential Decree for 2009-2011, on the development of the juvenile justice system", - "values": [ - "4 - General action" - ] - }, - { - "text": "Take the necessary measures to implement the UN Program on Small Arms and Light Weapons and revise the national legislation on this matter in order to reduce the existing homicide rate ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Recognize the human right to water and sanitation ", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Establish a credible, independent electoral commission capable of registering eligible voters on a nationwide basis ahead of the 2018 elections", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Ensure universal access to quality reproductive and sexual health services, including contraception services, especially to women in rural areas and those living with HIV/AIDS", - "values": [ - "4 - General action" - ] - }, - { - "text": "Promote concrete action to combat inequality and guarantee the participation of women in social, cultural, political and economic development through affirmative action programmes", - "values": [ - "4 - General action" - ] - }, - { - "text": "The Mexican State is irrevocably committed to creating the necessary conditions for the fulfilment of its obligation to the international community to uphold the right to have access to justice.", - "values": [ - "4 - General action" - ] - }, - { - "text": "Seek technical and financial support from the international community to achieve the MDGs and overcome its economic difficulties exacerbated by the current financial crisis.", - "values": [ - "1 - Minimal action" - ] - }, - { - "text": "Continue working on the reform and improvement of prisons and detention centres in accordance with international norms on this issue", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Bring national legislation into compliance with the Optional Protocol to the Convention on the Rights of the Child", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Commit itself to establishing judicial procedures that uphold the rights of those accused of crimes and sent to court, or release people held in pre-trial detention ", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Implement social safety net programmes and increase funding for seniors and the handicapped", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Take all necessary measures to ensure the protection of the rights of the child", - "values": [ - "4 - General action" - ] - }, - { - "text": "Take the necessary measures to prevent the use of torture, in particular by security forces in prisons, as noted by a number of special rapporteurs", - "values": [ - "4 - General action" - ] - }, - { - "text": "Make the fight against corruption sustainable by ensuring implementation throughout the county of laws, regulations and practices adopted at the central level in order to prevent corruption. Measures should be taken with the aim to avoid room for local interpretations of these practices ", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Continue its efforts to reduce inequality in education, particularly the quality gap in education between urban and rural areas ", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Continue efforts to tackle gender discrimination, particularly in the areas of education and employment", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Adopt and implement legislation prohibiting discrimination on the basis of sexual orientation and gender identity, including by decriminalizing consensual same-sex sexual conduct", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Put an end to the practice of criminal prosecutions for moral crimes against women who have fled their home ", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Eliminate religious discrimination in access to education", - "values": [ - "4 - General action" - ] - }, - { - "text": "Include greater access of women to paid employment, among the measures to be taken to achieve social justice, and resist poverty and marginalization ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Adopt legislation and public policies which effectively prevent discrimination based on sexual orientation and gender identity", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Strengthen efforts deployed to prevent natural disasters", - "values": [ - "4 - General action" - ] - }, - { - "text": "An educational and civic policy that will, by 2016, cover the integration and teaching of human rights in the Gabonese education system (primary, secondary and higher). With this in mind, in July 2005, Gabon adopted the Action Plan for 2005-2009 of the World Programme for Human Rights Education, which focuses on the national school system. Representatives of the Government and the National Human Rights Commission reaffirmed this commitment during the workshop on human rights education in Brazzaville on 11 and 12 June 2010, which was organized for countries in Central Africa by the African Union Commission. ", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Consider the possibility of ratifying the International Convention for the Protection of All Persons from Enforced Disappearance (CPED)", - "values": [ - "3 - Considering action" - ] - }, - { - "text": "Ratify the CRPD and adopt discrimination laws to protect persons with disabilities", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Create a compliant mechanism to determine reparations for the victims of sexual violence", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Enforce legislation that prohibits discrimination, particularly based on gender, race and belief, to improve the economic opportunities and conditions of work for women and minority groups", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Combat effectively violence against children resulting from the sexual abuse of minors", - "values": [ - "4 - General action" - ] - }, - { - "text": "Continue its efforts on health, the social service system and education in order to help the vulnerable and disabled, particularly women and children ", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Adopt legislation to prohibit FGM and, at the same time, promote an open dialogue on this issue ", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Withdraw reservations to Articles 2 and 16 (1) (c) of CEDAW", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Pursue judicial reform to improve access to justice by promoting a better geographical coverage and upgrading the prison administration", - "values": [ - "4 - General action" - ] - }, - { - "text": "Accelerate efforts to achieve the remaining millennium development goal targets, including goal 2 on universal primary education and goal 4 on reducing infant and under-5 mortality rates", - "values": [ - "4 - General action" - ] - }, - { - "text": "Implement fully legal guarantees for freedom of expression as stipulated in the Constitution, thus allowing Qatari citizens to exercise their freedom of expression and opinion and enabling independent media in the country ", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Prioritize its efforts on the situation in the rural area, where the number of literacy rate is still relatively lower than those in the urban area", - "values": [ - "4 - General action" - ] - }, - { - "text": "Continue its cooperation with the mechanisms of the Human Rights Council ", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Continue efforts relating to the fight against discrimination, analyzing the possibility that the national legal framework includes all forms of discrimination ", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Increase its efforts to ensure fair and effective judicial processes, particularly with regard to human rights abuses", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Accept visits from United Nations special rapporteurs, and in particular to accept the request\nmade by the Special Rapporteur on freedom of religion or belief, which has been awaiting a response\nsince 2006 ", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Continue to establish a solid legal framework, strengthen national human rights institutions, and ensure the effective administration of justice", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Continue efforts to support at the national level, children on the street in order to achieve the objectives set by the Senegalese Government in this area by the end of 2015", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Set in place effective campaigns to inform and sensitize the population on the matter of domestic violence", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Further continue concentrating on economic development to bring about sustainable peace and ensure enjoyment of human rights", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Step up its efforts to strengthen compliance with the Labour Code (Act No. 14 of 2014) and take action to strengthen the effective protection of migrant workers ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Restrict the application of the death penalty not only to the most serious crimes but also according to the international minimum standards. consider the establishment of a moratorium on the use of the death penalty with a view to its abolition.", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Develop a multi-ethnic learning environment in schools, aimed at reconciliation among ethnic groups", - "values": [ - "4 - General action" - ] - }, - { - "text": "Review and amend legislation containing discriminatory provisions towards women such as, inter alia, the Personal Status Law and the Criminal Law, and adopt a national action plan on gender equality", - "values": [ - "3 - Considering action" - ] - }, - { - "text": "Take all necessary steps, in accordance with its commitments, to ensure the swift adoption of a law that prohibits and penalizes all forms of gender-based violence, including domestic and sexual violence, and ensure that victims of such violence have access to legal remedies and benefit from support and assistance to ensure their rehabilitation and reintegration into society", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Ensure that legislation introduced giving effect to the new Constitution complies with Hungary's international human rights obligations ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Consider the possibility of strengthening targeted social assistance to low-income families with children ", - "values": [ - "3 - Considering action" - ] - }, - { - "text": "Consolidate the normative framework that regulates the activity and competences of the (Equality) Council", - "values": [ - "4 - General action" - ] - }, - { - "text": "Continue building the capacity of health and social services to provide care for children with disabilities ", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Seek to address, as a matter of priority, any rules and customs that discriminate against women.", - "values": [ - "4 - General action" - ] - }, - { - "text": "Adopt immediate measures to assign an ad litem tutor or adviser to unaccompanied minors independently of whether an application for protection has been submitted", - "values": [ - "4 - General action" - ] - }, - { - "text": "Intensify its efforts and take appropriate measures to guarantee the right of opinion, freedom of expression and freedom of assembly.", - "values": [ - "4 - General action" - ] - }, - { - "text": "Consider ratifying the Rome Statute of the International Criminal Court.", - "values": [ - "3 - Considering action" - ] - }, - { - "text": "Ensure the participation of civil society in the drafting of a new law on domestic violence", - "values": [ - "4 - General action" - ] - }, - { - "text": "Take further steps to improve the quality and accessibility to heath care facilities and services in rural communities", - "values": [ - "4 - General action" - ] - }, - { - "text": "Work with civil society organizations to assist and redress women affected by domestic violence ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Introduce ex-officio prosecution for all acts of domestic violence.", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Withdraw its reservation on pertinent articles of the of the International Convention on the Elimination of All Forms of Racial Discrimination, the International Covenant on Economic, Social and Cultural Rights, the International Covenant on Civil and Political Rights and the Optional Protocol to the Convention on the Rights of the Child on the involvement of children in armed conflict ", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Continue efforts to protect human rights defenders from threats and intimidation to ensure they can perform their functions properly", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Take necessary measures to open the office of the Federal Ethics and Anti-Corruption Commission in the remaining two national regional States ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Investigate allegations of torture and ill-treatment by law and order forces and ensure rapid administration of justice ", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Implement a comprehensive reform of the penitentiary system that addresses concerns expressed by international observers and in particular the European Committee for the Prevention of Torture and Inhuman or Degrading Treatment or Punishment.", - "values": [ - "4 - General action" - ] - }, - { - "text": "Continue to develop policies to protect women's rights", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Establish specialized support centres for victims of sexual violence or victims of sexual aggression against women and children ", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Continue to prioritize poverty elimination in its national development and enhance its people's well-being", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Step up efforts aimed at addressing deep-rooted stereotypes that still have a negative impact on the rights of women, and fight against heinous traditional practices such as early and forced marriage", - "values": [ - "4 - General action" - ] - }, - { - "text": "Consider ratifying the International Convention for the Protection of All Persons from Enforced Disappearance.", - "values": [ - "3 - Considering action" - ] - }, - { - "text": "Continue to pay special attention to the situation of the Roma minority by strengthening its efforts to provide equal access to citizenship without discrimination based on ethnicity", - "values": [ - "4 - General action" - ] - }, - { - "text": "Fully address the concerns published in the 4 November report of the European Committee for the Prevention of Torture and Inhuman or Degrading Treatment or Punishment.", - "values": [ - "4 - General action" - ] - }, - { - "text": "Pay special attention to the situation of indigenous people in programmes-strategies to reduce-eradicate poverty", - "values": [ - "4 - General action" - ] - }, - { - "text": "Allow the Special Rapporteur on torture to visit before the end of 2012 ", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Cooperate closely with the OHCHR office to be soon established in the country while implementing universal periodic review recommendations", - "values": [ - "4 - General action" - ] - }, - { - "text": "Take all necessary measures to protect the rights of migrant workers and members of their families, particularly by ensuring their access to an effective remedy before a competent authority for the protection of their rights and prosecute and punish civil servants responsible for acts of ill-treatment and offences against them", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Conduct a public consultation on the Cybercrime law to ensure that the law does not prevent free speech and expression, including religious expression ", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Adopt effective measures to prevent any harassment or intimidation of all those exercising their democratic rights of freedom of association and expression ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Guarantee that armed forces and police benefit from human rights training", - "values": [ - "4 - General action" - ] - }, - { - "text": "Continue to adapt the legislation to ensure the full implementation of the Convention on the Elimination of All Forms of Discrimination against Women and, in particular, expressly prohibit and criminalize female genital mutilation ", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Continue efforts to ensure access to education for all Rwandan children", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Withdraw its reservations to the Convention on the Elimination of All Forms of Discrimination against Women", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Continue working to create a national human rights institution in accordance with the Paris Principles", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Take effective measures to provide housing units in sufficient numbers for the disadvantaged and marginalized groups ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Ensure the protection of freedom of opinion and expression", - "values": [ - "4 - General action" - ] - }, - { - "text": "Allow the Commission of Inquiry access and allow it to carry out its work freely", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Establish an independent complaints mechanism for children in alternative care institutions ", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Continue efforts to promote and protect the rights of women and address legislative gaps related to the issue", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Amend sections 44 (d), 44 (f) and 30 (1) (a) of the Non-Governmental Organizations Act to align them with the Ugandan Constitution and international human rights law ", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Ratify the Rome Statute of the International Criminal Court and continue training of law enforcement officials.", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Prohibit discrimination on the ground of gender identity in employment legislation, such as by amending the Labour and Employment Relations Act, 2013", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Continue to prioritize health care in the national budget", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Intensify efforts to conclude the submission of overdue reports to the various treaty bodies ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Fully respect its human rights obligations, not only in its own territory, but also in places under its control, such as the Occupied Palestine Territories, as recalled by treaty bodies and the International Court of Justice.", - "values": [ - "4 - General action" - ] - }, - { - "text": "Colombia renews its commitment to prevent the recruitment of children and adolescents by illegal armed groups. ", - "values": [ - "4 - General action" - ] - }, - { - "text": "The Lao PDR will endeavour to incorporate provisions of the conventions to which it is a party into domestic legislation, and to enhance the implementation of those conventions in the country in a more effective way.", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Ratify the Optional Protocol to the Convention on the Rights of Persons with Disabilities, and sign and ratify the Optional Protocol to the International Covenant on Economic, Social and Cultural Rights", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Continue to make concerted efforts to find a permanent and peaceful solution to the conflict in Darfur ", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Provide, in accordance with its obligations under international human rights law instruments, effective protection for the family as the fundamental and natural unit of society ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Take the necessary steps for timely ratification of CAT ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Take all necessary measures so that the Act on Women's Right to a Life Free from Violence is effectively implemented", - "values": [ - "4 - General action" - ] - }, - { - "text": "Take appropriate legislative measures to void the legislation requiring human rights organizations that receive foreign funding to register as "foreign agents" ", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Further adopt and implement policies and legislation to combat gender discrimination and to promote the empowerment of women, including equal job opportunities and equal remuneration for work of equal value ", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Continue implementing the national action plan to guide the progressive elimination of child labour", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Improve the availability of sexual and reproductive health services, including family planning", - "values": [ - "4 - General action" - ] - }, - { - "text": "Enhance the participation of and cooperation with relevant NHRIs and civil society in planning and implementation of human rights agenda in the future", - "values": [ - "4 - General action" - ] - }, - { - "text": "Ensure equal access to quality education for Roma children", - "values": [ - "4 - General action" - ] - }, - { - "text": "Further promote ethnic and racial equality, building on the important policy measures already taken", - "values": [ - "4 - General action" - ] - }, - { - "text": "Consider establishing national human rights institutions in compliance with the Paris\nPrinciples", - "values": [ - "3 - Considering action" - ] - }, - { - "text": "Ratify the Convention on the Elimination of All Forms of Racial Discrimination the Convention against Torture and Other Cruel, Inhuman or Degrading Treatment or Punishment and its Optional Protocol", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Continue to promote and protect the enjoyment of fundamental freedoms and rights of its citizens in the areas of education, health, rights of women and children, and persons with disabilities", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Further increase popular participation in elections and decision making procedures ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Implement legislative provisions to prevent the criminalization of irregular migration and to encourage the use of alternative measures to deprivation of liberty, so that the detention of asylum seekers is established as a measure of last resort, while re-establishing the mechanism to determine refugee status", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Continue to take steps for economic and political empowerment of women", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Continue efforts to promote the rights and working conditions in employment, including through appropriate legislative and administrative measures", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Establish programmes and plans to combat trafficking in persons ", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Continue enhancing its efforts on strengthening women's rights through its National Strategy for the Advancement of Women 2013-2017", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Enact legislation to prohibit explicitly corporal punishment of children in all settings, including at home and by members of their family", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Continue its efforts for the promotion and protection of human rights and also for the legitimate interests of organisations and individuals working faithfully to uphold the human rights of the Chinese people", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Strengthen its efforts to increase the number of women participating in political life, in particular at the national level, and to revise the national Assembly Elections Act to accelerate the political advancement of women in the forthcoming elections", - "values": [ - "4 - General action" - ] - }, - { - "text": "Reconsider its reservations to the Convention on the Rights of the Child", - "values": [ - "3 - Considering action" - ] - }, - { - "text": "Establish labour courts in an effort to guarantee respect for worker rights and to provide legal and efficient solutions to labour disputes, and revise the law on trade unions ", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Adopt measures to investigate, prosecute and punish those responsible for serious human rights crimes such as enforced disappearances, in accordance with international norms and in a transparent manner.", - "values": [ - "4 - General action" - ] - }, - { - "text": "Ensure fair trials and strictly respect the absolute prohibition of torture, including ensuring that confessions or information obtained as a result of torture and other ill treatment must not be used as evidence", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Take all the necessary measures to ensure de jure and de facto gender equality, with special attention to narrowing gaps in the participation in the public sphere and labour market ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Strengthen measures to reduce unemployment and underemployment of youth", - "values": [ - "4 - General action" - ] - }, - { - "text": "Ensure security and protection of all journalists and media institutions, and that legislation complies with international standards on free speech", - "values": [ - "4 - General action" - ] - }, - { - "text": "Take all necessary measures to prevent torture and ensure that the absolute prohibition of torture is observed.", - "values": [ - "4 - General action" - ] - }, - { - "text": "Extend standing invitation to all special procedures mandate holders", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Put in place concrete measures to facilitate birth registration by extending the free registration deadline and through multiplication of awareness-raising activities thereon", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Continue efforts to improve the literacy rate among women", - "values": [ - "4 - General action" - ] - }, - { - "text": "Strengthen all types of measures aimed at the universal registration of children across the country, among others, through a broader use of the mobile birth registration system, promoting new awareness-raising strategies on the importance of birth registration and ensuring that it remains free ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Increase the policies which permit legislative provisions for nondiscrimination between men and women in employment to be reflected in practice, especially in relation to differences in pay and the prevalence of temporary employment contracts among women ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Continue its efforts to promote gender equality and consider appropriate legislative changes, including criminalizing marital rape", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Continue to disseminate the culture of human rights", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Strengthen efforts to reduce maternal mortality, including by reviewing the legislation on abortion", - "values": [ - "4 - General action" - ] - }, - { - "text": "Continue strengthening programs to combat domestic violence, including an awareness-raising plan", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Ensure urgently, through stable and systematic funding, continued functioning of the two bilingual Slovenian-Hungarian schools in Gornji Senik/Felsöszölnök and Stevanovic/Apátistvánfalva ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Sign and ratify the Optional Protocol to the Convention on the Rights of the Child on the involvement of children in armed conflict ", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Fully and effectively implement the recommendations by the Special Rapporteur on the rights to freedom of peaceful assembly and of association, following his mission to Oman in September 2014", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Strengthen measures to raise awareness and provide information through specific programmes of human rights education and training and to incorporate human rights in school curricula ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Continue strengthening its sound social plans and programs in favour of its people ", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Extend the \u201cWomen Living without Violence\u201c programme, with particular attention to women and girls living in the countryside and to women and girls of Afro-Brazilian descent", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Extend standing invitations to the Special Rapporteur on the situation of human rights defenders and other United Nations Special Rapporteurs on human rights issues, in particular those who have made visit requests ", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Strengthen its cooperation with Treaty Bodies", - "values": [ - "4 - General action" - ] - }, - { - "text": "Take all necessary measures to ensure that all cases of societal violence are effectively investigated and perpetrators prosecuted and punished", - "values": [ - "4 - General action" - ] - }, - { - "text": "Consider the possibility of implementing affirmative action policies in order to achieve a larger representation of women in the executive, legislative and judiciary branches ", - "values": [ - "3 - Considering action" - ] - }, - { - "text": "Continue cooperating with international human rights mechanisms to strengthen its institutional capacity in the defence and promotion of human rights ", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Further develop educational services and programmes for the training of persons with disabilities in partnership with relevant institutions", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Pay special attention to the rights of Roma children to education, and implement the relevant policy instruments to ensure their enjoyment of the rights as enshrined in the Estonian Constitution ", - "values": [ - "4 - General action" - ] - }, - { - "text": "End collective punishment in the Occupied Palestinian Territories, in particular in the Gaza Strip", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Pay particular attention to continuing and disseminating the culture of human rights among young people as part of its educational and pedagogical programme.", - "values": [ - "4 - General action" - ] - }, - { - "text": "Continue with its commitment to promoting awareness among the largest possible number of countries regarding the importance of ratifying ICRMW ", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Take practical action to ensure that existing anti-discrimination legislation is properly enforced so as to combat discrimination against its citizens, both systemic and overt, based on in particular, ethnicity, sexual orientation and gender identity, and HIV status", - "values": [ - "4 - General action" - ] - }, - { - "text": "Establish a moratorium on all executions and, eventually, abolish the death penalty ", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Take further measures to prevent violence and discrimination against ethnic minorities.", - "values": [ - "4 - General action" - ] - }, - { - "text": "Consider repealing the discriminatory practice in the inheritance laws.", - "values": [ - "3 - Considering action" - ] - }, - { - "text": "Consider abolishing the requirements for medical interventions for transgender people who wish to obtain legal recognition of their gender", - "values": [ - "3 - Considering action" - ] - }, - { - "text": "Continue with its efforts to remove discriminatory norms against women from its legislation ", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Ensure the full enjoyment of civil and political rights with a view to consolidating the rule of law", - "values": [ - "4 - General action" - ] - }, - { - "text": "Improve access by disadvantaged groups to social security ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Release all political prisoners ", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Adopt measures that are considered relevant to promote learning support for girl children from ethnic minorities in order to reduce the dropout rate", - "values": [ - "4 - General action" - ] - }, - { - "text": "Ensure that the new Constitution fully guarantees, without discrimination, the respect of all human rights enshrined in the international instruments to which Tunisia is a party ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Amend the current Employment Permit System Act to ensure that an application for a visa extension or a renewal is not restricted or refused to migrant workers who have changed jobs", - "values": [ - "4 - General action" - ] - }, - { - "text": "Maintain the moratorium on executions with a view to abolishing the death penalty and provide statistics, including sex and age, on persons sentenced to the death penalty or executed ", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Speed up the national reconciliation process, so as to consolidate the progress towards the enjoyment of human rights by its people, with the support of the international community ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Continue to promote and protect the right of all persons to equality without discrimination based on sexual orientation, at both the national and international levels.", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Further strengthen efforts in the area of preventing and combating illegal migration, including through high-risk sea boats", - "values": [ - "4 - General action" - ] - }, - { - "text": "Adopt the Prevention of Communal and Targeted Violence Bill addressing issues such as accountability of civil servants, standards of compensation for victims and elements of command responsibilities", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Strengthen measures to ensure the investigation and sanctioning of hate speech against minorities, including those made in the media and during political discourse", - "values": [ - "4 - General action" - ] - }, - { - "text": "Ratify the International Convention on the Protection of All Persons from Enforced Disappearance and the Optional Protocol to the International Covenant on Economic, Social and Cultural Rights", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Amend legislation to comply with international obligations to guarantee freedom of expression", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Establish a national human rights institution in line with the Paris Principles and develop a comprehensive national human rights action plan", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Present its standing invitation to the special procedures of the United Nations Human Rights Council", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Take the necessary measures to ratify the Optional Protocol to the Convention against Torture", - "values": [ - "4 - General action" - ] - }, - { - "text": "Improve conditions in prisons and detention centres to comply with international standards", - "values": [ - "4 - General action" - ] - }, - { - "text": "Ratify the Optional Protocol to the Convention on the Rights of the Child on the sale of children, child prostitution and child pornography, as recommended by the Committee on the Rights of the Child in 2013", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Make every effort to pay due attention to the human rights of asylum seekers and to avoid using disproportionate force on migrants and refugees", - "values": [ - "4 - General action" - ] - }, - { - "text": "Continue to take measures to reduce maternal and child mortality to achieve the objectives of the sustainable development goals 2030", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Fully respect the economic and social rights of migrant workers and their families and ensure their inclusion in the society", - "values": [ - "4 - General action" - ] - }, - { - "text": "Continue progress in the implementation of the policies that safeguard the rights and dignity of migrants ", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Ratify the International Convention on the Protection of the Rights of All Migrant Workers and Members of Their Families and revise the national laws and regulations to ensure full protection against forced labour for all categories of workers, and ensure effective oversight of labour conditions", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Continue its efforts to develop capacities of women to fulfil their responsibilities as key partner in the development ", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Continue its efforts in the implementation of the United Nations Convention against Transnational Organized Crime and the Palermo Protocol to Prevent, Suppress and Punish Trafficking in Persons, Especially Women and Children domestically in an appropriate manner", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Make sure to strike a balance between the need to give Roma a chance to own their own land and the risk of cemented segregation that might bring. Giving the Roma the chance to buy out the now, sometimes illegal, lands of settlements would create better possibilities also to claim the need for sanitation and municipal services ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Declare a moratorium to abolish capital punishment and commute such punishment to deprivation of liberty ", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Modify the criminal code to decriminalize same-sex sexual activity between consenting adults and to criminalize all forms of sexual abuse of children, regardless of the sex of the child", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Continue to develop facilities and improve social services for persons with disabilities, including those affected by mental illness", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Ensure the law relating to the punishment of the crime of "genocide ideology" is not manipulated or interpreted in a manner that restricts the responsible exercise of the freedom of opinion, expression or association ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Take measures to promote a safe and enabling environment for journalists to perform their work independently and without undue interference", - "values": [ - "4 - General action" - ] - }, - { - "text": "Ensure that legislation criminalizing female genital mutilation is effectively implemented and that offenders are prosecuted", - "values": [ - "4 - General action" - ] - }, - { - "text": "Respond more regularly and in a timely manner to the questionnaires sent by OHCHR ", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Consider the possibility of acceding to all the international human rights treaties and conventions to which it is not yet party", - "values": [ - "3 - Considering action" - ] - }, - { - "text": "Strengthen Government efforts to ensure protection and provide redress to victims of domestic violence", - "values": [ - "4 - General action" - ] - }, - { - "text": "Take actions to strengthen the implementation of the ILO Indigenous and Tribal Peoples Convention, 1989 (No. 169), together with the employment of effective measures to protect the territory of isolated indigenous peoples. This includes revising overlapping land rights to further progress the assigning of territory to indigenous peoples in order to prevent land conflicts", - "values": [ - "4 - General action" - ] - }, - { - "text": "Develop a national action plan against racism in line with the Durban Declaration and Programme of Action", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Continue its efforts in strengthening the education system and the legal framework to protect the rights of children in accordance with its obligations under the Convention on the Rights of the Child ", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Strengthen its actions against on all forms of discrimination and effectively protect the rights of women, children and immigrants ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Properly investigate and prosecute perpetrators of attacks against human rights defenders", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Continue fighting racial hatred and racially motivated violence against Roma by effectively and promptly investigating and addressing all crimes against them", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Undertake reforms in the defence and security sectors to avoid military interference in government affairs and to create the necessary conditions to put in place the rule of law", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Continue to work on improving the situation of children's rights.", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Consider signing all the core international human rights instruments ", - "values": [ - "3 - Considering action" - ] - }, - { - "text": "Implement measures to eliminate discrimination against minority groups, in particular the Roma and children in vulnerable situations, including children with disabilities, with HIV/AIDS, abandoned children or victims of violence and guarantee their access to education, housing, medical care and health services", - "values": [ - "4 - General action" - ] - }, - { - "text": "Continue to pursue the adoption and implementation of legislative or administrative measures aimed at the promotion and protection of the rights of the child ", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Intensify measures aimed at enhancing the equal representation of women in politics and the economy, both at the confederation and cantonal levels", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Continue with its efforts to improve the status of women and empower them", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Consider withdrawing its reservation to articles 15 (2) and 16 (1) (h) to the Convention on the Elimination of All Forms of Discrimination against Women", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Continue to implement the adopted HIV/AIDS response strategies, with a view to further reducing new infections", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Put in place a comprehensive strategy with a result-oriented approach to eliminate stereotypes that discriminate against women in the family, the workplace, in politics and in collaboration with civil society", - "values": [ - "4 - General action" - ] - }, - { - "text": "That appropriate steps are taken to ensure inclusive education in Slovak schools and to desegregate students that have been placed in special classes or special schools on other grounds than mental disability ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Promulgate and strengthen national legislation to comply with obligations under the Rome Statute and adhere to the Convention on the Non-Applicability of Statutory Limitations to War Crimes and Crimes against Humanity", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Continue reinforcing the normative framework in order to combat all forms of discrimination, including those on the grounds of sexual orientation and gender identity", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Pursue with resolution the positive efforts aimed at restoring a normal constitutional life by emphasizing the democratic foundation and respect for human rights ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Protect the rights of Pygmy minority and elevate their health conditions and make all health services accessible to them, while facilitate their attainment of different health services in an easy way", - "values": [ - "4 - General action" - ] - }, - { - "text": "Commute all death sentences, declare a moratorium on executions and move towards an abolition of the death penalty", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Investigate allegations of torture and excessive use of force and take appropriate measures to punish perpetrators", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Step up its efforts to combat discrimination against women and prohibit corporal punishment of children in all circumstances", - "values": [ - "4 - General action" - ] - }, - { - "text": "Lift the age of criminal responsibility", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Continue strengthening the provisions guaranteeing human rights to persons belonging to ethnic minorities ", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Strengthen the national mechanism on gender equality", - "values": [ - "4 - General action" - ] - }, - { - "text": "Continue its positive efforts with a view to promoting equality and nondiscrimination against different national minorities living together in the country", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Implement a ban on racist organizations, in line with its international obligations ", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Uphold its international human rights obligation and constitutionally provided rights of freedom of expression, including freedom of the press, to all persons in Timor-Leste", - "values": [ - "4 - General action" - ] - }, - { - "text": "Consider amendments to legislation to facilitate the registration of independent media and to guarantee its freedom ", - "values": [ - "3 - Considering action" - ] - }, - { - "text": "Continue promoting and protecting the rights of minorities by fully integrating minorities in all socio-economic aspects in addition to education, medical service and employment", - "values": [ - "4 - General action" - ] - }, - { - "text": "Redouble efforts to protect young people under 18 years, especially young women, against the worst forms of labour, including trafficking, sexual exploitation and hazardous work", - "values": [ - "4 - General action" - ] - }, - { - "text": "Promote the principle of equality in the broadest sense possible, including with regard to nationality, foreign issues and in the areas of work, during the development of the new law on the rights of women ", - "values": [ - "4 - General action" - ] - }, - { - "text": "In the light of the moratorium on the application of the death penalty, take appropriate measures with a view to its abolition", - "values": [ - "4 - General action" - ] - }, - { - "text": "Expedite the finalization of the national policy on ending violence against women and girls", - "values": [ - "4 - General action" - ] - }, - { - "text": "Strengthen further the capacity of the National Bureau of Gender Policy ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Ensure that minors have access to education in a safe environment in line with its obligations under the Convention on the Rights of the Child and other international human rights instruments", - "values": [ - "4 - General action" - ] - }, - { - "text": "Continue effective implementation of article 261 bis of the Criminal Code, which highly contributes to the elimination of impunity and prevents crimes against humanity, in particular genocide ", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Appoint independent and qualified members to its national preventive mechanism to enable it to function in accordance with the objectives of the Optional Protocol to the Convention against Torture", - "values": [ - "4 - General action" - ] - }, - { - "text": "Continue its efforts to finalize its ratification of the 1980 Hague Convention on the Civil Aspects of International Child Abduction (Hague Convention). Canada acknowledges Japan's progress to date in this regard, notably its development of domestic legislation for Diet approval, and encourages progress towards ratification and implementation to continue in a timely fashion", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Ratify the Convention on the Elimination of All forms of Discrimination against Women and the Convention on the Rights of the Child and ensure their full implementation", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Enhance Law 26.364 on trafficking in persons, particularly on the basis of the recommendations of the Special Rapporteur on Trafficking in Persons", - "values": [ - "4 - General action" - ] - }, - { - "text": "Continue work on the National plan of action launched regarding the good governance framework within the administration ", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Engage civil society in the follow-up implementation process of the universal periodic review recommendations", - "values": [ - "4 - General action" - ] - }, - { - "text": "Repeal legislation criminalising homosexuality, and introduce policies aimed at ending discrimination against homosexuals ", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Continue its commendable efforts for the total eradication of FGM ", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Carry on with the education coverage, especially the integration of children with disabilities", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Further continue its stated policy of studying and reviewing its policy towards ratification of key international human rights instruments ", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Accelerate the process of aligning its national legislation with the provisions of the Rome Statute", - "values": [ - "4 - General action" - ] - }, - { - "text": "Further continue its efforts to combat domestic violence and intensify the implementation of the Government Action Plan for Gender Equality", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "(1) Attained universal basic education. (2) Reduced illiteracy among 15- to 24-year-olds to 1 per cent. (3) Reached gross coverage levels of 100 per cent for basic education (preschool, primary and lower secondary) and 93 per cent for higher secondary (middle school) education. (4) Established an average of 10.6 years' schooling among the 15- to 24-year-old age group. (5) Reduced the repeat rate in basic and middle education to 2.3 per cent.", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Establish the legal conditions that are necessary in order to avoid discrimination of Maroons and indigenous peoples in terms of socio-economic development, health status, and access to health care ", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Fully ensure the protection of cultural, educational, religious and linguistic rights of all the communities and minorities living in Ukraine, welcoming in this regard the submission of the recent Law on education to the Venice Commission for an expert opinion, which should be fully taken into account", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Fully enable civil society and NGO groups to conduct their activities", - "values": [ - "4 - General action" - ] - }, - { - "text": "Continue implementing the plans and programmes of the second Philippines Human Rights Plan 2012-2017 ", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Consider increasing the resources allocated to the prison system, as suggested by CAT ", - "values": [ - "3 - Considering action" - ] - }, - { - "text": "Ensure the full protection of children's rights, in particular of children who are victims of the internal armed conflict, and adequately address all situations of violence against women.", - "values": [ - "4 - General action" - ] - }, - { - "text": "Continue its laudable efforts to fight all forms of violence against women and girls ", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Continue efforts to increase the capacity to implement the national plan for women in Afghanistan.", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Undertake actions to improve the competency and capacity of its judicial sector including sensitizing judicial personnel on issues concerning vulnerable groups", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Assess the possibility of extending an invitation to the United Nation special procedures, with thanks for the information provided regarding the invitation to the Independent Expert on the issue of human rights obligations related to access to safe drinking water and sanitation ", - "values": [ - "3 - Considering action" - ] - }, - { - "text": "Enhance measures aimed at improving women's rights through education, in particular for the Roma and rural women.", - "values": [ - "4 - General action" - ] - }, - { - "text": "In view of its positive cooperation with special procedures of the Human Rights Council, extend an open standing invitation to these procedures", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Continue its policy of development based on respect for human rights", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Amend existing provisions in the Criminal Code with the aim of introducing a complete abolition of the death penalty ", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Prohibit all forms of corporal punishment of children in all settings, including alternative care settings ", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Protect the rights of its most vulnerable children and ensure their full participation in education", - "values": [ - "4 - General action" - ] - }, - { - "text": "Respect the right to self-determination of Palestine as an independent and sovereign state with East Jerusalem as its capital", - "values": [ - "4 - General action" - ] - }, - { - "text": "Undertake all necessary efforts to allow for both parents to be able to act responsibly for the upbringing and development of the child", - "values": [ - "4 - General action" - ] - }, - { - "text": "Implement further measures to close the gender pay gap", - "values": [ - "4 - General action" - ] - }, - { - "text": "That no effort be spared for the improvement of the current status and living conditions of the Crimean Tatars along with the other minorities", - "values": [ - "4 - General action" - ] - }, - { - "text": "Ratify as soon as possible the Optional Protocol to the Convention against Torture", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Ratify those international human rights instruments which have not been ratified", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Reinforce the implementation of alternative sentencing measures to reduce overcrowding in prisons for short- and medium-term detention", - "values": [ - "4 - General action" - ] - }, - { - "text": "Pass the special bill to abolish the death penalty into law in the new National Assembly that starts on 1 June 2008.", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Ensure effective and independent investigations into all reports of torture and extrajudicial executions by members of the security forces.", - "values": [ - "4 - General action" - ] - }, - { - "text": "Incorporate the provisions of the UN Convention against Torture into domestic laws, by inter alia reviewing the definition of torture", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Maintain its contributions of Official Development Assistance (ODA) at the internationally agreed level of 0.7 per cent of its GNP ", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Take steps to increase the protection afforded to women and girl refugees against violence, including by increasing the number of law enforcement officials in refugee camps, and providing effective care for women and girls who are victims of violence ", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Respect the right of Palestinian refugees to return to their homelands and to be compensated for losses and damages incurred and to retrieve their properties.", - "values": [ - "4 - General action" - ] - }, - { - "text": "To pursue in its efforts to ensure that indigenous peoples enjoy their right to education ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Continue enhancing and expanding health services, in order to prevent and combat diseases which were put in place to serve the people through primary healthcare ", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Incorporate instruction on human rights in school curricula.", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Work towards a further reduction of the level of unemployment, including through the design and implementation of programmes of vocational training and retraining of its citizens and job creation ", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Maintain its high level of cooperation with OHCHR, Treaty Bodies and Special Procedures ", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Consider withdrawing their reservations to articles 9 para. 2, and 16 para. 1(c), (d) and (g) of the Convention on the Elimination of All Forms of Discrimination against Women ", - "values": [ - "3 - Considering action" - ] - }, - { - "text": "Prevent military recruitment of children and foster the rights of the child as provided for in the Convention on the Rights of the Child.", - "values": [ - "4 - General action" - ] - }, - { - "text": "Repeal the existing discriminatory regulation in its domestic law against the LGBT community", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Amend the provisions of the 2009 Charities and Societies Proclamation inconsistent with international human rights standards, including with respect to freedom of expression, association and assembly ", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Consider adopting human rights education in its national education curriculum.", - "values": [ - "3 - Considering action" - ] - }, - { - "text": "Develop a comprehensive strategy to address the needs of refugees and internally displaced persons caused by the conflict, including measures to ensure access to the birth registration of all children born in Libya, with emphasis on asylum seekers from sub-Saharan Africa", - "values": [ - "4 - General action" - ] - }, - { - "text": "Continue its efforts to inform its citizens about their rights, and to improve the quality of the legal information disseminated by the media, including through the Internet", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Implementing the 11 steps towards a country free of domestic violence as part of the strategy for life and living together to which the Government has committed itself", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Honour all obligations under articles 31 and 33 of the Convention relating to the Status of Refugees and ensure that the rights of all refugees and asylum-seekers are respected, providing them access to Australian refugee law ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Strengthen efforts to ensure increased free birth registration for children, both in urban and rural areas ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Take further steps in bringing domestic legislation and policies in line with its obligations under core human rights instruments such as the Convention against Torture and the CRPD", - "values": [ - "4 - General action" - ] - }, - { - "text": "Continue its efforts with a view to ensuring equality of all before the law and to guaranteeing equal citizenship rights to women and men", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Put in place an independent national human rights institution, in accordance with the Paris Principles", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Amend legislation in order to decriminalize abortion under certain circumstances, such as pregnancies that are the result of rape", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Empower women's participation in decision-making institutions", - "values": [ - "4 - General action" - ] - }, - { - "text": "Continue efforts to eliminate trade in men, women and children in order to exploit them in forced labour", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Consider adhering to the Convention on the Rights of All Migrant Workers and the Members of Their Families as recommended by the Parliamentary Assembly of the Council of Europe in its recommendation number 1737 of 17 March 2006 ", - "values": [ - "3 - Considering action" - ] - }, - { - "text": "To provide training for prison guards and social workers", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Improve efforts to address human trafficking by strengthening procedures for identifying victims of trafficking", - "values": [ - "4 - General action" - ] - }, - { - "text": "Take the necessary measures to reduce the gender wage gap", - "values": [ - "4 - General action" - ] - }, - { - "text": "Ensure that police investigations are carried out in an impartial and non-discriminatory manner and not based on ethnic profiling", - "values": [ - "4 - General action" - ] - }, - { - "text": "Take steps to strengthen the implementation of the National Women's Advancement Policy, including by removing its reservations to the CEDAW ", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Strengthen and support the Afghanistan Independent Human Rights Commission so that it discharges its mandate in the most effective manner.", - "values": [ - "4 - General action" - ] - }, - { - "text": "Continue the efforts aimed at providing more opportunities to persons with disabilities and enabling them to become an integral part of the society", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Make further efforts for securing all human rights, including cultural rights of minorities", - "values": [ - "4 - General action" - ] - }, - { - "text": "Put further effort and attention into the prevention of violence against children, expressly prohibit corporal punishment by law in all settings, eliminate the worst forms of child labour and prevent children from living in the street", - "values": [ - "4 - General action" - ] - }, - { - "text": "Continue working on promoting and protecting the rights of women.", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Consider sharing its sustainable development experiences through the help of the relevant\nspecialized agencies ", - "values": [ - "3 - Considering action" - ] - }, - { - "text": "Adopt a bill criminalizing harmful cultural practices, and abolish child, early and enforced marriage", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Strengthen national policies for the promotion and protection of migrants", - "values": [ - "4 - General action" - ] - }, - { - "text": "Take all the appropriate measures to ensure the creation of a functional and independent judiciary ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Ensure equality and non-discrimination in the current legislation through due compliance with measures to fight against prejudices, xenophobia and violence against women and girls", - "values": [ - "4 - General action" - ] - }, - { - "text": "Enact laws and legislation on freedom of expression in line with both articles 19 and 20 of the ICCPR ", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Further intensify the efforts to improve the system of education in the area of human rights and to strengthen the human rights culture ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Sign and ratify CEDAW and its Optional Protocol, CED, the Convention on the Rights of Persons with Disabilities (CRPD) and its Optional Protocol, OP-CAT, the Optional Protocol to the CRC on the sale of children, and ratify CRC and its Optional Protocol on the involvement of children in armed conflict and OP-ICESCR ", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Continue to promote the effective implementation of the Durban Declaration and Programme of Action by the international community, in order to combat racism", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Continue efforts to achieve gender equality in all fields, particularly in the labour market", - "values": [ - "4 - General action" - ] - }, - { - "text": "Sign the Optional Protocol to the Convention on the Rights of the Child on Communication Procedure ", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Pursue its efforts towards ratification to become a State party to the Istanbul Convention in the near future", - "values": [ - "4 - General action" - ] - }, - { - "text": "Decriminalize defamation, currently in the Criminal Code, and place it within the Civil Code, in accordance with international standards", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Continue to deepen efforts in the human rights field, in particular economic, social and cultural rights, so as to improve the living conditions of its people, in particular of the most vulnerable sectors", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "The Parliament to dismiss the proposed Anti-homosexuality Bill 2009 ", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Continue working on closing the gaps that still exist between the rights enjoyed by same-sex couples, compared with couples of opposite sexes", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Expedite the functionality of its national human rights institution", - "values": [ - "4 - General action" - ] - }, - { - "text": "Take further steps for the ratification of several international treaties in the field of human rights that were signed by Slovenia since the first UPR cycle", - "values": [ - "4 - General action" - ] - }, - { - "text": "Step up its efforts, with the assistance of OHCHR, in human rights training.", - "values": [ - "4 - General action" - ] - }, - { - "text": "Issue a standing invitation to all special procedures ", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Establish an adequate time frame and a transparent follow-up mechanism for an accelerated implementation of the recommendations by the Independent Commission of Inquiry ", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Further promote respect for religious diversity and freedom of religion including by reviewing relevant laws and policies in light of its Constitution and international obligations", - "values": [ - "4 - General action" - ] - }, - { - "text": "Continue applying the strategies and plans for the socio-economic development of the country", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Ensure the full independence of the Office of the Ombudsman so that it is fully compliant with the Paris Principles", - "values": [ - "4 - General action" - ] - }, - { - "text": "Continue efforts to ensure gender equality and advancement of women, in line with national policies and laws ", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Adapt internal legislation to international standards regarding national human rights institutions, including the Paris Principles", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Strengthen policies and measures to ensure better respect and protection of all human rights, specially in the fields of fundamental economic, social and cultural rights and the right to development ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Establish an independent National Human Rights Institution, in compliance with the Principles relating to the status of National Institutions of promotion and protection of human rights", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Examine the possibility of ratifying CED, CAT and its Optional Protocol, CEDAW and its Optional Protocol, ICESCR, ICCPR and CRPD (Convention on the Rights of Persons with Disabilities) and its Protocol", - "values": [ - "3 - Considering action" - ] - }, - { - "text": "Take steps to ratify the core human rights conventions, in particular the Convention against Torture and Other Cruel, Inhuman or Degrading Treatment or Punishment ", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Strengthen measures to prevent and combat gender-based violence, including the representation of women in positions of responsibility", - "values": [ - "4 - General action" - ] - }, - { - "text": "Set up an independent human rights institution in charge of coordinating the implementation of human rights in the whole country", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Consider defining rape as a sexual violation in the Criminal Code, irrespective of the degree of violence used or threatened by the perpetrator", - "values": [ - "3 - Considering action" - ] - }, - { - "text": "Concretize the visit of special procedures on racism and enforce disappearances", - "values": [ - "4 - General action" - ] - }, - { - "text": "Take further steps to address discrimination and attacks against women.", - "values": [ - "4 - General action" - ] - }, - { - "text": "Abolish the death penalty and commute to prison terms the death sentences that have already been pronounced", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Adhere to the Optional Protocol to the Convention Against Torture", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Redouble its efforts to continue to incorporate into its educational system, at all levels, respect for human rights, especially those related to non-discrimination and tolerance for diversity ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Release immediately all persons solely convicted or detained for offences connected to peaceful assembly and free speech", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Put an end, in practice and in law, to systematic discrimination on the basis of race in particular against women of certain vulnerable groups ", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Carry out national information campaigns designed to promote a culture that values diversity, understanding and tolerance ", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Take legislative measures to curtail hate speech, not only by the extremists but also by the mainstream media and public figures as there has been an increase in the hate-motivated crimes against refugees, migrants and minorities, including hate crimes affecting religious and ethnic minorities", - "values": [ - "4 - General action" - ] - }, - { - "text": "Intensify efforts to combat all forms of violence against women and girls", - "values": [ - "4 - General action" - ] - }, - { - "text": "Remain open and continue the engagement with the public on the death penalty matter, including on possible alternatives to the death penalty and its abolishing", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Amend any article of its Penal Code that can be used to prosecute individuals for the exercise of the rights to freedom of expression, peaceful assembly or association, and bring its laws into line with international standards established by the International Covenant for Civil and Political Rights ", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Take all necessary measures for the protection of human rights defenders, particularly by prosecuting the perpetrators of violence against, or intimidation of, them ", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "The Education Act states that the Nitijela declares and recognizes the right of the people to education and the Government's obligation to take every step reasonable and necessary to provide this service as per the Constitution. The compulsory ages of school attendance is 4-18 years old. It is the Government's policy that the goal of its educational system is to foster self-reliance. In addition to free education, transportation and meals are also provided by the Government. 44. In renegotiating the Compact of Free Association with the United States, the RMI Government had maintained that one of its priority areas was education. Since the amended Compact came into effect, the Government has built approximately 200 newly constructed and repaired classrooms throughout the country utilizing Compact public infrastructure funding.", - "values": [ - "1 - Minimal action" - ] - }, - { - "text": "Augment their efforts to reduce poverty and to provide enhanced access of safe potable water particularly in rural communities", - "values": [ - "4 - General action" - ] - }, - { - "text": "Accede to the International Convention for the Protection of All Persons from Enforced Disappearance as soon as possible ", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Continue its efforts aimed at the promotion and protection of human rights.", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Continue its efforts to further promote human rights", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Amend the Charities and Societies Proclamation to allow civil society to work on human rights issues, including women's rights, without restrictions related to the origin of funding ", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Support a complete moratorium on the death penalty and ratify the Second Optional Protocol to the International Covenant on Civil and Political Rights (ICCPR) ", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Take measures to adopt specific legislation to prohibit violence and discrimination against women in conformity with the Convention on the Elimination of All Forms of Discrimination against Women", - "values": [ - "4 - General action" - ] - }, - { - "text": "Sign and ratify the Optional Protocol to the Convention against Torture and Other Cruel, Inhuman or Degrading Treatment or Punishment, and establish a national preventive mechanism ", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Implementation of public policies on human rights in line with the 2025 Agenda, formulated with the participation of civil society", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Independent human rights monitors be allowed unrestricted access to all detention facilities and that such facilities are appropriately funded and comply with international standards of care and treatment of prisoners ", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Continue promoting the national policy for the promotion of women through working for the enrolment and retention of girls in school", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Equalize the age of consent for opposite and same-sex conduct, and adopt legislative and other measures to explicitly prohibit discrimination on the basis of sexual orientation and gender identity ", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Continue efforts to safeguard the dignity and protect the interests of migrant workers, including through requisite institutional and legislative measures", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Protect the civilian population in the armed conflict, with particular emphasis on the rights to life, food, education and health, including through the protection of the medical impartiality, and ensure accountability for all cases of violations and abuses of international human rights law and international humanitarian law", - "values": [ - "4 - General action" - ] - }, - { - "text": "Implement further policies to ensure gender equality throughout society and strengthen the promotion of the rights of women, especially the rights of rural women ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Enact specific legislation to eradicate all sexual gender-based incidents of violence and punish the perpetrators of sexual violence", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Continue to review national legislation in order to ensure that it is in line with the State's international human rights obligations ", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Maintain the current de facto moratorium on the death penalty.", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Stop discrimination in the area of employment on the grounds of ethnic origin and language and adopt active measures to prosecute such cases in the courts", - "values": [ - "4 - General action" - ] - }, - { - "text": "Continue efforts to improve prison conditions ", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Continue its efforts to protect freedoms and to strengthen human rights", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Adopt legal provisions that guarantee migrant workers the right to join trade unions ", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Ensure full participation of women in the monitoring mechanisms of the Law on Development and Protection of Women adopted in 2004 and carry out dissemination campaign among the whole population of the country, particularly in rural areas", - "values": [ - "4 - General action" - ] - }, - { - "text": "Continue its efforts to achieve gender equality and tackle discrimination against women in law and in practice", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Review regulations to ensure the protection against exploitation and forced labour of migrant workers", - "values": [ - "3 - Considering action" - ] - }, - { - "text": "Establish an interministerial committee responsible for the implementation of its international obligations, inter alia, for coordinating the drafting of the national reports to the treaty bodies and for organizing country visits by the Council's special procedures ", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Continue its efforts to take all measures to promote and protect the universal characteristic of human rights while protecting its historical, religious and civilizational specificity ", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Ensure that freedom of expression is respected and that Nigerian journalists may take on their mission of providing information without suffering harassment", - "values": [ - "4 - General action" - ] - }, - { - "text": "Step-up further efforts to strengthen health care facilities and improve health care services provided to women and children and equipping health facilities with the necessary equipment and medicine", - "values": [ - "4 - General action" - ] - }, - { - "text": "Intensify prosecution and preventive measures in order to further protect women and to generate greater awareness of gender-based violence ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Continue to place emphasis on promoting access to education and improving the quality of its education system", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Make every effort to ensure that those responsible for crimes against children, and in particularly concerning the recruitment of child soldiers, are brought to justice as soon as possible", - "values": [ - "4 - General action" - ] - }, - { - "text": "Speed up the adoption of amendments to all national legislation in particular for the penal code and relevant legislation ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Approve laws and implement programmes that ensure the elimination of gender inequality, in particular access to dignified working conditions, credit, land ownership and basic social services ", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Follow up on measures to combat trafficking of migrants, in particular migrant women.", - "values": [ - "4 - General action" - ] - }, - { - "text": "Revise and amend when necessary national legislation to ensure nondiscrimination against persons with disabilities in employment and take every effort to increase employment opportunities for persons with disabilities ", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Strengthen the judicial system, in particular through the implementation of a specific legal framework which regulates the responsibility of minors and which is consistent with existing international instruments in this area ", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Pass legislation that allows NGOs to accept foreign funding without prior government approval, legislation that allows for increased freedom of association and assembly, and legislation allowing labour unions to operate without joining the Egyptian Trade Union Federation", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Speed up its justice reforms to comply with international standards", - "values": [ - "4 - General action" - ] - }, - { - "text": "Harmonize its process of political, socio-economic and administrative reforms made in accordance with its international human rights obligations", - "values": [ - "4 - General action" - ] - }, - { - "text": "Continue paying attention to the prevention and eradication of human trafficking", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Encourages the facilitation of the registration of civil society, unions and political parties.", - "values": [ - "4 - General action" - ] - }, - { - "text": "Consider introducing a moratorium on executions as a first step towards the abolition of the death penalty, and commute all death sentences to terms of imprisonment", - "values": [ - "4 - General action" - ] - }, - { - "text": "Continue efforts to ratify the OP-CAT and CPED, as well as the main international human rights instruments to which the country is not yet a party", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Ratify the Optional Protocols to the International Covenant on Economic, Social and Cultural Rights and the Convention on the Elimination of All Forms of Discrimination against Women", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Strengthen the efforts to effectively fight child labour and child trafficking by taking more preventive measures and implementing more punitive measures", - "values": [ - "4 - General action" - ] - }, - { - "text": "The Government is committed to the establishment of an institutional and legislative framework for the provision of affordable legal aid and awareness services for all. ", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Establish alternative punishments to the death penalty and suspend the application of the death penalty for less serious offences and for people who were minors at the time of the crimes, in the perspective of a moratorium on executions", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Develop policies that further enhance the protection of the rights of migrants and minority populations", - "values": [ - "4 - General action" - ] - }, - { - "text": "Eliminate overcrowding in prisons", - "values": [ - "4 - General action" - ] - }, - { - "text": "Take all necessary measures to execute arrest warrants issued by the International Criminal Court. ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Establish a moratorium on executions with a view to abolish the death penalty ", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Recommended that former paramilitary commanders continue to be heard within the framework of the application of the Justice and Peace Law.", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Consider the possibility of inviting the Independent Expert on the issue of human rights obligations concerning access to drinking water and sanitation ", - "values": [ - "3 - Considering action" - ] - }, - { - "text": "Ratify the Optional Protocol to the Convention against Torture and establish a national preventive mechanism accordingly", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Continue to work towards attaining food security, and fight HIV and AIDS as conscientiously as already demonstrated ", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Establish as soon as possible an Independent Police Board and undertake an information campaign to inform the public that such a body has been created and to outline its role and functions ", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Apply a strategy of universal registration of births ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Review manuals, training and rules of engagement of the security apparatus in the light of the principles developed in the Code of Conduct for Law Enforcement Officials and the Basic Principles of the Use of Force and Firearms by Law Enforcement Officials", - "values": [ - "3 - Considering action" - ] - }, - { - "text": "Consider ratifying the International Convention on the Protection of the Rights of All Migrant Workers and Members of Their Families and hold national consultations in this regard ", - "values": [ - "3 - Considering action" - ] - }, - { - "text": "Focus on strengthening the legal framework, the institutions and the judiciary to guarantee an independent judicial system and the right to fair trial guaranteed by articles 9 and 14 of the International Covenant on Civil and Political Rights", - "values": [ - "4 - General action" - ] - }, - { - "text": "Prioritize the investigation and prosecution of senior political and military leaders with command responsibility for violations of international human rights law and ensure civilian oversight of the Federal Government of Somalia security forces", - "values": [ - "4 - General action" - ] - }, - { - "text": "Promote social dialogue and ensure that the conclusions of the dialogue are implemented", - "values": [ - "4 - General action" - ] - }, - { - "text": "Review its legislation on the minimum age for child labour in order to avoid domestic exploitation", - "values": [ - "3 - Considering action" - ] - }, - { - "text": "Provide defendants in all serious criminal processes with an attorney when they cannot afford one by themselves.", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Seek technical assistance in order to submit overdue reports to the relevant treaty body mechanisms", - "values": [ - "1 - Minimal action" - ] - }, - { - "text": "Prohibit explicitly corporal punishment in the home and family", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "That the President of the Gambia repeal provisions in the Criminal Code which criminalize consensual same-sex sexual conduct", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Ensure that the cardinal laws, resulting from the new Fundamental Law, do not contain provisions that discriminate against people with disabilities, women and LGBT people", - "values": [ - "4 - General action" - ] - }, - { - "text": "Withdraw the reservations issued to seven articles to the Convention relating to the Status of Refugees 1951 ", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Continue to make its best efforts to abolish all types of discriminatory practices against women and children, which notably includes female genital mutilation (FGM), early marriage and domestic violence ", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Consider changing legislation to prohibit all forms of corporal punishment also at home and effectively enforce the ban of corporal punishment in all settings", - "values": [ - "3 - Considering action" - ] - }, - { - "text": "Request from the international community all necessary aid and technical assistance to enable Lebanon to meet its international commitments on human rights", - "values": [ - "1 - Minimal action" - ] - }, - { - "text": "Intensify its efforts to end discrimination and acts of violence suffered by members of ethnic and religious minorities, particularly the Rohingya", - "values": [ - "4 - General action" - ] - }, - { - "text": "Establish mechanisms to eradicate stigma and discrimination against indigenous groups and ethnic minorities, including awareness-raising among public officials, accountability and redress mechanisms", - "values": [ - "4 - General action" - ] - }, - { - "text": "Give full consideration to the recommendations of the Special Rapporteur on the Situation of human rights defenders", - "values": [ - "3 - Considering action" - ] - }, - { - "text": "Grant minority status to the Egyptian community", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Refrain from adopting the discriminatory draft law on "formation of positive attitude to non-traditional sexual relations"", - "values": [ - "4 - General action" - ] - }, - { - "text": "Protect the rights of family being the natural and fundamental group of society based upon the stable relationship between a man and a woman, as enshrined in article 16 of the Universal Declaration of Human Rights.", - "values": [ - "4 - General action" - ] - }, - { - "text": "Continue to address the issue of gender discrimination ", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Pursue its efforts in facing the challenges identified in its national report, with special attention to combating human trafficking and discrimination and improving the situation of migrant workers as they represent an important section in the country ", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Take further measures to combat all forms of discrimination against the Roma community and ensure equal opportunities for their enjoyment of economic, social and cultural rights, including education, health, employment and housing", - "values": [ - "4 - General action" - ] - }, - { - "text": "Take concrete steps to create a friendly environment for NGOs, including by easing their registration requirements ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Further implement the national strategy for persons with disabilities", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Consider the progressive ratification of the main international human rights treaties that are still pending, which may require technical assistance ", - "values": [ - "3 - Considering action" - ] - }, - { - "text": "Address the specific needs of children with disabilities in all areas, in particular education", - "values": [ - "4 - General action" - ] - }, - { - "text": "Take legislative action to ensure the right of the Palestinian refugees to inherit and register property, including the right to own land", - "values": [ - "4 - General action" - ] - }, - { - "text": "Create a national mechanism for providing statistics on women's deaths", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Take vigorous measures to effectively improve living conditions in prisons in order to meet international standards", - "values": [ - "4 - General action" - ] - }, - { - "text": "Work to abolish laws that restricts freedom of expression, information and freedom of media, and establish laws that will guarantee these rights in line with international human rights standards ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Perseverate in its efforts to ensure that the population fully exercise and enjoy its political, civil, economic, social and cultural rights", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Further strengthen the Parliamentary Ombudsman as a national preventive mechanism in accordance with OP-CAT", - "values": [ - "4 - General action" - ] - }, - { - "text": "Take measures to ensure effective implementation of laws and policies that combat trafficking in persons", - "values": [ - "4 - General action" - ] - }, - { - "text": "Establish an independent mechanism for the investigation of allegations of torture by police officers in order to ensure that police detention remains subject to rigid time limits and judicial review by a court", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Consider ratifying pending treaties such as OP-CEDAW and ICRMW ", - "values": [ - "3 - Considering action" - ] - }, - { - "text": "Further enhance efforts to develop the human rights education system and to strengthen a culture of human rights ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Continue its efforts in improving the quality of education at all levels as well as in increasing the student's enrolment in secondary education", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Sign and ratify the Second Optional Protocol to ICCPR", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Actively consider establishing a full-fledged national human rights institution in line with the Paris Principles", - "values": [ - "3 - Considering action" - ] - }, - { - "text": "Provide greater resources to ensure universal access to drinking water and sanitation, particularly in rural areas", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Ratify the Hague Convention on the Civil Aspects of International Child Abduction", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Draft and adopt legislation to end violence and discrimination against women", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Ratify or accede to, where appropriate, the International Convention for the Protection of All Persons from Enforced Disappearance ", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Consider adhering to ICRMW", - "values": [ - "3 - Considering action" - ] - }, - { - "text": "Strengthen measures to ensure an effective fight against domestic violence - in particular, introduce the crime of domestic violence into its criminal code as a matter of priority and ensure that effective support and protection is available for victims of domestic violence ", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Undertake necessary measures to guarantee the respect for the freedoms and fundamental rights in the occupied territories such as, for example, the right to freedom of movement of all persons", - "values": [ - "4 - General action" - ] - }, - { - "text": "Strengthen strategies that are aimed at increasing gender equality and the economic empowerment of women", - "values": [ - "4 - General action" - ] - }, - { - "text": "Continue its engagement with the relevant UN agencies in achieving the overall objective of the UN Development Assistance Framework for 2013- 2017", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Take steps to counteract forms of discrimination against indigenous women in rural areas", - "values": [ - "4 - General action" - ] - }, - { - "text": "Strengthen legal advice and assistance for people in need", - "values": [ - "4 - General action" - ] - }, - { - "text": "Take all necessary measures to safeguard the full enjoyment of human rights by women and girls, including by promptly and independently investigating all allegations of sexual and gender-based violence and bringing perpetrators of such crimes to justice, in accordance with international standards", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "In the context of the defence of the right to life, carefully assess the transfer of arms to those countries where they are likely to be used for human rights abuses and violations", - "values": [ - "3 - Considering action" - ] - }, - { - "text": "Continue its good efforts to address violence against women and domestic violence, including by increasing support for victims of domestic violence", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Not renew the Emergency Law in April 2010, and ensure that future legislation fully respects Egypt's obligations under international human rights law and not entrench under statute law provisions that facilitate human rights violations", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Continue the revision of legislation on domestic violence which is currently debated in Parliament", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Launch new measures and initiatives to continue efforts to ensure a wider access to all of all human rights and fundamental freedom ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Explore the possibility of ratifying the International Convention for the Protection of All Persons from Enforced Disappearance", - "values": [ - "4 - General action" - ] - }, - { - "text": "Implement the recommendations of the Committee on the Elimination of Racial Discrimination regarding migrants, refugees and asylum-seekers.", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Ensure due monitoring, investigating and prosecuting the recruitment of minors for military purpose and provide efficient rehabilitation and reintegration schemes for the victims", - "values": [ - "4 - General action" - ] - }, - { - "text": "Take all necessary measures, both legislative and educational, to eradicate negative stereotypes and attitudes towards women", - "values": [ - "4 - General action" - ] - }, - { - "text": "Complete implementation of the 10 year National Action Plan for Women, with a particular focus on the most vulnerable.", - "values": [ - "4 - General action" - ] - }, - { - "text": "Ensure that its anti-discrimination laws and policies are fully implemented", - "values": [ - "4 - General action" - ] - }, - { - "text": "Continue to scale up its efforts to empower women, mainly rural women ", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Reconsider its position relating to the ratification of the International Convention on the Protection of the Rights of All Migrant Workers and Members of Their Families pursuing to recommendation 1737 of 17 March 2006 of the Parliamentary Assembly of the Council of Europe, which Belgium is a member of ", - "values": [ - "3 - Considering action" - ] - }, - { - "text": "Condemn all racist and xenophobic statements, especially by public and elected officials, and make it clear that racist discourse has no place in Italian society", - "values": [ - "4 - General action" - ] - }, - { - "text": "Continue to fight HIV-AIDS with the support and cooperation of the international community ", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Strengthen, through community action committees, awareness among the population in order to combat the slow change mentality vis-à-vis harmful practice ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Ensure that all allegations of torture are investigated independently and that those responsible are brought to justice", - "values": [ - "4 - General action" - ] - }, - { - "text": "Implement immediately all United Nations resolutions, particularly those of the Human Rights Council", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Apply alternatives to detention of irregular migrants, in particular for families and children", - "values": [ - "4 - General action" - ] - }, - { - "text": "Step up its efforts in ensuring universal access to affordable health services particularly for the poor, vulnerable and marginalized groups", - "values": [ - "4 - General action" - ] - }, - { - "text": "Adopt the National Plan to Prevent, Combat and Care for the victims of trafficking", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Give favourable consideration to the possibility of acceding to ICESCR and ICCPR ", - "values": [ - "3 - Considering action" - ] - }, - { - "text": "Adopt legislation and policy measures to effectively promote and protect human rights for refugees, migrants and ethnic minorities", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Continue to mobilize resources and technical support to enhance the capacity to fulfil its human rights obligations", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Allow foreign assistance to support safe abortion services, where legal in the host country. This should apply as a minimum in the cases of rape, incest and life endangerment, as is also permitted by existing United States federal law", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Continue the process of signing and ratifying the Convention on the Rights of Persons with Disabilities", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Follow up on the recommendation of the Committee on the Elimination of Discrimination against Women in order to strengthen its national system relating to women's rights ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Continue its efforts in the area of women's rights and ensure the effective implementation of the sixth national action plan on the fight against gender-based violence", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Strengthen initiatives to promote equality and fight against discrimination, particularly those aimed at expanding political participation, whether from a gender ethnic, regional or social perspective", - "values": [ - "4 - General action" - ] - }, - { - "text": "Conduct a transparent and public inquiry into the violence emanating from security forces following the presidential elections of 2009", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Grant full access for humanitarian aid to the population in need in Darfur", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Prosecute perpetrators of xenophobic and hate crimes", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Strengthen cooperation with United Nations human rights mechanisms, including by permitting visits from mandate holders ", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Implement the National Plan on the Search for the Disappeared and provide the financial resources necessary to satisfy the human dignity of the Disappeared and their relatives", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Accelerate efforts to combat human trafficking through integrated measures for prevention, prosecution and punishment of those responsible and for the protection, rehabilitation and social reintegration of the victims.", - "values": [ - "4 - General action" - ] - }, - { - "text": "Integrate economic social and cultural rights in its poverty reduction strategies in a way that can benefit the most vulnerable groups in society, specially the Aborigines, afro-Canadians, migrants, persons with disabilities, youth, women with low incomes, and single mothers and adopt all necessary measures, including the full implementation of the United Nations Declaration on the Rights of Indigenous Peoples, to guarantee Aboriginals the full enjoyment of their rights including economic, social and cultural so that their standard of living was similar to that of the rest of the citizens in Canada", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Guarantee medical care for persons suffering from drug addiction", - "values": [ - "4 - General action" - ] - }, - { - "text": "Consider the possibility of eliminating forced marriage ", - "values": [ - "3 - Considering action" - ] - }, - { - "text": "Encourage the appropriate institutions to take further action in dealing with violence against women.", - "values": [ - "4 - General action" - ] - }, - { - "text": "Improve health care ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Review Criminal Code provisions regarding freedom of expression, in conformity with article 19 of the International Covenant on Civil and Political Rights", - "values": [ - "3 - Considering action" - ] - }, - { - "text": "Integrate children with disabilities in the national education system", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Improve media policy and regulations in order to ensure freedom of the press and of expression and to facilitate a more diverse media market ", - "values": [ - "4 - General action" - ] - }, - { - "text": "The MSAR government is committed to continuing to adopt the measures necessary to ensure the protection and implementation of the fundamental rights and freedoms of the residents of the Region.", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Increase efforts to fight against gender violence by fully implementing the "National Gender Policy" and the national action plan against gender violence 2012-2016, and by ensuring that perpetrators are brought to justice", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Continue its efforts to implement the MDGs at the national level ", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Take practical steps to strengthen the implementation of measures promoting the rights of women and children and eliminating violence against them", - "values": [ - "4 - General action" - ] - }, - { - "text": "Ratify the Optional Protocol to the Convention on the Elimination of All Forms of Discrimination against Women and the Optional Protocol the International Covenant on Economic, Social and Cultural Rights", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "In light of the 1 July 2010 amendments to Danish legislation reducing the age for criminal responsibility to 14, bring it into line with the recommendations of the Committee on the Rights of the Child ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Ensure the right to unrestricted peaceful assembly, avoid arbitrary detention and the excessive use of force during those assemblies", - "values": [ - "4 - General action" - ] - }, - { - "text": "Continue its efforts in the advancement of the protection of the rights of women, gender equality and the promotion of gender-equal society by implementing the fourth Basic Plan for Gender Equality", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Continue to improve the condition of all migrants, particularly with regard to access to health, education and other social services, and accelerate efforts towards accession to ICRMW ", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Continue efforts to implement the roadmap to eradicate contemporary forms of slavery as adopted by the Council of Ministers in March 2014", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Continue to improve the situation of the Roma, and to consider implementing, as appropriate, the recommendations of human rights treaty bodies and special procedures in that regard", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Continue to ensure better protection of human rights through the implementation of laws and action plans recently adopted, which could effectively protect its citizens, particularly, those who are the most vulnerable ", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Continue improving the protection of human rights of migrants in the health, legal, social, education, economic and labour fields ", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Work towards the complete elimination of torture and extrajudicial killings, and intensify efforts to carry out the prosecution of such crimes", - "values": [ - "4 - General action" - ] - }, - { - "text": "Implement the National Action Plan on Gender-based violence and the national action plan for zero hunger", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Continue its efforts to increase the education budget to ensure adequate remuneration of teachers and adopt the necessary measures to guarantee education of quality and under equal conditions regardless of the ethnic origin, gender and disability of students", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Accelerate work to establish a Truth and Reconciliation Commission and to establish a Special Tribunal tasked with holding those responsible for war crimes to account, with both institutions conforming to international standards and drawing on national consultations", - "values": [ - "4 - General action" - ] - }, - { - "text": "Continue with determination to promote and implement respect for all human rights, including within the framework of regional reconciliation and just solutions for the victims, and to do so in particular for those belonging to the ethnic minority and refugee communities", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Continue reforms of the justice system, in particular measures to strengthen the independence of the judiciary and reinforce witness protection", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Continue to organize training programmes for parental competencies targeted to the general public to ensure the well-being of children", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Take the necessary steps to comply with ICCPR and make sure the right to a fair trial based in law is guaranteed.", - "values": [ - "4 - General action" - ] - }, - { - "text": "Continue efforts for the promotion of truth, justice and reparation and guaranties of non-repetition related to crimes of the past", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Clarify its interpretation of the Helms Amendment in order to be able to provide safe abortion for rape survivors", - "values": [ - "4 - General action" - ] - }, - { - "text": "Consider alternatives to pre-deportation detention ", - "values": [ - "3 - Considering action" - ] - }, - { - "text": "Further strengthen its policy and programmatic response to address domestic violence against women.", - "values": [ - "4 - General action" - ] - }, - { - "text": "Put into place independent bodies responsible for investigating complaints of ill-treatment inflicted by the police and take all measures to ensure that criminal complaints filed against the authorities responsible for law enforcement are treated with attention and due diligence", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Condemn categorically and unambiguously all forms of hate speech, investigate specific cases, prosecute, as appropriate, those responsible and ensure that victims of hate crimes receive the necessary support, whether legal or psychological", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Consider improving existing administrative frameworks to better manage and process refugees and asylum seekers in the country ", - "values": [ - "3 - Considering action" - ] - }, - { - "text": "Endeavour, in line with its voluntary pledges, to combat gender-based violence by, inter alia, enforcing existing legislation, conducting public awareness campaigns, ensuring psychosocial support and access to shelters for victims, and monitoring rehabilitation of persons convicted ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Develop a package of political measures permitting the independent living of persons with disabilities and prepare a protocol for action to ensure the independent living of persons who do not have family support", - "values": [ - "4 - General action" - ] - }, - { - "text": "Continue to strengthen awareness-raising and sensitization activities for practitioners, families, traditional or religious leaders and the general public in order to encourage change in traditional attitudes aiming at effective eradication of female genital mutilation, Wahaya and other harmful practices ", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Consider launching awareness-raising campaigns on the empowerment of women in public and political life", - "values": [ - "3 - Considering action" - ] - }, - { - "text": "Continue to take measures to promote economic, social and cultural rights ", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Ensure specific training to police concerning certain types of crimes, in particular rape with regard to the offences reported in the Centre for asylum seekers", - "values": [ - "4 - General action" - ] - }, - { - "text": "Proceed with the legal abolition of the death penalty and ratify the Second Optional Protocol to the International Covenant on Civil and Political Rights, aiming at the abolition of the death penalty", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Take immediate steps, including if necessary by requesting appropriate technical assistance to establish an independent national human rights institution in accordance with the Paris Principles", - "values": [ - "4 - General action" - ] - }, - { - "text": "Implement ratification of ICRMW", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Strengthen efforts in the sphere of education with a view to increasing school enrolment rates at primary and secondary level and achieving the target of Education for All by 2015", - "values": [ - "4 - General action" - ] - }, - { - "text": "Implement the recommendations of the previous UPR, in particular ratification of the Convention on Torture and Other Cruel, Inhuman or Degrading Punishment or Treatment, the International Convention for the Protection of All Persons from Enforced Disappearance and the Rome Statute ", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Eliminate corporal punishment of children both in public and private life", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Establish national legislation to implement the provisions of the Convention on Refugees ", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Consider abolishing the death penalty", - "values": [ - "3 - Considering action" - ] - }, - { - "text": "Increase the resources allocated to the Gender Equality and Equal Treatment Commissioner as a matter of priority", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Take effective measures to enhance the health-care sector", - "values": [ - "4 - General action" - ] - }, - { - "text": "Continue to work with the United Nations Mission in Liberia and other partners to prepare for the national takeover, including concrete measures to reduce gender-based violence and to strengthen the justice and security sectors", - "values": [ - "4 - General action" - ] - }, - { - "text": "Accede to the Convention on the Protection of the Rights of All Migrant Workers and Members of Their Families as a fundamental step in the protection of human rights ", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Provide children who work or live in the streets with recovery and social reintegration services ", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Uphold freedoms essential for a stable democracy, including freedoms of speech and assembly", - "values": [ - "4 - General action" - ] - }, - { - "text": "Develop further and implement policies and legislation aimed at gender equality and the empowerment of women, including combating all forms of gender-related violence ", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Implement comprehensive guidelines under the Domestic Violence Act to ensure a coordinated response for victims of violence by police, courts, health and social welfare agencies", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Continue to put into practice the recommendations accepted in the Universal Periodic Review of 2009", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Provide the Gender Equality Commissioner with sufficient resources to enable the institution to fulfil its mandate effectively and independently", - "values": [ - "4 - General action" - ] - }, - { - "text": "Consider the establishment or the strengthening of the existing national mechanism for coordination, implementation, reporting and follow-up, in line with elements arising from good practices identified in the 2016 OHCHR guide on national mechanisms for reporting and follow-up", - "values": [ - "3 - Considering action" - ] - }, - { - "text": "Continue to focus its efforts on ensuring full protection of the human rights for all migrant and foreign workers, particularly to enhance their safety and welfare ", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Promptly ratify the International Convention on the Protection of the Rights of All Migrant Workers and Members of Their Families", - "values": [ - "4 - General action" - ] - }, - { - "text": "Complete the process of accession to the International Convention on the Protection of the Rights of All Migrant Workers and Members of Their Families ", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Continue its efforts to improve legislation concerning violence against women, in line with international standards, addressing the dimensions of prevention, protection and assistance, and repealing discriminatory provisions related to custody, marriage, inheritance and transfer of nationality", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Allow civil society organizations to complement government programmes in preventing violence and harmful practices against women and girls and also amend the Charities and Societies Proclamation to ensure that restrictions on freedom of association are removed, including restrictions on potential sources of funding for civil society ", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Investigate all cases of violence and xenophobic attacks, including any type of participation in these crimes by the forces of public order and of the staff of detention centres", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Abolish the death penalty for all crimes and commute all death sentences into custodial sentences", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Harmonise national legislation with international human rights norms ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Sign and ratify the Convention on the Rights of Persons with Disabilities and its Optional Protocols. Ratify the two Optional Protocols on the Convention on the Rights of the Child", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Continue to expand its legal framework for the promotion and protection of human rights ", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Promote programmes that encourage the education of children, especially girls in villages, and benefit vulnerable groups", - "values": [ - "4 - General action" - ] - }, - { - "text": "Adopt measures that ensure enjoyment of fundamental freedoms in law and practice", - "values": [ - "4 - General action" - ] - }, - { - "text": "Take appropriate measures to prevent investigations, arbitrary detentions, searches and interrogations by judicial authorities or police agents on the basis of physical appearance, skin colour or ethnic or national origin, impose severe sentences on authorities which get involved in these abuses and ill-treatment ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Ensure broad access to health services, including reproductive health services, especially to young people", - "values": [ - "4 - General action" - ] - }, - { - "text": "Bring fully its system of juvenile justice into line with the CRC and ensure that detention of children under 18 should be separated from adults ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Take steps to more effectively foster the integration into Montenegrin society of particular vulnerable groups, through addressing discrimination in areas such as education and employment", - "values": [ - "4 - General action" - ] - }, - { - "text": "Effectively implement the national development plan for 2013-2017", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Strengthen its cooperation with national and international nongovernmental organizations in providing assistance to internally displaced persons", - "values": [ - "4 - General action" - ] - }, - { - "text": "Prioritize law reform process", - "values": [ - "4 - General action" - ] - }, - { - "text": "Establish a moratorium on the use of the death penalty with a view to its abolition and commute all death sentences for persons under the age of 18", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Accelerate measures to eliminate violence against women ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Review the penal code to ensure it aligns with Cambodia's obligations under the International Convention on Civil and Political Rights pertaining to freedom of expression and take the necessary actions to amend or repeal any articles which do not meet these obligations ", - "values": [ - "3 - Considering action" - ] - }, - { - "text": "Expedite the process initiated under the Justice and Peace Law passed in 2005 with regard to accelerating the demobilization of paramilitary chiefs and combatants.", - "values": [ - "4 - General action" - ] - }, - { - "text": "Continue efforts to adopt the requisite measures to enable people with disabilities, especially children, to have access to the necessary education and health care, and to combat any discrimination against them ", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Put in place strategies and implement the action plan to more effectively combat child, early and forced marriage", - "values": [ - "4 - General action" - ] - }, - { - "text": "Ensure implementation of comprehensive legislative reform that guarantees the same level of protection for all grounds of discrimination, in particular discrimination on the grounds of sexual orientation and gender identity", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Take more effective measures to combat racism, racial discrimination and xenophobia against minority groups in the country, in particular prejudice against the Muslims", - "values": [ - "4 - General action" - ] - }, - { - "text": "That special attention is given to protecting migrant workers from exploitative working conditions, specifically in the agricultural sector", - "values": [ - "4 - General action" - ] - }, - { - "text": "Take further steps on the adoption of the law on preventing and combating discrimination ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Review the status of implementation into domestic law of the Convention against Torture and ratify the Optional Protocol to the Convention", - "values": [ - "3 - Considering action" - ] - }, - { - "text": "Raise public awareness and include human rights in school curricula", - "values": [ - "4 - General action" - ] - }, - { - "text": "Provide effective protection and complaint mechanisms to persons with disabilities living in specialized centres ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Foresee measures that would guarantee the right to their religions to groups that will become minorities in both countries after the birth of the new State, namely Muslims in South Sudan and non-Muslims in (north) Sudan ", - "values": [ - "3 - Considering action" - ] - }, - { - "text": "Enforce national legislation and policies to prevent and address the marginalization and exclusion of women from the economic, social and political spheres of society ", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Ensure that every household enjoys the right to safe drinking water and sanitation", - "values": [ - "4 - General action" - ] - }, - { - "text": "Combat all forms of discrimination, including against albinos and persons with disabilities", - "values": [ - "4 - General action" - ] - }, - { - "text": "Strengthen the judicial follow-up of hate crimes and hate speech, leaving no room for impunity", - "values": [ - "4 - General action" - ] - }, - { - "text": "Adopt the law on the compliance of the National Human Rights Commission with the Paris Principles", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Continue to implement measures aimed at reducing the unemployment rate ", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Adopt legal measures to prevent child labour and trafficking accompanied by effective monitoring mechanisms", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Redouble its efforts for effective governance of its natural resources in line with the Environmental Management Act No. 12 of 2011", - "values": [ - "4 - General action" - ] - }, - { - "text": "Consider its accession to the Convention on the Protection of the Rights of All Migrant Workers and Members of their Families", - "values": [ - "3 - Considering action" - ] - }, - { - "text": "Ensure effective functioning of the Ombudsman and the Commission for Protection against Discrimination", - "values": [ - "4 - General action" - ] - }, - { - "text": "Consider including human rights education in the 2015-2020 overall education plan ", - "values": [ - "3 - Considering action" - ] - }, - { - "text": "Take further action to ensure the effective implementation and formulation of legislation that guarantees/ensures equality and protection of women", - "values": [ - "4 - General action" - ] - }, - { - "text": "Adopt a new Labour Code or amend the existing Code soon, so as to improve the conditions and rights of migrant and foreign workers ", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Review its legislation in order to protect fundamental rights of all persons, independently of their migrant status.", - "values": [ - "3 - Considering action" - ] - }, - { - "text": "Use the upcoming visit of the Special Rapporteur on the Right to Education to set up national plans for the promotion of the right to education ", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Continue its educational strategies to ensure that all children enrol in school and receive a quality basic education ", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Comply with its obligations under the International Covenant on Civil and Political Rights by putting an immediate end to the use of arbitrary detention", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Continue efforts to combat violence against women, including by taking effective measures aimed at preventing and punishing such violence and ensuring that its perpetrators do not have impunity", - "values": [ - "4 - General action" - ] - }, - { - "text": "Continue to improve its national health-care system and ensure access to quality health care ", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Adopt specific legislation to ensure equal opportunities for women in the labour market", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Ensure that all human rights defenders, including individuals cooperating with UN HR mechanisms, are protected effectively from unjustified criminalization, harassment or intimidation and can perform freely their legitimate duties", - "values": [ - "4 - General action" - ] - }, - { - "text": "Extend standing invitations to special procedures mandate holders to visit the country, who can study the situation on the ground and make recommendations", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Recommended the implementation of the South Africa Law Reform Commission's proposals on the Criminal Law Amendment Act 2007, with a view to supporting and prosecuting complaints in court and to providing comprehensive State-funded post sexual assault medical care and treatment services.", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Continue enhancing the working conditions of temporary agricultural labourers and strengthen the work of labour inspection authorities", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Enhance the programmes aimed at addressing socio-economic inequalities, from a human rights perspective in fulfilment of its obligations under the International Covenant on Economic, Social and Cultural Rights.", - "values": [ - "4 - General action" - ] - }, - { - "text": "Amend its domestic legislation relating to the rights of women, children and persons with disabilities, in line with its international obligations ", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Grant the request made by the Special Rapporteur on torture in 2005 and 2007 to visit the country ", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Decriminalize homosexual relations between consenting adults", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Continue to improve its policies to protect the rights of women", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Take the necessary measures to ensure the right to freedom of expression, freedom of peaceful assembly and freedom of association, among others, by holding responsible anyone who commits acts of intimidation, harassment or violence against individuals, including human rights defenders, for having exercised these rights", - "values": [ - "4 - General action" - ] - }, - { - "text": "Consider favourably the request for a visit by the Special Rapporteur on extrajudicial, summary or arbitrary executions ", - "values": [ - "3 - Considering action" - ] - }, - { - "text": "Harmonize the Media Decree with international standards and enact a law on freedom of information in conformity with international standards, as recommended by UNESCO", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Allocate resources to the capacity-building of medical staff with a view to reducing overall morbidity and mortality", - "values": [ - "4 - General action" - ] - }, - { - "text": "Establish an official moratorium on executions with a view to abolishing the death penalty and acceding to the Second Optional Protocol to the International Covenant on Civil and Political Rights on the abolition of the death penalty", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Adopt measures to effectively protect transgender persons, including the implementation of the Transgender Persons (Protection of Rights) Bill", - "values": [ - "4 - General action" - ] - }, - { - "text": "Continue efforts to eradicate child and forced marriage", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "It is committed to accession to the protocols of the Convention on the Rights of the Child.", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Prevent and repress the illegitimate use of violence against detainees ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Develop new plans to ensure that persons with disabilities can exercise their rights on an equal basis under the Action Plan for the Integration of Disabled Persons 2006-2009 ", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Make improved access for humanitarian organisations an immediate priority", - "values": [ - "4 - General action" - ] - }, - { - "text": "Ensure that corporations, particularly those active in the forest industry, respect human and environmental rights, based on the Guiding Principles on Business and Human Rights", - "values": [ - "4 - General action" - ] - }, - { - "text": "Increase access to primary health care for the populations living in rural areas ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Increase funding to provide human rights advocates with adequate protection ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Continue to strengthen accountability in the security sector, in particular, regarding use of excessive force and abuse of authority by the police and the military ", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Maintain its efforts aimed at strengthening the status of women in society.", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Consider technical assistance in the provision of education infrastructure and in ICT development ", - "values": [ - "3 - Considering action" - ] - }, - { - "text": "Prosecute and punish possible crimes committed by security officers, especially the practice of torture", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Increase efforts to enhance the protection of the human rights of migrants and hold open consultations with civil society on the ICRMW", - "values": [ - "4 - General action" - ] - }, - { - "text": "Establish an effective protection system for children", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Continue with its plans to guarantee the right to education ", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Guarantee access to legal representation for those detained in connection with the demonstrations following the 2009 presidential elections", - "values": [ - "4 - General action" - ] - }, - { - "text": "Conduct awareness-raising activities to change socio-cultural practices and stereotypes that impinge on gender equality ", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Ratify without delay the Convention on Preventing and Combating Violence against Women and Domestic Violence", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Request support from the international community for its education policy, in particular the One Laptop Per Child programme, and for consolidating protection of the most vulnerable social groups, in particular the implementation of the national programme for childhood ", - "values": [ - "1 - Minimal action" - ] - }, - { - "text": "Revise vague national security laws that are used to suppress universal rights, and unconditionally release all political prisoners, such as Dr. Cu Huy Ha Vu, Le Quoc Quan, Dieu Cay and Tran Huynh Duy Thuc ", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Amidst reports of systematic instances of rape and sexual violence against women and children, prosecute rape as a crime of war in accordance with Security Council resolutions 1325 (2000) and 1820 (2008) ", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Ensure adequate training for court officials handling cases of discrimination", - "values": [ - "4 - General action" - ] - }, - { - "text": "Take concrete measures for the realization of economic, social and cultural rights including the rights to development for the better realization of the MDGs.", - "values": [ - "4 - General action" - ] - }, - { - "text": "Increase financial and welfare support to families living in conditions of poverty so that families living in a situation of poverty can raise their children with adequate amenities as required for healthy upbringing of those children ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Expedite efforts to establish a national human rights institution and a national human rights strategy", - "values": [ - "4 - General action" - ] - }, - { - "text": "Strengthen relevant institutions in order to take more effective measures at the national, regional and local level to guarantee the protection of persons involved in land restitution procedures, in particular the claimants, their counsel, the relevant officials and human rights defenders ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Enhance access to Justice as well as improve the judicial system.", - "values": [ - "4 - General action" - ] - }, - { - "text": "Investigate allegations of human rights violations by security force members and hold perpetrators accountable ", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Increase its efforts to ensure the full realisation of women's civil, political, economic, social and cultural rights by establishing national programmes to empower women's organisations and groups through the provision of technical and financial support and microcredit", - "values": [ - "4 - General action" - ] - }, - { - "text": "Take practical steps to fulfil its reporting obligations to various treaty bodies ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Strengthen efforts and remain vigilant on the issue of blood feuds", - "values": [ - "4 - General action" - ] - }, - { - "text": "Take measures to prevent discrimination against migrants and refugees in access to the labour market, as well as to health care and education", - "values": [ - "4 - General action" - ] - }, - { - "text": "Reinforce the legal framework for the protection of children, and remove the provision in the penal code establishing the age of criminal responsibility as 7 years old, as well as the corporal punishment of children, including flagellation and amputation ", - "values": [ - "4 - General action" - ] - }, - { - "text": "That further efforts be deployed to assure that the respect of fundamental rights of the child and the fight against violence, sexual exploitation, human trafficking, child labour and any other form of child exploitation remain a priority of the Government", - "values": [ - "4 - General action" - ] - }, - { - "text": "Continue measures to strengthen the independence of the judiciary", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Ensure that continuous efforts are undertaken to develop its human capital through education and training and by empowering vulnerable groups ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Eliminate torture, accede to OP-CAT and establish its national preventive mechanism accordingly ", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Extend measures to combat discrimination to the entire vulnerable population, which is victim of stereotypes and discrimination, particularly discrimination based on sexual orientation, and thus amend the criminalization established in the Penal Code relating to that sector of the population", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Take more effective measures to address cultural practices that foster discrimination against women", - "values": [ - "4 - General action" - ] - }, - { - "text": "Encourage the growth and sustainable development through stressing the green economy", - "values": [ - "4 - General action" - ] - }, - { - "text": "Organize training sessions and workshops on human rights for the competent authorities to combat terrorism while respecting the rule of law ", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Ensure the swift implementation and enforcement of legislation criminalizing all forms of violence against women, including domestic violence", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Put in place awareness raising programmes targeting the police forces in order to prevent torture and other cruel, inhuman or degrading treatment or punishment, as well as to create effective investigation mechanisms to combat impunity in this area", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Safeguard rights of religious minorities by institutionalizing interreligious dialogue", - "values": [ - "4 - General action" - ] - }, - { - "text": "Increase cooperation with the United Nations treaty bodies and special procedures, in particular in implementing their recommendations and decisions ", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Ratify the two Optional Protocols to the Convention on the Rights of the Child ", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Actively investigate and condemn instances of discrimination against non-citizens and members of religious and ethnic minority groups, and condemn anti-Semitic statements made by public officials", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Consider, gradually, the ratification of the Optional Protocols to CRC and other instruments ", - "values": [ - "3 - Considering action" - ] - }, - { - "text": "Assure women of their rights to safe medical and reproductive health care", - "values": [ - "4 - General action" - ] - }, - { - "text": "Respond questionnaires to the mandate holders in due time.", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Continue with its efforts to address the widening inequality and unbalanced distribution of income among people", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Further strengthen the standardization of the health management information system and share experience in this regard", - "values": [ - "4 - General action" - ] - }, - { - "text": "Step up efforts to address gender wage gaps", - "values": [ - "4 - General action" - ] - }, - { - "text": "Establish a national institution for protection of human rights in conformity with the Paris Principles", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Barbados is committed to the promotion and protection of human rights and fundamental freedoms and has undertaken to implement policies and measures that reflect this commitment ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Adopt all the practical measures to end corporal punishment in all places and act drastically against all forms of corporal punishments in school, promoting forms of nonviolent disciplinary measures as alternatives and launch public information campaigns to raise awareness about its harmful effects ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Ensure that upcoming legislation will not limit citizens' rights to engage in free and private exchanges of information on social media", - "values": [ - "4 - General action" - ] - }, - { - "text": "Ensure thorough and independent investigations of all allegations of extrajudicial killings", - "values": [ - "4 - General action" - ] - }, - { - "text": "Strengthen its efforts for the protection of the rights of the indigenous population. Create a specific national mechanism to address any complaint by the indigenous population in relation to the use of its traditional land, and ensuring the participation of indigenous groups and their representatives ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Repeal or modify the Penal Code relating to national security particularly Articles 79, 88 and 258, in order to prevent those articles from being applied in an arbitrary manner to impede freedom of opinion and expression, including on the Internet ", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Adopt a moratorium on the death penalty with the clear objective of its complete abolition", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Speed up the process of an alternative penal system and ensure that this system includes treatment of juvenile delinquency in line with the Convention on the Rights of the Child and the comments of the Committee on the Rights of the Child", - "values": [ - "4 - General action" - ] - }, - { - "text": "Reinforce measures to combat trafficking of women and children and ensure that the penalties foreseen for these crimes are commensurate with the gravity of the crime ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Study the possibility of harmonizing the domestic legislation with recently ratified international conventions and protocols ", - "values": [ - "3 - Considering action" - ] - }, - { - "text": "Improve measures to ensure the timely detection and investigation of cases of police abuse ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Ratify the Convention for the Protection of All Persons from Enforced Disappearance ", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Inscribe a legal definition of discrimination in its national law", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Take further steps to combat all discriminatory and harmful cultural practices, including FGM, that prevent women and girls from enjoying their human rights.", - "values": [ - "4 - General action" - ] - }, - { - "text": "With the assistance from UNICEF and other relevant United Nations agencies continue to improve access to education, including skill training programmes for all", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Enhancing food security by improving agricultural productivity and introducing high value cash crops, better farm management practices, irrigation and water harvesting.", - "values": [ - "4 - General action" - ] - }, - { - "text": "Expedite the ratification of the International Labour Organization Domestic Workers Convention, 2011 (No. 189)", - "values": [ - "4 - General action" - ] - }, - { - "text": "With regard to conventions and protocols, the Government was committed to make every possible effort to complete the following steps in the next three months: (a) To ratify the Convention on the Rights of Persons with Disabilities, (b) To accede to the Protocol to Prevent, Suppress and Punish Trafficking in Persons, Especially Women and Children, supplementing the United Nations Convention against Transnational Organized Crime, (c) To ratify the International Convention for the Protection of All Persons from Enforced Disappearance, (d) To ratify the International Convention on the Elimination of All Forms of Racial Discrimination, (e) To accede to the Optional Protocol to the Convention on the Elimination of All Forms of Discrimination against Women, (f) To ratify the Convention against Torture and Other Cruel, Inhuman or Degrading Treatment or Punishment and the Optional Protocol thereto.", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Continue the process of expanding the possibilities of accessing the voluntary termination of pregnancy in order to ensure the full recognition of sexual and reproductive rights", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Take measures to ensure the right to freedom of expression and peaceful assembly for human rights defenders, independent journalists and civil society activists and effectively combat intimidation and harassment against them ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Undertake effectively policy measures and develop the necessary infrastructure to address issues concerning the rights of persons with disabilities", - "values": [ - "4 - General action" - ] - }, - { - "text": "Adopt measures to ensure the participation of women in the peace process, including the truth commissions", - "values": [ - "4 - General action" - ] - }, - { - "text": "Respect provisions of existing laws governing freedoms of association assembly and expression, and eliminate abuse of provisions to limit political gatherings, union activity and criticism of the Government", - "values": [ - "4 - General action" - ] - }, - { - "text": "Create a national search commission for victims of enforced disappearance and other forms of disappearance", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Take all possible measures to ensure that the detention regime is brought into line with international human rights law.", - "values": [ - "4 - General action" - ] - }, - { - "text": "Continue implementing socio-economic development strategies and plans in the country, in particular to reduce poverty ", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Ensure that asylum seekers claims are processed in accordance with the Convention relating to the Status of Refugees and that detention occurs only when necessary, for a minimal period, and that access to judicial oversight of detention is ensured", - "values": [ - "4 - General action" - ] - }, - { - "text": "Increase efforts to keep children in schools and protect them from sexual exploitation or forced and unlawful employment", - "values": [ - "4 - General action" - ] - }, - { - "text": "Take measures to combat norms, practices and stereotypes that cause discrimination and violence based on sexual orientation and gender identity", - "values": [ - "4 - General action" - ] - }, - { - "text": "Costa Rica has expressed its commitment to ratify the UNESCO Convention on the Protection and Promotion of Diversity in the Cultural Expressions and is planning a forum to follow up on the Durban review conference, as well as to comply with all international obligations in this regard.", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Intensify its efforts to reinforce the human rights issue in school curricula ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Enforce legislation banning discrimination against Roma community ", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Maintain its efforts towards strengthening the national institutions working in the area of the protection and promotion of human rights", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Ratify the Kampala Amendments to the Rome Statute and the Agreement on the Privileges and Immunities of the International Criminal Court ", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Consider the possibility of ratifying the International Convention on the Elimination of All Forms of Racial Discrimination ", - "values": [ - "3 - Considering action" - ] - }, - { - "text": "Mali is ready to consider the recommendations made by the International Coordinating Committee of National Human Rights Institutions with a view to obtaining A status accreditation", - "values": [ - "3 - Considering action" - ] - }, - { - "text": "Respect the plurality and freedom of the press, particularly the application of neutral sanction measures by the regulatory organs, such as the National Communication Council", - "values": [ - "4 - General action" - ] - }, - { - "text": "Adopt legal measures to punish domestic violence ", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Fully cooperate with international bodies by submitting overdue reports on CEDAW and CRPD", - "values": [ - "4 - General action" - ] - }, - { - "text": "Take further steps to ensure indigenous peoples right to consultation, to obtain their free, prior and informed consent before proceeding with legal and administrative measures that may affect their rights", - "values": [ - "4 - General action" - ] - }, - { - "text": "Maintain effectively the de facto moratorium on the death penalty", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Transfer the responsibility for temporary detention facilities from the Ministry of the Interior to the Ministry of Justice", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Take steps to implement the country's obligations under the Rome Statute of the ICC", - "values": [ - "4 - General action" - ] - }, - { - "text": "Accede and fully align its national legislation with the Rome Statute of the International Criminal Court, and accede to the Agreement on Privileges and Immunities of the Court", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Further continue promoting gender equality in order to explicitly prohibit all forms of discrimination against women ", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Revise article 534 of the Penal Code so that its scope is clearly defined and that it does not discriminate against persons on the basis of their sexual orientation and gender identity", - "values": [ - "3 - Considering action" - ] - }, - { - "text": "Undertake activities to eliminate stereotypes, identifying the obstacles that hinder women from taking up their rightful place in society ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Further pursue awareness-raising efforts to counter the phenomenon of discrimination against women so that they are not deprived of fundamental rights ", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Mobilize sufficient resources for the implementation of the Child Survival Action Plan launched on 7 July 2013", - "values": [ - "4 - General action" - ] - }, - { - "text": "Adopt legislative and political measures to protect lesbian, gay, bisexual, transgender and intersex persons against stigmatization and violence", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Allow the establishment of independent newspapers and other social media, including free access to the internet ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Conduct broad and systematic awareness-raising activities to combat stigmatization, clichés, stereotypes and prejudices faced by non-Swiss nationals", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Take more measures to fight against sexual exploitation of children and violence against them", - "values": [ - "4 - General action" - ] - }, - { - "text": "Take necessary measures to eliminate all forms of discrimination against women ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Continue its work towards the development of a National Disability Policy and a Child Labour Policy", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Review criminal justice procedures to reduce the length of detention without trial and replace preliminary inquiries with sufficient hearings in the High Court", - "values": [ - "3 - Considering action" - ] - }, - { - "text": "Abolish the death penalty for all crimes", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Redouble efforts aimed at combating violence against women and children, especially those with disabilities", - "values": [ - "4 - General action" - ] - }, - { - "text": "Consider developing a broad programme on human rights which includes training and capacity-building for the public sector", - "values": [ - "3 - Considering action" - ] - }, - { - "text": "Ensure that all assaults on human rights defenders, journalists and members of their families are properly investigated and that perpetrators are brought to justice", - "values": [ - "4 - General action" - ] - }, - { - "text": "Continue to uphold the promotion of human rights and fundamental freedoms, particularly for the exercise by people under foreign occupation of their right to self-determination.", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Lift the ban on all forms of public assembly and demonstration ", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Extend a standing invitation to the Special Procedures of the Human Rights Council", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Take adequate measures towards providing legislative protection to its disabled community", - "values": [ - "4 - General action" - ] - }, - { - "text": "Consider ratifying the outstanding international human rights instruments to which it is not yet a party to", - "values": [ - "3 - Considering action" - ] - }, - { - "text": "Ensure that thorough and independent investigations take place into complaints of human rights violations by the police and army forces and that perpetrators are prosecuted and effective remedies are provided to the victims ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Take into account findings in the report of the United Nations Independent Expert on Minority Issues on the phantom death squad ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Continue its constructive and cooperative dialogue with the UN human rights system", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Further develop the quality education policies in the country, paying special attention to providing school services to children in remote and difficult locations ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Ensure that the establishment of a national human rights institutions be in conformity with the Paris Principles ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Sign and ratify the Rome Statute.", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Continue to improve the situation of education in line with recent reforms in this sector.", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Follow up on recommendations that the special procedures about Bahrain.", - "values": [ - "4 - General action" - ] - }, - { - "text": "Expedite the on-going internal proceedings and ratify the CRPD and its Optional Protocol enabling individual complaints ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Give due attention to reconciling the universal values of human rights with the specific circumstances of Vietnam.", - "values": [ - "1 - Minimal action" - ] - }, - { - "text": "Ensure parity of funding and services between Aboriginal and non-Aboriginal communities ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Implement programs to fight against child labour", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Repeal laws criminalizing abortion and eliminate all punitive measures", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Reintroduce immediately a moratorium on executions with a view to abolishing the death penalty", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Take the necessary steps to eliminate discrimination faced by ethnic minorities and ensure that they enjoy their right to culture and their religious freedom is protected", - "values": [ - "4 - General action" - ] - }, - { - "text": "Adopt a national policy on the protection of journalists and human rights defenders to combat intimidation and violence, and to ensure effective investigation of such acts and prosecution of perpetrators", - "values": [ - "3 - Considering action" - ] - }, - { - "text": "Kuwait remained firmly committed to submitting its periodic reports to treaty bodies", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Continue to prioritize safeguarding media freedom", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Exert further efforts to ensure return and resettlement of the remaining internally displaced persons", - "values": [ - "4 - General action" - ] - }, - { - "text": "Protection of and access to all sacred places of worship belonging to Muslims, Christians and others", - "values": [ - "4 - General action" - ] - }, - { - "text": "Intensify its comprehensive policies and concrete plans to guarantee the full enjoyment of rights and welfare of migrant workers, especially women, including combating human trafficking and discrimination in all forms", - "values": [ - "4 - General action" - ] - }, - { - "text": "Repeal amnesty laws and bring to justice perpetrators of human rights violations, regardless of the time that has elapsed since the pertaining acts were committed", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Take measures to make access available to people with disabilities, on an equal footing, to education, employment, housing, transport and cultural life and facilitate their access to public places and services", - "values": [ - "4 - General action" - ] - }, - { - "text": "Extend an invitation to the Special Rapporteur on extrajudicial, summary or arbitrary executions for an official visit in line with United Nations terms of reference without any further delay", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Look into the possibility of prioritizing the rights of the child directly, as a stand-alone issue, not just as a horizontal consideration in its human rights policies", - "values": [ - "3 - Considering action" - ] - }, - { - "text": "Continue to prioritize efforts aimed at strengthening national institutions and developing national capacities, including establishing relevant mechanisms, to undertake regular studies of international human rights instruments and to make appropriate recommendations to the Government", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Increase the efforts to create harmony by fighting the unnecessary discrimination between nationals and foreigners living in the Republic of Korea", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Continue to take strong measures to end the recruitment and use of child soldiers ", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Promptly adopt the bill on a new citizen's code.", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Ensure revisions to the Electoral Code that meet internationally recognized democratic standards and hold the parliamentary elections that have been postponed since 2006 as soon as possible in a manner that guarantees the political rights of its citizens.", - "values": [ - "4 - General action" - ] - }, - { - "text": "Strengthen efforts to finalize and present pending reports to corresponding treaty bodies and consider extending a standing invitation to the thematic special procedures as part of its comprehensive cooperation with the international system for the protection and promotion of human rights", - "values": [ - "4 - General action" - ] - }, - { - "text": "Explicitly prohibit corporal punishment in all settings, including the family, schools and institutions", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Continue efforts to ratify the main international human rights treaties, and follow a realistic approach in this regard ", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Ensure that implementation of the Sharia Penal Code Order 2013 is compliant with international human rights standards and does not lead to the imposition of the death penalty or torture or other inhuman or degrading punishment ", - "values": [ - "4 - General action" - ] - }, - { - "text": "End the continued imposition of the death penalty mostly for drug-related offences", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Complete the process of ensuring that the Ombudsman Institution is fully compliant with the Paris Principles, at the earliest", - "values": [ - "4 - General action" - ] - }, - { - "text": "Adopt a law on access to information in accordance with the international standards on the issue", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Adopt a comprehensive policy against human trafficking and establish a mechanism to provide support to victims, in particular to children exploited in the commercial sex industry and trafficked for prostitution", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Consider the possibility of reforming the laws criminalizing homosexuality and adapting them to international standards", - "values": [ - "3 - Considering action" - ] - }, - { - "text": "Promptly establish a national human rights institution in full compliance with the Paris Principles", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Confirm in deed the status of a standing invitation to the special procedures, in particular, issue an invitation for thematic visits of the special rapporteur on torture, working group on arbitrary detention and the working group on disappearances ", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Accede to the international human rights instruments, in particular the International Covenant on Economic, Social and Cultural Rights ", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Initiate an independent inquiry on cases of torture and maltreatment relating to the years 1991-1995", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Put an end to all practices limiting activities of civil society, and take concrete steps to guarantee the freedom of association ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Continue efforts to combat domestic violence, also by the adoption of a distinct law on this topic", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Effectively monitor the implementation of the Combating of Trafficking in Persons Bill upon its adoption.", - "values": [ - "4 - General action" - ] - }, - { - "text": "Widely publish the outcome of this UPR and make regular and inclusive consultations with civil society an integral part of the follow-up to the UPR", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Promote, in a comprehensive manner, sexual education, particularly of adolescents, with special attention to the prevention of early pregnancy and sexually transmitted diseases and HIV/AIDS ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Step up efforts to reduce the infant mortality rate", - "values": [ - "4 - General action" - ] - }, - { - "text": "Burkina Faso reaffirmed its commitment to cooperating with the different international bodies and hoped for assistance from all international and national actors for the implementation of the recommendations made.", - "values": [ - "4 - General action" - ] - }, - { - "text": "Ratify the ICRMW, the Convention relating to the Status of Stateless Persons, and the Convention on the Reduction of Statelessness ", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Ratify both optional protocols to the Convention on the Rights of the Child", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Give to the Office of the Ombudsperson for Children the necessary resources to carry out its tasks so as to ensure its effective realization of the rights of children", - "values": [ - "4 - General action" - ] - }, - { - "text": "Put an end to censorship of the media, and to take measures to guarantee the integrity of human rights defenders and of persons who criticize the Government's actions", - "values": [ - "4 - General action" - ] - }, - { - "text": "Strengthen prevention of and protection against intimidation, threats and violence against civil society, including human rights defenders and trade unions critical of the Government, and fully guarantee freedom of expression, both offline and online", - "values": [ - "4 - General action" - ] - }, - { - "text": "Consolidate measures taken to protect and promote the rights of children", - "values": [ - "4 - General action" - ] - }, - { - "text": "Consider enacting a legislation that among other would help to contain or restrain certain behaviours that enhance the spread of the HIV/AIDS killer disease", - "values": [ - "3 - Considering action" - ] - }, - { - "text": "Strengthen efforts to effectively implement laws aimed at the elimination of discrimination against women", - "values": [ - "4 - General action" - ] - }, - { - "text": "Step up its efforts so as to further reduce the rate of early pregnancy", - "values": [ - "4 - General action" - ] - }, - { - "text": "Introduce further measures to strengthen the employment opportunities and self-reliance options for persons with disabilities", - "values": [ - "4 - General action" - ] - }, - { - "text": "Consider ratifying or acceding to, as appropriate, the two Optional Protocols to CRC ", - "values": [ - "3 - Considering action" - ] - }, - { - "text": "Withdraw the reservations made to the Convention against Torture, the International Convention on the Elimination of All Forms of Racial Discrimination", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Amend the Penal Code to decriminalize homosexual activity ", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Apply constitutional provisions completely regarding the respect and protection of the rights of all citizens collectively and individually, the rights related to association, peaceful assembly, participation in equality of conditions in public affairs, in State management, and the right to make petitions, and to denounce irregularities and make constructive criticism", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Introduce new legislation to further strengthen the rights of indigenous peoples.", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Ensure that in its family law both spouses have the same rights and responsibilities.", - "values": [ - "4 - General action" - ] - }, - { - "text": "Favourably consider the requests for country visits of the Special Rapporteur on the sale of children, child prostitution and child pornography and the Special Rapporteur on the right to education", - "values": [ - "3 - Considering action" - ] - }, - { - "text": "Provide the Special Office for Children with a mandate and additional powers to enable it to provide advisory and legal assistance in a wider range of cases", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Commits itself [to honour] the conclusions reached, and will establish mechanisms to monitor the recommendations agreed on.", - "values": [ - "4 - General action" - ] - }, - { - "text": "Participate actively in the international programmes of technical assistance and capacity-building in the field of human rights ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Continue efforts in addressing the problem of missing persons", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Take immediate steps to fully implement the commitment on bringing about reforms to ensure that the electoral process and the legislative framework are in line with international standards and in particular to address concerns with regard the independence of the Zimbabwe Electoral Commission and the accuracy of the current voter roll ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Reform legislation regarding freedom of expression with a view to bringing it in conformity with international standards and those of the Inter-American Commission on Human Rights ", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Ensure that the Government of the United Kingdom takes all necessary steps to prevent all kinds of discrimination directed at minorities in the community namely the Roma community", - "values": [ - "4 - General action" - ] - }, - { - "text": "Continue to maintain its policy of broadening and strengthening international cooperation in the promotion and protection of human rights in the interest of humankind ", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Continue to strengthen democratic institutions and pursue efforts to promote civil society and the media", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Ensure full compliance with the laws on child labour and implement its national plan of action on the elimination of the worst forms of child labour, strengthen the legislation prohibiting child labour with priority for the situation of children in domestic work, increase the number of labour inspections, and ensure that fines and criminal sanctions against persons who use illegal child labour are imposed ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Sign and ratify the Optional Protocol to CRPD (OP-CRPD). Intensify efforts with a view to the prompt ratification of CRPD ", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Provide to the Ombudsman the material support necessary to ensure its effectiveness and independence", - "values": [ - "4 - General action" - ] - }, - { - "text": "Continue to work closely with international human rights institutions", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "The Government also has a commitment to allocate resources for the realisation of the MDGs by 2015. We pledge to work collaboratively and through international cooperation with all partners to this end. The next South African UPR report will, among others, be an encapsulation of progressive achievements in the intervening period", - "values": [ - "4 - General action" - ] - }, - { - "text": "Continue efforts to ensure the implementation of the Sustainable Development Goals for the entire population", - "values": [ - "4 - General action" - ] - }, - { - "text": "Take effective measures to prevent alleged abuse and violence by police officers, encouraging the Government to respond appropriately to the Special Rapporteur on the question of torture's concerns and recommendations on this matter", - "values": [ - "4 - General action" - ] - }, - { - "text": "Strengthen efforts to improve the conditions in prisons and guarantee the rights of detainees", - "values": [ - "4 - General action" - ] - }, - { - "text": "Continue its efforts to attain food sovereignty on the basis of food diversification ", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Undertake a comprehensive review of pertinent domestic legislation to ensure full conformity with the Convention on the Rights of the Child", - "values": [ - "3 - Considering action" - ] - }, - { - "text": "Ensure more equal distribution of wealth derived from natural resources", - "values": [ - "4 - General action" - ] - }, - { - "text": "Continue its efforts to develop a comprehensive migration policy with a human rights perspective ", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Continue putting forward intensive efforts in order to eliminate violence against women and boost their participation in political and administrative decision-making ", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Recommend, with regard to corruption, that the Government translate its intentions into tangible results and measures.", - "values": [ - "4 - General action" - ] - }, - { - "text": "Continue current efforts to ensure equality between men and women ", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Address the continued challenge of poverty, particularly among vulnerable groups, such as women and children who are non-citizens", - "values": [ - "4 - General action" - ] - }, - { - "text": "Apply the United Nations Rules for the Treatment of Women Prisoners and Non-custodial Measures for Women Offenders, or the Bangkok Rules, as part of its efforts to guarantee respect for human rights and dignity of persons deprived of their liberty ", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Enhance measures in combatting trafficking in person, particularly women and children, through proper investigation and prosecution in all cases of human trafficking", - "values": [ - "4 - General action" - ] - }, - { - "text": "Ensure access of migrants to consular assistance ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Ensure that unaccompanied migrant children receive free legal representation", - "values": [ - "4 - General action" - ] - }, - { - "text": "Ratify the International Covenant on Economic, Social and Cultural Rights. ", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Provide the necessary support to the national unit for combating human trafficking", - "values": [ - "4 - General action" - ] - }, - { - "text": "Continue its poverty reduction policy, particularly for vulnerable groups in isolated and rural areas", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Take all necessary measures to end female genital mutilation, notably regarding prevention, awareness-raising, control and sanctions ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Criminalize the dissemination of theories of racial superiority or inferiority and prohibit organizations which promote and incite racial discrimination ", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Make all possible efforts to eradicate all forms of violence, all form of abuse against children and eliminate completely police brutality", - "values": [ - "4 - General action" - ] - }, - { - "text": "Thoroughly investigate the human rights violations committed between 1964 and 1982 to bring those responsible to justice and ensure full and effective reparation for victims", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Continue efforts to combat racial discrimination and hate speech, accelerate the enactment of the law concerning hate crimes and hate speech, which has been presented for general comments", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Undertake, as a voluntary measure, a mid-term report to the Human Rights Council on the implementation of the adopted recommendations of this UPR working Group ", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Ensure equal access for girls and women to all levels of education in all regions", - "values": [ - "4 - General action" - ] - }, - { - "text": "Decriminalize defamation and put in place safeguards ensuring that criticism of or reporting on the activities of state and regional authorities do not lead to persecution or harassment", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Undertake further steps to enhance dissemination of information, including laws and regulations related to the rights of persons with disabilities and ensure access to all sources of information, with will assist persons with disabilities in their decision-making", - "values": [ - "4 - General action" - ] - }, - { - "text": "Ratify the American Convention on Human Rights", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Continue strengthening its revolutionary policies and programmes so that all, without any exclusion, may enjoy their fundamental rights which are the human rights ", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Expedite the adoption of draft law 103.13 on violence against women, while taking into account the importance of widening the protection for women victims of violence, and criminalize marital rape", - "values": [ - "4 - General action" - ] - }, - { - "text": "Ensure that the new legislation regarding the media is applied in such a way that the media's independence and pluralism is not undermined", - "values": [ - "4 - General action" - ] - }, - { - "text": "Take the legislative and policy measures to prevent and fight against violence and fight against discrimination based on sexual orientation or gender identity", - "values": [ - "4 - General action" - ] - }, - { - "text": "Ratify the International Covenant on Economic, Social and Cultural Rights ", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Provide greater support to the National Human Rights Commission to ensure its independence", - "values": [ - "4 - General action" - ] - }, - { - "text": "Take the necessary measures to combat domestic violence, including the creation of shelters for victims", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Repeal all laws that discriminate against women and girls and ensure conformity with international standards", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Continue making progress in the efforts needed and consider ratifying ILO Convention No. 169 ", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Adopt a comprehensive strategy in order to combat discrimination based on sexual orientation and gender identity", - "values": [ - "4 - General action" - ] - }, - { - "text": "Take appropriate legislative and practical measures to improve living conditions through its prisons systems, in particular with regard to access to health care and education ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Invite the international community to provide Ethiopia with requested technical assistance with a view to developing the capacities of federal and regional human rights institutions ", - "values": [ - "1 - Minimal action" - ] - }, - { - "text": "Take measures to explore means to ensure the full implementation of its international human rights obligations by all constituent units of the Swiss Confederation", - "values": [ - "4 - General action" - ] - }, - { - "text": "Address discrimination against women in Law No. 24 for 2010 on the Libyan Nationality so that women can transfer their nationality to their children and foreign spouses, and acquire, change or retain their nationality, on an equal basis with men, in line with article 9 of the Convention on the Elimination of All Forms of Discrimination against Women", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Implement appropriate measures to fully cooperate with the International Criminal Court ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Increase the efficiency and the systematic implementation of the law on the development of mining resources, in the field of employment, housing, social development and protection of the environment", - "values": [ - "4 - General action" - ] - }, - { - "text": "Consider acceding to the Rome Statute of the ICC and accelerate the ratification of the human rights Covenants on human rights", - "values": [ - "3 - Considering action" - ] - }, - { - "text": "Strengthen legal and administrative provisions to eliminate all forms of discrimination based on sex and gender ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Continue implementation of the comprehensive judicial reform which ensures that the judicial authorities exercise their powers in accordance with the law", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Adopt a national mechanism for the prevention of torture, which should have access to all places of detention, and abrogate the law providing for a statutory limitation regarding acts of torture ", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Redouble its efforts to eliminate any remaining forms of discrimination and xenophobia", - "values": [ - "4 - General action" - ] - }, - { - "text": "Accede to the Convention relating to the Status of Refugees and Convention on the Reduction of Statelessness", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Continue to expand the range of main international human rights instruments in effect in the country, in particular through the ratification of the United Nations Convention against Torture and Other Cruel, Inhuman or Degrading Treatment or Punishment", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Ratify other main relevant international instruments such as the Rome Statute of the International Criminal Court", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Continue to consolidate the rights of indigenous peoples both in practice and within its legal framework, thereby guaranteeing their participation and consultation", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Increase awareness regarding disability rights, and make all appropriate accommodations for disabled voters ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Facilitate the ICRC access to prisons ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Ensure impartial and thorough investigations of all allegations of human rights violations carried out by members of its military and security forces, both within its territory and in areas where it exercises effective controls ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Consider extending an open invitation to special procedures ", - "values": [ - "3 - Considering action" - ] - }, - { - "text": "Continue to strengthen and provide further resources to the National Commission for the Protection of Children and Young People at Risk in order to protect the rights of neglected and abused children ", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Continue and strengthen the positive ongoing efforts aimed at increasing the school enrolment rate of its citizen, with special emphasis on girls and boys ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Improve health-care infrastructure in general to enable access to health care for all and especially access to emergency obstetric care, midwife training and resources devoted to maternal health", - "values": [ - "4 - General action" - ] - }, - { - "text": "Deploy further efforts to prevent and punish grave forms of violence against women, in particular when they result in widespread rape", - "values": [ - "4 - General action" - ] - }, - { - "text": "Ratify the Optional Protocol to the Convention on the Rights of the Child on the involvement of children in armed conflict and prosecute perpetrators of violations committed by all parties to the conflict", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Continue intensifying the measures to reduce early pregnancy, strengthening training on sexual and reproductive rights", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Consider becoming a party to the Convention on the Rights of Persons with Disabilities CRPD ", - "values": [ - "3 - Considering action" - ] - }, - { - "text": "Maintain the efforts under way to increase the access of the entire population to health care services, both in rural and urban areas.", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Continue to make every effort to promote economic and social development, further increase the level of social security and better promote people's livelihood ", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Provide adequate resources for the effective prosecution of cases of sexual violence", - "values": [ - "4 - General action" - ] - }, - { - "text": "Ensure that the judicial definitions contained in human rights treaties are incorporated effectively and in a timely fashion in its national legislation", - "values": [ - "4 - General action" - ] - }, - { - "text": "Grant the request of the United Nations Special Rapporteur on extrajudicial, summary or arbitrary executions to visit Mozambique ", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Continue to strengthen normative frameworks for the protection of children from violence and abuse, and develop awareness-raising programmes aimed at educating the public about the harmful effects of corporal punishment and enhancing the capacities of educators and the media to promote good practices and more positive methods of child-rearing", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Inform children with disabilities that they have the right to education on an equal basis with other children, and build capacity with organizations of persons with disabilities ", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Amend labour laws to ensure increased protection for migrant workers in the Jordanian labour market", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Continue measures aimed at strengthening national mechanism for monitoring places of detention ", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Noting that, owing to malaria, acute respiratory tract infections and malnutrition, child mortality is relatively high, call on the international community to provide assistance in reducing child mortality rates ", - "values": [ - "1 - Minimal action" - ] - }, - { - "text": "Continue its efforts to raise the level of gender awareness not only among public servants at all levels of the government, but also among community at large", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Strengthen its measures and continue its efforts in promoting multiculturalism and social inclusion ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Develop a comprehensive, inclusive and holistic national plan of action against trafficking in persons, and examine the possibility of establishing a central organ to deal with trafficking in persons ", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Create a legal framework that gives sufficient protection for "whistle-blowers" testifying in crimes related to corruption", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Adopt fully the rights-based approach in the development of future legislation ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Strengthen its cooperation with human rights special procedures and consider issuing a standing invitation ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Establish as soon as possible a national human rights institution", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Strengthen efforts to encourage the naturalisation of eligible noncitizens", - "values": [ - "4 - General action" - ] - }, - { - "text": "Ensure in law and practice that journalists and other persons can freely exercise their right to freedom of expression", - "values": [ - "4 - General action" - ] - }, - { - "text": "Ensure birth registration without discrimination of any kind, including unregistered adults, and intensify the deployment of mobile birth registration units", - "values": [ - "4 - General action" - ] - }, - { - "text": "Consider acceding to the International Covenant on Civil and Political Rights, International Covenant on Economic, Social and Cultural Rights, and the Optional Protocol to the Convention against Torture and Other Cruel, Inhuman or Degrading Treatment or Punishment", - "values": [ - "3 - Considering action" - ] - }, - { - "text": "Ratify the Disabilities Convention", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Cooperate closely with the United Nations, in particular with the local Office of the High Commissioner for Human Rights ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Ratify the Rome Statute of the International Criminal Court and accede to the Agreement on Privileges and Immunities of the Court", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Recognize publicly the work of human rights defenders and continue its efforts to guarantee basic civil and political rights", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Uphold its international obligations to respect the rights to freedom of expression, assembly, and association, and cease arrests, harassment, and detention of individuals with different views ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Continue to work to prevent and combat incidents of racist and anti- semitic and extremist expressions and actions which have occurred in Switzerland in recent times", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Consider the ratification of CRC and its Optional Protocols ", - "values": [ - "3 - Considering action" - ] - }, - { - "text": "Continue strengthening the migration policy in accordance with international standards for the promotion and protection of human rights taking into account that this phenomenon presents major challenges for the country", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Develop a comprehensive national action plan for the promotion of gender equality, with a view to addressing key challenges facing women ", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Make every necessary effort to improve the conditions in detention facilities so that they meet the necessary minimum conditions of habitability ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Continue to uphold the rights of indigenous peoples and minorities, including vulnerable groups", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Ensure respect, in law and in practice, of the freedom of religion and belief", - "values": [ - "4 - General action" - ] - }, - { - "text": "Consider the option of ratifying the Convention against Torture and the International Convention for the Protection of All Persons from Enforced Disappearance", - "values": [ - "3 - Considering action" - ] - }, - { - "text": "Ensure the speedy enactment of the legislation to equip the Human Rights and Public Administration Commission with clear powers and adequate resources to ensure that it is able to work in an accessible, effective, independent and impartial manner", - "values": [ - "4 - General action" - ] - }, - { - "text": "Accelerate the implementation of the 2008 constitutional criminal justice reforms to enhance transparency and provide procedural rights for accused persons", - "values": [ - "4 - General action" - ] - }, - { - "text": "Withdraw the general reservations to CEDAW", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Strengthen efforts to eradicate discrimination, hatred, stigmatization on racial grounds and racially-motivated violence, the propagation of prejudice and stereotypes about refugees and asylum seekers through speeches, websites and social networks, the increase of Islamophobia, and ensure that any act of discrimination or violence motivated by the national or ethnic identity of the victim is investigated and punished", - "values": [ - "4 - General action" - ] - }, - { - "text": "Strengthen internal mechanisms for the implementation of OP-CAT", - "values": [ - "4 - General action" - ] - }, - { - "text": "Intensify its efforts to establish National Human Rights Institution in compliance with the Paris Principles", - "values": [ - "4 - General action" - ] - }, - { - "text": "Advance the reform and the transformation process in accordance with the aspirations of the fraternal Algerian people ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Continue training public authorities' staff on human rights", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Consider ratifying the International Convention for the Protection of All Persons from Enforced Disappearance and the Convention on the Prevention and Punishment of the Crime of Genocide", - "values": [ - "3 - Considering action" - ] - }, - { - "text": "Continue its constructive engagement with its regional and international partners to meet the challenges in the promotion and protection of human rights", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Take appropriate measures to address concerns over having withdrawn the citizenship of naturalized Kuwaiti citizens", - "values": [ - "4 - General action" - ] - }, - { - "text": "Continue the efforts to strengthen the national institutions for the promotion and protection of human rights and freedoms ", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Continue efforts to implement the zero hunger programme to combat poverty and achieve food and nutritional security, which assigns priority to poor rural families and marginal urban populations", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Investigate the alleged harassment of human rights defenders and prosecute offenders", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Introduce as a crime domestic and intrafamily violence and take the necessary measures to ensure the training of relevant authorities ", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Take further measures to follow up on the recommendations of the Human Rights Committee and CEDAW related to anti-discrimination legislation.", - "values": [ - "4 - General action" - ] - }, - { - "text": "Ensure that its legislation and practice conform fully with requirements of article 18 of ICCPR and with its other obligations under international human rights law", - "values": [ - "4 - General action" - ] - }, - { - "text": "Adopt a legal definition of the crime of corporal punishment of children in all circumstances and places", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Further strengthen its protection measures to remediate the attacks against trade unionists ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Schedule visits for the Special Rapporteur on trafficking in persons, especially in women and children and the Special Rapporteur on freedom of opinion and expression in line with their requests and Kuwait's 2010 standing invitation", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Build mechanisms which would enable provision of adequate humanitarian assistance to the large number of internally displaced persons", - "values": [ - "4 - General action" - ] - }, - { - "text": "Continue cooperation and strengthen human rights dialogue with relevant international human rights mechanisms despite all obstacles and existing challenges while remaining confident of its will and its way to proceed according to its needs and national priorities ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Institute a moratorium on the application of the death penalty ", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Enhance efforts to improve the functioning of Djibouti's judicial system", - "values": [ - "4 - General action" - ] - }, - { - "text": "Refrain from banning or setting age limit on non-therapeutic circumcision of boys", - "values": [ - "4 - General action" - ] - }, - { - "text": "Improve legislation in order to better implement the provisions of the Convention for the Elimination of All Forms of Discrimination against Women ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Improve the transparency of the electoral process, provide equal conditions for all candidates, prevent obstruction of the media and the Internet, and ensure the independence of the Electoral Commission and impartial investigation of allegations of election fraud and violence", - "values": [ - "4 - General action" - ] - }, - { - "text": "Take all necessary measures towards the achievement of the objective of universal primary education for all by 2015 ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Fight impunity for violence against marginalized persons motivated by their ethnicity, religion, or sexual orientation, particularly through an improved awareness of public opinion, and the police and judicial authorities", - "values": [ - "4 - General action" - ] - }, - { - "text": "Comply with international obligations, and ensure full and unhampered enjoyment of freedom of expression", - "values": [ - "4 - General action" - ] - }, - { - "text": "In order to strengthen the rule of law with security and justice institutions capable of effectively protecting human rights, and to overcome social inequalities, Mexico commits to adopt the necessary measures to address the recommendations of the Universal Periodic Review in the framework of the National Programme on Human Rights 2008-2012. Mexico will also work in the framework of the Agreement with the Office of the High Commissioner for Human Rights in Mexico in order to foster the implementation of the recommendations.", - "values": [ - "4 - General action" - ] - }, - { - "text": "Establish a moratorium on executions, with a view to abolishing the death penalty, as established by the relevant resolutions of the UN General Assembly", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Implement training programs on human rights to further increase awareness of civil servants, including law enforcement and justice system personnel", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Consider accession to the Convention on the Prevention and Punishment of the Crime of Genocide ", - "values": [ - "3 - Considering action" - ] - }, - { - "text": "Consider the accession of the International Convention on the Protection of the Rights of All Migrant Workers and Members of Their Families to strengthen further its national legal framework", - "values": [ - "3 - Considering action" - ] - }, - { - "text": "Continue its endeavours to implement the national human rights plan", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Refrain from restricting freedom of expression, whether it is exercised online or offline, and ensure that journalists and media outlets are able to carry out their work without harassment", - "values": [ - "4 - General action" - ] - }, - { - "text": "Ratify core international human rights instruments, including the International Covenant on Civil and Political Rights and its Optional Protocols, the International Covenant on Economic, Social and Cultural Rights and the Convention against Torture and its Optional Protocol", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Adopt administrative and legislative measures to increase the human, technical and financial resources for the adequate functioning of the Commission on Human Rights, and the three rights commissions, as well as to ensure its independence, in accordance with the Paris Principles", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Step up its ongoing efforts regarding the birth registration of all children", - "values": [ - "4 - General action" - ] - }, - { - "text": "Continue taking the measures that allow the total elimination of all forms of discrimination against women and ensure gender equality", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Review all its national legislation to ensure its compliance with the Constitution and international obligations, including to protect the right to privacy and non-discrimination", - "values": [ - "3 - Considering action" - ] - }, - { - "text": "Continue strengthening the cooperation with the Office of the High Commissioner, through joint activities to improve national capacities in the field of human rights", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Continue to enhance the interests of the people of Cuba and overcome any undue process ", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Repeal and amend legislation that infringes on the right to freedom of expression in line with the international obligations and Constitution of Zimbabwe, such as the Criminal Law (Codification and Reform) Act and the Public Order and Security Act ", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Abrogate the provisions criminalizing sexual relations between consenting adults of the same sex ", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Adopt and resource the national strategic plan of action to eliminate gender-based violence", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Provide adequate funding and human resources to its national human rights institution to enable it to fully implement its mandate", - "values": [ - "4 - General action" - ] - }, - { - "text": "Fight against trafficking in human beings", - "values": [ - "4 - General action" - ] - }, - { - "text": "Consider ratification of the International Convention on the Protection of the Rights of All Migrant Workers and Members of Their Families", - "values": [ - "3 - Considering action" - ] - }, - { - "text": "Adopt legislation to criminalize any diffusion of ideas based on racial superiority or hatred, any incitement to racial discrimination or any act of racially motivated violence", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Speed up the amendment of the Criminal Code, Code of Criminal Procedure, and Code of Military Justice to effectively deal with human rights violations", - "values": [ - "4 - General action" - ] - }, - { - "text": "Pursue the rehabilitation of the National Human Rights Commission", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Sri Lanka, manifesting its commitment to promote people-oriented development, will work towards the alleviation of poverty and achieving the Millennium Development Goals by 2015 through continued investment in social infrastructure, education, and health services in line with the vision of the Government of Sri Lanka for social and economic development.", - "values": [ - "4 - General action" - ] - }, - { - "text": "Pursue the implementation of effective measures to protect women and children against domestic violence and ill-treatment in all its forms", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Ensure protection of the dignity of migrants, displaced persons and refugees, whether they are deprived of movement and freedom or exposed to any risk of death", - "values": [ - "4 - General action" - ] - }, - { - "text": "Consider an early ratification of the newest international HR instrument -the third OP to CRC on a communication procedure ", - "values": [ - "3 - Considering action" - ] - }, - { - "text": "Continue to strengthen the social protection programmes that are currently being implemented in order to provide the greatest possible welfare and standard of living to its people", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Enact a law that incorporates the obligation to carry out independent investigations and punish those who commit acts of torture ", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Adopt measures to ensure that the Truth Commission enjoys absolute legitimacy and transparency in the election of its members, full independence to efficiently carry out its mandate, and clarity with respect to the scope of its mandate, so that it meets it objective, which is to know the truth regarding the serious human rights violations committed", - "values": [ - "4 - General action" - ] - }, - { - "text": "Consider introducing procedures for the identification of persons vulnerable to trafficking, strengthen the prosecution of perpetrators of human trafficking and further support the rehabilitation of victims", - "values": [ - "3 - Considering action" - ] - }, - { - "text": "Extend a standing invitation to special procedures mandate holders, respond positively to all requests to visit the country and cooperate fully, promptly and substantively with the Human Rights Council special procedures", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Speed up the study on the possibility of ratifying the Optional Protocol to the Convention against Torture", - "values": [ - "4 - General action" - ] - }, - { - "text": "Review the Ukrainian legislative framework on asylum and refugees, so as to ensure respect of the principle of non-refoulement and that asylum seekers are not deported to countries where they might find themselves at risk", - "values": [ - "3 - Considering action" - ] - }, - { - "text": "Take measures to ensure that the media work freely and prevent any intimidation of journalists", - "values": [ - "4 - General action" - ] - }, - { - "text": "Give more budgetary allocation to the training of police officers and the judiciary to ensure that women have equal and substantive access to justice under the Family Protection Act", - "values": [ - "4 - General action" - ] - }, - { - "text": "Intensify its efforts to prevent and combat violence against women and girls, in particular sexual abuse, domestic violence and the violent killing of women, as recommended by CAT", - "values": [ - "4 - General action" - ] - }, - { - "text": "Undertake the necessary measures to install the adequate legal and administrative framework to facilitate the reporting, investigation and prosecution of domestic violence cases ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Continue ongoing efforts to combat human trafficking in line with the National Action Plan to combat trafficking of human beings and the international commitments", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Establish a national human rights commission", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Ensure that all prisoners are provided with the minimum standards of humane treatment, in particular that they are not subject to torture or inhumane or degrading treatment such as forced hard labour or food quotas", - "values": [ - "4 - General action" - ] - }, - { - "text": "Ensure the effective application of the law on the criminalisation of slavery", - "values": [ - "4 - General action" - ] - }, - { - "text": "Take the steps necessary to ensure that laws protecting freedoms of expression, press, assembly and association are implemented and adhered to", - "values": [ - "4 - General action" - ] - }, - { - "text": "Guarantee fully freedom of expression and information by combating the formation of monopolies and ensuring respect for media pluralism", - "values": [ - "4 - General action" - ] - }, - { - "text": "Guarantee the right to education for children of migrant workers", - "values": [ - "4 - General action" - ] - }, - { - "text": "Abolish definitely the death penalty from its national legislation ", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Carry out the adoption of the action plan for the prevention of all forms of violence, with a view to strengthening the framework for the protection of all victims, in particular those belonging to vulnerable groups", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Continue measures to combat trafficking in human beings", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Implement the constitutional reforms in the elections of 2014 ", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Strengthen the role of the National Commission for Human Rights to enable it to discharge its mandate effectively and independently in accordance with the Paris Principles", - "values": [ - "4 - General action" - ] - }, - { - "text": "Issue a standing invitation to the special procedures mandate holders", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Repeal Law No. 71 of 1972 and relevant articles of the Penal Code that criminalize free association, and ensure that individuals seeking to establish associations are spared from any harassment or prosecution ", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Ratify and domesticate ILO Convention on Domestic Workers No. 189", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Ensure close cooperation between the police and the NGOs which provide assistance to victims of trafficking in human beings ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Adopt legislative and policy measures to combat all forms of discrimination and violence against women", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Withdraw reservations to CEDAW and its optional protocol and fully implement national policies and laws on the protection of women ", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Continue in its efforts to accede the International Convention on the Rights of All Migrant Workers and Members of their Families", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Take further steps to ensure registration of all births and provide identity documents to all persons whose birth was not registered", - "values": [ - "4 - General action" - ] - }, - { - "text": "Grant access to the announced visits of independent experts to places of detention.", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Strengthen its efforts to raise awareness among its citizens on the provisions contained in the Equal Treatment Act, and to ensure its full implementation as well as that of the Gender Equality Act", - "values": [ - "4 - General action" - ] - }, - { - "text": "Implement programmes in the area of human rights education for State officers, including law enforcement officers, in order to avoid violence and discrimination on any basis, especially regarding vulnerable groups", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Intensify efforts to promote women's rights and fight violence and discrimination against women ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Continue its efforts to promote and protect the rights of persons with disabilities", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Pursue programmes and consolidated approach in the promotion and protection of all human rights including in the field of education, health and the promotion of the status of women. ", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Immediately implement Security Council resolutions 1559 and 1701 by disbanding and disarming all militias and armed factions, in particular Hizbullah, and restore security and stability for all residents of Lebanon", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Speedily abolish the death penalty ", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Pursue their ongoing efforts to enhance their cooperation with treaty bodies and other relevant human rights mechanisms and to better fulfil their reporting obligations ", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Make efforts to provide the resources, funding, personnel and authority necessary to implement the 2007 labour law that permits workers to join and form trade unions.", - "values": [ - "4 - General action" - ] - }, - { - "text": "Undertake specific measures to ensure implementation of international treaties and domestic legislation designed to protect the rights of citizens ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Develop awareness campaigns directed towards adults and children containing preventive measures to avert trafficking in persons", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Conclude the process of ratification of the ICPPED shortly, and investigate vigorously all cases of enforced disappearances, including the case of civil society activist, Sombath Somphone, and inform the public transparently about the results of such investigation as far as feasible without endangering the investigation, and bring perpetrators to justice", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Strengthen the state of law and good governance, with more focus on capacity building for federal and local public officers for better law enforcement and human rights promotion and protection", - "values": [ - "4 - General action" - ] - }, - { - "text": "Ratify the First Optional Protocol to ICCPR, the Optional Protocol to CAT and the International Convention for the Protection of All Persons from Enforced Disappearance (CPED) ", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Pursue efforts aimed at the prohibition of all forms of slavery by strengthening the resources of the National Commission for the Elimination of Slavery", - "values": [ - "4 - General action" - ] - }, - { - "text": "Deepen the process to abolish the death penalty by implementing a de jure moratorium on the use of death penalty and subsequently by abolishing it permanently", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Speed up the establishment of the National Independent Commission for Human Rights which includes the establishment of a permanent national committee to prevent torture, in accordance with the Optional Protocol to the Convention against Torture", - "values": [ - "4 - General action" - ] - }, - { - "text": "Strengthen efforts to combat maternal mortality", - "values": [ - "4 - General action" - ] - }, - { - "text": "Take further measures to prevent and combat all forms of violence against children and women, including training law enforcement officials to deal with sexual violence cases ", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Put an end to the practice of rewriting history and interpreting it at will, including in the textbooks of secondary and high schools", - "values": [ - "4 - General action" - ] - }, - { - "text": "Create an enabling legal environment for civil society organizations to contribute to democratic governance by creating entry points for dialogue and refraining from restricting their freedom to operate independently and freely ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Promote the development of third generation rights, in particular the value of international solidarity ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Take measures for the effective registration of all children born in the country without discrimination and remove all references to ethnic origin in identity documents", - "values": [ - "4 - General action" - ] - }, - { - "text": "Continue taking the appropriate measures to better integrate and fully recognize persons of African descent as an important part of the Dominican society ", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Take necessary further steps to combat poverty and to address socio-economic inequality", - "values": [ - "4 - General action" - ] - }, - { - "text": "Continue its efforts on behalf of the defence and sustainability of a pluralistic democracy, good governance, economic and social development and the strengthening of national human rights institutions", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Work to ensure the independence of the judiciary and to continue with the efforts to fight crime using a preventive approach and a human rights perspective", - "values": [ - "4 - General action" - ] - }, - { - "text": "Consider the ratification of ILO Convention 189 concerning decent work for domestic workers", - "values": [ - "3 - Considering action" - ] - }, - { - "text": "Expressly prohibit corporal punishment in the home, school and institutions and promote alternative methods of discipline", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Consider establishing mechanisms preventing security forces from using force in an excessive or unjustified manner, especially against peaceful protesters", - "values": [ - "3 - Considering action" - ] - }, - { - "text": "Establish a national human rights institution with the assistance of OHCHR ", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Involve civil society organizations in the follow-up to this review ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Formalize the abolition of the death penalty and accede to the Second Optional Protocol to the International Covenant on Civil and Political Rights", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Examine, in the spirit of its engagement in favour of human rights, the possibility of adhering to the Convention on the Rights of Persons with Disabilities ", - "values": [ - "3 - Considering action" - ] - }, - { - "text": "Establish a special mechanism responsible for independent child rights monitoring", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Pursue efforts to ensure the smooth functioning and full independence of the Human Rights Commission, in conformity with the Paris Principles", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Uphold women's rights so that women can fully participate in the social, cultural, economic and political spheres of their society", - "values": [ - "4 - General action" - ] - }, - { - "text": "Revise all laws relevant to protection from domestic violence", - "values": [ - "3 - Considering action" - ] - }, - { - "text": "Redouble its efforts to eradicate all forms of gender discrimination, particularly on issues such as marriage, adultery, rape and abortion, and guarantee the right of women to property, inheritance and unrestricted disposition of their estate", - "values": [ - "4 - General action" - ] - }, - { - "text": "Adopt specific legislation to ensure equality of women in family, social, economic and political spheres", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Continue bringing national legislation into line with changes in its economic model and in accordance with the treaties to which it is party ", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Repeal the amendments to the Criminal Code that criminalizes "illegal entry" and introduces "transit zones" at the border and a list of "safe countries"", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Redouble efforts to eliminate discrimination against older people in access to financial services, which sometimes are not available or are too costly in reason of the undue use of age as a criteria", - "values": [ - "4 - General action" - ] - }, - { - "text": "Adopt a comprehensive strategy which is grounded in human rights principles, in particular non-discrimination and equality, to combat malnutrition and further reduce the mortality rates of children under five ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Continue to promote legislation and actions to eliminate discrimination and strengthen the protection of the rights of vulnerable groups including women, children and indigenous peoples", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "In order to combat impunity, support the bill before Congress "to guarantee access to justice for victims of sexual violence, especially sexual violence in the context of armed conflict" ", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Continue combating violence against women and ensure the full enforcement of the criminal law", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Intensify measures to raise awareness of domestic violence, including through training for judges, prosecutors, police and health officers", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Take on board the continued concerns of the Human Rights Treaty Bodies in regard to femicide and other forms of violence against women, and take further measures to eradicate such violence, including those to prevent incidents from arising, as well as investigation and punishment of offenders", - "values": [ - "4 - General action" - ] - }, - { - "text": "Continue to strengthen national and regional efforts to promote and protect human rights defenders", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Continue making progress in the protection of women rights, consolidating existing institutional mechanisms", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Continue efforts to strengthen the judicial and institutional framework regarding human rights by adopting legislation essential to the implementation of the rights prescribed by the new constitutional provisions", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Strengthen the fight against all forms of discrimination against women, in particular violence against women and girls by ensuring the strict and effective application of relevant laws and policies", - "values": [ - "4 - General action" - ] - }, - { - "text": "Continue to consider entering into the International Covenant on Economic, Social and Cultural Rights.", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Continue efforts and strengthen the national programme to ensure the right to health and to education ", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Strengthen the human rights education and training of military forces and police, prison and judicial staff, and ensure their accountability for any violations of human rights, in particular for violence or sexual violence against women, children and persons of minority sexual orientation or gender identity ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Intensify the public awareness campaign against FGM and adopt, and implement, legislation prohibiting and criminalizing FGM", - "values": [ - "4 - General action" - ] - }, - { - "text": "Amend the relevant laws in order to identify racial discrimination as a criminal offence", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Seek to enhance its programmes on human rights education and training in schools and for public officials, in cooperation with the international community ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Consider extending invitations to all United Nations special procedures on a case-by-case basis, in order to benefit from this mutually enriching cooperation, exchange of experience and expertise and opportunities for future progress ", - "values": [ - "3 - Considering action" - ] - }, - { - "text": "Consider ratifying other international human rights conventions, including the International Convention on the Protection of the Rights of All Migrant Workers and Members of Their Families (ICRMW)", - "values": [ - "3 - Considering action" - ] - }, - { - "text": "Ensure the implementation of the relevant laws to protect people and the environment, by requiring phosphate companies to work with the Government and support its efforts aimed at local and regional development, through, inter alia, building schools and dispensaries and providing water and sanitation to those affected", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Consider including a module on human rights education and training in the education system and also in the training programmes of the members of the police force and the administrators of justice ", - "values": [ - "3 - Considering action" - ] - }, - { - "text": "Encourage racial, ethnic and religious tolerance, especially among young people ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Continue the programmes and national plans aimed at empowering youth", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Further pursue national strategies and policies aimed at consolidating the human rights infrastructure and achieving more progress in the promotion of a culture of respect for human rights", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "The letter and the spirit of the provisions of the new antiterrorism law do not impose restrictions on the enjoyment of human rights and fundamental freedoms that are contrary to international human rights standards", - "values": [ - "4 - General action" - ] - }, - { - "text": "Consider accession to the Agreement on the Privileges and Immunities of the International Criminal Court", - "values": [ - "3 - Considering action" - ] - }, - { - "text": "Consider extending a standing invitation to all the special procedures mandate-holders of the Human Rights Council", - "values": [ - "3 - Considering action" - ] - }, - { - "text": "Speed up its efforts to ensure the proper functioning of the National Human Rights Commission in accordance with the Paris Principles.", - "values": [ - "4 - General action" - ] - }, - { - "text": "Ensure a comprehensive and effective incorporation of children's rights into its legal framework in line with the Convention on the Rights of the Child (CRC), by incorporating children's rights into the Constitution", - "values": [ - "4 - General action" - ] - }, - { - "text": "Strengthen national legislation to combat domestic violence, child prostitution, trafficking and child labour", - "values": [ - "4 - General action" - ] - }, - { - "text": "Further prevent and combat human trafficking, including by enhancing the mandates of relevant mechanisms so that socially vulnerable individuals enjoy improved legal protection", - "values": [ - "4 - General action" - ] - }, - { - "text": "Adopt specific legislation in the area of equality between men and women, a law on the fight against domestic violence and a global strategy aimed at eliminating cultural practices and discriminatory stereotypes against women", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Establish promptly a national human rights institution, in full compliance with the Paris Principles", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Combat impunity as one of the Government's priorities", - "values": [ - "4 - General action" - ] - }, - { - "text": "Consider ratifying the Optional Protocol to the Convention against Torture and the International Convention for the Protection of All Persons from Enforced Disappearance", - "values": [ - "3 - Considering action" - ] - }, - { - "text": "Examine, in the spirit of its engagement in favour of human rights, the possibility of adhering to the International Convention on the Protection of the Rights of All Migrant Workers and Members of Their Families ", - "values": [ - "3 - Considering action" - ] - }, - { - "text": "Follow-up legislative measures adopted in favour of the rights of persons with disabilities", - "values": [ - "4 - General action" - ] - }, - { - "text": "Facilitate access to justice for all citizens by establishing an effective justice support system", - "values": [ - "4 - General action" - ] - }, - { - "text": "Adopt specific legislation on violence against women, including criminal and civil provisions necessary to address domestic violence and sexual harassment against women and girls", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Respect the activities of civil society organizations, and to ensure that any action taken to regulate human rights organizations is not politically motivated, but based on legal provisions consistent with international human rights standards", - "values": [ - "4 - General action" - ] - }, - { - "text": "Improve food security and access to drinking water for the whole population ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Continue to take measures to ensure that alleged human rights violations by the police and security services are properly investigated and prosecuted ", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Initiate a comprehensive study on abuse, ill treatment and domestic violence against women and girls, the results of which can be used as the basis for social programmes to prevent these serious problems", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Step up efforts to guarantee the right of health of its citizens ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Continue making efforts to protect the rights of older persons", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Ensure all citizens can freely manifest their beliefs and that adherents of all faiths can fully enjoy their rights to health, education and other public services", - "values": [ - "4 - General action" - ] - }, - { - "text": "Strengthen the public impact of the People's Advocate (Ombudsman) and his capacity to act effectively as a preventive national force also when it comes to sensitive issues such as prosecution of acts of torture ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Step up its efforts to protect women and girls from sexual violence", - "values": [ - "4 - General action" - ] - }, - { - "text": "Abolish the death penalty and ratify ICCPR and its Second Optional Protocol ", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Amend constitutional provisions which negatively affect the status of women, including marriage, divorce, adoption, burial and transfer of property in case of death", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Accelerate capacity building in order to effectively implement the NHRAP", - "values": [ - "4 - General action" - ] - }, - { - "text": "Conduct timely and impartial investigations into the killings of Somali civil society actors and journalists and ensures that threats of violence against these individuals are investigated, and, where there is credible evidence of threats, take the necessary measures to ensure their personal security", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Step up its efforts to achieve universal primary education and increase educational opportunities for illiterate people", - "values": [ - "4 - General action" - ] - }, - { - "text": "Make further investment in the protection and promotion of women's and children's rights", - "values": [ - "4 - General action" - ] - }, - { - "text": "Consider the possibility of acceding to the Optional Protocol to the Convention against Torture and Other Cruel, Inhuman or Degrading Treatment or Punishment", - "values": [ - "3 - Considering action" - ] - }, - { - "text": "Consider ratifying the Convention against Discrimination in Education", - "values": [ - "3 - Considering action" - ] - }, - { - "text": "Ensure the effective implementation in all provinces of the protocol for the comprehensive care of persons entitled to legal termination of pregnancy and of the national plan on comprehensive sexual education", - "values": [ - "4 - General action" - ] - }, - { - "text": "Ratify the Optional Protocol to the Convention on the Rights of the Child CRC on the sale of children, child prostitution and child pornography", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Accede to the Second Optional Protocol to ICCPR aimed at abolishing the death penalty, and ICCPR itself and take all necessary steps to remove the death penalty from Saint Lucia's justice system ", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Continue its efforts to develop a national human rights action plan", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Implement fully its Gender Equity and Women's Development Policy and the National Policy on Eliminating Violence against Women, and convene a first meeting of the oversight mechanism - the National Steering Committee - at the earliest opportunity ", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Halt the systematic use of detention of asylum seekers at the borders", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "While recognizing the efforts of Morocco to promote a culture of human rights and human rights education and training, to carry on with its efforts to disseminate and consolidate the human rights culture in the country.", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Consider acceding to the International Convention on the Protection of the Rights of All Migrant Workers and Members of Their Families ", - "values": [ - "3 - Considering action" - ] - }, - { - "text": "Commute all death penalties, progressively reduce the number of offences punishable with death penalty and adopt subsequent measures to ensure its full abolition, including by acceding to ICCPR-OP2", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Include human rights education in all curricula and school systems", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Guarantee the fight against impunity by ensuring that all persons convicted for human rights violations are brought to justice", - "values": [ - "4 - General action" - ] - }, - { - "text": "Withdraw its reservation to article 29 of CRPD and engage in consultation with organizations of persons with disabilities to identify steps needed to implement the Convention", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Continue to improve access to education in rural areas ", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Ratify the Rome Statute of the International Criminal Court and fully cooperate with international mechanisms of accountability in order for those responsible of international crimes to be brought to justice ", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Favourably consider ratifying, inter alia, the International Covenant on Civil and Political Rights, Optional Protocol 1 to the International Covenant on Civil and Political Rights, the International Covenant on Economic, Social and Cultural Rights, the Convention against Torture and Other Cruel, Inhuman or Degrading Treatment or Punishment and the Optional Protocol to the Convention on the Elimination of All Forms of Discrimination against Women, as a further step aimed at the full implementation of its commitment to promoting and protecting human rights in the country", - "values": [ - "3 - Considering action" - ] - }, - { - "text": "Strengthen measures to prevent violence against foreigners. These include comprehensive education and awareness programmes regarding xenophobia and the rights of migrants, including refugees and asylum seekers, as well as programmes that promote inclusion", - "values": [ - "4 - General action" - ] - }, - { - "text": "Significantly improve its cooperation with the United Nations treaty Bodies by submitting overdue reports", - "values": [ - "4 - General action" - ] - }, - { - "text": "Take all necessary measures to prohibit and eliminate the practice of female genital mutilation", - "values": [ - "4 - General action" - ] - }, - { - "text": "Take fully into account the relevant recommendations of CERD aimed at ensuring the integration of non-German children into the regular school system", - "values": [ - "4 - General action" - ] - }, - { - "text": "Intensify its efforts to deal with discrimination to ensure that indigenous peoples and people of African descent fully enjoy economic, social and cultural rights, as enshrined in the Universal Declaration on Human Rights", - "values": [ - "4 - General action" - ] - }, - { - "text": "Implement federal and provincial laws on the right to education to ensure universal access", - "values": [ - "4 - General action" - ] - }, - { - "text": "Adopt a legislation that criminalizes specifically sexual harassment in all spheres, including in the work place", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Continue the efforts to examine how to strengthen public trust and foster strong relationships between local law enforcement and communities they serve", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Expedite the development of a new Maori language strategy", - "values": [ - "4 - General action" - ] - }, - { - "text": "Incorporate in national legislation the international human rights legal instruments to which Nigeria has acceded", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Step up measures to comprehensively address the problem of trafficking and violence against women, including by increasing public awareness campaigns ", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Redouble its efforts to place greater attention on establishing a legal framework to ensure equal access to women's participation in the decision- making process. Indeed, more consideration should be given to women, persons with disabilities and other minorities ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Continue pursuing appropriate, efficient policies aimed at further improving the access of Roma to education and consider the adoption of additional measures, as recommended by the national human rights institutions ", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Continue its efforts and continue to take initiatives against hate crimes based on sexual orientation or gender identity. Such advances can be achieved by implementing anti-discrimination laws and strengthening financial resources of investigation authorities and the autonomy of the Federal Agency against discrimination ", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Consider conducting an assessment of the effects of air, water and soil pollution on children\u2019s health with a view to designing a well-resourced strategy to address the situation", - "values": [ - "4 - General action" - ] - }, - { - "text": "Take necessary steps for the implementation of the relevant legal and policy framework to combat trafficking in persons, identifying victims and providing them with all necessary assistance and support", - "values": [ - "4 - General action" - ] - }, - { - "text": "Guarantee birth registration for all boys and girls without discrimination of any kind", - "values": [ - "4 - General action" - ] - }, - { - "text": "Promote the accreditation of the Ombudsman's Office (Provedor de Justiça) as a National Human Rights Institution with "A" Status in accordance with the Paris Principles", - "values": [ - "4 - General action" - ] - }, - { - "text": "Continue to support and encourage the further development of China's media use of English and other foreign languages to help the outside world better understand China, including the objective coverage of China, a country too often deliberately and grossly misunderstood by some international media", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Improve the civil registration system in order to register all children at birth", - "values": [ - "4 - General action" - ] - }, - { - "text": "Provide for the necessary conditions to be able to limit detention in police cells to the 48-hour term as required by Norwegian law ", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Comprehensive protection be accorded to all migrant workers, including access to essential services like education, health and housing", - "values": [ - "4 - General action" - ] - }, - { - "text": "Close the so-called rehabilitation centres, where poor people living on the streets arrested in police operations are held, and pursue adequate social policies that address the problems of the concerned socially disadvantaged groups", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Ensure, in the context of the judicial reform, a gender sensitive and accessible judiciary, both in terms of procedures and attitude ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Take further steps to protect the rights of persons with disabilities and the rights of women and children, including through strengthening support services", - "values": [ - "4 - General action" - ] - }, - { - "text": "Eliminate all forms of discrimination against the Roma community, migrants and religious minorities, and take necessary measures against the perpetrators of racially motivated acts against migrants and ethnic and religious minorities ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Continue with its inclusive economic growth strategy which has resulted in poverty reduction from 40% in 2005 to 31.5% in 2010 ", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Intensify its fight to eliminate forced labour and the severest forms of child labour ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Commute the sentences of persons sentenced to death and establish a moratorium on executions towards the abolition of the death penalty", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Fully respect the freedoms of expression, opinion, association and peaceful assembly in accordance with Eritrea's obligations under the International Covenant on Civil and Political Rights ", - "values": [ - "4 - General action" - ] - }, - { - "text": "End impunity for trafficking by enforcing provisions in the Criminal Code Amendment of 2013", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Make efforts to resolve difficulties in repossessing property and acquiring citizenship for returnees, in order to ensure the successful integration of minorities into Croatian society", - "values": [ - "4 - General action" - ] - }, - { - "text": "Consider amending the Immigration Control Act to introduce a maximum period of detention pending deportation", - "values": [ - "3 - Considering action" - ] - }, - { - "text": "Vigorously apply the law that was recently put in place to end the practice concerning the stigmatized children as witches or wizards", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Incorporate a gender perspective in negotiating and implementing any settlement accords ", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Ensure the effective investigation and sanctioning of all cases of violence against religious minorities ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Amend its law on domestic violence to include a specific definition on domestic violence as a criminal offence", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Invite and facilitate the visit of the Special Rapporteur on freedom of religion and belief.", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Redouble its efforts in the prevention of violence against women", - "values": [ - "4 - General action" - ] - }, - { - "text": "Investigate complaints and possible violations of human rights committed by State security agencies in order to punish those responsible and avoid impunity ", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Ensure a proportionate use of the force from the security forces", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Continue to improve the human rights situation in the country, in the light of the improvements made so far ", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Ratify the Optional Protocol to the Convention against Torture and Other Cruel, Inhuman or Degrading Treatment or Punishment ", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Strengthen its efforts to eliminate discrimination of and violence against women and girls including through implementation of laws, policies and programmes to this effect", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Ratify the two Optional Protocols to the Convention on the Rights of the Child", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Accept, ratify to or accede, as appropriate, the Optional Protocol to the International Covenant on Economic, Social and Cultural Rights", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Strengthen its policies and measures on the promotion of gender equality in all socio-economic aspects as an effective tool to resolve unemployment and poverty", - "values": [ - "4 - General action" - ] - }, - { - "text": "Consider heeding the appeals to proceed with the ratification of the remaining core human rights treaties, including ICERD, CAT and CRPD", - "values": [ - "3 - Considering action" - ] - }, - { - "text": "[Enact legislation to explicitly prohibit corporal punishment of children] In all settings", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Incorporate the provisions of the Convention on the Rights of the Child into the domestic legal system", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Put an end to attacks on civilians and grant unfettered access to humanitarian organizations and independent international human rights monitors, particularly the Commission of Inquiry", - "values": [ - "4 - General action" - ] - }, - { - "text": "Enhance the contacts and communication between Aboriginal and Torres Strait Islander communities and representatives of the law enforcement officials and enhance the training of those officials with respect to cultural specificities of the above communities ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Having complied with its voluntary commitments and contributions, it will continue to fulfill its obligations with a steadfast commitment to the advancement of human rights of the international community.", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Strengthen measures to promote the rights of indigenous populations of the country, particularly, with respect to their access to the citizenship, land, justice and education ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Guarantee the protection and humanitarian assistance to displaced persons due to the internal conflict, in particular women and children, within the framework of international human rights and humanitarian law", - "values": [ - "4 - General action" - ] - }, - { - "text": "Step up its cooperation with the Special Procedures of the Human Rights Council by responding positively to the pending visit requests and eventually consider extending a standing invitation to all the Special Procedures mandate holders of the Human Rights Council", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Namibia shall continue to engage constructively in the deliberations of the Human Rights Council, its subsidiary bodies and mechanisms.", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Elaborate a Plan of Action for the implementation and monitoring of the Law on preventing and combating domestic violence, and allocate adequate budgetary resources for its implementation", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Continue the consolidation of the National Human Rights Commission of Korea in accordance with the principles relating to the status of national institutions for the promotion and protection of human rights (the Paris Principles), paying particular attention to the appointment of the Chairperson of the Commission, in consultation with civil society groups and other relevant stakeholders", - "values": [ - "4 - General action" - ] - }, - { - "text": "Take measures to align the legislation on mass events with international standards in order to protect freedom of association, including through the elimination of the requirement to request a licence prior to the organization of assemblies and public demonstrations", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Cooperate fully and effectively with Special Procedures mandate holders ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Halt the use of the death penalty in all circumstances, and take steps towards its abolition, including ratification of the Second Optional Protocol to the International Covenant on Civil and Political Rights", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Continue its efforts to implement the national human rights action plan", - "values": [ - "4 - General action" - ] - }, - { - "text": "Comply with its international obligations in respect to the judiciary and the right to freedom of expression and implement recommendations, resolutions and decisions of the international and regional human rights protection systems ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Take all the necessary steps to ensure the effective implementation of the Action Plan to halt child recruitment and other violations against children ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Undertake the process of consultations with civil society stakeholders and the National Commission for Human Rights in the follow-up to the UPR review ", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Strengthen the capacities and expand the role of the Equality Ombudsman to cover the whole range of human rights, with a view to its possible assumption of the role of a national human rights institution, in accordance with the Paris Principles ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Take the necessary measures for setting up a comprehensive national strategy to prevent and address all forms of violence against women and children", - "values": [ - "4 - General action" - ] - }, - { - "text": "Take necessary measures to allow the enjoyment of civil and political rights by all, including the right to participate in political and public affairs", - "values": [ - "4 - General action" - ] - }, - { - "text": "Establish a new unit in the Ministry for Citizen Protection, and continue the reform aimed at training police officers in order to deal with asylum-seekers and migrants in accordance with international criteria for human rights ", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Closely involve civil society in the follow-up to the present review", - "values": [ - "4 - General action" - ] - }, - { - "text": "Continue its active participation in the work of Human Rights Council as well as to maintain its contribution to OHCHR ", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Intensify greatly the numerous measures taken in this sector of human rights education", - "values": [ - "4 - General action" - ] - }, - { - "text": "Continue efforts aiming at empowering women in the society ", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Ensure that cases of alleged violence against, and wrongful imprisonment of members of the media are fully investigated", - "values": [ - "4 - General action" - ] - }, - { - "text": "Sign and ratify CAT, and ratify the International Convention for the Protection of All Persons from Enforced Disappearance (ICPPED)", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Continue its affirmative actions in the education sector by investing more in education", - "values": [ - "4 - General action" - ] - }, - { - "text": "Begin the accreditation process (with the International Coordinating Committee of the National Human Rights Institutions), as the Paris Principles play an important role in the promotion and protection of international human rights standards at the national level ", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Continue providing support for the voluntary evacuees from the high-radiation areas of Fukushima, with housing, financial and other life-assisting means and with periodic health monitoring of those affected, in particular those who were children at the time of the accident", - "values": [ - "4 - General action" - ] - }, - { - "text": "Provide for a separation of juvenile offenders from adult inmates ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Immediately and unconditionally release all persons currently detained for the reason of homosexuality alone ", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Move forward in establishing a system of monitoring and systematic repression of hate crimes, noting that this question is one of the Government's priorities ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Evaluate the possibility to develop a national human rights action plan ", - "values": [ - "3 - Considering action" - ] - }, - { - "text": "Consider the possibility of ratifying the Convention on the Protection of the Rights of All Migrant Workers and Members of Their Families", - "values": [ - "3 - Considering action" - ] - }, - { - "text": "Adopt measures to stop aggressions and discrimination against persons suffering from albinism ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Devote an adequate share of the national budget to social policies, prioritizing measures that improve access to food, health, education, housing, water and sanitation, especially for the most vulnerable ", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Abolish the death penalty ", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Strengthen measures aimed at fighting human trafficking, including addressing its root causes, and exploitation of women and girls", - "values": [ - "4 - General action" - ] - }, - { - "text": "Continue its efforts to establish a national human rights institution in accordance with the Paris Principles", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Continue to review and periodically assess its immigration laws and policies, taking into consideration the recommendations made by relevant United Nations agencies, human rights treaty bodies and special procedures, and to ensure that the rights of migrants are fully safeguarded, in accordance with international human rights standards", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Consider reviewing its declaration regarding article 20 (2) of the International Covenant on Civil and Political Rights ", - "values": [ - "3 - Considering action" - ] - }, - { - "text": "Conform the National Human Rights Commission to the Paris Principles ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Examine as a priority the introduction of a formal moratorium on the death penalty.", - "values": [ - "4 - General action" - ] - }, - { - "text": "Continue efforts made aimed at combating discrimination and religious intolerance, especially against the rastafari, and to strengthen measures to eliminate any discriminatory treatment based on sexual orientation", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Support the independence of judiciary and combat impunity", - "values": [ - "4 - General action" - ] - }, - { - "text": "Pursue the implementation of legislative reforms", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Continue to invest in policies and programmes aimed at enhancement of youth development and education", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Ensure greater accountability and transparency of police and security forces, including by publishing the results of investigations by the Independent Policing Oversight Authority", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Continue to attach importance to environmental protection and achieve harmonious development of people and nature", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Call for the support of the international community to assist it in drawing up an electoral programme that will be acceptable to all the parties and bring about the realization of peace, democracy and good governance.", - "values": [ - "1 - Minimal action" - ] - }, - { - "text": "Continue its efforts to raise public awareness of human rights", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Accelerate its fight against racism", - "values": [ - "4 - General action" - ] - }, - { - "text": "That all journalists remaining in detention on the basis of misuse of criminal libel or defamation trials be released", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Revise laws to expressly prohibit discrimination on the basis of sexual orientation, gender identity and intersex status", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Strengthen its efforts to come up with measures to prevent the crime of human trafficking and its participation in bilateral and regional cooperation to address the issue of human trafficking", - "values": [ - "4 - General action" - ] - }, - { - "text": "Extend the mandate of the Ombudsman for Human Rights in accordance with article 2 of the Paris Principles and guarantee its independence", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Become a party to the ICCPR and ICESCR", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Pay special attention to the position of unaccompanied minor immigrants ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Adopt and implement the draft law on domestic violence referred to in the national report, taking into account the recommendation of the Committee on the Rights of the Child concerning the incorporation of the Convention on the Elimination of All Forms of Discrimination against Women into domestic law ", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Ratify the Optional Protocols to the International Covenant on Civil and Political Rights and to the Convention against Torture", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Continue efforts aimed at improving the situation of migrant workers in its territory ", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Take all measures necessary to ensure that the forthcoming presidential elections are peaceful, free and fair and that the right to freedom of assembly is fully respected", - "values": [ - "4 - General action" - ] - }, - { - "text": "Continue giving due attention to the issue of violence against children by ensuring effective implementation of the Strategy for Preventing and Combating Violence against Children", - "values": [ - "4 - General action" - ] - }, - { - "text": "Ensure the full implementation of the National Gender Policy by allocating appropriate resources in accordance with the Convention on the Elimination of All Forms of Discrimination against Women", - "values": [ - "4 - General action" - ] - }, - { - "text": "Renew the mandate of the Office of the United Nations High Commissioner for Human Rights established in Guatemala, for th e period from September 2008 to September 2011, taking into account that its mandate ends in September of this year ", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Consider ratifying and implementing the Indigenous and Tribal Peoples Convention No. 169.", - "values": [ - "3 - Considering action" - ] - }, - { - "text": "Eritrea is fully committed to the achievement of the MDGs", - "values": [ - "4 - General action" - ] - }, - { - "text": "Repeal article 92-6 of the Military Criminal Code which criminalizes consensual sexual relations between people of the same sex in the army", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Ratify ICESCR and its Optional Protocol, the first Optional Protocol to the International Covenant of Civil and Political Rights, CEDAW, the Convention on the Rights of the Child, the Optional Protocol to the Convention against Torture, the Convention on the Rights of Persons with Disabilities, the Convention for the Protection of All Persons from Enforced Disappearance ", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Implement the National Plan for Education for All effectively and take urgent steps to address the root causes of the high dropout rate for girls", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Make increased efforts to introduce and effectively carry out new measures to deal with human trafficking of women and children", - "values": [ - "4 - General action" - ] - }, - { - "text": "Continue efforts in the frame of the realization of the rights to health and education ", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Take all necessary steps to strengthen public confidence in the justice system and limit the use of pretrial detention as strictly necessary ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Implement further legislation, law enforcement reform and practical efforts to combat violence against women and to advance gender equality", - "values": [ - "4 - General action" - ] - }, - { - "text": "Consider further measures in order to address the problem of violence against children, including corporal punishment.", - "values": [ - "3 - Considering action" - ] - }, - { - "text": "Accede to the Rome Statute of the International Criminal Court (ICC) and draft a law on cooperation between the State and the Court", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Adopt policies and measures to combat child labour and the commercial exploitation of children, in accordance with the recommendations made by the Committee on the Rights of the Child ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Strengthen its legal framework by considering signing and ratifying the International Convention on the Protection of the Rights of All Migrant Workers and Members of Their Families", - "values": [ - "4 - General action" - ] - }, - { - "text": "Amend the Criminal Code to no longer define rape according to the degree of violence used by the perpetrator but rather the lack of consent of the victim", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Continue to promote gender equality through its policies and programmes", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "With regard to the comments and recommendations made during the review, including with regard to the scope of Bhutan's international human rights commitments, the strengthening of support for civil society organizations, measures to combat domestic violence and trafficking, and complex humanitarian issues, Bhutan expressed its commitment to addressing these issues.", - "values": [ - "4 - General action" - ] - }, - { - "text": "Women's and child development units will be established at the Divisional (sub-District) administrative level to ensure expeditious assistance to those in need with a special focus on the Northern and Eastern Provinces", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Consider ratifying the main international human rights instruments not yet ratified", - "values": [ - "3 - Considering action" - ] - }, - { - "text": "Take action against income inequality between men and women in similar positions and with a similar degree of work ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Turkey is committed to supporting the full and effective participation of persons with disabilities in social life, advancing their rights, protecting their dignity, and promoting their access to employment, education, goods and services.", - "values": [ - "4 - General action" - ] - }, - { - "text": "Continue to improve access to education through various programs and initiatives", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Continue to work towards the empowerment of women and the promotion and protection of all their rights and intensify efforts and programmes to combat the phenomenon of trafficking of women and children", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Intensify education and awareness-raising campaigns to prevent stigmatization and discrimination of people living with albinism", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Ensure the precedence of provisions of international human rights treaties over national laws in cases of conflict", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Establish a mechanism to review the legislation to combat terrorism to guarantee, to the same extent, due protection to human rights and fundamental freedoms ", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Keep working on the legislative framework for the recognition of the indigenous peoples in the country", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Include a prohibition of discrimination of any kind, including discrimination based on sexual orientation and gender identity, ethnicity, religion and infection with HIV, in labour and employment law in line with international standards", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Pursue its national efforts to integrate human rights education into the education system and training programmes, and to continue to pursue that issue at the international level", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Eradicate child labour starting with taking steps to finalize the National child labour policy and to implement the plan of action to eliminate the worst forms of child labour", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Amend legislation on abortion in order to take into account situations where pregnancy is the result of sexual aggression or incest or when the pregnant woman is in danger, and guarantee the access of all women to sexual and reproductive health", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Develop a national strategy on slavery, including ways to reinforce and expand public awareness-raising campaigns against traditional and modern forms of slavery ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Continue implementing and strengthening measures to promote equality and protection against all forms of discrimination, placing special emphasis on the most vulnerable minority groups ", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Continue to establish centres for the reconciliation of families ", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Extend immediate and unrestricted access to United Nations special procedures and to OHCHR, in order to enable them to carry out their mandates ", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Continue with its efforts undertaken to fight against trafficking of persons ", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Adopt a comprehensive legislative framework concerning violence against women that includes a definition of rape in line with international standards and criminalize marital rape", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Ratify the International Covenant on Civil and Political Rights, the International Covenant on Economic, Social and Cultural Rights and the Optional Protocol to the Convention against Torture ", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Clearly prohibit all forms of corporal, cruel or degrading punishment in all contexts and promote non-violent forms of education and discipline", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Lift restrictions on access to the Internet within Nauru and facilitate access of journalists to the country", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Investigate all allegations of sexual exploitation and abuse by South African peacekeepers, prosecute and punish offenders, take measures within SA peacekeeping contingents to prevent future offences, and report the results back to UN peacekeeping authorities ", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Ratify the Council of Europe Convention on Preventing and Combating Violence against Women and Domestic Violence", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Continue promoting the knowledge and strengthening the capacities of officials in preventing and handling trafficking in persons, including in implementing special measures and care for trafficking persons, involving vulnerable populations", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Adopt measures as a matter of urgency to put an end to arbitrary detention, torture and illegal centres of detention, ensure due oversight regarding the legality of detentions, and ensure the effectiveness of judicial remedies against such practices", - "values": [ - "4 - General action" - ] - }, - { - "text": "Improve health-care institutions with the aim of reducing maternal mortality", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Continue with the education process, dissemination of information and awareness raising for families, local leaders, civil society and all relevant actors, in order to eradicate the practice known as "Wahaya" or 5th wife", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Continue to push forward economic and social development and prioritize eradication of poverty and to further improve the living standards of the people", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Incorporate explicitly the crime of torture, as defined in the Convention against Torture, into domestic law ", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Implement the recommendations of the Committee on the Elimination of Discrimination against Women for better observance of its obligations under the Convention on the Elimination of All Forms of Discrimination against Women, in particular effectively apply the ban on early and forced marriages, including through the adjustment of the national legal framework, by paying particular attention to vulnerable groups", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Fully implement the proposals made by the National Task Force on Police Reforms ", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Further promote human rights education for law enforcement organs", - "values": [ - "4 - General action" - ] - }, - { - "text": "Continue to improve policies and training programmes regarding the promotion and protection of the rights of the child", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Establish measures to further reduce gender inequality in all areas and pay special attention to protection of women from minorities, older women and women with disabilities", - "values": [ - "4 - General action" - ] - }, - { - "text": "Amend the Criminal Code to prohibit racist organizations and establish criminal liability for hate speech with racist content and incitement to hatred", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Intensify the fight to put an end to ritual crimes, including through long-term awareness-raising campaigns", - "values": [ - "4 - General action" - ] - }, - { - "text": "Strengthen coordination between national and international institutions working in the area of human rights with a view to effectively conduct and launch human rights trainings provided to the government agencies' staff ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Continue efforts to prevent human trafficking and protect the rights of victims, and provide them with necessary assistance", - "values": [ - "3 - Considering action" - ] - }, - { - "text": "Review the customary practices which are extensive and contrary to the efforts made to improve the situation of women, particularly the tradition of pre-engagement with minor girls", - "values": [ - "3 - Considering action" - ] - }, - { - "text": "Strengthen further its system of family allowances and benefits with a view to ensuring that all children, including children of refugees, and migrant parents, had an adequate standard of living", - "values": [ - "4 - General action" - ] - }, - { - "text": "Adopt effective measures to guarantee the protection of victims of gender violence, duly investigate allegations and ensure that those responsible be prosecuted and sanctioned", - "values": [ - "4 - General action" - ] - }, - { - "text": "Fully investigate all cases of harassment and intimidation of journalists and human rights defenders with a view of bringing the perpetrators to justice", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Continue efforts to sensitize the public to combat discrimination on all grounds online to ensure that all rights are respected", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Continue with its efforts to enact the draft law on gender equality and Justice, which will provide a stronger legal foundation for gender responsive policies", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Continue implementing programmes and measures for the rights of persons with disabilities ", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Take measures towards modifying those social, cultural and traditional attitudes that are permissive of violence against women ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Continue its efforts to improve the protection of victims and witnesses, and their families, as well as human rights defenders, particularly those testifying in human rights-related trials, and to ensure that adequate witness protection is implemented.", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Put an immediate stop to the excessive and lethal use of force against demonstrators and the killing of protesters, in respect of its international human rights obligations", - "values": [ - "4 - General action" - ] - }, - { - "text": "Consider steps to encourage the participation of women in the Government Council.", - "values": [ - "3 - Considering action" - ] - }, - { - "text": "Provide torture-prevention training for the police, prosecutors and judges and ensure that statements obtained through torture cannot be invoked in criminal proceedings", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Respect the human rights of prisoners and detainees, and investigate and stop immediately any alleged abuses", - "values": [ - "4 - General action" - ] - }, - { - "text": "Improve law enforcement capacity to protect victims of domestic violence by expanding the ability of the police to investigate cases of suspected domestic violence, including spousal rape, and increasing training and awareness-raising for police", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Continue its efforts to promote and protect the rights of women, as part of its action plan for gender equality ", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Continue its steps to consolidate the principles of human rights and public freedoms", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Expedite the preparatory work to establish a national human rights institution and an ombudsman, and provide the country with such institutions ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Ensure that persons with albinism are protected against discrimination", - "values": [ - "4 - General action" - ] - }, - { - "text": "Accelerate efforts aimed at fully implementing the wide range of laws, policies and programmes aimed at strengthening gender equality and women's rights ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Adopt concrete measures to prevent and combat all forms of discrimination against persons with an immigrant background ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Adopt a general law on violence against women, in accordance with international standards, providing the means for its effective implementation", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Carry out awareness campaigns for the population in relation to non-discrimination based on sexual orientation", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Accelerate the analysis process for the ratification of international human rights treaties to which it is not yet a party and take appropriate measures for reporting progress on the implementation of the instruments to which it is already a party", - "values": [ - "4 - General action" - ] - }, - { - "text": "Continue the efforts to ratify the Convention on the Rights of Persons with Disabilities ", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Enhance assistance, shelter and rehabilitation for victims of sexual and domestic violence ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Continue implementing the Legal Sector Master Plan on the Development of the Rule of Law to improve its legal framework and institutional mechanisms", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Strengthen measures to protect boys, girls and adolescents from all forms of violence against them, as well as measures to eradicate child labour and combat the exploitation of boys, girls and adolescents", - "values": [ - "4 - General action" - ] - }, - { - "text": "Eliminate the provision criminalizing irregular entry and stay on Italian territory as contained in law No. 94 of 2009, as well as those provisions that regard non-documented status as an aggravating circumstance in the commission of criminal offence, and the creation of vigilante groups, as contained in law No. 125 of 2008", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Consider the possibility of raising the minimum age for voluntary recruitment to 18 years and, in the meantime, give priority to older candidates in the process of volunteer recruitment ", - "values": [ - "3 - Considering action" - ] - }, - { - "text": "Provide adequate support services to protect victims of domestic and sexual violence", - "values": [ - "4 - General action" - ] - }, - { - "text": "Implement laws and policies that protect and promote the civil, political, social and economic rights of migrants, Roma people, refugees and asylum seekers, especially the rights to health, to education and to work ", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "That further progress be made toward concrete and visible reform, including through implementation of the follow-up committee's report, in a way which guarantees transparency and freedom of speech", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Release immediately and unconditionally all political prisoners, members of the opposition, human rights defenders and activists, ensure their full rehabilitation, and lift travel and other restrictions imposed on political prisoners who have been pardoned", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Enhance the policy to prevent, combat and eradicate torture, improve the situation in the prison system and establish alternative sanctions \n", - "values": [ - "4 - General action" - ] - }, - { - "text": "Thailand will withdraw its reservation to article 16 of the Convention on the Elimination of All Forms of Discrimination against Women. It will also withdraw the interpretative declarations to articles 6 and 9 of the International Covenant on Civil and Political Rights and article 18 of the Convention on the Rights of Persons with Disabilities", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Review laws and practices in particular with regard to ensuring protection of the freedom of religion, movement, protection of the culture and language of national minorities, including Tibetans and Uyghurs", - "values": [ - "3 - Considering action" - ] - }, - { - "text": "Conclude the investigation of the stadium massacre to ensure that those culpable be held to account", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Respect the free exercise of the associations defending human rights, ensure that the Egyptian legislation complies with the International Covenant on Civil and Political Rights, and guarantee the right to freedom of association", - "values": [ - "4 - General action" - ] - }, - { - "text": "Withdraw its reservation on article 4 [a] of the International Convention on the Elimination of All Forms of Racial Discrimination", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Provide maximum judicial transparency, for example by allowing officials of third countries to attend public trials at criminal and security courts", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Develop a comprehensive national action plan on combating racism and discrimination", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Continue efforts to promote cultural rights through programmes to protect and revitalize the diversity of cultural heritage constituting the Moroccan identity, including the Hassani heritage in the southern provinces", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Eliminate the reported contradictions in the constitutional framework and discriminatory provisions therein against women", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Take concrete measures to put an end to Islamophobia and hate speech regarding Muslims, which continues to be widespread in public and political debate", - "values": [ - "4 - General action" - ] - }, - { - "text": "Implement the United Nations target of allocations at least 0.7 per cent of the gross domestic product to official development assistance, in order to help achieving the Millennium Development Goals by 2015", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Undertake a comprehensive review of prison conditions to ensure that all detainees are treated humanely and in compliance with international standards ", - "values": [ - "3 - Considering action" - ] - }, - { - "text": "Continue to further its efforts to guarantee the rights of the child", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Continue its efforts to ensure that trials take place within a reasonable period of time ", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Continue the steps aimed at the promotion of human rights education at the national and international levels", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Take measures to ensure the effective investigation and prosecution of human trafficking cases and establish remedy procedures for the victims", - "values": [ - "4 - General action" - ] - }, - { - "text": "Promulgate a law on domestic violence that includes penalties and options for the treatment of those responsible for such crimes", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Review and improve the practices related to the care of asylum seekers", - "values": [ - "4 - General action" - ] - }, - { - "text": "Continue to implement policies to protect women against violence and promote gender equality", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Establish the University of Education over the period 2015-2020", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Continue progress to deliver the objectives set through its National Plan for Economic and Social Development by 2020", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Make available the necessary resources to the Human Rights Commission to effectively implement its important mandate", - "values": [ - "4 - General action" - ] - }, - { - "text": "Allocate adequate resources to ensure the continuous and effective implementation of the National Action Plan to Address Gender-Based Violence", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Improve access to criminal justice services and legal assistance", - "values": [ - "4 - General action" - ] - }, - { - "text": "Continue to strengthen national legislation to combat domestic violence", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Continue its efforts to end female genital mutilation, inter alia through enforcement of legislation and implementation of programmes sensitizing the population about its harmful effects ", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Improve the relevant legislation to further combat racial discrimination and incitement to racial hatred in order to effectively protect the rights of ethnic minorities ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Remove all gender-discriminatory provisions from the Nationality Law of 1959 ", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Accelerate the adoption of the project on marriage, divorce and family relations and the establishment of the minimum age of marriage in line with international standards", - "values": [ - "4 - General action" - ] - }, - { - "text": "Develop prevention strategies on gender-based violence and establish rehabilitation services for victims of violence", - "values": [ - "4 - General action" - ] - }, - { - "text": "Take measures to eradicate traditional stereotypes of women, especially through educational programmes, and enact legislation on domestic violence", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Fully implement the National Strategy on Gender Equality and Against Gender-Based and Domestic Violence and build up the capacity of the police force to deal with such cases, including through additional training programs to help police identify and assist survivors of domestic violence", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Take promptly effective measures to safeguard the human rights of refugees and asylum seekers in Papua New Guinea and end indefinite mandatory detention of asylum seekers", - "values": [ - "4 - General action" - ] - }, - { - "text": "Follow the recommendations in the final report of the Organization for Security and Co-operation in Europe on the 28 June elections to minimize the politicization of the Media Monitoring Board and to facilitate training for the Board members in quantitative and qualitative media analysis ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Enact specific legislation to put in place comprehensive measures to prevent and address violence against women and girls, and provide adequate assistance and protection to the victims ", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Continue to support the Saharawi people so that they can exercise their right to self-determination ", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Continue its efforts in promotion of well-being of people with the emphasis on the most vulnerable ones", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Increase efforts to investigate and prosecute alleged trafficking offenders, and adopt legislation that will expand New Zealand's current anti-trafficking legal framework to prohibit and adequately punish all forms of human trafficking ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Ensure that the implementation of programs supported by loans from the International Monetary Fund and the World Bank should not be carried out at the expense of basic social sectors such as education and health, nor should it exclude the marginalized vulnerable groups such as children, women and people with disabilities ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Allow minors to change their legal gender by allowing the person exercising parental authority over the minor to file an application", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Further take appropriate actions to improve access to social services for the people with disabilities", - "values": [ - "4 - General action" - ] - }, - { - "text": "Ease the heavy administrative burdens on NGOs, such as the yearly registration obligations ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Continue to take all necessary measures to protect and offer remedy to victims of torture ", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Consider the accession to core human rights instruments ", - "values": [ - "3 - Considering action" - ] - }, - { - "text": "Continue to protect the rights of children", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Continue its efforts to tackle gender-based violence and sexual violence against women and girls", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Continue its efforts by developing and supporting consultative mechanisms whereby children are able to communicate with government agencies", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Conduct a review to examine the ethnic balance in government and develop diversification strategies to comply with the tenets set forth in its ethnic federalism policies ", - "values": [ - "3 - Considering action" - ] - }, - { - "text": "Upgrade its human rights body into an independent and credible National Human Rights Institution in accordance with the Paris Principles ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Further promote children's interests in the framework of the national strategy for action covering the period of 2012-2017 ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Combat hate speech and prosecute perpetrators of xenophobic acts", - "values": [ - "4 - General action" - ] - }, - { - "text": "Take immediate action against discrimination of women by effectively enforcing women's right to equal treatment as it is guaranteed in the Ghanaian constitution, for example, by ensuring and promoting access to education", - "values": [ - "4 - General action" - ] - }, - { - "text": "Step up efforts to protect the human rights and improve the lives of children, including orphans and children with disabilities, through, inter alia, reviewing related policies and increasing in the budget allocation for specific programmes for vulnerable groups ", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Continue efforts to advance gender equality in all spheres, by both implementing existing legislation and developing new legal norms ", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Take all necessary measures to ensure adequate access to water and sanitation by children with disabilities in all Japanese schools", - "values": [ - "4 - General action" - ] - }, - { - "text": "Establish an official moratorium on the death penalty, with a view to its full abolition", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Ensure that human rights defenders in Thailand are treated in accordance with the General Assembly Declaration on Human Rights Defenders", - "values": [ - "4 - General action" - ] - }, - { - "text": "Undertake, as recommended by the Committee on the Rights of the Child, a comprehensive review of existing legislation from a rights-based perspective, to ensure its conformity with the principles and provisions of CRC ", - "values": [ - "3 - Considering action" - ] - }, - { - "text": "Seek from the international community continued meaningful support for the efforts made by Mozambique to enhancing discharge of its human rights obligations ", - "values": [ - "1 - Minimal action" - ] - }, - { - "text": "Declare a moratorium on executions pending the prompt abolition of the death penalty", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Respect the human rights of all individuals, including homosexuals, by de-penalizing homosexuality", - "values": [ - "4 - General action" - ] - }, - { - "text": "Ratify the International Covenant on Civil and Political Rights, the International Covenant on Economic, Social and Cultural Rights, the International Convention on the Elimination of All Forms of Racial Discrimination, the Convention against Torture and Other Cruel, Inhuman or Degrading Treatment or Punishment and the Optional Protocol thereto, the Convention on the Rights of Persons with Disabilities, the International Convention for the Protection of All Persons from Enforced Disappearance, the Optional Protocol to the Convention on the Elimination of All Forms Discrimination against Women, and the Optional Protocols to the Convention on the Rights of the Child", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Reduce the permissible length of administrative detention of asylum seekers, especially children", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "In addition to building new prisons and holding centres, consider non-custodial ways of addressing the issue of mothers in detention or imprisonment, during both pre-trial and post-sentence periods, particularly when mothers are foreigners or illegal residents.", - "values": [ - "3 - Considering action" - ] - }, - { - "text": "Review the Legislative Decrees No. 1094 and No. 1095 to ensure that they are in line with international human rights standards ", - "values": [ - "3 - Considering action" - ] - }, - { - "text": "Take action in order to end extrajudicial killings of persons on the basis of their sexual orientation", - "values": [ - "4 - General action" - ] - }, - { - "text": "Accelerate reforms within the justice sector in order to improve the conditions of judges and strengthen the independence of the judiciary", - "values": [ - "4 - General action" - ] - }, - { - "text": "Adopt a new law on anti-discrimination that makes specific reference to sexual orientation and gender identity", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Develop a national action plan against racism and xenophobia ", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Continue its efforts to prevent children from being subjected to torture and ill-treatment in all circumstances", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Continue to work towards the full abolition of death penalty and consider adopting an immediate de facto moratorium", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Ensure that public hospitals and other health-care facilities and services are both affordable and accessible, in particular making provision for child maternal health services and for the prevention and treatment of preventable diseases", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Bring its legislation in conformity with international law, by decriminalizing consensual same-sex relations between adults and by prohibiting all discrimination based on sexual orientation and gender identity", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Provide gender-sensitive human rights education to all police and military, and try all perpetrators of sexual and gender-based violence, regardless of rank", - "values": [ - "4 - General action" - ] - }, - { - "text": "Harmonize domestic legislation with the Convention on the Rights of the Child ", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Continue enhancing the project and programmes aimed at ensuring the protection and the rights of indigenous communities", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Ensure that all counter-terrorism measures undertaken fully comply with the Constitution, the rule of law and international human rights obligations", - "values": [ - "4 - General action" - ] - }, - { - "text": "Consider amending the General Amnesty Act of 1993 which remains an obstacle to the punishment of serious human rights perpetrators", - "values": [ - "3 - Considering action" - ] - }, - { - "text": "Intensify its efforts in combating domestic violence, in particular, provide sufficient resources to ensure effective implementation of its legislation as well as to raise awareness of women's rights", - "values": [ - "4 - General action" - ] - }, - { - "text": "Establish an immediate formal moratorium on executions and ratify the Second Optional Protocol to the International Covenant on Civil and Political Rights, aiming at the abolition of the death penalty", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Adopt a moratorium on the death penalty, as a primary step towards its abolition", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Take all measures necessary to address all forms of discrimination, including social discrimination and discrimination against children with disabilities in remote areas ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Commute death sentences to prison terms ", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Repeal or amend the Internal Security Act so as to abolish all forms of administrative detention ", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Consider the possibility- speed up the process of ratifying the Optional Protocol to the Convention on the Rights of the Child on the sale of children, child prostitution and child pornography", - "values": [ - "3 - Considering action" - ] - }, - { - "text": "Continue efforts for implementation of the National Strategy for the Inclusion of Roma, Sinti, and Travellers and to further promote Roma inclusion in local communities, with specific regard to providing necessary assistance and support to children and adolescents in the field of education", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Review the current maternity health care policies and introduce the necessary changes to ensure pregnant women's access to medical facilities throughout the country ", - "values": [ - "3 - Considering action" - ] - }, - { - "text": "Increase measures to integrate ethnic Serb and Roma minorities into the fabric of Croatian life, including through a broadcast media campaign to communicate and strengthen themes of reconciliation and tolerance. Such a media campaign could also target the minority communities themselves with messages on how to address some of the issues that perpetuate discrimination, such as Roma-language broadcasts on birth registration, education and health services ", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Continue implementing national policies to ensure socio-political and economic transformation with a human rights perspective ", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Take more effective measures to increase the involvement of the indigenous peoples, minorities and vulnerable groups in the civil service, law enforcement agencies and local authorities", - "values": [ - "4 - General action" - ] - }, - { - "text": "Intensify its efforts to combat all forms of trafficking in women and girls through, inter alia, the adoption of the bill on all forms of trafficking, ensuring that the new law provides for the prosecution and punishment of perpetrators of such acts and the effective protection of victims", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Intensify efforts to promote policies in the area of prevention, sanction and eradication of all forms of violence against women, including measures aimed at promoting their rights regardless of its religion, race, sexual identity or social condition", - "values": [ - "4 - General action" - ] - }, - { - "text": "Ensure that hate crime and violence, racist and xenophobic discourse are investigated, and that the perpetrators are prosecuted", - "values": [ - "4 - General action" - ] - }, - { - "text": "Deepen efforts to strengthen the judiciary, such as the establishment of the commission for the reform of the legislative and the judiciary", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Take concrete and practical measures to protect human rights defenders who, according to a United Nations joint report, have been threatened, attacked and in some cases murdered ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Continue building and strengthening national democratic mechanisms including the judicial institutions, and put in place all necessary institutional mechanisms for protecting the vulnerable population from all kinds of abuses ", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Enact the Women\u2019s Reservation Bill providing for the reservation of seats for women in the parliament and legislative assemblies, in order to enhance the political participation of women", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Continue to strengthen its domestic legal framework to enhance the rule of law and increase the capacity of its law enforcement agencies ", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Enforce the International Covenant on Civil and Political Rights fully and accede to its Second Optional Protocol", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Follow through on the proposal to change the Citizenship Law to provide citizenship automatically to newborn children of non-citizen parents, unless the parents refuse it ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Persevere in its efforts to prevent and combat xenophobia, in particular on the Internet ", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Criminalize all forms of trafficking in children, facilitate access to justice and provide compensation for child victims, and enhance victim protection and assistance ", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Include affirmative measures for women in employment policies and programmes at all governance levels and ensure women's social protection and access to socioeconomic rights", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Continue its socio-economic development plans and take targeted measures to ensure active participation of women in the labour market.", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Address the issue of possible infringements of the right to freedom of expression, not least by evaluating the current legislation and its consequences in the form of high rates of convictions ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Pursue its commitments in the area of international development aid, especially in the area of health and poverty", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Call for and support amending the Law on Migration to comply with ICCPR obligations ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Include in the Criminal Code provisions that refer to the express protection against sexual and gender violence", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Take measures to guarantee effective access to justice and protection for women victims of gender-based violence", - "values": [ - "4 - General action" - ] - }, - { - "text": "Take measures to protect journalists, including through the effective investigation of attacks on members of the profession.", - "values": [ - "4 - General action" - ] - }, - { - "text": "End all public and extrajudicial executions and introduce a moratorium on the death penalty with a view to its abolition ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Provide competencies and budget to the recently established institutions for the defence and guarantee of human rights", - "values": [ - "4 - General action" - ] - }, - { - "text": "Continue to address homophobia and discrimination through better education programmes and ensure that lesbian, gay, bisexual, transgender and intersex people are able to exercise their rights to freedom of expression and assembly", - "values": [ - "4 - General action" - ] - }, - { - "text": "Encourage women's political participation and increase representation of women in decision-making", - "values": [ - "4 - General action" - ] - }, - { - "text": "Increase efforts to establish a national human rights institution NHRI in line with the Paris Principles", - "values": [ - "4 - General action" - ] - }, - { - "text": "Continue reforms to ensure the full independence of judges and the application of fair trial guarantees for everyone", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Take further urgent steps to eradicate de facto discrimination reportedly suffered by various groups, including peoples of African descent in rural and remote areas of the country ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Continue to intensify efforts to strengthen the rule of law and the criminal justice system by developing the capacity of the judicial, legal and security sectors", - "values": [ - "4 - General action" - ] - }, - { - "text": "Take the steps necessary to harmonize other legislation with the Gender Law in order to ensure women's access and participation in decision-making bodies", - "values": [ - "4 - General action" - ] - }, - { - "text": "Follow through on its intent to put a moratorium on the use of the death penalty ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Enact legislation and ensure its effective enforcement to provide for women's right to equal remuneration and their enhanced participation in public decision-making.", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Take the measures necessary to ensure respect for freedom of opinion, expression and assembly, as well as freedom of the press", - "values": [ - "4 - General action" - ] - }, - { - "text": "Continue adopting appropriate measures to secure the human rights of asylum-seekers and irregular migrants ", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Allocate available resources and strengthen the preventive functioning of its national preventive mechanism under the Optional Protocol to the Convention against Torture ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Ratify the Rome Statute as soon as possible", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Continue improving the situation of education ", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Adopt measures to guarantee appropriate financial resources, full independence, and impartiality of the National Commission for Human Rights and the Truth, Justice and Reconciliation Commission to ensure their abilities to deal with complaints and conduct credible, transparent investigations ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Ratify the International Convention on the Protection of the Rights of All Migrant Workers and their Familie", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "The Tunisian authorities are committed to following up and implementing the recommendations made by the two Special Rapporteurs following their visits in order to benefit from their experience and assistance, especially in reviewing relevant Tunisian legislation", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Implement CRC recommendations by setting a national plan to fight trafficking in women and children", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Permit the Special Rapporteur on the rights to freedom of peaceful assembly and of association to travel to Ethiopia to advise the Government ", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Accede to the Rome Statute of the ICC", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Pursue policies aimed at ensuring equal opportunities", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Continue to strengthen its programs to enhance tolerance and multiculturalism, with an aim to eliminate negative perceptions that could lead to discrimination or violence, particularly for women and children", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Give priority to providing access to the right to education in all parts of the country ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Consider the ratification of UNESCO Convention against discrimination in education", - "values": [ - "3 - Considering action" - ] - }, - { - "text": "Introduce automatic prosecution for all acts of domestic violence, if this is not already done. ", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Follow up efforts made to protect children from violence ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Promote greater tolerance and understanding among the majority population about the rights of the Roma community and migrants ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Continue to promote the rights of children by fighting effectively against corporal punishment", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Continue to promote initiatives in defence of international solidarity and equality dialogue at the relevant United Nations organs, with a view to promoting human rights and solidarity among all nations and peoples of goodwill", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Take effective measures to combat racist propaganda and the xenophobic material on the Internet ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Ensure full independence of the judiciary system ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Continue efforts to empower rural and peasant women as part of development programs, including the Green Revolution and Transformation of Agriculture, which aim to ensure food security and reduction of poverty", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Develop support measures for women victims of sexual abuse committed during the war", - "values": [ - "4 - General action" - ] - }, - { - "text": "Considers conducting a broader public education and awareness campaign with the aim of overcoming the negative preconceptions against foreign nationals and immigrants among the Swiss population", - "values": [ - "3 - Considering action" - ] - }, - { - "text": "Continue to formulate the next round of the national strategies for poverty reduction and development", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Focus on economic, social and cultural rights as a first step towards achieving programmes within the framework of the United Nations 2030 Sustainable Development Agenda", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Accelerate efforts in increasing female representation in top positions in the senior public service to 25 per cent by 2011.", - "values": [ - "4 - General action" - ] - }, - { - "text": "Promote Human rights education and trainingof public servants, along with the provision of necessary resources, at all levels. Local government employees, who have the most direct effect on its people, most often lack training in human rights or the resources to meet international standards on human rights", - "values": [ - "4 - General action" - ] - }, - { - "text": "Continue encouraging the right to peaceful assembly in accordance with national legislation", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Persevere in its praiseworthy efforts to promote women's rights, continue to attach high levels of importance to the human rights culture and pursue its dissemination among young generations within the framework of educational programmes.", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Investigate allegations of torture without delay and hold the perpetrators of such violations accountable ", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Push ahead with the reform of the prison system. ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Heed the call of the High Commissioner to launch credible independent investigations into all reliable allegations made to date of violations of international human rights law committed by American forces in Iraq, including extrajudicial killings, summary executions, and other abuses ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Continue its efforts to promote economic, social and cultural rights and intensify national and anti-poverty programmes ", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Continue measures for the promotion and protection of women's rights in particular in the workplace", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Adopt further measures to provide victims of war crimes with effective remedies, including improved access to and affordability of health services and the establishment of psycho-social support centres", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Consider extending a standing invitation to the United Nations special procedures ", - "values": [ - "3 - Considering action" - ] - }, - { - "text": "Share the experiences acquired in the area of business and human rights, especially on remediation and reparation, through its constructive and substantive participation in the intergovernmental working group established by resolution 26/9 of the Human Rights Council", - "values": [ - "4 - General action" - ] - }, - { - "text": "Undertake an awareness raising campaign about the practice of FGM, as encouraged by the National Consultative Forum", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Promote incorporating into the national legislation all the rights protected under the international conventions and covenants, in particular economic, social and cultural rights", - "values": [ - "4 - General action" - ] - }, - { - "text": "Consider ratifying the international instruments in the area of human rights ", - "values": [ - "3 - Considering action" - ] - }, - { - "text": "Strengthen ongoing efforts against domestic violence by establishing adequate monitoring and investigative mechanisms", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Continue its efforts to combat all forms of violence against women and to create conditions of assistance in order to facilitate the protection of victims of violence", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Pay special attention to accessibility and the physical environment of educational establishments in line with the suggestions of the National Council for Children", - "values": [ - "4 - General action" - ] - }, - { - "text": "Further develop efforts in the fight against trafficking in persons, including measures to protect victims. Strengthen efforts for the prevention of labour and sexual exploitation ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Adopt and implement efficient measures to eliminate discrimination on any grounds and against all vulnerable groups, with particular care on indigenous population ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Speed up the process of ratifying the Second Optional Protocol to the International Covenant on Civil and Political Rights, aiming at the abolition of the death penalty", - "values": [ - "4 - General action" - ] - }, - { - "text": "Set up a system collecting and analysing data on violence against women, and ensure that the implementation of legislation and policy concerning all forms of violence against women is effective and appropriately tailored to respond to real-life challenges on the ground", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Install a vetting mechanism to remove persons responsible for serious human rights and child rights violations from the security forces", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Strengthen the legal foundations, including through ratification of relevant international human rights instruments such as the Optional Protocol to the CRC on the Sale of Children, Child Prostitution and Child Pornography", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Adopt all necessary measures to eradicate and eliminate practices and customs which discriminate against women, including stereotypes which undermine their social and legal condition and hinder, at the same time, the implementation of commitments to the CEDAW ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Continue to reinforce policies aimed at improving enrolment rates at primary and secondary schools", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Adopt a comprehensive law on the protection of children and young people", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Continue to strive towards the consolidation of international efforts in the combating of trafficking in human beings, including through educational courses based at the Minsk Centre", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Adopt a comprehensive national action plan to promote and protect women's rights ", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Recognize the competence of the Committee against Torture to examine complaints against Israel.", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Take measures to prevent and address violence against women and girls and ensure that perpetrators are prosecuted and adequately punished", - "values": [ - "4 - General action" - ] - }, - { - "text": "Reconsider the approval of the new provisions that can affect the rights of LGBT people, delinking homosexuality from pederasty, and in any case, avoid that the provisions be applied in a discriminatory form ", - "values": [ - "3 - Considering action" - ] - }, - { - "text": "Guarantee that the implementation of the law on compulsory preschool education for all children, adopted by Parliament on 23 September, covers the Roma as well as other minorities", - "values": [ - "4 - General action" - ] - }, - { - "text": "Speed up the process of ratifying the Optional Protocol to the Convention on the Rights of the Child on the involvement of children in armed conflict", - "values": [ - "4 - General action" - ] - }, - { - "text": "Continue the consolidation of its worthy programmes in health, leading towards universal quality health care for the whole population", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Take necessary measures to separate incarcerated minors from adults ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Adopt necessary measures to avoid criminalization of irregular migration, de-facto indefinite detention without the provision of all legal safeguards for undocumented migrants and asylum seekers ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Continue its national policy in promoting equal opportunity with respect to employment", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Seek international assistance in order to address the challenges of extreme poverty and HIV-AIDS, in particular to ensure the supply of antiretroviral drugs ", - "values": [ - "1 - Minimal action" - ] - }, - { - "text": "Ensure that the cases of violence against women and girls are duly investigated", - "values": [ - "4 - General action" - ] - }, - { - "text": "Continue promoting access to education and the design of public policies aimed at increasing education coverage for girls living in rural areas, in particular indigenous and Afro-Ecuadorian girls", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Consider adopting specific legislation to ensure that children with disabilities are included in education as well as in health systems", - "values": [ - "3 - Considering action" - ] - }, - { - "text": "Consider incorporating into its legislation a definition of discrimination against women", - "values": [ - "3 - Considering action" - ] - }, - { - "text": "Take all appropriate measures to protect people from all forms of sexual violence", - "values": [ - "4 - General action" - ] - }, - { - "text": "Develop and implement a national trafficking plan to combat human trafficking and exploitation, including of women and for the purposes of child labour and domestic work", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Protect persons who are marginalized and most vulnerable from intolerance, xenophobia, and other forms of discrimination", - "values": [ - "4 - General action" - ] - }, - { - "text": "Take concrete measures to eliminate all discrimination against women, improve women representation in leadership positions, and protect women against all forms of violence", - "values": [ - "4 - General action" - ] - }, - { - "text": "Amend laws specific to hate crime and hate speech", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Guarantee that both women and men are equally paid for their services ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Advance its activities aimed at ensuring full realization of the rights of women, children, elderly people and persons with disabilities", - "values": [ - "4 - General action" - ] - }, - { - "text": "Thoroughly and transparently investigate and prosecute all alleged incidents of pressure in the form of harassment and lawsuits of journalists, editors and human rights defenders ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Extend an open invitation to the special procedures of United Nations Human Rights Council", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Adopt the measures necessary to protect and demobilize minors forcibly recruited as combatants, so that those responsible for such acts are brought to justice", - "values": [ - "4 - General action" - ] - }, - { - "text": "Strengthen its preventative anti-trafficking measures and continue to provide support services to victims, particularly for women and children", - "values": [ - "4 - General action" - ] - }, - { - "text": "Continue strengthening efforts to eliminate discrimination, including racial discrimination in education", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Further institutionalize measures to protect and promote the rights of the child", - "values": [ - "4 - General action" - ] - }, - { - "text": "Publicly denounce gender-based violence and ensure the effective prosecution of those responsible for such violence, including members of the armed forces and security forces ", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Continue promoting initiatives in defence of international solidarity and equal dialogue at the relevant United Nations organs, including both the Human Rights Council and the Third Committee of United Nations General Assembly organs with a view to promoting human rights and solidarity among all nations and peoples of good will", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Ratify promptly the Convention on the Rights of Persons with Disabilities", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Adopt legislative and administrative measures that would give greater coverage to the protection of the rights of refugees, asylum seekers and stateless persons", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Strengthen efforts to build the rule of law in Bhutan in accordance with international standards,\nintegrating, alongside these, the principles of Gross National Happiness ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Adopt legislation for the protection of the environment and establish a joint private-public partnership to reduce the environmental impact of tourism on livelihoods and the rights to housing, safe drinking water, health and an adequate standard of life for its inhabitants", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Develop a national plan against racism and discrimination, in accordance with its international obligations", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Hold an independent inquiry into the death in prison of journalist Ogulsapar Muradova in September 2006.", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Publish in the Official Journal all international and regional human rights treaties once they are ratified or acceded to by Benin, for their dissemination", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Guarantee freedom of expression and information through the independence and pluralism of the media and guarantee freedom of association ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Recognize the United Nations Declaration on the Rights of Indigenous Peoples without conditions or reservations", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Continue addressing poverty reduction and social inequality through further development and implementation of relevant programmes and policies", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Take concrete measures to promote and protect the right to freedom of opinion and expression, in accordance with what is stated in article 19 of the Universal Declaration of Human Rights", - "values": [ - "4 - General action" - ] - }, - { - "text": "Step-up efforts aimed at combating and eradicating FGM and other traditional harmful practices", - "values": [ - "4 - General action" - ] - }, - { - "text": "Continue efforts aimed at combating racism, racial discrimination and xenophobia through measures that would lead to harmony", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Guarantee the necessary personal and material resources to protect victims of gender-based violence, especially in emergency situations and as it pertains to the effectiveness of protection orders", - "values": [ - "4 - General action" - ] - }, - { - "text": "Consider introducing forms of administration of justice that respect the traditional justice systems of indigenous people, seeking differentiated access to justice", - "values": [ - "3 - Considering action" - ] - }, - { - "text": "Step up efforts concerning eradication of child labour, especially by means of targeted programs, such as income transfer conditioned on school attendance", - "values": [ - "4 - General action" - ] - }, - { - "text": "Continue to meet the basic needs of vulnerable groups in the country, especially women, children, the elderly and persons with disabilities ", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Reinforce protection against trafficking in persons by adopting specific legislative measures to prevent, combat and punish human trafficking", - "values": [ - "4 - General action" - ] - }, - { - "text": "Pursue the adoption process of the draft bill on the National Human Rights Commission of 2014 with a view to render it fully operational", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Continue the current national debate on the abolition of the death penalty and consider formalizing the de facto moratorium currently observed", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Continue raising awareness of the culture of human rights", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Increase the annual budget as well as set up mechanisms to investigate ways to improve education management and teaching methods ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Take additional measures to fight discrimination against minorities, including the Roma population, as well as homosexuals and persons living with HIV-AIDS.", - "values": [ - "4 - General action" - ] - }, - { - "text": "Ratify and align its national legislation with the Rome Statute", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Cooperate fully and effectively with the United Nations treaty bodies and special procedures and ensure that reports are submitted without delay", - "values": [ - "4 - General action" - ] - }, - { - "text": "Guarantee the right to food for its citizens on an equal basis and put an end to discriminatory food rationing as a tool to control and exert pressure on its people ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Sign the Second Optional Protocol to ICCPR", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Fully implement its commitments under Human Rights Council resolution 30/1", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Further pursue measures for the protection of the rights of women and children", - "values": [ - "4 - General action" - ] - }, - { - "text": "Decriminalise press offenses", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Guarantee the right to freedom of peaceful assembly and association in line with the with the International Covenant on Civil and Political Rights and amend existing legislation that is in violation of it ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Complete the ratification of key international instruments that Sao Tomé and Principe has signed, including the International Covenant on Civil and Political Rights and the International Covenant on Economic, Social and Cultural Rights", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Continue applying its commitment to allocate 0.7 per cent of its GDP to official development assistance and encourage its partners in the European Union and OECD to replicate this good practice.", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Implement measures to improve the human rights situation of refugees and internally displaced persons and safety on the ground by enhancing the capabilities of the Chadian security unit (DIS) and coordination among the United Nations Mission in the Central African Republic and Chad (MINURCAT), United Nations human rights bodies, and NGOs in order to prevent the militarization of refugee camps and violence against aid workers.", - "values": [ - "4 - General action" - ] - }, - { - "text": "Sharing the recommendation by some treaty bodies, establish a parliamentary human rights select committee ", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Enact without delay legislation for the protection of children, such as prohibition of corporal punishment under any circumstances, and to swiftly work towards the ratification of the human rights instruments to which São Tomé and Príncipe has earlier committed itself, namely the International Covenant on Civil and Political Rights, the International Covenant on Economic, Social and Cultural Rights, the International Convention on the Elimination of All Forms of Racial Discrimination, the Convention against Torture, and the Rome Statute of the International Criminal Court", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Continue efforts in improving the health-care system in order to combat mother and child mortality, and assist those suffering from HIV/AIDS", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Continue its positive engagement with OHCHR and other United Nations agencies to fully realize the targets that it has set for itself, especially on children and women's rights.", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Ensure strict implementation of its new legislation on discrimination", - "values": [ - "4 - General action" - ] - }, - { - "text": "Amend its laws on gender equality and explicitly prohibit all forms of discrimination against women by adopting appropriate national legislation ", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Step up efforts to combat all forms of sexual violence against women", - "values": [ - "4 - General action" - ] - }, - { - "text": "Undertake a comprehensive legal and cultural awareness-raising campaign on sexual and gender-based violence including issues such as rape, forced marriage, female genital mutilation and domestic violence", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Ensure, in areas of compact residence of linguistic minorities, conditions for the unhindered use of the native language and to receive education in the mother tongue. ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Continue to implement measures to promote women's participation in society", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Further strengthen law enforcement and the judicial system in the efforts to address impunity, prevent domestic violence, and to protect women and children from trafficking as well as physical and sexual exploitation ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Continue its efforts to look into the establishment of a national human rights institution in accordance with the Paris Principles ", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Bring domestic legislation into line to cooperate with the International Criminal Court", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Take effective measures to improve the general situation in prisons and particularly the conditions under which women and children are detained.", - "values": [ - "4 - General action" - ] - }, - { - "text": "Heighten efforts to promote non-discrimination of any kind, including discrimination on the basis of sexual orientation and gender identity", - "values": [ - "4 - General action" - ] - }, - { - "text": "Strengthen the participation of women in political and private decision-making centres, in particular in the diplomatic and judicial fields", - "values": [ - "4 - General action" - ] - }, - { - "text": "Adopt the draft law on the fight against violence against women", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Continue combating violence against women and children by prohibiting the right to use force and severe corporal punishment of children at home, and effectively enforcing the existing laws in this area, especially the Domestic Violence Prevention and Protection Act", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Ensure greater participation of internally displaced persons in decision-making related to projects affecting them, particularly those concerning access to adequate housing", - "values": [ - "4 - General action" - ] - }, - { - "text": "End the involvement of military personnel in civilian security work, and train police officers to carry out their responsibility to protect the population efficiently and with integrity", - "values": [ - "4 - General action" - ] - }, - { - "text": "Adopt a criminal code which clearly defines a number of criminal offences that affect women and girls, and which includes clear guidelines on enforcement mechanisms, monitoring and coordination bodies, and sanctions for perpetrators", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Take measures to foster an enabling environment for civil society, including by amending the Societies Act to remove the restrictions on the establishment of civil society organizations, eliminate the role of government in civil society organizations, including in appointing State employees to newly established civil society organizations, remove the requirement for Cabinet approval of foreign funding for civil society organizations as well as any other undue restrictions and controls by the Government on them", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Continue its efforts to review the competence of military justice when it comes to trying civilians and to reform the Code of Military Justice accordingly. ", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Effectively investigate all cases of violence against human rights defenders, in order to hold the perpetrators accountable ", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Decriminalize consensual homosexual relations and release those who have been detained for that reason", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Implement measures to investigate and punish discrimination and abuses suffered by girls and adolescents in institutions [as reflected in the concerns of the Special Rapporteur on extreme poverty] in order to ensure their physical integrity and effective access to education", - "values": [ - "4 - General action" - ] - }, - { - "text": "Ensure compliance with international child labour standards, including ILO Convention 182 on the Elimination of the Worst Forms of Child Labour and collaborate with ILO to that effect and implement the relevant recommendations of the Committee on the Rights of the Child and the Human Rights Committee.", - "values": [ - "4 - General action" - ] - }, - { - "text": "Ensure that cases of torture and ill-treatment are effectively investigated and that the perpetrators are prosecuted, and adapt the national definition of torture to that contained in the Convention against Torture ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Ensure that there is a strict respect of the separation of powers and that laws are not applied selectively", - "values": [ - "4 - General action" - ] - }, - { - "text": "Improve domestic mechanisms for the implementation of its international obligations in the field of human rights", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Expeditiously adopt, implement and monitor policies and programmes aimed at combating the sale of children and sexual exploitation and trafficking", - "values": [ - "4 - General action" - ] - }, - { - "text": "Actively combat all indications of inter-ethnic strife, and national and religious intolerance", - "values": [ - "4 - General action" - ] - }, - { - "text": "Continue its efforts to encourage mass media and journalists\u2019 engagement with human rights promotion", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Conduct more active policy against racial discrimination, including putting in place a robust mechanism against racism", - "values": [ - "4 - General action" - ] - }, - { - "text": "Issue a standing invitation to all UN Special Procedures ", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Strengthen awareness of and respect for human rights within the armed forces, police and\njudiciary", - "values": [ - "4 - General action" - ] - }, - { - "text": "Ensure the implementation of the legislation related to the 60 judicial reform measures as established at the end of 2008", - "values": [ - "4 - General action" - ] - }, - { - "text": "Finalize the creation of a national human rights institution and the establishment of an NHRI in full compliance with the Paris Principles (A status)", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Increase the age of marriage to 18 years for both boys and girls and harmonize legislation to this effect", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Implement ongoing national policies to guarantee quality education to the multi-ethnic people", - "values": [ - "4 - General action" - ] - }, - { - "text": "Adopt better measures on discrimination against migrants and non-citizens", - "values": [ - "4 - General action" - ] - }, - { - "text": "Ensure equality between men and women, including in parents' rights and property's rights", - "values": [ - "4 - General action" - ] - }, - { - "text": "Ensure that the legal definition of torture is in line with Convention against Torture", - "values": [ - "4 - General action" - ] - }, - { - "text": "Implement effectively the Human Rights Action Plan and other national action plans, including on the elimination of discrimination against women and on the rights of persons with disabilities", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Study, with a view to withdraw, its reservation to article 4 of the International Convention on the Elimination of All Forms of Racial Discrimination.", - "values": [ - "3 - Considering action" - ] - }, - { - "text": "Consider, especially, the access of the most disadvantaged groups to health centers and services, particularly in the case of asylum seekers and migrants ", - "values": [ - "3 - Considering action" - ] - }, - { - "text": "Set measurable objectives and allocate the necessary resources to ensure the effective implementation of the national Roma integration strategy, including with respect to existing initiatives in the various regions aimed at preventing the segregation of Roma children in schools ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Continue in its endeavours to consistently address the skills development and training needs of Aboriginal peoples to ensure access to sustained decent work ", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Implement inclusive education programming for students with disabilities in the general education system ", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Proceed to the review of the Bill of Rights Act of 1990 in order to incorporate ratified international agreements on economic, social and cultural rights ", - "values": [ - "3 - Considering action" - ] - }, - { - "text": "Guarantee the end of the unwarranted use of prisons for the management of persons with disabilities", - "values": [ - "4 - General action" - ] - }, - { - "text": "Strengthen the oversight of Polish companies operating abroad with regard to any negative impact their activities might have on the enjoyment of human rights, particularly in conflict areas, including situations of foreign occupation, where there are heightened risks of human rights abuses", - "values": [ - "4 - General action" - ] - }, - { - "text": "Ensure full respect for freedom of association, by lifting restrictions that limit the free exercise thereof ", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Consider taking specific steps towards accession to the migrant workers' rights convention or the ICRMW", - "values": [ - "3 - Considering action" - ] - }, - { - "text": "Ensure that business companies, particularly those working in mining, respect the human rights, following the guiding principles on business and human rights", - "values": [ - "4 - General action" - ] - }, - { - "text": "Support efforts to create safe places for women who have been victims of gender-based violence", - "values": [ - "4 - General action" - ] - }, - { - "text": "Steadily implement the National Strategy for the Advancement of Women ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Comply with the provisions of the international conventions it has freely ratified, in particular those relating to women, children and the prohibition of torture", - "values": [ - "4 - General action" - ] - }, - { - "text": "Continue adopting measures to respect and protect the rights and human dignity of detainees", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Improve living conditions of inmates and carry out rehabilitation plans in penitentiaries", - "values": [ - "4 - General action" - ] - }, - { - "text": "Continue the momentum on the provision of quality goods and services, especially in education and health and in the disadvantaged areas that are difficult to access and those with a high preponderance of minorities.", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Put in place an independent police complaints commission ", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Strengthen the Special Investigation Unit of the State General Prosecutor's Office to ensure thorough and independent investigations of all allegations of police violence ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Poland is also committed to continuing actions to reduce poverty and social exclusion, which will remain a priority in our national social policy. Poland indicated that a new national programme on social security and social integration for 2008-2010, now under preparation, will strengthen assistance to families for the purpose of counteracting poverty and social exclusion of children. These actions are meant to equalize the opportunities of families and children, i.e. to eliminate educational deficits and improve access to services that will enable parents to reconcile their professional activities with the upbringing of children. In addition, the national programme will determine specific goals, including, in particular, lowering the poverty index and the index of poverty risk among children to achieve that the following actions will be undertaken by Poland: 1/ Improvement of family incomes 2/ Development of the child day-care service system 3/ Levelling educational opportunities of and support for school-age children from poor Families 4/ Consolidating the system of assistance to families, family counselling, improvement of income support 5/ The development of cooperation with non-governmental organizations will also contribute to the effective combating of poverty and social exclusion", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Increase efforts to harmonize domestic legislation with the Convention on the Rights of the Child ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Continue its policies and efforts to further promote and protect women's rights", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Take measures to address discrimination against persons belonging to the Batwa minority and improve their socioeconomic situation by ensuring their active participation in all decisions which affect them ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Extend an open invitation to the special procedures of the Human Rights Council and allow them to visit the country", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Consider ratification of or accession to core international human rights conventions, to which Malaysia is not yet a party, including the ICRMW", - "values": [ - "3 - Considering action" - ] - }, - { - "text": "Step up efforts to provide assistance to victims of trafficking and bring provisions of the Criminal Code, related to human trafficking, in conformity with the Council of Europe Convention on Action against Trafficking in Human Beings and recommendations of the Group of Experts on Action against Trafficking in Human Beings ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Adopt the necessary measures to establish a national human rights institution in accordance with the Paris Principles", - "values": [ - "4 - General action" - ] - }, - { - "text": "Take concrete measures to increase access to education and health for all, particularly for the vulnerable segments of society, including women and children in rural and remote areas.", - "values": [ - "4 - General action" - ] - }, - { - "text": "Accelerate its efforts to achieve the MDGs", - "values": [ - "4 - General action" - ] - }, - { - "text": "Consider adopting a national plan to combat trafficking in persons in the context of the measures taken to promote and protect the rights of women and children", - "values": [ - "3 - Considering action" - ] - }, - { - "text": "Continue to prioritize efforts to prevent and tackle violence against women, and work with relevant stakeholders to strengthen the national victim support system", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Review all work under the European Union twinning programme in the prison system and agree to its next steps in order to urgently address: occurrences of ill-treatment (both by police and in prisons), prisoner violence, prison overcrowding, detention facility conditions as well as prison health care and staffing levels", - "values": [ - "3 - Considering action" - ] - }, - { - "text": "End the blockade in the Gaza Strip and guarantee full access of the Palestinian population to all basic services.", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Ensure free movement of all citizens and refrain from punishing those who return or are involuntarily returned to the Democratic People's Republic of Korea from abroad", - "values": [ - "4 - General action" - ] - }, - { - "text": "Ensure that the law is strengthened to also tackle impunity for crimes of sexual exploitation and sale of children.", - "values": [ - "4 - General action" - ] - }, - { - "text": "Increase efforts to protect the rights of vulnerable groups, particularly women and children", - "values": [ - "4 - General action" - ] - }, - { - "text": "Pursue its efforts in order to complement its commitments towards the promotion and protection of human rights by ratifying the relevant international instruments and, in particular, the 1960 UNESCO Convention Against Discrimination in Education ", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Adopt necessary legal amendments to the Code of Criminal Procedure and Criminal Code to make its new Law on Domestic Violence fully enforceable and to achieve that law's primary aim, namely to protect victims from violence", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Consider adhering to the Second Optional Protocol to the International Covenant on Civil and Political Rights aiming at the abolition of the death penalty ", - "values": [ - "3 - Considering action" - ] - }, - { - "text": "Continue to implement the National Roma Integration Strategy, while addressing areas for improvement noted in the European Commission's 2014 assessment of progress", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Criminalise domestic violence and adequately investigate and sanctioning those responsible for the death and disappearance of indigenous women", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Guarantee without delay to all detainees appropriate detention conditions and access to medical care and engage in substantive dialogue with ICRC on these issues ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Take effective measures to prevent any form of discrimination and racism ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Sign and ratify the First Optional Protocol to the International Covenant on Civil and Political Rights, Optional Protocol to the International Covenant on Economic, Social and Cultural Rights and the Optional Protocol to Convention against Torture and Other Cruel, Inhuman or Degrading Treatment or Punishment", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Continue its cooperation with the international community in solving humanitarian issues of mutual concern ", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Strengthen programmes for the reintegration of victims of trafficking in society", - "values": [ - "4 - General action" - ] - }, - { - "text": "Take immediate actions to restore peace and the respect of human rights and fundamental freedoms ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Extend the standing invitation to all thematic special procedures", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Continue the efforts to implement plans and programmes for the promotion and protection of human rights of persons that are in conditions of vulnerability", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Take active measures in order to put an immediate end to forced recruitment and use of children in armed conflicts by all factions.", - "values": [ - "4 - General action" - ] - }, - { - "text": "Continue its efforts to combat overcrowding of prisons in order to facilitate the successful reinsertion into society of previously convicted persons ", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Rapidly implement the law on freedom of the press in force since January 2013 ", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Ratify the ICCPR and ICESCR", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Consider ratifying the third Optional Protocol to the Convention on the Rights of the Child (OP-CRC-IC) ", - "values": [ - "3 - Considering action" - ] - }, - { - "text": "Take effective measures to prevent and counter racist and xenophobic discourse against non-citizens", - "values": [ - "4 - General action" - ] - }, - { - "text": "Pursue and strengthen its efforts to improve the situation of minorities, in particular of Roma, and allocate sufficient resources for an effective implementation of the National Roma Integration Strategy", - "values": [ - "4 - General action" - ] - }, - { - "text": "Consider extending a standing invitation to the special procedures of the Human Rights Council ", - "values": [ - "3 - Considering action" - ] - }, - { - "text": "Continue to strengthen its domestic framework and institutions to protect women against violence and promote gender equality ", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Strengthen and where appropriate develop mechanisms to address impunity and incidences particularly of trafficking in persons and gender violence including sexual violence against women and children including through capacity building and technical assistance as requested by the TFG from relevant multilateral and bilateral partners", - "values": [ - "4 - General action" - ] - }, - { - "text": "Conduct a thorough review of criminal justice procedures in order to identify measures to reduce the length of detention without trial", - "values": [ - "3 - Considering action" - ] - }, - { - "text": "Fulfil its intention to develop and adopt a national programme for 2010-2013 to counter the trafficking in persons, and actively cooperate in the international arena on that issue ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Ratify, among other international instruments, the International Convention on the Protection of the Rights of All Migrant Workers and Members of Their Families, the Convention relating to the Status of Stateless Persons and the Convention on the Reduction of Statelessness, and continue its efforts to legalize the situation of persons with "undetermined nationality", guaranteeing their right to nationality", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Take measures as a matter of priority to ensure that the freedom of expression and freedom of press are guaranteed in accordance with international human rights standards", - "values": [ - "4 - General action" - ] - }, - { - "text": "Review the functioning of the penitentiary system in order to ensure that it complies with international standards, including through the prevention and punishment of torture and other cruel or inhuman treatment", - "values": [ - "3 - Considering action" - ] - }, - { - "text": "Ratify OP-ICESCR", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Integrate human rights education into the education system and in the military training institutions", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Extend an open standing invitation to all special procedures, as previously recommended", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Implement laws which facilitate access to justice for women in detention, as well as allow women to inherit land and acquire property", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Take the necessary steps to achieve the total abolition of the death penalty", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Continue to speed up Malaysia's efforts towards accession to the Rome Statute", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Continue with security sector reform to ensure appropriate training and oversight mechanisms are in place", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Make further efforts to prevent all forms of violence against women and girls, in particular sexual abuse and domestic violence, by adopting a comprehensive law to prevent violence against women as well as provide assistance and recovery for victims", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Respond to concerns of the Committee on the Elimination of Racial Discrimination about the participation of Netherlands companies in the extractive industry and in the production of soya and palm oil abroad that have adverse effects on the enjoyment of human rights and the environment", - "values": [ - "4 - General action" - ] - }, - { - "text": "Further improve the conditions of refugees and internally displaced persons by allowing them equal access to health and social services in a sustainable manner, and in coordination with the international community", - "values": [ - "4 - General action" - ] - }, - { - "text": "Take appropriate legislative measures to exclude undocumented stay in Italy as an aggravating circumstance for the purposes of sentencing following a criminal conviction", - "values": [ - "4 - General action" - ] - }, - { - "text": "Reinforce its training programmes for all law enforcement personnel on the absolute prohibition of torture ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Consider amending the Zimbabwe Human Rights Commission legislation in order to bring it in line with the Paris Principles ", - "values": [ - "3 - Considering action" - ] - }, - { - "text": "Speed up the preparation of a national human rights promotion and protection strategy ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Assign the necessary resources to complete the implementation of the Law on the Prevention of ill-treatment in the heart of the family and of the child, particularly in the field of the sensitizing and educating people on countering violence against children", - "values": [ - "4 - General action" - ] - }, - { - "text": "Step up efforts to improve and conserve the environment, including by strengthening the relevant laws and providing the public with the necessary information, education and awareness regarding the impacts of climate change and environmental pollution and degradation ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Continue implementing the Victims and Land Restitution Law", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Immediately and unconditionally release all those who have been detained solely for exercising their rights to freedom of expression and peaceful assembly", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Undertake prompt, effective and impartial investigations into allegations of crimes under international law and human rights violations, in particular sexual and gender-based violence", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Build law enforcement and labour inspection capacity to combat slavery practices, including sexual servitude, and forced child begging, and rehabilitate and integrate victims", - "values": [ - "4 - General action" - ] - }, - { - "text": "Raise the capacity and effectiveness of investigation and prosecution of all allegations of torture and ill-treatment by members of both State security forces and private companies and strengthen legal safeguards available for victims of torture and ill-treatment", - "values": [ - "4 - General action" - ] - }, - { - "text": "Establish clear national guidelines that allow all faiths equal access to registration ", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Ratify without any limiting reservations the Convention on the Elimination of All Forms of Discrimination against Women and its Optional Protocol, as well as repeal all laws that discriminate against women ", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Grant the right to full citizenship to Muslim Rohingya in Rakhine State and allow them to decide their ethnic belonging", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Strengthen its policies and measures for guaranteeing all socioeconomic and cultural rights, and ensure those policies not to impede the full enjoyment of these rights in the context of global and regional financial crisis ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Accelerate and strengthen legislative and educational actions to combat discrimination in all its forms, particularly discrimination on the basis of sex and sexual orientation", - "values": [ - "4 - General action" - ] - }, - { - "text": "Ratify the Optional Protocol to the Convention on the Rights of Persons with Disabilities as well as the Optional Protocol to the Convention against Torture and Other Cruel, Inhuman or Degrading Treatment or Punishment", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Maintain the good inter-ethnic relations model to achieve full reconciliation and integration. To do this, it is recommended to facilitate and promote access to ethnic, religious and political minorities to education, health care, justice, property and public positions", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Continue its efforts to harmonize and consolidate its domestic legislation against all forms of discrimination on the basis of international standards ", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "That legislation in Belarus regarding the registration of non-governmental organizations be streamlined and made less burdensome ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Noting that HIV is one of the greatest maladies affecting the population in Barbados, and as this has a negative impact on the entire country, continue to strengthen capacities to combat the spread of HIV", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Continue its efforts to combat trafficking in persons, including by strengthening the legal framework and ensuring the safety and welfare of victims of trafficking", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Take concrete steps to ensure free and fair elections in 2010, including through full implementation of the electoral Code of Conduct ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Increase awareness of security forces on the respect for human rights during demonstrations, to ensure the right to peaceful assembly and freedom of expression and association", - "values": [ - "4 - General action" - ] - }, - { - "text": "Continue to work to enhance access to water through efficient water resources management with the support and assistance of the international community", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Discontinue criminal proceedings against Palestinian children in military courts and ensure that children are not detained", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Allocate sufficient resources to national institutions responsible for implementing the national strategic plan to eliminate gender-based violence", - "values": [ - "4 - General action" - ] - }, - { - "text": "Continue giving top priority to the issue of unaccompanied asylum seeking minors placed in asylum centres and protecting them from disappearances, including providing the necessary resources, enhancing measures to quickly identify and bolstering previous efforts in this regard ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Give positive consideration to the request to carry out a visit to the country by the Special Rapporteur on the question of the trafficking of persons", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Ensure full implementation of the law increasing the penalty for bride-kidnapping in order to eliminate violence against women, in particular bride-kidnapping of underage girls, polygamous unions and early marriage of girls", - "values": [ - "4 - General action" - ] - }, - { - "text": "Take further steps to ensure the equal protection of the rights of persons in non-traditional family models, such as unmarried partners, cohabitants and same-sex civil partners", - "values": [ - "4 - General action" - ] - }, - { - "text": "Formally accept a request to visit by the Special Rapporteur on extrajudicial, summary or arbitrary executions and issue an invite in 2016", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Take measures to address the issue of prison overcrowding and poor prison conditions, including providing prisoners with access to medical staff and court-appointed counsel, especially in the Challapalca prison where detainees live under extreme climatic conditions.", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Consider withdrawing all reservations to the Convention on the Rights of the Child and those concerning article 15 (2) and article 16 (1) (h) of the Convention on the Elimination of All Forms of Discrimination against Women", - "values": [ - "4 - General action" - ] - }, - { - "text": "Continue working for the promotion and protection of the rights of indigenous peoples, peasants and other persons working in rural areas", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Continue to promote equal opportunities and to fight poverty", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Extend invitations in a timely manner to the Special Procedures thematic mandate holders who have requested to visit the country ", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Introduce a law explicitly prohibiting corporal punishment of children in all settings", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Expand programmes for the promotion of employment, and food assistance activities for vulnerable populations in the framework of the fight against poverty and social inequality ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Continue improving the conditions of children, women, Dalits, indigenous people, refugees and migrants taking into account the special situation and difficulties that those groups have to overcome ", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Develop a national strategy to implement obligations under the Convention on the Elimination of All Forms of Discrimination against Women", - "values": [ - "4 - General action" - ] - }, - { - "text": "Intensify efforts to ratify the Convention on the Rights of Persons with Disabilities ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Ensure that the Non-Discrimination Ombudsman has the necessary information and resources to make decisions related to mandatory deportations, and can ensure that these are carried out respecting the rights of those concerned", - "values": [ - "4 - General action" - ] - }, - { - "text": "Consider the ratification of the Convention on the Prevention and Punishment of the Crime of Genocide ", - "values": [ - "3 - Considering action" - ] - }, - { - "text": "Improve financial supervisory mechanisms to ensure better control and transparency in order to combat corruption and tax evasion", - "values": [ - "4 - General action" - ] - }, - { - "text": "Sign, ratify or accede to the main international human rights instruments, in particular the International Convention for the Protection of All Persons from Enforced Disappearance, the Optional Protocol to the International Covenant on Economic and Social Rights, and the Rome Statute", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Put an end to threats, attacks and deaths of journalists by allowing for comprehensive and impartial investigations", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Implement regulations to protect women from torture and abuse in detention facilities, and hold female criminal offenders separately from men, guarded by female guards ", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Safeguard the rights of refugees and asylum-seeker", - "values": [ - "4 - General action" - ] - }, - { - "text": "Continue to make further inroads towards combating poverty and also ensuring that its population has an affordable access to a steady supply of water", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Amend the Constitution as well as national legislation to ensure that the rights to freedoms of expression, assembly and association be guaranteed without restrictions other than those provided for within the framework of international law", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Increase its efforts to implement the National Plan to Combat Trafficking in Persons", - "values": [ - "4 - General action" - ] - }, - { - "text": "Continue to develop legislation in order to adapt it to the Convention on the Rights of the Child, in particular in areas such as the care of children who are without protection, protection against abuse and sexual exploitation, birth registration, the prohibition of child labour, the minimum age for criminal responsibility and the administration of justice for minors", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Take appropriate measures to fully guarantee the safety of journalists and human rights defenders so that they can carry out their activities without fear of persecution or restriction", - "values": [ - "4 - General action" - ] - }, - { - "text": "Continue its efforts in combatting discrimination of women, particularly in its public policies for immigrant women and refugee women as well as those belonging to minorities, which CEDAW pointed out may be subject to multiple forms of discrimination in respect of education, heath, employment and social and political participation ", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Amend the criminal code in order to ensure that the definition of war crimes of sexual violence is in accordance with international standards and to implement the National War Crimes Strategy", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Take further effective measures to combat violence against women", - "values": [ - "4 - General action" - ] - }, - { - "text": "Continue to improve its legal system and give particular attention to its human rights laws and regulations in order to make them more mutually cohesive.", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Consider ratifying ILO Convention 189 concerning Decent Work for Domestic Workers ", - "values": [ - "3 - Considering action" - ] - }, - { - "text": "Take all necessary measures to reduce the duration of pre-trial detention to conform to international standards. ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Cooperate fully with the independent expert who will be designated by the Human Rights Council", - "values": [ - "4 - General action" - ] - }, - { - "text": "Establish torture as a serious crime punished with appropriate penalties, in keeping with the definition set out in the Convention against Torture", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Consider implementing the recently adopted United Nations Rules for the Treatment of Women Prisoners and Non-custodial Measures for Women Offenders (the Bangkok Rules), and seek necessary support from such relevant agencies as the United Nations Office on Drugs and Crime and OHCHR", - "values": [ - "3 - Considering action" - ] - }, - { - "text": "Continue hosting and sponsoring international conferences to promote a constructive dialogue among the different religions and beliefs ", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Recommended that polygamy be eliminated.", - "values": [ - "4 - General action" - ] - }, - { - "text": "Seek accreditation for the Office of the Ombudsman with the International Coordinating Committee of National Institutions for the Promotion and Protection of Human Rights", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Submit more regularly its reports to the treaty bodies", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Take further steps in enhancing the promotion and protection of the rights of the child, with a view to fully eradicating child homelessness", - "values": [ - "4 - General action" - ] - }, - { - "text": "Establish an effective arrangement for dialogue with representatives of minority groups in order to be properly informed about their problems and needs, and develop policies and programmes to improve their situation", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Further strengthen human rights education and training for the judiciary and law enforcing agencies with the assistance from OHCHR and other relevant international organisations", - "values": [ - "4 - General action" - ] - }, - { - "text": "Make an assessment, by the end of 2016, of the actions undertaken in the framework of the various strategic plans on the protection of women and children", - "values": [ - "3 - Considering action" - ] - }, - { - "text": "Establish a moratorium on the application of the death penalty with a view to its definitive and permanent abolition and commute existing sentences", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Continue retaining the moratorium on the use of the death penalty", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Continue taking necessary measures to observe the balance between exercising individual rights including the right to freedom of opinion and expression, and the protection of rights and interests of others, including in terms of ensuring their security ", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Abolish all limitations with respect to freedom of religion and expression", - "values": [ - "4 - General action" - ] - }, - { - "text": "Adopt all necessary measures against harmful traditional practices violating the rights of the child", - "values": [ - "4 - General action" - ] - }, - { - "text": "Consider abolishing the death penalty, and ratify the Second Optional Protocol to the International Convention on Civil and Political Rights ", - "values": [ - "3 - Considering action" - ] - }, - { - "text": "Consider accepting the Kampala Amendments to the Rome Statute of the International Criminal Court on the crime of aggression", - "values": [ - "3 - Considering action" - ] - }, - { - "text": "Consider the establishment of a moratorium on the use of death penalty with a view to its abolition.", - "values": [ - "3 - Considering action" - ] - }, - { - "text": "Address the problem of domestic violence", - "values": [ - "4 - General action" - ] - }, - { - "text": "Abolish the "arraigo penal" at the federal and state level as it is contrary to international human rights standards ", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Review and if necessary update existing human rights training for police and security forces with the assistance of independent nongovernmental organizations to foster more consistent application of international human rights standards, and ensure that cases of abuse or killings by police are processed in a more timely manner ", - "values": [ - "3 - Considering action" - ] - }, - { - "text": "Take all the necessary measures to fight against impunity for the perpetrators of human rights violations ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Continue the efforts made to ratify the following conventions: International Convention for the Protection of All Persons from Enforced Disappearance, International Convention on the Protection of the Rights of All Migrant Workers and Members of Their Families, and Optional Protocol to the Convention against Torture and Other Cruel, Inhuman or Degrading Treatment or Punishment", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Keep on its endeavours on the development of policies in line with the 2012 General Juvenile System development programme ", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Ensure that children of internally displaced persons, refugees, asylum-seekers and their families enjoy the right to health, education and birth registration without discrimination ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Undertake effective investigation into complaints of torture or ill-treatment and hold all perpetrators accountable", - "values": [ - "4 - General action" - ] - }, - { - "text": "The State is committed to acceding to the Convention on the Rights of Persons with Disabilities.", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Undertake specific measures to ensure the implementation of international United Nations and African human rights conventions, and develop and streamline domestic legislation ensuring the constitutional rights of citizens ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Evaluate measures taken with regard to the action plan concerning combating human trafficking and share its experiences and best practices with the international community ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Further step up efforts with a view to preventing and eliminating trafficking in persons, including considering the possibility of inviting the Special Rapporteur on trafficking in persons, especially women and children ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Accede to the Optional Protocol to the Convention against Torture and Other Cruel, Inhuman or Degrading Treatment or Punishment (OPCAT), establishing its national preventive mechanism accordingly", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Refrain from censoring social and conventional media and ensure that freedom of expression is safeguarded in all forms, including the arts", - "values": [ - "4 - General action" - ] - }, - { - "text": "Allow access to independent observers to centres of detention of migrants which are outside of the Australian territory", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Continue its fight against poverty and the negative impacts of climate change with support from the international community ", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Continue the efforts to reduce the unemployment rate, eradicate poverty, and give priority to the protection and promotion of economic, social and cultural rights of people", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Take concrete measures to fight all forms of violence against women, including by ratifying the Council of Europe Convention on Prevention and Combating Violence against Women and Domestic Violence", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Strengthen measures aimed at improving equal opportunities in the employment area, especially for foreigners ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Allocate and provide all necessary financial, technical and personnel resources to combat impunity and lack of respect for the rule of law, including to combat corruption and impunity within the government's institutions", - "values": [ - "4 - General action" - ] - }, - { - "text": "Become a party to CPED, the Rome Statute of the ICC and the Convention against Discrimination in Education ", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Improve its implementation of the Constitutional Court ruling regarding the use of the Slovenian language in Carinthia province ", - "values": [ - "4 - General action" - ] - }, - { - "text": "More vigorously enhance provisions of human rights education in schools", - "values": [ - "4 - General action" - ] - }, - { - "text": "Strengthen existing law and practice to combat gender-based discrimination and sexual harassment, inter alia, with regard to labour", - "values": [ - "4 - General action" - ] - }, - { - "text": "Support the ongoing process of protection of children and adolescents by raising awareness of the ramifications of illegal migration, and provide for the adequate care and facilities necessary for their repatriation and reintegration into society", - "values": [ - "4 - General action" - ] - }, - { - "text": "Continue to further its efforts to promote and protect the rights of women and children", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Ratify the international human rights instruments, particularly the International Covenant on Economic, Social and Cultural Rights ", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Ensure that CNDHC is brought into conformity with the Paris principles ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Strengthen actions to ensure that the rights of stateless individuals (Bidoun), domestic migrant workers and foreign female workers are protected and stateless children have access to education and health care", - "values": [ - "4 - General action" - ] - }, - { - "text": "Make operational a standing committee to receive complaints and petitions as well as redress cases of human rights violations, including by appointing independent members of the standing committee created to address human rights violation and providing adequate resources, to hold those violators accountable ", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Continue to improve the judicial system to guarantee the rights of those in detention or in prison", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Take immediate steps to guarantee freedom of assembly and association through alignment of national legislation, in particular, the Public Order and Security Act with international standards ", - "values": [ - "4 - General action" - ] - }, - { - "text": "The Government of The Gambia is committed to reducing poverty and has formulated a number of policies and strategies for this cause such as Vision 2020, The Development Strategy and Investment Programme for 2012 to 2015, called the Programme for Accelerated Growth and Employment (PAGE), which is the successor to the Poverty Reduction Strategy Programme II (PRSP II).", - "values": [ - "4 - General action" - ] - }, - { - "text": "Take measures to ensure effective protection of journalists against intimidation together with investigation and punishment of perpetrators of such threats or attacks.", - "values": [ - "4 - General action" - ] - }, - { - "text": "Put in place a comprehensive strategy aimed at eliminating discriminatory stereotypes against women", - "values": [ - "4 - General action" - ] - }, - { - "text": "Continue to implement measures and programmes to promote and protect the rights of children, in particular the right to education and the right to health ", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Repeal the amendment which allows for slavery as a punishment ", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Completely eliminate torture and extrajudicial killings.", - "values": [ - "4 - General action" - ] - }, - { - "text": "Improve the quality of education and increase access to education ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Bring to an end inhumane detention conditions and ensure that all detainees are treated in accordance with international human rights standards ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Establish a formal moratorium on the death penalty and ratify the Second Optional Protocol to the International Covenant on Civil and Political Rights, with a view to abolishing death penalty both in practice and in law", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Continue efforts to combat the trafficking of persons, in particular of women and children, with the prosecution of perpetrators", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "To take additional measures to improve the situation in prisons, including for juveniles ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Facilitate the development, in law and practice, of a safe and enabling environment in which both civil society and human rights defenders can operate free from fear, hindrance and insecurity", - "values": [ - "4 - General action" - ] - }, - { - "text": "Comply with the recommendation accepted in 2010, but not yet implemented, to establish an "Observatory on Human Rights Defenders" in collaboration with organizations that defend human rights in the country ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Continue to take all necessary measures to preserve an overall positive image of refugees and asylum-seekers", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Strengthen the independence and impartiality of the Ombudsman and ensure its full adherence to the Paris Principles", - "values": [ - "4 - General action" - ] - }, - { - "text": "Accede to the Rome Statute of the ICC ", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Actively work towards equal remuneration for men and women by taking credible steps", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Abolish the death penalty and, during an intermediate stage, adoptan immediate moratorium on executions", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Reinforce the institutional mechanisms and establish planning instruments for ensuring equality between women and men", - "values": [ - "4 - General action" - ] - }, - { - "text": "Continue to allocate the required funding for the implementation of projects to increase the integration of human rights into public policies", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Step up the efforts aimed at establishing a National Human Rights Institution ", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Conclude without delay the process of revising the Equality Act", - "values": [ - "3 - Considering action" - ] - }, - { - "text": "Continue taking effective policy and other measures to build a fair and inclusive society", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Adopt concrete measures to implement the National Gender Plan and the National Action Plan on United Nations Security Council resolutions 1325 (2000) and 1820 (2008) and consider the opportunity of adopting a national strategy to combat violence against women ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Give due consideration to the legal abolition of the death penalty as well as to the commutation of all death sentences to terms of imprisonment", - "values": [ - "4 - General action" - ] - }, - { - "text": "Take further measures to boost children's, adolescents' and young people's knowledge of the issue of xenophobia and similar forms of intolerance", - "values": [ - "4 - General action" - ] - }, - { - "text": "Adopt a comprehensive programme on sexual health and reproductive rights based on human rights and WHO standards and allocate sufficient financial and human resources for their implementation ", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Continue consideration of the establishment of a national human rights institution compliant with the Paris Principles", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Continue with the efforts to strengthen access to justice for juveniles in conflict with the law and share best practices with the wider region", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Take effective measures both in terms of institutional building and raising awareness to combat trafficking in persons ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Take effective measures to end the recruitment of children into the armed forces and affiliated armed groups, and also fight the forced recruitment and abduction of children by non-State armed groups ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Continue to strengthen its policy to prevent, combat and punish human trafficking, particularly by providing assistance to victims, regardless of their nationality ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Continue cooperating with the international community to alleviate the effects of the crisis on Syrian citizens", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Ensure freedoms of expression, association and peaceful demonstration, in accordance with the Rwandan Constitution and international law with a view to the electoral cycle", - "values": [ - "4 - General action" - ] - }, - { - "text": "Monitor the impact of reforms aimed at the inclusion of Romani pupils in mainstream schools, with regard to the continued segregation of Roma children from mainstream education", - "values": [ - "4 - General action" - ] - }, - { - "text": "Submit its initial report to the Committee against Torture which is fifteen years overdue ", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Legislation and regulations to ensure occupational safety, health and welfare at work will be formulated to enable ratification of ILO Convention 155. Measures to ensure non-discrimination at work will be continued and initiatives against child labour - especially hazardous child labour - will be enhanced", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Fulfill obligation under the Convention on the Elimination of All Forms of Discrimination against Women, by adopting and implementing legislation prohibiting female genital mutilation", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Continue to consider favourably the visits of Human Rights Council special procedure mandate holders, in particular those who asked to visit the country. consider extending an open-ended and permanent invitation to the special procedures.", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Recommended that discrimination on basis of sexual orientation be also included in the draft antidiscrimination bill.", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Take new measures to ensure effective access to identification documents for all citizens", - "values": [ - "4 - General action" - ] - }, - { - "text": "Sustain its National Action Plan against Racism and All Forms of Discrimination and continue to implement it at all levels", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Promptly put in place the national strategy for the promotion and protection of human rights that integrates the contributions arising from this review ", - "values": [ - "4 - General action" - ] - }, - { - "text": "With regard to ensuring the right to food to the entire population, including in jails and labour camps, cooperate in a constructive manner with the competent United Nations institutions and facilitate the work of NGOs present in the country by guaranteeing their access to the entire population ", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Extend a standing invitation to all special procedure mandate holders to achieve the human rights goals mentioned in resolution 12/9 of the Human Rights Council ", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Continue to pay special attention to issues related to the elimination of discrimination of the Roma who study in the education system", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Effectively promote and protect human rights. ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Accelerate the adoption process of the Law on the Prevention and Punishment of Torture and Enforced Disappearances", - "values": [ - "4 - General action" - ] - }, - { - "text": "Adopt non-discriminatory policies with regard to the realization of civil, political, economic, social and cultural rights of all ethnic and religious communities, without any discrimination", - "values": [ - "4 - General action" - ] - }, - { - "text": "Ensure the right of persons with disabilities to live independently through the development of a national action plan for deinstitutionalization and for the inclusion of persons with disabilities into their communities", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Consider implementing the pertinent recommendations of the Independent Expert on minority issues, with a view to guaranteeing equal treatment of all ethnic groups in the country ", - "values": [ - "3 - Considering action" - ] - }, - { - "text": "Address the issue of marital rape by including the necessary provisions in domestic law", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Adopt measures to impose sanctions that are sufficiently effective and dissuasive on employers who discriminate against trade union activity ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Adopt a national action plan to combat gender-based and sexual violence, which includes raising general awareness through education and training, developing official and credible statistics and ensuring access to justice for victims", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Take necessary measures to ensure that corporal punishment is explicitly prohibited by law under all circumstances ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Continue the implementation of the National Strategy and Plan of Action for the Rights of the Child", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Adopt comprehensive legislation to combat domestic and gender-based violence", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Adopt a moratorium on the use of the death penalty and ratify the Second Optional Protocol to ICCPR with a view to fully abolishing capital punishment ", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Establish appropriate solutions to combat poverty and ensure sustainable development", - "values": [ - "4 - General action" - ] - }, - { - "text": "Continue the democratization process on which it has embarked so courageously.", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Repeal all provisions that give rise to discrimination based on sexual orientation or gender identity ", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Repeal the Printing Presses and Publication Act and take steps to ensure full respect and protection for freedom of opinion and expression", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Intensify its efforts to eradicate illiteracy, especially among women and girls", - "values": [ - "4 - General action" - ] - }, - { - "text": "Continue its endeavours for development and poverty alleviation throughout the country", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Establish, in cooperation with civil society, a detailed strategy with a view to eliminating harmful cultural practices and discriminatory stereotypes against women ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Improve and make clearer the legislation to support the freedom of assembly", - "values": [ - "4 - General action" - ] - }, - { - "text": "That cases of caste-based discriminations be reported, investigated, perpetrators prosecuted and victims of such violence are compensated ", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Further pursue its efforts to establish equal conditions for the participation of men and women in the labour market, including by enhancing the availability of affordable full-day childcare centres and introducing legal entitlements for these services", - "values": [ - "4 - General action" - ] - }, - { - "text": "Enhance its efforts in the area of human rights education, training and awareness for its officials involved in the implementation of the related human rights law and legislation", - "values": [ - "4 - General action" - ] - }, - { - "text": "Establish a de jure moratorium of the death penalty at the federal level and in the military justice, in view of its abolition and as an example for the States that still retain it", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Indonesia is encouraged to consider engaging in further dialogue at the regional and international level, and share best practices, as requested by States during the interactive dialogue", - "values": [ - "3 - Considering action" - ] - }, - { - "text": "Sign and ratify the Optional Protocol to the International Covenant on Economic, Social and Cultural Rights ", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Raise the minimum age of criminal responsibility to 16 and establish a system of juvenile justice ", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Accelerate the process for the building of a mosque in Votanikos, Athens, without further delay ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Remove all restrictions, in law and in practice, which prevent full enjoyment of the rights to freedom of expression and association and create an enabling environment for civil society", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Effectively implement laws concerning sexual and gender-based violence by providing the human, financial and institutional resources necessary and ensure the conformity of domestic laws, policies and practices with the Convention on the Elimination of All Forms of Discrimination against Women", - "values": [ - "4 - General action" - ] - }, - { - "text": "Continue efforts on human rights education in order to guarantee enjoyment of all people of their rights", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Take necessary measures to ensure the right of a child to life and development without discrimination of any kind", - "values": [ - "4 - General action" - ] - }, - { - "text": "Strengthen and implement comprehensive climate change adaptation measures", - "values": [ - "4 - General action" - ] - }, - { - "text": "Amend the Penal Code to decriminalize and eliminate all punitive measures related to termination of pregnancies in cases of rape, incest and severe foetal impairment", - "values": [ - "4 - General action" - ] - }, - { - "text": "Ratify the Second Optional Protocol to the ICCPR", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Condemn strongly hate speech, adequately investigate racist hate speech and racially motivated violence and prosecute the perpetrators", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Amend national legislation to abolish the death penalty so it is completely prohibited, and sign and ratify the Second Optional Protocol to the International Covenant on Civil and Political Rights ", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Ensure the Organ for National Healing, Reconciliation and Integration be able to fully implement its mandates based on truth, reconciliation and forward-looking approaches ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Reinforce measures to ensure the full investigation of allegations of torture, disappearances and arbitrary detention, and that it fully prosecutes and appropriately punishes persons responsible ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Take necessary steps to ensure that law enforcement and security officials are subject to legal oversight and operate in compliance with international human rights standards", - "values": [ - "4 - General action" - ] - }, - { - "text": "Accede to the Rome Statute of the International Criminal Court and to the Agreement on Privileges and Immunities of the Court", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Protect effectively freedom of expression of civil society, in particular for journalists and human rights defenders, so that they can carry out their activities freely without hindrance, intimidation, harassment or risk of condemnation", - "values": [ - "4 - General action" - ] - }, - { - "text": "Fully implement the law on transparency and access to public information", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Ensure that allegations of arbitrary arrest, detention and torture are investigated promptly and thoroughly with suspected perpetrators brought to justice", - "values": [ - "4 - General action" - ] - }, - { - "text": "Guarantee adequate legal protection and rehabilitation of victims of sexual violence", - "values": [ - "4 - General action" - ] - }, - { - "text": "To fight against child mortality, and thus implement Millennium Development Goal number four, in particular by improving children's living conditions and their access to adequate food ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Issue an open and standing invitation to the Special Procedures ", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Continue further realization of the Action Plan for implementation of the National Strategy for Improving the Position of Women and Promoting Gender Equality ", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Simplify the procedure for birth registration and ensure that all children born in its territory are registered and provided with birth certificates, irrespective of the availability of their parents' identity documents or residence permits", - "values": [ - "4 - General action" - ] - }, - { - "text": "Withdraw its reservations to the Convention on the Rights of Persons with Disabilities (CRPD)", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Ensure proper implementation of the legislation on the promotion and protection of the rights, including linguistic rights, of individuals belonging to national minorities", - "values": [ - "4 - General action" - ] - }, - { - "text": "Take further measures to reduce school dropout rates ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Speed up its efforts to ensure the operationalization of the National Human Rights Commission in accordance with the Paris Principles", - "values": [ - "4 - General action" - ] - }, - { - "text": "Amend the Penal Code to criminalize all forms of torture and Cruel, Inhuman or Degrading Treatment comprised in the Convention against Torture ", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Continue to take the necessary steps to prevent incidents of acts of violence with racist and xenophobic reasons by security agents against foreigners, immigrants and asylum seekers and to bring to justice the perpetrators of such acts ", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Take measures to prevent those involved in law enforcement, politics, the Government and civilians in general from being involved in illicit activities with illegal armed combatants.", - "values": [ - "4 - General action" - ] - }, - { - "text": "The Government of Bosnia and Herzegovina restrict the transfer of jurisdictions to the two entities, thus preventing further fragmentation of the judiciary in Bosnia and Herzegovina", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Continue the process of reforming the judicial system, in keeping with the provisions of the new Constitution", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Take necessary measures to effectively combat violence against women and girls and enact legislation on domestic violence", - "values": [ - "4 - General action" - ] - }, - { - "text": "Continue and strengthen current efforts to increase the accessibility and quality of health services and education for all its citizens ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Strengthen the enforcement of the Anti-Discrimination Act and the implementation of the Roma Integration Strategy with a view to achieving concrete and measurable progress in fighting all kinds of discrimination in society", - "values": [ - "4 - General action" - ] - }, - { - "text": "Take further action to put in place measures to monitor, detect and condemn manifestations of racism, discrimination and xenophobia and adopt a national plan addressing and combating racism and discrimination against ethnic minorities", - "values": [ - "4 - General action" - ] - }, - { - "text": "Commute without delay all existing death sentences and ratify Second Optional Protocol to the ICCPR ", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Continue efforts to combat all forms of discrimination which may victimize vulnerable groups such as indigenous peoples and the disabled.", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Ensure comprehensive implementation of the international human rights instruments ratified during the past several years", - "values": [ - "4 - General action" - ] - }, - { - "text": "Strengthen the mandate of the Office for Children and guarantee children direct access to a single complaints mechanism and to independent advice and legal assistance for children in a wider range of cases", - "values": [ - "4 - General action" - ] - }, - { - "text": "Take the necessary measures to prohibit the use of corporal punishment against children", - "values": [ - "4 - General action" - ] - }, - { - "text": "Increase funding for NGOs to provide sustainable care to trafficking victims", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Provide adequate human and financial resources for the full implementation of the Action Plan Against Human Trafficking for 2008-2009, to establish specialized services to assist the victims of trafficking, and to decrease the vulnerability of women and girls to trafficking", - "values": [ - "4 - General action" - ] - }, - { - "text": "Adopt necessary legislative and administrative measures to guarantee the security and safety of victims of domestic violence and facilitate their access to justice, legal assistance and medical and physiological care.", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Consider extending a standing invitation to all special procedures", - "values": [ - "3 - Considering action" - ] - }, - { - "text": "Ensure that conscientious objection to military service is available to individuals irrespective of their religion or belief and that the process for consideration applications is under civilian control and to provide a non-punitive civilian alternative service", - "values": [ - "4 - General action" - ] - }, - { - "text": "Reformulate the plan of action to improve the living conditions of the Roma community which began in 2009 in order to ensure that it includes fundamental issues such as the eradication of illiteracy and providing Roma children with inclusive and quality education ", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Develop a strategy and public policies against child neglect and abuse", - "values": [ - "4 - General action" - ] - }, - { - "text": "Accede to the Optional Protocol to the International Covenant on Economic, Social and Cultural Rights ", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Continue the process of constitutional reforms, including consideration of a new Bill of Rights that will, amongst others, guarantee the right to life and the right to non-discrimination on any ground", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Pursue its efforts to establish a human rights commission in accordance with the Paris Principles before its next UPR in 2015 ", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Continue the efforts to ensure full respect for freedom of expression and of the press, in accordance with Albania's international obligations ", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Consider ratifying the Optional Protocol to the International Covenant on Economic, Social and Cultural Rights", - "values": [ - "3 - Considering action" - ] - }, - { - "text": "Improve overall conditions in detention and prison facilities and combat overcrowding in these facilities ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Repeal provisions of the Hadood Ordinances that criminalize non-marital consensual sex and fail to recognize marital rape", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Internationalize the "Milagro" operation to restore vision to people with ophthalmological diseases", - "values": [ - "4 - General action" - ] - }, - { - "text": "Continue to combat all forms of discrimination still faced by women, notably those remaining in the Personal Statute Law in the areas of inheritance and child custody ", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Bring its National Centre for Human Rights into conformity with the principles relating to the status of national institutions for the promotion and protection of human rights ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Continue its efforts to provide development and humanitarian aid to least developed countries", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Intensify efforts in combating domestic violence and violence against Women including through effective implementation of its Principles of Crime Prevention Act", - "values": [ - "4 - General action" - ] - }, - { - "text": "Continue legislative efforts to combat public incitement to racial discrimination and particularly against persons speaking other languages", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Take appropriate measures to ensure the lives and security of journalists and human rights defenders ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Ensure non-selective prosecutions on its territory and a fair trial for persons being prosecuted, in conformity with the standards as under article 14 of the ICCPR, including the right to appeal laid down in paragraph 5 ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Continue to take measures in order to protect the rights of national minorities and their social integration", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Maintain updating the economic model, as a way to preserve the gains achieved by the Cuban people and to continue developing the broad potentials of Cuba and human resources ", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Maintain the minimum age of criminal responsibility and do not lower it", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Continue to strengthen its cooperation with the special procedures of the Human Rights Council by responding positively to the pending visit requests and eventually consider extending a standing invitation to all the special procedures mandate holders", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Continue to increase its social programmes which are essential for the eradication of poverty and social marginalization ", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Sign the Optional Protocol to CAT and the Convention on the Rights of Persons with Disabilities ", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Take concrete steps to increase the representation of women in decision-making bodies ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Finalize and adopt the Sexual Offences Bill currently under consideration. ", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Promote and support programs for the youth ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Reorient the new NGO law to allow the full exercise of the right to freedom of association for both domestic and international organizations, with autonomy and without risk for their continuity", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Carry out investigations into cases of harmful practices against children, ensure that the perpetrators are prosecuted and remove children from environments in which such practices are carried out", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Enact legislation to ensure equal pay for equal work to both men and women in order to maintain gender parity and prevent discrimination based on gender", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Work to ensure equal access to justice across the Kingdom, including by opening offices to provide easily accessible legal advice and referrals in Saba, Bonaire and Sint Eustatius", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Introduce a ban on all corporal punishment of children as recommended by the CRC and other treaty bodies ", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Ratify the Second Optional Protocol to the International Covenant on Civil and Political Rights, aiming at abolition of the death penalty", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Conduct a thorough inventory of laws and regulations to bring to light those that are not in accordance with the right to equality and-or CRPD ", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Take measures to protect freedom of expression and association, by pursuing its reforms of the law on the press and of the Penal Code to bring them into conformity with its fundamental law and international standards, by putting an end to the restrictions on Internet access, and by allowing the free establishment of associations ", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Speed up the process of reviewing and aligning the laws with the Constitution", - "values": [ - "4 - General action" - ] - }, - { - "text": "Define and deploy the necessary resources, particularly human, legislative and financial resources, in order to effectively implement the Lesotho Government's ambitious policy in the field of economic and social rights, particularly with respect to health care and education", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Strengthen efforts in implementing the regulatory media policy to ensure access to information and freedom of opinion and expression, including through capacity-building of relevant parties", - "values": [ - "4 - General action" - ] - }, - { - "text": "Continue efforts to fight poverty.", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Ensure that human rights defenders are able to carry out their legitimate work in a secure and free environment.", - "values": [ - "4 - General action" - ] - }, - { - "text": "Engage in dialogue and offer assistance to the autonomous authorities of the Faroe Islands and Greenland to introduce legislative changes in favour of women's rights and equality", - "values": [ - "4 - General action" - ] - }, - { - "text": "Introduce the necessary measures to ensure full respect for the rights of persons with disabilities and women, as well as persons with a different sexual orientation ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Accelerate its efforts to achieve conformity with the provisions of OP- CAT regarding a national mechanism for the prevention of torture ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Escalate its efforts to eliminate female genital mutilation and instigate relevant legal reforms to facilitate effective prosecutions ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Accede to the human rights treaties to which it is not a party yet, particularly the International Convention on the Protection of the Rights of All Migrant Workers and Members of Their Families ", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "will examine whether to ratify the UNESCO Convention against Discrimination in Education following a study of possible legal implications", - "values": [ - "3 - Considering action" - ] - }, - { - "text": "Continue working actively for the creation of an integrated and permanent national structure to combat trafficking in persons", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Establish effective mechanisms to address the problems faced by street children ", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Continue to place emphasis on the rights of women and children in its policies and programmes", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Step up the application of the existing legislation on gender equality", - "values": [ - "4 - General action" - ] - }, - { - "text": "Give priority to resolving conflicts related to land tenure ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Be more regular in submitting reports to treaty bodies and call, if necessary, for technical assistance in this field", - "values": [ - "4 - General action" - ] - }, - { - "text": "Continue efforts towards achieving a system that provides better protection for children, as well as the promotion and protection of the rights of women ", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Implement its intentions to adopt a national plan of action on the interests of the Roma population ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Continue its policy aimed at diversifying its economy, with the objective of enhancing economic and social rights and the Angolan people's right to development", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Ratify the Convention against Torture and Other Cruel, Inhuman or Degrading Treatment or Punishment and the Convention on the Rights of Persons with Disabilities ", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Develop a simplified, effective birth registration system through which all can access a birth certificate, including a complaints handling mechanism", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Strengthen the National Human Rights Commission of Rwanda by granting it the power to consider human rights complaints", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Set up an inclusive health policy to ensure that, in particular, emergency care is more effective and more accessible for all", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Carry out public awareness campaigns on the negative consequences of the ill-treatment of children to promote positive and non- violent forms of discipline in schools and at home as alternative measures to these punishments", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Conduct, jointly with the Special Procedures of the Human Rights Council, comprehensive and transparent investigations in respect to reported involvement of Czech authorities in secret programmes of CIA on arbitrary detention and secret displacement/transfer of suspects", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Review and adopt relevant legislation and policies, including bills related to caste-based discrimination, the Women's Commission, the Dalit Commission, the rights of indigenous peoples and the rights of the child, to ensure full compliance with international human rights standards ", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Take appropriate measures and develop an action plan while continuing the cooperation with the international community to implement the MDGs, in particular poverty reduction, the right to food and food security ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Continue working towards the creation of a national gender policy", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Develop strategies to increase the share of women in leading positions in business enterprises", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Establish an agile and efficient mechanism to respond to the requests for information formulated by special procedures in their communications (allegations and urgent appeals) and assign the means necessary to grant protection to the people and groups referred to in those communications.", - "values": [ - "4 - General action" - ] - }, - { - "text": "Take steps to issue standing invitations to all special procedures", - "values": [ - "4 - General action" - ] - }, - { - "text": "Adopt and implement efficient measures to protect all children from sexual exploitation, including the ratification of OP-CRC-SC ", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Continue to take steps, in particular within the Action Plan, to combat and prevent violence and to ensure that victims have access to means of protection, that acts of domestic violence are effectively investigated and that perpetrators are brought to justice ", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Safeguard the family institution and matrimony as the conjugal union between a man and a woman, based on the free consent as requested by the human nature and idiosyncrasy of the Ecuadorian people ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Implement awareness-raising and training programmes for school staff and students to create safe educational environments free from discrimination", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Continue efforts to combat discrimination and ethnic profiling", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Work towards the effective implementation of the national development plan that was adopted in March 2012 in its six points", - "values": [ - "4 - General action" - ] - }, - { - "text": "Enhance the implementation of the Law on Ensuring Equality by strengthening the mandate of the Equality Council, including by allowing it to issue binding recommendations and to sanction discrimination, as well as by increasing awareness-raising through education", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Improve prisons and detention facilities, particularly in police establishments ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Continue to implement programmes to improve public access to quality medical and health care services ", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Provide human rights training for officers, and increase the capacity of the Police Complaints Authority to investigate allegations of extrajudicial killings and the use of excessive force by police using prompt and impartial proceedings ", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Ensure the equal access of Afro-Brazilians to poverty reduction policies and social security benefits as a means of protection of their fundamental rights", - "values": [ - "4 - General action" - ] - }, - { - "text": "Take all necessary measures for the capacity building of the NHRC, the respect of its independence and autonomy as well as the implementation of its recommendations ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Fully respect international human rights law and international humanitarian law, in particular the Fourth Geneva Convention on the Protection of Civilian Persons in Time of War, in the OPT", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Continue efforts to prevent and combat the sexual exploitation of children ", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Recognize under criminal law the explicit prohibition of sexual exploitation and abuse of children, as recommended by the Committee on the Rights of the Child. ", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Continue the justice reform process by working out a Justice Sector Reform Strategy for the period after 2016", - "values": [ - "4 - General action" - ] - }, - { - "text": "Consider adopting specific legislation on child rights to ensure the protection of all children without any discrimination", - "values": [ - "4 - General action" - ] - }, - { - "text": "Step up its efforts made to investigate acts of racial aggression and to punish their perpetrators, and attack in a longstanding way the deep causes of this problem in the framework of reforms of justice ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Take measures to ensure the dignity of detainees and their rights to life, liberty and physical and mental integrity", - "values": [ - "4 - General action" - ] - }, - { - "text": "With international support, continue to promote education for all, with special attention to achieving gender parity in school enrollment.", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Apply harsher sentences for sexual violence and child abuse, with a view to strengthening laws on child protection, as well as developing new avenues for making complaints of child abuse, sexual aggression and incest, which are adapted to children", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Take urgent measures to promote gender equality and effectively protect women and children's rights", - "values": [ - "4 - General action" - ] - }, - { - "text": "Enable independent local and international NGOs, including international human rights organizations, to freely register and to operate in accordance with international law and standards", - "values": [ - "4 - General action" - ] - }, - { - "text": "Immediately cease all aerial bombardments over Aleppo", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Consider aligning national laws, including customary laws with the protections outlines in the Constitution of the Kingdom of Swaziland, as well as with the provisions of International Human Rights Instruments to which Swaziland is a party ", - "values": [ - "3 - Considering action" - ] - }, - { - "text": "Put emphasis on this regional task (Asuncion Protocol of 2005 on MERCOSUR) because it will be beneficial for its own process and will also be worthwhile contribution to other member States and will provide a model which other groups of countries can follow, since it is not common for States to work together in an integration model in order to promote human rights.", - "values": [ - "4 - General action" - ] - }, - { - "text": "Strengthen the coordination of federal and provincial mechanisms in order to remove disparities in the implementation of anti-racism legislation, policies, and programmes, and ensure the enjoyment on an equal footing within all provinces and territories of the rights set forth in the International Convention on the Elimination of All Forms of Racial Discrimination (ICERD) including by adopting new federal laws", - "values": [ - "4 - General action" - ] - }, - { - "text": "Combat child labour, including by criminalizing employers who exploit child labour and bringing them to justice", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Consider ratifying ILO Convention N. 169 ", - "values": [ - "3 - Considering action" - ] - }, - { - "text": "Continue its positive resolve in the education sector in line with its National Education Master Plan for 2010 to 2019 ", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Accede to the Convention on the Rights of Persons with Disabilities.", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Pursue initiatives on human rights education, particularly through access to information and promotion of existing protection and redress mechanisms", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Ensure that the Gender Identity Law that is currently before Congress is adopted and implemented", - "values": [ - "4 - General action" - ] - }, - { - "text": "Establish a formal procedure to identify victims of trafficking, search for alternatives to the detention of the victims, and transfer them to the necessary services, including, when pertinent, the asylum procedure", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Albania extended a standing invitation to all special procedure mandate holders and consequently, two Special Rapporteurs visited the country. The Government pledged that it would continue working with the special procedure mandate holders in order to implement their recommendations. ", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Review and amend all legislation placing undue and arbitrary restrictions on the right to freedom of expression, in particular the Sedition Act, the Undesirable Publication Act and the Local Newspapers Order, and put an end to censorship of the media and decriminalize defamation ", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Intensify efforts to improve maternal and child health in the country ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Ratify the Optional Protocol to the Convention against Torture and establish the national torture preventive mechanism", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Ratify OP-CEDAW and establish an overall strategy to eliminate all harmful practices constituting discrimination against women ", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Provide adequate financial and human resources to the information centres established to promote and increase awareness on human rights issues ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Provide with financial resources the Office of the Ombudsman created last year", - "values": [ - "4 - General action" - ] - }, - { - "text": "Strengthen its programmes aimed at providing assistance to women in difficult circumstances, particularly those coming from other countries and who are brought into the territory of Slovakia for the purposes of prostitution.", - "values": [ - "4 - General action" - ] - }, - { - "text": "Restoring security and social cohesion by strengthening the capacity of actors in the criminal justice system", - "values": [ - "4 - General action" - ] - }, - { - "text": "The Government of Kyrgyzstan reopen proceedings related to the events in Nookat and ensure that allegations of torture are investigated and that all evidence obtained trough coercion is disregarded ", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Consider accepting the individual complaint procedure under article 14 of the International Convention on the Elimination of all Forms of Racial Discrimination.", - "values": [ - "3 - Considering action" - ] - }, - { - "text": "Continue to fulfil its obligations under the international human rights instruments", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Abolish immediately the death penalty", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "That violations against human rights defenders, journalists and students are effectively investigated in order to bring those liable to justice ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Provide demobilized children with assistance and penalize those persons responsible for military recruitment of children ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Implement fully the 1997 Constitution and the rights that it enshrines, including allowing independent political parties and non-government organizations to function freely ", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Maintain its efforts to continue reaching a higher level of human rights standards with regard to the issues of freedom of the media, functioning of the judiciary and the situation of refugees.", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Improve conditions of detention in prisons ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Expedite the establishment of an independent national human rights institution in line with the Paris Principles", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Issue an immediate moratorium on the use of the death penalty, particularly in instances of mass trials", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Ratify and fully implement the Convention against Torture and its Optional Protocol, and the Optional Protocol to the Convention on the Elimination of All Forms of Discrimination against Women", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Continue the efforts to implement the judicial sector reform", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Continue its efforts aimed at eradicating poverty and extreme poverty, with a special attention to rural areas", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Continue extending the free nine years compulsory education programme to twelve years so as to ensure access to education for all its young citizens", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Adopt legislation criminalizing female genital mutilation ", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Consider ratifying the Convention against Torture and its Optional Protocol, and the International Convention for the Protection of All Persons from Enforced Disappearance", - "values": [ - "3 - Considering action" - ] - }, - { - "text": "Carry out work on the promotion of racial, national and religious tolerance, especially among youth ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Pursue and strengthen efforts to combat social practices harmful to women, in particular female genital mutilation but also all other violence against them as well as discrimination in their access to rights in general ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Provide appropriate solutions to the significant decline in the rate of school attendance in secondary education, especially among girls", - "values": [ - "4 - General action" - ] - }, - { - "text": "Accelerate the implementation of its new legislation and intensify its law enforcement efforts targeted at combating all forms of human trafficking and slavery ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Take further action so as to completely abolish the death penalty after lifting in 2014 its de facto moratorium imposed in 2011", - "values": [ - "4 - General action" - ] - }, - { - "text": "Strengthen the legislative and institutional framework for the promotion and protection of rights of indigenous peoples, in particular to ensure their full participation in society", - "values": [ - "4 - General action" - ] - }, - { - "text": "Circulate and implement the United Nations Rules for the Treatment of Women Prisoners and Non-custodial Measures for Women Offenders (Bangkok Rules) as part of its Law and Justice Sector Plan and seek appropriate assistance from OHCHR and the United Nations Office on Drugs and Crime in its implementation ", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Adopt measures with a view to reducing inequalities between men and women regarding labour conditions, especially remuneration gaps", - "values": [ - "4 - General action" - ] - }, - { - "text": "Extend a standing invitation to all special procedures and respond positively to pending requests for visits ", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Continue the positive steps it has undertaken to establish a national human rights institution based on the Paris Principles ", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Ratify ILO Convention No. 169 on Indigenous and Tribal Peoples in Independent Countries within the term of office of the current government administration ", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Continue its efforts to improve access to health services for indigenous peoples ", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Continue to develop government-sponsored initiatives which focus solely on ending domestic violence and sexual and gender-based violence, particularly through implementing the recommendations of the Taskforce for Action on Sexual Violence and the National Sexual Violence Prevention Plan ", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "In the context of measures taken to counter terrorism, pay closer attention to the right to privacy in the legislative process ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Provide legal aid to child victims and their guardians to strengthen their access to courts", - "values": [ - "4 - General action" - ] - }, - { - "text": "Pursue the necessary measures to promote the principle of equal remuneration between women and men ", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Develop specific legislation on disability matters", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Consider replying favourably to the requests for a visit of the Special Rapporteur on the independence of judges and lawyers and the Independent Expert on minority issues ", - "values": [ - "3 - Considering action" - ] - }, - { - "text": "Investigate all allegations of torture and ill-treatment during interrogations in some detention facilities by the police and security forces", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Prioritise measures to significantly reduce gender-based violence including violence against women and girls", - "values": [ - "4 - General action" - ] - }, - { - "text": "Continue its efforts to further eliminate barriers to the full and effective participation in mainstream society of disabled persons, including children, in particular with regard to education, independent living, accessibility to multimedia and full participation in political and public life", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Consider becoming a party to the remaining core human rights treaties as well", - "values": [ - "3 - Considering action" - ] - }, - { - "text": "Continue to adopt measures to protect the rights of vulnerable groups in rural areas", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Accelerate its efforts to establish a National Human Rights Commission, ensuring its independence and full compliance with the Paris Principles", - "values": [ - "4 - General action" - ] - }, - { - "text": "Intensify efforts in enacting and strengthening appropriate legal framework, which will address gender inequalities, sexual violence and protection of women's rights", - "values": [ - "4 - General action" - ] - }, - { - "text": "Make efforts to maintain the process of introducing legal amendments to protect vulnerable members of society, including children, disabled persons and women, and ensure that the changes are enacted in practice, for example, through the greater representation of women in decision-making processes", - "values": [ - "4 - General action" - ] - }, - { - "text": "Ensure that the fundamental rights to freedom of expression, association and assembly will be guaranteed in the future Constitution, in line with Tunisia's international obligations ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Share its experience on human rights education with countries requesting such need", - "values": [ - "1 - Minimal action" - ] - }, - { - "text": "Study the option of extending the competencies of the German Institute for Human Rights to receive complaints ", - "values": [ - "3 - Considering action" - ] - }, - { - "text": "Continue to pursue social policies upholding the institution of family unit in line with the traditional family values and socioeconomic aspirations of its people", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Consider abolishing the mandatory imposition of life imprisonment for offences committed by children under the age of 18", - "values": [ - "3 - Considering action" - ] - }, - { - "text": "Further guarantee the rights of life, education and health", - "values": [ - "4 - General action" - ] - }, - { - "text": "Adopt measures with a view to combating discrimination and intolerance from which the LGBT population suffers ", - "values": [ - "4 - General action" - ] - }, - { - "text": "The draft press law ought not to be unduly restrictive on freedom of expression.", - "values": [ - "4 - General action" - ] - }, - { - "text": "Designate members of the Supreme Court and the Constitutional Tribunal who are of proven technical ability and are independent of any external influence", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Adopt, as a matter of urgency, a national law against racism, discrimination and xenophobia.", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Continue efforts to safeguard the dignity and protect the rights of foreign workers, including through requisite institutional and legislative measures", - "values": [ - "4 - General action" - ] - }, - { - "text": "Consider taking legislative, policy and educational measures, including awareness-raising measures, to overcome the stigmatisation of the poorest children, including girls and children with disabilities, and to ensure that those children have equal access to high quality education", - "values": [ - "3 - Considering action" - ] - }, - { - "text": "Ratify the UNESCO Convention on the Protection and Promotion of the Diversity of Cultural Expressions ", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Put into effect a more comprehensive approach to protect women and girls from any form of violence, especially by increasing measures aimed at preventing abuses and assisting victims", - "values": [ - "4 - General action" - ] - }, - { - "text": "Continue developing a State policy based on the historical pillars of Argentina's human rights movement: memory, truth and justice", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Redouble efforts to achieve a greater participation of women in remunerated employment, which goes beyond the area of teaching or the education sector, and that includes leadership positions in both the public and private spheres", - "values": [ - "4 - General action" - ] - }, - { - "text": "Conduct an educational awareness campaign among the population in order to eliminate all socioeconomic and legal barriers to facilitate the people of African descent to effectively enjoy their rights", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Review and if necessary modify the legislation to ensure the right of every person not to be discriminated against and in particular for the elimination of any form of discrimination against women.", - "values": [ - "3 - Considering action" - ] - }, - { - "text": "Enforce its anti-slavery legislation and fully guarantee the application of the principle of non-discrimination and ensure the full enjoyment of all human rights by every member of society", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Take steps to ratify [the remaining five core UN human rights treaties namely] the Convention on the Rights of Persons with Disabilities ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Further combat the worst forms of child labour, including trafficking for the purpose of forced labour and prostitution", - "values": [ - "4 - General action" - ] - }, - { - "text": "Extend a moratorium on the death penalty and abolish the death penalty, and ratify the Second Optional Protocol to ICCPR", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "In the area of penitentiary reform, continue making efforts to implement the new social rehabilitation system, to build new prisons as well as to train the security and penitentiary personnel working in the prison centres, which would result in the well-fare of persons deprived of their liberty ", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Continue to work constructively with the United Nations on the implementation of the monitoring and reporting mechanism of Security Council resolution 1612 (2005) on children and armed conflict.", - "values": [ - "1 - Minimal action" - ] - }, - { - "text": "Take immediate and effective time-bound measures to eradicate the forced labour of, or hazardous work, by children ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Continue taking measures to protect the rights of persons with disabilities ", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Provide protection for the family as the natural and fundamental unit of the society", - "values": [ - "4 - General action" - ] - }, - { - "text": "Review its legislation to ensure that restrictions on the freedom of expression do not go beyond those permitted by the ICCPR, even though Kiribati has not yet ratified it ", - "values": [ - "3 - Considering action" - ] - }, - { - "text": "Adopt necessary measures to secure full respect for freedom of expression.", - "values": [ - "4 - General action" - ] - }, - { - "text": "Intensify efforts to combat the dissemination of ideas based on the racial superiority through other media including racist speech by political parties ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Criminalize torture and establish an independent monitoring system of detention places", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Mali pledged to give thorough consideration to all requests for visits addressed by the special procedures", - "values": [ - "3 - Considering action" - ] - }, - { - "text": "Abrogate without delay the legislative and regulatory provisions that discriminate women, and adopt new laws in accordance with the principle of gender equality, as set out by CEDAW, ratified by Swaziland", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Continue to consolidate the process to further strengthen the country's democratization and the Rule of Law, with special focus on human rights", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Implement the National Action Plan Eliminating Sexual and Gender Based Violence and review its laws, policies and practices which perpetuate discrimination against women and girls and their marginalization, in accordance with the Convention on the Elimination of All Forms of Discrimination against Women, to which Kiribati is a party", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Enforce its law on human trafficking to institute a process enabling law enforcement officials to document human trafficking cases and refer victims for assistance to increase efforts to raise public awareness about labour trafficking and to prosecute public officials suspected of trafficking-related complicity", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Intensify efforts to ensure better integration of minorities.", - "values": [ - "4 - General action" - ] - }, - { - "text": "Ratify the Convention relating to the status of stateless persons and the Convention relating to the reduction of statelessness ", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Allow the United Nations special procedures - especially the Working Group on Arbitrary Detention and the Special Rapporteur on torture - to visit the country ", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Step up efforts to combat the overcrowding of prisons, and in particular provide more correctional detention facilities for female prisoners", - "values": [ - "4 - General action" - ] - }, - { - "text": "Continue efforts in protecting the interests of migrant workers, including through appropriate legislative measures ", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Take all appropriate steps to abrogate excessive use of force and extrajudicial killings by armed forces, police and security forces, by combating the impunity of perpetrators having committed such acts, in accordance with international standards of fair trial ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Give priority to facilitating the visits requested by Special Rapporteurs of the Human Rights Council", - "values": [ - "4 - General action" - ] - }, - { - "text": "Ratify the Rome Statute of the International Criminal Court and implement it fully at the national level, and accede to the Agreement on the Privileges and Immunities of the International Criminal Court", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Guarantee the right to freedom of expression in the country, including by putting an end to all acts of intimidation and harassment carried out by security forces against journalists, and by prosecuting those held responsible", - "values": [ - "4 - General action" - ] - }, - { - "text": "Step up efforts to effectively prevent and combat discrimination of persons belonging to national minorities, in particular regarding their access to health care", - "values": [ - "4 - General action" - ] - }, - { - "text": "Develop and implement a comprehensive strategy to protect human rights defenders, including those working on behalf of the rights of lesbian, gay, bisexual and transgender persons and ensure the effective investigation of alleged attacks against human rights defenders.", - "values": [ - "4 - General action" - ] - }, - { - "text": "Strengthen the protection of rights of persons belonging to non-Jewish minorities and to ensure an effective participation of all citizens in political and public affairs", - "values": [ - "4 - General action" - ] - }, - { - "text": "Ratify ILO Conventions Nos. 87, 111, 169 and 189", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Continue maintaining close cooperation and coordination with the United Nations Country Team in the implementation of Zimbabwe United Nations Development Assistance Framework 2012-2015", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Pay attention to inclusion of persons of African descent in its development policies and plans", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Continue to implement programmes aimed at ensuring that all its people have free quality health and education services ", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Take measures to reduce gender imbalance in the legislative and executive branches of Government", - "values": [ - "4 - General action" - ] - }, - { - "text": "Pass legislation that recognizes the rights of indigenous communities to express their opinion and to consultations", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Continue the efforts in the fight against racism, racial discrimination, xenophobia and related forms of intolerance, including mild and underlying forms of racism ", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Seek from the international community, and especially from United Nations programmes and agencies, support for strengthening or, if not already available, for creating capacity-building and technical assistance programmes, especially in the areas of human rights education, child labour, security, assistance to families and communities in fighting the effects of poverty and HIV-AIDS, education and juvenile justice.", - "values": [ - "1 - Minimal action" - ] - }, - { - "text": "Develop and promote programmes to provide access to jobs, education, transportation and public spaces, as well as protection from violence for persons with disabilities", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Conduct an assessment of the national policies on the rights of children and to identify the areas where immediate action may be taken ", - "values": [ - "3 - Considering action" - ] - }, - { - "text": "Adopt measures to decriminalize defamation", - "values": [ - "4 - General action" - ] - }, - { - "text": "Become a State Party to the International Covenant on Civil and Political Rights, the International Covenant on Economic, Social and Cultural Rights, CAT and the Optional Protocol to the Convention against Torture and other Cruel, Inhuman or Degrading Treatment or Punishment, the International Convention on the Protection of the Rights of All Migrant Workers and Members of Their Families, the International Labour Organisation Indigenous and Tribal Peoples, 1989 (No. 169), and the Convention against Discrimination in Education", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Ensure implementation of the laws against corporal punishment by encouraging the reporting of cases and by providing the means for effective investigation and prosecution of perpetrators ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Promote efforts to consolidate the rule of law and its mechanisms", - "values": [ - "4 - General action" - ] - }, - { - "text": "Continue to develop the national health sector, with special focus on access to health for poorer segments of the population", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Adopt an indefinite moratorium on the death penalty and commute current convictions to achieve its total abolition ", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Take all necessary measures to ensure that the Office of the National Ombudsman is totally independent in terms of its funding.", - "values": [ - "4 - General action" - ] - }, - { - "text": "Issue a standing invitation to the special procedures of the United Nations Human Rights Council and enhance its cooperation with all human rights bodies", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Contribute to an acceptable solution for the people living in refugee camps and give particular attention to the elderly and to those who have been separated from their families", - "values": [ - "4 - General action" - ] - }, - { - "text": "Consider signing and ratifying the third OP-CRC-IC", - "values": [ - "3 - Considering action" - ] - }, - { - "text": "Combat impunity", - "values": [ - "4 - General action" - ] - }, - { - "text": "Refrain from evicting Arab residents from their homes in Jerusalem.", - "values": [ - "4 - General action" - ] - }, - { - "text": "Make progress towards the ratification of pending human rights international instruments, including the Optional Protocol to the Convention against Torture and the International Convention for the Protection of All Persons from Enforced Disappearance", - "values": [ - "4 - General action" - ] - }, - { - "text": "Continue its cooperation with the International Criminal Court in order that the perpetrators of human rights violations are held accountable for their actions", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Allocate, if possible, additional resources to the National Identification Office in order to manage their increased workload", - "values": [ - "4 - General action" - ] - }, - { - "text": "Continue to help ethnic groups to increase awareness of their rights and responsibilities so that they can improve their living conditions and better enjoy their rights.", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Ratify the Second Optional Protocol to the International Covenant on Civil and Political Rights.", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Expand its social protection coverage ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Implement the human rights goals adopted in resolution 9-12 of the Human Rights Council ", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Review and abolish all legal provisions that restrict the rights of human rights defenders promoting the rights of the Roma community", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Lift restrictions on the rights to freedom of opinion and expression, and to take steps to promote freedom of the press in all forms of media", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Eliminate the legislation which criminalizes sexual relations among persons of the same sex, as well as all legislation which discriminates on the basis of sexual orientation, particularly in the Aceh province, where since the establishment of the Sharia Law in 2002 these kind of relations are not allowed ", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Continue implementing programmes and measures to improve the enjoyment of the rights to food, education and health, including in the search for the promotion of these rights in the areas that are not under control of the TFG ", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Reinstate a moratorium on executions with a view to the definitive abolition of the death penalty", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Eliminate the practice of forced labour, and criminalise the liability for the labour exploitation", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Guarantee all individuals the right to be tried within reasonable time or released, and introduce alternative punishments to the imprisonment", - "values": [ - "4 - General action" - ] - }, - { - "text": "Continue its efforts to promulgate laws against human trafficking and on domestic workers", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Take all measures that it thinks are appropriate to expand primary education for all children, in rural as well as in urban areas, and make sure that it benefits equally girls and boys", - "values": [ - "4 - General action" - ] - }, - { - "text": "Finalize and implement the road map "free from child labour by 2020 and from its worst forms by 2015" in the near future ", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Increase efforts to integrate a human rights culture into school curricula at all stages of education ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Redouble its efforts to eliminate child labour, and protect children who are vulnerable, especially children living and working in the streets ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Continue its efforts for the ratification of the international legal instruments to which it is not yet a party", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Formulate and implement a public policy for persons with disabilities with a view to protect them from violence and discrimination, and to facilitate their social integration", - "values": [ - "4 - General action" - ] - }, - { - "text": "Enable additional resources to strengthen the Human Rights Commission", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Continue to develop programmes to increase physical accessibility for persons with disabilities and foster their labour inclusion, and in this framework make a specific effort regarding childhood ", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Strengthen its efforts to address domestic violence through appropriate public awareness campaigns and by ensuring that women are made aware of their rights ", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Prevent and combat all forms of discrimination", - "values": [ - "4 - General action" - ] - }, - { - "text": "Pay extra attention to the special needs of women prisoners by considering implementing the Bangkok rules ", - "values": [ - "3 - Considering action" - ] - }, - { - "text": "Continue to provide more concern on discrimination against gender, and also continue its efforts in combating discrimination against women", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Accept the visit request of the Special Rapporteur on freedom of religion or belief, and consider extending a standing invitation to all special procedures mandate holders of the Human Rights Council ", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Take measures to strengthen the freedom and independence of the media, particularly electronic media, and consider removing the registration requirement for independent Internet sites", - "values": [ - "4 - General action" - ] - }, - { - "text": "Explicitly prohibit discrimination against persons with disabilities and discrimination based on religious belief", - "values": [ - "4 - General action" - ] - }, - { - "text": "That official, individualized documents be presented to human rights defenders whose bans are lifted", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Continue to strengthen the enabling environment for the protection and promotion of human rights ", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Implement the recommendations of the Committee on the Rights of the Child, including taking adequate legislative measures to ensure explicit prohibition of sexual exploitation and abuse of children under criminal law, ensuring that children are not criminalized or penalized, and intensify efforts in for implementation of laws and policies protecting children against economic exploitation.", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Institute measures to remove existing structural and legislative barriers for women in the labour market", - "values": [ - "4 - General action" - ] - }, - { - "text": "Ensure, within the mandate of the Department for the Rights of Children and Adolescents of the Ombudsman, that children's rights complaints mechanisms are easily accessible and child-sensitive ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Have the Malawian Law Commission take an expedited approach towards the repeal of the Witchcraft Act", - "values": [ - "4 - General action" - ] - }, - { - "text": "Base itself on the cases of certain countries, such as Brazil, in order to eradicate the vestiges of slavery ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Continue efforts to promote opportunities for persons with disabilities to benefit from development gains", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Intensify measures to prevent and sanction violence against lesbian, gay, bisexual, transgender and intersex persons", - "values": [ - "4 - General action" - ] - }, - { - "text": "Establish a moratorium on executions with a view to abolishing the death penalty.", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "That the National Assembly adopts the draft law to abolish the death penalty ", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Take appropriate measures to bring domestic legislation in line with international human rights standards", - "values": [ - "4 - General action" - ] - }, - { - "text": "Strengthen legislation to combat sexual offences against children and women", - "values": [ - "4 - General action" - ] - }, - { - "text": "Withdraw reservations to the International Covenant on Civil and Political Rights", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Take measures to eliminate discrimination against castes and high degree of poverty suffered by castes.", - "values": [ - "4 - General action" - ] - }, - { - "text": "Reform the criminal procedure in order to avoid frequent delays of preventive detention ", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Strengthen its national mechanisms for the prevention of torture, by considering its accession to the Convention against Torture and Other Cruel, Inhuman or Degrading Treatment or Punishment", - "values": [ - "4 - General action" - ] - }, - { - "text": "Intensify the investigation into the disappearance of Sombath Somphone and accept external assistance in the investigation and make the results publicly known, and investigate in a transparent and credible manner all cases of enforced disappearances", - "values": [ - "4 - General action" - ] - }, - { - "text": "Consider ratifying the International Covenant on Civil and Political Rights and the International Covenant on Economic, Social and Cultural Rights in a timely manner.", - "values": [ - "3 - Considering action" - ] - }, - { - "text": "Adopt the Children's Rights Bill", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Strengthen its policy of promoting gender equality", - "values": [ - "4 - General action" - ] - }, - { - "text": "Speed up the approval process, by the Federal Parliament, of the Convention on Preventing and Combating Violence against Women and Domestic Violence (the Istanbul Convention) and take all the necessary measures to promote women\u2019s rights", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Take measures to avoid human rights abuses by the armed forces and national police personnel during conflicts, including by complying with international norms on the use of lethal force, ensuring that enforcement personnel receive relevant training, and by investigating acts of violence in a timely manner", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Takes steps to strengthen the cooperation with United Nations treaty bodies, including presenting reports as requested by such bodies", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Continue to cooperate with the international community in its effort to further advance democratic society and to improve human rights and the wellbeing of its people in accordance with national priorities as reflected in its development strategies and policies ", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Abide by its international legal obligations, including those under the Fourth Geneva Convention", - "values": [ - "4 - General action" - ] - }, - { - "text": "Continue its efforts to combat discrimination and ensure that manifestations of racial, ethnic and religious hatred are promptly investigated and acted upon accordingly, and in this regard, intensify its efforts in enacting anti-discrimination laws ", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Complete the process of the establishment of a National Human Rights Institution", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Continue current efforts to increase the representation of women in decision-making positions, including in Parliament and in State executive organs", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Continue paying the necessary attention to improve the enjoyment of human rights by persons with disabilities", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Ensure that the Convention against Torture is fully implemented into the national legislation", - "values": [ - "4 - General action" - ] - }, - { - "text": "Consider ratifying OP-CRC-IC, OP-ICESCR as well as the ILO Convention 189 ", - "values": [ - "3 - Considering action" - ] - }, - { - "text": "Continue to implement the legislation on domestic violence and ensure training of law enforcement officials to identify all forms of domestic violence", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Continue to prioritize poverty eradication and policies aimed at promoting the enjoyment of economic, social and cultural rights by its citizens", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Guarantee the physical integrity of all prisoners, improve conditions of detention in accordance with international standards and allow unhindered access by international monitors to all detention facilities ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Consider expediting the ratification of the Convention on the Rights of Persons with Disabilities", - "values": [ - "3 - Considering action" - ] - }, - { - "text": "Gradual consideration be given, with the assistance of OHCHR, to the ratification of some human rights treaties, in particular the International Convention on the Elimination of All Forms of Discrimination against Women ", - "values": [ - "3 - Considering action" - ] - }, - { - "text": "Continue its work to fill the gaps in legislation and national policies that prevent the full implementation of CEDAW ", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Establish expeditious legal remedies that are accessible to women victims of violence and harmful practices, as recommended by the Committee on the Elimination of Discrimination against Women", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Fully combat violence against women, protect and support victims and ensure that perpetrators receive penalties in accordance with the newly enacted law", - "values": [ - "4 - General action" - ] - }, - { - "text": "Protect human rights defenders and journalists from violence and arbitrary arrests, to address impunity for crimes against human rights defenders and journalists and to notify the United Nations Educational, Scientific and Cultural Organization of the status of the judicial inquiry into the murder of journalists ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Adopt and implement a law prohibiting the use of confessions obtained under torture ", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Expedite the process of revising the Criminal Code ensuring that it includes a definition of torture consistent with the Convention against Torture", - "values": [ - "4 - General action" - ] - }, - { - "text": "Continue its efforts in human rights education ", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Strengthen and improve the capacity and independence of the Ombudsman ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Ensure that all measures and policies affecting Roma communities are designed, implemented, monitored and evaluated with their full participation ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Consider the offer by the United Nations High Commissioner for Refugees to provide technical assistance and capacity-building in order to finalize the refugee return chapter and build an effective and efficient asylum system in Croatia", - "values": [ - "3 - Considering action" - ] - }, - { - "text": "Take concrete and practical measures to combat discrimination in schooling and continue the process of reintegration of the Roma into the school system", - "values": [ - "4 - General action" - ] - }, - { - "text": "Ratify the core human rights instruments, including the Convention against Torture and Other Cruel, Inhuman or Degrading Treatment or Punishment ", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Protect, inter alia, the rights of disabled persons, including living conditions in residential and mental health institutions, and promote their social integration.", - "values": [ - "4 - General action" - ] - }, - { - "text": "Revise the Constitution, in accordance with the Convention on the Rights of Persons with Disabilities, to avoid the rejection of naturalization for individuals on the grounds of physical or mental disability ", - "values": [ - "3 - Considering action" - ] - }, - { - "text": "Enhance efforts to reform the prison system and to ensure the protection of the human rights of all detainees", - "values": [ - "4 - General action" - ] - }, - { - "text": "Permit the establishment of independent media outlets ", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Penalize rape, whoever is responsible, including marital rape", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Ratify the Optional Protocol to the Convention against Torture (OPCAT) and ICCPR-OP 1 ", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Report regularly to all human rights treaty bodies ", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Increase efforts to identify and prosecute suspected human traffickers and provide comprehensive services to victims of trafficking", - "values": [ - "4 - General action" - ] - }, - { - "text": "Take the necessary measures to eliminate all forms of discrimination against the immigrant population and step up its efforts to reduce the level of school failure among this population, especially through the creation of two educational tracks, one in French and other Romance languages and one in Germanic languages", - "values": [ - "4 - General action" - ] - }, - { - "text": "Accept, ratify or accede to African Charter on Democracy, Elections and Governance", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Continue to invest in education, not only to maintain the high level of literacy, but also to educate the population in such a way that citizens can articulate and organize their age-old traditions with the requirements of modern urban society, and to train itself to prevent the emergence of new forms of poverty ", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Increase its efforts to raise awareness about domestic violence and encourage victims of domestic violence to report the abuse to the proper authorities ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Prevent acts of torture and ill-treatment of children living in the occupied State of Palestine and eliminate these acts which constitute a flagrant violation of article 37 (a) of the CRC, and article 32 the Fourth Geneva Convention", - "values": [ - "4 - General action" - ] - }, - { - "text": "In line with the Government's commitment to protecting fundamental freedoms of its citizens, review its legislation and practices in order to guarantee the free exercise of the right to assembly and freedom of expression, without any limitations other than those permitted by international law", - "values": [ - "3 - Considering action" - ] - }, - { - "text": "Take additional steps to ensure that national laws and regulations are fully aligned with international standards, with a view to safeguarding freedom of expression and the right to peaceful assembly", - "values": [ - "4 - General action" - ] - }, - { - "text": "Amend those articles of the draft media law and the draft cybercrime law that are inconsistent with international standards of freedom of expression ", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Take steps to further improve judicial procedures to safeguard human rights", - "values": [ - "4 - General action" - ] - }, - { - "text": "Continue providing and allocating more financial resources to implement programmes and activities aimed at combating poverty and hunger", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Launch campaigns to raise public awareness on trafficking in persons ", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Ratify the Convention on the Prevention and Punishment of the Crime of Genocide.", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Take concrete measures to ensure governing authorities are representative of all Somalis including women and minority groups", - "values": [ - "4 - General action" - ] - }, - { - "text": "Pass legislation prohibiting discrimination, including comprehensive prohibitions against discrimination on the grounds of sexual orientation and gender identity", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Strengthen steps to protect children from the worst forms of child labour ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Step up efforts to combat human trafficking including consider the possibility of developing a specific law and a national plan of action, as well as extend an invitation to the Special rapporteur on trafficking in persons, especially in women and children ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Establish an inclusive national dialogue leading to free and fair multiparty elections as soon as possible", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Continue efforts to prevent violence against children and their exploitation in the workplace ", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Intensify its efforts to ratify the Convention against Torture", - "values": [ - "4 - General action" - ] - }, - { - "text": "Implement policies to ensure women's equality with regard to working positions and the home and seek to protect women from all forms of violence", - "values": [ - "4 - General action" - ] - }, - { - "text": "The Government of Guatemala recognizes that there are challenges and obstacles that need to be overcome for the recommendations made by the Human Rights Council in the framework of the universal periodic review to be fully implemented and therefore reiterates its commitment to continue taking action and measures to enhance the promotion and protection of human rights in Guatemala.", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Fully align its national legislation with the Rome Statute of the International Criminal Court and ratify the Agreement on Privileges and Immunities of the Court", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Ratify the Convention on the Rights of Persons with Disabilities and the Optional Protocol thereto as soon as possible ", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Carry out measures to prohibit corporal punishment of children in all settings, including the home", - "values": [ - "4 - General action" - ] - }, - { - "text": "Ensure that appropriate penalties are applied for acts such as female genital mutilation, forced marriages and sexual violence.", - "values": [ - "4 - General action" - ] - }, - { - "text": "Investigate allegations of human rights abuses by all parties in the southern border provinces of Thailand", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Take specific measures to combat harmful practices in law and in practice, bearing in mind the recommendations of the Committee on the Rights of the Child", - "values": [ - "4 - General action" - ] - }, - { - "text": "Immediately establish a de jure moratorium on the death penalty with a view of abolishing it", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Continue strengthening its efforts in the promotion and protection of the rights of vulnerable groups, particularly women and persons with disabilities", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Include women and gender advisors as part of the team of main negotiators and develop a National Plan of Action for the implementation of Security Council resolution 1325 ", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Ensure that the Transitional Judicial Council appointed to reform the justice system operates independently of the government ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Increase the minimum age of criminal responsibility from 12 to 18 years", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Uphold the rights to freedom of expression, assembly and association and allow restrictions only when prescribed by law and in line with international human rights standards", - "values": [ - "4 - General action" - ] - }, - { - "text": "Ratify the Convention 169 of the ILO", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Extend an open invitation to the special procedures ", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Demonstrate a genuine willingness to improve its human rights record by engaging more positively and openly with the international community, including the Special Rapporteur on the situation of human rights, and work constructively with the United Nations system to bring its human rights into line with international standards ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Engage non-governmental organizations on the lesbian, gay, bisexual, transgender and intersex task team and update and implement the national lesbian, gay, bisexual, transgender and intersex strategy", - "values": [ - "4 - General action" - ] - }, - { - "text": "Take action towards the ratification of the Optional Protocol to the Convention against Torture and set up a national prevention mechanism", - "values": [ - "4 - General action" - ] - }, - { - "text": "Continue to take steps in order to ensure the full equality between men and women and to combat all forms of discrimination against women", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Recommended an exchange of respective experiences at the international level on the issue of communication between Governments and civil societies. ", - "values": [ - "1 - Minimal action" - ] - }, - { - "text": "Use temporary special measures in accordance with article 4 paragraph 1 of the CEDAW to achieve substantive equality of women", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Continue to consolidate existing legal and institutional frameworks to further improve the situation of women in society. ", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Take effective steps to put an end to child prostitution, and effectively combat violence against women and gun violence ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Take steps to strengthen and protect women's sexual and reproductive rights in line with CEDAW recommendations, review the national legislation on abortion and enforce the national legislation with regard to access to birth control ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Ensure that all complaints and reports of torture and other ill- treatment are investigated thoroughly by an independent agency, and that those responsible are held to account. Such investigations should be conducted by personnel who are competent, impartial and independent of the alleged perpetrators and the agency they serve", - "values": [ - "4 - General action" - ] - }, - { - "text": "Speed up finalization and adoption of the National Policy and Action Plan on Human Rights, which would provide a concrete national framework for the promotion and protection of human rights in Kenya", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Start medium and long-term development projects in the under-developed regions in order to generate employment and promote national harmony ", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Consider strengthening the Complaints Office of the National Council for Women and the helpline of the National Council for Children, building on past experience and with a view to strengthening the role and effectiveness of these two institutions throughout the Republic", - "values": [ - "3 - Considering action" - ] - }, - { - "text": "Take the measures necessary, in accordance with the recommendation made by CESCR, to strengthen the national health system on the basis of equity and accessibility, guaranteeing essential health services for the entire population, in particular vulnerable groups", - "values": [ - "4 - General action" - ] - }, - { - "text": "Ensure full compatibility of all provisions of Act 779 with its international obligations and allocate the necessary budget to allow for its proper and prompt implementation ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Criminalize female genital mutilation or cutting and spousal rape, and increase the number of public awareness campaigns focused on preventing violence against women and girls, with particular emphasis on rape, domestic violence, and female genital mutilation or cutting", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Step up the process of establishing a national human rights commission in line with the Paris Principles", - "values": [ - "4 - General action" - ] - }, - { - "text": "Begin a consultative process towards adoption of a National Action Plan on business and human rights", - "values": [ - "4 - General action" - ] - }, - { - "text": "Withdraw unconditionally and put an end to the construction of illegal settlements, including the so-called natural growth of existing settlements in the West Bank, especially in and around Jerusalem, and restore other occupied Arab territories", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Extend an open invitation to the Special Rapporteur on Torture to visit the country", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Adopt regulations to operationalize constitutional amendments related to slave labour", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Approve the roadmap on the reduction of emissions resulting from deforestation and forest degradation, on the role of conservation and sustainable forest management and on the reinforcement of forest carbon stocks", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "The parties concerned should promote dialogue and cooperation, with regard to the outcome of the last year's general elections, in order to swiftly normalize the situation and to realize election reform ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Effectively coordinate its efforts to prevent child abuse and provide the needed assistance in that area.", - "values": [ - "4 - General action" - ] - }, - { - "text": "Continue and strengthen efforts to consult with indigenous peoples on decisions that directly or indirectly affect their way of life", - "values": [ - "4 - General action" - ] - }, - { - "text": "Strengthen its National Strategy for Older Persons based on Government resolution 49/2011 ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Officially seek to renew its request for assistance to the OHCHR in this respect and also through the UPR Trust Fund established specifically to assist in the implementation of recommendations emanating from the UPR.", - "values": [ - "1 - Minimal action" - ] - }, - { - "text": "Enhance efforts to increase the educational infrastructure in the poorest provinces", - "values": [ - "4 - General action" - ] - }, - { - "text": "Continue negotiations to reach agreement on pending issues such as border and natural\nresources", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Continue to review the laws on the National Human Rights Commission ", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Pursue efforts to harmonize its national legislation with its international obligations", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Consider withdrawing reservations to article 18 of the International Covenant on Civil and Political Rights", - "values": [ - "3 - Considering action" - ] - }, - { - "text": "Effectively implement the recent legislation on strengthening women rights and adequately fund the newly established National Commission on the Status of Women", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Enhance efforts to implement the National Strategy on Gender Equality and Equity, including addressing the underrepresentation of women in decision-making bodies and eliminating harmful traditional practices", - "values": [ - "4 - General action" - ] - }, - { - "text": "Strengthen work with the European Union and international partners to combat human trafficking, with a policy of prevention as a priority for its 2009-2012 work plan ", - "values": [ - "1 - Minimal action" - ] - }, - { - "text": "Pursue cooperation with international partners and ensure efficient allocation of resources in its endeavour to enhance human rights ", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Introduce alternative measures to pretrial detention for minors wherever possible, develop clear rules for the treatment of minors in police custody, and monitor their effective implementation in practice", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Favourably respond and react to future calls and recommendations of the Ombudswoman, particularly when it comes to the situation of Roma ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Continue its efforts to provide free education for all", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Continue taking strong measures with a view to fully combating sexual exploitation and sale of children.", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Mainstream gender equality policies in the education sector, ensuring that gender issues and sensitivity training become an integral, substantive and mandatory component of all teacher training at all levels", - "values": [ - "4 - General action" - ] - }, - { - "text": "Continue its efforts to ensure the rights to trial without undue delay and to a fair trial", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Redouble its efforts in providing free primary education for its citizens with a view to encouraging children who have been affected by the political crisis to attend primary school", - "values": [ - "4 - General action" - ] - }, - { - "text": "Ensure that the Ombudsman enjoys full autonomy in accordance with the Paris Principle", - "values": [ - "4 - General action" - ] - }, - { - "text": "Strengthen the framework of protection against discrimination through the enactment of a law that prohibits it in all its forms in line with international human rights standards", - "values": [ - "4 - General action" - ] - }, - { - "text": "Develop a mainstreaming strategy for women's rights, to be applied to policies in all fields, with a view to ensure gender equality", - "values": [ - "4 - General action" - ] - }, - { - "text": "Encourage the use of non-custodial options when sentencing or determining pretrial measures involving pregnant prisoners and prisoners with children and where women are detained, put in place policies to ensure that all children are able to maintain contact with their mothers ", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Take all measures necessary to provide adequate access to justice and enhance the protection of its civilian population from violence", - "values": [ - "4 - General action" - ] - }, - { - "text": "Intensify and widen its campaign on the human rights education and awareness creation as well as address the challenges mentioned in its report ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Repeal legislation, in particular article 489 of the Criminal Code, criminalizing consensual sexual conduct between same-sex adults", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Consider positively declaring a moratorium on the application of the death penalty with a view to abolishing it", - "values": [ - "3 - Considering action" - ] - }, - { - "text": "Continue to support initiatives promoting economic rights", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Based on the level of economic and social development, further improve social security of the vulnerable groups including the elderly, women, children and persons with disabilities", - "values": [ - "4 - General action" - ] - }, - { - "text": "Ecuador will continue to contribute to the international protection of human rights on the basis of its national experience and will continue working to further the Human Rights Council's mandate and to promote peace and development.", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Continue taking further measures to eliminate female genital mutilation", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "The Lao PDR will consider signing the Convention against Torture and Other Cruel, Inhuman or Degrading Treatment and Punishment (CAT), ratifying the Convention on the Protection of All Persons from Enforced Disappearance, acceding to human rights conventions and other conventions such as the International Labour Organizations (ILO) conventions, etc.", - "values": [ - "3 - Considering action" - ] - }, - { - "text": "Enact a specific law outlawing racist or xenophobic attitudes and prohibiting the display of racist symbols or signs reflecting a racist ideology in sport", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Continue efforts to eradicate extreme poverty and strengthen the right to health through the community health-care model ", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Further enhance and encourage the political participation of women, including through awareness-raising campaigns ", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Approve the Family Code to enhance the protection of the rights of children, especially with respect to the trafficking in minors", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Equip the national human rights institutions with the necessary resources and capacities to effectively monitor the human rights situation and to independently investigate, provide appeals and redress for alleged human rights violations in relation to the resettlement of communities through the Commune Development Programme", - "values": [ - "4 - General action" - ] - }, - { - "text": "Take measures to improve the condition of religious/ethnic minorities respecting their human rights and ensuring they are not denied the right of citizenship or subject to discrimination, in a manner consistent with international standards", - "values": [ - "4 - General action" - ] - }, - { - "text": "Raise awareness and promote tolerance and diversity in society and to ensure that violent acts, discrimination and hate speech are systematically investigated and the alleged perpetrators prosecuted", - "values": [ - "4 - General action" - ] - }, - { - "text": "Take measures to effectively combat discrimination based on sexual orientation or gender identity", - "values": [ - "4 - General action" - ] - }, - { - "text": "Address the issue of demand in the destination country in order to be successful in the fight against trafficking in persons. ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Enter into a dialogue with the civil society concerned with a view to addressing incidents of unlawful land-grabbing and evictions ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Continue its efforts in combating child destitution and provide care for all street children", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Strengthen ongoing schemes to reduce unemployment, particularly among the youth", - "values": [ - "4 - General action" - ] - }, - { - "text": "Take measures to raise the awareness of its citizens with regard to the rights and judicial procedures in order to improve their access to justice", - "values": [ - "4 - General action" - ] - }, - { - "text": "Work with OHCHR to develop a common core document which, in conjunction with treaty-specific lists of issues, will help streamline treaty reporting, in order to help overcome the burden of treaty reporting ", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Take further proper legislative measures to abolish the death penalty", - "values": [ - "4 - General action" - ] - }, - { - "text": "Continue efforts to achieve full respect for the human rights of women, particularly those related to combating violence and segregation in the labour market, which implies differential access between men and women to occupations and jobs that play a decisive role in the quality of employment offered to women ", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Cooperate more closely with the Committee against Torture especially by setting up a national complaint registration and investigation system and a national preventive mechanism.", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Continue to implement programmes and measures to combat and prevent racism, racial discrimination and xenophobia, and ensure further progress in terms of equal opportunities", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Protect minorities and ensure the full enjoyment of their freedom of religion or belief in accordance with international human rights law", - "values": [ - "4 - General action" - ] - }, - { - "text": "Address the problem of discrimination against minorities and implement the recommendations made by the Or Commission in 2003 in this regard.", - "values": [ - "4 - General action" - ] - }, - { - "text": "Improve the situation of asylum seekers and guarantee their rights to an adequate standard of living and remedy their housing conditions", - "values": [ - "4 - General action" - ] - }, - { - "text": "Favourably consider issuing a standing invitation to the special procedures, which would help to strengthen the relationship between Rwanda and the Council", - "values": [ - "3 - Considering action" - ] - }, - { - "text": "Take the necessary measures to eliminate the vulnerability of girls and women to sexual exploitation", - "values": [ - "4 - General action" - ] - }, - { - "text": "Strengthen the judicial system in compliance with international standards, as planned, which would also lower the high percentage of pre-trial detainees and support the fight against impunity", - "values": [ - "4 - General action" - ] - }, - { - "text": "Strengthen the fight against ritual crimes above all ritual murders", - "values": [ - "4 - General action" - ] - }, - { - "text": "Raise the minimum age of marriage from 14 to 18", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "As announced in its statement, Chile has decided to extend an open invitation to all special procedures of the Human Rights Council", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Redouble efforts to combat violence against women and the worst forms of child labour, and provide shelter services to victims of these crimes", - "values": [ - "4 - General action" - ] - }, - { - "text": "Launch a comprehensive national policy on gender equality and non-discrimination", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Ratify, as soon as possible, the International Convention for the Protection of All Persons from Enforced Disappearance ", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Continue efforts to ensure universal access to quality education and health care", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Intensify efforts to implement all measures for preventing and addressing all forms of violence against children, particularly in institutions", - "values": [ - "4 - General action" - ] - }, - { - "text": "Continue adopting measures to prevent cases of indefinite detention of migrants, and guarantee all their rights ", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Take the necessary steps to complete the establishment of the national human rights institution, and make it fully functional, in line with the Paris Principles ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Ratify the Convention on the Prevention and Punishment of the Crime of Genocide", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Develop more effective programmes to support families, care institutions and foster families by paying special attention to the rights of children and adolescents", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Ratify as soon as possible the third Optional Protocol to the Convention on the Rights of the Child on a communications procedure", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Consider an alternative to indefinite preventive detention such as criminal prosecutions", - "values": [ - "3 - Considering action" - ] - }, - { - "text": "Develop a coordinated national strategy for ensuring the protection of all human rights and civil liberties", - "values": [ - "4 - General action" - ] - }, - { - "text": "Strengthen the measures aimed at accessing health, education and other social services for the Batwa minority in conditions of equality", - "values": [ - "4 - General action" - ] - }, - { - "text": "Eliminate the practice of female genital mutilation ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Uphold and respect the rights of the human person from the moment of conception to natural death ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Implement international human rights instruments which it has already duly ratified", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Generation of statistics disaggregated by gender and age groups for human rights indicators", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Take additional measures in order to reduce the school dropout rate of Arab-Israeli and Bedouin girls and increase the number of these women in higher education institutions", - "values": [ - "4 - General action" - ] - }, - { - "text": "Immediately establish a moratorium on executions with a view to the definite abolition of the death penalty, and commute all death sentences to prison sentences", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Continue consultations on the issue of the United Nations Declaration on the Rights of Indigenous Peoples, with all stakeholders with a view to being able to support the Declaration in the future", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Continue its efforts to protect religious freedom and the rights of minority groups based on its Constitution and other relevant laws", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Continue moving towards establishing a comprehensive unity Government through the Libyan Political Dialogue currently led by the United Nations", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Extend a Standing Invitation to Special Procedures mandate-holders as a way of informing and supporting human rights reforms ", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Sign and ratify the International Covenant on Civil and Political Rights and the Convention against Torture and Other Cruel, Inhuman or Degrading Treatment or Punishment, in line with recommendation accepted in the first cycle of the review", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Step up its efforts to thoroughly investigate all acts of racial violence and punish those responsible appropriately, taking into account that the Committee against torture has expressed concerns about allegations that the authorities' responses to these acts are not always timely or adequate. Also, the Human Rights Committee and the Committee on Economic, Social and Cultural Rights expressed similar concerns ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Prevent and combat trafficking in human beings, by protecting victims and ensuring their access to medical, social, legal and counselling services, by ensuring adequate conditions for the victims to make complaints, and by conducting investigations and punishing those responsible", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Protect and promote freedom of expression, ensure the safety of journalists and promptly respond to alleged violations in this regard", - "values": [ - "4 - General action" - ] - }, - { - "text": "Take steps to ratify the International Covenant on Civil and Political Rights and the International Convention on the Elimination of All Forms of Racial Discrimination", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Continue to strengthen the implementation of laws and policies on freedom of expression and assembly", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Redouble its efforts in the area of wealth distribution and poverty eradication, including by allocating adequate human and financial resources and providing support and material assistance to the vulnerable groups in the rural areas ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Adopt legislation on appointments that would ensure the independence of the Human Rights Commission", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Bring labour law into full compliance with international labour standards, including the freedom of association", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "End the occupation of all Palestinian territories, the Syrian Arab Golan, and the occupied Lebanese territories", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Issue a standing invitation to all special procedures of the Human Rights Council.", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Consider acceding to the remaining major international human rights law instruments", - "values": [ - "3 - Considering action" - ] - }, - { - "text": "Eliminate corporal punishment from Bahamas legislation in accordance with the Convention against Torture and Other Cruel, Inhuman or Degrading Treatment or Punishment and the Convention on the Rights of the Child.", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Ratify the International Convention for the Protection of All Persons from Enforced Disappearance and recognise the competence of the Committee on Enforced Disappearances", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Take all measures necessary to guarantee that cases of harassment and threats against human rights defenders and non-governmental organization activists are investigated and prosecuted appropriately, and that reparation is guaranteed for the victims", - "values": [ - "4 - General action" - ] - }, - { - "text": "Address the status of persons belonging to minorities within Slovakia through greater engagement and effective use of European Union funds, expert level cooperation and strengthening of national procedures.", - "values": [ - "4 - General action" - ] - }, - { - "text": "Accept without prior condition the request for a visit by the Special Rapporteur on extrajudicial, summary or arbitrary executions and cooperate with her fully", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "In order to further strengthen the fulfilment of children\u2019s rights, ratify the Optional Protocol to the Convention on the Rights of the Child on a communications procedure", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Consider, in a progressive manner and with the necessary technical assistance, the ratification of the principal outstanding international human rights instruments ", - "values": [ - "3 - Considering action" - ] - }, - { - "text": "Withdraw the reservations to CEDAW, in particular articles 2(f), 9 and 15 paragraph 2", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Pay attention to the needs of persons living in rural areas, especially women, to ensure that they have access to medical and sanitary services, education and income generating projects", - "values": [ - "4 - General action" - ] - }, - { - "text": "Ensure that the draft bill of the Jaafari Personal Status Law and the Personal Status Law of 1959 guarantee equality with regard to women's human rights in all areas, marriage, divorce, custody and inheritance", - "values": [ - "4 - General action" - ] - }, - { - "text": "Continue efforts to ensure that its domestic legislations are in line with international human rights standards", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Continue to promote women's rights as well as their participation in the society and decision making process", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Enhance efforts to create a safe environment for human rights defenders and journalists", - "values": [ - "4 - General action" - ] - }, - { - "text": "Implement a national plan of action that would strengthen the participation of women in the decision-making level of politics", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Accelerate legislative process to establish a national human rights institution in line with the Paris Principles, availing itself of the support and assistance of the Office of the High Commissioner for Human Rights ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Continue efforts to ensure the voluntary return of refugees while guaranteeing their economic and social integration, and take advantage of the financial and technical assistance available to accompany its efforts ", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "As a follow-up to the recommendation in paragraph 122.38 from the second cycle, amend discriminatory laws and vigilantly counter discrimination against marginalized groups, including women and girls and ethnic and religious minorities, and provide a safe and just environment for all citizens in Pakistan", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Further its efforts to effectively eliminate extrajudicial killings ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Establish a national human rights institution in accordance with the Paris Principles so as to facilitate the application of the main international human rights instruments.", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Continue promoting women's and minorities' access to justice in order to enhance equal opportunities for all citizens", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Develop a plan of action to combat racism", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Implement the announced voluntary commitments and the UPR accepted recommendations", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "With a view to integrating and expanding existing human rights databases to ensure continuous monitoring and transparency of government actions, Brazil undertook and maintains before the UN Human Rights Council, the voluntary commitment to implement a National System of Human Rights Indicators in coordination with public agencies, international organizations, and civil society. ", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Enforce the 2013 Family Safety Act, especially ensuring the full prohibition of sexual harassment and spousal rape", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Complete the process of judicial reform and enact essential legislation such as a new penal code, an anti-corruption law and legislation to guarantee and safeguard the independence and impartiality of the court system, court personnel and judges in accordance with international standards \n\n", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Take measures to guarantee effective access for women victims of gender-based violence to justice, redress and protection ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Continue with its positive steps to curb illicit drug trafficking", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Ensure the promotion of good governance through transparent conduct of public affairs ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Liberia remains committed to protecting all with in its border from politically motivated disappearances.", - "values": [ - "4 - General action" - ] - }, - { - "text": "Continue with the measures aimed at improving the protection and integration of persons with disabilities", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Continue public policies aimed at the reduction of illiteracy rates", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Consider adopting an integrated national human rights action plan as general guidance and a point of reference for various thematic national action plans", - "values": [ - "3 - Considering action" - ] - }, - { - "text": "Ratify the OP-CPRD and the OP-CRC-IC ", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Enhance efforts to establish an independent national human rights institution in accordance with the Paris Principles", - "values": [ - "4 - General action" - ] - }, - { - "text": "Continue to give full attention to this most important issue (domestic violence) and to fully implement the Domestic Violence Act and its roadmap", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Take all necessary measures, using the expertise of the Rapporteur on education, to address the causes of the decreasing school attendance and the high wastage rate, including by making available the necessary funding to provide adequate training for teachers and improve the curricula", - "values": [ - "4 - General action" - ] - }, - { - "text": "Take further steps to promote the rights of women and end all forms of discrimination experienced by the female population of Papua New Guinea ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Sign and/or ratify the OP-CAT, CPED and ICRMW", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "End prosecutions under articles 106 and 110 of the Criminal Code for exercising freedom of expression and peaceful assembly", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Establish a moratorium on the death penalty aiming at its complete abolition in all states", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Establish a programme to monitor places of detention and a human rights training programme for staff working in places of detention.", - "values": [ - "4 - General action" - ] - }, - { - "text": "Ratify the Rome Statute of the ICC and extend an open invitation to the special procedures ", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Continue strengthening its education policy, focusing on the most disadvantaged sectors", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Establish, at the earliest, an action plan aimed at preventing racist assaults, so as to allow members of vulnerable groups to live in security and dignity ", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Continue its current efforts to reinforce the mandate and capacities of the National Human Rights Commission and the anti-corruption commission, particularly in the field of promotion and protection of women's rights", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Amend the legislation to allow the change of the civil identity without need of previous surgery", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Implement effectively the Strategy for Equality between Women and Men covering the period 2014-2020", - "values": [ - "4 - General action" - ] - }, - { - "text": "Accelerate its process to ratify the Rome Statute", - "values": [ - "4 - General action" - ] - }, - { - "text": "Take the necessary measures to decriminalize same-sex consensual relations", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Consider ratifying or acceding to: 1951 Refugee Convention", - "values": [ - "3 - Considering action" - ] - }, - { - "text": "Make sure that adequate information on family planning and the regulation of fertility is publicly available ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Incorporate CAT into domestic law in order to define crimes of torture and incorporate it in the national legislation ", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Introduce a domestic violence bill, improve data collection on domestic violence and strengthen support services, including shelters and legal aid, for victims", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Adopt effective measures to strengthen and guarantee the independence of the Unit for the protection of human rights defenders within the Presidential Commission for Human Rights, and to protect human rights defenders from any further violence.", - "values": [ - "4 - General action" - ] - }, - { - "text": "Strengthen the fight against all forms of discrimination including discrimination based on sexual orientation or gender identity", - "values": [ - "4 - General action" - ] - }, - { - "text": "Review the existing legislation that prohibited the wearing of religious symbols by public school teachers", - "values": [ - "3 - Considering action" - ] - }, - { - "text": "Consider deepening the measures taken for socio-economic promotion of the ethnic minorities", - "values": [ - "3 - Considering action" - ] - }, - { - "text": "Ratify the Optional Protocol to the Convention against Torture and other Cruel, Inhuman or Degrading Treatment or Punishment for the establishment of a National Preventive Mechanism", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Identify and implement legal and procedural machinery to monitor and sanction cases of torture in keeping with national legislation and international commitments ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Continue the dialogue with Haiti and the efforts made to date, with the support of the international community, in order to deal with the migration problems affecting the Dominican Republic ", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Continue its efforts in order to combat discrimination against women and end all forms of discrimination and violence against women, including domestic violence", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Strengthen the protection of minorities through a reform of its criminal code, incorporating offences punishing hate crimes and incitation to hatred as well as through ensuring the effective implementation and adequate resourcing of the Action Plan for the support of the Roma", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Harmonize its national legislation with what has been recommended by Committee on the Elimination of Racial Discrimination ", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Submit outstanding reports to the respective treaty bodies", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Intensify efforts to eliminate discrimination against persons with disabilities with a view to improving their access to employment, social services and education", - "values": [ - "4 - General action" - ] - }, - { - "text": "Continue to provide the enabling environment for the institutions responsible for the promotion and protection of human rights and particularly by establishing a national human rights institution", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Ensure that states' legislation is consistent with the amended Sex Discrimination Act 1984", - "values": [ - "4 - General action" - ] - }, - { - "text": "Sign the Second Optional Protocol to ICCPR (ICCPR-OP2)", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Further efficiently address violence against women, through facilitation of the reporting of domestic and sexual violence and providing support services to victims", - "values": [ - "4 - General action" - ] - }, - { - "text": "Take effective measures to protect persons belonging to minorities, including the Ahmadi community", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Sign and ratify ICRMW ", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Consider signing the Optional Protocol to the Convention against Torture.", - "values": [ - "3 - Considering action" - ] - }, - { - "text": "Take necessary steps to introduce a moratorium on the use of the death penalty at the federal and state levels", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Guarantee genuine freedom of expression to all political leaders and the media, in light of the next elections ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Redouble efforts to seek assistance from its partners, including the United Nations, as the country is confronted with limited capacity in the implementation of many programmes in the field of human rights ", - "values": [ - "1 - Minimal action" - ] - }, - { - "text": "Enhance cooperation with the Human Rights Council by issuing a standing invitation to special procedures and accepting all visits requested by mandate holders ", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Halt all public executions, and intensify efforts to ensure that no detainee is subject to torture or cruel, inhuman or degrading treatment or punishment ", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Start implementing the plan of action for peace, justice and reconciliation", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Continue the efforts to promote in the international agenda the issue of the fight against trafficking in persons", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Take concrete measures for the improvement of the electoral process, including enhancing the transparency of voters' lists and preventing election violence and intimidation and creating an environment for free election campaigning", - "values": [ - "4 - General action" - ] - }, - { - "text": "Take the measures required to arrange a visit to the country as soon as possible by the Special Rapporteur on the independence of judges and lawyers to the country", - "values": [ - "4 - General action" - ] - }, - { - "text": "Amend the statute of limitations to be in line with international law as codified in the UN Basic Principles and Guidelines ", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Take all possible efforts to strengthen protection for women and children against discrimination and violence", - "values": [ - "4 - General action" - ] - }, - { - "text": "Establish shelters and provide further social services for victims of domestic violence", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Remove restrictions on freedom of expression under article 26 of the Constitution", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Take all necessary measures to improve court proceedings to guarantee the right of detainees to a fair trial within a reasonable time", - "values": [ - "4 - General action" - ] - }, - { - "text": "Improve overall conditions of detention and prison facilities, and to combat overcrowding ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Investigate all human rights violations committed by security forces in 2009, and establish reparation mechanisms for victims ", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Ensure that the national legislation is in line with the obligations of the Convention on the Rights of Persons with Disabilities and its Optional Protocol", - "values": [ - "4 - General action" - ] - }, - { - "text": "Take all the necessary measures including law reform initiatives to eliminate violence against children in all its forms, including corporal punishment", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Undertake a gender revision of and amend all laws regulating property rights with a view to ensure equal land and property entitlements for women and men", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Cease violence against civilians immediately and enter into good faith negotiations on a political solution to the conflict", - "values": [ - "4 - General action" - ] - }, - { - "text": "Heed the call by the Committee on the Rights of the Child to regularize the status of children of same-sex couples and ensure their protection against discrimination", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Accelerate its efforts to establish the national human rights institution in line with the Paris Principles ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Extend an open and standing invitation to the mandate holders of the United Nations special procedures", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Ensure progressive enjoyment of the right to health", - "values": [ - "4 - General action" - ] - }, - { - "text": "Make the necessary efforts to improve the specific conditions of persons with disabilities in order to improve their life, stability and integration within society. ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Implement the mechanisms for guaranteeing the legal residency of minorities living in Slovenia to ensure that they have access to essential services and employment opportunities", - "values": [ - "4 - General action" - ] - }, - { - "text": "Adapt the integration measures by taking into account the current migration situation in order to prevent cases of intolerance on the grounds of religion and of ethnic belonging", - "values": [ - "4 - General action" - ] - }, - { - "text": "Withdraw the reservations to the Convention on the Elimination of All Forms of Discrimination against Women", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Continue the reform of the judiciary to ensure independence and impartiality of the tribunals", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Further strengthen measures to fully eliminate torture and all forms of ill-treatment at every level, including by establishing a national preventive mechanism", - "values": [ - "4 - General action" - ] - }, - { - "text": "Repeal all discriminatory legal provisions such as granting citizenship on the basis of ethnicity or race and providing for different citizenship categories", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Enact a law on comprehensive protection of the rights of the child and of adolescents, which guarantees greater stability in the promotion and protection of these rights", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Put an end to the occupation of all occupied Arab land, including East Jerusalem and the Golan Heights", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Prohibit explicitly in legislation corporal punishment of children in all places, including at home, in schools, criminal institutions and alternative care centres", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Take additional measures to stop domestic violence, to extend legal equality to all women, in all areas of law ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Abolish the provisions which allow the rapist to escape from prosecution by marrying the victim ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Continue to combat gender-based violence", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Ensure that women's rights are protected, through effective implementation of existing laws, the development of a comprehensive national action plan to combat violence against women and the adoption of a family code complying with the provisions of CEDAW", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Ratify the Kampala amendments to the Rome Statute of the International Criminal Court ", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Make more efforts to reduce poverty, leading to balanced and inclusive growth", - "values": [ - "4 - General action" - ] - }, - { - "text": "Cooperate with the international community and neighbouring countries particularly in the fight against transborder organized crime, and fight against trafficking in women and children.", - "values": [ - "4 - General action" - ] - }, - { - "text": "Request Liberia to seek technical and material assistance from the international community to overcome difficulties and impediments cited in its national report, and also to support the commendable new initiatives undertaken by the Government, such as the land commission, anti-corruption and good governance", - "values": [ - "1 - Minimal action" - ] - }, - { - "text": "Strengthen efforts to work with OHCHR and Regional Offices to fulfil its obligations on international human right treaties, particularly on the elaboration of the common-core document to treaty body reporting ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Look into the need for concrete measures, on the basis of detailed statistical data, to reduce the duration of preventive detention ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Implement a moratorium on the use of the capital punishment with a view to its abolition ", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Expedite its accession to CRPD and other outstanding human rights treaties, particularly those that it had committed to during the last UPR", - "values": [ - "4 - General action" - ] - }, - { - "text": "Give consideration to the establishment and application of criteria for the information and consent of women prior to sterilization.", - "values": [ - "3 - Considering action" - ] - }, - { - "text": "Explore ways to partner with the international community in the context of international cooperation in the provision of technical assistance to deal with challenges caused by the difficult economic situation.", - "values": [ - "3 - Considering action" - ] - }, - { - "text": "On the Equality Body, the delegation highlighted that equality was a constitutional right in Slovenia. Measures to combat discrimination were included in various national policies and in legislation. The government was committed to strengthening the equality protection mechanisms and was currently considering different options for this.", - "values": [ - "4 - General action" - ] - }, - { - "text": "Implement the strategic plan to resolve the issue of stateless individuals in Kuwait, through a transparent system in which individuals whose nationality and status is unresolved can either attain Kuwaiti nationality rightfully or otherwise regularize their situation", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Further improve its birth registration system and ensure that this system is accessible to all children born in Lebanon", - "values": [ - "4 - General action" - ] - }, - { - "text": "Appoint the national preventive mechanism under the Optional Protocol to the Convention against Torture ", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Consider ratifying CAT.", - "values": [ - "3 - Considering action" - ] - }, - { - "text": "Conduct a national campaign for the universal provision of identity documents", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Adopt measures to ensure that the military justice system does not claim jurisdiction in human rights cases involving members of the security forces.", - "values": [ - "4 - General action" - ] - }, - { - "text": "Take necessary measures to ensure full enjoyment of the right to life, physical integrity and security of all persons ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Adopt the proposed amendments to the Code of Criminal Procedure to ensure respect for guarantees and safeguards in detention", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Ratify the Rome Stature of the ICC and accede to the Agreement on the Privileges and Immunities of the ICC", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Consider improving and promoting education at all levels of public education", - "values": [ - "3 - Considering action" - ] - }, - { - "text": "Adopt measures to secure the freedom of religion and belief ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Strive to reduce the timelines before the Courts and to expedite rulings", - "values": [ - "4 - General action" - ] - }, - { - "text": "Conclude the alignment of its domestic legislation with the Rome Statute provisions ", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Make further progress in the reduction of the scope of capital offences in Chinese legislation", - "values": [ - "4 - General action" - ] - }, - { - "text": "Adopt and implement measures that ensure equal remuneration for work of equal value in an effort towards fulfilling the Government's commitment to eliminate the gender pay gap before 2022", - "values": [ - "4 - General action" - ] - }, - { - "text": "Remove the regulations which enable the implementation of the death penalty for intentional murder and remove the power of the President to commute death sentences, and renew its commitment to a moratorium on the death penalty", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Continue taking measures aimed at the ratification of the Optional Protocol to the Convention on the Elimination of All Forms of Discrimination against Women", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Ratify CED, OP-CRPD ", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Investigate all ill-treatment and other wrongdoing by law enforcement officials and bring the perpetrators to justice ", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Continue its humanitarian role and its role in development ", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Continue to promote economic and social sustainable development, promote poverty reduction, and raise people\u2019s living standards", - "values": [ - "4 - General action" - ] - }, - { - "text": "Prioritize the development of disaster risk reduction and preparedness strategies which include promotion of forestation", - "values": [ - "4 - General action" - ] - }, - { - "text": "Continue the formulation and implementation of the national human rights action plan", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Take steps to protect freedom of expression and opinion, as provided for in the International Covenant on Civil and Political Rights", - "values": [ - "4 - General action" - ] - }, - { - "text": "Adopt concrete measures, including special measures, such as acceding to ILO Convention No. 169, so that the Mayan indigenous peoples and certain persons of African decent have access to the labour market, housing and health care as well as combating poverty, exclusion and the discrimination they suffer from. Design intercultural and bilingual educational programmes to promote the integration of these ethnic groups", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Continue to put forward more efforts to eliminate domestic and gender-based violence and discrimination against women and ensure greater representation of women in all sectors of society by fully implementing the Law on Gender Equality", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Widen the scope of international obligations through ratification of international treaties such as the Convention on the Rights of Persons with Disabilities", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Hold regular meetings of agreed institutional mechanisms to address issues pertaining to migrant workers and ensure dialogue under such arrangements ", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Intensify efforts to ensure equal opportunities for men and women in both the private and public sectors, including by expanding measures that facilitate women's re-entry into the workforce after childbirth.", - "values": [ - "4 - General action" - ] - }, - { - "text": "Make the Electoral Commission appointment process more consultative ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Take the measures necessary to ensure that the traditional indigenous justice system complies with the provisions of the international human rights treaties that Bolivia has ratified", - "values": [ - "4 - General action" - ] - }, - { - "text": "Revise and harmonize its anti-discrimination laws to ensure effective protection against all forms of discrimination", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Pursue efforts undertaken in the fight against all forms of violence and discrimination against women, especially female genital mutilation", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Remove the exception relating to marital rape from the definition of rape in the Indian Penal Code and criminalize \u201chonour crimes\u201c", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Revise its Intended Nationally Determined Contribution to be in line with a fair approach taken by other industrialised countries, so as to be consistent with the full enjoyment of human rights by its people and those in neighbouring countries", - "values": [ - "3 - Considering action" - ] - }, - { - "text": "Ensure that during the rebuilding process the needs for accessibility of persons with disabilities are taken into account pursuant current international rules and best practices ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Continue to combat discrimination and violence against women, notably through the prevention of certain abusive socio-cultural practices, through the revision of discriminatory provisions in the Civil Code and the development of legislation against domestic violence ", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Take the necessary measures to ensure a supply of water of good quality to all informal settlements including the provision of water tanks ", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Strengthen the legislation in the area of marriage in accordance with the Convention on the Elimination of All Forms of Discrimination against Women", - "values": [ - "4 - General action" - ] - }, - { - "text": "Accede to the Convention against Torture and Other Cruel, Inhuman or Degrading Treatment or Punishment.", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Continue efforts to amend national laws and legislation in order to ensure that they are in conformity with the recommendations made by treaty bodies ", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Further strengthen its active engagement with the international community to promote human rights in all areas", - "values": [ - "4 - General action" - ] - }, - { - "text": "Ensure that the rights of women, children and persons with disabilities are more effectively realized through the implementation of the strategy for the promotion of reproductive health, 2006- 2010, the national strategy for the prevention of AIDS, 2008-2012, the primary health care strategy, 2008-2012, the national action plan for the well-being for children, 2001-2010 and the comprehensive action plan for persons with disabilities, 2008-2012", - "values": [ - "4 - General action" - ] - }, - { - "text": "Consider specific measures for the protection of the rights of children and adolescents, notably through the objectives defined within the national strategy for the prevention and elimination of child labour", - "values": [ - "3 - Considering action" - ] - }, - { - "text": "Continue its efforts to promote gender equality and the empowerment of women ", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Adopt and implement a law that will integrate the provisions of the African Union Convention for the protection and assistance of Displaced Persons in Africa at the national level", - "values": [ - "4 - General action" - ] - }, - { - "text": "Further work on the protection and rights of the child by ensuring that the necessary capacity and infrastructure are in place so that legislation related to the obligations of Saint Kitts and Nevis under the Convention on the Rights of the Child, which has been already been passed by parliament, can be proclaimed and implemented as soon as possible", - "values": [ - "4 - General action" - ] - }, - { - "text": "Take effective measures to prevent public officials, when performing their duties, from discriminating against individuals on the basis of religion or belief", - "values": [ - "4 - General action" - ] - }, - { - "text": "Provide the national human rights institutions with necessary means so that they can fulfill their mandate and implement their decisions", - "values": [ - "4 - General action" - ] - }, - { - "text": "Modify the Law on the Protection against Domestic Violence and promote the prosecution for these crimes", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Continue its efforts to strengthen gender equality, especially in education, while ensuring the enrollment and retention of girls in school", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Revoke all laws that allow corporal punishment of children", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Ensure that freedom of religion or belief be observed in all parts of the country and all religious sites be duly protected", - "values": [ - "4 - General action" - ] - }, - { - "text": "Ratify the Optional Protocol to the International Covenant on Economic, Social and Cultural Rights and accept its investigation procedure and its communications procedure between States", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Elaborate and implement a national action plan on the use of mercury in the artisanal mining sector in order to protect the health of workers involved in the work of this sector as well as the environment", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Continue efforts regarding the fight against racism, racial discrimination, xenophobia and associated intolerance", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Strengthen its social security system in order to effectively guarantee the poor population the right to health care and housing so that the results of economic development will benefit the entire population", - "values": [ - "4 - General action" - ] - }, - { - "text": "Take actions to avoid the further recruitment of child soldiers, and ensure the reintegration of all ex-child soldiers to avoid future re-recruitment ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Expedite implementation of the National action plan against child labour exploitation", - "values": [ - "4 - General action" - ] - }, - { - "text": "Ensure the protection and welfare of civilians in the Occupied Palestinian Territories.", - "values": [ - "4 - General action" - ] - }, - { - "text": "Not detain children with unrelated adults", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Take steps to more effectively integrate Roma into Serbian society", - "values": [ - "4 - General action" - ] - }, - { - "text": "Speed up the finalization of its national policy on ending violence against women and girls", - "values": [ - "4 - General action" - ] - }, - { - "text": "Bring the age of criminal responsibility of minors to 12 years", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Consider alternatives to the detention of migrants, particularly children", - "values": [ - "3 - Considering action" - ] - }, - { - "text": "Continue to promote and protect its rich historical and cultural heritage", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Continue to prioritize the implementation of national legislation and policies to ensure that children with disabilities have access to education and that the education system is responsive to the needs of children with disabilities", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Establish a national human rights commission in compliance with the Paris Principles as soon as possible and make it adequately resourced", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Take urgent measures to adopt legislation sanctioning discrimination and incitement to violence on the grounds of sexual orientation, and investigate and sanction cases of violence against lesbian, gay, bisexual, transgender, intersex and queer persons", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Respond positively to requests to visit made by the Special Rapporteur on violence against women, it causes and consequences", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Take steps to ratify the Optional Protocol to the Convention on the Rights of the Child on a communications procedure", - "values": [ - "4 - General action" - ] - }, - { - "text": "Ratify ILO Convention No. 169, concerning Indigenous and Tribal Peoples in Independent Countries", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Increase efforts, in a result-oriented manner, so as to combat prison overcrowding and to improve the human rights situation of the people detained ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Continue to avail international assistance for investigating war crimes and human rights training for security forces", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Promptly ratify the ICCPR", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "In the spirit of its Constitution, which guarantees equal rights to all minorities, further invest in dedicated human rights training of police officials to register and investigate cases of discrimination and violence and to hold them accountable when they fail to do so", - "values": [ - "4 - General action" - ] - }, - { - "text": "Eliminate the phenomenon of racial discrimination and strengthen protection of cultural rights of indigenous people ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Ensure that members of the Guyana Police Force are adequately trained on the appropriate use of force and firearms in accordance with international standards ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Include in its next review report measures taken to comply with the recommendations of treaty bodies, especially with regard to the situation of human rights in the Occupied Palestinian Territories.", - "values": [ - "4 - General action" - ] - }, - { - "text": "Maintain and strengthen the moratorium currently in force with a view to abolishing the death penalty.", - "values": [ - "4 - General action" - ] - }, - { - "text": "Strengthen its efforts to prevent racism and related phenomena ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Enact a law on transparency in the allocation of public sector contracts including the allocation of works for the construction sector and the allocation of contracts to media", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Incorporate an explicit definition of the crime of sale of children into its Penal Code and draft Child Act ", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Continue efforts to guarantee freedom of religion and freedom of belief without discrimination and without legal preferences", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Prioritise efforts to ensure that children with disabilities are afforded the same right to education as all children", - "values": [ - "4 - General action" - ] - }, - { - "text": "Strengthen oversight of Austrian companies operating abroad with regard to any negative impact of their activities on the enjoyment of human rights, particularly in conflict areas, where there are heightened risks of human rights abuses", - "values": [ - "4 - General action" - ] - }, - { - "text": "Consider issuing a moratorium on the execution of death penalty sentences ", - "values": [ - "3 - Considering action" - ] - }, - { - "text": "Adopt legislative provisions for the punishment and prevention of the trafficking in persons and eradicate its causes, in conformity with international standards ", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Engage further efforts in protection of public health, namely to undertake systematic review of the health situation and to take all necessary measures in order to prevent and combat transmissible diseases, including cholera", - "values": [ - "4 - General action" - ] - }, - { - "text": "Continue strengthening its successful national education policy, with a view to achieve full school inclusion at all levels, so as to advance towards greater social welfare for its people", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Study the possibility of ratifying the Convention on the Rights of Persons with Disabilities", - "values": [ - "3 - Considering action" - ] - }, - { - "text": "Continue working to improve detention conditions and to address the problem of overcrowding in prisons", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Establish policies and programs of alternative education for single and married pregnant girls in order to avoid that they abandon their studies ", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Continue undertaking effective actions for the protection and promotion of the rights of women in the country ", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Implement policies to comprehensively address violence, labour, political and access to justice problems faced by women", - "values": [ - "4 - General action" - ] - }, - { - "text": "Fully respect the right to freedom of religion, promotion of tolerance and inter-religious dialogue", - "values": [ - "4 - General action" - ] - }, - { - "text": "Complete the implementation of the National Action Plan for the promotion and Protection of Human Rights", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Develop a national strategic action plan for the prevention of all forms of violence against women as noted by CEDAW ", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Promote other durable solutions than resettlement in third countries for the refugees in eastern Nepal in close cooperation with UNHCR and other relevant international organizations ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Guarantee full enjoyment of the right of freedom of expression and association", - "values": [ - "4 - General action" - ] - }, - { - "text": "Decriminalize homosexuality and combat all forms of discrimination and abuse against LGBTI persons", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Consider extending the National Action Plan to protect and assist in the recovery and reintegration of victims of human trafficking beyond 2013", - "values": [ - "3 - Considering action" - ] - }, - { - "text": "Adopt specific legislation pertaining to gender discrimination in the labour market, including sexual harassment in the workplace and discrimination on the grounds of pregnancy and/or maternity", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Accede to/or ratify the following international instruments: the Optional Protocols to the Convention on the Elimination of All Forms of Discrimination against Women, Convention against Torture and Other Cruel, Inhuman or Degrading Treatment or Punishment and its Optional Protocol, Convention on the Rights of Persons with Disabilities, Rome Statute of the International Criminal Court, Optional Protocol to the International Covenant on Economic, Social and Cultural Rights, and the second Optional Protocol to the International Covenant on Civil and Political Rights ", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Organize a visit to the country by the Special Rapporteur on the sale of children, child prostitution and child pornography, the Special Rapporteur on contemporary forms of racism, racial discrimination, xenophobia and related intolerance, and the Special Rapporteur on the human rights of migrants ", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Ensure on-going social welfare and protection measures to ensure the maintenance of levels of human development already achieved and realization of the Millennium Development Goals", - "values": [ - "4 - General action" - ] - }, - { - "text": "Continue to seek the necessary assistance from civil society to reach the goals of the Vision 2016", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Declare, as soon as possible, a moratorium on executions, with a view to definitively abolishing the death penalty ", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Within the context of paragraph 1 (a) of resolution 9-12 of the HRC, to review the nature of reservations to CEDAW and the CRC", - "values": [ - "3 - Considering action" - ] - }, - { - "text": "Continue to raise awareness regarding the criminal nature of domestic violence and take measures to prosecute those responsible for such actions", - "values": [ - "4 - General action" - ] - }, - { - "text": "Take necessary measures that would reduce, at the first stage, the widespread use of child labour", - "values": [ - "4 - General action" - ] - }, - { - "text": "Take human rights into account in the constitutional process, particularly those of women and marginalized or vulnerable groups ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Allocate additional resources to increase case processing and reduce the number of pre-trial detainees", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Take legal measures in order to combat racist, xenophobic and Islamophobic acts and their manifestations", - "values": [ - "4 - General action" - ] - }, - { - "text": "Continue cooperation with Office of the High Commissioner for Human Rights to develop public policies and initiatives to ensure the promotion and protection of human rights", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Adopt a National Action Plan to implement Security Council resolution 1325 [2000] on Women and Peace and Security", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Ratify the ILO Indigenous and Tribal Peoples Convention, 1989 (No. 169)", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Fulfil its obligations assumed in several conventions to which it is a party, and if it deems useful, request the assistance of the international community", - "values": [ - "4 - General action" - ] - }, - { - "text": "Continue and strengthen the efforts to combat against all kinds of gender violence and approve education and awareness-raising policies in that area", - "values": [ - "4 - General action" - ] - }, - { - "text": "Establish effective complaint mechanisms for the victims of torture, with a special focus on persons in detention, so that any misconduct by police, prison or detention staff receives a full and independent investigation and regular punishment", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Implement, and amend when appropriate, the Sexual Offences Act in compliance with international human rights standards to ensure the full accountability of offenders, providing efficient reintegration programmes to victims ", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Lift the measures in force that imply the discrimination and rejection of migrants and refugees, in particular those concerning to the use of force against them", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Continue efforts to strengthen its new statute of the CNDHC in accordance with the Paris Principles ", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Approve the plan of action 2011-2013 against torture and ill-treatment in the context of comprehensive measures to combat torture", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Decriminalize consensual homosexual relations between adults", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Become a party to the Rome statute of the ICC", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Encourage awareness of the state language within the society as a whole ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Focus further on preventing religious intolerance, by strengthening measures to prevent and combat Islamophobia while implementing the circular on Flemish citizenship and integration policy", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Review and where necessary abolish the laws resulting in impunity for those who committed crimes during the dictatorships, in particular the Law on the Expiry of the Punitive Claims of the State, No. 15848, and remove all obstacles to finding the truth about the past, in particular with regard to families of victims of enforced disappearance", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Allocate the same attention and resources to both the human rights to water and to sanitation", - "values": [ - "4 - General action" - ] - }, - { - "text": "Establish a national preventive mechanism that has adequate resources and is in conformity with the requirements, set out in the Optional Protocol to the Convention against Torture, of full legal, functional and financial independence and of staff composition, immunities and privileges", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Continue working on the implementation of laws that promote gender equality in the country", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Ensure independent and effective investigation and prosecution of all cases of alleged human rights violations by law enforcement officials", - "values": [ - "4 - General action" - ] - }, - { - "text": "Speed up ongoing processes leading up to the ratification of the Optional Protocol to the Convention against Torture and other Cruel, Inhuman or Degrading Treatment or Punishment", - "values": [ - "3 - Considering action" - ] - }, - { - "text": "Restructure the Office of the Attorney General in order to separate the functions of the Ministry of Justice and the Attorney General with a view to further guaranteeing the independence of the Attorney General", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Take concrete measures to reinforce domestic democratic institutions through the strengthening of judicial independence and of the freedom of opinion and expression, the investigation of recent detentions with alleged political motivation, as well as through the guarantee to opposition parties of the right to peaceful protest", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Recommended that Mali be provided with the necessary technical assistance it is seeking in order to promote human rights in the country.", - "values": [ - "1 - Minimal action" - ] - }, - { - "text": "Continue to take steps to implement the national Action Plan for Human Rights", - "values": [ - "4 - General action" - ] - }, - { - "text": "Develop programmes to promote tolerance and respect for all persons and to guarantee the rights of privacy and non-discrimination ", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Establish a National Human Rights Institution in compliance with the Paris Principles and to eliminate any forms of discrimination against foreigners", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Repeal of all discriminatory legislation against women, including in the Labour, Civil and Criminal Codes", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Implement as soon as possible the 2014 National Human Rights Action Plan with easily measurable indicators", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Remedy the lack of human resources in the area of health, the lack of medication and the lack of infrastructures", - "values": [ - "4 - General action" - ] - }, - { - "text": "Ratify the Optional Protocol to the Convention on the Elimination of All Forms of Discrimination against Women, signed by Chile in 1999 ", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Develop its normative basis in the area of the protection of fundamental rights and freedoms", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Consider ratifying CEDAW, the Convention on the Rights of the Child, and the Convention on the Rights of Persons with Disabilities", - "values": [ - "3 - Considering action" - ] - }, - { - "text": "Take concrete steps towards acceding to/ratifying the Rome Statute of the International Criminal Court ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Fulfil its obligations to the International Criminal Tribunal for the Former Yugoslavia and other related bodies", - "values": [ - "4 - General action" - ] - }, - { - "text": "Address the distinction made between Spanish and foreign nationals to the detriment of the latter group when remanding custody during investigations ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Establish a moratorium on executions as a first step towards complete abolition of the death penalty and accession to the Second Optional Protocol of the ICCPR", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Put in place measures to effectively prevent underage military recruitment ", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Intensify its efforts towards capacity building and training in human rights for the justice and police personnel, as well as towards their incorporation into the schools' curricula", - "values": [ - "4 - General action" - ] - }, - { - "text": "Put an equal emphasis on the implementation of the Ministry of the Interior's protection programme to defend human rights defenders in the field, bearing in mind the joint statement of the Special Representative of the Secretary-General on the situation of human rights defenders with other special rapporteurs who expressed concerns about the situation and called for appropriate measures to be taken by Colombia.", - "values": [ - "4 - General action" - ] - }, - { - "text": "Investigate reports of forced or coerced sterilization in HIV-positive women and that it takes steps to ensure women are educated about the effects of sterilization and options available to them ", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Respect the human rights of the Rohingya Muslims and other minorities in Myanmar in accordance with Human Rights Council resolution 22/95 of April 2015", - "values": [ - "4 - General action" - ] - }, - { - "text": "Review the legislation applicable to crimes of terrorism, including the criminal code and the law on prevention of terrorism to ensure that they are in line with international human rights standards and standards for combating organized crime", - "values": [ - "3 - Considering action" - ] - }, - { - "text": "Condemn racist and xenophobic speech by politicians and promote tolerance and diversity", - "values": [ - "4 - General action" - ] - }, - { - "text": "Invite the Special Rapporteur on the situation of human rights in Iran to visit the country and provide him with access to appropriate officials, facilities, and prisoners", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Continue to implement the Education Strategy of 2012-2017", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Ensure access to education of all children, including those in hard-to-reach areas, by increasing investments in education infrastructure and training of educators and pursuing all possible avenues for international cooperation", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Increase its efforts to combat racism, intolerance and discrimination through awareness-raising, information, education and follow-up campaigns addressed to the whole society, and adopt effective measures to combat unemployment among migrants, refugees and asylum seekers", - "values": [ - "4 - General action" - ] - }, - { - "text": "Stop the practice of public executions and declare and implement an immediate moratorium on the imposition and execution of the death penalty, followed by concrete steps towards the complete abolition of the death penalty ", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Do not to use the genocide ideology law to impede the activities of opposition parties, opposition and civil society", - "values": [ - "4 - General action" - ] - }, - { - "text": "Include human rights as a subject in the curriculum of educational institutions as well as in plans for training aimed at the security forces", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Consider establishing, at the earliest, a national human rights institution that is compliant with the Paris Principles", - "values": [ - "3 - Considering action" - ] - }, - { - "text": "Further continue ensuring equal access to justice and equal treatment of all Ecuadorians by the courts", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Adopt policies and mechanisms to avoid that members of any religious minority suffer from any kind of discrimination or human rights violation for exerting their right to worship according to their faith", - "values": [ - "4 - General action" - ] - }, - { - "text": "Approve general legislation to combat discrimination, which expressly covers all spheres of life and prohibits discrimination on any ground, particular on grounds of race, sexual orientation and gender identity", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Address the serious impunity issues regarding alleged arbitrary arrests and prolonged detention of government critics", - "values": [ - "4 - General action" - ] - }, - { - "text": "Decriminalize consensual same-sex activity between adults", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Continue improving the conditions of detention centres and ensure that juvenile offenders do not share spaces of detention with adult offenders ", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Continue and strengthen efforts and completely stem acts of torture and ensure that detainees have access to effective legal remedy", - "values": [ - "4 - General action" - ] - }, - { - "text": "Consider removing any restriction on the freedom of association incompatible with its obligations under international law ", - "values": [ - "3 - Considering action" - ] - }, - { - "text": "Continue its endeavours in the field of human rights specially when one takes into account the fact that the government has been promoting Human Rights under special circumstances of a country in transition from a long period of military rule to a fully fledged democracy", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Declare a moratorium on the death penalty with a view to abolition and commute death penalty sentences to jail sentences ", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Strengthen the capacity and improve the effectiveness of the national Ombudsman, ensuring full adherence to the Paris Principles", - "values": [ - "4 - General action" - ] - }, - { - "text": "Rwanda pledges to provide one cow to every poor family, in order to improve living conditions and to construct decent houses for all vulnerable and marginalized people. Rwanda commits to universal health insurance for all and to provide legal aid to all vulnerable and poor people.", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Expedite the establishment of a national human rights institution that is fully compliant with the Paris Principles ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Deploy further efforts in training security forces in the field of human rights.", - "values": [ - "4 - General action" - ] - }, - { - "text": "Repeal all laws that discriminate against women", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Accede to and domesticate the conventions relating to the status of stateless persons and the reduction of statelessness in order to grant nationality to children who would otherwise remain stateless", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Consider ratifying CEDAW, CAT, the International Convention on the Protection of the Rights of All Migrant Workers and Members of Their Families (ICRMW), ICCP OP2 and the International Convention for the Protection of All Persons from Enforced Disappearance", - "values": [ - "3 - Considering action" - ] - }, - { - "text": "Continue its efforts in the fight against slavery and human trafficking, promoting a culture of respect, equality and tolerance", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Combat sexual violence and exploitation, particularly through the implementation of procedures and policies to prevent such offences, facilitate their reporting and provide care to child victims", - "values": [ - "4 - General action" - ] - }, - { - "text": "Take action to stop the atrocities committed by some individuals against immigrants, especially in Moscow ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Continue consolidating its effective health programmes and providing universal quality health care for its entire people", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Strengthen the federal council to combat human trafficking and exploitation and put in place a national trafficking plan", - "values": [ - "4 - General action" - ] - }, - { - "text": "Build on its existing legal framework by devoting additional resources to providing assistance to victims of trafficking ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Investigate torture allegations, extrajudicial executions and other violations of human rights committed in Guantanamo, Abu Ghraib, Bagram, NAMA and BALAD camps and to subsequently close them", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Ensure comprehensive human rights training for law enforcement personnel with a view to prevent any excessive use of force ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Take measures to ratify the International Covenant on Civil and Political Rights and the International Covenant on Economic, Social and Cultural Rights", - "values": [ - "4 - General action" - ] - }, - { - "text": "Expedite the adoption of a National Action Plan to protect the rights of children", - "values": [ - "4 - General action" - ] - }, - { - "text": "Strengthen policies on the rights of the child, with attention to the Guidelines for the Alternative Care of Children, according to Human Rights Council resolution 11-7 and General Assembly resolution 64-142", - "values": [ - "4 - General action" - ] - }, - { - "text": "Accept requests for visits by United Nations special procedures mandate holders, including the Special Rapporteur on freedom of religion or belief ", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Fully investigate regarding all reports about violations of human rights in the context of last year's political turmoil", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Establish a formal moratorium on the death penalty with a view to ratifying the Second Optional Protocol to the International Covenant on Civil and Political Rights, aiming at the abolition of the death penalty ", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Continue its efforts to strengthen the Malawi Human Rights Commission's independence", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Continue to take measures to end all forms of violence against women and expedite the finalization of amendments to the Prevention of Domestic Violence Act", - "values": [ - "4 - General action" - ] - }, - { - "text": "Make a list of persons in detention, provide access to the International Red Cross to prisons and review all cases of arbitrary arrest or confessions under torture, considering reparation for victims", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "In the current world economic crisis, to step up its efforts for the protection of economic, social and cultural rights for the most vulnerable segments of the population including the migrants ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Take immediate measures to ensure that the national regulations pertaining to the Internet guarantee freedom of expression ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Amend sections 9 and 16 of the Citizenship Act to ensure that nationality provisions are applied equally to men and women", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Further protect children against violence and child labour through the strengthening of legislation, in order to safeguard their well-being and their right to education", - "values": [ - "4 - General action" - ] - }, - { - "text": "Strengthen efforts to enable girls from rural areas to enroll in schools and other educational institutions", - "values": [ - "4 - General action" - ] - }, - { - "text": "Intensify ongoing efforts to eradicate the illicit use of drugs and other psychotropic substances, especially among juveniles", - "values": [ - "4 - General action" - ] - }, - { - "text": "Create a system of collection of statistical data on cases of gender- based violence, accompanied by a study analysing the causes why many such cases are not denounced", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Strengthen mechanisms to promote the full and effective participation of women in different spheres, thus guaranteeing their effective incorporation into public life", - "values": [ - "4 - General action" - ] - }, - { - "text": "Implement, in cooperation with the international community, effective programmes aimed at reducing poverty, especially in the rural areas of the country ", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Address concerns related to claims of interference with freedom of expression", - "values": [ - "4 - General action" - ] - }, - { - "text": "Adopt laws and mechanisms essential to protecting human rights and freedoms, particularly in the following areas: protection of victims and witnesses, protection of human rights defenders, provisions on ensuring citizens' right to participation in decision-making, gender-based violence, independence of publishers, accountability of Parliament members, and civil society's right to participation in public interest litigation ", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Continue its efforts to adopt the national law to combat terrorism", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Take appropriate measures to effectively implement the Strategy for Health (2011-2015) and some other programmes on health ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Take effective measures to protect lesbian, gay, bisexual and intersex persons from violence and prosecute the perpetrators of violent attacks", - "values": [ - "4 - General action" - ] - }, - { - "text": "Share other countries' experiences and achievements in the field of managing institutions that provide education for people with special needs", - "values": [ - "1 - Minimal action" - ] - }, - { - "text": "Step up existing cooperation with international bodies in respect of the human right to water and sanitation, in particular with the United Nations Environment Programme and with the Special Rapporteur on the human right to safe drinking water and sanitation", - "values": [ - "4 - General action" - ] - }, - { - "text": "Prohibit the participation of minors in military service and accept the practice of conscientious objection ", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Acknowledge its responsibility for the issue of "comfort women" used during World War II, and take steps to restore the dignity of victims and compensate them adequately", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Immediately end violations of international human rights law, including violent reprisals against peaceful protestors, political activists and their families", - "values": [ - "4 - General action" - ] - }, - { - "text": "Give specific attention to the implementation of the plan aimed at eliminating worst form of child labour by 2016 and all forms of child labour by 2020, including prohibiting child labour in the informal sector", - "values": [ - "4 - General action" - ] - }, - { - "text": "Declare a moratorium on executions and start an information campaign explaining to the population the problems of capital punishment.", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Allocate the resources necessary for the successful realization of the Strategy of the Health Protection System 2014-2020, which is aimed at strengthening maternal and child health", - "values": [ - "4 - General action" - ] - }, - { - "text": "Sign and ratify relevant international instruments relating to refugees and asylum seekers", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Study the possibility to become a party to the Convention on the Protection of the Rights of All Migrant Workers and Members of Their Families ", - "values": [ - "3 - Considering action" - ] - }, - { - "text": "Take all the necessary measures to ensure women have access to adequate health-care services, including sexual and reproductive health services ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Continue to implement the policies and programmes aimed at stimulating pro-poor economic growth while mitigating negative impacts on poor households and communities", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Continue improving the living standards of its people, including an improvement of access to basic health and education services", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Take steps, including legislation and sufficient funding, to ensure that all Canadians have full and equal access to clean water and sanitation, in line with the United Nations resolution passed in 2012,recognizing the human right to water and sanitation ", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Take more effective measures to combat human trafficking, which affects in particular women and children", - "values": [ - "4 - General action" - ] - }, - { - "text": "Commute the sentences of persons sentenced to death and establish a moratorium on executions as a first step towards abolition of the death penalty", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Continue to attach particular priority to the strengthening of national capacities, both legislative and institutional, in the area of human rights, with the support of the international community ", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Subscribe fully to the principle of equality in all areas of life, especially in respect of employment and occupation, and review and adapt the relevant legislation", - "values": [ - "4 - General action" - ] - }, - { - "text": "Consider reviewing existing migration policies to address concerns that hinder accession to the International Convention on the Protection of the Rights of All Migrant Workers and Members of Their Families", - "values": [ - "3 - Considering action" - ] - }, - { - "text": "Consistently address and prosecute incidents of violence against persons with albinism and take measures to comprehensively protect their human rights", - "values": [ - "3 - Considering action" - ] - }, - { - "text": "Ensure that all complaints of human rights violations by the security forces are subject to immediate, accurate and independent investigations ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Strengthen policies and further seek international cooperation to ensure the human rights of Internally Displaced Persons, including measures for their return or resettlement", - "values": [ - "4 - General action" - ] - }, - { - "text": "Deepen the legal and administrative measures aiming at facilitating access to Kuwaiti nationality to stateless persons residing in Kuwait, as well as to children of foreign or stateless fathers born in the territory", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Intensify efforts to prevent and combat violence against women and girls", - "values": [ - "4 - General action" - ] - }, - { - "text": "Within the context of paragraph 1 (a) of resolution 9-12 of the Human Rights Council, entitled Human Rights Goals, withdraw Canadian reservations to the Convention on the Rights of the Child. particularly regarding the duty to detain children separately from adults", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Pay greater attention to the construction of sanitation facilities and housing constructions in rural areas ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Accession to the Ottawa Convention on the Prohibition of the Use, Stockpiling, Production and Transfer of Anti-Personnel Mines and on their Destruction ", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Intensify efforts and measures to ensure the effective promotion of women rights protection, in line with the special customs and values of the Omani society ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Continue to bring to justice all those who have participated in war crimes, crimes against humanity and other heinous acts, and combat impunity in society. ", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Revise transparency laws to reinstate a freedom of information parliamentary ombudsman, and ex ante reclaiming of labour costs for processing information requests, and limit public institutions' authority to refuse access to public data", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Establish formally a moratorium on the application of the death penalty, as a first step towards its definitive abolition", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Continue the increased cooperation with the National Human Rights Commission and study ways to strengthen this institution, its status and functions", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Repeal the provisions allowing for corporal punishment in public schools and strengthen national legislation to protect children against all forms of violence or ill-treatment", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Continue its measures in ensuring the promotion and protection of family and family values from social, health and security threats", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Investigate cases of child labour, bring alleged perpetrators to justice and ensure that all victims are protected, assisted, rehabilitated and compensated", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Adopt provisions to ensure that detained children are always held separately from adults", - "values": [ - "4 - General action" - ] - }, - { - "text": "Take relevant steps in order to conduct immediate, independent, transparent and thorough investigations of human rights violations committed during and after the events of June 2009, and initiate further legal proceedings against those found responsible for such crimes", - "values": [ - "4 - General action" - ] - }, - { - "text": "Release unconditionally the individuals who were convicted by special courts, or are awaiting trial, for merely exercising their fundamental rights of expression and assembly ", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Pay special attention to access to education of children with disabilities ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Consider the possibility of introducing the necessary constitutional changes to ratify the Rome Statute of the International Criminal Court and develop a law on cooperation between the State and the International Criminal Court ", - "values": [ - "3 - Considering action" - ] - }, - { - "text": "Recommended that limits be set for pre-trial detention, according to minimum international standards.", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Ratify the ICCPR at an early stage", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Take full responsibility of the Sahrawi refugee camps that are located in Algerian territory, and protect the human rights of all persons present there", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Strengthen institutional mechanisms to address crimes against children, such as trafficking and sexual exploitation of children and adolescents ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Create conditions favourable to the realization of freedom of expression, both online and offline, freedom of association, and freedom of religion and belief ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Allocate additional resources to improving the country's health infrastructures, while ensuring that ongoing health reforms take into account the rights of women and children", - "values": [ - "4 - General action" - ] - }, - { - "text": "Amend the articles of the Criminal Code dealing with rape and sexual violence, in line with international standards and the recommendations of OHCHR and the Committee on the Elimination of Discrimination against Women, to ensure accountability for conflict-related sexual violence", - "values": [ - "4 - General action" - ] - }, - { - "text": "Strengthen the capacity of the Office of the Human Rights Advocate ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Strengthen the judicial and law enforcement system and eliminate corruption", - "values": [ - "4 - General action" - ] - }, - { - "text": "Fund and support the National Commission of Inquiry to investigate and prosecute, as appropriate, parties responsible for abuses committed during the conflict", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Expedite the process to ratify important international instruments relevant for the advancement of human rights in Zambia, including the Optional Protocol to the Convention on the Rights of Persons with Disabilities, the Optional Protocol to the Convention on the Elimination of All Forms of Discrimination against Women and the two Optional Protocols to the Convention on the Rights of the Child", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Promote the introduction of human rights education in the educational system and in training programs", - "values": [ - "4 - General action" - ] - }, - { - "text": "Consider a moratorium on the imposition of the death penalty, as a step towards completely abolishing it ", - "values": [ - "3 - Considering action" - ] - }, - { - "text": "Redouble efforts to reduce the use of excessive force by the police through a comprehensive effort to educate policemen on proper procedures and prosecute those law enforcement officials who persist", - "values": [ - "4 - General action" - ] - }, - { - "text": "Set up a national strategy for combating sexual abuse of children, including child pornography, with a view of preventing and combating the phenomenon.", - "values": [ - "4 - General action" - ] - }, - { - "text": "Multiply policies to increase the participation of women of migrant background in the labour market, as well as policies that make it possible to eliminate the wage gap between men and women", - "values": [ - "4 - General action" - ] - }, - { - "text": "Become a party to both CRPD and its Optional Protocol and set a specific time frame for the ratification process ", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Review urgently the use of death penalty with a view to a moratorium and abolition.", - "values": [ - "3 - Considering action" - ] - }, - { - "text": "Finalize the National Action Plan on the Rights of the Child, attaching the necessary importance to the issue of unaccompanied children", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Duly implement and review when necessary the law criminalizing violence against women, adopted in April 2007, to ensure due investigations and the punishment of all perpetrators and to prevent further occurrence of these violations as well as to establish a functioning rehabilitation scheme for the victims \n\n", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Ensure the participation of the various political movements in the electoral process and put in place plural and autonomous observation mechanisms that are integrated by citizens ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Investigate all cases of xenophobic violence and attacks against migrants, including any law enforcement involvement in those crimes", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Continue efforts with a view to guaranteeing the right for an inclusive education to all children, including children belonging to minorities or immigrant children", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Ratify the Optional Protocol to the International Covenant on Economic, Social and Cultural Rights and opt into the inquiry and inter-State mechanisms", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Ensure the speedy implementation of the measures of the national Roma Strategy. ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Continue its targeted efforts to combat trafficking in persons, above all women and young girls", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Take concrete steps towards the establishment of a national human rights institution in accordance with the Paris Principles", - "values": [ - "4 - General action" - ] - }, - { - "text": "Amend, as a first step, relevant laws that impose mandatory capital punishment", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Effectively protect the Palestinian population in the occupied West Bank, including East Jerusalem, against any form of discrimination which impairs the equitable access to basic services or natural resources, including water and land, or else the equal enjoyment of fundamental rights and freedoms, particularly the right to equal protection before the law ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Engage in a constructive cooperation with United Nations special procedures ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Remain engaged in discussion on the human rights of migrants, irrespective of their status", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Incorporate the results of the UPR into its current National Action Plan on Human Rights, taking into account the proposals of the civil society and present a mid-term evaluation report to the Council on the implementation of the recommendations of this UPR", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Consider the ratification of the Second Optional Protocol to the International Covenant on Civil and Political Rights ", - "values": [ - "3 - Considering action" - ] - }, - { - "text": "Define professional legal standards and disciplinary procedures in conformity with the Basic Principles on the Role of Lawyers", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Train the public force on human rights principles, in particular on prevention of torture and ill treatment", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Combat the exploitation of and violence against children", - "values": [ - "4 - General action" - ] - }, - { - "text": "Continue partnership with civil society organizations in putting in place a legal and institutional system of support for their development ", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Develop the culture of human rights on the basis of awareness- raising work and educational program", - "values": [ - "4 - General action" - ] - }, - { - "text": "Make further reforms to the Family Code to remove all exceptions that allow marriage of children under the age of 18 years of age", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Implement effective protective measures as well as immediate, independent and systematic investigations of abuses perpetrated against human rights defenders", - "values": [ - "4 - General action" - ] - }, - { - "text": "Ensure sufficient resources so that the National Human Rights Commission (NHRC) can fully carry out its mandate", - "values": [ - "4 - General action" - ] - }, - { - "text": "The delegation stated that Brunei intended to withdraw its reservations to Article 20, paragraphs 1 and 2, of the Convention on the Rights of the Child (CRC) relating to the protection of a child without a family, and Article 21 (a) on adoption, and that it was working towards ratifying the Optional Protocol to the Convention on the Rights of the Child on the involvement of children in armed conflict (OP-CRC-AC).", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Maintain and enhance its development assistance programs designated to the developing countries", - "values": [ - "4 - General action" - ] - }, - { - "text": "Respect the right to peaceful assembly in accordance with Angolan and international human rights law, take steps to decriminalise press offences, in line with international standards, and ensure journalists and human rights defenders are not intimidated", - "values": [ - "4 - General action" - ] - }, - { - "text": "Activate the New Generation programme with regard to children's rights and initiate cooperation with UNICEF and other relevant international human rights organizations ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Sign the Optional Protocol on the International Covenant on Economic, Social and Cultural Rights ", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Focus on policies that seek to improve access to, and the quality of, the health and education sectors ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Continue the implementation of all the recommendations of the BICI ", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Identify plans of action for the enforcement of the Victims and Land Restitution Law ", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Draw up concrete and effective strategies to fight against domestic violence", - "values": [ - "4 - General action" - ] - }, - { - "text": "Accede to Second Optional Protocol to ICCPR, aiming at the abolition of the death penalty", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Continue the implementation of bilingual education with adequate resources ", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Repeal any law or bill that does not meet international standards on non-discrimination on the grounds of sexual orientation", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Investigate attacks and violence against religious minorities and sects and bring those responsible to justice", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Consider signing and ratifying the International Convention on the Protection of the Rights of All Migrant Workers and Members of Their Families", - "values": [ - "3 - Considering action" - ] - }, - { - "text": "Ensure religious freedom, freedom of worship and non- discrimination against persons of different religions", - "values": [ - "4 - General action" - ] - }, - { - "text": "Improve reproductive health education and access to adequate health care and treatment for HIV-positive mothers to prevent mother to child transmission", - "values": [ - "4 - General action" - ] - }, - { - "text": "Promote greater tolerance and understanding among the majority population about the rights of the Roma community, migrants and asylum seekers.", - "values": [ - "4 - General action" - ] - }, - { - "text": "Mainstream climate change in all development activities in view of the situation of Cape Verde", - "values": [ - "4 - General action" - ] - }, - { - "text": "Germany has committed to achieving an ODA ratio of 0.51 per cent by 2010 and 0.7 per cent by 2015.", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Ensure the independence and impartiality of the judiciary and police authorities and allow all parties to exercise their rights before the judiciary", - "values": [ - "4 - General action" - ] - }, - { - "text": "Develop a national data collection system in the area of the fight against child poverty", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Create an independent national institution for promotion and protection of human rights in conformity with Paris Principles", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Launch awareness-raising programs on gender equality", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Abolish incommunicado detention, investigate death in custody incidents and prosecute those responsible, allow frequent visits by recognized international humanitarian organizations to all detention places, and establish an independent monitoring system for detention facilities ", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Remove the criminal immunity of members of the police, armed forces and national security forces, as enshrined within the National Security Act of 2010 ", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Review policies to ensure that the rights of Roma people in migration camps are fully respected and that they are not unlawfully targeted for removal and that removal orders are subject to a full individual assessment ", - "values": [ - "3 - Considering action" - ] - }, - { - "text": "Accelerate the process of adoption of the new revised version of the draft law on equal rights and opportunities for women and men ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Ratify CRPD-OP", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Ratify International Labour Organization (ILO) Convention No. 189 concerning decent work for domestic workers ", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Modify existing sections of the Criminal Code that apply to buggery and indecency so that same-sex sexual activity between consenting adults is not criminalized, and adopt legislation that prohibits discrimination on the basis of sexual orientation and gender identity", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Consider reducing the number of offences for which the death penalty may be imposed", - "values": [ - "3 - Considering action" - ] - }, - { - "text": "Prosecute all cases of racial violence and discrimination", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Consider taking up an anti-discrimination bill in dialogue with State and non-State actors, which would guarantee basic safeguards of non- discrimination, prevention and punishment of all forms of discrimination against all human beings, in line with the main standards of the international human rights instruments to which Paraguay is a party", - "values": [ - "3 - Considering action" - ] - }, - { - "text": "Reform Presidential Decrees Nos. 16 and 739 and any draft law in this field to ensure the protection of human rights defenders and to ensure the independence and functioning of civil society organizations, notably by accepting the offer of technical assistance from the United Nations special rapporteurs to reform the current legislation", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Fast-track the issuance of newly proposed laws such as the child rights law, and the laws regulating centres and institutions for disabled persons", - "values": [ - "4 - General action" - ] - }, - { - "text": "Combat impunity by ensuring prompt, thorough and transparent investigation of all violations against, and killing of Human Rights Defenders, the prosecution of perpetrators and access to effective remedies for victims", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Take steps to review domestic legislation and policies to reflect the provision and principles of the Convention on the Rights of Persons with Disabilities and fully implement the updated National Policy of Persons with Disabilities", - "values": [ - "4 - General action" - ] - }, - { - "text": "Step up actions to tackle violence and discrimination against women", - "values": [ - "4 - General action" - ] - }, - { - "text": "Investigate all allegations of mistreatment or abuse of detainees by the National Directorate of Security, the Afghan National Police and the Afghan Local Police and ensure that those who commit such acts are held accountable ", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Further continue its efforts to improve the human rights situation on the ground, with the technical and financial assistance of the international community", - "values": [ - "4 - General action" - ] - }, - { - "text": "Consider signing and ratifying the Optional Protocol to the Convention on the Rights of the Child on a communications procedure", - "values": [ - "3 - Considering action" - ] - }, - { - "text": "Provide full respect of minority rights guaranteed by positive legislation, including the right to use minority languages and scripts, specifically the Cyrillic script", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Ratify the Optional Protocol to CEDAW", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Reinforce and protect the rights of children, in particular by eliminating child labour and facilitating access of poor children to education", - "values": [ - "4 - General action" - ] - }, - { - "text": "Accelerate the process for the ratification of the Optional Protocol to the Convention on the Rights of the Child on a communications procedure", - "values": [ - "4 - General action" - ] - }, - { - "text": "Seek to ensure access to education for all children and to improve the educational infrastructure and the quality of education", - "values": [ - "4 - General action" - ] - }, - { - "text": "Take essential steps to implement the issues raised and recommendations made by the Truth and Reconciliation Commission", - "values": [ - "4 - General action" - ] - }, - { - "text": "Implement changes that improve the independence of the judiciary, giving full consideration to the Venice Commission's concerns, particularly by establishing more objective and transparent processes for the appointment, discipline, and removal of judges, including during any applicable probation period ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Take robust measures to ensure incidents of violence against women are prosecuted and that protection for victims from retaliation is assured", - "values": [ - "4 - General action" - ] - }, - { - "text": "Establish a moratorium on the use of the death penalty in order to avoid irreparable errors .", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Complete its international commitments to protect and promote human rights by acceding to the relevant international instruments, in particular to the two Optional Protocols to the Convention on the Rights of the Child ", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Continue strengthening the relevant policies and programs on strengthening the capacity building, in particular, in the field of economic, social and cultural rights that aims at improving the living standards of its people, through further cooperation and support by the international community", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Continue and strengthen efforts in preventing and combating all forms of discrimination faced by persons with a migratory background, in particular in the labour market, the housing sector, and in education and healthcare ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Continue its efforts to establish a national human rights institution, with a mandate to promote and protect human rights in conformity with the Paris Principles", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Continue to call upon the international community to provide financial and technical support in order to strengthen the enjoyment of human rights by its people and to achieve the Millennium Development Goals", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Set a clear timeline for the review of legislation carrying the death penalty with the aim of limiting the scope of crimes to which it applies", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "With the assistance of OHCHR, move to speedily accede to all those human rights conventions to which it is currently a signatory ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Continue progress in the promotion of women's and children's rights, in accordance with Islamic Shari'a and its international commitments ", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Amend its Constitution to include sex and gender as prohibited grounds of discrimination", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Step up efforts to protect freedom of religion and promote inter- religious dialogue as a tool to foster tolerance and peaceful-coexistence", - "values": [ - "4 - General action" - ] - }, - { - "text": "Ratify core international human rights instruments, such as the International Convention on the Elimination of All Forms of Racial Discrimination ICERD, ICESCR, ICCPR and CAT, within the context of Council resolution 9-12", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Take effective measures to ensure the full realization of the rights to freedom of expression, including on internet, assembly and association ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Enact legislation prohibiting violence against children in all settings", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Strengthen measures to combat violence against women, particularly that related to female genital mutilation", - "values": [ - "4 - General action" - ] - }, - { - "text": "Implement more rigorously the existing mechanisms to protect and assist children living and/or working on the streets ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Provide due legal protection against discrimination on all grounds on its soil", - "values": [ - "4 - General action" - ] - }, - { - "text": "Develop a system of recording official statistical data on the most widespread crimes and offences committed on the basis of discrimination taking into account the legal obligations of the Netherlands in registering such crimes ", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Continue to strengthen the technical capacity and expertise of Ministries and other governmental organs and other institutions with competence in the field of human rights", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Maintain the moratorium in the application of the death penalty", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Ratify the Arms Trade Treaty thereby providing the potential for reducing the proliferation of small arms and light weapons, the illegal drug trade and high levels of violence", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Ensure more effective enforcement of policies and legislation to address discrimination against and marginalization of women, and take measures to promote equal access for boys and girls to basic education", - "values": [ - "4 - General action" - ] - }, - { - "text": "Seek to expedite the current process of establishing a national human rights institution, with a view to further improving the general situation of human rights in the Gambia", - "values": [ - "4 - General action" - ] - }, - { - "text": "Adopt, as soon as possible, a bill against all forms of discrimination ", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Fulfil the voluntary pledge to establish a follow-up committee to study all recommendations submitted during the current universal periodic review process ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Continue the implementation of policies addressing issues peculiar to indigenous peoples, particularly women and children", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Establish a comprehensive regulatory framework to reduce the physical and environmental health-care risks associated with phosphate mining", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Take further steps to ensure a better protection of human rights of refugees, asylum seekers, migrants and internally displaced persons", - "values": [ - "4 - General action" - ] - }, - { - "text": "Establish a national birth registration system to register all births in Korea irrespective of the nationality of parents", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Continue efforts at the federal and state levels aimed at overcoming racial discrimination, especially through the implementation of the Priority Enforcement Programme to guard against racial profiling of immigrants and other forms of racial discrimination", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Establish a fully independent children's ombudsman that could receive complaints from all relevant stakeholders in the event of children's rights being violated ", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Continue to intensify government action in providing better infrastructure for education ", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Do its utmost to ensure that political parties are safeguarded in the elections of 2010.", - "values": [ - "4 - General action" - ] - }, - { - "text": "Take all necessary measures to prevent further civilian casualties by foreign military forces in Afghanistan.", - "values": [ - "4 - General action" - ] - }, - { - "text": "Consider acceding to ICESCR and ICRMW ", - "values": [ - "3 - Considering action" - ] - }, - { - "text": "Continue plans to increase employment in the country, especially for its vulnerable groups", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Consider additional safeguards for minorities in the criminal justice system, namely to introduce guarantees with respect to the right to use a minority language in all stages of the criminal proceedings", - "values": [ - "3 - Considering action" - ] - }, - { - "text": "Reform laws related to discrimination and violence against women and lesbian, gay, bisexual, transgender and intersex persons, including by repealing provisions which may be used to criminalize consensual, same-sex sexual activity between adults, and establishing a law criminalizing domestic violence ", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Ensure effective and practical implementation of the Law on Domestic Violence and the law on the protection of children's comprehensive development", - "values": [ - "4 - General action" - ] - }, - { - "text": "Ensure that complete and impartial investigation into allegations of all forms of violence against women are conducted, that perpetrators are brought to justice and that victims receive adequate support", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Continue setting up national annual plans on education and awareness-raising of human rights, including through a field visit in this area", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Keep on its effective measures for further promotion and protection of the right of child ", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Take the necessary measures to amend the legislation on nationality in order to establish equality between men and women regarding the transmission of nationality to their children ", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Fully integrate provisions on the criminalization of enforced disappearance into its national legislation", - "values": [ - "4 - General action" - ] - }, - { - "text": "Delay the entry into force of the revised Penal Code and conduct a comprehensive review to ensure its compliance with international human rights standards ", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Take further steps to establish and implement laws against domestic violence and the trafficking of women and children, and to ensure that existing laws prohibiting female genital mutilation are reviewed and enforced throughout the country.", - "values": [ - "4 - General action" - ] - }, - { - "text": "Strengthen measures aimed at providing protection and assistance to vulnerable segments of society, including those children affected by natural disasters to protect them from trafficking and exploitation at work", - "values": [ - "4 - General action" - ] - }, - { - "text": "Pursue the process of acceding to international instruments", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Establish an independent national human rights institution that complies with the Paris Principles.", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Continue efforts to promote and protect the rights of vulnerable groups, particularly women and children ", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Take measures to guarantee accountability by ensuring that human rights violations, including abuses committed by Indonesian security forces are investigated and that those deemed responsible are prosecuted in a fair prompt and impartial manner ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Continue the practice of strengthening the Office of the Human Rights Commissioner in compliance with the Paris Principles", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Sustain and strengthen nascent anti-corruption and transparency initiatives, in consultation with civil society, including through follow-on discussions to the national anti-corruption forum held in June", - "values": [ - "4 - General action" - ] - }, - { - "text": "Consider solving the problem of ownership of land belonging to the Catholic Church and the Orthodox Church", - "values": [ - "3 - Considering action" - ] - }, - { - "text": "Take all necessary measures to ensure that national human rights instruments are rigorously implemented", - "values": [ - "4 - General action" - ] - }, - { - "text": "Take measures to fully ensure the rights of migrants who arrive in the country", - "values": [ - "4 - General action" - ] - }, - { - "text": "Implement the necessary measures to guarantee gender equality in law and in practice in conformity with international human rights standards ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Continue efforts to increase training on human rights for members of the police and defence forces", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Establish a specialized police unit for investigating hate crimes, closely collaborating with the LGBT community and organizations in order to create a trusting relationship", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "(1) Improving coverage in rural and remote areas.(2) Expanding protection programmes to cover third parties involved in criminal proceedings. (3) Setting up the data system and designing a means of making the State information systems on human rights violations interoperable. (4) Increasing technical investigative capacity. (5) Boosting confidence in the judiciary.", - "values": [ - "4 - General action" - ] - }, - { - "text": "Devote increasing attention to the struggle against violence against women, especially through the implementation of social measures in this field", - "values": [ - "4 - General action" - ] - }, - { - "text": "Continue to develop education policies aimed at ensuring access to education for all, especially the poor and those living in rural areas ", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Ensure the protection of the rights of persons belonging to religious and other minorities and effectively investigate all alleged abuses and violations", - "values": [ - "4 - General action" - ] - }, - { - "text": "Continue to strengthen measures and plans to address and effectively eradicate the causes of domestic violence against women, including training and capacity-building programmes on human rights for civil servants of the State that address this issue ", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Palau pledged to extend an open standing invitation to special procedures mandate holders.", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Pursuing accommodative dialogue with indigenous communities, with a view to minimize disruptive approaches to their lifestyle and traditions while improving their life conditions ", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Continue and strengthen its efforts directed to the further promotion and protection of human rights.", - "values": [ - "4 - General action" - ] - }, - { - "text": "Ratify the Optional Protocol to the International Covenant on Economic, Social and Cultural Rights and accept the competence of the Committee as regards the inquiry procedure and inter-State communications ", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Strengthen the state of laws and good governance, especially on the legal enforcement and capacity building for national agencies on human rights ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Continue to make efforts to establish the Ombudsman in compliance with the Paris Principles", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Intensify efforts to ensure access to education, including efforts to increase enrolment and completion rates", - "values": [ - "4 - General action" - ] - }, - { - "text": "Repeal provisions of the legislation that can be used to criminalize the right to freedom of expression ", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Intensify its efforts to protect children from early and forced marriages", - "values": [ - "4 - General action" - ] - }, - { - "text": "Accord special attention, within its public policy on teaching, to the education of indigenous persons and children living in poverty ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Pass legislation domestically to prohibit the passing of life imprisonment without the possibility of parole on offenders who were children at the time of offending, and ratify without any further delay the Convention on the Rights of the Child", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Take measures to reduce the number of homicides, address the level of impunity and stop the abuses by the security forces", - "values": [ - "4 - General action" - ] - }, - { - "text": "Take all the necessary steps to respect the Article 26 of the Haitian Constitution stipulating that the preventive custody should not exceed 48 hours ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Strengthen the Government's efforts to improve the quality of education", - "values": [ - "4 - General action" - ] - }, - { - "text": "Reinforce efforts in combating all manifestations of racism, xenophobia and other related intolerance", - "values": [ - "4 - General action" - ] - }, - { - "text": "In order to avoid the occurrence of impunity in cases of violence against LGBT persons, that all such cases be subject of credible investigations and the perpetrators prosecuted ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Ensure freedom of expression online and offline, including media freedom, by repealing or amending the Criminal Code of Kazakhstan to be compatible with international human rights law", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Take additional measures to fully protect the human rights of all persons with disabilities, including to preclude involuntary hospitalization and coercive health-care approaches, to prioritize free and fully informed consent for medical treatment, and to promote the involvement of persons with disabilities in decision-making related to their well-being", - "values": [ - "4 - General action" - ] - }, - { - "text": "Step up its efforts to complete the process of setting up the national mechanism for the prevention of torture and thus confirm its regional leadership in this respect", - "values": [ - "4 - General action" - ] - }, - { - "text": "Bring its abortion laws in line with ICCPR", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Strengthen its efforts to meet the challenge of sustaining and improving the standard of living of the people and employment opportunities in rural areas ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Promote further good practices of social protection and the realization of the right to education through cooperation and experience-sharing with relevant international organizations and countries advanced in the education sphere ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Adopt specific labour legislation to protect the rights of domestic workers, including mechanisms for complaints and sanctions for law violations", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Punish under law violence against women, establishing adequate measures to protect victims", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Ensure that civil society organizations and human rights defenders can operate in a safe environment and that all allegations of intimidation, harassment and violence are fully investigated", - "values": [ - "4 - General action" - ] - }, - { - "text": "Continue efforts to fight right-wing extremism.", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Carry out the necessary reforms for the consolidation of the rule of law, by rapidly proposing a draft constitution", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Develop consequential strategies to fulfil the affirmative action policies of 40 per cent of women in public decision-making processes", - "values": [ - "4 - General action" - ] - }, - { - "text": "Strengthen efforts for the prevention of cases of intercommunal violence", - "values": [ - "4 - General action" - ] - }, - { - "text": "Prosecute effectively all security agents that have allegedly tortured or otherwise abused protestors ", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Further strengthen existing policies and legislation on non-discrimination to reduce racist and xenophobic behaviour and manifestations", - "values": [ - "4 - General action" - ] - }, - { - "text": "Initiate a process of revision of the Penal Code and laws on publications which includes civil society and international experts and is based on international standards", - "values": [ - "4 - General action" - ] - }, - { - "text": "Respect its commitments to an effective judicial review of the administrative decisions of the Office of Youth (Jugendamt) ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Abolish the death penalty in law and ratify the Second Optional Protocol to the International Covenant on Civil and Political Rights", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Implement the recommendation of the Committee on the Elimination of Racial Discrimination to take all preventive measures to put an end to racist incidents involving members of security forces or other public officials", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Continue its leadership and international cooperation in the international agenda for the development of countries of the South", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Government's efforts to ensure quality service delivery in the justice sector also include measures to strengthen the independence of the judiciary in line with the United Nations Basic Principles on the Independence of the Judiciary", - "values": [ - "4 - General action" - ] - }, - { - "text": "Cooperate with the United Nations special procedures, and follow up on the requests of visits of special rapporteurs, as announced today", - "values": [ - "4 - General action" - ] - }, - { - "text": "Continue working sufficiently to publicize the recommendations of the UPR Working Group and the plan of action", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Ensure that the Law on the right to prior consultation for indigenous or native peoples is applied to all self-identified groups of indigenous peoples, including for mining projects", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Consider taking steps to increase opportunities to access higher education", - "values": [ - "3 - Considering action" - ] - }, - { - "text": "Ensure respect for the right to life, liberty and security of person for all in Libya, including by working towards an end of armed hostilities among Libyans, by complying with applicable international law in the conduct of hostilities, and by ensuring humane treatment of all persons detained, in line with international standards", - "values": [ - "4 - General action" - ] - }, - { - "text": "Ensure equal treatment and broad protection for all from discrimination, regardless of sexual orientation and gender identity", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Revise laws on public assemblies according to the recommendations by the Venice Commission ", - "values": [ - "3 - Considering action" - ] - }, - { - "text": "Ensure compliance of the National Commission of Human Rights and Freedoms with the Paris Principles ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Redouble its efforts to improve the socioeconomic situation of the Maori by combating structural discrimination, in particular by increasing the level of education of Maori children ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Initiate the process of ratification of the Second Optional Protocol on the International Covenant on Civil and Political Rights with the view of definitely abolishing the death penalty ", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Ensure that there are no practices that discriminate on the basis of ethnic or national origin regarding the expulsion of immigrants ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Ratify the Convention against Torture in a timely fashion ", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Ratify the Convention on the Rights of Persons with Disabilities, pursuant to the Human Rights Council recommendations", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Request technical assistance from the United Nations programmes, funds and bodies to comply with the commitments made in terms of human rights such as the presentation of reports, and the drafting of plans and programmes to strengthen human rights", - "values": [ - "1 - Minimal action" - ] - }, - { - "text": "Take further actions to combat trafficking in persons in accordance with the United Nations Convention against Transnational Organized Crime and the Protocols Thereto ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Provide technical assistance to enable the authorities in Aruba, Curaçao and Sint Maarten to educate prison officers and improve prison facilities in compliance with international human rights standards", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Repeal all provisions providing for mandatory death sentences with a view to abolishing them", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Halt selective assassinations committed by contractors, and the privatization of conflicts with the use of private military companies", - "values": [ - "4 - General action" - ] - }, - { - "text": "Adopt measures to end threats against and harassment of human rights defenders, journalists and judges, in accordance with the 1998 General Assembly declaration on human rights defenders, such as the establishment of a mechanism to effectively implement the precautionary measures requested by the Inter-American Commission on Human Rights", - "values": [ - "4 - General action" - ] - }, - { - "text": "Provide, in accordance with its obligations under international human rights law, the widest possible protection and support for the family, as the natural and fundamental unit of society ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Take adequate measures to ensure the definite decommissioning of the Guantanamo Military Prison", - "values": [ - "4 - General action" - ] - }, - { - "text": "Establish a National Human Rights Institution in line with the Paris Principles ", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Encourage the continued taking of measures relating to discrimination against women in particular to raise the age of marriage to 18 for women as for men.", - "values": [ - "1 - Minimal action" - ] - }, - { - "text": "Withdraw its reservations to article 4 of the ICERD and article 27 of the ICCPR, and adopt immediate and positive measures to eliminate all forms of discrimination, xenophobia and stigmatisation", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Continue to strengthen its education system, including vocational training, with support from the international community", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Reassess involuntary return practices and asylum processes, particularly for minors, in order to guarantee refugees the full protection accorded by the law ", - "values": [ - "3 - Considering action" - ] - }, - { - "text": "Further invest in the fight against domestic violence by, inter alia, establishing shelters for victims and providing support to non-governmental organizations working in that field", - "values": [ - "4 - General action" - ] - }, - { - "text": "Provide a more orderly process for refugees-asylum applicants and ensure that repatriations are carried out in line with UNHCR guidelines.", - "values": [ - "4 - General action" - ] - }, - { - "text": "Continue its efforts in the less developed regions by encouraging development and investment", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Consider eliminating from the national legislation all provisions restricting freedom of thought, conscience and religion", - "values": [ - "3 - Considering action" - ] - }, - { - "text": "Effectively cooperate with the Special Rapporteur on the promotion and protection of the right to freedom of opinion and expression", - "values": [ - "4 - General action" - ] - }, - { - "text": "Sign and ratify CAT and ICCPR ", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Refrain from applying anti-terrorism legislation to Mapuche individuals in the context of intercultural conflicts, including land disputes, and increase political dialogue on indigenous issues ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Put an end to recruitment and use of child soldiers", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Intensify measures aimed at addressing gender equality gaps in the social, economic and political fields", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Increase efforts to further develop human rights education", - "values": [ - "4 - General action" - ] - }, - { - "text": "Undertake campaigns to encourage greater women's participation in politics ", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Continue its efforts to ensure its people have access to affordable housing", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Continue to implement National Strategy for Gender Mainstreaming and promote women empowerment", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Redouble efforts to implement anti-discrimination laws and policies, including through more intensive public awareness campaign", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Further strengthen measures to prevent and punish trafficking in persons, especially women and children, with the prosecution of offenders and rehabilitation of victims", - "values": [ - "4 - General action" - ] - }, - { - "text": "Implement comprehensive awareness raising strategies for hospital staff, administrators and other health professionals regarding their responsibilities to register births and facilitate the issuance of birth certificates, without any delay ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Expedite the process of introducing a media bill to enhance freedom of expression", - "values": [ - "4 - General action" - ] - }, - { - "text": "Continue with the necessary reforms for the more effective and efficient administration of justice aimed at reducing long periods of pre-trial waiting and minimize corrupt practices", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Continue to implement the obligations deriving from the Sarajevo Declaration vis-a-vis the successful integration of refugees and to further accelerate the implementation of the existing national housing care programme", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Strengthen the welfare system, particularly related to the protection of children without appropriate care and their access to education", - "values": [ - "4 - General action" - ] - }, - { - "text": "Increase funding for the Central Office for Combating Corruption (GCCC) to expand its training programmes for prosecutors and to increase accountability for Government officials by allowing the GCCC to investigate and prosecute these crimes ", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Respect the fundamental principle of equality between men and women, in particular by allowing women from Brunei Darussalam to transmit their nationality to their children and by raising the age of marriage for women ", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Make further efforts to end discrimination, domestic violence and violence in schools against women", - "values": [ - "4 - General action" - ] - }, - { - "text": "Strengthen its efforts to eradicate poverty and hunger in the country", - "values": [ - "4 - General action" - ] - }, - { - "text": "Ratify the remaining core human rights treaties, such as ICCPR and CAT", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Adopt appropriate public policies to protect and promote children's rights and to implement the national child protection system in an effective and coordinated manner ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Continue efforts to decrease female dropout rates from school by implementing more measures", - "values": [ - "4 - General action" - ] - }, - { - "text": "Ratify the Minimum Age Convention, 1973 (No. 138) and the Worst Forms of Child Labour Convention, 1999 (No. 182) of the International Labour Organization", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Strengthen education and health systems, fight illiteracy and raise awareness on human rights issues ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Take the necessary measures to guarantee, in all circumstances, full respect for freedom of expression and freedom of the press", - "values": [ - "4 - General action" - ] - }, - { - "text": "Repeal all provisions that may lead to discrimination on the grounds of sexual orientation or gender identity and respect fundamental freedoms of all the citizens", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Ratify the Rome Statute of the International Criminal Court, fully align its national legislation with the obligations under the Rome Statute and accede to the Agreement on the Privileges and Immunities of the International Criminal Court", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Combat the increasing number of femicide-cases by ensuring the provision of financial resources for the effective implementation of the Law against Femicide and by implementing and adequately funding and coordinating the National Plan for the Prevention of Domestic Violence and Violence against Women", - "values": [ - "4 - General action" - ] - }, - { - "text": "All necessary measures be taken to address all forms of violence against Aboriginal women and girls ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Take into account the recommendation made by the Human Rights Committee that it incorporate all substantive provisions of ICCPR into its national legislation, unless already done.", - "values": [ - "4 - General action" - ] - }, - { - "text": "Continue consolidating peace and strengthening a human rights-based culture", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Give full effect to the opinion submitted by the Ombudsman to the Government regarding the need to make additional amendments to the legislation to make the institution consistent with the Paris Principles ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Ensure that its draft Domestic Violence Bill addresses the investigation, prosecution and punishment of perpetrators of violence against women, and that it is implemented as a priority", - "values": [ - "4 - General action" - ] - }, - { - "text": "Sign the Optional Protocol to the Convention on the Rights of the Child on the involvement of children in armed conflict ", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "When elected, the new President seeks early ratification of the Convention against Torture and ratification of the Rome Statute of the International Criminal Court", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "The subject of special protection for same-sex couples has appeared on the public agenda in Colombia, and has led to important developments in jurisprudence. The Constitutional Court has on various occasions upheld the right of same-sex couples to equality. It has recognized that a de facto marital union (and the ensuing property rights), access to the mandatory health scheme and access to a survivor's pension must be safeguarded for same-sex couples on the same terms as for heterosexual couples. Colombia now faces the challenge of continuing to advance in this area.", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Ratify the Convention on the Rights of Persons with Disabilities, the Optional Protocol to the Convention against Torture ", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Take steps to implement comprehensive anti-discrimination laws, particularly to eliminate discrimination on the basis of sexual orientation", - "values": [ - "4 - General action" - ] - }, - { - "text": "Ensure that all trials observe international standards for fair trial, and that the Government responds to concerns by defence lawyers and non-governmental organizations regarding trials against human rights defenders ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Introduce specific legislation providing for the adoption and implementation of temporary special measures to accelerate de facto gender equality ", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Intensify efforts aiming at the comprehensive and effective implementation of national plans and strategies to fight trafficking of human beings", - "values": [ - "4 - General action" - ] - }, - { - "text": "Continue the follow-up on the request by a number of Special Procedures Mandate Holders to visit the country", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Promptly and effectively investigate all allegations of torture and ill- treatment of prisoners and acts of intimidation, reprisals and threats against human rights defenders and journalists", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Consider opening of one of the historical mosques in Thessaloniki, where significant number of Muslim population live ", - "values": [ - "3 - Considering action" - ] - }, - { - "text": "Take steps to end discrimination and segregation suffered by Roma children in the school system in accordance with its international obligations", - "values": [ - "4 - General action" - ] - }, - { - "text": "Apologize to the peoples and the countries it colonized or it attacked and provide financial compensation to the peoples of these countries", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Continue to implement initiatives such as a referral network (SafeNet) and pursue preventive measures aimed at reducing the levels of violence against women", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Consider ratifying the International Convention on the Protection of the Rights of All Migrant Workers and Members of Their Families", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Sign and ratify the Optional Protocol to ICCPR", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Consider providing universal free primary education to all children, regardless of their sex, nationality, race or ethnic origin", - "values": [ - "3 - Considering action" - ] - }, - { - "text": "Positively consider and implement the recommendations presented by the Special Rapporteur on human rights defenders", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Make necessary amendments to the national legislation in order to bring it into line with international obligations and commitments for the protection of children and in particular for their protection against sexual abuses, as well as against trafficking of persons", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Promote at the social, economic, legislative and judicial levels the development of a general environment that ensures the protection of the fundamental freedoms of all citizens. In particular, adopt and implement a national strategy to guarantee freedom of the press and ensure that complaints of violations of these rights are investigated promptly and impartially", - "values": [ - "4 - General action" - ] - }, - { - "text": "Carry out an independent and credible investigation on the allegations of violations of human rights and international humanitarian law", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Implement the provisions of the Optional Protocol to the Convention against Torture", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Take appropriate measures and continue working towards improving conditions in prisons and detention centres.", - "values": [ - "4 - General action" - ] - }, - { - "text": "Afford adequate resources to the Commission for Protection against Discrimination in order for this important institution to fulfil its mandate effectively", - "values": [ - "4 - General action" - ] - }, - { - "text": "Follow up on the recommendation made by the Committee against torture to adopt all necessary measures to prevent, combat and punish violence against women and children.", - "values": [ - "4 - General action" - ] - }, - { - "text": "Enhance endeavours to abolish corporal punishment of children ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Continue the practice of implementing programmes aimed at further improving the welfare of the population", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Put in place a Comprehensive Plan on Gender Equality that criminalizes FGM ", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Prioritize the expansion of the successful HIV/AIDS Technical Support Units to all regions which do not have them in place", - "values": [ - "4 - General action" - ] - }, - { - "text": "Ratify the International Convention on the Protection of the Rights of Migrant Workers and the members of their families ", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Prepare, in consultation with persons with disabilities, a national strategy for the promotion and protection of rights of persons with disabilities, in line with the Convention on the Rights of Persons with Disabilities, and strengthen measures protecting persons with disabilities against discrimination, including through strengthening the Equal Treatment Act in this regard", - "values": [ - "4 - General action" - ] - }, - { - "text": "Adopt measures to ensure the rights of citizens to peaceful assembly under conditions of observance of public order and the safety of citizens and state and private establishments and organizations", - "values": [ - "4 - General action" - ] - }, - { - "text": "Develop a code of conduct, or similar type of document, for the respect for human rights within the armed forces and the police and provide them with training on their human rights obligations", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Strengthen the efforts to promote the full participation of women in all aspects, eliminate discrimination against women, and ensure access to justice for victims of domestic violence and sexual harassment", - "values": [ - "4 - General action" - ] - }, - { - "text": "Guarantee respect of freedom of opinion and expression, by safeguarding the security of journalists and the independence of the media", - "values": [ - "4 - General action" - ] - }, - { - "text": "Ratify the optional protocols to the International Covenant on Civil and Political Rights ICCPR, the International Covenant on Economic, Social and Cultural Rights ICESCR and the Convention on the Elimination of All Forms of Discrimination against Women", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Further pursue programmes for the reform of the justice system, and the police and security services, with a view to concretizing its will to better protect the human rights of its citizens in the country. ", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Ratify the Optional Protocol to the Covenant on Economic, Social and Cultural Rights", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Establish policies to reduce the level of discrimination against women, children and indigenous peoples of African descent ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Adopt a national action plan to end child sexual exploitation", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Criminalize marital rape and sexual violence", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Amend the Penal Code and other national laws criminalizing all forms of violence against women and domestic violence and rape in particular, and implement laws in practice", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Continue the implementation of concrete measures to realize the United Nations Millennium Development Goals, to strengthen cooperation with international partners ", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Consider ratifying the International Convention on the Protection of All Persons from Enforced Disappearance ", - "values": [ - "3 - Considering action" - ] - }, - { - "text": "With the support of the international community, further strengthen the national security forces and law enforcement agencies through various capacity-building measures.", - "values": [ - "4 - General action" - ] - }, - { - "text": "Fully ensure gender equality in employment and in political posts", - "values": [ - "4 - General action" - ] - }, - { - "text": "Continue resisting attempts to enforce any values or standards beyond the universally agreed ones.", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Take all steps to abolish the death penalty", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Identify a priority list of areas in which assistance and aid are most crucially needed and approach bilateral, regional and international partners and stakeholders, as appropriate ", - "values": [ - "1 - Minimal action" - ] - }, - { - "text": "Continue to promote human rights education, training and awareness-raising", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Assess the possibility of lifting its reservations to the Convention relating to the Status of Refugees", - "values": [ - "3 - Considering action" - ] - }, - { - "text": "Continue efforts to adopt and implement legislative and administrative measures for the promotion and protection of the rights of the child ", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Step up efforts to ensure that the country's immigration laws and regulations are in line with its international human rights obligations ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Eliminate violence against women in all its manifestations", - "values": [ - "4 - General action" - ] - }, - { - "text": "Adopt the draft bill on witness and victim protection", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Enhance and strength national programs to combat violence against women and also to continue the much valuable efforts that enable women to participate in legislative council and decision making positions ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Apply the principle of non-discrimination to the most vulnerable groups, such as girls, children with disabilities, children of religious minorities, children living with HIV/AIDS, migrant and refugee children, orphans and children born out of wedlock, so that they have access to health care and education", - "values": [ - "4 - General action" - ] - }, - { - "text": "Continue to take measures allowing persons with disabilities to be fully integrated into economic, political, social and cultural life", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Continue its efforts to set up the National Preventive Mechanism against Torture", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Consider recruiting independent experts to its Standing Committee for Police Monitoring from outside the police, in line with the 2014 recommendations of the Committee Against Torture", - "values": [ - "3 - Considering action" - ] - }, - { - "text": "The delegation reaffirmed its commitment to implement its human rights obligations and to continue to work closely with the Council.", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Continue the harmonization of domestic law with regard to its international obligations on human rights.", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Take legislative and administrative measures to address a wide range of racial discrimination and inequalities in housing, employment and education ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Make stronger efforts to improve and raise the standard of gender equality in society ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Set the legal minimum age to marry at 18 years for males and females in all provinces, and ensure that the law is effectively enforced", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Step-up its efforts to guarantee civil, political, economic, social and cultural rights of the Iraqi people, including equality before the law without discrimination of any kind and take appropriate measures to respect international human rights instruments and United Nations Treaty Bodies recommendations", - "values": [ - "4 - General action" - ] - }, - { - "text": "Proceed with the ratification of the Optional Protocol to the Convention against Torture and Other Cruel, Inhuman or Degrading Treatment or Punishment without delay ", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Ratify, as a matter of priority, the International Covenant on Civil and Political Rights and the International Covenant on Economic, Social and Cultural Rights", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Guarantee freedom of expression and association through amending the media laws (that is the Cybercrime Act, Statistics Act, both of 2015 and Newspaper Act of 1976) and to ensure a conducive environment for civil society organizations, human rights defenders and media to operate freely in accordance with the Constitution of the United Republic of Tanzania and the United Nations declaration on human rights defenders ", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Take appropriate additional measures to address violence and abuse of women and children ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Implement juvenile justice standards, in particular in regard to pretrial detention of juveniles and the segregation of juveniles from adult prisoners ", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Ensure refugee/asylum-seekers get their rights", - "values": [ - "4 - General action" - ] - }, - { - "text": "Ensure a safe and enabling environment for civil society and human rights defenders", - "values": [ - "4 - General action" - ] - }, - { - "text": "Withdraw all reservations to CEDAW and abandon discriminatory laws against all women regardless of their ethnic or religious background", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Improve police responses to violence against foreigners", - "values": [ - "4 - General action" - ] - }, - { - "text": "Ensure the independence, impartiality and effectiveness of the Special Investigations Unit and other relevant human rights institutions in investigating all allegations of torture and other ill-treatment, unlawful killings and deaths in custody", - "values": [ - "4 - General action" - ] - }, - { - "text": "Take concrete actions to consolidate democracy, continue institutional, infrastructural and constitutional reforms to enhance the administration of justice and the rule of law", - "values": [ - "4 - General action" - ] - }, - { - "text": "Submit overdue reports to Treaty Bodies", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Ensure access to safe abortion services and remove punitive provisions imposed on women who undergo abortions", - "values": [ - "4 - General action" - ] - }, - { - "text": "Continue to reduce the gap between urban and rural areas in the field of education", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "This is not to say that Government believes that there is no room for further improvement in the development of economic, social and cultural rights in Tonga. Rather that the Government has taken and will continue to take a range of measures by the adoption of policies and where capacity allows the change of laws that advance the economic, social and cultural well being of the people of Tonga. Further discussion on economic, social and cultural rights and the extent to which they ought to be justiciable is likely to arise in the course of the public consultation on a possible Bill of Rights and Responsibilities either separated from or incorporated into new Constitutional arrangements", - "values": [ - "4 - General action" - ] - }, - { - "text": "Enact draft human trafficking legislation to improve prosecution of trafficking offenders and protections for victims of forced labour and sex trafficking", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Ensure that its legislation is in line with the new Constitution and the rights concerning freedom of expression and freedom of media therein", - "values": [ - "4 - General action" - ] - }, - { - "text": "Make the implementation of anti-trafficking programmes, particularly the intensification of preventive measures and the protection of trafficking victims, a priority", - "values": [ - "4 - General action" - ] - }, - { - "text": "Ensure the promotion of the family and its protection from social, health and security threats", - "values": [ - "4 - General action" - ] - }, - { - "text": "Facilitate the effective functioning of the Transitional Government of National Unity, the implementation of the peace agreement and the establishment of the hybrid court by the African Union", - "values": [ - "4 - General action" - ] - }, - { - "text": "Establish a minimum age of marriage of 18 for both girls and boys", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Ratify the ICCPR as soon as possible", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Ensure respect for the rights and fundamental freedoms of lesbian, gay, bisexual, transgender and intersex persons, by investigating and sanctioning acts of discrimination and violence against such persons", - "values": [ - "4 - General action" - ] - }, - { - "text": "Prohibit and characterize domestic violence and marital rape as crimes", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Adopt comprehensive immigration legislation consistent with their human rights obligations, to ensure non-discrimination and the effective integration of immigrants", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Criminalize the recruitment and participation of children in armed forces and non-State armed groups", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Amend the media law in line with previous recommendations to ensure that all media laws are in line with the right to freedom of opinion and expression", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Fulfil its voluntary pledge on a standing invitation to all the Special Procedures of the Human Rights Council", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "The delegation acknowledged the challenges they have faced in the realm of human rights with a view to dealing with them in a comprehensive manner and said that the Government remained committed to vigorously protecting and promoting the human rights of its people as well as fulfilling all its international human rights obligations.", - "values": [ - "4 - General action" - ] - }, - { - "text": "Continue the realization of measures aimed at promoting tolerance, including religious tolerance, as well as continue its contribution to the dialogue among civilizations at the international level ", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Adopt laws banning child labour and define the minimum age for criminal responsibility, in conformity with the provisions of the international norms related to human rights", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Increase its efforts to contribute to the disarmament, demobilization and reintegration of children involved in armed conflict.", - "values": [ - "4 - General action" - ] - }, - { - "text": "Strengthen efforts to diminish the gap in health care between rural and urban areas", - "values": [ - "4 - General action" - ] - }, - { - "text": "Strengthen its policies to fight violence, especially gender violence and sexual violence", - "values": [ - "4 - General action" - ] - }, - { - "text": "Continue to provide assistance and care for children and ensure that they have access to education and health ", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Adopt a comprehensive legal framework explicitly prohibiting discrimination on the various grounds that are currently subsumed under article 4 of the Declaration of Citizens' Rights", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Step up efforts to ensure provision of free and quality primary and secondary education", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Realize a law on associations and establishment of civil society to enable them to work in independence without being supervised by official authorities ", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Step up its efforts in order to improve the participation of the Roma minority in parliament, having in view the fact that one Roma candidate was elected in the parliamentary elections in 2012", - "values": [ - "4 - General action" - ] - }, - { - "text": "Bring to trial all defendants within a reasonable time, and that systems and procedures are put in place to ensure this", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Consider the elaboration of a national and regional strategy for the prevention of trafficking in human beings and further promote human rights based approach to victims of trafficking", - "values": [ - "3 - Considering action" - ] - }, - { - "text": "Portugal updated the Council on its voluntary commitment to establish a national human rights commission, which would be an inter-ministerial body with the competence to coordinate the implementation at the national level of all its international human rights obligations and voluntary commitments. It would ensure not only the follow-up to the universal periodic review exercise, but also the timely and adequate reporting to all international human rights bodies. It would also ensure the translation of all its international commitments into obligations at the national level, thus leading to national legislation and to the set-up of concrete policies and plans. The institutional set-up of the commission would be approved by the Council of Ministers on 18 March 2010.", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Continue the implementation of the previous recommendations regarding, in particular, the protection of children and increasing access to and the effectiveness of justice", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Given continued concerns regarding lethal use of force, implement the recommendations of the second Turkel Commission report, concerning domestic mechanisms for investigating complaints in relation to violations of the laws of armed conflict", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Introduce transparent procedures in appointing members of the Afghanistan Independent Human Rights Commission and provide sufficient financial assistance to it ", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Continue national efforts to address the prevalence of HIV and AIDS", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Adopt legal or/and social awareness-raising measures to reduce violence against women ", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Raise the minimum age for marriage to comply with international child rights standards in order to prevent early, child and enforced marriages", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Implement the Law on Gender Equality and the gender action plan and ensure their adequate resourcing", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Accelerate efforts in the adoption of the National Human Rights Action Plan", - "values": [ - "4 - General action" - ] - }, - { - "text": "Decriminalize defamation and place it under the Civil Code", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Ratify without delay the Optional Protocol to the Convention on the Rights of the Child on the involvement of children in armed conflict", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Take all the necessary measures in order to protect human rights defenders against threats and attacks, and ensure that the perpetrators of such acts are brought to justice ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Continue to contribute to the strengthening of the system of United Nations human rights on the basis of dialogue, non-politicization and cooperation", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Ensure that each case of torture or ill-treatment by police officers is seriously investigated, prosecuted and punished and that adequate reparation should be granted to victims.", - "values": [ - "4 - General action" - ] - }, - { - "text": "Implement the legal provisions and, where necessary, adopt legal reforms to guarantee family reunification of foreigners who have settled in Denmark, particularly family members of refugees, in accordance with the 1951 Convention Relating to the Status of Refugees and its 1967 Protocol, as well as the 1954 Convention Relating to the status of Stateless Persons and the 1961 Convention on the Reduction of Statelessness ", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Adopt a strategy to ameliorate the living conditions of the Roma population, in particular, amending legislation to ensure access to basic social services, condemn discrimination and to register undocumented Roma refugees.", - "values": [ - "4 - General action" - ] - }, - { - "text": "Ensure the accessibility of school environments, the provision of reasonable accommodation, accessible and adapted materials and curricula, and the compulsory pre-service and in-service training of all teachers on inclusive education and take measures to implement the recommendations of the Committee on the Rights of Persons with Disabilities in this regard", - "values": [ - "4 - General action" - ] - }, - { - "text": "Amend the Protection of Life During Pregnancy Act 2013 that the women interests and health are better protected, especially in instances where the pregnancy resulted from rape or incest, or in cases of severe foetal impairment", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Consider the possibility of furthering the measures to eliminate all discriminatory treatment on the grounds of sexual orientation", - "values": [ - "3 - Considering action" - ] - }, - { - "text": "Develop programmes to combat violence against women ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Maintain and strengthen the measures undertaken to date to ensure the effective promotion and protection of women rights, which obviously requires the provision of the necessary minimum resources for this purposes, as well as the financial support from the international community", - "values": [ - "4 - General action" - ] - }, - { - "text": "Ratify the International Convention on the Protection of the Rights of all Migrant Workers and Members of their Families", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Step up its investment in education, healthcare, employment in order to promote economic and social sustainable development ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Take necessary measures in order to prevent and combat sexual exploitation and abuse of vulnerable people especially in Greenland", - "values": [ - "4 - General action" - ] - }, - { - "text": "Incorporate relevant materials in the school curriculum to combat negative preconception against sections of the French society of migrant background, to complement the national action plan against racism and anti- Semitism ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Consider the creation of a national human rights institution or Office of the Ombudsperson, in conformity with the Paris Principles", - "values": [ - "3 - Considering action" - ] - }, - { - "text": "Increase efforts to ensure that all children born in Paraguay can have their birth registered", - "values": [ - "4 - General action" - ] - }, - { - "text": "Make progress in the appointment of the Ombudsman, in accordance with the Constitution ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Enhance efforts to eliminate existing discriminatory stereotypes regarding the roles and responsibilities of women and men in family as well as in society at large ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Continue efforts to investigate and prosecute crimes related to the sexual exploitation of children", - "values": [ - "4 - General action" - ] - }, - { - "text": "Continue efforts aiming at enhancing human rights education, including training and capacity-building for the public sector", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Address the problem of severely overcrowded prisons to eliminate inhumane conditions and take all measures to prevent torture", - "values": [ - "4 - General action" - ] - }, - { - "text": "Implement further measures to ensure the effective elimination of domestic violence ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Issue a standing invitation to the special procedures and respond in a reasonable period of time to treaty bodies' requests, whether with regard to submitting periodic reports or to responding to communications, as the case may be ", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "The revision and amendment of relevant legislation, in particular Decree 32 of 2006, in order to bring it into full compliance with Bahrain's human rights obligations under the ICCPR ", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Continue and strengthen policies and programmes aimed at enhancing access to justice and redress concerning violations of the rights of persons in vulnerable situations, including persons with albinism", - "values": [ - "4 - General action" - ] - }, - { - "text": "Exert utmost efforts in ratifying the Palermo Protocol", - "values": [ - "4 - General action" - ] - }, - { - "text": "Adopt appropriate legislative and administrative measures to ensure the full realization of the right to drinking water and sanitation for the whole population, with special attention to rural areas ", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Continue its efforts towards protecting human rights, especially through promoting gender equality, and support economic empowerment of women in the country ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Continue the Housing for All policy led by the Government to eradicate by 2030 the problem of homelessness, in conformity with Sustainable Development Goal 11 of the 2030 Agenda", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Encourage declaring an immediate moratorium on all executions and wished Pakistan to move towards abolishing the death penalty.", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Continue to take comprehensive measures to effectively fight against human trafficking and stamp out the associated phenomenon of contemporary forms of slavery", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "The Government reaffirms its commitment to ensure that EAIC will be able to fulfil its statutory function and duties and continues to be allocated the necessary financial and manpower resources in order for it to discharge its mandate effectively and efficiently.", - "values": [ - "4 - General action" - ] - }, - { - "text": "Increase its efforts in order to ensure the participation of women in political processes in the country ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Follow through on recommendations of different treaty bodies regarding the possibility of considering exceptions to the general prohibition of abortion, especially in cases of therapeutic abortion and pregnancies resulting from rape and incest", - "values": [ - "3 - Considering action" - ] - }, - { - "text": "Adopt measures to prevent, punish and eliminate all forms of violence against women, including intra- and extramarital rape, domestic violence and degrading treatment ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Accept and implement the ICJ Advisory Opinion on the Legal Consequences of the Construction of a Wall in the OPT", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Continue strengthening the participation of women, and especially, ensure the adoption of the framework legislation on prevention, sanction and elimination of violence against women and girls", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Implement appropriate measures with respect to the Argentine Supreme Court's decision of 12 March 2012 regarding effective access for female rape victims to safe and legal abortions", - "values": [ - "4 - General action" - ] - }, - { - "text": "Make effective a genuine process of national dialogue with the opposition", - "values": [ - "4 - General action" - ] - }, - { - "text": "Take all necessary measures to increase its efficiency to investigate and prevent extrajudicial killings.", - "values": [ - "4 - General action" - ] - }, - { - "text": "Implement its national housing and national infrastructure plan", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Work with international partners in responding to the protection needs of maritime migrants, asylum seekers and refugees, by developing standardized processing procedures and making necessary upgrades to improve conditions of reception and expulsion centres", - "values": [ - "4 - General action" - ] - }, - { - "text": "Enact further measures in order to address violence in the educational system, particularly by implementing programmes to prohibit and eliminate all forms of corporal punishment", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Share its experiences with other interested countries concerning its efforts to protect human rights, given all its efforts in that area", - "values": [ - "1 - Minimal action" - ] - }, - { - "text": "Continue developing programmes to fight against poverty in Afro- Ecuadorian families and facilitate their full participation in public life", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Identify, together with OHCHR, the possible areas for cooperation in the field of human rights ", - "values": [ - "1 - Minimal action" - ] - }, - { - "text": "Consider adopting new specific legislation to strengthen measures aimed at prosecuting offenders and increasing support to victims of sexual violence and abuse and promote awareness raising-campaigns and educational programs, notably in schools", - "values": [ - "3 - Considering action" - ] - }, - { - "text": "Expedite establishment of a national human rights institution in accordance with Paris Principles", - "values": [ - "4 - General action" - ] - }, - { - "text": "Continue efforts in the field of legislative and institutional developments ", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Ratify the International Covenant on Economic, Social and Cultural Rights (ICESR).", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Continue providing the full exercise of women's rights within the framework of the National Gender Policy", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Make 18 years the minimum age of marriage for women and men", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Intensify its efforts to prevent human trafficking.", - "values": [ - "4 - General action" - ] - }, - { - "text": "Endeavour to abolish the death penalty", - "values": [ - "4 - General action" - ] - }, - { - "text": "Revise its penal code to ensure that its legislation on child pornography covers representation of a child by whatever means for primarily sexual purposes ", - "values": [ - "3 - Considering action" - ] - }, - { - "text": "Fully implement the Domestic Violence Act.", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Continue its efforts in implementing a social security system accessible to urban and rural residents", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Increase, in accordance with international standards, the minimum age of criminal responsibility, as well as the harmonization of domestic legislation with international norms in the area of child labour ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Adopt further legislation that restricts and prevents minors from all consumption of drugs, alcohol and tobacco", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Continue to step up its protection of children's rights and eliminate child labour", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Make progress in eradicating violence against women, stepping up actions such as awareness-raising campaigns and the creation of shelters, and implementing measures to contribute to the eradication of female genital mutilation and child marriage", - "values": [ - "4 - General action" - ] - }, - { - "text": "Promote public awareness and education on provisions under the new Domestic Violence Act of 2015", - "values": [ - "4 - General action" - ] - }, - { - "text": "Sign and ratify as soon as possible the optional protocol to the International Covenant on Economic, Social and Cultural Rights ", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Conduct a review of the effectiveness of its legislation relevant to trafficking in human beings and implement reforms where necessary to strengthen the protection of the rights of victims of trafficking", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Consider revising the minimum age of criminal responsibility", - "values": [ - "3 - Considering action" - ] - }, - { - "text": "Take measures improving the security of citizens and enhancing protection of children", - "values": [ - "4 - General action" - ] - }, - { - "text": "Adopt legislation aimed at ultimately abolishing death penalty.", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Continue to take stronger efforts and measures to improve women's status and promote gender equality", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Seek assistance of the international community in order to be supported in the implementation of recommendations received during this session ", - "values": [ - "1 - Minimal action" - ] - }, - { - "text": "Share the findings of the special bodies created to stop the persistent pattern of enforced disappearances and the measures put into place to address this problem.", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Establish a comprehensive transitional justice mechanism, including operationalizing of an Office of Missing Persons, a truth-seeking commission, an Office of Reparations and a judicial mechanism with a special counsel, as committed to", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Take further measures to ensure equality and non-discrimination of men and women in law and practice, including in access to land, employment and economic and political participation", - "values": [ - "4 - General action" - ] - }, - { - "text": "Continue improving accessibility for persons with disabilities in a global and inclusive manner in accordance with the Convention on the Rights of Persons with Disabilities", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Enhance its efforts to create an environment in which journalists, human rights defenders and NGOs can freely operate according with international standards ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Continue to consolidate the Human Rights Network of the Executive branch ", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Formalize this approach (of not carrying out the death penalty) by ceasing the imposition of death sentences and ratifying the Second Optional Protocol to the International Covenant on Civil and Political Rights, aiming at the abolition of the death penalty ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Ensure that all allegations of violent acts perpetrated by security forces or penitentiary personnel be the subject of a prompt, independent and effective investigation to avoid impunity ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Extend the mandate of the Federal Commission to deal with complaints of racism and incitement to xenophobia", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Continue to protect human rights and especially the rights of children", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Consider acceding to the International Convention for the Protection of All Persons from Enforced Disappearance", - "values": [ - "3 - Considering action" - ] - }, - { - "text": "Review counter-terrorism legislation", - "values": [ - "3 - Considering action" - ] - }, - { - "text": "Guarantee that lesbian, gay, bisexual, transgender and intersex persons have full and equal enjoyment of their human rights by repealing the norms that criminalize and stigmatize them", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Ratify the European Charter for Regional or Minority Languages, the leading instrument in this respect", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Boost its activities to combat discrimination against migrant workers", - "values": [ - "4 - General action" - ] - }, - { - "text": "Adopt comprehensive legislation to combat all forms of discrimination, in line with its obligations and international standards", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Undertake measures to avoid overcrowding in prisons, including, when appropriate, alternatives of social reintegration instead of imprisonment, as well as avoiding prolonged periods of pretrial detention ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Continue the endeavours that have been made to keep all persons informed and aware of the possibility of gaining access to educational and cultural institutions ", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Put in place measures for the safety and security of foreign workers and effectively implement the Anti-Human Trafficking Act", - "values": [ - "4 - General action" - ] - }, - { - "text": "Guarantee the complete prohibition of torture in all prisons under its control ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Take concrete steps to strengthen its cooperation with the special procedures of the United Nations, in particular those of the Human Rights Council", - "values": [ - "4 - General action" - ] - }, - { - "text": "Abolish corporal punishments such as flogging and, in a few cases, amputation of limbs, as they are in violation of article 7 of ICCPR.", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Make every effort to impede the use of torture, to assure humane conditions for prisoners in conformity with international standards and to abide by international humanitarian law", - "values": [ - "4 - General action" - ] - }, - { - "text": "Raise awareness among its people of laws and regulations so that they can exercise their rights effectively and adequately ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Ensure the inclusion of all parts of the society in the drafting of laws", - "values": [ - "4 - General action" - ] - }, - { - "text": "Commit more resources to housing development for low-income families and focus on committing more resources to the health sector, especially in rural areas and other less-developed areas.", - "values": [ - "4 - General action" - ] - }, - { - "text": "Take the necessary measures to ensure the protection of human rights defenders that are at risk ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Continue its meritorious efforts to prosecute violent hate crimes, including racist and xenophobic crimes", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Further focus on the respect of human rights", - "values": [ - "4 - General action" - ] - }, - { - "text": "Continue its efforts and dedication to ensure education enrolment for all categories of society", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Focus on the successful implementation of the Act on Promotion of Women\u2019s Participation and Advancement in the Workplace as well as to share its best practices of their experiences in the achievement of women employees in the country", - "values": [ - "4 - General action" - ] - }, - { - "text": "Take measures to reduce the phenomenon of violence against women", - "values": [ - "4 - General action" - ] - }, - { - "text": "Ratify CRPD to better ensure the rights of such persons ", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Pursue appropriate, efficient policies to eliminate the social exclusion of the most vulnerable groups, in particular mentally disabled children, immigrant and refugee children and children from ethnic minorities at schools ", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Adopt the Right to Information Bill, building on its efforts to improve good governance, accountability and transparency", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Share best practices and experience in the field of MDG 1with interested countries, inter alia by contributing actively to the strengthening of South-South cooperation in this regard.", - "values": [ - "1 - Minimal action" - ] - }, - { - "text": "Strengthen women\u2019s rights, in particular with respect to representation in public life, as well as the fight against domestic violence and the wage gap between women and men", - "values": [ - "3 - Considering action" - ] - }, - { - "text": "Continue its efforts to investigate, prosecute and convict trafficking offenders", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Continue to increase community awareness of domestic violence and give particular attention to the needs of families caring for older persons ", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Increase the availability of preschool facilities in rural areas and ensure that members of the Roma community are not discriminated against and that they have equal access to education", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Increase the visibility of Slovenian television programmes throughout the Friuli-Venezia Giulia autonomous region, as stipulated in article 19 of law No. 103-75", - "values": [ - "4 - General action" - ] - }, - { - "text": "Repeal the legal provision that designates the husband as the administrator of marital property", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Engage in bringing Tajikistan's legislation in line with the country's international and Organization for Security and Cooperation in Europe commitments to protect freedom of religion", - "values": [ - "4 - General action" - ] - }, - { - "text": "Ratify the Rome Statute of ICC and incorporate it into its national law ", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Strengthen the functioning of the National Commission against Racial Discrimination Racism, Xenophobia and Related Forms of Intolerance in favour of intercultural dialogue, tolerance and awareness-raising programmes", - "values": [ - "4 - General action" - ] - }, - { - "text": "Adopt and implement improvements to the legislation relating to children, in particular, increase the minimum age of criminal responsibility to an internationally acceptable level, address the high rate of child labour, prohibit the forced marriage of children, and end violence and sexual exploitation, including abuse, neglect and ill-treatment", - "values": [ - "4 - General action" - ] - }, - { - "text": "Implement measures to mitigate the environmental impact of the exploitation of oil and gas and oil spills in the territories of indigenous peoples, on their communities and give further attention to environmental degradation", - "values": [ - "4 - General action" - ] - }, - { - "text": "Guarantee respect for freedom of information and expression, especially regarding the press, both local and foreign, and the political sphere ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Consider ratifying the Optional Protocol to the International Covenant on Economic, Social and Cultural Rights as recommended by the CRC ", - "values": [ - "3 - Considering action" - ] - }, - { - "text": "Take measures to eliminate discrimination and xenophobia and to combat the root causes of racial discrimination", - "values": [ - "4 - General action" - ] - }, - { - "text": "Remove the provisions concerning criminal libel against journalists", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Ensure prosecution and punishment for acts of violence against women ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Ensure that everyone, including human rights defenders, members of civil society and journalists can exercise their legitimate activities, even their rights to freedoms of expression and assembly in accordance with the obligations under the International Covenant on Civil and Political Rights ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Condemn any manifestation of racism, discrimination, xenophobia and Islamophobia in political statements and pursue its efficient measures to combat these phenomena in official and media sectors and within the public at large ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Accept the recommendations of UNHCR on refugee issues including the adoption of national asylum legislation ", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Endeavour to sustain its Senior Citizens Activity Centre to enable youth to learn from the experience of the elderly ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Adopt a specific plan to protect the rights of indigenous peoples and a strategy to make basic services more accessible to the Pygmy minority", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Honduras recognized that the review was an opportunity for the strengthening of its national capacities and to guide it in addressing its immediate challenges, in particular with regard to its voluntary commitments, including the following: (a) Starting the process for the preparation and drafting of the national human rights plan of action with the participation of thematic working groups, organizations of civil society, interested groups and institutions with a mandate to promote and protect human rights, (b) Generating a debate in the National Congress and civil society with a view to harmonizing the regulatory framework of the Telecommunications Sector Law and ensuring that it is was line with the international human rights conventions and standards, in particular with regard to the levels of public, private and community broadcasting, (c) Promoting the reform of article 209-A of the Criminal Code, referring to the offence of torture, with a view to harmonizing it with the Optional Protocol to the Convention against Torture, (d) Promoting discussion of the draft law against trafficking in persons and sexual and commercial exploitation, which prohibited and punished all forms of such offences, in accordance with the relevant Protocol, (e) Increasing the efforts of the State to improve conditions for citizen security, considering as priority elements attention to victims of violence and crime, arms control, the professionalization and modernization of the national police and armed forces, and making accountable all authorities responsible for the implementation of the policy and strategy on citizen security.", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Revise laws discriminating against LGBTI persons, including refraining from signing into law any new legislation criminalizing LGBTIs", - "values": [ - "4 - General action" - ] - }, - { - "text": "Adopt the measures necessary to ensure the independence of the judicial branch from the executive branch in order to promote the rule of law and guarantee the proper functioning of the Constitutional Court and the Supreme Court", - "values": [ - "4 - General action" - ] - }, - { - "text": "Remove from the Penal Code (arts. 218, 220, 221, 227) any references to marital relations between victim and perpetrator of offences, in order to ensure that there is no impunity in cases of marital rape ", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Ensure that evictions are carried out in full compliance with the guarantees required by international human rights law and that those who are evicted are provided with adequate housing ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Provide all necessary support to the Human Rights Defenders and Journalists Protection Mechanism and ensure full cooperation and its implementation at state and municipal levels", - "values": [ - "4 - General action" - ] - }, - { - "text": "Consider the ratification of the core human rights instruments to which it is not yet a State party", - "values": [ - "3 - Considering action" - ] - }, - { - "text": "Enhance the adoption and implementation of measures to fight domestic violence against women and to protect the victims of domestic violence", - "values": [ - "4 - General action" - ] - }, - { - "text": "Strengthen its protection efforts to face the dangers of natural disasters and encourage the international community to provide the necessary assistance", - "values": [ - "4 - General action" - ] - }, - { - "text": "Revise the Peaceful Assembly Act so that there is no discrimination and hindrance in the organization of peaceful public gatherings and protests", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Speed up the process of ratification of the Optional Protocol to the Convention on the Elimination of All Forms of Discrimination against Women and the Optional Protocol to the Convention against Torture", - "values": [ - "4 - General action" - ] - }, - { - "text": "Continue its efforts to improve access to health-care services", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Accede to the Convention on the Non-Applicability of Statutory Limitations to War Crimes and Crimes against Humanity", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Take measures to put an end to racial discrimination and to make the required declaration that recognizes the competence of the Committee on the Elimination of All Forms of Racial Discrimination in order to receive and review communications", - "values": [ - "4 - General action" - ] - }, - { - "text": "Fully fund the TRCT's budget and staffing and to ensure it has sufficient powers and access to information to undertake its mandate", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Adopt necessary measures and legislation to protect the rights of all migrant workers in the country", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Continue to promote human rights education with a particular focus on interfaith and intercultural dialogue", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Adopt and implement the Law on Protection from Discrimination and ensure effective access to judicial remedies for victims of discrimination. ", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Consider introducing provisions explicitly prohibiting corporal punishment against children", - "values": [ - "3 - Considering action" - ] - }, - { - "text": "Further strengthen the rule of law and institutions to enforce social cohesion, tolerance and equality in order to comprehensively guarantee human rights for her people, in particular the vulnerable groups", - "values": [ - "4 - General action" - ] - }, - { - "text": "Revise the legislation on the age of criminal responsibility ", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Continue to move forward its poverty reduction strategy and protect the rights of vulnerable groups so as to achieve sustainable economic and social development ", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Ensure that judges of the Supreme Court are not subjected to any form of political influence in their decision-making and that their appointment is transparent", - "values": [ - "4 - General action" - ] - }, - { - "text": "Strengthen the judicial system in order to ensure respect for due process, and reform the system of pre-trial detention", - "values": [ - "4 - General action" - ] - }, - { - "text": "Ratify the International Convention on the Rights of All Migrant Workers and Members of Their Families ", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Promote awareness-raising campaigns on preventing discrimination and bullying based on sexual orientation and gender identity to the broader public, and in particular to students and teachers", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Prohibiting corporal punishment in all settings, including in the home ", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Put an end, by royal decree, to the system of guardianship of adult women", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Sign and ratify the International Convention on the Protection of All Persons from Enforced Disappearance.", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Implement the full abolition of the death penalty ", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Promote and ensure freedom of religion for all individuals of all faiths ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Strengthen measures for the rehabilitation and social integration of women and girls victims of trafficking ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Respect the right of the Palestinians to self-determination and the establishment of their independent State with Jerusalem as its capital.", - "values": [ - "4 - General action" - ] - }, - { - "text": "Extend an open and standing invitation to the special procedures, as a gesture of Lebanon's openness and commitment to cooperate with the human rights international mechanisms.", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Continue efforts to consolidate national reconciliation as a lasting response to the aftermath of the armed conflict", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Appropriately investigate deaths which have occurred in the course of police operations associated with the war on drugs", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Renewed cooperation with ICRC, including allowing it access to all places of detention", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Continue to align its national legislation with international human rights instruments to which it is a State party", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Strengthen cooperation between government agencies with Human Rights National Commission and civil society to coordinating, planning and implementing the National Human Rights Action Plan", - "values": [ - "4 - General action" - ] - }, - { - "text": "Eliminate use of the death penalty", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Continue with the positive steps it has taken in the implementation of the Bangalore Principles of Judicial Conduct", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Implement fully the following recommendations of the Committee on the Rights of the Child: a ensure adequate resources to investigate cases of sexual abuse and exploitation and prosecute and impose adequate sentences for such crimes - b make combating discrimination against vulnerable girls a national priority and adopt a comprehensive strategy to eliminate discrimination on any grounds against all vulnerable groups - c enhance the security in refugee camps and take all necessary measures to protect girls against sexual exploitation, establish accessible complaints mechanisms, investigate cases of abuse fully and prosecute the perpetrators ", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Ensure that legislative measures are taken in order to improve the protection of the human rights of inmates and detainees, including passing the Malawi Prison Bill into law ", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Establish a national human rights institution accredited by the International Coordinating Committee of National Human Rights Institutions ", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Set a higher age of criminal responsibility for children and take all necessary measures to establish a specialised juvenile justice system, where children are treated in accordance with the principle of the best interest of the child ", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Continue strengthening its social policies in favour of the most vulnerable sectors of its people, with emphasis on national minorities", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Protect the right to the family, being the natural and fundamental group of society based upon the stable relationship between a woman and a man ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Further promote economic and social development and urge the international community to honour its commitment of assistance, making more investment in the field of welfare and assisting the sustainable development for Afghanistan ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Continue to ensure the human rights of the Aboriginal people, including by realizing their economic, social and cultural rights ", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Proceed with the early ratification of the remaining important international human rights treaties, in particular the Convention on the Rights of Persons with Disabilities and the International Convention for the Protection of All Persons from Enforced Disappearance", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Establish an immediate official moratorium on the use of death penalty", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Consider reviewing its Personal Status Law, Labour Law as well as any other related laws with a view to eliminate discrimination against women ", - "values": [ - "3 - Considering action" - ] - }, - { - "text": "Expand cooperation with the special procedures, including with the Special Rapporteur on torture and other cruel, inhuman or degrading treatment and punishment, and the Special Rapporteur on violence against women, its causes and consequences ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Continue implementing actions aimed at reducing maternal mortality from indirect causes ", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Consider the possibility of establishing a strategy for affirmative actions for the population in situation of poverty", - "values": [ - "3 - Considering action" - ] - }, - { - "text": "Identifying sectors with the high potential for contributing to growth levels of between 5 and 97 percent per annum, including creation of 10 000 jobs per year on average thus broadening the skills base to take into account the needs of the labour market. A strategy aligned to the National Strategic Development Plan (NSDP) will be developed that would consist of an investment plan, monitoring framework, inclusive and create jobs so as to foster economic growth.", - "values": [ - "4 - General action" - ] - }, - { - "text": "Take effective and concrete steps to ensure that those responsible for the events of 28 September 2009 are held accountable ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Establish an independent National Human Rights Commission in conformity with the Paris Principles", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Revise the Press and Publication Law with a view to removing criminal liability for activities that constitute the legitimate exercise of freedom of expression and to adopt safeguards for guaranteeing the exercise of this right ", - "values": [ - "3 - Considering action" - ] - }, - { - "text": "Continue its efforts in legal and judicial reforms, economic development and other areas towards promoting a harmonious society, democracy, the rule of law and human rights", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Adopt measures to guarantee the freedom of the press in line with international standards", - "values": [ - "4 - General action" - ] - }, - { - "text": "Continue with its efforts to further accelerate its holistic and multifaceted approach to promoting and protecting human rights and freedoms ", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Introduce special measures aimed at increasing greater women's political participation", - "values": [ - "4 - General action" - ] - }, - { - "text": "Ensure safe repatriation and reintegration of Eritrean nationals without any fear of persecution in accordance with Eritrea's obligations under international human rights law and allow for international monitoring ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Develop a well-defined legal framework to prevent and combat violence against women and build a social protection system for victims of domestic violence", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Review convictions, commute sentences, or drop charges for all persons imprisoned solely for non-violent political expression", - "values": [ - "3 - Considering action" - ] - }, - { - "text": "Provide freedom to the people of \u201cPakistan-occupied Kashmir\u201c by ending its illegal and forcible occupation", - "values": [ - "3 - Considering action" - ] - }, - { - "text": "Prevent, investigate and prosecute inhumane treatment in prayer camps or witch camps and psychiatric hospitals. Address societal attitudes condoning such violations and abuses of rights of persons with mental disabilities", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Advance the ratification of the pending international instruments, including the International Convention on the Protection of the Rights of All Migrant Workers and Members of Their Families, in accordance with the recommendations of the Committee on the Elimination of Racial Discrimination", - "values": [ - "4 - General action" - ] - }, - { - "text": "Include penalization of sexual harassment in its national legislation", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Respect the right to vote of all inmates", - "values": [ - "4 - General action" - ] - }, - { - "text": "Ratify the Agreement on the Privileges and Immunities of the International Criminal Court ", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Permit genuine expression of dissent by releasing political prisoners, allowing the elected National Assembly to carry out its functions and permitting peaceful protest and independent media reports", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Persist in its efforts in order to redress remaining gender inequalities, in particular with regard to the employment of women in the private sector ", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Redouble efforts to reduce the maternal mortality rate and increase the health budget in order to guarantee a national health system based on equity and accessibility, as stated in paragraph 48 of the national report", - "values": [ - "4 - General action" - ] - }, - { - "text": "In line with article 1 of the French Constitution, take further measures to combat racial discrimination, xenophobia and other forms of intolerance and address related issues such as access to education, employment, housing and health of the people belonging to minority groups", - "values": [ - "4 - General action" - ] - }, - { - "text": "Increase the effectiveness of investigations in order to hold accountable perpetrators of killings motivated by gender prejudice", - "values": [ - "4 - General action" - ] - }, - { - "text": "Ensure that laws prohibiting children from participating in hazardous occupations or activities are precise and enforced", - "values": [ - "4 - General action" - ] - }, - { - "text": "Adopt an integrated gender mainstreaming strategy, including through the use of gender-budgeting processes, also taking into consideration Sustainable Development Goal 5 of the 2030 Agenda for Sustainable Development", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Examine the possibility of establishing national helplines for victims of trafficking and domestic violence", - "values": [ - "4 - General action" - ] - }, - { - "text": "Introduce specific education programmes and sensitivity trainings for all relevant judiciary and police personnel aimed specifically at the protection of human rights of non-governmental organization activists and members of minorities, including national minorities and persons of minority sexual orientation and gender identity.", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Pursue the efforts aiming at promoting women rights and ensuring gender equality, with particular attention to the access of women to justice and women participation in public life ", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Consider implementing the recommendations of human rights treaty bodies and special procedures concerning indigenous people ", - "values": [ - "3 - Considering action" - ] - }, - { - "text": "Accede to and implement OP-CAT ", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Take measures to prevent domestic violence, ensure equal rights and equal political participation of women, and take all the necessary steps to effectively implement the Act on the Prohibition of Female Genital Mutilation adopted in 2010", - "values": [ - "4 - General action" - ] - }, - { - "text": "Create a government task force to create protection programmes, provide resources for recovery and promote prevention through education and media campaigns ", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Revise the Omani Nationality Law, to guarantee citizenship for children born to non-Omani fathers", - "values": [ - "3 - Considering action" - ] - }, - { - "text": "Increase programs of obstetric, prenatal and neonatal care and attendance at deliveries by medical and paramedical professionals in order to continue reducing maternal, foetal and new-born mortality ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Repeal the legal provisions that provide for the criminalization of lesbian, gay, bisexual, transgender and intersex persons, in respect of the principle of non-discrimination", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Ensure the revised Child Care and Protection Act prohibits all corporal punishment of children, including in the home, and explicitly repeals the right to administer reasonable and moderate punishment", - "values": [ - "4 - General action" - ] - }, - { - "text": "Establish measures for displaced persons to have particularly better access to the land and to improve their shelters and infrastructures nearby ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Make a long-term plan for the step-by-step ratification of or accession to all core international human rights instruments ", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Continue and increase its efforts with a view to fully combating trafficking and prostitution, and continue efforts to help women who have been victims of trafficking. ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Continue the on-going efforts to strengthen the independence of the judiciary ", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Further expand the educational activities in the field of human rights with the focus on law enforcement, civil service and vulnerable groups", - "values": [ - "4 - General action" - ] - }, - { - "text": "Consider enacting specific legislation to prohibit racial discrimination ", - "values": [ - "3 - Considering action" - ] - }, - { - "text": "Intensify its efforts to ratify the OP-CRC-AC", - "values": [ - "4 - General action" - ] - }, - { - "text": "Adopt legislative measures to guarantee the right to education for all migrant boys and girls ", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Submit the second and third reports to the Committee on the Rights of the Child", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Abolish the death penalty or, if not, establish a moratorium, consistent with Australia's support for its universal abolition", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Continue the current efforts to consider the strengthening of environmental legislation and policies, and that the establishment of legal advisory and enforcement capacity on environment should be considered as priority needs and actions ", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Give access to justice and adequate compensation to women victims of forced sterilization, independently of the date of the sterilization, ethnic origin, nationality or age", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Become party to ICERD", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Widen the scope of international obligations through accession to the remaining international treaties, such as the International Convention on the Protection of the Rights of All Migrant Workers and Members of Their Families, and the Optional Protocol to the Convention on the Rights of the Child on a communications procedure and the Optional Protocol to the International Covenant on Economic, Social and Cultural Rights", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Address discrimination against children on the basis of their ethnic origin or economic situation", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Consider removing the exception relating to marital rape from the definition of rape in section 375 of the Indian Penal Code", - "values": [ - "3 - Considering action" - ] - }, - { - "text": "Make further efforts towards the promotion of tolerance among all citizens, regardless of their origin or ethnic background ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Become a party to the International Convention for the Protection of All Persons from Enforced Disappearance", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Continue towards ratification and implement of CEDAW ", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Continue its effort to ensure rights of migrants in the country as well as abroad", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Further engage in facilitating administrative procedures for birth registration, especially for disadvantaged children coming from rural and poor areas", - "values": [ - "4 - General action" - ] - }, - { - "text": "Effectively implement and establish the necessary institutional mechanisms to ensure the enforcement of existing laws prohibiting torture and dismissing illegally obtained evidence", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Submit the Prisons Bill (2003) to Parliament for its consideration at the earliest opportunity and take meaningful action to deal with prison overcrowding, in particular through reducing the extraordinary periods of pretrial detention faced by many detainees", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Due to the criminalization of irregular residency in the country, design alternatives for the detention of irregular or undocumented immigrants ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Sign and ratify the International Convention for the Protection of All Persons from Enforced Disappearance and recognize the competence of the Committee on Enforced Disappearances in conformity with articles 31 and 32 of the Convention", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Continue measures for combating human trafficking, including by broadening international, regional and bilateral cooperation", - "values": [ - "4 - General action" - ] - }, - { - "text": "Take effective measures to reduce the high maternal mortality rate ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Take further steps to eliminate female genital mutilation", - "values": [ - "4 - General action" - ] - }, - { - "text": "Continue strengthening its efforts to promote the rights of women and children", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Continue to boost its well-established education policies which guarantee a quality education system for all", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Adopt an appropriate law on national minorities", - "values": [ - "4 - General action" - ] - }, - { - "text": "Develop and implement regulations and practices to ensure transparency in the ownership of media in order to prevent undue influence over editorial material by politicians, businessmen and other centres of power ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Request, if required, technical assistance from development partners in delivering on its reporting obligations and on the domestication of international conventions as called for under paragraphs 131 and 132 of the national report ", - "values": [ - "1 - Minimal action" - ] - }, - { - "text": "Actively include civil society in the implementation of the Human Rights Strategy Action Plan 2014-2016 and create a formalized dialogue with civil society to this effect, in order to provide for better monitoring of the implementation of the Action Plan", - "values": [ - "4 - General action" - ] - }, - { - "text": "Continue implementation of the national policy for a comprehensive protection of children and adolescents for the period 2013-2023", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Introduce effective policies with more resources to reduce the dropout rate at all school levels ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Promptly ratify the Optional Protocol to the Convention on the Rights of the Child on the involvement of children in armed conflict", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Allocate substantial funds for addressing the situation of the internally displaced persons and refugees to internal organizations and NGOs", - "values": [ - "4 - General action" - ] - }, - { - "text": "Maintain its efforts for the incorporation of the provisions of the Convention on the Rights of the Child in its national legislation and public policies", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Continue building on ongoing efforts by fostering open discussions in communities still engaging in female genital mutilation practice ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Take measures to combat inequality between men and women and to improve the representation of women in economic and political life", - "values": [ - "4 - General action" - ] - }, - { - "text": "Turn the de facto moratorium existing since 2002 into a de jure moratorium with a view to the definitive abolition of the death penalty for all cases, including serious crimes - commute the current death penalties to penalties of deprivation of liberty - sign and ratify the Second Optional Protocol to the International Covenant on Civil and Political Rights - and that the draft constitution currently in progress include provisions on the abolition of the death penalty", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Continue efforts aimed at submitting overdue national human rights reports, and respond positively to requests made by special procedures mandate holders ", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Continue to enhance its domestic policies and laws to further develop an inclusive living environment for persons with disabilities", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Disseminate and expand the understanding of the concept of social responsibility of the capital and encourage businessmen and the private sector to contribute to a comprehensive human development process, including through voluntary initiatives and charity work", - "values": [ - "4 - General action" - ] - }, - { - "text": "Put into effect its undertaking of previous commitment to implement this year, in strengthening the free health care sector to include all children under the age of twelve", - "values": [ - "4 - General action" - ] - }, - { - "text": "Strengthen the mandate and resources of the Ombudsman's Office in order to ensure full implementation of the duties in accordance with the Law on the Protector of Human Rights and Freedoms", - "values": [ - "4 - General action" - ] - }, - { - "text": "Strengthen its efforts to protect the basic rights of inmates in vulnerable situations and ensure that inmates have access to and knowledge of the proper complaint mechanisms ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Further intensify efforts to ensure equal access to quality education, and expand primary education to children in their mother tongue ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Repeal all provisions which may be applied to criminalize sexual activity between consenting adults", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Allocate the resources necessary for the full implementation of the "Zero Tolerance Campaign against Gender Based Violence, Including Human Trafficking", and ensure engagement at the highest political level in the campaign to highlight the unacceptability of violence against women and address the attitudes and stereotypes that perpetuate discriminatory practices that are harmful and violent toward women ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Continue efforts to fight against discrimination against women and all violence against women, especially domestic violence", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Continue its fruitful endeavours in advancing the use of internet services ", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Finalize the national action plan to combat sexual violence and take appropriate measures to prevent and protect all civilians from all forms of violence and to fight impunity ", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Step up its efforts in pursuing the ratification of other relevant international human rights instruments", - "values": [ - "4 - General action" - ] - }, - { - "text": "Grant greater access to Tibetan areas for OHCHR and other United Nations bodies, as well as diplomats and the international media", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Improve health indicators, particularly decrease maternal Mortality Rates which remain short of the 2015 MDG's target ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Consider ratifying the CRPD, along with the two Optional Protocols to the CRC, to which it is a signatory", - "values": [ - "3 - Considering action" - ] - }, - { - "text": "Put in place and implement national standards and mechanisms to monitor the quality of education", - "values": [ - "4 - General action" - ] - }, - { - "text": "Continue implementing measures to protect elderly workers ", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Continue efforts to efficiently combat discrimination against non-Muslim minorities", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Continue cooperation with international human rights institutions and treaty bodies and continue its efforts to spread a culture of human rights and publicize the human rights instruments to which it is a party and build, with the support of OHCHR, the necessary national capacity for the preparation of the periodic reports to treaty bodies", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Examine and revise the recently adopted Law on Societies to ensure that the provisions of this law are in line with international human rights standards and in particular with the right to the freedom of association enshrined in the ICCPR ", - "values": [ - "3 - Considering action" - ] - }, - { - "text": "Furthering efforts to ensure that the abortion laws are brought into line with Chile's human rights obligations", - "values": [ - "4 - General action" - ] - }, - { - "text": "Harmonize civil, religious and customary legislation with articles 15 and 16 of the Convention on the elimination of all forms of discrimination against women (CEDAW), specifically through revising and amending the current version of the bill on Marriage and Divorce, ensuring that it does not discriminate against women ", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Eliminate existing norms against homosexuality, in particular articles 137, 153, and 156 of the Penal Code", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Strengthen its child protection system by enhancing its efforts to end or limit the institutionalization of children under 3 years of age", - "values": [ - "4 - General action" - ] - }, - { - "text": "Continue its efforts in fighting corruption at all levels", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Sign and ratify the Convention against Torture and Other Cruel, Inhuman or Degrading Treatment or Punishment and its Optional Protocol, the Convention on the Rights of Persons with Disabilities, the First and Second Optional Protocols to ICCPR, the Optional Protocol to the International Covenant on Economic, Social and Cultural Rights and ultimately the International Convention for the Protection of All Persons from Enforced Disappearance ", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Intensify its fight against discrimination of which people of African descent are victims and take appropriate measures to reduce inequalities affecting them in the areas of employment, housing and education ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Identify fields in which improvement can still be made, and compare Panama's experiences with those of other United Nations Members ", - "values": [ - "1 - Minimal action" - ] - }, - { - "text": "Ensure the effective functioning of the National Council for Civil Liberties and Human Rights", - "values": [ - "4 - General action" - ] - }, - { - "text": "Continue its efforts to establish a national human rights commission, which is an essential tool to promote and protect human rights", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Promote and implement programmes and policies to improve the situation of minorities and to support them at the linguistic, cultural and social levels", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Make additional efforts to fight against corruption and promptly accede to the United Nations Convention against Corruption to ensure that society can better benefit from the economic and commercial development of the country ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Extend an invitation to the Special Rapporteur on Torture ", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Extend the juvenile justice system to the whole country and create alternative forms of deprivation of liberty for children in conflict with the law.", - "values": [ - "4 - General action" - ] - }, - { - "text": "To evaluate, and monitor the effectiveness of the measures taken with regard to combating trafficking of human beings, the protection of victims, and bring to justice those involved in human trafficking ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Stop and redress the violation of Roma children's rights to education and freedom from discrimination in policy, law and practice to ensure that anti-discrimination policies can be effectively implemented in practice", - "values": [ - "4 - General action" - ] - }, - { - "text": "Continue the cooperation with OHCHR to receive technical assistance in the strengthening and guarantee of the independence of the judiciary, ensuring access to justice for all citizens", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Criminalize marital rape", - "values": [ - "1 - Minimal action" - ] - }, - { - "text": "Ensure that all asylum seekers and refugees who arrive in Australia are processed there regardless of their mode of arrival and ensure that the conditions at the offshore processing centers comply with international law and standards", - "values": [ - "4 - General action" - ] - }, - { - "text": "Sign the Convention against Torture", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Reinforce implementation of the relevant legal and policy framework with a view to combating efficiently trafficking in women, providing victims with all necessary assistance including legal redress, rehabilitation and social integration ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Take immediate steps to stop the arrests of human rights defenders and political dissidents, in accordance with its international human rights obligations", - "values": [ - "4 - General action" - ] - }, - { - "text": "Create a more diverse, inclusive police force, reflective of society ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Consider taking steps to eliminate all mandatory death penalty sentences, and impose a moratorium on the application of the death penalty with the view of abolishing it", - "values": [ - "3 - Considering action" - ] - }, - { - "text": "Redouble efforts to sensitize and to train law enforcement officials on human rights criteria related to their fields of work", - "values": [ - "4 - General action" - ] - }, - { - "text": "Continue its cooperation with the Human Rights Council and its mechanisms and extend an open invitation to the Special Procedures", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Ensure the implementation of child labour laws, including by strengthening effective monitoring", - "values": [ - "4 - General action" - ] - }, - { - "text": "Provide more resources for the enjoyment of social and economic rights of vulnerable groups like women, children, persons with disabilities and minorities ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Extradite the confessed terrorist Luis Posada Carriles ", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Step up the implementation of existing legislation against sexual exploitation of children and adolescents in the country, as well as in its territorial waters, including through raising public awareness on how to prevent and fight this unacceptable practice", - "values": [ - "4 - General action" - ] - }, - { - "text": "Ratify the First Optional Protocol to the International Covenant on Civil and Political Rights ", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Consider adoption of a moratorium on executions with a view to abolishing the death penalty ", - "values": [ - "3 - Considering action" - ] - }, - { - "text": "Take the measures necessary to accelerate the application of the law on the reception and integration of foreigners", - "values": [ - "4 - General action" - ] - }, - { - "text": "Repeal legislation that does not comply with international human rights law, in particular the amendment to the Information and Communication Act, enacted in 2013 and the amendment to the Criminal Code, enacted in 2013", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Strengthen women\u2019s access to employment and guarantee the promotion and development of their careers in full equality with men", - "values": [ - "4 - General action" - ] - }, - { - "text": "Continue implementing programs on growth employment and poverty reduction for 2012-2016, promote economic and social development, and promote and protect better all the rights of its people", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Ensure that legislation to counter torture goes beyond just police forces and instead covers all public bodies, and that it includes mechanisms for giving reparations to victims", - "values": [ - "4 - General action" - ] - }, - { - "text": "Take an active part in rescue operations at sea particularly for boat people and provide instant refuge for them.", - "values": [ - "4 - General action" - ] - }, - { - "text": "Fully implement the standing invitation extended to the United Nations human rights special procedures", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Increase the availability of preschool facilities in rural areas", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Establish a moratorium on the death penalty and advance towards the total abolition of this practice", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Urgently address, the anomaly - accepted by the Government - regarding citizenship status for residents of non-African descent ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Take further steps to eradicate all forms of discrimination and violence against minority communities, including women and girls, and implement the recent recommendations in this regard from the Committee on the Elimination of Discrimination Against Women", - "values": [ - "4 - General action" - ] - }, - { - "text": "Ratify the Kampala amendments to the Rome Statute, if possible with a view to contributing to the activation of the jurisdiction of the ICC over the crime of aggression at the beginning of 2017 ", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Continue its positive measures in the advancement of women and children in the country including by ensuring effective implementation of its policies and programmes", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Continue the search for appropriate solutions to the challenges outlined in the report and with which citizens are faced with regard to the full enjoyment of basic political, economic, social and cultural rights", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Take all possible measures with the assistance of the international community to eradicate illiteracy and to ensure access to education especially for girls and women.", - "values": [ - "4 - General action" - ] - }, - { - "text": "Enact specific legislation in domestic law to criminalize the offence of torture which is fully compliant with the requirements of the Convention against Torture ", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Conclude rapidly the process of ratification of the Optional Protocol to the Convention against Torture, as well as the process of harmonization of its national legislation with the provisions of the Rome Statute ", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Continue and redouble its efforts to combat trafficking in persons and modern slavery, including through better law enforcement to end impunity for human traffickers and through initiatives aimed at destigmatizing and rehabilitating victims of trafficking", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Improve procedures aimed at raising the percentage of children registered at birth. ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Increase efforts necessary to ensure that education for boys and girls is free, compulsory and accessible ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Strengthen measures towards the integration of children with disabilities into formal education mechanisms", - "values": [ - "4 - General action" - ] - }, - { - "text": "Continue its efforts to ensure that the universal health-care scheme covers disadvantaged groups, including persons with disabilities and persons living in remote rural areas that still face obstacles in accessing basic healthcare services", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Ensure that the rights of women and girls are protected during the recovery process, including protecting them from violence ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Continue to fully involve the national civil society in the follow-up to the UPR of India as was done for its preparation.", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Start the ratification process of the international instruments already signed", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Prohibit and eliminate all forms of corporal punishment ", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Repeal the provisions in its Penal Code which criminalize consensual same-sex activities between adults", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Respect the freedom of opinion and expression and to abstain from imposing penal sanctions on journalists because of their articles.", - "values": [ - "4 - General action" - ] - }, - { - "text": "Extend a standing invitation for country visits ", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Ensure that persons with disabilities have appropriate access to facilities and services, including education, information, and public transportation ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Make the necessary constitutional and legislative amendments in order to decriminalize and remove the ban on abortion", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Deploy all necessary measures to ensure the quick adoption and implementation of the law on nationality to give nationality to children of Bahraini women married to foreigners", - "values": [ - "4 - General action" - ] - }, - { - "text": "Undertake steps to shorten the period needed for issuing protective orders against domestic violence and to improve the effectiveness of criminal sanctions for violations of protective orders ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Further intensify the already laudable steps being taken to improve the conditions of juvenile detention ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Consolidate its national strategy for the reform of the penitentiary system in a manner that guarantees the rehabilitation and the prompt reintegration of minors into the society ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Take concrete measures to promote tolerance and diversity in society and train law enforcement officials in detection and prosecution of hate speech both online and offline ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Provide international humanitarian organisations and human rights monitors access to the camps and their surviving victims", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Strengthen the combat against violence against women, ensuring care for victims and their access to justice", - "values": [ - "4 - General action" - ] - }, - { - "text": "Continue its efforts in strengthening, promoting and protecting the rights of women", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Move towards ratification of the ICCPR at the earliest possible date", - "values": [ - "4 - General action" - ] - }, - { - "text": "Improve training for police and detention centre personnel, and to modernize its facilities to meet the needs of all prisoners", - "values": [ - "4 - General action" - ] - }, - { - "text": "Continue applying strategies and plans for the socio-economic development of the country, in particular those aimed at reducing poverty ", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Continue taking appropriate measures to provide a healthy and safe environment for its citizens", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Continue to improve socioeconomic conditions to eradicate poverty", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Maintain the moratorium on capital executions and to consider the full abolition of the death penalty", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Take immediate measures in order to comply fully with the Optional Protocol to the Convention on the Rights of the Child on the involvement of children in armed conflict (OP-CRC-AC) ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Set the minimum age for marriage for boys and girls at 18 years", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Enact a law on access to freedom of information in line with international standards", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Consolidate the progress made towards reaching the Millennium Development Goals and in the improvement of human development indicators", - "values": [ - "4 - General action" - ] - }, - { - "text": "Strengthen work with international organizations to cooperate in supporting and improving the country's health system", - "values": [ - "4 - General action" - ] - }, - { - "text": "Double its effort in fighting harmful traditional practices ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Ensure that due legal process, including transparency during police investigations is afforded to all, including those critical of the Government ", - "values": [ - "4 - General action" - ] - }, - { - "text": "That the Government Council for Human Rights, National Minorities and Gender Equality take steps towards the implementation of a nation-wide strategy for the promotion and protection of human rights ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Adopt a comprehensive and clear definition of racial discrimination into domestic law", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Intensify its efforts to investigate allegations of sexual violence by the security forces and ensure that perpetrators are prosecuted and punished", - "values": [ - "4 - General action" - ] - }, - { - "text": "Continue to make efforts to combat trafficking in persons, including through expanding and strengthening international, regional and bilateral cooperation ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Continue its ongoing efforts to promote and realize all human rights for its citizens, including the right to adequate housing", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Submit to Parliament for ratification at the earliest opportunity the International Convention on the Rights of Persons with Disabilities, the International Convention for the Protection of All Persons from Enforced Disappearance and the Optional Protocol to the Convention against Torture and Other Cruel, Inhuman or Degrading Treatment or Punishment, and to transpose in 2008 the provisions of the Rome Statute of the International Criminal Court", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Implement all international resolutions confirming the need to preserve the character and characteristics of Jerusalem, not to change its legal status and to preserve its Islamic and Christian spiritual monuments and symbols.", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Enhance its efforts to reduce prison overcrowding ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Continue to improve conditions in Ministry of Justice-operated facilities and hold accountable any law enforcement official suspected of involvement in torture, abuse or coerced confessions", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Strengthen the mandate and independence of the National Office against Racial Discrimination in line with the Paris Principles", - "values": [ - "4 - General action" - ] - }, - { - "text": "Continue its action to promote freedom of expression and to accelerate the adoption of new law of press ", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Expand as much as possible the ratification of the whole set of international human rights instruments recommended during the 2010 UPR and not yet ratified", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Avoid the intimidation and harassment of human rights defenders, journalists and civil society organizations, lifting the restrictions imposed on them and allowing them to freely exercise their rights to freedom of expression, association and assembly", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Continue with efforts to combat HIV/AIDS", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Investigate thoroughly crimes against women and minorities and fully implement laws intended to enforce constitutional protections for women and minorities, including laws against discrimination", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Fully implement Human Rights Council resolutions S-17/1 of 23 August 2011 and to fully cooperate with the independent commission of inquiry ", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Continue the efforts in the field of education including providing a high quality of education system that is inclusive, universal and free ", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Establish an independent national human rights institution and ensure that it complies with the Paris Principles.", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Prevent and combat domestic violence", - "values": [ - "4 - General action" - ] - }, - { - "text": "Respond to the legitimate demands of the Syrian people with a credible process for reform", - "values": [ - "4 - General action" - ] - }, - { - "text": "Adopt measures, including recommendations by the Committee against Torture, to combat torture and ill-treatment, by ensuring that the National Centre receives adequate resources and access, and by implementing an effective Anti-Torture Action Plan", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Take urgent steps to ensure full respect for the right to a nationality, and ratify the August 1961 Convention on the Reduction of Statelessness, which it signed in December 1961 ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Introduce appropriate administrative or legislative reforms to ensure equal protections for same-sex couples, including on matters of residency and inheritance", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Ratify the Statute of the International Criminal Court", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Consider ratifying, and implementing in national law, the outstanding core international human rights treaties, in particular the Second Optional Protocol to ICCPR - the abolition of the death penalty ", - "values": [ - "3 - Considering action" - ] - }, - { - "text": "Ratify the Optional Protocol to the Convention against Torture, signed in 2006", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Consent, as early as possible, to all outstanding requests by special procedures to visit Bolivia", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Consider establishing an institutional mechanism to ensure respect for diversity and tolerance.", - "values": [ - "3 - Considering action" - ] - }, - { - "text": "Adopt and implement a national legislation with the view to provide public access to information, including governmental information", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Seriously deal with the allegation of systematic and excessive use of force and torture by law enforcing agencies, to end the culture of impunity", - "values": [ - "4 - General action" - ] - }, - { - "text": "Take positive action to ensure protection of women against sexual violence and their access to legal mechanisms without discrimination", - "values": [ - "4 - General action" - ] - }, - { - "text": "Ratify CAT and the International Convention for the Protection of All Persons from Enforced Disappearance (CPED) ", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Take effective measures to end arbitrary detentions, in particular by strengthening judicial oversight over the security forces", - "values": [ - "4 - General action" - ] - }, - { - "text": "Step up efforts to improve the civil registration service so that all children will be registered at birth", - "values": [ - "4 - General action" - ] - }, - { - "text": "Further fulfil the internationally taken human rights obligations as well as integrate them into the national legislation ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Enhance gender mainstreaming activities with a focus to increase women's participation in decision-making and address the gender pay gap", - "values": [ - "4 - General action" - ] - }, - { - "text": "Abolish, definitively and as soon as possible, the death penalty", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Continue to develop its legal and institutional framework with respect to the promotion and protection of human rights", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Abolish section 377 A of the Penal Code", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Consider establishing a national human rights institution in line with the Paris Principles", - "values": [ - "3 - Considering action" - ] - }, - { - "text": "Step up efforts to strengthen public education, awareness and capacity building programme and skill training particularly aimed at increasing awareness on human rights in the country ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Consider acceding to the Optional Protocol to the Convention on the Elimination of All Forms of Discrimination against Women", - "values": [ - "3 - Considering action" - ] - }, - { - "text": "Take the necessary measures to deepen awareness with regard to minorities and foreigners in order to prevent them from suffering acts of violence and discrimination", - "values": [ - "4 - General action" - ] - }, - { - "text": "Move forward the ratification of the Optional Protocol the Convention against Torture and Other Cruel, Inhuman or Degrading Treatment or Punishment", - "values": [ - "4 - General action" - ] - }, - { - "text": "Step up the reform aimed at adapting the Constitution to the international standards in the field of protection of human rights", - "values": [ - "4 - General action" - ] - }, - { - "text": "Accede to the 1951 Convention relating to the Status of Refugees and the 1967 Protocol thereto ", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Adopt appropriate legislation to render the Commission of human rights and public administration (HRPAC) fully operational, as well as to strengthen its capacities, and to allocate the necessary financial resources so that it is in full compliance with the Paris Principles as a national human rights institution ", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Continue its efforts to remove children from labour in small-scale gold mines ", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Take specific measures to eliminate discrimination based on ethnicity in the labour market and education sector", - "values": [ - "4 - General action" - ] - }, - { - "text": "Step up the fight against all harmful traditional practices, inter alia by effectively enforcing the Prohibition of Female Genital Mutilation Act in all parts of the country and by increasing the human and financial resources of the Anti-Human Sacrifice and Trafficking Task Force", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Continue its efforts to ensure access to education for all at all levels and continue to work in reducing disparities between girls and boys in order to ensure the enrolment of girls in the same proportion equal to boys", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Intensify efforts aimed at the adoption of the draft law on ensuring equal rights and equal opportunities for men and women ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Provide adequate education opportunities for the persons with disabilities ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Conclude the revision of the Statute of the National Human Rights Commission to bring it in line with the Paris Principles, also in compliance with the Lisbon Declaration and Protocol of May 2013, which creates the Network of NHRIs of the Portuguese Speaking Countries", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Improve detention conditions and respect for judicial guarantees for inmates, fighting against torture and inhuman and degrading treatment in detention centers in line with commitments taken during the May 2008 UPR session", - "values": [ - "4 - General action" - ] - }, - { - "text": "Continue the initiatives to promote and protect its people's right to adequate housing", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Ensure the effective implementation of the law on domestic violence", - "values": [ - "4 - General action" - ] - }, - { - "text": "Prohibit the practice of torture, and prosecute its perpetrators", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Strengthen human rights education programmes at the national and local levels aimed at eradicating racism and xenophobia ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Increase level of ODA", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Take all necessary measures to prosecute and punish perpetrators of violations of international human rights law and humanitarian law.", - "values": [ - "4 - General action" - ] - }, - { - "text": "Prohibit corporal punishment of children in all settings, including the home, and repeal the authorization of the use of force to correct children's misconduct in the Criminal Code", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Continue to take further measures to enhance women's access to education, health and employment opportunities ", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Facilitate prosecution of domestic violence and implement improved measures for protection of victims ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Address prostitution, pornography and trafficking of children and adolescents for the purpose of sexual exploitation.", - "values": [ - "4 - General action" - ] - }, - { - "text": "Continue the process of establishing the national mechanism to prevent torture", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Take steps to ratify the Rome Statute of the International Criminal Court ", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Continue to fight against racism and acts of violence and discrimination against persons of African descent", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Redouble the efforts to increase women's participation in society, in particular by increasing the number of women in decision-making", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Combat discrimination against women through anti-trafficking legislation, by ensuring women's entitlement to land in the Land Law, and by curbing domestic violence and violations of reproductive rights ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Investigate and prosecute all perpetrators of violence and hate crimes against Roma and amend the Criminal Code so as to introduce and adopt stronger punishments for racially motivated crimes committed by police officers ", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Continue its implementation of the national plan of action on the provision of education for all, including for economically disadvantaged social groups", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Enhance women's empowerment and representation in decision making sectors", - "values": [ - "4 - General action" - ] - }, - { - "text": "Continue the efforts to reduce HIV/AIDS, malaria and tuberculosis with the assistance of the WHO ", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Accelerate the adoption of the draft laws on Equality and Anti-discrimination and the Enforcement Monitoring Bodies", - "values": [ - "4 - General action" - ] - }, - { - "text": "Continue efforts aiming at promoting the role of women in decision-making and achieving equality of opportunities", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Take immediate action to respect, protect and fulfil the right to food ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Consider becoming a party to ICESCR ", - "values": [ - "3 - Considering action" - ] - }, - { - "text": "Continue actions and efforts to promote and protect human rights effectively on the ground and towards achieving the objectives set out in its national strategy for sustainable development.", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Support and protect the family as a fundamental and natural unit of society ", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Improve the conditions of prisons and other places of detention and reduce overcrowding by building more prisons or reducing the length of pretrial detention", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Implement the 1951 Convention relating to the Status of Refugees and its 1967 Protocol, and ensure that the refugee recognition procedures be improved in line with international refugee law.", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Continue to provide support for human rights education and training domestically in order to enhance awareness and respect for human rights", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Take concrete measures in implementing the 30 percent quota for women in the nomination lists at national, provincial and local elections as pledged in the National Human Rights Action Plan", - "values": [ - "4 - General action" - ] - }, - { - "text": "Implement the policy of return of the confiscated properties to the Armenians and other religious minorities, such as places of worship, including monasteries, church properties and religious and cultural sites through close consultations with their legal owners", - "values": [ - "4 - General action" - ] - }, - { - "text": "Consider ratifying or acceding to other individual complaints procedures under the treaties to which it is a party", - "values": [ - "3 - Considering action" - ] - }, - { - "text": "Disseminate information on the available remedies and expand its training programmes for judiciary and public officials to sensitize them to all forms of violence against women and measures to protect victims ", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Address the legislative gap that relates to domestic violence offences and update the Criminal Code to recognize domestic violence as a criminal offence", - "values": [ - "4 - General action" - ] - }, - { - "text": "Establish a national human rights institution NHRI in full compliance with the Paris Principles", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Accede to the Rome Statute and implement it fully at national level and accede to the Agreement on the Privileges and Immunities of the Court as recommended in the first UPR cycle", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Consider ratifying CRPD and the Optional Protocol thereto", - "values": [ - "3 - Considering action" - ] - }, - { - "text": "Re-enforce all laws related to combatting human trafficking ", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Encourage an informed debate among the population on the topic of the death penalty and promote its de jure abolition", - "values": [ - "4 - General action" - ] - }, - { - "text": "Abolish requirements for the registration of religious groups from the existing Administrative Code, in accordance with the laws adopted in 2005 on the elimination of extremism and the strengthening national security, and to review the provisions of the Law on Freedom of Religion and Religious Associations in order to effectively guarantee freedom of belief and a nondiscriminatory legal system for the registration of religious entities", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Reform its legislation to ensure full respect of the principle of non-refoulement", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Continue to prioritise policies aimed at improving the enjoyment of economic, social and cultural rights by its citizens", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Continue its efforts and actions in promoting social security and labour policy ", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Ratify ICCPR, ICESCR, CERD and CAT and withdraw reservations to CEDAW ", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Continue its efforts in providing access and quality education for children, and implement programmes that would further encourage them, especially girls, to go to school", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Pursue its efforts to achieve the highest possible level of social justice and find adequate solutions to the problems of poverty and unemployment ", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Speed up the process of ratification of the Optional Protocol to the Convention on the Elimination of All Forms of Discrimination against Women", - "values": [ - "4 - General action" - ] - }, - { - "text": "Consider the possibility of drafting specific legislation on violence against women, including domestic violence and sexual abuse to intensify the public awareness campaign in that regard to develop a human rights training and education programme for public officers and to offer legal services for victims", - "values": [ - "3 - Considering action" - ] - }, - { - "text": "Incorporate the Convention on the Rights of Persons with Disabilities in the national legislation, and take the necessary measures for them to attain work opportunities", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Pursue national efforts to reduce the rate of maternal and infant mortality", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Establish a moratorium on executions with a view to the rapid abolition of the death penalty, and in the immediate future, respect minimum international standards, including the right to a fair trial, the limitation of the death penalty to the most serious crimes, as well as the non application of the death penalty to minors, pregnant women and persons suffering from mental diseases ", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Ratify the OP-CRPD", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Strengthen measures to guarantee a safe and conducive environment for the free expression of civil society ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Intensify its work to provide specialized training for investigators, prosecutors and judges in applying the human trafficking statute", - "values": [ - "4 - General action" - ] - }, - { - "text": "Continue reinforcing measures to guarantee respect for the human rights of migrants", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Increase its efforts to promote civil registration of the Timorese population, particularly of children", - "values": [ - "4 - General action" - ] - }, - { - "text": "Speed up the implementation of human rights legislations into concrete policies", - "values": [ - "4 - General action" - ] - }, - { - "text": "Continue to deepen the actions for the protection and promotion of the rights of the Roma", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Ensure that all abuses against ethnic, linguistic or religious minorities are duly investigated and prosecuted, including in the context of the examination of the situation of the residents of Camp Ashraf", - "values": [ - "4 - General action" - ] - }, - { - "text": "Continue its measures in the prevention and repression of violence against women through effective implementation of the existing domestic legislation and awareness-raising campaigns and programmes", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Implement legislative and judicial level measures to ensure that there is no impunity in cases of ritual murders", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Continue the actions undertaken in the criminal processing of war crimes", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Establish an official moratorium on executions with a view to the complete abolition of the death penalty, and commute without delay death sentences into prison terms", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Share experiences in promoting agricultural productivity and sustainability, local development and good governance with other developing countries", - "values": [ - "1 - Minimal action" - ] - }, - { - "text": "Continue to further address the social inequality that remains one of the challenges in the country ", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Establish an effective and independent national mechanism for the prevention of torture according to the criteria of the Optional Protocol to the Convention against Torture", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Carry out a careful investigation into incidents of unwarranted use of force by law enforcement bodies in response to protests by the opposition during the celebration on 27 August 2016 of Independence Day in Chisinau", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Continue to combat racism and discrimination and adopt effective national legislation in this regard ", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Implement the recommendations of the Special Rapporteur on the Right to Food in the report on his visit to the country", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Review school curriculums to ensure that they are sensitive to the needs of minorities and promote human rights and pluralism", - "values": [ - "3 - Considering action" - ] - }, - { - "text": "Extend an open and permanent invitation to the United Nations human rights special procedures mandate-holders ", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Allocate adequate funding to improve its education system", - "values": [ - "4 - General action" - ] - }, - { - "text": "Criminalize all acts of sexual violence and rape in marriage ", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Adopt a National Plan on the Security Council Resolution on Women, Peace and Security [1325]", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Extend a standing invitation to all United Nations special procedures and ensure that reports are submitted to treaty bodies", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Implement the outstanding legislative and administrative reforms required under the Convention on the Rights of the Child, in particular all the necessary measures to prevent and address violence against children and child abuse ", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Tighten its regulation on civilian possession of weapons and firearms, enhance oversight on private security companies and put in place stronger safeguards to protect the safety of Honduran citizens, especially in the conflict in the Aguan River Valley", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Recognise the Thule tribe as a distinct indigenous community capable of vindicating its traditional rights", - "values": [ - "4 - General action" - ] - }, - { - "text": "Strengthen measures to eradicate violence against women and children, especially those belonging to indigenous peoples and diverse ethnic groups ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Adopt further measures to provide members of the police, prison and judicial staff with human rights training with specifically focused on protection of human rights of women, children, ethnic or national minorities, and also of persons of minority sexual orientation or gender identity ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Further develop measures to fully guarantee freedom of expression, particularly the protection of the integrity of persons working in the media in the exercise of that right ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Effectively investigate, prosecute and punish all hate crimes and take effective measures to combat hate speech in the media and on the internet, including by prosecuting the perpetrators regardless of their official status", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Ratify the Convention on the Elimination of All Forms of Discrimination against Women and eliminate discriminatory practices, especially during conflict", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Eliminate criminal liability for defamation in the media, and to amend the civil code to ensure that any judgement in a civil libel case is reasonable and proportionate and does not result in the closure of the media outlet in question", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Strengthen the units for the protection of women and children, granting these the necessary capacity to gather all evidence and investigate all cases of sexual and gender-based violence", - "values": [ - "4 - General action" - ] - }, - { - "text": "Continue its efforts in promoting human rights and gender equality, and ensure that women can be involved in the labour market ", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Approve a specific law, in line with its international human rights obligations, that prohibits discrimination and incitement to violence based on sexual orientation and gender identity", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Ensure sufficient safe and secure housing for asylum seekers ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Decriminalize defamation, reform the legislation regulating the press in order to ensure more freedom for journalists and writers ", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Increase the capacity of the Police Complaints Authority to undertake prompt and impartial investigations of police abuse so the PCA can transfer cases to the justice system for prosecution as warranted", - "values": [ - "4 - General action" - ] - }, - { - "text": "Strengthen measures to combat and prevent racism, racial discrimination, xenophobia and related intolerance", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Engage the international community and international organizations in capacity-building support and technical assistance, particularly in the areas of economic and human resources development and poverty reduction ", - "values": [ - "1 - Minimal action" - ] - }, - { - "text": "Be one of the countries contributing to best practices of the Human Rights Council by speeding up with the establishment of national preventive mechanisms, following the recent ratification of the Optional Protocol to the Convention against Torture and Other Cruel, Inhuman or Degrading Treatment or Punishment", - "values": [ - "4 - General action" - ] - }, - { - "text": "Amend expeditiously the Births and Deaths Registration Act to ensure that all children born in Zimbabwe, regardless of their parents' origin, are issued with birth certificates", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Support the activities of human rights defenders and independent non- governmental organizations in the promotion of human rights and democracy, including through positive public recognition of their role ", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Implement the Maternal Child and Women's Health Strategy (2009-14) and develop sustained measures to address the impact of HIV/AIDS on women and girls, who are disproportionately affected ", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Continue its initiative on dialogue among cultures, in particular intercultural dialogue on human rights", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Step up efforts to improve the literacy rate among the indigenous communities and the people who live in rural areas ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Continue its efforts to strengthen the position of women and in particular ensure that perpetrators of honour crimes do not benefit from a reduction of penalty, and take into consideration the recommendations of CEDAW and furthermore also strives to provide victims of honour crimes with the necessary protective shelters", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Continue efforts to combat child labour", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "In response to the concern CEDAW expressed in its 2001 report regarding the existence of punitive abortion laws that could lead to the practice of clandestine abortions endangering the health of women, the Principality wishes to stress the fact that, given the size of the country, this kind of practice does not occur. In light of our historical and institutional proclivity to protect the right to life in its various phases, as provided for in article 8 of the Constitution and defined in articles 107-109 of the Criminal Code (offences against human life), decriminalizing abortion would entail significant legislative\namendments that require a parliamentary majority we cannot currently guarantee. We can, however, commit to examining such amendments in the medium term", - "values": [ - "3 - Considering action" - ] - }, - { - "text": "Amend the Criminal Code and the Federal Family Code in order to criminalize marital rape and FGM ", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Collaborate with various United Nations human rights mechanisms and submit outstanding reports to treaty bodies", - "values": [ - "4 - General action" - ] - }, - { - "text": "Take further measures to improve access of persons with disabilities to social, economic and cultural life and combat discrimination on the grounds of disability", - "values": [ - "4 - General action" - ] - }, - { - "text": "Continue to empower women by enhancing their status and increasing their participation in decision-making processes", - "values": [ - "4 - General action" - ] - }, - { - "text": "Request technical cooperation and assistance from the international community, including the appropriate international agencies, to strengthen national capacities to collect, process and analyse relevant human rights statistical information", - "values": [ - "1 - Minimal action" - ] - }, - { - "text": "Seek to remove the obstacles faced by victims trying to access justice ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Ensure sufficient budgetary allocation for the effective implementation of the National Strategy for the Integration of Roma Communities 2013-2020", - "values": [ - "4 - General action" - ] - }, - { - "text": "Remove all reservations to the Second Protocol to ICCPR aimed at abolishing the death penalty", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Pursue measures against State organs which attempt to limit media and journalists ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Guarantee the fight against impunity, ensuring that all those persons found guilty are brought to justice, in the context of allegations of the use of torture to obtain confessions from detainees", - "values": [ - "4 - General action" - ] - }, - { - "text": "Criminalize racist statements, incitement to intolerance and racially motivated violence", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Adopt measures to guarantee Roma children the right to education in their own language and in a relevant way with their own culture ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Continue to develop the country's economic potential and ensure a dignified standard of living for its citizens, and to adopt further measures necessary to increase the level of access to education and health", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Ensure the enactment of the bill on the Convention on Elimination of All Forms of Discrimination against Women (CEDAW)", - "values": [ - "4 - General action" - ] - }, - { - "text": "Ensure the primacy of laws protecting the equality of women over customary practices that are contrary to such principles. ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Sign and ratify the core human rights instruments ", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Establish legislative mechanisms prohibiting all forms of discrimination based on ethnic grounds", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Expand efforts to ensure universal access to maternal and child health-care services and facilities, in particular in rural and remote areas ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Ensure that life imprisonment sentences cease to be administered to minors and juveniles", - "values": [ - "4 - General action" - ] - }, - { - "text": "Continue its efforts in fighting all forms of violence against women", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Step up its efforts and strengthen its measures to ensure gender equality by ratifying the Optional Protocol to the Convention on the Elimination of All Forms of Discrimination against Women ", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Adopt a comprehensive social security system and the HIV Bill ", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Improve its cooperation with the United Nations treaty bodies by submitting overdue reports as a matter of priority ", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Intensify the Government presence in the rural areas whose communities are victims of abuses, such as forced displacement, as well as target of violence perpetrated by criminal organizations ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Expand possibilities for the education of minorities, including learning minority languages, promoting identities and supporting minority cultures ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Amending or reforming other areas than the Domestic Violence Act of Ugandan legislation where women still face discrimination ", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Continue efforts to realize social and economic development and eradicate poverty", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Investigate and prosecute attacks and threats against journalists", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Approve the Children\u2019s Code and give greater diffusion to the new regulatory and legislative measures for the protection of widows and orphans", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Take all necessary steps to establish an effective national preventive mechanism to improve prisoners' conditions, both their physical conditions and their legal rights including due process ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Continue efforts towards promotion of human rights education and awareness-raising in the country, inter alia, through inclusion of human rights and international humanitarian law in the syllabi of schools and universities", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Fully apply the Law of the Child Act", - "values": [ - "4 - General action" - ] - }, - { - "text": "Develop a close dialogue with all minorities regarding language education issues", - "values": [ - "4 - General action" - ] - }, - { - "text": "Take effective action to end violence against women and children, including by making it a criminal offence and by holding perpetrators accountable", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Eradicate all forms of discrimination against people with disabilities and encourage their full integration in society ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Continue its efforts to include awareness of human rights within the school curricula", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Condemn crimes and hate speech, ensure that all racist offences are effectively detected and are subject to investigation and prosecution, and fight against racism and intolerance manifestations in the media", - "values": [ - "4 - General action" - ] - }, - { - "text": "Speed up the adoption on anti terrorism law while considering lifting the state of emergency once the law has been passed", - "values": [ - "4 - General action" - ] - }, - { - "text": "Continue its efforts in establishing a national human rights institution", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Continue its efforts to implement the country\u2019s national development plan", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Fully criminalize domestic violence against women and children, including marital rape, and ensure that such acts are tried by criminal courts as opposed to a family tribunal", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Ratify the Kampala amendments to the Rome Statute if possible with a view to contributing to the activation of the jurisdiction of the International Criminal Court over the crime of aggression at the beginning of 2017", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Continue efforts to combat discrimination on any ground and violence against women and girls ", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Make the Internet widely available and accessible to the general public, given the recent technological arrangements with country's partners, in recognition of the Internet as a major driving force in accelerating development in its various forms and as an important tool for exercising human rights, particular with regards to the right to freedom of expression as well as freedom of information ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Adopt urgent measures to eradicate the practice of unregistered marriages, through public awareness campaigns in order to ensure that no marriage takes place before the legal age of marriage ", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Endeavour to incorporate femicide as a crime in its penal legislation, in line with the bill introduced ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Ensure that Slovenia's facilities regarding the compulsory health insurance scheme are available at the secondary and tertiary levels", - "values": [ - "4 - General action" - ] - }, - { - "text": "Accelerate the introduction of a law on freedom of information in line with international standards ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Protect women and girls from child, early and forced marriage", - "values": [ - "4 - General action" - ] - }, - { - "text": "Establish a mechanism to monitor the implementation of recommendations of international human rights mechanisms", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Refrain from issuing new concessions for projects in Mayan territories without the free, prior and informed consent of the relevant Mayan community", - "values": [ - "4 - General action" - ] - }, - { - "text": "Ensure the safety of children in particular through taking steps to protect them from taking part in armed conflicts ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Take measures to ensure that law enforcement in Mozambique complies with domestic and international human right standards, and ensure prompt, thorough investigations, and prosecution where evidence warrants, of all allegations of human rights violations, including torture", - "values": [ - "4 - General action" - ] - }, - { - "text": "Ensure that amendments to the immigration law are in accordance with existing obligations under the International Covenant for Civil and Political Rights", - "values": [ - "4 - General action" - ] - }, - { - "text": "Continue efforts to provide better protection to human rights defenders and strengthen civil society as an essential partner in boosting the human rights system", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Consider withdrawing its reservations to the Convention on the Elimination of All Forms of Discrimination against Women, in particular article 2.", - "values": [ - "3 - Considering action" - ] - }, - { - "text": "Continue, in close coordination with United Nations bodies, to address the needs of IDPs, including those living in host communities ", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Enact the law on the establishment of a moratorium on the death penalty as soon as possible", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Reduce violence among school children, combining targeted research with social and community activism", - "values": [ - "4 - General action" - ] - }, - { - "text": "Take appropriate measures to prevent the forced labour of children in the country", - "values": [ - "4 - General action" - ] - }, - { - "text": "Continue to encourage and support initiatives and activities to promote religious respect and tolerance", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Continue to strengthen national efforts to address the phenomenon of trafficking in human beings", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Complete the review of legislative codes on preventing and punishing torture by 2014", - "values": [ - "3 - Considering action" - ] - }, - { - "text": "Take additional measures to combat violence related to racial discrimination", - "values": [ - "4 - General action" - ] - }, - { - "text": "Facilitate the greater integration and participation in society of people with disabilities and, in particular, implement a more expansive sheltered housing strategy with measurable targets that will achieve a substantial reduction in the number of people with disabilities currently in institutional care ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Provide a legislative framework for the eradication of child labour in accordance with its human rights obligations", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Continue to provide assistance to developing countries as a means to improve the enjoyment of human rights in other parts of the world.", - "values": [ - "1 - Minimal action" - ] - }, - { - "text": "Take effective and quick measures to combat hate speech, Islamophobia, racial aggressive acts that are on the increase in the society, and commit to addressing the long-term consequences", - "values": [ - "4 - General action" - ] - }, - { - "text": "Ratify the International Covenant on Economic, Social and Cultural Rights and its Optional Protocol", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Consider reinstituting the Turkish mother tongue lessons as part of the primary and secondary school curricula ", - "values": [ - "3 - Considering action" - ] - }, - { - "text": "Ratify the Optional Protocol to the Convention on the Rights of the Child on the involvement of children in armed conflict ", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Ensure that its legal framework and actions concerning asylum seekers, refugees, and migrants comply with Hungary's international human rights obligations, including with regard to procedural safeguards. ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Continue to work to combat violence against women", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Take additional measures to protect children from corporal punishment and sexual crimes", - "values": [ - "4 - General action" - ] - }, - { - "text": "Continue efforts to make sure that the Human Rights Commission functions in an effective and independent manner", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Continue with its efforts to eradicate child labour with a particular focus on children in highly vulnerable situations ", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Adopt a universal system for birth registration, which includes children of refugees, asylum seekers and stateless persons", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Further revise the current legislation on combating trafficking in persons for a better prosecution of these crimes", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Enhance efforts to improve women's rights and to combat human trafficking, sexual violence, domestic violence and the exploitation of women and children", - "values": [ - "4 - General action" - ] - }, - { - "text": "Establish an independent inquiry into abuses allegedly committed by a Phantom Squad between 2002 and 2008, and ensure all those responsible are brought to justice ", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "That any austerity measures adopted by the Government should be minimal, temporary, proportional, non-discriminatory, and take into account the needs of the poorest and most disadvantaged citizens", - "values": [ - "4 - General action" - ] - }, - { - "text": "Conduct a full review of the effectiveness of the 2016 Hate Crime Action Plan, and review approaches by criminal justice agencies under the current legal framework in order to address reports of increasing hate crime in the United Kingdom", - "values": [ - "3 - Considering action" - ] - }, - { - "text": "Promulgate, as soon as possible, the new integral law on the sale of children, sexual exploitation and trafficking, and to take concrete and immediate actions to strengthen the National Council against Human Trafficking", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Continue improving the protection of labour rights, in particular regarding foreign and domestic workers, by ratifying and implementing ILO Convention No. 189 concerning Decent Work for Domestic Workers", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Adopt comprehensive policies abolishing child, early and forced marriage", - "values": [ - "4 - General action" - ] - }, - { - "text": "Lift its declarations concerning articles 2 and 15 of the CEDAW and change the legislative provisions that still discriminate against women ", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Accelerate efforts to accede to the ICRMW, and provide the Council with an update on its implementation at the next UPR reporting cycle", - "values": [ - "4 - General action" - ] - }, - { - "text": "Ensure the freedom of religion and belief for all citizens of Iran", - "values": [ - "4 - General action" - ] - }, - { - "text": "Establish a formal moratorium on the death penalty with a view to ratifying the Second Optional Protocol to the International Convention on Civil and Political Rights, aiming at the abolition of the death penalty", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Immediately establish the moratorium on executions with a view to abolishing the death penalty ", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Take serious steps to eradicate poverty, especially in rural areas, and improve living standards", - "values": [ - "4 - General action" - ] - }, - { - "text": "Fully align its migration and asylum policy in accordance with international law", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Continue efforts to promote human rights in the world", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Finish the training process for government and federal officials in order to launch as soon as possible the process of ratification of the CPED, and accept the competence of its monitoring body ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Redouble its efforts in the areas of wealth distribution and poverty eradication by allocating adequate human and financial resources to the vulnerable segments of society", - "values": [ - "4 - General action" - ] - }, - { - "text": "Further strengthen its policies and programmes aimed at combating discrimination and intolerance and ensure that incidents are subject to prompt and independent investigation and effective prosecution ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Ratify the Optional Protocol to the Convention against Torture and Other Cruel, Inhuman or Degrading Treatment or Punishment and establish without delay a national preventive mechanism in accordance with the Protocol", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Ratify the Optional Protocol to the Convention on the Rights of the Child on a communications procedure", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Enhance its programmes and initiatives to curb the phenomenon of street children ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Further development of a process of effective dialogue and negotiation with indigenous groups is established to address land and natural resources issues ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Speed up its efforts in reviewing the Statutes of the National Commission of Human Rights with a view to making the Commission fully comply with the Paris Principles", - "values": [ - "4 - General action" - ] - }, - { - "text": "Consider the ratification of core human right instruments such as ICERD, CAT, ICRMW and the Second Optional Protocol to ICCPR", - "values": [ - "3 - Considering action" - ] - }, - { - "text": "Ensure access to justice for all the population, especially for victims of sexual and gender-based violence", - "values": [ - "4 - General action" - ] - }, - { - "text": "Abolish the use of incommunicado detention and torture", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Take all necessary measures to facilitate the visits requested by United Nations special procedures without further delay ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Continue the development of specific legislation to promote and protect the rights of the child, including civil society participation, preventive measures in education and reinsertion into society of minors in difficult situations", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Ensure that the crime of torture is punished in accordance with the comprehensive definition as contained in Article 1 of the International Convention Against Torture", - "values": [ - "4 - General action" - ] - }, - { - "text": "Review the state policy that affects indigenous lands, known as the "Plan of Agricultural and Industrial Leases" regarding non-indigenous companies, reinforcing the work of the Commission of Inquiry that has found irregularities in many of the leases investigated ", - "values": [ - "3 - Considering action" - ] - }, - { - "text": "Take into account the opinion formulated on 14 October 2016 by the Venice Commission of the Council of Europe on the Act on the Constitutional Tribunal", - "values": [ - "4 - General action" - ] - }, - { - "text": "Consider enhancing national efforts in the area of trafficking in person through adopting a definition for the sale of children and child pornography in the criminal code", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Take measures to end and prevent attacks against civilians. Conduct transparent investigations of allegations of human rights violations and abuses, and hold perpetrators accountable ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Continue efforts to combat inequalities and discrimination in the work place, particularly with regard to women", - "values": [ - "4 - General action" - ] - }, - { - "text": "Ratify and effectively implement international human rights treaties, including ICCPR and its Optional Protocols, ICESCR, CAT, and the Optional Protocols to the CRC ", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Consider adopting a standing invitation to human rights special procedures.", - "values": [ - "3 - Considering action" - ] - }, - { - "text": "Adopt practical and legal measures to strengthen the foundation of the family and avoid resorting to measures and legislation which endanger the very foundation of the family in society", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Take all necessary measures to ensure an independent and effective oversight by all government branches of the overseas surveillance operations of the National Security Agency, especially those carried out under the Executive Order 12333, and guarantee access to effective judicial and other remedies for people whose right to privacy would have been violated by the surveillance activities of the United States", - "values": [ - "4 - General action" - ] - }, - { - "text": "Demonstrate improvements in submitting its reports in a regular manner to the treaty bodies, particularly for the International Covenant on Civil and Political Rights and the International Covenant on Economic, Social and Cultural Rights, reports under which have been overdue since 2003 ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Call upon the international community to pay attention to the existing difficulties at the present stage of its development and provide assistance to it in accordance with its national priorities, in the realms of human rights education and training to relevant bodies of the public sector as well as national capacity-building with respect to preparing periodic reports under the international treaties that Eritrea is party to ", - "values": [ - "1 - Minimal action" - ] - }, - { - "text": "Continue its efforts in establishing and providing public services through social security, especially for women and children", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Become party to CAT and its Optional Protocol ", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Finalize the review of the mandatory nature of the death penalty, maintain a moratorium and ultimately move to abolish the death penalty", - "values": [ - "3 - Considering action" - ] - }, - { - "text": "Enact laws to criminalize contemplation of prophets and religions through all kinds of media (visual, audio and printed), and enact laws to determine the penalty for rape in law and follow-up application ", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Continue its efforts to ensure a better integration of foreigners in the Swiss society", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Continue its efforts aimed at preventing, punishing and eliminating all forms all violence against women", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Specifically prohibit corporal punishment at home and in schools and undertake appropriate campaigns to educate families on alternative forms of discipline ", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Ensure a conducive climate to the work of the human rights defenders, civil society activists and journalists ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Continue to take measures to combat trafficking of persons", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Continue to improve access to education and literacy rates", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Continue to carry out comprehensive reviews and studies on its existing legislation and level of preparedness, moving towards accessions of international human rights instruments as it deems appropriate, in the context of its institutional and legal framework, resources, and national priorities", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Continue strengthening its efforts to combat poverty through introducing comprehensive national strategies in order to allocate more resources to social services for vulnerable groups living in rural areas, and increase its efforts to tackle the discrimination against women in all areas ", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Make further efforts to combat the recruitment of child soldiers to the national army and to armed groups, with the aim of criminalizing the practice in the near future", - "values": [ - "4 - General action" - ] - }, - { - "text": "Take action so as to ratify the Rome Statute on the International Criminal Court ", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Withdraw its reservations to CEDAW as soon as possible", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Take actions to stop the use of torture, including sexual torture", - "values": [ - "4 - General action" - ] - }, - { - "text": "Study the possibility of repealing the death penalty from its legal system ", - "values": [ - "3 - Considering action" - ] - }, - { - "text": "Adopt the draft bill on the criminal code, which includes and sanctions gender-based violence ", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Develop a comprehensive strategy to strengthen social cohesion and respect for racial, religious, tribal and ethnic diversity, to strengthen the national peace plan", - "values": [ - "4 - General action" - ] - }, - { - "text": "Follow up on initiatives for establishing an independent national human rights institution to advance its human rights agenda and proceed with this task in conformity with the Paris Principles", - "values": [ - "4 - General action" - ] - }, - { - "text": "Further incorporate human rights education in school curricula ", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Provide separate prison and detention facilities for minors, male and female inmates and improve access of inmates to adequate food and medical care", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Continue the positive participation and coordination with neighbouring countries in the context of combating trafficking in human beings ", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Step up its cooperation with special procedures mandate holders of the Human Rights Council and eventually consider extending a standing invitation to all Special Procedures mandate holders of the Human Rights Council ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Pursue its collaboration, already fruitful, with the human rights mechanisms, in order to make it possible to reach its objectives in all areas, to promote and protect all the rights over its territory", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Increase efforts to combat trafficking in persons, especially in women and children", - "values": [ - "4 - General action" - ] - }, - { - "text": "The Ministry of Health in partnership with Ministry of Gender, Labour and Social Development mainstream disability in their awareness raising campaigns with a view to eliminate negative attitudes towards persons with disabilities in health centres ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Along with the Special Procedures, investigate allegations of the systematic use of torture by British soldiers vis-à-vis detainees outside the country, and inform the results of these investigations to the UN human rights mechanisms, including the Human Rights Committee, Human Rights Council and its mechanisms ", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Consider intensifying Government efforts towards the effective and successful integration of historically marginalized Rwandans", - "values": [ - "3 - Considering action" - ] - }, - { - "text": "Go further and abolish the death penalty in practice and in law", - "values": [ - "4 - General action" - ] - }, - { - "text": "Ensure that all women have access to quality sexual and reproductive health services, including comprehensive sexuality education and modern contraceptive methods", - "values": [ - "4 - General action" - ] - }, - { - "text": "Invite the Special Rapporteur on torture and other cruel, inhuman or degrading treatment or punishment to visit Ethiopia ", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Enhanced and steadier efforts by the Democratic People's Republic of Korea and the other relevant stakeholders towards constructive engagement in genuine dialogue and effective cooperation in order to settle the matters of mutual concern", - "values": [ - "4 - General action" - ] - }, - { - "text": "Respond positively to pending requests by several United Nations Special Rapporteurs to visit", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Continue implementing policies that will enhance and develop women's capacity as key partners in the development process", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Request cooperation and technical assistance from the relevant UN bodies for the removal of land mines and the demarcation of border zones, as well as to improve the distribution of drinking water and the access to sanitation services", - "values": [ - "1 - Minimal action" - ] - }, - { - "text": "Ensure, in its laws and regulations as well as in practice, that no arbitrary impediments are imposed with respect to exercising the right to freedom of assembly ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Redouble efforts to eliminate discrimination against minority children, including children of African descent and children with disabilities, and improve their socioeconomic conditions as earlier recommended by the Committee on the Rights of the Child", - "values": [ - "4 - General action" - ] - }, - { - "text": "Increase efforts aimed at combating trafficking in persons and all forms of exploitation of children by, inter alia, taking the necessary measures to prevent impunity for perpetrators", - "values": [ - "4 - General action" - ] - }, - { - "text": "Adopt a comprehensive policy to ensure effective implementation of the principles of equality and non-discrimination in respect of all", - "values": [ - "4 - General action" - ] - }, - { - "text": "Strengthen the independence of the judiciary further", - "values": [ - "4 - General action" - ] - }, - { - "text": "Launch a reform of the Code of Military Justice, so that the military cannot claim jurisdiction over human rights violations' cases", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Ensure a sustained human rights training for law enforcement officers in order to curb killings, brutality and the excessive use of force targeting racial and ethnic minorities, particularly African Americans", - "values": [ - "4 - General action" - ] - }, - { - "text": "Continue its efforts at the international level directed towards the prevention of massive, gross and systematic violations of human rights and promote educational programmes and projects to that effect", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Apply strict measures to stamp out corporal punishment in school and home settings", - "values": [ - "4 - General action" - ] - }, - { - "text": "Sign and ratify CED and the Optional Protocol to the International Covenant on Economic, Social and Cultural Rights ICESCR - ratify OPICCPR, OP-CEDAW and CRPD and its Optional Protocol ", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Change the legislation to raise the age limit for criminal responsibility to eighteen.", - "values": [ - "4 - General action" - ] - }, - { - "text": "Take all measures to ensure the prohibition of female genital mutilation and its effective criminalization ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Strengthen the representation of women in decision-making process", - "values": [ - "4 - General action" - ] - }, - { - "text": "Take further steps to prevent incidents of violence against all of its people, including targeted groups such as community leaders, journalists, and land claimants by improving current protection and prevention programmes, introducing education campaigns, and ensuring effective intervention and investigation by law enforcement officials ", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Strengthen the training of the security forces so that they respect human rights in their interventions", - "values": [ - "4 - General action" - ] - }, - { - "text": "Ratify promptly the Optional Protocol to the International Covenant on Civil and Political Rights, on a communications procedure", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Adopt pertinent measures for economic empowerment of women, and intensify actions against female genital mutilation and early marriage", - "values": [ - "4 - General action" - ] - }, - { - "text": "Develop programmes to raise awareness about domestic and gender violence", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Consider revising its relevant legislation on abortion in line with international human rights standards on sexual and reproductive health and rights", - "values": [ - "3 - Considering action" - ] - }, - { - "text": "Continue acceding to international human rights treaties, strengthen the process of reforms, and pay more attention on the problems related to indigenous people in Rakhine state", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Approve and implement as soon as possible the National Action Plan 2010-2014 to combat domestic violence ", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Provide human rights training specifically focused on protection of the human rights of women, children and other vulnerable groups to civil servants, military forces and police, prison and judicial staff and ensure their full accountability for any violations of human rights in all situations ", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Implement the Abuja Declaration on Roll Back Malaria in Africa with particular emphasis on concluding the enactment of the National Health Insurance Bill to cover vulnerable groups, such as those in the informal sector, low-income households, people with disabilities, the elderly and children", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Enact the draft child protection act and ensure its compatibility with the respective obligations under the Convention on the Rights of the Child, and strengthen cooperation with relevant national stakeholders in the area of eliminating child abuse and victims' rehabilitation", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Continue human rights education for police and security forces to ensure better protection and maintenance of human rights standards", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Ensure the right to work of persons with disabilities, and establish effective mechanisms and strong legislative regulations to protect their economic, social and cultural rights ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Fulfil its obligations under the International Covenant on Economic, Social and Cultural Rights by taking pragmatic steps to address the problem of high malnutrition of children", - "values": [ - "4 - General action" - ] - }, - { - "text": "Strengthen the policies and actions to combat violence against women", - "values": [ - "4 - General action" - ] - }, - { - "text": "Align its national legislation with the Rome Statute of the International Criminal Court and ratify the Rome Statute and the Agreement on Privileges and Immunities of the International Criminal Court", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Pursue with determination the implementation of its reforms of the judicial and security sectors ", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Better prevent episodes of abuses and violence committed by security forces on detainees and duly punish the perpetrators", - "values": [ - "4 - General action" - ] - }, - { - "text": "The aim with these programmes is to reduce the poverty index to 28 per cent and the extreme poverty index to 8.8 per cent by 2015, as called for by the first of the eight Millennium Development Goals.", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Health - We are committed to eliminating health disparities and promoting health, and we actively enforce federal civil rights laws to help ensure that all people have equal access to health care and social service programs. In 2011, the Department of Health and Human Services launched the United States' first plan to specifically address persistent racial and ethnic health disparities. By law, all persons in the United States, including persons without valid immigration status, are entitled to emergency health services.", - "values": [ - "4 - General action" - ] - }, - { - "text": "Continue the reform process to strengthen the institutions of the prison system in order to guarantee respect for the human rights and dignity of persons deprived of liberty ", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Continue with its international commitment to promoting a spirit of tolerance and dialogue ", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Continue its efforts in order to clarify the crimes perpetrated during the armed conflict, in particular regarding enforced disappearances and extrajudicial killings and prosecute those responsible ", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Continue to consolidate its legislative reform as well as programmes aimed at improving the basic standard of living of its people ", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Effectively implement the legislation aimed at ensuring the realization of the rights of women and children, especially the legislation on combating domestic violence", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Continue consolidating the correct measures taken on economic growth, for the benefit of its people", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Make further efforts, including in a financial sense, to ensure the smooth implementation and successful conclusion of the Khmer Rouge Tribunal, in cooperation with the international community ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Persevere in the fight against child poverty and render it a national priority", - "values": [ - "4 - General action" - ] - }, - { - "text": "Consider the development of a comprehensive policy to address the problem of human rights violations against its defenders founded on strategies for strengthening the independence of the judiciary and increasing the awareness of the population and public authorities as to the important role of these defenders ", - "values": [ - "3 - Considering action" - ] - }, - { - "text": "Ensure the access to education, including to primary education, particularly for the most vulnerable children", - "values": [ - "4 - General action" - ] - }, - { - "text": "Allow for complaints on grounds of discrimination to be taken up by existing mechanisms for the protection of human rights, consistent with procedures available for gender-based discrimination cases, until a national human rights institution compliant with the Paris Principles is established", - "values": [ - "4 - General action" - ] - }, - { - "text": "Ensure continued emphasis on children's rights and welfare in Bulgaria's budget policy and consider increasing budget allocations for the implementation of the CRC, including in the areas of health, education and family support", - "values": [ - "4 - General action" - ] - }, - { - "text": "Make measures to raise awareness of its new legislation concerning domestic violence and inform victims of violence about their rights and help available to them", - "values": [ - "4 - General action" - ] - }, - { - "text": "Continue the revision of the Shia Personal Status Law and harmonize it with the international treaties signed by Afghanistan.", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Consider ratifying the International Covenant on Civil and Political Rights and the International Covenant on Economic, Social and Cultural Rights", - "values": [ - "3 - Considering action" - ] - }, - { - "text": "Adopt a national plan against human trafficking and provide assistance to all victims of trafficking regardless of the form of exploitation", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Consider adopting the United Nations Rules for the Treatment of Women Prisoners and Non-custodial Measures for Women Offenders or the "Bangkok Rules" to respond to the specific needs of female inmates", - "values": [ - "3 - Considering action" - ] - }, - { - "text": "Continue the efforts to improve the health care especially of children and the elderly persons, as well as those suffering from HIV", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Continue and enhance its efforts to ensure that all people, particularly those vulnerable groups are benefited from the measures to fulfil the economic, social and cultural rights, including a rise in the minimum wage", - "values": [ - "4 - General action" - ] - }, - { - "text": "Make proportional use of force during protests and proceed to the immediate release of political prisoners", - "values": [ - "4 - General action" - ] - }, - { - "text": "Ratify the OP-CAT and to take policy measures to prevent torture and ill treatment ", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Increase human rights training, awareness, and funding at all levels of the Armed Forces and National Police to ensure military and law enforcement officials protect human rights and thoroughly investigate allegations of violations ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Effectively implement the National Integration Strategy for Individuals Granted International Protection in Bulgaria(2014-2020) with particular focus on the needs of children", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Fight impunity for all perpetrators of violations and ratify the Rome Statute", - "values": [ - "4 - General action" - ] - }, - { - "text": "Continue to promote socioeconomic development so as to improve people\u2019s living standards", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Continue efforts and activities to raise awareness of human rights in the country", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Recommended that the National Security Act be brought in line with international standards regarding clarity of criminal law, and that active steps be taken to introduce alternatives to military service for conscientious objectors", - "values": [ - "4 - General action" - ] - }, - { - "text": "Ensure the enforcement within the factories of international labour rules and guarantee the safety of workers as well as their right to set up unions ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Continue to revise the Protection of State Information Bill so that it fully respects international human rights law, in particular the right to freedom of opinion and expression", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Continue efforts to ensure that those subject to administrative detention are provided free legal assistance. ", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Continue the reform process of the justice system", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Intensify efforts to accelerate the implementation of governmental measures and actions to ensure compliance with international standards for persons deprived of their liberty as soon as possible ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Strengthen the measures taken to provide free legal aid to women without sufficient means", - "values": [ - "4 - General action" - ] - }, - { - "text": "Review the Press and Publications Law in order to fully guarantee freedom of expression", - "values": [ - "3 - Considering action" - ] - }, - { - "text": "Strengthen further authorities' efforts to combat racism in the field of sports, including through legislative measures", - "values": [ - "4 - General action" - ] - }, - { - "text": "Allocate more resources to ensure the effective implementation of the Anti-Trafficking in Persons and Anti-Smuggling of Migrants Act", - "values": [ - "4 - General action" - ] - }, - { - "text": "Take concrete measures to ensure the right to education for all, focusing on decreasing the level of dropouts and on improving the quality of education", - "values": [ - "4 - General action" - ] - }, - { - "text": "Pursue an active and strict policy to end unfair pay differences between men and women especially in Government organizations ", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Continue its efforts for an adequate training in the field of juvenile justice", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Continue to work to improve the country's human rights situation, including in northern Mali, in cooperation with the international community", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Put an end to arbitrary detention, practices of torture and methods use by security forces in public demonstrations. These are forms of limiting freedom of expression and trial those persons responsible in line with Mozambique's international human rights obligations", - "values": [ - "4 - General action" - ] - }, - { - "text": "Prohibit all discriminatory practices and criminalize defamation, slander and incitement to discrimination, hostility or violence, whether they are public or not, towards a person or a group of persons because of their sexual orientation ", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Establish and implement concrete measures in conformity with CEDAW to modify and eliminate customs and cultural and harmful traditional practices that discriminate against women", - "values": [ - "4 - General action" - ] - }, - { - "text": "Develop targeted technical assistance programmes to strengthen the national human rights architecture", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Revise the procedures governing registration of civil society organizations to ensure transparent, non-discriminatory, expeditious and affordable procedures that conform to international human rights standards", - "values": [ - "3 - Considering action" - ] - }, - { - "text": "Adopt and implement an effective strategy to combat domestic violence ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Strengthen measures to address corruption ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Continue to effectively coordinate international aid so that it is focused on the affected populations", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Fully abolish the death penalty.", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Continue and strengthen the programs of the great mission Vivienda Venezuela to structurally solve the problem of housing shortage", - "values": [ - "4 - General action" - ] - }, - { - "text": "Continue its close cooperation with the mechanisms and special procedures of the Council, with a view to achieving incremental improvements, particularly with regard to the promotion and protection of the human rights situation of its people.", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "To strengthen the institutional and normative framework", - "values": [ - "4 - General action" - ] - }, - { - "text": "Introduce a clear duty on all schools to desegregate education and end discrimination against Romani children ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Effectively implement existing legislation on child labour in line with India's international obligations and strengthen the judicial powers of the National Commission for Protection of Child Rights ", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Adopt legislation to guarantee the fulfilment of the collective rights of the indigenous population and Afro-Ecuadoreans, so as to increase affirmative actions in favours of racial and gender equality ", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Allow unrestricted and independent humanitarian access to all areas which are still affected by conflicts in order to make it possible to provide assistance to civilians, in particular women and children", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Continue with the inclusive approach towards children with disabilities, especially in education, as well as increase awareness and training efforts for companies and service providers on the treatment of persons with disabilities and their access to all places, for example, that of persons with guide-dogs", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Systematically collect data on racially motivated hate crimes ", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Consider ratifying the Second Optional Protocol to the International Covenant on Civil and Political Rights with a view to abolishing the death penalty and establish an official moratorium on the death penalty", - "values": [ - "3 - Considering action" - ] - }, - { - "text": "Ratify the International Convention on the protection of all persons from enforced disappearances", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Cooperate fully with the Commission on Human Rights in South Sudan and OHCHR", - "values": [ - "4 - General action" - ] - }, - { - "text": "Consider the possibility of ratifying the International Convention on the Protection of the Rights of All Migrant Workers and Members of Their Families and the Convention against Torture and Other Cruel, Inhuman or Degrading Treatment or Punishment", - "values": [ - "3 - Considering action" - ] - }, - { - "text": "Sign and ratify the Conventions and Protocols to which it is not a party ", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Eliminate, in the case of transsexuals, the requirement of sterilization, medical treatment and a mental health diagnosis in order to complete the process of legal recognition of gender identity", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Adopt the Special Rapporteur's (regarding trafficking in persons) recommendation to intensify efforts to eliminate all forms of violence against women and girls, and to bring perpetrators to account", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Raise the level of human rights awareness among members of society", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Promote more tolerance towards minorities and respect for their human rights through civic educational campaigns in traditional and social media", - "values": [ - "4 - General action" - ] - }, - { - "text": "Ratify promptly the Optional Protocol to ICESCR and the Optional Protocol to CRPD", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Respect the institutions of the Slovenian minority by special treatment and inclusion in decision-making processes kindergartens, schools and theatres", - "values": [ - "4 - General action" - ] - }, - { - "text": "Step up its efforts in order to raise the level of employment and education of indigenous peoples and to react to the difficulties facing people living in isolated communities ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Italy is firmly committed to the promotion and protection of human rights and to fully cooperate with international mechanisms such as the UPR aimed at monitoring national progress in this field.", - "values": [ - "4 - General action" - ] - }, - { - "text": "Sign and ratify the Optional Protocol to the International Covenant on Economic, Social and Cultural Rights, ratify the Optional Protocol to the Convention against Torture and the International Convention for the Protection of All Persons from Enforced Disappearance", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Consider signing the third optional protocol to the Convention on the Rights of the Child providing for a procedure on the presentation of communications", - "values": [ - "3 - Considering action" - ] - }, - { - "text": "Designate a new Ombudsman as soon as possible", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Implement effectively the instrument of pretrial detention on exceptional basis", - "values": [ - "4 - General action" - ] - }, - { - "text": "Immediately end attacks on peaceful protesters and activists and bring violators to account", - "values": [ - "4 - General action" - ] - }, - { - "text": "Continue to implement measures to eliminate discrimination, including on the basis of ethnic or religious background", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Assist pregnant teenagers and teenage mothers to continue their education and guarantee the enjoyment of their fundamental rights", - "values": [ - "4 - General action" - ] - }, - { - "text": "With regard to the issuing of a standing invitation to all Special Rapporteurs, the delegation clarified that Angola was committed to reinforcing its cooperation with the international human rights mechanisms. In the last few years, the Government had invited the Special Rapporteur on the situation of human rights defenders, Special Rapporteur on freedom of religion or belief, and the Working Group on Arbitrary Detention. Also, two former United Nations High Commissioners for Human Rights visited Angola. The Government intends to extend invitations to the Special Rapporteur on the human rights of migrants and the Special Rapporteur on adequate housing as a component of the right to an adequate standard of living, and on the right to non-discrimination in this context. ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Repeal provisions in national law, notably sections 56 and 57 of the Offences against Persons Act, which criminalize sexual relations between consenting adults of the same sex ", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Ensure freedom of expression and information through the independence and pluralism of the media ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Investigate all alleged acts of torture and hold accountable State security agents who are found culpable", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Improve the conditions in correctional and other detention facilities", - "values": [ - "4 - General action" - ] - }, - { - "text": "Consider adopting additional measures to promote and protect the rights of persons with disabilities", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Adopt measures to guarantee that statutory law prevails in case of conflict with customary practices, especially in family relations, implement awareness campaigns to better inform persons regarding the rights enshrined in CEDAW, provide training for customary and traditional courts administrators regarding CEDAW as well as statutory law which promotes and guarantees the rights of women and girls, including with respect to marriage and family relations", - "values": [ - "4 - General action" - ] - }, - { - "text": "Strengthen the fight against trafficking in human beings, in particular women, by implementing educational and awareness-raising campaigns and enhancing support measures available to victims", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Take comprehensive measures to ensure that the alleged war crimes and other human rights violations committed during the internal conflict are investigated and prosecuted, with the aim of ending impunity", - "values": [ - "4 - General action" - ] - }, - { - "text": "Strengthen the measures aimed at ensuring the investigation and punishment of perpetrators of human rights violations, as well as the reparation of victims", - "values": [ - "4 - General action" - ] - }, - { - "text": "Make further efforts to protect and integrate into society disadvantaged women, such as rural women, women with disabilities and women in detention, by adopting targeted policies for them, in particular in the areas of education, employment, health care and social security", - "values": [ - "4 - General action" - ] - }, - { - "text": "Continue strengthening the capacity of the National Commission for Combating Trafficking in Human Beings", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Ensure that the Human Rights Ombudsman is an independent institution and receives the necessary resources to fulfil its mandate in accordance with the Paris Principles", - "values": [ - "4 - General action" - ] - }, - { - "text": "Investigate and prosecute all those, including Government officials and paramilitary members, suspected of having mistreated, tortured or killed anyone, including demonstrators, political activists, human rights defenders and journalists", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Continue practical efforts to improve the overall human rights situation in the country.", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Take measures to protect the rights of non-citizens and migrant workers, and eliminate discrimination against them in all areas", - "values": [ - "4 - General action" - ] - }, - { - "text": "Undertake measures to ensure that domestic courts are put in a position to apply the principles stemming from the European Convention on Human Rights", - "values": [ - "4 - General action" - ] - }, - { - "text": "Facilitate the growth and development of civil society organizations in the country ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Continue to address the problem associated with racial discrimination and policy disparities against indigenous persons", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Create a national strategy related to combating domestic violence against women and children", - "values": [ - "4 - General action" - ] - }, - { - "text": "Continue to focus on the Sustainable Development Goals in its international engagements, especially those related to education, health, sanitation and poverty alleviation", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Eliminate laws that criminalize opinion and accept visit requests from the OAS and the United Nations Special Rapporteurs on Freedom of Expression ", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Ban organizations that encourage and incite racial discrimination", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Continue its efforts to expand the coverage of and access to basic health services", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Ratify the Rome Statute and take the necessary measures to ensure the full implementation of the Statute in its national legislation", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Establish free and compulsory primary education and ratify the Convention on the Rights of the Child and its Optional Protocols ", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Implement its National Plan of Action on Human Rights ", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Improve its citizen's access to food by adopting a national strategy to protect its agriculture against the effects of climate change and natural disasters", - "values": [ - "4 - General action" - ] - }, - { - "text": "Issue and implement a standing invitation to the special procedures of the Human Rights Council", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Continue to implement the National Human Rights Action Plan 2015- 2019", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Make necessary efforts to reform all legislation that is discriminatory towards women, in particular the nationality act and the family affairs laws", - "values": [ - "4 - General action" - ] - }, - { - "text": "Strengthen its efforts on gender equality, including in combating negative stereotypes about women on their social roles and in ensuring wider employment opportunities for women", - "values": [ - "4 - General action" - ] - }, - { - "text": "Nepal expresses its commitments to continue its holistic and comprehensive approach to the promotion and protection of human rights and to put in practice a rights-based approach to development of all sectors. Nepal remains committed to engage the civil society and stakeholders in the promotion and protection of human rights.", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Review its legislation and practices that are discriminatory against women and step up efforts to eliminate all forms of discrimination and violence against women in all domain of life", - "values": [ - "3 - Considering action" - ] - }, - { - "text": "Follow up on offences linked to trafficking of persons irrespective of the victim\u2019s immigration status, in order to prevent the victim from being criminalized during the procedure", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Ratify the Second Optional Protocol to the International Covenant on Civil and Political Rights, aiming at the abolition of the death penalty, declare an official moratorium to the death penalty and abolish it", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Consider including human rights education in its school programmes", - "values": [ - "3 - Considering action" - ] - }, - { - "text": "Draw up and implement a national plan of action on the implementation of recommendations made in the course of the UPR", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Seek international assistance in the area of systematic training of law enforcement officials on their responsibility to protect human rights ", - "values": [ - "1 - Minimal action" - ] - }, - { - "text": "Establish a specific and comprehensive plan to combat gender violence and provide it with the necessary resources for its implementation ", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Enact the Family Protection and Domestic Violence Bill and continue efforts to increase and extend public awareness on domestic violence issues to the Outer Islands", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Continue its efforts in protecting the rights of specific groups such as women, children, the disabled, the aged and migrant workers", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Pursue dialogue and cooperation among all stakeholders, including with a view to ensuring that the Constitution provisions are in line with international standards related to democracy and human rights ", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Ensure equal access to poverty reduction programmes, particularly for indigenous families ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Accede to the Rome Statute as amended at the Review Conference in Kampala in 2010 and align its national legislation with the obligations under the Rome Statute, the definition of crimes and principles, including the crime of aggression ", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Carry out national campaigns against all forms of discrimination, publish its new law against discrimination and ensure its implementation ", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Continue to promote economic and social development, vigorously promote employment and raise people\u2019s standards of living", - "values": [ - "4 - General action" - ] - }, - { - "text": "Further consolidate an environment suitable for the work of human rights defenders", - "values": [ - "4 - General action" - ] - }, - { - "text": "Ensure full financial and political support for the Human Rights Defenders and Journalists Protection Mechanism, including by allocating to it necessary resources as well as trained and qualified staff", - "values": [ - "4 - General action" - ] - }, - { - "text": "Increase the level of political participation and decision-making of women and minority groups at governmental level", - "values": [ - "4 - General action" - ] - }, - { - "text": "Investigate all allegations of torture and start prosecuting all individuals found responsible", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Take measures to address impunity and investigate and prosecute cases of enforced disappearances and torture.", - "values": [ - "4 - General action" - ] - }, - { - "text": "Reconsider both the bans on students wearing ostentatious, religious symbols in public schools and on full-face concealment in public spaces to ensure expression of freedom of religion or belief", - "values": [ - "3 - Considering action" - ] - }, - { - "text": "Continue its efforts to remedy the wage gap between men and women", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Prepare progressively the national charter for the environment in order to coordinate the efforts of all sectors in this area, including civil society, and to frame the work of the existing Environment Public Authority ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Ensure an adequate publicity and carry out awareness campaigns in order to increase the understanding among the population on the rights of LGBT persons ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Develop and enforce a comprehensive social housing system and take measures in order to prevent the creation of segregated housing areas", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Consider the possibility of becoming a party to the following international instruments: the Optional Protocol to the Convention on the Rights of the Child on the sale of children, child prostitution and child pornography, the International Convention on the Protection of the Rights of All Migrant Workers and Members of Their Families, the Convention on the Rights of Persons with Disabilities and the International Convention for the Protection of All Persons from Enforced Disappearance ", - "values": [ - "3 - Considering action" - ] - }, - { - "text": "Integrate human rights concepts into the curricula for university education ", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Continue current efforts to increase the literacy rate and promote universal access to education", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Continue to place emphasis on promoting universal access to education and improving the quality of its education system ", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Develop measures for social protection, including through the adoption of a system of health coverage", - "values": [ - "4 - General action" - ] - }, - { - "text": "Continue to take measures for extending the population's access to the health system as well as develop the social protection system ", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Continue reviewing their legislations and promote women's rights concerning education, employment, health care and housing ", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Continue to put in place policies and programmes aimed at eliminating all discrimination against women and achieving gender equality, including active promotion of higher education for women and improving the number of women holding decision-making positions in public and private sectors", - "values": [ - "4 - General action" - ] - }, - { - "text": "Continue its efforts to take more concrete measures to ensure the protection of women against all forms of discrimination and violence", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Adopt effective measures to combat all forms of ill-treatment of children, including corporal punishment", - "values": [ - "4 - General action" - ] - }, - { - "text": "Free health service: People have free access to health and medical services that are provided by government. For serious cases where treatment is not available, patients are referred to Fiji and New Zealand for treatment, funded by government.", - "values": [ - "4 - General action" - ] - }, - { - "text": "Consider mainstreaming sexual and reproductive health education in schools and offering access to contraception to young people", - "values": [ - "3 - Considering action" - ] - }, - { - "text": "Proceed swiftly with the ratification of the OP- CRC-SC and OP-CAT ", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Take verifiable measures to improve prison conditions", - "values": [ - "4 - General action" - ] - }, - { - "text": "Continue moving in the direction of improving the standards and the quality of care and treatment in foster homes", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Further mainstream human rights throughout its administration, both at national and provincial levels, to ensure that legal reforms result in improved human rights protection, especially for women and lesbian, gay, bisexual, transgender and intersex persons", - "values": [ - "4 - General action" - ] - }, - { - "text": "Adopt a national plan to protect women against violence", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Adopt an action plan to implement the recommendations and voluntary commitments undertaken during its first Universal Periodic Review ", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Continue its efforts to enhance access to quality education for all its young citizens, especially those with special needs ", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Take concrete steps to implement the national Roma strategy within the next two years", - "values": [ - "4 - General action" - ] - }, - { - "text": "Continue to consider the potential for its accession to the International Covenant on Civil and Political Rights and the International Covenant on Economic, Social and Cultural Rights, which are the most fundamental human rights conventions ", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Expedite the presentation of reports to human rights mechanisms, especially in cases where the initial reports are long overdue ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Consider an early ratification of the third Optional Protocol to the Convention on the Rights of the Child, on a communication procedure ", - "values": [ - "3 - Considering action" - ] - }, - { - "text": "Intensify its efforts to ratify the Optional Protocol to the Convention against Torture and Other Cruel, Inhuman or Degrading Treatment or Punishment", - "values": [ - "4 - General action" - ] - }, - { - "text": "Continue efforts to harmonize national legislation with international norms", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Ensure that the freedom of expression is implemented fully, especially in publicly owned media", - "values": [ - "4 - General action" - ] - }, - { - "text": "Consider ratifying the Palermo Protocol, as well as CRPD ", - "values": [ - "3 - Considering action" - ] - }, - { - "text": "Continue to pay close attention to the full realization of the rights of the child, including the right to education", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Swiftly enact the Marriage and Divorce Bill of 2009 to end discrimination against women in family law and enact a new succession act promoting equal inheritance rights for both women and men", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Continue effective policies aimed at ensuring rights of persons with disabilities through instruments that are in line with respective international conventions as well as by developing and implementing national programs", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Continue the restoration of the prisons' infrastructure, particularly in the context of the Master Plan for Investment in the System of Prisons ", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Continue strengthening efforts to ensure the economic, social and cultural rights of citizens", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Closely cooperate with the UNHCR and other relevant organizations to provide more adequate protection and proper treatment of asylum seekers and refugees", - "values": [ - "4 - General action" - ] - }, - { - "text": "Withdraw the unilateral declaration which seriously limits the scope of the definition of torture under CAT", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Prioritize efforts to achieve the maternal health and basic education Millennium Development Goals ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Take all the necessary measures to fully implement the National Social Inclusion Strategy", - "values": [ - "4 - General action" - ] - }, - { - "text": "Adopt proactive measures to ensure access to equal opportunities and promote equal gender representation in decision-making positions, and implement non-discriminatory policies to ensure equal pay for women and men", - "values": [ - "4 - General action" - ] - }, - { - "text": "Allocate the resources necessary for the realization of the national strategies and plans for the protection of the rights of the child, including for the full identification and monitoring of children in situations of vulnerability and the protection of their interests", - "values": [ - "4 - General action" - ] - }, - { - "text": "Accelerate the development and adoption of the Children's Code ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Develop programmes and policies of prevention, recovery, and social reintegration of child victims", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Establish appropriate policies in order to make the right to education for all a priority", - "values": [ - "4 - General action" - ] - }, - { - "text": "Strengthen efforts to ensure better participation of women at the political level ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Consider reviewing laws regarding abortion, removing punitive provisions against women who have had an abortion and medical professionals who have exercised their professional responsibilities", - "values": [ - "3 - Considering action" - ] - }, - { - "text": "Protect the youth from societal dangers", - "values": [ - "4 - General action" - ] - }, - { - "text": "Promote societal dialogue aimed at developing religious discourse supportive of the values of tolerance, social cohesion and mutual understanding", - "values": [ - "4 - General action" - ] - }, - { - "text": "Continue its efforts to promote and protect the rights of women and children in accordance with the obligations of the CEDAW and the CRC ", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Recognize the right to conscientious objection to military service and introduce alternative service in line with international standards", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Realize the right to education for all, including human rights education, by inter alia, ensuring the effective implementation of the law providing for free primary education", - "values": [ - "4 - General action" - ] - }, - { - "text": "Organize visits of the Special Rapporteur on trafficking in human beings, the Special Rapporteur on contemporary forms of racism, the Special Rapporteur on torture and the Independent Expert on minority issues to the country", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Enhance its efforts to provide equal educational opportunities for children with disabilities, including by abolishing the practice of corrective and auxiliary schools, by providing the necessary support and by ensuring that teachers are trained to educate children with disabilities in regular schools", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Promote regional development in indigenous areas and strengthening local economies and improve living conditions to them", - "values": [ - "4 - General action" - ] - }, - { - "text": "Develop further and implement measures to deal with the large backlog of cases in courts.", - "values": [ - "4 - General action" - ] - }, - { - "text": "Accede to the Rome Statute as amended at the Review Conference in Kampala in 2010 and align its national legislation with the obligations under the Rome Statute, the definition of crimes and principles, including the crime of aggression", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Accelerate the process of ratification of the Optional Protocol to the Convention against Torture", - "values": [ - "4 - General action" - ] - }, - { - "text": "Continue adopting measures to facilitate hiring women in labour sectors that have traditionally been exclusively for men, including the armed forces", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Continue its institutional efforts to combat human trafficking ", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Carry out the necessary measures to eliminate the barriers that impede the birth registration of all persons born in South African territory, including migrants and refugees ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Take further steps to protect freedom of expression and opinion, in line with its obligations under the International Covenant on Civil and Political Rights", - "values": [ - "4 - General action" - ] - }, - { - "text": "Ratify and fully align its national legislation with the Rome Statute of the International Criminal Court, and accede to the Agreement on Privileges and Immunities of the Court", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Incorporate within the Public Prosecution Service\u2019s criminality observatory and in the statistical yearbook of the national police detailed data on acts of violence and discrimination against lesbian, gay, bisexual, transgender and intersex persons", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Develop public awareness-raising campaigns on stereotyping and discrimination, and provide mandatory training on human rights for police officers", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Establish a mechanism for collecting and evaluating data on incidents of domestic violence and sexual harassment so as to assist the Government in tackling violence against women", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Adopt a law to abolish the death penalty", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Continue its UPR consultation process in cooperation with civil society organizations following the adoption of the UPR reports ", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Continue its efforts in providing migrants and other sectors in vulnerable situations greater access to health, education and other social services, in the face of an increased number of migrants entering Europe", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Implement Recommendation 2010/5 of the Committee of Ministers of the Council of Europe, in particular the issues regarding freedoms of expression and peaceful assembly", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Consider measures to enhance work place safety in private sector, in particular in the garments sector ", - "values": [ - "3 - Considering action" - ] - }, - { - "text": "Implement specialized protocols to address and investigate cases of violence and discrimination for reasons of sexual orientation and gender identity, particularly when the victims are children and adolescents", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Ensure full protection and realization of the right to freedom of expression and plurality of information sources as well as the right to peaceful assembly and association in compliance with international standards. ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Accede to the 1951 Refugee Convention on Refugees and its 1967 Optional Protocol", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Consolidate and strengthen its national human rights infrastructure ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Strengthen the Government's efforts to eliminate illiteracy, particularly in remote and difficult locations ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Continue its reforms to improve policies and programs towards promotion and protection of all human rights", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Harmonize legislation in order to ensure that the minimum age of marriage is increased to 18 years for boys and girls, without exception", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Adopt effective measures to fight violence against women ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Take the necessary steps for the effective investigation and prosecution of the serious human rights violations that occurred during the fighting in 2002-2003 ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Ratify the Second Optional Protocol to the International Covenant on Civil and Political Rights aiming at the abolition of to the death penalty ", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Take measures to introduce a formal moratorium on executions and take concrete steps toward the abolition of the death penalty", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Intensify its law enforcement efforts against trafficking offenders, incorporate anti-trafficking training into its standard police curriculum, and ensure that legal aid and material assistance are made available ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Respond positively to requests for visits by the United Nations Special Rapporteurs on torture and freedom of opinion and expression", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Sign and ratify the Agreement on the Privileges and Immunities of the Court ", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Ratify the Indigenous and Tribal Peoples Convention No. 169.", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Adopt policies aimed at promoting women's rights and combating domestic and sexual violence ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Undertake more effective measures to address the problems of sexual abuse and violence against women and girls ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Design programmes for the implementation of its human rights action plan", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Through relevant mechanisms, continue to guarantee through specific, concrete measures the constructive cooperation policies towards the office of the Commissioner for the Protection of Children's Rights, providing it with the necessary resources to guarantee the fulfilment of its functions for the benefit of the boys, girls and adolescents of the country ", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Ensure better representation of women in the peace process", - "values": [ - "4 - General action" - ] - }, - { - "text": "Ensure that women victims of violence receive adequate assistance and that perpetrators are brought to justice", - "values": [ - "4 - General action" - ] - }, - { - "text": "Establish appropriate mechanisms to encourage the reporting of racist incidents and crimes", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Spread information about the negative consequences of female genital mutilation, also in cooperation with relevant international organizations and United Nations agencies ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Recommended that the prohibition of discrimination be strengthened in the context of the current constitutional-review and furthermore that Specific legislation be adopted to ensure the full implementation of CEDAW on the ground.", - "values": [ - "4 - General action" - ] - }, - { - "text": "Intensify efforts to improve the existing conditions in detention centres and prisons", - "values": [ - "4 - General action" - ] - }, - { - "text": "Review the Employment of Young Persons and Children\u2019s Act with a view to including in its domestic labour and family-based enterprises and improve its data collection mechanisms on violations of the Act", - "values": [ - "4 - General action" - ] - }, - { - "text": "Accord a high priority to the implementation of legislation addressing violence against women", - "values": [ - "4 - General action" - ] - }, - { - "text": "Further strengthen the education measures and policies for the inclusion of Roma students in the education system, and intensify the literacy campaigns for its population ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Take further measures to ensure the full protection of the freedom of religion or belief for religious minorities ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Adhere to the Hague Convention on Protection of Children and Co- operation in respect of Intercountry Adoption", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Ratify the UNESCO Convention against Discrimination in Education (1960)", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Pursue with resolve its efforts towards the eradication of corruption.", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Continue reforms in the system of the law enforcement agencies and the judicial system", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Continue efforts towards ratification of international conventions", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Further open its doors to cooperation with human rights and humanitarian organizations, including by extending an open invitation to Special Procedures and by providing full access to representatives of the International Committee of the Red Cross", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Recommended that further measures be adopted to overcome stereotypes and to reinforce the implementation of constitutional and legal guarantees with a view to ensuring that all human rights of women are safeguarded throughout its territory.", - "values": [ - "4 - General action" - ] - }, - { - "text": "Adopt a comprehensive national gender equality action plan", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Put in place a strategy or a plan of action to fight illiteracy", - "values": [ - "4 - General action" - ] - }, - { - "text": "Continue to implement the National Action Plan for Poverty Reduction in order to alleviate poverty and improve the standards of living", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Explore ways of providing the necessary resources to ensure the independent and effective operation of the ombudsman's office", - "values": [ - "3 - Considering action" - ] - }, - { - "text": "Intensify efforts to strengthen the fight against female genital mutilation", - "values": [ - "4 - General action" - ] - }, - { - "text": "Fight against the hate speeches that provoke racial and ethnical discrimination and to fight against the relevant violence", - "values": [ - "4 - General action" - ] - }, - { - "text": "Develop policies and actions aimed at modifying or eliminating customs and practices that promote violence and/or discrimination against women, covering family, marital, social and working areas", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Enact legislation which would, in line with Article 1 of the Convention against Torture (CAT), prevent and eliminate torture, and ratify OP-CAT at the earliest opportunity ", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Accede to the OP-CAT and recognize the competence of CAT to receive and consider communications according to articles 21 and 22 of the CAT", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Review all new legislation to ensure consistency with International Human Rights Law and the Constitution, consulting broadly to build a national consensus and protect the role of an active civil society", - "values": [ - "3 - Considering action" - ] - }, - { - "text": "Consider continuing to strengthen the rights of women, particularly in the family setting", - "values": [ - "3 - Considering action" - ] - }, - { - "text": "Ratify the Convention on the Rights of the Child, the International Convention on the Protection of the Rights of All Migrant Workers and Members of their Families, International Convention for the Protection of All Persons from Enforced Disappearance, the Convention on the Rights of Persons with Disabilities, the Convention on the Elimination of All forms of Discrimination against Women and the Rome Statute of the International Criminal Court", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Continue the fight against poverty and hunger ", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Take more resolute action to combat hate speech and incitement to hatred, including in the media, against members of religious and ethnic minorities", - "values": [ - "4 - General action" - ] - }, - { - "text": "Continue its efforts to promote and protect the economic, social and cultural rights of its people and share its experience in poverty reduction and agricultural development.", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Accelerate tackling gender inequality, effectively protect women's rights and strike down at violence against women", - "values": [ - "4 - General action" - ] - }, - { - "text": "Expedite the ratification of the Optional Protocol to the Convention on the Rights of the Child on the sale of children, child prostitution and child pornography", - "values": [ - "4 - General action" - ] - }, - { - "text": "Step up efforts and legislation to combat human trafficking", - "values": [ - "4 - General action" - ] - }, - { - "text": "Review the Law on the Protection of Minors against the Detrimental Effect of Public Information in order to remove all possibilities that this law may be applied in such a way to stigmatize or discriminate against Lesbian, Gay, Bisexual and Transgender people or to breach their rights to freedom of assembly or expression ", - "values": [ - "3 - Considering action" - ] - }, - { - "text": "Consider ratification of the International Covenant on Economic, Social and Cultural Rights as accepted during the first cycle review", - "values": [ - "3 - Considering action" - ] - }, - { - "text": "Decriminalize sexual activities between consenting adults and raise further awareness to promote tolerance in this area", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Protect the human rights of journalists and human rights defenders and ensure that they are able to carry out peaceful activities without harassment, threat of detention or imprisonment.", - "values": [ - "4 - General action" - ] - }, - { - "text": "Continue to work on implementing the accepted recommendations by the LLRC Reconciliation", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Continue efforts to incorporate a human rights perspective in the on- going processes of law and institutional reform", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Consider abolishing the death penalty ", - "values": [ - "3 - Considering action" - ] - }, - { - "text": "Review legislation to ensure it does not discriminate unfavourably against women and introduce laws to unequivocally prohibit violence against women.", - "values": [ - "3 - Considering action" - ] - }, - { - "text": "Take all necessary measures to eradicate discrimination against indigenous peoples ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Publish an enhanced and updated national action plan by 2015, which will detail how the government will eliminate the excessive use of force and beatings against prisoners and pre-trial detainees including updating existing educational programmes for police officers", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "In cooperation with the relevant international organizations, continue its programmes to improve the public health standards and well-being of its people ", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Announce a moratorium on the death penalty with a view to its eventual abolition. Pending abolition, its application should be limited", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Continue its efforts to include human rights issues in the training programmes for military personnel and security personnel", - "values": [ - "4 - General action" - ] - }, - { - "text": "Strengthen legislative measures and establish measures to combat discrimination and violence against women, bring to an end damaging cultural practices harmful to girls and to twins", - "values": [ - "4 - General action" - ] - }, - { - "text": "Continue close cooperation with countries of origin and transit in finding an effective solution to the problem of illegal immigration", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Continue to implement programmes and measures intended to guarantee the right to health and the right to education", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Continue to focus on developing its economy, escalating employment, increasing efforts on poverty reduction, and improving the living standards of its people", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Remove all reference to the death penalty in the Penal Code and commute all death sentences into alternative sentences", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Ratify the Istanbul Convention", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Make greater efforts to investigate complaints and prosecute those that commit crimes against ethnic and religious minorities, such as the Hazaras, Dalits, Christians, Hindus and Ahmadis", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Continue to prioritize the allocation of financial and human resources to the health sector while focusing on preventive measures and treatment ", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Consider adopting a framework law for the full realization of the right to food", - "values": [ - "3 - Considering action" - ] - }, - { - "text": "Continue efforts to strengthen reporting capacity to the UN human rights treaty bodies ", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Ratify the International Convention on the Protection of All Persons from Enforced Disappearance and recognize the competence of the Committee on Enforced Disappearances", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Devise and implement plans for combating trafficking in women and children ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Intensify efforts to put an end to racial discrimination, and to this end, fill the legal vacuum by adopting a law that sanctions it", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Ensure due process for all immigrants in immigration proceedings, using the principle of the best interest, especially in the case of families and unaccompanied children", - "values": [ - "4 - General action" - ] - }, - { - "text": "Establish a moratorium on the use of the death penalty with a view to its abolition and, in the meantime, immediately stop imposing the death penalty on anyone under the age of 18 ", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Address a standing invitation to the Special Procedures of the Human Rights Council", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Establish a moratorium on death penalty at the federal and states levels with a view to ultimately achieve nationwide legal abolition", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Share best practices in promoting religious tolerance and harmony in society", - "values": [ - "1 - Minimal action" - ] - }, - { - "text": "Withdraw its interpretive statement on the OP to the CRC on the involvement of children in armed conflict", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Allow and facilitate immediately the deployment of the UNMISS Regional Protection Force as mandated by the Security Council", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Adopt and implement measures to protect women and children from domestic violence, sexual exploitation and trafficking in persons ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Continue to introduce the legislative and institutional measures necessary to enhance the independence and effectiveness of its National Human Rights Institution", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Close down immediately all political prison camps and labour camps and unconditionally release all prisoners of conscience, including relatives that have been held on the basis of "guilt by association" ", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Actively address issues of freedom of expression and association in Nauru, and support political representation for all Nauruan", - "values": [ - "4 - General action" - ] - }, - { - "text": "Ratify the International Convention for the Protection of All Persons from Enforced Disappearance, the Convention against Torture and its Optional Protocol", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Stop limits on Constitutional rights of peaceful assembly and freedom of expression and release all those imprisoned for exercising their constitutional rights, including media representatives", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Continue to promote gender equality and involvement of women in public services", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Implement all necessary measures to ensure full protection of human rights and promote national reconciliation", - "values": [ - "4 - General action" - ] - }, - { - "text": "Improve transparency and inclusiveness of election processes fostering the culture of political dialogue and adopting concrete measures to prevent cases of election violence", - "values": [ - "4 - General action" - ] - }, - { - "text": "Improve access to legal assistance and ensure compensation for victims, especially female victims of sexual violence", - "values": [ - "4 - General action" - ] - }, - { - "text": "Ratify ILO Convention No. 189 ", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Accelerate the adoption of the pending bills, particularly those related to fight against the phenomenon of money laundering and terrorism in order to establish an appropriate legal framework for combating terrorism", - "values": [ - "4 - General action" - ] - }, - { - "text": "Continue to implement voluntary pledges and commitments towards the promotion and protection of human rights and fundamental freedoms", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Continue its cooperation with the United Nations and international human rights mechanisms to overcome the remaining obstacles and challenges", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Introduce a clear definition of child pornography into national legislation", - "values": [ - "4 - General action" - ] - }, - { - "text": "Strengthen the powers of the inspection of the jurisdictions and the services of the High Council of the Judiciary", - "values": [ - "4 - General action" - ] - }, - { - "text": "Establish national human rights institution in accordance with the Paris Principles ", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Ratify the Optional Protocol to ICESCR, first Optional Protocol to ICCPR, Optional Protocol to CEDAW and the two Optional Protocols to CRC", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Develop appropriate training and awareness-raising measures towards the Roma, ethnic minorities and other marginalized groups and to create a Justice system complying with international standards and ensuring that the perpetrators can be brought to Justice.", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Abide by all relevant United Nations resolutions pertaining to human rights violations that concern Turkey implicitly or explicitly ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Allocate adequate resources for the health sector as well as to ensure free access to health facilities to the needy", - "values": [ - "4 - General action" - ] - }, - { - "text": "That, until a moratorium is applied, steps be taken to restrict the number of offences carrying the death penalty", - "values": [ - "4 - General action" - ] - }, - { - "text": "Carry on its efforts in strengthening the links between higher education and the labour market\n", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Continue efforts in empowering those sections of the society that require special treatment ", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Complete the process of abolition of the death penalty", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Undertake a periodic review of its reservations to other international human rights treaties.", - "values": [ - "3 - Considering action" - ] - }, - { - "text": "Continue to work to strengthen national human rights and democratic institutions ", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Take further steps aimed at strengthening its national institution in the area of protection and promotion of the rights of the child", - "values": [ - "4 - General action" - ] - }, - { - "text": "Continue implementing measures and funding programmes to combat anti-Semitism", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Take appropriate measures with a view to facilitating access to work for women ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Submit its first report on compliance with the Convention on the Rights of the Child, in line with its commitment as stated in the national report ", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Reinforce mechanisms to detect and investigate cases of domestic violence, train law enforcement officials to deal with such cases and fully implement the provisions of the National Plan for Preventing Violence for the period 2015-2020", - "values": [ - "4 - General action" - ] - }, - { - "text": "Strengthen cooperation with civil society on promoting non-discrimination and tolerance in society, and consider instituting regular consultations with civil society organizations on improving the human rights protection system", - "values": [ - "4 - General action" - ] - }, - { - "text": "Intensify its efforts to promote multiculturalism at all levels ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Take appropriate steps to improve the treatment of detainees", - "values": [ - "4 - General action" - ] - }, - { - "text": "Continue to promote economic rights in order to improve the living conditions of the population", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Put an end to discriminatory practices against Roma children, in particular the infringement of their right to education, segregation and forced placement in schools of children with developmental delays", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Enact consolidated laws addressing all types of sexual violence effectively, with provisions of no statutory limitation on rape and other sexual violence, adequate witness and victim protection mechanisms, compensation from state and measures to address special needs of girls below 16", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Take measures aimed at achieving inclusive education for persons with disabilities, mainly children with disabilities ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Explicitly incorporate the approach based on gender rights and sensitivity, the Public Policy for Coexistence and Elimination of Racism and Racial Discrimination and the Plan for its implementation so that, in line with the 2030 Agenda, no one is left behind", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Continue its efforts to combat religious and hate crimes and invite State high officials to take a clear position against those crimes ", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Adopt the existing draft law on combating violence against women to incorporate the criminalization of marital rape, incest, and sexual harassment", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Create the national council of women for the follow-up of the implementation of the Equal Rights and Opportunities Act", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Continue economic empowerment of women", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Pass and implement a comprehensive law banning all corporal punishment against children", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Continue working towards the establishment of an Office of the Ombudsman in conformity with the Paris Principles", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Continue advancing in the gradual transformation of the society regarding women's rights, by revising the Senegalese Family Code in order to put an end to legal discrimination situations of Senegalese women, especially in terms of their ability to be the head of household (art. 152)", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Establish an inclusive process to follow up on the recommendations of the Working Group ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Step up efforts to facilitate the participation of women in political and public affairs and to combat stereotypes regarding the role of women", - "values": [ - "4 - General action" - ] - }, - { - "text": "Implement the law against corruption", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Consider positively the ratification of the conventions on enforced disappearance, the migrant workers, refugees, statelessness and the reduction of cases of statelessness, and the Optional Protocol to CAT ", - "values": [ - "3 - Considering action" - ] - }, - { - "text": "Continue to step up efforts in the area of combating trafficking in human beings, especially women and children", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Consider signing and ratifying OP-CAT ", - "values": [ - "3 - Considering action" - ] - }, - { - "text": "We are committed to expanding access to health care to all our citizens and as such, have made efforts to strengthen and protect our social and health care programs: Medicare for the elderly and disabled, and Medicaid for low-income individuals and families. Under the ACA, Medicare beneficiaries have saved billions of dollars on prescription drugs and have seen no increase in rates since 2013. Additionally, Medicare beneficiaries no longer have to pay cost-sharing for preventive services, and nearly nine million individuals have enrolled in coverage in state-run Medicaid programs since October 2013.", - "values": [ - "4 - General action" - ] - }, - { - "text": "Abolish the death penalty, establish a moratorium on executions and ratify the Second Optional Protocol to the International Covenant on Civil and Political Rights, aiming at the abolition of the death penalty", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Repeal or amend the section of the Penal Code which provides for criminal sanctions against carnal intercourse against the order of nature and may thus be applied to criminalize sexual activity between consenting adults, so as to ensure that it does not discriminate against lesbians, gays, bisexuals and transsexuals ", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Provide the same coverage in national legislation and anti-discrimination training activities for the grounds of sexual orientation and disability as for other grounds of discrimination, for example in areas such as the provision of services and health care.", - "values": [ - "4 - General action" - ] - }, - { - "text": "Consider to establish a national human rights institution in line with the Paris Principles", - "values": [ - "3 - Considering action" - ] - }, - { - "text": "Continue to combat violence against women and promote gender equality, with assistance from the UN Women and other relevant organizations ", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Further develop policies to ensure full enjoyment of rights and equality to lesbian, gay, bisexual, transgender and intersex persons", - "values": [ - "4 - General action" - ] - }, - { - "text": "Hold security forces and government officials accountable for human rights violations and abuses", - "values": [ - "4 - General action" - ] - }, - { - "text": "Accelerate the improvement of the judicial, police and prison systems in line with international human rights standards ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Take immediate action to ensure respect for the rights of the indigenous people living in the areas of interest to companies active in the diamond business", - "values": [ - "4 - General action" - ] - }, - { - "text": "Step up efforts to eliminate occupational exclusion, to ensure equal pay for work of equal value to men and women.", - "values": [ - "4 - General action" - ] - }, - { - "text": "Adopt the necessary measures to guarantee the full independence and impartiality of the National Human Rights Commission, ensure the transparency of the appointment process of its members and ensure that it has an independent oversight mechanism", - "values": [ - "4 - General action" - ] - }, - { - "text": "Prohibit assisted suicide to protect the human rights of the elderly, sick, disabled and other vulnerable members of society in line with their commitment to the right to life, health and non-discrimination", - "values": [ - "4 - General action" - ] - }, - { - "text": "Intensify efforts in the fight against all forms of discrimination, in particular against lesbian, gay, bisexual, transgender and intersex persons and minorities, by fully implementing the Law on Protection against Discrimination ", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Provide access to Ingushetia for the United Nations Working Group on enforced disappearances and the Special Rapporteurs on torture and extrajudicial, summary or arbitrary executions", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Improve the access of women to employment as well as to political life ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Amend its domestic law to prohibit discrimination based on disability, and adopt a national plan to address the needs of the disabled community ", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Consider ratifying the International Convention on the Protection of the Rights of Migrant Workers and Members of Their Families and ILO Convention No. 189 ", - "values": [ - "3 - Considering action" - ] - }, - { - "text": "Establish the new National Human Rights Institution in such a way that it can operate effectively and independently, in full compliance with the Paris Principles ", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Ratify the first and second Optional Protocols to the Convention on the Rights of the Child", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Positively consider adhering to the Convention related to the Status of Stateless Persons of 1954 and other instruments related to Stateless Persons ", - "values": [ - "3 - Considering action" - ] - }, - { - "text": "Materialize the prearranged visit with the Special Rapporteur on the question of Torture", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Consider incorporating gender equality in all its policies", - "values": [ - "3 - Considering action" - ] - }, - { - "text": "End the unjust incarceration of political prisoners, including Leonard Peltier and Mumia Abu-Jamal ", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Continue strengthening tolerance in the Ukrainian society and take measures to prevent integration of nationalistic ideas in the political platforms of the public associations", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Take special and effective measures to guarantee freedom of religion", - "values": [ - "4 - General action" - ] - }, - { - "text": "Seek technical assistance in the field of violence against children ", - "values": [ - "1 - Minimal action" - ] - }, - { - "text": "Implement actions and immediate measures for the elimination of the worst forms of child labour, in conformity with ILO Convention No. 182", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Adopt legislation and policy measures prohibiting racial discrimination", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Urgently review the legal grounds and practice of pretrial detention that will effectively limit its use and duration", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Criminalize acts of violence against children accused of witchcraft and organize a national campaign of awareness-raising on this issue", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Create and maintain in law and in practice a safe and enabling environment for civil society and human rights defenders, including by amending its laws to ensure compliance with the International Covenant on Civil and Political Rights and full independence of the judiciary in line with international standards", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Ensure by legislative and other measures that women in Northern Ireland are entitled to safe and legal abortion on equal basis with women living in other parts of the United Kingdom ", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Intensify its efforts to counter discrimination against women based on whatever grounds ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Consider ratifying as soon as possible Convention No. 169 of the International Labour Organization", - "values": [ - "3 - Considering action" - ] - }, - { - "text": "Ensure the comprehensive and effective incorporation of children's rights into Ireland's legal framework in line with the United Nations Convention on the Rights of the Child by incorporating children's rights into the Constitution", - "values": [ - "4 - General action" - ] - }, - { - "text": "Take further measures, both in terms of legislation and implemented policies, in order to ensure the respect for human rights of all migrants", - "values": [ - "4 - General action" - ] - }, - { - "text": "Bring its legislation on the determination of the status of refugees and stateless persons in line with international standards", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Fully investigate abuses by law enforcement officials, namely extra judicial killings, acts of torture and ill-treatment of detainees and arbitrary detentions and human rights violations and ensure that the perpetrators are duly punished", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Continue efforts to improve the social sectors, including through technical assistance ", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Strengthen the humanistic policies of cooperation and solidarity with the people from the region of the Caribbean and Latin America", - "values": [ - "4 - General action" - ] - }, - { - "text": "Develop an appropriate mechanism to mandate the collection, disaggregation and standardisation of data such as social data, crime statistics and other criminal justice indicators ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Continue efforts to improve the standard of living, providing extensive access for the population to a quality system of education and health protection", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Adopt further measures to reduce prison overcrowding, inter alia through reducing the rate of pretrial detention", - "values": [ - "4 - General action" - ] - }, - { - "text": "Envisage increasing the budget allocation to the Office of the Ombudsman in order to enable it to efficiently investigate human rights matters, and create a National Human Rights Institution in line with the Paris Principles ", - "values": [ - "3 - Considering action" - ] - }, - { - "text": "Continue cooperation with the United Nations system, particularly through the Peacebuilding Commission ", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Continue positive efforts to put an end to the prevailing insecurities and violence plaguing the country", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Remove undue restrictions on the online publication of news media, and the licencing restrictions on media organizations and individuals seeking to practise journalism", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Cease immediately the expansion of settlements and the operations of destruction, inter alia, in East Jerusalem of houses belonging to Palestinian families.", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Ensure effective and adequate protection of women against domestic violence, including by providing legal assistance and shelters", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Establish an immediate de jure moratorium on the use of the death penalty", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Implement the recommendations of the Special Rapporteur on the question of torture in order to address the violations to fundamental rights highlighted by him during his visit, notably, the generalized ill-treatment of detainees, the total absence of rights of incarcerated persons, the degrading conditions of detention and the absence of a control mechanism, leading to excessive periods of preventative detention ", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Strengthen the justice system to protect human rights of the vulnerable people in particular women and children", - "values": [ - "4 - General action" - ] - }, - { - "text": "Support the United Nations Declaration on the Rights of Indigenous Peoples.", - "values": [ - "4 - General action" - ] - }, - { - "text": "Stop arresting migrants in isolated cells and in solitary confinement", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Take concrete steps to ensure freedom of the media and investigate any intimidation and arbitrary detention of journalists and human rights defenders with a view to bringing such practices to an end ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Create by law a national institution to ensure the fulfilment and application of human rights for the entire population without distinction of any kind and provide increased financial and human resources to the Office of the Equal Opportunities Ombudsperson", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Ratify ICCPR, CRPD and the two Optional Protocols to CRC ", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Put an end to the policy of colonization with illegal settlements", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Ensure that members of the security forces suspected of violations of human rights or humanitarian law be rapidly handed over to justice for investigation and judgement, severe vetting action linked to recruiting and promotion is encouraged.", - "values": [ - "4 - General action" - ] - }, - { - "text": "Adopt and implement appropriate efficient policies and programmes strengthen its efforts in raising public awareness to eliminate child labour ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Further accelerate the efforts to strengthen the legal framework to protect the rights of migrants", - "values": [ - "4 - General action" - ] - }, - { - "text": "Continue protecting its population from the effects of unilateral coercive measures imposed on the country and consider establishing a national mechanism to monitor and assess the negative impact of such measures on the country", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Continue to improve the training and specialization of investigators, prosecutors and judges to tackle crimes of trafficking in persons, including with a focus on women and children", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Remove impediments women may face in gaining access to justice and take special measures, in collaboration with the CHRAJ, to enhance women's awareness of their rights, and legal literacy to claim their rights.", - "values": [ - "4 - General action" - ] - }, - { - "text": "In cooperation with UNESCO continue to implement measures to promote access to education for all", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Continue repealing discriminatory laws and to allocate adequate budget for the implementation of its National Gender Programme to ensure non-discrimination against women", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Take measures to reduce the backlog of cases before the courts in order to ensure that justice is served promptly and efficiently and that accused persons are guaranteed due process", - "values": [ - "4 - General action" - ] - }, - { - "text": "Implement the awareness-raising programme to fight against domestic violence against women and girls", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Start establishing a national human rights institution in accordance with the Paris Principles", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Continue to develop strategies to protect children, including measures to ensure that children living in the street and in foster care institutions have the right to live in a family and have access to health and education", - "values": [ - "4 - General action" - ] - }, - { - "text": "Guarantee to everyone, including journalists and human rights defenders, enjoyment of freedom of expression ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Modify the criminal code in order to decriminalize consensual sexual behaviour between persons of the same sex, suppress degrading terms that could be used against the lesbian, gay, bisexual, transgender and intersex community, and avoid abuse and harassment by police authorities", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Facilitate the active involvement of civil society stakeholders, including human rights non-governmental organizations, in the follow-up to this review, especially to address violence against women and children and child abuse ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Establish a specific mechanism to monitor Islamophobia and adopt effective measures to combat this evil phenomenon among political parties and extreme right-wing organizations ", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Consider acceding to the International Covenant on Civil and Political Rights", - "values": [ - "3 - Considering action" - ] - }, - { - "text": "Take further measures to address discrimination against non-native Finnish citizens in the area of employment, particularly by reducing the wage gap between immigrants and native Finns", - "values": [ - "4 - General action" - ] - }, - { - "text": "The Government is also committed to a national media campaign to enhance public awareness about the crime of human trafficking, deter criminals and highlight the existence of help lines and shelters for victims.", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Consider, within the context of continuing its judicial and legislative reforms, elaborating and adopting a Criminal Code that ensures equal and objective judgement of crimes", - "values": [ - "3 - Considering action" - ] - }, - { - "text": "Continue to engage fully with civil society groups in the follow-up and implementation of this review", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Continue to put in place practical measures to implement the revised framework at the national and local levels to achieve gender equality and combat discrimination against women", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Continue to improve the national system of administration of justice, including guarantees for the rights of persons being held in detention", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Banish from its Penal Code the provisions related to corporal punishment, including flogging for sexual intercourse outside of marriage, and death penalty", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Use all appropriate policies to ensure equal access for everyone to employment, regardless of racial or religious origins ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Continue to be on track to achieve the Millennium Development Goals", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Respect freedom of religion and belief, revise the text of the 2006 Ordinance, and suspend its application in the meantime. ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Urgently amend relevant legislation to expressly prohibit corporal punishment in schools and at home and implement educational measures promoting positive and non-violent forms of discipline", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Adopt specific legislation criminalizing torture", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Strengthen its efforts to address the serious and ongoing problem of domestic violence ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Endeavour to implement the remaining recommendations of the previous and present UPR review", - "values": [ - "4 - General action" - ] - }, - { - "text": "Expedite the implementation of all measures to address the situation of vulnerable groups in particular women and children.", - "values": [ - "4 - General action" - ] - }, - { - "text": "Establish an immediate official moratorium on the use of the death penalty with a view to abolishing it", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Continue progressing in the eradication of poverty, with the implementation of its sound social policies to improve the quality of life of its people, particularly of the most vulnerable", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Put an end to restrictions hindering the free exercise of the right to freedom of expression, assembly and association", - "values": [ - "4 - General action" - ] - }, - { - "text": "Adopt a policy of dialogue with all States based on respect for the principles of the Charter of the United Nations, particularly mutual respect and sovereign equality and respect for the rights of people to choose their political, economic and social system", - "values": [ - "4 - General action" - ] - }, - { - "text": "Take steps to an early ratification of the ICCPR", - "values": [ - "4 - General action" - ] - }, - { - "text": "Take further steps in order to strengthen the protection of victims of trafficking", - "values": [ - "4 - General action" - ] - }, - { - "text": "Strengthen the institutional framework for human rights by establishing a national institution in accordance with the Paris Principles", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Introduce a moratorium on the death penalty", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Pursue further policies aimed at improving women's participation in all spheres of public life, including political and professional life ", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Accelerate the elaboration of a national plan of action with a view to instilling a culture of human rights", - "values": [ - "4 - General action" - ] - }, - { - "text": "Explicitly prohibit all harmful practices against women of all ages, including female genital mutilation, child, early and forced marriage and practices inflicted on elderly women in relation to allegations of witchcraft, and take all necessary measures to enforce the prohibition", - "values": [ - "4 - General action" - ] - }, - { - "text": "Consider ratifying the core human rights treaties, including the International Convention for the Protection of All Persons from Enforced Disappearance", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Continue promoting intercultural, multilingual programmes that would contribute to enriching it as a multicultural society ", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Create an environment more conducive to stronger civil society in the country, including by guaranteeing the full legitimacy of human rights defenders, in accordance to the United Nations Declaration on Human Rights Defenders, to spare them the intimidation to which they have thus far been subjected", - "values": [ - "4 - General action" - ] - }, - { - "text": "Continue to pursue appropriate justice-system reforms with a view to strengthening its efficiency, impartiality and independence ", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Release political prisoners", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Clarify the status of the relationship between San Marino's international obligations and its domestic legislation, to ensure that those international obligations are given effect by domestic courts, and to carry out a comprehensive review of its ius commune in order to identify provisions of domestic legislation that contradict principles and provisions of the Conventions, as recommended by the Human Rights Committee, the Committee on Economic, Social and Cultural Rights and the Committee on the Rights of the Child, respectively", - "values": [ - "4 - General action" - ] - }, - { - "text": "Establish a de jure moratorium on death sentences and commute all death sentences to alternative penalties", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Revise the Armed Forces (Special Powers) Act to bring it into compliance with the obligations under the International Covenant on Civil and Political Rights, with a view to fighting impunity", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Ratify ILO Convention No. 169 on indigenous and tribal peoples", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Keep the systematic and coordinated work with the "National Commission for Drug Control and Prevention" and continue developing the "Help Line" services for the prevention of drug use and for sexual education with a gender perspective ", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Support the work of organizations devoted to promoting accessibility and the rights of persons with disabilities ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Study the possibility of ratifying the International Convention on the Protection of the Rights of All Migrant Workers and Members of Their Families", - "values": [ - "3 - Considering action" - ] - }, - { - "text": "Put in place a policy of fighting discrimination based on sexual orientation and gender identity that would guarantee the rights of LGBT persons to freedoms of expression, association and peaceful assembly", - "values": [ - "4 - General action" - ] - }, - { - "text": "Seek international cooperation in order to improve its electoral system, prior to the presidential and provincial elections due in 2014, and the election due in 2015 ", - "values": [ - "1 - Minimal action" - ] - }, - { - "text": "Foster mutual understanding between all nationalities and all racial, ethnic and religious representatives or groups through tolerance as interaction between nations and cultures is based on the existence of respect towards cultural, ethnic, religious, racial, social and other characteristics", - "values": [ - "4 - General action" - ] - }, - { - "text": "Fully implement the rights of convicts serving long-term imprisonment to communicate with their lawyers and their relatives, and to have access to health care ", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Continue further work on the protection of vulnerable groups of the population, such as women, children and youth", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Promote equality between men and women ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Develop a national plan of action to stem the rise in the practice of child marriage", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Strengthen institutional capacities to investigate and prosecute all allegations of corruption and mismanagement of funds", - "values": [ - "4 - General action" - ] - }, - { - "text": "Immediately establish a moratorium on executions with a view to definitely abolishing death penalty and to adhering to the second Optional Protocol to the International Covenant on Civil and Political Rights ", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "The new Government, once formed, ensures equal rights to all citizens, enabling political representation in a way that would reflect the multi-ethnic richness of the country", - "values": [ - "4 - General action" - ] - }, - { - "text": "Continue to adopt legislation and strengthen policies to promote the protection of, and respect for the rights of women and their role in society and in the development process, and review related legislation in order to ensure that there is no deterioration in the legal status of women ", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Step up efforts to combat trafficking in persons including by defining trafficking in persons in accordance with the Palermo Protocol and invite the Special Rapporteur on the sale of children, child prostitution and child pornography", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Design and implement an action plan to address gender based violence including domestic violence and sexual harassment", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Continue to support ethnic and religious tolerance within a diversified society ", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Pursue efforts to enhance the juvenile justice system and ensure separation of juveniles from adults in detention ", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Stop the impunity enjoyed by perpetrators of human rights violations against civil society activists, NGOs and human rights defenders and incorporate the United Nations Declaration on Human Rights Defenders in national legislation ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Take further measures to protect human health in the context of ensuring effective ways of sustainable development ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Take the necessary measures to ensure that the decree on domestic violence be effectively implemented and that the perpetrators of violence against women, including within the family, be duly prosecuted and punished", - "values": [ - "4 - General action" - ] - }, - { - "text": "Adopt a legislative framework that protects effectively activists in the civil society against all types of reprisals, in particular journalists and human rights defenders", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "End extrajudicial killings and associated impunity, including by passing draft bill No. 4471/2012, by abolishing the classification \u201cresistance to arrest followed by death\u201c and by ensuring that all deaths following police interventions are impartially investigated", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Israel is committed to promoting the right to family life and has adopted in recent years policies to ensure the right to start a family or to adopt a child is secured.", - "values": [ - "4 - General action" - ] - }, - { - "text": "Establish, at the federal level, a moratorium on executions with a view to abolishing the death penalty ", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Continue the transversal approach focused on the rights of children, in order to develop a national strategic framework for the protection of children ", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Strengthen its human rights framework by establishing a comprehensive legislative scheme for all human rights ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Ratify the different ILO conventions on the labour market", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Continue to promote the modernization of the country's judicial and administrative systems ", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Promote access to basic and secondary education and health care for all children and adolescents, without having these services depend on the possession of a valid birth certificate ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Take measures to prevent and combat discrimination based on sexual orientation and gender identity, including by decriminalizing sexual relations between consenting adults of the same sex", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Revoke provisions of the national law enabling the use of corporal punishment ", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "End impunity and ensure that perpetrators of incitement to hatred and violence are brought to justice in compliance with international law", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Continue implementing measures to comprehensively address the phenomenon of unaccompanied migrant children", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Implement the programme for AIDS orphans.", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Finalize, in collaboration with press associations and rights groups, a legal framework that ensures full freedom of expression", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Accede to the Rome Statute and to the Agreement on the Privileges and Immunities of the Court ", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Continue implementing policies and programmes aimed at combating poverty ", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Provide all necessary financial and human resources for the implementation of the National Action Plan for Children, which is in the process of preparation, in order to achieve its objectives particularly in the area of providing protection to children ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Step up its information and awareness raising actions on female genital mutilation and punish perpetrators of these acts", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Take steps to bring the criminal and criminal procedure systems in line with international standards, including through the adoption of a penal code that clearly defines the relevant offences and corresponding penalties", - "values": [ - "4 - General action" - ] - }, - { - "text": "Noting the challenge presented to Malta's resources by irregular migration, the Government of Malta nonetheless should continue enhancing efforts to ensure that human rights of migrants are protected", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Appoint independent and qualified members to the whole national preventive mechanism to enable the institution to function in accordance with the aims and objectives of the Optional Protocol to the Convention against Torture and Other Cruel, Inhuman or Degrading Treatment or Punishment", - "values": [ - "4 - General action" - ] - }, - { - "text": "Invite special procedures to visit Fiji, in particular the Special Rapporteur on the independence of judges and lawyers and the Special Rapporteur on the promotion and protection of the right to freedom of opinion and expression", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Continue to expand its programmes of social justice in promoting economic, social and cultural rights, in particular health programmes where Cuba also commits itself to continue and deepen the extent of its cooperation.", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Establish and promote culturally sensitive initiatives to provide services for minority groups such as Roma and Sami and for migrants and refugees", - "values": [ - "4 - General action" - ] - }, - { - "text": "Establish a national preventive mechanism for combating torture in line with the Optional Protocol to the Convention against Torture", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Ratify the Palermo Protocol", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Continue creating conditions for the effective realization of economic, social and cultural rights in the country", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Adopt effective measures to eradicate racial and religious profiling and report on those measures in the next national report", - "values": [ - "4 - General action" - ] - }, - { - "text": "Continue public awareness programmes against corporal punishment of children in schools", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Carry out campaigns of awareness and promotion of social change in relation to non-discrimination on the grounds of sexual orientation aimed, inter alia, to avoid homophobic aggression", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Proceed to sign and ratify the Second Protocol to the ICCPR", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Implement the Law on Meetings, Rallies and Demonstrations in a transparent and proportional manner ", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Issue standing invitations to all special procedure mandate holders", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Ratify the remaining human rights instruments, especially the Optional Protocol to the Convention against Torture and Other Cruel, Inhuman or Degrading Treatment or Punishment ", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Establish a special entity entrusted with promoting women's rights or, alternatively, to expand the functions of the Equal Opportunities Commission", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Investigates, in line with international standards, all allegations of enforced disappearance, torture and ill treatment committed by security forces, and bring perpetrators to justice and ratifies the OP-CAT ", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Enhance protection of the rights of the child, including by abolishing child labour, combating malnutrition and shielding child perpetrators during detention", - "values": [ - "4 - General action" - ] - }, - { - "text": "Set up an action plan to combat discrimination, in particular on the grounds of language", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Ratify core international human rights treaties, including the protocol to CEDAW, the optional protocols to the CRC, and CAT", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Increase access to sexual and reproductive health services for vulnerable groups, including sexual minorities, by raising the health budget to 15 per cent in line with the Abuja Declaration on Roll Back Malaria in Africa", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Continue promoting Human rights education and trainingat all educational levels", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Take all necessary measures to fully align its legislation with the Rome Statute and particularly to allow full cooperation with the International Criminal Court", - "values": [ - "4 - General action" - ] - }, - { - "text": "Take all available measures to prevent all forms of violence against children and to bring cases of abuse to justice", - "values": [ - "4 - General action" - ] - }, - { - "text": "Implement active policies and awareness campaigns in order to overcome the situation of discrimination against women", - "values": [ - "4 - General action" - ] - }, - { - "text": "Follow up efforts to strengthen the legal framework and policies designed to promote and protect child rights ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Guarantee the recognition of the rights of ethnic minorities to express their own culture and identity", - "values": [ - "4 - General action" - ] - }, - { - "text": "Continue to prioritize the enforcement of mechanisms for compliance with the core provisions on the CEDAW by ensuring a rapid change in mentalities regarding women's rights, female genital mutilation, early marriage and the perception of the role and place of women, through education", - "values": [ - "4 - General action" - ] - }, - { - "text": "Establish an effective and independent mechanism to register complaints filed against the Greek authorities and investigate the alleged violations", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Adopt measures to prevent discrimination and violence based on sexual orientation and gender identity, both by State officials and non-State actors, and allow the change of gender markers on government-issued documentation", - "values": [ - "4 - General action" - ] - }, - { - "text": "Establish a national preventative mechanism in accordance with its obligations to the OP-CAT ", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "To draw up a national action plan for the implementation of recommendations resulting from national consultations on corruption and financial crime (2009-2013)", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Increase the sentences for the crime of smuggling of persons, and provide more training for judges, police and investigators on this issue", - "values": [ - "3 - Considering action" - ] - }, - { - "text": "Guarantee the appropriate treatment of migrants in irregular situations and waiting for deportation from the country, including access to legal remedies", - "values": [ - "4 - General action" - ] - }, - { - "text": "Continue its efforts to eradicate child labour in cooperation with UNICEF and relevant international organizations", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Within the context of incorporating the values of the culture of peace in public and private education, include actions to eliminate violence in schools and to address the special needs of children affected by conflict ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Inform the general public on their rights and how to gain access to justice.", - "values": [ - "4 - General action" - ] - }, - { - "text": "Promptly ratify the Convention on the Elimination of All forms of Discrimination against Women and the Convention on the Rights of Persons with Disabilities, as well as other core human rights conventions, such as the International Covenant on Economic, Social and Cultural Rights and the Convention on the Rights of the Child", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Ensure the effective implementation of the Roma Integration Strategy 2015-2020, with particular attention to equal access to education, health, housing and employment", - "values": [ - "4 - General action" - ] - }, - { - "text": "Guarantee the free exercise of freedom of expression, particularly by investigating and prosecuting all attacks on journalists ", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Adopt concrete measures to prevent the segregation of Roma children and carry out educational campaigns to change the negative stereotypes against them and their families, within the framework of the national inclusive education policies", - "values": [ - "4 - General action" - ] - }, - { - "text": "Implement all recommendations put forward by the Special Rapporteur on the rights of indigenous people following his visit to Kenya in 2007, as well as ratify ILO Convention No. 169 ", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Take robust measure to promote general quality education and to effectively safeguard the rights of women and girls", - "values": [ - "4 - General action" - ] - }, - { - "text": "Ratify and accede to the international treaties to which it is not yet a party", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Strengthen the protection of minors by providing separate places of detention for adults and minors, by supporting the activities of social organisations to combat child forced labour and by ensuring basic education for all ", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "With regard to Recommendations 70.23 to 70.35 all of which related to the abolition of the death penalty, the delegation emphasized that public opinion in Guyana strongly favoured the retention of the death penalty. Guyana noted these recommendations and voluntarily committed to continue to consider and consult on the abolition of the death penalty and to report to the Human Rights Council in two years. With this in mind, Guyana has tabled an amendment to the Criminal Law (Offences) Act which provides for varied sentences for different categories of murder including life imprisonment and lesser sentences of imprisonment, as well as access to parole. This bill will be debated in the National Assembly in October 2010.", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Expedite the repeal and reform of discriminatory legislation, with a focus on the adoption of outstanding bills, particularly those affecting women and children ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Continue its efforts to establish effective consultation processes with indigenous communities with respect to any project that may affect the land or livelihoods of indigenous peoples", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Continue developing efforts to guarantee the full exercise of the right to freedom of information and expression, promoting the independence and pluralism of the media, and develop awareness programmes about the importance of this human right ", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Enact legislation to ensure members of the lesbian, gay bisexual, transgender and intersex (LGBTI) community citizenship rights, consistent with the equal rights enumerated in the Nepali Supreme Court's 2008 decision ", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Continue its effective policies to combat organized crime ", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Strengthen cooperation with the Office of the United Nations High Commissioner for Refugees in order to adopt legal and administrative measures to guarantee respect of the principle of non-refoulement and to ratify the 1951 Convention relating to the Status of Refugees", - "values": [ - "4 - General action" - ] - }, - { - "text": "Implement temporary special measures, including quotas, to achieve gender equality in areas where women are underrepresented or disadvantaged and for women suffering from multiple discrimination, such as Roma women ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Continue efforts to ensure effective respect for the right to property by facilitating registration of property deeds", - "values": [ - "4 - General action" - ] - }, - { - "text": "Complete the process of aligning its national legislation with the provisions of the Rome Statute ", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Use the revision of the Criminal Procedure and Criminal Codes to tackle the question of the death penalty.", - "values": [ - "4 - General action" - ] - }, - { - "text": "Enhance efforts to curb hate crimes against certain religious communities, ethnic groups and other minorities, including indigenous people", - "values": [ - "4 - General action" - ] - }, - { - "text": "Ensure the effective exercise of the right to conscientious objection and ensure that no minor (under 18) is recruited into the Armed Forces ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Put forward more efforts to protect victims of Ebola and seek solutions for the human rights concerns arising from discrimination and stigmatization of patients, victims, survivors and health workers", - "values": [ - "4 - General action" - ] - }, - { - "text": "Consider acceding to the ICRMW ", - "values": [ - "3 - Considering action" - ] - }, - { - "text": "Ratify the fundamental human rights conventions such as ICERD or the optional protocols to the International Covenant on Civil and Political Rights ", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Address the gender pay gap for work of equal value", - "values": [ - "4 - General action" - ] - }, - { - "text": "Draw up an integrated and comprehensive human rights plan of action", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Establish an independent monitoring mechanism for all places of detention, in keeping with the provisions of the Optional Protocol to the Convention against Torture, in order to effectively prevent torture", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Accelerate its efforts to finalize the national anti-corruption policy and mechanisms for monitoring its implementation.", - "values": [ - "4 - General action" - ] - }, - { - "text": "Ratify and implement the remaining core human rights treaties, in particular the International Covenant on Economic, Social and Cultural Rights, the International Covenant on Civil and Political Rights and the Convention against Torture, as previously recommended", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Take further legislative steps towards meeting consular notification and access obligations under the Vienna Convention on Consular Relations, by intensifying already significant efforts made towards this goal, as referred in paragraphs 72 and 73 of the National Report", - "values": [ - "4 - General action" - ] - }, - { - "text": "Take measures on the exercise of religious freedom and make norms and rules more flexible in order to preserve the rights of religious groups with a small number of believers and avoid their being subject to discrimination.", - "values": [ - "4 - General action" - ] - }, - { - "text": "Lesotho will continue to reduce environmental degradation.", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Stop child labour, as previously recommended", - "values": [ - "4 - General action" - ] - }, - { - "text": "Consider ratifying the ICPPED", - "values": [ - "3 - Considering action" - ] - }, - { - "text": "Study the possibility to ratify the International Convention on the Protection of the Rights of All Migrant Workers and Members of Their Families ", - "values": [ - "3 - Considering action" - ] - }, - { - "text": "Continue its efforts to effectively enforce its environmental policies and further increase the growth of forest cover in the country", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Adopt a national action plan to prevent trafficking in persons and assist the victims of this crime ", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Publish the results of the study carried out by the Government in order to detect on Polish territory any secret detention centres for foreign citizens accused of terrorist activities.", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Strengthen the training of the police, prosecutors and the judiciary in the area of gender based violence", - "values": [ - "4 - General action" - ] - }, - { - "text": "Continue providing support to the vulnerable group of people who have sought refuge on its territory", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Eradicate the practice of ritual infanticide, punish those found to perpetrate these crimes and establish a mechanism to provide effective support and guidance to the affected families", - "values": [ - "4 - General action" - ] - }, - { - "text": "Pay careful attention to the calls made by the High Commissioner to ensure adequate protection of political opponents, human rights defenders and others who face threats for their work, as well as to seek, through constructive dialogue, solutions that respect the rule of law and constitutional guarantees to all Venezuelans to exercise their fundamental rights", - "values": [ - "4 - General action" - ] - }, - { - "text": "Continue efforts to protect children against violence", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Enforce laws on human trafficking and child labour by holding perpetrators criminally accountable and providing adequate funding to investigate traffickers and protect victims", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Further strengthen the capacities of the CHRAJ by increasing its funding and resources.", - "values": [ - "4 - General action" - ] - }, - { - "text": "The Maldives is committed to eliminate the menace of human trafficking in the Maldives. The Maldives ratified its first legislations criminalizing trafficking in persons in 2013. The Government is working closely with international partners such as the International Organisation for Migration to implement policies and measures as well as in providing adequate trainings and awareness campaigns on the issue of trafficking. It is with this commitment that the Parliament accelerated in passing the Protocol to prevent, Suppress and Punish Trafficking in Persons, Especially Women and Children from Parliament in April this year. The Government is hopeful to complete the process of acceding to the Protocol in due course.", - "values": [ - "4 - General action" - ] - }, - { - "text": "Continue with the measures aimed at eradicating customs involving revenge practices and honour crimes", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Ensure high transparency and oversight by civil society over detention conditions and in the treatment of migrants and asylum seekers", - "values": [ - "4 - General action" - ] - }, - { - "text": "Strengthen regulations that set limits on extending working hours with a view to capping work-related deaths and suicides", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Continue adequate measures for addressing the special needs of women and protecting children from violence", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Take further action to ensure the full participation of persons with disabilities in the country's political and public life and their access to equal opportunities", - "values": [ - "4 - General action" - ] - }, - { - "text": "Establish an immediate moratorium on the death penalty", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Make sure that all de facto detention facilities fall under the responsibility and direct authority of the government", - "values": [ - "4 - General action" - ] - }, - { - "text": "Step up efforts to adopt a comprehensive Anti-Discrimination Bill in line with the relevant international human rights instruments", - "values": [ - "4 - General action" - ] - }, - { - "text": "Ratify the International Covenant on Civil and Political Rights and the International Covenant on Economic, Social and Cultural Rights, as well as the Rome Statute of the International Criminal Court ", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Consider establishing an independent national human rights institution ", - "values": [ - "3 - Considering action" - ] - }, - { - "text": "Ratify ILO Convention 189 of 2011 on domestic workers", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Strengthen efforts to reduce poverty in rural areas and bridge the wealth gap between rural and urban areas ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Continue the enhancement of efforts to conduct interfaith dialogue and the promotion of religious tolerance in partnership with civil society organizations", - "values": [ - "4 - General action" - ] - }, - { - "text": "Ensure accountability for all manifestations of ethnicity-based hate speech, racism and extremist rhetoric in the public sphere", - "values": [ - "4 - General action" - ] - }, - { - "text": "Step up human rights education and training for personnel involved in prosecution and law enforcement activities, including the police, armed forces personnel, judges and lawyers ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Develop the necessary legislation to criminalize all forms of human trafficking, especially for sexual exploitation, forced labour or slavery", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Consider becoming party to the Optional Protocols to the CRC ", - "values": [ - "3 - Considering action" - ] - }, - { - "text": "Give priority to submitting periodic reports with those treaties for which no report has yet been provided ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Strengthen its policies and laws against domestic violence and prepare adequate statistics, including sex, age and family relationship of victims and perpetrators", - "values": [ - "4 - General action" - ] - }, - { - "text": "Allow individuals to peacefully exercise their right to freedom of expression ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Take all necessary measures to ratify and implement the Convention on the Rights of Persons with Disabilities", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Continue to bring about the major legislative amendments relating to human rights and the rule of law, in conformity with international principles and standards", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Consider signing and ratifying the Optional Protocol to the CRC on a communications procedure", - "values": [ - "3 - Considering action" - ] - }, - { - "text": "Give more emphasis to the education sector to gradually transform to a quality and advanced education system since education is a vital tool for national development \n\n", - "values": [ - "4 - General action" - ] - }, - { - "text": "Take action to combat violence based on sexual orientation and gender identity and repeal all provisions criminalizing sexual activity between consenting adults ensure non-discrimination in access to adequate housing and remedies for forced evictions on the basis of sexual orientation", - "values": [ - "4 - General action" - ] - }, - { - "text": "Ensure the full independence of the judiciary, including the establishment of objective criteria for selecting and dismissing judges and guarantee the respect of a fair trial for everyone", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Completely eliminate the practice of child labour and ensure that all children have access to free and compulsory education", - "values": [ - "4 - General action" - ] - }, - { - "text": "Raise the minimum age of criminal responsibility and prohibit sentences of corporal punishment and life imprisonment for children under the age of 18 ", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Ratify the Framework Convention on Tobacco Control of the World Health Organization", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Continue efforts to strengthen the legal framework for the promotion of human rights", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Improve both formal and informal dialogue and public consultation between the Government and civil society, including on proposed legislation with an impact on human rights", - "values": [ - "4 - General action" - ] - }, - { - "text": "Take effective measures to improve access to health care, particularly in remote and rural areas", - "values": [ - "4 - General action" - ] - }, - { - "text": "Adopt domestic legislation on refugees in conformity with international standards in this field", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Rescind undue restrictions on the media and access to information, including on the internet, and tolerate all forms of legitimate speech, including criticism of the government and its policies", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Undertake further measures to ensure freedom of the press based on decriminalization of press offences and respect for the rights of the press", - "values": [ - "4 - General action" - ] - }, - { - "text": "Provide internally displaced persons with assistance and protect their rights", - "values": [ - "4 - General action" - ] - }, - { - "text": "Take all necessary steps towards the full implementation of the national system of integral protection of children and adolescents, including through appropriate funding, as provided for in the national policy for the promotion of the integral protection of children and adolescents", - "values": [ - "4 - General action" - ] - }, - { - "text": "As appears in its second national report, urge the Federate States of Micronesia to continue studying the possibility of applying for membership ofthe International Labour Organization [ILO], with a view to ratifying its fundamental conventions", - "values": [ - "3 - Considering action" - ] - }, - { - "text": "Seek and avail itself of international cooperation to fully implement national action plans and strategies", - "values": [ - "1 - Minimal action" - ] - }, - { - "text": "Bring its national human rights institutions, especially the National Human Rights Council, fully in line with the Paris Principles", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Introduce a moratorium on the death penalty with a view to its abolition", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Continue to promote and protect migrants and their rights, in particular while countering terrorism", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Enact pending legislation that would provide women legal access to fulsome reproductive health services, including comprehensive sexuality education, family planning, prevention and response to sexual and gender-based violence, safe and legal abortion, and post-abortion care", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Integrate the CAT in the domestic legislation ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Establish an independent and impartial judiciary system", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Ratify the Optional Protocol to the Convention on the Elimination of All Forms of Discrimination against Women, and adopt measures to eliminate discriminatory practices", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Revise and strengthen the mechanisms of social integration and reparation for demobilized child soldiers, in the framework of the Victims' Law ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Consider adopting a comprehensive strategy to combat all forms of violence against women and enact legislation on domestic and all forms of gender-based violence.", - "values": [ - "3 - Considering action" - ] - }, - { - "text": "Take further effective measures to ensure ethnic and religious harmony in the country", - "values": [ - "4 - General action" - ] - }, - { - "text": "Enhance both federal and regional measures to promote equal pay for equal work and to facilitate women's return to their career paths after childbirth ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Continue forward with the humanitarian efforts undertaken by the Omani Charitable Organization", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Continue to implement the necessary measures to ensure indigenous children access to quality education", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Evaluate the possibility of adopting all necessary measures to guarantee the right to justice, truth and reparation for victims and their family members in cases of serious human rights violations ", - "values": [ - "3 - Considering action" - ] - }, - { - "text": "Give priority to the implementation of outstanding necessary improvements of prisons conditions.", - "values": [ - "4 - General action" - ] - }, - { - "text": "Promote gender equality and further combat violence against women", - "values": [ - "4 - General action" - ] - }, - { - "text": "Clarify the procedures for the establishment and recognition of associations and non-governmental organizations, and to guarantee their participation in the reform process", - "values": [ - "4 - General action" - ] - }, - { - "text": "Accelerate fulfilment of its voluntary commitments as a member of the Council, especially by increasing resources to ensure social security and welfare of its citizens as well as the rights of vulnerable groups", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Establish and implement a clear procedure for free, prior and informed consultation that would ensure full participation of indigenous peoples in the decision-making process regarding any major project impacting on their way of life", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Finalize the development of the third National Anti-Corruption Strategic Action Plan and strengthen the scope of action of the Prevention and Combating of Corruption Bureau", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Ensure universal access to safe drinking water and sanitation ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Ratify the core international human rights conventions to which it is not a party and the Rome Statute ", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Take steps to abolish the death penalty", - "values": [ - "4 - General action" - ] - }, - { - "text": "Ensure equal access to education for children with disabilities, by improving public perception on their rights", - "values": [ - "4 - General action" - ] - }, - { - "text": "Maintain and strengthen the institutional independence of the Ombudsman and the National Human Rights Commission", - "values": [ - "4 - General action" - ] - }, - { - "text": "Enact a law to fight against discrimination which guarantees the equality of all citizens, regardless of their sexual orientation and gender identity ", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Intensify its efforts to humanize its penal system, with special focus placed on the separation of female and juvenile inmates ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Address remaining legislative and implementation gaps, including to fully protect and support victims", - "values": [ - "4 - General action" - ] - }, - { - "text": "Consider the adoption of a legal moratorium on the use of death penalty with a view to abolishing capital punishment in national legislation.", - "values": [ - "3 - Considering action" - ] - }, - { - "text": "Continue to carry out mine-awareness campaigns and undertake, as a priority, demining programmes to demine the approximately 30,000 minefields throughout the country, as well as lend psychological and social assistance to the children affected, as recommended by the Committee on the Rights of the Child", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Continue the efforts being undertaken to make education more accessible and especially to implement the much-lauded free education programme", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Harmonize federal and state laws with international human rights instruments ", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Consider removal of the death penalty from its statute books", - "values": [ - "3 - Considering action" - ] - }, - { - "text": "Improve detention conditions of detainees, in particular minors", - "values": [ - "4 - General action" - ] - }, - { - "text": "Ratify the Second Optional Protocol to ICCPR", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Become party to the Optional Protocol of the Convention on the Rights of Persons with Disabilities", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Consider abolishing death penalty ", - "values": [ - "3 - Considering action" - ] - }, - { - "text": "Sign and ratify the Convention against Torture and the International Convention for the Protection of All Persons from Enforced Disappearance", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Devote more efforts to reduce social exclusion and better integrate its growing immigrant population into all aspects of society ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Establish a formal moratorium on the death penalty with a view to ratifying the Second Optional Protocol to ICCPR", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Strengthen measures to reform its legal framework to protect human rights in consideration of political, legal and social perception", - "values": [ - "4 - General action" - ] - }, - { - "text": "Enhance its efforts to strengthen women's participation in politics and public service", - "values": [ - "4 - General action" - ] - }, - { - "text": "Comply with the judgements of the European Court of Human Rights concerning the rights of the Greek citizens to inherit immovable property in Turkey", - "values": [ - "4 - General action" - ] - }, - { - "text": "Accede to the UNESCO Convention against Discrimination in Education", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Continue its efforts to protect persons with disabilities including awareness-raising campaigns about the rights of people with disabilities", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Take the necessary measures to guarantee women the right to transfer their nationality to their children born in the territory, regardless of the status or nationality of the father", - "values": [ - "4 - General action" - ] - }, - { - "text": "Prevent the re-victimization in cases of violence in intimate partnership and bring perpetrators to justice ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Set up plans promoting inclusive education of ethnic minorities, which have high levels of school dropout", - "values": [ - "4 - General action" - ] - }, - { - "text": "Review the reservation to article 26 of the Refugee Convention to authorize the free movement and residence of persons with recognized refugee status and to also extend this to asylum seekers ", - "values": [ - "3 - Considering action" - ] - }, - { - "text": "Recommended the continuation of the moratorium on death penalty. ", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Introduce in the Penal Code a definition of torture that incorporates all the elements provided for in CAT", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Effect the National Policy on refugee and Asylum Seekers matters the Cabinet approved in 2014", - "values": [ - "4 - General action" - ] - }, - { - "text": "Fully explore the possibility of putting in place a new National Plan of Action against Racism", - "values": [ - "3 - Considering action" - ] - }, - { - "text": "Seek the assistance of the international community, the United Nations and its specialized agencies to provide the country with the needed support in confronting challenges towards ensuring the promotion and protection of human rights and the attainment of its Millennium Development Goals ", - "values": [ - "1 - Minimal action" - ] - }, - { - "text": "Remain committed to the protection and promotion of human rights and stay constructively engaged with the international community in this regard. ", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Accelerate the process of drafting of the constitution, as it plays an extremely important role for the stability of Libya", - "values": [ - "4 - General action" - ] - }, - { - "text": "Ratify the Optional Protocol to the International Covenant on Economic, Social and Cultural Rights in order to increase the possibilities for complaints and investigation by the Committee on Economic, Social and Cultural Rights, and thereby bringing such protection system at the same level of the existing one with regard to civil and political rights ", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Improve support to victims of sexual violence and facilitate their access to justice, notably by simplifying the administration of justice and their access to medical and psychosocial care", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Strengthen efforts focusing on facilitating and ensuring access of humanitarian aid, particularly in the areas of armed conflict, and on protecting the civilian infrastructure, including hospitals and schools, including by maintaining and strengthening cooperation with ICRC", - "values": [ - "4 - General action" - ] - }, - { - "text": "Establish a national preventive mechanism that will constitutionally guarantee the rights of all people, particularly the rights of minorities ", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Continue efforts to combat impunity for serious violations of human rights committed during the events of 2011 and 2013", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Provide constitutional and legal protection for children against all forms of violence at home and at school", - "values": [ - "4 - General action" - ] - }, - { - "text": "Repeal the provisions in the revision of the Penal Code which criminalize defamation of political or religious entities and align its legislation on freedom of expression with international standards in this field", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Adopt the necessary political and legislative measures to establish a specific framework to protect against discrimination on the grounds of sexual orientation and repeal all laws which criminalize homosexual practice, and implement public awareness-raising campaign on this matter", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Consider further cooperation with the international human rights monitoring mechanisms, including the treaty bodies and special procedures of the Human Rights Council ", - "values": [ - "3 - Considering action" - ] - }, - { - "text": "Ratify as soon as possible the International Convention for the Protection of All Persons from Enforced Disappearance", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Ensure prompt investigations into attacks and threats against human rights defenders, indigenous people, and journalists as well as to ensure that they can carry out their activities without fear of reprisals", - "values": [ - "4 - General action" - ] - }, - { - "text": "Continue the efforts in order to mainstream the issue of human rights protection in its national development plan ", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Work more actively to accede to the core international human rights instruments", - "values": [ - "4 - General action" - ] - }, - { - "text": "Improve the family law in order to develop the rights of women", - "values": [ - "4 - General action" - ] - }, - { - "text": "Finalize the process for the ratification of CEDAW and take all the necessary steps to implement the provisions of the Convention ", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Enact legislation to ensure that all persons may freely exercise their religion in public and build places of worship ", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Adopt laws to deal with the situation of persons not enjoying the highest level of physical and mental health with regards to the 2001 Act on Mental Health and bring its provisions in line with the CRPD", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "That the first National Action Plan for Fundamental and Human Rights integrate the concerns of all minorities ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Sign and-or ratify the following international human rights instruments: the Optional Protocol to the International Covenant on Economic, Social and Cultural Rights, ICCPR-OP 2, the Optional Protocol to the Convention on the Elimination of all Forms of Discrimination against Women, OP-CAT, ICRMW, CED and CRPD and its Optional. ", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Actively promote and ensure marginalized and vulnerable groups are both effectively and meaningfully involved in the national reconciliation process ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Ensure the implementation of its obligations under international humanitarian law", - "values": [ - "4 - General action" - ] - }, - { - "text": "Allocate necessary resources to the education and health sectors in order to achieve the Millennium Development Goals, reaching at a minimum the regional average level of investment in these sectors, while ensuring data collection that allows progress to be measured ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Consider allocating sufficient financial resources to effectively implement the Law against Femicide, in accordance with recommendations of CEDAW", - "values": [ - "3 - Considering action" - ] - }, - { - "text": "Complete the enactment of the draft child protection act", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Take steps to ensure that the human rights of all citizens are protected, regardless of their religion, sexual orientation or gender identity", - "values": [ - "4 - General action" - ] - }, - { - "text": "Ratify the Optional Protocol to the Rights of the Child on a communications procedure", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Take steps to strengthen the criminal justice system and, in addition, co-operate fully with MINURCAT's efforts in this area.", - "values": [ - "4 - General action" - ] - }, - { - "text": "Implement action plan to protect children in areas of armed conflict adopted in March 2016", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Take the necessary steps to ensure the speedy creation of a Commission for Truth, a Judicial Mechanism and an Office for Reparations pursuant to the Human Rights Council resolution 30/1", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Ensure a safe and enabling environment for journalists and human rights defenders, including through the implementation of the precautionary measures or interim measures of protection of the InterAmerican Commission on Human Rights where these have been granted", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Recommended further efforts aimed at combating extreme poverty", - "values": [ - "4 - General action" - ] - }, - { - "text": "Promotion of Democracy, Good Governance and Rule of Law", - "values": [ - "4 - General action" - ] - }, - { - "text": "Pursue its efforts within the Human Rights Council on the issue of climate change and human rights", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Take effective measures to combat police brutality ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Ensure that companies exploiting natural resources conclude agreements with affected communities to allow them to access cultural sites or resources and be compensated", - "values": [ - "4 - General action" - ] - }, - { - "text": "Do more to promote the value of citizenship among all groups, thereby encouraging naturalization of the remaining non-citizens ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Adopt a zero-tolerance approach to the continuing problem of torture, and to the practice of impunity, as recommended by the Committee Against Torture and the Special Rapporteur", - "values": [ - "4 - General action" - ] - }, - { - "text": "Ratify other core international human rights treaties, particularly the International Covenant on Civil and Political Rights, the International Covenant on Economic, Social and Cultural Rights, the International Convention on the Elimination of All Forms of Racial Discrimination, the Convention against Torture, and the Optional Protocol to the Convention on the Elimination of All Forms of Discrimination against Women", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Facilitate the filing of complaints by victims of sexual violence by assigning women (officers) to police stations and subsidize medical certificates attesting to such violence", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Work towards ensuring full respect for the human rights of indigenous people, and continue the ongoing consultations and with a serious pace with the indigenous peoples, regarding the implementation of legislation entitled "Towards a better future"", - "values": [ - "4 - General action" - ] - }, - { - "text": "Consider taking substantial measures, such as requesting capacity-building assistance, to advance the understanding of human rights and criminal investigation ability of police personnel", - "values": [ - "3 - Considering action" - ] - }, - { - "text": "Accede to or ratify the Optional Protocols to the International Covenant on Civil and Political Rights (ICCPR-OP 1 and ICCPR-OP 2)", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Accelerate the ratification of the United Nations Convention against Corruption, by speeding up the necessary reforms of the Criminal Code to make it compatible with this Convention ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Consider appropriate education system reforms to ensure its more inclusive social accessibility ", - "values": [ - "3 - Considering action" - ] - }, - { - "text": "Lift its general and its specific reservations to CEDAW", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Intensify the efforts aimed at fighting all forms of discrimination, especially by strengthening the national legislative framework", - "values": [ - "4 - General action" - ] - }, - { - "text": "Ensure that children are heard in the judicial and administrative procedures concerning them, in accordance with procedures adapted to their maturity and, when children must be placed, this be done in family-type structures rather than in institutions ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Continue to take into account, in the implementation of Vision 2050 and other development plans, the improvement, conservation and protection of the environment", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Ensure free access to information for the population of Guatemala through the effective protection of journalists and media as they are occasionally threatened by drug traffickers and organized crime", - "values": [ - "4 - General action" - ] - }, - { - "text": "Continue strengthening its efforts to facilitate the participation of women in political and public affairs", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Collaborate with the treaty bodies by submitting regularly reports on human rights situation ", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Reinforce the public institutions responsible for the investigations of crimes and the execution of criminal justice, especially in the area of organized criminal activities involving drug and human trafficking, so as to create a more stable and peaceful social environment", - "values": [ - "4 - General action" - ] - }, - { - "text": "Continue the reforms aimed at limiting the use of preventive detention and implement a uniform penal system", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Consider prohibition of the use of corporal punishment of children in all settings", - "values": [ - "3 - Considering action" - ] - }, - { - "text": "Abstain from reintroducing of the death penalty", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "The adoption of policies that safeguard the rights of LGBT people and fight discrimination based on sexual orientation ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Prevent racial, discriminatory and xenophobic crimes and provide effective remedies to the victims", - "values": [ - "4 - General action" - ] - }, - { - "text": "Continue to take measures for improving quality of education, and reducing inequality of education caused by income level and social status", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Effectively enforce the national law criminalising those who organize begging and trafficking of children and establish a high level focal point responsible to coordinate child protection efforts", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Strengthen and promote freedom of expression, particularly that of the press", - "values": [ - "4 - General action" - ] - }, - { - "text": "Ratify the Optional Protocol to the International Covenant on Economic, Social and Cultural Rights and accept its investigation and communication procedure", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Seek the support of the international community to accompany the implementation of its commitments vis-à-vis all components of society", - "values": [ - "1 - Minimal action" - ] - }, - { - "text": "Continue and intensify its efforts to promote human rights in all areas ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Amend article 41(2) of the Constitution on the role and status of women by moving to a more gender-neutral wording of the article ", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Fully and immediately implement all Council resolutions.", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Implement the government's National Roma Strategy with appropriate funding to improve education, housing and employment opportunities for Roma citizens ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Adopt legislation against torture, accede to the OP-CAT", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Refrain from arbitrary arrests and make every effort to bring detainees before a judge within the statutory deadline of 48 hours ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Promote the empowerment of women and girls and prevent the promotion of discrimination against women including through speech and sermons", - "values": [ - "4 - General action" - ] - }, - { - "text": "Stop targeting political dissidents and legitimate criticism in Sindh, Baluchistan and Khyber Pakhtunkhwa", - "values": [ - "4 - General action" - ] - }, - { - "text": "Continue to provide adequate training, particularly in human rights, to the national police and defence force ", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Accept the request for a country visit made in 2011 by the Special Rapporteur on the rights to freedom of peaceful assembly and of association ", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Take effective measures to reverse the increasing trend of HIV/AIDS incidence by strengthening the National Strategic Plan (NSP) on HIV/AIDS Prevention", - "values": [ - "4 - General action" - ] - }, - { - "text": "Sign and ratify the Optional Protocol to the International Convention on the Rights of Persons with Disabilities", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Ratify the Optional Protocol to the Convention against Torture and other Cruel, Inhuman or Degrading Treatment ", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "The delegation stated that Barbados had a reputation for the recognition of human rights and its support for the human rights system. It reaffirmed its commitment to furthering human rights. ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Promote the active participation of indigenous people in the decision-making process on issues concerning them, especially regarding land and territories", - "values": [ - "4 - General action" - ] - }, - { - "text": "Initiate investigations into all allegations of torture or other forms of ill-treatment and bring to justice, prosecute and punish all alleged perpetrators of torture or other forms of ill-treatment", - "values": [ - "4 - General action" - ] - }, - { - "text": "Reopen investigations on secret CIA prisons and study all elements regarding Lithuanian sites", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Continue with its project on providing health services", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Provide additional resources to the office of the Equality and Anti- Discrimination Ombudsperson in order to combat discrimination and hate crime against migrant Roma ", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Fully ensure linguistic, religious and other rights of minorities, in compliance with international obligations", - "values": [ - "4 - General action" - ] - }, - { - "text": "Better ensure respect for the human rights of lesbian, gay, bisexual, transgender and intersex persons, who are sometimes victims of discrimination or even of hate crimes", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Take all the necessary legal and policy measures to prevent children and adolescents, from being subjected to labour exploitation and the worst forms of child labour, such as servitude, slavery, prostitution and trafficking", - "values": [ - "4 - General action" - ] - }, - { - "text": "Take necessary steps to ratify or accede to other major international human rights instruments which are still outstanding", - "values": [ - "4 - General action" - ] - }, - { - "text": "Undertake immediate measures to deal with the problem of discrimination, facilitate access of women to education and health and fully ensure the protection of women", - "values": [ - "4 - General action" - ] - }, - { - "text": "Develop, in close cooperation with civil society, a concept to increase the knowledge and awareness in society, and in particular within State institutions, about human rights obligations of the State and rights of the people ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Strengthen human rights training for NGOs and help them to carry out their work professionally and objectively", - "values": [ - "4 - General action" - ] - }, - { - "text": "Continue improving the human rights for women", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Ensure the independence and impartiality of the judicial system, in particular through efforts to guarantee that the Judicial Council operates without interference from the Executive Branch of government", - "values": [ - "4 - General action" - ] - }, - { - "text": "Take further efforts to protect the special cultures of the indigenous people and enhance protection to the cultural archaeology", - "values": [ - "4 - General action" - ] - }, - { - "text": "Ensure that human rights defenders are able to exercise their rights to freedom of expression, assembly and association", - "values": [ - "4 - General action" - ] - }, - { - "text": "Take necessary measures to enable the judicial system to effectively combat impunity and to assess the establishment of an international commission against impunity", - "values": [ - "4 - General action" - ] - }, - { - "text": "Consider developing a national action plan for children as recommended by CRC ", - "values": [ - "3 - Considering action" - ] - }, - { - "text": "Lobby for and implement comprehensive anti-discrimination legislation to provide protection for the rights of LGBT persons", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Effectively investigate and prosecute crimes and violations against human rights defenders and punish those responsible ", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Increase the participation of its citizens in governance in line with the pledge in the previous round of the universal periodic review and support the National Human Rights Commission", - "values": [ - "4 - General action" - ] - }, - { - "text": "Consider ratifying the Optional Protocol to the Convention on the Rights of the Child on a communications procedure (OP-CRC-IC)", - "values": [ - "3 - Considering action" - ] - }, - { - "text": "Continue reforms aimed at the effective implementation of policies protecting and promoting human rights, through the full realization of the National Human Rights Action Plan, and by working closely with, inter alia, United Nations special procedures and mechanisms", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Ensure access for all detainees to legal counsel and judicial oversight as well as the effective investigation and prosecution of alleged cases of torture by security forces. ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Implement existing laws and undertake concerted efforts to combat violent extremism and acts of terrorism", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Provide female prisoners with long-term visits, especially taking into account the best interest of their children", - "values": [ - "4 - General action" - ] - }, - { - "text": "Take appropriate measures to ensure that all children enjoy all human rights, without discrimination ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Adopt legislation criminalizing female genital mutilation", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Withdraw its reservations and declaration to CAT", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Continue its efforts to protect the rights of people living with a disability, and consider ways to increase job opportunities, for rural, women, and elderly people living with a disability", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Continue implementing the recommendations arising from the national consultation on quality education", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Continue to consult stakeholders in the follow-up to the Universal Periodic Review outcome.", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Consider reviewing the legislation on the minimum age for criminal responsibility.", - "values": [ - "3 - Considering action" - ] - }, - { - "text": "Give continuity to the strengthening of national human rights institutions and mechanisms to further promote and protect human rights in the country", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Albania has been also committed to strengthen the United Nations human rights system, including boosting the capacity of the Human Rights Council to respond effectively to gross human rights violations, strengthening cooperation with the United Nations human rights mechanisms, working towards further advancement of international human rights norms and standards, strengthening efforts to promote gender equality, empower women and to promote the rights of the most vulnerable groups and strengthening the protection and promotion of the rights of older persons.", - "values": [ - "4 - General action" - ] - }, - { - "text": "Ratify the Convention against Torture without reservations", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Guarantee the right of everyone to equality before the law, equal protection of the law, and non-discrimination, in conformity with the international commitments undertaken by Belize", - "values": [ - "4 - General action" - ] - }, - { - "text": "Undertake more effective measures to address the problems of impunity and violence against women and girls, including through the strengthening of law enforcement and the judicial system and intensive media and education programmes aimed at increasing public awareness and sensitivities on the rights of women", - "values": [ - "4 - General action" - ] - }, - { - "text": "Ensure that all people, including migrants, are allowed to practice their religion or belief freely, including by enacting legislation that explicitly protects the right to freedom of religion or belief ", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Accede to the Second Optional Protocol to the International Covenant on Civil and Political Rights, which abolishes capital punishment under any circumstances ", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Continue to support indigenous institutions that bring cohesion to communities, such as the National Congress of the First Peoples of Australia", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Continue strengthening efforts to combat racism, xenophobia and religious intolerance in law and practice", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Adjust its national legislation to be compatible with the Comprehensive Peace Agreement and the Interim National Constitution adopted in 2005, especially the following laws and codes: National Security Act (2010), Press and Printing Act (2009), Volunteer and Humanitarian Work Act (2006), Criminal Code, Criminal Procedure Code ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Develop a plan of action to prevent the recruitment of child soldiers and to help with demobilization", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Prohibit corporal punishment of children in all settings, including the home and schools, and ensure that the United States encourages non-violent forms of discipline as alternatives to corporal punishment", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Consider signing and ratifying the new Optional Protocol to the CRC on a communications procedure to further ensure the protection of children's rights ", - "values": [ - "3 - Considering action" - ] - }, - { - "text": "Adopt comprehensive anti-discrimination strategies ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Continue the practice of implementing the National Action Programme aimed at improving the human rights situation on the ground ", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Not to maintain the death penalty in its legislation since the last execution dates from 1983", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Take concrete steps to ensure freedom of expression, including for the media, and to ensure that all alleged attacks against journalists and human rights defenders are promptly and independently investigated", - "values": [ - "4 - General action" - ] - }, - { - "text": "Integrate human rights in the school curricula", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Set up independent mechanisms to fight against impunity towards perpetrators of human rights violations committed, including those committed before 2009, ratify the Rome Statute of the International Criminal Court ", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Reconsider the inclusion of apostasy, witchcraft and heresy as capital offences in its updated penal code", - "values": [ - "3 - Considering action" - ] - }, - { - "text": "Limit the use and duration of administrative detention", - "values": [ - "4 - General action" - ] - }, - { - "text": "Ensure respect for and protection of human rights for all detainees including by guaranteeing detention conditions in compliance with domestic as well as international law and standards and by protecting against cruel and inhuman treatment", - "values": [ - "4 - General action" - ] - }, - { - "text": "Step up efforts to protect trade unionists.", - "values": [ - "4 - General action" - ] - }, - { - "text": "Pursue efforts to counter discrimination in whatever form, in particular towards the most vulnerable sectors of the population in the follow-up to the Durban Conference and the recommendations of the Committee on the Elimination of Racial Discrimination.", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Continue strengthening its successful social programmes in the fight against poverty", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Ensure the amendment of the law on domestic violence and its prevention", - "values": [ - "4 - General action" - ] - }, - { - "text": "Continue with efforts for mainstreaming of gender equality into laws and policies and assign sufficient resources for the implementation of the Law on comprehensive protection measures against gender-based violence", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Enforce more effectively the implementation of law 99-05, which prohibits Female Genital Mutilation (FGM) and undertake an awareness-raising campaign ", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Enhance protection of rights of women and children, in particular those in the most vulnerable situations ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Remove restrictions on the ability of journalists to report and criticize government policy freely and without of fear of repression, intimidation, imprisonment or threat.", - "values": [ - "4 - General action" - ] - }, - { - "text": "Devise a practical national strategy to spread a human rights culture so as to guarantee the protection of these rights in the long term ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Pass a comprehensive anti-trafficking law applicable in the Federated States of Micronesia, and promptly ratify the Protocol to Prevent, Suppress and Punish Trafficking in Persons, Especially Women and Children, supplementing the Convention against Transnational Organized Crime", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Further expedite the investigation and trial of the cases of gross human rights violation cases committed during the past military dictatorship to ensure adequate compensation and reparations for the victims and their families.", - "values": [ - "4 - General action" - ] - }, - { - "text": "Give priority to the implementation of awareness-raising measures aimed at achieving gender equality in marriage and family relations.", - "values": [ - "4 - General action" - ] - }, - { - "text": "Submit the long outstanding reports to the Human Rights Committee and to the Committee on the Elimination of Racial Discrimination", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Continue the work of the Ministry of Education and civil society to reinforce the campaign on zero tolerance for violence against children at in the environment of communities, families and in schools", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Continue with the ratification of the main international instruments relating to human rights, primarily, the Rome Statute of the International Criminal Court ", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Strengthen human rights education ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Cease immediately the use of the death penalty, especially for minors and those who committed offences while they were juveniles", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Assist and encourage the Federal state's authorities to implement the General Law for Women's Access to a Life Free of Violence as a matter of urgency, and where it has been incorporated in states' legislation, ensure that appropriate regulations are elaborated to ensure its effective implementation", - "values": [ - "4 - General action" - ] - }, - { - "text": "Intensify its efforts to fight against discrimination and intolerance, particularly against Muslims, immigrants and people of African descent, and encourage senior Government officials and politicians to take a clear position against racist or xenophobic political discourse ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Provide training to medical doctors and cooperate with international organizations, especially the World Health Organization, and members of the international community on obtaining vaccinations to combat HIV-AIDS and to prevent its spread ", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Subscribe to article 14 of CERD in order to recognize the Committee's competence to receive and consider communications from individuals or groups of individuals alleging to be victims of violations of any of the rights established in the Convention", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Continue to enhance the capacity building of its national human rights institutions with the support of the international community, including OHCHR, and seek the effective contribution of OHCHR to strengthen the NHRC.", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Accelerate the issuance of the Transitional Justice Act and the National Reconciliation Act ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Take measures to promote tolerance in this regard, which would encourage more effective educational programmes for the prevention of HIV-AIDS.", - "values": [ - "4 - General action" - ] - }, - { - "text": "Raise the minimum age of criminal responsibility in compliance with international standards ", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Adopt and implement legislation which prohibits law enforcement officials from engaging in ethnic profiling", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Continue to address the problems faced by the girl child and the suggestions by the CRC that local, religious and other leaders should take a more active role in supporting the efforts to prevent and eliminate discrimination against the girl child", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Provide law enforcement officials with human rights training and intensify the fight against impunity for acts of torture", - "values": [ - "4 - General action" - ] - }, - { - "text": "Explicitly recognise the right to peaceful assembly by redrafting the Law on Meetings and Demonstrations to remove provisions that criminalise peaceful participation in demonstrations", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Bring the existing criminal provisions that could be seen as inconsistent with the Israeli Basic Law on Human Dignity and Liberty and basic human rights law provisions guaranteeing freedom of speech into conformity with modern human rights law standards", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Abolish de jure the death penalty ", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "In order to ensure freedom of expression, fully implement provisions of the Constitution of Belarus on freedom of expression, protect all journalists from harassment, and create an enabling environment for the operation of free media through, inter alia, the simplification of registration and accreditation procedures", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Raise the age of criminal responsibility so that it complies with international standards as set out by the Convention on the Rights of the Child", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Revise the status of the Icelandic Human Rights Centre with the goal of ensuring full compliance with the Paris Principles", - "values": [ - "3 - Considering action" - ] - }, - { - "text": "Promote the repeal of all legal and administrative provisions remaining, which discriminate against women and girls", - "values": [ - "4 - General action" - ] - }, - { - "text": "Step up its efforts to provide free primary education to ensure the right to education of all children", - "values": [ - "4 - General action" - ] - }, - { - "text": "Continue its financial commitment to international development through its overseas development assistance programmes ", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Further strengthen its national legislation to combat human trafficking", - "values": [ - "4 - General action" - ] - }, - { - "text": "Further pursue its efforts to promote sustainable economic and social development and further strengthen social security so that its people can enjoy all human rights", - "values": [ - "4 - General action" - ] - }, - { - "text": "Continue to prioritize the promotion and the protection of the rights of women", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Intensify its efforts in relation to children\u2019s rights, including, in particular, in the Caribbean countries forming part of the State, including to prohibit corporal punishment in all settings, to develop and implement public awareness programmes, to reduce the rate of children dropping out of school, to intensify efforts to eradicate child labour, to raise the minimum age of recruitment in the military to 18 years and to ratify the Optional Protocol to the Convention on the Rights of the Child on a communications procedure without reservations", - "values": [ - "4 - General action" - ] - }, - { - "text": "Designate a national preventive mechanism, to safeguard the rights of detainees and to prevent any acts of torture ", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Continue to formulate, implement and enhance public policies aimed at raising awareness of discrimination-related issues in society and ensure effective remedies to victims of discrimination and statelessness", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Issue legislation regarding the status of refugees in order to deal with the refugee situation in the country ", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Adhere to all Protocols to the International Covenant on Civil and Political Rights and to the International Covenant on Economic, Social and Cultural Rights ", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Intensify its efforts to counter gender discrimination ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Implement standard procedures to identify victims and provide them with protection, conduct national anti-trafficking public awareness campaigns, and incorporate anti-human trafficking training into its police training curriculum ", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Continue its efforts to improve the quality of the education system and to expand access to education for all children and adolescents, in particular for those belonging to indigenous peoples", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Bring both the Press law and Penal Code in line with article 19 of ICCPR ", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Encourage the active participation of the Roma population in the decision-making regarding measures that affect them", - "values": [ - "4 - General action" - ] - }, - { - "text": "Ratify the Convention on the Prevention and Punishment of the Crime of Genocide ", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Continue to strengthenits efforts to combat trafficking and abuses of labour rights, particularly against vulnerable migrants ", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Adopt a specific law to prevent and combat the sexual exploitation of children ", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Strengthen the promotion of political participation of women and youth", - "values": [ - "4 - General action" - ] - }, - { - "text": "Ensure the enjoyment of economic, social and cultural rights, with the purpose of attaining the MDGs ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Give more attention to improving the status of women and children", - "values": [ - "4 - General action" - ] - }, - { - "text": "Put in place specific legislation to address violence against women, which to date remains generally covered under the Criminal Code", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Take concrete steps to provide for the protection and equal treatment of lesbian, gay, bisexual and transgender persons ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Step up its efforts to bring its ODA up to the international commitment of 0.7% of GDP", - "values": [ - "4 - General action" - ] - }, - { - "text": "Canada is committed to combatting all forms of violence against women and girls. ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Release all detained human rights defenders and political prisoners", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Expedite the process of redrafting of the existing Child Law taking into account the views and suggestions made by civil society organizations", - "values": [ - "4 - General action" - ] - }, - { - "text": "Ensure implementation in practice of laws and regulations to which juvenile offenders are subject, including the prompt access of juveniles to legal counsels, their separate detention and the enrolment of juveniles in appropriate school and training programmes while in custody", - "values": [ - "4 - General action" - ] - }, - { - "text": "Review and strengthen current policies and initiatives to combat societal discrimination against members of racial, religious and ethnic minority groups", - "values": [ - "4 - General action" - ] - }, - { - "text": "Continue to work closely with regional bodies, the United Nations and donor partners to seek sustainable solutions to the refugee and humanitarian crisis in order to uphold human rights and protect civilians", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Continue to apply its socio-economic development plans and strategies", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Analyse the possibility of ratifying the Convention on the Protection of the Rights of All Migrant Workers and Members of Their Families", - "values": [ - "3 - Considering action" - ] - }, - { - "text": "Develop a comprehensive legal framework that guarantees freedom of expression and a free media ", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Adopt the same-sex partnership act in order to further improve the rights of LGBTI persons", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Establish a national human rights institution that fully abides by the Paris Principles ", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Ratify, in the shortest time, the International Convention for the Protection of All Persons from Enforced Disappearance as well as the Convention against Torture and Other Cruel, Inhuman or Degrading Treatment or Punishment and adopt related internal legislation ", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Establish a national human rights institution in accordance with the Paris Principles", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Withdraw any reference in identity documents which would allow for the identification of children born outside of wedlock and repeal all discriminatory provisions regarding such children, in particular in the Family Code", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Improve detention and prison conditions by, among other things, ensuring detainees receive adequate nutrition, and by reducing overcrowding in places of detention", - "values": [ - "4 - General action" - ] - }, - { - "text": "Continue to promote reforms to the Judicial System which incorporate the prioritization of the respect for human rights", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Continue current national strategies and programmes for enhancing employment opportunities, social welfare, education and the health-care system, especially for families in rural areas, migrants and indigenous and tribal people in Chile ", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Continue to suspend capital punishment by putting in place, as a first step, a de jure moratorium against executions and eventually abolishing the death penalty ", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "While promoting and protecting freedom of expression and opinion, pay due attention to commensurate responsibility in protecting the rights of others and respect to others", - "values": [ - "4 - General action" - ] - }, - { - "text": "Finalize the efforts to ratify the Convention against Torture and Other Cruel, Inhuman or Degrading Treatment or Punishment, as well as other international instruments, as recommended by relevant treaty bodies", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Publish official figures concerning executions and death sentences.", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Support the amendment of relevant provisions of the Labour Code, curb unwarranted intervention by security forces and end anti-union discriminatory practices", - "values": [ - "4 - General action" - ] - }, - { - "text": "Increase attention to the protection of trafficked women and children ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Recommended that a strategy of assistance and prevention be developed for street children in order to protect and guarantee their rights, involving community-based associations and other civil society organizations.", - "values": [ - "4 - General action" - ] - }, - { - "text": "Establish adequate regulations regarding asylum seekers and refugees in order to promote and protect their rights and to find durable solutions, as stipulated in international law ", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Consider ratifying the Rome Statute of the International Criminal Court, including its Agreement on the Privileges and Immunities", - "values": [ - "3 - Considering action" - ] - }, - { - "text": "Guarantee that no women belonging to minority groups, including Roma, can be subject to practices of forced sterilization and that victims of such practices are provided with the necessary reparation.", - "values": [ - "4 - General action" - ] - }, - { - "text": "Continue its efforts specifically with regard to over-crowding of prisons and prison violence", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Follow-up on the recommendations made by CEDAW to address all forms of violence against women and girls, adopt and enact legislation in this area ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Codify the prohibition of the propaganda for xenophobia, anti- Semitism, neo-Nazism, and provide for criminal liability for such acts and establish racism as an aggravating circumstance ", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Consider the ratification of the Rome Statue of the ICC and prepare a law on cooperation between the state and the ICC ", - "values": [ - "3 - Considering action" - ] - }, - { - "text": "Evaluate its 2006-2009 national plan of action against trafficking of women and children to determine which actions were effective and should be continued in the future ", - "values": [ - "3 - Considering action" - ] - }, - { - "text": "Adopt measures to combat the problem of police abuse, through norms aiming at sanctioning such conduct and to prevent such abuses, strengthening the training of law enforcement officials", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Implement without further delay all relevant judgements of the European Court of Human Rights, including those in which grave human rights violations by Turkey have been established in the occupied areas of Cyprus under effective control of Turkey", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Strengthen the national legislative framework to fight illiteracy, reach the integral development of all segments of the population and regions, improve the standard of living of its citizens, including vulnerable groups of the population, and provide housing and other economic and social rights", - "values": [ - "4 - General action" - ] - }, - { - "text": "Adopt and implement efficient measures with a view to eliminate the discrimination against women, including pursuing appropriate public awareness-raising campaigns against the customary social stereotypes", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Take legislative measures to eliminate discrimination against women, particularly in the area of marriage and divorce", - "values": [ - "4 - General action" - ] - }, - { - "text": "Prevent the excessive use of force by the police and investigate all complaints thoroughly", - "values": [ - "4 - General action" - ] - }, - { - "text": "Decriminalize homosexual relations and practices-consensual same-sex activities between adults.", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Adoption of the principle of equal pay for equal work, regardless of any differences", - "values": [ - "4 - General action" - ] - }, - { - "text": "Ratify remaining core human rights instruments", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Close down the political prison camps and release all political prisoners", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Continue to strengthen laws and legislation which relate to human rights", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Adopt appropriate legislative and policy measures to adjust its legal system and combat and eradicate all forms of discrimination, racism and xenophobia", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Include racist motivation of crimes as an aggravating circumstance in the Criminal Code and make more effective the investigation and prosecution of hate speech and violence, including against persons based on their sexual orientation or gender identity", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Work on accession to the Convention for the Protection of All Persons from Enforced Disappearance ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Ratify the Optional Protocol to the Convention on the Elimination of All Forms of Discrimination against Women and the Optional Protocol to the International Covenant on Economic, Social and Cultural Rights ", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Continue ongoing efforts aimed at enhancing the participation and consultations of indigenous peoples on public policies that affect them, fully implementing the United Nations Declaration on the Rights of Indigenous Peoples and the ILO Convention No. 169 concerning Indigenous and Tribal Peoples in Independent Countries", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Fully implement legislation related to the rights of women, and explicitly ban marital violence", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Accede to the Second Optional Protocol to ICCPR", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Continue advancing in the implementation of the specialized body of judges to tackle violence against women and the family ", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Adopt a specific law prohibiting incitement to racial and religious hatred, in accordance with article 20, paragraph 2, of the International Covenant of Civil and Political Rights.", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Accelerate the efforts directed towards ending the harmful and traumatic practice of female genital mutilation", - "values": [ - "4 - General action" - ] - }, - { - "text": "Implement the conclusions of the reports on justice and police reform in a most systematic and efficient way ", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Continue considering adhering to the International Convention for the Protection of All Persons from Enforced Disappearance and recognizing the competence of its supervisory body, as previously recommended", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Set up a specialized body responsible for gender issues", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Provide adequate protection for witnesses of human rights violations", - "values": [ - "4 - General action" - ] - }, - { - "text": "Approve the budgetary funds needed to assume the obligations under the Council of Europe Convention on Prevention and Combating Violence against Women and Domestic Violence, and therefore proceed to its ratification", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Ensure that laws, policies and programmes aimed at protecting the human rights of women, elderly persons, persons with disabilities and indigenous peoples are effectively implemented", - "values": [ - "4 - General action" - ] - }, - { - "text": "Bhutan is committed to ensuring that all children have access to free primary education.", - "values": [ - "4 - General action" - ] - }, - { - "text": "Take steps to ratify the UNESCO Convention against Discrimination in Education ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Continue strengthening the National Machinery for Women's Rights, conferring on it the authority, visibility and resources necessary to fulfil its purposes ", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Ratify both Optional Protocols to the CRC ", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Define, prohibit and punish the trafficking of persons and child prostitution ", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Ensure prompt ratification of CAT ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Continue its engagement with improving the rights of refugees", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Provide the Government office for Gender Equality as well as the ombuds person for gender equality with the necessary authority as well as human and financial resources to carry out their work effectively ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Ratify OP-CAT, ICCPR-OP2, the Optional Protocol to the Convention on the Elimination of all Forms of Discrimination against Women (OP-CEDAW), the Optional Protocol to the Convention on the Rights of Persons with Disabilities (OP-CERD), OP-CRC-AC and OP-CRC-SC", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Implement programmes to increase the human rights awareness of village and community leaders, and develop measures to ensure that decisions made by village courts are in line with international standards, particularly the principle of non-discrimination, and, at the same time, take measures to promote among its citizens greater awareness of their rights and access to the formal judicial system ", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Ensure the protection of the rights of minorities", - "values": [ - "4 - General action" - ] - }, - { - "text": "Investigate properly all alleged cases of mistreatment and torture and establish accountability of those responsible ", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Consider the possibility of enacting laws for the protection of the most vulnerable groups from social discrimination ", - "values": [ - "3 - Considering action" - ] - }, - { - "text": "Eliminate disparities between girls and boys in the educational system", - "values": [ - "4 - General action" - ] - }, - { - "text": "Add the possibility of a life sentence without parole to the range of penalties for heinous crimes.", - "values": [ - "4 - General action" - ] - }, - { - "text": "Take steps to ratify all human rights instruments ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Repeal all orders of the National Council for Peace and Order that are inconsistent with its international human rights obligations", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Establish an effective and inclusive process for follow up on the recommendations resulting from the present review", - "values": [ - "4 - General action" - ] - }, - { - "text": "Share its plans and practices in eradicating poverty in a time-bound manner as is reflected in the works of the special Committee for the Eradication of Absolute Poverty and five-track partnerships", - "values": [ - "1 - Minimal action" - ] - }, - { - "text": "In relation to the Roma community adopt legislative and practical measures to combat discrimination against the members of this community guaranteeing the effective exercise of their rights", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Continue its efforts to further improve the awareness on human rights issues and international human rights conventions in Vanuatu, particularly by providing training to government officials ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Maintain its policy regarding the high rate of primary school attendance ", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Take further steps to eliminate violence against women, including through accession to relevant international instruments, the robust domestic implementation of laws, and providing gender-sensitive training to security and law enforcement agencies", - "values": [ - "4 - General action" - ] - }, - { - "text": "Ratify fundamental instruments to which it is not yet party, notably OP-CRC-AC and OP-CRC-SC", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Initiate sectoral policies taking into account the needs of certain vulnerable groups", - "values": [ - "4 - General action" - ] - }, - { - "text": "Recognize the right to conscientious objection and to offer a civilian alternative to military service", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Register refugees and provide documentation so they are able to work, access education, and travel", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Reiterate the recommendation to ratify the Rome Statute", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Consider the possibility of extending an invitation to special procedures to visit China taking into account the appropriate balance between economic, social and cultural rights and civil and political rights", - "values": [ - "3 - Considering action" - ] - }, - { - "text": "Develop and support programmes directed towards the training and education of marginalized youth ", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Support the Office of the Ombudsman and recognize its competency in all matters relating to equal treatment for all inhabitants, and comply with the principle of non-discrimination ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Continue efforts to establish a national human rights institution in accordance with the Paris Principles ", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Strengthen labour law enforcement by providing training to labour inspectors and conducting outreach campaigns to inform workers of their internationally recognized worker rights ", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "The ratification of the Optional Protocol to the International Covenant on Economic, Social and Cultural Rights is a priority for this year", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Sign and ratify the Optional Protocol to the International Covenant on Economic, Social and Cultural Rights", - "values": [ - "3 - Considering action" - ] - }, - { - "text": "Delete the crime of apostasy from national legislation", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Accelerate administrative and legislative reforms with a view of ratifying the ICCPR", - "values": [ - "4 - General action" - ] - }, - { - "text": "Implement the third National Human Rights Action Plan (2014-2018)", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Expedite the reform of its National Human Rights Commission and continue to support the implementation of the Commission's mandates with neutrality and impartiality", - "values": [ - "4 - General action" - ] - }, - { - "text": "Follow the appropriate United Nations Standard Minimum Rules for the Treatment of Prisoners in order to improve detention conditions by providing: better and timelier medical and dental treatment, appropriate provisions to withstand the cold winter temperatures in prisons, and larger servings of food to inmates", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Set out a clear pathway to meet the goal of ending child poverty in the UK by 2020 as stated in the Coalition's programme for government ", - "values": [ - "4 - General action" - ] - }, - { - "text": "During the consultation on human rights defenders referred to by the Minister of Human Rights, invite the Special Rapporteur on human rights defenders to help establish laws and structures which will be in accordance with the realities of the country. ", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Initiate and implement in place programs focusing on employability, entrepreneurship and microcredit with a view to allowing young unemployed people a better insertion into the employment market ", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Establish an independent investigation mechanism with the mandate to investigate alleged human rights violations committed by law enforcement officials", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "To establish an inter-ministerial technical committee to provide technical back-up to the Cabinet subcommittee", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Continue to take measures to combat intolerance based on ethnic origin, in particular against the Roma community ", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Meet its deadline and complete actions to which it committed in the three general areas described in the March 2010 Matrix: electoral reform, economic governance, and combating corruption ", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Consider the ratification of ILO Convention No. 169 (1989) on Indigenous and Tribal Peoples in Independent Countries ", - "values": [ - "3 - Considering action" - ] - }, - { - "text": "Pursue legislation to regulate the Presidential pardons process in order to increase transparency and provide victims and prosecutors an opportunity to input into this process ", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Consider the establishment of a national human rights institution accredited by the International Coordinating Committee of the National Institutions for the Promotion and Protection of Human Rights", - "values": [ - "3 - Considering action" - ] - }, - { - "text": "Take into account the United Nations Declaration on the Rights of Indigenous Peoples in the implementation of its public policies", - "values": [ - "4 - General action" - ] - }, - { - "text": "Confirm its commitments to equality and non-discrimination by decriminalizing consensual sexual relations between adults of the same sex as well as any discriminatory provisions with respect to lesbian, gay, bisexual and transgender persons ", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Recalling General Assembly Resolution 62-149, reinstate its moratorium on the death penalty with a view to its abolition.", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Take concrete measures to combat the recruitment and use of children in hostilities and ensure their return to their families ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Increase efforts to promote awareness on the social level through continuing campaigns that aim at combating all types of discrimination linked to negative cultural norms while protecting the cultural identity of the society", - "values": [ - "4 - General action" - ] - }, - { - "text": "Develop laws against racial discrimination", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Take measures to combat forced disappearances, collective arrests without a warrant and arbitrary detention without presentation of charges ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Support repeal of the provision of the Penal Code criminalizing consensual sex between adult males ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Ratify the Optional Protocol to the International Covenant on Economic, Social and Cultural Rights and accept the competence of the Committee as regards the inquiry procedure and inter-State communications", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Appoint a Chairperson to the Fiji Human Rights and Anti Discrimination Commission", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Consider alternative ways to ensure that members of national and/or ethno-linguistic minorities can officially uphold their identity, thus safeguarding the respect of their relevant rights ", - "values": [ - "3 - Considering action" - ] - }, - { - "text": "Address the issue of violence in schools as matter of priority and take the appropriate measures to put an end to all forms of ill-treatment and abuses, including sexual violence, perpetrated in schools, including the necessary measures to protect the victims and to ensure that those responsible are brought to justice", - "values": [ - "4 - General action" - ] - }, - { - "text": "Adopt institutional measures to improve the quality of live, ensuring that minors and adolescents remain permanently in the country, and preventing their unaccompanied migration. In the repatriation processes, ensure that the principle of the best interest of the child is respected and promote their effective social reintegration", - "values": [ - "4 - General action" - ] - }, - { - "text": "Declare, upon ratification of the CED, its acceptance of the competence of the Committee on Enforced Disappearances as provided for in articles 31 and 32 of the Convention ", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Immediately establish an official moratorium on executions with a view to abolishing the death penalty", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Ensure that persons belonging to religious minorities are free to practice their faith", - "values": [ - "4 - General action" - ] - }, - { - "text": "Strengthen measures aimed at respecting the rights of people with disabilities, particularly children ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Ensure that all cases where children have been a victim of domestic violence or witnessed such violence are properly documented and registered and that social recovery and reintegration services of child victims are reinforced", - "values": [ - "4 - General action" - ] - }, - { - "text": "Ratify international conventions, particularly ICERD, CAT, ICRMW and the International Convention for the Protection of All Persons from Enforced Disappearance (CPED), with the aim of enacting them into national law", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "The delegation reiterated Georgia's commitment to cooperate with the Council and pledged to submit a midterm report on the follow-up to the accepted recommendations.\n", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Continue the efforts aimed at implementing the Growth and Poverty Reduction Strategic Framework (2012-2017) ", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Further strengthen the social security system and effectively protect the rights of vulnerable groups", - "values": [ - "4 - General action" - ] - }, - { - "text": "Become a party to the 1951 Refugee Convention and 1967 Refugee Protocol ", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Ensure that its legislation protects the rights of everyone, regardless of their sexual orientation and gender identity, minority status or any other basis, to freedom of expression and assembly, freedom from discrimination and equality before the law", - "values": [ - "4 - General action" - ] - }, - { - "text": "Take measures to prohibit hate speech, racist and xenophobic acts and their manifestation ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Pursue efforts to address child labour in line with its international obligations", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Continue the endeavours to enhance the rights of women, children and persons with disabilities", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Improve the situation of overcrowding in prisons", - "values": [ - "4 - General action" - ] - }, - { - "text": "Continue taking the necessary steps to achieve universal primary education", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Decriminalize defamation and to ensure that the restriction of the right to freedom of expression, also the freedom of peaceful assembly and association, are consistent with international human rights standards", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Adopt a national action plan on human rights in line with OHCHR guidelines", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Make efforts to ensure access to information of public interest to citizens and guarantee the rights of freedom of assembly", - "values": [ - "4 - General action" - ] - }, - { - "text": "Adopt the necessary measures to respect and protect human rights defenders ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Continue placing special emphasis on the victim-oriented approach to address the challenges of human trafficking in the country ", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Ratify ICCPR-OP 2 and OP-ICESCR, as recommended previously, approve a National Action Plan on Women Peace and Security in accordance with Security Council resolution 1325 (2000)", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Continue to strengthen the gender approach in all spheres of national life with positive measures to achieve the effective promotion and protection of the rights of women ", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Continue strengthening effective job creation programmes to combat poverty and social inequality ", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Continue to strengthen its legislation and implementation regarding discrimination and violence against women and to pursue its efforts to promote gender equality, address violence against women, including domestic violence and provide support to the victims of gender-based violence", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Abolish death penalty or at least to establish a moratorium on executions", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Ensure that all children have the option to attend a non-denominational school at no extra cost", - "values": [ - "4 - General action" - ] - }, - { - "text": "Raise age of criminal responsibility, in line with the Convention on the Rights of the Child and prohibit corporal punishment in all grounds", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Implement legislation, as required under the Convention on the Elimination of All Forms of Discrimination against Women, to end discrimination against women and harassment in the workplace ", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Ensure the effective implementation of the legal framework on child abuse and exploitation and, when necessary, address the related weaknesses", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Refrain from the practice of public execution used to intimidate the people, as reported by the Special Rapporteur on the situation of human rights, in contravention of its own penal code, and accept the recommendation of the Committee on Civil and Political Rights to work toward the abolishment of capital punishment ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Adopt all necessary legislative and policy measures to effectively combat corruption and related impunity. This includes the immediate creation of an independent and effective specialized anti-corruption court", - "values": [ - "4 - General action" - ] - }, - { - "text": "Incorporate a prohibition to indefinite detention of migrants in the 2016 Declaration on Immigration and search for alternatives to detention", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Urgently address the alleged systematic acts of torture and ill-treatment of persons in detention, and also ensure that all perpetrators are brought to justice", - "values": [ - "4 - General action" - ] - }, - { - "text": "Align its national legislation with the Rome Statute, including by incorporating provisions to cooperate promptly and fully with the International Criminal Court and investigate and prosecute genocide, crimes against humanity and war crimes effectively before its national courts", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Take further steps in order to promote gender equality and eliminate domestic and family violence in the country", - "values": [ - "4 - General action" - ] - }, - { - "text": "Consider putting a moratorium on capital punishment with the view to its ultimate abolishment", - "values": [ - "3 - Considering action" - ] - }, - { - "text": "Expand its School Feeding Programme and integrate it with local agricultural production", - "values": [ - "4 - General action" - ] - }, - { - "text": "Keep on the current efforts to improve conditions of detention including limiting the over crowdedness of prisons ", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Adopt concrete measures to ensure access to employment for persons with disabilities and to promote the principle of inclusive education throughout the national education system", - "values": [ - "4 - General action" - ] - }, - { - "text": "The Government has pledged, inter alia, to enhance the Bureau of Women's Affairs to a Department, strengthening human and financial capacities, as well as to submit a National Gender Policy to Cabinet by the end of 2012", - "values": [ - "4 - General action" - ] - }, - { - "text": "Take effective and time-bound measures to ensure that children, with particular attention to children of migrant workers, are protected from trafficking and prostitution ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Take steps to ensure the active participation of civil society in the area of prevention, awareness-raising and education on existing laws and policies ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Redouble its efforts to obtain, in law and in practice, the inclusion of migrants in all spheres, in particular of women in the labour market", - "values": [ - "4 - General action" - ] - }, - { - "text": "Ratify CAT and its Optional Protocol ", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Pursue initiatives within the framework of the Durban Declaration and Programme of Action", - "values": [ - "4 - General action" - ] - }, - { - "text": "Step up the process of establishment of the country's national human rights institution that is compliant with the Paris Principles", - "values": [ - "4 - General action" - ] - }, - { - "text": "Establish mechanisms ensuring that street children are provided with clothing, housing, health and educational services ", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Take measures to prevent that migrant women who are victims of sexual and domestic violence or trafficking are at risk of deportation if such incidents are reported.", - "values": [ - "4 - General action" - ] - }, - { - "text": "Consider revising its Criminal Code, in particular with a view to decriminalizing sexual relations between consenting adults of the same sex ", - "values": [ - "3 - Considering action" - ] - }, - { - "text": "Implement a thorough training and awareness programme in international humanitarian and human rights law for members of the security forces.", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Continue efforts to promote and protect the human rights of the vulnerable ", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Continue the policy of multiculturalism aimed to preserve cultural diversity in the country ", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Consider pursuing ratification of more international human rights conventions", - "values": [ - "3 - Considering action" - ] - }, - { - "text": "Consider further action to fully understand the causes of inequality faced by indigenous people and take steps to minimize the effects.", - "values": [ - "3 - Considering action" - ] - }, - { - "text": "Develop opportunities afforded by international cooperation to strengthen its capacities, notably in the fight against poverty, while continuing its development programmes ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Accede to ICESCR and ICCPR", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Urgently take measures necessary to ensure that the United Nations Convention on the Rights of the Child is fully implemented and incorporated into the legal and administrative system of Ireland", - "values": [ - "4 - General action" - ] - }, - { - "text": "Establish anti-discrimination laws and regulations ensuring that lesbian, gay, bisexual and transder persons and other vulnerable groups enjoy equal treatment ", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Undertake prompt and impartial investigations into cases of excessive use of force by law enforcement officials, and that those found responsible be brought to justice and convicted and that the victims and their families be adequately compensated ", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Take all measures necessary to ensure that actions related to unaccompanied minors migrants, asylum seekers, refugees, victims of trafficking are in line with international standards ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Further increase its national spending on the health and education sector to meet the targets of the MDGs ", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Develop a comprehensive legal framework to protect children from trafficking", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Strengthen efforts to effectively fight against the phenomenon of violence against women ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Take necessary steps to provide adequate facilities to improve access to education for persons with disabilities, especially children ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Take further steps to ensure that its national human rights institution is aligned with the Paris Principles ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Initiate a structured public debate, with the participation of nongovernmental organizations, to accelerate its accession to all core international treaties", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Unite behind a new constitution through a fair referendum, and fully implement the result ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Take steps to carry out recommendations with regard to the implementation of commitments under the Convention on the Rights of the Child", - "values": [ - "4 - General action" - ] - }, - { - "text": "Look at how to reduce its dependence on institution-based care for children", - "values": [ - "3 - Considering action" - ] - }, - { - "text": "Provide follow-up to the expanded strategic framework for national action against HIV/AIDS", - "values": [ - "4 - General action" - ] - }, - { - "text": "Continue its renewed efforts and commitments to lead Nicaragua towards good living, prosperity and happiness, through the paths of reconciliation and national unity, equality, solidarity, sustainable development and further promotion and protection of human rights ", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Ensure a safe and enabling environment for all human rights defenders ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Provide support for women prisoners with HIV/AIDS ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Step up efforts to eradicate human trafficking, particularly trafficking of women and children from, to and through its territory by taking necessary measures to adopt the draft law on trafficking of migrants which includes provisions to combat human trafficking ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Take further steps to strengthen the independence of the judiciary, including by allocating sufficient resources and adequate training to judges and prosecutors ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Ensure that the new Media Law is in line with international standards", - "values": [ - "4 - General action" - ] - }, - { - "text": "Continue to combat poverty, with due regard for regional particularities", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Ratify the Optional Protocol to CRPD", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Improve prison conditions by reducing overcrowding and ensuring access to adequate medical treatment.", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Explore diverse options to improve the coordination of human rights, including, but not limited to, the establishment of a single mechanism such as a National Human Rights Institution", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Ensure that the living conditions in all detention or reception centres for migrants are in accordance with international standards and put an end to the practice of issuing expulsion orders before registering applications for asylum", - "values": [ - "4 - General action" - ] - }, - { - "text": "Ratify the Convention on the Rights of People with Disabilities and its Optional Protocol ", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Take additional measures to improve the Nigerian criminal justice system", - "values": [ - "4 - General action" - ] - }, - { - "text": "That the rights of journalists to report, comment on and criticize government policy freely and without fear, be respected", - "values": [ - "4 - General action" - ] - }, - { - "text": "Strengthen its national legislation in accordance with the international treaties that it has ratified", - "values": [ - "4 - General action" - ] - }, - { - "text": "Continue its efforts to combat child domestic labour and trafficking in children", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Enhance accessibility of the United Nations human rights system for all members of Danish society by ensuring the translation into Danish of its UPR outcome, relevant treaty body concluding observations and special procedure country reports ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Establish a sufficient number of courts and mobile legal aid centres in refugee areas to improve access to justice, particularly for cases of sexual and gender-based violence", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Adopt adequate measures to protect freedom of religion or belief with a view to ensuring for all the full enjoyment of the right to practice one's religion ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Promote actively women's participation in different sectors of the society, especially in public services", - "values": [ - "4 - General action" - ] - }, - { - "text": "Strictly enforce the legal provisions prohibiting harmful and discriminatory practices that violate the rights of women and girls, and that it undertake effective public education measures, including awareness-raising programmes designed to eliminate gender-based prejudices, traditional practices and provisions of personal status laws that are harmful and discriminatory to women and girls ", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Ratify the 1954 Convention relating to the Status of Stateless Persons as well as the 1961 Convention on the Reduction of Statelessness ", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Provide necessary legal protection and practical assistance for victims of violence against women ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Continue to increase input in health sector and provide health services to its poor population", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Continue to cooperate with the United Nations and other international organizations to strengthen human rights in Bolivia", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Take the necessary measures to resolve the problem of prison overcrowding", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Take legal measures to provide appropriate facilities and support for children, particularly children with disabilities as the most vulnerable group of children", - "values": [ - "4 - General action" - ] - }, - { - "text": "Instruct police officers on an annual basis that any form of illtreatment of detained persons is unacceptable and will be punished", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Continue stepping up efforts in the area of combating trafficking in human beings, including continuing the practice of implementing national plans of actions and other strategies in this area ", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Use more actively existing or new platforms for involving the Roma community in policy formulation, implementation and actively pursue an increase in the number of Roma in all public institutions ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Ratify the Optional Protocol to the Convention against Torture and establish a national preventive mechanism as soon as possible", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Continue the open and critical dialogue initiated immediately following the presidential election in August 2010, which addresses the opening up of the "political space", progress in human rights, and freedom of the media and press ", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "In responding to the comments and questions, the Government reaffirmed its commitment to pursuing a legal transformation agenda, including through removal of legislative and other possible impediments to the enjoyment of the full range of human rights.", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Allow NGOs and other actors to bring discrimination cases to court in order to secure increased access to justice for victims of discrimination", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Decriminalize unauthorized travel ", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Allow protest actions in Baku city in accordance with Resolution 1917 of January 2013 of the Parliamentary Assembly of the Council of Europe", - "values": [ - "4 - General action" - ] - }, - { - "text": "Repeal all provisions in its domestic legislation which criminalize sexual activity between consenting adults of the same sex ", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Expedite the ratification of the Convention against Torture and Other Cruel, Inhuman or Degrading Treatment or Punishment and its Optional Protocol, and adopt robust domestic legislation to this effect ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Give priority to implementing the CAVR and CTF recommendations regarding victims' rights to justice truth and reparations ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Consider the possibility of ratifying the Convention against Torture, since that international instrument is a fundamental tool in working to promote and protect human rights, particularly with regard to people deprived of freedom.", - "values": [ - "3 - Considering action" - ] - }, - { - "text": "Fully implement the recently adopted legislation and strategy on combating trafficking in persons to ensure effective provision of assistance, rehabilitation and reintegration for victims of trafficking, particularly women and children, and the bringing of perpetrators to justice ", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Fully guarantee freedom of expression and freedom of assembly and protect journalists and human rights defenders against threats and aggression", - "values": [ - "4 - General action" - ] - }, - { - "text": "Guarantee that all human rights defenders in Honduras are able to carry out their legitimate human rights activities according to the Declaration on Human Rights Defenders", - "values": [ - "4 - General action" - ] - }, - { - "text": "Strengthen the capacity of the office of the Ombudsman", - "values": [ - "4 - General action" - ] - }, - { - "text": "Guarantee the protection of all internally displaced persons regardless of their ethnic origin", - "values": [ - "4 - General action" - ] - }, - { - "text": "Continue its cooperation with international human rights bodies and instruments", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Fully cooperate with the Human Rights Council Independent Expert on technical cooperation and advisory services in the Democratic Republic of the Congo", - "values": [ - "4 - General action" - ] - }, - { - "text": "For the continued development of the country, take into account and support the family, based on the stable relationship between a man and a woman, as the natural and fundamental unit of society, both in taxation and general legislation ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Take further measures to promote women's economic empowerment and their participation in political life and decision-making ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Enhance legal action against all forms of discrimination on the basis of race, ethnic, language, religion or national origin, in particular comprehensive respect for human rights of foreigners regardless of their migratory status", - "values": [ - "4 - General action" - ] - }, - { - "text": "Establish a national human rights institution in conformity with the Paris Principles before the end of 2015", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Take steps to combat the persecution of persons on the basis of their sexual orientation or gender identity, in particular by removing Article 319.3 from the Penal Code so as to decriminalise consensual sexual conduct between persons of the same sex", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Improve prison conditions with the aim of aligning them to international norms and standards on the treatment of prisoners", - "values": [ - "4 - General action" - ] - }, - { - "text": "Ensure that the 1999 Penal Code and 2003 Criminal Procedures Code, and their implementation are consistent with its international human rights obligations ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Establish an independent institution in compliance with the United Nations Paris Principles ", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Continue its efforts to further ensure ethnic minorities the full range of human rights including cultural rights", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Consider acceding to core human rights instruments ", - "values": [ - "3 - Considering action" - ] - }, - { - "text": "Continue efforts to empower women and underprivileged segments of the society", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Double its efforts in combating intolerance and hate speech, including through ensuring proper investigation and prosecution in all cases of attacks and incidents of intolerance against minorities", - "values": [ - "4 - General action" - ] - }, - { - "text": "Pursue efforts to improve chances for persons with disabilities to have access to health care", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Uphold freedom of expression in all cases ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Promote legislation eradicating violence against women and against discrimination based on religious beliefs", - "values": [ - "4 - General action" - ] - }, - { - "text": "Consider ratifying other core human rights treaties such as the International Covenant on Economic, Social and Cultural Rights and the International Covenant on Civil and Political Rights ", - "values": [ - "3 - Considering action" - ] - }, - { - "text": "Issue clear public orders to the Somali National Forces not to commit unlawful attacks against civilians", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Pursue the implementation of the national plans for equality between men and women, for the eradication of domestic and gender-based violence and to combat trafficking in persons, ensuring sufficient financial resources to carry out these plans", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Extend a standing invitation to human rights special procedures.", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Implement the United Nations Declaration on the Rights of Indigenous Peoples at the federal and state levels ", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Accede to the Rome Status of the International Criminal Court", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Strengthen assistance measures to women, children and persons with disabilities", - "values": [ - "4 - General action" - ] - }, - { - "text": "Make a real political commitment to combating violence against women, and in particular that it change its national legislation allowing the criminalization of marital rape.", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Study the possibility of a law that specifically addresses the situation of domestic workers, in order to preserve their fundamental rights and protect them from possible abuses by their employers.", - "values": [ - "3 - Considering action" - ] - }, - { - "text": "Continue its efforts in promoting and protecting human rights through a regional framework, enhancing capacity-building and dialogue to empower States to solve their own human rights challenges with international assistance", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Raise the age of criminal responsibility so that it complies with relevant international standards.", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Finalize the drafting and adoption of the Children's Code", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Continue to take the necessary steps aimed at ensuring the delivery of relief assistance to those people in need in Darfur ", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Continue developing its policies to ensure the best quality in the sphere of education ", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Further strengthen the capacities and independence of the judicial system and to effectively combat corruption within the judiciary.", - "values": [ - "4 - General action" - ] - }, - { - "text": "Consider establishing a permanent inter-ministerial committee responsible for the implementation of its international human rights obligations", - "values": [ - "3 - Considering action" - ] - }, - { - "text": "Adopt policies, programmes and affirmative action measures to improve the quality of education in rural areas, specially those inhabited by indigenous peoples and communities, and guarantee them access to paid employment in the public and private sector ", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Investigate allegations of racially motivated incidents against members of minority groups and take punitive and remedial action", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Step up efforts to promote and protect the rights of the child, in particular the right to education", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Improve its cooperation with the United Nations treaty bodies by reporting on the implementation of its obligations under the Conventions it has ratified, namely, the International Covenant on Economic, Social and Cultural Rights, the International Covenant on Civil and Political Rights (ICCPR), the International Convention on the Elimination of All Forms of Racial Discrimination (ICERD), CEDAW and the Convention on the Rights of the Child (CRC)", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Recommended that civil society be fully involved in the follow-up to the Universal Periodic Review process.", - "values": [ - "4 - General action" - ] - }, - { - "text": "Promote children\u2019s right to education, especially education on climate change adaptation and mitigation", - "values": [ - "4 - General action" - ] - }, - { - "text": "Establish an independent and external oversight mechanism for alleged unlawful acts by police and that the Ombudsman monitor and investigate these cases independently and impartially", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Continue its efforts to provide greater access to education and employment", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Ratify the third Optional Protocol to the Convention on the Rights of Child on a communications procedure", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Continue the efforts to combat poverty and ensure sustainable development, and fully implement projected reform programmes and the roadmap for political transformation ", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Adopt measures to combat discrimination against persons on the grounds of their sexual orientation or gender identity, and decriminalize sexual acts between consenting adults of the same sex, in order to bring its legislation in line with the Second Optional Protocol to the Covenant on Civil and Political Rights", - "values": [ - "4 - General action" - ] - }, - { - "text": "Timely cooperate with the monitoring mechanism based on Security Council resolution 1612 (2005) and adopt concrete measures to prevent and punish all kinds of recruitment or use of children in armed conflict.", - "values": [ - "4 - General action" - ] - }, - { - "text": "Create an environment of public trust to judiciary system in the country by carrying out a reform of the High Council of Justice and amending the law governing appointment and dismissal of judges", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Sign and ratify the Optional Protocol to International Covenant on Economic, Social and Cultural Rights", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Accede to the Second Optional Protocol to ICCPR aiming at the abolition of the death penalty", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Continue to intensify its efforts to prevent and combat disparities against children belonging to vulnerable groups, including children of indigenous groups, children with disabilities as well as those living in remote areas", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Conclude pending demarcation processes, in particular related to the Guaraní Kaiowá ", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Pursue the cooperation with the Independent Expert on the situation of Human Rights in Haiti, who plays an important role, in particular in calling for the attention of the international community on the situation in the field and therefore contributing to the supply of technical assistance ", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Take steps towards abolishing the death penalty", - "values": [ - "4 - General action" - ] - }, - { - "text": "Positively consider ratification of the Optional Protocol to the Convention on the Elimination of All Forms of Discrimination against Women.", - "values": [ - "3 - Considering action" - ] - }, - { - "text": "Continue strengthening and implementing the current Plan of Action for Women and the Family Institution ", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Implement the Strategic Plan on Equality of Opportunity 2014-2016 with the aim to eliminate any remaining gender-based discrimination", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Develop a comprehensive anti-human trafficking strategy and adopt the legislation necessary to implement it ", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Amend the law on the fight against discrimination so that all grounds for discrimination are subject to prohibition ", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Ratify the ICRMW ", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Take the necessary measures to ensure the effective participation of indigenous peoples in the public and political life, including through implementation of the relevant recommendations of human rights treaty bodies and special procedures.", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Continue reform towards eventual abolition of the death penalty, including greater transparency around its use ", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Continue working particularly with regard to protecting the rights of victims of sexual violence and domestic violence, in particular through training of health, police and judicial personnel", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Accede to the Convention on the Rights of Persons with Disabilities", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Take additional measures to prevent the poor and marginalized children from early entry into the labour market and provide incentives for them to enrol in school", - "values": [ - "4 - General action" - ] - }, - { - "text": "Increase its efforts to combat HIV/AIDS by ensuring access to treatment and adequate health-care facilities and by ensuring that children living with HIV/AIDS have access to proper health care", - "values": [ - "4 - General action" - ] - }, - { - "text": "Amend its criminal laws so that sexual activity between consenting adults is not a criminal offence.", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Provide human rights training and education for members of the judiciary, police and prison personnel, in particular focusing on the protection of human rights of women, children, ethnic minorities, and LGBT and ensure through investigation and prosecution of any misconduct towards these persons.", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Continue its efforts to ensure the enrolment of all segments of society in education", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Raise the minimum age of criminal responsibility, and abolish child corporal punishment ", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Accede to the International Convention for the Protection of All Persons from Enforced Disappearance ", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Proceed towards the criminalization of rape and violent attacks as crimes against physical and mental integrity of women and as a form of discrimination based on the grounds of sex and gender", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Continue its efforts in addressing the welfare of expatriate labours ", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Abolish criminal provisions on defamation and insult ", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Strengthen the rights of the child, particularly by ensuring the registration of all children on the Civil Register", - "values": [ - "4 - General action" - ] - }, - { - "text": "Take effective measures to prevent and combat marital rape and domestic violence, including the express criminalization of these practices", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Continue to intensify cooperation with civil society organisations in order to debate on human rights issues and coordinate their follow-up and implementation on the ground", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Decriminalize defamation and place it within a civil code that is in accordance with international standards", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Commit to action plans for indentifying, releasing and ensuring reintegration, and prevent the further recruitment of children. ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Ensure that the law on human trafficking is in conformity with international human rights standards and to step up its efforts to prosecute traffickers and to identify and protect all victims of trafficking", - "values": [ - "4 - General action" - ] - }, - { - "text": "Seek the assistance of the international community to effectively support its efforts to face material, technical and financial challenges, which remain the major handicap to promoting fundamental human rights in the country. ", - "values": [ - "1 - Minimal action" - ] - }, - { - "text": "Ratify the remaining international human rights instruments, in particular the Optional Protocol to the Convention on Torture and Other Cruel, Inhuman or Degrading Treatment or Punishment and the Convention on the Rights of Persons with Disabilities", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Amend legislation in order to narrow down the criminal offences of "extremist activities" in order to ensure that charges are not applied arbitrarily and that freedom of expression as set out in the ICCPR is not restricted", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "To continue to implement the Ten-Year Justice Development Programme (PRODEJ) operating plan for 2010-2014", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Ensure the fair trials to all defendants before the Bangladesh International Crimes Tribunal, being judged for crimes against humanity during the Liberation War of 1971 ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Take further efforts to promote and protect women's rights, including measures to prevent trafficking in women ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Intensify the fight against terrorism and extremism in cooperation with other countries", - "values": [ - "4 - General action" - ] - }, - { - "text": "Ensure that all security and counter-terrorism operations strictly comply with human rights standards, the rule of law, as well as with the Constitution of Kenya by, for example, enacting the Prevention of Torture Bill", - "values": [ - "4 - General action" - ] - }, - { - "text": "Ensure effective implementation of the Declaration on the Rights of Indigenous People, including in the Northern Territory, and provide adequate support to the National Congress of Australia's First Peoples to enable it to address the needs of indigenous people", - "values": [ - "4 - General action" - ] - }, - { - "text": "Take urgent steps to abolish the system of guardianship", - "values": [ - "4 - General action" - ] - }, - { - "text": "Complete the National Strategy on Violence against Women with a clear credible implementation plan and invite the Special Rapporteur on violence against women, its causes and consequences to visit Egypt", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Step up its efforts towards the implementation of intersectoral policies with a view to eradicating poverty ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Promote the abolition of the death penalty.", - "values": [ - "4 - General action" - ] - }, - { - "text": "Increase awareness raising programmes and campaigns to promote tolerance and respect for diversity among its population ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Strengthen its policy to guarantee the rights of the child fully, with special attention to children without parental care. ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Sign and ratify CEDAW", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Further facilitate the granting of citizenship to children of non-citizen parents who do not acquire any other nationality", - "values": [ - "4 - General action" - ] - }, - { - "text": "Ratify the Optional Protocol to the Convention on the Elimination of All Forms of Discrimination against Women", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Intensify efforts to put an end to the male guardianship system over women, modify negative stereotypes and cultural practices that discriminate against women and carry out the necessary legislative changes, including to make it possible for women to drive vehicles", - "values": [ - "4 - General action" - ] - }, - { - "text": "Continue its efforts to combat poverty with the support of the international community \n\n", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Continue to combat hate crimes against vulnerable groups and prosecute perpetrators", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Ensure early presentation of the report on the implementation of the Law for the Elimination of Violence against Women, effective and nation-wide implementation of that Law and comprehensive collection of data, monitoring and evaluation to further identify weaknesses in implementation, and to ensure continuing conformity of the law for the Elimination of Violence against Women with CEDAW ", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Carry out necessary reforms to strengthen the rule of law to prevent political interference in the justice system and to tackle corruption at all levels", - "values": [ - "4 - General action" - ] - }, - { - "text": "Formally establish a moratorium on the use of the death penalty, with a view to abolition ", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Study the possibility of ratifying the International Convention on the Protection of the Rights of All Migrant Workers and Members of Their Families (ICRMW), the Second Optional Protocol to the International Covenant on Civil and Political Rights, (ICCPR-OP2) aiming at the abolition of the death penalty, the Optional Protocol to Convention against Torture and Other Cruel, Inhuman or Degrading Treatment or Punishment (OP-CAT)", - "values": [ - "3 - Considering action" - ] - }, - { - "text": "Modify the criminal codes to clearly address hate speech and racial and religious incitement in the context of election campaigns ", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Ensure that rape is diligently prosecuted as a grievous sexual assault", - "values": [ - "4 - General action" - ] - }, - { - "text": "Issue a standing invitation to the Special Procedures mandate holders of the Human Rights Council ", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Develop and adopt legislation that would explicitly recognize hatred on the basis of sexual orientation and gender identity as a motive and make it an aggravated circumstance in a crime", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Adopt a law for the protection of national minorities, in particular in the area of ensuring teaching of and instruction in their mother tongue", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Take continued action to reduce poverty as articulated in the National Growth and Poverty Reduction Strategy Paper of 2007 ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Issue a standing invitation to all special procedures mandate holders of the Human Rights Council", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Address the challenge of gender mainstreaming in a purposeful manner.", - "values": [ - "4 - General action" - ] - }, - { - "text": "Ratify the Optional Protocol to the Convention on the Elimination of All Forms of Discrimination against Women, as recommended in the first cycle", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Increase the participation of women in decision-making bodies and ensure that people with disabilities can participate in the voting process", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Continue its efforts to raise the quality of education for all in order to protect the promotion of human rights", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Align its Penal Code with international norms with a view to integrating judicial guarantees against torture, such as the right to a lawyer in all phases of a criminal procedure, including in police detention", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Advance the effective realisation of the human rights to safe drinking water and sanitation by improving the conditions of access particularly by expanding the network in rural areas", - "values": [ - "4 - General action" - ] - }, - { - "text": "Raise the legal age of criminal responsibility, develop a system of alternative sentencing for juvenile offenders and ensure that prison sentences for offenders below the age of 18 are only used as a last resort.", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Redouble efforts to combat all forms of sexual violence against women, fully implementing the Sexual Offences Act", - "values": [ - "4 - General action" - ] - }, - { - "text": "Enhance efforts to ensure the safety and the rights of children", - "values": [ - "4 - General action" - ] - }, - { - "text": "Conduct thorough investigations of alleged hate crimes against lesbian, gay, bisexual, transgender and intersex persons, Roma and refugees", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Take measures to incorporate the provisions of the Convention on the Rights of the Child into Swedish law", - "values": [ - "4 - General action" - ] - }, - { - "text": "Apply consistent and non-discriminatory citizenship policies and practices", - "values": [ - "4 - General action" - ] - }, - { - "text": "Ensure amendments to the Law 84 of 2002 are consistent with Egypt's Constitution and Egypt's international obligations", - "values": [ - "4 - General action" - ] - }, - { - "text": "Promote the necessary measures to repeal provisions discriminating people on the grounds of sexual orientation, including those contained in the Sexual Offences and Domestic Violence Act, and the Penal Code", - "values": [ - "4 - General action" - ] - }, - { - "text": "Take all necessary steps towards acceding to the Rome Statute of the International Criminal Court", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Continue its efforts to address the adverse effects of the sanctions imposed during the 1990s", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Take necessary measures in the implementation of the Convention on the Rights of Persons with Disabilities", - "values": [ - "4 - General action" - ] - }, - { - "text": "Increase efforts to combat human trafficking, in particular by considering the development of comprehensive national legislation and an action plan to eradicate human trafficking and protect victims ", - "values": [ - "3 - Considering action" - ] - }, - { - "text": "Adopt measures to ensure more effective implementation of the provisions of national labour legislation so as to eliminate the pay gap and to increase indicators for the hiring of women for jobs in non-traditional sectors", - "values": [ - "4 - General action" - ] - }, - { - "text": "Consider the possibility of repealing the death penalty from its legal system ", - "values": [ - "3 - Considering action" - ] - }, - { - "text": "Develop a high standard of human resource management to avoid administrative infractions and human rights violations in prisons", - "values": [ - "4 - General action" - ] - }, - { - "text": "Establish an NHRI in conformity with the Paris Principles and provide it with the resources it requires for the effective performance of its functions", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Continue efforts in implementation of the National Action Plan to end Gender Based Violence Against Women", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Ratify the Optional Protocols to the International Covenant on Civil and Political Rights, to the Convention on the Elimination of All Forms of Discrimination against Women, to the Convention against Torture and Other Cruel, Inhuman or Degrading Treatment or Punishment and to the Convention on the Rights of Persons with Disabilities", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Accede to international refugee protection instruments, adopt national asylum legislation and appropriate administrative structures, and reach a formal agreement with UNHCR to establish the agency's presence and operations in the country", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Although Guyana did not accept Recommendations 70.44, 70.45 and 70.46, it re-affirmed its commitment to investigate any and all allegations of extra-judicial killings through a transparent process and report on efforts made.", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Continue to promote measures to eradicate violence against women, including domestic violence, and expand support services and psychological support for victims, taking especially into account the vulnerability of migrant women", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Continue with its policy aimed at improving the living conditions of indigenous peoples on the labour market, with a view to their social stability ", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Consider ratifying the International Convention on the Rights of Migrant Workers and Members of their their Families", - "values": [ - "3 - Considering action" - ] - }, - { - "text": "Re-examine laws on strikes to allow greater flexibility ", - "values": [ - "3 - Considering action" - ] - }, - { - "text": "Take concrete measures to address the high rate of unemployment among persons with disabilities and the special needs of children with disabilities at schools.", - "values": [ - "4 - General action" - ] - }, - { - "text": "Establish as a first step, a moratorium on all executions followed by a complete abolition of the death penalty", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Ensure that the revision of the Constitution is firmly based on human rights and complies with international human rights standards", - "values": [ - "4 - General action" - ] - }, - { - "text": "Consider acceding to all core United Nations human rights instruments, including the International Convention on the Protection of the Rights of all Migrant Workers and Members of Their Families", - "values": [ - "3 - Considering action" - ] - }, - { - "text": "Repeal articles 475 of the Penal Code, which permits perpetrators of rape to marry their victims to evade prosecution ", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Ensure the effective implementation of measures to prevent, punish and eradicate all forms of violence and discrimination against women and lesbian, gay, bisexual, transgender and intersex persons", - "values": [ - "4 - General action" - ] - }, - { - "text": "Adopt international human rights standard in national trials ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Continue with its policy of recognition and promotion of the rights of nature, the promotion of the use of non-pollutant or of low impact technology and alternative energies ", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Intensify its efforts to combat the dissemination of ideas based on racial superiority including racist speech by political parties through the Internet as well as other media ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Issue a standing invitation to all United Nations Special Procedures ", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Take further steps to prevent and protect Aboriginal women and children from all forms of violence ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Accede to the 1951 Convention relating to the Status of Refugees and its 1967 Protocol and put in place mechanisms for determining refugee status", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Sign and ratify the Optional Protocol to CRC on the involvement of children in armed conflict", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Step up efforts to combat discrimination against national minorities, including Roma, and provide the victims of discrimination with access to effective legal protection", - "values": [ - "4 - General action" - ] - }, - { - "text": "Consider abolishing restrictive requirements such as no objection certificates or security clearance certificates when individuals apply for higher education, jobs, business licences and travel documents ", - "values": [ - "3 - Considering action" - ] - }, - { - "text": "Bring all public buildings up to code so that they are accessible by persons with disabilities, in line with its international obligations and commitments", - "values": [ - "4 - General action" - ] - }, - { - "text": "Ensure the protection of children's human rights by reducing and eliminating domestic and international child trafficking, sexual abuse, economic exploitation, "baby farming", widespread homelessness, abuse stemming from belief in child witchcraft, and forced conversions", - "values": [ - "4 - General action" - ] - }, - { - "text": "Pursue its excellent policies in the field of economic, social and cultural rights, in order to further increase the living conditions of its people, particularly those of the most vulnerable sectors of the population", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Continue its national reconciliation efforts ", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Continue combating human trafficking", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Ensure that access to HIV treatment is accessible to all who need it without any discrimination", - "values": [ - "4 - General action" - ] - }, - { - "text": "Ensure the full and effective implementation of existing laws and policies relating to the rights of women and children, in order to protect these rights and eliminate all forms of discrimination", - "values": [ - "4 - General action" - ] - }, - { - "text": "Continue efforts aimed at the progressive realization of economic, social and cultural rights ", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Improve the protection of children, strengthen early detection and counsel for victims of child sexual abuse, raise public awareness about the harmful effects of corporal punishment", - "values": [ - "4 - General action" - ] - }, - { - "text": "Develop and implement policies to ensure gender equality throughout society and strengthen the promotion and protection of the rights of women, especially women from indigenous communities ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Adopt measures for the decriminalization of consensual same sex sexual relations", - "values": [ - "4 - General action" - ] - }, - { - "text": "Ratify, before the next cycle of the universal periodic review, the Optional Protocol to the Convention against Torture and adopt measures to improve access to justice, redress and rehabilitation for victims of torture", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Continue to build new social housing in order to improve the housing of its population", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Establish a regulatory framework for mining companies present on the territory in order to ensure that their activities do not harm the immediate environment", - "values": [ - "4 - General action" - ] - }, - { - "text": "Review penal code provisions that discriminate against individuals on the basis of sexual orientation or gender identity, in order to ensure an end to hostility or violence against such groups", - "values": [ - "3 - Considering action" - ] - }, - { - "text": "Continue and intensify measures to improve gender equality in the country", - "values": [ - "4 - General action" - ] - }, - { - "text": "Adopt political, legislative and administrative measures guaranteeing a higher representation of women in decision-making, as well as in senior positions in all areas of the public administration ", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Ratify the Optional Protocols to ICCPR and CAT ", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Implement as quickly as possible recommendations drawn up by BICI ", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Ensure due process and full enforcement of laws to avoid extrajudicial, summary or arbitrary killings and arbitrary detentions, including adopting all necessary measures, including legal and judicial measures, in order to bring an end to impunity and to prevent the recurrence of such activities", - "values": [ - "4 - General action" - ] - }, - { - "text": "Ensure the allocation of adequate resources to national human rights protection bodies, such as the Ombudsman", - "values": [ - "4 - General action" - ] - }, - { - "text": "Criminalize torture in accordance with Article 1 of the Convention against Torture and combat impunity in this field", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Introduce appropriate legal measures prohibiting all forms of violence against children, ensure accountability and end impunity", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Ensure that war crimes and crimes against humanity are punished by acceding to the Rome Statute establishing the ICC", - "values": [ - "4 - General action" - ] - }, - { - "text": "Strengthen the implementation of effective programmes for the protection and rehabilitation of, and comprehensive attention to, victims of trafficking ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Increase efforts and resources to reduce the gap between indigenous people and other Panamanians in terms of access to health, education and economic development", - "values": [ - "4 - General action" - ] - }, - { - "text": "Continue efforts for judicial reforms, particularly through strengthening the independence of judges and enhancing their capacities", - "values": [ - "4 - General action" - ] - }, - { - "text": "Take measures to protect journalists from acts of violence and intimidation", - "values": [ - "4 - General action" - ] - }, - { - "text": "Continue to take the necessary measures to increase transparency in local and national institutions and to optimize the potential of the country", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Amend the Labour Code so that compulsory arbitration may only be imposed on worker and employer organizations in the case of national or local crisis ", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Establish a standing moratorium on executions with a view to the abolition of the death penalty and ratify the Second Optional Protocol to the International Covenant on Civil and Political Rights", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Enact the Bill on the Human Rights Commission in order that a proper NHRI, in conformity with the Paris Principles, can be established", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Immediately lift restrictions on freedom of expression, association and peaceful assembly, and on the ability of journalists to report on and criticize Government policy freely, without fear of repression", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Establish an independent and effective national investigative mechanism", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Continue taking concrete measures to further promote and protect human rights, particularly for women and children", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Continue to accede to the main international human rights instruments, to which it is not yet a party, in particular the International Convention for the Protection of All Persons from Enforced Disappearance ", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Develop child protection policies particularly in terms of combating sexual exploitation and child labour", - "values": [ - "4 - General action" - ] - }, - { - "text": "Enact laws and policies to combat the problem of sexual harassment in the workplace and in public life", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Ensure that legislation on the declaration of assets by non-governmental organizations does not weaken civil society and does not unnecessarily compel the disclosure of intrusive information", - "values": [ - "4 - General action" - ] - }, - { - "text": "Ratify the American Convention on Human Rights and accept the jurisdiction of the Inter-American Court of Human Rights", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Consider repealing the provisions, which allow administrative detention and guarantee to all detainees immediate access to lawyers, doctors and family members", - "values": [ - "3 - Considering action" - ] - }, - { - "text": "Continuing and strengthening its efforts to achieve gender equality in Government and public services at all levels, to this end, the newly elected Parliament, the Knesset, had 21 women, among the largest number of women members in the history of Israel, and 3 more than in the previous Knesset", - "values": [ - "4 - General action" - ] - }, - { - "text": "Take concrete measures to ensure effective access to education by Roma and Sinti children as well as other vulnerable groups", - "values": [ - "4 - General action" - ] - }, - { - "text": "Consider extending a standing invitation to special procedures to visit and help with the reforms", - "values": [ - "3 - Considering action" - ] - }, - { - "text": "Ensure adequate protection of defenders of human rights that help LGBT persons ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Revise the Public Order Management Act to guarantee a proportionate use of force by the security forces and mainstream human rights and humanitarian law in the training of the security forces", - "values": [ - "3 - Considering action" - ] - }, - { - "text": "Consider expediting the ratification of OP-CRPD and the Rome Statute of the ICC", - "values": [ - "3 - Considering action" - ] - }, - { - "text": "Accomplish the human rights goals set out in Human Rights Council resolution 9-12", - "values": [ - "4 - General action" - ] - }, - { - "text": "Take concrete measures to decriminalize same-sex relations and prevent discrimination based on marital status and sexual orientation", - "values": [ - "4 - General action" - ] - }, - { - "text": "Consider ratifying the Optional Protocol to the Convention against Torture and Other Cruel, Inhuman or Degrading Treatment or Punishment", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Ratify the Second Optional Protocol to the International Covenant on Civil and Political Rights, aimed at abolishing the death penalty ", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Intensify measures to ensure that indigenous peoples' rights are respected at the community level", - "values": [ - "4 - General action" - ] - }, - { - "text": "Adopt and ratify ICRMW", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Continue its efforts to improve the living conditions of the people, including by creating the resources necessary to realize the right to adequate housing", - "values": [ - "4 - General action" - ] - }, - { - "text": "Consider issuing a standing invitation to the United Nations special procedures ", - "values": [ - "3 - Considering action" - ] - }, - { - "text": "The delegation stated that Liberia was committed to protecting the rights of Ebola survivors and orphans, and to improving the health-care system in the wake of the Ebola epidemic", - "values": [ - "4 - General action" - ] - }, - { - "text": "Effectively implement as soon as possible the Comprehensive Program to Prevent, Address, Punish and Eliminate Violence against Women", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Ensure that the proceedings of customary courts are in line with the domestic courts", - "values": [ - "4 - General action" - ] - }, - { - "text": "Intensify its ongoing actions to eliminate discrimination against women at all levels in the society", - "values": [ - "4 - General action" - ] - }, - { - "text": "Adopt concrete measures, in the form of national awareness programmes and campaigns, to eradicate stereotypes, cultural practices and traditions contrary to the fundamental rights of women and girls", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Ensure that police and military officers alleged to have committed acts of torture and ill-treatment are held accountable through the criminal justice system", - "values": [ - "4 - General action" - ] - }, - { - "text": "Adopt national uniform legislation prohibiting, except where there is a serious threat to life or health, the sterilisation of children and of adults with disability, in the absence of prior, fully informed and free consent", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Step up the efforts concerning the investigations of human rights violations and crimes against humanity that occurred during the military dictatorship between 1976 and 1983, and continue the prosecution of those responsible for these violations, strengthening the pillar on memory, truth, justice and reparatory policies of the action plan on human rights", - "values": [ - "4 - General action" - ] - }, - { - "text": "Sign the International Convention on the Protection of the Rights of All Migrant Workers and Members of Their Families", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Take necessary measures to guarantee the enjoyment of all fundamental freedoms, including the participation in political and public affairs by all", - "values": [ - "4 - General action" - ] - }, - { - "text": "Withdraw the remaining reservations to the ICCPR and the CAT", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Adopt and implement measures to ensure that international human rights standards are observed by the Malian Armed Forces, in particular the absolute ban on torture and ill-treatment and to ensure that all reports of torture and other ill-treatment are investigated effectively, with those responsible being brought to justice ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Continue to fund programs aimed at integrating Roma and take further steps to address the on-going social exclusion of Roma", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "That the second National Human Rights Action Plan should take into account the recommendations formulated by treaty bodies and special procedures", - "values": [ - "4 - General action" - ] - }, - { - "text": "Accelerate the process of bringing the statutes of the Office of Ombudsman into full conformity with the Paris Principles", - "values": [ - "4 - General action" - ] - }, - { - "text": "Continue developing and strengthening actions aimed at eradicating poverty and public policies aimed at guaranteeing equality of the entire population", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Take necessary measures to ensure the protection of the rights of all children, and specially to resolve the problem of the so-called street children ensuring that their basic needs are covered including education, health, housing and food, and correspond to a society that is rich and developed", - "values": [ - "4 - General action" - ] - }, - { - "text": "Continue to implement the National Basic Education Development Strategy, especially in the areas of enrolment and improvement of quality of education ", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Implement a full moratorium with a view to early and total abolition of the death penalty ", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Ratify the Convention against Torture and Other Cruel, Inhuman or Degrading Treatment or Punishment", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Provide free primary education, create a safe and protective environment for all children to keep them in the education system, especially those in rural and remote areas", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Cooperate with the human rights protection bodies through the submission of its due reports to all treaty bodies ", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Refrain from adopting laws that have the effect of limiting the right to freedom of expression and association", - "values": [ - "4 - General action" - ] - }, - { - "text": "Take the necessary measures to guarantee the right to peacefully demonstrate", - "values": [ - "4 - General action" - ] - }, - { - "text": "Include civil society and human rights defenders in the political dialogue and in the development of legislation, through an open and transparent consultation processes", - "values": [ - "4 - General action" - ] - }, - { - "text": "Promote the culture of human rights through awareness-raising and education, in particular through training programmes for the benefit of law enforcement ", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Enhance cooperation with labour-sending countries to ensure foreign workers go through proper and legal channels to work in Singapore and continue efforts to protect the rights of all foreign workers from exploitation ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Find the necessary means to improve the health sector, providing access to all citizens", - "values": [ - "4 - General action" - ] - }, - { - "text": "Act on its prior commitment and align its legislation with international standards on freedom of expression by abolishing all legal provisions criminalizing defamation and libel", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Strengthen its efforts in order to end discrimination against women, especially by revising the Personal Status Law and granting women the right to confer their nationality", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Intensify the fight against the perpetrators operating in the area of human trafficking", - "values": [ - "4 - General action" - ] - }, - { - "text": "Uphold its obligations under international human rights and humanitarian law, and implement all relevant Human Rights Council resolutions including those under agenda item 7, not only in its own territory, but also in places under its control", - "values": [ - "4 - General action" - ] - }, - { - "text": "Maintain the institution of the family and marriage as a conjugal union between a man and a woman based on free consent ", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Take steps to prevent, and ensure accountability for, acts of violence perpetrated against individuals, including on the basis of their sexuality", - "values": [ - "4 - General action" - ] - }, - { - "text": "Adopt legislation on trafficking in persons, including for the purpose of the sale of human organs, and investigate all allegations of such crimes ", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Accelerate the process of the establishment of a national human rights institution in accordance with the Paris", - "values": [ - "4 - General action" - ] - }, - { - "text": "Further pursue its excellent social protection programs, which now benefit over 25% of families in the country ", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Investigate all reports of attacks on journalists and human rights defenders, and bring the perpetrators to justice", - "values": [ - "4 - General action" - ] - }, - { - "text": "Take further action to harmonize anti-discrimination laws to ensure equal protection on all grounds of discrimination in all spheres of life", - "values": [ - "4 - General action" - ] - }, - { - "text": "Proceed to the signature and ratification of the main international human rights instruments that has not already signed and ratified, including the Optional Protocol to the Convention on the Rights of the Child on the participation of children in armed conflict and the Optional Protocol to the Convention on the Rights of the Child on the sale of children, child prostitution and child pornography, whose signature and ratification was itself accepted in the previous review", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Take the necessary measures so as to ensure that journalists and human rights defenders can do their work independently and without fear of reprisals from the authorities, be they of financial, legal or of another nature ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Step up efforts to facilitate administrative procedures so that all children are registered at birth", - "values": [ - "4 - General action" - ] - }, - { - "text": "Agree to the visit of the Special Rapporteur on human rights defenders, requested in 2006 but not yet agreed upon.", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Enact a national migrant legislation to protect the rights of migrant workers and ensure that migrant workers who wish to pursue claim against employers are not forced to repatriate without access to justice", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Take all necessary measures for the realization of effective compulsory and free-of-cost primary education for all ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Continue giving consideration to ratify the other remaining (human rights) instruments in a progressive manner", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Continue its efforts in promoting gender equality including implementing its National Gender Policy which is aimed at changing behaviour and encouraging equality between men and women in all areas of socioeconomic life and access to resources ", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Strengthen measures to combat and prevent torture and other cruel and degrading treatments", - "values": [ - "4 - General action" - ] - }, - { - "text": "Ratify the International Convention for the Protection of All Persons from Enforced Disappearance to strengthen the Convention from the perspective of universality and compliance", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Ensure equal access to the health care, and enhance the quality of health care services, particularly through increasing of the qualification of professionals", - "values": [ - "4 - General action" - ] - }, - { - "text": "Continue the work which has been started on the improvement of the conditions of detention in the penitentiary system and the integration of former prisoners into society", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Pay particular attention to the training of law enforcement agents in the sphere of combatting discrimination and promoting human rights", - "values": [ - "4 - General action" - ] - }, - { - "text": "Develop a coordinated, inter-agency approach for responding to gender-based violence, with support from international partners, as required", - "values": [ - "4 - General action" - ] - }, - { - "text": "Continue its efforts on poverty reduction", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Continue to develop strategies to promote public awareness of the issue of trafficking in persons", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Ratify the UNESCO Convention on discrimination in education", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Abolish provisions in its domestic legislation that authorize the corporal punishment of children in all places, in particular in detention facilities and in schools", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Develop a comprehensive and coordinated programme to fight human trafficking, adopt effective measures to prevent and eradicate human trafficking and organize specialized training for law enforcement and immigration officials and other State officials who enter into contact with victims of human trafficking on issues relating to the identification of victims, the conduct of investigations, criminal prosecutions and punishment of perpetrators", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Redouble its efforts to put an end to stereotypes and to gender-based discrimination in the educational system", - "values": [ - "4 - General action" - ] - }, - { - "text": "Recognize the competence of the Committee on Enforced Disappearances (CPED) to receive and consider communications from or on behalf of victims and other States Parties for violations of the provisions of the Convention", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Ensure that detention of refugees, migrants and asylum-seekers is applied only as a last resort", - "values": [ - "4 - General action" - ] - }, - { - "text": "Monitor and address rampant hate speech on the social media, especially that is directed at Muslims and refugees in public and political debates and manifested in Islamophobia", - "values": [ - "4 - General action" - ] - }, - { - "text": "Establish a human rights institution accredited by the International Coordinating Committee ", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Consider signing and ratifying the Council of Europe Convention on preventing and combating violence against women and domestic violence ", - "values": [ - "3 - Considering action" - ] - }, - { - "text": "Continue its efforts and its contribution at the international level aimed at strengthening the United Nations human rights machinery, particularly with a view to contributing towards making it function on the basis of non-politicization, respectful dialogue and good faith cooperation and to working towards the realization of the developing countries interests", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Ensure the immediate and urgent provision of essential medicines and medical materials to its population, including by deploying necessary resources and by accepting international assistance and cooperation", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Adopt measures that ensure that people with disabilities enjoy their rights on an equal footing, including free access to health and on the basis of their informed consent, access to education, employment and social security, as well as full participation in the political, social and economic life of the country ", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Continue its efforts to follow-up on the implementation of the National Action Plan for the Promotion and Protection of Human Rights", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Seek necessary technical assistance from OHCHR, other relevant UN agencies and funds with a view to effectively implement its key national priorities for 2009-2014 related to health, education, land reform and food security ", - "values": [ - "1 - Minimal action" - ] - }, - { - "text": "Continue efforts to combat discrimination in judicial practices and law enforcement", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Refrain from subjecting the civilian population to collective punishment", - "values": [ - "4 - General action" - ] - }, - { - "text": "Continue to implement measures aimed at further promoting and protecting children's rights, and intensify efforts to ensure further opportunities for access to higher education", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Adopt a legislative framework for the protection of children, in particular by raising the minimum age of marriage and the age of criminal responsibility", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Consider acceding to the International Covenant on Economic, Social and Cultural Rights", - "values": [ - "3 - Considering action" - ] - }, - { - "text": "Continue with international support its efforts to complete its human rights architecture and to spread human rights culture in Uzbekistan, as well as providing the necessary training and capacity building to law enforcement and the members of the judiciary in the area of human rights.", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Pass legislation to increase the time limit for paid maternity leave", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Withdraw its reservation on article 4 (a) of ICERD, as this reservation undermines one of the key objectives of this Convention ", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Reinstate the moratorium on executions, with a view to ultimately abolishing the death penalty", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Recommended ensuring that any reformed prison or compulsory care system meets international human rights standards", - "values": [ - "4 - General action" - ] - }, - { - "text": "Adopt measures to fight against discrimination based on sexual orientation or gender identity", - "values": [ - "4 - General action" - ] - }, - { - "text": "Continue to combat poverty, giving due consideration to socioeconomic and regional disparities ", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Take appropriate measures, taking into consideration its international obligations, to prevent the marriage of minors", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Sign and ratify CED at the earliest and fully recognize the competence of the Committee on Enforced Disappearances ", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Partner with States and organizations which have experience working with children affected by armed conflict to develop programmes designed to their need for rehabilitation and integration", - "values": [ - "1 - Minimal action" - ] - }, - { - "text": "Set specific, measurable, achievable and relevant goals, in consultation with all stakeholders, in order to reduce bureaucracy", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Continue implementing measures in its ongoing efforts to eliminate discrimination and all forms of violence against women and children, and, in particular, undertake appropriate measures to prevent and combat ill treatment, sexual abuse and violence against children, as well as rehabilitate child victims", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Make greater efforts to promote economic and social rights in a manner conducive to the furtherance of rights in the fields of labour, education, health and housing ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Give appropriate resourcing to implement its Disability Inclusive Development Policy", - "values": [ - "4 - General action" - ] - }, - { - "text": "Cooperate with the competent authorities of the United Nations and in particular accept the visit of the Independent Commission of Inquiry composed of international experts ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Establish a national system that independently and regularly monitors and inspects all places of detention ", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Continue to increase budget allocations to the educational sector, focus on overall improvement in the quality of education provided, in particular in rural areas, and ensure expansion of the bilingual intercultural programme for indigenous peoples.", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Intensify cooperation particularly at the regional and bilateral level with neighbouring States in the effort to find a lasting solution to the issue of the Myanmar refugees ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Provide adequate financial and human resources to support the Treaty Working Group", - "values": [ - "4 - General action" - ] - }, - { - "text": "Timely ratify the Optional Protocols to the CRC.", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Continue to implement legal and administrative measures to protect women from domestic and sexual violence", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "In consultation and cooperation with relevant partners, take appropriate measures to implement the National Plan of Action for Children ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Adopt proper measures in order to discourage the practice of early and forced marriages", - "values": [ - "4 - General action" - ] - }, - { - "text": "Ensure the full legal protection of the freedom of children from physical or mental violence, injury or abuse, neglect or negligent treatment, maltreatment or exploitation, including corporal punishment in any setting, and take further practical measures to stem the occurrence of violence against children ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Increase efforts to investigate and prosecute the individuals known to be responsible for the serious human rights violations that took place in the north of the Central African Republic between 2005 and mid-2007. ensure that victims are guaranteed remedy, including the right to compensation and reparation. and continue efforts to improve the protection of the civilian population.", - "values": [ - "4 - General action" - ] - }, - { - "text": "Step up efforts to combat violence against women and girls, including by promoting literacy among these groups", - "values": [ - "4 - General action" - ] - }, - { - "text": "Ensure women's participation in the post-conflict, reconstruction and peace building process", - "values": [ - "4 - General action" - ] - }, - { - "text": "Provide more care and attention to the rights of the elderly.", - "values": [ - "4 - General action" - ] - }, - { - "text": "Ensure full recognition of sexual and reproductive rights through access to comprehensive sexual education. Public health sector should take into account violations of sexual freedom and the importance of precocious pregnancies in the country, and combat discrimination related to socioeconomic conditions", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Continue developing cooperation with the human rights machinery of the United Nations", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Continue its efforts to bring its penitentiaries and detention centres into compliance with international human rights standards ", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Accept an independent international human rights mechanism on the ground as soon as possible.", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Grant the national preventive mechanism the legal authority and the practical means, including financial, to access all places where the mechanism suspects that persons are deprived or may be deprived of liberty, in accordance with article 4 of the Optional Protocol to the Convention against Torture and Other Cruel, Inhuman or Degrading Treatment or Punishment", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Continue with all necessary efforts for the swift adoption and implementation of laws and programmes for the defence and promotion of human rights.", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Incorporate both CEDAW and ICERD in the Human Rights Act ", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Further improve the conditions of detainees in line with international human rights standards ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Strengthen intersectoral campaigns to counter violence against women", - "values": [ - "4 - General action" - ] - }, - { - "text": "Consider the possibility of enhancing the necessary measures for the protection and integration of the LGBT population ", - "values": [ - "3 - Considering action" - ] - }, - { - "text": "It renewed Qatar's commitment to further its cooperation and consultation with all UN human rights mechanisms and its support to the Human Rights Council", - "values": [ - "4 - General action" - ] - }, - { - "text": "Ensure that all hate crimes are categorized as such and thoroughly investigated", - "values": [ - "4 - General action" - ] - }, - { - "text": "Continue the process of signing and ratifying international human rights instruments", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Strengthen the independence of the judiciary and safeguard the rule of law by, inter alia, increasing the budget allocated to the justice system", - "values": [ - "4 - General action" - ] - }, - { - "text": "Invite the UN Working Group on Enforced or Involuntary Disappearances and the Special Rapporteur on human rights defenders to visit the Philippines", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Continue to counter the East Turkistan terrorist organizations to prevent their violent activities, and assist the ordinary people being deceived and victimized by these organizations to resume their normal lives", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Improve the Foreign Contribution (Regulation) Act so that it could fund a broader scope of non-governmental organizations", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Continue its efforts in launching the NHRAP", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Guarantee the applicability of the principles and doctrines of the International Convention on the Elimination of All Forms of Racial Discrimination in its national legislation of the United Kingdom regions", - "values": [ - "4 - General action" - ] - }, - { - "text": "Ensure that nobody is penalized for exercising their rights to peaceful assembly and freedom of expression, investigate all allegations of acts of intimidation, threats and attacks and ensure that the perpetrators are brought to justice", - "values": [ - "4 - General action" - ] - }, - { - "text": "Continue to fight crimes of human trafficking", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Develop a clear implementation and monitoring plan for the Bonded Labour System (Abolition) Act, 1992, the Bonded Labour System (Abolition) Rules, 1995 and the National Policy and Plan of Action for the Abolition of Bonded Labour, 2001", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Take measures to eliminate the persistence of traditions harmful to the rights of women, including early contract marriages and polygamy", - "values": [ - "4 - General action" - ] - }, - { - "text": "Plan to ratify the International Convention on the Elimination of All Forms of Racial Discrimination", - "values": [ - "4 - General action" - ] - }, - { - "text": "Increase its efforts to address violence against women and children as an urgent priority. This includes fully implementing the Family Protection Act and providing necessary resourcing to ensure that vulnerable women and children have access to both safe dwellings and mechanisms of justice", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Do more to prohibit persistent forms of discrimination, such as issues of discrimination in inheritance rights, and to strengthen the principle of equality for women, particularly at top levels of political party leadership ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Continue increasing and consolidating the successful social programmes developed to date, essential in the fight to reduce poverty and social exclusion, on the basis of a fair distribution of wealth that will enable the realization of the highest possible welfare for its people ", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Continue with the de facto moratorium on the death penalty", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Implement measures under the rule of law chapter of the Reform Agenda as developed in the European Union High Level Accession Dialogue, to ensure that law enforcement agencies and the judiciary can work independently, without being politically influenced", - "values": [ - "4 - General action" - ] - }, - { - "text": "Consider ratifying the Convention against Torture in a timely manner.", - "values": [ - "3 - Considering action" - ] - }, - { - "text": "Concerning the deprivation of liberty of minors, develop and prioritize alternative measures allowing the reintegration of the child into the society and only deprive minors of their liberty as a last resort ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Cooperate with human rights protection mechanisms", - "values": [ - "4 - General action" - ] - }, - { - "text": "Adopt national legislation, especially in Northern Ireland, on domestic violence protection, that ensures all cases of domestic violence are thoroughly investigated and that perpetrators are prosecuted", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Take the necessary measures in order for all the population to have access to food", - "values": [ - "4 - General action" - ] - }, - { - "text": "Strengthen existing law and practice to counteract trafficking in human beings for sexual and labour exploitation, particularly of young women", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "In order to address the problems and constraints, the GON has identified various activities as key national priorities and commitments, particularly: institutionalizing the rule of law, bringing the on-going peace process to a meaningful conclusion, framing a new constitution, carrying out a democratic, federal, inclusive and progressive state restructuring, rehabilitation and integration of Maoist combatants, achieving wider economic growth to expedite the process of socio-economic transformation, and balanced and inclusive development, making necessary legal reforms and effective implementation of relevant laws, effective implementation of human rights action plan, and other national action plans, including on CEDAW and on the rights of PWDs, formulation and implementation of action plan on the ILO Convention 169, institutional strengthening of national human rights institutions, support for judicial reforms and law enforcement agencies. Similarly, capacity building on treaty body reporting, carrying out further measures to end impunity in any form, providing transitional justice, ending caste-based discrimination in all forms, effective implementation of ICERD, ending GBV, national monitoring of status of implementation of human rights treaty obligations, improvement in prisons and detention facilities, and enhanced human rights education to law enforcement agencies, armed and police forces are also the key priorities and commitments. Commitments also include continued constructive engagement with UN, human rights mechanisms and international community and close collaboration with the civil society.", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Guarantee freedom of expression for the entire population, especially journalists and human rights defenders, in the run up of the next presidential elections ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Extend a standing invitation to the special procedures", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Abolish the death penalty for those under 18 years", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Make a wide array of family planning methods, such as a comprehensive range of modern and affordable contraceptives, more widely available", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Promote training and human rights education for public officials", - "values": [ - "4 - General action" - ] - }, - { - "text": "Strengthen human rights education by providing special programmes for law enforcement officials and the judiciary ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Strengthen and share with countries of the region the Government's policies and strategies to combat organized crime at the regional level, and continue regional workshops to share experience for the transfer of knowledge in systems of public security and criminal justice", - "values": [ - "1 - Minimal action" - ] - }, - { - "text": "Ensure that the implementation of its legislation in the field of media respects the independence and pluralism of the media, by, inter alia, applying the decision of the Constitutional Tribunal of 13 December 2016, which aims at restoring the competences of the National Broadcasting Council", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Strengthen efforts to combat violence against women, including by ensuring that rape within marriage, defined as being when one of the spouses does not consent, is a criminal offence", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Ensure independent investigations of all cases of violence and discrimination against ethnic and religious minorities", - "values": [ - "4 - General action" - ] - }, - { - "text": "Apply for membership of the Voluntary Principles on Security and Human Rights, which facilitates the relations between companies of the extractive sector and civil society groups with regard to the prevention of human rights violations", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "That the minority communities be included in the process of constitution-making and the formulation of the Electoral Code, in order to take into account their wishes and aspirations ", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Continue efforts to enable all households, schools and health centres to have access to safe drinking water and sanitation", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Follow up on the infrastructure of safe houses for abused women and make sure the legal framework is widely implemented and reaches women\u2019s reality", - "values": [ - "4 - General action" - ] - }, - { - "text": "Establish an inter-institution mechanism to provide follow-up to the recommendations by the UPR and other international mechanisms, to coordinate the presentation of reports to treaty bodies and to study Andorra's accession to the treaties to which it is not yet a party", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Develop strategies to address the causes and consequences of violence against Aboriginal women and girls ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Accept outstanding visit requests by special procedures, and consider extending a standing invitation to regional and international bodies for human rights protection", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Maintain a long-standing de facto moratorium on the death penalty, with a view to its abolition", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Investigate and prevent impunity in cases of human rights violations committed by law enforcement officials, throughout the national territory", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Revise the proposed amendments to the Danish Aliens Act with respect to unaccompanied children seeking asylum ", - "values": [ - "3 - Considering action" - ] - }, - { - "text": "Further strengthen the promotion and protection of the rights of women", - "values": [ - "4 - General action" - ] - }, - { - "text": "Continue the approach of cooperation, mutual respect and non-politicization of human rights issues", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Continue to provide health care services, focusing particularly on maternal and child health in the remote and rural areas ", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Implement the recommendations of the United Nations Special Rapporteur on torture and meaningfully investigate all allegations of torture", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Continue to take concrete measures towards substantial improvement in the field of criminal justice, especially education on human rights law as well as enhancement of ability for criminal investigation.", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Take steps to effectively prevent child labour and protect children from exploitation, especially from work in hazardous labour conditions", - "values": [ - "4 - General action" - ] - }, - { - "text": "Take steps to ratify and implement ICCPR", - "values": [ - "4 - General action" - ] - }, - { - "text": "Further properly accommodate refugees in the country with the further support of international bodies and donors", - "values": [ - "4 - General action" - ] - }, - { - "text": "Maintain a relation of cooperation with the universal system of promotion and protection of human rights", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Increase efforts to reduce poverty and address existing gender gaps, including political participation, to combat violence against women and to promote equal remuneration in the workplace", - "values": [ - "4 - General action" - ] - }, - { - "text": "Establish immediately a process to review all draft legislation, before it is adopted, so as to ensure compliance with Afghanistan's international obligations", - "values": [ - "4 - General action" - ] - }, - { - "text": "Explicitly prohibit any form of corporal punishment in the family and continue developing awareness-raising campaigns and education for parents and for the public in general ", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Take necessary measures to guarantee the rights to peaceful assembly and association in conformity with the law and the international standards ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Recommended ratifying OP-CAT and setting up an independent national mechanism for oversight in places of detention", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Adopt an inter-federal plan to combat racism, racial discrimination, xenophobia and related intolerance", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Ratify the International Convention on the Protection of the Rights of All Migrant Workers and Members of Their Families (ICRMW) ", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Strengthen training on human rights for non-governmental organizations", - "values": [ - "4 - General action" - ] - }, - { - "text": "Continue to address the needs of children, including providing them with a family environment, and fulfil other rights to the maximum of ability ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Fully implement the outcomes of the 2017 political dialogue, particularly measures to improve health and social protection, gender equality, education, training and job creation", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Adopt the necessary measures to abolish the death penalty", - "values": [ - "4 - General action" - ] - }, - { - "text": "Consider lifting reservations on a number of articles of the International Covenant on Civil and Political Rights (ICCPR), the International Convention on the Elimination of All Forms of Racial Discrimination (ICERD), the Convention on the Elimination of All Forms of Discrimination against Women (CEDAW) and the Convention against Torture (CAT) ", - "values": [ - "3 - Considering action" - ] - }, - { - "text": "Abolish child marriage by having a minimum age of marriage at 18", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Prosecute, directly or through the international justice system, all the perpetrators of serious violations of human rights", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Request the international community, led by the major industrialized economies, to help promote and protect human rights in Vanuatu by reducing greenhouse gas emissions to safe levels that are consistent with full enjoyment of human rights, and by funding adaptation measures to help it cope with those changes that are already taking place.", - "values": [ - "1 - Minimal action" - ] - }, - { - "text": "Penalize the ill-treatment of children, and adopt measures to investigate and punish the situations of vulnerability with regard to women and girls with disabilities", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "The Government of Chad is committed to continuing to sign or ratify international norms while at the same time ensuring that those it has already ratified may be incorporated into domestic law.", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Approve the Right to Information Bill and National Media Policy and decriminalize defamation in accordance with international standards ", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Consider definitely abolishing the death penalty in its domestic legislation", - "values": [ - "3 - Considering action" - ] - }, - { - "text": "Continue to prioritize gender equality and consider the incorporation of international best practices in policies and legislation relating to the employment of women and combating violence against women", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Cease ungrounded arrests and detentions, as well as the excessive use of force, torture, intimidation and harassment, interference and anti-protest discrimination", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Develop programmes to effectively improve access to health services, employment and housing for Roma persons", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Further enhance institutions and infrastructure for human rights, policies and measures toward enhancing the social inclusion, gender equality and non-discrimination, favourable conditions for vulnerable groups of women, children, indigenous people, migrants and refugees", - "values": [ - "4 - General action" - ] - }, - { - "text": "Continue its efforts to fight the various forms of violence against girls, boys and adolescents and the worst forms of labour and sexual exploitation for commercial purposes, through the implementation of the second national action plan 2012-2014 ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Continue to promote economic and social development, and to improve educational and medical infrastructure, so that the people can equally enjoy the benefits of development ", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Consider acceding to other relevant human rights instruments", - "values": [ - "3 - Considering action" - ] - }, - { - "text": "Eliminate restrictions on the activities of human rights NGOs.", - "values": [ - "4 - General action" - ] - }, - { - "text": "Morocco informed the Working Group of its plan to submit a progressive report in two years in which it will mention the level of progress in the implementation of recommendations it accepted.", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "A national moratorium on the death penalty is introduced with a view to completely abolish the penalty ", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Immediately release all journalists detained for their professional activities, both those arrested recently and those jailed earlier, such as Mr. Nega and Ms. Alemu ", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Deal with the influx of illegal migrants, taking a fair and humane approach, and treat these immigrants and asylum seekers, particularly the most vulnerable persons -- children and pregnant women -- in the most proper manner, especially by providing them with the medical and psychological assistance that they deserve and need.", - "values": [ - "4 - General action" - ] - }, - { - "text": "Develop and implement a comprehensive and interdisciplinary action plan aimed at combating violence against women, in consultation with victims and women organizations, and based on the recommendations made by the United Nations and the Inter-American human rights system ", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Standardize anti-trafficking responses across the UK insofar as possible given the devolution of law enforcement powers, and appoint a rapporteur in each devolved authority to make critical assessments and improve the UK's overall anti-trafficking response ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Move forward in the implementation of its law known as from recognition to empowerment: a government strategy for minorities, with the aim of promoting and protecting the rights of national minorities", - "values": [ - "4 - General action" - ] - }, - { - "text": "Abolish the death penalty or, otherwise, establish a moratorium", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "To this end, it plans to move ahead in making human rights a cross-cutting concern in the activity of all national institutions by incorporating it in national development plans and by allocating adequate funds for this purpose. Similarly, efforts will be made to establish human rights indicators that make it possible to collect readily compared institutional information and to evaluate improvements in effective protection. At the same time, work is under way to establish an inter-institutional human rights commission that would take an active part in drawing up national reports for the treaty bodies and the universal periodic review mechanism. The commission would also be responsible for disseminating, and ensuring implementation of, the recommendations of these bodies and other human rights mechanisms.", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Ratify and implement the Convention on the Rights of Persons with Disabilities", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Continue efforts to implement the aims of the 2020 Development Plan ", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Ratify promptly the Convention against Torture and Other Cruel, Inhuman or Degrading Treatment or Punishment", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Review and amend its migration policy and legislation according to international human rights standards that seek to eliminate discriminatory policies ", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Establish a moratorium in view of abolishing the death penalty", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Eliminate provisions that favour discriminatory practices against persons based on their sexual orientation and gender identity", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Take the necessary steps to implement the "Agenda for Prosperity" in an effective and timely manner", - "values": [ - "4 - General action" - ] - }, - { - "text": "Provide equal access to education for all children regardless of their social and legal status", - "values": [ - "4 - General action" - ] - }, - { - "text": "Intensify its efforts to eliminate all forms of discrimination against women, inter alia, by advocating and promoting women's empowerment, and through capacity-building, gender-sensitivity training, and public awareness-raising activities ", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Establish a regulatory framework for monitoring the activities of multinational companies operating in the country to ensure rights to development", - "values": [ - "4 - General action" - ] - }, - { - "text": "Strengthen initiatives aimed at intercultural and inter-religious dialogue that promote mutual understanding between different communities, and adopt projects that contribute to integration", - "values": [ - "4 - General action" - ] - }, - { - "text": "Continue to implement the national programme to eradicate the legacy of slavery adopted in March 2014 and continue raising awareness against all forms of slavery", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Strengthen its efforts to address discrimination relating to sexual orientation and gender identity, ensure that all allegations of human rights violations against lesbian, gay, bisexual, transgender and intersex persons are investigated and that effective remedies are made available to victims", - "values": [ - "4 - General action" - ] - }, - { - "text": "Strengthen its ongoing measures to eradicate poverty ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Ensure continuous schooling of children following the decision on placement in alternative care", - "values": [ - "4 - General action" - ] - }, - { - "text": "Cease immediately all human rights violations in the occupied Arab territories and implement all relevant United Nations resolutions", - "values": [ - "4 - General action" - ] - }, - { - "text": "Strengthen plans and programmes for crime prevention and rehabilitation ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Strengthen oversight mechanisms to ensure that the National Civilian Police, in carrying out its activities, fully respects human rights and the rule of law", - "values": [ - "4 - General action" - ] - }, - { - "text": "Expedite its efforts to establish the National Human Rights Institution, in line with the Paris Principles and with full participation of the civil society", - "values": [ - "4 - General action" - ] - }, - { - "text": "Sign and ratify the Second Optional Protocol to the International Covenant on Civil and Political Rights, to definitively abolish the death penalty in the country", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Introduce legislation to make marital rape illegal in all circumstances", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Abolish the death penalty and sign and ratify the Second Optional Protocol to ICCPR", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Strengthen efforts to prevent and combat all forms of discrimination and violence against women and children and other vulnerable groups, by adopting comprehensive legislation and launching awareness-raising campaigns. Ensure that women victims of violence receive appropriate help and perpetrators are brought to justice", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Address the violation of women's rights, domestic violence and the use of child labour", - "values": [ - "4 - General action" - ] - }, - { - "text": "Recommended that provisions of the law on the work of foreign journalists be extended to Chinese journalists", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Consider the ratification of CPED and the International Convention on the Protection of the Rights of All Migrant Workers and Members of Their Families (ICRMW) ", - "values": [ - "3 - Considering action" - ] - }, - { - "text": "Continue its programmes for the promotion of socioeconomic development, with a particular focus on the country\u2019s rights-based approach to food security targeting the most vulnerable groups", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Continue to take measures to tackle the influence of illegal groups, including FARC, ELN and new and reforming armed paramilitary groups such as the Aguilas Negras, and do so while conforming to international humanitarian law.", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Continue public awareness campaigns on domestic violence and increase the penalties for this crime", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Amend its legislation so as to include prohibition of corporal punishment", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Prioritize universal basic education for the benefit of all Sierra Leonean children", - "values": [ - "4 - General action" - ] - }, - { - "text": "Address expeditiously the reported recruitment of child soldiers by the rebel groups in accordance with international human rights standards ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Make the necessary legislative amendments to allow all children born in Lebanon to be entitled to the legal recognition through their birth registration", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Protect children and adolescents who are working and are obliged to work, through implementation of real and effective policies that consider their family situation, taking into account the Convention on the Rights of the Child", - "values": [ - "4 - General action" - ] - }, - { - "text": "Continue fighting against slave labour, in particular in the textile sector", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Prioritize the implementation of the recent legal reforms to eliminate discriminatory provisions against women in compliance with CEDAW ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Strengthen domestic mechanisms to prevent illegal detention in the office premises of law enforcement agencies by introducing in the criminal legislation penalties for misconduct/illegal conduct, including the use of violence", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Accede to the Convention Against Torture and Other Cruel, Inhuman or Degrading Treatment or Punishment", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Put an end to any discrimination against same-sex sexual activity between consenting adults, in particular by revising any discriminatory legislation, and adopt measures to promote tolerance in this regard.", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Ratify both the ICCPR and the ICESCR without restrictions and issue a standing invitation to the Special Rapporteurs to visit the country, especially those on human rights defenders, freedom of expression and independence of judges and lawyers", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Restrain detention of asylum seekers to exceptional cases, always seeking the judicial review of these detentions, in accordance with human rights international law", - "values": [ - "4 - General action" - ] - }, - { - "text": "Speed up the ratification process for the Convention on the Rights of Persons with Disabilities and the Optional Protocol to the Convention against Torture and Other Cruel, Inhuman or Degrading Treatment or Punishment, as well as the integration of the provisions of the Rome Statute of the International Criminal Court into its national legislation", - "values": [ - "4 - General action" - ] - }, - { - "text": "Continue efforts to defend the identity, cultural heritage preservation, promotion of creativity, artistic and literary production and art appreciation ", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Adopt measures to strengthen the legal framework with the aim of eliminating all forms of discrimination against minority groups in society, based on ethnicity, gender, caste or any other ground", - "values": [ - "4 - General action" - ] - }, - { - "text": "Expedite the process of establishing a fully functioning Independent National Human Rights Institution that is fully compliant with the Paris Principles by the end of 2017", - "values": [ - "4 - General action" - ] - }, - { - "text": "Increase investment in rural development so as to continue reducing poverty", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Revisions to the National Security Act, which allows for civil and criminal immunity for security forces in relation to serious human rights violations and abuses committed in their official capacity, and those responsible for serious human rights violations and abuses be held to account ", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Create an environment that supports inclusive dialogue, instituting legal reforms to promote respect for human rights and fundamental freedoms", - "values": [ - "4 - General action" - ] - }, - { - "text": "The Maldives rejects this [100.6] recommendation. Notwithstanding, the Maldives is committed to maintaining a moratorium on the death penalty as its recent vote at the UN General Assembly demonstrates.", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Look into ways to effectively ensure that the principle of the best interests of the child will be a primary consideration and hence form the basis for and guide all related processes and decisions, especially in asylum cases involving children ", - "values": [ - "3 - Considering action" - ] - }, - { - "text": "Establish an independent national human rights commission in compliance with the Paris Principles.", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Adopt a law on the general prohibition of torture based on a comprehensive definition of torture in conformity with the Convention against Torture and providing for adequate assistance to victims as well as for victims' access to redress and compensation", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Consider adopting measures that would ensure that any law-regulations aimed at controlling irregular migration should not deny nor prevent migrants from accessing fundamental human rights, including access to education, health, care and effective redress for human rights violations", - "values": [ - "3 - Considering action" - ] - }, - { - "text": "Adopt further measures to ensure protection of the human rights of children leaving care in particular through the provision of education, health and psycho-social support ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Step up its efforts to establish a national human rights institution that is compliant to the Paris Principles", - "values": [ - "4 - General action" - ] - }, - { - "text": "Revise existing job schemes to ensure access to a wider spectrum of work for people with disabilities than provided for under current legislation, to comply fully with the Convention on the Rights of Persons with Disabilities", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Amend the Press and Publications Law to allow for open channels of public communication in print and online media and for greater access to public information in order for citizens to participate more meaningfully in the public sphere", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Promote literacy, especially in rural areas, and focus these efforts on women and girls", - "values": [ - "4 - General action" - ] - }, - { - "text": "Continue efforts to bridge inequalities in employment on account of nationality", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Consider incorporating the Standard Minimum Rules for the Treatment of Prisoners and the United Nations Rules for the Treatment of Women Prisoners and Non-custodial Measures for Women Offenders (the Bangkok Rules) into its national legislation and government policies as appropriate", - "values": [ - "3 - Considering action" - ] - }, - { - "text": "Strengthen efforts to broaden access to education in accordance with the revised Education for All National Policy and increase allocations to the education sector", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Continue its efforts towards improving prison conditions in the country", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Accelerate procedures at the Ministry of Labour to complete implementing regulations to facilitate the employment of Palestinians and open access to employment in all liberal professions", - "values": [ - "4 - General action" - ] - }, - { - "text": "Provide the Zimbabwe Human Rights Commission with adequate financial and technical capacity and take concrete steps to ensure its independence, transparency and impartiality ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Fully align its national legislation with the Rome Statute, including by incorporating provisions to cooperate promptly and fully with ICC and to investigate and prosecute genocide, crimes against humanity and war crimes effectively before its national courts ", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Continue the fight against trafficking in human beings by implementing a comprehensive program to combat these practices and support the victims", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Take immediate steps to ensure the full implementation of the recently formulated National Plan of Action for the eradication of female genital mutilation from Yemen", - "values": [ - "4 - General action" - ] - }, - { - "text": "Establish detention facilities for juvenile detainees ", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Continue efforts to intensify the investigation and prosecution of racial hatred and related violence through criminal legal proceedings and other measures. ", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Continue and intensify cooperation with the international community in order to ensure access of international human rights and humanitarian actors and monitoring mechanisms to Abkhazia, Georgia, and Tskhinvali region/South Ossetia, Georgia, to monitor, report and address the human rights situation of internally displaced persons", - "values": [ - "4 - General action" - ] - }, - { - "text": "Consider adopting and implementing law on the independent functioning and organization of the National Council in order to reflect changes already made to the Constitution in 2002", - "values": [ - "3 - Considering action" - ] - }, - { - "text": "Implement measures to recognize and protect human rights defenders, including those defending the rights of the lesbian, gay, bisexual, transsexual and intersex population", - "values": [ - "4 - General action" - ] - }, - { - "text": "Extend standing invitations to all special procedures of the Human Rights Council ", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "To promote and protect mass media pluralism by including in relevant legislation the principle of incompatibility of holding elected or government office with ownership and control of the mass media", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Elaborate and implement an action plan for human rights education", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Withdraw the criminal laws sanctioning homosexuality and take action to combat violence based on sexual orientation and gender identity", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Take specific and effective measures to ensure migrant workers\u2019 access to basic education and health care, and their protection against ill-treatment by providing judicial and administrative remedy", - "values": [ - "4 - General action" - ] - }, - { - "text": "Sign, ratify and implement into its national legislation key human rights treaties, such as the two Optional Protocols to ICCPR", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Continue improving living and working conditions of foreign workers ", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Consider establishing shelters for victims of domestic violence and reinforce efforts to prevent and combat child abuses, including measures to assist in recovery and reintegration ", - "values": [ - "3 - Considering action" - ] - }, - { - "text": "Impose a moratorium on all executions and, eventually, abolish the death penalty and in this regard, ratify ICPPR and its second optional protocol ", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Provide the National Human Rights Commission with sufficient financial resources to carry out its activities more effectively", - "values": [ - "3 - Considering action" - ] - }, - { - "text": "Investigate all allegations of police brutality and torture and prosecute all security force officials accused of harsh treatment ", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Such a legal framework [establishing a National Human Rights Institution] will provide for the prosecution of human rights violations in national courts", - "values": [ - "4 - General action" - ] - }, - { - "text": "Apply homogenous human rights standards in the different territories that form the kingdom of the Netherlands, especially in the Antilles, as recommended by CESCR in 2010 ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Take additional steps to reduce infant mortality ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Reinforce existing non-discrimination legislation and take all necessary measures to prevent discrimination on the grounds of sexual orientation ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Ratify the Rome Statute of the ICC and fully align its legislation with all obligations under the Rome Statute, including incorporating the Rome Statute definition of crimes and general principles, as well as adopting provisions enabling cooperation with the Court", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "That Abdulhadi Al Khawaja be transferred to the Danish authorities for medical treatment, in line with the agreement reached on March 14th", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Accede to the International Covenant on Civil and Political Rights and the International Covenant on Economic, Social and Cultural Rights ", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Protect the group of persons with albinism to prevent murders and mutilations through the starting of an education and awareness-raising campaign to prevent their stigmatization, guarantee their safety and facilitate access to education and employment", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Implement effectively the action plan launched by the Committee to Eradicate Sexual Exploitation of Children and Adolescents in 2007.", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Incorporate the Sustainable Development Goals in development policies and programmes", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Revise the Charities and Societies Proclamation and Anti-Terrorism Proclamation to create a framework conducive to the work of NGOs and other civil society organizations, and ensure the protection of journalists and political opponents from all forms of repression ", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Fully implement relevant laws to promote the rights of indigenous people and to ensure their safety in realizing their economic and civil rights", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Abolish all legislation resulting in discrimination, prosecution and punishment of people based on their sexual orientation or gender identity", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Implement the guidance and the recommendations of the National Conference on Human Rights, which took place from 9 to 10 December 2012 ", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Establish a National Human Rights Institution", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Draw up and implement specific measures to avoid gender-based segregation in employment, including through equal pay for equal work for men and women", - "values": [ - "4 - General action" - ] - }, - { - "text": "Consider signing and ratifying CEDAW and consider especially article 15 and 16 thereof which relate to the equal right of women to administer property and the equal rights of both spouses in respect of the ownership, acquisition, management, enjoyment and disposition of property.", - "values": [ - "3 - Considering action" - ] - }, - { - "text": "Developing programmes aimed at promoting the awareness of police on human rights values and principles", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Consider setting up a global action plan to combat violence against women and children, with particular attention to forced marriages, and the growing phenomenon of street children ", - "values": [ - "3 - Considering action" - ] - }, - { - "text": "Adopt the reforms and legislative measures indicated to be able to ratify the remaining conventions and protocols", - "values": [ - "3 - Considering action" - ] - }, - { - "text": "End the practice of indefinite national service and allow substitute service for conscientious objectors", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Hold a public debate on the death penalty, in which all aspects of the issue should be highlighted in a holistic manner", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Provide cantons with unified standards for housing and living conditions for asylum seekers and refugees", - "values": [ - "4 - General action" - ] - }, - { - "text": "Ensure that as part of the national disarmament, demobilization and targeted reintegration programme, special attention is given to the rights of women and children, particularly to prevent repeated recruitment by armed groups and to ensure that they can enjoy their fundamental rights ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Ensure by law the effective protection of women against gender-based violence, including domestic violence, sexual harassment, and marital rape", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Facilitate the development of small businesses for both Italian citizens and migrants and establish programmes to encourage the economic and social integration of refugees", - "values": [ - "4 - General action" - ] - }, - { - "text": "Take further measures in the fight against domestic violence, human trafficking and poverty, especially concerning women and children ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Ensure respect for European and international conventions for the protection of human rights within the framework of treatment of migrants who are affected by the deportation decisions ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Prohibit female genital mutilation and take further steps to prevent and address the occurrence of female genital mutilation.", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Take further steps to end the use of excessive force in policing in all jurisdictions", - "values": [ - "4 - General action" - ] - }, - { - "text": "Scale up efforts to provide high-quality goods and services, especially in the areas of education and health", - "values": [ - "4 - General action" - ] - }, - { - "text": "Continue and strengthen relations with OHCHR ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Ratify the International Convention for the Protection of All Persons from Enforced Disappearance in a timely fashion ", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Enact legislation to prohibit discrimination on the basis of gender, including with regard to land rights ", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Abolish the death penalty and modify the penitentiary regulations to strictly limit solitary confinement", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Continue taking steps to actively prevent and combat violence against women and domestic violence", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Proceed to review of the cases of all persons deprived of their liberty who have been sentenced to death for crimes committed when they were younger than 18, as well as to prohibit the application of the death penalty to persons under the age of 18 in national legislation ", - "values": [ - "3 - Considering action" - ] - }, - { - "text": "Continue efforts to promote and protect the rights of migrants, particularly those of female domestic workers ", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Adopt and implement legislation to eliminate discrimination against persons with disabilities", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Continue efforts to provide appropriate assistance to victims of human trafficking and utilize the OHCHR recommended Principles and Guidelines on Human Rights and Human Trafficking as a reference ", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Reinforce concrete measures aimed at combating trafficking in women and young girls, and assistance to victims ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Make all efforts to accelerate an inclusive political process that returns Mali to a constitutional State", - "values": [ - "4 - General action" - ] - }, - { - "text": "Continue its increasing investment in education", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Redouble its efforts in the area of poverty eradication and income disparity, including by allocating adequate human and financial resources and providing support and material assistance to the marginalized and disadvantage groups in the country", - "values": [ - "4 - General action" - ] - }, - { - "text": "Take measures for deinstitutionalization of child-care institutions and development of alternative, family-type services for deprived children", - "values": [ - "4 - General action" - ] - }, - { - "text": "Ratify the 1954 Convention relating to the Status of Stateless Persons and 1961 Convention on the Reduction of Statelessness", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Investigate allegations of torture and ill-treatment against persons in places of detention and bring those responsible to justice", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Respond sincerely to the recommendations of the United Nations mechanisms (Special Rapporteur on violence against women, the Committee on the Elimination of Discrimination against Women and the Committee against Torture) on the issue of comfort women during the Second World War.", - "values": [ - "4 - General action" - ] - }, - { - "text": "Continue its active participation within the Open Government Partnership Initiative, the main objective of which is to ensure open, transparent and accountable governance", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Give consideration to improving its domestic legislation and existing programs aimed at increasing access to education ", - "values": [ - "3 - Considering action" - ] - }, - { - "text": "Take the appropriate legislative measures in order to incorporate into national law the provisions of the Convention against Torture and its Optional Protocol for the purpose of ensuring its effective implementation", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Continue the efforts in providing free education and health care and combating female genital mutilation and HIV-AIDS ", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Continue to work to harmonize its legal framework with the international instruments to which it is a State party", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Redouble efforts to implement the National Plan of Action on the Management of Asylum and Migration ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Carry on with ensuring the access to health services for children and indigenous people ", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Continue its endeavours to contribute to improving the criminal justice system in the country ", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Adopt measures to eliminate all forms of violence and discrimination against women ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Re-establish the moratorium on executions and consider the abolition of the death penalty, as requested by the European Union.", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Continue policies and programmes aimed at reducing inequalities that still exist between the Aboriginal, recent immigrants and other Canadians", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Promote initiatives to raise awareness among host communities on the rights of refugees, asylum seekers and unaccompanied children", - "values": [ - "4 - General action" - ] - }, - { - "text": "Ratify the second Optional Protocol to the International Covenant on Civil and Political Rights (ICCPR-OP 2), aiming at the abolition of the death penalty", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Criminalize acts of torture in the penal code and set up a national preventive mechanism in line with the Optional Protocol to the Convention against Torture", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Strengthen and apply poverty reduction strategies to ensure disadvantaged communities have access to adequate shelter, food, health care and education ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Put in place programmes to fight against poverty and job insecurity, through strengthening the economic empowerment of women", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Further its efforts to effectively prohibit torture and other ill-treatment, and to ensure the independence of the judiciary and respect for due process ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Design and implement educational programmes for the gradual inclusion of students with disabilities in the education system ", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Take necessary measures to ensure the right of indigenous peoples affected by planned economic or development projects to be adequately and fairly consulted, in accordance with the commitments undertaken by ratifying ILO Convention No. 169 concerning Indigenous and Tribal Peoples", - "values": [ - "4 - General action" - ] - }, - { - "text": "Provide protection for the family unit as the natural and fundamental unit of society", - "values": [ - "4 - General action" - ] - }, - { - "text": "Review the benefits of the basic pension scheme for older persons with a view to ensuring that older persons have enough to cover their living costs, in full consultation with their representatives", - "values": [ - "4 - General action" - ] - }, - { - "text": "Enact comprehensive legislation that fully guarantees the application of the principle of non-discrimination and to ensure the full enjoyment of all human rights by every member of society", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Strengthen the criminal procedural code and the code of practice of lawyers and ensure that they are in line with international standards", - "values": [ - "4 - General action" - ] - }, - { - "text": "Adopt national legislation that grants legal effect to the protection of refugees and the respect for the principle of non-refoulement in accordance with the relevant international instruments", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Strengthen the Roma Council, and to ensure that the Council is consulted in connection with any process that has an impact on Roma rights", - "values": [ - "4 - General action" - ] - }, - { - "text": "Adopt all necessary measures to ensure that journalists have the freedom to practise their profession in line with existing international standards.", - "values": [ - "4 - General action" - ] - }, - { - "text": "Continue to pursue policies with the view of better promoting participation of women in the political life", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "In the coming years, the Government will focus on dealing with child mortality rate, especially the newborns, increasing the effectiveness of vaccination, National Nutrition Program, National Program on Reproductive Health and the National Program on HIV/AIDS.", - "values": [ - "4 - General action" - ] - }, - { - "text": "Comply with its international obligations, in particular the Fourth Geneva Convention, and comply with the resolutions on human rights of the United Nations", - "values": [ - "4 - General action" - ] - }, - { - "text": "Ensure the prevention and full investigation of hate crimes and violent attacks targeting ethnic and religious minorities, including migrants, refugees and asylum seekers", - "values": [ - "4 - General action" - ] - }, - { - "text": "Take legal and practical steps to protect women and children from domestic violence, for example by prohibiting corporal punishment of children and marital rape", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Increase access to electricity, basic sanitation and running water", - "values": [ - "4 - General action" - ] - }, - { - "text": "Continue its policy to ensure equality in the area of education, and particularly targeting Roma children", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Ratify the Council of Europe Convention on Preventing and Combating Violence against Women and Domestic Violence (Istanbul Convention)", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Continue its efforts to promote gender equality by focusing on the implementation of the National Action Programme for Equal Treatment", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "The Portuguese Government is strongly committed to ensuring that all children who live in the Portuguese territory enjoy the right to quality education. ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Adopt and implement appropriate, efficient measures ensuring that all allegations of sexual violence against women are properly registered, prosecuted and their perpetrators duly convicted, including a provision of victims' access to redress and social support services ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Continue its efforts to guarantee equality between women and men, and ensure the empowerment of women ", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Amend domestic legislation to conform to the principles of Convention of the Rights of the Child.", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Fully investigate all allegations of torture or ill-treatment and, if appropriate, bring the perpetrators of such acts to justice, and consider bringing the Criminal Code into compliance with the Convention against Torture ", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Continue to work collaboratively with the private sector and relevant stakeholders in protecting the labour rights", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Establish an effective mechanism to investigate, sanction and repair in case of abuse of power on the part of the police forces and penitentiary forces, to safeguard personal information of victims and those making a complain, and establish administrative sanctions and penal sanctions for the perpetrators", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Guarantee adequate consultation and full participation of indigenous peoples in all legislative and administrative measures affecting them, protect indigenous people including indigenous human rights defenders from threats and attacks, and protect their land rights, in particular by strengthening protection programmers, completing pending land demarcation processes and providing adequate funding and capacity to the Indian National Foundation (FUNAI)", - "values": [ - "4 - General action" - ] - }, - { - "text": "Intensify measures to prevent and combat harmful traditional practices, including female genital mutilation, which occur especially in rural areas, and to investigate such acts in order to prosecute and punish the perpetrators", - "values": [ - "4 - General action" - ] - }, - { - "text": "Consolidate the national human rights infrastructure ", - "values": [ - "4 - General action" - ] - }, - { - "text": "To elect a new head for the Office of the Ombudsman.", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Ensure that Family Support Units are located at police stations tasked with investigating and providing support to victims of sexual violence, and are adequately staffed and resourced so as to be able to carry out their mandate ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Strengthen efforts to uphold the Act on the Foreign Workers Employment in order to ensure the effective protection of the rights of foreign workers in the country.", - "values": [ - "4 - General action" - ] - }, - { - "text": "Develop additional measures to provide assistance to victims of sexual abuse and sexual violence", - "values": [ - "4 - General action" - ] - }, - { - "text": "Review the Daiyo Kangoku system of detention and, according to the International Covenant on Civil and Political Rights (ICCPR), ensure that all persons deprived of liberty are brought to justice without delay", - "values": [ - "3 - Considering action" - ] - }, - { - "text": "Make necessary efforts to investigate crimes under international law or human rights violations that have occurred, protecting victims of such violations and guaranteeing them access to justice and full and effective reparations", - "values": [ - "4 - General action" - ] - }, - { - "text": "Continue to strengthen social policies and programmes targeted to the more needy sectors of the population, to improve their quality of life and ability to enter the labour market ", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Do more in providing the enabling environment for the institution responsible for the promotion and protection of human rights and by particularly establishing a national human rights commission", - "values": [ - "4 - General action" - ] - }, - { - "text": "Better identify and assist trafficking victims and implement systematic training for government officials on human trafficking crimes, gender-based violence, and gender equality", - "values": [ - "4 - General action" - ] - }, - { - "text": "Work towards concluding the ongoing exercise to create a national human rights monitoring and follow-up system", - "values": [ - "4 - General action" - ] - }, - { - "text": "Take legal and administrative measures to improve the treatment of asylum seekers in order to establish safeguards against their arbitrary detention", - "values": [ - "4 - General action" - ] - }, - { - "text": "Sign the Optional Protocol to the Convention on the Elimination of All Forms of Discrimination against Women, thus ensuring effective protection of women against the different types of violence exercised towards them", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Take into account the concerns of Tunisian civil society in the context of the future law on national reconciliation", - "values": [ - "4 - General action" - ] - }, - { - "text": "Reform the juvenile justice system in conformity with the international standards and increase the protection of children involved in penal proceedings", - "values": [ - "4 - General action" - ] - }, - { - "text": "Continue its efforts leading to national reconciliation", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Draft a national human rights plan which includes public policies and strategies reaching a comprehensive range of human rights ", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Guarantee respect for freedom of religion by everybody, during the transitional period and beyond, according to the well-known tradition and culture prevailing in the country ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Promote equality between sexes", - "values": [ - "4 - General action" - ] - }, - { - "text": "Continue its efforts to ensure greater promotion of the rights of women in particular those of girls in the areas of education and health care.", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Take steps to expand the provision of legal assistance to victims of domestic violence beyond metropolitan areas ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Finalize the A-status accreditation and ensure functioning of the National Human Rights Commission", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Undertake further efforts to eliminate child labour and to protect juvenile workers ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Incorporate in its legislation and take positive measures to implement the rights contained in the Convention on the Rights of Persons with Disabilities", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Ratify the Optional Protocol to the Convention on the Elimination of All Forms of Discrimination against Women and take effective legal and practical steps to combat gender-based violence, stereotypes and promote gender equality", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Undertake investigations in cases where there are credible allegations of human rights violations, implement court orders and establish transitional justice mechanisms ", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Enhance cooperation with the United Nations and other specialized agencies with a view to fully implementing national action plans and programmes in the field of human rights, workers' rights, human resource development, education and health, inter alia ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Revise the 2009 Anti-Terrorism Proclamation and the 2008 Mass Media Proclamation, bringing them into line with international human rights standards ", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Take efficient, comprehensive measures to combat female genital mutilation, including through appropriate public oriented awareness-raising campaigns ", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Implement its ambitions in the promotion and protection of human rights with the technical support of the international community.", - "values": [ - "4 - General action" - ] - }, - { - "text": "Undertake new actions to put an end to violence against women and girls and do its utmost to eliminate discriminatory practices ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Sri Lanka has commenced work on drafting a constitutional charter on human rights that will strengthen the human rights protection framework in the country and bring Sri Lanka's constitutional human rights guarantees in line with its international obligations. The process includes engaging in consultations with civil society. The draft charter and the process of consultation will foster a national discourse on human rights.", - "values": [ - "1 - Minimal action" - ] - }, - { - "text": "Improve overall conditions of detention and ensure that all detainees are afforded, in practice, access to a lawyer and an independent medical examination, and are informed about their rights at the moment they are deprived of their liberty ", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Intensify actions to curb racial violence and establish an independent monitoring mechanism to carry out investigations of complaints of poor police performance.", - "values": [ - "4 - General action" - ] - }, - { - "text": "Introduce measures that will prevent discrimination against Roma and make further efforts to combat all forms of intolerance and racism", - "values": [ - "4 - General action" - ] - }, - { - "text": "Improve access to education and health-care services of vulnerable people, including women and children from low and middle income families", - "values": [ - "4 - General action" - ] - }, - { - "text": "Ensure effective investigation of human rights violations against journalists and human rights defenders and prosecution of the individuals responsible ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Ensure, without any discrimination, the rights of people with disabilities and others belonging to vulnerable groups, such as women and children ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Ensure effective implementation and monitoring of the Responsible Parenthood and Reproductive Health Act, in line with international obligations regarding sexual and reproductive health and rights, by increasing access to modern contraceptives", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Allocate adequate budget to fully implement its plan of action for the protection and promotion of the rights of women", - "values": [ - "4 - General action" - ] - }, - { - "text": "Continue advancing the situation of persons with disabilities by providing access to education, health, jobs and public spaces as well as protecting from all forms of violence and discrimination", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Consider developing a system to follow up on international recommendations, including universal periodic review recommendations", - "values": [ - "3 - Considering action" - ] - }, - { - "text": "Accelerate the process of establishing a Truth and Reconciliation Commission", - "values": [ - "4 - General action" - ] - }, - { - "text": "Encourage the participation of indigenous peoples in decisions that affect them through the enforcement of the regulations on prior consultation adopted in November 2013 ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Ensure the strengthening of institutional and operational capacities of the Judiciary", - "values": [ - "4 - General action" - ] - }, - { - "text": "Continue working to ensure coordination between various relevant national mechanisms for further integration of human rights principles", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Pursue to further its politics regarding human rights education and training for law enforcement officials in the field of combating torture and ill-treatment", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Create an effective abuse detection system in the educational, health and alternative care systems, in order to discourage the use of violence and to provide assistance to victimised children", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Strengthen measures to promote the right to equality and non-discrimination against any citizen and/or community, whatever their origin, age and identity", - "values": [ - "4 - General action" - ] - }, - { - "text": "Continue to strengthen cooperation with the High Commissioner for Refugees as well as donors and non-governmental organizations in order to provide necessary humanitarian aid and fundamental rights' protection to the displaced people hosted by the Kingdom of Thailand ", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Continue the ratification process of the main international human rights instruments", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Find a positive solution to the institutional crisis, that Belgium has been going through for several months, through a dialogue between the various communities of the Belgian society ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Continue its process of demarcation of indigenous lands", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Establish an independent mechanism for the investigation of allegations of torture and ill-treatment in line with the requirements of the recently ratified the Optional Protocol to the Convention against Torture and Other Cruel, Inhuman or Degrading Treatment or Punishment", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Reform comprehensively the prison system and respect the United Nations Standard Minimum Rules for the Treatment of Prisoners. It is fundamental that the authorities guarantee the rights of persons deprived of their liberty, from the moment of their detention", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "In cooperation with relevant international organizations, continue to enhance the rule of law to ensure a safe and stable living environment for the people", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Introduce a law allowing for family reunions as well as a law granting refugees the right to work", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Set up a Truth and Reconciliation Commission and a Commission of Inquiry on Disappearances which are fully in accordance with international standards ", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Step up efforts to combat impunity and carry out rapid, impartial, effective and in depth inquiries for all past or present allegations of human rights violations committed by security forces and ensure that such violations do not remain unpunished", - "values": [ - "4 - General action" - ] - }, - { - "text": "Partner with appropriate international agencies to strengthen national capacities to collect, process, and analyse relevant human rights statistical information concerning police misconduct and prison conditions", - "values": [ - "4 - General action" - ] - }, - { - "text": "Enact domestic legislation to incorporate the Convention against Torture into Lebanese law", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Promote the rights of the Armenian minority in line with the recommendations of the Committee on the Elimination of Racial Discrimination, the Human Rights Committee and the Special Rapporteur on freedom of religion or belief, as well as Council of Europe Advisory Committee of the Framework Convention for the Protection of National Minorities with close consultations with representatives of the Armenian community and the Armenian Apostolic Church ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Ensure an immediate restoration of the rule of law and protection of its civilian population, especially vulnerable groups such as women and children", - "values": [ - "4 - General action" - ] - }, - { - "text": "Eliminate gun violence", - "values": [ - "4 - General action" - ] - }, - { - "text": "Explicitly prohibit corporal punishment, under any circumstances, for boys and girls", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "In the context of its efforts to achieve social development, Qatar is committed to maintaining the family as a strong and cohesive unit and to providing the family with support, welfare and protection. ", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Take steps to reduce the harassment, intimidation and death threats against defenders of human rights, and to publicly recognize the legitimacy and importance of the role of these defenders", - "values": [ - "4 - General action" - ] - }, - { - "text": "Commit to actions that strengthen the capacity of the Afghan Independent Human Rights Commission (AIHRC) including providing adequate funding and reviewing the Law on the Structure, Duties and Mandate of the AIHRC to ensure its alignment with Paris Principles ", - "values": [ - "4 - General action" - ] - }, - { - "text": "The need for police officers to undergo compulsory training in the field of human rights", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Ratify the Optional Protocol to the Convention against Torture and establish a national preventive mechanism.", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Take early action to withdraw the remaining three reservations regarding the Convention on the Rights of the Child", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Continue efforts to provide comprehensive primary education", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Implement measures to prevent, punish and eradicate all forms of violence against women, devoting special attention to the situation of women in communities of refugees and internally displaced persons, and also completely eradicate the practice of female genital mutilation ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Adopt legislative measures to prevent and combat intimidation, repression or violence against human rights defenders, journalists and civil society organizations", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Continue the implementation of the national strategy regarding the Roma and the National Action Plan relating to the decade for the inclusion of the Roma ", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Cooperate further with the task force against trafficking in human beings of the Council of the Baltic Sea States", - "values": [ - "4 - General action" - ] - }, - { - "text": "Put in place an NHRI in accordance with the Paris Principles", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Improve domestic legislation towards a genuine gender equality in the working place", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Review the Law on Associations and the Protest law, in order to comply with the Constitution, as well as international law, and immediately release persons detained or imprisoned for exercising their freedom of expression through participating in peaceful protests", - "values": [ - "3 - Considering action" - ] - }, - { - "text": "Lift all restrictions regarding the use of Internet by reforming its legislation ", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Take measures to increase the attendance rates of Roma students and their retention in school by, inter alia, providing sufficient comprehensive measures to cover education- related expenses and raising awareness of the importance of education among Roma families", - "values": [ - "4 - General action" - ] - }, - { - "text": "Provide training to stakeholders involved in the administration and delivery of justice, top prosecute trafficking in persons pursuant to the new regulating framework, article 113 of the Criminal Code, especially to ensure investigation of all allegations of trafficking in persons, including those against law enforcement officials and to implement mechanisms for compensation and rehabilitation of victims", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Establish a national institution for the monitoring of children and the collection and analysis of the data concerning children", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Incorporate domestic violence into its criminal laws ", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Continue actions aimed at the eradication of acts of racism and other forms of discrimination and intolerance", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Continue reviewing policies for effective implementation of women and child rights", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Continue its efforts to combat all forms of discrimination particularly religious discrimination and protecting of religious minority groups", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Sign and ratify the ICRMW ", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Continue exerting more efforts to develop law combating trafficking in persons and smuggling of migrants", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "As a source and destination country for men and women who are subjected to forced labour and sex trafficking, improve efforts to prosecute, convict and sentence trafficking offenders ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Increase its efforts to reform FARDC, and bring the perpetrators of atrocious crimes committed against the wider population from within the military to justice. ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Give its full support to ensure that the Constituent Assembly successfully fulfils its mandate of drafting a new Constitution by May 2011, giving due consideration to the views of the different groups that compose Nepalese society", - "values": [ - "4 - General action" - ] - }, - { - "text": "Adopt legislative measures to make domestic violence a crime, understanding all forms of violence in the home, including threats, sexual harassment and sexual abuse, and ensure that perpetrators are brought to justice and that victims receive care, including in the rural areas", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Fully cooperate with the Special Rapporteur on the situation of human rights in Myanmar ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Adopt a clear time-bound plan to become party to CAT as a key step towards demonstrating genuine commitment to protecting human rights", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Amend the National Security Law, in particular its article 7, to ensure that it is not used arbitrarily or to harass and restrict the rights to freedom of expression, opinion and association, and release all individuals unjustly charged and sentenced to prison terms solely for the legitimate exercise of their rights to freedom of expression and association", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Take all necessary measures to prevent xenophobic activities of far right groups and to combat prejudices and negative stereotyping, in the context of eliminating all kinds of discrimination against the immigrants ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Strengthen measures to protect women victims of rape during conflict, by integrating these measures in legislation", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Further improve relations and cooperation between law enforcement officials and the Roma and other minority groups and ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Widely disseminate the main human rights texts, particularly by providing courses on human rights in school curricula to make all social categories aware of their rights.", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Conduct an in-depth independent investigation into the disappearances of public figures that occurred in 1999 and 2000 with a view to bringing the authors of those crimes to justice", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Seek the assistance of the international community so that it can build its capacities and can fulfill its obligation regarding the promotion and protection of its people's human rights, in particular in economic, social and cultural terms, on the basis of its national priorities", - "values": [ - "1 - Minimal action" - ] - }, - { - "text": "Consider the possibility of adopting domestic legislation to implement its international commitments and establish procedures for refugees ", - "values": [ - "3 - Considering action" - ] - }, - { - "text": "Continue hosting refugees coming from the Horn of Africa, in particular from Somalia, with the concrete and timely support of the international community, particularly Arab countries.", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Take steps to ratify ICCPR, ICESCR, CEDAW and CAT", - "values": [ - "4 - General action" - ] - }, - { - "text": "Strengthen its efforts in the area of human rights education, training of public officials and on the participation of civil society in the promotion and protection of human rights, including through international and regional cooperation.", - "values": [ - "4 - General action" - ] - }, - { - "text": "Consider establishing an official moratorium on the use of death penalty with a view to abolishing it, as provided by General Assembly resolutions 62-149 and 63-168", - "values": [ - "3 - Considering action" - ] - }, - { - "text": "Further expand and promote human rights education and training programmes", - "values": [ - "4 - General action" - ] - }, - { - "text": "Collect data and indicators on violent acts against transsexual women", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Complete the ratification of the Convention on the Rights of Persons with Disabilities (CRPD) ", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Continue its efforts in ensuring gender equality and to diversify academic and vocational choices for women and men and take further measures to encourage women and men to choose non-traditional fields of education and careers", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Guarantee all citizens of China, including its minority communities and religions, the exercise of religious freedom, freedom of belief and the freedom of worshipping in private", - "values": [ - "4 - General action" - ] - }, - { - "text": "Establish a national human rights institution in full compliance with the Paris Principles", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Develop and implement a National Action Plan for Human Rights to further ensure systematic and comprehensive approach for the promotion and protection of human rights, with the full engagement of civil society", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Review its legislation to ensure respect of the reproductive rights of women and girls ", - "values": [ - "3 - Considering action" - ] - }, - { - "text": "Urgently take appropriate measures to address high infant and child mortality rates", - "values": [ - "4 - General action" - ] - }, - { - "text": "Continue its efforts to adopt the law on Human Trafficking and Protection of Victims", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Institute outreach by police and law enforcement to LGBT persons and communities to increase reporting of hate crimes ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Hold accountable officials of all ranks responsible for human rights violations in the Papua provinces ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Ensure that the Human Rights Ombudsman is an independent institution which functions in full compliance with the Paris Principles", - "values": [ - "4 - General action" - ] - }, - { - "text": "On the issue of trafficking, measures had been taken to ensure the adequate care of victims in the context of judicial proceedings. Also, the number of specialized trainings had increased for staff in the police, the prosecutors' offices, the judiciary, the migration office and the health and education ministries. The delegation committed itself to the prompt adoption of the regulation implementing Law 79/2011, to the provision of a budget to the National Commission against Trafficking in Persons and to the building of a shelter for victims of human trafficking, in accordance with international standards", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Incorporate in its legislation the 1996 Supreme Court judgement that corporal punishment was not a legitimate method of discipline in the home, and criminalize corporal punishment in all cases, including in education", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Lobby for and enact adequate legal penalties for violations of the laws prohibiting the worst forms of child labour and forced labour and provide sufficient resources and training to enforce the law", - "values": [ - "4 - General action" - ] - }, - { - "text": "Consider giving voting rights to long-term non-citizen residents in local elections and setting up adequate mechanisms enabling non-citizens to be consulted and to participate actively in the political decision-making process at the local level.", - "values": [ - "3 - Considering action" - ] - }, - { - "text": "Enact specific legislation to criminalize all forms of violence against women ", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Give priority to implementing recommendations connected to economic, social and cultural rights, whose implementation was delayed because of the political crisis", - "values": [ - "4 - General action" - ] - }, - { - "text": "To examine the possibility of modifying declarations made by the Government regarding articles 13 and 14, paragraph 5, of the International Covenant on Civil and Political Rights.", - "values": [ - "3 - Considering action" - ] - }, - { - "text": "Continue its effort in eliminating discrimination against LGBT starting with the review of its related legislation", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Develop and implement a strategy aiming at improving as soon as possible the conditions of detention for prisoners", - "values": [ - "4 - General action" - ] - }, - { - "text": "Continue to implement its national strategy to reduce poverty, especially in rural areas, and to enhance the general standard of living of its citizens \n\n", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Establish mechanisms to ensure easy and effective access to birth registration of all children and the effective and free provision of birth certificates", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Adopt legislation prohibiting the dissemination of ideas based on racial and ethnic hatred and incitement to racial discrimination and violence and ensure full respect for freedom of religion or belief and the human rights of the persons belonging to ethnic and religious minorities, in line with the international human rights law ", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Take all measures necessary to restore an independent judiciary, as well as to prosecute and sanction, in line with international standards, armed forces and security staff members who are guilty of grave crimes and human rights violations ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Repeal the constitutional amendment that transforms the National Intelligence and Security Service into an entity with powers to arrest and detain, and to launch, without delay, independent investigations into the human rights violations committed by this Service", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Actively pursue further reforms to ensure judicial independence", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Strengthen relevant measures in order to improve further gender equality ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Continue implementing decisive measures to prevent and eliminate cases of sexual exploitation of women and children", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "In cooperation with OHCHR, strengthen the education of public order forces and the army with regard to their obligation to respect human rights and international humanitarian law, as well as to fulfil the United Nations basic principles on the use of force and firearms by law enforcement officials", - "values": [ - "4 - General action" - ] - }, - { - "text": "Strengthen efforts in the elimination of child labour, including enforcing legislation on the minimum age of work", - "values": [ - "4 - General action" - ] - }, - { - "text": "Continue the efforts aiming at the reinforcement of the protection of the rights of foreign workers ", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Adopt effective measures and an anti-discrimination Act to address racial problems ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Continue to develop education, universalize basic education and reduce the illiteracy rate", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Continue ongoing efforts aimed at strengthening protection and respect for all human rights of indigenous people and people of African descent without discrimination", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Adopt targets of 40 per cent representation of women on public and private sector boards ", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Share its experiences in teachers and professors' training, and in adults' education ", - "values": [ - "1 - Minimal action" - ] - }, - { - "text": "Apply the recommendations that, on the new immigration policy, have made several treaty bodies, particularly the request for ratification of the Convention on the Protection of the Rights of All Migrant Workers and Members of Their Families", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Improve cooperation with the United Nations Treaty Bodies, by agreeing on the timeliness for submitting overdue reports and consider the need for external assistance to that end", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Guarantee and widen humanitarian access", - "values": [ - "4 - General action" - ] - }, - { - "text": "Continue its effort to promote equality between men and women ", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Undertake policies aiming at combating all forms of discrimination, notably those targeting indigenous peoples ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Complete the procedure for establishing the independent Higher Commission for Human Rights.", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Submit its overdue reports and follow up responses to United Nations treaty bodies as soon as possible ", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Cooperate with civil society in the monitoring of the implementation of its anti-corruption legislation at all levels ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Reinforce the impartiality of the judiciary promoting an appointment system by competitive examinations at all levels of the judiciary", - "values": [ - "4 - General action" - ] - }, - { - "text": "Continue working in the improvement of prison conditions", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Strengthen the status of women, protect motherhood and provide support to the family, which is the nucleus of society ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Establish an accessible mechanism to receive complaints of domestic violence which provides protection, psychological counselling, social support and allows for the integration of the victims into the labour market ", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Submit its overdue reports to the relevant treaty bodies", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Review the legislation having discriminatory consequences on women", - "values": [ - "3 - Considering action" - ] - }, - { - "text": "Provide invitations to other United Nations Special Rapporteurs, in particular those responsible for human rights defenders, freedom of opinion and expression, freedom of religion or belief as soon as possible, and the independence of judges and lawyers to visit Cuba", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Intensify efforts to improve the delivery of health services", - "values": [ - "4 - General action" - ] - }, - { - "text": "Abolish customary laws and practices that establish child marriage and also the payment of a bride price", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Ensure the application of the transitional process in accordance with the N'Djaména Declaration in order to restore the rule of law in the country", - "values": [ - "4 - General action" - ] - }, - { - "text": "Harmonize the civil status between men and women, particularly regarding the rights of inheritance and legal capacity to use, enjoy, and own, property, and set up policies aimed at eliminating the pay gap between men and women", - "values": [ - "4 - General action" - ] - }, - { - "text": "Continue its efforts to improve the livelihood of refugees and IDPs by taking measures aimed at further improving the health-care system in refugee settlements, ensuring that all refugees attain the highest level of access to health services", - "values": [ - "4 - General action" - ] - }, - { - "text": "Continue and intensify the efforts to eliminate discrimination against migrants and their children and to guarantee their equal opportunities in education and access to work ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Release all persons who are detained solely for having exercised their freedom of expression and to revoke all legal provisions penalizing the right of freedom of expression ", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "In keeping with domestic law and Bahrain's pledges under the international human rights treaties, the periodic review will be used as a further opportunity to promote the use of existing means of redress and explore any concrete measures that may be helpful in this regard.", - "values": [ - "4 - General action" - ] - }, - { - "text": "Strengthen the protection framework for children's rights, particularly through measures to prevent child abuse, exploitation and violence against children", - "values": [ - "4 - General action" - ] - }, - { - "text": "Protect migrant workers in their rights, improve their living and working conditions", - "values": [ - "4 - General action" - ] - }, - { - "text": "Establish a national human rights institution in accordance with the Paris Principles, and take measures to provide the necessary resources for its good functioning", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Strengthen efforts to eliminate illiteracy, particularly in rural areas ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Adopt a formal moratorium and commute all death sentences to prison terms", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Ensure that the executed persons' bodies are handed over for private burial", - "values": [ - "4 - General action" - ] - }, - { - "text": "Continue to adopt further measures to guarantee the independence and professionalization of the judicial power", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Create more human rights curricula for the different stages of education, including university education.", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Continue vigorously to address issues around gender inequality and racial/ethnic discrimination", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Implement the obligations undertaken on signing the Convention against Torture and Other Cruel, Inhuman and Degrading Treatment or Punishment ", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Improve the protection of refugees, migrants and asylum seekers and improve their living conditions and access to social security and guarantee other human rights", - "values": [ - "4 - General action" - ] - }, - { - "text": "Ensure the compatibility of national legislation with international human rights standards in order to guarantee freedom of assembly and association", - "values": [ - "4 - General action" - ] - }, - { - "text": "Develop alternative solutions to mandatory detention of asylum seekers, particularly in the case of children", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Establish a comprehensive and institutionalized national social security policy", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Continue efforts to ensure that human rights education is effectively included into the primary and secondary education curriculum", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Create a National Commission for Human Rights and Citizenship (CNDHC) in accordance with the Paris Principles", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Disband the bodies set up by the Haute Autorit\u00c3\u00a9 de la Transition to carry out arrests, detentions and investigations of crimes", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Implement the national strategy to prevent female genital mutilation (2008-2018) and the national strategy to end child marriage ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Continue its efforts to overcome constraints and difficulties in order to implement all human rights and fundamental freedoms for everyone.", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Eliminate discrimination against women ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Expand the scope of the Labour Code to include all migrant workers ", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Repeal the provisions of the Penal Code that criminalize sex between consenting people of the same sex and incitement to sexual relations between consenting people of the same sex", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Work towards the implementation of the recommendations of the Committee on the Rights of the Child.", - "values": [ - "4 - General action" - ] - }, - { - "text": "Implement concrete measures consistent with the Covenant on Civil and Political Rights, to ensure the participation of indigenous peoples in the decisions affecting their natural environment, measures of subsistence, culture and spiritual practices ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Conduct a national program or campaign to raise awareness about and encourage compliance with the new laws, along with similar campaigns directed towards judges and other operators of the law ", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "In line with the recommendations made by CERD, adopt and implement immediately legislation prohibiting any form of racial discrimination and ensure humanitarian treatment for migrants and persons of non-Irish origin, including through adequate training for judicial and police personnel", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Consider decriminalizing homosexuality, in particular relations between consenting adults", - "values": [ - "3 - Considering action" - ] - }, - { - "text": "Ensure that journalists, opinion makers, members of the opposition and human rights defenders can express their criticisms and opinions freely and peacefully, and put an end to acts of harassment against opponents of the coup d'etat and against judges, in view of the separation of powers", - "values": [ - "4 - General action" - ] - }, - { - "text": "Seek the required technical assistance in order to meet its various human rights obligations", - "values": [ - "1 - Minimal action" - ] - }, - { - "text": "Review the compliance of its anti-terrorism legislation allowing for incommunicado detention with international human rights standards and consider abolishing the incommunicado regime", - "values": [ - "3 - Considering action" - ] - }, - { - "text": "Adopt and start to implement the National Human Rights Education Plan within the next four years", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Continue to prioritize poverty reduction in protection and promotion of economic, social and cultural rights of its people, strengthen the construction of its health system, increase the coverage of service level of the medical care, and put further attention to combating AIDS", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Continue its measures in the field of social security and health", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Raise awareness in public regarding the limits and responsibility of freedom of expression, in accordance with international standards urging to take concrete legal and practical measures to combat incitement to religious hatred and intolerance", - "values": [ - "4 - General action" - ] - }, - { - "text": "In line with the recommendations from the first universal periodic review accepted by Palau, establish an independent national human rights institution to lead, coordinate, develop capacities and help strengthen implementation of human rights throughout the country, and provide the Ombudsman Office with sufficient financial and human resources to strengthen its independence and capabilities", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Continue implementing its various national programmes and policies, in particular the National Programme for the Protection and Promotion of Human Rights 2013-2016 and the action plan for removing barriers to achieving equal rights in the area of integration 2013-2015", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Continue its work to advance equality for women and to promote their full participation in all fields ", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "End the occupation of the Occupied Palestinian Territories and other Arab territories occupied since 1967, including Jerusalem and the Syrian Golan.", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Provide access to the means of communication to all groups of society so that they may exercise fully their right to freedom of expression ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Accede to ICCPR-OP2 with the view to abolish the death penalty ", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Analyse the possibility of subscribing to CAT ", - "values": [ - "3 - Considering action" - ] - }, - { - "text": "Enhance promotion and protection of the rights of the child, including measures against sexual and labour exploitation", - "values": [ - "4 - General action" - ] - }, - { - "text": "Decentralize the International Commission against Impunity in Guatemala to all regions", - "values": [ - "4 - General action" - ] - }, - { - "text": "Remove all obstacles faced by women in accessing justice, and ensure that decisions are not contrary to the law and do not result in extrajudicial punishments ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Adopt alternative measures to detention aimed at reducing the overpopulation in prisons and provide alternative measures to detention for pregnant women and mothers with young children", - "values": [ - "4 - General action" - ] - }, - { - "text": "Continue its efforts to eliminate gender-based violence and enhance public security", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Continue ensuring the promotion and protection of the human rights of children in the country, including through the establishment of appropriate programmes and measures aimed at combating the spread of a culture of violence among Maldivian youth and children ", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Ensure the principle of equality and non-discrimination while guaranteeing the enjoyment of the right to health ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Intensify efforts for the security of human rights defenders and reinforce cooperation with all stakeholders, in particular, the states and the military police. ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Take further measures to ensure that the police and justice system deals diligently with gender-based violence and that the country promotes better training for police officers in responding to victims of sexual violence ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Continue the ongoing process to operationalize the National Human Rights Commission", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Fully involve civil society and other relevant stakeholders in the expeditious establishment of a human rights institution based on the Paris Principles and ensure its functional and financial independence", - "values": [ - "4 - General action" - ] - }, - { - "text": "Adopt a national strategy for the advancement of women, and end prevailing cultural stereotypes of the role of women in all fields", - "values": [ - "4 - General action" - ] - }, - { - "text": "Take measures to guarantee effective access for women victims of gender-based violence to justice, reparation and to rehabilitation ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Take steps to ensure that the work of the Extraordinary Chambers, including the involvement of international judges working alongside Cambodian judges, is harnessed to contribute to the strengthening of the Cambodian judiciary ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Accede to the Convention on the Elimination of All Forms of Discrimination against Women and actively fight against violence against women", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Adopt a comprehensive anti-discrimination law that will protect the rights of all migrants", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Consider ratifying the optional protocols to the Convention on the Rights of the Child, which, inter alia, guard against the involvement of children in armed conflict (OP-CRC-AC) and guard against the sale of children, child prostitution and child pornography (OP-CRC-SC), which Fiji signed in 2005", - "values": [ - "3 - Considering action" - ] - }, - { - "text": "Adopt a national action plan on business and human rights, to implement the Guiding Principles on Business and Human Rights, and to subscribe to the Guidelines for Multinational Enterprises of the Organization for Economic Cooperation and Development", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Strengthen Malawi's cooperation with the international community, in particular specialized agencies and programmes of the United Nations system, with a view to building capacity and obtaining technical assistance in crucial areas such as poverty eradication, education, health care and social security ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Ensure that the draft Law on Preventing and Combatting Discrimination is adopted without delay", - "values": [ - "4 - General action" - ] - }, - { - "text": "Continue promoting political and legislative developments in this regard regarding measures taken to reduce overcrowding in prisons and to implement the master plan, as this is a theme that affects countries in several regions in the world ", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Enhance support services for victims of domestic and gender-based violence, and take measures to raise awareness among law enforcement officials, lawyers and judges of the serious nature of domestic and gender-based violence ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Continue its work to strengthen the rule of law and its efforts within the peace process between the Government and the FARC ", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Undertake the necessary steps to strengthen its response to domestic violence as recommended by the Committee on Economic, Social and Cultural Rights", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Elaborate a timeframe for visits by the UN Special Procedures who have requested to visit Algeria, and extend invitations accordingly", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Sign and ratify the Convention against Torture and Other Cruel, Inhuman or Degrading Treatment or Punishment ", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Undertake a transparent and inclusive process with civil society in the implementation of universal periodic review recommendations", - "values": [ - "4 - General action" - ] - }, - { - "text": "Continue its active engagement with the human rights mechanisms of the United Nations for the protection and promotion of human rights ", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Abide by international human rights law pertaining to migrants, including with regard to detention", - "values": [ - "4 - General action" - ] - }, - { - "text": "Take all measures for the purpose of post-disaster reconstruction and adaptation to climate change, with a human-rights-based approach, and carry out consultations with the concerned local communities, giving special attention to women, children and persons with disabilities in this process ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Continue its efforts to strengthening and combating child trafficking", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Continue efforts to combat hate speech", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Support social integration of women in all spheres of life", - "values": [ - "4 - General action" - ] - }, - { - "text": "Ratify, without limiting reservations, the Convention on the Elimination of All Forms of\nDiscrimination against Women and its Optional Protocol", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Investigate allegations of human rights abuses by the security forces and take measures to eliminate this practice, if required ", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Ratify and fully align its national legislation with the Rome Statute of the ICC, and accede to the Agreement on Privileges and Immunities of the Court", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Continue its efforts for the promotion of human rights", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Adopt more specific measures to prevent the practice of female genital mutilation", - "values": [ - "4 - General action" - ] - }, - { - "text": "Carry out full investigations into alleged acts of brutality in detention, to hold to account those responsible, and to put an immediate end to immunity for members of the police and the military", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Take new, additional measures, to ensure that the military exercises full control over Civilian Armed Forces Geographical Units and the police over Civilian Volunteer Organizations, holding these units accountable for the Philippines' obligations under international human rights law ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Redouble its efforts for the protection of the rights of women, and adopt a comprehensive law on violence against women, so that all acts of domestic violence are investigated and their perpetrators are prosecuted ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Quickly establish an independent and effective police complaints mechanism ", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Ratify both Protocols to the Convention on the Rights of the Child (CRC) (CRC-OP-AC and the Optional Protocol on the sale of children, child prostitution and child pornography, CRC-OP-SC)", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Adopt promptly the bill that brings the definitions of torture and enforced disappearances in line with the human rights international instruments ", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Evaluate the possibility of establishing a legal description of discrimination taking into account international legal standards in this area", - "values": [ - "3 - Considering action" - ] - }, - { - "text": "Promulgate legislation on a moratorium on the death penalty, as referred to in the national report ", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Sign and ratify the Arms Trade Treaty", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Solomon Islands announced that it was extending an open invitation to all mandate holders of the United Nations special procedures to visit the country.", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Conduct a full review of the Anti-Terrorism Proclamation, amending the law as necessary to ensure that it strengthens the rule of law and is applied apolitically and in full compliance with Ethiopia's international human rights obligations ", - "values": [ - "3 - Considering action" - ] - }, - { - "text": "Undertake a thorough review of the 2011 Law on Religious Associations with a view to ensuring its compliance with Kazakhstan's international obligations", - "values": [ - "3 - Considering action" - ] - }, - { - "text": "Step up its efforts to increase enrolment and completion rates for primary and secondary schools, especially for girls", - "values": [ - "4 - General action" - ] - }, - { - "text": "Take measures that guarantee access of IDPs to basic services, so that they can leave the camps ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Continue promoting the participation and empowerment of women in the decision-making process and combat discrimination against their role in the family and society", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Review legislation governing radio, television and communication. ", - "values": [ - "3 - Considering action" - ] - }, - { - "text": "Strengthen legislation and policies on gender equality as well as the prevention and repression of gender-based violence", - "values": [ - "4 - General action" - ] - }, - { - "text": "Take concrete actions to eradicate the use of torture, including through strengthening relevant provisions in national legislation ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Continue its successful efforts in the field of human right education and training ", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Following the universal periodic review process, several measures were currently being taken towards further promoting children's rights through several preliminary means. A draft bill on the establishment of a new youth court had been prepared and was currently under review, and additional issues, such as necessary adaptations to probation officers' reports, were being evaluated", - "values": [ - "4 - General action" - ] - }, - { - "text": "Submit its overdue reports to the relevant treaty body mechanisms", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Amend national legislation to allow Ghanaian nationals residing abroad to vote", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Improve education, training and supervision of prison staff ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Consider ratification of the Geneva Conventions", - "values": [ - "3 - Considering action" - ] - }, - { - "text": "Consider completing the process of ratification of the Convention against Torture and Other Cruel, Inhuman or Degrading Treatment or Punishment", - "values": [ - "3 - Considering action" - ] - }, - { - "text": "Ensure effective participation and access to justice, emphasizing the regional priority granted to the combat of violence against women ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Accomplish the Human Rights Goals", - "values": [ - "4 - General action" - ] - }, - { - "text": "Take more effective measures to strengthen family institution and inculcate good moral values and effective ways to protect and promote the rights of the child", - "values": [ - "4 - General action" - ] - }, - { - "text": "Formally establish a moratorium on executions at the federal level while engaging with retentionist states to achieve a nationwide moratorium with the objective to ultimately abolish the death penalty nationwide", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Ratify the Rome Statute of the International Criminal Court and the Agreement on the Privileges and Immunities of the International Criminal Court ", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Strengthen the justice sector in order to avoid imposing the death penalty on those persons wrongly convicted, and reconsider the use of methods which give raise to cruel suffering when this punishment is applied", - "values": [ - "4 - General action" - ] - }, - { - "text": "Consider ratifying the Optional Protocol to the Convention against Torture and Other Cruel, Inhuman or Degrading Treatment or Punishment (OP-CAT) ", - "values": [ - "3 - Considering action" - ] - }, - { - "text": "Strengthen measures to bridge the wage gap between women and men, including in the private sector ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Finalize the national action plan on education for all and improve the quality of education", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Further endeavours with regard to the smooth and productive activity of the National Human Rights Commission within the country", - "values": [ - "4 - General action" - ] - }, - { - "text": "Institute appropriate reforms to ensure full impartiality of the judiciary and the separation and independence of powers in accordance with international standards ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Undertake further actions to combat discrimination against women and to ensure equality for women on the ground, and in this regard take into account the recommendations of the Committee on the Elimination of Discrimination against Women.", - "values": [ - "4 - General action" - ] - }, - { - "text": "Transfer NGO oversight to a civilian institution and protect freedom of expression", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Continue the actions it has undertaken to overcome the crisis, consolidate the rule of law and fight poverty and unemployment ", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Conduct a study concerning how the education of disabled students can be implemented through mainstream educational settings ", - "values": [ - "3 - Considering action" - ] - }, - { - "text": "Establish independent machinery which can document, investigate and process cases of rape, and facilitate the end of impunity", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Continue strengthening the sensible programs fighting poverty and social inequality", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Continue to adopt legislative and executive measures against gender based violence, with special attention to migrants", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Ratify as soon as possible the CED ", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Activate a negotiating process for a peaceful settlement ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Continue to promote good governance", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Intensify efforts to guarantee equality and non-discrimination in line with its international obligations by developing public human rights awareness programmes and taking concrete steps to advance the rights of women and girls, members of religious minorities, and lesbian, gay, bisexual, transgender and intersex persons and to combat caste-based discrimination, including to: criminalize marital rape, decriminalize consensual same-sex relations, and establish appropriate policies and practices for registering, investigating and prosecuting violence against women, girls and members of religious minorities", - "values": [ - "4 - General action" - ] - }, - { - "text": "Develop a professional code of conduct for judges, and actively support the establishment of an independent bar association ", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Continue its efforts to eradicate absolute poverty \n", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Expand efforts to combat human trafficking and ensure protection for victims", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Introduce human rights education and training into school curriculums, in accordance with article 29 of the Convention on the Rights of the Child", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Take all necessary measures to reduce the proportion of populations suffering from hunger", - "values": [ - "4 - General action" - ] - }, - { - "text": "Establish a moratorium aimed at abolishing the death penalty", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Establish a national human rights institution accredited by the International Coordinating Committee for the promotion and protection of human rights ", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Introduce prompt constitutional and legislative measures ensuring that "popular initiatives" do not violate the human rights of certain individuals or groups", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Continue improving maternal and neonatal health services through interventions at national and provincial levels", - "values": [ - "4 - General action" - ] - }, - { - "text": "Intensify its efforts in raising awareness within communities and providing additional training for the police and the judiciary to ensure that victims of sexual and gender-based violence receive adequate medical support and legal aid", - "values": [ - "4 - General action" - ] - }, - { - "text": "Promptly investigate all allegations of torture, arbitrary detention, extra-judicial and summary executions and punish perpetrators", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Consider intensify measures to protect the rights of ethnic minorities of the country and their self-fulfilment of their cultural specificities", - "values": [ - "3 - Considering action" - ] - }, - { - "text": "Continue and deepen its current health plans, the main objective of which is to facilitate the access of the population to modern and quality health services", - "values": [ - "4 - General action" - ] - }, - { - "text": "Eliminate the provision of the death penalty from the Constitution of the Republika Srpska", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Take further steps to promote the protection of human rights, such as becoming a party in a timely manner to the main international human rights instruments, including, inter alia, the International Covenant on Economic, Social and Cultural Rights and the International Convention on the Elimination of All Forms of Racial Discrimination, and by continuing to work to ensure the conformity of the domestic legal system with international human rights instruments ", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Continue implementing its national policies and programmes outlined, with the aim of further improving the well-being of its people ", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Sign and ratify the core international instruments, including International Convention on the Elimination of All Forms of Racial Discrimination", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Strengthen measures, both in regard to policy and legislation, to combat discrimination and violence against women.", - "values": [ - "4 - General action" - ] - }, - { - "text": "Consider ratifying the International Covenant on Economic, Social and Cultural Rights to strengthen the rights of the citizens of Botswana to economic development", - "values": [ - "3 - Considering action" - ] - }, - { - "text": "Continue efforts aimed at enhancing the welfare of peoples with disabilities, including taking the appropriate steps to ratify the Convention on the Rights of Persons with Disabilities", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Proceed to the ratification of the Optional Protocol to the Convention on the Rights of Persons with Disabilities as soon as possible ", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Continue its efforts to deepen and strengthen human rights in the country", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Ensure that no forced evictions or restrictions on access to adequate housing are imposed on the basis of sexual orientation", - "values": [ - "4 - General action" - ] - }, - { - "text": "Enact appropriate legislation that addresses violence against women, after consultation with relevant stakeholders ", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Stop collaborating with Daesh, the Nusrah Front and other terrorist organizations", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Bring-up French prisons to the level of international standards ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Further work on primary education enrolment", - "values": [ - "4 - General action" - ] - }, - { - "text": "Incorporate the different provisions of the United Nations core human rights conventions, ratified by Denmark, into national law ", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Strengthen its efforts to develop and support educational programmes and technical training for marginalized youth in the country ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Ecuador will promote and disseminate human rights internally, harmonize their domestic legislation vis-à-vis international law, and many other areas. ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Continue its mutually beneficial cooperation with the United Nations human rights mechanism", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Continue efforts towards building comprehensive, binding and effective mechanisms against corporate abuses by businesses headquartered in Switzerland, especially when operating abroad", - "values": [ - "4 - General action" - ] - }, - { - "text": "Repeal national provisions establishing the death penalty and establish an official moratorium on executions with a view to its abolition", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Consider an early release of detainees who are of old age or in fragile health", - "values": [ - "3 - Considering action" - ] - }, - { - "text": "Condemn more vigorously racist and xenophobic speeches made by political leaders and further promote tolerance and diversity ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Implement its legislation to protect whistle-blowers in a transparent, consistent and unbiased manner ", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Take further measures to promote inter-religious dialogue and cultural diversity", - "values": [ - "4 - General action" - ] - }, - { - "text": "Continue its investigations of public servants and political leaders who have links with paramilitary groups.", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Continue increasing the benefits of its social services for the population to obtain a greater efficiency of its excellent social welfare system ", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Continue its efforts to improve treatment of inmates", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Establish a law to criminalize all forms of violence against women", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Ensure the implementation of laws against corporal punishment by undertaking awareness raising campaigns, encouraging the report of cases and ensuring effective investigation and prosecution of perpetrators", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Take measures to safeguard freedom of expression and protect human rights defenders, and effectively investigate allegations of attacks on journalists, media personnel and human rights defenders and prosecute those responsible.", - "values": [ - "4 - General action" - ] - }, - { - "text": "Integrate the abolition of the death penalty in the new Constitution", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Take all measures necessary to ensure full respect for freedom of expression, including freedom of the press, ensuring that no persons are deprived of their liberty solely for having exercised their freedom of expression, their right to peaceful assembly or their right to take part in the Government of their country ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Spare no efforts to constantly evaluate the enforcement of the immigration federal legislation, with a vision of promoting and protecting human rights", - "values": [ - "4 - General action" - ] - }, - { - "text": "Consider revising its law prohibiting people from wearing religious symbols in public schools", - "values": [ - "3 - Considering action" - ] - }, - { - "text": "Stop violating the right to food and using starvation, hunger and malnutrition as a means to ensure its control over the population", - "values": [ - "4 - General action" - ] - }, - { - "text": "Ratify the core international human rights instruments including the Convention against Torture and Other Cruel, Inhuman or Degrading Treatment or Punishment", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Establish an independent national human rights institution, in accordance with the Paris Principles", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Maintain close collaboration with the international system, in order to implement the decree established in 2012 on the rules of general discipline, by which human rights training could be provided to public officials", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Continue to fight firmly against terrorism so as to provide security guarantees to the people of Lebanon to enjoy all human rights", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Continue to ensure the full implementation of legislation on the eradication of the harmful practice of female genital mutilation", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Ensure that laws are fully and consistently enforced to provide adequate protections for members of religious minorities, scheduled castes, and adivasi groups, as well as, women, trafficking victims, and LGBT citizens", - "values": [ - "4 - General action" - ] - }, - { - "text": "Proceed with the adoption of the national action plan on human rights", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Consider strengthening programmes to fight and prevent HIV-AIDS, with special attention to women and children", - "values": [ - "3 - Considering action" - ] - }, - { - "text": "Join more human rights treaties and optional protocols", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Ratify the International Labour Organization Convention No. 169 (1989) concerning Indigenous and Tribal Peoples in Independent Countries in order to ensure greater protection, as it is merited, by the special situation of indigenous and tribal population of the country, and consequently in this vein, comply with the decision of the Inter-American Court of Human Rights regarding their collective titles to property ", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Enact legislation that will effectively protect women from exclusion and violence", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Pursue its efforts in the field of promoting gender equality so that the rights of women are a reality in our Muslim world ", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Take all necessary measures to provide equal access to all public services for all members of minority groups in the country", - "values": [ - "4 - General action" - ] - }, - { - "text": "Step up its efforts to adequately address the issues of gender inequality and gender-based violence through appropriate and concrete institutional, structural, cultural and awareness-raising measures ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Adopt a moratorium on the death penalty and commute capital punishment to alternative penalties", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Continue to actively prevent discrimination of minorities through enacting comprehensive anti-discrimination legislation, including a prohibition on discrimination on grounds of ethnicity, religion, sexual orientation and gender identity", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Facilitate a visit to Fiji by the Special Rapporteur on the independence of judges and lawyers", - "values": [ - "4 - General action" - ] - }, - { - "text": "Speed up the process of implementing the Compulsory Education Law ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Reflect the findings of the new action plan to examine gender-based acts of violence and their prosecution and handling in the judicial system in the next national UPR report", - "values": [ - "4 - General action" - ] - }, - { - "text": "Accede to the two Optional Protocols under the Convention on the Rights of the Child", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Ratify the Protocol to the African Charter on Human and Peoples Rights on the Rights of Women in Africa", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Consider creating a dedicated overarching Parliamentary Committee on Human Rights and Equality", - "values": [ - "3 - Considering action" - ] - }, - { - "text": "Take measures to reduce the high rate of maternal mortality and improve access to maternal health information and services, including ante-natal, delivery and post-natal care", - "values": [ - "4 - General action" - ] - }, - { - "text": "Avail itself of additional funds for HIV/AIDS programmes, thereby encouraging the international community to match the funds in the fight against the HIV/AIDS epidemic", - "values": [ - "1 - Minimal action" - ] - }, - { - "text": "Increase cooperation with OHCHR and the special procedures of the Human Rights Council ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Take the necessary measures to improve the security of journalists and human rights defenders, and carry out independent and credible investigations into the murders of seven journalists and threats against several others that occurred in 2010, and bring to justice the perpetrators of those condemnable acts", - "values": [ - "4 - General action" - ] - }, - { - "text": "Put in place structures to ensure that Government and Parliamentary decision-making processes are transparent and that public legislative hearings take place ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Consider re-acceding to the American Convention on Human Rights ", - "values": [ - "3 - Considering action" - ] - }, - { - "text": "Bolster capacity to oversee working and living conditions of migrant workers by employing more inspectors to oversee implementation of labour laws.", - "values": [ - "4 - General action" - ] - }, - { - "text": "Continue the ratification process of the main international human rights-related instruments, including the Optional Protocol to the Convention against Torture and Other Cruel, Inhuman or Degrading Treatment or Punishment", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Continue the work to enhance freedom of expression through the implementation of the law establishing the National Press Council", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Guarantee to persons belonging to minorities their rights to use their language and practise their religion", - "values": [ - "4 - General action" - ] - }, - { - "text": "Address barriers to the education of women and girls and reduce their dropout rates, especially among girls from ethnic minorities ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Elaborate a strategy for creating more openness and tolerance in the general public for migrants and their rights ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Consider issuing standing invitations to all special procedures and institute measures to ensure women are paid equally as men for the same work", - "values": [ - "3 - Considering action" - ] - }, - { - "text": "Enact laws prohibiting forced and early marriage of girls", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Launch a debate on issues concerning ethnic and cultural diversity aiming at promoting tolerance towards divergent cultural, religious and sexual orientations within the Estonian society", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Remove restrictive limitations on the establishment of political parties or membership therein, and cease the dissolution by law of opposition political societies", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Participate in the Human Rights Council and its mechanisms with a view to preserve the universality of the universal periodic review", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Support the social integration of women in all spheres of life", - "values": [ - "4 - General action" - ] - }, - { - "text": "Continue its efforts in the field of health, despite constraints, with the assistance and cooperation of the international community", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Take further measures to eliminate discrimination and violence against women", - "values": [ - "4 - General action" - ] - }, - { - "text": "Ratify ICCPR-OP 2 to abolish death penalty ", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Conduct a census of the population with disabilities so as to identify the types of disabilities involved, causes, potential levels of intervention including medical care and rehabilitation, education requirements, food and adequate housing appropriate to disabilities, technical aids and prosthesis, among others", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Adopt a law prohibiting racial discrimination, including criminalizing such behaviour", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Issue a standing invitation to all special procedures of the United Nations Human Rights Council ", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Take all measures necessary to contribute to the promotion of tolerance and national cohesion", - "values": [ - "4 - General action" - ] - }, - { - "text": "Ratify the international instruments not yet ratified ", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Consider the possibility of ratifying the International Convention for the Protection of All Persons from Enforced Disappearance, the Optional Protocol to the Convention against Torture and Other Cruel, Inhuman or Degrading Treatment or Punishment, and the Rome Statue of the International Criminal Court ", - "values": [ - "3 - Considering action" - ] - }, - { - "text": "Protect the rights of ethnic minority groups, including Tibetans, Uighurs, and Mongolians, in accordance with China's Constitution and international human rights commitments ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Accelerate the process of revising the legal framework regulating prisons in order to harmonize it with international standards", - "values": [ - "4 - General action" - ] - }, - { - "text": "Seek from the Office of the High Commissioner for Human Rights, the human rights protection system in general and the international community, technical and financial assistance that it deems necessary for carrying forward measures and programmes to eradicate domestic and sexual violence", - "values": [ - "1 - Minimal action" - ] - }, - { - "text": "Intensify efforts to conform the National Human Rights Commission to the Paris Principles and foresee it accreditation by the ICC ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Take the measures necessary to amend the Penal Code in such a way that the use of a child between 16 and 18 for prostitution is prohibited", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Promote gender equality, increase women's participation in all aspects of society and implement the National Policy for the Advancement of Women ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Implement the United Nations Rules for the Treatment of Women Prisoners and Non-Custodial Measures for Women Offenders, otherwise known as the "Bangkok Rules" ", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Enact specific laws to prohibit and punish all forms of trafficking in persons, to increase the capacity of law enforcement officials to identify and protect victims, and to systematically collect data on trafficking offenses and prosecution efforts", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Côte d'Ivoire intends to honour its commitment to submit periodic reports to the treaty bodies. For this purpose, it will transmit a formal request for technical assistance to strengthen the capacity of national officials responsible for preparing reports for the treaty bodies.", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Explore strategies to combat child labour", - "values": [ - "3 - Considering action" - ] - }, - { - "text": "Take all measures to eliminate restrictions to the mobility of migrant workers", - "values": [ - "4 - General action" - ] - }, - { - "text": "Undertake all the necessary legislative and Constitutional reforms to abolish the death penalty and accede to the Second Optional Protocol to the International Covenant on Civil and Political Rights", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Should ratify CMW ", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Take appropriate legislative measures to ensure that no person can be subject to criminal sanctions for same-sex activity between consenting adults.", - "values": [ - "4 - General action" - ] - }, - { - "text": "Protect and support the family as the natural and fundamental group unit of society and in doing so maintain the definition of marriage as the right of men and women of marriageable age to marry and to found a family, in keeping with article 23 of the International Covenant on Civil and Political Rights", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Take concrete measures to address the absence of adequate infrastructure for the reception, registration and housing of refugees and asylum seekers", - "values": [ - "4 - General action" - ] - }, - { - "text": "Ratify, before the next review cycle, the International Convention for the Protection of All Persons from Enforced Disappearance", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Cooperate with all treaty bodies, including by submitting its initial report, which has been overdue since 2003, to the Committee against Torture", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Ratify the Convention on the Rights of Persons with Disabilities and the Convention on Torture and Other Cruel, Inhuman or Degrading Punishment or Treatment ", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Stop all settlement activities.", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Ensure, in law and in practice, that all citizens are given fair trials based on the rule of law, as accepted in the 2010 UPR examination", - "values": [ - "4 - General action" - ] - }, - { - "text": "Ratify the Rome Statute of the International Criminal Court, the International Covenant on Economic, Social and Cultural Rights and its Optional Protocol, as well as the First Optional Protocol to the International Covenant on Civil and Political Rights", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Strengthen measures to ensure the participation of minorities in all spheres of national life", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Further improve the accessibility and quality of education, and increase the enrolment rate of vulnerable children, including girl children and children of ethnic minorities", - "values": [ - "4 - General action" - ] - }, - { - "text": "Take steps in order to sign and ratify the International Covenant on Civil and Political Rights and the International Covenant on Economic, Social and Cultural Rights", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Expand coverage and access to services that prevent the transmission of HIV from mother to child.", - "values": [ - "4 - General action" - ] - }, - { - "text": "Continue exploring possibilities to extend its international commitments by ratifying the Optional Protocols to ICCPR ", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Accede to CAT ", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Continue its efforts towards the effective implementation of the Domestic Violence Prevention and Protection Act, including through awareness-raising and changing mindsets and attitudes", - "values": [ - "4 - General action" - ] - }, - { - "text": "Develop a national human rights action plan, and further promote the development of human rights in the country", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Strengthen measures in the area of transitional justice related to justice, truth, reparations and guarantees, to prevent a repetition ", - "values": [ - "4 - General action" - ] - }, - { - "text": "The delegation of the Lao People's Democratic Republic reiterated the commitment of the Government to maintaining equality, justice and the rule of law.", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Improve the protection of the rights of women and girls, including by effectively addressing gender-based violence, particularly domestic violence, and by advancing programmes and training to counter discrimination with regard to women's employment and financial access", - "values": [ - "4 - General action" - ] - }, - { - "text": "Step up its efforts to ensure adequate access to quality basic health and education services, particularly for those living in isolated rural areas and for vulnerable groups.", - "values": [ - "4 - General action" - ] - }, - { - "text": "Continue to protect the family as the basic social unit ", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Take measures to guarantee the representation of minorities in social and political areas", - "values": [ - "4 - General action" - ] - }, - { - "text": "Ratify the 1967 Protocol relating to the Status of Refugees ", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Consider the establishment of a national mechanism for the correct identification of victims of sexual exploitation, as well as the possibility of including specific measures for minors ", - "values": [ - "3 - Considering action" - ] - }, - { - "text": "Take further steps to combat and prevent domestic violence and ensure that victims have effective access to complaints mechanisms ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Submit its delayed reports to the Committee against Torture.", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Accede to and ratify OPCRC-AC ", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Adopt a new Act on National Minorities in order to precisely stipulate the rights and obligations of persons belonging to national minorities in Lithuania in accordance with its international obligations, notably the Council of Europe's Framework Convention for the Protection of National Minorities", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Introduce criminal liability for trafficking in children, in particular with the purpose of adoption and sale of organs of children", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Continue to introduce effective measures to combat all forms of discrimination, hate speech and hate crime, both online and offline, and ensure that such crimes are effectively investigated", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Adopt a human rights education and training programme for law enforcement officials, in particular on the use of force, with a view to providing alternative methods to address any potentially violent situation proportionally ", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Continue to take active measures to ensure the effective implementation of the 2009 Law Combating Domestic Violence", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Consider incorporating the UN Rules for the Treatment of Women Prisoners and Non-Custodial Measures for Women Offenders, otherwise known as the Bangkok Rules, as part of its work on the treatment of prisoners, in particular the new Prisons Act 2010 ", - "values": [ - "3 - Considering action" - ] - }, - { - "text": "Strengthen programmes to fight against poverty", - "values": [ - "4 - General action" - ] - }, - { - "text": "Ratify the Convention against Torture and Other Cruel, Inhuman or Degrading Treatment or Punishment and its Optional Protocol and the International Covenant on Economic, Social and Cultural Rights by the third universal periodic review at the latest", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Accelerate the process of the adoption of the Code of the Child", - "values": [ - "4 - General action" - ] - }, - { - "text": "Maintain its positive efforts in the current process of reviewing its national laws with a view to bringing them in line with its international human rights obligations", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Continue to refuse to apply any standards or principles that are outside the international principles and standards agreed upon in the field of human rights, including any attempt to impose any foreign values and customs on the Emirati people.", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Take necessary measures to combat poverty among the elderly", - "values": [ - "3 - Considering action" - ] - }, - { - "text": "Improve its policies to protect the rights of women", - "values": [ - "4 - General action" - ] - }, - { - "text": "Continue its efforts to achieve its goals of universal education, gender empowerment and free education", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Sign and ratify the International Convention for the Protection of All Persons from Enforced Disappearance, as well as the Optional Protocol to the Convention against Torture and other Cruel, Inhuman or Degrading Treatment or Punishment ", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Maintain as a high priority, the steps to safeguard the human rights of women and persons with disabilities", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Establish a moratorium on death penalty as a first step towards its total abolition", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Continue its efforts to ratify the International Convention for the Protection of All Persons from Enforced Disappearance, as well as other principal international human rights instruments to which the country has not yet been party ", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Advance in the eradication of forced and early marriages involving boys or girls", - "values": [ - "4 - General action" - ] - }, - { - "text": "Implement obligations under the Optional Protocol to CAT, ensuring the establishment of one or various independent national preventive mechanisms", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Adopt effective measures to bring its national legislation, including customary law, into line with the provisions and principles of the CRC, particularly in the area of child protection and the prevention of corporal punishment, child abuse and child pornography ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Ensure adequate protection and sheltering of women and children in need", - "values": [ - "4 - General action" - ] - }, - { - "text": "Disseminate the results of the UPR and hold periodical comprehensive consultations, including with civil society sectors ", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Establish an immediate moratorium on the death penalty, with a view to its final abolition in the future", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Cooperate with the international human rights mechanisms and humanitarian agencies, specifically by issuing a standing invitation to the special procedures of the Human Rights Council and allowing full and unhindered access to all persons in need of humanitarian assistance ", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Strengthen efforts to eliminate child labour, in particular by addressing the root causes of child economic exploitation through poverty eradication and access to education ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Take appropriate measures to protect vulnerable groups from discrimination, racial profiling and hate crimes, and to combat racism and xenophobia ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Provide additional resources to the National Commission for Refugees in order to facilitate their reintegration and better organize their legal protection", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Take concrete measures to guarantee access to justice as well as fair and timely public trials by allocating sufficient resources to the judiciary and by improving the administration of justice", - "values": [ - "4 - General action" - ] - }, - { - "text": "Ratify the Rome Statute of the ICC to be a front runner again within ASEAN ", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Maintain the momentum to protect the rights of women as well as to empower women in the area of economic development through various legislative measures and institutional mechanisms", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Establish relevant mechanisms, procedures and guidelines to end child sexual exploitation and child labour", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Continue its efforts for the advancement of women, with an emphasis on curbing violence against women ", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Take further steps to improve the integration of persons belonging to different minority groups and adopt a comprehensive policy to ensure effective implementation of the principles of equality and non-discrimination", - "values": [ - "4 - General action" - ] - }, - { - "text": "Continue to promote the work of the High Council for Human Rights to achieve the establishment of an NHRI, as well as the timely implementation of a national plan for human rights", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Continue developing the institutional framework concerning the promotion and protection of human rights ", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Declare a moratorium on executions with a view to abolishing the death penalty", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Ensure that Libyan mothers are able to pass their nationality to their children, regardless of the nationality of the child's father, and ensure access to birth registration for all children born in Libya", - "values": [ - "4 - General action" - ] - }, - { - "text": "Create and strengthen, where appropriate, legislative and other measures to address the sexual exploitation of women and girls", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Further progress in the incorporation of the Convention on the Rights of the Child to legislation and national policies", - "values": [ - "4 - General action" - ] - }, - { - "text": "Strengthen cooperation with United Nations human rights mechanisms", - "values": [ - "4 - General action" - ] - }, - { - "text": "Ensure that the legislation governing the military court system is explicit in ensuring that military courts only have jurisdiction over military personnel who have committed military offences, especially when such offences do not amount to human rights violations, and that no civilian cases are tried in the military court system", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Take measures to criminalize domestic violence in accordance with the recommendations of the Committee on Economic, Social and Cultural Rights. to continue to fund and set up victim-centric services for women and children dealing with domestic violence.", - "values": [ - "4 - General action" - ] - }, - { - "text": "Alleviate the overcrowding of detention centres and to review the conditions of detention centres so that they are in conformity with minimum international standards.", - "values": [ - "4 - General action" - ] - }, - { - "text": "Institute appropriate reforms to ensure the full independence of the judiciary", - "values": [ - "4 - General action" - ] - }, - { - "text": "Ensure proper redress and protection for victims of crimes of domestic and sexual violence", - "values": [ - "4 - General action" - ] - }, - { - "text": "Implement effective judiciary proceedings making possible the bringing to justice security forces personnel who have committed human rights violations ", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Undertake a process with a view to repealing the legislation that criminalizes homosexuality and adopt measures to combat discrimination on the ground of sexual orientation", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Repeal the provisions of the 2009 Criminal Code which criminalize sexual relations between consenting adults of the same sex", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "A fully integrated gender perspective in the follow up of this UPR ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Facilitate a public debate on the death penalty, with input from the Human Rights Commission, other relevant constitutional bodies and civil society, with a view to ratification of the Second Optional Protocol to the International Covenant on Civil and Political Rights", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Continue its efforts to realize the national development goals as stipulated in the country's Vision 2020 and in the Economic Development Poverty Reduction Strategy 2", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Implement the recommendations made by the members of the working group on enforced or involuntary disappearances following their visit in 2007", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Take further measures to ensure full respect for freedom of expression and of the press in accordance with its international obligations, including ICCPR, to which Eritrea is a party ", - "values": [ - "4 - General action" - ] - }, - { - "text": "With a view to abolishing it [death penalty]", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Call upon the assistance of United Nations bodies, in the context of the implementation of a comprehensive policy for children with sufficient resources and the reform of the Guinean committee for the monitoring, protection and defence of the rights of the child", - "values": [ - "1 - Minimal action" - ] - }, - { - "text": "End indefinite national service and begin a phased demobilization for those serving for more than the statutory 18 months, and allow substitute service for conscientious objectors ", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Pay particular attention to the promotion of women's participation at all levels and in all areas of public life. In this context, the delegation added that the new Government to be sworn in very soon would have a proportion of 40 per cent of female ministers", - "values": [ - "4 - General action" - ] - }, - { - "text": "Exert greater efforts to further reduce the child mortality rate ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Continue promoting its social programmes for the greater good of its people", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Call for enhanced cooperation and support from the international community and relevant United Nations agencies to strengthen the capacity of existing oversight mechanisms that serve to promote and protect human rights in Bhutan, in keeping with domestic requirements ", - "values": [ - "1 - Minimal action" - ] - }, - { - "text": "Accede to the Convention on the Reduction of Statelessness ", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Eliminate the municipal citizen security policies in Lima that mention \u201ceradication of homosexuals\u201c from public spaces and consider investigation and prosecution of persons responsible for such calls for human rights violations", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Continue to work on the protection of women's rights and the implementation of the National Plan of Action for Securing Gender Equality", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Enhance its initiatives designed to halt female genital mutilation and related harmful practices", - "values": [ - "4 - General action" - ] - }, - { - "text": "Incorporate in its legislation, at all levels, including at the level of the Constitution, provisions banning discrimination on the grounds of sex and gender", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Continue implementing the national strategy to enhance access to health services in rural areas", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Continue to promote the social and human development of the Dominican population by devising public policies and taking affirmative actions aimed at eliminating remaining social inequalities ", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Strengthen the freedom of expression and the media so that all journalists can carry out their activities freely and without intimidation and those imprisoned in connection with their work can be released without delay", - "values": [ - "4 - General action" - ] - }, - { - "text": "Decriminalize consensual sexual acts between adults of the same sex and criminalize violence committed against individuals based on their sexual orientation", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Coordinate efforts in a manner that promotes the effective enjoyment of economic, social and cultural rights, and tackle obstacles in that regard", - "values": [ - "4 - General action" - ] - }, - { - "text": "Decriminalise homosexuality and combat all forms of discrimination and abuse against LGBTI persons", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Continue promoting gender equality as a national priority which echoes the recommendation of SR on violence against women regarding the acceleration of the realization of women's equality with men in all areas", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Pay particular attention to the respect of social, economic and cultural rights including the right to the food and step up efforts to ensure that food security is among the national priorities of the country", - "values": [ - "4 - General action" - ] - }, - { - "text": "Evaluate the possibility of abrogating the death penalty from its legal regime", - "values": [ - "3 - Considering action" - ] - }, - { - "text": "End domestic and sexual violence against women and girls, by enacting laws and creating awareness in communities to end the social stigmatization relating to it", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Ensure that indigenous peoples are protected from threats, attacks and forced evictions", - "values": [ - "4 - General action" - ] - }, - { - "text": "Enact comprehensive legislation that fully guarantees the application of the principle of non-discrimination and ensure the full enjoyment of all human rights by every member of society", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "End police brutality against African Americans and rectify the judicial as well as socioeconomic systems that systematically discriminate against them", - "values": [ - "4 - General action" - ] - }, - { - "text": "Consider ratification of the Optional Protocol to the Convention against Torture and Other Cruel, Inhuman or Degrading Treatment or Punishment", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Move towards the definite abolition of the death penalty and ratify the Second Optional Protocol to the International Covenant on Civil and Political Rights", - "values": [ - "4 - General action" - ] - }, - { - "text": "Ratify the Rome Statute of the International Criminal Court and the Convention on the Prevention and Punishment of the Crime of Genocide ", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Abolish the death penalty and ratify the Second Optional Protocol to ICCPR", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Guarantee and protect freedom of religion or conscience for all its citizens ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Bahrain is determined to strengthen its capacities in order to ensure: Follow-up to the concluding observations of the human rights treaty bodies. ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Step up the education and awareness-raising campaigns so as to prevent ill treatment of boys and girls, in accordance with recommendations of the Committee on the Rights of the Child ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Continue measures for adoption of the "National Action Plan for Persons with Disabilities"", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Eliminate the legal provision that states that the age limit of marriage could be lowered to 13 years old in cases where children were sexually abused and could consequently marry the perpetrators", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "The Government was committed to offering comprehensive sexual and reproductive health and rights services in tandem with international, regional and national policies. The delegation stated that there had been a decline of more than 50 per cent in child mortality.", - "values": [ - "4 - General action" - ] - }, - { - "text": "Review the law which prohibits the wearing of clothing denoting religious affiliation in schools.", - "values": [ - "3 - Considering action" - ] - }, - { - "text": "Strengthen the laws on the protection of the rights of women with a view to effectively address violence against women, including sexual violence and female genital mutilation", - "values": [ - "4 - General action" - ] - }, - { - "text": "Prohibit corporal punishment by law, protect victims, and punish perpetrators ", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Take steps to improve detention conditions of prisoners and strengthen independent control mechanisms. Special emphasis should be on the identification of alternative approaches to imprisonment as well as on the societal reintegration of prisoners ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Ensure the respect of the fundamental rights and freedoms of all the population, in particular women and children, and adopt all necessary measures to guarantee the fight against the impunity of the perpetrators of crimes, acts of violence and all human rights violations ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Further reduce the number of crimes carrying the death penalty and publish figures on death verdicts ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Continue its efforts to ensure adequate protection for vulnerable persons living in difficult conditions", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Incorporate the views of civil society in transparent, democratic reform processes", - "values": [ - "4 - General action" - ] - }, - { - "text": "Develop, as part of the drafting process of a framework for Libya's political transition, an agenda on transitional justice and accountability, which includes investigations of all allegations of torture, to hold those responsible to account, and to provide redress and reparation for victims", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Transfer the administration of land-user rights and land use to the Sami people ", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Enhance efforts in requesting technical assistance to strengthen the function of the existing institutions to promote rights and freedoms ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Repeal criminal legislation that provides for the death penalty and commute the death sentences already issued by imprisonment, or, if not, keep the existing de facto moratorium ", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Strengthen and intensify its actions to prevent and by reduce violence against children", - "values": [ - "4 - General action" - ] - }, - { - "text": "Strengthen the national plan for the search for missing persons.", - "values": [ - "4 - General action" - ] - }, - { - "text": "Continue cooperation with civil society organizations in the follow-up to the present review", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Take steps to protect human rights defenders from harassment and intimidation", - "values": [ - "4 - General action" - ] - }, - { - "text": "Ratify the Rome Statute of the ICC and the Agreement on the Privileges and Immunities of the Court", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Continue to take steps to improve overall living conditions for prisoners", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Deepen its engagement with and support for civil society actors, human rights defenders and minority groups, and ensure their safety, with specific mechanisms in place if necessary, including through supportive public statements on the important role they play in democracy.", - "values": [ - "4 - General action" - ] - }, - { - "text": "Ensure that the right of victims of torture or other cruel, inhuman or degrading treatment to obtain reparation is respected ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Consider undertaking studies on children involved in the commercial sex industry, factors luring or compelling them to engage in such crimes, and to take appropriate action.", - "values": [ - "3 - Considering action" - ] - }, - { - "text": "Accede to the OP-CAT and establish an effective National Preventive Mechanism as required under the Protocol ", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Continue to adopt programmes that will ensure disadvantaged children, particularly in rural areas, enjoy the right to education", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Extend a standing invitation to all special procedures ", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "With regard to Article 16 paragraph 1 (g) of CEDAW, withdraw reservations from the Convention on the Elimination of All Forms of Discrimination against Women, especially in view of the modification of the Swiss naming rights and citizenship law which are foreseen to enter into force in January 2013", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Consider developing Human Rights Indicators as suggested by OHCHR as an instrument that allows for a more precise and coherent evaluation of national human rights policies", - "values": [ - "3 - Considering action" - ] - }, - { - "text": "Enact national legislation to combat violence against women, including a definition of rape that applies to domestic rape and rape in detention centres", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Redoubling efforts and measures to combat hate crimes and xenophobia", - "values": [ - "4 - General action" - ] - }, - { - "text": "Continue to carry out necessary reforms to end prison overcrowding, including the launching of a new plan for the renovation and new construction of prisons with conditions comparable to those of the European Union average providing them with the material and human resources appropriate for its proper functioning ", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Advance towards thorough and effective implementation of the International Convention for the Protection of All Persons from Enforced Disappearance in national legislation, including the listing of enforced disappearance as a crime in its criminal legislation", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Improve promptly both the prison system itself and the treatment of all prisoners to meet international recognized standards ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Ensure equitable treatment of all groups in society and, as a first step, invite the Independent Expert on Minority Issues to undertake a country visit ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Promote the review of national legal provisions in the area of human rights, including constitutional provisions, to bring them into line with international standards", - "values": [ - "4 - General action" - ] - }, - { - "text": "Take more effective measures to guarantee that large-scale projects respect environmental standards", - "values": [ - "4 - General action" - ] - }, - { - "text": "Repeal all provisions that criminalize consensual same-sex relationships or that discriminate against LGBTI persons", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "That the international community redouble cooperation with Nicaragua and eliminate any political conditioning of aid", - "values": [ - "1 - Minimal action" - ] - }, - { - "text": "Take all the necessary measures to identify those responsible for the violations of human rights attributed to policemen and provide a fair compensation for the victims ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Step up monitoring of the Internet to prevent it from being used to disseminate racist or xenophobic comments and material, with a view to prosecuting the perpetrators of such acts ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Continue to pursue reforms intended to ensure the independence of the judiciary and make judicial processes more transparent and efficient ", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Deepen its actions in fighting against child prostitution and trafficking of minors ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Work to ensure executing the constitutional reform that aims at improving the level of compulsory education in order to ensure that education will contribute in the promotion of the principles of cultural diversity, equality in enjoying rights, and the importance of the family and others", - "values": [ - "4 - General action" - ] - }, - { - "text": "Include domestic violence as a specific crime in the criminal code", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Continue its efforts in tackling HIV/AIDS", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Abolish the quota system requirement in relation to family reunification", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Protect and promote the human rights of the entire population, particularly the most vulnerable groups such as women, children and minorities, and include these rights in the upcoming constitutional review process ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Strengthen the capacity to investigate, punish and prosecute complaints presented against public security forces and reinforce the autonomy of the Directorate of Complaints, Discipline and Internal Investigations Department (CDIID) office in charge of punishing corrupt practices and abuse in the use of force ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Adopt legislative and normative measures towards the abolition of the death penalty and commute all those sentenced for prison sentences", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Reconsider the matter by taking the necessary steps to fulfil the objective expressed in 2008 to reach the 0.7% target for ODA in relation to the Millennium Development Goals by 2015 ", - "values": [ - "3 - Considering action" - ] - }, - { - "text": "Put an end to the practice of indefinite national service and take measures, in consultation with its partners, to put an end to migration and human trafficking affecting thousands of Eritreans, including children ", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Issue an early invitation to the Special Rapporteur on the Freedom of Expression ", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "While acknowledging the efforts made by the Government of Indonesia, it was recommended that such efforts continue to ensure the promotion and protection of all the components of the Indonesian people.", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Examine possibilities to increase the use of non-custodial measures ", - "values": [ - "3 - Considering action" - ] - }, - { - "text": "Continue its efforts to improve the penitentiary system and prison conditions as well as to strengthen the judiciary whose weakness in personnel, namely prosecutors and judges, is the source of congestion of the courts", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Continue to promote gender equality and the empowerment of women especially through access to quality education", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Take all the necessary measures, including material assistance and support programmes to families, to ensure that all persons, especially children, have an adequate standard of living, including access to clean drinking water and sanitation", - "values": [ - "4 - General action" - ] - }, - { - "text": "Make its national institution for the protection of human rights fully compliant with Paris Principles at the earliest ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Pursue strategies fighting against poverty and social inequalities ", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Harmonize the Venezuelan legal framework related to the right to the freedom of expression with the country's international obligations", - "values": [ - "4 - General action" - ] - }, - { - "text": "Approval of the Convention on the Rights of Persons with Disabilities and its Optional Protocol", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Continue to promote international cooperation in the field of human rights in accordance with its national situation ", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Intensify its efforts towards the realization of economic, social and cultural rights, including in relation to the right to health", - "values": [ - "4 - General action" - ] - }, - { - "text": "Share with other countries the good practice of holding broad consultations prior to the preparation of the report", - "values": [ - "1 - Minimal action" - ] - }, - { - "text": "Forbid the corporal punishment of children through the abolition of the laws that permit its use in the home, schools and detention centres for minors", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Continue its efforts to reduce the maternal and child mortality rates, in particular by taking preventive measures, conducting vaccination campaigns, as well as formulating a comprehensive plans and strategy in health sectors", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Further enhance the cooperation with civil society in the promotion of human rights ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Ensure that indigenous peoples are fully involved in the process of drafting legislative or administrative measures that could affect them, and that projects affecting them would be subjected to a process of prior consultation", - "values": [ - "4 - General action" - ] - }, - { - "text": "Continue intensifying its efforts in combating human trafficking", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Implement, as early as possible, a witness protection programme for women victims of all forms of violence ", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Continue efforts on adopting the National Human Rights Action Plan", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Start the investigation of all outstanding allegations of human rights violations committed during or after the conflict and to bring perpetrators to justice in proceedings which meet international standards ", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Continue to implement its poverty reduction strategy and improve its maternal and infantile health care", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "While promoting the rights of freedom of opinion and expression, pay due attention to commiserating responsibility and respect for others.", - "values": [ - "4 - General action" - ] - }, - { - "text": "Continue the process of accession to international human rights instruments, particularly the ratification of CAT and OP-CAT and ICERD", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Implement UN Rules for the Treatment of Women Prisoners and Non-Custodial Measures for Women Offenders, otherwise known as the "Bangkok Rules" as part of its work on the prison system", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Ratify the two optional protocols to the International Covenant on Civil and Political Rights ", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Bring the definition of trafficking in its legislation into line with international law - establish better processes to identify victims - and address the special needs of child victims ", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Continue and intensify efforts for further promotion and protection of economic, social and cultural rights, including the right to development, for better realization of the Millennium Development Goals.", - "values": [ - "4 - General action" - ] - }, - { - "text": "Put in place protection measures to prevent, combat and punish perpetrators of violence against women and children, and conduct a campaign to raise awareness on violence against women", - "values": [ - "4 - General action" - ] - }, - { - "text": "Protect the rights of those facing the death penalty, including through strengthened application of international safeguards in the use of the death penalty ", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Ensure that security forces respond proportionally and with the utmost restraint to non-peaceful protests ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Increase efforts to provide medical support for children and promote adolescent health policies with respect to reproductive health", - "values": [ - "4 - General action" - ] - }, - { - "text": "Ratify without delay the Optional Protocol to the Convention against Torture, as well as the International Convention for the Protection of All Persons from Enforced Disappearance, and expedite the harmonization of legislation in accordance with them", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "On the one hand, constantly reflect on human rights when processing the request of asylum-seekers and refugees, specifically focusing on their individual situation, their detention conditions and the eventual organization of their repatriation and, on the other hand, solicit the necessary support of the European Union in this regard ", - "values": [ - "3 - Considering action" - ] - }, - { - "text": "Ratify the Optional Protocol to the Convention against Torture and Other Cruel, Inhuman or Degrading Treatment or Punishment OP-CAT ", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Take further measures to adopt legislation ensuring the implementation of the Convention on the Rights of the Child, in particular in the area violence prevention and sexual exploitation of children and ensure girls are protected from sexual abuse.", - "values": [ - "4 - General action" - ] - }, - { - "text": "Take concrete measures to protect the rights of people with albinism, in accordance with the recommendations made by the Office of the High Commissioner, and raise awareness among society about their situation", - "values": [ - "4 - General action" - ] - }, - { - "text": "Repeal the laws criminalizing sexual relations between consenting adults of the same sex and guarantee fully the right of association, including for NGOs working on the question of sexual orientation ", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Extend an open invitation to special procedures on human rights", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Stop the discriminatory practices against its own citizens, and redress the situation to achieve full protection of human rights for all its citizens, especially children", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Seek the necessary technical, material and financial assistance in order to implement the recommendations it has endorsed", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Adopt measures to eliminate the economic, social and cultural barriers which exist between different ethnic and religious groups with the aim of facilitating coexistence between them", - "values": [ - "4 - General action" - ] - }, - { - "text": "Intensify efforts to combat the manifestation of servitude", - "values": [ - "4 - General action" - ] - }, - { - "text": "Continue efforts in order to achieve the MDGs ", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Adopt all necessary measures to eradicate the abuse and sexual exploitation of children, corporal punishment, and to combat the worst forms of child labour ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Implement effectively the Victims Act, by harmonizing existing legislation. Include the provisions of the act in the new Penal Procedure Code. Ensure that the law is applied at all levels", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Accord the greatest priority to measures aimed at better ensuring the economic and social rights of its population, particularly by devoting more resources to programmes to combat poverty and illiteracy.", - "values": [ - "4 - General action" - ] - }, - { - "text": "Make every possible effort to ensure that justice can operate independently and that all political influence on the legal system is eliminated.", - "values": [ - "4 - General action" - ] - }, - { - "text": "Adopt actions aimed at protecting/safeguarding the independence of judges, including measures ensuring autonomy from the executive power with regard to appointment and security of tenure", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Take all necessary steps towards acceding to the Rome Statute of the International Criminal Court", - "values": [ - "4 - General action" - ] - }, - { - "text": "Laws enacted, especially the amendment of the Personal Status Law and the law against domestic violence, be in line with Iraq's existing international obligations", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Ensure separation of juvenile prisoners from adult inmates ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Investigate effectively all cases of human trafficking and prosecute those responsible", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Strengthen and support the independence and the work of the National Independent Human Rights Commission as well as of the judicial system, providing them with necessary resources to do their work ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Align the legal definition of rape and related prosecution procedures with international norms, notably regarding marital rape and the burden of proof", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Continue its efforts to make access to education easier for all, including by allocating adequate resources for education for the people ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Adopt the National Action Plan on Human Rights in the coming period", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Continue to improve the living conditions of the Roma population", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Abolish death the penalty.", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Strengthen the judiciary system in order to address violence against women and children and high rates of children facing sexual abuse", - "values": [ - "4 - General action" - ] - }, - { - "text": "Intensify efforts and measures to enhance and expand protection for migrant workers in Bahrain ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Ratify the Convention against Torture and Other Cruel, Inhuman or Degrading Treatment or Punishment ", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "End the prosecution of mentally-ill persons and minors", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Reinforce the measures to improve conditions of detention, especially for persons with disabilities and the young, as well as to eliminate corporal punishment", - "values": [ - "4 - General action" - ] - }, - { - "text": "Request necessary technical assistance and cooperation for implementation of the recommendations accepted in the universal periodic review ", - "values": [ - "1 - Minimal action" - ] - }, - { - "text": "Introduce alternatives to military service to protect conscientious objectors", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Ensure that all ministerial decrees regulating religious life, as well as all local religiously founded bylaws, are in conformity with international human rights law ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Continue to engage in the effort to designate a national preventive mechanism in Ghana", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Take comprehensive measures in combatting trafficking in persons including by the accession to the Palermo Protocol and by extending an invitation to the Special Rapporteur on trafficking in persons, especially women and children", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Adopt and implement appropriate measures to address the sexual abuse and exploitation of children as well as child labour", - "values": [ - "4 - General action" - ] - }, - { - "text": "Investigate promptly cases of sexual and gender-based violence and ensure that perpetrators are brought to justice", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Strengthen the operational and financial capacity of the National Human Rights Commission and ensure that it abides by the Paris Principles", - "values": [ - "4 - General action" - ] - }, - { - "text": "Strengthen its cooperation with the United Nations, through a standing invitation to all special procedures of the Human Rights Council and by submitting reports due on the application of international human rights instruments that the country is part of ", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Establish an independent and effective oversight mechanism", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Provide the National Commission of Inquiry with the necessary resources to promptly, thoroughly, and independently investigate allegations of gross human rights abuses by all parties", - "values": [ - "4 - General action" - ] - }, - { - "text": "Ratify the International Convention for the Protection of All Persons from Enforced Disappearances as soon as possible", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Enhance education training programmes, which should include technical and vocational education and training designed to facilitate the movement of workers into new areas of economic activity", - "values": [ - "4 - General action" - ] - }, - { - "text": "Continue with appropriate measures to eradicate discrimination and violence against women. ", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Further strengthen measures against torture and ill-treatment, including accession to the Optional Protocol to the Convention against Torture in the near future, and that it establish an effective national preventative mechanism.", - "values": [ - "4 - General action" - ] - }, - { - "text": "Submit their outstanding and long overdue reports to the relevant treaty bodies", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Improve the function of the People's Advocate by providing the necessary financial assistance and human resources and make efforts to implement the recommendations of the Advocate", - "values": [ - "4 - General action" - ] - }, - { - "text": "Approve the legal provisions that would make it possible to derogate the articles of the Family Code stipulating the predominance of the husband\u2019s decision over that of the wife with regard to common property and the exercise of paternal rights and the custody of children", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Ratify the Optional Protocol to the International Covenant on Civil and Political Rights and the International Covenant on Economic, Social and Cultural Rights", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Continue to promote and enhance interaction and dialogue between the competent national authorities and the civil society organizations", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Step up necessary measures to promote equality between men and women and strengthen the ongoing efforts for the prevention of domestic violence ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Strengthen awareness-raising plans and programmes on violence against women, including training programmes aimed at increasing sensitivity towards victims and their vulnerabilities", - "values": [ - "4 - General action" - ] - }, - { - "text": "The Government has committed itself to the principles of health for all through primary health care reflected in the national PHC policy adopted in 1999.", - "values": [ - "4 - General action" - ] - }, - { - "text": "Maintain results achieved in reducing maternal and child mortality ", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Continue its efforts to promote and protect human rights, in particular the economic, social and cultural rights of its citizens with the support and assistance of the international community ", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Share its positive experiences and best practices with other countries regarding the high level of ethnic and religious tolerance", - "values": [ - "1 - Minimal action" - ] - }, - { - "text": "Continue efforts to abolish the death penalty.", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Formulate and implement a national plan of action for the protection of the civil rights of lesbians, gays, bisexuals and transgender (LGBT) persons", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Develop a comprehensive strategy to combat all forms of discrimination ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Provide comprehensive and effective protection against cases of torture and accountability of perpetrators, in particular for persons in detention or prison facilities", - "values": [ - "4 - General action" - ] - }, - { - "text": "Adopt legal and practical safeguards to protect freedom of expression and of assembly", - "values": [ - "4 - General action" - ] - }, - { - "text": "Continue to work toward the attainment of the targets and strategies of the 2011-2030 national programme for the social and economic development of Turkmenistan as well as other development programmes indicated in paragraph 13 of its National Report ", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Fully protect the freedom of religion and belief by allowing the conscientious objection clause in all fields", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Continue with efforts to prevent violence against children at schools and other institutions where children are present, to ensure that children are aware of their right to be protected from all forms of violence and of the assistance provided if they are victims of violence", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Improve social policies to combat social inequalities and poverty, in particular youth unemployment", - "values": [ - "4 - General action" - ] - }, - { - "text": "Strengthen efforts in the fight against trafficking in women and girls as well as the exploitation of prostitution, and harmonize legal procedures concerning prosecution of traffickers ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Take active measures to prevent actual segregation of Roma students in public and private schools", - "values": [ - "4 - General action" - ] - }, - { - "text": "Adopt measures to combat corruption, especially in the judiciary, and ensure independence of the judiciary", - "values": [ - "4 - General action" - ] - }, - { - "text": "Redouble efforts aimed at increasing women's access to employment, participation in public life, education, housing and health ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Efforts should continue to be perused in order to provide opportunities of adequate education for persons with disabilities ", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Accelerate finalization of the necessary amendments to the legislative measures to ensure the accreditation of the Ombudsman's Office with an "A" status in line with Paris Principles", - "values": [ - "4 - General action" - ] - }, - { - "text": "Continue and further strengthen measures to fight against acts of corruption and embezzlement of public funds", - "values": [ - "4 - General action" - ] - }, - { - "text": "Put an end to any form of discrimination against women, both in practice and in legislation, particularly those remaining in the Code of Personal Status ", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Continue to play an active role in promoting international cooperation to combat climate change.", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Improve facilities in places of detention for people with physical disabilities and improve access to adequate care for prisoners with mental health issues ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Adopt appropriate policies to ensure the protection of all ethnic and religious minorities, and ensure their enjoyment of the necessary legal protection to address any discrimination they may face", - "values": [ - "4 - General action" - ] - }, - { - "text": "Take appropriate measures to prevent and punish all forms of ill treatment by law enforcement officials", - "values": [ - "4 - General action" - ] - }, - { - "text": "Accede to ILO Convention No. 189", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Prioritize enacting the draft Children's Protection and Welfare Bill, ensuring that Convention on the Rights of the Child provisions are fully incorporated into national legislation ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Ratify the Convention against Torture and Other Cruel, Inhuman or Degrading Treatment or Punishment.", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Respect its international and national legal obligations in the field of the protection of the rights of asylum seekers and migrant workers ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Find ways to improve the detention conditions of minors, including counselling services.", - "values": [ - "4 - General action" - ] - }, - { - "text": "To step up its current efforts aiming at strengthening women participation in the political and economic life of the country", - "values": [ - "4 - General action" - ] - }, - { - "text": "Continue to reform the judicial system in order to guarantee its independence and capacity to administrate justice, and speed up efforts to abolish the death penalty", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Consider accession to the Council of Europe's Istanbul Convention on preventing and combating violence against women and domestic violence", - "values": [ - "3 - Considering action" - ] - }, - { - "text": "Carry on making efforts to promote the rights of people with disabilities", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Sign and ratify the Convention against Torture and Other Cruel, Inhuman or Degrading Treatment or Punishment and the International Convention for the Protection of All Persons from Enforced Disappearance and the Optional Protocols to ICCPR", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Immediately cease recruiting child soldiers and ensure their rehabilitation", - "values": [ - "4 - General action" - ] - }, - { - "text": "Ensure equal access of girls and women to all levels and fields of education", - "values": [ - "4 - General action" - ] - }, - { - "text": "Provide the Office of the Human Rights Commissioner with the means necessary to enable it to carry out its mandate in a full, efficient and independent manner", - "values": [ - "4 - General action" - ] - }, - { - "text": "Intensify its efforts in increasing women's representation in decision- making positions", - "values": [ - "4 - General action" - ] - }, - { - "text": "Consider reviewing the law related to abortion to guarantee access to abortion when pregnancy is a result of rape ", - "values": [ - "3 - Considering action" - ] - }, - { - "text": "Provide the special fund established under the law of 4 January 2015 with sufficient resources to enable it to meet the financial requirements related to the care of victims", - "values": [ - "4 - General action" - ] - }, - { - "text": "Ratify ILO Convention No. 182 (1999), concerning the prohibition and immediate action for the elimination of the worst forms of child labour, and No. 138 (173) on the minimum age for admission to employment ", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Establish a moratorium on executions, with a view to abolishing the death penalty ", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Strengthen coordination measures to address child labour ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Take measures to reduce widespread child labour", - "values": [ - "4 - General action" - ] - }, - { - "text": "Give adequate training and instruction to law enforcing bodies and to the judiciary on how to address complaints stemming from racially motivated crimes", - "values": [ - "4 - General action" - ] - }, - { - "text": "Allocate adequate budgetary resources for the effective implementation of the national action plan on eradication of violence against women and to ensure that sufficient safe shelters for women are available", - "values": [ - "4 - General action" - ] - }, - { - "text": "Speed up judicial reforms in order to guarantee the functioning of the judiciary with the highest international human rights standards, and in particular facilitate access to justice for all persons on an equal footing without discrimination", - "values": [ - "4 - General action" - ] - }, - { - "text": "Accede to the Rome Statue to fully align its national legislation with the Rome Statute and to investigate and prosecute international crimes effectively before its national courts or enable the International Criminal Court to investigate these crimes", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Modernise the prison system in order to ensure adequate resources and capacity and that the Standard Minimum Rules for the Treatment of Prisoners are fulfilled ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Continue to work to improve the human and material situation that resulted from the economic sanctions during the 1990s ", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Strengthen legislation on the protection of the public from unauthorized actions by the police", - "values": [ - "4 - General action" - ] - }, - { - "text": "Strengthen the system of independent monitoring in all detention facilities in accordance with the Optional Protocol to CAT", - "values": [ - "4 - General action" - ] - }, - { - "text": "Consider exploring possible ways and means to further facilitate accessto and provision of humanitarian aid and other forms of assistance to the IDP population, with a view to normalizing their living situation ", - "values": [ - "3 - Considering action" - ] - }, - { - "text": "Consider seeking further targeted technical assistance from United Nations agencies towards achieving its human rights obligations ", - "values": [ - "3 - Considering action" - ] - }, - { - "text": "Pursue an open dialogue with human rights defenders, in particular in Cabinda, where, in the aftermath of the recent deplorable attack on the Togolese football team, human rights defenders are reportedly being detained without evidence as to their complicity", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Continue to promote the rights of women and children", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Amend article 112 of Thailand's Criminal Code to remove prison terms for offences stemming from the legitimate exercise of the right to freedom of opinion and expression and ensure that the prohibited acts are unambiguous and that sanctions are proportionate to the act committed", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Accede to ICCPR OP1, ICCPR OP2, OP-CAT and ratify Rome Statute of the ICC", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Elaborate and implement programmes and initiatives to encourage the sharing of domestic responsibilities and childcare with a view to eliminating gender stereotypes", - "values": [ - "4 - General action" - ] - }, - { - "text": "Increase its efforts to safeguard women and children from domestic violence and to protect persons with disabilities", - "values": [ - "4 - General action" - ] - }, - { - "text": "Establish a de jure moratorium with a view to the definitive abolition of the death penalty", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Guarantee freedom of thought, conscience and religion to all individuals by ensuring the basic rights to freedom of assembly and association", - "values": [ - "4 - General action" - ] - }, - { - "text": "Continue to implement the Convention on the Rights of Persons with Disabilities", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Recommended that a mechanism be established with a view to verifying that political parties and social institutions do not adopt racist or xenophobic programmes. ", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Guarantee the independence of the judiciary, including through legislative measures ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Further strengthen measures to encourage the participation of women in the labour market and to ensure their right to equal remuneration ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Accede to the 1990 International Convention on the Protection of the Rights of All Migrant Workers and Members of Their Families", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Involve civil society representatives in the follow-up implementation of the universal periodic review recommendations ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Accelerate efforts to provide effective structures for identification, care and accommodation to protect and support vulnerable migrant and refugee arrivals, including victims of torture, unaccompanied minors, and persons with disabilities", - "values": [ - "4 - General action" - ] - }, - { - "text": "Strengthen the mandate of the Special Office for Children and give the Office additional powers to provide advisory and legal assistance in a wider range of cases", - "values": [ - "4 - General action" - ] - }, - { - "text": "Adopt comprehensive legislation or policies with a view to facilitating durable solutions for internally displaced persons ", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Implement the National Action Plan on Gender-based Violence, including by improving access to justice for victims, providing targeted training and capacity-building to law enforcement and judicial officials, and dedicating sufficient resources to enable key ministries to implement the Action Plan and increase coordination", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Guarantee access of all Iraqis to equitable judicial proceedings", - "values": [ - "4 - General action" - ] - }, - { - "text": "Take into account and integrate in its National Action Plan for the Equality between Men and Women, the recommendations arising on this issue during this second UPR ", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Explore the feasibility of establishing a network of mobile clinics in order to reach out to the widely dispersed population ", - "values": [ - "3 - Considering action" - ] - }, - { - "text": "Improve prison conditions, including addressing overcrowding, investigate all cases of torture and ill-treatment by prison staff in an impartial manner and prosecute those responsible", - "values": [ - "4 - General action" - ] - }, - { - "text": "Strengthen its training and capacity-building programme in the area of human rights for law enforcement officials", - "values": [ - "4 - General action" - ] - }, - { - "text": "Adopt the draft Law on protection of children from corporal punishment ", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Undertake further work as soon as possible to combat the danger of Islamophobia in society and political discourse, including the establishment and effective implementation of a national system for the recording, independent monitoring and punishment of hate crimes committed within Austria", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Take concrete actions in implementing the Law and the 2020 National Strategy on Youth, especially by matching the planned measures with appropriate funding", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Implement with high priority its intention to establish a mechanism to monitor human rights ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Take more efforts to protect persons with albinism", - "values": [ - "4 - General action" - ] - }, - { - "text": "Remain proactive in combating discrimination against Sami and Roma and in protecting their economic, social and cultural rights, in consultation with the communities concerned", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Promote and protect human rights and fundamental freedoms by applying the measures stipulated in the law to combat terrorism, drug trafficking and other threats against the national security.", - "values": [ - "4 - General action" - ] - }, - { - "text": "Adopt the Anti-discrimination Act as a matter of priority while encompassing also grounds for discrimination on the basis of sexual orientation", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Address effectively the concerns expressed in 2006 by the Special Representative of the Secretary-General on the situation of human rights defenders and invite him to visit the country.", - "values": [ - "4 - General action" - ] - }, - { - "text": "Undertake an in-depth study on trafficking and exploitation of children, particularly with regard to sexual abuse, child prostitution and child pornography, as a basis for urgent remedial action in this regard.", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Continue to undertake measures to eliminate poverty and combat unemployment", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Ratify the 1954 and 1961 Statelessness Conventions ", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Continue to exercise its right to self-determination and independence and to move forward with its sovereign commitment to positioning its legal system so as to meet the needs of its people, as is already being done", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Ensure that the definition of minorities used in all laws provides for full protection against any discrimination.", - "values": [ - "4 - General action" - ] - }, - { - "text": "Ensure equal treatment of women in law and in practice, in line with the relevant recommendations of the Human Rights Committee", - "values": [ - "4 - General action" - ] - }, - { - "text": "Continue all relevant efforts in order to better address domestic violence", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Ratify the Rome Statute of the International Criminal Court, as well as the International Convention for the Protection of All Persons from Enforced Disappearance ", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Cooperate fully with the human rights mechanisms of the United Nations and with the special procedures of the Human Rights Council, including with the Special Rapporteur on the situation of human rights in the Democratic People's Republic of Korea", - "values": [ - "4 - General action" - ] - }, - { - "text": "Continue its efforts towards national reconciliation", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Further improve accessibility of persons with disabilities to infrastructure, training and education", - "values": [ - "4 - General action" - ] - }, - { - "text": "Continue efforts for the promotion of women's rights ", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Strengthen safety and protection measures for the exploitation of natural resources, in order to rigorously protect the environment and the health and rights of local residents, and in line with the United Nations Guiding Principles of Business and Human Rights", - "values": [ - "4 - General action" - ] - }, - { - "text": "Accelerate the ratification of the ICRMW", - "values": [ - "4 - General action" - ] - }, - { - "text": "Strengthen the National Human Rights Commission and the national commission to combat gender-based violence, and the capacities needed to secure advancement in the field of human rights, particularly in the area of human rights of women as well as to increase efforts in order to ban such practices as female genital mutilation", - "values": [ - "4 - General action" - ] - }, - { - "text": "Establish an effective system to address and prevent violence against women ", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Increase efforts to guarantee access to education for children with disabilities", - "values": [ - "4 - General action" - ] - }, - { - "text": "Withdraw its reservations to the International Covenant on Civil and Political Rights (ICCPR) ", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Continue to address allegations of excessive use of force by the police ", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Intensify efforts to enforce existing laws and/or create laws to protect children from discrimination and violence, particularly sexual violence ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Ratify the Arms Trade Treaty", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Noting with concern that the crime of torture does not exist in its national legislation, define this crime and ensure that victims receive economic and legal compensation according to international standards ", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Strengthen the comprehensive development of the judicial system concerning the juvenile courts", - "values": [ - "4 - General action" - ] - }, - { - "text": "Continue to amend its national legislation in line with the international human rights instruments", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "To adopt effective measures to combat violence against women and prevent their occupational segregation", - "values": [ - "4 - General action" - ] - }, - { - "text": "Establish a fast track system for reviewing cases of prolonged preventive detention in order to reduce as soon as possible the prisons' population and improve the health and food situation of the population incarcerated", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Address discrimination by the public and private sectors as a matter of priority", - "values": [ - "4 - General action" - ] - }, - { - "text": "Amend the Law on the Elimination of All Forms of Discrimination to include a mechanism of fines and other sanctions for use by the Public Defender's Office in the event of discriminatory actions", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Work towards the ratification of ICRMW", - "values": [ - "4 - General action" - ] - }, - { - "text": "Take necessary steps to effectively implement the existing mechanism for the reintegration of returned migrant workers in the national economy", - "values": [ - "4 - General action" - ] - }, - { - "text": "Protect the right to life from the conception to natural death", - "values": [ - "4 - General action" - ] - }, - { - "text": "Further promote large-scale awareness raising campaigns to prevent and combat violence against women and domestic violence", - "values": [ - "4 - General action" - ] - }, - { - "text": "Cease immediately aerial bombardments and allow free access for humanitarian aid to areas of conflict so as to meet its obligations under international law", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Improve respect for human rights in its justice system, including by ensuring that all allegations of torture are thoroughly investigated and that any perpetrators brought to justice, and by promoting the use of forensic evidence in courts", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Adhere to the principles of ICMW in view of its possible ratification ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Consider the possibility of signing and ratifying International Convention for the protection of all persons against enforced disappearances and to accept the competence of its committee", - "values": [ - "3 - Considering action" - ] - }, - { - "text": "Recommended ratifying the Optional Protocol to CEDAW (OPCEDAW) and facilitating the visit of the Special Rapporteur on violence against women, its causes and consequences", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Continue its efforts to ratify the Convention against Torture", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Take necessary steps to set up the Truth and Reconciliation Commission and the Commission on the Inquiry on Disappearances since the failure to act on human rights abuses undermines respect for the rule of law ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Amend the Criminal Procedure Code, 1960 (Act 30) to introduce an alternative sentencing policy", - "values": [ - "4 - General action" - ] - }, - { - "text": "Review the Penal Code articles that undermine freedoms of expression, association and assembly", - "values": [ - "3 - Considering action" - ] - }, - { - "text": "Make additional efforts to combat child labour and guarantee children the enjoyment of the rights that are guaranteed to them in accordance with international standards", - "values": [ - "4 - General action" - ] - }, - { - "text": "Implement the law on the establishment of a National Human Rights Commission ", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Continue to work towards eliminating all violence against women and to increase access to\njustice for women victims of violence, including in remote and rural areas ", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Promote gender equality and parity and prevent violence against women ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Adopt as soon as possible the Law on preventing and combating discrimination", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Take all necessary measures to protect the life of human rights defenders, journalists and other threatened persons", - "values": [ - "4 - General action" - ] - }, - { - "text": "Design specific policies to improve the situation of women in Samoan society and political life", - "values": [ - "4 - General action" - ] - }, - { - "text": "Ensure non-discrimination on the basis of sexual orientation and gender identity ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Strengthen the effective implementation of the measures aiming at combatting discriminations and violence against women", - "values": [ - "4 - General action" - ] - }, - { - "text": "Increase efforts to put the Domestic Violence Act into practice through public policies ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Align its national legislation with international human rights standards ", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Undertake further measures for the integration of minorities and the promotion of their representation in Georgian political and public life", - "values": [ - "4 - General action" - ] - }, - { - "text": "Bring the legislation on police in line with international standards ", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Continue support the work of the National Human Rights Commission in line with the Paris Principles", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Take measures to complete the reforms in the judicial system and in the defence and security sectors", - "values": [ - "4 - General action" - ] - }, - { - "text": "Significantly improve its cooperation with the United Nations treaty bodies by agreeing on timelines for submitting overdue reports and, if need be, identify needs for assistance to that end ", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Ratify the Optional Protocol to the Convention on the Rights of the Child on the Sale of Children, Child Prostitution and Child Pornography", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Continue to constructively cooperate with the universal mechanisms for the promotion and protection of human rights, and to dialogue with social and human rights organizations", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Improve the capacity to guarantee every person the possibility to request international protection in a legal way, and create conditions for the medical and psychological treatment of asylum seekers, especially those who were victims of torture and violence", - "values": [ - "4 - General action" - ] - }, - { - "text": "Step up efforts to combat corruption and adopt all necessary legislative and policy measures to effectively combat corruption, taking into account the opinion of the Venice Commission on the establishment of a high anti-corruption court", - "values": [ - "4 - General action" - ] - }, - { - "text": "Ratify the Convention on the Elimination of All Forms of Discrimination against Women, which was given Senate's approval in 2008, and accede to other instruments", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Ratify the major human rights instruments, in particular the Convention on the Rights of the Child and the International Convention on the Protection of the Rights of All Migrant Workers and Members of their Families", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Adopt legal and administrative measures to eliminate all forms of corporal punishment of children ", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Amend the Law on Mass Events in order to enable the right to peaceful assembly to be exercised more easily", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Ensure the respect for the rights and fundamental freedoms of lesbian, gay, bisexual, transgender, intersex and queer persons, by repealing the norms that criminalize and stigmatize them", - "values": [ - "4 - General action" - ] - }, - { - "text": "Ratify the International Convention for the Protection of All Persons from Enforced Disappearance and the Optional Protocol to the Convention against Torture", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Continue to work to ensure full implementation of Security Council resolutions 1325 and 2122 on women, peace and security, including by increasing the active and equal participation of women in peacebuilding initiatives and decision-making processes at all levels", - "values": [ - "4 - General action" - ] - }, - { - "text": "Maintain the sustained growth of the education budget, linked to education policies and collective agreements", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Fully implement international Conventions and standards for the protection of refugees and asylum seekers", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Improve on the United Kingdom\u2019s Immigration Act 2016 dealing with refugees to be compatible with United Nations Human Rights Conventions, particularly the Convention on the Rights of the Child", - "values": [ - "4 - General action" - ] - }, - { - "text": "Ratify early the International Convention for the Protection of All Persons from Enforced Disappearance", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Consider the ratification of the International Covenant on Economic, Social and Cultural Rights, the Convention on the Rights of the Child and the International Convention on the Elimination of All Forms of Discrimination against Women", - "values": [ - "3 - Considering action" - ] - }, - { - "text": "Successfully conclude the second stage of reform in the human rights sphere, in particular the application and practice of the new legislative basis ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Give individuals, groups and organs of society the legitimacy and recognition to promote human rights and to express their opinions or dissent publicly.", - "values": [ - "4 - General action" - ] - }, - { - "text": "Ratify promptly the Convention against Torture and Other Cruel, Inhuman or Degrading Treatment or Punishment ", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Respect the minimum standards for the death penalty ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Discontinue overly broad restrictions on the media and freedom of expression, and engage in regular dialogue with journalists to create an environment that encourages free expression without fear of censure", - "values": [ - "4 - General action" - ] - }, - { - "text": "Progress in the process of ratification of the International Covenant on Civil and Political Rights, the Convention on the Rights of Persons with Disabilities and the Optional Protocol to the Convention on the Rights of the Child signed in 2011", - "values": [ - "4 - General action" - ] - }, - { - "text": "Strengthen the independence and professionalism of the judiciary and adopt a system of transparent appointment and removal of judges", - "values": [ - "4 - General action" - ] - }, - { - "text": "Strictly implement the criminal provisions concerning hate speech and hate crimes, while conducting awareness-raising campaigns promoting tolerance", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Support the Family Protection and Domestic Violence draft Bill with an institutional strategy and sufficient resources to enhance the prevention of domestic violence, combat impunity and grant adequate access to justice for the victims ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Adopt further legal and practical measures to counter race-based hatred and crime, support social integration and harmony and provide equal opportunities for minority groups and migrants so as to ensure their dignity, decent work, education, health care and social welfare", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Adopt effective measures to increase the representation of women in the public and private sectors, especially in decision-making posts", - "values": [ - "4 - General action" - ] - }, - { - "text": "To mainstream human rights issues in the training curriculum of security agencies", - "values": [ - "4 - General action" - ] - }, - { - "text": "Reinforce government control over the activities and personnel of private military and/or security companies, in order to strengthen the rule of law and respect for human rights by all relevant actors", - "values": [ - "4 - General action" - ] - }, - { - "text": "Extend policies and strategies of gender equality to all levels of the public administration, including affirmative measures for women in all ministries ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Ensure that all those responsible for human rights violations are brought to justice, in accordance with international standards, in particular the right to a fair trial", - "values": [ - "4 - General action" - ] - }, - { - "text": "Continue its efforts to increase awareness and repression of all forms of violence against women, particularly female genital mutilation", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Ensure the right to adequate food, especially during times of conflict and in states of emergency", - "values": [ - "4 - General action" - ] - }, - { - "text": "Review the use of anti-defamation laws and the registration process for civil society and associations to ensure that such laws are consistent with the right to freedom of expression, association and peaceful assembly, and do not constitute a de facto ban on peaceful public demonstrations", - "values": [ - "3 - Considering action" - ] - }, - { - "text": "Consider ratifying the International Convention on the Rights of Migrant Workers and Members of Their Families (ICRMW) ", - "values": [ - "3 - Considering action" - ] - }, - { - "text": "Continue strengthening efforts in poverty alleviation, including through programmes for indigenous people.", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Ensure that religious, ethnic and sexual minorities are able to exercise their rights and freedoms, as guaranteed by the Iranian Constitution", - "values": [ - "4 - General action" - ] - }, - { - "text": "Take swift action to decriminalize same - sex sexual conduct between consenting adults", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Continues with its efforts to promote and protect human rights and freedoms ", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Set up temporary shelters to ensure safety for victims of trafficking and provide medical care, rehabilitation, return and reintegration programme ", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Take additional measures to combat trafficking in human beings", - "values": [ - "4 - General action" - ] - }, - { - "text": "Comply with its international obligations for the exercise of freedom of expression, ensuring the right to seek receive and impart information and ideas, including by electronic means and from foreign sources, and to act against any form of harassment and intimidation of journalists.", - "values": [ - "4 - General action" - ] - }, - { - "text": "Strengthen the institutional and legal human rights framework, in order to ensure effective and impartial investigations into all reports of extrajudicial killings, enforced disappearances, torture, other ill-treatment and sexual violence against women and children and to bring those responsible to justice", - "values": [ - "4 - General action" - ] - }, - { - "text": "Set up an independent and impartial inquiry designed to monitor the progress made in the area of the eradication of the practice of discrimination and slavery, which would include civil society and non-governmental organizations that work towards fighting against discriminatory practices and slavery ", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Work for the establishment of an independent human rights commission.", - "values": [ - "4 - General action" - ] - }, - { - "text": "Conduct a policy of zero tolerance towards the trafficking in women and girl children, child prostitution and the production of pornography involving children", - "values": [ - "4 - General action" - ] - }, - { - "text": "Continue their active partnership with the international communities in the field of humanitarian affairs", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Strengthen awareness-raising campaigns aimed at preventing human trafficking, and increase the protection provided to victims, notably children and newborns, including those of Roma origin, in line with the recommendations of the Committee on the Rights of the Child", - "values": [ - "4 - General action" - ] - }, - { - "text": "Improve access for persons with disabilities to public facilities, including schools", - "values": [ - "4 - General action" - ] - }, - { - "text": "Conduct independent national investigations of all cases of enforced disappearances and arbitrary detention ", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Prohibit expressly the use of racial profiling in the enforcement of immigration legislation", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Continue its efforts to guarantee the rights of education to children with disabilities in order to facilitate their integration in the society", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Issue and implement a standing invitation to all United Nations Special Procedures ", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Fully implement the Global Political Agreement (GPA) provisions supporting the Constitutional Parliamentary Committee ", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Take steps to enact legislation to enshrine a specific right of non-discrimination on the basis of gender, in accordance with article 1 of the Convention on the Elimination of All Forms of Discrimination against Women.", - "values": [ - "4 - General action" - ] - }, - { - "text": "Ratify pertinent conventions, and proceed with harmonization of national legislation.", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Investigate and prosecute all allegations and incidents of acts of violence against women and girls, including domestic violence. Implement targeted training for law enforcement, and engage with community leaders in the development of public education campaigns ", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Decriminalize consensual same-sex relations between males, investigate all incidents and acts of violence suspected of being motivated on the grounds of sexual identity, and take all necessary measures to ensure the full enjoyment of human rights by lesbian, gay, bisexual and transgender persons, as stipulated by the principle of non-discrimination established under international human rights law and articulated in the Yogyakarta principles", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Implement the recommendations made by the Special Rapporteur on violence against women in 2008 ", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Continue to guarantee the independence of the media, including by reviewing the current legal framework governing the broadcast media, and to strengthen media independence by removing the legal basis for undue government interference", - "values": [ - "4 - General action" - ] - }, - { - "text": "Criminalize torture and enforced disappearances in line with international standards ", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Create a national human rights institution, seek accreditation from the International Coordinating Committee of National Institutions and accept technical assistance from OHCHR in setting up this national institution ", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Provide more school opportunities for children and strengthen education, vocational and technical training", - "values": [ - "4 - General action" - ] - }, - { - "text": "Adopt specific economic, social and cultural measures to combat discrimination and promote equal opportunities for disadvantaged and marginalized individuals and groups ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Take all appropriate steps to accede to the Rome Statute", - "values": [ - "4 - General action" - ] - }, - { - "text": "Establish both domestic violence and marital violence as crimes under domestic law in accordance with international standards", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Continue its efforts to effectively protect children's rights and to combat child trafficking, child prostitution and pornography", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Continue ongoing efforts to guarantee the rights of persons with disabilities, including through the enactment of a new law that would broaden existing guarantees, as noted in the national report ", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Continue its efforts in combating discrimination.", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Work towards the swift incorporation in the federal legislation and legislation of state the provisions of international instruments, including the Rome Statute", - "values": [ - "4 - General action" - ] - }, - { - "text": "Share good practices in mechanisms for follow-up and monitoring of human rights obligations accepted by the State ", - "values": [ - "1 - Minimal action" - ] - }, - { - "text": "Continue reforms for further liberalization and humanization of judicial-legal system ", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Take concrete measures to prevent and punish violence against women in all of Mexico's 31 states, especially those with high reporting of killings and attacks of women and girls", - "values": [ - "4 - General action" - ] - }, - { - "text": "Develop training programmes for the youth so as to improve their access to the labour market ", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Take effective measures to prevent and prosecute manifestations of racism, xenophobia and intolerance", - "values": [ - "4 - General action" - ] - }, - { - "text": "End impunity for all human rights violations and launch credible, transparent and comprehensive investigations into all allegations of violations of international human rights law, including those possibly constituting international crimes", - "values": [ - "4 - General action" - ] - }, - { - "text": "The Federated States of Micronesia made the following voluntary pledges: (a) Ratify and accede to the two Protocols to the Convention on the Rights of the Child, (b) Sign and ratify the Convention on the Rights of Persons with Disabilities, (c) Ratify and accede to the Protocol to Prevent, Suppress and Punish Trafficking in Persons, Especially Women and Children, supplementing the United Nations Convention against Transnational Organized Crime, (d) Ratify and accede to the Convention against Torture and Other Cruel, Inhuman or Degrading Treatment or Punishment.", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Take measures towards the ratification of the International Convention on the Protection of the Rights of all Migrant Workers and Members of Their Families", - "values": [ - "4 - General action" - ] - }, - { - "text": "Adequately resource the Afghanistan Independent Human Rights Commission and design the Commissioners' nomination process in a way to ensure the A status of the Commission under the Paris Principles", - "values": [ - "4 - General action" - ] - }, - { - "text": "Continue these efforts to guarantee the respect of all human rights by members of the National Police ", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Adopt further measures to facilitate effective access of the so-called "erased" to permanent residency and citizenship", - "values": [ - "4 - General action" - ] - }, - { - "text": "Ensure the right to freedom of expression, in particular through ensuring plurality and independence of the media as well as protection of media outlets critical to the Government from harassment and attacks", - "values": [ - "4 - General action" - ] - }, - { - "text": "Consider signing and ratifying the Optional Protocol to CRC on a communication procedures to further ensue the rights of children victims ", - "values": [ - "3 - Considering action" - ] - }, - { - "text": "Speed up the process underway to ratify the International Convention on the Protection of the Rights of All Migrants Workers and Members of Their Families", - "values": [ - "4 - General action" - ] - }, - { - "text": "Step up efforts to guarantee access to medical care for the rural population", - "values": [ - "4 - General action" - ] - }, - { - "text": "Reinforce human rights education and awareness-raising programmes for parliamentarians, judges, civil servants, law enforcements agents, lawyers and journalists ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Continue a dialogue with all States on the basis of mutual respect, equal sovereignty and the right of people to choose their political, economic and social system", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Undertake measures to tackle all manifestations of racism, racial discrimination, xenophobia and related intolerance", - "values": [ - "4 - General action" - ] - }, - { - "text": "Implement the recommendation of the Commission of Enquiry regarding the events of February 2008.", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Further continue efforts to eliminate the gap in accessing education between rural and urban areas and the dropout rates among indigenous and Afro-descendant students", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Prohibit sentencing of juvenile offenders under the age of 18 without the possibility of parole at the federal and state level ", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Lift all reservations to the Convention on the Elimination of All Forms of Discrimination against Women", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Undertake all necessary measures to end impunity for sexual violence by investigating all allegations of sexual violence and to prosecute individuals against whom there is sufficient evidence of such abuses", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Intensify its efforts to implement migration regulations", - "values": [ - "4 - General action" - ] - }, - { - "text": "Realize further campaigns and awareness-raising efforts to disseminate information on human rights, equality and anti discrimination.", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Continue its efforts to ensure non-discrimination among all groups of the society, including Roma communities, including through public awareness-raising campaigns ", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Take additional measures to address and eliminate negative stereotypes and adverse traditional beliefs and practices that discriminate against women", - "values": [ - "4 - General action" - ] - }, - { - "text": "Take appropriate measures to ensure equality between men and women in the labour market particularly in terms of equal pay for equal work as well as to upgrade the participation of women in public life ", - "values": [ - "4 - General action" - ] - }, - { - "text": "React positively to requests for visits in 2010 by the Special Rapporteur on the independence of judges and lawyers and by the Special Rapporteur on torture and other cruel, inhuman or degrading treatment or punishment", - "values": [ - "4 - General action" - ] - }, - { - "text": "Design and implement an inter-institutional mechanism with civil society participation for the implementation of the recommendations arising from the UPR mechanism", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Continue its implementation of measures designed to further promote and protect the rights of children and to intensify its efforts aimed at providing greater opportunity for higher education", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Continue its current reform programme in the education system to provide a better education for its people throughout the country, particularly in rural areas ", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Continue the protection programmes and policies of the Tamil population so that they can fully enjoy their rights, particularly economic, social and cultural rights", - "values": [ - "4 - General action" - ] - }, - { - "text": "Continue its efforts to prevent impunity for perpetrators of human trafficking and towards the principle of non-criminalization of victims", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Consider the possibility of ratifying OP-CAT and OP-ICCPR ", - "values": [ - "3 - Considering action" - ] - }, - { - "text": "Ensure the effective implementation of the National Action Plan against Human Trafficking for the period 2016-2018", - "values": [ - "4 - General action" - ] - }, - { - "text": "Strengthen the Government's commitment to ensuring fundamental rights of freedom of expression, peaceful assembly and association, and continue its cooperation with civil society, particularly with human rights defenders, by investing further efforts in creating a favourable environment for the members of the civil society organizations", - "values": [ - "4 - General action" - ] - }, - { - "text": "Intensify efforts to combat human trafficking and provide adequate resources to increase the quality of services provided for victims of trafficking", - "values": [ - "4 - General action" - ] - }, - { - "text": "Continue its efforts to ensure bringing into force of the Omani Law of the Child in pursuit of its national strategy on children and in line with the obligations under CRC ", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Consider, to the extent possible, acceding to the Optional Protocol to the Convention on the Rights of the Child on the sale of children, child prostitution and child pornography", - "values": [ - "3 - Considering action" - ] - }, - { - "text": "Not apply the Anti-Terrorism Act to acts related to the non-violent claims of indigenous peoples.", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Accelerate the establishment of an independent national human rights institution with a broad mandate and adequate human and financial resources, in accordance with the Paris Principles", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Invite without delay the Special Rapporteur on freedom of religion or belief to visit the country, and issue a standing invitation to all special procedures mandate holders ", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Bring the Human Rights and Anti-Discrimination Commission into line with the Paris Principles", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Ensure that sexual and reproductive health education is mandatory for all adolescents, irrespective of their gender", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Strengthen action to prevent and combat ill treatment and abuse, including the sexual abuse of children, and take into account the recommendations of the Committee on the Rights of the Child", - "values": [ - "4 - General action" - ] - }, - { - "text": "Continue an inclusive process in the follow-up on UPR recommendations", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Improve access to primary and secondary education for all children, including those with disabilities", - "values": [ - "4 - General action" - ] - }, - { - "text": "End the torture and other mistreatment of detainees - to this end, allow unimpeded access by independent human rights monitors to all detention facilities - guarantee lawyers free access to police stations and prisons - revise the current application procedures for habeas corpus in order to end arbitrary detention - provide comprehensive human rights training for its security forces - engage an independent monitor to measure the effectiveness of such training - effectively implement legislation that prohibits torture and cruel and degrading treatment - investigate and enforce strict penalties to those who violate the rights of prisoners - provide safe recourse and reparations for those who have suffered cruel or degrading treatment - disallow any confessions obtained through the use of torture - adopt a viable action plan to address the urgent need for comprehensive reform in the penal, law enforcement and judicial systems ", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Effectively investigate violations against human rights defenders, including journalists and women rights activists and bring to justice those responsible for such violations ", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Lead progress made to a systemic solution of the issue of conscientious objectors", - "values": [ - "4 - General action" - ] - }, - { - "text": "Extend a standing invitation to all special procedures of the United Nations", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Redouble efforts to improve prison conditions, significantly reduce prison overcrowding and ensure that minors are separated from adults and that remand prisoners are separated from convicted prisoners, and women are separated from men", - "values": [ - "4 - General action" - ] - }, - { - "text": "Take further concrete steps to address cases of torture in prisons, in particular to ensure impartial and independent investigation of all cases of alleged mistreatment or torture, punish all personnel responsible for torture or mistreatment and provide victims of torture effective access to remedy ", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Take necessary steps for the implementation of the relevant legal and policy framework, with a view to combat effectively trafficking in persons, identifying victims, providing them with all the necessary assistance and support, and prosecuting traffickers", - "values": [ - "4 - General action" - ] - }, - { - "text": "Adopt a comprehensive law on the trafficking in persons, including women and children", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Reinforce measures to combat human trafficking", - "values": [ - "4 - General action" - ] - }, - { - "text": "Continue to establish cooperation with international human rights mechanisms and consider extending a standing invitation to all special procedures mandate holders of the Human Rights Council ", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Adopt further measures to ensure accountability of the police for their proper, sensitive and effective conduct in cases of violence against women and to ensure better accessibility to protected housing for victims of domestic violence ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Develop appropriate mechanisms to receive complaints from victims and provide adequate investigation and prosecution.", - "values": [ - "4 - General action" - ] - }, - { - "text": "Amend relevant national legislation in line with the Convention against Torture", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Ensure the safety of journalists and civil society activists by protecting them against unlawful interference and threats", - "values": [ - "4 - General action" - ] - }, - { - "text": "Introduce laws against female genital mutilation in all states, takes steps to ensure access to justice for women who are victims of violence, and that the Violence Against Persons (Prohibition) Bill is passed by the Senate", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Continue to take measures and actions in line with the fight against discrimination including through guidelines for website moderators to keep their websites free from discriminatory content that constitutes a criminal offence ", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Swiftly promulgate the statute on civil societies, which will enable the civil society to perform its tasks effectively and in full autonomy ", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Consider ratifying or acceding to: OP-ICCPR 2, OP-CAT, ICRMW, CED and OP-ICCPR 1", - "values": [ - "3 - Considering action" - ] - }, - { - "text": "Further intensify efforts to harmonize the method of data collection by relevant agencies involved in the fight against domestic violence.", - "values": [ - "4 - General action" - ] - }, - { - "text": "Strengthen its normative protection of maternal health, approve and implement the bill on reproductive health, and release necessary financial resources for its implementation ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Consider ratification of ICCPR-OP2 ", - "values": [ - "3 - Considering action" - ] - }, - { - "text": "Take appropriate measures to abolish the practice of pregnancy tests as a requirement for access to employment ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Continue to work towards achieving gender equality and the attainment of the MDGs for all Algerians, especially for the rural poor ", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Encourage high-level State officials and politicians to clearly take a position against racist and xenophobic political discourse ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Bring the juvenile justice system fully in line with the relevant conventions and United Nations standards ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Respond favorably to the requests for visit of the country and also facilitate the visits of the Special Rapporteur on migrants, Special Rapporteur on torture and the Special Rapporteur on freedom of peaceful assembly and of association ", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Further strengthen cooperation with the United Nations human rights mechanisms in the field of juvenile rights ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Amend all legislative provisions discriminatory against women and introduce a comprehensive law preventing and combating violence against women and girls, including a definition of rape in line with international standards and the criminalization of marital rape", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Establish a post of an Ombudsman on the issues of national minorities, as recommended previously", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Speed up the international legal cooperation mechanisms in the judicial bodies and the Prosecutor Office, to ensure due process, specifically in cases where the person concerned is protected by an asylum decision or refugee status", - "values": [ - "4 - General action" - ] - }, - { - "text": "As a follow-up to the recommendations from the second cycle contained in A/HRC/21/3, paras. 129.98, 129.102, 129.111, 129.116, 129.117 and 130.9, increase investments in public education with a view to increasing the salaries of teachers and introducing professional and technical training programmes", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Implement a public information campaign alerting citizens to their rights and the laws governing the role and actions of Government officials with regard to corruption. ", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Eliminate child marriages and adopt 18 as a minimum age for marriage for both sexes ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Consider establishing a national human rights institution which is in line with the Paris Principles, which would help monitor and better integrate human rights norms into national policies", - "values": [ - "3 - Considering action" - ] - }, - { - "text": "Give consideration to all international obligations in the field of human rights provisions in revision of the Constitution.", - "values": [ - "3 - Considering action" - ] - }, - { - "text": "Continue to prioritize poverty alleviation in its socio-economic development so that its people will better enjoy their right to life and their right to development", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Further strengthen the existing mechanisms on the promotion and protection of the rights of persons with disabilities", - "values": [ - "4 - General action" - ] - }, - { - "text": "Make the necessary adjustments to ratify the Optional Protocol to the Convention against Torture", - "values": [ - "4 - General action" - ] - }, - { - "text": "Safeguard the right to opinion and speech, as prescribed by Article 29 of the Omani Basic Statute of the State, by reviewing current legislation and working towards specifying its limits and boundaries in a clear and consistent manner", - "values": [ - "4 - General action" - ] - }, - { - "text": "Ensure that all persons detained by the police are fully informed of their fundamental rights from the very outset of their deprivation of liberty", - "values": [ - "4 - General action" - ] - }, - { - "text": "Become a party to OP-CRPD ", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Strengthen its steps for enhancing the rights of women and gender equality", - "values": [ - "4 - General action" - ] - }, - { - "text": "Abolish all unconstitutional discriminatory practices connected with the songbun system and terminate the punishment based on collective guilt", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Adopt appropriate measures to disseminate widely and ensure full observance of the Declaration on Human Rights Defenders.", - "values": [ - "4 - General action" - ] - }, - { - "text": "Consider signing and ratifying the OP-CAT", - "values": [ - "3 - Considering action" - ] - }, - { - "text": "Intensify efforts towards providing all children with equal access to education, including the Roma children", - "values": [ - "4 - General action" - ] - }, - { - "text": "Raise public awareness on the rights of persons with disabilities", - "values": [ - "4 - General action" - ] - }, - { - "text": "Enact a law prohibiting discrimination, including on the basis of age, gender, religion, sexual orientation or ethnicity, and that other necessary measures be undertaken to ensure gender equality", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Take measures to increase the representation of women, including through temporary special measures", - "values": [ - "4 - General action" - ] - }, - { - "text": "Remain steadfast in pursuing its impressive policies aimed at gender equality, particularly by strengthening measures to curb gender-based violence and by reducing maternal mortality", - "values": [ - "4 - General action" - ] - }, - { - "text": "Continue implementing the national gender mapping in policies to assess the representation of women in positions of responsibility and decision-making", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Implement an effective programme to combat corruption, with the establishment of a better financed judicial system. ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Continue providing financial support to low-income families", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Implement and strengthen measures aimed at combating poverty, with particular attention to women and persons living in rural areas", - "values": [ - "4 - General action" - ] - }, - { - "text": "Accelerate its efforts towards the implementation of the National Human Rights Action Plan 2013-2017", - "values": [ - "4 - General action" - ] - }, - { - "text": "Promote a culture of tolerance and cooperation among different ethnic and religious groups, and foster greater socio-economic inclusion of the existing minorities ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Allow for a prompt, impartial and independent investigation into all human rights abuses and grant the OHCHR immediate access to conduct investigations", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Further consider measures to clarify the events of April 2009", - "values": [ - "3 - Considering action" - ] - }, - { - "text": "Ensure access to education, employment, health care and other basic services for the members of all ethnic communities, including the San and Himba communities ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Improve its social security system and provide necessary social protection to vulnerable groups", - "values": [ - "4 - General action" - ] - }, - { - "text": "Cooperate with the special procedures mandate-holders", - "values": [ - "4 - General action" - ] - }, - { - "text": "Amend current education policies to ensure an inclusive education system and implement concrete measures to increase the participation of children with disability", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Adopt and duly implement all measures necessary to prevent torture and other inhuman or degrading treatment, and ensure due accountability for perpetrators of such human rights violations ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Consider strengthening policies to combat discrimination in all areas, notably in employment and education ", - "values": [ - "3 - Considering action" - ] - }, - { - "text": "Establish a national human rights institution in accordance with Paris Principles ", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Pursue its efforts in the area of child and maternal mortality to reach a significant decrease of mother, new-born and children deaths ", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Continue to intensify the national efforts to control the borders and fight against the networks of human trafficking, to fight the activities of terrorist groups in the border areas, and to continue its effective cooperation with neighbouring countries in this field ", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Continue to seek technical cooperation and assistance from the international community and relevant international and regional stakeholders, particularly UNMIS and UNAMID, for support in strengthening its human rights institutions and implementing the UPR recommendations ", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Continue working on the design of public policies to ensure access and continuance of children and adolescents in the different educational levels, especially children belonging to indigenous peoples and who are poor", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Unify, on the basis of objective criteria, the various definitions of feminicide in the different Criminal Codes of the country", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Share its experience and best practices with other interested countries, regarding the protection and consolidation of the rights of persons with disabilities", - "values": [ - "1 - Minimal action" - ] - }, - { - "text": "Ratify the Optional Protocol to the Convention on the Rights of the Child related to individual complaints ", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Adopt a human rights-based approach to development policies and programmes that ensure the effective participation of all communities affected by development projects", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Look into the possible ratification of the United Nations Convention against Corruption.", - "values": [ - "3 - Considering action" - ] - }, - { - "text": "Make the necessary amendments to legislation in order to ensure that communities of all faiths and religions have an equal place in a democratic society ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Intensify efforts to effectively prevent trafficking in women and girls and strengthen measures for the rehabilitation and social integration of victims of trafficking", - "values": [ - "4 - General action" - ] - }, - { - "text": "Ensure that impartial, independent investigations are undertaken into allegations of human rights violations by security forces, including torture and other cruel, inhumane or degrading treatment, and that the findings of those investigations be made public ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Comply with the recommendations made by Treaty Bodies and Special Procedures and, in this connection, recommended to establish mechanism to monitor ethnic minorities and other vulnerable groups, including migrants and asylum seekers, and to allow these groups to access all rights enjoyed by the rest of the population", - "values": [ - "4 - General action" - ] - }, - { - "text": "Protect the rights of Migrants and eliminate unfair treatment of migrant workers, and ensure their integration in to society", - "values": [ - "4 - General action" - ] - }, - { - "text": "Allocate more resources, including through multilateral cooperation, to enhance the implementation of its respective laws, combating impunity, and to raise human rights and rule of law awareness where needed.", - "values": [ - "4 - General action" - ] - }, - { - "text": "Guarantee and ensure full freedom of expression, association and peaceful assembly of journalists, activists, human rights defenders and participants in demonstrations", - "values": [ - "4 - General action" - ] - }, - { - "text": "Increase efforts to improve the whole system with regard to the indigenous peoples", - "values": [ - "4 - General action" - ] - }, - { - "text": "Continue to promote programs and intensify the initiatives aiming at providing health care for motherhood and childhood ", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Adopt the proposed national action plan for human rights", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Fully implement the national action plan to prevent and eradicate violence against women and to assist victims, of which France welcomes the adoption", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Ratify CERD ", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Consider abolishing the death penalty ", - "values": [ - "3 - Considering action" - ] - }, - { - "text": "Use diplomatic assurances in a manner consistent with the UNHCR Note on Diplomatic Assurance and International Refugee Protection dated August 2006 ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Protect Official Development Assistance from budgetary cuts in the context of the international crisis and make every effort to bring it to the internationally agreed target of 0.7 per cent of GDP ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Take measures to combat the problem of domestic violence and for those responsible of such acts be brought before the justice system for their acts ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Ensure that the right of conscientious objection to military service is upheld, and clarify the grounds for acceptance or rejection of such claims ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Take measures to ensure that the Constitutional Court, which is provided for under the Constitution, becomes functional as soon as possible", - "values": [ - "4 - General action" - ] - }, - { - "text": "Consider seriously an immediate moratorium on executions as a first step to the abolition of the death penalty and add the possibility of a life sentence without parole to the range of penalties for vicious crimes", - "values": [ - "3 - Considering action" - ] - }, - { - "text": "Continue to enhance its efforts to eradicate child labour ", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Ratify the Optional Protocol to the Convention against Torture and establish an Independent National Preventive Mechanism, in compliance with the Optional Protocol to the Convention against Torture requirements", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Continue its efforts to provide free primary education for all throughout the country ", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Implement the 2011 recommendations by European Union election observers concerning the equal political participation such as to increase number of women candidates to the National Assembly", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "In concluding, the representative of Barbados reiterated his country's commitment to a strong human rights platform and a rights-based approach to development.", - "values": [ - "4 - General action" - ] - }, - { - "text": "Implement measures to facilitate the renovation of the infrastructure for the supply of water in the occupied Arab territories", - "values": [ - "4 - General action" - ] - }, - { - "text": "Continue to make efforts for the enjoyment of the rights to work, health, education and food", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Continue efforts to reduce the number of non-citizens", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Strengthen independence and transparency of the judiciary and step up efforts to fight impunity by, inter alia, establishing a merit system of selecting and appointing judges and preventing political and other interference in their work, including arbitrary dismissals", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Study the possibility of creating an online system to follow up on international recommendations, which would include the accepted recommendations of the universal periodic review", - "values": [ - "3 - Considering action" - ] - }, - { - "text": "Take continuous measures for the protection of the rights of women, children and other marginalized groups", - "values": [ - "4 - General action" - ] - }, - { - "text": "Pursue policies that give priority to the promotion of the right to education for all ", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Increase resources allocated to the education sector for better quality of education and encourage the authorities to continue their efforts in this area ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Ensure that the composition and functions of the National Human Rights Commission and its work is in accordance with the Paris principles", - "values": [ - "4 - General action" - ] - }, - { - "text": "Take necessary measures for the prevention of such deeds as reported warrantless arrests, torture, extrajudicial killings and other misconduct and ensure swift and fair investigations on alleged misconduct by law enforcement authorities ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Continue to take steps to implement stronger accountability mechanisms and ensure the independence of investigations into allegations of human rights abuses when they occur", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Take appropriate measures to bring domestic law into full compliance with the International Covenant on Civil and Political Rights.", - "values": [ - "4 - General action" - ] - }, - { - "text": "Cooperate with special procedures by extending a standing invitation to them", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Devise plans and strategies, especially for the promotion of gender equality and upholding children's rights ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Consider to continue addressing allegations of discriminatory treatment, including on the grounds of ethnicity, by law enforcement officials", - "values": [ - "3 - Considering action" - ] - }, - { - "text": "Establish the necessary mechanisms to put an end to violence against women and children", - "values": [ - "4 - General action" - ] - }, - { - "text": "Embody the principles of equality of women and men in the Constitution and other appropriate legislation ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Continue putting forward effective measures for the protection and promotion of the rights of women in the country", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Continue paying special attention to the situation of women migrant workers", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Accede to the Convention against Torture and its Optional Protocol and set up a National Preventive Mechanism accordingly ", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Ratify international human rights standards to which it is not yet a State party ", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Make the necessary legislative revisions to clarify Law 14 in order to ensure the right to peaceful assembly for its citizens without fear of reprisals and penalties", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Establish, before the next universal periodic review, a national preventive mechanism in accordance with the Optional Protocol to the Convention against Torture", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Ratify the Agreement on the Privileges and Immunities of the International Criminal Court and ensure its implementation in national law ", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Ensure the implementation of a free birth registration system, exempted from corruption, for all children without discrimination, throughout all the territory of the country", - "values": [ - "4 - General action" - ] - }, - { - "text": "Consider establishing a national human rights body that institutionalizes its efforts to promote human rights and engage all stakeholders", - "values": [ - "3 - Considering action" - ] - }, - { - "text": "Elaborate a national human rights plan. ", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Continue strengthening measures to combat prejudices and punish crimes motivated by xenophobia", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Support Muslims by enabling them to freely practice their religion", - "values": [ - "4 - General action" - ] - }, - { - "text": "Increase efforts to combat all forms of human trafficking, as previously recommended", - "values": [ - "4 - General action" - ] - }, - { - "text": "Continue its process of consultation with civil society in its follow-up to this review ", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Put forward its best efforts to reform legislation dealing with the relatively high rate of domestic violence against women and ensure that those violations are effectively investigated and perpetrators of such acts are prosecuted", - "values": [ - "4 - General action" - ] - }, - { - "text": "Consider revising the Criminal Code so that it includes all crimes of incitement to violence, discrimination and racist insults, and taking strict measures to combat extremism and hate discourse against the Roma minority, migrants and Muslims", - "values": [ - "3 - Considering action" - ] - }, - { - "text": "Define torture as a federal offense in line with the Convention against Torture and investigate, prosecute and punish those responsible of crimes of extraterritorial torture", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Give consideration to incorporating the United Nations Rules for the Treatment of Women Prisoners and Non-Custodial Measures for Women Offenders, also known as the "Bangkok Rules", to its internal rules and regulations for the treatment of women prisoners", - "values": [ - "3 - Considering action" - ] - }, - { - "text": "Take into consideration the full spectrum of international refugee and human rights law and standards when considering issues related to asylum seekers ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Use international good practices as specific benchmarks for progress to improve the situation of the media community, as proposed by the media freedom representative of the Organization for Security and Cooperation in Europe, Dunja Mijatovic", - "values": [ - "4 - General action" - ] - }, - { - "text": "Consider amending the Criminal Code so that hate crimes against LGBT persons are considered serious criminal offences or at least aggravating circumstances ", - "values": [ - "3 - Considering action" - ] - }, - { - "text": "Finalise the draft national policy on migration developed in consultation with the International Organization for Migration", - "values": [ - "4 - General action" - ] - }, - { - "text": "Continue the actions to protect street children and provide them with food, health, education and housing basic services", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Inform relatives and the public about the whereabouts of all persons who have been under arrest and whose fate is currently unknown ", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Investigate all allegations of torture, ill-treatment and excessive use of force by law enforcement officials and bring those responsible to justice", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Enhance the protection for children, including by improving the investigation, prosecution and prevention of violence against children ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Allocate additional financial and human resources to policies and programmes aimed at combating violence against women and girls", - "values": [ - "4 - General action" - ] - }, - { - "text": "Continue its efforts to mitigate the negative impacts of the economic crisis and austerity measures on the most disadvantaged segments of the population", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Improve existing measures on combating violence against children as a key obligation under the Convention on the Rights of the Child and other international human rights instruments", - "values": [ - "4 - General action" - ] - }, - { - "text": "Further develop policies to combat domestic and gender-based violence", - "values": [ - "4 - General action" - ] - }, - { - "text": "Undertake necessary judicial reforms with a view to ensure the independence of the Judiciary and improve access to justice, in particular for the most vulnerable groups ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Continue to address all forms of political, economic and social discrimination against the Maori and Pacific population by meeting their various demands for constitutional and legal reforms and recognition ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Adopt and implement efficient measures to prevent torture and other forms of ill-treatment, and ensure prompt and credible investigations into all allegations of torture including deaths in custody ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Continue to strengthen its [Nigeria's] human rights institutions and develop further measures to ensure the effective implementation of their mandate", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Take all the necessary measures to establish an independent national human rights institution with "A" status, in accordance with the Paris Principles", - "values": [ - "4 - General action" - ] - }, - { - "text": "Establish a channel for the National Human Rights Commission and civil society organizations to participate in the work of the National Human Rights Policy Council on the implementation of recommendations from the Universal Periodic Review and treaty bodies", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Implement the COI's recommendations, including those on denial of due process, reform of the prison system, abolition of the death penalty and return of abductees to their homelands", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Endeavour to implement the remaining recommendations of the previous UPR review ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Take advantage of measures to prevent and combat domestic violence", - "values": [ - "4 - General action" - ] - }, - { - "text": "Collaborate in a constructive manner with the International Criminal Court and the Office of the United Nations High Commissioner for Human Rights, which will soon be established in the country ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Continue to implement the National Strategy for Gender-based Violence", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Strengthen protection of children's rights, including the ratification of the Convention on the Rights of the Child, by improving mechanisms and resources for the implementation of existing legislation, and by demonstrating higher conviction rates for crimes against children such as sexual exploitation, child labour, child forced-labour and child trafficking ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Further strengthen legal provisions and comprehensive policies and strategies to ensure safety and fulfilment of rights of religious minority ", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Continue its efforts to protect the rights of women and children", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Intensify efforts to prevent and prosecute acts of domestic and sexual violence against women as recommended by the Committee on the Elimination of Discrimination against Women", - "values": [ - "4 - General action" - ] - }, - { - "text": "Adopt more robust measures to protect the rights of migrant workers and temporary workers", - "values": [ - "4 - General action" - ] - }, - { - "text": "Ensure best protection of human rights and follow-up to the implementation of international instruments.", - "values": [ - "4 - General action" - ] - }, - { - "text": "Continue its efforts to combat all forms of discrimination ", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Establish a moratorium on the use of the death penalty, as a first step towards the complete abolition of this practice", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Continue efforts to empower the vulnerable and marginalized segments of society ", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Ratify the second Optional Protocol to the Covenant on Civil and Political Rights, abolishing the death penalty, signed in 2000 ", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Take more effective measures in order to fight, and even to eradicate, crimes and hate speech against minorities, focusing on prevention and following-up these acts", - "values": [ - "4 - General action" - ] - }, - { - "text": "Ratify the Convention against Torture, the Convention on the Rights of Persons with Disabilities, the International Convention on the Elimination of All Forms of Racial Discrimination, as well as the Rome Statute of the International Criminal Court", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Continue the information campaign in favour of admitting girls to school.", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Strengthen the vigilance of the authorities and take effective measures to address the serious issue of domestic violence against women.", - "values": [ - "4 - General action" - ] - }, - { - "text": "Arrange for the visit of the Special Rapporteur on the promotion and protection of the right to freedom of opinion and expression as soon as possible ", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Take measures to ensure full participation of all groups of individuals in the political and public affairs of the country", - "values": [ - "4 - General action" - ] - }, - { - "text": "Re-establish expeditiously constitutional order and the rule of law in the country, and ensure full accountability for all human rights violations following the events of 6 to 7 April 2010 ", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Follow the approach it took for economic, social and cultural rights with respect to civil and political rights, including freedom of religion or belief and the right to a fair trial", - "values": [ - "4 - General action" - ] - }, - { - "text": "Complete the vetting process of the police officers", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Ensure that Section 4 and Section 6 of the Trafficking Victims Protection Act 2008, specifically defining the term "wrongful exploitation", comply with Article 3 of the Protocol to Prevent, Suppress and Punish Trafficking in Persons, especially Women and Children, and increase the role of labour inspectors in identifying victims of human trafficking and prevent abusive working conditions, in line with the recommendations made by the 2012 report of the Special Rapporteur on trafficking in persons, especially women and children", - "values": [ - "4 - General action" - ] - }, - { - "text": "Review the status and functioning of its National Human Rights Institution to make sure that it is consistent with the Paris Principles", - "values": [ - "3 - Considering action" - ] - }, - { - "text": "Ensure that the Elections Advisory Board is balanced and representative in order to ensure the independence of the Electoral Commissioner when monitoring the elections ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Take the necessary measures to promote and protect the human rights of migrants in the country", - "values": [ - "4 - General action" - ] - }, - { - "text": "Become party to the Optional Protocol to CRC on a communication procedures to further ensue the rights of children victims", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Strengthen its efforts to address unequal access to the labour market and educational opportunities.", - "values": [ - "4 - General action" - ] - }, - { - "text": "Ensure that provisions in the security package are in full compliance with its obligations under international law", - "values": [ - "4 - General action" - ] - }, - { - "text": "Further strengthen efforts in eliminating economic exploitation of children, including child labour, by implementing more effective measures on poverty eradication and access to education ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Ratify the CAT and the second Optional Protocol to ICCPR", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Continue implementation of the moratorium on death penalty and make efforts to achieve the total abolishment of the death penalty", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Consider establishing independent mechanism for monitoring children's rights and providing necessary financial resources for its functioning", - "values": [ - "3 - Considering action" - ] - }, - { - "text": "Allow, before its next review, unhindered access to the country by all special procedures of the Human Rights Council who request a visit", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Continue to combat corruption in the administration of justice sector by ensuring that anti-corruption procedures are free from political or under undue influences", - "values": [ - "4 - General action" - ] - }, - { - "text": "Reform laws that contain discriminatory provisions, in particular against Roma people", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Strengthen measures to assist families most in need in the context of the economic and financial crisis ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Pursue development policies and programmes aimed at poverty alleviation and eradication ", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Continue its efforts for all children to have access to education and health", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Set the minimum age of marriage at 18 for men and women alike and develop a national action plan to prevent and address the consequences of child marriage", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Step-up socioeconomic policies to enable the active participation of people of African descent in economic, social and political sphere", - "values": [ - "4 - General action" - ] - }, - { - "text": "Intensify action against child prostitution, child trafficking and the use of children in the sex trade, in accordance with the 2011-2015 action plan against prostitution ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Take further measures to promote and protect the rights of women and children ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Strengthen its legal arsenal through accession to international conventions in the field of the promotion and protection of human rights to which it is not yet a party, especially the International Covenant on Civil and Political Rights and the International Covenant on Economic, Social and Cultural Rights", - "values": [ - "4 - General action" - ] - }, - { - "text": "Establish a national action plan aimed at reinforcing the participation of women in the labor market", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Take appropriate measures and implement legislation effectively to eliminate racial discrimination", - "values": [ - "4 - General action" - ] - }, - { - "text": "Continue making efforts to integrate the rights of the minorities present in the country in its public policies and legislation ", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Intensify measures to avoid discrimination against women and to combat violence against them", - "values": [ - "4 - General action" - ] - }, - { - "text": "Spare no effort to expedite the enactment and subsequent implementation of the law establishing the minimum age for marriage ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Adopt a bill on comprehensive protection for children, in accordance with the Convention on the Rights of the Child", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Reach out to parents and parents' groups to promote equal access to education and participation in local institutions for their children, and to encourage parents to appreciate the value of education and benefits of participation ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Ratify OP-CAT without further delay ", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Explicitly prohibit torture and enforced disappearances as criminal offences under Nepali law", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Take effective measures to bring conditions of detention in line with international standards, in particular by reducing overcrowding and inter- prisoner violence", - "values": [ - "4 - General action" - ] - }, - { - "text": "Launch social dialogue to improve religious discourse emphasizing the positive values and bright example of the Egyptian religious heritage", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Tackle the ongoing issues of irregular migrants and seriously prosecute traffickers who prey on and take advantage of those vulnerable persons", - "values": [ - "4 - General action" - ] - }, - { - "text": "Pursue efforts, with the support of the international community, for the submission of the reports that were due to the treaty bodies, including the Human Rights Committee and the Committee against Torture", - "values": [ - "4 - General action" - ] - }, - { - "text": "Guarantee the effective follow-up to as well as the implementation of the recommendations by the Commission for Reception, Truth and Reconciliation and the Commission of Truth and Friendship ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Finalize and submit the treaty body periodic reports as a matter of priority ", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Recommend that the National Committee to Combat Human Trafficking carry out further efforts to implement its mandate, taking into account the standards contained in the international and regional conventions to which Oman is a party", - "values": [ - "4 - General action" - ] - }, - { - "text": "Continue efforts in combating the HIV/AIDS epidemic in the country", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Further improve the health care in connection with birth delivery and address other causes of maternal mortality and address other causes of maternal mortality and other related issues such as early marriages, lack of reproductive information, unsafe abortions and female genital mutilation ", - "values": [ - "4 - General action" - ] - }, - { - "text": "To reinforce affirmative action measures to facilitate women's access to employment", - "values": [ - "4 - General action" - ] - }, - { - "text": "Adopt an integrated law to protect the environment ", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Build on the media transparency law by taking measures to reduce widespread self-censorship and unbalanced reporting ", - "values": [ - "4 - General action" - ] - }, - { - "text": "As a follow-up to the recommendations from the second cycle contained in A/HRC/21/3, paras. 129.19, 129.22, 129.27, 129.39, 129.40, 129.43, 129.78, 129.88, 129.93 and 131.7, intensify efforts towards improving the economic, social and cultural rights of the female population, with their full participation", - "values": [ - "4 - General action" - ] - }, - { - "text": "Take effective measures to curb racial hatred and religious intolerance, hate speech and xenophobic discourses", - "values": [ - "4 - General action" - ] - }, - { - "text": "Intensify actions in order to improve living conditions of persons with disabilities ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Do more to promote and protect freedom of religion or belief, including by safeguarding personal access to, and use and ownership of, religious literature and materials.", - "values": [ - "4 - General action" - ] - }, - { - "text": "Allow the Special Rapporteur on torture to visit the country, and provide him with access to detention facilities", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Further increase efforts in order to totally eradicate the recruitment or use of children by armed forces and armed groups ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Put an end to impunity, investigate crimes, and bring perpetrators to trials. ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Consider ratification of the International Covenant on Economic, Social and Cultural Rights and of the International Covenant on Civil and Political Rights and its Second Optional Protocol", - "values": [ - "3 - Considering action" - ] - }, - { - "text": "Remain steadfast in pursuing its preventive and repressive programme to combat discrimination against migrants and asylum seekers", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Continue its efforts towards protecting the rights of women and children", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Continue adopting measures to guarantee the protection of human rights defenders", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Continue and strengthen its efforts to achieve gender equality in Government and public services at all levels.", - "values": [ - "4 - General action" - ] - }, - { - "text": "Adopt legal and administrative measures necessary to make effective the investigation and sanction of cases of discriminatory police practices and the use of excessive force by security forces, along with the carrying out of awareness-raising campaigns", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Take measures to review all relevant legislation with a view to end discrimination against women and girls", - "values": [ - "4 - General action" - ] - }, - { - "text": "Review its legal framework to provide for a better protection and promotion of women's rights ", - "values": [ - "3 - Considering action" - ] - }, - { - "text": "Increase the number of available shelters for victims of violence and their children", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Take further steps to promote tolerance, cultural diversity and integration in the country and internationally", - "values": [ - "4 - General action" - ] - }, - { - "text": "Continue and increase its efforts to combat all forms of violence against women ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Implement a national programme devoted to eliminating the trafficking in women and girls and their involvement in acts of sexual exploitation while, at the same time, addressing the root causes of such crimes, and to include measures aimed at the social reintegration and rehabilitation of such individuals", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Continue efforts to address human trafficking, including the development of stricter legislation and assistance for victims' reintegration and recovery", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Strengthen efforts to combat family violence against women and children, especially within indigenous communities", - "values": [ - "4 - General action" - ] - }, - { - "text": "Accede to the Second Optional Protocol to the International Covenant on Civil and Political Rights.", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Continue the efforts undertaken by the Government to guarantee inhabitants access to adequate housing and take the legal measures required to ensure the right to land tenure, in conformity with international law and international standards, and thus avoiding forced evictions", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Allow peaceful opposition groups and parties to operate freely and exercise their rights to freedom of assembly, association, expression, and religion in accordance with international human rights norms", - "values": [ - "4 - General action" - ] - }, - { - "text": "Ensure that the new constitution guarantees equality between women and men ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Take concrete steps to implement the National Action Plan against racism and accelerate its efforts at combating all racially motivated crimes", - "values": [ - "4 - General action" - ] - }, - { - "text": "Implement in good faith relevant provisions of the Resolution 1648 (2009) adopted by the Parliamentary Assembly of the Council of Europe", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Ratify the Optional Protocols to the International Covenant on Civil and Political Rights", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Adopt measures to reduce violence against women and girls and violence based on sexual orientation and gender identity", - "values": [ - "4 - General action" - ] - }, - { - "text": "Effectively implement the Law against Domestic Violence by raising awareness of this law to public officials, to local community leaders and by citizenship education, and additionally discourage cultural practices that violate women's rights, such as forced and early marriage", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Develop and implement a comprehensive national action plan to prevent and address the consequences of child marriage by, inter alia, ensuring the investigation and prosecution of domestic violence against women and revising the legal incongruence concerning the minimum age of marriage", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Re-establish the moratorium on death penalty in all cases. If not, extend that moratorium to the cases that are contrary to international law, including the death penalty for sexual orientation", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Build on existing inclusion strategies by implementing public awareness campaigns and education programmes to promote diversity and tolerance, while condemning racism and xenophobia", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Investigate the killings of journalists since October 2011 and bring perpetrators to justice", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Strengthen policies and programmes to combat poverty and social inequalities ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Meet its reporting obligations under the Convention on the Rights of the Child.", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Address the causes of the high number of acquittals in sexual violence cases against women", - "values": [ - "4 - General action" - ] - }, - { - "text": "Continue the efforts to increase the effectiveness of the national human rights system and share its experiences with other States in the process of undertaking similar reforms ", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Prioritize the implementation of measures to address all forms of violence against women in the family and in society and to ensure that women victims of violence have immediate means for protection and reparation.", - "values": [ - "4 - General action" - ] - }, - { - "text": "Advance the implementation of the Convention on the Rights of Persons with Disabilities by improving the inclusion of children and persons with disabilities in education and employment", - "values": [ - "4 - General action" - ] - }, - { - "text": "Increase measures to ensure that violence and discrimination against members of vulnerable groups, such as women and lesbians, gay, bisexual, and transgender persons, are both prevented and prosecuted ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Further adopt policies and legislation to combat discrimination and violence against women and children, particularly domestic and sexual violence ", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Appoint more women to positions of responsibility within the army and the police as a first step towards ending gender-based violence", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Ensure that the Independent Police Investigative Directorate investigates all allegations of torture", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Become a State party of the Optional Protocol to the Convention on the Rights of the Child on a communications procedure ", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Continue to harmonize its legislation with the international human rights norms ", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Consider introducing a moratorium on capital executions with a view to fully abolishing the death penalty", - "values": [ - "3 - Considering action" - ] - }, - { - "text": "Further develop measures to protect freedom of religion, expression and peaceful assembly and continue to build on the progress begun with the establishment of the State Agency for Religious Issues and the amendments to the Law on Broadcasting", - "values": [ - "4 - General action" - ] - }, - { - "text": "Better protect witnesses giving evidence and human rights defenders", - "values": [ - "4 - General action" - ] - }, - { - "text": "Continue its efforts to reduce early dropouts from education and training", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Pursue efforts to guarantee safety to persons with albinism and prevent their stigmatization and discrimination in their regard, including the implementation of programmes to sensitize the public opinion", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Take effective measures to ensure the equal treatment of women in law and practice, in accordance with its international obligations under the Convention on the Elimination of All Forms of Discrimination against Women", - "values": [ - "4 - General action" - ] - }, - { - "text": "Repeal the death penalty from the domestic legal order and ratify the Second Optional Protocol to the International Covenant on Civil and Political Rights", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Resolve issues related to truth, justice and reconciliation within the national framework", - "values": [ - "4 - General action" - ] - }, - { - "text": "Tighten cooperation with the human rights mechanisms of the United Nations, allowing visits of the Special proceduress mandate holders ", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Take legal and practical measures to eliminate violence and discrimination against women particularly in the rural and remote areas of Brazil ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Continue improving health-care performance indicators through upgrading of the national health system", - "values": [ - "4 - General action" - ] - }, - { - "text": "Make efforts to overcome gender stereotyping, which continues to perpetuate discrimination against women, and increase representation of women, including Roma women in the legislative bodies, the Government and the public administration, particularly in senior positions", - "values": [ - "4 - General action" - ] - }, - { - "text": "Reinforce the prohibition of torture in the new constitution, which is pending approval", - "values": [ - "4 - General action" - ] - }, - { - "text": "Harmonise anti-discrimination laws and broaden their scope to include as grounds religion, age and sexual orientation", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Formulate a national policy on sexual education.", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Continue its efforts particularly to ensure equal treatment in the education system and equal access to job opportunities ", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Adopt further measures with the aim of guaranteeing freedom of speech and the independence of the media", - "values": [ - "4 - General action" - ] - }, - { - "text": "Implement further measures, with regard to maternal mortality and child mortality, to save mother and child ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Ratify the core international human rights instruments", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Incorporate human rights education and awareness training into the school curriculum through cooperation with and assistance from the international community ", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Ratify the Rome Statute of the International Criminal Court and incorporate its provisions into national legislation, and accede to the Agreement on Privileges and Immunities of the Court", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Further empower the socioeconomic development of the regions inhabited by the Amazigh peoples", - "values": [ - "4 - General action" - ] - }, - { - "text": "Ensure that a gender perspective is fully integrated in the next stages of the review, including in the outcome of the Universal Periodic Review and that the gender perspective be systematically and continuously integrated in this follow-up process.", - "values": [ - "4 - General action" - ] - }, - { - "text": "Pursue measures to eliminate poverty, through implementation of comprehensive public policies with a human rights-based approach ", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Further strengthen human rights, particularly economic, social and cultural rights, in order to increase the quality of life of its people, with the cooperation and technical assistance needed by the country", - "values": [ - "4 - General action" - ] - }, - { - "text": "Establish a de jure moratorium on the use of the death penalty as a step towards its abolition ", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Continue efforts aimed at reinforcing women's access to positions of responsibility and decision-making", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Strengthen its laws prohibiting physical abuse of children, including sexual exploitation ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Intensify efforts and cooperative engagement with a view to carrying out the speedy repatriation of already identified illicit funds and proceeds of corruption to countries of origin to aid the latter in the attainment of the Sustainable Development Goals", - "values": [ - "4 - General action" - ] - }, - { - "text": "Continue to ratify relevant international conventions", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Strengthen measures to reduce repetition and dropout rates and evaluate the outcome of such measures, as well as to continue to fight child poverty and address issues such as street children, child labour and child trafficking and smuggling ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Comply with the provisional measures prescribed by the International Court of Justice", - "values": [ - "4 - General action" - ] - }, - { - "text": "Continue the introduction of advanced programmes for ensuring fundamental rights, especially for vulnerable groups", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Take swift and immediate measures to protect and promote human rights, especially the rights of large sectors of people displaced from areas affected by armed conflict, in accordance with international humanitarian law and international human rights law ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Pursue the human and financial investments in the health and hospital services with the aim of reinforcing the health system", - "values": [ - "4 - General action" - ] - }, - { - "text": "Take steps to implement laws and policies with a view to eliminating early and forced marriage", - "values": [ - "4 - General action" - ] - }, - { - "text": "Continue further improvement of the legislative framework regarding rights of women in Angola", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Fast-track the implementation of Acts Nos. 09/2015 and 010/2016, on setting quotas for women\u2019s access to senior civil service posts and on combating harassment in the workplace, respectively", - "values": [ - "4 - General action" - ] - }, - { - "text": "Fully implement the Constitution to ensure the administration of justice and the rule of law and also establish an independent human rights institution to oversee human rights issues", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Carry out a prompt, independent and impartial investigation aimed at determining the fate or whereabouts of Sombath Somphone", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Ensure that all State surveillance activities are in line with international human rights law and do not infringe on citizen's fundamental rights and freedoms", - "values": [ - "4 - General action" - ] - }, - { - "text": "Effectively prevent and prosecute female genital mutilation", - "values": [ - "4 - General action" - ] - }, - { - "text": "Efficiently combat international trafficking in young women and prosecute the authors of such crimes", - "values": [ - "4 - General action" - ] - }, - { - "text": "Cooperate with the Special Rapporteurs, such as the Special Rapporteur on torture, who have been refused access to Iran since 2005, despite the standing invitation extended to them", - "values": [ - "4 - General action" - ] - }, - { - "text": "Accelerate the process towards ratification of the Convention on the Rights of Persons with Disabilities ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Promote the adoption of a new national migration legislation", - "values": [ - "4 - General action" - ] - }, - { - "text": "Continue developing the institutional framework with respect to the promotion and protection of human rights ", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Establish a task force of relevant ministries and civil society organizations to develop a plan to desegregate Roma education and to ensure the necessary resources are available to begin implementation ", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Pronounce a moratorium on the use of the death penalty with a view to its prompt abolition", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Ensure that the United States international aid allows access to sexual and reproductive health services for women victims of sexual violence in conflict situations", - "values": [ - "4 - General action" - ] - }, - { - "text": "Take necessary steps to fight human trafficking", - "values": [ - "4 - General action" - ] - }, - { - "text": "Take measures to eradicate traditional stereotypes of women, especially through educational programmes and the enactment of legislation on domestic violence and all forms of sexual violence", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Build on efforts to address all forms of violence against women by enacting specific laws that prohibit domestic and sexual violence, including intimate partner violence, and by investigating all allegations of violence, prosecuting perpetrators, and ensuring victims are protected and have access to medical and legal services", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Study the possibility of ratifying the International Covenant on Economic, Social and Cultural Rights, the Convention for the Protection of All Persons from Enforced Disappearance, the Convention against Torture, and the International Convention on the Protection of the Rights of All Migrant Workers and Members of Their Families ", - "values": [ - "3 - Considering action" - ] - }, - { - "text": "Pursue progress in terms of the right to intercultural and inclusive education", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Intensify efforts to transfer land and to systematically consult with indigenous peoples before granting licences for economic exploitation.", - "values": [ - "4 - General action" - ] - }, - { - "text": "Investigate all case of threat and attacks against human rights defenders", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Implement additional measures to ensure equal access for girls and women to all levels of\neducation, including provision of incentives to girls and their families to remain in school, development\nof non-formal educational opportunities to reduce illiteracy among girls and women and increased\naccess to adult education ", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Intensify its response to the spread of HIV infection by implementing the new National HIV and AIDS Strategic Plan", - "values": [ - "4 - General action" - ] - }, - { - "text": "Ratify the Rome Statute of the International Criminal Court, signed in 1998", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Continue with measures undertaken to reduce discrimination against migrants and ethnic minorities", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Increase its efforts in favour of indigenous populations to ensure the satisfaction of their basic needs water, health, education and to combat social exclusion affecting them ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Strengthen its efforts to fulfil its obligations under CEDAW", - "values": [ - "4 - General action" - ] - }, - { - "text": "Continue to ensure full access to education for children", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Continue its efforts in promoting the rights of persons with disabilities by, inter alia, effectively implementing its law on employment, adopting the law on protection of the rights of persons with disabilities and their social inclusion in line with the Convention on the Rights of Persons with Disabilities, and ensuring inclusive education for children with special needs", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Refrain from adopting legislation which may limit the rights and freedoms of lesbian, gay, bisexual, transgender and intersex persons", - "values": [ - "4 - General action" - ] - }, - { - "text": "Develop programmes aimed at promoting the awareness of law enforcement officials on human rights values and principles", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Release imprisoned opposition party members and allow their full participation in the 2010 elections ", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Adopt effective measures to combat racism, racial discrimination and incitement to racial hatred, and in particular, to prohibit the dissemination of racist and xenophobic propaganda ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Respect the inalienable rights of Palestinians and end all occupation of occupied Arab territories.", - "values": [ - "4 - General action" - ] - }, - { - "text": "Prosecute and punish perpetrators of acts of torture in accordance with the law", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Strengthen implementation of the comprehensive public policy for indigenous peoples, with a view to promoting and protecting all their rights, and strengthen the Paraguayan Indigenous Institute to ensure the right to consultation and participation of indigenous peoples in decision-making, in accordance with its obligations under the ILO Convention No. 169 ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Seek the requisite technical assistance needed in order to meet its international human rights obligations", - "values": [ - "1 - Minimal action" - ] - }, - { - "text": "Take measures, in law and in practice, to end all forms of child labour, in accordance with the highest international standards ", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Strengthen the Austrian Ombudsman Board and expand its mandate at the earliest to ensure full compliance with the Paris Principles ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Redouble efforts in combating domestic violence and violence against women, including through ensuring effective implementation of the National Strategy of Protection against Family Violence 2011-2016", - "values": [ - "4 - General action" - ] - }, - { - "text": "Strengthen efforts in infrastructure development in the country", - "values": [ - "4 - General action" - ] - }, - { - "text": "Continue efforts to abolish the death penalty and ratify the Second Optional Protocol to the International Covenant on Civil and Political Rights, aiming at the abolition of the death penalty", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Improve the efficiency of the implementation of the Gender Equality Act, to pay special attention to domestic violence against women and adopt the necessary legislation in order to prevent violence and protect victims", - "values": [ - "4 - General action" - ] - }, - { - "text": "Continue efforts to ensure the effective operation and full independence of the Human Rights Commission, in keeping with the Paris Principles", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Create local preventive mechanisms at each state level for effective implementation of the National Mechanism for the Prevention and Combat of Torture", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Immediately close down all political prison camps and unconditionally release all prisoners of conscience, including relatives being held on the basis of "guilt-by-association"", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Promote greater accountability for the failure of police officers to comply with professional standards of conduct, and carry out full, impartial and independent investigations where the use of force results in the killing of civilians ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Strengthen the legislative process under way related to the education sector", - "values": [ - "4 - General action" - ] - }, - { - "text": "Respond regularly to questionnaires sent by special procedures mandate holders.", - "values": [ - "4 - General action" - ] - }, - { - "text": "Continue to review its legislation concerning the death penalty ", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "As part of ongoing justice reform, elaborate use of force provisions that include accountability for private security firms", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Strengthen the relevant legislative and implementation frameworks regarding the violence against women ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Switzerland is considering the possibility of establishing a national human rights institution in accordance with the Paris Principles. ", - "values": [ - "3 - Considering action" - ] - }, - { - "text": "Bar military courts from trying civilians and allow their monitoring by international observers and human rights organizations", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Continue applying measures to improve the rights of persons with disabilities, in particular through the implementation of the policy on disability 2016-2020", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Extend standing invitations to the Special Rapporteur on the independence of judges and lawyers and the Special Rapporteur on extrajudicial, summary or arbitrary executions, to adopt necessary measures aimed at establishing the Truth and Reconciliation Commission ", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Strengthen the rule of law and the current legal reform process for better ensuring equality, freedom and enjoyment of all human rights for its people, especially vulnerable groups like women and children", - "values": [ - "4 - General action" - ] - }, - { - "text": "Follow up on and implement the recommendations made by the Committee on the Elimination of Discrimination against Women, in particular those referring to the adoption of legislation and policies to eliminate violence against women, female genital mutilation and child marriage ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Upon ratification, implement the Optional Protocol to the Convention against Torture and Other Cruel, Inhuman or Degrading Treatment or Punishment", - "values": [ - "3 - Considering action" - ] - }, - { - "text": "Gradually increase measures to reduce illiteracy rates of boys and girls, and develop programs specifically aimed at reducing dropout rates using, perhaps, incentives for families through financial or food support ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Continue pursuing appropriate policies designed to provide for equal opportunities to members of the Traveller community, with special focus on access to health care, education and housing, including ensuring Travellers' participation in public life related decision-making process ", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Allocate sufficient resources to implement its youth policy to ensure meaningful use of youth delegates participating in international forums, and inclusion of youth in rural areas and strengthen political impartiality and independence of youth representation", - "values": [ - "4 - General action" - ] - }, - { - "text": "Take all necessary measures to put an end to impunity by prosecuting alleged perpetrators in accordance with law and international standards ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Adopt a domestic legislation in accordance with the 1951 Convention on the Status of Refugees and the Optional Protocol thereto, guaranteeing efficient access to procedures for determining refugee status to persons requiring international protection", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Prohibit all forms of discrimination and violence against women ", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Continue to increase inputs in education so as to improve the quality and coverage of the education system", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Raise the minimum age for marriage of both sexes to bring it in line with international standards ", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Do more to fight discrimination against Liberian women by allowing them to transmit their nationalities to their children and their spouses", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Consider taking steps to protect human rights defenders from threats and intimidation to ensure they can perform their functions properly", - "values": [ - "4 - General action" - ] - }, - { - "text": "Extend free legal advice and aid to persons appealing their convictions", - "values": [ - "4 - General action" - ] - }, - { - "text": "Ratify the Optional Protocol to the Convention against Torture and Other\nCruel, Inhuman or Degrading Treatment or Punishment with a view to establishing a national preventive mechanism \n", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Cooperate with the United Nations with a view to ensuring the return of all refugees and internally displaced persons to their regions", - "values": [ - "4 - General action" - ] - }, - { - "text": "Consider establishing a system which guarantees all children, regardless of the parents\u2019 nationality and status, the right to birth registration", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Conform its national legislation to international norms on the prevention of torture, to speed up the ratification of the Convention against Torture and Other Cruel, Inhuman or Degrading Treatment or Punishment and receive the Special Rapporteur on Torture ", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Take measures in order to strengthen the mechanisms to detect, identify and assist vulnerable migrants at the border, including minors, potential asylum seekers and victims of trafficking", - "values": [ - "4 - General action" - ] - }, - { - "text": "Consider enacting specific legislation to combat human trafficking", - "values": [ - "3 - Considering action" - ] - }, - { - "text": "Take stern and swift action by the authorities on all complaints on the treatment of migrants by the public and private authorities, as well as regular publishing of data and reports about the incidents of racially motivated crimes ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Put an end to the process of expanding colonies and to racial discrimination which are an inadmissible violation of elementary rights of Palestinians in the occupied territories, including Jerusalem ", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Increase international, regional and bilateral cooperation to prevent human trafficking", - "values": [ - "4 - General action" - ] - }, - { - "text": "Intensify its efforts in realizing gender equality through conducting awareness-raising and public educational campaigns with a view to bring about changes in such attitudes, and underlining that all forms of violence against women, including domestic violence, are unacceptable ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Strengthen the implementation of the Anti-Discrimination Act in order to curb racism, racial discrimination, xenophobia, propaganda and attacks", - "values": [ - "4 - General action" - ] - }, - { - "text": "Continue to work to address the challenges posed by the increasing flows of irregular migration", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Review legislation on migration and refugee status", - "values": [ - "3 - Considering action" - ] - }, - { - "text": "Play an effective role to operationalize the right to development at the international level", - "values": [ - "4 - General action" - ] - }, - { - "text": "Continue the Public Security and the Criminal Justice System reforms", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Change its policy in order for the commutation of death sentences to be effectively claimed for all Canadian citizens sentenced to the death penalty abroad ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Increase efforts to prosecute and convict human traffickers through the training of investigators, prosecutors and judges on detecting and prosecuting such crimes", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Take measures in order to effectively combat violence against women and domestic violence ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Continue efforts aimed at increasing women's access to employment, public life, education, housing and health, through their full participation in the political, economic, social and cultural fields", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Accelerate the process of adopting the National Strategy and Plan of Action on Violence against Children", - "values": [ - "4 - General action" - ] - }, - { - "text": "Restore the independence and impartiality of the judiciary by appointing impartial, qualified judges and magistrates in accordance with its legal and constitutional requirements", - "values": [ - "4 - General action" - ] - }, - { - "text": "Establish a habeas corpus mechanism for preventing arbitrary detention", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Take necessary measures to address homophobic and transphobic crime, including by establishing a system for recording such crimes", - "values": [ - "4 - General action" - ] - }, - { - "text": "Effectively implement the current legislation on protection of women against domestic violence, ensure that the police effectively investigate complaints and increase the number, coverage and capacity of shelters for victims of domestic violence", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Take the necessary legislative and other measures to prevent children from being engaged in child labour", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Continue promoting sustainable economic and social development and raising the living standard of its people so as to lay down a firm basis for the enjoyment of human rights by its people", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Take all necessary measures to eliminate all forms of discrimination against children born outside of wedlock with regards to entitlement to maintenance and inheritance", - "values": [ - "4 - General action" - ] - }, - { - "text": "Continue the efforts undertaken for the ratification of international human rights instruments and for the harmonization of the national legislation", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Implement policies to meet the relevant 2030 Sustainable Development Goals so that all communities, regions and states can benefit from Myanmar's economic growth and it can graduate from Least Developed Country Status soonest", - "values": [ - "4 - General action" - ] - }, - { - "text": "With regard to consensual same sex activity between adults, take measures to promote tolerance and allow effective educational programmes on HIV-AIDS prevention.", - "values": [ - "4 - General action" - ] - }, - { - "text": "Continue pursuing measures and policy aimed at ensuring the rights of ethnic minorities' learning, writing and the development of their own languages according to the relevant laws", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Respect the sovereignty and self-determination of the Bolivarian Republic of Venezuela", - "values": [ - "4 - General action" - ] - }, - { - "text": "Consider abolishing the death penalty", - "values": [ - "4 - General action" - ] - }, - { - "text": "Further pursue the full investigation of alleged incidents of human rights violations by the police force, especially within detention centres", - "values": [ - "4 - General action" - ] - }, - { - "text": "Enhance the prevention, investigation and prosecution of violent crimes against individuals belonging to vulnerable groups", - "values": [ - "4 - General action" - ] - }, - { - "text": "Strengthen work on the wide dissemination of information on international norms and standards, and also the international obligations of Ethiopia in the field of promoting and protecting human rights ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Strengthen public education initiatives to ensure citizens are aware of rights associated with the new Anti-Discrimination Law and continue to promote equality through appropriate legislation, policy and practice ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Enhance civilian control over investigation of violations in the army and ensure protection of witnesses and victims ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Consider the possibility of ratifying the 1951 Convention relating to the Status of Refugees and its 1967 Protocol without reservations", - "values": [ - "3 - Considering action" - ] - }, - { - "text": "Continue efforts to address the remaining gaps in migrant workers' rights protection", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Repeal all legal provisions criminalising sexual activity between consenting adults and encourage the Malawi Human Rights Commission to include in its mandate the protection of the rights of the lesbian, gay, bisexual, transgender and intersex community", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Strengthen the various monitoring mechanisms established for effective enforcement of the new legislations and action plans, in particular those targeting the inclusion of the most marginalized segments of the population", - "values": [ - "4 - General action" - ] - }, - { - "text": "Take all necessary measures for the strict separation of detainees according to their age, sex and status, with the aim of improving prison conditions, as follow-up to paragraphs 108.34, 108.36, 108.37 and 108.38 of the recommendations from the second cycle", - "values": [ - "4 - General action" - ] - }, - { - "text": "Complete the national guidelines for education in the field of human rights and pursue a participatory approach in cooperation with civil society ", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Take concrete and stern action to ensure equal treatment for all in the society, in particular to remove de facto discrimination against Roma people ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Request the necessary aid and technical assistance to the international development, to support the initiatives of the National Development Plan", - "values": [ - "1 - Minimal action" - ] - }, - { - "text": "Take steps to effectively guarantee trade union freedom", - "values": [ - "4 - General action" - ] - }, - { - "text": "Remove, in legislation and in practice, all restrictions preventing the full enjoyment of the freedom of expression as guaranteed under the International Covenant on Civil and Political Rights and other international documents", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Establish its national human rights institution in accordance with the Paris Principles in a timely manner ", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "That its legislative framework and relevant institutional mechanisms be strengthened in order to exclude all discriminatory practices that prevent equal access to employment for persons belonging to ethnic, national or religious minorities ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Redouble its efforts to combat discrimination against those of foreign origin in education and employment ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Complete its review of the Code on Children and Adolescents to draw up legislation to prohibit corporal punishment and humiliating treatment of children and adolescents", - "values": [ - "3 - Considering action" - ] - }, - { - "text": "Adopt a concerted strategy to reduce the prison population, as overcrowding in prisons remains an issue in Benin", - "values": [ - "4 - General action" - ] - }, - { - "text": "Ratify and fully align its national legislation with the Rome Statute", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Provide adequate resources to fully implement its national plan against human trafficking, taking particular attention to curbing trafficking of women and girls ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Strengthen the Slovenian Human Rights Ombudsman", - "values": [ - "4 - General action" - ] - }, - { - "text": "Prosecute all cases of child marriage and female genital mutilation and punish the perpetrators according to the law", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Continue to fight poverty with active support of the international community and through strengthening the capacity to implement and monitor poverty reduction strategies at the local and community levels ", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Accede to or ratify the following international instruments: the International Convention on the Protection of the Rights of All Migrant Workers and Members of Their Families", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Develop and make public clear indicators to monitor progress in the implementation of the national human rights plan and allocate necessary resources to support implementation", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Share its experience and expertise, through multiform and multisectoral cooperation, with the countries of the region that are well behind in achieving Millennium Development Goals, noting that Goals 1 and 2 have been implemented and that Goals 5 and 7 are in the process of being implemented by Jamaica ", - "values": [ - "1 - Minimal action" - ] - }, - { - "text": "Continue to pursue social policies in keeping with well-established family values, and not to be intimidated by suggestions on social norms that are controversial, non- universal and specific to certain societies", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Effectively implement legal amendments in order to guarantee the rights of persons deprived of liberty, particularly in places of detention", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Take effective measures to enhance the access to public services concerning persons who do not speak the official language ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Ensure equal access to public health for lesbian, gay, bisexual and transgender persons", - "values": [ - "4 - General action" - ] - }, - { - "text": "Committed to continuing its efforts to defend the principle of equality between men and women, women's access to education, the place of women in the world of work and the rights of women in the family. ", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Adopt a comprehensive legislation on equality and gender violence", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Adopt a moratorium on executions with a view to the definitive abolition of the death penalty ", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Speed up the process of bringing the National Human Rights Commission in line with the Paris Principles, so as to strengthen its mandate", - "values": [ - "4 - General action" - ] - }, - { - "text": "Provide real financial and human support for the recent protection mechanisms set up for journalists", - "values": [ - "4 - General action" - ] - }, - { - "text": "Ensure that persons deprived of their liberty have access to their fundamental freedoms at all times ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Proceed to extradite former Bolivian authorities that are legally accused of crimes against humanity, in order to be brought to trial in their country of origin ", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Allocate more resources for establishing shelters for women subject to domestic violence and provide accommodation services for girls deprived of access to education", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Ratify the Optional Protocol to the Convention on the Rights of the Child on the involvement of children in armed conflict, and harmonize national legislation in conformity with the provisions of OP-CRC-AC", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Develop and implement a plan to provide accommodation and assistance to those with disabilities", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Include and rank the human rights situation in the United States in the United States Annual Country Reports on Human Rights as was done for the annual report on trafficking of persons", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Monitor the effectiveness of the protection available to persons with albinism and ensure accountability for all acts of violence against persons with albinism", - "values": [ - "4 - General action" - ] - }, - { - "text": "Promote cooperation between the Government and civil society in the area of human rights protection and promotion ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Develop a comprehensive operational plan for the promotion of gender equality and advancement of women, containing clear goals and timetables, as well as a mechanism for monitoring ", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Take the necessary steps to ratify or accede to the outstanding human rights instruments", - "values": [ - "4 - General action" - ] - }, - { - "text": "Invest more resources towards a better service delivery mechanism that will also ensure that the remaining internally displaced citizens return safely to their territories", - "values": [ - "4 - General action" - ] - }, - { - "text": "Continue moving forward in the empowerment of women, and in particular ensure that the salary gap between men and women is overcome ", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Take opportunities, offered within the framework of international cooperation and assistance, to step up its development programmes and its programmes to fight poverty and ensure reconstruction", - "values": [ - "4 - General action" - ] - }, - { - "text": "Sign and ratify OP-CAT", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Adopt and actively pursue a focused national strategy on combating all forms of violence against women, which would promote awareness - raising activities related to the Law to Combat Domestic Violence", - "values": [ - "4 - General action" - ] - }, - { - "text": "Continue the work to build-up the capacity in the area of human rights protection, including through strengthening the national human rights institution", - "values": [ - "4 - General action" - ] - }, - { - "text": "Sweden emphasizes its commitment to uphold and respect the principle of non-refoulement, in accordance with international conventions and agreements, for persons under Swedish jurisdiction.", - "values": [ - "4 - General action" - ] - }, - { - "text": "Continue to strengthen its poverty alleviation strategies, as well as its child protection strategies, particularly against the exploitation of children ", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Enact specific legislation which criminalizes all forms of violence against women, including within households ", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Continue to take steps to prevent and fight corruption to bring about equitable and sustainable growth for its people", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Accede to the Optional Protocol to the Convention against Torture and other Cruel, Inhuman or Degrading Treatment or Punishment (OPCAT).", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Develop human rights indicators, as suggested by the Office of the United Nations High Commissioner for Human Rights", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Continue efforts in environmental protection and in improving living conditions", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Extend a standing invitation to special procedures, respond positively to their requests to visit the country and cooperate fully, promptly and substantively with all mandate holders", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Address prison overcrowding by giving preference to alternatives to imprisonment when feasible in light of the United Nations Standard Minimum Rules for Non-Custodial Measures", - "values": [ - "4 - General action" - ] - }, - { - "text": "Continue the efforts to review existing legislation related to the family, in particular the regime applicable to children born out of wedlock", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "In the interest of religious tolerance, lift the bans on religious groups to enable them to practise their religions freely", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Take measures to eradicate poverty", - "values": [ - "4 - General action" - ] - }, - { - "text": "Strengthen the right to a fair trial, inter alia through the consequent implementation of relevant European Union standards", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Continue implementing strategies and socio-economic development plans to advance in the realization of the Millennium goals by 2015", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Take all necessary measures in order to strengthen the role and operation of the Ombudsman's Office", - "values": [ - "4 - General action" - ] - }, - { - "text": "Take effective measures to ensure freedom of expression and a safe enabling environment for social media ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Ensure that prisoners with disabilities have access to health care and rehabilitation on the basis of informed consent ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Continue with the reform to the penitentiary system, with a focus on fighting overcrowding and the reintegration of prisoners", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Continue strengthening the programmes to eradicate extreme poverty", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Review conditions in detention facilities, including the behaviour of police officers working in them, and develop options for the improvement of the prison system, including how to tackle the problem of overcrowding", - "values": [ - "3 - Considering action" - ] - }, - { - "text": "Continue to apply programmes and measures to improve the enjoyment of the right to education, the right to health, and the rights of women and children ", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Continue to take measures to improve prison conditions, namely overcrowding, poor medical care and unsanitary conditions", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Step up efforts to put an end to discriminatory practices, such as FGM, and criminalize marital rape and domestic violence ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Provide the Ombudsman for Human Rights and Justice with sufficient financial independence in order to guarantee its conformity with the Paris Principles", - "values": [ - "4 - General action" - ] - }, - { - "text": "Strengthen its measures to prevent and combat xenophobia and racial prejudices amongst politicians, public officials and the general public, as well as to promote tolerance between all ethnic and national groups ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Reinforce policies that favour access to education for rural population", - "values": [ - "4 - General action" - ] - }, - { - "text": "Update the Human Rights Council on the findings of the National Monitoring Mechanism and the measures taken to address the issue of extrajudicial killings, including the results of the relevant court procedures ", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Apply the road map on political rights through the holding of legislative elections", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Continue its efforts in addressing the increasing anti-Semitic incidents", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Take additional measures to prevent, combat and appropriately sanction trafficking in human beings ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Implement the UNDRIP", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Strengthen the Government's strategy on new migrants by considering the possibility of ratifying ICRMW.", - "values": [ - "4 - General action" - ] - }, - { - "text": "Consider establishing a moratorium on all executions of death penalty, with a view to its abolition", - "values": [ - "3 - Considering action" - ] - }, - { - "text": "Take all the necessary measures to combat violence and discrimination against children ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Accelerate effective implementation of the recommendations of the 2007-2011 Enabling Masterplan of the Ministry of Community Development, Youth and Sports and the National Council of Social Service to review and plan services for persons with disabilities ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Dedicate more resources to ensuring access to basic facilities to indigenous peoples including clean water, healthcare and education", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Continue working on improvement of quality education", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Allow independent observers access to places of detention ", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Enhance its awareness-raising campaign to combat negative stereotyping against women and prohibit violence against women", - "values": [ - "4 - General action" - ] - }, - { - "text": "Introduce as soon as possible a moratorium on executions ", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Strengthen training programmes for State officials in the field of minority rights", - "values": [ - "4 - General action" - ] - }, - { - "text": "Put in place a concrete national strategy containing effective measures aimed at strengthening the independent functioning of the judiciary", - "values": [ - "4 - General action" - ] - }, - { - "text": "Establish juvenile courts ", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Take further structural measures in order to reduce the school dropout rate ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Formally repeal section 377 A of the Penal Code criminalising homosexual acts", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Continue to improve access to healthcare and education ", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Adopt the draft National Strategy and Action Plan on Violence against Children", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Ensure sustainable and universal access to education for children, including children with disabilities and children living in remote areas", - "values": [ - "4 - General action" - ] - }, - { - "text": "Provide public information on the number of detention camps, including administrative detention centres for drug treatment set up by the police, the military and the Ministry of Labour, on the number of persons detained therein, as well as on all forms of work in which detainees are involved ", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Ensure that incidents of police abuse of detainees, including cases of abuse directed at immigrants, asylum-seekers and other foreign nationals, are prevented by strengthening legislation to protect the rights of arrested and detained individuals from physical mistreatment and ensuring that they are afforded a full complement of due process rights in accordance with its obligations under the International Covenant on Civil and Political Rights ", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Ensure that human rights defenders can exercise their legitimate activities, including participation in international mechanisms, without being subjected to reprisals", - "values": [ - "4 - General action" - ] - }, - { - "text": "Ensure that the national human rights programme for 2013-2018 takes full account of recommendations accepted by the Government at the 2nd UPR cycle", - "values": [ - "4 - General action" - ] - }, - { - "text": "The Swedish state's commitment to promote the Sami people%u2019s opportunities to preserve and develop their own cultural and community life was also strengthened. ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Abolish the death penalty completely ", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Allow unhindered access for independent human rights monitors by issuing a standing invitation to the Special Procedures of the Human Rights Council ", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Take judicial and other measures to put an end to the recruitment of child soldiers in all parts of its territory, and accordingly give further appropriate directions to the security forces and police to ensure their implementation", - "values": [ - "4 - General action" - ] - }, - { - "text": "Fully align its national legislation with the Rome Statute of the International Criminal Court, including by incorporating provisions to cooperate promptly and fully with the International Criminal Court and investigate and prosecute genocide, crimes against humanity and war crimes effectively before its national courts, and accede to the Agreement on the Privileges and Immunities of the International Criminal Court", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Provide prison guards and law enforcement officials in general, with human rights training specifically focusing on protection of human rights of women, children, national minorities and persons of minority sexual orientation or gender identity. and further to ensure investigation and punishment of all cases of violation of human rights by this personnel ", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Sign and ratify the Convention against Torture as soon as possible and implement its provisions ", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Implement reforms in the rule of law sphere to ensure fairness and due process, combat corruption, and improve transparency throughout the legal process", - "values": [ - "4 - General action" - ] - }, - { - "text": "Cease the use of military barracks as detention centres for civilians", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Accede to the Optional Protocol to the Convention against Torture", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Consider establishing a national human rights institution ", - "values": [ - "3 - Considering action" - ] - }, - { - "text": "Continue to implement Democratization Package 2013", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Provide for the comprehensive protection and promotion of all human rights and fundamental freedoms within the envisaged constitutional reform ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Continue its efforts in the prevention and fight against racism, racial discrimination, xenophobia and related intolerance ", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Strengthen its migration laws to ensure protection of all migrants and their families against all forms of discrimination and adopt comprehensive public programmes with adequate budgetary resources for their effective implementation", - "values": [ - "4 - General action" - ] - }, - { - "text": "Consider ratifying the Kampala Convention and drawing up a plan of action for internally displaced persons ", - "values": [ - "3 - Considering action" - ] - }, - { - "text": "Consider enacting comprehensive equality legislation that will provide effective remedies and address discrimination on all grounds", - "values": [ - "3 - Considering action" - ] - }, - { - "text": "Proceed swiftly with the Optional Protocol of the CRPD", - "values": [ - "4 - General action" - ] - }, - { - "text": "Keep monitoring the application of the 2008 Surveillance Act to prevent interference with the right to privacy and to implement reforms to comply with its obligations under EU law as set out in the International Principles on the Application of Human Rights to Communications Surveillance", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Continue to maintain its level, framework and channel of official development assistance", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Revitalize endeavours intended for eradication of the wage gap between men and women that has reportedly stalled ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Continue aligning legislation, policies and programmes that anchor the rights of the child in order to stop children from working in harmful conditions, stop early marriages and criminalize all forms of child exploitation", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Continue with the measures aimed at eradicating gender discrimination, particularly in relation to migrant women", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Review its practices concerning the removal of children from the family environment and seek alternative solutions, as stipulated by the Committee on the Rights of the Child and the Committee on Economic, Social, and Cultural Rights, and ensure that all children in foster care have a legal guardian, as well as establishing a unified national guardian system for unaccompanied asylum seeking and refugee children, as recommended by the Committee on the Rights of the Child and UNHCR ", - "values": [ - "3 - Considering action" - ] - }, - { - "text": "Commit to inviting independent international observers to monitor future election processes ", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Adopt measures to protect the rights of certain vulnerable groups of children, in particular, girls, children born out of wedlock, and children with disabilities", - "values": [ - "4 - General action" - ] - }, - { - "text": "Guarantee free, obligatory, and quality education for all children", - "values": [ - "4 - General action" - ] - }, - { - "text": "Take appropriate legislative and administrative measures to combat domestic violence and physical ill-treatment against children, including the prohibition of the practice of corporal punishment", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Adopt a more effective and stringent good governance policy ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Eliminate fees for birth certificates and facilitate the issuance of birth certificates to all refugee children who do not have any yet", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Guarantee freedom of religion or belief by implementing existing laws to better protect individuals belonging to minority groups from hate speech, incitement to religious violence, discrimination on religious grounds and forcible conversions", - "values": [ - "4 - General action" - ] - }, - { - "text": "Ratify/accede to the Rome Statute of the International Criminal Court and to implement it fully at national level and to accede to the Agreement on Privileges and Immunities of the Court ", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Put equal emphasis and commitment on the realization of economic, social and cultural rights", - "values": [ - "4 - General action" - ] - }, - { - "text": "Strengthen policies that guarantee the human rights of migrant workers ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Investigate and prosecute those responsible for the attacks on peaceful lesbian and gay activists and ensure that future LGBT gatherings, including the annual GayFests, are both permitted and protected by the Romanian authorities.", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Take all necessary measures and implement all necessary programmes to overcome the obstacles that prevent women's status from progressing further", - "values": [ - "4 - General action" - ] - }, - { - "text": "Continue to allocate sufficient human and financial resources to fully implement its human rights policies and programmes", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Continue the measures to combat discrimination and intolerance experienced by racial and ethnic minorities, especially those measures to eradicate the dissemination of stereotypes which may encourage discrimination and xenophobic manifestations towards migrants ", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Continue its legal actions on the protection of women and children", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Continue efforts to ensure the safety, security and dignity of migrant workers and to protect their interests through taking the requisite institutional and legislative measures ", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Revise the Criminal Code and the Criminal Procedure Code as part of the ongoing reform of the justice sector", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Draw up plans for transitional justice to ensure that all perpetrators of human rights abuses would be brought to justice", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Review its legislation on communications and bring it in line with international standards", - "values": [ - "3 - Considering action" - ] - }, - { - "text": "Continue its efforts for proper implementation of the constitutional reforms concerning the protection of children and older persons", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Continue its efforts to create a national human rights institution", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Adopt a law to protect vulnerable women, particularly low-income housewives", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Make additional efforts in the area of human trafficking by developing new measures which would allow a better prosecution of criminal organizations as well as better protection of victims", - "values": [ - "4 - General action" - ] - }, - { - "text": "Work actively to reduce the number of stateless residents in the country", - "values": [ - "4 - General action" - ] - }, - { - "text": "Allow the United Nations and other international organizations to access those in need, particularly in all besieged and hard-to-reach areas", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Ensure the effective implementation of the Family Protection Act including through investigations and prosecutions of perpetrators of violence against women", - "values": [ - "4 - General action" - ] - }, - { - "text": "Create a human rights institution at the federal level in accordance with the Paris Principles as a national "focal point" for the promotion and protection of human rights", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Ratify the Kampala convention and create an adequate national and legal policy framework to effectively deal with internally displaced people", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Establish a form of effective judicial control over administrative decisions of the Office for Youth called Jugendamt", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Take appropriate measures for a better integration of indigenous women within society ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Establish programmes on training and education for human rights at various school levels", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Take the necessary measures in terms of the criminal law to punish acts of all forms of violence against women and girls", - "values": [ - "4 - General action" - ] - }, - { - "text": "Take further measures to improve the security of journalists and to ensure that violations of the rights of journalists are fully and promptly investigated and that any one found responsible is brought to justice according to international standards ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Prosecute and monitor cases of incitement to racial discrimination and racist propaganda", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Adopt comprehensive anti-discrimination legislation that includes all the grounds for discrimination", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Adopt measures and establish a formal platform to guarantee and protect the rights of indigenous peoples", - "values": [ - "4 - General action" - ] - }, - { - "text": "Take urgent steps to end the continuing practice of placing babies and young children under the age of 3 in institutionalized care, and ensure the availability of family-based alternatives", - "values": [ - "4 - General action" - ] - }, - { - "text": "Continue efforts in the field of human rights education and training", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Consider options for developing the human rights institutions according to the Paris Principles, as emphasized by the Committee on the Elimination of Racial Discrimination ", - "values": [ - "3 - Considering action" - ] - }, - { - "text": "Take new measures to eliminate all forms of discrimination against women and to promote their participation in public life, including in decision-making positions and governmental functions", - "values": [ - "4 - General action" - ] - }, - { - "text": "Consolidate access to information and culture of all people ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Take into consideration the possibility of abolishing the death penalty", - "values": [ - "4 - General action" - ] - }, - { - "text": "Do everything possible, in cooperation with the Republic of Korea, to ensure that the maximum number of meetings of separated families is organized ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Increase governmental efforts to ensure that women, in particular single mothers, can have access, as men do, without any discrimination, to employment, equal pay and matrimonial rights, especially following an inheritance or a divorce", - "values": [ - "4 - General action" - ] - }, - { - "text": "Take necessary measures aimed at eliminating all discriminatory treatment on the basis of sexual orientation or gender identity", - "values": [ - "4 - General action" - ] - }, - { - "text": "Redouble its efforts to guarantee the independence of the National Human Rights Commission and provide it with the necessary resources", - "values": [ - "4 - General action" - ] - }, - { - "text": "Continue its efforts in addressing the challenges in the promotion of the rights to education, inter alia through addressing high rates of student withdrawal from schools", - "values": [ - "4 - General action" - ] - }, - { - "text": "Further develop policies and measures to promote the rights of the national minorities", - "values": [ - "4 - General action" - ] - }, - { - "text": "Continue with its efforts to combat corruption", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Give adequate training on the Law on combating trafficking in human beings to all those involved in the fight against human trafficking, especially border guards ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Continue its efforts to promote and protect the rights of women", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Take immediate steps to stop the use of torture and ill-treatment in all instances of deprivation of freedom", - "values": [ - "4 - General action" - ] - }, - { - "text": "Strengthen its Professional Standard Division within the Liberian National Police to investigate and prosecute all allegations of professional misconduct in accordance with international standards, and implement extensive human rights education and training programmes for law enforcement personnel", - "values": [ - "4 - General action" - ] - }, - { - "text": "Recommended a moratorium on executions with a view to abolishing the death penalty, as provided by General Assembly resolution 62-149.", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Implement a comprehensive national policy to prevent the use or recruitment of child soldiers and undertake all efforts to provide opportunities, especially educational ones, for children ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Close political prison camps, eliminate discrimination based on the "songbun" system and cooperate with human rights mechanisms, including the Special Rapporteur on the situation of human rights in the Democratic People's Republic of Korea ", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Begin fully cooperating with United Nations human rights special procedures in order to improve the situation of human rights ", - "values": [ - "4 - General action" - ] - }, - { - "text": "In recognition of the importance of the special procedures and the mechanisms of the Human Rights Council, Bahrain pledges to: - Respond in a timely manner to requests for official visits from special rapporteurs, special representatives, independent experts and working groups. It will develop effective policies and mechanisms to respond to these requests. ", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Strengthen measures aimed at reducing serious inequalities in access to health, education and employment, which still exist despite the adoption of the Equality Act ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Sensitize law enforcement and judicial authorities towards gender- based violence and increase protection and support services, including prescribing protective measures, for female victims of violence", - "values": [ - "4 - General action" - ] - }, - { - "text": "Aligning traditional laws and procedures with principles that protect particularly the balance of socio-economic rights of men and women both in the family and in the society, as well as the rights of the child", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Increase efforts in addressing violence against women, including a provision of access to justice and medical care for victims as well as their social reintegration, in particular within the context of the armed conflict", - "values": [ - "4 - General action" - ] - }, - { - "text": "Cease all intimidation or repression against human rights defenders, journalists and Non-Governmental Organizations ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Develop and implement efficient policies for child victims of abuse, neglect and trafficking, including ensuring redress and victims' reintegration ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Establish a national human rights institution with a broad mandate and adequate resources, in line with the Paris Principles", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Regulate and guarantee the rights of workers in accordance with the standards of the European Social Charter, by means of a dialogue with social agents and social stakeholders, and by seeking maximum parliamentary consensus", - "values": [ - "4 - General action" - ] - }, - { - "text": "Allocate the resources necessary to develop programmes for an effective witness support network", - "values": [ - "4 - General action" - ] - }, - { - "text": "Take additional positive measures to ensure that all citizens can enjoy basic health care, and provide the public medical institutions with sufficient medicines and medical equipment ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Include sale and abduction of children in the data collection system of the National Commission for the Care and Social Reintegration of Child Victims of Trafficking with a view to guarantee the operational continuity and effectiveness of the commitments undertaken through the cooperation agreements to combat trafficking in children ", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Promptly approve legislation establishing an NHRI in full compliance with the Paris Principles", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Lift its reservations to the following international conventions: ICERD, the Convention on the Elimination of All Forms of Discrimination against Women (CEDAW), the International Covenant on Civil and Political Rights and CRC ", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Eliminate discrimination in employment, particularly for women and members of the Roma population, pursuant to recommendations of the International Labour Organization supervisory bodies", - "values": [ - "4 - General action" - ] - }, - { - "text": "Take necessary measures to actively combat violence against women and promote gender equality, in particular by reforming discriminatory legislation against women", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Continue to promote the access of vulnerable groups to education", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Strengthen its efforts to protect the human rights of all Ireland's citizens, including those from sub-Saharan Africa", - "values": [ - "4 - General action" - ] - }, - { - "text": "Review and abolish those legal and practical measures which precluded the naturalized Monegasques, being eligible for elections, in particular articles 54 and 79 of the Constitution in order to remove any inappropriate differentiation between its citizens ", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Provide adequate resources for the full implementation of the several national action plans on human rights promotion and protection ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Establish an ombudsperson for the rights of children and adolescents, in accordance with the Paris Principles", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Repeal any legislation that infringe upon individuals' right to privacy such as the video surveillance of private homes", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Strengthen the process toward building the state with the rule of law and good governance for facilitating the political stability and sustainable social and economic development ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Strengthen measures aimed at preventing and eliminating discrimination on the basis of race and ethnicity", - "values": [ - "4 - General action" - ] - }, - { - "text": "Continue the efforts in view of the realization of the 2011-2013 programme on combatting human trafficking", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Enact legislation to recognize civil partnership and amend the Criminal Code to explicitly prohibit incitement to hatred, violence or discrimination against persons on the basis of sexual orientation or gender identity ", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Adopt the draft law on the prevention of torture and ensure that it complies with the provisions of the Convention against Torture and Other Cruel, Inhuman or Degrading Treatment or Punishment", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Accede to the International Convention on the Protection of the Rights of All Migrant Workers and Members of their Families ", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Issue a standing invitation to the special procedures of the United Nations ", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Decriminalize the practice of leaving the country without permission or at least allow free movement of citizens within the country ", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Undertake effective restructuring of the judicial system, armed forces, police and other security forces, with the aim of strengthening the protection of human rights in law enforcement ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Abolish anti-conversion laws and grant access to justice to victims of religious violence and discrimination", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Continue finding alternative family care for vulnerable children so as to avoid placing them in institutional care", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Conduct thorough and objective investigation of facts concerning use of torture against imprisoned persons in the secret prisons of United States of America and detainees of the detention centres in Bagram and Guantanamo, bring those who are responsible for these violations to justice, and undertake all necessary measures to provide redress to those whose rights were violated, including payment of necessary compensation ", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Work effectively on incorporating the the Convention on the Rights of the Child into Swedish laws", - "values": [ - "4 - General action" - ] - }, - { - "text": "Continue the significant efforts underway to ensure gender equality", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Provide the necessary support, including adequate shelter, to all victims of domestic violence", - "values": [ - "4 - General action" - ] - }, - { - "text": "Accelerate the process of elaboration of the national plan of action against racial discrimination", - "values": [ - "4 - General action" - ] - }, - { - "text": "Ensure the protection and welfare of civilians in the occupied State of Palestine ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Effectively and promptly investigate all reports of attacks or threats against human rights defenders and journalists and bring perpetrators to justice", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Establish an accredited national human rights institution in the near future", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Keep up its efforts in raising awareness among law enforcement officers and security personnel throughout the country", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Speed up efforts towards the establishment of an independent national human rights institution in conformity with the Paris Principles", - "values": [ - "4 - General action" - ] - }, - { - "text": "Adopt expeditiously a law on gender equality, empower its National Committee on Gender Equality, and take appropriate measures to eliminate discrimination against women, hence promoting their advancement, with a particular focus on the most vulnerable groups, such as rural women ", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Implement the 2006-2016 Programme for Children and Youth", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Continue efforts to prevent illicit drugs consumption and trafficking, which are a remaining problem without a social impact in Cuba ", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Adopt comprehensive measures to combat the growth of child prostitution ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Continue to promote the participation of women in the public and political life of the country ", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Continue strengthening the judicial system to ensure its independence", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Continue its positive efforts to improve the human rights situation in its country", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Strengthen cooperation with human rights mechanisms and to continue the efforts initiated in order to combat discrimination against ethnic minorities ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Reinforce efforts to eliminate the discrimination against indigenous children, Afro-descendants, migrants and persons with disabilities ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Ensure that all private security companies are registered and that their activities are properly monitored", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Seek effective ways of support and coordination with the European Union in order to deal with migrants within the international human rights law framework, regardless of their migrant status", - "values": [ - "4 - General action" - ] - }, - { - "text": "Continue with its efforts to improve the conditions of persons with disabilities, in particular through support for reasonable accommodation in the workplace as well as access to education countrywide", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Allow immediate, complete, continued and unimpeded humanitarian access to all populations in need throughout the whole territory, in particular in besieged and hard-to-reach areas", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Expedite the implementation of the legal guarantees to ensure the independence of the judiciary ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Support OHCHR in accordance with the available mechanisms and cooperate with those mechanisms in order to facilitate OHCHR's discharge of its functions in conformity with its human rights mandate.", - "values": [ - "4 - General action" - ] - }, - { - "text": "Boost its recent ratification of the 2013 Marrakesh Treaty to Facilitate Access to Published Works for Persons Who Are Blind, Visually Impaired, or Otherwise Print Disabled, in order to benefit blind people, people with visual disability or with other difficulties to access printed texts", - "values": [ - "4 - General action" - ] - }, - { - "text": "Reinforce legislation and adopt effective measures to prevent, combat and punish human trafficking ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Restore the independence and mandate of the NHRC in line with the Paris Principles ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Take concrete measures to ensure a safer environment for both women and girls ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Continue to take necessary measures for carrying those reforms taken towards a consolidated democracy rapidly into effect", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Accede to the Optional Protocol to the Convention against Torture and Other Cruel, Inhuman or Degrading Treatment or Punishment (OP-CAT) and harmonize its domestic legislation with human rights treaties, and in particular, incorporate torture as a criminal offense in its domestic legislation. In accordance with its policy on "zero tolerance", harmonize in a non-restrictive manner the Convention on the Rights of the Child (CRC)", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Pay particular attention to efforts aimed at reducing maternal mortality, including through international assistance and seeking good practices", - "values": [ - "4 - General action" - ] - }, - { - "text": "Continue efforts to lower rates of violence against women", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Take measures to ensure equal access of women to higher education and professional life, including by repealing the restrictions on female students and by lifting bans on women in certain professions", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Ensure due process to all detainees. ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Issue a standing invitation for UN human rights special procedures and accept all requested visits by mandate holders", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Further strengthen efforts towards birth registration for all, with a view to effectively reaching out to disadvantaged and vulnerable groups", - "values": [ - "4 - General action" - ] - }, - { - "text": "Implement alternative measures to the deprivation of liberty, especially with regard to minors.", - "values": [ - "4 - General action" - ] - }, - { - "text": "End all forms of corporal punishment of children in all settings, including in the home and in schools, by enforcing its prohibition ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Implement specific legislation to combat violence, in particular sexual violence against women and children ", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Implement the national strategy to institutionalise gender", - "values": [ - "4 - General action" - ] - }, - { - "text": "Take steps to review domestic laws with a view to guaranteeing the right to freedom of expression, association and assembly, including assuring a free and independent media ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Continue its measures for poverty reduction, including reduction of multi-dimensional poverty ", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Amend the law to ensure greater guarantees for freedom of opinion and expression in line with article 15 (1)", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Respect and promote the right to freedom of expression, peaceful assembly and association in line with its international human rights obligations ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Ensure that the police are trained to deal impartially with women reporting gender based violence, and that all such complaints are fully investigated and prosecuted", - "values": [ - "4 - General action" - ] - }, - { - "text": "Consider acceding to the 1990 International Convention on the Protection of the Rights of All Migrant Workers and Members of Their Families", - "values": [ - "3 - Considering action" - ] - }, - { - "text": "Increase its provision of scholarships to students to study medicine and intensity efforts to optimize facilities and human resource utilization, focusing on efficient health system models ", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Take further measures to guarantee that detained juvenile offenders are separated from adults", - "values": [ - "4 - General action" - ] - }, - { - "text": "Take measures to address all allegations of abuse or intimidation against human rights defenders by the security forces, and integrate human rights education into police training programmes", - "values": [ - "4 - General action" - ] - }, - { - "text": "Extend the rights guaranteed in Iranian legislation to all religious groups, including the Baha'i community", - "values": [ - "4 - General action" - ] - }, - { - "text": "Ensure that international human rights instruments' obligations are incorporated into domestic laws ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Increase its Official Development Aid to 0.5 percent of its gross national income with a view to reaching the United Nations target of 0.7 percent", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Take appropriate measures to prevent and combat harmful traditional practices which discriminate against women, especially in rural areas", - "values": [ - "4 - General action" - ] - }, - { - "text": "Malaysia remains committed to enhance worker protection including through: (a) enhancing maternity protection, (b) mandatory requirement for payment of wages into bank accounts, (c) increasing minimum retirement age to 60 years, and (d) implementation of bilateral arrangements with labour source countries.", - "values": [ - "4 - General action" - ] - }, - { - "text": "Enhance the independence of the judiciary and strengthen rule of law through anti-corruption initiatives, increased transparency in the justice sector, and the elimination of external influence in judicial proceedings", - "values": [ - "4 - General action" - ] - }, - { - "text": "Improve and extend the Anti-Trafficking in Persons Task Force to cover every part of the country", - "values": [ - "4 - General action" - ] - }, - { - "text": "Pursue efforts to adopt international human rights instruments to which the country is not yet a party", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Enhance efforts to guarantee freedom of expression and association, and reform the existing legislation on freedom of information in accordance with international standards", - "values": [ - "4 - General action" - ] - }, - { - "text": "In cooperation with relevant international organizations, continue to improve its people's access to quality and affordable health care ", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Ratify the Protocol of 2014 to the Forced Labour Convention, 1930, and implement existing labour regulations requiring the formal documentation of all workers and minimum standards in working conditions", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Continue in its efforts to ensure full access to education enrolment to all and to remove any obstacles that minority communities may face, particularly in reference to equal access to education for women and girls", - "values": [ - "4 - General action" - ] - }, - { - "text": "Open regional offices of the EHRC, starting with an office in Jijiga ", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Continue efforts to combat terrorism in the framework of respecting human rights norms", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Consider revisiting the penal code, which allows those who are guilty of rape to escape punishment if they marry the victim", - "values": [ - "3 - Considering action" - ] - }, - { - "text": "Strengthen the efforts to allow a greater role for women in social and economic developments", - "values": [ - "4 - General action" - ] - }, - { - "text": "Finalize the legislation needed to establish a national human rights institution in accordance with the Paris Principles.", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Issue a standing invitation to all special procedures' mandate holders ", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Consider ratifying International Labour Organization Convention No. 189 (2011) concerning decent work for domestic workers", - "values": [ - "3 - Considering action" - ] - }, - { - "text": "Consider issuing a standing invitation to all United Nations human rights special procedures ", - "values": [ - "3 - Considering action" - ] - }, - { - "text": "Thoroughly investigate and prosecute all acts of violence against ethnic and racial minorities and vulnerable groups, including lesbian, gay, bisexual, transgender and intersex persons, and enact legislation on hate crimes based on sexual orientation or gender identity", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Make every possible effort to promote social integration of the past participants in illegal armed groups", - "values": [ - "4 - General action" - ] - }, - { - "text": "Fully accede to the principles of the Protocol to Prevent, Suppress and Punish Trafficking in Persons, Especially Women and Children, supplementing the United Nations Convention against Transnational Organized Crime - Palermo Protocol -, with a view to providing effective protection for victims of trafficking and punishing the perpetrators of this crime", - "values": [ - "4 - General action" - ] - }, - { - "text": "Become party to the Optional Protocol to the Convention on the Rights of the Child on the Sale of Children, Child Prostitution and Child Pornography ", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Take further measures to increase the political representation of indigenous peoples, and expand the dialogue with these communities so that they can better represent their perspectives in the decision-making process", - "values": [ - "4 - General action" - ] - }, - { - "text": "Continue to implement its poverty reduction strategy paper as a framework for dialogue and reference for all questions regarding national development policies.", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Support and implement the United Nations Declaration on the Rights of Indigenous Peoples", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Allow for the full independence and effective functioning of the Fiji Human Rights Commission to ensure that the fundamental rights and freedoms of all persons, including, inter alia, freedom of religion or belief, expression or opinion, association and peaceful assembly, are respected", - "values": [ - "4 - General action" - ] - }, - { - "text": "Request and be extended all its assessed needs, including all possible technical, human and financial resources, to complement its efforts to strengthen the human rights infrastructure in accordance with its Constitution and international standards", - "values": [ - "1 - Minimal action" - ] - }, - { - "text": "Step up efforts to combat killings of people with albinism, particularly children, including through strengthening laws and awareness-raising campaigns on rights of people with albinism", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Establish normative frameworks to help domesticate the human rights instruments it has ratified", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Enact legislation to abolish the death penalty", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Investigate allegations of torture and ill treatment and bring to justice those responsible in line with international standards.", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Implement Law 7/2010 that creates a special court for children, that is able to address the particularities of these disputes", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Apply national legislation to individuals without discrimination based on their belonging to a religious minority or on sexual orientation", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Strengthen the fight against racially motivated violence and crimes ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Step up efforts to investigate racist attacks and punish the perpetrators and tackle the underlying causes of issues of racist discrimination and racist attacks as part of its ongoing reform of the justice system.", - "values": [ - "4 - General action" - ] - }, - { - "text": "Strengthen its legal and institutional frameworks with respect to the implementation of human rights and the right to water and sanitation", - "values": [ - "4 - General action" - ] - }, - { - "text": "Ensure that victims of domestic violence have access to adequate counselling and protection, including by the provision of shelters for women victims, and that acts are effectively investigated and perpetrators brought to justice ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Implement a ban on racist organizations and activities", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Ensure that those suspected of being responsible for crimes under international law in Darfur are investigated and prosecuted before independent and impartial courts, without resort to the death penalty ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Canadian governments, at all levels, are strongly committed to taking action with Aboriginal and non- Aboriginal partners and have undertaken many initiatives demonstrating this commitment, in partnership with Aboriginal and non-Aboriginal groups, communities and individuals.", - "values": [ - "4 - General action" - ] - }, - { - "text": "Consider establishing a national policy of protection of human rights defenders.", - "values": [ - "3 - Considering action" - ] - }, - { - "text": "Repeal Article 534 of the Lebanese Penal Code, which criminalizes homosexuality, and pass legislation to prohibit discrimination based on sexual orientation or gender identity", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Adopt a comprehensive legal instrument which recognizes the rights of persons belonging to minority groups, including Roma, and offers the necessary protection, in particular to children, as recommended by the Committee on the Rights of the Child.", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Provide human rights education to all citizens and provide human rights training to judges, prosecutors and lawyers and law enforcement officials ", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Abolish all legal provisions limiting the freedom of expression and freedom of the press, and take all necessary measures to facilitate the work of human rights defenders, journalists and civil society", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Consider signing and ratifying ICESCR as well as ICCPR ", - "values": [ - "3 - Considering action" - ] - }, - { - "text": "Consider ratifying the Rome Statute ", - "values": [ - "3 - Considering action" - ] - }, - { - "text": "Accede to ICRMW", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Request advice and input from the OHCHR on creating an independent commission to investigate human rights violations that ensures perpetrators are held to account for their actions ", - "values": [ - "1 - Minimal action" - ] - }, - { - "text": "Intensify efforts to combat discrimination against ethnic minorities, particularly Roma and migrants", - "values": [ - "4 - General action" - ] - }, - { - "text": "Fully fund and implement the Anti-Gender-Based Violence Act, the Gender Equity and Equality Act and other legislation and policies to protect girls from child, early and forced marriage and other forms of abuse", - "values": [ - "3 - Considering action" - ] - }, - { - "text": "Continuing to implement the Comprehensive Programme to Combat Gender-Based Violence", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Extend protection against discrimination and ensure that no one is subject to discrimination on the basis of sexual orientation, bearing in mind the universality of human rights and the recommendation of the Human Rights Committee on the right to privacy and non-discrimination", - "values": [ - "4 - General action" - ] - }, - { - "text": "Continue cooperation with United Nations human rights mechanisms and treaty bodies", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Ratify promptly the Optional Protocol to the Convention against Torture and other Cruel, inhuman or Degrading Treatment or Punishment", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Analyse the possibility of establishing a national system of follow-up to international recommendations", - "values": [ - "3 - Considering action" - ] - }, - { - "text": "Seek financial and technical assistance from international sources, including from the OHCHR for implementing international human rights obligations and for facilitating human rights training and education", - "values": [ - "1 - Minimal action" - ] - }, - { - "text": "Give a strong response to hate speech, including in offline and online media, as well as systematically denounce expression of intolerance by opinion leaders in the country", - "values": [ - "4 - General action" - ] - }, - { - "text": "Continue undertaking measures to increase the effectiveness of its legislation and to investigate all allegations of racially motivated violations of human rights for bringing those responsible to account ", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Continue effective implementation of the national plan on Gender equality to raise the awareness in order to eliminate discrimination and prejudice", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Continue to address the issue of unaccompanied children arriving in Spanish territories and to consider implementing, as appropriate, the recommendations of UNHCR, human rights treaty bodies and special procedures ", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Ratify CED at the earliest", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Establish a national institution for the promotion and protection of human rights in conformity with the Paris Principles ", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Sign and ratify the Rome Statute of the International Criminal Court", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Establish mechanisms for dialogue and raising awareness amongst the Dominican people, in the area of migration such as public campaigns and social fora of dialogue in the areas of discrimination and racism, labour conditions, access to education and health care ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Continue the consistent and successful policy aimed at ensuring the rights of all national minorities residing in the country, as well as support for their social, educational, informational and cultural needs ", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Continue to strengthen the economic, political and social development with full participation of its population \n\n", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Continue to undertake steps to ensure access to quality education for all children", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Domesticate the Convention on the Elimination of All Forms of Discrimination against Women and give women a visible and inclusive role as envisaged by the treaty", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "From the federal level, to provide guidance to all states on the adoption of practical measures to ensure the implementation of these legislative changes at the local level to family law\nthat results in real or de facto discrimination\nagainst women and girls, and to legislation that\nprevents women%u2019s access to justice.", - "values": [ - "4 - General action" - ] - }, - { - "text": "Continue advancing in the reduction of poverty and inequality ", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Improve the population's access to safe drinking water", - "values": [ - "4 - General action" - ] - }, - { - "text": "Rescind the recent amendments to the Penal Code, Press and Publications Law and the Law of Information System Crimes", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Ensure that the ombudsman's office (Defensoría del Pueblo) is independent and has the necessary human, material and financial resources to comply with its mandate as the National Mechanism to Prevent torture", - "values": [ - "4 - General action" - ] - }, - { - "text": "Improve the National Action Plan on Child Labour and expand measures adopted in the area of mining to other sectors", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Continue efforts in the area of gender equality, in particular regarding acquisition, loss and transfer of nationality", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Investigate and, as appropriate, prosecute officials suspected of committing torture or other violations of human rights and punish those who are convicted ", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Increase efforts to stop traffickers, including law enforcement measure and border security, as appropriate, take measures to investigate, prosecute and penalize those agents who accept bribes or otherwise facilitate trafficking, increase efforts to implement the new anti-trafficking law, expand antitrafficking training for judges and law enforcement personnel and increase victim services and protection efforts.", - "values": [ - "4 - General action" - ] - }, - { - "text": "Amend the related legislation to establish an immediate moratorium on the death penalty with a view to abolishing capital punishment generally in line with the General Assembly resolutions 62-149 and 63-168 as well as ICCPR-OP 2 ", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Step up its efforts for the mobilizations of resources and necessary international assistance for a successful implementation of the Human Rights National Programme and related activities ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Put in place technical assistance programmes in order to strengthen Fiji's national capacities in the area of human rights", - "values": [ - "1 - Minimal action" - ] - }, - { - "text": "Establish a mechanism for the enforcement of protective and restrictive orders relating to domestic violence, to ensure their effectiveness and prevent recurring offences, inter alia, through establishing specialized police units on gender-based violence and domestic violence", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Proceed with the establishment of a National Human Rights Commission ", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Foster national strategies to combat child labour", - "values": [ - "4 - General action" - ] - }, - { - "text": "Increase further the education budget to allow for the establishment of intercultural bi-lingual schools in all three educational cycles and the roll-out of remedial academic programs", - "values": [ - "4 - General action" - ] - }, - { - "text": "Comply with the Convention against Torture, criminalise all forms of torture and ill-treatment, ensure places of detention under its control are subject to open and transparent scrutiny by bodies independent of government and undertake prompt and impartial investigations of allegations of torture", - "values": [ - "4 - General action" - ] - }, - { - "text": "Establish support systems to safeguard the rights of child and adolescent victims of commercial sexual exploitation, at the national level, for the period 2015-2020", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Carry on with the ratification of international conventions and treaties to which it is not a party to ", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Take concrete steps to comply fully with the minimum standards of the Kimberly Process, including by increasing accountability and transparency in the use of profits from natural resources, and investigating any credible allegation of human rights abuses, particularly in the Marange region", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Take measures to ensure the compliance of its legislation against slavery and take effective measures to compensate those who have suffered slavery", - "values": [ - "4 - General action" - ] - }, - { - "text": "Accede to the Convention for the Protection of the Rights of Migrant Workers and Members of Their Families", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Ratify the International Labour Organization Convention 169 concerning Indigenous and Tribal Peoples in Independent Countries", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Work closely with Turkey regarding the situation of the Turkish community in Germany ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Prevent and punish all forms of violence against women, including the criminalization of marital rape and domestic violence", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Continue to promote national reconciliation by preventing acts of violence and intimidation against religious and ethnic minorities, and by ensuring effective prosecution and punishment of perpetrators", - "values": [ - "4 - General action" - ] - }, - { - "text": "Strengthen the measures to protect the indigenous populations in Norway and guarantee them a full access to natural resources ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Build on the work of Fiji's Ministry of Women, Social Welfare and Poverty Alleviation to improve the protection of women and girls by effectively addressing gender-based violence, particularly intimate partner violence, and by advancing programmes to combat gender discrimination", - "values": [ - "4 - General action" - ] - }, - { - "text": "Seek international assistance to sustain its efforts aimed at the promotion and protection of human rights, in particular economic, social and cultural rights, in line with its national priorities ", - "values": [ - "1 - Minimal action" - ] - }, - { - "text": "Amend the provisions on libel and defamation so that they cannot be abused to prosecute human rights defenders and journalists", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Ratify and implement ICCPR and ICESCR as soon as possible as well as to facilitate public dissemination of these treaties and ensure that all Cubans are aware of the rights contained therein ", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Fully implement CEDAW by lifting its reservations", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Harmonize in the criminal code and in the consuetudinary law the definition of a minor with the Convention on the Rights of the Child (CRC)", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Repeal the provisions of the Towns Act and Villages Act of 1907, under which forced labour for the military is currently codified ", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Further promote the position of women in decision-making, and to guarantee equal remuneration between men and women", - "values": [ - "4 - General action" - ] - }, - { - "text": "Continue its efforts to create awareness among the public about the human rights instruments to which Cuba is a State party ", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Bring the national human rights body in line with the Paris Principles, as recommended in the first universal periodic review cycle in 2011", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Adopt effective measures to combat violence against women and girls, especially domestic and sexual violence, particularly through prevention and sanctioning and the protection and compensation of victims", - "values": [ - "4 - General action" - ] - }, - { - "text": "Continue the establishment of constitutional bodies by completing the legislative process and enacting adequate legislation in this regard", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Take immediate action to accede to the major human rights instruments, leading with the International Covenant on Civil and Political Rights and the International Covenant on Economic, Social and Cultural Rights", - "values": [ - "4 - General action" - ] - }, - { - "text": "Conclude the process of establishing a human rights institution in conformity with the Paris Principles", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Further expand efforts to provide all its citizens with access to school and to ensure equal enjoyment of the right to education, and increase bilingual education programmes ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Continue to expand the new accusatory system to those provinces and districts where the system is not yet in place", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Fully abolish the death penalty and ratify the Second Optional Protocol to the ICCPR", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Continue efforts on gender issues, including policies aimed at the empowerment of women and their integration in the education system.", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Repeal legislation criminalizing consensual same-sex practices between adults", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Strengthen support to children with disabilities ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Adopt legislation prohibiting all forms of corporal punishment of children in all settings", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Expand the scope of the compulsory course on family life education to provide a comprehensive and age-appropriate education on sexual and reproductive health and rights and to ensure unimpeded access to sexual and reproductive health services, including to safe and legal abortions", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Include same-sex couples in the Domestic Violence Act and make sure everyone is protected against domestic violence", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Become a party to CAT and accommodate visits by the Special Rapporteur", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Albania had extended a standing invitation to all the special procedures and two special rapporteurs had visited the country during the reporting period. The Government had pledged to continue working with special procedure mandate holders in implementing their recommendations. ", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Repeal or modify legal norms that deny or limit the rights of people based on their sexual orientation or gender identity", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Promote and protect more the rights of people with disabilities, in particular of children", - "values": [ - "4 - General action" - ] - }, - { - "text": "Promptly establish a de jure moratorium on the death penalty", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Take necessary measures to guarantee that migrant workers are treated on a non-discriminatory basis ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Decriminalize irregular migration", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Overcome stereotypes and stigmas against people living with disabilities, and fully integrate them into society and guarantee the full enjoyment of their rights", - "values": [ - "4 - General action" - ] - }, - { - "text": "Amend the Bar Council Act to ensure the Bar Council's independence, and commit to improving legal education and continuing legal professional development, including with regard to international human rights law and the United Nations human rights mechanisms", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Continue putting forward effective measures for reducing illiteracy and boosting the quality and performance of education in the country ", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Take more concrete measures to eliminate employment and wage gaps, to increase school enrolment rates of indigenous children, and review the justice system", - "values": [ - "4 - General action" - ] - }, - { - "text": "Develop a comprehensive strategy to address internal displacement, allow internally displaced persons to return to their homes and, in the interim, provide them with protection and assistance", - "values": [ - "4 - General action" - ] - }, - { - "text": "Consider ratifying the Migrant Workers Convention ", - "values": [ - "3 - Considering action" - ] - }, - { - "text": "Take all measures to grant access to justice for all women victim of violence, and take measures for their protection and the rehabilitation, and to train police authorities on violence against women", - "values": [ - "4 - General action" - ] - }, - { - "text": "Ensure that the human rights of migrants, and migration policy and practice are fully respected by national legislation, and strengthen all efforts to implement the National Action Plan and Migration Management", - "values": [ - "4 - General action" - ] - }, - { - "text": "Begin a transparent and inclusive dialogue with all national stakeholders, including opposition parties and civil society, aimed at reviewing and reforming all relevant national legislation to ensure that it is consistent with international human rights law", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Mobilize adequate resources to complete its second National Action Plan on Fundamental and Human Rights", - "values": [ - "4 - General action" - ] - }, - { - "text": "Take all possible actions to eliminate all forms of violence against women and amend all Laws that discriminate against women ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Ratify the main international human rights instruments, in particular ICCPR and its two optional protocols, CAT and OP-CAT, the International Convention on the Elimination of All Forms of Racial Discrimination ICERD and the Statute of the International Criminal Court", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Engage in consultations with civil society with a view to possible accession to ICRMW ", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Ensure access to comprehensive sex education and to sexual and reproductive health services, including contraception", - "values": [ - "4 - General action" - ] - }, - { - "text": "Accredit the national human rights institution with the International Coordinating Committee of National Institutions for the Promotion and Protection of Human Rights and provide it with adequate resources ", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Continue its efforts to combat gender-based violence to provide a safe living environment for women and girls ", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Take further steps to ensure the impartiality and independence of the judiciary in accordance with international standards", - "values": [ - "4 - General action" - ] - }, - { - "text": "Take further measures for both the quantitative and qualitative improvement of education.", - "values": [ - "4 - General action" - ] - }, - { - "text": "Consider ratifying the Rome Statute of the International Criminal Court and the Additional Protocols I and II of the Geneva Conventions ", - "values": [ - "3 - Considering action" - ] - }, - { - "text": "Continue providing accessibility and high calibre education at all levels", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Ratify the Rome Statute of the International Criminal Court, signed in 1999, and apply it in the national legislation", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Ensure that domestic legislation fully respects the human rights or refugees and migrants", - "values": [ - "4 - General action" - ] - }, - { - "text": "Finalize and implement the National Action Plan on Human Rights, as referred to in paragraphs 80 and 81 of the national report", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Prohibit non-consensual treatments, such as forced medication and confinement", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Take measures to address concerns of reports that certain communities feel targeted, profiled and harassed by Canada's national security legislation and build confidence among such communities ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Include in the Law on Equality four protected criteria - namely social origin, material situation, sexual orientation and health status ", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "In addition to initiatives undertaken by the Government for the elimination of torture and other cruel, inhuman or degrading treatment, bring national legislation into line with the Convention against Torture, particularly with respect to the proper definition of the crime of torture ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Ensure that adequate human and financial resources are allocated for the implementation of programmes and activities on human rights", - "values": [ - "4 - General action" - ] - }, - { - "text": "Pay more focused attention to the issues of gender discrimination and domestic violence ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Prosecute suspected perpetrators of violence against ethnic and religious minorities, in line with international standards and to ensure compliance with due process and respect for the rule of law", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Abandon the practice of corporal punishment of children and encourage non-violent forms of discipline", - "values": [ - "4 - General action" - ] - }, - { - "text": "Introduce special measures in areas where women are under-represented or disadvantaged and raise awareness among parliamentarians and other government organs", - "values": [ - "4 - General action" - ] - }, - { - "text": "Ratify without further delay the Optional Protocol to the Convention against Torture and Other Cruel, Inhuman or Degrading Treatment", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Collaborate with civil society, regional and global organisations to protect the rights of Nepalese migrant workers abroad", - "values": [ - "4 - General action" - ] - }, - { - "text": "Consider ratifying the ICCPR-OP2 on abolition of death penalty", - "values": [ - "3 - Considering action" - ] - }, - { - "text": "Consider signing and ratifying the Convention against Torture and Other Cruel, Inhuman or Degrading Treatment or Punishment", - "values": [ - "3 - Considering action" - ] - }, - { - "text": "Continue efforts to promote the education of children and to develop training and higher institutions ", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "In the implementation of public policy for Roma, to take into account ethnic and cultural diversity and the specificities, needs, lifestyles and identity of the beneficiaries, and to consider the possibility of establishing bilingual compensatory school programmes for Roma children.", - "values": [ - "3 - Considering action" - ] - }, - { - "text": "Accept the support of OHCHR in the area of dissemination of human rights in order to support its culture and education programmes ", - "values": [ - "1 - Minimal action" - ] - }, - { - "text": "Take additional measures to combat human trafficking, including the provision of training for police in dealing with victims of human trafficking and sexual abuse, and the implementation of a system of witness protection in cases of trafficking.", - "values": [ - "4 - General action" - ] - }, - { - "text": "Strengthen efforts to secure human rights for immigrants in irregular situations ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Reduce maternal, child and infant morbidity and mortality by promoting effective assistance measures during pregnancy and at the moment of birth", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Share its experience with other States, on protecting human rights in the context of their violation on the Internet.", - "values": [ - "1 - Minimal action" - ] - }, - { - "text": "Criminalize all acts of discrimination directed against Roma persons", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Continue the actions taken to reduce domestic violence and violence against women in all its forms", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Expedite the Government\u2019s responsibility in combating terrorism and violent extremism", - "values": [ - "4 - General action" - ] - }, - { - "text": "Fully cooperate with the Human Rights Council and accept the request of the Special Rapporteur on the situation of human rights to visit the country", - "values": [ - "4 - General action" - ] - }, - { - "text": "With the support of the World Health Organization (WHO) and the United Nations Development Programme (UNDP) continue its efforts to introduce programmes and initiatives to improve access to health care by its people", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Step up implementation and enforcement of relevant legislation and other measures to curb instances of domestic violence, child abuse and the sexual exploitation of women and girls ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Effectively implement the 2007 Domestic Violence Act and strengthen the funding and improve the functioning of the Domestic Violence and Victim Support Units within the Police Service.", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Ensure the prompt, thorough and impartial investigation of all violations against Human Rights Defenders, the prosecution of perpetrators, and access to effective remedies for victims", - "values": [ - "4 - General action" - ] - }, - { - "text": "Continue efforts to diminish the proportion of the urban population living in slums, so as to fulfil the rights of families to decent housing conditions ", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Continue to take specific measures to prevent and eliminate racism, racial discrimination, xenophobia and intolerance against migrants, refugees and asylum seekers", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Redouble efforts to fill the gaps among the infant and maternal mortality rates of Jewish, Arab-Israeli and Bedouin children and women", - "values": [ - "4 - General action" - ] - }, - { - "text": "Protect the human rights of persons with disabilities to ensure full access to those rights for all, in compliance with the Convention on the Rights of Persons with Disabilities", - "values": [ - "4 - General action" - ] - }, - { - "text": "Sign and ratify OPCAT and establish a national preventive mechanism", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Further strengthen its social programs and policies in favour of its people, with a special emphasis on economic, social and cultural rights, for which the international solidarity is indispensable ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Guarantee that all those responsible for acts of violence, harassment and sexual abuse of girls, in particular in the educational system, are effectively punished and that the girls receive support, including denouncing these situations, and reparation and protection measures ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Adequately protect those social groups particularly vulnerable to budget cuts, as is the case of children and older persons ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Continue to undertake actions whose objective is to reduce discriminatory behaviour against women", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Ensure unhindered access of children with disabilities to quality and inclusive education ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Convene an independent commission to investigate all credible allegations of human rights violations related to the 2012 law enforcement action at Marina Cue", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Pursue its efforts to improve its justice system and its commitment to fight against impunity", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Make available all the necessary and available resources to ensure that the strategy to address the preparation and submission of outstanding reports to treaty monitoring bodies is successfully implemented ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Take the necessary measures to combat drug trafficking while ensuring that the methods used are in conformity with international standards", - "values": [ - "4 - General action" - ] - }, - { - "text": "Promote relevant national strategy in order to change its traditional practices and stereotypes regarding women to better protect women's physical and psychological integrity ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Ratify the Rome Statue of the International Criminal Court in accordance with the commitment made in the National Human Rights Action Plan", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Enact the legislation as it will help to protect the women of Tajikistan from domestic violence, in line with CEDAW and ICCPR, to which Tajikistan is a signatory", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Continue to take measures to increase the representation and participation of persons with disabilities", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Reinforce the legal framework for the prevention of violence against women, including by running a national awareness campaign, by creating safe places for victims of gender-based violence, and by ensuring that cases of domestic violence and sorcery-related violence, are comprehensively investigated and prosecuted ", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Take necessary measures to curb the use of violence by the police force against ethnic groups ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Abolish the death penalty and sign and ratify ICCPR-OP-2 ", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Remove all obstacles to the registration and freedom of operation of all political parties and NGOs ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Study the possibility of accepting the competence of the Committee against Torture", - "values": [ - "3 - Considering action" - ] - }, - { - "text": "Establish a moratorium on the application of the death penalty as a first stage toward its definitive abolition", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Implement effectively its commitments relating to freedom of religion as contained in the ICCPR, to which Uzbekistan is a party.", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Issue a standing invitation to the special procedure mandate holders", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Take measures to fully respect the freedom of religion and belief of its citizens", - "values": [ - "4 - General action" - ] - }, - { - "text": "Set up an independent national human rights institution that operates in accordance with the Paris Principles", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Continue providing ODA in line with the United Nations target of 0.7 per cent of GDP ", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Undertake measures to enhance the participation of women in legislative, judicial and executive bodies ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Increase its efforts to enable the people of Mozambique to benefit from clean, high-quality drinking water as well as sanitation infrastructure ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Ensure adequate protection and humanitarian assistance to refugees and IDPS", - "values": [ - "4 - General action" - ] - }, - { - "text": "Guarantee the right to housing of the Palestinians in the occupied territories, including East-Jerusalem, stopping the demolition of Palestinian houses and guaranteeing the property rights of the Palestinian population ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Establish an independent national human rights institution in conformity with the Paris Principles\n", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Remove restrictions on freedom of religion or belief and amend legislation that discriminates against persons belonging to minorities.", - "values": [ - "4 - General action" - ] - }, - { - "text": "Step up efforts to abolish the practice of racial profiling and arbitrary arrest by the police and security forces", - "values": [ - "4 - General action" - ] - }, - { - "text": "Ensure protection of minorities, including indigenous minorities, in conformity with its international obligations ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Adopt and implement firmly all necessary measures to improve and ensure respect of the rights of people belonging to minorities", - "values": [ - "4 - General action" - ] - }, - { - "text": "Deepen the actions taken against discrimination and violence against women, particularly guaranteeing an effective access to courts and strengthening assistance and accompaniment to the victims", - "values": [ - "4 - General action" - ] - }, - { - "text": "Consider including indigenous cultures in the national education plan with a view to promote respect for diversity ", - "values": [ - "3 - Considering action" - ] - }, - { - "text": "Continue to effectively address the precarious situation of the Guaran\u00c3\u00ad indigenous peoples", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Continue efforts to strengthen the legal framework to combat torture, which had proved to be successful in reducing the number of complaints", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Strengthen its capacity to provide care and support for children infected or affected by HIV/AIDS, particularly those orphaned", - "values": [ - "4 - General action" - ] - }, - { - "text": "Abrogate national laws which criminalize or discriminate against persons on the grounds of their sexual orientation or gender identity", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Establish a national mechanism for the protection of the rights of children, and allocate human and financial resources for its functioning", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Continue to use the platform of All-China Federation of Trade Unions to safeguard the rights of employees to get employed, paid and social security", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Implement the Family Protection Act and finalize the Family and Sexual Violence Strategy without delay", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Accelerate the process for the development of government institutions for the promotion and protection of human rights", - "values": [ - "4 - General action" - ] - }, - { - "text": "Strengthen its efforts to increase the number of women in high-ranking posts, particularly in academia", - "values": [ - "4 - General action" - ] - }, - { - "text": "Amend the Labour Law to embody the principle of equal remuneration between men and women", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Assign a government department the mandate of promoting and protecting the rights of disabled persons", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Consider formulating an integrated national plan of action, as recommended by the Committee on the Elimination of Discrimination against Women to fully address the issue of discrimination against women in all its aspects", - "values": [ - "3 - Considering action" - ] - }, - { - "text": "Incorporate international human rights obligations into domestic law by adopting a comprehensive Human Rights Act at federal level", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Ratify the Convention for the Protection of All Persons from Enforced Disappearance", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Apply, in conformity with the policy of education and training adopted in 2014, legal and administrative measures in favour of the "education for all system"", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Abolish the death penalty within the projected constitutional reform and to ratify the Second Optional Protocol to the International Covenant on Civil and Political Rights and, if it is not the case, consider declaring an official moratorium on the death penalty", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Continue its efforts to ensure that all children have access to free basic education, and to improve the overall quality of education, including by ensuring that teachers are well trained and fully qualified", - "values": [ - "4 - General action" - ] - }, - { - "text": "Continue its efforts to expand educational programmes and awareness-raising campaigns for preventing and combating corporal punishment of children in schools and childcare institutions", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Establish effective ways that all migrant workers and their families could lodge complaints for violation of their rights without fear of reprisal", - "values": [ - "4 - General action" - ] - }, - { - "text": "Remove legislation which discriminates against individuals on the basis of their sexual orientation or gender identity ", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Establish a national institution for the promotion and protection of human rights in line with the Paris Principles ", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Extend measures to improve the living conditions of juveniles in detention in place in Anjouan and in facilities of Moroni and Fomboni, as well as put in place childcare facilities for victims of child abuse ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Adopt a plan of action to combat sexual exploitation of children, child pornography and prostitution and provide assistance to victims of sexual exploitation", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Revise the Marriage Act of 1961 in a way that ensures full equality with respect to the civil institution of marriage", - "values": [ - "3 - Considering action" - ] - }, - { - "text": "Carry out efforts in the area of poverty eradication", - "values": [ - "4 - General action" - ] - }, - { - "text": "Keep improving the system of child registration at birth and avoid any form of violence against children", - "values": [ - "4 - General action" - ] - }, - { - "text": "Ensure training for law enforcement and security forces in relation to human rights standards in management of peaceful assemblies, ensure all allegations of excessive use of force and arbitrary detention are investigated and that perpetrators are prosecuted", - "values": [ - "4 - General action" - ] - }, - { - "text": "Ensure strengthening of freedom of expression online and offline, as well as personal data protection", - "values": [ - "4 - General action" - ] - }, - { - "text": "Proceed with the establishment of a general directorate for human rights in the Ministry of Justice, on the basis of the draft law prepared for this purpose", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Establish a national human rights institution in accordance with the Paris Principles ", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Implement fully and effectively the judgments of the European Court of Human Rights on access to abortion", - "values": [ - "4 - General action" - ] - }, - { - "text": "Continue to strengthen the measures to guarantee children access to free birth registration", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Consider amplifying the application of the Relief Act for the Victims of the Atomic Bomb to the second generation of the survivors of atomic bombs, particularly in health issues", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Put in place a National Strategy to combat corruption and eradicate its negative effects on the enjoyment of human rights", - "values": [ - "4 - General action" - ] - }, - { - "text": "Amend the provisions of the Criminal Code and eliminate legal provisions and practices by public authorities, including possible practices of harassment and bullying by the police forces, which lead to discrimination based on sexual orientation and gender identity ", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Continue taking measures to further strengthen its education and health systems", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Request and be given, based on its assessed needs, necessary technical and financial assistance to address its human rights concerns", - "values": [ - "1 - Minimal action" - ] - }, - { - "text": "Continue implementation of the National Plan of Action, including social programs that aim at carrying out information and education activities with regard to people with disabilities and their social protection according to the relevant Convention which the country has ratified", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Pursue the efforts towards reconciliation and the strengthening of national unity, and to address post-conflict concerns such as the return and resettlement of internally displaced people, and the social rehabilitation and reintegration of former combatants", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Step up its efforts towards ratification of the first Optional Protocol to ICCPR", - "values": [ - "4 - General action" - ] - }, - { - "text": "Repeal or significantly reform laws that may have the effect of unduly restricting freedom of expression and the right to peaceful assembly, which include the Public Order and Security Act, the computer crime and cybercrime bill and police bans on protests", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Continue to seek technical cooperation and assistance from the international community and such agencies as OHCHR in its promotion and protection of human rights, particularly capacity-building for preparing the national reports under human rights conventions to which it is a party and capacity-building for its human rights officers ", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Take appropriate measures to ensure that the framework protocol for the protection of migrant children is consistent with international standards and that it is effectively implemented and monitored", - "values": [ - "4 - General action" - ] - }, - { - "text": "Intensify efforts to combat trafficking in persons and prosecute perpetrators", - "values": [ - "4 - General action" - ] - }, - { - "text": "Consider ratifying the Optional Protocol to the Convention on the Right of the Child on a communications procedure", - "values": [ - "3 - Considering action" - ] - }, - { - "text": "Intensify its efforts made to investigate practices of harassment and aggression against journalists and lawyers and punish their perpetrators ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Protect rights of migrants and their families ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Consolidate an environment suitable for human rights defenders and establish a mechanism for their protection", - "values": [ - "4 - General action" - ] - }, - { - "text": "Better protect the rights of foreign workers who are non-European Union citizens", - "values": [ - "4 - General action" - ] - }, - { - "text": "Pursue and intensify its initiatives in the area of fighting against human trafficking, a form of modern slavery ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Consider ratifying the Domestic Workers Convention, 2011 (No. 189), of the International Labour Organization", - "values": [ - "3 - Considering action" - ] - }, - { - "text": "Step up efforts to strengthen public education, awareness programme and skill training, particularly aimed at increasing awareness on human rights in Bahrain ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Continue efforts to strengthen necessary measures for the protection of the rights of the elderly ", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Investigate promptly allegations of torture and ill-treatment and facilitate visits by the Special Rapporteur on the question of torture to all detention facilities in Iraq", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Prioritize the education of its citizens ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Strengthen promotion of healthy lifestyles of adolescents and prevention of harmful habits", - "values": [ - "4 - General action" - ] - }, - { - "text": "Continue efforts to promote health-care facilities, particularly in rural areas with the focus on tackling malnutrition", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Improve access to confidential family planning services and sexual and reproductive health services", - "values": [ - "4 - General action" - ] - }, - { - "text": "Continue the dynamic of aligning the national legislation with a number of United Nations human rights instruments, such as the launching of the process to develop the Children\u2019s Code", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Redouble efforts to eliminate inequalities between men and women regarding salary remuneration and participation in high-level employment positions", - "values": [ - "4 - General action" - ] - }, - { - "text": "Consider additional measures of protection for displaced persons ", - "values": [ - "3 - Considering action" - ] - }, - { - "text": "Intensify measures to tackle racism and hate crimes ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Pursue its efforts aiming at preventing and combating gender-based violence, particularly by providing training, awareness campaigns and assistance to victims ", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Adapt its normative framework to ensure that all categories of workers enjoy protection from exploitation and forced labour", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Take steps toward abolishing the death penalty entirely, while commuting the existing sentences to life imprisonment terms", - "values": [ - "4 - General action" - ] - }, - { - "text": "Continue to implement alternative measures to imprisonment aimed at reducing prison over-crowding", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Strengthen the law on domestic violence through the development of campaigns to reduce physical, verbal and psychological aggression within the family, the establishment of mechanisms to prevent violence and protect women and children in a situation of abuse and to criminalize sexual abuse as a criminal offence ", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Take steps to ratify the Kampala amendments to the Rome Statute of the International Criminal Court", - "values": [ - "4 - General action" - ] - }, - { - "text": "Extend an open and standing invitation to all special procedures, welcoming with satisfaction the official invitation to the Special Rapporteur on the question of torture in 2010 ", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Continue efforts to combat human trafficking", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Establish mechanisms for the selection of judges which rule out any risk of politicization or conflict of interest, and ensure that the principle of separation of administrative and judicial functions of the Supreme Court guarantees the full independence and impartiality of the judiciary in Guatemala", - "values": [ - "4 - General action" - ] - }, - { - "text": "Russia re-iterated its commitment to the cause of human rights and stated that it will strive to meet the highest requirements in this field, since it aims at innovative and intensive development, involving in it free individuals.", - "values": [ - "4 - General action" - ] - }, - { - "text": "Continue its efforts to eradicate the practice of female genital mutilation, encouraging the strengthening of its efforts for the total emancipation of women and their full participation in public affairs ", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Simplify the procedure for birth registration of persons born outside health-care institutions to contribute to measures carried out to eliminate discrimination", - "values": [ - "4 - General action" - ] - }, - { - "text": "Further integrate measures of protection and promotion of human rights, especially economic, social and cultural rights, into the national socio-economic development strategies", - "values": [ - "4 - General action" - ] - }, - { - "text": "Continue its efforts in the field of women's rights in order to, amongst other things, enforce the 2007 Domestic Violence Act and laws prohibiting harmful practices against women, including trokosi and female genital mutilation", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Take measures to help effective access to justice for victims of domestic violence and provide immediate means of redress and protection.", - "values": [ - "4 - General action" - ] - }, - { - "text": "Further consolidate achievements in domains such as legislative and judicial reform, education, health care and gender equality, and continue to put more priorities and national resources on other important fields of job creation and social security, with greater focus on improving the overall conditions of vulnerable groups of children, women, youth and persons with disabilities", - "values": [ - "4 - General action" - ] - }, - { - "text": "Take all necessary measures in order to abolish de jure the death penalty", - "values": [ - "4 - General action" - ] - }, - { - "text": "Establish an accessible complaint mechanism, such as a free phone service, to which migrant workers can confidentially report instances of abuse and exploitation, as well as seek assistance", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Continue implementing policies to ensure equal opportunities in the job market with particular emphasis on reducing the existing wage gaps.", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Implement its commitment made during the 2010 UPR to ratify and implement the International Convention for the Protection of All Persons from Enforced Disappearance", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Submit overdue treaty body reports as soon as possible, as previously requested", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Enact the necessary policies and actions to support in practice the implementation of the legislation on non-discrimination and legal equality of women", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Take all measures necessary to implement and effectively enforce the Family Protection Act, and strengthen the efforts to protect women and children from violence, in the families as well as when within the hands of the governments institutions", - "values": [ - "4 - General action" - ] - }, - { - "text": "Adapt its own domestic legislation on associations in order to remove any hindrances to the full realization of the freedom of association by its citizens", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Pursue its policy regarding protection of the rights of nature", - "values": [ - "4 - General action" - ] - }, - { - "text": "Follow through with the ratification of the Optional Protocol to the Convention on the Elimination of All forms of Discrimination against Women now that a bill is under review following recommendations made during the previous UPR session ", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Revise the Constitution, in particular its section 79, and other laws and policies as necessary, in order to allow forming of political parties and facilitate and encourage all forms of citizens' participation in political and public life as guaranteed under the International Covenant on Civil and Political Rights and the International Covenant on Economic, Social and Cultural Rights ", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Continue making progress in the implementation of the National Action Plan for gender equality in the labour market ", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Implement the recommendations of the Committee on the Elimination of Racial Discrimination with regard to the conditions for family reunification of spouses ", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Pursue its action plans to protect the rights of the child and of the family ", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Step up efforts to guarantee free and compulsory birth registration for all children via public awareness-raising campaign on the importance of the registration of births", - "values": [ - "4 - General action" - ] - }, - { - "text": "Ensure that its national preventive mechanism complies with the Optional Protocol to CAT and sufficient human, financial and logistical resources are granted to it.", - "values": [ - "4 - General action" - ] - }, - { - "text": "Regarding persons with disabilities, replace the substituted decision-making system with a supported decision-making one", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Increase its efforts to submit as soon as possible its periodic reports to the Committee Against Torture, the Human Rights Committee and the Committee for the Elimination of Discrimination against Woman", - "values": [ - "4 - General action" - ] - }, - { - "text": "Further strengthen the system, including through adequate funding, to allow all victims of violence to receive protection, services including coverage of the costs of their medical examination and to eliminate long delays in court proceedings", - "values": [ - "4 - General action" - ] - }, - { - "text": "Consider the elimination of the death penalty and, in all events, adjust its implementation to the provisions of Article 6 of the Covenant on Civil and Political Rights", - "values": [ - "3 - Considering action" - ] - }, - { - "text": "Consider ratifying the International Convention for the Protection of All Persons from Enforced Disappearance, as well as the main international instruments in the field of human rights to which it is not yet a party", - "values": [ - "3 - Considering action" - ] - }, - { - "text": "Continue to allocate resources for effective poverty reduction measures", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Consider accepting individual complaints mechanisms such as those provided for in the International Convention on the Elimination of All Forms of Racial Discrimination, the Convention against Torture and other Cruel, Inhuman or Degrading Treatment or Punishment, the International Covenant on Civil and Political Rights and the Convention on the Elimination of All Forms of Discrimination against Women ", - "values": [ - "3 - Considering action" - ] - }, - { - "text": "Finalize and adopt before the end of 2015 the national human rights action plan in order to further stimulate the promotion and protection of human rights in the country", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Promote rights to education and health in disadvantaged and underprivileged areas ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Continue its efforts and search for international cooperation to reduce hunger and poverty", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Strengthen efforts to fulfil its obligations under CEDAW, including by full implementation of the Domestic Violence Act", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Strictly enforce relevant regulations including the Employment of Foreign Manpower Act and the Passport Act, which prohibit employers to hold on to passports, travel documents and work permits of their foreign workers ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Reinforce measures aimed at punishing and preventing the trafficking in persons and supporting victims ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Review and repeal all discriminatory provisions that still exist in national legislation to achieve de jure and de facto gender equality ", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Take steps to ensure targeted attacks against individuals based on their sexual orientation are thoroughly investigated and prosecuted, and strengthen mechanisms to prevent crimes of violence ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Publicly recognise the important role of human rights defenders and NGOs in the protection of human rights in Mexico", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Extend a standing invitation to the special procedures ", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Enact human rights education programmes targeted at fighting racism, xenophobia, and discrimination and violence against women ", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Continue its efforts to eliminate all forms of violence and discrimination against women ", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Continue to make progress in implementing measures already under way to ensure universal access to health and education", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Set up the National Human Rights Commission in accordance with the Paris Principles ", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Accede to the international treaties on human rights and ratify the Optional Protocol to ICESCR", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Adopt measures to combat and prevent discrimination and social stigmatization, in particular of persons with disabilities, persons with albinism, and on the grounds of sexual orientation or gender identity", - "values": [ - "4 - General action" - ] - }, - { - "text": "Enact legislation ensuring the right to freedom of religion or belief for all religious groups and take effective measures to prevent the abuse of blasphemy legislation and the use of violence against religious minorities", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Ratify the ICRMW recognising the compulsory jurisdiction of the monitoring body to receive individual complaints", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Continue efforts in enhancing the autonomy of women", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Continue its efforts to combat and eradicate trafficking in persons in accordance with international standards ", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Prioritize reforms to the law enforcement and judicial systems in an effort to prevent crimes, punish those responsible and address the culture of impunity", - "values": [ - "4 - General action" - ] - }, - { - "text": "Sign and ratify the International Convention on the Protection of the Rights of All Migrants Workers and Members of Their Families", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Extend a standing invitation to all special procedure mandate holders of the Human Rights Council", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Promote progress towards the promotion and protection of human rights", - "values": [ - "4 - General action" - ] - }, - { - "text": "Continue to develop programmes under way pursuing the noble objective to achieve the maximum availability of higher education to every Cuban", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Establish a de jure moratorium on the death penalty, with a view to its future abolition", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Accede to the Rome Statute of the International Criminal Court and accede to the Agreement on Privileges and Immunities of the International Criminal Court ", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Ensure the adjustment of the Public Safety Act, in order not to limit freedom of expression and the right to peaceful assembly", - "values": [ - "4 - General action" - ] - }, - { - "text": "Sign and ratify CRPD and its Optional Protocol, and the OP-CAT", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Include a provision in its Penal Code criminalizing marital rape", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Fully implement the Venice Commission and OSCE/ODIHR electoral reform recommendations, in consultation with opposition parties and civil society groups, well in advance of the 2012 and 2013 elections ", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Ensure the full enjoyment of human rights by persons deprived of their liberty, including by way of ensuring treatment in maximum security prisons in conformity with international law", - "values": [ - "4 - General action" - ] - }, - { - "text": "Continue incorporating the ratified human rights treaties into national legislation and institutions, with more focus on administration of justice, disparities reduction, employment for the youth and adequate housing and social welfare ", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Ensure proper and effective investigation of all crimes against women, including those with an "honour" element", - "values": [ - "4 - General action" - ] - }, - { - "text": "Strengthen its efforts to train law enforcement officials to effectively work against trafficking of persons ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Consider reviewing its legislation on abortion in order to take into account situations where pregnancy is the result of rape or incest, or when the pregnant woman's life is in danger", - "values": [ - "3 - Considering action" - ] - }, - { - "text": "Establish an independent judiciary and guarantee access to legal counsel and judicial redress to all detainees ", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Continue efforts to promote the rights of women and combat violence against them", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Continue its efforts to implement all measures related to the protection of rights of women, children and disabled persons", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Respect the rights of all its citizens to freedom of expression, association and peaceful assembly and the right to participate in public and political life", - "values": [ - "4 - General action" - ] - }, - { - "text": "Continue its efforts to develop provisions and mechanisms to ensure the protection of women from violence, and allow them to enjoy fundamental rights and freedoms ", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Adopt appropriate policies and additionally promote gender equality in public affairs as well as enforce strict sanctions against all kinds of discrimination and abuse of women's rights", - "values": [ - "4 - General action" - ] - }, - { - "text": "Redouble its efforts to combat more effectively and to eradicate trafficking and violence against children", - "values": [ - "4 - General action" - ] - }, - { - "text": "Revise the decision to reduce the AHRC's funds in order to guarantee its independent and effective functioning", - "values": [ - "3 - Considering action" - ] - }, - { - "text": "Reduce the duration of police custody and pre-trial detention, particularly in cases of solitary confinement ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Strengthen the National Committee on Persons with Disabilities, fully ensuring its operations through the development of its norms and provision of adequate financial resources, adopt a national strategy to eliminate de facto discrimination against persons with disabilities based on an appropriate statistics system ", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Take all necessary policing and other measures to prevent and provide protection against all forms of discrimination, violence and harassment related to sexual and gender identity, and ensure that perpetration of such violence is vigorously investigated and that perpetrators are held accountable ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Abolish section 146 of the Criminal Code as a first step towards the introduction of a law prohibiting the discrimination of same-sex relationships", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Promote efforts to consolidate the rule of law", - "values": [ - "4 - General action" - ] - }, - { - "text": "Allocate necessary financial and human resources to these mechanisms and organizations (Ministry of Social Development, Presidential Commission for Combatting Femicide, Secretariat on Sexual Violence, Exploitation and Trafficking in Persons, and National Commission on Police Reforms) to ensure that their objectives are achieved", - "values": [ - "4 - General action" - ] - }, - { - "text": "Take legislative and practical measures at preventing and combating violence against women and children, including prohibition of corporal punishment ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Ensure the effective functioning of the National Human Rights Commission of Nepal, including a representative approach to appointments", - "values": [ - "4 - General action" - ] - }, - { - "text": "Continue the actions aimed at duly implementing the Action Plan to fight against the recruitment and use of children and other serious violations of the rights of the child by the armed forces and security services of 2012, and of the National Action Plan against the worst forms of child labour of 2011", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Speed up the process of establishment of the Human Rights Office in compliance with the Paris Principles", - "values": [ - "4 - General action" - ] - }, - { - "text": "Effectively implement the fourth generation of the National Action Plan on Human Rights and promote human rights education at all levels", - "values": [ - "4 - General action" - ] - }, - { - "text": "Adopt legislation that defines gender-based violence as a crime, and offer assistance to victims", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Increase the measures taken to counter homelessness and the lack of adequate and affordable housing, especially for vulnerable people such as those living in poverty and single mothers", - "values": [ - "4 - General action" - ] - }, - { - "text": "Take concrete steps to reduce violence targeting foreigners and investigate, prosecute and punish perpetrators of violent attacks", - "values": [ - "4 - General action" - ] - }, - { - "text": "Establish a national action plan for combating hate crimes, racism and negative stereotypes against people of African descent inside its territory, including appropriate programmes of public awareness that will address the problem of racism and Afro-phobia, in full consultation with those particularly affected", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Study the possibility of ratifying the following international instruments: CED", - "values": [ - "3 - Considering action" - ] - }, - { - "text": "Fully implement the United Nations Convention against Torture, including by introducing national legislation prohibiting torture, and ensure that ill-treatment in custody is not used as a substitute for proper criminal investigation of suspects", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Adopt measures to raise awareness to prevent incidents of child, early and forced marriage and take steps to investigate and prosecute any cases thereof", - "values": [ - "4 - General action" - ] - }, - { - "text": "Ensure that the transitional justice system is finally created", - "values": [ - "4 - General action" - ] - }, - { - "text": "Revise Law No. 18 of 2004 in order to remove restricting conditions for acquiring permission for a public demonstration, and take other steps to guarantee the full enjoyment of the right to freedom of assembly and the right of association ", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Condemn acts of violence and human rights violations committed against persons because of their sexual orientation or gender identity and ensure adequate protection for those human rights defenders who work on the rights of Lesbian, Gay, Bisexual and Transgender persons", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Take all the necessary measures to guarantee that LGBT individuals do not face persecution of any kind", - "values": [ - "4 - General action" - ] - }, - { - "text": "Continue its efforts for the protection of children and combating child labour", - "values": [ - "4 - General action" - ] - }, - { - "text": "Broaden the definition on torture and harshness in a way to encompass all cases of torture by all persons acting in an official capacity.", - "values": [ - "4 - General action" - ] - }, - { - "text": "Continue to take measures to protect the rights of women, children and people with disabilities", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Look into the possibility of progressively acceding to or ratifying the major human rights conventions, starting with the International Covenant on Civil and Political Rights (ICCPR) ", - "values": [ - "3 - Considering action" - ] - }, - { - "text": "Give due consideration to ensuring a safe and enabling environment for civil society", - "values": [ - "3 - Considering action" - ] - }, - { - "text": "Take all necessary measures to fully ensure the enjoyment of human rights by persons belonging to the Romani minority, including with regard to combating discrimination and violence against such persons", - "values": [ - "4 - General action" - ] - }, - { - "text": "Recommended putting an end to all slavery-related practices in the country.", - "values": [ - "4 - General action" - ] - }, - { - "text": "Consider favourably the request for visits also by other mandate holders, including the United Nations Special Rapporteur on the promotion and protection of the right to freedom of opinion and expression ", - "values": [ - "3 - Considering action" - ] - }, - { - "text": "Accede to the Agreement on the Privileges and Immunities of the ICC", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Continue work on enacting a gender equality bill, as an important step to improve the country's legislation on non-discrimination and gender equality", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Consider issuing a standing invitation to special rapporteurs to visit Turkmenistan ", - "values": [ - "3 - Considering action" - ] - }, - { - "text": "Promote a positive image of and tolerance for asylum seekers and refugees", - "values": [ - "4 - General action" - ] - }, - { - "text": "Continue the study of and the necessary measures to create an adequate climate so as to accede to international human rights instruments to which the country is not yet State party", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "In line with a previous recommendation of CRC, design and implement comprehensive strategies and policies to prevent and combat economic exploitation of children and to undertake awareness-raising campaigns in this respect ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Immediately take measures to stop all searches, arrests, detentions, prosecutions and convictions that are arbitrary or inspired by political motives, and to formulate as soon as possible the reforms necessary to ensure the integrity of the administration of justice", - "values": [ - "4 - General action" - ] - }, - { - "text": "Continue to intensify efforts with positive measures to ensure the effective promotion and protection of women's rights, in harmony with customs and traditional values of its society", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Make further efforts to ensure compliance with the Prevention of Trafficking in Persons Act", - "values": [ - "4 - General action" - ] - }, - { - "text": "Develop and adopt legislation that would recognize explicitly hatred on the basis of sexual orientation and gender identity as a motive and make it an aggravated circumstance in a crime", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Continue efforts in implementing the Convention on the Elimination of Discrimination against Women and to align all laws and policies with the principles of gender equality and non-discrimination as set out in the Convention on the Elimination of All Forms of Discrimination against Women ", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Combat the high rate of teenage girls' pregnancy, which put at risk their rights to health and education", - "values": [ - "4 - General action" - ] - }, - { - "text": "Ensure unhindered enjoyment of the right to freedom of expression, and an enabling environment, where members of civil society are not prohibited from exercising their rights to freedom of peaceful assembly and association, in accordance with the principles of democracy (this is also in line with international obligations under the International Covenant on Civil and Political Rights as well as the undertaking made in the 2011 universal periodic review) ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Publish the names and places of detention of all the imprisoned persons", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Further strengthen existing efforts to integrate human rights in national development policies, strategies and plans ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Accede to the 1961 Convention on the Reduction of Statelessness and uphold the rights of the Bidouns to nationality and access to social services", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Adopt appropriate measures to ensure the protection of human rights defenders, journalists and political opponents against acts of violence or intimidation", - "values": [ - "4 - General action" - ] - }, - { - "text": "Strengthen the fight against child trafficking, female genital mutilation, maternal mortality, drug trafficking and lack of security ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Take measures to establish a new legislative framework ensuring freedom of the press.", - "values": [ - "4 - General action" - ] - }, - { - "text": "Withdraw the reservations to articles 10 (1), 37 (c) and 40 (2) of the Convention on the Rights of the Child", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Take further steps to improve the rights of women and children. ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Consider the possibility of amending the National Constitution to include a safeguard against statelessness, which establishes the acquisition of Tuvaluan nationality for children born in the territory who otherwise would be stateless ", - "values": [ - "3 - Considering action" - ] - }, - { - "text": "Promote human rights education in the country", - "values": [ - "4 - General action" - ] - }, - { - "text": "Expedite the ratification of the Optional Protocol to the Convention against Torture and establish a National Preventative Mechanism", - "values": [ - "4 - General action" - ] - }, - { - "text": "Continue efforts aimed at strengthening the measures necessary for the protection of the rights of older persons", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Enact efficient legislation to prohibit and prevent the employment of children as domestic workers", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Enact legislation to ensure effective protection against all crimes committed against persons or against their property because of their sexual orientation or gender identity", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Conclude the process leading to the adoption of the bill which seeks to incorporate femicide in the Criminal Code", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Extend a standing invitation to the human rights mechanisms of the United Nations", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Continue to take appropriate measures and to provide adequate resources to ensure the socio-economic rights of vulnerable groups ", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Consider the ratification of the Convention on the Protection of the Rights of All Migrant Workers and Members of Their Families ", - "values": [ - "3 - Considering action" - ] - }, - { - "text": "Promptly investigate and prosecute perpetrators of threats, extortion, and attacks on human rights defenders, vulnerable individuals, unionists, and potential beneficiaries of the Victims' Law ", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Redouble efforts to eliminate discrimination against women", - "values": [ - "4 - General action" - ] - }, - { - "text": "Consider establishing a national human rights institution, in accordance to the Paris Principles", - "values": [ - "3 - Considering action" - ] - }, - { - "text": "Extend a standing invitation to all United Nations Human Rights Council special procedures mandate holders ", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Employ all appropriate ways and means, while reiterating that human rights promotion and protection is a process, to further develop and strengthen a genuine culture of human rights, create greater human rights capacity-building and promote public awareness-raising with a view to the improved promotion and protection of human rights in society", - "values": [ - "4 - General action" - ] - }, - { - "text": "Ensure the completion of the legislative process on the Code on the Protection of Children", - "values": [ - "4 - General action" - ] - }, - { - "text": "Continue working on national programmes directed to protect the rights of the country's minorities ", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Strengthen the implementation of legislation in the areas of freedom of expression, access to information and non-discrimination and ensure that all relevant laws are fully in line with the Constitution", - "values": [ - "4 - General action" - ] - }, - { - "text": "Ratify the OP-CRC-SC with a view to providing better implementation to the Convention on the Rights of the Child", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Extend a standing invitation to the special procedure mandate holders of the Human Rights Council", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Accede to the Optional Protocol to CAT", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Create a comprehensive policy to improve the rights of the child, which is essential in this situation, in parallel with the ratification of OP-CRC-AC ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Continue and deepen the positive ongoing actions to protect children, including from trafficking and exploitation of minors ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Sign the Optional Protocol to the Convention against Torture and other Cruel, Inhuman or Degrading Treatment or Punishment", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Review the legislation on the minimum ages for criminal responsibility and for employment ", - "values": [ - "3 - Considering action" - ] - }, - { - "text": "With the assistance of the international community, to increase efforts at speeding up the implementation of the next phase of its Poverty Reduction Strategy Paper with a view to promoting the right to an adequate standard of living ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Reform its criminal code as soon as possible in order to guarantee freedom of movement both within its territory as well as towards foreign countries without the need for prior permission in accordance with applicable international standards ", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Facilitate the establishment of private media organisations by eliminating legislative and administrative obstacles", - "values": [ - "4 - General action" - ] - }, - { - "text": "Consider adopting a national action plan against racism, xenophobia and related intolerance", - "values": [ - "3 - Considering action" - ] - }, - { - "text": "Expeditiously and fully implement the Constitution adopted in 1997 and strive for the earliest adoption of a penal code, a criminal procedure code as well as a civil code and a civil procedure code, in accordance with international standards, and provide clearly in new legislation for freedom of expression, assembly, movement, religion and belief ", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Continue to implement measures aimed at enhancing the overall wellbeing of its citizens by guaranteeing their social and economic rights", - "values": [ - "4 - General action" - ] - }, - { - "text": "Ratify the International Convention for the Protection of All Persons from Enforced Disappearance as soon as possible.", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Continue to provide assistance to demobilized children, independently of the illegal armed group they may have belonged to, along the lines suggested by the Secretary-General ", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Ensure freedom of the press, and reply to the concerns raised by the experts of the Human Rights Committee in their 2009 report ", - "values": [ - "4 - General action" - ] - }, - { - "text": "To South Sudan to establish a moratorium on executions with a view to abolishing the death\npenalty", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Consider conducting a campaign to promote awareness of the Child and Adolescent Protection Act of 2009 and of the mechanisms for access to justice for children and adolescents", - "values": [ - "3 - Considering action" - ] - }, - { - "text": "Comprehensively address the issue of corruption and further promote transparency", - "values": [ - "4 - General action" - ] - }, - { - "text": "Ratify ICCPR-OP2 aiming at the abolition of the death penalty and take measures for its abolition", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Abolish the death penalty in law and ratify the Second Optional Protocol to the International Covenant on Civil and Political Rights ", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Ratify the OP-CAT and criminalize torture ", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Seek the support of development partners to extend technical assistance and capacity-building to address challenges identified in its national report so as to reinforce its efforts in the protection and promotion of the human rights of its people ", - "values": [ - "1 - Minimal action" - ] - }, - { - "text": "Ensure the implementation of the Electoral Law", - "values": [ - "4 - General action" - ] - }, - { - "text": "Reduce child mortality and malnutrition to achieve the 2015 national Millennium Development Goals", - "values": [ - "4 - General action" - ] - }, - { - "text": "Take concrete measures to guarantee the independence of the High Commission for Human Rights in accordance with the Paris Principles", - "values": [ - "4 - General action" - ] - }, - { - "text": "Recognise the importance of Island of Balliceaux for the Garifuna people as a site of remembrance, and ensure and promote the relations of those people with the Island as noted by the Special Rapporteur on Cultural Rights", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Sustain its designed programmes aimed at the availability and affordability of higher education", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Continue its commitment to international human rights obligations and standards and ensure that the new bill of rights is drafted through broad-based consultations and embraces no less protection of human rights", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Strengthen efforts to guarantee the rights of children, and particularly those of children with disabilities, observing at all moments the best interests of the child", - "values": [ - "4 - General action" - ] - }, - { - "text": "A comprehensive strategy addressing issues such as language learning, access to education and employment in favour of the integration of Meskhetian Turks", - "values": [ - "4 - General action" - ] - }, - { - "text": "Encourage the private capital to contribute to the national development process through the funding of charity work", - "values": [ - "4 - General action" - ] - }, - { - "text": "In line with its commitment to the human rights of migrants, implement or strengthen existing measures to prevent and sanction acts of discrimination against migrants ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Further ensure that everyone is entitled to equal respect and to a fair participation with full enjoyment of equal rights and opportunities in economic, political, social and cultural developments as incorporated in the laws and plans of action ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Take measures to fight all types of inflammatory speech or incitement to hatred against ethnic and religious minorities and ensure that perpetrators of such crimes are prosecuted and receive adequate convictions and penalties", - "values": [ - "4 - General action" - ] - }, - { - "text": "Continue with its measures to protect children and improve their access to education", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Investigate allegations of extrajudicial killings, torture and other cruel and inhuman or degrading treatment and bring perpetrators to justice", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Continue current efforts to protect and promote women workers' rights", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Pass the bill for the early domestication of the Convention on the Elimination of All Forms of Discrimination against Women ", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Reintroduce a moratorium on executions with a view to the abolition of capital punishment ", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Continue to implement its plan to combat discrimination against women", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Further promote the participation of women in politics and government", - "values": [ - "4 - General action" - ] - }, - { - "text": "Put an end to unlimited detention on remand and free all persons detained without official accusation and trial", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Continue its efforts and successful measures to ensure full access to education and health care for all its citizens, especially disadvantaged groups", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Consider establishing a national mechanism for the elaboration of reports and the follow-up to recommendations", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Pass legislation to prevent and criminalize all forms of violence against women, and provide law enforcement with training and education to ensure its effective implementation", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Step up efforts, together with Nepal, to find a lasting solution to the situation of Bhutanese refugees in Nepal ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Adopt measures to fight domestic violence and promote the role of women in public life ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Follow measures taken at the national level to ensure that municipalities in Brazil develop specific policies to guarantee rights of lesbian, gay, bisexual, transgender and intersex people", - "values": [ - "4 - General action" - ] - }, - { - "text": "Continue with the policies and programs confronting crime that emphasize on an educational and preventative approach ", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Continue to address the remaining challenges, including in empowering women and ensuring gender equality in purposeful manner ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Make efforts to minimize overcrowding, improve sanitation and separation of juveniles from adults in prisons", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Ensure that Parliament adopts all the pending legislation", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Continue actions in ensuring the participation of women in political and public life in order to eliminate existing barriers in the way of guaranteeing, promoting and protecting the rights of women in line with the international standards", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Further facilitate access to health services and education, especially for women and children ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Continue to improve access to basic health-care services, especially for antenatal care and patients affected by HIV and the Ebola virus", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Further promote identity and culture of different communities and to raise awareness in the society about their historic presence in Egypt and contribution to the society", - "values": [ - "4 - General action" - ] - }, - { - "text": "Allow United Nations human rights mechanisms and OHCHR to establish and reinforce their presence in the country in order to guarantee an independent monitoring of the human rights situation in Sri Lanka.", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Continue with appropriate measures to eradicate discrimination and violence against women including domestic violence and to strengthen existing measures to thoroughly investigate crimes related to violence against women. ", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Increase funding for education, ensure access to education for all children, overcome gender disparities in access to education and improve the educational infrastructure and the quality of education", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Continue conducting training and dissemination programmes on obligations and commitments on human rights for government officials and stakeholders at the national and local levels", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Assess the overall situation of the Roma community and adopt a comprehensive strategy to tackle discrimination and other problems faced by that community", - "values": [ - "3 - Considering action" - ] - }, - { - "text": "Incorporate the crime of torture in the Criminal Code and the Military Criminal Code ", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Implement fully and rapidly the Family Protection Act of 2013 in order to reduce domestic violence effectively", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Effectively implement Act No. 293 and amend relevant provisions in family law in order to ensure equality between women and men", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Take steps to integrate minority communities in Germany by promoting their access to education, housing, employment and health care ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Take necessary measures with the aim of ensuring that each case of abuse of power by law enforcement officers is properly investigated and perpetrators brought to justice ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Enact without delay the 2013 Access to Information Bill and Data Protection Bill", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Develop and implement appropriate, efficient measures to protect indigenous women and children from all kinds of violence and discrimination ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Pursue efforts to improve Maori participation in all areas of social life.", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Intensify efforts intended to punish and prevent discrimination based on ethnic grounds in all areas of life, in particular in cases affecting children and women belonging to ethnic minorities, refugees and asylum-seekers and members of migrant families ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Promote the access of persons placed in migration detention centres to free legal aid", - "values": [ - "4 - General action" - ] - }, - { - "text": "Continue implementing the necessary economic measures to eradicate poverty, allowing all the Nepalese population a life with dignity ", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Take appropriate measures aimed at full access to an improved water source for the population ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Amend Law No. 5651, widely known as the Internet Law, to ensure the right to seek, receive, and impart information in the exercise of freedom of opinion and expression", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Repeal all national legislation implying the application of the death penalty and declare a de jure moratorium, commute all death sentences to prison sentences, and ratify the Second Optional Protocol to the International Covenant on Civil and Political Rights ", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Expand the scope of protection of children against crimes committed online", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Enact legislation that specifically addresses discrimination against lesbian, gay, bisexual, transgender and intersex individuals", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "That all security forces personnel, including the penitentiary police, receive adequate and mandatory training on international human rights standards", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Improve healthcare for infants and children and for people living with HIV/AIDS", - "values": [ - "4 - General action" - ] - }, - { - "text": "Continue to cooperate with other countries in health", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Further strengthen the human rights institutions to ensure better protection of the rights of children, women and indigenous people", - "values": [ - "4 - General action" - ] - }, - { - "text": "Increase efforts to ensure accountability for trafficking in persons by investigating, prosecuting and adjudicating trafficking and by providing effective legal remedies for the victims", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Continue its efforts for the proper implementation of the measures adopted for the effective promotion and protection of women's rights, considering the different vulnerability factors to which they may be exposed and the importance of their participation in society", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Take all necessary measures to ensure the full protection of women from sexual and gender-based violence", - "values": [ - "4 - General action" - ] - }, - { - "text": "Continue to take measures to ensure that the rights of migrants are observed and not to allow any negative phenomena related to migration, including trafficking in persons", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Bring the Official Development Assistance (ODA) up to the internationally committed 0.7 per cent of the Gross Domestic Product (GDP) ", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Continue its efforts to spread the culture of human rights across the school curriculum and public awareness campaigns", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Complete the trial of former Chadian President Hissène Habré in the framework of the African Extraordinary Chambers to ensure accountability for serious international crimes, in accordance with the due process and international obligations and standards", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Guarantee the free exercise of freedoms of expression and opinion", - "values": [ - "4 - General action" - ] - }, - { - "text": "Establish specific initiatives and policies aimed at combating all forms of xenophobia racism and hate aimed at foreigners, particularly Muslims", - "values": [ - "4 - General action" - ] - }, - { - "text": "Adopt appropriate measures to reduce the high rate of people living in extreme poverty", - "values": [ - "4 - General action" - ] - }, - { - "text": "Give precedence to the principle of non-refoulement when considering the situation of refugees or asylum-seekers who allege that their lives, liberty or personal integrity may be at risk in their countries of origin ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Take measures to foster a safe, respectful, enabling environment for civil society, including through adopting laws and policies that support the rights to peaceful assembly, association, expression and information, and through promptly investigating and prosecuting attacks on journalists and members of civil society organizations ", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Recommended improving the freedom of association and freedom to bargain collectively.", - "values": [ - "4 - General action" - ] - }, - { - "text": "Define its expectations of United Nations organizations and agencies regarding technical and financial assistance, and request the international support required in order to cope with material and infrastructural constraints, as highlighted in its national report ", - "values": [ - "1 - Minimal action" - ] - }, - { - "text": "Take action to reduce and eliminate all cases of abuse, torture or mistreatment by police and security forces", - "values": [ - "4 - General action" - ] - }, - { - "text": "Consider ratifying the two Optional Protocols to the International Covenant on Civil and Political Rights and, meanwhile, declare an official moratorium on executions with a view to abolishing the death penalty, commuting death sentences to imprisonment", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Make the declaration regarding Article 22 of the Convention against Torture to recognize the competence of the Committee against Torture to receive individual communications", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Adopt strict legislation which criminalizes rape in every context and which ensures legal punishment of the perpetrators including those from the police, military and other authorities ", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Consider a formal moratorium on executions of all persons condemned with the death penalty and examine the possibility of abolishing the death penalty ", - "values": [ - "3 - Considering action" - ] - }, - { - "text": "Take effective steps to address racism and xenophobia and incorporate the provisions of the International Convention on the Elimination of all Forms of Racial Discrimination into its domestic legislation, to raise awareness and promote tolerance in society and to ensure that violent acts, discrimination and hate speech are systemically investigated and the alleged perpetrators prosecuted", - "values": [ - "4 - General action" - ] - }, - { - "text": "Consider amending the Sexual Offences Act to include inter-marital rape in all circumstances", - "values": [ - "3 - Considering action" - ] - }, - { - "text": "Ensure that the conditions of detention are in conformity with minimum international standards ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Design awareness-raising campaign on cultural diversity and continue its efforts to end discrimination and xenophobia against minorities ", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Continue its laudable approach in the area of providing development assistance and supporting infrastructure projects for developing and least developed countries through the Kuwaiti fund for economic development ", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Implement the CEDAW Committee's recommendation with regard to the Act of 1920 which in current form prohibits the advertising of contraceptives and consider establishing and providing adequate resources for a sufficient number of safe houses for victims of domestic violence.", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Ensure transparency of institutional reforms and wide participation of NGOs throughout the adoption of the new Constitution", - "values": [ - "4 - General action" - ] - }, - { - "text": "Ensure the inclusion in all humanitarian and post-conflict reconstruction efforts of policies to protect the rights of persons with disabilities who belong to the most vulnerable groups in society ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Continue to ensure its compliance with its human rights obligations, especially those enshrined in ICCPR and other human rights agreements to which it is a state party", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Continue and intensify efforts to promote access for persons of foreign origin to the public function, especially among the most disadvantaged", - "values": [ - "4 - General action" - ] - }, - { - "text": "Re-launch the dialogue between government and media representatives with a view to encouraging pluralism in the media and strengthening the right of everybody to seek, receive and impart information and ideas of all kinds, without interference by public authority", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Continue to accede to international human rights instruments, including the Convention against Transnational Organized Crime and the Additional Protocol thereto on the prevention and punishment of trafficking in persons", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Acknowledge the existence of the so-called \u201crehabilitation clinics\u201c and \u201csexual reorientation\u201c therapies and take measures to eradicate them", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Strengthen the implementation of the National Action Plan to end gender-based violence, in cooperation with civil society organizations and other interested parties, and ensure better access to health care and social services for victims, in particular rural women ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Carry on a dialogue with Nepal to find acceptable solutions for the remaining Bhutanese refugees of Nepali origin in Nepalese refugee camps ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Consider ratifying more human rights instruments", - "values": [ - "3 - Considering action" - ] - }, - { - "text": "Take all the necessary measures to ensure that the National Commission for Human Rights is in line with the Paris Principles", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Take steps to eliminate any discrimination in the enjoyment of all human rights by lesbian, gay, bisexual and transgendered LGBT individuals, including by ensuring that their right to freedom of association is fully respected ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Continue efforts aimed at improving access to malaria diagnosis and related treatment by 2020", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Implement the Action Plan to end the recruitment and use of children, signed at the United Nations in 2012 ", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Revoke the current sponsorship system Kafala and replace it with regulations in accordance with international standards ", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "An effective implementation of the combating of the domestic violence act to reduce gender-based violence", - "values": [ - "4 - General action" - ] - }, - { - "text": "Extend open and standing invitations to the special procedures ", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Share with other countries its experiences in poverty reduction and agricultural development.", - "values": [ - "1 - Minimal action" - ] - }, - { - "text": "Allow undocumented migrants to protect their rights and to file complaints irrespective of immigration status", - "values": [ - "4 - General action" - ] - }, - { - "text": "Continue the efforts to ensure that national legislation prohibits discrimination on the grounds of disability, sexual orientation, gender identity or social status", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Establish an independent national human rights institution in accordance with the Paris Principles", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Complete the reform of the judicial system.", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Develop and employ measures to respect the rights of prisoners, including reviewing the potential for alternative measures for offenders, and detention conditions", - "values": [ - "4 - General action" - ] - }, - { - "text": "Establish a national institution for the protection of human rights in accordance with the Paris Principles", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Further step up efforts to publicly condemn hate speech, including against Roma", - "values": [ - "4 - General action" - ] - }, - { - "text": "Engage in a constructive dialogue with the media, NGOs and international bodies to promote freedom of expression in Ecuador", - "values": [ - "4 - General action" - ] - }, - { - "text": "Provide pupils with disabilities with adequate equipment and tools ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Launch an intensive national programme for human rights awareness-raising and education in order to protect and enhance human rights ", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Bring conditions of detention into conformity with the United Nations Standard Minimum Rules for the Treatment of Prisoners and develop protection measures for women deprived of their liberty, in line with the Bangkok Rules, as well for children living in prison with a parent", - "values": [ - "4 - General action" - ] - }, - { - "text": "Continue to fight against racist crimes and hate speech", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Make the necessary efforts to increase spending on social programmes, particularly with respect to education and access to health. ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Implement and develop social assistance programmes for the elderly ", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Continue to improve its policies and programmes to advance the status of women and girls, and protect children, including those with disabilities", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Lift de jure and de facto the state of emergency in the Algiers Wilaya and fully guarantee the enjoyment of the right to freedom of expression and assembly for all citizens ", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Ensure legal enforcement of economic, social and cultural rights in domestic courts", - "values": [ - "4 - General action" - ] - }, - { - "text": "Incorporate systematically in police training awareness-raising on the rights of victims and suspects ", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Continue its efforts towards early ratification of the main international human rights treaties, including the International Covenant on Civil and Political Rights and the International Covenant on Economic, Social and Cultural Rights", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Ratify the ICESCR, CEDAW and the Convention of the Rights of the Child at an early stage together with other important human rights conventions", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "In the realm of the new criminal procedure code, establish an independent mechanism for the investigation of alleged cases of torture by officers of law-enforcement agencies independent from the Ministry of the Interior and the Prosecutor's Office", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Along with the ILO recommendation, continue providing information about the situation of Roma minority, adopt effective measures to integrate Roma minority into the economic, social and cultural life of the country ", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Review, with a view to their amendment and elimination, all laws and practices that discriminate against African, Arab and Muslim Americans, as well as migrants, in the administration of justice, including racial and religious profiling ", - "values": [ - "3 - Considering action" - ] - }, - { - "text": "Take effective measures in ensuring that the victims of trafficking, especially women, are protected and supported in an appropriate manner", - "values": [ - "4 - General action" - ] - }, - { - "text": "Immediately and unconditionally release the estimated 2,200 political prisoners ", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Adopt a national strategy for the improvement of the situation in the prison system ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Take on with determination the pending challenges with regard to children and women as a way to continue giving a good example to the region and the rest of the world in the promotion and protection of human rights.", - "values": [ - "4 - General action" - ] - }, - { - "text": "Have an independent body to promptly and thoroughly investigate all allegations of torture and ill-treatment by the police ", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Continue its efforts to ensure gender equality and in particular, further promote accountability of the Government, and also promote access to education and health care services.", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Issue clear directives to health officials to prohibit the sterilization of women living with HIV/AIDS without their informed consent", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Continue to promote women's rights and integrate the gender dimension in the economic and social development programmes", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Put in place more concrete measures to combat violence against women and children", - "values": [ - "4 - General action" - ] - }, - { - "text": "Ensure equal political participation and withdraw reservations to articles 3 and 25 of the ICCPR as these reservations remain critical to ensure equality rights of women and men and equal opportunities", - "values": [ - "4 - General action" - ] - }, - { - "text": "Publish case studies and annual statistics of labor disputes brought before the Government, and their manner of disposal.", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Amend article 4 of the Constitution to abolish the death penalty", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Take further steps to eliminate discrimination against the Roma population, especially in the field of education, employment, housing and access to services", - "values": [ - "4 - General action" - ] - }, - { - "text": "Modify the existing Penal Code in order to definitely abolish the death penalty in Tanzania legislation ", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Remove the obligation of healthcare public servants to inform the Office of Immigration about the identity of their patients, as set forth in section 87, paragraph 2 of the Residence Act ", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Take steps to release all political prisoners and facilitate the requested visits of the United Nations Special Rapporteur on torture and the Working Group on Arbitrary Detention ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Remove, or at least extend, the 35-day statute of limitations of reporting rape cases", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Sign and ratify the OP-CRC-SC", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Continue cooperating with civil society in the implementation of the outcome process.", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Take measures to ensure the effective implementation of the comprehensive legal framework to combat trafficking in persons and improve assistance to victims of trafficking, especially women and children ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Establish a moratorium on the death penalty with a view to definitively abolishing the death penalty", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Favour national unity through dialogue as a guarantor for security, without which there can be no development", - "values": [ - "4 - General action" - ] - }, - { - "text": "Comply with its international obligations for the effective mitigation of greenhouse gas emissions, because of their impact in climate change", - "values": [ - "4 - General action" - ] - }, - { - "text": "Take necessary measures to ensure that no child is subject to religious practice that confines their religious freedom or the liberty of parents to ensure the religious and moral education of their children in conformity with their own convictions", - "values": [ - "4 - General action" - ] - }, - { - "text": "Expedite the establishment of an OHCHR office with a full mandate", - "values": [ - "4 - General action" - ] - }, - { - "text": "Ensure adequate funding from the budget for the National Human Rights and Anti-Discrimination Commission", - "values": [ - "4 - General action" - ] - }, - { - "text": "Conduct campaigns to promote awareness among the population in general of the need to treat the elderly with dignity, and simultaneously, to eradicate practices and beliefs associated with witchcraft rituals", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Continue to insist on making poverty reduction a priority and make efforts to improve people's living standards in order to achieve positive progress in ensuring the National Economic and Development Plan for Horizon 2020 ", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Accelerate efforts to ensure economic and social rights ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Continue legislating so that there is no discrimination against lesbian, gay, bisexual, transgender and intersex persons in the field of pensions", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Continue efforts to combat child domestic labour", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Strengthen the measures to combat violence against women", - "values": [ - "4 - General action" - ] - }, - { - "text": "That the provisional Government ensure full respect for the rule of law and human rights and, in this regard, abide by all of Kyrgyzstan's international obligations and commitments ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Ratify the 1951 Convention Relating to the Status of Refugees and implement legislation providing asylum seekers and refugees with legal status in line with international standards, especially abiding the principle of nonrefoulement", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Encourage the authorities to strengthen educational policies in order to provide for full school enrolment of all children ", - "values": [ - "4 - General action" - ] - }, - { - "text": "See that competent institutions carry out a campaign to explain the content of the Constitution distributed to different groups of the society", - "values": [ - "4 - General action" - ] - }, - { - "text": "Explicitly prohibit discrimination on the grounds of sexual orientation, which is not included in the Law on the Prevention of and Protection against Discrimination", - "values": [ - "4 - General action" - ] - }, - { - "text": "Share the methodology used in the elaboration of the national report as a good practice of the UPR", - "values": [ - "1 - Minimal action" - ] - }, - { - "text": "While the country has ratified the Convention against Transnational Organized Crime, the Government is committed to ratifying the Protocol to Prevent, Suppress and Punish Trafficking in Persons, especially Women and Children.", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Consider ratifying Convention against Torture and Other Cruel, Inhuman or Degrading Treatment or Punishment (CAT) ", - "values": [ - "3 - Considering action" - ] - }, - { - "text": "Step up efforts directed at fighting discrimination based on gender, particularly in order to end discriminatory treatment affecting children born to a foreign father married to a Malagasy women", - "values": [ - "4 - General action" - ] - }, - { - "text": "Resume efforts to find a negotiated political solution to the Syrian people's tragedy", - "values": [ - "4 - General action" - ] - }, - { - "text": "Do everything within its reach to minimize income inequalities between different social classes and geographical regions", - "values": [ - "4 - General action" - ] - }, - { - "text": "Work to ensure inclusive, quality and free primary and secondary education to children with disabilities on an equal basis with other children", - "values": [ - "4 - General action" - ] - }, - { - "text": "Continue its efforts in its legal reform process to further promote and protect human rights in the country", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Further strengthen measures to combat migrant smuggling and trafficking in persons", - "values": [ - "4 - General action" - ] - }, - { - "text": "Redouble efforts to reduce poverty and malnutrition ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Take concrete steps to ensure prompt, adequate, and transparent investigation of killings, intimidations and other abuses of persons from the lesbian, gay, bisexual and transgender community", - "values": [ - "4 - General action" - ] - }, - { - "text": "Consider ratifying the Convention on the Rights of Persons with Disabilities.", - "values": [ - "3 - Considering action" - ] - }, - { - "text": "Remove the provisions that criminalize homosexuality.", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Continue cooperating with Special Procedures and accept in particular requests for visits from Special Rapporteurs ", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Put priority attention to issues regarding education and training in the human rights area for the officials of the law enforcement bodies, judiciary and of investigative bodies ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Allow the International Committee of the Red Cross (ICRC) to visit places of detention and to visit prisoners of war from Djibouti ", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Maintain the momentum of development of the mass media, including the Internet, so as to protect freedom of expression ", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Consider ratifying the International Convention on the Elimination of All Forms of Racial Discrimination", - "values": [ - "3 - Considering action" - ] - }, - { - "text": "Immediately allow the Ministry of Human Rights and domestic and international NGOs greater access to its prisons. subsequently that the President of Yemen establish a commission with the purpose of analyzing the recommendations of the Ministry of Human Rights and NGOs and implementing reforms to bring Yemen's prison system up to internationally recognized standards.", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Consider positively signing core human rights treaties to which it is not yet a party", - "values": [ - "3 - Considering action" - ] - }, - { - "text": "Strengthen its national machinery for the protection and advancement of women and girls ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Continue its national policy aimed at improving the access of citizens to subsistence and to development, and improve continuously the standard of living of the population according to the national conditions of China", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Respond positively to the repeated requests for a visit by the Special Rapporteurs on torture and other cruel, inhuman or degrading treatment or punishment on the independence of judges and lawyers on the situation of human rights defenders, on freedom of religion or belief on extrajudicial, summary or arbitrary executions on the sale of children, child prostitution and child pornography and by the Working Group on Arbitrary Detention", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Approve and implement as soon as possible the bill against torture, in order to effectively implement protection as provided by CAT ", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Continue to organize awareness-raising campaigns in cooperation with concerned stakeholders to fight harmful traditional practices touching on the rights of women and children", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Strengthen the role of the technical committee on legal medicine in order to avoid any death sentences to minors, and establish a moratorium on executions from the perspective of the final abolition of the death penalty ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Strengthen the judiciary and guarantee its independence.", - "values": [ - "4 - General action" - ] - }, - { - "text": "Investigate all allegations of torture, and to adopt a definition of torture in keeping with the Convention against Torture and Other Cruel, Inhuman or Degrading Treatment or Punishment, in order to, inter alia, make torture an autonomous offence with adequate sanctions", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Strengthen the role and mandate of the Ethiopian Human Rights Commission ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Further address the human rights challenges and continue its efforts in strengthening national mechanisms, particularly in the field of gender equality and non-discrimination and in the area of preventing and combating human trafficking and protecting the victims thereof", - "values": [ - "4 - General action" - ] - }, - { - "text": "Increase efforts to investigate and prosecute cases of human trafficking and economic and sexual exploitation, particularly of women and children", - "values": [ - "4 - General action" - ] - }, - { - "text": "Remain focused on combating poverty, particularly in areas where poverty is most prevalent and widespread", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Ratify all core international instruments on human rights, in particular ICESCR, CEDAW, the Convention on the Rights of the Child", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Establish a mechanism for automatic judicial review of expulsion orders", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Take all appropriate measures in order to prevent the transfer of unaccompanied minors to Sweden and provide those who are already in the country with the necessary humanitarian support", - "values": [ - "4 - General action" - ] - }, - { - "text": "Take effective measures to eliminate all forms of discrimination against immigrant women in accessing basic social services.", - "values": [ - "4 - General action" - ] - }, - { - "text": "Revise the status of children born of foreign parents in accordance with relevant international standards ", - "values": [ - "3 - Considering action" - ] - }, - { - "text": "Continue to provide protection for the victims of trafficking in persons and to strengthen its national laws and to foster cooperation with regional and international organizations in the field of combating trafficking in persons", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Ratify the Optional Protocols to the Covenant on Civil and Political Rights, the Optional Protocol to the Convention Against Torture and Other Cruel, Inhuman or Degrading Treatment or Punishment and the Rome Statute", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Take prompt actions to protect children against sex abuse and exploitation", - "values": [ - "4 - General action" - ] - }, - { - "text": "Address overcrowding and harsh conditions in prisons ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Implement public awareness campaigns to promote tolerance and respect for cultural diversity and to counter prejudice, stereotypes, discrimination, racism and Islamophobia", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Undertake concerted efforts to address the issue of domestic violence, especially with regard to its prevention ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Establish a NHRI under Paris Principles to undertake and oversee the further advancement of the human rights agenda", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Adopt practical measures to counteract any form of child labour and human trafficking that stunts and deeply wounds the innate dignity of children ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Provide adequate resources to the National Human Rights Commission and appoint independent and credible commissioners", - "values": [ - "4 - General action" - ] - }, - { - "text": "Abolish the death penalty in Republika Srpska", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Confidence-building and stabilization measures: implementation of the action plan for IDPs and conflict-affected communities, including host communities.", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Recognize conscientious objection as a right, guaranteeing an alternative community service to the military service of a truly civilian character, and free all conscientious objectors currently imprisoned", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Consider acceding to the main international human rights instruments to which it is not party, particularly CAT and its Optional Protocol ", - "values": [ - "3 - Considering action" - ] - }, - { - "text": "Remove its remaining reservations to CEDAW", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Continue its efforts aimed at ratifying the CPED ", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Protect the rights of the child more effectively, particularly during counter-terrorism activities, and by desisting from issuing death sentences and executing juveniles", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Prohibit explicitly corporal punishment of girls and boys in all circumstances, as recommended by the Committee on the Rights of the Child", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Immediately abolish the death penalty and establish a moratorium on all pending executions", - "values": [ - "3 - Considering action" - ] - }, - { - "text": "Accede to the International Convention on the Prevention and Punishment of the Crime of Genocide", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Take immediate measures to ensure under-nourished children are provided with nutrition supplements and access to clean water", - "values": [ - "4 - General action" - ] - }, - { - "text": "Continue to be persistent in rejecting any attempt to impose foreign values over Jordanian social principles", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Elaborate a new general strategy aimed at reducing the less favourable and discriminatory situation of Roma, Sinti and traveller communities", - "values": [ - "4 - General action" - ] - }, - { - "text": "Take concrete measures to end discrimination and counter stigmatization of marginalized groups, including minorities and lesbian, gay, bisexual, transgender and intersex persons", - "values": [ - "4 - General action" - ] - }, - { - "text": "Expedite the ratification of the International Convention on the Protection of All Persons from Enforced Disappearance signed in 2012 signed in 2012", - "values": [ - "4 - General action" - ] - }, - { - "text": "Further strengthen the independence and capacity of the institutions for the promotion and protection of human rights", - "values": [ - "4 - General action" - ] - }, - { - "text": "End forced labour and child labour ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Develop and implement a specific national action plan to support the Government\u2019s efforts in tackling human trafficking and strengthening inter-agency coordination", - "values": [ - "4 - General action" - ] - }, - { - "text": "Strengthen professional training to promote the rapid integration of young graduates into the labour force", - "values": [ - "4 - General action" - ] - }, - { - "text": "Take effective measures to combat hate speech in the media and on the internet, including by prosecuting the perpetrators, where appropriate, regardless of their official status", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Review and modify, in the light of the recommendations of this review, those measures that may obstruct access to basic rights such as health, education and housing for migrants, particularly women and children", - "values": [ - "4 - General action" - ] - }, - { - "text": "Revise its Criminal Code so as to eliminate the mandatory death sentence", - "values": [ - "4 - General action" - ] - }, - { - "text": "Continue efforts in combating trafficking in persons, and in particular consider the possibility of elaborating comprehensive measures to reduce the demand for services of trafficked persons", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Take immediate measures to address the situation of the continued distortion of the history in Japan, since this is indicative of the refusal to address past violations and the danger of its reoccurrence, and recommended immediate measures to address the situation, as also called for by the Special Rapporteur on contemporary forms of racism.", - "values": [ - "4 - General action" - ] - }, - { - "text": "Implement the 1997 Constitution and the rights that this document enshrines, including freedom of expression ", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Continue its efforts to establish a national human rights institution in accordance with the Paris Principles, which would strengthen the human rights infrastructure within the country ", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Implement the existing policies and laws to eradicate child labour and trafficking", - "values": [ - "4 - General action" - ] - }, - { - "text": "Strengthen national capacities to improve cooperation between the different interstate agencies", - "values": [ - "4 - General action" - ] - }, - { - "text": "Should overlook its legislation on custody and take actions to ensure that the welfare and protection of the children are prioritized in custody cases", - "values": [ - "4 - General action" - ] - }, - { - "text": "Serve as a model for the freedom of the press by ensuring that all journalists and media outlets, including those that may be viewed as critical to the Government, are free from harassment.", - "values": [ - "4 - General action" - ] - }, - { - "text": "Become party to the International Covenant on Civil and Political Rights and the two Optional Protocols thereto - the International Convention on the Elimination of All Forms of Racial Discrimination - the Convention against Torture and the Optional Protocol thereto - the Optional Protocols to theConvention on the Rights of the Child - the Convention on the Rights of Persons with Disabilities and the Optional Protocol thereto - and the International Convention for the Protection of All Persons from Enforced Disappearance ", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Take steps to reassess the measures needed to ensure that the principle of freedom of religion and belief is implemented without discrimination.", - "values": [ - "4 - General action" - ] - }, - { - "text": "Improve the protection of children at national level by ratifying the Convention on the Rights of the Child and its Optional Protocols", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Strengthen measures to eradicate female genital mutilation and child marriage", - "values": [ - "4 - General action" - ] - }, - { - "text": "Pursue efforts undertaken to prevent and more effectively punish acts of domestic violence committed against women and children, through strengthening the legislative arsenal and the resources allocated to the judiciary, police force and justice", - "values": [ - "4 - General action" - ] - }, - { - "text": "Continue to implement programmes in the area of education, health and social empowerment and integration of vulnerable groups, especially women, children and the disabled, through the established national mechanisms as well as with the relevant NGOs and international organizations", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Issue a standing invitation to the United Nations special procedures", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Reactivate the dialogue on migration with the North African States, namely Libya, Tunisia, Algeria, Morocco and Egypt", - "values": [ - "4 - General action" - ] - }, - { - "text": "Continue the process of strengthening free health care and free education in remote areas as well as strengthening the kidu welfare system for the benefit of vulnerable populations ", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Cooperate more with the special procedures mandate holders, in order to allow the international community to provide the best possible support in guaranteeing human rights", - "values": [ - "4 - General action" - ] - }, - { - "text": "Ensure a safe working environment for journalists and take proactive measures to address the issue of impunity, such as swift and independent investigations ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Intensify efforts aimed at promoting and protecting the rights of women, combating domestic violence and promoting gender equality ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Elaborate a national programme to combat the problem of overcrowding of prisons.", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Further consolidate the Office of the Ombudsman as the national human rights institution, so that it is in line with the Paris Principles ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Continue its remarkable efforts to promote the rights of the child and to ensure adequate protection to women, children and victims of human rights violations ", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Reinforce efforts aimed at safeguarding rights of persons with disabilities, including guaranteeing their access to inclusive education", - "values": [ - "4 - General action" - ] - }, - { - "text": "Create a system of juvenile justice in line with international standards", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Take urgent steps to promulgate and implement its national Constitution guaranteeing universally accepted recognized fundamental human rights for all citizens and the rest of its population ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Take effective measures to investigate and prosecute war crimes, including rape and other sexual abuse, and ensure that war crimes trials are carried out expeditiously and fairly by an independent and impartial tribunal", - "values": [ - "4 - General action" - ] - }, - { - "text": "Pay attention to the integration into domestic legislation of the commitments undertaken by Turkmenistan by virtue of international conventions on human rights.", - "values": [ - "4 - General action" - ] - }, - { - "text": "Implement a national employment policy for persons with disabilities", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Put in place a national strategy to combat domestic violence and child abuse ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Amend or repeal both the Sedition Act and the Printing Presses and Publication Act, to bring Malaysia's domestic security legislation in line with its international human rights commitments on the freedoms of expression, peaceful assembly, and association", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Call on the Libyan Arab Jamahiriya to share with other countries, including mine, the Sudan, its experience in achieving an adequate standard of living for low-income families, especially by providing such families with an investment portfolio ", - "values": [ - "1 - Minimal action" - ] - }, - { - "text": "Swiftly ratify the Optional Protocol to the International Covenant on Economic, Social and Cultural Rights", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Allocate greater budget to improving educational facilities, especially in the rural areas, and promote school enrolment at all levels", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Include in the school system at all levels, appropriate measures in the field of human rights education, in accordance with the Plan of Action of the World Programme for Human Rights Education.", - "values": [ - "4 - General action" - ] - }, - { - "text": "Encourage public debate on the draft Constitution", - "values": [ - "4 - General action" - ] - }, - { - "text": "Consider issuing a standing invitation to the special procedure mandate holders", - "values": [ - "3 - Considering action" - ] - }, - { - "text": "Offer guarantees for the respect of civil and political rights, specifically abrogating or amending the Sedition Act and the Newspaper Act of 1958 in order to ensure compatibility with international standards and to ensure respect for freedom of expression ", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Continue implementing affirmative measures aimed at eliminating every kind of discrimination against women and girls", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Improve conditions for detainees in Irish prisons to bring them in line with international standards", - "values": [ - "4 - General action" - ] - }, - { - "text": "Continue to adopt measures aiming at further refining its judicial system, reforming law enforcement bodies and curbing crime and corruptions levels ", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Take further steps to devise an effective response to all forms of violence against women, including the criminalization of domestic violence", - "values": [ - "4 - General action" - ] - }, - { - "text": "Take adequate measures to better protect the fundamental rights of migrant workers and refugees living in Armenia ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Ensure that the legislative and policy response to increases in irregular migration is consistent with international human rights and refugee law, particularly the principle of non-refoulement", - "values": [ - "4 - General action" - ] - }, - { - "text": "Strengthen all kinds of measures to combat violence against women and girls, inter alia, adoption of a broader law to criminalize all forms of violence against women ", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Ensure that the laws relating to the Truth and Reconciliation Commission, as well as to the Commission on Disappearances are in line with international standards ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Strengthen its legal and institutional framework to combat racism and racial discrimination to ensure that all legal provisions are fully applied and ensure active monitoring of racism and racial discrimination .", - "values": [ - "4 - General action" - ] - }, - { - "text": "Abolish stoning as a form of capital punishment and consider abolishing "apostasy" as a capital offence", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Promptly take the necessary measures to incorporate in the domestic law the provisions of the Convention against Torture and the Convention for the Protection of All Persons from Enforced Disappearances, in order to ensure its effective implementation ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Consider carrying out the relevant legislative reforms in order that the Constitution and secondary legislation clearly and unequivocally safeguard the rights listed in article 4 of the ICCPR in cases of states of exception or national emergency", - "values": [ - "3 - Considering action" - ] - }, - { - "text": "Increase the number of police officers, in conjunction with capacity development of the Public Prosecutor's Office. ", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Adopt a new prison policy in order to improve prison conditions and, if possible, increase the salaries of prison guards and administrative staff ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Adopt legislation to ensure full cooperation with the ICC and to accede to the Agreement on the Privileges and Immunities of ICC ", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Ratify the International Convention on the Elimination of All Forms of Racial Discrimination, the International Covenant on Economic, Social and Cultural Rights and its Optional Protocol and the three Optional Protocols to the Convention on the Rights of the Child", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Make further legislative and executive efforts in order to prevent intolerance and discrimination on religious grounds against members of religious minorities", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Withdraw the reservations made to articles 21 and 22 of CAT and ratify its Optional Protocol", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Adopt measures to increase the level of representation of women in the legislative and executive bodies ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Adopt a moratorium on the death penalty with a view to abolishing capital punishment in national legislation", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Continue efforts and initiatives to promote dialogue, peace and tolerance between religions, civilizations and cultures", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Strengthen the efforts aiming at elimination of existing harmful traditional practices and adopt all necessary measures to provide full protection of children, girls, women and widows from wrongdoings, inspired by these traditions", - "values": [ - "4 - General action" - ] - }, - { - "text": "Continue the efforts of the Government to ensure the improvement of their health system, as well as progress in other socio-economic and cultural rights ", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Promote awareness and prevention of HIV/AIDS, especially in the rural areas and improve protective and preventive support for AIDS orphans", - "values": [ - "4 - General action" - ] - }, - { - "text": "Step up and intensify programmes to combat poverty, which would help to improve the enjoyment of economic, social and cultural rights ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Further guarantee children's right to health and continue the trend to constantly reduce the mortality rate for children under five years of age", - "values": [ - "4 - General action" - ] - }, - { - "text": "Continuing to pursue environmental education and sustainable development", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Issue an open-ended and standing invitation to all special procedures - and more specifically respond positively to the requests for visits by the Special Rapporteurs on the promotion and protection of the right to freedom of opinion and expression and on the right to education, the Working Group on Arbitrary Detention, and the Special Rapporteurs on torture and on extrajudicial, summary or arbitrary executions ", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Share experience and good practices with others ", - "values": [ - "1 - Minimal action" - ] - }, - { - "text": "Investigate all cases of the use of excessive force against protestors by the security forces and hold accountable those responsible for the incidents, stop the practice of military trials of civilians", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Strengthen prevention and awareness-raising programmes in its efforts to address trafficking in persons at the national and regional levels, including through the Bali Process", - "values": [ - "4 - General action" - ] - }, - { - "text": "Ensure strong public statements recognizing the legitimate and important role of human rights defenders and that all alleged attacks against human rights defenders are promptly and thoroughly investigated and that perpetuators are held accountable", - "values": [ - "4 - General action" - ] - }, - { - "text": "Consider incorporating the UN Rules for the Treatment of Women Prisoners and Non-Custodial Measures for Women Offenders, otherwise known as the "Bangkok Rules", as part of its programme to enhance the condition of detainees in prisons", - "values": [ - "3 - Considering action" - ] - }, - { - "text": "Continue applying programmes and measures for the enjoyment of the right to education and the right to health", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Continue to reform the prison system and look further into ways of reforming the Penal Code to ensure adequate prison conditions and treatment of prisoners ", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Recommended conducting a nationwide, transparent review of all potentially political cases of past years and releasing all those found to have been incarcerated on politically motivated charges.", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Implement CEDAW's call to put in place a strategy to eliminate violence, harmful practices and stereotypes against women in line with the Convention", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Resume full cooperation with the Human Rights Council and with OHCHR", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Continue implementing the Plan for the Integration of the Roma, through which the Ministry of Social Security provides labour market insertion services for persons belonging to this vulnerable group", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Strengthen measures to end discrimination, exclusion and marginalization of indigenous groups and minorities, in particular the San people ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Further strengthen measures to provide protection and support to the family as the natural and fundamental unit of the society", - "values": [ - "4 - General action" - ] - }, - { - "text": "Submit its overdue reports to treaty bodies", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Put an end to all forms of media censorship ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Abolish capital punishment, establish a moratorium on all pending executions and commute all death sentences to prison sentences", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Revise legislation regarding the sexual and reproductive rights of women, including the abolition of the total ban on abortion, and ensure their access to services necessary for their enjoyment of the highest attainable standard of health", - "values": [ - "3 - Considering action" - ] - }, - { - "text": "Explicitly criminalize torture and other cruel and inhuman treatment ", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Continue with the development and implementation of concrete measures to strengthen the participation of women and young people in decision-making and representation, as well as measures to eliminate gender-based violence and other forms of discrimination", - "values": [ - "4 - General action" - ] - }, - { - "text": "Continue its efforts to guarantee the provision of resources and infrastructure in the area of initial and secondary education so the quality standards are ensured", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Continue efforts to finalize and then, of course, adopt a Domestic Violence Act", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Step up its efforts with effective measures for the promotion of the rights of vulnerable groups, especially through education and health", - "values": [ - "4 - General action" - ] - }, - { - "text": "Develop mechanisms for full and fair reparations for victims of slavery, including compensation and rehabilitation ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Intensify current efforts to improve the exercise of the rights of persons with disabilities ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Establish standard operating procedures for the identification of victims of human trafficking", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Make sure that in the process of modernizing the social security system special attention is paid to the conformity of the adopted decisions to international human rights standards", - "values": [ - "4 - General action" - ] - }, - { - "text": "Continue with the ongoing efforts to fight discrimination against non-citizens on the basis of race or nationality, including by ensuring that appropriate legislation sanctioning such acts is applied effectively and all alleged cases are investigated", - "values": [ - "4 - General action" - ] - }, - { - "text": "Continue developing the strategy and normative complementary measures, which ensure continuity in the reform of the judicial sector", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Continue ensuring the rights of women and girls through their empowerment and participation in society", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Continue efforts to improve the mental health sector and combat maternal mortality", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Ratify the International Covenant on Economic, Social and Cultural Rights (ICESR), which has been signed but not ratified.", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Launch a campaign for the birth registration of children and adults living on the streets and for those belonging to ethnic minorities to facilitate the obtaining of identification documents", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Continue promoting the role of national institutions for the protection of human rights by supporting the activities of the regional committees of the National Human Rights Council in various regions, in particular in the cities of Laayoune and Dakhla in the southern provinces", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Allow and ensure safe and dignified return of ethnically cleansed IDPs and refugees from Georgia's Abkhazia and the Tskhinvali regions and comply fully with respective norms of international humanitarian law and human rights law before and while ending the occupation of these regions", - "values": [ - "4 - General action" - ] - }, - { - "text": "Accede to and implement the Rome Statute in national legislation ", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Adopt measures to hold juvenile and adult offenders separately", - "values": [ - "4 - General action" - ] - }, - { - "text": "Initiate a national dialogue on a universal minimum wage", - "values": [ - "4 - General action" - ] - }, - { - "text": "Intensify efforts to ratify the Convention against Torture and Other Cruel, Inhuman or Degrading Treatment or Punishment with a view to having ratified it when the Marshall Islands meets the Human Rights Council for its third universal periodic review", - "values": [ - "4 - General action" - ] - }, - { - "text": "Ensure that funding in the education sector is consistent and reaches children with special needs, as well as schools in rural areas", - "values": [ - "4 - General action" - ] - }, - { - "text": "Implement the recommendation of treaty bodies and special procedures to introduce the offence of torture into the Criminal and Military Criminal Codes, as well as align rules and provisions on the statute of limitations with the Convention against Torture ", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Actively consider widening opportunities for foreign inhabitants to participate actively in political life.", - "values": [ - "3 - Considering action" - ] - }, - { - "text": "Consider extending a standing invitation to all the special procedures mandate holders of the Human Rights Council ", - "values": [ - "3 - Considering action" - ] - }, - { - "text": "In the context of global partnerships for development, to seek assistance from the United Nations system, including the United Nations High Commissioner for Refugees, and development partners to mobilize requisite resources with respect to financial assistance to aid the establishment of transit centres for refugees and capacity-building in the administration and management of refugees and stateless persons", - "values": [ - "1 - Minimal action" - ] - }, - { - "text": "Urgently eliminate the practice of forced sterilization of women with disabilities", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Provide a follow-up report on efforts and measures to address extrajudicial killings and enforced disappearances taking into account the recommendations of the Special Rapporteur on extrajudicial, summary or arbitrary executions.", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Take effective measures to prevent sex tourism, and combat the sale and trafficking and sexual exploitation of children ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Provide effective protection of LGBT persons from discrimination", - "values": [ - "4 - General action" - ] - }, - { - "text": "Ensure that its media regulations promote diversity among media outlets in line with international standards and best practices", - "values": [ - "4 - General action" - ] - }, - { - "text": "Reinforce due-process safeguards for detainees imprisoned for conduct allegedly related to terrorism or to the operation of armed groups ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Pursue efforts towards a solid democratic culture, particularly the participation of women in political life and in senior civil service posts", - "values": [ - "4 - General action" - ] - }, - { - "text": "Increase its efforts to reduce domestic violence, ensure that police and other officials dealing with situations of domestic violence are adequately trained, and adopt measures to sensitize the public on gender issues ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Continue to effectively implement pro-poor growth and employment creation strategies ", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Remove the death penalty from its criminal statutes and ratify the Second Optional Protocol to the International Covenant on Civil and Political Rights", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Continue to provide effective training that builds the capacity of armed forces, police and other security forces on the protection of human rights especially, vulnerable groups", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Include the issue of domestic violence in regular education and training courses for police officers, prosecutors and judges", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Consolidate the policy gains into legal reforms on issues such as treatment of same-sex relations and access to information", - "values": [ - "4 - General action" - ] - }, - { - "text": "Adopt a law on child protection that provides guidance or directives regarding the roles and responsibilities of government agencies", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Continue its efforts to fight poverty and social exclusion", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Continue to strengthen national capacity for the effective implementation of the National Programme and Plan of Action in the area of human rights", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Adopt and fully implement the Welfare and Development Plan 2016-2023, in accordance with the commitment set out in paragraph 143 of its national report", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Increase constructive cooperation with United Nations human rights mechanisms ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Preserve the progress achieved in areas such as culture, education, health and the elimination of social inequality ", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Further address all forms of gender-based violence and abuses by revising the relevant provisions of the Penal Code, Criminal Procedure Code and Domestic Violence Victim Protection Act", - "values": [ - "4 - General action" - ] - }, - { - "text": "Accede to ICCPR", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Take further measures to protect the rights of human rights defenders and ensure that they, and also journalists, can be active in the country without facing threats to their safety. ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Maintain and strengthen its economic, political and social model chosen by its people in a sovereign manner and continue advancing in its efforts to increasingly build a just and more participative society ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Improve judicial processes to minimize the length of pre-trial detention and speed up trials, and consider alternatives to detention to address prison overcrowding", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Continue consultations on the rights of persons with disabilities with a view to implementing non-discriminatory policies and legislation", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Take all necessary measures to deter perpetrators and to develop programmes and policies in order to prevent sexual exploitation as well as programmes to socially reintegrate child victims", - "values": [ - "4 - General action" - ] - }, - { - "text": "Issue a standing invitation to all human rights special procedures", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "In accordance with the recommendations of the Committee on the Elimination of Racial Discrimination, carry out public awareness-raising campaigns to fight discrimination and hate speech - these kind of policies could be complemented by adopting and implementing legislative measures, promote an inclusive educational system which does not leave behind migrant children or children with special needs ", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Intensification of these ongoing efforts by the Government to ensure the speedy establishment of the National Human Rights Commission ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Consider enacting and implementing objective and balanced criteria for the seating and removal of judges that limit political interference and place an emphasis on improving the objectivity and effectiveness of the Paraguay justice system ", - "values": [ - "3 - Considering action" - ] - }, - { - "text": "Achieve the remaining target of boys and girls primary and secondary education, and address the quality and inequality in education", - "values": [ - "4 - General action" - ] - }, - { - "text": "Consider developing human rights indicators according to the OHCHR framework, as an instrument that would allow for a more precise and coherent evaluation of its national human rights policies", - "values": [ - "3 - Considering action" - ] - }, - { - "text": "Take action to ensure that Cambodian legislation enables all political parties, labour unions and other civil society groups to exercise their rights to freedom of expression, association and peaceful assembly, and that peaceful demonstrations can occur safely and without fear of intimidation or excessive use of force on the part of the Cambodian authorities ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Consider ratifying the International Convention on the Protection of the Rights of all Migrant Workers and Members of Their Families", - "values": [ - "3 - Considering action" - ] - }, - { - "text": "Ensure the effective enforcement of domestic legislation and further strive to eradicate human trafficking through cooperation with the international community, including by accepting a visit by the Special Rapporteur ", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Provide adequate resources and training, including to law enforcement officials, to ensure effective institutions that comply with human rights norms and standards", - "values": [ - "4 - General action" - ] - }, - { - "text": "Further intensify the fight against corruption, especially the corruption of State officials ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Remove the 1992 provision authorizing government censorship of all publications, and promote pluralistic, free and independent media ", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Withdraw its reservations to Article 40 of CRC ", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Eliminate effectively discrimination against women and develop a comprehensive policy for gender equality and the elimination of violence against women through awareness-raising campaigns in society and in the public administration", - "values": [ - "4 - General action" - ] - }, - { - "text": "Continue to increase the active promotion of equality of rights and opportunities, independently of sexual orientation or gender identity, and continue to play its active role at the international level in favour of legal protection against discrimination on the grounds of sexual orientation and gender identity ", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Decriminalize consensual same-sex activity between adults and take measures to promote tolerance in this regard.", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Continue human rights sensitization campaigns promoting human rights education and training ", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Take measures to eliminate all forms of discrimination against Koreans in Japan.", - "values": [ - "4 - General action" - ] - }, - { - "text": "Consider the ratification of the Convention on the Rights of Persons with Disabilities as well as its Optional Protocol.", - "values": [ - "3 - Considering action" - ] - }, - { - "text": "Make efforts aimed at preventing and eliminating all forms of discrimination and abuse vis-\u00c3\u00a0-vis children", - "values": [ - "4 - General action" - ] - }, - { - "text": "Review practices of detention without a court order and address the issue of unduly protracted detentions", - "values": [ - "3 - Considering action" - ] - }, - { - "text": "Continue and strengthen the efforts to eliminate impunity and ensure that all alleged perpetrators of crimes against international human rights and humanitarian law are brought to justice. ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Provide adequate resources to implement awareness-raising activities on the role of women and strengthen the existing structures for the advancement of women in the country ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Investigate the cases of rendition flights where Finland's participation is suspected and bring to justice those involved, considering additionally the possibility of compensation for victims of torture in conformity with internal legislation and international legislation ", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Implement the national legislation against trafficking in persons to curb the high incidence of trafficking in the country", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Examination of the idea of creating a national action plan to implement the outcome of the universal periodic review", - "values": [ - "3 - Considering action" - ] - }, - { - "text": "Implement the Additional Protocol to the United Nations Convention on Organized Transnational Crime to prevent, prosecute and punish human trafficking, particularly the trafficking of women and children", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Consider ratifying core universal human rights instruments, in particular the Convention against Torture and Other Cruel, Inhuman or Degrading Treatment or Punishment, and the Convention on the Elimination of All Forms of Discrimination against Women ", - "values": [ - "3 - Considering action" - ] - }, - { - "text": "Redouble its efforts to protect the human rights of persons with physical disabilities", - "values": [ - "4 - General action" - ] - }, - { - "text": "Re-establish an A-status national human rights institution as soon as possible ", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Speed up efforts towards the adoption of a new national action plan in the area of disability, in line with the provisions of the Convention on the Rights of Persons with Disabilities", - "values": [ - "4 - General action" - ] - }, - { - "text": "Consider incorporating basic human rights principles and guarantees for fundamental freedom on its new constitution", - "values": [ - "3 - Considering action" - ] - }, - { - "text": "Take, in collaboration with the international community and other United Nations specialized programs, concrete measures to ensure access to adequate food", - "values": [ - "4 - General action" - ] - }, - { - "text": "Adopt the necessary legislative or regulatory measures to combat all forms of discrimination, particularly against ethnic or religious minorities", - "values": [ - "4 - General action" - ] - }, - { - "text": "Take affirmative action to increase women's participation in political life ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Deepen actions to ensure effective implementation of the legislation on the protection of women, especially against all harmful practice or negative stereotyping", - "values": [ - "4 - General action" - ] - }, - { - "text": "Consider the possibility of acceding to the other major human rights instruments, in particular the Convention against Torture and Other Cruel, Inhuman or Degrading Treatment or Punishment.", - "values": [ - "3 - Considering action" - ] - }, - { - "text": "Improve prisoners' access to essential services, including health care and rehabilitation ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Continue to pay particular attention to the rights of children and women, including through the development and enactment of national action plans", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Continue its positive initiatives towards prioritizing minority issues and guaranteeing the security of minorities and ensure that the situation of minorities is dealt with in accordance with human rights", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Adopt effective measures to protect Sami's linguistic right and culture ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Consider ratifying the Optional Protocol to the ICESCR, putting thereby at the same level the protection of these rights with the political and civil rights", - "values": [ - "3 - Considering action" - ] - }, - { - "text": "Alleviate legislative and administrative barriers related to the functioning of NGOs and civil society, recognizing the legitimacy of their work and contribution for the society ", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Provide health-care coverage for all persons residing in Spain, regardless of their administrative status", - "values": [ - "4 - General action" - ] - }, - { - "text": "Take steps to guarantee the right to peaceful assembly for its citizens", - "values": [ - "4 - General action" - ] - }, - { - "text": "Put an end to the violations of the right to peaceful assembly and freedom of expression, torture and other ill-treatment", - "values": [ - "4 - General action" - ] - }, - { - "text": "Improve the relevant laws to further combat racial discrimination and hate speech in order to protect effectively the rights of non-citizens residing in Latvia and minority groups", - "values": [ - "4 - General action" - ] - }, - { - "text": "Take steps to approve and implement the 2016 Constitutional reform on the appointment of the judiciary as this would help to ensure its independence", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Ensure that the Law of Libel is not utilised in such a manner as to stifle honest and professional reporting", - "values": [ - "4 - General action" - ] - }, - { - "text": "Ratify International Labour Organization (ILO) fundamental conventions.", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Incorporate a comprehensive definition of discrimination into national legislation", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Take all legal measures available to prohibit FGM and ensure effective implementation, particularly in terms of prevention, awareness-raising, monitoring and sanctions ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Consider ratifying the Optional Protocol to the Convention against Torture.", - "values": [ - "3 - Considering action" - ] - }, - { - "text": "Continue on the path of effective realization of the rights of persons with disabilities and take further steps to promote the recruitment and employment of persons with disabilities", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Allow national and international human rights organisations the space to undertake their non-violent advocacy, campaigning, reporting and investigative work and that the Government of Ecuador engage constructively with human rights defenders in seeking solutions to address Ecuador's human rights challenges ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Continue addressing the challenges in reducing multi-dimensional poverty ", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Implement a policy of maintaining and building prisons, and investing in high quality training of prison staff, increasing their number ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Devote adequate human and financial resources for the effective implementation of the National Policy for Gender Equality and Equity of 2013", - "values": [ - "4 - General action" - ] - }, - { - "text": "Ratify the Rome Statute of the ICC ", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Continue the implementation of the Strategic Plan on Equality of Opportunity 2014-2016 to achieve equal opportunity for women and men, in particular to reduce the pay gap", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Adopt measures to improve conditions for prisoners and detainees", - "values": [ - "4 - General action" - ] - }, - { - "text": "Remove all restrictions, in law and in practice, which prevent the full enjoyment of the right to freedom of association", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Continue to promote and protect rights of children", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Increase identification campaigns in rural areas of mainly indigenous persons, in order to guarantee their political rights and access to education, health and social programmes", - "values": [ - "4 - General action" - ] - }, - { - "text": "Address the growing problem of pretrial detentions and prison conditions", - "values": [ - "4 - General action" - ] - }, - { - "text": "Address improving the conditions in its penitentiary facilities as outlined in the Government's Law and Justice Sector Plan ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Improve the conditions of detention in all places of detention and ensure that prisoners and detainees have access to medical care, adequate and appropriate food, hygiene and exercise", - "values": [ - "4 - General action" - ] - }, - { - "text": "Continue to ensure that its anti-human-trafficking programmes remain victim-oriented and provide effective access to legal and psychological support to child victims of trafficking", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Take additional measures to reduce prisons' overcrowding and improve access to medical treatment and food ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Continue efforts to further promote human rights, democracy and rule of law ", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Increase public awareness campaigns against female genital mutilation", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "End politically motivated prosecutions ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Strengthen the inclusive approach in the implementation of the national policy for the promotion and protection of Human Rights ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Strengthen the actions to defend freedom of expression and the plurality of the media", - "values": [ - "4 - General action" - ] - }, - { - "text": "Ensure that all legislative amendments affecting children\u2019s rights take into account the superior interest of the child in accordance with international standards", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Grant full access to the Commission of Inquiry, to allow the Commission to undertake investigations inside the country and thus to enable it to fulfil its mandate to investigate all alleged violations of international human rights law since March 2011 in the Syrian Arab Republic", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Analyse the possibility of creating a system for the monitoring of international recommendations which would facilitate the systematization of the tracking of the recommendations of the treaty bodies and the mechanisms of the Human Rights Council", - "values": [ - "3 - Considering action" - ] - }, - { - "text": "Allocate the necessary resources for the implementation of the National Plan of Action against racism and anti-Semitism", - "values": [ - "4 - General action" - ] - }, - { - "text": "Continue efforts aimed at putting an end to impunity, and guarantee an effective and impartial application of the legislation and court rulings, through the formal judicial system", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "In conformity with the third Action Plan on Human Rights, continue to consider ratifying the Rome Statute, OP-CAT and CPED ", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Strengthen the implementation of criminal law provisions aimed at combating racially motivated crimes", - "values": [ - "4 - General action" - ] - }, - { - "text": "Recognize marital rape as a criminal offence", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Actively investigate instances of discrimination in employment, including against lesbian, gay, bisexual, transgender and intersex persons", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Adopt the necessary reforms to improve the capacities and effectiveness of the national judiciary system ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Deposit ratification instruments of the Kampala Convention on the Protection and Assistance of IDPs with the African Union and initiate a profiling exercise of the IDPs in Mogadishu to assess protection needs and define "durable solutions"", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Take additional steps to ensure that the legislation establishing the Zimbabwe Human Rights Commission is fully compliant with the Paris Principles and includes guarantees for independence in order for the Commission to see accreditation with the International Coordinating Committee of National Institutions for the Promotion and Protection of Human Rights (ICC)", - "values": [ - "4 - General action" - ] - }, - { - "text": "Put in place effective institutional support for the victims of domestic violence.", - "values": [ - "4 - General action" - ] - }, - { - "text": "End the practice of secret detention and guarantee that due legal process is followed, in line with international standards", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Take full use of technical assistance of the UN and Ivorian NGOs dealing with women's rights to finalize the strategy and implement it accordingly, once adopted", - "values": [ - "4 - General action" - ] - }, - { - "text": "Ensure the prompt and impartial investigation of any excessive use of force in policing the border operations, including by the military", - "values": [ - "4 - General action" - ] - }, - { - "text": "Establish effective and impartial vetting procedures to ensure that their armed forces and police do not recruit persons under the age of 18 ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Continue promoting the process of penal reform, taking into account the international obligations that the State has undertaken in the field of human rights", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Continue to implement laws for further protection of human rights of the people", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Take action towards more pervasive measures to prevent violations of the rights of children through, inter alia, training professionals such as teachers, doctors and social workers to identify potential situations of abuse and report them to the authorities", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Sign and ratify the International Covenant on Economic, Social and Cultural Rights, the Convention against Torture and Other Cruel, Inhuman or Degrading Treatment or Punishment and the Convention on the Elimination of All Forms of Racial Discrimination", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Establish a human rights unit within the Ministry of Justice.", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Reform the judiciary and establish a true separation of powers to ensure democracy and full respect for human rights.", - "values": [ - "4 - General action" - ] - }, - { - "text": "Take measures to ensure access to education, including higher education, for children from national minorities and other vulnerable groups such as refugees and asylum seekers", - "values": [ - "4 - General action" - ] - }, - { - "text": "Take the appropriate measures to reinstate the legitimate authority, as this is crucial for the strengthening of the country's ability to guarantee human rights", - "values": [ - "4 - General action" - ] - }, - { - "text": "Ratify ICCPR-OP2 and abolish the death penalty", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Take steps to ensure that the principle of speedy trials be duly taken into account in the context of the ongoing human rights trials.", - "values": [ - "4 - General action" - ] - }, - { - "text": "Revise its Constitution, legislation, public policies and programmes for the full implementation of the United Nations Declaration of the Rights of Indigenous Peoples", - "values": [ - "3 - Considering action" - ] - }, - { - "text": "Labor and Employment - We are committed to protecting all individuals, including members of racial minorities, from workplace discrimination. From 2011-2013, EEOC received 293,086 individual complaints of discrimination, resolved 320,890 charges, and recovered a total of $1.1 billion for affected employees through the administrative process. Over this three-year period, EEOC filed 603 lawsuits on behalf of individuals subjected to workplace discrimination, resolved 817 such lawsuits, and recovered an additional $173.8 million for affected workers. In 2013, DOJ collected record civil penalties from employers in resolving employment discrimination claims based on citizenship status or national origin, and in 2014, it secured a record amount of back pay for these discrimination victims.", - "values": [ - "4 - General action" - ] - }, - { - "text": "Continue efforts aimed at ensuring access to basic education for all and measures to strengthen the performance of the education system", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Continue to make efforts to provide care to children with disabilities outside the institutional frameworks", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Foster the further development of education for girls and the achievement of gender equality", - "values": [ - "4 - General action" - ] - }, - { - "text": "Adopt specific legislation to grant gender equality", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Guarantee freedom of religion or belief and eliminate all forms of discrimination against people belonging to religious minorities, in particular in the field of religious education", - "values": [ - "4 - General action" - ] - }, - { - "text": "Strengthen its approach in the area of migration by acceding to ICRMW and ask for the assistance of competent international institutions ", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Increase funding in order to create an education system that upholds the right to free, universal and quality education for all children without discrimination", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Expressly prohibit in law corporal punishment in the family, schools and other institutions ", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Continue positive efforts to improve economic, social and cultural rights.", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Take several measures in the area of the administration of justice to accelerate the reform of the judicial system, to fight against abuses of preventive detention, and to draft and transmit the report expected since 2005 by the Committee against Torture", - "values": [ - "4 - General action" - ] - }, - { - "text": "Convene the Court of Appeal in the interest of addressing the pending appeal to the High Court ruling of 2005 on the case of Teonea v. Kaupule.", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Give human rights groups full access to detention facilities", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Take immediate measures to ensure that the indigenous people of Australia have access to health services, education, and to full employment opportunities", - "values": [ - "4 - General action" - ] - }, - { - "text": "Continue its effort to achieve Millennium Development Goals with a view to improving the situation, particularly in economic and social terms", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Improve conditions in prisons and detention centres ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Continue its good efforts to address violence against women and domestic violence", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Continue its commitment to resolving the issue of abuse of power and excessive use of force.", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Recognize the United Buddhist Church of Vietnam and allow it to function independently of the Vietnamese Buddhist Sangha as well as allow multiple branches of the Hao Hao and Cao Dai faiths.", - "values": [ - "4 - General action" - ] - }, - { - "text": "Establish strict accountability of members of the police and military, prison and detention personnel and the judiciary for any violations of human rights, in particular for torture", - "values": [ - "4 - General action" - ] - }, - { - "text": "Use international technical and financial assistance to try to strengthen the institutional framework for the protection of human rights", - "values": [ - "4 - General action" - ] - }, - { - "text": "Enact legislation ensuring freedom of religion and belief for all religious groups and consider abolishing the so-called blasphemy laws", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Through its National Strategy for Combating Violence against Women, further seek to address violence proactively by seeking to influence attitudes and behaviours, in particular through the active involvement of men and boys", - "values": [ - "4 - General action" - ] - }, - { - "text": "Intensify efforts to fully eradicate female genital mutilation, also by promoting awareness-raising and educational activities particularly targeted at local community leaders and health workers", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Revise the press law to comply with international standards concerning the media freedoms ", - "values": [ - "3 - Considering action" - ] - }, - { - "text": "Give special considerations to juvenile offenders, such as to prohibit the use of solitary confinement against persons under 18 and separate juvenile offenders from adult offenders", - "values": [ - "4 - General action" - ] - }, - { - "text": "Continue to strengthen policies that have led to a decrease of the illiteracy rates", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Continue to enhance its programmes towards employment of its youth in the agriculture and fisheries sectors", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Amend marriage law in order that the minimum age for marriage for both girls and boys is set at 18 ", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Take all measures necessary to increase State financing for education ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Provide compulsory human rights training in police academies", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Consider the possibility of mainstreaming the rights of persons with disabilities in the reconstruction plans and programmes", - "values": [ - "3 - Considering action" - ] - }, - { - "text": "Continue to take necessary measures to combat racism and hate crimes ", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Adopt clear by-laws and regulations to the new Media Law clarifying the general clauses for the benefit of the journalists instead of further reducing the space of free media", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Establish a legal framework and a national commission of inquiry on missing persons, and ratify the International Convention for the Protection of All Persons from Enforced Disappearance", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Ratify the Convention for the Protection of All Persons from Enforced Disappearance, signed in 2007", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Allocate more resources in promoting and protecting human rights in crucial areas such as poverty eradication, justice administration, education, public health and gender equality for all sections of the population ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Further step up efforts to extend the action plan against domestic violence to cover all forms of violence against women ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Fully implement its international obligations to ensure the protection of human rights defenders and other civil society actors while exercising their human rights, including the freedom of expression, association and assembly, and remove all restrictions in law and practice which infringe on their work. The Government of the Lao People's Democratic Republic should establish without delay a new independent commission to undertake an impartial and thorough investigation into the enforced disappearance of Sombath Somphone", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Take the necessary measures to eradicate discrimination against girls in the education system", - "values": [ - "4 - General action" - ] - }, - { - "text": "Continue its efforts to combat violence, including violence against women, and adopt a comprehensive strategy aimed at preventing and eliminating all forms of violence against women", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Implement the decision of the Supreme Court of 26 February 2015 [with regard to the incompatibility of the Truth and Reconciliation Commission and the Commission on Disappearances with Nepal's international obligations], as soon as possible", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Accede to the ILO Convention 189 ", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Continue to enhance its positive policies and programmes for trafficked victims and refugees", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Seek to expedite the current process of establishing a National Human Rights Institution, with a view to further improving the general situation of human rights in Angola", - "values": [ - "4 - General action" - ] - }, - { - "text": "Carry out prompt, thorough and impartial investigations into cases of arbitrary arrest and detention and ensure that all police officers found responsible for human rights violations are subjected to disciplinary and criminal proceedings as appropriate, in line with accepted recommendations", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Pursue and increase its efforts undertaken in the field of education, water and sanitation", - "values": [ - "4 - General action" - ] - }, - { - "text": "Share its experiences and best practices in building a robust and efficient healthcare system, as implemented in its country through universal and free coverage for all, which includes access to medicine and the advances in Cuban scientific research, with other countries aspiring to have similar health architecture", - "values": [ - "1 - Minimal action" - ] - }, - { - "text": "Develop specific awareness raising campaigns to promote tolerance and eliminate discrimination based on sex and gender", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Take measures to ensure compliance of the principle of same salary for same work, putting special attention that distinctions due to religion, ethnic or gender do not prevent the respect of this principle", - "values": [ - "4 - General action" - ] - }, - { - "text": "Take further steps to follow the recommendation of CERD in "taking resolute action to counter any tendency, especially from politicians, to target, stigmatize, stereotype or profile people on the basis of race, colour, descent and national or ethnic origin, or to use racist propaganda in politics." ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Tighten the criminal responsibility for the crimes related to the sexual exploitation of children", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Ensure the equitable treatment of all people through an improved justice system and increased respect for human rights within the police and security forces, including the ratification of OP-CAT", - "values": [ - "4 - General action" - ] - }, - { - "text": "Implement without delay and with the assistance of international cooperation, a broad strategy which complies with the Convention on the Elimination of All Forms of Discrimination against Women, aimed at modifying or eliminating practices and cultural stereotypes that are harmful and discriminate against women ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Continue the implementation of the national plan on "Women, Peace and Security", in the context of the implementation of Security Council Resolution 1325 pertaining to the protection of women against violence in conflict and post-conflict situations as well as the simplification of the procedures for naturalization and their integration into society", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Redouble efforts to combat trafficking in persons, especially women and children ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Amend the Children\u2019s Act with the aim of prohibiting virginity tests on children, irrespective of their age", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Step up efforts to address the problem of high school dropout rates particularly in the secondary schools and continue to invest in education.", - "values": [ - "4 - General action" - ] - }, - { - "text": "Decriminalize consensual relations between same-sex adults", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Take further steps to fight human trafficking through a comprehensive study on the causes and extent of trafficking in persons taking into account the origin, transit and destination countries.", - "values": [ - "4 - General action" - ] - }, - { - "text": "Promote greater participation and empowerment of young people in decision-making processes that contribute to the development of the country", - "values": [ - "4 - General action" - ] - }, - { - "text": "Strengthen its educational strategies to ensure that all children enrol in school and receive basic education", - "values": [ - "4 - General action" - ] - }, - { - "text": "Maintain and expand the initiatives undertaken to reduce and eliminate sexual violence as well as exploitation and human trafficking while at the same time, provide services to and protect victims", - "values": [ - "4 - General action" - ] - }, - { - "text": "Integrate human rights education into the national school curriculum, provide sufficient resources for human rights education and training of teachers and ensure that they receive training in topics such as sexual diversity, sexual rights, resilience, gender equality and consent", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Extend an open invitation to all special procedures of the Human Rights Council and establish an adequate mechanism to bring to date all national reports to the Committees and to respond to information requests of the special procedures", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Strengthen efforts to prevent violence against women ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Provide its national human rights institution with the necessary means to ensure its regular work and reinforce its independence", - "values": [ - "4 - General action" - ] - }, - { - "text": "Adopt measures to guarantee the right to life, safety of human rights defenders and journalists, including for those defending indigenous communities from land grabbing", - "values": [ - "4 - General action" - ] - }, - { - "text": "Ensure that minors are separated from adults in places of detention", - "values": [ - "4 - General action" - ] - }, - { - "text": "Include in Armenia's legislation an explicit and comprehensive definition of discrimination against women, and improve legal provisions prohibiting discrimination against women ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Take all necessary measures to ensure equal access to health and education ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Increase access to sexual and reproductive health services by raising the health budget to 15 per cent in line with the Abuja Declaration on Roll Back Malaria in Africa and creating a health insurance scheme for the poor", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Continue its efforts to attain the five major national priorities in the areas of public health, education, job creation, the fight against corruption and crime, and ensuring food security ", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Issue an open invitation to the UN Special Rapporteurs", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Establish an independent national human rights institution for the protection and promotion of the rights of women", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Take further steps to bring the National Human Rights Institution in line with the Paris Principles", - "values": [ - "4 - General action" - ] - }, - { - "text": "Strengthen the independence of the National Human Rights Commission and provide it with the necessary resources to fulfil its mandate", - "values": [ - "4 - General action" - ] - }, - { - "text": "Consider the completion of the ratification process of CRPD in a speedy manner.", - "values": [ - "3 - Considering action" - ] - }, - { - "text": "Implement further policies to ensure gender equality throughout society and strengthen the promotion and protection of human rights ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Accelerate its review of the law on sorcery and sorcery-related killings and strengthen the enforcement of relevant legislation", - "values": [ - "4 - General action" - ] - }, - { - "text": "Increase its cooperation with UNHCR, provide unrestricted access for international humanitarian aid.", - "values": [ - "4 - General action" - ] - }, - { - "text": "Develop and adopt a gender parity law", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Accept the request of the Special Rapporteur on freedom of expression to visit the country which had been requested in 2004 ", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Bahrain is committed to contributing to the current process of human rights standard-setting at the United Nations and to participating in United Nations human rights forums where human rights standards are discussed (for example, the Forum on Minority Issues, which is due to meet in Geneva in September 2008).", - "values": [ - "4 - General action" - ] - }, - { - "text": "Revise the law on abortion in order to identify other circumstances in which abortion could be permitted, particularly abortion in cases of pregnancy resulting from rape or incest ", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Adopt measures to prevent, eliminate and end impunity for all forms of sexual violence, including by improving the investigation and prosecution of sexual offenders and ensuring that penalties are applied consistently", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Lift the reservations to the Convention on the Elimination of All Forms of Discrimination against Women", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Ratify the European Charter for Regional or Minority Languages ", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Work towards ending all forms of discrimination by passing the current Congressional Bill outlawing discrimination and ensuring all existing legislation is in conformity with the Bill's objectives ", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Put in place an independent procedure to monitor complaints of human rights violations by the police ", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Take the necessary steps to pursue ratification of the International Covenant on Civil and Political Rights and the International Covenant on Economic, Social and Cultural Rights", - "values": [ - "4 - General action" - ] - }, - { - "text": "Adopt legislative, judicial and administrative measures to ensure the right to an effective remedy for anyone who claims to have been subjected to torture or other ill-treatment and to provide the necessary administrative and judicial framework to prevent impunity for officers charged with such crimes", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Strengthen efforts to fulfil obligations in accordance with the Convention on the Elimination of All Forms of Discrimination against Women, and the Convention on the Rights of the Child ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Speed up the work to bring the criminal procedure code in line with European standards, as proposed by the Council of Europe", - "values": [ - "4 - General action" - ] - }, - { - "text": "Continue to prioritize poverty alleviation in its efforts to raise the living standards of its people", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Pursue efforts at eliminating all forms of discrimination against women", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Conduct a comprehensive study on child abuse, including sexual abuse, and child labour, with a view to identifying enhanced protection measures and ensuring the provision of adequate resources for their implementation ", - "values": [ - "3 - Considering action" - ] - }, - { - "text": "Adopt concrete initiatives to eradicate all kinds of discrimination against children, through the empowerment of their rights and fair mechanisms of reparation", - "values": [ - "4 - General action" - ] - }, - { - "text": "Strengthen the legal framework in order to ensure gender equality and ban discrimination on the grounds of sexual orientation and gender identity", - "values": [ - "4 - General action" - ] - }, - { - "text": "Explore additional legislative and policy measures to prevent trafficking of children for sexual purposes", - "values": [ - "3 - Considering action" - ] - }, - { - "text": "Take additional measures so that the National Human Rights Commission complies with the Paris Principles, gets adequate resources, is composed of independent members, and has a broad human rights mandate and a specific mandate on gender equality", - "values": [ - "4 - General action" - ] - }, - { - "text": "Step up its efforts to establish its national human rights institution that is compliant with the Paris Principles ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Continue efforts to ensure respect and protection of the rights and fundamental freedoms of the entire population, especially of vulnerable groups, and to ensure compliance with international humanitarian law", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Strengthen measures to progressively ensure free primary education ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Continue efforts to ensure the proper functioning and full independence of the Commission on Human Rights, in accordance with the Paris Principles", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Prohibit explicitly corporal punishment at school, at home, as well as in any public establishment attended by children", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Continue measures to strengthen national institutions for the protection and promotion of human rights and freedoms ", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Improve services for victims of family violence, including the provision of separate homes for children away from abusive family members, and shelters for women", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Guarantee access to legal gender recognition for both intersex and transgender people of all ages, without legal, administrative or financial barriers", - "values": [ - "4 - General action" - ] - }, - { - "text": "Provide independent investigation into and prosecution of all human rights abuses, and to ensure that all those in detention have the right to habeas corpus and due process", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Step up efforts towards the prevention of discrimination against refugees and asylum seekers by repealing recent laws and methods perpetuating those practices", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Consider withdrawing its reservations on Articles 76 and 77 of the International Convention on the Protection of the Rights of the All Migrant Workers and Their Families", - "values": [ - "3 - Considering action" - ] - }, - { - "text": "Follow up on the recommendations made by the Committee on the Elimination of Discrimination against Women to put in place a comprehensive policy with the aim of overcoming traditional stereotypes regarding the roles of women and men in society and the family.", - "values": [ - "4 - General action" - ] - }, - { - "text": "Comply with the principles contained in the Declaration on the rights of indigenous people", - "values": [ - "4 - General action" - ] - }, - { - "text": "Consider issuing a standing invitation to the human rights special procedures ", - "values": [ - "3 - Considering action" - ] - }, - { - "text": "Consider expediting the process to pass the 108th Constitutional Amendment Bill which seeks to reserve a significant portion of seats for women at the Lower House and state legislative assemblies and consider the ratification of the Optional Protocol to Convention on the Elimination of All Forms of Discrimination against Women ", - "values": [ - "3 - Considering action" - ] - }, - { - "text": "Take necessary measures to guarantee all children immediate registration at birth by simplifying administrative procedures, while increasing awareness-raising activities on the subject", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Consider measures to make the Continuing Committee of Officials on Human Rights more operational, ensure its better accessibility for the civil society enabling thus a permanent dialogue process on international human rights obligations including those from the Universal Periodic Review", - "values": [ - "3 - Considering action" - ] - }, - { - "text": "Ratify or accede to the Rome Statute of ICC and to implement it fully at national level and to accede to the Agreement on Privileges and Immunities of ICC", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Take the opportunity of ratifying the Convention on the Rights of Persons with Disabilities to improve social security and public services for persons with disabilities", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Make every effort to completely abolish all forms of discrimination against women ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Redouble its efforts to address challenges in terms of economic rights, namely to reduce unemployment and alleviate poverty", - "values": [ - "4 - General action" - ] - }, - { - "text": "Consider ratification of the third Optional Protocol to the Convention on the Rights of the Child on a communications procedure ", - "values": [ - "3 - Considering action" - ] - }, - { - "text": "Ratify CAT and align fully the definition of the crime in its domestic law with that in the Convention ", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Establish an independent national human rights institution in compliance with the Paris Principles ", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Ratify the Convention on the Rights of Persons with Disabilities and the International Convention for the Protection of All Persons from Enforced Disappearance", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Guarantees freedom of religion in respect of national unity and the territorial integrity of the country", - "values": [ - "4 - General action" - ] - }, - { - "text": "Fully respect representative democracy, the separation of powers, legal rights, due process, universal human rights and the role of civil society groups and regional bodies", - "values": [ - "4 - General action" - ] - }, - { - "text": "Bahrain commits to working to implement the visions of the National Consensus Dialogue. ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Enact legislation to achieve the prohibition of corporal punishment of children in all settings, including in the home and in schools as a matter of priority ", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Work towards completing the process already underway for accession to major international instruments of human rights.", - "values": [ - "4 - General action" - ] - }, - { - "text": "Accelerate efforts towards ratification of the International Convention on the Protection of the Rights of All Migrant Workers and Members of Their Families and the Domestic Workers Convention, 2011 (No. 189)", - "values": [ - "4 - General action" - ] - }, - { - "text": "Ratify the declaration on article 22 on the CAT and consider ratification of OPCAT", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Intensify its efforts to facilitate the participation of women in political and public affairs and fight stereotypes in relation to the role of women, particularly by raising the awareness of the population about the necessity of ensuring that women enjoy their rights", - "values": [ - "4 - General action" - ] - }, - { - "text": "Withdraw remaining reservations to the CEDAW and give priority to the implementation of the Domestic Violence Act", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Pursue social and economic development programmes to promote economic and social rights for the population", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Maintain its positive record on the peaceful coexistence of people of different religions, in particular by organizing the Congress of Leaders of World and Traditional Religions, which brings together senior representatives of world and traditional religions", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Consider establishing a national organ to monitor implementation of the recommendations of UN human rights mechanisms ", - "values": [ - "3 - Considering action" - ] - }, - { - "text": "Take all necessary measures to safeguard the full enjoyment of human rights by women and girls, including by combating sexual and gender-based violence", - "values": [ - "4 - General action" - ] - }, - { - "text": "Further intensify efforts to combat harmful traditional practices affecting children", - "values": [ - "4 - General action" - ] - }, - { - "text": "Take measures to strengthen and guarantee the effective implementation of legal measures against domestic violence, sexual abuse and the exploitation of women and children", - "values": [ - "4 - General action" - ] - }, - { - "text": "Establish a national institution to promote and protect human rights in accordance with the Paris Principles", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Ratify CAT and duly translate the Convention into its domestic legislation to address the crime of torture ", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Take concrete measures to address, once and for all, the Japanese Military Sexual Slavery and other violations committed in the past in other countries including Korea.", - "values": [ - "4 - General action" - ] - }, - { - "text": "Panama makes a voluntary commitment to obtaining approval for the following pending tasks before the second review cycle midterm implementation assessment: Make the minimum age of marriage the same for both men and women, Establish a national mechanism for the prevention of torture, Adopt a law establishing a comprehensive child protection system, and Set up a shelter for victims of trafficking in persons which will provide basic services such as accommodation, food and health care, as well as specialized interdisciplinary assistance.", - "values": [ - "4 - General action" - ] - }, - { - "text": "Effectively address the problem of domestic violence, especially against women, including by approving the Domestic Violence Bill currently under discussion in Parliament", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Continue its efforts to further enhance the role of the Parliament Commissioner for Human Rights and of the national machinery for the advancement of women.", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Develop a comprehensive strategy and national plan of action for the implementation of the Convention on the Rights of the Child", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Reach out to the Special Rapporteur on Freedom of Religion and Belief to arrange a visit at the earliest possible opportunity", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Strengthen human rights cooperation and constructive dialogue, including those through the ASEAN Human Rights Commission and with the relevant United Nations human rights bodies and mechanisms ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Enact a national gender policy and augment the capacity for gender analysis within government ministries, departments and agencies that coordinate policy development", - "values": [ - "4 - General action" - ] - }, - { - "text": "Continue efforts to combat discrimination", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Further improve the social and economic situation of women, in particular in rural areas, so as to eliminate their vulnerability to traffickers", - "values": [ - "4 - General action" - ] - }, - { - "text": "Take into consideration, when examining recommendations made during this session of the Working Group, those that are in line with its religious, social and cultural specificities, in particular those emanating from the Islamic Shari'a, which adds to general human rights principles without replacing them ", - "values": [ - "3 - Considering action" - ] - }, - { - "text": "Strengthen protection measures to protect children against violence", - "values": [ - "4 - General action" - ] - }, - { - "text": "Continue its efforts to achieve Millennium Development Goals within the stipulated time frame", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Support at national, regional and international level the promotion and universal realization of the human right to safe drinking water and sanitation, pursuant the recommendation made by the Council in its different resolutions on the matter", - "values": [ - "4 - General action" - ] - }, - { - "text": "Achieve the harmonization of national legislation with the Rome Statute", - "values": [ - "4 - General action" - ] - }, - { - "text": "Establish a national human rights institution in cooperation with and with the assistance of the international community ", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Study the possibility for the Federal Government of campaigning in favour of applying the United Nations Moratorium on the death penalty ", - "values": [ - "3 - Considering action" - ] - }, - { - "text": "Sign and ratify CED at an early stage", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Canada commits to consider the future recommendations of the Indian Residential Schools Truth and Reconciliation Commission.", - "values": [ - "3 - Considering action" - ] - }, - { - "text": "Continue measures to end trafficking in human beings", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Take measures to ensure that all legislation, in particular laws concerning the right of all persons to peaceful assembly and demonstration, upholds international human rights obligations", - "values": [ - "4 - General action" - ] - }, - { - "text": "Continue to make efforts to ensure the supply of quality drinking water to all of the population", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Consider acceding to the Convention on the Rights of Persons with Disabilities", - "values": [ - "3 - Considering action" - ] - }, - { - "text": "Review all legal cases against individuals who are detained under criminal or judicial investigation on account of the exercise of their right to freedom of expression, as provided in the International Covenant on Civil and Political Rights ", - "values": [ - "3 - Considering action" - ] - }, - { - "text": "Work further to promote the rights of women and girls", - "values": [ - "4 - General action" - ] - }, - { - "text": "Continue the efforts to perfect the living conditions of its population, including by improving access to health care services and quality education ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Place children\u2019s rights at the centre of climate change adaption and mitigation strategies by mainstreaming child-sensitive risk and vulnerability reduction strategies into its National Adaptation Programme", - "values": [ - "4 - General action" - ] - }, - { - "text": "Guarantee access to contraception irrespective of marital status and repeal all laws which restrict women\u2019s and girls\u2019 access to sexual and reproductive health information", - "values": [ - "4 - General action" - ] - }, - { - "text": "Ensure the non-discriminatory approach, particularly in employment, education and housing as well as access to justice of the undocumented and irregular migrants ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Halt any plans to reinstate the death penalty", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Consider ratifying the International Convention on the Protection of the Rights of All Migrant Workers and Members of their Families that it signed in 2004", - "values": [ - "3 - Considering action" - ] - }, - { - "text": "Pursue the initiative to establish Child Desk Officers within the Department of Women's Affairs and intensify efforts to ensure access to free compulsory education for all children in the country.", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Continue and step up efforts to improve school enrolment and the quality of education ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Continue strengthening national democratic institutions ", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Follow-up on the implementation of recommendations of human rights mechanisms ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Extend a standing invitation to the United Nations Special Procedures", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Adopt legislative and political measures, including allocation of financial resources to improve coverage of health services in rural areas", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Strengthen efforts to combat malnutrition and diseases such as tuberculosis ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Actively combat domestic violence and violence against children", - "values": [ - "4 - General action" - ] - }, - { - "text": "Consider ratifying the International Covenant on Economic, Social and Cultural Rights, the Convention on the Rights of the Child and the Convention on the Elimination of All forms of Discrimination against Women", - "values": [ - "3 - Considering action" - ] - }, - { - "text": "Intensify efforts aimed at improving living conditions in prisons, putting an end to the detention of children in police stations and accelerating the adoption of measures to protect children in juvenile correctional facilities ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Effectively fight impunity for cases of extrajudicial killings and enforced disappearance committed by the armed forces and the police, as well as non-state actors ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Continue its efforts aiming to ensure full equality between all citizens and to combat discrimination, including discrimination against persons belonging to minorities, especially with regard to employment, education, health, and access to justice ", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Take more effective measures to eliminate discrimination against noncitizens in relation to working conditions and work requirements, to adopt legislation prohibiting discrimination in employment, and to take further measures to reduce unemployment among immigrants", - "values": [ - "4 - General action" - ] - }, - { - "text": "Develop a permanent resettlement approach for internally displaced persons", - "values": [ - "4 - General action" - ] - }, - { - "text": "Continue to bring its legislation into compliance with the Constitution as well as with ratified international instruments", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Strengthen its cooperation with international human rights mechanisms, in particular with the Human Rights Council", - "values": [ - "4 - General action" - ] - }, - { - "text": "Further strengthen the rule of law and institutions to enforce social cohesion, tolerance and equality in order to exhaustively guarantee human rights for its people, in particular those of vulnerable groups such as women, children, displaced and disabled persons ", - "values": [ - "4 - General action" - ] - }, - { - "text": "In addition, there are some regional human rights instruments of the Council of Europe, such as the Convention on Access to Official Documents, that Slovenia plans to ratify later this year.", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Take the necessary steps towards the establishment of a national human rights institution, in accordance with the Paris Principles ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Incorporate in the domestic legislation the definition of torture, in line with the Convention against Torture and Other Cruel, Inhuman or Degrading Treatment or Punishment, and ensure that no statement made as a result of torture can be invoked as evidence in any judicial proceedings, in conformity with Article 15 of this Convention", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Take all necessary steps in order to promote equality of women and men in the realms of family, economy and policy ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Ensure the separation of power and the independence of the judiciary and prevent government officials from interfering in judicial proceedings", - "values": [ - "4 - General action" - ] - }, - { - "text": "Continue to strengthen oversight of its Technical Intern Training Programme to ensure migrant workers participating in the programme receive full protection and support commensurate with the Government of Japan\u2019s international obligations", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Allow urgently the development of international operations of food distribution in the whole country - put an end to discrimination in the governmental food distribution, prioritizing children, pregnant women, persons with disabilities and senior citizens ", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Continue to implement the core elements of the Children's Act, which is a great step forwards in the achievement of the Millennium Development Goals ", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Take measures to put an end to all human rights violations, including those associated with political prison camps and abduction, as recommended in the COI report and the Human Rights Council resolution adopted as the result of the consideration of that report", - "values": [ - "4 - General action" - ] - }, - { - "text": "Adopt legislative and other measures to correct and prevent discrimination based on sexual orientation, and to ensure full respect for freedom of expression and association of LGBT persons ", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Consider ratifying ILO Convention No. 169, concerning Indigenous and Tribal Peoples, and take operational steps to implement the United Nations Declaration on the Rights of Indigenous\nPeoples, including through constitutional and statutory recognition of land and resource rights and effective political participation \n", - "values": [ - "3 - Considering action" - ] - }, - { - "text": "Take concrete and immediate steps to improve the human rights situation in the country, inter alia, by engaging with international human rights bodies and mechanisms in a sustained way, including by granting access to the country as well as taking on board recommendations of such bodies and mechanisms for further consideration, dialogue and implementation", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Continue efforts for strengthening Malaysia's National Human Rights Commission", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Consider establishing an independent Ombudsman for children ", - "values": [ - "3 - Considering action" - ] - }, - { - "text": "Take steps to fully implement and enforce laws on violence against women and to ensure that victims are able to benefit from the existing legislative framework", - "values": [ - "4 - General action" - ] - }, - { - "text": "Follow through on recommendations articulated in the recent assessment of anti-corruption efforts undertaken by the Ministry of Justice and United Nations Development Programme, including ensuring the physical safety of anti-corruption officials and whistleblowers and encouraging civil society participation in the judicial reform process", - "values": [ - "4 - General action" - ] - }, - { - "text": "Support the right to education by implementing the strategic vision to reform the education system for the period 2015-2030", - "values": [ - "4 - General action" - ] - }, - { - "text": "Continue with the positive work already being implemented to combat domestic violence, in particular against foreign, minority and indigenous workers and through ensuring that victims have support, care and redress for the abuse", - "values": [ - "4 - General action" - ] - }, - { - "text": "Continue to improve the education system ", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Reinstate the Council for the Prevention of Racial Discrimination, Xenophobia and Related Intolerance, dissolved in April 2016", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Increase the efforts to ensure that detention conditions fully meets international human rights standards", - "values": [ - "4 - General action" - ] - }, - { - "text": "Undertake further steps to effectively investigate alleged human rights violations by Law Enforcing Agencies and bring to justice police or other security personnel who were allegedly engaged in acts of brutality and torture ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Share with others the country's experiences in disaster risk management ", - "values": [ - "1 - Minimal action" - ] - }, - { - "text": "Effectively fight impunity against the perpetrators of the crimes against judges, journalists and human rights defenders and conduct effective investigations of human rights violations in these cases", - "values": [ - "4 - General action" - ] - }, - { - "text": "Implement concrete measures to combat religious and ethnic intolerance, restore full citizenship rights of the Rohingya and eliminate requirements for citizenship that discriminate on the basis of race, religion, ethnicity or any other status. Resume recognition of the Rohingya as an ethnic group legitimately residing in Myanmar", - "values": [ - "4 - General action" - ] - }, - { - "text": "Strengthen its national efforts in promoting human rights education and training ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Accelerate efforts to improve the existing situation in detention centres and prisons", - "values": [ - "4 - General action" - ] - }, - { - "text": "Ratify the Rome Statute of the International Criminal Court which it signed in 2000", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Ensure that nobody can be detained without trial and revise relevant laws (ISA, CLTPA, MSA, UPA) accordingly ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Continue its efforts to ensure a treatment of detainees that is in accordance with international norms and standards", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Continue to promote the right to equal opportunity for, and at, work ", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Take further steps towards strengthening the mandate of the Human Rights Ombudsman in order to ensure full compliance with the Paris Principles", - "values": [ - "4 - General action" - ] - }, - { - "text": "Adopt effective measures to implement the national strategy for Roma integration and to combat discrimination against this category of population in employment, education and health care", - "values": [ - "4 - General action" - ] - }, - { - "text": "Pursue efforts for the advancement and empowerment of women and for the integration of women's needs into development ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Take all measures in order to protect and encourage the freedom of expression and make the limitations to the freedom of expression to comply with the international obligations ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Adopt measures necessary to ensure the independence of the Commissioners in accordance with the Paris Principles ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Continue to address the issue of maternal mortality", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Repeal the provisions of the penal code that penalize same-sex relations between consenting adults and put an end to the detention and harassment of LGBTI activists and allow them to freely exercise their right to assembly and peaceful protest", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Ensure a policy of appointments in the judiciary independent from political interference, and a scrupulous respect for deadlines for their renewal ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Continue its efforts to preserve the rights of future generations through its Future Generation Fund", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Abolish all discriminatory legal provisions towards women and increase its efforts in combating all forms of violence against women, including marital rape, child and other forced marriages, and female genital mutilation", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Ensure the right of association of NGOs working on issues of sexual orientation and gender identity", - "values": [ - "4 - General action" - ] - }, - { - "text": "Continue improving the quality of primary and secondary education", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Ensure that schools and counselling centres receive anti-discrimination training as well as adequate funding and guidance on objective standards and fair processes to support students with special needs", - "values": [ - "4 - General action" - ] - }, - { - "text": "Adopt and implement the measures necessary to grant the Hmong the same rights and freedoms as the other members of the Lao population in accordance with international human rights standards, including through genuine engagement with the international community on the issue ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Engage constructively in consultations with civil society, broadcasters and other relevant stakeholders in order to cease the current status quo and public discontent over the procedure and content of the new draft media laws", - "values": [ - "4 - General action" - ] - }, - { - "text": "Continue efforts to combat poverty and provide basic services to vulnerable groups", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Develop an inclusive process with the objective of establishing a national human rights Institution in accordance with the Paris Principles", - "values": [ - "4 - General action" - ] - }, - { - "text": "Cooperate fully with relevant United Nations authorities, in particular by guaranteeing access to the Syrian territory for the Commission of Inquiry", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Take concrete steps to abolish the death penalty", - "values": [ - "4 - General action" - ] - }, - { - "text": "Enforce relevant national policies and legislation to prevent and address the marginalisation and exclusion of women ", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Facilitate social inclusion of women to prevent violence against women and children as well as discrimination based on sex and social status, by improving domestic mechanisms and the adoption of legislative measures for the social integration of women", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Request technical assistance and cooperation, as deemed appropriate, from the international community, including relevant United Nations and specialized agencies, with a view to ensuring the promotion and protection of the full spectrum of human rights of its people ", - "values": [ - "1 - Minimal action" - ] - }, - { - "text": "Consider revising all anti-terrorism legislation to bring it in line with the highest human rights standards.", - "values": [ - "3 - Considering action" - ] - }, - { - "text": "Strengthen efforts, in the framework of the MDGs, to make basic education generally accessible.", - "values": [ - "4 - General action" - ] - }, - { - "text": "Accede to and ratify the International Convention for the Protection of All Persons from Enforced Disappearance", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Continue its efforts aimed at promoting and protecting all human rights ", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Establish a moratorium on executions as a first step towards abolition of the death penalty", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Continue efforts and take measures to prevent the incidence of teenage pregnancy", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Expedite amendments to the Human Rights Commission Act and ensure independence for the Commission and further encourage the Commission to reapply for accreditation to the International Coordination Committee", - "values": [ - "4 - General action" - ] - }, - { - "text": "Strengthen effectively the protection of the rights of indigenous peoples, including to their ancestors' lands", - "values": [ - "4 - General action" - ] - }, - { - "text": "Establish a national mechanism for the prevention of torture as set out in the Optional Protocol to the Convention against Torture", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Place more efforts by empowering organizations which are responsible for defending human rights in the country", - "values": [ - "4 - General action" - ] - }, - { - "text": "Pursue its plans to integrate human rights across the curricula of primary and secondary schools", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Accelerate the process towards the ratification of the International Convention on the Rights of All Migrant Workers and Members of Their Families", - "values": [ - "4 - General action" - ] - }, - { - "text": "Enhance measures to address the issues of trafficking and violence against women, especially through awareness programmes and by strengthening the institutional and legal framework", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Albania had been one of the first to ratify the Council of Europe Convention on preventing and combating violence against women and domestic violence and was implementing it, collaborating with NGOs and providing them with funds from the State budget. The Government was also committed to eliminating the gender wage gap, as well as the discrepancy between the content and the implementation of legislation and its implementation in that respect. ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Adopt the measures necessary to guarantee that the children of internally displaced persons enjoy the same legal status as their parents, regardless of the sex of their parents ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Ensure that the rights of migrants and refugees, especially children, are guaranteed", - "values": [ - "4 - General action" - ] - }, - { - "text": "Address the question of children in domesticity by strengthening the measures already adopted to prevent, combat and eliminate this problematic in line with the international commitments taken by the country", - "values": [ - "4 - General action" - ] - }, - { - "text": "Ensure that detained asylum seekers have access to public health services on an equal footing with other detainees who have been arrested or convicted", - "values": [ - "4 - General action" - ] - }, - { - "text": "Consult with Aboriginal and Torres Strait Islander people, and take into consideration the guidelines proposed by the Australian Human Rights Commission before considering suspension of the Racial Discrimination Act for any future intervention affecting the Aboriginal and Torres Strait Islander people", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Continue to strengthen efforts to provide better legal protection for vulnerable groups, especially women, children and youth, by increasing the number of specialized judges and providing free legal services for those who seek it", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Strengthen its cooperation with the special procedures of the Human Rights Council by responding positively to the pending visit requests and eventually consider extending a standing invitation to all the special procedure mandate holders ", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Adopt legislation to explicitly abolish the death penalty", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Ensure the Commission's independence in accordance with the Paris Principles", - "values": [ - "4 - General action" - ] - }, - { - "text": "Grant equal citizenship rights to men and women", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Provide human rights training on an on-going basis for the disciplined forces", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Intensify the coordination mechanisms to the highest level for the execution and follow-up of human rights-related public policies", - "values": [ - "4 - General action" - ] - }, - { - "text": "Sign and ratify the Optional Protocol to the CRPD", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Improve access to quality education, health and social services, in particular for children and women", - "values": [ - "4 - General action" - ] - }, - { - "text": "Take comprehensive measures to address the use of excessive force by the police and ensure the investigation and the prosecution of all such acts", - "values": [ - "4 - General action" - ] - }, - { - "text": "Continue to ensure, through an ongoing campaign or strategy, access to food and to education for all children, including children with disabilities, children who live on the street, orphans and children living in rural areas", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Ensure that NGOs involved in defending human rights can carry out their activities without hindrance ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Thoroughly investigate and prosecute reported incidents of abductions and killings of persons with albinism", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Prevent use of its territory by foreign terrorist fighters who are engaged in massive human rights violations", - "values": [ - "4 - General action" - ] - }, - { - "text": "Continue its policies and initiatives aimed at the promotion of dialogue, cooperation and tolerance between different cultures and religions of the national minorities of Iran", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Ensure in practice the accountability of law enforcement officers in cases of abuse", - "values": [ - "4 - General action" - ] - }, - { - "text": "Adopt a national plan to eliminate stereotypes about the role of women in society, particularly in the field of gender equality, as previously recommended", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Establish State structures for the supervision, prevention, rescue and rehabilitation in the cases of child labour and mendacity and ensure that those responsible be prosecuted and sanctioned ", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Continue to support training programs for the police ", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Ratify the Convention against Torture and Other Cruel, Inhuman or Degrading Treatment or Punishment without delay ", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Continue to strengthen legislation aimed at the elimination of gender based violence, including through public awareness campaigns", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Foster the presentation of a new bill against all forms of discrimination", - "values": [ - "4 - General action" - ] - }, - { - "text": "Effectively apply resolution 1325 of the Security Council concerning women's participation in decision-making", - "values": [ - "4 - General action" - ] - }, - { - "text": "Ensure freedom of opinion and expression in line with the international obligations of Lithuania", - "values": [ - "4 - General action" - ] - }, - { - "text": "Develop a programme for education and human rights training, as that could enhance the capacity of all stakeholders, including civil society, to facilitate such activities and ensure greater awareness among citizens with regard to human rights", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Cooperate fully with OHCHR, the Human Rights Council and its mechanisms, in particular the Commission of Inquiry", - "values": [ - "4 - General action" - ] - }, - { - "text": "El Salvador will subscribe to the Optional Protocol to the Convention against Torture and will recognize the competence of the Convention under its articles 21 and 22", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Share its experiences and good practices with regard to the right to health, in particular the primary, maternal and child care programs as well as HIV-AIDS control programs and in view of the growing aging population", - "values": [ - "1 - Minimal action" - ] - }, - { - "text": "Increase the age of criminal responsibility to match international standards", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Ensure the country-wide and effective implementation of the Law on Domestic Violence, and ensure access of victims to medical -including psychological-, legal and social support", - "values": [ - "4 - General action" - ] - }, - { - "text": "Invite the Special Rapporteur on the situation of human rights in Eritrea to visit the country ", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Strengthen the infrastructure and institutional arrangements for training on human rights ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Create effective legal mechanisms that would make it possible to reduce the time that people spend in temporary camps for refugees", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Ensure that all forms of discrimination based on gender or sexual orientation are fully prohibited, implement the legal protection foreseen and provide assistance to victims of gender-based, sexual or domestic violence", - "values": [ - "4 - General action" - ] - }, - { - "text": "Further develop concrete measures or steps to expand the representation of women in Government and Parliament as well as to other decision-making positions, as appropriate", - "values": [ - "4 - General action" - ] - }, - { - "text": "Enhance efforts to eliminate FGM, as well as the early and enforced marriage of girls", - "values": [ - "4 - General action" - ] - }, - { - "text": "Eliminate definitively and without further delay capital punishment from the military code", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Adopt a five-year plan on human rights education, focusing on students and young persons of both sexes, in line with the World Programme for Human Rights Education.", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Enact laws criminalising acts of discrimination against minorities such as hate speech", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Re-evaluate the recent amendments to the Press and Publications Law, the Law of Information System Crimes and the Penal Code which threaten the right to freedom of expression, in particular online", - "values": [ - "3 - Considering action" - ] - }, - { - "text": "Continue to enhance the effectiveness of measures taken to improve access to health services in remote and rural areas", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Complete the planned elaboration of a law on human rights", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Sign and ratify CAT and OP-CAT", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Double efforts in order to raise awareness on human rights for all categories of the society", - "values": [ - "4 - General action" - ] - }, - { - "text": "Accede to the main international human rights instruments, in particular the ICCPR, the ICESCR, the CAT, the Optional Protocol to CAT (OP-CAT), the CERD, and the Rome Statute of the Court International Criminal", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Redouble efforts to put in place an independent, impartial and effective administration of justice", - "values": [ - "4 - General action" - ] - }, - { - "text": "Adopt specific labour legislation on the rights of foreign domestic workers in order to guarantee them the same conditions as other workers covered by the 2010 Labour Law", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Take into consideration the recommendations made by the Belgian Parliamentary Special Commission on "the treatment of sexual abuse and acts of paedophilia within a relation of authority, in particular in the Church" aiming at better ensure the rights of the juvenile victims of sexual offences and in particular to increase the limitation period applicable to crimes of rape of or sexual assaults on minors ", - "values": [ - "3 - Considering action" - ] - }, - { - "text": "Take further legislative and policy measures to protect the rights of children, including by ensuring that Liberia meets its obligations under the CRC and the Optional Protocol on the sale of children, child prostitution and child pornography", - "values": [ - "4 - General action" - ] - }, - { - "text": "Action to combat impunity for human rights violations, other economic crimes and similar offences.", - "values": [ - "4 - General action" - ] - }, - { - "text": "Continue consultations with numerous stakeholders in its follow-up to universal periodic review reports.", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Increase social spending to meet basic needs, and establish independent means to monitor and evaluate this expenditure", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Strengthen efforts to improve the situation of women and combat against discrimination and violence against women and children", - "values": [ - "4 - General action" - ] - }, - { - "text": "Take the necessary steps to combat and eradicate forced labour", - "values": [ - "4 - General action" - ] - }, - { - "text": "Amend the Peaceful Assembly Act to guarantee the right to peaceful assembly and facilitate the visit by the Special Rapporteur on the rights to freedom of peaceful assembly and of association", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Reinstate the moratorium on the death penalty and proceed to its complete abolition", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Report regularly to human rights treaty bodies and to respond to special procedures' communications and questions. ", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Establish mechanisms and procedures to facilitate access to justice for persons belonging to discriminated populations who are victims of violence that ensure the investigation and punishment of such acts, the conviction of those who perpetuate them and just reparations for the victims ", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Further improve the promotion and protection of children's rights and prevent the recruitment of child soldiers", - "values": [ - "4 - General action" - ] - }, - { - "text": "Accede to the Second Optional Protocol to the ICCPR", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Take all necessary measures to provide effective birth registration ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Complete the development of a new family policy to promote work-life balance and help improve gender equality in the workplace", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Accede to the various international conventions to which Gambia is not yet party to", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Carry out an in-depth and systematic investigation into all allegations of enforced disappearances, bring perpetrators to justice and guarantee reparations to all victims, in particular to the families of the disappeared persons", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Secure the right to food for all its citizens, especially so as to secure the right to health for children ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Take additional steps, beyond the adoption of legislation, to prevent racially motivated hate speech, hate crimes and discrimination", - "values": [ - "4 - General action" - ] - }, - { - "text": "Exert all its efforts, in law and practice, to combat racism, xenophobia and Islamophobia, and to eliminate all forms of discrimination against migrants, and to avoid subjecting asylum seekers and stateless persons to prolonged and/or repeat unlawful detention", - "values": [ - "4 - General action" - ] - }, - { - "text": "Put an end to cases of torture and ill-treatment in prisons and police stations.", - "values": [ - "4 - General action" - ] - }, - { - "text": "Create a national programme to counter violence against women, in particular domestic violence ", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Reform the Mining Law to guarantee indigenous peoples' right to their land, territories and natural resources", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Strengthen the implementation of the Convention on the Rights of Persons with Disabilities in the national legislation", - "values": [ - "4 - General action" - ] - }, - { - "text": "Continue to adopt legislative and policy measures to fight racial discrimination against persons of African descent", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Address concerns of the ILO Committee of Experts about the conditions under which domestic servants can leave their employment and their possibility to have recourse to courts if necessary, in accordance with international standards ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Abolish the death penalty", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Amend the Criminal Code, as announced in the national report, and introduce a separate provision on trafficking of human beings", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Timely ratify the ICCPR", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Intensify its efforts to protect the rights of other vulnerable groups, especially persons with disability, minorities and indigenous peoples so as to allow them equal access to social, educational, health and other services", - "values": [ - "4 - General action" - ] - }, - { - "text": "Consider introducing a moratorium on the death penalty with a view to abolishing it in the near future", - "values": [ - "3 - Considering action" - ] - }, - { - "text": "Further strengthen its sound educational policies, in particular in the secondary school", - "values": [ - "4 - General action" - ] - }, - { - "text": "Recommended abolishing or reforming the current hukou residency system to ensure that all citizens are ensured basic access to education, health care and other relevant social welfare systems on an equitable basis and in line with the principles of non-discrimination", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Identify the causes and adopt measures to ensure the permanence of minors in general and of girls in particular, in the education system ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Ratify the Optional Protocol to the International Covenant on Economic, Social and Cultural Right", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Release all persons imprisoned or detained on the grounds of their sexual orientation or gender identity", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Continue to take active measures to develop remote mountainous areas in order to reduce the gap between mountainous regions and urban regions ", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Pursue its actions in preventing acts of torture and other cruel, inhuman and degrading treatments in all detention centres", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Continue to combat prison overcrowding to ensure the human dignity of detainees ", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Strengthen the human rights training curriculum provided in the Police Science Academy (ACIPOL) and define an ethics code and appropriate inspection mechanisms for the security forces ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Create a health insurance scheme for the poor ", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Accede to the Convention against Torture and Other Cruel, Inhuman or Degrading Treatment or Punishment ", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Fully disclose the abuse of torture by its Intelligence Agency, ensure the accountability of the persons responsible, and agree to unrestricted visit by the Special Rapporteur on torture and other cruel, inhuman or degrading treatment or punishment to Guantanamo facilities", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Continue to take measures to ensure the social protection of the most vulnerable groups of the population, including persons with disabilities and the elderly ", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Adopt legislative and other necessary measures, including awareness-raising campaigns, against harmful traditional practices and stereotypes. ", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Strengthen measures aimed at ensuring gender equality as well as preventing violence against women ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Continue its efforts on improving access to justice", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Promote legislative and administrative measures to prevent and punish attacks and persecution of children accused of witchcraft", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "That no restrictions be put on the media, so that they may operate freely", - "values": [ - "4 - General action" - ] - }, - { - "text": "Promote the inclusion on all fronts of cultural and religious minorities and guarantee their access to development", - "values": [ - "4 - General action" - ] - }, - { - "text": "Ratify the International Covenant on Civil and Political Rights and the Convention against Torture and Other Cruel, Inhuman or Degrading Treatment or Punishment ", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Carry on intensifying programs and activities aiming at raising human rights awareness", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Revise the 1991 Penal Code and abolish the penalization of apostasy", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Raise the age of criminal responsibility to 16 years old", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Introduce human rights education as a mandatory part of teachers' training ", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Align its legislation and practices with international standards on freedom of expression, particularly regarding the restrictions imposed to freedom of expression in article 26 of the Constitution", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Pursue the establishment of a prison system with an institutional, centralized leadership, strengthening the National Rehabilitation Institute. Continue to improve the material conditions of detention and of administration of detention, with an emphasis on women and foreigners deprived of liberty", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Implement public education and promote awareness programmes and sensitivity training on violence and discrimination based on sexual orientation and gender identity to law enforcement, judicial and other authorities ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Fully implement the laws to combat discrimination against women, and strengthen effectiveness in combating domestic and sexual violence against women ", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Implement the Guiding Principles on Business and Human Rights: Implementing the United Nations "Protect, Respect and Remedy" Framework to guarantee labour and land rights", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Take the measures necessary to fully respect the right to freedom of opinion and expression, including by introducing a law to allow independent media and enable journalists to exercise their profession freely ", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Ensure that national laws are in line with international human rights standards", - "values": [ - "4 - General action" - ] - }, - { - "text": "Become party to the Optional Protocols to the International Covenant on Economic, Social and Cultural Rights, and the Convention on the Elimination of All Forms of Discrimination against Women", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Ratify the OP-ICESCR ", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "That the gradual entry into force of the 2009 Law on Jury Trials be accompanied by substantial preparatory work with judges, together with awareness-raising, and with the inclusion of the human rights education in practice ", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Reduce maternal and child mortality in rural and urban areas, through specific plans on sanitary assistance to pregnant women and during the post-natal period ", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Ensure effective protection against abuse of domestic workers and guarantee their right to just and favourable conditions of work ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Strengthen the capacity of the national human rights institution to have access to cases that require special attention", - "values": [ - "4 - General action" - ] - }, - { - "text": "Pursue its policies aiming at the promotion of dialogue among religions and civilizations, and to activate its role in this regard at the international level ", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Through the ratification of this Convention, [Convention on the Protection of Children Against Sexual Exploitation and Sexual Abuse] Malta pledged to enhance its efforts in combating sexual violence against children", - "values": [ - "4 - General action" - ] - }, - { - "text": "Continue submitting reports to various treaty-monitoring bodies in order to honour its commitments through the implementation of the recommendations emerging from those committees.", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Continue its efforts to ensure the protection and promotion of the right to safe drinking water and sanitation ", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Undertake all necessary measures to ensure that Article 57 of the Code of Military Justice conforms with the Mexican constitution", - "values": [ - "4 - General action" - ] - }, - { - "text": "Improve access to free health care in remote areas ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Launch measures to promote and protect the rights of peasants and other people who work in rural areas", - "values": [ - "4 - General action" - ] - }, - { - "text": "Further protect the freedom of expression and prosecute crimes against journalists as a matter of priority", - "values": [ - "4 - General action" - ] - }, - { - "text": "Increase the support for the presence of women in the workplace with active policies for the promotion of employment and reconciliation measures that allow for this", - "values": [ - "4 - General action" - ] - }, - { - "text": "Withdraw reservations to the Convention on the Elimination of All Forms of Discrimination against Women, the International Covenant on Civil and Political Rights and the Convention on the Rights of the Child", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Intensify its efforts to align its national legislation with the provisions of the Rome Statute", - "values": [ - "4 - General action" - ] - }, - { - "text": "San Marino undertakes the commitment to ratify the Convention on the Prevention and Punishment of the Crime of Genocide and, in conformity with Article 5 thereof, to amend the Criminal Code, by enacting the necessary legislation, with a view to introducing the crime of genocide and the other acts enumerated in Article 3.", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Continue to strengthen the cooperation of the State with civil and social organizations working for the promotion and protection of human rights in the area of education ", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Continue to enhance domestic legal frameworks promoting the human rights, security and well-being of refugees and migrants in Lebanon", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Promptly provide the national mechanism for the prevention of torture with the necessary resources and ensure that its recommendations are acted upon", - "values": [ - "4 - General action" - ] - }, - { - "text": "Continue giving priority attention to domestic and gender-based violence, in particular rape and other crimes of sexual violence, at all levels, including such caused by police and the judiciary", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Ensure that further steps are taken to address anti-discrimination issues and ensure that the National Plan of Action for Equality addresses all areas of the Convention on the Elimination of All Forms of Discrimination against Women", - "values": [ - "4 - General action" - ] - }, - { - "text": "Ensure the protection of the right of women to have access to abortions and for women (and couples) to decide freely and responsibly the number, spacing and timing of their children", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Implement educational programs aimed at raising awareness of the past genocides and of prevention of this crime", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Bring military justice into conformity with international standards to ensure the right to a fair trial ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Adopt a comprehensive national integration strategy that ensures the proper integration of migrants and increases the awareness of migrant women of their rights and protection thereof", - "values": [ - "4 - General action" - ] - }, - { - "text": "Take legislative and practical steps to ensure a political process and elections that are free and democratic ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Guarantee the exercise of freedom of religion or reach an agreement authorizing the opening of places of worship for people who are neither Muslims nor Christians ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Continue with its efforts to ratify the International Convention on the Protection of the Rights of All Migrant Workers and their Families", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Establish in the new Constitution guarantees in the field of human rights and implement a national strategy for human rights, supported by the creation of a national human rights institution in conformity with the Paris Principles ", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Consider withdrawing its reservation to ICCPR ", - "values": [ - "3 - Considering action" - ] - }, - { - "text": "Address urgently the constraints affecting the functioning of the Conditional Cash Transfer programme, including, if appropriate, through technical and/or financial assistance from regional and international partners", - "values": [ - "4 - General action" - ] - }, - { - "text": "Increase efforts for a more fair distribution of wealth in line with the remarkable success in poverty reduction", - "values": [ - "4 - General action" - ] - }, - { - "text": "Continue the efforts to promote interreligious dialogue and share its experience and good practices with other countries", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Conduct comprehensive investigation related to reports by human rights non-governmental organisations about abuses in child care institutions and homes for mothers and children, as well as practices of forced labour in socalled Magdalene laundries", - "values": [ - "4 - General action" - ] - }, - { - "text": "Continue with its efforts to promote the rights of persons with disabilities and eliminate discrimination", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Repeal the provisions establishing different categories of citizenship and remove any indication of ethnicity in identity documents", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Further ensure that all victims of torture and ill-treatment - whether still in United States custody or not - obtain redress and have an enforceable right to fair and adequate compensation and as full rehabilitation as possible, including medical and psychological assistance", - "values": [ - "4 - General action" - ] - }, - { - "text": "Develop a legislation that sets the line between freedom of expression and hate speech and set up a strong mechanism to monitor all manifestations of intolerance, racism, xenophobia especially against Muslims", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Continue its efforts in the comprehensive reform process that the Government embarked upon to combat torture and ill-treatment, including the amendment to the Penal Code and the prosecution and punishment of a number of officials for committing torture and ill-treatment", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Continue its efforts aimed at improving the coordination among national human rights institutions and the treaty bodies ", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Continue the improvements within the judicial reform process, including by eliminating political influence on the judiciary", - "values": [ - "4 - General action" - ] - }, - { - "text": "Take the necessary measures to guarantee the fundamental rights of Honduran citizens, particularly regarding the right to life, stepping up efforts to ensure food security and improving the general security for people", - "values": [ - "4 - General action" - ] - }, - { - "text": "The Government of Yemen is prepared to promote the principle of a broad partnership between the Government and civil society organizations in the area of human rights and to support their active involvement in the integrated development process ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Withdraw reservations to core human rights instruments such as both 1966 covenants ", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Continue efforts aimed at eradicating poverty", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Continue to investigate the different forms of violence against women and to take adequate measures against it ", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Continue to strengthen its consistent efforts to combat violence against women ", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Pay particular attention to the conditions of street children in the context of its national policy on providing adequate protection for children", - "values": [ - "4 - General action" - ] - }, - { - "text": "Deploy further efforts in order to fully involve indigenous peoples in decisions and policies affecting their rights, including those regarding the territories where they live ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Ensure the protection of the rights of children, particularly those in vulnerable situations, and ensure their perpetrators of sexual violence and trafficking are held to account", - "values": [ - "4 - General action" - ] - }, - { - "text": "Cooperate closely with and strengthen the role of the Advisory Commission on Human Rights.", - "values": [ - "4 - General action" - ] - }, - { - "text": "Take necessary actions to define the legal status for an independent child rights monitoring body and increase its efforts for human rights training relevant to child abuse and domestic violence cases", - "values": [ - "4 - General action" - ] - }, - { - "text": "Take immediate and concrete steps for justice and fight against impunity for the crimes and human rights violations that were committed against unarmed civilians in Conakry in 2009", - "values": [ - "4 - General action" - ] - }, - { - "text": "Take effective measures to ensure the right of a person to enjoy freedom of religion and religious belief", - "values": [ - "4 - General action" - ] - }, - { - "text": "Strengthen its policy and programmatic measures aimed at addressing the big challenges of inequality, poverty and unemployment", - "values": [ - "4 - General action" - ] - }, - { - "text": "Bring before a court all persons who are detained under an administrative detention order and have them properly charged with a crime in accordance with international standards", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Ensure that no one is detained for long periods without trial ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Proceed with the implementation of the programme entitled \u201cPrevention of Domestic Violence and Violence on the Grounds of Gender\u201c", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Pass legislation, namely the Family Violence Bill, to strengthen reporting on, and investigations of, incidents of family violence and increase protections for victims", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Adopt a national action plan on Security Council resolution 1325 on women peace and security", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Raise the level of ODA to 0.7 per cent of GDP", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Take further measures to prevent and combat the sexual exploitation of children", - "values": [ - "4 - General action" - ] - }, - { - "text": "Amend article 10 (c) of the 1963 citizenship act to bring it into line with international standards", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Undertake all necessary measures to immediately recognize citizenship to those who had it at the time of their birth ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Strengthen programs aiming at the promotion and protection of children rights ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Continue with the measures aimed at improving the protection and integration of persons with disabilities, in particular in the areas of access to education and public transport ", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Continue implementing the LLRC recommendations through the Action Plan", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Continue to counter terrorist and ethnic separatist activities undertaken by certain individuals and groups", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Take necessary measures in the light of the law of 2009 and, in particular, reform the sponsorship system in order to protect employees in the event of conflict", - "values": [ - "4 - General action" - ] - }, - { - "text": "Fully implement the Government agreement to create a national human rights mechanism that complies with the Paris Principles", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Consider establishing enhanced procedures and transparent criteria regarding the appointment and dismissal of judges, and the application of disciplinary measures in order to dispel concerns of the international community regarding the independence of the judiciary ", - "values": [ - "3 - Considering action" - ] - }, - { - "text": "Step up its efforts to encourage enterprises to take positive measures to narrow the gender pay gap, including regarding women\u2019s access to managerial positions", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Ratify the following international instruments: the International Convention on the Protection of the Rights of All Migrant Workers and Members of their Families (CMW)", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Give full protection to asylum seekers in accordance with international law, and abolish the practice of pushing the boats of asylum seekers back at sea", - "values": [ - "4 - General action" - ] - }, - { - "text": "Ensure consistent enforcement of consular notification at all levels of Government and support the passage of related legislation through Congress", - "values": [ - "4 - General action" - ] - }, - { - "text": "Continue to intensify its efforts in further strengthening the good governance and rule-based state with more focus on capacity-building for national agencies and law enforcement authorities on human rights protection and promotion ", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Improve gender equality both in legislation and practice, including by granting men and women equal property and family rights", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Combat impunity of all attacks against human rights defenders, including by investigating the murders of 17 journalists since 1991. Establish a special commission in the Public Prosecutor's Office to bring those responsible to justice", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Ensure appropriate investigation of all acts of violence committed for racial motives and punish those responsible for them ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Strengthen measures aimed at eliminating all forms of gender-based violence", - "values": [ - "4 - General action" - ] - }, - { - "text": "Consider ratifying ILO Convention 189 on Decent Work for Domestic Workers ", - "values": [ - "3 - Considering action" - ] - }, - { - "text": "Prohibit the treatment of formerly trafficked women and children remaining in Kuwait as in violation of national immigration laws, and grant permission for them to remain in the country to defend their rights ", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Continue making contribution by providing support to developing countries in order to improve the enjoyment of human rights in these countries", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Expedite the adoption of the Prevention and Combating of Trafficking in Persons Bill as a mechanism to assist victims in accordance with international humanitarian and human rights standards and to prosecute the perpetrators ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Adopt a national action plan on Security Council resolution 1325 on Women, Peace and Security", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Address the remaining shortcomings in the implementation of the Constitutional Law on the Rights of National Minorities, and undertake measures aimed at ensuring effective participation of national minority members in public life and decision-making processes ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Ratify the Optional Protocol to the Convention against Torture and Other Cruel, Inhuman or Degrading Treatment or Punishment. Optional Protocol to the Convention against Torture (OPCAT) and implement the national prevention mechanism foreseen in this instrument", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Take further steps leading to a formal abolition of the death penalty, commuting the existing sentences to life imprisonment terms ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Continue and strengthen efforts carried out by the High Commission for Immigration and Intercultural Dialogue, particularly efforts to raise awareness of the need to combat racism, discrimination and intolerance", - "values": [ - "4 - General action" - ] - }, - { - "text": "Continue the efforts to strengthen human rights protection in penitentiary establishments", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Follow-up and implement the recommendations made by the United Nations mechanisms ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Ensure all reports of human rights abuses, including those against ethnic and religious minorities, women and girls, are fully investigated and prosecuted", - "values": [ - "4 - General action" - ] - }, - { - "text": "Adopt a comprehensive law to fight discrimination, pursuing to the recommendations issued both by the Committee on the Elimination of Racial Discrimination and the Committee on the Elimination of Discrimination against Women", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Continue its work to combat discrimination against vulnerable sectors and against all forms of discrimination, while encouraging the application of affirmative action policies for indigenous peoples and the migrant population", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Take further measures to prevent the trafficking of children ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Take, together with sensitization and awareness-raising campaigns, the necessary legislative measures to prohibit FGM.", - "values": [ - "4 - General action" - ] - }, - { - "text": "Produce and publish a plan to eliminate child and forced labour, with clear and specific objectives, milestones and timelines", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Strengthen effective legal and administrative measures to address all forms of violence against children and, in particular, discrimination against children belonging to minorities, especially Roma and foreign children ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Further guarantee the rights of persons with disabilities and expand their participation in public affairs", - "values": [ - "4 - General action" - ] - }, - { - "text": "To strengthen its efforts for poverty eradication and to guarantee the right of education all over the country ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Limit to a strictly necessary level the use of prosecutions against persons that exercising their rights to freedom of expression and peaceful demonstration ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Pursue their policies to combat child labour and ill-treatment of children in all its forms", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Consider ratifying the following international instruments: the International Covenant on Economic, Social and Cultural Rights, the International Covenant on Civil and Political Rights and the International Convention on the Protection of the Rights of All Migrant Workers and Members of Their Families", - "values": [ - "3 - Considering action" - ] - }, - { - "text": "Ensure that the death penalty is not applied to persons below the age of 18 years, in conformity with the Convention on the Rights of the Child, ratified by Maldives", - "values": [ - "4 - General action" - ] - }, - { - "text": "Step up awareness-raising and preventive measures on the issue of domestic violence", - "values": [ - "4 - General action" - ] - }, - { - "text": "Continue cooperation with the human rights mechanisms", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Intensify efforts to combat violence against women and domestic violence and ratify the Council of Europe Convention on Preventing and Combating Violence against Women and Domestic Violence [Istanbul Convention]", - "values": [ - "4 - General action" - ] - }, - { - "text": "Ratify the Arms Trade Treaty thus strengthening international regulation of the trade and transfer of conventional weapons, including small arms and light weapons", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Ensure the effective enjoyment of the right to education, the right to work and the right to health for members of ethnic minorities and migrants ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Provide legal assistance and support to victims of domestic violence, including outside of the metropolitan area ", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Apply a dignified and humanitarian treatment, which respects the universal principles of human rights, to refugees in the detention centres, with measures such as ending immediate deportations at sea and land borders, the deportations and arrests of migrant children and refugees and the greatest possible protection for unaccompanied children ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Maintain the de facto moratorium on the death penalty with a view to achieving its abolition, and ratify the Second Optional Protocol to ICCPR ", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Ensure that children without parental care due to parental incarceration or execution are provided for, including with support for physical and mental health", - "values": [ - "4 - General action" - ] - }, - { - "text": "Prevent the practice of child marriage among all ethnic groups", - "values": [ - "4 - General action" - ] - }, - { - "text": "Commit to its obligations as an occupying power in the conservation of natural resources and the environment in the occupied Arab territories ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Step up its efforts to clamp down on racism and acts of extremism in line with its concept of combating extremism for 2011-2014 ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Ratify the International Convention for the Protection of All Persons from Enforced Disappearance (CPED)", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Encourage more participation of indigenous peoples through the elaboration of a law that regulates their right to prior consultations", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Do everything possible, in the territories under its jurisdiction, to protect human rights defenders, trade unions workers and journalists, and take necessary political measures to protect them and respect their human rights.", - "values": [ - "4 - General action" - ] - }, - { - "text": "Recommended the decriminalization of defamation.", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Amend the Law on Television and Radio broadcasting as soon as possible to ensure that the licenses of international broadcasters can be renewed", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Promote awareness of officers charged with law enforcement on matters related to human rights values and principles", - "values": [ - "4 - General action" - ] - }, - { - "text": "Enhance its initiatives and programmes to further instil a sense of national unity and pride among its people", - "values": [ - "4 - General action" - ] - }, - { - "text": "Sign and ratify the Optional Protocol to the International Covenant on Economic, Social and Cultural Rights, the Optional Protocol to the Convention on the Elimination of All Forms of Discrimination against Women, the Optional Protocol to the Convention against Torture and Other Cruel, Inhuman or Degrading Treatment or Punishment, and the International Convention for the Protection of All Persons from Enforced Disappearance ", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Ensure full implementation of a strategy on the promotion of workers' rights and a plan of action to guarantee fair and equal wages ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Complete the work on an anti-discrimination bill, and establish a specialized body to combat racism and discrimination and allowing victims to institute criminal proceedings on hate speech in fair trials and due process", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Take effective measures to prevent manifestations of intolerance on the grounds of nationality and race", - "values": [ - "4 - General action" - ] - }, - { - "text": "Enhance the capacity-building programmes for all branches of government", - "values": [ - "4 - General action" - ] - }, - { - "text": "Make every effort to fully implement recommendations already made to Burundi during the first cycle of the UPR, related to combating impunity of persons responsible for acts of torture and to the carrying out of thorough independent and impartial investigation into all allegations of such crimes", - "values": [ - "4 - General action" - ] - }, - { - "text": "Bring to account individuals and groups who use inflammatory rhetoric. ", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Implement all provisions in the Convention on the Rights of Persons with Disabilities, among others, the elimination of physical barriers to information, public transportation and buildings ", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Develop a strategic plan for the supply of water and sanitation, in particular for rural communities", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Establish a follow-up mechanism for the National Health and Social Welfare Policy and Plan (2011-2021)", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Redouble efforts to combat all forms of violence against women and adopt policies on education and awareness-raising in this area ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Ensure that freedom of speech and of the press is not further restricted as a result of the Interception of Communications Act", - "values": [ - "4 - General action" - ] - }, - { - "text": "Enact legislation to grant Lebanese nationality to the spouses and children of Lebanese women", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Protect the children and families of migrants and refugees, and accede to the ICRMW ", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Take measures to prioritize the protection of girls and women, and to curb school dropout by teenage girls, and adopt specific legislation for their protection against violence and forced marriage", - "values": [ - "4 - General action" - ] - }, - { - "text": "Investigate and prosecute all allegations of professional misconduct, and implement extensive human rights education and training programmes for law enforcement personnel to prevent this negative phenomenon ", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Effectively investigate and prosecute attacks against journalists and introduce into domestic laws strong legislation prohibiting these practices and imposing criminal penalties ", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Eliminate all forms of child marriage and raise the minimum age of marriage to 18", - "values": [ - "4 - General action" - ] - }, - { - "text": "Establish a centralized national human rights institution which is in line with the Paris Principles", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Continue to promote and protect the rights of the child, also by considering the creation of a national ombudsperson for children", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "That necessary reforms to ensure proper functioning and legitimacy of the judiciary are undertaken, in a transparent and inclusive process with all stakeholders including the civil society ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Continue to give due attention to the situation of minorities, in particular to the situations regarding discrimination based on multiple grounds. Sweden should continue to take necessary measures to ensure full and effective implementation of its legislation on national minorities", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Conduct investigations of enforced disappearances and ratify the Convention relative thereto", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Improve as quickly as possible the different aspects of prisoners\u2019 conditions", - "values": [ - "4 - General action" - ] - }, - { - "text": "Share its good practice in ensuring dignified housing to the most vulnerable groups", - "values": [ - "1 - Minimal action" - ] - }, - { - "text": "Strengthen human rights education and training", - "values": [ - "4 - General action" - ] - }, - { - "text": "Continue efforts in the fight against impunity for domestic violence and develop accommodation facilities and support mechanisms for victims of such violence", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Adopt special measures to promote equal opportunities, address structural discrimination and enhance strategies against inequality and discrimination faced by migrants, foreign-born citizens, indigenous peoples as well as minority groups, including Afro-Swedes and Muslims", - "values": [ - "4 - General action" - ] - }, - { - "text": "Ensure that everyone, including human rights defenders, can peacefully exercise their right to freedom of expression and assembly in conformity with Belarus' obligations under the International Covenant on Civil and Political Rights ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Ensure full and effective consultation of indigenous peoples on economic and development policies and projects affecting them", - "values": [ - "4 - General action" - ] - }, - { - "text": "End all practices of arbitrary abduction, torture and murder in detention facilities. All persons unjustifiably detained must be released immediately, all others must be treated according to international standards. Full international monitoring must be permitted", - "values": [ - "4 - General action" - ] - }, - { - "text": "Continue its efforts to ensure a comprehensive approach to migrant workers' rights by considering its accession to the International Convention on the Protection of the Rights of All Migrant Workers and Members of Their Families", - "values": [ - "3 - Considering action" - ] - }, - { - "text": "Continue to develop its economy in accordance with its national conditions, and continue to reduce poverty and empower women as key areas in its human rights protection efforts", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Further develop measures to fight anti-Semitism and Holocaust denial, including in the field of education", - "values": [ - "4 - General action" - ] - }, - { - "text": "Accede to the 1951 Convention on the Status of Refugees", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Explore the possibilities for technical support, for instance through the Working Group on Enabling and Protecting Civil Society of the Community of Democracies ", - "values": [ - "3 - Considering action" - ] - }, - { - "text": "Sign the International Covenant on Civil and Political Rights and the International Covenant on Economic, Social and Cultural Rights.", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Ensure investigation of all cases of alleged violence against journalists.", - "values": [ - "4 - General action" - ] - }, - { - "text": "Continue the reforms in the security sector, inter alia to avoid future torture and ill-treatment of demonstrators and detainees in conformity with international human rights standards ", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Create effective mechanisms for the social integration of Roma", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Continue its activities in full cooperation with NGOs and civil society organizations in order to guarantee the effective and equal application of all human rights ", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Prevent and combat all forms of discrimination and eliminate violence against women, including domestic violence", - "values": [ - "4 - General action" - ] - }, - { - "text": "Continue its efforts in responding to the ongoing violence by extremist groups against Christians and other minorities, by working to enforce human rights standards in protecting vulnerable populations, by prosecuting promoters of violence, and by promoting interreligious dialogue", - "values": [ - "4 - General action" - ] - }, - { - "text": "Adopt specific and comprehensive legislation on harassment based on sexual orientation", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Adhere to the United Nations Declaration on the Rights of Indigenous Peoples", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Retract the draft legislation on civil society organizations, which threatens their independence by enabling the Government to dissolve them without a court order or refuse to license new organizations on grounds, including "national unity"", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Redouble efforts to implement the National Action Plan to set up social institutions in order to create further opportunities of work for persons with disabilities to improve standards of employment and integrate them in the labour market", - "values": [ - "4 - General action" - ] - }, - { - "text": "Continue its efforts to eradicate poverty and uplift the standards of living for all Malaysians, including through ensuring effective implementation of the Government Transformation Programme strategies", - "values": [ - "4 - General action" - ] - }, - { - "text": "Accelerate the study of draft laws aimed at combating racial discrimination, particularly with regard to migrants, and reinforce the protection of foreign workers", - "values": [ - "4 - General action" - ] - }, - { - "text": "Spare no effort to complete as soon as possible the ratification process for the international human rights instruments listed in pages 23 and 24 of the national report in its French version \n", - "values": [ - "4 - General action" - ] - }, - { - "text": "Increase investment in education infrastructure and promote the educational level in rural areas", - "values": [ - "4 - General action" - ] - }, - { - "text": "Implement a human rights-based, holistic approach to ensure access to adequate housing as well as to adequate water and sanitation, including for marginalized groups, Dalits, scheduled castes, the homeless, the landless, scheduled tribes, religious and ethnic minorities, persons with disabilities and women", - "values": [ - "4 - General action" - ] - }, - { - "text": "Release persons imprisoned as required by freedom of expression and repeal all legislation that criminalizes the exercise of this right ", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Continue with the reforms to step up protection and promotion of social and cultural rights and also implement programmes on gender equality ", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Enact legislation to guarantee the prohibition of torture and ill treatment, as recognized in the Constitution, and in line with the Convention against Torture", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Become a party to both the Convention on the Rights of Persons with Disabilities and its Optional Protocol ", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Intensify efforts to prevent statelessness, including through ensuring proper, affordable and accessible birth registration of all children born in Indonesia", - "values": [ - "4 - General action" - ] - }, - { - "text": "Pay particular attention to the interests of children, especially with respect to health care and education, in its further work on improving the population's living standards", - "values": [ - "4 - General action" - ] - }, - { - "text": "Continue and step up its efforts to address cases of violence against women, particularly by providing legal, medical, rehabilitation and counselling help to the victims ", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Carry out an effective and independent investigation into allegations of torture and ill-treatment as promptly as possible, with a view to bringing to justice those responsible for such acts ", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Immediately release all prisoners held in arbitrary detention and recompense them as requested by the Working Group on Arbitrary Detention ", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Develop a comprehensive strategy to address violence against children", - "values": [ - "4 - General action" - ] - }, - { - "text": "Improve its national human rights institution in accordance with the Paris Principles", - "values": [ - "4 - General action" - ] - }, - { - "text": "Step up efforts aimed at providing adequate assistance and protection to all victims of human trafficking ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Conduct thorough and impartial investigation into allegations of torture and physical abuse, and to bring to justice anyone suspected of having participated in arbitrary arrests or having committed excessive use of force, torture and other human rights violations ", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Consider the possibility of acceding to the Second Optional Protocol to ICCPR", - "values": [ - "3 - Considering action" - ] - }, - { - "text": "Review the incommunicado detention regime to ensure compliance with international human rights law", - "values": [ - "3 - Considering action" - ] - }, - { - "text": "Halt relocations of families to uninhabitable sites and consider evictions as a last recourse, as was requested by the Secretary-General ", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "In collaboration with the international community, intensify efforts to combat human trafficking", - "values": [ - "4 - General action" - ] - }, - { - "text": "Implement freedom of association, expression, assembly and peaceful demonstration in accordance with the International Covenant on Civil and Political Rights", - "values": [ - "4 - General action" - ] - }, - { - "text": "Increase the age of criminal responsibility and the minimum age for marriage so that they comply with international standards.", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Continue to take measures to ensure freedoms of expression and opinion especially of trade unions", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Strengthen the existing mechanisms for combating corruption ", - "values": [ - "4 - General action" - ] - }, - { - "text": "While expressing appreciation for the efforts undertaken in order to combat Ebola, we urge the Government of Sierra Leone to continue undertaking its efforts aimed at combating this disease and strengthen the health infrastructure and the management of the public health system", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Continue strengthening domestic legislation in light of recognized international human rights standards, including the Convention on the Rights of the Child", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Enhance human rights training for police forces and ensure their accountability for respecting human rights ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Continue the reform process in particular in the field of justice, administration, e-governance and social issues", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Set up a mechanism to fight more effectively discrimination against women, prevent and punish sexual and gender-based violence, ban female genital mutilation and other harmful traditional practices and effectively enforce the ban while stepping up the fight against these practices through public-awareness campaigns", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Take practical steps to fulfil its reporting obligations to the different United Nations treaty bodies and to seek technical assistance from OHCHR in this regard", - "values": [ - "4 - General action" - ] - }, - { - "text": "Continue to consider protection and promotion of human rights in the new constitution", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Ensure independent access by international humanitarian agencies to assess the well-being of prisoners detained without trial, or in continued detention following the acquittal or commuting of their sentences ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Ensure that "preventive detention" under the Internal Security Act and the Criminal Law (Temporary Provisions) Act is only used in exceptional circumstances and does not violate the right to a fair trial", - "values": [ - "4 - General action" - ] - }, - { - "text": "Work on increasing racial, ethnic and religious tolerance", - "values": [ - "4 - General action" - ] - }, - { - "text": "Continue to work on the promotion of human rights in the region of Transnistria, integral part of the territory of the Republic of Moldova. This commitment was undertaken upon accession to the Human Rights Council ", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Ensure that legislation to prevent and eradicate violence against women is passed", - "values": [ - "4 - General action" - ] - }, - { - "text": "Strengthen the measures against discrimination, racism and xenophobia manifested in the field of employment, access to housing and education with regard to foreigners and minorities", - "values": [ - "4 - General action" - ] - }, - { - "text": "Consider the effective implementation of the provisions of the United Nations Convention Relating to the Status of Refugees of 1951, in particular the principle of non-refoulement, the access to a procedure and confidentiality for asylum seekers", - "values": [ - "3 - Considering action" - ] - }, - { - "text": "Strengthen the implementation of programmes aiming at the rehabilitation of victims of trafficking in persons, including providing advice, shelter and legal aid and rehabilitation services", - "values": [ - "4 - General action" - ] - }, - { - "text": "Continue its measures on the protection of the rights of women and children, notably child support services", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Consider the possibility of accession to CED", - "values": [ - "3 - Considering action" - ] - }, - { - "text": "Immediately ban the use of pellet guns and hold accountable perpetrators who have used lethal force against unarmed civilians in \u201cIndian-Occupied Kashmir\u201c", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Continue the efforts aimed at empowering and protecting women's rights, in addition to empowering women socially and politically", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Adopt a list of hazardous jobs for children", - "values": [ - "4 - General action" - ] - }, - { - "text": "Continue with efforts to promote gender equality", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Consolidate reconciliation and peace through scrupulous respect for projects developed in cooperation with the United Nations.", - "values": [ - "4 - General action" - ] - }, - { - "text": "Give a more thorough consideration to the issues of human rights violations of indigenous people, lack of public security and poor detention conditions.", - "values": [ - "3 - Considering action" - ] - }, - { - "text": "Ensure the right to vote for persons with disabilities, in line with the Convention on the Rights of Persons with Disabilities, and implement, among others, alternative measures to enable them to vote freely and in secret, and to easily access to facilities", - "values": [ - "4 - General action" - ] - }, - { - "text": "Remove the death penalty and corporal punishment from Mauritanian laws", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Improve the situation of refugees by facilitating their registration and by renewing residency permits, by setting up an effective mechanism for birth registration to avoid statelessness of newborn children, and by allowing refugees, including Palestinian refugees, access to segments of the official labour market", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Sign and ratify the Protocol to Prevent, Suppress and Punish Trafficking in Persons, especially Women and Children", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Take active measures, including legislative measures, to ensure equal wages for women and men", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Continue to take practical measures to ensure the effective participation of women in economic, social and political fields ", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Ensure the highest standards for the protection of indigenous peoples in order to eliminate the remaining structural inequalities that continue to have an adverse impact on indigenous peoples", - "values": [ - "4 - General action" - ] - }, - { - "text": "Consider ratifying the Optional Protocol to the International Covenant on Civil and Political Rights and the Second Optional Protocol aiming at the abolition of the death penalty, and in the meantime, declare an official moratorium on executions with a view to abolish the death penalty, commuting the death sentences to prison terms", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Take further measures to eliminate discriminatory cultural practices", - "values": [ - "4 - General action" - ] - }, - { - "text": "Step up efforts to end violence against women and children, and eliminate harmful practices such as female genital mutilation and killing of women accused of witchcraft", - "values": [ - "4 - General action" - ] - }, - { - "text": "Take efficient measures to combat corruption.", - "values": [ - "4 - General action" - ] - }, - { - "text": "Continue to eradicate cultural practices that violate the rights of women and girls.", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Fully implement the Law 6-2006 on the prevention and punishment of torture, immediately investigate complaints of torture and ill-treatment, and initiate appropriate penal procedures against those responsible ", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Continue the process of improving the implementation of anti-discrimination legislation", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Expand social security coverage and ensure equal access for ethnic minorities", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Pursue its awareness-raising efforts on the importance of birth registration, provide birth certificates and protect persons from the consequences of non-registration", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Consider drawing up and implementing a national human rights programme that addresses comprehensively issues such as public safety and violence, taking into account all social actors", - "values": [ - "3 - Considering action" - ] - }, - { - "text": "Amend its electoral laws to bring them in line with the OSCE Office for Democratic Institutions and Human Rights recommendations for electoral reform to demonstrate respect for democratic political processes, freedom of association, and freedom of expression ahead of the 2015 presidential election", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Improve access for everyone to quality health services", - "values": [ - "4 - General action" - ] - }, - { - "text": "Adopt a law on reparation and compensation for victims of torture during the war", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Increase programs of obstetric, prenatal and neonatal care and attendance at deliveries by medical and paramedical professionals, especially in rural areas ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Continue efforts to create the appropriate conditions for the integration of migrants and to improve their living and working conditions", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Thoroughly investigate acts of sexual violence committed during the conflict, with a view to holding perpetrators to account, ensure reparation and full reintegration into society of victims of wartime rape and other sexual violence, and take action to counter any manifestations of stigma and exclusion directed against them", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Guarantee a safe, free and independent environment for journalists and ensure that all cases of attacks against them are investigated by independent and impartial bodies ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Guarantee its continued compliance with its domestic and international obligations on the legal prohibition of the death penalty ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Ensure in law and in practice the protection of women against all forms of violence ", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Ratify the Convention on the Reduction of Statelessness", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Undertake further and concerted efforts, including changes in legislation and administrative procedures, to strengthen the effectiveness and independence of the judiciary", - "values": [ - "4 - General action" - ] - }, - { - "text": "Protect more effectively human rights defenders and journalists, especially through cooperation with civil society", - "values": [ - "4 - General action" - ] - }, - { - "text": "Respect the due process and human rights of persons deprived of liberty, especially those who find themselves in that condition due to the complex political situation", - "values": [ - "4 - General action" - ] - }, - { - "text": "Abolish military training for children", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Establish a national action plan to address domestic and family violence", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Implement Law 6-2006 to ensure that all allegations of torture are properly investigated and those responsible are held accountable ", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Issue travel and identification documents to all Lao Hmong returnees in a timely manner, and guarantee freedom of movement ", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Strengthen ongoing efforts to end the recruitment of child soldiers and ensure the release of all children associated with armed groups", - "values": [ - "4 - General action" - ] - }, - { - "text": "Ratify in particular the two international Covenants, concerning on the one hand, the Economic, Social and Cultural Rights, and on the other hand, the Civil and Political Rights, CEDAW and CAT ", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Continue efforts aimed at ending the exploitation of children through child prostitution and trafficking, and strengthen measures to fight violence against women and domestic violence", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Capacitate and allocate resources to the Uganda Human Rights Commission in a sustainable manner", - "values": [ - "4 - General action" - ] - }, - { - "text": "Reform the electoral system and organize periodic and genuine multi-party elections, in accordance with international democratic standards ", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Put continue working on its capacity-building programme for good governance", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Review and amend or repeal as necessary all decrees limiting freedom of expression and association, particularly the Media, Essential National Industries and Public Order Decrees", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Adopt effective measures to protect human rights in executing counter-terrorism policy", - "values": [ - "4 - General action" - ] - }, - { - "text": "Continue to work over the challenges and the constraints it is facing in its endeavour to promote and protect human rights", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Intensify its efforts and measures to strengthen the rule of law ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Sign and ratify both Optional Protocols to the ICCPR", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Encourage the participation of social organizations in the dissemination of international human rights instruments, with a view to increasing public awareness of human rights ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Provide a framework for prohibiting use of child labour by the Finnish companies engaged with businesses abroad and multinational companies headquartered in Finland ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Take all necessary measures to eliminate gender-based violence, including violence against foreign women, and to assess the workings of the relevant specialized courts in this regard", - "values": [ - "4 - General action" - ] - }, - { - "text": "Continue studying the issue of the accession to the International Convention on the Protection of the Rights of All Migrant Workers and Members of Their Families", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Repeal all provisions giving rise to discrimination based on sexual orientation or gender identity and ensure respect for fundamental freedoms for all citizens ", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Adopt legislation clearly prohibiting all corporal punishment of children in all settings", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Criminalize human trafficking, especially child trafficking, while providing protection and assistance to the victims", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "To continue to implement the national strategy aimed at encouraging women to stand for elective and appointive positions in the public sector", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Elaborate further concrete, meaningful practical measures and mechanisms that effectively prevent any ill-treatment by the police and prison guards, including the possibility of revision of the practice of incommunicado detention", - "values": [ - "4 - General action" - ] - }, - { - "text": "Amend section 377 of the Penal Code in order to decriminalize consensual sexual activity among persons of the same sex", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Ensure the full functionality and adequate resourcing of levels 1 and 2 local council courts, which provide the first access points to justice for 80 per cent of Ugandans", - "values": [ - "4 - General action" - ] - }, - { - "text": "Ratify the Optional Protocol to the International Covenant on Economic, Social and Cultural Rights and the International Convention on the Protection of the Rights of All Migrant Workers and Members of Their Families.", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Continue taking measures to uplift education, particularly in rural areas, and increase the enrolment in schools in these regions", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Prevent the recruitment and the use of children in armed forces and armed groups", - "values": [ - "4 - General action" - ] - }, - { - "text": "Undertake awareness-raising campaigns to change the mindset regarding persons belonging to ethnic minorities, and remedy the lack of a legislative framework designed to guarantee non-discrimination ", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Redouble its efforts in implementing poverty alleviation projects and promoting the development of impoverished areas", - "values": [ - "4 - General action" - ] - }, - { - "text": "Strengthen judicial independence by ending government interference with the judicial process, protecting members of the judiciary from attacks and restoring a fair, independent and transparent mechanism", - "values": [ - "4 - General action" - ] - }, - { - "text": "Respond to the constant calls of the international community for the immediate and unconditional release of all prisoners of conscience, currently estimated at more than 2,100, and a full restoration of their political rights ", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Reinforce measures to protect victims of trafficking, with due regard to the special situation of child victims, regardless of whether they have agreed to participate in judicial proceedings ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Take further action regarding oversight of and training for security forces in human rights, including to address violence related to hatred against foreigners, and make sure security forces carrying out law enforcement duties comply with United Nations standards", - "values": [ - "4 - General action" - ] - }, - { - "text": "Continue, with the support of the international community, to do everything to protect its population against all forms of human rights violations committed by illegal armed groups.", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Continue efforts to establish a moratorium and eventually abolish capital punishment in all states", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Strengthen the guarantees for access to drinking water and sanitation for the entire population, especially for indigenous populations and the most remote areas ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Provide universal access to family planning and reproductive health for young women and quality education on these issues ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Accede to the human rights conventions and protocols to which is not yet party in order to facilitate the harmonization of the national human rights legislation across its territories", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Adopt legislative measures necessary so that journalists are not persecuted while exercising their profession and violations of the limits on freedom of expression are not sanctioned criminally ", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Revise the labour law to protect the rights of all workers without discrimination and ensure their effective access to justice, in cooperation with ILO ", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Strengthen the protection of the civilian population affected by the conflict and clashes between non-State groups. ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Continue pursuing appropriate and efficient policies aimed at further improving access to education for socially disadvantaged children and consider, if necessary, the adoption of additional measures ", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Share experiences in the implementation of the Zero Malnutrition Programme and the Juana Azurduy voucher programme, which has reduced the maternal mortality and child malnutrition rates", - "values": [ - "1 - Minimal action" - ] - }, - { - "text": "Formulate and implement a national policy aimed at ensuring gender equality in the labour market ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Luxembourg commits itself to carrying out these recommendations [Recommendation 7 - Take further steps to improve the rights of women and children, implement the recommendation made by the Committee on the Elimination of Discrimination against Women in 2008 on drafting strategies and programmes to combat prostitution, continue its efforts to combat sexual exploitation of children and continue to take effective measures to protect children from violence, racism and pornography ]", - "values": [ - "4 - General action" - ] - }, - { - "text": "Adopt the gender equality bill within the time frame", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Continue to adequately fund the medium-term strategic framework and to refine its consolidated planning, monitoring and evaluation mechanisms to support the Framework\u2019s effective implementation", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Strengthen measures aimed at eradicating child labour", - "values": [ - "4 - General action" - ] - }, - { - "text": "Continue efforts to ensure that Jews and Muslims can practice their religion freely", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Continue the practice of implementing the programmes aimed at further advancing the improved social welfare of the population, in particular the vulnerable ones ", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Improve detention conditions, including basic sanitation and access to water, food and medical care", - "values": [ - "4 - General action" - ] - }, - { - "text": "Consolidate economic initiatives aimed at empowering its people, especially those who were underprivileged under the Apartheid system ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Ensure that regulations pertaining to the right to privacy are in line with the principles of legality, necessity and proportionality.", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "The delegation reassured Finland's commitment to full and effective implementation of the 1951 Geneva Convention related to the status of refugees and to respecting the principle of non-refoulement. ", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Niger reaffirms its commitment to inviting special rapporteurs to visit the country whenever necessary. ", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Consider instituting an action plan that defines measures to prevent and combat discrimination on different grounds in all levels of governance in the country", - "values": [ - "3 - Considering action" - ] - }, - { - "text": "Take urgent steps to amend the penal code and eliminate the criminalization of consensual sexual relations between adults of the same sex", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Ratify ICRMW and the optional protocols of CAT, the International Covenant on Economic, Social and Cultural Rights (ICESCR) and CEDAW", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Continue cooperation with the United Nations and other international organizations to overcome the remaining constraints and challenges", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Review and alter its current legislation that criminalizes the termination of pregnancies in all circumstances, including in cases of rape, incest and situations where the life of the mother is at risk ", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Strengthen the role of the National Commission of Human Rights in accordance with the Paris Principles", - "values": [ - "4 - General action" - ] - }, - { - "text": "Monitor the activities of overseas Swiss companies", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Ensure the safety of all vulnerable groups, including women, journalists, human rights defenders, and ensure respect for fundamental human rights", - "values": [ - "4 - General action" - ] - }, - { - "text": "Provide adequate financial resources to the South African Human Rights Commission to enable it to carry out its work", - "values": [ - "4 - General action" - ] - }, - { - "text": "Strengthen measures to investigate and prosecute cases of domestic violence and provide assistance to women and child victims of violence, in particular social rehabilitation ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Continue efforts to guarantee the full inclusion of persons with disabilities in all spheres of society", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Adopt concrete measures to increase the participation of women in the political and public sphere", - "values": [ - "4 - General action" - ] - }, - { - "text": "Take effective steps to implement the new legislation enacted in 2009 regarding the family (Lei da Familia), domestic violence (Lei Contra Violência Doméstica) and trafficking (Lei contra Tráfico de Pessoas) to address the issue of sexual abuse, exploitation and trafficking of children in order to hold perpetrators accountable and provide means of redress and protection for victims ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Continue taking effective measures to further promote and protect the rights of women and children", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Consider ratifying ICRMW in accordance with recommendation no. 1737 of 17 March 2006 of the Parliamentary Assembly of the Council of Europe, of which Estonia is a member", - "values": [ - "3 - Considering action" - ] - }, - { - "text": "Estonia is currently not able to fully endorse the recommendation [79.14] to pay special attention to acts of violence against homosexuals. Estonia is committed to taking measures to enhance the level of public awareness and protection of the rights of lesbian, gay, bisexual and transgender persons.", - "values": [ - "4 - General action" - ] - }, - { - "text": "Strengthen implementation of its Child Labour (Protection and Regulation) Act 1999", - "values": [ - "4 - General action" - ] - }, - { - "text": "Continue efforts to promote children's rights and the right to education", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Amend national legislation to include "sexual orientation" and "gender" as prohibited grounds for discrimination ", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Redouble its efforts to guarantee the freedom of association, also by improving the environment for NGOs to freely carry out their activities", - "values": [ - "4 - General action" - ] - }, - { - "text": "Continue cooperation with the United Nations and other international organizations to promote human rights in Belarus ", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Consider the abolition of the death penalty.", - "values": [ - "3 - Considering action" - ] - }, - { - "text": "Enter into further agreements with countries hosting its migrants workers", - "values": [ - "4 - General action" - ] - }, - { - "text": "Develop and implement a National Action Plan for Human Rights to further ensure a systematic and comprehensive approach to the promotion and protection of human rights, the Government of Latvia is encouraged to engage civil society in the process", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Accelerate the building of more general and community hospitals and clinics under the Healthcare 2020 Master plan", - "values": [ - "4 - General action" - ] - }, - { - "text": "End human rights violations and abuses against civil society, the media and political opposition, repeal the ban on public demonstrations, and ensure individuals are able to exercise their rights to freedom of expression, association and peaceful assembly, free from intimidation and harassment", - "values": [ - "4 - General action" - ] - }, - { - "text": "Review laws and measures to ensure that restrictions imposed on freedom of expression are in conformity with the ICCPR to which Pakistan is signatory.", - "values": [ - "3 - Considering action" - ] - }, - { - "text": "Reform the office of the ombudsman (Defensoría del Pueblo) so that it can assume its function as national mechanism to prevent torture", - "values": [ - "4 - General action" - ] - }, - { - "text": "Bring an end to arbitrary detentions, particularly on the grounds of political opinion, investigate allegations of torture and ill-treatment in prisons and bring those responsible to justice", - "values": [ - "4 - General action" - ] - }, - { - "text": "Take necessary steps to combat manifestation of neo-Nazi, right-wing extremist and xenophobic incidents directed against members of minority groups ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Continue cooperating with the competent bodies to secure protection of the human rights of the internally displaced, particularly women and children ", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Consider intensifying its efforts in the actual implementation of programmes aimed at the realization of women rights and improving gender equality", - "values": [ - "3 - Considering action" - ] - }, - { - "text": "Strengthen its efforts to increase women's participation in elected and appointed bodies at all levels of government", - "values": [ - "4 - General action" - ] - }, - { - "text": "Adopt legislation, strategies, national action plans and initiatives and establish committees on human rights ", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Monitor the effective application of the anti-discrimination legislation and consider taking special measures to foster the integration process of national and ethnic minorities in society", - "values": [ - "4 - General action" - ] - }, - { - "text": "Follow-up on the recommendation of the Committee on the Rights of Child to seek technical assistance from UNICEF on specific areas, including improving access to education for women and girls and in increasing the rate of registrations births", - "values": [ - "4 - General action" - ] - }, - { - "text": "Take further measures to prevent trafficking in persons, in investigating and prosecuting offenders, and provide effective support and redress to victims", - "values": [ - "4 - General action" - ] - }, - { - "text": "Further improve and implement the relevant laws and policies to better protect the rights of women and children", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Take appropriate measures for the immediate completion of the registration of citizens, in particular children under the age of 4, who have not had their birth registration carried out", - "values": [ - "4 - General action" - ] - }, - { - "text": "Pursue the legislative work initiated in 2014 to protect journalists, human rights defenders and some members of the judiciary in the fight against crime", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Strengthen the operational and financial capacities of the National Independent Human Rights Commission and ensure that its composition and functioning are in accordance with the Paris Principles ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Immediately and unconditionally release all political prisoners and allow ICRC unrestricted access to the remaining prisoners ", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Harmonize its national laws in line with the Convention on the Rights of the Child and the Convention on the Elimination of All Forms of Discrimination against Women in accordance with relevant guidelines by Treaty bodies", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Continue to implement appropriate, efficient policies to facilitate the integration of all its ethnic communities ", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Safeguard the activities of human rights defenders, introducing national laws and policies to protect them", - "values": [ - "4 - General action" - ] - }, - { - "text": "Establish a mechanism that monitors gender equality in employment, wage discrimination against women and discrimination on sexual orientation", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Continue efforts to combat human trafficking through the establishment of an effective national policy to address it", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Combat all forms of discrimination in the areas of employment, salary, health and education against, in particular, persons belonging to marginalized populations ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Take further measures for the harmonization of legislation and policies with the Convention on the Rights of the Child, including with regard to children affected by migration ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Continue to address the root causes of unemployment, especially among young people, by adopting the necessary long-term policies and strategies", - "values": [ - "4 - General action" - ] - }, - { - "text": "Persons with disabilities constitute one of the country's vulnerable populations. Apart from the first national survey on the prevalence of disability (PENDIS) 2005-2006, no more up-to-date information is available. However, the State reiterates its firm commitment to conducting research that will produce new statistical data and that will inform the development of public policies in that area.", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Set a time frame for the enactment and implementation of a law on associations which respects international human rights standards", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Ratify the Convention on Cluster Munitions", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Ratify and implement the Optional Protocol to the Convention against Torture and other Cruel, Inhuman or Degrading Treatment or Punishment", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Continue its efforts to implement the national Action Plan for Human Rights", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Combat violence against women and guarantee equality of rights", - "values": [ - "4 - General action" - ] - }, - { - "text": "Ratify the Second Optional Protocol to the International Convention on Civil and Political Rights ", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Continue the measures implemented for the right to water and sanitation within the framework of General Assembly resolution 64/292 ", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Strengthen measures aimed at poverty eradication and improvement of access to safe drinking water, as well as social services ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Carry on efforts to protect children, especially children of indigenous populations", - "values": [ - "4 - General action" - ] - }, - { - "text": "Implement, inter alia, the recommendations of the CRC on the national system to protect Aboriginal children", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Protect, in law and in practice, the victims and witnesses of attacks and infringements of human rights and freedoms ", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Ensure the primacy of fulfilling the right to education for all children, continue to dedicate more resources to eradicate illiteracy among children and adults, and improve the number of children completing their education", - "values": [ - "4 - General action" - ] - }, - { - "text": "Continue its efforts in the suppression of trafficking in human beings, in particular in women and girls ", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Encourage the Government to cooperate with all special procedures mandate holders", - "values": [ - "4 - General action" - ] - }, - { - "text": "Strengthen the legal framework to prevent discrimination and violence against women, in particular domestic violence", - "values": [ - "4 - General action" - ] - }, - { - "text": "Consider ratifying the Convention on the Rights of Persons with Disabilities and its Optional Protocol ", - "values": [ - "3 - Considering action" - ] - }, - { - "text": "Examine relevant laws and measures to guarantee that restrictions imposed on freedom of expression are in line with the International Covenant on Civil and Political Rights (ICCPR), to which Yemen is party.", - "values": [ - "4 - General action" - ] - }, - { - "text": "Ensure equal rights for all individuals, regardless of sexual orientation ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Establish a comprehensive human rights framework upon which to develop more coordinated and effective policy measures and strategies for promoting human rights and that such a framework includes initiatives to set up a national human rights institutions in line with the Paris Principles", - "values": [ - "4 - General action" - ] - }, - { - "text": "Continue addressing domestic violence through education, awareness campaigns, victims\u2019 services and the effective application of the law against perpetrators, as well as by considering elevating the national council of women to a full ministry", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Modify its legislation in such a way as to shift the burden of proof of the guilt of a person facing the death penalty to the prosecution instead of requesting the person to prove its own innocence ", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Strengthen its specialized juvenile justice system and promote alternative measures to deprivation of liberty, with a view to the full reintegration of the child into the society ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Consider extending a standing invitation to all special procedures of the United Nations Human Rights Council", - "values": [ - "3 - Considering action" - ] - }, - { - "text": "Expand its School Feeding Programmes and use locally sourced food ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Continue consultations with civil society in the follow-up to this universal periodic review ", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Amend its legislation so that it treats equally all women and men with respect to marriage, divorce and inheritance rights as well as conferring citizenship to their children and spouses", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Take steps to ensure the establishment of an unrestricted access to the internet for all, including by making use of the existing underwater high speed broadband cable ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Continue improving women's empowerment programmes and address issues of discrimination and domestic violence by intensifying awareness-raising campaigns and providing better access to remedies for all victims of domestic violence, including migrant workers irrespective of their legal status", - "values": [ - "4 - General action" - ] - }, - { - "text": "Take the measures necessary to combat violence against women effectively, increase women's participation in all fields and bring national legislation into line with CEDAW", - "values": [ - "4 - General action" - ] - }, - { - "text": "Take all necessary measures to ensure the full respect of sexual and reproductive rights", - "values": [ - "4 - General action" - ] - }, - { - "text": "Adopt measures to protect minorities not explicitly defined in the Constitution, and to adopt additional measures to promote, develop and preserve their ethnic and national identities", - "values": [ - "4 - General action" - ] - }, - { - "text": "Undertake more effective measures to address the problems of impunity, violence and trafficking in women and girls, including through the strengthening of law enforcement and the judicial system and intensive media and education programmes aimed at increasing public awareness on the rights of women ", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Bring its domestic legislation into line with the Rome Statute of the International Criminal Court", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Consider ratifying the Rome Statute", - "values": [ - "3 - Considering action" - ] - }, - { - "text": "While appreciating the fact that the Government's priorities include combating caste-based discrimination, ensure that the policy is fully implemented also by the local authorities in rural and remote areas ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Ensure that the Security Laws Amendment Act is in line with human rights, limiting pretrial detention and not subjecting demonstrations to the approval of the Council of Ministers", - "values": [ - "4 - General action" - ] - }, - { - "text": "Maintain protection of the right to life from conception to natural death", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Accede to the 1951 Convention relating to the Status of Refugees, 1954 Convention relating to the Status of Stateless Persons and 1961 Convention on the Reduction of Statelessness", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Continue to take measures necessary to achieve the full and effective participation of woman in the political, social and economic fields ", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Adopt political and legislative measures to establish a specific framework for the protection against discrimination based on sexual preferences accompanied with the elimination of penal provisions that criminalize consensual relations between adults from the same gender, and the implementation of public awareness campaigns in this matter ", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Combat gender inequality and discriminatory practices and consider legislative reforms to ensure equality between men and women before the law", - "values": [ - "4 - General action" - ] - }, - { - "text": "Strengthen the role and capacity of the Office of the Ombudsman and the Human Rights Commission", - "values": [ - "4 - General action" - ] - }, - { - "text": "Follow up on the recommendation of the Committee on the Elimination of Discrimination against Women to withdraw its declaration to the effect that obligations pursuant to CEDAW are subject to the Constitution.", - "values": [ - "4 - General action" - ] - }, - { - "text": "Ensure full realisation of the rights of "non-citizen" residents and of members belonging to linguistic minorities and contribute to their integration in society", - "values": [ - "4 - General action" - ] - }, - { - "text": "Increase access to school education for all children, especially girls, children in rural areas and children of marginalised groups such as nomadic persons", - "values": [ - "4 - General action" - ] - }, - { - "text": "Adopt Bill No. 2442 in order to guarantee the independence and autonomy of the members of the National Preventive Mechanism, in conformity with Brazil's obligations under OPCAT ", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Take concrete measures to humanize the judicial system and to improve conditions of detention in prisons ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Pursue the measures in favour of the reinforcement of harmony and tolerance between the different segments of the Moldovan society ", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Strongly regulate the issue of the civil registration in order to grant legal personality to all human beings on its territory", - "values": [ - "4 - General action" - ] - }, - { - "text": "Ratify the Optional Protocol to the Convention against Torture as soon as possible ", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Continue to share its experiences for the promotion of human rights in the region and the world ", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Adopt the recommendation by the Committee against Torture to review mandatory sentencing laws with a view to abolishing them", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Combat poverty effectively through the promotion of decent work", - "values": [ - "4 - General action" - ] - }, - { - "text": "Devote sufficient resources to the National Human Rights Commission", - "values": [ - "4 - General action" - ] - }, - { - "text": "Improve detention conditions by a variety of measures, including reducing overcrowding, separating men and women in facilities and ensuring that people have access to legal counsel.", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Further develop the educational sector and the health sector because they are the key sectors in the development process", - "values": [ - "4 - General action" - ] - }, - { - "text": "Review and address gaps in education and training policies and outline strategies to ensure employment growth, improve working conditions and provide equal opportunities", - "values": [ - "3 - Considering action" - ] - }, - { - "text": "Take action against the worrying increase and public use of hate speech, most often addressed at migrants, asylum seekers but also civil society organizations and vulnerable groups", - "values": [ - "4 - General action" - ] - }, - { - "text": "Allegations of excessive use of force and torture should be subject to effective and independent investigation in a timely manner in order to bring to justice those responsible for those acts ", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Switzerland makes a voluntary commitment to ratify the Optional Protocol to the Convention on the Elimination of All Forms of Discrimination against Women.", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Continue the implementation of the provisions of the new Constitution so as to ensure full respect for human rights ", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Put forward every effort to ensure that the election process is both free and fair", - "values": [ - "4 - General action" - ] - }, - { - "text": "Ensure that humanitarian agencies can operate in all parts of the country without undue restrictions", - "values": [ - "4 - General action" - ] - }, - { - "text": "Step up efforts directed towards the improvement of conditions and treatments of asylum-seekers and refugees", - "values": [ - "4 - General action" - ] - }, - { - "text": "Continue efforts to reduce poverty, particularly through the implementation of the 2011-2015 National Strategy", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Review laws and policies with a view to raising the standard of living of marginalized and vulnerable groups, preventing them from languishing in poverty", - "values": [ - "3 - Considering action" - ] - }, - { - "text": "Expand government-funded resettlement services to newly arrived refugees and ensure a right to an adequate standard of living through the establishment of a National Plan of Local Integration", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Continue its ongoing efforts to protect the rights of persons with disabilities through relevant laws and regulations", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Continue its active engagement with the United Nations human rights mechanisms", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Further improve access to education for children by increasing the number of primary and secondary schools and by strengthening its higher education system", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Further increase its efforts in order to fully implement its own action plan to end gender-based violence", - "values": [ - "4 - General action" - ] - }, - { - "text": "Take specific steps to strengthen the institution of the family, including raising awareness among the youth of traditional understanding of the family and its social values ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Continue efforts to adopt an action plan for the employment of women", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Implement seriously and immediately the recommendations of the UPR", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Increase financial support for the Slovenian minority in the provinces of Carinthia and in Styria to the 1995 level in real terms ", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Accede to the Hague Convention on the Protection of Children and Co-operation in Respect of Intercountry Adoption", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Take all necessary measures to ensure the effective implementation of the Criminal Code offence of gender-related killings of women and to guarantee effective access to justice for women who are victims of violence, as well as their protection", - "values": [ - "4 - General action" - ] - }, - { - "text": "Continue measures to increase allocations for poverty reduction and focus further on the rehabilitation of agriculture and infrastructure ", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Fulfil the promise of shortly setting up an independent national human rights commission ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Take effective measures to improve conditions of detention, in particular to reduce overcrowding and violent crimes in prisons, as well as to improve prisoners' access to educational and health services ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Intensify efforts to improve efficiency of the judiciary, by implementing legal and organizational measures to prevent undue court delays and reduce the backlog before the courts, improving physical infrastructure and computerization of courts, and the continuation of the rationalization of municipal and misdemeanour courts ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Consider developing a third action plan on human rights and continue sharing its experience with regard to systematic human rights implementation", - "values": [ - "3 - Considering action" - ] - }, - { - "text": "Investigate all allegations of torture and ill-treatment in detention facilities, and take appropriate measures to bring perpetrators to justice", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Make sure that all victims of discrimination have access to effective remedies and the means to obtain them ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Improve the legislative and judicial sectors of Jordan particularly in the areas of gender mainstreaming, sexual harassment and economic exploitation of children", - "values": [ - "4 - General action" - ] - }, - { - "text": "Continue reform of the judiciary and the penitentiary system", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Review the Criminal Code to align it with the definition of torture in the Convention against Torture", - "values": [ - "3 - Considering action" - ] - }, - { - "text": "End its illegal and unlawful occupation of all Palestinian and Arab Territories occupied since 1967, including Jerusalem", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Increase its efforts to combat sexual and domestic violence against women ", - "values": [ - "4 - General action" - ] - }, - { - "text": "The Yemeni Government is studying a European Union initiative to establish an independent national human rights institution that complies with the Paris Principles, and has begun work on establishing a committee composed of representatives of the Ministry of Human Rights and the Office of the Prime Minister to study the feasibility of establishing such an institution in the foreseeable future ", - "values": [ - "3 - Considering action" - ] - }, - { - "text": "Become a party to CAT ", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Continue enforcing appropriate measures, such as the National Plan of Action for the Prevention and Eradication of Violence against Women and Children or the awareness campaign "Say No to Violence", to eliminate effectively violence against women, in particular domestic violence", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Guarantee equal access of all political parties to all stages of the electoral process, from registration to election campaigning", - "values": [ - "4 - General action" - ] - }, - { - "text": "Consider becoming a party to ICCPR", - "values": [ - "3 - Considering action" - ] - }, - { - "text": "Take the necessary measures to eliminate and penalize all forms of hazardous child labour", - "values": [ - "4 - General action" - ] - }, - { - "text": "Halt short-term detentions, harassments and other repressive measures against human rights defenders and journalists and implement legal safeguards to ensure their protection against abuse of provisions for criminal prosecution", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Ratify and accede to to the International Convention for the Protection of All Persons from Enforced Disappearance", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Adopt a new National Plan of Action for Children with a view to, inter alia, eradicating children's sexual exploitation ", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Ratify the International Covenant on Civil and Political Rights and the International Covenant on Economic, Social and Cultural Rights, as fundamental documents in the area of human rights ", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Increase the financial resources and the staff of the National Media Commission so that it can carry out its mandate, promoting and protecting in this way the freedom of the press", - "values": [ - "4 - General action" - ] - }, - { - "text": "Enhance measures regarding the integration of Roma citizens through the social and educational systems of the State, inter alia, by facilitating registration in the birth registry allowing them to register using a provisional address", - "values": [ - "4 - General action" - ] - }, - { - "text": "Carry out a prompt implementation of the judicial reform to ensure that complaints in cases of torture, arbitrary detention and forced disappearances are exhaustively investigated", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Redouble actions to improve the compliance with the human right to water", - "values": [ - "4 - General action" - ] - }, - { - "text": "Amend the legal status of same-sex partnerships to enable the right to adopt and have children ", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Repeat and amplify this request to the international community to support Kenya in its activities where supplementary resources are required to achieve its goals", - "values": [ - "1 - Minimal action" - ] - }, - { - "text": "Enhance cooperation with all human rights mechanisms particularly by issuing a standing invitation to the special procedures mandate holders ", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Ratify the core human rights instruments, including the International Convention on the Protection of the Rights of All Migrant Workers and Members of Their Families", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Expedite the adoption of laws and programmes designed to ensure effective access to justice for all victims of wartime sexual violence, including adequate reparation", - "values": [ - "4 - General action" - ] - }, - { - "text": "Seek the technical advice of the United Nations High Commissioner for Refugees to identify and prevent statelessness, and protect stateless persons, to address the challenges created by the ruling of the Constitutional Court ", - "values": [ - "1 - Minimal action" - ] - }, - { - "text": "Further increase its efforts to combat sexual exploitation of children, child pornography and prostitution, and provide assistance to victims of sexual exploitation", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Allocate the necessary human, technical and financial resources to accelerate the implementation of the national preventive mechanism for the prevention of torture, in compliance with the provisions in Law No. 26827", - "values": [ - "4 - General action" - ] - }, - { - "text": "Amend the Labour Law of the Industrial Complex of Kaesong and incorporate the minimum age of 18 years for work hazardous to the health, security or morality of minors ", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Guarantee the right of all persons to a fair trial and, in particular, allow for the presence without restriction of observers at court hearings ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Carry on its important achievement in supporting vulnerable groups, especially those living in rural areas.", - "values": [ - "4 - General action" - ] - }, - { - "text": "Take institutional building measure and effective awareness raising to combat trafficking in persons ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Take all necessary measures to ensure the safety of human rights defenders and ensure that they have a favourable working environment.", - "values": [ - "4 - General action" - ] - }, - { - "text": "Ensure that the work of the National Human Rights Commission is aligned with the Paris Principles ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Continue to step up poverty reduction efforts to improve the people's living standards ", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Bring the Australian juvenile justice system in conformity with international standards, including removing minors from the adult justice system and ensuring their rehabilitation", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Promote the establishment of an inter-ministerial committee on human rights in order to further improve coordination between the various national administrations and increase the effectiveness of the Human Rights Office", - "values": [ - "4 - General action" - ] - }, - { - "text": "Withdraw its reservations to CRC", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Harmonize legislation that discriminated against women with the Constitution and the Convention on the Elimination of All Forms of Discrimination against Women", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Promote the participation of women in the process of national development", - "values": [ - "4 - General action" - ] - }, - { - "text": "Strengthen mechanisms to advance more effectively, in the creation of a climate of tolerance and respect towards people of different ethnic groups or cultures ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Sign and ratify the Second Optional Protocol to the ICCPR", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Strengthen efforts in combating corruption and for access to justice ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Rapidly close social institutions for children and find appropriate solutions for children who cannot live with their families", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Establish a moratorium on the death penalty, in accordance with General Assembly resolution 62-149.", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Continue efforts to eliminate all forms of discrimination based on race, language, religion, nationality, ethnicity, etcetera, and seek to regulate the xenophobic and racist discourse of certain media", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Continue to provide free education to women and girls, especially those living in rural areas", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Adopt an NGO law which should take into account the views of civil society stakeholders and provide an enabling framework for the development of civil society in Saudi Arabia", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "On the basis of the UK's commitment to the rule of law, comply with the rulings of the European Court of Human Rights on the cases concerning the United Kingdom, as well as promote the participation and cooperation of the European Union and its Member States with the Court ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Review the 2016 Immigration Act in order to ensure its compatibility with the Convention on the Rights of the Child", - "values": [ - "3 - Considering action" - ] - }, - { - "text": "Take serious measures to resolve the conflict in a peaceful manner by complying with the Government\u2019s obligations under the Minsk package of measures and by initiating their implementation", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Pursue the ratification of the Optional Protocol to the Convention on the Elimination of All Forms of Discrimination against Women", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "If Brunei continues to use the death penalty, it should meet at least the minimum international standards on death penalty (ECOSOC resolution 1984/50) and the relevant provisions of the International Covenant on Civil and Political Rights (articles 6 and 14) and the Convention on the Rights of the Child (article 37) ", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Ensure that there is an accessible mechanism to register cases of domestic violence and provide legal, medical and psychological advice to victims ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Continue creating conditions for the participation of persons with disabilities in the country's public life and in decision-making regarding matters concerning the implementation of their rights", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Take additional measures aimed at achieving the gender equality, including amendment to the Constitution on the role and status of women in Irish society ", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Strengthen measures aimed at the protection of religious minorities, in accordance with articles 13 and 14 of its Constitution", - "values": [ - "4 - General action" - ] - }, - { - "text": "Ensure respect for minorities, especially sexual minorities", - "values": [ - "4 - General action" - ] - }, - { - "text": "Ratify the remaining international human rights instruments, in particular the Second Optional Protocol to the International Covenant on Civil and Political Rights and the Optional Protocol to the Convention on the Rights of Persons with Disabilities\n", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Implement the ratification of CRPD", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Fully align its national legislation with the Rome Statute of the International Criminal Court, to accede to the Rome Statute and the Agreement on Privileges and Immunities of the International Criminal Court", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Set up a genuine policy on protection and promotion of women\u2019s rights", - "values": [ - "4 - General action" - ] - }, - { - "text": "Introduce legislation to repeal the blasphemy law of 1965", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Continue to improve its treatment of prisoners in keeping with the United Nations Standard Minimum Rules for the Treatment of Prisoners", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Continue to engage positively with OHCHR, the treaty bodies, the special procedures and other UN institutions, and continue to pursue its efforts to implement their recommendations ", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Further address the protection of victims' human rights as well as punishment for those responsible, with respect to the high rates of domestic violence", - "values": [ - "4 - General action" - ] - }, - { - "text": "That the youth guarantee scheme is implemented without discrimination and sufficient budget allocated for its effective implementation", - "values": [ - "4 - General action" - ] - }, - { - "text": "Amend its laws and set up a legal framework that respects and promotes freedom of expression in conformity with its international obligations", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Continue working to reduce existing inequality gaps regarding indigenous peoples", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Make all the necessary political reforms in order to ensure the emergence of a government through free and fair elections", - "values": [ - "4 - General action" - ] - }, - { - "text": "Take effective measures to ensure that prison conditions are consistent with international standards.", - "values": [ - "4 - General action" - ] - }, - { - "text": "Improve access to education and health for minorities and ensure non-discrimination in access to employment and accommodation for migrants ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Adopt the bill on Trafficking of Children", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Adhere to the International Convention on the Protection of the Rights of All Migrant Workers and Members of Their Families ", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Continue its efforts under multi-sectoral approach to address the issue of human trafficking ", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Continue and redouble the efforts to combat racism, racial discrimination and other related forms of intolerance, placing particular attention on the structural elements of discrimination that might affect the effective exercise of the rights to health, education, decent work and participation in decision-making processes by indigenous people and people of African descent", - "values": [ - "4 - General action" - ] - }, - { - "text": "Continue to provide technical and financial assistance for the development of agricultural production in the context of the enjoyment of the right to decent food, in particular with support for medium-sized and small enterprises", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Share its experience in combating terrorism ", - "values": [ - "1 - Minimal action" - ] - }, - { - "text": "Take additional measures to improve the situation of migrant domestic workers by extending the application of the Private Sector Labour Law to include domestic workers", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Review its decision to denounce the American Convention on Human Rights and participate constructively in the inter-American human rights system", - "values": [ - "3 - Considering action" - ] - }, - { - "text": "Ratify the International Convention for the Protection of All Persons from Enforced Disappearance CED and accept the competence of the Committee on Enforced Disappearance.", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Abolish the death penalty in order to perpetuate the de facto moratorium on executions ", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Consider in future policies the establishment of a national human rights institution, which could favour the gradual incorporation of international commitments with an adequate and permanent technical assistance ", - "values": [ - "3 - Considering action" - ] - }, - { - "text": "Continue its well-recommended practice to train specialists to work with persons with disabilities", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Further develop measures to generate better conditions for the activities of organizations on the rights of women", - "values": [ - "4 - General action" - ] - }, - { - "text": "Adopt a national action plan on Security Council resolution 1325 (2000) on women and peace and security ", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "RMI supports the recommendations and are committed to develop socio-economic strategies and plans. In 2013, the National Strategic Plan (NSP) was developed. It is designed as a framework to coordinate the articulated medium term development goals and objectives of the RMI government at the national level. It covers a three year increment period, starting 2015-2017 and will continually updated in order to meet longer term objectives, especially in regards towards the scheduled completion of The Compact of Free Association, as Amended funding in 2023.", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "The Czech Republic concluded by announcing its pledge to submit an interim progress report to the Human Rights Council on the implementation of the UPR recommendations.", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Consider ratifying the fundamental ILO Conventions ", - "values": [ - "3 - Considering action" - ] - }, - { - "text": "Include the expansion of bilingual education (education in mother tongue) during the first years of primary schooling in the next education sector strategy programme ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Grant the Ecumenical Patriarchate an adequate legal personality", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Accelerate the process towards the ratification of the Optional Protocol to the Convention against Torture", - "values": [ - "4 - General action" - ] - }, - { - "text": "Effectively investigate and prosecute crimes and violations against human right defenders and journalists, and punish those responsible. Complaints of harassment of human rights defenders must receive a prompt response and adequate measures for their safety should be taken ", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Abandon any restriction or obstacle to the work of persons and institutions engaged in the protection and promotion of human rights ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Improve further its cooperation with all United Nations human rights mechanisms, submitting its overdue reports to treaty bodies, as well as its response to communications of the special procedures ", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Put an end to direct and indirect restrictions on freedom of expression and adopt appropriate measures, including legislative measures, to prevent intimidation of journalists ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Strengthen access to the rights to education of infants, without discrimination, including the improvement of educational infrastructure, with a particular emphasis on the infant population in rural areas, and children and adolescents living on the streets. Implement human rights education and training programmes aimed at combating discrimination based on ethnicity", - "values": [ - "4 - General action" - ] - }, - { - "text": "Decriminalize homosexuality and, as a first step, declare a moratorium on the application of penalties ", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Adapt global human rights conventions in consonance with domestic statutes", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Develop and publish a national action plan to tackle modern slavery, including ratification of the Protocol of 2014 to the Forced Labour Convention, 1930, of the International Labour Organization", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Increase efforts to promote and protect the rights of vulnerable groups such as children, women, people with disabilities and the elderly ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Establish specific laws against domestic violence and the sexual abuse of women in all states in the Federation", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Ensure the rights of migrant workers who are domestic workers, including through measures of labour inspection and protection of these workers against their employer ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Continue its capacity-building activities and human rights training for defence and security forces by utilizing various international cooperation, including South-South cooperation", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Adopt a comprehensive law to protect the environment\n\n", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "To build capacity for the development of a communications and awarenessraising strategy that will engender a change of behaviour", - "values": [ - "4 - General action" - ] - }, - { - "text": "Address effectively the issue of corruption", - "values": [ - "4 - General action" - ] - }, - { - "text": "Grant access to the three thematic Special Rapporteurs who have requested a visit", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Withdraw its reservation to article 2 of the Convention on the Elimination of All Forms of Discrimination against Women", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Continue adopting new rules to widen the legislative grounds of human rights ", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "In cooperation with ILO and other relevant international organizations, continue to provide vocational training, especially for the youth, to build up a skilled workforce to support its development ", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Enhance the skills of people in charge of teaching human rights in curricula", - "values": [ - "4 - General action" - ] - }, - { - "text": "Consider the ratification of the International Convention on the Protection of the Rights of All Migrant Workers and Members of Their Families", - "values": [ - "3 - Considering action" - ] - }, - { - "text": "Develop a comprehensive anti-discrimination legislation", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Take the necessary measures to ensure that the justice system effectively combats impunity, and analyse the feasibility of establishing an international commission against impunity on the model of the International Commission against Impunity in Guatemala", - "values": [ - "4 - General action" - ] - }, - { - "text": "Ratify the the Optional Protocol to the Convention against Torture and establish an effective National Preventive Mechanism. In the meantime, unimpeded access to all places of detention should be granted to independent civil society organisations working to prevent torture in Tajikistan", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Ratify promptly the Indigenous and Tribal Peoples Convention, 1989 (No.169) of the International Labour Organization", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Effective implementation of the Magna Carta of Women in all fields, inter alia, labour relations, access to justice and health care, including aspects of sexual and reproductive health, and sexual violence", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Continue its efforts to strengthen the role of independent bodies for human rights", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Ensure that Roma children are not sent to special schools for the disabled, but instead are schooled together with other Bulgarian children", - "values": [ - "4 - General action" - ] - }, - { - "text": "Amend all discriminatory provisions and administrative regulations relating to family, marriage and divorce", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Ensure that all children born in the country, who have not been registered, are provided with birth certificates and personal documents", - "values": [ - "4 - General action" - ] - }, - { - "text": "Continue to provide equal access to education by all national races, including minorities in the country", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Make further efforts to ratify other relevant international instruments that are vital to the promotion and protection of Human Rights, in keeping with its national capacity and priority", - "values": [ - "4 - General action" - ] - }, - { - "text": "Colombia has voluntarily committed itself to reducing the proportion of people living in poverty 43 to 28.5 per cent and the proportion of those living in extreme poverty to 8.8 per cent by 2015.", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Step up its efforts towards ratifying the Convention on the Elimination of All Forms of Discrimination against Women", - "values": [ - "4 - General action" - ] - }, - { - "text": "Establish a policy that allows to decrease the high levels of overcrowding conditions in detention centres", - "values": [ - "4 - General action" - ] - }, - { - "text": "Continue implementing its National strategy in favour of children with particular attention to children victims of landmines as well as to pursue its efforts in preventing the involvement of children in armed conflicts ", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Abide by its international human rights obligations and to uphold freedom of the press, freedom of information and freedom of speech", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Ratify and fully align Kuwaiti national legislation with the Rome Statute of the International Criminal Court", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Redouble efforts to reduce the number of maternal deaths by training birth attendants and establishing more obstetric clinics, with particular attention to indigenous women and peoples", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Continue its positive measures in advancing the rights of its minority groups, including Muslims, through the allocation of sufficient funding", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Intensify efforts to create more employment opportunities for all, including the women population", - "values": [ - "4 - General action" - ] - }, - { - "text": "Adopt national legislation against discrimination ", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Consider recognizing the competence of the Committee on Enforced Disappearances to receive and study communications", - "values": [ - "3 - Considering action" - ] - }, - { - "text": "Promote the rights of women and effectively combat all forms of violence against women and against prenatal selection", - "values": [ - "4 - General action" - ] - }, - { - "text": "Consolidate its plans for peace, stability and reconstruction, and to accelerate the implementation of its programmes for persons with disabilities so as to guarantee their physical, social and economic rehabilitation and the enjoyment of their other fundamental rights", - "values": [ - "4 - General action" - ] - }, - { - "text": "Continue its efforts to ensure respect for the rights and fundamental freedoms of all the population, guaranteeing the investigation and punishment of perpetrators of human rights violations, demonstrating its commitment to combating impunity", - "values": [ - "4 - General action" - ] - }, - { - "text": "Continue its reform process in various systems including prisons, protection of women and children, and health", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Consider ratifying other human rights core instruments, namely, the Convention against Torture, the International Convention on the Protection of the Rights of All Migrant Workers and Members of their Families, and the Convention on the Rights of Persons with Disabilities ", - "values": [ - "3 - Considering action" - ] - }, - { - "text": "Take urgent measures to repeal the norms that criminalize and stigmatize lesbian, gay, bisexual, transgender and intersex persons and investigate and punish the perpetrators of acts of discrimination and violence against them", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Issue an open invitation to the Special Procedures ", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Introduce legislation that explicitly protects LGBT persons from discrimination", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Consider acceding to ILO Convention 189", - "values": [ - "3 - Considering action" - ] - }, - { - "text": "Sign and ratify the Convention for the Protection of All Persons from Enforced Disappearance ", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Establish a national programme of human rights education and training and call for necessary international assistance in this regard.", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Reiterate the recommendation to ratify the International Convention for the Protection of all Persons from Enforced Disappearances and the Optional Protocol to the CRC on the Sale of Children, Child Prostitution and Child Pornography ", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Take full and effective advantage of technical assistance provided by the international community in the field of training and capacity building of national institutions for the promotion and protection of human rights", - "values": [ - "4 - General action" - ] - }, - { - "text": "Continue to combat human trafficking and to make it a priority of the various governmental agencies entrusted with implementing the third action plan to combat human trafficking, for the period from 2009 to 2011", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Ensure the enjoyment of the right to vote both by persons deprived of their liberty and of persons who have completed their prison sentences ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Extend an open ended and standing invitation to United Nations special procedures", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "End construction of, and dismantle the already built, illegal separation wall", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Consider adopting a national action plan on Security Council Resolution 1325 on Women, Peace and Security", - "values": [ - "3 - Considering action" - ] - }, - { - "text": "Eliminate from national legislation the death penalty", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Canada remains strongly committed to the rights of indigenous peoples. The rights of Aboriginal people in Canada are protected by the Canadian Constitution and other domestic laws, and Canada is committed to making progress on issues of particular concern to Aboriginal people in Canada.", - "values": [ - "4 - General action" - ] - }, - { - "text": "Continue efforts to promote the enrolment of girls in all levels of education", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Extend an open and standing invitation to all Special Procedures mandate-holders and fully cooperate with them, permitting them to visit the country", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Pursue fulfilling its obligations under international human rights mechanisms in the future", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Take the necessary measures to promote media pluralism and fight threats against freedom of the press and freedom of expression", - "values": [ - "4 - General action" - ] - }, - { - "text": "Put in place an adequate social housing system, with a clear definition of this concept and with broad social criteria for the allocation of these homes to the most needy families", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Continue the process of ratifying international human rights instruments that it is not yet a party to", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Formulate strict legislation to prevent abuse and exploitation of children with disabilities by parents or other members of society, and provide necessary measures to assist them in their quest of justice", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Undertake significant further activities to amend electoral legislation regarding the members of the Bosnia and Herzegovina Presidency and the delegates of the House of Peoples, to ensure full compliance with the European Convention on Human Rights", - "values": [ - "4 - General action" - ] - }, - { - "text": "Consider establishing a national human rights institution pursuant to the Paris Principles ", - "values": [ - "3 - Considering action" - ] - }, - { - "text": "Consider ratification of the Rome Statute of the International Criminal Court and the Convention on the Prevention and Punishment of the Crime of Genocide ", - "values": [ - "3 - Considering action" - ] - }, - { - "text": "Fully align its national legislation with the CEDAW, including by eliminating all discriminatory provisions from national laws and by supporting its full implementation with practical as well as policy measures ", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Adopt legislation to prohibit female genital mutilation and measures to eradicate this practice, including campaigns to increase awareness of this issue.", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Continue to develop inclusive education for the sake of children with disabilities", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Consolidate the gains already made in the sphere of human rights through awareness programmes", - "values": [ - "4 - General action" - ] - }, - { - "text": "Sign the second Optional Protocol to the International Covenant on Economic, Social and Cultural Rights on the abolition of capital punishment ", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Disseminate the outcome of the review through the national mass media in order to inform the public at large of its presentation made today, the achievements made and recommendations which are going to be implemented in the next period.", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Sign and ratify CAT, CED and CRPD ", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Sign and ratify the Optional Protocol to the Convention on the Rights of the Child on the sale of children, child prostitution and child pornography", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Take measures towards the ratification of the Optional Protocol to the Convention against Torture and Other Cruel, Inhuman or Degrading Treatment or Punishment", - "values": [ - "4 - General action" - ] - }, - { - "text": "Strengthen its legal framework by acceding to the international human rights promotion and protection instruments to which it is not yet party, notably the International Covenant on Civil and Political Rights and the International Covenant on Economic, Social and Cultural Rights", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Ensure proper implementation of the law on reparation for acts of discrimination against people of African descent ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Recognize the right of refugees to return to their homes ", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Adopt measures to ensure that lesbian, gay, bisexual, transgender and intersex persons are no longer victims of discriminatory provisions", - "values": [ - "4 - General action" - ] - }, - { - "text": "Continue finalizing the process of reviewing the legal framework on prohibiting, preventing and responding to all forms of sale and sexual exploitation of children, and to ensure the effective implementation of the framework through, inter alia, the harmonization of national legal and regulatory frameworks with ratified international instruments, accompanied by binding measures and mechanisms", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Investigate killings and violence against journalists and hold perpetrators accountable", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Amend legislation that denies Swazi citizenship to children born of foreign fathers", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Continue its efforts to address the rights of persons with disabilities and to update the national legal framework in order to harmonize it with the provisions of the Convention on the Rights of Persons with Disabilities", - "values": [ - "4 - General action" - ] - }, - { - "text": "Provide the National Commission for Human Rights with adequate resources to enable it to conform to its mandate in full compliance with the Paris Principles", - "values": [ - "4 - General action" - ] - }, - { - "text": "Continue working to achieve a greater women's leadership in agricultural cooperatives ", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Take steps towards full abolition of capital punishment, with immediate effect in particular towards juvenile offenders", - "values": [ - "4 - General action" - ] - }, - { - "text": "Further promote cooperation with the Human Rights Council special procedures, including facilitating the visits of the mandates holders to the country", - "values": [ - "4 - General action" - ] - }, - { - "text": "Consider strengthening existing arrangements in order to promote equality of religious communities not belonging to Islam, and of lesbian, gay, bisexual and transgender - LGBT- persons through the repeal or amendment of laws that allow for prosecution or punishment", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Provide the families of those abducted with full information on their fate and whereabouts", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Promote measures aimed at protection and support of the institute of family ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Adopt measures to strengthen the rule of law, prevent human rights violations, including enforced disappearances, extrajudicial executions and torture, ensure punishment of those responsible, and include, inter alia, systematic review of all detention areas. establish an independent complaint mechanism in prisons, and prompt, impartial investigation into allegations of torture as well as protection for witnesses and others alleging torture or ill-treatment against reprisals, intimidation and threats", - "values": [ - "4 - General action" - ] - }, - { - "text": "Review the current deportation practices for migrants in Ceuta and Melilla ", - "values": [ - "3 - Considering action" - ] - }, - { - "text": "Ratify the International Covenant on Civil and Political Rights, the International Convention on the Elimination of All Forms of Racial Discrimination, sign and ratify the International Covenant on Economic, Social and Cultural Rights", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Carry on with ensuring the reduction of poverty and increasing the empowerment of women", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Bring its legislation closer to the requirements of the European Convention on Nationality, which stipulates that to obtain the nationality, the period of residency should not be above 10 years", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Continue efforts to improve national mechanisms for the promotion and protection of human rights", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Enhance initiatives designed to halt the trafficking and sexual exploitation of children and adolescents in the country, particularly through the strengthening of its justice system and the adoption of appropriate legislation on the matter ", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Redouble its efforts, in assisting poor sections of the population, by endowing the Working Human Development Group with both the human and financial resources required to operate effectively and carry out its calling to ensure a decent living standard for all Filipinos ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Strengthen measures to prevent the disproportionate use of force by the police through the incorporation of representatives of ethnic minorities in the security forces and to punish such acts ", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Intensify its efforts to ensure the establishment of the housing strategy 2012-2027", - "values": [ - "4 - General action" - ] - }, - { - "text": "Ensure the mechanism for handling allegations of ill-treatment by law enforcement officials of members of marginalised groups, such as migrants, asylum-seekers and Roma, is made operational as soon as possible, and that its investigations are carried out in a prompt, thorough and impartial manner", - "values": [ - "4 - General action" - ] - }, - { - "text": "End the excessive use of force by the police in maintaining order during mass demonstrations as well as against foreigners subject to deportation from the country ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Adopt and implement all measures necessary to encourage and ensure access for girls, adolescents and women to adequate sexual and reproductive health services, including the provision of adequate contraceptive, family planning and obstetric information and facilities, according special attention to the prevention of early pregnancies and unsafe abortions", - "values": [ - "4 - General action" - ] - }, - { - "text": "Adopt a strategy and a comprehensive plan of action to counter discrimination based on sexual orientation and gender identity", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Take further measures to ensure the full enjoyment of human rights of ethnic minorities, migrants, Muslims and people of African origin", - "values": [ - "4 - General action" - ] - }, - { - "text": "Repeal provisions criminalizing sexual relations between consenting adults of the same sex, to respect the principles of equality and nondiscrimination among all people", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Continue its policy of respect and tolerance of all religions without discrimination", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Continue efforts to increase the participation of women in elected assemblies", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Take measures to combat domestic violence, particularly against women", - "values": [ - "4 - General action" - ] - }, - { - "text": "Extend an open and standing invitation for all the special procedures", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Respect the freedom of religion", - "values": [ - "4 - General action" - ] - }, - { - "text": "Strengthen legislative, policy and institutional measures to prevent, combat and punish human trafficking, and ensure that victims are identified, aware of their rights, and referred to appropriate services", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "That the Unit on Family Violence and other competent bodies improve search and data collection systems, in order to accurately quantify the magnitude of the problem, its causes and consequences", - "values": [ - "4 - General action" - ] - }, - { - "text": "Abolish capital punishment in national legislation ", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Continue paying closer attention to the gender and diversity programmes at education institutions", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Ensure thorough investigations into reports of attacks and threats against human rights defenders with a view to bring perpetrators to justice", - "values": [ - "4 - General action" - ] - }, - { - "text": "Ensure that the National Human Rights Commission is in line with the Paris Principles and that the Ombudsman is fully independent", - "values": [ - "4 - General action" - ] - }, - { - "text": "Adopt legislative provisions in order to prohibit, sanction and effectively prevent the practice of female genital mutilation ", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Further its endeavours with regard to the strengthening of the normative and institutional framework for the protection and promotion of human rights ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Facilitate humanitarian access to civilians, lift the blockade on all besieged areas and grant full and unimpeded access to the Commission of Inquiry", - "values": [ - "4 - General action" - ] - }, - { - "text": "Ensure that all migrant workers, refugees and asylum seekers are treated in accordance with international standards, including respecting the principle of non-refoulement", - "values": [ - "4 - General action" - ] - }, - { - "text": "Take further steps to ensure equal treatment and non-discrimination against women as well as to expand representation of women in decision-making positions ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Decriminalize defamation, and continue national measures to promote the independence of the media ", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Abandon the plan to reduce the age of penal responsibility, as it will lead to prosecuting children like adults prior to giving them the means to become responsible citizens", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Totally ban female genital mutilation as opposed to the age limit of 18 age and criminalize the practice", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Draft a strategic plan for technical assistance and submit it to OHCHR in order to obtain the necessary assistance ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Guarantee the fight against impunity by ensuring that all those responsible for crimes are prosecuted and tried, in particular by speeding up, with the support of the African Union, the establishment of a hybrid court as foreseen in the peace agreement", - "values": [ - "4 - General action" - ] - }, - { - "text": "Strengthen the position and the participation of women in public life by introducing regulations guaranteeing their participation", - "values": [ - "4 - General action" - ] - }, - { - "text": "Take effective measures against the practice of forced labour, including child labour and join ILO", - "values": [ - "4 - General action" - ] - }, - { - "text": "Fast-track the process to sign and ratify international treaties related to the Convention against Torture", - "values": [ - "4 - General action" - ] - }, - { - "text": "Adopt a comprehensive, human rights based gender equality strategy", - "values": [ - "4 - General action" - ] - }, - { - "text": "Take the necessary public and legislative steps in order to abolish the death penalty", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Take further measures to ensure an end to violations of the right to freedom of opinion and expression and to create conditions to prevent such violations ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Carry out a comprehensive legal review of its domestic legislation and traditional practices to amend or eliminate those cultural practices and stereotypes which discriminate against women, bearing in mind its condition as State party to the Convention on the Elimination of All Forms of Discrimination against Women, while implementing innovative measures addressed to youth and adults to increase the understanding of the concept of equality between women and men and to present a positive and nonstereotypical image of women ", - "values": [ - "3 - Considering action" - ] - }, - { - "text": "Decriminalize consensual sexual relations between same-sex adults", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Ensure the inclusion of all stakeholders in the drafting and adoption of the British Bill of Rights, in particular representatives of the poor, minorities and vulnerable groups", - "values": [ - "4 - General action" - ] - }, - { - "text": "Intensify its cooperation with the Working Group on Enforced and Involuntary Disappearances to establish the fate of those who may have not been accounted for at the end of the armed conflict", - "values": [ - "4 - General action" - ] - }, - { - "text": "Cease the application of corporal punishment in accordance with its international human rights obligations", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Complete the existing legislation in order to combat all forms of violence against women throughout its territory", - "values": [ - "4 - General action" - ] - }, - { - "text": "Continue making progress on its reform agenda and to become a role model for the region, including through strengthening the independence, effectiveness and transparency of its oversight bodies, and cooperating with the United Nations system", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Sign and ratify the International Convention on the Protection of the Rights of All Migrant Workers and Members of Their Families", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Enforce the economic independence of women and vulnerable groups by adopting appropriate plans to combat poverty", - "values": [ - "4 - General action" - ] - }, - { - "text": "Promote amendments in the current laws to envisage the prosecution and punishment of the perpetrators of violence against women, in particular domestic violence", - "values": [ - "4 - General action" - ] - }, - { - "text": "Fully implement the ideals of the new Constitution, including the initiation of Constitutional Court proceedings", - "values": [ - "4 - General action" - ] - }, - { - "text": "Undertake greater efforts to ensure a more pluralist media environment", - "values": [ - "4 - General action" - ] - }, - { - "text": "Repeal all legislative provisions which criminalize sexual activity between consenting adults of the same sex ", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Continue its awareness-raising measures to improve the poor rate of schooling for girls and their access to higher and technical studies ", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Reinforce its efforts, such as the drafted National Action Plan for Reducing Crime, to eliminate the phenomenon of bullying and violence at schools ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Ratify the International Covenant on Economic, Social and Cultural Rights, the International Convention on the Elimination of All Forms of Racial Discrimination and the Convention against Torture and Other Cruel, Inhuman or Degrading Treatment or Punishment ", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Protect the Bedouin citizens from discrimination and ensure their rights to property, housing and public service on an equal basis with others", - "values": [ - "4 - General action" - ] - }, - { - "text": "Accede to the Rome Statute of the International Criminal Court and incorporate it in the national legislation, and to the Convention on the Non-Applicability of Statutory Limitations to War Crimes and Crimes against Humanity", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Establish a national human rights institution accredited by the International Coordinating Committee of National Institutions for the Promotion and Protection of Human Rights, in line with the Paris Principles ", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Review its laws and practices relating to religious groups to ensure that all persons, religious denominations and institutions feel free to associate and practice their religious beliefs", - "values": [ - "3 - Considering action" - ] - }, - { - "text": "Consolidate specialized measures aimed at strengthening the rights of children with disabilities ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Continue to actively seek technical cooperation and assistance from the international community and development partners in order to effectively implement programmes and policies aimed at providing health services and quality education for all citizens ", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Ratify in due course instruments such as the International Convention on the Protection of the Rights of All Migrant Workers and Members of their Families, the Convention on the Rights of the Child and the International Covenant on Economic, Social and Cultural Rights", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Bring relevant provisions of the Turkish Criminal Code in line with article 19 of the ICCPR, to ensure freedom of expression and to create an environment conducive to free journalism and media", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Strengthen current efforts aimed at improving the national production system so as to achieve the creation of sufficient jobs in order to overcome poverty and reduce unemployment ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Continue its efforts in combating trafficking in human beings and providing psychological, social and legal assistance to victims", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Strengthen the functions of EHRC and the Ombudsman to bring them into line with the Paris Principles ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Ensure thorough and impartial investigations into all allegations of attacks and threats against individuals targeted because of their sexual orientation and gender identity, and bring to justice those responsible ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Continue its efforts to eliminate all forms of sex and gender-based discrimination throughout the educational system", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Consider ratifying ILO Convention Domestic Workers Convention, 2011 (No.189) ", - "values": [ - "3 - Considering action" - ] - }, - { - "text": "Ensure the enjoyment by the Palestinians of all their cultural and religious rights, as contained in the Universal Declaration for Human Rights, and allow them to have access to all places of worship, in accordance with the Fourth Geneva Convention, without any restriction, and in order to preserve the cultural heritage, take all measures to protect these places and preserve their dignity.", - "values": [ - "4 - General action" - ] - }, - { - "text": "Take measures to ensure the right to work of persons belonging to the Roma community, particularly by giving further encouragement to municipalities, associations and non-governmental organizations to find jobs for them. ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Make continued efforts to eradicate poverty and extreme poverty ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Ratify the Second Optional Protocol to the International Covenant on Civil and Political Rights on the abolition of the death penalty", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Step up efforts to improve health services and reduce the maternal mortality rate, including through the allocation of increased resources for health-care provision in rural areas ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Take further steps in order establish an independent national human rights institution giving emphasis to the protection of women's rights", - "values": [ - "4 - General action" - ] - }, - { - "text": "Take measures aimed at eliminating torture and other forms of ill-treatment", - "values": [ - "4 - General action" - ] - }, - { - "text": "Pursue its positive efforts to promote and protect the right to education, including the education of girls", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Consider reviewing the legal age of criminal responsibility with a view to ensuring full protection for juveniles in conflict with the law", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Formulate specific technical assistance requests in order to promote the achievement of the Millennium Development Goals and to address them to relevant United Nations bodies and mechanisms, in particular to OHCHR", - "values": [ - "1 - Minimal action" - ] - }, - { - "text": "Consider ratifying the Convention on the Rights of Persons with Disabilities and the Optional Protocol to the Convention against Torture.", - "values": [ - "3 - Considering action" - ] - }, - { - "text": "Ensure freedom of religion or belief, including access to places of worship", - "values": [ - "4 - General action" - ] - }, - { - "text": "Continue to promote economic and social development ", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Seek all possible technical and financial assistance it needs from the international community as well as OHCHR ", - "values": [ - "1 - Minimal action" - ] - }, - { - "text": "Continue adopting measures to effectively address the phenomena of enforced disappearance ", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Undertake an evaluation of the operation of the specialized courts on violence against women, identify and encourage best practice", - "values": [ - "3 - Considering action" - ] - }, - { - "text": "Amend its laws with a view to prohibiting discrimination on the basis of sex, sexual orientation and gender identity", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Accelerate the ongoing legislative reform to combat insecurity and violence against women and children and to consolidate those measures, including through improved statistics or educational programmes in schools regarding human rights and gender equality", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Continue efforts and endeavours to improve the overall human rights protection situation in the country", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Enact a progressive, substantive Freedom of Information law ", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "It was recommended that additional capacity-building measures be taken in support of programmes and projects on women and children", - "values": [ - "4 - General action" - ] - }, - { - "text": "Continue providing targeted support for cultural diversity in all schools ", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Develop an action plan ensuring that Internet laws comply with Cambodia's commitment to guarantee freedom of expression and information, so as to ensure free access to electronic media, liberalize electronic media ownership rules and allow national bloggers, journalists, other Internet users and NGOs to play a full and active role in promoting and protecting human rights ", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Ratify the OP-CAT as well as the Rome Statute as foreseen in the National Human Rights Action Plan 2011-2014 ", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Continue efforts to promote the empowerment of women and the protection of their rights", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Engage the NGOs in the field of language protection in the follow-up to the UPR and in the preparation of the next UPR report", - "values": [ - "4 - General action" - ] - }, - { - "text": "Adopt a law banning incitement to religious and racial hatred.", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Argentina undertakes to continue working to ensure the complementary nature of the work carried out by subregional, regional and international human rights protection mechanisms", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Withdraw all its reservations to the Convention on the Elimination of All Forms of Discrimination against Women", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Introduce a formal moratorium on executions and take concrete steps toward the abolition of the death penalty", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Continue to strengthen measures to eliminate racial profiling, especially in law enforcement and racial discrimination in employment ", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Complete as earliest possible the preparation of the National Human Rights Action Plan and implement the plan at earliest ", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Combat domestic violence", - "values": [ - "4 - General action" - ] - }, - { - "text": "Take further measures to reduce the gender disparity in primary and secondary school and address the causes of the high dropout rates of adolescent girls, notably those outlined by the Committee on the Elimination of All Forms of Discrimination against Women in its concluding observations on the periodic reports of the Comoros ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Adopt a national plan and legislation against racial discrimination, xenophobia and other forms of intolerance ", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Adopt an intercultural health policy and strategy with an approach based on gender rights and sensitivity ensuring, inter alia, universal access to sexual and reproductive health, particularly in rural areas", - "values": [ - "4 - General action" - ] - }, - { - "text": "Submit overdue reports to the Committee on the Rights of the Child ", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Consider taking all necessary steps to introduce a de jure moratorium on executions with a view to fully abolishing the death penalty", - "values": [ - "3 - Considering action" - ] - }, - { - "text": "Continue the efforts to protect the rights of persons affected by HIV/AIDS", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Strengthen measures to combat discrimination and facilitate victims' access to remedies", - "values": [ - "4 - General action" - ] - }, - { - "text": "Create an independent national human rights institution in accordance with the Paris Principles ", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Intensify efforts to consolidate economic and social rights, especially in the area of health, education, housing and unemployment ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Request an OHCHR assessment mission to Djibouti in order to evaluate the abilities and the capacities available and the national efforts that need support", - "values": [ - "1 - Minimal action" - ] - }, - { - "text": "Strengthen the institutional measures in the field of human rights within the framework of the National Action Programme and the Justice Reform Support Programme ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Consider ratifying the Convention on the Rights of Persons with Disabilities, with particular consideration for widening accessibility for all, as mentioned in the article 9 of the Convention, in order that persons with disability could live independently and contribute to their local community", - "values": [ - "3 - Considering action" - ] - }, - { - "text": "Take the necessary measures for the inclusion of human rights in educational programmes", - "values": [ - "4 - General action" - ] - }, - { - "text": "Speed up the consideration of accession to the Optional Protocol to the Convention on the Rights of the Child on the sale of children", - "values": [ - "4 - General action" - ] - }, - { - "text": "Accelerate efforts to increase the number of women in public life and to eliminate and prevent violence against women", - "values": [ - "4 - General action" - ] - }, - { - "text": "Take further measures to improve transparency and clarification on its policies and measures to promote gender equality, especially with regard to the implementation of Act No. 2013-33", - "values": [ - "4 - General action" - ] - }, - { - "text": "Continue increasing quality of children's education, especially in rural areas", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Ratify the International Covenant on Civil and Political Rights, the International Covenant on Economic, Social and Cultural Rights and the Convention against Torture and Other Cruel, Inhuman or Degrading Treatment or Punishment ", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Give continuity to strengthening national human rights mechanisms", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Continue its efforts to strengthen mechanisms that could guarantee prompt implementation of judicial resolutions to better protect human rights", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Continue to make efforts to implement National Child Protection Strategy", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Request technical assistance from specialized agencies of the United Nations in order to promote human rights through partnerships in the education and health sectors in particular to face up to the consequences of the nuclear tests", - "values": [ - "1 - Minimal action" - ] - }, - { - "text": "Building on its constructive engagement in this session, strengthen its efforts to bring its reporting obligations up to date as soon as possible", - "values": [ - "4 - General action" - ] - }, - { - "text": "Take firm measures to ensure that human rights defenders and peaceful activists are free to enjoy their fundamental rights of, inter alia, freedom of expression and freedom of association", - "values": [ - "4 - General action" - ] - }, - { - "text": "Guarantee access and freedom of movement to the inhabitants of Gaza and the West Bank notwithstanding the necessary security measures.", - "values": [ - "4 - General action" - ] - }, - { - "text": "Take the necessary measures to avoid the stigmatization of migrants and ethnic or religious minorities living in the country and to ensure that they do not become the subject of racism, racial discrimination, xenophobia and other forms of related intolerance, including the prohibition of any organization and propaganda based on racist or xenophobic ideologies", - "values": [ - "4 - General action" - ] - }, - { - "text": "Adopt legislation prohibiting all forms of discrimination of individuals, based on race, colour of the skin, religion, national or ethnic origin, disability, aesthetic aspect, gender, sexual identity or orientation", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Adopt a practical approach in addressing its development and human rights challenges", - "values": [ - "4 - General action" - ] - }, - { - "text": "Accelerate the functioning of the National Human Rights Commission making it in conformity with the Paris Principles", - "values": [ - "4 - General action" - ] - }, - { - "text": "Work towards amending national legislation to bring it into line with international human rights instruments to which it is a party ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Create an independent national human rights institution in conformity with the Paris Principles", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Enact specific legislation that criminalizes domestic violence, and provide more information in all major languages to citizens and residents of Oman regarding domestic violence and means to combat it ", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Ratify the conventions to which it is not yet a party", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Take the necessary measures to ensure that birth registration is obligatory and free for all children", - "values": [ - "4 - General action" - ] - }, - { - "text": "Ratify the Optional Protocol to the Convention on Torture and Other Cruel, Inhumane or Degrading Treatment or Punishment", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Consider the possibility of extending an open standing invitation for all human rights mechanisms", - "values": [ - "3 - Considering action" - ] - }, - { - "text": "Improve prisons and the living and health conditions in detention facilities and, in particular, end overcrowding and the lack of sanitation, enable easy visits by the relatives of children and prohibit and punish prison officers for acts of torture and ill-treatment", - "values": [ - "4 - General action" - ] - }, - { - "text": "Introduce legislative measures to strengthen the rule of law and consolidate cooperation between national and international mechanisms to fight against impunity notably between the ICC, the Special Investigation Unit, and the military court ", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Promote the national plan to end human trafficking namely new forms of online human trafficking", - "values": [ - "4 - General action" - ] - }, - { - "text": "Accelerate ongoing efforts to address the root causes of poverty and hunger so as to uplift the living standards of the poor", - "values": [ - "4 - General action" - ] - }, - { - "text": "Allow for the distribution of condoms within its prisons in order to stem the prevalence of HIV-AIDS in these institutions.", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Conclude the drafting of the Government bill on administrative proceedings and the preparations of the client service strategy ", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Improve the efficiency of the justice system by streamlining and simplifying judicial procedures including introducing a case management system that tracks individual cases from filing to disposition and limits the amount of time each case can be held at each stage", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Continue its advocacy for interfaith dialogue, and to share its best practices and experiences with other countries", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Continue to consolidate its national human rights infrastructure ", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Include human rights education in school curricula ", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Disseminate better and ensure full observation of the Declaration on Human Rights Defenders ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Decriminalize all homosexual activities and not to adopt any discriminatory measures against people on the basis of their sexual orientation", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Complete the process of preparation for the ratification of the Convention against Torture and Other Cruel, Inhuman or Degrading Treatment or Punishment", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Take firm measures against discrimination in all forms and in particular that against foreign women", - "values": [ - "4 - General action" - ] - }, - { - "text": "Adopt legislative or other necessary measures to establish a definition of victim consistent with article 24, paragraph 1, of the International Convention for the Protection of All Persons from Enforced Disappearance (ICPPED) and ensure that any person who has suffered direct harm as a result of an enforced disappearance can receive all compensation and redress measures established under the law, even if criminal proceedings have not been initiated ", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Decriminalize homosexuality and ensure that the authors of violence against homosexuals are brought to justice", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Participate actively in international cooperation to encourage and protect economic, social and cultural rights and to share positive experiences with other countries.", - "values": [ - "1 - Minimal action" - ] - }, - { - "text": "Ensure that security sector reform remains a key priority, the first and most important steps being the adoption of the DRC's national security sector reform plan, coupled with practical measures to ensure the housing, pay and feeding of soldiers, particularly those deployed in the east. ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Bring prison conditions in line with article 10 of ICCPR and the Standard Minimum Rules for the Treatment of Prisoners.", - "values": [ - "4 - General action" - ] - }, - { - "text": "Ratify the Optional Protocol to CEDAW to provide greater protection to women", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Continue working on the implementation of the recommendations of the Truth and Justice Commission, including the search for those who disappeared during the dictatorship", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Protect the human rights of migrants, regardless of their migratory status ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Continue efforts to build the national human rights institutions and provide the necessary resources to execute their mandate", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Fully implement its 2015 national human rights strategy, including with respect to protecting the rights of internally displaced persons, ending discrimination based on gender and sexual orientation through the ratification of the Istanbul Convention, and addressing hate crimes through a strengthened criminal justice framework", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Consider extending a standing invitation to all special procedures mandate holders of the Human Rights Council", - "values": [ - "3 - Considering action" - ] - }, - { - "text": "Further enhance the human rights training programmes for law enforcement officials and other relevant stakeholders ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Strengthen the adoption of socioeconomic programmes which promote the empowerment of women and their participation in public and political life", - "values": [ - "4 - General action" - ] - }, - { - "text": "Pursue its policy to protect the most vulnerable persons who are victims of racial discrimination ", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Allocate the resources necessary for the full implementation of the Zero Tolerance Campaign against Gender Based Violence", - "values": [ - "4 - General action" - ] - }, - { - "text": "Include opposition parliamentary groups and invite civil society in the implementation of the National Consensus Dialogue ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Continue efforts to strengthen the prevention of and fight against female genital mutilation", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Ratify the Optional Protocol to the Convention against Torture and Other Cruel, Inhuman or Degrading Treatment or Punishment in the near future.", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Adopt a set of legislative and administrative measures aimed at ensuring prohibition of the use by state and local authorities of modern technology for excessive and unjustified intervention in citizens' private life ", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Improve and ensure adequate access to health care and education for children", - "values": [ - "4 - General action" - ] - }, - { - "text": "Continue to take concrete measures in accordance with obligations under the relevant international treaties to protect women's rights and raise their social status", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Continue its engagement with the UPR process and work in close cooperation with civil society to implement recommendations arising out of it", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Remove criminal penalties for offences on the basis of sexual orientation ", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Intensify the fight against cybercrime, especially child pornography on the Internet", - "values": [ - "4 - General action" - ] - }, - { - "text": "Strengthen the legislation to combat statelessness by adopting the new draft bill on the protection of the stateless", - "values": [ - "4 - General action" - ] - }, - { - "text": "Enact a law specifically defining and criminalising domestic violence and implement the international obligations in this regard, notably the Convention on the Elimination of All Forms of Discrimination Against Women ", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Repeal the death penalty and ratify the Second Optional Protocol to International Covenant on Civil and Political Rights, aiming at the abolition of the death penalty", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "The United States is committed to promoting women's health and eliminating barriers to health-care services. The Government of the United States regularly reviews its policies to take all appropriate measures to improve the health and status of women and girls around the world, including survivors of sexual violence.", - "values": [ - "4 - General action" - ] - }, - { - "text": "Continue and intensify efforts for further promotion of economic, social and cultural rights with a view to better realize the Millennium Development Goals. In this context we recommend Gambia to benefit from technical and financial assistance by the international community, which is vital to this crucial endeavor", - "values": [ - "4 - General action" - ] - }, - { - "text": "Cooperate with the newly appointed special envoy of the Secretary-General for Western Sahara", - "values": [ - "4 - General action" - ] - }, - { - "text": "Strengthen the mandate of the Provedor de Justiça and ensure it functions in accordance with the Paris Principles", - "values": [ - "4 - General action" - ] - }, - { - "text": "Address root causes of discriminations, ensure effective access to justice, establish immediate means of redress and protection of rights of ethno-minorities, in particular, Aboriginals.", - "values": [ - "4 - General action" - ] - }, - { - "text": "Continue implementing poverty reduction strategies, promote sustainable development, improve the people's living standard, and build a solid space so that every Beninese can fully enjoy all human rights", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "In relation to violence against women, provide victims with full access to the judicial system, compensation and health services", - "values": [ - "4 - General action" - ] - }, - { - "text": "Intensify measures to prevent and combat mistreatment and sexual abuse against boys and girls in accordance with recommendations by the Committee on the Rights of the Child", - "values": [ - "4 - General action" - ] - }, - { - "text": "Intensify its efforts in promoting literacy among the population especially among rural women", - "values": [ - "4 - General action" - ] - }, - { - "text": "Draft a national reconciliation and pardon strategy by setting up an efficient mechanism to fight against impunity ", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Seek to introduce human rights sensitization in school and university curriculums ", - "values": [ - "1 - Minimal action" - ] - }, - { - "text": "Continue the open and constructive dialogue with members of civil society, in particular during the follow-up to the UPR recommendations ", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Further strengthen its efforts to combat poverty for provision of equitable access and resources to all its people", - "values": [ - "4 - General action" - ] - }, - { - "text": "Complete the process of ratifying international human rights instruments which have not yet been ratified, including CPED and the two Protocols to CRC ", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Ratify the Convention on Preventing and Combating Violence against Women and Domestic Violence (the Istanbul Convention)", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Consider ratifying ICRMW not only to ensure access to just conditions of work and basic social service for migrants, especially those in vulnerable situations, but also to prevent discrimination ", - "values": [ - "3 - Considering action" - ] - }, - { - "text": "In the implementation of public policies, give consideration to the characteristics, needs and aspirations of the beneficiaries in order to ensure the exercise of their rights, particularly economic, social and cultural rights.", - "values": [ - "3 - Considering action" - ] - }, - { - "text": "Become a member of the International Labour Organization and the respective conventions ", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Engage members of the international community, including international organizations, with a view to capacity-building support and technical assistance, particularly with regard to the development of economic and human resources and poverty reduction", - "values": [ - "4 - General action" - ] - }, - { - "text": "Take steps to protect people from acts of terrorism, through domestic legislation", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Consider adopting an action plan to combat racism and xenophobia ", - "values": [ - "3 - Considering action" - ] - }, - { - "text": "Adopt a national strategy to protect the rights of children against all risk of violence, in particular, sexual abuse, neglect, abuse, and increase its efforts to combat child labour ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Increase effectiveness of the plan of action to improve the judicial system to combat corruption more effectively", - "values": [ - "4 - General action" - ] - }, - { - "text": "Pursue efficient justice system reforms, with particular focus on ensuring free legal assistance for its underprivileged citizens ", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Provide adequate resourcing to the Commission on Human Rights and allow it to investigate alleged extrajudicial killings", - "values": [ - "4 - General action" - ] - }, - { - "text": "Repeal article 158 of its Criminal Code and ensure that all acts of sexual violence against women and girls are properly investigated and perpetrators are punished", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Pay more attention to the fight against trafficking in children and their sexual exploitation ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Take necessary measures to prevent xenophobia and Islamophobia in the Netherlands and to ensure that religious communities in the Netherlands do not get discriminated against", - "values": [ - "4 - General action" - ] - }, - { - "text": "Repeal all provisions criminalizing sexual activities between consenting adults of the same sex, and reinforce its commitment to end violence and connected human rights violations committed against individuals based on their sexual orientation and identity ", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Extend/Issue a standing invitation to the Special Procedures of the Human Rights Council ", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Effectively eliminate segregation of Roma within the education system, inter alia, by fully and swiftly implementing the National Action Plan for Inclusive Education aiming at addressing issues identified by the European Court for Human Rights", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Tackle chronic lack of human and financial means especially those aiming at harmonizing the tasks of such diverse institutions as the National Unit of Protection, the police, the Attorney-General's Office and the courts ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Repeal all legal provisions allowing sterilization of persons with disabilities without their consent and for non-therapeutic reasons ", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Ensure that women victims of violence receive appropriate help and perpetrators are brought to justice", - "values": [ - "4 - General action" - ] - }, - { - "text": "Continue efforts to combat different forms of discrimination and ensure respect for the rights of ethnic minorities ", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Continue the cooperation with the international community to improve democracy and social development in accordance with human rights principles", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Ratify the ICCPR without any further delays", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Continue to support the important work and independence of the Extraordinary Chambers within the Cambodian court system ", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Continue its efforts to ensure that the universal health-care scheme covers disadvantaged groups, including persons with disabilities and persons living in remote rural areas, who still face obstacles in accessing basic health-care services", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Reduce to the minimum possible administrative detention of migrants, asylum-seekers and refugees, and only use it in exceptional cases ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Take further measures to better protect the rights of women, children, and persons with disabilities and older persons ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Provide without discrimination the proper guarantees of effective judicial protection for detainees, in accordance with the principles and international obligations", - "values": [ - "4 - General action" - ] - }, - { - "text": "Establish a national human rights institution, accredited by ICC ", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Consider taking steps to decriminalize consensual same sex relations and abolish any discriminatory legislation and practices against lesbian, gay, bisexual, transgender and intersex people", - "values": [ - "3 - Considering action" - ] - }, - { - "text": "Effectively investigate and prosecute complaints concerning the harassment, intimidation and arbitrary arrest of human rights defenders, and to punish those responsible", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Take further measures in order to ensure the effective implementation of the international human rights instruments and to enhance the coordination between the different institutional levels involved", - "values": [ - "4 - General action" - ] - }, - { - "text": "Extend and consolidate into a national action plan its measures to combat racism and xenophobia ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Engage in national consultation on the possible ratification of the International Convention on the Rights of All Migrant Workers and Members of Their families ", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Further strengthen its efforts to promote the right to education, including by implementing an affordable education programme for all ", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Increase inputs to help to improve the living standards of people living in poverty and create more job opportunities for women, youth and other special groups ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Establish an immediate official moratorium on the use of the death penalty", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Further enhance Liberia's legal system to promote effective and smooth judicial procedure", - "values": [ - "4 - General action" - ] - }, - { - "text": "Reduce repetition rates in compulsory education and increase completion rates", - "values": [ - "4 - General action" - ] - }, - { - "text": "Enact procedural mechanisms for application of the Child Protection Act and to continue delivering awareness programs on combating domestic violence", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Cease egregious abuses against prisoners, allow for the immediate, unfettered access to medical services for all detainees and release Syrians who have been arbitrarily imprisoned and held without trial", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Proceed with measures to ensure transparent and credible legislative elections no later than 2018", - "values": [ - "4 - General action" - ] - }, - { - "text": "Strengthen measures to abolish servitude and forced labour in the country, with the assistance of the International Labour Organization, and to seek technical assistance in the reintegration of programmes aimed at exploited children, juvenile justice and follow-up to the study on violence against children", - "values": [ - "4 - General action" - ] - }, - { - "text": "Fulfil its commitments to build improved detention facilities ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Review and strengthen existing legislation in order to introduce comprehensive anti-discrimination laws with special emphasis on ethnic, religious and gender issues and make the National Council on Gender Issues fully operational", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Ensure the effective implementation of the existing legislation aimed at fighting discrimination and violence against women and domestic violence", - "values": [ - "4 - General action" - ] - }, - { - "text": "Intensify steps to combat and prevent discrimination, especially against persons with disabilities, particularly with respect to the rights to education, housing and social assistance", - "values": [ - "4 - General action" - ] - }, - { - "text": "Ensure compliance with the provisions against torture laid down in the Penal Code and the prosecution of all perpetrators and establish a monitoring mechanism in order to verify this compliance. ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Continue its current efforts to provide access to quality education without discrimination for the school-age population throughout the country ", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Amend and review all legislation and policies, including the Same-Sex Marriage Bill, with a view to decriminalize LGBTI persons", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Ensure a greater involvement of public powers to guarantee the free exercise of freedom of expression and of the media, as these freedoms contribute to accountability in cases of human rights violations", - "values": [ - "3 - Considering action" - ] - }, - { - "text": "Align the provisions of the nationality law with international human rights standards so as to enable children born in the territory of Namibia whose parents are unknown to acquire nationality of Namibia", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Call upon the international community in implementing and disseminating human rights instruments through technical assistance and capacity-building programmes ", - "values": [ - "1 - Minimal action" - ] - }, - { - "text": "Continue efforts to address the problems in connection with domestic workers with a view to increasing protections for this vulnerable group", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Consider establishing an inter-ministerial committee responsible for the implementation of its international human rights obligations, inter alia, for coordinating the drafting of the national reports to the treaty bodies and for organizing country visits by the Human Rights Council's special procedures", - "values": [ - "3 - Considering action" - ] - }, - { - "text": "Ensure all allegations of human rights abuses by security forces are independently investigated and that perpetrators are held to account", - "values": [ - "4 - General action" - ] - }, - { - "text": "Promulgate draft law 2817, approved by the Philippine Senate in July 2011, which defines and sanctions enforced disappearances ", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Ease registration procedures for independent political parties and for independent national and international NGOs before Parliamentary and Presidential elections", - "values": [ - "4 - General action" - ] - }, - { - "text": "That further measures be adopted and resources be allocated to effectively support the implementation of the 2011 Gender-Based Violence Act so as to better address, prevent and punish episodes of discrimination and violence including domestic violence against women ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Continue and enhance its efforts towards the full implementation of the Convention against Torture and Other Cruel, Inhuman or Degrading Treatment or Punishment and the International Convention on the Protection of the Rights of All Migrant Workers and the Members of their Families", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Give due consideration to becoming a signatory to OP-CRC-AC", - "values": [ - "3 - Considering action" - ] - }, - { - "text": "Ensure that effective and prompt investigations are carried out into all allegations of domestic violence and female genital mutilation, and that those responsible are brought to justice", - "values": [ - "4 - General action" - ] - }, - { - "text": "Comprehensive training on positive discipline to teachers ", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Rectify possible shortcomings in the registration procedure for all newborn children.", - "values": [ - "4 - General action" - ] - }, - { - "text": "Ensure that vulnerable groups, especially women and children in rural areas, have access to quality health care services", - "values": [ - "4 - General action" - ] - }, - { - "text": "Ensure that national and regional laws and policies do not discriminate against any individuals in society, including lesbian, gay, bisexual, transgender and intersex persons, and are in line with its international obligations, such as the International Covenant on Civil and Political Rights and the Universal Declaration of Human Rights", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Revise Presidential Decrees Nos. 16 and 739, the Criminal Code, as well as the Organic Act on Communication to bring them into line with international human rights norms", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Continue to ensure that adequate human and financial resources are allocated to implement laws and policies that address inequality between men and women", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Endorse the final outcome document approved during the Durban Review Conference, in view of its unanimous adoption.", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Release immediately all political prisoners and ensure their full rehabilitation", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Take measures to prevent minors from disappearing from reception centres by identifying and ensuring the protection of children at risk of being trafficked ", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Guarantee to LGBTI persons the full enjoyment under equal conditions of their human rights, through the abolishment of the norms that criminalize and stigmatize them, and the investigation and sanction of cases of violence or discrimination motivated by sexual orientation or gender identity", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Consider requesting the international community all necessary aid and assistance that will allow it to better fulfill its international obligations in the domain of human rights", - "values": [ - "3 - Considering action" - ] - }, - { - "text": "Continue its efforts to take legislative measures for the protection and promotion of the rights of the child, by expediting the ratification process of the Optional Protocol to the Convention on the Rights of the Child on the involvement of children in armed conflict and the Optional Protocol to the Convention on the Rights of the Child on the sale of children, child prostitution and child pornography", - "values": [ - "4 - General action" - ] - }, - { - "text": "Develop and implement effective policies to address the crisis in the health sector and shortages of food, and make those policies publicly known", - "values": [ - "4 - General action" - ] - }, - { - "text": "Allocate sufficient funds for the implementation of the State Programme and establish training and awareness-raising projects for law enforcement officials dealing with victims of trafficking.", - "values": [ - "4 - General action" - ] - }, - { - "text": "Continue the current efforts to increase health-care expenditures and ensure universal access to health and adequate training of health personnel ", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Continue its efforts to end discrimination on the grounds of religion, race or gender in law and practice ", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Provide all appropriate human and material resources to implement the National Action Plan that the Armenian Government adopted in February 2014 in order to achieve the rights of the vulnerable groups in the specified areas in the mentioned plan", - "values": [ - "4 - General action" - ] - }, - { - "text": "Release bloggers and activists currently detained under the Emergency Law and cease its arrests and detentions of political activists", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Ratify the Rome Statute of the International Criminal Court.", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Cooperate fully with the Special Rapporteur on the situation of human rights in Eritrea ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Strengthen instruments to protect human rights which could positively improve social, economic and cultural rights ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Bearing in mind the accusations of war crimes and crimes against humanity, incorporate the Rome Statute into the internal legislation as soon as possible. ", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Intensify all efforts to respect and uphold freedom of expression, assembly, and religion and belief, and to prevent discrimination on any grounds including sexual orientation and gender identity", - "values": [ - "4 - General action" - ] - }, - { - "text": "Incorporate climate change considerations into the implementation of the National Human Rights Action Plan", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Intensify efforts to eradicate all forms of violence against children", - "values": [ - "4 - General action" - ] - }, - { - "text": "Efforts will be continued to find appropriate solutions for persons who are illegal residents and to grant Kuwaiti nationality to those entitled to it.", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Take measures to strengthen the national human rights institutional framework, in particular by allocating the necessary financial and human resources to ensure effective implementation of the mandates of various human rights mechanisms already established", - "values": [ - "4 - General action" - ] - }, - { - "text": "Inform the suspects of their rights and obligations in a timely manner in accordance with the law, as well as to actively create conditions for lawyers to get involved in a lawsuit from the stage of criminal investigation", - "values": [ - "4 - General action" - ] - }, - { - "text": "Continue to develop its international, regional and bilateral efforts in the field of human rights ", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Intensify youth programs and create more employment opportunities for youths", - "values": [ - "4 - General action" - ] - }, - { - "text": "Increase measures to combat discrimination in all forms", - "values": [ - "4 - General action" - ] - }, - { - "text": "Create a conducive environment for independent civil society to conduct civic and voter education, monitor elections and organize election debates, by lifting all undue restrictions on activities and funding of NGOs ", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Prevent extrajudicial killings by members of the military, including the Presidential guard, and bring to justice those members of the military responsible for extrajudicial killings.", - "values": [ - "4 - General action" - ] - }, - { - "text": "Redouble its efforts to fight racial discrimination, including through support to relevant NGOs ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Take heed of the concerns expressed by relevant Treaty Bodies, including on the right to life administration of justice, and gender equality, and fully implement the provisions of the respective treaties", - "values": [ - "4 - General action" - ] - }, - { - "text": "Prevent, investigate and prosecute sexual and gender violence against all women, including women with disabilities ", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Finalize the national plan of action for children and adolescents and establish a pertinent monitoring mechanism for its implementation", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Further develop specific measures and rehabilitation programmes directed at the long-term reintegration of victims of trafficking ", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Strengthen the existing measures to combat child trafficking, forced labour, begging and sexual exploitations of children, including migrant children ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Sign and ratify ICMW ", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Continue its efforts in advancing its Constitutional Review process including constitutional issues affecting the Maori people ", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Lift the state of emergency and to take the measures necessary to reestablish a constitutional order complying with the rule of law, before the date indicated recently by the Government", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Incorporate the Guiding Principles on Business and Human Rights into the National Human Rights Plan in order to grant adequate protection of workers", - "values": [ - "4 - General action" - ] - }, - { - "text": "Consider the possibility of establishing a national human rights institution in conformity with the Paris Principles.", - "values": [ - "3 - Considering action" - ] - }, - { - "text": "Fulfil its obligations under international human rights law and ensure the protection of all minorities and repeal any laws or reforms that explicitly or implicitly discriminate on any grounds, including sexual orientation, gender identity and gender expression ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Develop human rights indicators as an instrument that allows for a more precise and coherent evaluation of national human rights policies", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Reconfirms its commitment to protecting the rights of all persons regardless of their sexual orientation or gender identity in anti-discrimination and equal opportunity legislation and bodies ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Accede to the international treaties on human rights and ratify ICPPED", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Adopt a comprehensive law against discrimination containing provisions that specifically prohibit racism and racial discrimination, qualify as a crime punishable by law, the dissemination of ideas based on racial supremacy or inferiority, and prohibit organizations that promote or incite racial discrimination ", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Design a targeted campaign challenging patriarchal attitudes and gender stereotypes", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Accede to CEDAW", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Encourage the implementation of an inclusive social policy framework for the enjoyment of all rights, notably the rights of people in vulnerable situations, and foster the training of all law enforcement officers in order to maintain peace", - "values": [ - "4 - General action" - ] - }, - { - "text": "Take all necessary measures to ensure enjoyment of the right to the highest attainable standard of health, without discrimination on the basis of sexual orientation or gender identity", - "values": [ - "4 - General action" - ] - }, - { - "text": "Repeal legislation criminalizing abortion and ensure access to legal and safe abortion for victims of rape and incest, in cases where the life or health of a woman is at risk or when the foetus is not viable", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Continue its support for the foundations that provide services to women and children victims of abuse and violence", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Make effort to submit outstanding human rights reports to relevant bodies", - "values": [ - "4 - General action" - ] - }, - { - "text": "Ensure free access and without constraints of the NGOs to the Rohingyas in the Cox's Bazaar district ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Take additional measures for the access for migrants in an irregular situation to health-care services", - "values": [ - "4 - General action" - ] - }, - { - "text": "Give priority to addressing all forms of violence against women and girls, inter alia, by providing redress and protection services to victims of such crimes ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Ensure that all women have easy access to good quality health services, taking into account cultural differences ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Ratify the Council of Europe Convention on Preventing and Combating Violence against Women and Domestic Violence, also known as the Istanbul Convention, which it signed on 8 September 2011", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Review the Civil Code with a view to eliminating the gender-based discriminatory provisions ", - "values": [ - "3 - Considering action" - ] - }, - { - "text": "Continue making efforts to combat child labour and child marriage", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Address further the fundamental structural problem of social inequality and unequal access to opportunities and services of the poor and marginalized to enable the people to enjoy their rights as indicated in the reform programme and policies ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Continue to work towards reducing the occurrence of water-borne diseases such as cholera, and other infectious diseases", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Step up cooperation with the international community, improve its public health care system and raise its capacity in preventing and addressing large scale public health events such as Ebola outbreaks", - "values": [ - "4 - General action" - ] - }, - { - "text": "Enact a complete prohibition of all forms of torture into the 1988 Criminal Justice Act, including removals of so-called \u201cescape clauses\u201c", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Prevent and investigate the incidents of sexual violence against women and bring perpetrators to justice", - "values": [ - "4 - General action" - ] - }, - { - "text": "Stop incitement of hatred towards Armenia and Armenians at political and public levels, as well as in mass media", - "values": [ - "4 - General action" - ] - }, - { - "text": "Expedite impartial investigation and provide them with sufficient means to elucidate aggressions against, or murders of, journalists, then bring the perpetrators of those crimes to justice ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Intensify the efforts undertaken to make progress in the area of gender equality, especially with regard to the equality of women before the law, equal access to judicial processes and participation in the education system at all levels.", - "values": [ - "4 - General action" - ] - }, - { - "text": "Develop a programme on food security with a view to the realization of the universal human right to food", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Withdraw the discriminatory provisions contained in their Family Code and adopt the draft law on gender equality", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Continue to enhance its cooperation with development partners in order to improve its financial and technical capacity to implement the anti- trafficking law", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Continue the efforts directed towards the promotion of the right to education", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Incorporate international human rights treaties into national law", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Consider the possibility of ratifying the Convention against Torture and the International Convention for the Protection of All Persons from Enforced Disappearance", - "values": [ - "3 - Considering action" - ] - }, - { - "text": "Do everything in its power to improve detention conditions and to prosecute any perpetrators of ill-treatment. ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Consider access to asylum procedures for victims of trafficking ", - "values": [ - "3 - Considering action" - ] - }, - { - "text": "For the protection of the rights of persons with disabilities, the participation of all relevant organizations is vital in order to promote their rights as well as the infrastructural and psychological environment are much needed", - "values": [ - "4 - General action" - ] - }, - { - "text": "Emergency powers should not be abused or used against journalists and bloggers in their exercise of their right to freedom of expression", - "values": [ - "4 - General action" - ] - }, - { - "text": "Fully implement the Convention on the Rights of Persons with Disabilities", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Continue its efforts to improve the representation of women in politics and also to ensure the best possible equality in the labour market ", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Envisage abolishing the law of July 2008 reintroducing the death penalty, so as to respect its international obligations as per the Second Optional Protocol", - "values": [ - "3 - Considering action" - ] - }, - { - "text": "Establish mechanisms to ensure that investigations of allegations of grave human rights violations are conducted in a comprehensive, independent and impartial manner to expedite sanction and redress procedures", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Frame a new Constitution and undertake a democratic, inclusive and progressive State restructuring ", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Continue to implement policies to ensure full protection of civilians, particularly children, in zones of armed conflict", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Ensure adequate resources for poverty alleviation programmes, in line with the commitments to pursue an inclusive growth", - "values": [ - "4 - General action" - ] - }, - { - "text": "Adhere and adapt its national legislation to the Rome Statute, including the incorporation of regulations to cooperate promptly and fully with the International Criminal Court", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Take measures to foster an enabling environment for civil society, including through enacting and implementing before the next UPR a law on associations to allow for the legal creation and registration of independent civil society associations and organisations", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Take necessary steps to intensify the judicial prosecution of all cases of alleged torture ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Move towards the de jure abolition of capital punishment", - "values": [ - "4 - General action" - ] - }, - { - "text": "Recommend greater investment in the education sector and improvement of the quality and coverage of Rwanda's early childhood care and education", - "values": [ - "4 - General action" - ] - }, - { - "text": "Abolish the death penalty in all cases", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Continue to create the conditions to facilitate the voluntary reparation of Ivorian refugees in accordance with the Tripartite Agreement", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Consolidate the Federal National System, including by supporting States to set up Local Preventive Mechanisms", - "values": [ - "4 - General action" - ] - }, - { - "text": "Ratify the Rome Statute of the International Criminal Court and to fully align its legislation with all the obligations under the Rome Statute including incorporating the Rome Statute definition of crimes and general principles, as well as adopting provisions enabling cooperation with the Court", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Review the legislation on minimum age for criminal responsibility ", - "values": [ - "3 - Considering action" - ] - }, - { - "text": "Focus on improving its reporting to treaty bodies ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Ensure the effective implementation of inclusive policies on the issue of gender to foster the participation of women in the economic and political life of the country, with concrete measures and an adequate timetable for compliance", - "values": [ - "4 - General action" - ] - }, - { - "text": "Aware of the fragile situation of unaccompanied foreign minors, Italy is fully committed to ensuring that these children are protected, regardless of their status.", - "values": [ - "4 - General action" - ] - }, - { - "text": "Put in place necessary mechanisms to ensure successful implementation of various strategies and legal reforms being considered to end child marriage", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Ensure that all allegations of unlawful killings, ill treatment or excessive use of force by police forces are investigated and that perpetrators are brought to justice", - "values": [ - "4 - General action" - ] - }, - { - "text": "Allocate sufficient resources to ensure the effective implementation of the torture prevention mechanism", - "values": [ - "4 - General action" - ] - }, - { - "text": "Take further concrete steps to implement the United Nations Rules for the Treatment of Women Prisoners and Non-custodial Measures for Women Offenders (the Bangkok Rules), to ensure that all women in prison receive equal access to services and that the special needs of women in prison, including of their children, are appropriately addressed", - "values": [ - "4 - General action" - ] - }, - { - "text": "Support the work of human rights defenders and other representatives of civil society, acknowledge their contribution to the advancement of human rights in the country, thoroughly and promptly investigate threats, attacks, harassment and intimidation against human rights defenders or independent journalists, and bring their perpetrators to justice in fair trials and ensure effective remedies to the victims", - "values": [ - "4 - General action" - ] - }, - { - "text": "Protect all detainees, including those in police custody, from excessive use of force", - "values": [ - "4 - General action" - ] - }, - { - "text": "Take immediate and adequate measures to ensure that the minimum age for recruitment in military forces is 18, to release underage fighters from its military forces and to facilitate contact between armed groups and the United Nations in order to demobilize and prevent the recruitment of children, particularly the practice of recruitment of children in refugee camps.", - "values": [ - "4 - General action" - ] - }, - { - "text": "Decriminalize same-sex relations", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Sign and ratify Convention No. 111 of the International Labour Organization - ILO -, concerning discrimination in respect of employment and occupation", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Consider ratifying the Second Optional Protocol to the ICCPR", - "values": [ - "3 - Considering action" - ] - }, - { - "text": "Ensure the full implementation of the recently adopted regulations referring to the Criminal Code ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Take measures to produce data adequate for combating discrimination and violence against minorities more efficiently", - "values": [ - "4 - General action" - ] - }, - { - "text": "Speed up implementation of policies and measures for promotion and protection of the basic social and economic rights, where major challenges would be disease control, illiteracy eradication, poverty reduction and food security ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Continue taking measures that favour the increase of enrolment rates in all its territory ", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Introduce alternative service for conscientious objectors", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Adopt comprehensive anti-discrimination legislation to provide protections for and to promote the rights of lesbian, gay, bisexual, transgender and intersex persons", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Legally prohibit female genital mutilation, in accordance with international standards and in line with the recommendations contained in paragraph 21 of the 2009 CEDAW report", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Guarantee that cases of persecution and threats against human rights defenders are properly investigated and prosecuted, and if need be compensate victims", - "values": [ - "4 - General action" - ] - }, - { - "text": "Continue its efforts to integrate the adult Roma population in the labour market and the Roma children and young people in the regular education system", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Implement the voluntary human rights targets approved in Human Rights Council resolution 9-12. ", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Expedite the enactment of the Freedom of Information Bill", - "values": [ - "4 - General action" - ] - }, - { - "text": "Continue to promote and protect the rights of women and children through the adoption of necessary domestic legislation ", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Make greater efforts to guarantee the access of migrants to basic services, regardless of their migratory status ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Develop a comprehensive national policy, consistent with provisions of the Convention on the Elimination of All Forms of Discrimination against Women, to guarantee effective gender equality and to combat gender violence, while providing special follow-up to cases of gender violence and studying the reasons why there are so few complaints to the authorities", - "values": [ - "4 - General action" - ] - }, - { - "text": "Actively support the promotion and implementation of the universal human right to safe drinking water and sanitation pursuant to the recommendations made by the Council in its various resolutions on the subject", - "values": [ - "4 - General action" - ] - }, - { - "text": "Halt the use of the death penalty in all circumstances and take steps towards its abolition, including ratification of the Second Optional Protocol to the International Covenant on Civil and Political Rights", - "values": [ - "3 - Considering action" - ] - }, - { - "text": "Share its experience and good practices in the area of social protection and health, particularly on programmes to control epidemics, including HIV-AIDS programs and the special attention provided to those affected, as well as when it comes to providing universal medical coverage free of charge", - "values": [ - "1 - Minimal action" - ] - }, - { - "text": "Continue providing support in the area of education, and improve quality and ensure equal opportunities in attaining this right, particularly for those children with special needs", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Revise its legislation to prohibit and sanction corporal punishment imposed on children at home and in schools and step up its efforts on raising awareness about the negative effects of this practice", - "values": [ - "3 - Considering action" - ] - }, - { - "text": "Adopt a policy of prevention and public awareness, in addition to the work done by NGOs and the Vanuatu Women's Centre ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Consider treatment of perpetrators of violence against women and other models targeting the aggressor as a complement to other measures ", - "values": [ - "3 - Considering action" - ] - }, - { - "text": "Continue its successful and productive measures to counter and eliminate threats of militant insurgents and organized crime groups", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Establish guidelines on the procedure to be followed to ensure that foreigners with no legal residency can request judicial review of the administrative expulsion orders", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Continue support for agencies such as the Directorate on Corruption and Economic Offences, and for the implementation of the National Anti-Corruption Strategy and Action Plan", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Adopt additional measures within the Action Plan to fight against forced recruitment of children aimed at the prevention, protection and social reintegration of such minors ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Ensure the rights of all girls to education by inter alia reversing a decision to ban pregnant girls from attending classes and exams", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Ratify the Convention against Torture, signed in 2000", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Adopt new provisions prohibiting also discrimination based on nationality ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Continue to implement administrative and judicial measures for the effective protection of women and girls against sexual violence and abuse and for the punishment of perpetrators", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Poverty-reduction activities will take into account the fact that inequality has grown in recent years,80 and so the resources and benefits aimed at reducing poverty will be increased and better allocated, and coverage in the fields of education, housing, culture, social security, health, employment and other factors in development will be extended, especially for people living in poverty or extreme poverty.", - "values": [ - "3 - Considering action" - ] - }, - { - "text": "Ensure compliance of legislation with its international human rights obligations, by inter alia reviewing the Cybercrime Act and the Statistics Act", - "values": [ - "4 - General action" - ] - }, - { - "text": "Take measures necessary to protect the rights of children deprived of a family environment and strengthen support to biological families to prevent out-of-home placements", - "values": [ - "4 - General action" - ] - }, - { - "text": "Continue with its efforts leading to the signing and ratifying of the main human rights treaties ", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Consider abolishing the death penalty or formalizing the current de facto moratorium", - "values": [ - "3 - Considering action" - ] - }, - { - "text": "Continue its efforts to eliminate all forms of racial discrimination, xenophobia and intolerance", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Establish permanent mechanisms to carry out investigations into cases of sexual exploitation, and provide victims with the assistance and services necessary for their rehabilitation ", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Step up its effort to combat trafficking in persons, inter alia, through the development of international cooperation with interested Governments, international organizations and non-governmental organizations", - "values": [ - "4 - General action" - ] - }, - { - "text": "Repeal the norms that limit freedom of expression and require journalists to reveal their sources, under penalty of imprisonment ", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Take measures to combat drug trafficking and arms smuggling in northern Mali ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Ratify, before the next review cycle, the Optional Protocol to the Convention on the Rights of the Child on a communications procedure", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Take appropriate measures in combating discrimination and marginalization against vulnerable groups, particularly migrants, minorities, women, children and persons with disabilities ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Establish a national human rights institution with a broad mandate and sufficient financial and human resources, in accordance with the Paris Principles", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Ensure full protection and realization of the right to freedom of expression as well as the right to peacefully assembly and association in accordance with international human rights standards", - "values": [ - "4 - General action" - ] - }, - { - "text": "Uphold its obligations to end all forms of racial discrimination in the country and protect the rights of African Americans against police brutality", - "values": [ - "4 - General action" - ] - }, - { - "text": "Request United Nations technical assistance in the preparation of national reports on the implementation of international human rights treaties ", - "values": [ - "1 - Minimal action" - ] - }, - { - "text": "Continue the implementation of the national program on access of the population to high quality medical services", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Guarantee that repatriated Afghan refugees, particularly women and girls, have adequate access to sanitation services, education, food, housing, freedom of movement and opportunities ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Grant missions sent by the International Committee of the Red Cross full access to prisons and detention centers for independent monitoring ", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Continue to improve prison conditions and the treatment of prisoners in line with human rights standards", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Make every effort to respect the dignity of human life, especially of women and children who are most vulnerable to gross abuses", - "values": [ - "4 - General action" - ] - }, - { - "text": "Consider steps to abolish the death penalty in all circumstances.", - "values": [ - "3 - Considering action" - ] - }, - { - "text": "Make the Office of Missing Persons fully operational, inter alia by appointing well-qualified independent commissioners and allocating sufficient funds", - "values": [ - "4 - General action" - ] - }, - { - "text": "Strengthen actions to combat human trafficking, with an emphasis on prevention and protection measures that address the particular vulnerability of children to trafficking", - "values": [ - "4 - General action" - ] - }, - { - "text": "Deploy all necessary efforts to ensure the full implementation of the Comprehensive Special Law for a Life Free of Violence for Women, adopted in November 2010", - "values": [ - "4 - General action" - ] - }, - { - "text": "Pursue "hate speech" offences more vigorously by not only condemning violations but also investigating, prosecuting and punishing violators in a consistent manner", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Fully align its national legislation with the Rome Statute of the International Criminal Court (ICC)", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Address effectively the issue of murders and harassment of journalists, media workers and professionals, by eliminating the prevalence of impunity and establishing effective prosecution acts", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Take into consideration the comments made by CRC with respect to the adoption of a global strategy in order to eliminate all forms of discrimination against vulnerable groups of children", - "values": [ - "3 - Considering action" - ] - }, - { - "text": "Redouble its efforts to combat corruption and promote good governance with a view to achieving substantial improvements in this regard", - "values": [ - "4 - General action" - ] - }, - { - "text": "Safeguard separation of powers and independence of jurisdictions ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Investigate allegations of forced recruitment of children and hold to account any persons found in violation of CRC and its Optional Protocol.", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Prepare the elections in accordance with democratic standards while cooperating with the international community", - "values": [ - "4 - General action" - ] - }, - { - "text": "Rescind the Public Emergency Regulations 2009 and not replace them with equivalent measures", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Enforce the ban that does not allow confessions obtained through torture or other unlawful methods to be used as evidence", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Ratify Optional Protocol to the Convention on the Rights of Persons with Disabilities ", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Consider ratifying OP-CEDAW ", - "values": [ - "3 - Considering action" - ] - }, - { - "text": "Strengthen its efforts to improve maternal health and acts to effectively balance the skewed sex-ratio among children, including by combating female foeticide ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Consider reviewing the eligibility requirements to the public welfare system, so that the basic human rights of immigrants, including the undocumented, are guaranteed, in particular access to health for women and children", - "values": [ - "3 - Considering action" - ] - }, - { - "text": "Implement consistently the legislation to combat discrimination of girls and women as well as policies ", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Take all necessary measures to establish a national human rights institution according to the Paris Principles ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Take effective steps in order to halt and prevent the frequent use of torture during the first days of police custody, in a manner which is consistent with its obligations under the Convention against Torture ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Delete all references to corporal punishment from its legislation and prohibit corporal punishment of children in all settings before the next UPR cycle", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Play an active role to ensure inclusive and legitimate democracy in Zanzibar by supporting a reconciliation process in Zanzibar that leads to a truly representative government of national unity, as required by the Constitution of Zanzibar", - "values": [ - "4 - General action" - ] - }, - { - "text": "Work for the amelioration of the situation of migrants, particularly with regard to access to, and quality of, the asylum procedure, as well as the conditions in detention centres, and to ensure that full respect for human rights of all migrants and protection is granted to refugees in line with Greece's international obligations", - "values": [ - "4 - General action" - ] - }, - { - "text": "Continue with the actions for the promotion and protection of the rights of indigenous peoples ", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Adopt amendments to the Marriage and Family Relations Act in line with previous efforts and add a provision that prohibits other forms of demeaning treatment of children, such as psychological violence", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Prosecute rape as a crime of war in accordance with Security Council resolutions 1325 (2005) and 1820 (2008)", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Define rape criminally based on the lack of voluntary consent ", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Strive to take the following steps in order to implement the international human rights conventions to which it is a party: - a - the adoption of a single written constitution, and - b - an amendment to the penal code to include provisions on the prohibition of the use of torture ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Continue its efforts in improving the right to education, especially education for people with special needs ", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Implement training programs in the field of human rights for the police and the forces of order, especially directed at improving the treatment of asylum-seekers and immigrants in an irregular situation and consider ratifying the ICRMW of 1990 ", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Explore and develop, in consultation with the Maori, means of addressing Maori concerns regarding the Treaty settlement process ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Ensure that the procedures governing registration of civil society organizations are transparent, non-discriminatory, expeditious and inexpensive and that they allow for the possibility of appeal, avoid requiring re-registration and are in conformity with international human rights standards", - "values": [ - "4 - General action" - ] - }, - { - "text": "Maintain its policy to promote and protect vulnerable persons and continue with its efforts to develop a national policy for the benefit of persons with disabilities ", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Circulate and implement the United Nations Rules for the Treatment of Women Prisoners and Non-custodial Measures for Women Offenders (the Bangkok Rules), as part of its development of the correctional facility and seek appropriate assistance from OHCHR and the United Nations Office on Drugs and Crime for the implementation ", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Facilitate a standing invitation to the special procedures mandate holders of the Human Rights Council", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Strengthen its cooperation with the Treaty Bodies ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Consider the possibility of ratifying the ILO Convention 189", - "values": [ - "3 - Considering action" - ] - }, - { - "text": "Pursue the promotion of the participation of citizens in the administration of local matters", - "values": [ - "4 - General action" - ] - }, - { - "text": "Consider updating the National Plan on combating human trafficking", - "values": [ - "3 - Considering action" - ] - }, - { - "text": "Quickly create an independent monitoring body in line with the OPCAT ratification that, in addition to UNHCHR and ICRC, would allow NGOs access to prisons and contribute to preventing torture in places of detention ", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Explore the possibility of seeking the accreditation of the High Council for Human Rights as Iran's NHRI through the International Coordinating Committee for NHRIs", - "values": [ - "3 - Considering action" - ] - }, - { - "text": "Positively consider acceding to the Convention on the Status of Stateless Persons and the Convention on the Reduction of Statelessness", - "values": [ - "3 - Considering action" - ] - }, - { - "text": "Strengthen the mandate of the Human Rights Commissioner, safeguarding its full independence", - "values": [ - "4 - General action" - ] - }, - { - "text": "End the occupation of all Palestinian and Arab territories occupied, including Jerusalem and withdraw from all the territories since 5 June 1967.", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Strengthen the investigation capacity, independence and legal framework of the Human Rights and Public Administration Commission in accordance with the Paris Principles, with a view to obtain its accreditation by the ICC", - "values": [ - "4 - General action" - ] - }, - { - "text": "Take concrete measures to deliver on its international development commitments ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Enforce legislation on equality and non-discrimination and adopt measures to combat Islamophobia.", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Take effective measures without delay to uphold the total prohibition against torture, in accordance with its international obligations under the Convention against Torture (CAT) ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Continue efforts to strengthen the quality of, and access to, education and make basic education free for all, especially in rural areas ", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Take further measures to ensure sufficient data on the prevalence of the worst forms of child labour in the country and particularly with regard to child trafficking ", - "values": [ - "4 - General action" - ] - }, - { - "text": "End the practice of arbitrary detention, release all political prisoners with immediate effect and implement the recommendations issued by the Working Group on Arbitrary Detention, including in opinion No. 26/2014", - "values": [ - "4 - General action" - ] - }, - { - "text": "Withdraw its reservations to CEDAW ", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Guarantee that all detainees, regardless of their crimes, are held in facilities with decent standard and treatment", - "values": [ - "4 - General action" - ] - }, - { - "text": "Continue implementing legislation prohibiting all forms of discrimination ", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Continue its efforts to improve the health-care system", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Intensify its efforts to combat human trafficking.", - "values": [ - "4 - General action" - ] - }, - { - "text": "Promptly ratify the ICESCR", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Consider strengthening the capacity of the ministries responsible for developing a sustainable mining strategy ", - "values": [ - "3 - Considering action" - ] - }, - { - "text": "Take steps to remove the guardianship system, when it results in a limitation of the full exercise and enjoyment of the rights and freedom of women", - "values": [ - "4 - General action" - ] - }, - { - "text": "Take measures to recognize and protect the rights of sexual and gender minorities and that the law prohibiting same-sex marriages be abrogated", - "values": [ - "4 - General action" - ] - }, - { - "text": "In light of the upcoming elections, implement electoral laws in line with applicable international standards of the OSCE Organization for Democratic Institutions and Human Rights recommendations, and recommendations of the Commonwealth of Independent States Election Observation Mission ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Implement the National System for Comprehensive Protection and Advancement of Children and Adolescents, with attention to human trafficking and sexual and reproductive health. Pass legislation to protect the rights of unregistered children and remove obstacles to child registration", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Implement the recommendations of the Commission of Inquiry on Voting Patterns and Electoral Violence", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Improve the systems of identification of potential targets and vulnerable communities, enhance surveillance and implement protection measures to address hate crimes", - "values": [ - "4 - General action" - ] - }, - { - "text": "Continue efforts to combat violence against women while promoting gender equality, including carrying out awareness-raising programmes to raise the consciousness of public opinion", - "values": [ - "4 - General action" - ] - }, - { - "text": "Make further efforts to ensure respect for the right to freedom of opinion and expression", - "values": [ - "4 - General action" - ] - }, - { - "text": "Continue action to increase representation of women in elected and decision-making positions ", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Provide protection for the family as the natural and fundamental unit of society", - "values": [ - "4 - General action" - ] - }, - { - "text": "Guarantee equal treatment and non discrimination of women also with regard to areas concerning personal status, particularly, adoption, marriage, divorce and inheritance according to international human rights standards", - "values": [ - "4 - General action" - ] - }, - { - "text": "Ensure the representation of women in the state elective and administrative structures by establishing a minimum quota for women", - "values": [ - "4 - General action" - ] - }, - { - "text": "Take concrete and immediate legislative measures to ensure the free, informed and safe participation of citizens in the electoral process in keeping with its Constitution and the Principles and Guidelines Governing Democratic Elections of the Southern African Development Community", - "values": [ - "4 - General action" - ] - }, - { - "text": "Continue the implementation of the national strategy to encourage women to stand for elections and elected positions ", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Take steps to ensure that full respect for the freedom of expression, including on the Internet, is implemented in current preparations for media law reform.", - "values": [ - "4 - General action" - ] - }, - { - "text": "Review and possibly amend media legislation, in particular the 2009 Media Law, in order to lift undue restrictions on journalists ", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Continue efforts to accelerate the pace of implementation of the National Plan of Action and the promotion of development, and support economic and social rights in all parts of the country", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Systematically and continuously integrate a gender perspective in the follow-up process to the review.", - "values": [ - "4 - General action" - ] - }, - { - "text": "Continue to promote efforts to fight FGM", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Criminalize marital rape and domestic violence and sufficiently staff and equip gender desks in police stations to ensure the proper reporting and investigation of incidences of violence", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Increase efforts to strengthen human rights education in the country", - "values": [ - "4 - General action" - ] - }, - { - "text": "Share with the international community their good practices in matters of access to health, particularly the advantages of the teleprimary care system", - "values": [ - "1 - Minimal action" - ] - }, - { - "text": "Consider enacting specific legislation which prohibits discrimination against certain groups of children, particularly girls, children with disabilities and children living with HIV/AIDS", - "values": [ - "3 - Considering action" - ] - }, - { - "text": "Review national legislation to ensure that all persons under 18 have the protections accorded by the Convention on the Rights of the Child, including clarifying the definition of the child ", - "values": [ - "3 - Considering action" - ] - }, - { - "text": "Take all necessary measures so that the Truth and Reconciliation Commission can work efficiently, in particular by ensuring that it has the full cooperation of the authorities at all levels, and the necessary financial resources to carry out its mandate ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Intensify measures to reduce chronic malnutrition of children", - "values": [ - "4 - General action" - ] - }, - { - "text": "Further increase its efforts to ensure access to education and health care to all including people with disabilities ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Take measures to ensure the protection of the rights of victims of domestic violence and spousal rape ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Include provisions in domestic legislation to define discrimination against women and to eliminate all discrimination related to the possession, sharing, ownership and inheritance of land.", - "values": [ - "4 - General action" - ] - }, - { - "text": "Continue monitoring and assessing closely the implementation of the Master Plan for the Administration of Justice, and the Strategic Plan for Development of Justice Process in the Southern Border Provinces of Thailand", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Ratify the Optional Protocol to the International Covenant on Economic, Social and Cultural Rights, the International Convention on the Protection of the Rights of All Migrant Workers and Members of Their Families, and the Convention on the Rights of Persons with Disabilities", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Consider ratifying the International Convention on the Protection of the Rights of All Migrant Workers and Members of Their Families", - "values": [ - "3 - Considering action" - ] - }, - { - "text": "Continue measures for the implementation of effective migration policies ", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Continue to follow up on the requests by a number of Special Procedures Mandate Holders to visit the country", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Continue efforts in implementing and enforcing the national strategy to end violence against children for the period of 2016-2020", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Strengthen promotional policies for women", - "values": [ - "4 - General action" - ] - }, - { - "text": "Put an end to the trials of civilians by military tribunals", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Focus on refugees from Bhutan in camps in eastern Nepal wishing to return to Bhutan and in particular, at this juncture, on addressing those cases with compelling humanitarian concerns ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Implement and enforce provisions on freedom of religious worship set out in the Constitution and international human rights treaties to which it is a party ", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Establish a moratorium on executions with a view to abolishing the death penalty and supporting the United Nations General Assembly resolution on the moratorium on the use of the death penalty ", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Review the admission regulations for foreigners to its territory", - "values": [ - "3 - Considering action" - ] - }, - { - "text": "Take steps to bring about changes in attitudes with a view to eliminating patriarchal attitudes and stereotypes regarding the roles of women and men in the family and society, including through awareness-raising and public education campaigns ", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Ratify the Optional Protocol to the Convention on the Rights of the Child on the involvement of children in armed conflict and step up efforts to protect children and prevent their recruitment into the armed forces or armed groups and reintegrate them into civilian life in line with the Paris Commitments to protect children from unlawful recruitment or use by armed forces or armed groups and the Principles and Guidelines on Children Associated with Armed Forces or Armed Groups (the Paris Principles)", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Ratify the Optional Protocol to the Rights of the Child on a communications procedure ", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "In accordance with the Action Plan for Children's Rights (2013-2017), apply legal and administrative measures to effectively prevent early marriages", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Redouble its efforts to reintegrate former combatants ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Ensure that same-sex partners are provided with equal rights and responsibilities as opposite-sex partners.", - "values": [ - "4 - General action" - ] - }, - { - "text": "Consider acceding to OP-CEDAW and OP-CAT", - "values": [ - "3 - Considering action" - ] - }, - { - "text": "Eliminate all forms of discrimination against the Roma, migrants and asylum-seekers and ensure equal opportunities for the enjoyment of their economic, social and cultural rights ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Enable migrants and refugees to benefit from the pilot project to fight HIV-AIDS.", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Revise the minimum required length of legal residence for migrants to access a disability or elderly pension and for their children to benefit from the program of universal child allowance", - "values": [ - "3 - Considering action" - ] - }, - { - "text": "Ensure the safety of human rights defenders and journalists, as well as their human rights, particularly freedom of expression and the press, and undertake swift and transparent investigation in response to the reports of intimidation, reprisal, threats and violence", - "values": [ - "4 - General action" - ] - }, - { - "text": "Continue its efforts to combat terrorism", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Establish a national human rights public body in conformity with the Paris Principles, with the assistance of the international community if necessary ", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Invite the Special Rapporteur on violence against women to visit the country ", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Cooperate more closely with United Nations special procedures and treaty bodies in order to shorten the delay in presenting reports and implementing their recommendations", - "values": [ - "4 - General action" - ] - }, - { - "text": "Continue the promotion of education in the field of human rights and dissemination of knowledge among the public about the international human rights standards", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Continue to increase public awareness of the harm of narcotic drugs", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Develop and implement a strategy to address the root causes of children living in the street, define preventive and protective measures and ensure that street children attend school and provide them with health-care services, shelter and food ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Intensify efforts to make primary education compulsory, free of all costs and accessible to all children, with the implementation of additional measures to ensure the right to education for children from ethnic minorities", - "values": [ - "4 - General action" - ] - }, - { - "text": "Ensure that the Legislative Assembly adopts Law 14.352 on the autonomous development of indigenous peoples", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Expedite the enactment of the drafted Marriage and Divorce Bill", - "values": [ - "4 - General action" - ] - }, - { - "text": "Strengthen efforts to make effective the Constitutional Reform already under way", - "values": [ - "4 - General action" - ] - }, - { - "text": "Continue the implementation of the National Initiative on Human Development Program and extend allocated human and financial resources ", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Continue to evaluate the possibility of future accession to other international human rights conventions that it is not yet party to, such as the ICRMW and the Optional Protocol to the Convention against Torture and Other Cruel, Inhuman or Degrading Treatment or Punishment", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Comply with the recommendation of the Committee against Torture to repeal the provision of Law No. 19.992 that establishes confidentiality for 50 years of information concerning the practice of torture during the dictatorship ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Develop further the National Policy of Primary Attention and the National Education Plan 2014-2024", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Enhance programs and initiatives to broaden health care coverage of mothers and children", - "values": [ - "4 - General action" - ] - }, - { - "text": "Take legislative measures to prohibit all forms of corporal punishment of children in all settings", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Consider ratifying the ICRMW", - "values": [ - "3 - Considering action" - ] - }, - { - "text": "Continue to conduct broad awareness-raising campaigns to combat negative attitudes against vulnerable groups as well as to react to racist statements or actions", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Continue its policy aiming at incorporating women's issues in its comprehensive development plans. enhance healthcare services for women, increase their access to credit, promote rural women and enhance women's access to education.", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Consider the possibility of alternatives to prison sentencing, especially for boys, girls and adolescents", - "values": [ - "3 - Considering action" - ] - }, - { - "text": "Raise the minimum age for marriage to 18 for boys and girls, in accordance with the joint general recommendation No. 31 of the Committee on the Elimination of Discrimination against Women/general comment No. 18 of the Committee on the Rights of the Child (2014) on harmful practices ", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Continue to take legislative and administrative measures to improve the rights of BATWAS people", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Continue empowering Bahraini women in the economic, political and social spheres", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Continue to support developing countries in the fight against poverty through its development assistance ", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Further strengthen its efforts in the fight against impunity, particularly in the context of the tragic events in Conakry on 28 September 2009", - "values": [ - "4 - General action" - ] - }, - { - "text": "Withdrawal of Israel from the Gaza strip, East Jerusalem and the West Bank, these are occupied territories of the State of Palestine that have been recognised as such by 138 States on 29 November last year by the General Assembly", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Take further necessary measures and accede to The Hague Convention on Protection of Children and Cooperation in respect of Intercountry Adoption, as previously recommended", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Intensify its efforts of awareness-raising and education with regard to the respect of rights of women, in particular in areas where discriminatory practices prevail ", - "values": [ - "4 - General action" - ] - }, - { - "text": "[Abolishing the prison sentence for press-related offences] In particular those defined as \u201cinsult\u201c, \u201ccontempt\u201c or \u201cdefamation\u201c", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Consider adopting a more targeted programme to address the reported high suicide rate, especially among the youth, through, inter alia, the revitalised National Mental Health Plan", - "values": [ - "3 - Considering action" - ] - }, - { - "text": "Ratify CAT and the Optional Protocol thereto and bring the definition of torture in line with the international standards in order to criminalize such treatment ", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Strengthen international and regional cooperation in the protection and promotion of human rights", - "values": [ - "4 - General action" - ] - }, - { - "text": "Carry out efforts to repeal the application of the death penalty ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Establish an institutional mechanism to counter racial discrimination and re-activate institutions which have ceased to be operational, particularly the Inter-departmental Working Group against xenophobia and ethnic and racial intolerance", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Continue efforts to ensure better living conditions in detention ", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Promote gender equality in relation to bridging the wage gap, especially for women belonging to religious and ethnic minorities", - "values": [ - "4 - General action" - ] - }, - { - "text": "Ensure that the right to participate in public and political life as well as the freedom of the press are not submitted to undue limitations", - "values": [ - "4 - General action" - ] - }, - { - "text": "Intensify its efforts, at national level and vis-à-vis the different ad-hoc international bodies, to reinforce measures aimed at fighting the use of children in sexual tourism and child pornography", - "values": [ - "4 - General action" - ] - }, - { - "text": "Provide for plurality and diversity of the media as a fundamental component of the right to information and ensure that journalists can perform their legitimate duties free from any unjustified prosecution ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Adhere to the following international instruments: the Optional Protocol to the International Covenant on Economic, Social and Cultural Rights, and the Optional Protocol to CEDAW", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Take all necessary measures, including to ensure the full operationalization of the Zimbabwe Gender Commission, without delay, to ensure that women are not subjected to violence, including sexual violence", - "values": [ - "4 - General action" - ] - }, - { - "text": "Ratify the OP-CAT, the ICERD and the Optional Protocols of the ICCPR", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Strengthen the rule of law by depoliticizing the judiciary and law enforcement and strengthening investigations into corruption and human rights violations and abuses", - "values": [ - "4 - General action" - ] - }, - { - "text": "Share its experience with other developing countries in the area of poverty eradication, in particular, urban poverty", - "values": [ - "1 - Minimal action" - ] - }, - { - "text": "Make continued efforts for the sustainable development of the health sector so as to ensure provision of high-quality medical services to all citizens", - "values": [ - "4 - General action" - ] - }, - { - "text": "Take the necessary measures to guarantee the independence and the efficient functioning of the judicial system.", - "values": [ - "4 - General action" - ] - }, - { - "text": "Implement a protection policy for human rights defenders, in coordination with civil society", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Take steps to establish an independent national human rights institution in keeping with the Paris Principles", - "values": [ - "4 - General action" - ] - }, - { - "text": "Implement the Supreme Court's decision without undue delay and in accordance with the primacy of the human rights of those detained, as guaranteed under the Constitution of Papua New Guinea", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Take concerted steps to build a strong and independent judiciary ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Increase efforts to effectively prevent trafficking in human beings for purposes of sexual exploitation and forced labour, including child prostitution ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Continue efforts to achieve universal primary education in line with the vision of the National Plan of "Education for All" ", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Expand opportunities for training and awareness-raising in the area of human rights for members of the security forces", - "values": [ - "4 - General action" - ] - }, - { - "text": "Take steps to harmonize her nationality laws in order to provide women with the right to pass on their rights of nationality to children born abroad, on an equal basis with men", - "values": [ - "4 - General action" - ] - }, - { - "text": "Ratify the 1951 Convention relating to the Status of Refugees ", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Take further steps in order to encourage women\u2019s access to work and eliminate the gender pay gap", - "values": [ - "4 - General action" - ] - }, - { - "text": "Continue its efforts, in cooperation with all relevant stakeholders, to prevent the sale of children, child prostitution and child pornography", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Continue strengthening the legislative framework on human rights", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Continue its efforts to combat the trafficking of women and children in law and in practice, and take adequate measures to combat the phenomenon by providing comprehensive information and data on trafficking in women and girls, as recommended by the Committee on the Elimination of Discrimination against Women ", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Ensure the rigorous implementation of the anti-discrimination legislation in order to ensure the respect of the rights of all Bolivian citizens", - "values": [ - "4 - General action" - ] - }, - { - "text": "Consider developing national human rights indicators as an instrument that allows for a more precise and coherent evaluation of the effective implementation of human rights", - "values": [ - "3 - Considering action" - ] - }, - { - "text": "Continue to take effective measures to address the serious social problem of rape and to reinforce its domestic legislation concerning domestic violence against women.", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Swiftly review and pass the anti-corruption law, which would include tough penalties for government corruption and would subject public officials to financial disclosures ", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Withdraw the reservations to CEDAW", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Further address overcrowding in prisons and ensure that minimum standards are met ", - "values": [ - "4 - General action" - ] - }, - { - "text": "In the area of persons with different sexual orientation, implementation of a national system to guarantee equality and non-discrimination", - "values": [ - "4 - General action" - ] - }, - { - "text": "Ratify the Convention on the Rights of Persons with Disabilities, the Optional Protocol to the Convention on the Rights of the Child on the sale of children, child prostitution and child pornography, as a matter of priority", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Continue to carry out the policy on the protection and promotion of human rights of vulnerable groups, including children, women, persons with disabilities, and elderly persons ", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Improved transparency of the clemency process in death penalty cases by making public the reasons behind decisions and providing a timetable for hearings", - "values": [ - "4 - General action" - ] - }, - { - "text": "Review national legislation to ensure that children are afforded the necessary protection in the juvenile justice system", - "values": [ - "3 - Considering action" - ] - }, - { - "text": "Intensify measures aiming at realization of the rights of the child and prevention of violence against children ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Finalize the child protection protocol and establish the "Approved Schools" for juveniles as provided for by Government in the Juvenile Act ", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Intensify in practice sanctions in cases of domestic violence, bridekidnapping, forced marriage, polygamy and discrimination against women due to sexual orientation, as well as promote mechanisms of protection that guarantee the rights of victims of domestic violence ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Take all necessary measures to end restrictions on the rights to freedom of expression and peaceful assembly.", - "values": [ - "4 - General action" - ] - }, - { - "text": "Continue to work to end intolerance and social discrimination against Roma and, in this regard, ensure that police and local authorities are trained to respond appropriately to allegations of crimes involving Roma and avoid inappropriate ethnic profiling", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Guarantee the full independence of the judiciary system, in accordance with relevant international standards", - "values": [ - "4 - General action" - ] - }, - { - "text": "Strengthen human and financial resources earmarked for the new services responsible for human rights within the Ministry of Justice", - "values": [ - "4 - General action" - ] - }, - { - "text": "Strengthen action to improve the situation of national minorities and immigrants, especially in the areas of education, housing and employment ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Continue efforts in the field of health in the framework of the National Health and Social Welfare Policy and Plan 2011-2021", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Strengthening the efficiency of the judicial system, while making sure the rights of everyone to a fair trial is not compromised", - "values": [ - "4 - General action" - ] - }, - { - "text": "Abolish the death penalty and declare an official moratorium on all executions as a well as repealing all provisions of national legislation that may provide for the death penalty", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Adopt additional measures for the protection of the family institution and stop propaganda on relations between same-sex couples at the state level. Bring up the issue of adoption of children by same-sex couples to the public consideration ", - "values": [ - "4 - General action" - ] - }, - { - "text": "To maintain the momentum on addressing killings of activists and media professionals", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Protect the rights of all individuals, regardless of sexual orientation, on an equal basis", - "values": [ - "4 - General action" - ] - }, - { - "text": "Consider the possibility of ratifying CED and recognize the competenceof the relevant Committee", - "values": [ - "3 - Considering action" - ] - }, - { - "text": "Encourage it to sign and ratify ICERD and OP-CRC-AC ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Take appropriate measures to reform its penal code, particularly aiming at eliminating corporal punishment ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Undertake measures to prevent high incidences of early pregnancy, including comprehensive sexuality education in schools and access to services in support of sexual health and reproductive rights", - "values": [ - "4 - General action" - ] - }, - { - "text": "Advance in the coordination of the different government departments with competencies on the issue of water ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Take appropriate legislative steps to ensure the full protection of the right to freedom of opinion and expression, in particular with regard to electronic publications and online journalism", - "values": [ - "4 - General action" - ] - }, - { - "text": "Take effective measures, in line with the Committee on the Rights of the Child, to protect all children from torture, cruel and degrading treatment, particularly from members of the military ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Ratify OP-CAT and grant the International Committee of the Red Cross (ICRC) and other independent observers immediate, full and genuine access to all detention facilities ", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Strengthen the measures to combat discrimination against women and girls, in particular, by prohibiting early or forced marriages", - "values": [ - "4 - General action" - ] - }, - { - "text": "Redouble efforts to prevent school dropout and promote school enrolment in the rural areas", - "values": [ - "4 - General action" - ] - }, - { - "text": "Take further measures to ensure children\u2019s access to education, particularly for those with disabilities and living in remote communities", - "values": [ - "4 - General action" - ] - }, - { - "text": "Implement programmes of human rights education for state bodies, especially law enforcement officials", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Develop the efforts under way to train and professionalize police officers, including the initiative of the Experimental University for Security ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Undertake further measures to improve the legislative and regulatory basis with respect to human rights and their effective implementation. ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Develop and enhance laws to protect the freedom of belief, freedom of expression and freedom of the press", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Continue dialogue among faith groups to strengthen and consolidate the spirit of co-existence", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Continue its efforts to further strengthen institutional and policy frameworks in the area of promotion and protection of human rights", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "To the current authorities, protect all human rights and respect democratic principles and the rule of law", - "values": [ - "4 - General action" - ] - }, - { - "text": "Amend articles 70 and 71 of the Penal Code with a view to not criminalizing sexual relations between consenting adults of the same sex, ensure the right to association of lesbian, gay, bisexual and transgender people (LGBTs) and facilitate the registration and activities of NGOs specialized in issues of sexual orientation and gender identity", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Ratify ILO Convention No. 182 (1999) concerning the Prohibition and Immediate Action for the Elimination of the Worst Forms of Child Labour ", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Submit regularly reports to treaty bodies.", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Establish immediate means of redress and protection of ethnic religious minorities and migrants, in particular Muslims ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Take steps to ensure an adequate political participation of ethnic minority groups as well as measures to effectively prevent the loss of land, property and resources of ethnic minority groups through, i.e. confiscation", - "values": [ - "4 - General action" - ] - }, - { - "text": "Conduct a time-bound review of legislation at state level which discriminates against women", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Repeal the restrictive amendments on the Law on Assemblies to restore full freedom of peaceful assembly, in keeping with Poland\u2019s international obligations", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Revise the draft State Protection Act so that it contains robust safeguards with respect to the full enjoyment of the right to privacy and other human rights in compliance with international human rights law", - "values": [ - "3 - Considering action" - ] - }, - { - "text": "Adopt measures in order for any health decision to depend upon the free and informed consent of the concerned disabled person", - "values": [ - "4 - General action" - ] - }, - { - "text": "Take the necessary steps to codify in national laws obligations subscribed to in the Convention on the Rights of the Child ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Put in place a national comprehensive plan for civil status registration and the right to identity, which includes awareness raising-campaigns for parents, guardians and other responsible persons, which will help to speed up the registration of births.", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Pay more attention to combating HIV/AIDS, malaria, communicable and non-communicable diseases and strengthening the pharmaceutical sector", - "values": [ - "4 - General action" - ] - }, - { - "text": "Lift the existing reservations to the Convention on the Elimination of All Forms of Discrimination against Women", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Bring the penal code in conformity with article 5 of the African Charter for the Rights and Welfare of the Child to which Burkina Faso is a party, which prohibits application of the death penalty to minors ", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Continue its efforts to consider the creation of a new national human rights institution guided by the Paris Principles ", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Take measures to prevent children from being economically exploited by adopting legislation and policies to address child labour in both the formal and informal sectors", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Continue implementing its child protection package, including the adoption of the Code on the Protection of Children and the implementation of the road map of the plan of action against the involvement of children in armed conflict", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Promote the ratification of the 1951 Convention relating to the Status of Refugees", - "values": [ - "4 - General action" - ] - }, - { - "text": "Carry out, in consultation with the communities concerned, a comprehensive assessment of the effectiveness of actions and strategies aimed at improving socio-economic conditions of indigenous peoples and if necessary correct these actions ", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Intensify its efforts to combat corruption in order to ensure the independence, effectiveness and quality of the judicial system.", - "values": [ - "4 - General action" - ] - }, - { - "text": "Ratify the CAT and its Optional Protocol", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Intensify cooperation between the Inter-Religious Dialogue Group and the National Andorra Commission for the United Nations Educational, Scientific and Cultural Organization", - "values": [ - "4 - General action" - ] - }, - { - "text": "Adopt legislation that protects children in accordance with the concluding observations and recommendation by the United Nations Committee on the Rights of the Child in 2006", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Accept the establishment of a permanent rights component in the United Nations Mission for the Referendum in Western Sahara, given the continuing need for independent and impartial monitoring of the human rights situation in the place, as previously recommended", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Ensure the effective implementation of freedom of assembly, and, in particular, guarantee that participants in peaceful assemblies, as well as civil society activists and political parties, are free from pressure and are not prosecuted for exercising this right ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Intensify its efforts regarding the process of enacting legislation on human trafficking ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Adopt and implement a national plan to combat HIV/AIDS, with an emphasis on prevention", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Immediately decriminalize homosexuality and amend legislation to promote and protect human rights for all individuals, regardless of race, ethnic origin, religion, personal beliefs and opinions, disability, age, gender and sexual orientation, in accordance with the Gambia's obligations, including as a signatory to the African Charter on Human and Peoples' rights", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Introduce human rights education and training to members of the police and prison and detention staff, and ensure their accountability for human rights violations ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Immediately implement Security Council resolution 1325 (2000) and related resolutions on women and peace and security, including by taking special measures to protect women and girls from gender-based violence and to hold perpetrators of such acts accountable ", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Revise the law regulating the right of public assembly by, inter alia, specifying the prohibited conduct and repealing excessive sanctions to ensure better compliance with international standards", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Recruit minorities in the police and establish a body tasked to carry out inquiries into cases of police brutality.", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Standing invitation to special procedures: the Government was considering with interest the possibility of extending a standing invitation to the special procedures in the near future.", - "values": [ - "3 - Considering action" - ] - }, - { - "text": "Address all outstanding issues in the field of minority rights, including on the official use of minority languages and ensuring quality education in minority languages", - "values": [ - "4 - General action" - ] - }, - { - "text": "Take measures to ensure non-discrimination in law and in practice against ethnic and religious minorities, including arbitrary detention and exclusion from higher education and government employment, as well as governmental interference in private employment against persons belonging to the Baha'i community", - "values": [ - "4 - General action" - ] - }, - { - "text": "Establish promptly national human rights institution in accordance with the Paris Principles.", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Continue its important efforts in fighting terrorism, with adequate support and understanding of the country's constraints from the international community.", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Deepen the measures to guarantee the fight against discrimination, xenophobia and racism, particularly through the investigation and effective punishment of the perpetrators of such acts", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Abolish the death penalty for all individuals considered as minors under international law", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Ratify the Convention relating to the Status of Stateless Persons [1954] and the Convention on the Reduction of Statelessness [1961]", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Increase investment in and maintain school infrastructure", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Pursue its efforts, with the assistance of OHCHR, to abide by the timeline described in item 2 of paragraph 105 of the national report relating to its reporting to treaty bodies", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Finalize the ongoing legislative reforms, particularly those related to family law, the criminal code and the criminal procedural code", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Allow and facilitate immediate, unimpeded and sustained humanitarian access to all parts of the country", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Continue its efforts to combat various types of violence against women, including domestic violence and sexual harassment", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Ensure the timely access to consular assistance under the Vienna Convention on Consular Relations of 1963", - "values": [ - "4 - General action" - ] - }, - { - "text": "Raise the minimum age of criminal responsibility to an internationally acceptable level", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Establish a national human rights institution in full conformity with the Paris Principles, which coordinates and articulates the work of different specialized bodies with competences over the extensive set of human rights", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Continue to implement plans which offer free and compulsory education in line with MDGs ", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Continue the work accomplished to prevent gender-based discrimination, promote equality between women and men and thus improve women\u2019s condition, particularly in working life", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Use all possible means to improve prison conditions, especially for minors and implement legislation to minimize detention time prior to trial", - "values": [ - "4 - General action" - ] - }, - { - "text": "Ensure that relevant authorities, particularly at the local and district levels, are aware of their duty to protect individuals' right to freedom of religion ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Continue to allocate budgetary priority to public education", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Ensure the rights of minorities, particularly with regard to their full and complete political representation", - "values": [ - "4 - General action" - ] - }, - { - "text": "Continue strengthening the legislation and measures for an appropriate exercise of freedom of expression, and ensure that the civil defamation law is not used to avoid political criticism", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Abolish the death penalty in all cases and circumstances", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Continue the efforts undertaken to strengthen the role of the national human rights institutions, in particular the Government Commission for Human Rights", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Ensure the effective implementation of the new National Strategy for the Rights of Children 2014-2020", - "values": [ - "4 - General action" - ] - }, - { - "text": "Introduce and implement further programs and policies focusing on the integration of migrants and national minorities into the Greek society ", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "The Government would like to pledge to the people of Somalia and to the international community at large that when Somalia re-emerges as a full-fledged and functional state, it will rebuild on a solid foundation of human rights and IHL.", - "values": [ - "4 - General action" - ] - }, - { - "text": "Continue to engage with OHCHR ", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Undertake efforts to integrate in the Constitution, or other national legislation, the principle of equality between men and women and related regulations ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Strengthen mechanisms and policies to fight trafficking in persons within the context of the national strategy and reinforce measures to address the needs of victims of this crime, including return, security, assistance and counselling. Also continue to carry out diplomatic efforts and technical cooperation initiatives with the aim of establishing or strengthening bilateral and regional mechanisms that address this transnational problem. ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Submit overdue reports to the relevant treaty bodies", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Encourage the adoption of alternatives to the deprivation of liberty, and of agreements allowing sentences to be served in countries of origin and the possibility of reintegration of foreign prisoners", - "values": [ - "4 - General action" - ] - }, - { - "text": "Fully cooperate with international mechanisms of accountability, including the International Criminal Court, in order to ensure that those responsible for international crimes committed in Darfur are brought to justice ", - "values": [ - "4 - General action" - ] - }, - { - "text": "End the widespread practice of arresting participants at opposition rallies and pressing charges against them ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Continue with its policy and its good practice to provide assistance and protect the rights of the many Palestinian refugees in the country ", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Amend the Prime Minister's Decree on Religious Practice (Decree 92) to ease the process for religious groups to register their places of worship and allow new religious groups to obtain official recognition", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Remove all obstacles that obstruct effective access to justice, considering the acknowledgement of alarming rates of violence against women, and adopt appropriate measures to increase women's basic legal training and knowledge of their rights, including the right to obtain legal reparation though the courts", - "values": [ - "4 - General action" - ] - }, - { - "text": "Make further efforts to ratify and fully align its national legislation with the Rome Statute of the International Criminal Court", - "values": [ - "4 - General action" - ] - }, - { - "text": "Continue efforts to support the role of regional committees of the National Human Rights Council, especially in the southern provinces", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Take further measures, including legislative, in order to expand rights and opportunities of women and promote gender equality ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Take measures to guarantee that all outstanding allegations of crimes are investigated and to ensure that perpetrators of human rights violations are brought to justice in proceedings which meet with international standards", - "values": [ - "4 - General action" - ] - }, - { - "text": "Formally abolish the death penalty ", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Continue to strengthen its policies and laws against domestic violence ", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Strengthen the labour inspectorate", - "values": [ - "4 - General action" - ] - }, - { - "text": "Continue its efforts to ensure the success of transitional justice and national reconciliation in order to promote and protect human rights", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Take prompt action to implement the Family Protection Act.", - "values": [ - "4 - General action" - ] - }, - { - "text": "Take steps to ensure that national legislation on domestic violence provides appropriate penalties for perpetrators and legal and pyschosocial support to victims, including children", - "values": [ - "4 - General action" - ] - }, - { - "text": "Consider promptly joining the International Labour Organization", - "values": [ - "3 - Considering action" - ] - }, - { - "text": "Sign and ratify CPED", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Put an end to overcrowding and bad prison conditions, by building new prison facilities and restricting the use of pretrial detention", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Continue measures aimed at strengthening the capacity of national human rights protection mechanisms", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Ensure that the current budget cuts do not result in stifling the activities of human rights bodies", - "values": [ - "4 - General action" - ] - }, - { - "text": "Increase in the number of prisons countrywide ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Devote attention to transitional justice and national reconciliation as an approach used to contain disputes and prevent their recurrence ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Step up its efforts in human rights awareness programmes, including releasing publications related to human rights with a view to familiarising the general public with those international human rights standards and instruments to which the Democratic People's Republic of Korea is a party", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Take effective measures to strengthen the independence of the judiciary. ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Implement effectively the United Nations Declaration on the Rights of Indigenous Peoples ", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Implement fully the Supreme Court decision regarding sexual and gender minorities", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Continue its efforts to better assist children of Roma origin to have access to quality education and therefore advance the integration of Roma", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Continue its cooperation with civil society organizations in the follow-up to this review ", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Put in place plans aimed at strengthening human development programmes in the Sultanate of Oman ", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Ensure that racist and xenophobic incidents are effectively prosecuted ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Ensure equality of all persons before the law, by including gender, sexual orientation and disability as grounds for non-discrimination in relevant constitutional or legal provisions", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Pursue the dynamics of the law on juvenile justice, the draft law to prevent and fight against human trafficking, and primary education for all ", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Strengthen trans-boundary checkpoints, and the specialized security and judicial authorities to combat human trafficking", - "values": [ - "4 - General action" - ] - }, - { - "text": "Continue to put in place public policies and programmes on human rights, including on the effective role of parliamentarians in the promotion and protection of human rights", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Work closely with humanitarian agencies to ensure their free and unimpeded access to all populations in need and that humanitarian aid is distributed transparently and reaches the most vulnerable citizens", - "values": [ - "4 - General action" - ] - }, - { - "text": "Continue fighting violence against women and girls so as to incite the majority of states to follow suit", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Fast-track the development of infrastructure in remote rural areas, with a view to ensuring the practical enjoyment of economic and social rights to benefit the people living in remote rural areas.", - "values": [ - "4 - General action" - ] - }, - { - "text": "Set up an independent body responsible for human rights", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Give due attention, in the welcome and trend-setting constitutional revision exercise, to the need to ensure maximum coherence, in conformity with international law, between the human rights obligations of Norway and its other international obligations, such as trade obligations undertaken at the level of the World Trade Organization ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Continue to strengthen its efforts to prevent sexual and gender-based violence by ensuring the provision of financial resources for the full implementation of the legal framework, including mandatory training with a gender perspective of all legal and law enforcement officials and health service personnel in order to ensure that they are able to respond effectively to all forms of violence against women", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Incorporate key human rights principles in the new constitution in line with the obligations of Thailand under international human rights law", - "values": [ - "4 - General action" - ] - }, - { - "text": "Take steps to bring labour laws and practices in line with its international obligations, including under relevant ILO Conventions", - "values": [ - "4 - General action" - ] - }, - { - "text": "Continue its efforts aimed at eliminating child labour and ensuring an education with dignity and of quality for Ecuadorian children and adolescents", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Continue implementing the National Policy on Social Protection to ensure that sustainable development in Saint Lucia is inclusive and equitable", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Promote greater societal integration of minorities within the education system through intercultural, interethnic, and interreligious dialogue", - "values": [ - "4 - General action" - ] - }, - { - "text": "Implement public education and awareness programmes on issues related to sexual orientation and gender equality and provide training to law enforcement, judicial and other relevant authorities with the same objective ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Strengthen legal mechanisms to combat gender violence including the dedication of the requisite resources ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Guarantee freedom of speech and eliminate restrictions to the free flow of information, including through the Internet, and stop arrests, prosecution and sanction of individuals for expressing views and opinions", - "values": [ - "4 - General action" - ] - }, - { - "text": "Make further efforts to improve conditions in detention facilities according to international standards, especially including developing gender-sensitive policies and programmes for women ", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Establish a national mechanism for the prevention of torture, in line with the Optional Protocol to CAT", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Urge Canada to amend its legislation on child prostitution in order to protect a child from prosecution or punishment for prostitution ", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Apply its current anti racism legislation in an effective way and take new structural measures specifically to counter discrimination ", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Exert additional efforts in the field of providing care for persons with disabilities and in establishing national mechanisms to enable them to effectively participate in public life, while considering accession to the Convention on the Rights of Persons with Disabilities ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Adopt the necessary legal measures to prohibit all forms of violence against children, including corporal punishment in all settings, particularly in the family, schools, alternative childcare and places of detention for juveniles ", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Implement measures to ensure the full enjoyment of rights by persons with disabilities, especially regarding inclusive education", - "values": [ - "4 - General action" - ] - }, - { - "text": "Continue strengthening its social policies with a view to increasing the quality of life of its people, in particular of the most needy sectors", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Proceed with the establishment of the Truth and Reconciliation Commission in full transparency and establish an independent special tribunal to examine war crimes, as recommended during the first UPR", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Speed up the process of setting up a national human rights commission, with the support of the international community", - "values": [ - "4 - General action" - ] - }, - { - "text": "Repeal criminal defamation laws in order to combat reprisals against the journalists and human rights defenders ", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Expedite its implementation of the measures to ensure equality for men and women ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Increase the opportunities for persons with disabilities to express their opinion", - "values": [ - "4 - General action" - ] - }, - { - "text": "Adopt the measures necessary to prevent cases of lynching, in particular through the strengthening of the police and justice sectors", - "values": [ - "4 - General action" - ] - }, - { - "text": "Ensure specifically that economic measures do not disproportionally impact upon the elderly ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Place special emphasis on women and children when formulating policies to protect the rights of migrant workers", - "values": [ - "4 - General action" - ] - }, - { - "text": "Continue to take measures to eradicate poverty and ensure a better access to education and health services", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Ratify the Optional Protocol of the CRPD, as well as the OP-CESCR ", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Sign and ratify the Optional Protocol to the Convention on the Elimination of All Forms of Discrimination against Women, establishing a communication mechanism in order to strengthen the tools in the fight against violence and discrimination against women", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Consider expanding the policy of affirmative action to the coloured population", - "values": [ - "3 - Considering action" - ] - }, - { - "text": "Continue efforts to modernize its birth registration system, and evaluate if more steps are needed to ensure access to universal birth registration in order to ensure the rights of children to nationality is adequately protected", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Intensify its efforts in the field of literacy programme", - "values": [ - "4 - General action" - ] - }, - { - "text": "Adopt the appropriate measures to ensure the full implementation of Article 26 of the Law no. 38/2001 on facilitation of the election of candidates belonging to the Slovenian minority, also in light of the present institutional reforms", - "values": [ - "4 - General action" - ] - }, - { - "text": "Continue strengthening the mechanisms for assistance to victims of trafficking, with special emphasis on children victims of this crime", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Become a State party to the International Convention for the Protection of the Rights of All Migrant workers and Members of Their Families ", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Consider ratifying ILO Convention 169, and take steps to implement the United Nations Declaration on the Rights of Indigenous Peoples, including through constitutional and statutory recognition of land and resource rights and effective political participation", - "values": [ - "3 - Considering action" - ] - }, - { - "text": "Repeal immediately the four recently adopted laws on the "protection of race and religion" regarding interfaith marriage, religious conversion, monogamy, and population control", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Strengthen the National Commission of Human Rights in accordance with the Paris Principles", - "values": [ - "4 - General action" - ] - }, - { - "text": "Continue to adopt measures to ensure gender equality and step up the role of women in social and political life in the country", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Take all necessary measures to return properties to the members of the Greek minority in the islands of Gokceada and Bozcaada that were expropriated ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Join the International Convention for the Protection of All Persons from Enforced Disappearance ", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Take the necessary measures to adopt and implement the Child Labour Action Plan and provide information on the results achieved", - "values": [ - "4 - General action" - ] - }, - { - "text": "Continue to cooperate with the United Nations and other international organizations to strengthen human rights and exchange its best practices with other United Nations member countries ", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Redouble efforts in all the cantons to avoid discrimination based on race, origin and sexual orientation and gender identity", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Investigate allegations of torture in the context of counter-terrorism measures, give publicity to the findings, bring perpetrators to justice and provide reparation to the victims ", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Intensify its efforts to improve the situation with respect to violence against women and girls, as well as to undertake awareness campaigns, human rights education and training programmes for members of the police and to provide greater resources to the judicial services entrusted with addressing those issues", - "values": [ - "4 - General action" - ] - }, - { - "text": "Ensure implementation of the Gender Budgeting Scheme in all states and union territories", - "values": [ - "4 - General action" - ] - }, - { - "text": "Guarantee that the civil courts' jurisdiction is applied also in cases of police persons (Carabineros) accused of violations of human rights ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Promote awareness-raising campaigns and human rights education programmes particularly directed to law enforcement officials and educators that address the problematic of sexual violence against women ", - "values": [ - "4 - General action" - ] - }, - { - "text": "The Government remains committed to doing everything in its power to shed light on the heinous crimes committed on that date.", - "values": [ - "4 - General action" - ] - }, - { - "text": "Continue, in cooperation with UNESCO and other relevant international organisations, to promote universal access to education and improve the quality of its education system", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Conduct thorough criminal investigation and prosecution of the police officers involved in the mistreatment of six Roma minors in Kosice.", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Take effective measures to guarantee people's economic and social rights, lower female unemployment rate, and improve the living conditions of the poor ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Continue efforts towards gender equality and equity", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Continue with the establishment of legal and independent bodies including the Constitutional Council", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Continue the consolidation of effective policies in the framework of the National Strategy for Childhood and Adolescence (2010-2030), enabling the participation of the whole society in the fight for recognition of the rights of boys, girls and adolescents who find themselves in a situation of extreme vulnerability.", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Consider the definitive abolition of the death penalty in its domestic legislation and its accession to the related international instrument on the matter", - "values": [ - "3 - Considering action" - ] - }, - { - "text": "Continue its efforts for the elimination of discrimination against women ", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Review the legislation and practices in accordance with ILO Convention 29 on forced labour, and extend the ILO mandate to the overall territory of Myanmar ", - "values": [ - "3 - Considering action" - ] - }, - { - "text": "Ratify the Optional Protocol to the Convention on the Rights of Persons with Disabilities", - "values": [ - "3 - Considering action" - ] - }, - { - "text": "Share its experience with other countries concerning preventive measures against affronts to human dignity and against racism as mentioned in paragraphs 110 and 111 of the national report (A-HRC-WG.6-5-MCO-1).", - "values": [ - "1 - Minimal action" - ] - }, - { - "text": "Revise Law No. 5 (2011) to bring the National Council for Civil Liberties and Human Rights of Libya into accordance with the Paris Principles", - "values": [ - "3 - Considering action" - ] - }, - { - "text": "Pass legislation implementing the Rome Statute of the International Criminal Court into domestic law", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Promptly ratify the Optional Protocol to the Convention on the Rights of the Child on the sale of children, child prostitution and child pornography", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Consider establishing a separate national human rights institution at the very earliest ", - "values": [ - "3 - Considering action" - ] - }, - { - "text": "Increase the level of its official development aid to achieve the internationally set level of 0.7 per cent of GDP", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Continue to deepen measures and plans to eradicate sexual and domestic violence, including strengthening awareness programmes to prevent this scourge", - "values": [ - "4 - General action" - ] - }, - { - "text": "Share with other countries its successes and good practices on the guiding principles of solidarity and socialism.", - "values": [ - "1 - Minimal action" - ] - }, - { - "text": "Provide for free, independent media in accordance with the Libyan Arab Jamahiriya's international obligations ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Decriminalize same-sex sexual conduct between consenting adults by reforming the penal code", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Complete the work towards the ratification of the core international human rights treaties, firstly ICCPR and ICESCR within the period of the next review", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Promote the exercise by the Roma of their economic, social and cultural rights, in particular by implementing programmes to facilitate birth registration and the issuing identity documents for this sector of the population. ", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Encourage the adoption of measures to guarantee the human rights of the lesbian, bisexual, gay, transgender and intersex population", - "values": [ - "4 - General action" - ] - }, - { - "text": "Implement the recently approved new Migrants Law and its human rights perspective on the migration issue", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Take steps to prevent child labour by formulating a strategy to eliminate the worst forms of child labour ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Continue efforts aimed at the humanization of criminal and criminal procedure legislation ", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Amend its Constitution to include sex, gender and disability as grounds for non-discrimination", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Ratify ICMW ", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Ensure adequate consultations with indigenous peoples in the formulation of policies affecting them", - "values": [ - "4 - General action" - ] - }, - { - "text": "Intensify efforts to secure support and assistance from the international community in pursuing its climate change adaptation and mitigation plans", - "values": [ - "4 - General action" - ] - }, - { - "text": "Review compliance of its national legislation with the principle of nondiscrimination, in particular with regard to women and gender identity, to adopt a comprehensive antidiscrimination legal framework specifically protecting against discrimination on these grounds, and lead long-term awareness-raising campaign on these issues among the public ", - "values": [ - "3 - Considering action" - ] - }, - { - "text": "Ensure that the issues of asylum seekers and refugees are addressed in line with the principles of the Bali Process, and Australia's other human rights and humanitarian obligations", - "values": [ - "4 - General action" - ] - }, - { - "text": "Continue its efforts in a systematic way to ensure the eradication of hunger and extreme poverty ", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Establish effective mechanisms to prohibit violence against women and girls, including traditional practices, such as FGM and continue awareness-raising campaigns to eradicate such practices", - "values": [ - "4 - General action" - ] - }, - { - "text": "Strengthen strategies so as to combat stereotypes and all forms of discrimination against women and persons with disabilities", - "values": [ - "4 - General action" - ] - }, - { - "text": "Continue to cooperate with human rights mechanisms and to reconsider their reservations to CEDAW", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Explicitly prohibit all corporal punishment of children in all settings, including in the home, and repeal the power to "correct" in the Family Code and the Civil Code", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Ease the procedure of obtaining citizenship, including by reducing the language requirement ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Ratify CRPD as soon as possible", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Take additional measures for the elimination of cruel and inhuman treatment through the training of law-enforcement officers ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Take all appropriate measures to better combat child labour and child begging ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Give priority to the ratification/accession to the American Convention on Human Rights in order to adjust its legislation to the standards of the Inter-American system of promotion and protection of human rights ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Improve the organization and management of, and service to pilgrimage to Saudi Arabia to provide convenience and guarantee for Muslims to complete their pilgrimage smoothly", - "values": [ - "4 - General action" - ] - }, - { - "text": "Consolidate and fully implement programmes for preventing and eliminating tuberculosis and engage in international cooperation in this regard", - "values": [ - "4 - General action" - ] - }, - { - "text": "Favourably consider embarking on fundamental reforms to the judiciary to ensure its independence, impartiality and transparency with a view to strengthening democracy and the rule of law in the country", - "values": [ - "3 - Considering action" - ] - }, - { - "text": "Continue awareness-raising campaigns about the rights of people with disabilities", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Grant jurisdiction to its civil authorities over the acts committed by members of armed forces when performing law enforcement functions", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Pass legislation implementing the Rome Statute of the International Criminal Court into domestic law ", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Give necessary attention to the safety of migrants and international staff deployed in the reception centres on the Greek islands", - "values": [ - "4 - General action" - ] - }, - { - "text": "Allow all religious believers to exercise their religion independently", - "values": [ - "4 - General action" - ] - }, - { - "text": "Consider the establishment of an independent police complaints mechanism.", - "values": [ - "3 - Considering action" - ] - }, - { - "text": "Continue efforts to implement the action plan 2013-2017 to fight domestic violence", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Finalize the fifth and sixth due reports to the Committee on the Elimination of Discrimination against Women, without further delay ", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Hold accountable perpetrators of harassment and violence against members of religious minority communities", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Adopt legislation to protect LGBT persons against gender-based violence and discrimination ", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Continue its efforts to promote and protect the rights of national minorities.", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Strengthen and broaden the Strategic Plan to effectively implement the prohibition of female genital mutilation, promoting a change in custom", - "values": [ - "4 - General action" - ] - }, - { - "text": "Decriminalize defamation and make the necessary amendments in this regard, in line with Inter-American and international standards ", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Pursue efforts to combat maternal mortality", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Increase enforcement of its occupational and safety laws ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Establish an inclusive social dialogue so as to achieve the goals of building up a rainbow nation where all people are free and equal in rights ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Step up its efforts to eradicate domestic violence and sexual abuse within the framework of comprehensive policies to combat gender violence and to protect children's rights ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Continue to implement concrete measures to facilitate and favour access to education and employment for indigenous peoples ", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Continue to make efforts to curb violence against women, especially with regard to the prohibition of female genital mutilation, at the national level", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Guarantee that all the Government\u2019s methods of combating the use of illegal drugs are brought into line with international standards", - "values": [ - "4 - General action" - ] - }, - { - "text": "Pursue and strengthen the financial support it is already providing for the fight against poverty in developing countries.", - "values": [ - "1 - Minimal action" - ] - }, - { - "text": "Enhance efforts in the provision of adequate housing for its people", - "values": [ - "4 - General action" - ] - }, - { - "text": "Do not detain migrants other than in exceptional cases, limit this detention to six months and bring detention conditions into line with international standards in the field of human rights ", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Derogate article 230 of the Criminal Code", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Ensure comprehensive sexuality education, with a view to preventing teen pregnancies and the spread of sexually transmitted infections, in particular HIV", - "values": [ - "4 - General action" - ] - }, - { - "text": "Consider establishing a national human rights institution in compliance with the Paris Principles.", - "values": [ - "3 - Considering action" - ] - }, - { - "text": "Make the necessary efforts to repatriate foreigners who were forcibly held in the territory of the Democratic People's Republic of Korea and provide all information to the authorities and relatives about the whereabouts of these persons", - "values": [ - "4 - General action" - ] - }, - { - "text": "Ensure proper training on human rights to members of armed forces, the police, and prison staff and court staff", - "values": [ - "4 - General action" - ] - }, - { - "text": "Continue building its democratic reform for the prosperity and well-being for the people and the nation of Myanmar", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Speed up its efforts to ensure the functioning of the Commission in accordance with the Paris Principles on national human rights institutions ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Enhance its work on human rights education and training to its people", - "values": [ - "4 - General action" - ] - }, - { - "text": "Strengthen efforts to broaden access to education, in general, and to secondary and higher education in particular", - "values": [ - "4 - General action" - ] - }, - { - "text": "Establish specific legal provisions in order to define and protect the rights and freedoms of refugees", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Establish a de jure moratorium on executions and abolish the death penalty for all crimes, and consider ratifying the Second Optional Protocol to the International Covenant on Civil and Political Rights", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Elaborate specific policies and programmes aimed at ensuring that its applicable human rights obligations are not violated in situations of armed conflict.", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Ensure that journalists, media workers as well as civil society activists are able to practice their activities freely without any fear for punishment in accordance with international standards", - "values": [ - "4 - General action" - ] - }, - { - "text": "Take action at all levels to address the interlinked root causes of preventable mortality and morbidity of children under 5 and consider applying the "Technical guidance on the application of a human rights-based approach to the implementation of policies and programmes to reduce and eliminate preventable mortality of children under 5 years of age" (A/HRC/27/31)", - "values": [ - "4 - General action" - ] - }, - { - "text": "Strengthen the measures for indigenous populations and persons of African descent against all forms of discrimination, and ensure their promotion and visibility in society ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Continue implementing its basic education strategy and enhancing educational opportunities in deprived areas in order to support education in the country.", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Further develop and share experiences and good practices regarding the treatment of prisoners, particularly, the plans aimed at turning prisons into education and human improvement centres", - "values": [ - "4 - General action" - ] - }, - { - "text": "Adopt an open, merit-based selection process when selecting national candidates for United Nations treaty body elections", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Formally establish a moratorium on the application of the death penalty as a step towards full abolition of it", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Introduce reforms to protect economic, social and cultural rights including the right to development and eradicate poverty, tackle unemployment and social inequalities", - "values": [ - "4 - General action" - ] - }, - { - "text": "Amend laws that could contradict the Convention on the Rights of the Child", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Increase budget allocation to the education sector to ensure a fully free and inclusive education for all children", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Ensure the explicit inclusion in the national legislation of the prohibition of all forms of corporal punishment of minors, whether in the home, childcare facilities, schools and education centres in general", - "values": [ - "4 - General action" - ] - }, - { - "text": "Fully implement the 2013 Constitution and, in particular, ensure operationalization of its key institutions, including the National Peace and Reconciliation Commission", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Undertake vigorous efforts to ensure effective implementation of key human rights instruments, including human rights training of law enforcement personnel, and further steps to promote gender equality ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Take concrete steps, especially in regions displaying a high prevalence, to eliminate harmful customary practices, such as FGM, prohibited by law ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Take necessary measures in order to guarantee to everyone who requests it, including those belonging to minorities, access to legal aid", - "values": [ - "4 - General action" - ] - }, - { - "text": "Establish ombudsmen federal mechanisms in compliance with the Paris Principles, ensuring their full independence from the State, and adjust those which currently exist to these principles ", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Ratify the main international human rights instruments so as to harmonize domestic legislation with international standards for human rights protection ", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Immediate implementation of recommendations of LLRC Action Plan including on accountability process, through Sri Lanka's National Plan of Action on Human Rights and other relevant mechanisms", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Strengthen the law enforcement authorities ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Take all necessary measures to guarantee the safety of human rights defenders and journalists as they carry out their tasks", - "values": [ - "4 - General action" - ] - }, - { - "text": "Continue to deepen awareness-raising measures on discrimination against asylum seekers and refugees, in particular through the investigation of cases of violence and xenophobic attacks against migrants", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Amend press law to comply with ICCPR.", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Carry out concrete and effective measures, including legislative action to ensure respect for the freedom of expression, association and the press, in conformity with international standards", - "values": [ - "4 - General action" - ] - }, - { - "text": "Provide training to security forces, prosecutors, judges and social workers to prevent discrimination based on sexual orientation and gender identity", - "values": [ - "3 - Considering action" - ] - }, - { - "text": "Consider reviewing the Sedition Act ", - "values": [ - "3 - Considering action" - ] - }, - { - "text": "With regard to Recommendations 70.36 to 70.41, which related to the abolition of corporal punishment, the delegation stated that public opinion in Guyana was not in favour of the abolition of corporal punishment. The delegation indicated that Guyana has noted these recommendations and was voluntarily committed to consult and report on the results of the consultative process. In this regard, the delegation pointed out that consultations in Guyana were on-going on a draft Education Bill which included discussion on the issue of corporal punishment. Furthermore, Guyana has tabled amendments to the Training School Act and the Juvenile Offenders Act to remove corporal punishment from juvenile detention centres, which demonstrated Guyana's commitment to protecting children from all forms of abuse. These bills will be debated in October 2010 in the National Assembly. The delegation also emphasized that the Protection of Children Act 2009, the Domestic Violence Act 1997 and the Child Care Protection Agency offered a legislative and administrative framework to protect children from abuse.", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Take measures to end discrimination based on race and ethnicity", - "values": [ - "4 - General action" - ] - }, - { - "text": "Strengthen the judiciary and police bodies for the prevention of sexual violence, in particular through increasing the number of women and their visibility in the police and the justice system", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Ratify the ICESCR as soon as possible ", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Establish a control mechanism for the police authorities with regard to signs of possible torture and ill-treatment committed by individual members", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Continue its efforts in the reduction of poverty and to envisage the sharing of best practices with interested countries", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Strengthen policies and activities that support the Roma, to achieve the objectives of the Decade of Roma Inclusion ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Recommended the decriminalization of same-sex activity between consenting adults and adoption of measures to promote tolerance in this regards, which would also facilitate more effective educational programmes for the prevention of HIV-AIDS", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Continues its endeavours in promoting and protecting the human rights of all its citizens in an inclusive manner", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Ensure that the new legislation on surveillance of communications by the intelligence service complies with international law, particularly with the principle of proportionality ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Coordinate with all donors and civil society organizations on issues of mutual concern, including improvements in prison conditions and strengthening of the health system for HIV/AIDS sufferers and other patients to promote access to quality health care for all Mozambicans ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Develop concurrently a national follow-up mechanism to ensure effective implementation of accepted recommendations by United Nations agencies and international organizations in the field of human rights", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Implement recommendations and decision of human rights protection mechanisms, including special procedures ", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Take all possible measures to ensure protection of civilians, in particular vulnerable groups such as children, women and displaced persons.", - "values": [ - "4 - General action" - ] - }, - { - "text": "Abolish the quota requirement for family reunification", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Extend an invitation to the Special Rapporteur on trafficking in persons, especially women and children ", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Continue with the progress made in the fourth generation of the National Action Plan on Human Rights at the national and local levels", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Request the international community to do its part and show its goodwill by believing in and expressing support for democratic and human rights reform in Fiji", - "values": [ - "1 - Minimal action" - ] - }, - { - "text": "Prohibit corporal punishment, especially in schools, in accordance with article 19 of the Convention on the Rights of the Child ", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Adopt additional measures in order to avoid the crime of incitement to hate and to promote the fight against discrimination and racism ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Take further action to prevent and tackle discrimination of religious minorities, also by revising the rules on registration of religious association, so that everyone can exercise their rights in an unrestricted manner", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Seek technical assistance from the Office of the High Commissioner for Human Rights and the international community aimed for better strengthening and consolidation of the national human rights framework", - "values": [ - "1 - Minimal action" - ] - }, - { - "text": "Consider taking necessary measures aimed at prohibiting all forms of corporal punishment", - "values": [ - "3 - Considering action" - ] - }, - { - "text": "Consider the possibility of ratifying OP-CAT, ICRMW, ICCPR-OP2, the Rome Statute of ICC and the Conventions on Statelessness", - "values": [ - "3 - Considering action" - ] - }, - { - "text": "Take measures to further develop the culture of human rights in order to enhance the efficiency of human rights promotion and protection ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Encourage the devolved government of Northern Ireland to increase resources and personnel available to the Historical Enquiries Team ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Bring Grenada's legislation into conformity with international law, by decriminalizing consensual same-sex relations between adults and prohibiting all forms of discrimination based on sexual orientation and gender identity", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Seek the assistance of the local office of the OHCHR to train the officials of its judiciary and the law enforcement body on human rights issues", - "values": [ - "1 - Minimal action" - ] - }, - { - "text": "Continue its efforts to strengthen the educational and health sectors and raise awareness regarding human rights issues ", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Redouble its efforts to improve living conditions in prisons and reduce overcrowding", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Accept the ad hoc jurisdiction of the International Criminal Court and ratify the Rome Statute", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Put an end to enforced expulsions in the south and ensure that compensation and relocation propositions are actually accorded to the people concerned", - "values": [ - "4 - General action" - ] - }, - { - "text": "Put emphasis on suicide prevention and support to these people and their families, taking into account the despair generated by such act", - "values": [ - "4 - General action" - ] - }, - { - "text": "Guyana is voluntarily committing to hold consultations on this issue [Repeal the laws that criminalize consensual sexual activities between people of the same sex, and protect lesbian, gay, bisexual and transsexual persons from discrimination and violence] over the next 2 years and based on the outcome of this democratic process, these will be reflected in Guyana's laws.", - "values": [ - "3 - Considering action" - ] - }, - { - "text": "Submit all overdue reports to the relevant treaty bodies", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Ensure effective access of children with disabilities to compulsory education, including through the legal amendments to prohibit the denial of access to education for those children because of limited material and other resources", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Ensure investigation and prosecution of all soldiers, police officers, intelligence agents and any other official, including higher-level ranking officers of FARDC, implicated in killing, torture, rape and other human rights violations", - "values": [ - "4 - General action" - ] - }, - { - "text": "Increase its efforts to achieve concrete equality between women and men in the professional framework ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Develop a comprehensive national strategy and adopt a national coordinating framework to ban all corporal punishment against children", - "values": [ - "4 - General action" - ] - }, - { - "text": "In the spirit of ongoing cooperation between the United Nations and Namibia, extend an open and standing invitation to the United Nations special procedures", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Take measures to combat and condemn racism and hate speech by politicians and manifestations of racism in the media, particularly discriminatory and hate speech and the dissemination of ideas and racist remarks", - "values": [ - "4 - General action" - ] - }, - { - "text": "Take effective measures to improve the access of children to education ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Further strengthen relations with the indigenous communities with a view to promoting and protecting their rights and assisting them in their development initiatives ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Adopt a legal definition of all forms of discrimination against women, covering direct and indirect discrimination ", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Ratify promptly the Convention against Torture", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Take legislative and administrative measures to better protect unaccompanied migrant children", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Decriminalize sexual activity between consenting adults of the same sex ", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Issue and implement a standing invitation to all special procedures", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Intensify the training programmes for the personnel responsible for law enforcement", - "values": [ - "4 - General action" - ] - }, - { - "text": "Bring national legislation on torture and other ill-treatment in line with international human rights standards and make any such act a criminal offence ", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Consider abolition of the death penalty in the near future ", - "values": [ - "3 - Considering action" - ] - }, - { - "text": "Continue to promote and protect human rights in all sectors", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Take immediate measures to introduce a formal moratorium on executions and take concrete steps towards the total abolition of the death penalty", - "values": [ - "4 - General action" - ] - }, - { - "text": "Further strengthen a gender-sensitive approach in all poverty alleviation programmes ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Ensure that industrial companies implement international and national environmental and health standards", - "values": [ - "4 - General action" - ] - }, - { - "text": "Sign and ratify the Optional Protocol of the Covenant on Economic, Social and Cultural Rights and the OP-CAT as well as the CED ", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Engage with civil society in the follow-up to the present review", - "values": [ - "4 - General action" - ] - }, - { - "text": "Strengthen mechanisms for ensuring awareness and implementation of international human rights obligations, including through establishment of human rights educational programmes for police, prison and judicial staff with special attention to protection of human rights of women, children, persons of minority sexual orientation and gender identity, etc.", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Ratify the Optional Protocol to the International Covenant on Economic, Social and Cultural Rights and accept its investigation and inter-State communication procedures", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Intensify efforts in guaranteeing women's rights, including by allocating adequate resources in order to strengthen the implementation of CEDAW convention", - "values": [ - "4 - General action" - ] - }, - { - "text": "Intensify efforts to combat trafficking in person inter alia by renewing individual invitations to the Special Rapporteur on trafficking in persons and the Special Rapporteur on the sale of children, child prostitution and child pornography. Bring the criminal law into full conformity with the provisions of the Optional Protocol to the Convention on the Rights of the child relating to sale of children, child prostitution and child pornography ", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Extend a standing invitation to all the special procedures of the Human Rights Council", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Repeal section 146 of the Criminal Code, which criminalizes sexual relations between consenting adults of the same sex ", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Consider ratifying the International Convention for the Protection of All Persons from Enforced Disappearance (CPED), signed in 2007 ", - "values": [ - "3 - Considering action" - ] - }, - { - "text": "Strengthen the capacity of the Legal Protection Centre for Children to strengthen the administration of child justice ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Adopt a comprehensive programme on sexual health and reproductive rights based on human rights and World Health Organization standards and allocate sufficient resources for its implementation", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Continue efforts to promote education for all and especially ensure access to education for girls", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Cooperate fully with the International Criminal Court investigation, and ensure the protection of witnesses from intimidation and violence ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Deepen investigation of cases of human rights violations committed during the conflict, punish the perpetrators and provide adequate reparation to the victims", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Accede to the Second Optional Protocol to the International Covenant on Civil and Political Rights, aimed at abolishing the death penalty", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Implement policies to guarantee the rights of displaced persons and provide durable solutions for return, integration and/or resettlement ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Take measures to eliminate discrimination against vulnerable groups of the population, taking into account the content of the Durban Declaration and Programme of Action of 2001 and the outcome document of the Durban Review Conference in 2009", - "values": [ - "4 - General action" - ] - }, - { - "text": "Ensure the necessary legislation is passed to ensure the Registered Partnership Act comes into force", - "values": [ - "4 - General action" - ] - }, - { - "text": "Continue the process of harmonizing national legislation, including the Criminal Code and Code of Criminal Procedure, with the Constitution and international human rights instruments ratified by Tunisia", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Continue with its efforts to better protect women, children and the disabled in order to consolidate the progress made in this area ", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Continue to engage with civil society organizations and relevant stakeholders in the implementation of the National Action Plan on Human Rights, which covers the period of 2015-2019, as well as in the formulation and shaping of its fifth generation", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Adopt measures to eliminate all forms of racial discrimination, xenophobia and religious intolerance", - "values": [ - "4 - General action" - ] - }, - { - "text": "Adopt legislation that combats discrimination based on sexual orientation and gender identity and protects the rights of lesbian, gay, bisexual, and transgender persons", - "values": [ - "4 - General action" - ] - }, - { - "text": "Continue developing policies for effective gender equality and to combat gender violence, conducting special monitoring of cases involving gender-based violence and studying the reasons why such cases are rarely reported to the authorities", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Continue its efforts to restore the A status to the Senegalese Human Rights Committee before the International Coordinating Committee of National Human Rights Institutions", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Ratify the Optional Protocol to the International Covenant on Economic, Social and Cultural Rights and the Optional Protocol to the Convention against Torture and Other Cruel, Inhuman or Degrading Treatment or Punishment", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Further encourage the dialogue with the secessionists with a view to ending the situation, which endangers the rights and fundamental freedom of all citizens of the Republic of Moldova recognized by the Constitution of 29 July 1994 ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Punish sex tourism and particularly prosecute the sexual exploitation of girls through pornography, sexual abuse and rape", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Create, as soon as possible, a national institution for the protection of human rights in conformity with the Paris Principles ", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Ensure the use of electronic monitoring systems in centres and institutions that provide social care", - "values": [ - "4 - General action" - ] - }, - { - "text": "Effectively implement the 2009 anti-discrimination law, especially regarding the treatment of complaints about discrimination", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Take effective measures to combat the root causes of discrimination on the basis of race and religion and against ethnic minority groups, and to consider establishing a platform for dialogue with the representatives of the ethnic minority groups in order to be properly informed of their problems and needs, and to develop, with their participation, appropriate steps to improve the situation", - "values": [ - "4 - General action" - ] - }, - { - "text": "Consider ratifying the ILO Convention 169 ", - "values": [ - "3 - Considering action" - ] - }, - { - "text": "Complete the investigation on numerous cases of sexual violence against children perpetrated by the high-level officials and bring the perpetrators to justice", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Eradicate in law and in practice the racial and ethnic paradigm in State institutions and the use of ethnicity as a political tool, as noted by the Special Rapporteur on racism", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Raise the age of criminal responsibility for minors ", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Maintain the moratorium on the application of the death penalty with a view to its definitive abolition", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Respect and ensure the rights of indigenous people related to the preservation of their land, culture and resources", - "values": [ - "4 - General action" - ] - }, - { - "text": "Improve prosecution for and prevention of domestic violence and ensure that victims of domestic violence have access to shelters and other support services", - "values": [ - "4 - General action" - ] - }, - { - "text": "Continue human rights education to all Guatemalans, in order for this generation and future generations to leave behind forever the culture of violence inherited from years of internal armed conflict.", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Promote better political representation of women in elected positions", - "values": [ - "4 - General action" - ] - }, - { - "text": "Introduction of new concrete measures to protect child victims of trafficking and minors in custody and detention", - "values": [ - "4 - General action" - ] - }, - { - "text": "Reform its State secrets Law and definitions of crimes as incitement to subversion of state power so that they cannot be abused for persecution of human rights defenders in particular petitioners or journalists", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Accelerate its efforts to finalize the national mental health programme, with the aim of reducing the suicide rate", - "values": [ - "4 - General action" - ] - }, - { - "text": "Continue its implementation of the timetable for restoring democracy without delay ", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Ensure in law and judicial practice, the proportionality of sentences for defamation or expression offences", - "values": [ - "4 - General action" - ] - }, - { - "text": "Accelerate the implementation of the National Action Plan on Gender-based Violence as well as action plans in favour of women and persons with disabilities", - "values": [ - "4 - General action" - ] - }, - { - "text": "Persevere in the implementation of its commitment to strengthen various existing programs to eradicate poverty and ensure universal access to public services, despite constraints in the areas of health, education, housing, nutrition and other areas related to human rights and to seek the support of the international community to implement projects in these areas ", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Put in place measures to combat persistent attitudes and stereotypes regarding the role and responsibilities of women in society", - "values": [ - "4 - General action" - ] - }, - { - "text": "Adopt new measures to find a solution to the problem of overcrowding in prisons ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Consider becoming a party to ICRMW as recommended previously ", - "values": [ - "3 - Considering action" - ] - }, - { - "text": "Ensure independent and efficient investigation within the suggested deadline of 15 months, as recommended by the Subcommittee on the Prevention of Torture", - "values": [ - "4 - General action" - ] - }, - { - "text": "Consider establishing an interministerial committee responsible for the implementation of its international human rights obligations", - "values": [ - "3 - Considering action" - ] - }, - { - "text": "Make every effort to put an end to the cases of kidnapping of citizens, trafficking in persons, human smuggling, and similar offences ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Prohibit all forms of corporal punishment against children, both boys and girls", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Adhere to the International Covenant on Economic, Social and Cultural Rights, the International Convention for the Protection of All Persons from Enforced Disappearance, the 1951 Refugee Convention and the 1967 Protocol thereto, as well as the United Nations Educational, Scientific and Cultural Organization Convention against Discrimination in Education, as previously recommended", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Sustain its constructive steps taken in the field of human rights ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Cooperate fully with ILO to end forced and child labour including in the military, in particular through implementation of a Joint Action Plan and awareness-raising activities ", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Actively enhance respect for the rights of women, including access to education and equal treatment in custody cases, and by creating support mechanisms for divorcees and women victims of violence, particularly sexual violence.", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Respect international minimum standards on the death penalty, if the Republic of Korea will maintain it", - "values": [ - "4 - General action" - ] - }, - { - "text": "Ratify as soon as possible the Optional Protocol to the Convention against Torture and Other Cruel, Inhuman or Degrading Treatment or Punishment", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Improve the protection of children, taking measures to prevent forced and early marriage, and eliminate child labour", - "values": [ - "4 - General action" - ] - }, - { - "text": "Explicitly prohibit all corporal punishment when raising children, at home, at school, institutions, the penal system and in all other areas, in accordance with Article 19 of the Convention on the Rights of the Child ", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Sign and ratify the Optional Protocol to the Covenant on Economic, Social and Cultural Rights, and ratify the Optional Protocol to the Convention against Torture, as well as the International Convention for the Protection of All Persons from Enforced Disappearance ", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Strengthen measures with a view to guaranteeing full access to education for persons with disabilities", - "values": [ - "4 - General action" - ] - }, - { - "text": "Bahrain is fully committed to supporting non-governmental organizations through legal and other instruments so as to develop a constructive dialogue with these organizations and other stakeholders.", - "values": [ - "4 - General action" - ] - }, - { - "text": "Consider signing the International Convention on the Protection of the Rights of All Migrant Workers and Members of Their Families ", - "values": [ - "3 - Considering action" - ] - }, - { - "text": "Take due measures to tackle the rising unemployment rates among immigrant caused as a result of financial crisis, given the concerns contained in the National Report", - "values": [ - "4 - General action" - ] - }, - { - "text": "Sign and ratify the First Optional Protocol to the International Covenant on Civil and Political Rights, from which Jamaica withdrew in 1997 ", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Proceed with the ratification of, and full alignment of its national legislation with all obligations under, the Rome Statute of the International Criminal Court, including incorporating the Statute\u2019s definition of crimes as amended at the Review Conference of the Rome Statute of the International Criminal Court in 2010 and general principles, as well as adopting provisions enabling cooperation with the Court, and accede to the Agreement on the Privileges and Immunities of the International Criminal Court", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Establish an authority that will investigate and recommend action against abuses by law enforcers as a way to curb corruption, violations and protect the integrity of the security forces", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Repeal article 227 of the Tunisian Criminal Code, which allows rape offenders to escape justice if they marry their victims", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Continue to pay further attention to improving the rule of law", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Continue to promote gender equality through the empowerment of women in decision-making and public administration", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Consider further cooperation with the international human rights monitoring mechanisms including treaty bodies and Special procedures of the Human Rights Council", - "values": [ - "3 - Considering action" - ] - }, - { - "text": "Prevent and eliminate child sex tourism and strengthen international cooperation ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Reinforce efforts aimed at improving the working and living conditions of migrant workers", - "values": [ - "4 - General action" - ] - }, - { - "text": "Bring its legislation on rape in line with international law and abolish all references to the status of married couple ", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "The delegation reiterated the firm commitment of Kyrgyzstan to improving the human rights protection system and ensuring the compliance of national law with the international human rights system.", - "values": [ - "4 - General action" - ] - }, - { - "text": "Strengthen its awareness-raising programmes to more effectively address gender disparities and discrimination against women", - "values": [ - "4 - General action" - ] - }, - { - "text": "Consider the abolition of the death penalty, and declare a moratorium on executions, as previously recommended", - "values": [ - "3 - Considering action" - ] - }, - { - "text": "Take the measures required to respect economic, social and cultural rights ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Ensure effective investigation of and accountability for all cases of sexual violence", - "values": [ - "4 - General action" - ] - }, - { - "text": "Accede to the key international human rights instruments: the Convention on the Rights of the Child, the International Covenant on Economic, Social and Cultural Rights, the Convention on the Rights of Persons with Disabilities and the Convention on the Elimination of All forms of Discrimination against Women", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Further encourage the involvement of civil society as partner of the Government in promoting and protecting of human rights", - "values": [ - "4 - General action" - ] - }, - { - "text": "Review its legislation to ensure that any limitations on the right to freedom of expression, both online and off-line, are in full compliance with article 19 of ICCPR, in particular by providing for a defence of truth in all defamation cases ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Continue to train law enforcement officials and human rights teachers and to raise awareness of the need for tolerance and harmony among races and ethnic groups and for intercultural relations ", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Continue its efforts to strengthen the right to health at the national level and extend this right to vulnerable groups such as persons with disabilities and old persons ", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Increase efforts for the effective elimination of all forms of discrimination against women in employment, especially avoiding horizontal and vertical occupational segregation, and unequal pay", - "values": [ - "4 - General action" - ] - }, - { - "text": "Continue the promotion and protection of human rights through intensifying human rights education and enhancing public awareness ", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Seek the technical and financial assistance of United Nations partners and specialized agencies to ratify the human rights treaties to which it is not yet party ", - "values": [ - "1 - Minimal action" - ] - }, - { - "text": "Sign ILO Convention NO. 169 that aims to protect the cultural integrity of indigenous societies and enable them to control their own development ", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Step up its recent efforts and ratify the core human rights treaties and other main relevant international instruments ", - "values": [ - "4 - General action" - ] - }, - { - "text": "End all restrictions on the right to practice one's religion of choice without discrimination", - "values": [ - "4 - General action" - ] - }, - { - "text": "Continue actions aimed at raising public awareness of the law on gender equality adopted in 2013 and implement the national programme on maternity without risk, in order to reduce significantly the risk of maternal mortality", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Take part in international activities to promote and protect human rights on the basis of an equitable and mutually respectful dialogue.", - "values": [ - "4 - General action" - ] - }, - { - "text": "Consider an early ratification of the Optional Protocols to ICCPR and ICESCR, CAT and the Rome Statute ", - "values": [ - "3 - Considering action" - ] - }, - { - "text": "Continue with all its endeavours to ensure further success in the implementation of the recently established relevant programmes/policies on human rights, especially the efforts in the continued implementation of the social agenda of minorities", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Ensure the effective holding of prior, free and informed consultations with indigenous groups on policies that affect their way of life or culture", - "values": [ - "4 - General action" - ] - }, - { - "text": "Continue to put more resources in education to reduce overcrowding in classrooms ", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Investigate, prosecute and redress cases of racially motivated ill-treatment and discrimination, including hate speech and incitement to hatred ", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Continue the cooperation with OHCHR in order to improve the capacity of the national institutions of human rights", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Consider issuing, upon request, provisional work permits in favor of asylum seekers", - "values": [ - "3 - Considering action" - ] - }, - { - "text": "Train law enforcement, judiciary, prosecutors, health-care and social workers on responding to domestic violence", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Take further measures to combat gender-based violence, trafficking in women and girls and sexual exploitation", - "values": [ - "4 - General action" - ] - }, - { - "text": "Raise the age of criminal responsibility of children from 7 to 12 years, as recommended by the Committee on the Rights of the Child", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Withdraw the reservation to CEDAW, ratify the Optional Protocol to the Convention, and develop a comprehensive and effective preventive strategy against harmful traditional practices, including female genital mutilation, early marriage and gavage - force-feeding - ", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Drop any disciplinary proceedings against judges perceived as critical of the legality of the coup d'etat", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Continue its efforts to counter trafficking in human beings especially children", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Ratify or accede to, as appropriate, the Second Optional Protocol to the International Covenant on Civil and Political Rights, aiming at the abolition of the death penalty", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Continue its efforts to promote women\u2019s rights by increasing the representation of women in both the public and private sectors", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Continue measures in eliminating discrimination against women through the implementation of its Law on the Elimination of Violence against Women", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Strengthen measures to reduce the high prevalence of HIV/AIDS among women and mother-to-child transmissions", - "values": [ - "4 - General action" - ] - }, - { - "text": "Continue working towards the harmonization of its domestic legislation with the international human rights instruments to which it is a State Party", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Effectively implement protection mechanisms for victims of domestic violence and provide them with the necessary funding", - "values": [ - "4 - General action" - ] - }, - { - "text": "Ensure the application of existing laws, in particular those on the protection of the rights of women", - "values": [ - "4 - General action" - ] - }, - { - "text": "Effectively integrate the Roma into society.", - "values": [ - "4 - General action" - ] - }, - { - "text": "Recommended the withdrawal of the reservation on article 22 of the International Covenant on Civil and Political Rights within a specific timeframe. ", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Become a State Party to the Convention on the Elimination of All forms of Discrimination against Women", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Continue to consolidate the progress already achieved in the area of improving living conditions, and strengthen human rights protection ", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Address the issues of child abuse, child trafficking, sexual exploitation and involuntary servitude by strict enforcement of national legislation adopted in conformity with relevant international instruments, and through adoption and implementation of a comprehensive action plan to combat these issues, including awareness-raising and education of parents, law enforcement staff and members of the judiciary. ", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Ensure universal access to education for 4- and 5-year-old children and increase coverage for 3-year-old children. Ensure universal access to secondary education and increase completion rates in upper secondary education", - "values": [ - "4 - General action" - ] - }, - { - "text": "Continue its efforts to strengthen the institutional mechanisms to combat and prevent trafficking of persons, especially that of children", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Implement policies to prevent and detect cases of child abuse, as well as to ensure accountability and the rehabilitation of child victims", - "values": [ - "4 - General action" - ] - }, - { - "text": "Continue the legal reform process, including the incorporation of a Plan of action to ensure access to justice by poor people and vulnerable groups, in particular women and children ", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Continue to consolidate efforts to combat extreme poverty and improve the economic situation in the country, while ensuring that marginalized sectors, including persons with disabilities and migrants, are given equal and fair access to labour opportunities", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Eliminate discriminatory legal provisions in matters relating to family and marriage, for example by raising the minimum age of marriage for both men and women to 18 years, eliminating the concepts of modesty, virtue and public scandal from the characterization of sexual offences and making marital rape an offence under the Penal Code, as recommended by the Committee on the Elimination of Discrimination against Women", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Strengthen the protection of journalists, media personnel, and human rights defenders against the attacks and prosecute those responsible for such kind of attempts ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Continue efforts aimed at promoting rights of children, in particular migrant children and victims of sexual violence and abuse", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Consider using the Yogyakarta Principles on the Application of International Human Rights Law in relation to Sexual Orientation and Gender Identity as a guide to assist in its policies development.", - "values": [ - "3 - Considering action" - ] - }, - { - "text": "Cambodia also took upon itself implementation of universal periodic review recommendations addressing socio-economic development issues, such as poverty reduction, education, health, gender, the rights of the child and other economic, social and cultural rights. Such issues would remain top priorities for the Government.", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Combat racist stereotypes and incitement to hatred by intensifying efforts to promote tolerance ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Introduce a strategy to promote food security ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Continue implementing concrete actions for the enforcement of the Fundamental Law on Education", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Enact the Marriage, Divorce and Family Relations Bill with a view to ending child, early and forced marriage and other harmful practices, and raise the minimum age of marriage to 18 years", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Ratify, as soon as possible, major international human rights instruments already signed ", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Take further measures to prevent discrimination on the basis of ethnicity", - "values": [ - "4 - General action" - ] - }, - { - "text": "Adopt and implement appropriate measures, in compliance with international standards, to eliminate reported torture, ill-treatment and other excessive force by law enforcement personnel against suspects, and ensure due accountability for such misconduct, as stipulated in the country's Constitution, and promptly establish the Police Complaint Commission, as provided in the Police Act ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Continue its efforts to further strengthen the judiciary ", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Combat all forms of violence against and exploitation of children including incest, human trafficking and human organ trafficking, ensure their access to justice, and provide rehabilitation of victims into the society", - "values": [ - "4 - General action" - ] - }, - { - "text": "Ensure that women have full access to justice, obtain equal legal capacity and are treated equally in courts", - "values": [ - "4 - General action" - ] - }, - { - "text": "Amend the law so that it allows women married to foreigners to pass on their Jordanian nationality to their children and thus allow these children access to basic education and health services", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Prioritize the finalization of the National Human Rights Action Plan for the Promotion and Protection of Human Rights ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Take forward and continue with its efforts to establish a national human rights institution in accordance with the Paris Principles.", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Criminalize trafficking in persons, and guarantee the protection and rehabilitation of the victims of trafficking", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Make every possible effort in order to reduce the detention period of asylum seekers, especially regarding unaccompanied children and pregnant women, and treat them with most proper manner", - "values": [ - "4 - General action" - ] - }, - { - "text": "Step up efforts to close the gender pay gap", - "values": [ - "4 - General action" - ] - }, - { - "text": "Continue efforts aimed at combating and eliminating discrimination against women in order to ensure full gender equality in life and in public policies", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Decriminalize same-sex relationships between consenting adults", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Take concrete measures to improve the access of irregular migrants to acceptable housing ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Take steps to organize education and awareness campaigns, training programs and educational facilities to change behaviour and public attitudes, towards gender equality and mainstreaming, as well as to strengthen women's and children's rights in the country ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Encourage closer civil society participation in the follow-up to the recommendations of the Human Rights Council", - "values": [ - "4 - General action" - ] - }, - { - "text": "Ensure, protect and fulfil the right to an adequate standard of living, including the rights to adequate food on a non-discriminatory basis", - "values": [ - "4 - General action" - ] - }, - { - "text": "Ratify Convention against Torture and Other Cruel, Inhuman or Degrading Treatment or Punishment and the ILO Conventions no. 138 and 182 concerning child labour ", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Introduce a moratorium on the death penalty with a view to abolishing it", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Continue the implementation of the measures to effectively protect minorities", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Adopt laws protecting freedom of expression and freedom of the media", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Abandon the plan to reintroduce the death penalty, which would be against the international commitments of the country", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "To continue efforts to sensitize actors to the need to respect women's rights", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Pursue its efforts to combat poverty.", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Insist more on measures aiming to combat the demand and provide information and services to victims of trafficking ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Cooperate closely with civil society in the follow-up to the universal periodic review", - "values": [ - "4 - General action" - ] - }, - { - "text": "Take steps to reduce the employment gap among immigrants through provision of employment opportunities ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Assess the effectiveness of existing legislation to combat racism, hate crime and hate speech", - "values": [ - "3 - Considering action" - ] - }, - { - "text": "Ratify the Rome Statute and fully align its national legislation with all obligations under the Rome Statute", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Consider mainstreaming sexual and reproductive health education in schools and improving access to contraception for adults and young people", - "values": [ - "3 - Considering action" - ] - }, - { - "text": "Continue applying the six objectives of the National Education Plan 2010-2019 ", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Agree to visits of other rapporteurs who have requested access to Turkmenistan in the last five years.", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Further continue enhancing support for new refugees from its neighbours", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Adopt stand-alone legislation to combat discrimination", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Seek the means to render as effective as possible the respect of the provisions of the Law on the Rights of the Child, of 2009 ", - "values": [ - "1 - Minimal action" - ] - }, - { - "text": "Continue its efforts to combat racism against foreigners", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Ensuring best protection of human rights and follow-up to the implementation of international instruments", - "values": [ - "4 - General action" - ] - }, - { - "text": "Disseminate its best practices to reduce poverty and combat social exclusion", - "values": [ - "1 - Minimal action" - ] - }, - { - "text": "Broaden the mandate of the Ombudsman for Equality to ensure better follow-up on cases of discrimination", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Intensify efforts to establish a National Human Rights Commission in order to consolidate and secure the gains made in promoting and protecting the human rights of the people of Tuvalu ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Ensure the full right for women to abortion and implement the decisions of the European Court of Human Rights regarding this right", - "values": [ - "4 - General action" - ] - }, - { - "text": "Continue legal and judicial reforms and harmonization of the laws with international human rights instruments ", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Establish the minimum age of marriage at 18 years old, and introduce mechanisms to reduce the incidence of child marriage", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Continue its efforts to reduce the maternal and infant mortality rates", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Continue its efforts to fight against unemployment and prioritize adequate housing and access to water", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Take additional measures to reduce the gender wage gap and further improve the integration of women in employment through measures such as the creation of more childcare facilities and educational facilities for working mothers ", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Take the necessary measures to ensure that the Child Rights Act of 2003 is incorporated in the legal system of the States and applied by all other entities", - "values": [ - "4 - General action" - ] - }, - { - "text": "Step up its measures in the area of promoting the right to education by continuing efforts aimed at improving the quality of education and increasing the coverage of secondary and technical education", - "values": [ - "4 - General action" - ] - }, - { - "text": "Ratify core international human rights treaties, namely the International Covenant on Civil and Political Rights and the International Covenant on Economic, Social and Cultural Rights and their Optional Protocols, as well as the International Convention for the Protection of All Persons from Enforced Disappearance", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Establish and strengthen the basis for national unity and internal security and stability of the State in order to preserve the gene pool of the nation through participation in socio-political activities of all sectors of the population, including women", - "values": [ - "4 - General action" - ] - }, - { - "text": "Promote equality in the enjoyment of human rights of LGBTI persons incorporating it into national legislation", - "values": [ - "4 - General action" - ] - }, - { - "text": "Further promote microcredit programmes for the poorest", - "values": [ - "4 - General action" - ] - }, - { - "text": "Consider ratifying the International Labour Organization Indigenous and Tribal Peoples Convention, 1989 (No. 169)", - "values": [ - "3 - Considering action" - ] - }, - { - "text": "Continue to implement national laws in accordance with its treaty obligations", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Repeal or amend legislation that discriminates against disabled person and children, with a focus on eradicating the practice of killing newborn children with disabilities, preventing violence at the hands of family members and society in general, and ensuring equal access to all public transportation and buildings ", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Strengthen mechanisms which facilitate access to justice for victims of atrocities including sexual violence", - "values": [ - "4 - General action" - ] - }, - { - "text": "Commute the sentences of inmates on death row", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Continue the efforts to fight poverty and promote the equal distribution of wealth ", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Step up efforts to fight torture.", - "values": [ - "4 - General action" - ] - }, - { - "text": "Improve conditions of detention, particularly for persons with disabilities", - "values": [ - "4 - General action" - ] - }, - { - "text": "Provide incentives for the Roma community to build their capacity to participate in civil society.", - "values": [ - "4 - General action" - ] - }, - { - "text": "Redouble its efforts to succeed in the national reconciliation process ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Take regular measures to prevent hate speech, including prompt legal action against those who incite discrimination or violence motivated by racial, ethnic or religious reasons ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Intensify on-going efforts to submit its overdue reports to the relevant special procedures mechanisms", - "values": [ - "4 - General action" - ] - }, - { - "text": "Intensify efforts aimed at creating relocation sites and providing basic protection to internally displaced persons", - "values": [ - "4 - General action" - ] - }, - { - "text": "Sign and ratify the International Covenant on Civil and Political Rights", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Take further steps in advancing the human rights of its indigenous populations and intensify its efforts in combating discrimination against them, especially in education, health care and employment ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Strive to minimize human rights violation in its attempt to restore law and order in the country ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Organize more human rights education activities for staff of public services, particularly law enforcement officers ", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Ratify the OP-ICESCR, OP-CAT and CPED. Ratify furthermore the Rome Statute that Israel signed in 2000", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Clearly voice its intention to guarantee the protection of ethnic and religious minorities and formalize post-referendum agreements on citizenship rights which will safeguard civil, political, economic, social and cultural rights on an equal footing as citizens - regarding people of both northern and southern Sudan origin ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Continue to implement the International Health Regulations and maintain its commitment to guarantee access for the rural population to medical care and services", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Increase its efforts at enhancing the role of women in high-level decision-making.", - "values": [ - "4 - General action" - ] - }, - { - "text": "Continue efforts in combating discrimination against women in all levels ", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Consider taking all necessary steps to introduce a de jure moratorium on capital executions with a view to fully abolishing the death penalty, and ratify the Second Optional Protocol to ICCPR", - "values": [ - "3 - Considering action" - ] - }, - { - "text": "Further accelerate its pro-people, pro-poor socio-economic policies ", - "values": [ - "4 - General action" - ] - }, - { - "text": "The Government remains committed to not only recognising the important role of women in the country but also towards ensuring their rights continue to be promoted and protected.", - "values": [ - "4 - General action" - ] - }, - { - "text": "Consider the possibility of expressing its consent to be bound by the Optional Protocol to the Convention against Torture and Other Cruel, Inhuman or Degrading Treatment or Punishment", - "values": [ - "3 - Considering action" - ] - }, - { - "text": "Adopt specific laws that prohibit discrimination and protect girls, children with disabilities and children with HIV/AIDS, undertake, in addition, awareness-raising campaigns to promote the dignity and rights of children with albinism, twins, children with disabilities and children accused of witchcraft, in order to combat the abandonment and/or execution, of which they are victims", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Strengthen the rule of law and good governance, including capacity-building for the law enforcement system and national institutions on human rights ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Adopt a comprehensive anti-discrimination act prohibiting discrimination based on sexual orientation, gender, religion, belief, and race", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Work closely with the European Union to create a comprehensive antitrafficking-in persons network", - "values": [ - "4 - General action" - ] - }, - { - "text": "Investigate cases of deaths of migrants by customs and border patrols, particularly those where there have been indications of an excessive use of force, and ensure accountability and adequate reparation to the families of the victims", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Continue to take measures to combat all forms of discrimination in the area of education and protect minority groups ", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Take effective measures to improve prison conditions", - "values": [ - "4 - General action" - ] - }, - { - "text": "Ensure that asylum seekers, while awaiting the reviewing of their status, are protected from refoulement and afforded equal and effective access to essential services ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Continue to invest and take appropriate measures to ensure that all school age children enjoy fully the right to education", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Put an end to surgical castration of detained perpetrators of sexual crimes, which is equivalent to degrading treatment under international law", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Intensify its policies and programs undertaken to ensure the protection of women and children", - "values": [ - "4 - General action" - ] - }, - { - "text": "Adopt a national plan of action to enhance the protection of human rights defenders and independent journalists", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Consider the possibility of ratifying the International Convention on the Protection of the rights of all Migrants Workers and members of their families ", - "values": [ - "3 - Considering action" - ] - }, - { - "text": "Respect and ensure respect of international humanitarian law, particularly the 1949 Geneva Conventions and the Optional Protocol I thereto, including in the Occupied Palestine Territories.", - "values": [ - "4 - General action" - ] - }, - { - "text": "Protect the freedom of assembly, enshrined in the Constitution, by modifying the protest law to allow public assemblies through a simple notification process", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Ensure the full respect of the non-refoulement obligations, with regard to all asylum seekers", - "values": [ - "4 - General action" - ] - }, - { - "text": "Intensify efforts to improve the living standards in detention facilities ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Further enhance efforts to combat corruption which affects all areas of society and hinders individual and national development", - "values": [ - "4 - General action" - ] - }, - { - "text": "Guarantee the rights of Colombians affected by the land border closure, including family reunification and recovery of their belongings", - "values": [ - "4 - General action" - ] - }, - { - "text": "Take measures to allocate to the National Human Rights Commission the necessary human and financial resources to fulfil its mandate", - "values": [ - "4 - General action" - ] - }, - { - "text": "Cognizant of the de facto moratorium on capital punishment, consider abolishing the death penalty ", - "values": [ - "3 - Considering action" - ] - }, - { - "text": "Strengthen community management to solve problems of groups at risk and prioritize the attention to young people living in rural areas ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Repeal the crime of sodomy as described in the Criminal Code and the Reform Act, 2006, and ensure that same-sex conduct between consenting adults is not subject to criminal sanctions", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Continue to incorporate economic, social and cultural rights in the national strategy to combat drug trafficking ", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Adopt the necessary measures to protect ethnic and religious minorities from all forms of violence and discrimination", - "values": [ - "4 - General action" - ] - }, - { - "text": "Take the necessary steps to ensure that the principles that guarantee equality between men and women are applied in judicial proceedings and that socio-legal services are made more available to women ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Contribute to the effective investigation, prosecution and punishment of incitement to hatred and hate speech ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Investigate trafficking in person crimes, particularly the prostitution of all children ", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Publish and implement a plan for human rights defenders addressing how the government will allow them to operate freely, independently without any harassment or interference and with details of how investigations will be pursued", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Continue to bring down poverty in urban and rural areas along with the maintenance of peace and stability and protection of the environment to boost up the country's socio-economic development, industrialization and modernization to achieve the MDGs.", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Approve - as a matter of priority - a bill punishing marital rape as an offence, and develop a national policy that may include an operative plan and indicators, aimed at implementing the legislation on gender-related violence", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Consider expediting the ratifications of the core human rights instruments, including the Optional Protocol to the Convention against Torture and the Optional Protocol to the International Covenant on Civil and Political Rights", - "values": [ - "3 - Considering action" - ] - }, - { - "text": "Separate convicted offenders from pretrial detainees ", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Put an immediate end to the censorship of Fijian media, and to allow the people of Fiji and the media the right to freedom of expression, which includes the right to express criticism of the Government without fear of arrest, intimidation or punishment", - "values": [ - "4 - General action" - ] - }, - { - "text": "Continue adopting measures that contribute to the protection and social inclusion of persons with disabilities, particularly as regards the provision of social services", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Consider ratifying those international instruments to which it is not yet a party, and which aim to protect the rights of minority groups ", - "values": [ - "3 - Considering action" - ] - }, - { - "text": "Prohibit incarceration of minors together with adults, as well as solitary confinement of minors", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Enact legislation contained in the National Anti-Corruption Strategy", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Take measures to prevent domestic violence, including by raising awareness, encouraging women to report acts of sexual and domestic violence, protecting the victims and ensuring the effective investigation, prosecution and punishment of perpetrators", - "values": [ - "4 - General action" - ] - }, - { - "text": "Continue improving the health security system to further minimize discrepancies and to provide equitable access", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Revoke any existing travel bans on human rights defenders and to guaranty the rights to freedom of expression and information of its citizens, in conformity with article 19 of the Covenant, and thus ensure that the media is able to operate without interference", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Continue efforts to maintain its achievements made in the field of human rights", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Bring the Printing Presses and Publication Act (1948) the Official Secrets Act (1972) and the Sedition Act (1948) in line with international human rights standards and enable all citizens to exercise fully the rights of opinion and expression", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Take any proper measure in order to keep national legislation fully in line with international standards and obligations", - "values": [ - "4 - General action" - ] - }, - { - "text": "Take all appropriate measures, including adequate resource allocation, to strengthen indigenous children's equal access to education, including, when possible, education in their own language", - "values": [ - "4 - General action" - ] - }, - { - "text": "Ratify the Convention against Torture and typify torture as a crime by modifying its Criminal Code", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Withdraw the reservations to Article 20 of the Convention against Torture and Other Cruel, Inhuman or Degrading Treatment or Punishment and consider ratifying the Optional Protocol to this Convention", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Put in place a follow-up mechanism with a view to ensuring the return, registering, readaptation and reinsertion of internally displaced peoples, in all security and dignity ", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Implement the recently adopted rules on the treatment of women prisoners and non-custodial measures for women offenders, otherwise known as the Bangkok Rules, and seek necessary support from such relevant agencies as the United Nations Office on Drugs and Crime (UNODC) and OHCHR ", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Further promote poverty reduction for the realization of a balanced and inclusive growth", - "values": [ - "4 - General action" - ] - }, - { - "text": "Dedicate sufficient resources to processes for granting land titles and recognition of land rights for Indigenous peoples, including support for an official comprehensive database of Indigenous territories", - "values": [ - "4 - General action" - ] - }, - { - "text": "Take effective measures to respect the right to freedom of religion without discrimination", - "values": [ - "4 - General action" - ] - }, - { - "text": "Establish broad public outreach programmes to discourage discrimination against ethnic minority residents in Finland ", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Cooperate closely with civil society and NGOs in the follow-up to this review ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Complete the process of establishing the National Human Rights Institution in accordance with the Paris Principles", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Consider signing and ratifying CEDAW, CRC and the International Convention on the Protection of the Rights of All Migrant Workers and Their Families ", - "values": [ - "3 - Considering action" - ] - }, - { - "text": "Fully investigate all allegations of persecution based on gender and sexual orientation", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Ratify the Rome Statute and cooperate fully with the International Criminal Court in order, inter alia, to hold to account those responsible for crimes against humanity", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Establish a National Human Rights Institution in accordance with the Paris Principles, in order to strengthen the national system of human rights alongside the recently established Ministry of Human Rights", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Effectively monitor and evaluate the 2016-2017 National Action Plan against Human Trafficking and provide an update in a subsequent universal periodic review report", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Disseminate human rights culture through training and awareness programs to the benefit of the law enforcement officials and to all segments of Yemeni society ", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Guarantee the rights to freedom of expression and Covenant on Civil and Political Rights and thus ensure that the media are able to operate without interference.", - "values": [ - "4 - General action" - ] - }, - { - "text": "Adopt a new action plan to fully implement the equal pay standard to eradicate the gender pay gap for work", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Consider ratifying the Rome Statute establishing the International Criminal Court.", - "values": [ - "3 - Considering action" - ] - }, - { - "text": "Take all measures necessary to prevent and combat violence against and the maltreatment of children, by setting up an effective mechanism for collecting, processing and investigating complaints, by promoting an awareness-raising campaign and by providing adequate protection for victims - and review and modify the articles of the 1977 Criminal Code concerning violence against children, the sexual exploitation of children, and the sale and trafficking of children ", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Revise the 2009 Law on non-governmental organizations so as to ensure that it complies with international human rights law ", - "values": [ - "3 - Considering action" - ] - }, - { - "text": "Urgent implementation of measures to improve the reporting rate of gender based violence, where the NGO Gender links estimates only 1 in 24 incidents were currently reported, and to increase the prosecution of perpetrators ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Strengthen the implementation of the National Action Plan on Human Rights", - "values": [ - "4 - General action" - ] - }, - { - "text": "Continue its efforts to consolidate social policies in favour of the most vulnerable sectors of its people, counting on the assistance and cooperation of the community of nations, as requested by the country", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Expedite the review of the relevant domestic laws and administrative practices to facilitate ratification of the four fundamental conventions of ILO that the Republic of Korea has not yet ratified", - "values": [ - "3 - Considering action" - ] - }, - { - "text": "Adopt a quota system or any other type of temporary measure for women to guarantee equal rights between men and women", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Consider signing and ratifying the new Optional Protocol to the Convention on the Rights of the Child on a communications procedure ", - "values": [ - "3 - Considering action" - ] - }, - { - "text": "Regularly consult with indigenous peoples on matters of interest to their communities, to support their rights to traditionally owned lands and resources and to adopt measures to effectively protect sacred areas of indigenous peoples against environmental exploitation and degradation", - "values": [ - "4 - General action" - ] - }, - { - "text": "Guarantee that all national and international NGOs operating in Ethiopia can do so freely and without fear of harassment, intimidation or arbitrary arrest ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Take necessary measures, in putting law into practice, to further ensure the implementation on gender equality", - "values": [ - "4 - General action" - ] - }, - { - "text": "Take measures to achieve timely registration of all births and create an adequate and credible birth registration system ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Prosecutions of cases involving allegations of child abuse and exploitation will be expedited through the modality of an inter-agency mechanism to identify deficiencies in the system, propose appropriate remedial measures and coordinate and monitor implementation of such measures", - "values": [ - "4 - General action" - ] - }, - { - "text": "Take measures to guarantee the freedom of expression for all people, including human rights defenders ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Move forward to make necessary arrangements for the adoption of a comprehensive national policy on persons with disabilities", - "values": [ - "4 - General action" - ] - }, - { - "text": "Seek the assistance of the international community in particular that of the Office of the United Nations High Commissioner for Human Rights (OHCHR) in order to implement the accepted recommendations by the country", - "values": [ - "1 - Minimal action" - ] - }, - { - "text": "Take appropriate measures to further relax restrictions on the freedom of the media", - "values": [ - "4 - General action" - ] - }, - { - "text": "Recommended mainstreaming human rights in the education system.", - "values": [ - "4 - General action" - ] - }, - { - "text": "Continue strengthening the national regime aimed at combatting all racial discrimination practices, in conformity with ICERD ", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Recommended that the judiciary continue its investigations into alleged links between State agents and paramilitaries.", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "More stringent monitoring mechanisms to address the rise in racist and racially-motivated crimes and xenophobic acts, and ensure effective detection, investigation, prosecution, and punishment ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Facilitate the active involvement of civil society stakeholders, including human rights non-governmental organizations, in the follow-up to this review ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Continue to adopt all measures considered necessary to eliminate definitively the practice of female genital mutilation ", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Fully adapt their legislation to the Rome Statute of the International Criminal Court", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Consolidate the progress already made in the fight against human trafficking by guaranteeing the prosecution and punishment of the perpetrators and the protection and rehabilitation of victims", - "values": [ - "4 - General action" - ] - }, - { - "text": "Continue consolidating the social protection programmes for the application of the Convention on the Rights of Persons with Disabilities", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Establish a follow up committee to review all recommendations made during the review process with a view to forming a national plan of action for the next four years", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Take measures to further facilitate the naturalization of non-citizens ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Continue strengthening its efforts to promote and protect the rights of children in Malaysia", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Take steps to prevent discrimination against women belonging to disadvantaged groups as well as institute measures to decrease dropout rates among Sinti and Roma girls", - "values": [ - "4 - General action" - ] - }, - { - "text": "Improve conditions in prisons and detention centres vis-à-vis their overcrowding, including inmates' access to food and hygiene", - "values": [ - "4 - General action" - ] - }, - { - "text": "Protect the rights of Roma people and other minorities through legislation, law enforcement and administrative measures, eradicate racial discrimination and xenophobia, and effectively combat racially motivated violence", - "values": [ - "4 - General action" - ] - }, - { - "text": "Develop legislation guaranteeing workers' rights, including for migrant workers, and enhance efforts to combat fraudulent recruitment", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Adopt all necessary political and legislative measures to decriminalize consensual same-sex sexual relations between adults", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Ensure that government policy on access to food, healthcare and health services, including the Public Distribution System, is free of discrimination and political considerations", - "values": [ - "4 - General action" - ] - }, - { - "text": "Continue to implement policies for the development of its people under the Sustainable Development Goals", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Ratify the international human rights instruments, particularly the International Convention on the Protection of the Rights of All Migrant Workers and Members of Their Families", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Further improve the birth registration system as to ensure universal birth registration to all children born in the territory of the Republic of Korea, regardless of the status of the parents", - "values": [ - "3 - Considering action" - ] - }, - { - "text": "Invite and set dates for visits by the Special Rapporteurs on the situation of human rights defenders, on the rights to freedom of peaceful assembly and of association, and on the promotion and protection of the right to freedom of opinion and expression", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Increase the capacity building and technical assistance to enable the country to implement its national priorities including the National Strategic Plan in the sphere of education", - "values": [ - "4 - General action" - ] - }, - { - "text": "Strengthen efforts to restrict the outbreaks of racism and xenophobia, especially the manifestations of racism on the Internet, as was recommended by CERD ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Take concrete measures to combat discrimination against all children, including by creating a specific comprehensive strategy to eliminate negative attitudes and practices that discriminate against children and to encourage girls to attend school", - "values": [ - "4 - General action" - ] - }, - { - "text": "Pursue efforts to counter trafficking in women and children ", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Increase significantly the proportion of national expenditure allocated to health care, address the regional differences in access to health care services and expand the human capital within the health care sector, especially to ascertain that an adequate number of midwives are educated and dispatched across the country", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "In line with the vigorous actions already undertaken, endow EHRC with a mandate in compliance with the Paris Principles ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Continue to strengthen measures to promote tolerance and respect for cultural diversity and to counter prejudice, stereotypes, discrimination, racism, and Islamophobia", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Invite the special procedures mandate-holders who requested to visit the country ", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Formally abolish the death penalty for all cases and under all circumstances and ratify the Second Optional Protocol to the International Covenant on Civil and Political Rights ", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Continue cooperation with international community so as to improve the access to food, water and sanitation for the whole population given the country's limited resources and its exposure to natural disasters ", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Incorporate the crime of torture into Chilean legislation, in conformity with the Convention against Torture and Other Cruel, Inhuman or Degrading Treatment ", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Continue its national efforts to end human trafficking and sexual exploitation", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Establish a gender quota system to increase women representation in the National Assembly", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Ensure full participation of all stakeholders in the UPR follow-up and provide a mid-term update to the Human Rights Council on the implementation of the recommendations adopted during the review", - "values": [ - "4 - General action" - ] - }, - { - "text": "Take active steps to further promote children's rights by spreading awareness against domestic violence and child labour and emphasizing the importance of students' school attendance", - "values": [ - "4 - General action" - ] - }, - { - "text": "Ensure that everyone can peacefully exercise his or her right to the freedom of expression in conformity with the country's obligations under the International Covenant on Civil and Political Rights ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Intensify efforts to combat discrimination against migrants and take measures to support their integration into the community ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Continue its ongoing review of national laws to ensure that they are in line with its international human rights law obligations ", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Including following the Committee\u2019s guidelines on Article 14 to protect the security and personal integrity of persons with disability who are deprived of their liberty", - "values": [ - "4 - General action" - ] - }, - { - "text": "Place a moratorium on the death penalty with a view to eradicating it", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Promote climate change mitigation and adaptation strategies and disseminate these to the entire Samoan society and in the school curriculum", - "values": [ - "4 - General action" - ] - }, - { - "text": "Improve access to quality healthcare for its people", - "values": [ - "4 - General action" - ] - }, - { - "text": "Cooperate fully with all special procedures mandate holders of the Human Rights Council and give a favourable response to requests for visits made by the special procedures mandate holders", - "values": [ - "4 - General action" - ] - }, - { - "text": "Abolish the death penalty once and for all, sign and ratify the second Optional Protocol to ICCPR", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Ratify outstanding core international human rights instruments ", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Consider the possibility of establishing a national human rights institution in accordance with the Paris Principles ", - "values": [ - "3 - Considering action" - ] - }, - { - "text": "Develop a national action plan to prevent and combat racism, racial discrimination, xenophobia and related intolerance, which will also ensure that manifestations of hatred, racist and xenophobic discourse as well as racially motivated acts of violence are investigated and perpetrators are punished. Such a national action plan should also integrate the implementation of the Durban Declaration and Program of Action", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Guyana voluntarily commits to continue its consideration of the abolition of the death penalty and to report its findings to the UNHRC in 2 years.", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Take necessary measures to address issues relating to foreign workers, such as their facing travel bans and sometimes loss of rights to residence and work while being investigated for financial irregularity, so that the principles of natural justice are adhered to scrupulously ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Enhance the State's capacity to protect human rights while managing crises, catastrophes and disasters and preparing to rescue", - "values": [ - "4 - General action" - ] - }, - { - "text": "Seek to enhance overall quality of education and health services offered, in addition to greater enrolment in and access to schools and hospitals ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Stop attempts to revise the outcomes of the Second World War, the prosecution of anti-fascist veterans and glorification of the Nazi accomplices", - "values": [ - "4 - General action" - ] - }, - { - "text": "Complete the establishment of the national human rights institution ", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Continue applying the strategies and socio-economic development plans of the country, particularly for reducing poverty", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Continue to develop, implement, monitor and strengthen policies to reduce rates of obesity and the incidence of non-communicable diseases", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Adopt a law prohibiting all forms of discrimination, including discrimination based on sexual orientation and gender identity", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Establish a national human rights institution, in compliance with the Paris Principles", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Grant permission and access to aid agencies to provide humanitarian assistance to Rohingya and others in the Bangladesh-Burma border region ", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Ensure equal pay for both sexes ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Strengthen the fight against all forms of discrimination", - "values": [ - "4 - General action" - ] - }, - { - "text": "Adopt appropriate legislative or judicial measures to criminalize enforced disappearance, in accordance to the provisions of ICPPED and promote changes in the internal order which enable enforced disappearances to be investigated thoroughly and impartially", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "End urgently night arrests of Palestinian children, the admissibility in evidence in military courts of written confessions in Hebrew signed by them, their solitary confinement and the denial of access to family members or to legal representation", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Withdraw the reservation to article 2 and 16 of CEDAW", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Ensure that no governmental entity endorses the restriction of freedom of expression in any way whatsoever ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Thoroughly investigate and promptly prosecute cases of femicide and other acts of violence against women", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Decriminalize sexual relations between consenting adults of the same sex as well as abolish other rules which promote discrimination based on sexual orientation ", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Review its legislation to expressly prohibit that a statement made under duress or as a result of torture acts or practices be considered as evidence", - "values": [ - "3 - Considering action" - ] - }, - { - "text": "Further strengthen cooperation with other countries and relevant international organizations by sharing good experiences in the fields of poverty reduction, education for all and universal medical care", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Consider issuing a standing invitation to the special procedures", - "values": [ - "3 - Considering action" - ] - }, - { - "text": "Improve the efficiency of existing mechanisms for compensating victims of domestic violence.", - "values": [ - "4 - General action" - ] - }, - { - "text": "Continue efforts to strengthen human rights institutions, including the judiciary and the Ministry of Women and Human Rights in order to ensure effective protection and promotion of human rights", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Continue to give absolute priority to programmes to combat poverty", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Continue its efforts aimed at ensuring equal access to education, including to children in vulnerable and disadvantaged situations", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Ensure that freedom of expression is safeguarded in all its forms, including artistic expressions", - "values": [ - "4 - General action" - ] - }, - { - "text": "Ratify the Convention against Torture and Other Cruel, Inhuman or Degrading Treatment or Punishment and its Optional Protocol", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Continue its efforts to consolidate the legislative framework in the field of the protection against discrimination, in particular in relation to the employment of non-nationals ", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Continue to develop efforts to implement strategies to reduce poverty in line with the Millennium Development Goals. ", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "The Government also pledged its commitment to do all in its power to sign and ratify, before the end of 2012, all outstanding instruments in the area of international human rights and humanitarian law", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Continue implementing the Non-Formal Education programme for adults, including persons with disabilities ", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Continue the efforts to abolish the death penalty", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Enforce legislation criminalising gender-based violence and prosecute all cases of violence against women", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Move forward with efforts to expand the work of the Sexual and Gender-Based Violence - SGBV - Unit, under the Ministry of Justice, and to create permanent SGBV Units around the country", - "values": [ - "4 - General action" - ] - }, - { - "text": "Promote greater participation and representation of women in public life, notably in the parliament and other national decision-making bodies ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Provide the National Human Rights Commission with all the necessary resources in order to guarantee that it is fully compliant with the Paris Principles", - "values": [ - "4 - General action" - ] - }, - { - "text": "Step up its cooperation with the special procedures of the Human Rights Council by responding positively to the pending visit requests of special procedures mandate holders and eventually consider extending a standing invitation to all the special procedures mandate holders of the Human Rights Council", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Consider withdrawing the reservations to articles 7 and 16 of CEDAW", - "values": [ - "3 - Considering action" - ] - }, - { - "text": "Consider the establishment of an independent national human rights institution in conformity with the Paris Principles ", - "values": [ - "3 - Considering action" - ] - }, - { - "text": "Strengthen further the mandate of its national human rights institution and provide the necessary resources for it to function independently", - "values": [ - "4 - General action" - ] - }, - { - "text": "Make full use in practice of the new Institute for Human Rights to promote a coherent approach to human rights issues across the spectrum of different policy areas and human rights situations ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Continue their efforts with determination for further progress in fighting against corruption", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Strengthen the process of empowerment of the grassroots communities in the framework of the fight against poverty", - "values": [ - "4 - General action" - ] - }, - { - "text": "Issue a standing invitation to the Special Rapporteurs and Working Groups of the United Nations human rights system", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Do not detain migrants other than in exceptional cases, limit this detention to six months and bring detention conditions into line with international standards in the field of human rights, as previously recommended", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Continue the efforts to prevent and combat all forms of racial discrimination and xenophobia, and continue to provide the full support to implement the national action plan against racism 2012-2014 ", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Continue to strengthen its anti-racism and anti-discriminatory policies and measures, especially for the Roma and other minorities ", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Ratify the Convention on the Rights of Persons with Disabilities and the Optional Protocol thereto as well as the Optional Protocol to the Convention against Torture.", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Guarantee the human rights to water and sanitation by increasing access to drinking water and sanitation facilities", - "values": [ - "4 - General action" - ] - }, - { - "text": "Step up efforts to ratify the International Covenant on Economic, Social and Cultural Rights, the Convention on the Elimination of All forms of Discrimination against Women and the Convention on the Rights of the Child", - "values": [ - "4 - General action" - ] - }, - { - "text": "Abolish all forms of arbitrary and extra-judicial detention", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Ratify the Optional Protocol to the Convention on the Rights of the Child on a Communications Procedure", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Allocate adequate resources to ensure the effective implementation of the Combatting Trafficking in Persons Act (2011) ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Sign the OP-Cat ", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Promote a programmatic approach which includes the protection of the rights of children, gender perspective and education ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Continue to promote economic and social sustainable development, raise people\u2019s standard of living and lay a solid foundation for the enjoyment of all human rights by its people", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Continue its leadership role and advocacy with the international community, including through the Coalition of Low Lying Atoll Nations on Climate Change and the Alliance of Small Island States, on the need for ambitious and binding targets for greenhouse gas emissions in order to mitigate the negative effects of climate change on human rights", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Realize its commitments particularly those related to legislative and judicial reform anti-corruption ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Take additional measures to consolidate the achievements already made, in reducing child and infant mortality ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Provide sufficient funding for the National Human Rights Institution, enabling them to carry out its task as Human Rights watchdog", - "values": [ - "4 - General action" - ] - }, - { - "text": "Strengthen measures to reduce poverty", - "values": [ - "4 - General action" - ] - }, - { - "text": "Take steps to promote economic growth with a more equitable distribution of resources, to ensure social and economic rights for all", - "values": [ - "4 - General action" - ] - }, - { - "text": "Continue to safeguard the choice of health-care workers to have recourse to the principle of conscientious objection ", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Intensify efforts to eliminate all forms of discrimination against women, inter alia through advocating and promoting women's empowerment, capacity building, gender sensitivity training and public awareness-raising activities", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Refrain from the refoulement of asylum-seekers ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Ensure that all allegations of excessive use of force or arbitrary behaviour by State officials, including those that may amount to torture or ill-treatment, are investigated", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Allow journalists and human rights defenders to work in a safe environment, notably by prosecuting all those responsible for intimidating or making threats against them ", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Continue in its efforts to integrate human rights within school curricula ", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Continue its legal efforts in the protection of women and children's rights as well as improve measures to prevent violence against women and girls, and members of religious minorities ", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Increase the access of children to information and education about sexual and reproductive health and rights, including in schools, as well as access to sexual reproductive health services", - "values": [ - "4 - General action" - ] - }, - { - "text": "Take steps to prioritise the protection of civilians through building the capacity of law enforcement and targeted training to improve public order and security in affected areas", - "values": [ - "4 - General action" - ] - }, - { - "text": "Abolish capital punishment and ratify the Second Optional Protocol to the International Covenant on Civil and Political Rights, aiming at the abolition of the death penalty", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Registration of beneficiaries in a single register to identify future needs and provide vouchers appropriate to social programmes", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Finalize all outstanding cases of discrimination that have occurred since 2006.", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Consider the ratification of the Optional Protocol to the Convention on the Rights of the Child on a communications procedure", - "values": [ - "3 - Considering action" - ] - }, - { - "text": "Implement into national law the Convention on the Rights of Persons with Disabilities", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Continue strengthening its system of promotion and protection of human rights in accordance with international human rights instruments, ensure the creation of a national human rights institution that complies with the Paris Principles and continue cooperating with the United Nations system mechanisms ", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Take measures towards signing and ratifying the ICCPR and the ICESCR as soon as possible ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Accede to Additional Protocol II of the 1949 Geneva Conventions", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Recommended correcting the shortcoming in the Code of Criminal Procedure, notably the need to respect requirements for serving warrants of arrest at all times, including on Sundays and holidays, and to address the current possibility for police officers to proceed to an arrest without a warrant", - "values": [ - "4 - General action" - ] - }, - { - "text": "Ratify the CAT, clearly criminalize torture and ban all kinds of corporal punishment", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Reform the law on radio communication in order to guarantee the proper and free functioning of local radios.", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Vest the national Commission on Inquiry on Enforced Disappearances greater authority and resources to conduct investigations", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Introduce a domestic violence bill to address domestic and sexual violence against women", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Take appropriate measures to ensure that civil society, especially human rights defenders, may operate in a safe and enabling environment free from reprisals and to remove restrictions impeding their work, both in law and in practice, including by guaranteeing the rights to freedom of expression, association and assembly in accordance with international human rights standards ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Ensure that persons with disabilities enjoy their rights in detention centres", - "values": [ - "4 - General action" - ] - }, - { - "text": "Accelerate efforts aimed at the effective implementation with full enforcement of its relevant plans of action and policies including that of the anti-trafficking legislation", - "values": [ - "4 - General action" - ] - }, - { - "text": "Take all necessary measures towards acceding to the Rome Statute of the International Criminal Court", - "values": [ - "4 - General action" - ] - }, - { - "text": "Seek the assistance of the international community in adapting to climate change and developing its capacities to address the adverse effects of climate change on the enjoyment by its citizens of their human rights", - "values": [ - "1 - Minimal action" - ] - }, - { - "text": "Consider extending a standing invitation to all special procedures of the human Right Council", - "values": [ - "3 - Considering action" - ] - }, - { - "text": "Establish expressly in the Criminal Code the criminalization of enforced disappearances and a ban of its statute of limitations, as well as ratify the International Convention against Enforced Disappearances and recognize the competence of its Committee ", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Intensify its efforts to ensure provision of education in minority languages", - "values": [ - "4 - General action" - ] - }, - { - "text": "Take urgent and robust action to implement the law of 2006 and recent national strategies against sexual violence by investing more resources in prevention and training, law enforcement and assistance to the victims of sexual violence. ", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Facilitate the adoption of the new Code of Criminal Procedure that includes the notification of charges, the right to be assisted by counsel, compulsory medical examination and notification of family members, with a view to strengthening the rights of those in police custody", - "values": [ - "4 - General action" - ] - }, - { - "text": "Enhance the efficiency of the judiciary and secure access to concrete remedies for victims of human rights violations.", - "values": [ - "4 - General action" - ] - }, - { - "text": "Activate efforts to improve the living conditions of detainees pretrial and after conviction and also to implement all the requirements of minimum standards of treatment of inmates", - "values": [ - "4 - General action" - ] - }, - { - "text": "Continue guaranteeing the enjoyment of economic, social and cultural rights in order to reach the MDGs ", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Make sexual harassment illegal ", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "That the National Constituent Assembly seize the opportunity to incorporate into the new Constitution those fundamental rights and guarantees enshrined in the international treaties which it has ratified ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Continue implementing policies to improve the general health of its population", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Ensure that the minimum age of marriage is 18 for both boys and girls", - "values": [ - "4 - General action" - ] - }, - { - "text": "The RMI is committed to properly implementing children's rights and improving the situation of children at the national level.", - "values": [ - "4 - General action" - ] - }, - { - "text": "Take further measures to prevent the murder of women by their partners, prosecute perpetrators and improve awareness of the issue", - "values": [ - "4 - General action" - ] - }, - { - "text": "Continue work to enhance equality and combat discrimination including discrimination against women", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Repeal those amendments to Hungary's Asylum Law, Law on Criminal Procedure and Criminal Code that are inconsistent with its international human rights obligations", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Ratify treaties and other international human rights instruments to which Saint Kitts and Nevis is not party yet, particularly the Optional Protocol to the Convention on the Rights of the Child on the sale of children, child prostitution and child pornography", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Enhance capacity of health centres and health service providers, with a view to improving access to quality health services of people, particularly in the rural areas", - "values": [ - "4 - General action" - ] - }, - { - "text": "Include all the rights protected under the Convention on the Rights of the Child, particularly social and cultural rights, in the Federal Constitutional Law on the Rights of Children", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Continue its efforts to strengthen human rights, particularly within the framework of the family ", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Punish domestic violence, as well as promote awareness-raising campaigns on gender violence, including \u201chonour\u201c crimes", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Strengthen inter-religious dialogue and take measures to promote reconciliation among concerned groups", - "values": [ - "4 - General action" - ] - }, - { - "text": "Continue strengthening its policies and social programmes in order to increase the standard of living of its people, in particular of the most excluded groups", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Consider issuing a standing invitation to all the special procedures in order to further its collaboration with the United Nations human rights mechanism ", - "values": [ - "3 - Considering action" - ] - }, - { - "text": "Intensify its work to combat manifestations of neo-Nazism, extremism, racism, xenophobia and anti-Semitism in view of an increase of such acts in the past years", - "values": [ - "4 - General action" - ] - }, - { - "text": "Strengthen the measures to stop violence against women, including information and awareness-raising programs", - "values": [ - "4 - General action" - ] - }, - { - "text": "Declassify State secret information on the death penalty", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Consider accession to the International Convention on the Protection of the Rights of All Migrant Workers and Member of Their Families", - "values": [ - "3 - Considering action" - ] - }, - { - "text": "Strengthen the structures of the human rights commission in order to bring it to full compliance with the Paris Principles and operationalize the anti-corruption commission", - "values": [ - "4 - General action" - ] - }, - { - "text": "Grant access to detainees to ICRC, according to the usual terms of the Committee, as well as to international monitors.", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Take all measures to eliminate child labour ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Reinforce its legislative framework to protect children from all forms of sexual abuse and exploitation, including in the family ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Fight against impunity by ensuring that all those who are guilty of human rights violations are brought to justice", - "values": [ - "4 - General action" - ] - }, - { - "text": "Modify criminal legislation to ensure that domestic violence becomes a crime", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Further increase its efforts to effectively combat all forms of violence against women", - "values": [ - "4 - General action" - ] - }, - { - "text": "Continue cooperation programmes with ILO with a view to further developing the National Programme for Decent Work ", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Continue efforts to amend the Criminal Code in order to prohibit the trafficking and sale of children for all purposes and to extend criminal liability to legal persons, and fully implement those amendments", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Amend legislation that restricts the ability of Palestinian refugees to own property, specifically the Presidential Decree of January 1969, as modified in April 2001", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Eliminate discrimination against women, including in the Nationality Act, so as to enable Kuwaiti women to pass on their nationality to their children", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Ensure that all those responsible for human rights violations are brought to justice before civilian jurisdiction", - "values": [ - "4 - General action" - ] - }, - { - "text": "Publicize the statistics on executions", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Strengthen the role of bodies and institutions such as the Ombudsman and the National Council for Cooperation on Ethnic and Demographic Issues, in particular the Commission for Protection against Discrimination, by enhancing their human and logistical capacity", - "values": [ - "4 - General action" - ] - }, - { - "text": "Consider policies and legal provisions to encourage equal pay practices ", - "values": [ - "3 - Considering action" - ] - }, - { - "text": "Manage waste disposal and hazardous materials in an environmentally sound manner and deal with this issue in a way that ensures the preservation of the environment and the health of individuals", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Provide improved training for officials regarding human rights, including racial discrimination and xenophobia issues.", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Strengthen efforts to address the phenomenon of alcoholism and drug addiction of children and youth, and in this regard, strengthen health-related awareness-raising programmes", - "values": [ - "4 - General action" - ] - }, - { - "text": "Continue to adapt national legislation in order to better implement the provisions of international treaties ", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Adopt legislation to explicitly prohibit all forms of corporal punishment everywhere, launch awareness-raising campaigns on the negative impact of corporal punishment in children, and provide training to teachers, parents, community leaders and penitentiary institutions officers ", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Ensure that the right to freedom of expression and its other international human rights commitments are upheld in any move to adopt a cyber law", - "values": [ - "4 - General action" - ] - }, - { - "text": "Continue to adopt appropriate policies and laws to counter discrimination of women migrant workers and ensure that their children can enjoy rights to education and health", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Adopt specific legislative measures to criminalize corporal punishment not only abuse in all settings, together with major awareness-raising campaigns to promote an overall culture of non-violence through education, dialogue and cooperation", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Continue work on the protection of the rights of persons with disabilities", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Provide the National Human Rights Commission with the requisite support to ensure its effectiveness", - "values": [ - "4 - General action" - ] - }, - { - "text": "Enact legislation explicitly prohibiting female genital mutilation - strengthen awareness-raising and educational efforts to eliminate that practice and its underlying cultural justification - and ensure that offenders are prosecuted and punished ", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Continue its programs aimed at combating violence against women", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Consider ratification of the Optional Protocol to the Convention on the Elimination of All Forms of Discrimination against Women and take measures in order to combat discrimination against women", - "values": [ - "3 - Considering action" - ] - }, - { - "text": "Ensure a system for registering the complaints of victims of torture or ill treatment, in particular persons in detention or military conscripts", - "values": [ - "4 - General action" - ] - }, - { - "text": "Continue its efforts to vigorously prevent, combat and prosecute violent hate crimes ", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Seek to improve health outcomes for children, including by improving immunization rates and ensuring that development assistance funding reaches children in the outer islands ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Increase the number and capacity of shelters for women who are victims of violence ", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Continue promoting initiatives aimed at empowering women of the country in their economic, political and social level ", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Move expeditiously to establish a National Institution for Human Rights in accordance with the Paris Principles", - "values": [ - "4 - General action" - ] - }, - { - "text": "Continue its leading international efforts to tackle global warming, including by reminding developed countries and other major emitting States of their obligation to help and protect human rights in Palau by reducing greenhouse gas emissions to safe levels ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Continue to implement identified measures, plans and policies focusing mainly on poverty eradication", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Continue carrying out the principles contained in CAT, with a specific focus on the elimination of arbitrary detention, especially of minors, and of violence occurring at the hands of law enforcement personnel", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Establish a transitional justice mechanism to determine the responsibilities of perpetrators and ensure their accountability, and provide reparations for the victims of violations and oppression by the previous political regime ", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Pay particular attention to the improvement of prison conditions ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Recognize all existing religious minorities in the territory of the Islamic Republic of Iran and respect the human rights of their members", - "values": [ - "4 - General action" - ] - }, - { - "text": "Seek to further targeted technical assistance and capacity-building towards its key initiatives in meeting its human rights obligations at the national, regional and international levels ", - "values": [ - "1 - Minimal action" - ] - }, - { - "text": "Agree that the visit requested in 2007 by the Special Rapporteur on violence against women be carried out, and use the opportunity to organize transparent consultations with all stakeholders", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Strengthen policies to protect children, vulnerable groups and the disadvantaged ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Consider treating economic, social and cultural rights on the same footing, and with the same emphasis as civil and political rights", - "values": [ - "3 - Considering action" - ] - }, - { - "text": "Commute all existing death sentences and re-introduce a moratorium on executions with a view to the abolition of the death penalty.", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Continue to combat terrorism in all its manifestations ", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Adopt and implement measures necessary to address the needs and challenges of juveniles in prison custody, including raising the minimum age of crime responsibility, in line with international standards ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Continue its efforts to further accelerate its ongoing process to promote and protect human rights and freedoms ", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Continue to protect the natural family and marriage, formed by a husband and a wife, as the fundamental unity of society, as well as the unborn", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Continue providing support for the work of international humanitarian organizations, including OHCHR", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Amend the law on associations to remove undue restrictions on civil society organizations", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Continue its efforts to improve the protection of human rights, especially by eliminating discrimination based on sex, race, caste and religion", - "values": [ - "4 - General action" - ] - }, - { - "text": "Identify the root causes of trafficking in persons and sexual exploitation of children in order to provide appropriate solutions", - "values": [ - "4 - General action" - ] - }, - { - "text": "Raise the age of criminality", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Finalize the establishment procedure for the national human rights institution according to the Paris Principles", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Ratify CRC and CEDAW ", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Launch government programmes to raise the awareness of women about their constitutionally guaranteed rights", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Consider a legal reform in order to address also in an effective way the so-called honour killings or crimes", - "values": [ - "3 - Considering action" - ] - }, - { - "text": "Consider establishing, as soon as possible in 2010, a full constitutional assembly that will shape the future of Fiji for Fijians and by Fijians", - "values": [ - "3 - Considering action" - ] - }, - { - "text": "Increase efforts to provide care to trafficking victims and end the practice of jailing children found in prostitution and increase efforts to raise awareness among vulnerable populations of the danger of trafficking.", - "values": [ - "4 - General action" - ] - }, - { - "text": "Continue working for the promotion of international solidarity and eradication of poverty.", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Improve enforcement and coordination of national legislation and policies on the trafficking of persons, especially women and children, and to raise the awareness of this issue amongst the public", - "values": [ - "4 - General action" - ] - }, - { - "text": "Step up its efforts towards the ratification of other international human rights treaties that it is not yet a state party", - "values": [ - "4 - General action" - ] - }, - { - "text": "Take further concrete measures to strengthen relevant legislation to combat discrimination.", - "values": [ - "4 - General action" - ] - }, - { - "text": "Guarantee the full enjoyment of the rights on natives of America in line with the United Nations Declaration on the Rights of Indigenous Peoples ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Give more priority to returnee communities for economic development initiatives, so that returnees are given easier access to social welfare systems and to take effective measures to recognize their years of work and their right to a pension", - "values": [ - "4 - General action" - ] - }, - { - "text": "Improve its fight against illiteracy in order to reverse the current trend ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Incorporate the crime of torture as a specific criminal offence under the Penal Code", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Improve and upgrade detention facilities.", - "values": [ - "4 - General action" - ] - }, - { - "text": "Establish a comprehensive framework on juvenile justice which is in conformity with international standards", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Take all possible measures to implement the recommendations of the UPR process.", - "values": [ - "4 - General action" - ] - }, - { - "text": "Enhance measures to promote gender equality and gender mainstreaming in public institutions, policies and programmes ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Adopt measures to ensure protection from torture and forced hospitalization and medication in psychiatric institutions", - "values": [ - "4 - General action" - ] - }, - { - "text": "Deepen the national dialogue to establish an accountability mechanism for human rights violations committed in the past", - "values": [ - "4 - General action" - ] - }, - { - "text": "Comply with the principles of ICRMW. ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Amend its laws, including the Bill of Rights, to protect against discrimination on the basis of sex and to prohibit violence against women, including domestic violence ", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Strengthen national mechanisms to allow children's access to education and health services, specifically in rural areas", - "values": [ - "4 - General action" - ] - }, - { - "text": "Stop the widespread practices of enforced disappearance, arbitrary detention and the use of sexual violence, torture and ill-treatment in its detention centres. This includes granting international monitoring bodies immediate access without undue restriction to all detainees, and publish a list of all detention facilities", - "values": [ - "4 - General action" - ] - }, - { - "text": "Continue its process of supporting integration for newly arrived immigrants, particularly those from ethnic minority backgrounds ", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Increase education institutions and health services in rural areas, and seek international cooperation to this end ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Accede to the Second Optional Protocol to the International Covenant on Civil and Political Rights and establish without delay a de jure moratorium on executions with a view to permanently abolishing the death penalty", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Cooperate with, inter alia, UNESCO and UNICEF to improve the education sector ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Take measures to fully guarantee the respect of freedom of expression and of freedom of association and assembly", - "values": [ - "4 - General action" - ] - }, - { - "text": "Ensure participation of indigenous peoples in the decision-making and their equal representation in the governance of the country", - "values": [ - "4 - General action" - ] - }, - { - "text": "Provide training in the area of the rights of the child for State officials and civil servants at all levels, in particular to prevent cases of the unjustified removal of children from their families", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Remove the current norm for mandatory sterility to officially register gender reassignment", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Set a date for ratifying the Optional Protocol to the Convention on the Elimination of All Forms of Discrimination against Women ", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Amend laws that criminalize homelessness and which are not in conformity with international human rights instruments", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Implement new measures to ensure victims of rape seek redress, and modify the law to ensure the penalties for rape are more severe", - "values": [ - "4 - General action" - ] - }, - { - "text": "The United States is fully committed to ensuring that individuals it detains in any armed conflict are treated humanely. All U.S. military detention operations conducted in connection with armed conflict, including at Guantanamo Bay, are carried out in accordance with U.S. law, international humanitarian law including Common Article 3 of the Geneva Conventions of 1949, and other international laws, including the Convention Against Torture, as applicable.", - "values": [ - "4 - General action" - ] - }, - { - "text": "Take effective steps to end discrimination against Roma in education, employment, housing and access to services with a special focus on ending continued segregation of Roma children at schools", - "values": [ - "4 - General action" - ] - }, - { - "text": "Continue its efforts to ensure gender equality ", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Support the efforts of the judiciary to effectively implement the adopted reforms by ensuring adequate financial support from the Ministry of Justice as foreseen in the national development plan in the area of justice", - "values": [ - "4 - General action" - ] - }, - { - "text": "Introduce limitations to the practice of administrative detention in conformity with international law and to desist from its multiple extensions, and eventually ending them", - "values": [ - "4 - General action" - ] - }, - { - "text": "Ratify the Rome Statute of the International Criminal Court which was already signed in 1999 and guarantee its full implementation into national law", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Give due consideration to the cultural and religious sensitivities of newly arrived foreigners and migrants when designing social integration policies and programmes ", - "values": [ - "3 - Considering action" - ] - }, - { - "text": "Properly investigate cases of the excessive use of force by law enforcement officials against protestors in 2011 and 2012, including prosecuting and punishing all those responsible", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Follow up the CEDAW recommendation to Guatemala to ensure that indigenous women have full access to bilingual education, health services and credit facilities and to fully participate in decision making processes.", - "values": [ - "4 - General action" - ] - }, - { - "text": "Ratify and implement ILO Convention No. 169 concerning Indigenous and Tribal Peoples in Independent Countries ", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Announce an immediate moratorium and initiate a policy review with the intention of abolishing the death penalty by December 2013 and then ratify the ICCPR-OP 2 by December 2014", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Take more steps to expand free education to cover all grades in secondary schools", - "values": [ - "4 - General action" - ] - }, - { - "text": "Continue to increase and consolidate the Green Morocco and housing social programs which are essential for the eradication of poverty and social exclusion ", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Consider incorporating strategies for human rights education and training in its educational policies ", - "values": [ - "3 - Considering action" - ] - }, - { - "text": "Provide comprehensive and age-appropriate sexuality education, including on prevention of unwanted pregnancies ", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Fully implement its Vision 2025, expand existing programmes such as the Gramashakthi People\u2019s Movement, or establish new initiatives where necessary, to boost poverty alleviation efforts and to address regional disparities", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Take concrete measures aiming at reducing overcrowding in the prisons of the country and ensuring that conditions of detention are in conformity with the human rights of persons deprived of their liberty ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Continue to implement its socio-economic development strategies and plans for the country ", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Coordinate preventive measures for the elimination of this trend (of cases of violence and sexual abuse of children) and develop preventative training programs, in particular for teachers and other professionals working with children", - "values": [ - "4 - General action" - ] - }, - { - "text": "Continue efforts to implement the national strategy for combating terrorism and violent extremism", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Implement the strategy to ensure free health care for children aged from 0 to 5", - "values": [ - "4 - General action" - ] - }, - { - "text": "Seek the necessary financial and material support from the international community to fulfil its humanitarian responsibilities.", - "values": [ - "1 - Minimal action" - ] - }, - { - "text": "Abolish the death penalty for drug trafficking offences", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Review relevant legal provisions and practices with a view to ensuring strict compliance with the principle of non-refoulement", - "values": [ - "3 - Considering action" - ] - }, - { - "text": "Continue to raise awareness regarding the criminal nature of domestic violence and bring those responsible before the courts", - "values": [ - "4 - General action" - ] - }, - { - "text": "Aim to eliminate segregated education, which is not based on strict individual assessment, and draft a national strategy for the introduction of an inclusive education ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Prepare and approve the national human rights action plan and inform Member States of its future implementation ", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Intensify labour inspections focusing on child labour and prosecution of violators of child labour legislation", - "values": [ - "4 - General action" - ] - }, - { - "text": "Continue its efforts in the field of women's rights protection", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Improve the enforcement of the Law on Combating Trafficking in persons by strengthening the capacity of law enforcement to detect and prosecute perpetrators, and by expanding services for victims", - "values": [ - "4 - General action" - ] - }, - { - "text": "Consider the possibility of signing and ratifying the main universal human rights instruments to which it is not yet a party ", - "values": [ - "3 - Considering action" - ] - }, - { - "text": "Consider withdrawing the reservation made on article 16 to the Convention on the Elimination of All Forms of Discrimination against Women", - "values": [ - "3 - Considering action" - ] - }, - { - "text": "Ensure that the Protection of State Information Bill, when adopted, fully complies with international human rights law ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Continue efforts to fight against sexual harassment and violence against women, including by increasing the number of police units and personnel specialized in this fight", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Specify the definition and legal scope of the term "divisionism" and revise Law 18/2008 punishing the crime of "genocide ideology" in order to prevent its abuse for political or partisan purpose", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Continue to combat trafficking in human beings and smuggling of migrants", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Continue its efforts to eradicate any form of discrimination against older persons", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Continue its efforts regarding the implementation of the national plan to combat human trafficking", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Strengthen respect for human rights within the security forces while vigorously investigating and prosecuting alleged human rights abuses, in order to restore the people's faith in both the judiciary and law enforcement ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Effectively combat racial profiling and the use of excessive force by the police against coloured persons", - "values": [ - "4 - General action" - ] - }, - { - "text": "Ratify CAT as soon as possible and fully implement it without delay", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Consider ratifying or acceding to the international human rights instruments to which it is not yet party", - "values": [ - "3 - Considering action" - ] - }, - { - "text": "Continue its efforts to establish an educational system in conformity with international standards, especially, as recommended by the Committee of the Rights of the Child, through the inclusion of human rights education in the curricula.", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Consider amending the institution of the Ombudsman currently available, so that it is more independent from the office and it can address human rights controversies among citizens and the various State institutions in an impartial and autonomous manner", - "values": [ - "3 - Considering action" - ] - }, - { - "text": "Accede to the Rome Statute of the International Criminal Court, including accession to its Agreement on Privileges and Immunities", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Take further practical steps to reduce the high level of maternal and child mortality, inter alia, through better access to maternal health services ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Continue the work on policies for the universal access to health, including the Health System for Indigenous Peoples", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Consider the adoption of legislation to enhance the verification of the records for all fire arms transfers and the revision of the laws that stipulate self-defence without limitations", - "values": [ - "3 - Considering action" - ] - }, - { - "text": "Strengthen ongoing efforts against domestic violence, including by adopting comprehensive legislation that would establish specific offences in this realm, and by establishing adequate monitoring and investigative mechanisms", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Speed up the process of repatriating Mauritanians who in the past had been expelled, and granting them and their families a certificate of citizenship. Those who returned to Mauritania before the introduction of the corrective measures should also have their nationality re-established ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Consider becoming party to important international legal instruments to which it is not yet a party", - "values": [ - "3 - Considering action" - ] - }, - { - "text": "Ensure that the Criminal Code is applied in a non-discriminatory manner, in full compliance with articles 2, 17 and 26 of the International Covenant on Civil and Political Rights, as interpreted by the Human Rights Committee", - "values": [ - "4 - General action" - ] - }, - { - "text": "Speed up through executive action the processes of demarcation and protection of the lands of indigenous peoples and protect their respective rights", - "values": [ - "4 - General action" - ] - }, - { - "text": "Abolish the death penalty as the final form of punishment and establish a moratorium on the use of the death penalty in accordance with General Assembly resolution 62-149", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Take the necessary steps to ensure that the National Council on Gender Issues becomes fully operational", - "values": [ - "4 - General action" - ] - }, - { - "text": "Proceed with the early conclusion of the Convention against Torture", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Intensify its efforts to eradicate FGM", - "values": [ - "4 - General action" - ] - }, - { - "text": "Take appropriate measures to reconcile growing tuition fees with the level of education", - "values": [ - "4 - General action" - ] - }, - { - "text": "Address the fragmentation of anti-discrimination provisions in its legislation by adopting a robust and comprehensive anti-discrimination law", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Take adequate measures to combat racial discrimination in order to combat all forms of such discrimination ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Consider abolition of the death penalty and implementation of an immediate moratorium on executions", - "values": [ - "4 - General action" - ] - }, - { - "text": "Civil society be actively involved in the further universal periodic review process of Canada, in a meaningful and participatory manner. ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Make a concerted effort to tackle impunity nationwide", - "values": [ - "4 - General action" - ] - }, - { - "text": "Incorporate human rights into public policies and strengthen the human rights institutions", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Become party to the Optional Protocols to the International Covenant on Civil and Political Rights ", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Step up efforts to prevent and address bullying in schools, inter alia, by introducing a range of educational and socio-pedagogical methods, and consider introducing appropriate monitoring of anti-bullying strategies in schools", - "values": [ - "4 - General action" - ] - }, - { - "text": "Continue the adoption of special measures aimed at improving the quality of life of children with disabilities", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Strengthen the implementation of relevant policies, such as the Plan to Prevent and Eradicate Child Labour and the empowerment of its National Commission for the Elimination of Child Labour, in particular with regard to the ILO Convention No. 182 concerning the Prohibition and Immediate Action for the Elimination of the Worst Forms of Child Labour, to address the phenomenon of child labour ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Cooperate with OHCHR in its endeavours to harmonize the domestic legislation with international human rights standards ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Strengthen the measures taken aimed at reducing disparities between men and women in the country, particularly regarding access to education, employment and health care ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Take the necessary steps to improve education infrastructure with the aim of ensuring girls' access to school", - "values": [ - "4 - General action" - ] - }, - { - "text": "Positively consider visit requests from mandate holders, in particular the request from the Special Rapporteur on the human rights situation in the country", - "values": [ - "3 - Considering action" - ] - }, - { - "text": "Establish a national human rights institution in accordance with the Paris Principles, as recommended by the Committee on the Rights of the Child, that is adequately resourced, child-sensitive and able to provide remedies in a timely manner.", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Withdraw the rest of its reservations to the CRC, adapt the national legislation accordingly, and review those national laws where the definition of the child is not consistent with the definition of the child under article 1 of the Convention", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Strengthen actions to ensure the effective implementation of legislation aiming at reducing and eliminating trafficking and smuggling of persons", - "values": [ - "4 - General action" - ] - }, - { - "text": "Take all necessary measures to consolidate the system of protection of human rights of all persons prior to, during and in the aftermath of emergency situations", - "values": [ - "4 - General action" - ] - }, - { - "text": "Continue the ongoing efforts to promote inclusive education ", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Continue to actively promote the explicit abolition of corporal punishment against children in its domestic legislation, aiming at its full and complete prohibition", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Continue the efforts to ensure the right to adequate housing by continuing to implement plans for the construction and renovation of houses which are provided to the people free of charge ", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Ratify the International Convention for Protection of All Persons from Enforced Disappearance and the Optional Protocol to the Convention against Torture and Other Cruel, Inhuman or Degrading Treatment or Punishment ", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Ensure that the standards of education in national minorities' languages as well as teaching of minorities languages are the same as the general standards of education in the country", - "values": [ - "4 - General action" - ] - }, - { - "text": "Adopt measures to fight violence against women, in particular "honour crimes", by ensuring that perpetrators are brought to justice, and provide redress measures to victims", - "values": [ - "4 - General action" - ] - }, - { - "text": "Implement more effective monitoring of alleged cases of discrimination, ethnic and national hostilities, and racial or ethnic hatred ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Increase access to justice for sectors of the population, especially for those who live in rural areas", - "values": [ - "4 - General action" - ] - }, - { - "text": "Engage in a dialogue among all Venezuelans, including the opposition, to resolve political divisions, the economic crisis and the humanitarian situation", - "values": [ - "4 - General action" - ] - }, - { - "text": "Ratify as soon as possible the International Convention for the Protection of All Persons from Enforced Disappearance (ICPPED) and incorporate it in the national legislation as well as recognizing the competence of the Committee on Enforced Disappearances ", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Support independent work of the NGOs and create a strategy to defend human rights activists in the interest of sustainable and healthy development of the state ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Develop more legislative guarantees in order to fully comply with the provisions of the Framework Convention for the Protection of National Minorities and the European Charter for Regional or Minority Languages.", - "values": [ - "4 - General action" - ] - }, - { - "text": "Finalize its plan to elaborate a national law on assistance and protection of IDPs.", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Continue its measures aimed at better taking into account vulnerable groups in public policies", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Recognize the competence of the Committee on Enforced Disappearances", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Demonstrate respect for freedom of religion or belief by recognizing the legal status of other faiths in addition to Catholicism", - "values": [ - "4 - General action" - ] - }, - { - "text": "Strengthen the work of the Bureau as well as to continue the effort to establish a National Human Rights Commission in Japan", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Continue to work on combating trafficking in human beings and illegal drug trafficking", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Continue its committed efforts in economic and social development and improving people's living standard so as to protect effectively the rights of its people ", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Envisage actions to abolish capital punishment", - "values": [ - "3 - Considering action" - ] - }, - { - "text": "Step up efforts to stop and to prevent that parties to the conflict continue to recruit children.", - "values": [ - "4 - General action" - ] - }, - { - "text": "Continue to enhance the protection and the rights of women and children", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Hold free and fair elections as soon as possible ", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Continue efforts to promote and protect the role and status of women", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Continue its efforts for ensuring the autonomy of national institutions responsible for the protection of human rights", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Investigate all disappearances in the context of the conflict in Casamance, activating reparation mechanisms for the families of the persons disappeared when needed", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Make available to the Office of the Ombudsman appropriate means and sufficient financial resources to accomplish its missions", - "values": [ - "4 - General action" - ] - }, - { - "text": "Intensify efforts to implement the country's international commitments, as well as the corresponding national strategies and plans of action regarding children's rights", - "values": [ - "4 - General action" - ] - }, - { - "text": "Continue endeavours to promote and protect the rights of children and women", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Continue to strengthen the empowerment of women in all areas of public life", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Open further its engagement with the international community in order to strengthen its capacity to ensure the enjoyment of economic, social and cultural rights by its people ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Take additional steps to improve the quality of local education, including through improving teachers' performance and providing additional support for academically challenged students", - "values": [ - "4 - General action" - ] - }, - { - "text": "Continue strengthening the reform of the judiciary and the criminal justice system in order to overcome the lack of confidence ", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Expedite the necessary legislative reforms to facilitate the reunification of children with their families", - "values": [ - "4 - General action" - ] - }, - { - "text": "Comply with its binding legal obligation to protect citizens, desist from using illegal arms and adopt the necessary measures so that, in line with the report of the Commission of Inquiry, the indiscriminate and disproportionate attacks on the civilian population cease immediately", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Take necessary steps to ratify the International Convention for the Protection of All Persons from Enforced Disappearance", - "values": [ - "4 - General action" - ] - }, - { - "text": "Establish a moratorium on the death penalty with a view to its abolition", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Continue strengthening practical measures to bring about effective implementation of the Children's Act", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Ratify the Rome Statute of the International Criminal Court and bring national legislation into conformity with its provisions", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Take new measures aimed at strengthening the existing mechanism to reduce unemployment in the country ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Reform national legislation to enable mothers with Barbadian nationality to confer their nationality to their children born abroad ", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Sign and ratify the Optional Protocol to the Convention against Torture, as well as the Optional Protocol to the Convention on the Elimination of All Forms of Discrimination against Women", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Establish an official moratorium on the death penalty with a view to abolishing it", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Consider ratifying the International Convention for the Protection of All Persons from Enforced Disappearance, the Optional Protocol to the Convention on the Elimination of All Forms of Discrimination against Women and the Convention against Discrimination in Education", - "values": [ - "3 - Considering action" - ] - }, - { - "text": "Establish an official moratorium on the use of the death penalty, with a view to its abolition", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Put an end to the ill-treatment of suffering Palestinian prisoners, particularly children, held in Israeli prisons", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Extend a standing invitation to United Nations special procedures mandate holders and initiate without delay cooperation with the Special Rapporteur on torture and other cruel, inhuman or degrading treatment or punishment", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Ensure implementation of the gender equality measures to the rural areas including for the migrant female workers ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Consolidate measures aimed at combating violence against vulnerable groups", - "values": [ - "4 - General action" - ] - }, - { - "text": "Ban executions of juvenile offenders, in compliance with article 6 of ICCPR", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Take concrete steps aimed at increasing the minimum marriage age for girls from 16 to 18", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Take measures to regularize the so-called "illegal residents" to ensure that all their rights are respected in accordance with international standards", - "values": [ - "4 - General action" - ] - }, - { - "text": "Accede to the Rome Statute of the International Criminal Court and to the Agreement on the Privileges and Immunities of the Court", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Ensure inclusive and free primary education for all children, including those with disabilities", - "values": [ - "4 - General action" - ] - }, - { - "text": "The aims pursued under the 2013-2017 development strategy include cutting down pretrial detention, improving child welfare services, strengthening penalties for infringing the rights of women, children and minorities, and improving conditions of imprisonment.", - "values": [ - "4 - General action" - ] - }, - { - "text": "Increase the number of schools providing education in minority languages, especially in the regions with concentrated minority populations", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Prevent, investigate and punish cases of torture and other ill-treatment, such as extra-judicial executions and enforced disappearances to this end, establish a national mechanism for the prevention of torture and ill-treatment", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Continue the implementation of the laws on the protection of women", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Prepare as a matter of priority a transparent and well-administered system of rules for verifying candidates' eligibility, in close connection with the assessment of the disarmament process and the strengthening of the capacity of the Electoral Complaints Committee. ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Continue its commendable efforts to empower women in social, political, economic and public life, including by continuing its positive campaigning to raise awareness of women's rights ", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Raise the age of the criminal responsibility in accordance with general comment No. 10 of the Committee on the Rights of Child", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Take further steps to protect children, including by implementing the 2014 Child Protection Act and finalizing the ratification of the Convention on the Rights of the Child, taking steps to ratify its Optional Protocol on the involvement of children in armed conflict, and by implementing the 2012 action plans to prevent the recruitment and use of child soldiers by the Somali National Army and allied militias", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Make the necessary legal amendments to guarantee freedom of association in accordance with article 22 of the ICCPR ", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Maintain its efforts to continue ensuring respect for freedom of religion and belief for all Cubans, including the right to choose one's belief at one's own discretion or not to profess any religion of any sort", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Continue implementing the national strategy for combating poverty and seek the necessary assistance in this regard ", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Strengthen the security apparatus through a civilian police in order to combat impunity, especially in cases of crimes against journalists and femicides, without involving the military apparatus", - "values": [ - "4 - General action" - ] - }, - { - "text": "Continue to focus on establishing and strengthening institutions of governance with a view to contributing towards adequate protection of human rights and fundamental freedoms for all, provisions of adequate remedies where violations occur, and zero tolerance for impunity", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Continue cooperating with the international mechanisms in order to promote and protect human rights", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Implement fully the Fourth 5-Year National Human Rights Action Plan for 2014-2019, to collective ownership of human rights", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Continue to provide adequate human and other resources to its anti-human trafficking programmes", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Examine the possibility of decriminalizing apostasy and blasphemy ", - "values": [ - "3 - Considering action" - ] - }, - { - "text": "Ensure the prosecution of traffickers, particularly through improved training of law enforcement bodies, protection for victims of human trafficking during criminal proceedings and that victims have access to counselling and receive compensation", - "values": [ - "4 - General action" - ] - }, - { - "text": "Accede to the international treaties on human rights and ratify OPCRC-AC and OP-CRC-SC", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Provide information on the coordinated approach it has taken to advance in the area of the practical enjoyment of economic, social and cultural rights and to tackle the challenges of economic sanctions as well as the spate of catastrophic consequences of recent hurricanes", - "values": [ - "1 - Minimal action" - ] - }, - { - "text": "Become a party to some conventions to which it has yet to accede, including the Convention relating to the Status of Refugees, CED and the Rome Statute ", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Become a State party of the Convention on the Rights of Persons with Disabilities ", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Continue its path of developing a financial system that will allow for assisting workers wishing to demand reparations in cases of litigation with their employer ", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Systematically investigate and collect data on violence against women and to disseminate this information", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Adhere and adapt its legislation to the Arms Trade Treaty", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Improve prison conditions, particularly addressing overcrowding and violence, including in prisons for women", - "values": [ - "4 - General action" - ] - }, - { - "text": "Ratify the OP-CRC-SC and offer quality psychological support to child victims of sexual exploitation ", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Take measures to bring about a change in attitudes, with a view to eliminating stereotypes associated with traditional gender roles in the family and in society ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Continue applying socio-economic development strategies and plans in the country, in particular those geared towards combating poverty ", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Review article 7 of the Labour Law and expand its coverage to include migrant workers", - "values": [ - "3 - Considering action" - ] - }, - { - "text": "Accede to the Optional Protocol to the Convention against Torture and Other Cruel, Inhuman or Degrading Treatment or Punishment", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Keep pursuing its efforts to promote and facilitate school enrolment and attendance, especially among children from poor families", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Ensure that all cases of sexual abuse of children are investigated and perpetrators prosecuted, and that victims are adequately compensated and rehabilitated", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Continue to expand the cooperation with the special procedures of the Human Rights Council", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Ensure the full implementation and undertake an independent assessment of the National Women's Strategy", - "values": [ - "4 - General action" - ] - }, - { - "text": "Expand programmes of education on religious tolerance in schools and monitor and protect the rights of religious minorities-promotion of the culture of religious tolerance should become the priority of the Federal, State and Local Governments", - "values": [ - "4 - General action" - ] - }, - { - "text": "Consider the ratification of major international human rights instruments ", - "values": [ - "3 - Considering action" - ] - }, - { - "text": "Systematically condemn all manifestations of racism and xenophobia in political discourse and adopt effective measures to fight against this phenomenon ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Build on its success and invest further to ensure that religious minorities can freely exercise their rights and freedoms in all spheres of life", - "values": [ - "4 - General action" - ] - }, - { - "text": "Adopt legal provisions for reduced working hours, additional paid holidays or another form of compensation in dangerous and unhealthy occupations ", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Take the necessary measures to eliminate the socio-economic disparities affecting indigenous populations ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Develop a national action plan to implement the United Nations Guiding Principles on Business and Human Rights, including specific actions to strengthen the implementation of ILO convention No. 169", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Consider ways to ensure the meaningful involvement of the Roma community in the implementation of the strategy and to focus more on efforts to change negative attitudes in Swedish society towards the Roma", - "values": [ - "3 - Considering action" - ] - }, - { - "text": "With the support of international community continue to strengthen the provision of healthcare services to its people, particularly women and children", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Streamline current measures to address the unique needs of its diverse society", - "values": [ - "4 - General action" - ] - }, - { - "text": "Sign and ratify CED", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Ratify ILO Conventions No. 87 and No. 98", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Consider the early ratification of the optional protocols to the Convention against Torture, the International Covenant on Economic, Social and Cultural Rights and the Convention on the Elimination of All Forms of Discrimination against Women", - "values": [ - "3 - Considering action" - ] - }, - { - "text": "Ratify the Istanbul Convention of the Council of Europe on violence against women and domestic violence", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Intensify efforts directed to eliminating discrimination against women, including promotion of equal access for women and girls to all levels of education", - "values": [ - "4 - General action" - ] - }, - { - "text": "Ensures full and effective implementation of the 2011 Caste-based Discrimination and Untouchability Act", - "values": [ - "4 - General action" - ] - }, - { - "text": "Move forward towards formally abolishing the death penalty ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Further strengthen measures to eliminate traditional harmful practices which are discriminatory against women and girls in particular child marriages, dowry related murders and honour killings ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Continue efforts to reduce poverty through social programmes ", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Adopt all necessary measures to eradicate the recruitment of children by armed groups", - "values": [ - "4 - General action" - ] - }, - { - "text": "Continue to seek ways to overcome the challenges and constraints identified regarding vulnerable groups, especially the increase of women representation in elective bodies ", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Take steps aimed at reducing overcrowding in detentions centres and to improve detention conditions", - "values": [ - "4 - General action" - ] - }, - { - "text": "Continue ensuring the full realization of the right to safe drinking water and sanitation for all", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Improve the legal-regulatory framework to ensure the social rights of migrants, facilitate their integration in the labour market and their access to education, as well as ensure adequate attitude towards them in society by using the media", - "values": [ - "4 - General action" - ] - }, - { - "text": "Make progress in the implementation of legislative measures to ensure the prohibition of discrimination in education, in order to protect minority groups and promote gender equality", - "values": [ - "4 - General action" - ] - }, - { - "text": "Increase resource allocation and accessibility to public health services", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Make efforts to enforce existing anti-discrimination legislation more effectively, and consider compiling statistics on ethnic minority groups in order to assess the extent and causes of inequality and evaluate the effectiveness of measures in place to address it", - "values": [ - "4 - General action" - ] - }, - { - "text": "Redouble its efforts in the fight against domestic violence by ensuring effective investigation into incidents of domestic violence and providing adequate support and assistance to victims", - "values": [ - "4 - General action" - ] - }, - { - "text": "Argentina commits itself to put into practice the mechanism contained in the Optional Protocol of the Convention against Torture and to continue the implementation of the National Plan to Combat Discrimination in all its aspects, and also to promote the second stage of the National Plan of Human Rights", - "values": [ - "4 - General action" - ] - }, - { - "text": "Establish mechanisms for the identification of victims of trafficking and their protection ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Repeal articles 400 and 403 of the Criminal Code to guarantee the right to peaceful assembly and freedom of association for all citizens, including human rights defenders", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Ratify the Rome Statute establishing the International Criminal Court ", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Ensure further progress in the creation of a climate of tolerance towards cultural and racial diversity in the society with full participation and integration of people in the development of national and local policies that affect their interests", - "values": [ - "4 - General action" - ] - }, - { - "text": "Continue addressing effectively the socio-economic inequalities faced by indigenous people ", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Integrate gender perspectives in the follow-up process to the UPR review.", - "values": [ - "4 - General action" - ] - }, - { - "text": "To continue the discouragement of any manifestation of xenophobia", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Continue and strengthen educational measures which promote a more integrated system of education that favours migrants, ethnic minorities, women and girls and the Roma community in particular ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Promote actions to eradicate sexual and domestic violence", - "values": [ - "4 - General action" - ] - }, - { - "text": "Continue the implementation of the Basic Plan for gender equality", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Seek support from the International community to advance on their efforts to implement the National Human Rights Action Plan", - "values": [ - "1 - Minimal action" - ] - }, - { - "text": "Increase gender equality", - "values": [ - "4 - General action" - ] - }, - { - "text": "Place emphasis on the rights of women and children in its policies and programmes ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Sign and ratify the Convention against Torture and ICESCR, and ratify CED ", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Continue its efforts to progressively realize the right to education, including by exploring the possibility of providing free education for at the primary level", - "values": [ - "3 - Considering action" - ] - }, - { - "text": "Revise its legislation and practice that violate the right to freedom of expression and release all persons held in this connection, e.g., Mr. Paljor Norbu and persons arrested in connection with Charter 08", - "values": [ - "3 - Considering action" - ] - }, - { - "text": "Submit the overdue reports in connection with the implementation of the International Convention on the Elimination of Racial Discrimination ", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Invite ILO experts to overcome existing challenges of implementation of the laws to protect children from the harmful effects of all forms of child labour ", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Continue strengthening the health-care infrastructure", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Adopt policies that will allow the active involvement of minority communities through consultation and participation in decision-making processes relating to areas affecting them, particularly on development issues ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Enact comprehensive equality legislation at the federal level", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Ensure the effective implementation of the Act of 2010 on female genital mutilation", - "values": [ - "4 - General action" - ] - }, - { - "text": "[Freedom of thought, conscience and religions] Including for Ahmadi Muslims, and provide that community with the accreditation it needs to worship openly and in compliance with Algerian law", - "values": [ - "4 - General action" - ] - }, - { - "text": "Explicitly prohibit all corporal punishment of children, bringing legislation into line with the 1996 Supreme Court ruling against violence in child-rearing", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Continue Government efforts to ensure decent living conditions and improve the country's economic welfare ", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Step up the efforts to combat all forms and manifestations of terrorism and extremism", - "values": [ - "4 - General action" - ] - }, - { - "text": "Effectively implement the State's Development Plan for enhancement of the capacities of women through reviewing and updating of the legislation in order to eliminate forms of discrimination against women", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Take measures to include in its legislation a precise definition of the different forms of discrimination ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Protect and promote effectively the right to a fair trial in accordance with internationally established standards ", - "values": [ - "4 - General action" - ] - }, - { - "text": "The Government of Malaysia underscores its commitment to continue ensuring the promotion and protection of all human rights in the country, taking into account the needs of the most vulnerable and disadvantaged segments as well as society's readiness particularly with regard to certain sensitive issues such as religion, race and rights of refugees or undocumented migrants, among others.", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Reinforce its programmes to include Roma girls in the mainstream education", - "values": [ - "4 - General action" - ] - }, - { - "text": "Consider adhering to the International Convention on the Protection of the Rights of All Migrant Workers and Their Family Members", - "values": [ - "3 - Considering action" - ] - }, - { - "text": "Consider the progressive ratification of pending human rights international treaties ", - "values": [ - "3 - Considering action" - ] - }, - { - "text": "Continue working towards the ratification of major international human rights instruments, such as CRPD ", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Ensure that the procedure to request and recognize refugee status be in compliance with the 1951 Convention relating to the Status of Refugees and its 1967 Protocol", - "values": [ - "4 - General action" - ] - }, - { - "text": "Ratify without reservations the Convention on the Elimination of All Forms of Discrimination against Women and its Optional Protocol, and the Protocol to the African Charter on Human and People's Rights on the Rights of Women in Africa ", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Continue to ensure the implementation of ratified human rights treaties", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "That the legislation related to violence against women, which would be promulgated based on the voluntary pledges made by Egypt, include provisions aimed at eliminating de jure and de facto discrimination against women", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Effectively disseminate and implement the United Nations declaration on human rights defenders, including through removing onerous registration and reporting requirements and procedures under which local non-governmental organizations must seek approval from and regularly report to the Interior Ministry, as well as provide that ministry with advance notification of any funding from abroad", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Guarantee human rights defenders full legitimacy and protection, in accordance with the United Nations Declaration on Human Rights Defenders", - "values": [ - "4 - General action" - ] - }, - { - "text": "Ending use of arbitrary detention, torture and excessive force by law enforcement officials ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Continue with efforts to empower women economically, politically and socially, and take all necessary measures to eliminate all forms of discrimination against women", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Integrate the gender perspective in the follow-up process to the UPR. ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Rescind the 2006 Council of Ulemo fatwa against women attending mosques ", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Modify or repeal parts of the trade union law that unduly restrict freedom of association to ensure the ability of all workers to form and join independent trade unions", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Mandate the Constitutional Court to act upon violations of the individual rights and freedoms guaranteed under the Constitution. This possibility should also help to remedy violations of the land and environmental rights of indigenous and herder peoples, including the right to safe drinking water ", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Continue its activities to serve a better understanding between all people and religions", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Bring the 2009 Press and Publications Act in line with its international obligations, and put in place effective enforcement measures ", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Continue work aimed at ratification of international instruments, including the Convention on the Rights of Persons with Disabilities and the Second Optional Protocol to the International Covenant on Civil and Political Rights", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Take the necessary measures to ensure freedom of expression and opinion, as well as freedom of association and assembly, in accordance with international human rights standards", - "values": [ - "4 - General action" - ] - }, - { - "text": "Continue its efforts to combat racial and ethnic discrimination, in particular through programmes promoting tolerance in public education", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Redouble its efforts for the ratification of the Convention against Torture and Other Cruel, Inhuman or Degrading Treatment or Punishment ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Take measures without delay to ensure that forces loyal to the Government are made accountable for their indiscriminate targeting of civilians, civilian vessels as well as civilian property and infrastructure, in order to end the atmosphere of impunity", - "values": [ - "4 - General action" - ] - }, - { - "text": "Promote a culture of equality through the equal participation of all members of the society and, in particular the participation of women in rural areas", - "values": [ - "4 - General action" - ] - }, - { - "text": "Ensure that all allegations of torture are promptly, impartially and effectively investigated, and similarly all incidents of death in custody are thoroughly and impartially investigated, and those found responsible are prosecuted and punished accordingly ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Strengthen the measures aimed at alleviating extreme poverty", - "values": [ - "4 - General action" - ] - }, - { - "text": "Civil society be actively involved in the implementation of the review.", - "values": [ - "4 - General action" - ] - }, - { - "text": "Take measures to improve conditions related to treatment of inmates within prisons, through increasing the capacity as already initiated by the Government and through measures for maintaining order within prisons", - "values": [ - "4 - General action" - ] - }, - { - "text": "Formulate a national strategy to promote gender equality so as to advance the status of women, combat violence and eliminate discrimination against women", - "values": [ - "4 - General action" - ] - }, - { - "text": "Continue efforts to guarantee better implementation of education plans particularly in rural areas", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Continue enhancing the quality of the access to education, including equal access to education for all children ", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Ratify the Convention against Torture and Other Cruel, Inhuman or Degrading Treatment or Punishment, the International Covenant on Civil and Political Rights and the International Convention on the Elimination of All Forms of Racial Discrimination", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Expediently attend to the issue of forced labour as raised by the ILO Committee of Experts ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Take extra measures to support migrants and implement the recommendations of the Committee on the Rights of Child with regard to migrants ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Work towards ending the prosecution of civilians in military courts and transfer all cases of civilians facing proceedings before military courts to civilians courts", - "values": [ - "4 - General action" - ] - }, - { - "text": "Continue the measures in favour of different religious groups for the exercise of freedom of religion and conscience", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Issue a standing invitation to all special procedures mandate holders and respond positively to requests for their visits ", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Take immediate effective legal and practical measures to prevent and combat trafficking in persons, in particular women and children, and make the offenders accountable", - "values": [ - "4 - General action" - ] - }, - { - "text": "Taking into account the high level of infant mortality, disseminate and implement promptly the Plan to Achieve the Millennium Development Goals 4 and 5, using a rights-based approach to maternal and child health ", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Prepare and adopt a comprehensive policy to assist and prevent children from living in the street", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Establish mechanisms for consultation with indigenous peoples to adopt policies and legislation that promote their rights", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Take concrete measures to raise public awareness about LGBT rights, including the guarantee of the right of assembly and association", - "values": [ - "4 - General action" - ] - }, - { - "text": "Continue efforts to provide better living standards and share its experience of a developed health care with other countries, in particular, within the region", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Consolidate the concepts of human rights through students' activities and exhibitions organized by Omani Universities", - "values": [ - "4 - General action" - ] - }, - { - "text": "Disseminate the report presented by the Mexican Government, as well as the observations and final recommendations resulting from the UPR, at the national level", - "values": [ - "4 - General action" - ] - }, - { - "text": "Consider accession to the main regional and international human rights instruments ", - "values": [ - "3 - Considering action" - ] - }, - { - "text": "Seek, as necessary, international assistance in the elaboration and implementation of programmes for the promotion of human rights", - "values": [ - "1 - Minimal action" - ] - }, - { - "text": "Continue with determination to promote and protect human rights in the land of Teranga, with the support of the international community ", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Ensure the implementation of gender equality policies, including through mainstreaming gender equality training in the education sector", - "values": [ - "4 - General action" - ] - }, - { - "text": "Continue to advance in the recognition of the differences, and the respect for the rights, of vulnerable groups, bearing in mind the duty to ensure equality among all people, paying special attention to the poorest provinces and the systemic inequalities that may exist between rural and urban areas", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Finalize the procedure of ratification of Convention against Torture and the Optional Protocol thereto", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Continue to ensure that human rights principles are integrated in domestic laws ", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Strengthen its legal arsenal by ratifying the Convention against Torture and by acceding to the International Covenant on Economic, Social and Cultural Rights", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Establish a time frame and a follow-up mechanism regarding the improvements on the situation of detainees in prisons.", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Fully implement the Domestic Violence Act and the Sexual Offences Act, in order to improve support and access to justice for survivors of gender-based violence", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Continue to improve the education and healthcare systems in cooperation with relevant international organisations", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Take immediate steps to end the persecution of human rights defenders ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Pass legislation explicitly defining and prohibiting sexual harassment in the public and private sectors, with protections against retaliation for those who report", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Revise its Personal Status Act to ensure that women and men have equal rights", - "values": [ - "3 - Considering action" - ] - }, - { - "text": "Develop clear medical guidelines on access to legal abortion ", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Ensure fair distribution of national income, taking special account of southern regions, which were hurt by long years of war ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Consider ratifying the human rights conventions that the country has not yet acceded to", - "values": [ - "3 - Considering action" - ] - }, - { - "text": "Strengthen its policies and laws against domestic violence towards women", - "values": [ - "4 - General action" - ] - }, - { - "text": "Amend the Personal Status Law of 1992 and the Citizenship Law of 1990 to prevent discrimination and violence against women in marriage, divorce, guardianship, testimony, property, nationality, child custody and inheritance, and repeal all discriminatory provisions of the Penal Code, including articles 232, 273 and 275, as recommended by the CEDAW Committee, and the proposed amendment to article 26 of the Penal Code.", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Consolidate its strategies and programmes to reduce the phenomenon of maternal and child mortality ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Scale up efforts to ensure that all children are issued with a birth certificate", - "values": [ - "4 - General action" - ] - }, - { - "text": "Take steps to halt all intimidations and harassment by law enforcement officials against human rights defenders", - "values": [ - "4 - General action" - ] - }, - { - "text": "Ensure 100 per cent access to birth registration. Eliminate the late enrolment fine as an incentive for registration", - "values": [ - "4 - General action" - ] - }, - { - "text": "Take necessary measures to finalize the process of establishing the National Human Rights Commission", - "values": [ - "4 - General action" - ] - }, - { - "text": "Ensure universal suffrage for all adults of voting age, regardless of ethnicity", - "values": [ - "4 - General action" - ] - }, - { - "text": "Maintain and strengthen its initiatives on the promotion and protection of the rights of the child particularly with regard to children with disabilities ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Consider ratifying the Rome Statute of the International Criminal Court, the International Convention for the Protection of All Persons from Enforced Disappearance and the first Optional Protocol to the International Covenant on Civil and Political Rights", - "values": [ - "3 - Considering action" - ] - }, - { - "text": "Consider becoming a party to the International Convention on the Rights of Migrant Workers and Members of Their Families ", - "values": [ - "3 - Considering action" - ] - }, - { - "text": "Remedy the low participation of women in public and political life and combat domestic violence", - "values": [ - "4 - General action" - ] - }, - { - "text": "Continue its efforts to protect and promote the enjoyment of human rights of the older persons", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Sign and ratify the International Covenant on Civil and Political Rights, the Convention against Torture and the International Convention on the Elimination of All Forms of Racial Discrimination", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Strengthen the institution to enable Zimbabwe to defend its sovereignty and protect the human rights of its people", - "values": [ - "4 - General action" - ] - }, - { - "text": "Ratify the International Labour Organization (ILO) Freedom of Association and Protection of the Right to Organise Convention, 1948 (No. 87) and finalize the domestic procedures to accede to the International Convention on the Protection of the Rights of All Migrant Workers and Members of Their Families", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Consider conducting studies on domestic violence, maltreatment and abuse within the family as well as intimidation at schools, in accordance with the recommendations made by the Committee on the Rights of the Child", - "values": [ - "3 - Considering action" - ] - }, - { - "text": "Consider the establishment of a national human rights institution in accordance with the Paris Principles ", - "values": [ - "3 - Considering action" - ] - }, - { - "text": "Live up to the highest standards of international law by repealing or amending the criminal defamation clauses in its Penal Code", - "values": [ - "4 - General action" - ] - }, - { - "text": "Repeal provisions criminalizing homosexuality, with the aim of fully respecting the principles of equality and non-discrimination", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Avoid besieging, and ensure for the population access to food, basic services and medical assistance", - "values": [ - "4 - General action" - ] - }, - { - "text": "Step up efforts to ensure a safe environment for education and to work on implementing a model plan for human rights education, which aims to integrate human rights in the educational system at various levels", - "values": [ - "4 - General action" - ] - }, - { - "text": "Consider extending a standing invitation to special procedure mandate holders", - "values": [ - "3 - Considering action" - ] - }, - { - "text": "Continue in the successful policy of combating the trafficking of persons at the national level and participate in such efforts at the international level ", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Ratification of the International Convention on the Protection of the Rights of All Migrant Workers and Members of Their Families", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Continue to take further steps, with a view to combating racism, racial discrimination, xenophobia and related intolerance, and to implement the existing and newly adopted legislation", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Continue to give priority attention to the protection of women and children from domestic violence, including by implementing and closely monitoring the impact of the Domestic Violence Prevention Act ", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Pass laws at the national and state levels to address domestic violence and other forms of violence against women", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Legislate to guarantee the freedoms of expression, of assembly and of opinion", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Establish legal remedies that are accessible to women and ensure that women who report violations are treated in a gender-sensitive manner at all stages of judicial proceedings", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Continue the current efforts to overcome the difficulties in meeting all the MDGs and in guaranteeing harmonious development for the population of Cape Verde ", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Follow other principles enshrined in the United Nations Declaration on the Rights of Indigenous Peoples", - "values": [ - "4 - General action" - ] - }, - { - "text": "Ratify the Optional Protocol to the Convention against Torture (OPCAT)", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Enhance its efforts to comprehensively address the issue of violence against women by, inter alia, putting in place preventive measures such as education and awareness-raising", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Ensure accountability and guarantee prompt and effective investigation of torture and of all cases of ill-treatment", - "values": [ - "4 - General action" - ] - }, - { - "text": "Conduct independent, impartial and transparent investigations into all human rights allegations, such as those raised by the Human Rights Committee and Special Rapporteur mandate holders, with a view towards ensuring against impunity ", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Ratify CAT and accede to its Optional Protocol ", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Criminalize domestic violence", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Increase its efforts to effectively guarantee human rights of persons with disabilities, while welcoming the signing of the Convention and urging their prompt implementation ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Eliminate all forms of discrimination against the Roma community, religious minorities, and migrants, and ensure equal opportunities for the enjoyment of economic, social and cultural rights, including education, health and housing", - "values": [ - "4 - General action" - ] - }, - { - "text": "Consider effective implementation of the Private Sector Labour Act, with a view to addressing problems faced by migrant labour and also address the negative aspects of the sponsorship system", - "values": [ - "3 - Considering action" - ] - }, - { - "text": "Establish an explicit legal ban on corporal punishment of children in the home", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Consider the ratification of the International Convention on the Protection of the Rights of All Migrants Workers and Members of their Families", - "values": [ - "3 - Considering action" - ] - }, - { - "text": "Establish a moratorium on the use of the death penalty with a view to abolishing it", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Continue to mobilize resources and seek the necessary support to enhance its capacity to fulfil its human rights obligations", - "values": [ - "4 - General action" - ] - }, - { - "text": "Continue to promote sustainable economic and social development to raise people\u2019s living standards", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Continue taking measures to promote education for all children ", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Promote the institution of the family in its policies for the promotion and protection of human rights ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Review its laws relating to abortion and, more specifically, remove punitive provisions imposed on women who undergo abortion and provide them with access to quality services for the management of complications arising from unsafe abortion ", - "values": [ - "3 - Considering action" - ] - }, - { - "text": "Continue to implement measures aimed at addressing women's occupational segregation and the diversification of their academic and professional choices, including in non-traditional fields", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Adopt additional measures, including legislative, to eliminate the practice of child labour exploitation and the use of corporal punishment for children", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Encourage enacting legislation that protects and promotes the rights of the indigenous peoples", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Continue activities in ensuring women's rights and gender equality ", - "values": [ - "3 - Considering action" - ] - }, - { - "text": "Consider incorporating its international human rights obligations into domestic law ", - "values": [ - "3 - Considering action" - ] - }, - { - "text": "Intensify its development programmes focusing on alleviating poverty and ensuring adequate standards of life for Fijians, while seeking technical and financial assistance, whenever needed, from the relevant United Nations bodies", - "values": [ - "4 - General action" - ] - }, - { - "text": "Strengthen efforts to combat trafficking in human beings with full cooperation of countries in source, transit and destination ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Ensure that international standards on nationality and statelessness continue to be fully applied in the country to all individuals without discrimination ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Take up all effective measures in order to effectively tackle reported phenomena of violence against women and girls, domestic and sexual violence, as well as femicide", - "values": [ - "4 - General action" - ] - }, - { - "text": "Accelerate the process to establish a transitional justice system that includes an equal participation of women, that relies on personnel trained to deal with cases of sexual violence and violence against women, and whose rulings are transparent and public", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Continue applying programmes and measures to improve the enjoyment of the right to education and the right to health, including addressing the HIV/AIDs pandemic", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Further enhance its efforts to ensure adequate legal protection for all segments of the population", - "values": [ - "4 - General action" - ] - }, - { - "text": "Initiate awareness programmes to educate citizens on existing and new legislation", - "values": [ - "4 - General action" - ] - }, - { - "text": "Proceed to a formal and effective abolishment of death penalty through the ratification of the 2nd Optional Protocol to the ICCPR", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Increase cooperation with the special procedures. ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Put an end to all forms of discrimination by employers against workers from religious minorities in the public and private sectors, including the adoption of internal regulations banning the wearing of clothes representing a religion or a culture", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Facilitate the necessary process for establishing a national human rights institution, which should ensure the enjoyment of basic human rights for all citizens", - "values": [ - "4 - General action" - ] - }, - { - "text": "Establish a moratorium on the death penalty with a view to formally abolishing capital punishment in all cases and circumstances", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Take all possible steps in strengthening the capacity of Government Agencies identified for the implementation of the recommendations of the LLRC Action Plan", - "values": [ - "4 - General action" - ] - }, - { - "text": "Allow access by humanitarian personnel to vulnerable populations in need of assistance and cooperate fully with the United Nations humanitarian organizations", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "This statement of support affirmed New Zealand's commitment to the common objectives of the Declaration and the Treaty of Waitangi, which continues to form the basis of the relationship between Maori and the Government.", - "values": [ - "4 - General action" - ] - }, - { - "text": "Ratify the Kampala amendments to the Rome Statute, if possible with a view to contributing to the activation of the jurisdiction of the International Criminal Court over the crime of aggression at the beginning of 2017 ", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Ensure more fully the rights of the child, and first and foremost, the realisation of the right to education and combating illegal child labour", - "values": [ - "4 - General action" - ] - }, - { - "text": "Develop awareness-raising campaigns aimed at preventing and combating child abuse, ensuring access to redress and social reintegration to the victims ", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Step up the implementation of current national plans for addressing the challenges and disparities in health, education, employment and gender equality, especially for the vulnerable groups of women, children, migrants, ethnic and indigenous people in the country", - "values": [ - "4 - General action" - ] - }, - { - "text": "Increase the independence of media from the State, including by allowing privately-run media.", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Take actions at all levels to address the interlinked root causes of preventable mortality and morbidity of children under 5 and consider applying the "Technical guidance on the application of a human rights-based approach to the implementation of policies and programmes to reduce and eliminate preventable mortality and morbidity of children under 5 years of age", A/HRC/27/31", - "values": [ - "4 - General action" - ] - }, - { - "text": "Put in place a robust legal and judicial instrument aimed at combating discriminatory practices against indigenous peoples and persons of African descent and promote their inclusion in the area of human rights", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Continue to take measures to secure the rule of law, including by establishing a criminal justice system that gives due consideration to human rights ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Continue efforts to develop laws and legislation to bring them in line with international texts and strengthen efforts in education", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Ensure that any person, including human rights defenders, members of civil society and journalists can exercise their legitimate activities without fear of reprisals, as well as ensure their rights to freedom of expression and peaceful assembly, in line with the obligations under the International Covenant on Civil and Political Rights ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Remove restrictions on the ability of journalists to report and criticize Government policy freely and without fear of repression.", - "values": [ - "4 - General action" - ] - }, - { - "text": "Do more to ensure that children with disabilities are fully integrated into society.", - "values": [ - "4 - General action" - ] - }, - { - "text": "Ensure that adequate mechanisms are in place for the rehabilitation and social integration of women and girls who have been victims of trafficking ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Strengthen the measures aimed at preventing cases of torture and ill- treatment by public officials, and ensure that all allegations are promptly and thoroughly investigated in order to bring to justice those responsible", - "values": [ - "4 - General action" - ] - }, - { - "text": "In coordination with OHCHR, IOM, ILO and relevant special procedures of the Human Rights Council, develop a comprehensive strategy to protect the rights of migrants and persons belonging to ethnic minorities", - "values": [ - "4 - General action" - ] - }, - { - "text": "Accelerate the withdrawal of its reservations to the Convention on the Elimination of all Forms of Discrimination against Women, to fully comply with the provisions of the Convention, and introduce plans and programs to eliminate all forms of discrimination against women", - "values": [ - "4 - General action" - ] - }, - { - "text": "Continue taking measures to eradicate generalized discriminatory practices against women, including stereotypes regarding the roles and responsibilities of women and men in the family and society", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Continue taking measures to ensure the right to food for its people and implement MDGs", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Implement the Strategic National Plan on Sexual and Reproductive Health 2009-2015, including allocating adequate budgetary resources for its full and effective implementation. The Plurinational State of Bolivia should ensure efficient access to information for women and girls about their rights", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Consider lifting the reservation to article 2 of the Convention on the Elimination of All Forms of Discrimination against Women", - "values": [ - "3 - Considering action" - ] - }, - { - "text": "Take further measures to ensure effective implementation of CEDAW at the federal, provincial and territorial levels, giving particular attention to the Aboriginal women and girls", - "values": [ - "4 - General action" - ] - }, - { - "text": "Increase its capacity to provide timely reporting to treaty bodies in accordance with its international obligations", - "values": [ - "4 - General action" - ] - }, - { - "text": "Implement measures to strengthen women's capacities and empower them to participate in political and economic life, and ratify the Optional Protocol to the Convention on the Elimination of All Forms of Discrimination against Women ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Request technical support from institutions of the United Nations system to help it consolidate, even more than in the past, its policy for the promotion and respect of human rights ", - "values": [ - "1 - Minimal action" - ] - }, - { - "text": "Organize a visit of the High Commissioner in the coming future", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Maintain support for National Council and Institutions charged with the promotion and protection of human rights", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Take the necessary measures to promote tolerance, intercultural dialogue and respect for diversity", - "values": [ - "4 - General action" - ] - }, - { - "text": "Implement measures to combat discrimination on the ground of sexual orientation and gender Identity, as well as other human rights violations against the gay, lesbian, bisexual, transsexual and transvestite community.", - "values": [ - "4 - General action" - ] - }, - { - "text": "Promote the elaboration and adoption of a national human rights plan ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Continue to combat poverty with appropriate and targeted international assistance, in particular that provided by competent United Nations agencies and programmes ", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Establish a monitoring mechanism to oversee the effective implementation of the Child Labour (Prohibition and Regulation) Amendment Act, the National Child Labour Policy and the Accessible IndiaCampaign to prevent exploitation of children and protect the rights of persons with disabilities", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Fully implement the National Action Plan of the United Nations Security Council Resolution 1325 on women, peace and security ", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Continue to improve Roma conditions, access to housing, water, sanitation, education and employment and make further efforts to combat all forms of intolerance and racism against them", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Continue the institutional and judicial reforms aimed at strengthening the rule of law ", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Adopt comprehensive laws against child labour", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Take active measures to ensure full and effective participation of women at all levels of public and political life", - "values": [ - "4 - General action" - ] - }, - { - "text": "Take further measures in order to fully implement the already existing domestic legislation in the field of gender equality ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Consider becoming a party to the International Convention for the Protection of All Persons from Enforced Disappearance (CPED) ", - "values": [ - "3 - Considering action" - ] - }, - { - "text": "Continue increasing investment in education providing subsidies to help poverty-stricken students and further increase school enrolment", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Continue efforts to promote maternal health and the further participation of women in public life. ", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Request technical assistance from the relevant United Nations agencies in order to meet its human rights obligations", - "values": [ - "1 - Minimal action" - ] - }, - { - "text": "Make further efforts towards improving the conditions in prisons and complying with relevant international standards", - "values": [ - "4 - General action" - ] - }, - { - "text": "Build upon the ad hoc national procedure to process asylum claims as a good practice and develop it further ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Strengthen measures to combat the high rate of drug and alcohol addiction among children", - "values": [ - "4 - General action" - ] - }, - { - "text": "Develop a national strategy to include in the school system at all levels appropriate measures in the field of human rights education, in accordance with the Plan of Action 2005-2009 of the World Programme for Human Rights Education", - "values": [ - "4 - General action" - ] - }, - { - "text": "Strengthen the rule of law, the capacity of national mechanisms on human rights and the promotion of national healing process based on tolerance and respect among different communities ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Strengthen the national policy against sexual violence, in cooperation with the UN and civil society and pursue its efforts to promote women's rights in particular to fight against all forms of genital mutilation and forced and early marriages", - "values": [ - "4 - General action" - ] - }, - { - "text": "Adopt stand-alone legislation on domestic violence and set up a specialized referral system for victims of domestic abuse, wherein violence will be qualified as a criminal and civil offence subject to prosecution and punishment", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Redouble efforts to reduce abuse of drugs and other psychotropic substances, in particular by children, adolescents and youths ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Establish appropriate mechanisms to ensure prompt, effective, independent and impartial investigations into all allegations of torture and other ill-treatment at remand and detention facilities, and to ensure that perpetrators are held accountable ", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Continue its efforts to establish a legal framework to protect human rights by ratifying core instruments, especially the International Convention for the Protection of All Persons from Enforced Disappearance ", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Promote and protect the human rights of all persons belonging to vulnerable groups ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Continue to promote measures in order to strengthen the educational system ", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Consider, as appropriate, increasing the percentage of representation of women in the supreme People's Assembly and other State decision-making bodies", - "values": [ - "3 - Considering action" - ] - }, - { - "text": "Continue with its efforts aimed at eradicating poverty and extreme poverty, in particular in the rural areas", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Investigate allegations of and bring to trial the perpetrators of extrajudicial executions taking place as part of the struggle with the Tuaregs, as well as the allegations of torture made in the cells of the State security services ", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Combat tax evasion and strengthen the tax collection system in order to fund development projects and improve the delivery of services", - "values": [ - "4 - General action" - ] - }, - { - "text": "Improve its regularity in submitting reports to Treaty Bodies ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Extend the accession by Curaçao and Sint Maarten to the 1951 Convention relating to the Status of Refugees and its 1967 Protocol", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Ensure that any form of violence against children and child recruitment becomes punishable under domestic law ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Enact, with immediate effect, the new Media Law which could help to promote and protect freedom of expression", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Arrange the enactment of the law on combating violence against women as well as develop the instruments of its implementation", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Establish a national human rights institution, whose functioning is in accordance with the Paris Principles", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Take all measures necessary to eliminate discrimination against women, on the basis of a comprehensive strategy aimed at eliminating discriminatory practices and stereotypes and, also, violence against women", - "values": [ - "4 - General action" - ] - }, - { - "text": "Continue the efforts to improve reproductive health, through the introduction of new and up-to-date technologies", - "values": [ - "4 - General action" - ] - }, - { - "text": "Establish a legal framework for the national preventive mechanism against torture and lobby for the passage of the bill to establish a national observatory for the prevention of torture", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Accede to the International Convention on the Rights on the Protection of all Migrant Workers and Members of their Families as an additional fundamental step for the protection of human rights", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Strengthen efforts to end child, early and forced marriages, especially among girls", - "values": [ - "4 - General action" - ] - }, - { - "text": "Allowing the legal status of same-sex couples, and in that regard pass a law on civil union or registered partnership", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Ensure freedom of expression online and offline, including guaranteeing freedom of the press and decriminalizing all defamation in the Penal Code", - "values": [ - "4 - General action" - ] - }, - { - "text": "Turkey's commitment to expanding the scope of fundamental rights and freedoms as well as upholding democracy and the rule of law continued unabated. ", - "values": [ - "4 - General action" - ] - }, - { - "text": "The HKSAR Government is fully committed to attaining universal suffrage for both the CE and the LegCo elections in accordance with the Basic Law and the decision of the Standing Committee of the National People's Congress of December 2007.", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Take legal measures to adopt a comprehensive law on child rights and fully bring in line the legislation with the Convention, as well as adopt and implement a national plan of action for children to address inequalities in income and living", - "values": [ - "4 - General action" - ] - }, - { - "text": "Swiftly conclude the process of establishing a national human rights institution based on the Paris Principles in order for that institution to be rapidly created", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Continue adopting the necessary measures to provide access to basic services to its population, with a particular focus on the most vulnerable groups, in order to move towards the realization of a life with dignity for its people", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Scale up awareness-raising of new policies and legislation at the grass-roots level", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Continue its positive engagement to increase women's representation in political and public life", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Continue providing free legal aid to the most vulnerable citizens", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Conduct a thorough and credible investigation into all and any unresolved cases of disappearances of civil society workers in the Lao People's Democratic Republic ", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Take the necessary measures to advance in the elimination of illiteracy and the basic education of women and men", - "values": [ - "4 - General action" - ] - }, - { - "text": "Adopt a national plan of action to combat violence against women and girls and to ensure that all victims of gender-based violence have effective access to legal assistance and protection measures ", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Adopt legislation that explicitly prohibits corporal punishment, and continue awareness raising campaigns on the negative effects of corporal punishment", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Strengthen free primary education across the country's territory ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Continue with the efforts to ratify the International Convention for the Protection of All Persons from Enforced Disappearances ", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Introduce a legal ban on various forms of violence against children in all settings", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "In line with its commitment under the previous UPR cycle, work towards ensuring free access to the electronic media and liberalize the electronic media ownership rules by drafting a cyber law in accordance with international standards ", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Continue its efforts aimed at addressing the underrepresentation of women in decision-making bodies, including through considering the adoption of a law on gender equality", - "values": [ - "3 - Considering action" - ] - }, - { - "text": "Become a party to all outstanding international human rights treaties, particularly the OP-CAT, the First Optional Protocol to the ICCPR and the Optional Protocol to CEDAW", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Intensify human rights mainstreaming in policy and action in combating illegal migration and human rights trafficking", - "values": [ - "4 - General action" - ] - }, - { - "text": "Step up efforts to consider acceding to ILO Convention 189 (2011) concerning decent work for domestic workers ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Reinforce the protection of migrants, refugees and asylum seekers' rights by improving their living conditions and by ensuring the civil registration of their children", - "values": [ - "4 - General action" - ] - }, - { - "text": "Fully respect diplomatic courtesy and abide by the provisions of the Vienna Convention on Diplomatic Relations and the Vienna Convention on Consular Relations", - "values": [ - "4 - General action" - ] - }, - { - "text": "Ensure the full implementation of juvenile justice standards ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Develop a national strategy for education in human rights within the school system, in accordance with the World Programme and Plan of Action, with the full participation of all", - "values": [ - "4 - General action" - ] - }, - { - "text": "Increase its efforts to combat racist attacks committed by law enforcement personnel, particularly against the Roma ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Continue developing national policies with a gender perspective to guarantee the rights of women", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Combat more effectively corruption and adopt necessary legal measures", - "values": [ - "4 - General action" - ] - }, - { - "text": "Incorporate women in all aspects of political, economic and social life ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Do its utmost to guarantee that children, regardless of their descent status, are treated equally in law and in practice ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Continue with its efforts to guarantee the Government's commitment to a housing- led approach to end long-term involuntary homelessness", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Consider the possibility of signing and ratifying CED", - "values": [ - "3 - Considering action" - ] - }, - { - "text": "Consider acceding to the International Covenant on Civil and Political Rights and the International Covenant on Economic, Social and Cultural Rights", - "values": [ - "3 - Considering action" - ] - }, - { - "text": "Consider re-examining its reservations to CRC and CEDAW with a view to withdrawing them", - "values": [ - "3 - Considering action" - ] - }, - { - "text": "With the support of the international community, including the relevant specialized agencies of the United Nations, strengthen its efforts to implement its national food security-related programmes ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Make primary education compulsory, in conformity with article 28 of the Convention on the Rights of the Child ", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Create, in close cooperation with "Puntland" and "Somaliland", institutions and mechanisms charged with promoting respect for human rights, recognizing the challenges this imposes ", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Take necessary steps to amend its legislation on freedom of expression and remove prohibition of blasphemy in line with the International Covenant on Civil and Political Rights article 19 and Human Rights Committee's General Comment 34, and the Venice Commission's recommendation", - "values": [ - "4 - General action" - ] - }, - { - "text": "Guarantee equality of civil and political rights. Avoid all forms of discrimination based on ethnicity, religion, gender or sexual orientation", - "values": [ - "4 - General action" - ] - }, - { - "text": "Implement measures to give effect to the existing legislation on the elimination of discrimination, particularly in the area of gender and ethnic minorities and eradicate all forms of violence due to discrimination", - "values": [ - "4 - General action" - ] - }, - { - "text": "Continue efforts carried out towards the ratification of CPED", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Take immediate and concerted actions to fully investigate and prosecute all reports of extrajudicial killings, including re-examination of investigations disposed of before the CARICOM Implementation Agency for Crime and Security report, in order to hold the perpetrators accountable, and establish mechanisms for fully independent oversight of the police service", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Adopt a new Labour Code which provides more transparent regulations regarding the treatment of foreign workers and establishes a minimum wage ", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Increase work on gender equality, sexual violence and empowerment of women, especially regarding women's rights to inheritance and access to land.", - "values": [ - "4 - General action" - ] - }, - { - "text": "Ensure implementation of the Mental Health Act, including through the adoption of legislative instruments, and the recruitment of qualified mental health professionals", - "values": [ - "4 - General action" - ] - }, - { - "text": "Continue with the efforts aimed at ensuring timely cooperation with treaty bodies, regarding the submission of its overdue national reports", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Ratify the Convention for the Elimination of the Enforced Disappearances of Persons", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Take all necessary measures to ensure that the press is not the target of undue political pressure and that freedom of the press and freedom of expression are guaranteed ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Take appropriate measures to speed up the ratification of the laws on children, and gender equality and participation of women", - "values": [ - "4 - General action" - ] - }, - { - "text": "Carry out free and fair elections consistent with the expectations of the international election monitoring community", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Develop statistics and indicators on gender-based violence in order to design and implement public policies in an effective manner", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Step up efforts to combat and sanction effectively all forms of discrimination and intolerance, as well as to take additional measures to provide a more adequate response and the required support to the educational needs of the minorities ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Take effective measures to systematically tackle impunity by improving training, including human rights training, of security and law enforcement officials", - "values": [ - "4 - General action" - ] - }, - { - "text": "Continue its work in creating and using opportunities to encourage and defend the rights of women, including the voluntary obligations which are set out in the national report.", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Ensure that any reform of the justice system takes place only after careful consultation with the representatives of the legal professions, and that it is in line with international standards of judicial independence described by, for example, the International Covenant on Civil and Political Rights, the Basic Principles on the Independence of the Judiciary and the advisory bodies to the Council of Europe, particularly the Venice Commission and the Consultative Council of European Judges", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Sign the Treaty on the Prohibition of Nuclear Weapons", - "values": [ - "4 - General action" - ] - }, - { - "text": "Continue to design and implement policies that incorporate gender perspectives into public policies and promote the empowerment and advancement of women living in rural areas", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Continue to strengthen its social policies and programmes in order to improve the quality of life of the people, particularly the most excluded sectors", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Take all necessary measures to promote the enjoyment of freedom of expression, religion and civil liberties", - "values": [ - "4 - General action" - ] - }, - { - "text": "Develop measures to prevent child abuse and corporal punishment, to include passing the draft legislation on children's rights", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Recommended as a first step that a moratorium on executions be established", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Ensure that all issues related to migration, asylum seeking and border management are addressed in accordance with respective obligations under applicable international law", - "values": [ - "4 - General action" - ] - }, - { - "text": "Put an end to impunity by ensuring impartial investigations and bringing to justice those responsible of extrajudicial executions and torture", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Immediately dismantle all political prison camps, release all political prisoners, and institute protections against arbitrary detention that guarantee due process and fair trial", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Investigate all cases of ill treatment and abuse, such as enforced disappearances, cases of torture, arrests without warrants and extrajudicial killings by the police as well as the national army and ensure the delivery of justice regarding these serious human rights violations ", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Establish a national human rights institution, in accordance with the Paris Principles ", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Increase technical cooperation on human rights issues including by granting access to the Special Rapporteur on the human rights situation ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Regarding measures related to sexual exploitation of minors, Kazakhstan specified an ongoing commitment to improve legislation and strengthen provisions, and cited an increase to the age of criminal liability", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Continue its endeavours in poverty eradication, and strengthen the living standards and share experiences and best practices in that regard", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Grant sufficient means and resources to the National Human Rights Commission", - "values": [ - "4 - General action" - ] - }, - { - "text": "Strengthen enforcement of its existing legal framework protecting the equality of women in employment, particular for those in unskilled and lowwage position ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Ratify all core human rights conventions, especially the International Covenant on Civil and Political Rights, the Convention against Torture and the International Covenant on Economic, Social and Cultural Rights", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Abolish the death penalty and ratify the Second Optional Protocol to the ICCPR ", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Adopt proactive measures at all levels to combat violence, stigmatization and discrimination towards persons on the basis of their sexual orientation", - "values": [ - "4 - General action" - ] - }, - { - "text": "Foresee measures that would guarantee the right to their religions to groups that will\nbecome minorities in both countries after the birth of the new State, namely Muslims in South Sudan\nand non-Muslims in (north) Sudan", - "values": [ - "3 - Considering action" - ] - }, - { - "text": "Liechtenstein will continue its efforts to address potential de facto discrimination of women, including with regard to inheritance", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Incorporate human rights considerations in the measures that are adopted to counter climate change", - "values": [ - "4 - General action" - ] - }, - { - "text": "Continue to strengthen its human rights institutions and develop further measures to ensure the effective implementation of their mandate", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Effectively implement the National Strategy for the Inclusion of Roma", - "values": [ - "4 - General action" - ] - }, - { - "text": "Improve continuously the implementation of its programmes for human rights education ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Ensure the establishment and independence of a national human rights institution in compliance with the Paris Principles ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Exhaustively conduct human rights education and awareness-raising activities to inform all citizens of their rights.", - "values": [ - "4 - General action" - ] - }, - { - "text": "Strengthen policies for the promotion of women ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Intensify its efforts to allow better enjoyment of economic, social and cultural rights giving special attention to combating poverty and improving protection of vulnerable social groups, particularly women and children ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Sign the International Convention for the Protection of All Persons from Enforced Disappearance", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Lift secrecy on figures and statistics concerning death penalty. restrict its application to the most serious crimes according to international minimum standards. and to consider the establishment of a moratorium on the use of death penalty with a view to its abolition", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Ensure equitable and sustainable resources to education", - "values": [ - "4 - General action" - ] - }, - { - "text": "Respect all United Nations resolutions and its obligations under international human rights law and international humanitarian law, with a view to guaranteeing fundamental rights and freedoms to all Palestinians in the Occupied Palestinian Territories, including East Jerusalem, by combating all forms of discrimination. and ensure the enjoyment of the rights of the Palestinian people, inter alia, to housing, education, health, freedom of expression and freedom of movement", - "values": [ - "4 - General action" - ] - }, - { - "text": "In line with the CERD recommendations, take resolute action to counter any tendency, especially from politicians, to target, stigmatize, stereotype or profile people on the basis of race, colour, descent and national or ethnic origin, or to use racist propaganda in politics ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Exchange information with other countries with regard to best practice in protection of foreign workers", - "values": [ - "1 - Minimal action" - ] - }, - { - "text": "Continue with the reform of the judiciary and civil service and build a State based fully on the rule of law.", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Organize targeted vocational training programmes, in particular for young people, to increase the employability of the members of the Roma community and improve their access to the labour market.", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Submit the overdue reports to the Committee on the Elimination of Discrimination against Women and the Committee on the Rights of the Child at the earliest possible stage", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Abolish capital punishment and, as a first step on that road, introduce as soon as practicable a moratorium on the execution of death sentences ", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Adopt a National Human Rights Action Plan ", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Sign, ratify and implement CED as soon as possible and cooperate actively with the Working Group on enforced or involuntary disappearances ", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Reinstate the requirement to produce environmental impact studies which take into account the possible impact on the rights of persons living in the affected area for all major projects, especially in indigenous and protected areas, and that these studies are made public ", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Address overcrowding in prison systems and poor prison conditions, especially to ensure human rights of women prisoners are protected ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Expedite the process of acceding to the UNESCO Convention against Discrimination in Education ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Establish enforceable domestic child access mechanisms that would allow both parents to maintain on a regular basis personal relations and direct contact with their children in accordance with the Convention on the Rights of the Child", - "values": [ - "4 - General action" - ] - }, - { - "text": "Adopt precise definitions of anti-State crimes, anti-Peoples crimes or crimes representing an offence against the management of the economy in the criminal code and in the criminal procedure code ", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Continue with all its endeavours to ensure further success in the implementation of the recently established programmes/instruments, including the national plan against human trafficking, for the benefit of all people in the country irrespective of their ethnic origin, or any other social background/status ", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Continue in the path towards the building of socialism, under the principles of solidarity and justice, making headway in the strengthening of participatory and proactive democracy, as a genuine mechanism to ensure citizen participation in public affairs, which has led to better conditions for the promotion and protection of human rights for the Cuban people ", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Ensure the effective implementation of the national action plan against racism and take more resolute measures to prevent, combat and monitor any manifestations of intolerance and xenophobia", - "values": [ - "4 - General action" - ] - }, - { - "text": "Take urgent measures as necessary to overcome prison overcrowding", - "values": [ - "4 - General action" - ] - }, - { - "text": "Abolish discriminatory laws against women, maintain the Personal Statute Law, and ensure that the rights it sets forth for women are enshrined in the new Constitution ", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Ensure the effective functioning of the National Human Rights Commission in accordance with the Paris Principles, in particular by providing the Commission with required and adequate levels of funding as well as sufficient autonomy", - "values": [ - "4 - General action" - ] - }, - { - "text": "Redouble all efforts to preserve the progress achieved in a number of areas such as culture, education, health and the fight against social inequality ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Consolidate the legal framework for the promotion and protection of human rights, through the ratification of the Convention on the Protection of the Rights of All Migrant Workers and Members of Their Families ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Consider lifting the reservations made to articles 17 to 19 (on wage-earning employment, self-employment and liberal professions) of the 1951 Convention relating to the Status of Refugees ", - "values": [ - "3 - Considering action" - ] - }, - { - "text": "Continue the process of establishing a national human rights institution ", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Take additional measures to prevent and combat trafficking in women in an appropriate way ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Continue with the policy of National Reconciliation as this is the best way to prosper and for nation building ", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Pursue and strengthen policies against discrimination and intolerance", - "values": [ - "4 - General action" - ] - }, - { - "text": "Liechtenstein will continue to pay particular attention to the promotion of equal opportunities for men and women in both the private and public sectors, including by expanding measures which facilitate women's re-entry into the workforce after childbirth", - "values": [ - "4 - General action" - ] - }, - { - "text": "Consider ratifying the International Convention on the Elimination of All Forms of Racial Discrimination, the International Covenant on Economic, Social and Cultural Rights and the International Convention on the Protection of the Rights of All Migrant Workers and Members of Their Families", - "values": [ - "3 - Considering action" - ] - }, - { - "text": "Enforce fully existing laws prohibiting violence against women and girls, including rape, female genital mutilation, domestic violence and violence against persons believed to be practicing witchcraft", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Accede to and fully align its national legislation with the Rome Statute of the International Criminal Court", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Redouble efforts to ensure the ratification of the International Convention on the Protection of the Rights of All Migrant Workers and Members of Their Families and the International Convention for the Protection of All Persons from Enforced Disappearance", - "values": [ - "4 - General action" - ] - }, - { - "text": "Accelerate the process of bringing the status of the Human Rights Commissioner in line with the Paris Principles and strengthening the mandate of the Commissioner in compliance with the Paris Principles", - "values": [ - "4 - General action" - ] - }, - { - "text": "Amend: article 14, which stipulates that participants in the financial management of a press body must be citizens of Djibouti. article 17, which requires the director and vice-director of a media outlet to be residents of Djibouti. and article 47, which requires the director of an audiovisual outlet to be at least 40 years of age", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Ensure access to clean water supply and proper sanitation", - "values": [ - "4 - General action" - ] - }, - { - "text": "Strengthen efforts to ensure that women in rural communities have better access to education and literacy and vocational training programmes ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Continue to demonstrate its commitment to democratic rule, rule of law, and accountable governance by holding free, fair and peaceful elections in February 2015", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Consider ratifying the Protocol to the African Charter on Human and Peoples' Rights on the establishment of an African Court on Human and Peoples' Rights, the OAU Convention Governing the Specific Aspects of Refugee Problems in Africa, the Convention relating to the Status of Stateless Persons, the Convention on the Nationality of Married Women, international conventions on apartheid, and OP-CAT", - "values": [ - "3 - Considering action" - ] - }, - { - "text": "Improve detention conditions for all, particularly women and youth", - "values": [ - "4 - General action" - ] - }, - { - "text": "Continue to improve the conditions of prisoners", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Continue its efforts to reduce the number of children without parental care particularly by stepping up the work already undertaken to overcome this phenomena", - "values": [ - "4 - General action" - ] - }, - { - "text": "Further strengthen measures, including existing legislation, to prevent and combat racism, racial discrimination, xenophobia and related forms of intolerance, and continue to improve national statistics", - "values": [ - "4 - General action" - ] - }, - { - "text": "Establish a moratorium on the death penalty as a way of achieving its full abolition", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Increase measures to create conditions conducive for people to exercise freedom of expression", - "values": [ - "4 - General action" - ] - }, - { - "text": "Ensure a credible, independent investigation with international involvement into unlawful killings", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Carry out investigations into complaints and information on cruel treatments during the expulsions of foreigners from the Netherlands and ensure transparency when investigating such complaints", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Extend a standing invitation to all special procedures and respond positively to pending visit requests", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Seek international assistance in the provision of basic services to the refugees", - "values": [ - "1 - Minimal action" - ] - }, - { - "text": "Repeal Articles 42.1 and 40.3.3 of the Constitution", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Ensure that HIV education is systematically included in technical training courses ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Ensure the implementation of already ratified international conventions in the spheres of women's and children's rights, including those related to combating violence against them", - "values": [ - "4 - General action" - ] - }, - { - "text": "Take effective, predominantly legislative steps to protect the rights of persons deprived of their liberty ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Engage civil society, activists, non-governmental organizations and the media in dialogue to seek common ground on the draft Access to Information bill and governance issues, such as corruption", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Adopt comprehensive measures against discrimination towards children and repeal all legislation that discriminates against children born out of wedlock. Promote awareness campaigns and education programs about the human rights of all boys, girls and adolescents, particularly in relation to the acquisition of nationality, inheritance rights and the right to identity", - "values": [ - "4 - General action" - ] - }, - { - "text": "Adopt national legislation implementing the Rome Statute", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Promote awareness amongst Internally Displaced Persons IDPs of their human rights and adopt specific measures to identify IDPs in need and provide them assistance ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Continue negotiations with a view to peacefully settling the remaining stipulations of the CPA, particularly with regard to issues like border demarcation, foreign debts, oil and water sharing and citizenship, with the understanding that nobody will be stateless ", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Effectively combat negative attitudes based on sex, age, race, nationality, ethnicity, religion and disability, especially to prevent discrimination against children of minority groups, refugee children and children with disabilities ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Accede to ICERD and CAT", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Establish effective and impartial procedures to ensure that the armed forces and the police do not recruit persons under the age of 18 ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Continue applying its successful practice to improve access to affordable housing", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Pay increased attention to persons with disabilities and their related needs.", - "values": [ - "4 - General action" - ] - }, - { - "text": "Continue efforts towards strengthening the National Human Rights Commission to ensure its effective functioning, including the development of a national plan of action for human rights", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Adopt legislative measures strictly defining the circumstances and safeguards related to eviction, and to stop all forced evictions until such measures are in place", - "values": [ - "4 - General action" - ] - }, - { - "text": "Eliminate factors preventing boys and girls to enjoy secondary school education and reduce the dropout of school rate", - "values": [ - "4 - General action" - ] - }, - { - "text": "Continue national efforts in granting humanitarian aid to the Syrian refugees with the support of the international community", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Continue applying the country's strategies and socioeconomic development plans in order to advance towards the materialization of the Millennium Development Goals", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Guarantee extended, free and transparent participation of civil society and minorities in the public national debate", - "values": [ - "4 - General action" - ] - }, - { - "text": "Ensure that programmes and policies to curb domestic violence are fully implemented", - "values": [ - "4 - General action" - ] - }, - { - "text": "Accede to the Rome Statute of the International Criminal Court and ratify the CAT ", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Become party to the International Convention on the Elimination of All Forms of Racial Discrimination ", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "The MSAR [Macao Special Administrative Region] Government is committed to fully protect personal freedom and human dignity, inter alia, by reinforcing preventive measures and suppressing the trafficking of human beings and the exploitation of women and children and protecting victims' rights.", - "values": [ - "4 - General action" - ] - }, - { - "text": "Implement measures to ensure that food agenda against famine caused by drought is distributed fairly, focusing especially on vulnerable people", - "values": [ - "4 - General action" - ] - }, - { - "text": "Ensure that all counter-terrorism measures are in strict conformity with international law", - "values": [ - "4 - General action" - ] - }, - { - "text": "Combat child trafficking by providing training to police officers, prosecutors and judges, by ensuring that those responsible for child trafficking are promptly brought to justice, and by providing adequate victim assistance", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Prepare and adopt national legislation establishing an effective asylum procedure and ensuring protection of all human rights of asylum-seekers.", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Continue strengthening the security and peace of the people, institutionalizing the leading participation of the person, the family and the organized community, both in the territory and in social and productive sectors ", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Adopt measures to ensure full enjoyment of rights and equality to lesbian, gay, bisexual, transgender and intersex people, both in terms of legislation as well as on policies and practices", - "values": [ - "4 - General action" - ] - }, - { - "text": "Consider the ratification of the international human rights instruments, to which it is not yet a party", - "values": [ - "3 - Considering action" - ] - }, - { - "text": "Ensure that sexual orientation and gender identity are explicitly included throughout the anti-discrimination laws and programmes.", - "values": [ - "4 - General action" - ] - }, - { - "text": "Develop a comprehensive policy at the national level, consistent with the provisions of the Convention on the Elimination of All Forms of Discrimination against Women, with the view to achieving gender equality and to combat gender violence", - "values": [ - "4 - General action" - ] - }, - { - "text": "Reaffirm its commitment to freedom of assembly, a proportional and legitimate response to protest activity, and to a free media", - "values": [ - "4 - General action" - ] - }, - { - "text": "Provide training for law enforcement officials dealing with violence against women and ensure the effective protection of victims", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Make further efforts to expand the democratic space for media and civil society, in order to ensure that their freedom of expression is in keeping with international standards", - "values": [ - "4 - General action" - ] - }, - { - "text": "Fulfil its obligations in accordance with CAT, immediately submit its overdue initial national report to the Committee against Torture and include a specific individual offence criminalizing acts of torture as well as a definition of torture in the national legislation", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Address the high incarceration rate of children, ensure that the privacy of children is protected.", - "values": [ - "4 - General action" - ] - }, - { - "text": "Eliminate stoning as a form of punishment", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Take further measures to prohibit all forms of violence against children and women", - "values": [ - "4 - General action" - ] - }, - { - "text": "Ensure that no disadvantage shall result for citizens from the exercise of their right to identify themselves with any ethnic group ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Work on strengthening international cooperation in the field of human rights", - "values": [ - "4 - General action" - ] - }, - { - "text": "Continue efforts to combat discrimination on any ground and violence against women and girls", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Consider ratifying, as soon as possible, fundamental international human rights instruments and their optional protocols to which Samoa is not yet a party ", - "values": [ - "3 - Considering action" - ] - }, - { - "text": "Continue improving women's empowerment programmes in the country", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Accelerate its efforts to ratify CEDAW ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Decriminalize consensual same-sex conduct between adults", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Develop legislation to protect all children from the worst forms of child labour, including commercial sexual exploitation", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Accede to the international conventions and treaties to which it is not yet a party ", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Continue to invest in education and ensure the continued provision of free education for its primary and secondary students", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Review asylum procedures with a view to expediting the decisions in the cases of children asylum seekers as quickly as possible and facilitating family reunion of vulnerable children in an efficient and appropriate manner ", - "values": [ - "3 - Considering action" - ] - }, - { - "text": "Look into the current regulatory framework so as to remove parts of the legislation that may challenge freedom of speech and independence of the press and other media ", - "values": [ - "3 - Considering action" - ] - }, - { - "text": "Continue taking efficient measures to eliminate prohibited child labour and prostitution, and to combat the phenomenon of children living in the street, and monitor appropriately the efficiency of measures taken ", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Take effective measures to encourage the registration of customary marriages and to grant the spouses and children of registered customary marriages the same rights as those married under civil law ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Continue its engagement with the United Nations Human Rights Office, as well as the human rights mechanisms and procedures for further enhancement of meaningful benefit", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Intensify efforts aimed at instituting interreligious dialogue between elders and religious leaders, including in areas not yet affected by religious unrest, and consider holding a national conference on religious tolerance", - "values": [ - "4 - General action" - ] - }, - { - "text": "Combat racism and all forms of discrimination through education and awareness-raising initiatives and follow-up to cases of racism at the national level", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Strengthen legal framework to protect people belonging to the lesbian, gay, bisexual, transgender and intersex community, avoiding practices, known as conversion therapies in State premises", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Ratify the Optional Protocol to the Convention on the Rights of the Child on the sale of children", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Take concrete measures to ensure better protection of civilians, in particular women and children, by supporting the setting up of a hybrid court and by investigating and prosecuting alleged serious violations of international law, including when perpetrated by its military personnel ", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Expedite the ratification of the CEDAW ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Improve the human rights system protecting young people and children and take measures to prevent juvenile delinquency", - "values": [ - "4 - General action" - ] - }, - { - "text": "Further develop the implementation of a new prison system which covers all the prisons throughout the country", - "values": [ - "4 - General action" - ] - }, - { - "text": "Adopt laws to implement the conventions it has ratified", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Decriminalize same-sex relations between consenting adults", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Strengthen national capacities in order to ensure respect for due process and access to justice for all, including through the application of custody hearings and the provision of affordable access to legal counselling", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Continue the debate in view of the abolishment of the death penalty ", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Continue its efforts to raise awareness about human rights among its population", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Reinforce instances established by law to combat violence against women and put in place a system for the protection, prevention and effective punishment, in favour of women victims of violence", - "values": [ - "4 - General action" - ] - }, - { - "text": "Continue its efforts to bring national legislation into conformity with international human rights norms", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Consider accepting jurisdiction of the Committee against Torture to receive specific cases as well as the ratification of the Optional Protocol to the Convention against Torture (OP-CAT) within a reasonable timeframe", - "values": [ - "3 - Considering action" - ] - }, - { - "text": "Further enhance national mechanisms and invest more resources in improving the well-being of the people, including through adequate provision of housing ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Consider appropriate means to reach out to achieve universal access to health services and consider expanding the coverage of health services under the compulsory health insurance schemes to include appropriate secondary and tertiary services", - "values": [ - "3 - Considering action" - ] - }, - { - "text": "Consider a strategy to address inequalities for children at high risk of exiting the education system too early as highlighted in OHCHR summary", - "values": [ - "3 - Considering action" - ] - }, - { - "text": "Further consider incorporating in relevant laws the principles of equality between women and men and where such principle exists, to campaign for greater understanding and awareness among the general public and officials for the effective implementation of such laws", - "values": [ - "3 - Considering action" - ] - }, - { - "text": "Reduce immigration detention and promote alternatives to such detention", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Permit the establishment of an OHCHR presence to monitor the human rights situation in the country as well as to take measures to improve the humanitarian access, with particular regards to ensuring that access to vulnerable populations and ensuring the safety of humanitarian workers.", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Pursue efforts to combat human trafficking, especially of women ", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Review the Islamic Penal Code in order to meet minimum human rights standards and clarify its application to foreigners and non-Muslims ", - "values": [ - "3 - Considering action" - ] - }, - { - "text": "Continue to strengthen its anti-racist and anti-discrimination measures", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Develop National Human Rights Indicators as suggested by OHCHR, as an instrument that allows for a more precise and coherent evaluation of its national human rights policies", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Take further steps to ensure the conditions in detention centres and prisons meet domestic and international standards, and implement measures to reduce prolonged pretrial detention ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Continue intensifying its efforts to promote women's empowerment through capacity-building, gender sensitivity training and public awarenessraising activities", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Ensure full and unrestricted access to holy sites for all members of the clergy and worship without discrimination", - "values": [ - "4 - General action" - ] - }, - { - "text": "Allocate adequate resources to the National Monitoring Mechanism to ensure it effectively carries out its mandate ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Pursue the full implementation of its expressed commitment to prohibit all forms of violence against women, and to prevent illegal trafficking of women and girls, and take into account in this regard, among others, the recommendations of the United Nations treaty bodies", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Adopt more appropriate measures to improve the integration of migrants in society and eradicate poverty among vulnerable groups, especially children", - "values": [ - "4 - General action" - ] - }, - { - "text": "Guinea acknowledges that there are serious difficulties in launching the national reconciliation process. However, consultations on how to proceed have begun nationwide. The Government is committed to pursuing its efforts to ensure that the process comes to a successful conclusion", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Ratify the main international instruments, in particular the International Covenant on Civil and Political Rights, the International Covenant on Economic, Social and Cultural Rights and the Convention against Torture, and to progress in their implementation.", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Intensify programmes to combat poverty with the assistance of the international community, as needed", - "values": [ - "4 - General action" - ] - }, - { - "text": "Urgently release those being held in detention or imprisonment for exercising their right to freedom of expression", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Ensure that provisions of the Indonesian Criminal Code, such as articles 106 and 110 are not misused to restrict the freedom of speech ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Introduce a comprehensive public policy recognizing the role of human rights defenders, providing mechanisms for their effective protection, and conduct through and impartial investigations into all cases of attacks, harassment and intimidation committed against them", - "values": [ - "4 - General action" - ] - }, - { - "text": "Ratify the International Labour Organization Indigenous and Tribal Peoples Convention, 1989 (No. 169) and Domestic Workers Convention, 2011 (No. 189) ", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Further strengthen the protection of the rights of minorities, including lesbian, gay, bisexual, transgender and intersex persons and the Roma community, by effective implementation of existing legislation and effective law enforcement", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Strengthen the use of existing legal and administrative provisions which guarantee sexual and reproductive health, with the goal of better protecting the rights of women, including the prevention of maternal mortality", - "values": [ - "4 - General action" - ] - }, - { - "text": "Further strengthen the social and comprehensive protection programmes carried out by the National Council on Children and Adolescents through increased resources, in order to achieve greater effectiveness in their management ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Continue its effort to protect the rights of women, children and vulnerable groups", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Use the UPR process to better involve civil society for further promotion and protection of human rights in Samoa ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Submit its overdue reports to the human rights monitoring bodies", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Continue its efforts to combat human trafficking at the national and international levels through, inter alia, coordination and cooperation with interested Governments and international organizations ", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Speed up the finalisation of the draft law on combating human trafficking and the protection of victims", - "values": [ - "4 - General action" - ] - }, - { - "text": "Consider responding to the request of the United Nations Special Rapporteur on extrajudicial, summary or arbitrary executions to visit the country ", - "values": [ - "3 - Considering action" - ] - }, - { - "text": "Continue taking measure to promote the effective equality of people of African descent", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Continue its efforts initiated to achieve ratification of CPED and accept the competence of the Committee on Enforced Disappearances ", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Continue to work to strengthen national human rights mechanisms ", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Consider the adoption of new legislation on violence against women, suggested also by CEDAW ", - "values": [ - "3 - Considering action" - ] - }, - { - "text": "Adopt measures aimed at combating racism and hate crimes, in addition to strengthening and ensuring access to fair and effective mechanisms for reparation for the victims of such violence", - "values": [ - "4 - General action" - ] - }, - { - "text": "Improve the capacity of the police in carrying out investigations, with additional training in interrogation and prosecution.", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Amend the Public Defender of Rights Act to ensure that it is in line with the Paris Principles", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Seek to work in partnership with other Pacific Island States in order to join forces in addressing human rights issues ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Sign and ratify the Convention against Torture and Other Cruel, Inhuman or Degrading Treatment or Punishment and its Optional Protocol, the International Covenant on Civil and Political Rights and its two Optional Protocols, the Optional Protocol to the International Covenant on Economic, Social and Cultural Rights, the International Convention for the Protection of All Persons from Enforced Disappearance, ratify the Convention on the Rights of Persons with Disabilities and the two Optional Protocols to the Convention on the Rights of the Child ", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Continue its efforts, in cooperation with UNICEF and relevant United Nations agencies, to combat trafficking in persons and child abduction ", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Adopt further measures, including in the field of education, to reinforce the protection and promotion of religious freedom, particularly in order to ensure the effective freedom of worship of religious minorities ", - "values": [ - "4 - General action" - ] - }, - { - "text": "To continue to implement the National Human Rights Action Plan", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Continue its support for the United Nations efforts to combat human trafficking", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Apply a new moratorium against the death penalty with a view to its definitive abolition", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Further ratify the International Covenant on Economic, Social and Cultural Rights and the Convention against Torture", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Continue its efforts directed towards fighting the trafficking of persons", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Withdraw its reservations to CRC and CEDAW that are contrary to their objective and scope ", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Intensify awareness-raising campaigns to strengthen the protection of children's rights", - "values": [ - "4 - General action" - ] - }, - { - "text": "Adopt immediate measures, including legislative to eradicate sexual exploitation of children and recruitment of adolescents into prostitution. Provide for the relevant legal protection for child victims of human trafficking in the framework of judicial process ", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Maintain the leadership in the process for the elaboration of a legally binding instrument on transnational companies and human rights", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Continue the policy of providing education for all, and work towards strengthening and developing the education sector in the country", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "With regard to the concerns expressed in the Italian-Libyan agreement to prevent ships with immigrants from sailing to Italy, to ensure that intercepted persons have access to proper assessment of their asylum claims in accordance with international human rights standards", - "values": [ - "4 - General action" - ] - }, - { - "text": "Strengthen the institutional capacity of the National Council to Combat Trafficking in Persons", - "values": [ - "4 - General action" - ] - }, - { - "text": "Consider the complete abolition of capital punishment in its internal legislation. ", - "values": [ - "3 - Considering action" - ] - }, - { - "text": "Take appropriate measures in combating racist, islamophobic and xenophobic attitudes in the country, particularly against members of the Muslim community, and also adopt a comprehensive anti-discrimination law to be enforced uniformly throughout the Confederation", - "values": [ - "4 - General action" - ] - }, - { - "text": "Increase efforts to promote and protect the cultural rights of the Lao people to preserve the national culture and the cultures and languages of ethnic groups in the Lao People's Democratic Republic ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Intensify efforts to eliminate sexual and gender-based violence and to specifically criminalize female genital mutilation as well as to take all necessary measures to ensure its eradication", - "values": [ - "4 - General action" - ] - }, - { - "text": "Continue its efforts to ensure equality between men and women regarding inheritance and property rights", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Implement a complete abolition of the death penalty and accede to the Second Optional Protocol of the International Covenant on Civil and Political rights ", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Establish the requisite national asylum legislation and refugee status determination procedure in order to uphold its international obligations more fully in the area of refugee protection ", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Strengthen its role in maintaining peace and security in the Horn of Africa ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Seek and receive assistance from the international community, in particular the relevant United Nations funds and programmes, to help it achieve MDG 1.", - "values": [ - "1 - Minimal action" - ] - }, - { - "text": "Adopt effective measures to combat sexual and gender-based violence, ensuring victims\u2019 access to justice and to reception and reparation services", - "values": [ - "4 - General action" - ] - }, - { - "text": "Amend the criminal legislation to criminalize domestic violence and ensure that authorities pursue prosecution of domestic violence to hold offenders accountable and provide adequate funding of all services for victims of domestic violence", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Conduct a wide-ranging review of Egyptian human rights laws in order to bring them into line with Egypt's international commitments, as so pledged in its Human Rights Council candidature and within its National Report", - "values": [ - "3 - Considering action" - ] - }, - { - "text": "Eliminate, through awareness programmes and legal precautions, social discrimination against women and girls", - "values": [ - "4 - General action" - ] - }, - { - "text": "Immediately ratify the International Convention on the Protection of All Persons from Enforced Disappearance", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Take further steps to address discrimination of lesbian, gay, bisexual, transgender and intersex persons in access to goods, employment and services, including healthcare", - "values": [ - "4 - General action" - ] - }, - { - "text": "Ensure that all legal documents, including legislation and draft legislation, are available in both Tetum and Portuguese", - "values": [ - "4 - General action" - ] - }, - { - "text": "Continue the judicial reform with a view to improving the access to justice by promoting a better territorial coverage and upgrading the penitentiary administration ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Implement a human rights training programme and the necessary legal reforms to avoid the practice of female genital mutilation", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Take all necessary measures to protect human rights defenders through the removal of legal and policy measures which inhibit the ability of defenders to carry out their vital work in safety, without fear of interference, obstruction or harassment of any kind, including by finalizing the public policy for the protection of human rights defenders with strong participation by civil society and an adequate budgetary allocation", - "values": [ - "4 - General action" - ] - }, - { - "text": "Consider ratifying the ILO Convention 189 ", - "values": [ - "3 - Considering action" - ] - }, - { - "text": "Provision of support for the implementation of the Ten-Year Justice Development Programme (PRODEJ) and other programmes for the promotion and protection of human rights", - "values": [ - "4 - General action" - ] - }, - { - "text": "Fight stigmatisation, terrorisation and harassment of minorities, especially Rohingya Muslims and ensure these crimes do not remain unpunished", - "values": [ - "4 - General action" - ] - }, - { - "text": "Ratify the first optional protocol to ICCPR", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Intensify its efforts to reduce rural-urban income inequalities with support from the international community and other relevant United Nations agencies ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Take urgent measures to prevent cases of ill-treatment and torture by police officers and ensure their accountability for any criminal acts ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Formulate and implement a law on domestic violence as soon as possible ", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Review its legislation and policies in order to create a free, safe and enabling environment for journalists, bloggers and others to exercise fully their right to freedom of expression", - "values": [ - "3 - Considering action" - ] - }, - { - "text": "Take appropriate measures to eliminate exclusion of non-citizens from accessing some public places and facilities on the basis of race or nationality, by effectively applying legislation and investigating and sanctioning such acts", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Consider placing a moratorium on the death penalty", - "values": [ - "3 - Considering action" - ] - }, - { - "text": "Improve the treatment of migrants, asylum seekers, Roma population and other marginalized group by law enforcement officials", - "values": [ - "4 - General action" - ] - }, - { - "text": "Pursue efforts with regional and international communities in seeking financial and technical assistance to establish a national human rights institution ", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Continue efforts to combat gender inequality in the workplace and implement measures to increase representation of women at senior level and managerial positions in government and other sectors", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Proceed with the ratification of the Convention on the Rights of Persons with Disabilities and its Optional Protocol", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Share additional information about the Equal Opportunities Act and its targeted groups", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Adopt a de jure moratorium on capital punishment with a view to abolishing the death penalty ", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Take every necessary measure to ensure that no children under the age of 18 are recruited into armed forces, releasing unconditionally all children previously recruited ", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Restore Slovenian names to road signs in villages in the Resia-Rezija community", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Continue efforts to eliminate impunity and to ensure the exercise of the right to truth ", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Continue implementing the National Strategy on Children and Young People's participation in Decision-making 2015-2020", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Make food security one of the national priorities in order to combat malnutrition and ensure access of the whole population to adequate food", - "values": [ - "4 - General action" - ] - }, - { - "text": "Adopt measures to reduce the level of unemployment among migrants and provide support for their integration into the labour market ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Eliminate all discriminatory elements still present in some state laws", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Sign and ratify CPRD", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Continue taking steps towards the ratification of the international human rights conventions to which Palau is a signatory, in particular the International Covenant on Civil and Political Rights, the International Convention on the Elimination of All Forms of Racial Discrimination, the International Covenant on Economic, Social and Cultural Rights, the Convention on the Elimination of All Forms of Discrimination against Women and the Convention against Torture and Other Cruel, Inhuman or Degrading Treatment or Punishment", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Take measures to put an end to discrimination against migrants or people from migrant backgrounds as well as asylum seekers and refugees, especially with regard to access to public services, housing, employment and health services ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Continue to do what needs to be done to put together a national child rights policy", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Undertake the efforts necessary to increase the budget for social programmes, particularly regarding education and adequate food ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Ratify the Statute of ICC signed in 1998", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Complete the accession to the International Convention on the protection of all persons from enforced disappearances ", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Intensify efforts to eliminate excessive use of force by law enforcement officials and protect women in detention, and ensure that relevant allegations are investigated, in order to strengthen accountability and prevent future violations ", - "values": [ - "4 - General action" - ] - }, - { - "text": "De-criminalize same sex activities and adopt policies to counter discrimination against LGBT", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Remove all obstacles to freedoms of expression, association, peaceful assembly and the press, ensuring that journalists and civil society can carry out their activities freely and safely, put an end to the harassment of journalists and remove the accreditation requirement for journalists", - "values": [ - "4 - General action" - ] - }, - { - "text": "Strengthen the funding for implementation of the 2007 Domestic Violence Act.", - "values": [ - "4 - General action" - ] - }, - { - "text": "Continue to take steps to provide inclusive and quality education for all", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Investigate all reports of violence against religious minorities and bring those responsible to justice", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Reduce the number of crimes where the death penalty can be imposed ", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Include a specific prohibition on the use of corporal punishment within the family and at school in its legislation.", - "values": [ - "4 - General action" - ] - }, - { - "text": "Sign, ratify or accede to the Inter-American Convention on Human Rights ", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Consider the possibility of strengthening focused social assistance to poor families with children", - "values": [ - "3 - Considering action" - ] - }, - { - "text": "Ensure that the decisions of the customary courts may be challenged before common law courts", - "values": [ - "4 - General action" - ] - }, - { - "text": "Ratify the International Convention on the Protection of the Rights of All Migrant Workers and Members of Their Families, and, by taking that measure, clearly demonstrate its firm and decisive commitment to protecting migrant groups and to finding solutions to problems that may arise, by fully respecting the fundamental freedoms of those affected ", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Ratify the Convention on the Rights of Persons with Disabilities and the Optional Protocol, as well as the International Convention on the Protection of the Rights of All Migrant Workers and Members of Their Families ", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Pursue the efforts to facilitate access for women victims of violence to justice and particularly to fully implement the 2004-2014 prevention of domestic violence National Plan, in order to reach the objective established in the Plan", - "values": [ - "4 - General action" - ] - }, - { - "text": "Take measures to establish the National Child Rights Committee with the financial resources necessary to operate", - "values": [ - "4 - General action" - ] - }, - { - "text": "Repeal "Decrees of exception"", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Continue the reform of the judicial system, to improve conditions of detention in prisons, and better separate civil and military jurisdictions", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Adopt a national action plan on the Security Council resolution on women, peace and security", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Take effective measures to safeguard freedom of expression for individuals and the media", - "values": [ - "4 - General action" - ] - }, - { - "text": "Bring existing regional and draft federal-level legislation related to homosexuality into conformity with its commitment to the principles of non-discrimination and take steps to ensure that the rights of all minorities, including gays and lesbians, are protected and respected", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Focus efforts on successfully achieving improvements in the judicial system ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Take adequate measures to eradicate all contemporary forms of slavery", - "values": [ - "4 - General action" - ] - }, - { - "text": "Continue the efforts to promote gender equality by promoting balanced representation in decision-making positions, equality in the work market and entrepreneurship, including equal pay and equal access to credit and other financial services, among other measures, paying particular attention to girls and women from indigenous people and people of African descent", - "values": [ - "4 - General action" - ] - }, - { - "text": "Take effective measures to reinforce its domestic legislation concerning domestic violence against women.", - "values": [ - "4 - General action" - ] - }, - { - "text": "Continue working towards the modernization of justice so as to guarantee its independence and impartiality, in particular with regard to vulnerable groups, such as indigenous people and persons with disabilities", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Continue enhancing the process of combating different forms of discrimination, particularly by facilitating access to justice for all Rwandan people", - "values": [ - "4 - General action" - ] - }, - { - "text": "Provide human rights training to Government officials and teachers ", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Design and implement vetting procedures to ensure that Seleka members responsible for abuses are not integrated into the armed forces and to follow its obligations under the Optional Protocol to the Convention on the Rights of the Child on the involvement of children in armed conflict when considering any recruitment or use of children", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Continue with the measures implemented in favour of the human right to water and sanitation, in the framework of General Assembly resolution 64/292 ", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Ratify the Second Optional Protocol to the International Covenant on Civil and Political Rights, aiming at the abolition of death penalty", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Pursue efforts to promote school attendance of girls and women's rights", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Incorporate human rights education and training as a cross-cutting subject at all levels of the formal educational system, in particular at primary and secondary education ", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Continue its efforts in poverty reduction paying particular attention, inter alia, to vulnerable groups such as children, women, persons with disabilities and ethnic minorities", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Appoint, by consensus among all political forces in the country, an independent mediator ombudsman", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Fight poverty and provide high-quality education and health care for sustainable development ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Ensure compliance with all relevant national laws and policies within the legal framework of the Convention on the Elimination of All Forms of Discrimination against Women ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Look into amending the Personal and Family Code in accordance with international standards on women's human rights", - "values": [ - "3 - Considering action" - ] - }, - { - "text": "Pursue its efforts so as to improve health services and education", - "values": [ - "4 - General action" - ] - }, - { - "text": "Establish an independent body to monitor the implementation of the CRC and adopt a National Plan of Action on Children", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Adopt an open, merit-based selection process when selecting national candidates for United Nations treaty body elections", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Establish a national policy to address the rights of persons with disabilities", - "values": [ - "4 - General action" - ] - }, - { - "text": "Adopt legislation that defines the necessity and proportionality of the use of force by police during acts of protest of the civil population", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Take further resolute action to deal with the problems of reported instances of hate speech by politicians, targeting migrants, asylum-seekers, refugees, and persons of African origin in a comprehensive manner ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Ensure that the Code for Children and Adolescents and other relevant domestic legislation and practice are in full compliance with the requirements of ILO Convention No. 138", - "values": [ - "4 - General action" - ] - }, - { - "text": "Extend an open and standing invitation to special procedures of the Human Rights Council ", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Refrain from restricting access to and banning from websites and withdraw the Order of 5 November 2011 with requires news sites to be registered", - "values": [ - "4 - General action" - ] - }, - { - "text": "Allow access to its detention centers by independent organizations and to arrested foreigners by their diplomatic representatives in accordance with its international human rights obligations", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Continue its effective measures to fight poverty, in particular through the pursuance of its Interim National Development Framework towards the attainment of the ideals under the country's Vision 20-20, and also to meet the Millennium Development Goals targets ", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Continue to implement policies for the socio-economic growth of its people", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Undertake further measures to protect women and children, particularly from violence and exploitation", - "values": [ - "4 - General action" - ] - }, - { - "text": "Continue efforts to eradicate poverty ", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Ratify the International Convention on the Protection of All Persons from Enforced Disappearance", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Implement with no exception the principle of non-refoulement in the context of asylum seeking procedures", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Prohibit and criminalize acts of domestic violence", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Fully align national criminal laws with international human rights obligations, especially in relation to the criminalization of same-sex relations", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Continue its efforts to promote international cooperation in the fight against severe consequences of climate change in order to reduce the environmental vulnerability that is crucial for the enjoyment of vital human rights and call upon the international community to provide material and financial assistance to the Comoros ", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Continue with the efforts aiming at the ratification of the International Convention for the Protection of All Persons from Enforced Disappearance as well as the ratification of the main international human rights instruments to which Fiji is not yet a party to", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Call for all possible technical and financial assistance, it needs, by the international community as well as the Office of the High Commissioner for Human Rights.", - "values": [ - "1 - Minimal action" - ] - }, - { - "text": "Continue its efforts to alleviate poverty and promote sustainable economic and social development so as to allow its people to better enjoy all human rights", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Continue its policy of promoting and protecting the rights of indigenous peoples by consolidating it with further measures to ensure the full exercise of the rights of all components of Namibian society while respecting its traditions and identity ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Continue effectively the fight against female genital mutilation", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Consider acceding to human rights instruments to which it is not yet party, particularly the Optional Protocol to the Convention against Torture and Other Cruel, Inhuman or Degrading Treatment or Punishment ", - "values": [ - "3 - Considering action" - ] - }, - { - "text": "Educate the national security forces to effectively uphold law and order particularly when policing demonstrations and large crowds by reviewing and enhancing security training programmes on crowd control techniques and implementing non-aggressive strategies", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Continue to implement the poverty reduction strategy to further lower the rate of poverty.", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Establish a national human rights institution, with the support of international technical and financial assistance", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Refrain from undertaking actions beyond its borders that contribute to violations and abuses of human rights, including through immediate termination of any relevant form of political, military, logistical or financial support in this regard", - "values": [ - "4 - General action" - ] - }, - { - "text": "Fight against women trafficking and enhance, in this regard, regional cooperation", - "values": [ - "4 - General action" - ] - }, - { - "text": "Consider establishing the post of an ombudsman to coordinate and monitor the performance of its institutions, assess the outcome and impact of various initiatives, and provide periodic reports", - "values": [ - "3 - Considering action" - ] - }, - { - "text": "Continue its efforts to fight poverty ", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Take all necessary measures to ensure that detention conditions fully meet international human rights standards, in accordance with Bulgaria's international obligations", - "values": [ - "4 - General action" - ] - }, - { - "text": "Ensure that law enforcement thoroughly investigates all claims of domestic violence, and that perpetrators are prosecuted", - "values": [ - "4 - General action" - ] - }, - { - "text": "Continue to implement measures to fill whatever protection gaps regarding persons of African-descent", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Strengthen the legislation and effective measures in order to better protect vulnerable groups, in particular women and children, and eradicate the customary practices that are harmful to them", - "values": [ - "4 - General action" - ] - }, - { - "text": "Thailand is also committed to the implementation of its human rights pledges which have already been translated into an action plan with a follow-up mechanism. International standards reflected in international human rights instruments have become benchmarks for drafting of laws and policies on human rights protection for the people", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Build on structures already in place and set up a national preventive mechanism in accordance with OP-CAT standards ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Fully apply the Convention governing the specific aspects of refugee problems in Africa and respect international refugee law, conclude, as soon as possible, a headquarters agreement with the United Nations High Commissioner for Refugees ", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Continue to strengthen its efforts on human rights education, training and awareness-raising", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Guarantee that its national mechanism respects all the provisions of the Optional Protocol to the Convention Against Torture, ensuring that it has all the necessary financial and human resources", - "values": [ - "4 - General action" - ] - }, - { - "text": "Take steps to reduce prison overcrowding, and to ensure that food rations for prisoners meet international standards ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Intensify its efforts to combat gender-based violence against women and girls, including from minority communities", - "values": [ - "4 - General action" - ] - }, - { - "text": "Ratify the Optional Protocol to the Convention on the Rights of the Child in order to better counter trafficking in children, child prostitution and child pornography ", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Engage with the ethnic groups, in an ongoing and systematic basis, to ensure their rights to equality and non-discrimination are guaranteed", - "values": [ - "4 - General action" - ] - }, - { - "text": "Extend an open invitation to Special Procedures", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Enact adequate legal measures to prohibit incitement to racial hatred and to fight against racism, xenophobia and Islamophobia", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Designate and empower one or more government officials to coordinate the Government's efforts to protect children ", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Continue to strengthen the educational system and ensure equal access of disabled children to education", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "To extend a standing invitation to special mandate holders on human rights ", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Continue to provide, in accordance with its obligations under international human rights law, the widest possible protection and support for the family, as the natural and fundamental unit of society", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Undertake further measures to protect social rights, including the rights of children, women and persons with disabilities", - "values": [ - "4 - General action" - ] - }, - { - "text": "Further address the gender disparity in school enrolment rates at the tertiary level ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Further prioritize the protection of the victims from such racially motivated offences and ensure criminalization of incitement to racial hatred and effective sanctions for these crimes", - "values": [ - "4 - General action" - ] - }, - { - "text": "To examine the possibility of withdrawing or modifying reservations made by the Government to article 14, paragraph 2 (c) of the Convention on the Elimination of All Forms of Discrimination against Women", - "values": [ - "3 - Considering action" - ] - }, - { - "text": "Prohibit corporal punishment of children in all settings, including in the home", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Allow for the full independence and effective functioning of the judiciary, the Attorney General's office and the Ministry of Justice, without any interference of the military in judicial or political affairs ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Explicitly prohibit the corporal punishment of children in the home and in all alternative care settings ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Stop building settlements in the Arab occupied territories and implement the United Nations decisions in this regard", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Continue its initiatives in ensuring the provision of quality education for all its people", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Decriminalize consensual same-sex activity between adults and eliminate legal provisions discriminatory to women and religious, national and other minorities", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Issue an open and standing invitation to United Nations human rights special procedures mandate holders", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Step up efforts to promote and facilitate media pluralism and ensure that mass media can operate without government interference ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Consider seeking assistance to build adequate capacity to develop and retain appropriate human resources to eradicate poverty ", - "values": [ - "3 - Considering action" - ] - }, - { - "text": "Take all necessary legal and other measures to curb violence against women and to provide support for victims of violence against women, and their children ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Take necessary actions to check terrorist financing", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Continue its efforts to take the necessary measures to combat the trafficking and smuggling of persons and to protect and assist the victims ", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Share its experience and good practices in the area of social protection and health, particularly on programmes to control epidemics, including HIV-AIDS programs and the special attention provided to those affected", - "values": [ - "1 - Minimal action" - ] - }, - { - "text": "Give the highest priority to the implementation of the action plan for IDPs ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Increase government efforts to eradicate child poverty, and in this regard undertake an assessment of the impact of the welfare reform on children from disadvantaged families", - "values": [ - "4 - General action" - ] - }, - { - "text": "Adopt the necessary policy measures to promote gender equality, with a particular attention to combating gender violence through education and awareness raising campaigns as well as through comprehensive legal and psychological support to counter this violence ", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Consider becoming a party to the ICRMW", - "values": [ - "3 - Considering action" - ] - }, - { - "text": "Adopt the appropriate measures to guarantee the free exercise of the rights of assembly and association without unjustified restrictions and to respect the legitimate space of civil society, journalists and human rights defenders", - "values": [ - "4 - General action" - ] - }, - { - "text": "Continue efforts to empower women and promote their participation in society, in particular, political life, decision making, and accessing high level posts", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Take concrete steps to include the right to education in the Constitution", - "values": [ - "4 - General action" - ] - }, - { - "text": "Accede to international human rights instruments", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Set targets for increasing Maori participation in policing, the judiciary and the penal system ", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Review its Police Act to enhance its citizens' ability to exercise the right to peaceful assembly", - "values": [ - "3 - Considering action" - ] - }, - { - "text": "Enhance its successful experience in the field of rehabilitation of suspected and imprisoned persons for terrorism and to expand it to other penal affairs and to exchange its experience in this field with other countries ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Lift its reservations to the Convention on the Elimination of all Forms of Discrimination against Women and ratify the Maputo Protocol to ensure women's rights", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Introduce measures aimed at the elimination of discrimination against women and the improvement of the implementation of existing laws criminalizing rape and domestic violence, including investigations and prosecutions related to violence against women, and also by strengthening the relevant legal framework", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Ensure that any interference with the right to privacy is consistent with international human rights standards, especially with the principles of legality, necessity and proportionality", - "values": [ - "3 - Considering action" - ] - }, - { - "text": "Provide the Ministry of Social Development and Inclusion with the necessary resources for it to successfully carry out its functions", - "values": [ - "4 - General action" - ] - }, - { - "text": "Step up efforts to fight unlawful treatment of and violence against children, including sexual abuse", - "values": [ - "4 - General action" - ] - }, - { - "text": "Continue adopting public policies including affirmative measures, on provisional basis if needed, in order to increase participation of women in the political and public spheres", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Further improve the living standard of the people by reducing poverty and economic disparity", - "values": [ - "4 - General action" - ] - }, - { - "text": "Explicitly prohibit corporal punishment in all settings by law", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Fully implement without further delay Act 779 on violence against women ", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Consider exceptions from the general prohibition of abortion and remove punitive prohibitions for women who undergo abortion", - "values": [ - "3 - Considering action" - ] - }, - { - "text": "Speed up the process towards ratification of the Convention on the Rights of Persons with Disabilities", - "values": [ - "4 - General action" - ] - }, - { - "text": "Take all necessary measures to make its National Human Rights Institution fully compliant with the Paris Principles ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Strengthen awareness-raising and implementation of the national Action Plan for Human Rights", - "values": [ - "4 - General action" - ] - }, - { - "text": "Take the necessary measures to accelerate processing of court cases in respect of the right to access to justice and right to a fair trial", - "values": [ - "4 - General action" - ] - }, - { - "text": "Urgently accelerate the establishment of a national mechanism to combat torture, as well as guarantee its independence and the availability of the necessary resources to enable it to perform its functions", - "values": [ - "4 - General action" - ] - }, - { - "text": "Ensure that harmful practices and stereotypes that discriminate against women are eliminated", - "values": [ - "4 - General action" - ] - }, - { - "text": "Carry out all efforts to reduce overcrowding in prisons and to ensure that imprisonment is a measure of last resort", - "values": [ - "4 - General action" - ] - }, - { - "text": "Extend free primary education throughout the country ", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Eliminate the practice of requiring boys and girls to work in the educational institutions where they are enrolled ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Continue implementing the SIDERECHOS computer platform, an important tool for the monitoring, follow-up and implementation of the recommendations of the universal periodic review", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Encourage high level State officials and politicians to take a clear position against racist or xenophobic political speech ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Expand the abolition of the death penalty to the military justice code", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "To the extent possible, and taking into account the human resources constraints, fulfil its reporting obligations to the relevant treaty bodies and to seek assistance from OHCHR in this regard", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Recommended the adoption of a legal moratorium on the use of the death penalty with a view to abolishing capital punishment in Ghana's national legislation.", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Take further action to prevent impunity of torture and ill treatment and give follow up to the recommendations of the United Nations Special Rapporteur on Torture", - "values": [ - "4 - General action" - ] - }, - { - "text": "Step up efforts to combat poverty, especially in rural areas and disadvantaged and marginalized regions, and allocate sufficient funding for this purpose, and ensure that economic, social and cultural rights are fully addressed in all anti-poverty measures ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Continue its efforts to train law enforcement personnel on human rights protection ", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Step-up its measures in addressing violence against women, including ensuring protection for the victims of the violence", - "values": [ - "4 - General action" - ] - }, - { - "text": "Adopt appropriate measures to disseminate widely and ensure full observance of the Declaration on Human Rights Defenders ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Re-establish, as quickly as possible, the conditions guaranteeing an independent and impartial judiciary", - "values": [ - "4 - General action" - ] - }, - { - "text": "Seek technical cooperation at the international level in order to respond in a timely manner to the challenge of providing a healthy and safe environment for its citizens ", - "values": [ - "1 - Minimal action" - ] - }, - { - "text": "Accelerate the development of a national human rights action plan", - "values": [ - "4 - General action" - ] - }, - { - "text": "Continue taking measures to promote and empower women and to enable them to participate in a more effective manner in public life", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Take measures to ensure the protection of the right to an adequate standard of living for children in vulnerable situations, in particular the rights of children affected by HIV/AIDS and boys and girls with disabilities", - "values": [ - "4 - General action" - ] - }, - { - "text": "Halt all transfer detainees to third countries unless there are adequate safeguards to ensure that they will be treated in accordance with international law requirements ", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Establish legislative measures to decriminalize sexual relations among adults of the same sex", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Mitigate the effects of the financial crisis on its efforts to address the issues of child poverty and street children ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Strengthen and advance its efforts for establishing a juvenile justice system and promote alternative measures to deprivation of liberty for juvenile offenders", - "values": [ - "4 - General action" - ] - }, - { - "text": "Incorporate a human rights-based approach in its every effort to achieve sustainable security and development, particularly in anti-terrorism operations", - "values": [ - "4 - General action" - ] - }, - { - "text": "Adopt necessary measures to guarantee fair justice for all", - "values": [ - "4 - General action" - ] - }, - { - "text": "Take concrete steps to combat juvenile delinquency which include the provision of opportunities for training, education and employment", - "values": [ - "4 - General action" - ] - }, - { - "text": "Review the legislation to ensure full freedom of belief, conscience and religion ", - "values": [ - "3 - Considering action" - ] - }, - { - "text": "Continue with efforts to advance the rights of women and combat discrimination against women and girls, in particular to achieve equal access to education and prevent girls dropping out of school", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Consider ways and means to ensure the right to education of children with disabilities, also in collaboration with the relevant international organizations and agencies", - "values": [ - "3 - Considering action" - ] - }, - { - "text": "Implement the recommendations contained in the latest report by the human rights monitoring mission in Ukraine of September 2017, notably to develop a national mechanism to make available to civilian victims of the conflict adequate, effective, prompt and appropriate remedies, including reparation", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Harmonize requirements of legislations on migration to ensure that migrants have access to justice, education, health and safety, regardless of their status ", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Continue taking effective policy and other measures to ensure adequate housing for its citizens, particularly in the lower income bracket ", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Mobilize national and international stakeholders for the continued implementation of its National Human Rights Roadmap", - "values": [ - "4 - General action" - ] - }, - { - "text": "Bring in line the definition of the crime of torture with the Convention against Torture and accede to the Optional Protocol to the Convention against Torture and Other Cruel, Inhuman or Degrading Treatment or Punishment ", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Promote the implementation of the police and the judiciary reforms", - "values": [ - "4 - General action" - ] - }, - { - "text": "End Israeli violations in the Occupied Syrian Golan.", - "values": [ - "4 - General action" - ] - }, - { - "text": "Continue promoting the respect for human rights, welfare and development of its people through education ", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Withdraw reservations to the Convention on the Elimination of All Forms of Discrimination against Women", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Assess the success of the 2014-2017 Cantonal Integration Programmes", - "values": [ - "4 - General action" - ] - }, - { - "text": "Working jointly with the Federal States to improve detention conditions in Brazilian prisons", - "values": [ - "4 - General action" - ] - }, - { - "text": "Enact specific legislation on marital rape", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Continue to carry out the system of regional autonomy in ethnic areas and give more favourable conditions to ethnic minorities for participating in the fields of politics, economy and culture", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Ensure the safety and well-being of human rights defenders so that they are able to carry out freely their legitimate duties", - "values": [ - "4 - General action" - ] - }, - { - "text": "Adopt measures, together with non-governmental organizations and anticorruption groups, with a view to combating corruption, particularly within the judicial system, in order to promote the respect of human rights.", - "values": [ - "4 - General action" - ] - }, - { - "text": "Review its legislation and practices to guarantee the free exercise of the right to freedom of assembly and freedom of expression, with any limitations other than those under international law ", - "values": [ - "3 - Considering action" - ] - }, - { - "text": "Fully implement the 2006 High Court ruling and allow all San individuals who want to live on the Central Kalahari Game Reserve to do so", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Ensure that the treatment of asylum seekers remains in accordance with the international conventions and protocols that Denmark has signed up to", - "values": [ - "4 - General action" - ] - }, - { - "text": "Provide effective protection to lawyers, human rights defenders and journalists in order to guarantee a safe environment for the development of their work", - "values": [ - "4 - General action" - ] - }, - { - "text": "Continue cooperating with the special procedures of the Human Rights Council on the basis of its national priorities ", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Set up an independent commission of inquiry to investigate the cruel, inhuman and degrading treatment suffered by children in the OPT and stop such actions", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Investigate all alleged human rights violations and to bring all those responsible to justice", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Conduct public awareness campaigns to promote tolerance and the principles of equality and non-discrimination including on the basis of sexual orientation and gender identity", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Undertake further steps to encourage a higher proportion of women in managerial positions in the public institutions and the private business", - "values": [ - "4 - General action" - ] - }, - { - "text": "Strengthen the legal protection for migrant workers, including domestic workers, against discrimination on the grounds of race, sex, religion or nationality", - "values": [ - "4 - General action" - ] - }, - { - "text": "Implement the recommendations of the Committee on the Rights of the Child contained in paragraph 65 of document CRC-C-QAT-CO-2", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Amend the citizenship laws to allow citizenship through either parent", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Give clear and immediate instructions to key high-ranking officials of the police force, the army and other security forces that all law enforcement officials should treat rape as a crime and take all measures to effectively investigate allegations of rape and other forms of sexual violence, and that it bring perpetrators to justice", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Take appropriate and effective measures to fight discrimination and violence against Roma and ensure their equal access to education, housing, health care and employment.", - "values": [ - "4 - General action" - ] - }, - { - "text": "Step up efforts towards the abolition of the death penalty", - "values": [ - "4 - General action" - ] - }, - { - "text": "Ensure equal public participation through the introduction of a universal legal age of majority for all Tongan", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Consider accession to international human rights instruments that it is not yet a party to, including the International Covenant on Civil and Political Rights and the International Convention on the Protection of the Rights of All Migrant Workers and Members of Their Families", - "values": [ - "3 - Considering action" - ] - }, - { - "text": "Take all necessary steps to ensure freedom of speech as guaranteed by international conventions to which the Gambia is a signatory", - "values": [ - "4 - General action" - ] - }, - { - "text": "Intensify efforts to ensure a favourable environment for the activities of journalists, human rights defenders and other civil society actors", - "values": [ - "4 - General action" - ] - }, - { - "text": "Continue to intensify its efforts to further promote and protect women's rights by allocating the necessary resources and to implement awareness-raising activities on the importance of women's participation in the decision-making process, and to take measures to increase their participation in political and public life ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Continue its efforts in finding ways to improve the protection of children victims of abuse and to enhance family institutions and reinforce moral values as an effective mean to promote and protect child rights", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Adopt a three-tiered classification of murder that will provide sentencing judges with the discretion to impose a sentence other than death and thereby preclude its mandatory imposition", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Implement all the recommendations of the International Commission against Impunity in Guatemala (CICIG) and ensure that adequate resources are available to strengthen the responsible institutions", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Prohibit by law corporal punishment against children in all settings and contexts, including in the home, and repeal all exceptions to its use", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Take urgent measures for the investigation and effective punishment of perpetrators of discrimination and violence against lesbian, gay, bisexual, transgender and intersex persons", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Increase its efforts to combat violence against women and children ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Continue strengthening the legal and institutional reform process in order to safeguard the full independence and transparency of the judiciary, including effective monitoring and accountability mechanisms", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Ensure that violations committed by members of the security forces are subject to judicial proceedings", - "values": [ - "4 - General action" - ] - }, - { - "text": "Maintain its prioritisation of the reconciliation processes required to support positive human rights outcomes in the areas of personal liberty, including freedom of expression and freedom from reprisal and extra judicial punishment", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Expedite the adoption of the Prevention and Combating of Hate Crimes and Hate Speech Bill", - "values": [ - "4 - General action" - ] - }, - { - "text": "Implement the new law (on the protection of human rights defenders, journalist, social communicators and justice officials) through an open consultation and participation process with civil society", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Hold security forces and other government officials accountable for human rights violations, including the use of torture and arbitrary arrests and detention of members of the opposition", - "values": [ - "4 - General action" - ] - }, - { - "text": "Consider joining the International Coordinating Committee of National Institutions", - "values": [ - "3 - Considering action" - ] - }, - { - "text": "Continue to collaborate closely with the donor community, United Nations agencies, international financial institutions and civil society organizations to develop stronger institutional capacity and align national policies and priorities with international norms and Myanmar's treaty obligations ", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Continue taking measures to face the perverse effects of the illegal coercive unilateral measures imposed on the country by some powers", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Give continuity to the strengthening of the national human rights institutions", - "values": [ - "4 - General action" - ] - }, - { - "text": "Withdraw the remaining reservations to the Convention on the Rights of the Child and to the Optional Protocols to the Convention on the Rights of the Child ratified by Oman", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Legally abolish the death penalty for all offenses and accede to the Second Optional Protocol to the ICCPR", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Accede to the International Covenant on Civil and Political Rights and its protocols", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Take all necessary measures to ensure that girls are protected against any discrimination and violence in schools, and that pregnant teenagers enjoy equal access to education", - "values": [ - "4 - General action" - ] - }, - { - "text": "Strengthen and enlarge existing programmes and take more and specific measures towards Aboriginals, particularly with regard to the improvement of housing, educational opportunities, especially after elementary school, employment, and that women's and children's rights are better safeguarded, in consultation with civil society", - "values": [ - "4 - General action" - ] - }, - { - "text": "Take more active steps to eradicate all forms of discrimination against women", - "values": [ - "4 - General action" - ] - }, - { - "text": "Proceed to all necessary legal and constitutional amendments in order to totally abolish the death penalty ", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Promote education for all without discrimination ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Accede to ICESR in a timely manner as it was signed in September 2000.", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Continue its efforts to implement programmes and activities aimed at adjusting Zambia\u2019s Correctional Service to the United Nations Standard Minimum Rules for the Treatment of Prisoners, including by adequate funding and training of officers", - "values": [ - "4 - General action" - ] - }, - { - "text": "Continue with the complete incorporation into domestic law of the rights enshrined in the International Covenant on Civil and Political Rights and the International Covenant on Economic, Social and Cultural Rights", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Create real space for a multi-party parliamentary election later this year in line with international standards and judged by independent observers to be fully free and fair ", - "values": [ - "4 - General action" - ] - }, - { - "text": "To the international community: assist Guinea technically and financially in meeting the various challenges it faces in the field of human rights ", - "values": [ - "1 - Minimal action" - ] - }, - { - "text": "Finalize and enact the draft law prohibiting all forms of trafficking and develop formal procedures for identifying trafficking victims among vulnerable populations such as females in prostitution, street children and Pygmies, and train police and social workers to implement these procedures.", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Sign and ratify the second Optional Protocol to the International Covenant on Civil and Political Rights ", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Ratify the Optional Protocol to the International Covenant on Economic, Social and Cultural Rights (ICESCR)", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Abrogate or amend the Internal Security Act and all legislation allowing for detention without trial ", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Raise the minimum age of criminal responsibility in accordance with acceptable international standards", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Prioritize legislation on women's rights and domestic violence, and implement domestic policies aimed at eliminating violence against women ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Accede to CAT and take immediate action to stop the use of torture and other ill-treatment of all detainees", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Tunisia will pursue, in 2008, its commitment to act for the promotion and respect of human rights, and to develop its cooperation with all the concerned parties at the national, regional and international levels", - "values": [ - "4 - General action" - ] - }, - { - "text": "Provide protection to the family as the basic and fundamental unity of the society", - "values": [ - "4 - General action" - ] - }, - { - "text": "Increase efforts to implement the legal framework regarding illtreatment of children, child labour and sexual exploitation of children ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Continue investing in the breaking down of a culture of inequality, which was inherited from apartheid, from a human rights angle ", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Continue its efforts to establish efficient and transparent public services", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Strengthen the ongoing measures to reduce hunger and to promote food security", - "values": [ - "4 - General action" - ] - }, - { - "text": "Introduce a moratorium on all executions as a first step towards final abolition of the death penalty ", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Adopt immediate and positive measures to combat all forms of discrimination, xenophobia and related intolerance against the Sinti and Roma communities, regarding their access to housing, education, employment and healthcare ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Process expeditiously requests by refugees for family reunification to ensure that unaccompanied minors are able to reunite with their families", - "values": [ - "4 - General action" - ] - }, - { - "text": "Undertake continued and enhanced efforts to protect and provide redress to women suffering from violence and to continue raising awareness, through training and other means, in the judicial system, including police, of the necessity to act against this violence ", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Step up efforts to combat all forms of discrimination towards women, in particular, by adopting legislation prohibiting traditional harmful practices, such as FGM", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Step up efforts to ensure accountability and fight impunity and, among other steps in this regard, ratify the Rome Statute of the ICC and the Agreement on Privileges and Immunities of the ICC", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Amend the Islamic Penal Code and outlaw inhuman corporal punishments", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Strengthen its international commitments by acceding to international conventions for the promotion and protection of human rights to which it is not yet party, and in particular the International Covenant on Civil and Political Rights ", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Provide the necessary resources to improve the schooling of children which belong to vulnerable groups and to combat the early dropout rates of children", - "values": [ - "4 - General action" - ] - }, - { - "text": "Continue to work closely with civil society to fight the propagation of HIV-AIDS, without which the 6th objective of the MDGs will be difficult to achieve.", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Initiate investigations as soon as possible to determine responsibilities in cases of allegations of abuse and torture by Congolese security forces - especially in prisons - and prosecute the perpetrators of such crimes", - "values": [ - "4 - General action" - ] - }, - { - "text": "Intensify its efforts to eradicate poverty and improve health care facilities for its people", - "values": [ - "4 - General action" - ] - }, - { - "text": "Share its experience with interested countries in the area of fighting corruption", - "values": [ - "1 - Minimal action" - ] - }, - { - "text": "Strengthen efforts to address violence against women and protection for victims ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Decriminalize consensual same-sex sexual relations, de-legalize discrimination against lesbian, gay, bisexual and transgender persons and discourage harassment and violence against them", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "End all discriminatory provisions in Kuwait's housing programme ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Promote employment, the right to health and judicial fairness for Maori and the Pacific Islanders and raise the level of education for their children ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Establish a national human rights institution in accordance with the Paris Principles and begin procedures as soon as possible to have it accredited it by the International Coordinating Committee of National Institutions.", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Continue strengthening the existing human rights monitoring mechanisms", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Adopt a comprehensive national strategy against trafficking in persons", - "values": [ - "4 - General action" - ] - }, - { - "text": "Introduce thorough and impartial investigation of allegations of torture and other ill-treatment in detention and ensure that alleged perpetrators are brought to justice", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Continue its efforts to improve the quality of education, including the quality and availability of school facilities, educational materials, teaching staff and curricula, prioritizing the most disadvantaged schools", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Take steps that all persons including bloggers, journalists and human rights defenders can freely exercise their right to freedom of expression, online as well as offline, without fear from censorship or persecution", - "values": [ - "4 - General action" - ] - }, - { - "text": "Ratify the UNESCO Convention on the Protection and Promotion of Diversity of the Cultural Expression", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Undertake measures enabling unrestricted access and use of the Internet to all citizens and undertake measures to guarantee the freedom of opinion and expression to everyone, as well as the freedom of press and media in the country ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Take the necessary measures to prevent the ritual murder of persons with albinism, children with disabilities, twins, and children accused of practising witchcraft, to investigate and prosecute those suspected of committing these crimes, and to increase efforts to raise awareness of the need to eradicate such practices", - "values": [ - "4 - General action" - ] - }, - { - "text": "Speed up the process to conform its National Human Rights Institution to the Paris Principles ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Fully align the national legislation with all obligations under the Rome Statute of the ICC, including incorporating the Statute's definition of crimes and general principles, as well as adopting provisions enabling cooperation with the ICC ", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Continue the fight against the corruption and the impunity at all the levels of the criminal justice system", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Enact legislation to prohibit, prevent and sanction child labour in all service sectors", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Curb abuses of Eritrean citizens in the national service programme, pass and enforce a comprehensive anti-trafficking statute, and cease the conscription of children into military services ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Ensure that detainees are afforded fundamental legal and procedural safeguards from the outset of their deprivation of liberty", - "values": [ - "4 - General action" - ] - }, - { - "text": "Guarantee the protection of refugees in conformity with the obligations of the 1951 Convention relating to the Status of Refugees", - "values": [ - "4 - General action" - ] - }, - { - "text": "Sign and ratify the International Convention for the Protection of All Persons against Enforced Disappearance. ", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Consider signing and ratifying the new Optional Protocol to the CRC on a communications procedure ", - "values": [ - "3 - Considering action" - ] - }, - { - "text": "Consider ratifying the OP-ICESCR ", - "values": [ - "3 - Considering action" - ] - }, - { - "text": "Sign and ratify the Optional Protocol to ICESCR and the Optional Protocol to the Convention on the Rights of the Child on a communications procedure ", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Seek, whenever needed, technical and financial assistance from the Office of the United Nations High Commissioner for Human Rights in order to submit the outstanding reports to the treaty bodies", - "values": [ - "1 - Minimal action" - ] - }, - { - "text": "Rigorously apply the legislation against gender violence and sexual violence, especially against girls and boys ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Undertake more effective measures to address the problems of impunity and violence against women and girls, including by strengthening law enforcement and the judicial system ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Address the rights of those individuals detained while awaiting trials, in particular foreigners, whose cases often experience prolonged delays", - "values": [ - "4 - General action" - ] - }, - { - "text": "Intensify efforts to seek necessary funding to address economic and social rights, in the wake of the Ebola crisis", - "values": [ - "4 - General action" - ] - }, - { - "text": "Encourage freedom of expression and the press, including by amending the penal code to remove all criminal penalties for alleged libel offences", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Act in earnest to prevent harassment, politically motivated arrests and arbitrary detentions of political opponents and to guarantee that they have equal access to funding and the media, and that all citizens are granted the right to free participation in public and political life", - "values": [ - "4 - General action" - ] - }, - { - "text": "Continue and enhance efforts to reduce the poverty level, especially for vulnerable groups, so as to boost employment, improve access to health and increase available social housing.", - "values": [ - "4 - General action" - ] - }, - { - "text": "Promote health and sanitary practices for the safety of mothers and their children, and uphold continually the inherent right to life", - "values": [ - "4 - General action" - ] - }, - { - "text": "Establish awareness campaigns on discrimination against members of the Roma community", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Open the proposed shelter for female and child trafficking victims and allocate sufficient resources to support long-term services for victims of trafficking", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Guarantee freedom of assembly and association, including through immediate alignment of national legislation, in particular the Public Order and Security Act, with international standards", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Work to improve detention conditions, particularly with regard to high suicide rates and the number of people suffering from mental health problems in prisons", - "values": [ - "4 - General action" - ] - }, - { - "text": "Continue to promote gender equality and the empowerment of women", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Continue to fully implement the 2011 National Education Law and provide training for a sufficient number of teachers for education in or of minority languages ", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Assess the implementation of the Strategy for Roma Integration up to 2020 annually and keep Roma NGOs, including women's and children's organizations, actively involved in the implementation and assessment of the strategy ", - "values": [ - "3 - Considering action" - ] - }, - { - "text": "Promptly ratify and implement the Optional Protocol to CEDAW", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Ensure that the fundamental legal safeguards for persons detained by the police are respected", - "values": [ - "4 - General action" - ] - }, - { - "text": "Standardize the legal definition of the child in order to harmonize the national legislation with international law and facilitate its implementation", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Ensure that any legislation, regulation or measures concerning the media fully respect the right to freedom of opinion and expression, including freedom of the media, in accordance with article 19 of ICCPR, including by preserving the ability of the media to investigate and report on public officials without fear of penalty", - "values": [ - "4 - General action" - ] - }, - { - "text": "Make progress in establishing complaints and prevention mechanisms for the forced sterilization of women, particularly Roma women and women with disabilities, which include reparation measures for the victims", - "values": [ - "4 - General action" - ] - }, - { - "text": "Address the arbitrary and excessive use of force by law enforcement agencies, in particular the military, by providing effective human rights-sensitive training and additional resources, and setting up accountability mechanisms", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Take necessary steps, such as streamlining organizational registration processes and allowing independent media to operate in the country, to foster an environment where opposition parties, journalists, civil society, and all citizens of Equatorial Guinea can operate freely, independently, and without fear", - "values": [ - "4 - General action" - ] - }, - { - "text": "Strengthen the capacities of the judiciary institutions", - "values": [ - "4 - General action" - ] - }, - { - "text": "Continue implementation of established programmes for the socioeconomic development of the country, which contribute to the protection of human rights, and complete the development of the national strategic plan of action in the field of human rights", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Align national legislation with the international standards to guarantee freedom of assembly and association, in particular as regards the notification of the organization of peaceful assemblies", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Take measures to prevent and sanction police harassment and torture, including through human rights education and training modules", - "values": [ - "4 - General action" - ] - }, - { - "text": "Renew invitation to the Special Procedures of the Council which participated in the preparation of a joint study on secret detention to enable them to conduct in situ investigations of facts contained in document A/HRC/13/42 concerning Lithuania ", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Adopt a de jure moratorium on executions with a view to abolishing the death penalty ", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Strengthen monitoring and supervision by relevant environmental agencies in order to ensure that toxic waste is treated in an environmentally sound manner", - "values": [ - "4 - General action" - ] - }, - { - "text": "Restart the dialogue with media representatives on the road map for the implementation of the activities to safeguard freedom of expression in the country, those activities which are a priority in the framework of the High Level Accession Dialogue", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Comply with the letter and spirit of the representations in its national report and ensure that civil society groups are able to operate without harassment or other forms of intimidation", - "values": [ - "4 - General action" - ] - }, - { - "text": "Make efforts to speedily draft and implement the new law on the right to assembly with fewer demands regarding prior registration and fewer requirements for information concerning, for example, the participants in an assembly, and to clarify policy intentions for State authorities or others entrusted with implementing decisions under the new law", - "values": [ - "4 - General action" - ] - }, - { - "text": "Consider ratifying more core human rights conventions, including the ICRMW", - "values": [ - "3 - Considering action" - ] - }, - { - "text": "Consider ratification of the Convention on the Elimination of All Forms of Discrimination against Women and the Protocol to the African Charter on Human and Peoples' Rights on the Rights of Women in Africa and to review its domestic legislation with the aim to eliminate discrimination against women", - "values": [ - "3 - Considering action" - ] - }, - { - "text": "Continue to ratify the international conventions on human rights", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Adopt, in consultation with indigenous peoples, a national action plan for the implementation of the UNDRIP ", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Participate and contribute in human rights activities at national and international levels and draw on best practices that can be incorporated into relevant domestic policies and legislations. ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Comply with its obligations under the ICCPR, particularly by abolishing the penalty of detention for offences of the press", - "values": [ - "4 - General action" - ] - }, - { - "text": "Adopt inclusive legislation for people with disabilities", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Promote multilingualism, in particular in the educational system, in line with the Constitution ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Adopt legislative measures to prevent that they become victims of trafficking", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Finalize various outstanding treaty reports, particularly to the Committee on the Elimination of Discrimination against Women.", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Consider ratifying those main international instruments to which it is not party, particularly the Convention against Torture and Other Cruel, Inhuman or Degrading Treatment or Punishment and its Optional Protocol, the International Convention on the Protection of the Rights of All Migrant Workers and Members of Their Families, the Optional Protocols to the International Covenant on Civil and Political Rights and the International Covenant on Economic, Social and Cultural Rights and to the Convention on the Elimination of All Forms of Discrimination against Women ", - "values": [ - "3 - Considering action" - ] - }, - { - "text": "Prosecute and punish those responsible for torture", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Review prison regulations to prohibit the reduction of diet as a form of punishment ", - "values": [ - "3 - Considering action" - ] - }, - { - "text": "Refrain from further budgetary cuts for the national council for women", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Adopt further measures to increase the participation of women in political life, including to serve as senior level officials in the executive and judicial branches, at the national and local levels", - "values": [ - "4 - General action" - ] - }, - { - "text": "Ratify the Optional Protocol to CEDAW as soon as possible", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Investigate in a prompt, transparent and impartial manner allegations of violations of international law and human rights by armed and security forces and establish procedures for verification and oversight to ensure that perpetrators of grave violations are removed from these forces", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Intensify efforts in consolidating the right of education to further raise the level of compulsory education as consolidations as the advance it has made in the human capital formation", - "values": [ - "4 - General action" - ] - }, - { - "text": "Ensure that attacks against human rights defenders are properly investigated and their perpetrators are prosecuted", - "values": [ - "4 - General action" - ] - }, - { - "text": "Amend the 1993 Amnesty Law, which grants full amnesty to members of armed and security forces, and fight against impunity of perpetrators of acts of torture, as recommended in 2013 by the Committee against Torture", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Consider ratifying ICCPR, ICESCR as well as the ICRMW", - "values": [ - "3 - Considering action" - ] - }, - { - "text": "Bring the nationality legislation into compliance with the provisions of the 1961 Convention on the Reduction of Statelessness and the Convention on the Rights of the Child", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Continue its efforts to establish effective consultation processes with indigenous communities", - "values": [ - "4 - General action" - ] - }, - { - "text": "Continue to promote rural development policies for the protection of the rights of peasants and other persons working in rural areas", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Enhance cooperation with the human rights special procedures", - "values": [ - "4 - General action" - ] - }, - { - "text": "Continue the reform of the judicial system.", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Adopt suitable legislation to combat and punish discrimination on the basis of pregnancy and family leave in the labour market, which provides for reparation for victims", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Address the root causes of poverty, unemployment and lack of education, particularly those affecting children and juveniles, which would help to combat violence and organized crime - which, not infrequently, are the consequences of disappointment and the hopeless future of unemployed young people - as well as to prevent migration and the involvement of persons in drug trafficking and human trafficking", - "values": [ - "4 - General action" - ] - }, - { - "text": "Take necessary measures to implement its national strategy to combat violence against women, and in advancing their rights", - "values": [ - "4 - General action" - ] - }, - { - "text": "Consider the option of ratifying the relevant international conventions, mainly the Convention on the Elimination of All forms of Discrimination against Women, the Convention on the Rights of the Child and the International Convention for the Protection of All Persons from Enforced Disappearance", - "values": [ - "3 - Considering action" - ] - }, - { - "text": "Review and amend the national legislation in order to reinforce the protection against discrimination, including based on religion, sexual orientation and gender identity, and introduce education programmes preventing such discrimination and stigmatization", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Strengthen its policy for the full guarantee of the rights of the child with attention to the implementation of the Guidelines for the Alternative Care of Children, in accordance with Council resolution 11-7 and General Assembly draft resolution A-C.3-64-L.50 ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Sign and ratify the Optional Protocol to ICESCR, ICCPR-OP 1, OP-CAT and the International Convention for the Protection of All Persons from the Enforced Disappearance (CED)", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Criminalize torture and other inhuman or degrading treatment or punishment in the Penal Code ", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Ensure that efficient procedures and responsive mechanisms for effective and equal access to lawyers are provided for at all stages of legal proceedings ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Take immediate steps to implement the new Constitution's provision that international human rights are to be fully respected, including press freedom, freedom of expression, assembly and association ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Ensure freedom of expression, including by protecting journalists and human rights defenders from intimidation and aggression ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Increase the number of home shelters in order to replace protective custody for women at risk of violence", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Continue the efforts to achieve the Millennium Development Goals", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Implement a legislative framework for an appropriate and meaningful consultation procedure that will ensure genuine, free and informed consent of indigenous peoples in land disputes, as set out in the United Nations Declaration on Indigenous Peoples Rights", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Make further efforts to obtain \u201cA\u201c status in conformity with the Paris Principles for the National Human Rights Commission", - "values": [ - "4 - General action" - ] - }, - { - "text": "Ensure that the provisions of CEDAW are reflected in the new draft constitution by, inter alia, retaining the removal of article 23", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Continue strengthening government capacity to effectively investigate and prosecute all crimes, including labour law violations", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Ensure thorough and independent investigations into violent deaths and commit to bringing to justice those involved in abuses, including security forces", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Enforce and enhance relevant laws and regulations for the freedom of religion and other practices of minorities", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Decriminalize defamation and place it under the civil code in accordance with international human rights standards", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Extend a standing invitation to the Special Rapporteur on the situation of human rights in Eritrea and to all other special procedures mandate holders, and cooperate fully with OHCHR ", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Complement its signature of ICESCR by ratifying it and recognizing the justiciability of these rights in its domestic legal systems", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Increase human and financial resources allocated to the new antidiscrimination body, within the Ombudsman's Office, in order to ensure effective functioning of this institution, as well as further strengthening the financial and human resources of the national machinery for women's rights ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Treat offenders under the age of 18 in police custody and detention differently from adults.", - "values": [ - "4 - General action" - ] - }, - { - "text": "Sign and ratify the International Covenant on Civil and Political Rights and the African Charter on Human and Peoples' Rights", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Review domestic legislation in order to ensure the effective criminalization of all acts of torture, pursuant to the obligations under the Convention against Torture and Other Cruel, Inhuman or Degrading Treatment or Punishment", - "values": [ - "3 - Considering action" - ] - }, - { - "text": "Introduce a requirement that all deaths in custody be reviewed and investigated by independent bodies tasked with considering prevention of deaths and implement the recommendations of Coronial and other investigations and enquiries ", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Make sure that basic living conditions are met in prisons by providing food, drinking water and medical assistance", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Sign the Second Optional Protocol to ICCPR, Aiming at the Abolition of the Death Penalty ", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "To publish regularly, on the site of the Ministry of Foreign and European Affairs, the concluding observations of the treaty bodies", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Pay special attention to the needs of women in strategies to combat poverty, ensuring that women have enhanced access to health, education, clean water and sanitation and income-generating activities", - "values": [ - "4 - General action" - ] - }, - { - "text": "Expedite the adoption of the law to combat violence against women", - "values": [ - "4 - General action" - ] - }, - { - "text": "Implement effective measures to reduce the discrimination against women, including access to health, education, social welfare, justice and administrative services", - "values": [ - "4 - General action" - ] - }, - { - "text": "Take measures to ensure everyone's equal access to justice, in accordance with international standards ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Continue to actively participate in the climate change negotiations for a strong legally binding outcome of the United Nations Framework Convention on Climate Change process", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Take all necessary measures to ensure to its indigenous peoples the full enjoyment of all their human rights, including economic, social and cultural rights, so that their quality of life is similar to the rest of citizens ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Continue to fight corruption at all levels and to accede to relevant international and regional instruments in this regard.", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Provide asylum seekers and persons awaiting deportation with free legal counsel and provide necessary funding and access to institutions that can provide such counsel ", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Accept the jurisdiction of the Committee related to the International Convention for the Protection of All Persons from Enforced Disappearance.", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Implement further policies to ensure gender equality and the promotion of the rights of women and children throughout society ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Work towards the compliance of pretrial detention (remand) procedures, which includes children, with international law standards and national regulations", - "values": [ - "4 - General action" - ] - }, - { - "text": "Create an independent national human rights institution with a broad mandate and matching resources, in accordance with the Paris Principles", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Finalize the ratification process of the Council of Europe's Convention on Preventing and Combating Violence against Women and Domestic Violence ", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Strengthen its national strategy to reform the prison system, in particular to promote the prompt reintegration of juvenile detainees into society", - "values": [ - "4 - General action" - ] - }, - { - "text": "The Republic of Azerbaijan is cooperating with the UN Special Procedures-mandate holders and is committed to the very cooperation.", - "values": [ - "4 - General action" - ] - }, - { - "text": "Create an independent administrative body to regulate broadcast media", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Develop a clear timeline and benchmarks for the full implementation of Sri Lanka\u2019s commitments under Human Rights Council resolution 30/1", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Continue strengthening the participation of women in decision making processes", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Ensure that the non-discrimination against women is reflected in the provisions of domestic law, including in the context of the current process of the constitutional reform", - "values": [ - "4 - General action" - ] - }, - { - "text": "Follow up the implementation of national machinery for the advancement of women and addressing violence against women ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Continue its democratisation process by means of restructuring of the local police forces", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Accelerate the establishment of a police independent mechanism which ensures that they do not resort to violence against women and girls", - "values": [ - "4 - General action" - ] - }, - { - "text": "Consider ratifying the Optional Protocol to CEDAW and the Optional Protocols to CRC ", - "values": [ - "3 - Considering action" - ] - }, - { - "text": "Continue combating the phenomena of racism and xenophobia and promote tolerance between cultures and religions ", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Consider ratifying the Palermo Protocol to Prevent, Suppress and Punish Trafficking in Persons, Especially Women and Children", - "values": [ - "3 - Considering action" - ] - }, - { - "text": "Consider strengthening the independence of the Kiribati National Human Rights Task Force so that it complies with the Paris Principles", - "values": [ - "3 - Considering action" - ] - }, - { - "text": "Continue to strengthen the rule of law through judicial reform and improvement in law enforcement ", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Undertake measures, including through human rights education and training, to modify traditional practices that are in conflict with human rights standards which guarantee equality between men and women", - "values": [ - "4 - General action" - ] - }, - { - "text": "Take effective steps to end discrimination against Roma in health", - "values": [ - "4 - General action" - ] - }, - { - "text": "Ensure full and consistent implementation of the Family Court Proceedings Reform Bill, in particular with regard to issuing immediate protection for victims of domestic abuse ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Continue its efforts aimed at strengthening and protecting human rights", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Present to the Parliament and support the approval, as soon as possible, of a new comprehensive draft bill against racism, racial discrimination, xenophobia and all related forms of intolerance", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Consider ratifying the outstanding human rights instruments and further update domestic laws to be in line with those articles", - "values": [ - "3 - Considering action" - ] - }, - { - "text": "Continue with its efforts to ensure that children have access to education and health care especially in rural areas", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Hold accountable all persons who are liable for the violation of human rights and humanitarian law", - "values": [ - "4 - General action" - ] - }, - { - "text": "Enact and enforce legislation that facilitates women\u2019s social, political and economic empowerment, including in relation to child marriage and forced conversion", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Adopt a specific law on violence against women that contain both criminal and civil provisions ", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Consider ratifying CPED ", - "values": [ - "3 - Considering action" - ] - }, - { - "text": "Exert additional efforts toward improving economic rights ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Protect rights of indigenous peoples in water and safe environment especially when granting extracting concessions", - "values": [ - "4 - General action" - ] - }, - { - "text": "Consider reinstating the policy of seeking clemency for all Canadian citizens sentenced to death in other countries", - "values": [ - "3 - Considering action" - ] - }, - { - "text": "Adopt urgent measures to improve access to health services, particularly in remote communities ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Continue its efforts in promoting human rights, especially by integrating into school programmes the fundamental principles of human rights and strengthening the education on these rights in parallel campaigns and educational measures", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Fully implement its national human rights plan to strengthen institutional coordination and monitoring of human rights policies in the Bolivarian Republic of Venezuela, particularly with regard to social protection programmes that support older persons and persons with disabilities", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Take appropriate measures to protect and promote the rights of disadvantaged groups", - "values": [ - "4 - General action" - ] - }, - { - "text": "Step up its efforts in ensuring that the issues of the inability by prisoners to hire their own lawyers and overcrowding in prisons are attended to and appeal to the Human Rights Council and the international community to render both financial and technical assistance to help the Government of Mozambique meet its international obligations", - "values": [ - "4 - General action" - ] - }, - { - "text": "Continue to combat human trafficking", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Examine the possibility of initiating an assessment of all existing mechanisms for the promotion and protection of human rights with a view to strengthening them as needed ", - "values": [ - "3 - Considering action" - ] - }, - { - "text": "Combat, in law and in practice, discrimination based on sexual orientation", - "values": [ - "4 - General action" - ] - }, - { - "text": "Actively monitor compliance and enforce employment safety regulations, especially in the construction and mechanical industries", - "values": [ - "4 - General action" - ] - }, - { - "text": "Intensify the efforts to raise awareness among women and girls about their rights under the Convention on the Elimination of All Forms of Discrimination against Women and on the individual communication procedures contemplated in its Optional Protocol", - "values": [ - "4 - General action" - ] - }, - { - "text": "Implement the recommendations of the Special Rapporteur on the question of torture.", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Provide equal rights for all citizens of Israel regardless of their origin and confession, allowing them equal access to employment, education and other socio-economic rights as well as participation in political processes", - "values": [ - "4 - General action" - ] - }, - { - "text": "Establish measure to effectively address discrimination and violence against women and girls", - "values": [ - "4 - General action" - ] - }, - { - "text": "Include in the plan outlined by the Attorney-General for the early ratification of the Convention on the Rights of Persons with Disabilities measures to increase the proportion of children with disabilities attending school", - "values": [ - "4 - General action" - ] - }, - { - "text": "Undertake awareness-raising campaigns to ensure the effective implementation of and respect for the laws of the State, in particular by ensuring the effective investigation and prosecution of honour killings and cases of violence, including domestic violence against women and children ", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Promote greater public appreciation for the importance of according equal rights for the Roma, including freedom from abuse and discrimination", - "values": [ - "4 - General action" - ] - }, - { - "text": "Take concrete measures to ensure effective implementation of the Act prohibiting female genital mutilation, including by investigating relevant incidents and prosecuting perpetrators as well as by rehabilitating victims", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Improve the legal framework in the field of human rights, especially the rights of the child, women's rights, the rights of persons with disabilities and the rights of minorities ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Increase resources to reduce overcrowding and improve health facilities in prisons, and follow the National Commission for the Prevention of Torture recommendations on youths and juveniles in pretrial detention", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Take concrete measures to improve services for migrants and to ensure full respect of the human rights of migrants.", - "values": [ - "4 - General action" - ] - }, - { - "text": "Ensure that any decision obliging a foreigner to leave the country is in accordance with international standards and under no circumstances should a person needing international protection be expelled, in accordance with the Convention Relating to the Status of Refugees, the Convention against Torture and Other Cruel, Inhuman or Degrading Treatment or Punishment and the International Covenant on Civil and Political Rights, to all of which Denmark is a party ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Closely cooperate with the International Commission against Impunity in Guatemala", - "values": [ - "4 - General action" - ] - }, - { - "text": "Establish a comprehensive policy for children with disabilities, as recommended by the Committee on the Rights of the Child", - "values": [ - "4 - General action" - ] - }, - { - "text": "Take measures to address the high repetition rates and the high dropout levels in schools, especially of girls in vulnerable situations or facing multiple forms of discrimination, as recommended by the Committee on the Elimination of Discrimination against Women, including further incentives for parents to send their children, boys and girls, to school.", - "values": [ - "4 - General action" - ] - }, - { - "text": "Develop and adopt further measures to prevent and combat sexual violence against women", - "values": [ - "4 - General action" - ] - }, - { - "text": "Redouble its efforts to improve the enforcement of the minimum legal age for marriage, and remove discrimination based on gender in this respect", - "values": [ - "4 - General action" - ] - }, - { - "text": "Make efforts to eliminate regional disparities in access to safe drinking water, especially between urban and rural areas ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Continue putting an emphasis on the promotion of human rights, ensuring the right to basic standards of health, education, nutrition and welfare of the entire population ", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Institute mechanisms to ensure that a gender perspective is incorporated into its future policies and programmes", - "values": [ - "4 - General action" - ] - }, - { - "text": "Call on the international community for technical assistance to improve human rights awareness and understanding throughout the population ", - "values": [ - "1 - Minimal action" - ] - }, - { - "text": "Adopt specific law on domestic violence ", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Implement the strategic action plan on human trafficking as well as to strengthen services for trafficking victims", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Continue efforts to ensure the safety, security and dignity of migrant workers, including women domestic workers, and protection of their interests through requisite institutional and legislative measures", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Review its national laws and practices to end the detention of all migrant children", - "values": [ - "3 - Considering action" - ] - }, - { - "text": "Approach the issue of regulating freedom of expression on the Internet through consultations with all stakeholders ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Take measures for improving the access of children to the basic social services", - "values": [ - "4 - General action" - ] - }, - { - "text": "Implement school meals programs and link them to local food production ", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "In the coming years, the Government will focus on the policies to improve access by disadvantaged groups to social security and considers developing insurance for agriculture.", - "values": [ - "3 - Considering action" - ] - }, - { - "text": "Take urgent measures in order that asylum-seeking children are not deprived of their liberty", - "values": [ - "4 - General action" - ] - }, - { - "text": "Take steps to prevent acts of racially motivated violence and discrimination, including through education and awareness campaigns, ensuring effective interventions by law enforcement and ensuring the successful prosecution of those that commit such crimes", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Continue its appreciable efforts towards the development of national languages and promote and protect the Amazigh language and cultural heritages", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Investigate credible allegations of human rights violations by security forces and prosecute, as appropriate, parties responsible in accordance with its international obligations and commitments ", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Continue efforts to improve the status of women and to empower them.", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Intensify effort to raise the level of attendance of girls in school through the modification of traditional customs and beliefs that hinder girls from attending school", - "values": [ - "4 - General action" - ] - }, - { - "text": "Continue its positive approach with regard to the promotion of human rights through its education system ", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Establish a fully independent electoral commission allowing for open participation of all political parties and objective certification of election results", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Intensify its efforts for the promotion of gender equality consistent with the obligations of Afghanistan under CEDAW, including through the review and elimination of laws, customs and practices that lead to discrimination against women and girls, making available effective legal remedies for the victims of discrimination and violence, and actively promoting the participation of women and girls in different fields such as education, labour and political life.", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Continue efforts to adopt and implement the legislative framework to prevent, punish and eliminate all forms of discrimination, with special attention to gender equality and discrimination based on sexual orientation and disability", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Enact general laws to combat discrimination, particularly against migrants and ethnic and religious minorities", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Continue taking measures to ensure adequate protection of human rights in actions taken to address climate change", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Consider formulating and implementing national policies on gender to help define and coordinate efforts to tackle discrimination, marginalization and violence against women", - "values": [ - "3 - Considering action" - ] - }, - { - "text": "Strengthen efforts to integrate Roma and Sinti communities through positive action in the areas of education, employment, housing and social services", - "values": [ - "4 - General action" - ] - }, - { - "text": "Respect its obligation not to return intercepted migrants in international waters in conformity with international law and norms", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Develop policy and legislation to promote, protect and fulfil the rights of persons with disabilities", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Reassess the reasons behind the reservations made to the International Covenant on Civil and Political Rights, with the aim of withdrawing them", - "values": [ - "3 - Considering action" - ] - }, - { - "text": "Ratify the Convention on the Rights of Persons with Disabilities and incorporate it into national law", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Become a State party to the International Convention for the Protection of All Persons from Enforced Disappearance ", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Increase the awareness-raising campaign on the rights of women and children, involving journalists and media professionals as one of its focus groups ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Continue collaboration with the international institutions to combat the Ebola virus", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Extend a moratorium on the death penalty, make public the number of sentences and executions carried out, and consider the ratification of the Second Optional Protocol to the International Covenant on Civil and Political Rights ", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Continue to amend the 2009 Media Law and undertake independent and credible investigation and prosecution in cases of clear harassment ", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Amend the Penal Code to decriminalize homosexuality ", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Define and criminalize the offence of torture in the national criminal statute", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Mobilize the local resources and capabilities along with supporting the collaboration with partners and agencies of the United Nations", - "values": [ - "4 - General action" - ] - }, - { - "text": "Continue with the successful policy of ensuring inter-ethnic and interreligious harmony in Singapore", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Consider ratifying the Inter-American Convention on Human Rights", - "values": [ - "3 - Considering action" - ] - }, - { - "text": "Consider the possibility of abolishing the death penalty and acceding to the ICCPR-OP 2, while approving a moratorium in the meantime", - "values": [ - "3 - Considering action" - ] - }, - { - "text": "Consider the possibility of ratifying the Convention against Torture and Other Cruel, Inhuman or Degrading Treatment or Punishment ", - "values": [ - "3 - Considering action" - ] - }, - { - "text": "Continue supporting the efforts made by SERNAM in advancing women's rights, including by providing the necessary budget allocation as well as human resources ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Codify its criminal law to bring it into line with international law and standards, and ensure it is applied effectively by an independent and impartial judiciary", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Consider acceding to the remaining core human rights instruments including ICCPR, ICESCR and ICRMW", - "values": [ - "3 - Considering action" - ] - }, - { - "text": "Continue implementing programmes to realize the right to education for all, including by increasing budget allocation for education and training programmes for all children in the country", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Further implement measures aimed at promoting freedom of expression and association and freedom of the media in line with the most advanced international standards ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Accede to the main international human rights instruments to which the country is not yet a party", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Continue to implement its poverty reduction strategy, to enable its people to better enjoy the right to development, providing the necessary foundation for the enjoyment of the other rights", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Elaborate clear medical guidelines on access to legal abortion and consider reviewing the law relating to abortion, including to ensure access to legal abortion in cases of pregnancy resulting from rape ", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Continue raising awareness of trafficking in persons and migrant workers, particularly women and children, who are a vulnerable group in the society and deserve all possible help", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Continue efforts aimed at promoting the rights of children, in particular in the spheres of education, elimination of child poverty, meeting needs of vulnerable and at-risk children ", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Assure transparent and credible elections by ensuring freedom of peaceful assembly and expression for all persons, including members of political parties, candidates and members of the press ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Intensify further efforts to prevent and combat human trafficking and to protect its victims ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Sign and ratify the Council of Europe Convention on Action against Trafficking in Human Beings ", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Step up necessary measures to promote equality between men and women, strengthen the ongoing efforts in prevention of domestic violence, and ensure the adequate representation of women in high-level policy and decision-making institutions ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Establish a separate Office of the Ombudsman on the Rights of the Child", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Observe a de facto moratorium on executions, in line with the international trend", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Ensure that the Trafficking in Persons Act comes into force and is implemented as soon as possible and implement a national action plan to strengthen coordination efforts against trafficking at the national level", - "values": [ - "4 - General action" - ] - }, - { - "text": "Establish mechanisms for the independent appointment and dismissal of judges and for the punishment of corruption among judges, and expand efforts to protect judges from insurgent attacks and to increase salaries for judges, prosecutors and members of the Ministry of Justice.", - "values": [ - "4 - General action" - ] - }, - { - "text": "Stop and prevent violations and abuses of children's rights, including by actively preventing and combating the recruitment and use of children in hostilities by parties to the conflict", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "View positively the reconsideration of the denunciation of the Optional Protocol to ICCPR ", - "values": [ - "3 - Considering action" - ] - }, - { - "text": "Establish a national coordination unit and provide adequate resources and other support for the implementation of the Council of Europe Convention on Preventing and Combating Violence against Women and Domestic Violence", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Proceed with the ratification of Additional Protocols I and II of the Geneva Conventions of 1949, of the Convention on the Rights of the Child, of CEDAW as well as the Optional Protocol to the Convention against Torture", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Incorporate the principle of gender equality in its domestic law and prohibit by law discrimination on the grounds of gender and domestic violence", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "With the objective of establishing a national human rights institution in accordance with the Paris Principles, ask for the assistance of OHCHR.", - "values": [ - "1 - Minimal action" - ] - }, - { - "text": "Take steps to ensure that allegations of ill-treatment of persons detained by the security and police forces are fully investigated and that perpetrators are held accountable", - "values": [ - "4 - General action" - ] - }, - { - "text": "Continue to focus on the issue of education to ensure inclusive, high-quality, accessible education for all", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Strengthen procedures for the investigation and punishment of any misconduct by police, prison and judicial personnel, including through strengthening the overview role of the Ombudsman.", - "values": [ - "4 - General action" - ] - }, - { - "text": "Take measures towards ensuring the equal and full enjoyment of human rights of women and to combat ethnic discrimination ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Avoid detaining asylum seekers and ensure all asylum seekers the right to lodge asylum applications at border-crossing points and in transit zones", - "values": [ - "4 - General action" - ] - }, - { - "text": "Encourage the structural strengthening of civil society organizations that advocate the promotion and protection of human rights", - "values": [ - "4 - General action" - ] - }, - { - "text": "In the light of the current reform of the Criminal Code and the Code on Criminal Proceedings, do not include any discriminatory provisions against women ", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Continue implementing measures to safeguard the rights of women, children and other marginalized and vulnerable segments of society", - "values": [ - "4 - General action" - ] - }, - { - "text": "Sustain its efforts with regard to health and education", - "values": [ - "4 - General action" - ] - }, - { - "text": "End discrimination in law and practice against women and girls, including by allowing women to pass their nationality onto their children in an equal manner with men", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Provide a mid-term update on the implementation of the recommendations of this UPR", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Take further steps to increase awareness-raising campaigns and enhance education of the principles of non-discrimination and tolerance in school curriculums, including teaching of mother tongue for immigrant minorities ", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Take further steps to guarantee the right of children to an adequate standard of living and ensure that children from economically disadvantaged backgrounds are not exploited or abused.", - "values": [ - "4 - General action" - ] - }, - { - "text": "Work on strengthening international cooperation in the field of human rights", - "values": [ - "1 - Minimal action" - ] - }, - { - "text": "Strengthen its measure to protect its citizens from terrorism and extremism ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Continue adopting measures to combat discrimination and protect the rights of ethnic minorities, particularly Roma", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Continue adopting measures aiming at the protection of children and youth, in particular on their right to education ", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Strengthen its efforts to enforce the Prevention of Trafficking in Persons Act", - "values": [ - "4 - General action" - ] - }, - { - "text": "Seek technical assistance from relevant United Nations agencies in order to better implement its international human rights obligations", - "values": [ - "1 - Minimal action" - ] - }, - { - "text": "Step up its efforts to consolidate political, social, economic and cultural freedoms and freedom of the media", - "values": [ - "4 - General action" - ] - }, - { - "text": "Continue its national plans and programmes to improve the quality of education", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Strengthen the capacities of the Ombudsman office", - "values": [ - "4 - General action" - ] - }, - { - "text": "Take steps aimed at ensuring the implementation of joint educational programmes and training of teachers in collaboration with the relevant Armenian educational authorities", - "values": [ - "4 - General action" - ] - }, - { - "text": "Adopt and implement legislation establishing appropriate criminal justice procedures for persons under the age of 18 ", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Take all necessary measures to prevent statelessness and allow all residents to fully enjoy their fundamental rights in particular persons of Haitian's descent who have been affected by the ruling of the Constitutional Tribunal of the 23rd of September 2013 ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Accede to the first Optional Protocol to the International Covenant on Civil and Political Rights", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Consider implementing the United Nations Rules for the Treatment of Women Prisoners and Non-custodial Measures for Women Offenders or the "Bangkok Rules" to provide them with appropriate treatment ", - "values": [ - "3 - Considering action" - ] - }, - { - "text": "Take measures to fight effectively against impunity, notably for acts of torture and sexual violence, in particular when those incriminated are involved in law enforcement ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Adopt effective mechanisms to implement the existing legislation which protects women and children", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Ensure the full operationalization of the National Policy and Action Plan on Human Rights", - "values": [ - "4 - General action" - ] - }, - { - "text": "Continue to strengthen its public healthcare system and improve access to healthcare services, particularly for women, children and older persons", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Amend all statutory and customary laws to establish the minimum age of marriage at 18 years and take concrete steps to implement this legislation, in line with the Convention on the Rights of the Child", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Continue to protect girls from all forms of discrimination and promote girls' rights and access to education", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Ensure that all allegations of torture and inhuman or degrading treatment are investigated promptly and that perpetrators are brought to justice ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Establish a National Human Rights Institute accredited by the International Coordinating Committee of National Institutions for the Promotion and Protection of Human Rights (ICC) and take the necessary measures to warrant its independence by granting it the required statutory powers and budgetary resources", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Continue its efforts in safeguarding the rights of women and children, particularly in combating trafficking in persons ", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Establish an intra-state reporting mechanism on violence against women and provide its victims with appropriate services", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Continue the projects addressed to improve the human rights situation in Haiti, particularly the free and universal schooling and the reform of the judiciary ", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Act on its commitment to end impunity in matters of ill treatment and torture by acceding to the UN Convention against Torture ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Recommended that the issue of improvement of women's rights to be considered as one of the main priorities in the Government's human rights policies.", - "values": [ - "4 - General action" - ] - }, - { - "text": "Increase its efforts and resources towards strengthening the healthcare system, especially in rural areas", - "values": [ - "4 - General action" - ] - }, - { - "text": "Take all necessary measures to fight against discrimination and violence against persons with disabilities, including persons with albinism", - "values": [ - "4 - General action" - ] - }, - { - "text": "Take further measures to address violence against women, domestic violence and sexual abuse and harassment, including awareness-raising campaigns in society at large and provide protection measures for the victims.", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Review relevant legislation to ensure that discrimination on the basis of sexual orientation and gender identity is prohibited", - "values": [ - "3 - Considering action" - ] - }, - { - "text": "Submit overdue reports to Committee on the Elimination of Racial Discrimination, Committee on Economic, Social and Cultural Rights and to the Human Rights Committee ", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Finalize as soon as possible a national policy to implement the rights for persons with disabilities and the ratification process of the Convention on the Rights of Persons with Disabilities ", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Take resolute action to prevent and effectively prosecute acts of violence and incitement of hatred against religious minorities and counter discrimination and intolerance on religious grounds", - "values": [ - "4 - General action" - ] - }, - { - "text": "Take necessary steps to implement the National Human Rights Roadmap and its Action Plan and call on the international partners to support Somalia in their implementation", - "values": [ - "4 - General action" - ] - }, - { - "text": "Prohibit the execution of persons with mental and intellectual disabilities", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Ratify the Protocol to Prevent, Suppress and Punish Trafficking in Persons, Especially Women and Children", - "values": [ - "3 - Considering action" - ] - }, - { - "text": "Provide more allocations for social expenditures that could sufficiently benefit women and children, in particular, from the poor, rural and vulnerable sections of society.", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Continue the implementation of actions included in the national Development Plan in order to achieve a greater social protection and gender equality", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Create stronger mechanisms to ensure greater revenue transparency from diamond mining, demilitarize the diamond industry, and thoroughly investigate cases of beatings and abuse by Government and private security services in the Marange area ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Ratify the International Convention for the Protection of All Persons from Enforced Disappearance (CPED) ", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Pursue efforts to strengthen national reconciliation and ensure the achievement of transitional justice", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Agree to the re-establishment of an international human rights monitoring presence in the country.", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Protect fully the human rights of persons belonging to minorities including their rights to water, sanitation, land, education and health as well as access to all public services in an equal and just manner", - "values": [ - "4 - General action" - ] - }, - { - "text": "Continue harmonizing its legislation with international human rights treaties by taking into consideration specificities of its society and requirement of modernization", - "values": [ - "4 - General action" - ] - }, - { - "text": "Guarantee, without any discrimination, the rights to freedom of expression, association and peaceful assembly and the right to participate in public and political life", - "values": [ - "4 - General action" - ] - }, - { - "text": "Take steps to ensure the rights to health, education, and other rights dependent on freedom of movement are protected", - "values": [ - "4 - General action" - ] - }, - { - "text": "Take the necessary measures to fight all forms of intolerance and hate speech against persons belonging to minorities", - "values": [ - "4 - General action" - ] - }, - { - "text": "Consider the possibility of signing and ratifying the International Convention on the Protection of the Rights of All Migrant Workers and Members of their Families ", - "values": [ - "3 - Considering action" - ] - }, - { - "text": "Expedite the ratification of the Convention relating to the Status of Refugees ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Guarantee mechanisms of access to justice for the most vulnerable sectors of the population", - "values": [ - "4 - General action" - ] - }, - { - "text": "Consider establishing legislation defining and prohibiting discrimination in all forms.", - "values": [ - "3 - Considering action" - ] - }, - { - "text": "Continue its efforts to combat trafficking in human beings and prosecute traffickers ", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Continue its efforts for the preservation and sustainability of the environment ", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Adopt a national legislation complying with international human rights standards, to ensure freedom of assembly as enshrined in the Constitution, in particular by guaranteeing human rights NGOs the right to freely carry out their activities", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Take steps to ensure that the Domestic Violence and Sexual Offences Bill, and other Bills to protect the rights of women that are currently before Parliament, are enacted without further delay", - "values": [ - "4 - General action" - ] - }, - { - "text": "Expedite the necessary consultative and legislative processes for the establishment of mandatory retirement benefits for all working persons who retire due to old age or disability", - "values": [ - "4 - General action" - ] - }, - { - "text": "Abide by CEDAW and ratify OP-CEDAW ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Extend an open and standing invitation to the United Nations special procedures mandate holders", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Ensure universal access to comprehensive sexual and reproductive health services, without discrimination and in accordance with the commitments made, among others, in the Montevideo Consensus", - "values": [ - "4 - General action" - ] - }, - { - "text": "Strengthen human rights education with a view of enhancing human rights awareness", - "values": [ - "4 - General action" - ] - }, - { - "text": "Carry out public awareness campaigns about equal opportunities of women and men.", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Continue effective efforts to combat trafficking in human beings", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Ratify the Optional Protocol to the Convention against Torture and Other Cruel, Inhuman or Degrading Treatment or Punishment and the Optional Protocol to the Convention on the Elimination of All Forms of Discrimination against Women", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Envisage taking measures to remedy the discrimination made between European foreigners and those from developing countries, including in the area of family reunification and gaps in protection this has led to.", - "values": [ - "3 - Considering action" - ] - }, - { - "text": "Utilize international financial and technical assistance to discharge its human rights reporting obligations", - "values": [ - "4 - General action" - ] - }, - { - "text": "Take all necessary measures to reduce the number of HIV/AIDS infections by means of enhancing national education programmes, and increase efforts to ensure the availability and access to antiretroviral treatment drugs", - "values": [ - "4 - General action" - ] - }, - { - "text": "Consider suspending the enactment of the Protection of State Information Bill, approved last November ", - "values": [ - "3 - Considering action" - ] - }, - { - "text": "Put in place an accessible health-care system and consider applying the Technical Guidance on preventable mortality and morbidity of children under the age of 5 years, which was developed by the World Health Organization", - "values": [ - "4 - General action" - ] - }, - { - "text": "Continue the positive trend of Roma integration by ensuring teachers are adequately trained in anti-discrimination measures, particularly in special needs education", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Continue its endeavours to increase the quality and availability of education at all levels", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Study the possibility of ratifying the Convention against Torture and Other Cruel, Inhuman or Degrading Treatment or Punishment, the International Convention for the Protection of All Persons from Enforced Disappearance, the International Convention on the Protection of the Rights of All Migrant Workers and Members of Their Families, and the Second Optional Protocol to the International Covenant on Civil and Political Rights, aiming at the abolition of the death penalty ", - "values": [ - "3 - Considering action" - ] - }, - { - "text": "Continue efforts to fight against female genital mutilation", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Continue addressing the HIV/AIDS impact on women and children as a priority, in particular, the mother-to-child transmission", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Strengthen the implementation of laws prohibiting discrimination and incitement to hatred in order to protect the rights of minorities such as Roma", - "values": [ - "4 - General action" - ] - }, - { - "text": "Increase respect for the rights of all citizens by strengthening anti-discrimination legislation and enforcement mechanisms and ensuring law enforcement provides universal equal treatment and due process", - "values": [ - "4 - General action" - ] - }, - { - "text": "Take measures to promote and protect the right to health, including through ensuring access to health care services", - "values": [ - "4 - General action" - ] - }, - { - "text": "Strengthen data collection on racist and xenophobic violence in order to identify the sources of this kind of discrimination, which turn into the so- called hate crimes", - "values": [ - "4 - General action" - ] - }, - { - "text": "Criminalize domestic violence as a distinct criminal offence and ensure the effective implementation of the action plan on violence ", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Take actions to combat discrimination and violence against women, calling for measures to promote gender equality in the public, economic and private spheres", - "values": [ - "4 - General action" - ] - }, - { - "text": "Strengthen efforts to eliminate exploitative child labour", - "values": [ - "4 - General action" - ] - }, - { - "text": "Take all appropriate measures to develop a framework of law prohibiting trafficking and other forms of exploitations, and incorporate into such legislation the comprehensive protection of children as well as the development and implementation of a reintegration assistance programme for victimized persons", - "values": [ - "4 - General action" - ] - }, - { - "text": "Assist the Roma and Ashkali persons displaced from Kosovo to allow them to obtain the necessary official documents to get permanent or temporary resident status in Montenegro", - "values": [ - "4 - General action" - ] - }, - { - "text": "Widen the scope of international obligations through ratification of international treaties such as the International Convention on the Protection of the Rights of All Migrant Workers and Members of Their Families", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Seek support from the relevant United Nations agencies and programmes in order to establish literacy programmes and strategies for the benefit of the population, in particular school-age children", - "values": [ - "1 - Minimal action" - ] - }, - { - "text": "Continue guaranteeing free and universal access to public health", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Ratify the Optional Protocol to CRC on the involvement of children in armed conflict ", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Respond effectively to discrimination and violence against LGBT persons and ensure their safety during public events such as the Belgrade Pride Parade ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Abolish all legislation that discriminates against women", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Speed up the procedure to adopt the law against the high rate of pregnancy among adolescent girls", - "values": [ - "4 - General action" - ] - }, - { - "text": "Refrain from adopting legislative measures which criminalise homosexual relations or breach the rights to freedom of expression and to non-discrimination of Lesbian, Gay, Bisexual and Transgender people ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Strengthen anti-discrimination laws and policies, and intensify the implementation of measures to protect all women from discrimination and violence, including through nationwide public awareness campaigns", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Strengthen ongoing efforts related to all forms of discrimination against women and girls, including by effectively implementing and enforcing existing legislation in order to address stereotypes", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Take all measures to immediately put an end to racially motivated violence and ill-treatment by police officers of persons with an immigrant background", - "values": [ - "4 - General action" - ] - }, - { - "text": "Seriously consider the possibility to abolish capital punishment", - "values": [ - "3 - Considering action" - ] - }, - { - "text": "Ratify the Optional Protocol to the International Covenant on Economic, Social and Cultural Rights (OP-ICESCR)", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Protect the right to freedom of expression for journalists ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Make further efforts to build the capacity in both human resources and in the health sector to deal with epidemics and other health challenges, and request the international community to continue to assist Sierra Leone in building the capacity", - "values": [ - "4 - General action" - ] - }, - { - "text": "That Lesotho takes steps to continue working on its national nutrition policy", - "values": [ - "4 - General action" - ] - }, - { - "text": "Ratify the Council of Europe Convention on the Protection of Children against Sexual Exploitation and Abuse, as a member of the European family", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Reform legislation to remove the requirement of infertility or sterilization as a condition for the legal recognition of gender reassignment", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Accept and ratify the Convention against Discrimination in Education", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Actively promote women's rights and eliminate discrimination against women", - "values": [ - "4 - General action" - ] - }, - { - "text": "Ensure that agricultural policies make a more effective contribution to combating rural poverty", - "values": [ - "4 - General action" - ] - }, - { - "text": "Ratify-accede-adhere the International Convention on the Protection of the Rights of All Migrant Workers and Members of their Families bearing in mind the voluntary commitment in its candidature to the Human Rights Council to work for the universal ratification of all United Nations human rights instruments and actively encourage countries which are not yet party to them to ratify them.", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Ratify the main human rights instruments to which it is not yet a party", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Keep carrying out the relevant measures, including better social services for dealing with the problems of Moroccans living abroad ", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Continue to ensure that legislation under consideration for adoption is consistent with international law and the international obligations of Turkmenistan ", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Continue and even accelerate its law review process and ensure that all gender and other discriminatory provisions in the legislation are repealed ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Take necessary measures to prevent inquiries, arbitrary detentions, searches and questioning by judicial and police authorities motivated by physical appearance, skin colour and racial or ethnic origins. Additionally, impose severe sanctions on authorities that commit such excesses and illtreatment", - "values": [ - "4 - General action" - ] - }, - { - "text": "Take further measures to ensure the freedom of children from all physical or mental violence, injury or abuse, neglect or negligent treatment, maltreatment or exploitation, in accordance with the Convention on the Rights of the Child, including by ensuring the full legal prohibition of all corporal punishment of children", - "values": [ - "4 - General action" - ] - }, - { - "text": "Continue to expand its successful awareness programmes on human rights", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Continue to implement the Brasilia rules regarding accessibility for persons with disabilities to the justice system ", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Guarantee effective access to justice for victims of gender violence, shelters for such victims and police protection", - "values": [ - "4 - General action" - ] - }, - { - "text": "Ensure that the draft electoral law under the new constitution and the process of appointments guarantee the independence of the judiciary", - "values": [ - "4 - General action" - ] - }, - { - "text": "Allocate sufficient financial resources to the health sector to improve access to health care and to rebuild health infrastructure ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Continue the implementation of national educational programmes and strategies in order to ensure that every child has equal access to education", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Consider taking necessary measures to prevent and combat discrimination towards minorities, and positively consider the recommendation of the Committee on the Elimination of Racial Discrimination on the prevention of segregation of Roma children in the field of education ", - "values": [ - "3 - Considering action" - ] - }, - { - "text": "Take additional measures to tackle the problem of assimilation and to reduce the gap that exists between the legislative framework and its implementation with regard to the use of minority languages in public services", - "values": [ - "4 - General action" - ] - }, - { - "text": "Take measures to ensure equal treatment of women in social and professional areas", - "values": [ - "4 - General action" - ] - }, - { - "text": "Recognize the full and equal enjoyment of human rights by all and immediately abolish the law that criminalizes homosexuality ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Continue its efforts to prevent and eliminate all forms of violence against women", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "End extrajudicial killings, enforced disappearances, illegal arrests and detention, torture and harassment, including by effectively implementing criminal prohibitions against extrajudicial killings", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Conduct prompt, impartial and effective investigations into cases of extrajudicial executions and prosecute those responsible ", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Consider relinquishing the use of electric taser weapons by the police ", - "values": [ - "3 - Considering action" - ] - }, - { - "text": "Strengthen legislation against discrimination by adopting a national action plan against racism, racial discrimination, xenophobia and intolerance", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Enhance its efforts on Anti-trafficking in persons measures", - "values": [ - "4 - General action" - ] - }, - { - "text": "Address trafficking in persons, and in particular sexual exploitation of children that results from this trafficking", - "values": [ - "4 - General action" - ] - }, - { - "text": "Sign and ratify the new Optional Protocol to CRC on a communications procedure ", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Continue efforts aimed at ratifying the International Convention for the Protection of All Persons from Enforced Disappearance as well as the principal international human rights instruments to which the country is not yet a party ", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Consider issuing a standing invitation to the special procedures mandate holders ", - "values": [ - "3 - Considering action" - ] - }, - { - "text": "Deepen grass-roots democracy and better facilitate the right of the people to participate in the formulation and implementation of policies, such as the participation of political and social organizations in the field of human rights ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Continue addressing the issue of violence against women ", - "values": [ - "3 - Considering action" - ] - }, - { - "text": "Take steps to avoid discrimination and violation of the human rights of the LGBT population ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Provide the necessary resources to the Defensoría de los Habitantes, which constitutes the national prevention mechanism provided for under OPCAT, so that it can fully implement its mandate ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Criminalize marital rape", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Take effective measures to prevent and eliminate discrimination on the grounds of religion and belief in the recognition, exercise and enjoyment of human rights and fundamental freedoms in all fields of civil, economic, political, social and cultural life", - "values": [ - "4 - General action" - ] - }, - { - "text": "Guarantee the rights of migrants, particularly those that are in transit to European countries, women and unaccompanied children", - "values": [ - "4 - General action" - ] - }, - { - "text": "Adopt measure to promote and facilitate the use of indigenous peoples' languages ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Adhere to principles of the International Convention on the Protection of the Rights of All Migrant Workers and Members of Their Families ICRMW and consider favourably possibly ratifying it ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Continue investigating crimes of sexual violence arising from the armed conflict, to prosecute those responsible and to provide reparations to victims", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Go beyond the advances made in reparations and attention to those who have suffered political violence triggered by non-State actors", - "values": [ - "4 - General action" - ] - }, - { - "text": "Improve the implementation of the existing framework in order to ensure the protection of human rights defenders and journalists", - "values": [ - "4 - General action" - ] - }, - { - "text": "Accede to the Optional Protocol to the Convention on the Rights of the Child on the involvement of children in armed conflict, as soon as possible", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Extend a Standing Invitation to the Council's special procedures", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Introduce the office of the Ombudsman for the rights of the child to effectively promote and protect the rights of the child", - "values": [ - "4 - General action" - ] - }, - { - "text": "Make a concerted effort to treat higher percentage of persons living with HIV, building on its existing success and with appropriate assistance from international and regional partners", - "values": [ - "4 - General action" - ] - }, - { - "text": "Respond and follow-up appropriately the recommendations formulated to the United States by the Special Rapporteur for the Protection of Human Rights and Fundamental Freedoms while Countering Terrorism ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Continue its efforts in providing the necessary care for persons with disabilities, including children with disabilities", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Continue efforts to inform the wider society about the laws concerned and about the rights of women in general, and widely use the mass media to raise awareness of gender equality and publish the appropriate documents in ethnic minority languages", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Sign the OP-ICESCR ", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Continue to conduct awareness-raising campaigns promoting equal conditions and equal responsibilities between women and men both in the private and public sphere with the aim of abolishing the persistence of patriarchal and stereotypical attitudes and achieving greater representation of women in the decision-making and managerial positions ", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Abandon the State Department practice of qualifying other States according to its interpretation of human rights and contribute to the strengthening and effectiveness of the Universal Periodic Review as a fair and appropriate mechanism of the international community to evaluate the situation of human rights between States", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Put an end to impunity as regards the use of Swedish territory as a transit territory for flights by the Central Intelligence Agency of the United States transporting people subjected to violation of their human rights ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Consider ratifying ILO Convention 100 on equal remuneration for men and women for work of equal value, and ILO Convention 111 on discrimination in employment and occupation", - "values": [ - "3 - Considering action" - ] - }, - { - "text": "Continue human rights training of public officials", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Ensure respect for freedom of opinion and expression", - "values": [ - "4 - General action" - ] - }, - { - "text": "Establish a comprehensive integration strategy for migrants, with specific measures to prevent and eliminate racism, racial discrimination, xenophobia and intolerance against migrants irrespective of their status", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Intensify efforts to bring domestic legislation in line with international standards to combat all forms of violence and discrimination against women and girls", - "values": [ - "4 - General action" - ] - }, - { - "text": "Decriminalize defamation and place it under the Civil Code in accordance with international standards", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Continue submitting periodic reports to the treaty bodies Lebanon is party to", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Continue to offer rehabilitation and assistance to victims of trafficking through relevant local and international organizations", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Reform the Penal Code with a provision encompassing the definition and criminalization of all forms of sexual violence, including rape", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Accede to the Optional Protocol to the Convention against Torture and establish a national prevention mechanism meeting the guidelines and requirements as set out in this instrument", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Continue its policies aimed at raising awareness on human rights, including through training programmes for law enforcement agencies in view of the important role that they play in implementing human rights and establishing the rule of law in the country", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Continue to take measures for the advancement of women and consider adopting a national policy for the empowerment of women", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Implement the Rome Statute of the International Criminal Court in law and practice", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Take credible steps towards gender mainstreaming and reinforcing the principle of equal pay for equal work", - "values": [ - "4 - General action" - ] - }, - { - "text": "Consider adopting new legislation that compels public companies to reserve a quota of their non-executive board seats for women", - "values": [ - "3 - Considering action" - ] - }, - { - "text": "Establish a national commission on human rights to coordinate, provide capacity development and assist with strengthening human rights implementation throughout the country", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Continue its efforts to combat child, early and forced marriages by addressing their causes through the effective implementation of the action plan for its national child protection policy", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Continue its efforts to improve health care, education and care provided for persons with disabilities", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Establish an institution for the promotion and protection of human rights, in conformity with the Paris Principles", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Amend the Penal Code, particularly Sections 365 and 365A, to decriminalize consensual same-sex conduct and displays of affection", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Take additional steps for civic education and promote human rights awareness and ensure access to justice for indigenous groups", - "values": [ - "4 - General action" - ] - }, - { - "text": "Consider the possibility of re-examining areas of its legislation that have led to restrict political freedom and freedom of expression, arbitrary arrests, detention, executions and torture, as part of wider effort to strengthen the rule of law", - "values": [ - "3 - Considering action" - ] - }, - { - "text": "Continue to adopt measures to combat poverty ", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Take further legislative and practical measures to end violence against women, in particular also addressing the problem of bride kidnapping ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Adopt a national plan of action against racism", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Implement mechanisms that permit the prevention of social conflicts, particularly through integrating human rights in training for police forces", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Develop and assess its strategies to combat human trafficking", - "values": [ - "4 - General action" - ] - }, - { - "text": "Embark on substantial reform of its judicial system in order to achieve progressive development for human rights ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Increase efforts to ensure the registration of all children at birth ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Eliminate imprisonment for the punishment of press offences", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Set up permanent and sustainable programmes of education and training on human rights for public servants, in particular members of the armed forces and the judicial sector, with a focus on protecting vulnerable groups", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Redouble efforts in paying special attention to school education of the indigenous peoples and national minorities ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Prevent clashes and tensions occurred between the majority Christian population and the Muslim minorities", - "values": [ - "4 - General action" - ] - }, - { - "text": "Definitively abolish the death penalty ", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Continue to take measures to protect children against economic exploitation and violence", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Intensify its efforts to wealth distribution and poverty eradication, especially assistance to the marginalized and disadvantaged groups", - "values": [ - "4 - General action" - ] - }, - { - "text": "Step up the process of establishing a national human rights institution ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Fully implement the adopted Gender Equality Act", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Improve conditions in Belgium's prisons, including in relation to overcrowding ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Ratify the Convention on the Rights of Persons with Disabilities in due course to strengthen its implementation framework in line with the Convention ", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Ensure that legislation, policy and practice are in accordance with international human rights norms and standards ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Reinforce its efforts to prevent and combat racism, racial discrimination, xenophobia and other related intolerance in particular against foreigners ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Establish a national human rights institution, in accordance with Paris Principles ", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Establish a moratorium on State executions with a view to formally abolishing the death penalty, in addition to ratifying the Second Optional Protocol to the International Covenant on Civil and Political Rights", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Draft, enact, and implement legislation that provides greater protection for political rights ", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Promote human rights education and capacity-building ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Take measures to improve the enforcement of existing laws criminalizing rape and domestic violence, including by providing targeted training and capacity-building for law enforcement officials ", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Take concrete steps to guarantee gender equality and abolish all means of gender-based violence", - "values": [ - "4 - General action" - ] - }, - { - "text": "Make sure all women and young girls have easy access to information on crisis pregnancy options by health-providers", - "values": [ - "4 - General action" - ] - }, - { - "text": "Prioritize, with support from the Office of the High Commissioner for Human Rights and the international community, the legislative reform to harmonize the national legislation with CEDAW, abrogate the discriminatory provisions in the Family Code, Penal Code and tax legislation in order to achieve legal equality and allow real equality for women, while adopting a general law on violence against women", - "values": [ - "4 - General action" - ] - }, - { - "text": "Ensure the independence and impartiality of the judicial system ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Take effective measures to ensure protecting children's rights in conformity with its international obligations ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Continue and strengthen awareness-raising activities aimed at eradicating traditional practices that are harmful to children, including female genital mutilation ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Take measures to raise awareness of existing legal provisions against hate speech, and to take prompt action to bring those responsible for breaking the law to justice", - "values": [ - "4 - General action" - ] - }, - { - "text": "Incorporate expeditiously in domestic law the Rome Statute, to which the Democratic Republic of the Congo is party", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Continue its efforts to raise awareness as well as effectively enforce the abolishment of female genital mutilation by providing adequate resources and bringing perpetrators of such cruelty to justice ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Take steps to eradicate female illiteracy among rural and indigenous women and implement equal education opportunities for rural and indigenous girls ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Meet Saint Kitts and Nevis' commitments to equality and non-discrimination by prohibiting discrimination based on sexual orientation", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Expedite the necessary process to ratify the UN Convention on the Rights of Persons with Disabilities and step up its efforts to address specific needs of persons with disabilities", - "values": [ - "4 - General action" - ] - }, - { - "text": "Continue to take necessary measures to ensure the provision of inclusive quality education to all children including children with disabilities and adopt legislation in this regard", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Promulgation of a penal code that clearly defines criminal offences and the establishment of a moratorium on executions of persons having committed crimes under the age of 18", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Increase the number of labour inspectors, especially in the rural provinces", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Advance in the adoption of measures that are considered necessary to combat the discrimination that suffer the non-Jewish sectors of the population", - "values": [ - "4 - General action" - ] - }, - { - "text": "Ensure adequate cooperation between anti-discrimination organisations operating on the State level, and that adequate resources and independence of action be ensured for the Federal Anti-Discrimination Office for it to be able to effectively implement its mandate", - "values": [ - "4 - General action" - ] - }, - { - "text": "Increase its efforts aimed at the incorporation of the CRC provisions and principles into the domestic legal system ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Take steps to eradicate discrimination and intolerance against any ethnic, racial or religious group and ensure equal opportunity for their economic, social and security rights", - "values": [ - "4 - General action" - ] - }, - { - "text": "Respect every person's right to nationality in accordance with the recommendations of the Inter-American Commission on Human Rights and the judgment of the Inter-American Court on Human Rights ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Follow through on its stated intent to amend its penal code with provisions to prohibit the harmful practice of female genital mutilation ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Take urgent action to reduce the number of offences punishable by death, and to entirely ban the execution of such sentences in case of juveniles", - "values": [ - "4 - General action" - ] - }, - { - "text": "Formulate and adopt legislation against domestic violence which classifies sexual violence, rape and incest as serious offences and establish appropriate penalties for the perpetrators, especially when they are relatives of the victim ", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Abolish the death penalty by law", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Complete the process of adaptation and compliance of the Benin Commission of Human Rights with the international standards", - "values": [ - "4 - General action" - ] - }, - { - "text": "Continue its efforts to combat contemporary forms of slavery, including trafficking and exploitation of persons, and provide support and protection to victims, paying particular attention to more vulnerable groups", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Continue further improvement of the protection and promotion of human rights in the country", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Cooperate actively with the special procedures of the United Nations.", - "values": [ - "4 - General action" - ] - }, - { - "text": "Ensure punishment of persons responsible for serious violations of human rights.", - "values": [ - "4 - General action" - ] - }, - { - "text": "Amend its press law to define the exceptions to article 24 of its Constitution in specific terms that do not infringe upon the internationally guaranteed rights of free speech and a free press", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Include a gender perspective in the review follow-up process in a systematic manner.", - "values": [ - "4 - General action" - ] - }, - { - "text": "Work more to join the international treaties on human rights", - "values": [ - "4 - General action" - ] - }, - { - "text": "Respect the legitimate rights of all its citizens to freedom of assembly and expression, and maintain its commitment to achieving concrete political reform based on respect for the legitimate rights and aspirations of all its citizens ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Establish a truly independent mechanism to investigate complaints of police violence and provide it with the necessary financial and administrative resources to make it effective and transparent to prosecute the perpetrators and compensate victims", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Appoint a new Board and Director General of the Communications Regulatory Authority", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Extend a standing invitation to special procedures to visit Cameroon ", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Eliminate the practice of FGM and promote the participation of women in society ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Consolidate commitment against the death penalty by ratifying the Second Optional Protocol to the International Covenant on Civil and Political Rights (ICCPR-OP2) ", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Pursue its efforts in order to complement its commitments towards the promotion and protection of human rights by ratifying the relevant international instruments and, in particular, the Second Optional Protocol to the International Covenant on Civil and Political Rights ", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Accelerate the judicial reform and enhance the fight against corruption in order to improve human rights standards in the country", - "values": [ - "4 - General action" - ] - }, - { - "text": "Reinforce policies that favour access to education in rural areas", - "values": [ - "4 - General action" - ] - }, - { - "text": "Fulfil its obligations under international human rights law to decriminalize same-sex relationships between consenting adults and repeal any laws or reforms that explicitly or implicitly discriminate on any grounds, including sexual orientation and gender identity ", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Take measures to clarify which terms and conditions apply for the granting of publishing permits to newspapers ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Adopt a comprehensive definition of discrimination against women in line with article 1 of the Convention on the Elimination of All Forms of Discrimination against Women", - "values": [ - "4 - General action" - ] - }, - { - "text": "Accelerate efforts towards combating human trafficking, particularly by protecting and rehabilitating victims", - "values": [ - "4 - General action" - ] - }, - { - "text": "Continue its achievements in the field of Human Rights.", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Continue developing the Help Line services to prevent drug use and for sex education ", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Continue increasing quality of children education, especially in rural areas ", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Reconsider the legislation on NGOs that receive foreign funding in conformity with the international human rights standards and in light of the resolution on human rights defenders, as approved by the Human Rights Council at its 22th session ", - "values": [ - "3 - Considering action" - ] - }, - { - "text": "Improve enforcement and coordination of national legislation and policies on the trafficking of persons, especially women and children, and to raise the awareness on this issue amongst the public", - "values": [ - "4 - General action" - ] - }, - { - "text": "Accede to the 1951 Convention relating to the Status of Refugees and its 1967 Protocol, to the 1954 Convention relating to the Status of Stateless Persons and to the 1961 Convention on the Reduction of Statelessness ", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Take steps to support the implementation of its Law Against Domestic Violence including providing law enforcement officials with training on sexual violence ", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Implement UN Security Council Resolutions on Women, Peace and Security, including by supporting the participation of women in peace talks, and continuing to increase the proportion of women playing an active role in the security forces, in particular the police, while ensuring their safety and dignity in their place of work ", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Implement the recommendations arising from the Office of the Inspector of Prisons' review of the Irish Prison Service", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Consider the possibility of expressing its consent to be bound by the ICRMW", - "values": [ - "3 - Considering action" - ] - }, - { - "text": "Create a national system for information management to collect data on human trafficking, including human traffickers and identified victims", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Intensify efforts against organized crime, including terrorism, and impunity of perpetrators", - "values": [ - "4 - General action" - ] - }, - { - "text": "Ensure children\u2019s rights to acquire a nationality in accordance with article 7 of the Convention on the Rights of the Child, regardless of the parents\u2019 legal status or ethnicity", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Issue invitations to all special procedures to enable them to visit the country and look into developments in the area of human rights ", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Continue its efforts to improve the public health and education systems, as a mean to reduce poverty and to advance in the economic and social development of the country", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Train armed forces and police in the respect of fundamental rights of the citizens, notably the right to assembly and legally ban the disproportional use of force against its own population ", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Strengthen existing legislation on sexual exploitation and human trafficking, and ensure its full implementation", - "values": [ - "4 - General action" - ] - }, - { - "text": "Implement article 3 (b) of ILO Convention No. 182, which requires States parties to establish strict prohibition of the use, recruitment or offering of a child for prostitution, production of pornography or pornographic performances", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Establish an independent, credible and authoritative Police Oversight Authority, with sufficient powers and resources ", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Act on intensifying national efforts to integrate rights of persons with disabilities within the framework of the legal system according to comprehensive national programmes that respond to their needs", - "values": [ - "4 - General action" - ] - }, - { - "text": "Lift reservations to articles 9 and 16 of the Convention on the Elimination of All Forms of Discrimination against Women relating to nationality and to discrimination in family relations", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Resolve the problem of persons without citizenship, and prevent such cases from arising in the future ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Investigate and prosecute all perpetrators of violence and hate crimes against Roma ", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Devise policies aimed at quelling racist platforms which incite hatred and discrimination within political parties and circles ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Approve the national strategy to promote gender mainstreaming and empowerment of women, and to strengthen mechanisms responsible for monitoring its effective implementation", - "values": [ - "4 - General action" - ] - }, - { - "text": "Initiate the drafting and adoption of national refugee legislation based on the 1951 Geneva Convention relating to the Status of Refugess and its 1967 Protocol", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Amend its anti-terrorist law so that children are not tried as adults ", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "That amendments to the Labour Law and the Social Security Law granting Palestinian refugees the right to work be made operational as soon as possible", - "values": [ - "4 - General action" - ] - }, - { - "text": "Adopt a comprehensive policy to avert the trafficking of children, in particular the disappearance of adolescent girls from refugee camps, and to protect them against exploitation, and especially child labour", - "values": [ - "4 - General action" - ] - }, - { - "text": "Continue its efforts to protect vulnerable categories of children, including orphans, extending them to all regions of the country ", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Adopt strong anti-discrimination policies and address hate crimes by ensuring that such incidents are thoroughly investigated ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Tirelessly pursue its policy of promoting the rights of women, in particular by eliminating illiteracy and, if possible, by extending projects like the Project for the Promotion of Self-Employment for Rural Women PRAMUR to women in urban areas ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Increase age of criminal liability to 18", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Accept the visit of the Special Rapporteur on the promotion of truth, justice, reparation and guarantees of non-recurrence, with a view to providing accountability and redress for victims and their families regarding the events which took place in November 2009", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Strengthen the prevention, detection and response to cases of exploitation, sexual abuses and other forms of violence against children", - "values": [ - "4 - General action" - ] - }, - { - "text": "Strengthen public policies regarding violence against women, adopting, among other things, affirmative measures to combat women's poverty, linked to the unequal distribution between time spent on paid and unpaid work ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Develop a comprehensive poverty reduction and social inclusion strategy, which would integrate economic, social and cultural rights ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Abolish harmful customary practices against young girls in line with its commitments under the Convention on the Elimination of All Forms of Discrimination against Women", - "values": [ - "4 - General action" - ] - }, - { - "text": "Report to the Human Rights Council about further concrete steps that will be taken to implement the ratified international conventions in domestic law.", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Continue its efforts, with the support of the international community, to eradicate poverty, increase literacy and enrolment rates and improve access to basic health services.", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Step up its efforts in the field of vocational training for its youth as a way to lower the unemployment rate and to promote comprehensive economic and social development", - "values": [ - "4 - General action" - ] - }, - { - "text": "Ratify the Rome Statute of the International Criminal Court and bring into line its legislation with the obligations under the Statute ", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Increase efforts to ensure implementation of legislation guaranteeing the principles of non-discrimination and adopting a comprehensive strategy to eliminate all forms of discrimination, particularly gender-based.", - "values": [ - "4 - General action" - ] - }, - { - "text": "Speed up the review of the draft Immigration policy", - "values": [ - "4 - General action" - ] - }, - { - "text": "Continue its efforts on health, education and social service system, in order to help the vulnerable and disabled people particularly women and children ", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Continue the strengthening of ongoing sound health-care policies with a view to fully satisfying and preserving the health of its people ", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Remove disproportionate restrictions, such as those identified by the Human Rights Committee, on non-citizens and provide for the possibility of judicial review of all refusals of naturalisation", - "values": [ - "4 - General action" - ] - }, - { - "text": "Conclude domestic processes relating to signing the Convention on the Rights of Persons with Disabilities", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Take the necessary measures to ensure that the Rome Statute is fully implemented in its national legislation ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Increase representation of women in decision-making bodies", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Strengthen its legal framework and explicitly criminalize torture under the Penal Code in accordance with article 1 of CAT", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Take measures to improve the procedure of appointment, transfer and promotion of judges in order to provide transparency in the judicial system and that the selection of judges is based on merit and not on the discretion of the Supreme Council of Magistracy", - "values": [ - "4 - General action" - ] - }, - { - "text": "Eliminate all restrictions on the ability of journalists to report on and criticize Government policy", - "values": [ - "4 - General action" - ] - }, - { - "text": "Consider abolishing de jure the death penalty", - "values": [ - "3 - Considering action" - ] - }, - { - "text": "Increase efforts to effectively prevent trafficking in women and girls for sexual exploitation and domestic servitude and take measures for rehabilitation and social integration of women and girls who are victims of trafficking", - "values": [ - "4 - General action" - ] - }, - { - "text": "Recommend that the international community provide technical assistance to Cote d'Ivoire to strengthen the capacity of its national mechanisms responsible for preparing periodic reports for treaty bodies and assist Cote d'Ivoire in training law enforcement officials, judges and police officers in the area of human rights ", - "values": [ - "1 - Minimal action" - ] - }, - { - "text": "Ratify the Rome Statute establishing the International Criminal Court", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Expedite ratification of the ICCPR and ICESCR as was accepted by the Government at the first UPR", - "values": [ - "4 - General action" - ] - }, - { - "text": "Take further steps in order to prevent gender-based violence and ensure that such cases of violence are effectively investigated, prosecuted and sanctioned, envisaging the comprehensive implementation of the 2017-2019 national action plan for the prevention, assistance and eradication of violence against women", - "values": [ - "4 - General action" - ] - }, - { - "text": "That complaints of threats, harassment and intimidation of human right defenders, journalists and lawyers receive a prompt response and that adequate measures for their safety are taken", - "values": [ - "4 - General action" - ] - }, - { - "text": "Lift reservations to CEDAW.", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Decriminalize abortion in all circumstances and, as a minimum, ensure access to safe abortion also in cases of rape, incest, serious risks to the health of the mother and fatal foetal abnormality", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Promptly accede to the Trafficking in Persons Protocol to the United Nations Convention against Transnational Organized Crime", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Make efforts to ensure transparency and consideration for human rights, in particular those of women and children, in its treatment of migrants and refugees", - "values": [ - "4 - General action" - ] - }, - { - "text": "Pursue efforts to promote and protect the rights of women through the implementation of the National Strategy for Women", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Strengthen the legal framework to prevent and combat violence against women and domestic violence", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Intensify efforts to combat trafficking in girls and women for sexual exploitation through the implementation of a national strategy to combat this issue.", - "values": [ - "4 - General action" - ] - }, - { - "text": "Discourage discrimination against minorities in Denmark, especially Muslims and take effective measures to promote tolerance and counter attitudes which lead to stereotyping and hate crimes against ethnic and religious minorities", - "values": [ - "4 - General action" - ] - }, - { - "text": "Strengthen the justice, law and order sectors", - "values": [ - "4 - General action" - ] - }, - { - "text": "Seek and avail itself of technical assistance opportunities for training of personnel in international human rights treaty monitoring and reporting", - "values": [ - "1 - Minimal action" - ] - }, - { - "text": "Investigate and hold accountable police and security officers who attacked human rights defenders, journalists and civilians during the 2011 post-election period ", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Promote and facilitate universal access to birth registration, especially for people living in extreme poverty, belonging to religious minorities or living in remote areas of the country, through the implementation of mobile units and carrying out awareness-raising campaigns", - "values": [ - "4 - General action" - ] - }, - { - "text": "Ensure to lesbian, gay, bisexual, transgender and intersex persons the full enjoyment and equal conditions in terms of their human rights by repealing the rules that criminalize and stigmatize them", - "values": [ - "4 - General action" - ] - }, - { - "text": "Continue efforts as to ensure that MDG1 and national targets can be achieved as planned", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Continue strengthening measures to ensure education for all, including expanding the infrastructure of the educational system in the whole territory of the country", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Take effective measures to counter Islamophobia and violence against Moslems, and adopt necessary legislation ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Ensure the implementation of an official moratorium on all executions, commuting death penalty sentences by imprisonment periods, with a view to the definitive abolition of the death penalty", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Reinforce measures against acts of racism, discrimination, xenophobia and intolerance", - "values": [ - "4 - General action" - ] - }, - { - "text": "Abide by international humanitarian law, including by refraining from all deliberate, indiscriminate and disproportionate attacks against the civilian population and civilian infrastructure such as medical facilities", - "values": [ - "4 - General action" - ] - }, - { - "text": "Adopt a law prohibiting participation of minor girls in initiation rites", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Redouble its efforts to protect children, in particular by strengthening their legal protection", - "values": [ - "4 - General action" - ] - }, - { - "text": "Ensure and enforce prevention of all acts of torture, impartial investigation by independent courts and prosecution of committed perpetrators", - "values": [ - "4 - General action" - ] - }, - { - "text": "Delete or amend all legal provisions on peaceful assemblies, which restrict the exercise of the rights to freedom of expression and assembly", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Ensure the protection and rehabilitation of victims of sexual exploitation", - "values": [ - "4 - General action" - ] - }, - { - "text": "Ensure that the educational system is accessible and responds to the specific needs of child workers, including child domestic workers", - "values": [ - "4 - General action" - ] - }, - { - "text": "Respect international standards of law in the treatment of prisoners ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Continue the review of genocide ideology and related laws, and rigorously apply the provisions of article 20 of ICCPR by taking strictly necessary and proportionate measures ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Undertake the necessary efforts to ratify CRPD and, in so doing, take a holistic approach ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Ratify the Rome Statute and ensure that it is fully implemented in national legislation ", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Continue efforts to strengthen legal and institutional frameworks to promote and protect human rights, including through the ratification of ICRMW", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Continue providing effective protection for the family unit, as the natural and fundamental unit of the society", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Accelerate the process towards the ratification of the Domestic Workers Convention, 2011 (No. 189)", - "values": [ - "4 - General action" - ] - }, - { - "text": "Accede to the International Convention for the Protection of All Persons from Enforced Disappearance and recognize its Committee", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Formally abolish the death penalty, and ratify the Second Optional Protocol to the International Covenant on Civil and Political Rights, aiming at the abolition of the death penalty", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Share its best practices acquired in fighting internet spread racism, including the results of the lasts measures that is the ratification of relevant instruments, modification of the Criminal Code, police monitoring of the internet ", - "values": [ - "1 - Minimal action" - ] - }, - { - "text": "Intensify its efforts in the context of attaining MDGs related to health in particular objective 6 concerning fighting HIV /AIDS, in particular in the context of the "Comprehensive HIV and AIDS Treatment and Prevention Strategy" and the "Prevention of Mother to Child Transmission of HIV" ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Increase dialogue and consultations with civil society organizations in the design of follow-up measures and implementation of the UPR towards strengthening the impact of the human rights policies, as set out in Resolution 5-1 of the Council", - "values": [ - "4 - General action" - ] - }, - { - "text": "Impose a moratorium on executions with a view to abolishing the death penalty for federal offences", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Ensure that reports of human rights violations by the police, the army and the National Intelligence Agency relating to unlawful arrest, detention, and torture of journalists, human rights defenders and opposition members are investigated and those responsible are brought to justice", - "values": [ - "4 - General action" - ] - }, - { - "text": "Continue efforts to eliminate child labour to attain an harmonic development of children in a spirit of socio-cultural and an environment of protection and well-being", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Strive to accede to core human rights instruments relevant to the enjoyment of human rights for all persons", - "values": [ - "4 - General action" - ] - }, - { - "text": "Accede to ICCPR and ICESCR ", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Take a comprehensive approach to combating trafficking in women and girls involving source, transit and destination countries.", - "values": [ - "4 - General action" - ] - }, - { - "text": "Withdraw its reservations to the Convention on the Elimination of all Forms of Discrimination against Women", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Confer the Ombudsman's Office (Provedor de Justiça) with the necessary legal framework to enable it to effectively function as the National Human Rights Institution", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Take the necessary steps to improve access to education at all levels", - "values": [ - "4 - General action" - ] - }, - { - "text": "Continue implementing policies to protect the rights of women and girls, including legal actions against violence and discrimination", - "values": [ - "4 - General action" - ] - }, - { - "text": "Continue its ongoing initiative to conduct a complete overhaul of the justice and legal systems, in accordance with provisions enshrined in the recently adopted Constitution", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Extend an invitation to the Special Rapporteur for human rights defenders ", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Extend the ratification of the International Convention for the Protection of All Persons from Enforced Disappearance to Aruba, Curaçao and Sint Maarten", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Promote efficiently equality between men and women, and take all necessary measures to combat violence against women and trafficking in persons", - "values": [ - "4 - General action" - ] - }, - { - "text": "Adopt measures which are conducive to the creation of an independent national human rights institution in conformity with the Paris Principles", - "values": [ - "4 - General action" - ] - }, - { - "text": "Step up efforts to prevent and combat modern forms of slavery and human trafficking with special attention to the investigation and prosecution of all cases of sale and trafficking of children, including providing protection of child victims", - "values": [ - "4 - General action" - ] - }, - { - "text": "Conduct a review of its application of the 1984 safeguards, as adopted by ECOSOC 1984-50", - "values": [ - "4 - General action" - ] - }, - { - "text": "Continue and strengthen its fight against harmful traditional practices", - "values": [ - "4 - General action" - ] - }, - { - "text": "Take actions to combat discrimination and prejudice by promoting intercultural dialogue in cooperation with the media to prevent racist statements, hate speech and attacks against ethnic minorities and promote respect for cultural diversity ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Meanwhile, provide information to concerned families, so that they can know in advance the date of execution of their relatives", - "values": [ - "4 - General action" - ] - }, - { - "text": "Continue efforts to ratify the CED ", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Evaluate the use of arraigo", - "values": [ - "3 - Considering action" - ] - }, - { - "text": "Include sexual orientation and gender identity in the hate speech provisions of the national Criminal Code, and adopt appropriate legal measures making sexual orientation and gender identity as possible discrimination grounds in any context ", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Investigate allegations of torture and ensure access to effective remedy for victims", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Refrain from sentencing minors to death, in accordance with their international treaty obligations, and ultimately abolish the death penalty altogether ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Pursue efforts to fight against femicide and violence against women, and provide for specialized care centres for victims of this violence", - "values": [ - "4 - General action" - ] - }, - { - "text": "Ratify the Convention for the Elimination of the Enforced Disappearances of Persons ", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Continue the cooperation with OHCHR including on identifying and developing programs for capacity- building and technical assistance", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Guarantee civilians to be tried by their natural judge and not by military commissions", - "values": [ - "4 - General action" - ] - }, - { - "text": "Through its own efforts and international cooperation, further lower its maternal and infant mortality rates", - "values": [ - "4 - General action" - ] - }, - { - "text": "Abolish the death penalty ", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Adopt a comprehensive strategy to fight against female genital mutilation, including the punishment of its perpetrators, educational and awareness-raising programmes as well as medical support to women and girls affected", - "values": [ - "4 - General action" - ] - }, - { - "text": "Work to eradicate harmful cultural or traditional practices against women and girls by conducting educational campaigns, encouraging reporting of cases and publically denouncing such practices, by urgently providing an adequate budget for the implementation of key measures of the Domestic Violence Act, and by strengthening the systematic and comprehensive collection of disaggregated data related to the incidence of all forms of violence against women, including femicide and intimate partner violence, and by using this data to inform its policy responses and monitoring", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Guarantee that officials responsible for acts of arbitrary arrest, extrajudicial execution and excessive use of force, torture and rape are brought to justice", - "values": [ - "4 - General action" - ] - }, - { - "text": "Consider raising the age of criminal responsibility.", - "values": [ - "3 - Considering action" - ] - }, - { - "text": "Seek technical assistance from the United Nations to reform the judiciary, to establish accessible judicial remedies as well as to alleviate poverty", - "values": [ - "1 - Minimal action" - ] - }, - { - "text": "Establish a moratorium on the death penalty with a view to becoming a party to the second Optional Protocol to ICCPR, and continue with efforts to uphold all international human rights standards, including civil and political rights ", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Adopt legislation to prevent and end all forms of corporal punishment, in accordance with the Convention against Torture and other Cruel, Inhuman or Degrading Treatment or Punishment ", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Take effective action to eliminate the phenomenon of female genital mutilation", - "values": [ - "4 - General action" - ] - }, - { - "text": "Develop a comprehensive and coordinated national strategy to combat all forms of violence against women and girls, as recommended in 2008 by the Committee on the Elimination of Discrimination against Women ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Continue developing a long-standing democratic culture, including by increasing the participation of women in decision-making and intensifying efforts to strengthen accountability", - "values": [ - "4 - General action" - ] - }, - { - "text": "Strengthen its public health system with a view to providing free, quality, basic health services to all and reduce child mortality", - "values": [ - "4 - General action" - ] - }, - { - "text": "Continue its efforts to strengthen its national human rights mechanisms and continuously upgrade its laws, policies and institutions in the area of the promotion and protection of human rights", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Repeal all legal provisions constituting discrimination against lesbian, gay, bisexual and transgender persons ", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Continue implementing programmes and measures to ensure the enjoyment of quality health and education services for the whole of its population ", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Reform its legislation in view of promoting non-discrimination and equality between men and women within marriage and for rights of women in case of dissolution of marriage", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Consider the elaboration of specific legislative guidelines for codification of discretionary penalties and dissemination of such guidelines among all judges, lawyers and prosecutors concerned ", - "values": [ - "3 - Considering action" - ] - }, - { - "text": "Share experiences in disaster risk management with other countries ", - "values": [ - "1 - Minimal action" - ] - }, - { - "text": "Take appropriate measures to collect data on and combat the emerging practices of forced underage marriage and female genital mutilation ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Review regularly the application of the National Security Act, to ensure its consistency with human rights principles", - "values": [ - "3 - Considering action" - ] - }, - { - "text": "Promote and encourage locally based and members driven civil societies in the country ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Continue the process of making domestic laws compliant with the international conventions to which Afghanistan is party ", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Continue to promote the participation of women in public and political life of the country", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Make decisive efforts to criminalize the practice of placing children in domestic service", - "values": [ - "4 - General action" - ] - }, - { - "text": "Prohibit, in law and in practice, discrimination in employment of persons with disabilities, and adopt legislative measures to ensure their insertion in the labour market", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Build on reconciliation among different sectors in the society, based on the principles of democracy, rule of law and tolerance, in order to facilitate the political and social stability and economic development", - "values": [ - "4 - General action" - ] - }, - { - "text": "Amend existing legislation on human trafficking to include a definition of trafficking in line with international law ", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Continue to ensure respected principles of social equality and guarantee access to justice for vulnerable groups", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Continue its efforts in finalizing the process of free and compulsory basic education", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Adopt within its domestic legislation a law based on the Statute of the International Criminal Court criminalizing war crimes, the crime of genocide and crimes against humanity in the Criminal and the Military Justice Codes.", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Amend discriminatory laws and vigilantly counter discrimination against marginalized groups, including women and girls, ethnic and religious minorities and provide a safe and just environment for all citizens in Pakistan", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Consider the ratification of all core human rights conventions", - "values": [ - "3 - Considering action" - ] - }, - { - "text": "Remove restrictions on movement in and out of the capital and derogate Article 62 of the Penal Code, which prohibits leaving the country without State authorization, thereby removing all sanctions against those who decide to leave and to return to their country", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Accelerate efforts to empower those living below the poverty line through alleviation schemes", - "values": [ - "4 - General action" - ] - }, - { - "text": "Appoint the members of the Human Rights Commission and ensure their independence by providing them with financial autonomy and sufficient human and material resources to carry out their mandate, in accordance with the principles relating to the status of national institutions for the promotion and protection of human rights (the Paris Principles)", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Consider reviewing the three-year time limit for bringing compensation claims in cases of coercive or non-consensual sterilizations with a view to extending it", - "values": [ - "3 - Considering action" - ] - }, - { - "text": "Strengthen labour and economic policies in favour of persons with disabilities", - "values": [ - "4 - General action" - ] - }, - { - "text": "Continue efforts to fight effectively against the socio-cultural and religious burden for the elimination of female genital mutilation", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Develop and implement a plan to reduce overcrowding and improve conditions of detention in the prison system, including by exploring alternatives to preventive detention", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Evaluate regulations and laws, including those which grant the Orthodox Rabbinate the right to determine policies affecting non-Orthodox Jews and non Jews, to ensure that they do not discriminate against persons, especially women, based on their religious beliefs or lack thereof", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Increase training in international human rights law for the judiciary and measures to strengthen its independence", - "values": [ - "4 - General action" - ] - }, - { - "text": "Develop specific guidelines for protection and support for victims of child sexual abuse and their families undergoing trial", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Eliminate mandatory minimum sentences for lese majesty", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Conclude the survey of the ownership of lands traditionally occupied by indigenous communities as envisioned in Law No. 26160 in order to fully guarantee the rights of indigenous people, especially territorial rights and the right to previous consultation, in compliance with international treaties ratified by Argentina as well as the national constitution", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Ensure that conditions of detention are in conformity with the United Nations Standard Minimum Rules of the Treatment of Prisoners", - "values": [ - "4 - General action" - ] - }, - { - "text": "End the execution of mentally-ill persons and minors", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Redouble its efforts in fighting poverty with a view to maintain the level of development achieved so far and contribute to attain the MDGs", - "values": [ - "4 - General action" - ] - }, - { - "text": "Publish a communications plan that states how the Government intends to increase the Ombudsman's office capacity (resources, staff and legal powers) and how it intends to increase public awareness about their rights and their recourse to the Ombudsman if their rights are denied ", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Intensify necessary measures to combat and sanction police brutalities.", - "values": [ - "4 - General action" - ] - }, - { - "text": "Envisage implementing effective measures aimed at sustainably preventing and combating xenophobia and racist manifestations ", - "values": [ - "3 - Considering action" - ] - }, - { - "text": "Continue the efforts aimed at stepping up participation and consultation with indigenous peoples on public policies that affect them", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Include in its national criminal legislation, a definition of torture, in compliance with the provisions of the Convention against Torture", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Adopt a comprehensive gender equality law that contains a definition of discrimination against women in accordance with CEDAW ", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Improve the space for free operation of independent media, including state media, reinforce monitoring and sanctioning of abuses of media legislation and create an enabling working environment for journalists", - "values": [ - "4 - General action" - ] - }, - { - "text": "Further capacity building, such as through human rights education targeting government authorities, particularly law enforcement agencies, and an effective implementation of a national oversight mechanism ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Continue supporting the right to self-determination and independence, particularly its support to the Palestinian cause to put an end to foreign occupation", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Recommended the issuance and implementation of a standing invitation to special procedures.", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Be assisted by the international community in its efforts to design policies and programmes to ensure suitable solutions are found to deal sensitively with children victims of abuse, including training law enforcement officials, social workers and members of the judiciary on how to receive, monitor, investigate and prosecute complaints ", - "values": [ - "1 - Minimal action" - ] - }, - { - "text": "Repeal the emergency powers and the Sedition Act to bring Brunei's domestic legislation into line with its international human rights commitments on the freedoms of expression, of peaceful assembly and of association ", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Continue to forbid and punish torture and torture-related activities, taking all necessary measures to prevent such activity", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Accede to ICERD and ratify ICCPR, as a matter of priority ", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Continue to pay special attention to access to education for all children regardless of their ethnic origin and at all education levels, preschool, primary and secondary.", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Continue its efforts to provide free education for primary and secondary school students", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Provide financial resources for the implementation of the Convention on the Rights of Persons with Disabilities", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Take additional measures to combat intolerance, negative stereotyping and stigmatization, as well as discrimination, incitement to violence and violence against persons based on religion or belief, in line with Human Rights Council resolution 16/21", - "values": [ - "4 - General action" - ] - }, - { - "text": "Strengthen rapidly the capacities of its judiciary system to combat impunity in order that, inter alia, the justice handles, in an impartial manner, the complaints lodged against Mr. Jean-Claude Duvalier ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Continue its efforts to address all forms of violence against women and girls", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Continue efforts to combat trafficking in women and children within the framework of implementing national legislation and international obligations", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Take the measures necessary to ensure the free and fair election of a new legislative power, and to take the steps necessary to re-establish an independent judiciary in accordance with international human rights standards", - "values": [ - "4 - General action" - ] - }, - { - "text": "Implement the recommendations of the Committee on the Rights of the Child to prioritize effective measures to reduce poverty among indigenous and minority children", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Undertake public actions aimed at eliminating discrimination based on sexual orientation ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Take immediate steps to end the use of torture and other illtreatment of detainees in political prison camps, including forced labour and denial of food quotas", - "values": [ - "4 - General action" - ] - }, - { - "text": "Accede to the Optional Protocol to the Convention on the Rights of the Child CRC on the sale of children, child prostitution and child pornography", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Ensure due implementation of measures aimed at addressing persistent domestic violence, including marital rape", - "values": [ - "4 - General action" - ] - }, - { - "text": "Adopt a National Action Plan to implement the UN Guiding Principles on Business and Human Rights", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Take measures to improve the penitentiary system and identify additional resources to solve the problem of prison overcrowding ", - "values": [ - "4 - General action" - ] - }, - { - "text": "With regard to recommendations on elaborating laws specifically protecting human rights defenders, the delegation reaffirmed its commitment to continue discussions to set up a specific legal framework for them.", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Consider ratifying other international and regional human rights conventions that it is not yet a party to ", - "values": [ - "3 - Considering action" - ] - }, - { - "text": "Take urgent measures to prevent and fight against the social exclusion targeting the Rohingya Muslim minority", - "values": [ - "4 - General action" - ] - }, - { - "text": "Establish a national implementation action plan, with the special mandate to keep girls in schools, particularly in rural areas, provide for their specific needs and help them in secondary education", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Further involve civil society as a partner of the Government in promoting and protecting human rights", - "values": [ - "4 - General action" - ] - }, - { - "text": "Intensify its efforts to raise public awareness on the rights of persons with disabilities", - "values": [ - "4 - General action" - ] - }, - { - "text": "Implement a strategy aimed at improving detention conditions by reducing prison overcrowding and ensuring that female detainees can be guarded by female correctional officers ", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Ensure the full independence of the judiciary ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Before abolishing the death penalty and ratifying the Second Optional Protocol to the International Covenant on Civil and Political Rights, declare a de jure moratorium on executions", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Give full legal identity to all women residing in the Kingdom", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Amend the Criminal Code to ensure respect of the right to freedom of expression and establish guidelines for criminal defamation prosecution to ensure the exercise of the right to freedom of expression without fear of intimidation or harassment", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Continue to develop the preventive educational and social reinsertion approach as a priority channel to prevent crime", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Develop a comprehensive strategy to reduce domestic violence in Tuvalu, including by raising public awareness of the issue and identifying ways to combat such violence.", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Continue to implement its efforts to attain the constitutional recognition of indigenous peoples ", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Ratify and implement the ICESCR ", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Implement article 2 (a) of the Convention on the Elimination of All Forms of Discrimination against Women by prohibiting discrimination between men and women in its Constitution and other appropriate legislation so as to ensure gender equality.", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Improve services and support for women victims of domestic violence by conducting effective investigations, vigorously prosecuting the perpetrators, ending the practice of prosecuting victims and ensuring victims have access to protection and shelters", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Consider the use of alternative measures to detention for migrants and refugees by ensuring that vulnerable persons and children never remain detained", - "values": [ - "3 - Considering action" - ] - }, - { - "text": "Continue to reform and upgrade its detention system in order to improve the situation of inmates.", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Improve health-care infrastructure, access to emergency obstetric care, midwife training and health-care access for women from both rural and urban backgrounds", - "values": [ - "4 - General action" - ] - }, - { - "text": "Improve the system of the separation of constitutional powers and make sure that each power respects the mandate of the others", - "values": [ - "4 - General action" - ] - }, - { - "text": "Submit as soon as possible reports complying with its reporting obligations to the respective treaty bodies ", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Adopt and fully implement a new action plan on the gender equality for the next period lasting till 2020", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Continue its efforts to reach the international standard of 0.7% of the GDP devoted to official development assistance", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Increase access to technical services for persons with disabilities, with appropriate support from regional institutions", - "values": [ - "4 - General action" - ] - }, - { - "text": "Intensify the fight against social stereotypes, which cultivate prejudices against national minorities", - "values": [ - "4 - General action" - ] - }, - { - "text": "Ratify CEDAW ", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Enhance efforts by law enforcement authorities to eradicate the practice of female genital mutilation", - "values": [ - "4 - General action" - ] - }, - { - "text": "Consider developing a strategy that ensures that the experiences of community practitioners are taken into account in the development of its national strategies to improve health standards in maternal neo-natal and child health.", - "values": [ - "3 - Considering action" - ] - }, - { - "text": "Ensure the protection of defenders of the rights of lesbian, gay, bisexual and transgender persons, and take measures to ensure that lesbian, gay, bisexual and transgender persons can fully and freely exercise their rights without fear of attack or reprisal ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Ensure the effective implementation of the National Plan to Reduce Violence against Women and their Children, in particular to protect Aboriginal and Torres Strait Islander women, culturally and linguistically diverse women, and women with disabilities", - "values": [ - "4 - General action" - ] - }, - { - "text": "Review the law and practice related to the lengthy detention of asylum-seekers", - "values": [ - "3 - Considering action" - ] - }, - { - "text": "Promote the training of the personnel of the public sector in the field of human rights", - "values": [ - "4 - General action" - ] - }, - { - "text": "Continue applying the 2012 directive on land concessions ", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Recommended that the Uzbek Government allow independent investigations of labour rights abuses.", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Continue strengthening its social policies with a view of increasing the standard of living of its people, especially the most vulnerable", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Take appropriate measures to abolish the illegal practice of making women take pregnancy test to gain employment, as previously recommended", - "values": [ - "4 - General action" - ] - }, - { - "text": "Respect at least the minimum standards and the provisions of ICCPR and CRC concerning the death penalty, for as long as it is maintained", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Put in place appropriate monitoring mechanisms to ensure that the intended objectives of the progressive policy initiatives and measures for the promotion and protection of the welfare and the rights of the vulnerable, including women, girls and children, as well as the scheduled castes and schedules tribes and minorities are well achieved ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Give continuity to strengthening of national human rights mechanisms", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Strengthen the capacity of law enforcement personnel ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Ensure in its domestic law that the principle of non-refoulement is respected when proceeding with the return of asylum-seekers to countries ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Continue cooperation with all mechanisms of the Human Rights Council ", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Protect the legitimate rights of foreign workers in Singapore and help them get the necessary vocational training", - "values": [ - "4 - General action" - ] - }, - { - "text": "Adopt legal measures to prohibit, sanction and effectively prevent the practice of female genital mutilation ", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Ratify the Domestic Workers Convention, 2011 (No. 189) of the International Labour Organization", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Strengthen the public policies to reduce the housing shortage and create conditions for access to affordable housing for middle- and low-income households", - "values": [ - "4 - General action" - ] - }, - { - "text": "Maintain the moratorium on the application of the death penalty and move towards its complete abolition", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Take appropriate measures to ensure the effective enjoyment of the right to freedom of expression, peaceful assembly and association, particularly in the case of national, ethnic and religious minorities ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Ensure effective implementation and enforcement of the Child care and Protection Act", - "values": [ - "4 - General action" - ] - }, - { - "text": "Establish a permanent and independent human rights institution compliant with Paris Principles", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Take measures to increase the participation of women in public and political programmes for the empowerment of women, and reinforce measures to ensure equality between women and men in all spheres, including through more effective implementation of relevant legislation ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Further strengthen its national mechanisms for the protection of human rights ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Take steps to decriminalise defamation", - "values": [ - "4 - General action" - ] - }, - { - "text": "Strengthen the independence of the Human Rights Commission of Maldives and work with it to improve the human rights education of the judiciary and the public ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Promote initiatives such as legislation for preventing domestic violence and marital rape", - "values": [ - "4 - General action" - ] - }, - { - "text": "Continue its efforts on enhanced enforcement, institutional capacity-building and awareness-raising in the fight against corruption", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Improve rights and conditions of migrant workers and consider signing the International Convention on the Protection of the Rights of All Migrant Workers and Members of Their Families", - "values": [ - "4 - General action" - ] - }, - { - "text": "In order to help overcome the problem of the heavy burden of treaty reporting, work with OHCHR to develop a common core document which, in conjunction with treaty-specific list of issues, will help to streamline treaty reporting ", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Amend its Penal Code to decriminalise sexual relations between persons of the same sex", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Assign sufficient resources for the implementation of the national gender equality policy, and review judicial procedures to ensure women and girls victims of domestic violence can have access to justice, by providing training to police and judicial staff in order for them to be treated with dignity", - "values": [ - "4 - General action" - ] - }, - { - "text": "Conduct targeted/focused policy of social support to the population in need, especially children", - "values": [ - "4 - General action" - ] - }, - { - "text": "Continue to take measures to enhance the respect for human rights anchored on the rule of law and good governance", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Cooperate with the Special Rapporteur and other United Nations special procedures mandate holders", - "values": [ - "4 - General action" - ] - }, - { - "text": "Assess in an open and transparent manner the consequences of flights conducted over Danish territory and landings that took place in the context of the Central Intelligence Agency extradition programme ", - "values": [ - "3 - Considering action" - ] - }, - { - "text": "Implement recommendations by relevant treaty bodies such as the Committee on Economic, Social and Cultural Rights, to end military involvement in commercial and other civilian activities", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "While recognizing the adoption of the National Human Rights Action Plan, and within the context of its implementation, implement awareness- raising campaigns and promote respect of human rights", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Develop efforts to formulate a national strategy to ensure the full realization of the right to adequate housing that incorporates social housing and also the reconstruction of the housing areas destroyed during the violence of June 2010", - "values": [ - "4 - General action" - ] - }, - { - "text": "Expedite the endorsement of long-awaited child policy legislation, including the Child Rights Act, Education Regulation, Child Protection Policy, and minimum standards for child-care homes, and take the necessary steps to ensure their full implementation ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Enact legislation which clearly prohibits child prostitution and other forms of sexual exploitation, consistently with the international obligations undertaken by the country, bearing in mind that the Lanzarote Convention will enter into force as regards Ukraine on 1 December 2012 ", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Provide greater resources to its court system to reduce pretrial detention ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Continue efforts to strengthen the right to health and overcome the obstacles that it is facing in this regard", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Continue efforts to design housing financing schemes for the care of the population working within the informal market economy", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Amend the Penal Code to decriminalizing homosexual activity in line with the provisions of ICCPR, particularly articles 2 and 26 ", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Continue the spread of internet connections throughout the rural areas", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Expand access to drinking water to marginalized and vulnerable populations ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Step up efforts and cooperate with relevant countries and international partners, address the situation in Rakhine State at its root causes, and combat people smuggling and human trafficking", - "values": [ - "4 - General action" - ] - }, - { - "text": "Review and reform its national legislation with a view to eradicating all discrimination on the basis of sexual orientation and gender identity", - "values": [ - "4 - General action" - ] - }, - { - "text": "Consider the development of a national action plan for the promotion and protection of human rights", - "values": [ - "3 - Considering action" - ] - }, - { - "text": "Consider bringing national legislation relating to trafficking in and sale of children in line with the Optional Protocol to the CRC, on the sale of children, child prostitution and child pornography ", - "values": [ - "3 - Considering action" - ] - }, - { - "text": "Develop necessary programmes in order to promote the economic and social development of women, especially in rural areas", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Reinforce dialogue in the context of the 13 August 2007 agreements with a view to ensure they are effectively implemented.", - "values": [ - "4 - General action" - ] - }, - { - "text": "Consider further affirmative action to accelerate equality for women in practice: in working life and in political decision-making", - "values": [ - "3 - Considering action" - ] - }, - { - "text": "Allocate sufficient resources in order to ensure full implementation of the Council of Europe Convention on Preventing and Combating Violence against Women and Domestic Violence", - "values": [ - "4 - General action" - ] - }, - { - "text": "Share the experiences regarding the first Programme for Children and Youth, in particular the approach of including the recommendations of the Committee on the Rights of the Child", - "values": [ - "1 - Minimal action" - ] - }, - { - "text": "Ensure human rights protection to all people in Myanmar including the Rohingya", - "values": [ - "4 - General action" - ] - }, - { - "text": "Eliminate the legal concept of "children born outside wedlock", as well as combat against all forms of discrimination, both legally and in practice", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Conduct thorough and impartial investigations into all allegations of killing, torture and physical abuse, and bring to justice anyone suspected of having committed excessive use of force, torture or other human rights violations ", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Adopt comprehensive anti-discrimination legislation effectively fighting and preventing discrimination on all grounds, including ethnicity, religion, gender and sexual orientation", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Continue to prioritize the enactment of a gender equality bill with a view to combating comprehensively all forms of discrimination against women", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Take measures to enact relevant regulatory legislation to provide adequate attention to the migrant population and their human rights", - "values": [ - "4 - General action" - ] - }, - { - "text": "Allow the exercise of the right to the freedom of expression and the freedom of association and assembly, by fostering and facilitating civil society entities and enabling them to obtain status under law ", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Take measures to further improve the situation of gender equality ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Consider ratifying the Palermo Protocol supplementing the United Nations Convention against Transnational Organized Crime", - "values": [ - "3 - Considering action" - ] - }, - { - "text": "Ratify as soon as possible the Optional Protocol to the Convention against Torture or other Cruel, Inhuman or Degrading Treatment or Punishment (OP-CAT) ", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Prepare a specific plan to ensure that the Nepal Lands Act will in practice effectively promote equality ", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Consider ratifying ICRPD", - "values": [ - "3 - Considering action" - ] - }, - { - "text": "Sri Lanka will take necessary measures to enable the reconstitution of the Constitutional Council which will facilitate the strengthening and effective functioning of national human rights mechanisms, including the National Human Rights Commission.", - "values": [ - "4 - General action" - ] - }, - { - "text": "Step up efforts to disseminate information on the existence of new legislative provisions related to the prevention and prohibition of violence against women, ensuring women are duly informed of all the legal channels available to them", - "values": [ - "4 - General action" - ] - }, - { - "text": "Incorporate into domestic law its international human rights obligations under the Conventions to which it is party ", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Enshrine the right to education in its Constitution and allow pregnant girls to pursue their education in schools of their choice", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Guarantee equal rights for all citizens, and fight against all forms of discrimination based on sexual orientation or gender identity", - "values": [ - "4 - General action" - ] - }, - { - "text": "Pay special attention to helping Dalit children, girls, and children belonging to ethnic minorities to complete their education cycle, and to ensure their employment opportunities after education in order to enable them to claim their rights and work as agents of change for their communities ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Permit and encourage female students to return to formal education after giving birth, in keeping with the recommendation made during the review of the Education Act", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Create a favourable environment for the activities of human rights defenders, journalists and other actors of civil society", - "values": [ - "4 - General action" - ] - }, - { - "text": "Promote further engagement with international human rights mechanisms, including in seeking technical assistance from the Office of the UN Commissioner for Human Rights", - "values": [ - "4 - General action" - ] - }, - { - "text": "Implement the Security Council resolutions on Women, Peace and Security, in particular by supporting the participation of women in peace negotiations and ensuring the necessary framework to increase the participation of women in political and judicial life and within security institutions of the country, taking into account their security as well as their personal dignity ", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Review its domestic legislation to ensure the removal of any discriminatory provisions based on gender. ", - "values": [ - "3 - Considering action" - ] - }, - { - "text": "Follow up on initiatives taken to strengthen the protection of children's rights", - "values": [ - "4 - General action" - ] - }, - { - "text": "Review the compliance of the Kenya Information Communication (Amendment) Act of 2013 with international standards on freedom of expression, create an enabling environment for journalists and bloggers and decriminalize media offences and defamation", - "values": [ - "3 - Considering action" - ] - }, - { - "text": "Establish a formal moratorium on the death penalty with a view to ratifying the Second Optional Protocol to the International Covenant on Civil and Political Rights, aiming at the abolition of the death penalty", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Take all necessary steps to implement the Committee on the Rights of the Child recommendation to prevent, prohibit and protect the child from all forms of torture or cruel inhuman or degrading treatment or punishment.", - "values": [ - "4 - General action" - ] - }, - { - "text": "Continue to work on improving the situation of children's rights in particular Roma children's right general public, in political discourse and media presentations, on police brutality and discrimination and to raise awareness of the need to improve the overall situation of human rights.", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Strengthen the consultation mechanism, especially in terms of economic, social and cultural rights", - "values": [ - "4 - General action" - ] - }, - { - "text": "Prohibit by law all forms of corporal punishment of children, without exception.", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Further develop its strategy to combat trafficking and sexual exploitation in cooperation with countries of origin ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Continue its efforts to ensure the right to education for all people", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Continue efforts in achieving the Millennium Development Goals ", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Abolish entirely the death penalty from its legislation", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Take further steps to ensure better labour market access and access to basic social and health services for marginalized women, including women with disabilities, Roma women and migrant women", - "values": [ - "4 - General action" - ] - }, - { - "text": "Speed up efforts in the ratification of the International Convention on the Protection of the Rights of All Migrant Workers and Members of their Families", - "values": [ - "4 - General action" - ] - }, - { - "text": "Amend the 1982 Citizenship Law to give the Rohingya and all other religious minorities and ethnic groups access to full citizenship rights", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Dismantle special terrorist zones, safe havens and sanctuaries, and take verifiable actions, including on terror financing", - "values": [ - "4 - General action" - ] - }, - { - "text": "Ratify the Convention on the Elimination of All Forms of Discrimination against Women", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Continue efforts to promote and protect the rights of women and children on all levels ", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Continue contribution of its efforts to the Human Rights Council and its mechanism", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Seek technical and financial support from the international community so that efforts undertaken for good governance are not compromised", - "values": [ - "1 - Minimal action" - ] - }, - { - "text": "Proceed to the ratification of the Convention on the Rights of the Child, signed in 1995, the Convention on the Elimination of All forms of Discrimination against Women, signed in 1980, the International Covenant on Economic, Social and Cultural Rights, signed in 1977, and transpose them into national law", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Take all necessary measures to eliminate, in law and in practice, violence against women and corporal punishment of boys and girls", - "values": [ - "4 - General action" - ] - }, - { - "text": "Repeal Sections 9 (1) and 15 (A) (1) of the Prevention of Terrorism Act to ensure that detainees are held only in recognized places of detention, with regularized procedures and safeguards to protect detainees including access to legal representation and systematic notification to families of detainee whereabouts", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Put in place a legal mechanism that enables indigenous communities from protecting and claiming their lands", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Adopt necessary measures to formalize the establishment of a moratorium on the executions of the death penalty as well as the ratification of ICCPR-OP 2", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Consider the ratification of the Convention on the Rights of Persons with Disabilities (CRPD)", - "values": [ - "3 - Considering action" - ] - }, - { - "text": "Continue to eliminate poverty, improve people's life and make efforts to fulfill the Millennium Development Goals ", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Take measures to prevent child trafficking and sexual exploitation through education programmes and development of support services of assistance, rehabilitation and protection", - "values": [ - "4 - General action" - ] - }, - { - "text": "Ensure that young people with mental health problems have access to the highest professional consultancies and treatment methods, and promote an enabling environment for non-profit organizations working with mental health issues in relation to young people and children", - "values": [ - "4 - General action" - ] - }, - { - "text": "Keep its commitment and continue to work with partners nationally, regionally and internationally to implement its action plan to promote women's rights and combat violence against women", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Increase efforts to promote gender equality, especially with regard to work opportunities and health access, and to introduce gender components into education and professional training", - "values": [ - "4 - General action" - ] - }, - { - "text": "Continue working on the ongoing reform of the judicial system to promote compliance by the courts with international standards", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Ensure the freedoms of expression and opinion are respected, including in its consideration of the draft media laws currently before Parliament", - "values": [ - "4 - General action" - ] - }, - { - "text": "Step up efforts to achieve an effective participation of minorities in political life", - "values": [ - "4 - General action" - ] - }, - { - "text": "Continue its efforts in the field of combating and eliminating discrimination on the grounds of sexual orientation and gender identity, inter alia, by implementing comprehensive legislative reform that guarantees equal protection from discrimination on all grounds", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Continue to take positive steps to enhance the enjoyment of economic, social and cultural rights, especially in the areas of health, education and the care of the disabled ", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Ensure that the Austrian Ombudsman functions with full independence and in conformity with the Paris Principles", - "values": [ - "4 - General action" - ] - }, - { - "text": "Further accelerate the efforts aiming at decreasing the infant, child and maternal mortality rates and increasing average life expectancy", - "values": [ - "4 - General action" - ] - }, - { - "text": "Develop the industrial and social infrastructure ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Regularly fulfil its reporting obligations to the treaty bodies of the human rights treaties to which it is a party ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Allocate the necessary human, technical and financial resources to the police services, at both local and national levels, so that they can address all complaints of violence against women", - "values": [ - "4 - General action" - ] - }, - { - "text": "Guarantee that each detainee effectively has the right to contest the legality of his or her arrest. ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Further strengthen the Government's efforts to protect the rights of children, with particular emphasis on preventing school dropouts and eliminating child labour and sexual exploitation of children. ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Align its justice system for minors with the Convention on the Rights of the Child and other relevant norms", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Smooth the process of the ratification of the Optional Protocol to CEDAW and improve inter-institutional coordination across the civil society organisations, ministerial departments, and other national actors involved in the defence of women's rights", - "values": [ - "4 - General action" - ] - }, - { - "text": "Continue its effort to combat discrimination and promote equality in accordance with international treaties establishing guarantees of fundamental human rights and freedoms, and equality in the enjoyment of such rights, without privileges or restrictions based on race, colour, political, religious or other belief, gender, sexual orientation, ethnic or social origin, property status, place of residence, language or other grounds ", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Implement the Maseru Facilitation Declaration and the Maseru Security Accord, and thereby to reestablish the ground for democratic and civil governance in the country, after elections in February 2015", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Accelerate the process of ratification of the Council of Europe Convention on Preventing and Combating Violence against Women and Domestic Violence (the Istanbul Convention)", - "values": [ - "4 - General action" - ] - }, - { - "text": "More efforts be made to combat gender violence, principally through the adoption of political measures to include the representation of women in decision-making-posts and in public administration ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Complete as a matter of priority and before its third universal periodic review the process leading to the ratification of the Optional Protocol to the Convention against Torture and establish a national preventive mechanism without delay", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Leave the investigation of criminal offences to the existing judicial system, in particular the police and the Prosecutor's Office", - "values": [ - "4 - General action" - ] - }, - { - "text": "Consider formally abolishing the death penalty ", - "values": [ - "3 - Considering action" - ] - }, - { - "text": "Accelerate its domestic procedure for ratification including the adoption of the Prevention against Torture Bill by its Parliament ", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Ratify the Agreement on Privileges and Immunities of the International Criminal Court and implement it fully at national level", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Extend the criminalization of female genital mutilation to all those practices that are harmful to women's physical and psychological health ", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Consider taking targeted measures to combat violence against children, to conduct awareness campaigns on children's right to freedom from violence and to offer protection to children who are victims of violence", - "values": [ - "3 - Considering action" - ] - }, - { - "text": "Implement fully the 2012 Action Plans to eradicate the recruitment and use of child soldiers and achieve the goal of "Children Not Soldiers" in this year", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Promptly ratify the Optional Protocol to the International Covenant on Economic, Social, and Cultural Rights", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Carry out investigations into all violations and deaths of persons in custody and in prisons attributable to police officers, and: that perpetrators of such violations are prosecuted. and that victims are paid compensation and have access to independent bodies for investigating those complaints", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Abolish its extrajudicial and extraterritorial laws and refrain from the application of unilateral measures against other countries ", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Put in place a monitoring mechanism for the assessment of the situation of the protection of children, and strengthen the capacity of State and private institutions working on children's rights ", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Speed up the approval of the bill for the reform of the Criminal Code and Code of Criminal Procedure, with a view to criminalizing acts of torture and conferring on victims compulsory State-assistance, which should allow proper redress, including adequate compensation for victims of torture, or other cruel, inhuman or degrading treatment or punishment.", - "values": [ - "4 - General action" - ] - }, - { - "text": "Accede to the ICRMW ", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Continue efforts in enhancing the welfare of all segments of society and their rights based on national context and characteristics", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Continue efforts to review national laws to ensure that they are in line with their international human rights obligations", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Ratify all core human rights treaties to which it is not yet a party, including the International Convention on the Elimination of All Forms of Racial Discrimination, the International Covenant on Civil and Political Rights, the International Covenant on Economic, Social and Cultural Rights, and the Convention against Torture", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Further strengthen measures to improve public access to the justice system and ensure the independence of the judicial system by, inter alia, providing sufficient means, and report on the results of these measures in the next review report.", - "values": [ - "4 - General action" - ] - }, - { - "text": "Integrate human rights knowledge into relevant courses and the legal education curriculum", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Fully and immediately implement all Council resolutions and respect the human rights and fundamental freedoms of the Palestinian people, in particular their right to self-determination.", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Ease requirements for the registration of all NGOs and facilitate unhindered operation of all civil society actors, including human rights defenders", - "values": [ - "4 - General action" - ] - }, - { - "text": "Develop and strengthen the domestic legislation and policy on the protection of women and children with the aim of reducing incidences of exploitation of women and children and violence against women ", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Strengthen the child and adolescent protection system to especially benefit adolescent criminal responsibility issues ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Adopt appropriate measures to ensure the protection of human rights defenders, journalists and members of the political opposition from acts of aggression and intimidation and abstain from taking any restrictive measures or reprisals against human rights defenders, notably those who cooperate with the Human Rights Council", - "values": [ - "4 - General action" - ] - }, - { - "text": "Expedite the efforts to ratify the ICCPR", - "values": [ - "4 - General action" - ] - }, - { - "text": "Increase its ongoing efforts aimed at promoting equitable health rights for all Cambodian people ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Make efforts to do a way with imbalances in approaches to disability, depending on the geographic area and the cause of disability", - "values": [ - "4 - General action" - ] - }, - { - "text": "(1) Boosting information systems and consolidated, interconnected data bases on such crimes: here Colombia considers that international technical assistance is important. (2) Inclining towards proper investigations and trials of all perpetrators. (3) Consolidating a policy of offering comprehensive care to victims and their families. (4) Giving the Office of the Public Procurator a greater role in disciplinary investigations of police and army personnel. (5) Buttressing the Commission on the Search for Missing Persons and increasing its capacity to follow up on forced disappearances and formulate policy proposals. (6) Initiating the ratification by Congress of the International Convention for the Protection of All Persons from Enforced Disappearance.", - "values": [ - "4 - General action" - ] - }, - { - "text": "Cooperate with other States in order to tackle the main root causes that attract the youngsters to the so-called jihadism, namely the provision of their socioeconomic and cultural rights", - "values": [ - "4 - General action" - ] - }, - { - "text": "Strengthen its efforts to reduce extreme poverty, exclusion and marginalization", - "values": [ - "4 - General action" - ] - }, - { - "text": "Strengthen the role of the National Council on Civil Liberties and Human Rights in the promotion and protection of human rights in accordance with the Paris Principles", - "values": [ - "4 - General action" - ] - }, - { - "text": "Take the gender perspective into consideration in the design of future policies and programmes", - "values": [ - "4 - General action" - ] - }, - { - "text": "Adopt policies and legislation aimed at promoting women's rights and combating gender-based discrimination, particularly domestic violence ", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Continue to strengthen the promotion and protection of the human rights of vulnerable groups\nwithin society, particularly women, children, disabled persons and persons with HIV-AIDS ", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Continue current efforts to improve the literacy rate, particularly among women, and provide girls and boys with equal access to education", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Continue reinforcing measures to guarantee respect for the human rights of national communities, Roma and other ethnic groups", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Continue to promote its socio-economic development by reducing poverty, and increasing inputs into health care and education", - "values": [ - "4 - General action" - ] - }, - { - "text": "Ensure the strict observance of its legislation - in particular, effectively guarantee the equality of treatment of men and women at work, as well as equality in access to employment ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Report back to the Human Rights Council about further concrete measures or actions taken in regard to ensuring that human rights defenders, including victims of human rights violations, witnesses, prosecutors, forensic experts, journalists and trade union workers, can carry out their human rights work freely and without fear of intimidation.", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Adopt clear, appropriate measures to improve the rights of children to education", - "values": [ - "4 - General action" - ] - }, - { - "text": "Continue its efforts to stop the recruitment and use of children by all parties involved in the conflict in the country and work closely with OHCA, UNICEF and other relevant parties to demobilize children from the military and other armed groups. ", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Promptly take effective measures to ensure the protection of refugees as well as the respect for their human rights, and provide the UNHCR and other relevant humanitarian actors with access to the sites where large numbers of Rohingya refugees are located ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Continue efforts in the field of protection of the rights of persons with disabilities ", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Continue to strengthen efforts to fight corruption", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Take all necessary measures to eliminate the practice of children in domestic servitude, which had been referred to by the Special Rapporteur on contemporary forms of slavery as a "modern form of slavery" ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Improve training on human rights by addressing law enforcement, especially police officers ", - "values": [ - "4 - General action" - ] - }, - { - "text": "State a precise calendar for ratification and adoption of the necessary measures for the ratification of the ICCPR", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Continue with the effective implementation of measures to combat discrimination and violence based on sexual orientation and gender identity, particularly through the implementation of differentiated approaches to guarantee the enjoyment of the rights of lesbian, gay, bisexual, transgender and intersex persons", - "values": [ - "4 - General action" - ] - }, - { - "text": "Extend an open and standing invitation to the special procedure mandate holders to visit Bhutan ", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Bring the criminal justice system for juveniles into conformity with CRC, that the age of children in conflict with the law be raised, and promote social programmes for the education of these children ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Introduce a comprehensive job creation programme particularly targeting young people ", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Maintain the priority given to women and children ", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Systematically adopt policies that promote gender equality in the education sector and ensure that gender issues are included in education as an integral, substantive and mandatory component of the training of teachers and students in all levels", - "values": [ - "4 - General action" - ] - }, - { - "text": "Take legislative as well as practical steps to ensure that judicial procedures including that against Mr. Toaso are conducted in a just, transparent, and impartial manner, in full respect of human rights norms, including the recommendations of United Nations mechanisms", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Ratify the Optional Protocol to the International Covenant on Economic, Social and Cultural Rights and Protocol 12 of the European Convention on Human Rights ", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Take effective measures to increase women's participation in public and political life as well as in the labour market, in particular considering temporary special measures such as statutory quotas or incentives", - "values": [ - "4 - General action" - ] - }, - { - "text": "Consider ratifying the ICESCR and continue to strengthen institutions of democratic governance", - "values": [ - "3 - Considering action" - ] - }, - { - "text": "Implement the Religious Organizations Restriction Act of 2010 consistent with its terms and with full respect for international religious freedom ", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Take additional measures to strengthen the fight against torture and other ill-treatment, and the fight against impunity, by ensuring that all complaints of torture are subject to an impartial and effective investigation", - "values": [ - "4 - General action" - ] - }, - { - "text": "Undertake targeted outreach activities to ensure that interested "noncitizens" are informed and encouraged to apply for naturalization, and provide free state language training when necessary", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Maintain its programmes aimed at preventing and combating racism, racial discrimination and xenophobia ", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Ratify the Convention on the Rights of Persons with Disabilities and its Optional Protocol. ", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Refrain from adopting any legislation incompatible with freedom of association, particularly with regard to NGOs' access to funding, and facilitate, promote and protect the development of a framework for organizations and individuals working for the promotion and respect of human rights consistent with international law", - "values": [ - "4 - General action" - ] - }, - { - "text": "Fully and thoroughly investigate and prosecute incidents and violence against human rights defenders, in particular journalists", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Consider undertaking a comprehensive study on the positive implications of the legal system of civil law and Shari'ah law ", - "values": [ - "3 - Considering action" - ] - }, - { - "text": "Continue to strengthen democratic institutions with a clear separation of powers ahead of the coming election cycle", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Continue to promote initiatives to empower women of the country at an economic, political and social level, doubling efforts to eliminate discriminatory practices which still affect them, as reflected in CEDAW's report of February this year", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Ensure the realization of the rights to food and health of all who live in its territory", - "values": [ - "4 - General action" - ] - }, - { - "text": "Ensure that all forces, including any affiliated militia forces, immediately cease all violations and abuses of international humanitarian and human rights law, in particular against women and girls and including violations perpetrated by State security institutions, and end impunity by bringing the perpetrators to justice", - "values": [ - "4 - General action" - ] - }, - { - "text": "Take proactive measures to ensure the equality of women in all matters related to property inheritance.", - "values": [ - "4 - General action" - ] - }, - { - "text": "Implement active policies to speed up and increase the representation of women, in particular in local governments, the judiciary and the health sector.", - "values": [ - "4 - General action" - ] - }, - { - "text": "Continue ongoing efforts to close the gaps in opportunities between indigenous and non-indigenous Australians", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Ratify the 1954 Convention relating to the Status of Stateless Persons, the 1961 Convention on the Reduction of Statelessness and the Council of Europe Convention on Preventing and Combating Violence against Women and Domestic Violence", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Continue to vigorously investigate sex and labour trafficking offences and increase trafficking prosecutions and convictions to continue to provide trafficking awareness training for judges to ensure that a majority of convicted traffickers serve time in prison and to continue to refer a significant number of identified victims for assistance", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Work with the Office of the United Nations High Commissioner for Human Rights to develop a common core document which, in conjunction with treaty-specific lists of issues, will help to streamline treaty reporting ", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Implement legislation which provides for the investigation of violence against women, and the prosecution and punishment of the perpetrators of such violence", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Restore democracy and the rule of law indispensable for the full enjoyment of human rights, harmed by the parliamentary coup d\u2019état against President Dilma Rousseff", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Consider issuing a standing invitation to special procedures of the Human Rights Council.", - "values": [ - "3 - Considering action" - ] - }, - { - "text": "Pursue adoption and implementation of efficient policies to promote economic and social participation of migrants ", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Take measures to ensure the effective implementation and enforcement of existing legislation, with a view to reducing structural disadvantages that hamper the effective realization of substantive gender equality, in line with the recommendation by the Committee on the Elimination of Discrimination against Women", - "values": [ - "4 - General action" - ] - }, - { - "text": "Continue its efforts to combat all forms of discrimination against women, to fight violence against them and to enhance their presence in higher decision-making positions", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Harmonize domestic legislation with the Convention on the Rights of the Child through technical assistance and establish laws that regulate areas that are not yet regulated, such as child pornography or disability ", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Ratify the core human rights instruments, including the International Convention for the Protection of All Persons from Enforced Disappearance", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Report regularly to the Committee against Torture.", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "In its commitment to democratic principles and values and the defence of human rights, make the greatest efforts to ensure a national dialogue that facilitates guaranteeing full respect for human rights, independence of powers and institutional strengthening of the country", - "values": [ - "4 - General action" - ] - }, - { - "text": "Take measures to increase the coverage of persons with disabilities in the employment system, by creating barrier-free environments in favour of persons with disabilities, and effectively complying with its obligations in the framework of CRPD ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Strengthen State and Government mechanisms to better investigate and sanction those responsible for violations of human rights", - "values": [ - "4 - General action" - ] - }, - { - "text": "Further strengthen the necessary measures to address climate change, environmental degradation and disaster management", - "values": [ - "4 - General action" - ] - }, - { - "text": "Prosecute the perpetrators of trafficking and sexual exploitation of women and children", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Continue education and awareness-raising programmes in the area of human rights and international treaties ", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Continue to make progress in measures to prevent discrimination against any person due to its sexual orientation or gender identity ", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Strengthen the measures aimed at protecting vulnerable populations and so guarantee their full access to public services", - "values": [ - "4 - General action" - ] - }, - { - "text": "Take all adequate measures to promptly eliminate all forms of violence against women and children, including abuse and neglect of children", - "values": [ - "4 - General action" - ] - }, - { - "text": "Consider an immediate moratorium on the use of the death penalty with a view to its permanent abolition ", - "values": [ - "3 - Considering action" - ] - }, - { - "text": "Create and maintain, in law and in practice, an enabling environment that guarantees freedom of expression and peaceful assembly", - "values": [ - "4 - General action" - ] - }, - { - "text": "Make efforts taken in the field of measures to improve access to justice", - "values": [ - "4 - General action" - ] - }, - { - "text": "Establish a national human rights institution.", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Create conditions for an early ratification of the International Covenant on Civil and Political Rights (ICCPR)", - "values": [ - "4 - General action" - ] - }, - { - "text": "While noting the measures taken by Poland to address the continuing occurrence of violence against children, recommended that measures be taken by the Government to ensure the sufficient legal protection of the freedom of children from physical or mental violence. ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Ensure that the best interests of the child are fully considered when deciding on asylum applications", - "values": [ - "4 - General action" - ] - }, - { - "text": "Establish an Independent Police Complaints and Misconduct Commission in accordance with the recommendations of the 2005 Royal Commission", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Elaborate and apply in an effective manner an exhaustive and interdisciplinary action plan to address violence against women", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Make every possible measure to protect the legal and financial rights of expatriate workers in the Kingdom", - "values": [ - "4 - General action" - ] - }, - { - "text": "Intensify the efforts to integrate human rights education in the national curriculum", - "values": [ - "4 - General action" - ] - }, - { - "text": "Continue its efforts to promote and protect all human rights, in particular those of persons with disabilities", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Release the detainees held in Guantanamo", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Fully implement the Magna Carta of Women for promoting gender equality ", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Develop programmes and campaigns aiming at combating discrimination against girls in schools ", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Enhance the independence of the justice system, particularly with the establishment of an appropriate system of training, nomination, promotion and sanctions against judges", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Adopt practical and legal measures to curb racial discrimination and discrimination against migrants and look at the appeal by UNESCO to ratify the Convention against Discrimination in Education", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Establish a moratorium on executions on the entire American territory, with a view to a definitive abolition of the death penalty ", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Continue efforts to reduce social acceptance of domestic and gender based violence ", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Promotion of human rights within the armed forces, to create human rights awareness programmes, to hold workshops on prevention and eradication of ill-treatment and torture, training on mediation and arbitration, creation of a section within the Ministry of Defence for the prevention and control of corruption with the armed forces", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Continue efforts to achieve the country's poverty alleviation goals", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Take urgent steps to prevent politically motivated and sectarian and religious based violence", - "values": [ - "4 - General action" - ] - }, - { - "text": "Consider less restrictive alternatives to blanket detention of migrants and guarantee to all migrants the right to seek judicial review of the lawfulness of their detention and to obtain a determination without delay and release if detention is determined unlawful", - "values": [ - "3 - Considering action" - ] - }, - { - "text": "With the support and cooperation of the international community, continue to fight poverty, ensuring that the benefits are accrued by all citizens in all regions. continue to improve the healthcare system and combat deadly diseases, such as HIV-AIDS.", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Continue strengthening compensation and reintegration of victims of terrorism, which has led to migration and internal displacement", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Abolish FGM and as a first step support those initiatives from within the country which call for prohibiting FGM at least for minors of under 18 years age ", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Improve implementation of relevant national standards and legislation pertaining to accessibility for people with disabilities, also on the municipal level", - "values": [ - "4 - General action" - ] - }, - { - "text": "Become a party to CRPD ", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Take the necessary steps to fully implement provisions of its Basic Law, which guarantees the independence of the judicial system, including by ensuring a complete separation between the executive and the public ministry ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Continue to seek technical assistance from the international community in the rebuilding process to help it fulfil its obligations", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Release all political prisoners unconditionally, and remove conditions on those already released", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Consider the possibility to establish a moratorium on the application of the death penalty, and commute death sentences to prison sentences", - "values": [ - "3 - Considering action" - ] - }, - { - "text": "Take practical measures to ensure the full and proper implementation of the Children\u2019s Code, as recommended by the Committee on the Rights of the Child in 2016", - "values": [ - "4 - General action" - ] - }, - { - "text": "Fulfil its commitment to reducing chronic malnutrition by 10% in four years including through the development of a long term strategy to reduce inequalities related to access to food", - "values": [ - "4 - General action" - ] - }, - { - "text": "Continue strengthening education policies to ensure the schooling of all children ", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Refrain from enacting the proposed Public Order Management Bill and fully guarantee the freedom of assembly", - "values": [ - "4 - General action" - ] - }, - { - "text": "Ratify the Optional Protocol to CRC on the sale of children, child prostitution and child pornography and CEDAW", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Prohibit in all circumstances the use of the provisions of the Qisas and Diyat law in cases of honour killings.", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Consider the possibility of acceding to the Optional Protocol of the Convention against Torture with a view to strengthening preventive activities ", - "values": [ - "3 - Considering action" - ] - }, - { - "text": "Focus in its transitional justice strategy on reconciliation, truth, justice and reparation, and take the measures which it deems appropriate to ensure that the violations of the past will not be repeated ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Continue its efforts in expressing its international obligations through domestic laws", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Strengthen necessary policies to respect and promote women's rights and their role in various fields, given that women are key partners in the development process ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Continue carrying out efforts so that the Philippines Development Plan (2011-2016) is in accordance with its international human rights obligations ", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Reject any proposed legislation that would restrict freedom of expression relating to sexual orientation", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Consider ratifying ILO Convention No. 118 on Equality of Treatment ", - "values": [ - "3 - Considering action" - ] - }, - { - "text": "Consider the adoption of a national strategy to move forward in the promotion and protection of the rights of the elderly", - "values": [ - "3 - Considering action" - ] - }, - { - "text": "Grant United Nations special rapporteurs regular access to detention facilities run by the National Intelligence Agency and the Republican Guard, and adopt a viable action plan to better address the urgent need for comprehensive penal system reform.", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Formalize abolition of the death penalty by signing the Second Optional Protocol to the International Covenant on Civil and Political Rights", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Redouble its efforts in designing a comprehensive health programme, including through providing access to safe drinking water and sanitation ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Continue to promote women's rights and empowerment, with a view to further enhancing their participation in economic and political life", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Enhance the separation of powers between the executive branches and the judiciary", - "values": [ - "4 - General action" - ] - }, - { - "text": "Continue to implement the recommendations of the Truth and Reconciliation Commission, emphasizing the review and amendment of the constitutional provisions which could discriminate against women, in particular paragraph 4 of article 27 of the Constitution", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Fully cooperate with the Independent International Commission of Inquiry established under Human Rights Council resolution S-17/1", - "values": [ - "4 - General action" - ] - }, - { - "text": "That Penal Code articles 301 and 318 be revised or abolished ", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Consider adopting a strategy for post-primary and -secondary level education for girls", - "values": [ - "3 - Considering action" - ] - }, - { - "text": "Allow unrestricted access to journalists, humanitarian workers and the Office of the High Commissioner for Human Rights", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Consider ways forward for the ratification of the International Convention on the Protection of the Rights of All Migrant Workers and Members of Their Families", - "values": [ - "3 - Considering action" - ] - }, - { - "text": "Develop a national strategy to combat trafficking of women and children, and prohibit and criminalize child exploitation and prostitution ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Provide sufficient resources and establish mechanisms for monitoring and assessing the implementation of its action plans on children\u2019s rights", - "values": [ - "4 - General action" - ] - }, - { - "text": "Accelerate the process of drafting and ratification of the law on victims' reparations as well as the establishment of the memorial institution as per the National Parliament action plan", - "values": [ - "4 - General action" - ] - }, - { - "text": "Continue its efforts to improve detention conditions, especially those that aim at addressing the problem of overcrowding ", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Engage actively to implement treaty body recommendations", - "values": [ - "4 - General action" - ] - }, - { - "text": "Continue to strengthen its social policies so as to increase the living conditions of its people, especially of the most needed, with the international community solidarity ", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "End all recruitment and use of children by military groups ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Ensure the supply of drinkable water for all the people of the Kingdom", - "values": [ - "4 - General action" - ] - }, - { - "text": "Extend a standing invitation to the United Nations human rights special procedures ", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Speed up the adoption by the Congress of the bill on family protection and ensure that this project protect the victims of violence and punish perpetrators. Establish training mechanisms on violence against women for police officers, lawyers and judges ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Pursue its policy of reform towards a fully independent judicial system", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Adopt a rights-based approach to its forthcoming Emissions Reduction Plan", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Increase efforts to combat trafficking in persons, particularly to protect women and children ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Ensure effective application of gender equality legislation and the implementation of policy measures to achieve equality between men and women", - "values": [ - "4 - General action" - ] - }, - { - "text": "Extend an open and standing invitation to all the special procedures", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Strengthen other efforts already in practice which provide life-saving assistance for migrants and initiate the new Asylum, Migration and Integration Fund 2014-2020", - "values": [ - "4 - General action" - ] - }, - { - "text": "Reinforce the effective protection of the elderly people", - "values": [ - "4 - General action" - ] - }, - { - "text": "Bring official development assistance up to the internationally committed 0.7% of GNI", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Consider lifting reservations to a number of ICCPR articles ", - "values": [ - "3 - Considering action" - ] - }, - { - "text": "Ensure the Office of the Ombudsperson is sufficiently resourced to carry out anti-discrimination functions ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Ratify the Protocol to Prevent, Suppress and Punish Trafficking in Persons, Especially Women and Children (the Palermo Protocol)", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Strengthen technical cooperation with United Nations organizations to help address domestic and sexual violence issues, in particular violence against women and girls, and to ensure perpetrators are brought to justice", - "values": [ - "4 - General action" - ] - }, - { - "text": "Continue efforts to improve the status of women and promote gender equality at all levels, thereby enhancing women\u2019s contribution to the development process", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Incorporate into its legislation a definition of discrimination against women and the principle of equality between women and men, in accordance with CEDAW ", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "End the discrimination against persons of African descent", - "values": [ - "4 - General action" - ] - }, - { - "text": "Continue to develop the capacity of special institutions that take care of persons with disabilities, including those health and education institutions", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Continue to cooperate with the Commission on Human Rights in South Sudan", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Fully align its national legislation with the Rome Statute of the ICC, including by incorporating provisions to investigate and prosecute perpetrators of genocide, crimes against humanity and war crimes effectively before its national courts, and to ratify the Kampala Amendments to the Rome Statute of the ICC", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Continue to promote and enhance human rights education in the country ", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Adopt a national programme of action on the fight against corruption", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "That the services of the Children's Houses be available and accessible to all children up to the age of 18, and the due process of law be strengthened for victimized children by ensuring that they are interviewed within the 14-day statutory deadline ", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "That the Federal authorities take a closer interest in ensuring that the concerns of irregular migration are handled at the cantonal levels with similar empathy, in a manner consistent with the spirit of international human rights and humanitarian law", - "values": [ - "4 - General action" - ] - }, - { - "text": "Investigate all cases of xenophobic violence and attacks against migrants", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Adopt and implement the bill for the protection of women against domestic violence, mentioned in its national report, in order to criminalize domestic violence, and implement concrete measures to punish the aggressors", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Continue efforts in strengthening police-community relations", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Take the necessary measures to fight torture more effectively", - "values": [ - "4 - General action" - ] - }, - { - "text": "Continue the programme of the provision of quality education including new investments in the development of education ", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Recommended that the National Commission for Reparation and Reconciliation and the Working Group on Historical Memory intensify their work to fully clarify past crimes and give voice to victims.", - "values": [ - "4 - General action" - ] - }, - { - "text": "Concentrate on the implementation of the international human rights treaties that have been ratified by the country ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Continue its efforts combating hate crime and glorification of criminals ", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Take further measures to guarantee the right to freedom of expression, the right of peaceful assembly, and the right to freedom of association ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Promote the laws on freedom of the press and of expression", - "values": [ - "4 - General action" - ] - }, - { - "text": "Continue its positive actions for further promoting the rights of disabled people", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Review current prison safety and conditions and consider developing an action plan to address increases in self-harm and suicide as well as overcrowding in prisons in the United Kingdom", - "values": [ - "3 - Considering action" - ] - }, - { - "text": "Consider ratifying the Optional Protocol to the Convention on the Elimination of All Forms of Discrimination against Women", - "values": [ - "3 - Considering action" - ] - }, - { - "text": "Cooperate with the investigations and comply with the recommendations of the International Criminal Court in line with the Security Council", - "values": [ - "4 - General action" - ] - }, - { - "text": "Develop necessary institutional infrastructure to promote mutual understanding, tolerance and interreligious dialogue in Maldivian society to contribute to addressing religious extremism and strengthening cultural diversity", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Put an end to the widespread gender discrimination which particularly affects girls living in rural areas", - "values": [ - "4 - General action" - ] - }, - { - "text": "Continue ongoing reforms in the field of justice and criminal procedure with a view to an in-depth review of the system of substitute detention (daiyô kangoku)", - "values": [ - "3 - Considering action" - ] - }, - { - "text": "Enact legislation to recognize lesbian, gay, bisexual, transgender and intersex people\u2019s equal rights to enter into marriage", - "values": [ - "4 - General action" - ] - }, - { - "text": "Continue to increase its efforts to prevent discrimination and violence against women", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Continue providing assistance to IDP returnees in particular with housing, livelihoods and economic empowerment", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Continue to take steps to enhance women empowerment", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Continue to take a comprehensive approach through its law and justice, civil society and health programs to address the high incidence of domestic violence, particularly in strengthening women's access to the formal justice system ", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Reduce to the minimum possible the administrative detention of migrants, asylum seekers and refugees and only employ such measures in exceptional cases ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Revise its current legislation regarding distribution of property upon divorce in order to correct their inconsistencies with the CEDAW Convention, and in particular the law on alimony so as to take into accounts the situation of divorced women with children ", - "values": [ - "3 - Considering action" - ] - }, - { - "text": "Implement fully all recommendations made to Bahrain by the United Nations mandate holders including the immediate end of violence and release of all political prisoners and ending impunity thus bringing perpetrators to justice ", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Take all necessary steps to eliminate human trafficking ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Fully cooperate with the International Criminal Court and fully align its national legislation with the obligations under the Rome Statute and definitions of crimes and principles ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Strengthen its efforts on gender issues.", - "values": [ - "4 - General action" - ] - }, - { - "text": "Continue its efforts to ratify CPED ", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Take measures in order to fight against impunity in torture and ill- treatment, especially in cases of police brutality and excessive use of force", - "values": [ - "4 - General action" - ] - }, - { - "text": "Respect the principles and standards provided by the Council of Europe Convention on preventing and combating violence against women and domestic violence, even prior to its ratification and entry into force ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Implement the recommendations made by the Special Rapporteur on the rights of human right defenders following her visit in 2011, with particular emphasis on recommendations that concern defenders of women's and children's rights, defenders of minorities rights, including Dalits and Adavasi, and right to information activists.", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Strengthen policies and measures aimed at the economic empowerment of the rural population and ensure their access to health-care services, education and social services ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Accept the visit request by the Special Rapporteur on extreme poverty and human rights, in particular with a view to creating necessary institutional capacities to strengthen cooperation with the bodies of the international system for the human rights protection", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Take all appropriate measures to combat prejudices and negative stereotypes, which may result in racial discrimination or incitement to racial hatred ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Take necessary steps to prevent the incidence of acts of violence with racist and xenophobic undertones by security agents against foreigners, immigrants and asylum-seekers, and to bring to justice the perpetrators of such acts", - "values": [ - "4 - General action" - ] - }, - { - "text": "Decriminalize same-sex sexual relations and adopt measures to put an end to discrimination and violence against lesbian, gay, bisexual, transgender and intersex persons", - "values": [ - "4 - General action" - ] - }, - { - "text": "Speed up the ratification process of the International Convention on the Protection of the Rights of All Migrant Workers and Members of Their Families", - "values": [ - "4 - General action" - ] - }, - { - "text": "Commit to upholding the rule of law and independence of the judiciary", - "values": [ - "4 - General action" - ] - }, - { - "text": "Continue efforts aimed at countering gender stereotypes and discriminative attitudes, as well as at further promotion of gender equality ", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Ratify the Convention against Torture and Other Cruel, Inhuman or Degrading Treatment or Punishment (CAT)", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Establish an independent national human rights body ", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Continue its efforts to eradicate poverty and extreme poverty particularly in rural areas", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Study the possibility to repeal the death penalty", - "values": [ - "3 - Considering action" - ] - }, - { - "text": "Adopt laws to eliminate child, early and forced marriage", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Continue its efforts to strengthen the domestic legal system to protect women and girls and promote greater gender equality ", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Develop a national strategy to prevent and address all forms of violence against children", - "values": [ - "4 - General action" - ] - }, - { - "text": "Continue to promote education and health causes and strengthen the social security system of the country ", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Adopt an approach of non-criminalization of the victims of human trafficking, which provides for compensation for victims and their reintegration into society ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Build with international support the national capacities to fulfil the reporting obligations to treaty bodies", - "values": [ - "4 - General action" - ] - }, - { - "text": "Continue supporting the work of the National Human Rights Institution in line with the Paris Principles, and in collaboration with civil society and other relevant stakeholders, to raise awareness on human rights and conduct more human rights activities in Samoa ", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Address the situation of persons with albinism, assuring them protection against attacks and killings", - "values": [ - "4 - General action" - ] - }, - { - "text": "Adopt a draft law regulating the labour conditions of domestic workers", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Ratify the Optional Protocol to CRC on the sale of children, child prostitution and child pornography", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Comply with the recommendations of the independent expert on allowing all political parties to carry out their political activities without undue restrictions.", - "values": [ - "4 - General action" - ] - }, - { - "text": "Take effective measures to protect the right to freedom of religion or belief", - "values": [ - "4 - General action" - ] - }, - { - "text": "Promote voter awareness and participation, and ensure free and fair elections, as these conditions are equally important on the local as on the national level ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Enhance its cooperation with the mechanisms of the Human Rights Council and OHCHR ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Ensure that national legislation conforms to international human rights standards on non-discrimination, particularly concerning sexual orientation and gender identity, gender and racial discrimination", - "values": [ - "4 - General action" - ] - }, - { - "text": "Carry out an immediate and independent investigation into the events in Odessa in May 2014 and bring those responsible to justice", - "values": [ - "4 - General action" - ] - }, - { - "text": "Enhance protection of children from abuse, including prostitution and child pornography ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Ratify the main international human rights treaties whose ratification is still pending, like the Optional Protocols of CRC and CEDAW", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Strengthen actions to ensure the effective implementation of laws against discrimination, in particular discrimination based on sexual orientation", - "values": [ - "4 - General action" - ] - }, - { - "text": "Implement the recommendations made by the European Committee for the Prevention of Torture and Inhuman or Degrading Treatment or Punishment in its September 2010 report, to improve the conditions of detention in its prisons ", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Strengthen the resources and staffing of the national preventive mechanism in accordance with the Optional Protocol to the Convention against Torture and ensure its independent and effective functioning", - "values": [ - "4 - General action" - ] - }, - { - "text": "Review conditions in prisons, places of detention and other facilities falling within the scope of CAT-OP with a view to ensuring their full compliance with international standards, in particular as to the use of restraints and with regard to juveniles.", - "values": [ - "3 - Considering action" - ] - }, - { - "text": "Adopt and strengthen existing measures to prevent and combat trafficking in women.", - "values": [ - "4 - General action" - ] - }, - { - "text": "Investigate promptly all attacks against journalists and ensure justice and adequate redress for the victims", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Support the teaching of minorities' languages and cultures in minority schools", - "values": [ - "4 - General action" - ] - }, - { - "text": "Specify the respective areas of competence of the various institutions and bodies combating discrimination to ensure the effectiveness of the system for preventing and combating discrimination, as recommended by CERD ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Further strengthen the capacities of the Office of the Human Rights Defender and enhance its cooperation with civil society, in order to enable better protection of human rights in Armenia ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Continue the ongoing process of consolidating democracy and the rule of law in the country", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Pursue its efforts in order to incorporate the provisions of the Convention on the Elimination of All Forms of Discrimination against Women in its national law", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Continue implementing the 2008 recommendations by the Committee on CEDAW on remaining issues, in particular the withdraw of the general reservations to CEDAW ", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Refrain from imposing the death penalty, corporal punishment and life imprisonment for crimes committed by persons under the age of 18", - "values": [ - "4 - General action" - ] - }, - { - "text": "Continue accelerating the improvement of the judicial, police and prison systems in line with international human rights standards", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Armenia reaffirmed its commitment to implement all its obligations towards improving the protection and promotion of human rights in the country. Armenia stands ready to fully cooperate with the Council all UN special procedures, and all actors in the field, as well as at the national or international levels, toward achieving prosperity and full enjoyment of all rights by all the citizens in the country.", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Request cooperation and technical assistance from the international community, including from relevant international bodies, with a view to strengthening national capacities to ratify and implement international conventions to which it is not yet a party, as well as submit pending reports to the human rights treaty bodies ", - "values": [ - "1 - Minimal action" - ] - }, - { - "text": "Intensify measures to improve prison conditions by reducing pretrial detention, guaranteeing fair trial and ensuring access to health and sanitary facilities in order to protect the human rights of all persons in detention", - "values": [ - "4 - General action" - ] - }, - { - "text": "Strengthen efforts to combat and prevent domestic violence, including various forms of violence and sexual abuse against children ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Initiate and implement, with OHCHR's assistance, an action plan for the promotion of human rights in the country ", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Engage in a genuine national dialogue in an open and inclusive manner with all stakeholders, with the aim of effectively addressing the legitimate aspirations and concerns of all the population in a comprehensive and inclusive manner", - "values": [ - "4 - General action" - ] - }, - { - "text": "Strengthen the mechanisms aimed at the advancement of women's rights as well as of their participation in decision-making processes", - "values": [ - "4 - General action" - ] - }, - { - "text": "Continue to pay particular attention to continuing an inclusive process which takes into account all elements of society, and to create favourable conditions, in particular for those living in rural areas, in the framework of the strategic development plan mentioned in paragraph 33 of the national report ", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "The State is also committed to organizing workshops, in cooperation with specialized international organizations, focusing on spreading human rights principles in line with the international conventions ratified by the State.", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Continue the implementation of the plan on the deinstitutionalization and transformation of social welfare homes and on legal persons performing social welfare activities for 2011-2016, with a view to reducing the number of children in institutions", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Work to eliminate traditional practices and repeal laws detrimental to women and girls", - "values": [ - "4 - General action" - ] - }, - { - "text": "Take steps to strengthen the judiciary, by increasing its independence and ensuring compliance with selection and appointment procedures in competitive examinations and working with the Special Rapporteur on the independence of judges and lawyers ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Open television broadcasting frequencies to private providers ", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Do more to address gender mainstreaming in line with the equality policy ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Receive the assistance it requires, in personnel and logistical resources, to develop the health sector in order to reduce the child mortality rate ", - "values": [ - "1 - Minimal action" - ] - }, - { - "text": "Establish an independent commission, supported by international experts as necessary, to investigate the allegations of grave human rights abuses, including murders and extrajudicial killings, allegedly committed by members of the armed forces and the Phantom Squad in the period 2002-2006 ", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Improve school infrastructure in rural areas", - "values": [ - "4 - General action" - ] - }, - { - "text": "Involve civil society, including human rights non-governmental organizations, in the follow-up to this review, especially in addressing gender discrimination and domestic violence ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Adopt measures to create a national human rights institution in conformity with the Paris Principles", - "values": [ - "4 - General action" - ] - }, - { - "text": "Abolish the procedure whereby all children must undertake the final year of schooling in a military training camp and fully respect the Optional Protocol to the Convention on the Rights of the Child on the involvement of children in armed conflict ", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Give particular attention to training judges and police officers and improve care structures for children, with a view to improve its system of protection of children and justice for minors, and with this objective request support from the international community in general and technical assistance from OHCHR in particular.", - "values": [ - "4 - General action" - ] - }, - { - "text": "Take comprehensive action in order to achieve full equality for women, and to especially repeal section 15(4) of the Constitution and to review customary law in order to eliminate discriminatory elements such as an inheritance rule providing for male-only inheritance of the family home", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Ensure that safe legal abortions are available and accessible in practice, in keeping with the 1993 Act on Family Planning and consistent with Poland\u2019s obligations under articles 12 and 16 of the Convention on the Elimination of All Forms of Discrimination against Women", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Eliminate provisions in national legislation that discriminate against women and other groups such as lesbian, gay, bisexual, transgender and intersex persons, including revising the section 377 A of the Penal Code", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Take the measures necessary for the amendment of the law on children in accordance with the Convention on the Rights of Persons with Disabilities", - "values": [ - "4 - General action" - ] - }, - { - "text": "Continue to enhance its domestic framework to eliminate violence against women and to promote gender equality ", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Take on board the opinions of the Office for Democratic Institutions and Human Rights of the Organization of Security and Cooperation in Europe and the Venice Commission of the Council of Europe in the organization of the constitutional referendum and parliamentary elections ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Ratify CAT and adjust its national criminal legislation accordingly ", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Continue with efforts to ensure broader access of victims of gender based and domestic violence to justice and regulate clearly their protection as well as improving laws on anti-discrimination and equal opportunities towards the explicit protection of women from multiple forms of discrimination", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Combat the precarious situation of labour and poverty", - "values": [ - "4 - General action" - ] - }, - { - "text": "Consider the question of toughening the criminal liability for trafficking in human beings ", - "values": [ - "3 - Considering action" - ] - }, - { - "text": "Respect international provisions in the area of non-discrimination against homosexuals", - "values": [ - "4 - General action" - ] - }, - { - "text": "Ensure the effective respect of the constitutional prohibition of torture", - "values": [ - "4 - General action" - ] - }, - { - "text": "Continue strengthening its efforts to provide the office of the Ombudsman with sufficient resources to enable it to effectively carry out its tasks", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Consider the possibility of reviewing these practices and also the idea of implementing labour inspections by qualified professionals and with appropriate funding.", - "values": [ - "3 - Considering action" - ] - }, - { - "text": "Consider enacting a specific law to combat trafficking in persons, with emphasis on the protection of the human rights of victims, especially women and children", - "values": [ - "3 - Considering action" - ] - }, - { - "text": "Create a system, to include training for law enforcement, legal professionals and health care personnel, for providing legal and medical aid to survivors of gender based violence, including rape and sexual violence, domestic violence, and female genital mutilation", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Continue deploying efforts for a strategy in favour of gender equality, in particular regarding policies and programmes of the national Government and local authorities", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Ensuring prompt and impartial investigations of allegations of ill-treatment, in accordance with its obligations under the Convention against Torture", - "values": [ - "4 - General action" - ] - }, - { - "text": "That constant protection be provided to indigenous people and their rights over their lands and the preservation of their culture ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Eliminate from legislation the concept of preventive detention on the grounds of threats to public security or property and ensure due process in all detentions", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Accede to and fully align its national legislation with the Rome Statute", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Address the recommendations of the Committee on the Elimination of Discrimination against Women, the Human Rights Committee and the Committee on Economic, Social and Cultural Rights so as to resolve gender inequality, particularly in the field of employment and representation in high-ranking posts, and to eliminate domestic violence.", - "values": [ - "4 - General action" - ] - }, - { - "text": "Consider the repeal of provisions allowing for the death penalty.", - "values": [ - "3 - Considering action" - ] - }, - { - "text": "Take appropriate steps to ensure that the Human Rights and Anti Discrimination Commission functions in compliance with the Paris Principles", - "values": [ - "4 - General action" - ] - }, - { - "text": "Establish a moratorium on the application of the death penalty with a view to its abolition", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Step up efforts to prevent and combat trafficking in persons, in particular women and children", - "values": [ - "4 - General action" - ] - }, - { - "text": "Place high priority on measures aimed at combating violence against women in the family and in society, increase the population's awareness about violence against women as well as strengthen support programs aimed at the elimination of sexual violence and incest, and prostitution as a form of exploitation", - "values": [ - "4 - General action" - ] - }, - { - "text": "Continue organizing thematic meetings, such as the 2009 National Forum on Justice, and whenever appropriate involve civil society as well as other non-governmental stakeholders ", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Run public awareness programs on the harmful consequences of child marriages", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Amend its press law to define the exceptions to article 24 of its Constitution in specific terms and that do not infringe upon freedom of expression", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Review legal provisions relating to the detention of migrants and asylum seekers with a view to guaranteeing the protection and promotion of their human rights, and the strict compliance with applicable international norms", - "values": [ - "3 - Considering action" - ] - }, - { - "text": "Accede to the Convention against Torture and Other Cruel, Inhuman or Degrading Treatment or Punishment", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Redouble efforts to prevent violence against women and take radical measures in the area of criminal legislation with a view to sanctioning very severely all violence against women ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Prioritize access to reproductive health education and contraceptives for adolescent girls, also without parental consent ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Progress towards the abolition of the death penalty.", - "values": [ - "4 - General action" - ] - }, - { - "text": "Confirm its decision to abolish the death penalty in the international framework by ratifying the Second Optional Protocol to the International Covenant to the Civil and Political Rights aimed at abolishing the death penalty", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Consider sharing best practices from its health-care system through relevant United Nations agencies ", - "values": [ - "3 - Considering action" - ] - }, - { - "text": "Sign and ratify the Optional Protocol to the Convention against Torture", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Accede to the Second Optional Protocol to the International Covenant on Civil and Political Rights and abolish definitively death penalty ", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Submit its overdue reports to the Committee against Torture and the Human Rights Committee", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Strengthen education and awareness of human rights at the national level ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Ensure that primary education is entirely free, given the high number of children who do not attend school", - "values": [ - "4 - General action" - ] - }, - { - "text": "Cooperate with the United Nations Special Rapporteur on the situation of human rights in the country by providing unimpeded access to visit and report on the human rights situation throughout the country", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Guarantee the rights of indigenous Americans, and to fully implement the United Nations Declaration on the Rights of Indigenous Peoples ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Continue on its path of cooperation with the special procedures of the Human Rights Council and other relevant regional mechanisms", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Develop institutional mechanisms for the social integration of released persons by strengthening the National Foundation for the Welfare of Prisoners and ex-Prisoners", - "values": [ - "4 - General action" - ] - }, - { - "text": "Proceed with the ratification of the Optional Protocol to the Convention on the Elimination of All Forms of Discrimination against Women", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Take measures to ensure the safety of those who raise a critical voice towards the army or drug trafficking activities in the country. Officials investigating drug trafficking should be protected from pressure and threats from organized crime ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Continue to take effective measures to combat human trafficking", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Amend the News Media Law and the 2014 Printing and Publications Law in compliance with international human rights standards", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Review the provisions governing the operation of military courts in peacetime to comply with international standards.", - "values": [ - "3 - Considering action" - ] - }, - { - "text": "Ratify the ICPPED and modify the legislation accordingly, conduct independent and in-depth investigations on the cases of disappearances, in order to prosecute the perpetrators", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Continue its efforts in combating and preventing discrimination, especially against persons with disabilities, particularly with respect to the rights to education and social assistance", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Take further steps to ensure accountability for perpetrators of trafficking in persons", - "values": [ - "4 - General action" - ] - }, - { - "text": "Redouble its efforts to eliminate the stigmatization of and discrimination against persons, especially children, infected and affected by HIV-AIDS", - "values": [ - "4 - General action" - ] - }, - { - "text": "Undertake measures enabling unrestricted use of Internet to all members of the society", - "values": [ - "4 - General action" - ] - }, - { - "text": "Fulfil international obligations under the International Covenant on Civil and Political Rights and the Vienna Convention on Consular Relations, including consular access for foreign nationals without discriminations", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Ensure the participation of all political parties, civil society organizations and community leaders in the work of the Dialogue, Truth and Reconciliation Commission", - "values": [ - "4 - General action" - ] - }, - { - "text": "Consider, in the area of administration of justice, the protection of children and adolescents in juvenile detention centres ", - "values": [ - "3 - Considering action" - ] - }, - { - "text": "Take appropriate measures to establish equal choice of jurisdiction between Sharia courts and family courts", - "values": [ - "4 - General action" - ] - }, - { - "text": "Continue its efforts to develop a national policy for human rights and to finalize the establishment of an independent national human rights institution in accordance with the Paris Principles", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Take additional measures on social, economic and legal protection to combat child labour", - "values": [ - "4 - General action" - ] - }, - { - "text": "Ensure that the legal framework and enforcement of laws, including the Cybercrimes Act and other laws affecting members of the media, are fully consistent with the human rights and fundamental freedoms in Tanzania's Constitution and the Universal Declaration of Human Rights ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Ratify the International Convention on the Protection of the Rights of All Migrant Workers and Members of their Families. ", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Ensure that the fight against crime strictly respects international standards", - "values": [ - "4 - General action" - ] - }, - { - "text": "Continue to seriously consider setting up a national human rights institution ", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Tailor and design tuition in special schools on the basis of the child's individual needs rather than ethnicity", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Continue its efforts to strengthen the policies, programs and mechanism for enhancing women rights ", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Enhance efforts to prevent and combat violence against women and girls, in particular sexual abuse, domestic violence and femicide, in accordance with the recommendations made by the Committee Against Torture", - "values": [ - "4 - General action" - ] - }, - { - "text": "Ensure indigenous people\u2019s participation in decision-making at all levels, in all matters affecting them, including conservation efforts", - "values": [ - "4 - General action" - ] - }, - { - "text": "Adopt legislation against discrimination", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Urge the National Assembly to adopt the draft legislation on trafficking in persons", - "values": [ - "4 - General action" - ] - }, - { - "text": "Combat frequent discrimination on the grounds of race, ethnicity, nationality and religion and strengthen efforts to prevent discriminatory stereotypes and hate speech targeted at Muslims, migrants, refugees and asylum seekers", - "values": [ - "4 - General action" - ] - }, - { - "text": "Establish a moratorium on executions with a view to abolishing death penalty entirely, especially with regard to juvenile offenders ", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Take measures to address the problem of violence against children and ensure there is a national system for receiving, monitoring and investigating complaints ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Consider extending a standing invitation to all special procedures of the Human Rights Council.", - "values": [ - "3 - Considering action" - ] - }, - { - "text": "Take concrete measures in order to transform the de facto moratorium on the death penalty into a de jure moratorium on execution and sentencing", - "values": [ - "4 - General action" - ] - }, - { - "text": "Continue to work constructively to implement the laws, decrees and resolutions that have been approved to combat violence against women and girls and to guarantee access to justice for victims of sexual violence ", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Continue to vigorously investigate and prosecute other trafficking offenses and punish perpetrators of sex trafficking", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Continue the efforts at strengthening its national institutions for the promotion and protection of human rights and encourage awareness among its people of the importance of fairness and justice", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Strengthen the national framework for the protection of human rights, including by the adoption of legislation especially for the protection of women and children.", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Ensure the preservation of the cultural and religious heritage in the occupied State of Palestine, particularly in the Holy City of Jerusalem", - "values": [ - "4 - General action" - ] - }, - { - "text": "Redouble its efforts for promotion and protection of the rights of vulnerable persons ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Adopt more effective and strict good governance policies in order to ensure prosperity for the Afghan people ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Fully implement the commitments agreed to in Human Rights Council resolution 30/1", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Consider measures to prevent tourist marriages with a view to combating them as considered by the CEDAW Committee.", - "values": [ - "3 - Considering action" - ] - }, - { - "text": "Increase efforts to combat trafficking against women, and try to eliminate women's vulnerability to exploitation and traffickers ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Continue human rights training for local officials, police commissioners, wardens and directors of Judicial Bureaus", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Carry out, with the Special Procedures of the Council, an independent investigation of cases of disappearances and murders of Aboriginal women and girls ", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Accept the full implementation of the provisions of the CAT and the ICCRP in overseas territories under its control", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Abolish the mandatory minimum sentencing of juvenile offenders", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Take all necessary measures to review its domestic law and ensure that children born outside marriage are registered and enjoy their human rights on an equal condition with others", - "values": [ - "4 - General action" - ] - }, - { - "text": "Ensure the independence and credibility of the Truth and Reconciliation Commission, by consulting with affected groups", - "values": [ - "4 - General action" - ] - }, - { - "text": "Allow all persons of foreign origin who have been abducted, as well as their descendants, to return freely to their countries of origin", - "values": [ - "4 - General action" - ] - }, - { - "text": "Continue leading the international dialogue in an effort to reduce the effects of climate change and to adopt effective adaptation measures", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Take appropriate measures to develop an environment conducive to the empowerment of civil society", - "values": [ - "4 - General action" - ] - }, - { - "text": "Ratify, without limiting reservations, the Convention on the Elimination of All Forms of Discrimination against Women and its Optional Protocol ", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Guarantee international humanitarian organizations and human rights monitors immediate access to political prisons and other camps, as well as to their surviving victims, in order to provide primary care", - "values": [ - "4 - General action" - ] - }, - { - "text": "Sign, ratify and implement the provisions of the European Charter for Regional or Minority Languages", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Take additional measures to eliminate all forms of discrimination against women and promote the status of women and their participation in all State institutions ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Continue its cooperation with ILO and other relevant mechanisms to ensure full respect for the rights of the child consistent with international law, particularly human rights law ", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Step up cooperation with the United Nations special procedures by responding positively to pending visit requests", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Redouble efforts aimed at stopping the recruitment and use of children in armed conflict", - "values": [ - "4 - General action" - ] - }, - { - "text": "Continue to promote the rights of women and girls, the elderly and children", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Ensure a human rights culture, inter alia, by strengthening the antidiscriminatory legislative framework and ensuring its effective implementation ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Establish an institutional mechanism for further strengthening the protection of children", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Consider issuing a standing invitation to special procedures for a visit to the country ", - "values": [ - "3 - Considering action" - ] - }, - { - "text": "Consider ratifying CRPD and the Optional Protocol thereto which would result in a higher level of cooperation with international human rights mechanisms, ensuring better safeguards for the rights of people with disabilities", - "values": [ - "3 - Considering action" - ] - }, - { - "text": "Undertake a comprehensive set of measures to combat racism and racial discrimination ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Share best practices concerning training of law enforcement officials in human rights ", - "values": [ - "1 - Minimal action" - ] - }, - { - "text": "Consider the establishment of a, or strengthen the existing national mechanism for coordination, implementation, reporting and follow-up, in line with elements arising from good practices identified in the 2016 OHCHR guide on national mechanisms for reporting and follow-up", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "As a follow-up to the recommendations in paragraphs 106.10 and 106.39 from the first cycle and paragraph 122.77 from the second cycle, establish a systematic consultation and follow-up mechanism with civil society and non-governmental organizations on the implementation of recommendations formulated in the framework of the universal periodic review", - "values": [ - "4 - General action" - ] - }, - { - "text": "Continue efforts through the Alliance of Civilizations and other initiatives ", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "To publish regularly on the website of the Ministry for Foreign and European Affairs the final recommendations of human rights treaty bodies", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Take stricter measures to condemn and ensure accountability for all manifestations of intolerance, including in political discourse and on the Internet, and punish those who are involved in it", - "values": [ - "4 - General action" - ] - }, - { - "text": "Make efforts to include in its legislation a prohibition of all forms of corporal punishment of children ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Remove all restrictions of freedom of association and assembly, including by refraining from penalizing peaceful political opposition activities, remove restrictions on independent media, including international journalists, and end harassment, religious discrimination, arbitrary arrest, torture, and imprisonment of peaceful political activities by ethnic minorities ", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Ensure access of Bedouin populations to basic public services, such as sanitation, electricity and water.", - "values": [ - "4 - General action" - ] - }, - { - "text": "Make every effort to submit the reports to the treaty bodies in a timely fashion, and increase its level of response to the questionnaires sent by special procedures.", - "values": [ - "4 - General action" - ] - }, - { - "text": "Combat discriminatory behaviour by members of the law enforcement forces and ensure that any racially-motivated misconduct is effectively investigated and adequately punished", - "values": [ - "4 - General action" - ] - }, - { - "text": "Increase its efforts to fight human trafficking", - "values": [ - "4 - General action" - ] - }, - { - "text": "Pay particular attention to refugees especially during placement and the detention of asylum seekers and ensure that account is taken of the principle of the best interests of the rights of the child in any decision relating to asylum seeking minors ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Reinstate the moratorium on the death penalty, as a first step towards its complete abolition and accession to the Second Optional Protocol to the International Covenant on Civil and Political Rights", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Proceed with its intention to establish an independent national human rights commission.", - "values": [ - "4 - General action" - ] - }, - { - "text": "Increase dialogue, consultations and cooperation with the international community, relevant United Nations bodies, United Nations human rights mechanisms and other stakeholders to enhance mutual understanding and further improve the human rights situation in the country", - "values": [ - "4 - General action" - ] - }, - { - "text": "Repeal or amend all discriminatory provisions against women and girls in national legislation", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Fully align its national legislation with all obligations under the Rome Statute of the International Criminal Court, including by incorporating the provisions to cooperate fully and promptly with the ICC", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Adopt the draft law on protection of women from domestic violence as soon as possible, and ensure its effective implementation", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Continue with its efforts towards the achievement of MDGs, in particular in the area of health of the population", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Develop public policies for the effective implementation of the Law on discrimination based on caste and untouchability", - "values": [ - "4 - General action" - ] - }, - { - "text": "Extend a standing invitation to the United Nations Special Rapporteurs and normalize its relations and cooperation with United Nations Human Rights mechanisms", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Accede to the Optional Protocol to the Convention on the Rights of the Child on the involvement of children in armed conflict", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Adopt a legislative framework to fight racism and discrimination, and implement educational, social and economic public policies to prevent discrimination", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Explore options to accede to the Rome Statute of the ICC", - "values": [ - "3 - Considering action" - ] - }, - { - "text": "Ensure minimum reception standards in Federal and Cantonal reception centres across the country", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Consider adopting specific laws on combating violence against women, both at home and in the work place", - "values": [ - "3 - Considering action" - ] - }, - { - "text": "Repeal the Prevention of Terrorism Act and enforce an immediate moratorium on its use, ensure that the draft Counter-Terrorism Act is compliant with international human rights standards", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Step up efforts to eliminate discrimination against women and girls, including against rural and indigenous women, improve women's access to education and guarantee their right to health, including the sexual and reproductive rights ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Advance towards the ratification of the Convention against Torture and Other Cruel, Inhuman or Degrading Treatment or Punishment", - "values": [ - "4 - General action" - ] - }, - { - "text": "Thoroughly investigate allegations of excessive use of force by police officers, and in this vein, ensure that law enforcement officials have the appropriate human rights training", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Adopt a comprehensive anti-discrimination law, providing a definition of direct and indirect discrimination", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Set up a mechanism to carry out the repatriation of funds of illicit origin and illegally acquired assets to their countries of origin and to ensure cooperation with the requesting states ", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Step up efforts to combat trafficking in persons, including: continuing the practice of developing the national action plan and other strategies, considering the possibility of toughening criminal liability for crimes connected to human trafficking, studying the possibility of inviting the Special Rapporteur on Trafficking in Persons, especially women and children, to visit the country", - "values": [ - "4 - General action" - ] - }, - { - "text": "Consider ratifying the ICCPR-OP2, aiming at the abolition of the death penalty", - "values": [ - "3 - Considering action" - ] - }, - { - "text": "Continue efforts towards the ratification of the International Convention for the Protection of All Persons from Enforced Disappearance as well as for those main international human rights instruments, to which the country is not yet party ", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Continue its efforts to protect the human rights of foreigners - including refugees- and prevent discrimination against them in both law and practice", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Review the anti-terrorist legislation in order to bring it in line with international standards", - "values": [ - "3 - Considering action" - ] - }, - { - "text": "Study and start implementing the recommendations included in the report of the COI", - "values": [ - "3 - Considering action" - ] - }, - { - "text": "Provide protection of the family as the natural and fundamental unit of the society", - "values": [ - "4 - General action" - ] - }, - { - "text": "The delegation stated that it wished to restate the commitment of Equatorial Guinea to continue to cooperate with the different bodies of the Human Rights Council, the High Commissioner for Human Rights, and all people with good will that help in making efforts to improve in human rights affairs in the country.", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Ratify the Protocol to Prevent, Suppress and Punish Trafficking in Persons, Especially Women and Children, supplementing the United Nations Convention against Transnational Organized Crime and the Convention on Preventing and Combating Trafficking in Women and Children for Prostitution of the South Asian Association for Regional Cooperation", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Ensure that all individuals who have been detained and charged with an offence are given a fair and impartial trial, while ensuring the independence of the judiciary", - "values": [ - "4 - General action" - ] - }, - { - "text": "Intensify efforts to improve funding and capacity building for the National Human Rights Commission", - "values": [ - "4 - General action" - ] - }, - { - "text": "Continue its efforts to develop programmes to support democracy and protect human rights", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Continue to reinforce its national programmes in the area of education and to seek the necessary technical and financial assistance to accompany it in its integration of human rights education and training into its programmes", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Comply with its legal obligations concerning the rights of minorities and guarantee the civil, political, economic, social and cultural rights of persons belonging to the Kurdish minority", - "values": [ - "4 - General action" - ] - }, - { - "text": "Ratify the International Convention on the Elimination of All Forms of Racial Discrimination, signed in 1973 ", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Increase the provision of legal advice to indigenous peoples with due translation services reaching especially indigenous women of the most remote communities ", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Set up a programme of action for sexual education for all, starting from the level of elementary schooling", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Share its experience and good practice in guaranteeing the right to education for all Cubans and in the promotion and protection of the right to health, which has yielded encouraging and positive results, particularly taken into account their under-development status, and to continue cooperation programmes that provide health professionals and technicians to developing countries, and education opportunities in Cuba for students from the developing world", - "values": [ - "1 - Minimal action" - ] - }, - { - "text": "Accede to the OP-CAT and to establish its national preventive mechanism accordingly", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Continue efforts to eliminate discrimination against women", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Turkey reiterated its commitment to provide a mid-term report in two years time.", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Consider the possibility of abolishing the death penalty ", - "values": [ - "3 - Considering action" - ] - }, - { - "text": "Conduct thorough, impartial, and timely investigations into all allegations of police and judicial misconduct of corruption ", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Protect the human rights of all individuals, including LGBT individuals, and take appropriate steps to help ensure that protection is provided to the victim and perpetrators are identified and prosecuted ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Take further structural measures and provide adequate resources to protect women and children from domestic violence.", - "values": [ - "4 - General action" - ] - }, - { - "text": "Finland is committed to making the UPR recommendations an integral part of the Government's comprehensive human rights policy report to be submitted to Parliament in Spring 2009. The proactive targets to be set in the report will also address these recommendations", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Immediately set up civilian structures in those areas that come under Transitional Federal Government's control to ensure the protection of human Rights ", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Take necessary measures to eliminate worst forms of child labour, specifically in mining, forced begging, and commercial sexual exploitation", - "values": [ - "4 - General action" - ] - }, - { - "text": "Fully implement the Domestic Violence Act", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Implement further necessary legislative and administrative reforms in order to ensure that all trials take place according to international standards for a fair, independent and impartial trial, including those that involve persons accused of religious extremism or members of unregistered organizations ", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Pursue its positive efforts for the promotion and protection of the rights of women", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Provide and improve training programmes on human rights for the judiciary, law enforcement personnel and lawyers ", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Strengthen the democratic control of the defence sector, in particular suspend the involvement of members of the armed forces in economic activities, in order to ensure guarantee of property of citizens, as well as their livelihoods", - "values": [ - "4 - General action" - ] - }, - { - "text": "Ratify the Rome Statute of the International Criminal Court, including accession to the Agreement on Privileges and Immunities ", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Continue its efforts to reduce the maternal and child mortality rates. ", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Draw up a national plan for children to ensure systematic efficient implementation of the new legislation introduced in this area", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Strengthen and improve social safety networks ", - "values": [ - "4 - General action" - ] - }, - { - "text": "As a party to the Convention on the Rights of the Child, fully align its legislation with international obligations under the convention ", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Develop and implement a National Action Plan for human rights, in order to framework a systematic approach to the promotion and the protection of human rights in the country", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Cease attacks against civilians and the United Nations premises and personnel", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Pursue efforts to implement the Plurinational Plan for Infants, Children and Adolescents 2014-2025", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Take measures to guarantee and protect freedom of expression in conformity with international standards", - "values": [ - "4 - General action" - ] - }, - { - "text": "Consider reinforcing the legal framework for the prevention of violence against women ", - "values": [ - "3 - Considering action" - ] - }, - { - "text": "Continue to prioritize the allocation of financial and human resources to the health sector, focusing on preventive measures and treatment ", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Implement effective and comprehensive reform of the penitentiary system ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Establish a comprehensive system for recording and monitoring racist crimes committed in Austria", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Step up efforts to accelerate the ratification of, among others, the Rome Statute of the International Criminal Court ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Amend legislation infringing freedom of expression, in accordance with the Gambia's international human rights obligations", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Ensure nationwide, systematic and regular collection of disaggregated data on all forms of slavery", - "values": [ - "4 - General action" - ] - }, - { - "text": "Strengthen the Criminal Code and structures established to fight against violence and discrimination against women, in particular the Office of the Gender Equality and Equal Treatment Commissioner", - "values": [ - "4 - General action" - ] - }, - { - "text": "Civil society be actively involved in the further universal periodic review process of Canada, in a thorough and timely manner.", - "values": [ - "4 - General action" - ] - }, - { - "text": "Continue taking actions to curb racial profiling by law enforcement agencies", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Greenland and Faroe Islands to ratify the following international instruments: Optional Protocol to the Convention on the Rights of the Child on the sale of children, child prostitution and child pornography, Protocol to Prevent, Suppress and Punish Trafficking in Persons, Especially Women and Children, and ensure their application ", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Take all the necessary measures for the establishment of a moratorium on death penalty in Iraq, as a first step towards its abolition", - "values": [ - "4 - General action" - ] - }, - { - "text": "Continue to include human rights in school curriculums", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Improve its prison environment as part of a wider effort to protect and promote the human rights of prisoners", - "values": [ - "4 - General action" - ] - }, - { - "text": "An inter-ministerial committee was established in 2002, the mandate of the committee was to facilitate treaty implementation, particularly reporting as required by the various international treaties. Due to capacity constraints both financial and human, this Committee has not delivered on its mandate effectively. The Government has recently made a commitment to strengthening the capacity of the committee and to this end is being assisted by United Nations Development Programme (UNDP)", - "values": [ - "4 - General action" - ] - }, - { - "text": "Repeal remaining laws and regulations that discriminate against women and girls or amend them in line with international human rights standards", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Release all political prisoners and address torture and prisoner welfare - including by allowing independent monitoring of prisons ", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "In light of what is provided in article 7 of the Convention on the Rights of the Child and with the support of the international community, improve the system of birth registration including by intensifying efforts to sensitize and mobilize public opinion regarding the advantages of birth registration in the process of establishing children's identity and the enjoyment of their rights ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Strengthen legal and institutional measures to prevent and suppress manifestations of racism, xenophobia and intolerance ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Withdraw reservations to all international human rights treaties to which it is a party, and consider the ratification of the outstanding human rights treaties", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Identify lessons learned and develop a new action plan to reduce the incidence of the heinous practice of female genital mutilation/cutting", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Malaysia reaffirms its commitment to continue cooperating with the Council's Special Procedures including by accepting official visits.", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Consider applying the Yogyakarta Principles on the Application of International Human Rights Law in relation to Sexual Orientation and Gender Identity as a guide to assist in policy development.", - "values": [ - "3 - Considering action" - ] - }, - { - "text": "Consider ratifying the Convention on the Rights of Persons with Disabilities", - "values": [ - "3 - Considering action" - ] - }, - { - "text": "Promote strategies for climate changes mitigation and adaptation to their effects, and disseminate them through school programmes", - "values": [ - "4 - General action" - ] - }, - { - "text": "Ratify the Optional Protocol to the Convention against Torture and set up a national preventive mechanism to prevent torture ", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Consider ratifying the Optional Protocol to the Convention against Torture and Other Cruel, Inhuman or Degrading Treatment or Punishment and establish a National Preventive Mechanism", - "values": [ - "3 - Considering action" - ] - }, - { - "text": "Pursue the fight against the impunity of the perpetrators of sexual violence against women and young girls ", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Continue to raise awareness of human rights among all groups, particularly the younger generations, through education, training and media communications", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Take necessary measures to ensure the registration and enrolment of children born out of wedlock", - "values": [ - "4 - General action" - ] - }, - { - "text": "Develop a comprehensive human rights strategy", - "values": [ - "4 - General action" - ] - }, - { - "text": "Continue the process of accession to the core human rights instruments ", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Hold a transparent and inclusive Constitutional reform process and referendum by ensuring that consultative bodies, such as National and Sector Group Convention, are composed of a representative balance of civil society and government stakeholders", - "values": [ - "4 - General action" - ] - }, - { - "text": "Adopt administrative and legal measures to pursue gender equality in decision-making and elected positions", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Ensure respect for freedoms of expression, peaceful assembly, and association by amending aspects of decrees such as the Public Order Act Amendment Decree, the Political Parties Decree, and the Media Industry Development Decree, that unduly restrict fundamental freedoms", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Revise current labour laws", - "values": [ - "3 - Considering action" - ] - }, - { - "text": "Continue to cooperate with other countries in the health sector", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Investigate, prosecute and punish all hate crimes against visible minorities, including Muslims, Afro-Swedes, Roma and Jews", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Provide the Ombudsman institution with necessary resources to carry out its mandate in an effective way", - "values": [ - "4 - General action" - ] - }, - { - "text": "Strengthen the role of the Family Violence Support Unit of the Police and provide all police forces with adequate training on how to treat cases of violence against women and domestic violence and how to provide support to victims", - "values": [ - "4 - General action" - ] - }, - { - "text": "Increase efforts to ban corporal punishment from schools ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Ensure, in close cooperation with "Puntland" and "Somaliland", that those responsible for atrocities are brought to justice in the framework of fair processes", - "values": [ - "4 - General action" - ] - }, - { - "text": "In compliance with its international obligations, duly carry out, without delay, in an independent manner and respecting fair trial guarantees, investigations into the human rights violations, prosecute perpetrators, and compensate victims, in order to end impunity for crimes committed as a result of the coup d'etat", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Continue its national reforms with an aim to ratify the ICCPR", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Take effective measures to prevent child and forced marriages ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Strengthen the monitoring mechanism at the federal and district level to ensure that the programmes on poverty eradication reach the intended target group.", - "values": [ - "4 - General action" - ] - }, - { - "text": "Ensure that the principle of equality between men and women is clearly formulated in the new Constitution and apply it in practice through concrete measures ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Introduce in the Constitution the prohibition on gender and sex based discrimination similar to that relating to racial or religious discrimination ", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Ensure that human rights education and training addresses also the rights of the child and women's rights in a comprehensive and systematic way", - "values": [ - "4 - General action" - ] - }, - { - "text": "Stop taking any penal actions against Palestinian children in military courts and halt detention of all children", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Allow access without restrictions for United Nations humanitarian assistance and independent humanitarian organizations", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Sign and ratify the Optional Protocol of the Convention against Torture and other cruel, inhuman or degrading treatment ", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Adopt a moratorium on executions as a first step to the abolition of the death penalty ", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Ensure compliance of domestic laws with the right to access to information and freedom of expression ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Adopt measures that guarantee respect for the rights of lesbian, gay, bisexual, transgender and intersex persons, by investigating and punishing acts of violence and discrimination as well as reviewing all legislation that may affect their rights", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Bring all provisions concerning racial discrimination into full compliance with the International Convention on the Elimination of All Forms of Racial Discrimination", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Continue strengthening its sensible education programmes, as a key element for the development of the country ", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Enhance the fight against corruption", - "values": [ - "4 - General action" - ] - }, - { - "text": "Continue its efforts to expand access to safe drinking water and sanitation by ensuring better coordination and coherence in the implementation of initiatives aimed at expanding access to water and sanitation in rural areas", - "values": [ - "4 - General action" - ] - }, - { - "text": "Request technical assistance from the international community in order to identify useful and good practices for the realization of economic and social rights ", - "values": [ - "1 - Minimal action" - ] - }, - { - "text": "Strengthen the integration of the gender perspective in the formulation and implementation of policies", - "values": [ - "4 - General action" - ] - }, - { - "text": "Take further steps to eliminate harmful practices, and to abolish child, early and forced marriages", - "values": [ - "4 - General action" - ] - }, - { - "text": "Continue the campaign for raising awareness of anti-discrimination laws and relevant complaint mechanisms", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Continue the effective implementation of the action plan on employment for minority groups to achieve the set targets", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Review the discriminatory linguistic policy, including the work of the Language Inspectorates whose targets are mainly teachers of Russian language schools and kindergartens", - "values": [ - "3 - Considering action" - ] - }, - { - "text": "Implement necessary measures to ensure adequate labour conditions and to combat human trafficking ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Make progress in harmonizing its legislation on the rights of women, non-discrimination and gender equality", - "values": [ - "4 - General action" - ] - }, - { - "text": "Put an end to all human rights violations", - "values": [ - "4 - General action" - ] - }, - { - "text": "Expedite enactment of planned legislation to establish a Human Rights Commission", - "values": [ - "4 - General action" - ] - }, - { - "text": "Become party to and implement the International Covenant on Economic, Social and Cultural Rights and the First Optional Protocol to the International Covenant on Civil and Political Rights as soon as possible", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Follow up on the recommendations of a number of treaty bodies in order to adopt a holistic strategy to fight against policies of female genital mutilation, early marriage and forced feeding, and also combat all forms of violence against women, including possible human rights awareness-raising campaigns in cooperation with civil society ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Strengthen the protection of women by considering the enactment of a specific law on violence against women", - "values": [ - "4 - General action" - ] - }, - { - "text": "Pursue efforts to fight violence against women ", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Continue to pursue its policy of eliminating corruption through, among others, the National Integrity Strategy adopted in 2012 ", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Adopt a comprehensive anti-discrimination legislation", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Establish a national human rights commission based on the Paris Principles ", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Strengthen its appropriate and long-term measures against all forms of discrimination, intolerance and trafficking in persons, especially those targeting vulnerable groups", - "values": [ - "4 - General action" - ] - }, - { - "text": "Step up its cooperation with special procedures' mandate holders by responding positively to the visit request of the Special Rapporteur on the rights to freedom of peaceful assembly and association, and facilitating, in a timely manner, a visit by the Special Rapporteur on torture ", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Enhance laws that encourage freedom of expression", - "values": [ - "4 - General action" - ] - }, - { - "text": "Incorporate the Rome Statute into national law", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Establish additional mechanisms for protecting citizens against domestic violence, and adopt the provisions that would ensure legal redress for gender-based violence. Important steps in this regard include the expeditious passage of legislation to promote women's rights, prohibit sexual harassment and criminalize domestic violence ", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Consider strengthening the positive impact expected from the Kiribati Joint Implementation Plan on Climate Change and Disaster Risk Management on human rights through training of relevant stakeholders on human rights approaches to climate change and disaster risk management", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Impose a moratorium on capital punishment and commute existing death sentences to imprisonment terms, with a view to abolishing capital punishment entirely ", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Reinforce and consolidate recovery of the country and national reconciliation and remedy past human rights violations through the establishment of a transitional justice strategy", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Enact legislation criminalizing torture and amend all relevant laws to fully comply with the obligations under CAT ", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Address discrimination and prejudice against leprosy in line with the Principles and Guidelines for the Elimination of Discrimination against Persons Affected by Leprosy and Their Family Members and the relevant General Assembly resolution ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Continue its national policy to promote equal opportunities and treatment with respect to employment", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Further strengthen the independence of the judiciary", - "values": [ - "4 - General action" - ] - }, - { - "text": "Take steps to eliminate discriminatory practices in housing and employment to fully comply with the 2009 Anti-Discrimination Act", - "values": [ - "4 - General action" - ] - }, - { - "text": "Consider decriminalizing sexual relations between consented adults of the same sex ", - "values": [ - "3 - Considering action" - ] - }, - { - "text": "Take urgent measures to repeal laws that discriminate against women in matters such as marriage and family relations", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Include disability as prohibited grounds for discrimination in its Constitution ", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Continue strengthening its institutional reform in the field of human rights and, in particular, encourage rapid consideration of the bill for the promotion and protection of the rights of indigenous populations.", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Sign and ratify the Optional Protocol to the International Covenant on Economic, Social and Cultural Rights, as previously recommended", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Establish effective and speedy measures to guarantee gender equality at all levels of the civil society and State structure, bearing in mind that laws and current policies have not yet produced the desired results ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Allocate more resources to develop health-care services, health-care infrastructure and health education, in order to improve maternal health", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Effectively establish the institution of the Ombudsman created in 2012 and ensure its compliance with the Paris Principles", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Continue the implementation of the national plan of action against racism and anti-Semitism", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Adopt concrete measures to encourage stronger participation by women and ethnic minorities in political decision-making processes", - "values": [ - "4 - General action" - ] - }, - { - "text": "Investigate all cases of human rights violations and abuses and prosecute those responsible without exceptions and immunity", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Continue working towards the professionalization and the modernization of the judicial system in all areas, including law enforcement and administration of justice", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Continue their efforts in enhancing the role of persons with disabilities in society ", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Be a pioneer country in ratifying the ICRMW", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Support initiatives and strategies to combat discrimination and promote the inclusion of vulnerable persons", - "values": [ - "4 - General action" - ] - }, - { - "text": "Enact a law that protects migrants, refugees and asylum seekers", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Strengthen its human rights framework, including access to human rights training, in order to increase protections for Roma people against violations of their rights", - "values": [ - "4 - General action" - ] - }, - { - "text": "Ensure that children under 18 are handled by the juvenile justice system in all circumstances", - "values": [ - "4 - General action" - ] - }, - { - "text": "Ensure full and unhindered humanitarian access in compliance with Security Council resolutions 2139 (2014), 2165 (2014), 2191 (2014), 2258 (2015) and 2268 (2016) ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Continue strengthening human rights culture and capacity-building ", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Ensure that the Zimbabwe Human Rights Commission is provided with appropriate support and facilities ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Continue every effort to fulfill its tasks and overcome all the challenges of eradicating poverty\nand improving economic and social conditions of Bhutan people ", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Seek assistance from the international community to advance its human rights agenda ", - "values": [ - "1 - Minimal action" - ] - }, - { - "text": "Continue to apply the strategies and socio-economic development plans designed for poverty reduction ", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Ensure access to justice for vulnerable groups, especially women and children, whom have been victimized by violence and abuse", - "values": [ - "4 - General action" - ] - }, - { - "text": "Take necessary measures to implement a national public awareness campaign on children's rights", - "values": [ - "4 - General action" - ] - }, - { - "text": "Enact the new draft Penal Code pending before Parliament ", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Permit unimpeded humanitarian access for civil society, NGOs and United Nations agencies, without threat of harassment or violence, to ensure the provision of vital supplies and assistance to populations in need", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Continue its efforts to combat corruption, including through a framework of legislative and administrative reforms", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "With the participation of indigenous persons, communities and their respective organizations, adopt a legal framework that ensures respect for the principles in the United Nations Declaration on the Rights of Indigenous Peoples", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Accelerate efforts to review the scope and mandate of Ombudsman's institution", - "values": [ - "4 - General action" - ] - }, - { - "text": "Consider additional measures to improve the status of women in all communities with a view to promote equality in law and practice", - "values": [ - "3 - Considering action" - ] - }, - { - "text": "Thoroughly investigate all reports of abductions and introduce a registry of prisoners available to the public ", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Accelerate the procedure relating to the abolition of the death penalty, as quickly as possible", - "values": [ - "4 - General action" - ] - }, - { - "text": "Share its best practices in terms of promoting education for children with disabilities", - "values": [ - "1 - Minimal action" - ] - }, - { - "text": "Continue efforts aimed at combating violence against women", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Focus on the development of an efficient education system for all throughout the country ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Continue collaboration with its partners to reduce the prevalence of female genital mutilation (FGM)", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Take steps to align domestic legislation with international standards, particularly with regard to the definition of trafficking in persons, and the application of the principle of equal remuneration of pay for men and women in its labour laws", - "values": [ - "4 - General action" - ] - }, - { - "text": "Implement measures enabling socio-economically disadvantaged persons to receive free legal aid", - "values": [ - "4 - General action" - ] - }, - { - "text": "Take effective measures to safeguard the full enjoyment of civil and political rights of its people ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Implement the decision of the Supreme Court of 2007 that requires the State to criminalize enforced disappearances and sign and ratify the CED ", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Intensify its engagement with the international community to exchange best practices and cooperation on law enforcement supervision and training with a view to contributing to its judicial reform processes on the basis of equality and mutual respect", - "values": [ - "1 - Minimal action" - ] - }, - { - "text": "Review and repeal discriminatory provisions against women in its domestic legislation", - "values": [ - "3 - Considering action" - ] - }, - { - "text": "Continue efforts to tackle human trafficking, notably through enhancing awareness-raising initiatives", - "values": [ - "4 - General action" - ] - }, - { - "text": "Further combat all forms of discrimination against women by running public awareness campaigns on women's rights", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Elaborate programmes aimed at elimination of all forms of violence against women and adopt\nthe bill on domestic violence which is supposed to be tabled by 2010 ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Provide special protection and assistance to unaccompanied children ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Strengthen capacity, including that of the Prosecutor-General's Office, to examine allegations of torture and ill-treatment as recommended by the Committee against Torture ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Continue its efforts for human rights education and training at all levels including for government functionaries ", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Take the necessary measures to ensure gender equality and revise the provisions of the Personal and Family Code which are not in compliance with international human rights norms relating to the rights of women ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Step up cooperation with special procedures.", - "values": [ - "4 - General action" - ] - }, - { - "text": "Consider ratifying ILO Convention 189 on Decent Work for Domestic Workers and the ICRMW ", - "values": [ - "3 - Considering action" - ] - }, - { - "text": "Elaborate and adopt an action plan for strengthening the promotion and protection of the rights of persons with disabilities in compliance with the 2006 Persons with Disability Act of Ghana", - "values": [ - "4 - General action" - ] - }, - { - "text": "Abolish the death penalty by means of law and ratify the Second Optional Protocol to the International Covenant on Civil and Political Rights ", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Improve the development of education by increasing school enrolment and improving the quality of education", - "values": [ - "4 - General action" - ] - }, - { - "text": "Intensify its efforts in fighting against discrimination and intolerance, especially towards Muslims, immigrants and people of African descent", - "values": [ - "4 - General action" - ] - }, - { - "text": "Ensure that all children are registered at birth and make every effort to register all persons not previously registered ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Decriminalize sexual activity between consenting adults and bring its legislation into conformity with international human rights standards by repealing legislative provisions which criminalize carnal intercourse against the order of nature or other sexual activity between consenting adults ", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Enact draft law No. 3590 related to the commission on the search for victims of enforced disappearance and other disappearances, which is currently under consideration by the Congress", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Adopt measures to put an end to all kinds of discrimination, particularly discrimination between men and women in the workplace", - "values": [ - "4 - General action" - ] - }, - { - "text": "Create a National Human Rights Institution in conformity with the Paris Principles ", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Guarantee freedoms of peaceful assembly and association and of opinion and expression by, inter alia, ensuring that the use of police force during demonstrations is proportionate and in line with the law the provinces set up in 2011", - "values": [ - "4 - General action" - ] - }, - { - "text": "Allow independent monitors access to all known and secret detention facilities within one year ", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Ensure enhancement of the status of women in the Emirates' society by eliminating all forms of discrimination which may persist with regard to arrangements of divorce and the ways in which domestic violence is dealt with ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Continue its policy aimed at combating illiteracy among girls and women ", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Put in place effective mechanisms to identify, report, and monitor sexual and gender-based violence", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Strengthen the capacity of the criminal police to deal with crimes related to child pornography on the Internet and inform children and their parents about the safe use of the Internet ", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Continue its efforts to eliminate torture, accede to the Optional Protocol to the Convention against Torture and other Cruel, Inhuman or Degrading Treatment or Punishment and establish its national preventive mechanism accordingly ", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Ensure that human rights defenders and journalists are protected and not subject to defamation. The "protection mechanism for human rights defenders and journalists" should be funded appropriately and a clear division of jurisdictional responsibilities between the different levels of government should be achieved ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Implement the recommendations of the Special Rapporteur on violence against women, particularly those pertaining to domestic violence and violence related to sorcery accusations, take all necessary steps to fully implement the Sorcery National Action Plan, ensure the investigation of incidents of sorcery related violence and prosecution of alleged perpetrators, and provide adequate shelter, psycho-social, legal and other services for survivors of gender-based violence, including in rural areas", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Take further efforts in combating violence against women such as enhancing the trust in the judicial system, measures to prevent violence, and promoting services and networks for women in rural areas", - "values": [ - "4 - General action" - ] - }, - { - "text": "Fully cooperate with and allow visits by the United Nations Special Rapporteurs", - "values": [ - "4 - General action" - ] - }, - { - "text": "Decriminalize same-sex relations and take concrete measures to combat discrimination and violence against the lesbian, gay, bisexual, transgender and intersex community", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Remove reservations to the Convention on the Elimination of all Forms of Discrimination against Women, as previously recommended", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Effectively implement the General Education Act, in particular by taking measures to improve school enrolment rates", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Ratify the Optional Protocols to the Convention on the Rights of the Child and strengthen the legal framework in line with the provisions of the Convention on the Rights of the Child. Strengthen efforts to end and prevent the recruitment and use of children", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Continue programmes to foster economic growth and reduce unemployment", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Reinforce efforts to improve the standard of living of all Liberians", - "values": [ - "4 - General action" - ] - }, - { - "text": "Remain on course as regards the fight against xenophobia and racism, inter alia, by providing appropriate education to people about the dangers of extremist and racist ideology, and by working to prevent radicalization of individuals drifting towards extremist groups ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Ensure teaching and preservation of minority languages, by providing adequate general education to students in their native language", - "values": [ - "4 - General action" - ] - }, - { - "text": "Amend the Individuals and Family Code in which consideration is given to prevention and support of victims of gender-based and sexual violence", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Ratify and implement CRPD", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Continue to harmonize its domestic legislation with all international human rights instruments that Uganda is a party to", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Ratify the Convention on the Punishment of the Crime of Genocide", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Continue its efforts to complete the accession to the relevant instruments such as the International Convention on the Rights of Persons with Disabilities and its Optional Protocol", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Ensure that all minorities, and particularly the Baha'i community, can exercise all of their rights free from discrimination and persecution, in conformity with the recommendations of the Human Rights Committee, the Committee on the Rights of the Child and the Special Rapporteur on adequate housing", - "values": [ - "4 - General action" - ] - }, - { - "text": "Step up its efforts to ensure that basic needs of the population are fully met, in particular, in the areas of employment, public health, education and public housing", - "values": [ - "4 - General action" - ] - }, - { - "text": "Within the spirit of the Durban Review Conference, continue to make all efforts to adopt effective measures to prevent the recurrence of threats against religious minorities, including the Jewish and the Baha'i communities.", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "End the prevailing climate of impunity regarding violence against women, by ensuring that such cases are investigated thoroughly, that those responsible are brought to justice and that survivors have access to justice, effective remedies and appropriate support services", - "values": [ - "4 - General action" - ] - }, - { - "text": "Ratify the Optional Protocol to the Convention on the Rights of Persons with Disabilities, the International Convention for the Protection of All Persons from Enforced Disappearance and the Optional Protocol to the International Covenant on Economic, Social and Cultural Rights", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Lift blockades in the Gaza Strip and remove restrictions of movement currently placed in the Occupied Palestine Territories that gravely harm the human rights of Palestinians.", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Combat the climate of impunity and ensure that racially motivated attacks committed against minorities are systematically investigated, prosecuted and punished according to law", - "values": [ - "4 - General action" - ] - }, - { - "text": "Continue enhancing freedom of information and the rights of journalists", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Increase level of education to cover disabled children", - "values": [ - "4 - General action" - ] - }, - { - "text": "Become a party to the international human rights legal instruments, to which Malaysia has not yet acceded", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Develop a national action plan to combat domestic violence against women and children", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Enact effective legislative regulations that will apply the economic transformation blueprint into the daily life of the society", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Continue efforts in accordance with the Zimbabwe Agenda for Sustainable Socioeconomic Transformation for the period October 2013-December 2018, which provides for a harnessing of the maximum benefit from the national natural resources in order to strengthen food security, eliminate poverty, extend social coverage and restore the infrastructure", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Take specific measures in follow-up to the recommendations of the Human Rights Committee to the United States in 2014 with regards to capital punishment such as measures to avoid racial bias, to avoid wrongful sentencing to death and to provide adequate compensation if wrongful sentencing happens", - "values": [ - "4 - General action" - ] - }, - { - "text": "Engage in dialogue with international experts on legal developments, including on the review of its Penal Code to allow less scope for open interpretation of these provisions by judges and courts.", - "values": [ - "4 - General action" - ] - }, - { - "text": "Increase its efforts to carry out public-awareness campaigns on the negative effects of violence against children, especially corporal punishment", - "values": [ - "4 - General action" - ] - }, - { - "text": "Continue efforts in strengthening its national framework to ensure that the principles of inclusivity and non-discrimination are incorporated fully, including through, inter alia, the ratification of the ICRMW and the possibility of the inclusion of the ECOSOC rights in the national human rights norms ", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Saudi Arabia affirmed its commitment to protecting the rights of the child, not only in its capacity as a party to the Convention on the Rights of the Child and the two Optional Protocols thereto, but also in fulfilment of its obligations derived from the provisions of Islamic sharia which seek to ensure the best interests of the child in all circumstances.", - "values": [ - "4 - General action" - ] - }, - { - "text": "Pay due attention to commensurate responsibility in protecting the rights of others and respect for others, while promoting and protecting freedom of expression and opinion ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Establish a national human rights institution, in accordance with the Paris Principles.", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Avoid the practice of preventive detention or use such type of detention as a measure of last resort ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Adopt legislation on prevention of all forms of violence against women and gender-based discrimination ", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Legislation be introduced to ensure that the age of marriage is the same for males as for females ", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Make public the findings and implement the recommendations of the Subcommittee on Prevention of Torture and Other Cruel, Inhuman or Degrading Treatment or Punishment arising from its visit to the country in 2015", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Strengthen and implement, with the support of the international community, the commitments it has made in paragraph 90 of its national report.", - "values": [ - "4 - General action" - ] - }, - { - "text": "Better protect women and girls against all forms of violence, including domestic violence ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Ratify other principal international human rights instruments, particularly the ICCPR and the ICESCR", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Take immediate measures to make sure that all unaccompanied children are given a guardian and a safe residence when they arrive in Greece ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Continue to take concrete measures in order to eliminate discrimination in labour market faced by persons with immigrant background ", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Adopt a zero-tolerance policy towards corruption ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Elaborate a national human rights plan ", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Intensify the rate of cooperation with treaty bodies", - "values": [ - "4 - General action" - ] - }, - { - "text": "Ensure that security forces and non-State actors responsible for human rights abuses, including human rights violations in 2011, are investigated and, where appropriate, prosecuted, and ratify the Rome State of the International Criminal Court ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Adopt a Child Code full in conformity with the Convention on the Rights of the Child", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Ratify the Optional Protocol to the Convention on the Elimination of All Forms of Discrimination against Women and the Optional Protocol to the Convention on the Rights of the Child on the involvement of children in armed conflict", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Safeguard the right to freedom of opinion and expression and the freedom of movement for political opponents and journalists", - "values": [ - "4 - General action" - ] - }, - { - "text": "Commute the death sentences with a view to abolishing the death penalty", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Take all measures to implement the Family Protection Act of 2008 and train the police specifically to receive complaints from women on violence perpetrated against them by their partners or spouses ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Adopt specific legislation to prevent discrimination based on sexual orientation or gender identity", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Ratify and fully implement, step by step, all core universal human rights treaties ", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Jamaica recognises the aspirational goals of the Optional Protocol and is committed to providing the framework for the achievement of the economic, social and cultural rights embodied in the Covenant. However, Jamaica is not in a position to sign and ratify the Protocol at this time.", - "values": [ - "4 - General action" - ] - }, - { - "text": "Step up efforts to reduce maternal mortality by expanding coverage and quality of health services, goods and facilities focusing on maternal health care", - "values": [ - "4 - General action" - ] - }, - { - "text": "Ratify the Rome Statute of the International Criminal Court and cooperate with this court", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Step up efforts to combat trafficking in persons, including the implementation of the recommendations of the Special Rapporteur on Trafficking in Persons on the outcome of her visit in 2010, as well as make more severe the criminal liability related to the offense of trafficking in persons", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Continue ensuring State safeguards to provide free legal aid to the population ", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Ensure the complementarity of the institutions for monitoring the protection of human rights ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Decriminalize abortion and ensure that safe and legal abortion services are available for those women and girls whose pregnancy is a result of rape or whose lives or health are put at risk", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Ensure full access to primary health care, education and judicial recourse to all persons present on its territory irrespective of their legal status", - "values": [ - "4 - General action" - ] - }, - { - "text": "Sign and ratify the Optional Protocol to the International Covenant on Economic, Social and Cultural Rights", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Equalize the age of consent for opposite and same-sex conduct, and adopt appropriate legislative and other measures to prohibit discrimination on the basis of sexual orientation and gender identity ", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Consider becoming party to the Optional Protocol to the Convention on the Rights of the Child and that relating to persons with disabilities, both of which relate to individual grievance procedures ", - "values": [ - "3 - Considering action" - ] - }, - { - "text": "Continue efforts in requesting support to intensify the abilities of Jordan to respond to the needs of Syrian refugees who are present on Jordanian territory", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Strengthen the measures aimed at guaranteeing gender equality, in particular with regard to the transfer of Kiribati nationality to the children of Kiribati women born abroad, in compliance with article 9, paragraph 2, of the Convention on the Elimination of All Forms of Discrimination against Women", - "values": [ - "4 - General action" - ] - }, - { - "text": "Pursue appropriate policies, such as its National Gender Policy, including public-oriented awareness campaigns to overcome the prevalence of patriarchal ideology with firmly entrenched stereotypes regarding the roles and responsibilities of women and men in the family and society ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Implement the rulings of the Inter-American Court of Human Rights relating to the Yakya Axa and Sawhoyamaxa communities, rendered in 2005 and 2006 respectively, which stipulate, particularly, that the lands claimed by these two communities must be restored to them ", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Ratify the International Convention for the Protection of the Rights of All Migrant Workers and Members of Their Families", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Analyse the possibility of abolishing the death penalty", - "values": [ - "3 - Considering action" - ] - }, - { - "text": "Amend Law 38 of 2012, which provides total impunity to militia members who violate international humanitarian law and commit human rights abuses", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Strengthen domestic cooperation between relevant actors, as well as international cooperation, in order to combat both internal and international trafficking and sexual exploitation of women and children ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Implement fully the Agreement on Guaranteeing Special Rights of the Slovenian Minority in the Republic of Hungary and the Hungarian National Community in the Republic of Slovenia and the recommendations of the mixed Slovenian-Hungarian Commission tasked with the monitoring of the implementation of the Agreement", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Study the possibility of ratifying the following international instruments: the International Covenant on Civil and Political Rights, the International Covenant on Economic, Social and Cultural Rights, the Convention against Torture and the International Convention for the Protection of All Persons from Enforced Disappearance, as previously recommended", - "values": [ - "3 - Considering action" - ] - }, - { - "text": "Continue to support UNHCR and other humanitarian agencies", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Expand coverage and access to services that prevent transmission of HIV from mother to child.", - "values": [ - "4 - General action" - ] - }, - { - "text": "Allocate more resources for the implementation of national policies in favour of vulnerable social groups", - "values": [ - "4 - General action" - ] - }, - { - "text": "Establish a National Institution for Human Rights in accordance with the Paris Principles", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Increase its efforts to prevent and combat all forms of abuse of children and adopt preventative measures and provide protection and services for their recovery ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Consider the adoption of a specific law on violence against women, including domestic violence ", - "values": [ - "3 - Considering action" - ] - }, - { - "text": "Adopt a national policy to end discrimination against persons with disabilities and support their social integration, including of persons with mental health problems", - "values": [ - "4 - General action" - ] - }, - { - "text": "Ratify the Convention against Torture as well as its Optional Protocol", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Strengthen partnerships between official institutions and the national human rights institutions through the implementation of the bilateral programmes of cooperation", - "values": [ - "4 - General action" - ] - }, - { - "text": "Retain the Overseas Domestic Worker visa as a measure to safeguard against abuses of migrant workers ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Prioritize legislation on women's rights, sexual harassment, domestic violence and the protection of children against abuse", - "values": [ - "4 - General action" - ] - }, - { - "text": "Ensure that men and women are treated equally, including equal pay for equal work", - "values": [ - "4 - General action" - ] - }, - { - "text": "In line with the recommendations made by the Committee on Economic, Social and Cultural Rights and the Committee on the Elimination of Discrimination Against Women, ensure strict control over the new work-permit system - intensify its efforts to bring to justice those involved in human trafficking - and commit itself to the full and speedy implementation of the Plan of Action for the Coordination of Actions on Combating Trafficking in Human Beings and Sexual Exploitation of Children ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Strengthen the implementation of measures aimed at promoting and safeguarding gender equality", - "values": [ - "4 - General action" - ] - }, - { - "text": "Ratify ICCPR and the two Optional Protocols thereto, ICESCR and the Optional Protocol thereto, ICERD, the Optional Protocol to CEDAW, CAT and the two Optional Protocols to CRC, as well as CRPD ", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Intensify its efforts, through legislation and practical measures, to protect children against all forms of violence, including extra-judicial killings in communal conflicts, torture and trafficking", - "values": [ - "4 - General action" - ] - }, - { - "text": "Reinforce its national policy for gender equity and equality", - "values": [ - "4 - General action" - ] - }, - { - "text": "Continue enhancing the quality of life of its people through the enjoyment of economic, social and cultural rights and pursuant to international standards", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Prepare a comprehensive road map to reform the judiciary sector with timelines and benchmarks and clear tasking for national agencies, and involve development partners in this process", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Establish effective mechanisms of transitional justice. ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Undertake all possible efforts to combat racism, racial discrimination, xenophobia and other forms of related intolerance", - "values": [ - "4 - General action" - ] - }, - { - "text": "Implement a comprehensive national strategy to prevent trafficking and sexual exploitation of children.", - "values": [ - "4 - General action" - ] - }, - { - "text": "Ratify ICCPR and CAT", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Continue efforts to maintain harmony and tolerance among different ethnic and religious groups in the country, and share its good experience with other countries in this area", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Refrain from impeding civil society and respect its international obligations on the right to freedom of peaceful assembly", - "values": [ - "4 - General action" - ] - }, - { - "text": "Develop and enact a comprehensive public outreach plan for transitional justice processes, including full participation by all relevant ministries in that outreach ", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Pursue ongoing action in favour of training for qualified teaching staff, and provide education opportunities for all segments and social groups in various regions ", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Increase efforts for the efficient implementation of the right to education of members of the Roma minority, as recommended by the Committee on the Rights of the Child and Council of Europe's Commissioner for Human Rights", - "values": [ - "4 - General action" - ] - }, - { - "text": "Continue to improve and implement the poverty reduction strategy with the emphasis on lifting vulnerable groups, like women in rural areas, out of poverty", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Plan concrete actions which could be taken to improve protection of and support to victims of domestic violence as well as to ensure that legal aid is available to all victims of violence in order to ensure a comprehensive approach to domestic violence", - "values": [ - "4 - General action" - ] - }, - { - "text": "Immediately release all political prisoners ", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Activate the adoption process of the draft law on gender equality and the elaboration of a national policy on gender equality", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Implement anti-corruption legislation through an independent and nonpartisan anti-corruption commission\n", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Address prison overcrowding by reviewing the use of pre-trial detention ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Ratify the Convention No. 169 of the ILO concerning indigenous and tribal peoples in independent countries", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Ensure that abusive child labour practices are eliminated and promote access to education of these children in a vulnerable situation ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Take all necessary measures to eradicate child labour and to enact and implement a suitable Action Plan", - "values": [ - "4 - General action" - ] - }, - { - "text": "Continue implementing the plans, programs and measures that aim to guarantee the right to education and access to appropriate health services for all its citizens", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Explicitly prohibit, in all fields, corporal punishment for children and adolescents, particularly in view of section 226 of the Penal Code, which permits reasonable punishments in penal institutions and by decree of Island Councils ", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Implement a more human-rights- and community-based approach to the issue of institutionalization of mentally ill persons ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Consider the possibility of making amendments to legislation aimed at strengthening equality for women and men, as well as consider the question of adopting legislation to ensure equality of rights and opportunities, including in the area of access to vocational training", - "values": [ - "3 - Considering action" - ] - }, - { - "text": "Institute a de jure moratorium on the death penalty, with a view to its definitive abolition", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Intensify efforts in the areas of human rights education and capacity-building and organize training seminars on human rights for those working in relevant institutions and bodies ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Protect the right to religious belief of all persons in Australia", - "values": [ - "4 - General action" - ] - }, - { - "text": "Examine the possibility of introducing a formal moratorium on the death penalty ", - "values": [ - "3 - Considering action" - ] - }, - { - "text": "Ensure prompt access to justice for women victims of all forms of violence, as well as prosecute all acts of violence and punish the perpetrators", - "values": [ - "4 - General action" - ] - }, - { - "text": "While implementing anti-terrorism measures, respect international human rights obligations, including the right to a fair trial and the right to freedom and security of the person.", - "values": [ - "4 - General action" - ] - }, - { - "text": "Harmonize national and regional legislation in order to avoid discriminatory practices against women and indigenous peoples", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Continue its efforts to ensure human rights, despite the variety of real constraints facing it, with the support of OHCHR and the whole international community.", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Envisage the establishment of the national human rights institution in compliance with the Paris Principles ", - "values": [ - "3 - Considering action" - ] - }, - { - "text": "Continue to strengthen its engagement with community leaders to build community support at all levels for measures to protect those most vulnerable to racism and discrimination", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Continue moving forward with the adoption of measures leading to the abolition of the death penalty", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Redouble efforts to achieve gender equality by adopting a more systematic approach to public education in this area, with particular emphasis on the ills and consequences of domestic violence and sexual exploitation of women ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Take the necessary measures to establish a specialized juvenile justice system and continue efforts for reintegration of former child offenders into society, in compliance with the Convention on the Rights of the Child", - "values": [ - "4 - General action" - ] - }, - { - "text": "Implement the recommendations made by the Human Rights Committee following its consideration of the country's periodic report.", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Take appropriate measures to reduce the development gap and social disparities so as to enhance the full enjoyment of all human rights for all Australian people, especially in the areas of economic, cultural and social rights ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Provide financial support to the implementation of the plan of action for vulnerable children", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Ensure that all detainees who are kept in pre-trial detention are brought before a judge within the deadlines provided by the Constitution of Nigeria, or in the days following their arrest in accordance with the ICCPR", - "values": [ - "4 - General action" - ] - }, - { - "text": "Establish a moratorium on the death penalty as a step towards its abolition", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Take further measures to protect the rights of detainees, above all those on pretrial detention", - "values": [ - "4 - General action" - ] - }, - { - "text": "Pay special attention to the social and economic integration of the population in rural regions of the country through the development of the infrastructure and change of the regulatory framework in all spheres of life and sustenance", - "values": [ - "4 - General action" - ] - }, - { - "text": "Release publicly the findings of the Libyan Government's investigation into the Abu Salim prison killings of 1996 ", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Intensify efforts to draft a constitution which would be in full compliance with the international standards of human rights protection", - "values": [ - "4 - General action" - ] - }, - { - "text": "Ratify the Convention on the Elimination of All Forms of Discrimination against Women, the Convention on the Rights of the Child and its three Optional Protocols", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Sign the Optional Protocol to the International Covenant of Economic, Social and Cultural Rights (OP-ICESCR)", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Ensure media freedom by providing full editorial independence to publicly-owned media. Ensure the impartiality of the Independent Broadcasting Authority and enact legislation to facilitate access to information", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Adopt necessary measure so that acquisition, possession, use of fire arms by civilian persons can be regulated effectively in order to protect human rights of all persons", - "values": [ - "4 - General action" - ] - }, - { - "text": "Place indicted government officials on administrative leave pending conclusion of the investigation related to the 2009 stadium violence, and urge all members of the security forces to cooperate fully with the investigation", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Consider ratifying the Convention on the Elimination of All Forms of Discrimination against Women", - "values": [ - "3 - Considering action" - ] - }, - { - "text": "Provide more resources for reforming the welfare system in order to make it better able to tackle poverty and worklessness, and reduce negative impact on social vulnerable groups ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Guarantee freedom of expression, association and peaceful assembly for all individuals and promote meaningful dialogue that embraces and allows freely organized advocacy of diverging views by civil society", - "values": [ - "4 - General action" - ] - }, - { - "text": "Seriously consider issuing an invitation to the Special Rapporteur on the question of torture.", - "values": [ - "3 - Considering action" - ] - }, - { - "text": "Adopt at the earliest a draft law aimed at abolishing the death penalty, in line with the spirit of articles 11 and 12 of its new Constitution, repeal the provisions of its 1961 Criminal code, which provides for the application of the death penalty and ratify the Second Optional Protocol to the International Covenant on Civil and Political Rights which prohibits the death penalty under all circumstances ", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Redesign the human rights institutional system of Guatemala", - "values": [ - "4 - General action" - ] - }, - { - "text": "Identify and address gaps in reproductive health legislation to ensure the protection of women's sexual and reproductive health and rights", - "values": [ - "4 - General action" - ] - }, - { - "text": "Make further progress in changing the regime which criminalizes the exercise of the right to conscientious objection in relation to obligatory military service", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Enact comprehensive anti-discrimination legislation and uphold minority rights with a view to fully aligning law and practice with international human rights standards ", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Step up consultations to better prepare national opinion for the ratification of the Second Optional Protocol to the International Covenant on Civil and Political Rights, aiming at the abolition of the death penalty ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Adopt a national policy pertaining to children with disability, to take measures to tackle discrimination and to promote gender equality in the field of education and to guarantee a favourable climate for the activities of human rights defenders, journalists and other actors in civil society", - "values": [ - "4 - General action" - ] - }, - { - "text": "Develop a strategy to even out the inequality in wages between men and women", - "values": [ - "4 - General action" - ] - }, - { - "text": "Take further steps to decriminalize acts of opinion and expression, including repealing articles in the penal code which allow for the imprisonment of journalists for their writing ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Consider signing and ratifying the International Convention for the Protection of All Persons from Enforced Disappearance.", - "values": [ - "3 - Considering action" - ] - }, - { - "text": "Continue working to establish a national human rights institution in accordance with the Paris Principles", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Actively contribute to drafting the roadmap and benchmarks envisaged by Human Rights Council resolution 15/28 in cooperation with OHCHR and priority be given to capacity-building in the judicial sector ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Bring down the unemployment rate", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Take into consideration the possibility of acceding to the Rome Statute ", - "values": [ - "3 - Considering action" - ] - }, - { - "text": "Fully align its national legislation with all obligations under the Rome Statute including incorporating the Rome Statute definition of crimes and general principles, as well as adopting provisions enabling cooperation with the Court ", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Find a solution to improve the treatment of refugees in transit zones at airports and in migrant camps", - "values": [ - "4 - General action" - ] - }, - { - "text": "End the practice of imposing punishment on returnees ", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Take measures that address the root causes of the very worrisome increase in crime rates over the past years ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Abolish the death penalty completely and ratify the ICCPR-OP 2", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Continue to place importance on secure economic development, including through infrastructure development in rural areas, in order to ensure that people living in these areas fully enjoy their economic and social rights ", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Investigate cases of gender violence and bring perpetrators to justice and provide legal and medical support to victims ", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Eliminate all legislation that penalizes and criminalizes same sex relationships as well as all discriminatory legislation as a result of sexual orientation", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Enact specific comprehensive legislation on domestic violence and put in place general measures to prevent violence against women and girls, including marital rape and ensure that perpetrators be prosecuted and punished in accordance with the severity of the crimes committed ", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Continue to promote the rights of vulnerable groups, especially women, children and persons with disabilities", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Accede to the Rome Statute of the International Criminal Court and to the Agreement on Privileges and Immunities of the Court ", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Implement the recommendations of the Human Rights Committee regarding the full independence and impartiality of the judiciary", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Take all necessary measures to ensure the physical integrity of journalists and human rights defenders ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Provide medical and psychological assistance to women who were victims of sexual violations during the conflicts", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Continue to promote the rights of children, with the hope that the pending Child Protection Bill in Parliament and the Child protection policy being formulated will soon be adopted.", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Put an end to acts of repression against ethnic and religious minorities, in particular Baha'is, and take effective measures to put an end to discriminatory policies against them", - "values": [ - "4 - General action" - ] - }, - { - "text": "Consider taking progressive actions to ratify the core human rights treaties, starting with ICESCR and ICCPR, which it signed in 1995 ", - "values": [ - "3 - Considering action" - ] - }, - { - "text": "Deepen its engagement and collaboration with communities in the implementation of development projects and social policies which will ensure better buy-in and social outcomes for the affected communities", - "values": [ - "4 - General action" - ] - }, - { - "text": "Continue defending the country's independence and sovereignty ", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Intensity efforts to implement national programmes that promote the rights of its people, including in the field of the rights of Children and Women as well as rights of education, to health, to adequate water and to sanitation, through enhancing the capacity of the Government and cooperation with relevant stakeholders, including civil society, media and international community ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Improve the education system and school textbooks and promote the full safeguarding of religious freedom and other human rights by programmes which, beginning in primary school and within the context of religious instruction, will educate everyone to respect their brothers in humanity", - "values": [ - "4 - General action" - ] - }, - { - "text": "Continue its measures to end the ongoing conflict and extend its authority to the whole territory ", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Combat all forms of racism by adopting a national action plan against racism", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Adopt and implement human trafficking legislation with a special focus on protecting children, in line with Togo's obligations under the Optional Protocol to the Convention on the Rights of the Child on the sale of children, child prostitution and child pornography", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Set up prevention, repression and assistance mechanisms to help victims to fight sexual and domestic violence, as well as all types of discrimination against women ", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Canada's police, correctional services and institutions responsible for national security and public safety are firmly committed to ensuring safety with due respect for human rights", - "values": [ - "4 - General action" - ] - }, - { - "text": "Continue with its commitment to improve the judicial system and the prisons", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Pursue its work, with the proper perspective it shows continuously, particularly in the training of its government staff.", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Take additional measures to achieve gender equality, including specific measures to eliminate gender discrimination and gender-based violence", - "values": [ - "4 - General action" - ] - }, - { - "text": "Recognize the competence of the Committee on Enforced Disappearances.", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Comply fully with the international human rights obligations to which it is bound", - "values": [ - "4 - General action" - ] - }, - { - "text": "Actively implement the policy to promote gender equality, to improve the quality of life of persons with disabilities and development of youth", - "values": [ - "4 - General action" - ] - }, - { - "text": "Take all necessary measures to guarantee the protection of the family, and lay down an efficient system for families in order to guarantee the enhancement of social cohesion and prevent family disintegration and social fracturing ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Take all measures to protect civilians, especially women and children, and cease the use of explosive weapons in populated areas", - "values": [ - "4 - General action" - ] - }, - { - "text": "Accelerate efforts to improve access to adequate, clean and safe drinking water as well as providing sewage services for the population ", - "values": [ - "4 - General action" - ] - }, - { - "text": "In collaboration with indigenous representatives, implement concrete measures, so that a comprehensive and coordinated national action plan can be under way by 2015, as recommended by the United Nations Secretary-General's campaign to end violence against women ", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Abolish capital punishment", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Take up again the recommendations of the first review relating to the creation of a national human rights institution in conformity with the Paris Principles", - "values": [ - "4 - General action" - ] - }, - { - "text": "Continue strengthening efforts to ratify CED ", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Continue the result-orientated policy in the field of the fight against infectious diseases, primarily tuberculosis and HIV/AIDS", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Increase human rights education and training for police officers ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Accede to CRPD ", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Incorporate training on human rights training and the application of international treaties in the permanent and mandatory training programme for judges and magistrates", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Adopt a national programme for implementation of the Convention on the Rights of Persons with Disabilities", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Improve implementation and enforcement of the Law on the Elimination of All Forms of Discrimination, particularly in its application towards the protection of individuals belonging to sexual and religious minority groups", - "values": [ - "4 - General action" - ] - }, - { - "text": "While noting the involvement of civil society in the preparatory process of the national report, to fully involve civil society in the follow-up to the review", - "values": [ - "4 - General action" - ] - }, - { - "text": "Recommended that Mali's request for technical assistance should be taken on board by the international community.", - "values": [ - "1 - Minimal action" - ] - }, - { - "text": "Continue its experimental programme on access to mother tongue education for children belonging to minority groups", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Further strengthen efforts towards a better promotion of gender equality", - "values": [ - "4 - General action" - ] - }, - { - "text": "Build new schools in the hinterland of the country", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Provide access for all asylum and repatriation detainees to attorneys, as well as consular notification and access consistent with applicable international legal obligations, including Article 36 of the Vienna Convention on Consular Relations, to detained foreign nationals", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Continue implementing national strategy to combat poverty and hunger ", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Undertake an in-depth assessment of the justice sector, prioritizing the juvenile justice system, to identify and address deficiencies under Burkinabe and international law", - "values": [ - "3 - Considering action" - ] - }, - { - "text": "Ensure equal education opportunities for migrants' children and Roma in particular", - "values": [ - "4 - General action" - ] - }, - { - "text": "Increase its efforts in fighting poverty, particularly of disadvantaged children in the country ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Further intensify investigation, prosecution and adequate sanctions in all cases of human trafficking", - "values": [ - "4 - General action" - ] - }, - { - "text": "Adopt legislation that recognizes homophobic and transphobic motivation as an aggravating circumstance in the Criminal Law ", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Strengthen legislatives measures and public policies aiming at eliminating discrimination against women and promote gender equality in public and private spheres", - "values": [ - "4 - General action" - ] - }, - { - "text": "Consider signing the core human rights treaties to which it is not yet a party", - "values": [ - "3 - Considering action" - ] - }, - { - "text": "Continue to make efforts to abolish the death penalty", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Continue its efforts in fighting acts of sexual violence, including the establishment of mechanisms for the identification, reporting and monitoring of such cases", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Take the necessary measures to give full effectiveness to the ICESCR in Poland's domestic legal system ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Intensify efforts to adopt a revised Children's Act that complies with international standards, including provisions on prohibition of all forms of violence against children, and to ensure sufficient budgetary resources to its implementation", - "values": [ - "4 - General action" - ] - }, - { - "text": "Improve its enforcement of regulations to protect foreign workers and extend coverage of minimum wage requirements to include foreign workers ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Continue its efforts to provide health, education and social assistance services in rural areas", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Continue implementing further plans and programmes to reduce levels of violence against women and girls ", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Consider increasing, if possible, the funds devoted to ensuring the implementation of programmes for the protection of victims of violence against women and to ensuring that women have access to information and health-care services ", - "values": [ - "3 - Considering action" - ] - }, - { - "text": "Prioritize the ratification of the Council of Europe Convention on Preventing and Combating Violence against Women and Domestic Violence and of the Optional Protocol to the Convention on the Elimination of All Forms of Discrimination against Women", - "values": [ - "4 - General action" - ] - }, - { - "text": "Ratify the Second Optional Protocol to the International Covenant on Civil and Political Rights", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Ratify the Optional Protocol to the Convention against Torture and other Cruel, Inhuman or Degrading Treatment or Punishment (OP-CAT)", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "To strengthen the system of effective response and monitoring of international commitments undertaken by the Bolivarian Republic of Venezuela in the framework of the human rights treaties and Conventions, through the implementation of a system of analysis and timely preparation of reports to the treaty bodies", - "values": [ - "4 - General action" - ] - }, - { - "text": "Improve conditions to combat the higher rate of poverty, especially in the rural areas", - "values": [ - "4 - General action" - ] - }, - { - "text": "Reduce burdensome registration and renewal processes for NGOs in the country ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Strengthen its cooperation with its development partners and various United Nations entities as a way to facilitate the implementation of its socioeconomic programs and implement the recommendations that it will accept in its UPR cycle ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Continue its efforts to develop inter-ethnic confidence and prevent all forms of racial discrimination ", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Strengthen the protection of citizens and the right to privacy in the Investigatory Powers Bill of 2016", - "values": [ - "4 - General action" - ] - }, - { - "text": "Adopt the new Criminal Code, including the article 273 and the following ones that envisage and repress female genital mutilation (FGM)", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Promote the participation of women in public affairs and increase their representation in the elected councils", - "values": [ - "4 - General action" - ] - }, - { - "text": "Pursue efforts by taking the appropriate measures favourable to the schooling of girls and their retention at school, in particular by fighting the practice of vidomegons", - "values": [ - "4 - General action" - ] - }, - { - "text": "Consider the possibility of ratifying the International Covenant on Civil and Political Rights and its Optional Protocols, the Convention against Torture and Other Cruel, Inhuman or Degrading Treatment or Punishment and its Optional Protocol, the Optional Protocols to the Convention on the Rights of the Child, the International Convention on the Protection of the Rights of All Migrant Workers and Members of Their Families, the Convention on the Rights of Persons with Disabilities and its Optional Protocol, and the International Convention for the Protection of All Persons from Enforced Disappearance ", - "values": [ - "3 - Considering action" - ] - }, - { - "text": "Prescribe female genital mutilation as an offence, in addition to its present prohibition by law, and take effective measures to eradicate it.", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Adopt a law on human trafficking that criminalizes all forms of trafficking and that provides the corresponding sanctions and comprehensive assistance to victims", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Enact legislation which makes a distinction between the freedom of expression and hate speech", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Complete the procedures related to the establishment of the independent regulatory authority for the broadcast media", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Promptly, thoroughly and impartially investigate all cases of death in custody and provide adequate compensation to the families of victims, as recommended by the Committee against Torture", - "values": [ - "4 - General action" - ] - }, - { - "text": "Strengthen the reform process of the criminal justice system in accordance with international standards, particularly regarding the right to a fair trial, the right to appeal to civilian courts and the right to a public hearing, and abrogate the jurisdiction of the military courts over civilian cases in terrorism-related offences", - "values": [ - "4 - General action" - ] - }, - { - "text": "Provide due process of law for those charged with crimes, and to discontinue the show trials", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Ensure the prompt implementation of the provisions of the Rome Statue in the national law ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Investigate all allegations on the use of torture and cruel treatment by law enforcement officers, hold the perpetrators legally responsible and provide compensation to victims", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Take urgent measures to re-establish the independence of the judiciary", - "values": [ - "4 - General action" - ] - }, - { - "text": "Eliminate discrimination on the basis of language in the areas of education and employment", - "values": [ - "4 - General action" - ] - }, - { - "text": "Pay particular attention to tackle the pay gap between men and women through reinforced policy measures ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Continue preventing and punishing human rights abuses by law enforcement officials ", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Continue to strengthen the protection of persons with disabilities through increasing employment opportunities to fundamentally improve their living conditions", - "values": [ - "4 - General action" - ] - }, - { - "text": "Strengthen and guarantee the autonomy, independence and impartiality of the judiciary, including by adopting safeguards to prevent irregular dismissals and appointments of judges", - "values": [ - "4 - General action" - ] - }, - { - "text": "Reinforce its policies to provide asylum seekers and refugees access to education services that are available nationally", - "values": [ - "4 - General action" - ] - }, - { - "text": "Take all necessary measures to clarify allegations of extrajudicial executions and arbitrary detentions ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Adopt a National Action Plan on Security Council Resolution 1325 (2000) on Women, Peace and Security", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Establish the national human rights institution in accordance with the Paris Principles ", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Strengthen the mainstreaming of environmental rights within the elaboration and implementation of development strategies", - "values": [ - "4 - General action" - ] - }, - { - "text": "Involve all stakeholders, including civil society in the implementation of the National Action Plan, in order to ensure its success", - "values": [ - "4 - General action" - ] - }, - { - "text": "Explicitly prohibit traditional practices that put at risk the physical and psychological integrity of women and girls", - "values": [ - "4 - General action" - ] - }, - { - "text": "Recommended ratifying the fundamental labour conventions, in particular ILO Conventions 87 and 98, as well as the Convention on the Protection of the Rights of All Migrant Workers and Members of Their Families.", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Further enhance the representation of women in all fields of society", - "values": [ - "4 - General action" - ] - }, - { - "text": "Continue making efforts to combat trafficking in persons, in particular children ", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Continue to align its national laws, specially the sub-constitutional legislation and customary legal practices, with its international human rights obligations, particularly in the field of gender equality and prevention of violence against women, where special programmes and policies would be highly welcomed", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Effectively address through legislation and policies the sexual exploitation of children, including child pornography ", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Reconsider its stance and endorse the United Nations Declaration on the Rights of Indigenous Peoples ", - "values": [ - "3 - Considering action" - ] - }, - { - "text": "Renew the death penalty moratorium and consider abolishing capital punishment", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Continue to improve on efforts to combat human trafficking ", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Take the necessary steps to eradicate domestic and sexual violence against women, especially minor women, whose numbers continue being significantly high. In this, sense, it is necessary to monitor the prevalence of cases of sexual violence in the framework of armed conflicts in order to achieve two goals: reduce the number of victims and provide victims with adequate sanitary and psychological attention", - "values": [ - "4 - General action" - ] - }, - { - "text": "Continue efforts in the field of combating human trafficking and fully implement the international conventions in this area that Nigeria is a party to", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Effectively implement the Protection of Vulnerable Persons Act to ensure better protection for its vulnerable population", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Extend an open and standing invitation to the special procedures ", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Make the conditions for acquiring and transferring nationality the same for men and women.", - "values": [ - "4 - General action" - ] - }, - { - "text": "Ratify the ILO Convention 169", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Continue to provide basic medical cover for its people, including the elderly", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Double its efforts in its fight against sexual violence against women and girls ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Protect the social and cultural rights of migrants while taking integration measures and policies aimed at migrants ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Continue to accede to core international human rights instruments", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Continue the implementation of the Historical Memory Act despite the economic crisis", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Amend or revoke laws and decrees that limit the right to freedom of thought, conscience and religion, including the 1965 Blasphemy Law, the 1969 and 2006 ministerial decrees on building houses of worship and religious harmony and the 2008 Joint Ministerial Decree on Ahmadiyah to bring these laws into line with international human rights standards ", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Take the most appropriate measures to better protect children with disabilities ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Continue to pay attention to women- and children-related issues", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "End its practice of arbitrarily detaining Syrians for participating in peaceful demonstrations and release all those held in detention", - "values": [ - "4 - General action" - ] - }, - { - "text": "Continue to adopt legal coverage of human rights ", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Abolish military conscription and compulsory military training, particularly for children ", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Continue its efforts for the establishment of the National Human Rights Institution", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Assure the sustainability of the regional justice and security hubs and that they are clearly taken into account in the budgeting process and included in the final national budget for 2016", - "values": [ - "4 - General action" - ] - }, - { - "text": "Implement a system for measuring indicators of progress on economic, social and cultural rights", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Ratify ICCPR as well as CAT, CEDAW, including the two Optional Protocols to CRC ", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Prosecute all acts of domestic and sexual violence against women and girls", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Continue building its national capacities and implement its priorities as they were specified in its national report", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Include sexual orientation and gender identity as grounds in antidiscrimination legislation, and provide training to law enforcement and judicial officials to promote respect for the rights of all persons, regardless of their sexual orientation or gender identity", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Consider ratifying the Convention on the Rights of Persons with Disabilities to which it is a signatory ", - "values": [ - "3 - Considering action" - ] - }, - { - "text": "Remove existing barriers to the full participation of women in economic life so as to further reduce poverty and inequality", - "values": [ - "4 - General action" - ] - }, - { - "text": "Continue implementing the legislation against all forms of trafficking, and formulate a specific legislation to combat human trafficking, especially of women and children", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Continue with the efforts to guarantee compliance of the Human Rights Ombudsperson with the Paris Principles ", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Strengthen efforts to tackle gender-based violence by introducing specific measures to encourage more reporting by the public, increased transparency, and increased investigations, prosecutions, convictions and sentences, to deter offenders", - "values": [ - "4 - General action" - ] - }, - { - "text": "Continue taking efficient measures with a view to decreasing and eventually eliminating the wage gap between men and women ", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Expedite the ratification process of the Optional Protocol to the Convention against Torture in order to allow for the early establishment of a National Preventive Mechanism", - "values": [ - "4 - General action" - ] - }, - { - "text": "Continue actions to improve compliance with the human right to water, in the framework of General Assembly resolution 64/292", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Consider ratifying or acceding to: ICRMW ", - "values": [ - "3 - Considering action" - ] - }, - { - "text": "Ratify the Second Optional Protocol to the Covenant on Civil and Political Rights ", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Prioritize the elimination of discrimination and violence against women", - "values": [ - "4 - General action" - ] - }, - { - "text": "Ensure thorough implementation of the anti-discrimination legislation in order to prevent and combat the discrimination based on any criteria, notably racial and ethnic", - "values": [ - "4 - General action" - ] - }, - { - "text": "Albania was considering accepting the individual complaints procedure under all the human rights conventions to which it was a party. ", - "values": [ - "3 - Considering action" - ] - }, - { - "text": "Continue its efforts to eradicate negative impacts inflicted by external coercive economic sanctions", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Consider incorporating in its legal order the definition of torture according to international standards", - "values": [ - "3 - Considering action" - ] - }, - { - "text": "Continue its efforts to ensure equal pay to men and women for equal work ", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Ratify the ILO Convention No. 138 on the minimum age for admission to employment", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Further develop preventive measures to combat trafficking in human beings, with a special emphasis on children, newborn and pregnant women, as well as strengthen the national referral system and increase the number of centres for victims of trafficking", - "values": [ - "4 - General action" - ] - }, - { - "text": "Moving forward, the Government is committed to studying the framework for accession to the Convention against Torture and other Cruel, Inhuman or Degrading Treatment or Punishment.", - "values": [ - "3 - Considering action" - ] - }, - { - "text": "Submit its overdue reports on the International Convention on the Elimination of All Forms of Racial Discrimination and the Convention on the Elimination of All Forms of Discrimination against Women", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Consider redrafting its media law to align it with the needs of media development and media freedom", - "values": [ - "3 - Considering action" - ] - }, - { - "text": "Continue to strengthen legal and policy frameworks on the promotion and protection of women\u2019s rights and on achieving gender equality", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Continue to undertake efforts to enhance the rule of law to ensure that the rights of its people are better protected ", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Further promote the safety and living conditions of migrants, refugees and asylum seekers arriving in Australia", - "values": [ - "4 - General action" - ] - }, - { - "text": "Carry out an evaluation on ethnic profiling within the police organization", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Implement the Security Council resolutions on Women, Peace and Security, by ensuring, in particular, participation of women on an equal footing and at every level of responsibility in the reconciliation process ", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Review and transform the 1977 Penal Code with regard to violence against children, sexual abuse and exploitation, abduction, sales and trafficking ", - "values": [ - "3 - Considering action" - ] - }, - { - "text": "Continue implementing the strategies and plans for socioeconomic development of the country to make progress towards achieving the Millennium Development Goals from now to 2015 ", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Take effective steps to improve accountability with a view to eradicating impunity ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Take steps to improve cooperation with non-governmental organizations active in the protection of children at the national and international levels", - "values": [ - "4 - General action" - ] - }, - { - "text": "Provide support and assistance to victims of trafficking in persons, especially women and children, and fully implement the Anti-Trafficking in Persons Act amended in 2010", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Through amendments to laws adopted from 2015 that limit the independence of the media, undermine trust on its impartiality and, in anti-terrorism cases, could violate privacy (guarantee the full right to freedom of expression)", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Elevate the status of the national machinery for the advancement of women, strengthen its mandate, provide the necessary human and financial resources to endow it with sufficient authority and decision-making power for coordinating effectively the Government's work to promote gender equality", - "values": [ - "4 - General action" - ] - }, - { - "text": "Adopt more innovative approaches to teen pregnancies and continued schooling of teen mothers through the sharing of experiences and best practices with partners", - "values": [ - "4 - General action" - ] - }, - { - "text": "Respect fully the International Covenant on Civil and Political Rights, in particular its article 14, as well as the European Convention for the Protection of Human Rights and Fundamental Freedoms, particularly its article 6, as well as adopt appropriate measures to guarantee the impartiality of its judicial system ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Continue to develop and strengthen programmes and public policies on inclusion, reduction of poverty and inequality, promotion of equality and inclusion, with particular attention to the poorest provinces and the systemic inequalities that may exist between rural and urban areas", - "values": [ - "4 - General action" - ] - }, - { - "text": "Make every effort to put an end to violence, implement genuine political reforms at this critical juncture, and continue to work towards reaching a peaceful solution through negotiations and dialogue, in order to spare further bloodshed of the brotherly Syrian people, and preserve its security and stability and the unity of territorial integrity ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Continue implementing its national programs and policies to advance women's rights and ensure quality education of children, especially in rural areas", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Improve prison conditions and detention facilities", - "values": [ - "4 - General action" - ] - }, - { - "text": "Ensure an equal participation between men and women in politics", - "values": [ - "4 - General action" - ] - }, - { - "text": "Strengthen and facilitate the process already undertaken of the civil registration", - "values": [ - "4 - General action" - ] - }, - { - "text": "Bring its national legislation into line with the Rome Statute, including by incorporating provisions to promptly and fully cooperate with the International Criminal Court", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Take effective measures to tackle trafficking in human beings, domestic violence and sexual offences", - "values": [ - "4 - General action" - ] - }, - { - "text": "Establish an effective and inclusive process to follow up on recommendations of the universal periodic review ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Take measures to overcome the difficulty of access to birth registration procedures, particularly for children of African descent, indigenous children and children living in rural and border areas ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Continue to support overseas territories to abide with basic human rights protection for all ", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Develop a national strategy for human rights education in the school system at all levels, in accordance with the plan of action 2005-2009 of the World Programme for Human Rights Education, including the review and revision of curricula and textbooks, the training of teachers and the practice of human rights in the school community.", - "values": [ - "4 - General action" - ] - }, - { - "text": "Adopt legislative, judicial and administrative measures to ensure effective remedy for torture and ill-treatment and strengthen its framework to prosecute such crimes", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Provide prompt, thorough and impartial investigations into all allegations of excessive use of force by the armed forces and submit to a fair trial anyone suspected of being responsible", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Introduce a definition of torture in its Penal Code that covers all of the elements contained in article 1 of the Convention against Torture ", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Intensify the initiatives aimed at both preventing child and women trafficking, child labour, forced prostitution, and facilitating the social reintegration of the victims", - "values": [ - "4 - General action" - ] - }, - { - "text": "Prosecute the perpetrators within the security forces who committed violent acts against demonstrators and opposition members, while providing the adequate resources to support impartial investigations and respecting international human rights law", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Step up the efforts to fight against discrimination by refraining from contradictory legislation and by amending the anti-discrimination legislation to include explicit references to sexual orientation and gender identity as possible grounds of discrimination ", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Continue the effective implementation of the initiative known as "Towards a National Plan to Combat Discrimination"", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Strengthen programmes aiming at the enjoyment of the fundamental rights of the Bolivian people", - "values": [ - "4 - General action" - ] - }, - { - "text": "Implement the recommendation of the Special Rapporteur on the rights to freedom of peaceful assembly and of association to extend the guarantee of peaceful assembly to non-Omani citizens", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Take steps to strengthen policies aimed at addressing gender-based violence, domestic violence, sexual harassment, rape and child sexual abuse", - "values": [ - "4 - General action" - ] - }, - { - "text": "Withdraw its reservation to articles 13, 15, 17 and 18 of CRC ", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Step up efforts to improve free medical facilities, reduce high infant mortality rates and high teenage pregnancy rates ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Continue implementing the Act on Promotion of Women\u2019s Participation and Advancement in the Workplace, including through the monitoring of the stated goals in the action plans published by relevant government bodies and private companies", - "values": [ - "4 - General action" - ] - }, - { - "text": "Continue its cooperation with the Office of the United Nations High Commissioner for Human Rights, in particular with a view to implementing accepted recommendations made during the universal periodic review\n", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Improve conditions in Swaziland's prisons and detentions centres", - "values": [ - "4 - General action" - ] - }, - { - "text": "Pursue its efforts in the field of promoting the rights of women ", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Act to establish a national human rights institution in accordance with the Paris Principles, as per the recommendations from its 2011 universal periodic review appearance", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Expedite the establishment of a National Human Rights Institution complaint with the Paris Principles", - "values": [ - "4 - General action" - ] - }, - { - "text": "Strengthen cooperation with UN human rights mechanisms, treaty bodies and special procedures", - "values": [ - "4 - General action" - ] - }, - { - "text": "Implement awareness-raising campaigns to educate individuals and traditional authorities on the violation of rights by harmful and discriminatory customary laws and practices, in particular on the need to ensure that these do not violate the rights of women and children", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Take steps to ensure civil and political rights are upheld, including freedom of expression and freedom from arbitrary arrest and detention ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Continue its intense efforts to undertake all necessary measures to ensure fair and equal treatment of all persons, without regard to sex, race, religion, colour, creed, sexual orientation, gender identity or disability, and encourage further steps in this regard ", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Make the necessary legislative changes, including restricting the scope of the Public Order Act, to ensure the freedoms of association and expression are protected, and to ensure the police enforce these and other laws in a proportionate manner", - "values": [ - "4 - General action" - ] - }, - { - "text": "Strengthen the protection measures for human rights defenders, taking due account of gender and cultural aspects", - "values": [ - "4 - General action" - ] - }, - { - "text": "Continue to build public trust in democratic institutions by strengthening the rule of law including as it relates to the independence of the judiciary ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Swiftly adopt measures aimed at incorporating the provisions of the Convention on the Rights of the Child into the Palau National Code", - "values": [ - "4 - General action" - ] - }, - { - "text": "Make every possible effort to proceed with the early conclusion of important international human rights treaties in particular the International Convention for the Protection of All Persons from Enforced Disappearance", - "values": [ - "4 - General action" - ] - }, - { - "text": "Work with the United Nations special procedures and maintain its willingness to cooperate with these mechanisms ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Elaborate legislation for the protections of human rights defenders in consultation with civil society and the relevant international agencies, and adopt such legislation", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Consolidate measures to ensure gender parity and combat violence against women", - "values": [ - "4 - General action" - ] - }, - { - "text": "Conclude the ratification process of the International Convention on the Protection of the Rights of All Migrant Workers and Members of Their Families", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Continue implementing and monitoring the implementation of the two relevant Acts, adopted in 2007 and 2008, aimed at combating violence against women ", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Systematically and continually integrate a gender perspective in the follow-up process to the review.", - "values": [ - "4 - General action" - ] - }, - { - "text": "Continue addressing illiteracy, particularly in rural areas", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Continue its efforts to apply legislation that protects children from economic exploitation and from exposure to hazardous or abusive labour", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Take the necessary steps to ensure that all the operations of intelligence agencies are monitored by an independent oversight mechanism", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Combat further terrorist groups which are destabilizing the country and are using it as logistical base for organizing many forms of trafficking and terrorist acts", - "values": [ - "4 - General action" - ] - }, - { - "text": "Set up strategies to support and strengthen the progress recently achieved in the area of food security", - "values": [ - "4 - General action" - ] - }, - { - "text": "Continue stepping up efforts in the area of fighting trafficking as well as consider the possibility of inviting the Special Rapporteur on trafficking in persons, especially in women and children, to visit the country ", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Provide the National Human Rights Council with the budgetary, administrative and political independence, which is necessary to exercise its new mandate", - "values": [ - "4 - General action" - ] - }, - { - "text": "Recognize and respect the right of the Palestinian people to self-determination.", - "values": [ - "4 - General action" - ] - }, - { - "text": "Acceded to the Arms Trade Treaty and sign the Treaty on the Prohibition of Nuclear Weapons", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Hold security personnel accountable for human rights violations ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Investigate all allegations of persecution based on gender and sexual orientation and that charges be brought against those behind these crimes", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Take proper legal measures, including compensations on the attacks on foreign nationals resulting in loss of life and damage to property in parts of the country", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Establish a clear procedure for the implementation of and financial support for the national strategies and plans for the protection of human rights", - "values": [ - "4 - General action" - ] - }, - { - "text": "Strengthen its measures to address police brutality in accordance with existing international standards governing the use of force", - "values": [ - "4 - General action" - ] - }, - { - "text": "Monitor the implementation of the anti-terrorism law in order to identify any act of repression which affects freedom of association and expression and possible cases of arbitrary detention. In addition, develop activities necessary to eliminate any excesses by the authorities in its application", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Eliminate legislative provisions that are discriminatory against women, children born out of wedlock, ethnic or national minorities, and lesbian, gay, bisexual, transgender or intersex persons, with a view to expressly prohibiting hate speech and penalizing any non-consensual sexual conduct", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Demobilize child soldiers by assuring children serving with pro-government militias (forced or voluntary) are released and adequate resources allocated for disarmament, demobilization, reintegration, repatriation and other activities to halt the unlawful recruitment of children", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Take legislative measures to ensure that children older than 14 years of age are effectively protected from sexual exploitation", - "values": [ - "4 - General action" - ] - }, - { - "text": "Should extend standing invitations to the special procedures mandate holders ", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Take measures aimed at the abolition of the death penalty in law and commit to this abolition at the international level, particularly by voting in favour of General Assembly resolutions prescribing a moratorium on this punishment", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Take active measures in order to ensure the protection of vulnerable groups in the society, such as children, women and the elderly, and to enact legislation on anti-discrimination", - "values": [ - "4 - General action" - ] - }, - { - "text": "Accede to the international instruments to which it is not a party", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Continue to strengthen its efforts to provide for better legal protection for vulnerable groups and to guarantee their rights on the ground.", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Continue efforts to ensure that speech and comments made in the media that incite discrimination do not remain unpunished", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Continue to expand plans and measures to eliminate all forms of physical, sexual and gender-based violence in the country", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Forcefully denounce attacks against human rights defenders and that State authorities give human rights defenders legitimacy and recognition through supportive statements. ", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Allow OHCHR to strengthen its presence in Sri Lanka in order to reinforce its cooperation and monitoring given the particular serious human rights situation.", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Continue actions to improve the realization of the human right to water, under the framework of General Assembly resolution 64/292", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Confirm the non-resumption of executions and the de facto moratorium on the death penalty, and to take all the necessary measures for the final de jure abolition of the death penalty", - "values": [ - "4 - General action" - ] - }, - { - "text": "Sign the Convention on the Rights of Persons with Disabilities and revise building codes to improve disabled access to public buildings", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Ensure that children are not treated as adult offenders in the administration of juvenile justice and that they are deprived of their liberty only as a measure of last resort", - "values": [ - "4 - General action" - ] - }, - { - "text": "Take necessary measures to reduce excessive concentration of media ownership, and develop a new regulatory framework for the creation of new media and the operation of existing ones, in order to ensure genuine freedom of expression", - "values": [ - "4 - General action" - ] - }, - { - "text": "As further gesture of its commitment, consider ratifying the International Convention on the Rights of Migrant Workers and Members of Their Families", - "values": [ - "3 - Considering action" - ] - }, - { - "text": "Ensure that murder of women in Ciudad Juarez are fully clarified, that those responsible and their accomplices, including civil servants who might have not conducted investigations, are brought to justice and that effective measures are taken to prevent such crimes in Ciudad Juarez", - "values": [ - "4 - General action" - ] - }, - { - "text": "Continue national efforts to eliminate the phenomenon of child labour, including through a review of national labour legislations and increase community awareness about this phenomenon", - "values": [ - "3 - Considering action" - ] - }, - { - "text": "Embark on an efficient strategy and remedies to end the lack of decent housing or resettlements for internally displaced persons from Marange region ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Amend the Press and Publications Law to promote an open and free press, including by broadening the definition of a journalist and by removing fines and the requirement for permission prior to publication, and ensuring freedom of Internet media", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Continue implementing the National Strategy to Eradicate Poverty and continue with its actions aimed at improving the health care coverage", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Establish effective measures to implement the Law on the Comprehensive Protection of Children and Adolescents so as to eradicate the violence suffered by children, girls and adolescents", - "values": [ - "4 - General action" - ] - }, - { - "text": "Deal positively with the requests for visits to Iraq by Special Rapporteurs and Representatives of the Secretary General", - "values": [ - "4 - General action" - ] - }, - { - "text": "Continue the fight against trafficking of human beings and international cooperation in this respect", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Adopt a strategy to combat trafficking in persons, particularly women and children, improve the protection of victims and prosecute and punish perpetrators ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Acknowledge-recognize, accept and fully implement the advisory opinion of the International Court of Justice on the wall.", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Continue to take concrete steps to eliminate child, early and forced marriage, such as Malawi's recent passing of the law raising the age of marriage to 18 years", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Take effective measures to combat violence against women.", - "values": [ - "4 - General action" - ] - }, - { - "text": "Accept as soon as possible the outstanding visit requests from the special rapporteurs ", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Adopt measures to address the commission of any criminal acts or violence directed towards people based on their actual or perceived race, national or ethnic origin, language, colour, religion, sex, age, mental or physical disability, sexual orientation, or any other similar factor ", - "values": [ - "4 - General action" - ] - }, - { - "text": "As provided in the peace agreement, support the swift establishment of a hybrid court to investigate cases of genocide, crimes against humanity, war crimes and other serious crimes under international and South Sudanese law ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Adopt a law abolishing the death penalty", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Take an initiative to draft a law that would establish an independent bureau under the direct authority of the Ministry of Citizen's Protection to deal with incidents of arbitrary conduct by law enforcement officials ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Ensure by law that employers leave passports in the possession of the workers themselves ", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Make more efforts to improve the situation in detention facilities especially in women's prisons ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Conduct the reforms to the Civil Code to eradicate discrimination against widows or divorced women ", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Continue its efforts in socioeconomic development and poverty eradication with a view of achieving its Millennium Development Goals target", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Take all necessary action to allow access to the Special Rapporteur on torture and other cruel, inhuman or degrading treatment or punishment ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Commute all death sentences to terms of imprisonment ", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Adopt measures to protect the human rights of migrants, in particular foreign domestic workers through the revision of the legislation that establishes deportation in case of pregnancy or diagnostic of sexually- transmitted diseases such as HIV/AIDS", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Ratify the Convention on the Rights of the Child", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Enhance measures to combat discrimination against women in all sectors of society", - "values": [ - "4 - General action" - ] - }, - { - "text": "Ratify the Convention on the Elimination of All forms of Discrimination against Women", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Ensure effective coordination at the federal, regional and community levels when monitoring the incidence of unlawful ethnic profiling and racism, especially in the context of recent terrorist threats", - "values": [ - "4 - General action" - ] - }, - { - "text": "Encourage further strengthening of the electoral system, particularly through improving the integrity of voter registration ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Define torture as a serious offence, punishable by sanctions commensurate with the gravity of the torture, and ensure that no statement obtained by torture is invoked as evidence in any proceedings", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Continue efforts aimed at ratifying the Second Optional Protocol to the International Covenant on Civil and Political Rights, aiming at the abolition of the death penalty", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Take further measures to implement the overarching and setting-specific recommendations of the UN Study on violence against children.", - "values": [ - "4 - General action" - ] - }, - { - "text": "Ban corporal punishment of children to ensure the full protection and freedom from violence for all children", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Publish the conclusions of the inquiry into the death of an Angolan national during a deportation procedure in October 2010 ", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Apply alternative measures to the detention of asylum-seekers and irregular immigrants, including children and other vulnerable people, and establish a mechanism to examine this practice ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Request technical assistance from OHCHR to submit its fourth report to the Committee on the Elimination of Discrimination against Women as soon as possible and undertake measures to combat attitudes which may be discriminatory against women", - "values": [ - "1 - Minimal action" - ] - }, - { - "text": "Revise the Press and Publication Law with the view to removing criminal liability for activities that constitute the legitimate exercise of freedom of expression ", - "values": [ - "3 - Considering action" - ] - }, - { - "text": "Continue strengthening its efforts to combat domestic violence in all its forms, especially facilitating access by victims to mechanisms for reporting cases ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Take legislative and administrative measures to ban racial profiling in law enforcement ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Sign and ratify the first Optional Protocol to the International Covenant on Civil and Political Rights ICCPR, the International Covenant on Social, Economic and Cultural Rights ICESCR and the Convention on the Elimination of All Forms of Discrimination against Women CEDAW", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Continue to focus political attention and commitment, as well as the necessary administrative resources in Bulgaria, on the crucial issue of promoting efficiency and consistency throughout the justice system, and not least the accountability of the judiciary", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Continue efforts to ensure safe drinking water, in order to achieve the goal of 80 per cent of the population or more by 2012", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Move quickly to introduce comprehensive anti-discrimination legislation to provide equal protection against discrimination for all persons and on all grounds, including sexual orientation or gender identity", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Issue standing invitations to the special procedures for their country visits", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Continue efforts with regard to the ratification and implementation of the core human rights treaties and develop further the institutional framework for the implementation of human rights standards contained therein", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Continue increasing concrete measures within the framework of the 2011-2015 Strategy and its plan of action, for the promotion and protection of gender equality and women's rights", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Strengthen facilities for children in conflict with the law", - "values": [ - "4 - General action" - ] - }, - { - "text": "Take further steps to ensure that the alleged cases of violence against journalists are thoroughly investigated", - "values": [ - "4 - General action" - ] - }, - { - "text": "Ratify the Optional Protocol to ICESCR", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Continue working on establishing human rights institutions in accordance with the Paris Principles", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "To consider the establishment without delay of an inter-ministerial mechanism that would meet regularly, notably in view to examine, in cooperation with the CNCDH, the follow-up to the recommendations made by human rights treaty bodies and competent national institutions", - "values": [ - "3 - Considering action" - ] - }, - { - "text": "Take, without delay, concrete measures for the full integration of persons with disabilities, in particular regarding access to employment, medical care reimbursement, and specific accommodation in public schools, public places and transportation", - "values": [ - "4 - General action" - ] - }, - { - "text": "Undertake a comprehensive study of the repercussions of the ban on facial coverings in public spaces for immigrant women and the effect on their access to public services", - "values": [ - "3 - Considering action" - ] - }, - { - "text": "Provide all those arrested with early access to legal representation", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Revise the legislation linked to apostasy and blasphemy to ensure its conformity with international obligations related to freedom of religion or belief", - "values": [ - "3 - Considering action" - ] - }, - { - "text": "Ensure that no one is detained arbitrarily and that all persons who are charged with an offence have access to a fair and impartial trial, while ensuring the independence of the judiciary", - "values": [ - "4 - General action" - ] - }, - { - "text": "Address the concerns raised by the Special Rapporteur on Torture and other Cruel, Inhuman and Degrading Treatment or Punishment and those raised by the Special Rapporteur on Extrajudicial, Summary or Arbitrary Executions ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Consider ways to further ensure the independence of the judiciary, such as vesting the High Council of Judges and Prosecutors in the Constitution", - "values": [ - "3 - Considering action" - ] - }, - { - "text": "Conclude the ratification process of OP-CAT and the Convention for the Protection of All Persons from Enforced Disappearances (CED), as earlier as possible ", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Provide effective human rights education and training for enforcement officials, including prison guards, and take appropriate actions against human rights violations committed by public actors", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Continue to combat racist and xenophobic attitudes ", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Continue efforts in collecting taxes", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Continue openness to a constructive dialogue with all members of the civil society ", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Ratify the Optional Protocol to the Convention against Torture and make this a priority line of action of the Government", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Continue to provide human rights training to law enforcement officials and ensure accountability of those who commit human rights violations and criminal offenses", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Endeavour to improve on the institutions of health care delivery in order to facilitate accessible health services for its citizens, especially women and children ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Continue to implement socioeconomic and development policies for safeguarding the rights of youth", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Abolish the death penalty and accede to ICCPR-OP2", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Continue to combat all forms of violence against women", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Strengthen the surveillance of the law of 15 March 2004 with the aim of not adversely affecting the education of girls and adolescents who profess the Muslim, Jewish or Sikh religion, and develop all necessary measures to promote inclusion", - "values": [ - "4 - General action" - ] - }, - { - "text": "To facilitate access to files relating to human rights violations committed during the dictatorship,", - "values": [ - "4 - General action" - ] - }, - { - "text": "Step up its efforts to guarantee freedom of expression as well as the safety of journalists in the country ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Respect freedom of religion, and assure a fair and transparent trial for members of the Baha'i faith, in full compliance with the commitments undertaken as a State party to the implementation ICCPR and other human rights instruments", - "values": [ - "4 - General action" - ] - }, - { - "text": "Continue the implementation of ongoing national policies to guarantee for the multi-ethnic people to quality education", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Continue measures to further economic and social development of Xinjiang Uygur Autonomous Region, to protect the right to freedom of religion and belief as well as to maintain stability in this autonomous region", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Strengthen the National Institute for Indigenous Affairs (El Instituto Paraguayo del Indigena, INDI) at the legislative, structural and functional levels", - "values": [ - "4 - General action" - ] - }, - { - "text": "Ensure the effective functioning of the Truth and Reconciliation Commission and full implementation of its recommendations, including prosecution of those responsible for violent insurgency", - "values": [ - "4 - General action" - ] - }, - { - "text": "Establish an independent national human rights institution in compliance with the Paris Principles", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Recognize the competence of the Convention against Enforced Disappearance's monitoring body to receive and consider communications submitted by individuals claiming to be victims of violations of the provisions of this Convention, in compliance with Article 31 ", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Pursue the necessary procedure to accede to the Convention against Torture [1984]", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Strengthen legislative and practical measures to prevent all forms of discrimination against ethnic minorities and foreigners", - "values": [ - "4 - General action" - ] - }, - { - "text": "Ratify the Optional Protocol to the Convention against Torture and Other Cruel, Inhuman, or Degrading Treatment or Punishment ", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Consider ratifying the Convention on the Rights of the Child, the Convention against Torture and the International Convention on the Protection of the Rights of all Migrant Workers and Members of Their Families", - "values": [ - "3 - Considering action" - ] - }, - { - "text": "Continue working to improve its treatment of migrants and refugees in a transparent manner, and with full respect for human rights, especially those of women and children", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Continue progress towards equality between women and men, increasing and strengthening the representation of women in politics, economics, academia and the judiciary. This also implies effective equality before the law, including inheritance rights, equal access to justice, equality in the effective exercise of their rights to education and health, and equal remuneration and access to credit and other financial services", - "values": [ - "4 - General action" - ] - }, - { - "text": "Strengthen the gender perspective within regional integration processes", - "values": [ - "4 - General action" - ] - }, - { - "text": "Investigate all allegations of torture and sexual violence committed in the context of the June 2010 conflict", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Further its endeavours with regard to the smooth and productive activities of the six Special Committees to address the issues of poverty, community mentality, immoral behaviour, crime, family institution and women, and persons with disabilities and the elderly ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Ensure the protection for migrant workers, especially from exploitation and ill-treatment", - "values": [ - "4 - General action" - ] - }, - { - "text": "Further strengthen efforts to prevent sexual exploitation of children", - "values": [ - "4 - General action" - ] - }, - { - "text": "Ratify CEDAW, ICESCR, and CRC in token of its commitment to their implementation worldwide, as well as become party to other international human rights conventions as referred to in the OHCHR report", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Ratify the core international human rights instruments, particularly the International Covenant on Civil and Political Rights and the International Covenant on Economic, Social and Cultural Rights", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Intensify its efforts against harmful traditional practices and in favour of living conditions in prisons and psychiatric hospitals", - "values": [ - "4 - General action" - ] - }, - { - "text": "Ensure the ratification of the recently signed human rights conventions", - "values": [ - "4 - General action" - ] - }, - { - "text": "Guarantee the right to education of all children and take effective measures to substantially increase the rate of attendance in primary schools.", - "values": [ - "4 - General action" - ] - }, - { - "text": "Take legal and administrative measures to address civilian killings by the US military troops during and after its invasion of Afghanistan and Iraq by investigating and bringing perpetrators to justice and remedying the victims and to close its detention facilities in foreign territories like Guantanamo, including CIA secret camps", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Continue efforts to raise awareness and educate about human rights at all levels", - "values": [ - "4 - General action" - ] - }, - { - "text": "Implement compulsory training programmes for all relevant officials on how to identify, deal with and protect the victims of gender-based violence ", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Strengthen its efforts to abolish the death penalty in law", - "values": [ - "4 - General action" - ] - }, - { - "text": "Take appropriate measures to protect the human rights of foreign migrant workers in linkage with the efforts to modify the Kafala system", - "values": [ - "4 - General action" - ] - }, - { - "text": "Develop even closer co-operation with civil society on human rights related issues", - "values": [ - "4 - General action" - ] - }, - { - "text": "Continue its efforts in the protection of all minors in conflict with law by taking into account the principles of best interest of the child, including the possibility of incorporating the principle of restorative justice in its juvenile justice system ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Enhance the independence of the Ombudsman, in accordance with the Paris Principles, ensuring adequate funding for its proper functioning", - "values": [ - "4 - General action" - ] - }, - { - "text": "Develop and adopt legal and administrative measures to investigate and punish acts of discrimination, stigmatization and violence against lesbian, gay, bisexual, transgender and intersex persons", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Continue reinforcing and promoting women\u2019s rights and women\u2019s participation in cultural, social and economic life", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Ratify or access, as appropriate, the Convention on Enforced Disappearances", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Maintain constructive and cooperative dialogue in the field of human rights ", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Continue its efforts in the promotion and protection of the rights of its children", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Implement systems to extend vaccination coverage and monitoring with a view to countering outbreaks of polio, measles and other predictable diseases", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Take steps to establish an A status national human rights institution", - "values": [ - "4 - General action" - ] - }, - { - "text": "Consider changes in legislation and practice in order to ensure that individuals who express conscientious objection to compulsory military service on the grounds of freedom of thought, conscience, disability, and/or religion do not face harassment or prosecution, and that they have the opportunity to perform civilian service of equal length to the one of military service", - "values": [ - "3 - Considering action" - ] - }, - { - "text": "Strengthen its efforts to ensure access to education - and to health care - for all its citizens, including those with disabilities, regardless of ethnicity, religion, tribal affiliation or economic status.", - "values": [ - "4 - General action" - ] - }, - { - "text": "Ratify the core international human rights instruments such as ICCPR", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Take further steps to improve the humanitarian situation", - "values": [ - "4 - General action" - ] - }, - { - "text": "Continue its initiatives to improve the living standards of its people, especially in meeting the basic needs of vulnerable groups ", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Provide a fair judicial process for female domestic workers who commit crimes punishable under the Saudi law", - "values": [ - "4 - General action" - ] - }, - { - "text": "Consider additional measures to ensure that the interests of children are properly taken into account in provisions for asylum seeking families, since they are especially impacted by long delays and uncertainty", - "values": [ - "3 - Considering action" - ] - }, - { - "text": "Lift reservations to CEDAW to ensure greater participation by women in public life, non-discrimination and effective protection against violence against women", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Intensify its efforts to eliminate discrimination based on ethnicity, including by improving access to justice for victims of ethnic discrimination", - "values": [ - "4 - General action" - ] - }, - { - "text": "Continue promoting the freedom of religious belief and safeguarding social and religious harmony among its people", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Continue to improve domestic legislation in order to guarantee the right of detainees to a fair trial", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Take adequate measures to guarantee and monitor the effective implementation of the Prevention of Atrocities Act, providing legal means for an increased protection of vulnerable groups like the Dalit, including the access to legal remedies for affected persons ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Consider withdrawing the reservations to articles 14, 20 and 21 of the Convention on the Rights of the Child", - "values": [ - "3 - Considering action" - ] - }, - { - "text": "Allow visits by the Special Rapporteurs on the independence of judges and lawyers, torture and human rights defenders, and by any other special procedures who request visits to Fiji", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Launch a comprehensive awareness-raising campaign to educate and change societal attitude, particularly those that place women in a lower status than men", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Maintain the provisions of article 261 bis of the Criminal Code, in particular the ones providing for liability in cases of denial, trivialization or seeking justification for genocide or other crimes against humanity", - "values": [ - "4 - General action" - ] - }, - { - "text": "Undertake accurate measures to register associations of distinct communities, including those claiming minority group status", - "values": [ - "4 - General action" - ] - }, - { - "text": "Adapt its asylum system to the evolving international protection needs ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Facilitate complaints by foreign victims of trafficking so that their migration situation is not used against them as a means of coercion by the traffickers themselves ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Continue to pay close attention to the full realization of the rights of women and girls", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Respect and fully engage in international efforts towards a political settlement", - "values": [ - "4 - General action" - ] - }, - { - "text": "Establish close cooperation with the United Nations country team and the Committee on the Elimination of Discrimination against Women in order to address concerns raised by them regarding the application of the Act on Sexual Harassment in the Workplace and in Teaching, particularly in the private sector ", - "values": [ - "4 - General action" - ] - }, - { - "text": "That social integration of Roma becomes a reality", - "values": [ - "4 - General action" - ] - }, - { - "text": "Prioritize combating poverty and unemployment, which are two essential issues to promote social and economic rights, which necessitate the support of the international community and its relevant institutions ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Continue to fight against female genital mutilation and early marriages", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Reform the press law in order to lift existing restrictions on the media", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Adopt a comprehensive law on environmental protection to provide the necessary basis for continued sustainable development ", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Ratify the Rome Statute, including accession to the Agreement on its Privileges and Immunities ", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Continue its efforts in the framework of the implementation of the national action plan to combat corruption and training programmes directed at public officials in this field", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Repeal the legal provisions making same-sex intimacy among men- described as "gross indecency and buggery"-illegal", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Amend legislation that allows corporal punishment, including amputation, and criminalize torture", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Continue its efforts to successfully achieve the Child Development Plan 2011-2020 set by the State Council in 2011", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Improve the capacity and training of the security forces in the area of human rights and moderate use of force, both in their response to peaceful protests and in places of detention", - "values": [ - "4 - General action" - ] - }, - { - "text": "The UK is committed to updating the Working Group on progress through a midterm report in 2014. As well as updating the Working Group on progress on the recommendation the UK accepted at its 2012 review it will also provide updates on its position against those recommendations the UK didn't accept. This is part of a commitment to NHRIs and NGOs to keep all recommendations under review and recognition that the main objective of the UPR - of continual improvement of human rights ", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Adopt measures to guarantee the full independence and impartiality of the National Human Rights Commission, ensure that its members nomination process is transparent and subject to independent oversight and make the Commission's findings publicly available", - "values": [ - "4 - General action" - ] - }, - { - "text": "Establish an official moratorium on executions and abolish the death penalty for all crimes", - "values": [ - "3 - Considering action" - ] - }, - { - "text": "Adopt the draft law on domestic and sexual violence against women, and strengthen support services in shelters and legal assistance to the victims", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Put in place comprehensive measures to prevent and address domestic violence and ensure that women have access to immediate means of redress and protection and that the perpetrators are prosecuted", - "values": [ - "4 - General action" - ] - }, - { - "text": "The delegation expressed the Government's commitment to continue its work towards further improvement of national legislation and practice in human rights, taking into account international standards and commitments.", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Develop and promote national policies in the field of child rights protection, in particular for vulnerable groups of the population", - "values": [ - "4 - General action" - ] - }, - { - "text": "Incorporate clear definitions of "sale of children" and "trafficking in children" in the Criminal Code and Anti-trafficking Act respectively, and specify the penalties for offenders, under the Criminal Code, in accordance with the Palermo Protocol", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Decriminalize same-sex relationships, protect LGBTI from violence from other members of the society and fight against prejudices against LGBTI persons by awareness raising campaigns ", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "All detainees be given the reasons for their detention respecting their fundamental rights during detention.", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Continue its efforts in the promotion and protection of the rights of persons with disabilities, including its early ratification of Convention on the Rights of Persons with Disabilities (CRPD)", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Ensure access to health care, adequate housing, education and safe drinking water and sanitation for all, especially people living in - ger - districts ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Proceed with the ratification of the Optional Protocol to the Convention against Torture, the Convention on the Rights of Persons with Disabilities and its optional protocol, the International Convention for the Protection of All Persons from Enforced Disappearance, the International Convention on the Protection of the Rights of All Migrant Workers and Members of Their Families and the Optional Protocol to the International Covenant on Economic, Social and Cultural Rights", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Strengthen efforts undertaken to combat violence against women", - "values": [ - "4 - General action" - ] - }, - { - "text": "Provide the legal and operational framework for an independent and effective judiciary, and undertake reform of the Prosecutor's Office that ensures its independence and impartiality and separate the criminal prosecution functions from those investigating alleged abuse ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Adopt a law on violence against women and ensure its implementation ", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Engage in active awareness-raising policy and systematically condemn racist and xenophobic violence ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Continue taking measures aimed to stop the spread of HIV/AIDS and to prevent mother-to-child transmission", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Ratify ICCPR and its Optional Protocols, CEDAW and its Optional Protocol, CAT, two Optional Protocols to CRC, 1951 Convention relating to the Status of Refugees and its 1967 Protocol as well as the 1954 Convention relating to the Status of Stateless Persons and the 1961 Convention on the Reduction of Statelessness ", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Reinforce its legislative framework and institutional mechanisms to combat all discriminatory practices and measures based on race, colour, religion and origin or other status ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Take targeted measures to fight the use by political parties or their representatives of statements inciting racial hatred and xenophobia ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Provide adequate capacity-building programmes for judges, prosecutors and law enforcement officials to better implement laws criminalizing violence against women and better assist and protect women victims of violence", - "values": [ - "3 - Considering action" - ] - }, - { - "text": "Respect and promote the right to freedom of expression, association and assembly, create an enabling environment for the establishment and operation of non-governmental organizations and media and remove all legal administrative and procedural obstacles which prevent this ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Take all necessary legal and practical measures to eliminate FGM, including considering amendments to the penal code with provisions to specifically prohibit this practice ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Circulate and implement the recently adopted rules on the treatment of women prisoners and non-custodial measures for women offenders, otherwise known as the Bangkok Rules, and seek necessary support from such relevant agencies as UNODC and OHCHR ", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Impose a moratorium on the execution of death sentences ", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Take effective measures to curb racial hatred and religious intolerance, by strengthening its measures to prevent and combat xenophobia and racial prejudice among politicians, public officials and the general public ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Continue adopting practical measures for the implementation of protection of children, and the eradication of violence and abuse, particularly in homes, in schools and in other institutions involved in the care and protection of children ", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Organize awareness-raising campaigns to combat all forms of discrimination including those based on gender, ethnicity, sexual orientation or gender identity", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "In regard to immigration and asylum matters generally, steps were being taken to reduce unacceptable delays in parts of the system. Legislation was before Parliament which would simplify procedures so that decisions on asylum, protection and immigration could be taken speedily and in a transparent manner", - "values": [ - "4 - General action" - ] - }, - { - "text": "Ratify the Optional Protocol to the International Covenant on Economic, Social and Cultural Rights and the Optional Protocol to the Convention on the Rights of Persons with Disabilities ", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Continue to strengthen the national framework for the protection of children\u2019s rights", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "The Cuban Government remains strongly committed to continuing to issue invitations to visit the country to the special mandate holders of the Human Rights Council established on a non-discriminatory basis", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Open a credible and independent process for investigating the deaths and the events surrounding the March 2009 military coup, as called for by the Special Rapporteur on extrajudicial, summary or arbitrary executions and the Special Rapporteur on freedom of opinion and expression", - "values": [ - "4 - General action" - ] - }, - { - "text": "Improve conditions in prisons centers, including alternative mechanism to deprivation of liberty such as community services ", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Implement programmes and activities to support the empowerment of women and to raise their awareness and capacity to enjoy their rights ", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Expand activities to promote access to quality education for all children, in particular ensuring that children whose first language is different from the language of instruction are not at a disadvantage", - "values": [ - "4 - General action" - ] - }, - { - "text": "Continue to adopt and implement effective measures to fight violence against women", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Ratify the CRPD and its Optional Protocol", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Protect Mayan customary property rights in accordance with Mayan customary laws and land tenure practices in consultation with affected Mayan people of the whole Toledo district.", - "values": [ - "4 - General action" - ] - }, - { - "text": "Provide conditions that are conducive to the development of free and critical media, and improve foreign journalists' access to the country, both on a permanent and on an occasional basis ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Continue its efforts to expand the coverage of and access to basic health services ", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Continue the efforts to mobilize all stakeholders who can support its initiatives to promote and protect human rights ", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Consider decriminalizing consensual same-sex relations", - "values": [ - "3 - Considering action" - ] - }, - { - "text": "Ratify the Optional Protocol to the Convention against Torture and other Cruel, Inhuman or Degrading Treatment", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "The judiciary and other relevant authorities to provide justice, reparation and rehabilitation to the victims of wartime rape and sexual violence", - "values": [ - "4 - General action" - ] - }, - { - "text": "Develop the capacity of the justice sector to ensure that court cases are brought to trial in a reasonable time", - "values": [ - "4 - General action" - ] - }, - { - "text": "Consider the ratification of the Convention on Migrant Workers and Members of Their Families", - "values": [ - "3 - Considering action" - ] - }, - { - "text": "Consider urgently improvements to conditions for psychiatric patients.", - "values": [ - "3 - Considering action" - ] - }, - { - "text": "Take the necessary measures to ensure that those responsible for acts of violence and sexual abuse of girls, especially in the education system, are effectively punished and removed from their posts", - "values": [ - "4 - General action" - ] - }, - { - "text": "Adopt targeted policies to promote the effective equality of people of African descent", - "values": [ - "4 - General action" - ] - }, - { - "text": "Adopt comprehensive legislation on hate speech and incitement to hatred", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Cooperate with the United Nations Special Procedures ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Undertake comprehensive reporting and statistical analysis of the scale and character of violence against women and children to determine if Norway's Action Plan to Combat Domestic Violence 2008-2011 is curbing the severity of the phenomenon ", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Take clear measures to combat trafficking in persons, particularly trafficking of women and children for the purpose of forced labour and sexual trade", - "values": [ - "4 - General action" - ] - }, - { - "text": "Expand access to education by offering free public primary education", - "values": [ - "4 - General action" - ] - }, - { - "text": "Develop policies to improve information infrastructure for the benefit of the Cuban society ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Repeal the requisite legislation to stop violence and discrimination against religious minorities", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Ensure the independence of the judiciary, including by investigating allegations of corruption", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Ensure that domestic legislation is in line with international human rights standards", - "values": [ - "4 - General action" - ] - }, - { - "text": "Ensure that the procedure of granting legal registrations for NGOs and religious groups be fair, prompt and non-discriminatory ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Proceed with the finalization of the draft constitution and take steps to make its provisions related to women's rights in matters of inheritance, succession and land rights, applicable", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Continue strengthening the role and contribution of the family in society ", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Submit its periodic reports to the relevant treaty bodies and make responses to the letters of allegations and urgent appeals as well as to questionnaires on thematic issues in due course ", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Guarantee the transparency of the democratic processes and the full respect of its norms, such as, inter alia, the freedom of expression or opinion and the freedom of assembly and association", - "values": [ - "4 - General action" - ] - }, - { - "text": "Establish and support a national human rights institution in conformity with the Paris Principles", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Undertake awareness-raising and education on violence against women", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Take steps to ensure the total independence and impartiality of the judiciary", - "values": [ - "4 - General action" - ] - }, - { - "text": "Without delay, meet its stated intent of establishing an independent national human rights institution in accordance with the Paris Principles ", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Ensure in national legislation that the minimum age for marriage is 18 years for both girls and boys and take all necessary measures to prevent and eliminate child sex tourism and exploitation of child labour", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Implement the national action plan to combat corruption, including strengthening of laws and enforcement, and provide greater resources to independent anti-corruption bodies", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Make further progress with the domestic implementation of international conventions it has ratified and adopt stringent measures, including legislation and awareness-raising campaigns, with a view to eliminating traditional and cultural practices that discriminate against women and girls", - "values": [ - "4 - General action" - ] - }, - { - "text": "Implement the provisions of the previously accepted recommendation to increase official development assistance to 0.7 per cent of its national income", - "values": [ - "3 - Considering action" - ] - }, - { - "text": "Adopt measures to prevent and eliminate all abuses of sexual violence against girls and women and ensure that perpetrators are adequately punished", - "values": [ - "4 - General action" - ] - }, - { - "text": "Accede to the Rome Statute and fully align national legislation with the provisions of the Statute", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Harmonize the procedure for transmitting Bhutanese nationality in order to allow women to transmit Bhutanese nationality to their children on the same terms as men ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Proceed to the ratification of International Convention for the Protection of All Persons from Enforced Disappearance as soon as possible and fully recognize the competence of the Committee on Enforced Disappearance, as provided for in articles 31 and 32 of the Convention ", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Incorporate in the Criminal Code specific provisions on domestic violence along with concrete sanctions against the perpetrators of domestic violence ", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Speed up the adoption process of the draft bill setting up a 30 per cent quota for the representation of women in decision-making bodies ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Defend the right to life, based on article 15 of the Constitution.", - "values": [ - "4 - General action" - ] - }, - { - "text": "Cease trials of civilians in military courts", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Release all children from immigration detention as a matter of priority", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Criminalize discrimination based on caste, gender, religion, ethnicity, political belief or disabilities ", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Reinforce the rights of women within the labour market, regardless of age or ethnicity.", - "values": [ - "4 - General action" - ] - }, - { - "text": "Enact legislation that criminalizes all forms of trafficking in persons and provides appropriate prescribed penalties", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Take measures to expedite the enactment of the adoption bill and the child care and protection bill by Parliament", - "values": [ - "4 - General action" - ] - }, - { - "text": "Continue to spearhead progress toward gender equality and development for women in areas of education and employment.", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Consider the possibility of signing or acceding to the remaining international human rights treaties, including CRPD, and domesticate them in its national legislation ", - "values": [ - "3 - Considering action" - ] - }, - { - "text": "Adopt a national plan of action on children and children's rights ", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Eliminate the persistent wage gap for labour between women and men by eliminating the significant segregation between the genders on the labour market", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Pursue it fruitful collaboration with international mechanisms for the protection and promotion of human rights to continually improve the human rights situation on its territory ", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Adopt and implement the legislation and policies concerning children, especially concerning birth registration, violence against children, juvenile justice, street children to name just a few", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Enhance, through consultation mechanisms, the participation of indigenous peoples in the determination of public policies that affect them ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Operationalize the system of management of cases in all courts to ensure effective treatment of criminal cases by the judiciary", - "values": [ - "4 - General action" - ] - }, - { - "text": "Promote the rights to freedom of expression, association and assembly without discrimination of members of the LGBT community ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Strengthen its efforts to deal with human trafficking offences through studying international best practice and developing domestic legislation in conformity with international standards, establishing as appropriate institutions and agencies and strengthening cooperation with international organizations and bodies", - "values": [ - "4 - General action" - ] - }, - { - "text": "Replace criminal defamation laws with civil laws that are more narrowly defined, thus ensuring greater compliance with international obligations under the International Covenant on Civil and Political Rights, including a defence for the accused", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Further promote equal access to justice for all, especially by providing more legal aid to the poor and marginalized", - "values": [ - "4 - General action" - ] - }, - { - "text": "Accede to the International Convention for the Protection of All Persons from Enforced Disappearance - CED -, and recognize the competence of the Committee on enforced disappearance under articles 31 and 32 of the Convention ", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Enact national legislation to protect the rights of the child", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Continue the ratification of international human rights instruments, considering, in particular, ratification of the Rome Statute ", - "values": [ - "3 - Considering action" - ] - }, - { - "text": "Ensure a safe working environment for human rights defenders, by modifying the legislation that allows the denial of legal registration of organizations specialized in reproductive and sexual rights of women as well as associations defending the rights of lesbian, gay, bisexual, transgender and intersex persons", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Release complete information on the execution of Mr. Andrei Zhuk and Mr. Vasily Yuzepchuk in Minsk in March of this year ", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Continue progress in the eradication of poverty, with the application of its sound social policies to improve the quality of life of its people, especially those most in need, with the necessary support of international cooperation", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Continue to promote the development of the education system ", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Develop a draft law guaranteeing the protection of human rights defenders.", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Adopt measures to continue to democratize local government elections, based on equal suffrage", - "values": [ - "4 - General action" - ] - }, - { - "text": "Implement strategies to solve problems facing education, particularly at the elementary level ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Increase its efforts to eradicate any types of stereotypes against women ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Adopt concrete measures to strengthen the protection of migrants, refugees and asylum seekers", - "values": [ - "4 - General action" - ] - }, - { - "text": "Introduce legislation to prohibit trafficking in children ", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Create an appropriate legal framework to guarantee the rights of human rights defenders, and to ensure that violence, threats and intimidation against them will be prosecuted", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Ratify the CPED, OP-CAT, the Rome Statute of the ICC, and the Additional Protocols I and II of the Geneva Conventions of 12 August 1949", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Extend the protection afforded by labour law to the entire range of domestic workers ", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Continue to prioritize policy aimed at promoting equality and repairing social distortions and disparities ", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Adopt specific measures to protect boys, girls and adolescents from all violence against them, to eradicate child labour, to combat the exploitation of boys, girls and adolescents and to prohibit all forms of corporal punishment", - "values": [ - "4 - General action" - ] - }, - { - "text": "Take measures to guarantee thorough investigation and prosecution of crimes of sexual violence, including relevant training of law enforcement officials, and implement national human rights awareness-raising focused on women's rights ", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Sign and ratify the International Covenant on Civil and Political Rights and the International Covenant on Economic, Social and Cultural Rights", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Continue to take measures to ensure the elimination of poverty ", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Enact legislation to explicitly prohibit corporal punishment of children", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Submit initial report on CRC.", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Take steps to ensure that all military engagement is undertaken in a manner consistent with international humanitarian law to minimize the sufferings of civilians ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Re-introduce the moratorium on executions with a view to definitively abolishing the death penalty", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Further invest in obstetric clinics and in the formation of skilled birth attendants.", - "values": [ - "4 - General action" - ] - }, - { - "text": "Take measures in order to combat hate speech and xenophobia", - "values": [ - "4 - General action" - ] - }, - { - "text": "Consider ratifying the International Covenant on Civil and Political Rights without further delay in order to demonstrate the earnest commitment of Nauru to respect the civil and political rights of all those within its borders", - "values": [ - "3 - Considering action" - ] - }, - { - "text": "Maintain the momentum in actively pursuing efforts to further protect the rights of women and children, especially through the enactment of legislation ", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Pursue their efforts to reinforce legislative and institutional guarantees for human rights defenders and journalists exercising their right to freedom of expression and strengthen the fight against impunity in this regard", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Consider ratifying the Rome Statute on the International Criminal Court", - "values": [ - "3 - Considering action" - ] - }, - { - "text": "Continue to refine its domestic legislative, institutional and administrative structures to strengthen its work in the field in human rights", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Implement the accepted recommendations from the first universal periodic review of increasing the oversight of extracting and logging industries as well as related enterprises and businesses, with a view to mitigating the adverse human rights effects on affected populations and reducing its negative impact in the environment establishing more rigorous and transparent measures ", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Continue strengthening the protection of all foreign labourers through the adoption of legislation which complies with international human rights standards ", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Adopt the necessary measures to ensure an adequate implementation of reforms in the area of gender violence ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Continue advancing the right to housing for farmers and herdsmen", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Further improve the living conditions in State penitentiaries and juvenile detention centres", - "values": [ - "4 - General action" - ] - }, - { - "text": "Revise the mandate of the Parliamentary Ombudsman to enable it to address racial discrimination in the private sphere and not just racial discrimination involving the government and State entities", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Continue with actions aimed at improving the treatment of children with disabilities and children affected and/or infected by HIV/AIDS", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Sign and ratify the Convention on the Elimination of All Forms of Discrimination against Women (CEDAW), adopt national plans to combat violence against women, particularly female genital mutilation, and promote equal opportunities for men and women", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Continue intensifying its efforts to combat trafficking in persons, including by the adoption of a regulatory framework to address the exploitation of women and children", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Expedite the adoption of the asylum bill which is pending before the National Assembly", - "values": [ - "4 - General action" - ] - }, - { - "text": "Strengthen measures on rural development", - "values": [ - "4 - General action" - ] - }, - { - "text": "Envisage the creation of a national human rights institution in conformity with the Paris Principles", - "values": [ - "3 - Considering action" - ] - }, - { - "text": "Evaluate the possibility of ratifying the International Convention for the Protection of All Persons from Enforced Disappearance ", - "values": [ - "3 - Considering action" - ] - }, - { - "text": "Adopt and implement expeditiously the Prisons Bill and Legal Aid Bill and other measures needed towards humanization of its penitentiary system ", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Amend its sanction and regulation system (on freedom of press) so it falls within the purview of the judicial authority and not the administrative authority ", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Continue its efforts with regard to the smooth and productive activity of the National Independent Human Rights Commission within the country", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Adopt specific legislation on human trafficking ", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Review of alternative ways to handle petty crime and of measures to improve the situation of inmates in prisons ", - "values": [ - "3 - Considering action" - ] - }, - { - "text": "Carry out with more transparency the ongoing investigations concerning the alleged existence of secret detention centers on its territory and the transfer of prisoners in connection with the fight against terrorism ", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Investigate all complaints of torture and adopt necessary preventative measures to eliminate this practice", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Ensure that all hate crimes against lesbian, gay, bisexual, transgender and intersex persons are thoroughly investigated and prosecuted and seek to reduce hate by integrating human rights education into school curricula", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Rapidly review the Family Code to abrogate all discriminatory provisions against women.", - "values": [ - "3 - Considering action" - ] - }, - { - "text": "Undertake in an effective manner the necessary amendments to fully incorporate the Convention on the Elimination of All Forms of Discrimination against Women (CEDAW) into the domestic legal system as soon as possible ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Step up efforts to strengthen the national mechanism for the advancement of women and to provide such mechanism with adequate resources ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Address proactively issues of racial and all forms of discrimination in Georgia", - "values": [ - "4 - General action" - ] - }, - { - "text": "Implement the recommendations of the Committee on the Elimination of Discrimination against Women from 2006 to bring article 7 of the Constitution and section 10 of the Citizenship Act in line with article 9 of the Convention on the Elimination of All Forms of Discrimination against Women (CEDAW)", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Continue its implementation of national policies aimed at the protection and promotion of human rights", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Move swiftly to put in place policies and procedures that will better protect the private and financial information of international human rights defenders and activists who take refuge in Lithuania", - "values": [ - "4 - General action" - ] - }, - { - "text": "Continue its efforts to reform laws on the rights of women and children in the justice sphere", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Strengthen the efforts aimed at ensuring equal access to citizenship and ensure that the administrative procedures and legislative provisions on citizenship do not put at a disadvantage persons of non-Croat ethnic origin", - "values": [ - "4 - General action" - ] - }, - { - "text": "Ratify the core international human rights instruments such as ICPPED", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Continue efforts in relation to the reform of the penal code aimed at reducing the duration of preventive detention and to limit its use in conformity with the principle of presumption of innocence", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Establish a national human rights institution of human rights, that is financially and legally independent, in line with the Paris Principles", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Further continue in fighting harmful traditional practices", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Promote in the international level Cuban educational programmes, such as "Yes, I can" and "Yes, I can continue"", - "values": [ - "1 - Minimal action" - ] - }, - { - "text": "Review the Penal Code and the Law on Criminal Proceedings in order to overcome shortcomings in the procedure and to ensure the right to fair trial, adequate defence and prompt access to justice for all", - "values": [ - "3 - Considering action" - ] - }, - { - "text": "Consider issuing a standing invitation to all special procedures of the Human Rights Council", - "values": [ - "3 - Considering action" - ] - }, - { - "text": "Continue to combat discrimination suffered by the children of marginalized and vulnerable groups and eradicate gender-based stereotypes. Along these lines, ensure the continuation of the Strategic Education Plan 2009-2013, to offer the same opportunities to all children and youth regardless of race, colour, sex, language, belief, religion, political beliefs, circumstances of birth and social conditions", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Criminalize marital rape and establish a common minimum age for marriage at 18 years old", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Strengthen efforts on the implementation of the Gender Equality Act", - "values": [ - "4 - General action" - ] - }, - { - "text": "Consider the establishment of an office of the Ombudsman for Children's Rights devoted purely to the protection of the rights of the child", - "values": [ - "3 - Considering action" - ] - }, - { - "text": "As recommended by CRC, solicit and receive technical and financial assistance from the international community, particularly from United Nations bodies and programmes, to give tangible form to various sections of the poverty reduction strategy paper, especially restoration of security, consolidation of peace and prevention of conflict, promotion of good governance, reconstruction of the economy and diversification and development of human capital", - "values": [ - "1 - Minimal action" - ] - }, - { - "text": "Review domestic laws that have an impact on equality between women and men, in particular those that govern rights of succession, the disposal of immovable property and the establishment of a minimum age for marriage", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Address more effectively cases of gender-based violence including by their proper and effective investigations and adequate prosecution of perpetrators ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Scale up the implementation of inclusive education policies, paying special attention to vulnerable groups", - "values": [ - "4 - General action" - ] - }, - { - "text": "Intensify its efforts to address the issue of impunity.", - "values": [ - "4 - General action" - ] - }, - { - "text": "Strengthen efforts designed to prohibit racist and xenophobic discourses", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Eritrea is committed to halting the spread of HIV and other infectious diseases.", - "values": [ - "4 - General action" - ] - }, - { - "text": "Continue taking efficient measures with a view to eliminating differences in salaries and other terms of employment between men and women who perform work that is regarded as equal or equivalent", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Continue adopting programmes and policies that guarantee education for all, particularly in remote areas", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Continue efforts to achieve further economic empowerment of women", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "That the President of the Gambia will use his executive power by refraining from signing the Bill amending section 144a of the Criminal Code into law, and that the Government of the Gambia eliminates all existing legislation penalizing sexual orientation or gender identity", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Continue to address the inequalities affecting particularly the marginalized Roma community.", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Issue a standing invitation to all the special procedures mandate holders", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Ratify the International Convention for the Protection of All Persons from Enforced Disappearance", - "values": [ - "3 - Considering action" - ] - }, - { - "text": "Promptly implement all recommendations put forward by the National Human Rights Commission regarding prosecutions and/or departmental actions against alleged human rights violators", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Legally ban discriminatory ethnic profiling ", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Continue efforts to guarantee health care at both levels identified ", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Undertake a revision of its reservations to the International Covenant on Civil and Political Rights and other core international human rights treaties with a view to deepen and broaden the human rights protection in the country", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Pay particular priority for improving reception conditions for refugees and migrants and continue its efforts for a more efficient asylum procedure", - "values": [ - "4 - General action" - ] - }, - { - "text": "Ensure the elimination of human rights abuses against prisoners and detainees, and to bring to justice those responsible for committing these offences and ensure redress for victims", - "values": [ - "4 - General action" - ] - }, - { - "text": "Provide, in accordance with its obligations under international human rights law, effective protection for the family as the fundamental and natural unit of society", - "values": [ - "4 - General action" - ] - }, - { - "text": "Set appropriate quotas to accelerate the equal representation of women in all areas of public life", - "values": [ - "4 - General action" - ] - }, - { - "text": "Pursue efforts to embark on judicial reforms that would help to modernize the human rights system, and to align its law with international legal instruments to which Angola is party", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Adopt measures to safeguard the independence of the judiciary in line with the provisions of the United Nations Basic Principles on the Independence of the Judiciary", - "values": [ - "4 - General action" - ] - }, - { - "text": "Ratify the Optional Protocol to the Convention on the Elimination of All Forms of Discrimination against Women ", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Adopt provisions regarding alternatives to custody.", - "values": [ - "4 - General action" - ] - }, - { - "text": "Follow up on the implementation of the Incheon Declaration for inclusive and equitable quality education", - "values": [ - "4 - General action" - ] - }, - { - "text": "Continue working to fight against human trafficking and share its best practices in that regard", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Strengthen policies to combat all forms of violence and discrimination against women and girls, including by criminalizing marital rape and prohibiting forced and early marriages", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Further enhance measures against violence against women and children, including by ensuring appropriate assistance to victims and active detection efforts by law enforcement authorities ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Undertake a thorough assessment of the issue of trafficking in persons and take adequate measures, including enactment of adequate legislation to combat the practice as recommended by the UNHCR ", - "values": [ - "3 - Considering action" - ] - }, - { - "text": "Support international efforts to help restore the rule of law and develop transitional justice in the country", - "values": [ - "4 - General action" - ] - }, - { - "text": "Take steps to ensure that the 2006 Press Law is fully enacted and that independent reporting is recognized", - "values": [ - "4 - General action" - ] - }, - { - "text": "End solitary confinement sentences and ensure that those sentenced to life imprisonment benefit from the United Nations Standard Minimum Rules for the Treatment of Prisoners, and adopt urgent measures against overcrowding", - "values": [ - "4 - General action" - ] - }, - { - "text": "Continue efforts aimed at establishing and implementing a consultation mechanism with indigenous peoples, in accordance with national and international legislation", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Implement all measures to combat impunity, initiate proceedings against the perpetrators of human rights violations and provide compensation for victims, as envisaged in the final report of the National Commission to establish the facts on the excesses and abuses committed during the recent event ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Harmonize legislation on asylum seekers and refugees in line with the international framework in force", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Strengthen the State institutional gender framework and the training of its human resources at the central, departmental and municipal levels to promote gender equity and equality, in order to increase its impact on the transformation of organizational structures, policies and programmes", - "values": [ - "4 - General action" - ] - }, - { - "text": "Continue its efforts for promotion of human rights with particular attention to the fulfilment of the NHRAP for 2012 - 2015", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Implement its comprehensive health promotion policy and its policy framework for the elimination of discrimination against women", - "values": [ - "4 - General action" - ] - }, - { - "text": "Maintain the de facto moratorium on the death penalty and consider abolishing the death penalty all together", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Continue to fight against all forms of discrimination", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Take further measures to implement the Anti-Discrimination Law, including through awareness raising activities ", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Design and implement programmes to ensure the respect for and protection of the rights of women and children, in particular the rehabilitation of women, children and families affected by conflict ", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Continue to increase the investment in poverty alleviation and gradually raise the standards for poverty alleviation, and thereby reduce the number of impoverished population", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Implement the recommendations of the Truth and Reconciliation Commission, in particular with regard to victim's compensation and institutional reforms", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Adopt a national action plan for child rights in the juvenile justice system ", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Develop a global strategy to address existing divisions covering all sectors, to overcome all discriminatory practices", - "values": [ - "4 - General action" - ] - }, - { - "text": "Seek the necessary assistance from the international community that would enable Togo to meet the multiple challenges that it faces, with a view to improving the general living conditions of its population ", - "values": [ - "1 - Minimal action" - ] - }, - { - "text": "Enhance the rights of prisoners by adopting measures that include reducing overcrowding in prison facilities, adopting alternative measures to pretrial detention and ensure fair treatment during judicial proceedings at all stages, in line with international treaties", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Take further concrete measures to enhance women's access to health care, in particular sexual and reproductive services, as recommended by the Committee on the Elimination of Discrimination against Women, among others.", - "values": [ - "4 - General action" - ] - }, - { - "text": "Adopt measures aiming at combating effectively the trafficking of persons and the exploitation of women and children", - "values": [ - "4 - General action" - ] - }, - { - "text": "Review all laws on public assemblies including the Law No. 10 of 1914 on gatherings and the Law No. 107 of 2013 on public meetings to align them with Egypt's international human rights obligations", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Increase the budget allocated to health care and take all necessary measures to strengthen a national health-care system accessible to all, without discrimination", - "values": [ - "4 - General action" - ] - }, - { - "text": "Pursue its efforts in the area of economic development, and do not hesitate to ask for technical and material assistance in this regard ", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Further enhance efforts to address the issue of domestic violence and victim assistance", - "values": [ - "4 - General action" - ] - }, - { - "text": "Continue developing awareness-raising measures in educational policies in fighting gender-based violence in order to tackle the deeply rooted stereotypes vis-a-vis women ", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Increase efforts aimed at the realization of further progress in the process of strengthening economic, social and cultural rights, including in particular the rights of women and children and persons with disabilities", - "values": [ - "4 - General action" - ] - }, - { - "text": "Speed up the process of creating a National Human Rights Commission in conformity with the Paris Principles", - "values": [ - "4 - General action" - ] - }, - { - "text": "Ensure that the National Human Rights Council is fully compliant with the Paris Principles", - "values": [ - "4 - General action" - ] - }, - { - "text": "Implement the recommendations of the report of the Parliamentary Assembly of the Council of Europe on disappeared persons in Belarus, and ratify the International Convention for the Protection of All Persons from Enforced Disappearance ", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Implement its recently enacted National Action Plan on Women, Peace and Security, and in the ongoing conflict with ISIL, take measures to promote the protection of women, including those held captive by ISIL", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Further fulfil the internationally taken obligations as well as join new human rights international instruments ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Promote responsible freedom of expression and effectively use the Cyber Security Strategy of Latvia 2014-2018 as a platform to combat hate crimes in the virtual environment", - "values": [ - "4 - General action" - ] - }, - { - "text": "Adopt and implement comprehensive anti-discrimination legislation in line with international human rights standards", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Continue to promote and protect the rights of children and women ", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Ratify the Convention on the Elimination of All Forms of Discrimination against Women ", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Adopt various measures for prevention and early diagnosis of transmissible diseases and pandemics, notably HIV-AIDS, by giving priority to vulnerable groups, particularly national minorities, the poor and sex workers", - "values": [ - "4 - General action" - ] - }, - { - "text": "Engage with relevant international partners and civil society to develop appropriate mechanisms of prevention and response to deal with violence and violations of human rights", - "values": [ - "4 - General action" - ] - }, - { - "text": "Continue the efforts to draw up a national plan to provide health care to all without discrimination", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Sign and ratify the core international instruments, including the International Convention on the Protection of the Rights of All Migrant Workers and Members of Their Families", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Bring its legislation in line with the principle of gender equality, and that the government effectively enforces the laws already in place, especially those pertaining to domestic violence and rape", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Continue strengthening the institutional capacity of promotion and protection of human rights", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Extend an open and permanent invitation to the United Nations special procedures mandate holders ", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Consider lifting reservations to articles 14, 20 and 21 of CRC and articles 9 and 29 of CEDAW ", - "values": [ - "3 - Considering action" - ] - }, - { - "text": "Take effective measures to efficiently implement the 55 concrete measures identified by the Government towards the elimination of obstacles for women in accessing the labour market ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Favourably consider resuming, as soon as possible, cooperation with OHCHR in Angola", - "values": [ - "3 - Considering action" - ] - }, - { - "text": "Devote greater attention to the rigorous enforcement of the rights of the autochthonous Italian minority in Slovenia", - "values": [ - "4 - General action" - ] - }, - { - "text": "Ensure that all trials, including those of terrorism suspects, comply with international standards for fair trials", - "values": [ - "4 - General action" - ] - }, - { - "text": "In line with the recommendation by the Committee on the Elimination of Discrimination against Women, consider introducing legislation which includes a definition of discrimination against women in accordance with article 1 of the Convention on the Elimination of All Forms of Discrimination against Women", - "values": [ - "3 - Considering action" - ] - }, - { - "text": "Ensure speedy passage of the bills on the establishment of a NHRI and Office of the Ombudsman.", - "values": [ - "4 - General action" - ] - }, - { - "text": "Promptly establish a National Human Rights Institution that operates in accordance with the Paris Principles, seeking international assistance as necessary ", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Take further measures to provide security of tenure and promote access to water, sanitation, education, health and employment for all Roma communities", - "values": [ - "4 - General action" - ] - }, - { - "text": "Continue strengthening its development policies, as well as its social protection programmes, that it is already implementing, to give a better quality of life and well-being to its people, and for this purpose it is very important to have the technical cooperation and technical assistance that the country requires", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Continue to work with the World Health Organization and other relevant international agencies to further reduce the prevalence rate of HIV/AIDS and enhance access to quality health services for its people ", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Ratify the Rome Statute and integrate its provisions in the national legislation", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Promptly address the impact of the conflict on civilians' access to food, including through concrete steps in technical assistance and capacity building, as requested in the national report", - "values": [ - "4 - General action" - ] - }, - { - "text": "Guarantee the right by all residents in the country to adequate housing, food, health and education, with the aim of decreasing poverty, which affects 48 millions of people in the country", - "values": [ - "4 - General action" - ] - }, - { - "text": "Respect, protect and promote freedom of expression of journalists, in particular with regard to the well-established international human rights principle that public officials should tolerate more, rather than less, criticism than private individuals", - "values": [ - "4 - General action" - ] - }, - { - "text": "Withdraw the reservation to article 2 of the Convention on the Elimination of All Kinds of Discrimination against Women ", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Make good use of technical assistance from OHCHR to accede to the International Covenant on Economic, Social and Cultural Rights, the International Convention on the Elimination of All Forms of Racial Discrimination and the Convention against Torture.", - "values": [ - "4 - General action" - ] - }, - { - "text": "Issue a standing invitation to all mandate holders and allow a visit by the Special Rapporteurs on Freedom of Opinion and Expression and on Human Rights Defenders ", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Continue the implementation of the Vision 2030 strategy, the Kazi\nKwa Vijana programme and the Constituency Development Fund, and seek the technical and financial assistance that it will require to that end \n", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Put in place the necessary funding to allow the implementation of all the activities of the National Human Rights Commission", - "values": [ - "4 - General action" - ] - }, - { - "text": "Continue to promote pluralism", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Protect and respect the freedom of expression and association of human rights defenders and refrain from placing any unnecessary restrictions on their work.", - "values": [ - "4 - General action" - ] - }, - { - "text": "Take all appropriate measures to eliminate these forms (child labour, child soldiers, and street begging) of exploitation of children ", - "values": [ - "4 - General action" - ] - }, - { - "text": "In line with previous recommendations made by the Committee on the Rights of the Child, make every effort to reinforce protection of the right to life and development of all children", - "values": [ - "4 - General action" - ] - }, - { - "text": "Continue promoting its effective social policies to increase the standard of living of its people, particularly in the neediest areas", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Further raise public awareness on the equal rights of women, persons with disabilities and religious minorities for social integration and harmony", - "values": [ - "4 - General action" - ] - }, - { - "text": "Recognise the competence of treaty bodies to examine individual complaints by ratifying the respective optional protocols, in particular OPCAT", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Place priority on the vital area of education, especially the education of girls in rural areas", - "values": [ - "4 - General action" - ] - }, - { - "text": "Adopt the national strategy for the overall implementation of the CRC and establish a mechanism for coordinated follow-up", - "values": [ - "4 - General action" - ] - }, - { - "text": "Designate an independent national preventive mechanism in consultation with civil society, take all required measures to effectively prevent torture.", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Reinforce and make more accessible to victims [of rape] the health-care services", - "values": [ - "4 - General action" - ] - }, - { - "text": "Repeal laws criminalizing relations between consenting adults of the same sex ", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Consider the visits by the special rapporteurs on human rights defenders, extrajudicial, summary or arbitrary executions, independence of judges and lawyers, and the Working Group on Arbitrary Detentions.", - "values": [ - "3 - Considering action" - ] - }, - { - "text": "Continue to strengthen national human rights instruments and mechanisms", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Guarantee a vibrant civil society and the independence of NGOs by revising laws affecting their registration and operations", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Intensify its efforts to combat human trafficking and sexual exploitation, in particular women and children, in a comprehensive manner", - "values": [ - "4 - General action" - ] - }, - { - "text": "Take the measures necessary to make the ordinary justice system effective and independent of political pressures, devoting particular attention to the problem of violence against women", - "values": [ - "4 - General action" - ] - }, - { - "text": "Take further measures to facilitate access to health-care services for the enjoyment of the right to health by all", - "values": [ - "4 - General action" - ] - }, - { - "text": "Ensure that measures taken with regard to asylum-seekers are in full compliance with obligations under international law and human rights, including the principle of non-refoulement and that the detention of asylum-seekers is only done when absolutely necessary and for a minimal period of time", - "values": [ - "4 - General action" - ] - }, - { - "text": "Take an active stance to stop any actions or laws that constitute an infringement of the rights of LGBT persons ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Seek assistance from the international community to provide the necessary support and coordination among all stakeholders in order to achieve remaining/future programmes for the voluntary return of displaced persons and refugees, as well as development programmes ", - "values": [ - "1 - Minimal action" - ] - }, - { - "text": "Continue the extraordinary initiatives of cooperation with developing countries, as a way to achieve the full realization of the right to development", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Maintain efforts to implement the information system for the follow up of international human rights recommendations", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Continue efforts to implement the national action plan for the implementation of the Convention on the Rights of Persons with Disabilities", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Amend the Code of Criminal Practice to stipulate that only individuals aged over 18 will be tried as adults. As a result, the executions of any individuals who were less than 18 years old when they committed the crime should be commuted to a custodial sentence", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Strengthen the cooperation both at national and international levels in fighting against human trafficking equally for the purposes of sexual exploitation and forced labour", - "values": [ - "4 - General action" - ] - }, - { - "text": "Ensure that no legislation discriminates between men and women, and enact legislation to prevent violence against people based on sexual orientation", - "values": [ - "4 - General action" - ] - }, - { - "text": "Strengthen the role and capacity of the National Civil Police with a view to reducing the role of the armed forces in the maintenance of public order", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Take steps to increase the number of women in decision-making positions ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Abolish the death penalty in the Criminal Code for all crimes and in all times, including war ", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Continue strengthening measures against racism, xenophobia and Islamophobia, as well as discrimination against migrants", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Decriminalize sexual relation between consenting adults of the same sex", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Implement the recommendation of the United Nations Special Rapporteur on the rights of indigenous peoples concerning the bill for the autonomous development of indigenous peoples and the restitution of lands to indigenous communities ", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Consolidate the process of national healing with a view to achieving long-term political stability", - "values": [ - "4 - General action" - ] - }, - { - "text": "Strengthen the capacity of the Government of Afghanistan to implement its national development strategy, particularly to achieve human rights benchmarks.", - "values": [ - "4 - General action" - ] - }, - { - "text": "Repeal all legal provisions that discriminate against women.", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Review the law establishing the Truth and Reconciliation Commission so as it is in line with international standards and do not establish an amnesty for crimes under international law ", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Continue to strengthen policies on ensuring the opportunity to enrol in education for children and young people with disabilities", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Ensure full implementation of the right to education of persons belonging to national minorities in particular to refrain from closing schools with minority language of instruction, to provide necessary funding for these schools, also to fully finance publication of textbooks in national minorities languages ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Improve and expand the capacity and coverage of domestic violence shelters as well as rehabilitation centres for domestic violence victims, especially in rural areas", - "values": [ - "4 - General action" - ] - }, - { - "text": "Repeal immediately the Public Emergency Regulations in force since 10 April 2009", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Start a public information campaign to combat discrimination based on sexual orientation ", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Ratify the international human rights instruments to which it is not yet a party, including the Optional Protocol to the Convention against Torture", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Continue the role it plays in multilateral fora in support of the promotion and protection of economic, social and cultural rights ", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Immediately establish a de jure moratorium on capital executions, and commute all death sentences pronounced to date into penalties of deprivation of liberty with a view to abolishing the death penalty ", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Invite the Special Rapporteur on torture without delay and facilitate his visit to the country", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Ensure that no person is detained in secret or in unofficial facilities and to close such facilities", - "values": [ - "4 - General action" - ] - }, - { - "text": "Continue to cooperate closely with civil society to prevent and combat dissemination of HIV/AIDS among the population ", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Strengthen policies to guarantee the rights of migrants and refugees, under the principle of non-discrimination and non-refoulement ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Consolidate on-going actions to reduce maternal mortality, to improve life conditions of persons with disabilities and to address the challenge of costly justice system, especially for the poor and in rural areas ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Accelerate the alignment of national legislation with a bearing on human rights to the new Constitution, which was adopted in 2014, including provisions relating to the prevention and criminalization of violence against women and children", - "values": [ - "4 - General action" - ] - }, - { - "text": "Redouble steps taken in providing quality and affordable health and education services, including providing adequate learning opportunities", - "values": [ - "4 - General action" - ] - }, - { - "text": "Guarantee, including within the draft constitutional reform announced on 3 May 2017, fundamental freedoms and the independence, integrity and efficiency of the justice system, in particular concerning the execution of the constitutional review", - "values": [ - "4 - General action" - ] - }, - { - "text": "Introduce effective and comprehensive measures to prevent violence against children and to eliminate the worst forms of child labour", - "values": [ - "4 - General action" - ] - }, - { - "text": "Complaints of harassment of journalists and human rights defenders receive prompt response and adequate measures for their safety be taken.", - "values": [ - "4 - General action" - ] - }, - { - "text": "Redouble efforts to devise a comprehensive national strategy and ensure implementation of action plans for the protection of the rights of the child, particularly in the area of prevention from child labour, violence and abuse", - "values": [ - "4 - General action" - ] - }, - { - "text": "Intensify the comprehensive approaches in eliminating sexual exploitation among women and girls", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Continue taking measures to develop legislation and policies at federal, state and municipal level to punish and prevent hate crimes and discrimination against the lesbian, gay, bisexual, transgender and intersex population", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Further its endeavours with a view of positively affecting the participation of women in the field of economy, education and health", - "values": [ - "4 - General action" - ] - }, - { - "text": "Work on improving the physical access for persons with disabilities", - "values": [ - "4 - General action" - ] - }, - { - "text": "Continue with the social investment focusing on the most vulnerable sectors of the population, particularly the elderly, women, children and other groups in situation of vulnerability ", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Investigate cases of sexual abuse and exploitation and prosecute and impose adequate sentences for such crimes ", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Expedite the procedures for the establishment of the National Human Rights Commission and the appointment of its members as soon as possible ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Reduce overcrowding in prisons by enlarging existing facilities or building new ones and-or making more use of alternative penalties ", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Accelerate efforts to ratify the International Convention for the Protection of All Persons from Enforced Disappearance", - "values": [ - "4 - General action" - ] - }, - { - "text": "New Zealand accepts in part the recommendations [33 and 34] to continue efforts to prevent discrimination in the criminal justice system and to commit itself to combating overrepresentation of specific groups.", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Ensure that the right to freedom of assembly is guaranteed and remove all restrictions to peaceful protests", - "values": [ - "4 - General action" - ] - }, - { - "text": "Intensify its efforts towards establishment of a fully independent, impartial and neutral judiciary, free from corruption in accordance with international standards, guaranteeing that all perpetrators of human rights violations are held accountable and nobody goes unpunished ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Adopt immediate measures, including reviewing legislation and developing comprehensive strategies to eradicate trafficking in children, sexual exploitation and involvement of adolescents in prostitution ", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Step up the pace of communication with treaty bodies, further promote women's rights, the right to health, particularly in rural areas ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Continue adopting and implementing all the necessary measures and provisions for raising legal and awareness levels, in order that FGM be effectively eliminated in the whole country ", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Strengthen its measures to combat racism and discrimination in all its forms against migrants and asylum seekers", - "values": [ - "4 - General action" - ] - }, - { - "text": "Adopt effective measures to support Indigenous Peoples, including by ensuring food, health services, schools, and access to sanitary services and by creating conditions for higher incomes", - "values": [ - "4 - General action" - ] - }, - { - "text": "Continue its effort in improving the situation of Roma and Bulgarian citizens of other ethnic groups, especially through effective implementation of the National Roma Integration Strategy with adequate allocation of financial and human resources", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Encourage the participation of women in Parliament and increase of women participation in the different decision making processes", - "values": [ - "4 - General action" - ] - }, - { - "text": "Take measures to ensure the increased freedom of expression of journalists and media workers ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Bring state laws and federal legislation in line with the framework established by the General Law for Women's Access to a Life Free of Violence", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Take measures to raise awareness of the police, other authorities, and the general public about gender-based violence against women and girls, as well as women's rights ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Take measures to reduce the length of pre-trial detention and to have more judges trained and employed to ease some of the existing backlog ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Take immediate action to ensure that legal guardians are appointed for unaccompanied minors and that proper accommodation and education are provided", - "values": [ - "4 - General action" - ] - }, - { - "text": "Accept the visit requests by the Special Rapporteur on torture and other cruel, inhuman or degrading treatment or punishment and the Special Rapporteur on extrajudicial, summary or arbitrary executions ", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Work towards promoting the right to water for its citizens, as water is a main component of the rights to life, health and food basic right and empower inhabitants to enjoy this right and cooperate with relevant international stakeholders ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Accelerate its accession to the ICCPR and ICESCR", - "values": [ - "4 - General action" - ] - }, - { - "text": "Commute all of the death penalties to prison sentences and abolish, once and for all, death penalty ", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Promote the establishment of pluralistic, free and independent media and ensure the protection of and respect for the independence of the press and freedom of opinion and expression of journalists", - "values": [ - "4 - General action" - ] - }, - { - "text": "Take steps to resolve the conflicts of competence between civil and Sharia courts, with a view to fully protect human rights", - "values": [ - "4 - General action" - ] - }, - { - "text": "Finalize the process of appointing the Justice Ombudsman to strengthen action in the field by the CNDHC ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Accelerate the procedure for the adoption of the bill reviewing the age of criminal responsibility", - "values": [ - "4 - General action" - ] - }, - { - "text": "Take effective measures towards the prohibition of discrimination on the basis of sex, sexual orientation and gender identity, and holding accountable individuals responsible for acts of violence committed against lesbian, gay, bisexual, transgender and intersex persons", - "values": [ - "4 - General action" - ] - }, - { - "text": "Continue to take steps to submit reports to treaty bodies ", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Investigate all pending complaints about enforced or involuntary disappearances and have their perpetrators punished ", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Provide effective guarantees for the full exercise of freedom of expression and information recognized in the Constitution and in international instruments ratified by the Bolivarian Republic of Venezuela", - "values": [ - "4 - General action" - ] - }, - { - "text": "Address the issue of the use of child labour in the country, while supporting and facilitating children's access to education, in particular in rural areas.", - "values": [ - "4 - General action" - ] - }, - { - "text": "Accede to the Second Optional Protocol to the International Covenant on Civil and Political Rights, aimed at abolishing the death penalty, and take all necessary steps to remove the death penalty from Jamaica's justice system ", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Strengthen efforts to prevent child marriage, including by combating stereotypes through diversified awareness-raising campaigns", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Take the necessary measures to eliminate restrictions on the freedom of expression, including those imposed to national and international journalists", - "values": [ - "4 - General action" - ] - }, - { - "text": "Establish a formal moratorium on the death penalty and ratify the Second Optional Protocol to the International Covenant on Civil and Political Rights, with a view to abolishing capital punishment both in practice and in law", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Implement a coordination strategy between the heath and justice authorities to prevent and punish acts of female genital mutilation", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Ensure equal rights for minority citizens such as the Roma, particularly the right to vote ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Consider ratifying the Optional Protocol to the Convention against Torture and ensure effective implementation of national mechanisms in the area of identification and prevention of torture", - "values": [ - "3 - Considering action" - ] - }, - { - "text": "Continue working towards the establishment of a national mechanism for the prevention of torture ", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Ratify the ICCPR, ICESCR, OP-CAT and OP-CEDAW, and sign the third Optional Protocol to CRC on a communications procedure", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Strengthen the 2009-2012 action plan put in place by the Government to promote equality and prevent ethnic discrimination against immigrants, their children and national minorities, by supplementary measures to remedy the causes of social disparities of those affected ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Take measures to ensure that its National Human Rights Commission is in accordance with the Paris Principles ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Consider prioritizing the stated objective of developing a comprehensive national action plan for promotion and protection of all human rights", - "values": [ - "3 - Considering action" - ] - }, - { - "text": "Strengthen the rule of law as enshrined in the Constitution, and ensure the independence of the judiciary.", - "values": [ - "4 - General action" - ] - }, - { - "text": "Implement further policies to ensure gender equality throughout society, and strengthen the promotion and protection of the rights of women ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Take concrete measures to ensure that justice be rendered to the victims of human rights abuses during the period of the war for independence as well as for their families and survivors ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Continue its excellent programs and social policies with the aim of further increasing the quality of life of its people, particularly the most vulnerable sectors of the population", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Continue to promote its progressive improvements to provide adequate access to its population to basic and quality health-care services ", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Continue its efforts to reach the Millennium Development Goals by 2015 and increase the number of its primary and secondary schools ", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Reform the juvenile justice system and ensure the separation of children from adults in detention places, including by taking measures to reduce prison overcrowding", - "values": [ - "4 - General action" - ] - }, - { - "text": "Suspend, without conditions, the expansion of settlements that violate fundamental rights of the Palestinian population, and remedy the negative impact", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Continue efforts to reduce poverty and promote development, with a view to enhancing the effective enjoyment of all human rights for its people, especially economic and social rights", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Expand the programme adopted in 2008 to eliminate the remnants of slavery, so that it covers the whole territory of Mauritania", - "values": [ - "4 - General action" - ] - }, - { - "text": "Continue the process to ratify CEDAW and adhere to the other human rights fundamental instruments, such as the Statute of Rome of the International Criminal Court, the Convention on the Rights of the Child, the Optional Protocol to the Convention against Torture and the International Convention for the Protection of all Persons against Enforced Disappearance ", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Ensure that its strategies for addressing domestic violence are effectively implemented, monitored and sustained", - "values": [ - "4 - General action" - ] - }, - { - "text": "Issue immediate and clear public orders to security forces to cease arbitrary arrest, detention and torture on the basis of religion or belief", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Request technical assistance from the relevant international human rights mechanisms, whenever there is a need to carry on building the capacities of the country to face challenges, in particular in the area of the judiciary and the preparation of human rights periodic reports", - "values": [ - "1 - Minimal action" - ] - }, - { - "text": "Continue its plan for social and economic development further to protect the rights of women and children so as to achieve comprehensive social and economic development ", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Adopt all provisions necessary to prevent acts of torture and cruel, inhuman or degrading treatment committed by penitentiary or law enforcement personnel, and establish a system for the independent monitoring of all detention centres without exception ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Strengthen its efforts to protect the rights of all persons to enjoy the highest possible level of physical and mental health, and take concrete measures to strengthen free and effective access to health for children and adults with mental disabilities ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Continue efforts to safeguard the rights of all segments of society, including foreigners by addressing all forms of hatred and discrimination ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Ensure the proper work of the Joint Monitoring Committee and Union Peace Dialogue Joint Committee", - "values": [ - "4 - General action" - ] - }, - { - "text": "Immediately put a stop to caning as a form of punishment and repeal all laws providing for this punishment ", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Take further efficient measures to ensure that all people deprived of their liberty are held in conditions that meet international standards and that the recommendations of the European Committee for the Prevention of Torture and Inhuman or Degrading Treatment of Punishment regarding per-trial detention are fully implemented.", - "values": [ - "4 - General action" - ] - }, - { - "text": "Build legislative and organizational capacities and support the capacity-building processes in public agencies, concerned with asylum and immigration ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Accelerate the process of acceding to the two international human rights covenants and also to strengthen the rights of persons with disabilities", - "values": [ - "4 - General action" - ] - }, - { - "text": "Consider ratifying the International Convention on the Protection of the Rights of All Migrant Workers and Members of Their Families and the International Labour Organization (ILO) Domestic Workers Convention, 2011 (No. 189)", - "values": [ - "3 - Considering action" - ] - }, - { - "text": "Strengthen efforts to implement the 2008 law on education and the reduction of school dropout rates of children of African descent and indigenous origin ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Ratify the Optional Protocol to the CRPD ", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Develop and implement programmes to eradicate the worst forms of child labour, such as mining of rivers and brick factories", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Develop a national policy to address trafficking in persons", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Continue to emphasize the promotion and protection of human rights in areas such as poverty eradication, justice administration, education, public health and gender equality for all, including for those on the Caribbean coast", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Alleviate barriers pertaining to the process of applying for family reunifications", - "values": [ - "4 - General action" - ] - }, - { - "text": "Consider ratifying the human rights treaties, to which Singapore is not yet a party, especially the International Covenants ", - "values": [ - "3 - Considering action" - ] - }, - { - "text": "That the Government of Slovakia work to raise awareness amongst vulnerable communities of the dangers of human exploitation and to ensure these communities receive adequate support ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Combat poverty and social exclusion, particularly of the disadvantaged and marginalized groups, with the adoption of clear indicators to assess progress achieved", - "values": [ - "4 - General action" - ] - }, - { - "text": "Consider amending its legal provisions to further ensure protection of children's rights, especially by raising the minimum working age in agricultural and domestic service", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Double the efforts to protect and strengthen the rights of persons with disabilities", - "values": [ - "4 - General action" - ] - }, - { - "text": "Continue improving combating of trafficking in persons", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Continue to undertake appropriate steps with a view to ratifying the human rights instruments mentioned in paragraph 158 of the national report ", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Seek the necessary assistance from the Office of the United Nations High Commissioner for Human Rights and other relevant United Nations bodies ", - "values": [ - "1 - Minimal action" - ] - }, - { - "text": "Staff and operationalize the office established for handling alleged instances of abuses of law enforcers in order to address all alleged attacks and reports of ill treatment", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Reinforce efforts to combat discrimination against women.", - "values": [ - "4 - General action" - ] - }, - { - "text": "Adopt a national plan on combating crimes of hatred, racism, and xenophobia", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Repeal the law on education, which grossly violates the legal rights of linguistic minorities to be educated in their mother tongue", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Accede to the United Nations Convention against Corruption and ensure a proper audit of funds allocated for social services", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Continue its efforts to combat violence against women and promote gender equality ", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Strengthen efforts in implementing the rights and obligations towards the empowerment of women found in the Convention on the Elimination of All Forms of Discrimination against Women", - "values": [ - "4 - General action" - ] - }, - { - "text": "That the various forces in Libya act in the interests of the nation and the people, immediately stop fighting and violence, end the disorder, start the political process as soon as possible, resolve their differences, and safeguard ethnic and national unity", - "values": [ - "4 - General action" - ] - }, - { - "text": "Increase and intensify the on-going efforts namely through the Legal Training Center (CFJ) to capacitate and qualify the legal professions, one essential pillar of the Justice system ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Continue working to be able to incorporate the prohibition of discrimination against women in its national legislation", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Implement the resolution 16/18 on combatting intolerance, negative stereotyping and stigmatization of, and discrimination, incitement to violence, and violence against persons based on religion or belief", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Abolish all discriminatory laws and practices in accordance with its international obligations under the Convention on the Elimination of All Forms of Discrimination against Women", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Continue with the measures aimed at combating stereotypes and discrimination suffered by lesbian, gay, bisexual, transgender and intersex persons ", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Continue to work for the full implementation of the NHRAP ", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Continue efforts to prevent and sanction violence against women", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Consider amending the Aliens Act in order to ensure that refugees and other beneficiaries of international protection and their family members can exercise their right to long term residence", - "values": [ - "3 - Considering action" - ] - }, - { - "text": "Strengthen and take the measures required to prevent and punish sexual violence ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Take concrete steps to enhance the broad and full participation of civil society in all political and societal life, by ensuring transparent distribution of NGO funding and by safeguarding that the freedoms of expression and association can, in line with the International Covenant on Civil and Political Rights, be exercised in practice, including by taking further steps to ensure prompt investigations of physical attacks and/or threats against civil society actors", - "values": [ - "4 - General action" - ] - }, - { - "text": "That anti-terrorism law combats only terrorist groups and does not consider human rights defenders", - "values": [ - "4 - General action" - ] - }, - { - "text": "Redouble its efforts to further protect children from trafficking", - "values": [ - "4 - General action" - ] - }, - { - "text": "Take further measures to protect human health in the context of ensuring effective ways of sustainable development", - "values": [ - "4 - General action" - ] - }, - { - "text": "Outlaw forced or coerced sterilisation, sex reassignment surgeries and reparative therapies imposed without, free and informed consent", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Continue to fight against FGM ", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Continue its efforts to improve the physical environment of schools including by ensuring appropriate water and sanitation facilities and to ensure the full enrollment of all children in education", - "values": [ - "4 - General action" - ] - }, - { - "text": "Ensure equality of women and men in accessing socioeconomic services, including property tenure, and health care and services ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Continue its efforts to facilitate greater participation and representation of women in public offices and in higher levels of decision- making positions", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Take further steps to eradicate impunity for killings", - "values": [ - "4 - General action" - ] - }, - { - "text": "Continue making efforts to reduce the gap in female participation in the labour market, in the context of the National Policy on Gender Equality ", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Boost the process of adopting and implementing strategies and projects to combat poverty ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Redouble its efforts to eliminate discrimination against women, including by establishing the minimum marriage age of 18 for both men and women ", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Take all necessary steps towards ratifying or acceding to the main international human rights instruments and treaties which are still outstanding ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Call for and support reform to laws that restrict freedoms of religion and expression, in particular protect the rights of conscientious objectors and ensure that individuals are not punished for expressing their opinions ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Raise its crime responsibility threshold to comply with international standards", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Strengthen the cooperation with special procedures by extending a standing invitation", - "values": [ - "4 - General action" - ] - }, - { - "text": "Secure a safe environment for human rights defenders who support torture victims and ensure that there is sufficient support for civil society organizations working in the field of rehabilitation of torture victims", - "values": [ - "4 - General action" - ] - }, - { - "text": "Ensure that journalists and reporters can freely exercise their right to freedom of expression", - "values": [ - "4 - General action" - ] - }, - { - "text": "Continue supporting international efforts to find a peaceful solution to the crisis, through a Syrian-Syrian dialogue led by the Syrian Arab Republic in a spirit of peace and reconciliation and without foreign interference, based on the principles of mutual respect, sovereign equality, self-determination and the right of peoples to choose their own political, economic and social systems", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Carry out follow-up mechanisms on UPR recommendations that enable to verify the implementation and impact of norms and measures adopted to promote equal rights and non-discrimination for all citizens, particularly vulnerable groups such as women, children, ethnic minorities and LGBT communities, among others", - "values": [ - "4 - General action" - ] - }, - { - "text": "Take further measures to promote gender equality and eradicate stereotypes regarding the roles and responsibilities of women in society", - "values": [ - "4 - General action" - ] - }, - { - "text": "Improve the living conditions of asylum-seekers ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Preserve with vigour the approach of cooperation, non-politicization and respectful dialogue among all nations in terms of human rights", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Take further measures to ensure that all children enjoy their right to a free and compulsory primary education ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Establish a moratorium on the application of the death penalty", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Ensure the independence of the National Human Rights Commission", - "values": [ - "4 - General action" - ] - }, - { - "text": "Ratify the Protocol of 2014 to the Forced Labour Convention of the International Labour Organization and build criminal justice capabilities to increase the investigation, prosecution and conviction of perpetrators of modern slavery", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Take all necessary measures to guarantee, in all circumstances, the full respect of the rights to freedom of expression and of media as essential elements to an active and flourishing civil society", - "values": [ - "4 - General action" - ] - }, - { - "text": "Increase efforts to end impunity of those responsible for forced displacement, and intensify security measures for the communities of internally displaced persons, in particular by protecting their property rights.", - "values": [ - "4 - General action" - ] - }, - { - "text": "Cease the detention of children in immigration detention centres", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Continue to deepen awareness-raising measures against racism and xenophobia, particularly with regard to migrants and refugees", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Intensify efforts to prevent and eradicate chronic malnutrition, especially among children living in rural and remote areas", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Give consideration to the establishment of a centralized database on qualitative and quantitative data provided by victims or witnesses of racist or xenophobic incidents that have been reported to counselling institutions", - "values": [ - "3 - Considering action" - ] - }, - { - "text": "Strengthen measures and strategies to combat trafficking in persons, particularly slavery, and the various infringements of the rights of women, and especially girls, particularly in the area of combating female genital mutilation ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Continue strengthening its efforts to combat trafficking in persons, including through regional and international cooperation ", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Formalise the de facto moratorium as a step towards the complete abolition of the death penalty ", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Ensure due process and conduct effective and objective investigations regarding cases of alleged arbitrary arrest and detention, including those which may constitute enforced disappearance", - "values": [ - "4 - General action" - ] - }, - { - "text": "Design policies which strengthen the rights of the child, and in that regard, sensitize the population to end corporal punishment and child labour ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Give INDECOM the power it needs to investigate criminal acts committed by the Police", - "values": [ - "4 - General action" - ] - }, - { - "text": "Improve the situation of refugees and asylum seekers", - "values": [ - "4 - General action" - ] - }, - { - "text": "Amend the Public Order Management Act, 2013, and the Non-Governmental Organizations Act, 2016, to ensure free assembly and association in line with international human rights standards", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Engage with civil society in the follow-up to and implementation of the universal periodic review process.", - "values": [ - "4 - General action" - ] - }, - { - "text": "Continue to strengthen economic, political and social development with full participation of the population of all strata ", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Step up efforts in providing equal access to health services to its people, particularly to the minority and indigenous peoples in the country ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Continue with its efforts to improve the legal protection of vulnerable persons, in particular the elderly and persons with disabilities", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Accede to the Second Optional Protocol to the International Covenant on Civil and Political Rights, aimed at abolishing the death penalty ", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Address corruption and further strengthen the independence of judges in order to improve public confidence in the judicial system", - "values": [ - "4 - General action" - ] - }, - { - "text": "Try all perpetrators of torture, regardless of rank", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Continue to adopt effective social policy regarding access to education and health services, in particular for women and children ", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Fulfill specific recommendations of treaty bodies in respect of cases of discrimination against Roma.", - "values": [ - "4 - General action" - ] - }, - { - "text": "Take steps to ensure equal enjoyment of the right of freedom of religion or belief and ensure freedom of speech and of the press ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Take measures to put an end to police abuses, including the merciless killing of coloured people, and all racial discrimination", - "values": [ - "4 - General action" - ] - }, - { - "text": "Establish shelters and other support services for victims and implement programmes in order to provide human rights education, in particular to the police, lawyers and judges", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Amend the concerned legislation with a view to abolishing capital punishment in line with General Assembly resolutions 62-149 and 63-168 and convert the existing death sentences to imprisonment terms", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Undertake electoral reforms to ensure credible electoral processes ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Continue to pursue its efforts in the fight against HIV-AIDS, particularly in addressing its reported disproportional impact on women", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Consider issuing a standing invitation to special procedures", - "values": [ - "3 - Considering action" - ] - }, - { - "text": "Ratify the Convention against Torture and its Optional Protocol, as well as the International Covenant on Economic, Social and Cultural Rights", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Bring its legislation into conformity with its international human rights obligations by repealing laws that criminalize sexual activity between consenting adults of the same sex", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Enhance efforts to combat violence against women", - "values": [ - "4 - General action" - ] - }, - { - "text": "Amend the concerned legislation to establish an immediate moratorium on the death penalty with a view of abolishing the capital punishment entirely in line with the United Nations General Assembly resolutions 62-149 and 63-168 as well as the second Optional Protocol to ICCPR and transfer the existing death sentences to imprisonment terms", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Create an enabling environment for civil society where citizens are free to exercise their full rights to freedom of peaceful assembly and association in accordance with the principles of democracy and in line with international obligations under the ICCPR, including revoking the royal decree of 1973", - "values": [ - "4 - General action" - ] - }, - { - "text": "Continue and strengthen cooperation with the UN Human Rights Mechanisms and its various efforts made for human rights capacity-building ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Ratify the Rome Statute of the International Criminal Court and implement it fully at national level and accede to the Agreement on Privileges and Immunities of the Court", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Eliminate the death penalty in the new anti-corruption law, repeal the provision that extended the use of the death penalty to economic crimes, and ratify the Second Optional Protocol to the International Covenant on Civil and Political Rights, aiming at the abolition of the death penalty", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Improve the quality of health services and education for the population, and particularly for children ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Continue to provide adequate policy and institutional support to address the marked disparities in the socio-economic indicators between the indigenous and non-indigenous populations.", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Fully implement the reform of the criminal justice system in all Mexican states as soon as possible", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Take specific and effective measures to make the Human Rights Commission fully operational, and also to guarantee the Commission\u2019s independence by ensuring adequate resources and financial autonomy as recommended by the Human Rights Committee", - "values": [ - "4 - General action" - ] - }, - { - "text": "Seek alternatives to detaining asylum seekers and migrants, particularly children. Take immediate and effective measures to ensure that conditions of detention are fully consistent with UN Standard Minimum Rules for the Treatment of Prisoners", - "values": [ - "4 - General action" - ] - }, - { - "text": "Lift its ban over censored websites and revoke the newly-adopted law whick introduced an even stricter media censorship", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Repeal the July 2008 law that allows the death penalty, in line with Liberia's obligations under the Second Optional Protocol to the ICCPR", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Consider the abolition of the death penalty, and declare a moratorium on executions ", - "values": [ - "3 - Considering action" - ] - }, - { - "text": "Ensure that its national legislation and practice effectively protect the principle of non-refoulement", - "values": [ - "4 - General action" - ] - }, - { - "text": "Continue its policy of implementation of international and regional commitments regarding the rights of children.", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Continue developing actions to protect the human rights of all people from the economic aggression developed against the country", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Prosecute perpetrators of human trafficking", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Ratify all the signed conventions, in keeping with the commitments it had undertaken during its first review in 2010", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Introduce legislation to satisfy its commitments on equality and non-discrimination, including as it pertains to same sex relations", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Continue its efforts to combat discrimination and ensure equal treatment of all ethnicities and minorities", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Step up awareness-raising campaigns on effective methods to combat and fight AIDS", - "values": [ - "4 - General action" - ] - }, - { - "text": "Become a party to CAT and OPCAT", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Step up its awareness-raising and information activities focusing on religious and customary chiefs to ensure peaceful coexistence between people and religions", - "values": [ - "4 - General action" - ] - }, - { - "text": "Guarantee freedom of assembly and association in line with ICCPR", - "values": [ - "4 - General action" - ] - }, - { - "text": "Cooperate with the Human Rights Committee and fully implement its views", - "values": [ - "4 - General action" - ] - }, - { - "text": "Establish an accessibility strategy for persons with disabilities through a national plan", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Implement laws and policies to protect children from economic exploitation, including from all forms of child labor and child begging, and that aim at ensuring that street children go to school", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Issue a standing invitation to the Special Procedures", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Lift the reservation to Article 9(2) of the CEDAW Convention ", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Adopt legislation prohibiting female genital mutilation, in addition to the provisions under Act No. 4/2010", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Take the necessary measures to repeal all legal provisions that establish differences between children born in wedlock and children born out of wedlock, in particular those contained in the Family Code that were discriminatory against such children", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Take the necessary measures to remedy the low participation of women in public and political life", - "values": [ - "4 - General action" - ] - }, - { - "text": "Cease restricting media outlets from printing opinions critical of the Government of Brunei Darussalam in line with the right to freedom of expression ", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Introduce in the legislation the principles of application of equality in all rights, as recommended by CEDAW ", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Pursue inclusive policies to improve education with a view to narrowing the gap between different socioeconomic levels", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Sustain its efforts with regard to the resettlement of internally displaced persons, and ensure their access to basic human rights and social services ", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Liechtenstein will continue to pay particular attention to the promotion of women's participation at all levels and in all areas of public life, including through special measures", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Consider adopting a general legal framework for the right to food, as a good practice and reference for developing countries", - "values": [ - "3 - Considering action" - ] - }, - { - "text": "Clearly prohibit torture and ill-treatment along with effective enforcement of relevant legislations ", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Include programmes on human rights education at all levels of the armed forces and police, and to provide assurances of transparency and participation to civil society in every cooperation project related to justice and security", - "values": [ - "4 - General action" - ] - }, - { - "text": "Take further measures to combat discrimination in the labour market and combat in particular discrimination based on ethnic origin and discrimination targeting transgender people ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Take all appropriate measures to ensure that all reported cases of enforced disappearance are thoroughly investigated", - "values": [ - "4 - General action" - ] - }, - { - "text": "Extend the mandate of the Joint Parliamentary Committee on Human Rights to include the domestic consideration and oversight of implementation of recommendations from United Nations human rights mechanisms", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Ensure the allocation of adequate resources for the implementation of Organic Law 1/2004 on measures of protection against gender violence, giving special attention to its accessibility through a national action plan", - "values": [ - "4 - General action" - ] - }, - { - "text": "Adopt a more comprehensive definition of human trafficking.", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Continue to strengthen its poverty reduction strategy with the aim of ensuring among others, food security", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Positively consider ratifying the International Covenant on Civil and Political Rights, the International Covenant on Economic, Social and Cultural Rights as well as the main human rights treaties to which Fiji is not yet a State party", - "values": [ - "3 - Considering action" - ] - }, - { - "text": "Step up efforts in implementing the current national priorities, including the policy for youth and women advancement, Education Strategic Plan, Climate Change Adaptation Program and the National Sustainable Development Strategy ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Pursue the establishment of national health insurance system which will contribute to improving the quality of primary basic health care for all ", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Ratify the International Convention for the Protection of All Persons from Enforced Disappearance (CED), the Rome Statute of the International Criminal Court (ICC), sign and ratify OP-CAT and establish a national independent mechanism to inspect detention centres ", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Pursue all efforts to preserve the progress in culture, education, health and fight against social inequality ", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Criminalize the recruitment of children under the age of 18 years into armed forces", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Continue to take the necessary measures to ensure free and mandatory primary education and increase public expenditure in the area of education", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Carry out more efforts to integrate the Roma minority in society, especially by the allocation of funds for the implementation of the National Plan and the participation of this minority in carrying out this Plan ", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Continue with its policy agenda to strengthen the specialized justice system to protect women", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Increase efforts to see through its commitments set out in the national report, especially with regard to campaigning against poverty and ignorance, and reinforce the legitimate rights of specific social groups in the country.", - "values": [ - "4 - General action" - ] - }, - { - "text": "Consider acceding to the major human rights conventions as a sign of intent and as a confidence-building measure", - "values": [ - "3 - Considering action" - ] - }, - { - "text": "Take effective measures to end all forms of discrimination against ethnic minorities, in particular the Serb minority and the Sinti and Roma", - "values": [ - "4 - General action" - ] - }, - { - "text": "Pursue the policy aimed at improving the position and participation of women in public life, and promote programmes for the protection of the rights of children ", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Enhance efforts to implement all international human rights obligations it has undertaken ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Continue efforts to establish efficient and transparent public services in line with relevant United Nations resolutions", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Repeal compulsory death penalty and eliminate its application for drug related offences", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Adopt legislation on gender equality that fully incorporates the principle of equality between women and men, as well as the definition and prohibition of discrimination based on sex and gender", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Demonstrate its full commitment to implementation of the national plan of action to increase the participation of women in decision-making, in national and regional peace consolidation mechanisms, in United Nations peace operations and in political affairs, by providing the necessary human and financial resources and clear and authoritative mandates to the relevant governmental institutions and mechanisms ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Consider bringing legislation in line with international standards in combating discrimination against women", - "values": [ - "3 - Considering action" - ] - }, - { - "text": "Consolidate programs to benefit and protect the elderly ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Establish a system of data collection which would allow a stock-taking of the situation of immigrant problems in areas such as employment and access to public office, and take measures to solve these problems", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Continue to strengthen the role of civil society and cooperation with relevant United Nations human rights mechanisms", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Establish systems for monitoring and gathering information with the view to prevent abuse and ill-treatment of children, as well as other situations of negligence or lack of adequate care", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Exert more efforts in setting up a National Human Rights Institution to address questions relating to the promotion and protection of human rights", - "values": [ - "4 - General action" - ] - }, - { - "text": "Guarantee women the same right as men to transmit their nationality to their children, in particular by deleting Section 20.1 (b) of Part III of the "Law on Immigration and Nationality"", - "values": [ - "4 - General action" - ] - }, - { - "text": "Ratify the fundamental International Labour Organization Forced Labour Convention, 1930 (No.29) and Minimum Age Convention, 1973 (No.138)", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Give further consideration to enacting legislation and formulating national action plans with concrete goals: to prevent the economic exploitation of and hazardous work by children, and to combat drug abuse, human trafficking and the sexual exploitation of women and children ", - "values": [ - "3 - Considering action" - ] - }, - { - "text": "Strengthen its efforts in the areas of Education with the view of increasing school enrolment rate ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Take measures to ensure the provision of assistance to IDPs and the protection of human rights of those providing such assistance.", - "values": [ - "4 - General action" - ] - }, - { - "text": "Step up efforts to promote and protect the right to education and children's rights, including by improving literacy rates and enrolment rates in primary and secondary education", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Take additional measures to fight against racism, extremism and xenophobia", - "values": [ - "4 - General action" - ] - }, - { - "text": "Continue efforts that promote and protect the rights of women, with emphasis on the incorporation of a gender perspective in law and in public policies, and pursuing measures to combat violence against women", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Allow, in a flexible general manner, the visit of independent organizations and national and international NGOs to the detention centres ", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Put in place a coordinated action plan for preparedness to the risks of natural catastrophes", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Within the context of its legislative review process, fully incorporate international human rights instruments to which it is party in its domestic legal framework ", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Intensify efforts to promote the principle of transparency in their endeavour to combat corruption", - "values": [ - "4 - General action" - ] - }, - { - "text": "Revise or make amendments to existing legislation and adopt all other necessary measures in order to fight all forms of incitement and agitation to hatred and violence", - "values": [ - "3 - Considering action" - ] - }, - { - "text": "Take appropriate measures to put an end to violence against women", - "values": [ - "4 - General action" - ] - }, - { - "text": "Share its experiences, best practices and information with and assist the international community in tackling challenges in the area of the right to education, taking into account positive results brought to all Cuban citizens in spite of obstacles faced by the country, including the creation of conditions for free education at all levels", - "values": [ - "1 - Minimal action" - ] - }, - { - "text": "Provide the Truth for Reconciliation Commission of Thailand with all the material resources to ensure its independence and effectiveness", - "values": [ - "4 - General action" - ] - }, - { - "text": "Conduct educational campaigns on access to judicial remedies for racial discrimination", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Speed up the adoption of legislative amendments relevant to the specialized laws on freedom of expression in the Bahraini Criminal law ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Recommended that concrete measures be taken to improve the handling by police of rape cases and to curb rates of violence, particularly against women and girls. ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Adopt a specific law, based on prevention of violence against women and related assistance, to combat all violence against women", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Improve measures to prevent and combat the sale of children, children exploited in the labour market and child victims of commercial sexual exploitation, including prostitution and pornography", - "values": [ - "4 - General action" - ] - }, - { - "text": "Adopt the necessary measures to guarantee the access of migrant workers to justice in civil, criminal and labour courts, as well as to assistance and consular protection ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Continue ensuring that national efforts aimed at combating corruption include the consolidation of the principles of transparency and accountability", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Repeal or amend all provisions in domestic laws which provide for caning for administrative offences involving immigration law ", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Step up efforts towards the expansion of the mandate of and the provision of adequate resource to the national human rights institution", - "values": [ - "4 - General action" - ] - }, - { - "text": "Proceed with the ratification of the Second Optional Protocol to the International Covenant on Civil and Political Rights, aiming at the abolition of the death penalty, and the International Convention on the Elimination of All Forms of Racial Discrimination", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Continue strengthening the protection of vulnerable groups, such as the group of victims of war ", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Consolidate its efforts towards gender equality", - "values": [ - "4 - General action" - ] - }, - { - "text": "Accede and ratify the main human rights instruments, including the International Covenant on Civil and Political Rights and the Optional Protocol to the Convention on the Rights of the Child on the sale of children, child prostitution and child pornography", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Take further steps to promote and protect the rights of children and women ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Take further concrete measures to promote equality between men and women by enabling full and meaningful participation by women in the decision-making levels of the formal peace process and the advancement of negotiations regarding the Cyprus issue ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Intensify efforts to combat the dissemination of ideas based on the racial superiority through Internet", - "values": [ - "4 - General action" - ] - }, - { - "text": "Submit as soon as possible its initial report to CAT ", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Pursue actions to achieve the Millennium Development Goals", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Safeguard legitimate rights of individuals belonging to indigenous communities in relation to land disputes, in particular in rural areas, reforming eviction procedures to comply with international standards", - "values": [ - "4 - General action" - ] - }, - { - "text": "Ensure strict observance of code of conduct by law enforcement officials ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Prohibit corporal punishment, especially in schools, in accordance with article 19 of the Convention on the Rights of the Child, as previously recommended", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Continue implementing national policies and programmes to improve the living conditions of the people ", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Ensure the right to equal protection under the law by criminalizing marital rape through the removal of the exception in Section 375 of the Penal Code", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Take urgent measures to investigate the numerous reports of torture and extrajudicial executions committed by the Ethiopian National Defence Forces ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Strengthen the solidarity of all parties in Mali, smoothly complete political transition and restore national unity and territorial integrity so that the Malian people could earnestly enjoy all human rights", - "values": [ - "4 - General action" - ] - }, - { - "text": "Intensify its efforts in fighting terrorism, and identify gaps in promotion and protection of human rights implementation and seek assistance from the international community", - "values": [ - "4 - General action" - ] - }, - { - "text": "Adopt a comprehensive anti-discrimination legislation to address all forms of discrimination, hate speech and negative stereotypes", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Take necessary measures to expand the provisions of the Criminal Code on hate speech in order to include grounds which go beyond hatred based on race, religion or origin of the individual, integrating such factors as language, colour, sex, mental or physical disability, sexual orientation or other similar grounds ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Work to end the practice of detaining asylum-seekers in prisons owing to lack of space.", - "values": [ - "4 - General action" - ] - }, - { - "text": "Canada is strongly committed to taking action with Aboriginal and non-Aboriginal groups to prevent and stop violence against Aboriginal women and girls and there are many FPT legislative and administrative measures in place to address this pressing issue", - "values": [ - "4 - General action" - ] - }, - { - "text": "Continue concentrating efforts towards older persons, with a view to adequately addressing the challenge resulting from an increasing number of elderly adults", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Adhere to the Second Optional Protocol to the International Covenant on Civil and Political Rights ", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Continue its efforts to ratify international human rights treaties", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Incorporate in national law the definition of torture as contained in article 1 of the Convention against Torture and specifically criminalize torture.", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Improve the penitentiary system conditions, combatting overcrowding and acts of prison violence, and promoting human rights training for penitentiary officers", - "values": [ - "4 - General action" - ] - }, - { - "text": "Ratify the Optional Protocol to the Convention on the Rights of the Child on the sale of children, child prostitution and child pornography (CRC-OP-SC)", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Establish a national mechanism for reporting and follow up to recommendations", - "values": [ - "4 - General action" - ] - }, - { - "text": "Implement the ILO Convention concerning the Minimum Age for Admission to Employment and the prohibition and Immediate Action for the Elimination of the Worst Forms of Child Labour.", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Adopt measures to guarantee the right to life, liberty and security of person, particularly to prevent the practice of mob justice as well as impunity for those who are guilty, facilitate the activities of human rights organizations as they combat those practices", - "values": [ - "4 - General action" - ] - }, - { - "text": "Implement the Convention on the Elimination of All Forms of Racial Discrimination to end the marginalization of and poverty among migrants who face high levels of unemployment, as compared to persons who are native to the Netherlands", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Consider ratifying the Rome Statute, CAT and the second Optional Protocol to ICCPR", - "values": [ - "3 - Considering action" - ] - }, - { - "text": "Work with the international community to bring its criminal justice system into line with its obligations under ICCPR and other international human rights instruments ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Promptly ratify the Optional Protocol to the International Covenant on Economic, Social and Cultural Rights", - "values": [ - "3 - Considering action" - ] - }, - { - "text": "Continue its commitment to the principles of gender equality and non-discrimination and maintain the dialogue with the Committee on the Elimination of All Forms of Discrimination against Women", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Continue to pursue efforts to eradicate poverty and discrimination against women", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Further strengthen its efforts to reduce the widespread child poverty, and take concrete measures to address the existing high rate of drug and alcohol addiction among children and adolescents", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Continue reviewing the procedures regarding requests for asylum in the light of the 1951 Convention relating to the Status of Refugees and its 1967 Protocol.", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "To facilitate women's access to credit and land", - "values": [ - "4 - General action" - ] - }, - { - "text": "Take concrete measures to improve health care for women to further decrease maternal mortality ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Continue its measures concerning the fight against the de-facto discrimination faced by certain disadvantaged groups of women, especially older women, women with disabilities and migrant women", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Take measures for the systematic registration of children born outside of marriage and of refugee children or migrants", - "values": [ - "4 - General action" - ] - }, - { - "text": "Ensure that its policies, legislation, regulations and enforcement measures effectively serve to prevent and address the heightened risk of business involvement in abuses in conflict situations, which include situations of foreign occupation", - "values": [ - "4 - General action" - ] - }, - { - "text": "Continue to advance health services and better guarantee the right to health of the people", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Ensure full and equal access to modern contraceptives, including in rural and indigenous communities", - "values": [ - "4 - General action" - ] - }, - { - "text": "Provide national human rights institutions with sufficient financial and human resources to carry out their mandate ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Include in the implementation of its anti-discrimination legislation effective measures that strengthen religious tolerance, gender equality and equal rights for ethnic minorities, women and lesbian, gay, bisexual, transgender and intersex (LGBTI) persons, so as to increase tolerance and social inclusion in Georgian society", - "values": [ - "4 - General action" - ] - }, - { - "text": "Put in line with the non-discrimination principle provided by CEDAW, the Persons and Family Code and the law governing inheritance, marriages regime and bequests", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Continue consultations initiated for the creation of a national human rights institution in accordance with the Paris Principles", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Take active measures to combat discrimination and violence against women and improve its Law on Gender Equality in order to align it with the Convention on the Elimination of All Forms of Discrimination against Women", - "values": [ - "4 - General action" - ] - }, - { - "text": "Extend a standing invitation to all special procedures and, particularly, allow the entry of the Special Rapporteur on the situation of human rights in Iran", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Adopt a comprehensive program to fight violence and discrimination against women, with special attention to indigenous women", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Continue efforts to strengthen gender equality", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Enact laws covering the right of children to acquire nationality, in particular those born in Singapore who cannot obtain another nationality", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Sanction very severely cases involving domestic violence and forced marriages, and ensure that there is a proper legal framework for protecting women against violence ", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Strengthen its cooperation with the international human rights system, through the timely submission of periodic reports to the relevant treaty bodies ", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Modify the penal code in order to restore access to legal and safe therapeutic abortion and the right for the victims of sexual abuse to a legal, safe and unconditioned abortion", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Continue its efforts to solve the problems of indigenous peoples, in particular their land issues, and ensure that the Anti-Terrorism Act (Law 18.314) does not undermine their rights.", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Continue its efforts aimed at strengthening the work of the National Human Rights Commission and establish a central mechanism for human rights education", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Continue to improve infrastructure and public services, especially medical and educational facilities in the rural areas", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Continue efforts in order to increase participation of women in political, public and professional spheres", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Redouble its efforts to uphold the independence of the judiciary", - "values": [ - "4 - General action" - ] - }, - { - "text": "Adopt legislation to implement the Convention on the Rights of Persons with Disabilities ", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Increase efforts to address the serious problem of the situation of internally displaced persons, which causes much suffering to the individuals, families and communities affected.", - "values": [ - "4 - General action" - ] - }, - { - "text": "Take effective measures to address gender inequality, combat domestic violence and sexual exploitation, and effectively protect women\u2019s and children\u2019s rights", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Continue to work to ensure sustainable economic and social development, eradicate poverty and establish a solid material basis for the full enjoyment of human rights for all the population ", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Study further and consider ratification of other international human rights treaties, namely: ICESCR, ICCPR, ICERD and ICRMW ", - "values": [ - "3 - Considering action" - ] - }, - { - "text": "Further address challenges related to the position of women in the labour market and gender representation at all levels of society, in addressing discrimination against persons with an immigrant background ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Address the concerns expressed by the High Commissioner for Human Rights about the use of torture in the Chechen Republic as well as concerns by the Committee Against Torture over many ongoing and consistent allegations of torture and ill-treatment committed by law enforcement personnel as well as reports of torture and ill treatment in unofficial places of detention in the North Caucasus", - "values": [ - "4 - General action" - ] - }, - { - "text": "Complete and implement effectively the national human rights action plan", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Consult a broad range of civil society actors and reflect their views in the Non-Governmental Organizations Act, 2016, to ensure an open, accountable and vibrant NGO sector", - "values": [ - "4 - General action" - ] - }, - { - "text": "Intensify its efforts to combat human trafficking and sexual exploitation.", - "values": [ - "4 - General action" - ] - }, - { - "text": "Continue efforts to combat discrimination against women, particularly migrant women", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Further pursue cooperation with civil society organizations with a view to promoting and protecting human rights in different areas, including the areas of education, health, migrant workers and gender equality ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Enact legislation that addresses exploitation of children via sexually explicit videos, movies, photos and electronic images ", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Implement effectively the human rights to drinking water and sanitation as embodied in the Constitution", - "values": [ - "4 - General action" - ] - }, - { - "text": "Combat all forms of the trafficking in women and girls", - "values": [ - "4 - General action" - ] - }, - { - "text": "Further strengthen the policies and adopt measures for guaranteeing women the access to reproductive health products and services", - "values": [ - "4 - General action" - ] - }, - { - "text": "Consider favourably the request for a visit by the Special Rapporteur on torture and other cruel, inhuman or degrading treatment or punishment, and to find time in the near future for a visit by the Special Rapporteur on the independence of judges and lawyers", - "values": [ - "3 - Considering action" - ] - }, - { - "text": "Establish a plan of action to implement the Midterm Strategy for the Development of the Roma National Minority of the Slovak Republic, Solidarity- Integrity-Inclusion 2008-2013.", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Consider holding a referendum on the desirability or otherwise of a written constitution, preferably republican, which includes a bill of rights.", - "values": [ - "3 - Considering action" - ] - }, - { - "text": "Allow WFP to access those in need ", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Allow abortion at least when pregnancy poses a risk to the health of the pregnant woman ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Adopt laws that criminalize all forms of violence against women and girls and review criminal procedures to end impunity for such violations", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Pursue the necessary procedure to accede to the International Covenant on Economic, Social and Cultural Rights [1966]", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Circulate and implement the Bangkok Rules on the treatment of women prisoners and non-custodial measures for women offenders as part of its reform of the judicial system ", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Continue with its plans to strengthen child protection and welfare activities, including the introduction of legislation for this purpose", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Submit its overdue reports to the Human Rights Committee, the Committee on Economic, Social and Cultural Rights, the Committee on the Rights of the Child, the Committee on the Rights of Persons with Disabilities, and the Committee on the Elimination of All Forms of Discrimination against Women ", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Strengthen its efforts and measures aiming at combating violence against women and girls", - "values": [ - "4 - General action" - ] - }, - { - "text": "Consider continuing to ensure that children are not discriminated against on the basis of their religion or ethnic backgrounds ", - "values": [ - "3 - Considering action" - ] - }, - { - "text": "Introduce mandatory human rights training for police agencies, and implement an evidence-based policing programme, to reduce deaths from police action by 10 per cent over the universal periodic review cycle", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Extend the implementation of the recommendations issued by United Nations treaty bodies and by the Human Rights Council ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Recognize and respect the right of the Palestinian people to self-determination and their right to establish an independent sovereign Palestinian State.", - "values": [ - "4 - General action" - ] - }, - { - "text": "Adopt a comprehensive national human rights action plan aimed at addressing all human rights violations", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Continue making progress in eradicating poverty, through the application of their social policies aimed at increasing the living standards of its people, in particular the most vulnerable sectors of the population", - "values": [ - "4 - General action" - ] - }, - { - "text": "Take appropriate measures to establish a mechanism for monitoring detention places ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Continue with its socio-economic actions to combat poverty ", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Intensify its efforts to ratify the International Convention for the Protection of all Persons from Enforced Disappearances ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Adopt measures to investigate, prosecute and punish those responsible for serious human rights crimes such as the recruitment of child soldiers, in accordance with international norms and in a transparent manner", - "values": [ - "4 - General action" - ] - }, - { - "text": "Adopt a general strategy to eliminate gender stereotypes", - "values": [ - "4 - General action" - ] - }, - { - "text": "Ensure the right to health of persons living with HIV/AIDS, through the strengthening of inter-institutional coordination, the establishment of programs to make available essential medicines, as well as strategies to address the increased rate of infection by HIV and new infections among adolescents and young women", - "values": [ - "4 - General action" - ] - }, - { - "text": "Issue a standing invitation to all thematic special procedures and cooperate fully with the United Nations human rights mechanisms, including the Commission of Inquiry", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Sign the Optional Protocol to the International Covenant on Economic, Social and Cultural Rights, the Convention against Torture and Other Cruel, Inhuman or Degrading Treatment or Punishment and its Optional Protocol and ratify the International Convention for the Protection of All Persons from Enforced Disappearance ", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Continue its efforts and initiatives to fight against corruption", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Accelerate the process of withdrawal of declarations under article 2 of the Convention on the Rights of the Child concerning non-discrimination principle, which limits the enjoyment of the Convention rights by children who do not have Belgian nationality ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Consider creation of additional national mechanisms to promote and protect human rights of vulnerable groups especially women, children and people with disabilities ", - "values": [ - "3 - Considering action" - ] - }, - { - "text": "Put in place all the necessary measures to ensure that the population has access to adequate sanitation and clean drinking water", - "values": [ - "4 - General action" - ] - }, - { - "text": "Continue the efforts and successes achieved by the national institutions in undertaking awareness raising campaigns to spread a culture of human rights", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Continue its efforts to guarantee the right to the truth for victims and families of serious human rights violations and for all Brazilian society, ensuring proper functioning of the Truth Commission ", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Continue work aimed at ratification of the International Convention for the Protection of All Persons from Enforced Disappearance, and the Optional Protocol to the Convention against Torture ", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Combat malnutrition and micronutrient deficiencies by ensuring the right to adequate and healthy food", - "values": [ - "4 - General action" - ] - }, - { - "text": "Continue on promoting policies aiming at guarantying respect of cultural diversity in its territory ", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Continue efforts in the promotion and protection of economic, social and cultural rights ", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Develop a comprehensive national action plan to combat and prevent racism, racial discrimination, xenophobia and intolerance in accordance with the Durban Agreements", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Continue the process for the establishment of a national human rights institution in conformity with the Paris Principles ", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "To formulate strategies and intensify campaigns to raise awareness among community leaders", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Intensify efforts to guarantee gender equality and to empower women, including by developing its national policy on gender equality and by continuing the work currently underway in the Intersectoral Commission to Eradicate Violence against women and the Legal Commission on Equity for Women in Congress ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Develop a basic education curriculum imparting quality education in rural areas, promoting gender equality, non-discrimination based on sexual orientation and addressing problems in the community education systems", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Enshrine, in the framework of the current constitutional review, the principle of equality between men and women, and redouble efforts to improve the situation of the Maori and the Pacifika in the areas of health and employment on one hand, and strengthen the specific measures taken in their favour to raise the level of education of their children on the other hand ", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Continue efforts to raise awareness and to train those working in the field of human rights", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Step up its efforts to halt torture and ill-treatment as well as eradicating impunity for such acts and that alleged perpetrators be brought before justice", - "values": [ - "4 - General action" - ] - }, - { - "text": "Ensure the effective implementation of the Children\u2019s Code with a view to protect the rights of this vulnerable group", - "values": [ - "4 - General action" - ] - }, - { - "text": "Cease the use of children as combatants ", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "To favour actively the rapid completion of negotiations on an optional protocol to the International Covenant on Economic, Social and Cultural Rights so that all the rights recognized by the Covenant may be included in individual communications", - "values": [ - "4 - General action" - ] - }, - { - "text": "Further strengthen consultations with indigenous populations to fulfil their economic, social and cultural rights", - "values": [ - "4 - General action" - ] - }, - { - "text": "Ensure that children in vulnerable and disadvantaged situations have equal access to education", - "values": [ - "4 - General action" - ] - }, - { - "text": "Counter harassment, threats and wiretapping of investigating journalists, bloggers and NGO representatives", - "values": [ - "4 - General action" - ] - }, - { - "text": "Take appropriate legislative and policy measures in order to guarantee full respect of human rights, including in the fight against terrorism.", - "values": [ - "4 - General action" - ] - }, - { - "text": "Increase efforts to protect women from violence and discrimination, in particular in areas affected by the earthquakes", - "values": [ - "4 - General action" - ] - }, - { - "text": "The Government is committed to bringing any person involved in a corruption case before the competent judicial authority, regardless of his or her professional rank or status in society", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Continue pursuing efficient educational policies to ensure a better future for its children", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Give due attention to the issue of human rights education in the current work on the third action plan on human rights by, inter alia, compiling a report on the situation regarding human rights education in Sweden", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Seek the support of the international community in its post-conflict reconstruction phase, including capacity-building and training and institution building in the area of promotion and protection of human rights. ", - "values": [ - "1 - Minimal action" - ] - }, - { - "text": "Ensure integration of human rights culture to law enforcement entities", - "values": [ - "4 - General action" - ] - }, - { - "text": "Establish judicial and other mechanisms to investigate allegations of torture, police brutality, and arbitrary detention", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Abandon the policy and practice of discrimination, forced assimilation and persecution against ethnic and religious minorities ", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Increase efforts to combat violence against women and girls, particularly domestic violence and femicide", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Continue the government efforts of protecting the rights of freedom of expression and peaceful demonstrations and respect the political rights in this aspect", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Immediately lift the on-going regime of military closures imposed on the occupied Gaza Strip and guarantee unrestricted access of goods and individuals in and out of the Gaza Strip", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Amend provisions under the criminal code to comply with the country's international human rights obligations with regard to the right to freedom of expression", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Take decisive actions to ensure immediate protection for civilians at risk and to propose to the armed opposition a viable mechanism to meet its needs without the use of weapons. ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Establish its planned national human rights institution in accordance with the Paris Principles.", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Continue its efforts to support persons with disabilities and integrate them in society on an equal footing, as real social partners", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Creation of an effective mechanism to deal with cases of neglect by private sector institutions of workers' housing.", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Ratify as soon as possible the Optional Protocol to the Convention against Torture ", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Take measures to legislate into domestic law the international human rights instruments to which it is a party ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Take the measures necessary to bolster the independence of the National Audiovisual Commission as a regulatory body for the media ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Prohibit the use of public flogging", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Ensure that cases of domestic violence, ill treatment, sexual and other abuse within the family are properly investigated and that perpetrators are sanctioned ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Include the women's rights perspective in the peace negotiations and, specifically, ensure that sexual violence concerns are raised consistently in the peace process and reflected in any peace agreement", - "values": [ - "4 - General action" - ] - }, - { - "text": "Withdraw its reservation to the article 6 of the Convention on the Rights of the Child", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Decriminalize homosexuality and revise sections 137A, 153, 154 and 156 of the Penal Code and revise the law on marriage, divorce and family relations in order to bring it in line with the international instruments ratified by Malawi", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Amend the legislation to explicitly prohibit corporal punishment in families, schools and institutions, to conduct awareness-raising campaigns on this issue and to ensure that the existing legislation related to children fully reflects the principles and provisions contained in CRC ", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Continue its efforts to protect persons with disabilities against violence, exploitation and abuse", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Strengthen measures aimed at the alleviation of poverty as well as access to education and health services ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Eliminate the type of crime of "unnatural sexual relations", and adopt measures to eradicate discrimination motivated by sexual orientation and gender identity", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Start a dialogue with relevant stakeholders and civil society with a view to revise the Press and Publications Law and its last amendments, adopted in September 2012", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Take further steps in the implementation of CEDAW by prioritizing combating of gender-based violence, abuse and exploitation ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Strengthen measures to promote women's economic and political participation in the country", - "values": [ - "4 - General action" - ] - }, - { - "text": "Continue working with the national mechanisms that defend the social rights of the most vulnerable groups of the population", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Unconditionally lift its measures of economic embargoes and sanctions unilaterally and coercively imposed upon other countries, as these measures are inflicting severe and negative impact on the human rights of the peoples ", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Step up efforts to find a sustainable solution for refugees through discussion with relevant\nparties, and attach particular importance to children and women and the need for families to remain\ntogether ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Intensify its efforts in the area of institutional and legislative development", - "values": [ - "4 - General action" - ] - }, - { - "text": "Ratify protocols as committed to, including the Optional Protocol to the Convention against Torture", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Accelerate putting in place a comprehensive development plan for the health system and its infrastructure ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Become a party to the Optional Protocol to the Convention against Torture", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Take effective measures to protect children from exploitative forms of labour and work in hazardous areas", - "values": [ - "4 - General action" - ] - }, - { - "text": "Take steps to end stereotypes and discriminatory behaviours against women and redress wage inequalities between men and women", - "values": [ - "4 - General action" - ] - }, - { - "text": "Introduce legislation uniformly across the Confederation that explicitly protects lesbian, gay, bisexual, transgender and intersex persons from discrimination. In preparing this Act, the issues faced by lesbian, gay, bisexual, transgender and intersex persons should be taken into account", - "values": [ - "4 - General action" - ] - }, - { - "text": "Allow the Human Rights Council Special Rapporteur on the situation of human rights in Eritrea to visit the country without further delay and fully cooperate with her ", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Study the possibility to ratify the International Convention for the Protection of All Persons from Enforced Disappearance (CED) and the ICCPR-OP 2 ", - "values": [ - "3 - Considering action" - ] - }, - { - "text": "Ratify the Rome Statute of the International Criminal Court ", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Enhance efforts - including within the "Strategy to Strengthen the Rights of the Child in Sweden" - to prevent and eliminate discrimination against children belonging to ethnic minorities, child members of immigrant families and child refugees and asylum seekers", - "values": [ - "4 - General action" - ] - }, - { - "text": "Establish a law on freedom of information in accordance with international standards ", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Reinforce the mechanisms for combating racism, racial discrimination, xenophobia and other forms of intolerance which affect migrants, foreigners and ethnic minorities ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Continue improving the protection of its citizens from violent crime in urban and rural areas, as laid out in the key national priorities for 2009 to 2014 ", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Undertake legislative reforms, and review especially of the 1984 Family Code, to withdraw/to allow it to withdraw all its reservations to the CEDAW ", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Reverse its decision to withdraw from the American Convention on Human Rights", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Take immediate measures to guarantee all persons' right to participate in the Government of their country and to ensure that the transition process is carried out as scheduled", - "values": [ - "4 - General action" - ] - }, - { - "text": "Encourage the legislature to adopt international instruments and other human rights initiatives ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Extend a standing invitation to all thematic special procedures ", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Adopt and implement public policies to protect peoples with disabilities and guarantee their equal access to decent housing, employment and health ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Adopt and implement, by the end of 2014, a law prohibiting all forms of violence against children, including harmful practices and ensure that such legislation is in line with international human rights standards ", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Examine positively the ratification of the Convention on the Civil Aspects of International Child Abduction", - "values": [ - "4 - General action" - ] - }, - { - "text": "Take concrete measures such as the establishment of a computerized database on prisoners, to improve the functioning of prisons and the conditions of detainees", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Monitor the customary law to ensure that traditional practices be aligned with its obligations in the area of human rights, especially with the provisions of international instruments to which Ghana is a State party", - "values": [ - "4 - General action" - ] - }, - { - "text": "Strengthen control and supervision mechanisms for the police, particularly through the Standing Committee for Police Monitoring and its Investigation Service", - "values": [ - "4 - General action" - ] - }, - { - "text": "Ensure land rights of indigenous communities within protected natural parks, in particular Pygmies. Likewise harmonize projects of greenhouse gas reduction, deforestation reduction and forest degradation in line with the United Nations Declaration on the Rights of Indigenous Peoples ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Pursue efforts to reform the justice system with a view to guaranteeing access to justice to all, including through providing qualified staff", - "values": [ - "4 - General action" - ] - }, - { - "text": "Establish measures in order to provide for equality of rights and opportunities between women and men and the elimination of discrimination against women, including through legal reforms - and devote priority attention to effectively eliminating all forms of violence against women, especially domestic violence, inter alia, by establishing a national mechanism for the advancement of women, and to addressing the issue of violence against women ", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Strengthen the domestic legal framework on job protection", - "values": [ - "4 - General action" - ] - }, - { - "text": "Continue working for the neediest sectors of the population, by strengthening social policies", - "values": [ - "4 - General action" - ] - }, - { - "text": "Sign and ratify the Optional Protocol to the Convention against Torture ", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Continue the process of ratification of international instruments on human rights", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Ratify the Rome Statute of the International Criminal Court and fully align its legislation with all obligations under the Rome Statute", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Penitentiary rehabilitation: designing a model for social insertion and a model for an infrastructure compliant with human rights standards, building of seven new penitentiary centres based on the model of social insertion", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Adopt a legislation to prevent and punish child marriage, by setting 18 as legal age for marriage, for both women and men ", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Implement measures in order to address the factors leading to an overrepresentation of Aboriginal and Torres Strait Islander communities in the prison population ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Continue its cooperation with the international community to provide voluntary assistance to disaster relief appeals", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Consider formulating a strategy against trafficking in persons", - "values": [ - "3 - Considering action" - ] - }, - { - "text": "Continue to implement measures to stop the flow of trafficking in persons", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Remove extenuating circumstances for "honour" killings", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Encourage the ratification of the conventions that are still pending, particularly the ICRMW", - "values": [ - "4 - General action" - ] - }, - { - "text": "Investigate, prosecute and take all adequate measures to reduce and eradicate incidents of sexual gender-based violence committed by armed elements ", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Take steps to address discrimination based on sexual orientation and gender identity, including revising the Gender Identity Disorder Law", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Consider abolishing article 377 of the Penal Code, which criminalizes sexuality against the order of nature", - "values": [ - "3 - Considering action" - ] - }, - { - "text": "Pay particular attention to the provision of adequate basic services to the Roma population, such as drinking water, sanitation, electricity and systems of sewage and waste disposal ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Continue efforts in further promotion of women's rights", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Sign and ratify ICRMW.", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Further provide protection to victims of trafficking in human beings, on the basis of a human rights-based approach, and ensure that they are systematically informed of the possibility of a recovery and reflection period", - "values": [ - "4 - General action" - ] - }, - { - "text": "Implement and enforce the law against female genital mutilation as soon as possible", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Finalize and enact legislation to criminalize all forms of human trafficking, as defined in international law, with sufficiently stringent penalties", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Adopt into law the proposed changes to its constitutional framework to provide protection to all persons resident in Sweden against discrimination based on sexual orientation ", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Ensure that juveniles in detention are housed in separate facilities from adults", - "values": [ - "4 - General action" - ] - }, - { - "text": "Fully and thoroughly implement Law No. 97 of 20 June 2008, on the prevention and repression of violence against women and gender violence", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Include full implementation of freedom of opinion, freedom of assembly and association among the priorities of the national programme of action in the field of human rights, that Uzbekistan intends to elaborate ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Protect persons with albinism from violence, abduction, discrimination and stigmatization", - "values": [ - "4 - General action" - ] - }, - { - "text": "Explore the possibility of a moratorium on the application of the death penalty towards its complete abolition, in conformity with the latest General Assembly resolutions on the subject.", - "values": [ - "3 - Considering action" - ] - }, - { - "text": "Take every measure to ensure the effective implementation of CAT, particularly in detention centres", - "values": [ - "4 - General action" - ] - }, - { - "text": "Continue the efforts at improving the access to water and sanitation ", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Promote more intercultural education and ensure that marginalized groups enjoy equal rights before the law ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Adhere to and adopt national legislation to bring it into line with the Arms Trade Treaty", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Ratify the United Nations Educational, Scientific and Cultural Organization (UNESCO) Convention against Discrimination in Education", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Strengthen its cooperation with the special procedures mandate holders of the Human Rights Council", - "values": [ - "4 - General action" - ] - }, - { - "text": "Redouble efforts to ensure access to public places and labour market to persons with disabilities and to ratify the Convention on the Rights of Persons with Disabilities ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Take steps to ratify and implement ICESCR", - "values": [ - "4 - General action" - ] - }, - { - "text": "Establish a national plan or programme that favour the full enjoyment of all the human rights by the women ", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Continue progress to increase gender equality and protections for women and girls who encounter violence including enhanced implementation of Denmark's existing legal and policy frameworks", - "values": [ - "4 - General action" - ] - }, - { - "text": "Repeal all provisions in domestic legislation criminalizing consensual sexual activity between same sex adults and combat discrimination against LGBT through political, legislative and administrative measures ", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Continue to increase its efforts to prevent and combat the trafficking in persons", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Step up its efforts in providing equal opportunities to education and work to both vulnerable groups and minorities ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Ensure accountability for hate speech including in political discourse, prohibiting organizations promoting and inciting racial hatred, in line with article 4 (b) of the Convention on the Elimination of All Forms of Racial Discrimination and ratify ICRMW", - "values": [ - "4 - General action" - ] - }, - { - "text": "Seriously consider ratifying the core human rights treaties it has previously signed. This includes, inter alia, the International Covenant on Civil and Political Rights, the International Convention on the Elimination of All Forms of Racial Discrimination and the Convention against Torture ", - "values": [ - "3 - Considering action" - ] - }, - { - "text": "Strengthen the campaign to combat discriminatory practices and violence against women and children", - "values": [ - "4 - General action" - ] - }, - { - "text": "Establish a strong and independent national human rights institution in conformity with the Paris Principles", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Intensify its efforts to combat human trafficking", - "values": [ - "4 - General action" - ] - }, - { - "text": "Continue its efforts towards implementation of the inclusive education policies it has developed", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Genuine and full commitment to treaties combating terrorism and relative international resolutions to combat terrorism, its financing and support in all aspects ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Make the necessary efforts so that judicial proceedings do not suffer undue delay, and implement a system that prevents people of different sex being detained in the same facilities, and sometimes even mixed with minors ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Continue efforts to improve the protection of women and children", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Assign the human, technical and financial resources necessary for the proper functioning of the Office of the Commissioner for Children and for the sexual and reproductive health care of women and girls", - "values": [ - "4 - General action" - ] - }, - { - "text": "Continue efforts to improve access to public services for persons with disabilities, including the electoral process ", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Ratify the Palermo Protocol.", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Intensify its efforts to resolve, through bilateral discussions, the issues relating to displaced persons formerly resident in the country and currently living in a neighbouring country", - "values": [ - "4 - General action" - ] - }, - { - "text": "Accomplish progressively human rights goals as set forth in resolution 9-12.", - "values": [ - "4 - General action" - ] - }, - { - "text": "Establish strategies to sustain and reinforce progress recently made in the area of food security ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Increase efforts to develop the education system in the field of human rights and further promote a human rights culture in society", - "values": [ - "4 - General action" - ] - }, - { - "text": "Expeditiously implement actions requested by the International Labour Organization Committee of Experts aimed at combating the sexual abuse and exploitation of children", - "values": [ - "4 - General action" - ] - }, - { - "text": "Ensure the effective implementation of Order 092 of the Constitutional Court, which referred 183 cases of sexual violence against women to the Attorney-General's Office, the incorporation of Law 1257 on violence against women into the Criminal Code, and create an interinstitutional system for monitoring of the implementation of Security Council resolution 1325 ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Enhance efforts to concretely recognize equal rights to all Iranian citizens, irrespective of their religious affiliation, including the rights to promote their religion, to change religion, to complete university studies and to be hired as civil servants or members of the armed forces", - "values": [ - "4 - General action" - ] - }, - { - "text": "Institutionalize the right to consultation of indigenous peoples and involve civil society and indigenous groups in the elaboration of a functioning consultation mechanism according to the country\u2019s commitments under the ILO Indigenous and Tribal Peoples Convention, 1989 (No. 169)", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Strengthen the use of modern means of awareness-raising and dissemination with regard to a culture of human rights, notably the rights of vulnerable groups, and the role of institutions for the protection and promotion of human rights ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Effectively address the situation of persons who have been in prolonged pre-trial detention in full accordance with the principle of proportionality", - "values": [ - "4 - General action" - ] - }, - { - "text": "Continue making progress in applying the strategy on trafficking in persons adopted in July 2011", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Take all possible measures to ensure the necessary conditions so that the written press and the electronic media can function properly without any interference.", - "values": [ - "4 - General action" - ] - }, - { - "text": "Take steps to abolish the death penalty and increase transparency around its use.", - "values": [ - "4 - General action" - ] - }, - { - "text": "Ensure that minority children enjoy the right to education without discrimination, in line with the recommendations by the Committee on Economic, Social and Cultural Rights and the Committee on the Elimination of Racial Discrimination", - "values": [ - "4 - General action" - ] - }, - { - "text": "Consider a review of the NGO law taking into account, amongst others, the concerns expressed by United Nations rights bodies ", - "values": [ - "3 - Considering action" - ] - }, - { - "text": "Consider legal reform to improve access to justice for the poorest plaintiffs, including measures to address high lawyer fees and the centralization of courts ", - "values": [ - "3 - Considering action" - ] - }, - { - "text": "Take urgent measures to repeal norms and regulations that discriminate against women and lesbian, gay, bisexual and transgender persons, as well as to investigate and punish perpetrators of acts of discrimination and violence against them", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Redouble its efforts in maternal health, sexual and reproductive health and comprehensive contraceptive services", - "values": [ - "4 - General action" - ] - }, - { - "text": "Provide the national human rights institution with the necessary means for it to be in compliance with the Paris Principles", - "values": [ - "4 - General action" - ] - }, - { - "text": "Strengthen health-care facilities and enhance access to reproductive health services, especially for adolescents and youth, unmarried women and marginalized and excluded populations such as persons with disabilities", - "values": [ - "4 - General action" - ] - }, - { - "text": "Comply with the principle of freedom of movement in the Central American region adopted in the framework of the Central American System of Integration ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Complete the process of ratification of international legal instruments", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Complete the process of adopting the Prevention and Combating of Hate Crimes and Hate Speech Bill", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Thailand will strengthen the implementation of the National Human Rights Action Plan", - "values": [ - "4 - General action" - ] - }, - { - "text": "Ratify the Rome Statute of the International Criminal Court signed in 1998", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Ratify the Optional Protocol to the International Covenant on Economic, Social and Cultural Rights and opt in to the inquiry and inter-state procedures", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Protect the independence of the judiciary, respect the opinions of the Venice Commission, the Organization for Security and Cooperation in Europe Office for Democratic Institutions and Human Rights and the European Commission, especially regarding justice reform, and ensure that the independence of the Constitutional Tribunal and of judicial institutions is maintained", - "values": [ - "4 - General action" - ] - }, - { - "text": "Immediately end the practice of indefinitely extending military service, a system which amounts to forced labour ", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Place additional efforts and attention to primary education, especially in rural areas ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Continue to adopt measures to further improve the lives of vulnerable people in the country", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Bring all perpetrators of violence against journalists and human rights defenders to justice and ensure that journalists and human rights activists are able to pursue their activities, including by expressing criticism of government policies, without intimidation and harassment ", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Respond to the Human Rights Committee's request to submit information within one year on the follow-up given to its recommendations in 2005 on female genital mutilation.", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Consolidate the development of a comprehensive national framework in addressing all forms of violence against women, through the adoption of the Domestic Violence Bill, and harmonize domestic law with the provisions of the Convention on the Elimination of All Forms of Discrimination against Women ", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Allow access to international funding so that human rights defenders may continue to carry out their legitimate work ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Strengthen reforms to ensure access to justice for all", - "values": [ - "4 - General action" - ] - }, - { - "text": "Continue with the implementation of measures to improve adverse conditions in prisons, in particular the renovations required to improve the health situation in prisons and effective programmes for education and rehabilitation of prison inmates", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Consider ensuring an effective, inclusive education for children with disabilities, and to improve universal design to ensure accessibility to everyone", - "values": [ - "3 - Considering action" - ] - }, - { - "text": "Criminalize domestic violence ", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Extend a standing invitation to the special procedures of the Human Rights Council", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Move towards the conclusion of the electoral process to guarantee civil and political rights of all citizens", - "values": [ - "4 - General action" - ] - }, - { - "text": "In keeping with CEDAW recommendations, to ensure that women have access to adequate health and social services, and to take a concrete step to reduce maternal mortality rates", - "values": [ - "4 - General action" - ] - }, - { - "text": "Expand the Public Defender programme to ensure that all those who do not have sufficient means to pay for legal services - citizens and non-citizens alike - can receive them", - "values": [ - "4 - General action" - ] - }, - { - "text": "Consider increased State monitoring of international private security companies, including regulation of their activities.", - "values": [ - "3 - Considering action" - ] - }, - { - "text": "Discontinue the limitations on civil society activities, including the short-term detention of political activists ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Submit all overdue reports to the treaty bodies", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Strengthen the existing cooperation with the United Nations and the human rights mechanisms, so as to ensure further promotion of human rights ", - "values": [ - "1 - Minimal action" - ] - }, - { - "text": "Adopt and implement policies for combating discrimination and violence against women, especially domestic and sexual violence ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Ratify the International Convention on the Rights of Persons with Disabilities and its Optional Protocol \n", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Implement the recommendation of CERD to realize the economic, social and cultural rights of aboriginal people ", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Abolish the death penalty and ratify the Second Optional Protocol to the International Covenant on Civil and Political Rights ", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Intensify efforts for restoring security and improving the humanitarian situation in the country", - "values": [ - "4 - General action" - ] - }, - { - "text": "Continue to take the necessary measures in the area of Official Development Assistance (ODA) to meet its voluntary commitments undertaken in this field", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Redouble efforts to reduce maternal mortality, including through the recent maternal health ministerial taskforce and the emergency response action plan ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Consider signing all core outstanding international human rights instruments and enacting the domestic legislation necessary to domesticate the provisions of these instruments ", - "values": [ - "3 - Considering action" - ] - }, - { - "text": "Take all the necessary steps to ensure the prompt and independent investigation of all allegations concerning intimidation, threats and attacks against journalists, media workers and human rights defenders", - "values": [ - "4 - General action" - ] - }, - { - "text": "Accelerate the establishment of a national human rights institution in accordance with the Paris Principles ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Revoke legal provisions criminalizing sexual activity between consenting adults", - "values": [ - "3 - Considering action" - ] - }, - { - "text": "Permit international monitors to examine immigration detention centres.", - "values": [ - "4 - General action" - ] - }, - { - "text": "Consider requesting technical assistance from the international community, including from OHCHR, in particular in terms of capacity-building, in order to allow it to overcome the challenges linked to delays in the submission of its reports to human rights mechanisms ", - "values": [ - "3 - Considering action" - ] - }, - { - "text": "Review the law 228/2004 to guarantee equality and nondiscrimination and protect the humane rights of all groups, including the right to education", - "values": [ - "3 - Considering action" - ] - }, - { - "text": "Amend the Penal Code, particularly Sections 365 and 365A, to decriminalize consensual same-sex conduct as well as displays of affection", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Intensify efforts to bring domestic legislation into compliance with the provisions of the Rome Statute of the International Criminal Court", - "values": [ - "4 - General action" - ] - }, - { - "text": "Introduce a moratorium at the federal level with view to achieving nationwide moratorium of capital punishment as a first step to abolishing such penalty", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Intensify collaboration with international mechanisms, and specify the concrete means for the implementation of its international commitments ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Continue its efforts to implement the plan for equal opportunities 2011-2020 ", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Continue its efforts in promoting and protecting the human rights of its people, in particular those of vulnerable groups ", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Eliminate all legal provisions and policies which discriminate against adherents of other religions than Islam and adopt a unified law for places of worship", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Further enhance measures to guarantee freedom of the press, by investigating acts of intimidation and aggression against journalists in accordance with recommendations of the Human Rights Committee ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Quickly pass pending legislation related to the protection of women and children including the Sexual Offences and Domestic Violence Bill and the Draft Land Policy", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Consider an early ratification of the Optional Protocol to the Convention on the Rights of the Child on the Sale of Children, Child Prostitution and Child Pornography (OP-CRC-SC)", - "values": [ - "3 - Considering action" - ] - }, - { - "text": "Continue efforts to ensure better access of the population to drinking water and sanitation", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Guarantee the free exercise of the right to demonstrate, recognized in section 59 of the 2013 Constitution", - "values": [ - "4 - General action" - ] - }, - { - "text": "Modify the domestic legislation to be in accordance with the standards and requirements contained in the international human rights instruments ", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Continue to engage its regional and international partners with a view to seeking technical and other assistance towards its full compliance with its human rights treaty obligations", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "As the drafter of the Majuro Declaration, the RMI remains committed to leading the international dialogue in the effort in reducing the impacts of climate change and pursuing effective adaptation measures.", - "values": [ - "4 - General action" - ] - }, - { - "text": "Continue its efforts to promote the empowerment of women and to combat violence against women, in line with the recommendations of the Verma Committee", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Partner with existing independent human rights organizations to monitor and evaluate government interventions that combat domestic violence", - "values": [ - "4 - General action" - ] - }, - { - "text": "Equip the government committee established to consider accession to the International Covenant on Economic, Social and Cultural Rights with adequate power and resources to accelerate the process and reach a practical outcome ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Continue efforts aimed at combating violence against women and providing information to women, family and society's leaders regarding the adverse consequences of forced marriages and other forms of domestic violence, including in the framework of the 2012 campaign "Together, we will end domestic violence against women" ", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Submit the various overdue reports to the relevant treaty bodies", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Take appropriate measures to avoid the excessive use of force by security officers", - "values": [ - "4 - General action" - ] - }, - { - "text": "Implement programmes to create jobs to ensure the realization of the right to work", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "The delegation highlighted that the Jamaican Government remained committed to implementing the recommendations arising from the universal periodic review and would endeavour to uphold its demonstrated tradition of respect for the rule of law.", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Ensure prompt and impartial investigations of allegations of ill treatment, in accordance with its obligations under the Convention against Torture.", - "values": [ - "4 - General action" - ] - }, - { - "text": "Continue to ensure effective access to social protection for vulnerable groups", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Consider ratification of the Convention on the Prevention and Punishment of the Crime of Genocide ", - "values": [ - "3 - Considering action" - ] - }, - { - "text": "Guarantee the efficient implementation of the Justice and Peace Law, taking into account the clarifications given by the Constitutional Court.", - "values": [ - "4 - General action" - ] - }, - { - "text": "Provide the Ombudsman institution with adequate financial and human resources so that it can fulfil its mandate effectively", - "values": [ - "4 - General action" - ] - }, - { - "text": "Elaborate comprehensive measures in order to guarantee the right to education for children of migrants and of national minorities", - "values": [ - "4 - General action" - ] - }, - { - "text": "Urgently enact legislation to protect women from domestic violence and establish facilities to provide temporary shelter and protection for victims ", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Arrest and bring to justice members of the armed forces of the Democratic Republic of the Congo who perpetrate sexual violence or any other form of human rights violations, without exception and without regard to their rank. ", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "The Government will continue to provide and ensure improved and easily accessible service delivery at district and grassroots level to its citizens.", - "values": [ - "4 - General action" - ] - }, - { - "text": "Share its experience and lessons learnt in South-South Cooperation in the field of the promotion of the right to education", - "values": [ - "1 - Minimal action" - ] - }, - { - "text": "In order to fully implement an all-encompassing system that spans crime prevention to the eradication of impunity, hold periodic reviews, issue external progress reports and request technical support when necessary. ", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Adopt further legislative and educational measures that diminish economic inequality, joblessness and discrimination, especially for the Roma, Sinti, and Travel communities", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Continue on the path chosen and, in particular, foster and promote activities and discussion\non human rights issues domestically and capacity building of institutions ", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Protect the rights of lesbian, gay, bisexual, transgender and intersex persons and take the necessary measures to guarantee their protection and a life free from discrimination", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Make public, so as to ensure transparency, the conclusions and recommendations of the different national fact-finding commissions", - "values": [ - "4 - General action" - ] - }, - { - "text": "Pursue measures to eradicate poverty through the implementation of comprehensive public policies with a human rights-based approach", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Ensure access to fundamental human rights for all individuals residing in Argentina, including foreign nationals, regardless of their immigration status", - "values": [ - "4 - General action" - ] - }, - { - "text": "Continue efforts aimed at improving social security in the country, especially at this time of economic and financial crisis.", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Consider establishing more mechanisms for the identification of victims of trafficking", - "values": [ - "3 - Considering action" - ] - }, - { - "text": "Fully align the Internet law with international and European standards", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Conduct a nationwide study on the prevalence of slavery and slaverylike practices in cooperation with national and international stakeholders", - "values": [ - "3 - Considering action" - ] - }, - { - "text": "Accelerate steps under way to establish the national human rights commission in accordance with the Paris Principles", - "values": [ - "4 - General action" - ] - }, - { - "text": "Consider the establishment of an efficient, child-friendly mechanism through which children can make complaints on abuses of their rights ", - "values": [ - "3 - Considering action" - ] - }, - { - "text": "Continue its efforts to develop a modern legal framework for media that take into consideration new social, cultural and political developments while preserving the interests of the State and society", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Continue to confront attempts of foreign intervention into its domestic affairs and to exercise fully its people's right to self-determination and the country's sovereignty ", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Fast-track the enactment of the gender equality act", - "values": [ - "4 - General action" - ] - }, - { - "text": "Strengthen its legislative and policy framework to ensure women's rights are promoted and protected as a national priority, and in particular urgently consider criminalizing marital rape", - "values": [ - "4 - General action" - ] - }, - { - "text": "Take further steps to address issues of violence against women, including to finalize the Women's Right Bill, the Domestic Violence Bill and the Children's Act, as early as possible, and consider withdrawing its reservation to article 16 of CEDAW", - "values": [ - "4 - General action" - ] - }, - { - "text": "The Government of Maldives is committed to improving the domestic legislative framework to safeguard the rights of vulnerable groups in the society. Ensuring the protection of the rights of the children is a key priority of the Maldives, and the new Child Rights Bill in the legislative agenda of the Government, would comply with the Maldives international obligations under CRC. However, ratification of the additional protocols burdens the work of the State. The Government however, reiterates its commitment to promoting the rights of children, and would focus on establishing such procedures.", - "values": [ - "4 - General action" - ] - }, - { - "text": "Further improve social security, health and employment of the population", - "values": [ - "4 - General action" - ] - }, - { - "text": "To organize an annual meeting with civil society representatives in the field of human rights to prepare main international events", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Ratify the Council of Europe Convention on the Protection of Children against Sexual Exploitation and Sexual Abuse, signed by Norway on 25 October 2007 ", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Ensure its domestic legislation establishes universal jurisdiction over war crimes, especially with regard to the use of children in hostilities and sexual violence, including rape ", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Adopt further law amendments to abolish the State Security Court or, at a minimum, ensure that civilians are not tried for crimes not listed under the jurisdiction of the court and either release political activists in detention or try their cases in civilian courts", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Speed up on going consultations to ratify the ICRMW ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Develop and adopt measures to prevent, prosecute and punish acts of torture and ill-treatment of prisoners or criminal suspects ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Continue its efforts in human rights training and awareness raising", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Establish effective partnership with the donor community with a view to attaining food security through receipt of sufficient food assistance, development of agriculture sectors by receiving resources and technology and introduction of appropriate food distribution system ", - "values": [ - "1 - Minimal action" - ] - }, - { - "text": "Take concrete steps to meet obligations with regard to creating an environment that fosters freedom of expression, including respect for the independence of civil society organizations and the right to assemble ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Continue to implement the necessary socio-economic policies to reduce poverty especially among women and children ", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Redouble its efforts aimed at combating violence against women and girls, illiteracy and at ensuring greater representation of women in decision- making, both in the government and in the private sector", - "values": [ - "4 - General action" - ] - }, - { - "text": "Further enhance the capacity of the national committee for childhood for the full implementation of the national childhood strategic action plan", - "values": [ - "4 - General action" - ] - }, - { - "text": "Adopt provisions prohibiting polygamy, early marriages, female genital mutilation and levirate", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Ratify the Second Optional Protocol to the International Covenant on Civil and Political Rights in order to definitively abolish the death penalty", - "values": [ - "3 - Considering action" - ] - }, - { - "text": "Strengthen its policies focused on vulnerable groups such as children, women, older people and its fight against any form of discrimination and violation of their human rights ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Continue its efforts aimed at upgrading and developing human resources according to the needs of the health system", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Thoroughly and independently investigate all circumstances surrounding its involvement in rendition programmes ", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Identify needs in terms of strengthening necessary capacities to overcome the current shortcomings of the normative and institutional framework for the promotion and protection of human rights and request appropriate technical assistance, including for the establishment of a national human rights institution ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Prevent slavery of agriculture workers, in particular children and women ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Establish a national plan to ensure universal access to education", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Continue efforts to remove landmines and other explosive remnants of war", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Consider increasing the minimum age of marriage for girls ", - "values": [ - "3 - Considering action" - ] - }, - { - "text": "Accede to or ratify the following international instruments: the Optional Protocol to the International Covenant on Economic, Social and Cultural Rights, the Optional Protocol to the Convention on the Elimination of all Forms of Discrimination Against Women, the Optional Protocol to the Convention against Torture and Other Cruel, Inhuman or Degrading Treatment or Punishment, and the International Convention for the Protection of All Persons from Enforced Disappearance", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Take appropriate steps to establish "Approved Schools" as provided for in the Juvenile Act with the aim of, inter alia, separating juveniles from adult offenders serving custodial sentences ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Continue the reform of the judiciary in order to give more independence to the justice system, and improve the witness protection system ", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Consider strengthening the capacity of the Law Commission to enable it to fulfil with diligence its apparently broad mandate", - "values": [ - "3 - Considering action" - ] - }, - { - "text": "Codify and harmonize national legislation, including customary law, in conformity with Somalia's international obligations and the existing international standards in the field of human rights ", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Adopt further measures to fight impunity for human rights violations, including by law enforcement officials", - "values": [ - "4 - General action" - ] - }, - { - "text": "Consider signing and ratifying the International Convention on the Rights of All Migrant Workers and Members of their Families.", - "values": [ - "3 - Considering action" - ] - }, - { - "text": "Amend the draft computer crime and cybercrime bill and the Public Order and Security Act so as to align them with the 2013 Constitution", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Commit itself to the protection of the rights of all persons regardless of their sexual orientation or gender identity in anti-discrimination and equal opportunity legislation and bodies ", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Take further steps to harmonize national legislation with the Optional Protocol to the Convention on the Rights of the Child on a communications procedure and the Council of Europe Convention on the Protection of Children against Sexual Exploitation and Sexual Abuse", - "values": [ - "4 - General action" - ] - }, - { - "text": "Ratify core international human rights treaties, in particular ICCPR and ICESCR", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "An effective public policy for persons with disabilities that relies more on legislation and measures aimed at giving persons with disabilities, particularly children, access to health care and education, providing help to families of children with disabilities, mainstreaming children with disabilities in ordinary schools, and raising public awareness of the fundamental rights of persons with disabilities", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Adopt a national strategy for the elimination of violence against women ", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Establish a national human rights institution in compliance with the Paris Principles without delay", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Increase the quality in the social use and access to information and communication technologies ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Continue its efforts to further improve the standards of living of its population, including by improving access to education and health services", - "values": [ - "4 - General action" - ] - }, - { - "text": "Consider establishing an independent national human rights institution ", - "values": [ - "3 - Considering action" - ] - }, - { - "text": "Recommended ratification of the Optional Protocol to CEDAW", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Take all necessary measures to ensure that the Criminal Code prohibits all crimes against persons or against property on the basis of their actual or perceived sexual orientation or gender identity", - "values": [ - "4 - General action" - ] - }, - { - "text": "Further improve economic and social indicators, in particular in the sectors of drinking water, education, health and social housing", - "values": [ - "4 - General action" - ] - }, - { - "text": "Elaborate national legislation for the protection of child rights and create national mechanisms to monitor implementation ", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Disseminate the provisions of CRC, and conduct public awareness raising campaigns among local communities", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Continue to strengthen its activities to ensure there is no discrimination against ethnic minorities in the enjoyment of the full range of human rights, in line with the comments of the Committee on Economic, Social and Cultural Rights, the Committee on the Elimination of Racial Discrimination, the Committee on the Rights of the Child, and the Committee on the Elimination of Discrimination Against Women.", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Continue developing policies and programmes to enhance protection and advancement of women's rights ", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Step-up efforts in the protection of the rights of children, including continuing its measures in combating violence against children ", - "values": [ - "4 - General action" - ] - }, - { - "text": "That relevant civil society groups are consulted in implementation of recommendations by treaty monitoring bodies and that their views are given due consideration ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Continue its efforts to further strengthen the education sector ", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Continue to strengthen its efforts to ensure equality in marriage ", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Make primary education compulsory, ensuring particularly the inclusion of girls and persons with disabilities in the educational system", - "values": [ - "4 - General action" - ] - }, - { - "text": "Continue to pursue police and justice reforms aimed at reducing crime and impunity, while fully respecting human rights ", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Consider accession to the major international human rights instruments which it is not yet a party to, including ICESCR and ICCPR, and the two optional protocols thereto", - "values": [ - "3 - Considering action" - ] - }, - { - "text": "When responding to hate crimes, ensure targeted training of law enforcement to strengthen capacity to conduct special investigations, accurately register complaints and reflect victims' perspectives", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Increase its efforts to implement the recommendations of the treaty bodies on equality and non-discrimination", - "values": [ - "4 - General action" - ] - }, - { - "text": "Continue cooperation with international mechanisms concerning human rights", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Consider allocating adequate funding to anti-trafficking initiatives in order to ensure the successful implementation of the national action plan for the period 2016-2020", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Abolish any statutory provision which authorizes corporal punishment, in particular when the convicted is a child ", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Continue improving the business environment to stimulate job opportunities ", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Initiate a public debate with a view to abolishing the death penalty de jure, after more than 10 years of de facto moratorium on executions ", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Adopt the necessary measures to establish a moratorium on executions of the death penalty", - "values": [ - "4 - General action" - ] - }, - { - "text": "Continue strengthening policies and measures to prevent and eliminate manifestations of racism, xenophobia and intolerance in society", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Establish an effective and inclusive process to follow-up on the universal periodic review recommendations", - "values": [ - "4 - General action" - ] - }, - { - "text": "Strengthen the legislation against discrimination and adopt effective measures to combat racism, racial discrimination and xenophobia", - "values": [ - "4 - General action" - ] - }, - { - "text": "Pursue its land reform and resettlement program in order to enable underprivileged persons to have access to land, given that the right to land is a fundamental human right", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Ensure that Iraq's national legislation guarantees the rights of boys, girls and adolescents and establishes 18 as the age of adulthood, especially regarding penal responsibility", - "values": [ - "4 - General action" - ] - }, - { - "text": "Adjust immigration laws to international standards to which Belize is a party, to avoid discrimination against vulnerable groups in particular persons with cognitive disabilities and LGBT", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Lift its reservations made during the ratification of the Convention against Torture", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Ensure the education and training of girls and women, including access to education on sexual and reproductive health", - "values": [ - "4 - General action" - ] - }, - { - "text": "Urge business enterprises and the private sector to participate in the process of comprehensive human development, based on the principle of corporate social responsibility, including through voluntary and philanthropy initiatives", - "values": [ - "4 - General action" - ] - }, - { - "text": "Adopt and implement necessary measures, including its national programme of action of the social partners for the eradication of the worst forms of child labour, with a view to eliminating this phenomenon ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Continue to ensure full respect for the human rights of migrants and their families, who find themselves in an extremely precarious socio-economic situation aggravated, inter alia, by a limitation of their citizenship rights", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Extend the scope of the Penal Code (Sexual Offences) (Amendment) Bill of 2015 to clarify existing, and create new, legislation to protect the human rights of the lesbian, gay, bisexual, transgender and intersex community ", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Maintain its effective protection for the family as the fundamental and natural unit of society", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Ratify the International Covenant on Civil and Political Rights and the International Convention on the Elimination of All Forms of Racial Discrimination, signed since 2001, as well as the International Covenant on Economic, Social and Cultural Rights, the International Convention on the Protection of the Rights of All Migrant Workers and Members of their Families and the International Convention for the Protection of All Persons from Enforced Disappearance", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Establish a national independent human rights institution, in compliance with the Paris Principles", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Participate in the UNOCI mandate for training and activities of promotion, awareness-raising and technical assistance to face key human rights challenges, including impunity and grave violations of the rights of women and children ", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Promote intercultural and interreligious dialogue and cooperation, as a way of strengthening its non-discrimination programmes and supporting its awareness-raising campaigns against discrimination", - "values": [ - "4 - General action" - ] - }, - { - "text": "Continue its efforts in reducing poverty", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Take adequate measures to counter the worrying increase of violence against, abuse and sexual exploitation of children, by ensuring the implementation of applicable laws including through awareness and education programmes targeting more particularly parents, teachers, correctional officers and other relevant professionals", - "values": [ - "4 - General action" - ] - }, - { - "text": "Continue its efforts for the passing of the National Human Rights Action Plan and afterwards its implementation", - "values": [ - "4 - General action" - ] - }, - { - "text": "Adopt a comprehensive specific law on gender equality and gender violence", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Continue its efforts to further strengthen the capacity of social service providers and civil servants working on cases involving children, including through continued human rights education and training ", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Continue its efforts to amend or repeal all discriminatory legislation, including discrimination regarding land ownership and to ensure the compatibility between customary law and statutory law", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Continue the efforts directed towards eliminating child labour ", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Step up efforts to combat racism and ensure elimination of all acts of racial intolerance", - "values": [ - "4 - General action" - ] - }, - { - "text": "Ensure effective implementation of the National Action Plan to End Sexual Violence in Conflict, including through frequent meetings of the Steering Committee", - "values": [ - "4 - General action" - ] - }, - { - "text": "Redouble its efforts to fully implement, as soon as possible, the plan of action for peace, justice and reconciliation, adopted in 2005", - "values": [ - "4 - General action" - ] - }, - { - "text": "Continue efforts to increase women's participation in political life, both in elected positions and in discretionary appointments", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Take steps to ratify the Convention against Torture", - "values": [ - "4 - General action" - ] - }, - { - "text": "Improve the conditions of detained persons in accordance with the Standard Minimum Rules for the treatment of prisoners", - "values": [ - "4 - General action" - ] - }, - { - "text": "Further collaborate with civil society in order to raise awareness and ensure protection and support for victims.", - "values": [ - "4 - General action" - ] - }, - { - "text": "Consider extending an open and standing invitation to the Special Procedures of the United Nations ", - "values": [ - "3 - Considering action" - ] - }, - { - "text": "Ensure that the commutation of the death penalty continues to be part of the Constitutional review process ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Strengthen the institutional framework in the human rights area, including through the establishment of a national human rights institution in accordance with the Paris Principles", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Consider releasing those people imprisoned or detained because of their conscientious objection to military service, and consider removing the corresponding charges from their criminal record", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Further improve its efforts in regard to the measures on combating gender-based violence ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Closely monitor the processing of refugees and asylum seekers in offshore centers to ensure that their human rights are respected", - "values": [ - "4 - General action" - ] - }, - { - "text": "Make additional efforts to achieve the Millennium Development Goals ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Facilitate the effective access to justice for women in cases of sexual harassment", - "values": [ - "4 - General action" - ] - }, - { - "text": "Consider further measures to improve and encourage women's participation in society, and ensure that such measures include benchmarks with timetables or increased quotas and that their implementation is closely monitored ", - "values": [ - "3 - Considering action" - ] - }, - { - "text": "Continue implementing the priorities set for the promotion and protection of women's rights in the country", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Adopt a more rigorous, systematic and transparent inquiry policy for the investigation of allegations of use of excessive force by its internal security forces, and that the members of its forces that are condemned for violating the rights of the citizens be systematically held accountable for their actions", - "values": [ - "4 - General action" - ] - }, - { - "text": "Improve the quality of primary health care, especially in rural areas ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Take steps to ensure that Law No. 14/2010 does not affect the rights of assembly and demonstration enshrined in international instruments", - "values": [ - "4 - General action" - ] - }, - { - "text": "Strengthen the independence of the justice system in order to prevent political interference in prosecutions and trials", - "values": [ - "4 - General action" - ] - }, - { - "text": "Improve the population's access to health with the support of the international community, in accordance with its national interests", - "values": [ - "4 - General action" - ] - }, - { - "text": "Enact an NGO law that allows international and national human rights NGOs to operate without interference in line with international standards", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Allow all detainees access to lawyers immediately after their detention and bring them before a judge no later than 48 hours, and provide information about the whereabouts of disappeared persons", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Continue and provide greater cooperation to the Working Group on Enforced or Involuntary Disappearances to accomplish its work", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Continue its efforts to improve the living conditions of migrants in detention and to bring its immigration detention system in line with the international human rights law and standards", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Put to an early referendum all recommendations of the Constitutional Review Commission approved by the Government that require changes to the Constitution, including the removal of the death penalty", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Intensify efforts to harmonize its national legislation with international standards, including by providing more training for judicial and law enforcement officials for the effective application of international standards", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Free those persons who were detained owing to their participation in peaceful demonstrations, and in particular the student leaders who were arrested in 1999 ", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "That Lesotho seeks to increase access to affordable contraceptive methods and antiretroviral treatment and to promote education on sexual and reproductive health", - "values": [ - "4 - General action" - ] - }, - { - "text": "The Ministry of Disaster Management and Human Rights will launch a national human rights awareness campaign to commemorate the sixtieth anniversary of the Universal Declaration of Human Rights in 2008.", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Step up efforts in strengthening its National Human Rights Commission in line with the Paris Principles", - "values": [ - "4 - General action" - ] - }, - { - "text": "Continue to strengthen the steps already made for the creation of a national human rights institution in conformity with the Paris Principles", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Continue the efforts to enable tangible progress in combating trafficking in persons, especially women and children ", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Consider extending an open invitation to all Special Procedures mandate holders with the aim of maximizing the efficiency of international cooperation in the national reconstruction and in the promotion and protection of all human rights of the Haitian people ", - "values": [ - "3 - Considering action" - ] - }, - { - "text": "Continue regular dialogue between the government and journalists in order to reach an agreement on pending issues in the media sector", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Complement the efforts in the field of the integration of foreigners with an active commitment to fighting discrimination", - "values": [ - "4 - General action" - ] - }, - { - "text": "Hold security forces and other government officials accountable for human rights violations, including those involving unlawful killings, sexual violence and torture, by credibly investigating and prosecuting offenders as appropriate", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Step up the implementation of the current national strategies and action plans, with more priorities to address the challenges of poverty reduction, food security, education, health care, gender equality and social welfare", - "values": [ - "4 - General action" - ] - }, - { - "text": "Consider adhering to the principles of the International Convention on the Protection of the Rights of All Migrant Workers and Members of Their Families ICRMW", - "values": [ - "3 - Considering action" - ] - }, - { - "text": "Proceed with the ratification of the Optional Protocol to the International Covenant on Economic, Social and Cultural Rights and the Optional Protocol to the Convention on the Rights of the Child on a communications procedure ", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Finalize the ratification process of OP-CRC-AC", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Reinstate the Council for the Prevention of Racial Discrimination, Xenophobia and Related Intolerance or create an alternative multi-stakeholder institution with the objective of preventing discrimination and intolerance, in all its aspects", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Conduct investigation of all alleged sexual abuse of children in a childfriendly judicial procedure, with due regard given to protecting the right to privacy of the child ", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Continue its solid efforts to strengthen the protection of the rights of the child, particularly with regard to child trafficking and child sex tourism", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Take the measures necessary in the context of the judicial reform and the reform of the national judicial council to guarantee the separation of powers and the independence of the judicial system", - "values": [ - "4 - General action" - ] - }, - { - "text": "Take appropriate legislative and regulatory measures to fight against discrimination and strengthen the protection and integration of persons with disabilities", - "values": [ - "4 - General action" - ] - }, - { - "text": "Consider ratifying the International Convention on the Protection of All Persons from Enforced Disappearance and enact domestic legislation to penalize enforced disappearance as defined in that Convention ", - "values": [ - "3 - Considering action" - ] - }, - { - "text": "Pursue its efforts in the area of human rights education and training, and share its experience in this area with other countries ", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Take further appropriate actions to eliminate child labour, trafficking and protect street children", - "values": [ - "4 - General action" - ] - }, - { - "text": "Finalize the establishment of a national human rights institution, that is independent and empowered to provide national leadership and monitoring of the domestic human rights situation", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Work out a binding set of rules with Islamic religious leaders for the establishment and running of daraas in order to secure the right to education of the Talibé", - "values": [ - "4 - General action" - ] - }, - { - "text": "Adopt a comprehensive mental health policy and plan of action based on a human rights approach", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Take the necessary measures to combat discrimination based on sexual orientation and gender identity and to repeal legislation criminalizing consensual sexual relations between persons of the same sex, in accordance with the constitutional provision on the elimination of discrimination", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Continue its efforts aimed at improving the human rights situation of the Roma population and resolve their precarious living conditions in camps, in close cooperation with international partners ", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Take into account the concerns of the Special Rapporteur on violence against women regarding the absence of an agency in charge of gathering information on violence against women, particularly regarding homicides in the context of family violence. ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Implement effectively the National Plan of Action on Combating Human Trafficking ", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Support and fully implement the United Nations Declaration on the Rights of Indigenous Peoples ", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Repeal or amend the Sedition Act and the Newspaper Act 1958 to ensure that they conform with international human rights standards, including by guaranteeing the right to freedom of expression ", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Consider further measures for the protection and integration of LGBT individuals, and for the elimination of all discriminatory treatment on the grounds of sexual orientation or gender identity", - "values": [ - "3 - Considering action" - ] - }, - { - "text": "Continue its activities in the field of the judicial and legislative reforms for speeding up the pace of litigation and judgement enforcement", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "The Government is committed to structured, organised and regular engagement with civil society to discuss follow-up to 2nd cycle UPR recommendations.", - "values": [ - "4 - General action" - ] - }, - { - "text": "Seek technical assistance and cooperation from the international community to fight the HIV/AIDS pandemic and to strengthen its human rights institution", - "values": [ - "1 - Minimal action" - ] - }, - { - "text": "Effectively guarantee the rights of migrants", - "values": [ - "4 - General action" - ] - }, - { - "text": "Continue efforts to ensure decent living conditions in all reception and detention centres for migrants and asylum seekers by providing adequate healthcare services, food, sanitary conditions and access to transportation", - "values": [ - "4 - General action" - ] - }, - { - "text": "Take the necessary measures to ensure birth registration on a universal basis, particularly for persons living in extreme poverty, belonging to religious minorities or in remote areas ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Envisage the ratification of treaties and other international instruments relating to human rights which Papua New Guinea has not done so yet, notably the Convention against Torture and Other Cruel, Inhuman or Degrading Treatment or Punishment", - "values": [ - "3 - Considering action" - ] - }, - { - "text": "Ratify the Convention against Torture and Other Cruel, Inhuman or Degrading Treatment or Punishment and the Optional Protocol thereto - ratify the First and Second Optional Protocols to the International Covenant on Civil and Political Rights and the International Convention for the Protection of All Persons from Enforced Disappearance ", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Consider ratifying other international human rights instruments to which it is not a party yet", - "values": [ - "3 - Considering action" - ] - }, - { - "text": "Solve remaining cases of human rights violations and create an independent committee to receive claims against the police that were referred to by the Special Rapporteur on Human Rights Defenders ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Continue with its education policy to ensure that children, and particularly girls, get a quality education that promotes equality and non-discrimination ", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Ensure respect for the principle of non- refoulement with respect to asylum seekers and refugees, avoid a premature move to close camps on the Western border while conditions for voluntary, safe and dignified return do not exist, and meet the protection needs of vulnerable peoples, such as the Rohingya, in accordance with international law ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Strengthen measures to combat violence against women, as well as to prohibit corporal punishment of children and to set out the minimum age to work", - "values": [ - "4 - General action" - ] - }, - { - "text": "Provide human rights training to law enforcement personnel and that measures are taken to ensure that the human rights of migrants are protected at all times and limit the uses of registration numbers to those strictly necessary for the provision of public services.", - "values": [ - "4 - General action" - ] - }, - { - "text": "Amend without delay the constitution with a view to the elimination of discrimination on the basis of ethnicity in public political life and access to public service jobs in conformity with the judgement of the European Court of Human Rights", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Continue efforts to combat racial discrimination, particularly against migrant workers and their families, religious minorities, particularly against Muslims, and linguistic minorities", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Immediately cease its illegal settlement activities", - "values": [ - "4 - General action" - ] - }, - { - "text": "Continue the development of policies to fight hate speech", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Further consider its position on accepting the right of individual petition to the United Nations beyond the Optional Protocol to the Convention on the Elimination of All Forms of Discrimination against Women and the Optional Protocol to the Convention on the Rights of Persons with Disabilities", - "values": [ - "3 - Considering action" - ] - }, - { - "text": "Take necessary measures to improve the human rights situation of inmates by improving conditions in prison establishments, including by ensuring appropriate infrastructure ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Strengthen measures to prevent, combat and sanction inequality, discrimination and racially motivated violence ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Strive to obtain additional assistance from the relevant international institutions in order to confront the problem of poverty and unemployment in the country ", - "values": [ - "1 - Minimal action" - ] - }, - { - "text": "Set up the independent body in order to investigate alleged abuses of power by law enforcement officials ", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Enact regulations to the 2013 law establishing a referral mechanism for victims of trafficking to enable them to apply for asylum, where appropriate", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Share its experiences, inter alia, regarding the African Peer Review Mechanism and the National Reconciliation Commission. ", - "values": [ - "1 - Minimal action" - ] - }, - { - "text": "Intensify efforts to address factors contributing to women being disproportionately affected by poverty, especially single mothers and women of old age, including by ensuring adequate social protection and safeguards, providing opportunities for additional income generation and improving child care facilities", - "values": [ - "4 - General action" - ] - }, - { - "text": "Continue to cooperate with the International Criminal Court, in particular by taking all necessary measures to ensure the safety and security of witnesses and victims", - "values": [ - "4 - General action" - ] - }, - { - "text": "Sign and ratify the Optional Protocol to the ICESCR", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Redouble its efforts aimed at an impartial and effective operation of the State bodies at the national and local levels, including at addressing corruption.", - "values": [ - "4 - General action" - ] - }, - { - "text": "Fully incorporate the Convention on the Elimination of All Forms of Discrimination against Women into its domestic legal system", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Abolish the death penalty by means of the ratification of the Second Optional Protocol to the International Covenant on Civil and Political Rights", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Establish a National Human Rights Institution accredited with the International Coordinating Committee of the National Human Rights Institutions ", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Take efforts in the area of promotion and protection of women's rights so as to ensure that women are fully integrated into the development dynamics of the country", - "values": [ - "4 - General action" - ] - }, - { - "text": "Advise potential donor agencies of the type of technical assistance that would help to meet its treaty body reporting obligations.", - "values": [ - "1 - Minimal action" - ] - }, - { - "text": "Strengthen the national efforts to eradicate poverty and its consequences and to limit the phenomenon of non-employment in collaboration with the relevant regional organizations ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Enforce national legislation in rural areas in order to prevent child, early and forced marriage", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Repeal the provisions criminalising homosexuality", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Safeguard the rights to peaceful assembly, freedom of opinion and expression and freedom of the press", - "values": [ - "4 - General action" - ] - }, - { - "text": "Continue to implement the National Action Plan on Asylum Reform and Migration Management to address legal and institutional shortcomings ", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Continue its work in implementing the Judicial Reform Action Plan.", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Further promote pursued policies and programmes with regard to the social integration of the Roma and Sinti communities, by promoting their further access to education, the labour market, housing and health care services ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Ratify the Second Optional Protocol to the International Covenant on Civil and Political Rights and amend its Criminal Code with a view to abolish the capital punishment entirely ", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Continue its efforts aimed at combating gender-based violence, including adopting a specific bill on gender-based violence ", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Officially and publicly condemn all acts of torture and ill-treatment and ensure transparent, effective and impartial investigations into any alleged cases as well as ratify the Optional Protocol to the Convention against Torture and Other Cruel, Inhuman or Degrading Treatment or Punishment", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Continue its efforts to develop the work of its national institution for human rights, as an effective human rights watchdog", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Continue to move forward in the execution of projects aimed at protecting women, specifically indigenous women", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "To promote, disseminate and socialize the rights of persons with visual disabilities, promoting the mass use of the Braille system to guarantee their right to information.", - "values": [ - "4 - General action" - ] - }, - { - "text": "Adopt active measures to enable better integration of the Kalinago population and to close the relative gap they confront", - "values": [ - "4 - General action" - ] - }, - { - "text": "Amend provisions of the Penal Code, the law on media, the law on Internet and all other legislation that criminalizes the exercise of fundamental rights in order to align Lao's legislation with international standards in this sphere", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Provide full access for journalists, human rights organizations and other members of civil society to all areas of the country", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Elaborate and draft a national plan of action to protect the rights of children ", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Complement legislative efforts to improve women's rights with public awareness campaigns on Female Genital Mutilation or cutting and protection against abuse and sexual violence", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Incorporate the provisions of CAT into domestic law", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Continue its existing fruitful cooperation with the system of United Nations human rights mechanisms ", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Pay attention to the impact of climate change on the country's human rights situation and fully address this impact with the support of the international community", - "values": [ - "4 - General action" - ] - }, - { - "text": "Accelerate the establishment and functioning of the National Children's Authority to prevent and combat violence, exploitation and other degrading practices", - "values": [ - "4 - General action" - ] - }, - { - "text": "With the assistance of the international community, undertake a multi-pronged approach to improve the situation of children with greater focus on ensuring universal primary education, reducing infant and child mortality and rehabilitating child combatants.", - "values": [ - "4 - General action" - ] - }, - { - "text": "Adhere to the OP-CAT ", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Focus on economic, social and cultural rights as a first step to lifting the country out of the cycle of poverty and underdevelopment according to the Agenda 2030 on Sustainable Development of the United Nations", - "values": [ - "4 - General action" - ] - }, - { - "text": "Improve the conditions of migrants' detention centres, especially with regard to the medical and psychological attention, as well as contact with the outside", - "values": [ - "4 - General action" - ] - }, - { - "text": "Conduct thorough, impartial, and timely investigations into all allegations of unlawful killings, abuse, torture, and corruption involving security forces and prison personnel", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Step up measures aimed at elimination of violence against women", - "values": [ - "4 - General action" - ] - }, - { - "text": "Consider amending a piece of legislation in Netherlands law to allow for the separation of juveniles from adults in correctional centres", - "values": [ - "3 - Considering action" - ] - }, - { - "text": "Strengthen cooperation with the international community and organizations in building capacity in crucial areas, including poverty eradication, justice administration, primary education and gender equality", - "values": [ - "1 - Minimal action" - ] - }, - { - "text": "Ensure that the structures and functions of the Human Rights Ombudsman Institution are in accordance with the Paris Principles", - "values": [ - "4 - General action" - ] - }, - { - "text": "Consider ratification of basic international instruments ", - "values": [ - "3 - Considering action" - ] - }, - { - "text": "Protect, respect and make a reality human rights for all people, regardless of their sexual orientation or their gender expression or identity", - "values": [ - "4 - General action" - ] - }, - { - "text": "Totally abolish corporal punishments, such as flogging and amputations", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Continue cooperating with the Human Rights Council and its mechanisms, and extend an open invitation to the special procedures mechanisms", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Adopt a legal framework to fight violence against women, which establishes sanctions for these acts, ensures access to justice for victims and establishes a system for their protection, compensation and rehabilitation", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Adopt measures to mitigate climate change risks ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Ratify the Council of Europe Framework Convention for the Protection of National Minorities", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Accede to other fundamental international instruments, particularly the International Convention on the Elimination of All Forms of Racial Discrimination and the Convention against Torture and Other Cruel, Inhuman or Degrading Treatment or Punishment ", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Revise penal legislation which criminalizes sexual orientation with a view to ensuring conformity with article 26 of the International Covenant on Civil and Political Rights ", - "values": [ - "3 - Considering action" - ] - }, - { - "text": "Continue considering concrete measures to ensure the protection of the human rights of girls and boys through the amendment of the Law on Education ", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Sign and ratify the Istanbul Convention of the Council of Europe on preventing and combating violence against women and domestic violence", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Ratify the CPED", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Strengthen the Judiciary control over detention conditions ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Consider the possibility of establishing new measures to strengthen the respect for the rights of migrants and fight against all forms of discrimination they suffer ", - "values": [ - "3 - Considering action" - ] - }, - { - "text": "Consider ratifying the Convention on the Protection of the Rights of All Migrant Workers and Members of their Families", - "values": [ - "3 - Considering action" - ] - }, - { - "text": "Strengthen further its measures, including human rights education and training for public officials and at school, to promote tolerance, respect diversity, equality and combat discrimination", - "values": [ - "4 - General action" - ] - }, - { - "text": "Consolidate the legal framework of human rights protection through ratifying the International Covenant on Economic, Social and Cultural Rights, the International Convention for the Protection of All Persons from Enforced Disappearance and the First Optional Protocol to the International Covenant on Civil and Political Rights", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Establish a robust legal framework for the functioning of a pluralistic system of political parties and ensure that free and fair elections are held regularly and in accordance with international standards ", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Strengthen the capacities for identifying victims of trafficking ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Continue its efforts against human trafficking", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "With regard to conscientious objection, adapt existing national legislation so that alternative services to military service effectively have a civil nature and that they are placed under the monitoring of civil authorities", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Disseminate the five lessons contained in the national report and their rich experience globally as much as possible.", - "values": [ - "4 - General action" - ] - }, - { - "text": "Ratify the Convention against Torture and Other Cruel, Inhuman or Degrading Treatment or Punishment, that it has already signed", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Strengthen command and control mechanisms over its military and other security forces and eliminate the presence of militia and other non-governmental armed groups", - "values": [ - "4 - General action" - ] - }, - { - "text": "Adhere to the Convention on the Non-Applicability of Statutory Limitations to War Crimes and Crimes against Humanity, without making any reservation and implement the treaty into national law", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Continue and strengthen the cooperation with the Office of the High Commissioner for Human Rights", - "values": [ - "4 - General action" - ] - }, - { - "text": "Strengthen national mechanisms and efforts in combating human trafficking", - "values": [ - "4 - General action" - ] - }, - { - "text": "Step up efforts to increase the visibility of all initiatives and actions aimed at the promotion of and respect for human rights, through democratic mechanisms and conciliatory processes", - "values": [ - "4 - General action" - ] - }, - { - "text": "Adopt a comprehensive law for combatting domestic violence", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Adopt proactive measures to promote equal gender representation in decision-making positions, and implement non-discriminatory policies to ensure equal pay for women ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Speed up the drafting of the strategy to protect human rights and civil rights ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Advance towards the derogation of the provisions that criminalize consenting same-sex relations between adults", - "values": [ - "4 - General action" - ] - }, - { - "text": "Take legal measures to deal with intolerance.", - "values": [ - "4 - General action" - ] - }, - { - "text": "Repeal all provisions that criminalize same-sex activities between consenting adults ", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Enact the relevant legislation to eradicate and ban xenophobia and racial discrimination in all spheres including education, employment and housing", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Ratify the Optional Protocol to the International Covenant on Economic, Social and Cultural Rights, and the Hague Convention on Protection of Children and Cooperation in respect of Intercountry Adoption ", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Step up efforts aimed at promptly establishing an independent national human rights institution in line with the Paris Principles", - "values": [ - "4 - General action" - ] - }, - { - "text": "Make concrete the initiatives for the establishment of the office of the undersecretary for human rights and the formulation of the national plan for human rights ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Strengthen the efforts to prevent crimes committed with discriminatory or xenophobic motives and to bring perpetrators of such crimes to justice", - "values": [ - "4 - General action" - ] - }, - { - "text": "Take all necessary measures to ensure that perpetrators of all forms of slavery are systematically brought before justice and that victims benefit from a protection and compensation system ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Adopt new measures to guarantee a greater presence of and better participation by women and minorities in public administration, particularly in elected positions ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Continue its ongoing efforts to arrive at a national consensus on a general act on anti-discrimination", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Bring the 2004 Law No 2 on persons with special needs into line with the Convention on the Rights of Persons with Disabilities", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Continue strengthening the family and family values, including by protecting and ensuring the welfare of the family members, particularly children", - "values": [ - "4 - General action" - ] - }, - { - "text": "Continue to improve integration and fight racial discrimination against less-favoured communities, including by taking further measures to improve the access of immigrants, foreigners and ethnic minorities to adequate housing, education, public services and employment ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Provide necessary resources for promotion of human rights, especially for the right to education and the right to health", - "values": [ - "4 - General action" - ] - }, - { - "text": "Become a party to and implement the Convention on the Rights of Persons with Disabilities as a matter of priority and further include persons with disabilities throughout this process ", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Abolish the system established to call upon citizens to denounce anonymously, on the Ministry's website, migrants suspected of being in an irregular situation.", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Share with other Member States its experiences and best practices in achieving almost all targets of the Millennium Development Goals and eradicating extreme poverty ", - "values": [ - "1 - Minimal action" - ] - }, - { - "text": "Continue active measures and initiatives to minimize the gender gap", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Step up legislative and programme reform including the development of criteria for the implementation of policy in order to guarantee the rights of lesbian, gay, bisexual, transgender and intersex populations", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Ratify the Protocol to the African Charter on Human and Peoples' Rights on the Rights of Women in Africa and adopt the necessary legislation for its implementation ", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Pay special attention to women from marginal groups who have been affected by armed conflict and displacement", - "values": [ - "4 - General action" - ] - }, - { - "text": "Ratify core international human rights instruments, in particular the International Covenant on Civil and Political Rights and the International Covenant on Economic, Social and Cultural Rights.", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Respond favourably to the request of special procedures mandate holders to enter the country and cooperate with special procedures and other human rights mechanisms\n\n", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Work towards eliminating all forms of violence against women ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Continue cooperating with the Human Rights Council and its mechanisms ", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Consider pursuing a policy aimed at capacity-building to develop the country's cultural sector", - "values": [ - "3 - Considering action" - ] - }, - { - "text": "Bring all constitutional provisions and relevant laws into line with the CPA and international obligations", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Abolish the death penalty, which is still in effect despite the de facto moratorium on capital punishment ", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "The Government is committed to end the exploitation of workers in the Maldives. This commitment was further demonstrated by the ratification of the Anti-Human Trafficking Act in 2013", - "values": [ - "4 - General action" - ] - }, - { - "text": "Further develop and expand human rights awareness-raising programmes in the country ", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Cooperate fully with United Nations and other international human rights monitors to help promote accountability", - "values": [ - "4 - General action" - ] - }, - { - "text": "Continue working to create a national preventive mechanism against torture ", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Strengthen measures to prevent violence against women, in particular by raising awareness of the fact that discrimination and violence against women are unacceptable", - "values": [ - "4 - General action" - ] - }, - { - "text": "Ensure that existing statutes prohibiting gender discrimination are properly implemented and enforced, and augment, through effective implementation and enforcement, efforts to decrease the existing wage gap between women and men ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Take the necessary measures to declare a de jure moratorium on the death penalty with a view to abolishing it and to consider ratifying the Second Optional Protocol to ICCPR", - "values": [ - "4 - General action" - ] - }, - { - "text": "Develop more plans to support women prisoners ", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Decriminalize same-sex sexual relations by repealing article 339 of the penal code, and include lesbian, gay, bisexual and transgender persons in its legal provisions against discrimination", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Implement a system of fines to be applied when public authorities do not respond adequately to requests for information", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Move towards speedy ratification of the Optional Protocol to the Convention on the Elimination of All Forms of Discrimination against Women, including an effective programme for their implementation", - "values": [ - "4 - General action" - ] - }, - { - "text": "Carry out actions to protect the rights of migrants and their families", - "values": [ - "4 - General action" - ] - }, - { - "text": "Investigate allegations of possible human rights violations by public security officials and reinforce the capacity to sanction those responsible and avoid impunity ", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Continue implementing additional measures to fight discrimination against foreign workers, addressing in particular work conditions and the respect for occupational and safety standards", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Abolish all legal inequalities between registered same-sex partnership and marriage", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Strengthen measures and policies to promote the active role and participation of women in the political, social and economic life of the country ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Ensure a consistent and rapid implementation of the National Strategy for the Inclusion of Roma, Sinti and Travellers Communities through concrete measures at the local level", - "values": [ - "4 - General action" - ] - }, - { - "text": "Establish the International Commission for Investigation of Murders of Journalists and make sure the Commission will have a mandate appropriate to investigate the alleged case of murder of journalists", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Further strengthen the measures to combat human trafficking ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Continue its efforts to overcome its domestic challenges and constraints with a view to improving the human rights situation in the country", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Cease application of torture, other cruel, inhuman or degrading treatment or punishment, and corporal punishment of prisoners in accordance with Article 5 of the Universal Declaration of Human Rights and other international human rights treaties to which it is a party, including CAT and the CRC ", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Sign the Second Optional Protocol to ICCPR ", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Adopt relevant measures for legislative and criminal justice improvements in relation to concerns expressed by the Committee against Torture in relation to allegations of torture in detention facilities and improper definition of torture in the Criminal Code.", - "values": [ - "4 - General action" - ] - }, - { - "text": "Accelerate its work in forming a special commission to supervise the Constitutional reform which was announced by the President in 2010, its membership should include various structure of the population", - "values": [ - "4 - General action" - ] - }, - { - "text": "Integrate the various treaties to which Guinea is party into its domestic law, and become a party to other international human rights instruments for the wellbeing of the Guinean people ", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Urgently adopt legislation to ban FGM", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Sign and ratify the International Covenant on Civil and Political Rights, the International Covenant on Economic, Social and Cultural Rights, and the International Convention for the Protection of All Persons from Enforced Disappearance", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Ratify international instruments signed by Madagascar, particularly the International Convention for the Protection of All Persons from Enforced Disappearance, and transpose its provisions to national legislation", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Abolish definitively the death penalty", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Amend domestic legislation so that the minimum age for marriage is set at 18 years ", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Continue to reinforce the role and capacity of the national human rights institution, which was re-accredited A status in March 2016 in full compliance with the principles relating to the status of national institutions for the promotion and protection of human rights (the Paris Principles)", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Strengthen the national framework to combat human trafficking and ensure adequate support and protection to victims of trafficking", - "values": [ - "4 - General action" - ] - }, - { - "text": "To share the Ecuadorian experience and provide interested countries with assistance relating to its programmes in the field of inclusion of persons with disabilities", - "values": [ - "1 - Minimal action" - ] - }, - { - "text": "Continue implementing the national end child marriage project and promote awareness of the negative consequences of child marriage and teenage pregnancy", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Take all appropriate and necessary measures for the better and speedy realization of social, economic and cultural rights and particularly the right to development ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Adopt measures to ensure universal access to sexual health and reproductive rights pursuant to the Beijing Declaration and Platform for Action", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Continue efforts to improve conditions in prisons and pretrial facilities", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Accede to the International Convention on the Protection of the Rights of All Migrants Workers and Members of Their Families (ICRMW)", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Continue to harmonize its domestic legislation with the international human rights treaties to which it is a party and with the recommendations issued by the Treaty Bodies ", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Take regular action to prevent hate speech and to take appropriate and prompt legal measures against those who incite discrimination or violence motivated by racial, ethnic or religious reasons", - "values": [ - "4 - General action" - ] - }, - { - "text": "Do its utmost to combat racially motivated crimes and to ensure that human rights education is provided to any perpetrators of such offences ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Make improvements to ensure the freedom of expression, including for the mass media", - "values": [ - "4 - General action" - ] - }, - { - "text": "Continue consulting with civil society in the follow-up to UPR ", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Strengthen the efforts to respect and protect women's rights and gender equality. This includes an effective implementation of an inter-sectorial policy and action plan on reproductive and sexual health and rights and prevention of violence against women", - "values": [ - "4 - General action" - ] - }, - { - "text": "Implement a federal human rights act to maximize all Australian's legal human rights protection in accordance with Australia's international obligations ", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Pass a law to criminalize all forms of human trafficking and ratify the Protocol to Prevent Suppress and Punish Trafficking in Persons, Especially Women and Children, supplementing the United Nations Convention against Transnational Organized Crime ", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Complete its constitutional, legislative and administrative reforms with the purpose of enhancing the independence of the judiciary, inter alia by way of improving the application of merit-based criteria in appointment and recruitment procedures ", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Abolish the state of emergency", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Establish an independent international commission of inquiry tasked with the investigation in relation to the events of May 2005 in Andijan and to prosecute and punish all those responsible for human rights violations.", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Extend an invitation to the Special Rapporteur on the rights of indigenous peoples to visit Indonesia, including Papua, in line with the openness of Indonesia to collaborate with special procedure mandate holders", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Continue making progress towards the ratification of the Convention on the Rights of Persons with Disabilities ", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Allow single mothers to enjoy the same benefits as married mothers", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Combat and eliminate the worst forms of child labour, and raise the minimum age for hazardous work to 18", - "values": [ - "4 - General action" - ] - }, - { - "text": "Continue its efforts to enact laws addressing domestic violence, especially against women ", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Strengthen sound inclusive policies for training those in charge of providing legal aid to the low-income population through the National School for Public Defence", - "values": [ - "4 - General action" - ] - }, - { - "text": "Ensure that the oversight institutions established following the recommendations of the Bahrain Independent Commission of Inquiry are fully impartial and independent in order for them to effectively carry out their work", - "values": [ - "4 - General action" - ] - }, - { - "text": "Take the necessary measures so that all the cantons adopt an approach based on promoting the inclusion of boys and girls with disabilities in schools", - "values": [ - "4 - General action" - ] - }, - { - "text": "Repeal or amend the 2002 Press Law eliminating all restrictions upon the freedom of the press not in line with relevant provisions of the ICCPR", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Conduct an awareness-raising campaign to ban violence against women ", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Consider ratifying or acceding to: 1951 Refugee Convention, bearing in mind resolution 9-12 of the Human Rights Council entitled Human rights goals", - "values": [ - "3 - Considering action" - ] - }, - { - "text": "Establish a permanent independent human rights monitoring body, including child rights monitoring body.", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Ratify the Optional Protocol to the ICESCR, as recommended previously ", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Raise the age of criminal responsibility of children that currently stands at 10 years of age", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Establish emergency measures aimed at integrating Roma children in regular schools and solve the problem of the drop-out rate of these children ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Extend standing invitations to the special procedures.", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Join hands with the international community to prevent and fight terrorism", - "values": [ - "4 - General action" - ] - }, - { - "text": "Become a party to the major international human rights instruments to which it has not yet acceded, such as the International Convention for the Protection of All Persons from Enforced Disappearance, as well as issue a standing invitation to special procedures mandate holders ", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Streamline the process for the establishment of the national mechanism for the prevention of torture, ensuring broad and inclusive participation in the same", - "values": [ - "4 - General action" - ] - }, - { - "text": "Continue efforts to promote inclusive education by strengthening access to education for persons with disabilities", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Urgently adopt the draft Prohibition and Prevention of Torture Bill ", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Implement policies oriented to the development of remote communities and ensure the full enjoyment of economic, social and cultural rights of indigenous peoples interested in remaining in their land of origin", - "values": [ - "4 - General action" - ] - }, - { - "text": "Step up and accelerate the process of reform of the judicial and penitentiary systems to ensure access to justice regardless of economic status, gender, social origin or political position", - "values": [ - "4 - General action" - ] - }, - { - "text": "Communicate to the United Nations Secretary-General the withdrawal of its reservations to CEDAW (article 9, paragraph 2, article 16, paragraph 1 (h), and article 16, paragraph 2, as well as its declaration on article 15, paragraph 4).", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Fully ensure freedom of religion for all, without discrimination", - "values": [ - "4 - General action" - ] - }, - { - "text": "Adopt the necessary measures to accelerate the functioning of a national human rights institution that is in accordance with the international standards established in the Paris Principles", - "values": [ - "4 - General action" - ] - }, - { - "text": "Finalize the procedures of submitting the Bill on Human Trafficking to Parliament for discussion and the adoption at the earliest possible time ", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Review recent amendments to the Prevention of Crime Act, as well as implementation of the Security Offences Act, for consistency with international human rights", - "values": [ - "3 - Considering action" - ] - }, - { - "text": "Implement measures for the early detection and prevention of domestic violence against women and children, including sexual abuse or harassment.", - "values": [ - "4 - General action" - ] - }, - { - "text": "Continue and improve its policies with a view to the progressive elimination of economic, social, cultural barriers, in particular discrimination factors against women in the family and in society ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Ratify the First Optional Protocol to the International Covenant on Civil and Political Rights, the Optional Protocol to the Convention on the Elimination of All Forms of Discrimination against Women, the Optional Protocol to the Convention against Torture and the Optional Protocol to the Convention on the Rights of Persons with Disabilities", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Consider allocating adequate amounts of its available resources for social services and assistance, and continue stepping up efforts to combat poverty, especially in rural areas", - "values": [ - "3 - Considering action" - ] - }, - { - "text": "Put in place additional and fitting measures to ensure respect for freedom of expression and of the media ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Finalize the ratification process for the five instruments it has signed", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Carry out the legal reforms necessary to ensure an independent judiciary ", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Continue to increase education input to ensure the right to education for all the people", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Continue efforts to ensure gender equality and participation of women in public institutions, including local institutions, as well as in the private sector", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Consider policies in relation to gender mainstreaming, adequacy of housing and access to buildings for persons with disabilities in the post-recovery efforts of the Canterbury earthquakes ", - "values": [ - "3 - Considering action" - ] - }, - { - "text": "Refrain from using such laws as those against dangerousness, enemy propaganda and contempt for authority to restrict the rights of freedom of expression and association", - "values": [ - "4 - General action" - ] - }, - { - "text": "Extend an open and standing invitation to all Special Procedures ", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Strengthen respect for and protection of the right of journalists and human rights defenders to exercise their activities without harassment", - "values": [ - "4 - General action" - ] - }, - { - "text": "Consider the possibility of acceding to some of the international conventions to which the Sultanate of Oman is not yet a party, with due regard to its religious and cultural specificities and the needs of Omani society", - "values": [ - "3 - Considering action" - ] - }, - { - "text": "Consider repealing criminal laws in favour of appropriate civil laws regarding freedom of expression, in accordance with relevant international human rights standards ", - "values": [ - "3 - Considering action" - ] - }, - { - "text": "Strengthen efforts to address domestic and sexual violence ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Modify domestic law with a view to abolishing the mandatory death penalty and, during this process, establish a general moratorium on already existing death sentences", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "In relation to high number of threats and attacks on human rights defenders, adopt further measures to ensure effective protection of personal safety of these groups, eliminate impunity of perpetrators of crimes against them, adopt concrete steps against stigmatization of human rights defenders and promote awareness-raising programmes for the public and officials about the importance and legitimacy of human rights advocacy.", - "values": [ - "4 - General action" - ] - }, - { - "text": "Consider the feasibility of implementing social protection programmes that would assist in addressing the problem of child labour", - "values": [ - "3 - Considering action" - ] - }, - { - "text": "Ratify the international human rights instruments, particularly the International Covenant on Civil and Political Rights ", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Increase its efforts on strengthening protection of children's rights in such areas as child labor, domestic violence, trafficking and sexual exploitation", - "values": [ - "4 - General action" - ] - }, - { - "text": "Continue efforts to combat human trafficking and ensure that special attention is given to vulnerable groups when applying the law adopted in this regard", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Continue its engagement with the international community to combat poverty, including by devising special social schemes for families living in extreme poverty ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Intensify efforts to prevent, combat and prosecute hate speech violating article 20 of ICCPR", - "values": [ - "4 - General action" - ] - }, - { - "text": "Establish a national mechanism to monitor and assess the negative effects of unilateral coercive measures on the enjoyment of human rights of the Syrian people", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Approve, as soon as possible, the draft law against assault and gender-based political violence", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Combat discrimination against single mothers and their children", - "values": [ - "4 - General action" - ] - }, - { - "text": "Refrain from refouling or expelling persons to another state when there are grounds to believe they will be subject to torture", - "values": [ - "4 - General action" - ] - }, - { - "text": "Continue to combat human trafficking, in particular of women, boys and girls and continue strengthening its programs to prevent trafficking, in accordance with the National Integrated Strategy to Combat Human Trafficking", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Enable the visit by the Special Rapporteur on the promotion and protection of human rights while countering terrorism as soon as possible.", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Create permanent and sustainable programmes for education and training in human rights for public officials, particularly members of the armed forces, the police and the judiciary, emphasizing protection for the most vulnerable groups", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Take additional measures to fight against dropping out of school, particularly among boys ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Strengthen further national information campaigns on rights and responsibilities", - "values": [ - "4 - General action" - ] - }, - { - "text": "Consider the promotion and protection of the rights of peasants and other people working in rural areas", - "values": [ - "3 - Considering action" - ] - }, - { - "text": "Continue making efforts to increase the political participation of women, the percentage of women and young people in positions at all levels of society and the participation of women in the labour market under equal conditions ", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Carry on its efforts in environmental and health policies, and continue to enforce its legislative measures on food security ", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Review in depth its migration policy", - "values": [ - "3 - Considering action" - ] - }, - { - "text": "Consider including in future censuses a question on national ethnicity, so as to determine the different ethnic groups living in Slovenia", - "values": [ - "3 - Considering action" - ] - }, - { - "text": "Take the necessary measures to combat land and water pollution caused by dangerous industrial waste", - "values": [ - "4 - General action" - ] - }, - { - "text": "Continue with the efforts underway to guarantee school enrolment for girls ", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Intensify efforts in providing capacity building and training programmes on human rights for its law enforcement officials as well as judicial and legal officials in the rural areas ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Continue to take necessary steps towards the ratification of CRPD", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Continue along the path of its humanistic ideal of a rainbow nation, rich in cultural, social and religious diversity and respecting the rights of minorities", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Advance in the implementation of the national action plan for the prevention, assistance and eradication of violence against women with the objective to continue strengthening actions aimed at combating violence against women and reducing the number of deaths of women caused by such violence", - "values": [ - "4 - General action" - ] - }, - { - "text": "will consider ratification of the Optional Protocol to the Covenant on, Economic, Social and Cultural Rights, the Optional Protocol to the Convention against Torture and other Cruel, Inhuman or Degrading Treatment or Punishment and the International Convention for the Protection of All Persons from Enforced Disappearance, after having completed a study of their legal implications", - "values": [ - "3 - Considering action" - ] - }, - { - "text": "Ensure the adoption and implementation of an anti-discrimination law, cohering to international human rights standards", - "values": [ - "4 - General action" - ] - }, - { - "text": "Respond as soon as possible to the request for visits by Special Rapporteurs, such as the Special Rapporteur on violence against women", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Continue its efforts to fight climate challenges with the support of the international community ", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Rehabilitation of the National Human Rights Commission by 2010 at the latest", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Support the National Human Rights Commission, in order to bring it in line with the Paris Principles ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Extend an invitation to the Working Group on enforced or involuntary disappearances, Independent Expert on minority issues, Special Rapporteur on the right to food, and the Special Rapporteur on the rights of indigenous peoples in order that they visit Indonesia, particularly Papua ", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Continue to reform the justice system to enhance the independence of the judiciary and improve witness protection ", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Formulate a national plan of action for the implementation of accepted recommendations", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Speed efforts to ratify the International Covenant on Civil and Political Rights and the International Covenant on Economic, Social and Cultural Rights ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Fully cooperate with the International Criminal Court and fully align its national legislation with the obligations and definitions of crimes and principles contained in the Rome Statute and ratify the Kampala amendments to the Rome Statute", - "values": [ - "4 - General action" - ] - }, - { - "text": "Continue its efforts to build up capacities and knowledge of human rights in its public sector", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Ensure the full alignment of the Human Rights Commission of Sri Lanka in accordance with the Paris Principles", - "values": [ - "4 - General action" - ] - }, - { - "text": "Accept, ratify to or accede, as appropriate, the International Convention for the Protection of All Persons from Enforced Disappearance", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Overcome the continuous lack of legal personality for non-Muslim organized religious communities and to ensure the necessary respect for the beliefs of religious minorities, especially following the introduction of compulsory religious education in Turkish schools", - "values": [ - "4 - General action" - ] - }, - { - "text": "Achieve the maximum implementation of the Human Rights Plan for 2008- 2012 ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Continue to apply programmes and measures to guarantee the enjoyment of the right to education and the right to health ", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Continue implementing policies and programmes to assist poor people, improve their standard of living and ensure their access to social services ", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Amend the Criminal Code to include equal protection of girls and boys from all forms of sexual abuse and exploitation ", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Review its educational system so that grades obtained in Islamic religion are recorded on school certificates", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Improve the legal basis that would ensure respect for the privacy of individuals", - "values": [ - "4 - General action" - ] - }, - { - "text": "Focus on the five priority areas identified by the Government ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Take appropriate measures to combat sexual violence against children and child prostitution effectively, as a matter of priority.", - "values": [ - "4 - General action" - ] - }, - { - "text": "Develop a communications strategy to raise the awareness of society of the difficulties faced by groups of LGBTI persons and foster an environment of tolerance", - "values": [ - "4 - General action" - ] - }, - { - "text": "Establish at the earliest a national human rights institution compliant with the Paris Principles ", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Do its utmost to eliminate forced child labour and intensify its efforts to effectively implement the national legislation, in particular the labour code of 1996, and international conventions ratified by the Government on this subject.", - "values": [ - "4 - General action" - ] - }, - { - "text": "Continue its efforts in closing the gap between indigenous and non-indigenous Australians in health, education, employment opportunities and access to justice", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Adopt concrete measures against gender discrimination, which hinders equal access for women to justice", - "values": [ - "4 - General action" - ] - }, - { - "text": "Continue its cooperation with the International Criminal Court, in accordance with its responsibilities as a State party to the Rome Statute, namely regarding access for Court officials to investigate, the implementation of witness protection programmes and the implementation of warrants that might be issued by the Court ", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Strengthen the moratorium on the death penalty against young people, established in October 2008 limit the crimes punishable by the death penalty to commute death sentences to imprisonment and withdraw its reservations to CRC and specifically prohibit the application of the death penalty to young people in all circumstances", - "values": [ - "4 - General action" - ] - }, - { - "text": "Reinforce the measures taken against trafficking children, in particular cross-border trafficking, and child labour.", - "values": [ - "4 - General action" - ] - }, - { - "text": "Take further measures to protect press freedom, including the protection of journalists from threats by criminal groups", - "values": [ - "4 - General action" - ] - }, - { - "text": "Ensure that rights to health, education and jobs for the indigenous community and afro-descendant community are respected and guaranteed", - "values": [ - "4 - General action" - ] - }, - { - "text": "Develop measures in order to ensure that affected Sami communities can take part and participate actively in consultations held between federal government and municipalities on issues related to land rights, water and resources ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Enact legislation establishing a clear definition of discrimination against women", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Ensure equal access to social and economic rights for all citizens ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Amend the new Aliens law on confiscating valuable belongings to cover refugees' expenses to ensure compatibility with human rights obligations", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Repeal all norms/standards that discriminate against women, remove all reservations to the Convention on the Elimination of all Forms of Discrimination against Women and promote gender equality by introducing public awareness-raising programmes", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Adopt the draft gender equality act", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Review its criminal law framework with a view to incorporate the crime of torture in accordance with its international obligations ", - "values": [ - "3 - Considering action" - ] - }, - { - "text": "Ensure that all crimes committed with a discriminatory motive are fully and effectively investigated and prosecuted", - "values": [ - "4 - General action" - ] - }, - { - "text": "Keep studying the legal norms on the forms of employment of persons with disabilities and update them when necessary ", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Appeal to the international community to take individual and collective initiatives to exempt\nthe debts of Sudan", - "values": [ - "1 - Minimal action" - ] - }, - { - "text": "Implement effective policies to tackle cases of physical, psychological and sexual abuse against children", - "values": [ - "4 - General action" - ] - }, - { - "text": "Adopt without delay the draft law establishing quotas for women in elected and administrative positions, in line with the recommendation of the Committee on the Elimination of Discrimination against Women", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Strengthen national bodies responsible for ensuring the protection of persons with disabilities against all forms of violations and to promote their full integration into society", - "values": [ - "4 - General action" - ] - }, - { - "text": "Specifically prohibit the practice of female genital mutilation", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Incorporate into the Criminal Code an outright ban on the activities of organizations which promote racial discrimination", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Continue the efforts to strengthen the institutional framework of human rights promotion and protection, including by fully operationalizing the interdepartmental working group with mandate to monitor the consideration and the settlement of complaints by citizens and considering the establishment of an independent National Human Rights Institution, in full conformity with the Paris Principles ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Continue its efforts to fight against discrimination and violence against women, in particular with regard to FGM and forced and early marriages", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Continue to step up measures aimed at eradicating discrimination and social prejudices against ethnic minorities and persons with disabilities ", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Study the possibility of formulating national policy on short-, medium- and long-term employment", - "values": [ - "3 - Considering action" - ] - }, - { - "text": "Review and amend laws such as the Sedition Act, the Printing Press and Publications Act, and the Official Secrets Act, to enable its citizens to exercise fully the right to freedom of opinion and expression, including freedom of the press and freedom of information", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Ensure the finalization and implementation of the national plan of action to eliminate gender violence", - "values": [ - "4 - General action" - ] - }, - { - "text": "Pass laws that aim at ensuring equal treatment of women, in issues related to child custody, inheritance and divorce", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Accede to the Rome Statute of the International Criminal Court and fully align its national legislation with the Rome Statute", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Consider extending an open and standing invitation to the Special Procedures ", - "values": [ - "3 - Considering action" - ] - }, - { - "text": "Take measures to ensure the protection of journalists and human rights defenders", - "values": [ - "4 - General action" - ] - }, - { - "text": "Establish a national preventive mechanism against torture", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Ensure compulsory and free of all costs primary education for all children ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Reinforce and improve the education system, reducing the disparity between urban and rural areas, with special attention to children with disabilities", - "values": [ - "4 - General action" - ] - }, - { - "text": "Actively pursue the work on compliance of laws and regulations on human rights with constitutional provisions and take necessary measures to fully guarantee the rights to freedom of expression, peaceful demonstration and assembly", - "values": [ - "4 - General action" - ] - }, - { - "text": "Consider adopting measures to prohibit any form of racial profiling by police and law enforcement officials", - "values": [ - "3 - Considering action" - ] - }, - { - "text": "Allocate a greater space for women's participation in the political sphere ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Provide an update at the mid-term review on which specific measures it has put in place to combat trafficking of children and child prostitution ", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Set up State and District Commissioners for the Protection of Child Rights in all States and Districts ", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Take legal and practical measures to ensure the safety of human rights defenders", - "values": [ - "4 - General action" - ] - }, - { - "text": "Ratify the International Convention for the Protection of All Persons from Enforced Disappearance, the Optional Protocol to the Convention on the Rights of the Child on the sale of children, child prostitution and child pornography as well as sign and ratify the Convention on the Rights of Persons with Disabilities", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Strengthen efforts to promote freedom of religion or belief and to protect the rights of persons belonging to religious minorities, including by adopting measures both to address episodes of intolerance and hate speech against religious minorities and to solve outstanding issues related to the ownership and maintenance of places of worship and properties belonging to religious minority groups", - "values": [ - "4 - General action" - ] - }, - { - "text": "Consider acceding to the International Convention for the Protection of All Persons from Enforced Disappearance, recognizing the competence of its Committee", - "values": [ - "3 - Considering action" - ] - }, - { - "text": "Facilitate the access of children belonging to the most vulnerable groups to health services and education", - "values": [ - "4 - General action" - ] - }, - { - "text": "Amend the Penal Code in the Faroe Islands to ensure that the definition of rape is brought in line with international standards and criminalized in all circumstances, including within marriage", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Prioritise the education of all Vanuatu citizens ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Harmonize its national legislation with CEDAW, in particular regarding the explicit prohibition of discrimination against women and carry out an inventory to ensure that the national legislative framework does not allow for direct or indirect discrimination ", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Place all places of detention under effective judicial supervision and apply international standards for the treatment of detainees", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Enact and implement new legislation as well as practical measures to end discriminatory practices against Roma in the education system, in particular provisions of the School Act which lead to Roma children being pushed out of the regular school system and into special educational institutions, thereby perpetuating their segregation.", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Develop a National Human Rights Strategy and Action Plan, while also intensifying its public awareness campaign to the general public and other interested stakeholders", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Review the system of sponsorship for domestic workers in order to protect them against abuse from employers", - "values": [ - "3 - Considering action" - ] - }, - { - "text": "Ratify the Optional Protocol to the CAT ", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Ensure the protection and advancement of women's rights, especially in rural areas, and, in particular, promoting wider participation of women in politics and decision-making on national and local levels and strengthening combating violence against women and children ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Enact effective legislation aligned with international standards to combat the use of illegal drugs", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Abolish article 92-6 of the Military Criminal Act, which views consensual same-sex intimacy in the armed forces as a criminal offence, in order to comply with international human rights standards", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Invest in the human and financial resources of the secretariat of the Working Group and the national coordinator dealing with trafficking in human beings so that they can effectively carry out the full range of tasks within their mandate", - "values": [ - "4 - General action" - ] - }, - { - "text": "Intensify efforts to combat ill-treatment by police authorities ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Take concrete measures ensuring the freedom of expression, independence of the media, protection of journalists, and adopt legislative and other measures to prevent censorship", - "values": [ - "4 - General action" - ] - }, - { - "text": "Continue to engage the international community for assistance in addressing the menace of domestic violence, harmful traditional practices and trafficking in persons", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Continue developing relevant international cooperation agreements to ensure universal access to medicines", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Continue efforts to provide better protection for the children, including reviewing its juvenile justice system ", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Continue its efforts in implementing the outstanding recommendations from the previous universal periodic review cycle", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Strengthen its cooperation with the international community and accelerate the establishment of democracy and the rule of law", - "values": [ - "4 - General action" - ] - }, - { - "text": "Enact the Child Protection Code", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Continue its efforts to combat sexual exploitation of children and continue to take effective measures to protect children from violence, racism and pornography.", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Take measures to guarantee full access to education and to health to all vulnerable groups, including illegal migrants ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Develop a comprehensive policy to address the issue of gender discrimination in employment.", - "values": [ - "4 - General action" - ] - }, - { - "text": "Safeguard full and unhampered enjoyment of freedom of expression ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Adopt measures to prevent incidents of violence on the grounds of sexual orientation", - "values": [ - "4 - General action" - ] - }, - { - "text": "Continue to collect specific data and maintain efforts to standardize reporting and data collection concerning victims of domestic violence, including through the creation of a website and a database", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Consider acceding to ICERD and the International Convention on the Protection of the Rights of All Migrant Workers and Members of Their Families (ICRMW)", - "values": [ - "3 - Considering action" - ] - }, - { - "text": "Adopt measures that will enable migrants and their children, including irregular migrants, to access social services other than public health care and school education ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Reduce citizen insecurity in a sustainable, long-term perspective, addressing the root causes of violence and combating impunity while respecting human rights", - "values": [ - "4 - General action" - ] - }, - { - "text": "Conclude quickly the alignment of its domestic legislation with the provisions of the Rome Statute", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Decriminalize homosexuality, and take action to combat violence based on sexual orientation and gender identity", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Consider the possibility of raising the age of criminal responsibility for minors ", - "values": [ - "3 - Considering action" - ] - }, - { - "text": "Poland pledges to further improve the situation of disabled persons. Due to its limited effectiveness, a review of the current system of vocational and social rehabilitation and employment of disabled persons, particularly with regard to vocational ctivation, will be carried out", - "values": [ - "4 - General action" - ] - }, - { - "text": "Continue with measures to improve the conditions of access to education and to health services for all, without discrimination ", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Ensure full compliance with international standards on the death penalty, but ultimately establish a moratorium with a view to ratifying the Second Optional Protocol to ICCPR ", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Take measures to ensure compulsory and free primary and quality education for all", - "values": [ - "4 - General action" - ] - }, - { - "text": "Combat discrimination on the basis of sexual orientation, and further promote dialogue in society so that no discrimination is justified on the grounds of culture, religion or tradition ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Intensify efforts aimed at combating and preventing torture and other forms of ill-treatment", - "values": [ - "4 - General action" - ] - }, - { - "text": "Consider allowing the registration and operation of political parties, introducing greater political freedoms through free, fair, transparent democratic elections ", - "values": [ - "3 - Considering action" - ] - }, - { - "text": "Continue close cooperation with various stakeholders and non-governmental organizations in the follow-up of its review. ", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Continue its efforts to promote gender equality by ensuring that women and men in Bangladesh enjoy equal rights in all life of the country ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Strengthen efforts to promote and protect the rights of women, young persons and disabled persons, which are very vulnerable groups in the country", - "values": [ - "4 - General action" - ] - }, - { - "text": "Urgently address child, early and forced marriage by putting in place legislation that clarifies the legal age for marriage, honouring commitments made in the country's last UPR to prevent and eliminate the practice", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Take further concrete steps to ensure that existing human rights legislation is implemented and enforced ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Resort to forced expulsions only within the strict respect of regional and international norms ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Adopt the legislation explicitly prohibiting the corporal punishment of children in all settings, including home ", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Extend an open and standing invitation to the Special Procedures of the United Nations ", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Take further measures to protect the collective property rights of all indigenous citizens ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Continue to develop sustainable housing schemes with a view to increasing the provision of housing for low and middle income households", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Engage substantively with international experts on the development of its media law and work to increase the independence of media institutions.", - "values": [ - "4 - General action" - ] - }, - { - "text": "Prioritize and sufficiently resource the National Human Rights Council and the Office of the Ombudsman ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Fully implement the Ghanaian Mental Health Authority\u2019s announcement that it will abolish inhumane treatment of mentally ill people in prayer camps", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Adopt the measures necessary to combat all forms of discrimination against migrants ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Continue its efforts in the area of human rights education and training, particularly by implementing relevant provisions of the United Nations Declaration in human rights education and training", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Enforce the Trafficking in Persons Act and intensify international and bilateral cooperation in order to further curb trafficking ", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Ratify the International Convention on the Rights of Migrant Workers and Members of their Family, based on the facts that the national report indicates in paragraph 98 that it is currently under examination", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Amend the nationality law to allow women equal rights to men in passing their nationality to their children", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Take the necessary measures to ensure the protection of all people from enforced disappearance and following the request of the High Commissioner for Human Rights, establish a special inquiry team, enjoying enough independence, to investigate the allegations of extrajudicial executions ", - "values": [ - "4 - General action" - ] - }, - { - "text": "The Government provides free access to health and medical services. To alleviate capacity constraints and improve services available, the government facilitates partnerships with both Taiwan and Australia for specialized medical teams to visit and provide specialized medical services. There is a team of Cuban doctors permanently based in Tarawa. The Government also continues to approve increased scholarship allocations for medical and nursing training overseas, mainly in Australia and Cuba.", - "values": [ - "1 - Minimal action" - ] - }, - { - "text": "Take further measures to ensure full and consistent protection of human rights in domestic law and policies, taking into account recommendations made by several United Nations human rights bodies in this regard.", - "values": [ - "4 - General action" - ] - }, - { - "text": "Review its legislation in order to prohibit the trade and transit of arms to places where it is suspected that children are used as soldiers ", - "values": [ - "3 - Considering action" - ] - }, - { - "text": "Continue to strengthen the construction of drinking water and basic sanitation facilities in order to provide better basic services for its people", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Consider implementing the recommendations of the Special Rapporteur on violence against women and CEDAW.", - "values": [ - "3 - Considering action" - ] - }, - { - "text": "Continue taking comprehensive measures to better integrate persons with disabilities into society", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Issue a standing invitation to all special procedure mandate holders", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Continue to give priority to tolerance and reconciliation.", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Continue and strengthen the ongoing efforts to combat all sorts of violence against women in society. ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Take steps to ensure a reduction in the attacks on anyone working to promote and protect human rights and to bring the perpetrators of such attacks to justice", - "values": [ - "4 - General action" - ] - }, - { - "text": "Ensure effective monitoring of detention and custody procedures by the law enforcement forces", - "values": [ - "4 - General action" - ] - }, - { - "text": "Adopt measures to address the high rate of early marriages among girls in the northern states of Nigeria, including a review of legislation permitting marriage of those under 18 years of age and undertaking awareness-raising programmes on the negative implications of early marriage", - "values": [ - "4 - General action" - ] - }, - { - "text": "Continue strengthening measures aimed at addressing impunity for sexual and gender-based violence, including expediting the adoption of the national gender policy and the national strategy to combat gender-based violence", - "values": [ - "4 - General action" - ] - }, - { - "text": "Extend existing legislation to protect the rights of the lesbian, gay, bisexual, transgender and intersex community, including the recognition of same sex couples and anti-discrimination employment laws", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Step up efforts towards establishment of a national human rights institution in line with the Paris Principles", - "values": [ - "4 - General action" - ] - }, - { - "text": "Plan at the regional and national levels for an increase in population though its inclusion into economic, social and political strategies, in consultation with all stakeholders", - "values": [ - "4 - General action" - ] - }, - { - "text": "Continue to engage all international bodies which are involved in the implementation of humanitarian assistance, such as ICRC, the International Organization for Migration and the Office of the United Nations High Commissioner for Refugees", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Introduce a moratorium on the death penalty as a first step to abolition, produce a national plan to accede to the Second Optional Protocol to the International Covenant on Civil and Political Rights, aiming at the abolition of the death penalty, and immediately change the process of carrying out executions by notifying the family of the date of execution and burial site", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "As a follow-up to recommendations Micronesia accepted in the course of the first universal periodic review cycle, put forward a concrete plan with regard to the withdrawal of all reservations made to the Convention on the Elimination of All Forms of Discrimination against Women", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Continue its efforts to establish an independent national human rights institution", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Adopt legislative measures to guarantee that unaccompanied undocumented children are cared for", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Adopt legislation, including a new Criminal Code with the aim of abolishing the death penalty in law", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Take measures to prohibit targeting, profiling and harassment of Muslims ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Further strengthen measures to prevent and combat discrimination and to investigate allegations of hate crimes", - "values": [ - "4 - General action" - ] - }, - { - "text": "Provide systematic training to judges, prosecutors and lawyers on women's rights and violence against women, including on the implementation of the Maria da Penha Law on domestic and family violence against women ", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Reconsider their reservation from article 2 in the Convention on the Elimination of All Forms of Discrimination against Women, and ensure that all discrimination under customary law comes to an end ", - "values": [ - "3 - Considering action" - ] - }, - { - "text": "Establish a legal system to protect the rights of migrant workers, consistent with international standards in this area and in particular as regards to working time and access to services and legal means to ensure the respect for contracts", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Accede to OP-CEDAW", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Simplify, harmonize and reinforce the current legal norms on equality in favour of those most vulnerable", - "values": [ - "4 - General action" - ] - }, - { - "text": "Limit the use of detention of migrants and asylum seekers, especially when families with young children are concerned ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Immediately lift all Public Emergency Regulations and to abolish any policy or decree that restricts the freedom of the media or the rights of freedom of association and movement", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Revise its national legislation and bring it in compliance with its international human rights obligations", - "values": [ - "3 - Considering action" - ] - }, - { - "text": "Strengthen the status of the CNDHC ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Extend a standing invitation to all special procedures as soon as possible", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Ratify the International Covenant on Economic, Social and Cultural Rights within the time frame of the third universal periodic review", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Take measures to end internal displacements, and to undertake social housing and land reform initiatives that benefit low-income, vulnerable and marginalized individuals living in informal settlements", - "values": [ - "4 - General action" - ] - }, - { - "text": "Continue its efforts to promote inter-religious dialogues and reconcile different schools of Islamic thoughts and other religions", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Adopt and implement appropriate measures to ensure that persons with disabilities, particularly women and girls, have access to an inclusive education system, and that they can participate effectively and fully in political and public life on an equal basis with others ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Regarding the Khmer Rouge tribunal, make further efforts for smooth court proceedings and the early completion of its work, in view of its unexpected delay ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Encourage the ratification of ICRMW", - "values": [ - "4 - General action" - ] - }, - { - "text": "Provide the Office of the Human Rights Defender with the human and financial resources necessary to complete its tasks as a national preventive mechanism, and strengthen the guarantees against the ill treatment of imprisoned persons so that all those in the police force will receive a strong message emphasizing that ill treatment is illegal ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Formulate effective strategies and programmes in order to provide employment and income-generating opportunities for the population, in particular, the rural population, Dalits and ethnic minorities ", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Initiate an open public debate on sexual and reproductive health and rights and decriminalize life-saving abortion and abortion in cases of pregnancies resulting from rape or incest", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Establish as soon as possible its national plan of action on human rights, in order to coordinate, promote and advance human rights in sustainable manner", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Ratify the International Convention for the Protection of All Persons from Enforced Disappearance and integrate it into national norms", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Fully incorporate the Convention on the Elimination of All Forms of Discrimination against Women into Sri Lanka\u2019s domestic system", - "values": [ - "4 - General action" - ] - }, - { - "text": "Consider ratifying the international instruments to which the country is not yet party, in particular the Convention against Torture and Other Cruel, Inhuman or Degrading Treatment or Punishment, the International Convention on the Elimination of All Forms of Racial Discrimination, International Convention on the Protection of the Rights of All Migrant Workers and Members of Their Families, and the Second Optional Protocol to the International Covenant on Civil and Political Rights, aiming at the abolition of the death penalty ", - "values": [ - "3 - Considering action" - ] - }, - { - "text": "Strengthen the functioning of its judiciary and its human rights institutional framework and promote concrete programmes to raise awareness of human rights, in particular among judges and lawyers, but also among the general public.", - "values": [ - "4 - General action" - ] - }, - { - "text": "Remove all Internet monitoring and control facilities restricting the use of the Internet ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Prioritize the implementation of its NHRAP and its 12th Five-Year Plan for Economic and Social Development in the ethnic regions of minority groups as well as for other under-privileged communities", - "values": [ - "4 - General action" - ] - }, - { - "text": "Montenegro expressed its willingness to protect media freedoms and commitment to investigating fully all the cases of attacks on journalists.", - "values": [ - "4 - General action" - ] - }, - { - "text": "Amend the Suppression of Terrorism Act of 2008, and the Sedition and Subversive Activities Act of 1938 to guarantee the freedoms of expression, association and assembly", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Strengthen the mandates of the Ombudsman for Human Rights and the Defender of the Principle of Equality and avoid any overlap in the execution of their respective mandates", - "values": [ - "4 - General action" - ] - }, - { - "text": "Take immediate steps to change attitudes towards children with albinism and ensure protection of their human rights", - "values": [ - "4 - General action" - ] - }, - { - "text": "Consider signing or ratifying the Optional Protocol to the Convention against Torture, the Rome Statute, the Second Optional Protocol to the International Covenant on Civil and Political Rights and the Optional Protocol to the Convention on the Elimination of Discrimination against Women", - "values": [ - "3 - Considering action" - ] - }, - { - "text": "Adopt plans and programmes for awareness education in the field of promotion of human rights and fundamental freedoms, and ensure the follow- up and implementation of recommendations and proposals made concerning human rights", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Ratify the Rome Statute of ICC, and ICPPED, as previously recommended", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Take efforts to organize more training programmes for national personnel working in the areas of judicial affairs and law enforcement, in accordance with international human rights principles ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Persevere in its efforts to combat poverty and facilitate access to water for rural populations", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Ease current restrictions to allow for full, unhindered freedom of expression and freedom of assembly.", - "values": [ - "4 - General action" - ] - }, - { - "text": "Establish a mechanism for monitoring the number of cases and scope of abuse and strengthen the measures of protection from domestic violence ", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Pursue efforts to eliminate child labour and to enable their reintegration in the school system", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Make every possible effort to ensure access to food for the entire population", - "values": [ - "4 - General action" - ] - }, - { - "text": "Continue to pay attention to the rights of employees and requiring employers to provide the necessary protection and safety in the factories and industries ", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Take continuous measures to secure social infrastructure and means of livelihood at resettlement sites as this is expected to become even more vital", - "values": [ - "4 - General action" - ] - }, - { - "text": "Reduce the remaining socioeconomic differences for Maoris and Pacific Islanders, and increase efforts in the fight against child poverty ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Take all necessary measures to promote and strengthen the foundation of family and its values in society.", - "values": [ - "4 - General action" - ] - }, - { - "text": "Consider the abolition of the death penalty ", - "values": [ - "3 - Considering action" - ] - }, - { - "text": "Continue its efforts to promote and protect human rights and freedoms ", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Consider issuing a standing invitation to all special procedures of the Human Rights Council.", - "values": [ - "3 - Considering action" - ] - }, - { - "text": "Continue to take all necessary measures to protect all children in internally displaced persons sites and refugee camps. ", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Avail itself of technical assistance offered by OHCHR to submit its overdue reports.", - "values": [ - "1 - Minimal action" - ] - }, - { - "text": "Strengthen efforts to safeguard the rights of women migrant workers", - "values": [ - "4 - General action" - ] - }, - { - "text": "Give positive consideration to acceding to ICESCR and ICCPR.", - "values": [ - "3 - Considering action" - ] - }, - { - "text": "Adopt legislative measures on gender equality", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Amend legislation discriminating against women in the fields of inheritance, ownership to land and child support.", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Decriminalize same-sex relationships between consenting adults and strengthen efforts to address inequality and discrimination based on sexual orientation", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Take measures to prevent ethnic profiling by law enforcement officials and private businesses and provide effective remedies for victims ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Continue to implement the National Health Development Plan 2011- 2015 ", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Ratify the Optional Protocol to the ICESCR and the Optional Protocol to the Convention on the Rights of the Child on a communications procedure", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Consider reviewing its legislation with a view to criminalizing the possession of child pornographic materials", - "values": [ - "3 - Considering action" - ] - }, - { - "text": "Work through the United Nations process to finalize a political agreement as soon as possible and immediately begin the process of restoring rule of law and establishing necessary conditions and institutions for protecting human rights", - "values": [ - "4 - General action" - ] - }, - { - "text": "Ratify the Convention against Torture and Other Cruel, Inhuman or Degrading Treatment or Punishment and the International Convention for the Protection of All Persons from Enforced Disappearance ", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Strengthen the integration of migrants through increased dialogue at the local level ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Extend a standing invitation to mandate holders", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Apply the Guiding Principles on Internal Displacement to all those impacted by the Fukushima Daiichi nuclear disaster in order to ensure full and equal participation for both women and men in decision-making processes regarding their resettlement", - "values": [ - "4 - General action" - ] - }, - { - "text": "Continue the constructive cooperation with all human rights mechanisms in order to promote human rights in the country ", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Take all necessary measures to ensure that civil society organizations, human rights defenders and journalists are able to carry out their legitimate activities without facing legal or administrative obstructions or fear or threat of reprisals", - "values": [ - "4 - General action" - ] - }, - { - "text": "Focus more efforts on combating violence against women and provide authorities with more training in this regard.", - "values": [ - "4 - General action" - ] - }, - { - "text": "Consider reviewing and withdrawing reservations to ICCPR and other core human rights instruments, particularly where such reservations work to undermine the commitment to non-discrimination included in these treaties ", - "values": [ - "3 - Considering action" - ] - }, - { - "text": "Continue its efforts to reduce the number of children without parental care, including by advancing the ongoing initiatives to address this issue ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Step up cooperation with the special procedures mandate holders by responding positively to the pending visit requests", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Ensure that the necessary protection and assistance is provided to unaccompanied children seeking asylum", - "values": [ - "4 - General action" - ] - }, - { - "text": "Continue to prioritize policies and programmes aimed at eradicating poverty and underdevelopment and ensuring the enjoyment of all economic, social and cultural rights ", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Continue to enhance its legislative and protection frameworks to combat and prevent all forms of trafficking in persons", - "values": [ - "4 - General action" - ] - }, - { - "text": "Continue its efforts to speed-up attaining Millennium Development Goals (MDGs), particularly those related to health", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "End immediately the detention of those who are not held in detention centres as foreseen by article 341 of the Penal Code.", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Take steps to effectively implement the ban on discrimination contained in the anti-discrimination law and the law on schools ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Continue to intensify its efforts to ensure that violence, in particular hate-motivated crime, does not occur", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Continue its efforts to protect the rights of expatriate workers", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Further promote equal access to justice for all, including by reducing backlog and delays in the administration of cases in court, providing more legal aids to the poor and marginalized, as well as increasing the use of alternative measures to pre-trial detention ", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Declare a moratorium on the application of the death penalty with a view to its definitive abolition", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Preserve the natural institution of the family ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Implement the 2012 Peace and Reconciliation Commission Act in order to appease the climate of national instability and ensure effectively the promotion and protection of human rights", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Expedite the process of reconciliation and transitional justice, including through the commencement of the operation of the Office of Missing Persons, the enactment of the new counter-terrorism legislation, as well as the additional release of land to the people in the northern and eastern provinces of the country", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Ensure that all pretrial detainees are brought before a judge without delay and expedite the cases of persons held under the Comprehensive Dangerous Drugs Act", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Withdraw its reservations to CRPD articles 9 (accessibility), 24 (education) and 11 (situations of risk and humanitarian emergencies) ", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Introduce legislation providing appropriate criminal penalties for acts of torture, establish independent procedures to ensure that all allegations of torture are investigated promptly, thoroughly, impartially and independently, that any officials responsible for torture are held accountable, and that any victims of torture have the right to remedy and reparations", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Finalize and adopt the Federal Constitution, without delay, in coordination with the Federal Government, regional administrations, civil society and the Somali public", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Consider taking more strenuous effort to improve the socio-economic conditions of women, in particular, in the areas of reproductive health care services, poverty eradication and access to economic resources such as credit and loan facilities.", - "values": [ - "3 - Considering action" - ] - }, - { - "text": "Enact legislation criminalizing all forms of violence against women and girls", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Continue its efforts to enhance capacity-building for law enforcement officials in the area of human rights", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Alleviate overcrowding in prisons by encouraging alternative sentences to incarceration where appropriate ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Consider an early ratification of the newest international human right instrument - the third Optional Protocol to the Convention on the Rights of the Child on a communication procedure ", - "values": [ - "3 - Considering action" - ] - }, - { - "text": "Consider ratifying the Optional Protocol to the Convention against Torture and Other Cruel, Inhuman or Degrading Treatment or Punishment ", - "values": [ - "3 - Considering action" - ] - }, - { - "text": "The delegation expressed that the Government committed itself to intensifying its efforts to communicate, to the Jamaican public, the variety of options available to them to seek redress for alleged violations of their rights. ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Consider ratifying the Second Optional Protocol to the International Covenant on Civil and Political Rights.", - "values": [ - "3 - Considering action" - ] - }, - { - "text": "Adopt further measures and safeguards to ensure the independent functioning of the media without the influence of the State", - "values": [ - "4 - General action" - ] - }, - { - "text": "Proceed with the accreditation of the NHRI with an A status in accordance with the Paris Principles", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Systematically pursue current initiatives to change harmful practices against women and children, in particular female genital mutilation and early marriage", - "values": [ - "4 - General action" - ] - }, - { - "text": "Raise awareness in the society, among people of all ages, to enable them to recognize the importance of civil society organizations and their role in the dynamics of Bahraini society", - "values": [ - "4 - General action" - ] - }, - { - "text": "Withdraw reservations to the International Covenant on Civil and Political Rights ICCPR, within the context of Human Rights Council resolution 9-12", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Ensure that the right to hold peaceful, open and public demonstrations is freely available to all individuals without undue restrictions", - "values": [ - "4 - General action" - ] - }, - { - "text": "Continue and step up national efforts to train and guide security staff and other law enforcement officials in the field of human rights", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Take all measures in further implementing the Action Plan for the Protection of Human Rights in Georgia, in particular by allocating sufficient funding from its national budget", - "values": [ - "4 - General action" - ] - }, - { - "text": "Ratify the optional protocols to the treaties to which it is a Contracting Party in order to recognize the competence of Treaty Bodies in complaints, inquiry and urgent action procedures", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Ratify the Council of Europe Convention on the Protection of Children against Sexual Exploitation and Sexual Abuse (the Lanzarote Convention)", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "That the legal framework against torture conforms to international human rights standards and that the Istanbul Protocol be applied in all federal states. Persons responsible for torture should be convicted accordingly in order to prevent the future use of torture", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Continue implementing socio-economic development strategies and plans designed to reduce poverty ", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Fulfil its commitments under ratified fundamental human rights instruments", - "values": [ - "4 - General action" - ] - }, - { - "text": "Include human rights aspects in all training programmes and extend them to all police units", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Repeal laws that criminalize sexual activity between consenting adults of the same sex", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Amend the Criminal Code and Constitution so as to incorporate international standards of freedom of expression, as established in article 19 of the International Covenant on Civil and Political Rights.", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Devote more resources to plans to reduce poverty and to programmes supporting the most vulnerable groups in society, especially in rural areas of the country", - "values": [ - "4 - General action" - ] - }, - { - "text": "Improve the situation of workers, in particular migrant workers, by providing them with the necessary protection", - "values": [ - "4 - General action" - ] - }, - { - "text": "Continue implementing a non-discriminatory and inclusive policy and guarantee quality education to all the girls and boys in its country ", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "In line with the commitment to a government more accountable to the citizens, the MSAR Government shall strengthen its accountability system for bureau directors, department heads and division chiefs in systemic and disciplinary terms.", - "values": [ - "4 - General action" - ] - }, - { - "text": "Accede to the remaining major international human rights instruments - ICCPR, ICESCR, and CAT ", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Enhance support for the reintegration of victims of trafficking, especially women and children ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Participate actively in the international programmes of technical assistance and capacity building in the field of human rights", - "values": [ - "1 - Minimal action" - ] - }, - { - "text": "Stop all ill-treatment, particularly in prisons and improve detention conditions, respecting its obligations under the Convention against Torture and Other Cruel, Inhuman or Degrading Treatment or Punishment and its Optional Protocol", - "values": [ - "4 - General action" - ] - }, - { - "text": "Promote further women's rights in the field of education and health", - "values": [ - "4 - General action" - ] - }, - { - "text": "Take all necessary legal measures for ratifying the Optional Protocols to the International Covenant on Economic, Social and Cultural Rights and to the International Convention on the Protection of All Persons from Enforced Disappearance", - "values": [ - "4 - General action" - ] - }, - { - "text": "Reform the Education Act in order to achieve its compliance with international standards on the protection of the right to autonomy and academic freedom", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Ensure that future measures addressing torture and ill-treatment of detainees, including rehabilitation of victims and a revision of the mental health law are in full compliance with international standards", - "values": [ - "4 - General action" - ] - }, - { - "text": "Continue in the path towards the building of socialism, under the principles of solidarity and justice, making headway in the strengthening of participatory and proactive democracy, as a genuine mechanism to ensure citizen participation in public affairs, which has led to better conditions for the promotion and protection of human rights for the Cuban people", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Amend the Charities and Societies Proclamation so that all NGOs can operate freely without restrictions stemming from the structure of their funding ", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Swiftly conclude the process of setting up a national human rights institution in compliance with the Paris Principles", - "values": [ - "4 - General action" - ] - }, - { - "text": "Take the necessary measures to ensure that the Gabonese laws regarding violence against women, including those prohibiting rape, sexual harassment and domestic violence, are implemented and that those responsible are brought to justice", - "values": [ - "4 - General action" - ] - }, - { - "text": "Make efforts to review existing relevant legislation to secure the full exercise of the freedom of expression and association", - "values": [ - "4 - General action" - ] - }, - { - "text": "Adopt an action plan for the employment of women and young people", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Strengthen efforts to combat human trafficking", - "values": [ - "4 - General action" - ] - }, - { - "text": "Intensify its efforts to ensure birth registration for everyone, especially children and adolescents in rural areas", - "values": [ - "4 - General action" - ] - }, - { - "text": "Reinstate civilian control of decision-making in relation to applications for conscientious objection to military service, to extend the time during which applications can be made, to remove the exclusion of all those who have ever held a firearms license from being recognized as conscientious objectors, and to equalize the length of alternative and military service", - "values": [ - "4 - General action" - ] - }, - { - "text": "Ratify the main human rights treaties to which Honduras is not yet a party ", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Ratify CEDAW.", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Reinforce the capacity of the Ombudsperson and specialized ombudspersons and their coordination, give appropriate follow-up to their recommendations, and publicize their work among the general public ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Repeal provisions which deny women legal guardianship of minor children on an equal footing with men", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Develop health programmes in health-care centres and correctional and rehabilitation centres to accommodate all age groups and people with special needs", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Adopt comprehensive legal and other measures to combat all forms of violence against women and particularly violence in the home and sexual violence", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Develop and implement specific measures and affirmative policies to eliminate racial profiling and discrimination faced by persons of African descent", - "values": [ - "4 - General action" - ] - }, - { - "text": "Make every effort to finalize policies in the areas of disability, inclusive education, child labor, gender equality and women's development and to progress in achieving measurable results in their implementation within the time frame prior to its next UPR", - "values": [ - "4 - General action" - ] - }, - { - "text": "Take concrete measures to ensure that all citizens are treated fairly and openly before the law and that undue delays in the sentencing process are rectified ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Continue with its ongoing impressive efforts to ensure that the bottom 70 per cent of the elderly aged over 65 are provided with basic income, as set out by its basic pension scheme", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Continue to strengthen current positive efforts aimed at increasing the rates of school enrolment of its citizens, with particular emphasis on boys and girls ", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Intensify its endeavours to eradicate assault, battery and abduction of children. This can be achieved by the government increasing its campaign through raising awareness about the dangers of these practices to affected families", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Maintain efforts to protect the rights of vulnerable groups, considering their specific needs and capacities, through the empowerment of their rights and fair reparation mechanisms", - "values": [ - "4 - General action" - ] - }, - { - "text": "Adopt concrete measures and programmes to effectively address the causes for high school dropout rates among girls such as early pregnancy, gender-based violence and the lack of adequate sanitation in schools and to ensure their implementation, including by providing the necessary funding", - "values": [ - "4 - General action" - ] - }, - { - "text": "Allocate appropriate resources for the effective application of the law against femicide and other forms of gender-based violence, including better access to services for victims", - "values": [ - "4 - General action" - ] - }, - { - "text": "Ensure that all journalists and human right defenders can work in safe conditions ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Abolish death penalty for all crimes and meanwhile put in place a de jure moratorium on executions, as provided by five resolutions adopted by the General Assembly of the United Nations, including the most recent resolution 69/186 of 18 December 2014", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Consider the possibility of acceding to and/or ratifying the International Convention on the Elimination of All Forms of Racial Discrimination ", - "values": [ - "3 - Considering action" - ] - }, - { - "text": "Take further action to ensure for children their human rights under the Convention on the Rights of the Child, including by establishing an effective mechanism for receiving, monitoring and investigating reports of child abuse and neglect ", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Increase the age of minimum criminal responsibility to at least 12 years, as recommended by the CRC ", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Request technical and financial assistance from the international community, in particular United Nations organs and programmes, with a view to putting into practice national policies to follow-up on recommendations formulated by the Human Rights Council in the context of the Universal Periodic Review ", - "values": [ - "1 - Minimal action" - ] - }, - { - "text": "Strengthen its cooperation with the UN human rights mechanisms, in particular the special procedures mandate holders", - "values": [ - "4 - General action" - ] - }, - { - "text": "Fully promote the protection of human rights in the country.", - "values": [ - "4 - General action" - ] - }, - { - "text": "Establish the National Human Rights Commission, as soon as possible, which comprises independent and impartial Commissioners and which is compatible with the Paris Principles ", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Adopt additional measures for the fight against xenophobia, racial discrimination and discrimination of Roma women, and among other measures, strengthen the capacity of the National Office against Racial Discrimination in order to change the perception by the society of women of marginal and minority communities", - "values": [ - "4 - General action" - ] - }, - { - "text": "Implement effectively its legislation and policies against hate speech and hate crimes with particular focus on the human rights protection of Roma, Jews, lesbian, gay, bisexual, transgender and intersex persons and other vulnerable groups and other vulnerable groups", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Continue to improve the national legislation and practice in the field of the independence of the judiciary", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Sign, ratify and implement ICCPR, ICESCR, ICERD, CAT and CRPD ", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Continue their efforts to increase the representation of women in decision-making positions", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Extend standing invitations to all special procedure mandate holders of the United Nations", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Consider the possibility of establishing a national system for monitoring international recommendations", - "values": [ - "3 - Considering action" - ] - }, - { - "text": "Continue strengthening the functions of the competent institutions and use of adequate mechanisms to more efficiently combat domestic violence, which mainly affects women and children ", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Strengthen the legal framework to take better account of migrants and migrant workers, in particular by ratifying ICRMW", - "values": [ - "4 - General action" - ] - }, - { - "text": "Adopt a more systematic approach to building public awareness about gender equality and the potential contributions that women can make to social and economic development, which would help break down existing barriers faced by women in employment and education, while at the same time ameliorating the incidence of sexual exploitation and violence suffered by women ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Continue to take all necessary measures to ensure that no person is discriminated against by the State, including persons affected by HIV/AIDS", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Step up efforts to promote and protect the rights of persons with disabilities by, inter alia, providing equal access to education, health and justice services for persons with disabilities, and engaging persons with disabilities or their representatives in the policymaking process", - "values": [ - "4 - General action" - ] - }, - { - "text": "Take concrete action to end impunity in Darfur ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Share its best practices in education and promote the gender perspective at all levels in education and teacher trainings with appropriate measures", - "values": [ - "1 - Minimal action" - ] - }, - { - "text": "Consider the possibility of applying sentences alternative to imprisonment, particularly for juveniles and adolescents in conflict with the law", - "values": [ - "3 - Considering action" - ] - }, - { - "text": "Continue working for the enjoyment of economic, social and cultural rights in the country", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Consider, with targeted international support, the extension of free education up to the secondary level.", - "values": [ - "3 - Considering action" - ] - }, - { - "text": "Continue to protect vulnerable groups, in particular women, children as well as foreigners", - "values": [ - "4 - General action" - ] - }, - { - "text": "Share its experiences in strengthening its judiciary system", - "values": [ - "1 - Minimal action" - ] - }, - { - "text": "Consider ratifying the Optional Protocol to the Convention on the Rights of the Child on a communications procedure", - "values": [ - "3 - Considering action" - ] - }, - { - "text": "As recommended by CEDAW, that a definition on discrimination against women in compliance with article 1 of CEDAW be adopted.", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Abolish the death penalty, corporal punishment and other cruel, inhuman or degrading treatment from its national legislation ", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Give favourable consideration to ratifying the Convention against Torture and Other Cruel, Inhuman or Degrading Treatment or Punishment CAT as well as the Convention on the Rights of Persons with Disabilities CRPD ", - "values": [ - "3 - Considering action" - ] - }, - { - "text": "Close gender gaps by promoting and monitoring the equal representation of women in decision-making positions", - "values": [ - "4 - General action" - ] - }, - { - "text": "Take action at all levels to address the interlinked root causes of preventable mortality and morbidity of children under 5 and consider applying the "Technical guidance on the application of a human rights-based approach to the implementation of policies and programmes to reduce and eliminate preventable mortality and morbidity of children under 5 years of age", A/HRC/27/31", - "values": [ - "4 - General action" - ] - }, - { - "text": "Adopt a national action plan for protection of the rights of children and adolescents", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Continue efforts to guarantee the safety of human rights defenders from arbitrary arrests and intimidation", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Consider the possibility of eventual ICRMW ratification.", - "values": [ - "3 - Considering action" - ] - }, - { - "text": "Further promote the fight against human trafficking through the specialized official authority", - "values": [ - "4 - General action" - ] - }, - { - "text": "Improve resource allocations for the implementation of laws tackling participation of women in public office", - "values": [ - "4 - General action" - ] - }, - { - "text": "Sign and ratify the Second Optional Protocol to the ICCPR ", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Enhance the functions of the national institutions to accelerate the process of submitting periodic reports to Treaty Bodies ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Continue to implement the strategies and plans for the promotion of the economic and social development in the country", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Ensure the implementation of more comprehensive antidiscrimination measures to guarantee the equal treatment of the Roma people ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Put into practice active policies to allow an increase in the representation of women in elected and decision-making positions, in particular in the public administration.", - "values": [ - "4 - General action" - ] - }, - { - "text": "Find appropriate ways to provide adequate compensation to Maori, in particular for their loss of land.", - "values": [ - "4 - General action" - ] - }, - { - "text": "Ensure that high goals of economic development by 2012 contribute to bringing about a decisive turn in the promotion and protection of human rights", - "values": [ - "4 - General action" - ] - }, - { - "text": "Implement the recommendations made by the Committee on the Rights of the Child, especially eradicate traditional practices such as female genital mutilation, sexual exploitation, corporal punishment in children's education and forced child begging ", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Promote national reconciliation taking into account and protecting Sri Lanka's ethnic and religious pluralism, ensuring that all religious denominations are granted equal treatment and enjoy their fundamental rights", - "values": [ - "4 - General action" - ] - }, - { - "text": "Italy is committed to ratifying the Optional Protocol to the Convention against Torture once a relevant independent national preventive mechanism will be put in place.", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Take effective measures to prevent trafficking in persons, including women and children", - "values": [ - "4 - General action" - ] - }, - { - "text": "Take urgent and immediate steps to address the plight of migrants, asylum seekers, refugees and trafficked human beings in Libya, ensuring full respect for their human rights, including preventing violence against women and violence targeting members of religious communities", - "values": [ - "4 - General action" - ] - }, - { - "text": "Ensure that violence against women and girls constitutes a criminal offence, as well as to ensure the prosecution, punishment and rehabilitation of perpetrators, and the protection and access to immediate means of redress for victims of violence ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Pursue, with additional support from its development partners, the implementation of a national strategy for sustainable development, including poverty reduction, which is a fundamental condition for promoting human rights ", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Continue to combat all forms of discrimination in education in particular by adopting specific measures aimed at combating remaining gender-related inequalities ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Hold an on-time electoral process in 2016 that is fair, transparent, and inclusive", - "values": [ - "4 - General action" - ] - }, - { - "text": "Continue to take steps to improve conditions in prison settings and make them consistent with international standards", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Introduce a moratorium and instigate a public debate on the abolition of the death penalty, while also addressing how best to support victims and their families", - "values": [ - "3 - Considering action" - ] - }, - { - "text": "Consider the possibility of ratifying the International Convention for the Protection of All Persons from Enforced Disappearance and adapting its national legislation to this instrument", - "values": [ - "3 - Considering action" - ] - }, - { - "text": "Enforce legislation prohibiting child labour, facilitate access to education for poor and disadvantaged children and reinforce labour inspections", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Continue the provision of high-quality health-care services to its population", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Adopt more policies and allocate more resources specifically directed towards Roma women and children", - "values": [ - "4 - General action" - ] - }, - { - "text": "Continue efforts to put an end to human trafficking and sexual exploitation of children", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Expedite the adoption of the law on preventing and combating discrimination with a view to strengthen existing rules and create a real and viable mechanism for prevention and prohibition of discrimination on different grounds", - "values": [ - "4 - General action" - ] - }, - { - "text": "Abolish legislative provisions that grant state officials immunity from prosecution, notably by repealing Decrees 14/1969 and 69/2008", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Continue implementation of the National Operational Framework for HIV and AIDS for the period 2012-2016 and the National Strategic Operational Plan for HIV/AIDS 2011-2016 ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Continue its strive to build an inclusive society where persons with disabilities are given every opportunity to become integral and contributing members ", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Make an impact assessment of any negative consequences of budgetary adjustments with regard to universal access to health and education, particularly their impact on vulnerable groups such as migrants, women, people with disabilities, the elderly and children", - "values": [ - "3 - Considering action" - ] - }, - { - "text": "Sign the Convention for the Protection of All Persons from Enforced Disappearance", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Step up efforts to promote sexual education, particularly oriented towards adolescents paying special attention to the prevention of early pregnancy and to the control of sexually transmitted diseases and HIV/AIDS, as previously recommended", - "values": [ - "4 - General action" - ] - }, - { - "text": "Continue efforts to step up psychosocial assistance programmes to victims of the conflict, according to their needs", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Continue strengthening social policy implemented by the Government to tackle the most needy in the country", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Continue working towards the establishment of a national human rights institution in accordance with the Paris Principles", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Ensure that freedom of expression is protected both offline and online and amend or remove vague provisions in the penal code, as well as new legislation to make sure that limitations on freedom of expression are strictly in line with ICCPR ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Ratify the Second Optional Protocol to the International Covenant on Civil and Political Rights ", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Continue efforts to improve the conditions of those in detention facilities, including prisons, and actively address the issue of prison overcrowding, with a view to ensuring that detention facilities in Rwanda meet international standards", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Implement stronger complaints and prosecution mechanisms for survivors of domestic violence, and improved services, including the provision of more shelters", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Continue the process of ratifying the international conventions to which the State is not yet a party, in particular the International Convention on the Protection of the Rights of All Migrant Workers and Members of Their Families", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Ensure that human rights defenders can perform their legitimate duties free from any harassment and intimidation in line with international standards including the UN Declaration on HR Defenders ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Continue its efforts to seek assistance from the international community for capacity-building and technical assistance in the context of human rights ", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Ensure sufficient resources for the National Independent Human Rights Commission to fully fulfil its mandate", - "values": [ - "4 - General action" - ] - }, - { - "text": "Improve the conditions of detention, notably by reducing the overcrowding in the prisons ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Thailand will accelerate efforts to reform the justice system and strengthen law enforcement", - "values": [ - "4 - General action" - ] - }, - { - "text": "Ensure progress in the investigations into the murders committed during the Maidan revolution in Odessa in May 2014, and into the murder of journalist Pavel Sheremet on 20 July 2016", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Avoid mandatory deprivation of liberty for asylum and refuge applicants while their petitions are processed", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Ensure that the right to participation of all persons promoting and protecting human rights is guaranteed ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Repeal articles 13 and 16 of the Law on Sexual Offences of 1986, penalizing sexual relations between consenting individuals of the same sex. Despite the fact that laws criminalizing same sex activity are not enforced, a formal withdrawal of the law is highly recommended", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Adhere to international standards regarding fair trials, and address allegations of abuse of detainees, including juveniles", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Modify its national laws to ensure that mothers can pass on nationality to their offspring regardless of the nationality of the father", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Accede to the Second Optional Protocol to ICCPR, prohibiting the death penalty in all circumstances", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Persevere in its efforts to protect human life from conception until natural demise ", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Continue its efforts to adopt the national action plan on human rights and establish an independent national human rights institution in line with the Paris Principles", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Continue redistributing income from petroleum exports to improve the well-being of its population, including construction of basic infrastructure and housing for low-income population as well as public health programmes", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Immediately declare an official moratorium on executions with a view to the ratification of the Second Optional Protocol to the International Covenant on Civil and Political Rights and the abolition of the death penalty", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Adopt additional measures to prevent the mistreatment of foreign nationals, combat discrimination against them, follow through on pursuing and prosecuting crimes against them and enforce regulation more effectively to protect foreign workers, particularly with regard to conditions of work and respect for occupational and safety standards ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Take concrete measures to ensure that justice is served in cases of threats and intimidation against journalists and that freedom of the press is guaranteed", - "values": [ - "4 - General action" - ] - }, - { - "text": "Accept the competence of CED to receive individual petitions ", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Ratify the Convention against Torture and Optional Protocol thereto, as well as the International Covenant on Civil and Political Rights and the International Covenant on Economic, Social and Cultural Rights", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Take the necessary measures to reduce the unemployment rate among Roma minority in the public and private sectors, including if necessary taking affirmative actions ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Significantly strengthen the cooperation between the different actors of the judiciary to avoid long pretrial detention and to ensure every citizen\u2019s right to a fair trial in due time", - "values": [ - "4 - General action" - ] - }, - { - "text": "Issue a standing invitation to all United Nations special procedures ", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Allow more freedom of movement of the people and foreigners in the country as a way to generate economic activities ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Continue its efforts to enhance the working conditions of expatriate labourers by issuing legislation and regulations to promote and protect the rights of expatriate workers in Oman Labour Law", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Continue efforts directed to achieving gender equality, and fully implement the National Programme for Substantive Equality for 2010-2013 ", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Attain the human rights goals set by the Human Rights Council in its resolution 9-12.", - "values": [ - "4 - General action" - ] - }, - { - "text": "Ensure that legislation and administrative measures adopted to combat terrorism are fair and have review mechanisms", - "values": [ - "4 - General action" - ] - }, - { - "text": "Continue with its efforts to promote and protect human rights ", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Establish a juvenile justice system in compliance with the Beijing Rules and the Riyadh Guidelines ", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Adopt a moratorium on the death penalty, as a first step towards its complete and full abolition", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Put an end and abolish the administrative detention of minors and separate them from adults in detention", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Continue to put into place practical measures at the local and national levels to ensure gender equality and combat discrimination against women", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Reform the 1980 law on publications and all other related laws to take into account the evolution of freedom of expression and opinion.", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Take necessary measures to eliminate all forms of discrimination against women", - "values": [ - "4 - General action" - ] - }, - { - "text": "Continue the comprehensive efforts to improve the system of education.", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Seek further assistance for capacity building and technical assistance in the areas identified in the National Report ", - "values": [ - "1 - Minimal action" - ] - }, - { - "text": "Continue in its judicial reforms, including strengthening the independence of the judiciary, enact a robust legislation outlawing torture and tackling impunity for acts of torture and ill-treatment, and ensure that provisions for arrests and detention are in accordance with international human rights standards", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Continue to address the inequality and social injustice that has been a factor in fostering social conflict and political unrest over the past 2-3 years, including in the South ", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Publicize the recommendations of the universal periodic review", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Strengthen efforts on the fight of discrimination against women and girls, particularly regarding access to education, health, justice and participation ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Continue the efforts made in the implementation of the recommendations made in the first UPR, as well as the current UPR ", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Ratify the United Nations Convention against Corruption.", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Investigate thoroughly incidents of trafficking in human beings and ensure that the perpetrators are subject to proportionate punishment", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Sign, accede to and/or ratify the main international instruments already agreed in the previous cycle of the universal periodic review", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Continue efforts to promote and protect the rights of women, children, and young persons and persons with disabilities", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Adhere to the principles of the International Convention on the Protection of the Rights of All Migrant Workers and Members of Their Families and positively consider ratifying it", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Establish a formal moratorium on the death penalty with a view to ratifying the Second Optional Protocol to the International Covenant on Civil and Political Rights, aiming at the abolition of death penalty", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Ratify those core international human rights instruments not yet ratified", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Study the possibility of becoming a party to the Convention for the Protection of All Persons from Enforced Disappearance ", - "values": [ - "3 - Considering action" - ] - }, - { - "text": "Continue its efforts to prevent gender-based and domestic violence and to protect and support victims", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Take the legal steps necessary to protect women against domestic violence", - "values": [ - "4 - General action" - ] - }, - { - "text": "Take necessary steps for recognizing the Muftis elected by the Turkish Muslim minority and repealing the relevant articles of the Law 3536/2007", - "values": [ - "4 - General action" - ] - }, - { - "text": "Provide adequate and stable funding for care centres and shelters for women and children victims of domestic violence", - "values": [ - "4 - General action" - ] - }, - { - "text": "Adopt the necessary policies to ensure that children with disabilities are given equal opportunities in education and ensure that they are fully integrated into school systems, free from discrimination of any kind", - "values": [ - "4 - General action" - ] - }, - { - "text": "Strengthen the measures and norms necessary for the full implementation of the Law on the Protection of the Family, explicitly sanctioning the corporal punishment of children", - "values": [ - "4 - General action" - ] - }, - { - "text": "Continue this important work related to violence against children by undertaking civic education at all levels of society, especially throughout the educational system and justice system, on the negative effects of violence against children ", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Continue efforts to combat human trafficking, in particular exploitation of children and women, by stepping up the efforts to combat impunity of traffickers and regional cooperation", - "values": [ - "4 - General action" - ] - }, - { - "text": "Amend the Sedition Act and the Local Newspapers Order 1958 to strengthen freedom of expression in line with international human rights obligations ", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Reinforce the procedural guarantees in the anti-terrorist legislation and ensure that measures provided for by the law are applied in strict accordance with international human rights obligations", - "values": [ - "4 - General action" - ] - }, - { - "text": "Intensify efforts to create more employment opportunities for youth by, inter alia, providing\nmore entrepreneurship training courses and apprenticeships ", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Further strengthen the protection of journalists, human rights defenders and individuals to ensure their rights to freedom of opinion and expression. It is crucial that crimes against media professionals do not go unpunished", - "values": [ - "4 - General action" - ] - }, - { - "text": "Ensure that those laws related to acquisition, transmission, conserving and loss of nationality are in line with the principle of non- discrimination", - "values": [ - "4 - General action" - ] - }, - { - "text": "Amend legal provisions to guarantee equality between men and women, prevent violence against women, prevent threats to the safety and integrity of persons deprived of their liberty, guarantee non-discrimination on grounds of religion, belief and ethnicity, also for foreign workers, and to achieve effective implementation of these provisions ", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Implement and strengthen policies and laws to protect and promote the rights of persons with disabilities and ensure that these mechanisms enjoy a human rights based approach consistent with the CRPD and in consultation with civil society ", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Reduce as much as possible the number of offences punishable by the death penalty with a view to limiting the number of death sentences", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Withdraw reservations to CAT and ratify OP-CAT", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Ensure effective implementation of the Anti-Gender-Based Violence Act with particular focus on victims' access to justice", - "values": [ - "4 - General action" - ] - }, - { - "text": "Ensure nationwide access to barrier-free protection and support facilities for women with disabilities affected by violence ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Create an independent human rights institution ", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Continue to address the promotion and protection of the rights of persons with disabilities by reducing stigma and discrimination against them in the society", - "values": [ - "4 - General action" - ] - }, - { - "text": "Take steps to ratify the core human rights conventions, in particular the International Covenant on Civil and Political Rights ", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Strengthen its efforts for realizing full immunization in cooperation with the relevant United Nations agencies", - "values": [ - "4 - General action" - ] - }, - { - "text": "Consider an early ratification of ICCPR, ICERD and ICESCR ", - "values": [ - "3 - Considering action" - ] - }, - { - "text": "Take all necessary measures to ensure the independence and the correct operation of the judiciary", - "values": [ - "4 - General action" - ] - }, - { - "text": "Bulgaria confirms its commitment to consider ratifying the OP to the ICESCR7 and the ICPPED8 . Inter-departmental discussions are being held.", - "values": [ - "3 - Considering action" - ] - }, - { - "text": "Take stronger actions to put an end to cases of abuses and ill treatment allegedly committed by police forces and prison guards, especially against juveniles ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Condemn and investigate the frequent acts of violence and expression of hatred against religious minorities", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Step up efforts to ensure that primary education is compulsory as well as free of charge, and improve the capacity of all educational institutions, importantly through the increase of budget allocations towards education", - "values": [ - "4 - General action" - ] - }, - { - "text": "Define torture in its national criminal legislation, prosecute and punish perpetrators of torture, and ratify as soon as possible the OPCAT ", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Continue efforts to enhance social dialogue, as well as to ensure adequate protection and promotion of economic rights of the labour force, e.g. through the establishment of an efficient labour inspection mechanism with executive powers", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Identify a set of - universal social services - accessible to all children and families to provide an adequate standard of living", - "values": [ - "4 - General action" - ] - }, - { - "text": "Strengthen efforts to combat violence against women, inter alia, by ratifying the Council of Europe Convention on Preventing and Combating Violence against Women and Domestic Violence", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Protect the reproductive rights of girls and women, adopting legal reforms that eliminate the requirement for prior judicial authorization for abortion", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Apply aggravating circumstance in hate-motivated crimes as well as prohibit and criminalize racist organizations, hate speech, incitement to hatred and the dissemination of ideas based on racial superiority and hatred", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Continue to implement the comments and recommendations of the Committee on the Elimination of Discrimination Against Women and the Committee on the Rights of the Child", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Consider ratifying the Second Optional Protocol to the International Covenant on Civil and Political Rights aiming at the abolition of death penalty", - "values": [ - "3 - Considering action" - ] - }, - { - "text": "Take all adequate measures to guarantee the protection and promotion of religious freedom, including by adopting legislation with regard to the recognition of churches and the property rights of religious communities.", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Continue consultations, investigations and reform programmes under way to eliminate racial discrimination and excessive use of force in policing", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Urgently take all possible measures to reduce the growth in crime and to establish and implement a clear policy of crime prevention, including reforms of the judiciary and the national police to combat corruption and achieve greater transparency", - "values": [ - "4 - General action" - ] - }, - { - "text": "Continue its efforts to guarantee free education at the primary level for all children, giving special attention to minority groups.", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Continue to engage its international partners with the view to strengthening the capacity and enlarging the resource base of the Commission", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Accelerate its efforts towards the adoption of anti-discrimination and children's rights laws ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Ensure the effective implementation of the 4th Basic Plan for Gender Equality with particular focus on the \u201cReformation of \u201cmen-oriented working styles\u201c for women\u2019s empowerment\u201c", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Continue to develop and strengthen actions aimed at eradicating poverty and public policies to guarantee access to economic and social welfare to all the population", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Strengthen the institutional and legal framework to combat violence against children, in particular sexual violence", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Review laws and decrees currently in force restricting the freedoms of religion, opinion, and of expression, in order to prevent any risk of discrimination ", - "values": [ - "3 - Considering action" - ] - }, - { - "text": "Continue legislative and judicial reforms with a view to ensuring the accessibility of legal services in the hinterlands", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Ensure the enjoyment of economic, social and cultural rights in equal conditions for minorities, particularly their right to work and to education", - "values": [ - "4 - General action" - ] - }, - { - "text": "Complete the procedure of ratification of the European Convention on Preventing and Combating Violence against Women and Domestic Violence", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Provide training to police officers about unacceptable conduct and adequately punish all cases of ill-treatment", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Ensure that the requirement to consult with indigenous peoples on decisions concerning lands traditionally owned by them is enshrined in law, and that every effort is made by the Government to ensure that this instrument complies with international standards", - "values": [ - "4 - General action" - ] - }, - { - "text": "Ratify other important human rights instruments such as the Convention on the Elimination of All Forms of Discrimination against Women (CEDAW) and CAT facultative protocols", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Adopt and implement in due course the proposed Civic Equality and Integration Strategy and Action Plan for 2015-2020, with a sound financial political backing", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "In the framework of the process of the fight against impunity, effectively investigate the cases of forced sterilization that occurred in the context of the Reproductive Health and Family Planning Programme 1996-2000 and establish a programme to provide compensation to victims", - "values": [ - "4 - General action" - ] - }, - { - "text": "Extend an open standing invitation to all special procedures", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Pass a law to criminalize violence against women explicitly", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Implement a comprehensive strategy to combat the discrimination against women, Amerindian children and also children with disabilities", - "values": [ - "4 - General action" - ] - }, - { - "text": "Promote freedom of religion within its public bodies and also through public awareness programmes, particularly among the people of the North, once the situation has been stabilized", - "values": [ - "4 - General action" - ] - }, - { - "text": "Ratify and incorporate into domestic legislation the core human rights treaties, including CAT and CRC ", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Ratify the Rome Statute, which Cote d'Ivoire signed, and transcribe its provisions into national law ", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Review its labour and migration laws to accommodate the demands for cheap, low or semi-skilled labour and thereby provide for safe migration options", - "values": [ - "3 - Considering action" - ] - }, - { - "text": "Include homeless women and children, including unaccompanied children of foreign origin as priority beneficiaries into poverty reduction strategy ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Continue its efforts in the implementation of accepted recommendations from the second cycle and consider sharing good practices in that regard", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Intensify its efforts regarding the fight against poverty with the aim of achieving the pertinent objectives of the Millennium Development Goals ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Further intensify efforts in fighting HIV/AIDS", - "values": [ - "4 - General action" - ] - }, - { - "text": "Establish land commissions at the community level. ", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Intensify its fight against all forms of discrimination and the exploitation of children of poor families ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Provide more information about the detention of journalists and individuals expressing dissenting views so as to address the concerns expressed by the Secretary-General and the Special Rapporteur", - "values": [ - "4 - General action" - ] - }, - { - "text": "Ensure equal treatment and non-discrimination against women and persons with HIV/AIDS", - "values": [ - "4 - General action" - ] - }, - { - "text": "Resume the dialogue in Tibet", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Accede to the ICCPR-OP 2 and also the Optional Protocol to the Convention against Torture (OP-CAT)", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Issue a standing invitation to all Special Procedures mandate holders, and cooperate fully with the Commission of Inquiry established at the 17th Special Session of the Human Rights Council so that the latter shall be able to sufficiently conduct fact-finding activities and identify those responsible", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Take steps to fully enforce the 2012 Anti-Discrimination Act and adopt concrete measures to reduce the risk of violence against vulnerable groups ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Continue to seek capacity building and technical assistance in order to pursue its plans for development and promotion of human rights ", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Continue further with its initiative to promote community cohesion and social harmony", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Strengthen its social policies, giving priority to the most vulnerable ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Develop and put in place a strategy to improve, as soon as possible, detention conditions of minors separated from adults, and reduce the duration of police custody and pre-trial detention", - "values": [ - "4 - General action" - ] - }, - { - "text": "In assistance with its Development Partners, continue its fight against poverty", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Abolish the death penalty and sign and ratify the Second Optional Protocol to the International Covenant on Civil and Political Rights ", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Criminalize explicitly torture in the Criminal Code and bring to justice those accused of practising it", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Prohibit specifically and by law all corporal punishment of children at home, care institutions, penitentiary centres and any other settings, in conformity with article 19 of CRC", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Ratify at the earliest the Agreement on the Privileges and Immunities of the International Criminal Court and take, if the need arises, requested measures to fully integrate the Rome Statute in domestic legislation ", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Consider the human rights elements with regard to the amendment of the security bill in the spirit of the new Constitution", - "values": [ - "3 - Considering action" - ] - }, - { - "text": "Investigate all allegations of racial profiling, of the practice of unlawful detention and of searches of persons belonging to ethnic and religious minorities, and penalise strictly law enforcement officers who were engaged in such actions", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Continue with its structural reforms in social welfare and health care with a focus on protecting the rights of women, children and vulnerable groups", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Take steps towards the effective implementation of the National Policy on Gender Equality and Women's Development and the National Policy on Ending Violence against Women, through coordination, advocacy, awareness-raising and resource allocation", - "values": [ - "4 - General action" - ] - }, - { - "text": "Germany also remained committed to protecting the human rights of all migrants, minorities and religious groups.", - "values": [ - "4 - General action" - ] - }, - { - "text": "Adopt measures to ensure the freedom of movement of the Palestinians within the OPT and lift the travel bans imposed on human rights defenders", - "values": [ - "4 - General action" - ] - }, - { - "text": "Ensure due investigation and prosecution of all alleged attacks against human rights defenders and independent journalists ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Continue strengthening the operational efficiency of various human rights institutions", - "values": [ - "4 - General action" - ] - }, - { - "text": "Continue to highlight during its negotiations with international creditors, the necessity to protect economic, social and cultural rights in the context of financial aid programme, in accordance with the obligations undertaken by Greece in international human rights conventions", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Make every effort within its capacity to implement law number 4320/2015 to give people living in poverty access to basic goods and services", - "values": [ - "4 - General action" - ] - }, - { - "text": "Seek the assistance of OHCHR and the international community in relation to human rights education, improving the justice system and strengthening the monitoring of progress in achieving the Millennium Development Goals and the goals of Vision 2016.", - "values": [ - "1 - Minimal action" - ] - }, - { - "text": "Further strengthen mechanisms fostering prosecution of all perpetrators of gender-based violence", - "values": [ - "4 - General action" - ] - }, - { - "text": "Step up awareness-raising campaigns and encourage dialogue with different religions and ethnic groups to establish legal mechanisms to facilitate access of all migrants to their rights", - "values": [ - "4 - General action" - ] - }, - { - "text": "Ratify Second Optional Protocol to the International Covenant on Civil and Political Rights, aiming at the abolition of the death penalty", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Ensure that the security forces, including the military, are governed, during peaceful demonstrations, by the United Nations Basic Principles on the Use of Force and Firearms by Law Enforcement Officials", - "values": [ - "4 - General action" - ] - }, - { - "text": "Step up human rights education for traditional authorities", - "values": [ - "4 - General action" - ] - }, - { - "text": "Initiate a national discourse about the death penalty and establish an official moratorium on executions with a view to abolishing the death penalty as called for by the General Assembly resolution 69/186", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Ensure that all places of detention comply with the UN Standard Minimum Rules for the Treatment of Prisoners", - "values": [ - "4 - General action" - ] - }, - { - "text": "Review the General Equal Treatment Act of 2006 to ensure that it covers all fields of the labour market and to ensure that women are not discriminated against in some professions, and setting up of concrete goals to be achieved in its implementation", - "values": [ - "3 - Considering action" - ] - }, - { - "text": "Incorporate the principle of gender equality into all areas of law by repealing or amending all existing discriminatory legislation, in order to achieve full de jure equality for women in Lesotho, in compliance with the State's international treaty obligations", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Consider implementing school meals programs, especially in rural areas most affected by poverty", - "values": [ - "3 - Considering action" - ] - }, - { - "text": "Continue to build on its laudable achievements in promoting and protecting the fundamental freedoms and human rights of the good people of Trinidad and Tobago ", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Reform legislation in the area of the rights of freedom of conscience and belief", - "values": [ - "4 - General action" - ] - }, - { - "text": "Implement measures to reduce violence against women, including domestic violence, spousal rape and female genital mutilation (FGM)", - "values": [ - "4 - General action" - ] - }, - { - "text": "Continue to apply specific legislation to improve the conditions of detainees and ensure the full respect of due process for them", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Continue the public political debate to go from the current de facto abolition to the definitive abolition of the death penalty in the country", - "values": [ - "4 - General action" - ] - }, - { - "text": "Strengthen further the capacity of the Office of the Commissioner on Human Rights in order to ensure its compliance with the Paris Principles", - "values": [ - "4 - General action" - ] - }, - { - "text": "Enhance the dissemination of information and figures regarding children and young persons who fall victims to the struggle against drug-trafficking", - "values": [ - "4 - General action" - ] - }, - { - "text": "Step up efforts to eliminate the gender wage gap and increase the participation of women in public life", - "values": [ - "4 - General action" - ] - }, - { - "text": "Improve mechanisms of legal and social protection of children against sexual violence", - "values": [ - "4 - General action" - ] - }, - { - "text": "Continue the effective implementation of preventive programmes to guarantee the full enjoyment of rights and the protection of LGBTI people against acts of violence and discrimination affecting them", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Continue efforts to strengthen protection mechanisms, including considering the establishment of victim and witness protection agency", - "values": [ - "3 - Considering action" - ] - }, - { - "text": "Continue its efforts in combating racial segregation and discrimination in various fields, particularly in education and continue the adoption of special measures in the context of the Durban Declaration and Programme of Action ", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Consider the possibility of signing and-or ratifying the Convention on the Rights of Persons with Disabilities", - "values": [ - "3 - Considering action" - ] - }, - { - "text": "Maintain the moratorium on the death penalty with a view to its abolition", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Put in place a legislation to criminalize the promotion of racial hatred and discrimination as well as further promote tolerance through public awareness campaigns and education ", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Adopt an approach based on respect for traditional societal norms as the basis for human rights education and sensitization", - "values": [ - "4 - General action" - ] - }, - { - "text": "Condemn all statements of a racist nature and increase awareness-raising, particularly directed at youth, of the unacceptability of racism", - "values": [ - "4 - General action" - ] - }, - { - "text": "Continue making progress in expanding the coverage for the Subsidized Family Health Insurance Scheme and the Contributory Family Health Insurance ", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Continue its efforts aimed at strengthening the principles of social justice, and enhance social cohesion", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Accelerate the amendments to the relevant legal texts necessary to bring them into conformity with the National Programme on Preventing and Combating Violence against Women", - "values": [ - "4 - General action" - ] - }, - { - "text": "Guyana is voluntarily committing to continue consideration of this issue [abolition of the death penalty] over the next 2 years and to report its findings to the UNHRC.", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Re-strengthen the guarantees of independence of the High Media Council and clarify its mandate so as to distinguish protection of freedom of the press from its functions as media regulator ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Redouble its efforts to establish the national human rights institution, in line with the Paris Principles", - "values": [ - "4 - General action" - ] - }, - { - "text": "Ensure that children with disabilities are able to exercise their right to education and provide their inclusion in the mainstream education system", - "values": [ - "4 - General action" - ] - }, - { - "text": "Strengthen policies on accessibility to ensure that persons with disabilities can enjoy their rights", - "values": [ - "4 - General action" - ] - }, - { - "text": "Adopt a specific law on domestic violence and abolish the provisions allowing a rapist to escape punishment by marrying the victim, remove discriminatory legislative provisions that place the burden of proof solely on the victim ", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Finalize steps to ratify other human rights instruments", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Establish an independent body to monitor and promote human rights, including progress made on the Truth and Reconciliation Committee's recommendations with regard to abuses committed during the Tensions", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Improve identification of victims of trafficking in human beings by setting up a coherent national mechanism of identification and referral of such cases, including among unaccompanied minors, irregular migrants and asylum seekers", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Expand in the acquisition of social services benefits from specialized organizations through agreements that are periodically renewed", - "values": [ - "4 - General action" - ] - }, - { - "text": "Strengthen its laws dealing with trafficking in persons", - "values": [ - "4 - General action" - ] - }, - { - "text": "Pursue measures taken to re-establish the rights of former refugees returning from Senegal and Mali and to allow the return of those remaining in those countries", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Enact specific legislation that prohibits discrimination against women and on the basis of sexual orientation, and develop a system through which all individuals can safely report cases of discrimination and access avenues of redress", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Allow all international human rights organizations wishing to do so to visit the country ", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Ensure that articles on human rights in the new Constitution fully comply with international standards on promotion and protection of human rights", - "values": [ - "4 - General action" - ] - }, - { - "text": "Introduce comprehensive anti-discrimination legislation that would protect the rights of all members of minority groups including LGBT persons", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Establish an official coordination mechanism about the main human rights benchmarks and indicators in the National Action Plan for Human Rights", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Harmonize national legislation with international human rights standards", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Accede and bring into line its legislation with the Rome Statute of the International Criminal Court ", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Continue its efforts to ensure legal ownership and restitution to long-term internally displaced persons and refugees, as provided by international law standards", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Ensure that the judiciary is able to function independently, without any interference, whether direct or indirect, free of any restriction or improper influence and to reinstate judges, magistrates and other judicial officers unlawfully removed in April 2009", - "values": [ - "4 - General action" - ] - }, - { - "text": "Carry out the work to eliminate expressions of hatred, racial and religious discrimination", - "values": [ - "4 - General action" - ] - }, - { - "text": "Continue to increase investment in education to endeavour to raise the level of education for the whole nation in order to meet the requirements for social and economic development ", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Adopt measures to align national legislation and practices with the provisions of the CRC, particularly those of article 37 (c), and sign and ratify the Third Optional Protocol to the CRC ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Accelerate its efforts with a view to creating an independent national human rights institution in line with the Paris Principles", - "values": [ - "4 - General action" - ] - }, - { - "text": "Introduce alternatives to imprisonment for minor offences with a view to reducing overcrowding and improving the situation of prisoners in general", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Continue to increase women's representation in all national decision-making positions to 30 per cent in line with the SADC decision", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Take the necessary measures to adopt in its national legislation a clear definition of racial discrimination and that prohibit racial discrimination in all its forms", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Enhance efforts to fight all forms of discrimination against women and gender-based violence", - "values": [ - "4 - General action" - ] - }, - { - "text": "Continue to undertake measures to support and protect the rights of persons with disabilities ", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Accede to the Optional Protocol to the Convention against Torture, create a national preventive mechanism in line with the Optional Protocol and acknowledge the competence of the Committee against Torture to consider allegations of breach of obligations under articles 21 and 22 of the Convention", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Enact legislation on human rights, including Citizenship Act, Persons with Disabilities Act, and the National Human Rights Commission Act", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Ratify the Optional Protocol to the Convention on the Elimination of Discrimination against Women ", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Adopt a national legal framework for the rights of people with disabilities regarding accessibility, care, education and employment", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Adopt a comprehensive global policy on children as well as a law and an action plan to implement this policy", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Unequivocally express itself and act in support of freedom of speech for journalists, in accordance with the transitional federal charter ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Ratify the other core human rights treaties, including the International Convention on the Protection of the Rights of All Migrant Workers and Members of Their Families, without delay", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Continue its constructive engagement with the United Nations Special Procedures, including the Working Group on Enforced or Involuntary Disappearances, by inviting the Working Group to visit the country", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Take measures with a view to prohibiting and punishing the brutality and the use of excessive or deadly force by the law enforcement officials and to banning torture and other ill-treatment in its detention facilities at home and abroad ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Ratify the Optional Protocol to the CRC on the involvement of children in armed conflict and develop and apply strategies aimed at ending impunity of those responsible for committing grave violations against children in conflict", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Carry on with ensuring the reduction of HIV prevalence in Zambia", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Investigate all cases of torture and ill-treatment in detention, as recommended previously", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Intensify its efforts to establish an official moratorium on the use of the death penalty with a view to abolishing it, and in the meantime immediately remove all provisions on national laws which are in breach of international human rights law ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Take effective measures promptly to uphold the total prohibition against torture, in accordance with its international obligations under the Convention against Torture and Other Cruel, Inhuman or Degrading Treatment or Punishment (CAT) and to sign OP-CAT ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Launch an impartial, efficient and in-depth investigation on the case of Sombath Somphone in accordance with the international obligations of the Lao People's Democratic Republic, and submit the results of the investigation in a transparent manner", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Continue the review of the Statutes of the National Commission for Human Rights to bring them into line with the Paris Principles to arrive at the adoption of these new Statutes as soon as possible", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Undertake more effective measures to address the problems of trafficking, sexual abuse and exploitation of women and children, including through ensuring effective implementation of the relevant legislations and undertaking intensive media and education programmes aimed to increasereness and sensitivities on the rights of women and children ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Improve the accessibility for persons with disabilities, particularly children, of education and key services", - "values": [ - "4 - General action" - ] - }, - { - "text": "Continue the fight against all discrimination, in particular discrimination targeting persons belonging to indigenous peoples living in the two Atlantic regions of the country ", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Protect the rights of indigenous peoples, peasants and other persons working in rural areas", - "values": [ - "4 - General action" - ] - }, - { - "text": "Ratify individual complaint mechanisms of United Nations treaty bodies", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Consider expediting its work on the draft Bill to make basic education compulsory and free", - "values": [ - "3 - Considering action" - ] - }, - { - "text": "Mongolia is committed to strengthen its efforts to investigate all allegations of torture and police brutality. National legislation in force prohibits an arbitrary detention of persons by law enforcement officials as such action has to be approved by the judge. Thus, the recommendation is unacceptable.", - "values": [ - "4 - General action" - ] - }, - { - "text": "Sign the CAT and its Optional Protocol (OPCAT), in order to provide a further disincentive against torture by the security forces and police", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Consider receiving the Special Rapporteurs of the Human Rights Council in Ethiopia ", - "values": [ - "3 - Considering action" - ] - }, - { - "text": "Guarantee education for children in conflict with the law", - "values": [ - "4 - General action" - ] - }, - { - "text": "Promote and carry out comprehensive education and training in human rights in the Spanish education system and in programmes for public employees, armed forces and military personnel at every level ", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "In line with its ongoing efforts, to continue to strengthen its labour laws and to improve the living and working conditions of foreign workers", - "values": [ - "4 - General action" - ] - }, - { - "text": "Consider taking more effective measures to eliminate discrimination against female immigrants and minority women in all areas, in particular in employment and education. ", - "values": [ - "3 - Considering action" - ] - }, - { - "text": "Ensure that the authority tasked with the management of European Union funds, such as the Asylum, Migration and Integration Fund, commences operations as swiftly as possible", - "values": [ - "4 - General action" - ] - }, - { - "text": "Strengthen human rights training programmes for the different categories of police staff and ensure that all cases of excessive use of force are promptly investigated", - "values": [ - "4 - General action" - ] - }, - { - "text": "Reconsider the ratification of OP-CAT ", - "values": [ - "3 - Considering action" - ] - }, - { - "text": "Pursue efforts to ratify the International Convention for the Protection of All Persons from Enforced Disappearance (CED)", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Continue the country's policy in promoting the full religious freedom of all citizens", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Formulate and implement a disarmament control and reduction policy", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Ensure the protection of the rights of children, including juveniles who are incarcerated in overcrowded prisons", - "values": [ - "4 - General action" - ] - }, - { - "text": "Continue efforts to strengthen the position of women's role in society and to create employment opportunities for rural women in the context of rural development strategy ", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Strengthen social integration policies, especially for migrants", - "values": [ - "4 - General action" - ] - }, - { - "text": "Continue to promote the empowerment of Aboriginal peoples, primarily through the protection of their lands, their education and their health ", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Continue its accession to the core international human rights ", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Take measures to protect victims of trafficking by providing shelters and facilitate the process in order for victims to witness against traffickers in court ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Prioritize action to address the concerns raised by the United Nations human rights treaty bodies regarding the situation of women, particularly in the informal sector, and the lack of rights and social benefits, including maternal protections available to them", - "values": [ - "4 - General action" - ] - }, - { - "text": "Further coordination among relevant national authorities and human rights institutions ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Redouble its efforts to strengthen public education, awareness, capacity-building programs and training", - "values": [ - "4 - General action" - ] - }, - { - "text": "Continue efforts in the field of judicial and penitentiary reforms", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Ratify the International Convention for the Protection of All Persons from Enforced Disappearance, which Monaco signed in 2007", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Conclude the project of creating an independent national human rights commission in line with the Paris Principles", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Take all possible measures to guarantee security and protection of civilians, particularly while conducting military operations, and pay special attention to the basic needs of persons", - "values": [ - "4 - General action" - ] - }, - { - "text": "Adopt necessary judicial reforms to increase the system's efficiency, in compliance with international standards ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Continue to engage with the Office of the High Commissioner for Human Rights and other UN agencies to enhance the promotion and protection of human rights within the country ", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Abolish the death penalty in the law", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Expedite the ratification of the Optional Protocol to the Convention on the Rights of the Child on the involvement of children in armed conflict ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Intensify its efforts to fight against all forms of racism, racial discrimination, xenophobia and related intolerance, including Islamophobia ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Consider the creation of a national register of detained persons.", - "values": [ - "3 - Considering action" - ] - }, - { - "text": "Criminalize marital rape and threats of violence as part of its draft law 103.13 on combating violence against women and implement State-sponsored programmes to support victims", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Move towards establishing gender equality offices in all cantons to enable coordination at the Federal Level", - "values": [ - "4 - General action" - ] - }, - { - "text": "Promote education by adopting additional policies to improve the enrolment of children in basic education, as well as combat discrimination in that field", - "values": [ - "4 - General action" - ] - }, - { - "text": "Make all possible efforts to prevent the spread of HIV-AIDS, and request technical and financial assistance from the United Nations and the relevant international organizations, including the World Health Organization, in order to achieve this goal and overcome this obstacle ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Extend its human rights education efforts to human rights training for media professionals and journalists", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Accelerate the process of passing into law the various rights-based bills before the National Assembly in order to provide broader scope of protection for vulnerable members of society, especially women, children and the disabled", - "values": [ - "4 - General action" - ] - }, - { - "text": "Rapidly implement all provisions of the Agreement on the Resolution of the Conflict in the Republic of South Sudan, including the justice and reconciliation aspects of the Agreement", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Ratify the OP-CAT", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Continue to improve the conditions in prisons, reduce crowding and adopt alternatives to pretrial detention and provide adequate medical care to prisoners", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Maintain the moratorium on executions with a view to abolishing the death penalty", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Adhere to international human rights instruments, which it is not yet a party to, notably the International Convention on the Protection of the Rights of All Migrant Workers and Members of Their Families ", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Ensure that education is accessible to all children, including by providing the educational system with necessary resources ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Allocate appropriate financial and human resources to effectively implement its National Development Plan on poverty eradication and access to education", - "values": [ - "4 - General action" - ] - }, - { - "text": "More effectively address and combat domestic violence as perpetuated against women and the elderly", - "values": [ - "4 - General action" - ] - }, - { - "text": "Accelerate the enactment of the Sri Lanka Employment Migration Authority Act on the protection of migrant workers and their families in line with the International Convention on the Protection of the Rights of All Migrant Workers and Members of Their Families", - "values": [ - "4 - General action" - ] - }, - { - "text": "Seek technical assistance from the United Nations as outlined in part 12 of its national report. ", - "values": [ - "1 - Minimal action" - ] - }, - { - "text": "Take measures to reduce overincarceration, notably by encouraging the use of alternative sentencing and by making sure that pre-trial hearings are widely used", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Promote actively plurality of the media, hold perpetrators of attacks against journalists accountable, and decriminalize defamation ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Take measures both in legislation and practice to ensure the rights of children, including access to education and health, birth registration, combating child labour and violence against them ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Issue open and permanent invitations to the special procedures. ", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Guarantee full freedom of expression, including for journalists conducting inquiries on sensitive issues, such as organized crime", - "values": [ - "4 - General action" - ] - }, - { - "text": "Promote a culture of respect for human rights at all levels of society", - "values": [ - "4 - General action" - ] - }, - { - "text": "Become party to the Convention against Torture and Other Cruel, Inhuman and Degrading Treatment or Punishment and its Optional Protocol", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Submit the initial report to the UN Committee against Torture - CAT -, overdue since 2001", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Continue its work in preventing all cases of human trafficking", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Abolish the daiyo kangoku system or reform it so that it is consistent with the international law", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Continue the implementation of comprehensive strategies aimed at the protection of children's rights", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Kyrgyzstan is firmly committed to protecting and promoting all human rights and fundamental freedoms.", - "values": [ - "4 - General action" - ] - }, - { - "text": "Recommended that Israel immediately cease work on the construction of the wall being built in the Occupied Palestinian Territories, and begins dismantling it.", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Further strengthen institutions that promote human rights, democracy, good governance and the rule of law", - "values": [ - "4 - General action" - ] - }, - { - "text": "Develop and adopt measures to tackle gender-based violence by increasing women's access to justice and widening coverage of community policy and victim support units in rural areas", - "values": [ - "4 - General action" - ] - }, - { - "text": "Work towards establishing and adopting a national strategy aimed at combating all forms of racism and xenophobia", - "values": [ - "4 - General action" - ] - }, - { - "text": "Strengthen national education programmes in favour of girls and persons with disabilities", - "values": [ - "4 - General action" - ] - }, - { - "text": "Put an end to all curbs on freedom of expression and association", - "values": [ - "4 - General action" - ] - }, - { - "text": "Strengthen the trafficking prevention programmes under the national strategy to combat human trafficking 2007-2012, with particular attention to children from disadvantaged groups ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Improve the national legislation so as to speed up the judicial process ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Continue implementing the Government's reform policy and action plans to address socio-economic inequality in order to achieve further progress to improve the situation of human rights in the country especially in an effort to achieve most of the targets of the MDGs, including poverty reduction, the control of HIV and the fight against human trafficking ", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Strengthen information campaigns against early and forced marriage and enforce laws already in place", - "values": [ - "4 - General action" - ] - }, - { - "text": "Continue the process of ratifying various human rights conventions", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Ensure the effective implementation of the amendment to article 24 of the Constitution relating to freedom of religion", - "values": [ - "4 - General action" - ] - }, - { - "text": "Remove the reservation to the Convention on the Rights of the Child, and prohibit corporal punishment of children in the home and all other settings", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Develop a draft reform of the criminal code with a special emphasis on human rights in accordance with international standards ", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Enhance the legal framework on the social inclusion and participation of persons with disabilities while promoting relevant awareness-raising activities", - "values": [ - "4 - General action" - ] - }, - { - "text": "Pursue measures to eradicate poverty through the implementation of comprehensive public policies with a human rights-based approach", - "values": [ - "4 - General action" - ] - }, - { - "text": "Continue to implement a comprehensive security, economic, political and social welfare plan", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Complete rapidly the process of aligning its national legislation with the provisions of the Statute of Rome ", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Request technical assistance and cooperation, as deemed appropriate, from the international community, including the relevant United Nations and specialized agencies, with a view to ensuring the promotion and protection of the full spectrum of the human rights of its people ", - "values": [ - "1 - Minimal action" - ] - }, - { - "text": "Continue its policies to achieve the goal set in 2006 of building more than 3.5 million dwellings by 2015", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Provide training to judges, prosecutors, law enforcement officials, border guards and social workers in identifying and dealing with victims of trafficking and in anti-trafficking legislation", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Identify and hold accountable all perpetrators of human rights abuses in the north and in Bamako through a transparent judicial process ", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Ensure the concrete implementation of the report of the Lessons Learnt and Reconciliation Commission and the National Strategy as envisaged by the Plan of Action", - "values": [ - "4 - General action" - ] - }, - { - "text": "Ratify core international human rights conventions, in particular CAT and ICCPR-OP 2", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Continue efforts in modernizing the justice system.", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Take measures to prevent risks of violence against foreigners, migrants or asylum seekers", - "values": [ - "4 - General action" - ] - }, - { - "text": "Continue its positive approach in combating poverty by providing the necessary support in rural infrastructure and its national employment policy to reduce unemployment", - "values": [ - "4 - General action" - ] - }, - { - "text": "Ratify the core human rights treaties, particularly the CRC, ICESCR, CEDAW and its Optional Protocol, the OP-CAT and the CMW and the CRPD with its Optional Protocol", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Accede to the Rome Statute of the International Criminal Court and implement it fully at the national level, and accede to the Agreement on Privileges and Immunities of the Court ", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Continue to pay attention to ensuring the exercise of the right to education for all", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Ensure that the new detention centres, which will be established in accordance with the auditing mentioned in the national report, comply with international standards, in particular regarding separation of minors from adults and the prohibition of corporal punishment ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Continue its efforts to integrate human rights education in the remaining grades in schools ", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "The United States is fully committed to ensuring that the individuals it detains in any armed conflict are treated humanely in all circumstances, consistent with applicable United States treaty obligations, its domestic law and policy", - "values": [ - "4 - General action" - ] - }, - { - "text": "Reduce the high number of persons in preventive detention and limit its systematic use through alternative options to detention", - "values": [ - "4 - General action" - ] - }, - { - "text": "Proceed with its review of the Shia Personal Status Law, ensure that it conforms to international commitments and actively works to promote the rights of women.", - "values": [ - "4 - General action" - ] - }, - { - "text": "Allocate additional funds to the National Human Rights Commission so that it can fulfil its mandate effectively", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Engage in consultations with the concerned communities and ensure their participation in the decision-making process affecting them, through their direct involvement in the formulation and implementation of mining projects", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Work towards disseminating a culture of human rights and national capacity-building through the development of strategies and plans and seek to implement them in cooperation with the relevant United Nations mechanisms", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Consolidating medicine distribution channels", - "values": [ - "4 - General action" - ] - }, - { - "text": "Ratify the Optional Protocol on the involvement of children in armed conflict", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Take all possible measures to address violence against women and girls ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Evaluate the possibility of ratifying the International Convention on the protection of all persons from enforced disappearances ", - "values": [ - "3 - Considering action" - ] - }, - { - "text": "Pay more attention to the needs of persons with disabilities, particularly by covering their medical expenses", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Continue to prioritise the fight against poverty and hunger within the framework of the National Development Plan", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Continue efforts to strengthen national reconciliation and fight against insecurity", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Make efforts to guarantee the right to education of children with disabilities, to ensure their integration in society", - "values": [ - "4 - General action" - ] - }, - { - "text": "Adopt measures and safeguards to ensure the exercise, in conditions of equality, of the legal capacity and recognition before the law of persons with disabilities", - "values": [ - "4 - General action" - ] - }, - { - "text": "Ratify the Convention on the Rights of Persons with Disabilities to ensure the rights of people with disabilities are safeguarded", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Ratify the 1960 UNESCO Convention against Discrimination in Education ", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Guarantee the right to universal suffrage with a view to holding genuinely free, competitive and democratic elections as soon as possible, and to extend a standing invitation to international electoral observers", - "values": [ - "4 - General action" - ] - }, - { - "text": "Take further steps to strengthen its social protection programs, in favour of the most vulnerable sectors of the population", - "values": [ - "4 - General action" - ] - }, - { - "text": "Implement public policies to seek greater gender equality, both in political life and in the enjoyment of rights by women and girls under equal conditions", - "values": [ - "4 - General action" - ] - }, - { - "text": "Continue to strengthen the investigative policies and strategies and the correct application of appropriate penalties for violations of human rights", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Engage actively in the fight against the misuse of power by the security forces ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Continue to speed up the implementation of the free and compulsory education program up to 12 years, in order to guarantee access of all children of the country ", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Share its experiences in the field of education with other countries", - "values": [ - "1 - Minimal action" - ] - }, - { - "text": "Further enhance people's awareness of gender issues ", - "values": [ - "4 - General action" - ] - }, - { - "text": "A public policy for widows and orphans", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Continue to cultivate its cooperation and interaction with the human rights mechanisms in seeking the support and technical assistance that will enable the Lao People's Democratic Republic to develop and implement its policies consistently and effectively ", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Continue implementing the Human Rights Plan of Action and continue training officials on aspects of the Plan", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Pursue efforts to combat illiteracy, working in particular to promote access to school for disadvantaged children ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Expedite the process that will lead to the ratification of the Optional Protocol to the Convention against Torture, as well as the Optional Protocol to the Convention on the Rights of Persons with Disabilities ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Take the necessary measures to ensure sexual assault perpetrated by a spouse is explicitly covered by the criminal code and educate chiefs and other customary law practitioners so that their decisions are in line with constitutional law, particularly with respect to marriage and property rights ", - "values": [ - "4 - General action" - ] - }, - { - "text": "In conclusion, the head of delegation reconfirmed the Government's commitment and full respect of international standards of human rights and its commitment to cooperation with international mechanisms and civil society organizations. ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Consistent with article 87 of the Labour Code, proceed with the creation of a distinctive equality mark that encourages enterprises to promote a policy of equal pay for men and women", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Develop a national strategy to tackle modern slavery and ratify the 2014 Protocol to the Forced Labour Convention of the International Labour Organization", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Continue conducting more awareness and sensitizations programmes regarding minority groups with the aim to changing the stereotype and negative perception of these groups in the long run ", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Pursue efforts to combat domestic violence, and to place particular emphasis on the implementation of an awareness-raising training policy aimed at contributing to changes in behaviour and of attitudes", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Put in place legislation that protects children from labour exploitation through a minimum working age, consistent with its international legal obligations", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Take specific and effective measures including legislative action required in order to ensure respect for freedom of expression and the press in accordance with international standards ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Ensure regular inspection of harvesting practices to monitor and guarantee full compliance with international child labour standards.", - "values": [ - "4 - General action" - ] - }, - { - "text": "Ensure adequate allocation of resources towards court infrastructure and capacity-building in the Judiciary", - "values": [ - "4 - General action" - ] - }, - { - "text": "Repeal all provisions of domestic law that criminalise same sex relations between consenting adults including the Sexual Offences Act", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Explore the possibility of strengthening the institutional and operational capacity of the Office of the Ombudsman by allocating human and financial resources ", - "values": [ - "3 - Considering action" - ] - }, - { - "text": "Take actions to combat racism, xenophobia, and religious intolerance and hatred ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Ensure that incarcerated minors are detained separately from adults", - "values": [ - "4 - General action" - ] - }, - { - "text": "Adopt legislation for fighting discrimination, in particular discrimination against women, and include mechanisms for effective protection and access to legal remedies", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Continue further improvement of human rights in the country", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Strengthen the roles of judges and defence lawyers in the criminal procedure, and to guarantee full access for defendants to the legal counsel of their choice", - "values": [ - "4 - General action" - ] - }, - { - "text": "Carry out a large awareness campaign among the population to change the mindset of those groups which resist women's emancipation and perpetuate practices and customs contrary to human rights", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Ensure that migrant women can seek protection from domestic violence and halt deportation procedures in this context", - "values": [ - "4 - General action" - ] - }, - { - "text": "Continue its efforts and take measures to guarantee protection of human rights of indigenous persons and increasingly vulnerable persons", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Adopt a national legislation on child protection and further strengthen its regional partnerships to complement national efforts to safeguard the rights of the child", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Continue its efforts to promote multicultural and racial tolerance through initiatives such as the Australian Multicultural Advisory Council and the Diversity and Social Cohesion Programme ", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "The Government of Bosnia and Herzegovina and the cantons introduce a truly inclusive multi-ethnic educational system and launch an efficient coordination mechanism on education", - "values": [ - "4 - General action" - ] - }, - { - "text": "Respond positively, as soon as possible, to unanswered requests for visits by special procedures rapporteurs", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Enhance the fight against domestic and gender-based violence, strengthen protection mechanisms for victims of domestic violence and adopt a comprehensive domestic violence law putting in place effective prevention and protection mechanisms", - "values": [ - "4 - General action" - ] - }, - { - "text": "Take concrete measures to abolish self-defence militias, to maintain order through regular security forces and to facilitate the end of forced child recruitment by all armed groups.", - "values": [ - "4 - General action" - ] - }, - { - "text": "Consider the timely ratification of the major international human rights instruments, including the International Covenant on Economic, Social and Cultural Rights (ICESCR), the International Covenant on Civil and Political Rights (ICCPR) and the Convention against Torture and Other Cruel, Inhuman or Degrading Treatment or Punishment (CAT)", - "values": [ - "3 - Considering action" - ] - }, - { - "text": "Invite the Special Representative of the Secretary-General on the situation of human rights defenders to conduct an independent visit to Pakistan.", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Involve meaningfully civil society in the process of the preparation of the planned law on protection against domestic violence.", - "values": [ - "4 - General action" - ] - }, - { - "text": "Consider ratifying the Rome Statute of ICC", - "values": [ - "3 - Considering action" - ] - }, - { - "text": "Pursue the efforts undertaken by the Government under the Vision 2020 plan ", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Take necessary steps for prevention of violence against children and promotion and protection of women's rights especially combating trafficking in women", - "values": [ - "4 - General action" - ] - }, - { - "text": "Ratify and implement the Optional Protocol to the Convention on the Rights of the Child on the involvement of children in armed conflict", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Consider acceding to ICERD, OP-CRC-SC and CRPD", - "values": [ - "3 - Considering action" - ] - }, - { - "text": "Adopt and implement necessary legislation for the protection of human rights defenders in Guatemala, while acknowledging the efforts made in this area, but requesting to continue implementing legislation in that respect", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Consider enacting specific legislation prohibiting and punishing violence against children", - "values": [ - "3 - Considering action" - ] - }, - { - "text": "Eliminate legal sanctions against consensual sexual acts between adults in private ", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Ratify the Optional Protocol to the International Covenant on Economic, Social and Cultural Rights ", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Take further measures to improve the treatment of asylum-seekers and to ensure that deportation processes are carried out after exhaustion of legal remedies ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Maintain and further build upon its HIV/AIDS prevention, care and treatment programmes ", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Start awareness campaigns aimed at protecting certain persons and certain groups against stereotyping that associates them with terrorism and to envisage an amendment to the anti-terrorism law to improve a specific clause against discrimination, and to amend relevant legislation or to adopt legislation to criminalise acts of racist violence, consistent with article 4 of ICERD", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Continue with its sound social programmes and plans undertaken to satisfy the most basic needs of people living in extreme poverty, including food, education, housing, health and work.", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Consider acceding to CAT", - "values": [ - "3 - Considering action" - ] - }, - { - "text": "Following the recommendation of Mexico during the previous cycle regarding the systematic abolition of the detention of migrants and asylum seekers, adopt measures to implement the recommendations of the Office of the United Nations High Commissioner for Refugees and ensure that the access to justice for foreigners does not have negative consequences regarding their stay in the country, even in cases of acts based on xenophobia and racial discrimination", - "values": [ - "4 - General action" - ] - }, - { - "text": "Intensify its efforts to sign and ratify international human rights instruments to which it is not yet a party, particularly those which it committed to sign and ratify", - "values": [ - "4 - General action" - ] - }, - { - "text": "Amend the Constitution to prohibit discrimination against persons with disabilities.", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Ensure the effective implementation, including by ensuring disaggregated data, effective public policies and necessary resource allocation, of the national plan of action for prevention, assistance and eradication of violence against women 2017-2019", - "values": [ - "4 - General action" - ] - }, - { - "text": "Incorporate human rights and the needs for their implementation and funding in its National Development Strategy", - "values": [ - "4 - General action" - ] - }, - { - "text": "Continue deploying efforts to combat employment discrimination", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Bring its national legislation into conformity with its commitment to equality and non-discrimination, by repealing the provision in the Penal Code to criminalize sexual relations between consenting adults of the same sex", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Issue a standing invitation to the HRC special procedures mandate holders ", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Implement the cessation of hostilities agreement to achieve a full, comprehensive ceasefire which will provide the grounds for improving human rights", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Implement constitutional reform prohibiting the death penalty and in the meantime a moratorium for an indefinite period be adopted in line with international and African trends ", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Adopt a specific law for domestic violence, containing both criminal and civil provisions ", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Establish a moratorium in order to abolish the capital punishment, and change those sentences to imprisonment and ratify the Second Optional Protocol to ICCPR ", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Introduce measures to ensure judicial independence, including through the establishment of an independent regulatory commission or body to oversee the appointment and removal of members of judiciary", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Intensify the fight against sexual violence and the prosecution and punishment of those responsible ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Improve the struggle against poverty, improve the fate of individuals and communities fighting for access to land in rural zones, and protect them against evictions, intimidations, threats and killings ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Continue its efforts in combating corruption", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Review its restrictive interpretation of therapeutic abortion and decriminalisation of abortion in cases of rape, as recommended by CEDAW", - "values": [ - "3 - Considering action" - ] - }, - { - "text": "Use all appropriate ways and means to further develop and strengthen a culture of human rights, create more human rights capacity-building, and promote human rights public awareness-raising, with a view to the better promotion and protection of all human rights and fundamental freedoms in society at large.", - "values": [ - "4 - General action" - ] - }, - { - "text": "Take an active stance in combating and raising awareness against racism and intolerant political rhetoric and strengthen legal and other measures to address bias-motivated crimes", - "values": [ - "4 - General action" - ] - }, - { - "text": "Continue measures to prevent, investigate and prosecute domestic violence offences and strengthen victim care", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Promote the inclusion in the Constitution and national legislation of the definition of discrimination against women, as well as the principle of equality between men and women ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Allocate adequate human and material resources to the national human rights commission", - "values": [ - "4 - General action" - ] - }, - { - "text": "Undertake a legislative review aimed at eliminating all forms of discrimination against women, particularly in relation to the Penal Code and inheritance laws ", - "values": [ - "3 - Considering action" - ] - }, - { - "text": "Guarantee fully the rights to freedom of assembly and association and ensure that the alleged perpetrators of human rights violations in this context are brought to justice", - "values": [ - "4 - General action" - ] - }, - { - "text": "Expedite the approval of the new statute of the CNDHC and distribute it widely", - "values": [ - "4 - General action" - ] - }, - { - "text": "Continue to promote gender equality and women\u2019s involvement in politics and public service", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Take steps to ensure that vulnerable groups, especially children with disabilities, continue to gain access to free education in an inclusive learning environment", - "values": [ - "4 - General action" - ] - }, - { - "text": "Enforce laws which further ensure the integration and socioeconomic participation of Afro-Panamanians and other people of African descent", - "values": [ - "4 - General action" - ] - }, - { - "text": "Continue its efforts in fighting corruption and allocate sufficient funding for the implementation of its newly enacted law on combating corruption", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Establish a moratorium on the application of the death penalty aimed at its abolition and also condone the death penalty for an Argentinian citizen, Victor Saldano, who has been on death row since 1996", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Toughen liability for sexual abuse, exploitation and child trafficking", - "values": [ - "4 - General action" - ] - }, - { - "text": "Ensure free access to information", - "values": [ - "4 - General action" - ] - }, - { - "text": "Establish the Ombudsman as an autonomous body under public law and its full use for the protection of human rights", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Implement measures to ensure that persons with disabilities are enabled to participate in job training, vocational training, literacy and numeracy programmes and set concrete targets measurable within one year to this effect, in consultation with persons with disabilities and their representative organizations ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Share its experiences and best practices with other countries in the area of poverty eradication, especially in developing small and medium-sized enterprises", - "values": [ - "1 - Minimal action" - ] - }, - { - "text": "Roll out the necessary measures for the oversight of activities of psychiatric hospitals and prayer camps in conformity with CRPD", - "values": [ - "4 - General action" - ] - }, - { - "text": "Step up efforts to combat all forms of discrimination towards women, in particular by re-examining its reservations to the Convention on the Elimination of all Forms of Discrimination against Women, with a view to withdrawing them", - "values": [ - "4 - General action" - ] - }, - { - "text": "Continue to play an effective and positive role at the regional and international levels ", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Examine the possibility of acceding to the two fundamental international human rights covenants, and request technical assistance from OHCHR in order to fulfil the obligations that this would entail ", - "values": [ - "3 - Considering action" - ] - }, - { - "text": "Review its legislative measures and practices in relation to freedom of peaceful assembly and association, with regard to the report of the United Nations Special Rapporteur on the rights to freedom of peaceful assembly and of association following his mission in September 2014", - "values": [ - "3 - Considering action" - ] - }, - { - "text": "Enhance efforts to combat discrimination against minority groups in the country, by effectively investigating and adequately punishing any racially motivated conduct", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Ensure equal rights and opportunities for women and girls", - "values": [ - "4 - General action" - ] - }, - { - "text": "Adopt legislation that prohibits discrimination on the basis of sexual orientation and gender identity", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Enhance the efforts to combat child labour and ensure that children do not work in hazardous labour conditions, including artisanal (informal) mines", - "values": [ - "4 - General action" - ] - }, - { - "text": "Further continue internal consultations and request the technical assistance of relevant UN institutions with regards to the accession to the core international human rights treaties ", - "values": [ - "1 - Minimal action" - ] - }, - { - "text": "Consider ratifying the treaties to which it is not a party, including the CEDAW, CRC, ICESCR, and CRPD", - "values": [ - "3 - Considering action" - ] - }, - { - "text": "Continue the constructive steps taken in the promotion and protection of human rights", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Strengthen public education, awareness and capacity building programmes on human rights", - "values": [ - "4 - General action" - ] - }, - { - "text": "Continue efforts to develop policies and programmes to reduce malnutrition throughout the country, in particular by improving school meal programmes ", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Continue to protect the rights of women and promote their empowerment", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Ensure that all those responsible for violations of human rights, including the right to life, liberty and security, be brought to justice", - "values": [ - "4 - General action" - ] - }, - { - "text": "Adopt measures to guarantee women's equality under the law", - "values": [ - "4 - General action" - ] - }, - { - "text": "Provide access to clean and modern energy to all its people and develop climate-friendly green cities", - "values": [ - "4 - General action" - ] - }, - { - "text": "Fully investigate alleged elections irregularities and ensure proper due process is followed in all court challenges", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Enhance its efforts in order to promote women's participation especially in political life ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Accept the visits of the Country Rapporteur and thematic Rapporteurs on the independence of judges and lawyers and on freedom of religion as well as the Representative of the Secretary-General on internally displaced persons ", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Consider the ratification of the Convention on the Rights of Persons with Disabilities and the realization of human rights goals approved in resolution 9-12 of the Human Rights Council ", - "values": [ - "3 - Considering action" - ] - }, - { - "text": "Reform the judicial system to provide rehabilitation to youth offenders and implement the Juvenile Justice and Welfare Act", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Fully align its national legislation with the Rome Statute of the International Criminal Court (ICC) and the Kampala Amendments, including by incorporating provisions to cooperate promptly and fully with the ICC and to investigate and prosecute genocide, crimes against humanity and war crimes effectively before its national courts ", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Improve prison conditions in all detention centres by developing and implementing a strategy to end the current overcrowding in prisons, as accepted in the 2011 review by, inter alia, restricting the use of pre-trial detention, developing alternative forms of punishment, as well as ensuring access to sufficient food and drinkable water, adequate sanitary facilities and medical treatment", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Take the measures necessary to combat violence against women, including the criminalization of domestic violence and marital rape", - "values": [ - "4 - General action" - ] - }, - { - "text": "Sign and ratify the Optional Protocol to the Convention against Torture and Other Cruel, Inhuman or Degrading Treatment or Punishment as well as ratify the Convention on the Rights of Persons with Disabilities \n", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Deepen awareness measures against racial discrimination and xenophobia, particularly by criminalizing behaviors such as incitement to hatred", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Increase its efforts for more attention to child issues", - "values": [ - "4 - General action" - ] - }, - { - "text": "Ratify the 1951 Convention relating to the Status of Refugees", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Continue cooperation with United Nations mechanisms for the promotion and protection of human rights", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Accede to the First OP to the ICCPR", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "In accordance with article 54 of its Constitution, stop using the preventive detention orders by prosecutors as a measure to punish or to prolong the incarceration of activists and protestors", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Ratify and implement other international human rights treaties and their protocols, as previously recommended", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Carry out impartial investigations into all allegations of enforced disappearances perpetrated by law enforcement officers", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Continue its endeavours to combat poverty and achieve prosperity", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Continue its efforts to eradicate child labour and ensure access to quality education for all children ", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Respect freedom of the media and ensure the safety of journalists", - "values": [ - "4 - General action" - ] - }, - { - "text": "Continue efforts to increase the number of neighbourhood primary and secondary schools, and to strengthen higher education", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Take effective measures to strengthen and guarantee the independence and impartiality of the judiciary, including by adopting safeguards to prevent irregular dismissals and appointments", - "values": [ - "4 - General action" - ] - }, - { - "text": "Further promote children's right to education ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Establish a legal and institutional framework consistent with the international standards on combating the trafficking of persons to effectively address this problem", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Adopt integrated local development plans to improve the living conditions and living standards of vulnerable populations", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Take action to ensure that Palestinians are fully able to enjoy their economic, social and cultural rights.", - "values": [ - "4 - General action" - ] - }, - { - "text": "Continue carrying out its sound public policies for literacy and use of technological education, recognized and awarded by UNESCO, which benefit especially low economic income populations", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Continue training and capacity building for judges and specialists to deal with vulnerable persons", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Improve the coverage and quality of health services and set up the national action plan on persons with disabilities", - "values": [ - "4 - General action" - ] - }, - { - "text": "Strengthen law enforcement in order to provide adequate protection, guarantee the minimum wage and work safety, and to ensure equal access to health services and justice for migrant workers", - "values": [ - "4 - General action" - ] - }, - { - "text": "Share best practices with other countries regarding female genital mutilation and continue efforts to fully eradicate it.", - "values": [ - "1 - Minimal action" - ] - }, - { - "text": "Accede to the Optional Protocol to the Convention against Torture (OPCAT) and establish its national protective mechanism accordingly", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Continue to implement legislation recognizing equal rights for same-sex couples", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Take all the necessary measures to ensure the security of the people and their property", - "values": [ - "4 - General action" - ] - }, - { - "text": "Continue its efforts to ensure the protection of children's rights, including by fully implementing the 2012 federal justice for adolescents act and considering implementing of restorative justice system", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Broadly share the experience regarding the formulation and implementation of the second National Action Plan for Human Rights ", - "values": [ - "1 - Minimal action" - ] - }, - { - "text": "Take further action to improve living conditions in places of detention.", - "values": [ - "4 - General action" - ] - }, - { - "text": "Continue efforts to promote gender equality and women\u2019s political, social and economic empowerment", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Issue a standing invitation to the special procedures", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Further measures to eliminate the underrepresentation of women in decision-making roles, particularly in the political arena and as members of corporate boards", - "values": [ - "4 - General action" - ] - }, - { - "text": "Continue to work towards informing interested countries about the experience of Bait al-Zakat in the humanitarian field, which aims at reducing the suffering of persons and families in need ", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Consider acceding to the International Convention on the Protection of the Rights of All Migrant Workers and Members of Their Families (ICRMW)", - "values": [ - "3 - Considering action" - ] - }, - { - "text": "Ratify the Rome Statute of ICC, while welcoming the fact that the possibility is currently under analysis", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Accelerate the conclusion of investigations regarding applications on the conduct of elections by the Election Commission and other relevant authorities", - "values": [ - "4 - General action" - ] - }, - { - "text": "Ensure that cases of violence against women are investigated, perpetrators prosecuted and victims awarded reparation", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Further strengthen law enforcement and the judicial system in the effort to address impunity and prevent trafficking and domestic violence, as well as the sexual abuse of women and girls", - "values": [ - "4 - General action" - ] - }, - { - "text": "Amend article 33 of the Constitution and order 237 on the police force to ensure that its interpretation does not allow the lethal use of force by the security forces in circumstances other than those enshrined in international law, and developed in the United Nations basic principles on the use of force and firearms by officials", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Continue its efforts to promote gender equality, and greater participation of women in the public and private sectors.", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Devote attention to the education of children and take measures to reduce the rate of dropouts from school ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Protect religious freedom by allowing individuals to practise their religion freely, and provide religious organizations equal opportunities to obtain legal status ", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Strengthen the judicial system through financial support and effective anti-corruption measures", - "values": [ - "4 - General action" - ] - }, - { - "text": "Increase its policing capacity and enhance judicial reforms to enable it to better fight organized crime and human trafficking", - "values": [ - "4 - General action" - ] - }, - { - "text": "Establish a moratorium on executions and ratify the ICCPR-OP 2, aiming at abolition of the death penalty ", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Provide greater support for poor families and children and reduce social inequality", - "values": [ - "4 - General action" - ] - }, - { - "text": "Ratify the Protocol to Prevent, Suppress and Punish Trafficking in Persons", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Strengthen its efforts aimed at enhancing human rights awareness to all sectors of the society ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Adopt legislation and policies to promote greater participation of women in political life and representative bodies", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Fully involve civil society in the follow-up to the UPR process at the national level", - "values": [ - "4 - General action" - ] - }, - { - "text": "Take effective measures to establish a functioning justice system with an independent judiciary and work to end the culture of impunity for perpetrators of torture and ill-treatment ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Work constructively with all religious communities to address undue constraints on designated places of worship, training of clergy, and lack of legal personality ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Apply the Yogyakarta Principles as a guide for new policies in the area of lesbian, gay, bisexual and transgender rights.", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Give serious consideration to the ratification of the Convention on the Rights of Persons with Disabilities.", - "values": [ - "3 - Considering action" - ] - }, - { - "text": "Translate the de-facto moratorium on the death penalty into binding law, with a view to completely abolish the death penalty altogether", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Eliminate all forms of sexual exploitation and violence, including domestic violence, with a view to avoid trafficking of persons, and implement legal measures to investigate complaints, bring perpetrators of sexual crimes and violence to justice and punish them ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Improve prosecution of all allegations of torture as well as conditions in detention and prison facilities and strengthen legal safeguards available to victims of torture", - "values": [ - "4 - General action" - ] - }, - { - "text": "Introduce a moratorium on the use of the death penalty and work towards its abolition, including by ratifying the Second Optional Protocol to the International Covenant on Civil and Political Rights", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Consider withdrawing the remaining reservations to international human rights instruments to which it is a party (namely to the CRC, ICCPR, OP-CRC-SC, CEDAW)", - "values": [ - "3 - Considering action" - ] - }, - { - "text": "Take the necessary steps to prohibit employers from withholding their foreign workers' passports, travel documents, and work permits as well as to improve access to comprehensive and affordable health services", - "values": [ - "4 - General action" - ] - }, - { - "text": "Complete Israeli's withdrawal from all occupied Palestinian and Arab territories", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Develop a new human rights action plan under the auspices of the New Zealand Human Rights Commission ", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Take firm measures to prevent and stop the recurrence of 'witch hunts'", - "values": [ - "4 - General action" - ] - }, - { - "text": "With the support of relevant international organizations, continue to implement policies to enhance gender equality and the domestic framework to protect the rights of women and children", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Expand social programmes for the promotion of youth employment", - "values": [ - "4 - General action" - ] - }, - { - "text": "Consider widening the criminal legislation, not only criminalizing cases of femicide, but also all cases of violence against women", - "values": [ - "3 - Considering action" - ] - }, - { - "text": "Take necessary measures to increase the percentage of women in decision-making positions", - "values": [ - "4 - General action" - ] - }, - { - "text": "Continue working with the international donor community to work with Tanzania on capacity building measures to as to ensure education for all ", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Accede to the international human rights instruments, in particular the International Covenant on Civil and Political Rights", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Ensure that legal advice services are available inside the asylum-seeker and irregular migrant closed detention centres ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Within the framework of the policy on promoting tolerance, strengthen measures towards interethnic harmony and cultural diversity ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Ensure that detainees in pretrial detention are separated from persons convicted by final judgement", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Take concrete steps for the elimination of all forms of discrimination against minorities", - "values": [ - "4 - General action" - ] - }, - { - "text": "Bring conditions of detention in line with international standards, in particular to reduce overcrowding and promote non-custodial measures ", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Ensure that the Family Protection Act is implemented, including by establishing clear policies requiring authorities in all regions to investigate fully cases of family violence and violent attacks against persons alleged to be sorcerers, and by ensuring that perpetrators are brought to justice", - "values": [ - "4 - General action" - ] - }, - { - "text": "Adopt further measures to ensure that the use of pre-trial detention complies with international standards and to rationalize the system of inspection of prisons and of processing of complaints in cases of alleged mistreatment or torture", - "values": [ - "4 - General action" - ] - }, - { - "text": "Continue targeted policies and initiatives to encourage greater participation of women in the electoral process", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Strengthen the national framework to reduce all kinds of discrimination", - "values": [ - "4 - General action" - ] - }, - { - "text": "Define and prohibit in Armenian legislation, in an explicit and comprehensive manner, discrimination against women and gender-based violence, and adopt social awareness measures ", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Provide legal remedies and assistance for victims of trafficking in persons", - "values": [ - "4 - General action" - ] - }, - { - "text": "Strengthen measures to combat racial discrimination, in particular against Portuguese citizens of African descent ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Take steps to improve its ability to prevent torture ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Set up a national programme to fight violence against women, especially domestic violence", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Ratify CED and fully recognize the competence of the Committee on Enforced Disappearances ", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Accelerate the implementation of its national human rights action plan, and continue strengthening the human rights institutional frameworks", - "values": [ - "4 - General action" - ] - }, - { - "text": "Guarantee the right to a fair trial by strengthening the independence of the Judiciary and by allowing detainees to freely consult a lawyer of their choice from upon arrest ", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Continue advancing in the promotion and protection of women's rights, with the consolidation of all institutional mechanisms and the application of the laws being launched", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Continue its efforts to strengthen and promote human rights", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Adoption of the draft Personal and Family Code and the bill on abolition of the death penalty", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Ratify the international human rights instruments to which it is not yet a party", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Take all necessary measures to ensure the effective enforcement of Law L010/AN/2000, with a view to the eradication of FGM, and to undertake additional awareness raising measures about the risks and harm associated with this practice as well as its prohibition", - "values": [ - "4 - General action" - ] - }, - { - "text": "Continue to regard maintaining social stability as its first priority, and make efforts to improve the people's living standards, providing necessary housing and medical care and increased educational opportunities, and improving electricity services, drinking water and the road network, and streamline the relationship between its domestic legislation and the international human rights instruments that it has signed by bringing its domestic legislation into line with the requirements of international law", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Further intensify its efforts to combat human trafficking and ensure protection to victims of human trafficking", - "values": [ - "4 - General action" - ] - }, - { - "text": "Pay more attention, at all administrative levels, to the rights of indigenous peoples, especially to ensure their land rights ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Become soon a Party to the core international Conventions on human rights that Malaysia has not ratified yet", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Withdraw the general reservation to CEDAW, thus facilitating the elimination of all forms of discrimination against women", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Prohibit corporal punishment in all settings, including the family", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Ensure the compliance of the Senegalese Human Rights Committee with the Paris Principles", - "values": [ - "4 - General action" - ] - }, - { - "text": "Implement necessary measures to put an end to the disproportionate use of force against individuals and respect the right of peaceful protest", - "values": [ - "4 - General action" - ] - }, - { - "text": "Continue to develop appropriate prison facilities for women, in accordance with the UN's Standard Minimum Rules for the Treatment of Female Prisoners and Non-Custodial Measures for Women Offenders", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Ratify the International Convention for the Protection of All Persons from Enforced Disappearances, the Convention against Torture and other Cruel, Inhuman or Degrading Treatment or Punishment, and the Rome Statute of the International Criminal Court ", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Continue efforts to reinvigorate the national economy by, inter alia, allowing more freedom for people to engage in economic and commercial activities ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Consider withdrawing reservations to the core international human rights instruments, in particular to the Second Optional Protocol to ICCPR ", - "values": [ - "3 - Considering action" - ] - }, - { - "text": "Improve conditions in detention facilities and prisons so that they meet international standards", - "values": [ - "4 - General action" - ] - }, - { - "text": "Create an environment of freedom of the media and encourage media outlets to project positive images of women and of the equal status and responsibilities of women and men in the private and public spheres", - "values": [ - "4 - General action" - ] - }, - { - "text": "Take the necessary constitutional measures to bring the Convention on the Rights of the Child into force", - "values": [ - "4 - General action" - ] - }, - { - "text": "Increase efforts to prevent and punish perpetrators of racially motivated acts of violence against members of the Roma/Sinti, Muslim, Jewish Communities, as well as German nationals of foreign origin ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Strengthen the measures to effectively fight violence against women", - "values": [ - "4 - General action" - ] - }, - { - "text": "Strengthen the efforts to reach a qualitative superior performance in the administration of justice ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Amend the Penal Code with provisions to prohibit FGM as soon as possible ", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Adjust national legislation with a view to incorporating domestically international and regional treaties ratified by the country", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Grant immediate access without obstacles to international humanitarian agencies, including WFP, as well as the Special Rapporteur on the right to food, in order to allow the resumption of necessary operations for food supply and to ensure that aid is distributed on the basis of the genuine needs of the people ", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Adopt further measures to reduce maternal morbidity and infant mortality ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Take action to improve prison conditions, in particular to improve the conditions of women's detention facilities in accordance with international standards, and ensure protection of human rights of all detainees, including guarantees of due process and protection against cruel and inhumane treatment ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Continue to adhere to the stipulations of the Ouagadougou Agreement and to its commitment to support and start elections on 27 June 2010 ", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Pay particular attention to protecting from discrimination and treating appropriately older persons in the society", - "values": [ - "4 - General action" - ] - }, - { - "text": "Uphold the rule of law, including human rights in domestic law, by immediately reinstating the 1997 Constitution", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Ensure that the administrative procedures and legislative provisions on citizenship do not put at a disadvantage persons of non-Croat ethnic origin ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Collect statistical data on cases of violence against women, including domestic violence as specific crime and finally establish shelters and safe housing for victims of domestic violence, that would be locally accessible, sufficiently and sustainably funded and of corresponding capacity", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Promote the situation of disabled persons and their working conditions ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Continue to make efforts to enhance the awareness among workers and employers on laws and rules on labour by implementing concrete programmes for awareness-raising", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Take measures to eliminate all forms of discrimination against Koreans", - "values": [ - "4 - General action" - ] - }, - { - "text": "Explicitly prohibit in law any form of corporal punishment or other cruel or degrading punishment of children in all settings", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Reply in a timely manner to all thematic special procedure communications", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Review the compliance of national legislation with its obligations from the Convention on the Elimination of All Forms of Discrimination Against Women CEDAW, and strengthen anti-discrimination legislation and programmes through explicit inclusion of grounds of sexual orientation and gender identity", - "values": [ - "3 - Considering action" - ] - }, - { - "text": "Provide budgetary and legal support to the Ombudsman for Human Rights in order to ensure its effectiveness and institutional independence", - "values": [ - "4 - General action" - ] - }, - { - "text": "Continue carrying out administrative and judicial reforms to prepare for the ratification of the ICCPR", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Take concrete measures to ensure gender equality in political life, including through the establishment of a quota system for Parliament and Ministries", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Consider criminalising domestic violence, sexual harassment and ensuring that perpetrators are duly prosecuted", - "values": [ - "3 - Considering action" - ] - }, - { - "text": "Ensure that all prisoners or detainees have access to legal counsel and relatives ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Strengthen the identification of human trafficking victims ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Guyana had voluntarily committed to hold consultations on 28 of the 55 recommendations. Those included recommendations on the abolition of the death penalty, on the abolition of corporal punishment, on the decriminalization of consensual same-sex adult sexual relations and on discrimination against lesbian, gay, bisexual and transgender (LGBT) persons, and on the age of criminality.", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Consider ratifying of the Convention on the Prevention and Punishment of the Crime of Genocide.", - "values": [ - "3 - Considering action" - ] - }, - { - "text": "Develop government programmes and strategies to prevent, investigate and punish human rights violations against women, in particular lesbian women, according to existing laws ratified by the State", - "values": [ - "4 - General action" - ] - }, - { - "text": "Establish an immediate moratorium on the use of the death penalty with a view to abolishing it", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Take comprehensive measures to increase the level of public security in the country", - "values": [ - "4 - General action" - ] - }, - { - "text": "Continue the fight against corruption and organized crime and ensure that perpetrators of these crimes do not remain unpunished", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Consider the establishment of the independent national human rights institution", - "values": [ - "3 - Considering action" - ] - }, - { - "text": "Ratify the Rome Statute of the ICC in its 2010 version, including the amendments on the crime of aggression, and review its national legislation in order to ensure full alignment with the Statute ", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Ensure prompt and effective investigation of intimidation and threats against journalists ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Consider acceding to the International Convention for Protection of All Persons from Enforced Disappearance", - "values": [ - "3 - Considering action" - ] - }, - { - "text": "Consider becoming a party to CRPD", - "values": [ - "3 - Considering action" - ] - }, - { - "text": "Bahrain is determined to strengthen its capacities in order to ensure: Timely submission of reports under these treaties [under the international human rights treaties which it has ratified and signed].", - "values": [ - "4 - General action" - ] - }, - { - "text": "Review and ease restrictions on Eritrean and international non-governmental organizations ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Work toward eliminating any loopholes in national legislation that might undermine the protection of women\u2019s rights and the principle of gender equality, including on domestic violence and marital rape", - "values": [ - "4 - General action" - ] - }, - { - "text": "Strengthen the national action plan for the protection of women and girls against gender based violence ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Take measures to guarantee full protection of children's human rights by rehabilitating the ex-combatants and eliminating and reducing, among others, child trafficking, child sexual abuse and violence against children", - "values": [ - "4 - General action" - ] - }, - { - "text": "Take the necessary measures to ensure that the National Human Rights Commission is in conformity with the Paris Principles", - "values": [ - "4 - General action" - ] - }, - { - "text": "Further strengthen its programmes and social policies, paying particular attention to the fields of education, health and nutrition, giving priority to the neediest sectors of the population", - "values": [ - "4 - General action" - ] - }, - { - "text": "Continue the consultation process to ratify the CRPD", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Law enforcement agencies will increase the number of training courses and workshops that they run on the protection and promotion of human rights.", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Ratify the Council of Europe Convention on Preventing and Combating Violence against Women and Domestic Violence (the Istanbul Convention)", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Refrain from all settlement activities in occupied territories", - "values": [ - "4 - General action" - ] - }, - { - "text": "Undertake a prompt and independent investigation into the extrajudicial killings related to the fight against illegal drugs and ensure accountability for perpetrators, as well as justice, remedy and reparations for victims and their families", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Enhance activities aimed at eliminating discrimination against women, which particularly affects women from lower castes", - "values": [ - "4 - General action" - ] - }, - { - "text": "Establish a police complaints authority with active work and necessary technical assistance from the international community", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Strengthen measures to counter the use of racial discrimination and Islamophobia discourse in politics and in the media", - "values": [ - "4 - General action" - ] - }, - { - "text": "Consider improving services at the Children's Houses further, including by providing shelter for all children below 18 years of age, enhancing training programmes for professionals working with and protecting children, and expediting cases within the 14-day statutory deadline ", - "values": [ - "3 - Considering action" - ] - }, - { - "text": "Continue to incorporate the provisions of the Convention on the Rights of the Child into domestic legislation, especially article 19(1), in relation to deep concerns about the corporal punishment of children", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Ratify the Rome Statute of the ICC to ensure accountability for, prevention of and justice for the victims of human rights violations", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Enable the Syrian citizens in the occupied Golan to visit their relatives in the motherland through the Al Quneitra crossing", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Take steps to expedite public access to information through the right to information bill ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Ensure legislation in the area of freedom of expression is in line with international standards, including by amending the Cyber Crime law and repealing the November 2012 Federal Legal Decree No. 5 on Cyber Crime", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Design and strengthen programmes to address human rights inequalities suffered by indigenous communities and afro-descendants", - "values": [ - "4 - General action" - ] - }, - { - "text": "Increase human rights training for law enforcement officials in response to reports of excessive use of force, notably in detention centres and holding areas for migrants.", - "values": [ - "4 - General action" - ] - }, - { - "text": "Establish without further delay a National Human Rights Institution, complying with the Paris Principles", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Ratify the Rome Statute as well as the Kampala Amendments to the Rome Statute", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Introduce proper identification for its law enforcement officials ", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Intensify national efforts to prevent and eliminate all manifestations of anti-Semitism and take resolute measures to condemn hate speech, including against Roma", - "values": [ - "4 - General action" - ] - }, - { - "text": "Increase efforts to control endemic diseases, which constitute the main reason for the high number of deaths among citizens ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Reiterates the recommendation for Poland to consider ratifying ILO Convention 189 on decent work for domestic workers ", - "values": [ - "3 - Considering action" - ] - }, - { - "text": "Consider signing-ratifying the remaining international human rights instruments, including ICERD and ICRMW ", - "values": [ - "3 - Considering action" - ] - }, - { - "text": "Review seriously all the comments and recommendations made during the review and clearly indicate in due time which recommendations it accepts and how it plans to implement them", - "values": [ - "3 - Considering action" - ] - }, - { - "text": "Sign and ratify the International Convention for the Protection of All Persons from Enforced Disappearance, Convention against Torture and Other Cruel, Inhuman or Degrading Treatment or Punishment and the Convention on the Elimination of All Forms of Discrimination against Women and its Optional Protocol ", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Continue consolidating the National Prevention Strategy to sanction all forms of exploitation, especially against women, to protect victims and provide them with assistance", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Protect independent journalists and the media against any intimidation or violence, including enforced disappearance", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Make efforts aimed at preparing further National reports for future UPR cycles well in advance", - "values": [ - "4 - General action" - ] - }, - { - "text": "Call on the international community to provide economic and technical assistance to Turkmenistan to allow it to implement a strategy for economic, political and cultural development until 2020.", - "values": [ - "1 - Minimal action" - ] - }, - { - "text": "Broaden criminal legislation regarding racist acts by considering racist motivations of criminal offences as an aggravating circumstance at the time of sentencing.", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Explicitly prohibit corporal punishment of children in all settings, including the home and detention facilities ", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Implement and adequately fund the National Plan for the Prevention of Domestic Violence and Violence against Women", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Restrict the application of the death penalty to the most serious crimes according to international minimum standards.", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Implement measures to improve education by way of quality standards and criteria", - "values": [ - "4 - General action" - ] - }, - { - "text": "Cooperate with the Human Rights Committee and submit its State report as required ", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Following the parliamentary elections held on 29 October 2016, implement the constitutional reforms approved by the people of Iceland at the 2012 referendum", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Implement measures to permit State-owned media to operate independently and at arm's length from government ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Take steps to facilitate access to education, health and housing for the Roma community ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Develop appropriate policies and targeted measures in ensuring genuine equality in accordance with the recommendation of the Committee on Economic, Social and Cultural Rights ", - "values": [ - "4 - General action" - ] - }, - { - "text": "End all limitations on participation of non-Muslim Turkish citizens in the organized life of their communities and enjoyment of their cultural and religious heritage", - "values": [ - "4 - General action" - ] - }, - { - "text": "Ratify the Optional Protocol to the International Covenant on Civil and Political Rights ", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Correctly address the root causes of racial discrimination and eliminate the frequently occurred excessive use of force by law enforcement against of African Americans and other ethnic minorities", - "values": [ - "4 - General action" - ] - }, - { - "text": "Continue the existing strengthening of the legal and institutional framework to combat racial discrimination and prejudice ", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Continue its efforts with a view to the prevention and elimination of trafficking in human beings ", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Tackle advocacy of religious hatred including that which constitutes incitement to discrimination, hostility or violence in political discourse and in the media", - "values": [ - "4 - General action" - ] - }, - { - "text": "Reinforce the judicial system which ensures that serious human rights perpetrators are brought to justice", - "values": [ - "4 - General action" - ] - }, - { - "text": "Formulate a national plan to address violence against children that will include aspects of prevention, care and reparations as well as launch public awareness programmes on child abuse ", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Make greater efforts to implement national measures to ensure the reconciliation of work and family responsibilities in order to improve women\u2019s participation in the labour market", - "values": [ - "4 - General action" - ] - }, - { - "text": "Ratify CRC and its Optional Protocols ", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Establish a national human rights institution", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Place a greater focus on the issue of erased persons in the forthcoming period, given the long period of time for which those people have awaited a solution to the problem", - "values": [ - "4 - General action" - ] - }, - { - "text": "Improve the access to lawyers and the level of access of lawyers to documents of the criminal cases in order to ensure the right to fair trial ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Keep under consideration the possible ratification of the International Covenant on Economic, Social and Cultural Rights, the International Convention on the Elimination of All Forms of Racial Discrimination and the International Convention on the Protection of the Rights of All Migrant Workers and Members of Their Families. ", - "values": [ - "3 - Considering action" - ] - }, - { - "text": "Guarantee immediate and unhindered humanitarian access to populations in need throughout the country and ensure the protection of the civilian population, including of persons in vulnerable situations", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Pass a law ending the illegal circulation of firearms and take measures required to protect the right to life of citizens ", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Investigate and bring to justice all perpetrators of human rights violations at the earliest", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Continue activities to increase access for children to education, promote maternal and infant health, and eradicate trafficking in persons ", - "values": [ - "3 - Considering action" - ] - }, - { - "text": "Strengthen the efforts to resolve the political crisis of the country and address, with the assistance of the international community, the issue of insecurity", - "values": [ - "4 - General action" - ] - }, - { - "text": "Continue to ensure that the laws at the provincial and national levels are consistent with international human rights law standards, and are effectively implemented", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Improve, as a matter of urgency, conditions in prisons and detention centres, in particular inmates' access to food, medical care and overcrowding", - "values": [ - "4 - General action" - ] - }, - { - "text": "Consider ratifying the International Convention on the Protection of the Rights of All Migrant Workers and Members of Their Families and the Convention against Torture and Other Cruel, Inhuman or Degrading Treatment or Punishment", - "values": [ - "3 - Considering action" - ] - }, - { - "text": "Take actions to lessen the economic and social effects which have been the outcome of the Ebola epidemic", - "values": [ - "4 - General action" - ] - }, - { - "text": "Continue efforts to reform the public education system and improve the quality of public education to achieve equal opportunities between social classes", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Consider the accession to the Second Optional Protocol to the International Covenant on Civil and Political Rights, aiming at the abolition of the death penalty", - "values": [ - "3 - Considering action" - ] - }, - { - "text": "Take measures to increase the participation of women in public life, both in terms of legislation and in terms of concrete action", - "values": [ - "4 - General action" - ] - }, - { - "text": "Accelerate programs aimed at job creation, particularly for young people", - "values": [ - "4 - General action" - ] - }, - { - "text": "Consider the possibility of ratifying the Convention on the Protection of all Persons against Enforced Disappearances", - "values": [ - "3 - Considering action" - ] - }, - { - "text": "Consider instituting programmes to further facilitate migrants' access to basic social services and just conditions of work ", - "values": [ - "3 - Considering action" - ] - }, - { - "text": "Request necessary technical assistance to build its capacity to deal with the issues and challenges faced in the fields of education, infrastructure, health, housing, agriculture, and ensuring food security ", - "values": [ - "1 - Minimal action" - ] - }, - { - "text": "Establish a NHRI in accordance with the Paris Principles.", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Prioritize the implementation of a plan of action to combat the sale of children and child prostitution", - "values": [ - "4 - General action" - ] - }, - { - "text": "Adopt and implement the previous recommendations of the Human Rights Council and its Special Rapporteurs, and grant access to special procedures mandate holders ", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Continue the implementation of measures aimed at fighting poverty as well as enhancing the general well-being of its citizens by ensuring their economic and social rights ", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Ensure the prevention and effective investigation of forced disappearances of and violence against women", - "values": [ - "4 - General action" - ] - }, - { - "text": "Regularly report to the treaty bodies and specifically with regard to the Committee on the Elimination of Discrimination against Women.", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Allocates sufficient resources to improve the geographic accessibility of schools", - "values": [ - "4 - General action" - ] - }, - { - "text": "Continue the ratification of international legal instruments on human rights which it is not yet a party to, in order to bring its legislation in line with universally acceptable standards", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Continue strengthening the legal framework and building institutions in the area of security, law enforcement, and judiciary, in accordance with the rights-based approach and not bringing civilians before military courts", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Proceed with a revision of national legislation to make the equality between men and women a reality", - "values": [ - "3 - Considering action" - ] - }, - { - "text": "Continue implementing the second national human rights action plan ", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Intensify employment programs for youth", - "values": [ - "4 - General action" - ] - }, - { - "text": "Allocate adequate funding to strengthen the State level Human Rights Ombudsman and allow early implementation of Venice Commission recommendations", - "values": [ - "4 - General action" - ] - }, - { - "text": "Further enhance and strengthen the work of the ASEAN Intergovernmental Human Rights Commission to effectively promote and protect the human rights and fundamental freedoms of the peoples of ASEAN \n", - "values": [ - "4 - General action" - ] - }, - { - "text": "Intensify efforts in order to reach universal water coverage as well as signing and ratifying the Optional Protocol to the ICESCR ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Remove discriminatory provisions of the "Protection of Race and Religion Law"", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Subscribe to the Optional Protocol to ICESCR", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Take measures to promote a safe and enabling environment for journalists to perform their work independently and without undue interference ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Take all possible measures to prevent the recruitment of children and the use of child combatants by the Taliban.", - "values": [ - "4 - General action" - ] - }, - { - "text": "Strengthen its cooperation with United Nations human rights mechanisms, including by extending a standing invitation to all thematic Special proceduress ", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Translate the de facto moratorium on the death penalty into a formal moratorium on executions with a view to abolishing the death penalty, sign and ratify ICCPR's second protocol, and commute without delay all death sentences to terms of imprisonment", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Continue its current efforts to provide sustainable health care that is effective, efficient, accessible, acceptable and affordable to all citizens ", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Establish a permanent independent human rights monitoring body.", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Develop awareness-raising campaigns and ensure that information is readily available to victims of female genital mutilation", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Report regularly to the Committee on the Elimination of Discrimination against Women. to recruit more women for public office and to adopt measures requiring equal pay for equal work.", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Revise the Penal Code in order to bring it into line with international standards and Cambodia's obligations under the International Covenant on Civil and Political Rights ", - "values": [ - "3 - Considering action" - ] - }, - { - "text": "Place high on the agenda the human rights of indigenous peoples when addressing questions of impunity, and improve access to justice for indigenous peoples, including by strengthening public defense for indigenous peoples and providing better translation services", - "values": [ - "4 - General action" - ] - }, - { - "text": "Make further efforts towards safeguarding the freedom of expression of all citizens", - "values": [ - "4 - General action" - ] - }, - { - "text": "Undertake effective and impartial investigations into all reports of extrajudicial executions, torture, other ill-treatment and violence, to bring to justice those suspected of criminal responsibility and to ensure that human rights of the whole population are being protected, especially those of most vulnerable groups, including women and children", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Continue the work in the field of the promotion of the rights of women and adopt all the recommendations made by the Truth and Reconciliation Commission in this area ", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Publish a list of all detainees in places under its control, together with information on the grounds for their detention", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Adopt a school feeding programme and integrate it with the local agricultural production ", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Further strengthen the field of economic, social and cultural rights, in order to improve the living conditions of the people and to this end, the support and solidarity of the community of nations is important", - "values": [ - "4 - General action" - ] - }, - { - "text": "Adopt and implement, in the short term, the project of a constitutional amendment on the Charter on Rights and Freedoms, bearing in mind the extensive legislative work that has been carried out in this regard ", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Establish an official moratorium on the use of the death penalty with a view to abolition ", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Strengthen efforts to empower women by amending legislation that discriminates against women in matters of polygamy, inheritance and child custody, and put legislation in place regarding domestic violence, rape, including marital rape, and other forms of sexual and gender-based violence", - "values": [ - "4 - General action" - ] - }, - { - "text": "Step up efforts to establish a mechanism to monitor measures to help address and ameliorate the conditions of women and children", - "values": [ - "4 - General action" - ] - }, - { - "text": "Cameroon stated that for each accepted or rejected recommendations, it has made clear, precise and realistic commitments. For instance, regarding the issue of homosexuality, Cameroon was committed not to aggravate current criminal penalties, to continue to apply legal provisions, guarantee a fair trial to alleged homosexuals, and continue not to apply any discriminatory measure against them. Regarding the issue of freedom of expression, Cameroon was committed to strengthen the professionalism of journalists, continue to allocate public subsidy to the private media, strengthen the capacity of journalists and human rights defenders in the area of ethics and professional code of conduct, continue to promote freedom of expression and respect the outspokenness of the media, continue to apply measures applicable to press card holders in order to protect the State, and support the mission of the Special Rapporteur on the situation of human rights defenders to take place in Cameroon in October 2013.", - "values": [ - "4 - General action" - ] - }, - { - "text": "Provide for an adequate number of publicly funded shelter facilities for victims of domestic violence", - "values": [ - "4 - General action" - ] - }, - { - "text": "Take steps to abolish the death penalty entirely, including the ratification of the Second Optional Protocol to ICCPR ", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Increase awareness, including through public campaigns of human rights and fundamental freedom", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Take measures to guarantee access to safe drinking water for all its population ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Establish a national mechanism for implementation of OP-CAT, including through securing Senate approval in 2012", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Ratify the Rome Statute of the ICC ", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Protect women\u2019s rights and promote gender equality by ensuring that all district and provincial laws and regulations align with the Constitution of Indonesia and are consistent with its human rights obligations under the International Covenant on Economic, Social and Cultural Rights and the Convention on the Elimination of All Forms of Discrimination against Women, as well as by improving coordination among responsible agencies and ministries", - "values": [ - "4 - General action" - ] - }, - { - "text": "Guarantee continuing awareness-raising on the Sustainable Development Goals, to make them part of the general culture", - "values": [ - "4 - General action" - ] - }, - { - "text": "Give urgent attention to the full implementation of ILO Convention 169, especially with regard to prior consultation on legislative and administrative measures that may affect indigenous communities ", - "values": [ - "3 - Considering action" - ] - }, - { - "text": "Adopt measures to prevent attacks, harassment, arbitrary detention of political activists and journalists ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Accede to CPED ", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Take further measures to protect and integrate immigrants, asylum-seekers and persons belonging to minorities, including by carrying out investigations into violent attacks against such individuals", - "values": [ - "4 - General action" - ] - }, - { - "text": "Take further measures for the implementation of the Strategy on Integrated Education and to provide adequate State funding to be allocated for the implementation of this Strategy ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Take promptly any necessary action to comply with any findings of the review of the draft Shia Personal Status Law with the Constitution.", - "values": [ - "4 - General action" - ] - }, - { - "text": "Complete the process of creating a coordination body to implement the Convention on the Rights of the Child", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Intensify efforts to ratify the Convention against Torture and other Cruel, Inhumane or Degrading Treatment or Punishment", - "values": [ - "4 - General action" - ] - }, - { - "text": "Lobby for and implement a comprehensive anti-discrimination law that provides effective protection against discrimination against persons with disabilities", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Ensure that human rights abuses committed against human rights defenders, trade unionists and other advocacy groups are investigated thoroughly and those responsible are prosecuted.", - "values": [ - "4 - General action" - ] - }, - { - "text": "Work with the Roma self-governments, NGOs and human rights organizations to implement measures to encourage Roma and other victims to report hate crimes and, when they do, to protect them from reprisals ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Adopt necessary measures to end the practice of forced and early marriage", - "values": [ - "4 - General action" - ] - }, - { - "text": "Explore means to improving funding to the National Human Rights Commission in order to allow it to fully carry out its mandate ", - "values": [ - "3 - Considering action" - ] - }, - { - "text": "Implement policies to ensure free education throughout the country", - "values": [ - "4 - General action" - ] - }, - { - "text": "Respond to the remaining questionnaires on thematic issues sent by special procedures mandate holders ", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Continue to enhance efforts to further improve the status of women to enable them to reach their full potential and contribute towards the social and economic development of the country", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Consider ratification of the Rome Statute of the International Criminal Court and its Agreement on Privileges and Immunities", - "values": [ - "3 - Considering action" - ] - }, - { - "text": "Take steps to improve transparency, including by improving citizens' rights to access Government-held information ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Sign or ratify the regional and international human rights instruments to which it is not yet a party, in particular the Convention on the Rights of Persons with Disabilities", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Nigeria is committed to ensuring that respect for all persons irrespective of race, class, disability or gender is guaranteed", - "values": [ - "4 - General action" - ] - }, - { - "text": "Ratify, as soon as possible, the International Convention for the Protection of All Persons from Enforced Disappearance and ratify the Optional Protocol to the Convention against Torture and other Cruel, Inhuman or Degrading Treatment or Punishment", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Implement further policies to ensure gender equality throughout society and strengthen the promotion of the rights of women ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Take further measures to fully and effectively implement the law that detail enforcement and redress mechanisms for women and children facing domestic violence", - "values": [ - "4 - General action" - ] - }, - { - "text": "Give priority to the right of people to development and to continue efforts to uplift the standard of living of the people in the framework of China's efforts to protect and promote human rights ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Review section 375 of the Penal Code in order to criminalize all acts of sexual violence, regardless of matrimonial status or the victim's gender ", - "values": [ - "3 - Considering action" - ] - }, - { - "text": "Bring national legislation in accordance with international standards to fully guarantee freedom of expression, association and assembly", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Continue efforts towards the establishment and implementation of an effective regulatory frame work for holding companies registered in Canada accountable for the human rights impact of their operations ", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Put an end to harmful practices such as early and forced marriage and genital mutilation, in line with the 2030 Agenda for Sustainable Development", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Implement all efforts and adopt regulatory measures that expressly prohibit discrimination and violence based on sexual orientation and gender identity", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Take appropriate action to punish people motivated by racial discrimination and xenophobia", - "values": [ - "4 - General action" - ] - }, - { - "text": "Revise the election law to guarantee a 30 per cent representation of women on electoral lists, as this would be positive step towards equality", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Increase its efforts, especially educational and public awareness measures, to improve the realization of women's rights.", - "values": [ - "4 - General action" - ] - }, - { - "text": "Provide all children with equal opportunities to study and give them access to higher education based on their talent and individual capability ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Establish the National Human Rights Institution in line with the Paris Principles", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Strengthen the cooperation with the relevant human rights stakeholders including the Human Rights Council", - "values": [ - "4 - General action" - ] - }, - { - "text": "Consider the possibility of ratifying the International Covenant in order to ensure that it is enforceable as soon as possible", - "values": [ - "3 - Considering action" - ] - }, - { - "text": "Intensify efforts to reduce the use of corporal punishment against minors in state-run institutions through awareness-raising campaigns and training in non-violent forms of discipline", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Continue to ensure better protection of the rights of all citizens through the implementation of the national action plans recently adopted, in particular those relating to efforts to ensure the conditions for durable and sustainable socio-economic growth with a view to a significant reduction in poverty and the achievement of the Millennium Development Goals", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Take immediate and all necessary steps to modernize its data and communication processes within its judicial branch ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Immediately end all and prevent further violations of international human rights law and international humanitarian law committed by members of the armed forces and allied militias", - "values": [ - "4 - General action" - ] - }, - { - "text": "Complete the process of full alignment of its national legislation with all obligations under the Rome Statute of the International Criminal Court and accede to the Agreement on Privileges and Immunities of the Court", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Continue its positive engagements and close cooperation with the various mechanisms of the Human Rights Council, with a view to improving further the steps currently being undertaken in the promotion and protection of human rights of its people", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Promote education for all, especially for indigenous and tribal children, as well as step up efforts to preserve languages of the indigenous communities", - "values": [ - "4 - General action" - ] - }, - { - "text": "Ensure in practice that all reports of torture or ill-treatment are duly investigated in a prompt, exhaustive, impartial and independent manner, and that those responsible are brought to justice", - "values": [ - "4 - General action" - ] - }, - { - "text": "Strengthen the functioning of the independent judiciary to enhance transparency and efficiency in judicial proceedings", - "values": [ - "4 - General action" - ] - }, - { - "text": "Reconsider those provisions which criminalize consenting sexual relations between adults of the same sex, and intensify political initiative and legislative measures to combat any act of discrimination, including those committed against gender identity or sexual orientation ", - "values": [ - "3 - Considering action" - ] - }, - { - "text": "Accede to the Palermo Protocol", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Introduce a de jure moratorium on the death penalty and to adopt a law abolishing that penalty", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Continue to enhance its social protection programmes, which provide assistance to the most vulnerable and disadvantaged Gabonese", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Continue to pursue an integrated approach to cases of compounded vulnerability caused by multiple and intersecting forms of discrimination ", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Consider ratifying the Second Optional Protocol to ICCPR and the 1951 Convention relating to the Status of Refugees and its 1967 Protocol ", - "values": [ - "3 - Considering action" - ] - }, - { - "text": "Finalize the process of ratification of the Optional Protocol to the Convention on the Rights of Persons with Disabilities", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Ratify the Convention on the Elimination of All Forms of Discrimination against Women, the International Covenant on Civil and Political Rights and the International Covenant on Economic, Social and Cultural Rights", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Increase budgetary allocation to the agricultural sector, so as to improve food security in its endeavours to further the protection and promotion of human rights of the Korean people ", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Improve the living conditions of detainees and establish a system of independent monitoring in all detention facilities", - "values": [ - "4 - General action" - ] - }, - { - "text": "Consider acceding to the International Convention on the Protection of the Rights of All Migrant Workers and their Families ", - "values": [ - "3 - Considering action" - ] - }, - { - "text": "Implement fully the obligations to ensure unhampered enjoyment of human rights by all persons with disabilities ", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Include women's rights in the new Constitution, including legislation on measures to eliminate all forms of violence against women ", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Continue efforts to amend the Human Rights Commission Act to be fully in line with the Paris Principles", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Enact the necessary legislation in view of its ratification of the OP- CRC-SC", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Consider the possibility of acceding to the major international human rights treaties, including the Rome Statute of the International Criminal Court ", - "values": [ - "3 - Considering action" - ] - }, - { - "text": "Reinforce identification of child trafficking victims and ensure that referral and assistance mechanisms are provided and adapted to the victims' needs and best interests", - "values": [ - "4 - General action" - ] - }, - { - "text": "Extend an open and standing invitation to all special procedures", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Take effective measures to counter insults against Islam and Holy Quran", - "values": [ - "4 - General action" - ] - }, - { - "text": "Accede to all human rights instruments to which it is not yet a party, specifically the Optional Protocol to the Convention Against Torture, the International Convention on the Protection of the Rights of All Migrant Workers and Members of their Families, and the International Convention for the Protection of All Persons from Enforced Disappearance", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Intensify efforts to fight against poverty", - "values": [ - "4 - General action" - ] - }, - { - "text": "Finland is committed to more effective and systematic monitoring of the implementation of human rights. As part of this commitment, the newly established Network for fundamental and human rights, composed of contact persons representing all Ministries, will monitor the implementation of the National Human Rights Action Plan and prepare the Government Report on Human Rights Policy. The Network will analyse the situation of fundamental and human rights in Finland, including the implementation of Finland's human rights obligations and commitments, and the associated periodic reporting. The Network will also review UPR recommendations, Finland has several good practices in the sphere of cooperation with civil society and other stakeholders on human rights. The Network will provide an opportunity for further development of these partnership models.", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Carry out an independent assessment on the effectiveness of the law on free legal aid and, depending on the results thereof, take the measures required to guarantee that the most disadvantaged among the population have access to effective, comprehensive and non-discriminatory legal aid", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Eliminate the caste system, which leads to stigmatization and ostracism of certain groups of the Senegalese society", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Increase its efforts to promote tolerance and anti-discriminatory attitudes among all the population and promote respect for human rights and social cohesion", - "values": [ - "4 - General action" - ] - }, - { - "text": "Continue efforts for the establishment of a national human rights institution with an "A" status in conformity with the Paris Principles ", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Strengthen the promotion of activities generating income for women ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Double its efforts to enhance the enjoyment of women of their legitimate rights and protect them from all forms of violations", - "values": [ - "4 - General action" - ] - }, - { - "text": "Take the necessary actions to implement its commitment to extend a standing invitation to the special procedures of the Human Rights Council, and invite all other countries to follow this commendable example", - "values": [ - "4 - General action" - ] - }, - { - "text": "Seize the opportunity of the Criminal Code of Nauru to decriminalize homosexual relations between consenting adults", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "As a first step towards its [death penalty] abolition", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Pursue the fight against terrorism in compliance with human rights", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Enact legislation to prohibit corporal punishment of children in all settings, including at home and in care institutions ", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Consider ratification of OP-CRC-IC", - "values": [ - "3 - Considering action" - ] - }, - { - "text": "Continue the rapid and comprehensive implementation of the road map on the end of recruiting children by armed forced, adopted in May 2013", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Include a definition of torture into the Criminal Code, in line with article 1 of the Convention against Torture ", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Coordinate with international experts to conduct a review of recent legislation and decrees concerning the media and civil society, to determine whether these measures are consistent with Ukraine\u2019s international obligations", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Continue to take measures to guarantee the rights of victims of the crime of trafficking, especially in the area of physical and psychological care ", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Promptly take effective measures to safeguard the rights of refugees and asylum-seekers, including not to let other countries violate the rights of refugees and asylum-seekers in the territory of Nauru ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Ensure an effective non-discrimination for persons with disabilities as well as recognition of all persons with disabilities as persons before the law ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Favourably consider ratification of all core international human rights instruments", - "values": [ - "3 - Considering action" - ] - }, - { - "text": "Prevent arbitrary and extrajudicial blocking of websites and ensure that national security concerns are not invoked to stifle peaceful dissent and criticism of the Government or to restrict the right to freedom of religion or belief", - "values": [ - "4 - General action" - ] - }, - { - "text": "Improve detention conditions in general, particularly for women and children", - "values": [ - "4 - General action" - ] - }, - { - "text": "Intensify the programmes to combat child labour ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Take all necessary measures to guarantee the human rights of LGBT individuals and that they do not face persecution of any kind", - "values": [ - "4 - General action" - ] - }, - { - "text": "Recognize the competence of the Committee on the Elimination of Racial Discrimination to receive and consider individual complaints.", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Reintroduce the moratorium on the death penalty for all cases as a first step towards its full abolition", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Abolish criminal responsibility for organization and participation in the activities of non-registered organizations, as well as lifting the ban on the activities of non-registered organizations", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Continue its efforts to guarantee access to justice to all", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Increase funding and political support for government human rights institutions and programmes, including the Presidential Commission on Human Rights, the Human Rights Ombudsman\u2019s Office and the National Reparations Programme", - "values": [ - "4 - General action" - ] - }, - { - "text": "Ratify the Council of Europe Convention on Preventing and Combating Violence against Women and Domestic Violence (Istanbul Convention) ", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "That the measures taken to reduce domestic violence be followed up, adapted and extended on solid empirical bases ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Develop a National Action Plan to prevent and criminalise acts of sexual and gender based violence, including Female Genital Mutilation and sexual offences against children", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Amend country's Constitution and enact other appropriate legislation to prohibit discrimination on gender grounds ", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Establish a national human rights institution and strengthen human rights education and school programmes and general social measures, with the support of the international community ", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Make further efforts to protect and promote women's rights in Sudan ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Take steps to improve equality in education in response to the low enrolment rate of female students in secondary and higher education ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Share its experiences and best practices internationally on the concept of Gross National Happiness ", - "values": [ - "1 - Minimal action" - ] - }, - { - "text": "Continue to implement specific measures to raise awareness of human rights standards, particularly as regards antidiscrimination, and educate the society and train professionals working in this field ", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Consider ratifying the Second Optional Protocol to the International Covenant on Civil and Political Rights, aiming at the abolition of the death penalty ", - "values": [ - "3 - Considering action" - ] - }, - { - "text": "Continue strengthening efforts to ensure a more active role of women in all spheres of society", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Guinea be provided all possible technical and financial assistance it needs by the international community as well as the OHCHR ", - "values": [ - "1 - Minimal action" - ] - }, - { - "text": "End the practice of forced evictions against the Roma population, by amending existing laws and enacting new ones aimed at the protection of this vulnerable group from forced evictions ", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Continue efforts to adopt measures to avoid the stigmatization of the Rastafarian community ", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Take effective and coordinated measures on the issue of violence against women and domestic violence, including ratification of the Istanbul Convention on preventing and combating violence against women and domestic violence", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Accelerate the adoption of laws aimed at the constitutional recognition of indigenous peoples ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Review legislation and repeal provisions under which up to life imprisonment can be imposed for tarnishing the country's reputation or undermining confidence in it abroad ", - "values": [ - "3 - Considering action" - ] - }, - { - "text": "Take further steps to prevent discrimination on the grounds of gender identity and sexual orientation and to raise awareness on its consequences", - "values": [ - "4 - General action" - ] - }, - { - "text": "Seek cooperation of OHCHR as well as NGOs in the follow-up to the universal periodic review ", - "values": [ - "1 - Minimal action" - ] - }, - { - "text": "Continue with its efforts regarding violence within the family and with the enforcement of the three categories of aggravating circumstances included in the Italian Criminal Code, in order to prevent violence in all its forms", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Involve itself in a dialogue process with the different agencies of the United Nations system with a view to constructing permanent institutions and to safeguard civilians and population at risk ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Continue to implement the National Action Plan for the Promotion and Protection of Human Rights", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Carry out genuine investigations into cases of human rights violations in order to not allow the atmosphere of impunity to prevail.", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Continue to provide adequate resources to its anti-trafficking programs", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Adopt measures to combat and eradicate cases of xenophobia against the Roma minority", - "values": [ - "4 - General action" - ] - }, - { - "text": "Ratify or adopt implementing legislation with regard to the 1926 Slavery Convention, the 1956 Supplementary Convention on the Abolition of Slavery, the Slave Trade, and Institutions and Practices Similar to Slavery", - "values": [ - "4 - General action" - ] - }, - { - "text": "Accede to the Convention relating to the Status of Refugees, as well as its Protocol and take all necessary measures so the fundamental rights of refugees residing in the country are protected ", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Take due steps towards the full implementation of the election regulations in the future ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Ensure relevant agencies have sufficient resources and staff to enforce existing domestic violence laws", - "values": [ - "4 - General action" - ] - }, - { - "text": "Fully implement its international obligations to ensure the protection of human rights defenders and other civil society actors while exercising their human rights, including the freedoms of expression, association and assembly", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Strengthen measures to improve the application of the law on domestic violence, including training and awareness-raising for judges, prosecutors and police officers", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Give legal status to refugees and asylum seekers", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Utilize opportunities to obtain grant funding inter alia from the World Bank's Global Financing Facility", - "values": [ - "4 - General action" - ] - }, - { - "text": "Take all necessary steps to prevent the new British Bill of Rights from leading to a decreased level of human rights protection", - "values": [ - "4 - General action" - ] - }, - { - "text": "Reinforce actions for the protection of child victims of trafficking and sexual exploitation", - "values": [ - "4 - General action" - ] - }, - { - "text": "Adopt measures to combat stereotypes that place women and girls at a disadvantage and further promote equality between men and women", - "values": [ - "4 - General action" - ] - }, - { - "text": "Intensify efforts aimed at establishing a standing coordinating body for the implementation of recommendations and reporting", - "values": [ - "4 - General action" - ] - }, - { - "text": "The Republic of Korea committed to incorporating the recommendations that enjoyed its support into the Second National Action Plan for the Promotion and Protection of Human Rights", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Avoid applying severe restrictions on freedom of assembly and prohibiting peaceful demonstrations, and take the necessary measures to make procedures for the registration of non-governmental organizations more flexible and to ensure that they can carry out their work without undue interference", - "values": [ - "4 - General action" - ] - }, - { - "text": "Take steps to strengthen and reform the judiciary to reduce the numbers of pre-trial detainees, particularly minors", - "values": [ - "4 - General action" - ] - }, - { - "text": "Further strengthen the justice system, including adopting a specific law to criminalize sexual tourism ", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Establish its national human rights institution in accordance with the Paris Principles before the end of 2010", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Ratify more human rights instruments, especially the Convention on the Rights of Persons with Disabilities ", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Establish an independent elections body ", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Germany remained fully committed to effectively combating all instances of racism, racial discrimination and related phenomena.", - "values": [ - "4 - General action" - ] - }, - { - "text": "Continue its cooperation with the United Nations and other international organizations to overcome the remaining constraints and challenges ", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Establish specialized protection mechanisms to ensure the safe and independent work of civil society and human rights defenders", - "values": [ - "4 - General action" - ] - }, - { - "text": "Take measures to abolish the death penalty", - "values": [ - "4 - General action" - ] - }, - { - "text": "Free comprehensive health care for life and free education for the nation's children up to 14 years of age (a far-sighted policy dating back to 1875) points to a progressive domestic realisation of the rights set out in the International Covenant on Economic, Social and Cultural Rights (ICESCR) even though the Kingdom has not ratified this treaty. The development of these policies was accompanied by clear and attainable targets that have been monitored and evaluated on the way forward", - "values": [ - "1 - Minimal action" - ] - }, - { - "text": "Intensify its efforts aimed at providing access of all children to free and compulsory primary education ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Continue its advocacy campaign to encourage greater participation by women in the political process at the national and local levels ", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Continue efforts to promote opportunities for productive and paid employment for persons with disabilities", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Redouble efforts to ensure that girls and boys have an education with equal opportunities in terms of professional career, as well as to eliminate the difference in the remuneration of men and women ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Guarantee in law and in practice the right to the freedoms of expression, association and peaceful assembly, as well as the right of all citizens to participate, without discrimination, in the country's public and political life, including the right to vote and be elected. In this regard, it is urgent that the bill on freedom of assembly be concluded and approved", - "values": [ - "4 - General action" - ] - }, - { - "text": "Step up efforts to ensure protection of journalists and human rights defenders", - "values": [ - "4 - General action" - ] - }, - { - "text": "Expand its outreach and political reconciliation efforts as broadly as possible as part of comprehensive efforts to stabilize Somalia", - "values": [ - "4 - General action" - ] - }, - { - "text": "Repeal those provisions of the Criminal Code which unfairly limit freedom of expression, including articles 301, 318, 215 and 125, to bring the law in line with international standards on freedom of expression", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Revise the national list of safe countries in order to avoid the high number of unadmitted requests that have been pointed out by the Helsinki Committee of Hungary", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Adopt a definition of torture in line with article 1 of the Convention against Torture", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Continue efforts to promote school attendance of children and to fight illiteracy through specific programmes for the most vulnerable population, especially in rural areas.", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Work on future efforts for the advancement of economic affairs in order to promote the rights related to employment, education, health care and housing ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Continue to carry out various programs for the advancement of the status of women and children in the Sultanate", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Continue implementing the National plan of action on Gender and Development ", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Take measures to improve the follow-up to complaints of hate crimes", - "values": [ - "4 - General action" - ] - }, - { - "text": "Accelerate the review and adoption of the new law on marriage in order to eradicate early marriages of young girls", - "values": [ - "4 - General action" - ] - }, - { - "text": "Continue its efforts to fight against corporal punishment in all places", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Allocate more resources for economic and social development measures and policies to better ensure the population's enjoyment of the most essential economic and social rights, notably the rights to food, medical care and employment, and to fight against poverty and illiteracy.", - "values": [ - "4 - General action" - ] - }, - { - "text": "Consider establishment of a national human rights institution in accordance with the Paris Principles ", - "values": [ - "3 - Considering action" - ] - }, - { - "text": "Amend the Criminal Code with a view to including all elements of the definition of torture as provided for in article 1 of CAT ", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Do everything possible to prevent early and forced marriage and to recognize in its legislation rape within marriage.", - "values": [ - "4 - General action" - ] - }, - { - "text": "Consider the possibility of adopting a separate law combating trafficking in persons", - "values": [ - "3 - Considering action" - ] - }, - { - "text": "Continue with its efforts in further increasing the awareness of gender equality and equal opportunities and foster implementation of its national policies in this regard", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Submit all overdue reports to the relevant human rights treaty bodies and issue standing invitations to all special procedures", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Follow up the CERD and other human rights bodies and mechanisms' relevant recommendations towards enhancing de jure and de facto equal protection of indigenous peoples, including the Maya, Xinca and Garifuna peoples.", - "values": [ - "4 - General action" - ] - }, - { - "text": "Adopt the necessary measures to advance in its fight against discrimination, especially discrimination against ethnic minorities and migrants, and suppress the existing patriarchal and gender stereotypes with respect to the functions and responsibilities of men and women in the family and the society ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Fully respect the economic and social rights of migrant workers and their families and ensure their safety and security ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Remove discriminatory media guidelines to provide a more balanced representation of lesbian, gay, bisexual, transgender and intersex persons", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Adopt a comprehensive anti-discrimination law", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Promote and guarantee the right to freedom of expression", - "values": [ - "4 - General action" - ] - }, - { - "text": "Take steps to curb incitement of hatred by some British tabloid newspapers, in line with the country\u2019s obligations under national and international law", - "values": [ - "4 - General action" - ] - }, - { - "text": "Ratify ICRMW, to ensure a better provision of the rights and concerns of this vulnerable group", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Continue its ongoing efforts towards the promotion and protection of the rights of indigenous persons, through law and practice, including by giving constitutional recognition", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Improve the Law on Gender Equality to be in line with its Law on the Elimination of All Forms of Discrimination and the Convention on the Elimination of All Forms of Discrimination against Women", - "values": [ - "4 - General action" - ] - }, - { - "text": "All areas of the judiciary be completely independent from the executive", - "values": [ - "4 - General action" - ] - }, - { - "text": "Establish a specific legal act for the crime of human trafficking ", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Ratify the Optional Protocol to the Convention on the Elimination of All Forms of Discrimination against Women, and continue strengthening the legislation aimed at the elimination of all forms of discrimination against women", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Continue its efforts to ensure legal protection against abuse of women, children and the elderly in families", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Extend a standing invitation to the Special Procedures of the Human Rights Council and accept the competence of the treaty bodies in complaints, inquiry and urgent action procedures", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Continue prioritizing the adoption of relatively low-cost, targeted arrangements for the best protection of children's rights ", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Devote more resources to the protection of women and children from domestic violence and any other kind of abuses ", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Enhance legislation in the field of racial discrimination, racism and hatred of foreigners", - "values": [ - "4 - General action" - ] - }, - { - "text": "Implement the measures contained in the resolution recently adopted by the Committee of Ministers of the Council of Europe on the implementation by Albania of the Framework Convention for the Protection of National Minorities, in particular those relating to the right of self-identification of minorities in the census processes and creating conditions for education in minority languages, including Macedonian, on the entire territory of the State ", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Further continue the existing cooperation with the United Nations human rights mechanisms ", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Amend or derogate legislation that discriminates against women, and adopt measures to expedite the enactment of outstanding bills in this regard, such as the Gender Equality Bill, the Deceased Estates - Wills, Inheritance and Protections - Bill and the Marriage, Divorce and Family Relations Bill ", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Elaborate and implement an effective strategy to fight child poverty", - "values": [ - "4 - General action" - ] - }, - { - "text": "Continue the role that the Kuwait Fund for Arab Economic Development is playing in the world", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Increase efforts to combat all forms of violence against women.", - "values": [ - "4 - General action" - ] - }, - { - "text": "Consider ratifying the International Convention for the Protection of all Persons from Enforced Disappearance CED", - "values": [ - "3 - Considering action" - ] - }, - { - "text": "Develop and implement a comprehensive and coordinated strategy to fight domestic violence, particularly violence against women", - "values": [ - "4 - General action" - ] - }, - { - "text": "Conclude its own procedures to ratify the Optional Protocol to the Convention against Torture", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Carry out judicial investigations into the crimes against journalists", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Maintain de facto moratorium on executions and ratify the Second Optional Protocol to the International Covenant on Civil and Political Rights with a view to definitive abolishment of the death penalty ", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Pass the necessary legislation as soon as possible to enable the ratification of the Convention on the Rights of Persons with Disabilities ", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Issue a standing invitation to human rights special procedures ", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Seek to continue to provide satisfactory conditions of operation to the United Nations aid agencies working in the country ", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Respond positively to the visit request by the WGED ", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Initiation, in 2007, of a review process in Mali within the framework of the New Partnership for Africa's Development (NEPAD) African Peer Review Mechanism", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Modify the regulation on conscription and organize it in a way consistent with the respect for human rights ", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Continue its efforts in improving health conditions of the people with a view to further reducing maternal and infant mortality, including through awareness-raising", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Adopt immigration policies that protect the human rights of immigrants and refugees and promote the integration of racial minorities among the population of Bahamas", - "values": [ - "4 - General action" - ] - }, - { - "text": "Implement further policies to ensure gender equality throughout society and the promotion of the rights of women and children", - "values": [ - "4 - General action" - ] - }, - { - "text": "Bring all the national legislation into conformity with the 2009 Anti Discrimination Law", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Implement the series of measures to ensure the rights of and improve the quality of life of persons with disabilities for 2014-2017", - "values": [ - "4 - General action" - ] - }, - { - "text": "Continue taking appropriate measures to narrow the gap between the rich and the poor. The international community must also rise to the occasion and help Nepal in its efforts ", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Take adequate measures to combat female genital mutilation, that is to enforce existing legislation prohibiting FGM and to ensure that perpetrators of female genital mutilation are prosecuted", - "values": [ - "4 - General action" - ] - }, - { - "text": "Take effective measures to ensure that conditions of detention at Her Majesty's Prison are in conformity with United Nations Standard Minimum Rules for the Treatment of Prisoners, including by reducing overcrowding", - "values": [ - "4 - General action" - ] - }, - { - "text": "Persist in its national efforts aimed at the systematic inclusion of human rights education in its educational and vocational systems and at all school levels", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Progress efforts to end discrimination based on sexual orientation, gender identity and intersex status", - "values": [ - "4 - General action" - ] - }, - { - "text": "Conduct an awareness and education campaign to prevent violence against women and prosecute those who commit crimes of violence against women", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Continue efforts to further reduce child labour and to punish those who employ children, in clear violation of the legislative provisions relating to child labour", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Repeal or significantly reform the Public Order and Security Act, the Access to Information and Protection of Privacy Act, and criminal code provisions that restrict freedoms of assembly and expression ", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Ratify ILO Convention No. 189 concerning Decent Work for Domestic Workers ", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Take further steps towards ensuring better representation and participation of women in public and political life, including in the Government and Parliament ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Formalize a de jure moratorium on death penalty and replace it with alternative sentences which respect international human rights standards", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Redouble efforts to establish as soon as possible an independent national human rights institution, in conformity with the Paris Principles", - "values": [ - "4 - General action" - ] - }, - { - "text": "Ensure that national security shall be pursued in full compliance with international human rights obligations, including the right to a fair trial, the rights to information, freedom of assembly and association and freedom of expression", - "values": [ - "4 - General action" - ] - }, - { - "text": "Make further efforts to generate public awareness about human rights, including through human rights education ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Thoroughly implement the 2014-2016 strategy to prevent adolescent pregnancy, in cooperation with UNFPA", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Pursue all efforts to fight gender-based violence", - "values": [ - "4 - General action" - ] - }, - { - "text": "To consider without delay the possibility of establishing an interministerial mechanism to hold regular meetings on the preparation of reports on the human rights situation in France for submission to international bodies, and to examine, in conjunction with the Advisory Commission, modalities for follow-up on recommendations made by those bodies and by the competent national institutions, including the Commission", - "values": [ - "3 - Considering action" - ] - }, - { - "text": "Continue ensuring effective implementation of its domestic laws on the protection of the family and prevention of violence against women and children", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Ensure the Marriage, Divorce and Family Relations Bill's implementation throughout the country", - "values": [ - "4 - General action" - ] - }, - { - "text": "Strengthen the measures to combat violence against women as well as support the victims and survivors of such violence", - "values": [ - "4 - General action" - ] - }, - { - "text": "Adopt a law on national minorities that would safeguard the respect of language rights of minorities in accordance with Lithuania's international obligations", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Ensure the independence of the judiciary and enact a comprehensive review of legislation and practice aimed at guaranteeing the right to a fair trial for everyone, including opposition leaders and those critical of the Government", - "values": [ - "4 - General action" - ] - }, - { - "text": "Continue the implementation of health services through policies aimed at strengthening infrastructure in urban and rural areas", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Strengthen measures to counter discriminatory attitudes, for example by including sexual orientation and gender identity in public education and equality programmes and initiatives", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Strengthen its National Human Rights Commission through greater allocation of funds and staff and adopt measures to guarantee its independence and impartiality, in conformity with the Paris Principles ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Follow up on the initiatives whose aim is to improve the judiciary and to further train judges on human rights norms and the international jurisprudence regarding treaties ratified by Georgia ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Appeal to the international community to take into account difficulties and challenges faced in promoting human rights and to increase financial and technical assistance for capacity-building.", - "values": [ - "1 - Minimal action" - ] - }, - { - "text": "Adopt and enact legislation that prohibits all forms of human trafficking", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Take all necessary measures to effectively implement the legislation on domestic violence and protection from such violence", - "values": [ - "4 - General action" - ] - }, - { - "text": "Follow up efficiently on the recommendation of the Committee on the Rights of the Child to explicitly prohibit by law all forms of violence against children, including corporal punishment, in all settings, including in the family, schools, alternative childcare and places of detention for juveniles, and to subsequently implement those laws effectively ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Review its national legislation in order to ensure its full alignment with obligations under the Rome Statute, including incorporating the Rome Statute definition of crimes and general principles, as well as adopting provisions enabling cooperation with the Court", - "values": [ - "3 - Considering action" - ] - }, - { - "text": "Implement the National Human Rights Plan of Action, highlighting the importance of maintaining a dialogue as a tool towards the implementation of the national human rights agenda, as well as its commitment to strengthen the National Human Rights Council in this regard", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Reinforce preventive measures for combating trafficking in women and girls for purposes such as sexual exploitation ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Implement the decision of the House of Representatives to set the minimum age of marriage no lower than 17 years.", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Formulate goals and policy guidelines for the promotion of the rights of indigenous peoples and cooperation between government and indigenous peoples ", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Take measures to implement the recommendations of the CEDAW Committee in the area of women's rights as soon as possible.", - "values": [ - "4 - General action" - ] - }, - { - "text": "Take concrete steps to implement its commitment to promote and protect the rights of all people to worship in peace and security without discrimination or restriction", - "values": [ - "4 - General action" - ] - }, - { - "text": "Closely monitor legal practice in relation to incitement to racial discrimination and prosecute perpetrators", - "values": [ - "4 - General action" - ] - }, - { - "text": "Implement the employment priority strategy and ensure equal employment opportunities to urban and rural residents", - "values": [ - "4 - General action" - ] - }, - { - "text": "Consider the possibility of inviting relevant mandate holders as follow up to the 2006 joint-study by the 5 special procedures, in view of the decision of the current Administration to close the Guantanamo Bay detention facility ", - "values": [ - "3 - Considering action" - ] - }, - { - "text": "Ratify the Rome Statute of the International Criminal Court, and fully align its national legislation with all obligations under the Rome Statute ", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Ratify the Optional Protocol to the Convention on the Rights of Persons with Disabilities ", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Ensure effectiveness, proper functioning and independence of its national human rights institution ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Ratify the optional protocols to the Convention on the Rights of the Child on a communications procedure, to the Convention on the Rights of Persons with Disabilities and to the International Covenant on Economic, Social and Cultural Rights", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Build institutional capacity for effectiveness in the prevention of and response to gender-based violence", - "values": [ - "4 - General action" - ] - }, - { - "text": "Redouble its efforts to meet socioeconomic needs of its citizens ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Accelerate the steps currently under way for the establishment of a national human rights institution consistent with the Paris Principles ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Continue efforts in the realm of promotion of human rights", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Implement the recommendations of the European Commission for Democracy through Law (Venice Commission) related to reforms in the system of appointments and probation periods of judges", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Declare a moratorium on the death penalty with a view to its abolition, and sign and ratify the Second Optional Protocol to the International Covenant on Civil and Political Rights ", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Consider ratifying the Second Optional Protocol to the International Covenant on Civil and Political Rights Aimed at the Abolition of the Death Penalty (ICCPR-OP 2).", - "values": [ - "3 - Considering action" - ] - }, - { - "text": "Improve the conditions of detention for those held on remand and for convicted persons ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Continue relevant campaigns to eliminate old customs undermining the status of girls and construct roads in rural areas connecting schools with residential centres ", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Complete the internal process to adhere to the Second Optional Protocol to the International Covenant on Civil and Political Rights on abolition of the death penalty, as early as possible", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Intensify its efforts to prevent, combat and eliminate torture and accede to the Optional Protocol to the Convention against Torture", - "values": [ - "4 - General action" - ] - }, - { - "text": "Take all necessary steps to eliminate corporal punishment", - "values": [ - "4 - General action" - ] - }, - { - "text": "Investigate and bring to justice alleged perpetrators of all cases of torture and use of excessive force by security forces", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Take concrete steps to stop sexual violence against women and girls and ensure that victims are given protection and assistance with their recovery", - "values": [ - "4 - General action" - ] - }, - { - "text": "Redouble efforts in order to guarantee the respect of the human rights of migrants, including persons under irregular situation", - "values": [ - "4 - General action" - ] - }, - { - "text": "Accede to the Convention Relating to the Status of Stateless Persons 1954 and the Convention on the Reduction of Statelessness 1961, and ensure that language requirements relating to employment are implemented in a fair and objective manner and that the rights of ethnic and linguistic minorities are actively promoted and protected", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Carry out the necessary step for the ratification of the Convention on the Elimination of All Forms of Discrimination against Women and other human rights treaties", - "values": [ - "4 - General action" - ] - }, - { - "text": "Ensure that foreign nationals residing in Luxembourg fully enjoy social benefits like other citizens of Luxembourg do ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Take steps to ensure that civil society organizations freely can access and utilize funding, including from foreign sources", - "values": [ - "4 - General action" - ] - }, - { - "text": "Enhance its efforts to rebuild state institutions, and in particular a strong, efficient and independent justice system that respects due process and protects the human rights of detainees in line with international standards", - "values": [ - "4 - General action" - ] - }, - { - "text": "Guarantee ICRC unconditional and unrestricted access to local and central authorities as well as detention centres in the Lao People's Democratic Republic ", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Review the reservations made to the Convention on the Elimination of All Forms of Discrimination against Women with the objective of withdrawing them, in particular those that are incompatible with the object and purpose of the said international instrument", - "values": [ - "3 - Considering action" - ] - }, - { - "text": "Strengthen efforts to combat poverty, discrimination and the promotion of the status of women and children ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Ensure that torture and ill- treatment by public officials would not be tolerated and that all alleged perpetrators of the acts of torture would be investigated", - "values": [ - "4 - General action" - ] - }, - { - "text": "Ratify ICRMW ", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Take all necessary measures to end discrimination and violence against women and girls", - "values": [ - "4 - General action" - ] - }, - { - "text": "Continue developing inclusive policies to enable the Roma population to enjoy the same rights and opportunities as other persons, with due regard to their participation in its design and implementation", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Continue its efforts to empower women through its work with UNDP which will enable women to become financially independent and improve their managerial skills and productivity", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Work and do all its best in order to close down the Guantanamo facility", - "values": [ - "4 - General action" - ] - }, - { - "text": "Implement recommendations made by Special Rapporteur on freedom of peaceful assembly and association regarding governmental oversight and regulations of non-governmental organizations", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Adopt a national strategy on slavery in line with the recommendation of the Special Rapporteur on contemporary forms of slavery ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Introduce legislation that recognizes the diversity of forms of families and that provides same sex couples with the same rights and social security as couples of the opposite sex ", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Adopt the necessary measures to eliminate discrimination against women, both in law and practice, including with regard to remuneration, employment opportunities, access to educational and health services", - "values": [ - "4 - General action" - ] - }, - { - "text": "Continue its efforts on the draft law to set up an independent human rights institution that would function in an independent manner, in accordance with the Paris Principles", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Design a comprehensive policy to address discrimination of national minorities in all areas ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Continue its efforts to protect internally displaced persons ", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Continue strengthening programmes for the integration of national minorities, including the Roma, in order to ensure their economic social and cultural rights", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Continue on its efforts in combating harmful traditional practices ", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Further promote prisoners' well-being and communication, particularly of those non-Spanish speaking, to equally gain access to relevant rights such as medical treatment and occupational courses ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Grant independent international observers access to detention facilities upon reasonable advance notice, as well as the right to speak with inmates in private, in order to monitor compliance with international obligations regarding treatment of prisoners", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Take all appropriate actions in order to become a party to the Convention against Torture", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Continue to provide impactful humanitarian assistance to help people and families struck by natural and man-made disasters", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Take the necessary measures to bring itself up to date with the reporting obligations to treaty bodies", - "values": [ - "4 - General action" - ] - }, - { - "text": "Encourage human rights training for the security forces and law enforcement officials ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Create an independent national human rights institution in conformity with the Paris Principles ", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Take the necessary measures to ensure conditions of detention in prisons in conformity with the international standards ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Investigate sexual violence in conflict", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Strengthen programs of public health services, especially those related to reducing maternal and infantile mortality ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Seek the technical assistance of the international community, in light of the present stage of development in Laos, in order to provide it with needed assistance in strengthening the capacity of its national mechanisms responsible for preparing periodic reports for treaty bodies, and in training its law enforcement officials, judges and police officers in the area of human rights ", - "values": [ - "1 - Minimal action" - ] - }, - { - "text": "Continue efforts to enhance the work of departments in relation to hate crimes and discrimination", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Accelerate its ongoing transitional efforts with a view to acceding to the core international human rights treaties", - "values": [ - "4 - General action" - ] - }, - { - "text": "Continue strengthening the national democratic institutions", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Accede to the Second Optional Protocol of the ICCPR", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Both the Government and armed groups immediately take necessary steps to cease all forms of conflict and ensure humanitarian access for internally displaced persons ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Make further efforts and take the legislative and administrative measures necessary to eliminate discrimination against persons with disabilities on the ground", - "values": [ - "4 - General action" - ] - }, - { - "text": "Raise the minimum age for marriage for both boys and girls to 18 ", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Take further measures to combat racial discrimination, xenophobia and other forms of intolerance", - "values": [ - "4 - General action" - ] - }, - { - "text": "Adopt an overarching national action plan on human rights", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Implement measures to prevent and punish violence against Roma women so that they are able to enjoy their rights without prejudice.", - "values": [ - "4 - General action" - ] - }, - { - "text": "Continue providing access to quality education without discrimination for the population of school age throughout the country ", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Ratify the Second Optional Protocol to the International Covenant on Civil and Political Rights and therefore proceed with the abolishment of the death penalty once and for all ", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Rescue and protect the children held by terrorist groups, develop a programme for the disarmament, demobilisation and reintegration of these children into society, and sanction the recruitment of child soldiers by the Peruvian Armed Forces ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Take the necessary measures to effectively promote and strengthen family and moral values", - "values": [ - "4 - General action" - ] - }, - { - "text": "Ensure equal access to equality maternal health and related services as an integral part of the realization of women's rights", - "values": [ - "4 - General action" - ] - }, - { - "text": "Continue taking measures in favour of development and to reduce the level of poverty", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Continue implement the national strategy to improve the well-being of the population", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Provide the NHRC with adequate funding and autonomy to ensure that the Commission can properly fulfil its mandate ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Fully align the national legislation with all obligations arising out of the Rome Statute of the International Criminal Court (ICC)", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Implement the national strategy to prevent domestic violence and provide training for relevant officials on domestic violence ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Continue to take tangible measures to guarantee equal treatment of Roma and other minorities to promote the right to work and to better integrate them into the society ", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Review and amend the Foreign Contribution (Regulation) Act, which may restrict the access of NGOs to foreign financial assistance and lead to their arbitrary shut-down", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Seek technical assistance and capacity-building support from relevant United Nations agencies as well as from other international organizations in the field of human rights, and provide human rights training for judges, public prosecutors, legal advisors and law enforcement agencies ", - "values": [ - "1 - Minimal action" - ] - }, - { - "text": "Increase efforts to address cases of sexual violence and exploitation against children, such as prostitution, through the judicial system, as recommended by the Committee on the Rights of the Child. ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Significantly simplify the procedures for the registration of civil society associations, organizations and foundations and ensure that the legal and political framework is in line with international standards", - "values": [ - "4 - General action" - ] - }, - { - "text": "Continue its efforts to combat poverty and social disparities ", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Continue implementing ongoing socio-economic development projects and programmes, in particular those aimed at combating poverty", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Continue to promote the empowerment of women", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Submit promptly all due reports to international treaty bodies ", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Pursue its efforts with a view to facilitating access to housing for marginalized and low-income groups", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Pass and implement legislation aimed specifically at eliminating all forms of child labour ", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Strengthen measures aimed at social protection of refugees, migrant workers and members of their families", - "values": [ - "4 - General action" - ] - }, - { - "text": "Establish a national human rights institution which is in conformity with the Paris Principles", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Continue to strengthen and support the effectiveness of the Georgian National Preventive Mechanism", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Adopt a comprehensive law to fight violence against women ", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Continue its implementation of the poverty alleviation policies, in particular through the Kazi Kwa Vijana programme, and share its experiences in this regard ", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Submit its overdue reports to the treaty bodies", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Improve living conditions for detainees and take appropriate steps to reduce long terms of preventive detention", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Amend existing law by incorporating sexual offences against children, including forced sexual relations and sexual exploitation ", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Amend or repeal all policies that restrict the rights to freedom of expression, assembly, and the right to access information and free press", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Fully enforce the 2013 Family Protection Act, which criminalizes domestic and sexual violence and gives the police the power to arrest and prosecute perpetrators, as a matter of priority", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Improve the implementation of national legislation on sexual violence and ensure that perpetrators are brought to justice", - "values": [ - "4 - General action" - ] - }, - { - "text": "Increase and consolidate programmes and social measures aimed at reducing poverty and social exclusion based on just distribution of national wealth, which will make it possible to move towards the greatest possible wellbeing for their people, for which it is necessary to count on international cooperation and technical assistance ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Strengthen State mechanisms related to the care for the most vulnerable groups in need of protection, such as women, children and persons with disabilities", - "values": [ - "4 - General action" - ] - }, - { - "text": "That the Ministry of Education fully implement the National Plan of Action for Inclusive Education for Roma children in school", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Take steps to put an end to extrajudicial executions, enforced disappearances, illegal arrests and acts of torture perpetrated by the police corps, and private security or paramilitary groups, and to investigate actions of the police dismantling all groups created in the margin of law", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Continue its policy to establish an environment for constructive dialogue and trust between the different religions in the country", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Ensure the availability of good quality medicines at an appropriate price, especially for the disadvantaged, the vulnerable and the poor", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Implement the three draft laws aimed at promoting the independence and efficiency of the judiciary system once adopted", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Continue working to eliminate gender stereotypes and conduct awareness-raising campaigns at the national level in order to combat it", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Improve the submission of reports to the treaty bodies and strengthen its capacity-building in this sphere", - "values": [ - "4 - General action" - ] - }, - { - "text": "Take the necessary measures to ensure that all persons who have allegedly committed war crimes are tried before the national courts and that victims receive due redress", - "values": [ - "4 - General action" - ] - }, - { - "text": "Repeal laws that negatively impact religious freedom, such as those that limit the right of women and minors to participate in religious activities, ban some minority religious groups and penalize unauthorized religious activity ", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Redouble efforts to protect and improve the rights of disabled children", - "values": [ - "4 - General action" - ] - }, - { - "text": "Effectively address the difficulties experienced by migrants, particularly women migrants.", - "values": [ - "4 - General action" - ] - }, - { - "text": "Improve the sanitary situation in the northern provinces where the majority of indigenous people live, in accordance with the cultural characteristics of that group of Argentinian society", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Continue to consolidate its economic and social programmes for the betterment of its people and the full realisation of their human rights ", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Continue efforts to promote the participation of women in political, economic, social and all other spheres", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Accede to the Second Optional Protocol to the International Covenant on Civil and Political Rights and adjust the legislation, and in the meantime, officially enshrine the current de facto moratorium on the death penalty ", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Strengthen the efforts towards upgrading the facilities and capacity for quality education for all children, including special education, and improve the access to education for children living in remote areas", - "values": [ - "4 - General action" - ] - }, - { - "text": "Establish accountability for conflict-era human rights abuses through the formation of the Truth and Reconciliation Commission and Disappearance Commission, as agreed to in the Comprehensive Peace Agreement ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Continue to reinforce actions aimed at the protection of children against violence and other forms of maltreatment", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Enhance efforts to ensure equality of opportunity for women and men in the labour market.", - "values": [ - "4 - General action" - ] - }, - { - "text": "Undertake a national process to harmonize legislation, including local laws, with international human rights obligations", - "values": [ - "4 - General action" - ] - }, - { - "text": "Put an end to all human rights violations and release all political prisoners, civil society activists and journalists, end all practices of torture and eliminate all forms of extrajudicial executions ", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Accede to the International Covenant on Civil and Political Rights and its two Optional Protocols, to the International Covenant on Economic, Social and Cultural Rights and its Optional Protocol and the three Optional Protocols to the Convention on the Rights of the Child", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Take concrete measures to strengthen its policies of promotion and protection of LGBT people, through public policies which combat hate crimes against those individuals", - "values": [ - "4 - General action" - ] - }, - { - "text": "Adopt measures in order to strengthen the knowledge of the Elimination of Violence against Women Law within the police and the judiciary to guarantee effective implementation of the law ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Ensure full respect for freedom of expression and opinion, including the freedom of the media, and guarantee unfettered access for all persons in Iran to domestic and foreign media information, both offline and online", - "values": [ - "4 - General action" - ] - }, - { - "text": "Develop a National Resilience Strategy for natural disasters that protects the development and subsistence methods, in order to have the possibility of guaranteeing the economic and social rights of the population", - "values": [ - "4 - General action" - ] - }, - { - "text": "Continue working with bilateral, regional and international partners to address trafficking in persons", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Implement the recommendations of the Committee on the Rights of the Child, particularly with regard to street children and child labour", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Ban organizations which promote and instigate racial discrimination and hatred", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Adopt a general law that sanctions discrimination for any reason, in particular against women and lesbian, gay, bisexual, transgender and intersex (LGTBI) persons", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Ensure prompt, comprehensive, and effective investigations into credible allegations of human rights violations by members of the security forces, and examine options for establishing an independent review mechanism with the ability to recommend prosecutions ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Provide the national commission for combatting trafficking in persons with the appropriate human and financial resources to enable it to carry out its tasks in the best way", - "values": [ - "4 - General action" - ] - }, - { - "text": "Continue to pursue its several financing mechanisms to address the root causes of undocumented migration in Africa, and extend the scope of such programmes beyond Africa, with assistance from the international community ", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Initiate awareness-raising campaigns in schools to further promote the rights of women ", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Enforce Seychelles' international human rights obligations and constitutional guarantees regarding the rights to freedom of religion, association and expression", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Strengthen the fight against violence against children and the care of abandoned children", - "values": [ - "4 - General action" - ] - }, - { - "text": "Formalize the statelessness determination procedure and ensure the procedure is fair, effective and accessible to all persons in Switzerland regardless of their legal status, ensure that the definition of \u201cstatelessness person\u201c is fully consistent with the definition provided in the 1954 Convention relating to the Status of Stateless Persons", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Endeavour to adopt readily workable measures aimed at improving the capacity of its institutions to fully address the socio-cultural impediments to the promotion and protection of human rights. ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Strengthen legislation to combat incitement to hate and discrimination on the grounds of ethnicity, culture, religion or nationality, particularly when it comes in political statements or from public officials", - "values": [ - "4 - General action" - ] - }, - { - "text": "Continue to give high priority to the promotion of women, children, persons with disabilities and migrants rights ", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Continue taking measures to eliminate human trafficking ", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Consider the recommendation of the special rapporteur on violence against women who expressed concern that the violence has resulted in the form of a culture of impunity", - "values": [ - "3 - Considering action" - ] - }, - { - "text": "Repeal the provisions that allow persons with disabilities to be subject to medication and psychiatric treatment without their consent", - "values": [ - "4 - General action" - ] - }, - { - "text": "Strengthen further the links of cooperation and coordination with civil society as regards the promotion and protection of human rights", - "values": [ - "4 - General action" - ] - }, - { - "text": "Adopt a proactive approach to implement any recommendations of the Government's commission of enquiry aimed at protecting the rights of detained persons.", - "values": [ - "4 - General action" - ] - }, - { - "text": "In conformity with articles 31 and 32 of the CED, recognize the competence of the respective monitoring body to receive and consider communications from individuals and States that allege that they have been victims of violations of the provisions of the Convention ", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Step up relevant measures in order to protect and promote the rights of the socially vulnerable, inter alia through an enhancement of the legal system pertaining to this area ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Submit the overdue report to the Committee on Enforced Disappearances", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Continue to ensure legal protection for women and girls subjected to gender-based violence and trafficking", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Implement the Strategic Plan for the prevention, detection, and repression regarding violence against women, and ensure that relevant departments have adequate resources to implement the Plan ", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Take effective measures to further strengthen the implementation of its legal framework to combat sub-standard housing for individuals and families who live in sub-standard housing characterized by the unsafe and unhealthy conditions", - "values": [ - "4 - General action" - ] - }, - { - "text": "Continue to strengthen efforts taken by the police to combat hate crime based on ethnicity and ensure effective handling of such cases", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Study the possibility of becoming a party to the following international instruments: the International Convention for the Protection of All Persons from Enforced Disappearance", - "values": [ - "3 - Considering action" - ] - }, - { - "text": "Engage in a dialogue to repeal laws which criminalize consensual adult same sex relations", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Consider accession to the Protocol to the United Nations Convention on Transnational Organized Crime to prevent, suppress and punish trafficking in persons, especially women and children", - "values": [ - "3 - Considering action" - ] - }, - { - "text": "Bring its law on mass media in line with international standards on press freedom and ensure that civil society and human rights defenders can peacefully and without fear of arbitrary arrest exercise their right to freedom of expression, assembly and association, in conformity with the International Covenant on Civil and Political Rights", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Ensure a free and enabling environment for the work of civil society organizations and create a strategy to protect human rights defenders and civic activists, ensuring they are not persecuted, harassed or publicly stigmatized for their work and the exercise of their rights", - "values": [ - "4 - General action" - ] - }, - { - "text": "Complete the process of accession to the Optional Protocol to the Convention on the Rights of the Child on the sale of children", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Take all necessary measures for the effective implementation of the national strategic plan to reduce maternal mortality 2012-2016 ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Continue working to eliminate all forms of stigmatization or discrimination based on sexual orientation or gender identity", - "values": [ - "3 - Considering action" - ] - }, - { - "text": "Improve the implementation of the National Action Plan on Female Genital Mutilation, by strengthening it with awareness-raising campaigns and by working with traditional leaders in order to fully eradicate this practice, while strengthening likewise the means and initiatives of the National Committee for the Elimination of Harmful Practices", - "values": [ - "4 - General action" - ] - }, - { - "text": "Devise plans and strategies enabling it to reach out to remote areas and members of the population and hence improve their living conditions and ensure the protection of their rights.", - "values": [ - "4 - General action" - ] - }, - { - "text": "Continue its efforts in promoting gender equality, including expanding the role of women in its national development by providing the necessary financial and human resources to strengthen the implementation of policies and programmes for the empowerment of women in social and public life", - "values": [ - "4 - General action" - ] - }, - { - "text": "Welcome an amendment to its Juvenile Justice Law and set the minimum age of criminal responsibility at 16 years of age ", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Colombia will continue to make efforts to protect the general public from these bands. It appeals for international support in combating the drug trafficking which supports their existence and ensuring that the logistics, money and individuals involved in the violence have nowhere to go. Particular attention will be paid to the pursuit of strategies to prevent recruitment and the effects of doing so on women and girls.", - "values": [ - "3 - Considering action" - ] - }, - { - "text": "Ensure that conditions are created so that any reports of violations committed by law enforcement officials are investigated independently, impartially and in a timely manner ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Extend an open invitation to the special procedures and follow the recommendations they have provided as well as those of the treaty bodies", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Ratify the Rome Statute of the International Criminal Court, including accession to the Agreement on the Privileges and Immunities of the International Criminal Court", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Continue its cooperation with different human rights mechanisms of the United Nations in order to promote and protect human rights in the country ", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Formulate human rights training programmes to spread awareness among the civil service, particularly law enforcement officials and members of the judiciary ", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Strengthen efforts and take additional steps, in particular beyond the adoption of legislation, to prevent discrimination on the basis of ethnicity in all aspects of daily life ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Make additional efforts in the process of achieving the MDGs by 2015 ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Protect opposition party members, journalists and human rights defenders from harassment and arbitrary arrest and lift all restrictions to peaceful demonstrations ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Investigate all violations of humanitarian law by terrorists groups", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Apply provisions of its hate-speech law in a non-selective manner to cover all acts and incidents that may lead to incitement to racial and religious hatred and violence", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Strengthen Government oversight of its rough diamond sector, as well as its engagement in collaborative initiatives to enhance the enforcement of the certification scheme in the West African region", - "values": [ - "4 - General action" - ] - }, - { - "text": "Take all necessary measures for the protection of the rights of children, to prevent the recruitment of child soldiers by parties to the conflict and to establish mechanisms for the reintegration of demobilized children ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Make further efforts to establish a national mechanism to prevent and prohibit the use of torture", - "values": [ - "4 - General action" - ] - }, - { - "text": "Ensure security measures under the state of emergency or counter-terrorism laws and maintain the human rights of suspects, detainees and their families", - "values": [ - "4 - General action" - ] - }, - { - "text": "Review national legislation on the basis of current international standards in order to effectively criminalize acts of torture and cruel, inhuman and degrading treatment", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Activate efforts to eradicate the expressions of hatred, persecution and harassment on ethnic, cultural and linguistic grounds through partnerships and establishing trust and dialogue between religions and cultures and see this as of respecting human rights", - "values": [ - "4 - General action" - ] - }, - { - "text": "Consider the possibility of establishing a national body for the promotion and protection of human rights in accordance with the Paris Principles ", - "values": [ - "3 - Considering action" - ] - }, - { - "text": "Sign and ratify the Convention on the Rights of Persons with Disabilities", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Eliminate all forms of violence against women in detention places by some members of the judicial police and the need to prosecute them and avoid impunity", - "values": [ - "4 - General action" - ] - }, - { - "text": "Maintain the legal effects, scope and effectiveness of the Human Rights Act in the adoption of new legislation", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Support the efforts of the national mechanism for the follow-up of universal periodic review recommendations through the establishment of an online monitoring system", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Continue implementing its development plans, since development is an inalienable right, and support practical efforts to achieve development and to strengthen institutional capacities, focusing on the Government's priorities which are education, social welfare and health services, and develop an effective national plan to combat human trafficking in cooperation with neighbouring countries", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Source more funds for capacity building in order to strengthen various institutions ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Prioritize the approval of the draft law on reparations", - "values": [ - "4 - General action" - ] - }, - { - "text": "Step up efforts to prevent all forms of violence against women, including sexual abuse and domestic violence by finally adopting a comprehensive National Action Plan to punish perpetrators and provide assistance and recovery for victims as well as eradicate harmful traditions such as FGM", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Ratify Convention No. 169 of the International Labour Organization", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Incorporate a human rights perspective in its legal and regulatory framework on combating substance abuse and undertake transparent narcotic law enforcement, active campaign against drug use to the public, and rehabilitation programmes", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Ensure the full and effective implementation of the Constitution to deliver the better enjoyment of human rights for the people of Turkmenistan.", - "values": [ - "4 - General action" - ] - }, - { - "text": "Consider increasing the financial resources allocated to programmes combating violence against women ", - "values": [ - "3 - Considering action" - ] - }, - { - "text": "Consider the possibility of accepting the competence of the Committee on Enforced Disappearance provided for under CED ", - "values": [ - "3 - Considering action" - ] - }, - { - "text": "Raise awareness regarding human rights and the rule of law.", - "values": [ - "4 - General action" - ] - }, - { - "text": "Take effective measures to strengthen gender equality, in particular eliminate occupational segregation", - "values": [ - "4 - General action" - ] - }, - { - "text": "Strengthen its efforts to eliminate all forms of violence and discrimination against women and children", - "values": [ - "4 - General action" - ] - }, - { - "text": "In cooperation with UNESCO and relevant UN agencies continues to enhance its education system and improve access to quality education by all", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Ratify the OP-CAT as recommended previously in 2009 and take policy measures to prevent torture and illtreatment ", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Strengthen national policies in the area of public health coverage, particularly in the fight against HIV/AIDS in rural areas", - "values": [ - "4 - General action" - ] - }, - { - "text": "Reform the juvenile justice system in accordance with, among others, the Convention on the Rights of the Child, the Beijing Rules and Riyadh Guidelines ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Take measures to guarantee the right to equal education for Roma children ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Create and implement public information programmes to combat anti-Roma prejudice, as recommended by the Human Rights Committee, and to harmonize civil registration procedures, as indicated by the United Nations High Commissioner for Refugees", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Revise the law on "foreign agents" and adopt measures in order to facilitate and enhance dialogue and practical cooperation between Government and civil society ", - "values": [ - "3 - Considering action" - ] - }, - { - "text": "Take the necessary measures to ensure the full implementation of laws on the promotion and protection of the rights of the child ", - "values": [ - "4 - General action" - ] - }, - { - "text": "With regard to indigenous peoples issues, Costa Rica highlighted the commitment of the Presidency to continue with the processes of dialogue at the highest level, mainly with regard to conflicts relating to land tenure and the security of its inhabitants, as well as other important issues, such as education, health, housing and social security of the indigenous peoples of Costa Rica. The delegation also referred to the willingness of the new administration to elaborate a comprehensive strategy to address the situation of the territorial rights of the indigenous peoples of Costa Rica.", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Continue to update and develop strategies to combat discrimination against women", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Ratify the ICCPR, which it signed in 1998 ", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "A speedy conclusion to these cases (of human rights violations against peaceful protestors), such as the ongoing case of Abdulhadi AlKhawaja", - "values": [ - "4 - General action" - ] - }, - { - "text": "Continue working on the harmonization of its legislative domestic framework with the international human rights instruments to which it is a party", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Continue its efforts to strengthen the rule of law by preventing human rights violations and impunity by law enforcing agencies ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Prohibit all corporal punishment of children, including in the home and all other settings, and explicitly repeal the right to discipline children according to "general custom" in the Penal Law", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Ratify the CPED recognizing the compulsory jurisdiction of the Committee to receive individual complaints", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Continue its efforts to correct the discriminatory practices and institutions against women throughout society, and take active measures to reduce social elements that could contribute to acquiescence or passivity with regard to domestic violence as demonstrated in its UPR report", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Continue to adopt legislation that would eliminate practices and cultural stereotypes that discriminate against women, especially discriminatory practices in the areas of land ownership, assets management and inheritance, all of which restrict women's access to economic resources and, thus, to women's autonomy", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Continue to incorporate the provisions of the Convention on the Rights of the Child and the African Charter on the Rights and Welfare of the Child into national legislation.", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Continue its close cooperation with the United Nations bodies and mechanisms to implement the National Human Rights Action Plan", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Thoroughly investigate cases of hate crimes and fully prosecute those responsible for acts of incitement to violence", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Establish a moratorium on the execution of the death penalty", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Continue to implement measures within the framework of the presidential decree that set the framework for addressing the situation of unaccompanied minors ", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Appoint without further delay independent and qualified members of the whole national preventive mechanism to enable the mechanism to function in accordance with the aims and objectives of the Optional Protocol to the Convention against Torture", - "values": [ - "4 - General action" - ] - }, - { - "text": "Further ensure, in a sustainable way, the education in minority languages", - "values": [ - "4 - General action" - ] - }, - { - "text": "Speed up the introduction of a reform of the justice system including the penitentiary centres and national police", - "values": [ - "4 - General action" - ] - }, - { - "text": "Consider the possibility of ratifying ICRMW of 1990", - "values": [ - "3 - Considering action" - ] - }, - { - "text": "Promote the inclusion and political participation of all ethnic minorities ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Take steps to increase the efficiency and transparency of its judicial institutions, and eliminate lengthy pretrial detentions ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Urgently address the needs of the Rohingya community by: guaranteeing security, ensuring full humanitarian access across Rakhine, removing restrictions on freedom of movement, and establishing a pathway to citizenship", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Do not to admit as evidence confessions obtained through torture or other illegal means", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Take steps to ensure the acceptance and general public knowledge of the existing measures for the legal protection of children, in particular with regard to children with disabilities", - "values": [ - "4 - General action" - ] - }, - { - "text": "Ratify the International Covenant on Economic, Social and Cultural Rights and its Optional Protocol and the Optional Protocol to the Convention on the Rights of the Child on a communications procedure", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Accede to the human rights conventions and protocols to which Kenya is not yet a party ", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Make further efforts to address HIV/AIDS including by providing equal-opportunity treatment and assistance and continue measures to eliminate HIV/AIDS-related discrimination ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Continue its efforts and positive initiatives in guaranteeing indigenous peoples' access to education, healthcare and judicial assistance", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Request technical assistance from the United Nations to meet its international human rights obligations, as stated by the Committee on the Rights of the Child ", - "values": [ - "1 - Minimal action" - ] - }, - { - "text": "Amend legislation governing radio, television and communications to fully guarantee the openness, transparency and the diversity of the media in the country ", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Ratify the Second Optional Protocol to the International Covenant on Civil and Political Rights, aiming at abolition of the death penalty ", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Continue to implement the national action plan to combat racism in order to eliminate xenophobia and Islamophobia", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Amend its legislation on asylum seekers and adopt a national programme for the integration of refugees", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Consider ratifying the International Convention for the Protection of All Persons from Enforced Disappearance, the Conventions relating to the Status of Refugees and the Status of Stateless Persons and the Rome Statute of the International Criminal Court.", - "values": [ - "3 - Considering action" - ] - }, - { - "text": "Adopt comprehensive legislation on the prohibition of racial discrimination and xenophobia", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Continue combating all forms of discrimination against women", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Investigate thoroughly, promptly and impartially all allegations of intimidation and violence against journalists and human rights defenders and bring the perpetrators to justice ", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Encourage the National Assembly to pass legislation that would enable Armenia to more fully comply with its international human rights obligations, including expanding the definition of torture in its domestic law to include crimes committed by public officials in their official capacities, and criminalizing domestic violence", - "values": [ - "4 - General action" - ] - }, - { - "text": "Review Penal Code clauses on defamation in line with international standards and make public results ", - "values": [ - "3 - Considering action" - ] - }, - { - "text": "Abolish capital punishment and commute death sentences to prison terms", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Continue its efforts to build reconciliation among different sectors in the society, based on the principles of democracy and the rule of law", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Reform its criminal justice system and ensure the age of criminal responsibility is in line with international standards", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Provide adequate protection to asylum seekers as required by relevant international norms including the principle of non-refoulement and to consider ratifying the Convention on Refugees", - "values": [ - "4 - General action" - ] - }, - { - "text": "Ensure the rights of indigenous peoples and local forest dependent peoples in law and practice, in particular regarding their right to traditional lands, territories and resources", - "values": [ - "4 - General action" - ] - }, - { - "text": "Deepen the measures to change traditional practices and stereotypes that violate the civil, political, social and economic rights of women and prevent them from having a situation of equality with regard to men/having equality with men ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Take all the necessary measures to improve the effectiveness and transparency of efforts aimed at combating corruption, in particular by intensifying its efforts to diligently and rapidly respond to the recommendations and questions of the national ombudsman", - "values": [ - "4 - General action" - ] - }, - { - "text": "Continue with efforts in order to counter racism within the German society in particular racism against Roma-Sinti and Muslims.", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Establish a National Action Plan for the Implementation of Security Council Resolution 1325", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Ratify the International Convention for the Protection of All Persons from Enforced Disappearance and recognize the competence of the Committee on Enforced Disappearances to receive and consider communications from or on behalf of victims and other States parties", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Conduct campaigns for the elimination of discrimination against women.", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Address the situation of children living or working on the street and juvenile offenders - intensify measures to criminalize and sanction cases involving the sale of children, child prostitution and child pornography - and initiate reforms of the juvenile justice system in line with international standards ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Intensify awareness campaigns aimed at changing social attitudes and behaviour patterns that form the basis for violence against women, including homicides motivated by prejudice against women", - "values": [ - "4 - General action" - ] - }, - { - "text": "Develop a strategy to effectively combat the public expression of racial intolerance ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Adopt concrete measures to better integrate migrant workers, with special attention to combating human trafficking and discrimination", - "values": [ - "4 - General action" - ] - }, - { - "text": "Respect and protect the rights of human rights defenders and journalist to undertake their legitimate work without fear of criminal prosecutions or other pressure", - "values": [ - "4 - General action" - ] - }, - { - "text": "Reform provisions of the civil code that discriminate against women, such as those that set a minimum age of 12 for marriage, prohibit widows and divorced women from getting married again before 300 days, or provide a food pension for women who lead a disorganized life.", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Step up efforts to protect the rights of migrants ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Consider establishing and implementing a comprehensive asylum system consistent with international and regional standards on protection and reception of asylum-seekers and irregular migrants, with an allocation of adequate resources ", - "values": [ - "3 - Considering action" - ] - }, - { - "text": "Move forward, at the earliest possible opportunity, with the adoption of the draft Water Act to establish a legal framework and put in place water resources and sanitation infrastructure, including adequate collection, storage and distribution mechanisms to alleviate the challenges of scarcity and to ensure that all its citizen's right to safe drinking water and sanitation are safeguarded ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Continue to work in a concrete manner toward improving the status of women ", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Put an end to the increasing violent attacks and hate crimes against the Roma and punish those responsible", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Review the provisions restricting the voting rights of persons with disabilities", - "values": [ - "3 - Considering action" - ] - }, - { - "text": "Strictly adhere to international human rights law and international humanitarian law and international refugee law in its fight against terrorism", - "values": [ - "4 - General action" - ] - }, - { - "text": "Decriminalize defamation and misinformation and remove all undue restrictions on freedom of expression from the Penal Code, the Law on Publications and the newly adopted Internet law in conformity with the country's international human rights obligations", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Regularly publish detailed statistics on death penalty use", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Continue to allocate sufficient financial and human resources to the human rights institutions in order for them to be able to fulfil their mandate ", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Finalise the consideration to become a party to the Convention on the Rights of Persons with Disabilities ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Continue to focus on human rights education through awareness-raising campaigns as well as necessary legislation", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Initiate investigations into all allegations of torture or other forms of ill-treatment in a thorough, impartial and independent manner and bring to justice, prosecute and punish all alleged perpetrators of torture or other forms of ill-treatment.", - "values": [ - "4 - General action" - ] - }, - { - "text": "Ensure the institutionalization of an independent national human rights commission in conformity with the Paris Principles", - "values": [ - "4 - General action" - ] - }, - { - "text": "Intensify its actions in guaranteeing the right to equality and non-discrimination on the basis of sexual orientation, gender identity and/or expression", - "values": [ - "4 - General action" - ] - }, - { - "text": "Ratify ICERD and CRPD", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Combat discrimination and harassment with regard to girls in schools", - "values": [ - "4 - General action" - ] - }, - { - "text": "Submission of the outcome document and the action plan to parliament", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Continue its efforts in the struggle for the elimination of all forms of racial discrimination and xenophobia, especially those forms which are a violation of the human rights of minorities", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Reinforce and systematize age verification procedures for the recruitment into the armed forces", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Continue its efforts to eradicate child labour and further enhance the protection of the rights of the child", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Complete the adoption of the new children's act in line with the obligations of Maldives under the Convention on the Rights of the Child", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Adopt measures to decrease the number of homeless persons, including through the availability of social housing", - "values": [ - "4 - General action" - ] - }, - { - "text": "Continue its efforts to eliminate child marriage, including through considering to set the age of entry into marriage at 18 years", - "values": [ - "3 - Considering action" - ] - }, - { - "text": "Take effective measures to reduce poverty and unemployment in the country", - "values": [ - "4 - General action" - ] - }, - { - "text": "Take appropriate measures, in accordance with its international obligations, aimed at ensuring universal education, including free and compulsory primary education ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Advance with the agenda for the indigenous peoples\u2019 right to free, prior and informed consent", - "values": [ - "4 - General action" - ] - }, - { - "text": "Amend the Domestic Violence Act, in particular to clarify the definition of sexual harm and broaden the definition of domestic violence to also include threats of violence, as well as include all types of physical harm", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Issue a standing invitation to all thematic special procedures", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Explicitly criminalize spousal rape", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Strengthen its cooperation with civil society organizations for the promotion and protection of human rights in the area of health services ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Ratify Additional Protocols I and II to the Geneva Conventions of 12 August 1949", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Preserve its model of peaceful coexistence of different religious faiths and cultural identities, which was working so well in the Syrian Arab Republic until a few years ago, Continue raising awareness about the dangers of excluding ideologies", - "values": [ - "4 - General action" - ] - }, - { - "text": "Set up a legal framework to recognize indigenous peoples\u2019 rights to have access to and manage their territories of origin and their natural resources, and to participate in the decision-making processes on those matters concerning them", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Work towards a moratorium on executions with a view of abolishing the death penalty", - "values": [ - "4 - General action" - ] - }, - { - "text": "Incorporate its international human rights obligations into domestic law by elaborating a comprehensive, judicially enforceable Human Rights Act to ensure legislative protection of human rights ", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Intensify efforts to develop a human rights education system and to strengthen the culture of human rights ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Continue the ongoing work on labour sector reform ", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Share its experiences and good practices in promoting human rights and democratic ideas within Islam and eliminating negative references to adherents of other religions in its school curriculum and textbooks", - "values": [ - "1 - Minimal action" - ] - }, - { - "text": "Take all necessary measures to ensure greater effectiveness of legislation on hate crimes", - "values": [ - "4 - General action" - ] - }, - { - "text": "Develop efficient programmes designed to enhance the human rights knowledge of law enforcement officials", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Combat violence against women by putting an end to impunity in this area", - "values": [ - "4 - General action" - ] - }, - { - "text": "Effectively investigate and prosecute crimes and violations against human rights defenders and journalists ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Extend an open invitation to the special procedures of the United Nations", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Develop appropriate legal frameworks for the enjoyment of the right to work and to just and favourable conditions of work to all migrant workers especially domestic workers", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Develop programmes and policies that foster norms and attitudes of zero tolerance for harmful and discriminatory attitudes towards gender, including the preference for sons, which can result in harmful and unethical practices such as prenatal sex selection ", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Continue the national efforts in the framework of the new National Action Plan against Human Trafficking to prevent and combat human trafficking and ensure the rehabilitation of victims", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Abolish section 148 of the Criminal Code, which criminalizes consensual sexual practices between persons of the same sex, as a step towards decreasing discrimination of same-sex relationships", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Consider ratifying the Convention for the Protection of all Persons against Enforced Disappearance and the Optional Protocol to the Convention on the Elimination of All Forms of Discrimination against Women.", - "values": [ - "3 - Considering action" - ] - }, - { - "text": "Ensure that non-Danish residents can also fully enjoy their basic human rights, paying special attention to access to justice ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Recalling General Assembly resolution 62-149, establish a moratorium on executions with a view to abolishing the death penalty", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Take necessary measures to ensure that local authorities respect the religious freedom of minority religious groups and treat all religious groups equally", - "values": [ - "4 - General action" - ] - }, - { - "text": "Continue efforts in providing all with basic education", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Sign the Optional Protocol to the Covenant on Economic, Social and Cultural Rights", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Ensure that effective investigations of incitement and agitation to hatred and violence, and hate crimes on grounds of sexual orientation and/or gender identity are carried out", - "values": [ - "4 - General action" - ] - }, - { - "text": "Put in place a comprehensive strategy to eliminate patriarchal attitudes and stereotypes that discriminate against women", - "values": [ - "4 - General action" - ] - }, - { - "text": "Take concrete measures aimed at preventing and punishing the perpetrators of hate speech and incitement of violent attacks against ethnic and religious minorities", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Continue to focus on reducing poverty and curbing the spread of AIDS in its efforts to improve the protection of human rights ", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Continue its considerable efforts to integrate human rights education in the school programmes and textbooks ", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Adopt further administrative and educational measures to narrow and close the wage gap and enact equal pay for work of equal value.", - "values": [ - "4 - General action" - ] - }, - { - "text": "Consider ratifying, and implementing in national law, the outstanding core international human rights treaties, in particular ICESCR, and ICCPR", - "values": [ - "3 - Considering action" - ] - }, - { - "text": "Pursue its policy aiming at enshrining human rights principles into national legislation in accordance to international standards as well as to continue its constructive cooperation with international human rights mechanisms", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "The delegation stated that the new Government was fully committed to the protection of the rights of LGBTI persons.", - "values": [ - "4 - General action" - ] - }, - { - "text": "Incorporate the World Programme on Human Rights Education and Training, particularly its second step, to its national programmes ", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Enact without delay legislation on domestic violence, including marital rape and all forms of sexual abuse, and strengthen its awareness-raising and educational efforts to address the health consequences of female genital mutilation and provide medical support to those affected by it ", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Ensure freedom of assembly and association and recognize the importance of trade unions and a diverse civil society in a democracy ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Consider establishing and improving the juvenile justice system ", - "values": [ - "3 - Considering action" - ] - }, - { - "text": "Enact comprehensive anti-trafficking legislation to ensure that everyone, including those under 18, is protected in accordance with the Protocol to Prevent, Suppress and Punish Trafficking in Persons, Especially Women and Children, supplementing the United Nations Convention against Transnational Organized Crime", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Seek assistance from the international community to take up the various challenges confronting it.", - "values": [ - "1 - Minimal action" - ] - }, - { - "text": "Develop effective law enforcement tools to monitor and prevent online hate crimes", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Abolish de jure the death penalty and ratify ICCPR-OP 2 ", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Provide the National Commission for the Rights of the Child with the necessary resources to ensure that it is able to carry out its mandate", - "values": [ - "4 - General action" - ] - }, - { - "text": "Ensure that all consultation and consent duties are respected by all responsible government agencies at federal and provincial level as well as to ensure that the relevant recommendations of United Nations treaty bodies are fully taken into account and that the specific claims processes do not restrict the progressive development of Aboriginal rights in the country", - "values": [ - "4 - General action" - ] - }, - { - "text": "Issue a standing invitation to all special procedures and, in particular, that it seeks visits by the Special Rapporteurs on freedom of religion or belief, freedom of expression, torture and violence against women.", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Consider ratifying ICCPR", - "values": [ - "3 - Considering action" - ] - }, - { - "text": "Accept the request of the Special Rapporteur on torture and the Special Rapporteur on the rights to freedom of peaceful assembly and of association", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Extend a standing invitation to all special procedures of the Council to further advance the respect of human rights ", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Ratify the First Optional Protocol to the ICCPR ", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Enhance awareness of women's rights and disseminate information on the remedies available to those who claim violations of their rights", - "values": [ - "4 - General action" - ] - }, - { - "text": "Continue to consolidate its human rights policies, particularly in the sphere of economic, social and cultural rights, in order to continue enhancing the quality of life of its people, especially the most vulnerable sectors of the population", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Set up an effective statistical data collection system, including with regards to complaints, investigations, proceedings, sentences and reparations related to cases of ill-treatment by law enforcement officials, in order to fully implement the Convention against Torture and its Optional Protocol", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Continue to make efforts to promote women's empowerment", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Consider ratifying the International Convention for the Protection of All Persons from Enforced Disappearance (CED)", - "values": [ - "3 - Considering action" - ] - }, - { - "text": "Promptly undertake measures to address allegations relating to instances of involuntary disappearances, arbitrary arrests, the routine use of torture, violence against women and girls, lack of judicial independence, impunity granted to the members of intelligence agencies, persecution of human rights defenders, and restriction of freedoms of expression and assembly, and carry out fundamental reforms of its laws, policies and practices with a view to improving the current dire human rights situation and preventing its recurrence", - "values": [ - "4 - General action" - ] - }, - { - "text": "Boost measures intended to achieve the elimination of all forms of ill-treatment of girls and women, in particular, strengthen efforts focusing on those communities still engaged in female genital mutilation", - "values": [ - "4 - General action" - ] - }, - { - "text": "Take immediate steps to end violence and discrimination against national or ethnic, linguistic and religious minorities", - "values": [ - "4 - General action" - ] - }, - { - "text": "Sign and accede to the International Convention on the Protection of the Rights of All Migrant Workers and Members of Their Families", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Pay attention to the provision of security and protection of schools and teachers from all attacks", - "values": [ - "4 - General action" - ] - }, - { - "text": "Ensure a safe working environment for journalists and continue to take proactive measures against impunity", - "values": [ - "4 - General action" - ] - }, - { - "text": "Implement the necessary measures to promote the rights of human rights defenders, with the purpose of protecting them against harassment, intimidation or physical violence", - "values": [ - "4 - General action" - ] - }, - { - "text": "Combat poverty among migrant workers ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Incorporate the Convention on the Elimination of all forms of Discrimination Against Women in its domestic law", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Accede to the OP-CEDAW, to further strengthen its commitment to the equality and protection of women", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Consider further improving existing legislation in order to close the gaps in the protection of women against discrimination ", - "values": [ - "3 - Considering action" - ] - }, - { - "text": "Ensure the registration of all new born as a way to generate reliable statistics and data", - "values": [ - "4 - General action" - ] - }, - { - "text": "Accede to the Convention on the Rights of Persons with Disabilities ", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Redouble efforts to promote and protect the rights of vulnerable groups such as children, women, people with disabilities and aged persons", - "values": [ - "4 - General action" - ] - }, - { - "text": "Consider adopting a structural resettlement programme for asylum seekers ", - "values": [ - "3 - Considering action" - ] - }, - { - "text": "Continue its impressive efforts towards realization of children rights, and in this context share its experiences on the work of the Ombudsperson for Children", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Ensure full compliance with the recommendations of the United Nations High Commissioner for Human Rights as contained in her report to the Human Rights Council of 15 September 2011, reference number A/HRC/18/53", - "values": [ - "4 - General action" - ] - }, - { - "text": "Ratify the Kampala amendments to the Rome Statute, if possible with a view to contributing to the activation of the jurisdiction of the International Criminal Court over the crime of aggression at the beginning of 2017", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Ensure the right of individuals and organizations to defend and promote human rights, including protection and promotion of the rights of freedom of expression, assembly and association ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Ensure that security sector reform remains a priority and that the civilian Government retains control of the military and ensures its respect for the rule of law", - "values": [ - "4 - General action" - ] - }, - { - "text": "Take steps to ensure that employment standards for domestic workers are fully implemented and respected ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Identify, revise or repeal all provisions of the Penal Code and the Criminal Procedure Code which are in conflict with the Optional Protocol to the International Covenant on Civil and Political Rights on the abolition of the death penalty", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Strengthen efforts to combat sexual violence against women and children, including through the development and strengthening of relevant laws", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Decriminalize sexual relations between consenting, same-sex individuals and establish educational programmes and appropriate policies for police that promote the personal security of all Benin citizens regardless of sexual orientation", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Strengthen the poverty reduction programmes by paying specific attention to the economic, social and cultural rights of the most disadvantaged and fighting against regional disparities in terms of their development", - "values": [ - "4 - General action" - ] - }, - { - "text": "Accelerate progress towards abolishing the death penalty", - "values": [ - "4 - General action" - ] - }, - { - "text": "Continue to guarantee young people the access to legal assistance in conformity with the law", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Ratify the Optional Protocol to ICESCR ", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Take more active measures to abolish all forms of slavery in practice", - "values": [ - "4 - General action" - ] - }, - { - "text": "Continue efforts for greater representation of women in the political process and their participation in public life", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Harmonize national legislation with standards and requirements contemplated in international human rights instruments ratified by Jordan", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Undertake to provide free and accessible health care for children up to the age of 6 years by 2015", - "values": [ - "4 - General action" - ] - }, - { - "text": "Continue its efforts to consolidate greater representation of women in decision-making positions, both in public administration and the private sector ", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Reinforce the relevant legal framework in order to contrast discrimination on the basis of sexual orientation", - "values": [ - "4 - General action" - ] - }, - { - "text": "Engage members of the international community with a view to building capacity, particularly with regard to securing improvements in the human rights situation of its population", - "values": [ - "1 - Minimal action" - ] - }, - { - "text": "Ensure equal protection from all forms of discrimination, including by extending the scope of anti-discrimination regulations, by including the grounds of religion and belief, age and gender identity", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Continue training efforts in the area of human rights education for security personnel and in the field of discrimination against vulnerable groups", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Consider amending the legislation regarding the transmission of nationality to children of Bahamian mothers born abroad and foreign spouses in order to ensure full and effective equality of rights between men and women in this area", - "values": [ - "3 - Considering action" - ] - }, - { - "text": "Complete the ratification of the Second Optional Protocol to the International Covenant on Civil and Political Rights as early as possible, and take all necessary legislative measures to confirm the abolition of the death penalty, including in its domestic legislation", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "With respect to the situation of the rights of Lesbian, Gay, Bisexual and Transgender people, adopt policy and legislative measures to establish a specific framework for the protection against discrimination based on sexual orientation, together with the suppression of penal provisions which criminalize sexual relations between consented adults of the same sex and launch public awareness-raising campaigns on this issue ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Remove legislative and other regulations which limit the legitimate exercise of the rights to freedom of expression, association and assembly and ensure that legislation is in accordance with the Russian Federation's commitments and obligations under international law ", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Advance in the elimination of all forms of gender discrimination and gender violence, particularly strengthening the coordinated multisectoral implementation and application of the Sexual Offences Act, adopted in Guyana in 2010", - "values": [ - "4 - General action" - ] - }, - { - "text": "Ensure full protection of the human rights of all people in Ghana, including lesbian, gay, bisexual and transgender people, women, and persons with disabilities, by eliminating discriminatory legislation, prohibiting discrimination based on sexual orientation and gender identity, and effectively implementing existing laws and policies on gender and disabilities", - "values": [ - "4 - General action" - ] - }, - { - "text": "Seek means and guarantees to apply the provisions of the Basic Law of the State and its amendments", - "values": [ - "4 - General action" - ] - }, - { - "text": "Continue its efforts to extend free education at all levels of secondary education", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Bring its national legislation into conformity with its commitment to equality and non-discrimination, by repealing the provision of Palau's Penal Code which continues to criminalize sexual relations between consenting adults of the same sex ", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Include sexual orientation as grounds for protection against hate speech", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Consider the early ratification of the third Optional Protocol to the CRC on a Communication Procedure (OP-CRC-IC) ", - "values": [ - "3 - Considering action" - ] - }, - { - "text": "Accelerate the efforts to finalize the adoption of the special system for alimony loans", - "values": [ - "4 - General action" - ] - }, - { - "text": "Continue with the measures taken to improve the situation of migrants, particularly with a view to reducing the discrimination that they suffer from", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Effectively implement measures aimed at eliminating polygamy and bring the norms in line with the CEDAW in the shortest time possible.", - "values": [ - "4 - General action" - ] - }, - { - "text": "Develop a comprehensive policy, consistent with the provisions of CEDAW, to ensure that there is effective gender equality, and fight genderbased violence while monitoring cases of such violence, and study the reasons why they are rarely reported to the authorities ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Enact a law on the protection of human rights defenders, with emphasis on those defenders facing greater risks, including those working on minority rights and the rights of scheduled castes and tribes ", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Adopt necessary measures to definitively abolish the death penalty", - "values": [ - "4 - General action" - ] - }, - { - "text": "Take the necessary measures and steps with a view to ensuring gender equality in wages in all sectors of labour in Switzerland", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Repeal all legislation which undermines the freedom of expression and assembly and ensure that all measures regarding these freedoms are consistent with Thailand's obligations under international law", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Put into effect first cycle recommendations 87.23 and 88.50, and develop policy and programmatic responses to the needs of lesbian, gay, bisexual, transgender and intersex (LGBTI) persons", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Adopt as soon as possible the law protecting human rights defenders ", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Continue its efforts for the promotion and protection of human rights by the improvement of its judicial system", - "values": [ - "4 - General action" - ] - }, - { - "text": "As a first step, end the executions of minors, in accordance with the commitment made by Iran under the International Covenant on Civil and Political Rights as well as the Convention on the Rights to the Child", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Ensure full abolition of all forms of early and forced marriages", - "values": [ - "4 - General action" - ] - }, - { - "text": "Step up its efforts towards the full implementation of the Anti- Human Trafficking Act of 2008, and consider ratifying OP-CRC-AC and OP- CRC-SC", - "values": [ - "4 - General action" - ] - }, - { - "text": "Become party to the Second Optional Protocol to ICCPR, aiming at the abolition of the death penalty", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Take steps towards modifying those social, cultural and traditional attitudes that were permissive of violence against women", - "values": [ - "4 - General action" - ] - }, - { - "text": "Preserve the national process of appeasement and reconciliation ", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Adequately resource the Justice Reform Implementation Unit so that it can effectively support the timely delivery of all justice sector reform initiatives and the implementation of Jamaica's Justice Reform Agenda", - "values": [ - "4 - General action" - ] - }, - { - "text": "Consider additional steps to ensure that any potential changes in court fees are proportionate and affordable, and that they do not prejudice access to the legal system ", - "values": [ - "3 - Considering action" - ] - }, - { - "text": "Introduce further measures to raise public awareness about violence against women and children, and strengthen its activities and programs to focus on sexual violence and human trafficking for the purpose of sexual exploitation ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Continue providing human rights training to law enforcement officials and judges to reinforce a culture of human rights ", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Embark on a policy to combat domestic violence against women, in particular by ensuring the protection of victims and enabling their access to justice ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Eliminate stereotypes and harmful practices against women (including female genital mutilation, wife inheritance, and forced and early marriage)", - "values": [ - "4 - General action" - ] - }, - { - "text": "Continue its efforts to promote all universally agreed human rights and fundamental freedoms, and continue to resist attempts to enforce any values or standards beyond the universally agreed ones.", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Immediately cease public executions and the use of torture and cruel, inhuman, or degrading treatment or punishment and ratify CAT ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Take continuous measures for the protection of the rights of women and other marginalized groups", - "values": [ - "4 - General action" - ] - }, - { - "text": "Proceed with ratification of the International Covenant on Economic, Social and Cultural Rights and sign the International Convention for the Protection of All Persons from Enforced Disappearance", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Abolish the practice of arraigo as soon as possible", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Take further efforts to curb discriminatory treatment of non-European refugees and asylum-seekers", - "values": [ - "4 - General action" - ] - }, - { - "text": "Repeal all provisions allowing for the death penalty and consider ratifying ICCPR and its Second Optional Protocol ", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Introduce comprehensive legislation to protect the rights of migrant domestic workers and ensure its effective implementation", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Continue legislative reforms aimed at improving the electoral process before the presidential and parliamentary elections planned in 2012, by simplifying the registration procedure for political parties, ensuring opposition representation in the Central Electoral Commission and encouraging participation by ethnic minorities in order to ensure that its law, regulations and practice governing the electoral process are in keeping with the International Covenant on Civil and Political Rights", - "values": [ - "4 - General action" - ] - }, - { - "text": "Carry on with ensuring that children with disabilities have full access to education and health-care services ", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Take measures to eliminate corporal punishment as a legitimate sanction in the law and to discourage its use in schools with a view to its eventual and total abolition.", - "values": [ - "4 - General action" - ] - }, - { - "text": "Expressly prohibit discrimination against persons with disabilities as well as religious belief, sexual orientation or age, outside the labour market", - "values": [ - "4 - General action" - ] - }, - { - "text": "Authorize ICRC to visit all places where persons may be deprived of their liberty ", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Implement the recommendations of the Council.", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Further develop policies related to inclusion of people with disabilities, especially regarding inclusive education", - "values": [ - "4 - General action" - ] - }, - { - "text": "Establish a mechanism for the implementation of the law on domestic violence and its associate Programme 2014-2023", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Apply the standards of CRC to all cases that involve the investigation, the prosecution and the deprivation of liberty of boys and girls, especially in the context of the enforcement of antiterrorist laws ", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Ensure that human rights defenders can peacefully exercise their right to freedom of expression and freedom of assembly, in conformity with the dispositions of the International Covenant of Civil and Political Rights and that it decriminalizes activities of individuals on behalf of non-registered organizations by abolishing article 193-1 of the Criminal Code ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Ensure effective accountability for perpetrators of violence against women", - "values": [ - "4 - General action" - ] - }, - { - "text": "Deepen cooperation with all stakeholders to fight discrimination and violence against persons with albinism, in particular with the Independent Expert on the enjoyment of human rights by persons with albinism, in full respect of the independence of her mandate ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Continue to fulfil its international human rights commitments and obligations and continue its cooperation with international human rights mechanisms", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Review its national law in order to ensure full and unhampered enjoyment of human rights by all members of society, including those belonging to the most vulnerable groups, such as women, lesbian, gay, bisexual and transgender persons and indigenous peoples ", - "values": [ - "3 - Considering action" - ] - }, - { - "text": "Develop a legislative reform package to eliminate gender-based violence ", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Consider the possibility of acceding to the Convention against Torture and the International Convention on the Protection of the Rights of All Migrant Workers and Members of Their Families.", - "values": [ - "3 - Considering action" - ] - }, - { - "text": "The delegation indicated the Government's commitment to the promotion of sexual and reproductive health. That included the protection of the right of women to have control over and decide freely and responsibly on matters related to their sexuality, the timing and number of children, free of coercion, discrimination and violence.", - "values": [ - "4 - General action" - ] - }, - { - "text": "Share its experience with other developing countries with respect to its achievements, especially in welfare, education and health sectors ", - "values": [ - "1 - Minimal action" - ] - }, - { - "text": "Take necessary measures to reduce poverty, in particular among women and children", - "values": [ - "4 - General action" - ] - }, - { - "text": "Ensure satisfactory prosecution of cases of gender-based violence, in particular by increasing the number of competent personnel working in the judiciary system and the Public Prosecutor's office to combat violence against women and girls and by implementing a national plan for the prevention of gender-based violence\n\n", - "values": [ - "4 - General action" - ] - }, - { - "text": "Accelerate the efforts to establish a national human rights institution in full compliance with the Paris Principles", - "values": [ - "4 - General action" - ] - }, - { - "text": "Issue a standing invitation to the special procedures of the United Nations, including the Special Rapporteur on the situation of human rights defenders", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Establish a separate juvenile justice system to try accused Palestinian children.", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Continue its favourable policies aiming at the full enjoyment of the cultural, economic and social rights, especially for vulnerable groups, including women, children, the elderly, the minorities and persons with difficulties ", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Intensify its efforts to ensure that all children are registered at birth, particularly in rural areas", - "values": [ - "4 - General action" - ] - }, - { - "text": "Ensure efforts to continue amending the Electoral Law of 2010 with the aim that Jordanians of all ethnic origins as well as non-national residents are proportionally represented in national affairs", - "values": [ - "4 - General action" - ] - }, - { - "text": "Improve its cooperation with the United Nations treaty bodies by agreeing on timelines for submitting overdue reports to the Committee on the Elimination of Racial Discrimination and Committee on Economic, Social and Cultural Rights and, if need be, identify needs for assistance to that end ", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Intensify efforts to eradicate all forms of discrimination", - "values": [ - "4 - General action" - ] - }, - { - "text": "Become a party to the 1951 Convention Relating to the Status of Refugees and the 1967 Protocol", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Continue efforts to strengthen freedom of expression and belief", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Further strengthen the institutional anti-discrimination framework by providing awareness-raising campaigns and promoting tolerance and equality based on sex, gender and race.", - "values": [ - "4 - General action" - ] - }, - { - "text": "Establish federal legislation criminalizing violence against women in all four states", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Establish a formal moratorium on executions with a view to ratifying the Second Optional Protocol to the International Covenant on Civil and Political Rights, aiming at the abolition of the death penalty", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Take all necessary measures to promote women's rights and fight domestic violence and forced marriages", - "values": [ - "4 - General action" - ] - }, - { - "text": "End all indiscriminate attacks against civilians and other violations of international humanitarian and human rights law, especially in Darfur, and bring the perpetrators to justice, ensuring due process ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Withdraw its reservations to the International Covenant on Civil and Political Rights ", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Consider additional awareness-raising campaigns concerning domestic violence cases ", - "values": [ - "3 - Considering action" - ] - }, - { - "text": "Implement promptly the United Nations Convention against Corruption ", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Ensure the use of vocabulary that does not stigmatize children with disabilities or children born out of wedlock", - "values": [ - "4 - General action" - ] - }, - { - "text": "Continue to take measures to improve the socio-economic and educational situation of the Roma in order to enable them to emerge from social exclusion and marginalization", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Continue its efforts to contribute on the prevention of crimes against humanity, particularly genocide, and to the fight against negationism of past historical facts", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Ratify promptly the International Convention on the Protection of the Rights of All Migrant Workers and Members of Their Families", - "values": [ - "3 - Considering action" - ] - }, - { - "text": "Ratify the Rome Statute of the International Criminal Court and implement it fully at the national level and accede to the Agreement on Privileges and Immunities of the Court ", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Supervise the working conditions of migrant workers effectively", - "values": [ - "4 - General action" - ] - }, - { - "text": "Adopt a comprehensive policy that effectively combats gender-based violence against women and girls", - "values": [ - "4 - General action" - ] - }, - { - "text": "Take steps in accordance with the recommendations from the Human Rights Council working group on the issues of discrimination against women in law and practice", - "values": [ - "4 - General action" - ] - }, - { - "text": "Introduce necessary measures in the field of anti-discrimination and equal remuneration for men and women for work of equal value ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Involve civil society organizations in the follow-up to the Universal Periodic Review.", - "values": [ - "4 - General action" - ] - }, - { - "text": "Look into ratifying the Second Optional Protocol to the International Covenant on Civil and Political Rights, aiming at the abolition of the death penalty (ICCPR-OP2) ", - "values": [ - "3 - Considering action" - ] - }, - { - "text": "Continue promoting its vocation for peace, cooperation and international solidarity, in favour of the sustainable development of our peoples ", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Adopt additional measures for access to education, in order to contribute to overcoming the educational gap between the black and white populations ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Rapidly incorporate the adopted legislative amendments in order that its asylum system will be fully in conformity with regional and international norms in the field of human rights ", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Create a mechanism to prevent illegal land grabbing and ensure that large-scale development projects are undertaken with human rights due diligence and following public consultation", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Adjust its legal framework to international human rights standards, in particular with regard to persons with disabilities, migrants, asylum seekers, refugees, women and children", - "values": [ - "4 - General action" - ] - }, - { - "text": "Develop an unambiguous timeline accompanied with a monitoring framework for the full implementation of its commitments under Human Rights Council resolution 30/1", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Intensify efforts to identify victims of trafficking, to ensure that all perpetrators of trafficking in persons are investigated and prosecuted and to provide adequate protection and rehabilitation for the victims", - "values": [ - "4 - General action" - ] - }, - { - "text": "Adopt further measures to ensure universal access to health and education and other welfare for rural communities, minority regions, disadvantaged families and the internal migrant population", - "values": [ - "4 - General action" - ] - }, - { - "text": "Commute without delay all death sentences to terms of imprisonment", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Continue to improve progressively maternal and child health programs to ensure systematic and continuous control over their situation across the country ", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Expand the Housing for All scheme to realize the right to adequate housing for vulnerable people and eliminate homelessness by 2030", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Further entrench in standard administrative procedures the right of indigenous peoples to be consulted, in accordance with ILO Convention 169", - "values": [ - "4 - General action" - ] - }, - { - "text": "Step up its efforts in favour of gender equality and racial equality ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Continue Government efforts to guarantee the exercise of power by, with, and for the people of Viet Nam ", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Ensure an effective implementation of the protection mechanism for journalists and human rights defenders with properly managed funds and trained human resources and that Mexico investigates and prosecutes reported threats, attacks and disappearances", - "values": [ - "4 - General action" - ] - }, - { - "text": "Strengthen its capacity-building programmes for judges and legal personnel on women\u2019s rights and violence against women", - "values": [ - "4 - General action" - ] - }, - { - "text": "Strengthen ongoing anti-discrimination efforts, including by amending relevant legislation in order to effectively protect women and girls from multiple or intersecting forms of discrimination", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Undertake to fully cooperate with the United Nations and, in particular, the special envoy of the Secretary-General for Western Sahara", - "values": [ - "4 - General action" - ] - }, - { - "text": "Allow visits by international humanitarian organizations to all detention places ", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Adjust regulation so that same-sex partners enjoy the same rights as other married couples as recommended in the report of the European Commission against racism and intolerance published on 13 October 2015", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Undertake a deep analysis of protection orders for victims of domestic violence that were broken, in order to identify the root causes and take appropriate measures to secure the safety of the victims ", - "values": [ - "3 - Considering action" - ] - }, - { - "text": "Implement those measures that the Government of Solomon Islands committed to promoting, in line with paragraph 125 of your national report", - "values": [ - "4 - General action" - ] - }, - { - "text": "Decriminalize consensual extramarital sexual relations", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Pay attention to the effects of climate change on environment and social development", - "values": [ - "4 - General action" - ] - }, - { - "text": "Review and investigate the administration of the legal rights of prisoners condemned to death within the judicial system to ensure their access to adequate recourse to appeals and other resources", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Consider facilitating visits by human rights mandate holders. ", - "values": [ - "3 - Considering action" - ] - }, - { - "text": "Criminalize all forms of trafficking in children", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Upgrade its existing national human rights monitoring mechanisms into a national human rights institution that meets the Paris Principles ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Strengthen training of public order officials, social workers and prosecutors on the way to investigate and verify the complaints of sexual exploitation of children, and prosecute the authors of these offenses, taking into account child sensitivity ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Effectively implement the 2009 Anti-Torture Act, with a particular focus on ensuring that all investigations and prosecutions of allegations of torture and ill-treatment fully cover the possibility of command responsibility as stipulated in section 13 of the Act ", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Intensify measures against acts of sexual violence against women and girls, and careful and effective treatment of alleged occurrence of extrajudicial executions ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Bring into line the definition of minor in all legal domains, especially the penal, and prohibit life sentences and corporal punishment for crimes committed by minors ", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Increase its efforts to prevent and combat racial and religious discrimination", - "values": [ - "4 - General action" - ] - }, - { - "text": "Do its utmost to combat all forms of discrimination, including discrimination based on sexual orientation.", - "values": [ - "4 - General action" - ] - }, - { - "text": "Continue bringing its legislations and policies more in line with its respective obligations under international human rights law ", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Take measures to strengthen and guarantee the autonomy, independence and impartiality of the judiciary, including transparent and impartial procedures for appointment and dismissal of judicial officers", - "values": [ - "4 - General action" - ] - }, - { - "text": "Enhance and implement domestic laws to further promote and protect the civil and political rights of the Eritrean people ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Undertake the necessary measures to obtain the "A" accreditation for the Ombudsman and the National Human Rights Institution", - "values": [ - "4 - General action" - ] - }, - { - "text": "Redouble efforts to strengthen its national human rights institution, in accordance with the Paris Principles", - "values": [ - "4 - General action" - ] - }, - { - "text": "Consider eliminating from identity documents all data that could lead to discrimination against children born out of wedlock", - "values": [ - "3 - Considering action" - ] - }, - { - "text": "Ratify the Optional Protocol to CRC on a communication procedures to further ensue the rights of children victims", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Continue efforts to ratify CPED", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Continue its efforts to improve people's lives and to promote economic and social development", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Make every effort to improve, by legislative and social measures, the status of women and ensure gender equality in Libya", - "values": [ - "4 - General action" - ] - }, - { - "text": "Step up measures to overcome the problem of housing shortage in the country ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Allow full freedom of belief to all religious groups", - "values": [ - "4 - General action" - ] - }, - { - "text": "Abolish the death penalty completely and, in the meantime, establish a moratorium on executions as urged by the respective United Nations General Assembly resolutions ", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Incorporate strategies for human rights education and training, focused in particular on the armed forces", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Continue moving forward with the adoption of effective measures that promote tolerance and respect for foreigners and members of national, racial and ethnic minorities ", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Ensure that the NHRC functions in line with the Paris Principles ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Take measures to foster the participation of women in all sectors of the society on the basis of a gender equality policy, including through the application of affirmative actions and quotas", - "values": [ - "4 - General action" - ] - }, - { - "text": "Ensure that children with disabilities have access to health care and combat the stigmatization of and prejudice against children with disabilities", - "values": [ - "4 - General action" - ] - }, - { - "text": "Establish an effective protection system for human rights defenders and journalists and ensure the free exercise of their rights to freedom of opinion, expression and association", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Continue its efforts to promote economic, cultural and social rights ", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Continue to combat gender violence and promote equal opportunity for women and girls", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Continue implementing - at all levels - its policies and programmes aimed to eliminate discrimination on any ground, as well as the use of excessive or unreasonable force in policing ", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Monitor the incidence of and combat racism and xenophobia ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Ratify the Optional Protocol to the Convention on the Rights of the Child (CRC) on a communications procedure", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Pursue its commitment to ratify other international human rights treaties that it is not yet a state party, including ILO Convention 189", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Enact specific laws and policies in order to protect human rights defenders", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Provide without delay unhindered, safe and sustained access and full cooperation to independent human rights actors, including OHCHR, the Commission of Inquiry and special procedure mandate holders", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Increase the access of children, women and persons with disabilities to education ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Allocate sufficient resources for the implementation of the national action plan towards the well-being of the Maldivian child 2001-2010", - "values": [ - "4 - General action" - ] - }, - { - "text": "Ratify the International Convention on the Protection of the Rights of All Migrant Workers and Members of Their Families, which the Comoros signed in 2000 ", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Continue its efforts to improve the conditions of detention", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Decriminalize defamation and revise the provisions of articles 400 and 403 of the newly adopted Criminal Code which could be abused to limit the rights to freedom of expression, assembly and association", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Facilitate the registration of non-governmental organizations, and amend the Criminal Code, which criminalizes the activity of non-registered non-governmental organizations", - "values": [ - "4 - General action" - ] - }, - { - "text": "A gender perspective be included in the planning of the next stages, including the outcome of the review.", - "values": [ - "4 - General action" - ] - }, - { - "text": "Permanently lift restrictions on access to minority areas", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Reinforce policies for the integration of minority groups, particularly Roma, in line with CERD recommendations", - "values": [ - "4 - General action" - ] - }, - { - "text": "Take all necessary measures to protect children from all forms of exploitation", - "values": [ - "4 - General action" - ] - }, - { - "text": "Allow access to the Special Rapporteur on extrajudicial, summary or arbitrary executions and remove conditions on her proposed visit that could compromise her impartiality", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Coordinate closely with civil society, the Commission for Human Rights and Good Governance and other key stakeholders to have a shared view and systematic monitoring of the implementation of universal periodic review recommendations", - "values": [ - "4 - General action" - ] - }, - { - "text": "Continue fulfilling its obligations under international treaties as well as considering the possibility of acceding to the Convention against Torture and Other Cruel, Inhuman or Degrading Treatment or Punishment.", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Continue to strengthen its efforts against the excessive use of force by law enforcement agents, especially by taking measures allowing the identification of officials, establishing procedures to ensure the independence of investigations, as well as by improving data collection and information ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Adopt a comprehensive sexual and reproductive health policy for adolescents", - "values": [ - "4 - General action" - ] - }, - { - "text": "Allow all prisoners access to legal counsel during all phases of pretrial detention and the investigative stages of cases, and allow for legal counsel to advise the accused during these proceedings", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Accelerate the entry into force of the new programme for the protection of refugees and ensure that it guarantees the protection of the best interest of the child and fully complies with international standards regarding unaccompanied migrant children and family reunification", - "values": [ - "4 - General action" - ] - }, - { - "text": "Continue to implement policies and programmes for comprehensive and sustainable development", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Create conditions for the most vulnerable to have access to basic education and health services", - "values": [ - "4 - General action" - ] - }, - { - "text": "Bring its national legislation fully in line with the Rome Statute and to ratify the Agreement on Privileges and Immunities", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Take all necessary measures to prevent torture and other cruel, inhuman and degrading treatment or punishment in particular in places of detention.", - "values": [ - "4 - General action" - ] - }, - { - "text": "The MSAR [Macao Special Administrative Region] Government shall continue to dedicate great attention to the preservation and promotion of Macao's historic buildings and heritage, namely to the sites ("Historic Centre of Macao") included in the UNESCO World Heritage List. The annual international arts events that are currently hosted in Macao will be improved. Studies will be made with a view to promote new museums and artistic and cultural events that have good potential for Macao's cultural development and economic diversification.", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Take immediate legal measures to remove restrictions against access of indigenous women and children to appropriate health and education services and employment opportunities ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Increase the efforts to combat trafficking and smuggling of persons, through the effective implementation of its National Action Plan", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Reform and strengthen the judiciary to effectively address issues of impunity and victim redress", - "values": [ - "4 - General action" - ] - }, - { - "text": "Take all necessary measures to combat all forms of discrimination against women and enhance their participation in State institutions ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Eliminate all laws and practices that discriminate against women, and promote equal treatment of girls and boys, including through awareness programmes", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Continue efforts to eliminate gender stereotypes and to repeal all discriminatory legislation against women, in the labour, civil and penal codes", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Accelerate the implementation of the policy on free education, in order to ensure that all children, particularly those from disadvantaged households, are not deprived of their right to education", - "values": [ - "4 - General action" - ] - }, - { - "text": "Adopt the recommendations of the Committee on the Elimination of Racial Discrimination, particularly those calling for officials coming into contact with minority groups to receive human rights training and the recommendation that any organization promoting or inciting discrimination should be declared illegal and prohibited, and the recognition that participation in such organizations is an offence punishable by law.", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Guarantee the constitutional rights of Indigenous peoples including by ensuring the National Indian Foundation has the necessary resources to carry out its work, particularly relating to the demarcation of Indigenous lands, and take measures to conclude investigations into all killings of Indigenous Peoples", - "values": [ - "4 - General action" - ] - }, - { - "text": "Consider ratifying the Convention against Torture and Other Cruel, Inhuman or Degrading Treatment or Punishment and its Optional Protocol", - "values": [ - "3 - Considering action" - ] - }, - { - "text": "Review media laws to align them with international human rights standards on freedom of expression", - "values": [ - "3 - Considering action" - ] - }, - { - "text": "Consider acceding to the 1951 Convention relating to the Status of Refugees and its Protocol", - "values": [ - "3 - Considering action" - ] - }, - { - "text": "Continue addressing the equality between women and men through implementation of relevant programs and policies", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Establish concrete goals to increase female participation in political and public life ", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Adopt legislation which explicitly prohibits corporal punishment of children in all settings, including in the home", - "values": [ - "4 - General action" - ] - }, - { - "text": "Continue its efforts to combat trafficking in persons, especially women and children, by prosecuting the perpetrators", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Pursue the peace process and national reconciliation.", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Strengthen the efforts to ensure the protection and dignity of Syrian refugees, especially with regard to health care, access to education and protection of children, women, the elderly and persons with disabilities in situation of risk", - "values": [ - "4 - General action" - ] - }, - { - "text": "Bring domestic legislation into conformity with its international obligations in the human rights sphere", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Continue in its firm commitment to support initiatives in favour of the right of peoples to self-determination, as well as in its consistent support for all efforts aiming at putting an end to all types of foreign occupation", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Consider expediting the ratification of the core human rights treaties, including the Convention on the Rights of Persons with Disabilities", - "values": [ - "3 - Considering action" - ] - }, - { - "text": "Issue clear, public orders to end the recruitment of child soldiers, ensure their swift release and investigate and prosecute the commanders responsible. Ratify the Optional Protocol to the Convention on the Rights of the Child on the involvement of children in armed conflict", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Ensure that all reports of violence are thoroughly investigated and that the perpetrators are brought to justice ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Establish an interreligious council to facilitate interreligious dialogue and harmony", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Continue its efforts in improving the situation of detainees in Greek prisons and those held in police custody ", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Continue to support its initiative to establish the special fund for small and medium development projects, which was adopted at the latest Arab Economic Summit ", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Consider ratifying the Optional Protocol to the Convention against Torture and Other Cruel, Inhuman or Degrading Treatment or Punishment", - "values": [ - "3 - Considering action" - ] - }, - { - "text": "Step up its struggle against racism, inter alia through implementing the recommendations made by the Committee on the Elimination of Racial Discrimination concerning identity documents for Roma as well as those made by the Committee on the Elimination of Discrimination against Women and the Committee on the Representation of Women in Public Services.", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Continue to place emphasis on promoting universal access to education and improving the quality of its education system", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Ratify CAT, as well as its Optional Protocol ", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Guarantee the freedom of assembly and work with organizers to ensure that peaceful protests and demonstrations are allowed to take place within central Baku", - "values": [ - "4 - General action" - ] - }, - { - "text": "Pursue cooperation with human rights mechanisms", - "values": [ - "4 - General action" - ] - }, - { - "text": "Strictly apply the new Law on Discrimination and adopt a comprehensive legislation on hate crimes", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Give special attention to the role of international cooperation for the enjoyment of economic, social and cultural rights and recommended South Africa to share its experience, programmes and plans in this field with other developing countries.", - "values": [ - "1 - Minimal action" - ] - }, - { - "text": "Continue to support media initiatives on self-regulation, including the newly established Tribunal de Etica for print journalists", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Incorporate into domestic legislation the treaties that Kiribati has ratified", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Further bolster the role of the Ombudsman, and enable citizens to appeal directly to the Ombudsman without going through elected officers ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Invite to its territory, as a priority, the Working Group on arbitrary detention and the Special Rapporteur on torture, in particular to investigate arbitrary detention and the holding in detention of persons who have served their sentences, as well as torture and ill treatment, and put an end to such practices ", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Adopt decisions such as the executive decision on the Saint Alexander Nevsky Cathedral on the restitution of property confiscated from the Muslim denomination and all others, so as to demonstrate the non-discriminatory character of the executive", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Enforce all laws that protect children from trafficking and exploitation, and their uses in illegal activities", - "values": [ - "4 - General action" - ] - }, - { - "text": "Continue to combat domestic violence and renew the national action plan in this field ", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Implement a systematic plan to train police on human rights and implement tolerance-building programmes.", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Step up efforts to ensure ratification of international instruments relating to human rights to which it is not yet a party ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Ratify the International Convention for the Protection of All Persons from Enforced Disappearance, recognizing in full the competence of the associated Committee", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Make fully consistent all domestic anti-terrorism legislation and action with human rights standards ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Increase its efforts to expand protection and support for low-income groups to solve weakening social integration due to intensifying income polarization", - "values": [ - "4 - General action" - ] - }, - { - "text": "Establish within the new law civil remedies, including comprehensive protection orders that are part of the Code of Civil Procedure, instead of being integrated into the Criminal Code", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Ratify the Second Optional Protocol to the International Covenant on Civil and Political Rights, relating to the abolition of death penalty", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Incorporate into its national legislation most of the international legal human rights instruments that the Gambia has acceded to", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Take concrete measures to prevent and combat violence against members of other minorities and vulnerable groups, especially racially motivated hate crimes against and discrimination of the Roma and to promote their integration into society ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Continue promoting the prompt adoption of a law against all forms of discrimination, in accordance with its international human rights commitments ", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Strengthen measures to eradicate incitement to ethnic or religious hatred and xenophobia ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Continue to work on the promotion of human rights in the region of Transnistria, integral part of the territory of the Republic of Moldova", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Extend an open and permanent invitation to all Special Procedures ", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Incorporate international human rights instruments into domestic law, including the United Nations Convention against Torture and Other Cruel, Inhuman or Degrading Treatment or Punishment ", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Continue to take effective measures to prevent the Roma from being victims of discrimination, in particular at work", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Continue to allocate resources to the Department of Women's Affairs to allow it to further enhance and implement programmes for the advancement of women's rights ", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Adopt legislative measures to combat violence against women, especially improve their protection in rural areas ", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Allocate appropriate resources with a view to improve conditions in prisons and detention centres, in particular to address their infrastructural needs, inmates access to safe drinking water and food, sanitation, medical care as well as to legal counsel", - "values": [ - "4 - General action" - ] - }, - { - "text": "Develop a National Strategic Plan for the Progressive Elimination of Child Labour, with short- and medium-term goals as well as follow-up and evaluation mechanisms, both quantitative and qualitative, and endowed with financial resources for its implementation at the national, departmental and municipal level", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Ensure basic services for children of irregular migrants, including education, health and medical care ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Continue its efforts in the fight against the terrorist gangs that perpetuate the most heinous crimes against humanity on a daily basis", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Take further steps to ensure that the legislation on violence against women and girls is fully in line with international standards and includes prohibition of corporal punishment in the home.", - "values": [ - "4 - General action" - ] - }, - { - "text": "Continue efforts to eradicate and address cases of domestic violence and child abuse", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Continue to build up the national human rights institutional framework, in particular the Human Rights Commission, and ensure its effective functioning", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Enhance cooperation and assistance mechanisms to provide the required services regarding migrant workers during their presence in the Sultanate ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Continue its efforts to ensure women\u2019s equal participation in the workforce and generate employment opportunities for women in rural areas", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Continue to promote human rights education, training and capacity building", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Implement the recommendations of treaty bodies with regard to the implementation of Singapore's commitments under CEDAW and CRC ", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Strengthen its Domestic Violence Prevention Act with a view to ending domestic and sexual violence against women and children", - "values": [ - "4 - General action" - ] - }, - { - "text": "Develop actions that improve the living conditions of asylum seekers and prevent discrimination on the grounds of nationality or country of origin", - "values": [ - "4 - General action" - ] - }, - { - "text": "Consider raising the minimum age for marriage to 18 years for both women and men.", - "values": [ - "3 - Considering action" - ] - }, - { - "text": "Further promote gender equality and involvement of women in politics and public services", - "values": [ - "4 - General action" - ] - }, - { - "text": "Establish the abolition of the death penalty through the ratification of the Second Optional Protocol to the International Covenant on Civil and Political Rights ", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Continue developing adequate measures to guarantee in law and practice the equality of women, particularly their right to education, and fight effectively discrimination against women and gender violence", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Provide material and moral support for the Centre for Research, Studies, Documentation and Information on Women in order to preserve and promote the rights of women in Tunisia", - "values": [ - "4 - General action" - ] - }, - { - "text": "Prohibit the non-therapeutic sterilization of any individual who is not mentally competent to consent", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Continue to implement the National Human Rights Action Plan", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Continue its efforts that aim at further implementing its existing programmes and policies on gender equality, in particular, with respect to the empowerment of women and the promotion of social inclusion, including that of the ethnic minorities ", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Take further steps leading to a formal abolition of the death penalty, commuting all existing sentences to life imprisonment terms ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Continue to take all necessary measures to eradicate the practice of ill-treatment of prisoners, excessive force and the use of torture in detention centres and internment centres whether these be temporary or permanent in nature ", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Follow-up the recommendations of the Committee on the Elimination of Discrimination against Women to resolve the issue of inequality between women and men, particularly in the area of employment, and to intensify its efforts to eliminate violence against women ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Guarantee the independence of the judicial system, renounce the staging of collective trials and allow the effective exercise of the right to a defence", - "values": [ - "4 - General action" - ] - }, - { - "text": "Ratify the European Convention on the Compensation of Victims of Violent Crimes", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Address traditional practices that are against human rights, inter alia female genital mutilation, through more concerted efforts, involving local levels ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Raise the minimum age for military recruitment under any circumstances to at least 18 years, and to provide for conscientious objection to military service", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Intensify its efforts to further combat gender discrimination ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Strengthen the implementation of the National Strategy against Sexual and Gender-Based Violence by accelerating the judicial system and security sector reform, in order to improve access to justice, protect the population and guarantee the right to the security of persons", - "values": [ - "4 - General action" - ] - }, - { - "text": "Strengthen hate crimes laws to protect against violence motivated by gender identity, sexual orientation and intolerance, and implement public awareness campaigns to include law enforcement officials and to combat intolerance", - "values": [ - "4 - General action" - ] - }, - { - "text": "Take appropriate measures to eradicate the practice of ritual infanticide once and for all", - "values": [ - "4 - General action" - ] - }, - { - "text": "Continue to strengthen its successful national policies, to promote equality in the areas of education, health and employment of women and girls", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Expand micro-credit and financing schemes, with a view to expanding the formal economy in the country and gradually reducing the inequality in income distribution", - "values": [ - "4 - General action" - ] - }, - { - "text": "Draw up plans for combating the threat of HIV-AIDS ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Continue the implementation of the National Plan against gender violence 2016-2021", - "values": [ - "4 - General action" - ] - }, - { - "text": "End prosecutions under Articles 106 and 110 of your criminal code for exercising the internationally protected right of freedom of expression, and re-evaluate the convictions and sentences of individuals prosecuted for those actions ", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Harmonize national laws with the international regulations on the rights of women and children", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Continue to develop and expand programmes for the protection of indigenous peoples ", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Finalize the preparation of the elections, which have been postponed many times, so that they can be held quickly ", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Effectively implement the National Plan to Reduce Violence Against Women and Their Children and strengthen its actions to reduce violence and sexual abuse of women with disabilities and indigenous women", - "values": [ - "4 - General action" - ] - }, - { - "text": "Enact legislation on domestic violence as soon as possible, to further strengthen family counselling centres that assist victims, and to increase the availability of legal aid throughout the country for victims of violence", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Increase its efforts in ensuring the protection of children from violence in line with its 2008 National Strategy for Prevention and Protection of Children from Violence and 2010 Action Plan ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Take appropriate action to ensure the protection of migrant workers", - "values": [ - "4 - General action" - ] - }, - { - "text": "Consider the possibilities of adopting non-custodial sentences where feasible and measures to reintegrate the prison population into society ", - "values": [ - "3 - Considering action" - ] - }, - { - "text": "Allow international NGOs to visit Bahrain and to carry out their human rights work without restrictions, including by abolishing the current five-day limit for such visits", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Develop a national strategy for human rights education in the school system in accordance with the Plan of Action 2005-2009 of the World Programme for Human Rights Education, including the review and revision of curricula and textbooks, the training of teachers, and the practice of human rights in the school community.", - "values": [ - "4 - General action" - ] - }, - { - "text": "Reinforce its national human rights infrastructure ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Speed up its considerations over the signature and ratification of the international human rights covenants", - "values": [ - "4 - General action" - ] - }, - { - "text": "Repeal the death penalty provision in the constitution of Republika Srpska, so that the existing moratorium gives way to the full abolition of the death penalty", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Continue its efforts to strengthen a culture of tolerance to eliminate all forms of discrimination against vulnerable groups", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Continue pursuing appropriate policies and programmes to accommodate the needs of mentally disabled children", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Present to the Parliament, as soon as possible, the Police Complaints Bill which is being prepared, and direct particular attention to increasing the awareness of police agents with respect to human rights principles", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Continue to cooperate with the United Nations human rights mechanisms within the framework of implementation of ratified international instruments", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Continue dissemination of and training on the Universal Declaration of Human Rights and other international human rights instruments ", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Prohibit the use of solitary confinement for children within the criminal justice system", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Repeal or amend the Societies Order to ensure that it does not violate the right to peaceful association or assembly", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Continue the implementation of poverty eradication programmes including by allocating sufficient national budget for those programmes that impact directly on the lives of the people of Kenya", - "values": [ - "4 - General action" - ] - }, - { - "text": "Establish national policies aimed at putting an end to violence and crimes motivated by race nationality, religion ethnicity, sexual orientation or identity, through the approval of laws that explicitly criminalize violence against people or property ", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Pass a law with an explicit provision that racist motivation should be taken into account as a specific aggravating circumstance for the purpose of sentencing in relevant crimes", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Consider withdrawing the reservations made on the two Conventions it has ratified ", - "values": [ - "3 - Considering action" - ] - }, - { - "text": "Implement measures to address extrajudicial killings of persons on the basis of their actual or presumed sexual orientation", - "values": [ - "4 - General action" - ] - }, - { - "text": "Enhance the promotion of dialogue among societies, including interreligious and inter-cultural dialogue in the country", - "values": [ - "4 - General action" - ] - }, - { - "text": "Further enhance measures aimed at protecting the human rights of children, women and other vulnerable groups ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Continue the measures to combat HIV incidence through the implementation of the National Strategic Plan for HIV Prevention", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Complete the process of establishing a coordinating body under the auspices of the Prime Minister's Office to monitor and report progress on human rights", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Amend the Penal Code to exclude drug-trafficking related crimes from those punished by the death penalty", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Continue to take more measures to promote gender equality and protect women and children's rights in practice ", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Bring to justice people who have being identified by the Truth Commission as having committed human rights violations", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Conclude and put in place a training programme for police officers and others in order to prevent torture", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Ensure that the Protection of State Information Bill and other statutory measures do not violate the right to freedom of expression or unduly impede access to public domain information ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Ensure full integration of persons with disabilities into socio-economic and political affairs, particularly equal access to job opportunities, promoting of their right to education, adequate resources for care and support for children with psychosocial disabilities in the family and in the community, and finally, to ensure their accessibility to public transportation and buildings", - "values": [ - "4 - General action" - ] - }, - { - "text": "Complete the ratification process of the 1993 Hague Convention on Protection of Children and Co-operation in Respect of Intercountry Adoption ", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Provide the National Human Rights Council with the necessary resources to enhance its independence to effectively carry out its functions", - "values": [ - "4 - General action" - ] - }, - { - "text": "Promptly ratify the Indigenous and Tribal Peoples Convention, 1989 (No. 169) of the International Labour Organization (ILO)", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Accelerate the process of consultation with the view to ratifying the Second Optional Protocol to the International Covenant on Civil and Political Rights, aiming at the abolition of the death penalty ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Implement further measures to stop female genital mutilation altogether. ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Take all necessary measures to have an independent national human rights institution with "A" status, in accordance with the Paris Principles", - "values": [ - "4 - General action" - ] - }, - { - "text": "Reform the Togolese legislation aimed at eliminating discriminatory practices against women in matters of inheritance", - "values": [ - "4 - General action" - ] - }, - { - "text": "Continue efforts in the areas of human rights education and dissemination.", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Sign the Council of Europe Convention on preventing and combating violence against women and domestic violence ", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Continue to strengthen programmes aimed at creating growth and employment", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Investigate all cases of extrajudicial killings, torture and ill-treatment by the police and bring those responsible to justice ", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Continue to improve conditions in its prisons, including in relation to overcrowding and specific facilities for offenders with mental health disorders", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Strengthen their efforts aimed at empowering women, in particular through continuing to improve access for women and girls to quality education", - "values": [ - "4 - General action" - ] - }, - { - "text": "Repeal regional laws and regulations which promote discrimination on grounds of sexual orientation, and abstain from passing similar legislation at the federal level", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Adopt a formal moratorium on the death penalty, and ratify the Second Optional Protocol to the International Covenant on Civil and Political Rights", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Take measures to improve access to health care, in particular with regard to combating infant and maternal mortality", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Increase efforts to prosecute sex and labour trafficking offenders, as well as assist and protect victims of trafficking ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Double its efforts in combating violence and the excessive use of force by law enforcement officers based on racial profiling through training, sensitization and community outreach, as well as ensuring proper investigation and prosecution when cases occur", - "values": [ - "4 - General action" - ] - }, - { - "text": "In light of exceptional circumstances, appeal to the international community for its consent\nto cancelling Sudan%u2019s debt, which would constitute remarkable progress towards achievement of the\nMillennium Development Goals, ensure conditions of an equitable economic development and have a\npositive impact on the enjoyment of human rights for millions of Sudanese", - "values": [ - "1 - Minimal action" - ] - }, - { - "text": "Continue to protect and promote the rights of persons with disabilities", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Establish without delay a moratorium on the application of the death penalty with a view to its definitive abolition", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Pursue commitments to the promotion and protection of the universal values of human rights, especially through strengthening of the rule of law.", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Improve the forms of social security protection applicable to foreign workers who have become unemployed or whose employment has been suspended and who are deprived of the benefits provided to nationals in the same situation", - "values": [ - "4 - General action" - ] - }, - { - "text": "Adopt a National Action Plan on preventing and combating trafficking in human beings and pursue measures aimed at preventing trafficking and providing appropriate protection to victims", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Take effective steps to ensure gender equality and counteract violence against women ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Develop education policies that ensure quality education, particularly for the poor, marginalized and vulnerable segments of its population, and request international assistance to that end", - "values": [ - "4 - General action" - ] - }, - { - "text": "Expedite its reforms such as measures to raise citizens' living standards and duly take into account the aspirations of the people of Syria in the reform process ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Review its national legislation with a view to eliminating discriminatory provisions based on a comprehensive list of grounds, including social status, gender and sexual orientation", - "values": [ - "3 - Considering action" - ] - }, - { - "text": "Amend national legislation that discriminates on the basis of gender, religion, political thought or sexual orientation", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Ensure that complete and impartial investigations are conducted into allegations of attacks and threats against persons based on their sexual orientation or gender identity and bring those responsible to justice in conformity with the international standards", - "values": [ - "4 - General action" - ] - }, - { - "text": "Continue increasing public investment in education and continue its efforts to implement the strategies of educational inclusion, paying special attention to areas with difficult access and to children", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Step up measures to ensure stronger coordination between agencies dealing with issues relating to children in order to eliminate violence, commercial sexual exploitation and child labour ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Continue serious existing efforts to improve socio-economic status of women", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Adopt the necessary legislation, and prohibit any kind of violence against children, including corporal punishment ", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Hold the next elections in an inclusive and transparent manner", - "values": [ - "4 - General action" - ] - }, - { - "text": "Promote economic development, in a sustainable manner, to improve the quality of life of its population", - "values": [ - "4 - General action" - ] - }, - { - "text": "Combat child labour, sexual exploitation and abuse, and further advance strategies to eliminate the discrimination against indigenous, minority children and children of African descent ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Launch awareness-raising campaigns to address harmful traditional practices that adversely affect the implementation of its human rights commitments", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Examine issuing a standing invitation to special procedures", - "values": [ - "3 - Considering action" - ] - }, - { - "text": "Continue improving the access to and the use of health services in the most remote communities", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Take measures to provide for the effective protection of human rights and due process of law while guaranteeing freedom of religion and belief for all its population", - "values": [ - "4 - General action" - ] - }, - { - "text": "Take all practical measures in collaboration with neighbouring countries in order to put an end to the accusations of extrajudicial executions, and more generally, to the abolition in the near future of the death penalty", - "values": [ - "4 - General action" - ] - }, - { - "text": "Set up the Human Rights Commission, which was created in 2013", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Take the necessary measures to prohibit the sale and trafficking of children for prostitution or labour exploitation, and adopt a policy to confront the issue of trafficking and exploitation ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Develop cooperation with all civil society organizations and NGOs concerned with human rights at the national and international levels and maintain contact with them in order to strengthen capacities for the protection and safeguarding of human rights, bearing in mind the important and effective role of those organizations on this score.", - "values": [ - "4 - General action" - ] - }, - { - "text": "Continue its commitment to advancing the lives of its people through the provisions of best education, housing and medical care, which has rightfully earned its international recognition ", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Continue to seek international assistance to sustain its efforts aimed at the promotion and protection of human rights, in line with its national policies ", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Ratify ILO Convention No. 87 on Freedom of Association and Protection of the Right to Organise, and implement it to ensure the right of all workers to freely organize", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Continue to develop a national strategy, through the national authority to combat human trafficking, and, as part of that strategy, to ratify the Protocol of 2014 to the Forced Labour Convention, 1930", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Redouble its efforts in the field of education and health ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Restore the term "race" as a ground of discrimination in accordance with the International Convention on the Elimination of All Forms of Racial Discrimination (ICERD)", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Become a party to the Convention on the Rights of Persons with Disabilities and its Optional Protocol, and to the International Convention for the Protection of All Persons from Enforced Disappearance", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Adopt legislation against child exploitation and sexual abuse, along with measures to disseminate information about the legislation to the population", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Introduce an official moratorium on the death penalty and resubmit the proposals for a complete abolition of the death penalty to the new Parliament once established ", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Enhance its efforts aimed at improving the situation of the rights of the child, in particular efforts to eliminate early and forced marriage and child trafficking", - "values": [ - "4 - General action" - ] - }, - { - "text": "Study the possibility of intensifying measures aiming at eliminating all discriminatory treatment on the basis of sexual orientation or gender identity", - "values": [ - "3 - Considering action" - ] - }, - { - "text": "Strengthen measures to prevent racist violence, hate crimes and discrimination against foreigners, especially Muslims, Roma and the people of African origin ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Formally establish the Follow-up Committee recommended in the Truth and Reconciliation Commission's report and task it to monitor and report to Government and civil society on the further implementation of the Commission's recommendations ", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Accede to Optional Protocols 1 and 2 to ICCPR", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Seek technical assistance from OHCHR and from the Special Rapporteur on the promotion and protection of the right to freedom of opinion and expression on possible ways to adjust the Press Law ", - "values": [ - "1 - Minimal action" - ] - }, - { - "text": "Adopt laws and policies protecting human rights defenders and journalists, involve civil society in this process as well make available sufficient funding for implementation", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Take measures to implement the recommendations made by the Committee on Economic, Social and Cultural Rights, the Committee against Torture and the Human Rights Committee regarding prison conditions and the treatment of detainees.", - "values": [ - "4 - General action" - ] - }, - { - "text": "Incorporate the principle of equality between women and men into the Constitution", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Continue to consolidate its successful health policy, which responds to the health needs of its people ", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Prioritize enforcement of its domestic legislation, including the Penal Law, the Rape Law and the National Gender-Based Violence Plan of Action, empower its Special Court for Rape and Other Forms of Violence as well as the Sexual and Gender-Based Violence Unit under the Ministry of Justice, and implement appropriate national public awareness programmes to address violence against women", - "values": [ - "4 - General action" - ] - }, - { - "text": "Ratify those conventions to which it is not yet party, in particular the Convention against Torture and Other Cruel, Inhuman or Degrading Treatment or Punishment and its Optional Protocol ", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Undertake a study on the sexual exploitation of children and adopt a national plan of action against sexual exploitation of children ", - "values": [ - "3 - Considering action" - ] - }, - { - "text": "Continue its efforts to strengthen its anti-corruption legislation and institutional framework ", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Initiate a legislative process to revise the Penal Code in order to limit the death penalty to cases in which the accused has committed an intentional killing as a first step towards abolition of the death penalty", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Implement fully the national human development plan for 2009-2011", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Complete its international commitments by ratifying those instruments which it has already signed, and initiate the process for the signing and subsequent ratification of CED and CRPD ", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Continue to prioritize and facilitate funding access for prospective and eligible students from poor and low-income families to pursue higher education", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Continue to strengthen efforts to eliminate racial discrimination", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Ensure conformity of national legislation with the international legal instruments on human rights, in particular the Convention on the Elimination of All Forms of Discrimination against Women", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Intensify efforts to combat effectively the manifestations of hatred suffered by minorities", - "values": [ - "4 - General action" - ] - }, - { - "text": "That the Government and FARDC, in cooperation with the United Nations country-level task force, swiftly formulate an action plan to identify, release and ensure the reintegration of all child soldiers, as requested by Security Council resolutions", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Take all steps available to eradicate the use of torture and ill treatment by public officials, and prosecute and punish those responsible ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Fully implement the Family Protection Act", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Continue carrying out its sound public policies for the eradication of extreme poverty and hunger which have had concrete results and the recognition from UNDP and FAO, and, also, have allowed achieving the first Millennium Development Goal", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Accelerate the ratification process of a number of relevant international legal instruments on human rights, namely OP-ICESCR, OPCAT and the Rome Statute of the ICC", - "values": [ - "4 - General action" - ] - }, - { - "text": "Strictly ensure that the death penalty is not imposed for children, and declare an official moratorium on executions with a view to abolishing the death penalty", - "values": [ - "4 - General action" - ] - }, - { - "text": "Implement the national mechanism established in the Optional Protocol to the Convention against Torture.", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Ratify Protocol 12 to the European Convention for the Protection of Human Rights and Fundamental Freedoms, in particular bearing in mind the particular situation of the Roma minority in the country.", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Take concrete steps towards operationalizing extended access to free senior high school for all students", - "values": [ - "4 - General action" - ] - }, - { - "text": "Take relevant steps to further promote and protect the rights of women", - "values": [ - "4 - General action" - ] - }, - { - "text": "Implement a national policy on children's rights including the amendment of legislation on juvenile justice and immediately address the reduction of preventive detention for persons under 18 and the harmonization of the age of criminal liability in accordance with the Convention on the Rights of the Child", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Increase efforts for the protection of women victims of gender violence, ensuring that perpetrators face the required trials and training the authorities involved on the subject of the protection and prevention of violence against women ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Further ensure effective gender equality into government policies", - "values": [ - "4 - General action" - ] - }, - { - "text": "Adopt measures highlighting the importance of its comprehensive development in all areas, including education, health and living standards, amongst others ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Make efforts to address the issue of enforced disappearance, such as ensuring accountability", - "values": [ - "4 - General action" - ] - }, - { - "text": "Strengthen the national human rights institution of Bahrain and ensure its full compliance with the Paris Principles", - "values": [ - "4 - General action" - ] - }, - { - "text": "Pursue efforts to combat racial discrimination, xenophobia through education and information awareness campaigns in the context of the Law on Foreigners", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Consider the possibility of ratifying the International Covenant on Economic, Social and Cultural Rights, International Convention on the Protection of the Rights of All Migrant Workers and Members of Their Families and Convention on the Rights of Persons with Disabilities", - "values": [ - "3 - Considering action" - ] - }, - { - "text": "Remove relevant articles of the Penal Code criminalising same sex sexual activities", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Thoroughly investigate human rights violations perpetrated by all sides after the 2010 presidential elections and fully cooperate with the ICC's investigations ", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Ensure the release of all prisoners and administrative detainees", - "values": [ - "4 - General action" - ] - }, - { - "text": "Strengthen the independence of its judiciary", - "values": [ - "4 - General action" - ] - }, - { - "text": "Protect the right to freedom of assembly and association in particular of those campaigning against discrimination based on sexual orientation", - "values": [ - "4 - General action" - ] - }, - { - "text": "Continue its efforts to consolidate the principles of human rights and public freedoms", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Issue a standing invitation to all of the special procedures of the Human Rights Council ", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Employ methods that adjust to international norms, including human rights norms, to combat the consumption of illegal drugs", - "values": [ - "4 - General action" - ] - }, - { - "text": "Increase measures to prevent the "loan or rental of children" for sexual exploitation, carrying out forced labour activities and begging, as recommended by the Committee on the Rights of the Child ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Align the legislative amendments to the Constitution with the Convention on the Elimination of All Forms of Discrimination against Women, reforming the laws that are discriminatory to women", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Allocate more financial resources to improve access to and quality of education in the country", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Exert all efforts to ensure traditional practices are compatible with human rights obligations, including female genital mutilation, through enhancing the enforceability of relevant laws in a proper way", - "values": [ - "4 - General action" - ] - }, - { - "text": "Take all necessary measures to ensure the full and equal enjoyment of human rights by all human beings ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Consider early ratification of the ICCPR and ICESCR", - "values": [ - "3 - Considering action" - ] - }, - { - "text": "Review the list of crimes for which the death penalty is imposed, with a view to abolishing capital punishment.", - "values": [ - "3 - Considering action" - ] - }, - { - "text": "Enact legislation prohibiting discrimination against LGBTI persons, including removing laws criminalising same sex activity", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Take measures to ensure the effective implementation of programmes to protect children's rights at the local level, particularly as regards violence, commercial sexual exploitation and child labour ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Continue to raise the level of its public services and further improve the quality and coverage of public services in rural areas", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Remove the paragraph prescribing the death penalty as legal punishment by law", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Continue to promote good governance and rule of law through effective policy coordination at national and atoll levels", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Continue its cooperation with the High Commissioner for Human Rights, treaty bodies and special procedures mandate holders ", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Conduct appropriate public awareness campaigns with a view to eliminating prejudices and to promote understanding and tolerance towards immigrants ", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Abolish the death penalty, and sign and ratify the Second Optional Protocol to the International Covenant on Civil and Political Rights, aiming at the abolition of the death penalty (ICCPR)", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Expedite the ratification of the two Optional Protocols to CRC ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Continue its intensified efforts against human trafficking ", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Continue in particular the process of constitutional reform in order to better recognize the rights of indigenous peoples ", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Continue with measures aimed at ensuring that all births of children are registered, particularly by reviewing the legislation to ensure that all children born in the territory can acquire the nationality, and avoid cases of statelessness ", - "values": [ - "3 - Considering action" - ] - }, - { - "text": "Conduct public awareness initiatives to change peoples' attitudes to corporal punishment", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Investigate and prosecute all cases of arbitrary detention in psychiatric hospitals and social care institutions, in line with the recommendation made by the Special Rapporteur on violence against women", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Follow-up on the recommendations formulated by the Committee on the procedural laws to ensure women's access to justice, and to enhance women's awareness of their rights through legal literacy programmes and legal assistance so that they can claim all their rights.", - "values": [ - "4 - General action" - ] - }, - { - "text": "Implement all Human Rights Council, General Assembly and Security Council resolutions with regard to the OPT and other Arab territories ", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Consider amending legislation criminalizing relations between persons of the same sex ", - "values": [ - "3 - Considering action" - ] - }, - { - "text": "Abolish the death penalty it has reintroduced in law", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Ratify the Convention on the Rights of the Child and the Optional Protocol to the Convention against Torture and Other Cruel, Inhuman or Degrading Treatment or Punishment", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Make an immediate commitment to holistic and wide-ranging reform of the security agencies and the criminal justice sector, underpinned by wide consultation and transparency ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Accede to and ratify the Second Optional Protocol to the International Covenant on Civil and Political Rights, aimed at the abolition of the death penalty ", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Reinforce the independence of the judiciary, including bringing to an end the provisional nature of judicial appointments an repealing the provisions of the Supreme Court law that undermine the court's independence ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Maintain the respect for the independence of Uruguay's National Human Rights Institution and Ombudsman's Office during the reporting process ", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Continue efforts to combat trafficking in women and children, by fully implementing the recently passed law of April 2008, on countering trafficking in persons", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Establish an open, consultative process for drafting and ratifying a new constitution, under which new elections would be held at the end of the transitional period", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Continue efforts in supporting persons with disabilities and ensuring their contribution in social life, as effective partners", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Review conditions in prisons, particularly pre-trial detention facilities, to bring them into compliance with international standards", - "values": [ - "3 - Considering action" - ] - }, - { - "text": "Consolidate the positive results in the fields of human development, the ratification of international instruments, trafficking in persons and combatting violence against women", - "values": [ - "4 - General action" - ] - }, - { - "text": "Continue its efforts to ensure compliance of its domestic legislation with the Convention on the Rights of the Child, specifically with regard to juvenile Justice.", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Respect the Bedouin population's right to their ancestral land and traditional livelihood", - "values": [ - "4 - General action" - ] - }, - { - "text": "Conclude the process of ratification of the International Convention for the Protection of All Persons from Enforced Disappearance", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Increase its efforts through targeted and comprehensive measures, especially in education, in order to eliminate traditional harmful practices, such as FGM and early and forced marriage", - "values": [ - "4 - General action" - ] - }, - { - "text": "Make progress with the qualitative census of indigenous peoples from El Salvador", - "values": [ - "4 - General action" - ] - }, - { - "text": "Sign and ratify the Optional Protocol to the Convention on the Rights of the Child on a communications procedure", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Continue its efforts in the development of overall infrastructure in the country and capacity building for its personnel to ensure the provision of the basic needs of its people, particularly for food, energy, education, health care and access to justice ", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Provide information in the future on further advances regarding the penitentiary reform and combating discrimination.", - "values": [ - "4 - General action" - ] - }, - { - "text": "Consider acceding to the remaining core international human rights instruments ", - "values": [ - "3 - Considering action" - ] - }, - { - "text": "Take all steps necessary to ensure that Palestinian children in military custody receive the same level of care and have the same rights as provided by Israeli criminal law to youth offenders", - "values": [ - "4 - General action" - ] - }, - { - "text": "Strengthen the national plan of action for women, including by drafting a specific law on violence against women, and further improve its laws to protect and promote women's rights ", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Adopt a definition of torture that includes all elements present in the Convention against Torture", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Seek technical assistance with a view to strengthening its appreciable efforts in the area of human rights ", - "values": [ - "1 - Minimal action" - ] - }, - { - "text": "Issue an open invitation to the United Nations special procedures", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Continue the proceedings relating to human rights defenders, journalists, social communicators and justice officials for their full and effective protection, enabling them to perform their functions with all guarantees", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Strengthen the National Institute for Women with adequate human and logistical resources to enable it to effectively discharge its role ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Review the Internal Security Act of 1982 in order to bring it into line with international standards ", - "values": [ - "3 - Considering action" - ] - }, - { - "text": "Continue the education reform in order to ensure free primary education for all girls and boys", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Continue to conduct outreach activities to raise the awareness of people on human rights", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Elaborate and implement a strategy and national action plan for the protection of the rights of children, and ensure, in particular, to counter effectively the risk of child trafficking", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Build the capacity for officers whose work concerns protection of the rights of vulnerable groups, especially children and persons with disabilities ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Continue to implement the integrated development plans of the country, in particular those aimed at satisfy equitable access and improving the quality of education and health services ", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Take measures to eliminate discrimination against women, especially on the issues of violence, land rights, right to work, right to education and other forms of gender inequality", - "values": [ - "4 - General action" - ] - }, - { - "text": "Investigate promptly and impartially all allegations of torture and ill-treatment and hold the perpetrators accountable", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Increase the minimum age of criminal responsibility and marriage to 18", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Expedite the creation of the national human rights mechanism that complies with the Paris Principles", - "values": [ - "4 - General action" - ] - }, - { - "text": "Take measures conducive to the creation of a national human rights institution in accordance with the Paris Principles.", - "values": [ - "4 - General action" - ] - }, - { - "text": "Continue enhancing the right to education and provide training services and professional development to the teachers", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Explore the expansion of health and safety regulations to cover non- medical practitioners and conduct regular monitoring of their activities ", - "values": [ - "3 - Considering action" - ] - }, - { - "text": "Further strengthen its advocacy efforts to enhance public awareness of human rights in general and the human rights of vulnerable groups, including women, children, the disabled, the elderly and indigenous people, in particular ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Increase legislative and practical efforts to reduce violence against women and domestic violence", - "values": [ - "4 - General action" - ] - }, - { - "text": "Issue a decree on compulsory maternity leave and equal wages for men and women", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Consider reviewing the definition of national minorities in order to bring it into line with international standards, and take targeted measures to eliminate discrimination based on national and ethnic origin ", - "values": [ - "3 - Considering action" - ] - }, - { - "text": "Continue to raise awareness among the population on the impact of climate change", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Continue combating discrimination and violence against women and girls by elaborating effective laws and implementing them effectively", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Reduce the voting age from 20 years to 18 years ", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Move with concrete steps - most evidently seen through committed financial resources in the national budget, and appointed experts with concrete mandates - on all four transitional justice mechanisms", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Increase the budget allocated to health from 1 percent of the GDP to 2 percent ", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Provide effective remedies to challenge a detention or expulsion in accordance with international law on human rights and refugees as well as with European standards", - "values": [ - "4 - General action" - ] - }, - { - "text": "Continue its efforts to enhance religious tolerance and maintain peaceful co-existence among followers of different religions", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Allow regular access of ICRC to prisons and detention facilities.", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Further promote education for children, especially in the rural areas and at secondary level", - "values": [ - "4 - General action" - ] - }, - { - "text": "Continue paying attention to equality of opportunities and creating favourable conditions of people residing in rural and mountainous areas.", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Adopt measures to reduce overcrowding in penitentiary centres", - "values": [ - "4 - General action" - ] - }, - { - "text": "Protect and promote rights of all minorities including Rohingya Muslims", - "values": [ - "4 - General action" - ] - }, - { - "text": "Continue implementing effectively the 2006 law on sexual violence and the zero tolerance policy ", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Consider the adoption of legislation which specifically governs domestic violence and consider the creation of structures for the shelter and protection of victims of violence ", - "values": [ - "3 - Considering action" - ] - }, - { - "text": "Plan to ratify, in addition to the instruments announced in the report, ICRMW", - "values": [ - "4 - General action" - ] - }, - { - "text": "Ratify the Rome Statute of the International Criminal Court ", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Develop a strategy to increase the participation of women in decision-making positions in all branches of the Government", - "values": [ - "4 - General action" - ] - }, - { - "text": "Strengthen efforts to ensure that violations of physical abuse and discrimination of migrant women who come to serve as domestic workers are acted upon and take steps necessary to ensure full enjoyment of human rights of all women in Saudi Arabia ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Consider ratifying the Amendments to the Rome Statute of the International Criminal Court adopted in Kampala, Uganda in 2010", - "values": [ - "3 - Considering action" - ] - }, - { - "text": "Continue to implement the National Plan for the Integration of Persons with Disabilities", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Take additional measures required to combat racial, ethnic and religious discrimination ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Continue to vigorously pursue policies designed to enhance social security and welfare of its citizens to ensure a meaningful reduction in the number of people living on incomes below the absolute poverty threshold ", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Intensify efforts to combat violence against women", - "values": [ - "4 - General action" - ] - }, - { - "text": "Ensure the independence of the Ukrainian Parliament Commissioner for Human Rights, including financially.", - "values": [ - "4 - General action" - ] - }, - { - "text": "Repeal or amend the Demonstration law (Law 107 of 2013), and the civil society law (Law 84 of 2002), which restrict freedom of assembly, association and expression, to be consistent with Egypt's international obligations", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Review all reservations to the Convention on the Elimination of All Forms of Discrimination against Women, including the one related to article 9.2, with a view to withdrawing them", - "values": [ - "3 - Considering action" - ] - }, - { - "text": "Ensure the establishment of an independent supervision mechanism which would have access to all detention centres with a view to facilitating the prompt ratification of OP-CAT ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Provide specific and adequate financial resources to implement the National Plan for Afro-Peruvians peoples, with a view to follow up on recommendations contained in paragraphs 116.103 and 116.109 of the Report of the Working Group on the Universal Periodic Review from the second cycle", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Adopt measures to prevent arbitrary detention and to avoid excessive use of force by security forces", - "values": [ - "4 - General action" - ] - }, - { - "text": "Amend the Penal Code and the Criminal Code to eliminate mitigated sentences for rapists who marry their victims for so-called "honour crimes"", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Promote the right of access to information by protecting the freedom of press and the use of mass communication", - "values": [ - "4 - General action" - ] - }, - { - "text": "Continue efforts towards the adoption of administrative and legislative measures to achieve equality of women, in particular to ensure their access to social and health services in all areas of Georgia and provide the same work and pay opportunities to men and women", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Strengthen efforts to bring national legislation into line with the Constitution and with its international human rights obligations, especially with regard to the right to freedoms of assembly, expression and association", - "values": [ - "4 - General action" - ] - }, - { - "text": "Host in Cairo the new OHCHR regional office in North Africa, as so pledged in its candidature for membership to the Human Rights Council", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Continue efforts towards the adoption of a law to combat violence against women that would criminalize domestic violence", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Take further measures to prevent discrimination based on sexual orientation, and that the Equal Opportunities Act allow legal acknowledgement of homosexual couples and their human rights", - "values": [ - "4 - General action" - ] - }, - { - "text": "Enhance its poverty eradication efforts by continuously allocating sufficient annual budget dedicated to poverty eradication programmes", - "values": [ - "4 - General action" - ] - }, - { - "text": "Review and amend all relevant legislation, including family law, inheritance law and domestic nationality and citizenship law, and the application thereof, in order to ensure equality between the sexes and compliance with the CEDAW ", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Cease the harassment and persecution of human rights defenders and civil society organizations, including by ensuring that the implementing regulations for amendments to the Law on Public Associations are not used to harass NGOs through surprise inspections, onerous information requests, and other inhibiting tactics ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Continue with the combat against all discrimination, in particular that regarding indigenous peoples through the implementation of the 2012 Anti-Discrimination Law ", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Strengthen its efforts in the fight against women trafficking, a phenomenon that remains of concern", - "values": [ - "4 - General action" - ] - }, - { - "text": "Abolish the death penalty in national legislation for all crimes", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Allow effective access to justice for the victims of gender violence, giving them judicial protection and establishing shelters for victims, in accordance with recommendations of the Committee on Economic, Social and Cultural Rights and the Human Rights Committee", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Consider establishing an independent National Human Rights Institution, in full compliance with the Paris Principles", - "values": [ - "3 - Considering action" - ] - }, - { - "text": "Ensure that the 2017 law, which is presently being reviewed, on the recognition of the rights of intersex and transgender persons pays the necessary attention to both transgender women and men", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Enhance gender equality by reducing the gender pay gap and increasing employment opportunities for women through implementation of the 2030 Agenda for Sustainable Development", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Incorporate in its national legislation a definition of discrimination against women that is consistent with the Convention on the Elimination of All Forms of Discrimination Against Women ", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Extend an open and standing invitation to the special procedures of the Human Rights Council of the United Nations so that they can assist Saint Kitts and Nevis in complying with its human rights obligations, especially those regarding the implementation of the recommendations expressly accepted by Saint Kitts and Nevis, both in its first universal periodic review cycle as well as in the current one", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Ensure that all individuals are afforded due process of law, informed of charges brought against them, and given a timely and transparent trial", - "values": [ - "4 - General action" - ] - }, - { - "text": "Take additional measures to promote a better representation of women in politics and economy", - "values": [ - "4 - General action" - ] - }, - { - "text": "Make all allegations of extrajudicial executions, forced disappearances, torture and other ill-treatment, as well as grave violations of human rights and international humanitarian law the object of effective and independent investigations at the earliest, to bring the perpetrators of these acts to justice, irrespective of their ranks or functions ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Review the cases of detention of individuals found to be deprived of their liberty for reasons which might be associated with the peaceful exercise of human rights and freedoms", - "values": [ - "3 - Considering action" - ] - }, - { - "text": "Implement the recommendations of the Human Rights Committee and the Working Group on Enforced or Involuntary Disappearances", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Adopt the measures necessary to stop domestic violence, in particular with regard to the rights of women, and take measures aimed at protecting the victims of domestic violence ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Double its efforts in combating trafficking in persons including by bringing human traffickers and people smugglers to justice", - "values": [ - "4 - General action" - ] - }, - { - "text": "Continue making efforts to align its legislation with the obligations emanating from the Convention on the Elimination of All Forms of Discrimination against Women ", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Give consideration to implement laws prohibiting sexual discrimination and affirmative action policies aimed at increasing women's participation in Parliament ", - "values": [ - "3 - Considering action" - ] - }, - { - "text": "Ratify the International Convention for the Protection of All Persons from Enforced Disappearance as early as possible, which Iceland signed in 2008", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Continue allocating adequate funds for welfare programmes providing support to persons with disabilities", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Consider including in its next universal periodic review report information on measures it has taken to analyse potential risk factors of atrocity crimes including through utilizing the United Nations Framework of Analysis for Atrocity Crimes", - "values": [ - "3 - Considering action" - ] - }, - { - "text": "Introduce a national minimum age of 16 for employment", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Further develop its education system, including through the improvement of access to education for persons with disabilities and other vulnerable groups", - "values": [ - "4 - General action" - ] - }, - { - "text": "Base the adoption of the resolution mentioned in article 5 of the new labour law on the broadest negotiation level possible ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Implement fully the national strategic framework against trafficking in persons and human smuggling, ensuring adequate human and financial resources", - "values": [ - "4 - General action" - ] - }, - { - "text": "Ratify the Convention against Torture and its Optional Protocol", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Make sure that the rules which establish the scope of action of the law and order forces prevent acts of violence against women", - "values": [ - "4 - General action" - ] - }, - { - "text": "Complete the common core of its international obligations on human rights with the ratification of CPED, OP-CAT and the Optional Protocol to CRPD ", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Continue to promote access to health", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Accede to the Convention relating to the Status of Refugees and its Protocol", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Take steps to review the Personal and Family Code by taking measures to eliminate all forms of gender discrimination and promote and protect women's and children's rights ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Strictly apply criminal provisions on hate speech and hate crimes, and to conduct awareness-raising campaigns to promote tolerance", - "values": [ - "4 - General action" - ] - }, - { - "text": "Improve access to drinking water and sanitation through a national action plan", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Take concrete legislative measures to improve occupational health and safety, including fire safety and protection against toxic chemicals, and to safeguard the rights of workers, such as the freedom of association ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Continue with measures for an enabling environment for economic, social and cultural rights of the people of Zimbabwe ", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Amend the Children (Amendment) Act in line with the Convention on the Rights of Persons with Disabilities, aiming at mainstreaming the rights of children with disabilities across all programmes, and provide the necessary resources for their protection", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Immediately stop all unlawful killings and incitement to carry out killings in the name of the anti-drug campaign", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Accede to the Convention on the Non-Applicability of Statutory Limitations to War Crimes and Crimes against Humanity without reservations, and implement it in domestic legislation", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "In commending their initiatives to promote dialogue between religious and civilizations, to continue its efforts to promote universal peace and tolerance", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Continue in its efforts to help persons with disabilities and integrate them into society as real partners", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Adopt plans for the promotion and protection of the rights of vulnerable groups, particularly women and children ", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Implement fully the recommendations of the Committee on the Elimination of Discrimination against Women, including by increasing efforts to improve the provision of sexual and reproductive health services so as to reduce maternal morbidity and prevent teenage pregnancies ", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Guarantee that decisions to expel asylum seekers, including those subject to the priority procedure, are not executed until a competent judge has ruled on the matter", - "values": [ - "4 - General action" - ] - }, - { - "text": "Redouble its efforts for the implementation of all economic, social and cultural rights for its population", - "values": [ - "4 - General action" - ] - }, - { - "text": "Establish equal rights for all children, regardless of the marriage status of their parents", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Review detention conditions so that they are in conformity with the United Nations Standard Minimum Rules for the Treatment of Prisoners and that this be achieved before the publication of the third national report", - "values": [ - "3 - Considering action" - ] - }, - { - "text": "Intensify the process to conform the National Human Rights Commission with the Paris Principles", - "values": [ - "4 - General action" - ] - }, - { - "text": "Maintain and strengthen measures to enhance the promotion and protection of human rights", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Demonstrate its commitment to article 69 of its Constitution, article 19 of ICCPR and article 19 of the Universal Declaration of Human Rights by ensuring freedom of expression for members of the press without fear of arbitrary arrest or prosecution, provide for the free flow of information on the Internet and abolish restrictive regulations on blogging and the media", - "values": [ - "4 - General action" - ] - }, - { - "text": "Continue national efforts aimed at combating forced labour and taking necessary measures to prevent, suppress and punish trafficking in persons, particularly women and children.", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Undertake more effective measures to ensure the accessibility of crucial public services such as education, health care and social benefits to the population living in rural areas, in particular rural women and children", - "values": [ - "4 - General action" - ] - }, - { - "text": "Continue the improvement of the detention system ", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Release all prisoners of conscience ", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Continue awareness raising and training of the judiciary and law enforcement personnel as regards all forms of violence against women and ex-officio prosecution", - "values": [ - "4 - General action" - ] - }, - { - "text": "In the context of the withdrawal from the European Union, ensure that human rights achievements are preserved in the future framework of human rights protection in the United Kingdom and the future status of European citizens residing in the United Kingdom", - "values": [ - "4 - General action" - ] - }, - { - "text": "Adopt specific measures to guarantee an environment that promotes freedom of expression", - "values": [ - "4 - General action" - ] - }, - { - "text": "Hold the referendum on the Constitution", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Revive efforts to develop a national strategic plan on gender-based violence and ensure appropriate resources for its implementation", - "values": [ - "4 - General action" - ] - }, - { - "text": "Continue its efforts in implementing the various measures in the areas of education, health, housing, employment and a cross-cutting dimension with a view to further promoting and protecting the rights of persons belonging to minorities and countering the discrimination and social exclusion faced by Roma communities ", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Take concrete steps to meet obligations with regard to the creation of an environment that fosters freedom of expression", - "values": [ - "4 - General action" - ] - }, - { - "text": "Promote freedom of all religions, including by passing laws to give Buddhism the status of a recognized religion ", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Strengthen provisions to protect children, particularly given the threat of trafficking and sexual exploitation of minors, and reform legislation so that children who are prostituted are not considered criminals or delinquents ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Step up reform of the justice system with a view to addressing effectively access to justice, interference in judicial proceedings and the backlog of cases", - "values": [ - "4 - General action" - ] - }, - { - "text": "Guarantee the respect for human rights and international humanitarian law by the defence and security forces, particularly as regards their treatment of prisoners ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Review the definition of torture in Egyptian law in order to ensure consistency with the Convention against Torture.", - "values": [ - "3 - Considering action" - ] - }, - { - "text": "Make primary education compulsory, and integrate the fight against illiteracy into the Educational Strategic Plan of the Government ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Strengthen the fight against impunity by effectively prosecuting those who have committed human rights violations", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Establish as soon as possible a moratorium on the application of the death penalty, in view of its abolition ", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Continue its efforts in combating HIV-AIDS ", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Ratify the OP-CRC on a communications procedure", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Give more support and consideration to minority groups, including the Muslim community, in particular on financial support, places of worship, cemeteries and other special concerns", - "values": [ - "4 - General action" - ] - }, - { - "text": "Allow the Special Rapporteur on the promotion and protection of human rights while countering terrorism free access to detention centers and communication with persons in detention during his next visit", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Establish a moratorium on the use of the death penalty with a view to abolition, and in the meantime, immediately stop imposing the death penalty on anyone under the age of 18, bring the law and judicial practices in line with international fair trial guarantees and reduce the number of crimes which carry the death penalty as sanction", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Continue measures aiming at combating gender violence, with special focus on the investigation and punishment of those responsible", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Adopt the draft National Policy on Children Protection", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Favourably consider ratifying ICRMW", - "values": [ - "3 - Considering action" - ] - }, - { - "text": "Reinforce action of the authorities to combat violence against persons with albinism", - "values": [ - "4 - General action" - ] - }, - { - "text": "Continue to work with the international community on protection of human rights, environment, disaster risk management, HIV-AIDS and capacity building.", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Adopt more effective legal measures to combat domestic violence ", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Continue the efforts in the field of the promotion and protection of the rights of vulnerable groups of the population, particularly children, women and persons with disabilities ", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Improve the situation of the foreign workers including female domestic workers as they constitute a vulnerable group", - "values": [ - "4 - General action" - ] - }, - { - "text": "Further strengthen efforts to combat discrimination in education", - "values": [ - "4 - General action" - ] - }, - { - "text": "Continue to advance its poverty reduction strategy and increase investment to health and education to improve national health-care system and raise education coverage", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Undertake a comprehensive review of conditions in prisons and underline the importance of an independent, impartial complaint mechanism for the victims of torture", - "values": [ - "3 - Considering action" - ] - }, - { - "text": "Abolish the death penalty, introducing in the meantime a formal moratorium ", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Prevent extrajudicial killings and ensure compensation and justice for the families of victims, taking into account the recommendations of the United Nations Special Rapporteur on extrajudicial killings ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Ratify and fully implement all core human rights treaties, including the International Covenant on Civil and Political Rights and the Convention against Torture, as previously recommended", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Enact legislation to prohibit corporal punishment of children in all settings", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Increase the inputs in education and give special attention to vocational training, improving quality of its labour force, and guarantee the right to work", - "values": [ - "4 - General action" - ] - }, - { - "text": "Prohibit corporal punishment of children in all settings and ensure protection against child labour and child prostitution ", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Pursue its efforts to harmonize its national legislation with international human rights standards", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Discontinue authorization for the excessive use of force by the law enforcement, especially indiscriminate use of Tasers ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Continue implementing current projects and socio-economic development programmes for the promotion and protection of human rights ", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Continue ongoing efforts to reduce the rates of maternal mortality", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Enact laws and take appropriate measures in order to criminalize hate speech", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Take necessary measures to eradicate the tendency and/or dissemination, through mass media, of stereotypes that could lead to the discrimination of migrants and refugees ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Redefine clearly the role of the military police as a temporary measure and to step up the professionalizing process of the national police to ensure the protection of human rights in all their work", - "values": [ - "4 - General action" - ] - }, - { - "text": "Ratify the Rome Statute of the International Criminal Court in its 2010 version, including the Kampala amendments on the crime of aggression, and review Malaysia's national legislation in order to ensure full alignment with the Statute", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Further emphasize the prevention of excessive use of force through security forces, especially in the handling of protests and demonstrations, including adequate training of security forces", - "values": [ - "4 - General action" - ] - }, - { - "text": "Sign and ratify CAT, establish judicial oversight over all prison facilities and take immediate action with a view to the elimination of all forms of torture by the security forces and prison personnel ", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Decriminalize consensual homosexual activity in compliance with its obligations under the International Covenant on Civil and Political Rights ", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Continue its work to promote and protect the rights of children ", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Strengthen its policies to address discrimination against women ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Ratify CEDAW and CRC as soon as possible ", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Further implement legislation and policies that protect and promote the health, legal, social, educational, economic and labour rights of migrants, refugees, and asylum seekers", - "values": [ - "4 - General action" - ] - }, - { - "text": "Reinforce measures to ensure that the judiciary is independent and free of political and economic interference and combat irregularities and delays in the administration of justice", - "values": [ - "4 - General action" - ] - }, - { - "text": "Continue, with support from relevant international organisations, its effort to promote gender equality and the well-being of women and girls", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Continue ensuring free and universal access to public health ", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Strengthen efforts to combat violence against women ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Seek to protect human rights defenders especially journalists and trade union members", - "values": [ - "4 - General action" - ] - }, - { - "text": "Investigate the involvement of the paramilitary Karuna Group of abducting children for use as soldiers", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Establish regular medical examinations of persons deprived of their liberty, set up an independent complaint mechanism for torture allegations", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Take concrete measures to raise public awareness of existing legislation and policies, which is indispensable for their effective application ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Promote the linguistic plurality through education", - "values": [ - "4 - General action" - ] - }, - { - "text": "Continue its efforts at the level of legislations and implementation in order to protect women rights and empower their emancipation economically and politically", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Make continuous efforts in its economic and social development, improve its legal system and ensure equal enjoyment of human rights by its people ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Intensify efforts to address gender disparities and combat violence against women including through the strengthening of law enforcement in accordance with its Domestic Violence Act as well as media and education programmes aimed at increasing public awareness and sensitivities on the rights of women", - "values": [ - "4 - General action" - ] - }, - { - "text": "Make efforts to ensure the implementation of legislative provisions on the impartiality and transparency of the judicial system, including by allocating sufficient funding ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Ensure the effectiveness of labour law and of the prohibition of child labour, especially child prostitution ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Ensure that the recently adopted law on domestic violence is in full compliance with international standards, and to raise the awareness of legal officials regarding the need to act against violence against women within the family", - "values": [ - "4 - General action" - ] - }, - { - "text": "Take the necessary steps to act in compliance with the verdict rendered in 2007 by the Inter-American Court of Human Rights in the Saramaka People case and to respect the right of indigenous people and Maroons to land ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Ensure that the Office of the Ombudsman is brought into line with the Paris Principles", - "values": [ - "4 - General action" - ] - }, - { - "text": "Immediately grant access to the delegates of ICRC to the Papua provinces in order for them to fulfil their mandate ", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Continue its efforts to ensure equality for women with the assistance from the international community", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Comply with obligations under international human rights and humanitarian law, and ensure the rights to health, education, work and protection of family rights in the West Bank, including East Jerusalem, the Gaza Strip and the Golan Heights", - "values": [ - "4 - General action" - ] - }, - { - "text": "Continue its efforts to strengthen the rule of law and good governance", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Ratify the Optional Protocol of the Convention on the Elimination of All Forms of Discrimination against Women", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Continue its cooperation with the international community and reinforce the role of human rights defenders so that civil society, in particular women, can participate actively in the electoral campaign and in the vote", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Proceed to the immediate closure of prisoner camps", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Strengthen the Equal Treatment Act to address discrimination based on language and advocate for gender equality, particularly in the labour market ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Issue a comprehensive anti-discrimination law and update the national action plan in order to dedicate special attention to addressing the practices of law-enforcement officials, as well as the legal and practical measures needed to combat incitement and hate crimes ", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Take further concrete steps to raise public awareness of, and to eliminate gender stereotypes against women", - "values": [ - "4 - General action" - ] - }, - { - "text": "Take concrete measures to guarantee freedom of expression and the media and to address limitations in the existing law governing the operation of civil society organizations", - "values": [ - "4 - General action" - ] - }, - { - "text": "Enhance and activate laws and legislation in order to combat all forms of discrimination, racism and xenophobia", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Take administrative and legal measures against perpetrators of racially motivated acts, targeting the Roma, Sinti, migrants and Muslims", - "values": [ - "4 - General action" - ] - }, - { - "text": "Ratify the Optional Protocol to the ICESCR as soon as possible ", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Adopt vigorous legal and practical measures to stop and combat all forms of discrimination against persons from immigrant background, especially Muslims ", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Consolidate its achievements in the human rights field and continue to reinforce its efforts to promote good governance, democracy and rule of law", - "values": [ - "4 - General action" - ] - }, - { - "text": "Adopt time-bound measures to increase access for Roma children and children with disabilities to inclusive education in mainstream schools.", - "values": [ - "4 - General action" - ] - }, - { - "text": "Take effective measures on sexual violence against children and consider the ratification of the Optional Protocols to the Convention on the Rights of the Child on the sale of children, child prostitution and child pornography and on the involvement of children in armed conflict ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Strengthen the national legal framework through the adhesion to the International Convention for the Protection of All Persons from Enforced Disappearance and the Convention against Torture and Other Cruel, Inhuman or Degrading Treatment or Punishment, and the relevant protocols", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Spare no effort to expedite the guarantee of the rights of the child at the constitutional level ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Seize the practice of closing, suspending or blocking opposition print publication and online sources and ensure equitable enjoyment of freedom of expression and peaceful assembly", - "values": [ - "4 - General action" - ] - }, - { - "text": "Ensure that credible allegations of police misconduct are investigated through an independent mechanism", - "values": [ - "4 - General action" - ] - }, - { - "text": "Put in place the necessary legislation to eliminate gender-based violence ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Take the necessary measures to eliminate the discrimination suffered by immigrants, particularly migrant workers ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Continue its efforts to promote and protect the rights of vulnerable groups and provide them with more equal opportunities for advancement", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Accelerate actions to establish a national human rights institution", - "values": [ - "4 - General action" - ] - }, - { - "text": "Adopt the necessary legislative and policy measures to combat any form of discrimination, including by guaranteeing access to justice and recognizing the right to due reparation for victims", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Strengthen measures to combat trafficking in children, facilitate access to justice and enhance victim protection and assistance in line with the recommendation of the Committee on the Rights of the Child ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Elaborate a national plan of action on children's rights in the juvenile justice system", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Agree to the requests for a visit by the Special Rapporteur on the situation of human rights ", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Review the reservations to CAT with a view to eliminating them ", - "values": [ - "3 - Considering action" - ] - }, - { - "text": "Effectuate the expansion of the mandate of the CHRAJ mandate", - "values": [ - "4 - General action" - ] - }, - { - "text": "Incorporate in its legislation a specific offence criminalizing and punishing acts of racist violence ", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "The positive dynamism of the information sector of Bahrain be recorded.", - "values": [ - "1 - Minimal action" - ] - }, - { - "text": "Continue ensuring that cases where police officers are accused of failing to protect peaceful protestors are promptly and fully investigated, and those responsible are brought to justice ", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Urgently provide for the necessary immigration and asylum legislation", - "values": [ - "4 - General action" - ] - }, - { - "text": "Reform the law on counter-terrorism in order to prevent imprisonment of journalists", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Deepen cooperation with international and regional human rights mechanisms\n\n", - "values": [ - "4 - General action" - ] - }, - { - "text": "Strengthen the national machinery for the advancement of women and take measures to overcome stereotypical attitudes regarding the roles of women and men in society", - "values": [ - "4 - General action" - ] - }, - { - "text": "Implement measures to improve prison conditions", - "values": [ - "4 - General action" - ] - }, - { - "text": "Consider the possibility of signing and-or ratifying ICRMW ", - "values": [ - "3 - Considering action" - ] - }, - { - "text": "Ensure a safe and enabling environment for journalists to perform their work independently and without undue interference, and increase measures to prevent attacks and violence against them", - "values": [ - "4 - General action" - ] - }, - { - "text": "Abrogate all discriminatory laws and practices against some groups of populations under its jurisdiction, in particular in the areas of access to justice, employment, education, health, right to property, freedom of expression and opinion, and freedom of religion and belief", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Reinforce efforts at legislative level and political measures to combat trafficking in persons for sexual and labour exploitation", - "values": [ - "4 - General action" - ] - }, - { - "text": "Strengthen its efforts to increase shelter options for internally displaced persons", - "values": [ - "4 - General action" - ] - }, - { - "text": "Take further measures to decrease serious challenges in access to justice by victims of domestic violence and human trafficking ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Introduce amendments to its domestic legislation and administrative regulations aimed at abolishing all forms of torture and other cruel, inhuman or degrading treatment or punishment ", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Ratify the International Convention on the Elimination of All Forms of Racial Discrimination, the Optional Protocol to the Convention on the Elimination of All Forms of Discrimination against Women and the Optional Protocol to the Convention on the Rights of the Child on the sale of children, child prostitution and child pornography", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Tackle the roots of gender inequality through concrete actions aimed at safeguarding women's rights within the family as well as appropriate measures of awareness-raising and human rights education ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Continue taking efficient measures against religion-based discriminatory practices in terms of access to the labour market and social integration ", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Continue to support the work of the National Agency Tadamoun and the National Commission of Human Rights", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Desist from campaigns and threats against human rights defenders and ensure the investigation by an independent police commission into missing persons from this group, in line with the LLRC report recommendations on involuntary disappearances in a wider context", - "values": [ - "4 - General action" - ] - }, - { - "text": "Ratify the Optional Protocol to the Convention against Torture and Other Cruel, Inhuman or Degrading Treatment or Punishment to establish a national preventive mechanism that provides for regular visits to all places of detention", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Prioritize the finalization and subsequent adoption of a law on gender equality, giving special attention to its adequate implementation and dissemination among State entities and the general population", - "values": [ - "4 - General action" - ] - }, - { - "text": "Continue implementing its international commitments to achieve its nationally determined contributions under the Paris Agreement of 2015", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Fully cooperate with the International Criminal Court and its investigations, as well as ensure an independent and reliable witness protection programme ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Effectively address the repressive effect of civil society monitoring procedures and anti-terrorism legislation on the operation of human rights defenders.", - "values": [ - "4 - General action" - ] - }, - { - "text": "Promote reproductive and sexual health education for adolescents in view of importance of preventive measures to fight increase sexually transmitted diseases including HIV/AIDS", - "values": [ - "4 - General action" - ] - }, - { - "text": "Recommended that Pakistan share its experience in poverty reduction and mitigation of effects of food inflation.", - "values": [ - "1 - Minimal action" - ] - }, - { - "text": "Ensure that a framework policy to protect child rights according to international standards is adopted and a national campaign to promote awareness of child rights is undertaken ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Consider strengthening the national gender machinery and put in place a comprehensive strategy, including legislation, to modify or eliminate traditional practices, such as female genital mutilation and stereotypes that discriminate against women, paying special attention to the situation of older women ", - "values": [ - "3 - Considering action" - ] - }, - { - "text": "Continue its efforts in fighting and preventing torture, with emphasis on criminal legislation to guarantee the absolute nature of the prohibition of torture", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Fully implement the normative framework and related policies aimed at preventing violence against women, in particular by addressing the factors which may still prevent women from filing complaints regarding episodes of violence ", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Continue making progress on the fight against poverty, with the appropriate social policies for its people, in particular for those most in need, with the cooperation and technical assistance that the country requires ", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Strengthen its policies and programmes aimed at combating discrimination, xenophobia, racism and intolerance ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Take concrete steps to lift or extend the two-year limitation, applicable to Meskhetian Turks who are granted conditional Georgian citizenship, to relinquish any other citizenship previously held", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Provide human rights education and sensitivity training to all members of civil service, armed forces, prison and judicial staff, focusing specifically on protection of human rights of women, children and other vulnerable groups. ", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Continue its efforts to eliminate threats, discrimination and violence against women and girls, by improving, inter alia, the implementation by the courts of the law criminalizing violence against women and the availability of legal assistance for all victims of domestic violence ", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Improve living conditions in prisons in particular in Guantanamo", - "values": [ - "4 - General action" - ] - }, - { - "text": "Undertake efforts to ensure that EHRC complies with relevant international standards", - "values": [ - "4 - General action" - ] - }, - { - "text": "Ensure the issuance of birth registration documents for all children born on its territory", - "values": [ - "4 - General action" - ] - }, - { - "text": "Consider adopting the National action plan for children to address inequalities in living standards and disparities by gender, ethnic origin and disabilities", - "values": [ - "3 - Considering action" - ] - }, - { - "text": "Take the appropriate measures so that international standards and the principle of the best interests of the child are observed in cases of repatriation of unaccompanied children", - "values": [ - "4 - General action" - ] - }, - { - "text": "Continue with its efforts to achieve a real equality between men and women, in particular in the area of labour conditions and remuneration", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Create effective administrative and judicial mechanisms to remedy discriminatory acts against Roma and other minorities ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Repeal the Armed Forces Special Powers Act or adopt the negotiated amendments to it that would address the accountability of security personnel, the regulation concerning detentions as well as victims' right to appeal in accordance to international standards ", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Ratify the Optional Protocol to the Convention against Torture (OPCAT)", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Engage more consistently with human rights bodies and mechanisms at the international level ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Take definitive measures to end child marriages", - "values": [ - "4 - General action" - ] - }, - { - "text": "Organize awareness campaigns for foreign migrant workers about their social and economic rights and ensure that migrant workers enjoy treatment that is not less favourable than that which applies for nationals, including through labour inspections in sectors where migrant workers are employed", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Ensure sufficient funds to effectively lower the pregnancies in adolescents, also by launching awareness-raising activities ", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Ratify the International Convention for the Protection of All Persons from Enforced Disappearance and take the necessary measures to give full effect to the provisions of the International Covenant on Civil and Political Rights in the domestic legal order", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Adopt and implement all the necessary measures to continue improving health care, food and education services in camps for internally displaced persons, including in remote areas", - "values": [ - "4 - General action" - ] - }, - { - "text": "Take further steps to address human rights abuses against women and children, especially domestic violence, forced and early marriages", - "values": [ - "4 - General action" - ] - }, - { - "text": "Continue to intensify efforts to stop human trafficking", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Continue the positive experience of incorporating international human rights standards into the national education system", - "values": [ - "4 - General action" - ] - }, - { - "text": "Sign and ratify, within the optimal time frame, the International Convention on the Protection of All Persons from Enforced Disappearance ", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Revise its Penal Code so as to criminalize all acts of rape without exception and irrespective of the marital status and the gender of the victim ", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Consider ratification of the Convention against Torture and its Optional Protocol", - "values": [ - "3 - Considering action" - ] - }, - { - "text": "Take measures to prevent the unnecessary admission of children to institutional care and to support the reintegration of children into their biological families ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Investigate cases of forced sterilization of women with disabilities", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Further strengthen the measures to combat human trafficking and provide the necessary assistance to the victims of trafficking", - "values": [ - "4 - General action" - ] - }, - { - "text": "Consider developing, in the context of the promotion of gender equality, human rights indicators, as suggested by OHCHR as an instrument that allows for a more precise and coherent evaluation of national human rights policies", - "values": [ - "3 - Considering action" - ] - }, - { - "text": "Strengthen the system for protecting children from exploitation", - "values": [ - "4 - General action" - ] - }, - { - "text": "Step up efforts to combat impunity, in particular through the investigation and prosecution of human rights violations committed by security forces", - "values": [ - "4 - General action" - ] - }, - { - "text": "Continue efforts to end discrimination and violence against women by taking all necessary measures to guarantee equal and effective access to justice for women and to ensure access to all levels of education", - "values": [ - "4 - General action" - ] - }, - { - "text": "Give consideration to the implementation of measures and programmes to provide assistance to landmine victims such as psycho-social, medical and financial support", - "values": [ - "3 - Considering action" - ] - }, - { - "text": "Make more vigorous efforts to combat violence against children and child trafficking and strengthen cooperation with the United Nations in protecting the rights of the child", - "values": [ - "4 - General action" - ] - }, - { - "text": "Take further measures to ensure that its national citizenship legislation complies fully with the 1961 Convention on the Reduction of Statelessness", - "values": [ - "4 - General action" - ] - }, - { - "text": "That a long-term sustainable policy approach be adopted to respond to crises such as climate change and food security", - "values": [ - "4 - General action" - ] - }, - { - "text": "Specify child trafficking as a separate crime in criminal legislation as recommended by the Committee on the Rights of the Child ", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Ratify the Optional Protocol to the Convention on the Rights of the Child on the involvement of children in armed conflict, signed in 2005, without reservation, and incorporate it into domestic law", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Continue its efforts in advancing the right to education, including in ensuring access and permanence of education, especially for girls, women and children with disabilities ", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Take all appropriate measures to ensure for street children, who are vulnerable to various forms of violence, appropriate care and protection ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Invite the Special Rapporteur on freedom of expression, which could also promote the harmonization of the provisions of the Computer Crimes Act and their implementation in line with international human rights standards ", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Remain committed to promoting human rights and engage in a continuous and constructive dialogue with the leading human rights bodies and the international community.", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Put an end to restrictions imposed on Turkmen or international associations and NGOs, especially those working in the field of human rights, such as the strict control of their activities and their financing ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Adopt proactive measures to promote women's access to decision-making positions, especially the National Parliament ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Continue to push forward the reform on re-education through labour according to China's national conditions and timetable", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Take all necessary steps to address the evil of xenophobia through legislation and greater public awareness programmes ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Continue to strengthen the regime for the protection of the rights of the child in accordance with the obligations under the Convention on the Rights of the Child", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Reform the law authorizing the punishment of children, in conformity with international standards", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Establish an independent human rights institution ", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Take concrete measures to ensure that efforts to counter terrorism are carried out in full compliance with the Constitution and international human rights obligations, including respect for fair trial guarantees and freedom of expression ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Conduct an investigation on allegations of excessive use of force against suspects and prisoners, and establish training programmes to prevent such incidents from recurring", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Regarding combating all forms of violence against Aboriginal women and girls, support effective participation of Aboriginal peoples, especially women and their organizations, in the development, implementation and evaluation of measures taken ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Continue the dialogue with the different Venezuelan stakeholders in a spirit of respect, peace and reconciliation, and with a view to achieving the political and economic stability of the Bolivarian Republic of Venezuela, which will allow further progress in the promotion and protection of all human rights for all Venezuelan women and men", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Establish a moratorium on executions and move towards abolishing the death penalty", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Ensure that the provisions in the Constitution that guarantee equality and dignity are equally applied to members of the lesbian, gay, bisexual and transgender (LGBT) community and ensure thorough and impartial investigation into all allegations of attacks and threats against individuals targeted because of their sexual orientation or gender identity", - "values": [ - "4 - General action" - ] - }, - { - "text": "Review conditions in all detention and prison facilities so that they comply with the Standards Minimum Rules for the Treatment of Prisoners.", - "values": [ - "3 - Considering action" - ] - }, - { - "text": "Establish an independent human rights institution with a broad mandate for the promotion and protection of human rights in accordance with the Paris Principles", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Enforce fully recently introduced legislation to protect women and girls from gender-based violence, including prosecutions for individuals suspected of human trafficking", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Promote increased cooperation with the international community", - "values": [ - "4 - General action" - ] - }, - { - "text": "Support the action of the Ministry of Human Rights and Civil Liberties and take the necessary measures to ensure that the independent national human rights institution is in conformity with the Paris Principles", - "values": [ - "4 - General action" - ] - }, - { - "text": "Fee free basic education policy and community schools.", - "values": [ - "4 - General action" - ] - }, - { - "text": "Prevent and put an end to human rights violations and abuses suffered by children, strengthen measures aimed at ensuring an effective end to their recruitment and their release", - "values": [ - "4 - General action" - ] - }, - { - "text": "Continue strengthening legal mechanisms for the protection of the rights of children", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Further effectively fulfil the National plan to Reduce Violence against Women and their Children 2010-2022 by means of sustained funding, independent monitoring and evaluation", - "values": [ - "4 - General action" - ] - }, - { - "text": "Engage in technical cooperation with the international human rights mechanisms with a view to the revival of the Government institutions in Somalia ", - "values": [ - "1 - Minimal action" - ] - }, - { - "text": "Ensure the protection of human rights defenders operating in the country, in accordance with the United Nations Declaration on Human Rights Defenders, to spare them intimidation and harassment", - "values": [ - "4 - General action" - ] - }, - { - "text": "Strengthen its efforts with regard to timely reporting to United Nations human rights treaty bodies.", - "values": [ - "4 - General action" - ] - }, - { - "text": "Strengthen its national institutions for the promotion and protection of human rights ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Promote social security and labour policy ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Take measures aimed at the further strengthening of national human rights institutions and continue its policy of aligning national legislation with international obligations", - "values": [ - "4 - General action" - ] - }, - { - "text": "Take the necessary measures to ensure universal birth registration, regardless of the immigration status of the parents", - "values": [ - "4 - General action" - ] - }, - { - "text": "Continue the policy of national reconciliation and consider, if necessary, elaboration of further measures with a view to fostering the process of reconciliation", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Consider its accession to the International Convention on the Protection of the Rights of All Migrant Workers and Member of Their Families", - "values": [ - "3 - Considering action" - ] - }, - { - "text": "Take into account the contributions from this Universal Periodic Review and integrate them into the respective national action plans promoted by the Government in various areas of human rights ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Continue its laudable efforts to give shelter to refugees and, through the involvement of UNHCR, to provide an effective administrative system for their registration and protection", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Continue the efforts to improve and develop health care infrastructure in remote areas in order to enable people for better health-care services", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Continue its measures to address all forms of violence against women and girls.", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Complete the process of full alignment of its national legislation with all obligations under the Rome Statute of the International Criminal Court, including the ratification of its Agreement on Privileges and Immunities", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Attach more attention to job creation, especially addressing youth unemployment ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Ratify the core international human rights instruments including the International Convention for the Protection of All Persons from Enforced Disappearance ", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Conduct comprehensive reform of the penitentiary system ", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Establish a national human rights public body in accordance with the Paris Principles, as previously recommended", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Tackle impunity by investigating and prosecuting human rights violations and abuses committed by State and non- State actors during and since the conflict, implementing court orders including on the Nepal Army, and ending political interference ", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Continue efforts in reducing crime and violence including through social interventions, community programmes and more effective policing", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Establish the National Human Rights Institution as endorsed by the National Executive Council in 1997, and recommended in the universal periodic review in 2011", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Ratify the Optional Protocol to the Convention against Torture and Other Cruel, Inhuman or Degrading Treatment or Punishment, the Optional Protocol to the Convention on the Elimination of All Forms of Discrimination against Women, the Optional Protocol to the International Covenant on Economic, Social and Cultural Rights and the Optional Protocol to the Convention on the Rights of the Child on a communications procedure", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Consider favourably the ratification of the Optional Protocol to the Convention against Torture", - "values": [ - "3 - Considering action" - ] - }, - { - "text": "Improve the response rate of the UK to the communications from the Human Rights Council mechanisms ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Sign and ratify the Optional Protocol to the International Covenant on Economic, Social and Cultural Rights as well as the International Convention for the Protection of All Persons from Enforced Disappearance", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Enhance measures and international cooperation aimed at reducing poverty, fulfilling the MDGs, and strengthening capacity to respond effectively to natural disasters ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Take the necessary steps to strengthen its fight against discriminatory practices and violence against women.", - "values": [ - "4 - General action" - ] - }, - { - "text": "Fully implement without further delay the provisions on the Law on Gender Equality and include the prohibition of discrimination against women in the new constitution", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Continue efforts to strengthen health indicators and to provide health services to all segments of the society ", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Enhance the independence and effectiveness of the National Commission for Human Rights through provision of adequate human and financial resources", - "values": [ - "4 - General action" - ] - }, - { - "text": "Promote the protection of the lesbian, gay, bisexual, transgender and intersex community", - "values": [ - "4 - General action" - ] - }, - { - "text": "Allocate more resources to social protection, including cash transfers to the most vulnerable groups in the society", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Establish an independent human rights institution in conformity with the Paris Principles and provide it with the necessary resources", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "[Freedom of belief to all] Especially the Ahmadi minority, which suffers from continued persecution", - "values": [ - "4 - General action" - ] - }, - { - "text": "Adopt legislation to ensure that all cases of arrest and detention without warrant, also those under the Internal Security Act, are subject to speedy, independent and regular judicial review", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Introduce an immediate moratorium on the death penalty aimed at its permanent abolition and implement the Committee against Torture recommendations on arbitrary and secret executions", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Ensure that refugees and asylum-seekers are dealt with as defined under international law and standards ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Develop national policies to fight hate crimes and hate speech", - "values": [ - "4 - General action" - ] - }, - { - "text": "Continue to implement the human rights plans and training programs for the judiciary and the police ", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Step up the efforts to combat all forms of discrimination and favour equality of opportunities and treatment, with special care and attention to those who are in a more vulnerable situation, such as persons belonging to the Roma community", - "values": [ - "4 - General action" - ] - }, - { - "text": "Enact legislation, as a matter of priority, that criminalizes the use of torture and ensure impartial and effective investigation in line with its obligations under the Convention against Torture", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Continue to implement the law on Prevention and Punishment of Gender-based Violence and encourage zero-tolerance among law enforcing agencies for gender-based violence. Eliminate, as a first step, judicial and administrative barriers that prevent women from accessing safe and legal abortions, and protect women from being reported and arrested or going to jail for unsafe abortion as well as to review the penal code in order to decriminalize abortion", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Set up a strategic oversight body, such as a commission on violence against women, to ensure greater coherence and more effective protection for women. ", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Continue with the implementation of policies and good practices that contribute to improving the living conditions of people with disabilities, children and the elderly ", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Submit overdue initial and periodic reports to the various human rights treaty bodies, some of which have been overdue since 1994", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Consider strengthening the delivery of primary health care with national and subnational health systems, to expand coverage and access, and to address the challenges related to the health system", - "values": [ - "3 - Considering action" - ] - }, - { - "text": "Consider introducing a new bill to the Parliament, taking into full consideration of the suggestions of the Select Committee, and take further actions towards the ratification of Convention against Torture and Other Cruel, Inhuman or Degrading Treatment or Punishment ", - "values": [ - "3 - Considering action" - ] - }, - { - "text": "Ensure effective implementation of plans and strategies to curb gender-based violence and implement pending legislation to provide legal access to reproductive health services", - "values": [ - "4 - General action" - ] - }, - { - "text": "Continue its efforts to enhance general education, awareness campaigns and training programmes on human rights ", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Take measures to effectively implement the Plan of Action for Child ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Train its lawyers and judges on the interpretation of human rights in accordance with the principle of international human rights law", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Ensure that civil society actors, including marginalized groups like those representing LGBT persons, are included in the implementation and follow-up of human rights obligations, including UPR recommendations", - "values": [ - "4 - General action" - ] - }, - { - "text": "Reinforce measures to prevent and combat gender-based violence, particularly in the fight against human trafficking, and with special emphasis on the prevention of the sexual exploitation of children and girls", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Expand human rights trainings to law enforcement organs and personnel of public sector", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Forcefully denounce at the highest level attacks against human rights defenders and give human rights defenders legitimacy and recognition through supportive statements.", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Take all necessary actions to end torture and ill-treatment of detainees, ensure that all cases of alleged torture are promptly investigated and that perpetrators are held accountable", - "values": [ - "4 - General action" - ] - }, - { - "text": "Accelerate the adoption and full implementation at the federal, state and local levels of the Gender and Equal Opportunities Bill, and the Violence against Persons Prohibition Bill, in compliance with CEDAW provisions", - "values": [ - "4 - General action" - ] - }, - { - "text": "Recognize its legal responsibility for the issue of the so-called "comfort women" and take appropriate measures acceptable to the victims, as recommended by the relevant international community", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Guarantee in legislation and in practice the right to peaceful assembly for all, without exceptions, regardless of nationality", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Continue the efforts aimed at holding free, credible and transparent elections, by adopting an inclusive approach bringing together all sectors of Malian society ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Enforce the provisions of the Criminal Code by prosecuting domestic and sexual violence against women and girls and punishing the perpetrators ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Strengthen efforts to establish a system of juvenile justice in compliance with international standards, and take specific measures to protect the rights of children and persons in detention or in prison ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Step up efforts to systematically address exploitation of and violence against children, including by introducing and effectively implementing legislation criminalizing the practice of placing children from poor families in domestic services (so-called restavek) ", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Review its policies in order to accede to the core international human rights treaties to which it is not yet a party ", - "values": [ - "3 - Considering action" - ] - }, - { - "text": "Ratify CAT and OP-CAT and subsequently implementing them", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Implement the Victims and Land Restitution Law with justice and verify that it becomes part of an integral policy of development, so that it contributes to a sustainable and dignified quality of life for the victims ", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Continue strengthening the programmes developed for the promotion of employment, right to food and social assistance for national minorities and other vulnerable sectors of the population", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Revise the 2011 law in order to guarantee freedom of opinion and expression, as well as freedom of association and peaceful assembly", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Ratify the Convention against Torture, and Other Cruel, Inhuman and Degrading Treatment or Punishment", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Enact national legislation prohibiting the use of non-therapeutic sterilization of children, regardless of whether they have a disability, and of adults with disability without their informed and free consent ", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Continue its efforts to enable women to enjoy their legitimate rights, and to highly prioritize awareness raising among all sections of the community regarding the women's rights and the importance of their realization within the cultural and civil context of the Afghani society ", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Adhere to the Convention against Torture and to the International Convention for the Protection of All Persons from Enforced Disappearance", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Take concrete steps to ensure that access to evidence is guaranteed to anyone under any regime of detention", - "values": [ - "4 - General action" - ] - }, - { - "text": "Accede to the Convention against Torture and Other Cruel, Inhuman or Degrading Treatment or Punishment and its Optional Protocol", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Further adopt policies and legislation to combat discrimination and violence against women, particularly domestic and sexual violence ", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Prohibit corporal punishment", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Develop and implement a national strategy to eliminate stigma and discrimination against people living with HIV/AIDS, and ensure orphaned and vulnerable children have access to health and education services and are protected from violence and abuse", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Uruguay indicated that it had started to comply with its own voluntary commitments made during the Working Group session, including the submission of five reports to various treaty monitoring bodies - the Committee on Migrant Workers, the Committee against Torture and the Committee on the Elimination of Racial Discrimination - and on the two Optional Protocols to the Convention on the Rights of the Child.", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Take concrete measures to improve access to decent work for all women, eliminate all discrimination against women at work, and create more socioeconomic opportunities for disenfranchised women", - "values": [ - "4 - General action" - ] - }, - { - "text": "An increase in resources for nationwide anti-trafficking awareness programmes, including law enforcement training", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Provide appropriate assistance and rehabilitation to the victims of terrorism according to relevant national laws and within the available resources", - "values": [ - "4 - General action" - ] - }, - { - "text": "Intensify efforts to achieve Millennium Development Goals 4, 5 and 6 in the shortest possible time ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Promote the rights of persons with disabilities to ensure their social integration", - "values": [ - "4 - General action" - ] - }, - { - "text": "Continue to exert efforts to accede to the international human rights instruments to which it is not yet a party", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Address appropriately the challenges identified by treaty bodies' reports, particularly those relating to gender equality, the rights of the child and the elimination of violence against women, and consider requesting technical assistance from OHCHR in order to duly implement treaty bodies' recommendations ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Strengthen its cooperation with the Office of the High Commission on Human Rights and seek international assistance for the implementation of the Plan of Action on Human Rights", - "values": [ - "1 - Minimal action" - ] - }, - { - "text": "Amend the 2010 National Security Act to ensure that the powers to arrest and detain of the National Intelligence and Security Service (NISS) are in line with the human rights obligations of Sudan", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Pursue ratification of international human rights instruments and ensure their implementation", - "values": [ - "4 - General action" - ] - }, - { - "text": "Continue to work by including human rights in general policies and placing people at the core of development", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Strengthen the promotion and protection of women's rights through appropriate legislative and policy measures and by addressing discriminatory social and cultural attitudes and practices ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Strengthen measures to promote tolerance and combat attitudes, behaviours and reflexes not covered by the law as well as stereotypes directed, inter alia, at the Muslim minority ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Guarantee, in its legislation, freedoms of expression, assembly and association, put an end to acts of violence and harassment against independent journalists and human rights defenders and release them, when appropriate ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Eliminate criminalization of homosexual relations as well as the elimination of all discriminatory practice towards LGBT persons", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Continue promoting tolerance towards persons of different ethnic origins", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Abolish all discriminatory implications of the Indian Act and grant women and men the same rights with regard to their aboriginal status ", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Implement the recommendations provided by the Working Group on Indigenous Populations/Communities of the African Commission on Human and Peoples' Rights in February 2006 ", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Continue efforts to promote equality between men and women by promoting balanced representation in decision-making bodies as well as in the labour market and entrepreneurship, among other initiatives", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Continue its judicial reforms, including by strengthening the independence of the judiciary", - "values": [ - "4 - General action" - ] - }, - { - "text": "Continue efforts to implement the 2007 law on domestic violence and prohibit dehumanizing practices against women and girls", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Step up measures to combat trafficking of persons and protect the rights of victims, in particular women and children ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Establish a national human rights institution, in accordance with the Paris principles.", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Consider positively the ratification of the Optional Protocol to the Convention on the Elimination of All Forms of Discrimination against Women", - "values": [ - "3 - Considering action" - ] - }, - { - "text": "Notwithstanding these achievements, the Government recognises the enormous challenges that the country face, and remains committed in advancing the rights and welfare of the people, with a particular focus on reducing inequality, empowering youth, and furthering socio-economic progress. The Maldives is highly prone to the unique posed by its small size, geographic dispersion, and climate change. These challenges remain significant hindrances in the country's progress towards full consolidation of democracy, a progress that is often punctuated by structural deficiencies, lack of capacity, and technical expertise", - "values": [ - "4 - General action" - ] - }, - { - "text": "Adopt the draft gender equality act and criminalize domestic violence and marital rape", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Continue to fight anti-Semitism, and to oppose any attempt to relativize or rehabilitate anti-Semite policies in past and present", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Ensure that racial discrimination does not take place by including the criterion of race in the law against discrimination to ensure that victims of such discrimination, especially migrants, are covered ", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Strengthen anti-discrimination legislation in order to prevent racial, religious and social discrimination", - "values": [ - "4 - General action" - ] - }, - { - "text": "Continue efforts to provide educational facilities to persons with special needs ", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Ensure the effective implementation of the National Action Plan to strengthen human rights in Tanzania", - "values": [ - "4 - General action" - ] - }, - { - "text": "Investigate thoroughly all extrajudicial killings", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Ensure that perpetrators of violence against women are duly prosecuted and convicted ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Continue with endeavours to accelerate the ongoing process of creating additional mechanism to protect human rights and to further the efforts in the field of combating human trafficking", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Review a number of ILO-related human rights treaties with the view to signing them. These ILO conventions include: (a) Convention No. 87 on the Freedom of Association and Protection of the Right to Organize (1948) (b) Convention No. 98 on the Right to Organize and Collective Bargaining (1949)", - "values": [ - "3 - Considering action" - ] - }, - { - "text": "Fully align its national legislation with all obligations arising out of the Rome Statute of the International Criminal Court ", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Take further steps to increase women's empowerment, including in political and economic life, and through local and national implementation of effective measures to address domestic violence and gender discrimination ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Continue its efforts to educate the population on human rights, including by introducing these concepts in the curricula at all school levels ", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Take steps to investigate all allegations of enforced disappearance and to prevent and prosecute cases of torture and illegal detention", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Review its national migration and asylum policies with a view to bring them in line with the Convention against Torture as well as the Convention on the Rights of the Child, particularly with regard to conditions of detention", - "values": [ - "3 - Considering action" - ] - }, - { - "text": "Consider further enhancing its cooperation with the human rights treaty mechanisms ", - "values": [ - "3 - Considering action" - ] - }, - { - "text": "Enhance efforts to combat discrimination against children, especially from the indigenous population and Afro-Peruvians as well as the disabled in the field of education and health", - "values": [ - "4 - General action" - ] - }, - { - "text": "Consider intensifying its efforts for human rights education across the spectrum of the Mexican establishment and organisations for a proper dissemination and implementation of the bold measures announced in its National Report", - "values": [ - "3 - Considering action" - ] - }, - { - "text": "Consider establishing a National Human Rights Institution in accordance with the Paris Principles", - "values": [ - "3 - Considering action" - ] - }, - { - "text": "Consider instituting measures to strengthen its institutional and operational capacity in the administration of justice, including the establishment of a juvenile justice system, training of judicial and law enforcement officers who deal with juvenile cases, as well as the development and strengthening of legislative measures to ensure prompt investigation and prosecution of sexual offences against children", - "values": [ - "3 - Considering action" - ] - }, - { - "text": "Ratify as soon as possible ICRPD", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Sign and ratify the International Covenant on Civil and Political Rights, International Covenant on Economic, Social and Cultural Rights, International Convention for the Protection of All Persons from Enforced Disappearance, and ratify the Convention on the Rights of Persons with Disabilities ", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Consider a moratorium on the use of death penalty, and its eventual abolition", - "values": [ - "3 - Considering action" - ] - }, - { - "text": "Strengthen the protection of journalists against harassment, attacks and arbitrary detention, and to establish fair and transparent licensing procedures for private radio and television, and ensure supervision by an independent body, as stated in the press law, in order to prevent discriminatory licensing practices and enhance the diversity of information throughout the country", - "values": [ - "4 - General action" - ] - }, - { - "text": "Take further concrete measures to advance the personal status of women, including their right to transfer nationality to their children", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Continue taking the necessary measures to protect vulnerable groups, including women, children and any other minority, whose rights could be violated ", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Ensure the protection of refugees, migrants and members of their families in full compliance with international standards ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Make the necessary regulatory adjustments to guarantee that non-convicted prison inmates are separated from convicted ones.", - "values": [ - "4 - General action" - ] - }, - { - "text": "Continue to apply measures to combat gender-based violence, including programmes of prevention which promote the elimination of gender stereotypes and the empowerment of women ", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Croatia took the opportunity to announce that the midterm universal periodic review will be prepared in order to address the level of implementation of all recommendations received from the second cycle.", - "values": [ - "4 - General action" - ] - }, - { - "text": "Continue efforts to eradicate poverty and to better living conditions as well as increase job opportunities ", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Ratify the Second Optional Protocol to ICCPR with the aim of total abolition of the death penalty", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Continue to adopt effective measures to assist victims of trafficking in human beings", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Strengthen legislation and enforcement of the law to end violence against women and promotion and protection of human rights of women and girls ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Continue mainstreaming of promotion and protection of human rights in its development plans", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Facilitate attempts indicated in the report to the UPR procedure in order to ratify the core human rights instruments, in particular ICCPR and ICESCR", - "values": [ - "4 - General action" - ] - }, - { - "text": "Accede to ICESCR", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Considering to ratify the International Convention on the Protection of the Rights of All Migrant Workers and Members of Their Families ", - "values": [ - "3 - Considering action" - ] - }, - { - "text": "Continue to promote education in the area of human rights by including it in the school curriculum", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Consider ratifying without reservations the ICCPR and the ICESCR and to review and lift all reservations to several human rights conventions that are contrary to the objectives and purposes of the treaties", - "values": [ - "3 - Considering action" - ] - }, - { - "text": "Step up efforts to combat trafficking in human beings, including broadening international cooperation on this matter", - "values": [ - "4 - General action" - ] - }, - { - "text": "Promulgate the adopted texts in order to make them effective and operational", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Denounce publicly at the highest levels of Government anti-Semitic and other hate speech and acts, and support tolerance awareness-raising and training efforts", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Guarantee the birth registration of all indigenous and migrant children and the issuance of identity documents that would allow them to have access to social services ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Continue to enhance efforts to further strengthen the judicial institutions", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Allocate adequate financial resources for the Human Rights Defender and ensure the continuity of work of the regional offices", - "values": [ - "4 - General action" - ] - }, - { - "text": "Evaluate the impact of recent changes made to policies and legislation, which seem to restrict the international protection regime for asylum seekers and refugees, and ensure that all persons in need of international protection receive fair treatment and that refugees\u2019 rights to reunification are respected", - "values": [ - "3 - Considering action" - ] - }, - { - "text": "Continue its efforts to combat trafficking in persons and consider the possibility to accede to the Optional Protocol to the CRC relating to sale of children, child prostitution and child pornography and to the United Nations Protocol to Prevent, Suppress and Punish trafficking in persons, especially women and children", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Review its prison conditions in line with the United Nations Standard Minimum Rules for the Treatment of Prisoners and implement the results of such review before the third cycle of its universal periodic review", - "values": [ - "3 - Considering action" - ] - }, - { - "text": "Strengthen and expand the relevant legal provisions for the promotion of the rights of women, in particular by strengthening their autonomy and advancing their participation in political, economic and social life", - "values": [ - "4 - General action" - ] - }, - { - "text": "Take the necessary measures to continue promoting a culture of tolerance and non-discrimination in Slovak society ", - "values": [ - "4 - General action" - ] - }, - { - "text": "To improve the material working and living conditions of judges", - "values": [ - "4 - General action" - ] - }, - { - "text": "Establish a strategy to prevent xenophobic acts and violence involving ethnic or other minorities in consultation with relevant partners, the Slovak Roma community and other national and ethnic groups.", - "values": [ - "4 - General action" - ] - }, - { - "text": "Amend the legislation to ensure that perpetrators of domestic violence are punished, while the State improves the victim support system", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Take measures to improve the enforcement of existing laws criminalizing rape and domestic violence, including by thoroughly investigating and prosecuting all acts of violence against women", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Continue its initiatives to enhance access to universal basic education for ten years for both boys and girls", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Take legislative and practical measures to promote and protect the rights of persons belonging to minorities", - "values": [ - "4 - General action" - ] - }, - { - "text": "The removal of blanket abortion restrictions on humanitarian aid covering medical care given women and girls who are raped and impregnated in situations of armed conflict", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Take steps to prevent the feminization of the AIDS pandemic ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Adopt measures to prevent, punish and eradicate violence against women", - "values": [ - "4 - General action" - ] - }, - { - "text": "Take positive measures to protect and enhance the rights of LGBT persons and facilitate their integration into society ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Continue its efforts to increase the awareness on human rights through training and capacity-building for those involved in law enforcement and the judiciary, with the support of the international community ", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Strengthen measures of prevention and fight against phenomena affecting the rights of the children, particularly child labour and violence against children ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Prohibit incitement to hatred and violence, and eliminate hate speech and discrimination in the media", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Guarantee fully the rights of women by effectively applying the family code, in particular of provisions relating to the minimum marital age, by harmonizing the respective existing regional legislation, by adopting a specific law to eradicate violence against women and by prosecuting and sanctioning those responsible for such acts ", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Guarantee access to health and education services for migrant children, eliminating administrative obstacles in this area", - "values": [ - "4 - General action" - ] - }, - { - "text": "Amend the Penal Code to ensure that lesbian, gay, bisexual, transgender and intersex persons are fully protected against discrimination, hate speech and hate crimes based on sexual orientation and gender identity", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Intensify the implementation of measures that allow the elimination of all forms of discrimination against women ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Take measures to facilitate greater participation and representation of women in public offices", - "values": [ - "4 - General action" - ] - }, - { - "text": "Extend the use of alternative detention measures as a step towards compliance with international standards of custody", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Continue its efforts to promote the right to children's education and ensure the importance of the principles of children's education in the country", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Spare no efforts to firmly combat the practice of arbitrary and summary executions and the climate of impunity which prevails on its territory, with the assistance of the international community ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Immediately end all acts of torture and hold accountable those responsible for such acts ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Adopt additional measures and programmes to prevent child labour", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Consider developing Human Rights Indicators, as suggested by OHCHR, as a fundamental tool for the realization of human rights", - "values": [ - "3 - Considering action" - ] - }, - { - "text": "Implement measures to reduce and eliminate child, early and forced marriage, including by addressing factors leading to high school drop-out rates among Roma children", - "values": [ - "4 - General action" - ] - }, - { - "text": "Continue to intensify endeavours for combating poverty at local level and for integration of vulnerable population into the economy", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Increase its cooperation with the treaty bodies through regular reporting on the implementation of international conventions ", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Sign and ratify the Second Optional Protocol to the International Covenant on Civil and Political Rights", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Abolish the death penalty and in the meantime, introduce a moratorium on the death penalty as quickly as possible and sign and ratify the 2nd Optional Protocol to the ICCPR", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Develop and implement social security reforms to protect the most vulnerable groups and individuals", - "values": [ - "4 - General action" - ] - }, - { - "text": "Continue to strengthen its labour regulations and improve the working-living conditions of workers.", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Hold free elections, given the importance of democracy for the full realization of human rights", - "values": [ - "4 - General action" - ] - }, - { - "text": "Immediately halt the violence against its citizens, which is causing many deaths and injuries, including those of women and children", - "values": [ - "4 - General action" - ] - }, - { - "text": "Enact legislation designed to provide full legal protection for women against discrimination and to ensure equal opportunity for women to participate in public affairs ", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Abolish the application of death penalty for crimes prohibited in the Military Code, and to sign and ratify the Second Optional Protocol to the International Covenant on Civil and Political Rights", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Return to the government's previous practice of announcing full election results within days of the election, broken down by polling stations ", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Make further efforts to combat any forms of discrimination against women", - "values": [ - "4 - General action" - ] - }, - { - "text": "Consider seeking technical assistance from the international community for the ratification of international treaties and conventions and the subsequent national implementation of obligations and commitments resulting therefrom, which include the creation of national capacity and human rights training ", - "values": [ - "3 - Considering action" - ] - }, - { - "text": "Continue its dialogue on the national reconciliation process through the work of the Dialogue, Truth and Reconciliation Commission by ensuring that the search for truth is a fundamental principle of the Commission, so that it produces recommendations for fair and unbiased actions, and adopt these recommendations at the earliest ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Ensure the victims of domestic abuse immediate access to mechanisms of protection and redress, inter alia, by providing the victims with shelters, by ensuring investigation of abuses, and by training law enforcement officials", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Ireland was also committed to ratification of the Aarhus Convention", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Take further measures to prevent impunity of the perpetrators of the post-election violence", - "values": [ - "4 - General action" - ] - }, - { - "text": "Ensure that the National Intelligence and Security Agency refrains from detaining journalists, closing media outlets, confiscating media equipment and other law enforcement activities which are beyond its mandate", - "values": [ - "4 - General action" - ] - }, - { - "text": "Ensure victim-sensitive and effective investigation and prosecution of perpetrators", - "values": [ - "4 - General action" - ] - }, - { - "text": "The Royal Government will introduce a systematic procedure on anti-corruption by strengthening the law enforcement through education, accountability and institutional capacity building with the support and participation from the public and the private sectors.", - "values": [ - "4 - General action" - ] - }, - { - "text": "Continue the efforts to establish a national institution to promote and protect human rights in the country ", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Respect freedoms of expression and association, both online and offline, particularly leading up to this year's elections, and release political detainees", - "values": [ - "4 - General action" - ] - }, - { - "text": "Review security and criminal laws that are open to abuse in the form of the persecution of human rights defenders and political critics", - "values": [ - "3 - Considering action" - ] - }, - { - "text": "Significantly step up actions to combat human trafficking in line with the Protocol to Prevent, Suppress and Punish Trafficking in Persons, Especially Women and Children, supplementing the United Nations Convention against Transnational Organized Crime", - "values": [ - "4 - General action" - ] - }, - { - "text": "Strengthen the \u201cCreciendo Segura\u201c programme, aimed at low-income women, with an emphasis on women living in rural areas", - "values": [ - "4 - General action" - ] - }, - { - "text": "Take measures to effectively eliminate forced child labour, including forced begging by talibé children, pursuant to the recommendations of ILO supervisory bodies", - "values": [ - "4 - General action" - ] - }, - { - "text": "Abrogate the practice of threatening witnesses and relatives of victims of human rights violations and attacks on human rights lawyers that seek judicial remedies in response to human rights violations ", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Consider ratifying CAT and its Optional Protocol, and CRPD ", - "values": [ - "3 - Considering action" - ] - }, - { - "text": "Pursue and strengthen actions to bring to an end discrimination against women", - "values": [ - "4 - General action" - ] - }, - { - "text": "Take measures to include a definition of torture in line with article 7 of the International Covenant on Civil and Political Rights in domestic legislation.", - "values": [ - "4 - General action" - ] - }, - { - "text": "Continue its efforts for the full implementation of the rural housing support programme", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Start an open, transparent and inclusive consultation on the most appropriate National Preventive Mechanism ", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Consider ratifying the Optional Protocol to the Convention against Torture and Other Cruel, Inhuman or Degrading Treatment or Punishment as well as other remaining key international human rights documents", - "values": [ - "3 - Considering action" - ] - }, - { - "text": "Submit its reports to the relevant treaty bodies in due time.", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Develop a plan of action to implement the activities of the Decade of People of African Descent, which would, inter alia, address concerns of racial profiling of people of African Descent", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Redouble its efforts to facilitate the participation of women in political and public affairs and combat stereotypes on the role of women", - "values": [ - "4 - General action" - ] - }, - { - "text": "Adopt effective measures to ensure access of all categories of citizens to treatment and prevention of HIV", - "values": [ - "4 - General action" - ] - }, - { - "text": "Ratify the International Convention on the Protection of the Rights of All Migrant Workers and Members of their Families", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Engage closely with the United Nations human rights system, including treaty bodies and special procedures mandate holders", - "values": [ - "4 - General action" - ] - }, - { - "text": "Guarantee cooperation and responsiveness of financial institutions with regard to requests to recover illegally procured funds stemming from other states ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Further strengthen actions to ensure that economic and social rights of vulnerable people are protected, and women's rights and gender equality, and especially take specific policy measures to prevent child poverty and child abuse ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Continue the establishment of development programmes, especially in rural areas", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Continue its efforts to promote human rights, in particular in the area of education and in providing health services", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Continue working to destigmatize Ebola and address the disproportionate impact of the crisis on women and health workers", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Continue the measures already undertaken to strengthen the fight against harmful practices and violence against women", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Submit overdue reports to the relevant treaty bodies ", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Reduce the length of police custody subsequent to arrest to a maximum of 48 hours", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Put in place a separate system of juvenile justice which will provide for the creation of separate detention facilities for children and adults ", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Continue its efforts in facilitating the return and reintegration of refugees and internally displaced Serbs and in further resolving all related issues", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Establish an independent mechanism for human rights in accordance with the Paris Principles ", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Investigate all allegations of torture by the police and prosecute the perpetrators", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Intensification of inspections of workers' housing and of checks on its suitability in terms of security, health, habitability and compliance with the applicable laws and decrees.", - "values": [ - "4 - General action" - ] - }, - { - "text": "Emphasize prevention with regards to face up to climate change", - "values": [ - "4 - General action" - ] - }, - { - "text": "Step up its efforts to further reduce poverty, particularly in rural areas, and to improve the well-being of the people ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Establish an independent national institute for human rights according to the Paris Principles, which could advise the Government and receive and investigate complaints by the public.", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Consider the possibility of adopting measures aimed at abolishing the death penalty ", - "values": [ - "3 - Considering action" - ] - }, - { - "text": "Complete its accession and to speedily ratify the International Covenant on Civil and Political Rights and the International Covenant on Economic, Social and Cultural Rights.", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Ensure that the use of force is based on the principles of legality, necessity and proportionality", - "values": [ - "4 - General action" - ] - }, - { - "text": "Ensure that the media can operate freely and independently.", - "values": [ - "4 - General action" - ] - }, - { - "text": "Address the link between tourism and prostitution, including ensuring the effective prosecution and punishment of those who exploit prostitution ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Expedite the provision of all official documents, particularly identity documents to all members of its Baha'i community", - "values": [ - "4 - General action" - ] - }, - { - "text": "Take effective measures to combat sexual exploitation of children and an increase of child prostitution", - "values": [ - "4 - General action" - ] - }, - { - "text": "Promote tolerance and protect minorities and vulnerable groups", - "values": [ - "4 - General action" - ] - }, - { - "text": "Undertake measures in building an equal and adequate pension system mainly for women's childcare", - "values": [ - "4 - General action" - ] - }, - { - "text": "Increase its efforts for the social and economic development of its people ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Enact comprehensive legislation prohibiting discrimination in employment on the basis of sex, race, ethnicity, religion, age, sexual orientation, gender identity and expression, marital status or disability", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Take additional measures to promote tolerance and respect for diversity", - "values": [ - "4 - General action" - ] - }, - { - "text": "Hold regular consultations with organizations representing persons with disabilities, in particular to review whether current legislation adequately addresses all the rights in the CRPD", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Seek support from the Council in the areas highlighted in the national report.", - "values": [ - "1 - Minimal action" - ] - }, - { - "text": "Ratify the ICRMW, the CPED, the 1954 Convention relating to the Status of Stateless Persons and ILO Convention No. 169 concerning Indigenous and Tribal Peoples in Independent Countries ", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Strengthen the institutional capacities of EHRC as well as the Office of the Ombudsman ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Reinforce its anti-discriminatory legal framework in order to provide for a strengthened protection of the rights of the lesbian, gay, bisexual, transgender and intersex community", - "values": [ - "4 - General action" - ] - }, - { - "text": "Strengthen rule of law and the administration of justice by consolidating concrete measures in the legal reform", - "values": [ - "4 - General action" - ] - }, - { - "text": "Revise domestic legislation to provide for the granting of refugee status and incorporate the principle of non-refoulement.", - "values": [ - "3 - Considering action" - ] - }, - { - "text": "Take all measures necessary to put the public policy and the National Action Plan on Human Rights into practice ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Continue and further expand its microcredit programme for the poorest people and ensure loan allocations to women", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Fully implement the intention of the Government of Slovenia to resolve the status of socalled erased persons in the near future", - "values": [ - "4 - General action" - ] - }, - { - "text": "Ratify the optional protocols to CRC, as requested by CRC, ICRMW and CAT ", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Strengthen national understanding and tolerance to counter manifestations of religious discrimination", - "values": [ - "4 - General action" - ] - }, - { - "text": "Improve conditions in all prisons and detention centres to comply with its international standards", - "values": [ - "4 - General action" - ] - }, - { - "text": "Broaden the review of the death penalty with a view of eliminating mandatory death sentencing for capital offences and commute all death sentences to terms of imprisonment", - "values": [ - "3 - Considering action" - ] - }, - { - "text": "Finalize the process of the ratification of the Optional Protocol to the Convention on the Elimination of All Forms of Discrimination against Women and ratify the Optional Protocol to the Convention on the Rights of the Child on a communications procedure", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Advance in the establishment of a human rights institution in accordance with the Paris Principles", - "values": [ - "4 - General action" - ] - }, - { - "text": "Continue preserving social harmony, as a diverse cultural and linguistic nation, to build a fair and inclusive society", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Review respective legislation to eliminate the requirement of prior judicial authorization for therapeutic abortion and abortion in cases of rape and incest", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Prioritise the review and implementation of the Prevention Against Torture Bill, ensuring that it complies with the Convention against Torture and Other Cruel, Inhuman or Degrading Treatment of Punishment ", - "values": [ - "4 - General action" - ] - }, - { - "text": "As previously recommended, ratify the Convention against Torture and its Optional Protocol, implement its standards into national law and take immediate and concrete actions against the practice of torture by State officials", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Launch specific targeted initiatives and formulate policies to combat intolerance, racism, xenophobia, in particular against Muslims", - "values": [ - "4 - General action" - ] - }, - { - "text": "Engage civil society in the process of implementation of UPR recommendations ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Continue the process of national reconciliation ", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Continue its efforts to review the cases of persons sentenced to death in the country and to commute all death sentences into alternative penalties, as well as to put in place a moratorium on the death penalty with a view to its future abolition", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Ratify and implement effectively the Optional Protocol to the Convention on the Rights of the Child on the sale of children, child prostitution and child pornography (OP-CRC-SC) and the Optional Protocol to the Convention on the Rights of the Child on the involvement of children in armed conflict (OP-CRC-AC)", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Accede, in keeping with the recommendations made by the Committee on Economic, Social and Cultural Rights, to the following International Labour Organization ILO Conventions: Labour Inspection Convention, 1947 Social Security Convention, 1952 Social Policy Convention, 1962 and Equality of Treatment Convention, 1962", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Continue efforts to ensure further social and economic development that is sustainable", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Stop the systemic use of ill-treatment and torture", - "values": [ - "4 - General action" - ] - }, - { - "text": "Issue a standing invitation to special procedures", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Further strengthen efforts to increase the participation of women in decision-making posts, in particular at the local level ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Raise the age for all enrolments into armed forces to the age of at least 18 years in line with the CRC recommendation ", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Develop programmes and policies for comprehensive development and improvement of the situation of the most needy groups", - "values": [ - "4 - General action" - ] - }, - { - "text": "Enhance the implementation of the international human rights treaties, to which the Lao People's Democratic Republic is a party and the ASEAN Human Rights Declaration to benefit the entire Lao population", - "values": [ - "4 - General action" - ] - }, - { - "text": "Ensure strict compliance with legal provisions pertaining to the minimum age for marriage, and also prevent and investigate cases of forced marriage, bringing perpetrators to justice and guaranteeing assistance to victims", - "values": [ - "4 - General action" - ] - }, - { - "text": "Continue its efforts to complete the accession to the relevant instruments such as the International Convention on the Protection of the Rights of All Migrant Workers and Members of Their Families", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Continue and step up its Government\u2019s laudable efforts towards implementation of anti-discrimination laws, in order to fight all kinds of intolerance and inequality, especially on the grounds of sexual orientation and gender identity", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Ensure women an equal treatment with respect to men, especially with regard to the rights to food, education and work", - "values": [ - "4 - General action" - ] - }, - { - "text": "Work with the Greenland authorities to withdraw the territorial reservation for Greenland to the Optional Protocol to the Convention on the Rights of the Child on the sale of children, child prostitution and child pornography", - "values": [ - "4 - General action" - ] - }, - { - "text": "Ensure that the freedom of association is guaranteed in accordance with the provisions of article 22 of International Covenant on Civil and Political Rights ICCPR ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Reinforce its measures in the new National Strategy to Combat Poverty so that disadvantaged and marginalized individuals and groups would benefit", - "values": [ - "4 - General action" - ] - }, - { - "text": "Consider devoting priority attention to the elimination of all forms of violence against women, in particular domestic violence, by establishing comprehensive measures, including specific legislation", - "values": [ - "3 - Considering action" - ] - }, - { - "text": "Expedite the establishment of an effective national preventive mechanism, as required under the Optional Protocol to the Convention against Torture", - "values": [ - "4 - General action" - ] - }, - { - "text": "Reinforce measures to prevent violence against foreign domestic workers and bring to justice those responsible for such crimes", - "values": [ - "4 - General action" - ] - }, - { - "text": "Release all those who are arbitrarily detained and put an end to torture and other cruel, inhuman or degrading treatment of detainees, including those belonging to the moderate opposition that started the nonviolent protest against the Government", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Implement laws combating child and early and forced marriage and female genital mutilation", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Step up its measures in combating poverty, including by providing adequate funds for its social protection system and its national employment strategy to reduce unemployment", - "values": [ - "4 - General action" - ] - }, - { - "text": "Adopt appropriate measures to ensure that the establishment of so called arrest and search zones is not done on the basis of criteria which might be equivalent to racial, ethnic or religious profiling ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Amend Act No. 22 of 2006 on family and personal status matters to eliminate provisions that lead to discrimination against women, for example the failure of the law to criminalize marital rape ", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Share good practices that allowed China to achieve poverty reduction targets set in the United Nations Millennium Development Goals", - "values": [ - "1 - Minimal action" - ] - }, - { - "text": "Continue its efforts to achieve sustainable economic development, improving education and training, protection and empowerment of vulnerable groups, such as women and the poor ", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Continue implementing the recommendations resulting from the "Champions for Change" Conference on HIV/AIDS, organized by the Caribbean Community and the United Kingdom, by seeking the necessary technical assistance to this end from the international community ", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Take further concrete steps to promote the rights of disabled persons", - "values": [ - "4 - General action" - ] - }, - { - "text": "Continue the fight against discrimination of women by, inter alia, effectively implementing the law on the protection of women from domestic violence and by strictly enforcing the prohibition of female genital mutilation education, inter alia, by raising awareness among women about the prohibition of FGM", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Consolidate its ongoing programmes to promote women\u2019s empowerment and gender equality", - "values": [ - "4 - General action" - ] - }, - { - "text": "Continue its efforts aimed at strengthening the development of children and youth", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Provide financial support to the Slovenian-language music school in the province of Carinthia on the basis of the same criteria as applied to the German-language music school ", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Allocate enough resources for education in order to ensure the right to education", - "values": [ - "4 - General action" - ] - }, - { - "text": "Review the Children Act of 2012 in order to decriminalize consensual sexual relations between minors of the same sex", - "values": [ - "3 - Considering action" - ] - }, - { - "text": "Include a definition of torture in its Criminal Code incorporating all elements contained in Article 1 of CAT", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Continue to enhance and expand access to and the affordability of health-care services, with a specific emphasis on rural and remote areas, as well as most vulnerable groups ", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "In line with the Human Rights Committee, put an end to sentences of solitary confinement, and ensure that persons sentenced to life imprisonment benefit from the safeguards of the United Nations Standard Minimum Rules for the Treatment of Prisoners", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Increase women's participation in decision-making positions", - "values": [ - "4 - General action" - ] - }, - { - "text": "Provide additional and sustained political and financial support to the justice system, including the Prosecutor's Office", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Increase the efforts in the field of civil protection in the transition period", - "values": [ - "4 - General action" - ] - }, - { - "text": "Decriminalize the organization and participation in activities of unregistered associations by repealing article 193-1 of the Criminal Code", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Agree on comprehensive legislation in a manner that all economic, social and cultural rights can be homogenously addressed by the Federal Government and the cantons, and guarantee effective judicial remedies for the violation of the rights enshrined therein", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "That achievements in reducing poverty and illiteracy be emulated by other countries", - "values": [ - "1 - Minimal action" - ] - }, - { - "text": "Take further steps to improve the system of children's rights protection", - "values": [ - "4 - General action" - ] - }, - { - "text": "Prohibit all forms of violence against children, including corporal punishment", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Continue its efforts to curb violence against women and to eliminate their stereotyping role in the society ", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Continue efforts to eliminate domestic violence", - "values": [ - "4 - General action" - ] - }, - { - "text": "Establish a moratorium with a view to abolishing the death penalty, in accordance with the above- mentioned General Assembly resolutions 62-149 and 63-168", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Prevent early and forced marriages ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Finalize pending human rights initiatives, including the Affirmative Action or Gender Equality Bill, the Right to Information Bill, and the National Plan of Action on Human Trafficking", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Continue efforts to promote gender equality", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Speed up the finalization of the preparatory work of the legal framework for the establishment of the national human rights institution ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Continue on the constructive path of promoting equality and non-discrimination, including through advancing the rights of indigenous peoples", - "values": [ - "4 - General action" - ] - }, - { - "text": "Protect and promote in particular the rights of vulnerable persons, that is: minorities, children, women, older persons, human rights defenders, refugees and prisoners", - "values": [ - "4 - General action" - ] - }, - { - "text": "Continue to cooperate with the United Nations and other international organizations to strengthen human rights", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Economic development thrives more effectively where good governance and the rule of law are maintained therefore promoting democracy, peace and stability by fighting crime and enhancing the role of Parliament, accountability and transparency will remain the Government's priority.", - "values": [ - "4 - General action" - ] - }, - { - "text": "Further enhance measures, in cooperation with the international community, to protect and promote the rights of the child, including through strengthening the educational system and the provision of adequate food, housing and health services to the most vulnerable families and groups in society", - "values": [ - "4 - General action" - ] - }, - { - "text": "Continue its efforts in ensuring the respect and promotion of human rights principles despite all existing challenges and obstacles ", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Complete the process of ratification of the two Optional Protocols to the CRC", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Continue to strengthen further the right to education", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Complete the process of establishment of a new national human rights action plan", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Take effective measures to guarantee the freedom of expression and the media through amending existing laws and practices, including its State Secrets Law, and to release all human rights defenders and journalists", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Allow access to humanitarian aid to all groups who need it, including internally displaced persons in Rakhine State and other affected areas", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Continue pursuing efforts aimed at national reconciliation, including through the implementation of the recommendations of the Truth and Reconciliation Commission of Thailand ", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Enhance efforts to promote human rights ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Strengthen measures to avoid hate speeches of all kinds in political messages and in the media", - "values": [ - "4 - General action" - ] - }, - { - "text": "Continue to strengthen legislation aimed at the elimination of gender based violence ", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Continue to promote and protect the rights of children", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Consider extending its international commitments and consider ratification of the Convention against Torture and Other Cruel, Inhuman or Degrading Treatment or Punishment ", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Declare immediately a moratorium on the application of death penalty and initiate the constitutional and legislative reforms leading to their total abolition", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Complete the establishment of the National Commission for Human Rights as soon as possible", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Extend the minimum age to 18 years for any form of labour that prevents children from accessing a full education ", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Continue to expand efforts to register, document and subsequently integrate displaced and internally displaced persons into Montenegrin society ", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Include representatives of the Sami people in all political, economic and social decisions that concern them, on an equal footing with others ", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Ensure that their laws and policies are consistent with CEDAW and ICERD by revising or revoking laws and regulations which prohibit religious symbols or clothing for teachers and civil servants which are deemed contravene to freedom of religion and expression", - "values": [ - "4 - General action" - ] - }, - { - "text": "Adopt a national plan of action for the rights of children", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Integrate the component of human rights education and training into its education system", - "values": [ - "4 - General action" - ] - }, - { - "text": "Implement a national plan of action that would abolish traditional practices and stereotypes that consequently widen the gender gap", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Sign and ratify the two Optional Protocols to ICCPR", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Actively conduct education and awareness campaigns on the issue of child prostitution, particularly in well-known meeting places of foreign crew members. These campaigns should make clear that under Kiribati Law, the crime of sex trafficking includes subjecting a child to prostitution even in the absence of transnational movement or the use of force or coercion", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Take all necessary measures to ensure accountability for unlawful use of force and extrajudicial killings by police officers, including diligent criminal investigation, prosecution and punishment of perpetrators ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Accede to the universal human rights core treaties ", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Ratify the Optional Protocol to the Convention on the Rights of Persons with Disabilities and the first Optional Protocol to the International Covenant on Civil and Political Rights", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Enact a moratorium on the death penalty and ratify the Second Optional Protocol to the International Covenant on Civil and Political Rights ", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Ratify the three remaining core ILO conventions and enforce ratified conventions and the relevant labour laws effectively, with a special focus on the elimination of forced labour (ILO Convention No. 29), while continuing to work in close and active cooperation with ILO and other international organizations ", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Effectively implement the Gender Equality and Equity Plan 2010- 2022, by allocating technical and financial resources to achieve the envisaged objectives as well as the reopening of the emergency "line 114" to provide care to women victims of gender violence", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Consider participating in core human rights treaties, as well as special procedures of the Human Rights Council.", - "values": [ - "3 - Considering action" - ] - }, - { - "text": "Ensure the full implementation of all rights enshrined in the Constitution and in the existing legislation ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Improve prison conditions, including by responding effectively to prisoners' complaints ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Ensure that people with severe mental disorders and/or in poor health, especially those whose state of health is at risk of further deterioration due to their incarceration, are not imprisoned", - "values": [ - "4 - General action" - ] - }, - { - "text": "Ratify the Optional Protocol to the Convention against Torture and Other Cruel, Inhuman or Degrading Treatment or Punishment (OP-CAT)", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Submit its overdue reports to the Human Rights Committee and the Committee on Enforced Disappearances", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Finalize the process of adoption of the national policy and plan of action for human rights and pursue relentlessly its programme "Vision 2030" aimed at reducing the number of persons living in poverty", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Adopt further measures for the protection of political and civil rights", - "values": [ - "4 - General action" - ] - }, - { - "text": "Amend laws and regulations governing the Judicial Service Commission, including by removing the Crown's control over the Commission's composition", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Closely cooperate with relevant governmental and non-governmental foreign agencies to tackle trafficking in persons and ensure that appropriate protection is rendered to various groups of victims, including victims who are foreign nationals", - "values": [ - "4 - General action" - ] - }, - { - "text": "Draw up a timetable with OHCHR for addressing the backlog of reports and future work and to continue to collaborate with non-governmental organizations.", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Continue to implement programmes aimed at guaranteeing quality education and health services to its population, at all levels ", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Ensure rapid ratification of the Council of Europe Convention on Prevention and Combating Violence against Women and Domestic Violence", - "values": [ - "4 - General action" - ] - }, - { - "text": "Extend an open and standing invitation to the United Nations special procedures ", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Ensure that all allegations of civilian casualties resulting from military operations on its territory are properly investigated and the perpetrators held accountable.", - "values": [ - "4 - General action" - ] - }, - { - "text": "Repeal all provisions that discriminate against persons on the grounds of their sexual orientation, including in the Domestic Violence Act (Protection Orders) and the Sexual Offences and Domestic Violence Act", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Guarantee the rights of children in the context of criminal accountability and create the best alternative for improving the current system of youth accountability, in compliance with the Convention on the Rights of the Child", - "values": [ - "4 - General action" - ] - }, - { - "text": "Establish a de jure moratorium on the use of death penalty as a step towards its abolition ", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Amend the legislation to penalize hate crimes and crimes of intolerance based on discrimination, especially in cases of race, sexual orientation, gender identity or expression", - "values": [ - "4 - General action" - ] - }, - { - "text": "Take measures to comprehensively address discrimination against individuals on the basis of their sexual orientation or gender identity ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Immediately release all imprisoned journalists, prisoners of conscience and human rights defenders", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Continue its efforts to promote sustainable economic and social development and to improve the living standards in the country", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Accelerate the restitution of lands confiscated by the army and set up a satisfactory compensation system", - "values": [ - "3 - Considering action" - ] - }, - { - "text": "Enhance participation by women in political and public life and further increase assistance to women heads of households in gaining access to employment and services to improve their socioeconomic conditions", - "values": [ - "4 - General action" - ] - }, - { - "text": "Guarantee in law and in practice the freedom of peaceful assembly and of association and remove all restrictions placed on the right to peaceful protests", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Continue its efforts in implementing its comprehensive policies to ensure quality education for all children", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Establish an open and transparent licensing process for newspapers that is subject to independent review ", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Implement Security Council resolutions 1325 (2000) and 2122 (2013) on women and peace and security, and fully cooperate with the Office of the United Nations High Commissioner for Human Rights and the fact-finding mission appointed by the Human Rights Council", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Continue providing universal and free education", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Continue to formulate and implement policies that enhance and develop the capacity of women to fulfil their responsibilities as key partners in the development process", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Consider ratification of all core human rights conventions ", - "values": [ - "3 - Considering action" - ] - }, - { - "text": "Take measures with a view to ending discrimination against women and children", - "values": [ - "4 - General action" - ] - }, - { - "text": "Strengthen its child protection system with effective mechanisms, including investigation of reports of cases of child abuse ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Implement the Convention on the Rights of the Child through the harmonization of its national laws to ensure that the minimum age for marriage is established at 18 years for both girls and boys and remove barriers to birth registration", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Step up its efforts in the promotion and protection of the rights of persons with disabilities in accordance with its obligation under the Convention on the Rights of Persons with Disabilities, including on the education of children with disabilities ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Establish urgently procedures-mechanisms at the central and local levels to ensure the health and safety of all children in institutions, including a child ombudsman at the national or regional level", - "values": [ - "4 - General action" - ] - }, - { - "text": "Continue to take all the measures necessary to prevent interference with press freedom and the work of human rights defenders ", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Continue its efforts to address the problem of unemployment and improve competitiveness in human resources through the effective implementation of the current strategy for 2016-2020", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Investigate all cases of human rights violations and prosecute those responsible without exception and impunity", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Continue to fight against sexual violence", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Strengthen efforts to reduce maternal and child mortality", - "values": [ - "4 - General action" - ] - }, - { - "text": "Finalize the adoption of the National Action Plan on Gender based Violence", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Ensure that the Executive continues providing all necessary support to the judiciary to make progress in the investigation of cases of human rights violations which took place during the dictatorship, and that it further continues providing all necessary support to the work of the Comision de Seguimiento de la Comision para la Paz.", - "values": [ - "4 - General action" - ] - }, - { - "text": "Continue institutionalizing the achievements in human rights and work to strengthen national human rights mechanisms and democratic institutions ", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Consider ratifying the ICRMW ", - "values": [ - "3 - Considering action" - ] - }, - { - "text": "Proceed with the full incorporation of human rights treaties to which Tuvalu is a party into its domestic legal system ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Establish an independent national human rights institution in accordance with the Paris Principles ", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Raise the public awareness on the abolition of the death penalty and continue the efforts towards abolishing the death penalty", - "values": [ - "4 - General action" - ] - }, - { - "text": "Ensure that no government entities restrict the right to freedom of expression and that media regulations conform to Afghanistan's international human rights obligations, and ensure prompt and effective investigations of threats, attacks and killings of journalists in order to prevent them and to bring those responsible to justice ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Consolidate and further develop the effective institutions established for the exercise of popular power, including the role of social oversight ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Ratify CMW ", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Develop a comprehensive legislative framework for addressing the problem of racial discrimination and incitement to racial hatred, as recommended by CERD ", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Keep its standing follow-up mechanism for recommendations", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Continue in its effort to eliminate extreme poverty and include in its social policies those who are most vulnerable, especially women, children, Afro-descendants, indigenous peoples, the elderly and persons with disabilities", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Ensure effective implementation of anti-discrimination legislation and consider the possibility of adopting special measures to promote the integration of national and ethnic minorities into society", - "values": [ - "4 - General action" - ] - }, - { - "text": "Continue intensifying the efforts to prevent, punish and eradicate all forms of violence against women ", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Consider the elimination of cruel punishment, including juvenile execution and stoning", - "values": [ - "3 - Considering action" - ] - }, - { - "text": "Strengthen policies towards provision of care and support to children infected by HIV/AIDS, particularly those orphaned", - "values": [ - "4 - General action" - ] - }, - { - "text": "Incorporate in the new Constitution articles enshrining human rights and fundamental freedoms as well as legal provisions to effectively guarantee the separation of powers, in particular the independence of the judiciary ", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Implement fully law No. 38-01 on the protection of the Slovenian minority in Italy, and Law No. 482-99", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Further ensure the enjoyment of human rights in particular in the areas of economic, social and cultural rights and the right to development ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Harmonize national law with already ratified international conventions", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Continue social and economic reforms aimed at the creation of new jobs ", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Extend and implement a standing invitation to all special procedures of the Human Rights Council", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Continue efforts aimed at the broader and more just redistribution of national wealth", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Enact legislation that guarantees that all children are registered at birth and are provided with appropriate birth certificates ", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Ratify the Arms Trade Treaty and adapt its national legislation to the Treaty", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Continue to protect and promote human rights ", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Ensure the independence of the judicial system and ensure the rules of fair trial and the rights of the defence", - "values": [ - "4 - General action" - ] - }, - { - "text": "Improve the implementation of national programmes in development and poverty eradication", - "values": [ - "4 - General action" - ] - }, - { - "text": "Take all necessary steps to work towards diminishing threats and violence against human rights defenders, especially women and journalists, and to implement an effective mechanism to protect them from these threats", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Incorporate the principle of equality between women and men into the Constitution, and seek to combat gender-based discrimination, in particular against girls in rural areas, especially as regards access to education and social services and their right to property and security", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Continue to implement strategies and plans for the socio-economic development of the country, including in the environmental area", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Take active steps to reform its labour laws in order to improve working conditions for foreign workers, to give female domestic workers the necessary legal protection and to address the recent ruling by ILO on forced labour and freedom of association and collective bargaining ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Accede to the Convention against Torture", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Continue its cooperation with civil society organizations in follow-up to this review ", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Take concrete steps to ensure continued stability in terms of the food supply chain to the country, including through bilateral and other arrangements with the international donor community", - "values": [ - "4 - General action" - ] - }, - { - "text": "Re-establish constitutional order by supporting the current political process, the transitional institutions and the enforcement mechanisms, and support the implementation of the Libreville agreements and the N'Djamena roadmap", - "values": [ - "4 - General action" - ] - }, - { - "text": "Formulate executive plans for attaining the MDG on primary and free education by 2015", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Continue to promote sustainable social and economic development so as to further reduce incidence of poverty and improve living standards of people ", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Increase its cooperation with UNICEF and other United Nations bodies to establish a comprehensive strategy to ensure the protection of women and girls from all forms of violence, particularly sexual violence. ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Further implement its programmes and policies in the field of human rights, in particular the National Plan of Action on the Promotion and Protection of Human Rights", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Adopt legislation to prohibit the collection of school fees and take the necessary measures to ensure free and universal access to education regardless of gender, ethnicity, mother tongue, religion, belief, disability or social condition", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Continue with its efforts to combat short- and long-term unemployment, in consultation with the private sector and the providers of education", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Consider revisiting the provisions of Law No. 1/1974 on marriage, which, among others, distinguishes inheritance rights between sons and daughters in the same family", - "values": [ - "3 - Considering action" - ] - }, - { - "text": "Commute all death sentences to prison sentences", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Extend the scope of the activities of the national preventive mechanism under OP-CAT in order to include places of deprivation of liberty which are not under the authority of the Ministry of Justice and the Ministry of Public Security, Interior and the Police", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Favourably consider the possibility of drawing up a national plan of action to protect the rights of children, as recommended by the Committee on the Rights of the Child", - "values": [ - "3 - Considering action" - ] - }, - { - "text": "Modify its legislation to include discrimination based on sexual orientation and gender identity in the list of offences", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Take measures to ensure that deportations are conducted in compliance with existing international obligations, and that immigration and law enforcement officials receive the necessary training to ensure the human rights of deportees are respected ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Continue to respect the rights of asylum-seekers and refugees despite the difficulties", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Create in Parliament a process to control the conformity of laws with the international commitments of the country in the field of human rights", - "values": [ - "4 - General action" - ] - }, - { - "text": "Take steps to fully integrate Roma children in its education system, including by ending discrimination and segregation of Roma children in schools", - "values": [ - "4 - General action" - ] - }, - { - "text": "Continue pursuing society integration policies aimed at uniting the country's inhabitants in areas such as State-language learning, promotion of cultural identity and cultural interaction, with particular attention to Latvia's "non-citizens" who represent around 15 per cent of the population ", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Proceed swiftly with the ratification of the CRPD ", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Ensure access to justice by all, including by repealing laws on mandatory sentencing", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Croatian Government has actively promoted reconciliation and remains committed to assure enjoyment and implementation of the rights of all persons belonging to minorities. Croatian Government implements specific programmes with regard to the return of refugees and their settlement in the country of origin, including through providing housing and adequate care and remains committed to the continuation of dialogue and cooperation aimed at finding adequate solutions to the refugee problems at the regional level.", - "values": [ - "4 - General action" - ] - }, - { - "text": "Maintain its international leadership in the promotion of the rights to solidarity, peace, development, a democratic and equitable international order, a healthy environment and the self-determination of peoples", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Continue efforts aimed at combating domestic violence ", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Consider extending an invitation on the UN Special Rapporteur on Human Rights Defenders", - "values": [ - "3 - Considering action" - ] - }, - { - "text": "Measures will be introduced to streamline the implementation of the recommendations of the Human Rights Committee. The mandate of the Inter-Ministerial Committee for Matters Concerning the European Court of Human Rights will be extended to integrate therewith decisions of the Human Rights Committee", - "values": [ - "4 - General action" - ] - }, - { - "text": "Ratify the International Convention on the Protection of the Rights of All Migrant Workers and Members of Their Families and ILO Convention No. 169", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Ratify the Optional Protocol of the Convention against Torture and Other Cruel, Inhuman or Degrading Treatment or Punishment", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Ratify the Convention on the Rights of Persons with Disabilities and repeal any legislative provision that limits the full enjoyment of the rights of this sector of the population", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Facilitate access to the labour market for indigenous peoples, people of African descent and migrants and make sure they receive all social benefits", - "values": [ - "4 - General action" - ] - }, - { - "text": "Provide opportunities for women to pass on Lebanese citizenship and withdraw all reservations to the Convention on the Elimination of All Forms of Discrimination against Women", - "values": [ - "4 - General action" - ] - }, - { - "text": "Strengthen measures to combat all forms of discrimination", - "values": [ - "4 - General action" - ] - }, - { - "text": "Ratify as soon as possible the CED", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Promptly create the independent national human rights institution in accordance with the Paris Principles and provide it with the necessary budget and resources ", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Take steps to create and maintain in law and in practice a safe and enabling environment for civil society and human rights defenders, including by acknowledging publicly their important and legitimate role in the promotion of human rights, democracy and the rule of law, by simplifying the process for forming associations and by applying the good practices set out in Human Rights Council resolution 32/31, and to request and accept technical assistance, including from OHCHR, to fulfil these commitments", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Lift the military blockade imposed on the Gaza Strip and guarantee access to goods and persons without restrictions", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Step up the efforts to combat terrorism in all its forms", - "values": [ - "4 - General action" - ] - }, - { - "text": "Review the current text of the Protection of State Information Bill in order to remove any limitations on freedom of expression, including the unwarranted persecution of whistle-blowers", - "values": [ - "3 - Considering action" - ] - }, - { - "text": "Reinforce the measures to combat discrimination against minority groups, particularly towards persons with disabilities, older persons and religious minorities", - "values": [ - "4 - General action" - ] - }, - { - "text": "Consider favourably acceding to the international treaties, to which it is not yet party", - "values": [ - "3 - Considering action" - ] - }, - { - "text": "Systematically implement the ratified human rights treaties with the assistance of relevant Special Rapporteurs and OHCHR ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Continue providing assistance and sharing its experiences with other countries in the area of human rights education and training ", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Adopt, as soon as possible, a de jure moratorium on the death penalty with a view to its definitive abolition, and accede to the Second Optional Protocol to the International Covenant on Civil and Political Rights, which prohibits the death penalty in all circumstances ", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Take steps to effectively end the practice of torture by the security forces and in places of detention and vigorously prosecute the perpetrators of such acts ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Implement measures to encourage women to undertake legal training and facilitate their entry into the judiciary ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Introduce effective measures to prevent discriminatory practices linked to the process of granting citizenship and civil status registration ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Abstain from applying legislation that criminalizes homosexuality ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Review the legislation on blasphemy to align it with the principles of freedom of thought, conscience and religion and inter alia relevant obligations under the ICCPR.", - "values": [ - "3 - Considering action" - ] - }, - { - "text": "Progressively realize economic and social rights and fulfil its obligation to dedicate maximum available resources to addressing the basic economic and social needs of its population ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Continue to take measures to promote and protect the rights of migrant workers even in situation of crisis", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Eradicate significant gaps in the realization of human rights in the European and oversees parts of the Kingdom", - "values": [ - "4 - General action" - ] - }, - { - "text": "Consider confessions obtained through torture or ill-treatment as inadmissible", - "values": [ - "3 - Considering action" - ] - }, - { - "text": "Progress towards the ratification of the Convention against Torture and Other Cruel, Inhuman or Degrading Treatment or Punishment ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Take decisive action where possible and introduce measures to ensure that no children under the age of 18 are recruited ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Intensify efforts to find a sustainable solution to\nthe situation of Bhutanese refugees in Nepal, in agreement with neighbouring States ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Take all appropriate measures, in the fields of legislation, implementation and awareness-raising, to tackle domestic violence against women and children.", - "values": [ - "4 - General action" - ] - }, - { - "text": "Undertake legislative reforms so that protection and promotion of laws on the freedom of expression and peaceful assemblies and associations would be guaranteed to all the residents of the country ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Reform its punitive anti-abortion laws", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Intensify its efforts to fight discrimination and intolerance, mainly towards asylum seekers, migrants and persons of African origin", - "values": [ - "4 - General action" - ] - }, - { - "text": "Enforce the legislation on trafficking, implement the action plan to combat human trafficking, investigate, prosecute and punish traffickers ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Deepen anti-trafficking measures, in particular by ensuring investigation and prosecution of the perpetrators of such crimes", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Invite the Special Rapporteur on violence against women and the Special Rapporteur on torture to visit the country and provide more extensive recommendations ", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Promote its efforts to combat violence against women and realizing further equality between women and men", - "values": [ - "4 - General action" - ] - }, - { - "text": "Ensure adequate resources to the Human Rights National Commission to further improve its capacity, geographical scope and its mandate", - "values": [ - "4 - General action" - ] - }, - { - "text": "Address the claims of discriminatory treatment of\nminorities", - "values": [ - "4 - General action" - ] - }, - { - "text": "Continue to facilitate access to financing for higher education (university level) to the needy categories ", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Continue efforts on the operationalization of the National Human Rights Commission in accordance with the Paris Principles", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Enact laws to implement the constitutional prohibition on FGM", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Strengthen efforts to prevent and combat all forms of discrimination, including by amending relevant legislation and launching awareness-raising campaigns", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Take further measures in order to lower or abolish education fees at the University level as well as granting scholarships in order to alleviate the financial burdens further", - "values": [ - "4 - General action" - ] - }, - { - "text": "Reduce the gap between urban and rural areas through poverty reduction in rural areas ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Intensify its efforts to promote inclusive growth, especially in the rural and mountainous areas", - "values": [ - "4 - General action" - ] - }, - { - "text": "Continue to promote human rights education at all levels and strengthen human rights training and capacity-building for public sector officials", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Seek assistance of the international community, including relevant experiences, for the implementation of the Lessons Learnt and Reconciliation Commission recommendations", - "values": [ - "1 - Minimal action" - ] - }, - { - "text": "Enact specific legislation to punish violence against women and establish structures for the protection of victims ", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Continue policies for protecting the rights of migrants ", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Further increase its efforts to end the segregation of Roma children in schools by tasking an appropriate authority with the clear responsibility of identifying segregation and giving schools binding guidelines to end segregating practices ", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Encourage the historical political cooperation with the United Nations system in the framework of technical assistance ", - "values": [ - "1 - Minimal action" - ] - }, - { - "text": "Continue its development assistance to the developing countries for better realization of socio-economic rights as part of a globally inclusive and sustainable development agenda", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Continue the longstanding de facto moratorium on death penalty and further consider its legal abolition", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Improve prisons and detention facilities, also by means of human rights training for law enforcement officials and prison officials.", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Consider taking the necessary steps to eliminate any legal provisions that may be viewed as limiting freedom of expression", - "values": [ - "3 - Considering action" - ] - }, - { - "text": "Establish an effective legal and judicial process for investigating cases of child disappearance and to ensure that those found responsible are brought to justice", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Put in place measures to protect members of non-conventional family models from discrimination in terms of employment, immigration, family-related social welfare and other public benefits", - "values": [ - "4 - General action" - ] - }, - { - "text": "End the paralysis of the Constitutional Tribunal by appointing new judges", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Continue human rights education and training programmes, including for security and law enforcement officials ", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Continue strengthening the government programme 2012-2015 to improve the situation in areas such as education, health, disabled persons and the social integration of vulnerable groups", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Ratify the international human rights instruments to which it is not a party", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Continue to build on the successes achieved to date to improve access to the justice system and increase efforts to build national capacity in bringing about accountability such as the convictions related to the 1982 Dos Erres massacre", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Further implement integrated education and address the negative impact of ethnic segregation in schools, including through implementing common activities and policies to promote interaction between children of all linguistic and ethnic backgrounds ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Pay due attention to the implementation of recommendations made by the Special Rapporteur on Torture ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Continue its efforts in combating sexual abuse, including by ensuring that perpetrators are brought to justice", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Establish an independent body to promote and protect the rights of the child and to monitor the implementation of the Convention on the Rights of the Child ", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Set up the TRC Follow-up Committee and continue to implement all of the TRC recommendations ", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Commit to preventing further violence and human rights violations in Darfur also through effective cooperation with all relevant international bodies", - "values": [ - "4 - General action" - ] - }, - { - "text": "Create a Truth and Reconciliation Commission in order to address the root causes of politically motivated violence", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Adopt a comprehensive national plan on inclusion in order to combat persisting inequality, paying particular attention to persons in vulnerable situations such as women, children, persons with disabilities and minorities", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Consider withdrawal of its reservations to the Convention on the Elimination of All Forms of Discrimination against Women", - "values": [ - "3 - Considering action" - ] - }, - { - "text": "Strengthen the fight against racism, xenophobia and hate speech", - "values": [ - "4 - General action" - ] - }, - { - "text": "Prohibit discrimination on the basis of sexual orientation and gender identity, particularly concerning the enjoyment of the right to health", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Continue to promote the rights of vulnerable groups, in particular girls, women, migrants and persons with disabilities", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Increase its efforts to close the economic gender gap in order to bring about greater gender equality", - "values": [ - "4 - General action" - ] - }, - { - "text": "Improve the relevant legislation to further combat racial discrimination and incitement to racial hatred in order to effectively protect the rights of ethnic minorities", - "values": [ - "4 - General action" - ] - }, - { - "text": "Designate an Ombudsperson for children.", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Take necessary measures, including public campaigns and training of teachers and other teaching staff, to raise awareness of the value of intercultural integration and combat all forms of racism and xenophobia", - "values": [ - "4 - General action" - ] - }, - { - "text": "Consider further increase in state expenditures on the health sector with a view to meeting the demand for medical supplies, including essential drugs", - "values": [ - "3 - Considering action" - ] - }, - { - "text": "Complement the reported improvement in mental health services with more robust supervision of the way mental patients are treated in \u201cprayer camps\u201c", - "values": [ - "4 - General action" - ] - }, - { - "text": "Strengthen the protection of the rights of children, particularly those in vulnerable situations, and ensure perpetrators of sexual violence and child labour are held to account", - "values": [ - "4 - General action" - ] - }, - { - "text": "Investigate cases of killings related to children born with disabilities and bring to justice those responsible for such crimes", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Take appropriate legislative measures to ban violence against children, including corporal punishment ", - "values": [ - "4 - General action" - ] - }, - { - "text": "End all arbitrary detention and strengthen the capacity on the judicial system as addressed in the country report following the previous Universal Periodic Review ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Set up a national human rights commission, in order to, inter alia, document all human rights violations linked to the recurrent internal armed crises", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Step up work to combat stigmatization, discrimination, inequality and gender-based violence in the national legislation and policy of Swaziland", - "values": [ - "4 - General action" - ] - }, - { - "text": "Combat more actively the stereotypes and prejudices to which lesbian, gay, bisexual, transgender and intersex persons are subject, organizing public awareness campaigns and ensuring that the perpetrators of acts of violence on the grounds of sexual orientation are prosecuted and punished", - "values": [ - "4 - General action" - ] - }, - { - "text": "Call for technical assistance for capacity-building to fulfil international treaty reporting obligations", - "values": [ - "1 - Minimal action" - ] - }, - { - "text": "Adopt legislation for the implementation of the Rome Statute of the International Criminal Court ", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Strengthen the provisions of the Criminal Code on gender-based violence", - "values": [ - "4 - General action" - ] - }, - { - "text": "Strengthen efforts to promote a transparent political system by streamlining judicial procedures to investigate and prosecute corruption expeditiously", - "values": [ - "4 - General action" - ] - }, - { - "text": "Adequately implement its legislative framework addressing domestic and sexual violence, ensuring the inclusion of provisions on marital rape, as well as a specific definition of violence against women, as distinct from intra-family, family or domestic violence", - "values": [ - "4 - General action" - ] - }, - { - "text": "Strengthen federal and local legislation in favour of the rights of indigenous peoples ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Adopt measures and take steps aimed at raising public awareness to fight against the climate of homophobia that prevails in the country", - "values": [ - "4 - General action" - ] - }, - { - "text": "Strengthen the Ombudsman's capacity to investigate and act on allegations of discriminations in all its forms", - "values": [ - "4 - General action" - ] - }, - { - "text": "Submit its overdue report to the Committee against Torture at the earliest time.", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Take all measures to ensure that the forthcoming elections are peaceful, free and fair and occur in a climate free of intimidation and where the right of assembly is fully respected.", - "values": [ - "4 - General action" - ] - }, - { - "text": "Reconsider decrees and guidelines that are overly burdensome on domestic and international civil society organizations through lengthy and opaque registration requirements, taxation and other means", - "values": [ - "3 - Considering action" - ] - }, - { - "text": "Being aware of the benefits of collaborating with the CSOs, the government is committed to enhancing closer ties with CSOs. ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Consider ratification of the Rome Statute of the International Criminal Court (ICC)", - "values": [ - "3 - Considering action" - ] - }, - { - "text": "Ratify the third Optional Protocol to CRC ", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Continue its current efforts in the fields of social cohesion and quality of basic education", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Undertake all necessary measures to ensure the independence of the judiciary, including by putting an end to any intimidation or unjustified disciplinary procedures against judges perceived as critical of the coup", - "values": [ - "4 - General action" - ] - }, - { - "text": "Continue to take appropriate measures to protect the most vulnerable sectors and to preserve social cohesion, in the face of the huge social inequalities and ensure the enjoyment of basic goods and services for families living in conditions of poverty", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Further promote and protect the rights of vulnerable groups of the population, including children, persons with disabilities, women and older persons", - "values": [ - "4 - General action" - ] - }, - { - "text": "Continue and further intensify the programs on combating HIV/AIDS ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Further progress in the implementation of the National Literacy Programs "Yes I can" and "Yes I can continue"", - "values": [ - "4 - General action" - ] - }, - { - "text": "Consider ratification of the third OP to CRC on a communication procedure", - "values": [ - "3 - Considering action" - ] - }, - { - "text": "Continue to strengthen the role of national human rights protection mechanisms", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Commute all death sentences and take concrete measures to abolish the death penalty", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Strengthen its efforts in the fight against impunity ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Step up its efforts in the field of the protection of the rights of children, particularly against domestic violence ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Continue efforts related to reducing the crime rate", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Increase the efforts to reduce maternal mortality, prioritizing actions that promote access to sexual and reproductive health centres", - "values": [ - "4 - General action" - ] - }, - { - "text": "Continue its efforts to fully prohibit torture and eliminate all forms of other ill-treatment at every level ", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Continue its efforts to improve the status of women and ensure their full participation in all areas of life", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Continue working on implementing the programme on sustainable development, a strategy adopted under the recent National Council for Development, which is based on the interconnection between economic, social and environmental processes, a strategy which is similar to that of Bhutan's middle path of sustainable development, which is also based on the premise that economic, social and environmental forces are highly interdependent", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Adopt a clear and comprehensive definition of racial discrimination in its legislation", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Ensure that perpetrators of gender-specific violence and rape of minors are held accountable for their actions and improve the access to health services and economic assistance for victims", - "values": [ - "4 - General action" - ] - }, - { - "text": "Increase efforts to address the serious problem of violence against children, including by ensuring full legal protection against the sexual abuse of children", - "values": [ - "4 - General action" - ] - }, - { - "text": "Establish as soon as possible a national human rights institution in accordance with the Paris Principles, with a broad mandate and sufficient resources", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Strengthen the mechanism to fight against poverty, especially encouraging programmes aimed at child malnutrition", - "values": [ - "4 - General action" - ] - }, - { - "text": "A Witness and Victim Protection Bill will be introduced in Parliament shortly and measures will be taken to implement the legislation including the establishment of the necessary institutions.", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Consider ratifying the International Convention for the Protection of All Persons from Enforced Disappearance and the Convention on the Rights of Persons with Disabilities, which will help to enhance the enjoyment of human rights and fundamental freedoms in all aspects of life", - "values": [ - "3 - Considering action" - ] - }, - { - "text": "Reform the Communication Code", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Ensure speedy ratification of CAT and the Optional Protocol thereto ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Continue addressing the existence of certain practices and stereotypes derived from cultural practices which could result in discrimination against women and girls", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Ratify the conventions to which it is not yet a party, in keeping with the recommendations accepted during the first cycle of the review", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Take steps aimed at the elimination of child, early and forced marriage", - "values": [ - "4 - General action" - ] - }, - { - "text": "Consider, with the assistance of the relevant United Nations bodies, if needed, ratifying the core international human rights instruments to which Sao Tome and Principe is not a party, starting with ICCPR and ICESCR ", - "values": [ - "3 - Considering action" - ] - }, - { - "text": "Decriminalise consensual sexual acts among adults of the same sex and adopt measures to eliminate social prejudices and stigmatization of homosexuality ", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Extend a standing invitation to the human rights special procedures and ratify the Rome Statute of ICC, OP-CAT and ILO Conventions nos. 169 and 189 ", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Ratify CPED and OP-CAT", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Develop appropriate mechanisms to prevent all forms of violence against women, effectively prosecute perpetrators of such violence and provide adequate redress for victims", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "With assistance from the Office of the High Commissioner for Human Rights, move to speed up the signing and ratification of ICESCR, ICCPR, CAT and its Optional Protocol, and CRPD ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Include a gender perspective into the UPR follow-up process in a systematic and continuous manner.", - "values": [ - "4 - General action" - ] - }, - { - "text": "Continue to empower women and broaden the scope for their participation in society ", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Ensure a safe environment for human rights defenders' activities and that perpetrators of the murders, attacks, threats and harassment of human rights defenders be brought to justice.", - "values": [ - "4 - General action" - ] - }, - { - "text": "Allocate adequate resources to ensure the effective implementation of the National Action Plans to combat Violence Against Women, Violence Against Children and Female Genital Mutilation ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Further pursue efforts to develop education, particularly in rural areas of the country", - "values": [ - "4 - General action" - ] - }, - { - "text": "Adopt a human rights based approach in the engagement with youth, and increase the resources for youth development in urban and rural areas, including by improving the access to and quality of education", - "values": [ - "4 - General action" - ] - }, - { - "text": "Ensure that all allegations of violations of human rights and international humanitarian law are duly investigated, and that the perpetrators are brought to justice ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Counter the trend towards the repression of free speech, including restrictions of web-based media", - "values": [ - "4 - General action" - ] - }, - { - "text": "Step up efforts to effectively combat violence against women and children", - "values": [ - "4 - General action" - ] - }, - { - "text": "Continue its efforts in ensuring implementation of its strategy of antidiscrimination in order to guarantee the equal treatment of Romanian people, including the minority ", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Give particular attention to all measures to improve the human rights situation in Western Sahara, in particular develop and implement independent and credible measures to ensure full respect for human rights and guaranteeing such basic rights as freedom of association and expression ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Abrogate all penal provisions criminalizing sexual relations between consenting adults of the same sex", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Continue and expedite the ratification process of CAT", - "values": [ - "4 - General action" - ] - }, - { - "text": "Put in practice a national strategy to eliminate discrimination against caste, through the immediate adoption of the Equality Law of 2010 that prohibits such discrimination, in conformity with its international human rights obligations, including CERD's General Recommendation 29 and recommendations of the Special Rapporteur on Contemporary Forms of Racism ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Accede to ICCPR, ICESCR and CAT ", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Strengthen measures in response to reported violence against women and girls, and, in the worst cases of honor crimes and end impunity", - "values": [ - "4 - General action" - ] - }, - { - "text": "Explicitly prohibit corporal punishment in all settings, including the home ", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Recommended that the mandate of the Higher Committee on Human Rights and Fundamental Freedoms be aligned with the Paris Principles.", - "values": [ - "4 - General action" - ] - }, - { - "text": "Step up efforts to raise national awareness to combat all forms of violence against women and girls", - "values": [ - "4 - General action" - ] - }, - { - "text": "Enact measures to stop violence against women in the framework of the national strategy for gender equality and against domestic violence ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Intensify its efforts to combat xenophobia, islamophobia and refugee hatred, and take the necessary measures to condemn hate speech", - "values": [ - "4 - General action" - ] - }, - { - "text": "Join the Voluntary Principles on Security and Human Rights Initiative in order to promote respect for human rights in the provision of security for extractive industry activities", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Ensure that the death penalty is not applied to consensual same-sex relations between adults, and that the Penal Code does not criminalize such activity ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Strengthen transitional justice and its equity. Pursue cooperation with the International Criminal Court", - "values": [ - "4 - General action" - ] - }, - { - "text": "Make every effort to fully investigate all threats and attacks against human rights defenders and journalists and bring the perpetrators to justice ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Seek the provision of technical assistance with regard to adolescent health problems, trafficking in persons and prevention and control HIV-AIDS", - "values": [ - "1 - Minimal action" - ] - }, - { - "text": "Continue efforts aiming at the protection of human rights, including through the establishment of a national human rights institution", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Take all the necessary measures to end the escalation of violence and immediately cease armed hostilities", - "values": [ - "4 - General action" - ] - }, - { - "text": "Further consider the implementation of the national plan of action on trafficking in persons, which is currently being drawn up ", - "values": [ - "3 - Considering action" - ] - }, - { - "text": "Establish government-coordinated measures aimed at prevention of sexual abuse of children", - "values": [ - "4 - General action" - ] - }, - { - "text": "Provide the Office of the People's Advocate with the appropriate financial and human resources and follow up diligently on its recommendations ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Continue to strengthen the family and family values ", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Continue investing in women's empowerment and promoting their participation in all aspects of the State machinery", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Investigate vigorously and prosecute trafficking offences", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Include in its national criminal legislation a definition of torture in compliance with the provisions of the CAT.", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Modify articles 6 and 9 of the bill repealing the Decree No. 100/187/91 on the regulation of public manifestations and public meetings, which would allow especially authorities to "delegate one or more official(s) mandated to attend to any public meeting and ensure the conformity with its obligations regarding human rights" ", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Strengthen its preventative measures in the areas of rape and domestic violence, looking more deeply into the statistical data to better understand the causes, developing effective policies and targeted prevention campaigns, education and awareness-raising among young people and adopting measures that are geared to changing the models and patterns that result in stereotyping of women ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Ratify the Optional Protocol to the Convention against Torture and Other Cruel, Inhuman or Degrading Treatment or Punishment ", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Continue to adopt the legislative measures and protection policies necessary to ensure education for the Amazigh and Saharawi populations at all levels, as well as the full enjoyment of their rights to demonstrate and participate in the cultural life of the country, preserving their traditions and identity", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Consider the ratification of the Convention against Torture and Other Cruel, Inhuman or Degrading Treatment or Punishment", - "values": [ - "3 - Considering action" - ] - }, - { - "text": "Include the total abolition of the death penalty in the Constitution as soon as possible", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Facilitate access to justice by victims of sexual violence, particularly by reducing delay for hearings victims and improving care for these victims ", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Maintain measures to reduce HIV-AIDS mainly through strategies of abstinence and fidelity as well as through better access to medicines for all people in need, to avoid an increase in the infection rate ", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Pursue efforts to combat human trafficking", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Become a party to the International Covenant on Economic, Social and Cultural Rights and the Optional Protocol thereto, the Optional Protocol to the Convention against Torture, the International Convention on the Protection of the Rights of All Migrant Workers and Members of Their Families and the International Convention for the Protection of All Persons from Enforced Disappearance ", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Refrain from interfering in the affairs of religious institutions, especially with respect to the rights of ownership and property.", - "values": [ - "4 - General action" - ] - }, - { - "text": "Provide adequate assistance and protection to women who were victims of violence", - "values": [ - "4 - General action" - ] - }, - { - "text": "Ensure effective and monitored enforcement of existing federal and provincial legislation related to violence against women", - "values": [ - "4 - General action" - ] - }, - { - "text": "Increase the use and promotion of alternative, non-custodial measures", - "values": [ - "4 - General action" - ] - }, - { - "text": "Consider further legislative and administrative measures to encourage the increase of women's participation in public life", - "values": [ - "3 - Considering action" - ] - }, - { - "text": "Consider ratifying the core human rights instruments ", - "values": [ - "3 - Considering action" - ] - }, - { - "text": "Respond to the numerous requests for visits issued by the special procedures and extend a standing invitation to the special procedures as soon as possible", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Establish an independent medical legal institute to ensure that investigations into allegations of ill-treatment are carried out in an objective and impartial manner ", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Study the possibility to develop new measures so that programs to combat poverty include vulnerable people such as seniors and people with disabilities ", - "values": [ - "3 - Considering action" - ] - }, - { - "text": "Further introduce effective measures to enhance gender equity in the labour market", - "values": [ - "4 - General action" - ] - }, - { - "text": "Promote equal participation in political and public affairs as a key means of overcoming the current political and humanitarian crisis", - "values": [ - "4 - General action" - ] - }, - { - "text": "Continue to cooperate with human rights mechanisms, including the special rapporteur on Myanmar", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Intensify its efforts to improve health infrastructure as well as the quality and delivery of health services, including access to reproductive health information and contraceptives for women in marginalized areas", - "values": [ - "4 - General action" - ] - }, - { - "text": "Adopt a law expressly providing that racist motivation should be considered as an aggravating circumstance with a view to condemning the authors of such infractions ", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Redouble efforts on ensuring gender equality and take measures to prevent gender discrimination ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Maintain and strengthen the economic and social model freely chosen by the Cuban people, and continue to advance in the full participation of the people in public affairs ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Ensure that the Spanish legal framework concerning migrants, refugees and asylum seekers, with particular attention to the autonomous cities of Ceuta and Melilla, complies with its international human rights obligations, including with regard to procedural safeguards", - "values": [ - "4 - General action" - ] - }, - { - "text": "Consider alternative (legislative) measures that will enhance the position of children in the short term (i.e. extending the remit of the Ombudsman to children in prisons and asylum-seeking children) ", - "values": [ - "3 - Considering action" - ] - }, - { - "text": "Undertake measures to improve the legislative base with the aim of increasing the effectiveness of institutions providing guardianship to unaccompanied children", - "values": [ - "4 - General action" - ] - }, - { - "text": "Ratify CAT, ICRMW and the Optional Protocol to CAT", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Enact legislative measures to facilitate the existence of political parties", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Establish a national coordination system to solve the problem of violence against women", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Refrain from adopting legislation that would limit the right to freedom of association", - "values": [ - "4 - General action" - ] - }, - { - "text": "Continue undertaking measures to fight against trafficking in human beings", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Intensify efforts to further raise public awareness and education on human rights and further strengthen capacity-building for human rights institutions and law enforcement mechanisms ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Amend its criminal procedural code to bring it in line with international human rights standards and conduct a systematic campaign among Saudi Arabian judges to apply this amended Code ", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "End segregation in schools to ensure that one curriculum is taught to all children that promotes tolerance among the different ethnic groups in the country and appreciates their specificities", - "values": [ - "4 - General action" - ] - }, - { - "text": "Within the framework of its national Inter-Religious Council and the Institute for Peace and Conflict, continue its commendable efforts in promoting the interethnic, inter-communal and inter-religious harmony", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Ratify and implement into domestic law the Convention on the Elimination of All forms of Discrimination against Women, the Convention on the Rights of the Child and the Convention on the Rights of Persons with Disabilities", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Continue to strengthen the institutional framework so that the State is able to respond adequately and efficiently to future challenges in areas of public health, education, culture, environment and State administration ", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Take necessary precautions to protect mosques and other religious sites against the rising incidents of racism, xenophobia and Islamophobia", - "values": [ - "4 - General action" - ] - }, - { - "text": "Strengthen policies and measures, including legislation in the area of domestic violence", - "values": [ - "4 - General action" - ] - }, - { - "text": "Explicitly criminalize female genital mutilation and cutting in the domestic laws of Sierra Leone to achieve further progress in eliminating this harmful practice", - "values": [ - "4 - General action" - ] - }, - { - "text": "Continue actions aimed at the promotion of an environment of tolerance and cultural diversity in order to prevent cases of discrimination in schools ", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Continue strengthening its reforms programmes in all sectors to guarantee the human rights and freedoms enshrined in its Constitution ", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Establish a national institution for the promotion and the protection of human rights ", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Continue consultations to set up a national human rights institution and materialize this project as soon as possible", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Step up efforts towards a more inclusive education system, especially by focusing on special education needs", - "values": [ - "4 - General action" - ] - }, - { - "text": "Take appropriate measures to effectively support the cultures of persons belonging to national minorities, in particular by preserving their languages ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Pursue its efforts to ensure gender equality and the participation of women in public institutions, including at the local level, and promote this in the private sector ", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Ensure the respect of the right to a fair trial, as provided by article 14 of the International Covenant on Civil and Political Rights, including the right to appeal for persons sentenced to death", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Extend a standing invitation to Special Procedures mandate holders ", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Ensure that national legislation complies with international fair trial standards and, inter alia, provides for the presumption of innocence, a competent defence for the accused, true rights to appeal, and the ability to seek pardon and commutation of sentence, particularly in capital punishment cases ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Adopt legislation and promote measures to prevent discrimination based on race, disability", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Prohibit all forms of corporal punishment", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Take steps to effectively guarantee the right to education", - "values": [ - "4 - General action" - ] - }, - { - "text": "Prohibit and prevent torture in all its forms, particularly of children, and end alleged human rights violations committed by security forces and armed groups", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Improve prison conditions by strengthening preventive measures to protect prisoners from ill-treatment and torture and investigating allegations of abuse", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Eliminate discriminatory practices against persons with disabilities in the medical setting and ensure physical access of children with disabilities to educational and public institutions, as part of its implementation of the Strategy of social inclusion of persons with disabilities", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Strengthen measures against corruption and police excesses", - "values": [ - "4 - General action" - ] - }, - { - "text": "Address discrimination against children through a review and reorientation of policies and launch comprehensive public information campaigns to prevent and combat all forms of discrimination, where needed within the framework of international cooperation ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Banish any forms of racism, discrimination and xenophobia in political discourse, media and social life", - "values": [ - "4 - General action" - ] - }, - { - "text": "Continue its efforts in improving protection of women's rights, including combating domestic violence", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Continue to promote women's empowerment", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Strengthen efforts to effectively combat violence against women ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Continue to promote the education of women in rural and indigenous communities ", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Redouble efforts to ensure that children were not employed in situations that could be detrimental to their health, development or well-being", - "values": [ - "4 - General action" - ] - }, - { - "text": "Malaysia reiterated its commitment not to reintroduce broad powers of preventive detention and refuted the allegation that the POCA amendments marked the return of the repealed Internal Security Act 1960.", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Ensure that only the juvenile justice system deals with cases of children under 18 years ", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "With a view to a rapid ratification of the ICCPR, to guarantee the rights of representatives of civil society and human rights defenders organizations to set themselves up and exercise their rights to freedom of expression ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Establish mechanisms that will offer the victims of rape appropriate and adequate support and provide them with redress ", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Review legislation which establishes direct and indirect discrimination of national and religious minorities", - "values": [ - "3 - Considering action" - ] - }, - { - "text": "Amend the Public Order and Security Act and the Access to Information and Privacy Act ", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Continue its efforts in order to eliminate poverty and extreme poverty", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Repeal the clause expanding the use of the death penalty for economic crimes", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Continue its efforts in the field of human rights education and training with a particular emphasis on the training of police and law enforcement officials", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Continue advancing the rights of persons with disabilities by increasing its financial assistance and developing regulation on minimum standards for the enjoyment of their human rights", - "values": [ - "4 - General action" - ] - }, - { - "text": "Continue its positive approach in enhancing gender equality and combating gender-based violence including through the finalization, adoption and implementation of its national strategic plan of action to eliminate gender- based violence", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Remove all existing restrictions on political activities and ensure that political parties and political activists can carry out their legitimate activities on an equal footing, without fear of reprisals or prosecution ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Submit its backlog of outstanding reports to the concerned treaty bodies", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Ratify the International Convention on the Protection of All Persons from Enforced Disappearance in a timely manner, as was recommended during the previous review ", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Formalize its commitment to the abolition of the death penalty by ratifying the Second Optional Protocol to the International Covenant on Civil and Political Rights", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Enact legislation providing for public access to Government information ", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Continue to strengthen efforts to ensure equality of opportunity and eliminate the gender wage gap", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Enforce the legal and institutional framework on combating discrimination ", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Continue its efforts to increase school attendance rates and solve the issues of access to educational establishments, without overlooking the need to continually monitor the implementation of the sectoral action plan to promote women and gender equality", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Search the consent of Belgian Muslims on any initiative to codify the practice of Islam", - "values": [ - "4 - General action" - ] - }, - { - "text": "Continue increasing investment in education and health through its successful social policies ", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Adopt the necessary measures to achieve equality between men and women in all the areas of the socioeconomic life, and access to the necessary resources to that end", - "values": [ - "4 - General action" - ] - }, - { - "text": "Revise legislation to decriminalize abortion in cases of pregnancy resulting from rape or incest and in cases where the life or health of the mother is at risk, as recommended previously ", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Enact specific legislation which prohibits and punishes racial discrimination ", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Continue to play a leading role in the promotion and protection of the rights of migrant workers ", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Enhance its initiatives and programmes to further promote a sense of national unity and pride among all its citizens", - "values": [ - "4 - General action" - ] - }, - { - "text": "Strengthen cooperation with the United Nations human rights mechanisms, particularly the United Nations special procedures mandate holders ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Emphasize prevention over detention, especially regarding minors in conflict with the law.", - "values": [ - "4 - General action" - ] - }, - { - "text": "Ensure full implementation of the Constitution's provisions for the free operation of civil society, including through a revised NGO law that conforms to international standards and protects freedom of expression", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Ratify outstanding core international human rights instruments", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Intensify efforts to combat hate-crime, and domestic violence ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Introduce reforms of domestic laws and regulations aiming at the eliminating all forms of discrimination against women ", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Review the status and functioning of its national human rights institution in order to bring it in line with the Paris Principles", - "values": [ - "3 - Considering action" - ] - }, - { - "text": "Become a party to other treaties, such as ICCPR and ICESCR, as soon as possible ", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Step up necessary measures to eradicate harmful traditional practices, especially those affecting girls, and those that are harmful to the physical and psychological well-being of children in general", - "values": [ - "4 - General action" - ] - }, - { - "text": "Continue actions that support, in the context of the international cooperation, the strengthening of the concept of "disaster reduction" as an issue to be considered in decision-making at the national, local and community levels, to ensure the human safety of vulnerable populations", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Take all measures necessary to bring its domestic law into conformity with the Convention on the Rights of the Child and to adopt provisions in its Criminal Code to also protect boys against sexual exploitation ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Continue to apply programmes and measures to improve the enjoyment of the right to education and the right to health ", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Ensure the effective implementation of the recently adopted rules regarding the types of visas for family reunification", - "values": [ - "4 - General action" - ] - }, - { - "text": "Continue efforts for the implementation of a human rights agenda and action plan", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Implement the national plan with a number of guidelines on economic and social policy in order to reduce poverty and improve living conditions of the population in the country ", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Strengthen programmes of public awareness of the very serious problem of human trafficking and involve all stakeholders in the work", - "values": [ - "4 - General action" - ] - }, - { - "text": "Prevent child labour, beginning with those who work in hazardous conditions", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Ensure that training in gender analysis is conducted and that a gender policy is implemented ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Develop a national action plan to eliminate child marriage", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Consider legislative and administrative measures to recognize violence on the basis of gender identity or sexual orientation as a hate crime ", - "values": [ - "3 - Considering action" - ] - }, - { - "text": "Complete the enactment of the draft child protection act in line with the Convention on the Rights of the Child by including provisions to counter child, early and forced marriage", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Consider the ratification of CRPD, and OP-CRC-SC", - "values": [ - "3 - Considering action" - ] - }, - { - "text": "Continue its efforts to eradicate poverty and inequality", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Review their national laws and policies in order to ensure that all surveillance of digital communications is consistent with its international human rights obligations and is conducted on the basis of a legal framework which is publicly accessible, clear, precise, comprehensive and non- discriminatory", - "values": [ - "3 - Considering action" - ] - }, - { - "text": "Strengthen its human trafficking prevention programmes in its new National Strategy to Combat Trafficking in Persons ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Continue to take the necessary measures to make sure that all the population has easy access to free birth registration for newborns", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Continue to adopt strategies to combat discrimination against women", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Establish a commission of inquiry with national and international members to examine all allegations of violations against women in various regions of the country", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Continue its efforts to implement measures aimed at the economic transformation of the country", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Pursue its national policies as outlined in its national report for its second UPR", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Intensify its efforts to fight hate crimes and encourage senior State officials to take a clear position against these crimes, and publicly condemn racist acts of violence and other offences motivated by hatred ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Put forward extensive efforts to eliminate all forms of discrimination against women, including enforcement of the age of marriage set out in law as well as the development of comprehensive awareness-raising programmes on the negative implications of early marriage", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Continue with the reform of the judiciary, ensuring its independence ", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Further strengthen its efforts towards socioeconomic development and poverty eradication", - "values": [ - "4 - General action" - ] - }, - { - "text": "Take effective measures to make primary education free, enhance the quality of education, improve the literacy rate and increase enrolment in schools by abolishing or rationalizing tuition fees at all levels of the educational system as recommended by the Committee on the Rights of the Child", - "values": [ - "4 - General action" - ] - }, - { - "text": "Strengthen the existing mechanisms to prevent the excessive use of force and discriminatory practices in police work", - "values": [ - "4 - General action" - ] - }, - { - "text": "Make further efforts to provide equal access to quality education and health-care services to all, including disabled persons ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Establish independent mechanisms for complaints and for monitoring conditions in places of detention.", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Strengthen policies and seek international cooperation to ensure the rights of internally displaced people, including measures for their return or resettlement ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Maintain its policy with regard to access to justice ", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Grant citizenship to all children born in Denmark that otherwise would be stateless and thus more vulnerable to exploitation", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Develop policies to reduce high maternal mortality rates due to unsafe abortions, including the adoption of measures to ensure broad, affordable access to available abortion medication", - "values": [ - "4 - General action" - ] - }, - { - "text": "Establish a programme of incentives for permanence within the education system within the Sectoral Strategy for the Prevention and Eradication of Child Labour", - "values": [ - "4 - General action" - ] - }, - { - "text": "Take the necessary measures to abolish the death penalty under its Military Law", - "values": [ - "4 - General action" - ] - }, - { - "text": "Adhere to the Convention against Torture and Other Cruel, Inhuman or Degrading Treatment or Punishment", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Take concrete steps towards the abolition of the death penalty, including the imposition of an immediate moratorium on its use", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Pursue the reform of the justice sector by implementing the plan of priority actions, including for the improvement of conditions of detention", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Ensure the independence of the Human Rights Commission, including through providing regular budgeting for the Commission, and proceed to the immediate appointment of its members ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Step up efforts in amending some provisions of Federal Law 51 of 2006 on combating human trafficking to better align it with the Palermo Protocol", - "values": [ - "4 - General action" - ] - }, - { - "text": "Ensure that the law enforcement, security and judicial authorities have the necessary knowledge and skills to address hate crimes against immigrants, asylum seekers and refugees by providing mandatory training and guidelines", - "values": [ - "4 - General action" - ] - }, - { - "text": "Implement the two recommendations of the 2006 election observation mission of the Commonwealth to transform the post of Electoral Commissioner, an official appointed by the Government, into a truly independent and collegiate electoral commission", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Review the practice of protective custody and increase the capacity of existing mechanisms, or establish other efficient protective mechanisms for women at risk of violence that do not victimize them, and ensure strict punishment of perpetrators of any such violence", - "values": [ - "3 - Considering action" - ] - }, - { - "text": "Undertake necessary steps aimed at adopting a comprehensive strategy that addresses all forms of discrimination", - "values": [ - "4 - General action" - ] - }, - { - "text": "Take measures to ensure the independence of the judicial system over the executive, to ensure that the fight against corruption and the improvement of accountability are pursued", - "values": [ - "4 - General action" - ] - }, - { - "text": "Ensure that the justice sector reform strategy for 2015-2020 is further implemented to improve access to justice, strengthen independence and eliminate corruption", - "values": [ - "4 - General action" - ] - }, - { - "text": "Complete the ratification process for the ICED", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Share experience for eliminating illiteracy", - "values": [ - "1 - Minimal action" - ] - }, - { - "text": "Strengthen its efforts against the excessive use of force by police forces", - "values": [ - "4 - General action" - ] - }, - { - "text": "Reiterates the recommendation for Poland to consider ratifying the International Convention on the Protection of the Rights of all Migrant Workers and Members of their Families ", - "values": [ - "3 - Considering action" - ] - }, - { - "text": "Adopt necessary measures to ensure that gender equality is a legal and practical reality, combating particularly gender violence", - "values": [ - "4 - General action" - ] - }, - { - "text": "Adopt standards of protection contained in CRPD with a view to accelerate its accession ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Investigate the disappearance of U.S. citizens Alhaji Ceesay and Ebrima Jobe", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Amend the Criminal Code to adopt a definition of torture as a criminal offense, as well as the Law of Criminal Procedure to make it punishable ", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Adopt public policies that protect against all forms of discrimination and violence based on sexual orientation and gender identity", - "values": [ - "4 - General action" - ] - }, - { - "text": "Adopt a draft law on gender equality and the establishment of an institutional mechanism responsible for the promotion of equality ", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Strengthen the measures aimed at prohibiting discrimination based on sexual orientation ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Amend the Criminal Code so that crimes against humanity and all war crimes are defined as crimes under national law ", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Increase efforts to improve the protection of the rights of children with disabilities and their social inclusion in the education system, also by modernizing centres for social work and providing them with adequate human and financial resources ", - "values": [ - "4 - General action" - ] - }, - { - "text": "That Lesotho ensures the effective implementation of its human trafficking legislation", - "values": [ - "4 - General action" - ] - }, - { - "text": "Fully and effectively implement the recommendations of the Committee on the Elimination of Discrimination against Women and ensure that the rights of women and children are respected, most particularly when they are in detention", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Reduce the disparities in the quality of education between urban, rural, remote areas or areas inhabited by ethnic minorities ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Recommended that the Government and the Permanent Commission on Law and Justice of the National Assembly should comply with the obligations of United Nations reference texts and immediately work to finalize the legislative procedure underway with a view to the abolition in law of the death penalty.", - "values": [ - "4 - General action" - ] - }, - { - "text": "Adhere to the principles of the Convention on the Rights of Persons with Disabilities and consider favourably its ratification in the shortest time possible, in line with the Government's commitment to the rights of persons with disabilities", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Release persons detained for reasons related to their opinions or peaceful political activities ", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Sign and ratify the International Convention for the Protection of All Persons from Enforced Disappearance, the Optional Protocol to the Convention against Torture and Other Cruel, Inhuman or Degrading Treatment or Punishment, the Optional Protocol to the Convention on the Elimination of All Forms of Discrimination against Women, and to ratify the Optional Protocol to the Convention on the Rights of Persons with Disabilities\n", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Follow-up and implement effectively the recommendations of the Special Representative of the Secretary-General on Sexual Violence in Conflict ", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Intensify efforts to meet the MDG5 on maternal mortality, including by ensuring universal access to SRHR and to information, education and counselling ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Provide more financial and technical support for the preservation of Lao traditional and cultural heritage", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Promptly implement the action plan between the Sudan and the United Nations to end child recruitment and criminalize in domestic law the recruitment and use of children by the security forces and other groups", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Continue to take measures to mitigate, eliminate and prevent violence against women and to provide assistance to victims of violence ", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Intensify its efforts on human rights and environment with the newly appointed Independent Expert on Human Rights and Environment of the Council ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Accelerate the process of judicial reforms with a view to ensure access to justice, especially to women and other vulnerable sections of the society", - "values": [ - "4 - General action" - ] - }, - { - "text": "Consider amending the Family Code in order to raise the minimum age for marriage, which is currently 14 years", - "values": [ - "3 - Considering action" - ] - }, - { - "text": "Respect and implement Supreme Court decisions on unresolved articles of the Media law", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Strengthen laws and regulations to prevent and address human trafficking, including providing effective assistance to trafficked victims and prosecuting traffickers", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Adopt comprehensive anti-discrimination legislation, which explicitly addresses all spheres of life and prohibits discrimination on any grounds", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Strengthen support for lesbian, gay, bisexual, transgender and intersex rights and address the barriers to full participation in daily life", - "values": [ - "4 - General action" - ] - }, - { - "text": "Ensure equal access to education, social security, health care and economic opportunities for women, including Muslim women and women entering early marriages ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Engage with the United Nations, the Organization for Security and Cooperation in Europe and the Council of Europe to ensure that their concerns about the media law are accommodated ", - "values": [ - "4 - General action" - ] - }, - { - "text": "That the President of the Gambia reject provisions in the proposed Criminal Code on aggravated homosexuality and absconding State officials", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Take into account international standards and the provisions of the Convention on the Rights of the Child.", - "values": [ - "4 - General action" - ] - }, - { - "text": "Accede to the Second Optional Protocol to the International Covenant on Civil and Political Rights, aimed at abolishing the death penalty, and take the necessary steps to remove the death penalty from Tanzania's justice system", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Ratify the Migrant Workers Convention ", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Improve conditions of detention and imprisonment, inter alia by ensuring an adequate nutrition of detainees and by reducing overcrowding in prisons", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Continue to develop and enhance programmes to provide education and support to children who have been recovered from militants or extremists, and to help them reintegrate into society", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Become a State party to the following international instruments: OPCAT, OP-CRPD", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Provide guarantees of a fair trial, allowing access to independent observers during the judicial proceedings amend the provisions of the procedural criminal code that allows the Government to deny the basic right to a lawyer during the accusation period guarantee transparency and accountability and allow lawyers access to relevant information concerning each case investigate and prosecute all public officials and Basij paramilitary members suspected of torture, ill treatment or extrajudicial execution eliminate every restriction on the freedom of expression, particularly with regard to digital media, which runs counter to ICCPR", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Ratify the UN Convention against Corruption and the International Convention on the Protection of the Rights of All Migrant Workers and Members of Their Families", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Ensure that all allegations of torture are effectively and impartially investigated and ensure that perpetrators are punished accordingly ", - "values": [ - "4 - General action" - ] - }, - { - "text": "To ensure the development, by the National Human Rights Council, of a plan to follow up on the recommendations made by international human rights mechanisms, including those resulting from the universal periodic review", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Continue with awareness-raising and trainings for workers in the legal sector and those working in the area of human rights", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Continue to consolidate its national action aimed at prohibiting torture", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Bring criminal legislation, in particular Articles 8 and 176 of the Criminal Code, in conformity with international standards governing freedom of expression ", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Ratify ICESCR, CEDAW, the Convention on the Rights of the Child, the Convention on the Rights of Persons with Disabilities and other core human rights treaties as soon as possible", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Strengthen efforts for the full implementation of the National Action Plan for Children", - "values": [ - "4 - General action" - ] - }, - { - "text": "Continue to fully involve NGOs, CSOs and private sector in the follow up to this UPR and in promoting human rights at all levels", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Intensify efforts to raise public awareness to end all forms of discrimination by providing human rights education and training for government agencies, media and the public and implementing campaigns to combat gender stereotypes and violence", - "values": [ - "4 - General action" - ] - }, - { - "text": "Abolish definitively death penalty ", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Strengthen its steps to improve the quality of education and continue the establishment of elementary and secondary schools in communities that have none", - "values": [ - "4 - General action" - ] - }, - { - "text": "Ratify human rights conventions, including the International Covenant on Civil and Political Rights, the International Covenant on Economic, Social and Cultural Rights, the Convention against Torture and its Optional Protocol", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Incorporate the provisions of CEDAW, ratified in 1995, into the domestic legal system ", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Strengthen measures aimed at the prevention of unwanted pregnancies, including by increasing knowledge and awareness of family planning", - "values": [ - "4 - General action" - ] - }, - { - "text": "Continue its efforts to develop an action plan to eliminate child labour and to give priority to inclusive education for all ", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Make utmost efforts to protect women with disabilities and indigenous women from all forms of violence and discrimination", - "values": [ - "4 - General action" - ] - }, - { - "text": "Promote the role of independent non-governmental organizations and take effective measures to ensure the full realization of the rights to freedom of expression, including on internet, assembly and association ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Allow unfettered regular access of the ICRC to detention and prison facilities ", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Strengthen its legal framework, institutions and instruments aimed at guaranteeing that those responsible for crimes of extrajudicial executions are subjected to fair procedure and, if convicted, punished ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Adopt a clear and comprehensive legal definition of racial discrimination", - "values": [ - "4 - General action" - ] - }, - { - "text": "Implement public policies to improve the human rights situation of persons, particularly children, with disabilities, to allow this sector of the population to participate in the economic, social and cultural life on an equal basis ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Maintain its positive efforts in the current process of reviewing its national laws with a view to bringing them in line with its international human rights obligations ", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Continue to deepen measures underway to guarantee greater social inclusion in the national education system.", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Allow the Special Rapporteur on the situation of human rights in Eritrea to enter the country, fully cooperate with her and implement the relevant recommendations formulated by her ", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Ratify the Rome Statute of the ICC and fully align its legislation with all obligations under the Rome Statute, including incorporating the Rome Statute's definition of crimes and general principles, as well as adopting provisions enabling cooperation with the Court ", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Continue its positive efforts to promote and protect children rights and to attain full empowerment of women.", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Take the necessary measures for the establishment of a National Human Rights Institution", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Adopt a more holistic approach to combating modern slavery, through systematic case referral and improved coordination between law enforcement agencies, in line with the Call to Action that Ghana endorsed on 17 September 2017 in New York", - "values": [ - "4 - General action" - ] - }, - { - "text": "Repeal article 230 of the Tunisian Criminal Code and eliminate discriminatory practices based on sexual orientation and gender identity, such as anal inspections", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Ratify CRC-OP-SC", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Strengthen efforts to improve education, training and capacity-building in human rights fields", - "values": [ - "4 - General action" - ] - }, - { - "text": "Take measures to ensure full enjoyment of freedom of expression, particularly freedom of the press, and bring to an end the restrictions on internet access", - "values": [ - "4 - General action" - ] - }, - { - "text": "Undertake further measures to consolidate the national health system in order to cut down on the spread of serious diseases ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Take further targeted measures to promote inclusive education for all", - "values": [ - "4 - General action" - ] - }, - { - "text": "Put in place measures to prevent and combat conjugal and sexual violence and provide appropriate assistance and protection to victims, particularly in rural areas", - "values": [ - "4 - General action" - ] - }, - { - "text": "Step up efforts to improve the conditions of detention", - "values": [ - "4 - General action" - ] - }, - { - "text": "Continue strengthening legal and policy protections which guarantee the rights of the child", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Continue its accession to international human rights treaties ", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Strengthen the capacity of the national social security system aimed at supporting households in need", - "values": [ - "4 - General action" - ] - }, - { - "text": "Review provisions of the criminal law penalizing consensual same-sex activity between adults and organize awareness-raising campaigns promoting tolerance in this regard.", - "values": [ - "3 - Considering action" - ] - }, - { - "text": "Take further steps to promote integration of asylum seekers, migrants and refugees and their participation in political, cultural and economic life, including by increasing their access to affordable health-care services and to the employment market", - "values": [ - "4 - General action" - ] - }, - { - "text": "Stop the policy of colonization through illegal settlement.", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Establish the necessary measures and legislation to reform the judicial system in conformity with international standards on justice, including a juvenile justice system, and, in particular, guarantee the tenure of judges and magistrates ", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Take further steps to ensure the protection of persons with disabilities", - "values": [ - "4 - General action" - ] - }, - { - "text": "Consider the ratification of the main international human rights instruments already signed by Mozambique, such as the Rome Statute and CED ", - "values": [ - "3 - Considering action" - ] - }, - { - "text": "In line with an earlier recommendation made by the Human Rights Committee, exercise the full authority of the law and all means at its command, while ensuring respect for human rights, to eradicate the scourge of violence", - "values": [ - "4 - General action" - ] - }, - { - "text": "Expeditiously amend its Penal Code to criminalise all forms of torture and illtreatment and ensure that all allegations for such violations are credibly and promptly investigated and those responsible are brought to justice in accordance to international fair trial standards ", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Incorporate into municipal law various instruments such as the Optional Protocol on the Rights of Persons with Disabilities", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Continue its efforts to further strengthen its human rights infrastructure", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Intensify efforts in guaranteeing women's rights, including by implementing CEDAW observations to this end, and strengthen measures to fight against the practice of Female Genital Mutilation (FGM)", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Guarantee the right to freedom of opinion and expression in all its territory, as well as active participation of society and media in public affairs", - "values": [ - "3 - Considering action" - ] - }, - { - "text": "Consider undertaking necessary steps leading to ratification of the parent-umbrella United Nations Convention on the Rights of the Child and CEDAW respectively", - "values": [ - "3 - Considering action" - ] - }, - { - "text": "Remove from its legislation and practice all civil and criminal provisions which constitute discrimination towards women and girls", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Ensure that the new Police and Criminal Evidence Bill fully addresses the practice of detention on the basis of "provisional information" by specifying that detention beyond a short time limit, defined in statute, is only possible once a suspect is formally charged", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Study the possibility of ratification of the International Convention on the Protection of the Rights of All Migrant Workers and Members of Their Families ", - "values": [ - "3 - Considering action" - ] - }, - { - "text": "Ensure respect of the rights and fundamental freedoms of the entire population, in particular women and children, and adopt all necessary measures to ensure the fight against impunity, by initiating investigations in order to identify the perpetrators of acts of violence and of all human rights violations", - "values": [ - "4 - General action" - ] - }, - { - "text": "Address inequalities in access to health services, in particular with regard to children affected by HIV/AIDS ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Consider eliminating the death penalty for people who were under 18 at the time of the commission of the crime for which they were convicted, as stipulated by CRC, and withdraw its general reservation to the CRC", - "values": [ - "3 - Considering action" - ] - }, - { - "text": "Strengthen its Centre for Human Rights through increased funding and personnel, and specially by ensuring its compliance with the Paris Principles", - "values": [ - "4 - General action" - ] - }, - { - "text": "Enhance the existing effort in health service delivery system particularly to vulnerable groups", - "values": [ - "4 - General action" - ] - }, - { - "text": "Take promptly all the necessary measures to put an end to all the human rights violations in Marange region ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Incorporate the content of the International Convention on the Elimination of All Forms of Racial Discrimination ICERD in the Human Rights Act of 1999 and ensure that its provisions prevail over inconsistent domestic legislation as highlighted by the relevant treaty bodies ", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Provide access to free, quality health-care services for all children", - "values": [ - "4 - General action" - ] - }, - { - "text": "Adopt a long-term and comprehensive framework to tackle discrimination, racism and xenophobia, focusing both on prevention and on combating human rights violations", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Lift administrative restrictions on NGOs and peaceful demonstrators, refrain from imposing charges on peaceful demonstrators, refrain from acts leading to the closure of NGOs or the suspension of their peaceful activities, and instead promote a meaningful political dialogue that allows and embraces diverging views, including those of human rights defenders, NGOs, journalists, political activists and others ", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Establish an environment where a judge can make a fair and appropriate decision without intimidation.", - "values": [ - "4 - General action" - ] - }, - { - "text": "Consider a moratorium on the death penalty with a view to abolishing it", - "values": [ - "3 - Considering action" - ] - }, - { - "text": "Complete and submit the pending reports to corresponding treaty bodies", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Ratify the Second Optional Protocol to International Covenant on Civil and Political Rights, aiming at the abolition of the death penalty", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Speed up the adoption of the law against discrimination ensuring the incorporation of a prohibition of discrimination on the basis of sexual orientation and gender identity", - "values": [ - "4 - General action" - ] - }, - { - "text": "Pursue with reforms initiated to ensure the full enjoyment of human rights and fundamental freedoms to its citizens, in particular the harmonization of domestic legislation with its international commitments", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Enable independent NGOs, including international human rights organisations to freely register and to operate in accordance with international law and standards ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Set up a national mechanism for preventing torture", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Adopt a legislation concerning xenophobia, incitement to hatred and hatred to blacks, and to criminalize racial violence ", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Establish a strategy to seek the elimination of practices of discrimination against women and eliminate female genital mutilation ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Continue work on and consider expansion of its Reach Out to Asia Programme", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Recommended that all allegations of torture and ill-treatment by law enforcement officers be investigated.", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Ratify the Optional Protocol to the Convention against Torture, signed in 2005", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Consider the establishment of a national human rights institution.", - "values": [ - "3 - Considering action" - ] - }, - { - "text": "Ensure that all communications surveillance requires a test of necessity and proportionality", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Adopt measures to fight overcrowding in places of detention, by, for example, more frequently applying alternative sentences to the deprivation of liberty ", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Continue to further improve the health care system and guarantee more extensive protection in this area to the Malaysian people", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Continue the exemplary cooperation and interaction that exist between the Government and the National Human Rights Commission", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Intensify coordination efforts with various United Nations bodies and mechanisms for the further implementation of the national road map for human rights set out in paragraphs 48 and 49 of the report", - "values": [ - "4 - General action" - ] - }, - { - "text": "Adopt a comprehensive legislation to address gender based violence and human trafficking", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Design awareness-raising policies and programmes regarding the prevention of discrimination of LGBT persons and provide equal rights for LGBT persons. In practical terms this means providing better access to justice for people whose rights have been infringed because of their gender identity, gender expression or sexual orientation, it also means allowing same-sex couples to enter into cohabitation contracts in order to remove inequalities relating to inheritance, health care, social security, and finally it means removing discriminatory provisions from the Criminal Code and other laws and regulations ", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Enact legislation on violence, including domestic violence against women to take appropriate measures to ensure that domestic laws and customary law, and certain aspects of the Sharia, are applied in ways compatible with the provisions of ICCPR", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Continue to give particular attention to empowerment of women, children, and other vulnerable groups of the populations in the on-going and future agenda of the government ", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Ensure the protection of refugees and asylum seekers and reconsider cases in which asylum seekers are to be forcibly returned", - "values": [ - "3 - Considering action" - ] - }, - { - "text": "Pursue its efforts in the development of its rural policies to improve the existing strategies and policies and gradually strengthen the right to food for vulnerable groups ", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Continue its efforts to guarantee the well-being, which allows all patients to enjoy basic health care services", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Consider the adoption of the necessary measures to eradicate discrimination on the grounds of sexual orientation", - "values": [ - "3 - Considering action" - ] - }, - { - "text": "Put in place specific human rights training and education programmes in the different education cycles", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Engage further with the Human Rights Council and its mechanisms and consider positively the pending requests for visits by mandate holder and extend an open invitation to all special procedures of the HRC", - "values": [ - "4 - General action" - ] - }, - { - "text": "Exert further efforts towards the realization of economic, social and cultural rights, including through strengthening its social protection measures", - "values": [ - "4 - General action" - ] - }, - { - "text": "Improve significantly the respect of the right to due process, in accordance with article 14 of the International Covenant on Civil and Political Rights", - "values": [ - "4 - General action" - ] - }, - { - "text": "Extend an open invitation to all special procedures mechanisms of the United Nations", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Take necessary measures to strengthen identification, rehabilitation and social integration of victims of trafficking in human beings, including by providing them with shelter and assistance", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "The Yemeni Government is preparing a national human rights strategy in cooperation with the United Nations Development Programme (UNDP)", - "values": [ - "4 - General action" - ] - }, - { - "text": "Extend a standing invitation to the United Nations human rights special procedures so that they can visit the country and assist the Government with its human rights reforms ", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Pay further attention to the penitentiary policy of the country and increase public spending on prisons", - "values": [ - "4 - General action" - ] - }, - { - "text": "Promote the inclusion and participation of indigenous peoples and Torres Strait Islanders in any process or decision-making that may affect their interests ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Keep raising the quality of public health in the country, as a permanent priority ", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Continue to apply its strategies and plans, work towards the adoption of comprehensive anti-discrimination legislation, and include penalties appropriate for the seriousness of the offence", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Accelerate the adoption of pending bills and intensify efforts in order to see more strengthened implementation of the measures decided and instruments created, including in terms of the difficult fight against harmful traditional practices, protection of children, inequality of rights between sexes, and access to justice and strengthening of its effectiveness", - "values": [ - "4 - General action" - ] - }, - { - "text": "Implement the Convention on the Rights of Persons with Disabilities by, among other things, amending the job support schemes in order to enable all persons with disabilities to access employment in the same way as those without disabilities", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Criminalize domestic violence, and facilitate access to legal remedies for victims of such violence", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Continue implementing measures to bring police officers responsible for abuses to justice, such as the amendment to the Police Complaints Authority Act, enabling investigation on criminal offences involving police officers, like corruption and serious misconduct ", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Ensure that persons with disability have the right to vote", - "values": [ - "4 - General action" - ] - }, - { - "text": "Continue to combat trafficking in human beings", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Expedite a process related to the establishment of the national secretariat for indigenous peoples", - "values": [ - "4 - General action" - ] - }, - { - "text": "Guarantee the fundamental rights of all persons living in Botswana and thereby decriminalize sexual relations of consenting adults of the same sex", - "values": [ - "4 - General action" - ] - }, - { - "text": "Continue ongoing efforts to establish a national human rights institution and ensure the provision of the necessary resources to such an institution", - "values": [ - "4 - General action" - ] - }, - { - "text": "Adopt effective measures to ensure that there is total respect for the total prohibition of torture in line with the Convention against Torture", - "values": [ - "4 - General action" - ] - }, - { - "text": "Intensify efforts to bring to justice the cases of corruption and revise its sentencing policy for crimes of corruption ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Pursuant to the commitments it made in the declaration supporting its candidacy for the Human Rights Council, Mauritania has pledged to work for the promotion and protection of human rights internationally, in conjunction with the Arab and African countries, and nationally.", - "values": [ - "4 - General action" - ] - }, - { - "text": "Follow up and reinforce actions aimed at improving the living conditions of the population and the situation of migrants", - "values": [ - "4 - General action" - ] - }, - { - "text": "Guarantee a society constituting one-fifth of the world's population to be well fed, well housed, well cared for and well educated.", - "values": [ - "4 - General action" - ] - }, - { - "text": "In combating violence against women and girls, Zambia should swiftly and fully implement the Convention on the Elimination of All Forms of Discrimination against Women. This also includes the full implementation of the Anti-Gender-Based Violence Act of 2011 and the allocation of adequate budget resources for the Anti-Gender-Based Violence Fund", - "values": [ - "4 - General action" - ] - }, - { - "text": "Harmonize the minimum age for marriage, in accordance with the provisions of the Convention on the Rights of the Child", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Decriminalize defamation and place it within the civil code in accordance with international standards", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Establish a national human rights institution with "A" status in full conformity with the Paris Principles", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Consider participating in further burden sharing programmes, such as the European Union refugee relocation scheme and the refugee quota system", - "values": [ - "3 - Considering action" - ] - }, - { - "text": "Ensure that the legislation for establishing the National Preventative Mechanism is in line with the Optional Protocol to the Convention against Torture", - "values": [ - "4 - General action" - ] - }, - { - "text": "Recognize in the national legislation access to water and sanitation as a human right, and develop a national plan to guarantee it, in consultation with indigenous peoples and the society in general, in order to reduce the gap in access to this right between indigenous peoples and the rest of society ", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Enhance international cooperation to strengthen programmes aimed at combating the spread of HIV-AIDS ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Consider ratifying the International Labour Organization Domestic Workers Convention, 2011 (No. 189)", - "values": [ - "3 - Considering action" - ] - }, - { - "text": "Improve conditions of detention in penitentiaries, by ensuring that prison overcrowding is reduced", - "values": [ - "4 - General action" - ] - }, - { - "text": "Continue efforts to promote the right to education ", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Ensure in practice regular access to all places of detention, including police stations", - "values": [ - "4 - General action" - ] - }, - { - "text": "Make further efforts to promote the culture of human rights and human rights education", - "values": [ - "4 - General action" - ] - }, - { - "text": "Formally remove the death penalty from the statutes ", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Examine the possibility of swift ratification of the Rome Statute ", - "values": [ - "3 - Considering action" - ] - }, - { - "text": "Continue positive efforts directed at eradicating poverty", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Adopt all necessary measures to eradicate and eliminate practices and customs that discriminate against women, in particular forced and early marriage, discriminatory practices in the area of widowhood, the levirate, slavery and female genital mutilation. At the same time, develop awareness and education programmes on the harmful effects of such practices", - "values": [ - "4 - General action" - ] - }, - { - "text": "Enact specific legislation to provide appropriate remedies for victims of racial discrimination, in particular, relating to the dissemination of ideas based on notions of racial superiority, racial hatred, incitement to racial discrimination and violent acts targeting indigenous peoples and People of African Descent in Guatemala", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Strengthen its efforts to combat illiteracy", - "values": [ - "4 - General action" - ] - }, - { - "text": "Continue the implementation of the policy of effective promotion and protection of the rights of migrants", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Establish as soon as possible a plan of action to prevent racist attacks, so that members of vulnerable groups, including Roma, can live in safety and dignity ", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Undertake a review of its readmission agreements with respect to refugees and asylum-seekers, and amend them as necessary to ensure that they contain human rights guarantees in line with international standards ", - "values": [ - "3 - Considering action" - ] - }, - { - "text": "Continue its process of consultation with civil society in its follow-up to the universal periodic review ", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Impose a moratorium on executions with a view to abolishing the death penalty entirely, in line with the UN Assembly General resolutions 62/149, 63/168 and 65/206, commuting all death sentences to life imprisonment terms", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Adopt a comprehensive strategy to fight against all forms of racism and xenophobia", - "values": [ - "4 - General action" - ] - }, - { - "text": "Establish an independent National Preventive Mechanism in compliance with the Optional Protocol to the Convention against Torture requirements", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Introduce the principle of anti-discrimination into school curricula and teaching practices at all levels of its education system ", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Continue the investigation and prosecution of the persons responsible for killing innocent young men said to have been guerrilla fighters.", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Bring its national human rights institution in line with the Paris Principles ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Continue its commitment to the programme of land reform.", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Take measures and establish appropriate mechanisms to enable the development of legislation and promotion of policies for the protection of children in all areas", - "values": [ - "4 - General action" - ] - }, - { - "text": "Criminalize domestic violence in the Penal Code ", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Consider the elimination of corporal punishment of children under 18 and ensure the compliance of its legal system with the Convention on the Rights of the Child", - "values": [ - "3 - Considering action" - ] - }, - { - "text": "Continue its efforts on reducing the unemployment rate, eliminating poverty and emphasizing the protection and promotion of people's economic, social and cultural rights", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Take immediate actions to establish a minimum age of 18 for recruitment and ensure that those still fighting are demobilized, and take measures to prevent recruitment of minors in refugee camps.", - "values": [ - "4 - General action" - ] - }, - { - "text": "Enhance parliamentary representation of women in accordance with the new Constitution", - "values": [ - "4 - General action" - ] - }, - { - "text": "Take further steps to fight human trafficking, including by enacting specific legislation.", - "values": [ - "4 - General action" - ] - }, - { - "text": "End the practice of arbitrary, public and private executions", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Continue its efforts to prevent discrimination against the Roma population", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Promote the work of human rights defenders and take all necessary measures to ensure freedom of expression.", - "values": [ - "4 - General action" - ] - }, - { - "text": "Continue awareness-raising about, and dissemination and teaching of, human rights", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Provide necessary budgetary and trained human resources to the Commission on Human Rights and Public Administration to empower it to carry out its mandate of advocacy and protection of human rights", - "values": [ - "4 - General action" - ] - }, - { - "text": "Consider ratifying the two Optional Protocols to the Convention on the Rights of the Child", - "values": [ - "3 - Considering action" - ] - }, - { - "text": "Allocate more resources to fight trafficking in human beings and support victims of trafficking and sexual exploitation", - "values": [ - "4 - General action" - ] - }, - { - "text": "Continue efforts to combating customary practices which tolerate gender-based violence and discrimination against women", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "With regard to the Optional Protocol to the Convention against Torture and Other Cruel, Inhuman or Degrading Treatment or Punishment, Guinea presented its initial report to the Committee against Torture on 6 May 2014. The Ministry of Human Rights took that opportunity to reiterate the commitment by Guinea to accede to the Optional Protocol.", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Maintain the positive momentum in improving legislation and institutions, and ensure the execution of its laws in practice, in particular in the areas of education, women rights, childhood, persons with disabilities and victims of trafficking in persons ", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Undertake a review of the communications surveillance laws, policies and practices with a view to upholding the right to privacy in line with international human rights law", - "values": [ - "3 - Considering action" - ] - }, - { - "text": "Grant migrants facing expulsion procedures the right to have their cases examined by a competent authority", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Regularly foster awareness on birth registration at national and local levels, particularly through the organization of public campaigns to highlight the importance of birth-registration ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Restore as soon as possible all fundamental freedoms as guaranteed by Pakistan's Constitution that were suspended at the imposition of the state of emergency in November and December last year. This implies reconfirming the independence of the judiciary and cancelling all remaining charges to human rights defenders.", - "values": [ - "4 - General action" - ] - }, - { - "text": "Conduct a review of the Criminal Code to incorporate provisions on sexual violence, in line with international standards", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Introduce amendments in Somalia's Penal Code on widespread practice of FGM ", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Ensure that domestic violence is properly punished and victims, including those of marital rape, are properly protected", - "values": [ - "4 - General action" - ] - }, - { - "text": "Attain the remains of the Millennium Development Goals", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Further promote and enforce the principle of non-discrimination, particularly by fully suspending its reservation to article 2 of the CEDAW Conventionand ending discrimination of women in the fields of property and inheritance law", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Enhance the efforts for capacity building for police and law enforcement officers ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Prosecute security officials involved in torturing, raping or killing", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Continue and enhance efforts to ensure substantive equality between women and men in all spheres and at all levels of society, including awarenessraising campaigns to eliminate stereotypes regarding gender roles ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Enhance and develop laws to protect the rights of the child", - "values": [ - "4 - General action" - ] - }, - { - "text": "Continue combating trafficking in persons", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Modify the Citizenship Law of 1982 to ensure all minorities equal rights as citizens and remove all restrictions imposed on the Muslim minority in Rakhine State ", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Continue efforts to promote the rights of the vulnerable and marginalized groups in the country ", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Investigate all allegations of threats and harassment against journalists and bring the perpetrators to justice ", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Ratify the Convention against Torture and Other Cruel, Inhuman or Degrading Treatment or Punishment and harmonize the convention with the national legislation", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Take steps to ensure a reduction in the attacks on human rights defenders and to bring the perpetrators of such attacks to justice.", - "values": [ - "4 - General action" - ] - }, - { - "text": "Establish or strengthen the machinery for reviewing the accelerated procedure of 48 hours in order to guarantee the rights of the asylum-seekers.", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Enact and implement laws on sexual offences and violence to address high rates of sexual and gender based-violence", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Improve data collection and statistics on violence against women ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Strengthen the health infrastructure throughout the national territory", - "values": [ - "4 - General action" - ] - }, - { - "text": "Consider cooperating more actively with special procedures, extending a standing invitation, responding to questions and answering questionnaires on thematic issues ", - "values": [ - "3 - Considering action" - ] - }, - { - "text": "Include provisions in the draft framework law to address the concerns expressed by treaty bodies in the area of discrimination", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Ratify the Convention on the Rights of Persons with Disabilities at the earliest possible time/as soon as possible", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Further intensify efforts to expedite development through the designed poverty reduction strategies", - "values": [ - "4 - General action" - ] - }, - { - "text": "Continue to apply a gender perspective in its policies and programmes, including in the follow-up on the results of the current review, within the context of its National Gender Policy Framework of 2008 and other mechanisms", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Lift restrictions to freedom of movement and local orders", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Continue to fight poverty keeping in line with the country's existing programmes and plans of action along with active support of the international community ", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Take measures to ensure that many individuals who are guilty of violence are effectively convicted and put an end to the impunity from which they benefit too often ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Continue to mainstream human rights into various national bodies and sectors", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Continue the effort to strengthen the Commission for Protection against Discrimination and the Ombudsman as national human rights institutions in ensuring that those institutions are in line with the Paris Principles, as previously recommended", - "values": [ - "4 - General action" - ] - }, - { - "text": "Ensure the development of a human rights-based migration policy which guarantees respect of the rights of all migrants ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Give enough resources for the good operation of the National Commission on Human Rights", - "values": [ - "4 - General action" - ] - }, - { - "text": "Strengthen measures to ensure the investigation and punishment of hate speech against minority groups, including those made by members of some political parties and groups", - "values": [ - "4 - General action" - ] - }, - { - "text": "Comply with the minimum international standards regarding capital executions, also by further implementing the already existing national legislation that protects juveniles and mentally impaired from being sentenced to death ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Put in place, with the support of UNICEF, permanent structures against the exploitation of children as cattle herders.", - "values": [ - "4 - General action" - ] - }, - { - "text": "Take the necessary legal and financial measures to ensure the equal participation of women in all areas ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Allow opposition parties to carry out their activities without intimidation or hindrance, and release individuals prosecuted solely for the peaceful and legitimate expression of their views", - "values": [ - "4 - General action" - ] - }, - { - "text": "Continue implementing the National Sustainable Development Strategy as a means to fight poverty", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Pursue efforts to combat racism", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Approve and implement a law on the protection of human rights defenders, journalists, social communicators and justice officials, and provide adequate human and financial resources to establish an effective State mechanism to protect those at risk", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Lift its reservations to paragraph 4 of Article 15 of the Convention on the Elimination of All Forms of Discrimination against Women, not only in practice but also in its legislation", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Consider a moratorium on executions with a view to the complete abolition of the death penalty in line with General Assembly resolutions 62-149 and 63-168 .", - "values": [ - "3 - Considering action" - ] - }, - { - "text": "Engage the civil society in the UPR follow-up process ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Include children from birth and not only after 45 days of life in the national early childhood plan", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Consider ratification of the International Covenant on Economic, Social and Cultural Rights, the Convention on the Elimination of All forms of Discrimination against Women, the Convention on the Rights of the Child, the Convention on the Rights of Persons with Disabilities as well as the optional protocols to these conventions to which the United States is still not a party", - "values": [ - "3 - Considering action" - ] - }, - { - "text": "Establish a standing coordination mechanism for the implementation of the recommendations and for the drafting of the reports", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Give the Afghanistan Independent Human Rights Commission the independence and legal authority to hold to account perpetrators of detainee mistreatment ", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Make efforts to strengthen the rights of persons with disabilities ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Take effective measures to ensure full independence of the Judicial Council, and the independence of the judiciary", - "values": [ - "4 - General action" - ] - }, - { - "text": "Continue efforts to implement legislation that takes into account the needs of boys and girls in general, including equal access to universal primary education, as well as, in particular, that of boys and girls with disabilities ", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Investigate and prosecute those responsible for using children in pornography", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Align fully its national legislation with the Rome Statute of the International Criminal Court, in particular by incorporating provisions to cooperate promptly and fully with the Court", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Ensure the appropriate implementation of the Te Rau N Te Mweenga Law from 2014 to combat gender-based violence", - "values": [ - "4 - General action" - ] - }, - { - "text": "Consider taking further measures to combat all forms of discrimination against the Roma community, and ensure equal opportunities for the enjoyment of economic, social and cultural rights, including education, health and housing", - "values": [ - "3 - Considering action" - ] - }, - { - "text": "Further continue providing capacity building training to law enforcement agencies to raise the level of professionalism and efficiency in carrying out their duties", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Taking into account the determination of the Government to protect the right to life and the danger of the practice of illegal abortions, provide guarantees in legislation for the mental and physical integrity of women, especially children who have undesired pregnancies ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Take timely and extensive measures to guarantee to its citizens the right to express dissent", - "values": [ - "4 - General action" - ] - }, - { - "text": "Establish an official moratorium on executions, and sign and ratify the Second Optional Protocol to the International Covenant on Civil and Political Rights, aiming to abolition of the death penalty", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Ensure timely and effective access to government information ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Take further effective measures to promote and protect the rights and wellbeing of children, protect children from violence, including ensuring their access to health care and education", - "values": [ - "4 - General action" - ] - }, - { - "text": "Monitor law enforcement in an effort to eradicate corruption and investigate the use of excessive force, as well as the patterns of widespread extrajudicial killings committed by the police and vigilante groups", - "values": [ - "4 - General action" - ] - }, - { - "text": "Redouble its advocacy efforts to enhance public awareness on gender equality and women's role in social and economic development. ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Continue and intensify efforts to reduce poverty and social inequality.", - "values": [ - "4 - General action" - ] - }, - { - "text": "Consider the extension of an invitation to the United Nations Special Rapporteur on extrajudicial, summary or arbitrary executions in accordance with his request ", - "values": [ - "3 - Considering action" - ] - }, - { - "text": "Ratify international human rights treaties particularly the Optional Protocol to the International Covenant on Economic, Social and Cultural Rights, the Convention on the Elimination of All forms of Discrimination against Women and the Convention on the Rights of the Child", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Sustain efforts for children to have better access to education at various levels", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Consider introducing a criminal law provision that expressly considers the racist motivation of an offence as a specific aggravating circumstance", - "values": [ - "3 - Considering action" - ] - }, - { - "text": "Work proactively with partners to address the violence against Aboriginal women and its root causes", - "values": [ - "4 - General action" - ] - }, - { - "text": "Redouble efforts to enforce laws criminalizing gender-biased violence, such as the recently adopted laws against rape and \u201chonour\u201c crimes", - "values": [ - "4 - General action" - ] - }, - { - "text": "Take further measures to improve the situation in prisons, to provide human rights training to prison personnel and to effectively investigate and prosecute all cases of alleged violence against prisoners ", - "values": [ - "4 - General action" - ] - }, - { - "text": "To establish a Cabinet subcommittee to provide policy oversight and guidance on human rights issues", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "A greater use of alternative measures to detention facilities and penalties ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Ensure the effective implementation of free primary education throughout the country ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Introduce legislative reforms to expressly prohibit corporal punishment against children in all settings", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Continue its efforts to combat discrimination in all its forms", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Carry on with measures to ensure the effective and impartial enforcement of the laws and to end impunity in cases of domestic violence ", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Sign and ratify the Optional Protocol to the International Covenant on Economic, Social and Cultural Rights and accede to its inter-States investigative mechanism", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Withdraw the reservations to the three only core conventions on human rights ratified by Malaysia", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Remove obstacles to non-governmental associations seeking registration from the authorities", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Further pursue that its existing legislation at federal, state and local levels fully complies with the Convention on the Rights of the Child", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Address illiteracy as a priority.", - "values": [ - "4 - General action" - ] - }, - { - "text": "Ensure full implementation of all election monitoring report recommendations of the Organization for Security and Co-operation in Europe Office for Democratic Institutions and Human Rights", - "values": [ - "4 - General action" - ] - }, - { - "text": "Decriminalize consented homosexual relations between adults", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Take early and adequate action to curb structural discrimination against persons of foreign origin in the field of employment", - "values": [ - "4 - General action" - ] - }, - { - "text": "Step up policies to protect children in order to eliminate violence against girls and boys, as well as combating child labour ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Provide the Ombudsperson with sufficient resources it needs, as a critical institution to monitor and oversee the respect for human rights", - "values": [ - "4 - General action" - ] - }, - { - "text": "Ensure swift approval of its plan to recognize the right to strike, in accordance with the Andorran Constitution and international standards", - "values": [ - "4 - General action" - ] - }, - { - "text": "Continue the policies that made the progress in terms of special protection of children incorporated in the Code of Children and Adolescents ", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Consider the establishment of an independent mechanism for children and provide it with necessary human and financial resources", - "values": [ - "3 - Considering action" - ] - }, - { - "text": "Continue to combat violence against women and girls and develop a comprehensive action plan for the prevention of sexual violence and for ensuring the legal rights of victims of sexual violence", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Continue with action to include human rights education in the school curricula ", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Successfully implement the important initiative of the National Human Rights Action Plan", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Take steps towards improving access to health, especially access to maternal health and to adequate obstetric delivery services so as to reduce maternal and child mortality", - "values": [ - "4 - General action" - ] - }, - { - "text": "Carry out appropriate and comprehensive measures to combat gender based violence and discrimination against vulnerable groups", - "values": [ - "4 - General action" - ] - }, - { - "text": "Continue reforms to consolidate the rule of law and the national mechanisms for protection of human rights", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Continue to implement the Justice Sector Reform Strategy with a view to further strengthening the independence, accountability and transparency of the judiciary", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Adapt the surveys conducted by the Swiss Federal Statistical Office in order to include transgender people and reflect the findings in the following universal periodic review cycle", - "values": [ - "4 - General action" - ] - }, - { - "text": "Enact explicit laws criminalizing organizations and entities promoting or inciting racial or religious hatred, as well as publicly denounce such acts, when they occur, in line with recommendations of the Committee on the Elimination of Racial Discrimination ", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Ratify and accede to the International Convention on the Protection of All Persons from Enforced Disappearance", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Step up cooperation with the special procedures and consider extending a standing invitation to all special procedures mandate holders of the Human Rights Council", - "values": [ - "4 - General action" - ] - }, - { - "text": "Ensure the respect of freedom of expression and freedom of movement of all, lift the ban on journalists from entering the Palestinian territories", - "values": [ - "4 - General action" - ] - }, - { - "text": "Consider finalizing the ratification process of the International Convention on the Rights of Migrant Workers and Members of Their Families (ICRMW) ", - "values": [ - "3 - Considering action" - ] - }, - { - "text": "Engage without any delay to prosecute all those who have committed serious violations of human rights, in particular during the post-electoral crisis in 2010, without any consideration of their ethnic, religious or political status", - "values": [ - "4 - General action" - ] - }, - { - "text": "Look into the issue of trafficking in children who are exploited and used for the purpose of begging, in cooperation with countries of origin", - "values": [ - "3 - Considering action" - ] - }, - { - "text": "Adopt and implement the draft Act on the protection of rights of persons with disabilities in line with the Convention on the Rights of Persons with Disabilities ", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Extend an open and standing invitation to all United Nations special procedures ", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Decriminalize consensual same-sex activities between adults and promote tolerance in this regard", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Establish an independent body to deal with complaints and investigations concerning impunity of the forces of law and order when they carry out heinous actions, and train the police to use force in accordance with international human rights standards ", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Continue its efforts to ensure equal access to housing and protection from discrimination and segregation on the basis of race or any other prohibited ground of discrimination", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Sustain the achievements in reducing maternal mortality ", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Continue to hold awareness-raising campaigns within Armenian society about the rights of national minorities, with the aim of further enhancing tolerance and non-discrimination in all spheres of public life", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Ensure prosecution for trafficking and protection for victims of human trafficking in criminal proceedings, and adequate support for victims through recovery and counselling measures and improve the social and economic situation of women, in particular in rural areas, so as to eliminate their vulnerability to traffickers as recommended by CESCR and CEDAW, respectively ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Continue to take into consideration the adverse impacts of climate change on people's access to food and clean water, particularly the most vulnerable sectors of society", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Place emphasis on implementing strong policies to effectively fight all forms of stereotypes and discrimination against girls and women, thereby ensuring their right to social and economic security ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Intensify programs to combat poverty ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Repeal legal provisions penalising sexual relations between consenting adults of the same sex, in order to respect the principles of equality and non-discrimination among all persons", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Promote women participation in political life and their access to decision-making positions and management", - "values": [ - "4 - General action" - ] - }, - { - "text": "Prosecute all those responsible for the mass-scale criminal acts that have taken place in the past months, including members of security units, responsible commanders and politicians", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Accede to the 1954 Convention relating to the Status of Stateless Persons as well as the 1961 Convention on the Reduction of Statelessness", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Develop Human Rights Indicators, an instrument that allows for a more precise and coherent evaluation of the human rights policies of a country", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Revise the composition of ELECAM to make it more balanced, diverse and representative and totally independent in order to contribute to transparent, fair and credible elections", - "values": [ - "3 - Considering action" - ] - }, - { - "text": "Ensure thorough and impartial investigations into all allegations of attacks and threats against individuals targeted because of their sexual orientation, as in the case of LGBT individuals, and bring to justice those responsible in accordance with international standards of fair trial ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Abolish its political prison camps, where grave human rights violations are ongoing, and release all political prisoners ", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Expedite implementation of its voluntary commitments.", - "values": [ - "4 - General action" - ] - }, - { - "text": "Intensify efforts aimed at implementing recommendations of treaty bodies and special procedures including the Committee on the Elimination of Discrimination against Women, the Committee on the Rights of the Child, the Special Rapporteur on contemporary forms of racism, racial discrimination, xenophobia and related intolerance and the Working Group on Arbitrary Detention ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Continue to take measures aiming at improving the situation of its citizens of the Roma origin and continue to improve the framework of combating discrimination against them", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Take all appropriate measures to address violence against women effectively and more specifically to eliminate FGM, including by making its performance a criminal offence ", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Reinstate the moratorium on the death penalty with a view to acceding the Second Optional Protocol to the ICCPR", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Draft guidelines to report violations of the rights of persons deprived of their liberty through the national mechanism for the prevention of torture", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Draw up and implement with external assistance, a comprehensive plan to address the problems faced by persons living with albinism, to include: massive public awareness campaign, free healthcare services, including preventive cancer treatment, protection mechanisms, investigation and prosecution of perpetrators of violence against them ", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Continue to promote human rights education in school curriculums at all levels ", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Continue the procedure of establishing the national human rights institution in accordance with the Paris Principles ", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Continue initiatives aimed at promoting the participation of women, and continue literacy efforts, particularly for indigenous women", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Continue efforts to eradicate gender-based violence", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Advance in the ratification of the Optional Protocol to the Convention against Torture ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Consider the introduction of legislative amendments which permit more efficient indictment for crimes related to torture and other cruel, inhuman or degrading treatments ", - "values": [ - "3 - Considering action" - ] - }, - { - "text": "Consider revising its legislation with a view to eliminating the death penalty", - "values": [ - "3 - Considering action" - ] - }, - { - "text": "Consider ratifying ILO Convention No 2. on Unemployment ", - "values": [ - "3 - Considering action" - ] - }, - { - "text": "Guarantee respect for the rights and fundamental freedoms of the entire population, especially women and children, and take all necessary measures to ensure the fight against impunity of the perpetrators of crimes, acts of violence and all human rights violations ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Amend the Civil Code regarding defamation to be in line with international standards on the right to freedoms of expression and opinion", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Extend the National Action Plan on Human Rights published in 2013 to cover all relevant human rights issues, including respect for human rights while countering terrorism, and ensure independent monitoring and evaluation of the Action Plan", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Continue its efforts to implement its development programmes ", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Reach progressively the human rights goals set by the Council in its resolution 9-12.", - "values": [ - "4 - General action" - ] - }, - { - "text": "Finland renewed its commitment, presented during the first universal periodic review of Finland, regarding the development assistance objective, as further elaborated in the national report for the second universal periodic review.", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Intensify the fight against the exploitation of children in all its forms ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Consider the establishment of an office of the ombudsman for children's rights, devoted purely to the protection of the rights of children", - "values": [ - "3 - Considering action" - ] - }, - { - "text": "Put into place a comprehensive national plan to ensure protection, respect, and promotion of human rights for all", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Accede to the Optional Protocol to CAT and implement measures ensuring prompt and impartial investigation of ill-treatment and torture of detainees and strengthen the accountability mechanisms for police and armed forces ", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Ratify the International Covenant on Civil and Political Rights and its optional protocols", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "To achieve by 2008 the modifications to the French legislation to satisfy the requirements of the Rome Statute of the International Criminal Court", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Ensure that policies and services relating to mental health treatment and psychiatric institutions comply with international human rights law", - "values": [ - "4 - General action" - ] - }, - { - "text": "Ratify international human rights instruments to which it has not yet adhered to, such as International Covenant on Economic, Social and Cultural Rights, the International Convention on the Elimination of All Forms of Racial Discrimination, the Convention against Torture and Other Cruel, Inhuman or Degrading Treatment or Punishment, as well as their protocols ", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Harmonize the South African legislation to ensure that the minimum age for marriage is established at 18 years for both boys and girls", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Continue its efforts in ensuring that education system will benefit all groups in the society regardless their backgrounds", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Give stronger emphasis to securing the identification, release and reintegration of all child soldiers and the prevention of further recruitment", - "values": [ - "4 - General action" - ] - }, - { - "text": "Cooperate fully with the United Nations, the Human Rights Council and the special rapporteur on the Democratic People's Republic of Korea and allow access by the latter to the country", - "values": [ - "4 - General action" - ] - }, - { - "text": "Adopt special procedures to ensure the effective protection of the rights of unaccompanied children in their access to asylum procedures", - "values": [ - "4 - General action" - ] - }, - { - "text": "Step up efforts to eliminate corruption by police officers and prosecutors, and to adopt specific legal provisions establishing a judicial procedure for ensuring investigation of the cases related to enforced disappearance and arbitrary detention, as well as to punish perpetrators and provide assistance and recovery for victims", - "values": [ - "4 - General action" - ] - }, - { - "text": "Accelerate the process of creating a Human Rights Institution in conformity with the Paris Principles", - "values": [ - "4 - General action" - ] - }, - { - "text": "Sign and ratify the Optional Protocol to the Convention against Torture and Other Cruel, Inhuman or Degrading Treatment or Punishment OP-CAT ", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Continue to enhance its domestic framework to combat child labour through enforcing the relevant legislation ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Introduce a quota system in the employment sector for persons with disabilities", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Establish transitional justice mechanisms as a key element to the administration of justice and re-establishment of the rule of law.", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Address gender and regional disparities regarding the right to education", - "values": [ - "4 - General action" - ] - }, - { - "text": "Strengthen and continue the national measures to combat racism, xenophobia and hate crimes", - "values": [ - "4 - General action" - ] - }, - { - "text": "Remove undue restrictions on use of Internet and ensure that journalists can freely exercise their right to freedom of expression", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Start full cooperation with the Commission of Inquiry, including by ensuring access to the country so that it may carry out its mandate", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Continue deploying its best efforts for the eradication of stereotypes, prejudices and negative attitudes of patriarchal, racial and gender-based nature", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Ratify international human rights instruments to which the country is not yet a party ", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Continue its efforts with regard to universal primary education and abolishing school fees, including the promotion of the Nine-Year Basic Education programme ", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Take measures to ensure a fair access to education, without distinction of the origin or gender of the person", - "values": [ - "4 - General action" - ] - }, - { - "text": "Increase efforts to promote tolerance and intercultural understanding with the aim of eliminating discrimination against minorities and non-citizens", - "values": [ - "4 - General action" - ] - }, - { - "text": "Establish a formal moratorium with a view to ratifying the Second Optional Protocol to the International Covenant on Civil and Political Rights", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Accelerate the adoption of the bill on the respect of human rights in the fight against terrorism", - "values": [ - "4 - General action" - ] - }, - { - "text": "Continue the work for enhanced protection for victims of domestic violence and take measures with a focus on prevention and accountability in regards to domestic violence ", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Strengthen the actions taken to combat discrimination against women in all areas", - "values": [ - "4 - General action" - ] - }, - { - "text": "Review its legislation on defamation and insult, including the Penal Code, to ensure that it is fully in compliance with international human rights law", - "values": [ - "3 - Considering action" - ] - }, - { - "text": "Ratify ILO Convention no. 169 concerning Indigenous and Tribal Peoples in Independent Countries and establish formal protocols to obtain their free, prior and informed consent", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Strengthen its efforts and measures to consolidate the State of law and its mechanisms on human rights protection and promotion, as stated in the recently launched Third National Action Plan on Human Rights ", - "values": [ - "4 - General action" - ] - }, - { - "text": "In collaboration with the international community, intensify efforts to combat trafficking of persons, particularly children", - "values": [ - "4 - General action" - ] - }, - { - "text": "Move swiftly to pass its new Media Law.", - "values": [ - "4 - General action" - ] - }, - { - "text": "Continue education reforms in order to reduce the illiteracy rate in the country", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Continue its efforts aimed at abolishing the use of the death penalty and continue with the application of the moratorium declared in 2004 ", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Maintain efforts to promote and protect the rights of children, young people, persons with disabilities and women, and seek to overcome the low representation of women ", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Extend an open invitation to the Special Procedures and cooperate with the human rights mechanisms of the Human Rights Council, including the Commission of Inquiry, and allow the Office of the High Commissioner for Human Rights access to its territory", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Establish a de jure moratorium on the use of corporal punishment ", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Address impunity by providing the required resources for the established Commission of Inquiry to conduct credible and transparent investigations of these crimes ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Ratify the Rome Statute on the International Criminal Court and its Agreement on Privileges and Immunities", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Adopt the necessary regulatory and inspection framework and fully implement the mechanisms already in place to guarantee the same legal protection to domestic workers as to other citizens ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Improve further the registration system and support it by awareness raising activities, in order to sustain the rise in registration numbers", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Ensure that children in conflict with the law have access to education", - "values": [ - "4 - General action" - ] - }, - { - "text": "Take measures to enforce laws and policies to promote equality between men and women", - "values": [ - "4 - General action" - ] - }, - { - "text": "Set up a national action plan with policies focusing on making the family the fundamental base for childcare, reducing the number of street children and child labor and ensuring the right of the child to education", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Launch a broad public awareness and education campaign among the population and authorities in order to ensure effectiveness of the new legislative framework prohibiting child marriage at less than 18 years of age", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Ensure free primary education for all without any discrimination, including by increasing funding for education", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Continue to implement its national laws in accordance with the universally agreed human rights norms and principles ", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Ensure that women have access to legal and safe abortions, especially in cases of pregnancies resulting from rape or incest", - "values": [ - "4 - General action" - ] - }, - { - "text": "To ratify communication procedures relating to human rights treaties.", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Reinstate a moratorium on executions with a view of abolishing the death penalty", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Ensure that immigrants gain access to professions reflecting their educational level and professional experience", - "values": [ - "4 - General action" - ] - }, - { - "text": "Issue an open and standing invitation to all special procedures ", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Carry out efforts to ratify the Optional Protocols to the Convention on the Rights of the Child and the Convention on the Elimination of All Forms of Discrimination against Women", - "values": [ - "4 - General action" - ] - }, - { - "text": "Uphold the rights of persons with disabilities in conformity with the principles of the Convention on the Rights of Persons with Disabilities. Measures will also be taken to secure the rights of persons with mental disabilities.", - "values": [ - "4 - General action" - ] - }, - { - "text": "Consider the establishment of a national human rights institution in compliance with the Paris Principles ", - "values": [ - "3 - Considering action" - ] - }, - { - "text": "Continue with the successful policies for the democratization of the radio spectrum, by granting concessions to community media", - "values": [ - "4 - General action" - ] - }, - { - "text": "Expedite the establishment of an independent national human rights institution in accordance with the Paris Principles. ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Establish, where appropriate, specialized services required for children and women who have been trafficked or sold for sexual exploitation", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Resume the ratification process of the International Convention on the Protection of the Rights of All Migrant Workers and Members of Their Families", - "values": [ - "4 - General action" - ] - }, - { - "text": "Reduce the number of capital offences and reduce the use of the death penalty. ", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Accept visits from and provide full cooperation to the special procedures of the Human Rights Council, in order for them to fulfil their mandates and pursuant to commitments of the Government", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Switzerland is prepared to consider acceding to the first Optional Protocol to the International Covenant on Civil and Political Rights. ", - "values": [ - "3 - Considering action" - ] - }, - { - "text": "Speed up, with the cooperation of the Office of the High Commissioner and donor countries, the legal process to establish a national human rights institution in conformity with the Paris Principles, with material and human resources that guarantee its independence and good functioning", - "values": [ - "4 - General action" - ] - }, - { - "text": "Continue to provide effective protection for the family, as the natural and fundamental unit of society", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Consider positively ratifying and adhere to the American Convention on Human Rights ", - "values": [ - "3 - Considering action" - ] - }, - { - "text": "To disseminate, in a forum with wide participation among Government agencies and social movements, the results of the National Census of Population and Housing 2011 in order to inform of the situation and number of individuals and families of African descent, allowing the collection of data and information related to this group, to implement and adopt public policies to provide the necessary assistance and support required by this population within the geographical space of Venezuela", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Ratify the human rights instruments to which it is not yet a party", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Grant access for the special rapporteur on the Democratic People's Republic of Korea", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Continue the process of accession to or ratification of the pending main international human rights instruments, in particular CED and the Convention on the Rights of Persons with Disabilities (CRPD)", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Take complementary protection measures for victims and witnesses of torture and enforced disappearances, and strengthen the procedures of criminal complaints and sanctions against the perpetrators", - "values": [ - "4 - General action" - ] - }, - { - "text": "Ensure that education programmes pay special attention to the prevention of sexual abuse and harassment and enable women to return to school after pregnancy ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Continue with initiatives to promote national reconciliation", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Further strengthen its educational system to guarantee unrestricted access to education for every member of the population ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Follow up on its commitment to modernize the justice system and the prison system to address reports of ill-treatment of prisoners ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Strengthen agreed efforts and the consolidation of existing acquis on the integration of Roma People,particularly relating to budget and coordination of the various programmes established by the authorities", - "values": [ - "4 - General action" - ] - }, - { - "text": "Ensure that the recently established national prevention mechanism receives the necessary resources to conduct its work", - "values": [ - "4 - General action" - ] - }, - { - "text": "Decriminalize conscientious objectors, introduce a genuinely civilian alternative to military service and release those imprisoned for refusing to perform military service", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Expedite the adoption process of draft framework law 5125 on disability in order to contribute to the due implementation and fulfilment of the Convention on the Rights of Persons with Disabilities", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Consider developing programmes to reduce school dropout, increasing investment in educational infrastructure, and promoting effective programmes to address low school attendance ", - "values": [ - "3 - Considering action" - ] - }, - { - "text": "Integrate into the new Constitution the Personal Statute Law, in order to uphold women's rights ", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Provide the necessary financial and human resources to strengthen the implementation of its National Action Plan against Racism, Xenophobia and Intolerance, including by intensifying efforts to conduct investigations promptly and taking action against the perpetrators of racist and xenophobic speeches and public statements", - "values": [ - "4 - General action" - ] - }, - { - "text": "Adopt measures enabling more women's political representation", - "values": [ - "4 - General action" - ] - }, - { - "text": "Pass the long-awaited Children's Protection and Welfare Bill, and pass the necessary legislation to ensure that national legislation is in line with the Convention on the Rights of the Child ", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Recommended halting forced distribution of passports certifying Russian citizenship among ethnic Georgians In the occupied territories controlled by the Russian armed forces", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "The delegation took the opportunity to announce a number of new commitments from the Australian Government, including funding for the Office for the High Commissioner for Human Rights and the Asia Pacific Forum, the establishment of a fulltime Race Discrimination Commissioner at the Australian Human Rights Commission, a commitment to tabling in Parliament concluding observations from treaty bodies and the universal periodic review recommendations, and instituting a systematic process for review of Australia's reservations to human rights treaties.", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Explore and maximize the benefits from international cooperation and partnerships to support initiatives to combat trafficking in persons, especially women and children", - "values": [ - "4 - General action" - ] - }, - { - "text": "Adopt federal legislation in order to provide protection against all forms of discrimination, including on grounds of sexual orientation and gender identity", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Elevate the socioeconomic situation for persons with disabilities", - "values": [ - "4 - General action" - ] - }, - { - "text": "Strengthen measures to enhance the welfare of vulnerable groups including persons with disabilities", - "values": [ - "4 - General action" - ] - }, - { - "text": "Continue its efforts to ensure the right to food for the citizens", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Continue to take measures to eradicate the use of torture and other forms of ill-treatment, including through training and education of law enforcement authorities", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Allocate the necessary human, technical and financial resources for the strengthening of the office of the ombudsman", - "values": [ - "4 - General action" - ] - }, - { - "text": "Continue to expedite means and ways to accede to the International Convention on the Protection of the Rights of All Migrant Workers and Their Families ", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Take steps to address problems related to high illiteracy rates in certain parts of the country, as well as the gender gap between boys and girls in secondary and tertiary education.", - "values": [ - "4 - General action" - ] - }, - { - "text": "Strengthen efforts to ensure adequate legal counselling for all persons charged for violations of the lèse-majesté legislation and the 2007 Computer Crimes Act ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Ensure that all forms of discrimination are prohibited, including on the basis of sexual orientation, gender identity and health status", - "values": [ - "4 - General action" - ] - }, - { - "text": "Put in place initiatives aimed at raising awareness, especially among professionals who work in the area, about violations of the human rights of children, including sexual abuse", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Adopt the necessary measures to abolish the death penalty and establish a moratorium on executions", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Ratify CRPD ", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Identify concrete measures to combat social and cultural attitudes leading to discrimination and to specifically promote the sexual and reproductive rights of women and girls to work towards equality of pay and conditions for women in the workplace to reduce discrimination against people with HIV-AIDS and to increase the inclusion of lesbian, gay, bisexual and transgender people in the public and private sectors", - "values": [ - "4 - General action" - ] - }, - { - "text": "Raise awareness of the criminalization of female genital mutilation and also ensure perpetrators of female genital mutilation are brought to justice", - "values": [ - "4 - General action" - ] - }, - { - "text": "Consider acceding to the Convention against Torture ", - "values": [ - "3 - Considering action" - ] - }, - { - "text": "Ensure the compliance of its legislation, especially the Code of Personal Status and the Criminal Code, with articles 21 and 46 of its Constitution and international human rights obligations", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Adopt the law on quotas which aims to reserve at least 33 per cent of seats in legislative bodies of the central and state governments for women", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Accede to the Second Optional Protocol to the International Covenant on Civil and Political Rights, aiming at the abolition of the death penalty", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Improve efforts to guarantee the freedom of the press, and take all necessary steps to protect everyone individually or in association with others against any violence, retaliation, adverse discrimination or pressure as a consequence of his or her legitimate exercise of freedom of expression according to international human rights standards", - "values": [ - "4 - General action" - ] - }, - { - "text": "Continue protecting its population from the effects of the blockade imposed by the United States of America ", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Accelerate efforts regarding birth registration, while ensuring the free issuance of birth certificates to all children", - "values": [ - "4 - General action" - ] - }, - { - "text": "Finalize efforts to create a National Human Rights Commission in line with the Paris Principles", - "values": [ - "4 - General action" - ] - }, - { - "text": "Seek close cooperation with the national human rights institution and local NGOs in the implementation of recommendations addressed to Oman in the course of this UPR and which will enjoy the support of the Government ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Lift its reservations to CEDAW ", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Ensure the existence of sufficient budget allocations and follow-up and evaluation mechanisms for the full implementation of the "2008-2013 National Strategy on children right's protection" in order to support children and the most vulnerable population ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Operationalize the National Child Rights Committee in order to ensure the effective promotion and protection of their rights and to enable their integral development", - "values": [ - "4 - General action" - ] - }, - { - "text": "Reconsider its decision to denounce the American Convention on Human Rights and to return to the jurisdiction of the Inter-American Court of Human Rights", - "values": [ - "3 - Considering action" - ] - }, - { - "text": "Take legislative action and effectively prosecute the incitement of hatred and acts of violence against all religious minorities ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Increase the number and capacity of shelters for women who are victims of violence and ensure that all women have non-discriminatory access thereto", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Continue reforms initiated in education", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Put into place more effective measures to tackle violence against journalists and media personnel", - "values": [ - "4 - General action" - ] - }, - { - "text": "Strengthen the human rights training of state security forces and prevent the use of excessive force against civilians", - "values": [ - "4 - General action" - ] - }, - { - "text": "Strengthen efforts made to address the causes of ethnic conflicts on its territory and take necessary measures to prevent and sanction the forced recruitment of minors under the age of 18 ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Accede to the following human rights instruments: CRPD, the ICERD and the OP-CRC-SC ", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Take timely and concrete measures such as raising the minimum legal age of marriage to 18 years in order to prevent children from becoming victims of child early and forced marriage", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Examine allegations of ill-treatment and torture in custody and failures to ensure fair trial guarantees to those arrested and prosecuted following the 2010 violence", - "values": [ - "4 - General action" - ] - }, - { - "text": "Launch a Universal Birth Registration Strategy to improve the level of birth registration in the country ", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Reinforce measures to combat violence against women, including legislative amendments to the Criminal Code and the Domestic Violence Act and by awareness raising campaigns", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Take all necessary measures to tackle prejudicial attitudes and ensure the integration of Roma children in the Czech educational system, including early childhood education and care, as provided for in the amended Schools Act", - "values": [ - "4 - General action" - ] - }, - { - "text": "Take positive steps in regard to climate change, by assuming the responsibilities arising from capitalism that have generated major natural disasters particularly in the most impoverished countries", - "values": [ - "4 - General action" - ] - }, - { - "text": "Step up efforts to raise awareness on and pursue full implementation of the Law against Domestic Violence (LADV) 2010 ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Intensify efforts to reduce maternal and child mortality rates", - "values": [ - "4 - General action" - ] - }, - { - "text": "Strengthen further the measures to combat discrimination against minority communities, including Muslim communities in Australia ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Redouble efforts aimed at establishing an independent national human rights institution in compliance with the Paris Principles", - "values": [ - "4 - General action" - ] - }, - { - "text": "Consider ratifying the core international human rights instruments and other relevant international conventions", - "values": [ - "3 - Considering action" - ] - }, - { - "text": "Repeal legislation that criminalizes abortion and eliminate all punitive measures, in particular Article 40.3.3 of the Irish Constitution", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Revise the law on marriage so that women and men are treated with equality in the state of marriage ", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Pursue its efforts to provide access to education to all children", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Foster and safeguard the family, based upon the stable relationship between a man and a woman, as the natural and fundamental unit of society ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Develop a strategy for achieving the complete eradication of the practice of slavery and all its forms and remedy its after-effects on women and children ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Take concrete steps to ensure security for its people to guarantee their enjoyment of human rights", - "values": [ - "4 - General action" - ] - }, - { - "text": "Consider becoming party to ICRMW and to OP-CAT ", - "values": [ - "3 - Considering action" - ] - }, - { - "text": "Take effective measures to fully implement National Rural Health Missions ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Amend legal prohibition on incitement to hatred to include prohibitions on the basis of sexual orientation", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Identify, pursuant to the recommendations of the Committee on Economic, Social and Cultural Rights, cases of racism and xenophobia, combat them and foster intercultural understanding and tolerance. ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Enact specific labour legislation concerning foreign and domestic workers which guarantees their rights according to international human rights standards ", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Remove its reservations to CRC and the Convention on the Elimination of All Forms of Discrimination against Women CEDAW ", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Continue to implement measures towards the rights of youth and encourage voluntary initiatives and charity work for the promotion of these rights", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "It is the constitutional mandate of the Attorney-General's Office to provide legal advice and service to the Government. Also provided under the Constitution is the Government's recognition of the right of the people to legal services, and is obliged to take every step reasonable and necessary to provide said services. Consequently, for indigent people who cannot afford legal representation, free legal access is provided by the Public Defender's Office and the Micronesian Legal Services Office.", - "values": [ - "1 - Minimal action" - ] - }, - { - "text": "Amend the law of association in compliance with international standards, including allowing NGOs to function without impediments such as prior authorization, funding control and administrative dissolution", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Take measures to increase transparency in public administration in order to instil trust among the general public hence contributing to stability in the Guinean society", - "values": [ - "4 - General action" - ] - }, - { - "text": "Establish effective complaint mechanisms for victims of torture", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Give continuity to the process to ratify the Convention on the Rights of Persons with Disabilities", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Restore the rule of law and the independence and impartiality of the judicial system", - "values": [ - "4 - General action" - ] - }, - { - "text": "Consider applying for an "A" status accreditation of the National Human Rights Institution", - "values": [ - "3 - Considering action" - ] - }, - { - "text": "Take appropriate measures to provide school education to refugee children and to avoid discrimination of non-camp refugee children", - "values": [ - "4 - General action" - ] - }, - { - "text": "To take all measures to prevent any kind of reappearance of Nazism and not to let any such acts go unpunished.", - "values": [ - "4 - General action" - ] - }, - { - "text": "Continue efforts to increase its Official Development Assistance to developing countries, which now stands at 0.4 per-cent of GNI as compared to the agreed 0.7, to assist them to provide for the basic economic, social and cultural rights of their populations", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Continue efforts to advance the right to assembly, especially by adopting measures that allow for the creation of associations, trade unions and envisage the creation of political parties", - "values": [ - "4 - General action" - ] - }, - { - "text": "Continue to fulfil its pioneering role in providing humanitarian assistance in cases of natural disasters so as to assist the victims, in particular in the developing and least developed countries ", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Commit more resources to the provision of services for children with disabilities.", - "values": [ - "4 - General action" - ] - }, - { - "text": "Continue determined efforts to improve national legislation in the area of the promotion and protection of the rights and freedoms of its citizens", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Continue policies aimed at reducing inequalities in access to the full enjoyment of human rights by all social groups with paying special attention to women, children and persons with disabilities ", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Continue to take measures to ensure freedom of the press and media", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Adopt legislative measures to criminalize and prosecute gender violence at public instances, as well as establish shelters for women victims of violence and train staff involved into investigations of those cases ", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Take effective steps for the country's legal framework to protect the rights of lesbian, gay, bisexual, transgender and intersex people", - "values": [ - "4 - General action" - ] - }, - { - "text": "Strengthen the national mechanisms for the access to appropriate education, including in rural regions", - "values": [ - "4 - General action" - ] - }, - { - "text": "Within the framework of the National Roma Integration Strategy developed in 2011, intensify its efforts for implementation of their integration policy, especially in the areas of health and education", - "values": [ - "4 - General action" - ] - }, - { - "text": "Consider to abolish the death penalty in line with the country's new reality ", - "values": [ - "3 - Considering action" - ] - }, - { - "text": "Remove reservations to article 2 and article 16.1(c) of the Convention on the Elimination of All Forms of Discrimination against Women", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Continue its efforts to improve the guarantees on the rights of women through the revision of all discriminatory laws ", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Adopt laws to protect freedoms of association, expression and religion, and give all individuals a legal basis to form NGOs without interference", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Create, if not a national human rights institution, at least one at the level of the group of Islands it belongs to, so that they may more effectively improve their human rights performance and implement their human rights obligations.", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Immediately put an end to repressions of peaceful protests that have led to a high number of deaths and wounded people, including children", - "values": [ - "4 - General action" - ] - }, - { - "text": "Adopt measures in the legislative and political spheres, including appropriate budget allocation, to guarantee, prevent and eradicate discrimination on religious grounds, ethnic composition, gender or sexual orientation ", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Direct all programmes aimed at improving the status of women, and enhance their participation in all areas of society ", - "values": [ - "4 - General action" - ] - }, - { - "text": "The Government of Guatemala reiterates its commitment to promoting and protecting human rights, as well as to implementing the recommendations made in the universal periodic review conducted by the United Nations Human Rights Council, so as to ensure the effective implementation of the human rights of all Guatemalans", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Continue efforts to prevent and eliminate all forms of violence against women", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Take more steps to deliver human rights education in schools, and conduct human rights awareness-raising activities for public servants, in particular law enforcement officers", - "values": [ - "4 - General action" - ] - }, - { - "text": "Ensure also thorough, independent and impartial investigation of all previous serious violations of human right, including the tragic event of May 2005 in Andijan.", - "values": [ - "4 - General action" - ] - }, - { - "text": "Sign and ratify ICESCR as soon as possible as well as CRPD ", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Prevent cruel, inhuman and degrading treatment in all places of detention, fight against impunity of perpetrators of such acts and recognize the competence of the Committee against Torture and Other Cruel, Inhuman or Degrading Treatment or Punishment", - "values": [ - "4 - General action" - ] - }, - { - "text": "Relaunch the work of the Steering Committee responsible for conceptualizing and adopting the National Human Rights Action Plan", - "values": [ - "4 - General action" - ] - }, - { - "text": "Pay special attention to the condition of persons in prisons and continue its capacity-building policy in the field of health care services. ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Step up the implementation of legislative, policy and administrative measures aimed at combating gender-based violence and sexual harassment ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Continue energizing existing mechanisms to enhance the addressing of human rights challenges.", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Finalize the National Action Plan on Gender-based Violence and allocate sufficient resources to it to ensure its implementation", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Establish a moratorium on executions with a view to abolish the death penalty", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Continue the reforms already accomplished by withdrawing the reservation to article 22 of the Convention against Torture", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Elaborate an operational framework of systematic and comprehensive assessment of progress achieved in human rights", - "values": [ - "4 - General action" - ] - }, - { - "text": "Abrogate the provisions of its internal legislation which prohibit, in practice, the union with a person who has family links abroad and those which prohibit reunification of spouses who have not yet reached the minimum age of 24 years ", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Increase the efforts by the Ministry of the Interior to combat the practice of female genital mutilation, particularly in rural areas, preventing and prosecuting criminally this practice", - "values": [ - "4 - General action" - ] - }, - { - "text": "Ratify, before the next universal periodic review cycle, the Convention against Torture and Other Cruel, Inhuman or Degrading Treatment or Punishment", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Take measures to ameliorate the effects of the displacement of civilians as a consequence of armed fighting, ensuring their return when zones have been pacified and adopting immediate measures for the restitution of lands and-or adequate compensation of those who have lost their lands.", - "values": [ - "4 - General action" - ] - }, - { - "text": "Ratify both Protocols to the Convention on the Rights of the Child (CRC) (CRC-OP-AC and the Optional Protocol on the sale of children, child prostitution and child pornography, CRC-OP-SC).", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Adopt a comprehensive Child Code, ensuring that it covers all of the provisions of the Convention on the Rights of the Child ", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Repeal all provisions criminalizing sexual activity between consenting adults ", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Ensure that laws combating FGM and forced marriages are compatible with its international human rights obligations and that resources are allocated, including through multilateral international cooperation, to fully implement such laws", - "values": [ - "4 - General action" - ] - }, - { - "text": "Take effective measures to ensure a greater political representation and participation of women in public life as well as to address the issue of wage gap between men and women", - "values": [ - "4 - General action" - ] - }, - { - "text": "Strengthen and implement the 2007 law that criminalizes slavery through programmes existing since 2009, to eradicate the aftermath of slavery ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Study the possibility of ratifying the following international instruments: the Optional Protocols to ICCPR, CRPD and the Optional Protocol thereto", - "values": [ - "3 - Considering action" - ] - }, - { - "text": "Raise the minimum age of criminal responsibility in accordance with general comment No. 10 [2007] of the Committee on the Rights of the Child", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Continue to expand the framework for national health insurance coverage so as to guarantee the right to health", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Concentrate on the implementation of international human rights instruments that have been ratified by the country", - "values": [ - "4 - General action" - ] - }, - { - "text": "Revise the policies that involve racial and ethnic profiling such as "stop and search" practice ", - "values": [ - "3 - Considering action" - ] - }, - { - "text": "Consider enacting legal prohibition to the use of corporal punishment ", - "values": [ - "3 - Considering action" - ] - }, - { - "text": "Take appropriate measures to address violence against children. ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Revise the Criminal code to include, as criminal offences, all forms of sexual and psychological violence against women and girls, including marital rape", - "values": [ - "3 - Considering action" - ] - }, - { - "text": "Take measures to considerably reduce the number of stunted children and out-of-school children, and end child labour by developing indicators and a timeline for the implementation of the recent legislation against child labour", - "values": [ - "3 - Considering action" - ] - }, - { - "text": "Provide adequate resources and functional independence to the Equal Treatment Authority", - "values": [ - "4 - General action" - ] - }, - { - "text": "Legislate to remove the death penalty from its statute books and commute to custodial sentences those death sentences that have already been passed down", - "values": [ - "3 - Considering action" - ] - }, - { - "text": "Reinforce its actions with further measures to promote the systematic integration of gender approach in the public policies and to provide relevant statistics on this aspect", - "values": [ - "4 - General action" - ] - }, - { - "text": "Before a moratorium is introduced, to take all necessary measures to ensure that any use of the death penalty complies with minimum standards under international law relating to the death penalty such as under article 6 and 14 of the International Covenant on Civil and Political Rights ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Remain proactive in combating discrimination against Sami and Roma and in protecting their economic, social and cultural rights in consultation with the communities concerned ", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Redouble its efforts in implementing such policy as the Fiji National Gender Policy through a set of clear and measurable strategies", - "values": [ - "4 - General action" - ] - }, - { - "text": "Continue efforts to fight against impunity and human rights violations, with special attention to the rights of indigenous populations, those of African descent, women and HIV-AIDS carriers, as well as to combat all forms of discrimination ", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Combat violence against women by implementing the Istanbul Convention, which entered into force August 1, 2014, and finalize Italy's National Action Plan", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Continue its efforts in awareness and education on human rights ", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Ratify the Optional Protocol to Convention against Torture and Other Cruel, Inhuman or Degrading Treatment or Punishment and establish a national preventive mechanism providing for periodic visits to all places of detention", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Continue to fight poverty with the support and cooperation of the international community", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Continue efforts to ensure respect for the principle of non-refoulement, and that this principle is applied to all situations, based on individual assessments, case by case and not collectively, particularly in the case of underage asylum seekers", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Continue to strengthen the relevant public policies on the promotion and protection of human rights, particularly the rights of children, migrants and asylum seekers and persons with disabilities", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Consider establishing at the earliest a national human rights institution in full compliance with the Paris Principles ", - "values": [ - "3 - Considering action" - ] - }, - { - "text": "Continue effectively implementing its action plan to combat human trafficking and further promote gender equality in the country with an increase in funding for the protection and promotion of women's rights ", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Ensure that the National Human Rights Commission with the sufficient resources to be able to acquit itself of its mandate, fully respecting the Paris Principles", - "values": [ - "4 - General action" - ] - }, - { - "text": "Continue its efforts to ratify the Optional Protocol to the Convention against Torture as soon as possible", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Consider ratifying the African Charter on Democracy, Elections and Governance ", - "values": [ - "3 - Considering action" - ] - }, - { - "text": "Implement policies aimed primarily at judicial and police officers, which combat stereotypes that normalize violence against women, in order to create a proper atmosphere for victims to file complaints on such acts ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Further strengthen its national human rights institution in accordance with the Paris Principles and pursue the development of a comprehensive national human rights action plan", - "values": [ - "4 - General action" - ] - }, - { - "text": "Take steps to ensure that all Canadian children have equal access to government services, such as health, education and welfare, and address the disparities in access to these services for indigenous children in particular, as recommended by the Committee on the CRC ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Review, amend and repeal its national discriminatory laws and regulations against persons of certain religious backgrounds, in particular Muslim migrants ", - "values": [ - "3 - Considering action" - ] - }, - { - "text": "Strengthen mechanisms to prevent the trafficking in boys and girls and provide the support needed for victims of trafficking to be reintegrated into society", - "values": [ - "4 - General action" - ] - }, - { - "text": "Consider taking appropriate measures to eliminate racial discrimination and recognize Africans and people of African descent as part of the Dominican society ", - "values": [ - "3 - Considering action" - ] - }, - { - "text": "Adopt legislative and other measures that promote the enjoyment of freedom of expression ", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Review its relevant legislation and regulations on birth registration to ensure their full conformity with the Convention on the Rights of the Child", - "values": [ - "3 - Considering action" - ] - }, - { - "text": "Strengthen its efforts to reduce the high school drop-out rates of girls at intermediate and secondary school levels", - "values": [ - "4 - General action" - ] - }, - { - "text": "Continue more budget allocation in the health sector", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Continue to promote women's rights, and specifically, to promote women's access to national decision-making bodies", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Accept the Working Group on Enforced or Involuntary Disappearances request for visit", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Maintain efforts undertaken to identify human rights violations ", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Enhance efforts to find a prompt solution for the return or resettlement of people living in refugee camps in eastern Nepal ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Continue its efforts in protecting the rights of disadvantaged children and redouble its efforts towards achieving the Millennium Development Goals", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Systematically implement the Convention against Torture, ratify the the Optional Protocol to the Convention against Torture, and set up an effective National Preventive Mechanism as soon as possible", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Modify or repeal discriminatory legislation, including discriminatory provisions in its Personal Status Act, Criminal Code and Nationality Act", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Reform decree No. 92 such that it guarantees the rights to freedom of religion and belief, opinion and expression as set out in the ICCPR, and take steps to improve the awareness of State officials of their duty to protect these rights ", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Increase efforts to seek assistance in establishing a centralized data registry, especially data on violence against women and children", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Continue its efforts to implement domestic policies to further promote gender equality and strengthen the protection of women against discrimination and violence ", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Envisage the possibility of adhering to CRPD, which offers an important frame of reference in the area of promotion and protection of the rights of persons with disabilities, without underestimating the cost of implementing the related norms ", - "values": [ - "3 - Considering action" - ] - }, - { - "text": "Redouble efforts so that positive results in the area of economic, social and cultural rights reach the most vulnerable populations on an equal footing, in particular minorities, indigenous and African-descended peoples and rural populations ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Take further steps to ensure a safe and enabling environment for all human rights defenders, including those representing the lesbian, gay, bisexual and transgender community and adat communities", - "values": [ - "4 - General action" - ] - }, - { - "text": "Investigate all allegations with respect to torture and inhuman and degrading treatment by Afghan National Police and the National Directorate of Security.", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Ensure that the judgements of the Inter-American Court of Human Rights regarding the Moiwana Community and Saramaka people are swiftly and completely implemented", - "values": [ - "4 - General action" - ] - }, - { - "text": "Continue to take measures to safeguard religious freedom and promote tolerance among its inhabitants", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Strengthen efforts to protect the rights of all peoples with Albinism ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Continue promoting social inclusion by strengthening the protection of ethnic minorities, in particular the Roma", - "values": [ - "4 - General action" - ] - }, - { - "text": "Enact into law the "Sexual Offences and Domestic Violence Bill" without further delay", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Ratify those conventions which Palau has not ratified, as previously recommended", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Make greater efforts to protect the access of children to education and implement its new law prohibiting child marriages.", - "values": [ - "4 - General action" - ] - }, - { - "text": "Share, with the Sudan and other least developing and developing countries its best practice of social safety nets and empowerment", - "values": [ - "1 - Minimal action" - ] - }, - { - "text": "Adopt and implement all necessary measures to effectively prevent domestic violence and gender-based homicides", - "values": [ - "4 - General action" - ] - }, - { - "text": "Continue paying attention to achieving comprehensive development through support for a human rights culture through the media and the educational system", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Take all the necessary measures to conduct a nationwide assessment of all manifestations of child sexual exploitation and adopt a national action plan to end it", - "values": [ - "4 - General action" - ] - }, - { - "text": "Cease the institutionalized policy of executions and disappearances described in the reports of the Special Rapporteur", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Undertake the necessary measures to ensure sustainable development in its urban centres, ensuring that there is basic public services for the most vulnerable people, particularly, migrants coming from rural areas", - "values": [ - "4 - General action" - ] - }, - { - "text": "Consider the ratification of the Convention on the Rights of Persons with Disabilities and the Optional Protocol thereto.", - "values": [ - "3 - Considering action" - ] - }, - { - "text": "Release or charge and bring before a court - in a manner consistent with international fair trial standards and Iran's own Constitution - all persons detained in connection with the demonstrations following the 2009 presidential elections", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Provide mandatory sexual education in schools and increase knowledge and awareness about family planning among women and men", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Continue its recent move of opening up websites with a view to bringing the regulation of Internet use into line with international law.", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Publically denounce crimes committed against LGBTs and to conduct thorough investigations into and prosecutions of these attacks ", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Continue to step up investment in agriculture and ensure food security", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Continue following up on obligations entered into in the various human rights treaties, prioritizing the needs of the most vulnerable segments of the population", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Continue efforts in setting and implementing additional measures to enforce harmony and social cohesion between the different ethnic groups in the country", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Continue efforts in promoting women's rights", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Continue with the measures for the promotion of women's rights, primarily by preventing and combating violence against women, particularly those belonging to indigenous peoples ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Consider adopting a National Plan adapted for children and early childhood ", - "values": [ - "3 - Considering action" - ] - }, - { - "text": "Amend article 126 of the Penal Code to bring into line with the UN Convention against Torture", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Ratify and implement the second Optional Protocol of the International Covenant on Civil and Political Rights, aiming at the abolition of the death penalty ", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Continue its cooperation with the United Nations human rights mechanisms to protect and promote these rights", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Lift all restrictions on the activities of civil society and complies with the request by the Human Rights Committee to bring its law, regulations and practice governing the registration of political parties into line with the International Covenant on Civil and Political Rights.", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Address the negative impacts of unilateral economic measures and natural calamities that affect the country ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Increase the investment to education and take further measures to lower the illiteracy rate, especially the illiteracy of the female", - "values": [ - "4 - General action" - ] - }, - { - "text": "Take all steps necessary to reform the discriminatory provisions of penal and civil laws, including with regard to women's equal rights in marriage, access to justice and legal discrimination", - "values": [ - "4 - General action" - ] - }, - { - "text": "Adopt measures to reduce gender inequality in the labour market, allowing women and men to reconcile family and professional responsibilities, including by providing sufficient pre-school education facilities and places of childcare", - "values": [ - "4 - General action" - ] - }, - { - "text": "Adopt a national strategy to fight against discrimination against women and girls, with a focus on equitable access to education", - "values": [ - "4 - General action" - ] - }, - { - "text": "In accordance with the recommendations of international human rights institutions, grant to non-citizens, without delay, the right to participate in the political life of the country, including in municipal elections, and the opportunity to enjoy all economic, social and cultural rights ", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "While acknowledging the efforts to cooperate with special procedures, consider issuing a standing invitation to the special procedures mandate holders", - "values": [ - "3 - Considering action" - ] - }, - { - "text": "Build or designate detention facilities for unaccompanied minors seeking immigration protection separate from adult facilities", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Ensure that all women, especially the young, have access to contraception and anonymous, non-discriminatory and confidential sexual and reproductive health services", - "values": [ - "4 - General action" - ] - }, - { - "text": "Utilize human rights training and education as a way to mainstream the promotion of the rights of women and children", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Draw up a follow-up plan to the Action Plan to Combat Female Genital Mutilation and Cutting, which includes evaluation mechanisms of outcomes and measures to make effective the punishment of such practices, as well as appropriate budget allocations for its implementation in rural areas", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Develop infrastructure for technical training, recreation and leisure for children and young people, particularly in rural areas, with a view to promoting alternative activities, rather than having young people participate in traditional crop gathering ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Adopt national measures in order to promote access to more women to positions of responsibility", - "values": [ - "4 - General action" - ] - }, - { - "text": "Ensure due investigation and prosecution, in accordance with international standards, of all allegations of ill treatment or excessive use of force by law enforcement personnel, including through the establishment and empowerment of its Independent Commission of Investigations, and provide sufficient compensation to the victims or their families ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Fully respect the spirit and letter of the 2013 Constitution, and ratify the Convention against Torture", - "values": [ - "4 - General action" - ] - }, - { - "text": "Pursue efforts to ensure fairness in education, in particular the right to basic education for students with disabilities", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Strengthen the protection of women\u2019s rights in accordance with the Protection of Women from Domestic Violence Act and other relevant laws", - "values": [ - "4 - General action" - ] - }, - { - "text": "Intensify its efforts to combat human trafficking ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Fully respect its obligations under international law by guaranteeing the right to seek asylum through an individual, effective process without discrimination", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Establish specialized services to meet the needs of children with disabilities ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Take further steps to prevent mistreatment of prisoners including through greater compliance with the United Nations Minimum Standards for the Treatment of Prisoners ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Accede to the Rome Statute of the International Criminal Court and to the Agreement of Privileges and Immunities of the Court", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Take all appropriate measures to eliminate all forms of slavery and ensure that perpetrators of such practices are systematically brought to justice ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Continue to implement policies for the development of its people under the Sustainable Development Goals, including measures taken for equal opportunities for women's participation in the economic development of the country", - "values": [ - "4 - General action" - ] - }, - { - "text": "Decriminalize consensual sexual relations between adults of the same sex ", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Take the necessary measures to ensure that the National Health Insurance Scheme is financially sustainable for the promotion of basic health care", - "values": [ - "4 - General action" - ] - }, - { - "text": "Sign and ratify the International Convention for the Protection of All Persons from Enforced Disappearance CED. ", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Continue strengthening the implementation of public policies associated with combating discrimination in hiring practices", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Enact the legislation to ensure the Right to Information and bring it in line with international human rights standards", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Adopt measures aimed at strengthening the work of the Council of National Minorities so as to address the situation of particularly vulnerable racial and ethnic groups ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Decriminalize press offenses, and to create an action plan aimed at greater media freedom and plurality of media", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Ensure prompt, impartial and timely investigation of all police abuses in order to bring perpetrators to justice and put an end to impunity and the lack of accountability for police abuses ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Strengthen measures against trafficking in persons by effectively implementing the Trafficking in Persons Prohibition Act, and investigating, prosecuting and punishing those responsible, as well as ensuring respect for victims' right to asylum", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Ratify the International Convention for the Protection of All Persons from Enforced Disappearance, and at the same time, make declarations stipulated in articles 31 and 32 of this instrument ", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Enforce the Human Trafficking Act and the Immigration Amendment Act and allocate sufficient resources to combat trafficking in persons", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Establish strategies across all sectors, in particular health, education and justice, to identify and remedy structural discrimination ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Improve the conditions of detention within prisons, access to health and the respect for the most elementary rights of detainees", - "values": [ - "4 - General action" - ] - }, - { - "text": "Review the compatibility of its legislative framework to combat terrorism with its international obligations in the field of human rights and remedy any possible gaps ", - "values": [ - "3 - Considering action" - ] - }, - { - "text": "End the State of Emergency as soon as possible", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Renew its efforts to protect vulnerable groups, particularly persons with disabilities, women and children", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Continue its efforts in implementing the national strategic plan for development which will strengthen the economic, social and cultural rights, particularly by eliminating poverty and attaining education and access to health services", - "values": [ - "4 - General action" - ] - }, - { - "text": "Recommended that the mechanisms for supervising procedures be established or strengthened, including the procedure for recognition of the status of refugees and deportation of foreigners, with a view to ensuring the right to a hearing and thus close the door to possible abuses and complying with the principle of non-refoulement.", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Take measures to ensure participation of women in politics, including through affirmative action and quota requirements", - "values": [ - "4 - General action" - ] - }, - { - "text": "Intensify even further its efforts undertaken in regard to initiatives and awareness-raising programmes on gender equality and the protection of LGBT rights ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Ratify the International Labour Organization Convention No. 169 (1989) concerning Indigenous and Tribal Peoples in Independent Countries ", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Improve the possibilities of benefitting from healthcare services", - "values": [ - "4 - General action" - ] - }, - { - "text": "Bhutan recognizes the need for a comprehensive Social Security Policy and is committed to taking incremental steps towards realizing this goal.", - "values": [ - "4 - General action" - ] - }, - { - "text": "Continue to intensify its efforts to combating poverty", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Decriminalize abortion, and ensure that girls and women are not subject to reprisals for seeking an abortion under any circumstances ", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Recommended considering establishing a legal framework for the protection of refugees and applicants for asylum, as well as becoming a State party to the related instruments", - "values": [ - "3 - Considering action" - ] - }, - { - "text": "Continue its efforts to improve the situation of children in different aspects ", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Continue to take measures to protect the rights of children, women and refugees", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Take steps to implement a juvenile justice system, and introduce training programmes for all personnel involved in working with children in jail ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Uphold full freedom of expression, via the internet and other forms of media, including by allowing access to social networking and other blocked sites and by ensuring that national and foreign journalists can operate without fear of harassment ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Sri Lanka will continue its active and constructive dialogue and cooperation with the Office of the High Commissioner for Human Rights to strengthen national mechanisms in all aspects.", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Strengthen legal frameworks to effectively eliminate violence against women", - "values": [ - "4 - General action" - ] - }, - { - "text": "Ensure, through effective measures and consultations, that contested children in a marital dispute have the possibility of maintaining consistent contact with the foreign parent living abroad", - "values": [ - "4 - General action" - ] - }, - { - "text": "Take measures to effectively implement the prohibition of discrimination enshrined in the Anti-Discrimination Act ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Continue and strengthen efforts to prevent and eliminate child marriage", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Decriminalize consensual same-sex sexual acts", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Continue its cooperation with OHCHR", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Seek technical assistance from the United Nations Children's Fund (UNICEF), the International Labour Organization and other relevant organizations in order to combat the spread of diseases, such as HIV/AIDS and malaria, and to allocate more financial resources to decrease the high rates of maternal and infant mortality ", - "values": [ - "1 - Minimal action" - ] - }, - { - "text": "Withdraw its reservations to the Convention on the Elimination of All Forms of Discrimination against Women and adopt constitutional and legal reforms in conformity with the principles of the Convention, with a view to eliminating all forms of discrimination against women and girl children, which remain in education, employment, the family and political life ", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Cooperate fully with the Court, including by assisting its proceedings and complying with its rulings", - "values": [ - "4 - General action" - ] - }, - { - "text": "Continue to modernize its birth registration system and improve access to remote locations, and step up efforts to ensure free and universal birth registration", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Take steps to address and eliminate gender-based violence", - "values": [ - "4 - General action" - ] - }, - { - "text": "Take concrete measures to eliminate the worst forms of child labour and revise the decree on labour inspections in order to take into account the possibility of allowing labour inspectors to inspect working conditions for children in the informal sector", - "values": [ - "4 - General action" - ] - }, - { - "text": "Take immediate measures in order to comply fully with the Optional Protocol to the Convention on the Rights of the Child on the involvement of children in armed conflict and implement the Action Plan to end the recruitment and use of children, signed with the United Nations in 2011", - "values": [ - "4 - General action" - ] - }, - { - "text": "Invest more in the achievement of the MDGs to increase the quality of life and enjoyment of all human rights, particularly cultural, economic and social rights of all Cape Verdeans", - "values": [ - "4 - General action" - ] - }, - { - "text": "Address serious problems associated with pursuing perpetrators of child pornography and other forms of sexual exploitation and sexual abuse of children and providing assistance for and protection of victims and witnesses", - "values": [ - "4 - General action" - ] - }, - { - "text": "Ratify the Kampala amendments to the Rome Statute of the International Criminal Court as soon as possible", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Create incentives for the voluntary return of Sudanese nationals who left the country due to the situation of internal violence, including displaced persons, refugees and migrants. Generate and implement Government programmes enabling the economic and social reintegration of these people, especially those in vulnerable situation ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Give special attention to the prevention of domestic violence against women and children ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Consider prioritizing measures to mitigate the impacts of the economic crisis", - "values": [ - "3 - Considering action" - ] - }, - { - "text": "Establish a judicial commission of inquiry for cases of enforced disappearances and torture carried out against members of the armed and police forces who were opposed to the military junta after the attempted coup d'état in April 2012", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Further develop policies aiming for inclusive education and access to work for people with disabilities", - "values": [ - "4 - General action" - ] - }, - { - "text": "Enact laws that protect adequately the rights and the well-being of separated and unaccompanied minors seeking asylum, in conformity with standards established under international laws ", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Abolish capital punishment, and as an interim measure, introduce a moratorium on the death penalty", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Take further steps to address discrimination against vulnerable groups", - "values": [ - "4 - General action" - ] - }, - { - "text": "Issue an invitation to the Special Rapporteur on violence against women, its causes and consequences ", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Consider the possibility of acceding to those international instruments it is not yet a party to, through the committee of the Human Rights Commission tasked to examine the compatibility of laws with international conventions and human rights treaties ", - "values": [ - "3 - Considering action" - ] - }, - { - "text": "Continue its efforts to build capacity in the field of gender-based violence within the police and other authorities and that the United Nations Security Council resolution 1325 agenda is included in such capacity-building efforts ", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Consider ratifying the International Convention on the Protection of All Persons from Enforced Disappearance", - "values": [ - "3 - Considering action" - ] - }, - { - "text": "Improve its security situation and take necessary steps to enhance greater dialogue between and among various religious groups in the country", - "values": [ - "4 - General action" - ] - }, - { - "text": "Consider ratifying the International Convention for the Protection of the Rights of All Migrant Workers and Members of Their Families.", - "values": [ - "3 - Considering action" - ] - }, - { - "text": "Take all steps to strengthen and ensure the independence of the National Human Rights Commission", - "values": [ - "4 - General action" - ] - }, - { - "text": "Submit to scrutiny the regulations governing the use of Teaser weapons with a view to adopting legislation that would explicitly place them in the category of weapons and prescribe more rigorous procedures for their possession and use", - "values": [ - "4 - General action" - ] - }, - { - "text": "Establish effective vetting procedures to ensure that the Somali national armed forces and police do not include persons under the age of 18", - "values": [ - "4 - General action" - ] - }, - { - "text": "Take further steps to adopt special and concrete measures to ensure the adequate development and protection of the Sami people ", - "values": [ - "4 - General action" - ] - }, - { - "text": "That the temporary Government draw upon the expertise of the Office for Democratic Institutions and Human Rights and the High Commissioner on National Minorities of the Organization for Security and Cooperation in Europe, and the Venice Commission of the Council of Europe with regard to the constitutional reform and rapid democratic elections ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Continue the efforts on the progress towards the abolishment of the death penalty, based on the Department of Justice's review of how it is being applied in the country", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Review its national legislation so as to repeal all laws giving rise to discrimination against women and girls, with the aim of bringing the domestic system into line with the commitments made at the international level ", - "values": [ - "3 - Considering action" - ] - }, - { - "text": "Promoting the values of integrity, transparency and efficiency in the management of public affairs", - "values": [ - "4 - General action" - ] - }, - { - "text": "Make the changes necessary to the national legislation so that no crime shall be punished with the death penalty and ratify the Second Optional Protocol to ICCPR", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Take further measures to ensure equitable and sustainable poverty reduction giving particular attention to vulnerable groups, especially in rural areas ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Take measures to ratify ILO Conventions 111 and 189 and to amend the labour legislation so that it also apply to foreign domestic workers and ensure that such workers are entitled to adequate wages, decent working conditions, benefits and access to complaint and redress mechanisms", - "values": [ - "4 - General action" - ] - }, - { - "text": "Continue the policy incorporating inmates to education and job training at different educational levels ", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Consider the accession to the Convention on the Rights of Persons with Disabilities ", - "values": [ - "3 - Considering action" - ] - }, - { - "text": "Work on setting up a national mechanism for the reporting and the follow up in the framework of the international human rights instruments", - "values": [ - "4 - General action" - ] - }, - { - "text": "Continue Malaysia's commitment to provide equal access to health services and education", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Ensure adequate human rights protection for the migrant populations residing or transiting through its borders", - "values": [ - "4 - General action" - ] - }, - { - "text": "Adopt measures that all cases of violence against women, including sorcery-related and sexual violence are duly investigated and the perpetrators prosecuted and punished, and to ensure a wide availability of assistance and protection programs for the victims ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Grant Palestinian refugees the freedom of movement and in particular facilitate the free entry into and exit from Nahr el Bared camp", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Implement without delay all the recommendations formulated by the National Commission of Enquiry, established on 2 April 2008, and provide all necessary information on the whereabouts of a former opposition leader.", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Establish an inter-institutional mechanism with broad civil society representation to follow up on the outcomes of the review", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Strengthen the Government response to incidents of violence against members of minority religious groups ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Pursue efforts regarding the fight against extreme poverty", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Address social and cultural stereotypes underpinning discrimination and violence against women and ensure women\u2019s participation in decision-making", - "values": [ - "4 - General action" - ] - }, - { - "text": "Make progress in providing gender equality that is inclusive and explicitly rejects historical discrimination ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Intensify efforts to enhance the participation of women in socio-economic activities ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Ratify the International Convention on the Elimination of All Forms of Racial Discrimination, signed in 2015 ", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Amend the law on public association and mass gathering as well as media legislation to comply with international standards, including by decriminalizing defamation", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Adopt the law on child marriages", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Adopt specific measures at the legislative and policy levels to ensure the full inclusion of children from minorities, asylum seekers and migrant backgrounds, and boys and girls with disabilities, in its educational system", - "values": [ - "4 - General action" - ] - }, - { - "text": "Continue efforts to combat all forms of racial discrimination, xenophobia and racism, in particular with respect to refugees, asylum seekers and migrants", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Continue its efforts aimed at ensuring the compatibility of popular initiatives with international human rights standards and fundamental rights contained in the Constitution", - "values": [ - "4 - General action" - ] - }, - { - "text": "Continue making efforts to take effective measures for the promotion and protection of women's and children's rights, including improvements with regard to the issues of bride-kidnapping, domestic violence, child abuse and the sale of children ", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Enhance the promotion and protection of fundamental human rights in accordance with the level of socio-economic development of the country in keeping with international human rights instruments", - "values": [ - "4 - General action" - ] - }, - { - "text": "Urgently adopt of the law on family protection, which is currently under discussion in the Congress, with a view to improving the protection and prevention against domestic violence, as well as the compensation and assistance to the victims ", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Introduce a moratorium on the death penalty with a view to ending its application", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Step up efforts to ensure substantial improvement in its penal institutions, specifically prohibiting forced labour, and also to establish detention centres for minors", - "values": [ - "4 - General action" - ] - }, - { - "text": "Fully implement the strategy for growth and development of Malawi", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Further implement actions to fight against trafficking in human beings", - "values": [ - "4 - General action" - ] - }, - { - "text": "Continue in its efforts to ensure an inclusive education system, particularly with respect to students with special educational needs and for those students most in need of financial assistance", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Abolish the death penalty and ratify the Second Optional Protocol to the International Covenant on Civil and Political Rights", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Move forward with constitutional reform, giving all peoples the equal right to run for elected office and the equal right to participation in the political system", - "values": [ - "4 - General action" - ] - }, - { - "text": "Pay special attention to the preparation, implementation and evaluation of the pilot project for the repatriation of a number of Roma, originally from Serbia, currently living in camps located in central and southern Italy, in order to facilitate the most appropriate remedies for the Roma population in a dignified and efficient manner", - "values": [ - "4 - General action" - ] - }, - { - "text": "Effectively implement the Gender Equality Act of 2015", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Improve access to medical, psychosocial and mental health services for all persons in detention, especially for those belonging to vulnerable groups", - "values": [ - "4 - General action" - ] - }, - { - "text": "Enhance ongoing efforts regarding human rights education and training for all public officials", - "values": [ - "4 - General action" - ] - }, - { - "text": "Expressly prohibit all corporal punishment of children in all settings, including at school and at home", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Step up its efforts to bring an end to all forms of child labour", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Respond favourably to requests for visits from Special Rapporteurs which have not yet been answered ", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Finalize the process of ratification of the Rome Statute of the International Criminal Court", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Continue its close cooperation with the various Committees of the Council of Europe dedicated to the protection of human rights and the fight against torture ", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Ratify the second optional protocol to ICCPR and abolish the death penalty for all crimes", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Continue to strengthen its human rights institutions and develop further measures to ensure the effective implementation of their mandates ", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Ensure the full independence of the judiciary", - "values": [ - "4 - General action" - ] - }, - { - "text": "Remove the article of the Penal Code criminalizing sexual conduct, which is not in compliance with the Universal Declaration of Human Rights ", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Further promote the human rights of mothers and children ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Make efforts to abolish the death penalty and to ratify ICCPR-OP 2.", - "values": [ - "4 - General action" - ] - }, - { - "text": "Step up its efforts to curb the occurrence of domestic violence", - "values": [ - "4 - General action" - ] - }, - { - "text": "Ensure transparent management of oil, gas and mineral revenues to meet the social and economic rights of people living in Cambodia by adopting international best practice, in particular implementation of the Extractive Industries Transparency Initiative ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Continue its efforts to achieve balance between its counterterrorism strategies and the need to forestall the spread of xenophobia ", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Ratify the Convention against Torture.", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Strengthen human rights education programmes and training for all civil servants, particularly for law enforcement and immigration officers, and combat impunity concerning abuses against defenceless persons", - "values": [ - "4 - General action" - ] - }, - { - "text": "Ratify CAT ", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Continue further efforts to foster the principle of tolerance among various segments of the Iraqi society", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Increase the right to education by in-service training of teachers and the expansion of high quality education to include the entire country", - "values": [ - "4 - General action" - ] - }, - { - "text": "Forcefully denounce attacks against human rights defenders, and to ensure State authorities give human rights defenders legitimacy and recognition through supportive statements", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Take up the commitment to address, in a framework of shared but differentiated responsibility and along with the international community, the world problem of climate change and its negative impact", - "values": [ - "4 - General action" - ] - }, - { - "text": "Focus further on training for magistrates and law-enforcement officers regarding trafficking in persons", - "values": [ - "4 - General action" - ] - }, - { - "text": "Make progress towards the ratification of pending human rights international instruments, including the Convention on the Rights of Persons with Disabilities", - "values": [ - "4 - General action" - ] - }, - { - "text": "Continue dialogue with civil society in the follow-up to and implementation of the review, and establish a standing forum to facilitate such dialogue and enable greater mutual understanding.", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Ensure free legal assistance for underprivileged citizens ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Give particular attention to the effective participation of minorities in the decision-taking process, offering equal economic and social opportunities, and to create practices and institutions to ensure that the ethnic, linguistic and religious diversity of the country can be fully integrated", - "values": [ - "4 - General action" - ] - }, - { - "text": "Continue to combat transnational crime, strengthening the cooperation in this area, in particular with States in the region", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Take all appropriate measures, including the revision of legislation, the initiation of a comprehensive study on child abuse, ill treatment and domestic violence, to prevent and combat ill treatment within, inter alia, the family and institutions, as well as the sexual abuse of children", - "values": [ - "4 - General action" - ] - }, - { - "text": "Adopt and implement necessary legislative and administrative measures to promote the effective participation of women in the public and political life of the country", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Further explore better ways to address the devolvement of hitherto less developed regions ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Pursue efforts initiated to limit the flow of migration, especially of unaccompanied children, and continue implementing the legislative framework to achieve a quality education for children", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Incorporate the international instruments that Nigeria has ratified in its national legislation", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Continue to take measures to allow the improvement of the education system and universal access to a quality education ", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Harmonize domestic law regarding the minimum age of criminal responsibility, and raise it", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Raise the age of criminal responsibility in order to bring it into line with international standards", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Eliminate all forms of cruel, inhuman or degrading treatments, particularly judicial beatings that should immediately be subjected to a moratorium", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Take immediate action to allow journalists, political activists and human rights defenders, including those critical of the Government, to exercise their right to freedom of expression and opinion without threats and harassment, and urgently investigate all reports of human rights abuses, and ensure that those responsible are held accountable ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Sign and ratify the Optional Protocol to the CRC on a communications procedure ", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Adopt appropriate legislative measures to prevent any form of discrimination against women", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Take further steps to ratify CEDAW", - "values": [ - "4 - General action" - ] - }, - { - "text": "Make more efforts to, pass additional legislation and carry out awareness-raising and counselling to eliminate the consequences of racial discrimination in all its forms ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Address the issue of poor conditions in prison and detention centres in particular by ensuring the separation of juvenile offenders from adult inmates", - "values": [ - "4 - General action" - ] - }, - { - "text": "Georgia is committed to constructive cooperation with the Human Rights Council and will submit, on a voluntary basis, a midterm report on follow-up to accepted UPR recommendations, in accordance with the Human Rights Council resolution A/HRC/16/L.39.", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Continue to take steps to ensure the rights of LGBT persons, women, ethnic minorities, and persons with disabilities are protected, including through implementation of the four new anti-discrimination acts that entered into force in January 2014 ", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Ratify ICCPR-OP2 without reservations aiming at the abolition of the death penalty ", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Intensify its efforts to provide protection to asylum-seekers and refugees, including through the timely provision of documentation as to their legal status and rights ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Continue to take measures to ensure equal rates of school enrolment for girls and women at all levels and to overcome obstacles to education of girls and women ", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Raise public awareness and adopt legislation to combat domestic violence ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Continue to strengthen its social assistance and job creation programmes and policies, which are essential to combat poverty and social inequality, in particular in the rural areas of the country", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Strengthen the system for the protection of persons at risk, notably women and children", - "values": [ - "4 - General action" - ] - }, - { - "text": "Abolish the death penalty and ensure that fair trial guarantees are properly implemented", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Allocate greater resources to combat sexual violence and to prosecute perpetrators", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Implement the recommendations of this universal periodic review session with the involvement of civil society and non-governmental organizations ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Reform the 2009 Press and Publications Act ", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "The Kingdom of Morocco takes this opportunity to reiterate its pledges to ensure greater recognition and protection of human rights, thereby enhancing the promotion of human rights within the country, and undertakes to continue and intensify its frank and constructive dialogue at the international level, inter alia with the United Nations human rights bodies.", - "values": [ - "4 - General action" - ] - }, - { - "text": "Completely abolish the death penalty in the Criminal Code for all crimes, including in times of war", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Continue applying strategies and socio-economic development plans in the country", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Comply with international human rights law and international humanitarian law by immediately ceasing its excessive, indiscriminate and disproportionate attacks on civilians", - "values": [ - "4 - General action" - ] - }, - { - "text": "Ratify CRPD and its Optional Protocol ", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Continue facilitating positive activities by youth associations, including voluntary work ", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Take measures to criminalize incitement to hatred based on religion and faith", - "values": [ - "4 - General action" - ] - }, - { - "text": "Take effective measures to end the practice of early, forced and child marriage, including by setting a minimum marriage age of 18 years for both genders ", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Extend invitations and provide access to UN special procedures mandate holders, including the Special Rapporteur on the independence of judges and lawyers, and the Special Rapporteur on torture and other cruel, inhuman or degrading treatment or punishment, in order to help Burundi identify and address human rights challenges", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Ensure maximum attention to the protection and enjoyment of equal rights for the lesbian, gay, bisexual, transgender and intersex population", - "values": [ - "4 - General action" - ] - }, - { - "text": "Continue its educational and awareness raising work to promote human rights, train law enforcement officials and judges in human rights issues, improve the penal code and reform the judicial system, and take measures to combat corruption ", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Adopt Government policies and legislations to address the pay gap between men and women ", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Continue and deepen efforts already under way to promote full enjoyment of the right to health for all \n\n", - "values": [ - "4 - General action" - ] - }, - { - "text": "Implement the reforms needed to bring its legislative framework and practices into line with international norms and standards on freedom of the press and freedom of expression ", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Investigate and prosecute in courts the perpetrators of selective killings through the use of drones, which has cost the lives of innocent civilians outside the United States", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Pursue efforts to promote a culture of law and transform Lao society into a society ruled by equity and justice ", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Further develop cooperation with the relevant United Nations bodies and be ready to support the country's efforts in all aspects ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Adopt a comprehensive anti-discrimination legislation that would include also a definition of direct and indirect discrimination and a comprehensive list of grounds for discrimination", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Consider issuing standing invitation to all special procedures of the Human Rights Council", - "values": [ - "3 - Considering action" - ] - }, - { - "text": "Repeal all provisions that criminalize same-sex conduct", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Set up a system for receiving and investigating torture or ill-treatment complaints and suspend from duty suspects of torture, as well as amend its legislation and the definition of torture at the State level in accordance with the United Nations Convention against Torture", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Accede to the International Convention on the Protection of the Rights of All Migrants Workers and Members of Their Families. ", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Modify relevant legislation - in particular, remove provisions of the Criminal Code on the prosecution of journalists for libel ", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Adopt and implement appropriate, efficient policy to address the sexual exploitation of children", - "values": [ - "4 - General action" - ] - }, - { - "text": "Develop a National Policy on Disability with the assistance of Pacific Islands Forum Secretariat and regional partners, to enhance the development of a National Disability Policy", - "values": [ - "4 - General action" - ] - }, - { - "text": "Continue with its efforts to improve the welfare services support and social integration of persons with mental illness", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Call for international technical assistance, in particular from the High Commissioner for Human Rights, and explore the possibility of benefiting from the experience of countries that have succeeded in reforms to improve the functioning of justice ", - "values": [ - "1 - Minimal action" - ] - }, - { - "text": "Adhere to the Rome Statute ", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Consider establishing an independent national human rights institution that could advise the Government and receive and investigate complaints by the public.", - "values": [ - "3 - Considering action" - ] - }, - { - "text": "Envisage specific training or awareness campaigns to inform the victims of domestic violence of their rights.", - "values": [ - "3 - Considering action" - ] - }, - { - "text": "Include women in decision-making about maternal health, including in decisions on the design of local health care mechanisms, in a bid to strengthen its efforts to reduce maternal mortality.", - "values": [ - "4 - General action" - ] - }, - { - "text": "Prevent candidates from promoting racial discrimination", - "values": [ - "4 - General action" - ] - }, - { - "text": "Establishment of compulsory health insurance and a medical care fund", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Increase efforts to criminally prosecute trafficking offenders, including employers and labour recruiters who subject migrant workers to debt bondage and involuntary servitude ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Continue its ongoing cooperation with neighbouring countries to combat the illicit drug trade ", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Prioritize an education agenda", - "values": [ - "4 - General action" - ] - }, - { - "text": "Continue efforts to accede to the international human rights treaties", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Step up efforts in order to ensure the right of access to health for all", - "values": [ - "4 - General action" - ] - }, - { - "text": "Continue to make every effort to ensure that its national legislation is in line with international instruments ", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Ensure that thorough investigations of allegations of acts of violence committed against individuals because of their sexual orientation or identity are promptly conducted ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Set up a national human rights institution accredited by the International Criminal Court", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Request the support of United Nations programmes and agencies to establish programmes and strategies for literacy and employment training in for women in order to improve their conditions and their participation in the development of the country.", - "values": [ - "1 - Minimal action" - ] - }, - { - "text": "Allocate more resources to support the on-going reform process aimed at consolidating democracy and the rule of law ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Better resource the Office of the Ombudsman and the national human rights commission, including pressing ahead with increasing the presence of the Ombudsman outside the capital with offices in the north, south, east and west of the country", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Incorporate into internal legislation a definition of trafficking in line with the Palermo Protocol", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Continue to develop actions to improve the right to food of the whole population, including through the implementation of the National Program of Food and Nutritional Security", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Guyana voluntarily commits to consider this [Ratify ILO Convention No. 169] and report in one year's time to the UNHRC and the ILO.", - "values": [ - "3 - Considering action" - ] - }, - { - "text": "Pursue and reinforce judicial reforms initiated and improve access to justice in all its territory, with a view to consolidating the independence and efficiency of the judicial system", - "values": [ - "4 - General action" - ] - }, - { - "text": "Consider ratifying the Domestic Workers Convention, 2011 (No. 189)", - "values": [ - "3 - Considering action" - ] - }, - { - "text": "Continue efforts to ensure that all children are registered immediately after birth and that birth registration and the issuance of birth certificates are provided free of charge", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Continue its efforts to improve the penitentiary system and health services and offer greater protection to children, in particular those who are the victims of trafficking in persons ", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Ratify ILO Convention No. 189 on domestic workers as well as enact the Domestic Workers' Bill ", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Ensure that journalists are not harassed or intimidated ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Take every useful measure to investigate human rights violations committed by the police, in particular extrajudicial killings, in order to bring to justice the perpetrators of such acts and ensure the effective protection of human rights defenders and witnesses ", - "values": [ - "4 - General action" - ] - }, - { - "text": "In the area of women's rights, promotion of democratic governance with equal opportunities for men and women, promoting a life free of violence, through the adoption of measures to prevent, eradicate, criminalize and punish violence against women, implementation of public policies and cross-cutting programmes, and the promotion of legislation to eliminate violence against women and children, development of laws and public policies to prevent and eradicate abuse, harassment and sexual exploitation of women and children, promotion of a gender perspective in the education system and in the implementation of social policies in the formal and non-formal education system, eradication of illiteracy, training of public and judicial officials, and in the criminal process of cases of domestic violence and sexual crimes against women and children", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Ratify the Rome Statute of the International Criminal Court, and the Convention on the Prevention and Punishment of the Crime of Genocide ", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Ensure that the rights of detainees sentenced to death be duly respected", - "values": [ - "4 - General action" - ] - }, - { - "text": "Ratify the Rome Statute of the International Criminal Court and ensure that it is able to meet obligations to cooperate with the Court under that Statute", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Launch a constitutional reform process to better recognize and protect the rights of the Aboriginals and Torres Strait Islanders which would include a framework covering the principles and objectives of the United Nations Declaration on the Rights of Indigenous Peoples and would take into account the opinions and contributions of indigenous peoples ", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Consider identifying a priority list of issues and areas of requirements needed in the field of technical assistance and capacity-building and to approach the relevant partners at the multilateral or bilateral levels ", - "values": [ - "3 - Considering action" - ] - }, - { - "text": "Strengthen the process for ensuring independent and timely investigation mechanisms to address and eliminate corruption, and provide for and facilitate increased accountability and transparency in this process", - "values": [ - "4 - General action" - ] - }, - { - "text": "Establish the necessary conditions to register boys and girls at birth, including ensuring free birth certificates", - "values": [ - "4 - General action" - ] - }, - { - "text": "Take all measures necessary to combat impunity and bring to justice those responsible for or involved in serious human rights violations, and in particular acts of sexual violence against women and girls ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Refrain from lowering the age of criminal responsibility in line with commitments under the Convention of the Rights of the Child", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Decriminalize defamation to ensure that journalists are able to practise in a free and safe environment, investigate all attacks on journalists", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Consider the establishment of a national human rights institution in accordance with the Paris Principles", - "values": [ - "3 - Considering action" - ] - }, - { - "text": "Guarantee the right to social security of the population, especially of groups in vulnerable situations such as children and people with disabilities", - "values": [ - "4 - General action" - ] - }, - { - "text": "Create a judicial commission to investigate violations and abuses of human rights committed in the North of the country", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Take necessary measures to avoid the stigmatization of migrants and minorities, and to ensure that they are not subject to any practice of racism, racial discrimination, xenophobia and other forms of related intolerance ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Strengthen efforts to raise awareness on human rights to all members of the society", - "values": [ - "4 - General action" - ] - }, - { - "text": "Consider specific measures to strengthen secondary school retention ", - "values": [ - "3 - Considering action" - ] - }, - { - "text": "Develop an administration of justice policy that would address principles of access to justice and public interest education, and take reform measures to address corruption, in particular within the judicial system ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Work actively with international organizations that provide technical assistance to strengthen the protection of human rights", - "values": [ - "1 - Minimal action" - ] - }, - { - "text": "Continue efforts for the strengthening of equality between men and women, combating trafficking in human beings and the protection of the rights of national minorities", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Pursue its efforts to combat discrimination against Roma ", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Give a positive response to requests for visits made by the special procedures", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Ensure closure of secret and illegal jails and review conditions in all prison and detention facilities with the aim of ensuring their compliance with the Minimum Standard of Treatment of Prisoners and provide effective procedural safeguards against arbitrary detention.", - "values": [ - "4 - General action" - ] - }, - { - "text": "Amend or, at least, abstain from applying any law or measure which might endanger the right to life, to freedom and to physical integrity of individuals for reasons associated with their alleged or perceived sexual orientation or gender identity", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Lift existing restrictions on freedom of expression, and guarantee the free activity of civil society and human rights organizations ", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Take concrete measures to align Zimbabwe's domestic laws, including customary laws with international human rights instruments that it is party to, to ensure harmonization with the protections guaranteed in the Constitution ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Fully prohibit and criminalize female genital mutilation, as it represents a clear human rights violation ", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Ensure adequate budget allocation to the prevention of sexual and gender-based violence", - "values": [ - "4 - General action" - ] - }, - { - "text": "Amend the Penal Code to broaden the definition of rape by including a range of sexual acts, including marital rape, and by making the offence gender-neutral", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Take the measures necessary to bring its national legislations into conformity with its international obligations under the CEDAW and the CRC ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Abolish the death penalty from its penal system in compliance with calls made by various international and regional organs in this regard, such as the Inter-American Commission on Human Rights, and to ratify the Second Optional Protocol to ICCPR ", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Consider the recommendation of UNHCR to review legal provisions of the proposed amendments on detention to ensure that asylum seekers, including adolescents and children, and families with children are not detained", - "values": [ - "3 - Considering action" - ] - }, - { - "text": "Take all necessary measures to ensure that Law No. 82/2013, punishing acts of violence against women, is quickly followed by an implementing regulation, and that protocols are developed to guarantee its proper enforcement", - "values": [ - "4 - General action" - ] - }, - { - "text": "Take measures in law and in practice to decrease child labour, most notably regarding hazardous work", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Increase the financial resources allocated to bodies in charge of fighting drugs, alcoholism and drug dependence, in order to curb crime and violence in society", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Take all the necessary measures to effectively eliminate and prevent all forms of exploitations and abuse of children, including through prosecution of those involved in such acts ", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Introduce further measures to sustain and reinforce progress made in poverty reduction", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Sign and ratify the Convention on the Elimination of All Forms of Discrimination against Women (CEDAW) and incorporate its provisions into domestic law ", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Align national laws and regulations on freedom of expression with international human rights standards", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Establish an independent national human rights institution that conforms to the Paris Principles", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "End the sponsorship system for migrant domestic workers", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Further expand human rights education and training programmes in the country", - "values": [ - "4 - General action" - ] - }, - { - "text": "Continue its efforts to promote and protect the rights of persons with disabilities, and share its experiences in this regard. ", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Strengthen efforts for the protection of the rights of unaccompanied and separated children seeking asylum ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Continue to take measures to guarantee universal access to primary health care, particularly maternal and child care services ", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Incorporate, in accordance with the Committee's recommendation, the Convention against Torture into the domestic law ", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Ratify the Second Optional Protocol to the International Covenant on Civil and Political Rights, aiming at the abolition of the death penalty (ICCPR-OP 2)", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Establish and strengthen mechanisms that provide support for victims of violence against women and girls, and ensure that they are effectively protected from all forms of violence", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Accelerate steps towards framing a new Constitution", - "values": [ - "4 - General action" - ] - }, - { - "text": "Strengthen data collection and maintain disaggregated data to better understand the scale and severity of hate crimes towards women, immigrants, religious minorities, persons with disabilities, and children ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Investigate all complaints of torture and other ill-treatment, extrajudicial killings, and sexual violence committed by the security forces and bring those responsible to justice", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Promote and support the participation of women in decision-making at all levels", - "values": [ - "4 - General action" - ] - }, - { - "text": "Undertake the necessary steps to ensure that the national Human Rights Commission operates in accordance with the Paris Principles, particularly in terms of its financial independence and with sufficient human and material resources to enable it to effectively exercise its mandate", - "values": [ - "4 - General action" - ] - }, - { - "text": "Adopt measures to restrict the use of stereotypes towards minorities in the media and to promote the use of minority languages in the mass media and the press", - "values": [ - "4 - General action" - ] - }, - { - "text": "Continue its efforts to consolidate rule of law and good governance through reforms in the administration of justice and improvements in the quality of public service", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "The delegation reiterated the commitment of Cameroon to continue implementing the recommendations accepted in 2009 and those to be agreed upon at the end of the present review", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Bring the functioning of the Fiji Human Rights Commission into conformity with the Paris Principles", - "values": [ - "4 - General action" - ] - }, - { - "text": "Organize and hold free, democratic and transparent parliamentary and presidential elections ", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Ensure that violence directed against political activists, regardless of political affiliation, and human rights defenders will not be tolerated and that perpetrators will be held accountable in accordance with the law", - "values": [ - "4 - General action" - ] - }, - { - "text": "Provide public information on how many detention camps the police and military have in fact set up and how many persons are detained therein.", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Reinforce measures to prevent trafficking in human beings, provide effective support and redress to victims, investigate and prosecute offenders", - "values": [ - "4 - General action" - ] - }, - { - "text": "Acknowledge the existence of human rights violations, including those in facilities which it describes as "reform through labour camps", and provide international humanitarian organisations with immediate access to these facilities and their victims, dismantle all camps and release all political prisoners, and clarify with full detail the fate of any disappeared persons who cannot be readily traced", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Continue taking temporary measures for granting citizenship to children of Bahraini women married to non-Bahrainis until the draft law amending the Nationality Law comes into effect ", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Consider accepting the recommendation of the Committee on the Elimination of Racial Discrimination to study ways and means of assessing the extent to which complaints for racially motivated crimes are addressed in an appropriate manner within the criminal justice system.", - "values": [ - "3 - Considering action" - ] - }, - { - "text": "Continue, as matter of priority, efforts to prohibit corporal punishment, of children as well as of adults, and to allocate necessary resources to allow the full implementation of the Convention on the Rights of the Child.", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Continue efforts for the realization of sustainable economic development and poverty reduction", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Take measures to end the practice of impunity for human rights crimes committed by general infantrymen stationed in the country", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Continue its efforts in the fight against hunger, in order to achieve food security and ensure that all people, at all times, have physical, social and economic access to sufficient, safe and nutritious food that meets their dietary needs and food preferences for an active and healthy life", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Sign and ratify the Optional Protocol to ICESCR - the Optional Protocol to ICCPR - the Optional Protocol to CEDAW - and the Optional Protocol to CAT - and ratify the International Convention for the Protection of All Persons from Enforced Disappearance ", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Accelerate the process for the adoption of the national human rights action plan for Liberia and the adoption of the proposed children's act", - "values": [ - "4 - General action" - ] - }, - { - "text": "Consider ratifying ILO Equal Remuneration Convention", - "values": [ - "3 - Considering action" - ] - }, - { - "text": "Consider adhering to the Convention relating to the Status of Stateless Persons ", - "values": [ - "3 - Considering action" - ] - }, - { - "text": "Sign and ratify OP-CAT and CED ", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Organize public-awareness campaigns regarding HIV/AIDS through the media, and include awareness-raising campaigns in school curricula ", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Consider the possibility of improving the conditions of detention and of reforming its penitentiary system", - "values": [ - "3 - Considering action" - ] - }, - { - "text": "Review the policy of offshore processing of asylum seekers on Nauru and Manus Island and review the implementation of the Migration and Maritime Power Legislation Amendment Bill, making sure that the international obligation of non refoulement is strictly upheld", - "values": [ - "3 - Considering action" - ] - }, - { - "text": "Repeal the Regulation of the Minister of Health N. 1636 on Female Genital Mutilation and officially prohibit the increasing practice of female circumcision and other traditional practices inflicting sufferings on women and girls ", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Cooperate further with the Special Procedures and with all the human rights mechanisms ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Put an end to the practice of torture, criminalize all acts of torture, ensure that all allegations are duly investigated and the perpetrators are prosecuted and punished thereby fully applying the Convention against Torture and its Optional Protocol", - "values": [ - "4 - General action" - ] - }, - { - "text": "Continue the implementation of the strategic plan regarding domestic violence, in particular violence against women and girls", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Ensure accountability within government structures", - "values": [ - "4 - General action" - ] - }, - { - "text": "Consider removing all reservations under the Convention on the Elimination of All Forms of Discrimination against Women and take all necessary measures to ensure full implementation of the provisions of the Convention on the Elimination of All Forms of Discrimination against Women", - "values": [ - "3 - Considering action" - ] - }, - { - "text": "Continue the efforts to fight against all forms of discrimination and to respect the rights of religious minorities ", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Ratify the 1961 Convention on the Reduction of Statelessness, and take appropriate steps to ensure that the human rights of refugees and asylum seekers are fully respected, including with regard to access to health care and social welfare services", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Adopt measures to guarantee equality before the law for women ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Continue efforts aimed at improving the administrative and legal services and the living conditions of irregular migrants and asylum-seekers, especially vulnerable categories, such as women and children ", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Continue with actions aimed at eliminating all forms of violence against women and girls ", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Continue to develop its social protection policy and continuously monitor and evaluate its social cash transfer programme in this regard", - "values": [ - "4 - General action" - ] - }, - { - "text": "Continue to seriously improve the situation of children.", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Strengthen its efforts to promote self-reliance of the returned refugees and IDPs", - "values": [ - "4 - General action" - ] - }, - { - "text": "End the detention of migrants and refugees, in particular children, whether accompanied, unaccompanied or separated", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Provide unlimited access to the International Federation of Red Cross and Red Crescent Societies to all detention facilities and provide independent monitors to access all Eritrean detention facilities, in particular the Djiboutian detainees, and ensure that international standards of law in the treatment of prisoners are respected in Eritrea ", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Examine the possibility of abolishing the death penalty", - "values": [ - "3 - Considering action" - ] - }, - { - "text": "Take appropriate actions to reduce prison overcrowding, including through a reduction in lengthy pretrial detention and alternatives to custodial sentences for minor offences", - "values": [ - "4 - General action" - ] - }, - { - "text": "Consider inviting the United Nations Special Rapporteur for Human Rights Defenders to visit the country in the near future ", - "values": [ - "3 - Considering action" - ] - }, - { - "text": "Keep on its effort on health services policy and promoting the employment of youth", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Implement the recommendations raised by CERD as to how to improve the situation of the indigenous communities ", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "The Government is committed to addressing disability needs in Fiji and developing a more inclusive society.", - "values": [ - "4 - General action" - ] - }, - { - "text": "Adopt measures aimed at reducing poverty in the Batwa community, and its full integration in society ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Protect the rights of people with disabilities ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Take further concrete measures to improve the dangerous situation for street children", - "values": [ - "4 - General action" - ] - }, - { - "text": "Combat racial profiling, as urged by the Human Rights Committee and Committee on the Elimination of Racial Discrimination", - "values": [ - "4 - General action" - ] - }, - { - "text": "Immediately and independently investigate the deaths of all the 88 men and children reported by Amnesty International on 31 August to have died whilst in custody and the thousands of peaceful protestors, including 100 children, reported by the United Nations to have been killed since the protests began in mid-March 2011", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Make further efforts in the fight against all forms of discrimination and intolerance ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Continue its efforts to further improve the living standards of its population, including progress in accessing to basic health services", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Continue its judicial reforms towards a healthy, strong, democratic and efficient juridical system which is necessary as an enabling condition for the promotion and protection of human rights.", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Ensure that all acts violating international human rights and humanitarian law are subject to prompt, independent and impartial investigation, and that suspected perpetrators, including those suspected of ordering these acts, regardless of rank, are brought to justice in proceedings which meet international standards of fairness, and without the imposition of the death penalty", - "values": [ - "4 - General action" - ] - }, - { - "text": "Take steps to ensure that all migrant workers, refugees, and asylum seekers are treated in accordance with international human rights standards and that it sign and ratify the 1951 Convention relating to the Status of Refugees and its 1967 Protocol and adopt and implement refugee protection legislation", - "values": [ - "4 - General action" - ] - }, - { - "text": "Take measures to diversify its economy with a view to reducing its dependence on the export of primary products. ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Continue to further enhance its dialogue with civil society and stakeholders to implement policies and measures for the promotion of the rights of women, children and persons with disabilities, who are socially vulnerable", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Ensure the timely, effective, and impartial investigations of all allegations concerning torture and combat impunity in this regard", - "values": [ - "4 - General action" - ] - }, - { - "text": "Keep running multiple programmes to combat against the domestic violence supported by the Ministry of Health and the Ministry of Women", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Continue positive steps for the promotion and protection of human rights", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Design and implement strategies to tackle sexual and gender-based violence, including addressing related stigma towards victims and survivors, as per the National Human Rights Action Plan, the National Plan of Action for addressing Sexual and Gender-Based Violence and the Declaration on Preventing Sexual Violence in Conflict", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Positively consider ratifying the Rome Statute of the International Criminal Court", - "values": [ - "3 - Considering action" - ] - }, - { - "text": "Develop a comprehensive strategy to combat racial discrimination from a broader perspective, not limited to right wing ideologies, and that takes into account indirect, structural and institutional discrimination. Prohibit policies of ethnic discriminatory profiling by the police ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Continue its good practices in human rights education, and enhance programmes on human rights education for the general public and public officials aimed at combating racism, discrimination and xenophobia", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Increase efforts to provide adequate social housing to members of the Roma minority living in substandard dwellings.", - "values": [ - "4 - General action" - ] - }, - { - "text": "Strengthen efforts to fill the existing gaps and accept the recommendations to draw up and implement a national human rights strategy with the aim of improving the overall human rights situation in the country ", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Ratify and implement the International Convention on the Protection of the Rights of All Migrant Workers and Members of Their Families ", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Consider becoming a party to the human rights instruments it has not yet ratified", - "values": [ - "3 - Considering action" - ] - }, - { - "text": "Invest in the education sector, particularly in rural areas", - "values": [ - "4 - General action" - ] - }, - { - "text": "Sign and ratify the CAT, the Convention on the Rights of Persons with Disabilities and the Convention for the Protection of All Persons from Enforced Disappearance ", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Ensure safe and unhindered access for all humanitarian personnel and humanitarian assistance to the civilian population", - "values": [ - "4 - General action" - ] - }, - { - "text": "Ratify ILO Conventions No. 169 (indigenous and tribal peoples) and No. 189 (domestic workers) ", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Continue its ongoing efforts to further increase the attendance of girls in secondary and higher education and the participation of women in professional and political spheres", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Respect the right of defence and the rule of impartiality of judges of national courts, with regards mainly to the trials against international war crimes ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Take urgent steps to bring the Suppression of Terrorism Act 2008 in line with the Constitution", - "values": [ - "4 - General action" - ] - }, - { - "text": "Ensure that all women and girls have access to sexual and reproductive health services", - "values": [ - "4 - General action" - ] - }, - { - "text": "Continue its efforts in combatting violence against women and girls, in particular the problems of female genital mutilation", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Enhance engagement in the region with regional and inter-regional partners to help build capacities in countering trafficking in persons, especially women and children ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Take necessary measures to fully guarantee freedom of expression, in particular freedom of the press", - "values": [ - "4 - General action" - ] - }, - { - "text": "Consider enacting legislation on violence against women, including domestic violence, as recommended by the Committee on the Elimination of Discrimination against Women.", - "values": [ - "3 - Considering action" - ] - }, - { - "text": "Address the root causes of child labour by drawing up a cash-foreducation programme or a similar programme that is aimed at reducing poverty and guaranteeing children's right to education, with a specific focus on rural areas and indigenous communities ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Ensure the availability of public defenders in all detention locations in order to enhance guarantees of due process ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Consider ratifying the American Convention on Human Rights including the possibility of making reservations or interpretative declarations to Article 4, as done by other countries in the region ", - "values": [ - "3 - Considering action" - ] - }, - { - "text": "Continue to strengthen its human rights mechanisms and consider establishing a national human rights institution in line with the Paris Principles", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Continue with the moratorium on the death penalty and continue making efforts towards abolishing it", - "values": [ - "4 - General action" - ] - }, - { - "text": "Improve the investigative capacity of police and enhance judicial action on trafficking to allow for more prosecutions of trafficking offenders, particularly perpetrators of internal child trafficking ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Ensure that primary education is free and compulsory and prioritize the accessibility of secondary education, making it progressively free in accordance with the new Universal Plan on Basic Education ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Take all necessary measures to abolish the death penalty, including by acceding to the Second Optional Protocol to ICCPR ", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Modify the definition of the discrimination in the law to bring it in line with the ICERD and other international standards", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Ratify international human rights instruments, particularly the Convention against Torture and other Cruel Inhuman or Degrading Treatment or Punishment", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Strengthen measures to prevent and combat child abuse and ill-treatment.", - "values": [ - "4 - General action" - ] - }, - { - "text": "Initiate the procedure of ratification of the International Convention for the Protection of All Persons from Enforced Disappearances ", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Strengthen efforts for national reconciliation in Somalia ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Strengthen measures to combat AIDS and if necessary seek the assistance of the World Health Organization ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Adopt a national action plan in order to combat gender-specific violence, including domestic violence", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Take measures to ensure that no torture or other cruel, inhuman or degrading treatment or punishment occurs", - "values": [ - "4 - General action" - ] - }, - { - "text": "Strengthen the controls to avoid acts of reprisals or acts contrary to the human rights and international humanitarian law following the changes in the situation in the North of the country", - "values": [ - "4 - General action" - ] - }, - { - "text": "Adopt a national action plan on human rights", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Continue to improve the living conditions and the treatment of detainees and address prison overcrowding", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Take concrete steps to continue the process of family reunification, because for the elder generation even a delay of one or two years means that their chance of seeing their relatives may be lost forever ", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Efforts will be continued to create legislation against human trafficking and the smuggling of migrants in line with the United Nations Convention against Transnational Organized Crime and the Protocols thereto.", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Consider ratification of the Optional Protocol to the Convention on the Rights of the Child on a communications procedure", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Uphold the standards on the protection of the rights of persons belonging to minorities", - "values": [ - "4 - General action" - ] - }, - { - "text": "Adopt further measures to prevent torture and ill-treatment in particular in prison and detention centres", - "values": [ - "4 - General action" - ] - }, - { - "text": "Reform fully the prison system and in particular ensure that it respects as soon as possible the UN Standard Minimum Rules for the Treatment of Prisoners ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Establish clear consultation procedures in order to implement the right to free, prior and informed consent of indigenous peoples as contained in the Constitution ", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Ensure that the application of legislation that may limit freedom of expression is in line with relevant international standards and that lawful restrictions on the exercise of the right of freedom of expression on grounds such as national security and public order are necessary and proportional", - "values": [ - "4 - General action" - ] - }, - { - "text": "Create a database of disappeared and missing migrants, and that all authorities cooperate to prevent and punish crimes against this group", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Implement further reforms to ensure full recognition of the rights of the Kurdish and other minorities, including by withdrawing its reservation to article 27 of the ICCPR ", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Substantiate its willingness to cooperate with the special procedures of the Human Rights Council by issuing them with a standing invitation", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Further efforts to engage all appropriate social and political organizations in the promotion and protection of human rights.", - "values": [ - "4 - General action" - ] - }, - { - "text": "Increase its efforts to ensure effective investigation into the high number of homicides and into the abuse of power by police officials and to hold those responsible accountable ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Collaborate regularly with the treaty bodies by submitting reports which will allow them to monitor the implementation of treaties", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Implement a plan of action to promote human rights, in cooperation with civil society and the Office of the Ombudsman, with a special emphasis on the rights of women and vulnerable groups", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Have the Ministry of Labour and Social Solidarity examine further measures to prevent unlawful child labour, including the possibility of sector specific enforcement policies that target vulnerable populations, such as Roma street children ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Intensify efforts to eliminate all forms of discrimination against women, among other measures, to promote their empowerment and participation in public life", - "values": [ - "4 - General action" - ] - }, - { - "text": "Pass legislation guaranteeing the right of religious minorities to build and maintain places of worship", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Continue its efforts in providing gender equal rights", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Reinstitute the moratorium on the application of the death penalty, reduce the number of crimes punishable by death and, ultimately, consider abolishing the death penalty", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Consider taking measures to increase the access of low-income children to education", - "values": [ - "3 - Considering action" - ] - }, - { - "text": "Intensify efforts to prevent and investigate cases of sexual abuse of children, particularly those living on the street, so as to punish the perpetrators, and provide assistance and protection to victims", - "values": [ - "4 - General action" - ] - }, - { - "text": "Enhance the rights of expression and opinion", - "values": [ - "4 - General action" - ] - }, - { - "text": "Ratify the International Covenant on Economic, Social and Cultural Rights and its optional protocol", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "As recommended in the previous review, grant to "non-traditional" religious groups the same rights in practice as those enjoyed by other groups and permit their peaceful activities free from government interference, as prescribed by international law", - "values": [ - "4 - General action" - ] - }, - { - "text": "Further increase concrete measures in the framework of the 2011- 2015 Strategy and Action Plan for the promotion and protection of gender equality and women's rights ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Make it a priority in its future plans to improve the situation of certain vulnerable groups, such as women, particularly those in rural areas, children, and persons with disabilities ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Enhance the efforts made to improve the economic rights of the people", - "values": [ - "4 - General action" - ] - }, - { - "text": "Ratify core human rights treaties like ICCPR, ICESCR, and CAT and ensure that their provisions are respected in national legislation", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Finalize and submit the reports to CMRW, CERD and CAT ", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Assess possible action to overcome the issue referred to in paragraph 52 of the National Report regarding the worrisome dropout rate for pupils of immigrant background, which may be partly due to lack of skills in the Icelandic language", - "values": [ - "3 - Considering action" - ] - }, - { - "text": "Continue its capacity-building programmes related to all aspects of human rights", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Take additional measures to prevent and combat trafficking in human beings, and to protect victims and prosecute traffickers ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Continue with its efforts to protect and integrate in the society all persons with disabilities ", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Ensure the respect of international standards on the rights of prisoners sentenced to death", - "values": [ - "4 - General action" - ] - }, - { - "text": "Implement legislative measures to prohibit all forms of corporal punishment against minors", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Continue efforts to improve and protect the rights of women and children by implementing recommendations made by the United Nations mechanisms and its related special procedures ", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Establish an independent NHRI with a solid mandate and in accordance with the Paris Principles", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Ensure equal treatment before the law for non-citizens", - "values": [ - "4 - General action" - ] - }, - { - "text": "Strengthen the action of the Dialogue, Truth and Reconciliation Commission in line with the National Programme on Social Cohesion", - "values": [ - "4 - General action" - ] - }, - { - "text": "Consider reviewing strategies aimed at the protection of children, with a view to developing a comprehensive plan for the care of children, and to aligning them with the provisions of CRC and all applicable international human rights instruments to which Guinea-Bissau is party ", - "values": [ - "3 - Considering action" - ] - }, - { - "text": "Ensure that Namibia's juvenile justice system is in line with international standards", - "values": [ - "4 - General action" - ] - }, - { - "text": "Take the necessary measures to ensure the independence of the judiciary and create specialized mixed chambers in support of judgements of crimes under international law", - "values": [ - "4 - General action" - ] - }, - { - "text": "Take comprehensive measures to combat paedophilia and the rise in child prostitution ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Consider poverty reduction strategies that benefit minority groups.", - "values": [ - "3 - Considering action" - ] - }, - { - "text": "Continue its collaboration with the human rights mechanisms and become a party to the optional protocols of ICESCR and ICCPR ", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Ensuring all cases are reviewed by a court in accordance with fair procedures", - "values": [ - "4 - General action" - ] - }, - { - "text": "Continue its reforms to improve the level and the quality of social protection, education and health", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Strengthen the capacity of the National Human Rights Commission by allocating sufficient resources for its activities", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Enact legislation prohibiting discrimination against lesbian, gay, bisexual, transgender and intersex persons, including removing laws criminalising consensual same sex activity", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Establish a legal framework in order to help women and men develop knowledge to enable them to decide freely and responsibly on matters related to their sexuality, including their sexual and reproductive health ", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Eliminate the death penalty for crimes that cannot be considered as most serious crimes such as the economic ones", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Pass the bill for the early domestication of the Convention on the Elimination of All Forms of Discrimination against Women, without further delay ", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Extend a standing invitation to special procedures", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Further improve the access of children, especially girls, and women to human rights education ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Become party to the Optional Protocol to CRC on the involvement of children in armed conflict", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Implement the Convention on Rights of Persons with Disabilities to stamp out social stigma, fears and misconceptions affecting persons with disabilities, especially the most vulnerable ones, especially the children and the women", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Respect all human rights and fundamental freedoms of the Palestinian people, especially their right to self-determination", - "values": [ - "4 - General action" - ] - }, - { - "text": "Take further steps to increase the independence of the Anti-Corruption Agency so that it may thoroughly investigate credible allegations of corruption, and increase the number of prosecutions of these cases within the judicial system ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Continue and strengthen efforts in the fight for gender equality", - "values": [ - "4 - General action" - ] - }, - { - "text": "Consider ratifying the International Convention for the Protection of All Persons from Enforced Disappearance as well as the other international human rights core instruments to which the country is not yet a party", - "values": [ - "3 - Considering action" - ] - }, - { - "text": "Accelerate the ongoing exercise to strengthen the National Human Rights Commission and to make it fully compliant with the Paris Principles", - "values": [ - "4 - General action" - ] - }, - { - "text": "Intensify its efforts to respect and uphold freedom of expression, including political expression, and the freedom to manifest one's religious belief, for all its citizens, including by ensuring effective state protection for minorities ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Consider and formulate measures to address the very low representation of women in high-level positions, including in politics, as a priority", - "values": [ - "4 - General action" - ] - }, - { - "text": "Adopt measures to ensure the effective access of victims to remedy, including reparation and compensation ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Put in place an independent organ to investigate complaints of abuses perpetrated by members of the country's security forces", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Take additional steps to prevent discrimination against immigrant, refugee and minority women", - "values": [ - "4 - General action" - ] - }, - { - "text": "Consider adopting comprehensive legislation on national minorities that would address, inter alia, the legal criteria for recognition as a national minority, the institutional framework for addressing minority issues and structuring the dialogue with representatives of national minorities ", - "values": [ - "3 - Considering action" - ] - }, - { - "text": "Take practical measures to cease the maltreatment of and violence against the refugees, including sexual violence by the officials in detention centres", - "values": [ - "4 - General action" - ] - }, - { - "text": "Take steps, particularly in Papua, to increase protection for human rights defenders against stigmatization, intimidation and attacks and to ensure respect for freedom of expression and peaceful protest, including through a review of regulations that can be used to restrict political expression, in particular article 106 and 110 of the criminal code, and the release of those detained solely for peaceful political activities ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Continue to promote the right to social security and adequate standard of living for its people", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Revisit relevant policies and practices to create better work conditions for workers and their families.", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Abolish the capital punishment in all cases and in all circumstances", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Finalize and implement the National Action Plan on Human Rights, which will undoubtedly bring about tangible improvements in the observance of all categories of human rights", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Develop policies and programs to effectively implement National Strategy for Social Inclusion", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Implement, as speedily of possible, the legal, political and ministerial initiatives to eradicate the practice of torture and other forms of ill treatment by State officials.", - "values": [ - "4 - General action" - ] - }, - { - "text": "Adopt a moratorium on executions with a view to fully abolishing the death penalty ", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Continue social programmes aimed at addressing the basic needs of food, education, housing, health and work for vulnerable groups ", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Take all necessary steps to strengthen the adequate access to justice especially for vulnerable groups such as women", - "values": [ - "4 - General action" - ] - }, - { - "text": "Strengthen the mechanisms aimed at fighting against poverty and food insecurity", - "values": [ - "4 - General action" - ] - }, - { - "text": "Establish a national preventive mechanism and prompt ratification of the Optional Protocol to the Convention against Torture ", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Establish the national human rights institution", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Ensure the freedom of expression, association, assembly and freedom of religion in accordance with international human rights norms", - "values": [ - "4 - General action" - ] - }, - { - "text": "Further strengthen freedom of expression and access to public domain information, particularly at the community level and with government departments ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Pursue plans to develop civil rights and citizens' political engagement, drawing inter alia on traditions of grassroots consultation in Brunei Darussalam, with a clearer timetable for development of the Legislative Council, leading to the creation of a more effective mechanism for executive accountability ", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Raise the minimum age of criminal responsibility above 8", - "values": [ - "4 - General action" - ] - }, - { - "text": "Work alongside parliament to ensure that the report of the Truth, Justice and Reconciliation Commission and its recommendations are implemented, in particular on access to justice for victims of post-election violence", - "values": [ - "4 - General action" - ] - }, - { - "text": "Continue to take measures to reduce the incidence of violence against women and children, inter alia, by ensuring that law enforcement officials receive human rights training, and to fund recovery and counselling centres for victims of violence", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Seek international assistance to fund programmes and capacity building initiatives", - "values": [ - "1 - Minimal action" - ] - }, - { - "text": "Revise the status of the National Human Rights Institution with a view to ensure its full compliance with the Paris Principles ", - "values": [ - "3 - Considering action" - ] - }, - { - "text": "Consider the Caribbean region among those geographical areas of priority for the overseas and international development cooperation programmes that have been newly prioritized as a consequence of Spain's belt-tightening in face of the economic crisis", - "values": [ - "3 - Considering action" - ] - }, - { - "text": "Ratify the Second Optional Protocol to the International Covenant on Civil and Political Rights, aiming at the abolition of the death penalty (ICCPR- OP2)", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Permit independence of the media, improves its implementation article 19 of ICCPR and allow the establishment of privately-run media organizations.", - "values": [ - "4 - General action" - ] - }, - { - "text": "Take appropriate measures to better protect vulnerable groups such as older persons, women and children", - "values": [ - "4 - General action" - ] - }, - { - "text": "Respond favourably to the request of the Special Rapporteur on the question of torture to visit the country", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Work with relevant NGOs to create programmes to educate law enforcement officials, judges etc. on domestic violence as a serious issue that should be remedied through the legal system and not kept hidden in the domestic sphere ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Monaco reiterated its commitment to reach its objectives regarding public aid devoted to the most vulnerable persons in the poorest countries.", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Strengthen its national human rights institutions ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Continue endowing its National Commission for Women Affairs with public policy making and decision making powers", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Reduce prison overcrowding and pre-trial detention periods by enforcing the 2011 Law on Precautionary Measures ", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Implement the recommendations of the Special Rapporteur on minority issues to promote linguistic rights of minorities and to take the necessary measures to guarantee quality education in both the mother tongue and the State language", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Intensify efforts to ratify the Convention against Torture", - "values": [ - "4 - General action" - ] - }, - { - "text": "Continue, with the assistance of the international community, to implement its plans for economic and social development and further reduce poverty so as to lay a firm foundation for improving peoples' livelihood", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Implement policies and programmes for the prevention, rehabilitation and social integration of victims of sexual exploitation and abuse, particularly minors ", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Intensify efforts to establish a national human rights commission conforming to the Paris Principles", - "values": [ - "4 - General action" - ] - }, - { - "text": "Adopt legal and policy measures for the protection of human rights defenders", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Establish a National Human Rights Institution in accordance with the Paris Principles, as recommended previously", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Ensure equal access of all candidates to the media, avoid manipulation of voters and foster a culture of dialogue amongst all political parties ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Ratify the CAT, implement its standards into national law and take immediate and concrete actions against the practice of torture by State officials ", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Adopt a national strategy in the field of domestic violence ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Implement the National Action Plan to reduce violence against women and their children, including through an independent supervision mechanism that involves civil society organizations and take into account the specific situation of indigenous women and migrants ", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Take further steps for the elimination of discrimination against women", - "values": [ - "4 - General action" - ] - }, - { - "text": "Take measures to ensure respect for the basic rights of the people, such as their rights to food and safe drinking water, as well as welfare, such as health care, during times of conflict", - "values": [ - "4 - General action" - ] - }, - { - "text": "Accede to the Rome Statute of the International Criminal Court and the Convention on the Non-Applicability of Statutory Limitations to War Crimes and Crimes against Humanity", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Continue to enhance its efforts to counter trafficking in persons, including to consider the possibility of inviting the Special Rapporteur on trafficking in persons, especially in women and children ", - "values": [ - "3 - Considering action" - ] - }, - { - "text": "Continue initiatives aimed at improving the quality of life through diversification of the economy", - "values": [ - "4 - General action" - ] - }, - { - "text": "Further increase efforts to reduce infections and to combat discrimination against persons infected with HIV/AIDS", - "values": [ - "4 - General action" - ] - }, - { - "text": "Favourably consider the possibility of the ratification of the Optional Protocol to the Convention against Torture and Other Cruel, Inhuman or Degrading Treatment or Punishment ", - "values": [ - "3 - Considering action" - ] - }, - { - "text": "Continue to provide, in accordance with its obligations under international human rights law, the widest possible protection and support for the family as the natural and fundamental unit of society ", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Implement all provisions of the protocol aiming to prevent and punish human trafficking, in particular trafficking in women and children.", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Continue to cooperate with the United Nations Human Rights special procedures ", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Revise fundamental and other relevant laws with a view to enshrining explicitly in those the principles of equality and non-discrimination", - "values": [ - "3 - Considering action" - ] - }, - { - "text": "Increase its effort to address the issues of rural and urban migrant workers and their families in a more effective way", - "values": [ - "4 - General action" - ] - }, - { - "text": "Impose an immediate official moratorium on the death penalty with a view to abolishing capital punishment entirely as recommended by the Constitution Review Commission, while commuting the existing sentences to life imprisonment terms", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Enhance cooperation with United Nations special procedures", - "values": [ - "4 - General action" - ] - }, - { - "text": "Adopt the national anti-torture bill and establish an effective national preventive mechanism", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Ratify the Hague Convention on Protection of Children and Cooperation in respect of Intercountry Adoption", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Devote more efforts and resources to programmes aimed at promoting youth employment, notably through education and vocational training of youth", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Adopt the text on national policy to protect children, completed in 2008, and intensify the fight against trafficking in children and labour affecting children", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Speed up the process for the ratification of the Convention against Torture and Other Cruel, Inhuman or Degrading Treatment or Punishment", - "values": [ - "4 - General action" - ] - }, - { - "text": "Enact legislation to directly address the prevention of and protection against domestic violence", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Strengthen the justice system, safeguarding the independence of judges and magistrates and ensure access by all people (including Batwas and asylum seekers) to justice without discrimination", - "values": [ - "4 - General action" - ] - }, - { - "text": "Continue its combat against the use of child labour, especially in the mining industry and cocoa production, including implementation of measures on their rehabilitation, reintegration and education", - "values": [ - "4 - General action" - ] - }, - { - "text": "Establish a national human rights institution in accordance with the Paris Principles, as recommended by the Committee on the Rights of the Child.", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Ensure that the protection against violence affecting refugees becomes a visible policy of the Government", - "values": [ - "4 - General action" - ] - }, - { - "text": "Ratify CRPD at the earliest opportunity and seek relevant support from the international community and relevant UN agencies, including the OHCHR, for the ratification process ", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Adhere to the International Convention on the Protection of the Rights of All Migrants Workers and Members of their Families.", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Strengthen the labor inspections' mechanisms and step up the efforts to prevent child labor ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Consider ratifying the Optional Protocol to the Convention on the Elimination of All Forms of Discrimination against Women", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Develop appropriate training and awareness-raising measures towards the Roma, ethnic minorities and other marginalized groups and to create a Justice system complying with international standards and ensuring that the perpetrators can be brought to Justice. ", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Consider acceding to ICMW ", - "values": [ - "3 - Considering action" - ] - }, - { - "text": "Make efforts to ensure that the police prioritizes and investigates cases of violence and sexual abuse against female domestic workers", - "values": [ - "4 - General action" - ] - }, - { - "text": "Continue the efforts to eradicate domestic violence and provide protection guarantees for women and children", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Combat poverty and achieve food security with the support and cooperation of the international community", - "values": [ - "4 - General action" - ] - }, - { - "text": "Complete the process of full alignment of its national legislation with all obligations under the Rome Statute of the International Criminal Court and ratify the Agreement on Privileges and Immunities of the Court", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Follow-up on the commitment made in the National Human Rights Action Plan to ratify the Rome Statute of the International Criminal Court, and align its national legislation with the provisions of the Court's Statute ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Develop a process, trusted by the public, for regular community- government consultations regarding concerns of indigenous peoples and local community groups, including construction of infrastructure and other projects on their lands", - "values": [ - "4 - General action" - ] - }, - { - "text": "Ratify the Second Optional Protocol to ICCPR aiming at the abolition of the death penalty ", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Adopt a law, in line with the Convention on the Rights of the Child, that criminalizes all forms of violence against children", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Strengthen efforts aimed at protecting the rights of children in need, children who are victims of labour exploitation and children vulnerable to exploitation and violence ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Promote access to free education and health-care services, especially in rural areas, including through enhanced cooperation with neighbouring countries and development partners ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Ratify the Second Optional Protocol to International Covenant on Civil and Political Rights, aiming at the abolition of the death penalty ", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Promote the integration of Roma children in the educational system under the same conditions as the other children", - "values": [ - "4 - General action" - ] - }, - { - "text": "Redouble its efforts to combat stereotypes and intolerance, prevent crimes with racial, discriminatory or xenophobic motivation, and provide effective responses to hate speech", - "values": [ - "4 - General action" - ] - }, - { - "text": "Streamline its domestic legislation for the smooth and immediate implementation of its international obligations by all levels of government", - "values": [ - "4 - General action" - ] - }, - { - "text": "Consider extending a standing invitation to special procedures mandate holders of the Human Rights Council", - "values": [ - "3 - Considering action" - ] - }, - { - "text": "Ensure effective and systematic separation in prisons of minors from other detainees in order to respect the rights of the child ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Stop the revocation of residency permits for Palestinians in East Jerusalem", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Organize intensive training courses for judges and the judiciary on human rights principles.", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Implement, in full, newly introduced anti-corruption legislation ", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "In order to sustain the increased rate of birth registration, take necessary measures to ensure all children an immediate registration, followed by the issuance of a birth certificate", - "values": [ - "4 - General action" - ] - }, - { - "text": "Ensure, in line with the recommendation of the Committee on the Rights of Child, the implementation in practice the prohibition of corporal punishment in schools ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Put in place a concrete strategy for the comprehensive implementation of the 2011 Law on Discrimination Based on Caste and Untouchability", - "values": [ - "4 - General action" - ] - }, - { - "text": "Analyse the results of the policy of inclusion of the Roma, assess the remaining challenges yet to be addressed, especially regarding the fate of women and girls, and attach measures to it as well as reserve the required budget", - "values": [ - "3 - Considering action" - ] - }, - { - "text": "Facilitate the registration and work of civil society organizations, including those defending human rights and fighting discrimination on all grounds, so that they can operate without harassment, undue restrictions and administrative obstacles", - "values": [ - "4 - General action" - ] - }, - { - "text": "Continue to ensure the effective implementation of measures such as the establishment of telephone hotlines and care centres for victims of violence, as well as harsher penalties for violence against women and, if necessary, introduce further practical policies to prevent all forms of violence against women, and to support the victims of such abuse", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Continue using the ongoing programmes to ensure universal access for its population to health services", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Ratify the Council of Europe Convention on Preventing and Combating Violence against Women and Domestic Violence (The Istambul Convention)", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Address the gap that prevents transgender persons from legal recognition", - "values": [ - "4 - General action" - ] - }, - { - "text": "Consider the possibility of seeking international assistance to eliminate anti-personnel mines", - "values": [ - "3 - Considering action" - ] - }, - { - "text": "Continue to work to ensure equal rights for women in the workplace through its institutions, norms and public policies", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Increase the effectiveness of the precautionary measures to protect human rights defenders", - "values": [ - "4 - General action" - ] - }, - { - "text": "Strengthen its efforts to promote tolerance and cultural understanding of the Roma population in the aim of eliminating discrimination including in regard to access to education and employment and participation in politics", - "values": [ - "4 - General action" - ] - }, - { - "text": "Develop and implement public awareness campaigns and education programs to promote diversity and inclusion, while combatting racism, xenophobia and homophobia", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Continue its firm social investment policies", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Improve food safety of vulnerable groups, particularly indigenous people, former bonded labourers, Dalits, Muslims, persons with disabilities and those who are infected with HIV/AIDs ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Continue combating all forms of discrimination and promoting gender equality", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Adopt comprehensive measures to combat paedophilia", - "values": [ - "4 - General action" - ] - }, - { - "text": "Ratify the Convention on the Rights of Persons with Disabilities , which Ireland signed on 29 March 2007", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Continue its efforts in training and capacity-building programme for government and law enforcement officials in dealing with the issue of trafficking in persons, particularly women and girls", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Elaborate a census, in conjunction with UNDP, UNHCR and civil society, on the number of Roma, in particular refugees and displaced Roma.", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Continue the procedure of ratifying the International Convention on the Protection of the Rights of All Migrant Workers and Members of Their Families", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Protect the human rights of the most vulnerable persons, including displaced persons, children and women", - "values": [ - "4 - General action" - ] - }, - { - "text": "Accede to the international human rights instruments to which the State is not yet a party, in particular the International Convention on the Elimination of All Forms of Racial Discrimination, which it has only signed ", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Pursue its policies in favour of the vulnerable strata of society", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Strengthen the witness protection programme and address the root causes of this issue in the context of the reform of the judiciary and the armed forces.", - "values": [ - "4 - General action" - ] - }, - { - "text": "Restructure and give new impetus to the National Human Rights Commission", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Take measures to put an end to the presence of child soldiers within the armed forces and armed groups", - "values": [ - "4 - General action" - ] - }, - { - "text": "Take necessary steps to guarantee the life, physical integrity and health of persons held in detention facilities, shelters or psychiatric hospitals", - "values": [ - "4 - General action" - ] - }, - { - "text": "Remove disparities in the implementation of anti -racism legislation, policies, programmes and best practices, and ensure, without discrimination, the enjoyment of all people living under its jurisdiction of the rights set forth in ICERD by, inter alia, adopting new federal laws ", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Take further steps to ensure that the National Human Rights Institution is in conformity with the Principles relating to the status of national institutions for the promotion and protection of human rights (the Paris Principles) ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Take necessary steps to incorporate elements of human rights education in the training of law enforcement agencies ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Agree to and facilitate an early visit by the UN Special Rapporteur on extrajudicial, summary or arbitrary executions ", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Fight impunity by thorough and impartial investigations on all the allegations of human rights violations, including when these allegations involve members of security forces or settlers", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Ratify the Optional Protocol to the Convention against Torture and Other Cruel, Inhuman or Degrading Treatment or Punishment in order to contribute to the work already done", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Increase measures to promote and protect freedom of expression in the country", - "values": [ - "4 - General action" - ] - }, - { - "text": "Ensure that the police and the armed forces respect human rights and prevent human rights violations, in particular ill-treatment and excessive use of force, by carrying out trainings and strengthening civilian control of security forces", - "values": [ - "4 - General action" - ] - }, - { - "text": "Take further steps to tackle sexual violence, bring perpetrators of human rights violations to justice and ensure full implementation of the 2006 law against sexual violence, including through urgent implementation of the zero tolerance policy and establishment of a State-run vetting mechanism to remove the worst abusers from the Congolese army. ", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Cease immediately the colonization through construction of illegal settlements", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Review the incommunicado detention regime ", - "values": [ - "3 - Considering action" - ] - }, - { - "text": "Continue implementing measures to prevent HIV transmission", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Ratify the Protocol to the American Convention for Human Rights", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Step up efforts to update periodic reports to the human rights treaty bodies", - "values": [ - "4 - General action" - ] - }, - { - "text": "Establish a mechanism that will meet regularly with the effective participation of civil society organizations and indigenous peoples, and have national reach to implement all Canada's international obligations and facilitate the acceptance of pending commitments", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Improve the legislation and its application in order to combat police impunity and increase the number of criminal investigations of suspected perpetrators accused of police brutality, as well as provide training for staff of law-enforcement bodies on the rights of detainees ", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Become a party of the Optional Protocol to the Convention against Torture (OP-CAT) ", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Take measure to prevent trafficking in children and their sexual exploitation by establishing education programmes and developing support services for them ", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Sign and ratify OP-CEDAW ", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Continue and strengthen the actions for the improvement of the living condition of its population", - "values": [ - "4 - General action" - ] - }, - { - "text": "Support the action for the promotion and protection of human rights undertaken by the National Human Rights Council through its regional commissions throughout the territory", - "values": [ - "4 - General action" - ] - }, - { - "text": "Give diligent follow-up to recommendations of CERD in 2008 in particular the prevention of racially motivated offenses, guaranteeing the equal enjoyment of the right to adequate housing, lifting obstacles encountered by asylum-seekers for schooling their children, and inclusion in their legislation of a specific provision which establish ethnic racial or religious hatred as an aggravated circumstance in criminal matters", - "values": [ - "4 - General action" - ] - }, - { - "text": "Follow up on the CESCR recommendation to combat racism and xenophobia and to enforce effectively the legal prohibitions against discrimination in the enjoyment of economic, social and cultural rights ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Establish and implement strategies to combat effectively discrimination against ethnic minorities, indigenous people and migrants ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Continue its leading international efforts to tackle global warming, including by reminding developed countries and other major emitting States of their obligation to help promote and protect human rights in Seychelles by reducing greenhouse gas emissions to safe levels ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Continue the development of initiatives designed to assist people affected by poverty ", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Continue to promote the rights of women in their choice of marriage and their equality of treatment independently of caste and tribe or other considerations ", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Strengthen efforts in the fight against racism, racial discrimination, xenophobia and related intolerance ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Continue efforts to strengthen its juvenile justice system through, inter alia, considering the incorporation of the restorative justice principle ", - "values": [ - "3 - Considering action" - ] - }, - { - "text": "Further focus on children's access to primary education and speed up the process of implementing "The Interim Education Plan" and further promote the return to school of children who have dropped out ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Take measures to award Up-Country Tamils with the full set of civil rights, including the right to vote.", - "values": [ - "4 - General action" - ] - }, - { - "text": "Strengthen the measures to improve the representation, education and protection of Travellers ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Provide more resources for strategies and programs aimed at fighting against unemployment, especially among young people and to reduce disparities between regions and social groups, especially regarding access to education and health care ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Strengthen programmes to promote and protect the human rights of vulnerable groups, such as women and children in rural areas, and persons with disabilities ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Put an end to impunity for those who committed severe crimes ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Consider the possibility of expressing its consent to be bound by the CRPD", - "values": [ - "3 - Considering action" - ] - }, - { - "text": "Put an end to its policies that are contrary to international law and international humanitarian law, respecting the enjoyment of the human rights of the Palestinian people", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Fully uphold media freedom in accordance with international obligations", - "values": [ - "4 - General action" - ] - }, - { - "text": "Establish and make operational a national human rights institution in accordance with the Paris Principles ", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Abolish the period during which a widow or divorced woman must wait before she can remarry", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Continue to strengthen measures to provide education of good quality, including the progressive expansion of compulsory education and enrolment for both girls and boys", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Implement additional specific measures with a view to the total eradication of the phenomenon of street children and to ensure conditions for their full enjoyment of all human rights, particularly with regard to health, education, housing, food and others ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Further implement international human rights norms into the national legislation", - "values": [ - "4 - General action" - ] - }, - { - "text": "Establish a moratorium on the death penalty", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Implement effectively the National Action Plan for Inclusive Education, including by making available adequate human and financial resources, and strengthen it by developing a concrete timeline with clear targets to put an end to the segregation of Roma children within the mainstream system", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Improve the treatment of migrants, asylum-seekers and refugees ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Adopt a national plan of action focusing on persons with disabilities", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Increase support to children with disabilities to live in the community to avoid institutionalization", - "values": [ - "4 - General action" - ] - }, - { - "text": "Promote the need for practical educational measures to spread a culture of human rights and raise students' awareness of these rights ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Apply fully existing national regulations forbidding the practice of female genital mutilation and amend national legislation to ensure full access to sexual and reproductive health rights", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Continue to improve its legislation to bring it in line with international human rights standards ", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Take the necessary measures to ensure an improved representation of the members of minority groups not only among political ranks but in all social, cultural and economic fields", - "values": [ - "4 - General action" - ] - }, - { - "text": "Analyse the ratification of the ILO Domestic Workers Convention, 2011 (No. 189)", - "values": [ - "3 - Considering action" - ] - }, - { - "text": "Consider the creation of a body responsible for the follow up of the implementation of international human rights treaty obligations and implementation of recommendations of United Nations bodies with competence in this area", - "values": [ - "3 - Considering action" - ] - }, - { - "text": "Further promote access to remedy for victims of human rights violations", - "values": [ - "4 - General action" - ] - }, - { - "text": "Provide state authorities, including law enforcement and judicial officials, with human rights training for the protection of women and members of minority groups, such as lesbian, gay, bisexual, and transgender persons", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Take all measures to effectively combat all forms of violence and discrimination against women", - "values": [ - "4 - General action" - ] - }, - { - "text": "Stop the sentencing of children to any form of physical punishment.", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Intensify the reform of the judicial system, in particular the plan of access to justice and its independence and impartiality", - "values": [ - "4 - General action" - ] - }, - { - "text": "Take specific measures to fight violence against women", - "values": [ - "4 - General action" - ] - }, - { - "text": "Ratify the Rome Statute of the ICC and the Agreement on the Privileges and Immunities of the ICC, and to fully align its national legislation with all of the obligations under the Statute", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Extend a standing invitation to all thematic special procedures", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Strengthen the national human rights institution, and adapt it fully to the Paris Principles, with a broad and clear mandate, and adequate funding ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Continue with its very constructive and transparent steps and efforts taken to improve the situation of human rights and fundamental freedoms situation in all areas and implement effectively the extremely important recommendations contained in the national report.", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Deepen efforts to prevent and sanction harmful traditional practices, such as [", - "values": [ - "3 - Considering action" - ] - }, - { - "text": "Ratify the ILO Convention 169 ", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Strengthen rules and regulations with regard to hatred, defamation of religions and Islamophobia", - "values": [ - "4 - General action" - ] - }, - { - "text": "Include sexual orientation and gender identity as grounds for protection in anti-discrimination legislation and policies ", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Carry out the legislative reform to ensure de jure and de facto equality between men and women and adopt a comprehensive law repressing all forms of violence against women", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Establish a de jure moratorium on the death penalty with a view to its abolishment and ensure the death penalty is commuted to prison penalties", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Continue steps towards the recovery of physical and moral damage to the religious denominations suffered during the Soviet era", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Accelerate the Constitutional Review Process", - "values": [ - "4 - General action" - ] - }, - { - "text": "Continue active cooperation with human rights mechanisms", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Implement gender equality by establishing same wages for same jobs for men and women", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Ensure that the draft law on non-governmental organizations does not make their working conditions more difficult and respect their freedom of expression and association ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Take further measures and strengthen its legislation to prevent and punish all forms of violence against women and girls", - "values": [ - "4 - General action" - ] - }, - { - "text": "Ratify the Optional Protocol to the CAT and put in place a national preventative mechanism within the framework of the criteria and guarantees undertaken by this instrument ", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Take steps to ensure the provision of inclusive education for all children with disabilities, including specialized centres for assessment and support, as needed", - "values": [ - "4 - General action" - ] - }, - { - "text": "Announce a moratorium on the death penalty with a view to its eventual abolition. Pending this, Germany recommends taking appropriate steps to reduce its application, to respect international minimum standards and, in particular, to ensure that the death penalty is not imposed on persons under the age of 18 at the time of infringing penal law. Due process of law should be guaranteed in all judicial proceedings ", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Take actions to achieve universal birth registration ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Consider ratifying the Organization of African Unity Convention Governing Specific Aspects of Refugee Problems in Africa, the International Convention for the Protection of All Persons from Enforced Disappearance, the Convention for the Elimination of Mercenaries in Africa, and the Optional Protocol to the Convention against Torture and Other Cruel, Inhuman or Degrading Treatment or Punishment", - "values": [ - "3 - Considering action" - ] - }, - { - "text": "Continue to engage with the United Nations special procedures and in particular positively respond to the invitation requests by the Special Rapporteur on the situation of human rights defenders and the Special Rapporteur on extrajudicial, summary or arbitrary executions ", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Bring its Law on Mass Events into line with the requirements of the International Covenant on Civil and Political Rights\n", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Fully cooperate with the special procedures mandate holders, in particular the Special Rapporteur on the situation of human rights in Eritrea ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Continue efforts to strengthen national human rights institutions and mechanisms", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Take all possible measures to abolish the practice of witch camps", - "values": [ - "4 - General action" - ] - }, - { - "text": "Formally abolish the death penalty, with a view to ratifying the Second Optional Protocol to the International Covenant on Civil and Political Rights", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Guarantee the enjoyment of all Palestinians with their culture, social, and religious rights as per the Universal Declaration of Human Rights, and allowing them to reach places of worship as per the fourth Geneva Convention", - "values": [ - "4 - General action" - ] - }, - { - "text": "Take the necessary steps to prevent the assassination or intimidation of female teachers and students.", - "values": [ - "4 - General action" - ] - }, - { - "text": "Strengthen efforts to eradicate extreme poverty through the amendment of its macro-economic and structural policies", - "values": [ - "4 - General action" - ] - }, - { - "text": "Further strengthen efforts to ensure full and unhindered access to justice for all Rwandans, particularly through policies and laws designed to combat corrupt practices at all levels", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Investigate police violence that took place on persons because of their actual or perceived sexual orientation ", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Regularize the status of all erased persons of origin from other former Yugoslavian republics", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Continue its efforts in order to increase the participation of women in decision-making bodies and public institutions ", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Enhance measures to ensure education for all", - "values": [ - "4 - General action" - ] - }, - { - "text": "Increase its efforts in the area of health, education, guarantee the interest and protect rights of women and children, and promote overall social and economic development ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Continue to resist attempts to enforce any values or standards beyond the universally agreed ones.", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Develop and implement, together with the Office of the United Nations High Commissioner for Human Rights, a training course on protecting the human rights of victims of human trafficking for representatives of law enforcement bodies, including those studying at the International Training Centre in Minsk \n", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Study the possibility of ratifying the Second Optional Protocol to the International Covenant on Civil and Political Rights", - "values": [ - "3 - Considering action" - ] - }, - { - "text": "Continue its efforts for the improvement of the health system and the elimination of discrimination against women and discrimination on the basis of caste", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Develop training programmes for police officers that are in line with human rights principles on how to deal with minorities and vulnerable groups", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Speed up ratification of the OP-CAT", - "values": [ - "4 - General action" - ] - }, - { - "text": "That those imprisoned, suspected of holding dissenting opinions, including human rights defenders, civil society activists and journalists, should be unconditionally released ", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Take steps to eradicate slavery, slavery-like practices and related abuses and discrimination in the country ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Enact legislation to prevent child labour and protect children from commercial sexual exploitation ", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Consider ratifying the Rome Statute of the International Criminal Court, as well as the Second Optional Protocol to the International Covenant on Civil and Political Rights", - "values": [ - "3 - Considering action" - ] - }, - { - "text": "Promptly undertake the necessary procedures for ratification of the core human rights treaties, including the International Covenant on Civil and Political Rights and the International Covenant on Economic, Social and Cultural Rights ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Consider further cooperation with the international human rights monitoring mechanisms, including treaty bodies and special procedures of the Human Rights Council ", - "values": [ - "3 - Considering action" - ] - }, - { - "text": "Abolish definitely the death penalty as a culmination to the de facto moratorium which has been in place since 1997", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Take more effective measures in order to eradicate illiteracy and to address the obstacles preventing access to education", - "values": [ - "4 - General action" - ] - }, - { - "text": "Give individuals, groups and organs of the society the legitimacy and the recognition to promote human rights as well as to express their opinions or dissent publicly ", - "values": [ - "4 - General action" - ] - }, - { - "text": "To examine the possibility of modifying the declarations made by the French Government on articles 13 and 14 (5) of the International Covenant on Civil and Political Rights", - "values": [ - "3 - Considering action" - ] - }, - { - "text": "Lesotho reiterated its commitment to accelerate sustainable economic growth, continue to work on the establishment of the National Human Rights Commission, improve access to justice for all, intensify and continue efforts in the fight against corruption and strive to achieve the objectives of Vision 2020 and the Millennium Development Goals.", - "values": [ - "4 - General action" - ] - }, - { - "text": "Ratify OP-CAT and designate a National Preventive Mechanism for places of detention ", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Sign and ratify the International Covenant on Economic, Social and Cultural Rights", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Continue its initiatives to guarantee and preserve food self-sufficiency in order to increase the well-being of its population, especially those who are most vulnerable", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Establish legislation that prohibits corporal punishment and the ill-treatment of boys and girls", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Abide by all its international obligations and commitments and ensure an early return to constitutional order, the rule of law and respect for human rights ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Intensify efforts to improve conditions in prisons, in particular to address the problem of overcrowding and the high mortality in prisons", - "values": [ - "4 - General action" - ] - }, - { - "text": "Take the necessary legislative measures in order to make progress in the regulation and implementation of the demarcation of indigenous lands", - "values": [ - "4 - General action" - ] - }, - { - "text": "Modify the definition of domestic violence in law in order to better protect women against sexual, economical and psychological violence", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Prohibit all forms of violence against children in all settings, including corporal punishment, and provide for measures to enforce its prohibition", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Take adequate measures to combat illiteracy and poverty", - "values": [ - "4 - General action" - ] - }, - { - "text": "Take measures to provide redress to victims of trafficking in persons and adopt specific policies to fight against forced labour and prostitution", - "values": [ - "4 - General action" - ] - }, - { - "text": "Effectively implement existing legislation and provide enough resources for the investigation and punishment of crimes of violence against women", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Consider the possible establishment of an official moratorium on the death penalty, since it is not applied since 1997", - "values": [ - "3 - Considering action" - ] - }, - { - "text": "Strengthen its legal arsenal by acceding to the Optional Protocol to ICCPR", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Implement a standing invitation to all the Special Procedures of the Human Rights Council", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Cease the de facto restitution of the death penalty and executions", - "values": [ - "4 - General action" - ] - }, - { - "text": "Deploy further efforts in order to guarantee that any medical treatment to persons with intellectual disabilities or mental disorders be carried out in full respect of the human dignity of the patients concerned ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Consider further addressing violence against women through legal measures ", - "values": [ - "3 - Considering action" - ] - }, - { - "text": "Revise the Public Gathering Law (32/2006), so that peaceful demonstrations can be held as established by the International Covenant on Civil and Political Rights ", - "values": [ - "3 - Considering action" - ] - }, - { - "text": "Continue implementing the National Strategy Document and Action Plan on Children's Rights", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Ensure that the police force, the Directorate of Public Prosecution and the Uganda Human Rights Commission investigate all allegations of torture to hold perpetrators accountable", - "values": [ - "4 - General action" - ] - }, - { - "text": "Take measures to ensure the full implementation of the principles and provisions of the Convention on the Rights of the Child. Intensify efforts to establish an Ombudsman for Children to deal with complaints of violations of the rights of the child, particularly those related to child exploitation and sexual violence ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Continue to develop a gender-responsive approach to issues of violence against women and continue to build supportive environment for women and children within the judicial system. this environment should take into account the special needs for rehabilitation and post-conflict care of women and children in vulnerable situations and conflict areas.", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Ratify the International Convention for the Protection of All Persons from Enforced Disappearance as soon as possible", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Re-evaluate mechanisms at the federal, state and tribal levels, to address the disproportionate impact on immigrant women", - "values": [ - "3 - Considering action" - ] - }, - { - "text": "Continue to make further efforts in the promotion and protection of human rights in accordance with the needs and requirements of Libyan society", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Take measures to protect the best interests of babies and children affected by parental detention or imprisonment.", - "values": [ - "4 - General action" - ] - }, - { - "text": "Submit outstanding reports to treaty bodies and in this regard, the concrete timetable to submit the outstanding reports within the framework of the International Convention on the Elimination of All Forms of Racial Discrimination (December 2008), the International Covenant on Economic, Social and Cultural Rights (December 2008), International Covenant on Civil and Political Rights (June 2009)", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Further strengthen its efforts to combat and investigate ill-treatment of prisoners and detainees", - "values": [ - "4 - General action" - ] - }, - { - "text": "Invite the National Human Rights Commission to monitor the elections ", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Work with all sectors including the education sector, to ensure the National Human Rights Institute effectively supports the country's commitment to human rights", - "values": [ - "4 - General action" - ] - }, - { - "text": "Step up its efforts to combat domestic violence, including in preventive and awareness-raising measures and assistance for victims of domestic violence ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Reconsider its stance on the United Nations Declaration on the Rights of Indigenous Peoples", - "values": [ - "3 - Considering action" - ] - }, - { - "text": "Build on this success (achieving a total prohibition of corporal punishment of children in all settings in the European part of the Dutch territory) and ensure that this prohibition is also duly implemented in Aruba and the Netherland Antilles by enacting the necessary legislation in this regard ", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Use armed drones in line with existing international legal regimes and pay compensation to all innocent victims without discrimination", - "values": [ - "4 - General action" - ] - }, - { - "text": "Quickly complete the alignment of the national legislation with the provisions of the Rome Statute", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Ensure that the rights of detainees are respected", - "values": [ - "4 - General action" - ] - }, - { - "text": "Continue its efforts to protect migrant workers as well as carrying out capacity-building training for them", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "In conformity with article 77 of ICRMW, declare that it recognizes the competence of the Committee to receive and examine the communications that allege that the rights of individuals protected by this Convention have been violated ", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Develop official statistics that record cases of domestic violence, femicide, abuse, sexual abuse and sexual exploitation, the latter especially of children and adolescents, and facilitate access to justice for victims and the prosecution of the perpetrators ", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Take urgent measures to accelerate judicial investigations and punish the perpetrators of the human rights violations described in the report of the Truth Commission", - "values": [ - "4 - General action" - ] - }, - { - "text": "Continue to enhance its education system and ensure equal access to quality education for all, particularly women and girls ", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Intensify programmes aimed at promoting and protecting human rights in school curricula", - "values": [ - "4 - General action" - ] - }, - { - "text": "Strengthen the public campaigns and raise awareness regarding the unacceptability of the practice of child, early and forced marriage", - "values": [ - "4 - General action" - ] - }, - { - "text": "Strengthen its policies and programmes to continue reducing extreme poverty in the country", - "values": [ - "4 - General action" - ] - }, - { - "text": "Ratify the Optional Protocol to the Convention on the Elimination of All Forms of Discrimination against Women ", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Work to further increase women's participation in political and public life, including at the decision-making level ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Continue advancing in its efforts to achieve universal coverage of its Maternity, Disease and Health Care Programme ", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Implement the Government's intention to establish an independent national human rights institution in conformity with the Paris Principles ", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Continue the Constitutional reforms to guarantee the fundamental rights of the entire population, and move forward in the implementation of the reforms as planned in the National Human Rights Plan", - "values": [ - "4 - General action" - ] - }, - { - "text": "Continue to strengthen measures to protect and promote the welfare and human rights of all expatriate workers in Qatar, especially women domestic workers", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Continue to promote equality between men and women in the application of their national legislation and the implementation of public policies", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Consider ratifying the outstanding international human rights instruments and further update their national laws to be in line with those treaties", - "values": [ - "3 - Considering action" - ] - }, - { - "text": "Establish policies to improve healthcare and general welfare of indigenous children", - "values": [ - "4 - General action" - ] - }, - { - "text": "Combat discrimination and violence against women and reinforce their participation in the labour market.", - "values": [ - "4 - General action" - ] - }, - { - "text": "Put in place legislation which formally criminalizes violence against women", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Remove the requirement of infertility or sterilization before an individual may change their gender on legal documents", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Strengthen the independence and mandate of the National Slovak Human Rights Centre so that it operates in compliance with the Paris Principles and be given the necessary resources ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Ratify the Rome Statute of the International Criminal Court and implement it fully at national level and accede to the Agreement on the Privileges and Immunities of the International Criminal Court", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Amend legislation containing libel and defamation clauses in order to ensure consistency with Kazakhstan's international human rights obligations and other relevant commitments in respect of freedom of expression and of the media", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Conduct an investigation into the facts of the recent incidents and prevent impunity for abuses committed ", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Alleviate administrative procedure for peaceful assemblies and adopt effective measures to prevent use of force against peaceful protestors by the law enforcement personnel", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Issue a standing invitation to the special procedures of the Human Rights Council ", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Continue and promote the training and education of qualified people especially in the sphere of health in the developing countries, and continue promoting initiatives in defence of international solidarity ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Consider ratification of the Second Optional Protocol to the International Covenant on Civil and Political Rights, aiming at the abolition of the death penalty with a view to abolish the death penalty", - "values": [ - "3 - Considering action" - ] - }, - { - "text": "Continue its efforts to implement the outcomes from the political dialogue in 2017", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Review its legal and administrative measures with a view to ensuring the dignity and better living conditions of the vulnerable groups, including women and children ", - "values": [ - "3 - Considering action" - ] - }, - { - "text": "Immediately halt all administrative detention and release all Palestinian detainees and captives in Israeli prisons especially women and children", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "That the Federal Government at the highest level ensure strong public statements recognizing the legitimate and important role of journalists and human rights defenders in advancing human rights and inclusive politics", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Conduct a comprehensive study to assess the scope and nature of sexual exploitation of children, in order to able to develop necessary measures to protect children from sexual exploitation", - "values": [ - "3 - Considering action" - ] - }, - { - "text": "Accelerate the modernization programme of the religious schools", - "values": [ - "4 - General action" - ] - }, - { - "text": "Continue working for the inclusion of the rights of minorities and vulnerable groups in the social programmes promoted by the Government ", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Respect the principles of the protection of persons subjected to detention or imprisonment and implement the recommendation of the Committee against Torture that specific legislation to ban torture be adopted.", - "values": [ - "4 - General action" - ] - }, - { - "text": "Ratify the Convention on the Rights of Persons with Disabilities (CRPD) convention and enact legislation to protect persons with disabilities in accordance with CRPD standards ", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Ensure that all civil society actors, as well as the Human Rights Commission, can carry out their activities, including participating in international mechanisms, without being subjected to reprisal", - "values": [ - "4 - General action" - ] - }, - { - "text": "Identify, protect and support victims of trafficking and forced labour", - "values": [ - "4 - General action" - ] - }, - { - "text": "Continue its efforts to improve conditions in detention facilities in line with the Bangkok Rules", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Dedicate more resources to advance health-care services", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Protect the judiciary against all interference from bodies belonging to other branches of government", - "values": [ - "4 - General action" - ] - }, - { - "text": "Continue its efforts in the area of eliminating all forms of discrimination in the society", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Step up its cooperation with special procedures mandate holders by responding positively to the pending visit request and eventually consider extending a standing invitation to all the special procedures mandate holders of the Human Rights Council", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Continue its commitment to the improvement of the situation of women in society through policies, programmes and projects to that end.", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "The delegation affirmed the commitment of the Government to uphold the human rights of all Basotho.", - "values": [ - "4 - General action" - ] - }, - { - "text": "Take measures to improve the situation in the detention centres for illegal migrants", - "values": [ - "4 - General action" - ] - }, - { - "text": "Adopt the draft Family Protection Bill", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Regarding the protection of minorities, the delegation expressed the Government's commitment to implement the recommendations put forward in the 2014 resolution of the Committee of Ministers of the Council of Europe on the implementation of the Framework Convention for the Protection of National Minorities.", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Intensify efforts to investigate and prosecute cases of human trafficking including forced labour ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Continue with the full implementation of the Law against Femicide and other forms of violence against women", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Further facilitate favourable grounds for minority religious groups to choose, change and follow their own religion or belief without any form of restriction", - "values": [ - "4 - General action" - ] - }, - { - "text": "Establish legislation and the necessary measures to guarantee freedom of religion in the country, particularly in public education", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Continue efforts to address the problem of domestic violence against women", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Address potential de facto discrimination of women with regard to inheritance.", - "values": [ - "4 - General action" - ] - }, - { - "text": "Adopt a national plan of action against sexual exploitation of children and against child labour. Raise the minimum age of criminal responsibility to internationally accepted standards and ensure that juvenile justice protection is accorded to all children up to the age of 18 years ", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Ensure that the justice system has the necessary resources to carry out an independent, impartial and expeditious trial of the December 1982 murders", - "values": [ - "4 - General action" - ] - }, - { - "text": "Accede to the International Covenant on Civil and Political Rights and its optional protocols ", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Continue resolutely consolidating the education system in accordance with the particular characteristics and needs of its population", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Undertake further analysis of the high percentage of Roma Children in special education schools in light of the principles of the Council of Europe and the jurisprudence of the European Convention on Human Rights", - "values": [ - "3 - Considering action" - ] - }, - { - "text": "Train security forces to respect freedoms of expression and assembly", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Thoroughly investigate and prosecute incidents of violence perpetuated against persons with albinism", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Continue strengthening social programmes in the context of nation-building and social cohesion", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Explore the possibility of undertaking a comprehensive study on the positive implications of the implementation of a legal system based on civil and Islamic law, and share its experiences and best practices in that regard", - "values": [ - "3 - Considering action" - ] - }, - { - "text": "Develop and implement policies and measures to address inequality between boys and girls in access to education and reported widespread child labour.", - "values": [ - "4 - General action" - ] - }, - { - "text": "Step up efforts to improve the situation of socially vulnerable groups of the population, in particular migrant workers, including their protection from discrimination", - "values": [ - "4 - General action" - ] - }, - { - "text": "Take appropriate and effective measures to improve the welfare of children, including in the fields of health care, adequate living conditions and the right to education", - "values": [ - "4 - General action" - ] - }, - { - "text": "Continue its efforts to increase the national net enrolment rate for compulsory and free basic education and to further improve the quality of education being received by Ghanaian children in school, in line with the observations made by the United Nations Children's Fund (UNICEF)", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Clarify the status of all political parties and introduce multi-party democratic elections", - "values": [ - "4 - General action" - ] - }, - { - "text": "Adopt programmes and specific measures to ensure the protection of economic, social and cultural rights of all components of society.", - "values": [ - "4 - General action" - ] - }, - { - "text": "Intensify its efforts in creating more opportunities for women in order to access full-time employment", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Continue providing adequate and effective protection and support to the family, as the basic and natural unit of the society ", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Consider the ratification of the Optional Protocol to the Convention on the Rights of Child on the sale of children, child prostitution and child pornography (OP-SCR) ", - "values": [ - "3 - Considering action" - ] - }, - { - "text": "Take steps to prohibit corporal punishment of children in all settings ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Further work on improving the judicial system by providing capacity-building assistance and training in the field of human rights", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Elaborate and implement a substantially more effective strategy to fight child poverty ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Ratify the International Covenant on Economic, Social and Cultural Rights, the International Covenant on Civil and Political Rights and the International Convention on the Elimination of All Forms of Racial Discrimination", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Adopt legislation for the removal from the civil registry of the Bulgarian-Slavic names forcibly given to Turkish and Muslim minorities under the communist regime", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Deepen the efforts, including through international cooperation, aimed at eradicating all practices that violate the rights of women, with a particular emphasis on female genital mutilation and any form of gender based violence, and continue to implement measures, which tend to provide the legal recognition of civil, political, economic and social rights among women and men", - "values": [ - "4 - General action" - ] - }, - { - "text": "Initiate a comprehensive strategy to address manifestation of racism, xenophobia and Islamophobia, especially in view to preventing xenophobic acts", - "values": [ - "4 - General action" - ] - }, - { - "text": "Strengthen measures with regard to the elimination of violence and discrimination against persons belonging to religious minorities", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Promote gender equality and pursue work on legislation on marital rape as a priority and consider additional measures, such as public awareness-raising initiatives or campaigns in order to promote the implementation of the rights in the legislation in question.", - "values": [ - "4 - General action" - ] - }, - { - "text": "Address the gaps in the legislation on sexual exploitation of children, including the lack of a clear definition of "child pornography" and "child prostitution" in Luxemburgish legislation", - "values": [ - "4 - General action" - ] - }, - { - "text": "Lift restrictions on Internet usage such as filtering and surveillance", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Consider becoming party to the Optional Protocol to the Convention against Torture or Other Cruel, Human or Degrading Treatment or Punishment (OPCAT)", - "values": [ - "3 - Considering action" - ] - }, - { - "text": "Improve conditions of detention", - "values": [ - "4 - General action" - ] - }, - { - "text": "Finally, the Government of the Islamic Republic of Mauritania takes this opportunity to reiterate its commitment to the ideals and principles enshrined in the international legal instruments to which it is a party and its determination to contribute, as a member of the Human Rights Council, to efforts to promote and protect human rights internationally and in Arab and African countries.", - "values": [ - "1 - Minimal action" - ] - }, - { - "text": "Provide training for judges and prosecutors", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Recommended to Tonga and to relevant actors to attentively follow-up on the requests for capacity-building and technical assistance on human rights.", - "values": [ - "4 - General action" - ] - }, - { - "text": "Continue efforts to address effectively the socio-economic inequalities of the Roma and to improve their situation.", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Develop a national action plan to combat trafficking in persons that includes measures for the rehabilitation of victims and training of the officials involved in investigating these crimes", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Enact legislation explicitly prohibiting all corporal punishment in all settings, including the home, in the District of Brcko and in the Federation of Bosnia and Herzegovina", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Continue to comprehensively promote economic and social development as well as the harmonious co-existence among all ethnic groups and religious groups ", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Continue its efforts to address the issues of overcrowding of prisons and delays in court proceedings.", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Develop a comprehensive and coherent national strategy and plan of action to combat human trafficking of women and children", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Continue its on-going review of national laws to ensure that they are in line with its international human rights law obligations ", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Pursue efforts with regional and international communities in seeking financial and technical assistance to report on and implement ratified treaties, and for UPR follow-up ", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Take adequate measures, such as the ratification of CEDAW, to enhance the equal role of women in society, in particular, in political, economic, social and cultural life, including sports", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Continue efforts to fight discrimination in all spheres of life, also taking measures against all expressions and manifestations of prejudices, such as hate speech, racism and xenophobia", - "values": [ - "4 - General action" - ] - }, - { - "text": "Strengthen practical efforts to eliminate torture", - "values": [ - "4 - General action" - ] - }, - { - "text": "Continue with its strategies aimed at expanding the coverage of the right to education ", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Facilitate access for humanitarian aid and humanitarian personnel to the Syrian territory, especially in remote areas and areas most affected by the conflict", - "values": [ - "4 - General action" - ] - }, - { - "text": "Implement the National Strategy for the Social Safety Net in order to achieve an effective delivery of social services to citizens so they can live with dignity", - "values": [ - "4 - General action" - ] - }, - { - "text": "Consider ratifying the Optional Protocol to the Convention on the Rights of the Child on the sale of children, child prostitution and child pornography ", - "values": [ - "3 - Considering action" - ] - }, - { - "text": "Seek technical assistance from the OHCHR, other relevant United Nations agencies and funds with a view to implement its treaty body reporting obligations ", - "values": [ - "1 - Minimal action" - ] - }, - { - "text": "Continue expanding its human rights education programmes, in an inclusive and permanent manner and at all levels", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Continue efforts to promote women's participation in public decision taking", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Recommended further action to reduce maternal mortality ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Ban in law and prevent activities of the extremist organizations ", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Ensure that Azerbaijani media regulations uphold diversity among media outlets, as per international standards and best practices", - "values": [ - "4 - General action" - ] - }, - { - "text": "Take stronger measures to combat discrimination and other forms of intolerance, including by promoting tolerance and diversity, as well as prosecuting those responsible for such acts ", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Engage in closer contact with United Nations bodies and, inter alia, accept the request by the Special Rapporteur on human rights defenders to visit the country ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Establish as soon as possible a National Prevention Mechanism, in accordance with the Optional Protocol to the Convention against Torture ", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Adopt effective prevention and education measures to end all cases of child marriage and female genital mutilation", - "values": [ - "4 - General action" - ] - }, - { - "text": "Provide comprehensive disability protection, with particular attention to the rights of children, while avoiding medical and political practices that affect the freedom and dignity of persons with disabilities", - "values": [ - "4 - General action" - ] - }, - { - "text": "Ratify the other core human rights treaties, including the International Covenant on Civil and Political Rights, without delay ", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Adopt a legislative framework that ensures protection against all offences motivated by hatred and prejudice", - "values": [ - "4 - General action" - ] - }, - { - "text": "Take effective measures to eradicate discrimination against women and expediently ensure the equal treatment of women in law and practice, in accordance with its international obligations under CEDAW ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Ratify the Optional Protocol to the International Covenant on Economic, Social and Cultural Rights", - "values": [ - "3 - Considering action" - ] - }, - { - "text": "Take measures to limit the use of pretrial detention and improve conditions of detention", - "values": [ - "4 - General action" - ] - }, - { - "text": "Provide birth registration and issue birth certificates free of charge for all children under 5 years of age in order to reach universal coverage and increase public awareness of the importance of birth registration", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Strengthen the independence and mandate of its National Centre for Human Rights so as to enable it to function in compliance with the Paris Principles ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Take further measures to combat and prevent all forms of discrimination and social stigmatization, including on the grounds of sexual orientation and gender identity", - "values": [ - "4 - General action" - ] - }, - { - "text": "Make public statements committing to political pluralism and democracy, and, in support of this commitment, adopt and implement policies to ensure that opposition parties are permitted to participate freely in the political process without fear of retribution ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Step up the rate of cooperation with treaty bodies", - "values": [ - "4 - General action" - ] - }, - { - "text": "Provide necessary protection for the family as the natural and fundamental unit of the society", - "values": [ - "4 - General action" - ] - }, - { - "text": "Resolve the discriminatory provisions against women in relation to HIV prevention ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Comprehensively implement programmes to provide fair access, in line with international standards, to promote girls' education at all levels, and to eradicate the causes of school dropout, and continue efforts in this regard, including through speeding up the adoption of the draft policy on girls' education ", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Continue to focus on the overall improvement in the quality of education provided, including by continuing to provide human rights education, training and courses to students, civilian populations and law enforcement officials ", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Ratify OP-CEDAW", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Continue with efforts to protect the rights of unaccompanied and separated children and female refugees ", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Intensify its efforts to implement without delay existing laws concerning the protection of the rights of the child, including the births and deaths registration Act of 2004", - "values": [ - "4 - General action" - ] - }, - { - "text": "Abolish the death penalty, at least for juvenile perpetrators", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Revoke the law which criminalizes consensual, non-commercial adult homosexual conduct, as it violates the rights to privacy, and the protection against discrimination ", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Ensure an independent, inclusive and consultative drafting process which will lead to a constitution guaranteeing fundamental rights of the people, including the rights of women, ensure separation of powers and independence of the judiciary", - "values": [ - "4 - General action" - ] - }, - { - "text": "Develop a specific strategy to ensure that domestic workers can file complaints in cases of violence and abuse, without fear of reprisal or harassment ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Ratify the Convention against Torture and other Cruel, Inhuman or Degrading Treatment or Punishment, as well as its Optional Protocol ", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Harmonize legislation relating to the recognition of the rights of indigenous peoples, at all levels, with the International Convention on the Elimination of All Forms of Racial Discrimination", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Continue strengthening the implementation of those measures already adopted and adopt new measures, whenever necessary, to ensure the enjoyment of human rights for its population, according particular importance to eradicating violence against women and ensuring the rights of the child.", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Develop and implement a set of measures that will make it possible to fully implement economic and social human rights, especially the right to employment and the right to an adequate level of remuneration", - "values": [ - "4 - General action" - ] - }, - { - "text": "Intensify efforts to prevent and combat violence against women and girls, domestic violence and the violent deaths of women", - "values": [ - "4 - General action" - ] - }, - { - "text": "Adopt mitigating measures to protect its most vulnerable population: women heads of household, the unemployed, farmers, retired people, children, persons with disabilities, et alia ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Continue efforts for the prevention of genocide", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Further progress in the eradication of the female genital mutilation and reaffirm its prohibition", - "values": [ - "4 - General action" - ] - }, - { - "text": "Conduct mandatory human rights training for law enforcement agencies, including training on hate crimes", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Strengthen its legal arsenal by acceding to the International Covenant on Civil and Political Rights, to the International Covenant on Economic, Social and Cultural Rights, to the International Convention for the Protection of All Persons from Enforced Disappearance, and the Optional Protocol to the Convention against Torture and Other Cruel, Inhuman or Degrading Treatment or Punishment", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Continue the process of developing human rights indicators", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Ensure that the broadcasting of the public broadcaster is balanced and not favourable to any political party and that the Broadcasting Law is not applied selectively and abused for political process", - "values": [ - "4 - General action" - ] - }, - { - "text": "Intensify its struggle against racism.", - "values": [ - "4 - General action" - ] - }, - { - "text": "Complete the procedures for the ratification of the Second Optional Protocol to the International Covenant on Civil and Political Rights", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Strengthen the independence and impartiality of the judiciary", - "values": [ - "4 - General action" - ] - }, - { - "text": "Ensure its immigration system's compliance with international human rights standards ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Develop a strategy to guarantee the rights of women in the labour market and increase the effectiveness of measures to prevent and reduce poverty among vulnerable groups of women", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Establish a comprehensive plan and a system for recording and monitoring developments in the area of preventing xenophobia and discrimination, including hate speech and hate crimes", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Reinforce its efforts to fight impunity regarding cases of enforced disappearance by bringing all responsible persons to justice", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Adopt the draft law amending the Penal Code, which incorporates the sanctions related to domestic violence and trafficking in persons which is currently in Parliament", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Further strengthen the capacities of its prisons with a view to improving the custody conditions of detainees", - "values": [ - "4 - General action" - ] - }, - { - "text": "Continue to provide improved human rights education and training for judicial and law enforcement officials", - "values": [ - "4 - General action" - ] - }, - { - "text": "Take the necessary measures to expedite the work of the High Judicial Council", - "values": [ - "4 - General action" - ] - }, - { - "text": "Further promote the identity and culture of religious minority groups and raise awareness in society about their historical presence in Cyprus ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Institute policies and initiatives to address discrimination based on sexual orientation or gender identity ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Continue making every effort to ensure greater protection against child prostitution and pornography", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "A study will be carried out on the international treaties and instruments to which Convention on the Rights of Persons with Disabilities.", - "values": [ - "3 - Considering action" - ] - }, - { - "text": "Continue improving all the conditions for worship, and strengthen awareness and dissemination of the values of tolerance and peace", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Ensure that indigenous peoples and other minorities are protected against all forms of discrimination", - "values": [ - "4 - General action" - ] - }, - { - "text": "Eradicate hate-speech against minorities and establish oversight mechanisms to ensure the elimination of all forms of discrimination ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Ensure the effective implementation of the national plan of action for prevention, assistance and eradication of violence against women", - "values": [ - "4 - General action" - ] - }, - { - "text": "Take necessary measures to provide adequate protection to journalists and human rights defenders", - "values": [ - "4 - General action" - ] - }, - { - "text": "Increase the level of funding of the National Commission on the Status of Women, in order for it to better protect and promote the rights of women", - "values": [ - "4 - General action" - ] - }, - { - "text": "Abolish polygamy and adopt a plan to fight the scourge of female genital mutilation, criminalizing this practice and mobilizing public opinion against it, and adopt measures to reduce violence against women, both rape and domestic violence.", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Continue the reforms to improve the policies and special programmes to strengthen and protect human rights", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Consider the ratification of the Convention on the Rights of Persons with Disabilities ", - "values": [ - "3 - Considering action" - ] - }, - { - "text": "Continue to promote equality between men and women in public policies", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Reinforce its efforts to recognize indigenous rights and effectively include them in Chile's legal and administrative structure, and address land claims of indigenous peoples and communities through a process of effective dialogue and negotiation.", - "values": [ - "4 - General action" - ] - }, - { - "text": "Extend an open and standing invitation to all Special Procedures and avoid delays in the submission of reports to treaty bodies that has been occurring since 2000 ", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Include access to justice and remedy, as well as psychological support and occupational training, for victims of trafficking to help them regain their lives and reintegrate back into society ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Strengthen policies that guarantee the prevalence of human rights in combating terrorism ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Step up its efforts to raise awareness on the issue of human trafficking, in particular sex trafficking, targeting the general public as well as potential clients of the sex trade ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Commute the sentences of persons sentenced to death and establish a moratorium on executions", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Continue to make progress in implementing measures and programmes aimed at preventing and eliminating all forms of violence against women and girls", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Exert more efforts to combat or to counter violence against women and girls", - "values": [ - "4 - General action" - ] - }, - { - "text": "Increase its contribution of official development assistance to reach the 0.7 per cent of gross national product threshold, with particular emphasis on capacity-building and resilience, as a follow up to the recommendation contained in paragraph 123.84 of the report from the second cycle", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Introduce national legislation to ensure that the rights of the child are fully protected, in line with the Convention on the Rights of the Child ", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Repeal the provisions of the media and anti-terrorism legislation that infringe on the protection accorded to freedom of expression by provisions in article 29 of its Constitution and on Ethiopia's human rights obligations ", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Adopt measures for full implementation of the principles of CEDAW and eliminate its reservations to this instrument so that it can be better implemented ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Repeal the provisions of the Migration Act 1958 relating to the mandatory detention", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Ensure fair, equitable and independent judicial procedures, in accordance with international standards", - "values": [ - "4 - General action" - ] - }, - { - "text": "Maintain and strengthen cooperation with various United Nations mechanisms, as well as financial institutions, in order to overcome the challenges faced in the peace and national reconciliation process", - "values": [ - "4 - General action" - ] - }, - { - "text": "Take necessary measures to develop internal governance procedures in order that the Independent National Commission on Human Rights could perform its mandated role, in particular by ensuring adequate funding for the Commission", - "values": [ - "4 - General action" - ] - }, - { - "text": "Implement actions with a comprehensive and preventive approach in relation to children in conflict with the law through alternative justice measures of deprivation of freedom, taking into account different programmes for children in conflict with the law", - "values": [ - "4 - General action" - ] - }, - { - "text": "Take all the necessary measures to bring to an end attacks on journalists and ensure that the Information and Communication Act is in line with the human rights obligations of Kenya, in particular press freedom", - "values": [ - "4 - General action" - ] - }, - { - "text": "Strengthen the rights of journalists and free media. the state as well as the municipal governments should fulfil their responsibility to protect a free media", - "values": [ - "4 - General action" - ] - }, - { - "text": "Develop disciplinary protocols and manuals for the use of force with strict adherence to human rights", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Continue to promote dialogue among the various religions and civilizations, and to promote the culture of dialogue and peaceful coexistence", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Continue to allocate appropriate budget and resources to address challenges such as trafficking in persons, sexual exploitation of children and extreme poverty in rural areas and establish a targeted timeframe for implementing related plans and programs", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Protect and respect the freedom of expression and association of human rights defenders in accordance with the Declaration on Human Rights Defenders and refrain from placing any unnecessary restrictions on their work.", - "values": [ - "4 - General action" - ] - }, - { - "text": "Follow up on cases of discriminatory treatment of the Roma population in the area of employment and provide equal chances and treatment to Roma children with regard to education", - "values": [ - "4 - General action" - ] - }, - { - "text": "Consider adopting a national strategy to fight against all forms of violence against women", - "values": [ - "3 - Considering action" - ] - }, - { - "text": "Energetically drive forward judicial reform, combat corruption and enhance the capacity of the judiciary ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Continue to address legal and procedural limitations which obstruct the effective prosecution of crime and corruption cases", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Reconsider its decision to continue imposing criminal sanctions against irregular migration ", - "values": [ - "3 - Considering action" - ] - }, - { - "text": "Continue the good work of providing legislation and policies for gender equality in keeping with international obligations, in particular with regard to violence against women and their heritage rights, and providing policies aimed at women's education, health and equal access to training and labour markets", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Implement the Committee against Torture's recommendation with regard to external monitoring of police custody.", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Ensure that the reform process of the Equality and Human Rights Commission does not affect its independence in conformity with the Paris Principles ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Continue strengthening the implementation of the National Human Rights Plan, to provide an adequate response to the challenges due to the insecurity in the country", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Review the Suppression of Terrorism Act and Sedition and Subversive Activities Act so that they do not impede the right to freedom of expression as guaranteed under the International Covenant on Civil and Political Rights and are fully aligned with Swaziland's Constitution and contain safeguards against any arbitrary abuse directed against dissent or criticism of the authorities or the Government ", - "values": [ - "3 - Considering action" - ] - }, - { - "text": "Issue a standing invitation to all United Nations special procedure mandate holders", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Provide a follow-up report about the strengthening of the efforts and actions taken on the ground to ensure the rights of minorities, and specifically Roma.", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Ensure that access to education is not hampered by differences, particular gender, and take necessary measures to guarantee security of female students and staff members", - "values": [ - "4 - General action" - ] - }, - { - "text": "Abolish the death penalty or at least establish a moratorium ", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Refrain from initiating defamation lawsuits against civil society activists and journalists, and put an end to the practice of detaining these individuals engaging in the exercise of their legal civil and political rights", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Establish an immediate moratorium on executions with a view to abolishing the death penalty", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "That the perspective of the equality for women be fully included into the follow-up process to this review, including by conducting regular consultation with civil society and women's groups on the implementation of the various related recommendations.", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Abolish the "Security Surveillance Law", which restricts freedoms of former political prisoners and prisoners of conscience", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Pursue efforts to combat the HIV/AIDS pandemic, particularly by the implementation of a national strategic plan to fight against this pandemic", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Further strengthen efforts in the area of development especially, concerning the enrolment at all levels of education, the realization of the right to food", - "values": [ - "4 - General action" - ] - }, - { - "text": "Step up cooperation with treaty bodies", - "values": [ - "4 - General action" - ] - }, - { - "text": "That measures be taken to eradicate all forms of torture and illtreatment of detainees by military or civilian personnel, in any territory of jurisdiction, and that any such acts be thoroughly investigated", - "values": [ - "4 - General action" - ] - }, - { - "text": "Introduce a minimum marriage age of 18 years for both men and women", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "That the implementation of the new law on the protection of human rights defenders, journalists, social communicators and justice officials is allocated sufficient resources and without it being necessary to resort to civil society contributions", - "values": [ - "4 - General action" - ] - }, - { - "text": "Continue to strengthen its policies and programmes to increase access to quality education ", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Continue to work to include the norms of the Convention for the Elimination of Discrimination against Women in domestic law", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Ensure a supported decision-making mechanism for people with disabilities", - "values": [ - "4 - General action" - ] - }, - { - "text": "Establish the rule of law and apply it fairly and equally in order to realize national reconciliation", - "values": [ - "4 - General action" - ] - }, - { - "text": "Take immediate and effective steps to address discrimination perpetrated against the Roma people", - "values": [ - "4 - General action" - ] - }, - { - "text": "Continue its efforts to protect the rights of all migrants, regardless of their situation and status.", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Repeal Articles 487, 488, 522 and 534 of the Penal Code", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Grant access to all prisons in the country to the International Committee of Red Cross and ensure the safety of its delegates during the visits ", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Continue efforts to overcome abductions and domestic violence involving women and children ", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Continue strengthening the country's successful social policy in favour of the most vulnerable sectors of society, ensuring that they have the assistance and cooperation of the international community that the country requires", - "values": [ - "4 - General action" - ] - }, - { - "text": "Develop a national plan of action for the implementation of children's rights and adopt a holistic child rights approach ", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Continue its efforts to reduce stigma and discrimination through education and awareness raising campaigns", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Take measures to ensure the effective implementation of the National Action Plan for Inclusive Education (NAPIE) by ensuring that adequate funding is made available and that concrete targets are set to ensure that all children, including Roma, are provided with equal access and equal opportunity to education ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Consider stepping up measures to address trafficking vulnerabilities of women and children ", - "values": [ - "3 - Considering action" - ] - }, - { - "text": "Take the necessary concrete steps to facilitate a visit by the UN High Commissioner for Human Rights as soon as possible", - "values": [ - "4 - General action" - ] - }, - { - "text": "Thoroughly review the national legislation on migration and asylum", - "values": [ - "3 - Considering action" - ] - }, - { - "text": "Remove reservations to the International Covenant on Civil and Political Rights, ICESCR, and the Optional Protocol to CRC on the sale of children and child pornography in order to ensure full implementation of these key international instruments", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Continue its efforts to implement its international human rights obligations ", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Consider withdrawing its interpretative declaration on article 4 of the International Convention on the Elimination of All Forms of Racial Discrimination, as recommended by the Committee on Racial Discrimination as well as take measures aimed at eliminating racial discrimination, incitement of racial hatred ", - "values": [ - "3 - Considering action" - ] - }, - { - "text": "Continue its efforts to eliminate poverty and reduce disparities in the standards of living in urban and rural areas ", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Strengthen the policy of promoting children rights, with special attention to the trafficking in women and children ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Strengthen the national unit for the protection of human rights within the Department of Foreign Affairs of the Monegasque Government and work towards the establishment of a national human rights institution", - "values": [ - "4 - General action" - ] - }, - { - "text": "Sign the Optional Protocol to the Convention on the Elimination of All Forms of Discrimination against Women.", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Continue implementing policies for the sound expansion and strengthening of special indigenous jurisdiction", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Institute reforms guaranteeing free and fair democratic elections that conform to international standards ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Review its legislation regulating the functioning of NGOs, in particular the Federal Law on Non-Commercial Organizations, with a view to bringing it into accordance with international human rights law ", - "values": [ - "3 - Considering action" - ] - }, - { - "text": "Ensure adequate conditions for human rights institutions, including the Human Rights Commission, to fulfil their functions with sufficient legal, political and financial independence ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Incorporate human rights education into the school curricula ", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Completely abolish the death penalty ", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Continue its measures in combating human trafficking through the effective implementation of its Trafficking in Persons (Offences) Act ", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Completely overhaul the legal system to ensure the compliance of the Constitution and all other domestic legislation with international human rights obligations and standards and, in this regard, amend and-or derogate all legal provisions, including customary law, which result in discrimination, especially on the basis of sexual orientation ", - "values": [ - "3 - Considering action" - ] - }, - { - "text": "Establish a national human rights body in conformity with the Paris Principles", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Consider further cooperation with the international human rights monitoring mechanisms, including treaty bodies and Special procedures of the Human Rights Council ", - "values": [ - "3 - Considering action" - ] - }, - { - "text": "Continue to make efforts to improve the treatment of detainees in prisons ", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Swiftly ratify the Optional Protocol to the the Convention on the Rights of the Child on the involvement of children in armed conflict", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Continue to make progress in the institutional consolidation of the mechanisms responsible for protecting and promoting the rights of persons with disabilities ", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Continue efforts to combat drugs and crime within a framework of the protection of and respect for human rights", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Ensure that public policies for combating poverty are in accordance with the rights recognized in the International Covenant on Economic, Social and Cultural Rights and that they are not negatively affected by commitments that might be undertaken in the context of trade and investment agreements ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Take measures to prevent and prosecute cases of torture and ill- treatment, namely, through the adoption, in its legislation of a definition of torture in compliance with the Convention against Torture and the International Covenant on Civil and Political Rights", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Take necessary measures to ensure the right of other marginalized communities affected by planned economic or development projects to be adequately and fairly consulted", - "values": [ - "4 - General action" - ] - }, - { - "text": "Continue to pursue the adoption and implementation of administrative measures aimed at the promotion and protection of the rights of the child", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Continue its efforts with the technical and financial assistances from the internal community and with the help of the relevant United Nations agencies and bodies for institution-building required for promoting and protecting human rights in the country ", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Consider total elimination of the death penalty from the normative system including all norms of the Military Justice Code that still provide for it in certain cases.", - "values": [ - "3 - Considering action" - ] - }, - { - "text": "Take steps to prevent violence against children, in particular in school, family and penitentiary environments, and engage effectively in the prosecution of all those involved in such violence ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Take measures to fulfill recommendations made by the Committees CEDAW and CERD in respect of the lack of measures aimed at eliminating discrimination against women", - "values": [ - "4 - General action" - ] - }, - { - "text": "Repeal the constitutional provision making it possible to refuse naturalization on the grounds of physical and/or mental disability", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Continue to implement and increase the effectiveness of national policies on persons with disabilities, including on access to education, access to public services, work opportunities, as well as adequate training and public awareness programmes to mainstream the rights of persons with disabilities", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Follow up on the repeated calls to ratify the Convention on the Protection of the Rights of All Migrant Workers and Members of Their Families ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Continue to strengthen measures to eliminate all forms of servitude and forced labour, including with international cooperation and assistance, and social programmes aimed at reducing the vulnerability of the victims of that scourge", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Ensure the effective implementation and enforcement of the legislation on reducing and eliminating discrimination against women", - "values": [ - "4 - General action" - ] - }, - { - "text": "Ensure implementation of the country's National Drug and Control Master Plan in order to address the high prevalence of drug consumption", - "values": [ - "4 - General action" - ] - }, - { - "text": "Continue reforms to improve the judicial system", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Take further steps to reduce gender-based discrimination in the workforce", - "values": [ - "4 - General action" - ] - }, - { - "text": "Continue its efforts to eliminate discrimination against women and intensify awareness-raising campaigns on women's rights", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Provide unhindered access to the United Nations and other international organizations, and accede to the call of the High Commissioner for Human Rights to allow an OHCHR fact-finding mission to \u201cIndian-Occupied Kashmir\u201c to investigate and report on the human rights situation there", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Adopt measures to address the adverse effects of climate change with a human-rights based-approach, and strengthen the strategies for adjustment and management of disaster risk", - "values": [ - "4 - General action" - ] - }, - { - "text": "Pursue the development and adoption of a comprehensive national human rights action plan to strengthen consistency and cooperation in the implementation of related policies and programmes", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Bring its definition of torture into line with that of CAT and accelerate judicial reforms so that acts of torture are not subject to negative prescriptions ", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Make a plan for the submission of all overdue reports to treaty bodies ", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Pursue a policy of mother-tongue language education in conjunction with national languages of Setswana and English.", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Sign and ratify the Optional Protocol to CRC on a communications procedure", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Continue their efforts to address the concerns especially in the fields of combating racism, discrimination, xenophobia, Islamophobia and the protection of the members of more fragile groups, such as migrants", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Consider the adoption of a national strategy to enhance the promotion and protection of human rights of the elderly ", - "values": [ - "3 - Considering action" - ] - }, - { - "text": "Ratify CRPD", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Repeal the National Security Service Act, 2014, or reform it in order to comply with international, regional and national human rights law standards", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Strengthen the ongoing efforts in promoting women's rights", - "values": [ - "4 - General action" - ] - }, - { - "text": "Request the international community to support its efforts with regard to its institutional and policy reforms in the field of national unity and social cohesion, gender equality and the protection of children's rights, by sharing best practices and by providing capacity-building and technical assistance as required ", - "values": [ - "1 - Minimal action" - ] - }, - { - "text": "Take the necessary measures to eliminate female genital mutilation, early marriage and the worst forms of child labour", - "values": [ - "4 - General action" - ] - }, - { - "text": "Elaborate a plan and a timetable to bring the presentation of reports to treaty bodies up to date.", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Continue its efforts in drafting the Human Trafficking Legislation, with the active participation of the civil society", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Adopt a comprehensive strategy on the situation of Aboriginal people at the federal level, to intensify the monitoring of the Nutrition North Canada Program, launched in 2011 and to develop a national plan of action", - "values": [ - "4 - General action" - ] - }, - { - "text": "Bring the 2014 Act on the Commission on Investigation of Enforced Disappeared Persons, Truth and Reconciliation into compliance with international norms, particularly with regard to the definition of amnesty, witness protection and the delays in processing complaints", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Make efforts to fully align its national legislation with all obligations under the Rome Statute ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Prohibit all practices of corporal punishment of children", - "values": [ - "4 - General action" - ] - }, - { - "text": "Carry out an awareness-raising and information campaign aimed at resisting customs and traditions, which have given rise to discriminatory practices and violence against women, especially in the family environment ", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Follow up with their valuable work on human rights issues by ratifying the Optional Protocol to the International Covenant on Economic, Social and Cultural Rights, the International Convention for the Protection of All Persons from Enforced Disappearance, and the 1961 Convention on the Reduction of Statelessness, and by accepting recommendations made by the Human Rights Council mechanisms", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Strengthen the ability to prevent and combat the impunity that often surrounds sexual violence, first of all by prosecuting and bringing to justice those responsible for these crimes", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Strictly implement existing legislation against child labour and expedite the approval of the bill on the prohibition of child labour, in line with the recommendation made by the Committee on Economic, Social and Cultural Rights", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Review legislation with the view of establishing a minimum marriage age at 18 years for both boys and girls, under the Convention on the Rights of the Child", - "values": [ - "3 - Considering action" - ] - }, - { - "text": "Work together with UNHCR ensuring that the asylum-seekers have access to their rights, particularly in compliance with the principle of non- refoulement", - "values": [ - "4 - General action" - ] - }, - { - "text": "Continue to closely monitor hate crime and discrimination cases, including on the Internet and social networks, based on the regular crime prevention strategies adopted by the Government", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Take adequate measures to further defend children's rights", - "values": [ - "4 - General action" - ] - }, - { - "text": "Continue efforts to end child recruitment by the national armed forces and all non-State armed groups", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Ensure that women and girls who are victims of rape and other forms of violence benefit from the medical assistance and the psychological support that they need", - "values": [ - "4 - General action" - ] - }, - { - "text": "Accelerate the ratification process of CAT", - "values": [ - "4 - General action" - ] - }, - { - "text": "Continue to provide Official Development Assistance (ODA) in the areas of socio-economic development", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Take concrete measures to eliminate discriminatory practices against women, and to combat domestic violence", - "values": [ - "4 - General action" - ] - }, - { - "text": "Look into the matter of orphans caught up in the battle for property within the Anglican Church and ensure that orphans are being given experienced caretakers and have their basic rights covered ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Harmonize national legislation with human rights treaties, and in particular withdraw reservations to the International Covenant on Civil and Political Rights ", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Extend and implement a standing invitation to human rights special procedures", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Guarantee freedom of expression, of the press and opinion, including by effectively investigating cases of attacks against journalists", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Reinforce all efforts to preserve the progress achieved in a large number of areas such as justice, promotion of freedom, education and health, the fight against inequality and against child trafficking, and public freedoms ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Continue moving forward with its fitting social policies in the area of economic, social and cultural rights so as to provide the best possible well-being for its population", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Exert further efforts to ensure that all children born in the national territory are registered", - "values": [ - "4 - General action" - ] - }, - { - "text": "Continue efforts to create a national human rights institution", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Guarantee freedom of peaceful assembly, and amend Article 9.4.3 of the Law on Meetings, Assemblies, Rallies and Demonstrations", - "values": [ - "4 - General action" - ] - }, - { - "text": "Continue its policy to improve the lives of certain categories of persons belonging to minorities, such as the "travellers" ", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Allow migrant domestic workers full access to legal remedies in case of abuse and duly investigate all cases of abuse and bring perpetrators to justice. take effective steps to protect migrant workers from attacks from militia groups, ensure that the pre-departure training centres are operated to meet the basic needs of the workers and do not encourage any form of abuse", - "values": [ - "4 - General action" - ] - }, - { - "text": "Continue applying the social economic strategies and development plans of the country in order to achieve the Millennium Development Goals between now and 2015 ", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Intensify its efforts to totally eliminate slavery and slavery-like practices in the country", - "values": [ - "4 - General action" - ] - }, - { - "text": "Provide the Ombudsman Commission with the resources necessary to freely and effectively combat government corruption and police abuses", - "values": [ - "4 - General action" - ] - }, - { - "text": "Set up a comprehensive long-term strategy for refugees and migrants, and to prevent the violation of the principle of non-refoulement/forced return ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Further strengthen measures to combat hate speech and hate crime", - "values": [ - "4 - General action" - ] - }, - { - "text": "Submit without delay its overdue reports under the international human rights treaties to which it is a party, if necessary seeking technical support from OHCHR", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Consider ratifying remaining core human rights treaties, namely: ICESCR, ICCPR, ICERD and CAT", - "values": [ - "3 - Considering action" - ] - }, - { - "text": "Establish a national human rights institution in accordance with the principles relating to the status of national institutions for the promotion and protection of human rights (Paris Principles) ", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Investigate acts of brutality by law enforcement personnel ", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Remedy prison overcrowding and its repercussion on the right to health ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Ensure a favourable environment for the activities of human rights defenders, journalists and other civil society actors ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Intensify efforts to foster national unity and harmony, including by promoting dialogue among societies of different ethnicity and faith", - "values": [ - "4 - General action" - ] - }, - { - "text": "Continue its positive actions for further promoting the rights of disabled people ", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Strengthen the legal protection of ethnic and religious minorities by drafting new legislation enshrining protections provided for under article 125 of the Iraqi Constitution, and amend the penal code to include stronger penalties against perpetrators who attack places of worship", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Ensure that it grants the right to peaceful assembly and freedom of expression in accordance with its international obligations", - "values": [ - "4 - General action" - ] - }, - { - "text": "Redouble efforts in the area of wealth distribution and poverty eradication, including by allocating adequate human and financial resources and by providing support and material assistance to the most marginalized and disadvantaged groups in the country", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Strengthen its efforts to build reconciliation among the social strata in the society, based on the principles of democracy and the rule of law", - "values": [ - "4 - General action" - ] - }, - { - "text": "Promote greater human rights understanding through relevant programmes that inculcate respect, tolerance and intercultural understanding", - "values": [ - "4 - General action" - ] - }, - { - "text": "Continue providing human rights training to security and defence forces and ensure that violations committed by these forces are prosecuted", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Take all necessary measures to promote and facilitate the professional evolution of women to positions of higher responsibilities", - "values": [ - "4 - General action" - ] - }, - { - "text": "Continue to facilitate free access to education for both boys and girls", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "To continue to develop domestic legislation for further protection of the rights of the child", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Put in place measures to protect refugees and asylum-seeking women and girls from economic and sexual exploitation, gender-based violence, including sexual abuse, as well as child and forced marriage and discrimination", - "values": [ - "4 - General action" - ] - }, - { - "text": "Catch up with the accumulated delays in submitting reports to treaty bodies and, to do so, request appropriate assistance from the OHCHR ", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Intensify the efforts and measures to consolidate the state of law and its national mechanisms on human rights ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Take immediate measures to ensure that all children have access to all levels of education and quality health services", - "values": [ - "4 - General action" - ] - }, - { - "text": "Cease its censorship of the media, as well as the harassment and arbitrary detention of journalists, and provide guarantees for the right to freedom of expression and freedom of the media", - "values": [ - "4 - General action" - ] - }, - { - "text": "Continue its efforts to protect its people from the threat of drugs while upholding human rights values", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Seek multilateral and bilateral cooperation with a view to achieving progressively full realization of the rights contained in the ICESCR ", - "values": [ - "1 - Minimal action" - ] - }, - { - "text": "Strengthen the education system to reduce gender disparity and improve the education standard throughout the country", - "values": [ - "4 - General action" - ] - }, - { - "text": "Better apply the existing laws concerning trafficking in children and human beings.", - "values": [ - "4 - General action" - ] - }, - { - "text": "Consider the possibility of adopting a de jure moratorium on executions, with a view to abolishing the death penalty ", - "values": [ - "3 - Considering action" - ] - }, - { - "text": "Attract aid and attention of the international community and donors for further strengthening and supporting human rights institutions working within the framework of the Afghan Government for protection, observance and realization of the human rights ", - "values": [ - "1 - Minimal action" - ] - }, - { - "text": "Continue its efforts aimed at the adoption of legislative measures to enhance equality and combat the discrimination suffered by Portuguese citizens of African descent ", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Continue consultations with non-governmental organisations and civil society in the follow up", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Continue to encourage community initiatives for religious dialogue", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Further strengthen natural resources management to end the diversion of profits to fund armed conflict. ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Promote the fair justice principles consistent with international standards, especially by reviewing the legislation and implementation of pretrial detention ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Ensure that community development councils channel funds for their projects to address the problem of chronic malnutrition, particularly among the indigenous and rural populations", - "values": [ - "4 - General action" - ] - }, - { - "text": "Appoint an Ombudsman and ensure that the institution complies fully with the Paris Principles", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Continue efforts to put an end to all negative cultural practices and stereotypes that discriminate against women", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Increase monitoring and regulate domestic work", - "values": [ - "4 - General action" - ] - }, - { - "text": "Remove the restrictions on freedom of assembly, repeal article 10 of the Law on Freedom of Assembly and ensure that the laws and regulations on demonstrations are in conformity with Kazakhstan's international human rights obligations on freedom of assembly", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Continue improving security of citizens and enhancing protection of particularly vulnerable groups such as women and children as well as promoting equality and countering discrimination with a focus on racial or religious discrimination and that of persons with albinism ", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Allow the establishment of independent newspapers and other media, allow its citizens to access the Internet and the international media, and abolish compulsory indoctrination sessions", - "values": [ - "4 - General action" - ] - }, - { - "text": "Continue its efforts for the implementation of its reform plan of June 2014 concerning the education of American Indian students and make use of education grant available to better meet the needs of American Indian and Alaskan native students", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Consider establishing an independent body or organ charged with monitoring the implementation of the provisions of the Convention on the Rights of the Child ", - "values": [ - "3 - Considering action" - ] - }, - { - "text": "Continue with democratization and reform processes by, inter alia, ensuring an equal playing field for all political parties at all stages of the electoral process and by building a fully civilian parliamentary representation chosen in democratic elections", - "values": [ - "4 - General action" - ] - }, - { - "text": "Consider the ratification of the International Convention for the Protection of All Persons from Enforced Disappearance", - "values": [ - "3 - Considering action" - ] - }, - { - "text": "Take all necessary measures to ensure that its national legislation and policies are brought in line with the obligations as set out in the Convention on the Elimination of All Forms of Discrimination against Women, and to adequately fund the institutions responsible for implementation of this framework", - "values": [ - "4 - General action" - ] - }, - { - "text": "Continue fighting against trafficking of children and violence against women", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Adopt an anti-terrorism law compliant with international standards", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Take necessary measures to implement the National Plan to Combat Torture", - "values": [ - "4 - General action" - ] - }, - { - "text": "Continue strengthening institutional measures to realize economic, social and cultural rights ", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Ensure democratic participation of members of all ethnic minorities and allow unhindered access to all minority areas, including Tibet ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Establish a special section with sufficient powers and resources within the Ombudsperson's office, or task a deputy with addressing child issues exclusively", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Continue to make every effort to ensure full cooperation with the International Criminal Tribunal for the Former Yugoslavia", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Strengthen cooperation with OHCHR with a view to building capacity in the area of human rights.", - "values": [ - "4 - General action" - ] - }, - { - "text": "Ratify the following international instruments: the International Convention for the Protection of All Persons from Enforced Disappearances (CED), OP-CAT and the Optional Protocol to the International Covenant on Economic, Social and Cultural Rights (OP-ICESCR) ", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Redouble its efforts to fight against violence against women and adopt a law on sexual and sexist violence and ensure its implementation", - "values": [ - "4 - General action" - ] - }, - { - "text": "Promote human rights education and training in all types of education, as well as for public officials in order to generate a greater understanding about human rights and help cultivate a human rights culture within the society", - "values": [ - "4 - General action" - ] - }, - { - "text": "Harmonize national legislation with international conventions so as to ensure that its citizens enjoy the human rights set out in such legislation and those conventions, and give international conventions precedence over national legislation ", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Fulfil its obligation under the Agreement on the Resolution of the Conflict in the Republic of South Sudan to cooperate fully in establishing the hybrid court", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Consider passing legislation on family law containing clear and non-discriminatory provisions on marriage, divorce, inheritance and child custody ", - "values": [ - "3 - Considering action" - ] - }, - { - "text": "Pursue and intensify its cooperation with countries interested in combating the phenomenon of terrorism by strictly respecting its bilateral and multilateral commitments ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Continue to work to combat poverty", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Incorporate the recommendations from treaty monitoring bodies and from the special procedures regarding the administration of justice within the Sectorial Plan for Plural Justice 2013-2025", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Take steps to combat racial discrimination encountered by children belonging to certain minorities and adopt legislation to combat discrimination experienced by children living with disabilities since there is no specific legislation in this area ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Ratify the Rome Statute of the ICC and to fully align its national legislation with all obligations under the Rome Statue, including incorporating the Rome Statute definition of crimes and general principles, as well as adopting provisions enabling cooperation with the Court ", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Swiftly accede to the Rome Statute of the International Criminal Court ", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Submit long overdue reports to the Committee on Economic, Social and Cultural Rights, the Committee on the Elimination of Racial Discrimination, the Committee against Torture and the Committee on the Rights of Persons with Disabilities ", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Continue its actions to ensure effective respect of the rights of the child and to fight, in particular, against early marriages by adopting rapidly and implementing the marriage bill", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Raise the age for all enrolments into armed forces to the age of at least 18 years in line with the CRC recommendation", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Reform the judicial system.", - "values": [ - "4 - General action" - ] - }, - { - "text": "Implement various awareness-raising programmes, with a special emphasis on programmes for children", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "If the military involvement in combating organized crimes is necessary, the expanded role of the military must be counterbalanced by measures to reinforce the protection of human rights ", - "values": [ - "4 - General action" - ] - }, - { - "text": "(1) Strengthen semi-official investigation in the event of sexual and domestic violence. (2) Guarantee female victims of such violence full access to justice. (3) Guarantee a safe setting and favourable environment for the exercise by women of their Rights. (4) Safeguard the rights of women affected by violence by armed outlaw bands. (5) Apply the gender perspective to victim care policies and make public servants aware of that perspective.", - "values": [ - "4 - General action" - ] - }, - { - "text": "Effectively implement its female genital mutilation ban while giving young girls proper information about this prohibition", - "values": [ - "4 - General action" - ] - }, - { - "text": "Modify its national legislation in order to eliminate any discriminatory provisions based on gender. ", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Adopt a coherent legal framework for the protection of persons belonging to national minorities", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Consider extending a standing permanent invitation to the special procedures of the Human Rights Council ", - "values": [ - "3 - Considering action" - ] - }, - { - "text": "Restore peace and stability", - "values": [ - "4 - General action" - ] - }, - { - "text": "Further promote gender equality by implementing the Convention on the Elimination of All Forms of Discrimination against Women in terms of access to employment", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Continue to take further measures for the education of persons with disabilities ", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Eliminate all legislative provisions that perpetuate discrimination against women and adopt a comprehensive law on violence against women", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Ratify all of the most significant international human rights instruments, in particular the International Covenant on Civil and Political Rights.", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Continue constructive cooperation with the universal mechanisms for the promotion and protection of human rights and also the practice of cooperation with civil society", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Halt prosecutions of individuals for possessing seditious material critical of the State and the royal family \n\n", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Continue to provide support to women in the economic sphere", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Improve the social security system and make it easily accessible.", - "values": [ - "4 - General action" - ] - }, - { - "text": "Implement the National Plan for the Protection of Defenders", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Endorse the United Nations Declaration on the Rights of Indigenous Peoples when completing its national review process ", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Ratify promptly the International Convention on the Rights of All Migrant Workers and Members of Their Families", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Start a national dialogue with the aim of enacting a national IDP policy consistent with the UN Guiding Principles on Internal Displacement", - "values": [ - "4 - General action" - ] - }, - { - "text": "Ensure the principle of equality before the law and respect for the fundamental rights of all citizens without distinction of any kind, such as sex, race, religion or belief ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Increase teaching time in schools and early learning centres and continue to establish secondary schools offering a full schoolday", - "values": [ - "4 - General action" - ] - }, - { - "text": "Improve the treatment of prisoners and prison conditions ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Intensify its efforts to promote the status of women and continue its commitments to fulfil quality education ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Continue programmes and measures aimed at eliminating poverty and increasing the socio-economic development of the country ", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Enhance programs to ensure the right to food and countering malnutrition of the youngest people in Senegal", - "values": [ - "4 - General action" - ] - }, - { - "text": "Ensure that contested children in a marital dispute have the possibility of maintaining effective contact with the foreign parent living abroad ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Address discrimination against non-citizens, particularly concerning domestic workers, granting them equal protection and rights as to its own citizens ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Improve the functioning and accessibility of the machinery available to victims of rape to ensure that those guilty are brought to justice and punished", - "values": [ - "4 - General action" - ] - }, - { - "text": "Effectively enforce its legislation on domestic violence and expedite the adoption of the Bill on Gender Equality and Violence against Women", - "values": [ - "4 - General action" - ] - }, - { - "text": "Introduce and implement a national child protection framework", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Ensure and allocate sufficient resources for girls' education in all provinces", - "values": [ - "4 - General action" - ] - }, - { - "text": "Introduce measures to promote tolerance and non-discrimination of the LGBT persons ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Continue its socio-economic programmes, reforms and initiatives with a view to enhancing the protection and promotion of fundamental human rights and freedoms", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Strengthen coordination within the new institutions for the protection of minors and persons with disabilities", - "values": [ - "4 - General action" - ] - }, - { - "text": "Adopt, in consultation with civil society, a plan of action to prioritise, ratify and implement key international human rights treaties", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Sign and ratify the United Nations Convention on the Rights of Persons with Disabilities.", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Foresee protection measures for human rights defenders, in accordance with international commitments", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Take appropriate action to guarantee freedoms of expression, association and assembly - including by allowing independent media, political parties and civil society to operate freely - and ceasing the repression and other ill-treatment of human rights defenders and political activists ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Issue an executive order to make the moratorium on the application of the death penalty official, and that the Second Optional Protocol to the International Covenant on Civil and Political Rights, aiming at the abolition of the death penalty be ratified as early as possible", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Ratification and implementation of international human rights treaties, in particular the International Convention for the Protection of All Persons from Enforced Disappearance", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Strengthen measures to implement the law on the protection and well-being of children, particularly in rural areas, so as to prevent children having to work in the fields or in home in order to meet their needs and those of their families", - "values": [ - "4 - General action" - ] - }, - { - "text": "Seek to better enforce statutes protecting immigrant workers from exploitation and mistreatment ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Take measures to guarantee effective access to reparation for women victims of gender-based violence", - "values": [ - "4 - General action" - ] - }, - { - "text": "Include in its national norms recognition and adequate protection of the culture, values and spiritual and religious practices of indigenous peoples", - "values": [ - "4 - General action" - ] - }, - { - "text": "Put in place necessary measures, including legal measures, in order to ensure that women and girls can under no circumstances be criminally prosecuted for seeking or undergoing an abortion", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Continue its existing efforts to implement the national strategy and action plan on the elimination of harmful traditional practices and FGM ", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Ensure equality of access to education, housing and employment especially of the Roma people", - "values": [ - "4 - General action" - ] - }, - { - "text": "Continue the efforts aimed at eliminating all discriminatory treatment based on sexual orientation or gender identity", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Take urgent measures to investigate and sanction acts of discrimination against migrants, refugees and minorities, in particular by ensuring the protection necessary to those who report acts of discrimination", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Establish effective mechanisms to monitor compliance with current legislation and relevant ILO Conventions", - "values": [ - "4 - General action" - ] - }, - { - "text": "Develop further measures with regard to the implementation of the Optional Protocol to the Convention against Torture (CAT) ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Provide victims of torture with adequate reparation in accordance with international human rights obligations", - "values": [ - "4 - General action" - ] - }, - { - "text": "Adopt a law guaranteeing the rights of indigenous people in the country ", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Continue to implement the State policy on immigration, and constantly adjust and improve the policies and measures according to the new situations of the protection of the rights of migrants", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Continue the legislative reforms it has embarked on regarding participatory democracy and political parties", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Review conditions in prison and detention facilities so that they meet international standards, in particular where juveniles are concerned.", - "values": [ - "3 - Considering action" - ] - }, - { - "text": "Continue furthering the sexual and reproductive health and rights of all women by immediately putting an end to camp-based sterilization operations in accordance with the Supreme Court order of 14 September 2016, by ensuring all women access to counselling on and access to the full range of modern contraceptives in a voluntary, safe and quality manner, and by providing comprehensive sexuality education", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Enact legislation abolishing the death penalty as foreseen in the national human rights action plan and in any case review its imposition for offences related to drug trafficking", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Ramp up the quality and access to health care and legal services in rural areas", - "values": [ - "4 - General action" - ] - }, - { - "text": "Remove provisions in the 1982 Citizenship Law that grant citizenship on the basis of ethnicity or race and amend the Law to avoid statelessness", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Establish an effective and inclusive process that includes independent non-governmental organizations, not funded by Governments, to follow up on the recommendations resulting from the present review", - "values": [ - "4 - General action" - ] - }, - { - "text": "Take measures to change social and cultural attitudes that are the root cause of most forms of violence against women", - "values": [ - "4 - General action" - ] - }, - { - "text": "Continue its efforts in realizing the right to work through comprehensive policies for productive and decent employment", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Establish a national human rights institution in accordance with the Paris Principles and provide it with the resources necessary for an effective action", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Abolish de jure the death penalty", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Make available to the Human Rights Council, as an example of sharing best practices, some of its initiatives relating to combating racism and xenophobia as well as promoting tolerance and coexistence among ethnic and religious minorities.", - "values": [ - "1 - Minimal action" - ] - }, - { - "text": "Accelerate the legislative process for the rapid accession to the Rome Statute of the ICC and the Agreement on Privileges and Immunities of the ICC ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Provide for reintegration projects for children and women escaping from Al Shaabab-controlled areas ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Increase efforts to reinforce the participation of women in decision making posts", - "values": [ - "4 - General action" - ] - }, - { - "text": "Further protect and promote the rights of minorities in the country", - "values": [ - "4 - General action" - ] - }, - { - "text": "Raise the age of criminal responsibility to 12 or above", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Continue its efforts to establish legal and institutional mechanisms to protect children from all forms of physical, sexual and psychological violence ", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Ratify the Domestic Workers Convention, 2011 (No. 189)", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Strengthen its measures to ensure that poverty does not preclude children from attending school and that schools are free from discrimination for girls and boys alike ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Adopt legal and administrative measures aimed at guaranteeing the principle of non-refoulement, in order to prevent extradition or return of asylum seekers and migrants who are at risk of being subject to torture or illtreatment", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Conduct national awareness campaigns concerning the prohibition of FGM.", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Implement the adversarial criminal justice system throughout Panama", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Respect the fundamental rights of ethnic minorities in Xinjiang and Tibet, notably freedom of religion and movement", - "values": [ - "4 - General action" - ] - }, - { - "text": "Continue strengthening the application of the Anti-Terrorism Proclamation, providing education in human rights for those charged with enforcing the law ", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Stress cooperation and constructive dialogue between members and non-members of the Human Rights Council with a view to enhancing the effective execution of the Council's mandate", - "values": [ - "4 - General action" - ] - }, - { - "text": "Accede to and fully align its national legislation with all the obligations under the Rome Statute of the ICC", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Promote and develop the national plan to combat HIV", - "values": [ - "4 - General action" - ] - }, - { - "text": "Spread a human rights culture through school curricula ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Take into serious consideration the possibility to introduce a de facto moratorium on the death penalty with a view to its abolition", - "values": [ - "3 - Considering action" - ] - }, - { - "text": "Consider opening a small permanent mission in Geneva, using facilities provided by the newly opened Commonwealth Small States Office ", - "values": [ - "1 - Minimal action" - ] - }, - { - "text": "Eliminate the practice of 'arraigo' at the Federal and State level and ensure that all detentions are carried out legally and recorded in a national database to which all of the parties will have access", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Take effective measures to eliminate discrimination against the children of indigenous peoples, in particular the Himba and San communities", - "values": [ - "4 - General action" - ] - }, - { - "text": "Strive to ensure the full separation of the judiciary from the executive branch as far as appointments of senior judicial officials are concerned", - "values": [ - "4 - General action" - ] - }, - { - "text": "Cease the recruitment and use of children in armed conflict", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Take additional measures to reform the justice system and enable women to accede to judicial positions.", - "values": [ - "4 - General action" - ] - }, - { - "text": "Consider the possibility of acceding to the International Convention on the Protection of the Rights of All Migrant Workers and Members of Their Families", - "values": [ - "3 - Considering action" - ] - }, - { - "text": "Continue to adopt effective measures to prevent and eradicate violence against women, children and adolescents and provide protection and assistance to the victims", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Encourage Tunisia to work closely with international human rights bodies particularly with relation to the follow-up of UPR recommendations.", - "values": [ - "4 - General action" - ] - }, - { - "text": "Put in place mechanisms for support to victims of human trafficking", - "values": [ - "4 - General action" - ] - }, - { - "text": "Take appropriate measures to develop its internal domestic legislation so as to guarantee economic, social and cultural rights for all.", - "values": [ - "4 - General action" - ] - }, - { - "text": "Ensure that all persons, including human rights defenders and members of civil society, can exercise their legitimate activities without fear of reprisals in conformity with international law and standards ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Continue to carry out the identified constitutional, judicial and police reforms ", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Take measures to punish reported cases of abuses by national security forces.", - "values": [ - "4 - General action" - ] - }, - { - "text": "Safeguard the rights of children and adolescents and enhance the protection accorded to them against all forms of violence, including by, inter alia, the conclusion of the Five Year Plan for the Prevention and Gradual Eradication of the Worst Forms of Child Labour and the Protection of Adolescent Workers", - "values": [ - "4 - General action" - ] - }, - { - "text": "Ensure equality of the rights of children born out of wedlock in unions which have not been sanctioned by courts", - "values": [ - "4 - General action" - ] - }, - { - "text": "Remove from the Criminal Code the penalization of same-sex conduct between consenting adults", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Take further practical steps to enhance the administration of juvenile justice ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Expedite reforms underway with a view to putting in place the CNDHC", - "values": [ - "4 - General action" - ] - }, - { - "text": "Ratify the remaining core human rights treaties, in particular the International Covenant on Economic, Social and Cultural Rights, the Convention against Torture and Other Cruel, Inhuman or Degrading Treatment or Punishment and the International Convention on the Elimination of All Forms of Racial Discrimination, as well as the Convention on the Prevention and Punishment of the Crime of Genocide ", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Continue the efforts directed towards the promotion of the rights of the child", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Take more tangible steps to promote and protect the human rights of its citizens, by continuing to engage all relevant parties in an open and meaningful dialogue", - "values": [ - "4 - General action" - ] - }, - { - "text": "Implement the United Nations Declaration on the Rights of Indigenous Peoples", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Take all measures necessary to eradicate gender violence, including the classification of femicide and its adequate penalization", - "values": [ - "4 - General action" - ] - }, - { - "text": "Continue strengthening the action plan on the trafficking of human beings in order to prevent this crime, providing protection to victims and punishing the perpetrators", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Implement the objectives of its 2005 Action Plan on Peace, Justice and Reconciliation and the National Priority Programme no. 6 in relation to human rights, and prosecute persons who committed grave human rights violations or war crimes ", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Enhance efforts to fight discriminatory attitudes and behaviours against all persons belonging to minority groups, including by allowing the use of one's own language at school and in interaction with the public administration", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Establish an independent witness protection agency that is free of political influence", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Consider adhering to and/or ratifying all those international human rights instruments that have not been adhered to and/or ratified ", - "values": [ - "3 - Considering action" - ] - }, - { - "text": "Consider formulating a National Human Rights Action Plan", - "values": [ - "3 - Considering action" - ] - }, - { - "text": "Take further steps for the protection of national minorities", - "values": [ - "4 - General action" - ] - }, - { - "text": "Establish follow-up mechanisms on the implementation of recommendations made in the framework of the universal periodic review and by treaty bodies", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Provide the National Human Rights Commission with the necessary resources to ensure that it is fully operational and effective ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Increase its endeavours on promotion and protection of women's rights especially in rural areas", - "values": [ - "4 - General action" - ] - }, - { - "text": "Continue its initiative to combat and put an end to the practise of excision.", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Ensure that administrative detention is carried out in accordance with international human rights standards.", - "values": [ - "4 - General action" - ] - }, - { - "text": "Ratify the Optional Protocol to CAT and ICESCR", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Finalize the elaboration of the national action plans on children's and human rights", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Fully and effectively implement the recently adopted laws in order to end threats, attacks and killings of human rights defenders and journalists and ensure prompt and effective investigation to bring those responsible to justice", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Continue the promotion and protection of children's rights", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Not detain, persecute or prosecute returned migrants and asylum seekers and allow the international community, especially the Office of the United Nations High Commissioner for Refugees, access to returnees ", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Request from the international community the necessary help and technical assistance to meet its obligations under international conventions and treaties ", - "values": [ - "1 - Minimal action" - ] - }, - { - "text": "Study the possibility of signing and ratifying ICRMW ", - "values": [ - "3 - Considering action" - ] - }, - { - "text": "Enforce the provisions of the "Law on legal aid" and ensure that practical procedures to obtain free legal aid are enabling applicants to fully enjoy their rights of access to justice", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Continue promoting initiatives in defence of international solidarity ", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Consider in a timely manner the establishment of a national human rights institution, with accreditation status granted by the Intentional Coordinating Committee of National Institutions for the Promotion and Protection of Human Rights", - "values": [ - "3 - Considering action" - ] - }, - { - "text": "Continue to assess effectively the protection of the rights of the child, including child trafficking, the fight against child prostitution and pornography and child labour.", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Adopt standards on trials in criminal cases and also to guarantee the rights of detainees and prisoners, in keeping with best practices and relevant international standards", - "values": [ - "4 - General action" - ] - }, - { - "text": "Establish a moratorium on capital punishment, commuting such crimes to sentences of deprivation of liberty if not, to find a way to harmonize criminal and penal norms and laws with international human rights law", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Repeal articles 12 and 15 of the Sexual Offence Act of 1995 that criminalize sexual relations between consenting individuals of the same sex, which are contradictory to the commitment of non-discrimination", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Respect the independence of the judiciary", - "values": [ - "4 - General action" - ] - }, - { - "text": "Envisage setting up a justice system for minors ", - "values": [ - "3 - Considering action" - ] - }, - { - "text": "Ratify the Rome Statute of the International Criminal Court, signed on 1 October 1999, to implement it in national law ", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Ensure a transparent and enabling environment for non-governmental organisations that allows them to benefit from available support and contribute to the development of a vibrant civil society", - "values": [ - "4 - General action" - ] - }, - { - "text": "Continue its efforts for the promotion and protection of human rights and to continue to promote the role of women in society in order to guarantee quality life for its citizens as planned on viability, development, protection and participation ", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Promote respect for human rights of all discriminated groups on grounds of gender, sexual orientation, disability or ethnicity", - "values": [ - "4 - General action" - ] - }, - { - "text": "Continue guaranteeing labour rights", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Undertake measures to tackle racial discrimination and to combat more resolutely all forms of racism", - "values": [ - "4 - General action" - ] - }, - { - "text": "Enact all the necessary measures to effectively implement the Action Plan to end recruitment of children", - "values": [ - "4 - General action" - ] - }, - { - "text": "Launch public information campaigns and work with religious leaders to raise awareness of the legal rights for women and girls guaranteed in Afghanistan's Constitution, including the legal age for marriage.", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Continue its efforts to guarantee free and quality health services ", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Develop a policy for child protection ensuring a better system of guarantees of the rights of the child", - "values": [ - "4 - General action" - ] - }, - { - "text": "Need to avoid the impact of the draft Defamation Bill, presented in March 2011, which restricts practicing of the freedom of opinion and expression ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Accelerate the establishment of a national preventive mechanism against torture and the process of creating an integrated and permanent national anti-trafficking structure", - "values": [ - "4 - General action" - ] - }, - { - "text": "Continue to take further action to combat the prevalence of HIV-AIDS among children and discrimination against people living with HIV-AIDS by providing adequate treatment and information", - "values": [ - "4 - General action" - ] - }, - { - "text": "Provide access to adequate and affordable housing for everyone ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Promote the rights of temporary workers to family reunification (in conformity with the recommendation on racism and intolerance of the European Commission) in all applicable legislation, including law 9/2012", - "values": [ - "4 - General action" - ] - }, - { - "text": "Take measures related to preventive sexual education for women and men, with a view to prevent early pregnancies and abortion practiced under risk conditions, and strengthen education in rural areas, in order to prevent harmful traditional practices such as FGM or excision", - "values": [ - "4 - General action" - ] - }, - { - "text": "Implement a statelessness status determination procedure to ensure the protection of stateless persons who are not refugees", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Ratify as soon as possible the main international human rights instruments to which it is not yet a party", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Adopt a law abolishing the death penalty ", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Keep on taking efforts in favour of the promotion and protection of the rights of women and children ", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Ratify the core international human rights instruments including the CAT, the Convention on the Rights of Persons with Disabilities and its Optional Protocol, both Optional Protocols to the CRC, the United Nations Protocol to Prevent, Suppress and Punish Trafficking in Persons especially Women and Children and both Optional Protocols to the ICCPR and incorporate them into its national legislation ", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Continue to take actions to eradicate poverty and reduce the disparities between rural and urban communities through providing the basic necessities, quality education, health services, and the creation of jobs and income-generating opportunities for all", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Ensure that measures to control irregular migration do not operate to impede access to primary health care, education and judicial authorities", - "values": [ - "4 - General action" - ] - }, - { - "text": "Commit itself to reinforcing civilian control of the military and civilian security forces, and develop training programmes focused on ensuring respect for the rule of law and human rights ", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Create a national mechanism to prevent torture in conformity with OPCAT", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Ensure increased access to health services and education for all, particularly for rural women", - "values": [ - "4 - General action" - ] - }, - { - "text": "Effectively implement the international instruments ratified that focus on the protection of the child and children's rights.", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Bring its National Human Rights Council in line with the Paris Principles", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Allocate more resources to the education sector ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Continue supporting health and educational institutions, both public and private, so that excessive bureaucratic constraints may not weaken their efficiency ", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Preserve the right to life and do not bring back the use of the death penalty as proposed in the death penalty bill", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Consider signing and ratifying ICRMW ", - "values": [ - "3 - Considering action" - ] - }, - { - "text": "Take all necessary steps to fully commit to end impunity for international crimes by acceding to the Rome Statute of the ICC and to fully align its national legislation with all obligations under the Rome Statute", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Pay due attention to transparency issues of the judiciary", - "values": [ - "4 - General action" - ] - }, - { - "text": "Undertake every effort to promote awareness of the rights of the child", - "values": [ - "4 - General action" - ] - }, - { - "text": "Institute a comprehensive statutory inquiry and compensation scheme in order to guarantee accountability and assist the (women and children) victims (of violence)", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Guarantee an independent and impartial judiciary, including by refraining from undue interference by the executive", - "values": [ - "4 - General action" - ] - }, - { - "text": "Continue to review its national legislation with a view to address the concerns expressed by some treaty bodies concerning the criminalization of domestic violence", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Complete the process of aligning national legislation with its obligations under the Rome Statute and the CAT", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Issue an open and standing invitation to all special procedures", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Promote the completion of the existing initiative to establish a national human rights institution, in compliance with the Paris Principles", - "values": [ - "4 - General action" - ] - }, - { - "text": "Strengthen existing law and practice to counter trafficking in human beings for sexual and labour exploitation, particularly of young women, focusing also on the situation in conflict-affected areas where the risk of being exposed to sexual violence or trafficking is higher", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Create an NHRI in conformity with the Paris Principles ", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Ratify the Optional Protocol to the ICCPR aiming at the abolition of the death penalty.", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Strengthen its efforts to combat traditional practices that are harmful to women and children, particularly, female genital mutilation", - "values": [ - "4 - General action" - ] - }, - { - "text": "Intensify its effort in the promotion and protection of the rights of women by, inter alia, ratifying the Convention on the Elimination of All Forms of Discrimination against Women, revising discriminatory legal provisions and effectively enforcing its law to fight against gender-based violence", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Lift its reservations to articles 26 (c), 37 and 40 of the CRC ", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Continue to strengthen its successful educational policies in order to provide the greatest welfare and quality of life to its people", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Implement effective and coordinated measures to prevent violence against women, especially against young women and girls", - "values": [ - "4 - General action" - ] - }, - { - "text": "Promote understanding, tolerance and friendship among the peoples of the world ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Consider the abolition of juvenile execution", - "values": [ - "3 - Considering action" - ] - }, - { - "text": "Repeal or amend relevant articles of the Penal Code, such as those regarding defamation or the discrediting of judicial decisions, which would bring Cambodia's domestic legislation into line with its international human rights obligations on freedom of expression ", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Take further steps to solve the problem of overcrowding in prisons and to ensure legal responsibility for the spread of racial and religious intolerance through the press ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Further promote employment ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Try to address the intractable problem of providing education and health services to certain categories of children with disabilities, with appropriate assistance from regional and international partners", - "values": [ - "4 - General action" - ] - }, - { - "text": "Further step up its national and international efforts to prevent and eradicate human trafficking, including effective protection for the victims of trafficking ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Provide access to basic services such as health, education and justice to populations living in remote areas", - "values": [ - "4 - General action" - ] - }, - { - "text": "Take concrete actions to guarantee the effective realization of free education and make sure that children finish their primary education, while addressing gender disparities in this regard ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Take further steps to improve implementation of its laws on female genital mutilation (FGM) and ensure prosecution through the appropriate judicial channels", - "values": [ - "4 - General action" - ] - }, - { - "text": "Consider promoting access to education for girls from ethnic minorities and remove barriers that impede access to education by Roma children", - "values": [ - "3 - Considering action" - ] - }, - { - "text": "Continue to combat hate crimes and hate speech, and ensure that the provisions of the Prevention and Combating of Hate Crimes and Hate Speech Bill cannot be used to restrict the rights to freedom of expression and religion", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Continue its efforts to combat prejudice and negative racial stereotyping", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Become a state party of the Convention on the Rights of Persons with Disabilities ", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Work more closely with the human rights mechanisms in seeking practical solutions to the various elements that have the power to seriously threaten peace and stability ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Continue efforts aimed at harmonization of legislation and public policies with the Convention on the Rights of the Child", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Put in place a follow-up and evaluation mechanism on the situation of protection of children and strengthen the institutions working in that area", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Define new transitional measures, including the creation of a national transitional council, in accordance with the recommendation made by the Secretary-General of the United Nations", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Unconditionally release all remaining political prisoners and allow them to reintegrate fully into their communities without prejudice", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Undertake awareness-raising campaigns and programmes to promote tolerance and to address violence against lesbian, gay, bisexual, transgender and intersex persons", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Abolish legislation discriminating against women in the fields of property ownership, access to credit and inheritance", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Continue giving priority to the funding for education so as to attain inclusive education for all Peruvian children", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Step up efforts to eliminate hazardous work conditions for children working in the agricultural sector ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Continue to earmark sufficient funds for all child protection programs ", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Work toward strengthening security to allow a harmonious development of the country ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Cooperate with the international community to sufficiently improve the human rights situation of IDPs", - "values": [ - "4 - General action" - ] - }, - { - "text": "Continue its efforts in the direction of providing for freedom of thought, conscience and religion as well as an environment of religious tolerance existing in Ethiopia ", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Actively support the non-governmental organizations that have effective programmes in promoting human rights and inter-ethnic tolerance in Transnistria", - "values": [ - "4 - General action" - ] - }, - { - "text": "Continue efforts to protect the rights of the child, by taking all necessary measures to combat violence against children and child labour", - "values": [ - "4 - General action" - ] - }, - { - "text": "Fully cooperate with the United Nations human rights mechanisms, including in particular the Commission of Inquiry mandated by the Human Rights Council", - "values": [ - "4 - General action" - ] - }, - { - "text": "Consider ratification of the Second Optional Protocol to the International Covenant on Civil and Political Rights with a view to a de jure abolishing of the death penalty", - "values": [ - "3 - Considering action" - ] - }, - { - "text": "Continue to reform its domestic child protection system in order to end institutional residential care and move towards a community based model", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Provide material and psychological support to victims of sexual violence and undertake extensive educational campaigns to inform women of their rights", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Ensure that the authorities and police services put in place appropriate measures to eradicate domestic violence, beginning with the adoption and implementation of the draft law on domestic violence to which the Armenian delegation referred", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Reconsider the general reservation on the Convention on the Rights of the Child with the aim of lifting it and fully accede to the three Optional Protocols to CRC", - "values": [ - "3 - Considering action" - ] - }, - { - "text": "Strengthen measures to prevent abuses by some law enforcement officials, including through providing appropriate human rights training", - "values": [ - "4 - General action" - ] - }, - { - "text": "Take steps to make the judiciary more representative of Mauritanian society in terms of ethnic and social origin, language and gender ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Costa Rica will continue working to establish an inter-institutional human rights commission, which will, inter alia, publicize and follow up on the recommendations from treaty bodies and the Universal Periodic Review,", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Combat all forms of discrimination, including those relating to sexual orientation and identity", - "values": [ - "4 - General action" - ] - }, - { - "text": "Release all political prisoners", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Ratify the International Convention on the Protection of the Rights of All Migrants Workers and Members of Their Families ", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Continue its efforts to ensure equal access to education throughout its territory for all, without distinction as to sex or social origins", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Continue to work towards the protection and defence of the rights of migrants", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Resolve outstanding commitments with the human rights mechanisms and special procedures through the preparation of outstanding reports and the facilitation of requested visits of three Special Rapporteurs", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Review national legislation in order to ensure equal political participation for ethnic and religious minorities", - "values": [ - "3 - Considering action" - ] - }, - { - "text": "Promptly ratify the International Convention on the Protection of the Rights of All Migrant Workers and Members of Their Families", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Continue measures aimed at maintaining the national legislation consistent with international human rights instruments ", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Ratify the Convention against Torture and Other Cruel, Inhuman or Degrading Treatment or Punishment and its the Optional Protocol ", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Ratify the International Convention for the Protection of All Persons against Enforced Disappearance, signed in 2008, without reservations and recognize the competency of the Committee on Enforced Disappearance to receive and examine communications", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Take measures aimed at guaranteeing targeted support for persons living under the poverty line, paying particular attention to the situation of children, single-parent families and the rural population", - "values": [ - "4 - General action" - ] - }, - { - "text": "Design a strategy to manage resources more efficiently, so as to deal with the most pressing human rights issues, and pay particular attention to the marginalized sectors of the population", - "values": [ - "4 - General action" - ] - }, - { - "text": "Raise the minimum age of marriage to 18 years and ensure marriage with the legal requirement of free consent of spouses through amendments to the Civil Code and the Family Protection Law", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Take effective measures to combat direct and indirect discrimination against persons living in the ger districts", - "values": [ - "4 - General action" - ] - }, - { - "text": "Review the law on demonstrations and the so-called law on "foreign agents", in order to allow NGOs to freely carry out their activities in Russia ", - "values": [ - "3 - Considering action" - ] - }, - { - "text": "Continue its policies aimed at ensuring the enjoyment by all segments of society of their rights to food and social services", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Implement, strictly, the Convention on the Elimination of All Forms of Discrimination against Women and accede to its Optional Protocol", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Remove reservations to core human rights instruments including the Convention against Torture, the International Convention on the Elimination of All Forms of Racial Discrimination, the Convention on the Elimination of all Forms of Discrimination against Women and the International Convention on the Protection of the Rights of All Migrant Workers and Members of Their Families", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Abrogate the penal provisions envisaging recourse to corporal punishment ", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Examine the possibility of joining the Convention on Migrant Workers and Members of Their Families", - "values": [ - "3 - Considering action" - ] - }, - { - "text": "Strengthen anti-poverty policies", - "values": [ - "4 - General action" - ] - }, - { - "text": "Continue advancing the consolidation of its National Human Rights Institution in conformity with the Paris Principles ", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "End discrimination in law and practice against religious and ethnic minorities, in particular against Muslims, and ensure full protection of their rights", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Take concrete steps to assure freedom of expression and to guarantee the protection of peaceful protesters", - "values": [ - "4 - General action" - ] - }, - { - "text": "Finalise and implement a National Action Plan on the Rights of the Child as a matter of priority, in the meantime, put measures in place to protect those who are vulnerable such as unaccompanied children and children with disabilities", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Take effective legal measures to prevent and combat all forms and manifestations of Islamophobia by political parties and media, ensure that all allegations of racist misconduct by law enforcement officials are effectively investigated and appropriately punished ", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Facilitate the integration and naturalization of stateless persons who are permanent residents", - "values": [ - "4 - General action" - ] - }, - { - "text": "Expand efforts to protect and promote the rights of migrant workers ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Make improvements to the security and justice sectors, including in areas of law, doctrine, training and equipment, that are necessary to protect demonstrators and consistent with international human rights obligations ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Continue the implementation of immunization and health information programs", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Increase measures to provide judges with continuous training on the areas of principles, jurisprudence and international human rights principles, in line with the recommendations of the Special Rapporteur on the independence of judges and lawyers", - "values": [ - "4 - General action" - ] - }, - { - "text": "Continues its efforts to ensure greater representation of women in high-level policy and decision making institutions ", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Redouble efforts to combat scourges leading to violations of children's rights as listed in paragraph 38 of the national report ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Take measures to ensure the right to freedom of expression, including guaranteeing unhindered access for independent media to airtime and the Internet, and to introduce criminal measures for the threatening of journalists and media outlets ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Further strengthen efforts to eliminate the gender wage gap through temporary special measures", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Introduce appropriate law to prohibit racially motivated activities and to punish perpetrators of such acts, including law enforcement agents ", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Raise the age of marriage to 18 and above in order to reduce on the problems of early marriages", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Continue supporting efforts to empower women and to promote and protect children's rights, including by providing adequate financial and human resources to implement policies and programmes afforded to them", - "values": [ - "4 - General action" - ] - }, - { - "text": "Consider ratifying the International Convention on the Protection of the Rights of All Migrant Workers and Members of Their Families (ICRMW)", - "values": [ - "3 - Considering action" - ] - }, - { - "text": "Redouble efforts in combating corruption at all levels", - "values": [ - "4 - General action" - ] - }, - { - "text": "Implement the Law on Access to information as well as the National Strategy to prevent and fight early and forced marriage", - "values": [ - "4 - General action" - ] - }, - { - "text": "Continue its efforts to promote and improve the situation of women and to combat discrimination against them", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Continue the promotion of the rights of national minorities, as well as governmental policy on combating discrimination", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Continue the application of the rights related to good living including food sovereignty and healthy environment ", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Continue constructive cooperation with the Office of the United Nations High Commissioner for Human Rights to build national capacities in order to protect and promote human rights within the framework of the Memorandum of Understanding signed between them in 2012", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Consider ratifying CAT ", - "values": [ - "3 - Considering action" - ] - }, - { - "text": "Abolish the capital punishment in all cases and in all circumstances, as well as ratify the Second Optional Protocol to the International Covenant on Civil and Political Rights, aiming at the abolition of death penalty", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Ensure that no disadvantage shall result for citizens from the exercise of their right to identify themselves as belonging to any ethnic minority group", - "values": [ - "4 - General action" - ] - }, - { - "text": "Consider signing and ratifying the International Convention for the Protection of All Persons from Enforced Disappearance and the International Convention on the Protection of the Rights of All Migrant Workers and Members of Their Families ", - "values": [ - "3 - Considering action" - ] - }, - { - "text": "Develop an adequate identification mechanism for vulnerable persons and grant free legal aid from the beginning of the asylum procedure", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Intensify efforts in the fight against violence against women and child abuse, to guarantee that normative and institutional measures adopted are effective to address the problem", - "values": [ - "4 - General action" - ] - }, - { - "text": "Permit peaceful protests to occur throughout the country, including in Baku city centre, and fully investigate the allegations of harassment of legal professionals representing peaceful demonstrators ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Continue to promote and protect human rights internationally through bilateral and multilateral dialogue to enhance human right capacity regionally across the Asia-Pacific and globally through the AusAID programme ", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Criminalize human trafficking ", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Ratify the third optional protocol to the Convention on the Rights of the Child on a communications procedure as it reinforces and complements national and regional mechanisms", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Step up its efforts towards ratifying the Convention against Torture", - "values": [ - "4 - General action" - ] - }, - { - "text": "Continue promoting the participation of civil society in public social policies ", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Continue strengthening its proper social policies in order to provide greater well-being and living standard to its people, for which international support and cooperation are fundamental", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Further intensify training for State and local authorities and the public at large on international human rights standards, particularly those in relation to sexual orientation and gender identity", - "values": [ - "4 - General action" - ] - }, - { - "text": "Continue using its sovereign right to apply the death penalty as a tool of criminal justice in accordance with the proper safeguards specified under international human rights law ", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "With reference to a recommendation of the ICJ (International Commission of Jurists), adopt legislation to enable registered South African companies to be held liable for violations of human and labour rights beyond South Africa's borders ", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Adopt specific legislation to provide women with sufficient protection against all discriminatory practices", - "values": [ - "4 - General action" - ] - }, - { - "text": "Ensure that the implementation of indigenous systems of justice conforms to international human rights standards, including those set out in the Convention on the Elimination of All Forms of Discrimination against Women", - "values": [ - "4 - General action" - ] - }, - { - "text": "Continue and strengthen its efforts to avoid ill-treatment of prisoners, while ensuring that all cases of abuse and excessive use of force by authorities be investigated and appropriate measures be taken.", - "values": [ - "4 - General action" - ] - }, - { - "text": "Amend the Law of Criminal Procedure in order to avoid the cases of indefinite extension of the preliminary investigation ", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Continue incorporating the gender perspective in the design and implementation of policies, and guarantee that the development agenda pays equal attention to the concerns of women", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Implement more effective protection measures to address the problem of the sexual harassment and the trafficking in women women, and, in that\ncontext, to implement the recommendations of the Committee on the Elimination of Discrimination against Women and the Human Rights Committee\n", - "values": [ - "4 - General action" - ] - }, - { - "text": "Continue, with the assistance from the relevant international organizations such as the WHO, to enhance access to health care by women and further reduce the maternal mortality rate, especially in the rural areas ", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Establish a mechanism making mandatory independent visits to all places where persons may be deprived of their liberty, including all military or national security facilities", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Take a systematic approach that includes, inter alia, stringent selection processes for and effective supervision of conduct of public officials and judges, as well as human rights training.", - "values": [ - "4 - General action" - ] - }, - { - "text": "Consider the ratification of the International Convention on the Protection of the Rights of All Migrant Workers and Members of Their Families ICRMW", - "values": [ - "3 - Considering action" - ] - }, - { - "text": "Consider additional measures for improving the socioeconomic conditions of the Swedish Roma population", - "values": [ - "3 - Considering action" - ] - }, - { - "text": "Continue to strengthen the national dialogue through an inclusive and collaborative process", - "values": [ - "4 - General action" - ] - }, - { - "text": "Involve civil society organizations in its follow-up to the universal periodic review", - "values": [ - "4 - General action" - ] - }, - { - "text": "Harmonize its legislation with its human rights obligations towards individual protesters exercising their freedom of expression and opinion and to curtail excessive pretrial detention.", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Continue with its full cooperation with the human rights international mechanisms, particularly with the treaty bodies ", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Consider recognizing the competence of the Committee on the Elimination of Racial Discrimination to receive and consider individual complaints", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Make economic, social and cultural rights a first priority, which means allocating sufficient resources", - "values": [ - "4 - General action" - ] - }, - { - "text": "Ensure separation of juvenile offenders from adult inmates ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Implement their "Diversity Enriches" programme to promote inclusion, tolerance and integration of people from different backgrounds, nationalities, religions, genders and sexual orientations", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Take legal and institutional measures to ensure that the reform of the security sector guarantees the strengthening of civil, institutional and legal control of the security forces, as well as their operation within the framework of international human rights obligations", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Adopt measures to protect women\u2019s rights, including by strengthening of laws against sexual violence and ensuring the equal participation of women in political and public affairs", - "values": [ - "4 - General action" - ] - }, - { - "text": "Strengthen the implementation of the national programme to combat HIV and sexually transmitted diseases and ensure that discrimination against persons with HIV be prohibited", - "values": [ - "4 - General action" - ] - }, - { - "text": "Maintain the de facto moratorium, to continue consultations on changing the mandatory death sentence for murder and treason, and also take appropriate steps to reach a permanent abolition of the death penalty.", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Strengthen women's representation in the Parliament and Government", - "values": [ - "4 - General action" - ] - }, - { - "text": "Take steps to increase the participation of women in politics, including through the implementation of measures on affirmative action or quotas", - "values": [ - "4 - General action" - ] - }, - { - "text": "Open crossing points.", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Encourage the national human rights institution to seek accreditation from the international coordinating committee ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Strengthen the system for monitoring international recommendations, by giving the permanent national commission sufficient resources to carry out its mission", - "values": [ - "4 - General action" - ] - }, - { - "text": "Carry out an in-depth review of the country's legal system so as to ensure that the Constitution and other national laws are compatible with international human rights obligations and standards. In this connection, amend and-or repeal all laws that have a discriminatory effect, including customary norms", - "values": [ - "3 - Considering action" - ] - }, - { - "text": "Continue efforts to eradicate violence against women ", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Continue to support the Support Fund for the Admission, Integration and Education of Immigrants, as well as to support the work of various civil society organizations that work in favour of immigrants and that receive public funds to that end ", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Continue to fight violence against women in all fields", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Amend or repeal national laws that discriminate against women and do not prevent violence against women sufficiently, including family laws, laws and procedures related to the authority of guardians of women, nationality laws and housing regulations", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Introduce awareness-raising programmes aimed at positive contributions of persons with disabilities together with further measures to enhance their participation in decision-making processes.", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Step up its efforts in promoting and protecting human rights of migrant workers in the country", - "values": [ - "4 - General action" - ] - }, - { - "text": "Pursue efforts aiming towards putting an end to social inequality ", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Expand the human rights education campaign to law enforcement officers, especially on the rights of women, children, the elderly and minorities ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Continue strengthening its successful social policies in favour of the most vulnerable sectors of its people, with the assistance and cooperation of the international community required by the country", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Continue to enhance access to education", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Continue to implement the National Strategy for Preventing and Combating Violence against Children", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Ratify CAT.", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Introduce structured coordination between the Confederation, the cantons and civil society with regard to the implementation of the recommendations made in the universal periodic review, to ensure all parts of the Swiss governing system are informed about human rights issues", - "values": [ - "4 - General action" - ] - }, - { - "text": "Incorporate the international framework on the prevention of torture and other cruel, inhuman or degrading treatment in the training of law enforcement officials and other public officials, as well as in the permanent training programme of judges and lawyers", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Take immediate steps to ensure that the Malagasy population has the freedom to assemble and peacefully express their views", - "values": [ - "4 - General action" - ] - }, - { - "text": "Address the issue of school drop-out rates of children and examine related issues of child malnutrition", - "values": [ - "4 - General action" - ] - }, - { - "text": "Establish an independent unit to examine allegations of torture in order to provide reparation to victims of torture and to fight against impunity", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Apply effectively policies against racism and hate speech", - "values": [ - "4 - General action" - ] - }, - { - "text": "Ratify the Rome Statute of the International Criminal Court, including its Agreement on Privileges and Immunities ", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Prepare and implement a national plan of action to promote gender equality and ensure the incorporation of a gender perspective into all levels and spheres, in accordance with the recommendation from CEDAW ", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Take the necessary steps to ensure that all operations of intelligence agencies are monitored by an independent oversight mechanism", - "values": [ - "4 - General action" - ] - }, - { - "text": "Step up efforts to prevent child causalities in counter-terrorism operations, using every method to protect their rights", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Ratify the Optional Protocol to the Convention on the Elimination of all forms of Discrimination against Women", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Finalize implementation of the unimplemented UPR recommendations from the first cycle review", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Increase public awareness measures aimed at discouraging sexual abuse and violence against women", - "values": [ - "4 - General action" - ] - }, - { - "text": "Track and report the investigation and prosecution of security forces that commit human rights violations and abuses", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Continue to adopt measures in order to ensure the protection of the rights of the child", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Launch an awareness raising programme on protection of enjoyment of human rights by persons of minority sexual orientation and gender identity for law enforcement personnel as part of a wider comprehensive campaign to prevent and punish any acts of ill-treatment in detention against persons perceived as belonging to these groups.", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Carry out awareness programmes and sensitivity training on violence and discrimination for law enforcement, judicial and other authorities to prevent discrimination in society based on sexual orientation or gender", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Continue the efforts to ensure the exercise of human rights by the sections of society needing special attention from the authorities", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Continue to promote and protect the rights of women and children ", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Ratify, pursuant to the recommendation of the Committee on Economic, Social and Cultural Rights, the Council of Europe Framework Convention for the Protection of National Minorities ", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Recommended taking the steps needed freedom of association in all its forms", - "values": [ - "4 - General action" - ] - }, - { - "text": "Implement, consistently, norms and public policies to promote the rights of people with disabilities", - "values": [ - "4 - General action" - ] - }, - { - "text": "Continue its pursuit of assistance from the international community to foster its national human rights capacities.", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Strengthen legislation to combat trafficking, sexual and labour exploitation and other types of exploitation of persons, in particular women and children", - "values": [ - "4 - General action" - ] - }, - { - "text": "Abolish the death penalty in national legislation by adopting law No. 5100 on the final abolition of the death penalty", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Consider ratifying the four core ILO conventions related to freedom of association, the right to organize trade unions and collective bargaining, and on the prohibition of forced and compulsory labour", - "values": [ - "4 - General action" - ] - }, - { - "text": "Facilitate reintegration of IDPs in areas of return.", - "values": [ - "4 - General action" - ] - }, - { - "text": "Rehabilitate Myanmar returnees in cooperation with the relevant United Nations agencies ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Develop and implement, in collaboration with civil society, a comprehensive national strategy against gender-based violence, including domestic violence, sexual harassment and harmful traditional practices, including female genital mutilation", - "values": [ - "4 - General action" - ] - }, - { - "text": "Ensure in line with international human rights the protection of women human rights defenders - including through human rights training of the police - so that they can fully participate in society without fear of harassment or violence", - "values": [ - "4 - General action" - ] - }, - { - "text": "Facilitate the access and integration of children with disabilities in public schools", - "values": [ - "4 - General action" - ] - }, - { - "text": "Continue its efforts to strengthen human rights institutions", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Continue Government's efforts with its land reform and resettlement programme, both at the rural and urban level", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Consider ratifying all core human rights conventions", - "values": [ - "3 - Considering action" - ] - }, - { - "text": "Introduce in the Criminal Code the crime of trafficking in children, particularly those trafficked for the purposes of commercial and sexual exploitation", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Take the necessary measures to ensure that all detainees have equal conditions regarding access to a lawyer from the outset of their detention, regardless of the nature of the alleged offense", - "values": [ - "4 - General action" - ] - }, - { - "text": "Consider allocating adequate resources and staff to meet the challenge posed by the increasing number of asylum applications as part of its efforts to improve the process of consideration and reception of migrants and asylum seekers", - "values": [ - "3 - Considering action" - ] - }, - { - "text": "Abolish all laws and regulations discriminating against immigrants ", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Take further measures to strengthen child rights and the child protection system, in particular to prevent sexual and physical abuse, to tackle underage marriage-concubinage and to ensure that children under 18 years are not punished as adults in the judicial system ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Elucidate cases of enforced disappearances in the region of North Caucasus, and sign and ratify CPED ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Accelerate the implementation of the Strategy for People with Disabilities for the period 2017-2030 to strengthen the task force on the support system for people with disabilities, their families and caretakers", - "values": [ - "4 - General action" - ] - }, - { - "text": "Expedite efforts aimed at closing the detention facility at Guantanamo Bay and ensure that all remaining detainees are tried, without delay, in accordance with the relevant international standards ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Consider the possibility of adapting national legislation in order to allow for the ratification of ICRMW", - "values": [ - "3 - Considering action" - ] - }, - { - "text": "Ensure that no arms are traded with regions that deploy child soldiers ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Submit periodic reports on the implementation of the International Convention on the Elimination of All Forms of Racial Discrimination and the Convention against Torture ", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Strengthen existing measures to guarantee the adequate functioning of the penitentiary system, including training of personnel, effective separation of executive and judicial powers, establishment of mechanisms for accountability and separation of the civil and military systems of administration of justice ", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Take measures to strengthen support institutions for homeless persons, including pregnant women left without housing", - "values": [ - "4 - General action" - ] - }, - { - "text": "Give an opportunity to newspapers whose permits have been rejected to appeal the decision to a third party ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Continue to improve its domestic system to protect women against violence and promote gender equality ", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Consider abolishing the death penalty and corporal punishment, in particular against children", - "values": [ - "3 - Considering action" - ] - }, - { - "text": "Consider measures for the early passage of the proposed anti- discrimination law now being considered by its parliament ", - "values": [ - "3 - Considering action" - ] - }, - { - "text": "Develop the penal legislation concerning discrimination and violence against women in a comprehensive manner", - "values": [ - "4 - General action" - ] - }, - { - "text": "Further strengthen cooperation with the Human Rights Council and its mechanism", - "values": [ - "4 - General action" - ] - }, - { - "text": "Ensure the passage of the Anti-Discrimination Act", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Give attention to the protection of the rights of women and children, including through the adoption of the necessary legislative measures ", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Enact relevant legislation to promote and protect the rights of children in all settings", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Thoroughly investigate allegations of human rights violations by members of the Afghan National Security Forces, and hold perpetrators accountable ", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Abolish criminal sanctions for media offences", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Promptly ratify the Convention on the Rights of Persons with Disabilities", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Strengthen the measures to ensure gender equality, as well as to prevent violence against women ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Intensify efforts to combat cases of torture and other ill-treatment by State agents, establishing an independent and effective national mechanism for the prevention of torture", - "values": [ - "4 - General action" - ] - }, - { - "text": "Take the necessary measures in order to improve conditions of detention", - "values": [ - "4 - General action" - ] - }, - { - "text": "Ratify the International Covenant on Economic, Social and Cultural Rights ", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Continue making efforts to incorporate an ethno-racial dimension in all plans and programmes aimed combating discrimination ", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Adopt specific measures to improve effectively the situation of children living in the streets of big cities and children with disabilities ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Ratify OP-CAT, to establish a national mechanism to visit all places of detention ", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Launch an open dialogue with the civil society with a view to identifying and adopting further measures aimed at preventing possible abuses committed by police and security forces, and ensure that the victims and their relatives have access to fair and independent justice ", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Ratify the Second Optional Protocol to the International Covenant on Civil and Political Rights to abolish the death penalty.", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Seek technical and financial assistance from United Nations partners and specialized agencies to fill in the gaps in its legislation so as to ensure better treatment for children with disabilities and those at a disadvantage ", - "values": [ - "1 - Minimal action" - ] - }, - { - "text": "Guarantee the independence of the judicial system, ensuring transparency and a democratic character in the process in the selection of judges ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Establish awareness campaigns on the prohibition of harmful traditional practices such as female genital mutilation and Trokosi", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Further efforts to foster intercultural dialogue, tolerance and understanding among the different communities and groups living in Bosnia and Herzegovina", - "values": [ - "4 - General action" - ] - }, - { - "text": "Adopt plans and programmes related to trafficking in persons ", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Enact law that will address the spread of discrimination, incitement of hatred against Muslims and members of national, ethnic, religious and linguistic minorities in Myanmar", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Intensify the efforts aimed at ensuring that those responsible for acts of sexual violence against women are brought to justice.", - "values": [ - "4 - General action" - ] - }, - { - "text": "Implement a strategy to support the law banning female genital mutilation, including an awareness and education campaign ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Improve the detention conditions of undocumented migrants, ensure that they are not detained and deprived of their liberty for prolonged periods and that they have all services available, including access to health, psychological assistance, and appropriate physical infrastructure and sanitation ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Take effective measures to further implement the normative framework for combating violence against women, including by allocating sufficient resources for the construction of shelters for victims", - "values": [ - "4 - General action" - ] - }, - { - "text": "Set up its efforts for the effective implementation of those mechanisms allowing for the application of the Domestic Violence Prevention and Protection Act", - "values": [ - "4 - General action" - ] - }, - { - "text": "Amend relevant articles of the Law on Foundations and allow the Turkish Muslim minority to have full power over the control and supervision of its foundations ", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Effectively investigate and prosecute crimes and violations against human rights defenders and journalists, and ensure that those responsible are punished - furthermore adopt appropriate measures to disseminate widely and ensure full observance of the Declaration on Human Rights Defenders ", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Take efficient measures to overcome the consequences of food and financial crises", - "values": [ - "4 - General action" - ] - }, - { - "text": "Continue to strengthen and protect the rights of minorities", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Strengthen human rights education and training programmes for the police and law enforcement forces, in particular those working in penitentiary establishments", - "values": [ - "4 - General action" - ] - }, - { - "text": "Consider taking steps to formally establish a de jure moratorium on the use of the death penalty with a view to its legal abolition", - "values": [ - "3 - Considering action" - ] - }, - { - "text": "Maintain its efforts for not applying death penalty", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Pursue its review of laws that are not in line with international norms", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Fight against impunity of the perpetrators of human rights violations, particularly those perpetrated during the civil war which have not been judged by the Special Tribunal for Sierra Leone, as well as those perpetrated by members of the law enforcement agencies", - "values": [ - "4 - General action" - ] - }, - { - "text": "Develop human rights education and training to members of the police, military, prison and detention staff and judiciary in order to include specific focus on the protection of the rights of women, children and persons of minority ethnicity or sexual orientation and gender identity", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Give central attention to the consideration of human rights in the elaboration of a European Pact on Migration and to ensure that in its implementation all human rights are guaranteed for migrants regardless of their status.", - "values": [ - "4 - General action" - ] - }, - { - "text": "Finalize the national policy framework on human rights, in consultation with stakeholders", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Ensure access to religious sites, particularly in the Holy City of Jerusalem", - "values": [ - "4 - General action" - ] - }, - { - "text": "Take steps to further strength the framework for the protection of family rights, including early adoption and implementation of the Family Code ", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Redouble its efforts to firmly combat discriminatory practices ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Continue to make efforts to progressively introduce an inclusive education system for the children with disabilities", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Ensure prosecution in cases where xenophobic crimes against racial and religious minorities are being committed", - "values": [ - "4 - General action" - ] - }, - { - "text": "Confirm its progress relating to the death penalty by definitively abolishing the death penalty and by ratifying the Second Optional Protocol to ICCPR ", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Adopt and implement the Children's Bill", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Translate, publish and make available to the citizens of the country the assessments and recommendations made by international human rights bodies, including the Human Rights Council's universal periodic review ", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Continue its efforts for the development and the wellbeing of its population, particularly through education and training which even some of our countries also benefit from ", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "In accordance with the relevant General Assembly resolution, establish a moratorium on the death penalty as a first step towards global abolition", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "In the area of rights of persons with disabilities, full implementation of the Convention on the Rights of Persons with Disabilities, and the promotion of relevant policies and targeted programmes to provide equal access to services and opportunities to persons with disabilities", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "In response to the growing needs of older persons, consider developing a master plan that would bring under its wing the various initiatives designed to protect the rights of older persons", - "values": [ - "4 - General action" - ] - }, - { - "text": "Strengthen further its efforts in adopting and implementing efficient measures to eliminate domestic violence ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Continue programmes to sensitize the population to ensure the effective implementation of the rights of women and children, and the protection of the family, the elderly and people with disabilities", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Take further action to end discrimination based on gender or sexual orientation in all fields, including in the military", - "values": [ - "4 - General action" - ] - }, - { - "text": "Take steps to improve prison conditions and, particularly, ensure that adults and minor prisoners are separated at all times", - "values": [ - "4 - General action" - ] - }, - { - "text": "Sustain efforts to promote and protect the rights of groups and of the vulnerable population, such as children, women, disabled and elderly persons", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Withdraw its reservations to CEDAW and CRC ", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Ratify the Rome Statute of the International Criminal Court and fully align its legislation with all the obligations under the Rome Statute, including incorporating the Rome Statute definition of crimes and general principles, as well as adopting provisions enabling cooperation with the Court", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Adopt and implement a national action plan on gender-based violence with the support from all sectors within the society, including the judiciary", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Abandon the practice of applying the so-called retrogressive measures whereby members of national minorities are deprived of their rights and freedoms which they had been enjoying and exercising earlier, sometimes for many decades", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Adopt without delay a comprehensive Anti-discrimination Act that prohibits all forms of discrimination, including race, gender, sexual orientation and gender identity", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Take action to address the non-coverage of anti-retroviral treatment for refugees.", - "values": [ - "4 - General action" - ] - }, - { - "text": "Open up and strengthen specialized centres providing care to women victims of violence", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Expedite its efforts to establish an independent national human rights institution in accordance with the Paris Principles", - "values": [ - "4 - General action" - ] - }, - { - "text": "Conclude and adopt the Children's Code as a matter of priority ", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Continue efforts to achieve the country's poverty alleviation goals ", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Re-establish an official moratorium on the use of the death penalty", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Continue to ensure the enjoyment of the rights to education, health and culture to all its citizens, supporting the existing projects and programs that are successful ", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Recommended that features of Tuvalu's legal framework, which incorporates customary law but excludes those precepts which may be perceived as violations of human rights, and which always give precedence to the interpretation of law that is compatible with the international obligations, be singled out as good practices in the field of human rights.", - "values": [ - "1 - Minimal action" - ] - }, - { - "text": "Sweden committed to closely consult civil society and other stakeholders in the follow up of the review, and reiterated its continuous engagement with the Human Rights Council. Sweden expressed that it intended to maintain a high level of ambition regarding the implementation of human rights issues on a national level, and that the UPR process would continue to constitute a vital part of that work.", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Give positive consideration to the prompt ratification of CRPD ", - "values": [ - "3 - Considering action" - ] - }, - { - "text": "Review current legislation and amend as necessary all discriminatory provisions against women and lift all reservations to the Convention on the Elimination of All Forms of Discrimination against Women", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Continue its efforts to empower women ", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Impose a moratorium on executions with a view to abolishing the death penalty nationwide, and ensure that prosecutors in all jurisdictions cease pursuing death sentences", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Take all necessary measures to ensure that women are not discriminated against ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Increase efforts to tackle corruption and impunity of State officials", - "values": [ - "4 - General action" - ] - }, - { - "text": "Continue its endeavours to ensure access to food for all its citizens as a fundamental human right ", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Continue strengthening its capacity and its efforts to combat violence against children", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Further step up efforts to punish and stop extremist crimes, counter racism and xenophobia, and promote greater respect and tolerance for cultural diversity in society", - "values": [ - "4 - General action" - ] - }, - { - "text": "Fully restore the freedom of the media, protecting them from any harassment or intimidation, in accordance with its international obligations", - "values": [ - "4 - General action" - ] - }, - { - "text": "Continue its efforts for the implementation of the Sustainable Development Goals at the grass-roots level", - "values": [ - "4 - General action" - ] - }, - { - "text": "Accelerate the process for the adoption of the third national action plan on human rights in close cooperation with civil society", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Ratify CRC-OP-SC in order to pay special attention to the protection of children ", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Continue to cooperate with the International Criminal Court in order to shed light on the events of September 2009 and to prosecute those who are guilty ", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Strengthen its efforts to provide assistance to victims of trafficking, such as access to education, vocational training and the labour market ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Adopt comprehensive legislation on violence against women and domestic violence as criminal offences, investigate reports of domestic violence and prosecute perpetrators", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Strengthen the independent status of ombudspersons and provide the necessary resources for their effective functioning", - "values": [ - "4 - General action" - ] - }, - { - "text": "Further promote the advancement of gender equality, including the development of a comprehensive national gender action plan", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Establish an independent human rights institution in conformity with the Paris Principles ", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Stop plans to freeze social spending during the next twenty years, that are inconsistent with the international obligations of the country with more than 16 million persons in extreme poverty", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Review surveillance legislation with a view to effectively protecting the right to privacy", - "values": [ - "3 - Considering action" - ] - }, - { - "text": "Complete the process of adopting the Children\u2019s Code currently under examination by the State Council and the criminal laws sanctioning domestic violence and trafficking in persons", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Accelerate the process of designation of the new Ombudsman", - "values": [ - "4 - General action" - ] - }, - { - "text": "Ratify CAT as soon as possible ", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Build on its record and take additional measures to guarantee basic economic and social rights, such as in education and health, in particular for communities such as disabled, lower income persons and people living with HIV and AIDS ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Increase efforts to end discrimination against women and provide adequate access to health-care services for all women ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Enhance efforts to combat domestic violence ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Consider developing Human Rights Indicators as suggested by the OHCHR as an instrument that allows for a more precise and coherent evaluation of national human rights policies", - "values": [ - "3 - Considering action" - ] - }, - { - "text": "Accelerate the enactment of laws that promote the role of women", - "values": [ - "4 - General action" - ] - }, - { - "text": "Step up efforts to provide greater access to education and health", - "values": [ - "4 - General action" - ] - }, - { - "text": "Continue to strengthen awareness-raising campaigns to combat discriminatory practices against women, which still continue despite significant legislative measures that have already been adopted", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Ensure that persons with disabilities enjoy the right to access to justice, including simplified legal actions for reporting cases of discrimination as well as remedies when denied reasonable claims, and that persons with intellectual or psychosocial disabilities can act as witnesses in their own claims", - "values": [ - "4 - General action" - ] - }, - { - "text": "Undertake a comprehensive study on child abuse in order to understand its scope and to suggest ways to prevent it.", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Accede to the Second Optional Protocol to the International Covenant on Civil and Political Rights, aimed at abolishing the death penalty, and take the necessary steps to remove the death penalty from Grenada's justice system ", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Take measures to eliminate the obstacles for women victims of domestic and sexual violence faced when bringing complaints and seeking protection", - "values": [ - "4 - General action" - ] - }, - { - "text": "Address the root causes of its high school-dropout rates, particularly among girls, inter alia by enforcing a zero-tolerance policy with respect to sexual violence and sexual harassment", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Step up its efforts to strengthen the capacity of the police in terms of both number of officers and quality of duty performed, with a view to preventing and eliminating abuses, corruption and excessive use of force by police officers", - "values": [ - "4 - General action" - ] - }, - { - "text": "Take all necessary measures to abolish the death penalty, including by ratifying the Second Optional Protocol to ICCPR ", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Acknowledge the harm done to the victims of sterilization, in particular Roma, and to bring perpetrators to Justice and provide reparations to the victims.", - "values": [ - "4 - General action" - ] - }, - { - "text": "Take the necessary measures for the abolition of death penalty", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Reinforce women's rights within the labour market", - "values": [ - "4 - General action" - ] - }, - { - "text": "Speed up the implementation of the national policy on climate change", - "values": [ - "4 - General action" - ] - }, - { - "text": "Resume the two-way dialogue in Tibet", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Consider enacting legislation that addresses crimes based on sexual orientation", - "values": [ - "3 - Considering action" - ] - }, - { - "text": "Establish a national regulatory framework, in accordance with United Nations guidelines, for the assessment of human rights and the environmental impact of the business activities of multinational corporations headquartered in Japan", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Keep up the fight against human trafficking, illegal recruitment and labour exploitation, including the exploitation of domestic workers, especially of women ", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Call on Djibouti to seek assistance from the international community and OHCHR to provide more support to Djibouti with regard to training and capacity-building in human rights ", - "values": [ - "1 - Minimal action" - ] - }, - { - "text": "Consider enacting a law that guarantees access to public information", - "values": [ - "3 - Considering action" - ] - }, - { - "text": "Not allow the nullification of the signatures already collected to form a minority association, and not raise the threshold of signatures needed on application forms.", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "To present, during the first half of 2012, the pending national reports to the treaty bodies and under human rights conventions", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Introduce a definition of direct and indirect discrimination to prevent discrimination in specific spheres, such as those relating to women, children, migrants and indigenous peoples", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Cease trying civilians in military courts and transfer all such cases to civilian courts", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Increase the representation of women in decision-making positions", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Amend laws to ensure that all persons with disabilities could vote and stand for election", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Take effective measures to combat child poverty ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Seek from the international community the technical assistance necessary to ensure capacity-building in various development fields, in particular those creating work opportunities for young people in cities and rural areas ", - "values": [ - "1 - Minimal action" - ] - }, - { - "text": "Continue efforts already underway to improve the living standards of its people and to ensure the social protection of its people based on a vigorous development of the economy and an appropriate distribution of wealth", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Find ways to overcome the culture of silence and impunity surrounding domestic violence against women, including marital rape, to provide all necessary protection and assistance to victims, to enforce applicable legislation against perpetrators, and to draft specific legislation dealing with these issues ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Adopt a comprehensive national human rights action plan", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Strengthen its efforts to combat human trafficking and provide support services to victims, particularly for women and children and Roma people ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Extend a standing invitation to all special procedures of the Council.", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Pursue the policy of national reconciliation and promotion of the rule of law ", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Ensure that all allegation of human rights violations during and after the February - March 2011 protests by the security forces are independently, promptly and thoroughly investigated, bringing perpetrators to justice and providing victims with due redress and rehabilitation ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Lord Vaea concluded the opening statement by stating that Tonga remained committed to improving the level of its human rights obligations, and requested States to understand and appreciate the unique circumstances Tonga faces in advancing human rights protection.", - "values": [ - "4 - General action" - ] - }, - { - "text": "Continue to implement policies and programmes aimed at fulfilling the interests of the disabled", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Continue to implement the HIV/AIDS prevention, care and treatment programmes to further reduce the prevalence", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Promote human rights in police and judicial cooperation by empowering the human rights units in state institutions through adequate funding, coordination and institutional capacity-building", - "values": [ - "4 - General action" - ] - }, - { - "text": "Consider enacting legislation prohibiting racial discrimination ", - "values": [ - "3 - Considering action" - ] - }, - { - "text": "Strengthen measures to combat impunity with regard to the extreme violence against civilians, and in this regard take into account among others the recommendations of the Special Rapporteur on extrajudicial executions. ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Respect and protect the human rights of internally displaced persons", - "values": [ - "4 - General action" - ] - }, - { - "text": "Enact legislation to ensure the ability of all Swazi citizens, regardless of their sex, to confer citizenship upon their children", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Address gaps in the legislation on the sexual exploitation of children ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Make further efforts with a view to withdrawing reservations to ICCPR and CRC ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Strengthen the efforts aimed at fighting against violence and sexual slavery and at providing medical, legal, psychological and socioeconomic assistance to victims ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Ensure proper investigation into allegations of violations of international humanitarian and human rights law", - "values": [ - "4 - General action" - ] - }, - { - "text": "Reform the registration process to make it easier for organizations to register and work freely.", - "values": [ - "4 - General action" - ] - }, - { - "text": "Recommended an open standing invitation to special procedures visiting the country, particularly relating to the fundamental rights and freedoms of indigenous peoples and the rights of migrants", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Continue its efforts to identify war victims and compensate the damages", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Continue its engagement with various institutions to promote and protect human rights in the regional and international fora ", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Become party to OP-CAT and establish an official national preventive mechanism ", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Accede to the international treaties on human rights and ratify the Second Optional Protocol to ICCPR", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Decriminalize defamation and place it within a civil code in accordance with international standards", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Ensure the protection of human rights for all, including freedom of religion or belief, expression, association and peaceful assembly and the right to participate in public and political life", - "values": [ - "4 - General action" - ] - }, - { - "text": "Abolish any statutory limits on crimes by government officials, like torture, extrajudicial killings, and disappearances, both in respect to legal investigations as well as prosecutions", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Continue implementing its comprehensive national strategy aimed at combating short- and long-term unemployment", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Consolidate current policies for the preventive risk management of violations to the right to life, to liberty, integrity and personal security ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Consider ratifying the First OP-ICCPR and the Second OP-ICCPR, the OP-CAT, the OP-CEDAW, and the International Convention on the Protection of All Persons from Enforced Disappearance", - "values": [ - "3 - Considering action" - ] - }, - { - "text": "Adopt appropriate measures to abolish the death penalty", - "values": [ - "4 - General action" - ] - }, - { - "text": "Adopt policies and measures to guarantee the rights of women in the social, economic and cultural fields, without any form of discrimination ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Fulfill its pledge to review the reservations which it has entered to human rights treaties with a view to withdrawing them", - "values": [ - "3 - Considering action" - ] - }, - { - "text": "Review the legislation related to the minimum age of criminal responsibility in order to comply with international standards ", - "values": [ - "3 - Considering action" - ] - }, - { - "text": "Continue its efforts to combat discrimination, particularly against migrant workers", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Continue to take actions to address the issue of gender pay gap, improve the access to decent work for marginalized women, and ensure adequate social protection system for women in vulnerable situations", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "End the impunity of law enforcement authorities", - "values": [ - "4 - General action" - ] - }, - { - "text": "Diversify interventions in order to decrease the incidence of poverty", - "values": [ - "4 - General action" - ] - }, - { - "text": "Strengthen the implementation of measures and provisions to eradicate all forms of discrimination and sexual violence against women and girls, including the development of programs of dissemination, prevention and assistance", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Prioritize the implementation of the reproductive health law and provide for sanctions against the perpetrators of the crimes of female genital mutilation, early marriage and domestic and sexual violence, ensuring the investigation of the cases as well as the prosecution and punishment of the perpetrators", - "values": [ - "4 - General action" - ] - }, - { - "text": "Continue efforts to ensure that clear, independent and effective complaints mechanisms are in place for individuals' complaints concerning mistreatment by security and law enforcement authorities", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Continue to improve the condition of women and ensure their effective participation in political life by appointing them to political positions of responsibility", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Deal with the issue of trafficking in persons, particularly women and children for sexual exploitation, with the full cooperation of countries in the trafficking chain.", - "values": [ - "4 - General action" - ] - }, - { - "text": "Strengthen efforts to implement the Hague Convention of 1980 on the Civil Aspects of International Child Abduction", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Intensify efforts to harmonize all legislation (including its criminal law) to the Convention on Rights of the Child (CRC) and its Optional Protocol on the sale of children, child prostitution and child pornography, extending their protection up to 18 years ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Continue its efforts to ensure sustainable development and attainment of the goals set out in the Millennium Declaration ", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Repeal all discriminatory provisions against women in domestic legislation, fully incorporating the Convention on the Elimination of All Forms of Discrimination against Women into the national legal framework ", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Ratify the Optional Protocol to the Convention against Torture and the Rome Statute of the International Criminal Court ", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Continue efforts undertaken for the protection and realization of the rights of the child, particularly regarding access to education.", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Take more effective measures to eliminate discrimination against noncitizens in relation to working conditions and work requirements, adopt legislation prohibiting discrimination in employment and take further measures to reduce unemployment among immigrants ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Recommended repealing Hadood and Zina Ordinances.", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Establish without delay a national mechanism to prevent torture, such as provided for by the OP-CAT ", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Ensure the full incorporation of CRC into its domestic legislation ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Take concrete measures for the improvement of the socio-economic status of Roma communities.", - "values": [ - "4 - General action" - ] - }, - { - "text": "Consider increasing the minimum age of marriage", - "values": [ - "3 - Considering action" - ] - }, - { - "text": "Take the necessary measures to effectively eliminate the worst forms of child labour ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Explore ways and means aimed at instilling democratic norms, standards and principles in the country, including through continuous awareness-raising and education ", - "values": [ - "3 - Considering action" - ] - }, - { - "text": "Implement article 3 of the Optional Protocol to the Convention against Torture and other Cruel, Inhuman or Degrading Treatment or Punishment (OP-CAT) and immediately establish an independent national mechanism for the prevention of torture with the mandate to visit all places of detention", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Implement comprehensive measures, in particular in rural areas, to initiate a change with regard to the widely accepted subordination of women and its stereotypes in the country ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Establish an independent human rights institution which fully complies with the Paris Principles ", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Take effective measures for the full enjoyment of human rights by the Roma, Ashkali and Egyptian minorities, especially to guarantee their economic, social and cultural rights.", - "values": [ - "4 - General action" - ] - }, - { - "text": "Continue to act upon the recommendations of the Committee on the Elimination of Discrimination against Women. ", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Investigate and punish in an exemplary fashion cases of disproportionate use of force, racial violence and ill-treatment by law enforcement officers and effectively address racism, discrimination and incitement to racial and religious hatred", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Strengthen measures to combat human trafficking and take measures to protect victims of trafficking", - "values": [ - "4 - General action" - ] - }, - { - "text": "The Government is also looking forward to enhancing cooperation with the Human Rights Council and is committed to serving as a model for change in the region.", - "values": [ - "4 - General action" - ] - }, - { - "text": "Continue efforts to fight violence against women and children ", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Re-establish a moratorium on the death penalty", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Ensure that the basic civil and political rights of civil society organizations are protected in line with the obligations set out in the International Covenant on Civil and Political Rights ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Enact laws to establish a national preventive mechanism in accordance with the Optional Protocol to the Convention against Torture", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Seek the assistance of the international community in promoting conditions of development favourable to the enhancement of human rights and work on the reinforcement of capacity-building for civil-society actors as well as the media in their neighbourhood actions related to awareness-raising and information on human rights ", - "values": [ - "1 - Minimal action" - ] - }, - { - "text": "Review and amend the Comprehensive Act against Violence towards Women (Act 779) to comply with international standards and ensure its effective implementation ", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Make plans to sign and ratify the Optional Protocols to the core human rights treaties, as well as to abolish the death penalty since the effective moratorium does not seem to discourage lower courts from handing down sentences ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Continue the process towards a speedy implementation of the Family Safety Bill, currently being considered, which will render effective the relevant provisions of the Convention on the Elimination of all Forms of Discrimination against Women and the Convention on the Rights of the Child relating to domestic violence issues ", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Continue to invest heavily in education at all levels, invest more in rural development where the majority of women live, and seek technical assistance in the area of fighting disease ", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Take the necessary measures to raise the minimum age of criminal responsibility in order to align it with international human rights standards", - "values": [ - "4 - General action" - ] - }, - { - "text": "Strengthen awareness and prevention measures to address violence against women", - "values": [ - "4 - General action" - ] - }, - { - "text": "Revise the National Human Rights Commission to ensure that it is in conformity with the Paris Principles ", - "values": [ - "3 - Considering action" - ] - }, - { - "text": "Ensure access to education, health, cultural life and services for children with disabilities and give them the necessary support to enable them to exercise their rights as active members of their communities", - "values": [ - "4 - General action" - ] - }, - { - "text": "Demonstrate its commitment to freedom of expression, including by members of the press, by allowing the United Nations unfettered access to complete its investigation of the death of journalist Deyda Hydara in 2004 and the disappearance of journalist Ebrima Manneh in 2006", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Remain a promoter of freedom of expression, at national and international levels, and to review the current text of the Protection of State Information Bill ", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Ratify the other international conventions on human rights to which it is not a party, in particular the convention relating to the rights of migrant workers and members of their families", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Adopt legislation on child protection against all forms of ill-treatment, violence and exploitation, and adopt policies and laws more seriously that can be more effective in order to combat discrimination, rape and sexual harassment", - "values": [ - "4 - General action" - ] - }, - { - "text": "Pursue efforts to combat all forms of discrimination, in particular those based on ethnic origin.", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Ensure that the review of counter-terrorism legislation take account of, and that the relevant legislation be amended in full compliance with, Denmark's human rights obligations", - "values": [ - "4 - General action" - ] - }, - { - "text": "Study the possibility of creating a national system for the follow-up of international recommendations", - "values": [ - "3 - Considering action" - ] - }, - { - "text": "Ensure all human rights violations, including assassination of journalists and human rights defenders, are investigated and the perpetrators brought to justice", - "values": [ - "4 - General action" - ] - }, - { - "text": "Ensure the effective enforcement of laws against trafficking in persons and child prostitution through more effective training of police forces and judicial organs in order to promote better protection for victims ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Pursue its policies to increase schooling at all levels and through all educational systems", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Harmonize its domestic legislation with article 19 of ICCPR and modify the Penal Code in order to decriminalize defamation and bring defamation to the civil jurisdiction ", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Continue efforts to address gaps in social service delivery and education programmes and to address societal discrimination against indigenous persons and individuals belonging to ethnic minority groups ", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Continue to design and implement policies and programmes on pro- poor growth, job creation and income generation", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Develop a national human rights programme to give a new impetus to its commitment and determination to tackle national problems, such as a culture of impunity, arbitrary and extrajudicial executions and a practice of torture and degrading treatment", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Decriminalize same-sex sexual relations between consenting adults by repealing section 104 (1) (b) of the Criminal Code and introduce comprehensive anti-discrimination legislation to provide equal protection against discrimination for all persons and on all grounds", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Consider making additional efforts to facilitate equal access to judicial and administrative remedies for people of African descent and of indigenous origin ", - "values": [ - "3 - Considering action" - ] - }, - { - "text": "Ratify the Convention on the Protection of the Rights of All Migrant Workers and Members of their Families", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Implement the national action plan against the recruitment of children into armed forces", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Continue the enhancement of dialogue between different religions and civilizations, based on the principle of peaceful coexistence and a culture of moderation and tolerance ", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Adopt a comprehensive national policy on the protection of women against all forms of violence and the creation of a supportive environment for women victims of violence by reviewing and strengthening the legal framework", - "values": [ - "4 - General action" - ] - }, - { - "text": "Adopt a comprehensive national plan to combat all forms of violence against women ", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Sign and ratify OP-CEDAW ", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Take necessary measures to allow access to religious services, as well as to education and the media in Romanian language to all persons requesting this all over its territory", - "values": [ - "4 - General action" - ] - }, - { - "text": "Continue its different reforms for the well-being and the full enjoyment of human rights by its population", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Implement strategies in combating gender inequality as well as discriminatory practices against women and strengthen the Gender and Family Issues Unit within the Office of the Deputy Prime Minister in both human and financial terms", - "values": [ - "4 - General action" - ] - }, - { - "text": "Continue efforts to ensure the right to education", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Continue to spread human rights awareness throughout the country and include it in the national curriculum ", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Continue to seek assistance to build enough capacity to develop appropriate human rights indices", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Accelerate the improvement of the judicial, policial and prison systems and training to the police force in line with international human rights standards", - "values": [ - "4 - General action" - ] - }, - { - "text": "Create a mechanism to overcome the difficulties faced by non-Greek speakers during detention and court ruling phases ", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Take measures to guarantee the effective implementation of free education and ensure that children complete primary education, taking also into account gender disparities", - "values": [ - "4 - General action" - ] - }, - { - "text": "Make a concerted effort to prevent the use of child soldiers in its recurrent armed conflict ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Adopt a comprehensive legal framework for refugees and asylum-seekers in conformity with relevant international standards", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Adopt and ratify the Optional Protocol to the Convention on the Rights of the Child on the involvement of children in armed conflict", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Implement recommendations of the 2011 international election observation missions with special emphasis on the enhancement of equal participation of women in political life", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Ensure de jure and de facto protection of fundamental freedoms in order to be in conformity with ICCPR that has been ratified by the Lao People's Democratic Republic. Regarding freedom of expression, lift the restrictions to freedom of press, ensure the independence and pluralism of media, and a safe environment for the work of journalists. Regarding freedom of association, facilitate unhindered action for human rights defenders and NGOs, notably through a reform of their registration system", - "values": [ - "4 - General action" - ] - }, - { - "text": "Keep taking the necessary measures to combat continued deforestation in order to ensure the effective enjoyment of economic, social and cultural rights ", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Take measures to bring the situation of persons in custody in line with international standards, including the length of pre-trial detention", - "values": [ - "4 - General action" - ] - }, - { - "text": "Ratify the ICESCR as an important tool to give greater effectiveness to the protection of human rights in the context of climate change, as well as the International Convention on the Elimination of All Forms of Racial Discrimination and the Convention against Torture", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Take effective measures to bring conditions of detention in line with international standards, notably with regard to the overcrowding of prisons ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Accelerate the adoption of a new comprehensive plan of action on gender equality and ensure its effective implementation", - "values": [ - "4 - General action" - ] - }, - { - "text": "Repeal all relevant provisions in the legislation that are contrary to the country's international obligations with regards to the respect, protection and promotion of the right to freedom of expression ", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Continue consultations in order to achieve abolition of the death penalty ", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Continue and further enhance the measures to combat human trafficking", - "values": [ - "4 - General action" - ] - }, - { - "text": "Intensify efforts to prevent trafficking in human beings, including cross-border trafficking in women for sexual and other exploitative purposes, and increase the number of prosecutions in this respect ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Strengthen measures to combat discrimination against Roma and to bridge the gap between Roma and the rest of society in the field of education, employment, housing, health care and social protection", - "values": [ - "4 - General action" - ] - }, - { - "text": "Acknowledge the harm done to the victims of sterilization, in particular Roma, and bring perpetrators to Justice and provide reparations to the victims.", - "values": [ - "4 - General action" - ] - }, - { - "text": "Improve assistance to vulnerable groups, in particular persons facing mental illness", - "values": [ - "4 - General action" - ] - }, - { - "text": "Establish its national preventive mechanism according to the Protocol to the Convention against Torture", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Become a party to remaining human rights instruments and consider withdrawing its reservations, in particular to International Covenant on Civil and Political Rights", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Ensure equality and non-discrimination between men and women as regards access to land, employment, and economic and political participation", - "values": [ - "4 - General action" - ] - }, - { - "text": "Expedite process for preparation and adoption of national action plan in areas of health and education for equal access to children of African descent ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Continue work in areas of discrimination against women and children", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Take effective and concrete measures to eradicate torture in prison bodies", - "values": [ - "4 - General action" - ] - }, - { - "text": "Take all necessary measures to combat discrimination against homosexuals", - "values": [ - "4 - General action" - ] - }, - { - "text": "End the kidnapping of persons, whatever their country of origin may be", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Prioritise the establishment of a national human rights institution, in line with the Paris Principles and ensure the allocation of necessary human and financial resources to this institution", - "values": [ - "4 - General action" - ] - }, - { - "text": "Develop comprehensive national strategies to address homelessness and poverty", - "values": [ - "4 - General action" - ] - }, - { - "text": "Continue working towards the adoption of the new civil registration law in the country ", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Fully comply with the recommendations of the Committee against Torture and do its utmost to ensure that the security forces operate within the framework of the rule of law.", - "values": [ - "4 - General action" - ] - }, - { - "text": "Stop and investigate military operations targeting civilians and their facilities, especially in Aleppo", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Encourage ratification of the Convention against Discrimination in Education", - "values": [ - "4 - General action" - ] - }, - { - "text": "Consider taking on board the recommendation of the Special Rapporteur on adequate housing, specifically to extend and enhance the national homelessness programme and the Residential Rehabilitation Assistance Programme", - "values": [ - "3 - Considering action" - ] - }, - { - "text": "Prevent all forms of violence against women and girls, particularly sexual abuse and domestic violence, including by adopting a law to prevent, punish and eradicate violence against women", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Accelerate the legislative procedures and judicial reforms aimed at the ratification of the International Convention for the Protection of All Persons from Enforced Disappearance and recognize the competence of its monitoring body", - "values": [ - "4 - General action" - ] - }, - { - "text": "Consider incorporating the UN Standard Minimum Rules for the Treatment of Prisoners and the UN Rules for the Treatment of Women Prisoners and Non-Custodial Measures for Women Offenders, otherwise known as the "Bangkok Rules" as part of its work on the treatment of prisoners", - "values": [ - "3 - Considering action" - ] - }, - { - "text": "Adopt further measures to fight impunity of persons responsible for torture and extrajudicial killings and to conduct prompt, thorough, independent and impartial investigations into allegations of these crimes ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Prevent further closing of bilingual public schools in Carinthia and take additional measures to improve the quality of bilingual education", - "values": [ - "4 - General action" - ] - }, - { - "text": "Continue its efforts to combat domestic violence, especially against vulnerable groups such as women and children ", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Take further measures aimed at ensuring the right to education for all and promote human rights education and training ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Continue ensuring that all detainees have access to a lawyer of their choice, including through the implementation of an enhanced legal aid system that reaches all regions", - "values": [ - "4 - General action" - ] - }, - { - "text": "Allocate adequate resources to realize the Sustainable Development Goal targets to reduce maternal mortality and end preventable deaths of newborns and children under 5", - "values": [ - "4 - General action" - ] - }, - { - "text": "Develop an effective State family policy based on the prevention of separation of children from parents and early intervention measures, supported by an action plan for implementation and specifically designated funding", - "values": [ - "4 - General action" - ] - }, - { - "text": "Pursue its efforts to create a national human rights institution under the Pacific Plan.", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Accelerate the judicial reform, reduce the number of preventive detentions and strengthen efforts to put an end to impunity for police and security forces for any illegal act committed by their members", - "values": [ - "4 - General action" - ] - }, - { - "text": "Strengthen legislation on the prevention and combat of sexual harassment, trafficking in persons and sexual tourism", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "That no amnesty should be granted for violence against women that qualifies as crimes against humanity, in line with Security Council resolutions 1325 (2000) and 1820 (2008) ", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Consider accession to the Optional Protocol to the Convention against Torture (OP-CAT)", - "values": [ - "3 - Considering action" - ] - }, - { - "text": "Address the cultural and economic situation of ethnic minorities ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Ensure the full enjoyment of civil and political rights with a view to the elections scheduled for June 2010, and adopt the measures necessary to prosecute and punish those responsible for the violent events of 28 September 2009", - "values": [ - "4 - General action" - ] - }, - { - "text": "Strengthen its implementation of the laws to protect women and girls from rape and other forms of sexual violence and sexual exploitation and hold accountable those responsible for such crimes ", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Adopt an effective legal framework for the protection of human rights activists in line with the Declaration on Human Rights Defenders. ", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Consolidate access to education, especially for the most vulnerable sectors of the population", - "values": [ - "4 - General action" - ] - }, - { - "text": "Carry out further efforts to increase the transparency and openness of legal proceedings contemplating death sentences", - "values": [ - "4 - General action" - ] - }, - { - "text": "Continue efforts to ensure that primary education becomes free and compulsory for all children ", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Enhance its efforts in fighting discrimination and institutional biases against Maori and Pacific people ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Reimpose the moratorium on the use of the death penalty", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Work to ensure the independence of the judiciary", - "values": [ - "4 - General action" - ] - }, - { - "text": "Continue to improve its policies and programmes towards advancing the status of women, girls' education, children with disabilities, as well as strengthening measures and mechanisms on administration of justice, investments in prison infrastructure, protection of detainees' rights, and the overall enjoyment of civil and political rights", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Intensify the inclusion and integration of children with disabilities into the society and the education system", - "values": [ - "4 - General action" - ] - }, - { - "text": "Make further efforts to respond to communications and questionnaires submitted by the Special Procedures mandate holders ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Deepen its efforts to improve accountability structures with the view to eradicate impunity", - "values": [ - "4 - General action" - ] - }, - { - "text": "Consider the ratification of the Convention for the Protection of all Persons against Enforced Disappearance.", - "values": [ - "3 - Considering action" - ] - }, - { - "text": "Strengthen awareness and education programmes, prevent harmful traditional practices against women and girls and ensure that victims have access to resources and protection and rehabilitation mechanisms", - "values": [ - "4 - General action" - ] - }, - { - "text": "Continue to prioritise public spending on social programmes in order to consolidate the gains made in reducing poverty, increasing access to health services as well as access to social security coverage", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Undertake appropriate measures to further improve the condition of detainees in prisons as stipulated in the United Nations standard minimum rules for the treatment of prisoners.", - "values": [ - "4 - General action" - ] - }, - { - "text": "Meet challenges, particularly high poverty and illiteracy, with the technical and financial assistance of the international community.", - "values": [ - "4 - General action" - ] - }, - { - "text": "Continue developing its juvenile justice system, in terms of both legislation and practice. In particular, continue efforts to ensure that there are adequately trained professionals and adequate infrastructure for adolescents in conflict with the law. Deprivation of liberty should only be used as a measure of last resort and for as short a period as possible ", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Implement policies to ensure the promotion of the rights of women and children, specifically with regard to combating domestic violence and ending discrimination against women ", - "values": [ - "4 - General action" - ] - }, - { - "text": "End its occupation of Palestinian and Arab territory", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Ensure access to justice for victims of sexual violence, ensuring the effective implementation of laws protecting women", - "values": [ - "4 - General action" - ] - }, - { - "text": "Adopt a national action plan for the improvement of the situation for indigenous peoples", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Increase measures to reform the judicial system, including by expediting efforts to draft new legal provisions to ensure the real independence of the judiciary, in order to protect the rights and freedoms of individuals ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Eliminate discrimination, stigmatization and violence against persons based on their sexual orientation and gender identity and, through public dialogue, promote tolerance and a culture of non-discrimination", - "values": [ - "4 - General action" - ] - }, - { - "text": "Provide the Jordanian National Centre for Human Rights and other relevant institutions with adequate human, technical and financial resources so that they can properly fulfil their mandate", - "values": [ - "4 - General action" - ] - }, - { - "text": "Provide full citizenship and rights for the Bidoun population", - "values": [ - "4 - General action" - ] - }, - { - "text": "Introduce a complete integration policy for this specific group (referring to Travellers who continue to suffer from discrimination)", - "values": [ - "4 - General action" - ] - }, - { - "text": "Improve and ensure access to complaint mechanisms for detainees in case of mistreatment.", - "values": [ - "4 - General action" - ] - }, - { - "text": "Thoroughly implement the Child Law and strengthen awareness-raising campaigns to promote children's rights", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Further contribute to the global realization of the right to development including through ensuring that its annual ODAs [Official Development Assistance] matches the internationally agreed level of 0.7% of the GDP", - "values": [ - "4 - General action" - ] - }, - { - "text": "Take effective actions to ensure that women are fully protected from discrimination and violence, including by criminalizing domestic violence against women, adopt legal measures to guarantee full gender equality, and consider withdrawing reservations to the Convention on the Elimination of All Forms of Discrimination against Women ", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Step up efforts to ensure human rights education and training for all ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Create a permanent national protection group responsible for addressing displacements caused by climate change or natural disasters", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Continue to strengthen social policies for the eradication of poverty, in order to increase the quality of life of its people, especially the most vulnerable", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Implement swiftly and without preconditions the verdict of the ECOWAS Court of 10 June 2014 on the need for a thorough investigation into the disappearances of journalists Manneh and Hydara", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Accelerate its judicial reform process to strengthen and guarantee the independence of the judiciary and to address corruption issues within the judiciary system by adopting relevant laws of reform ", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Respect all the historical and human rights of the Palestinians", - "values": [ - "4 - General action" - ] - }, - { - "text": "Continue to eliminate discrimination against children in street situations and rural areas as well as children with disabilities and against other minority groups and take all necessary measures to prevent abuse of their vulnerabilities", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Modify the law on oil industries to reflect the opinion of the ECOWAS court, ensuring that the new legislation includes specific protection of the rights of communities affected by the activities of these companies ", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Provide effective guarantee for the rights of Roma in the fields of education, employment and housing", - "values": [ - "4 - General action" - ] - }, - { - "text": "Maintain the moratorium on the death penalty, followed by the definitive abolition of the death penalty", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Continue the constitutional reform to create a more comprehensive framework for the promotion and protection of human rights", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Consider extending a standing invitation to all special procedures of the Human Rights Council", - "values": [ - "3 - Considering action" - ] - }, - { - "text": "Intensify the fight against prejudices towards minority groups, the Roma in particular", - "values": [ - "4 - General action" - ] - }, - { - "text": "Consider enacting Venice Commission recommendations to bring some of its laws formally in line with its already democratic practices", - "values": [ - "3 - Considering action" - ] - }, - { - "text": "Intensify its efforts in addressing the issues of education, poverty and health", - "values": [ - "4 - General action" - ] - }, - { - "text": "Ratify the United Nations Convention on the Rights of Persons with Disabilities ", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Introduce and disseminate specific awareness-raising programmes for all relevant judicial and police personnel aimed at the protection of children from trafficking ", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Devise a national action plan to address the structural roots of violence, raise awareness, and ensure effective access to justice, redress and protection for indigenous women ", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Commit to implementing the recommendations made after the review of its report submitted to the Committee against Torture and end physical and mental torture of Arab prisoners", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Finalize the establishment of the National Human Rights Institution, which will be in compliance with the Paris Principles ", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Establish the independent children's commission", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Finalize the procedure of accession to the Convention on the Prevention and Punishment of the Crime of Genocide and the Convention 169 concerning Indigenous and Tribal Peoples", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Implement its commitment under the first universal periodic review to ratify the Convention on the Rights of Persons with Disabilities, ensuring the rights and voices of people with a disability lead this process", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Become a party to the remaining United Nations Human Rights instruments ", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Further strengthen its efforts in the areas of equality between women and men, eradicating violence against women, and promoting rights of the child", - "values": [ - "4 - General action" - ] - }, - { - "text": "Take measures to ensure that security forces, including police, armed forces and Basij, do not use excessive force against those exercising their right to freedom of expression, association and assembly", - "values": [ - "4 - General action" - ] - }, - { - "text": "Reinforce plans and programmes to strengthen and guarantee the independence and effectiveness of judicial institutions, by providing them with adequate structures and financial resources", - "values": [ - "4 - General action" - ] - }, - { - "text": "Implement the action plan signed with the United Nations in June 2011 to end current and prevent future recruitment and use of children in the armed forces, and adopt the draft child protection code criminalizing this under domestic law", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Pursue its efforts in the promotion and enhancement of human rights by taking necessary measures to achieve this goal", - "values": [ - "4 - General action" - ] - }, - { - "text": "(1) To give full effect to the new Code in all areas. (2) To provide backing for the Social Protection System to safeguard boys' rights. (3) To bolster policies on comprehensive social and family protection so as to prevent Recruitment. (4) To bring child labour indices down to 5.1 per cent by 2015.", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Adopt and enforce laws against domestic violence, and remove mitigating factors from the punishment of "honour-crimes" against women", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Strengthen legislative measures and public policies designed to preserve the language, culture and religion of minorities ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Take necessary measures to enforce anti-racist laws in the labour market ", - "values": [ - "4 - General action" - ] - }, - { - "text": "(1) Effectively preventing displacement. (2) Making rights-enjoyment indicators consistent. (3) Consolidating the income-generation, re-housing and return programmes and the time forcibly displaced persons have access to them. (4) Reinforcing the differentiated approach. (5) Applying reparation policy to the displaced population.", - "values": [ - "4 - General action" - ] - }, - { - "text": "Allocate more resources to social protection", - "values": [ - "4 - General action" - ] - }, - { - "text": "Continue the socioeconomic programmes for detainees in relation to their post-detention socio-professional reinsertion, in particular in favour of women and youths", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Undertake a review of existing and proposed legislation relating to freedom of expression and media freedom to ensure its alignment with international standards, and more specifically, eliminate any existing criminal defamation provisions, also known as desacato laws ", - "values": [ - "3 - Considering action" - ] - }, - { - "text": "Consolidate its recent progress through implementation of comprehensive anti-discrimination legislation covering sex and sexual orientation, gender identity and intersex status", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Take the necessary measures to combat violence against women", - "values": [ - "4 - General action" - ] - }, - { - "text": "Adopt a moratorium on the use of the death penalty with a view to its abolition ", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Further strengthen the work of the Committee for the Prevention of Early and Enforced Marriages", - "values": [ - "4 - General action" - ] - }, - { - "text": "Continue amending and improving the project of the Protection of State Information Bill as this law, in the form proposed to the Parliament earlier this year, has the potential to undermine the right to access to information and freedom of expression under the pretext of national security and national interest ", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Raise the age of criminal responsibility to 12 years", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Accede to the core international human rights instruments in a timely manner ", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Ensure enforcement of domestic legislation and international standards concerning torture and ill treatment, including by appropriately punishing the perpetrators and that evidence elicited through torture or ill treatment be excluded at trial in all cases ", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Allow the ICRC unrestricted access to all penitentiary facilities, including pre-detention facilities, and provide it with appropriate working conditions ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Speed up the establishment of a National Institution for Human Rights as a new independent concerned party involved in monitoring and promoting human rights in accordance with the Paris Principles, enact laws against any kind of discrimination against indigenous peoples, Roma minorities and foreigners, which most notably in the areas of education, health and employment ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Accede to the 1951 Convention relating to the Status of Refugees and its 1967 Protocol", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Reduce social conflict in the extractive sector by improving consultation with indigenous peoples and joining the Voluntary Principles on Security and Human Rights as a member", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Further strengthen measures to combat poverty, while paying particular attention to persons belonging to vulnerable groups, such as women, children, the elderly and people in rural areas", - "values": [ - "4 - General action" - ] - }, - { - "text": "Create a mechanism to ensure that all internally displaced persons, including 66,151 "Old IDPS" and further 37,123 living with host communities, receive a written statement detailing their entitlements and plans for return to their original homes", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Lobby for the passage of and implement legislation creating a national mechanism to prevent torture", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Ratify the Second Optional Protocol to the International Covenant on Civil and Political Rights aiming at the abolition of the death penalty", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Establish a modern Juvenile Justice System to consolidate the protection of the rights of children ", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Continue its efforts and take further initiatives to combat hate crimes based on sexual orientation", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Continue efforts towards due protection of women who are part of the victim and witness protection programmes", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Take effective measures to safeguard the basic rights of prisoners, provide them with adequate nutritious food and sanitation, and separate juvenile and adult prisoners", - "values": [ - "4 - General action" - ] - }, - { - "text": "Strengthen its efforts to advance organic and procedural reform of military justice with the aim of eliminating the use of the death penalty in all hypotheses comprised in the Code of Military Justice ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Include in the national action plan for the promotion and protection of human rights continued attention to and focus on children and an emphasis on ensuring their right to health and education ", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Consider introducing a moratorium on the use of the death penalty with a view to its permanent abolition", - "values": [ - "3 - Considering action" - ] - }, - { - "text": "Fully implement legislation on domestic violence", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Redouble efforts to improve the conditions of the detention facilities, with particular consideration for women and children, and expedite trials", - "values": [ - "4 - General action" - ] - }, - { - "text": "Invite the Special Rapporteur on trafficking in persons, especially women and children, to visit the country.", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Allow for a visit by OHCHR and other United Nations Special Rapporteurs and experts who have requested access to Iran", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Consider adopting the principle of restorative justice, with its alternative sentencing, in the juvenile justice system", - "values": [ - "3 - Considering action" - ] - }, - { - "text": "Establish and continue to improve the healthcare system to protect people's right to health", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Sensitize police officers and law enforcement officials and take measures to effectively prosecute sexual and domestic violence ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Continue its efforts to ensure meaningful women representation in the future Government ", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Hire and train additional labour inspectors and equip them with necessary resources to adequately enforce relevant labour and trafficking laws", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Place high priority on the full incorporation of the Convention on the Elimination of All Forms of Discrimination against Women into the domestic legal system", - "values": [ - "4 - General action" - ] - }, - { - "text": "Make further efforts to eradicate illiteracy for all, including through, inter alia, sufficient budget allocation", - "values": [ - "4 - General action" - ] - }, - { - "text": "Enhance the training of athletes with disabilities and further promote their participation in international sporting events ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Continue the process of ratifying the international human rights treaties to which is not yet a party", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Ratify the Convention on the Rights of Persons with Disabilities and the optional protocol thereto.", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Further ensure effective implementation of anti-trafficking legislation ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Abrogate or amend legislation, such as the Internal Security Act (ISA), that restricts fundamental freedoms in the name of national security or the economic life of the state, fosters the arbitrary arrest and detention of persons without granting access to judicial review, hinders the right to a fair trial, and acts to repress the free expression of human rights defenders and other members of civil society", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Step up its efforts towards the ratification of other human rights conventions, particularly the Convention on the Elimination of All Forms of Discrimination against Women and the International Convention on the Protection of the Rights of All Migrant Workers and Members of Their Families", - "values": [ - "4 - General action" - ] - }, - { - "text": "Take all appropriate measures to address violence against indigenous women ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Monitor and evaluate the long-term effects of climate change", - "values": [ - "4 - General action" - ] - }, - { - "text": "Develop and implement public awareness campaigns and education programmes to promote diversity and inclusion, while combating racism and xenophobia", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Continue to support literacy programme for the eradication of illiteracy", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Allow the Afghanistan Independent Human Rights Commission to safely operate and carry out its mandate in an independent and effective manner ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Ensure consistent, transparent application of the Foreign Contribution (Regulation) Act regulations to permit full exercise of the right to freedom of association", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "With support from the UNODC and other relevant international organizations continues to strengthen its capacity to combat human trafficking and provide support for the victims of trafficking ", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Take all measures necessary to ensure the rights of the Roma people under article 27 of the International Covenant on Civil and Political Rights, specifically by amending the 1999 Act, which lays down this creation of connection with a specific territory", - "values": [ - "4 - General action" - ] - }, - { - "text": "Speed up the implementation and take measures to ensure the popularization of the Rural Land Act, an essential measure in settling inter-communal disputes ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Take steps to ensure the successful implementation of the various programmes in accordance with its social security law", - "values": [ - "4 - General action" - ] - }, - { - "text": "Continue its efforts to increase enrolment rates at all levels of education, in particular continue to improve equal access to education for all children, regardless of gender, income level or background", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Ensure that the rights to freedom of expression and peaceful assembly are respected and all citizens, including journalists and human rights defenders, are able to pursue their activities without intimidation", - "values": [ - "4 - General action" - ] - }, - { - "text": "Continue its efforts to promote social and economic development and prioritize poverty reduction in its national development, to enable its people to enjoy human rights on a solid economic foundation", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Complete the processes it is undertaking regarding anti-racism", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Ratify the Rome statue of the International Criminal Court, including its Agreement on Privileges and Immunities ", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Ensure full freedom of expression and end media censorship ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Consider withdrawing, as soon as possible, its reservation to the Convention on the Elimination of All Forms of Discrimination against Women and to ensure that its national law and practice is in conformity with it", - "values": [ - "3 - Considering action" - ] - }, - { - "text": "Strengthen measures to prevent hate speech and harassment against minority groups and persons with disabilities, in line with the National Action Plan for the Prevention of Violent Radicalization and Extremism", - "values": [ - "4 - General action" - ] - }, - { - "text": "Make primary education free throughout the territory", - "values": [ - "4 - General action" - ] - }, - { - "text": "Adopt measures to continue combating domestic violence within the framework of the fifth National Plan, including through the establishment of effective procedures for reporting cases and combating stereotypes and misogynistic attitudes ", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Continue to promote and protect the rights of children while developing special programmes targeting vulnerable children", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Ensure that the system for receiving and registering immigrants and asylum seekers is of a high standard, both in regards to capacity and expediency. In particular, that extra attention is given to minors", - "values": [ - "4 - General action" - ] - }, - { - "text": "Continue engaging members of the international donor community in capacity-building in the field of economic and social rights ", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Consider signing and ratifying the main international human rights treaties ", - "values": [ - "3 - Considering action" - ] - }, - { - "text": "Lift immediately sieges and allow full, sustained and unimpeded humanitarian access to civilians in need", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Review the existing laws and regulations with a view to ensuring full gender equality in all aspects of life", - "values": [ - "3 - Considering action" - ] - }, - { - "text": "Ratify the Council of Europe Convention on the Protection of Children against Sexual Exploitation and Sexual Abuse", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Adopt measures to guarantee the rights of persons with disabilities, in particular, to fight against all forms of discrimination faced by women with disabilities, and regarding the lack of equal opportunities for minors with disabilities, with a particular attention to albino children ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Criminalize racism, in line with international commitments", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Reopen dialogue with the representatives of organizations of civil society in order to make possible coordinated and rapid implementation of the national plan of action on human rights and international humanitarian law", - "values": [ - "4 - General action" - ] - }, - { - "text": "Strengthen its actions to prevent and combat femicide and other forms of gender-based violence", - "values": [ - "4 - General action" - ] - }, - { - "text": "Take steps towards establishing a National Human Rights Institution in line with the Paris Principles", - "values": [ - "4 - General action" - ] - }, - { - "text": "Continue to implement measures aimed at guaranteeing universal access to health services", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Continue implementing the project "Uruguay, united in putting an end to violence against women, children and adolescents" 2012-2014 ", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Accompany the policy of setting up provincial committees with sensitization campaigns against gender-based violence and discrimination to better prevent the voluntary recruitment of children in armed groups", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Intensify the work aimed at the ratification of the Council of Europe Framework Convention for the Protection of National Minorities, signed by Greece in 1997", - "values": [ - "4 - General action" - ] - }, - { - "text": "Continue implementing the plan endorsed by the government in November 2014 aiming to help families and individuals living in conditions of extreme poverty", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Take immediate concrete steps to stop discrimination and assaults against LGBT persons", - "values": [ - "4 - General action" - ] - }, - { - "text": "Take concrete actions to implement the Public Policy and National Action Plan on Human Rights and to ensure that all forms of discrimination against Afro-Honduran peoples and other minority groups is eliminated", - "values": [ - "4 - General action" - ] - }, - { - "text": "Continue cooperating with the European Union EUJUST LEX Mission for the training of staff which is of great importance for consolidating the rule of law and strengthening judicial, prisons and police structures. In this context, expand the public recognition and awareness of the Mission and disseminate its objectives and results to the public", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Dedicate additional resources to enhance the capacity of centres for victims of sexual and domestic violence", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Systematically collect data on violence against women, sexual violence and trafficking", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Ensure international conventions are streamlined in domestic laws", - "values": [ - "4 - General action" - ] - }, - { - "text": "Consider adhering to the human rights instruments to which it is not yet party, particularly the Optional Protocol to the Convention against Torture and Other Cruel, Inhuman or Degrading Treatment or Punishment ", - "values": [ - "3 - Considering action" - ] - }, - { - "text": "Adopt effective measures to prevent any manifestation of discrimination and racism ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Be complimented for its pioneering and considerable experience in the area of ending employment of children in camel racing.", - "values": [ - "1 - Minimal action" - ] - }, - { - "text": "Continue to step up efforts to guarantee that all births of children are registered, especially in rural areas", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Simplify the registration process for civil society organizations", - "values": [ - "4 - General action" - ] - }, - { - "text": "Sign and ratify the Convention against Torture ", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Respect the cultural identity of the Syrian citizens in the occupied Syrian Golan and allow them to apply the national curricula", - "values": [ - "4 - General action" - ] - }, - { - "text": "Achieve further progress in the advancement of the role of Kuwaiti women in the public sphere\n", - "values": [ - "4 - General action" - ] - }, - { - "text": "Strengthen the judicial mechanisms designed to prosecute and punish perpetrators of trafficking in persons, especially in women and children, reinforcing reparation measures and reintegration services for victims ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Stay the course to implement legal, institutional, economic and social reforms to combat corruption, in particular, intensify efforts and strengthen programmes to combat corruption at all levels", - "values": [ - "4 - General action" - ] - }, - { - "text": "Strengthen its judicial system in order to ensure that most citizens have access to justice", - "values": [ - "4 - General action" - ] - }, - { - "text": "Continue to address the challenges which impede progress in human rights", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Promptly and impartially investigate any allegations of violence or reprisals against journalists and human rights defenders and ensure that perpetrators are held accountable", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Quickly close down Guantanamo prison and follow the provision of the United Nations Charter and the Security Council Resolution by expatriating the terrorist suspect to their country of origin ", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Promote the rights of persons with disabilities on the ground, despite the difficulties", - "values": [ - "4 - General action" - ] - }, - { - "text": "Sign and ratify the core international human rights instruments, including the International Convention on the Protection of the Rights of All Migrant Workers and Members of Their Families, the Convention against Torture, the International Convention for the Protection of All Persons from Enforced Disappearance and the International Covenant on Civil and Political Rights", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Implement the comprehensive national programme on human rights protection efficiently and within the envisaged time ", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Ensure increased transparency and oversight exercised by civil society of the conditions, in which asylum seekers are kept and treated ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Rehabilitate and socially integrate women and girl victims of trafficking ", - "values": [ - "4 - General action" - ] - }, - { - "text": "To renew the mandate of OHCHR in Bolivia.", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Take measures and comprehensive programmes aimed at developing sensitivities among cultures, creating the climate of mutual respect and expanding protection against all forms of discrimination, including profiling on the basis of race, religions or national origin", - "values": [ - "4 - General action" - ] - }, - { - "text": "Consider establishing a moratorium on executions with a view to abolishing the death penalty", - "values": [ - "3 - Considering action" - ] - }, - { - "text": "Enact criminal justice sector reforms to protect the rights of the accused, in particular the rights to a trial within a reasonable time and to legal assistance", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Take urgent steps to facilitate the work of civil society and human rights defenders, and guarantee protection of all persons from intimidation or reprisals for seeking to cooperate with the United Nations", - "values": [ - "4 - General action" - ] - }, - { - "text": "Contribute effectively in the operationalization of the right to development at the international level ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Ensure that the Penal Code is effectively enforced, perpetrators of slavery are duly prosecuted, and that the victims are granted due compensation and rehabilitation ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Further strengthen its norms, in conformity with the provisions of the Refugee Conventions, including procedures for asylum request, non-refoulement and access to legal advice, among others", - "values": [ - "4 - General action" - ] - }, - { - "text": "Take appropriate action to establish a juvenile justice system", - "values": [ - "4 - General action" - ] - }, - { - "text": "Consider accession to the International Convention on the Protection of the Rights of All Migrant Workers and Members of Their Families", - "values": [ - "3 - Considering action" - ] - }, - { - "text": "Adopt national legislation to combat offences related to racism and to provide redress for victims of racism and other forms of discrimination ", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Take action, through the appropriate procedures, to ensure that the Anti-Terrorist Law does not undermine the rights of indigenous peoples and include those rights in the legal and administrative structure of the country ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Ratify the International Convention on the Protection of the Rights of all Migrant Workers and members of their families", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Increase its efforts to fight unemployment, especially among young people", - "values": [ - "4 - General action" - ] - }, - { - "text": "Avoid the criminalization of migrants and ensure the end of police brutality, through human rights training and awareness-raising campaigns, especially to eliminate stereotypes and guarantee that the incidents of excessive use of force be investigated and the perpetrators prosecuted ", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Sustain and promote the family, based on marriage between a man and a woman, as the natural and fundamental unit of society", - "values": [ - "4 - General action" - ] - }, - { - "text": "Consider ratifying Protocol No. 12 to the Convention for the Protection of Human Rights and Fundamental Freedoms and the Council of Europe Convention on Preventing and Combating Violence against Women and Domestic Violence", - "values": [ - "3 - Considering action" - ] - }, - { - "text": "Continue strengthening legislation aimed at protecting victims of domestic violence", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Revise building codes to improve disabled access to public buildings ", - "values": [ - "3 - Considering action" - ] - }, - { - "text": "Maintain and intensify its positive engagement towards the full inclusion of Roma people", - "values": [ - "4 - General action" - ] - }, - { - "text": "Meet all reporting obligations under the core universal human rights treaties and comply fully with the Special Procedures' requests, in the spirit of good faith and cooperation with all relevant mechanisms", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Give continuity to strengthening of national human rights institutions and mechanisms", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Adhere to the Convention against Torture and its Optional Protocol and to the International Convention for the Protection of All Persons from Enforced Disappearance", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "That all sides of Libya's conflict immediately cease armed hostilities and engage constructively in the United Nations Support Mission in Libya-led political dialogue, and use this opportunity to build a State based on democracy and respect for human rights and rule of law", - "values": [ - "4 - General action" - ] - }, - { - "text": "Continue efforts undertaken in the promotion of the rights of the Child and, in this regard, to encourage to ratify the two Optional Protocols to the Convention of the Rights of the Child", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Consider adopting a comprehensive gender equality law that encompasses a definition of discrimination against women in accordance with the CEDAW and prohibits domestic violence and spousal rape ", - "values": [ - "3 - Considering action" - ] - }, - { - "text": "Improve further its cooperation with all United Nations human rights mechanisms, submitting, among others, its overdue reports to treaty bodies ", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Strengthen measures with a view to ensuring the rights of migrant domestic workers ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Consider acceding to ICCPR, ICESCR and ICC Rome Statute by the next review ", - "values": [ - "3 - Considering action" - ] - }, - { - "text": "Provide for a full system of universal birth registration including immediate registration upon birth regardless of the parent's nationality or status in the country", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Continue its efforts in providing equal treatment for men and women in employment ", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Establish an ombudsman institution at the earliest opportunity.", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Enhance all efforts to combat discrimination and violence against women, in particular by quickly adopting and effectively implementing the national strategic action plan to eliminate gender-based violence", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Accept the pending request and facilitate the visit of the UN Special Rapporteur on freedom of religion or belief ", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Strengthen the independence and effectiveness of the judiciary and adopt all necessary measures to consolidate recent efforts in the fight against impunity", - "values": [ - "4 - General action" - ] - }, - { - "text": "Recognize civil unions between same-sex persons", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Greater support for Djibouti in the field of technical assistance to strengthen the NHRC and the national body responsible for statistics ", - "values": [ - "1 - Minimal action" - ] - }, - { - "text": "Immediately investigate all cases of grave human rights violations and end impunity of perpetrators.", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Take new actions to put an end to violence against women and to combat trafficking in human beings", - "values": [ - "4 - General action" - ] - }, - { - "text": "Continue efforts aimed at completing the programme to prevent discrimination based on disabilities", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Abolish de jure the death penalty.", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Bring to justice all alleged perpetrators of extrajudicial executions, acts of torture, ill treatment, rape and other grave human rights violations - ensure that victims of these violations benefit from full reparation and that families of those who died receive adequate compensation - and reinforce the protection of vulnerable groups, particularly women ", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Amend the Law on Public Association to ensure consistency with international human rights norms", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Build on the progress made to provide adequate housing through such programmes as the integrated human settlements grant and the urban settlements development grant", - "values": [ - "4 - General action" - ] - }, - { - "text": "Sign and ratify the Optional Protocol to the International Covenant on Civil and Political Rights", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Review the legal framework governing broadcast media and, in particular, that the Government review and repeal Article 4 of the Broadcast Act", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Consider the adoption of ILO Convention No. 169, in order to ensure the effective protection and promotion of the rights of indigenous peoples, contributing to the recognition of their national identity, particularly the ones of the Charr", - "values": [ - "3 - Considering action" - ] - }, - { - "text": "Continue the development of programs that aim to incorporate the participation and contribution of persons with disabilities in society", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Take steps to remove domestic legislation that outlaws same-sex activity between consenting adults, and develop policies to address discrimination against LGBT people", - "values": [ - "4 - General action" - ] - }, - { - "text": "Consider ratifying the Rome Statute of the International Criminal Court and fully align its legislation with all obligations under the Rome Statute", - "values": [ - "3 - Considering action" - ] - }, - { - "text": "Speed up the procedure under way for accession to the convention on the Prevention and Punishment of the Crime of Genocide", - "values": [ - "4 - General action" - ] - }, - { - "text": "Adopt a new action plan, to promote equality and prevent ethnic discrimination, as well as prevent and combat discrimination against persons from immigrant backgrounds ", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Strengthen cooperation with human rights mechanisms, which will be helpful to achieve further improvements in various areas.", - "values": [ - "4 - General action" - ] - }, - { - "text": "Implement measures that ensure equality of rights and non discrimination, especially on the grounds of gender, sexual orientation or gender identity", - "values": [ - "4 - General action" - ] - }, - { - "text": "Establish an independent, effective and well-resourced national preventive mechanism in compliance with the requirements of the Optional Protocol to the Convention against Torture and Other Cruel, Inhuman or Degrading Treatment or Punishment", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Take effective measures to eliminate widespread sexual misuse and harassment against women and girls, including on the Internet and via mobile phones ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Regarding minorities, Israel intended to strengthen efforts to ensure equality in the application of the law, to counter discrimination against persons belonging to all minorities, to promote their active participation in public life, such as through additional Government resolutions to raise the percentage of the Arab minority in the civil service", - "values": [ - "4 - General action" - ] - }, - { - "text": "Effectively fight against arbitrary and on-duty police killings, in particular by creating a strong framework for impartial investigation", - "values": [ - "4 - General action" - ] - }, - { - "text": "Consider the possibility of adopting adequate measures to promote social cohesion, with a view to the elimination of all forms of discrimination, including against minority, ethnic and cultural groups", - "values": [ - "3 - Considering action" - ] - }, - { - "text": "Continue the process to ensure the compliance of the National Commission on Human Rights with the Paris Principles", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Ratify CAT as soon as possible", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Ratify OP-CAT and take necessary measures to ensure its full implementation ", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Continue to promote and protect economic, social and cultural rights of its people, with greater emphasis on economic development ", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Establish mechanisms that would allow the reduction of the gender gap in relation to wages and representation in the labour market", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Take further measures to reduce the number of stateless in the country and sign and ratify the Convention on the Reduction of Statelessness and the Convention relating to the Status of Stateless Persons ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Give full implementation to the standards in force concerning the education of indigenous peoples, through study plans that take into account their language, history, art and philosophy ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Ensure effective implementation of existing legislation to eradicate all forms of slavery, prosecute perpetrators and ensure effective access to justice for victims of slavery", - "values": [ - "4 - General action" - ] - }, - { - "text": "Share with regional and other interested countries its good practices regarding the protection of the cultural heritage of members of traditional minorities", - "values": [ - "1 - Minimal action" - ] - }, - { - "text": "Submit to Parliament law on the protection of women from violence, which was announced during the UPR in 2008 ", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Enhance protection against domestic violence, hiring more female police inspectors, improving shelter and rehabilitation services for victims and strengthening data protection in this regard", - "values": [ - "4 - General action" - ] - }, - { - "text": "Intensify efforts to ensure gender equality and eliminate sexual and gender-based violence, including through considering development of a national action plan on implementation of Security Council resolution 1325 (2000)", - "values": [ - "4 - General action" - ] - }, - { - "text": "El Salvador extended an open and standing invitation to the Human Rights Council special procedures.", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Ensure that people with disabilities in situations of abandonment or without family support are able to live in the community in a non-segregated way, providing for their access to services such as health, education or social security ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Ensure the administration of justice is fully consistent with international human rights standards and seek international technical assistance", - "values": [ - "4 - General action" - ] - }, - { - "text": "Take immediate steps to ensure full protection of civilians in conflict areas and to prevent such conflicts in the future by the creation of a democratic environment with full respect for human rights and fundamental freedoms to all members of society, including members of ethnic minorities ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Ratify the Migrant Workers Convention with a view to better harmonizing national legislation with international norms ", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Pursue the implementation of the peace accords with a view to stabilizing and pacifying the eastern part of the Democratic Republic of the Congo and create suitable conditions to ensure and promote respect for international humanitarian law and the protection of the civilian population", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Continue its efforts to extend welfare services and assistance to all persons with disabilities", - "values": [ - "4 - General action" - ] - }, - { - "text": "Continue progress towards the eradication of poverty, through the application of its laudable social policies, so as to improve the quality of life of its people, in particular in the areas most in need, with the cooperation and assistance as requested by this sovereign nation ", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Ensure that the visit by the Working Group on Arbitrary Detention, which has been agreed upon in principle, is also given priority and that it takes place in the near future ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Encourage the participation and representation of citizens in all sectors of the society regardless of their origin or religion", - "values": [ - "4 - General action" - ] - }, - { - "text": "Do everything necessary to revitalize the discussions within the parliamentary working group on the death penalty and ensure that the minimum standards are applied pending an eventual moratorium", - "values": [ - "4 - General action" - ] - }, - { - "text": "Adopt effective measures such as the establishment of an institution or specific mechanism tasked to monitor the situation of Roma, including the compilation of disaggregated data on education, health, employment and housing, which should be an independent body empowered to receive complaints about excessive use of force and ill-treatment against Roma by the Czech police.", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Protect those communities that have been forced to be internally displaced, and assist them in returning to their place of origin or another place selected voluntarily", - "values": [ - "4 - General action" - ] - }, - { - "text": "Consider the possibility of establishing a national system to follow up international recommendations", - "values": [ - "3 - Considering action" - ] - }, - { - "text": "Ensure the Constitution\u2019s provisions on freedom of the press, freedom of opinion and expression and freedom of assembly and association are respected, including for people who want to express their views on the situation of and in Western Sahara", - "values": [ - "4 - General action" - ] - }, - { - "text": "Respect and guarantee the universal right of its citizens in Zanzibar to elect their government through genuinely free and fair elections", - "values": [ - "4 - General action" - ] - }, - { - "text": "Stop the pressure on mass media, including by closing their bank accounts", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Ratify ILO Convention No. 169", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Continue the strengthening of the judicial power", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Allocate increased human and financial resources in order to strengthen the independence of its judicial system", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Consider increasing efforts to address the sexual exploitation of women and girls", - "values": [ - "3 - Considering action" - ] - }, - { - "text": "Continue to take necessary measures to combat discrimination in the area of education", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Adopt federal legislation against all forms of discrimination, with a clear definition of racial discrimination", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Continue to strengthen measures to prevent discrimination and hate crimes, especially against migrants, through training and dissemination programmes on obligations and commitments on human rights", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Release immediately former President Nasheed, in light of the lack of a fair trial", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Fully abolish the death penalty, in accordance with the Second Optional Protocol to the International Covenant on Civil and Political Rights", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "GoB is committed to fully integrating persons with disabilities into society and to provide for their care. The commitment has also included a pledge to increase public awareness of their rights and needs and to ensure that persons with disabilities are treated as equal citizens.", - "values": [ - "4 - General action" - ] - }, - { - "text": "Instate an official moratorium on executions with a view to abolishing capital punishment, abolish the automatic sentencing to capital punishment for drug traffickers and commute all capital punishments to life prison sentences", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Commit itself to releasing all Arab prisoners and detainees in Israeli prisons imprisoned for years without trial. enable ICRC to provide for needs and health care in conformity with Council resolution 7-30, as the state of health is deteriorating on an ongoing basis.", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Build on the Domestic Violence Prevention and Protection Act and the National Gender Policy to implement more concrete programmes and policies to combat violence against women and children, and to promote the full and equitable participation by women in society", - "values": [ - "4 - General action" - ] - }, - { - "text": "Carry out a review of norms and practices relating to freedom of belief in order to harmonize domestic laws with international standards established under ICCPR", - "values": [ - "3 - Considering action" - ] - }, - { - "text": "Exert further efforts to improve prison conditions ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Declare a de jure moratorium on the death penalty with a view to abolishing capital punishment, and consider ratifying the Second Optional Protocol to the International Covenant on Civil and Political Rights", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Take legislative and administrative measures to end defamation of religion ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Fully implement changes to the education law to comply with European court decisions and European Union infringement proceedings to ensure that Roma children enjoy equal access to education", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Sign and ratify the Council of Europe Convention on Preventing and Combatting Violence against Woman and Domestic Violence ", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Continue its efforts to prevent and punish all forms of violence against women and girls, particularly indigenous women and girls ", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Ensure the compliance of the Paris Principles by the National Human Rights Institution ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Grant Palestinians economic, social and cultural rights as well as civil and political rights. allow Palestinians to reach places of worship, and protect religious freedom in accordance with article 27 of the Fourth Geneva Convention, as the occupying power, and bear its responsibility in this respect. and allow the international community organizations, particularly ICRC, to ascertain the health conditions of Arab detainees in Israeli prisons.", - "values": [ - "4 - General action" - ] - }, - { - "text": "Extend work standard regulations - especially those regarding health and safety - to all resident workers, regardless of citizenship ", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Take further steps to regulate the legal status of the IDPs with the focus on children born outside of health institutions", - "values": [ - "4 - General action" - ] - }, - { - "text": "Amend the National Security Law to guarantee that its application respects fully the freedom of expression", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Consider developing a national plan of action on business and human rights", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Accelerate the passage and implementation of anti-trafficking legislation and, in the interim, use current laws, like the Prevention of Organized Crime Act (POCA), to prosecute sex and labour trafficking offences and adequately punish trafficking offenders ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Implement legal safeguards to ensure protection of human rights defenders against abuse of provisions for criminal prosecution and release all prisoners of conscience", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Continue its efforts to end practices of torture and prosecute effectively all the perpetrators ", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Fully resource the Office for Combating Corruption to ensure it is able to investigate and prosecute these crimes", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Strengthen efforts at maintaining an efficient, impartial and independent judiciary as a critical pillar in the administration of justice", - "values": [ - "4 - General action" - ] - }, - { - "text": "Establish special procedures for juvenile justice ", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Select national candidates for the United Nations Treaty Body elections through an open, merit-based process", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Ensure that rape within marriage is a punishable offence under its legal code", - "values": [ - "4 - General action" - ] - }, - { - "text": "Take further necessary measures to increase and strengthen the participation of women in designing and implementing local development plans, and pay special attention to the needs of rural women ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Urge the United Kingdom to take appropriate measures, including completion of the decolonization process of Mauritius and respect the legitimate right of resettlement of the Chagossians, aimed at bringing the United Kingdom into full compliance with its human rights obligations", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Carry out effective and independent investigations of allegations of excessive use of force by the security forces to bring perpetrators of these acts to justice and ensure that victims benefit from full reparations ", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Ensure full incorporation of CRC into its national legal framework ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Bring the definition of torture in Tunisian law in line with the Convention against Torture and focus on best practice and human rights training for police and security personnel", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Establish torture as a criminal offence in accordance with article 1 of the Convention against Torture and Other Cruel, Inhuman or Degrading Treatment or Punishment, and stipulate that obeying orders of superiors can not justify it.", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Continue to support efforts, programs and initiatives aimed at providing protection for all family members", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Strengthen efforts to combat all forms of discrimination, including against lesbian, gay, bisexual, transgender and intersex persons, by adopting a comprehensive law and running national awareness campaigns", - "values": [ - "4 - General action" - ] - }, - { - "text": "Further revise article 301 of the Penal Code to fully ensure freedom of expression and non persecution on the grounds of racial discrimination or motivated by it", - "values": [ - "3 - Considering action" - ] - }, - { - "text": "Reconsider its position and abolish the death penalty, if necessary by initially establishing a moratorium on executions in line with General Assembly resolution 63-168 on the moratorium on the use of the death penalty ", - "values": [ - "3 - Considering action" - ] - }, - { - "text": "Establish legal means and practices allowing civil society to develop its activities", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Continue taking the necessary measures to promote the rights of children and women ", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Enact legislation to prohibit explicit corporal punishment of children in all settings, including the home, schools and alternative care facilities ", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Continue to take appropriate steps to investigate and provide redress in all cases of violence related to religious belief", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Establish shelters for domestic violence survivors", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Continue to review and bring into line its domestic legal framework with international human rights norms to which Guyana is a party, in particular to make progress towards nondiscrimination against minorities, indigenous peoples, women and children ", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Strengthen efforts to ensure that People of African Descent participate and integrate in the economic, political, social and cultural spheres of Guyanese society", - "values": [ - "4 - General action" - ] - }, - { - "text": "Continue efforts to ensure a larger and more inclusive protection for foreign workers ", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Continue to ensure the full participation of NGOs, civil society organizations and the private sector in the follow up to this universal periodic review and in promoting human rights ", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Continue its engagement with Governments and civil society organizations on initiatives that help promote and protect human rights", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Remove all administrative and legislative provisions that restrict the rights the Human Rights Defenders and ensure that civil society organizations can operate freely and without discrimination or undue restriction", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Continue commuting death sentences into prison sentences and institute a de facto moratorium on executions, with a view to definitely abolish the death penalty", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Pursue its efforts to achieve respect for human rights and fundamental freedoms of all the population, and adopt all necessary measures to guarantee the fight against impunity of perpetrators of crimes, acts of violence and all human rights violations", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Increase efforts to investigate, prosecute and convict trafficking offenders under article 133 of the Penal Code", - "values": [ - "4 - General action" - ] - }, - { - "text": "Stop the practice of racial profiling in the judicial and law enforcement systems", - "values": [ - "4 - General action" - ] - }, - { - "text": "Take further concrete steps to ensure the rights of all its citizens in relation to the 24-year rule ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Continue to fight discrimination and sexual exploitation of women and girls, especially through enhancing efforts to combat trafficking in persons ", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Continue working to provide asylum and refugee status to all of those persons who need it", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Take immediate steps towards holding democratic elections and returning Fiji to constitutional rule", - "values": [ - "4 - General action" - ] - }, - { - "text": "Explore the possibility of adopting a national strategy to combat discrimination against women ", - "values": [ - "3 - Considering action" - ] - }, - { - "text": "Step up efforts, in consultation with Maori and Pasifika communities, to address and prevent discrimination against members of the Maori and Pasifika communities in the criminal justice system and, in particular, the high rate of incarceration ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Montenegro reiterated its commitment to implementing the 121 accepted recommendations and their inclusion in the action plan on human rights.", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Encouraged to accede to the remaining core human rights instruments to which it is yet to become a party, especially CED ", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Ratify ILO Conventions Nos. 169 and 189 ", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Consider ratifying CRPD, believing that the ratification should follow recent measures such as the launch of the 2009 National Policy on Disability and the establishment of the National Advisory Committee on Disability ", - "values": [ - "3 - Considering action" - ] - }, - { - "text": "Accede to the Second Optional Protocol to the International Covenant on Civil and Political Rights and the Optional Protocol to the Convention against Torture and Other Cruel, Inhuman or Degrading Treatment or Punishment", - "values": [ - "3 - Considering action" - ] - }, - { - "text": "Support its Muslim citizens in enabling them to practise their religion ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Continue investing the necessary resources in social programmes ", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Condemn publicly and take action to stop, including through full cooperation with the United Nations and regionally mandated investigations, all human rights abuses and violations of international humanitarian law, including abductions, torture and other ill-treatment, and attacks on civilians and on civilian objects such as medical facilities", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Address gender-based violence more broadly, in the spirit of Security Council resolution 1820 (2008) on women, peace and security.", - "values": [ - "4 - General action" - ] - }, - { - "text": "Ensure that all ill-treatment and sexual violence against children in educational settings is promptly, efficiently and impartially investigated, that perpetrators are brought to justice and that the victims receive reparation and are provided with the protection and support they require", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Ensure full compliance with all obligations assumed under the International Covenant on Civil and Political Rights as well as under all other international human rights treaties to which it is a Party and revise domestic legislation that may still be incompatible with these obligations.", - "values": [ - "4 - General action" - ] - }, - { - "text": "Monitor the reintegration of former child combatants, particularly girls, with the aim to ensure that appropriate assistance is provided and suitable measures are implemented ", - "values": [ - "4 - General action" - ] - }, - { - "text": "End discrimination against women and girls in accordance with the Convention on the Elimination of All Forms of Discrimination against Women and allow women to pass on their nationality in an equal manner with men", - "values": [ - "4 - General action" - ] - }, - { - "text": "Establish without delay a national human rights institution that complies with the Paris Principles", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Adopt a formal moratorium on executions, and remove all legal provisions for mandatory death sentences with a view to abolishing the death penalty ", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Continue strengthening the increasing participation of women in public life", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Harmonize its national legislation with the Rome Statute of the International Criminal Court, and accelerate the process to approve the draft law to adhere to the Second Optional Protocol to the International Covenant on Civil and Political Rights, and thus eliminate the death penalty", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Add a provision to the Marriage and Family Relations Act prohibiting other forms of the demeaning treatment of children, such as psychological violence", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Ensure full compliance of domestic legislation and relevant procedures with juvenile justice standards of the Convention on the Rights of the Child.", - "values": [ - "4 - General action" - ] - }, - { - "text": "Further strengthen the institutional framework for the protection of freedoms of press and expression and guarantee these rights to all citizens", - "values": [ - "4 - General action" - ] - }, - { - "text": "Include the criminalization of all forms of racial discrimination in the draft bill on the elimination of all forms of discrimination, expected to be adopted by the Legislature, as recommended by the Special Rapporteur on indigenous people, the High Commissioner for Human Rights and the United Nations country team, if that has not yet been done", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Adopt measures to prohibit and prevent discrimination on the grounds of sexual orientation and gender identity", - "values": [ - "4 - General action" - ] - }, - { - "text": "Further fulfil the internationally taken obligations as well as join new human rights international instruments", - "values": [ - "4 - General action" - ] - }, - { - "text": "Continue to commit itself to implementing a poverty reduction strategy and improving maternal and infant care", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Continue to increase the inputs of financial and human resources into education so as to improve educational standards and reduce drop-out rates", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Ensure that the National Programme for the Protection of Human Rights Defenders be implemented in all states of the nation ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Ensure access to safe and quality education for children ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Release all those imprisoned for the exercise of their rights or for espousing dissenting views", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Take measures to strengthen the Office of the Ombudsman, in order to fully adjust it to the Paris Principles, allocating it with adequate resources and more qualified personnel", - "values": [ - "4 - General action" - ] - }, - { - "text": "Implement its obligations under the human rights instruments to which it is party and cease the use of arbitrary detention, labour camps and collective punishment \n\n", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "If no legal moratorium is given, provide all necessary guarantees to ensure that the rights of persons condemned to death are respected", - "values": [ - "4 - General action" - ] - }, - { - "text": "Enshrine fully the right to fair trial and due process guarantees", - "values": [ - "4 - General action" - ] - }, - { - "text": "Consider taking appropriate action at the legislative level in order to ensure protection from all forms of discrimination", - "values": [ - "3 - Considering action" - ] - }, - { - "text": "Put an end to all forms of arbitrary detention, in conformity with the provisions of the International Covenant on Civil and Political Rights and release all prisoners, whose sentence has been extended, without a fair trial, beyond their initial sentence ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Continue its admirable international efforts to tackle global warming, including by reminding developed countries and major emitting States of their obligation to help promote and protect human rights in Solomon Islands by reducing greenhouse gas emissions to safe levels ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Launch, with the participation of all media, a process of reflection on the role and responsibility of the media to combat racism, xenophobia and related intolerance ", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Consider appropriate measures to eliminate discrimination against religious minorities in accordance with international standards ", - "values": [ - "3 - Considering action" - ] - }, - { - "text": "Promote tolerance and further protect minorities and vulnerable groups", - "values": [ - "4 - General action" - ] - }, - { - "text": "Reconsider the withdrawal from the Optional Protocol to the International Covenant on Civil and Political Rights, and, taking into account that death sentences have not been implemented since 1988, declare a moratorium with a view to abolishing capital punishment ", - "values": [ - "3 - Considering action" - ] - }, - { - "text": "Step up the efforts to adopt the remaining 120 bills that have been identified by the Government as requiring enactment during its term of office in order to implement the changes provided for in the 2008 Constitution ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Reinforce the capacities of professionals in the identification, referral and protection of victims of gender-based violence and provide legal and medical support to victims", - "values": [ - "4 - General action" - ] - }, - { - "text": "Take steps towards full legal recognition of same-sex relationships, this includes registered partnership, fiscal partnership, and marriage and the possibility to adopt children", - "values": [ - "4 - General action" - ] - }, - { - "text": "Further improve prison conditions, with a special focus on tackling overcrowding", - "values": [ - "4 - General action" - ] - }, - { - "text": "Take steps to bring prison conditions into compliance with international legal standards for the treatment of prisoners as a matter of urgency ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Further improve the legal framework on the rights of persons with disabilities, in line with the provisions of international conventions", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Finalize at its earliest the process of appointment of the Ombudsman and ensure that the institution fully complies with the Paris Principles", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Give priority attention to addressing the challenges faced by the national judicial system, including implementing the zero tolerance policy for perpetrators of violations of international human rights and humanitarian laws in the Democratic Republic of the Congo ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Reconsider the ratification of the Convention on the Protection of the Rights of All Migrant Workers and Members of Their Families", - "values": [ - "3 - Considering action" - ] - }, - { - "text": "Enhance efforts to promote gender equality and combat all forms of discrimination and violence against women and girls", - "values": [ - "4 - General action" - ] - }, - { - "text": "Take necessary measures to ensure that allegations of killings, torture, arbitrary detentions, extrajudicial executions, excessive use of force and ill-treatment of detainees are swiftly investigated and the perpetrators brought to justice", - "values": [ - "4 - General action" - ] - }, - { - "text": "Conclude the ratification process of the Convention on the Rights of Persons with Disabilities ", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Ratify ICCPR-OP2", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Sign and ratify the International Covenant on Economic, Social and Cultural Rights (ICESCR) ", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Designate an appropriate institution for the implementation and observance of the Convention on Rights of Persons with Disabilities ", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Continue developing the implementation of actions against any kind of discrimination for gender, ethnicity, skin colour, sexual orientation and gender identity, among others", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Further promote human rights education and make primary education free and compulsory", - "values": [ - "4 - General action" - ] - }, - { - "text": "Continue to combat impunity, including by strengthening laws and regulations as well as their implementation", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Take effective measures to encourage tolerance and to combat illegal stands and stereotypes against minorities, in particular Muslims", - "values": [ - "4 - General action" - ] - }, - { - "text": "Development of training programmes for judges, personnel of the judiciary, penitentiaries and police forces, regarding the implementation and interpretation of the laws criminalizing racism-related offences", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Continue conducting actions with a view to eradicating child labour in the country", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Adopt procedures to better identify victims of trafficking among vulnerable groups such as foreign workers and those engaged in prostitution", - "values": [ - "4 - General action" - ] - }, - { - "text": "Continue to move towards the promotion of women's rights and further strengthen equality between women and men as well as efforts undertaken aimed at putting an end to certain customary social practices which sometimes stand in the way of the effective implementation of human rights, such as honour crime and crimes of revenge", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Implement recommendations by the Special Rapporteur on the rights to water and sanitation regarding access to water for Roma", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Continue taking legislative amendments and strengthen necessary policies to enhance child rights, particularly children with disabilities in light of relevant provisions of international conventions ratified by Romania", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Provide human rights education and training about non-discrimination in particular to law enforcement officials and take effective measures to prevent and prohibit racial profiling by the police ", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Support the preservation and development of the cultures of national minorities ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Take efficient steps to secure the protection of women, also when abuse happens within the family", - "values": [ - "4 - General action" - ] - }, - { - "text": "Introduce human rights education to increase the awareness of people about all sets of human rights ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Bahrain commits to completing work on the implementation of the recommendations of the Bahrain Independent Commission of Inquiry. ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Pay more attention to social and economic development programmes", - "values": [ - "4 - General action" - ] - }, - { - "text": "Abolish incommunicado detention", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Continue implementing measures for the improvement of maternal and child health in line with its National Health Development Plan for 2011 to 2015 ", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Ratify the International Covenant on Civil and Political Rights (ICCPR) and the two optional protocols thereto ", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Continue its efforts to increase women's representation in public and political life", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Ratify the Convention against Torture and ratify its Optional Protocol", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Put in place effective measures to reduce inconsistencies between laws and practice, in order to tackle gender stereotyping and traditional attitudes that conflict with human rights", - "values": [ - "4 - General action" - ] - }, - { - "text": "Increase the security in the shelters for unaccompanied migrant children, investigate cases of disappearances of children from these centres", - "values": [ - "4 - General action" - ] - }, - { - "text": "Study the possibility of strengthening the measures to fight discrimination, in order to eradicate the trend and/or the dissemination of stereotypes that lead to discrimination on the grounds of sexual orientation ", - "values": [ - "3 - Considering action" - ] - }, - { - "text": "Eliminate legislation criminalizing sexual relations between persons of the same sex, as well as discriminatory legislation on the ground of sexual orientation", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Intensify efforts in the direction of sensitizing all stakeholders to prevent FGM ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Continue legislative reforms to better fight discrimination against the Roma population and other minorities, racist violence, hate crimes and hate speech", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Deepen and widen its efforts, including through providing stronger legal framework by considering the ratification of the UNESCO Convention against Discrimination in Education", - "values": [ - "4 - General action" - ] - }, - { - "text": "Consider ratifying the Convention on the Rights of Persons with Disabilities as soon as possible.", - "values": [ - "3 - Considering action" - ] - }, - { - "text": "Continue to improve the legislation framework in the fields of the protection of national and ethnic minorities from discrimination ", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Reform penal legislation with a view to prohibiting torture ", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Continue to promote the ratification of the International Convention on the Rights of Migrant Workers and Member of Their Families", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Speed up the process to promote more participation of women in public offices", - "values": [ - "4 - General action" - ] - }, - { - "text": "Accelerate the process of establishing the national preventive mechanism on torture", - "values": [ - "4 - General action" - ] - }, - { - "text": "Undertake key electoral reforms to: improve the integrity of the voter registration system and voter list, ensure that all candidates have equal access to the media, and ensure that the National Election Committee retains full independence ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Take further legislative and institutional measures for the promotion and protection of human rights including those of the immigrants ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Strengthen and enforce its various commitments to embracing its cultural diversity and ensuring the safety of and equal opportunities for all citizens ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Intensify efforts to combat discrimination and ill-treatment of Roma and eliminate segregation of Roma girls in the educational system", - "values": [ - "4 - General action" - ] - }, - { - "text": "Revise relevant legal provisions to ensure that all offences committed against human rights by military forces are submitted to civil courts ", - "values": [ - "3 - Considering action" - ] - }, - { - "text": "Conclude regional agreements to facilitate cross-border pastoralism ", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Ensure that all human rights violations against human rights defenders and journalists are investigated effectively and transparently, with perpetrators being promptly brought to justice, including pending unresolved cases requiring urgent attention ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Prohibit by law corporal punishment of children in all settings, including at home", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Raise awareness by the poor and marginalized population of the legal provisions of the Domestic Violence Act, open investigations into all complaints lodged relating to domestic violence, and prosecute all cases and provide victims to appropriate services, especially the possibility to benefit from a free medical report and legal aid ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Give the required attention to promoting women's participation at the decision-making level in both the public and private sectors ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Promote social, cultural and political respect and tolerance for religious minorities. In this regard, Ecuador agreed with the views of the Human Rights Committee about the need to take steps to ensure equal enjoyment of the right of freedom of religion or belief and to address the problems related to confiscation of places of worship and related properties of religious minorities ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Continue to strengthen the judicial system, in particular the independence of the judiciary, access to justice, access to necessary infrastructure and resources and the fight against impunity", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Enhance efforts in undertaking measures to ensure better protection for its migrant workers abroad ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Improve the life conditions of migrants and refugees in Uganda ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Continue the fight against corruption in order to strengthen the rule of law and good governance", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Adopt and implement draft laws regarding persons with disabilities and concerning mental health, as referred to in the national report, with a view to providing a normative framework to strengthen awareness-raising campaigns on human rights and disability ", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Continue pursuing efforts to combat human trafficking, with emphasis on protection of victims ", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Take all necessary measures to ensure that the national mechanism for the prevention of torture has a solid legal basis and enough resources for the fulfilment of its mandate", - "values": [ - "4 - General action" - ] - }, - { - "text": "Empower the Office of the Ombudsman by providing enough resources to ensure its effectiveness and full compliance with the Paris Principles ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Redouble efforts towards providing more opportunities for women's active involvement in the economic and political spheres", - "values": [ - "4 - General action" - ] - }, - { - "text": "Continue making efforts for protecting and promoting human rights and improving the living conditions", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Continue to pursue its national poverty reduction plans and promote gender equality and empowerment of women ", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Ensure that community activists and indigenous leaders can exercise their right to peaceful assembly and protest and that anti-terrorist legislation is not misused to inappropriately censure such activities ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Abolish the death penalty", - "values": [ - "4 - General action" - ] - }, - { - "text": "Continue its efforts on further improving the judicial system with practical measures", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Implement the National Programme for 2015-2020 to Eradicate the Worst Forms of Child Labour", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Adopt legislation prohibiting all forms of discrimination, including on the grounds of sexual orientation and gender identity, and abolish all provisions of Executive Decree No. 204/1997 determining homosexuality as a serious misconduct for members of the national police", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Accept the request made by the Special Rapporteur on freedom of religion or belief to visit Bhutan ", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Abolish the death penalty in legislation in order to respect the obligations arising from the ratification of the second Optional Protocol by Liberia", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Ratify the Optional Protocols to the Convention on the Elimination of All Forms of Discrimination against Women and the Convention against Torture", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Amend the National Reconciliation, General Amnesty and National Stability Law to allow for prosecutions of certain crimes, such as genocide, war crimes and torture ", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Take measures to properly handle the case of alleged torture and illtreatment in the military and police and to put a halt to discrimination and violence against women", - "values": [ - "4 - General action" - ] - }, - { - "text": "Amend its Penal Code to eliminate language that discriminates against women, in particular the section entitled "Title X", to ensure respect for rights and to address the impact of the violence suffered by victims of these offences ", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Promote and amend legislation to guarantee the protection of citizens who have been discriminated against based on their sexual orientation, gender identity or the fact that they are infected with HIV-AIDS ", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Designate a new ombudsperson and implement without delay the national preventive mechanism against torture", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Condemn and investigate all violence against journalists, inform UNESCO of the actions taken to prevent the killing of journalists and notify UNESCO of judicial inquiries conducted", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Conduct public awareness campaigns against social prejudices and for upholding the principle of equality and non-discrimination regardless of sexual orientation and-or gender identity.", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Implement national texts related to the rights of children and women ", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Consider positively acceding to the core international human rights instruments, to which it is not yet a party, particularly the International Covenant on Civil and Political Rights and the Convention against Torture", - "values": [ - "3 - Considering action" - ] - }, - { - "text": "Study the possibility of ratifying the International Convention for the Protection of All Persons from Enforced Disappearance ", - "values": [ - "3 - Considering action" - ] - }, - { - "text": "Expand human rights education for law enforcement officers", - "values": [ - "4 - General action" - ] - }, - { - "text": "Establish mechanisms for witness protection and access to justice for victims, their families and civil society actors who might be assisting them, as recommended by the Special Rapporteur on trafficking in persons, especially women and children ", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Adopt all necessary measures to combat impunity in cases of human rights violations perpetrated by any person, including members of the security forces. ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Ensure that adequate information on family planning and the regulation of fertility is publicly available ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Continue its positive efforts to promote gender equality and protect women's rights in areas such as employment", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Raise the level of official development assistance to achieve the United Nations target of 0.7 percent of gross domestic product", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Increase its efforts to raise awareness of and prevent the spread of HIV-AIDS and provide adequate treatment and alternative care opportunities for children", - "values": [ - "4 - General action" - ] - }, - { - "text": "Raise the minimum age of criminal responsibility to comply with international standards ", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Ensure a thorough and timely investigation by the Ministry of Justice and Social Welfare of the allegations in the detainee report and subsequently reform the practices of the Correctional Services officers and police forces as needed.", - "values": [ - "4 - General action" - ] - }, - { - "text": "Reform the National Intelligence and Security Service in accordance with the Comprehensive Peace Agreement, particularly the broad powers of arrest and detention ", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Ensure the full implementation of legislation prohibiting discrimination in employment and all discriminatory practices in the labour market and that further measures be taken to reduce unemployment among minority groups", - "values": [ - "4 - General action" - ] - }, - { - "text": "Consider acceding to the International Convention on the Protection of the Rights of All Migrant Workers and Members of Their Families", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Give due attention to the results of the expert group examining the possibility of the construction of a new prison", - "values": [ - "4 - General action" - ] - }, - { - "text": "Provide more resources for the pursuit of all MDGs and the promotion of economic, social and cultural rights for the population, particularly social vulnerable groups and those who live in remote areas ", - "values": [ - "4 - General action" - ] - }, - { - "text": "End all indiscriminate bombings of residential areas, hospitals and all other civilian targets with immediate effect", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Take all necessary measures to ensure that it fulfils all of its obligations under international human rights instruments, particularly the International Covenant on Economic Social and Cultural Rights and the International Covenant on Civil and Political Rights with regard to the situation in Gaza.", - "values": [ - "4 - General action" - ] - }, - { - "text": "Adopt a comprehensive national strategy to prevent and combat all forms of violence against children", - "values": [ - "4 - General action" - ] - }, - { - "text": "Consider cooperation with, for example, the Special Rapporteur on the question of torture and the Special Rapporteur on the promotion and protection of human rights while countering terrorism.", - "values": [ - "3 - Considering action" - ] - }, - { - "text": "Enact laws to ensure that all women, regardless of their marital status, are provided with the same level of protection against rape and that women are not discriminated against in family inheritances ", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Guarantee freedom of expression in all its forms and ensure investigations into attacks against journalists and the media and bring those responsible to justice", - "values": [ - "4 - General action" - ] - }, - { - "text": "Develop pertinent legislation to guarantee the effective protection of the human rights of LGBTI persons, as well as undertake impartial investigations on the allegations of attacks against them in accordance with the Special Rapporteur on extreme poverty and human rights", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Strengthen and improve press freedom and freedom of speech, including in its consideration of draft laws currently before the National Assembly, notably the revised press law and the law on public gatherings", - "values": [ - "4 - General action" - ] - }, - { - "text": "Continue to increase human rights transparency by improving the access of local and international media organisations, engagement with the Office of the High Commissioner for Human Rights, the International Committee of the Red Cross and other relevant international organizations throughout Indonesia ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Continue its efforts in raising awareness about trafficking in persons through comprehensive training programmes for social workers, law enforcement officials and the media ", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Continue taking appropriate measures to protect the most vulnerable children, particularly girls, children with disabilities and children living in rural areas and to ensure effective protection of children especially against sexual abuse, trafficking and child labour ", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Intensify efforts to educate and train police, prison staff, law enforcement personnel and judges on all aspects of human rights", - "values": [ - "4 - General action" - ] - }, - { - "text": "Access and ratify the OP-CAT ", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Continue to scale up national efforts to eliminate poverty particularly targeting disadvantaged groups, with the support of the international community.", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Adopt further measures to ensure the protection of the human rights of the children of persons in detention or prison", - "values": [ - "4 - General action" - ] - }, - { - "text": "Take the necessary measures to eliminate all discriminatory treatment towards persons with disabilities including the ratification of OP- CERD", - "values": [ - "4 - General action" - ] - }, - { - "text": "Adopt measures that guarantee access to rights for all people returning to the country irrespective of the cessation of the condition of refugees", - "values": [ - "4 - General action" - ] - }, - { - "text": "Consider ratifying the OP-CRPD ", - "values": [ - "3 - Considering action" - ] - }, - { - "text": "Ratify the CPED, OP-CAT as well as the Rome Statute", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Adopt a national action plan to combat and eliminate slavery in all forms and ensure that all victims are provided with assistance and rehabilitation", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Take all necessary measures to ensure the full enjoyment of the right to freedom of expression for all, including the repeal or amendment of all laws restricting the activities, ownership and independence of the media", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Complete the work on clarifying the legal consequences of the ratification of ILO Convention No. 169 as a matter of priority ", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Enact measures to create safe school environments for girls and promote the right to education for girls on an equal basis with boys ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Adhere to main international human rights instruments so that it can continue to promote women's rights and develop programmes for the rights of children, and pursue the efforts to disseminate a human rights culture in the executive branches of the Government ", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Intensify its efforts in combating and preventing trafficking in persons, especially women and children", - "values": [ - "4 - General action" - ] - }, - { - "text": "Facilitate enrolment of children with missing or incomplete documents, improve the safety situation at schools experiencing difficulties in that regard, and include human rights and child rights education in school curricula at all levels ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Establish a national human rights institution, in line with the Paris Principles, which would constitute an important step forward ", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Take necessary steps to prevent torture and other human rights violations by law enforcement and security services, in accordance with Swaziland's obligations under the Convention against Torture and Other Cruel Inhuman or Degrading Treatment or Punishment, including by ensuring impartial investigations of all allegations, prosecuting perpetrators, and implementing human rights training programs ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Seek the assistance of ILO to combat child labour ", - "values": [ - "1 - Minimal action" - ] - }, - { - "text": "Move to discretionary sentencing for drug trafficking charges", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Continue efforts towards the consolidation of the rule of law and its mechanisms", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Amend the News Media Law and the 2014 Printing and Publishing law in line with international human rights standards protecting the freedom of expression and ensure that any new laws regulating the internet or access to information comply with such standards", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Fully align its national legislation with all obligations under the Rome Statute of the International Criminal Court", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Review its legislation to ensure the right of all boys and girls to have a nationality and ensure birth registration, regardless of their ethnic origin or their parents' status", - "values": [ - "3 - Considering action" - ] - }, - { - "text": "That the international community support Lebanon", - "values": [ - "1 - Minimal action" - ] - }, - { - "text": "Strengthen efforts to protect freedom of expression and the right of all human rights defenders, including those working on land rights issues, to conduct their work without hindrance or intimidation, including by way of safeguarding freedom of assembly and association ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Draw up a national plan of action for human rights as recommended by the National Forum on Human Rights held in March 2010", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Amend legislation to remove restrictions on freedom of expression, which has a major impact on human rights defenders, journalists and members of the political opposition", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Issue a law on freedom of the press", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Take steps to reduce the incidence of child, early and forced marriage, including by amending legislation where necessary to bring it into conformity with international obligations", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Reinforce its policies and strategies to eliminate all sorts of discrimination against the Roma community.", - "values": [ - "4 - General action" - ] - }, - { - "text": "Consider early ratification of the third Optional Protocol to the CRC on a communications procedure ", - "values": [ - "3 - Considering action" - ] - }, - { - "text": "Consider introducing civic and human rights education in primary and secondary school curricula", - "values": [ - "3 - Considering action" - ] - }, - { - "text": "Continue increasing inputs in education to effectively protect the right to education for the people of Panama, including indigenous people", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Take all necessary measures so that the Family Protection Units can ensure that all cases of domestic violence are brought to justice ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Repeal provisions of the Marriage and Family Relations Act that are not compliant with the Convention on the Rights of the Child", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Guarantee effective access to justice in cases of human rights violations committed by security forces personnel with regard to the use of torture ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Take further steps in order to prevent violence against people of African descent", - "values": [ - "4 - General action" - ] - }, - { - "text": "Continue the efforts to combat cyber-technology crimes, in particular when committed against youth", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Actively counter any ethnic strife and armed conflict", - "values": [ - "4 - General action" - ] - }, - { - "text": "Make additional efforts to improve reporting to the Human Rights Treaty Bodies under the treaties to which the United Arab Emirates are party", - "values": [ - "4 - General action" - ] - }, - { - "text": "Step up its implementation of best practices on gender equality and empowerment of women and continue the programmes that are successfully being carried out in the area of gender equality and access of women to decision-making positions", - "values": [ - "4 - General action" - ] - }, - { - "text": "Issue a standing invitation to the special procedures mandate holders ", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Ensure that police conduct is in accordance with international human rights standards through human rights training for all police and security officers", - "values": [ - "4 - General action" - ] - }, - { - "text": "Take all necessary measures to end sexual and gender-based violence, especially by developing adequate gender-sensitive training programmes for law enforcement agencies, the national prosecuting authority and judicial officers and by adopting specific legislation addressing the practice of ukuthwala (child marriage)", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Prohibit that federal authorities undertake racial profiles, and investigate the disproportionate use of lethal force against coloured people by state and local police", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Fast-track the process to sign and ratify international treaties related to the Convention on the Rights of Persons with Disabilities", - "values": [ - "4 - General action" - ] - }, - { - "text": "Improve the prosecution and prevention of domestic violence and ensure that victims of domestic violence have access to shelters and other support services", - "values": [ - "4 - General action" - ] - }, - { - "text": "Consider ratifying the International Convention for the Protection of All Persons from Enforced Disappearance, and accept the competence of the Committee on Enforced Disappearances", - "values": [ - "3 - Considering action" - ] - }, - { - "text": "Work on the strengthening of the capacities of important national entities such as EHRC ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Create and ensure the functioning of Constitutional bodies, such as institutions on human rights and good governance, as well as the Constitutional Court", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Ratify the International Convention for the Protection of All Persons from Enforced Disappearance, the International Convention on the Protection of the Rights of All Migrant Workers and their Families, the Optional Protocol to the Convention against Torture and Other Cruel, Inhuman or Degrading Treatment or Punishment, the Convention relating to the Status of Refugees of 1951 ", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Review criminal and civil justice procedures in order to improve the efficiency of the judiciary with a view to significantly reducing the backlog before the courts, and the time taken for cases to be continued, before its next Universal Periodic Review", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Consider ratifying the Convention on the Prevention and Punishment of the Crime of Genocide ", - "values": [ - "3 - Considering action" - ] - }, - { - "text": "Declare a moratorium on the death penalty until its complete abolition", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Continue to introduce amendments to its national family law to ensure equal status and rights for women, in all matters ", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Take the necessary steps to ensure that citizens can fully enjoy the rights to freedom of expression and freedom of religion.", - "values": [ - "4 - General action" - ] - }, - { - "text": "Make the necessary constitutional changes in order to ratify the Rome Statute of the International Criminal Court, signed in January 2001 ", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Put in place adequate measures to protect civilians, in particular innocent women and children, in any situation of armed violence, and to create the necessary conditions to abate the present situation of the millions of internally displaced persons", - "values": [ - "4 - General action" - ] - }, - { - "text": "Withdraw its reservations to Convention on the Elimination of All Forms of Discrimination against Women and consider signing and ratifying its Optional Protocol", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Take effective measures to reduce and control the proliferation of firearms", - "values": [ - "4 - General action" - ] - }, - { - "text": "Introduce the necessary legal and policy measures to abolish all forms of corporal punishment", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Strengthen measures against the practice of female genital mutilation", - "values": [ - "4 - General action" - ] - }, - { - "text": "Review the reform of the national justice system of early 2014, in particular with the aim of ensuring and enforcing the principle of universality of international human rights law", - "values": [ - "3 - Considering action" - ] - }, - { - "text": "Step up its efforts to strengthen the mechanisms to demobilize child soldiers and ensure their social reintegration, notably through family reunification and vocational training", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Continue with the necessary attention to the empowerment of women and children care and other vulnerable groups of the population ", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Further strengthen its national framework for the promotion and protection of human rights", - "values": [ - "4 - General action" - ] - }, - { - "text": "Take measures to allow peaceful public meetings to be held freely and avoid using politicized charges and vague terminology which prevent citizens from exercising their freedom of assembly and association", - "values": [ - "4 - General action" - ] - }, - { - "text": "Continue activities to protect and promote the rights of children by taking steps - such as implementing the Action Plan on Child Soldiers - to eliminate the unlawful recruitment and use of child soldiers ", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Accede to CAT, the Optional Protocol thereto and the Optional Protocol to CRPD ", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Fully protect human rights of internally displaced persons, including by giving them access to safe areas, as well as health, social and educational services without discrimination, and support, wherever possible, the voluntary and safe return of internally displaced persons to their areas of origin", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Take steps to ratify the amendments to article 8 of the Rome Statute of the International Criminal Court", - "values": [ - "4 - General action" - ] - }, - { - "text": "Do its utmost to guarantee the holding of open and transparent elections on the dates ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Continue increasing the public budget on health, education and social well-being ", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Strengthen measures for the promotion and protection of human rights of minorities such as the Roma and other vulnerable groups", - "values": [ - "4 - General action" - ] - }, - { - "text": "Further promote national efforts in countering human trafficking ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Continue to implement National Health Policy 2015", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Ratify the Convention on the Elimination of All Forms of Discrimination against Women and adopt a law prohibiting genital mutilations ", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Put in place a system of comprehensive data collection on all forms of violence against women, and encourage reporting of all forms of violence against women and girls, including domestic and sexual violence", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Continue to advance in the regional equal opportunities plans, as specific measures aimed at comprehensively meeting the needs of women, and redouble its efforts to increase their participation in all spheres of national live", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Continue its efforts to promote women's role in social and public life, and protect them from violence ", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Adopt measures to combat trafficking in persons, particularly women and children", - "values": [ - "4 - General action" - ] - }, - { - "text": "Ensure that civil society organizations and journalists can exercise their freedom of expression and participate in peaceful public gatherings and demonstrations", - "values": [ - "4 - General action" - ] - }, - { - "text": "Take effective measures to ensure that all women have access to adequate health facilities ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Respect and fully guarantee the rights to freedom of expression, freedom of association and freedom of assembly, in particular in the context of measures undertaken to respond to violent extremism and terrorism", - "values": [ - "4 - General action" - ] - }, - { - "text": "Adopt necessary measures to ensure a gender perspective in providing assistance to victims of trafficking in persons including through capacity-building of the Prosecutor\u2019s office personnel and members of the national police", - "values": [ - "4 - General action" - ] - }, - { - "text": "Meet its reporting obligations under the CRC ", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Take steps to facilitate equal access to the labour market, including by increasing women's ability to continue as full-time employees following child birth ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Consider amending articles 98 and 340 of its Criminal Code in order to abolish all kinds of legal protection for perpetrators of honour killings", - "values": [ - "3 - Considering action" - ] - }, - { - "text": "Protect persons with mental disabilities and refer to justice those responsible for violations against them in psychiatric hospitals", - "values": [ - "4 - General action" - ] - }, - { - "text": "Give up racist and discriminatory laws and practices accompanying the colonies in all the OPT, including Al Qods Asharif ", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Continue its efforts in the promotion and dissemination of best practices in the sphere of intercultural dialogue ", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Improve women's access to high quality health care and health-related services", - "values": [ - "4 - General action" - ] - }, - { - "text": "Further strengthen the public awareness about the human rights of migrant workers and other minority groups", - "values": [ - "4 - General action" - ] - }, - { - "text": "Fulfil obligations to the human rights mechanisms, including submission of outstanding reports and approving pending visits of Special Rapporteurs", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Take measures to eliminate racial discrimination and combat hate crime", - "values": [ - "4 - General action" - ] - }, - { - "text": "Provide the Independent National Commission on Human Rights with adequate resources to assist it in discharging its core mandate", - "values": [ - "4 - General action" - ] - }, - { - "text": "Attach great importance to the promotion and protection of the rights of the person of disabilities, and put more efforts in the area of health care, particularly the health of children ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Agree to the requests for visit by the Special Rapporteur on the right to food ", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Take effective measures and step up its efforts to combat xenophobia and racism so as to promote harmonious co-existence among ethnic and religious communities", - "values": [ - "4 - General action" - ] - }, - { - "text": "Adopt, as soon as possible, legislation clearly prohibiting female genital mutilation ", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Continue to develop and implement development programmes and to improve the economic capacities of the entire country, including in the southern provinces of Morocco", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Ratify the Palermo Protocol and the ILO Conventions no. 169 and 189", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Continue the progress made towards equality between women and men, by increasing and strengthening the representation of women in politics, the economy, academia and the judiciary. In particular, take specific and concrete measures to eliminate the gender wage gap and withdraw reservations to article 15, paragraph 2, and article 16, paragraph 1 subparagraph h, of the Convention on the Elimination of All Forms of Discrimination against Women", - "values": [ - "4 - General action" - ] - }, - { - "text": "Introduce a moratorium on the death penalty in all cases, including penalties for the crime of terrorism and war crimes, although the abolition of the death penalty for civilians is noted with satisfaction", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Adopt legislation to prohibit all forms of discrimination on the basis of race, colour, ethnicity, age, religion and disability and to ensure access to effective remedy for victims of discrimination", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Continue to collaborate with neighboring countries to seek ways of providing assistance to children at risk", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Vigorously investigate and prosecute prison and police officials guilty of the mistreatment of detainees and prisoners. ", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Implement a national strategy to improve the situation and social integration of the Roma population", - "values": [ - "4 - General action" - ] - }, - { - "text": "Continue the implementation of measures adopted in the field of development and continue to place particular importance on strengthening the health care system in the country", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Continue the task of completing the special institutional framework in the areas of judiciary and independent bodies", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Establish immediately a publicly accessible central register for all persons missing or in custody", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Consider the possibility of acceding to the Convention on the Rights of Persons with Disabilities.", - "values": [ - "3 - Considering action" - ] - }, - { - "text": "Take decisive measures to ensure the prevention of cases of harassment and intimidation of human rights defenders, including through a high-level public campaign in support of the positive role of civil society, and specifically denouncing these attacks and through independent investigation and prosecution of perpetrators", - "values": [ - "4 - General action" - ] - }, - { - "text": "Advance in the effective implementation of the human rights to water and sanitation, by increasing public water infrastructures", - "values": [ - "4 - General action" - ] - }, - { - "text": "Establish a committee to study human rights conventions in order to pave the way for accession to such conventions ", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Elaborate a comprehensive strategy to address trafficking, particularly of women and children ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Consider signing and-or ratifying the International Convention for the Protection of All Persons from Enforced Disappearance CED", - "values": [ - "3 - Considering action" - ] - }, - { - "text": "Adopt measures to promote and protect the rights of migrants and ensure that unaccompanied minors and families with children are not detained", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Continue its good efforts to address violence against women and domestic violence, in particular through the ratification of the Council of Europe Convention on Preventing and Combating Violence against Women and Domestic Violence", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Strengthen cooperation with human rights treaty bodies ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Step up its efforts to align its domestic legal framework with international and regional human rights conventions to which it is a party", - "values": [ - "4 - General action" - ] - }, - { - "text": "Strengthen its awareness-raising and education programmes, prevent and eradicate harmful traditional practices and ensure that victims have access to remedies and rehabilitation mechanisms", - "values": [ - "4 - General action" - ] - }, - { - "text": "Take steps to improve the equality of access to various forms of education and employment for all women", - "values": [ - "4 - General action" - ] - }, - { - "text": "Provide training for the judiciary and public officials, as well as health service providers to deal with victims of violence", - "values": [ - "4 - General action" - ] - }, - { - "text": "Continue to implement programmes and measures to guarantee quality health services and quality education free of charge ", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Call upon the Working Group on the Universal Periodic Review to consider its request, contained in paragraph 92 of its national report, related to its needs in the field of capacity-building and technical cooperation ", - "values": [ - "1 - Minimal action" - ] - }, - { - "text": "Incorporate the necessary provisions into its national legislation to allow full and prompt cooperation with the international Criminal Court ", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Confirm its commitment towards the abolition of the death penalty by ratifying the Second Optional Protocol to the International Covenant on Civil and Political Rights, which abolishes the death penalty under all circumstances ", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Take steps to reform the prison system and to ensure the protection of the rights of detainees", - "values": [ - "4 - General action" - ] - }, - { - "text": "Establish a moratorium on the application of the death penalty with a view to its abolition ", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Thailand will issue a standing invitation to all the special procedures of the Human Rights Council", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Commit itself to respecting freedom of expression and opinion for all, in particular for members of the opposition ", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Continue to discuss human rights issues frankly with the international community and the European Union, and in so doing find constructive ways of making progress on its international obligations and make tangible improvements on the ground ", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Seek cooperation with the United Nations human rights mechanisms, including special procedures and treaty bodies with regards to Voluntary Goals on Human Rights", - "values": [ - "1 - Minimal action" - ] - }, - { - "text": "Align national legislation with international instruments on the protection of the rights of women and in favour of the principle of gender equality, in particular by promoting access for women to jobs, increasing their participation in political and economic life and ensuring wage equality between men and women", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Institute an official moratorium on the passing of death sentences and on executions", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Take appropriate measures to guarantee and promote freedom of expression and pluralism of information.", - "values": [ - "4 - General action" - ] - }, - { - "text": "Ratify ILO Convention No. 169 ", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Combat piracy by enacting a legislation prohibiting ransoms to pirates for releasing hostages", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Continue to promote and implement policies of tolerance and inclusion and for the participation of all citizens in the society which contribute to combating discrimination in all its forms", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Intensify its efforts to provide oversight over British companies operating abroad with regard to any negative impact of their activities on the enjoyment of human rights, particularly in conflict areas, which includes situations of foreign occupation, where there are heightened risks of human rights abuses", - "values": [ - "4 - General action" - ] - }, - { - "text": "Sign and ratify the Optional Protocol to ICESCR and CRPD and ratify CED", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Further its endeavors with regard to the smooth and productive activity of the National Commission for Human Rights within the country", - "values": [ - "4 - General action" - ] - }, - { - "text": "Continue the training programmes for magistrates and law enforcement officials in accordance with international standards and human rights principles", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Consider the possibility of establishing a universal basic income with a view to further reducing poverty and inequality levels, for improving the existing social protection system", - "values": [ - "4 - General action" - ] - }, - { - "text": "Ratify the 1954 Convention relating to the Status of Stateless Persons as well as the 1961 Convention on the Reduction of Statelessness", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Continue efforts to ensure that people belonging to minority groups are not discriminated against in the criminal justice system.", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Continue national efforts for the establishment of specialized courts on violence against women, particularly domestic and sexual violence", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Expedite the legislative process related to the draft national action plan to combat racism, racial discrimination, xenophobia and related intolerance", - "values": [ - "4 - General action" - ] - }, - { - "text": "Intensify efforts on social inclusion and protection of the rights of vulnerable groups, in particular, provide equal access to the Roma community in employment, education, housing and social care", - "values": [ - "4 - General action" - ] - }, - { - "text": "Speed up the process of ratification of the ICCPR-OP2", - "values": [ - "4 - General action" - ] - }, - { - "text": "Continue to implement its decision No. 908 of 2007 regarding the coverage of certain costs for persons with special needs ", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Continue its efforts to alleviate poverty reduction", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Effectively combat discrimination against women in law and in practice", - "values": [ - "4 - General action" - ] - }, - { - "text": "Ensure full enjoyment of freedom and equality of religion and worship in the country", - "values": [ - "4 - General action" - ] - }, - { - "text": "Redouble its efforts to reduce poverty and increase national spending on education to eliminate the high level of illiteracy. ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Take necessary measures to put into practice free education for the first six years of primary education and eradicate all discrimination, including class, gender and between rural and urban populations in the education system", - "values": [ - "4 - General action" - ] - }, - { - "text": "Review legislation on the death penalty in order to eliminate the use of the death penalty, including stoning, as well as ratify the Second Optional Protocol to ICCPR and comply with the provisions of article 6, paragraph 5, of the Covenant on crimes committed by persons under the age of 18 ", - "values": [ - "3 - Considering action" - ] - }, - { - "text": "Collect and generate disaggregated data on manifestations of racism and discrimination with a view to evaluating the situation regarding minority, racial, and ethnic groups in Austria ", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Adopt penal legislation in order to hold those responsible for marital rape criminally responsible", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Continue the process of reforms in the area of criminal justice in line with the international obligations of Maldives", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Take all necessary measures, including legislative and administrative, to prohibit and eliminate all discriminatory treatment based on sexual orientation ", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Finalize the enactment process of the law on national minorities", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Continue its efforts to eliminate stereotypes based on male superiority ", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Develop a national action plan for human rights education that consists of a thorough needs assessment and programmes for human rights education at all levels ", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Further strengthen efforts to improve the lives of persons with disabilities, including by developing and implementing policy instruments to meet the education needs of children with disabilities", - "values": [ - "4 - General action" - ] - }, - { - "text": "Speed up the process of ratification of OP-CRC-AC ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Strengthen the Commission on Human Rights and Administrative Justice (CHRAJ) through financial and human resources", - "values": [ - "4 - General action" - ] - }, - { - "text": "Continue its efforts for the establishment of a national human rights mechanism in full compliance with the Paris Principles ", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Redouble its efforts to implement the principle of equal pay for work of equal value, including through the further development of the Equal Pay Programme", - "values": [ - "4 - General action" - ] - }, - { - "text": "Promote more equal representation of men and women in top positions ", - "values": [ - "4 - General action" - ] - }, - { - "text": "In accordance with recommendations made by CEDAW, take all appropriate measures in order to eliminate all forms of discrimination against rural women and harmful traditional practices ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Consider the adoption of an explicit provision ensuring that human rights treaties that have been ratified have legal effect as part of the national law", - "values": [ - "3 - Considering action" - ] - }, - { - "text": "Take measures to increase space for peaceful dissent, discussion and dialogue and ensure a conducive and safe environment for everyone exercising or seeking to exercise his or her rights to freedom of association including ensuring that civil society organizations and political parties can carry out their activities without hindrances and a less cumbersome registration process", - "values": [ - "4 - General action" - ] - }, - { - "text": "Take further steps to protect the human rights of those who live in rural areas where respect for basic human rights, especially with regard to women and children, remains impeded under customary law.", - "values": [ - "4 - General action" - ] - }, - { - "text": "Redouble its efforts to overcome the hurdles of racial discrimination and intolerance ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Immediately and unconditionally release all those who have been detained solely for the peaceful exercise of their right to freedom of expression and assembly", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Increase the involvement of local authorities in the National Strategy on Roma and equip the Strategy with adequate financial means and evaluation mechanisms ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Step up its efforts to protect the rights of migrant workers and fight against exploitation, ill-treatment and abuse by their employers ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Ensure the prompt, impartial and effective investigation of all attacks and violence against journalists to bring the perpetrators to justice and provide remedies for the victims and their families and, to reform the Penal Code to bring it in line with international standards on freedom of expression", - "values": [ - "4 - General action" - ] - }, - { - "text": "Become party to the 1954 and 1961 statelessness conventions and take all steps necessary to implement their content", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Seriously consider ratification of other existing human rights treaties ", - "values": [ - "3 - Considering action" - ] - }, - { - "text": "Expand its definition of the concept of rape in such a way as to clearly prohibit sexual harassment, and also define domestic violence in its criminal law ", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Undertake necessary measures to strengthen the independence of the Human Rights Commission, including by amending the 2005 Human Rights Commission Act with a view to aligning it with the Paris Principles", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Promptly take effective measures to safeguard the work of human rights defenders, including by ensuring that witness protection and the protection of human rights defenders who assist witnesses are a priority for the Government ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Take measures deemed appropriate to guarantee the right of children to food, and to this end, request the assistance of institutions, programmes and international organisms competent on this issue ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Repeal the amendment which requires NGOs that accept foreign funding to register and identify themselves as "foreign agents", as well as the amended definition of treason", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Step up the fight against communicable and non-communicable diseases, with a view to lowering the particularly high mortality rate", - "values": [ - "4 - General action" - ] - }, - { - "text": "Establish the moratorium on the death penalty", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Consider the ratification of other core international human rights treaties that it has not yet ratified, especially ICCPR, CAT and CPRD ", - "values": [ - "3 - Considering action" - ] - }, - { - "text": "Ensure family reunification and the conditions of the reception of refugees and asylum-seekers, in the implementation of the Law on International Protection, are in accordance with international law", - "values": [ - "4 - General action" - ] - }, - { - "text": "Consider ratifyingthe 1951 Refugee Convention and the 1967 Protocol thereto, and the Protocol to prevent, suppress and punish trafficking in persons, especially women and children ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Take additional measures to strengthen the fight against discrimination against women.", - "values": [ - "4 - General action" - ] - }, - { - "text": "Accede to the Convention against Discrimination in Education", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Further strengthen the efforts to eliminate the worst forms of child labour, especially in the rural areas", - "values": [ - "4 - General action" - ] - }, - { - "text": "Take urgent measures to eradicate child labour and child trafficking", - "values": [ - "4 - General action" - ] - }, - { - "text": "Strengthen the national and provincial commissions on the status of women through increased funding and support, given the importance of this issue", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Enhance its efforts to eliminate all forms of discrimination against women and withdraw its reservations to the Convention on the Elimination of all Forms of Discrimination against Women", - "values": [ - "4 - General action" - ] - }, - { - "text": "Intensify efforts to repeal all provisions discriminating against women that still persist in its domestic laws, with the aim of guaranteeing full compliance with provisions of the Convention on the Elimination of All Forms of Discrimination against Women and other international standards", - "values": [ - "4 - General action" - ] - }, - { - "text": "Continue efforts to strengthen the education system in accordance with international standards, placing due emphasis on human rights education", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Undertake socio-economic development programs that focus on education, job creation and poverty eradication under the National Economic and Social Development Plan 2013-2025", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Review the 2009 Media Law in conformity with international standards, reform the High Media Council in order to strengthen its credibility and independence, and conduct impartial investigations into the cases of harassment and intimidation of journalists ", - "values": [ - "3 - Considering action" - ] - }, - { - "text": "Recommended that the guarantee provided for the freedom of association and assembly should be enshrined into law.", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Ensure religious freedom and tolerance, by measures such as decriminalizing blasphemy and protecting the rights of religious minorities, atheists and agnostics", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Ratify the Optional Protocol to the Convention against Torture and Other Cruel, Inhuman or Degrading Treatment or Punishment and to establish the national preventive mechanism accordingly", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Bring its law in conformity with international human rights law", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Ensure effective protection against violence and discrimination against women, and implement awareness-raising campaigns about changes in traditional attitudes and discriminatory gender roles ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Abolish all corporal punishment of children in all settings ", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Strengthen the rights of vulnerable categories of the population, including the rights of the elderly ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Promote, protect and respect the right to freedom of expression, assembly and association in compliance with country's international human rights obligations ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Continue its promotion of legislation and actions aimed at eliminating discrimination and strengthening the protection of the rights of disadvantaged groups such as women, children and indigenous peoples", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Ensure the full respect of the constitutional provisions on freedom of expression, and refrain from using administrative, judicial, or financial means to limit the exercise of this human right", - "values": [ - "4 - General action" - ] - }, - { - "text": "Introduce as soon as possible the right to silence without restrictions when testifying, in accordance with its human rights international obligations", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Fully implement the Bahrain Independent Commission of Inquiry's (BICI) recommendations that cover a broad range of tasks, including the ensuring of accountability, prevention of the recurrence of human rights violations through law reform and training of law enforcement personnel, and respect of due process ", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Eliminate all forms of discrimination against women, in particular discrimination against divorced women and widows, so that they can participate in the economic and political life of their country", - "values": [ - "4 - General action" - ] - }, - { - "text": "Continue its efforts to achieve equitable socio-economic development and to further address poverty alleviation through its overarching objective according to its current policies and action plan ", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Conduct further work to ensure equality of men and women", - "values": [ - "4 - General action" - ] - }, - { - "text": "Further promote women's rights through increased participation in political, socio-economic and administrative decision making processes", - "values": [ - "4 - General action" - ] - }, - { - "text": "Continue efforts to strengthen the legislative and institutional basis of the national system for the protection of human rights", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Adopt effective measures to prevent discrimination and violence against women, including the adoption of a relevant strategy and a plan of action in this field ", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Continue applying programmes and measures to improve the enjoyment of the right to education, the right to health and the right to food ", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Ensure that all victims of trafficking, regardless of their immigration status, have access to care, rehabilitation and assistance programmes ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Set up training programmes on human rights for police officers", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Continue, in implementing the Sexual Offences Act, to work towards a fuller realization of the rights of victims of sexual offences ", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Address the root cause of illegal drugs through development", - "values": [ - "4 - General action" - ] - }, - { - "text": "Establish preventive measures such as the creation of the national action plan for the prevention of sexual violence as well as public information campaigns on domestic violence so as to facilitate the implementation of the Sexual Offences Act", - "values": [ - "4 - General action" - ] - }, - { - "text": "Cooperate closely with local human rights organizations in the follow up to this Universal Periodic Review ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Continue to improve the legal system, so that it reflects the will expressed through the reform of 2012, in order to further ensure the protection of human rights", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Ratify international instruments on human rights to which the country is not yet party", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Take urgent steps to prevent and punish violence against women in all its manifestations", - "values": [ - "4 - General action" - ] - }, - { - "text": "Seek provision of necessary technical assistance for human rights programmes in the fields of access to justice, law enforcement and environmental protection", - "values": [ - "1 - Minimal action" - ] - }, - { - "text": "Develop awareness raising programmes against the scourge of gender-based violence amongst public officials, law enforcement personnel and members of the judiciary", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Bring its legislation into line with its international obligations, notably those arising from the Second Optional Protocols to the ICCPR", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Strengthen mechanisms to combat discrimination of minorities and persons of immigrant background", - "values": [ - "4 - General action" - ] - }, - { - "text": "Continue actions to safeguard the physical and mental integrity of women, in accordance with the continuing awareness-raising campaign on the legal framework for substantial equality initiated in 2012", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Continue to seek aid from OHCHR as well as other international donors ", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Eliminate practices of forced placement in clinics for treatment to allegedly \u201ccure\u201c the sexual orientation or gender identity of lesbian, gay, bisexual, transgender and intersex persons, and ensure due accountability for the persons responsible, as well as full reparation for victims", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Decriminalize sexual relations between consenting adults of the same sex, and repeal any law discriminating against LGBT people ", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Meet relevant obligations under the International Covenant on Civil and Political Rights, and fulfil its universal periodic review first cyclecommitments to ensure the legitimacy and independence of the judiciary and establish an independent bar association", - "values": [ - "4 - General action" - ] - }, - { - "text": "Implement measures to foster a climate of greater tolerance and acceptance towards immigrants, many of whom face persecution and-or civil strife in their home countries and are therefore unable to return.", - "values": [ - "4 - General action" - ] - }, - { - "text": "Incorporate fully in its legislation the provisions of the Convention on the Rights of the Child to enhance the protection of children's rights.", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Ensure that laws and policies on the fight against terrorism are in accordance with international human rights standards", - "values": [ - "4 - General action" - ] - }, - { - "text": "Become a party to the optional protocols to ICCPR and CEDAW", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Take the measures necessary to guarantee that the Roma ethnic minority has access to identity documentation, without mentioning their ethnic group", - "values": [ - "4 - General action" - ] - }, - { - "text": "Allocate more resources and double efforts with the aim to conclude the ongoing legal reforms to harmonize national laws with international human rights standards and obligations", - "values": [ - "4 - General action" - ] - }, - { - "text": "Continue its efforts to strengthen the role of its national mechanisms and institutions for the promotion and protection of human rights in the country, particularly those of women and children", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Increase its efforts to address existing gaps in the legislation, including and especially with regard to discrimination against women ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Consider issuing a standing invitation to the United Nations Human Rights Council special procedures", - "values": [ - "3 - Considering action" - ] - }, - { - "text": "In favour of women, harmonize the provisions of the Family Code, with the CEDAW provisions, and increase efficiency of awareness raising campaigns and training to eliminate FGM and early marriage ", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Enact legislation that would prohibit discrimination based on sexual orientation and gender identity", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Prohibit absolutely corporal punishment inflicted on children in all environments, as well as the use, acquisition or the offering of children in the production of pornography and pornographic spectacles", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Ireland was committed to reviewing family law and the law on domestic violence", - "values": [ - "3 - Considering action" - ] - }, - { - "text": "Consider a reduction of the detention time of irregular migrants and asylum seekers.", - "values": [ - "3 - Considering action" - ] - }, - { - "text": "Adopt a national plan against gender-based violence. To identify and remedy those areas in the national legislation that might be discriminatory, including family laws, laws and procedures relating to the authority of guardians of women, nationality laws and norms relating to housing", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Strengthen its efforts in combatting the early marriage of girls", - "values": [ - "4 - General action" - ] - }, - { - "text": "Consider ratifying the remaining instruments in a progressive manner and have them effectively incorporated in the national legislation for effective implementation", - "values": [ - "3 - Considering action" - ] - }, - { - "text": "Strengthen protection and promote the rights of the Sami people, including in terms of teaching their language and preserving their culture and traditions ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Step up efforts to combat discrimination against vulnerable groups and minorities, in accordance with internationally established standards ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Adopt legislation providing for the right to collective bargaining and prohibiting acts of anti-union discrimination", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Strengthen efforts to prevent and combat all forms of discrimination and violence against women and children, in particular, practices such as female genital mutilation and child and early forced marriage. Ensure that victims of such violence receive appropriate help and that perpetrators are brought to justice", - "values": [ - "4 - General action" - ] - }, - { - "text": "Extend an open and permanent invitation to the United Nations special procedures mandate-holders ", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Enhance the Criminal Code which punishes hate crimes", - "values": [ - "4 - General action" - ] - }, - { - "text": "Increase efforts to protect journalists", - "values": [ - "4 - General action" - ] - }, - { - "text": "Further promote protection of victims of human trafficking, including measures of more effective investigations and prosecution of perpetrators", - "values": [ - "4 - General action" - ] - }, - { - "text": "Establish a national action plan for the implementation of Security Council resolution 1325 (2000) on women, peace and security, as well as explicitly criminalize the recruitment and use of children in hostilities", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Continue efforts to improve access of all the population to drinking water and sanitation", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Grant full access to special rapporteurs and Special proceduress mandate holders to visit the country, notably the Special Rapporteurs on the right to education, the right to food and on violence against women ", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Redouble efforts to guarantee the protection of human rights and fundamental freedoms in the fight against terrorism, paying particular attention to the recommendations made by the Special Rapporteur on this subject.", - "values": [ - "4 - General action" - ] - }, - { - "text": "Accede the 1967 Protocol relating to the Status of Refugees", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Institute human rights education and training of members of civil society as well as of the public service and State-owned entities ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Renew the Memorandum of Understanding in order to intensify technical assistance and advisory services in the field of human rights", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Continue to strengthen its national human rights institution, namely the Commission on Human Rights and Administrative Justice, for the Commission to further develop a national human rights action plan which incorporates the Sustainable Development Goals", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Continue to address violence against women, particularly in regional and local areas", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Continue the reforms undertaken with a view to improve the life conditions of detainees ", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Continue effectively to combat all forms of discrimination which the most vulnerable groups may suffer from and continue efforts to pacify the eastern part of the country.", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Review national legislation which results in the discrimination, prosecution and punishment of people solely for their sexual orientation or gender identity ", - "values": [ - "3 - Considering action" - ] - }, - { - "text": "Take the necessary executive and legislative measures to fight child labour, child abuse and trafficking in children", - "values": [ - "4 - General action" - ] - }, - { - "text": "Strengthen the role and capacity of initiative of the Chair of the National Human Rights Commission ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Adopt the national action plan on children", - "values": [ - "4 - General action" - ] - }, - { - "text": "Guarantee respect for human rights of foreign citizens, regardless of their immigration status, especially those from vulnerable groups, such as refugees, asylum-seekers and stateless persons, and guarantee respect for the principle of non-refoulement established in the 1951 Convention Relating to the Status of Refugees and its 1967 Protocol ", - "values": [ - "4 - General action" - ] - }, - { - "text": "With support from the relevant international organizations, continue to implement its education program to ensure access to quality education for all ", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Consider ratifying the Convention against Torture and Other Cruel, Inhuman or Degrading Treatment or Punishment", - "values": [ - "3 - Considering action" - ] - }, - { - "text": "Make efforts to explore options and introduce new methodologies with a view to raise awareness of human rights in the country", - "values": [ - "4 - General action" - ] - }, - { - "text": "Provide the same coverage in national legislation and anti-discrimination training activities for the grounds of sexual orientation and disability as for other grounds of discrimination, for example in areas such as the provision of services and health care.", - "values": [ - "4 - General action" - ] - }, - { - "text": "Intensify its awareness-raising and strengthening prevention efforts and measures and put in place effective monitoring and evaluation mechanisms to ensure the effectiveness of measures taken to address all forms of violence against women", - "values": [ - "4 - General action" - ] - }, - { - "text": "Ensure the effective implementation of the new laws related to human rights protection, in particular the mechanism of prevention and sanctioning of brutal acts committed by the police", - "values": [ - "4 - General action" - ] - }, - { - "text": "Ensure, through the Ministry of National Education, the inclusion of sexual and reproductive education in the national secondary curriculum as part of the preparation for adult life, which will contribute to prevent, inter alia, early marriage, unwanted pregnancy and the spread of HIV/AIDS among adolescents ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Continue its efforts to implement a law to combat child labour by adopting a draft law on prohibition of child labour and tackling its main causes", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "End the practice of arbitrarily revoking citizenship, especially where this renders individuals stateless and forces them into exile", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Improve its domestic legal framework on the rights of persons with disabilities in line with the provisions of the relevant international convention", - "values": [ - "4 - General action" - ] - }, - { - "text": "Undertake comprehensive measures to address violence against women and to ensure that victims have immediate protection", - "values": [ - "4 - General action" - ] - }, - { - "text": "Fully implement the Public Benefit Organizations Act as soon as possible", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Further accelerate efforts aimed at promoting the rights of women and children, in particular those with disabilities", - "values": [ - "4 - General action" - ] - }, - { - "text": "Eliminate the catch-all clause \u201cinexcusable error\u201c in article 109 of the Organic Code of the Judiciary and create a legal framework to ensure the full independence and impartiality of the judiciary in compliance with the Basic Principles on the Independence of Judiciary", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Enact comprehensive legislation addressing the situation of the "erased", ensuring them appropriate assistance and protection", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Study and address the root causes of domestic violence against women, in particular Aboriginal women", - "values": [ - "4 - General action" - ] - }, - { - "text": "Continue to strengthen the institutional structures and support measures for the full implementation of ratified international instruments. We likewise suggest placing special emphasis on persons with disabilities, victims of family and sexual violence, and all persons susceptible of or in a situation of vulnerability and discrimination", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Strengthen national mechanisms to combat human trafficking, specifically of women and girls, and to support and rehabilitate its victims", - "values": [ - "4 - General action" - ] - }, - { - "text": "Ratify ICESCR as well as ICCPR and CAT", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Adopt legislation aimed at protecting children from economic and sexual exploitation ", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Continued efforts in addressing and protecting the rights of ethnic minorities, including in particular the situation of Roma living in Slovenia", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Continue to spread human rights awareness throughout the country ", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Complete the reform of the security sector in order to ensure its conformity with international norms and to guarantee full respect of human rights by the security forces", - "values": [ - "4 - General action" - ] - }, - { - "text": "Take further steps to ensure, in law and in practice, the independence of the judiciary", - "values": [ - "4 - General action" - ] - }, - { - "text": "Continue its efforts in improving access, enrolment and quality of education in the country, including through the allocation of adequate financial resources ", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Ratify the Hague Convention on Protection of Children and Cooperation in Respect of Intercountry Adoption ", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Conduct a national review to examine the need to maintain the national state of emergency that has denied the people their basic human rights", - "values": [ - "3 - Considering action" - ] - }, - { - "text": "Conclude the enactment of a law aimed towards the abolition of the death penalty as prioritized by the Government of Ghana and the holding of the required referendum in this regard", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Continue efforts to combat harmful traditional practices against women and girls", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Ensure a coordinated response between police, justice, child protection, and social service officials so that women and children who are victims of violence, including sexual abuse, have access to immediate protection", - "values": [ - "4 - General action" - ] - }, - { - "text": "Continue to implement its social and economic development strategy in order to promote steady progress of its society ", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Hold accountable all parties responsible for violations of human rights, including abduction of civilians, torture and deaths in custody", - "values": [ - "4 - General action" - ] - }, - { - "text": "Develop specific measures to educate society and enforce existing legislation addressing the practice of ukuthwala and other customary practices leading to forced and child marriages", - "values": [ - "4 - General action" - ] - }, - { - "text": "Further strengthening national efforts to eliminate all forms of violence against women, including FGM, and taking all the necessary measures to enable women to participate in public and private life on an equal footing with men ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Consider withdrawing the general declaration to the Convention on the Elimination of All Forms of Discrimination against Women", - "values": [ - "3 - Considering action" - ] - }, - { - "text": "Adopt measures to ensure the issuance of birth certificates to newborn refugees ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Expedite the completion, and followed by the enactment of, the draft "Law on the Prevention of Human Trafficking and Protection of Victims"", - "values": [ - "4 - General action" - ] - }, - { - "text": "Intensify efforts to boost the status of women and eliminate all forms of violence against them", - "values": [ - "4 - General action" - ] - }, - { - "text": "Continue the practice of implementing programs aimed at further improving the welfare of the population ", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Ban all organizations that promote and incite racial discrimination, and adopt clear measures to effectively combat racially motivated violence by the law enforcement officers", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Take further action on justice sector reform to improve the efficiency of the judicial system", - "values": [ - "4 - General action" - ] - }, - { - "text": "Consider repealing the provisions imposing life imprisonment on minors, in line with the recommendations of the Committee on the Rights of the Child ", - "values": [ - "3 - Considering action" - ] - }, - { - "text": "Make efforts as set out in the Sustainable Development Goals, especially those related to poverty, education, health, agriculture and nutrition", - "values": [ - "4 - General action" - ] - }, - { - "text": "Consider ratifying the International Convention for the Protection of All Persons from Enforced Disappearance ", - "values": [ - "3 - Considering action" - ] - }, - { - "text": "Take all steps necessary to accelerate the ratification process of ICPPED", - "values": [ - "4 - General action" - ] - }, - { - "text": "Continue efforts to enhance enrolment of girls in school and minimize the dropout rate, and enhance literacy levels especially among women ", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Continue to combat terrorism, separatism and religious extremism and make sure people will enjoy human rights in a peaceful and stable environment ", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Ensure a full and effective enactment of the provisions of the new law on domestic violence against women and in this regard conduct awareness-raising campaigns on violence against women", - "values": [ - "4 - General action" - ] - }, - { - "text": "Incorporate fully, as a matter of urgency, the principles and provisions of the CRC into domestic law ", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Consider ratifying ILO core conventions", - "values": [ - "3 - Considering action" - ] - }, - { - "text": "Continue the process of legislative review to promote and protect all human rights", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Consider ratifying the International Convention on the Protection of the Rights of All Migrant Workers and Members of Their Families (ICRMW) ", - "values": [ - "3 - Considering action" - ] - }, - { - "text": "End the policy of Judaizing Jerusalem and end all the violations against the sanctity of the Al-Aqsa mosque and other places of worship", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "The Republic of Liberia is committed to protecting and promoting the rights of vulnerable groups including, but not limited to, women, children, the elderly, refugees, persons with disabilities, persons living with HIV/AIDS, and LGBTI persons. The Agenda for Transformation and the National Human Rights Action Plan both make provisions for the protection of vulnerable groups as an area of national priority. The Government has also established and supported a number of ministries and agencies dedicated to addressing the interests of vulnerable groups, including the Ministry of Gender, Children, and Social Protection, the Liberian Refugee, Repatriation, and Resettlement Commission (LRRRC), the National Commission on Disabilities, and the National AIDS Commission (NAC).", - "values": [ - "4 - General action" - ] - }, - { - "text": "Introduce policies oriented towards a better inclusion of all persons with disabilities in all areas of society, in particular children", - "values": [ - "4 - General action" - ] - }, - { - "text": "Speed up its efforts to effectively combat criminal networks ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Redouble its efforts to combat the persistence of acts of racial discrimination", - "values": [ - "4 - General action" - ] - }, - { - "text": "Continue to apply and respect human rights in the implementation of counter-terrorism measures, notably for the rights to privacy, freedom of expression and movement", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Ratify the Optional Protocol to the CRC on a communications procedure ", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "To encourage the early adoption of the Law on the Prevention and Elimination of All Forms of Racial Discrimination,", - "values": [ - "4 - General action" - ] - }, - { - "text": "Spare no efforts for the necessary establishment of a national human rights institution", - "values": [ - "4 - General action" - ] - }, - { - "text": "Speed up the process for bringing the National Human Rights Commission in line with the Paris Principles", - "values": [ - "4 - General action" - ] - }, - { - "text": "Review the bill and relevant legislative framework to ensure civilian courts hear cases related to violations of human rights ", - "values": [ - "3 - Considering action" - ] - }, - { - "text": "Adopt measures to combat attitudes and persistent stereotypes concerning the role and responsibilities of women in society.", - "values": [ - "4 - General action" - ] - }, - { - "text": "Continue harmonizing national legislation with the Convention on the Rights of Persons with Disabilities (CRPD) ", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Move on speedily to the ratification and/or application of human rights instruments and optional protocols, particularly the Optional Protocol to the Convention against Torture and Other Cruel, Inhuman or Degrading Treatment or Punishment", - "values": [ - "4 - General action" - ] - }, - { - "text": "Consider ratifying the UNESCO Convention against Discrimination in Education", - "values": [ - "3 - Considering action" - ] - }, - { - "text": "Take additional concrete measures to promote and protect the women's rights, namely measures to prevent, to inform and to fight against discrimination and violence against them", - "values": [ - "4 - General action" - ] - }, - { - "text": "Take more effective measures to eliminate discrimination against non-citizens in relation to working conditions and work requirements, including employment rules and practices with discriminatory purposes or effects - and that legislation prohibiting discrimination in employment and all discriminatory practices in the labour market be fully implemented in practice and that further measures be taken to reduce unemployment among immigrants ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Include all children in education regardless of their registration status, as recommended by the Committee on the Rights of the Child ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Intensify its efforts to ratify the Convention against Torture and Other Cruel, Inhuman or Degrading Treatment or Punishment", - "values": [ - "4 - General action" - ] - }, - { - "text": "Strengthen the campaign against illegal drugs", - "values": [ - "4 - General action" - ] - }, - { - "text": "Increase efforts to protect the rights of indigenous people and persons of African descent, including by adopting and strengthening tailored programmes to reduce poverty and discrimination among these groups", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Ratify the International Covenant on Civil and Political Rights and the Convention against Torture, and ensure full implementation of their provisions ", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Pursue efforts to promote and protect human rights", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Engage civil society, activists, non-governmental organizations and the media to seek common ground on the draft hate crimes bill", - "values": [ - "4 - General action" - ] - }, - { - "text": "Consider accelerating the ratification of all human rights treaties to which it is not yet party, particularly ICESR-OP, ICCPR-OP 2, CEDAWC, CAT-OP, CRC-OPAC, and CRC-SC-OP", - "values": [ - "3 - Considering action" - ] - }, - { - "text": "Ensure effective implementation of its programmes and policies against domestic violence, inter alia, through the continued provision of adequate funding and the creation of a monitoring mechanism", - "values": [ - "4 - General action" - ] - }, - { - "text": "Abolish the death penalty and terminate public executions ", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Ensure full birth registration, including by retroactive registration, and access to public services, including to education for children lacking documentation", - "values": [ - "4 - General action" - ] - }, - { - "text": "Use the three-year grant to further raise the quality of education, thereby ensuring the right to education ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Mozambique reaffirms its commitment to ensure a full realization of all human rights and principles enshrined in the light of its Constitutional Charter and other legal devices that do not contradict it.", - "values": [ - "4 - General action" - ] - }, - { - "text": "Use more actively existing or new platforms for involving the Roma community in policy formulation and implementation at both the local and central levels, and actively pursue an increase in the number of Roma in all public institutions", - "values": [ - "4 - General action" - ] - }, - { - "text": "Ensure cooperation and responsiveness of financial institutions in respect of claims for the recovery of funds of illicit origin", - "values": [ - "4 - General action" - ] - }, - { - "text": "Redouble efforts to improve conditions of detention in prisons, guaranteeing the compatibility of rights with cultural practices.", - "values": [ - "4 - General action" - ] - }, - { - "text": "Actively pursue the program scheduled by the National Human Rights Institution and share the best practices acquired with the international community ", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Continue giving priority and allocating adequate resources for the implementation of the national strategies for the protection and promotion of the rights of children", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Introduce into national legislation the abolition of the death penalty and accede to the Second Optional Protocol to the International Covenant on Civil and Political Rights, aiming at the abolition of the death penalty", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Implement inclusion measures that ensure access for people with disabilities to better employment opportunities ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Take further actions to ensure freedom of expression on the Internet, including opinions which are different from the positions of the Government", - "values": [ - "4 - General action" - ] - }, - { - "text": "Keep the moratorium on the death penalty and intensify dialogue on capital punishment and its impact, towards its full abolition for all crimes", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Increase access to quality education by indigenous and Afro- Ecuadorian women and those in rural areas", - "values": [ - "4 - General action" - ] - }, - { - "text": "Improve cooperation with United Nations human rights mechanisms ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Ratify the major international human rights treaties, including the International Covenant on Civil and Political Rights and the International Covenant on Economic, Social and Cultural Rights in a timely fashion", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Establish a national institution for the promotion and protection of human rights with a broad mandate and independent membership", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Develop a national asylum seeker plan and become a party to the Convention Relating to the Status of Stateless Persons along with the Convention on the Reduction of Statelessness", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Withdraw its interpretative statement with respect to article 4 of the International Convention on the Elimination of All Forms of Racial Discrimination.", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Continue implementing programmes and measures designed to ensure universal access for its population to education, health and social security services ", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Take the necessary measures to protect children from early marriage, trafficking and infanticide", - "values": [ - "4 - General action" - ] - }, - { - "text": "Implement the recommendations of the Council and special procedures, particularly the Special Rapporteur on the situation of human rights in the Palestinian territories occupied since 1967 and the Special Committee on Israeli Practices in the Occupied Palestinian Territories.", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Ensure that all allegations of arbitrary detention, torture and enforced disappearance are impartially and effectively investigated by an independent body", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Take all the measures to prevent and combat violence and sexual abuse against women and children, including rape, by promoting an effective mechanism to receive and investigate complaints of sexual violence and offering the victims psychological and medical assistance ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Ratify the international human rights treaties and their optional protocols, in order to strengthen the implementation and observance of international human rights law, particularly the International Covenant on Civil and Political Rights and the International Covenant on Economic, Social and Cultural Rights", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Continue its efforts to fight poverty and ensure sustainable development, as well as implement fully plans to reduce illiteracy and to provide high-quality medical services (particularly to those affected by HIV/AIDs), ensure the population has access to water ", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Issue standing invitations to all special procedures of the Human Rights Council ", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Review its national legislation to ensure full alignment with the Rome Statute of the International Criminal Court", - "values": [ - "3 - Considering action" - ] - }, - { - "text": "Widen the scope of international obligations through ratification of international treaties such as the Optional Protocol to the Convention against Torture and the International Convention on the Protection of All Persons from Enforced Disappearance", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Establish an immediate official moratorium on the use of the death penalty with a view to abolishing it and to adhering to the Second Optional Protocol to the International Covenant on Civil and Political Rights", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Cooperate responsibly with the international community", - "values": [ - "4 - General action" - ] - }, - { - "text": "Adopt legislative measures that guarantee greater integration of women as well as safeguards for their personal rights and reproductive health care and reform the Offences against the Person Act of 1861 to decriminalize abortion under certain circumstances", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Address the exclusion of persons with disabilities at the family and community levels through public education and through targeted and concrete measures, in consultation with organizations of persons with disabilities", - "values": [ - "4 - General action" - ] - }, - { - "text": "Continue to implement credit-for-jobs projects and to promote labour market development.", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Work with the Office of the United Nations High Commissioner for Human Rights to prepare a common core document as a way to streamline and reduce the burden of treaty-reporting ", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Extend a standing and permanent invitation to the special procedures of the Human Rights Council", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Consider ratifying OP-CEDAW", - "values": [ - "3 - Considering action" - ] - }, - { - "text": "Fully implement the Ghana Child Labour Monitoring System and link these efforts with programmes to promote remediation and ensure adequate resources for the Anti-Human Trafficking Unit for the pursuit of prosecutions", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Continue strengthening international cooperation in its fight against corruption ", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Continue determinedly its effective measures to achieve the Millennium Development Goals, including the fight against poverty, male/female equality and access to education without discrimination", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Take measures to improve working conditions in line with recommendations issued by the Committee on Economic, Social and Cultural Rights, including through the abolition of any kind of forced labour, elimination of fines for labour inactivity, and the abandonment of the widespread use of short-term working contracts", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Ensure the protection of women's human rights by reducing and eliminating human trafficking, sexual violence and exploitation, domestic violence, maternal mortality, and female genital mutilation", - "values": [ - "4 - General action" - ] - }, - { - "text": "Take the requisite measures to safeguard the independence of the judiciary, thereby strengthening this branch of Government", - "values": [ - "4 - General action" - ] - }, - { - "text": "Ensure equal pay for work of equal value ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Take further measures to improve freedom of expression by allowing for an independent media and improving access to information through public access to the internet by taking advantage of the recent investment in the fibre optic network ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Examine the possibility of taking interim measures to facilitate access to justice in favour of women and to give them the necessary judicial assistance", - "values": [ - "3 - Considering action" - ] - }, - { - "text": "Amend the Human Rights Commission Act to ensure that the Commission enjoys full independence and is adequately resourced, in accordance with the Paris Principles", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Consider adopting measures to prevent gender-based violence, including amending legislation to include such an offence ", - "values": [ - "3 - Considering action" - ] - }, - { - "text": "End all Israeli arbitrary practices such as administrative detention of Palestinians, forced exile, and sanctions", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Re-examine the modalities for lifting parliamentarian immunity to ensure that this practice does not contravene the principles of pluralism and respect for freedom of expression ", - "values": [ - "3 - Considering action" - ] - }, - { - "text": "Continue to promote the empowerment of women, particularly their employment and participation in politics and the decision-making process ", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Educate its public through awareness-raising campaigns enabling them to use existing legislative and institutional mechanisms for the protection of human rights.", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Conduct prompt and impartial investigations into allegations of torture and ensure that anyone committing such a crime receives a punishment commensurate with the gravity of the act", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Take further steps towards the establishment of the OHCHR country office in Myanmar", - "values": [ - "4 - General action" - ] - }, - { - "text": "Further promote human rights education and training at all educational levels ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Seek assistance from the international community in tackling the challenges it faces ", - "values": [ - "1 - Minimal action" - ] - }, - { - "text": "Pursue efforts to combat violence against women and promote the rights of women", - "values": [ - "4 - General action" - ] - }, - { - "text": "Increase its efforts to reduce poverty within society and fight against unemployment", - "values": [ - "4 - General action" - ] - }, - { - "text": "Facilitate access to justice through additional measures, which could reduce structural obstacles such as the cost and the cumbersome nature of the procedures ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Continue its fight against poverty and in particular against malnutrition in rural areas and, to that end, identify its needs in terms of technical and financial assistance, and consider requesting the aid of United Nations agencies and programmes competent in this area ", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Accelerate the process of ratification as the concerned groups require the imminent protection of the Convention on the Rights of Persons with Disabilities", - "values": [ - "4 - General action" - ] - }, - { - "text": "Strengthen the national legal framework to protect children from all forms of violence", - "values": [ - "4 - General action" - ] - }, - { - "text": "Introduce a de jure moratorium on the executions as rapidly as possible ", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Take further measures in combating gender-based violence, domestic violence, ill-treatment and abuse of children including sexual abuse ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Continue to work for taking the necessary steps to achieve universal primary education by 2015 ", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Redouble efforts to protect the rights of members of minority religious, ethnic and social groups and particularly focus on protecting members of the LGBT community from both official and societal discrimination ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Set up a national human rights institution in conformity with the Paris Principles", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Respect the rights of freedom of expression, association and assembly in accordance with its national and international legal framework and ensure that its security forces maintain public order without resorting to the excessive use of force", - "values": [ - "4 - General action" - ] - }, - { - "text": "Facilitate access to social and health services as well as to education for children belonging to more vulnerable groups", - "values": [ - "4 - General action" - ] - }, - { - "text": "Provide better police protection to judges, investigators and witnesses.", - "values": [ - "4 - General action" - ] - }, - { - "text": "Take all necessary measures to prohibit the use, procuring or offering of a child for the purpose of the production and trafficking of drugs ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Establish national mechanisms guaranteeing full protection for women, reinforcing the necessary competencies and budget and the National Institute for Women and recognizing the legal character of the Municipal Women's Offices ", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Ensure transparent and effective investigation and prosecution where appropriate of alleged human rights violations by law enforcement officials, particularly in reference to the treatment of members of minority groups", - "values": [ - "4 - General action" - ] - }, - { - "text": "Guarantee the right to family visits and legal assistance, in particular during police inquiries ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Consider continuing to work towards strengthening Government institutions ", - "values": [ - "3 - Considering action" - ] - }, - { - "text": "Further enhance the capacity of the National Commission on the Rights of the Child", - "values": [ - "4 - General action" - ] - }, - { - "text": "Promote national reconciliation by investigating crimes, accountability measures and reparation for victims ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Ensure impartial investigations into all instances of death in custody", - "values": [ - "4 - General action" - ] - }, - { - "text": "Consider adopting specific legislation to combat trafficking in persons to ensure full protection of women and children who often fall prey to illicit networks ", - "values": [ - "3 - Considering action" - ] - }, - { - "text": "Ensure the equal enjoyment of economic, social and cultural rights by all individuals and groups under its jurisdiction and adopt a national plan of action to combat the rise in homelessness ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Redouble its efforts in guaranteeing the right to work and the equality of all workers in the public sector, without discrimination", - "values": [ - "4 - General action" - ] - }, - { - "text": "Take measures to provide the victims of trafficking with effective remedy, including compensation and rehabilitation", - "values": [ - "4 - General action" - ] - }, - { - "text": "Intensify efforts to adopt laws and measures to address domestic violence more effectively", - "values": [ - "4 - General action" - ] - }, - { - "text": "Ensure civil society organizations are able to operate freely, including groups that may be critical of the Government, by amending or repealing Presidential Decrees Nos. 16 and 739", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Continue its positive efforts to reduce domestic violence throughout the country", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Step up the national efforts in the field of trafficking in persons through a victim-oriented approach that attaches special focus on the protection of children from abuse and sexual exploitation ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Extend a standing invitation to all special procedures of the Human Rights Council.", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Continue working on the harmonization of its domestic normative framework with its international obligations to which it is a State party, taking into account the recommendations made by treaty bodies and special procedures mandate holders", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Ensure the protection of its citizens' economic, social and cultural rights.", - "values": [ - "4 - General action" - ] - }, - { - "text": "Develop further the National Strategy for Gender Equality and Domestic Violence adopted in 2007 in accordance with the recommendations made by the Committee on Economic, Social and Cultural Rights and the Committee against Torture ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Display greater firmness in preventing abuses of police custody, torture and ill-treatment and brings criminal proceedings against the perpetrators of such violations.", - "values": [ - "4 - General action" - ] - }, - { - "text": "Continue the establishment of the Human Rights Commission", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Continue promoting the participation of women in public affairs and socio-economic activities", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Take appropriate measures to grant unfettered access to the Special Rapporteur on the situation of human rights in Belarus as well as respond positively to pending visit requests of other special procedures mandate holders of the Human Rights Council and eventually consider extending a standing invitation", - "values": [ - "4 - General action" - ] - }, - { - "text": "Reform customary law to eliminate restrictions on women's access to property", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Compliance with international obligations, design and implementation of a follow-up system of international commitments", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Full implementation of the new criminal procedure code, and that the independency of judges is strengthened, the role of the public prosecution is balanced and corruption in judiciary system is tackled ", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Implement the recommendations of United Nations treaty bodies with regard to the repeal of prohibition of all forms of abortion, and consider the introduction of legislation that ensures the rights of women and girls in situations where their life is endangered as a result of pregnancy and in which termination of the pregnancy could save their life", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Promote freedom of religion and belief, including by increasing access to religious literature, places of worship and public religious gatherings for non-Muslims and non-Shafi'i Muslims ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Introduce a new media law removing all prison penalties for defamation and libel and guaranteeing the right to be informed by all means, including the internet", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Take further measures to enhance the rights of regular and irregular migrants alike", - "values": [ - "4 - General action" - ] - }, - { - "text": "Consider the ratification of ICCPR and the Covenant on Economic, Social and Cultural Rights (ICESCR), the International Convention on the Protection of the Rights of All Migrant Workers and Members of Their Families and CRPD ", - "values": [ - "3 - Considering action" - ] - }, - { - "text": "Continue to strengthen its efforts to ensure equal access for girls and women to all levels of education, including by taking concrete steps to overcome obstacles for girls' and women's access to, and completion of, education in rural areas ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Continue its efforts to improve and ensure access to education for all children and to include human rights teaching in school programs", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Extend the applicability of the Optional Protocol to the Convention on the Rights of the Child on the sale of children, child prostitution and child pornography and the Protocol to Prevent, Suppress and Punish Trafficking in Persons, Especially Women and Children to Greenland and to the Faroe Islands ", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Take measures to further protect and promote the rights of women, including by enforcing laws against domestic violence ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Strengthen legislation and improve understanding within society of the issues relating to disability discrimination ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Continue to put forward effective measures to eliminate violence against women", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Establish a moratorium on the use of the death penalty with a view to abolishing capital punishment for all crimes", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Ensure the participation of indigenous peoples in the political sphere and continue with the process of transferring land duly demarcated and titled ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Accelerate the drafting of the national human rights action plan for the next five years and start implementing it", - "values": [ - "4 - General action" - ] - }, - { - "text": "Consider issuing a standing invitation to Special Procedures mandate holders", - "values": [ - "3 - Considering action" - ] - }, - { - "text": "Develop a strategy to reduce prison overcrowding and improve conditions in line with the United Nations Standard Minimum Rules for the Treatment of Prisoners", - "values": [ - "4 - General action" - ] - }, - { - "text": "Accede to the 1961 Convention on the Reduction of Statelessness ", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Take concrete steps to strengthen the protection of victims of domestic violence, ensuring that complaints of domestic violence are properly registered and investigated by the police, and that perpetrators are prosecuted and convicted ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Continue promoting equality, participation and empowerment of women in public policy-making and decision-taking", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Take measures to increase the schooling rate, particularly in rural areas", - "values": [ - "4 - General action" - ] - }, - { - "text": "Increase the amount of spending on health with special attention to women and children so as to achieve relevant Millennium Development Goals as soon as possible", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Decriminalize sexual relations between consenting adults of the same sex and repeal all discriminatory provisions relative to lesbian, gay, bisexual and transgender people ", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Continue its efforts to develop and implement the National Human Rights Action Plan", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Undertakes a thorough review with key stakeholders and civil society of its existing Cyber Crime and Statistic Acts and proposed Media Services and Access to Information bills, to meet human rights obligations", - "values": [ - "3 - Considering action" - ] - }, - { - "text": "Strengthen its efforts to guarantee freedom of assembly and association, to respect the work of human rights defenders, and that legislation concerning NGOs is implemented accordingly", - "values": [ - "4 - General action" - ] - }, - { - "text": "Continue with measures aimed at protecting and respecting civil and political rights", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Impose a moratorium on executions with a view to abolish the death penalty ", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Strengthen the measures to ensure the protection of people with albinism, including by expediting the investigation and prosecution of all cases and effectively fighting impunity", - "values": [ - "4 - General action" - ] - }, - { - "text": "Ratify and fully implement the International Labour Organization Protocol to the Forced Labour Convention, 1930", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "In its future decisions and actions, give priority to human rights, especially with regard to the most vulnerable categories, such as women and children", - "values": [ - "4 - General action" - ] - }, - { - "text": "Ratify CEDAW in parallel with enacting and implementing specific legislation to fight violence against women, with the possible assistance of the Pacific Island Forum Secretariat ", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Ratify ICCPR-OP 1 and ICESCR ", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Continue all efforts to eliminate discrimination based on sexual orientation and gender identity", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Include sexual orientation and gender identity in all laws and initiatives combating discrimination and promoting equality, and to develop public education and sensitivity programmes and make them available, including to police, military, judicial, prison and other authorities", - "values": [ - "4 - General action" - ] - }, - { - "text": "Ensure effective protection of journalists and human rights defenders against intimidation, harassment, arrest and detention ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Take additional measures to ensure that all children have access to primary and secondary education", - "values": [ - "4 - General action" - ] - }, - { - "text": "Continue its efforts to consolidate the rights of persons with disabilities", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Continue efforts to combat human rights violations in the public administration ", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Take effective measures against enforced disappearances by strengthening the Commission of Inquiry and expanding their mandate to all security agencies", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Consider improving the basic pension scheme for the elderly, in consultation with their representatives within the associations, so as to guarantee them sufficient resources to cover their living expenses", - "values": [ - "4 - General action" - ] - }, - { - "text": "Continue more efforts to combat discrimination against women ", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Develop a comprehensive strategy to address the socio-economic challenges faced by IDPs, emphasizing their integration in the local communities to promote work and the autonomy of the individual ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Accede to the Agreement on the Privileges and Immunities of the International Criminal Court ", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Continue promoting cooperation and dialogue in addressing situations of concern in the Human Rights Council ", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "There is full complementarity between the Rome Statute and the Crimes Decree, and Fiji commits to keeping current with amendments to the Rome Statute.", - "values": [ - "4 - General action" - ] - }, - { - "text": "Continue its positive measures, including through developing activities of the Ombudsman on the Rights of the Child ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Implement and enforce the domestic violence law of 2013 as well as strengthen the protection and promotion of women's rights through legislative and policy measures and by addressing social and cultural attitudes and practices", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Accede to the Convention against Torture and Other Cruel, Inhuman or Degrading Treatment or Punishment and align its legislation accordingly", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Take additional measures to reduce poverty, by establishing plans and programmes to improve living conditions of the whole population ", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Adopt without delay a uniform Family Code that fully complies with the provisions of CEDAW ", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Promote long-term programmes and initiatives to effectively promote full national integration and combat structural discrimination, for example by including minority languages in official procedures and documents, as well as including prohibition of discrimination in the Civil Code ", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Adopt the necessary measures to increase the judicial control over the duration of pre-trial detention", - "values": [ - "4 - General action" - ] - }, - { - "text": "Continue its efforts to offer universal education for all through the development of a greater number of primary school institutions as well as by increasing support to economically disadvantaged and vulnerable children, and providing support to children with disabilities ", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Ratify the International Covenant on Economic, Social and Cultural Rights without reservations", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Ensure that the new legislation regulating freedom of assembly is brought in line with international human rights law, particularly the International Covenant on Civil and Political Rights, to which Syria has been a party since 1969 ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Strengthen educational measures and intensify cooperation with civil society organizations and the media, with a view to eradicating traditional stereotypes that perpetuate discrimination and violence against women", - "values": [ - "4 - General action" - ] - }, - { - "text": "Significantly promote sexual education, in particular oriented towards adolescent girls and boys, paying special attention to the prevention of early pregnancy and to the control of sexually transmitted diseases and HIV/AIDS ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Continue practical efforts to improve the overall human rights situation in the country by strengthening, inter alia, its effective bilateral and multilateral cooperation ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Create and maintain, in law and in practice, a safe and enabling environment, in which human rights defenders, journalists and civil society can operate free from hindrance and insecurity, in accordance with Human Rights Council resolutions 22/6, 27/5 and 27/31", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Provide for persons belonging to the Slovenian minority all guaranteed rights", - "values": [ - "4 - General action" - ] - }, - { - "text": "Withdraw all reservations to human rights instruments to which Germany is a party", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Intensify efforts in improving access to education for students from - low-income families ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Continue its efforts to complete the ratification process for CRPD ", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Ratify those conventions to which it is not yet a party, and accelerate the incorporation in its domestic legal order of the provisions of those conventions to which it is already a party to ", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Implement fully and effectively the judgments of the European Court of Human Rights in the case of RR v. Poland and P&S v. Poland on the issue of women and girls\u2019 access to sexual and reproductive health-care and services", - "values": [ - "4 - General action" - ] - }, - { - "text": "Extend an invitation to the Special Rapporteur on freedom of opinion and expression and the Special Rapporteur on the right of peaceful assembly and of association to visit Djibouti ", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Continue making progress in the protection and promotion of the rights of migrants, including the safeguard of the interests of boys, girls, adolescents and women ", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Continue taking measures in order to protect the rights of the child, inter alia by ratifying the third Optional Protocol to the Convention on the Rights of the Child", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Draft a comprehensive law on children to incorporate in Slovenian domestic law all the provisions of the Convention on the Rights of the Child", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Takes steps to ensure proper and widespread enforcement of article 29 of the Constitution and ratify the Optional Protocol to the Convention against Torture ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Establish provisions for conscientious objections to military service and bring an end to indefinite, involuntary conscription or national service ", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Consider the observations of the United Nations High Commissioner for Refugees regarding the International Protection Act and the screening of asylum seekers and refugees", - "values": [ - "3 - Considering action" - ] - }, - { - "text": "Redouble its efforts to ratify the Convention against Torture and the International Convention on the Protection of the Rights of All Migrant Workers and Members of Their Families", - "values": [ - "4 - General action" - ] - }, - { - "text": "Implement the EU Directive on trafficking in human beings by April 2013 and sign the Council of Europe Convention on Preventing and Combating Violence Against Women and Domestic Violence ", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Ratify the Convention against Torture and Other Cruel, Inhuman or Degrading Treatment, as previously recommended", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Implement fully the recommendations of the Committee on the Elimination of Discrimination against Women, including by repealing discriminatory provisions in the family law ", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Respect the principles and purposes of the Charter of the United Nations", - "values": [ - "4 - General action" - ] - }, - { - "text": "Extend invitations the Special Rapporteur on human rights defenders.", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Address and provide adequate follow-up to the recommendations of the Special Rapporteur for the protection of human rights and fundamental freedoms while countering terrorism, as a result of his visit to the country, in coordination with relevant ministries and by consulting civil society organizations ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Continue to strengthen its policies and programmes for enhancing women's rights, empowerment and equality in accordance with its socio-cultural and national context", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Engage in national consultations with relevant stakeholders to consider the possible ratification of the ICRMW ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Take further steps to combat violence against women", - "values": [ - "4 - General action" - ] - }, - { - "text": "Further continue the existing cooperation with United Nations human rights mechanisms", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Consider the possibility of acceding to the Palermo Protocol to Prevent, Suppress and Punish Trafficking in Persons, Especially Women and Children, supplementing the United Nations Convention against Transnational Organized Crime ", - "values": [ - "3 - Considering action" - ] - }, - { - "text": "Reverse the amendments weakening the protection provided under the Comprehensive Act against Violence towards Women ", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Intensify efforts and effective measures on social and economic development while protecting all vulnerable groups such as women, children, persons with disabilities and migrants, from all forms of discrimination", - "values": [ - "4 - General action" - ] - }, - { - "text": "Continue its policies in the area of the promotion and protection of the human rights of women", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Continue its ongoing review of reservations entered to international human rights instruments", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Continue to strengthen and reform the social protection system to cover all persons, including those from the most disadvantaged and marginalized groups", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Continue to protect and promote the rights of migrant workers ", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Continue to raise awareness regarding the criminal nature of domestic violence and keep on bringing those responsible before the courts", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "To submit all due reports to treaty monitoring bodies.", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Raise the age of marriage for girls to 18", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Take further steps to honour its Constitution and protect and promote women's rights as an integral part of universal human rights.", - "values": [ - "4 - General action" - ] - }, - { - "text": "Study the possibility of ratifying the CPED", - "values": [ - "3 - Considering action" - ] - }, - { - "text": "Consider increasing the use of non-custodial measures to reduce overcrowding ", - "values": [ - "3 - Considering action" - ] - }, - { - "text": "Maintain its moratorium on death sentences and take the necessary steps for the abolishment of the death penalty, including the ratification of the Second Optional Protocol to the International Covenant on Civil and Political Rights", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Put on trial its gross violators of human rights and its war criminals ", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Stepping up action to eliminate discrimination against women, violence against women and the practice of female genital mutilation", - "values": [ - "4 - General action" - ] - }, - { - "text": "Incorporate human rights training and education strategies in their public policies ", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Strengthen efforts to prevent and punish the crimes of child prostitution, pedophilia and child pornography ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Ensure the basic needs of vulnerable groups with educational programs, and prevention and assistance on HIV-AIDS ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Consider ratifying UNESCO's Convention for the Safeguarding of Intangible Cultural Heritage adopted in 2003 ", - "values": [ - "3 - Considering action" - ] - }, - { - "text": "Allow and facilitate the visit of special procedures mandate holders who have asked for it", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Ensure that the judicial and law enforcement system is not abused to harass individuals for expressing their political or religious views", - "values": [ - "4 - General action" - ] - }, - { - "text": "Acknowledge the harm done to the victims of discrimination against Roma, bring the perpetrators to justice and provide reparations to the victims", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Ratify the Statute of Rome on the International Criminal Court ", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Continue and pursue its efforts to enable children to complete their education and protect them from exploitation, and adopt environmentally sustainable development", - "values": [ - "4 - General action" - ] - }, - { - "text": "Take further steps to prevent racially motivated violence through awareness-raising activities and improve the employment situation of immigrants, as well as to combat violence in general and strengthen the prosecution of those who still engage in it ", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Continue efforts to promote equal opportunities between men and women by strengthening the implementation of the quota law with respect to electoral lists and the functioning of the tripartite equal opportunities commission, among other initiatives", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Take meaningful steps to guarantee in practice the equal and effective enjoyment of culture, profession and practice of religion and use of language by all persons, including those claiming to belong to ethnic, religious and linguistic minorities", - "values": [ - "4 - General action" - ] - }, - { - "text": "Carry out education and awareness raising campaigns to inform parents and other actors of non-violent methods of disciplining and educating children (and the right of children to protection) ", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Continue to improve the respect of the freedom of expression and the protection of journalists, within the framework of the media legislation, which is hampering freedom of expression through the inclusion of broadcasting thresholds in languages belonging to national minorities", - "values": [ - "4 - General action" - ] - }, - { - "text": "Review its migration and criminal procedure codes with a view of deleting the provisions allowing for detaining non-accompanied children", - "values": [ - "3 - Considering action" - ] - }, - { - "text": "Enact legislation making enforced disappearance a crime under national law in accordance with the International Convention for the Protection of All Persons from Enforced Disappearance", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Promote legislation in conformity with UNICEF and ILO standards regarding the rights of the child.", - "values": [ - "4 - General action" - ] - }, - { - "text": "Amend the Right to Information Bill in line with the recommendations made by CHRAJ", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Ratify ICERD and ICESCR ", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Undertake special measures concerning employment, social welfare and protection of the rights of vulnerable groups, in particular women and persons with disabilities ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Consider creating an overall strategy to eliminate violence against women, which would include a preventive component.", - "values": [ - "3 - Considering action" - ] - }, - { - "text": "It has been two years since the Great East Japan Earthquake in 2011. In close consultation with disaster-affected areas, Japan is committed to improve the situation of those affected and to restore the areas as soon as possible. Japan is willing to share its lessons learned and experiences with the world community, including on the occasion of 2015 United Nations World Conference on Disaster Risk Reduction to held in Japan", - "values": [ - "4 - General action" - ] - }, - { - "text": "Continue its efforts aimed at protecting aid workers and relief convoys and take measures against banditry acts ", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Ratify the Convention against Torture and Other Cruel, Inhuman or Degrading Treatment or Punishment and other international instruments as soon as possible and as a priority.", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Step up efforts to accomplish the National Plan of Action for the Promotion and Protection of human rights (2013-2017)", - "values": [ - "4 - General action" - ] - }, - { - "text": "Expedite the adoption of a law on trafficking in persons, which would provide for the criminalization of all forms of trafficking, sanctions and adequate assistance for victims", - "values": [ - "4 - General action" - ] - }, - { - "text": "Full participation of indigenous peoples in decision making concerning them, and that they are consulted during the planning and implementation of major economic projects", - "values": [ - "4 - General action" - ] - }, - { - "text": "Incorporate economic, social and cultural rights in the Bill of Rights Act ", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Sign and ratify the Optional Protocol to the International Covenant on Economic, Social and Cultural Rights, the Optional Protocol to the International Covenant on Civil and Political Rights, the Optional Protocol to the Convention against Torture and other Cruel, Inhuman or Degrading Treatment or Punishment, the International Convention for the Protection of all Persons from Enforced Disappearance, the Convention on the Rights of Persons with Disabilities and its Optional Protocol, the Optional Protocol to the Convention on the Elimination of All Forms of Discrimination against Women and the Optional Protocols to the Convention on the Rights of the Child", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Continue to cooperate with human rights mechanisms, be they regional or international", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Submit its long-overdue reports to the relevant treaty body mechanisms", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Bring its laws and practice fully in conformity with article 19 of the ICCPR ", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Further enhance the role of the National Peace and Reconciliation Commission", - "values": [ - "4 - General action" - ] - }, - { - "text": "Give the full necessary consideration, in its international cooperation activities in the field of Human Rights with other countries, to aligning its efforts and contributions with the priorities, policies, and national plans of the concerned countries in a spirit of genuine dialogue ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Take the necessary measures to strengthen the implementation of the law to criminalize violence against women", - "values": [ - "4 - General action" - ] - }, - { - "text": "Sustain its policy that recognizes the family, based on the stable relationship between a man and a woman, as the natural and fundamental unit of society", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Permit journalists, NGOs and human rights experts to enter Equatorial Guinea and carry out their work without hindrance or risk of retaliation against those they meet ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Pay greater attention to the situation of persons with disabilities, with more facilities in public buildings, housing, transports, telephone helplines, improvement in care centres, review of proceedings of involuntary hospitalisation and protection of the exercise of fundamental rights, such as the rights to vote", - "values": [ - "4 - General action" - ] - }, - { - "text": "Continue to work with other partners to reform its justice system through training programmes", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "End all de jure and de facto discrimination against Beduns by affording en masse all Beduns equal protection under law, and in particular by conferring Kuwaiti nationality on a non-discriminatory basis and allowing for the use of social services to such persons ", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Strengthen mechanisms to detect, investigate and punish cases of gender-based violence and bride kidnapping, train law enforcement officials to deal with such cases, and provide legal and medical support to victims", - "values": [ - "4 - General action" - ] - }, - { - "text": "Ratify, in particular, the International Covenant on Economic Social and Cultural Rights and the International Covenant on Civil and Political Rights.", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Take action to fully implement and enforce the 2009 Elimination of Violence against Women Law ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Elaborate an effective mechanism to facilitate cooperation with the relevant institutions of the United Nations ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Continue efforts to prevent and combat all forms of violence against women, and bring the perpetrators to justice, while ensuring women's equal access to justice and improving support services, including for indigenous women", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Continue its efforts to further the promotion and protection of economic, social and cultural rights, including the right to development, for a better realization of the MDGs, and in this regard, take concrete steps to reduce poverty and unemployment rates with a view to improving the livelihood of all citizens.", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Ratify the International Covenant on Civil and Political Rights ", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Adopt a transparent and inclusive process with civil society in the implementation of universal periodic review recommendations ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Guarantee the fight against impunity ensuring that all perpetrators of human rights violations are prosecuted, particularly by continuing to cooperate with the International Criminal Court", - "values": [ - "4 - General action" - ] - }, - { - "text": "Increase, within its limited resources, its capacity to achieve the MDGs and the right to development to all its people ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Train police and medical staff to identify and classify violence within the family avoiding victims stigmatization", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Draw up a national five-year plan for the promotion and advancement of human rights", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Promote regulations to guarantee the rights of rural women, with an emphasis on care, access to comprehensive health care, quality education, justice, productive resources and employment opportunities", - "values": [ - "4 - General action" - ] - }, - { - "text": "Continue to investigate cases of enforced and involuntary disappearances in cooperation with the Working Group", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Ratify without delay the International Convention for the Protection of All Persons from Enforced Disappearance", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Ensure an effective and independent mechanism that examines the compatibility between popular initiatives and obligations under international human rights law", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Enhance efforts to set up an independent body to protect and promote human rights ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Continue with initiatives to promote women's rights, particularly in connection with equal pay and the disbursement of retirement pensions ", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Continue to implement the National Strategy to enable further poverty reduction in Botswana", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Cooperate with United Nations and other international and regional mechanisms with a view to guaranteeing that the legal and administrative measures adopted to combat terrorism respect the enjoyment of human rights and fundamental freedoms", - "values": [ - "4 - General action" - ] - }, - { - "text": "Strengthen efforts to prevent gender-based and domestic violence by criminalizing martial rape and sexual harassment providing victims with access to justice, assistance and protection, and by ensuring that cases are properly investigated and perpetrators duly prosecuted", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Make sure that the Presidential Decree No. 982 is not applied as a way to impede the work of human rights defenders ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Fulfil its promises of a more open society through the implementation of the recommendations it endorsed in 2010", - "values": [ - "4 - General action" - ] - }, - { - "text": "Adopt a law meeting generally admitted international standards in the area of the status of domestic workers in order to give legal status to domestic workers, including minimum wages, limited working hours, periods of rest and vacation, medical costs coverage, respect for privacy and physical integrity, as well as the freedom to renegotiate or break an employment contract ", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Continue efforts to allow women access to formal employment", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Cooperate with the United Nations by giving the Commission of Inquiry established by the United Nations Human Rights Council unfettered access to the country so that it may carry out its mandate", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Develop programmes and activities concerning training and capacity building of employees and others of vocational workers who work with children in the field of child sexual exploitation for commercial purposes", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Take all necessary measures to ensure access to safe drinking water and adequate sanitation facilities throughout the country", - "values": [ - "4 - General action" - ] - }, - { - "text": "Reduce overcrowding and ensure that prison conditions in Greece meet international human rights standards", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Consider acceding to the first Optional Protocol to ICCPR, in order to improve the human rights protection of the persons subject to its jurisdiction ", - "values": [ - "3 - Considering action" - ] - }, - { - "text": "Ensure that the death penalty is not carried out at least on persons under 18 years of age ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Recognize fully the civil and political rights of "erased" citizens and facilitate their complete social integration", - "values": [ - "4 - General action" - ] - }, - { - "text": "Take additional measures in order to fully implement the national legislation securing gender equality", - "values": [ - "4 - General action" - ] - }, - { - "text": "The United States remains committed to self-determination and self-governance, empowering tribes to make their own decisions about the future of their peoples.", - "values": [ - "4 - General action" - ] - }, - { - "text": "Raise further the minimum age for criminal responsibility", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Reconsider the current proposal, in order to better meet both the State's interest to regularise the habitation in Negev and the fundamental rights of the Bedouin community", - "values": [ - "4 - General action" - ] - }, - { - "text": "Implement the legislation and policies to address all forms of discrimination and disability", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Reinforce the awareness-raising system to prevent and combat the scourge which is violence against women ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Provide human rights education and training to members of the police, security services, prison and detention staff and judiciary with specific focus on protection of human rights of women, children, national and other minorities, refugees and persons with disabilities and to ensure accountability of security and other state personnel for possible violations of human rights", - "values": [ - "4 - General action" - ] - }, - { - "text": "Put in place relevant laws that prohibit discrimination in employment against persons with disabilities and provide access to health care and other services for disabled persons", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Provide the Ombudsman with the necessary financial resources, with a view to preserving its "A" status of accreditation", - "values": [ - "4 - General action" - ] - }, - { - "text": "Take into account the relevant expert opinions of the Office for Democratic Institutions and Human Rights and the Venice Commission in organizing the constitutional referendum and the elections announced for 27 June and 10 October 2010, respectively ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Provide more opportunities for women to gain access to leading positions in both the political and economic spheres and strengthen funding and visibility of the national institutions that promote gender equality ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Promote the welfare of detainees, and continue with the reforms necessary for the protection of their rights by improving conditions in detention facilities and continuous staff training", - "values": [ - "4 - General action" - ] - }, - { - "text": "Continue to strengthen institutional mechanisms to address violence against women and children and to further ongoing efforts in the field of combating human trafficking", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Take the necessary measures to stop malpractices by police officers, especially identity searches based on racial profiling of Muslims and people from Arab or African descent ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Take measures to strengthen women's rights, in particular to encourage greater representation of women in public life and combat sexual and domestic violence ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Issue a standing invitation to all United Nations special procedures", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Continue to pursue active cooperation and dialogue with the countries of origin of migrant workers.", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Give continuity to efforts undertaken to implement measures of care, assistance and comprehensive reparation to the victims of the internal armed conflict", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Guarantee equality between men and women through an exhaustive review of national legislation", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Continue to strengthen its institutional mechanisms for the protection of human rights and freedoms", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Present its report to CEDAW without further delay.", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "In the framework of efforts by the Government to raise school enrolment, strengthen the measures aimed at eliminating social, economic and cultural barriers that are obstacles to access and stay of children in the school system, including through setting up a multisectorial strategy to that end ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Make the fight against violence against women a priority in its strategies, and to seek as much international assistance as needed in that regard", - "values": [ - "4 - General action" - ] - }, - { - "text": "Adopt appropriate measures to widely disseminate and ensure full observance of the Declaration on Human Rights Defenders", - "values": [ - "4 - General action" - ] - }, - { - "text": "All law enforcement be conducted in accordance with international human rights standards and that the Dominican Republic undertakes prompt independent investigations into all alleged violations by officials ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Continue its cooperation with the treaty bodies and submit its outstanding reports", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Continue its efforts, already very significant, to provide free schooling for all school-aged children, which will mean that there would be a gradual reduction of illiteracy", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Ensure that madrasas, within the territory of Pakistan, operate in line with the human rights obligations of Pakistan", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Grant comprehensive protection to rights of equality and nondiscrimination in its federal law ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Adopt a systematic approach to prevent mother-to-child transmission of HIV ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Amend its legislation to include the principle of equality between men and women, Parliament should adopt the equality and participation bill in order to enhance gender equality in the political sphere ", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Continue efforts to provide full access to basic medical services and education and to protect children from the worst forms of child labour", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Ensure implementation of the relevant legislation, in particular the laws relating to the use of languages and those aimed at improving the living conditions of the Roma. ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Additional steps be put in place to protect women's rights more effectively in rural areas in particular", - "values": [ - "4 - General action" - ] - }, - { - "text": "Apply the definition of a child as a person under 18 also in the Palestinian territories, in line with article 1 of the Convention on the Rights of the Child.", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Prevent and bring to justice those responsible for the practice of child early and forced marriage by amending the 1971 Law of Marriage Act to set the minimum age of marriage to 18, for both boys and girls without exception and make it consistent with the 2009 Law of the Child Act, which defines a child as anyone under 18 ", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Immediately end all public executions", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Consider ratifying the International Convention on the Protection of the Rights of All Migrant Workers and Members of Their Families and the Optional Protocol to the Convention on the Rights of the Child on a communications procedure", - "values": [ - "3 - Considering action" - ] - }, - { - "text": "Continue promoting efforts to support the youth, particularly in the area of education and employment, and set up programmes and suitable mechanisms to encourage their effective participation in the society ", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Revise the Internet Law so that the powers of the authorities to block or remove the Internet content are exercised strictly in line with international standards on the right to freedom of expression and ensure that the internet can serve as a platform for free exchange of information, including dissenting views", - "values": [ - "3 - Considering action" - ] - }, - { - "text": "Ensure that its Anti-Terrorist Legislation 2016 corresponds to international human rights standards", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Address alleged miscarriages of justice in the gacaca trials through the formal court system ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Continue its cooperation with the United Nations and other international organizations to strengthen human rights", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Ensure the equal right to quality education for young mothers and married girls", - "values": [ - "4 - General action" - ] - }, - { - "text": "Continue its efforts to strengthen the judicial system to enhance public security and the rule of law", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Adopt the necessary measures to combat sexual exploitation and adopt a law providing a legal framework to protect minors from sexual exploitation", - "values": [ - "4 - General action" - ] - }, - { - "text": "Guarantee the protection of all people against enforced disappearances and guarantee the rights of persons with disabilities", - "values": [ - "4 - General action" - ] - }, - { - "text": "Take early steps to establish a national human rights institution in full compliance with the Paris Principles ", - "values": [ - "4 - General action" - ] - }, - { - "text": "To strengthen the ongoing dialogue between the Ministry of Foreign and European Affairs, the Ministry of the Interior, the Overseas Territories and Territorial Units and the Ministry of Immigration, Integration, National Identity and Co-Development, on the consideration, on a case-by-case basis, of returns of persons to their country which could place those persons "at risk", in conformity with France's obligations in this regard, in particular in the framework of requests for interim measures from the treaty bodies", - "values": [ - "4 - General action" - ] - }, - { - "text": "The Committee on the Elimination of All Forms of Racial Discrimination pointed out that Bahraini law provides no definition of racial discrimination that includes the criteria set out in article 1 of the Convention. The Committee also asked for additional information on housing. The Kingdom of Bahrain will duly include in its next report to the Committee additional information on the follow-up to the Committee's concluding observations and recommendations. ", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Promote public policies to prevent early pregnancy and ensure access to education and to sexual and reproductive health and rights", - "values": [ - "4 - General action" - ] - }, - { - "text": "Continue its efforts for addressing the challenges of refugees and IDPs in the country ", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Enact legislation prohibiting female genital mutilation", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Continue to engage the United Nations with a view to fully benefit from the United Nations Technical Cooperation Programme in the field of human rights ", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Draft legislation in line with the international standards in the area of combating discrimination against women ", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Reform civil society laws to establish a streamlined legal framework through which independent organizations can register, and to allow these organizations to accept assistance and contributions from foreign sources", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Pursue its efforts to improve the status of women in order to enable them to reach their full potential and contribute to the social and economic development of the country ", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Continue its efforts to promote and protect human rights in general and particularly, combat poverty ", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Strengthen long-term efforts to provide reintegration measures in order to provide all children who have been recruited or used in hostilities with child- and gender- sensitive multidisciplinary assistance for their physical and psychological recovery", - "values": [ - "4 - General action" - ] - }, - { - "text": "Expressly prohibit corporal punishment in all settings", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Adopt a specific legislation to explicitly prohibit all forms of corporal punishments ", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Continue its efforts in ensuring economic and social rights ", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Step up efforts to improve regular cooperation with treaty bodies, lift reservations to CEDAW and consider ratifying outstanding human rights instruments, including OP-CAT, OP-CRC-AC and ICCPR-OP2 ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Sign and ratify the African Union's Maputo protocol on the rights of women in Africa", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Repeal or urgently amend the Suppression of Terrorism Act of 2008 and other pieces of security legislation to bring them in line with international human rights standards", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Commute without delay all death sentences to terms of imprisonment and work towards ratification of the Second Optional Protocol to the International Covenant on Civil and Political Rights, aiming at the abolition of the death penalty", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Undertake a public consultation on the complete abolition of the death penalty", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Strengthen gender equality, particularly for wage remuneration", - "values": [ - "4 - General action" - ] - }, - { - "text": "Come up with a comprehensive national strategy to prevent and combat domestic violence, and conduct awareness campaigns at the national level", - "values": [ - "4 - General action" - ] - }, - { - "text": "Allow access to its prisons and detention centres to Yemeni and international human rights organisations, in particular the International Committee of the Red Cross.", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Redouble efforts to secure support from the United Nations and international organizations in establishing an independent national human rights institution in line with the Paris Principles", - "values": [ - "4 - General action" - ] - }, - { - "text": "Establish mechanisms of evaluation and follow-up of the implementation of human rights public policies and programmes, in particular those referred to the fight against discrimination in all its forms and on any grounds, taking into account the recommendations from the UPR and other human rights mechanisms", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Accede to the Rome Statute of the International Criminal Court and fully harmonize its national legislation to comply with it", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Continue to provide and facilitate the delivery of humanitarian assistance for internally displaced persons in areas of conflict in the country, and take comprehensive actions to stop further displacement", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Intensify efforts to detect, prevent and combat trafficking in children for sexual and other types of exploitation", - "values": [ - "4 - General action" - ] - }, - { - "text": "Establish a moratorium on the death penalty and consider its eventual abolition, especially and urgently in relation to the execution of children under the age of 18 years", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Effectively fight impunity by investigating all cases of extrajudicial killings and enforced disappearances committed by the police, the armed forces or non-State actors and bring all perpetrators to justice", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Strengthen the mandate of the Ombudsperson and equip it to function in full conformity with the Paris Principles", - "values": [ - "4 - General action" - ] - }, - { - "text": "Incorporate in criminal law the principle of absolute prohibition of torture and ensure that the ban is strictly enforced in conformity with the Convention against Torture and Other Cruel, Inhuman or Degrading Treatment or Punishment", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "While taking into account the achievements of literacy campaign, allocate more resources to education in the national budget and ensure equal access to all levels of education, in particular for the most vulnerable groups", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Strengthen its efforts to fulfill its obligations under CRC", - "values": [ - "4 - General action" - ] - }, - { - "text": "Continue with the implementation of human rights in order to achieve a dignified standard of living and work with all movements, social organizations and civil society", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Prohibit all corporal punishment in all settings, including in the home", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Fully incorporate the provisions of the Convention on the Elimination of All Forms of Discrimination against Women into its domestic legal system, including through the on-going process of the amendment of the Constitution ", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Step up efforts to ensure the access of all children to quality education, regardless of social status, gender or ethnicity", - "values": [ - "4 - General action" - ] - }, - { - "text": "Incorporate into national law Bahrain's obligations under the International Covenant on Civil and Political Rights, the Convention against Torture and the Convention on the Rights of the Child ", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Continue its efforts to guarantee the best implementation of the 2012 long-term, comprehensive strategy for development", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Consider adhering to the Optional Protocols to ICESR and CRPD as soon as possible.", - "values": [ - "3 - Considering action" - ] - }, - { - "text": "Ensure, in its Constitution and legislation, that discrimination is explicitly prohibited - provide for, inter alia, the principle of equality between women and men - and take into account, inter alia, the recommendations of the Committee on the Elimination of Discrimination against Women ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Reinforce efforts to settle territorial claims and improve the mechanism of conflict resolution", - "values": [ - "4 - General action" - ] - }, - { - "text": "Carry out the necessary measures to implement fully the 2009 Act against Torture, making special emphasis in investigation and sanction of those responsible for each crime ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Facilitate access to humanitarians in conflict zones ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Build on its ongoing engagement with labour and civil society leaders, and undertake a consultative process to review and adjust legislation to ensure the protection of the human rights of its workers", - "values": [ - "4 - General action" - ] - }, - { - "text": "Take necessary measures to ensure the independence and credibility of the bodies that will have primary jurisdiction over validating polling results in the 2012 Presidential and Parliamentary elections, as well as to ensure the appropriate level of security at the polls sufficient for all voters to freely exercise their franchise ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Reinforce the strategy to combat domestic violence, including by making available temporary shelters for victims ", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Amend the Constitution to include sex and gender as prohibited grounds of discrimination ", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Ensure that the judicial and law enforcement system is not abused to harass individuals for expressing their political or religious views, including on the Internet ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Ensure that laws regulating non-governmental organizations are in conformity with the rights to freedom of expression and association by repealing restrictions on the access of such organizations to foreign funding", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Proceed with the closure of Guantanamo at the earliest possible date and bring to trial promptly in accordance with the applicable rules of international law the detainees held there", - "values": [ - "4 - General action" - ] - }, - { - "text": "Adopt specific measures to rectify labour standards violations as a follow-up to inspections conducted on the Technical Intern Training Programme", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Continue to take measures in order to guarantee universal access to safe drinking water and sanitation", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Investigate complaints concerning discrimination against members of minority religions, while developing educational and awareness programmes addressing these human rights violations", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Ensure that all girls and women are accepted as students, independent of their status as engaged, married or pregnant ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Continue to promote women's participation in decision-making and political participation by providing necessary assistance and capacity building, as well as gradually increasing proportion of women parliamentarians", - "values": [ - "4 - General action" - ] - }, - { - "text": "Implement, as a party to the Protocol to the African Charter on Human and Peoples' Rights on the Rights of Women in Africa, the provisions related to medical abortion in cases of sexual assault, rape, incest and where the continued pregnancy endangers the mental and physical health of the mother or the life of the mother or the foetus", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Preserve and protect the natural family institution and marriage as the conjugal union between a man and a woman based on their free consent", - "values": [ - "4 - General action" - ] - }, - { - "text": "Introduce a system of mandatory appeal in cases where the death penalty has been handed down", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Abolish the death penalty against juvenile offenders ", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Permit the requested visit by the Special Rapporteur on extrajudicial, summary or arbitrary executions", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Continue its policy of respect and tolerance of all religious without discrimination in particular the right to choose one's own convictions", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Develop alternative measures to deprivation of children's liberty and provide children with rehabilitation and reintegration programmes", - "values": [ - "4 - General action" - ] - }, - { - "text": "Intensify its fight against violence against women and girls and continue the fight against stereotypes", - "values": [ - "4 - General action" - ] - }, - { - "text": "Take effective measures to combat trafficking in women and children in cooperation with countries in the trafficking network.", - "values": [ - "4 - General action" - ] - }, - { - "text": "Become a State party to the Convention for the Protection of All Persons from Enforced Disappearance ", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Review the Anti-Slavery Act explicitly to provide for victims' representation, protection and support", - "values": [ - "3 - Considering action" - ] - }, - { - "text": "Set up an official moratorium for the definitive abolition of the death penalty and facilitate the holding of debate on this issue", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "To swiftly adopt and implement the Strategy on Inclusive Diversity in the Republic of Moldova (2016-2020), which was developed with the support of the High Commissioner on National Minorities of the Organization for Security and Cooperation in Europe", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Develop a policy, strategy and action plan to address the reportedly widespread violence against women", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Continue to promote and protect the enjoyment of fundamental freedoms and rights of its citizens in the areas of education and health among others without discrimination", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Strengthen education and training in human rights, in particular in the judiciary and in the security forces and military ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Continue to expand popular participation in electoral and decision making procedures ", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Continue taking efforts for the promotion and protection of the rights of children and other vulnerable groups of the society ", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Take effective measures to ensure equal access of women to the labour market and to narrow and ultimately close the wage gap between men and women", - "values": [ - "4 - General action" - ] - }, - { - "text": "In cooperation with UNDP and UNESCO, continue to improve its education system and vocational training for its people ", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Increase efforts to improve judicial independence by strengthening training programmes for judges and magistrates", - "values": [ - "4 - General action" - ] - }, - { - "text": "Fast-track the implementation of the Children\u2019s Code in order to curb harmful practices against children, including child, early and forced marriages, the sale of children and the killing of so-called \u201csorcerer\u2019s children\u201c", - "values": [ - "4 - General action" - ] - }, - { - "text": "Speed up the adoption of the permanent Constitution of Sudan", - "values": [ - "4 - General action" - ] - }, - { - "text": "Continue positive measures in support of vulnerable groups in the areas of access to justice and education", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Continue to take the necessary steps to achieve the total abolition of the death penalty", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Continue to ensure the equality of all its citizens, in particular the minorities, through fair legislative and regulatory means", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Continue to follow up on the implementation of conclusions and recommendations which resulted from the last visit of the Working Group on Arbitrary Detention, in 2009, and consider proposing a new mission by the referred special procedure", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Take measures to ensure that national laws for the protection against domestic violence are applied at all levels in a coherent and effective manner ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Continue with initiatives aimed at increasing the number of women in education and employment.", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Reduce controls on its population, including the closure of markets, suppression of criticism of Government policies, lack of alternative media and harsh penalties on those who access external information ", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Revise the Criminal Procedure Code in order to strengthen the role of defence lawyers and extend the power of investigative judges in criminal proceedings", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Sign and ratify the Rome Statute of the International Criminal Court ", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Fully implement the relevant laws, policies and programmes aimed at combating domestic violence in the country", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Promote greater citizen participation in the implementation of social programmes initiated by the Government", - "values": [ - "4 - General action" - ] - }, - { - "text": "Maintain the positive trend in improving national laws and institutions, in particular the protection of women and children's rights ", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Take all necessary measures to prevent torture.", - "values": [ - "4 - General action" - ] - }, - { - "text": "Increase cooperation with civil society ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Take further measures to improve citizens' access to justice", - "values": [ - "4 - General action" - ] - }, - { - "text": "Although there are no cases of torture in the Kingdom, Bahrain's steadfast desire to enhance the professionalism of law enforcement personnel has prompted it to ask the Office of the United Nations High Commissioner for Human Rights for assistance in developing and improving human rights curricula and training courses.", - "values": [ - "1 - Minimal action" - ] - }, - { - "text": "Create and maintain, in law and in practice, a safe and enabling environment in which civil society can operate free from hindrance and insecurity, and can participate fully in democratic processes", - "values": [ - "4 - General action" - ] - }, - { - "text": "Strengthen efforts to implement the socio-economic development strategy for the period until 2020 ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Apply fully the legislation geared towards combating discrimination and violence, particularly sexual, against women and young girls, particularly in terms of access of victims to justice and of training of magistrates, judges and police regarding this problem ", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Continue to implement appropriate measures to promote further participation of women in various sectors of society and women's employment both within Government and in the private sector", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Further improve the enjoyment of all human rights by Palestinian refugees, granting them a legal treatment no worse than to other non-nationals, especially with regard to right to work and to freedom of movement taking into account the responsibility of the international community", - "values": [ - "4 - General action" - ] - }, - { - "text": "Continue to ensure women's equal participation in the economic sector, equal opportunities for career development, equal pay as men and provide sufficient opportunities to reconcile work and family obligations", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Accept the presence of an OHCHR field office.", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Take into consideration the opinion of civil society and its role in supporting the decision-making process, particularly with regard to the implementation of recommendations presented to them during the universal periodic review session, additionally, listen to the British human rights organizations and support their role, in particular, in the light of the interest of the Government in the situation of organizations in other States", - "values": [ - "3 - Considering action" - ] - }, - { - "text": "Ratify the Optional Protocol to the International Covenant on Economic, Social and Cultural Rights (OP-ICESCR), the Optional Protocol to CAT, and the ICPPED", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Become a state party of the Agreement on the Privileges and Immunities of the International Criminal Court", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Prohibit under the law the sale of weapons to the countries where children have been or are used in military actions", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Ratify the international conventions to which it has committed itself", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Consider establishing a permanent inter-ministerial committee responsible for the implementation of its international human rights obligations, inter alia, for coordinating the drafting of the national reports to the treaty bodies", - "values": [ - "3 - Considering action" - ] - }, - { - "text": "Continue to mainstream human rights in the public sector ", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Strengthen awareness-raising campaigns on the issue of violence against women, bringing perpetrators of such crimes to justice", - "values": [ - "4 - General action" - ] - }, - { - "text": "Sign the Optional Protocol to the Convention against Torture (OPCAT)", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Intensify the pace of cooperation with the treaty bodies ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Bahrain affirms that it will include information in its future reports on the outcome of the universal periodic review and its impact on the human rights situation on the ground.", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Ensure police and justice officials have appropriate training and direction to improve the investigation and prosecution of sexual violence including that based on sexual orientation or gender identity ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Continue efforts to promote and protect the rights of migrant workers, and to share its leading experience in this area in international forums", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Ratify all core human rights conventions, especially ICCPR, ICESCR and CAT ", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Take a holistic and effective approach to tackle gender-based violence, including by strengthening accountability mechanisms, raising awareness on gender-based violence, in particular, violence related to sorcery accusations, and allocating sufficient budget to support relevant programmes ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Introduce in the Criminal Code all necessary amendments aimed at criminalizing acts of torture and the crime of enforced disappearance ", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "With respect to the draft law on the press currently under exam, repeal restrictions to freedom of expression and ensure that it comply with international norms ", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Implement legal provisions for better protection of persons with disabilities", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Continue to engage with the international community and relevant international organizations and seek technical and financial assistance for institutional capacity building and strengthening public health systems", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Draw up a plan to assist and protect IDPs in an effective and systematic manner", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Establish a national human rights institution accredited by the International Coordinating Committee of National Institutions for the promotion and protection of human rights", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Take all necessary measures to significantly increase the enrolment rates and decrease the dropout rates of girls at all levels of education, by the end of the third universal periodic review cycle", - "values": [ - "4 - General action" - ] - }, - { - "text": "Establish a moratorium on execution with a view to abolishing the death penalty for all crimes", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Continue efforts to combat discrimination and intolerance, in particular with regard to migrant workers", - "values": [ - "4 - General action" - ] - }, - { - "text": "Include human rights education in the draft new education policy", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Step up its efforts in ensuring free universal healthcare services for all ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Strengthen and expands protections and programmes addressing gender-based violence and sexual exploitation of children, including victims of trafficking, by ensuring that survivors have access to shelter, as well as to justice, health-care services, and support services ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Continue its efforts to improve the conditions of detention and consider the possibility of adopting alternative measures to detention in order to reduce overcrowding in prisons", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Re-establish the moratorium on the use of the death penalty with a view to its abolition, particularly when the alleged perpetrators are minors or belong to minorities", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Adopt measures to prevent and eradicate violence against women and girls, especially the adoption of legislation, the establishment of more shelters and the training of judges, prosecutors and police officers", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Further strengthen its measures to combat extremism in order to ensure the effective protection of human rights in the country", - "values": [ - "4 - General action" - ] - }, - { - "text": "Take additional measures to combat trafficking in persons, in particular women and children and impose appropriate sanctions against perpetrators", - "values": [ - "4 - General action" - ] - }, - { - "text": "Initiate public programmes to increase knowledge and awareness about sexually transferred diseases - STDs - and contraception", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Take effective measures to generate inclusive social practices to ensure the observance of the human rights of indigenous peoples, persons of African descent, migrants and refugees", - "values": [ - "4 - General action" - ] - }, - { - "text": "Enhance development efforts by focusing on the rural areas ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Continue its cooperation with Treaty Bodies by submitting all its overdue reports, namely the initial reports on the Convention on the Rights of the Child and the Convention on the Elimination of All Forms of Discrimination against Women", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Ratify the Convention on the Reduction of Statelessness and incorporate its provisions into national law", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Continue to take measures to combat ethnic discrimination and racism as well as hate speech on grounds of ethnicity, colour, race and religion", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Launch a campaign to raise public awareness on the issue of trafficking in persons", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Follow the recommendations made by the Committee Against Torture with a view to adopting all necessary measures to combat impunity.", - "values": [ - "4 - General action" - ] - }, - { - "text": "Ensure the protection of human rights defenders", - "values": [ - "4 - General action" - ] - }, - { - "text": "Provide the Ministry and Department of Women, Children and People with Disabilities with the necessary powers to continue promoting the participation and contribution of these vulnerable groups to the development of the country ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Create an independent and effective body for the investigation of cases of the use of torture and degrading treatment, including against journalists", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Raise public awareness of the Council of Europe Convention on the Protection of Children against Sexual Exploitation and Sexual Abuse", - "values": [ - "4 - General action" - ] - }, - { - "text": "Continue implementing public policies that allow the enjoyment of human rights of the people of Gabon", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Adopt a national strategy integrating economic, social and cultural rights to combat poverty ", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Toughen liability for sexual crimes, rape and child abuse and enhance the training of those working for the protection of children's rights ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Ensure the protection and promotion of the rights of migrants, in particular the safeguarding of the interests of children and adolescents ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Accede to the 1951 Convention Relating to the Status of Refugees and to its additional Protocol, and ensure that these instruments are implemented at the national level", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Formally establish a moratorium on use of the death penalty with a view to abolition", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Develop a comprehensive strategy to eliminate gender stereotypes and promote gender equality", - "values": [ - "4 - General action" - ] - }, - { - "text": "Complete the CEDAW reports before the due date in 2015", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Incorporate the International Convention on the Elimination of All Forms of Racial Discrimination into the domestic law to ensure direct and full application of the principles and provisions of the Convention", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Take the necessary legal or administrative measures to ensure that migratory status does not depend on conjugal relations in cases in which gender violence is reported ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Eradicate violence against women and ensure a greater political representation and participation, in particular in legislative elections to take place in 2010.", - "values": [ - "4 - General action" - ] - }, - { - "text": "Give importance and continue to provide human rights training for government officials at all levels, law enforcement personnel, police, the judiciary, including judges and lawyers", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Strengthen efforts to secure Maori political participation at the national level aiming on increasing Maori participation in local governance ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Consider to adjust its legislation in order to specifically define the trafficking in human beings for the purpose of sexual exploitation ", - "values": [ - "3 - Considering action" - ] - }, - { - "text": "Ensure proper implementation of policies directed towards combating violence against women, including the recommendations made by the Committee on the Elimination of Discrimination against Women regarding sexual violence", - "values": [ - "4 - General action" - ] - }, - { - "text": "Develop, with the assistance of the international community, a long-term strategy to eliminate poverty and improve the standard of living of its people ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Take effective measures to ensure the independence of the judiciary and the right to access to justice", - "values": [ - "4 - General action" - ] - }, - { - "text": "Elaborate campaigns and trainings which promote the economic and political empowerment of women, as well as educational programmes that combat stereotypes and gender discrimination from an early age", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Take measures to limit the authority of military tribunals which are assuming the functions of civil justice ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Effectively combat all manifestations of Islamophobia and promote tolerance, intercultural dialogue and respect for diversity in the society", - "values": [ - "4 - General action" - ] - }, - { - "text": "Greece pledges to continue to pursue policies and initiatives in all critical fields of human rights protection, in cooperation with national human rights institutions and civil society, taking into account the outcome of the UPR process, as well as the recommendations of relevant monitoring mechanisms, in order to ensure full, equal and effective realization of all human rights.", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Recognize that independent and free media are an essential component of a functioning democracy, and allow all journalists and media outlets to operate without fear", - "values": [ - "4 - General action" - ] - }, - { - "text": "Examine the possibility of ratifying the ICRMW ", - "values": [ - "3 - Considering action" - ] - }, - { - "text": "Incorporate into domestic law already ratified international human rights conventions", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Consider issuing a standing invitation to the Special Rapporteurs", - "values": [ - "3 - Considering action" - ] - }, - { - "text": "Consider the possibility of ratifying International Convention for the Protection of All Persons from Enforced Disappearance CED, as well as accepting the competency of the relevant Committee \n\n", - "values": [ - "3 - Considering action" - ] - }, - { - "text": "Reconsider legislation adopted on inspections and audits to NGOs ", - "values": [ - "3 - Considering action" - ] - }, - { - "text": "Ratify the Rome Statute of the International Criminal Court (ICC) ", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Adopt a law on access to information in order to fully promote the exercise of the right to freedom of expression and freedom of opinion", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Implement existing procedures upholding internationally recognized standards in combating trafficking in persons and conduct necessary training for law enforcement to properly identify and protect victims of trafficking ", - "values": [ - "4 - General action" - ] - }, - { - "text": "As a first step, allow the visit requested by the Special Rapporteur to take place as soon as possible and on the best conditions, and take his recommendations seriously taken into account", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Launch a public awareness-raising campaign to fight and prevent discrimination and violence against LGBT persons and to promote tolerance", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Prioritize the establishment of meaningful and accessible accountability mechanisms to ensure transparency in the investigation and prosecution of human rights violations and provide effective remedies and legal redress for victims and take measures to increase the independence of the judiciary and strengthen oversight of the implementation, at the State level, of federal human rights legislation and obligations", - "values": [ - "4 - General action" - ] - }, - { - "text": "Implement effective protection measures and undertake an immediate and systematic investigation into abuses committed against human rights defenders, as previously recommended", - "values": [ - "4 - General action" - ] - }, - { - "text": "Undertake an independent investigation into allegations of journalists in all parts of Somalia facing severe threats and intimidations by authorities and armed opposition groups alike ", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Promptly adopt effective measures to ensure that the judicial authorities are elected by direct universal suffrage, in order to guarantee the independence and impartiality of the judicial bodies, often represented by members of elite classes as a result of unsound management by previous Governments, which has caused impunity and delays in the area of justice", - "values": [ - "4 - General action" - ] - }, - { - "text": "End discrimination on the basis of sexual orientation", - "values": [ - "4 - General action" - ] - }, - { - "text": "Strengthen its efforts to promote and protect the rights of women prisoners, pregnant women prisoners and children born in prison, especially in accordance with the United Nations Rules for the Treatment of Women Prisoners and Non-Custodial Measures for Women Offenders, otherwise known as the "Bangkok Rules" ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Ensure the respect of gender equality both in offices and in schools", - "values": [ - "4 - General action" - ] - }, - { - "text": "Intensify efforts to implement the recommendations made by the Special Rapporteur on the sale of children, child prostitution and child pornography and the Special Rapporteur on human rights of migrants.", - "values": [ - "4 - General action" - ] - }, - { - "text": "Further work on the improvement of the penitentiary situation in the country ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Continue its constructive engagement with the Human Rights Council to enhance its capacity to improve the human rights situation in the country, especially in strengthening the administration of justice ", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Continue and strengthen the measures to come to terms with the problems of discrimination that still persist, and ensure the full enjoyment of human rights by all minority groups.", - "values": [ - "4 - General action" - ] - }, - { - "text": "Ensure that women - in particular women pursuing divorce or having experienced gender-based violence - have effective access to justice in all parts of the country", - "values": [ - "4 - General action" - ] - }, - { - "text": "Continue efforts through education and awareness-raising initiatives to improve the effective implementation of the laws on domestic violence and on female genital mutilation, and eliminate discrimination based on sex from legislation", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Solve the situation of statelessness of the different populations living in the territory by recognizing their ties and long stay in the country", - "values": [ - "4 - General action" - ] - }, - { - "text": "Commit to promptly repealing legislation at state level which discriminates against women, with priority attention paid to family law that results in real or de facto discrimination against women and girls, and to legislation that prevents women's access to justice, particularly in respect of the reporting and prosecution of family violence", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Adopt a broad definition of discrimination against women in line with the Convention on the Elimination of All Forms of Discrimination against Women ", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Ensure the same rights to all citizens, including those of the lesbian, gay, bisexual, transgender and intersex collective, decriminalizing same-sex relationships and eliminating all discriminatory legislation on the basis of sexual orientation", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Through appropriate international assistance, seek to strengthen its educational system and education for all programmes, including for women and persons with disabilities ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Ratify promptly the Second Optional Protocol to the International Covenant on Civil and Political Rights, and the Rome Statute", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Strengthen its criminal investigation and prosecuting capacities in order to prevent and eliminate arbitrary detention and extrajudicial killings", - "values": [ - "4 - General action" - ] - }, - { - "text": "Review the juvenile justice system in order to raise the age of criminal responsibility, in accordance with international standards", - "values": [ - "3 - Considering action" - ] - }, - { - "text": "Issue a standing invitation to all Human Rights Council special procedures", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Place a moratorium on the use of the death penalty ", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Ensure effective implementation of the recently adopted legislation aimed at protecting children from abuse and sexual exploitation", - "values": [ - "4 - General action" - ] - }, - { - "text": "Eliminate the death penalty in all circumstances", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Put in place mechanisms aimed at definitely abolishing the death penalty, as a consequence of the moratorium in force since 2004 ", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Step up measures aimed at addressing the systematic attacks on immigrants", - "values": [ - "4 - General action" - ] - }, - { - "text": "Continue its efforts with a view to ensuring the protection and promotion of the rights of foreigners working in Jordan", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Accept all outstanding and new requests from mandate holders to visit the country ", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Operationalize the National Human Rights Commission and ensure that it is in line with the Paris Principles", - "values": [ - "4 - General action" - ] - }, - { - "text": "Review its legislation to create legal ways to seek asylum in Andorra", - "values": [ - "3 - Considering action" - ] - }, - { - "text": "Take all the measures necessary to ensure full respect for existing legislation for lesbians, gays, transsexuals and bisexuals", - "values": [ - "4 - General action" - ] - }, - { - "text": "Develop a national strategy to include in the school system at all levels appropriate measures in the field of human rights education in accordance with the Plan of Action 2005-2009 of the World Programme for Human Rights Education.", - "values": [ - "4 - General action" - ] - }, - { - "text": "Strengthen the means and measures to combat violence against women", - "values": [ - "4 - General action" - ] - }, - { - "text": "Establish an independent national institution in compliance with the Paris Principles of the United Nations", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Positively consider the effective creation of a Truth and Reconciliation Commission, credible and independent, to shed light upon the violations of human rights of the past ", - "values": [ - "3 - Considering action" - ] - }, - { - "text": "Accede to the International Convention on the Protection of All Persons from Enforced Disappearance and recognize the competence of the Committee", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Ratify the Agreement on the Privileges and Immunities of the International Criminal Court and guarantee its implementation in national law ", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Call on the international community to assist its economy and provide support to it", - "values": [ - "1 - Minimal action" - ] - }, - { - "text": "Ratify the optional protocols to the Convention on the Elimination of All Forms of Discrimination against Women and the Convention against Torture and Other Cruel, Inhuman or Degrading Treatment or Punishment ", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Continue to address socio-economic disparities and inequalities that persist across the country", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Continue to seriously combat trafficking in persons, implementing legislation in this area, the National Plan against Trafficking in persons (2008-2016) the on-line police system to receive complaints of victims of trafficking in persons and to fight this scourge ", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Conduct additional campaigns to elevate public awareness about domestic violence, similar to the country's 2009 Say No to Rape campaign ", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Continue to address inequalities affecting human rights in the areas of health, education, employment and income that disproportionately affect Maori and other minority groups ", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Continue to invest financial and material resources, in conditions of the financial crisis, with the view to support the economic and social development in the country as a whole and the Tibet Autonomous Region in particular", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Take effective measures to ensure access to safe drinking water, adequate sanitation facilities and heath care, particularly in remote and rural areas ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Adopt a national plan on human rights", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Share its experiences and best practices in strengthening efforts to combat the problem of trafficking in persons at the national and international levels ", - "values": [ - "1 - Minimal action" - ] - }, - { - "text": "Take appropriate measures to bring its domestic legislation into full conformity with all human rights conventions to which it is a party, especially CEDAW, and referred to in paragraphs 4 and 14 of the OHCHR compilation (A-HRC-WG.6-5-VUT-2).", - "values": [ - "4 - General action" - ] - }, - { - "text": "Continue intensifying the efforts aimed at combatting trafficking in person and guarantee the protection of victims", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Ratify the 1961 Convention on the Reduction of Statelessness ", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Harmonize its national law with country's obligations under the Rome Statute of the International Criminal Court, including acceding to the Agreement on the Privileges and Immunities of the Court ", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Adopt awareness-raising measures to address the root causes in society of inequalities which continue to affect women. ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Give priority to enhancing its recent policies aimed at increasing agricultural production with a view to reinforcing the right to food and the realization of food security, despite the boycott imposed against Cuba", - "values": [ - "4 - General action" - ] - }, - { - "text": "Continue developing its successful programmes for the implementation of the Convention on the Rights of Persons with Disabilities ", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Amend the 2007 law on the rights of the child for a uniform and increased minimum age for work, and ensure, through dissuasive or repressive measures, notably within the framework of a law on human trafficking, that arduous work similar to the worst forms of exploitation is not given to this vulnerable category of people ", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Ensure that the best interests of the child, as spelled out in the Convention on the Rights of the Child, is the primary consideration in all asylum proceedings involving children", - "values": [ - "4 - General action" - ] - }, - { - "text": "Take measures on awareness-raising and education about the lesbian, gay, bisexual, transgender and intersex community, by developing and implementing a concrete national action plan in cooperation with lesbian, gay, bisexual, transgender and intersex civil society organizations for all levels of the State", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Enact legislation prohibiting all forms of FGM.", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Ensure implementation of the principle of non-discrimination based on any ground, as provided by the national law in force, in the area of civil and political rights", - "values": [ - "4 - General action" - ] - }, - { - "text": "Renew and strengthen efforts towards universalizing access to civil registry", - "values": [ - "4 - General action" - ] - }, - { - "text": "Establish conventions that will guarantee the non-violation of migrants' rights", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Ensure human rights are afforded full legal protection in the Republic of Palau ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Seek the support of the international community and relevant organizations, including OHCHR, in keeping with the State's request for technical assistance for capacity-building, particularly for the preparation of human rights reports and the development of programmes for human rights education.", - "values": [ - "1 - Minimal action" - ] - }, - { - "text": "Implement specific and concrete measures with a view to increasing women's participation in political and corporate life in the country ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Create a framework where civil society, including active human rights NGOs, can be included in the follow-up to the UPR without any fear of retaliation", - "values": [ - "4 - General action" - ] - }, - { - "text": "Take all appropriate actions in order to become a party to the International Covenant on Economic, Social and Cultural Rights", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Engage in a participatory and inclusive process with civil society in the implementation of universal periodic review recommendations ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Ensure that every citizen - including human rights defenders -leaders of opposition parties, religious believers, civil society activists and journalists can peacefully exercise their right to freedom of expression in conformity with Turkmenistan's obligations under the ICCPR ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Ratify the Optional Protocol to the ICCPR, aiming at abolishing the death penalty and proceed with abolishing the death penalty for all crimes ", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Continue giving priority and allocating adequate resources to the implementation of the national strategies on children and on combating child trafficking", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Ratify the two Optional Protocols to the Convention on the Rights of the Child, on the involvement of children in armed conflict (OP-CRC-AC), and on the sale of children, child prostitution and child pornography (OP-CRC-SC)", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Ensure the full implementation of the Juvenile Justice Act", - "values": [ - "4 - General action" - ] - }, - { - "text": "Redouble its efforts in providing and facilitating better access for all in exercising their right to health and right to education", - "values": [ - "4 - General action" - ] - }, - { - "text": "Ratify both the ICCPR and the OP-CAT", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Amend the citizenship law to enable women to transfer nationality to their children without restriction and on an equal basis with men", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Continue to effectively address domestic violence, ensuring to victims operational access to means of protection and reinforcing prosecution of perpetrators ", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Ratify the Second Optional Protocol to the ICCPR aimed at abolition of the death penalty, which has not been applied in Tunisia for the past 20 years ", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Approve a reform to the military code, allowing its judicial system to be in accordance with international human rights standards", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Workshop to determine how the gender perspective should be incorporated into the action plan for implementation of the universal periodic review recommendations", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Withdraw its reservation to Article 2 of CEDAW and accede to the Optional Protocol to CEDAW ", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Step up the implementation of the recommendations of the Committee against Torture, the Committee on the CRC and the Committee on the Elimination of Racial Discrimination and, in particular, continue its efforts against all forms of discrimination against minorities in education ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Adopt effective measure to combat violence against Roma", - "values": [ - "4 - General action" - ] - }, - { - "text": "Share best practices in the wide variety of measures it has taken to combat trafficking in persons ", - "values": [ - "1 - Minimal action" - ] - }, - { - "text": "Strengthen public policies to address economic and social challenges, particularly in the area of health, such as access to drinking water", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Continue cooperation with the international community for better access to food, water and sanitation for the population of Benin, given the country's limited resources", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Ensure the independence of the Human Rights Commission, the Election Commission and the Office of the Auditor General", - "values": [ - "4 - General action" - ] - }, - { - "text": "Adopt legislation on quotas requiring political parties to include a minimum proportion of women among their candidates ", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Consider accession to ICRMW ", - "values": [ - "3 - Considering action" - ] - }, - { - "text": "Continue its efforts to fight trafficking in persons within the framework of its Comprehensive National Strategy to Combat Trafficking in Persons. In this regard, we urge the Government of Colombia to continue to work towards finalizing and adopting its National Strategy 2013-2018 ", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Develop a legal framework to prevent and combat violence against women and domestic violence", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Continue to ensure access to education for all, especially children of scheduled castes and tribes", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Adopt appropriate measures, consistent with international standards, to avoid corporal punishment of children in all areas and to carry out education and awareness-raising campaigns in schools and in society at large", - "values": [ - "4 - General action" - ] - }, - { - "text": "Continue efforts undertaken to promote the rights of women and children, particularly in areas such as education, safety and health", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Work to reduce the case backlog and address the inefficiencies in the judicial system that contribute to lengthy pretrial detentions and exacerbate difficult prison conditions ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Take all necessary measures to ensure that all children are released by armed forces and armed groups, and that these children receive all the assistance necessary for their physical and psychological recovery, including special medical care for victims of sexual violence ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Maintain the commitment to poverty reduction ", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Impartially investigate all allegations of extra-judicial killings and arbitrary executions, to prosecute those responsible, and accept the requests for a visit by the Special Rapporteur on extrajudicial, summary or arbitrary execution, and the Working Group on Enforced or Involuntary Disappearances ", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Continue to work towards overcoming the challenges identified in paragraph 167 of its national report that affect the quality of implementation of the provisions of international human rights agreements ", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Pursue efforts to promote the quality of education and to establish mandatory free education for all", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Adequately resource and implement the Mental Health Act of 2007", - "values": [ - "4 - General action" - ] - }, - { - "text": "Continue with the implementation of the National Strategic Plan for the Advancement of Women", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Continue ongoing efforts to assist countries, with their consent, in resolving political disputes as well as in improving their developmental infrastructure ", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Exchange with other States its successful experience in the field of food security ", - "values": [ - "1 - Minimal action" - ] - }, - { - "text": "Continue to promote a greater focus on combatting gender-based violence ", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Accord the utmost importance, in the formulation of the new Constitution, to the promotion and protection of human rights and fundamental freedoms", - "values": [ - "4 - General action" - ] - }, - { - "text": "Expand its intervention with the aim of better addressing racial prejudices, xenophobia, hate speeches and other forms of discrimination, in particular against Roma, women, persons with disabilities and the LGBT population ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Ensure the best interest of the child in all matters related to immigration ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Cooperate with the special procedure mandate holders of the Human Rights Council by responding positively to their requests for visits", - "values": [ - "4 - General action" - ] - }, - { - "text": "Give priority attention to the questions of gender equality and discrimination against women ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Eliminate from its legislation all forms of sexual discrimination, and take all the necessary measures to effectively enforce this", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Continue approving the necessary secondary legislation, regarding the constitutional reform, harmonizing it at state and federal level, and that training of judicial officers to ensure its effective application at both levels be conducted", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Accede to the Second Optional Protocol to the International Covenant on Civil and Political Rights and abolish the death penalty in the domestic legislation", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Strengthen efforts to fulfil obligations under the Convention on the Rights of the Child", - "values": [ - "4 - General action" - ] - }, - { - "text": "Put an end to the distortion of past history and raise awareness of historical facts by amending educational curricula to reflect historical realities, including its past crimes and atrocities", - "values": [ - "4 - General action" - ] - }, - { - "text": "Ratify CEDAW as soon as possible, without any reservation", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Improve the internal mechanism of the State to implement international human rights obligations", - "values": [ - "4 - General action" - ] - }, - { - "text": "Allocate the necessary financial and human resources for the effective exercise of the National Commission for Human Rights and the Human Rights Committee of the National Assembly's mandates", - "values": [ - "4 - General action" - ] - }, - { - "text": "Ratify the Rome Statute on the ICC ", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Punish those responsible for torture, drone killings, use of lethal force against African Americans and compensate the victims", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Continue reforms in the system of the law-enforcement agencies and the judicial system ", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Pursue its efforts to bring national legislation into line with international human rights standards and take this element into account when adopting a law on the rights of children ", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Take effective measures to put an end to ethnic and racial profiling", - "values": [ - "4 - General action" - ] - }, - { - "text": "Seek the support of the OHCHR in its efforts to improve national capacity on treaty reporting, including through exploring the possibility of producing a common core Document, if it so wishes.", - "values": [ - "1 - Minimal action" - ] - }, - { - "text": "Put an end to the legal discrimination against lesbian, gay, bisexual, transgender and intersex persons and to the criminalization of homosexuality", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Pay particular attention to defending the rights of vulnerable peoples, in particular women and children", - "values": [ - "4 - General action" - ] - }, - { - "text": "Consider the ratification of the International Covenant on Economic, Social and Cultural Right", - "values": [ - "3 - Considering action" - ] - }, - { - "text": "Guarantee freedom of expression and protection of journalists and human rights defenders ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Continue its efforts to fight poverty with the support and cooperation of the international community ", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Immediately adopt policies to guide the equitable use of the performance and accountability systems of the State justice institutions", - "values": [ - "4 - General action" - ] - }, - { - "text": "Take all necessary measures to prevent trafficking in persons, especially children, including the incorporation of international standards into national legislation, training of personnel involved in the fight against human trafficking, criminal prosecution of traffickers and the protection of victims of trafficking ", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Prioritize the creation of school facilities in remote areas and implement a functioning system of data collection on children living in districts bordering neighbouring countries ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Continue to take action in favor of free education so as to provide access to pre-school education for children from disadvantaged families ", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Amend legislation in force to prevent the imposition of the death penalty and life imprisonment for offenses committed by minors under the age of 18 years, with a view to abolishing the death penalty ", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Intensify efforts to enhance the complete independence and functioning of the judiciary", - "values": [ - "4 - General action" - ] - }, - { - "text": "Continue efforts taken towards the ratification of international human rights instruments and harmonization of national legislation", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Reform the relevant legal framework to fully ensure the application of the principles of non-discrimination and equality in the enjoyment of civil, political, economic, social and cultural rights for persons in vulnerable situations, especially women, children and persons with disabilities", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Incorporate the proposed recommendation of the National Dialogue Conference, to set the minimum age for marriage at 18 years for men and women equally in the Yemeni legislation ", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Refrain from subjecting the civilian population to collective punishment.", - "values": [ - "4 - General action" - ] - }, - { - "text": "Bring rules on broadcasting in compliance with relevant provisions of ICCPR, releasing persons held in prisons for their political views and adopt safeguards against arbitrary or politically motivated detention and trials including through ensuring full independence and transparency of judiciary", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Allow journalists, human rights defenders among all others to exercise the right to freedom of expression ", - "values": [ - "4 - General action" - ] - }, - { - "text": "It also commits to strengthen the capacities of institutions aimed at promotion and protection of human rights (National Commission on Human Rights and Ombudsman).", - "values": [ - "4 - General action" - ] - }, - { - "text": "With the support of the international community, pursue its efforts to reduce crime and combat smuggling and trafficking of children and strengthen this with awareness-raising actions and training on the rights of the child ", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Continue efforts to ensure a life of dignity for members of indigenous communities", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Seek technical and financial assistance envisaged within the UPR framework for support of the implementation of recommendations which Somalia accepts as well as commitments made outside this review ", - "values": [ - "1 - Minimal action" - ] - }, - { - "text": "Take measures aimed at abolishing the death penalty", - "values": [ - "4 - General action" - ] - }, - { - "text": "Call upon the international community, especially the relevant United Nations programmes and funds, to provide assistance for Bhutan to sustainably consolidate its national strategy for food security and improve national food production ", - "values": [ - "1 - Minimal action" - ] - }, - { - "text": "Consider declaring an official moratorium on executions and organize a referendum on the death penalty, following the approval by Cabinet granting its abolition in 2014", - "values": [ - "3 - Considering action" - ] - }, - { - "text": "Canada is committed to continuing to support policies and programs that advance the equality of the sexes under the law and promote women's and girls' rights", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Strengthen transitional justice by establishing the hybrid court and a truth and reconciliation commission", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Continue strengthening the positive measures taken to combat the crime of trafficking in persons and particularly those measures concerning the protection of child victims", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Step up efforts to definitively and rapidly eliminate the practice of female genital mutilation", - "values": [ - "4 - General action" - ] - }, - { - "text": "Further incorporate, as appropriate, its international obligations under human rights instruments into domestic law ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Expedite the amendment of previous legislation that is not in line with the amended Constitution of 7 February 2016 and its human rights guarantees", - "values": [ - "4 - General action" - ] - }, - { - "text": "Increase measures aiming at guaranteeing an efficient justice system, including the effective access to legal representation, paying particular attention to recommendations made by the Committee against Torture", - "values": [ - "4 - General action" - ] - }, - { - "text": "Continue the efforts aimed at adopting a national programme and plan of action in the field of human rights ", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Address the structural causes of organized crime, including those relating to sexual violence", - "values": [ - "4 - General action" - ] - }, - { - "text": "Render the National Human Rights Commission operational with the enactment of relevant legislation ", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Prohibit incitement to hatred and undertake thorough investigations into incitement to hatred and racism in the media and bring perpetrators to justice", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Continue with the necessary legislations to ensure the promotion and protection of the rights of women and their role in society, including the enhancement of their participation in the State institutions, and achieve full equality in employment opportunities", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Enforce laws relating to child labour", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Bring the legislative framework in line with the recommendations made by the OSCE Representative on Freedom of the Media in order to ensure that it does not restrict freedom of expression and pluralism of media", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Continue to take measures to ensure the full implementation of the Roma Integration Strategy 2015-2020", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Ratify the Optional Protocol to the Convention on the Rights of Persons with Disabilities", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Reduce the backlog of the submission of reports to treaty bodies", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Take all the necessary measures to ensure prompt, thorough and impartial investigations into allegations of torture and ill-treatment ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Decriminalize same-sex relationships between consenting adults and actively address discrimination based on sexual orientation or gender identity", - "values": [ - "4 - General action" - ] - }, - { - "text": "End the exceptional state of emergency and lift the Emergency Law, and to abstain from legislation that introduces measures of Emergency Law into the Constitution", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Intensify the work aimed at the ratification of the Council of Europe Framework Convention for the Protection of National Minorities, signed by Belgium in 2002", - "values": [ - "4 - General action" - ] - }, - { - "text": "Establish an independent and impartial police complaints commission in accordance with the recommendations of the Royal Commission on police reform", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Establish by law a national human rights institution in accordance with the Paris Principles", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Take steps to address the challenge of closing the enrolment gap in primary education while at the same time addressing issues of quality of education", - "values": [ - "4 - General action" - ] - }, - { - "text": "Incorporate core United Nations human rights treaties into domestic legislation", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Continue efforts to promote and protect human rights", - "values": [ - "4 - General action" - ] - }, - { - "text": "Accede to core human rights instruments to which the State is not yet a party, including the Migrant Workers Convention ", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Continue its priority and initiatives in the 9th National Development Plan, with more focus on equality, non-discrimination, rights to health, education, to just and favourable conditions of work for vulnerable groups of women, children, migrants, foreign workers, refugees and persons with difficulties", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Ratify the 1961 Convention on the Reduction of Statelessness", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Redouble efforts towards the realization of, at least, part of the remaining Millennium Development Goals", - "values": [ - "4 - General action" - ] - }, - { - "text": "Pursue its efforts to combat trafficking in human beings, especially women and children ", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Adopt a law banning incitement to religious and racial hatred, and to formulate concrete measures to guarantee the political, economic and cultural rights of religious and ethnic minorities, including Muslim minorities", - "values": [ - "4 - General action" - ] - }, - { - "text": "Make good use of technical assistance from OHCHR to ratify expeditiously several major human rights treaties, including the International Covenant on Civil and Political Rights, the International Covenant on Economic, Social and Cultural Rights, the Convention against Torture and the International Convention on the Elimination of All Forms of Racial Discrimination.", - "values": [ - "4 - General action" - ] - }, - { - "text": "Take all necessary measures to ensure that the Office of the National Ombudsman complies with what is set out in the Paris Principles. ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Solicit the technical and financial assistance that it believes necessary to accompany it in its projects of human and social development ", - "values": [ - "1 - Minimal action" - ] - }, - { - "text": "Continue efforts towards the abolition of the death penalty", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Adopt mandatory accessibility standards with respect to new and renovated construction to ensure the avoidance and removal of barriers that hinder access by persons with disabilities ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Continue to ensure the full implementation of the National Action Plan on Disability and strengthen coherence across laws and policies to ensure that persons with disabilities are able to lead fulfilling and productive lives", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Incorporate in the Zimbabwe's Draft National Policy on Domestic Water Supply and Sanitation the principles of the human rights framework created by the Special Rapporteur on the human right to safe drinking water and sanitation ", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Undertake appropriate measures in the education sphere to further focus on the effective integration and development of disadvantaged children", - "values": [ - "4 - General action" - ] - }, - { - "text": "Take all necessary measures to protect journalists, particularly by prosecuting perpetrators of violence or intimidations against them", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Abolish corporal punishment for children.", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Take more effective measures to combat contemporary forms of racism, racial discrimination, xenophobia and related intolerance against minority groups in the country, in particular prejudice against Muslims", - "values": [ - "4 - General action" - ] - }, - { - "text": "Take measures to ensure the effective implementation of legislation to eliminate violence against women, including by thorough investigation and prosecution", - "values": [ - "4 - General action" - ] - }, - { - "text": "Take steps to implement the plan in relation to judicial procedures and adopt measures that corruption of judicial procedures is decreasing ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Prevent torture and ill-treatment in places of detention", - "values": [ - "4 - General action" - ] - }, - { - "text": "Continue to work on the formation of a national mechanism for women`s empowerment ", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Develop a comprehensive plan encompassing all camps in order to address the problem of internally displaced persons ", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Further strengthen its efforts to reduce poverty in the country", - "values": [ - "4 - General action" - ] - }, - { - "text": "Sign and ratify the Second Optional Protocol to the International Covenant on Civil and Political Rights, aiming at the abolition of the death penalty", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Strengthen efforts to prosecute human trafficking and increase understanding of human trafficking among the judiciary", - "values": [ - "4 - General action" - ] - }, - { - "text": "Cooperate with the United Nations special procedures, especially by responding positively to mandate holders' requests for visits ", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Adopt new concrete measures for the implementation of the National Action Plan on Human Rights of 2013, in order to sustain the decrease in crime rates in the context of strengthening the rule of law", - "values": [ - "4 - General action" - ] - }, - { - "text": "Strengthen its trafficking prevention programme under the National Strategy to Combat Human Trafficking 2007-2012, with particular attention to children and women ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Amend the Law on Societies to remove undue restrictions and facilitate the ability of civil society organizations to seek, secure and use resources, including foreign funding, in order to ensure the full enjoyment of the right to peaceful assembly and association", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Fully implement the Gender Action Plan, to develop a more coordinated response to authorities, and to protect victims of domestic violence and provide them with adequate care", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Pay particular attention to the access to education for all children, especially children from ethnic or religious minorities and children with disabilities ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Take measures necessary to protect the rights of LGBT persons effectively and investigate and prosecute alleged cases of violence and discrimination against LGBT persons", - "values": [ - "4 - General action" - ] - }, - { - "text": "Further secure girls' access to education, particularly in rural areas, as well as facilitate women's participation in the political, economic and social processes ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Establish NHRI in accordance with the Paris Principles", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Take appropriate measures towards acceding to other core international human rights instruments, namely the International Covenant on Civil and Political Rights, the International Covenant on Economic, Social and Cultural Rights, the International Convention on the Elimination of All Forms of Racial Discrimination, and the Convention against Torture", - "values": [ - "4 - General action" - ] - }, - { - "text": "Refrain from stigmatizing and criminalizing the work of NGOs, human rights defenders and journalists", - "values": [ - "4 - General action" - ] - }, - { - "text": "Increase the minimum age of marriage and of criminal responsibility in line with international standards", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Continue monitoring and fighting the trafficking of persons and therefore renew the National Plan against Commercial Sexual Exploitation of Children and Adolescents ", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Further develop its law on migrants, refugees and asylum-seekers in line with the principle of non-refoulement.", - "values": [ - "4 - General action" - ] - }, - { - "text": "Train law enforcement officials to deal with sexual violence cases ", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Support the active and meaningful participation of women, "ethnic groups", internally displaced persons and refugees in the implementation of the Nationwide Ceasefire Agreement, including the national dialogue", - "values": [ - "4 - General action" - ] - }, - { - "text": "Ratify the Second Optional Protocol to the International Covenant on Civil and Political Rights aiming at the abolition of the death penalty.", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Continue the reforms undertaken in the field of education ", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Given the positive strides made in public education, continue to ensure access to quality education to vulnerable and marginalized groups", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Carry out prompt, independent and thorough investigation of the allegations of torture and excessive use of force by State officials as well as other human rights violation, including sexual abuses", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Prohibit by law all kinds of violence against children including corporal punishment in all settings", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Accede to the Rome Statute of the International Criminal Court and the Agreement on the Privileges and Immunities of the International Criminal Court", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Reconsider its conclusion not to accede to the International Convention on the Protection of the Rights of All Migrant Workers and Members of Their Families as contained in Recommendation 1", - "values": [ - "3 - Considering action" - ] - }, - { - "text": "Continue the process of national reconciliation, so that all citizens, independent of ethnic background, may be able to contribute to development of the country in harmony with the principles of fundamental human rights", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Combat the sale and trafficking in children and strengthen partnerships with all stakeholders so as to provide child victims with recovery and social reintegration services and programmes ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Allocate appropriate resources to reducing backlog and delays in the administration of cases in courts", - "values": [ - "4 - General action" - ] - }, - { - "text": "Give access to food and other essential products to those who need them, taking into account the particular needs of children and pregnant and nursing women, and cooperate constructively with humanitarian agencies and other humanitarian actors by ensuring them access to all the territory ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Address the problem regarding the confiscation of places of worship and related properties of religious minorities ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Allocate more resources to the education system, particularly education of girls, in order to achieve a successful social development level ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Progress in the implementation of the laws against domestic violence by establishing, in the short term, the centres to support women against sexual abuse, harassment and domestic violence provided for in the new law", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Repeal the aforementioned law - 2008 bill making armed robbery, terrorism and hijacking capital offences where they result in death - and bring its legislation in line with its international obligations", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Develop procedures for accountability and compensation in place in accordance with best practices and related international standards ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Take steps to ensure media freedom and protection of journalists, including protection from political pressure and undue civil defamation lawsuits", - "values": [ - "4 - General action" - ] - }, - { - "text": "Continue its efforts towards national reconciliation in cooperation with the international community, while fully engaging with all stakeholders", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Repeal legislation criminalizing homosexuality and introduce policies aimed at ending discrimination against LGBT people ", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Apply a broad human rights approach, which do not allow any type of discrimination, in the implementation of the four orientations to adopt the strategies to reduce poverty and inequalities in Haiti, described in the national report ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Establish measures to combat discrimination and violence against women", - "values": [ - "4 - General action" - ] - }, - { - "text": "Adopt effective measures against child exploitation and trafficking, including raising public awareness, combating impunity and protecting victims", - "values": [ - "4 - General action" - ] - }, - { - "text": "Consider ratification of the Optional Protocol to the Convention on the Rights of the Child on a communications procedure", - "values": [ - "3 - Considering action" - ] - }, - { - "text": "Complete the process of the national legislation's full alignment with all obligations under the Rome Statute", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Continue government efforts to fully realize the right to development ", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Ratify the Convention on the Rights of Persons with Disabilities and the Optional Protocol thereto", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Continue action towards the alleviation of poverty", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Continue to be engaged in open and inclusive public debates on ensuring the most effective domestic implementation of international and regional human rights standards, with full account of universally guaranteed rights and freedoms", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Continue the full implementation of the Angola Strategic Poverty Reduction Programme with a view to mitigating the social and economic impacts of the war", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Ratify the ICCPR, which was signed by China in 1998", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Establish an effective and inclusive process to follow-up on UPR recommendations", - "values": [ - "4 - General action" - ] - }, - { - "text": "Establish an independent NHRI and an effective complaints mechanism", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Redouble efforts to integrate the Pygmy population in the mainstream society, particularly in the area of educational development and provision of other basic amenities.", - "values": [ - "4 - General action" - ] - }, - { - "text": "As for human rights education, [the delegation] said that San Marino was committed to the promotion of human rights in education by implementing relevant projects, including training for teachers and the involvement of families.", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Eradicate child labour and, to that end, seek cooperation with United Nations agencies such as ILO", - "values": [ - "4 - General action" - ] - }, - { - "text": "Respect and protect the right of human rights defenders and journalists to undertake their legitimate work without the fear of harassment, intimidation or reprisals", - "values": [ - "4 - General action" - ] - }, - { - "text": "Sign and ratify the two Optional Protocols to CRC", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Decriminalize abortion in cases of incest and rape and in cases in which the life or physical integrity of women and adolescents is endangered ", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Draw up a national health policy in order to reduce the high rate of maternal mortality", - "values": [ - "4 - General action" - ] - }, - { - "text": "Continue strengthening its programmes aimed at the achievement of social cohesion and tolerance", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Call on the international community to provide efficient support to Djibouti in its efforts to face material and technical challenges, which remain the major handicap to consented efforts towards promoting and protecting human rights", - "values": [ - "1 - Minimal action" - ] - }, - { - "text": "Continue its efforts to bring its system of security certificates into compliance with international human rights standards ", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Adopt comprehensive anti-discrimination measures, to promote equal political, social and economic rights of women of ethnic minorities", - "values": [ - "4 - General action" - ] - }, - { - "text": "Implement all the legal measures that can reveal the truth, punish those who are guilty and grant compensation to the victims in order to put an end to impunity ", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Ensure full support to the Constitution Drafting Assembly in order to deliver a constitution that fully complies with international democratic standards and safeguards the human rights of all on an equal footing, including women, minorities and vulnerable groups", - "values": [ - "4 - General action" - ] - }, - { - "text": "Complete the process for the ratification of the two Optional Protocols to CRC ", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Accelerate the process of putting into practice its National Action Plan for the promotion and protection of human rights launched in 2011, and its Action Plan for the implementation of the recommendations of the Commission of Inquiry and Reconciliation adopted in July 2012, and fully cooperate with the UN mechanisms in order to rapidly turn the page on the atrocities of the civil war", - "values": [ - "4 - General action" - ] - }, - { - "text": "Continue adopting new measures to combat discrimination in education and to protect minority groups ", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Take all necessary measures towards rigorous implementation of all legislation on gender equality", - "values": [ - "4 - General action" - ] - }, - { - "text": "Facilitate the access of the International Committee of the Red Cross (ICRC) to its prisons.", - "values": [ - "4 - General action" - ] - }, - { - "text": "Bring the constitution into line with the Sejdic and Finci decision of the European Court of Human Rights", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Strengthen the security mechanisms in all the territory", - "values": [ - "4 - General action" - ] - }, - { - "text": "Continue its process of implementation for a national human rights commission in conformity with the Paris Principles", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Continue to promote sustainable economic and social development, and gradually improve the living standards of the population so as to lay the solid foundation for the enjoyment of all human rights", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Take appropriate measures to exempt public health and education officials of the obligation to report undocumented migrants seeking medical attention or educational services", - "values": [ - "4 - General action" - ] - }, - { - "text": "Enact and effectively implement legislation and take other policy and program measures to fulfil treaty obligations to eliminate the worst forms of child labour", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Increase and raise awareness throughout the country against of forced labour, paying special attention to groups such as the Bellah, or black Tamacheks.", - "values": [ - "4 - General action" - ] - }, - { - "text": "Continue awareness-raising campaigns to eradicate FGM.", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Take appropriate measures to improve the effectiveness and transparency of the strategies and actions to combat corruption ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Benefit from its successful experiences in the areas contained in the national report, which focuses on the challenges, and request the necessary technical assistance from the relevant international organizations", - "values": [ - "1 - Minimal action" - ] - }, - { - "text": "Consider increasing its assistance to developing countries, contributing thereby to the realization of the right to development and the achievement of the Millennium Development Goals.", - "values": [ - "3 - Considering action" - ] - }, - { - "text": "Intensify efforts to combat violence against women and to increase their participation in the labour market.", - "values": [ - "4 - General action" - ] - }, - { - "text": "Develop a comprehensive national strategy for combating child, early and forced marriages", - "values": [ - "4 - General action" - ] - }, - { - "text": "Continue efforts to promote human rights education", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Strengthen the rule of law by establishing an independent complaints commission capable of investigating and prosecuting complaints against the security forces", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Pursue efforts to settle comprehensively land claims of the indigenous population.", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Contribute towards combating impunity internationally, in particular by implementing the mandate bestowed on it by the African Union and to bring the former head of State of Chad, Mr. Hissène Habré to justice ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Immediately release all prisoners of conscience, including all persons detained for participating in peaceful demonstrations since March 2011", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Guarantee freedom of expression", - "values": [ - "4 - General action" - ] - }, - { - "text": "Take the necessary measures to adequately implement the national plan for the prevention and eradication of domestic violence and violence against women", - "values": [ - "4 - General action" - ] - }, - { - "text": "Include defenders of human rights of persons with disabilities in the decision-making process on education policies", - "values": [ - "4 - General action" - ] - }, - { - "text": "Continue to promote its successful programmes to implement the Convention on the Rights of Persons with Disabilities", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Continue measures for improving access by women victims of trafficking and sexual violence to complaints mechanisms and protection services", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Within the spirit of the Durban Review Conference and Human Rights Council resolution 9-12 consider the ratification of the International Convention on the Elimination of All Forms of Racial Discrimination.", - "values": [ - "3 - Considering action" - ] - }, - { - "text": "Intensify efforts to spread a culture of human rights through educational curricula and awareness-raising campaigns", - "values": [ - "4 - General action" - ] - }, - { - "text": "Pursue its efforts reforming the education system as it is an important element in minimizing poverty ", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Do not lower the minimum age of criminal responsibility for children", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Guarantee the right to freedom of expression and allow the use of social media without undue restrictions and limitations", - "values": [ - "4 - General action" - ] - }, - { - "text": "Take a resolute action against any act of religious violence and implement appropriate, efficient measures to prevent intolerance or discrimination on religious grounds ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Address cases of statelessness in the new Constitution's drafting process ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Implement more appropriate measures to build an inclusive society, in which no segment of the population, notably the Afro-Guyanese who constitute 30 percent of the population, do not suffer discrimination", - "values": [ - "4 - General action" - ] - }, - { - "text": "Take immediate and concrete steps to fulfil the recommendations made by the United Nations Special Rapporteur on Torture in 2012 and 2014, including the establishment of an effective national preventative mechanism", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Enact comprehensive anti-discrimination legislation with specific legislation prohibiting racial discrimination", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Repeal laws that are not in compliance with international human rights law and review its legal system to ensure compliance with the rights to due process and a fair trial and respect for the rule of law ", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Ratify the two optional protocols to CRC, ICRMW and the Convention relating to the Status of Stateless Persons ", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Consider the possibility of recognizing the competence of the Committee on Enforced Disappearances to receive and examine communications - from or in favour of victims - as well as from other State Parties ", - "values": [ - "3 - Considering action" - ] - }, - { - "text": "With international support, undertake further programmes for human rights training and capacity-building to train relevant institutions of law enforcement and justice in the area of human rights, and introduce human rights in the education system at all levels.", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Further take appropriate actions to strengthen the judicial system and improve detention conditions", - "values": [ - "4 - General action" - ] - }, - { - "text": "Accede to the International Convention [ICRMW]", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Continue to improve its policies and programmes towards advancing the status of women, girls, children, including those with disabilities and the overall human rights situation, both in the enjoyment of civil and political rights as well as social, economic and cultural rights", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Continue to adopt measures that would further promote and protect the rights of the child", - "values": [ - "4 - General action" - ] - }, - { - "text": "Consider instituting a human rights training programme specifically for its army and police forces", - "values": [ - "3 - Considering action" - ] - }, - { - "text": "Consider establishing a coordination mechanism between stakeholders in charge of children's rights to optimize child protection", - "values": [ - "3 - Considering action" - ] - }, - { - "text": "Further increase initiatives for the promotion of the right to education, especially for vulnerable children", - "values": [ - "4 - General action" - ] - }, - { - "text": "Continue to enact specific legislation to implement the Convention on the Rights of the Child", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Persevere in the strengthening of its aid to development, considered as fundamental, in particular the assistance and relief in case of natural disasters", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Continue working to provide State care to vulnerable and minority groups in the country, to ensure they are fully integrated into society ", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Level the maximum sentence of 90 days for administrative detention to that of 60 days for criminal detention", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Take urgent measures to amend criminal legislation which criminalizes freedom of expression and opinion online and in different social media", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Improve legislation, policies and guidelines regarding human rights education and training for the legal and justice system", - "values": [ - "4 - General action" - ] - }, - { - "text": "Eliminate the application of military jurisdiction to civilians.", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Continue combating trafficking in persons, and provide protection to its victims", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Explicitly prohibit traditional practices that harm the rights of women", - "values": [ - "4 - General action" - ] - }, - { - "text": "Enhance participation of and consultation with indigenous peoples and communities on public policies affecting them, including with regard to national resource exploitation and territorial claims, taking into account relevant provisions of the United Nations Declaration on the Rights of Indigenous Peoples", - "values": [ - "4 - General action" - ] - }, - { - "text": "Continue efforts with a view to adopting a comprehensive antidiscrimination legislation as part of its ongoing human rights reforms ", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Adopt and apply measures aimed at guaranteeing full respect for human rights and international humanitarian law for all refugees", - "values": [ - "4 - General action" - ] - }, - { - "text": "Continue to promote dialogue with all States on the basis of mutual respect, sovereign equality, self-determination and the right of peoples to freely choose their own political, economic and social systems", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Incorporate provisions from ratified instruments into domestic law and seek the international community to provide the necessary means to tackle difficulties that Tanzania is facing in the area of human rights", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Further improve the regulatory framework for lawyers conducive to the unhindered exercise of their profession, and continue to harmonize laws and regulations with international standards", - "values": [ - "4 - General action" - ] - }, - { - "text": "Continue efforts to combat illegal, unreported, unregulated fishing, including illegal labour in the fisheries sector, taking into account its human rights and extraterritorial dimensions", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Ratify those international human rights instruments to which it is not yet a party, such as the Second Optional Protocol to the Covenant on Civil and Political Rights, the International Convention for the Protection of All Persons from Enforced Disappearance and the Optional Protocol to the Convention on the Rights of the Child of 1989 ", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Reform legislation and law enforcement in order to ensure freedom of opinion and expression, including on the internet", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Continue its efforts to ratify the Rome Statue of the ICC", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Expeditiously and fully implement the 1997 Constitution and the rights that it enshrines in order to end the 23 years of the one-party-State-led transitional period and seek technical assistance from regional bodies and the international community ", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Consider ratifying international instruments particularly the Convention on the Elimination of All Forms of Discrimination against Women", - "values": [ - "3 - Considering action" - ] - }, - { - "text": "Take all necessary measures to promote the rights of women and to counter domestic violence, in particular by preventing and punishing, more effectively, violence within the family", - "values": [ - "4 - General action" - ] - }, - { - "text": "Speed up the effective implementation of the six universal periodic review recommendations made by the Czech Republic and accepted by Kazakhstan in 2010", - "values": [ - "4 - General action" - ] - }, - { - "text": "Take further measures to ensure the full protection of children from all forms of violence ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Develop a comprehensive child protection policy with a view to reflecting fully the realities of children in national plans and programmes", - "values": [ - "3 - Considering action" - ] - }, - { - "text": "Carry out a constructive and a cooperative engagement with the Committee on the Rights of the Persons with Disabilities, in particular with regard to the persons with psychological disabilities", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Strengthen its ongoing efforts to reform the justice system according to international standards ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Identify the root causes of ethnic disparities concerning especially those sentenced to capital punishment in order to find ways for eliminate ethnic discrimination in the criminal justice system", - "values": [ - "4 - General action" - ] - }, - { - "text": "Enhance efforts to ensure the safety and rights of migrants", - "values": [ - "4 - General action" - ] - }, - { - "text": "Fully implement the reforms necessary to establish an independent, effective and transparent judicial system that would not only strengthen Ukraine\u2019s capacity to fight corruption, but would also establish an overarching framework for upholding the rule of law and protecting fundamental rights and freedoms", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Continue its ongoing efforts to advance the rights of women and make similar efforts in the protection and promotion of the rights of children, especially by adopting the relevant legal instruments", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Criminalize domestic violence, create conditions in which victims do not fear to report cases of domestic violence, and increase the number of shelters available for victims", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Bhutan remains committed to constructive engagement with human rights mechanisms of the UN. Bhutan has received and will continue to receive visits of Special Rapporteurs and other Special Procedures mandate holders of the Human Rights Council, taking into account its capacity, national priorities, as well as the need for adequate preparations for such visits", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Continue efforts made towards the promotion of a culture of gender equality in society through awareness-raising campaigns", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Promote human rights education and training at all levels, including for Government officials, in order to raise awareness about human rights for all ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Guarantee the rights of the Batwa to the enjoyment of natural resources and provide them with adequate compensation in cases of expropriation", - "values": [ - "4 - General action" - ] - }, - { - "text": "Adopt a moratorium on the death penalty with a view to abolishing it as the final goal ", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Particularly promote realization of the right to development, as an inalienable right, and support ongoing efforts to further develop the concept and its operationalization", - "values": [ - "4 - General action" - ] - }, - { - "text": "Continue to avail itself of offers of technical assistance and capacity building from relevant development partners at the bilateral, regional and multilateral levels ", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Analyse the possibility of issuing an open invitation so that the special procedures of the Human Rights Council can visit the country", - "values": [ - "3 - Considering action" - ] - }, - { - "text": "Consider using the Recommended Principles and Guidelines on Human Rights and Human Trafficking developed by OHCHR as a reference guide in its policies and programs", - "values": [ - "3 - Considering action" - ] - }, - { - "text": "Consider the ratification of the Protocol to Prevent, Suppress and Punish Trafficking in Persons, especially Women and Children", - "values": [ - "3 - Considering action" - ] - }, - { - "text": "The United States has an unwavering commitment to respect the human rights of all migrants, regardless of their immigration status, and vigorously prosecutes crimes committed against migrants and enforces labor, workplace safety, and civil rights laws. All children have the right to equal access to public elementary and secondary education, regardless of their or their parents' immigration status, and such schools must provide meaningful access to their programs to persons with limited English proficiency, including migrants. In January 2015, we issued guidance to help schools ensure that English learner students can participate meaningfully and equally in education programs and services. Employers may not discriminate against employees or applicants based on their race, color, national origin, or, in certain cases, citizenship status.", - "values": [ - "4 - General action" - ] - }, - { - "text": "Continue judiciary and legislative reforms", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Undertake a complete reform of the security sector, including the armed forces, as well as training aimed at preventing human rights violations ", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Accede to the International Covenant on Civil and Political Rights and the International Covenant on Economic, Social and Cultural Rights", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Noting that sexual crime is categorized as an offence that is subjected to investigation only upon complaint from the victim, it was recommended that this legal provisions be reviewed, along with other relevant provisions, in order to enhance protection of victims.", - "values": [ - "3 - Considering action" - ] - }, - { - "text": "Release all prisoners of conscience, including the poet Mohammed Al-Ajami, and respect the rights of all individuals to freedom of expression ", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Ratify-consider ratifying the Rome Statute of the International Criminal Court.", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Strengthen efforts to combat racial discrimination, especially against the Roma and Serb minorities, in particular in the areas of education, employment, housing, citizenship and political participation ", - "values": [ - "4 - General action" - ] - }, - { - "text": "While commending ongoing efforts of the Government, strengthen the efforts aimed at protecting Amerindians from marginalization and at defending their issues and not subject them to any discrimination ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Consolidate the draft national action plan to combat racism, racial discrimination, xenophobia and related intolerance", - "values": [ - "4 - General action" - ] - }, - { - "text": "Institute policies and initiatives to address discrimination based on sexual orientation or gender identity", - "values": [ - "4 - General action" - ] - }, - { - "text": "Take further steps to promote national reconciliation and transitional justice, in particular with a view to complete investigation and prosecution of grave human rights violations committed in the 2009 massacre", - "values": [ - "4 - General action" - ] - }, - { - "text": "Ensure that all processing of personal data and all State surveillance activities be in line with international human rights law and do not infringe on citizen's fundamental rights and freedoms, including the right to privacy", - "values": [ - "4 - General action" - ] - }, - { - "text": "Improve access to justice for victims of sexual violence, particularly in rural areas", - "values": [ - "4 - General action" - ] - }, - { - "text": "Extend full cooperation to the United Nations special procedures, and ensure that overdue reports to the United Nations treaty bodies are submitted as a matter of priority ", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Enact national legislation to protect the rights of children.", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Guarantee in an effective manner and in line with the Constitution of Benin and the international instruments to which it is a party, the rights of workers including the right to strike, freedom of association and peaceful assembly", - "values": [ - "4 - General action" - ] - }, - { - "text": "Further consolidate its successful health programmes that provide medical care that is universal, free and of quality for all Bhutanese", - "values": [ - "4 - General action" - ] - }, - { - "text": "Further undergo awareness raising activities for overcoming the traditional stereotypes regarding the roles and responsibilities of women and men in the family and society, and for strengthening the principle of shared responsibility", - "values": [ - "4 - General action" - ] - }, - { - "text": "Introduce a permanent de facto and de jure moratorium on death penalties with a view to adopting a law abolishing the death penalty, and commute without delay all death sentences to terms of imprisonment", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Accede to the statute of the International Criminal Court and ratify the Additional Protocols to the Geneva Conventions", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Undertake proactive measures aimed at preventing the instrumentalization of the freedom of expression to justify campaigns of incitement to racial hatred and violence in the Netherlands.", - "values": [ - "4 - General action" - ] - }, - { - "text": "Acknowledge the right of all Palestinian refugees to return to their homeland, as enshrined in the Fourth Geneva Convention", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Address the root causes of prostitution by adopting measures enhancing women's economic opportunities", - "values": [ - "4 - General action" - ] - }, - { - "text": "Further strengthen its compliance with the Convention on the Rights of Persons with Disabilities, by implementing the concept of reasonable accommodation recognized in Article 2, as well as paying a special attention to the needs of girls and women with disabilities ", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Accede to outstanding international human rights instruments", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Work on long-term preventive programmes targeting the trafficking of persons, especially women and children", - "values": [ - "4 - General action" - ] - }, - { - "text": "Consider the ratification of ICRMW ", - "values": [ - "3 - Considering action" - ] - }, - { - "text": "Continue to take effective measures to combat all forms of discrimination, including racial superiority and hatred, and to eliminate gender stereotypes", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Share, with States that request it, the experiences of the National Human Rights System, the comprehensive monitoring system for international recommendations on human rights (SISREDH) and the monitoring mechanism of the universal periodic review, in the framework of international cooperation. ", - "values": [ - "1 - Minimal action" - ] - }, - { - "text": "Take steps to guarantee the effective implementation of the national system to prevent torture, including by encouraging provinces to establish by law independent and adequately resourced local preventive mechanisms in compliance with the requirements of the Optional Protocol to the Convention against Torture and Other Cruel, Inhuman or Degrading Treatment or Punishment", - "values": [ - "4 - General action" - ] - }, - { - "text": "Strengthen attention to recommendations from the Truth Commission concerning mechanisms for reparation, restitution, rehabilitation and guarantees that such violations do not occur again, received in 2010 by the Prosecutor-General's Office ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Expedite the implementation of new constitutional provisions which have included innovative measures in the sphere of human rights", - "values": [ - "4 - General action" - ] - }, - { - "text": "Continue to place priority on combating discrimination against ethnic minorities, in particular Roma, including by allocating sufficient resources to programmes to combat prejudice, and to establish monitoring mechanisms", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Create, strengthen and render operational human rights monitoring bodies.", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Continue to take steps aimed at strengthening the protection of children's rights, such as further improving the access of children affected by social exclusion, including Roma children, to education and health-care services ", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Take necessary measures to provide adequate protection to journalists and human rights defenders, in particular regarding enforced disappearances and extrajudicial killings", - "values": [ - "4 - General action" - ] - }, - { - "text": "Ratify the United Nations Educational, Scientific and Cultural Organization (UNESCO) Convention against Discrimination in Education (1960) and incorporate it into law", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Strengthen efforts to implement the recommendations of the National Reconciliation Committee and work towards the repatriation of the internally displaced affected by the war to their cities and villages, and to guarantee the means of stability for them", - "values": [ - "4 - General action" - ] - }, - { - "text": "Fully address recommendations and issues of concern raised by the Committee on the Rights of the Child with regard to child abuses and allocation of economic resources ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Adopt measures to eradicate gender discrimination in society, in the family and in the labour market", - "values": [ - "4 - General action" - ] - }, - { - "text": "Intensify awareness-raising and educational campaigns to supplement current programmes aimed at empowering women, with a particular focus on identifying and countering discriminatory perceptions and actions or practices that could endanger the safety and security of women and girls", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Take further steps in order to protect the right to family reunifications for refugees, giving emphasis to child rights", - "values": [ - "4 - General action" - ] - }, - { - "text": "Enact legislative provisions prohibiting discrimination against women and persons with disabilities ", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Support, based on a thorough analysis, the adoption of new international instruments for the protection of human rights ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Improve the quality of the electoral process and ensure implementation of recommendations of Election Observation Missions, especially with regard to equal political participation of women, participation of independent election observers, respect for freedom of assembly and expression and revision of campaign finance regulations", - "values": [ - "4 - General action" - ] - }, - { - "text": "Amend domestic legislation with a view to guaranteeing the independence of the judicial power and consider the establishment of an independent body for the appointment of judges", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Take all necessary measures to formally abolish the death penalty, including ratification of the Second Optional Protocol to the International Covenant on Civil and Political Rights, aiming at the abolition of the death penalty", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Continue improving and advancing the measures related to work environment and creation of job opportunities ", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Pursue its efforts to ensure that victims of ill-treatment and racist behaviour by law enforcement officials receive compensation and that the perpetrators are sanctioned ", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Reduce the gaps between the genders to ensure gender equality in the area of education", - "values": [ - "4 - General action" - ] - }, - { - "text": "Ensure prompt, thorough and impartial investigations regarding attacks against human rights defenders and adopt a public policy on their protection", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Ensure the protection of journalists, media personnel, civil society activists and human rights defenders against the attacks and prosecute those responsible for such attacks ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Continue cooperating with the United Nations and other international organizations to develop its legal and institutional framework with respect to the promotion and protection of human rights in Thailand ", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Accede to ILO Convention No. 189 ", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Continue the substantive efforts in the area of governance and poverty reduction", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Continue to implement the socio-economic development strategies and plans, in particular those aimed at fostering women's empowerment", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "The delegation highlighted the Government's commitment to strengthening the rule of law and democratic institutions. Fully aware of the existing human rights issues, the Government had strengthened its efforts to improve the respect of human rights and of the rule of law in past years. ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Continue to take effective measures to push forward the poverty alleviation strategy and ensure people's basic human rights, such as the right to subsistence and the right to development ", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Continue the campaign carried out by the Government to raise population's awareness on domestic violence ", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Raise awareness of anti-discriminations laws, including the Anti-Discrimination Act and relevant complaint mechanisms, among law enforcement and judicial officials with a view to improving protection of victims", - "values": [ - "4 - General action" - ] - }, - { - "text": "Intensify efforts to end harmful traditional customs such as female genital mutilation and recruitment of child soldiers ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Continue the policy on the protection and support of the family institution as a fundamental basis of society", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Speed up measures to ensure reintegration into the community of minors giving up their weapons, making it possible to comply with the agreements undertaken by the Government and the Union of Democratic Forces for Unity with the United Nations. and conclude and implement these agreements in the case of other remaining irregular forces.", - "values": [ - "4 - General action" - ] - }, - { - "text": "Conclude swiftly the process of the ratification of Optional Protocol to the Convention against Torture", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "The Congolese authorities undertake to encourage the promotion and protection of human rights, the dissemination of the relevant international instruments and the training of public officials, especially law enforcement officers and justice officials who are responsible for the promotion and protection of human rights.", - "values": [ - "4 - General action" - ] - }, - { - "text": "Harmonize its national legislation with the provisions of the Council of Europe Convention on Preventing and Combating Violence against Women and Domestic Violence", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Step up cooperation with the special procedures and eventually consider extending a standing invitation to all special procedures of the Human Rights Council", - "values": [ - "4 - General action" - ] - }, - { - "text": "Continue the path regarding positive results achieved in ensuring the rights and equal opportunities of persons with disabilities by, inter alia, allocating sufficient resources for the development of an inclusive education system for children with disabilities and providing sufficient and adequate support services in local communities to enable persons with disabilities to live independently", - "values": [ - "4 - General action" - ] - }, - { - "text": "Provide more resources and intensify implementation of programmes that would better ensure protection of women and children from abuse and violence", - "values": [ - "4 - General action" - ] - }, - { - "text": "Strengthen the fight against all forms of violence against women and girls by ensuring effective implementation of relevant laws and policies, and ensure access to justice and care", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Adopt specific legislation that recognizes the crime of commercial sexual exploitation and prostitution of children", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Consider the promotion and protection of the rights of peasants and other people working in rural areas ", - "values": [ - "3 - Considering action" - ] - }, - { - "text": "Step up efforts to prevent torture and ill treatment.", - "values": [ - "4 - General action" - ] - }, - { - "text": "Provide capacity-building to law enforcement officials as well as workers on the identification of child victims of commercial sexual exploitation and on measures to protect children from commercial sexual exploitation, for instance, child-friendly procedures within the justice system", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Establish national protocols for abortion in accordance with the conclusion of the UN Human Rights Committee in 2005, as a measure to improve women's sexual and reproductive rights", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Ban all forms of child labour for children from ages 6 to 14 ", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Amend national legislation to ensure the minimum age for marriage is in line with its obligations under the Convention on the Rights of the Child", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Provide protection to the family as a natural and fundamental unit to the society", - "values": [ - "4 - General action" - ] - }, - { - "text": "Proceed with the Bill for the establishment of the national human rights institution", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Persons, who are administratively detained without being formally charged, be the object of an equitable trial or be immediately released", - "values": [ - "4 - General action" - ] - }, - { - "text": "Enact legislation on domestic violence in all provinces", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Complete the harmonization of domestic legislation with the provisions of the Rome Statute, and consider the possibility of ratifying the Optional Protocol to the Convention against Torture and Other Cruel, Inhuman or Degrading Treatment of Punishment", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Give priority to the improvement of the situation of those living in severe poverty when restoring the social protection measures and assistance", - "values": [ - "4 - General action" - ] - }, - { - "text": "Release all Palestinian prisoners in Israeli prisons as there is no legal basis to which Israel has detained those political activists", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Take the necessary measures to ensure that its new Constitution is consistent with the human rights instruments to which Libya is a party", - "values": [ - "4 - General action" - ] - }, - { - "text": "Improve its cooperation with the special procedures of the Human Rights Council by responding positively to the pending visit requests and eventually consider extending a standing invitation to all special procedures mandate holders of the Human Rights Council ", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Adopt legislation that prevents discrimination against women, eliminates female genital mutilation/cutting and prevents forced marriages", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Continue taking the necessary measures at the legislative and procedural level to provide full protection for migrant workers in the United Arab Emirates", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Continue and step up efforts to promote reconciliation, accountability and human rights, above all through national initiatives such as the national policy on reconciliation", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Create independent monitoring mechanisms for the control of institutions and centres for social care", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Afford sufficient legal safeguards so that complaints by foreigners do not have negative consequences regarding their stay in the country, in order to implement penal provisions relative to acts of xenophobia and racial discrimination and to investigate and effectively sanction human rights violations committed against foreigners or persons belonging to minorities", - "values": [ - "4 - General action" - ] - }, - { - "text": "Continue to strengthen its national migration policy, bearing in mind important pillars like protection, integration, non-discrimination and non-refoulement", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Fully guarantee freedom of expression, ensuring that regulation in respect of the mass media is carried out in accordance with international human rights instruments", - "values": [ - "4 - General action" - ] - }, - { - "text": "Take measures to improve the conditions in prisons", - "values": [ - "4 - General action" - ] - }, - { - "text": "Ratify the International Convention for the Protection of All Persons from Enforced Disappearance, the International Convention on the Protection of the Rights of All Migrant Workers and Members of Their Families", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Reinforce efforts to achieve the Millennium Development goals by the target date", - "values": [ - "4 - General action" - ] - }, - { - "text": "Ratify CRPD and incorporate a disability perspective into its Vision 2050 and other development plans and programmes ", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Make further improvements in the socioeconomic conditions with the view to promoting human rights in the country", - "values": [ - "4 - General action" - ] - }, - { - "text": "In line with its previous commitments, take all measures to ensure that freedom of expression, including on the Internet, is fully guaranteed in law and practice by bringing its legislation in line with the obligations of Viet Nam under ICCPR ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Continue allocating adequate financial and human resources to effectively implement its national action plan on human rights", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Consider ratifying the Convention on the Prevention and Punishment of the Crime of Genocide", - "values": [ - "3 - Considering action" - ] - }, - { - "text": "Take all necessary measures for the optimal application of these texts", - "values": [ - "4 - General action" - ] - }, - { - "text": "Intensify their efforts to secure and effectively implement the existing policies designed for the integration of the Roma minority", - "values": [ - "4 - General action" - ] - }, - { - "text": "Improve women empowerment and emancipation, and provide them with a bigger role to play in the society ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Ensure that the security forces act in accordance with human rights laws and international norms on the use of force, and investigate allegations of abuse committed by them", - "values": [ - "4 - General action" - ] - }, - { - "text": "Ensure that the new Constitution fully guarantees the right to freedom of religion or belief and the right to equality and non-discrimination in line with international standards ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Make available better support networks to protect women victims ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Accede to the Rome Statute of the ICC and to the Agreement on the Privileges and Immunities of the ICC ", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Take more adequate measures to provide education to ethnic minorities ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Improve the space and sanitary conditions of shelters for migrants, refugees and asylum-seekers, so that they comply with international and regional standards ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Review and amend its laws to ensure gender equality in all its legislation, amongst others, in the Nationality Law, and guarantee that all Kuwaiti women are able to transfer nationality to their children and ensure to all Kuwaiti women equal access to their social and economic rights ", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Denounce more forcefully all verbal and physical attacks on human rights defenders ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Take measures to separate juvenile detainees from adults in all places of detention", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Ensure a better protection for children and adolescents against violence related to organized crime", - "values": [ - "4 - General action" - ] - }, - { - "text": "Further enhance the institutional and financial capacities of the Ethiopian Human Rights Commission to effectively carry out its mandate vis-à-vis the affected communities, especially its working relations with the Oromo, Ogaden, Gambella and Somali communities ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Continue its efforts to provide universal access, and without discrimination, to the treatment, care and prevention of HIV/AIDS ", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Fully eliminate discrimination between women and men with regard to inheritance rights", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Further pursue its efforts to ensure the enjoyment of economic, social and cultural rights", - "values": [ - "4 - General action" - ] - }, - { - "text": "Provide the national human rights institution with a framework for independent functioning in accordance with the Paris Principles", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Sign and ratify the CAT and its Optional Protocol (OPCAT).", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Implement reforms to improve the situation of overcrowding in prisons, with special attention being paid to the strengthening of the specialized system of juvenile justice and the recommendations of the Committee on the Rights of the Child.", - "values": [ - "4 - General action" - ] - }, - { - "text": "Allocate adequate resources for the full effectiveness of the gender plan of action 2013-2017", - "values": [ - "4 - General action" - ] - }, - { - "text": "Continue its efforts to protect and promote women's rights, including giving due considerations to the applications of quota system in all State bodies as put forwarded by the National Conference for Women ", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Continue negotiations with a view to a peaceful resolution of pending questions", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Continue efforts to eradicate child labour within the framework of protection and promotion of the rights of the child", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Take concrete steps to improve the objectivity and independence of the criminal justice system by incorporating the recommendations of the Venice Commission, implementing the judgments of the European Court of Human Rights, and addressing concerns about selective justice", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Establish an immediate official moratorium on the use of the death penalty with a view to abolishing it ", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Develop a National Action Plan for Human Rights in order to framework a systematic and comprehensive approach to the promotion and protection of human rights", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Increase efforts to ensure non-discrimination, particularly in the areas of access to justice, property rights and housing rights", - "values": [ - "4 - General action" - ] - }, - { - "text": "Develop and implement the national gender policy in order to ensure that the principle of equal gender representation is respected", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Repeal the legislation that exempts spouses of minors from prosecution for sexual offences against their spouse", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Sign and ratify as soon as possible the International Convention for the Protection of All Persons from Enforced Disappearance, and recognize fully the competence of the Committee on Enforced Disappearance ", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Ensure continued effectiveness of strategies to combat HIV-AIDS, particularly among youth and other specifically affected groups", - "values": [ - "4 - General action" - ] - }, - { - "text": "Continue efforts to develop legal skills through training of judges", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Revise legislative provisions that legalize abuse, persecution, sexual violence and arrest of LGBTI persons", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Ratify the Convention for the Protection of All Persons from Enforced Disappearance.", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Prohibit torture and other ill-treatment, in national legislation and in practice in line with its obligations under CAT, ensuring that all allegations of torture or other ill-treatment are independently, promptly and thoroughly investigated, and perpetrators are brought to justice in accordance to international fair trial standards ", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Criminalize violence against women and provide significant penalties under the law for that crime ", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Develop a fully fledged legal aid system in the context of policy custody, to ensure that persons who are not in a position to pay for a lawyer can effectively benefit, if they so wish, from the assistance of a lawyer throughout their police custody ", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Continue its efforts to prevent and eradicate all manifestations of racism and xenophobia and to improve policing responses to violence against non-nationals", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Continue to implement its healthcare-related campaigns and programmes to improve public health standards and provide access to healthcare services for all, with the support of the international community ", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Uphold its religious freedom obligations and release those imprisoned for their religious beliefs, such as Pastor Saeed Abedini, and protect the rights of all individuals to manifest their religious beliefs", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Put an end to cases of politically-motivated persecution of human rights defenders who advocate for the rights of minorities or the closure or suspension of mass media and restrictions on access to various sources of information for the population", - "values": [ - "4 - General action" - ] - }, - { - "text": "Withdraw the provisions which entered into force on 1 January 2010 making blasphemy punishable as they may constitute an excessive limitation to the freedom of expression ", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Redouble its efforts in the area of poverty eradication, including by allocating adequate human and financial resources and providing support and material assistance to the most marginalised and disadvantage groups in the country ", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Finalize an action plan to guide the implementation of all universal periodic review recommendations", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Further work to improve women's political participation, educational opportunities and status in marriage and to reduce the maternal mortality rate.", - "values": [ - "4 - General action" - ] - }, - { - "text": "Examine the media regulation system and eliminate all provisions that may hinder the freedom of expression ", - "values": [ - "3 - Considering action" - ] - }, - { - "text": "Continue studying the possibility of a universal basic income as a way to further reduce poverty levels with a view to possibly phasing out the existing social protection system, in full consultation with all stakeholders", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Strengthen the judiciary and law enforcement for a more effective investigation and prosecution of trafficking cases", - "values": [ - "4 - General action" - ] - }, - { - "text": "Accede and adapt its national legislation to the Rome Statute of the International Criminal Court, including by incorporating provisions to cooperate with the Court ", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Enact laws and measures necessary to complement the Government's efforts concerning migration", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Attach the greatest importance to implementing the Ohrid Framework Agreement and to meet the strategic priorities that arise there from.", - "values": [ - "4 - General action" - ] - }, - { - "text": "Accede to and implement all core human rights treaties", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Continue its efforts and momentum on the current human rights programme, with more focus on social inclusion, participation of the Roma in employment opportunity, adequate housing, gender equality and capacity building for national human rights institutions in the country ", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Fully train and equip relevant authorities to enforce laws on occupational safety and health as well as the right to organize and bargain collectively ", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Undertake concrete measures to ensure that the media production and coverage are non-discriminatory and promote positive images of girls and women ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Continue the adoption of measures, including awareness raising programmes, against negative prejudices and discrimination against people living with HIV and sexual minorities.", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Complete the Convention's [Elimination of All Forms of Racial Discrimination] ratification process ", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Continue pursing social policies in keeping with family values and not be intimidated by suggestions on social norms that are controversial, non-universal and specific to certain societies", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Sign or ratify the regional and international human rights instruments to which it is not yet a party, in particular the Rome Statute of the International Criminal Court and the African Union Convention on the Prevention and Combating of Corruption", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Adopt adequate safeguards in the Constitution and in relevant legislation to ensure the independence of judges and magistrates as well as the independent practice of the law profession. Consider extending an invitation to the Special Rapporteur to strengthen such efforts", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Establish an independent mechanism empowered to receive complaints relating to violence and ill-treatment by law enforcement officers, and conduct timely, impartial and exhaustive inquiries into such complaints", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Take appropriate measures to enforce the law criminalizing trials by ordeal", - "values": [ - "4 - General action" - ] - }, - { - "text": "Take steps to ensure that well -functioning health information systems are in place which combine disaggregated data from facilities, administrative sources and surveys, to enable effective monitoring of progress ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Strengthen its judicial arsenal by adhering to international human rights conventions to which it is not yet a party, in particular CAT, CED and OP1-ICCPR ", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Continue taking concrete measures to promote civil, political, economic, social, environmental and cultural rights ", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Enhance the prevention, investigation and prosecution of crimes of violence against individuals based on their gender or sexual orientation ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Fulfil its long-standing pledge for constructing a mosque in Athens, and open one of the historical mosques in Thessaloniki to worship, as well as allocating a cemetery for Muslims in both cities", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Comply with resolutions that different organs of the United Nations have adopted in relation to the conflict and occupation in Palestine", - "values": [ - "4 - General action" - ] - }, - { - "text": "Continue its implementation of the national strategy for social integration and development", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Lift the reservation to article 22 of ICERD as well as the two declarations on the implementation and the territorial applicability of the convention ", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Repeal the criminalization of sexual relations between persons of the same sex", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Take the necessary measures to ensure the signature and ratification of the two Optional Protocols to the Convention on the Rights of the Child ", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Continue its efforts to develop the capacities of the institutions dealing with vulnerable groups, in particular persons with disabilities", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Continue its positive approach in improving the socio-economic conditions of women, including intensifying support for women political aspirants through its Women Political Trust Fund", - "values": [ - "4 - General action" - ] - }, - { - "text": "Submit its first report to the Committee against Torture which is overdue since 2002", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "The delegation stressed that, in the addendum, the Government committed to continue promoting a national discussion concerning the signature and ratification of international instruments, subject to the procedure established by the Constitution.", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Adopt effective measures to put an end to discrimination based on gender and to violence against women, as well as to child marriage. This would include awareness-raising campaigns and trying to bring in local authorities and traditional leaders into the process", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Strengthen human rights education and training in school curricula", - "values": [ - "4 - General action" - ] - }, - { - "text": "Adopt a comprehensive anti-discrimination law and effectively implement it", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Ratify without reservations the Convention on the Rights of Persons with Disabilities and the Optional Protocol thereto", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Harmonize the Austrian legislation on combating all forms of discrimination with international instruments in this area", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Immediately close the Guantanamo facility", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Take all necessary measures to put an end to the system known as "two schools under the same roof" and eliminate ethnic segregation in the school system", - "values": [ - "4 - General action" - ] - }, - { - "text": "Take further steps to raise the living standards of the people in the rural areas", - "values": [ - "4 - General action" - ] - }, - { - "text": "Strengthen the protection of religious minorities, in particular by guaranteeing freedom of manifestation of their religion in teaching, practice, worship and observance", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Develop and implement plans to reduce physical and cost barriers to accessing HIV-related health services in rural areas ", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Accelerate the ratification of outstanding international human rights legal instruments", - "values": [ - "4 - General action" - ] - }, - { - "text": "Ratify the remaining core human rights treaties, such as CERD as well as the Convention relating to the Status of Stateless Persons and the Convention on the Reduction of Statelessness ", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Looking to the 2012 elections and within the context of the exploitation of Sierra Leone's natural resources, bring to the forefront a consensual approach and permanently bear in mind respect for human rights, in order to reinforce national reconciliation ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Seek the necessary assistance in accordance with national priorities", - "values": [ - "1 - Minimal action" - ] - }, - { - "text": "Ratify and implement the ILO Convention concerning Freedom of Association and Protection of the Right to Organise (Convention 87), ILO Convention concerning the Application of the Principles of the Right to Organise and to Bargain Collectively (Convention 98), ILO Convention concerning Forced or Compulsory Labour (Convention 29), and ILO Convention concerning the Abolition of Forced Labour (Convention 105)", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Define enforced disappearance as a criminal offence in the Penal Code", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Incorporate in Lesotho's domestic legislation provisions of international legal instruments already ratified", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Consider the possibility of ratifying ICRMW (1990), and acceding to the Convention on the Reduction of Statelessness (1961)", - "values": [ - "3 - Considering action" - ] - }, - { - "text": "Continue to consolidate its education policies to improve the living conditions of its people, in particular of the neediest sectors of the population ", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "The Government is committed to completing the drafting of the Land and Land Use Planning Bills and supports the preparation of Legislative Instrument for the Lands Act, the Land Use and Planning Act, the Lands Commission Act, and the Office of the Administrator of Stool Lands Acts", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Further address and enhance combating the root causes of discrimination, particularly of foreign migrant women, by removing legal and systemic obstacles to equal rights.", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Fight against organized crime through effective policies", - "values": [ - "4 - General action" - ] - }, - { - "text": "Continue its efforts to implement the policies and strategies for the Prevention and Responses to Violence against Children and Youth", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Take all appropriate legal and administrative measures to bring justice for the people, in particular for vulnerable groups living in remote and rural areas ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Guarantee respect for civil and political rights, in particular freedom of expression and freedom of association, and take the necessary measures so that journalists, human rights defenders and members of all political parties can exercise their activities freely ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Consider ratifying the Optional Protocol to the Convention against Torture", - "values": [ - "3 - Considering action" - ] - }, - { - "text": "Recognize the possibility of dual citizenship, a possibility which is already offered to people from more than 50 countries, to Turks legally residing in Germany, instead of forcing them to choose between their two nationalities ", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Re-issue an invitation to the Special Rapporteur on Torture ", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Increase efforts to promote the enjoyment of economic, social and cultural rights", - "values": [ - "4 - General action" - ] - }, - { - "text": "Consider amendments to its Labour Code to cover and protect domestic workers and prohibit exploitative form of domestic work", - "values": [ - "3 - Considering action" - ] - }, - { - "text": "Recommend that the international community help Cote d'Ivoire in its firm will to fight crime, sexual violence and trafficking of children through the establishment of adequate mechanisms in line with international standards ", - "values": [ - "1 - Minimal action" - ] - }, - { - "text": "Adopt a general law against discrimination", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Seek support from all countries and relevant organizations, including OHCHR, to support the request of the Bahamas for technical assistance in human rights training and capacity-building.", - "values": [ - "1 - Minimal action" - ] - }, - { - "text": "Continue the efforts to combat racism, racial discrimination and xenophobia", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Heed the recommendation of the Human Rights Committee to redouble efforts to prevent and eliminate all manifestations of racism and xenophobia, as well as to improve the policing action in its response to violence against non-citizens", - "values": [ - "4 - General action" - ] - }, - { - "text": "Consider without delay to adopt a new legislation on free birth registration", - "values": [ - "3 - Considering action" - ] - }, - { - "text": "Provide and ensure unfettered access to the country for the Commission of Inquiry", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Accredit the National Human Rights Institution and Ombudsman's Office before the International Coordinating Committee of National Human Rights Institutions ", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Ratify the international human rights instruments which it is not yet a party to ", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Redouble efforts to increase women's participation in education, including tertiary education", - "values": [ - "4 - General action" - ] - }, - { - "text": "Take effective measures to guarantee respect for the rights of migrant workers ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Continue to safeguard all human rights provisions in its new Constitution ", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Continue the efforts to continue improving the living conditions of the population, including improving access to basic health services with the support of the international community ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Work with the media and other stakeholders to ensure that all organs of the State understand and appreciate the constitutional guarantees of freedoms of press and assembly ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Accede to the Convention relating to the Status of Refugees, its 1967 Protocol and the 1961 Convention on the Reduction of Statelessness", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Improve the conditions in prisons and review the extraordinarily long period of investigation (up to 18 months) as well as the limited access to visit prisoners, as previously recommended", - "values": [ - "4 - General action" - ] - }, - { - "text": "Strengthen efforts at the federal level to raise awareness of indigenous rights, language and customs, by providing guidance and training to military and local officials, including the police, judiciary, and members of the legal community, particularly in rural areas", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Give space to non-state media, and that make Criminal Code Articles 79, 88 and 258 more specific and consistent with international human rights obligations on freedom of expression ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Continue its efforts to reduce maternal morbidity", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Facilitate independent participation of civil society in the democratization process, and to lift restrictions on the freedom of the right of association and assembly, in accordance with international human rights standards", - "values": [ - "4 - General action" - ] - }, - { - "text": "Strengthen efforts to fulfil its obligations under the Convention on the Rights of the Child", - "values": [ - "4 - General action" - ] - }, - { - "text": "In consultation with civil society groups across Guatemala, finalize and implement a public policy for human rights defenders\u2019 protection", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Further strengthen measures to grant foreign children and children of asylum-seekers equal access to the same standards of services in the field of education ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Pursue its effort to bring its national and provincial legislation into line with the human rights international instruments it has ratified.", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Ensure that all allegations of excessive use of force, including torture and ill-treatment, by police are effectively investigated and that those responsible are brought to justice and victims receive adequate reparation", - "values": [ - "4 - General action" - ] - }, - { - "text": "Enact a definition of organized crime consistent with the United Nations Convention against Transnational Organized Crime", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Continue promoting its accurate social protection programs", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Implement the recommendations contained in the 2013 report of the Inter-American Commission on Human Rights on the status of persons deprived of liberty in Honduras, and that the national penitentiary policy is finalized and implemented accordingly", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Analyze United Nations treaty bodies recommendations in consultation with representatives of the civil society, including indigenous people, and implement them or publicly report on the reasons why it considers no implementation is more appropriate", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Ensure full cooperation with the TCRT by all branches of the Government United States", - "values": [ - "4 - General action" - ] - }, - { - "text": "End the arrests and public defamation of the Ahmadi community for practicing their religion", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Take measures to eradicate traditional stereotypes of women, especially through educational programmes, and enact legislation on domestic violence and all forms of sexual abuse ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Enhance the enjoyment of the right to education, particularly for girls, and address the issue of sexual abuse and exploitation of children ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Expand services and support to prevent violence and discrimination against Aboriginal women and girls ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Review and amend all legislation and regulations relevant to birth registration and nationality to ensure their full conformity with the Convention on the Rights of the Child", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Lift the declaration of recognizing Article 14 of the International Convention on the Elimination of All Forms of Racial Discrimination", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Increase its efforts on socio-economic reform and strengthen the law enforcement system toward enhancing national reconciliation, combating violence, illegal armed groups and maintaining public order", - "values": [ - "4 - General action" - ] - }, - { - "text": "Consider ratifying OPCAT in the near future ", - "values": [ - "3 - Considering action" - ] - }, - { - "text": "Align its domestic legislation to international standards so as to fully respect the right to freedom of peaceful assembly and association, in line with the International Covenant on Civil and Political Rights, as well as remove any obstacles to the exercise of the right to freedom of opinion and expression", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Continue its efforts to provide free health care for children and combat child malnutrition by facilitating access to food", - "values": [ - "4 - General action" - ] - }, - { - "text": "Continue to strengthen the rule of law and good governance as a means to help enhance human rights promotion and protection within the country", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Comply with Security Council resolution 1593 (2005) and fully cooperate with the International Criminal Court", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Strengthen the national system of birth registration, extending it to all persons born on Ethiopian soil ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Intensify its efforts aimed at harmonizing elements of the Shari'a with existing laws, with a view to ensuring maximum protection for women and children as well as victims of human rights abuses", - "values": [ - "4 - General action" - ] - }, - { - "text": "Prioritise the adequate resourcing and staffing of the Ombudsman's Office, ensure that State institutions, including the National Police, collaborate fully with the Office and consider a public campaign to demonstrate to Dominican citizens how this institution can help protect and guarantee their human rights ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Amend customary law and ensure its compliance with the Convention on the Elimination of All Forms of Discrimination against Women and the Transitional Constitution", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Meet international standards in ensuring adequate living conditions for inmates", - "values": [ - "4 - General action" - ] - }, - { - "text": "Strengthen security for judicial staff and lawyers", - "values": [ - "4 - General action" - ] - }, - { - "text": "Intensify the efforts for the prevention, punishment and eradication of all forms of violence against women, with a special attention to their greater vulnerability in the aftermath of the earthquake", - "values": [ - "4 - General action" - ] - }, - { - "text": "Take all the necessary measures to ratify the Second Optional Protocol to the International Covenant on Civil and Political Rights, aiming at the abolition of the death penalty", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Ensure the full implementation of legislation regarding violence against women and prosecute and sanction those responsible for such acts in line with the recommendation made by the Committee on the Elimination of Discrimination against Women", - "values": [ - "4 - General action" - ] - }, - { - "text": "Amend its legislation in order to abolish the death penalty ", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Adopt a national plan for children as soon as possible", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Recommend the cessation of the use of children by State security forces in military intelligence activities and through programmes such as Soldiers for a day, in compliance with a recommendation by the Committee on the Rights of the Child in 2006", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Canada is committed to addressing its human rights challenges in an open, transparent and collaborative fashion.", - "values": [ - "4 - General action" - ] - }, - { - "text": "Share its experiences, best practices and information with and assist the international community in tackling challenges in the area of the right to education, taking into account positive results brought to all Cuban citizens in spite of obstacles faced by the country", - "values": [ - "1 - Minimal action" - ] - }, - { - "text": "Consider ratification of the Second Optional Protocol to the International Covenant on Civil and Political Rights with a view to abolish the death penalty", - "values": [ - "3 - Considering action" - ] - }, - { - "text": "Ratify CEDAW and meanwhile continue efforts to review existing legislation, policy and practice to ensure protection for the rights of women ", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Continue to work with the Commission for Dialogue with Indigenous Peoples in order to ensure the respect of their human rights, self-determination and autonomy", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Find, with reference to the law on screening electronic messages, a rational balance between upholding the rights of citizens and real steps to combat terrorism on the Internet ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Expedite its work on policy formulation on inclusive education with particular focus on girls", - "values": [ - "4 - General action" - ] - }, - { - "text": "Establish a National Human Rights Institution fully compliant with the Paris Principles", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Continue to pay attention to the question of access to education at all levels and enhance its quality", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Strengthen measures to prevent and supress all forms of gender violence and include in the penal code the various forms of sexual violence, including marital rape", - "values": [ - "4 - General action" - ] - }, - { - "text": "Revise the discriminatory laws targeting national minorities, including the recent Law on education", - "values": [ - "4 - General action" - ] - }, - { - "text": "Improve the detention conditions in prisons and modernize these detention facilities ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Pursue and intensify its efforts towards strengthening the rights of women and children", - "values": [ - "4 - General action" - ] - }, - { - "text": "Develop a transparent and effective accountability mechanism directed towards the investigation of complaints of police abuse against suspects and detainees, and the prosecution and adequate punishment of those responsible ", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Review the definition of discrimination provided under the section III of the Constitution in terms of its compatibility with the prohibition against discrimination against descent and national or ethnic origin.", - "values": [ - "3 - Considering action" - ] - }, - { - "text": "Continue to work on the elaboration of the National Human Rights Action Plans ", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Apply mandatory training of police in the appropriate use of force ", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Ensure the systematic collection and publication of statistical data on hate crimes", - "values": [ - "4 - General action" - ] - }, - { - "text": "Trafficking of human beings, particularly women and children, is emerging as one of the most urgent issues of today and involves the gross violation of human rights of vulnerable segments of the society. In line with Sri Lanka's policy of open and constructive engagement with the international community and its commitment to enforce global standards, Sri Lanka will work closely with its partners to combat this heinous activity.", - "values": [ - "4 - General action" - ] - }, - { - "text": "Promote dialogue between all sides to foster understanding and unity", - "values": [ - "4 - General action" - ] - }, - { - "text": "Attach greater importance to the promotion of civil and political rights, recognizing the indivisibility and interdependence of human rights, and grant freedom of speech and other civil liberties to its citizens ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Adopt a comprehensive law against discrimination that is coherent with its social inclusion programmes", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Respond positively to requests to visit made by the Special Rapporteur on torture and other cruel, inhuman or degrading treatment or punishment ", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Promote the rights of children in accordance with the recommendations of the Committee on the Rights of the Child", - "values": [ - "4 - General action" - ] - }, - { - "text": "Establish and implement an immediate moratorium on the imposition and execution of the death penalty", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Strengthen efforts to include Roma children in mainstream education ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Adopt laws to punish racist acts", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Recommended that the Government investigate and prosecute both government officials and other perpetrators for acts against members of the media.", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Take legislative measures to ensure that children older than 14 years of age are effectively protected from sexual exploitation and adopt the amendment bill to the General Penal Code, which would extend the statute of limitations in respect of sexual abuse cases against children ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Continue to promote the social inclusion and rights of its LGBT community and that the country's experience in this regard is actively shared with countries in the region and globally ", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Finalize and implement a national action plan to follow up the Guiding Principles on Business and Human Rights", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Pursue preventative measures on domestic violence such as community education and police training", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Redouble efforts to diminish the wage gap between men and women and promote a higher representation of women in managerial and decision-making positions both in public administration and in the private sector ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Establish a national rapporteur's office dedicated to implementing and coordinating policies and programmes", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Take appropriate measures to ensure that mandatory basic education includes children with disabilities ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Continue its positive campaigning to raise awareness of women's social and political rights", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Take steps to fully and effectively implement the 2013 Freedom of Information Act, including by repealing criminal libel laws and the 1965 Public Order Act", - "values": [ - "4 - General action" - ] - }, - { - "text": "Repeal criminal provisions against persons based on their sexual orientation ", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Implement those recommendations accepted under the UPR exercise", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Continue strengthening the advanced programmes carried out for the promotion of employment, food and social assistance, combating poverty and social inequality, and in favour of national minorities - especially Roma - and other vulnerable sectors of the population", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Repeal legal provisions that foresee penalties against lesbian, gay, bisexual or transgender persons, in order to respect the principle of non-discrimination", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Implement, as soon as possible, the obligations under the Optional Protocol to the United Nations Convention against Torture and establish an independent and effective national protection mechanism that has the necessary resources", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Continue consideration of the establishment of an NHRI to contribute to awareness-raising and the spread of a human rights culture in the United Arab Emirates society", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Ratify on the Protection of the Rights of All Migrant Workers and Members of Their Families", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Increase the awareness campaign for the Government programmes ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Promote a reform of the Civil Code to provide full legal capacity to persons with disabilities, and thus ensure their autonomy and improve their social inclusion", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Conduct impartial and objective investigations of all cases of cruel treatment of adopted children in order to eliminate impunity for such crimes", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Continue its reconsideration of laws that restrict the human rights of individuals based on sexual orientation or gender identity, and repeal all such laws ", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Ensure effective implementation of the law on the protection of human rights defenders, journalists, social communicators and justice officials and provide adequate resources to establish an effective protection mechanism for human rights defenders", - "values": [ - "4 - General action" - ] - }, - { - "text": "Step up measures taken at the national level to effectively combat violence against women", - "values": [ - "4 - General action" - ] - }, - { - "text": "Ensure the existence of scientific, intellectual, legal, social and economic programmes to raise awareness about the risk of terrorism at all levels", - "values": [ - "4 - General action" - ] - }, - { - "text": "Re-establish the moratorium on executions", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Criminalize torture in its legislation and establish a national preventive mechanism for torture", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Maintain its binding commitment to the Second Optional Protocol to the International Covenant on Civil and Political Rights, aiming at the abolition of the death penalty, thereby repealing legal propositions aiming at restoring the death penalty", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Develop a National Action Plan on business and human rights, for the implementation of the UN Guiding Principles on Business and Human Rights, with special attention for the situation of nomadic herders and access to remedy", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Abolish the death penalty and ratify the Second Optional Protocol to the International Covenant on Civil and Political Rights, aiming at the abolition of the death penalty", - "values": [ - "4 - General action" - ] - }, - { - "text": "Review, inter alia, the land rights and other rights of the Ainu population and harmonize them with the United Nations Declaration on the Rights of Indigenous Peoples.", - "values": [ - "3 - Considering action" - ] - }, - { - "text": "Take additional measures to improve and widen the health coverage for employees in public and private institutions and companies as well as retirees having worked for those entities and their dependents", - "values": [ - "4 - General action" - ] - }, - { - "text": "Continue to uphold the implementation commitments as a State party to the Second Optional Protocol to the International Covenant on Civil and Political Rights, aiming at the abolition of the death penalty", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Encourage racial, ethnic and religious tolerance, especially young people ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Become a party to the UNESCO Convention against Discrimination in Education", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Effectively implement the national action plan on human rights to promote and protect the most vulnerable groups including women, children and persons with disabilities", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Ensure immediate access to a freely chosen counsel within the first hour of the procedure, including during the first interrogations and until the end of the judicial process, as well as access to all the official documents of the procedure", - "values": [ - "4 - General action" - ] - }, - { - "text": "Ensure that all military actions are in conformity with international law, that the alleged grave violations are thoroughly and impartially investigated and that those responsible are brought to justice", - "values": [ - "4 - General action" - ] - }, - { - "text": "Continue with measures the Government is taking to meet the challenges the country faces in the field of human rights in order to consolidate the progress that has been achieved", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Continue efforts towards bringing national laws related to women and children in line with its obligations under international human rights law", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Intensify efforts to fight against discrimination and intolerance, and against racist and xenophobic political discourse", - "values": [ - "4 - General action" - ] - }, - { - "text": "Ensure the inclusion of a gender perspective as the follow-up to the UPR.", - "values": [ - "4 - General action" - ] - }, - { - "text": "Ensure that urban restructuring in advance of the 2014 World Cup and the 2016 Olympics be properly regulated to prevent displacements and forced evictions, and that residents in affected areas are given full and timely information about proposals affecting them, engage in a genuine negotiation with the communities to explore alternatives to eviction, and, where necessary, offer compensation or alternative adequate housing close to the existing communities", - "values": [ - "4 - General action" - ] - }, - { - "text": "Increase cooperation with the United Nations treaty bodies, including issuing a standing invitation, and permit the SR on the situation of human rights in Belarus to visit the country", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Ensure that legislation relating to the prison situation and criminal justice is in accordance with international human rights standards", - "values": [ - "4 - General action" - ] - }, - { - "text": "Reconsider its position and abolish the death penalty, if necessary by initially establishing a moratorium on executions, which would be in line with General Assembly resolution 63-168, on the moratorium on the use of the death penalty ", - "values": [ - "3 - Considering action" - ] - }, - { - "text": "Sign and ratify the Optional Protocol to the International Covenant on Economic, Social and Cultural Rights ", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Investigate, prosecute and, if convicted, punish perpetrators of human rights abuses, including those committed against civil society groups, members of the media and LGBT individuals", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Take steps to eradicate child labour such as finalizing the National Child Labour Policy and implementing the plan of action to eliminate the worst forms of child labour", - "values": [ - "4 - General action" - ] - }, - { - "text": "Ratify/accede to the Rome Statute and implement it fully at the national level, and accede to the Agreement on Privileges and Immunities of the Court ", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Thoroughly investigate and prosecute cases of sexual harassment and rape of girls in schools", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Ratify the Optional Protocol to the Convention on the Rights of the Child on the sale of children, child prostitution and child pornography, which has already been signed by the Government", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Observe the right of individuals to consular access", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Become a party to ILO conventions ", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Recognize migrants and their families as a vulnerable group and implement measures in law and in practice for the protection and promotion of their rights", - "values": [ - "4 - General action" - ] - }, - { - "text": "Continue efforts to implement its obligations in the sphere of human rights protection", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Adopt comprehensive legislation to combat discrimination based on sexual orientation and gender identity and protect the rights of lesbian, gay, bisexual, transgender and intersex persons", - "values": [ - "4 - General action" - ] - }, - { - "text": "Continue the process of reform begun in the legal system, in conformity with the recently adopted constitutional provisions", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Simplify the procedures for abortions envisaged by the penal code", - "values": [ - "4 - General action" - ] - }, - { - "text": "Continue to develop a legal system in line with international standards, in order to strengthen the rule of law.", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Consider undertaking a review of domestic laws with a view to guaranteeing equality between men and women, including laws that govern the rights of succession with respect to land permits and grants, and the absence of a minimum age for marriage under Muslim law", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Take steps to increase women's participation in elections to the Shura Council, both as voters and candidates, and to widen the participation of all citizens in the decision-making processes", - "values": [ - "4 - General action" - ] - }, - { - "text": "Implement a law on freedom of assembly that complies with applicable standards under article 21 of the ICCPR", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Continue its efforts to reduce poverty and food insecurity", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Consolidate and further advance the exercise of popular sovereignty over the natural resources and wealth of the country ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Strengthen the Police Complaints Authority and the Directorate on Corruption and Economic Offences - increase training for law enforcement officers - and increase the capacity of Lesotho's police force and other public agencies to gather data and share that data with the international community so that improvements can be tracked ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Strengthen the judicial framework, including due process, freedom of expression and freedom of association ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Consider signing and-or ratifying the Rome Statute of the International Criminal Court", - "values": [ - "3 - Considering action" - ] - }, - { - "text": "Continue efforts on women\u2019s empowerment in order to enhance their meaningful participation in socioeconomic and political decision-making process", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Continue to implement legal and administrative measures to protect women and girls from domestic and sexual violence", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Continue to take effective measures to address the very important issue of the realization of the right to education for all ", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Consolidate programmes to ensure a system of inclusive education for children with disabilities throughout the country", - "values": [ - "4 - General action" - ] - }, - { - "text": "Revise existing laws identified in its national report as being discriminatory against women ", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Continue with plans aiming at the protection of the rights of the child, particularly those regarding to live and grow in a family ", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Investigate cases of attacks and threats against journalists and human rights defenders", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Continue its efforts to eradicate discrimination against women in all areas of life", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Take active steps to effectively reduce the incidence of early forced marriage, including through the thorough implementation of existing laws such as the Child Marriage Restraint Act, the Dowry Prohibition Act and the Prevention of Women and Children Repression Act ", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Investigate cases of domestic violence and sexual abuse at schools and sanction the perpetrators", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Prepare a comprehensive national action plan defining responsibilities, benchmarks and indicators to measure progress achieved", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Implement all necessary measures to eliminate discrimination faced by persons belonging to minorities and persons with an immigrant background ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Strengthen efforts to address violence against women, including sex trafficking, by improving prevention efforts, providing comprehensive specialized services to survivors, and continuing to investigate and prosecute instances of criminal violence against women ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Become party to the Convention on the Rights of Persons with Disabilities ", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Strengthen efforts to combat the spread of HIV-AIDS ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Continue its endeavour to promote and protect the human rights of children and women ", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Improve the access for persons with disabilities to education and health care, with particular focus on children", - "values": [ - "4 - General action" - ] - }, - { - "text": "Continue to pay particular attention to the protection of the rights of children and strengthen measures for the full realization of the rights of children with disabilities ", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Consider taking measures which include the conducting of public awareness campaigns, and the awarding of financial or other incentives to parents to send their daughters to school ", - "values": [ - "3 - Considering action" - ] - }, - { - "text": "Take all necessary measures to avoid unlawful arrests and detentions", - "values": [ - "4 - General action" - ] - }, - { - "text": "Continue its untiring efforts against the execution of the death penalty - and wishes Spain success with the Prime Minister's initiative which is aimed at achieving the immediate abolition of the death penalty for minors and persons with disabilities, and at achieving a global moratorium by 2015 ", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Provide more support to civil society associations", - "values": [ - "4 - General action" - ] - }, - { - "text": "Strengthen the national human rights institution, in full compliance with the Paris Principles", - "values": [ - "4 - General action" - ] - }, - { - "text": "Take all measures necessary to ensure the implementation of the Plan of Action, including the provision on birth registration (also late birth registration) free of charge, effective implementation of the free and compulsory primary education policy and access to basic health-care services ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Continue making efforts to improve the normative framework for the protection of women in Qatar", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Continue its action-oriented policy on the reduction of infant mortality, maternal care, combating HIV-AIDs and environmental protection ", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Accelerates moves to end child and forced marriage, revise the 1971 Marriage Law Act, tightens legislation and enforcement to protect against female genital mutilation, and in the process, collaborate with civil society organizations at community level", - "values": [ - "4 - General action" - ] - }, - { - "text": "Ratify the optional protocols to the Convention on the Rights of the Child", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Swiftly decriminalize sexual behaviour between consenting adults of the same sex", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Further mainstream the rights of the vulnerable populations into its formulation of the Eighth National Socioeconomic Development Plan for 2016-2020. Enhancing economic and social opportunities for women, children, persons with disabilities, and older persons should be clearly mentioned in the next National Plan in order to ensure full implementation at all levels and in all sectors of society", - "values": [ - "4 - General action" - ] - }, - { - "text": "Take all necessary measures for the effective implementation and dissemination of the Family Protection Act throughout the country, including in the most remote areas. In particular, in this respect, to provide sufficient funding to the department in charge of the implementation of this legislation ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Ensure the implementation of laws protecting women from violence, including sexual violence and sexual harassment ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Accede to the 1951 Convention relating to the Status of Refugees", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Ensure that the use of administrative detention is minimised and that human rights are fully respected in the fight against terrorism", - "values": [ - "4 - General action" - ] - }, - { - "text": "Continuity of the standing invitation for mandate holders of human rights special procedures ", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Ensure the issuance of birth certificates to all children born on its territory, regardless of the status of their parents", - "values": [ - "4 - General action" - ] - }, - { - "text": "Abolish the death penalty completely and replace it in its legislation with other sanctions that do not include cruel, inhuman or degrading treatment", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Continue awareness-raising and advocacy to end female genital mutilation in practice", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Step up efforts to ratify the International Convention on the Protection of the Rights of All Migrant Workers and Members of Their Families", - "values": [ - "4 - General action" - ] - }, - { - "text": "Launch a credible and impartial investigation and prosecute those responsible for attacks on peaceful protesters", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Continue its efforts to enhance women's role in society and their effective involvement in the development process, as well as enabling their participation in economic, political and business activities in the country ", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Present a bill for a new Criminal Code which would decriminalize sexual activity between consenting adults of the same sex as outlined in the national report ", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Maintain addressing the emerging situation of refugee influx and migratory pressures while continuing to ensure the necessary respect for human rights", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Take further measures to adopt legislation ensuring the implementation of the Convention on the Rights of the Child, in particular in the area violence prevention and sexual exploitation of children.", - "values": [ - "4 - General action" - ] - }, - { - "text": "Reject the adoption of legislative proposals that would restrict the enjoyment of fundamental rights by lesbian, gay, bisexual, transgender and intersex persons", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Carry out judicial procedures in accordance with the norms that protect individual rights, particularly the right to effective judicial protection and due process", - "values": [ - "4 - General action" - ] - }, - { - "text": "Continue with the process of dialogue necessary to ensure the establishment of a National Human Rights Institution", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Establish the Constitutional Council as foreseen by 17th Amendment to the Constitution as soon as possible, and that this Council be mandated to appoint a number of commissioners to public Commissions, such as the NHRC and the Police Commission.", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Recognize the competence of the Committee on Migrant Workers", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Consider a maximum, non-extendable term of pre-trial detention, and use alternative measures to pre-trial detentions and take appropriate measures to deal with concerns and ensuring access to legal services, particularly for those under detention ", - "values": [ - "3 - Considering action" - ] - }, - { - "text": "Improve its cooperation with the United Nations treaty and charter- based bodies by extending an open invitation to Special Procedures, to accept those requests already pending, and to continue to submit its future reports to the treaty bodies on time", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Fully implement the Rome Statute of the International Criminal Court in national law ", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Consider the possibility of expressing its consent to accede to the Optional Protocol to the Convention against Torture and Other Cruel, Inhuman or Degrading Treatment or Punishment, to permit the enable an independent monitoring of prisons and detention centres by the Subcommittee ", - "values": [ - "3 - Considering action" - ] - }, - { - "text": "Make further efforts to improve the penitentiary system ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Continue its measures in fostering women's advancement, including intensifying efforts to increase the number of women in decision-making posts", - "values": [ - "4 - General action" - ] - }, - { - "text": "Pursue efforts to combat overcrowding in prisons ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Accelerate, if possible, the process of ratification of the International Convention for the Protection of All Persons from Enforced Disappearance, scheduled, in principle, for 2014", - "values": [ - "4 - General action" - ] - }, - { - "text": "Continue to provide and improve human rights education and training for judicial and law enforcement officials", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Continue its reforms to improve policies and programmes towards promotion and protection of all human rights", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Integrate the different agreements and treaties to which it is party in its domestic legislation and become party to other international instruments in the area of human rights.", - "values": [ - "4 - General action" - ] - }, - { - "text": "Ensure a legal and financial framework that allows non-governmental organizations to operate", - "values": [ - "4 - General action" - ] - }, - { - "text": "Continue the democratic process in which Algeria has committed itself to the full enjoyment of all rights for its people", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Strengthen and adequately fund the Ombudsman in conformity with the principles relating to the status of national institutions for the promotion and protection of human rights (the Paris Principles)", - "values": [ - "4 - General action" - ] - }, - { - "text": "Further promote the rights of minorities, such as by introducing multilingual education, and maintain social harmony and unity among various groups in the society", - "values": [ - "4 - General action" - ] - }, - { - "text": "Respect the right to freedom of opinion and expression, as accepted during the previous UPR cycle, and refrain from imposing any undue restriction on this right, including with regard to the new draft media law ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Further strengthen its efforts to enforce the \u201cBoy Bernardo Act\u201c and promote positive, non-violent and participatory forms of child-rearing and discipline", - "values": [ - "4 - General action" - ] - }, - { - "text": "Continue the efforts made to fight human trafficking, in particular the exploitation of children and women, by reinforcing the fight against the smugglers", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Continue advancing measures to ensure the right to freedom of association and expression for all Rwandans, guaranteeing an adequate environment for the activities of opposition sectors or parties", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Establish mechanisms to monitor, investigate, prosecute and punish incitement to and acts of hatred, intolerance, racism and xenophobia ", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Review the compliance of its anti-terrorism legislation allowing for incommunicado detention with international human rights standards ", - "values": [ - "3 - Considering action" - ] - }, - { - "text": "Establish a national human rights institution in conformity with the Paris Principles, with a mandate to receive and handle individual complaints, monitor the human rights situation, coordinate with the thematic mechanisms and collaborate with the Government and other entities in the drafting, dissemination and implementation of human rights legislation ", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Accede to the ICRMW", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Undertake constitutional and legislative reforms aimed at the full abolition of the death penalty ", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Submit its initial and periodic reports to relevant human rights bodies in a timely manner ", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Continue efforts to improve gender equality and strengthen women's status in society", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Establish a national human rights institution with a broad mandate and adequate resources, in line with the Paris Principles, including specific mandates to ensure social, economic and cultural rights, and especially the rights of women", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Continue to promote human rights cooperation based on its actual conditions", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Ensure that all children are registered at birth and make every effort to register all persons previously not registered ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Accelerate development programmes, especially in the rural areas in all regions of the country ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Ratify CEDAW and repeal all laws that permit gender discrimination", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Provide a sustainable solution to tackling impunity by ensuring that the International Commission Against Impunity in Guatemala and the Guatemalan government agree an exit strategy that leaves behind a properly resourced and staffed justice mechanism with sole responsibility for tackling impunity", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Preserve its criminal justice system to reinforce rule of law", - "values": [ - "4 - General action" - ] - }, - { - "text": "Remove vague provisions in the Anti-Terrorism Proclamation that can be used to criminalize the exercise of the right to freedom of expression and association and ensure that criminal prosecutions do not limit the freedom of expression of civil society, opposition politicians and independent media ", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Establish a clear minimum age of criminal responsibility at an internationally acceptable level ", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Ratify and implement the Convention on the Rights of Persons with Disabilities (CRPD)", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Strengthen human rights training and education in school programmes and training programmes for the security forces", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Undertake awareness-raising campaigns for combating stereotypes and violence against gays, lesbians, bisexuals and transsexuals, and ensure access to public services paying attention to the special vulnerability of sexual workers to violence and human rights abuses", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Continue its cooperation with the United Nations, other international organizations and human rights mechanisms to overcome remaining constraints and challenges", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Continue working so that Iranian women have the right to transmit their nationality to their children", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Protect people with albinism", - "values": [ - "4 - General action" - ] - }, - { - "text": "Continue efforts to protect all migrant workers and their families, ensuring that abusive employers are held accountable and brought to justice", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Ensure the protection of and access to all areas by journalists, human rights defenders and humanitarian workers", - "values": [ - "4 - General action" - ] - }, - { - "text": "Promptly investigate any continued allegations of child, early and forced marriage, especially in the case of young girls, and undertake measures to prevent girls from being forced to withdraw from school ", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Ratify the Optional Protocol to the Convention on the Rights of the Child on a communication procedure", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Adopt measures necessary to harmonize customary laws with international instruments.", - "values": [ - "4 - General action" - ] - }, - { - "text": "Increase efforts to investigate and criminally prosecute forced labour offenses and sentence convicted offenders to adequate terms of imprisonment", - "values": [ - "4 - General action" - ] - }, - { - "text": "Consider further strategies aimed at effectively addressing the situation of undocumented asylum seekers and the return of foreigners to States in internal armed or generalized violence on humanitarian grounds ", - "values": [ - "3 - Considering action" - ] - }, - { - "text": "Accelerate implementation of the new Constitution and alignment of relevant legislation, including for the various commissions established under the Constitution", - "values": [ - "4 - General action" - ] - }, - { - "text": "Continue efforts to sensitize public officials on the respect for women's rights, in particular the fight against female genital mutilation", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Adopt the necessary measures aiming at eliminating the normative provisions which criminalize and discriminate against LGBTI persons", - "values": [ - "4 - General action" - ] - }, - { - "text": "Prosecute the exploitation and trafficking of children, in particular of girls from ethnic minorities forced into early marriage", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Continue implementing its national laws in accordance with the universally agreed human rights norms and principles ", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Pursue its efforts to guarantee access for all its children to free and compulsory primary education by enhancing the implementation of its national action plan for education for all", - "values": [ - "4 - General action" - ] - }, - { - "text": "Consider the creation of a Ministry responsible for acceleration of the implementation of the new National Human Rights Action Plan 2017-2021, developed in 2016", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Approve pending amendments to the Penal Code to abolish the death penalty ", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Do more to ensure the effective prosecution of domestic violence cases", - "values": [ - "4 - General action" - ] - }, - { - "text": "Continue efforts in the field of combating human trafficking", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Strive to provide adequate housing in order to fulfil the right of families to decent housing conditions", - "values": [ - "4 - General action" - ] - }, - { - "text": "Implement the 2008 recommendation of the Human Rights Committee by decriminalizing sexual relations between consenting adults of the same sex ", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Withdraw reservations made upon the ratification of the CRPD ", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Continue to implement the Strategy on Gender Equality 2016-2020", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Set up all kinds of measures to guarantee a comprehensive response to ritual infanticide. In particular, carry out activities of prevention and protection measures, as well as adopt legal and judicial measures, categorizing ritual infanticide as a crime", - "values": [ - "4 - General action" - ] - }, - { - "text": "Recognize the competence of the Committee on Enforced Disappearances (CED), ensure the integration of the Convention in the domestic legal framework and create an official register of disappeared persons", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Continue the process of taking measures at the national level as well as the national dialogue under the guidance of its legitimate authorities as a means of a political solution to the situation in the country", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Implement appropriate policies and measures, including care and rehabilitation, to prevent the sexual exploitation of children ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Continue efforts to ensure the protection of children from all forms of violence and abuse", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Consider ratifying the Convention on the Rights of Persons with Disabilities and the International Convention on the Protection of the Rights of All Migrant Workers and Members of Their Families", - "values": [ - "3 - Considering action" - ] - }, - { - "text": "Fully implement its gender equality programmes, including the Strategy for Equality between Women and Men, in order to address the gender equality gaps in various sectors", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Carry out all possible efforts to combat racism, racial discrimination, xenophobia and other forms of related intolerance", - "values": [ - "4 - General action" - ] - }, - { - "text": "Reform judicial practices under its anti-terrorism law, so that the law cannot be used as a pretext for arrests without warrants and lengthy detentions without trial, in violation of due process rights", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Incorporate a definition of torture into its domestic law, in line with article 1 of CAT", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Promote and protect human rights of women, by strengthening efforts to end domestic violence, and other forms of violence and discrimination against women by implementation of existing laws and awareness programs", - "values": [ - "4 - General action" - ] - }, - { - "text": "Continue to fight poverty with cooperation from the international community ", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Take further efforts in addressing the problem of unemployment, socio-economic inequality and social vulnerability among its population ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Continue its efforts in further enhancing the protection of economic, social and cultural rights of its people", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Adopt a comprehensive and broad-based anti-discrimination law", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Develop further decent work/labour through the comprehensive economic growth ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Continue to improve its human rights system in accordance with the will of the people ", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Further the process of ensuring free secondary education in order to guarantee access to education for all young persons ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Strengthen its programmes and adopt further measures in the field of HIV/AIDS ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Implement a national system that will enable the Government to have a better and more fluid relationship with the United Nations human rights bodies, including invitations to the relevant special procedures", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "In fulfilling its treaty obligations, Liechtenstein will continue to pay particular attention to the situation of foreigners, taking into account the exceptionally high proportion of non-Liechtenstein nationals among the resident population and the workforce", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Create a national human rights institution in accordance with the Paris Principles", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Take further efforts to improve the conditions of migrants and asylum seekers who arrive to the Italian territories, and ensure that they are provided with their guaranteed rights", - "values": [ - "4 - General action" - ] - }, - { - "text": "Legally prohibit any form of corporal punishment of children and adolescents", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Cooperate fully with the Special Rapporteur on the situation of human rights in Belarus and heed his recommendations", - "values": [ - "4 - General action" - ] - }, - { - "text": "Increase the protection of female domestic workers through amending systems and procedures", - "values": [ - "4 - General action" - ] - }, - { - "text": "Review its national legislation in order to ensure its full alignment with obligations under the Rome Statute, in particular by incorporating provisions enabling cooperation with the Court", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Take budgetary, administrative and legislative measures to guarantee access to witnesses and victims of trafficking in persons to legal aid, protection and rehabilitation services", - "values": [ - "4 - General action" - ] - }, - { - "text": "Ensure the allocation of sufficient resources to increase the quality of education, including for improving schools' infrastructure", - "values": [ - "4 - General action" - ] - }, - { - "text": "Prevent violence against Roma women and girls, including harassment and abuse at school, and address the gaps in their formal education", - "values": [ - "4 - General action" - ] - }, - { - "text": "Consider ratifying the Hague Convention", - "values": [ - "3 - Considering action" - ] - }, - { - "text": "Continue its efforts to combat and prevent discrimination and acts of violence against women", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Protect children from all types of abuses by ensuring rigorous implementation and monitoring of existing frameworks to capture all threats to all children", - "values": [ - "4 - General action" - ] - }, - { - "text": "Conclude the drafting of the national human rights action plan", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Continue its efforts to respond positively to requests to restore stolen assets to their rightful owners and to cooperate in the extradition of those involved in human rights violations and corruption cases", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Integrate the Istanbul Protocol into the training of personnel", - "values": [ - "4 - General action" - ] - }, - { - "text": "Finalise, within a clear time frame, a comprehensive national legislative framework for the determination of refugee status", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Strengthen its cooperation with special procedures of the Human Rights Council, by accepting visits, replying to communications, urgent measures as well as to questions by special procedures.", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Ratify and fully align its national legislation with all obligations under the Rome Statue of International Criminal Court, including incorporating the Statue definition of crimes and general principles, as well as adopting provisions enabling cooperation with the Court, and to accede to the Agreement on Privileges and Immunities of the Court", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Ratify the Protocol No. 14 to the European Convention on Human Rights and the Charter for Regional and Minority Languages ", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Provide all unaccompanied children with appropriate legal guardians, as required by Bulgarian law, to ensure their basic needs are met and their best interests protected", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Intensify its efforts in the area of prevention and fight against trafficking in particular girls and children in situation of vulnerability", - "values": [ - "4 - General action" - ] - }, - { - "text": "Ensure the effectiveness of temporary protection centres for children with albinism throughout the country", - "values": [ - "4 - General action" - ] - }, - { - "text": "Criminalize violence against women and girls, female genital mutilation and marital rape", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Accelerate the establishment of the national commission for human rights in accordance with the Paris Principles", - "values": [ - "4 - General action" - ] - }, - { - "text": "Continue to efforts to reduce poverty through adopting a national strategy to eliminate poverty", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Introduce effective legislative measures to increase women's participation in political life and decision-making", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Consider establishing explicit legislation or policies that prohibit discrimination based on sexual orientation or gender identity", - "values": [ - "3 - Considering action" - ] - }, - { - "text": "Treat all political parties on an equal footing and offer them equal opportunities in line with articles 25 and 26 of ICCPR, including through a transparent and impartial party-registration process ", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Continue to work with the Office of the High Commissioner for Human Rights to set up the regional office", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Intensify training and adequate supervision of alleged cases of illtreatment by the police forces", - "values": [ - "4 - General action" - ] - }, - { - "text": "Continue to intensify the efforts undertaken in order to promote and protect children's rights, particularly in reference to the implementation of effective measures for eradicating child labour", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Design and implement measures to ensure access to education and medical services in the area of sexual and reproductive health that are appropriate for each age group", - "values": [ - "4 - General action" - ] - }, - { - "text": "Extend an open and standing invitation to all special procedures ", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Enforce and amend, when necessary, the relevant legislation on trafficking in women and girls, and adopt appropriate and efficient policies and programmes to address this situation ", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Further consider initiatives to improve access to education for girls", - "values": [ - "3 - Considering action" - ] - }, - { - "text": "Continue its efforts to foster an environment that harmonizes the exercise of rights by its citizens with preserving the security and integrity of the country, as well as efforts to maintain public order and protect public and private property ", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Investigate cases of domestic violence, ill treatment, sexual and other abuse within the family, and apply sanctions to perpetrators ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Decriminalize defamation and place it within the civil code in accordance with international standards, and adopt a freedom of information law in line with international standards", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "With regard to the criminalisation of relations between adults of the same sex, consider harmonising domestic standards with international ones so as to ensure the full exercise of all human rights", - "values": [ - "3 - Considering action" - ] - }, - { - "text": "Take all necessary measures to fight against manifestation of religious intolerance and to thoroughly investigate all cases of religious hatred, including acts of vandalism of religious sites", - "values": [ - "4 - General action" - ] - }, - { - "text": "Enhance its efforts to strengthen women's leadership and participation in politics and public service ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Advance efforts towards the recognition of Indigenous Australians as Australia's First People in Australia's Constitution", - "values": [ - "4 - General action" - ] - }, - { - "text": "Take further steps to combat child domestic labour and child abuse", - "values": [ - "4 - General action" - ] - }, - { - "text": "Ensure that ethnic and religious minorities are granted fundamental rights and end discrimination against persons belonging to these minorities ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Set up an independent national human rights institution in conformity with the Paris Principles", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Continue its endeavour to promote and protect the rights of the child", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Continue to promote human rights in accordance with the values of the country", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Introduce measures to improve the living standards of Travellers in society and ensure the legislation in place does not hinder their nomadic customs and practices", - "values": [ - "4 - General action" - ] - }, - { - "text": "Adopt and implement the Draft National Community Care Policy to ensure health and social support serves to older persons in the community", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Address discrimination and violence against women through education and specific legislation both in the public and private sectors. ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Further intensify efforts in order to prevent and eliminate human trafficking ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Become a State party to the Optional Protocol to the International Covenant on Economic, Social and Cultural Rights ", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Ratify the Rome Statute of the ICC and accede to the Agreement on Privileges and Immunities of the ICC", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Strengthen anti-discrimination laws with regard to a better protection of LGBT persons and persons with disabilities ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Raise public awareness of hate speech and hate crimes on grounds of sexual orientation, gender identity or expression, religious affiliation, disability or ethnic identity, encourage reporting to authorities, and develop procedures to ensure such crimes are effectively investigated", - "values": [ - "4 - General action" - ] - }, - { - "text": "Ratify the International Convention for the Protection of All Persons from Enforced Disappearance as well as the remaining human rights treaties to which it is still not party", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Implement effectively plans and strategies to combat human trafficking and provide the necessary care and support to victims, including through rehabilitation and social integration ", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Issue and implement a standing invitation to all special procedures.", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Continue to implement measures to improve and facilitate access to education", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Further advance efforts to address the root cause of trafficking and to protect and support victims of trafficking", - "values": [ - "4 - General action" - ] - }, - { - "text": "Take concrete steps to effectively ensure that all persons deprived of their liberty are brought before a judge without delay.", - "values": [ - "4 - General action" - ] - }, - { - "text": "Take steps to prevent and combat hostile attitudes against persons belonging to non-Muslim minorities, by putting in place awareness-raising campaigns as well as education and training programmes for judges and law enforcement agents ", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Adopt domestic legislation to absolutely abolish practices of torture on its territory ", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Further increase the measures implemented under the National Strategy for the Promotion of Gender Equality (2009-2015)", - "values": [ - "4 - General action" - ] - }, - { - "text": "Take action to encourage pregnant and-or married girls and women to continue their education ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Take effective measures to ensure the freedom of expression and opinion by amending the press law that allows for a broad interpretation of the vague term humiliation of national institutions and authorizes censorship, the suspension of publishing and imprisonment under the guise of national security and political stability ", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Ratify the Convention against Torture and the International Convention for the Protection of All Persons from Enforced disappearance", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Continue strengthening the social programmes and plans which drive the fight against social exclusion and inequality, with emphasis on the areas of employment, food and health and paying special attention to the most vulnerable sectors", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Ensure the full participation of indigenous peoples in decision-making processes which concern them, and ensure that they are consulted in the context of the planning and implementation of large-scale economic projects", - "values": [ - "4 - General action" - ] - }, - { - "text": "Take the necessary measures to raise awareness among the population against homophobia, and in general, in favour of the non-discrimination on the basis of sexual orientation, undertaking global public awareness campaigns ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Continue the trend to strengthen the protection of children with disabilities, promoting their inclusive education", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Further support human rights machinery and capacity building in its national institutions to implement the human rights instruments, such as the introduction of a human rights charter as pledged in 2006.", - "values": [ - "4 - General action" - ] - }, - { - "text": "Consider the ratification or adhesion to the Optional Protocol to the International Covenant on Economic, Social and Cultural Rights", - "values": [ - "3 - Considering action" - ] - }, - { - "text": "Consider ratifying the Convention against Torture, signed in 2011", - "values": [ - "3 - Considering action" - ] - }, - { - "text": "Take additional serious measures to eliminate race enmity on the ground, which leads to hate crimes", - "values": [ - "4 - General action" - ] - }, - { - "text": "Consider the abolition of the death penalty in its legal system", - "values": [ - "3 - Considering action" - ] - }, - { - "text": "Amend the Freedom of Information Act so that it is in compliance with regional and international standards", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Further effective action by public authorities to protect the lesbian, gay, bisexual and transgender community from discrimination", - "values": [ - "4 - General action" - ] - }, - { - "text": "Review the Family Code and the law on nationality, in particular to ensure gender equality in the area of divorce and the acquisition of nationality by affiliation", - "values": [ - "3 - Considering action" - ] - }, - { - "text": "Review the national law adopted in June 2008 re-establishing the death penalty for the crimes consisted in making armed robbery, terrorism and hijacking", - "values": [ - "3 - Considering action" - ] - }, - { - "text": "Actively protect gender equality and women's rights and ensure inter alia that women and girls have effective access to justice, including through the provision of legal aid", - "values": [ - "4 - General action" - ] - }, - { - "text": "Further incorporate the International Convention on the Elimination of All Forms of Racial Discrimination into domestic law", - "values": [ - "4 - General action" - ] - }, - { - "text": "Strengthen existing measures to protect the rights of children and girl child from all forms of abuse and exploitations and also adopt necessary guidelines and procedures to fully enforce the Juvenile Justice Act", - "values": [ - "4 - General action" - ] - }, - { - "text": "Reinforce the measures aimed at combating domestic violence, the large number of women's deaths caused by such violence, and the impunity granted to perpetrators of trafficking in women and girls ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Encouraged to bring human rights into the curriculum by, among others, training teachers", - "values": [ - "4 - General action" - ] - }, - { - "text": "Fully implement the Chittagong Hill Tracts Peace Accord ", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Intensify efforts to improve the situation of students with an immigrant background in order to increase enrolment and to avoid drop-outs", - "values": [ - "4 - General action" - ] - }, - { - "text": "Step up its fight against gender-based discrimination and violence, uproot its social acceptability and increase efforts for the protection of its victims and redress for violations of their rights, as well as efforts on accountability of perpetrators", - "values": [ - "4 - General action" - ] - }, - { - "text": "Give priority to bringing conditions and treatment of detainees in Irish prisons into line with international human rights standards, including through implementing outstanding recommendations from international human rights bodies", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Cooperate with the Working Group on Enforced or Involuntary Disappearances", - "values": [ - "4 - General action" - ] - }, - { - "text": "Increase efforts in the process of establishing peace and building a strong nation State, and enter into a true commitment to fulfilling national and international human rights obligations ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Ratify the third Optional Protocol to the Convention on the Rights of the Child on a communications procedure", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Thoroughly and comprehensively review its legislation regarding the granting of asylum and migration in order to align it with its international obligations and standards", - "values": [ - "3 - Considering action" - ] - }, - { - "text": "Take all the necessary steps to ensure gender equality and equity for women in all spheres", - "values": [ - "4 - General action" - ] - }, - { - "text": "Further enhance national policies to promote the rights of women and children", - "values": [ - "4 - General action" - ] - }, - { - "text": "Parties involved in the armed conflict, respect civilians and the rules of international humanitarian law, and human rights", - "values": [ - "4 - General action" - ] - }, - { - "text": "Continue its efforts to end the practice of female genital mutilation in line with recommendations by the Committee on the Rights of the Child ", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Further adopt policies and measures for the advancement of women and against their discrimination, with a view to a reduction in female unemployment and the elimination of wage differentials ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Take legal measures to prohibit all forms of physical and mental violence against children in all settings and to arrange an adequate juvenile justice system", - "values": [ - "4 - General action" - ] - }, - { - "text": "Ensure respect for human rights while combating terrorism by ensuring the right to a fair trial and due process and freedom of expression", - "values": [ - "4 - General action" - ] - }, - { - "text": "Grant the same importance to and treat equally civil, political, economic, social and cultural rights, in its legislation at all levels", - "values": [ - "4 - General action" - ] - }, - { - "text": "Undertake the necessary measures to advance in the eradication of child labour, by applying the 2008 law to protect children, which prohibits child labour ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Take all necessary measures towards ratifying the Rome Statute of the International Criminal Court", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Ensure that the rights of the child are fully respected in accordance with the Convention on the Rights of the Child, in particular its Article 20 when deciding on appointment of a guardian or trustee", - "values": [ - "4 - General action" - ] - }, - { - "text": "Continue its efforts to enhance its domestic framework on the protection of the rights of women and further encourage women to participate actively in the economy and public life ", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Eliminate the gender pay gap across all groups and ethnicities using demonstrated effective mechanisms, including intensive monitoring processes and legislative levers ", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Repeal the provisions of the Personal Status Code which prohibit the children of women who have remarried from living with them", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Finalize and take necessary steps to access to the Convention on the Rights of Persons with Disabilities ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Strengthen efforts to promote and protect the human rights of women in the North of Mali", - "values": [ - "4 - General action" - ] - }, - { - "text": "End the overcrowding of prisons, inter alia by developing alternative forms of punishment. Pursue the implementation of the prison modernization programme in order to improve prison conditions in a manner compliant with international human rights standards", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Take additional measures to ensure non-discrimination, in particular against women", - "values": [ - "4 - General action" - ] - }, - { - "text": "Fiji is committed to strengthening existing mechanisms that is targeted towards safeguarding the rights of all Fijians.", - "values": [ - "4 - General action" - ] - }, - { - "text": "Amend the Nationality Code to eliminate the possibility that the withdrawal of the Omani nationality would lead to cases of statelessness", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Adopt a national plan of action on the prevention and protection from all forms of violence, including domestic violence", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Continue with its efforts through the Justice Reform Support Programme to strengthen institutions in the field of human rights ", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Put an end to the measures that exclude young pregnant girls from the educational system", - "values": [ - "4 - General action" - ] - }, - { - "text": "Ensure equality, under the law and in practice, of women, and amend all discriminatory legal provisions concerning marriage - including polygamy -, male guardianship, child custody, divorce and inheritance, as recommended by the Committee on the Elimination of Discrimination against Women and the Committee on the Rights of the Child ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Continue its policy of judicial and penitentiary legislative reform notably in order to strengthen its capacity in the administration of justice and to increase transparency and access to justice for all Ivorians, without discrimination based on resources ", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Encourage the ratification of CPED", - "values": [ - "4 - General action" - ] - }, - { - "text": "Repeal legislation criminalizing consensual same-sex relations between adults", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Adopt legislation to prohibit all forms of corporal punishment of children in all settings, and explicitly repeal the right to use force for "prevention or punishment of the minor's misconduct" and for the maintenance of "reasonable discipline" in the Criminal Code", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Ratify the International Covenant on Civil and Political Rights and its Second Optional Protocol, the International Covenant on Economic, Social and Cultural Rights and its Optional Protocol, as well as the Convention against Torture", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Accede to the Rome Statute of the International Criminal Court and implement the legislation that regulates it", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Cease all discrimination against members of religious and ethnic minorities, including Baha'is, Dervishes, Christians, Ahwazi Arabs, Balochs and Kurds, and ensure respect for freedom of religion", - "values": [ - "4 - General action" - ] - }, - { - "text": "Contribute to the social integration of the rural populations by actively engaging them in all spheres of activity", - "values": [ - "4 - General action" - ] - }, - { - "text": "Accelerate the process undertaken to align its legislation with the new Constitution", - "values": [ - "4 - General action" - ] - }, - { - "text": "Revise legislative provisions that are discriminatory on the basis of sex, religion, political opinion or sexual orientation", - "values": [ - "4 - General action" - ] - }, - { - "text": "Make additional efforts to improve the conditions of its prisons and detention centres toward elimination of overcrowding, improved sanitary conditions, and a strengthened system for medical care", - "values": [ - "4 - General action" - ] - }, - { - "text": "Step up efforts aimed at combating trafficking in human beings", - "values": [ - "4 - General action" - ] - }, - { - "text": "Continue its efforts in order to increase participation of women in public spheres", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Consider the ratification of the OP-CAT", - "values": [ - "3 - Considering action" - ] - }, - { - "text": "Take all the necessary measures to eliminate violence against women, also by ensuring that perpetrators of such violence are prosecuted and punished, as well as by abolishing the stereotypical attitudes and patriarchal patterns of behaviour that undermine women's human rights ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Consider ratifying the Rome Statute of the International Criminal Court ", - "values": [ - "3 - Considering action" - ] - }, - { - "text": "Encourage young women to choose non-traditional fields of study and professions", - "values": [ - "4 - General action" - ] - }, - { - "text": "Take all the necessary measures at federal, state and local levels to prevent and eliminate all harmful practices against children", - "values": [ - "4 - General action" - ] - }, - { - "text": "Elaborate a National Plan of Action against racism and xenophobia ", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "With the support and cooperation of the international community, continue to fight poverty.", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Repeal its current legislation that criminalizes the termination of pregnancies in all circumstances, including in cases of rape, incest and situations where the life of the mother is at risk", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Share its experiences in relation to the achievement of the development goals set out in the Millennium Declaration ", - "values": [ - "1 - Minimal action" - ] - }, - { - "text": "Fully align national legislation with the Rome Statute of the International Criminal Court and accede to the Agreement on the Privileges and Immunities of the International Criminal Court", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Fully implement the Sexual Offences Amendment Act 2013", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Actively develop education, especially basic education, and provide greater support to schools in rural areas", - "values": [ - "4 - General action" - ] - }, - { - "text": "Step up information on sexual and reproductive health, including modern contraceptive methods, in particular for women living in rural areas ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Accelerate its efforts to effectively set up a national human rights institution in line with the Paris Principles ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Strengthen measures for the respect of the rights of the child and protect children against sexual exploitation and illegal trafficking ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Continue to provide funds for the functioning of the National Independent Human Rights Commission", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Further promote the rights of women, children and indigenous peoples", - "values": [ - "4 - General action" - ] - }, - { - "text": "Establish an independent national human rights commission as the best means to respond to the people's expectations to enjoy the rule of law ", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Continue to protect vulnerable groups, particularly children and women", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Strengthen the authorities of the Assembly of the Peoples of Kazakhstan and to ensure that they are exercised in accordance with the purposes for which the Assembly was created", - "values": [ - "4 - General action" - ] - }, - { - "text": "Continue and enhance existing measures to protect women and children from violence, such as the training of Honduran police and the development of the dedicated Gender Unit within the police system", - "values": [ - "4 - General action" - ] - }, - { - "text": "Ensure that civil society representatives are accorded full and active participation in follow-up activities to the universal periodic review", - "values": [ - "4 - General action" - ] - }, - { - "text": "Strengthen its cooperation with civil society and undertake a review of its involvement in the provision of core social services for children", - "values": [ - "4 - General action" - ] - }, - { - "text": "Improve access to health services for socially vulnerable persons", - "values": [ - "4 - General action" - ] - }, - { - "text": "Continue to make progress in the campaign to achieve universal basic education, including through non-formal education, with the support and cooperation of the international community.", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Continue with efforts to overcome obstacles faced by the Yenish, Manush, Sinti and Roma in accessing education and preserving their language and lifestyle", - "values": [ - "4 - General action" - ] - }, - { - "text": "Implement strategies aimed at tackling hate speech and xenophobia in all its forms", - "values": [ - "4 - General action" - ] - }, - { - "text": "Retain the moratorium on the death penalty in all circumstances, in particular for juvenile offenders, and work towards the de jure abolition of capital punishment", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Bring the legal provision on freedom of association and assembly fully into line with international human rights standards and ensure that non-governmental human rights organizations can operate legally in Algerian society", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Immediately return civilian prosecutions to civilian courts and rescind Orders 3/2558 and 13/2559 of the National Council for Peace and Order ", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Take measures to prevent child, early and forced marriages, including through educational and advocacy campaigns to enforce existing legislation", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Consider the review of the land laws in order to address the immediate needs of internally displaced persons", - "values": [ - "4 - General action" - ] - }, - { - "text": "Expedite the establishment of its national preventive mechanism, in accordance with its obligations under OPCAT", - "values": [ - "4 - General action" - ] - }, - { - "text": "Implement without delay alternative measures to deprivation of liberty in law and in practice, ensuring that detention is only applied as a last resort, especially to accompanied, unaccompanied and separated children", - "values": [ - "4 - General action" - ] - }, - { - "text": "Ratify the Optional Protocol to the Convention on the Rights on the Child on the Sale of Children, Child Prostitution and Child Pornography.", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Continue paving the road to eradicate stereotypes that favour discrimination against women in the media", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Take all necessary measures to avoid the bombing of medical units, respect the principle of medical neutrality and grant special protection to medical units as allowed by international law", - "values": [ - "4 - General action" - ] - }, - { - "text": "Establish a formal moratorium on the death penalty with a view to ratifying the Second Optional Protocol to the ICCPR", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Strengthen the work on aligning the national legislation and legal practice with the international obligations of the Democratic People's Republic of Korea on the protection of human rights", - "values": [ - "4 - General action" - ] - }, - { - "text": "Engage the civil society in the follow-up process to the universal periodic review ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Strengthen the actions which ensure the effective implementation of the legislation against discrimination, especially that affecting women immigrants and women members of minority groups ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Continue its efforts with regard to the advancement of women's rights, reduction in child mortality and illiteracy rates, and the reintegration of children into their communities ", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Intensify efforts to integrate persons with special needs in schools", - "values": [ - "4 - General action" - ] - }, - { - "text": "Undertake more effective measures to address the problems of sexual abuse and violence against women and girls, including through strengthening of law enforcement and the judicial system and intensive media and education programmes aimed at increasing public awareness and sensitivity on the rights of women and girls", - "values": [ - "4 - General action" - ] - }, - { - "text": "Continue considering the establishment of a national human rights commission in compliance with the Paris Principles", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Continue to improve its education system and ensure equitable access to quality education for its people", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Enact anti-discrimination legislation to protect human rights and to ensure equal treatment of people living with HIV and groups vulnerable to HIV, consistent with United Nations International Guidelines on HIV/AIDS and Human Rights", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Legal procedures have been instituted with a view to enacting a new law on private sector employment to replace the current legislation and to introduce a statutory minimum wage, which will be subject to regular review, and also to restructure the labour market in order to balance the freedom to change jobs with the protection of employers' interests. ", - "values": [ - "1 - Minimal action" - ] - }, - { - "text": "Take action to secure that the enjoyment of human rights extends to the Internet, as pronounced by the Human Rights Committee and relevant United Nations resolutions", - "values": [ - "4 - General action" - ] - }, - { - "text": "Step up measures for the protection of the rights of women and girls and take steps to establish and bolster the family regime and strengthen its legal arsenal related to family aspects ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Provide the Office of the Human Rights Commissioner with all the support necessary for it to exercise effectively its mandate", - "values": [ - "4 - General action" - ] - }, - { - "text": "Continue taking measures to improve its population's access to health services ", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Become a party to the ICESCR ", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Ratify the Framework Convention for the Protection of National Minorities, signed in 2001, following on Council of Europe resolution 1301", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Strictly apply all legal and disciplinary means to sanction corruption, conflict of interest and organized crime, and accelerate the implementation of the action plan to implement the National Anti-Corruption Strategy", - "values": [ - "4 - General action" - ] - }, - { - "text": "Adopt a national strategy on sexual and reproductive health and rights ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Ensure full alignment of its national legislation with all obligations under the Rome Statute of the International Criminal Court ", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Extend a standing invitation for all mandate holders", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Abolish the death penalty for all crimes and accede to the Second Optional Protocol to the ICCPR", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Conclude as soon as possible the ratification of CRPD as well as OPCRC-AC", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Continue supporting human rights education at all level of the education system through the appropriate measures and content ", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Further educate and train the appropriate professional groups to raise awareness among the vulnerable groups and establish cooperation with additional institutions and organizations, namely as regards worker exploitation", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Adopt additional measures to improve prison conditions, eliminating overcrowding and raising the standards of quality within prisons", - "values": [ - "4 - General action" - ] - }, - { - "text": "With the support of the international community, continue to enhance efforts to combat violence against women ", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Take additional measures to protect victims of domestic violence through effective implementation of its legislation", - "values": [ - "4 - General action" - ] - }, - { - "text": "Continue efforts to eradicate the practice of female genital mutilation by, for example, taking into account the lessons learned by other countries in the region that deal with this practice", - "values": [ - "3 - Considering action" - ] - }, - { - "text": "Consider ratifying ILO Convention No. 169 concerning Indigenous and Tribal Peoples in independent Countries and applying international standards with respect to the rights of indigenous peoples.", - "values": [ - "3 - Considering action" - ] - }, - { - "text": "Consider the revision of the Investigatory Powers Act 2016 with a view to protecting the right to privacy, including by prohibiting mass surveillance activities and the collection of communications data without warrants", - "values": [ - "3 - Considering action" - ] - }, - { - "text": "Amend its legislation to ensure that Palestinians in Lebanon have the right to inherit and register property, including the right to own land, as previously recommended", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Ratify the International Covenant on Civil and Political Rights, the International Covenant on Economic, Social and Cultural Rights, and the 1961 Convention on the Reduction of Statelessness", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Continue efforts to facilitate access to education for indigenous communities ", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Strengthen policy coordination in the area of food and nutrition security and access to adequate, clean and safe drinking water especially for the population living below poverty line", - "values": [ - "4 - General action" - ] - }, - { - "text": "Seek the support of the international community on capacity building and technical assistance in promotion and protection of human rights ", - "values": [ - "1 - Minimal action" - ] - }, - { - "text": "Put an end to the legal prohibition of same-sex sexual acts or practices between consenting adults, release individuals arrested on the basis of this provision ", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "That Public Orders Management Draft Bill be brought in line with Uganda's international human rights obligations ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Take the necessary measures to ensure effective implementation of the Scheduled Castes and Scheduled Tribes Act, notably through the training of State officials", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Establish a special judicial mechanism within its justice system to investigate allegations of sexual violence by members of all armed groups, including the Chadian army.", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Ratify the Protocol to Prevent, Suppress and Punish Trafficking in Persons, particularly Women and Children ", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Establish a de facto moratorium on the death penalty as a first step towards its abolition and ratify the Second Optional Protocol to the International Covenant on Civil and Political Rights, aiming at the abolition of the death penalty", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Launch campaigns of sensitization for families and communities with the aim of creating areas of protection for the protection of the rights of children with greater efficiency", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Adopt immediate measures to abolish corporal punishment as a disciplinary measure, and intensify efforts to educate the population on the negative effects of corporal punishment on the development of the child", - "values": [ - "4 - General action" - ] - }, - { - "text": "Implement the June 2014 recommendations of the Special Rapporteur on the rights to freedom of peaceful assembly and of association to allow for peaceful political opposition, and for civil society and journalists to register and participate in civic life freely", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Consider enhancing cooperation with countries of origin of migrant workers including on refining the process aimed at protecting such workers from exploitation, with a view to better managing the broad range of challenges in dealing with migrant workers ", - "values": [ - "3 - Considering action" - ] - }, - { - "text": "Develop additional programmes, including a national action plan for children, to enhance the protection and promotion of the rights of women and children ", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Carry out work on the promotion of racial, national and religious tolerance, especially among the youth", - "values": [ - "4 - General action" - ] - }, - { - "text": "Continue efforts to enhance legislations and measures to further address the situation of religious minorities, including blasphemy laws, force conversion and discrimination against non-Muslim minorities", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Continue its policies in the field of international cooperation in order to assist the efforts made by other countries to fulfil the right to development", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Take the necessary measures to address the situation of continuing discrimination against migrants, particularly in employment, health care and housing, and the reported increase in hostility towards refugees and asylum seekers, as well as the opposition to the opening of new reception centres, in line with its international obligations", - "values": [ - "4 - General action" - ] - }, - { - "text": "Avoid the practice of the school segregation of Roma children, for example with primary school teachers, who are speaking their mother tongue, with the objective of achieving an effective learning of the Bulgarian language and other subjects taught", - "values": [ - "4 - General action" - ] - }, - { - "text": "Continue its efforts to combat racial discrimination, including through support to institutions charged with promotion and protection of human rights and fighting racial discrimination ", - "values": [ - "4 - General action" - ] - }, - { - "text": "We are committed to equality of opportunity in education and to helping students succeed in school, careers, and life. To help increase educational excellence, support innovation and improvement, and address continuing challenges, ED has dedicated well over $1 billion to early childhood education, and also has launched a number of other programs and initiatives, including the Excellent Educators for All Initiative in July 2014, which directs states to submit plans in 2015 to help ensure that poor and minority children have equal access to experienced, qualified teachers. Also in 2014, we issued guidance to states, school districts, and schools to help ensure that students have equal access to educational resources, and launched the Performance Partnership Pilots program to test innovative, outcome-focused strategies for achieving significant improvements in educational, employment, and other key outcomes for disconnected youth.", - "values": [ - "4 - General action" - ] - }, - { - "text": "Provide more opportunities to women to be represented in high-level government posts", - "values": [ - "4 - General action" - ] - }, - { - "text": "Continue the work to achieve equal representation for men and women not only in the National Assembly, but also at all the levels of State powers.", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Continue adopting laws and policies to promote and protect the rights of women and their role in society, particularly in education health and employment", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Celebrate 25 March every year as a National Day of Reconciliation in order to enhance reconciliation in the society ", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Establishing a comprehensive system for recording and monitoring developments in the area of prevention of xenophobia and discrimination, including hate crimes", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Consider intensifying its efforts to eliminate discrimination against migrants", - "values": [ - "3 - Considering action" - ] - }, - { - "text": "Ratify human rights instruments, particularly CRPD, OP-CAT and the Protocol to Prevent, Suppress and Punish Trafficking in Persons, Especially Women and Children", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Promote understanding, tolerance and friendship among the peoples of the world along the ideas of peaceful co-existence and genuine cooperation and partnership", - "values": [ - "4 - General action" - ] - }, - { - "text": "Repeal all discriminatory provisions in relation to children born out of wedlock", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Take all necessary steps to ratify the Rome Statute of the International Criminal Court ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Enhance provision of human rights education and training at appropriate levels of the education system and relevant public officials ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Increase the legal age of criminal responsibility from 8 years ", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Guarantee freedom of expression, particularly the possibility to express criticism and opinion regarding acts of the government ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Successfully implement its plan of action for the period 2008-2012, which was adopted by the Government with a view to the implementation of the Convention on the Rights of Persons with Disabilities ", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Take into account the opinions and recommendations of the European Commission for Democracy through Law when implementing the law on religious organizations.", - "values": [ - "4 - General action" - ] - }, - { - "text": "End all violations of Muslim and Christian holy sites", - "values": [ - "4 - General action" - ] - }, - { - "text": "Continue implementing the programmes and measures to improve the enjoyment of the right to education and the right to health of all its population", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Withdraw the reservation to article 6, paragraph 5 of the International Covenant of Civil and Political Rights and consider further to abolish the death penalty in all cases ", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Fully implement the National Strategy for the Integration of the Roma to avoid discrimination against them and to increase their opportunity for education and employment", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Develop comprehensive strategies and public awareness campaigns to address trafficking in persons, in particular children for the purpose of forced begging in neighbouring countries ", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Adopt additional measures for the protection of Roma. Provide Roma with conditions to receive full education and to have access to labour market and health services. Identify and suppress cases of discrimination against Roma, and their forced displacement and segregation. Make efforts to decrease the high level of intolerance towards Roma in the Romanian society", - "values": [ - "4 - General action" - ] - }, - { - "text": "Develop projects for the transfer of technology with the Ethiopian diaspora, with the aim of supporting the establishment of productive projects in the communities from which they originate ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Continue to enact national legislations to implement international human rights instruments to which it is a party", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Consider the request of the Special Rapporteur on the right to education favourably and allow the Special Rapporteur's visit.", - "values": [ - "3 - Considering action" - ] - }, - { - "text": "Investigate fully the reported extrajudicial killings by the Police and bring any persons found guilty to justice", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Step up efforts to consolidate the rule of law and national human rights protection institutions ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Intensify efforts to ensure at least 30 per cent representation of women in central and local state bodies, including at the decision-making level, in line with presidential decree No. 136 of 20 March 2006 ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Continue their efforts to establish an independent national institution for human rights, in accordance with the Paris Principles ", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Commit to abide by international humanitarian law and international law", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Sign and ratify the Second Optional Protocol to the International Covenant on Civil and Political Rights, aiming at the abolition of the death penalty, as well as eliminate definitively the death penalty in all cases", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Speed up ratification of the ICCPR and of the Convention against Torture.", - "values": [ - "4 - General action" - ] - }, - { - "text": "Examine the incompatibilities of national legislation that prevent its adherence to the ILO and ratify its Conventions, in particular ILO Conventions No. 111 and No. 87 ", - "values": [ - "3 - Considering action" - ] - }, - { - "text": "Continue efforts of the Lebanese Government to improve the functioning of the education system, including by advancing the enrolment and by protecting street children from the worst forms of child labour", - "values": [ - "4 - General action" - ] - }, - { - "text": "Continue and promote the policy of women protection and empowerment through, inter alia, applying harsher punishments to perpetrators of the crime of femicide", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Guarantee for all undocumented migrants access to the same healthcare system, on the same basis, as persons with residence permits ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Expedite judicial processes so that cases stay within the statute of limitations, and improve conditions in penitentiary facilities ", - "values": [ - "4 - General action" - ] - }, - { - "text": "To further continue the efforts to punish those responsible for the breaking of the retaining walls in Jacarei and Mariana, and to ensure that the victims of this event are guaranteed their right to access to justice, and their right to fair compensation, remediation and reparations for the damage caused. We recommend that Brazil share these acquired experiences through its constructive and substantive participation in the Intergovernmental Working Group established through resolution 26/9 of the Human Rights Council", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Continue to achieve economic growth aimed at raising the standard of living of the population and improving the social, health and educational situation of poor people", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Develop a gender and culturally differentiated public policy for the protection of human rights defenders, and ensure adequate political support and resources for its implementation", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Abolish by law the death penalty and ratify the Second Optional Protocol to the International Covenant on Civil and Political Rights, aiming at the abolition of the death penalty", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Ensure the full participation of women in the review of customary laws and practices, and discourage the persistence of practices detrimental to women's rights.", - "values": [ - "4 - General action" - ] - }, - { - "text": "Protect the free exercise of the media by guaranteeing freedom of expression and putting an end to repressive measures against journalists", - "values": [ - "4 - General action" - ] - }, - { - "text": "Continue its leading international efforts to tackle global warming, including by reminding developed countries and other major emitting States of their obligation to help promote and protect human rights by reducing greenhouse gas emissions to safe levels ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Set up a mechanism or a national authority for the prevention of torture ", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Ensure that its domestic legislation is in full compliance with the Convention on the Rights of the Child.", - "values": [ - "4 - General action" - ] - }, - { - "text": "Continue to address reinstating of the rule of law through a fair and transparent electoral process and governance reform, reducing poverty which has caused worsening security, establishing basic infrastructure and creating jobs, with the support of the United Nations and the international community.", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "That substantial advances be sought on the realization of the rights of women, particularly towards increasing their share in decision-making positions and in politics in general ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Overcome prejudices against women and girls, and strive to eliminate stereotypes and harmful practices", - "values": [ - "4 - General action" - ] - }, - { - "text": "Repeal provisions for mandatory death penalty ", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Reinforce the implementation of the Law on the Elimination of Violence against Women", - "values": [ - "4 - General action" - ] - }, - { - "text": "Ratify international human rights treaties: the Optional Protocol to the Convention against Torture and Other Cruel, Inhuman or Degrading Treatment or Punishment", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Bring ODA up to the internationally committed 0.7 per cent of GNI especially to support developing countries in the areas of poverty reduction, gender equality, children, persons with disabilities and climate challenges ", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Invite the Special Rapporteur on freedom of religion or belief to visit the country and fully cooperate with her ", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Continue to encourage women to run for elections", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Continue the prioritization of initiatives to combat poverty and ensure programmes aimed at poverty reduction are adequately funded ", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Continue its existing collaboration with international institutions in the sphere of human rights", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Continue to improve measures to strengthen the rights of foreign migrant workers, including putting in place the necessary domestic legislation and access to health care and legal aid", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Implement measures to decrease the wage gap between men and women ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Encouraged Sri Lanka to further empower the various institutional and human rights infrastructures, including by strengthening the structural and operational independence of the NHRC.", - "values": [ - "4 - General action" - ] - }, - { - "text": "Thoroughly investigate complaints filed by journalists and to promote good relations with and among media institutions", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Build upon existing justice and security sector reforms ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Increase the effectiveness of the precautionary measures to protect human rights defenders, including through adopting effective and comprehensive prevention strategies, at central and local levels, to prevent attacks and protect the life and physical integrity of human rights defenders and journalists, and ensure that such programs are backed by a strong political commitment and provided with adequate resources", - "values": [ - "4 - General action" - ] - }, - { - "text": "Increase its efforts to prevent unacceptable forms of child labour ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Explicitly prohibit all forms of corporal punishment in the upbringing and education of children", - "values": [ - "4 - General action" - ] - }, - { - "text": "Ratify the OP-CAT and the OP-CEDAW", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Implement measures to support the full participation of indigenous peoples in democratic institutions and economic development ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Undertake further measures to improve the de facto position of women by implementing international commitments from the Committee on the Elimination of Discrimination against Women and the Beijing Platform for Action, through concrete and effective policies and programmes", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Monitoring mechanisms of Macao Special Administrative Region (MSAR) government policies in the field of human rights shall be strengthened, along with other means to improve "law in action" and to assess its effectiveness.", - "values": [ - "4 - General action" - ] - }, - { - "text": "Abolish the death penalty in all states of the Union", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Continue with the campaign to eliminate all forms of discrimination, particularly from school age and through human rights education", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Immediately respect international standards of law in the treatment of prisoners, including by providing prisoners with adequate food, water and medical assistance and ending overcrowding, allow independent monitors access to all known and secret Eritrean detention facilities, notify family members of the whereabouts of detainees, and restore visiting rights and access to legal representation ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Continue efforts to integrate Roma children into the education system ", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Take the necessary measures to eliminate child labour, especially forced begging", - "values": [ - "4 - General action" - ] - }, - { - "text": "Take further measures to reduce the inequality between sexes, sensitize the population in this regard and ensure that these measures are effectively implemented", - "values": [ - "4 - General action" - ] - }, - { - "text": "Accelerate efforts for establishment of Truth and Reconciliation Commission", - "values": [ - "4 - General action" - ] - }, - { - "text": "Integrate child soldiers in the society and the education system", - "values": [ - "4 - General action" - ] - }, - { - "text": "Fully abolish the death penalty, which has been under a de facto moratorium for 20 years", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Enact legislation criminalizing defamation of religious symbols under the pretext of freedom of expression", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Provide for freedom of religion in its national legislation so that the rights of religious minorities can be ensured ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Continue its efforts to protect and promote human rights in compliance with international standards ", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Enhance its education plan to improve women's attendance rate in secondary schools and provide quality secondary education in rural areas.", - "values": [ - "4 - General action" - ] - }, - { - "text": "Continue to make efforts to expand access to education, especially for girls", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Ensure that all complaints of domestic violence are seriously investigated, with the protection of victims and the prosecution of the perpetrators, in accordance with existing legislation, in particular through raising the awareness of police forces on such issues ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Introduce and implement a comprehensive legal framework that protects women and girls against all forms of gender-based violence", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Commute all the death sentences and establish a moratorium on executions", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Ratify the Convention against Torture and Other Cruel, Inhuman or Degrading Treatment or Punishment and ensure that the instrument of ratification is consistent with the Convention", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Explore the possibility of consolidating existing Ombudsman institutions and mechanisms into a single national human rights institution in line with the Paris Principles, through accreditation by the International Coordinating Committee of National Human Rights Institutions", - "values": [ - "3 - Considering action" - ] - }, - { - "text": "Continue ongoing efforts, both nationally and in its bilateral dialogue with Serbia, to ensure the return of refugees and displaced Croatians of Serbian origin to their homes and the recovery of all their rights, especially with regard to their property, pensions and social rights, thereby ensuring a comprehensive solution to a problem that affects both Croatians of Serbian origin and Serbs of Croatian origin", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Take steps to ensure an equitable and truly representative appointment of members of the Afghanistan Independent Human Rights Commission and to protect the Commission from undue political interference.", - "values": [ - "4 - General action" - ] - }, - { - "text": "Continue to promote free-of-charge school enrolment ", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Move forward in the establishment of a national institution that contributes to the full enjoyment of all rights without discrimination, in accordance with the Paris Principles ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Continue its efforts in the fight against corruption", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Malaysia remains committed to providing quality and affordable education to its people. The Government continues to allocate a significant portion of its annual budget to education and education-related activities.", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Study the possibility to decriminalize relationships between consenting adults of the same sex ", - "values": [ - "3 - Considering action" - ] - }, - { - "text": "Take measures to guarantee full access to education and health care for the most vulnerable persons, including refugees and asylum seekers", - "values": [ - "4 - General action" - ] - }, - { - "text": "Foster policies and strategies to guarantee the rights of persons with disabilities", - "values": [ - "4 - General action" - ] - }, - { - "text": "Increase its efforts in protecting the human rights of the poor and the disadvantaged, particularly women and children", - "values": [ - "4 - General action" - ] - }, - { - "text": "Make greater efforts regarding prisons systems in a number of states of the federation in order to be transformed into rehabilitation centres.", - "values": [ - "4 - General action" - ] - }, - { - "text": "Consider the possibility of eliminating the required parents' consent for HIV testing for minors under the age of 16.", - "values": [ - "3 - Considering action" - ] - }, - { - "text": "Adopt a human-rights-based approach when designing and implementing the reforms towards the democratization of the country", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Continue its reparation programmes in implementation of the recommendations of the National Truth and Reconciliation Commission", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Strengthen its international cooperation for the sustainable development of the countries of the South", - "values": [ - "4 - General action" - ] - }, - { - "text": "Ensure access to justice and full reparation for victims and survivors ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Ask the major industrialized economies to help promote and protect human rights in the country, both by reducing greenhouse gas emissions to - safe - levels that are consistent with the full enjoyment of human rights, and by funding adaptation measures to help the country cope with those changes that are already taking place ", - "values": [ - "1 - Minimal action" - ] - }, - { - "text": "Continue to strengthen efforts to eliminate all types of violence against children including through the criminalization of corporal punishment", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Adopt measures aimed at establishing the necessary legal and administrative institutions to guarantee the rights of migrants and asylum seekers, particularly the right to due process and respect for the principle of non-refoulement ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Continue with strategies and programmes to put an end to violence against vulnerable groups, particularly women and children, ensuring child protection both online and offline", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Take action to bring other remaining armed groups, who are not among 8 major ethnic groups that recently signed the National Ceasefire Agreement, into an inclusive peace process", - "values": [ - "4 - General action" - ] - }, - { - "text": "Continue the implementation of measures aimed at the promotion of the rights of children and senior citizens ", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Continue its efforts aimed at combating all forms of discrimination and intolerance, in particular, racism and xenophobia", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Ratify the Second Optional Protocol to ICCPR, aiming at the abolition of the death penalty, and adopt all the required internal legislative measures to proceed as soon as possible with the ratification of the Rome Statute of the ICC", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Introduce and implement a law prohibiting all child, early and forced marriages, including the introduction of a legal minimum age of majority for marriage, and other measures to safeguard and enforce women's rights relating to marriage, choices and free and full consent", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Continue to develop and implement strategies to counter the negative impacts of climate change in cooperation with and with assistance from the international community ", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Guarantee the establishment of a safe and enabling environment for the work of human rights defenders, specifically through the adoption of a law for the protection and recognition of human rights defenders", - "values": [ - "4 - General action" - ] - }, - { - "text": "Continue implementing measures aimed at improving the coverage and quality of education services, particularly in remote areas ", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Proceed with the process of ratification of international human rights instruments to which the country is not yet a party", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Amend its legislation, including the Public Order and Security Act, to enshrine the rights to freedom of peaceful assembly and of association and to freedom of expression ", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Intensify its efforts to establish a national human rights institution", - "values": [ - "4 - General action" - ] - }, - { - "text": "Further strengthen its efforts in implementing the National Action Plan to Combat Trafficking in Persons and related Offences, including Slavery of 2014-2019", - "values": [ - "4 - General action" - ] - }, - { - "text": "Promote necessary actions in order to guarantee the integration of persons with disabilities in the employment market, in line with the Convention on the rights of Persons with disabilities", - "values": [ - "4 - General action" - ] - }, - { - "text": "Devote more efforts to harmonizing gender equality for guaranteeing their equal rights and opportunities in both the legislative and executive branches ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Collaborate with United Nations institutions to develop the agricultural sector in order to meet the daily food needs of the population", - "values": [ - "1 - Minimal action" - ] - }, - { - "text": "Ensure that the relatives of victims of enforced disappearances, their representatives, and those who report enforced disappearances will not be subject to attacks and persecution", - "values": [ - "4 - General action" - ] - }, - { - "text": "Further strengthen mechanisms to detect and investigate cases of domestic violence, train law enforcement officials to deal with such cases and provide legal and medical support to victims", - "values": [ - "4 - General action" - ] - }, - { - "text": "Take all necessary steps to honour its commitments under the Abuja Declaration", - "values": [ - "4 - General action" - ] - }, - { - "text": "Ensure that independent, transparent, appropriate and effective investigations are carried out regarding the allegations and reports of human rights violations since June 2009 and, depending on the results thereof, bring to justice the perpetrators of those acts in processes that could be defined as fair trials according to international standards", - "values": [ - "4 - General action" - ] - }, - { - "text": "Ensure that no children are held in detention", - "values": [ - "4 - General action" - ] - }, - { - "text": "Endorse the recommendations made by the Committee on the Rights of the Child and the Human Rights Committee on the adoption of legislative measures to ensure compliance of national legislation with the principles and provisions of the Convention on the Rights of the Child.", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Engage to resolutely and impartially investigate - and if necessary prosecute - the authors of violations of all human rights, in particular the members of the security services, in order to guarantee a better combat against impunity ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Ensure every detainee has the right to regularly see visitors and has permanent access to legal counsel and effective complaint mechanisms", - "values": [ - "4 - General action" - ] - }, - { - "text": "Adopt measures against those responsible for the use of chemical weapons and hold them accountable", - "values": [ - "4 - General action" - ] - }, - { - "text": "Continue to promote its excellent education policy in order to eradicate school drop-out during mandatory basic education ", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Officially abolish the death penalty still contained in the Penal Code of 2010 and to accede to the Second Optional Protocol to the ICCPR", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Adopt the draft law on asylum and refugees, which is to ensure, inter alia, unhindered access to primary education for refugee children", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Provide the most recent national plan to fight violence against woman and girls, for the 2015-2019 period, with sufficient funds to ensure its effective implementation", - "values": [ - "4 - General action" - ] - }, - { - "text": "Take necessary measures to fight against discrimination against people from minority ethnic communities", - "values": [ - "4 - General action" - ] - }, - { - "text": "Ensure equal enjoyment of the right of freedom of religion or belief, both de jure and de facto ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Steady implementation of the National Action Plan for the Promotion and Protection of Human Rights as well as the National Plan of Action to implement the recommendations of the Lessons Learnt and Reconciliation Commission", - "values": [ - "4 - General action" - ] - }, - { - "text": "Submit overdue reports to United Nations treaty bodies", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Continue the normative progress made in the area of environment and the strengthening of related bodies", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Ratify the ICESCR and its Optional Protocol ", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Track down and arrest the key remaining fugitives accused of war crimes by the Tribunal", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Adopt a law that guarantees freedom of information", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Eliminate provisions criminalizing defamation ", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Ratify other human rights conventions to which Algeria is not yet a State party", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Adopt officially General Assembly resolution 62-149 on a moratorium on the death penalty and ratify the second optional protocol to ICCPR, as important steps towards abolishing capital punishment", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Continue its efforts aimed at improving detention conditions", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Reinforce its legal measures on National Strategy on HIV that was approved in 2012 by the government ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Undertake a transparent and fair process to determine the conditions and procedures of involuntary relocation ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Continue to cooperate with the United Nations human rights mechanisms within the framework of the implementation of ratified international instruments", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Consider the establishment of an independent national human rights institution in accordance with the Paris Principles", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Implement public awareness campaigns in regard to the absence of deterrent effects of the application of the death penalty and the progressive introduction of a moratorium aiming at the abolition of the death penalty and the ratification of the Second Optional Protocol to the International Covenant on Civil and Political Rights", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Abolish all forms of administrative detention, including Re-Education through Labour", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Take efficient measures to swiftly ameliorate the situation of Palestinian refugees including amending legislative provisions and policies that have a discriminatory effect on the Palestinian population", - "values": [ - "4 - General action" - ] - }, - { - "text": "Take effective measures to combat human trafficking, including the adoption of relevant laws ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Continue with its efforts in the field of economic, social and cultural rights, in order to increase the quality of life of its people, particularly the most excluded sectors of the population, for which it is particularly necessary to receive the support and technical assistance from the international community required by the country", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Ratify or accede, as appropriate, to the Rome Statute of the International Criminal Court, the International Convention for the Protection of All Persons from Enforced Disappearance, the Optional Protocol to the Convention against Torture and Other Cruel, Inhuman or Degrading Treatment of Punishment and the Second Optional Protocol to the International Covenant on Civil and Political Rights ", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Verify the impact of the amendments of the educational law relating to the mandate to "morally educate children in compliance with the values of the constitution" on the realization of human rights, in particular women's rights, rights of lesbian, gay, bisexual, transgender and intersex persons and freedom of expression", - "values": [ - "4 - General action" - ] - }, - { - "text": "Continue efforts and contributions at the international level aimed at strengthening international human rights mechanisms and, in particular, help to make those mechanisms work on the basis of non-politicization and dialogue based on respect and cooperation, which guarantees the realization of the interests of the international community", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Provide a full response about allegations of arbitrary detention and restrictions on press freedom.", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Consider ratifying the ICCPR and the ICESCR", - "values": [ - "3 - Considering action" - ] - }, - { - "text": "Withdraw its reservations to article 9 paragraph 2 of the Convention on the Elimination of All Forms of Discrimination against Women", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Provide members of the Samoa Police Service with training on the human rights of accused and detained persons, and ensure that provisions made for food, water and sanitation at detention facilities meet United Nations Standard Minimum Rules for the Treatment of Prisoners ", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Improve pre trial processing times and increase resources for penal reform", - "values": [ - "4 - General action" - ] - }, - { - "text": "Ratify without reservations the Optional Protocol to the CEDAW", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Eliminate all forms of discrimination against women, including by amending the Personal Status Code to grant equal inheritance rights to women and by repealing the circular from 1973 to allow women to marry non-Muslim spouses", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Take necessary measures to combat discriminatory practices against women and migrant workers in the labour market", - "values": [ - "4 - General action" - ] - }, - { - "text": "Strengthen efforts to combat violence against women", - "values": [ - "4 - General action" - ] - }, - { - "text": "Continue developing current projects aimed at reducing poverty", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Urgently adopt legislation criminalizing female genital mutilation, and train members of the police, prosecutors and judges on the strict application of laws and regulations to be adopted in this field", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Continue granting the necessary humanitarian assistance to migrants in the Libyan Arab Jamahiriya ", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Allocate more resources from the national budget and take additional measures to improve the situation in prisons and so as to ensure that the deteriorated penitentiary situation is no longer be a problem in the country ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Continue the process of enacting new laws that will ensure that the rights and freedoms granted under its amended constitution can be fully enjoyed by its people", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Continue its efforts to combat violations of women's rights, including through raising public awareness", - "values": [ - "4 - General action" - ] - }, - { - "text": "Continue efforts to eliminate discrimination against indigenous peoples", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Take necessary steps to implement the relevant plan of action adopted by the National Coordination Mechanism, as a part of its ongoing fight against trafficking in human beings ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Review criminal justice procedures in order to reduce the length of detention without trial by undertaking a comprehensive review of remand cases and giving priority to the establishment of new Halls of Justice before the date of the next review", - "values": [ - "3 - Considering action" - ] - }, - { - "text": "Reschedule the postponed visit of the Working Group on Arbitrary Detention to Nauru", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Repeal or amend articles 106 and 110 of the Criminal Code to avoid restrictions on freedom of expression", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Undertake further work to ensure that the law is adequate to prosecute cases involving domestic violence and that such laws are properly enforced through, for example, increased police capacity-building and the appointment of female officers", - "values": [ - "4 - General action" - ] - }, - { - "text": "Remove non-violent offenses from the categories subject to capital punishment ", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Take steps to improve the access of persons with disabilities to various services", - "values": [ - "4 - General action" - ] - }, - { - "text": "Improve access to education for children with disabilities", - "values": [ - "4 - General action" - ] - }, - { - "text": "Maintain the momentum given to positive social policies relating to health care ", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Take concrete measures to ensure that the guarantees of non-refoulement can be given to any person under the control of the Swedish authorities while considered a refugee by a third country, including for this purpose and if necessary, the adoption of legislative measures", - "values": [ - "4 - General action" - ] - }, - { - "text": "That the process of round-table discussions among law enforcement, elected officials and community members, aimed to stem profiling and excessive use of force by the police should be stepped up to cover as many cities as possible", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Adopt legislation to address sexual harassment, especially in the workplace", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Consider the structure and function of the national human rights commission in accordance with the Paris Principles.", - "values": [ - "3 - Considering action" - ] - }, - { - "text": "Bring the Law on freedom of conscience and religious organizations in compliance with international norms, promote religious tolerance and remove restrictions imposed on religious education, activities of religious organizations and religious dressing", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Adopt measures to increase gender parity in political and public spheres and improve the participation of women in decision-making and public policy development ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Combat social stigmatization, hate speech, discrimination and violence motivated by sexual orientation or gender identity", - "values": [ - "4 - General action" - ] - }, - { - "text": "Ensure that all allegations of ill-treatment are subject to an effective, independent and impartial investigation ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Take measures to prevent and eliminate racism, racial discrimination, xenophobia and others", - "values": [ - "4 - General action" - ] - }, - { - "text": "Take legislative measures to guarantee in the law universal access to primary and secondary schooling for all children without discrimination ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Continue efforts to enhance the welfare of migrant workers, including the domestic workers, and further strengthen the mechanism to prevent their possible exploitation", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Ensure that the Seychelles Media Commission is balanced and representative by appointing independent and impartial citizens to serve on the Commission ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Pursue efforts to combat structural racism and prosecute perpetrators of racist acts ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Continue work for improving the rights of the Roma community, in compliance with the national strategy for the inclusion of Roma and the Action Plan for the Decade of Roma Inclusion", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Ensure that all complaints on gender-based violence, regardless of perpetrators, be investigated and brought to justice ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Create a police force capable of ensuring the maintenance of law and order", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Take measures in order that the Constitution and other national legislation contain proper provisions that clearly establish the principle of equal treatment and non-discrimination on the grounds of race, colour, ethnic origin, nationality, language or religion", - "values": [ - "4 - General action" - ] - }, - { - "text": "Ban, at the federal and state levels, the use of racial profiling by police and immigration officers", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Pursue efforts to implement the third strategic framework to combat poverty and the national food security strategy", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Pursue efforts for the universalization of education for all school-aged children in order to fulfill the second Millennium Development Goal on the right to education.", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Enable Slovak National Centre for Human Rights to monitor the implementation of anti-discrimination legislation, initiate investigations and recommend remedies in individual cases involving discrimination in the enjoyment of the right to education.", - "values": [ - "4 - General action" - ] - }, - { - "text": "Continue its efforts to promote programmes for capacity building for law enforcement officers in the field of human rights ", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Make progress towards the abolition of capital punishment by adopting a de jure moratorium", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Take legislative and administrative measures to combat violence against boys and girls and to eliminate child labour", - "values": [ - "4 - General action" - ] - }, - { - "text": "Consider all possibilities and initiate a public debate with a view to adopt, as a first step, a de facto moratorium on the enforcement of the death penalty.", - "values": [ - "3 - Considering action" - ] - }, - { - "text": "Endorse a closer cooperation with national and international human rights institutions, and work for the full and effective participation of young people and youth-led organizations at all levels (from local to international) ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Ratify, as soon as possible, the International Covenant on Economic, Social and Cultural Rights ", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Comply with the legislation prohibiting the forced military recruitment of children ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Consider reviewing the News Media Law as well as the Printing and Publication Enterprise Law of 2014 in conformity with international human rights standards in order to enhance freedom of speech in the country", - "values": [ - "3 - Considering action" - ] - }, - { - "text": "Further abolish any discriminatory practices against women in accessing higher education, diversify academic disciplines for men and women, and take additional measures to encourage men and women to choose non- traditional career choices", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Ensure the implementation of all the provisions of the International Covenant on Economic, Social and Cultural Rights, within the national legal system", - "values": [ - "4 - General action" - ] - }, - { - "text": "Step up efforts to tackle the socioeconomic gap and discrimination on the basis of ethnic origin, race or language, especially with regard to education and employment", - "values": [ - "4 - General action" - ] - }, - { - "text": "Speed up the adoption of the national gender policy approved since 2011", - "values": [ - "4 - General action" - ] - }, - { - "text": "Continue its efforts to promote the rights of migrants ", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Commute without delay all death sentences to terms of imprisonment and ratify the Second Optional Protocol to ICCPR ", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Continue applying its socio-economic and development strategies and plans in the country ", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Take every possible action to speed up exhumation processes to enable the Committee on Missing Persons to continue its excellent work \n\n", - "values": [ - "4 - General action" - ] - }, - { - "text": "Continue its efforts to promote and support national human rights institutions ", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Amend the legal status of same-sex partnerships to ensure full equality in the eyes of the law", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "With regard to cooperation within human rights mechanisms: Fulfilment of the obligations under international treaties to which Viet Nam is a party, active participation in a number of United Nations human rights mechanisms, such as the Human Rights Council, the Third Committee of the United Nations General Assembly and the Economic and Social Council, continuance of dialogues on human rights with other countries and international organisations, consideration of inviting the Special Rapporteur on the Right to Food, the Independent Expert on the question of human rights and extreme poverty, the Special Rapporteur on the Right to Education and the Independent Expert on the Effects of foreign debt and other related international financial obligations of States on the full enjoyment of human rights, particularly economic, social and cultural rights to visit Viet Nam in the near future to have a better understanding of the country's situation and assist Viet Nam in better ensuring human rights in these areas,", - "values": [ - "4 - General action" - ] - }, - { - "text": "Continue its efforts in the promotion and protection of human rights by establishing a national human rights institution based on the Paris Principles", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Continue to consult stakeholders in its work to follow up the outcome of the universal periodic review.", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Continue to facilitate prison visits, including unannounced ones, by NGOs", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Ensure that all serious allegations of ill-treatment are investigated promptly through independent inquiries", - "values": [ - "4 - General action" - ] - }, - { - "text": "Orienting secondary and higher education towards vocational courses", - "values": [ - "4 - General action" - ] - }, - { - "text": "Adopt the necessary measures to eradicate Female Genital Mutilation and to develop programs of awareness and education on its harmful effects ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Strengthen its efforts to accede to international instruments to which Saint Lucia is not a party yet and strengthen its cooperation with the universal system of human rights in order to promote compliance with its obligations in this area, as previously recommended", - "values": [ - "4 - General action" - ] - }, - { - "text": "Strengthen its efforts to combat all forms of exploitation of children in line with the Optional Protocol to the Convention on the Rights of the Child on the sale of children, child prostitution and child pornography", - "values": [ - "4 - General action" - ] - }, - { - "text": "Continue to take measures for the sustainable economic, social and cultural development in the rural areas ", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Further improve unemployment insurance and elevate the level of unified planning for unemployment insurance funds", - "values": [ - "4 - General action" - ] - }, - { - "text": "Withdraw reservations, denunciations, and interpretations of the Covenant on Civil and Political Rights, the International Convention on the Elimination of All Forms of Racial Discrimination and the Convention against Torture, that undermine their compliance", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Implement comprehensive measures to eliminate violence against women and sexual abuse of children", - "values": [ - "4 - General action" - ] - }, - { - "text": "Pursue policy regarding persons with HIV and elderly persons which makes the commitment of Senegal more concrete for the cause of human rights ", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Accept the visit of the special procedures of the Human Rights Council and allow them access without restriction", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Continue to expand and strengthen the existing efforts in human rights education ", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Enforce existing laws to bring to justice perpetrators of extensive extrajudicial killings, enforced disappearances, attacks on civilians (including children) and instances of sexual and gender-based violence", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Continue to attach great importance to safeguarding the compulsory education rights of children accompanying rural migrant workers", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Evaluate the need for tuition in a special school on the basis of the child's personal characteristics, not on his or her ethnicity", - "values": [ - "3 - Considering action" - ] - }, - { - "text": "Continue constructive cooperation with UN mechanisms to enhance the system of the protection of human rights in the country ", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Submit overdue reports to the treaty bodies", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Allocate adequate resources to strengthen services for children with disabilities, support their families, train professionals in the field and encourage the inclusion of children with disabilities into the regular educational system and their integration into society ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Reduce entry visa fees for foreign journalists", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Take concrete measures aimed at making responses from the judicial system to violations and resulting compensations quicker and more efficient ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Take further measures to combat trafficking in persons, particularly women and children, and sexual exploitation, by ensuring effective enforcement of the Criminal Act and providing victims with necessary assistance and protection throughout the process of investigation and trial", - "values": [ - "4 - General action" - ] - }, - { - "text": "Promote gender equality by taking specific measures in this direction in the field of employment, in particular by considering setting up a procedure to receive and process allegations of individual discrimination.", - "values": [ - "4 - General action" - ] - }, - { - "text": "Continue and strengthen efforts in the field of economic, social and cultural rights, in particular in the field of health. ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Ratify the International Convention on the Rights of Persons with Disabilities and its Optional Protocol (OP-CRPD) ", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Take necessary measures to resolve and prevent conflicts related to land issues and to complete the land demarcation processes deriving from Article 231 of the 1988 Constitution", - "values": [ - "4 - General action" - ] - }, - { - "text": "Sign and ratify the Optional Protocol to the International Covenant on Economic, Social and Cultural Rights, as well as the Convention against Torture", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Implement a national programme to support minors, to reduce the flows of migration", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "See that the legitimate independence of public powers is respected in accordance with its international commitments", - "values": [ - "4 - General action" - ] - }, - { - "text": "Look to develop and support programmes directed towards the training and education of marginalized youth in Saint Lucia ", - "values": [ - "3 - Considering action" - ] - }, - { - "text": "Take concrete steps to prevent the arbitrary arrest and detention of human rights defenders and to create and maintain, in law and practice, a safe and enabling environment, in which human rights defenders can operate free from hindrance and insecurity, in accordance with Human Rights Council resolution 22/6", - "values": [ - "4 - General action" - ] - }, - { - "text": "Adopt effective measures to combat extremism and prevent all forms of discrimination, racism, xenophobia and other forms of intolerance, including amending its legislation so as to forbid and prevent activities of extremist organizations ", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Consider adhering to the ICRMW, as well as gradually adapting its national legislation to the standards contained in this Convention ", - "values": [ - "3 - Considering action" - ] - }, - { - "text": "Consider forming twinning relationships or partnerships with countries that have been through a process of legal reforms on minority issues to work closely with them on the legal, technical and institutional challenges involved in introducing change.", - "values": [ - "3 - Considering action" - ] - }, - { - "text": "Ratify as soon as possible the main international human rights treaties, mainly the International Covenant on Civil and Political Rights and the International Covenant on Economic, Social and Cultural Rights and ensure their effective implementation ", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Continue the National Human Rights Plan with a new orientation derived from the United Nations framework to guide government policy on business and human rights", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Ensure the full independence and impartiality of the judiciary, including by devolving all the functions in terms of the appointment, suspension and removal of judges, from the executive bodies to the judges' self-government bodies", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Recommend that the use of intimidation against journalists should cease and should lead to a climate of tolerance so that opinions from opposition politicians can be freely expressed", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Allocate more funding to the Ombudsman to allow for more aggressive prosecution of corruption cases.", - "values": [ - "4 - General action" - ] - }, - { - "text": "Improve hygiene conditions, nutrition and access to drinking water in schools", - "values": [ - "4 - General action" - ] - }, - { - "text": "Promote educational opportunities to all children in accordance with the Incheon Declaration on Education 2030", - "values": [ - "4 - General action" - ] - }, - { - "text": "Pursue the implementation of the national health policy for the period 2012 to 2020", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Take concrete measures to strengthen the legislation to combat all forms of discrimination, including those related to sexual orientation, and step up new awareness campaigns to combat all forms of discrimination, including those based on gender, ethnic origin, sexual orientation or gender identity", - "values": [ - "4 - General action" - ] - }, - { - "text": "Continue efforts to improve the situation of women and combat violence against women", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Ensure that counter-terrorist measures are fully consistent with Bahrain\u2019s international human rights obligations", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Recommended that the practice of torture and other ill treatment by law enforcement officials be condemned and brought to an end, that immediate independent and impartial investigations into all allegations of such acts be undertaken, and that alleged perpetrators be brought to justice.", - "values": [ - "4 - General action" - ] - }, - { - "text": "Continue the efforts to combat all forms of hatred and discrimination, and strengthen mechanisms of accountability in this regard", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Ratify the International Convention for the Protection of All Persons from Enforced Disappearance (CED), OP-CAT, OP-CRC-AC and OP-CRC- SC", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Address concerns about family reunification and the best interests of the child in its legislation on refugees", - "values": [ - "4 - General action" - ] - }, - { - "text": "Strengthen and ensure the independence of its human rights institutions such as the National Human Rights Commission in accordance with the Paris Principles.", - "values": [ - "4 - General action" - ] - }, - { - "text": "Establish a separate independent anti-corruption court to further strengthen the independence of the judiciary and the rule of law", - "values": [ - "4 - General action" - ] - }, - { - "text": "Ensure indigenous peoples adequate consultation as well as full participation in all legislative or administrative measures affecting them", - "values": [ - "4 - General action" - ] - }, - { - "text": "Sign and ratify the Optional Protocol to the Convention on the Elimination of All Forms of Discrimination against Women and ratify the International Convention for the Protection of All Persons from Enforced Disappearance ", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Ratify the international human rights treaties, to which it is not yet party, and cooperate with the OHCHR, treaty bodies and Special Procedures ", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Strengthen efforts to protect freedom of expression, including the safety of journalists", - "values": [ - "4 - General action" - ] - }, - { - "text": "Continue its efforts to adopt more measures to keep children in school, and ensure that girls, indigenous children, and children with disabilities are able to exercise fully their right to education", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Take further steps to improve the effectiveness of measures to combat the recruitment of child soldiers", - "values": [ - "4 - General action" - ] - }, - { - "text": "Provide people detained under security or propaganda laws with fundamental legal safeguards, including representation by legal counsel of their choice throughout the proceedings and a public trial.", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Consider abolishing the death penalty or establishing a moratorium ", - "values": [ - "3 - Considering action" - ] - }, - { - "text": "Focus more efforts on combating child prostitution and pornography and in aiding its victims in accordance with the recommendations of the Committee on the Rights of the Child.", - "values": [ - "4 - General action" - ] - }, - { - "text": "Continue the efforts to achieve stability in the society", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Make efforts on the sensitization in education to strengthen the prevention of these forms of discrimination. ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Continue efforts to set up the National Human Rights Institution", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Continue disseminating information and materials to the public on HIV prevention ", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Ensure that the legal framework addressing child labour raises the age of compulsory education to correspond to the minimum work age, and establishes specific hazardous occupations or activities prohibited for children", - "values": [ - "4 - General action" - ] - }, - { - "text": "Continue strengthening the application of the National Action Plan on Human Rights", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Carry out public campaigns to make the provisions of the new legislation eliminating the Family Head System and establishing equal rights in the marriage more effective.", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Recommended the updating of legislation regarding the situation of women, such as the Family Code in the areas of divorce, testimony and inheritance.", - "values": [ - "4 - General action" - ] - }, - { - "text": "Take measures to lower the number of pre-trial detainees through more liberal bail provisions, especially for those accused of less serious crimes", - "values": [ - "4 - General action" - ] - }, - { - "text": "Continue measures to combat activities by transnational criminal and terrorist elements and their front organisations in Switzerland, with a view to ensuring that the perpetrators of such crimes are brought to justice", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Botswana's Vision 2016 is a national effort that captures the nation's aspirations. The government of Botswana, the private sector, civic and civil organisations and the general public are committed to attaining what they set themselves to achieving in the year 2016", - "values": [ - "4 - General action" - ] - }, - { - "text": "Closely monitor the effectiveness of, and review if necessary, the National Programme to Support the Prison System and the Law on Precautionary Measures ", - "values": [ - "3 - Considering action" - ] - }, - { - "text": "Take further steps to bring legislation into line with international human rights norms and standards and, if necessary, seek technical assistance from United Nations agencies and organizations to do so", - "values": [ - "4 - General action" - ] - }, - { - "text": "Extend measures to address the problem of hate speech, especially by ensuring effective investigations", - "values": [ - "4 - General action" - ] - }, - { - "text": "Consider, as appropriate, learning and adopting, in accordance with national conditions, the best practices of other developing countries on the functioning of the oversight mechanisms", - "values": [ - "3 - Considering action" - ] - }, - { - "text": "Establish clear procedures to ensure that evictions of displaced persons are carried out respecting international norms and guaranteeing the rights to decent housing and work, and the access to health services and education ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Strengthen cooperation with human rights bodies, continue to cooperate with the United Nations special procedures and maintain the standing invitation to the thematic procedures mandate holders ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Initiating a public campaign with the view to removing reservations to CEDAW, ratifying the Optional Protocol and harmonizing national legislation with the Convention. Bahrain was invited to inform about plans in this regard", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Sign and ratify CED, as it constitutes an important instrument for the prevention against torture ", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "That domestic legislation be brought more closely into line with the stipulations of relevant human rights instruments and that the Government establish an effective coordination and oversight body to monitor antitrafficking efforts and collect accurate data for use in future strategies and initiatives ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Enhance measures to implement the CRC and CEDAW, and to combat trafficking in persons, especially women and children, including strengthening cooperation with NGOs in the area of protection of victims of trafficking in persons", - "values": [ - "4 - General action" - ] - }, - { - "text": "Continue its cooperation with the international human rights mechanisms with the aim of strengthening and protecting human rights in Brunei Darussalam ", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Continue to promote solidarity among all regions and provinces in the country in order to ensure sustainable and harmonious economic and social development", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Consider acceding to the Optional Protocol to the Convention against Torture and other Cruel, Inhuman or Degrading Treatment or Punishment", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Become party to ICMW ", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Uphold efforts aimed at the practical implementation of its human rights commitments and accede to the optional protocols of the human rights conventions to which it is a party ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Pay special attention to the problems of the children living and working on the streets", - "values": [ - "4 - General action" - ] - }, - { - "text": "Execute the European Court of Human Rights judgments passed in 2008 about the applications of three minority associations, outlawed on grounds that they had the word "Turkish" in their names ", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Consider the possibility of ratifying the Convention against Torture and Other Cruel, Inhuman or Degrading Treatment or Punishment and its Optional Protocol", - "values": [ - "3 - Considering action" - ] - }, - { - "text": "Ratify the Kampala amendments to the Rome Statute of the International Criminal Court on the crime of aggression", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Ensure the responsible repatriation of foreign victims of trafficking ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Continue to take measures to combat racism, violence and hatred and to fully respect the human rights of migrants and refugees", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Continue to increase its inputs into health and strengthen HIV/AIDS control so as to reduce the incidents of HIV/AIDS", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Take steps to end the criminalization of same-sex relations", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Rapidly accede to the International Convention for the Protection of All Persons from Enforced Disappearance.", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Review national legislation to ensure equality and non-discrimination ", - "values": [ - "3 - Considering action" - ] - }, - { - "text": "Ensure that all cases of trafficking and sexual exploitation of children are investigated ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Complete at the earliest the constitutional reform to incorporate in the Federal Constitution the rights of the child in accordance with the provisions of the CRC ", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Continue its efforts aimed at implementing the national policy of gender equality adopted by the Government in March 2013", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Take further concrete steps to reduce the use of coercion in the treatment and detention of persons with mental health issues or intellectual disabilities, including by improving the monitoring of mental health care institutions and developing voluntary alternatives to coercive interventions", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Consider introducing a moratorium on the death penalty, with a view to its abolition, in particular for drug-related offences and other crimes that cannot be labelled as "most serious" ones according to international standards", - "values": [ - "3 - Considering action" - ] - }, - { - "text": "Take further steps to address discrimination against, protect and provide assistance to women and vulnerable groups including children, minorities and indigenous peoples", - "values": [ - "4 - General action" - ] - }, - { - "text": "Ratify or accede to international human rights instruments, to which the Comoros is not yet party", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "It has established detailed immigration detention standards and remains committed to preventing abuses regarding detention conditions and bringing to justice those who commit them. More people than ever before are enrolled in alternatives to detention programmes.", - "values": [ - "4 - General action" - ] - }, - { - "text": "When reforming the asylum system and migration management, pay special attention to the needs of unaccompanied minors in all processes that pertain to solving their cases, and prevent administrative detention from being a standard practice for new irregular migrants ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Step up measures to bring to justice persons who instigate others to commit acts of self-immolation", - "values": [ - "4 - General action" - ] - }, - { - "text": "Adopt a comprehensive sexual and reproductive health policy for adolescents and ensure that sexual and reproductive health education is part of the mandatory school curriculum and targeted at adolescent girls and boys, with special attention on preventing early pregnancy and sexually transmitted infections", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Fully align its national legislation with the Rome Statute of the International Criminal Court, including incorporating provisions to cooperate promptly and fully with the International Criminal Court, and investigate and prosecute genocide, crimes against humanity and war crimes effectively, and also accede to the Agreement on Privileges and Immunities of the International Criminal Court ", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Ensure that the National Sustainable Development Strategy consider, in particular, the role of women in national development, including their participation in the political process, at all levels ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Norway converts this recommendation [2] into a voluntary commitment, as follows: "Norway is currently in the process of considering ratification of the Optional Protocol to the Convention on Torture and Other Cruel, Inhumane or Degrading Treatment or Punishment. This matter is a high-priority task for the Government."", - "values": [ - "3 - Considering action" - ] - }, - { - "text": "Continue to refine its policies to counter hate crimes in communities, particularly those motivated by race and religion, and to share its best practices with other Member States", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Expeditiously take appropriate steps towards restricting the use of pretrial detention and its duration and opt for alternative methods whenever possible ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Authorize the detention of asylum seekers only in exceptional situations, and limit its duration ", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Provide human rights training to law enforcement officials to end incidents of police brutality and excessive use of force", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Consider an early ratification of the newest international human rights instrument - the third OP to CRC on a communication procedure ", - "values": [ - "3 - Considering action" - ] - }, - { - "text": "Develop a specific programme to try and punish traffickers of women and children ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Intensify efforts to fight, more vigorously, ethnically motivated crimes at all levels.", - "values": [ - "4 - General action" - ] - }, - { - "text": "Disarm and dismantle all paramilitary organizations and private militias, or, short of a complete dismantling, ensure that the army exercises control over all militias and that the Minister of National Defence defines their role and puts in place mechanisms so that they are held accountable for their actions ", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Take measures to withdraw the reservation to article 18 of the International Covenant on Civil and Political Rights", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Adopt a legal framework to facilitate the granting of residence permits to child victims of trafficking", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Ensure that foreign women who become victims of domestic violence, sexual abuse, trafficking in human beings and other forms of violence are guaranteed access to justice", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Consider to review the three-year time limit in the statute of limitations for bringing compensation claims in cases of coercive or non-consensual sterilizations in order to extend it", - "values": [ - "3 - Considering action" - ] - }, - { - "text": "Ratify the Rome Statute of the International Criminal Court including its Agreement on Privileges and Immunities", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Enhance conducive environment for civil societies to work in the promotion and protection of human rights", - "values": [ - "4 - General action" - ] - }, - { - "text": "Consider the recommendations of special procedures systematically for further reforms in the field of human rights", - "values": [ - "3 - Considering action" - ] - }, - { - "text": "Expand access to education for children and youth, and provide vocational training as a means to improve their future employability", - "values": [ - "4 - General action" - ] - }, - { - "text": "Pull efforts to work on the poverty reduction strategy and promote sustainable development", - "values": [ - "4 - General action" - ] - }, - { - "text": "Continue taking measures to protect women from traditional practices which hinder full realization of their rights, and continue implementing regulations to end all forms of discrimination against them", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Ratify the International Convention for the Protection of All Persons from Enforced Disappearance and recognize the competence of the Committee on Enforced Disappearances to receive and examine communications", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Continue the efforts made in favor of the integration of the community of the Roma, the eradication of religious intolerance, human trafficking - especially of women and children -, and discrimination against people living with HIV / AIDS ", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Enact comprehensive reforms to address sexual violence and all acts of violence against women, including "honour" crimes, child marriage, female feticide and female infanticide, and to remedy limitations in the definition of rape and the medico forensic procedures adopted for rape cases ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Put into effect the request for a visit by the Special Rapporteur on the Human Rights of Migrants ", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Take the necessary steps to ratify CAT", - "values": [ - "4 - General action" - ] - }, - { - "text": "Continue efforts to ensure universal access for Tunisian women to sexual and reproductive health-care services, especially during pregnancy", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Support the international moratorium on death penalty executions with a view to abolition, and end the imposition of the mandatory death penalty ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Continue to improve the social security system so as to provide better safeguards for the elderly, persons with disabilities and migrants ", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Strengthen the protection of lesbian, gay, bisexual, transgender and intersex persons against stigmatization, harassment and discrimination by promoting tolerance for sexual diversity and different gender identities and by clearly classifying acts of violence against these persons as hate crimes", - "values": [ - "4 - General action" - ] - }, - { - "text": "Adopt provisions to prevent all forms of discrimination against women and girls and, in particular, promote access to higher education for members of the Baha'i community and other religious minorities", - "values": [ - "4 - General action" - ] - }, - { - "text": "Promote policies to allow indigenous peoples and minorities access to the National Literacy Programme, the National Post-literacy Programme and bilingual intercultural education", - "values": [ - "4 - General action" - ] - }, - { - "text": "Establish the necessary conditions to provide access for the most vulnerable population to basic education and relaunch its policy to encourage the enrolment of girls in schools", - "values": [ - "4 - General action" - ] - }, - { - "text": "Ensure full compliance of the substitute detention system (Daiyo Kangoku) with all guarantees contained in article 14 of ICCPR", - "values": [ - "4 - General action" - ] - }, - { - "text": "Take further measures to increase the capacity of penitentiary institutions and better promote the prisoners' rights, among others, the right to food and the right to safe water and sanitation ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Request the international community to provide material and financial assistance to the Comoros so that it can meet the challenges before it in the area of human rights.", - "values": [ - "1 - Minimal action" - ] - }, - { - "text": "Cease the harassment and arbitrary detention of political opposition leaders and supporters, and ensure that peaceful political dissent and public discourse about human rights, elections and government policy are allowed to take place freely in public spaces and in the press", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Continue implementing OP-CAT, through its national law passed to this effect ", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Take steps, in partnership with State, Territory and Local governments, to further advance and accelerate implementation of the National Action Plan to Reduce Violence against Women and Their Children, so as to effectively address prevalence of violence against these vulnerable groups", - "values": [ - "4 - General action" - ] - }, - { - "text": "Ratify the Optional Protocol to ICESCR, as well as the Optional Protocol to CRC on a communications procedure", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Ensure non-discrimination on the basis of sexual orientation and gender identity and repeal the provisions of the penal code which criminalise sexual relations between consenting adults of the same sex ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Consider further extension for application resolving the status of displaced or internally displaced persons", - "values": [ - "3 - Considering action" - ] - }, - { - "text": "Continue the efforts for the improvement of the access to education as an important factor in the process of democratization ", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Strengthen measures to guarantee the right to an adequate standard of living to indigenous peoples and peasant communities", - "values": [ - "4 - General action" - ] - }, - { - "text": "Ensure that its policies, legislation, regulations and enforcement measures effectively serve to prevent and address the heightened risk of business involvement of abuses in conflict situations, which includes situations of foreign occupation", - "values": [ - "4 - General action" - ] - }, - { - "text": "Consider ratifying the Rome Statute of the International Criminal Court (ICC)", - "values": [ - "3 - Considering action" - ] - }, - { - "text": "Sign and ratify CED, the Optional Protocol to ICESCR, CRPD and the Optional Protocol thereto", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Ensure human rights obligations in Papua are upheld, respected and promoted, including freedom of assembly, freedom of the press and the rights of women and minorities", - "values": [ - "4 - General action" - ] - }, - { - "text": "Continue focused efforts to address racism, discrimination and xenophobia", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Include civil society and human rights defenders in the development of legislation and decision-making processes, through an institutionalized consultation process.", - "values": [ - "4 - General action" - ] - }, - { - "text": "Put in place a specialized body specifically responsible for gender issues ", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Continue efforts to improve and strengthen women's status in society", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Introduce further measures aimed at the effective prevention and combating of human trafficking, including the continuation of the public awareness campaign and cooperation with the relevant non-governmental organizations", - "values": [ - "4 - General action" - ] - }, - { - "text": "Ensure that its indigenous communities, as far as possible, benefit fully from the provision of public services and that their land rights are legally recognized, including via implementation of the 2008 decision of the Inter-American Court of Human Rights ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Strengthen its measures to prevent, suppress and eliminate discrimination against women and to combat domestic violence.", - "values": [ - "4 - General action" - ] - }, - { - "text": "Provide greater access to public health services with adequate health coverage, particularly in the outer islands", - "values": [ - "4 - General action" - ] - }, - { - "text": "Take all required measures to halt the exploitation of migrants, asylum seekers and refugees and facilitate their integration into society", - "values": [ - "4 - General action" - ] - }, - { - "text": "Develop a national human rights action plan for better implementation and monitoring", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Continue to strengthen its leadership in the multilateral framework in favour of diplomacy of peace and in South-South cooperation for the promotion of human rights", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Continue all efforts to promote the rights of women at all levels", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Work to promote freedom of expression in line with international human rights principles, including by repealing criminal defamation laws", - "values": [ - "4 - General action" - ] - }, - { - "text": "Promote and support the participation of women in decision-making at all levels ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Establish an independent electoral commission with a mandate to determine constituency boundaries and monitor election fundraising and campaigning", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Implement fully the Geneva communiqué of 2012 and Security Council resolution 2254 (2015) ", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Develop mechanisms for overseeing the implementation of the Convention of the Rights of the Child in the West Bank and Gaza.", - "values": [ - "4 - General action" - ] - }, - { - "text": "Establish a specific policy and plan of action to eradicate sexual violence against women and girls", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Continue in its endeavour to establish a broad-based, sustainable and participatory development framework to reach the disadvantaged groups of society ", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Continue its cooperation with the UN human rights mechanisms as part of its on-going efforts to promote human rights ", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Extend a standing invitation to all special procedures as soon as possible.", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Adopt all necessary measures to ensure that the press could work freely.", - "values": [ - "4 - General action" - ] - }, - { - "text": "Extend a standing invitation to United Nations human rights special procedures so that they can visit the country and assist the Government with its human rights reforms ", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Implement the national prevention mechanism adopted in 2012 in application of the Optional Protocol of the Convention against Torture", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Ratify promptly the Convention on the Rights of Persons with Disabilities ", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Guarantee equitable protection to all places of worship in the country, including all Muslim and Christian sacred places.", - "values": [ - "4 - General action" - ] - }, - { - "text": "Ensure freedom of expression and take steps to end threats and attacks against journalists and human rights defenders, including lesbian, gay, bisexual, transgender and intersex defenders", - "values": [ - "4 - General action" - ] - }, - { - "text": "Senegal aims to increase vaccination coverage from 80 to 90 per cent by introducing new vaccines against two of the three main causes of child mortality, pneumonia and rotavirus.", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Continue working towards peace through dialogue ", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Become a party to the Convention on the Rights of Persons with Disabilities", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Specifically criminalize torture in your criminal code and ensure that security officials are held accountable for torture and other human rights abuses ", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Implement the National Development Plan including the revised Sector Plan for Education that has budget allocations ensuring priority to free and qualitative education for all", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Continue to make efforts to guarantee equality between men and women so that women may play important roles in the decision-making processes of public institutions ", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Implement the opinions of the Working Group on Arbitrary Detention on individuals and release the individuals concerned ", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Continue its extensive reforms with a view to addressing institutional shortcomings and weaknesses, and develop an integrated agenda of human rights and public security as well as the development agenda towards poverty and illiteracy eradication.", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Decriminalize consensual adult same-sex activity by amending article 14 and repealing article 16 of the Sexual Offences Act ", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Develop and implement a comprehensive national strategy to address all forms of violence against women and children", - "values": [ - "4 - General action" - ] - }, - { - "text": "Recognize the full and equal enjoyment of all human rights by all and review and abolish all discriminatory laws, including the law that criminalizes homosexuality ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Continue to work in earnest to address some of the legitimate concerns in regard to the freedom of media", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Make further efforts to reduce overcrowding in penitentiary institutions, including through the use of alternative measures, and improve conditions in detention facilities ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Continue to move forward in implementing programmes and measures aimed at combating all forms of discrimination", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Provide the judiciary with all resources and support necessary so that the 338 pending criminal cases may be resolved.", - "values": [ - "4 - General action" - ] - }, - { - "text": "Better fight against discrimination against women", - "values": [ - "4 - General action" - ] - }, - { - "text": "Eliminate religious discrimination, including prohibitions on wearing religious symbols or clothing", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Take steps to combat impunity in alleged cases of torture and acts of violence related to the 2005 elections and to ensure that legal protection is guaranteed", - "values": [ - "4 - General action" - ] - }, - { - "text": "Eventually consider extending a standing invitation to all special procedures.", - "values": [ - "3 - Considering action" - ] - }, - { - "text": "Strengthen measures aimed at eradicating child marriages and expedite the enactment of legislation abolishing the forced marriage of children", - "values": [ - "4 - General action" - ] - }, - { - "text": "Take further measures against racism and extremism and encourage peaceful co-existence between different ethnic groups", - "values": [ - "4 - General action" - ] - }, - { - "text": "Guarantee the return of the San communities to the Kalahari reserve, and facilitate their access to safe drinking water and sanitation", - "values": [ - "4 - General action" - ] - }, - { - "text": "Continue its leadership role in supporting the achievement of the Sustainable Development Goals as exemplified, among others, by the pledge to contribute USD 1.1 billion for SDG 3", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Reinforce protection measures against violence and discrimination of vulnerable people, including women, children, refugees and displaced persons", - "values": [ - "4 - General action" - ] - }, - { - "text": "Noting the possible crimes against humanity, including sexual violence against women and girls, committed during the events starting on 28 September 2009, and recognizing that Guinea has ratified the Rome Statute of the International Criminal Court, bring to justice those responsible for those violations and combat impunity for those events ", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Bolster its policies to promote women's rights ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Seek assistance, as appropriate, to support ongoing efforts to preserve its tangible and intangible cultural heritage", - "values": [ - "1 - Minimal action" - ] - }, - { - "text": "Recommended the decriminalization of consensual same-sex activity between adults and the adoption of measures to promote tolerance in this regard, which would also facilitate more effective educational programmes for the prevention of HIV-AIDS.", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Implement a national action plan to reduce violence against women and children ", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Undertake a review of national criminal and immigration legislation to ensure its compatibility with international obligations of the Government, in particular regarding the right to freedom of movement of individuals, in response to the recommendations of the Committees on Civil and Political Rights, on Economic, Social and Cultural Rights and on the Rights of the Child ", - "values": [ - "3 - Considering action" - ] - }, - { - "text": "Strengthen its efforts in the area of development as well as the implementation of the Millennium Development Goals MDGs especially, concerning the enrolment at all levels of education, the realization of the right to food and the decrease of maternal and child mortality rates", - "values": [ - "4 - General action" - ] - }, - { - "text": "Adapt procedural law to the requirements established in the Salduz case, guaranteeing to detained persons access to a lawyer from the moment of the first interrogation ", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Recommend the accession to the Optional Protocol to the Convention against Torture and the establishment of a national preventive mechanism accordingly.", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Raise the minimum age of marriage in the national legislation to align it with the definition of a child in the Convention on the Rights of the Child ", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Further strengthen the promotion of environmental rights through their incorporation into social and economic development plans in the entire Kingdom", - "values": [ - "4 - General action" - ] - }, - { - "text": "That investigations into allegations of abuse of prisoners are dealt with by civilian courts, not military courts ", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Consider signature and ratification of the Optional Protocol to the Convention on the Elimination of All Forms of Discrimination against Women ", - "values": [ - "3 - Considering action" - ] - }, - { - "text": "Consider signing and ratifying the Optional Protocol to the Convention against Torture and other Cruel, Inhuman or Degrading Treatment OP-CAT ", - "values": [ - "3 - Considering action" - ] - }, - { - "text": "Address racial discrimination, xenophobia and hate crimes by further strengthening effective legislative and judicial measures", - "values": [ - "4 - General action" - ] - }, - { - "text": "Pay attention to the rehabilitation of prisoners", - "values": [ - "4 - General action" - ] - }, - { - "text": "Establish a de jure moratorium on capital executions and commute the existing death sentences with a view to fully abolishing the death penalty", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Prohibit the practice of asylum-seekers - non-crime offenders detention in police custody by paying special care to minors and victims of human trafficking ", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Put in place a robust mechanism in order to put an end to racism, racial discrimination and related intolerance, especially against Muslim people and people of African origin", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Facilitate a visit of the Special Rapporteur on the independence of judges and lawyers prior to the third review of Fiji under the UPR", - "values": [ - "4 - General action" - ] - }, - { - "text": "Ensure that all allegations of excessive use of force, torture and cruel and other forms of ill treatment, including in detention places and prisons, committed by law enforcement personnel are thoroughly and objectively investigated, bringing alleged perpetrators to justice and providing appropriate remedies to victims ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Protect the rights of immigrants and take active measures to protect the rights of foreign workers, and promote harmony among all ethnic groups ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Decriminalize abortion in all circumstances and ensure that women and girls can access safe and legal abortion", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Consider ratification of ILO Convention 189", - "values": [ - "3 - Considering action" - ] - }, - { - "text": "Ratify the Convention against Torture and Other Cruel, Inhuman and Degrading Treatment or Punishment", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Ratify the Rome Statute of the International Criminal Court .", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Allocate the necessary resources to ensure the appropriate functioning of the National Council on Civic Education", - "values": [ - "4 - General action" - ] - }, - { - "text": "Decriminalize adultery and non-marital consensual sex.", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Maintain and strengthen efforts towards the establishment of a fully fledged National Human Rights Institution ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Adopt and implement swiftly the law on reparation for victims of violations of human rights during the Marcos dictatorship ", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Further strengthen the legal and policy frameworks for the protection of the rights of women, children, and persons with disabilities and elderly persons ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Draft a plan to combat violence against women, and establish reliable indicators in this field", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Ensure effective legal protection for victims of discrimination ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Continue its efforts, through the United Nations Framework Convention on Climate Change and other forums, to remind the international community, especially developed countries and other major emitting States, of their obligations to protect and promote human rights in Saint Kitts and Nevis by reducing greenhouse gas emissions ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Redouble efforts to promote the full exercise of the right to information and freedom of expression and promote, likewise, the independence and pluralism of the media ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Take the appropriate measures to address the disadvantage situation of girls concerning access to education, as well as reports on sexual violence and abuses committed in schools", - "values": [ - "4 - General action" - ] - }, - { - "text": "Collect disaggregated data on the dissemination of hate speech against minorities ", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Continue the implementation of the National Action Plan for Children 2006-2016", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Adopt public policies to increase access to family planning and emergency contraception, comprehensive sexuality education and to decriminalize abortion in the cases of rape, incest, non-viability of the foetus and endangerment to the mother\u2019s health", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Enact comprehensive anti-discrimination legislation prohibiting discrimination on all grounds", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Establish a national adoption centre and an obligation to register right after birth", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Adopt as a matter of priority further legislative as well as practical measures to raise public awareness about the laws, better train police and other authorities to deal appropriately and effectively with victims of sexual assault and other violence against women, ensure victims' access to justice and improve support services such as shelters and burn units for women.", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Pursue the judicial and administrative reforms with a time-bound action plan to build an effective, open and transparent legal system based on the rule of law.", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Step up implementation of legal and institutional measures aimed at addressing the reported increase of domestic violence against women and children ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Commit to procurement and e-governance reforms, including the full implementation of the Open Government Partnership national action plan and a permanent dialogue mechanism with civil society", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Strengthen efforts aimed at improving the national response to the HIV/AIDS epidemic", - "values": [ - "4 - General action" - ] - }, - { - "text": "Continue to strengthen its poverty eradication strategies, as well as programmes aimed at improving maternal health and conditions of employment, including the need to obviate child labour, particularly for those children orphaned by the HIV and AIDS pandemic ", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Elaborate a road map to improve prison conditions and to prevent mistreatment of prisoners.", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Continue to cooperate and strengthen its human rights dialogue with relevant international human rights mechanisms ", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Proceed with the ratification process of the Rome Statute of the International Criminal Court at the earliest possible", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Continue to undertake the appropriate steps in view of considering the ratification of the international human rights instruments mentioned in paragraph 23 of the national report (International Covenant on Civil and Political Rights, International Covenant on Economic Social and Cultural Rights, Convention Against Torture and Convention on the Elimination of All Forms of Racial Discrimination)", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Put an end to direct and indirect restrictions on freedom of expression and take effective measures to ensure the full realization of the right to freedom of expression and of assembly ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Further strengthen access to justice for victims of violence, in particular of gender-based violence, by providing effective legal aid and addressing gender stereotypes among justice officials", - "values": [ - "4 - General action" - ] - }, - { - "text": "Take all necessary measures to ensure the full implementation of ILO Convention No. 189, which will come into force in January 2015 ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Consider withdrawing its reservation to article 2 of CEDAW, in line with its Constitution and international human rights instruments ", - "values": [ - "3 - Considering action" - ] - }, - { - "text": "Take concrete measures to address the issue of violence against the Rohingya, including addressing the accountability of perpetrators as well as individuals who feed polarization through hate speech", - "values": [ - "4 - General action" - ] - }, - { - "text": "Ensure birth registration for all children born on its territory, especially those who are not registered due to the economic status of their parents, ethnicity and immigration status", - "values": [ - "4 - General action" - ] - }, - { - "text": "Support public education campaigns to combat hate speech, discrimination and violence related to sexual orientation and gender identity, as well as social stigmatization of LGBT persons", - "values": [ - "4 - General action" - ] - }, - { - "text": "Take measures to guarantee freedom of expression as well as to respect peaceful protests", - "values": [ - "4 - General action" - ] - }, - { - "text": "Continue implementing programmes aimed at guaranteeing quality education to all the population, with an emphasis on access, school enrolment and decreasing school drop outs", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Ratify, among others, the Convention on the Rights of the Child, the Convention on the Rights of Persons with Disabilities, the International Convention on the Protection of the Rights of All Migrant Workers and Members of their Families / Accede to the American Convention on Human Rights and recognize the competence of the Inter-American Court of Human Rights", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Promote public policies to prevent violence against women and girls, including domestic violence and sexual violence", - "values": [ - "4 - General action" - ] - }, - { - "text": "Continue to implement strategies and plans for the socio-economic development of the country ", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Enforce the strictest standards on banning political declarations and programmes encouraging racism, xenophobia and hate speech or inciting to hatred or intolerance, including of an ethnic or religious nature", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Consider strengthening the positive engagement with civil society, nongovernmental organizations and academic institutions, with a view to enhancing the promotion and protection of human rights and fundamental freedoms of its people", - "values": [ - "3 - Considering action" - ] - }, - { - "text": "Criminalize domestic violence and ensure that a broad definition of the crime is applied so as to ensure the protection of all persons concerned, including domestic workers ", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Continue efforts to guarantee the rights of children, including the ratification and implementation of the optional protocols to the Convention on the Rights of the Child, which Liberia has signed", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Collaborate further with human rights mandate holders ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Enact law to allow government authorities to independently prosecute alleged perpetrators of domestic and sexual violence", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Strengthen measures to ensure inclusion of and respect for the rights of all ethnic and religious communities ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Take immediate action to improve national asylum system, including by elaborating a national action plan, to avoid continuation of harsh conditions of detention and treatment of asylum seekers and refugees", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Sustain and promote the family, based on the stable relationship between a man and a woman, as the natural and fundamental unit of society ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Ratify the Kampala amendments to the Rome Statute ", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Establish a national mechanism to coordinate and implement policies and programmes to combat child exploitation ", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Introduce for adoption a comprehensive, all-inclusive antidiscrimination law that includes protection against discrimination on the grounds of sexual orientation and gender identity ", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Extend a standing invitation to all United Nations Human Rights Council special procedures and receive those that have requested to visit", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Pursue measures to include and protect minorities ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Promote specific legislation introducing acts of domestic violence as specific crimes", - "values": [ - "4 - General action" - ] - }, - { - "text": "Continue promoting economic and social sustainable development to improve steadily the standard of living and to lay a solid foundation for the enjoyment of human rights", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Provide basic human rights education to children in primary and secondary schools", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Sign and ratify the Council of Europe Convention on Preventing and Combating Violence against Women and Domestic Violence", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Establish concrete measures to guarantee that the rights of asylum seekers and refugees are upheld, particularly women and children in immigration detention or processing centres", - "values": [ - "4 - General action" - ] - }, - { - "text": "Adopt measures to combat violence and discrimination against women and indigenous communities", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Promote new actions and initiatives to continue progressing in its efforts to implement the National Human Rights Strategy", - "values": [ - "4 - General action" - ] - }, - { - "text": "Ratify ILO Conventions No. 138 and no. 182 ", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Ensure the functioning juvenile justice system throughout the country and raise the age of criminal responsibility that comply with the acceptable international standards ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Continue to take steps to implement the Family Protection Act 2013 by training police officers and judges on its provisions", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Consider an early ratification of the newest international human rights instrument - the third Optional Protocol to the Convention on the Rights of the Child on communication procedure ", - "values": [ - "3 - Considering action" - ] - }, - { - "text": "In follow-up to recommendations 135.8, 135.9, 135.15 and 135.16 of the second cycle, increase economic and social investment to improve equality of access, opportunities and needs under the \u201cSumak Kawsay\u201c programmes for Afro-Ecuadorian families and to facilitate their full participation in public life", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Implement the recommendations contained in the 2010 OHCHR report on "Investigating allegations of extra-judicial killings in the Terai", inter alia: (a) fully investigate all allegations of the use of extra-judicial killings in the context of the current Special Security Plan, as well as past and future security operations, (b) establish external oversight mechanisms, such as an independent police complaints commission or special investigative unit to investigate and prosecute crimes allegedly committed by State actors, (c) adopt measures to support and protect witnesses as well as victims and their family members.", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Continue the efforts to promote the State's activities in the field of cultural rights, and ensuring wider participation of all sectors of Venezuelan society", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Take measures to reduce inequalities between men and women, in particular by raising the legal age of marriage to 18 years for all", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Continue the deliberation among relevant institutions and stakeholders with a view to ratify the International Convention on the Protection of the Rights of All Migrant Workers and Members of Their Families and to expand discussions with representatives from the state parties to the Convention in the region", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Ratify CPED and OP-CAT ", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Remove the outstanding reservations on articles 2 - f -, 5, 11 - 1 - - d -, 11 - 2 - and 16 of the Convention on the Elimination of All Forms of Discrimination against Women as a matter of urgency ", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Revise its Law on the Responsibility of Parents for the Upbringing and Education of Children of 2 August 2011, which contains provisions highly endangering the freedom of religion and the aims of the CRC", - "values": [ - "3 - Considering action" - ] - }, - { - "text": "Consider intensifying human rights education.", - "values": [ - "3 - Considering action" - ] - }, - { - "text": "Step up efforts to enforce anti-trafficking legislation", - "values": [ - "4 - General action" - ] - }, - { - "text": "Provide women that have been unjustifiably denied access to adequate reproductive health services with an effective redress mechanism ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Hold, with the help of the relevant United Nations agencies, more seminars and training courses on human rights issues", - "values": [ - "4 - General action" - ] - }, - { - "text": "Adopt legislative and policy measures to eradicate re-victimization in cases of trafficking and ensure adequate protection to victims, migrant workers in particular, regardless of their immigration status", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Make education compulsory by law and take the necessary measures to combat corruption in the educational system ", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Adopt a comprehensive law on violence against women, with a particular emphasis on the protection of victims, accountability of perpetrators as well as on awareness-raising to encourage reporting of domestic and sexual violence ", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Sign and ratify the Optional Protocol to the Convention against Torture and Other Cruel, Inhuman or Degrading Treatment or Punishment", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Take steps to end impunity for perpetrators of human rights violations", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Implement legal safeguards to ensure protection of human rights defenders, including journalists, against abuse of provisions for criminal prosecution and release all political prisoners ", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Adopt a comprehensive code against discrimination in all its forms", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Italy was committed to combating racism and working for successful interaction among cultures, traditions and beliefs. At the national level, the country would continue to make all efforts to ensure that the global challenges posed by racism were met in the most appropriate ways.", - "values": [ - "4 - General action" - ] - }, - { - "text": "Allow independent access to United Nations entities, including OHCHR, to all areas, to enable them to monitor the prevailing human rights situation", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Work towards strengthening law enforcement efforts to effectively implement its anti-slavery law ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Effectively implement relevant laws governing sexual and gender-based violence", - "values": [ - "4 - General action" - ] - }, - { - "text": "Abolish definitively the death penalty and ratify the Second Protocol to ICCPR ", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Consider ratifying core international human rights treaties to which Singapore is not yet a party (ICCPR, the International Covenant on Economic, Social and Cultural Rights (ICESCR), ICERD), the Optional Protocol to the Convention on the Elimination of All Forms of Discrimination against Women (CEDAW), OP-CRC-SC, and CRPD with its Optional Protocol ", - "values": [ - "3 - Considering action" - ] - }, - { - "text": "Ratify the Optional Protocol to the Convention against Torture (OP-CAT) and set up a national prevention mechanism that meets the criteria and guarantees under this instrument", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Ratify ICCPR and ICESCR and other core international human rights treaties, such as CAT, CRPD and ICERD, and their optional protocols, and withdraw its reservations on key principles of CRC and CEDAW ", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Take all necessary measures to halt recruitment of children into armed groups and to adopt adequate legislation to prevent further recruitment", - "values": [ - "4 - General action" - ] - }, - { - "text": "Impose concrete measures to ensure that courts carry out their functions in accordance with ratified international treaties", - "values": [ - "4 - General action" - ] - }, - { - "text": "Continue to prioritize policies aimed at further improving the socioeconomic condition of the Maoris and the Pacific peoples ", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Remove obstacles to freedom of expression and movement against human rights defenders, including all travel bans", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Continue efforts to fully guarantee the protection and independence of human rights defenders ", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Continue to ensure universal access to quality education for all and to maintain if not improve its healthcare system to the continued benefit of its people ", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Continue to work toward improving access to health ", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Take the adequate measures to enlarge the space allocated to civil society", - "values": [ - "4 - General action" - ] - }, - { - "text": "Ratify the Optional Protocol to the International Covenant on Economic, Social and Cultural Rights and the International Convention on the Protection of All Persons from Enforced Disappearance", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Guarantee the independence of the Human Rights Commission of Zimbabwe as far as the following are concerned: funding, mandate, immunity and appointment of commission members, all this in accordance with the Paris Principles", - "values": [ - "4 - General action" - ] - }, - { - "text": "Establish the institution of an ombudsman.", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Continue and improve the efforts to implement the Convention against Torture", - "values": [ - "4 - General action" - ] - }, - { - "text": "Step up its further efforts to combat trafficking in persons including continue the practice of developing national plans of actions and other strategies in this area ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Take all necessary measures to prevent and eliminate all manifestations of racism, Islamophobia, xenophobia, and religious intolerance ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Continue its efforts towards ratification of the Optional Protocol to the Convention on the Rights of Persons with Disabilities ", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "The ratification process of the Convention for the Protection of all Persons from Enforced Disappearance is due to begin this year", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Increase efforts to release and demobilize child fighters and implement measures to ensure their reintegration into society.", - "values": [ - "4 - General action" - ] - }, - { - "text": "Consider the ratification of the OP-CAT.", - "values": [ - "3 - Considering action" - ] - }, - { - "text": "Separate children from adults in detention in line with the recommendations of the Committee on the Rights of Children, enhance training programmes on relevant international standards for all professionals involved with the system of juvenile justice and ensure the full implementation of juvenile justice standards of the Convention on the Rights of the Child ", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Provide assistance and redress to victims of trafficking in persons ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Amend relevant legislation in order to ensure civil registration for all children, including fatherless children ", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Sustain efforts aimed at ensuring equitable work opportunities for women", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Promote the adoption of the necessary measures to abolish the death penalty in their judicial system", - "values": [ - "4 - General action" - ] - }, - { - "text": "Ensure thorough investigations of all allegations of extrajudicial killings and use of excessive force by the police", - "values": [ - "4 - General action" - ] - }, - { - "text": "Respect all obligations under the Convention against Torture and other Cruel, Inhuman or Degrading treatment or punishment, trying to avoid, by all means, incidents of torture in police custody, and, on the presumption that these may have taken place, that these crimes remain unpunished", - "values": [ - "4 - General action" - ] - }, - { - "text": "Consider issuing a standing invitation to all United Nations special procedures.", - "values": [ - "3 - Considering action" - ] - }, - { - "text": "Simplify access to public administrative services for Crimean residents and enable Ukrainian citizens to move smoothly between Crimea and the rest of Ukraine, recognizing General Assembly resolutions 68/262 and 71/205 and Ukraine\u2019s sovereignty over Crimea", - "values": [ - "4 - General action" - ] - }, - { - "text": "Increase the resources allocated to the new Ministry for Temporarily Occupied Territories and Internally Displaced Persons", - "values": [ - "4 - General action" - ] - }, - { - "text": "Continue to commit more resources to primary health care", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Take measures to ensure that existing laws criminalizing rape and domestic violence are fully enforced, and cases are fully investigated and prosecuted consistent with these laws", - "values": [ - "4 - General action" - ] - }, - { - "text": "Expedite efforts to enact a Juvenile Justice Act in compliance with the Convention on the Rights of the Child ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Seek to amend the Penal Code to criminalize all forms of sexual abuse of children, regardless of the sex of the child, bring perpetrators to justice and rehabilitate and compensate the victims", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Take further measures to strengthen the legislative framework on female genital mutilation, whilst also ensuring effective implementation, monitoring and investigation", - "values": [ - "4 - General action" - ] - }, - { - "text": "Repeal legislation criminalizing male homosexuality, and introduce targeted policies to eradicate discrimination based on sexual orientation and gender identity", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "That the Ministry of Labour accelerate passing the executive decrees of the Labour Law to facilitate access to employment for Palestinians and open the prospect of work in all professional fields", - "values": [ - "4 - General action" - ] - }, - { - "text": "Make further efforts to ensure the implementation of its National Human Rights Action Plan", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Intensify cooperation with the Special Rapporteurs including by allowing them to visit the country", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Review the use of incommunicado detention for offences involving terrorists or armed gangs, which may last for up to 13 days ", - "values": [ - "3 - Considering action" - ] - }, - { - "text": "Raise the minimum age to 18 of young people eager to join the army", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Take effective measures against police violence, in particular by ensuring comprehensive investigations and the prosecution of alleged offenders within the police and security forces ", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Allow the access of international media, independent media and diplomats", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Create a National Human Rights Institution in accordance with the Paris Principles", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Strictly enforce the 2006 law on sexual violence and its zero tolerance policy ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Strengthen services aimed at protecting women and children, including through greater legal protection, and provide women and children with adequate information on how to gain access to support and medical care ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Consider developing further the legal and institutional framework with respect to the promotion and protection of human rights in the country ", - "values": [ - "3 - Considering action" - ] - }, - { - "text": "Continue to support United Nations fund related to human rights", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Guarantee the right to access to justice and effective remedies to all indigenous women who were victims of violence", - "values": [ - "4 - General action" - ] - }, - { - "text": "Comply with existing laws on detention and implement further legislation to regulate "transit" and "rehabilitation" centres", - "values": [ - "4 - General action" - ] - }, - { - "text": "Assess the possibility of eliminating the concepts of legitimate children and natural children, which, according to the Committee on Economic, Social and Cultural Rights, continue to exist in the domestic legal order", - "values": [ - "3 - Considering action" - ] - }, - { - "text": "Continue its efforts in combating money laundering and financing of terrorism ", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Update the legislation aimed at the training of persons who deal with children, the elderly, ill persons and disabled persons", - "values": [ - "4 - General action" - ] - }, - { - "text": "Ratify the Optional Protocol to the International Covenant on Economic, Social and Cultural Rights, the Optional Protocol to the Convention on the Elimination of All Forms of Discrimination against Women and the Optional Protocol to the Convention on the Rights of the Child on a communications procedure ", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Reform the penitentiary system in order to lessen prison overcrowding and ensure the necessary sanitary conditions for inmates, enhance access to medical services and reduce to a minimum and investigate harsh treatment or abuse of authority by prison personnel ", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Accede, as early as possible, to the Convention relating to the Status of Stateless Persons and the Convention on the Reduction of Statelessness ", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Establish a national human rights institution in accordance with the Paris Principles\n", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Further its endeavours with regard to the smooth and productive activities of the National Anti-Corruption Commission and the Standing Committee on Trafficking in Persons", - "values": [ - "4 - General action" - ] - }, - { - "text": "Take all the necessary steps to prevent intercommunity confrontations and violence", - "values": [ - "4 - General action" - ] - }, - { - "text": "Adopt all necessary measures to ensure equality between men and women fully and in all circumstances.", - "values": [ - "4 - General action" - ] - }, - { - "text": "Comply with commitments enshrined in the Durban Declaration and Plan of Action, particularly as regards the prevention and punishment of discrimination against the population of Kurdish origin ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Redouble effort to achieve the appropriate implementation of the Convention of the Rights of the Child, in particular with regard to full exercise of right to education, and the protection of minors from sexual abuse and exploitation and, above all, to put an end to detention of foreign children in closed detention centres, in accordance with the decision of Minister of Migration Policy and Asylum", - "values": [ - "4 - General action" - ] - }, - { - "text": "Strengthen human rights education plans oriented towards women's rights, rights of the child and freedom of religion", - "values": [ - "4 - General action" - ] - }, - { - "text": "Abandon the Kafala sponsorship system", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Standardize the legal requirements for migrant workers, taking into account the time of residence, in particular with regard to the obligation to pass the exam of knowledge of the Russian language ", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Prevent, investigate and punish the excessive use of force, arbitrary detention, threats and harassment directed against human rights defenders by security forces", - "values": [ - "4 - General action" - ] - }, - { - "text": "Consider withdrawing its reservations to the International Convention on the Protection of the Rights of All Migrant Workers and Members of Their Families ", - "values": [ - "3 - Considering action" - ] - }, - { - "text": "Study the possibility to ratify the International Convention for the Protection of All Persons from Enforced Disappearance ", - "values": [ - "3 - Considering action" - ] - }, - { - "text": "Implement the Convention on the Rights of the Child through the 2012 General Education Act, to enable all children to join school", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Continue efforts to mainstream human rights into general policies", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Adopt appropriate measures to address the expansion of illegal armed groups that have emerged after the demobilization of paramilitary organizations, paying particular attention to combating impunity, ensuring independence of judges and the judiciary system, and providing reparation for victims of such events ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Take all necessary measures to prevent any kind of reappearance of Nazism in order to eradicate the root cause of all racially motivated criminal acts", - "values": [ - "4 - General action" - ] - }, - { - "text": "Bring national legislation into line with the international instruments it has ratified", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Put in place the national institute of human rights that was recently provided for under law, and provide it with the technical and financial resources necessary, requesting cooperation from OHCHR.", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Fully guarantee the right to freedom of expression, press and political activity, including through the adoption of concrete measures aimed at the implementation of articles 24, 25, 26 and 27 of the Iranian Constitution", - "values": [ - "4 - General action" - ] - }, - { - "text": "Continue its advocacy for keeping global warming at or below 1.5 degrees Celsius above the pre-industrial level", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Develop its national human rights institution to fully adapt it to the Paris Principles, with a legal mandate which is clear and as broad as possible, and with sufficient financial resources ", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Amend the Criminal Code to ensure equal protection of boys and girls from all forms of sexual abuse and exploitation", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Implement its commitment to repeal Section 151 of the Penal Code to decriminalize same-sex relationships", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Strengthen migration policies based on respect for the human rights of all migrants", - "values": [ - "4 - General action" - ] - }, - { - "text": "Continue its reconstruction efforts in cooperation with the international community, in accordance with national priorities reflected in the Afghanistan National Development Strategy", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Intensify its efforts and measures to consolidate the state of law and its national mechanisms on human rights", - "values": [ - "4 - General action" - ] - }, - { - "text": "Strengthen its efforts to achieve a level of ODA up to 0.7% of GNI ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Continue the efforts made within the framework of fighting violence against women ", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Continue reinforcing advanced programmes in the field of education, culture and social assistance in favour of national minorities and other vulnerable sectors of the population in the fight against poverty and social inequality", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Issue a standing invitation to the special procedures of the Human Rights Council", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Take steps to prevent and respond to incidents of violence and intimidation against members of minority religious groups, including through education and awareness campaigns and effective interventions by law enforcement officials", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Guarantee the freedom of expression and peaceful assembly, as well as the free activity of human rights defenders, to independent journalists and political opponents ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Further promote women\u2019s empowerment by increasing the number of women in leadership positions in all spheres of life", - "values": [ - "4 - General action" - ] - }, - { - "text": "Consider ratification of the Second Optional Protocol to the International Covenant on Civil and Political Rights with the view to abolish the death penalty and to introduce a moratorium on executions, as undertaken during the previous review", - "values": [ - "3 - Considering action" - ] - }, - { - "text": "Ratify ICRMW in order to enhance the full enjoyment of human rights ", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "As a follow-up to the recommendations contained in A/HRC/21/9, paras. 110.39 and 110.103, consider along with stakeholders the possibility of a universal basic income to replace the existing social protection system (recommendations 110.39 and 110.103 of the second cycle)", - "values": [ - "3 - Considering action" - ] - }, - { - "text": "Duly consider the recommendations contained in the report of the Truth, Justice and Reconciliation Commission", - "values": [ - "3 - Considering action" - ] - }, - { - "text": "Recognize and guarantee the human rights of all foreigners, independent and regardless of their migratory status ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Submit its report to the Human Rights Committee", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Provide invitations to other United Nations Special Rapporteurs, in particular those responsible for freedom of opinion and expression, freedom of religion or belief, as soon as possible, to visit Cuba", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Respect its obligations under international law as a State party to the Second Optional Protocol to the International Covenant on Civil and Political Rights, aiming at the abolition of the death penalty", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Continue to improve the living conditions of Roma people", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Begin a national consultation process with governmental and nongovernmental actors on the most appropriate national preventive mechanism and establish its national preventive mechanism accordingly \n", - "values": [ - "4 - General action" - ] - }, - { - "text": "Redouble its efforts to eradicate child labour and all forms of exploitation, abuse and violence against children", - "values": [ - "4 - General action" - ] - }, - { - "text": "will examine whether to ratify the ICRMW following a study of possible legal implications", - "values": [ - "3 - Considering action" - ] - }, - { - "text": "Ratify the Optional Protocol to the Convention on the Elimination of All Forms of Discrimination against Women to better fight against discrimination against women and to ensure greater protection of such group", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Establish the official moratorium on the use of the death penalty", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Investigate thoroughly all acts of violence against women and defenders of women's rights and bring those responsible to justice.", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Intensify its efforts to change stereotypical images and discriminatory attitudes and perceptions about the roles and responsibilities of women and men in the family and in society ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Consolidate the independence and overall capacity of the judicial system.", - "values": [ - "4 - General action" - ] - }, - { - "text": "Implement measures to strengthen the system of justice administration in order to ensure equal access and due process and to fight impunity", - "values": [ - "4 - General action" - ] - }, - { - "text": "Engage the civil society in the follow-up implementation process of the recommendations raised during the universal periodic review", - "values": [ - "4 - General action" - ] - }, - { - "text": "Build on the achievements of the National Framework for Protection of Australian children [2009-2020]", - "values": [ - "4 - General action" - ] - }, - { - "text": "Increase the pace of cooperation with Treaty Bodies ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Take further measures aiming at promoting women participation in public life and particularly their representation in Parliament", - "values": [ - "4 - General action" - ] - }, - { - "text": "Take appropriate measures, as possible, to make up for the delay accumulated over the past years in presenting its reports to various human rights bodies", - "values": [ - "4 - General action" - ] - }, - { - "text": "Continue to develop policies aimed at improving information infrastructure for the benefit of Cuban society ", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Consider taking steps with a view to abolishing death penalty", - "values": [ - "3 - Considering action" - ] - }, - { - "text": "Review its national laws and policies in order to ensure that surveillance of digital communications is consistent with its international human rights obligations and is conducted on the basis of a legal framework which is publicly accessible, clear, precise and non-discriminatory", - "values": [ - "3 - Considering action" - ] - }, - { - "text": "Take measures to include the crime of trafficking in persons in all parts of the federation and strengthen the resource basis for the protection of victims", - "values": [ - "4 - General action" - ] - }, - { - "text": "Further improve her policies and follow-up measures to foster justice, equality, tolerance as well as the full guarantee of human rights for the vulnerable groups, in particular women and foreign workers ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Consider utilizing the Recommended Principles and Guidelines on Human Rights and Human Trafficking developed by OHCHR as a reference tool ", - "values": [ - "3 - Considering action" - ] - }, - { - "text": "Adopt all the necessary measures to lift reservations to the Convention on the Elimination of all Forms of Discrimination against Women", - "values": [ - "4 - General action" - ] - }, - { - "text": "Ratify the main United Nations human rights instruments, particularly ICRMW", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Strengthen efforts to enhance the capacities of law enforcement agencies and judicial organs ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Continue towards the abolition of death penalty", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Reform the laws, regulations and codes of conduct that regulate the functioning of the police to bring them into line with international human rights standards ", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Take additional measures to combat stigmatization and stereotyping, including through awareness-raising initiatives and to respond to instances of racist remarks or acts by high-level public officials", - "values": [ - "4 - General action" - ] - }, - { - "text": "Ensure that all cases of violence against women and girls are thoroughly and effectively investigated and that perpetrators are prosecuted ex officio and adequately punished", - "values": [ - "4 - General action" - ] - }, - { - "text": "The Government is committed to create an environment which is free of fear and intimidation and is one that is conducive to debate and dialogue on national political processes. ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Use detention as a last resort and treat asylum seekers in accordance with international human rights standards and in compliance with the principle of non-refoulement ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Continue working to improve the services given to the victims of discrimination and hatred, especially religious hatred, and continue in raising awareness about this crime", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Enact legislation in order that violence against women constitutes a criminal offence, that women and girls who are victims of violence have access to immediate means of redress and protection, and that perpetrators are prosecuted and punished", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Make the National Plan for the Prevention and Eradication of Commercial Sexual Exploitation of Children operational by ensuring public funding ", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Continue with the policy of dialogue and openness with all social movements concerned with human rights, as well as with civil society organizations", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Take the measures necessary to ensure the return and restitution of housing and lands in conformity with international standards for internally displaced persons.", - "values": [ - "4 - General action" - ] - }, - { - "text": "Remove any structural and institutional impediments that hinder the implementation of the Freedom of the Mass Media and Access to Information Proclamation ", - "values": [ - "4 - General action" - ] - }, - { - "text": "End military attacks against the civilian Palestinian population.", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Request technical assistance from OHCHR for the harmonization of domestic legislation with the international human rights standards ", - "values": [ - "1 - Minimal action" - ] - }, - { - "text": "Emphasize the measures addressed to reduce poverty and inequality ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Accelerate the process of legal reform with the aim of harmonizing the internal regulations with the Convention on the Elimination of All Forms of Discrimination against Women", - "values": [ - "4 - General action" - ] - }, - { - "text": "Engage partners at the national, regional and international levels in efforts aimed at building capacity for Government personnel in the field of human rights, particularly judicial and law enforcement personnel ", - "values": [ - "1 - Minimal action" - ] - }, - { - "text": "Take measures as necessary to ensure free circulation of humanitarian workers so that they may access refugees and displaced persons.", - "values": [ - "4 - General action" - ] - }, - { - "text": "Review interrogation monitoring procedures.", - "values": [ - "3 - Considering action" - ] - }, - { - "text": "Adopt legislation to address all forms of violence against women and modify existing laws that discriminate against women and girls ", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Ratify the Convention on the Rights of Persons with Disabilities as soon as possible", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "The Government will continue initiatives directed at reconstruction and restoration of physical and social infrastructure in areas within and proximate to the former theatres of conflict", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Ensure the right to abortion after rape throughout the country in accordance with the recent Federal Supreme Court verdict on this issue", - "values": [ - "4 - General action" - ] - }, - { - "text": "End State-sponsored discrimination based on the "songbun" system, as well as pervasive discrimination against women", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Combat discrimination on account of nationality, ethnic or religious affiliation, and sexual orientation or gender identity", - "values": [ - "4 - General action" - ] - }, - { - "text": "Continue with its commendable efforts to promote and protect human rights and freedoms", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Continue to work towards protecting and promoting the rights of marginalized and vulnerable population ", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Take concrete steps to encourage and facilitate open and public debate on religious issues ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Ensure that children belonging to minority groups have equal and adequate access to education, health and other services.", - "values": [ - "4 - General action" - ] - }, - { - "text": "Continue efforts for the finalization of National Human Rights Plan", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Adopt all necessary measures to remove the restrictions which prevent the full enjoyment of the right to freedom of expression and association and to amend the "Suppression of Terrorism Act" of 2008 and other relevant legislation in line with international standards", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Strengthen its efforts to eliminate persistence of patriarchal attitudes and stereotypes regarding the roles and the responsibilities of women and men", - "values": [ - "4 - General action" - ] - }, - { - "text": "Step up efforts to implement the Action Plan for the Human Rights Roadmap for Somalia, as well as to reduce and prevent violence against women", - "values": [ - "4 - General action" - ] - }, - { - "text": "Put into place domestic measures and mechanisms aimed at strengthening accountability and ensure redress and reparations for victims of possible human rights violations", - "values": [ - "4 - General action" - ] - }, - { - "text": "Investigate promptly, effectively and independently allegations of torture in order to ensure that those responsible are brought to justice", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Continue its efforts for a systematic and sustained training process of child as well as developing the Child Protection Management Information System (CPMIS) and advancement in child immunization", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Introduce, in collaboration with civil society organizations and public personalities, measures aimed at ensuring women's right to non-discrimination and equality, as proposed by the Committee on the Elimination of Discrimination against Women", - "values": [ - "4 - General action" - ] - }, - { - "text": "Increase all kinds of measures to effectively combat impunity regarding acts of violence against women, as well as to prevent, investigate, prosecute and sanction the acts of violence perpetrated against women by State agents and other persons ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Enforce the Trafficking and Smuggling Persons Order to hold accountable labour and sex traffickers ", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Continue its efforts to harmonize its national legislation with international standards", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Speed up formalities for the submission of pending reports to CEDAW", - "values": [ - "4 - General action" - ] - }, - { - "text": "Continue and intensify efforts to eradicate female genital mutilations and gavage, including implementation of legal measures to penalise these practices", - "values": [ - "4 - General action" - ] - }, - { - "text": "In compliance with the provisions of the International Convention on the Elimination of All Forms of Racial Discrimination, establish actions aimed at promoting equality within the population so as to put an end to the existing discrimination and so that the national legislation is enforced ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Continue to combat violence against women", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Decriminalize homosexual conduct by reforming the penal code so that for the purposes of prosecution, gross indecency would not apply to private acts between consenting adults", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Consider adoption of the comprehensive national plan of action to achieve gender equality", - "values": [ - "3 - Considering action" - ] - }, - { - "text": "Continue strengthening its efforts to improve the socio-economic conditions of its people especially on promoting the rights to education for all its young citizens", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Take all necessary measures to abolish the death penalty and to ratify the Second Optional Protocol to the ICCPR ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Take all necessary measures to protect and promote the rights of persons, notably children with disabilities ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Amend all laws and practices to ensure that no person under the age of 18 at the time of the crime can be sentenced to death", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Maintain as a Government priority awareness and education on human rights", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Strengthen the criminal justice system in the country, to promptly and effectively investigate all alleged cases of enforced disappearances, disproportionate use of force, attacks, threats, harassments against human rights defenders, and ensure that perpetrators are brought to justice and victims receive reparations", - "values": [ - "4 - General action" - ] - }, - { - "text": "Implement the conclusions of the National Dialogue on HIV and Human Rights, and adopt the proposed bill", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Facilitate the work of civil society actors by removing excessive requirements for their registration, operation and funding and aligning the Law on Associations with the Constitution", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Consider ratifying the International Convention on the Protection of the Rights of All Migrant Workers and Members of Their Families, as previously recommended", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Take effective measures to strengthen the capacity of the newly established human rights institutions including the Ministry of Human Rights and Civil Liberties, and the national observatory on violence against women and children", - "values": [ - "4 - General action" - ] - }, - { - "text": "Continue to take further action as appropriate to combat trafficking in women and children", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Consider adopting the new constitution as soon as possible", - "values": [ - "3 - Considering action" - ] - }, - { - "text": "Promote land use management for better safeguarding of property rights", - "values": [ - "4 - General action" - ] - }, - { - "text": "Ensure the prompt, impartial and effective investigation into and put a stop to the arbitrary detention, harassment and persecution of human rights defenders", - "values": [ - "4 - General action" - ] - }, - { - "text": "Review and assess how the rights of persons with disabilities, including mental disabilities, are guaranteed within prisons and establish a comprehensive training programme for law enforcement and prison staff to ensure effective implementation of the rights of persons with disabilities in detention facilities, including persons with mental disabilities", - "values": [ - "3 - Considering action" - ] - }, - { - "text": "Address gaps in the protection of migrants rights", - "values": [ - "4 - General action" - ] - }, - { - "text": "Continue strengthening the freedom of the media and the rights of media workers", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Take additional measures to eliminate inequalities between women and men", - "values": [ - "4 - General action" - ] - }, - { - "text": "Develop a comprehensive national plan for human rights which will permit the fulfilment of the obligations arising from the international instruments to which Portugal is a party ", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Enhance its efforts to abolish the death penalty", - "values": [ - "4 - General action" - ] - }, - { - "text": "Ensure that the upcoming elections are democratic, transparent and fair in order to allow for a definitive return by Guinea to the democratic international and regional arena, in line with the Ouagadougou Agreement of 15 January 2010 ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Fully implement the laws on gender equality and equal treatment, in accordance with the commitment formulated in paragraph 153 of its national report ", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Continue implementing the Strategic National Plan to fight against HIV/AIDS and continue the actions aimed at improving the health service coverage ", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Strengthen its current laws and continue robust implementation of the Equal Treatment Law to ensure equality for women, including with regard to employment and educational opportunities, as well as ensuring access to the judicial system to address domestic violence, rape and sexual harassment ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Prohibit and criminalize the corporal punishment of children", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Actively promote access to education for young girls", - "values": [ - "4 - General action" - ] - }, - { - "text": "Invite for visits to the country, the Special Rapporteur on torture, the Special Rapporteur on human rights defenders and the Special Rapporteur on the independence of judges and lawyers", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Create an environment conducive for free, fair and peaceful elections and ensure the personal safety and equal treatment of all candidates and voters throughout the electoral process in the upcoming presidential elections and beyond", - "values": [ - "4 - General action" - ] - }, - { - "text": "Adopt legislation and strengthen action plans addressing the serious phenomenon of femicide and gender-based violence ", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Strengthen the Federal Government's effort to guarantee freedom of religion to everyone in this world largest democracy ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Respect the right to assembly throughout the process of reviewing the Constitution ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Develop strategies to address human rights violations stemming from its political and social instability ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Ensure universal, compulsory and free education, carrying out on a priority basis measures aimed at eradicating discrimination, particularly discrimination that affects girls, marginal groups and persons with disabilities", - "values": [ - "4 - General action" - ] - }, - { - "text": "Decriminalize consensual sexual relations, including by repealing the provisions in articles 489 to 493 of the Criminal Code prohibiting same-sex sexual relations, sexual relations outside marriage and adultery", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Enact laws pertaining to anti-discrimination", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Harmonize the definition of torture contained in the national legislation with the requirements of the CAT and ensure that statements obtained under duress are not admitted in court", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Pay special attention to combating domestic and sexual violence, by implementing a new national action plan and ensure that it reinforces the provision of services to women and girl victims of sexual violence", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Take the steps to abolish the death penalty under the law.", - "values": [ - "4 - General action" - ] - }, - { - "text": "Undertake an ambitious reform of the judicial system, which should be conducted in line with all applicable international standards, notably the principle of the separation of powers, and which should be endowed with the necessary resources for its implementation ", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Continue to develop the judicial system in order to ensure respect for, and protection of citizens' rights ", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Consider the ratification of the following international instruments: the Second Optional Protocol to the International Covenant on Civil and Political Rights, aiming at the abolition of the death penalty (ICCPR-OP2), the Optional Protocol to the Convention on Economic, Social and Cultural Rights, and the Optional Protocol to the Convention on the Elimination of All Forms of Discrimination against Women", - "values": [ - "3 - Considering action" - ] - }, - { - "text": "Cooperate with the United Nations human rights mechanisms", - "values": [ - "4 - General action" - ] - }, - { - "text": "Ensure, as established by the International Convention on the Elimination of All Forms of Racial Discrimination (CERD), access to housing without any discrimination, particularly to the most vulnerable groups, including the Roma ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Continue to adopt measures to provide for adequate treatment to refugees, in particular through the adoption of procedures or protection mechanisms to refugee claimants, especially non-accompanied boys, girls and adolescents ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Put in place a comprehensive strategy, including legislative measures to eliminate practices and stereotypes that discriminate women, such as female genital mutilation ", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Ensure that its climate change-related policies are informed by its human rights commitments and obligations", - "values": [ - "4 - General action" - ] - }, - { - "text": "Continue the patterns that it has legitimately and sovereignly marked out for its democratic course and good governance, with the effective implementation of the culture of acknowledging and respecting each and every one of the human rights in the idiosyncratic customs of the societies and cultures that compose the mosaic of the State of Equatorial Guinea ", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Review its legislation in order to protect and promote the right to freedom of opinion and expression, including on the Internet, also providing protection to journalists against harassment by police and other authorities", - "values": [ - "3 - Considering action" - ] - }, - { - "text": "That the Government set out how it intends to guarantee the independence of the judiciary and the transparency of its processes and hierarchy ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Continue to engage in poverty elimination to narrow the gap between its cities and rural areas and raise people's living standards", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Further intensify its efforts to combat human trafficking in line with implementing the National Plan and address properly protection of victims of human trafficking", - "values": [ - "4 - General action" - ] - }, - { - "text": "Consider ratifying the United Nations Convention against Corruption ", - "values": [ - "3 - Considering action" - ] - }, - { - "text": "Include human rights education in curricula in educational institutions", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Enhance dialogue with and assistance to vulnerable groups, in particular ethnic minorities", - "values": [ - "4 - General action" - ] - }, - { - "text": "Take adequate measures to train the police and other officials who deal with the issue of domestic violence ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Strengthen its legislation and assistance to victims of gender-based violence to ensure that the rights of all victims, including former spouses or long-term partners who did not live in a common household, are recognised and that they receive equal treatment", - "values": [ - "4 - General action" - ] - }, - { - "text": "Consider the ratification of the UNESCO Convention against Discrimination in Education ", - "values": [ - "3 - Considering action" - ] - }, - { - "text": "Heed the call of the Committee on the Rights of the Child for an independent ombudsman for children", - "values": [ - "4 - General action" - ] - }, - { - "text": "Continue its efforts to consolidate national institutions and mechanisms set up for the promotion and protection of human rights in the country", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Strengthen the measures to combat child labour and the exploitation of children", - "values": [ - "4 - General action" - ] - }, - { - "text": "Redouble efforts for the prevention, sanction and eradication of all forms of violence against women and attain equality of rights between men and women in all spheres of life ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Abolish the death penalty in law", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Implement public awareness campaigns to promote tolerance and respect for cultural diversity", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Accelerate the reform of the judicial system in order to ensure good governance and equality of treatment of people from different social classes ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Ensure that all allegations of torture and ill-treatment are investigated by an independent mechanism, and that alleged perpetrators are effectively prosecuted", - "values": [ - "4 - General action" - ] - }, - { - "text": "Adopt a moratorium on the death penalty", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Revise the compliance of relevant existing laws, in particular articles 25 and 111 of the Penal Code, with international standards of freedom of expression and protect human rights defenders, journalists and bloggers against persecution and harassment", - "values": [ - "3 - Considering action" - ] - }, - { - "text": "Speedily implement the new Criminal Code, declaring sexual violence a crime, while guaranteeing the impartiality of investigation and questioning.", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Improve access to health, education and social welfare for vulnerable groups, including for those in rural areas, ethnic minorities, women, migrants and refugees", - "values": [ - "4 - General action" - ] - }, - { - "text": "Ensure effective protection of Muslim minorities, including their places of worship", - "values": [ - "4 - General action" - ] - }, - { - "text": "Adjust and specify the applicable conditions and stipulations for the adoption of compulsory measures such as arrest, release on bail pending trial and residential surveillance", - "values": [ - "4 - General action" - ] - }, - { - "text": "Accede to ICESCR, the CRC and ILO convention No. 111", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Ratify the Convention on the Rights of Persons with Disabilities and the International Convention for the Protection of All Persons from Enforced Disappearance, and incorporate in national legislation a distinct crime of torture in strict compliance with Article 1 of the Convention against Torture and Other Cruel, Inhuman or Degrading Treatment or Punishment ", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Continue its efforts to increase the representation of women at senior levels within the public administration, including the diplomatic service, judiciary and educational institutions, as well as the private sector", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Adopt comprehensive measures to address violence against women and girls, including criminalizing all forms of violence against women", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Complete, without delay, the ratification process of CRPD", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Continue the Government's efforts in providing the necessary training to the law enforcement officials in the area of human rights", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Reinforce efforts in addressing violence against women, including through increasing victims' access to justice ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Continue its national efforts to combat corruption and impunity", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Establish an independent body monitoring the fulfilment of child rights empowered to receive and investigate complaints on the violations of the rights of the child ", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Repeal article 534 of the Penal Code", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Put in place a comprehensive strategy for dealing with issues of racism and racial discrimination ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Rwanda is committed to submit periodic reports on the implementation of key human rights treaties: all overdue reports have been prepared and submitted to Treaty Bodies in 2009 and 2010.", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Continue the efforts aiming at promotion and protection of the rights of women ", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Amend all legislation that discriminates against persons on the grounds of their sexual orientation or gender identity, as well as investigate incidents or acts of violence motivated by homophobia or transphobia and bring to justice those responsible for such acts", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Persevere in its actions in favour of development and share its experience in this regard with the international community ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Adopt legislative measures for an effective implementation of the Rome Statute", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Establish through legislation an independent judiciary and bring the legal framework that governs the organization, functioning and competence of military tribunals into conformity with international principles ", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Promoting primary education for all", - "values": [ - "4 - General action" - ] - }, - { - "text": "Strengthen efforts to prevent, investigate effectively, prosecute and punish all hate crimes, as well as acts of racial discrimination, xenophobia and related intolerance", - "values": [ - "4 - General action" - ] - }, - { - "text": "Continue pursuing socio-economic and political transformation process that will also imply the framing of a new constitution ", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Ratify the Hague Convention on Protection of Children and Cooperation in respect of Inter-country Adoption ", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Bring legislation, including the Criminal Code, in line with the provisions of the International Convention on the Elimination of All Forms of Racial Discrimination", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Make further efforts to improve conditions in penitentiary institutions ", - "values": [ - "4 - General action" - ] - }, - { - "text": "(1) Universal coverage by 2010.(2) Establishing 90 telemedicine stations for remote locations.(3) Standardizing the Mandatory Health Plan for children of all social strata as a first step towards compliance with Constitutional Court order No. T-760 of 2008, which requires benefits for children, adults and citizens in general to be standardized.(4) Reducing maternal and infant mortality in accordance with the Millennium Development Goals.(5) Putting the national public health plan and the sexual and reproductive health plan into effect.(6) Improving nutrition levels among girls.(7) Combating HIV/AIDS, malaria and other serious illnesses.", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Strengthen the measures undertaken to combat domestic violence in general and violence against children in particular", - "values": [ - "4 - General action" - ] - }, - { - "text": "Sustain and scale up the ongoing efforts to attain the Sustainable Development Goals, such as access to drinking water, food security, access to health care and education", - "values": [ - "4 - General action" - ] - }, - { - "text": "Continue enhancing the rights of persons with disabilities as well as accelerate the ratification process for the Convention on the Rights of Persons with Disabilities (CRPD)", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Involve civil society more actively in developing national human rights policies, strategies and action plans", - "values": [ - "4 - General action" - ] - }, - { - "text": "Intensify efforts to empower and improve the status of women in society and adopt additional measures to eliminate all forms of discrimination against women, promote their literacy, ensure equal treatment and safe environment for women in the workplace and combat gender-based violence", - "values": [ - "4 - General action" - ] - }, - { - "text": "Strengthen measures promoting access of vulnerable population to public and social and health services", - "values": [ - "4 - General action" - ] - }, - { - "text": "Cooperate with special procedures mandate-holders by accepting the visit request made by the Special Rapporteur on the sale of children, child prostitution and child pornography ", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Continue its role in promoting genuine interfaith dialogue", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Accelerate efforts to increase school enrolment, including parity between girls and boys.", - "values": [ - "4 - General action" - ] - }, - { - "text": "Promote gender equality in law and in practice in order to increase the participation of women in the political and economic life of the country", - "values": [ - "4 - General action" - ] - }, - { - "text": "Expand the protection scope for migrants and their families and continue efforts to enhance the safety and welfare of foreign workers ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Continue to ensure effective protection of victims of domestic violence", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Strengthen efforts to restrict outbreaks of racism and xenophobia, especially manifestations of racism on the Internet", - "values": [ - "4 - General action" - ] - }, - { - "text": "Strengthen existing mechanisms in the current social, political and economic structures of the Fijian society to safeguard the rights of ethnic minorities", - "values": [ - "4 - General action" - ] - }, - { - "text": "Adopt legislation to prevent and combat violence against women and domestic violence", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Enhance the level of cooperation with treaty bodies and special procedures mandate holders, which implies submitting overdue national reports, such as in the case of CERD and CESCR, and give consideration to responding to questionnaires and requests for visits of the mandate holders ", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Continue to combat all forms of violence against women and children, as well as strengthen specialized care for victims", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Speed up the ratification procedure of the International Convention for the Protection of All Persons from Enforced Disappearance", - "values": [ - "4 - General action" - ] - }, - { - "text": "Ban child marriage", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Consider the ratification of ICRMW and the Protocol to prevent, suppress and punish trafficking in persons, especially women and children ", - "values": [ - "3 - Considering action" - ] - }, - { - "text": "Consider implementing, as appropriate, the recommendations of human rights treaty bodies and special procedures with respect to asylum seekers and irregular immigrants, especially children ", - "values": [ - "3 - Considering action" - ] - }, - { - "text": "Take further steps towards the promotion of the human rights situation in Myanmar, especially for ethnic, religious and linguistic minorities and vulnerable groups", - "values": [ - "4 - General action" - ] - }, - { - "text": "Take necessary steps to intensify the judicial prosecution of all cases of alleged torture and violence committed by members of the armed forces ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Accede to the International Covenant on Civil and Political Rights as a priority ", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Intensify its commitment to working constructively with religious and other minorities, to address their grievances, including those of Alevi groups and the status of cemevis", - "values": [ - "4 - General action" - ] - }, - { - "text": "Establish a clear legal definition of disability", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Take adequate measures to reduce and eradicate incidents of sexual gender-based violence committed by armed elements and establish and strengthen accountability mechanisms", - "values": [ - "4 - General action" - ] - }, - { - "text": "Intensify programmes and activities related to human rights training to police and military personnel", - "values": [ - "4 - General action" - ] - }, - { - "text": "Intensify its work on improving prison conditions and bring them fully into line with international standards", - "values": [ - "4 - General action" - ] - }, - { - "text": "Continuously carry forward its State policy of ensuring harmonization of inter-ethnic and interreligious relations, and share its excellent practices with other countries", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Take appropriate measures and further actions to combat trafficking in women and children and impose appropriate punishment for it on perpetrators ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Amend its Juvenile Act to reach the international standards and particularly change the definition of juveniles to ensure that all persons under 18 years old are provided with protection and guarantees ", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Take appropriate measures to ease restrictions on freedom of expression and freedom of the media", - "values": [ - "4 - General action" - ] - }, - { - "text": "Review its domestic legislation in order to criminalize sexual abuse within marriage", - "values": [ - "3 - Considering action" - ] - }, - { - "text": "Amend the Peaceful Assembly Act to allow the full enjoyment of the freedom of association, expression and peaceful assembly, by removing limitations or restrictions on movement, location or participation", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Continue working to attain the objectives stated by the country in its strategic framework Vision 2020 ", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Continue to strengthen labour laws by implementing the provisions of the June 2011 ILO treaty that extends key labour protections to domestic workers ", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Prohibit by law and in practice corporal punishment of children in all settings, including in orphanages and child welfare centres", - "values": [ - "4 - General action" - ] - }, - { - "text": "Undertake intensive public awareness programmes of the population relating to ritual murders", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Ensure the implementation of existing laws guaranteeing non- discrimination ", - "values": [ - "4 - General action" - ] - }, - { - "text": "The Royal Government will actively and deeply reform land management by focusing on the management, organization, utilization and distribution of land in order to achieve national goals for poverty reduction, food security and the protection of environment and natural resources, keeping in line with the process of socio-economic development and in accordance with the free market principles.", - "values": [ - "4 - General action" - ] - }, - { - "text": "Ratify or accede to the Agreement on Privileges and Immunities of the International Criminal Court and implement it fully at national level", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Continue to increase its efforts to prevent violence against women and girls and conduct thorough, prompt investigations into all reports of such violence, and end impunity for these crimes", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Train judges and prosecutors on laws related to violence against women and train police forces on the protocols to assist women victims of violence", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Continue its current momentum and efforts on democracy, good governance, legislative reform and capacity building for national human rights mechanisms, with more focus on employment for youth, education, health care, social welfare and preparedness and resilience in response to climate change ", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Finalize legislation on free birth registration for all citizens and enhance registration systems and continue campaigns to this effect", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Continue strengthening the integration programmes of national minorities to ensure their economic, social and cultural rights", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Ratify all the core international human rights treaties to which the country is not yet a party, including the International Covenant on Civil and Political Rights, the International Covenant on Economic, Social and Cultural Rights, the International Convention on the Elimination of All Forms of Racial Discrimination, the Convention against Torture as well as the International Convention for the Protection of All Persons from Enforced Disappearance", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Take appropriate measures to align the conditions of detainees with international standards.", - "values": [ - "4 - General action" - ] - }, - { - "text": "Continue to denounce in international forums the unilateral coercive measures, in particular the inacceptable economic blockade imposed by the United States of America and continue consolidating international efforts aimed at repealing it ", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Consider additional efforts to increase the role of women in society", - "values": [ - "3 - Considering action" - ] - }, - { - "text": "Cease execution by stoning", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Apply a moratorium on death penalty as a first step towards its effective abolition", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Continue promoting, by all appropriate means, the independence and impartiality of the judiciary", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Continue to implement and strengthen public policies and programmes for inclusion, reduction of poverty and inequality, non-discrimination and promotion of equality and inclusion", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Complete the reforms of the justice system and ensure the compliance of domestic legislation with the revised Constitution and the new legislation on the judiciary ", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Develop and implement specific laws and policies to recognize and protect the work of human rights defenders", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Delete from the Press Code sentences involving deprivation of liberty and revise the criminal provisions in the area of freedom of expression so that no journalist or human rights defender can be arrested for a simple fact of having expressed his opinion ", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Study the possibility of becoming party to the following international instruments: the Convention on the Rights of Persons with Disabilities, the Optional Protocol to the Convention on the Rights of Persons with Disabilities ", - "values": [ - "3 - Considering action" - ] - }, - { - "text": "Review the Law of Political Parties, Public Meetings, and Demonstrations and its compliance with the article 201 of the Constitution", - "values": [ - "3 - Considering action" - ] - }, - { - "text": "Continue strengthening successful social programmes to improve the quality of life of their people particularly the most marginalized", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Enhance the promotion and protection of the right to freedom of thought, conscience and religion, including the right to manifest such individually or in community with others in public or private, in worship, observance, practice and teaching, in line with all the provisions under article 18 of ICCPR, to which the Democratic People's Republic of Korea is a State party", - "values": [ - "4 - General action" - ] - }, - { - "text": "Continue efforts towards female empowerment and achieve gender equality ", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Consider adopting legislation or other measures that enable investigation and prosecution for gender-based violence ", - "values": [ - "3 - Considering action" - ] - }, - { - "text": "Continue efforts to tackle discrimination against Roma people in all sectors of society", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Fully respect the rights of everyone to be free to leave and return to their own country, in conformity with article 12 of the International Covenant on Civil and Political Rights to which Turkmenistan is party.", - "values": [ - "4 - General action" - ] - }, - { - "text": "Ratify the International Convention for the Protection of All Persons from Enforced Disappearance and the Rome Statute of International Criminal Court", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Accelerate the finalization of the action plan by the Council for Counteracting Racial Discrimination, Xenophobia and Related Intolerance with a view to ensure a well-planned and coordinated approach in combating acts of racism and xenophobia ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Continue efforts to formulate a national human rights action plan", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Increase its efforts to ensure access to basic services, as well as freedom of movement, for all residents", - "values": [ - "4 - General action" - ] - }, - { - "text": "Ensure effective implementation of the law on the protection of women against domestic violence", - "values": [ - "4 - General action" - ] - }, - { - "text": "Further strengthen efforts to combat trafficking in persons providing assistance and protection to victims, and ensuring that perpetrators of such crimes are brought to justice", - "values": [ - "4 - General action" - ] - }, - { - "text": "Continue its efforts to achieve full social integration of minorities, especially the Roma and take urgent measures to combat and prevent racist incidents and hate crimes ", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Proceed to the ratification of the Optional Protocol to the International Covenant on Economic, Social and Cultural Rights ", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Take necessary measures to ensure that its commitment to eliminating racial discrimination is fully respected, particularly by law and order forces, as well as by the criminal justice system", - "values": [ - "4 - General action" - ] - }, - { - "text": "Take all adequate measures to guarantee the protection and promotion of religious freedom, including by adopting legislation recognizing all churches and religious communities.", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Continue its efforts to achieve gender equality", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Bring Turkmenistan's laws into line with articles 14 and 15 of the International Covenant on Civil and Political Rights", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Strengthen the efforts of reforming the punitive system, including the development of the prison and detention conditions", - "values": [ - "4 - General action" - ] - }, - { - "text": "Continue to strengthen measures focused on employment for persons, women, with disabilities ", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Incorporate the definition and prohibition of torture and other cruel, inhuman or degrading treatment in national legislation", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Ensure that human rights defenders can exercise their rights without interference and ensure the effective establishment of the NHRC", - "values": [ - "4 - General action" - ] - }, - { - "text": "Review its children-related normative framework, including the adoption of the Children's Protection and Welfare Bill, to ensure full conformity with the Convention ", - "values": [ - "3 - Considering action" - ] - }, - { - "text": "Ensure the integration of human rights into all school curriculums, and train law enforcement officers in human rights ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Develop policies and programmes to provide women with equal opportunities in the labour market, education and political and public representation, and take all necessary measures to guarantee the effective implementation of gender equality legislation, including by providing the Commissioner for Gender Equality and Equal Treatment with adequate resources ", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Consider with priority ratifying the Convention on the Rights of Persons with Disabilities", - "values": [ - "3 - Considering action" - ] - }, - { - "text": "Decriminalize consensual adult same-sex relations by amending sections 56 and 57 of the Offences against the Person Act and take all necessary steps to ensure the enjoyment of their rights by all persons without discrimination on grounds of sexual orientation or gender identity", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Commit to speedily implement an effective asylum system consistent with EU standards ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Establish a universal birth registration system that includes children of refugees and asylum seekers", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Increase efforts to prevent violence against women, particularly domestic and sexual violence", - "values": [ - "4 - General action" - ] - }, - { - "text": "Refrain from legislative initiatives which may criminalize homosexual relations between consenting adults", - "values": [ - "4 - General action" - ] - }, - { - "text": "Implement measures to promote inter-ethnic harmony and tolerance among the public at large, and continue the efforts to smoothen the reintegration of ethnic Serbs into Croatian society ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Accelerate the process of legal reform and ensure that all discriminatory provisions in the legislation, especially those regarding women, are abrogated ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Develop further its bilateral and multilateral cooperation and exchanges, notably in the area of economic, social and cultural rights ", - "values": [ - "1 - Minimal action" - ] - }, - { - "text": "Establish a moratorium on the use of the death penalty, with a view to its abolition", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Continue to strengthen regional and international cooperation in order to balance the provision of humanitarian assistance and socioeconomic development among the autochthonous and the huge number of refugees ", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Give appropriate priority to the improvement of detention conditions in the draft justice reform Plan under adoption", - "values": [ - "4 - General action" - ] - }, - { - "text": "Immediately close down all political prison camps, and release all prisoners of conscience, including relatives being held on the basis of guilt-by association ", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Pay special attention to protection of children of persons in detention or prison ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Strengthen accountability for abuses by the police and ensure that civilian authorities investigate, prosecute and try human rights abuses by police.", - "values": [ - "4 - General action" - ] - }, - { - "text": "Remunerate participation in internship programmes and accompany them with technical education training through shared programmes with the country's economic and industrial sector", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Prohibit, prevent and punish the use of lethal force in carrying out immigration control activities ", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Continue to make comprehensive efforts in economic and social development ", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Ensure equal access to employment, housing and education to ethnic minorities, especially women ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Maintain the moratorium on the use of the death penalty, with a view to abolishing it", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Submit its overdue report to the Human Rights Committee", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Continue to implement policies and programmes to prevent early school dropout of girls", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Invest the necessary resources to ensure the effective socialisation and implementation of its national policy on gender equality and the national strategic plan of action to eliminate gender-based violence when finalized", - "values": [ - "4 - General action" - ] - }, - { - "text": "Review the Organic Act on Communication and relevant executive decrees so that media outlets, civil society organizations and trade unions can operate freely, cannot be arbitrarily sanctioned or disbanded and have access to effective remedy", - "values": [ - "3 - Considering action" - ] - }, - { - "text": "On sexual violence against women, undertake due and timely investigations of all reported cases, punish the perpetrators and implement necessary rehabilitation programmes for the victims - intensify Government efforts to raise public awareness against this negative phenomenon and to fight persistent traditional stereotypes", - "values": [ - "4 - General action" - ] - }, - { - "text": "Take effective measures to combat child labor and sexual exploitation of children as well as forced marriages ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Continue implementation of the national programme to eradicate the legacy of slavery and expand public awareness campaigns against all forms of slavery", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Investigate all cases of aggressions or threats against human rights defenders, journalists, and civil society activists ", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Take measures, while fully respecting freedom of expression, to curtail stereotyping of minorities, particularly the Muslim community in the society", - "values": [ - "4 - General action" - ] - }, - { - "text": "Expedite the process towards the establishment of an independent national human rights institution in conformity with the Paris Principles", - "values": [ - "4 - General action" - ] - }, - { - "text": "Continue the implementation of policies pertaining to national minorities such as the Sami and the Roma with a view to improving their living conditions", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Review the compliance of its national legislation with provisions of the International Covenant on Civil and Political Rights on freedom of expression, association and assembly ", - "values": [ - "3 - Considering action" - ] - }, - { - "text": "Maintain the moratorium and ultimately move to abolish the death penalty in law ", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Continue to improve its legal instruments in the field of human rights and social protection", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Fiji is committed to inviting special mandate holders and will endeavour to invite one special mandate holder per year for key areas which are identified as a priority of the Fijian Government, such as areas concerning socio-economic rights, e.g. sanitation and water.", - "values": [ - "4 - General action" - ] - }, - { - "text": "Improve living conditions in prisons", - "values": [ - "4 - General action" - ] - }, - { - "text": "Take appropriate measures to improve the accessibility and quality of education", - "values": [ - "4 - General action" - ] - }, - { - "text": "Promptly and fully investigated, by judicial authorities, all extrajudicial executions and torture committed by security services and that those responsible are prosecuted, and that the government ensure publication of the reports of all national commissions of inquiry set up to investigate arbitrary executions", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Take all the necessary measures to optimize land distribution, while implementing a land reform, providing adequate support and training to beneficiaries, in close consultation with all stakeholders", - "values": [ - "4 - General action" - ] - }, - { - "text": "Consider extending a standing invitation to all special procedures of the Council.", - "values": [ - "3 - Considering action" - ] - }, - { - "text": "Adopt specific measures to promote the development of inclusive education for persons with disabilities", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Consider inviting the United Nations to a workshop on follow-up to the UPR.", - "values": [ - "3 - Considering action" - ] - }, - { - "text": "Promote and protect the right to freedom of opinion and expression, in accordance with what is stated in article 19 of the Universal Declaration of Human Rights ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Strengthen the measures aimed at combating racially motivated crimes and violence ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Ratify the Convention for the Protection of All persons from Enforced Disappearance signed in 2008", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Continue with overall education regarding the rights of children with developing the preventive assistance concerning the use of drugs ", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Ensure that officers and military personnel responsible for human rights violations, particularly sexual violence, are prosecuted, especially in cases which have been brought to the attention of the authorities by the Security Council", - "values": [ - "4 - General action" - ] - }, - { - "text": "Fully cooperate with the International Commission against Impunity in Guatemala in all aspects of its mandate", - "values": [ - "4 - General action" - ] - }, - { - "text": "Adopt a national strategy to fight all forms of violence against women ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Intensify its efforts to ensure the sustainable return of returnees to their home communities, by ensuring their equal enjoyment of their social, economic and cultural rights, especially in the field of social protection, health care and education", - "values": [ - "4 - General action" - ] - }, - { - "text": "Continue positive efforts to increase a culture of human rights principles", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Sign and ratify the Convention against Torture and Other Cruel, Inhuman or Degrading Treatment or Punishment and ratify the International Convention for the Protection of All Persons from Enforced Disappearance ", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Provide adequate judicial review and compensation for cases of government projects that have negative environmental impact on the land and resources of traditional landowners to ensure that their rights to property and right to environment are duly respected. Engagement with local communities in the decision-making process of any government project should also be promoted ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Continue its ongoing efforts for further promoting the rights of disabled people ", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Sign the third OP-CRC-IC", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Ratify all core international human rights treaties, most notably the International Covenant on Civil and Political Rights", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Ratify the International Covenant on Civil and Political Rights and the International Covenant on Economic, Social and Cultural Rights, both signed in 2008, as well as the Convention against Torture and Other Cruel, Inhuman or Degrading Treatment or Punishment, signed in 2000 ", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Halt operations aimed at silencing dissent in Balochistan and ensure laws are fully equally enforced to investigate and prosecute those responsible for torture and enforced disappearances nationwide", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Establish and implement integrated strategies for the prevention of child abuse, suicide among young people and unwanted pregnancies among girls and young people", - "values": [ - "4 - General action" - ] - }, - { - "text": "Strengthen measures to fight child labour within the framework of the national strategy to combat child labour", - "values": [ - "4 - General action" - ] - }, - { - "text": "Follow up effectively the national plan of action to accelerate the eradication of female genital mutilation and the implementation of preventative measures", - "values": [ - "4 - General action" - ] - }, - { - "text": "Sign and ratify the ICRMW", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Ensure the protection of and respect for persons with disabilities", - "values": [ - "4 - General action" - ] - }, - { - "text": "Rapidly implement the draft law on the protection of children and speed up the implementation of the 2000 edict for justice for minors.", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Implement policies to ensure the promotion of the rights of women and children, specifically in combating domestic violence ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Prosecute slaveholders and find means for those who were enslaved to obtain compensation", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Adopt comprehensive legislation concerning domestic violence ", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Swiftly ratify CEDAW ", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Address the infrastructural needs of country's penitentiary system, including inmate's access to food, water and sanitation as well as health care ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Guarantee universal basic education, in accordance with the international human rights treaties it has ratified, and ensure that primary education is compulsory and free for all ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Step up measures aimed at eliminating violence against women and establish clear monitoring objectives for the implementation of policies against violence against women", - "values": [ - "4 - General action" - ] - }, - { - "text": "Adopt a national plan to fight against trafficking in persons", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Put in place an independent national human rights institution in line with the United Nations Paris Principles", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Establish a national preventive mechanism according to the Optional Protocol to the Convention against Torture and Other Cruel, Inhuman or Degrading Treatment or Punishment.", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Accede to ICCPR, ICESCR and ILO Conventions Nos. 87 and 98 ", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Strengthen efforts preventing torture, including through ensuring that the Office responsible for handling alleged instances of abuses as foreseen by Law 3938/2011 functions effectively and independently and with sufficient funding and staff", - "values": [ - "4 - General action" - ] - }, - { - "text": "Consider completing the ratification processes relating to the International Covenant on Civil and Political Rights and the International Covenant on Economic, Social and Cultural Rights, and the Convention against Torture ", - "values": [ - "3 - Considering action" - ] - }, - { - "text": "Implement CEDAW recommendation to address the persistent and deep-rooted gender stereotypes that perpetuate discrimination against women", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Do not consider the reduction of the official development assistance, even while taking cost-cutting measures, and actually increase it to the committed level of 0.7 per cent", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Consider ratifying or acceding to ILO Convention No. 169 on indigenous and tribal peoples in independent countries. Peru is ready to share its experience on this issue with Panama", - "values": [ - "3 - Considering action" - ] - }, - { - "text": "Bring its legal definition of torture into line with the Convention against Torture and Other, Cruel, Inhuman or Degrading Treatment or Punishment", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Continue to strengthen the rule of law through the ongoing political transition, including by ensuring greater effectiveness and transparency in the judicial system ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Renew its efforts to combat all forms of trafficking of children, and formulate a policy of child protection to ensure a better system for safeguarding children's rights ", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Sign and ratify the Optional Protocol to the Convention on the Rights of Persons with Disabilities ", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Pay attention to the promotion of the rights of the child, particularly children with disabilities, and strengthen efforts to combat violence against children ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Consider sharing with other countries in need its best practices on promotion and protection of human rights ", - "values": [ - "3 - Considering action" - ] - }, - { - "text": "Advance policies for the participation of girls beyond the primary school level and promote strategies and actions to eliminate child early and forced marriage, including moletry", - "values": [ - "4 - General action" - ] - }, - { - "text": "Take the necessary measures to promote a greater inclusion of persons with disabilities in the areas of education and employment", - "values": [ - "4 - General action" - ] - }, - { - "text": "Effectively implement the legal provisions of law that combat gender violence", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Establish an independent National Human Rights Institution in accordance with the Paris Principles", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Continue efforts aimed at providing adequate financing for housing to the poorest segments of the population", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Protect internationally recognized workers' rights and enforce laws prohibiting forced labour ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Urgently review its criminal justice system, in particular to criminalise torture and prohibit the use in courts of evidence obtained in violation of the International Covenant on Civil and Political Rights, abolish corporal punishment in the penal system, abolish the crime of apostasy, implement the recently signed Action Plan to prevent recruitment of children to the national security forces, and address the impunity of police, armed and national security forces by amending the National Security Act 2010 to conform with the International Covenant on Civil and Political Rights and through ratification of the Statute of the International Criminal Court ", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Give continuity to the measures for the creation of a more inclusive, plural and cohesive society", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Ensure equal protection against all forms of discrimination, including on the basis of age, religion, sexual orientation and gender identity", - "values": [ - "4 - General action" - ] - }, - { - "text": "Persevere in including the needs of vulnerable groups in efforts to reduce poverty, particularly of persons with disabilities", - "values": [ - "4 - General action" - ] - }, - { - "text": "Provide necessary protection to asylum seekers, preserve their dignity and guarantee their access to legal aid and facilitate family reunification for migrants and provide them with social security and review asylum procedures to ensure their compliance with the non-refoulement principle", - "values": [ - "4 - General action" - ] - }, - { - "text": "Reply positively to all pending requests by the United Nations human rights special procedures", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Continue its efforts to re-accredit the National Slovak Human Rights Centre as the national human rights institution, in compliance with the Paris Principles ", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Continue the good work in the area of addressing the problem of human trafficking", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Continue taking strong measures with a view to fully combating sexual exploitation of children and ensure that the law is strengthened to tackle impunity for these crimes ", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Intensify its efforts to combat hate speech, racist and xenophobic statements", - "values": [ - "4 - General action" - ] - }, - { - "text": "Adopt a moratorium on the use of the death penalty with a view to abolishing capital punishment in federal and national legislations", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Finalize the internal procedures in order to adopt a specific legislation on gender equality", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Continue to address gender-based violence", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Fully cooperate with the commission of inquiry established by Human Rights Council resolution 31/20", - "values": [ - "4 - General action" - ] - }, - { - "text": "Implement the road map for the country's transition to a green economy through the various measures planned", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Continue implementing human rights education towards children and women's rights", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Increase the health budget allocation to the recommended minimum of 15 per cent of gross domestic product, in line with commitments under the Abuja Declaration, and expedite the process of implementing universal health-care coverage", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Provide appropriate employment opportunities for women and work to achieve equal wages for men and women ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Adopt a progressive strategy aimed at increasing educational opportunities and improving the housing and living conditions of the Roma community", - "values": [ - "4 - General action" - ] - }, - { - "text": "Strengthen the independence of the judiciary and the justice system", - "values": [ - "4 - General action" - ] - }, - { - "text": "Continue its efforts to promote the rights of the child and work towards the elimination of the use of corporal punishment in school", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Adopt an action plan to fight racial discrimination", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Ratify the Optional Protocol to the Convention against Torture and other Cruel, Inhuman or Degrading Treatment or Punishment, and introduce effective mechanisms for monitoring the actions of law enforcement officials ", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Adopt measures to guarantee birth registration of its citizens", - "values": [ - "4 - General action" - ] - }, - { - "text": "Consider raising (from 7 years old) the minimum age of criminal responsibility", - "values": [ - "3 - Considering action" - ] - }, - { - "text": "Take measures to prevent and punish torture in accordance with the recommendations of the Committee against Torture", - "values": [ - "4 - General action" - ] - }, - { - "text": "Expand the national programme on the prevention of human trafficking, particularly the use of children and women for sexual purposes, with a view to dealing with all violations of provisions of the Palermo Protocol, in line with the recommendations of the Committee on the Rights of the Child", - "values": [ - "4 - General action" - ] - }, - { - "text": "Take concrete steps to ensure freedom of expression, including for civil society and the media, and ensure that harassment, threats, unlawful detainment and intimidation of these groups by the national security services end immediately", - "values": [ - "4 - General action" - ] - }, - { - "text": "Pursue efforts to create new job opportunities and to promote a legal framework for the labour market ", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Consider ratifying the International Convention on the Rights of All Migrant Workers and Members of Their families ", - "values": [ - "3 - Considering action" - ] - }, - { - "text": "Improve its processes for considering the recommendations of the Provedoria for Human Rights and Justice, and respond to them without delay ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Continue its efforts to integrate into domestic legislation the provisions of the human rights treaties which it has ratified", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Further strengthen judicial structures, adopt measures against corruption in the judiciary and introduce more education and training for police, courts and social services to ensure their effective and appropriate reaction to all cases of domestic as well as other kinds of violence against women.", - "values": [ - "4 - General action" - ] - }, - { - "text": "Create or designate a national mechanism for the prevention of torture.", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Abolish the death penalty for all crimes, and ratify ICCPR-OP 2 ", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Ratify the ICCPR and the CAT ", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Continue the efforts to combat all forms of discrimination, in particular Islamophobia ", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Become a party to the UNESCO Convention against Discrimination in Education ", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Reduce infant mortality rates and malnutrition in children ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Protect ethnic and religious minorities, including Tibetans and Uyghurs, stop all disproportionate policies against them, while addressing their discontent in a non-violent, dialogical way ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Take relevant steps aimed at abolishing the death penalty ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Undertake further measures in accordance with the "National Strategy on Children's Rights and its Action Plan" in order to ensure the rights of the children and combat early marriage", - "values": [ - "4 - General action" - ] - }, - { - "text": "Undertake sustained efforts to increase institutional capacity and the broadest dissemination of human rights culture ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Continue its commitment to working within the Organisation of Eastern Caribbean States (OECS) on initiatives such as the OECS Family Law and Domestic Violence Legal and Judicial Reform Project", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Continue efforts to strengthen the commitment to the Agreement on the Resolution of the Conflict in the Republic of South Sudan by returning to a complete ceasefire as soon as possible", - "values": [ - "4 - General action" - ] - }, - { - "text": "Continue with the fundamental legislative amendments related to human rights", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Take appropriate measures to ensure that freedoms of assembly and expression are not threatened, and to combat impunity of those identified as responsible for human rights violations ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Continue to move forward in the promotion and protection of the human rights of the minorities, in particular in the areas of health, employment and housing ", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Respect all its national and international obligations regarding forcibly displaced persons", - "values": [ - "4 - General action" - ] - }, - { - "text": "Increase efforts to reach out to and ensure the rights of members of minorities, particularly the Romani community", - "values": [ - "4 - General action" - ] - }, - { - "text": "Ratify the international convention on protection of migrant workers and members of their families", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Expeditiously ratify the Kampala amendments to the Rome Statute of the International Criminal Court on the crime of aggression", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Reach out to the parents of Roma children to make sure that they fully understand the importance of education and, in this effort, use school assistants with a Roma background", - "values": [ - "4 - General action" - ] - }, - { - "text": "Repeal laws that discriminate against LGBTs", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Ensure continuous progress in addressing the right to education ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Put in place appropriate mechanisms to improve the situation of the Roma minority with respect to access to education, employment and health care ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Continue its policy of combating trafficking in persons, especially women and children, at the national and international levels, and provide assistance to victims of trafficking through shelter assistance, rehabilitation and compensation for the victims", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Adopt legal reforms and policy measures to guarantee the prohibition of all forms of violence against children, including corporal punishment both in the private and the public sphere", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Repeal legislation that facilitates the blockage of Internet content and telecommunications", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Develop its domestic legal system and ensure the appropriate implementation and execution of the law towards the implementation of the international human rights instruments to which it is a party.", - "values": [ - "4 - General action" - ] - }, - { - "text": "Establish a moratorium on the death penalty and initiate a national debate on its abolition", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Effectively implement as soon as possible the promising and necessary law on mental health of 2015", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Take further measures to reduce the problem of gender inequality and strengthen the position of women within society ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Continue to improve in the following areas: poverty eradication, rights of the child, women's rights and rights of persons with disabilities.", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Continue efforts to implement strategies aimed at establishing more human rights institutions, including speeding up the process to establish the national human rights institution ", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Develop new strategies to overcome the difficulties posed by traditional and customary practices which lie in the way of promoting human rights", - "values": [ - "4 - General action" - ] - }, - { - "text": "Respect freedom of peaceful assembly, including when exercised by the opposition", - "values": [ - "4 - General action" - ] - }, - { - "text": "Strengthen efforts to prevent and combat all forms of discrimination and violence against women and children and other vulnerable groups", - "values": [ - "4 - General action" - ] - }, - { - "text": "Continue strengthening the implementation of measures aimed at eliminating harmful and discriminatory practices against women, including measures that favour the participation of women in politics and in the main positions of public administration ", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Create and implement a specific mechanism that will provide comprehensive assistance and protection to human rights defenders, and include them in its design, especially those human rights defenders that help communities affected by mining and hydroelectric projects", - "values": [ - "4 - General action" - ] - }, - { - "text": "Revise criteria for enrolment into special schools thus avoiding the enrolment of Roma children in special schools without due recommendation of education and psychology professionals", - "values": [ - "3 - Considering action" - ] - }, - { - "text": "Adopt and implement, as soon as possible, the new legislation on the abolition of the death penalty", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Continue its poverty reduction measures through the universal social protection system", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "The Government commits to working with regional and international partners to combat the global problem of trafficking in persons and provide a greater level of assistance to victims so identified ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Incorporate economic and social rights in its Human Rights charter ", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Call for the provision of technical and financial assistance by the international community to contribute to the development process of the country with the view to achieving the Millennium Development Goals ", - "values": [ - "1 - Minimal action" - ] - }, - { - "text": "Step up its efforts to tackle the root cause of discrimination and violence against the Roma population, especially women and children.", - "values": [ - "4 - General action" - ] - }, - { - "text": "Legislate appropriate regulations to prevent the violations of individual privacy, constant intrusion in and control of cyberspace as well as eavesdropping of communications, by its intelligence and security organizations ", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Abolish the death penalty for those under 18", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Take efficient measures to ensure that domestic violence is prosecuted as a breach of the law and that perpetrators are brought to justice", - "values": [ - "4 - General action" - ] - }, - { - "text": "Continue to strengthen the quality of education by building and equipping school facilities", - "values": [ - "4 - General action" - ] - }, - { - "text": "Continue to consider signing and ratifying the Optional Protocol to the Convention against Torture, acceding to the Convention for the Protection of All Persons from Enforced Disappearance, and signing the Rome Statute of the International Criminal Court and to implement it by national law", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Indonesia is commended for its efforts in the field of human rights training and education and is encouraged to continue in this regard, and to provide additional training for law enforcement officials, including prosecutors, police and judges, as well as for security forces.", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Enact the Family Safety Bill without delay", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Strengthen cooperation with international organizations, particularly in the areas of health, education and food", - "values": [ - "1 - Minimal action" - ] - }, - { - "text": "Close all political prison camps immediately", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Adopt legislative and practical measures to combat accusations against children for witchcraft by, inter alia, criminalizing the witchcraft accusations, providing protection to children, and by awareness-raising, including in cooperation with civil society", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Take the necessary measures to guarantee the rights of women, investigate and punish those responsible for these violations, provide assistance to victims and raise awareness about patriarchal attitudes and deeply entrenched stereotypes", - "values": [ - "4 - General action" - ] - }, - { - "text": "Respect the right to freedom of expression by abolishing the prison sentence for press-related offences", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Establish effective measures to ensure access of women to decision-making positions", - "values": [ - "4 - General action" - ] - }, - { - "text": "Ensure the transparent and independent investigation of the numerous cases of excessive violence against demonstrators, followed by mistreatment and torture in detention in the aftermath of the presidential elections in June 2009, and ensure the prosecution of the persons responsible", - "values": [ - "4 - General action" - ] - }, - { - "text": "Adopt a comprehensive national framework to prevent trafficking in women and girls, and allow victims of trafficking to access a fair trial", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Strengthen measures aiming to make effective the rights of the Child from an integral perspective and based on the Convention on the Rights of the Child, particularly on issue of eradication of child labour, violence and sexual abuses and street children conditions", - "values": [ - "4 - General action" - ] - }, - { - "text": "Continue to combat violence against women and ensure gender equality", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Elaborate a law on violence against women, including domestic violence", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Provide resources to introduce case management systems in both criminal and civil court registries to clear the backlog of cases and set out the times lines for the disposal of cases in accordance with the rights of every person to trial and justice within a reasonable time", - "values": [ - "4 - General action" - ] - }, - { - "text": "Ensure that attacks on journalists are promptly investigated and the perpetrators held accountable, as recommended in the first cycle", - "values": [ - "4 - General action" - ] - }, - { - "text": "Take into consideration the recommendation of the Committee on Human Rights and explicitly criminalize female genital mutilation", - "values": [ - "3 - Considering action" - ] - }, - { - "text": "Set up a National Human Rights Institution, in accordance with the Paris Principles", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Continue its efforts to enhance the rule of law as enshrined in its Constitution ", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Continue implementing strategies and plans of socioeconomic development of the country ", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Abolish the sentencing of children to life in prison", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Accelerate necessary measures for training police personnel on the principles of human rights and the minimum treatment of prisoners and detainees according to a clear curriculum", - "values": [ - "4 - General action" - ] - }, - { - "text": "Consolidate the progress made towards reaching the Sustainable Development Goals, and continue efforts towards inclusive socioeconomic development programmes with a focus on poverty eradication", - "values": [ - "4 - General action" - ] - }, - { - "text": "Proceed with the ratification of the Optional Protocol to the Convention against Torture and Other Cruel, Inhuman or Degrading Treatment or Punishment", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Adopt a general anti-discrimination law, which includes prohibition of discrimination on the basis of gender identity and sexual orientation, to ensure the protection of the rights of lesbian, gay, bisexual, transgender and intersex persons, repeal the provision of the Military Penal Code, which prohibits and punishes same-sex consensual sexual relations in the army, increase public awareness on the need to respect gender identity and sexual orientation of every individual", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Transform the current practice of suspension of all executions into law, and put in place a "de jure" moratorium on executions ", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Implement measures concerning the improvement of the quality of education", - "values": [ - "4 - General action" - ] - }, - { - "text": "Increase the number of women in law enforcement agencies, including the police department", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Build the capacity of existing institutions and sexual and gender-based violence units to monitor in particular violence against women including sexual violence and female genital mutilation/cutting - in order to prevent violence, protect victims and fully gather evidence, investigate and prosecute these crimes", - "values": [ - "4 - General action" - ] - }, - { - "text": "Continue to take measures for the holding of public meetings and assemblies in keeping with the newly adopted laws of the country ", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Carry on its efforts in supporting development programmes for developing countries", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Strengthen the measures to combat violence against women, especially domestic violence", - "values": [ - "4 - General action" - ] - }, - { - "text": "Strengthen measures to combat violence against women and children ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Further promote good governance ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Provide adequate training for inspectors and officers-in-charge to tackle child poverty and child labour, and ensure that special needs of children are addressed", - "values": [ - "4 - General action" - ] - }, - { - "text": "Consider positively accession to international human rights treaties, particularly ICCPR, ICESCR, ICRMW and ILO Convention 169 on indigenous peoples and tribes", - "values": [ - "3 - Considering action" - ] - }, - { - "text": "Work closely with civil society organizations and other international organizations in the implementation of the recommendations emanating from this process ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Engage the civil society in the follow-up implementation process of the universal periodic review recommendations", - "values": [ - "4 - General action" - ] - }, - { - "text": "Protect national minorities rights already granted by the existing law and to have them reflected in the new legislation, and not diminish the current minority stipulation for the procedures of elections.", - "values": [ - "4 - General action" - ] - }, - { - "text": "Ratify the Optional Protocol to CRC on the sale of children, child prostitution and child pornography ", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Abolish the death penalty for all crimes, including war crimes, treason and terrorist acts", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Continue its efforts to promote diversity in the society by using mass media ", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Enhance its efforts to maintain its zero tolerance policy towards violations of human rights by law enforcement agencies, including through the implementation of the Police Reform Act ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Make it a government priority to stop impunity for gender-based violence and to take immediate and concrete steps to investigate crimes and bring those responsible to justice.", - "values": [ - "4 - General action" - ] - }, - { - "text": "Introduce measures to ensure equal rights for women in the area of employment, in order to ensure equal pay for equal work and better enforcement of laws to protect women from discrimination ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Further develop the legislation that would allow women to exercise their rights to privacy and confidentiality during police investigations and guarantee the right to presumption of innocence, due process, and legal defence ", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Associate human rights defenders in the following up and implementation of recommendations which it will accept in the context of its universal periodic review. ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Amend the lese majesty law to bring it in line with international human rights standards, allow media to function independently and free of prior censorship or interference by law enforcement agencies and release all those who have been jailed for exercising their rights to freedom of expression", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Encourage freedom of expression and opinion and strengthen cooperation and coordination with civil society and non-governmental organizations ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Develop a national action plan on business and human rights and implement it together with the Guiding Principles on Business and Human Rights", - "values": [ - "4 - General action" - ] - }, - { - "text": "Remain committed to the sustainable economic and social development, further promote national reconciliation, and achieve stability and development in the country", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Amend the Criminal Law to recognizes hate speech against lesbian, gay, bisexual and transgender persons ", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Take a leading role in setting the tone of the current national debate on integration issues and have the voices of migrants and other groups also be heard.", - "values": [ - "4 - General action" - ] - }, - { - "text": "Ensure strict criminalization of female genital mutilation and carrying out awareness-raising to eradicate its acceptability among the public ", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Continue improving the quality of public education with the aim of maintaining the excellent level of education by which the different stages of education have been ", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Adopt a comprehensive approach to address violence against women and girls and to take effective measures to protect them", - "values": [ - "4 - General action" - ] - }, - { - "text": "Take the necessary measures to reduce prejudices and discrimination based on the sexual orientation of the person ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Facilitate ratification of the Convention on the Rights of Persons with Disabilities", - "values": [ - "4 - General action" - ] - }, - { - "text": "Take effective measures to strengthen the institution of family, including awareness-raising activities which should focus on raising awareness in society, especially of young people, on the traditional understanding of family and its social significance ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Take further concrete and effective steps towards protection and social inclusion for all minority groups", - "values": [ - "4 - General action" - ] - }, - { - "text": "Review legislation which impacts on the exercise of the right to freedom of religion and belief, and review the implementation of this legislation, in order to ensure consistency with Kazakhstan's international human rights obligations", - "values": [ - "3 - Considering action" - ] - }, - { - "text": "Pass legislation, without undue delay, to confirm the official status of the National Programme for the Protection of Human Rights Defenders, and give priority to its wide implementation ", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Submit overdue reports to The Human Rights Committee, Committee on the Elimination of Racial Discrimination, Committee Against Torture and Committee on Economic Social and Cultural Rights", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Further consolidate its achievements in the fields of ensuring and advancing the full enjoyment of the human rights of vulnerable groups such as children and disabled people as well as in strengthening the rule of law and social cohesion for exhaustively guaranteeing all human rights for her people ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Submit the expected reports to the Human Rights Committee and the Committee against Torture as soon as possible", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Take further steps to improve the situation of migrant labourers and domestic staff.", - "values": [ - "4 - General action" - ] - }, - { - "text": "Strengthen its efforts to integrate human rights and peace education in the school curricula", - "values": [ - "4 - General action" - ] - }, - { - "text": "Review civil laws with the view of putting an end to discrimination against women and girls, in particular rights related to marriage and land property", - "values": [ - "3 - Considering action" - ] - }, - { - "text": "The Government will continue to promote inclusive economic growth with the capacity to generate productive employment and reduce poverty.", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Promote the right of temporary workers to family reunification in accordance with the European Commission's recommendation against racism and intolerance, particularly in the light of the Immigration Law which entered into force in July 2008", - "values": [ - "4 - General action" - ] - }, - { - "text": "Further increase its efforts to ensure prompt, thorough and impartial investigations into all allegations of ill-treatment or excessive use of force by law enforcement officials, in order to bring those responsible for such acts to justice ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Adopt measures to guarantee the respect of judicial guarantees and human rights in detention and police custody", - "values": [ - "4 - General action" - ] - }, - { - "text": "Canada is committed to eliminating racism and addressing discrimination facing Canada's diverse racial, ethnic, cultural and religious communities.", - "values": [ - "4 - General action" - ] - }, - { - "text": "Continue efforts aimed at improving the access of persons with disabilities to education, vocational training and health care", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Continue to take steps to strengthen the protection for and assistance to victims, and to prosecute perpetrators, by ensuring the full implementation of the Trafficking in Persons Act", - "values": [ - "4 - General action" - ] - }, - { - "text": "Make every effort to seek peace with all actors concerned in order to be able to re-begin the construction of the country both politically, socially and economically", - "values": [ - "4 - General action" - ] - }, - { - "text": "Accede to CAT and the Optional Protocol thereto (OP-CAT)", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Establish a supported decision-making framework in relation with people with disabilities", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Hold responsible alleged perpetrators of forced evictions and pollution of drinking water in the area around the big mines ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Increase the representation of women in high government positions and elected councils", - "values": [ - "4 - General action" - ] - }, - { - "text": "Promote the visit of the Special Rapporteur on the sale of children, child prostitution and child pornography which could contribute to the efforts of Benin in its protection of children.", - "values": [ - "4 - General action" - ] - }, - { - "text": "Respect article 5(a) of the Convention on the Elimination of All Forms of Discrimination against Women calling for countries to take appropriate measures to change socio-cultural stereotypes and practices.", - "values": [ - "4 - General action" - ] - }, - { - "text": "Strengthen cooperation with the international community and the United Nations human rights bodies in order to consolidate and promote human rights in the country ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Present a standing invitation to all Special Rapporteurs", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Take all necessary measures to incorporate human rights and gender education in school curricula to help promote human rights awareness in Suriname", - "values": [ - "4 - General action" - ] - }, - { - "text": "Take all measures to ensure that indigenous children can fully exercise their rights and establish support programmes for migrant children", - "values": [ - "4 - General action" - ] - }, - { - "text": "Continue promoting the right to development", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Consider the possibility of accession to the Second Optional Protocol to the International Covenant on Civil and Political Rights with a view to abolishing the death penalty.", - "values": [ - "3 - Considering action" - ] - }, - { - "text": "Draw up policies to identify, evaluate and provide a systemic response to unpaid work in order to redistribute domestic and care work between the State, the market and the family", - "values": [ - "4 - General action" - ] - }, - { - "text": "Further strengthen its activities undertaken to combat discrimination, in particular with regard to children with disabilities, children with HIV/AIDS and San children", - "values": [ - "4 - General action" - ] - }, - { - "text": "Lift the reservations to article 29 (1) of the Convention on the Elimination of All Forms of Discrimination against Women (CEDAW) ", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Continue consolidating the national policies to combat poverty and social exclusion in favour of the most vulnerable sectors", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Operationalize the Public Benefits Organizations Act of 2013 as a law facilitating an independent and unhindered work of civil society, and refrain from enacting restrictive requirements with stifling effect on the country's non-governmental organizations, their functioning and funding", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Speed up Seychelles' domestic processes with a view to ratifying international human rights treaties", - "values": [ - "4 - General action" - ] - }, - { - "text": "Ensure that press laws are in compliance with article 19 of ICCPR.", - "values": [ - "4 - General action" - ] - }, - { - "text": "Include in its priority action plan measures to step up efforts towards protecting children from abuse or violence ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Adopt legal and administrative measures in order to guarantee the basic rights to asylum seekers and refugees, in particular rights which allow them the access to health assistance services", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Ensure respect throughout the country for freedom of expression, and to improve the working conditions for the press and radio broadcasting", - "values": [ - "4 - General action" - ] - }, - { - "text": "Continue with efforts to stop the recruitment and use of children in the country and to work closely with the United Nations and other relevant parties to ensure their demobilization ", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Continue its efforts in implementing the Strategy of combating violence against women and girls 2012-2016", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Montenegro thanked all delegations for the recommendations made and committed to monitoring their implementation", - "values": [ - "4 - General action" - ] - }, - { - "text": "Incorporate the results of this UPR into its action plans for the promotion and protection of all human rights, taking into account the proposals of civil society and present a midterm evaluation report to the Human Rights Council on the implementation of the recommendations of this session", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Complete the legislative process in order to abolish capital punishment, which as a matter of fact, has been suspended for more than a decade", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Prosecute, proportionally to the severity of the offence, serious violations of human rights perpetrated under the dictatorship, which have been identified by the mechanisms of transitional justice ", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Consider ratifying-acceding to the International Covenant on Economic, Social and Cultural Rights.", - "values": [ - "3 - Considering action" - ] - }, - { - "text": "Continue efforts regarding measures taken and legislation adopted for the effective application of the new constitutional provisions", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Adopt measures to combat discrimination against women in rural areas and to tackle the high mortality rate during childbirth", - "values": [ - "4 - General action" - ] - }, - { - "text": "Take prompt action against the use of excessive force by the police", - "values": [ - "4 - General action" - ] - }, - { - "text": "Include additional international norms in the domestic legal system with a view to improving conditions of detention", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Increase prompt access to birth registration and public awareness for the same", - "values": [ - "4 - General action" - ] - }, - { - "text": "Continue the legal reforms and improve public freedoms and human rights ", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Maintain and continue actions aimed at decreasing and eliminating violence, ill-treatment, sexual exploitation and trafficking in persons and at the same time provide appropriate care and protection to victims and prosecute those responsible", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "The Government will implement realistic measures to further promote rules of law, to consolidate the pluralistic democratic system and process and to respect freedom of expression and human dignity that will in turn strengthen political and security environment, leading towards long-term sustainable development.", - "values": [ - "4 - General action" - ] - }, - { - "text": "Take effective measures to ensure the full realization of the rights to freedoms of expression, including on internet, assembly and association ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Continue to implement indigenous education reforms", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Make a contribution to the promotion and advancement of human rights, working through regional human rights mechanisms by way of its membership of the League of Arab States and the African Union. ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Complete the drafting of a law against discrimination and provide for its enactment as soon as possible", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Continue to further enhance its dialogue with civil societies and implement policies and measures in order to enhance the promotion and protection of the rights of women, children and persons with disabilities", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Guarantee freedom of expression and assembly, including by civil society organizations, notably in the context of public gatherings", - "values": [ - "4 - General action" - ] - }, - { - "text": "Ensure that hate crimes, acts of violence, racist and xenophobic views are investigated and that the perpetrators of these crimes are brought to justice", - "values": [ - "4 - General action" - ] - }, - { - "text": "Ensure adequate trained prosecutors, judges and staff in the justice systems of the Federation and of Republika Srpska, in order to make timely and efficient progress on war crime cases, including the sensitive handling of those dealing with sexual violence", - "values": [ - "4 - General action" - ] - }, - { - "text": "Remove any legal and other difficulties that restrict the effectiveness and independence of the work of international non-governmental organizations ", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Take measures to improve the process of birth registration", - "values": [ - "4 - General action" - ] - }, - { - "text": "Revise the so-called insult law.", - "values": [ - "3 - Considering action" - ] - }, - { - "text": "Continue to guarantee freedom of religion and to ensure the preservation and promotion of the cultural characteristics and distinctness of "fa'asomoa" ", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Ensure appropriate law enforcement and penal sanctions are in place to effectively address issues of non-equality and non-discrimination in the private and public sphere ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Pursue actions targeted at enforcing access to health-care services and legal aid to vulnerable groups, including migrants regardless of their migration status", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Prevent any kind of political or other pressures against the independence of the judiciary system and bodies ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Continue to implement constitutional principles relating to freedom of religion and the need to respect religions and their symbols", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Address the infrastructural needs of the country's penitentiary system", - "values": [ - "4 - General action" - ] - }, - { - "text": "Continue government efforts to eradicate the worst forms of child labour and to improve safety standards at work ", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Continue to address human rights challenges in line with international human rights standards", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Introduce appropriate legislative measures criminalizing all forms of violence against women ", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Strengthen provisions in the Constitution to promote good administrative practices in State institutions", - "values": [ - "4 - General action" - ] - }, - { - "text": "Amend legislation on domestic violence to encompass all forms of sexual violence, including between partners and outside marriage, in addition to threats", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Take all measures to implement the National Action Plan for Children ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Sensitize traditional chiefs, religious leaders, women's groups and youth about the consequences of early and forced marriage of girls, and adopt laws and regulations preventing and punishing cases of violations", - "values": [ - "4 - General action" - ] - }, - { - "text": "Take administrative measures to ameliorate the situation of children and women ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Commit to ensure full compliance with Rule 62 of the Code of Criminal Procedure: "Public action is extinguished by res judicata" to prohibit any possibility that an individual is tried several times for the same offense ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Increase the capacity for investigation and prosecution of all complaints of torture, attach special attention to allegations of torture of persons belonging to ethnic minorities, and bring the definition of torture in the Criminal Code fully in line with CAT", - "values": [ - "4 - General action" - ] - }, - { - "text": "Adopt the new law on NGOs to fully guarantee to the civil society a set of rights in conformity with international standards", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Review and amend the Peaceful Assembly and Peaceful Procession Act to bring it in line with international standards on freedom of expression and assembly", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Adopt a national strategy on combating domestic violence", - "values": [ - "4 - General action" - ] - }, - { - "text": "Temper the law banning therapeutic abortion, or even reintroduce the law repealed in 2006, guaranteeing free choice for women victims of rape or whose health is seriously endangered by the pregnancy ", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Continue implementing and strengthening, if necessary, measures against all expressions of prejudice and discrimination such as hate speech, extremist movements and violent extremism, paying particular attention to expressions of racism, xenophobia and other hate speech against a particular religion or ethnicity", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Continue to work with the Special Rapporteur on the rights of indigenous persons", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "New Zealand is committed to increasing Maori participation in the police force.", - "values": [ - "4 - General action" - ] - }, - { - "text": "Consider the cases of all prisoners condemned to death with a view to commuting their sentences and respect their right to challenge the legality of their detention before a tribunal, in compliance with international law", - "values": [ - "3 - Considering action" - ] - }, - { - "text": "Create and ensure an enabling environment for free and independent media ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Continue its efforts to prevent acts of domestic violence, of which women and children are the principal victims, ensuring that these acts are penalized and that their perpetrators be prosecuted systematically ", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Accede to the Second Optional Protocol to ICCPR, aiming at the abolition of the death penalty, and take all necessary steps to remove the death penalty from Saint Kitts and Nevis law ", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Proceed with the early ratification of the International Covenant on Civil and Political Rights and the International Covenant on Economic, Social and Cultural Rights", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Revise the Law against Extremism in such a way, that it would clarify the definition of extremism ", - "values": [ - "3 - Considering action" - ] - }, - { - "text": "Amend anti-discrimination legislation to include sexual orientation and gender identity as specific grounds for discrimination and to open prompt, impartial and effective investigations into attacks on LGBTI individuals or organisations", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Review the extent and scope of laws governing secret surveillance and moderate the powers and discretion conferred on authorities in this regard", - "values": [ - "3 - Considering action" - ] - }, - { - "text": "Take progressive measures to consider accession to ICMW ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Advance in the elimination of all forms of discrimination and violence based on sexual orientation or gender identity, particularly abolishing all regulations of the Penal Code that support those discriminations and reinforce legislative and judicial protections against such abuses", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Continue implementing strategies and plans for national socio-economic development ", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Improve conditions in youth detention facilities, including through ensuring independent and effective investigation of all allegations of human rights violations therein", - "values": [ - "4 - General action" - ] - }, - { - "text": "Continue to consult UNICEF and the NCRC in the process of finalizing the draft law on juvenile justice to ensure that the law is clear and that the procedures are appropriate and take into consideration the local context and available resources ", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Take up the processing and approval of the draft law on gender violence, with a view to providing victims with mechanisms for protection and effective reparation", - "values": [ - "4 - General action" - ] - }, - { - "text": "Ensure that arrested persons have adequate access to legal representation and to establish effective judicial oversight over police and security forces ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Strengthen efforts to complete the process of implementing the new model in the whole national penitentiary system ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Take concrete measures to combat racial discrimination in law enforcement and in the administration of justice", - "values": [ - "4 - General action" - ] - }, - { - "text": "Extend invitations in particular to the Special Rapporteur on the question of torture.", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Address issues of environmental degradation and disaster management, in order to ensure the protection of the environment ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Eliminate completely extrajudicial executions, as promised in the previous UPR, in this way bringing to justice those responsible and intensify efforts to eradicate the use of torture and inhuman or degrading treatment from the armed and security forces of the State ", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Continue with measures carried out in order to ratify the Second Optional Protocal to ICCPR", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Step up its efforts to protect the rights of the child, especially those living in situations of poverty, victims of child prostitution, and children with disabilities. In this regard, conduct a comprehensive review of its national legislation to guarantee the full application of the principle of nondiscrimination and adopt a national strategy to remedy this situation as recommended by the Committee on the Rights of the Child in 2004 ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Eliminate discrimination against women by introducing paid maternity leave and providing equal pay for women for the same work", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Continue with its poverty reduction strategy and speed its economic and social development so it can better promote and protect the various human rights of its people", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Continue its efforts towards national reconciliation and strengthen the National Human Rights Commission in conformity with the Paris Principles", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Ratify the International Labour Organization conventions, namely Convention No. 138 ", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Ratify the Protocol No. 12 to the Protection of Human Rights and Fundamental Freedoms of the Council of Europe Convention", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Establish effective mechanisms of dialogue with human rights defenders in the field of sexual minorities ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Accelerate the process of ratification of the Optional Protocol to the Convention on the Elimination of All Forms of Discrimination against Women, the Optional Protocol to the Convention against Torture and other Cruel, Inhuman and Degrading Treatment or Punishment, and the Second Optional Protocol to the International Covenant on Civil and Political Rights ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Release from custody any individual detained solely on the basis of peaceful expression of political views ", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Hasten the establishment of a national human rights institution in line with the Paris Principles", - "values": [ - "4 - General action" - ] - }, - { - "text": "In accordance with the compromise expressed by the Minister, carry out a process of revision of the justice system, in order to ensure, in legislation as well as in practice, its full independence, the elimination of impunity and due diligence in the conduct of investigations, especially those regarding human rights violations", - "values": [ - "4 - General action" - ] - }, - { - "text": "Adopt measures to eliminate corporal punishment ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Ensure demobilisation of child soldiers and commit to integrating children in armed groups back into civilian life", - "values": [ - "4 - General action" - ] - }, - { - "text": "Enable the participation of civil society and NGOs also in the follow-up process to this review ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Continue its efforts to enact legislation to combat human trafficking in accordance with the international convention against transnational organized crime ", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Increase measures to guarantee non-discrimination, to improve the conditions of Roma regarding the realization of good education, adequate housing, and to make available all basic services to them", - "values": [ - "4 - General action" - ] - }, - { - "text": "Accede to the Agreement on Privileges and Immunities of the ICC ", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Adopt administrative and legislative measures to combat domestic violence and physical ill-treatment of children", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Consider ratifying, as early as possible, the Optional Protocol to the International Covenant on Economic, Social and Cultural Rights and the Second Protocol thereto", - "values": [ - "3 - Considering action" - ] - }, - { - "text": "Recognize and respect the rights of the Palestinian people to self determination", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Consider imposing an official moratorium on executions toward the complete abolition of the death penalty in the country", - "values": [ - "3 - Considering action" - ] - }, - { - "text": "Ratify the International Convention on the Protection of the Rights of All Migrant Workers and Members of Their Families and promptly implement it", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Ensure effective law enforcement and prevention and protection measures to bridge the gap between legislation and practice in combating violence against women", - "values": [ - "4 - General action" - ] - }, - { - "text": "With the support and assistance of the international community, continue efforts to fight poverty and guarantee the enjoyment of the economic, social and cultural rights of the Yemeni people.", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Ratify and implement the CRPD", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Take measures to prevent child, early and forced marriages, including through awareness-raising campaigns and measures for the monitoring of the implementation of existing legislation and by promoting the enrolment of girls in schools", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Ethiopia had also adopted the first National Human Rights Action Plan for the year 2013-2015 and was committed to build on the achievements and remarkable advances registered in meeting many of the Millennium Development Goals", - "values": [ - "4 - General action" - ] - }, - { - "text": "Implement measures to reduce the gender pay gap and strengthen women's roles in leadership and managerial positions", - "values": [ - "4 - General action" - ] - }, - { - "text": "Encourage the Government to implement the pledges and commitments undertaken during the second cycle of the universal periodic review in 2012", - "values": [ - "4 - General action" - ] - }, - { - "text": "Increase efforts to pass legislation on sexual and reproductive rights in accordance with the international obligations assumed under the Convention on the Elimination of All Forms of Discrimination against Women", - "values": [ - "4 - General action" - ] - }, - { - "text": "Continue with its efforts for the establishment of independent national human rights institution in accordance with the Paris Principles ", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Consider favourably issuing a standing invitation to all special procedures in order to further its cooperation with the United Nations human rights mechanisms ", - "values": [ - "3 - Considering action" - ] - }, - { - "text": "Continue allocating adequate funding for education to increase the number of schools and teachers, improve the quality of teaching and school infrastructure and ensure equal access of girls to all levels of education ", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Make sustained efforts to realize its commitments to contribute to the achievement of internationally-agreed development goals by raising its aid financing to at least 0.7 per cent of its GDP to reinforce the suggestions made by different Treaty Bodies.", - "values": [ - "4 - General action" - ] - }, - { - "text": "As a signatory of the Convention on the Rights of Persons with Disabilities, signed on 30 March 2007, the Government of Dominica remained committed to the full inclusion of persons with disabilities into the mainstream, and efforts had been made to ratify the Convention. There had been a series of stakeholder and wider public consultations. Based on the plan of action, the ratification process would be completed in the next three months, although, owing to resources constraints, Dominica faced difficulties in meeting the spirit and obligations of the Convention.", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Further pursue the national strategy and the action plan on the elimination of harmful traditional practices and FGM ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Ensure full implementation of Law 25/11 against Domestic Violence and ensure there are increased protections against all forms of violence faced by women, including internally displaced and refugee women, who are among the most vulnerable", - "values": [ - "4 - General action" - ] - }, - { - "text": "Reinforce its collaboration with the treaty bodies ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Recommended that lawmakers discharge their responsibility under the International Covenant on Civil and Political Rights, in particular with regard to the prohibition of incitement to hatred by law, and enacting the necessary restrictions to protect the rights of others. ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Strengthen the national capacity to implement the human rights action plans in accordance with international obligations", - "values": [ - "4 - General action" - ] - }, - { - "text": "Harmonize its various strategies on children and families under a comprehensive national plan of action for children, and further consider the accession to OP-CRC-SC ", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Put an end to impunity for reported attacks against members of marginalized communities, including on the grounds of sexual orientation and gender identity, as well as to put in operation awareness-raising efforts in that respect, targeted particularly at law enforcement officials and the judiciary.", - "values": [ - "4 - General action" - ] - }, - { - "text": "Continue the implementation of the recommendations made by the Committee on the Elimination of Racial Discrimination (CERD) ", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Ratify and effectively implement core international human rights treaties, inter alia, ICCPR, ICESCR and CAT, and fulfil the obligations under the treaties to which Myanmar is a party by bringing domestic legislation, policies and practices into harmony with the provisions therein ", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Speed up the process of accession to the International Convention for the Protection of All Persons from Enforced Disappearance", - "values": [ - "4 - General action" - ] - }, - { - "text": "Ratify the Optional Protocol to the ICESCR, the Second Optional Protocol to the ICCPR, the Optional Protocol to the Convention against Torture and Other Cruel, Inhuman or Degrading Treatment or Punishment, the International Convention for the Protection of All Persons from Enforced Disappearance, and, finally, the Optional Protocol to the Convention on the Rights of the Child on a communications procedure ", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Improve the national legislation in order to fully ensure freedom of belief, conscience and religion ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Make efforts to support a system of quotas to promote the participation of women in political and public life and in decision-making posts in all spheres of life. Additionally, make efforts to reduce or eliminate wage differences between men and women", - "values": [ - "4 - General action" - ] - }, - { - "text": "Continue to implement its HIV/AIDS prevention, care and treatment programmes to further reduce the prevalence", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Continue its constant support to the human rights issues and provide support to the humanitarian efforts", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Consider seeking technical assistance to improve its capabilities to combat domestic violence and the abuse of children ", - "values": [ - "3 - Considering action" - ] - }, - { - "text": "Take immediate measures to investigate cases of brutal torture and killings of girls and women, especially elderly women, accused of witchcraft, and to prosecute and punish perpetrators ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Take the necessary measures aimed at removing the root causes of racial discrimination, xenophobia and over incarceration of Aboriginals, Afro-Canadians and ethnic minorities including women ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Continue making efforts to provide human rights education to law enforcement personnel", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Continue efforts to combat trafficking in human beings", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Take serious measures to address such irresponsible acts as the recent publication of an outrageous poster of Prophet Muhammad as well as a blasphemous video message by one of the Swedish political parties, which merely perpetuate religious hatred and intolerance ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Allow unhindered and sustained access for humanitarian agencies and workers and restore basic services including unhindered access to hospitals", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Continue efforts in protecting the dignity and safety of migrant workers, including through appropriate institutional and legislative measures ", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Abolish the death penalty for all crimes, promote an official moratorium on executions, and commute the death sentences for imprisonment", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Further strengthen protection to ensure the non-dismissal of workers diagnosed with HIV/AIDS ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Decriminalize homosexuality by abrogating the criminal provision prohibiting sexual relations between consenting adults of the same sex, and subscribe to the General Assembly Declaration of December 2008 on human rights and sexual orientation ", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Continue to promote the participation of women in policy making and improve the status of women in the society ", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Facilitate early passage of related legislation and ensure prompt preparation and implementation of the national human rights action plan ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Strengthen the right to freedom of expression and peaceful assembly", - "values": [ - "4 - General action" - ] - }, - { - "text": "Continue the efforts to support the most vulnerable groups of population, including those efforts that guarantee the social inclusion of persons with disabilities", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Take steps in order to enhance and promote gender equality in all walks of life", - "values": [ - "4 - General action" - ] - }, - { - "text": "Step up its efforts, with the continued cooperation and assistance by the UNHCR and relevant stakeholders, in addressing the protracted refugee situation", - "values": [ - "4 - General action" - ] - }, - { - "text": "Ensure that sexual orientation and gender identity be explicitly included through anti-discrimination laws and programmes.", - "values": [ - "4 - General action" - ] - }, - { - "text": "Continue its efforts in addressing the problem of missing person", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Take measures to reduce the number of cases of violence against women and bring the perpetrators to justice", - "values": [ - "4 - General action" - ] - }, - { - "text": "Strengthen the awareness campaigns on the rights of indigenous populations and persons of African descent, notably through the implementation of the provisions of the specific laws adopted in this domain ", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Make efforts to correct inequalities between men and women in the area of remuneration, especially through the introduction of effective measures as part of the National Strategy 2009-2013 for sex parity, which is being prepared. ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Consider ratifying International Labour Organization Convention 189 concerning decent work for domestic workers", - "values": [ - "3 - Considering action" - ] - }, - { - "text": "Take all necessary steps to enhance the effectiveness of the Protection Programme, including through speedy risk assessment studies and implementation of approved schemes, clear criteria for defining risk, collective protection measures and the inclusion of family members in the scheme", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Consider ratifying the conventions on refugees and on stateless persons and OP-CAT", - "values": [ - "3 - Considering action" - ] - }, - { - "text": "Implement the recommendations made by the Special Rapporteur on extrajudicial, summary or arbitrary executions during his recent visit to the Democratic Republic of the Congo", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Review its national laws so that they fully uphold the principle of nondiscrimination, in particular on grounds of gender, personal status and citizenship ", - "values": [ - "3 - Considering action" - ] - }, - { - "text": "Redouble efforts to combat trafficking in persons and smuggling of migrants", - "values": [ - "4 - General action" - ] - }, - { - "text": "Prior to the next elections in 2014, review legislation in the areas of freedom of expression, association, assembly and religion to ensure full compatibility with Algeria's international obligations", - "values": [ - "3 - Considering action" - ] - }, - { - "text": "Ensure that all offences based on discrimination are effectively identified, investigated and prosecuted", - "values": [ - "4 - General action" - ] - }, - { - "text": "Take steps towards the establishment and operationalization of a national human rights institution, in accordance with the Paris Principles", - "values": [ - "4 - General action" - ] - }, - { - "text": "Continue to take steps to ensure the full and effective implementation of its Child Care and Protection Act to guard against all forms of child abuse", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Prohibit corporal punishment in law as previously recommended", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Adopt and implement the law on transparency, disclosure and access to public information drafted by the joint committee in April 2016", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Consider establishing a national human rights institution in accordance with the Paris Principles, as previously recommended", - "values": [ - "3 - Considering action" - ] - }, - { - "text": "Continue its measures in promoting gender equality through the implementation of its National Gender Policy Action Plan for the period 2011 to 2021 ", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Submit the reports due to treaty bodies and communicate its needs in terms of technical assistance for this purpose to the competent organs of the United Nations ", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Adopt a national policy on children with disabilities ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Strengthen legislation and policy on gender equality and the prevention and punishment of gender-based violence", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Ratify the Second Optional Protocol to the International Covenant on Civil and Political Rights with a view to abolishing the death penalty as soon as possible ", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Ensure that the allegations are cleared up, and take concrete measures in this regard such as the creation of a national observatory on human rights defenders, and carry out educational and training programmes on human rights for all levels of public administration", - "values": [ - "4 - General action" - ] - }, - { - "text": "Cancel all retroactive measures taken to replace the principle of jus soli with the principle of jus sanguinis for the acquisition of nationality", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Invite the Special Rapporteur on the independence of judges and lawyers to visit Burundi ", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Put into effect the declaration of article 22 of the Convention against Torture.", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Strengthen domestic legislations to prevent sexual violence against women and provide necessary support to the victims", - "values": [ - "4 - General action" - ] - }, - { - "text": "Increase the research, collection and analysis of data on the prevalence, causes and consequences of violence against women, including information on the relationship between the perpetrator and the victim in cases of violence as well as the possible causes for the reluctance of victims to lodge complaints", - "values": [ - "4 - General action" - ] - }, - { - "text": "Continue efforts to ensure the independence and impartiality of the judiciary, especially with respect to the rights of the defence and to transparency in judicial procedures", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Establish a national plan for universal access to education", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Redoubling efforts to protect women and children against all forms of violence, including the use of FGM ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Take appropriate measures to improve living conditions and address the issue of overcrowding in prisons and other detention centres, as well as to reduce violence between and among prisoners", - "values": [ - "4 - General action" - ] - }, - { - "text": "Modify articles 43 and 44 of the Constitution so that Swazi women, in the same way as men, can transmit their nationality to their children and their foreign spouses", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Integrate human rights education into primary and secondary school curricula", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Continue its efforts to implement the national action plan to combat trafficking in persons", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Ensure that human rights violations by law enforcement personnel, notably in cases of non-respect of delays of detention in police custody, arbitrary arrests and detention, and forced disappearances and torture, are investigated and the perpetrators brought to justice", - "values": [ - "4 - General action" - ] - }, - { - "text": "Review Law 2003-25 of 23 June 2003 with a view to giving itself the appropriate means to eventually eradicate all forms of slavery and promptly adopt national action plans to this end", - "values": [ - "3 - Considering action" - ] - }, - { - "text": "Continue to improve the protection and promotion of human rights in the country", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Repeal legal provisions that criminalize homosexuality, and take all necessary measures to ensure respect for all human rights of lesbian, gay, bisexual, transgender and intersex people, including access to public health services and support initiatives, such as education programmes and the provision of disease and infection care", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Take measures to fight against violence and discrimination based on sexual orientation and gender identity", - "values": [ - "4 - General action" - ] - }, - { - "text": "Denounce its policy of no longer seeking clemency for Canadians convicted and given the death penalty in countries deemed to have the rule of law", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Consider enacting laws to criminalize trafficking in persons, and to provide remedy to trafficking victims", - "values": [ - "3 - Considering action" - ] - }, - { - "text": "Improve prison conditions to bring them in line with international standards and guidelines for the treatment of prisoners by providing warmer clothes to prisoners in winter, providing foreign prisoners with timely medical and dental treatment, and increasing the amount and nutritional quality of the food", - "values": [ - "4 - General action" - ] - }, - { - "text": "Allow the International Committee of the Red Cross unrestrictive access to detention centres", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Ensure school integration of Roma children, children belonging to immigrant families or children living in socio-economically deprived areas, as expressed by CEDAW, and increase Roma women's awareness and access to services and programmes in education, employment and healthcare, as recommended by CERD, CESCR, and the CRC ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Impose an immediate de jure moratorium on executions, with a view to the complete abolition of the death penalty for all crimes ", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Ensure that the legislative changes, if adopted, keep the same level of human rights protection as provided by the Human Rights Act, as advised by the High Commissioner for Human Rights and the United Nations treaty bodies", - "values": [ - "4 - General action" - ] - }, - { - "text": "Consider becoming party to the International Convention for the Protection of All Persons from Enforced Disappearance", - "values": [ - "3 - Considering action" - ] - }, - { - "text": "Continue its efforts to combat xenophobia ", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Ensure full and equal access to public health services for Pygmy peoples in all areas of the country in particular by increasing the number of health care facilities and ensure proper registration of children at birth", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Rescind or soften the law "on the modification to certain laws of the Russian Federation on regulating the activities of non-commercial organizations which exercise function of foreign agents" ", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Investigate all allegations of torture", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Evaluate measures taken to prevent stereotyping attitudes with regard to gender roles in the family and society, and strengthen efforts to implement the National Action Plan on Gender Equality and achieve a comprehensive and systematic approach to gender equality policies ", - "values": [ - "3 - Considering action" - ] - }, - { - "text": "Harmonize domestic legislation in order that statements obtained under torture are not used as evidence in legal proceedings", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Consider extending a standing invitation to the special procedures of the Council.", - "values": [ - "3 - Considering action" - ] - }, - { - "text": "Strengthen its efforts to reform its penal system, including seeking alternatives to pre-trial detention and ensuring that its system of juvenile detention is in line with its human rights obligations ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Enact as a matter of urgency the Freedom of Information Bill", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Amend the judicial rules so that the Ombudsman's reports are more easily admissible in court.", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Continue to provide for all needs of vulnerable children, and especially children from poor socioeconomic backgrounds ", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Add more content on gender equality and human rights to master's degree and courses of officials and law enforcement officers ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Continue its efforts to combat racial discrimination and related intolerance ", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Adopt specific measures for the protection of minors and women who have become victims of sexual exploitation, and ensure assistance to, restore the reputation of and provide rehabilitation for those victims ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Invite the new Special Rapporteur on the rights to freedom of peaceful assembly and of association to visit the country ", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Consider establishing an independent Ombudsman for children", - "values": [ - "3 - Considering action" - ] - }, - { - "text": "Take all necessary measures, including reviewing its legislation, in order to avoid cases of prosecution of those who exercise their rights guaranteed under articles 18, 19 and 20 of the UDHR", - "values": [ - "4 - General action" - ] - }, - { - "text": "Extend a standing invitation to United Nations human rights special procedures so they can visit the country and assist the Government with its human rights reforms ", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Eliminate legal and bureaucratic restrictions affecting an individual's right to choose his or her religion", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Take all necessary steps to ratify the 1951 Convention relating to the Status of Refugees and its 1967 Protocol", - "values": [ - "4 - General action" - ] - }, - { - "text": "Promote the rights of and compensation for victims of crimes and witnesses", - "values": [ - "4 - General action" - ] - }, - { - "text": "Continue its efforts to promote respect of cultural and religious particularities of each society and enhance dialogue among religions and civilizations ", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Ratify the Convention against Torture and the Optional Protocol thereto ", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Ensure that allegations of ill-treatment by law enforcement officers are promptly, thoroughly and impartially investigated and that those responsible are punished.", - "values": [ - "4 - General action" - ] - }, - { - "text": "Continue to share and extend its experience and best practices in the efforts in developing comprehensive policies and strategies for the advancement of indigenous groups which focus on uplifting the status and quality of life of the community via socio-economic programmes", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Establish policies and initiatives to address discrimination based on sexual orientation and gender identity", - "values": [ - "4 - General action" - ] - }, - { - "text": "Review current policies and develop, together with the private sector, a code of practice on HIV in the workplace, taking into account the international standards of the World Health Organization and the conventions and recommendations adopted by the International Labour Organization", - "values": [ - "3 - Considering action" - ] - }, - { - "text": "Step up cooperation with the special procedures and consider extending a standing invitation to them ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Consider developing Human Rights Indicators as suggested by OHCHR", - "values": [ - "3 - Considering action" - ] - }, - { - "text": "Make a priority of passing a revised penal code ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Continue enhancing its efforts to strengthen the family institution and to empower women and ensure their enjoyment of their legitimate rights and ensure women's effective participation in decision-making ", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Revise its legislation related to the birth registration to ensure birth registration to all indigenous children and children of African descent ", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Continue practical efforts to bridge gaps between the Roma community and the rest of society, including by implementing legislation and practical measures to eliminate discrimination against Romani individuals, ensuring the police protect Roma communities threatened with violence and discrimination, and ensuring equal access to education, employment, housing, health and social care for all", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Establish as soon as possible a national human rights institution in accordance with the Paris Principles", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Strengthen and consolidate the implementation of the transitional justice programme it has adopted.", - "values": [ - "4 - General action" - ] - }, - { - "text": "Review the legislation on defamation and strengthen the training for judges on the implementation of freedom of expression", - "values": [ - "3 - Considering action" - ] - }, - { - "text": "Complete the internal procedure necessary for the ratification of the International Covenant on Civil and Political Rights and the Convention on the Rights of Persons with Disabilities, while putting in place the necessary mechanisms to proceed with the signature and ratification of other international human rights agreements that are still pending", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Continue to implement existing legislation related to gender equality in order to ensure that men and women are treated equally and stereotypes regarding women are eradicated", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Increase efforts to combat all forms of discrimination, intolerance, racism, xenophobia and Islamophobia, including by taking further legislative measures to create policies to combat discrimination in the media and the political arena", - "values": [ - "4 - General action" - ] - }, - { - "text": "Strengthen the work of the institute of public defence by providing free legal aid to the population", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Ensure prompt investigation of allegations of mistreatment by security forces of migrants at the border to ensure that they are treated in accordance with international human rights obligations", - "values": [ - "4 - General action" - ] - }, - { - "text": "Strengthen efforts to prevent and combat all forms of violence against women, including domestic violence and sexual abuse, and effectively implement the legislation recently adopted in this field", - "values": [ - "4 - General action" - ] - }, - { - "text": "Immediately lift the state of emergency, implement the 1997 Constitution and hold free and fair elections with international monitoring ", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Take further measures with a view to ensure that all children enjoy equal access to health services", - "values": [ - "4 - General action" - ] - }, - { - "text": "Continue strengthening the actions aimed at the eradication of poverty and the policies to guarantee equity in wealth distribution and access to the economic and social well-being for the entire population", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Develop and implement action plans for employment that would reduce unemployment in the informal sector", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Continue to take all necessary steps to ensure political stability and the creation of an environment conducive to the promotion and protection of human rights", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Ensure an equitable distribution of resources between rural and urban areas", - "values": [ - "4 - General action" - ] - }, - { - "text": "Strengthen measures to address the serious and ongoing issue of violence against women, while taking on board the recommendations of the Special Rapporteur on violence against women, its causes and consequences", - "values": [ - "4 - General action" - ] - }, - { - "text": "Take further steps to address gender-based violence, including guaranteeing that the cases of violence are thoroughly investigated and rights to fair trial ensured", - "values": [ - "4 - General action" - ] - }, - { - "text": "Improve the overall conditions of prisons and detention facilities and adopt relevant measures to tackle the problems such as the overcrowding and unsatisfactory state of some prisons ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Continue to implement the recommendation of the Committee on Economic, Social and Cultural Rights that a national plan for land management be adopted in accordance with applicable construction norms in areas exposed to risks of natural disasters", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Commute the sentences of the inmates currently sentenced to death and, having already acceded to the Second Optional Protocol to the International Covenant on Civil and Political Rights, speed up the adoption of the new Criminal Code to abolish the death penalty", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Strengthen the legislative framework to promote gender equality, in particular in the field of employment", - "values": [ - "4 - General action" - ] - }, - { - "text": "Pursue efforts to combat all forms of discrimination against women", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Continue the free access to education, notably for girls and vulnerable children", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Reflect the abolition of the death penalty in its legislative framework and commute existing death sentences to prison sentences", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Facilitate the strengthening of cooperation and coordination among the various institutions and commissions with different mandates that will enable effective and comprehensive implementation of the recommendations of the UPR mechanism, treaty bodies and special procedures mandate holders", - "values": [ - "4 - General action" - ] - }, - { - "text": "Improve and facilitate access to education, in particular of girls, as previously recommended", - "values": [ - "4 - General action" - ] - }, - { - "text": "Adopt a national gender policy and an action plan aimed to ensure equality between men and women within the framework of domestic law ", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Take steps towards the abolition of the death penalty and, during the process to abolish it, remove mandatory death sentences and release basic information about the death penalty, including the number of people sentenced to death and awaiting execution on death row ", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Extend an invitation to the Special Rapporteur on the right to adequate housing, in order to obtain independent advice concerning the development of legislation and policies in accordance with international standards", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Reconsider all the laws that criminalize or restrict the right to freedom of expression and the right of internet freedom ", - "values": [ - "3 - Considering action" - ] - }, - { - "text": "Ensure the full application of the law in order to prevent child, early and forced marriage and to bring perpetrators of sexual violence perpetuated against children to justice", - "values": [ - "4 - General action" - ] - }, - { - "text": "Ensure that all criminal law provisions, including Articles 126, 135, 137 and 173 of the Penal Code, which impose harsh penalties for a wide range of legitimate expression, are fully consistent with the full enjoyment of the right to freedom of opinion and expression, and the right to freedom of peaceful assembly and association", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Finalize, as soon as possible, the National Action Plan on the Rights of the Child and address, as a matter of priority, the issue of unaccompanied children", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Strengthen the coordination effort by the Higher Council for Prisons with a view to improve the state of prisons in particular, the problems of overcrowding and violence in prisons in the country ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Adopt the appropriate legislation to deal with genital mutilation ", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Take further steps in order to guarantee freedom of expression, including freedom of expression on the internet ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Pursuing policies and programs in the education of citizenship and human rights as best practices", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Accede to the United Nations Convention on the Status of Refugees and the 1967 Protocol as well as to the 1954 Convention on the Status of Stateless Persons", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Persist in its efforts aimed at the prevention, punishment and eradication of all forms of violence against women as well as its efforts to guarantee equality and ensure equal recognition in the law of civil, political, economic and social rights between men and women", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Protect the rights of indigenous peoples, peasants and other people working in rural areas", - "values": [ - "4 - General action" - ] - }, - { - "text": "Facilitate the visit of the Special Rapporteur on contemporary forms of racism, racial discrimination, xenophobia and related intolerance", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Take the necessary steps to guarantee the right to associate and work freely for human rights defenders, in conformity with the United Nations Declaration on the Right and Responsibility of Individuals, Groups and Organs of Society to Promote and Protect Universally Recognized Human Rights and Fundamental Freedoms.", - "values": [ - "4 - General action" - ] - }, - { - "text": "Consider ratification of the Optional Protocol to the Convention on the Rights of the Child on a communications procedure as a matter of priority", - "values": [ - "3 - Considering action" - ] - }, - { - "text": "Expand programmes of targeted social assistance to provide the population with education and medical services", - "values": [ - "4 - General action" - ] - }, - { - "text": "Pursue efforts to enhance women\u2019s rights and fight all sorts of discrimination against women", - "values": [ - "4 - General action" - ] - }, - { - "text": "Continue its policy of social protection for its residents in view of its national programme on ensuring food security, the fight against illiteracy, and the promotion of economic opportunities for its citizens", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Impose a nationwide moratorium on executions and commute existing death sentences to imprisonment term with a view to abolish the capital punishment entirely ", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Consider reviewing its law on the minimum age of criminal responsibility, to be in conformity with international human rights standards ", - "values": [ - "3 - Considering action" - ] - }, - { - "text": "Develop a strategy to eradicate the process of child trafficking, child prostitution, and child pornography in the process of the development of the national plan of actions on combating trafficking in human beings ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Hold parliamentary elections as early as possible", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Reform the security and penitentiary systems. Bring an end to extrajudicial executions, arbitrary detentions and the practice of torture. Ratify the Optional Protocol to the Convention against Torture", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Continue to build partnerships with friendly countries and organizations, and explore all possible avenues of cooperation, either at bilateral, regional or international levels, to improve the country's capacity and to enhance its manpower in order to allow the people of Timor-Leste full enjoyment of their rights ", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Review its legislation to prohibit and sanction corporal punishments of children in all areas", - "values": [ - "3 - Considering action" - ] - }, - { - "text": "Take measures to extend the \u201cTuition Waiver and Tuition Support Fund Program for High School Education\u201c to children attending Korean schools and ensure equal treatment of Korean schools in accordance with the recommendations of relevant United Nations treaty bodies", - "values": [ - "4 - General action" - ] - }, - { - "text": "Consider taking measures to guarantee freedom of expression, particularly the freedom of the press and to harmonize national legislation in this area with international norms ", - "values": [ - "3 - Considering action" - ] - }, - { - "text": "Consider the possibility of derogating the death penalty of its juridical regime", - "values": [ - "3 - Considering action" - ] - }, - { - "text": "Continue to implement measures designed to promote and protect the rights of children.", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Ensure free functioning of political parties, including those in the opposition", - "values": [ - "4 - General action" - ] - }, - { - "text": "Continue and consolidate efforts in promoting dialogue, tolerance and social cohesion", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Promptly ratify of ICERD to carry out effective implementation of the principles of this instrument", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Step up its efforts in the field of combating trafficking of human beings and consider the possibility of inviting the Special Rapporteur on trafficking in persons, especially women and children ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Continue the commendable process of ratification of the CPED and ICRMW ", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Publish all reports of previous commissions on enforced disappearances, in particular the Presidential Commission to Investigate Complaints of Missing Persons (PCICMP)", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Take steps to ensure that the current economic crisis does not erode human rights, in particular by developing a National Action Plan on Human Rights as well as by providing continued support and shared experience on human rights worldwide", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Repeal the legal provisions that allow the death penalty and declare a moratorium on executions, as previously recommended", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Consider reviewing the policy regarding asylum seekers and take appropriate measures to guarantee they are treated in accordance with applicable international human rights standards", - "values": [ - "3 - Considering action" - ] - }, - { - "text": "Expand programmes to eliminate the worst forms of child labour to reach more children in agriculture and children exploited in prostitution ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Redouble efforts to end traditional practices against human rights of women such as FGM ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Enhance its targeting mechanisms with regard to the delivery of social assistance to ensure that children and women, particularly pregnant and breastfeeding women, are not left behind", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Take all necessary measures to render effective the prosecution and sentencing of perpetrators of torture and ill-treatment", - "values": [ - "4 - General action" - ] - }, - { - "text": "Increase efforts to ensure that the competent authorities, in particular the public prosecutor, investigate all torture allegations promptly and to bring any officials found responsible to justice", - "values": [ - "4 - General action" - ] - }, - { - "text": "Strengthen human rights training for security forces and prison officials", - "values": [ - "4 - General action" - ] - }, - { - "text": "Step up efforts to ensure that investigation of attacks on voices for freedom of expression become a federal issue", - "values": [ - "4 - General action" - ] - }, - { - "text": "Bring the electoral system in line with its OSCE commitments and principles for democratic elections, in close cooperation with the Office for Democratic Institutions and Human Rights", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Continue its work on improving the situation of children's rights, by taking further measures to develop comprehensive policies and strategies, and by strengthening the education system, healthcare and social protection", - "values": [ - "4 - General action" - ] - }, - { - "text": "Address the limitations for children born out of wedlock in accessing Austrian nationality and ensure non-discrimination", - "values": [ - "4 - General action" - ] - }, - { - "text": "Effectively protect and satisfy the unimpeded exercise of freedom of religion of non-Muslim citizens.", - "values": [ - "4 - General action" - ] - }, - { - "text": "Ratify and domesticate the Optional Protocol to the Convention of the Rights of the Child on a communications procedure", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Apply a new moratorium on the death penalty with the aim of proceeding towards the final abolition of capital punishment", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Maintain its firm stance on the growing need for housing of Venezuelan families ", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Continue to realize concrete measures for the protection of the rights of the child and continue Government support for the institution of the family", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Continue cooperation with the International Criminal Tribunal for the Former Yugoslavia until the facts of the serious violations of human rights that occurred in the region during the 1990s have been clarified", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Carry out a country-wide Roma needs assessment and health status study in consultation with Roma, Roma organizations, and health professionals, as the first step to defining a new national plan of action for ensuring that Roma have access to the highest attainable standard of health", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Continue the efforts of reforming the justice sector, in order to enhance the independence of the judiciary and facilitate access to justice to everyone", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Although Lesotho has not been able to meet most of the MDGs, she will redouble her efforts to achieve the goals and in the post 2015 period, she will mobilize more development partners and exert decisive leadership to attain National Vision 2020 as the MDGs bear a close relationship to the 7 pillars of the Vision 2020.", - "values": [ - "4 - General action" - ] - }, - { - "text": "Further the on-going reform process in order to consolidate democracy and rule of law ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Further advance in the area of reparations for victims of human rights violations, including the awareness-raising of the population about the situation faced by these persons", - "values": [ - "4 - General action" - ] - }, - { - "text": "Increase cooperation with the relevant United Nations bodies and other international organizations in the efforts to mitigate the harms of climate change and adapt to its effects on the country's citizens", - "values": [ - "4 - General action" - ] - }, - { - "text": "Continue to promote the consolidation of its social policies and combat poverty and inequality, which are still present", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Take measures to ensure the rights of peaceful assembly, freedom of expression and freedom of assembly, especially in the context of peaceful protests", - "values": [ - "4 - General action" - ] - }, - { - "text": "Ensure that research on how the education of children with disabilities can be implemented through mainstream educational settings, is included in the planned comprehensive implementation plan for persons with disabilities. Regional and international experiences and best practices could be incorporated into such a study ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Increase efforts aimed at countering the root causes of early school leaving and the lack of continuity in education ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Take measures to address racist discourse in the media and racist statements and threats on the Internet", - "values": [ - "4 - General action" - ] - }, - { - "text": "Adopt necessary measures to combat and eliminate all forms of discrimination and violence against women and girls, and, in this regard, review the work of the Department of Gender Affairs and proceed with relevant reforms ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Ensure that leaders of all political parties, religious believers, civil society activists and journalists can peacefully exercise their right to freedom of expression in conformity with the ICCPR to which Turkmenistan is a party ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Consider withdrawing the reservations to CEDAW articles 2, 16 and 29 and ratify OP-CEDAW", - "values": [ - "3 - Considering action" - ] - }, - { - "text": "Fight racial discrimination by adopting a comprehensive strategy that includes indirect structural and institutional discrimination ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Complete the process of examining regional and international human rights instruments to which the country is party, so as to revise national legislation and better fulfill its regional and international obligations imposed by such instruments", - "values": [ - "4 - General action" - ] - }, - { - "text": "Cognizant of the clear benefits of working in close collaboration with CSOs, the government is committed to fostering ever closer ties with CSOs to ensure that the programs achieve the set objectives.", - "values": [ - "4 - General action" - ] - }, - { - "text": "Submit the initial report to the Committee on the Rights of the Child, ratify the CRC Optional Protocols and complete the accession to the two International Covenants on Civil and Political Rights and CAT", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Repeal or revise the "Protection of Race and Religion" laws and Section 377 of the 1861 Penal Code to ensure the rights of women, religious minorities and the lesbian, gay, bisexual, transgender and intersex community are protected", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Continue its efforts to combat the phenomenon of terrorism and money laundering", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Allow for the functioning of non-Muslim religious communities, especially the ones that are already recognized as minorities, without undue constraints, in line with the European Convention on Human Rights and the case law of the European Court of Human Rights ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Complete the process of drafting a bill on the rights of IDPs having consulted all relevant stakeholders.", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Ratify the ILO Convention No. 155 on Occupational Safety and Health ", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Further enhance its efforts to effectively prevent and prosecute violence against children", - "values": [ - "4 - General action" - ] - }, - { - "text": "Repeal all provisions criminalizing sexual activity between consenting adults and ensuring the same rights for same sex couples as heterosexual couples ", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Maintain the positive efforts of integrating a human rights approach into education policies at various levels", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Intensify efforts to eliminate the sexist stereotypes that lead to discrimination against women in public and private life, using the National Gender Equity and Equality Plan ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Integrate the legislative and legal provisions of the international human rights treaties ratified by the Gambia in its own legislation", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Consider ratifying the Optional Protocol to Convention on the Rights of Persons with Disabilities", - "values": [ - "3 - Considering action" - ] - }, - { - "text": "Dismantle the special courts and transfer all cases to the criminal courts or high courts, to comply with human rights obligations regarding fair hearings and due process ", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Develop a strategy to combat malnutrition ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Engage constructively with international and regional partners to secure support for programs aimed at providing humanitarian assistance to migrants and refugees", - "values": [ - "1 - Minimal action" - ] - }, - { - "text": "Establish an independent national preventive mechanism in accordance with the Optional Protocol to the Convention against Torture and Other Cruel, Inhuman or Degrading Treatment or Punishment", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Modernize and update the criminal system in particular to increase penalties for cases of sexual abuse of minors, as the numbers of such cases are alarming", - "values": [ - "4 - General action" - ] - }, - { - "text": "Continue taking steps to ensure the full realization of the right to safe drinking water and sanitation for all, including through adequate investment in the relevant services infrastructure", - "values": [ - "4 - General action" - ] - }, - { - "text": "Speed up the realization of equality in the exercise of human rights by disadvantaged groups", - "values": [ - "4 - General action" - ] - }, - { - "text": "Fully incorporate the Convention on the Rights of the Child and its optional protocols in Swedish legislation so as to end child prostitution, child pornography and trafficking of children for sexual purposes", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Sign and ratify the Convention on Economic, Social and Cultural Rights as well as the Optional Protocols thereto", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Continue its work on accession to the International Convention for the Protection of All Persons from Enforced Disappearance", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Intensify efforts to investigate allegations of excessive or unlawful use of force by police and the military, and to prosecute such cases as appropriate", - "values": [ - "4 - General action" - ] - }, - { - "text": "Consider ratifying the International Convention on the Protection of the Rights of all Migrant Workers and Members of their Families as well as ILO Convention No. 189", - "values": [ - "3 - Considering action" - ] - }, - { - "text": "The Government was committed to developing a system of universal health care", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Take measures to abolish the death penalty", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Consider ratifying the International Convention on the protection of the rights of Migrant Workers and Members of their Families", - "values": [ - "3 - Considering action" - ] - }, - { - "text": "Significantly improve the implementation of protective measures contained in labour laws, in particular by increasing the number of labour inspectors ", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Strengthen its policy on prevention and combat of child labour and on the full guarantee of the rights of the child, with special attention to children without parental care.", - "values": [ - "4 - General action" - ] - }, - { - "text": "Ratify the Convention against Torture and Other Cruel, Inhuman or Degrading Treatment or Punishment and end impunity for security forces accused of committing human rights violations ", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Implement in a stringent way on a priority basis the General Act on Women's Access to a Life Free of Violence", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Extend a standing invitation to all Human Rights Council special procedures", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Intensify efforts to protect environmental, indigenous and land rights defenders, in line with the Declaration on Human Rights Defenders, especially regarding the use of force and firearms at public assemblies and protests", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Issue permits to refugees in Lebanon to allow them freedom of movement and employment, including the right to work in professions that require syndicate membership, and without onerous renewal or fee restrictions", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Step up its efforts in bringing to justice perpetrators of trafficking of women and sexual exploitation, as well as ensuring appropriate and timely compensation for victims ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Introduce legislation to prohibit corporal punishment of children in all settings ", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Speed up ratification of the ICCPR.", - "values": [ - "4 - General action" - ] - }, - { - "text": "Ratify the two international Covenants and other core international human rights conventions", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Further develop strategies to improve health services for all its citizens, especially in relation to combating maternal mortality ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Further strengthen the protection of the rights and dignity of foreigners when subjected to identity controls or expulsion procedures", - "values": [ - "4 - General action" - ] - }, - { - "text": "Allocate sufficient resources to specialized courts and tribunals with jurisdiction over femicide and other forms of violence against women, and move towards the full implementation of the Law against Femicide and Other Forms of Violence against Women", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Increase its efforts for the protection of civilians ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Remain engaged with the international community in encouraging collective action on the issue of human rights and climate change ", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Facilitate the establishment of an OHCHR office in the State, which would be able to operate throughout the country with a full promotion and protection mandate", - "values": [ - "4 - General action" - ] - }, - { - "text": "Issue a standing invitation to special procedures mandate holders of the Human Rights Council", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Continue its fight against poverty with international community's support", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Put in place a moratorium on the use of the death penalty, with a view to its abolition", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Increase the resources aimed at improving the conditions of prisons, especially in relation to health conditions and the separation of prisoners according to the type of crime committed and level of risk", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Take all measures necessary to abolish the death penalty and, as a first step, introduce a moratorium with a view to adhering to the resolutions of the General Assembly in this regard.", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Adopt national legislation in accordance with the Optional Protocol to the Convention against Torture", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Incorporate into domestic law and enact the provisions of the international instruments, particularly CAT, CEDAW and CRC", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Continue working on the implementation of a national plan to combat violence against children and youth", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Ensure that all allegations of extrajudicial executions, excessive use of force, arbitrary detentions or acts of torture are investigated and bring those responsible to justice", - "values": [ - "4 - General action" - ] - }, - { - "text": "Take steps to eliminate the gender pay gap across all groups and ethnicities", - "values": [ - "4 - General action" - ] - }, - { - "text": "Continue its efforts to fully ensure economic and social rights for all vulnerable groups, including immigrants and persons with disabilities", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Guarantee the exercise of freedom of association and promote and facilitate the activities of all NGOs ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Remain committed to implementing its human rights obligations and minimizing the impact of the crisis, particularly on the most vulnerable ", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Ensure effective implementation of recent measures to prevent and contrast violence against children, both online and offline", - "values": [ - "4 - General action" - ] - }, - { - "text": "Strengthen the actions and the commitment of all State bodies in combatting gender violence with the goal of reducing the number of deaths caused by such violence", - "values": [ - "4 - General action" - ] - }, - { - "text": "Take measures to effectively guarantee freedom of expression, assembly and association, prevent censorship and undue control of the media, protect journalists and investigate all attacks against them", - "values": [ - "4 - General action" - ] - }, - { - "text": "Take steps to eliminate child labour and forced labour and enhance respect for the rights of workers, particularly those in the mining sector. Ways to accomplish these objectives include amending the current labour laws to align with the internationally recognized fundamental worker rights, and taking measures to effectively enforce the labour laws", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Speed up the process for adopting the non-discrimination law", - "values": [ - "4 - General action" - ] - }, - { - "text": "Continue its ongoing efforts to fight corruption and to enhance the transparent and efficient nature of the State Agency for Public Services and Social Innovations (ASAN) ", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Encourage and strengthen work regarding special education of persons with disabilities", - "values": [ - "4 - General action" - ] - }, - { - "text": "Take the necessary measures in order for the law on media and access to information to comply with ICCPR ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Protect the rights of assembly and freedom of expression in the country ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Pursue its strategic policy emphasizing the universality of care and access to health services", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Continue to adhere to the principles and values which make up the identity of the country to promote the right to life and the family.", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Establish a process to identify the victims by setting up a DNA database, exhume mass graves and to set up a national commission on missing persons", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Ensure that all violations of international humanitarian and human rights law cease immediately", - "values": [ - "4 - General action" - ] - }, - { - "text": "Carry out information campaigns to prevent racist and xenophobic acts ", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Develop, in collaboration with the National Commission for Human Rights, an operational and comprehensive human rights strategy", - "values": [ - "4 - General action" - ] - }, - { - "text": "Establish an assistance mechanism for women and girls who are victims of violence, particularly victims of sexual or gender-based violence, to facilitate the filing of complaints with the police and to provide them with legal, medical and psychological assistance, as well as adequate protection", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Ensure that all anti-terrorism measures comply with international standards", - "values": [ - "4 - General action" - ] - }, - { - "text": "Consider signing the Convention on the Protection of Persons from Enforced Disappearance.", - "values": [ - "3 - Considering action" - ] - }, - { - "text": "Pursue timely and continued progress in its reconciliation and reform programme in accordance with resolution 30/1 as adopted by the Human Rights Council", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Ratify the Convention on the Elimination of All forms of Discrimination against Women as soon as possible", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Remove all the obstacles to freedom of information on the Internet, and guarantee freedom of expression, assembly and association for all", - "values": [ - "4 - General action" - ] - }, - { - "text": "Take the necessary measures to prevent the excessive use of force by security forces and investigate all cases in which such excessive use of force has led to death, as well as bring to justice and punish appropriately all perpetrators of extrajudicial executions ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Take measures to ensure the transparent, independent and impartial investigation of cases involving violence against women and girls", - "values": [ - "4 - General action" - ] - }, - { - "text": "Recognize and ensure in the legislation the right of national minorities to receive information in the State and municipal sectors in their national/mother language in the places of their compact residence ", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Invite Saudi Arabia to accede to other international human rights instruments", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Adopt the measures necessary to protect people of different religious beliefs from discrimination", - "values": [ - "4 - General action" - ] - }, - { - "text": "Invest in education to provide education for all ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Ensure that constitutional protections for freedom of expression, including press freedom, are upheld, and refrain from using administrative, judicial and financial means to unduly restrict the exercise of this right ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Continue to improve the quality of education and further increase access to education for the Lao multi-ethnic people ", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Continue in a permanent manner the human rights education and training programs, disseminating specific information in that regard with training courses for the national and provincial committees, including police officers and the military ", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "An increase in the number of shelters for refugees in Yemen", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Put in place mechanisms to follow up on the recommendations of the UPR, which promote equality of rights and non-discrimination of all citizens, in particular vulnerable groups ", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Ensure the right to education for Roma Children and intensify measures taken to remedy the difficulties encountered by Roma and Romani/Taters children in the education system, and find solutions suited to the particular lifestyle of Roma", - "values": [ - "4 - General action" - ] - }, - { - "text": "Take steps to prevent crimes motivated by racial or religious discrimination through education, awareness-raising and training, and ensure that any hate crimes are effectively and promptly investigated", - "values": [ - "4 - General action" - ] - }, - { - "text": "Take further measures for the fulfilment of social, economic and cultural rights for all", - "values": [ - "4 - General action" - ] - }, - { - "text": "Provide the necessary assistance to the victims of domestic violence, including through the adoption of rehabilitation and reintegration programmes ", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Scale up the human rights protection awareness-raising of vulnerable groups, including migrant workers", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Harmonize national legislation with the international obligations under the respective conventions ", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Adopt the new Criminal Code so as to finally exclude the death penalty from its legislation", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Undertake steps to strengthen mechanisms to prevent child labour ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Ensure concrete implementation of international human rights standards at all levels", - "values": [ - "4 - General action" - ] - }, - { - "text": "Namibia remains committed to implementing the recommendations that enjoyed her support during the first cycle of the UPR and to participating in the second cycle of the UPR in an open and constructive manner.", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Ensure that the education contributes to cultural diversity, equal rights and the dignity of the person", - "values": [ - "4 - General action" - ] - }, - { - "text": "Strengthen efforts to eliminate child labour ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Consider removing the rules which allow the criminalization of religious activities merely on the basis of lack of legal registration required for religious group ", - "values": [ - "3 - Considering action" - ] - }, - { - "text": "Continue with enlightened initiatives such as the Yes I Can literacy programme in diverse national, regional, and local realities, a programme aimed at implementing the right to education, broaden the scope of its cooperation in sharing and replicating its home-grown methods of combating illiteracy and the Operation Miracle in the field of health", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Consider ratifying the International Convention for the Protection of All Persons from Enforced Disappearance and establish an independent commission to carry out impartial investigations in a prompt, impartial and effective manner into the alleged cases of enforced disappearances reported in the country", - "values": [ - "3 - Considering action" - ] - }, - { - "text": "Seize the opportunity raised by the ongoing review of the Penal Code to consider abolishing capital punishment and acceding to ICCPR-OP 2.", - "values": [ - "3 - Considering action" - ] - }, - { - "text": "Consider the possibility of establishing a national human rights institution in accordance with the Paris Principles", - "values": [ - "3 - Considering action" - ] - }, - { - "text": "Take effective steps to implement its legislative measures and policies on discrimination and segregation of Roma people", - "values": [ - "4 - General action" - ] - }, - { - "text": "Take resolute measures to condemn hate speech, racial discrimination, xenophobia and intolerance against all minority groups, migrants and asylum seekers", - "values": [ - "4 - General action" - ] - }, - { - "text": "Implement the provisions of the Palermo Protocols ratified by Turkmenistan, in particular with a view to criminalizing trafficking in persons.", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Close the gender pay gap", - "values": [ - "4 - General action" - ] - }, - { - "text": "Accede to international instruments relating to statelessness and to the assistance and protection of displaced persons in Africa ", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Provide rehabilitation services, nutrition, adequate housing, attention to health and educational opportunities for children living on the street in conformity with recommendations of the Committee on the Rights of the Child", - "values": [ - "4 - General action" - ] - }, - { - "text": "Impose a moratorium on executions with a view to abolishing the death penalty at the federal and state levels", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Ensure the training of prosecutors and security forces so they can identify, investigate and prosecute cases of gender-based violence", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Take all the necessary measures to implement the Convention on the Rights of Persons with Disabilities at the domestic level ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Empower legal advisers in parliament to review draft laws and policies, incorporate input from civil society and experts in the international community, and oppose legislation that is inconsistent with international human rights obligations and commitments", - "values": [ - "4 - General action" - ] - }, - { - "text": "Implement the law to establish a national human rights institution consistent with the Paris Principles", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Continue to take measures to fight all discrimination and stereotyping against women, in law and in practice, and, in this regard, ratify the Optional Protocol to the Convention on the Elimination of All Forms of Discrimination against Women", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Strengthen legislation against discrimination by adopting a comprehensive law against racism, racial discrimination, xenophobia and related intolerance", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Take the necessary measures to allow stateless children born in its territory to acquire Ivorian nationality and remove discriminatory grounds of eligibility for naturalization, including the requirement that persons must be free of mental or physical handicaps", - "values": [ - "4 - General action" - ] - }, - { - "text": "Adopt legal and administrative measures aimed at eliminating from the law on Immigration and International Protection the geographical restrictions in the asylum procedure, guaranteeing adequate and fair treatment to persons seeking international protection", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "To continue Bolivia's efforts to extradite all persons charged with human rights violations and crimes against humanity.", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Take administrative and legal measures against perpetrators of racially motivated acts", - "values": [ - "4 - General action" - ] - }, - { - "text": "Further strengthen measures aimed at combating all forms of discrimination against women", - "values": [ - "4 - General action" - ] - }, - { - "text": "Seek international cooperation, particularly from Germany, the United Kingdom of Great Britain and Northern Ireland, Australia and New Zealand, to eliminate the effects of the environmental pollution and to create employment what contributes to fight against poverty ", - "values": [ - "1 - Minimal action" - ] - }, - { - "text": "Ratify international human rights treaties, including the Second Optional Protocol to the International Covenant on Civil and Political Rights, aiming at the abolition of the death penalty", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Continue efforts aimed at promoting and protecting human rights, especially in the economic and social domains.", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Continue its positive efforts to promote human rights", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Lift its reservation to article 21 (a) of the CRC", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Step up efforts to effectively implement the Elimination of Violence against Women law and the programs outlined in the National Action Plan for Afghan Women ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Continue its aspirations to bring women into the mainstream of its national aspirations ", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Amend the Sodomy Law so that a sexual relationship between two consenting adults of the same sex is no longer punishable ", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Continue its efforts to eliminate violence against women ", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Allocate the resources necessary to the Office of the Human Rights Commissioner", - "values": [ - "4 - General action" - ] - }, - { - "text": "Consider sharing its experience and best practices with other developing countries in achieving the MDGs, particularly in areas of primary education, gender equality and reduction of child mortality", - "values": [ - "3 - Considering action" - ] - }, - { - "text": "Ensure that the National Human Rights Institution is in full compliance with the Paris Principles and has a broad and inclusive human rights mandate", - "values": [ - "4 - General action" - ] - }, - { - "text": "Adopt further measures to firmly crack down on cult organizations to safeguard freedom of worship and the normal religious order", - "values": [ - "4 - General action" - ] - }, - { - "text": "Take concrete measures to raise awareness about the illegality of prejudicial and harmful traditional practices such as female genital mutilation or killing of disabled children, through the systematic application of existing laws", - "values": [ - "4 - General action" - ] - }, - { - "text": "Consider incorporating the UN Rules for the Treatment of Women Prisoners and Non-Custodial Measures for Women Offenders, otherwise known as the "Bangkok Rules" as part of its policy on the treatment of women prisoners ", - "values": [ - "3 - Considering action" - ] - }, - { - "text": "Intensify efforts to engage with development partners to support policies and programs that would advance the socio-economic rights of its people", - "values": [ - "4 - General action" - ] - }, - { - "text": "Ratify the Optional Protocol to the Convention against Torture and accede to the International Convention for the Protection of All Persons from Enforced Disappearance ", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Continue efforts to ensure that children with disabilities had access to early childhood education and care, early development programmes and inclusive vocational training opportunities in all cantons", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Take measures to eliminate discriminatory practices and cultural barriers that prevent women's access to senior and decision-making positions, and take temporary measures (quotas) to guarantee their equal representation in Parliament and Government", - "values": [ - "4 - General action" - ] - }, - { - "text": "Continue to implement plans adopted in the area of housing and rehabilitation, particularly the plan launched in 2011 aimed at preventing the construction of new slums ", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Take concrete measures towards genuine media freedom and freedom of expression and to establish a climate conducive to safe and enabling working conditions for journalists, bloggers, media outlets and human rights defenders ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Complete the new Constitution on time and take into account that peaceful coexistence requires that the right to freedom of religion for all citizens be clearly included and formulated according to international standards ", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Reduce the use of pretrial detention, ensuring judicial review, establishing an independent police complaints mechanism and speeding up trials ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Continue strengthening efforts aimed at promoting food security and eradicate all forms of malnutrition, in particular among children under the age of 5", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Strengthen efforts to eliminate discrimination against girls and vulnerable groups such as children with disabilities and orphans ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Look to replicate successful programmes that aim to keep adolescents out of the prison system wherever possible ", - "values": [ - "4 - General action" - ] - }, - { - "text": "With the assistance of the international community, strengthen its human and institutional capacity in education and health.", - "values": [ - "4 - General action" - ] - }, - { - "text": "Take measures to ensure greater representation in Parliament for women ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Increase awareness-raising campaigns on women's rights and the negative effects of gender-based violence", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Continue to promote its successful policies, mainly in the field of economic, social and cultural rights, in order to further increase the quality of life of its people, particularly the most vulnerable sectors of the population", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Complete the reviews under way to update labour legislation, giving particular attention to issues of harassment in the workplace.", - "values": [ - "4 - General action" - ] - }, - { - "text": "Ratify the International Convention on the Protection of the Rights of All Migrant Workers and Members of Their Families and the Convention on the Rights of Persons with Disabilities ", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Ratify the ICRMW and the Conventions on Refugees and Stateless persons", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Establish an official moratorium on the death penalty", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Strengthen efforts to raise awareness about violence against women and children", - "values": [ - "4 - General action" - ] - }, - { - "text": "Continue to implement its national equity and gender strategy", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Address discrimination, racial profiling by the authorities, Islamophobia and religious intolerance by reviewing all laws and practices that violate the rights of minority groups, with a view to amending them", - "values": [ - "4 - General action" - ] - }, - { - "text": "Continue efforts to improve the human rights situation.", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Establish a national human rights mechanism in full compliance with the Paris Principles ", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Take necessary measures to prevent possible cases of corporal punishment against children in the home and in all other settings", - "values": [ - "4 - General action" - ] - }, - { - "text": "Become a party to the Second Optional Protocol to the International Convention on Civil and Political Rights", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Revise the Penal Code and the legislative framework in accordance with the Rome Statute of the International Criminal Court and other international obligations of Timor-Leste", - "values": [ - "3 - Considering action" - ] - }, - { - "text": "Renew its efforts to ensure follow-up to and the systematic implementation of the recommendations of the treaty bodies and of the Austrian Constitutional Court ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Continue its good cooperation with civil society organizations and United Nations agencies, especially UNICEF, for the full registration of children at birth", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Intensify its efforts to combat racial hatred and racially-motivated violence by allowing the introduction of public action for the victims", - "values": [ - "4 - General action" - ] - }, - { - "text": "Take immediate steps in order to assure that acts of interethnic violence will not be repeated and promote understanding between different national groups ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Move forward with a policy of free of charge education", - "values": [ - "4 - General action" - ] - }, - { - "text": "Ratify the International Convention for the Protection of All Persons from Enforced Disappearance (ICPPED)", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Adopt best practices on freedom of assembly", - "values": [ - "4 - General action" - ] - }, - { - "text": "Ratify other important international human rights instruments, such as the Optional Protocol to CRPD", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Prevent anyone in the military, paramilitary or guerrilla forces who is accused of grave human rights violations and crimes against humanity from benefitting from the amnesty laws.", - "values": [ - "4 - General action" - ] - }, - { - "text": "Initiate an integrated policy for the promotion and protection of the human rights of migrants which takes into account the vulnerable situation of foreign domestic workers ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Take steps to ensure that the National Human Rights Institution, which Japan is to create, is consistent with the Paris Principles", - "values": [ - "4 - General action" - ] - }, - { - "text": "Ensure that all Bahrainis can freely cooperate with United Nations human rights mechanisms", - "values": [ - "4 - General action" - ] - }, - { - "text": "Remove impermissible barriers to free assembly and expression, including those prohibiting demonstrations in Algiers ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Ratify the Convention Against Torture and Other Cruel, Inhuman or Degrading Treatment or Punishment (CAT).", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Continue to promote its many initiatives for the eradication of all forms of discrimination against women ", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Ensure effective coordination at the federal, regional and community levels for the implementation of the Convention on the Rights of the Child, the Convention on the Elimination of All Forms of Discrimination against Women, and the International Covenant on Economic, Social and Cultural Rights", - "values": [ - "4 - General action" - ] - }, - { - "text": "Ratify the Second Optional Protocol to ICCPR, aiming at the abolition of the death penalty (ICCPR-OP)", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Review its national legal framework, and fully incorporate the principle of non-discrimination, and adopt a pro-active strategy to eliminate discrimination on any grounds, notably against the most vulnerable groups ", - "values": [ - "3 - Considering action" - ] - }, - { - "text": "Establish an official moratorium on the use of the death penalty with a view to abolishing it", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Withdraw the reservations to the Convention on the Status of Refugees ", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Further improve programmes that address violence against women and children ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Allocate adequate resources to train the relevant authorities to ensure the effective implementation of the Prevention of Human Trafficking Act", - "values": [ - "4 - General action" - ] - }, - { - "text": "Ratify the Convention on the Elimination of All Forms of Discrimination against Women and prohibit female genital mutilation ", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Eliminate the mandatory character of the death penalty with a view to abolishing capital punishment altogether. In the meantime, establish a moratorium on executions", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Step up efforts to prevent violence against children", - "values": [ - "4 - General action" - ] - }, - { - "text": "Continue to develop its health-care undertakings and further strengthen its work on HIV/AIDS prevention and treatment", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Take all necessary measures to abolish the death penalty and raise awareness on the fact that the death penalty is not a useful instrument to fight crime", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Conduct further human rights education activities for public servants, in particular law enforcement officers, with a view to keeping up with the constitutional and legal reform as well as newly joined international human rights legal instruments", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Take more effective measures to combat racial discrimination and intolerance, including by promptly investigating and taking stern action against the perpetrators of hatred, racist and xenophobic acts and speeches, and against those who have desecrated the premises of worship and memorial landmarks", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Fully restore the rights and dignity of the Palestinian people, including their rights to life, to live in dignity, adequate food, housing, health, education as well as their freedom of movement.", - "values": [ - "4 - General action" - ] - }, - { - "text": "The Government is implementing the Family Court Proceedings Reform Bill, and is committed to developing and promoting consistent policies, training, and messages around sexual violence.", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Continue to cooperate fully with all United Nations human rights mechanisms ", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Continue its efforts in the field of poverty reduction so that the vulnerability of children to risks of poverty, human trafficking and kidnapping is decreased ", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Consider strengthening programmes to fight and prevent HIV-AIDS, with special attention to women and children.", - "values": [ - "3 - Considering action" - ] - }, - { - "text": "Ratify the International Covenant on Civil and Political Rights, the International Covenant on Economic, Social and Cultural Rights, the Convention against Torture and Other Cruel, Inhuman or Degrading Treatment or Punishment and the Optional Protocols to those respective treaties", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Take further measures to improve the quality of the basic education system by increasing the number and the training of teachers, to increase the school attendance rate at the secondary level, to decrease drop-out rates, to combat child labour and to prevent discrimination against young girls", - "values": [ - "4 - General action" - ] - }, - { - "text": "Set up an independent national human rights institution in full compliance with the Paris Principles", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Undertake an independent investigation into the post-electoral violence as well as allegations of human rights violations in the same context, in order to shed light on the involvement and responsibilities of the various actors and bring justice to victims", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Immediately release all individuals detained without a legal basis, including those that have completed their terms and those acquainted by courts ", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Implement the commitment taken in 2011 to ensure gender equality", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Consider ratifying all outstanding international human rights instruments, and update domestic legislation to bring it into line with the provisions of these international treaties ", - "values": [ - "3 - Considering action" - ] - }, - { - "text": "Continue the fruitful cooperation with United Nations mechanisms on human rights as well as the process of ratification of international instruments that Chad has not yet acceded to", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Reduce the number of crimes punishable by death by December 2014 ", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Continue the cooperation with international organizations and donor countries to find solutions to the problems of the refugees", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Consider developing human rights indicators as an instrument that would allow the assessment of national human rights policies", - "values": [ - "3 - Considering action" - ] - }, - { - "text": "Enact a new law governing access to public information in line with international standards", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Ratify or accede to the remaining core international human rights treaties", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Accede to the Optional Protocol to the Convention against Torture and Other Cruel, Inhuman or Degrading Treatment or Punishment OP-CAT and establish its national preventive mechanism accordingly", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Ensure the full implementation of child labour provisions, and take all necessary measures to prevent child labour in both rural and urban areas, including child domestic work ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Pursue its efforts in preventing and combating xenophobia.", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Continue efforts to enhance the capacities of institutions working with persons with disabilities, including educational and health institutions ", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Ratify the remaining international human rights instruments, in particular the two Optional Protocols to the Convention on the Rights of the Child ", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Complete within the envisaged time the comprehensive national programme on human rights protection", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Take further steps to promote an open and free press where journalists may report on a full spectrum of political, social and economic issues without fear of retribution", - "values": [ - "4 - General action" - ] - }, - { - "text": "Respect and protect freedom of expression online and offline, and freedom of assembly and association, including by lifting obstacles regarding the registration and work of NGOs, and by acceding to the first Optional Protocol to the International Covenant on Civil and Political Rights", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Eventually consider extending a standing invitation to all the special procedures mandate holders", - "values": [ - "3 - Considering action" - ] - }, - { - "text": "Ratify the Second Optional Protocol to the International Covenant on Civil and Political Rights and the International Convention for the Protection of All Persons from Enforced Disappearance", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Ratify the Second Optional Protocol to ICCPR as soon as possible", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "The Government is committed to reducing maternal morbidity and infant mortality and to promoting children's healthy development and has established an intersectoral commission to promote and safeguard sexual and reproductive rights.", - "values": [ - "4 - General action" - ] - }, - { - "text": "Consider ratifying human rights treaties to which Guinea-Bissau is not yet a party, such as the Convention on the Rights of Persons with Disabilities", - "values": [ - "3 - Considering action" - ] - }, - { - "text": "Continue its efforts in fighting discrimination based on ethnicity, gender and sexual orientation", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Persevere along its path and ask the international community to provide all the technical and financial support needed by Tuvalu during this process, particularly for the setting up of a national human rights institution in conformity with the Paris Principles. ", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Take all the necessary measures to ensure the protection of the rights of the child, put an end to the recruitment and use of child soldiers by all the parties to the conflict, and create mechanisms to support the reintegration of demobilized children", - "values": [ - "4 - General action" - ] - }, - { - "text": "Establish an independent body for investigating complaints about the actions of law enforcement officials ", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Continue to provide comprehensive protection to citizens' economic, social and cultural rights", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Effectively apply legal and other measures to protect Roma and other minorities from violence and police mistreatment.", - "values": [ - "4 - General action" - ] - }, - { - "text": "Speed up the process of ratification of OP-CAT and establish an effective national preventive mechanism for preventing torture", - "values": [ - "4 - General action" - ] - }, - { - "text": "Continue strengthening on-going measures aimed at improving the living conditions of the whole population of the country ", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Reach a timely decision to sign ICESCR, ICCPR, ICERD and the Optional Protocol to CRC on the sale of children ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Adopt appropriate measures to widely disseminate and ensure the full observance of the Declaration on Human Rights Defenders", - "values": [ - "4 - General action" - ] - }, - { - "text": "Define criminal offences, in particular those in article 164 of the Criminal Code on incitement to national, ethnic or racial enmity or discord, or insult to the national honour and dignity or religious feelings of citizens, in accordance with international human rights law, and giving special attention to the right to freedom of expression", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Immediately appoint a President of the Court of Cassation and proceed with the reform of the justice system", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Put in place awareness campaigns to sensitize local communities on the importance of education for both boys and girls alike", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Take the necessary steps to ratify the International Convention on the Protection of the Rights of All Migrant Workers and Members of Their Families ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Assign the necessary economic, technical and financial resources to accelerate the implementation of the National Preventive Mechanism against Torture", - "values": [ - "4 - General action" - ] - }, - { - "text": "Adopt legislation to prohibit corporal punishment in public and private schools ", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Ratify the OP-CRC-AC ", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Continue efforts towards combating racism and hate speech against foreigners through disseminating a culture of dialogue and cooperation among religions and civilizations", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Take urgent measures to counter overcrowding, in particular by focusing on alternative measures to detention, and to guarantee the access of prisoners to basic health care and an adequate diet", - "values": [ - "4 - General action" - ] - }, - { - "text": "Continue the efforts to further enhance human rights according to the universal human rights standards as well as to the social and religious specificities of the Kuwaiti society ", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Ensure that all relevant international conventions and protocols are respected, and that migrants, particularly children, have access to basic services and are housed in suitable conditions", - "values": [ - "4 - General action" - ] - }, - { - "text": "Awareness raising on disaster prevention, enhancement of early warning systems, transparent and participatory disaster mitigation exercises, ensuring equitable relief measures with special attention paid to vulnerable groups and the preparation of a consistent methodology to determine compensation to affected people will be carried out", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Promote the registration of Syrian refugees by the Office of the United Nations High Commissioner for Refugees [UNHCR] in order for the international community to help Lebanon to cope with this humanitarian crisis and to allow the return of Syrians in the country when peace returns. Promote refugee access to livelihoods", - "values": [ - "4 - General action" - ] - }, - { - "text": "Continue introducing international norms of human rights in the national legislation and efforts to increase the potential and capacity of national human rights institutions", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Adopt and implement efficient policies aimed at eliminating genderbased violence, combating traditional stereotypes through targeted human rights educational campaigns, and guaranteeing for victims access to justice and rehabilitation", - "values": [ - "4 - General action" - ] - }, - { - "text": "Investigate and prosecute allegations of abusive practices by security and law enforcement forces targeted at indigenous people", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Increase the administrative capacity of courts to a sufficient level, to provide adequate support and protection to witnesses, to accelerate the investigation and prosecution of war crimes and to take the necessary steps to excavate all known mass/common graves and to identify all the remains", - "values": [ - "4 - General action" - ] - }, - { - "text": "Persevere with implementation of its vision of Brunei Darussalam for 2035 and share its experience in this regards with the international community ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Continue to support economic development in the poor and the least developed countries and to contribute to the attainment of sustainable development in those countries ", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Continue to implement effective policies to ensure full access to health services for its people", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Enact necessary legislation to prevent, suppress and eliminate discrimination against women and to combat domestic violence and ensure its effective enforcement to provide all requisite protection.", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Continue efforts to fight human trafficking and all forms of slavery", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Adopt appropriate legislation to separate persons deprived of their liberty on trial and facing charges from those already serving a sentence ", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Further strengthen activities to prevent the spread of HIV and stigmatization and discrimination against people living with HIV.", - "values": [ - "4 - General action" - ] - }, - { - "text": "Continue action including legislation to remove gender-based inequalities in the workplace, including wage disparities between men and women ", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Consider the establishment of a national human rights institution for the protection and promotion of human rights in accordance with the Paris Principles ", - "values": [ - "3 - Considering action" - ] - }, - { - "text": "Disclose detailed data on the use of the death penalty and the modalities of the executions", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Amend privacy legislation so as to bring it in line with recommendations on video surveillance of 11 March 2009 by the Human Rights Commissioner of the Council of Europe", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Continue consolidating national and international efforts in order to effectively combat the trafficking in human beings", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Retroactively re-register the affected persons, in keeping with the relevant decisions of the Slovenian Constitutional Court from 1999 and 2003, to allow for the full enjoyment of their civil as well as their economic and social rights", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Consider ratification of the International Convention on the Protection of the Rights of All Migrant Workers and Members of Their Families\n", - "values": [ - "3 - Considering action" - ] - }, - { - "text": "Increase efforts to reform the judicial system, to allocate the necessary human and material resources necessary for the functioning of independent, impartial and effective justice system in order to implement the recommendations by the national Commission of investigations, established in 2008.", - "values": [ - "4 - General action" - ] - }, - { - "text": "Continue to strengthen its national institutions to combat human trafficking ", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Enact the anti-torture bill ", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Continue to exercise its sovereign right of implementing its laws and legislation in conformity with the universally agreed human rights standards and norms, and further resist any attempts to enforce values and principles alien to those that are internationally agreed ", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Ensure equal access to free and quality education for all children, and offer additional adult learning opportunities in order to increase literacy among the adult population", - "values": [ - "4 - General action" - ] - }, - { - "text": "Strengthen the independence of the National Human Rights Commission from the executive and seek its accreditation with the ICC to promote in order to promote and safeguard human rights and its conformity with the Paris Principles ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Immediately and unconditionally release all women and girls who have been imprisoned for undergoing abortions or for having miscarriages", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Consider opening, with international donor support, a small permanent mission in Geneva, using the facilities provided by the newly opened Commonwealth Small Island States office ", - "values": [ - "1 - Minimal action" - ] - }, - { - "text": "Continue the efforts aiming at providing educational and health services", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Continue to improve the education system in the country in cooperation and partnership with relevant international organizations", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Strengthen its legal framework on the fulfilment of the rights of migrants, by considering accession to the International Convention on the Protection of the Rights of All Migrant Workers and Members of Their Families", - "values": [ - "4 - General action" - ] - }, - { - "text": "Facilitate the visits of all special procedures that have, to date, requested a visit", - "values": [ - "4 - General action" - ] - }, - { - "text": "Take legal measures to guarantee the effective protection from sale of children, contemporary forms of slavery and forced labour", - "values": [ - "4 - General action" - ] - }, - { - "text": "Enhance women's access to sexual and reproductive health services and provide comprehensive education on sexuality, especially to female adolescents", - "values": [ - "4 - General action" - ] - }, - { - "text": "Amend the age of sexual consent from 12 to 16 years", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Ensure the participation of all stakeholders, particularly women, youth and vulnerable groups, in the country's economic development, so as to foster an inclusive long-term economic growth and well-being for all", - "values": [ - "4 - General action" - ] - }, - { - "text": "Give further consideration to the incorporation of the definition of discrimination against women contained in article 1 of the Convention on the Elimination of all Forms of Discrimination against Women in its national legislation ", - "values": [ - "3 - Considering action" - ] - }, - { - "text": "Improve access to justice for victims of intimate partner violence, including by enacting legislation that would recognize and criminalize marital rape, spousal battery and other forms of intimate partner violence", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Regarding the legislative framework, Jamaica affirmed its commitment to bringing the country's legal framework into compliance with the provisions of CEDAW.", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Promptly adopt appropriate legislation prohibiting excision and all forms of FGM and ensures that all those responsible for excision are duly punished.", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Establish a moratorium on the use of the death penalty with a view to its permanent abolition", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Continue efforts to recognize and uphold the collective rights of the indigenous peoples ", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Set a minimum age for marriage under customary law, to be in line with the legal age of marriage determined by statutory law", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Continue ensuring that impartial and effective investigations of attacks against journalists take place and that those responsible are brought to justice ", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Improve knowledge among health-care workers and adolescents about sexual and reproductive health and rights, including through comprehensive sexuality education that involves men and boys", - "values": [ - "4 - General action" - ] - }, - { - "text": "Consider effective measures to prevent any unreasonable restrictions on the freedom of religion or belief as well as any related discriminatory treatment ", - "values": [ - "3 - Considering action" - ] - }, - { - "text": "Decriminalize and eliminate all punitive measures related to termination of pregnancies in cases of rape, incest and severe fetal impairment", - "values": [ - "4 - General action" - ] - }, - { - "text": "Guarantee that all complaints regarding human rights violations and other abuses committed by the police, armed forces or members of private security companies are subject to, in a brief period of time, independent and exhaustive investigations, and that those responsible for such violations are brought to justice and that the victims have access to reparations", - "values": [ - "4 - General action" - ] - }, - { - "text": "Continue and strengthen the ongoing efforts to ensure the well-being of prisoners and detainees in compliance with the Convention against Torture and other international standards. ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Follow-up on this UPR", - "values": [ - "4 - General action" - ] - }, - { - "text": "Urgently strengthen the capacities of the Asylum Service", - "values": [ - "4 - General action" - ] - }, - { - "text": "Continue implementing all possible measures they can in order to improve the education system in the country", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Ensure that government officials take a firm and consistent stance condemning anti-Muslim and anti-migrant hate speech", - "values": [ - "4 - General action" - ] - }, - { - "text": "Extend an open invitation to all of the special procedures of the Human Rights Council ", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Ensure that articles 70 and 71 of the Penal Code are not construed and applied so as to criminalize homosexuality", - "values": [ - "4 - General action" - ] - }, - { - "text": "Continue the current practice of granting clemency and commuting death sentences, and establish a moratorium on the death penalty with a view to its final abolition", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Continue to improve mechanisms for monitoring cases of discrimination on the grounds of origin or ethnicity by governmental and private entities", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Accept as many requests as possible of the Special Procedures of the Human Rights Council to visit Uzbekistan ", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Strengthen cooperation with regional and international human rights mechanisms, and avail itself of international technical assistance and support, as appropriate, by relevant bodies in order to mitigate the insufficiency of human and financial resources ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Revise the Press Code and other relevant legislation so that they would allow the enjoyment of freedom of information in line with international standards ", - "values": [ - "3 - Considering action" - ] - }, - { - "text": "Address more effectively entrenched discriminatory practices against women in the political, economic and social spheres, particularly in terms of the gender pay gap and social security", - "values": [ - "4 - General action" - ] - }, - { - "text": "Continue to strengthen its domestic framework to enhance the protection and well-being of children in cooperation with UNICEF and relevant United Nations agencies ", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Take effective measures to ensure that the National Human Rights Action Plan fully embraces the recommendations already accepted by Turkey within the framework of the UPR", - "values": [ - "4 - General action" - ] - }, - { - "text": "Ensure provision of comprehensive and non-discriminatory health services to women and girls who have experienced sexual violence", - "values": [ - "4 - General action" - ] - }, - { - "text": "Take forward the electoral process", - "values": [ - "4 - General action" - ] - }, - { - "text": "Examine, in the context of the reform regarding the Human Rights Commissioner, the transition from the institution of the ombudsman to the establishment of an independent national human rights institution, in conformity with the Paris Principles", - "values": [ - "3 - Considering action" - ] - }, - { - "text": "Continue to use Human Rights Advisers to the police in the future and share experiences on this measure with other interested States.", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Prevent discriminatory local orders and practice of restricting marriages for Rohingya people and pregnancy for Muslim women aimed at reducing the number of their children", - "values": [ - "4 - General action" - ] - }, - { - "text": "Provide training in human rights and international humanitarian law to TFG and AMISOM security and law enforcement forces ", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Share its best practices in the alleviation of poverty and establishment of the delicate balance between economic, social and cultural rights.", - "values": [ - "1 - Minimal action" - ] - }, - { - "text": "Continue its efforts to further advance its justice system", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Adopt comprehensive legislation to combat racism as a crime ", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Speed up the legislative procedures to adopt the new legislation on de facto unions, ensuring that its provisions fully respect the principle of non-discrimination and equality between women and men ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Reconsider ratification of the International Convention on the Protection of the Rights of All Migrant Workers and Members of Their Families", - "values": [ - "3 - Considering action" - ] - }, - { - "text": "Pursue, even consolidate policies and programmes facilitating access to health-care services for vulnerable persons ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Ensure that pilot initiatives at regional level are fully supported by the federal government with a view to consider developing inter alia an independent, nationally coordinated statutory service, which could act as a referral and decision-making body", - "values": [ - "4 - General action" - ] - }, - { - "text": "Building on the ratification of the Convention on the Rights of Persons with Disabilities, continue its efforts in order to improve their standard of living", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Establish a timeline for an early opening of the OHCHR country office with a full mandate", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Combat hate speech, in particular in the media and on the internet, and punish perpetrators", - "values": [ - "4 - General action" - ] - }, - { - "text": "Ratify the Optional Protocol to the Convention against Torture and promptly implement it", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Continue to implement sustainable policies to alleviate poverty and increase employment opportunities", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Having in mind the growing number of cases of people who have resorted to food banks, elaborate a national plan on food security with a view to the realization of the universal human right to food ", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Adhere to the principles of the Convention on the Rights of Persons with Disabilities, with a view to its early ratification", - "values": [ - "4 - General action" - ] - }, - { - "text": "Ratify the OPCAT", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Re-enforce the promotion and protection of the civil and political rights and economic, social and cultural rights of persons who have returned to their regions of origin and are now minorities in those places", - "values": [ - "4 - General action" - ] - }, - { - "text": "Create an agency for the protection of children with the help of partners such as UNICEF.", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Take further efforts to improve access to water and sanitation, especially in the north and north-east of the country, through the effective implementation of the principle of equality, and to gradually reduce inequalities through the implementation of the National Sanitation Plan", - "values": [ - "4 - General action" - ] - }, - { - "text": "Publicly announce the shelving of the proposed bill on homosexuality and decriminalize homosexual behaviour ", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Further review and strengthen measures in place towards full implementation of the Ohrid Framework Agreement aiming at integration without assimilation, especially on issues of use of the Albanian language and in providing the necessary conditions for education in minority languages", - "values": [ - "4 - General action" - ] - }, - { - "text": "Ensure the enjoyment of all human rights by migrants and strengthen the efforts to regularize them ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Take all necessary measures to improve women's access to reproductive health and related services", - "values": [ - "4 - General action" - ] - }, - { - "text": "Implement the Government's plan to have a comprehensive legislation against discrimination", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Foster an independent judiciary and consult with civil society, the Office for Democratic Institutions and Human Rights of the Organization for Security and Cooperation in Europe and the Venice Commission on any judicial reform", - "values": [ - "4 - General action" - ] - }, - { - "text": "Ensure that children belonging to all minority groups have equal access to education ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Abolish, or profoundly reform, the blasphemy laws and guarantee freedom of religion and belief for all in law and in practice", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Develop a national plan of action aimed at addressing the sale of children, child prostitution and child pornography, and to provide adequate human and financial resources for its implementation", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Finalise the draft law on persons with disabilities with a view to its implementation", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Accelerate the process aimed at creating a national human rights institution in accordance with the Paris Principles ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Finalize and implement the child and family welfare system policy", - "values": [ - "4 - General action" - ] - }, - { - "text": "Continue advancing in the modernization and improvement of the penitentiary system, with special attention to the conditions of persons deprived of their liberty ", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Repeal provisions of the Malawi Criminal Code that criminalize consensual, adult same-sex conduct (sections 153, 154 and 156) and provide adequate protection to lesbian, gay, bisexual and transgender persons", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Withdraw all criminal charges brought against human rights defenders and political opponents under laws such as the Suppression of Terrorism Act of 2008 and other security legislation, and ensure that proposed amendments to these acts bring them in conformity with international human rights standards ", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Uphold the educational concept for minors sentenced to youth custody and maintain separate detention facilities for minors ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Continue its efforts at the international level in preventing genocide and crimes against humanities", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Continue promoting changes in favour of gender equality in all the areas of the socioeconomic life and access to resources", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Increase efforts vis-à-vis country's reporting obligations under international human rights instruments to which Cape Verde is a party ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Acknowledge the existence of human rights violations taking place in the Democratic People's Republic of Korea and act immediately on the recommendations of the COI", - "values": [ - "4 - General action" - ] - }, - { - "text": "Take further steps to eradicate all remaining expressions of racism, racial discrimination, xenophobia and related intolerance.", - "values": [ - "4 - General action" - ] - }, - { - "text": "Take further steps to eliminate abuses of the rights of the child", - "values": [ - "4 - General action" - ] - }, - { - "text": "Compulsory and free education: The Educational (Compulsory Education) Order 1984 stipulates in its section 3 (1) that a child who is of school age, being the period (a) commencing at the beginning of the school year during which he or she reaches the age of (seven) years, and (b) ending at the end of the school year during which he or she reaches the age of fifteen years. 39. Section 3 (1) (a) of the Compulsory Order 1984 had been amended and now reads "commencing at the beginning of the school year during which he or she reaches the age of six years." Education is therefore compulsory for all children aged 6 to 15 years old.", - "values": [ - "4 - General action" - ] - }, - { - "text": "Abolish the death penalty and ratify ICCPR-OP-2", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Declare a moratorium on the death penalty with a view to its final abolition", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Accede to OP-CRC-SC ", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Regarding refugees, the National Assembly passed Law 74/2013 permitting refugees to apply for residence after three years of living on Panamanian soil. The Government has also improved the process for determining refugee status so that it is in accordance with international standards. In addition, the delegation committed itself to the prompt adoption of a decree regulating the mechanism to determine statelessness.", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Continue ongoing efforts in order to fully apply the constitutional protection regarding family and children ", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Continue its efforts in taking steps to eliminate further racial discrimination, in consultation with national human rights institutions and all other relevant stakeholders", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Intensify efforts to promote inter-ethnic harmony and tolerance among the population ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Legally abolish the death sentence and ratify the relevant protocol", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Conclude the accreditation of the national human rights institution, endowing it with a broad mandate, in line with the Paris Principles", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Consider ratifying the Convention on the Elimination of All forms of Discrimination against Women, the International Covenant on Economic, Social and Cultural Rights and also consider acceding to the Optional Protocol to the Convention against Torture and Other Cruel, Inhuman or Degrading Treatment or Punishment", - "values": [ - "3 - Considering action" - ] - }, - { - "text": "Continue giving priority to introducing legislative amendments and implementing actions aiming at respecting human rights of all migrants and speeding asylum procedures ", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Strengthen human rights protections for lesbian, gay, bisexual and transgender persons, in line with Croatia's international obligations and commitments as well as with domestic legislation", - "values": [ - "4 - General action" - ] - }, - { - "text": "Incorporate the provisions of the Convention on the Rights of Persons with Disabilities in its domestic law, and eliminate the remaining provisions that consent discrimination against persons with disabilities", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Consider ratifying the Optional Protocol to the Convention against Torture (OP-CAT)", - "values": [ - "3 - Considering action" - ] - }, - { - "text": "Improve the legislation and the activity of State institutions in combating discrimination, ethnic strife and different forms of extremism ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Solicit assistance from the international community in the framework of technical and financial assistance to strengthen its capacity in the area of human rights and promotion, in order to allow the reform of the security sector and restore the rule of law, a sine qua non condition for a real enjoyment of human rights", - "values": [ - "1 - Minimal action" - ] - }, - { - "text": "Continue efforts directed towards protection of the rights of women and children ", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Reinforce the action of the National Office against Racial Discrimination to ensure that it offers victims of acts of discrimination and intolerance in all its forms the most effective protection possible", - "values": [ - "4 - General action" - ] - }, - { - "text": "Take further measures to tackle hate crimes and racial discrimination, including by promoting an understanding of cultural diversity in society, assisting minority youth to access the labour market and adopting adequate social housing policies", - "values": [ - "4 - General action" - ] - }, - { - "text": "Replace the Law 12-06 of 12 January 2012 by a law on association that will be more in conformity with international standards on this issue ", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Put an end to the use of religious profiling in combating terrorism by inserting legal safeguards against abuse and the deliberate targeting of certain religious groups ", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Take further steps to ensure the economic rights of migrant workers and domestic workers by implementing minimum wages and regulated working hours for all work categories", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Continue its efforts to ensure full equality for all its citizens ", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Consider acceding to or ratifying the Second Optional Protocol to the International Covenant on Civil and Political Rights, aiming at the abolition of the death penalty", - "values": [ - "3 - Considering action" - ] - }, - { - "text": "Take necessary steps to effectively combat gender-based violence, in particular by amending article 152 of the Criminal Code to add provisions on sexual violence in line with international standards", - "values": [ - "3 - Considering action" - ] - }, - { - "text": "Ratify or accede to the main instruments on human rights, in particular the Convention against Torture and Other Cruel, Inhuman or Degrading Treatment or Punishment", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Adopt legal and other types of measures for the full implementation of the principles contained in the Convention on the Elimination of All Forms of Discrimination against Women, and eliminate Micronesia's reservations to the Convention, in accordance with the recommendations made by the Committee on the Elimination of Discrimination against Women", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Establish an independent Truth and Reconciliation Commission and take immediate action to account for the missing and ensure reparations to victims, including family members of the disappeared", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Work further on human rights education for public servants and law enforcement bodies", - "values": [ - "4 - General action" - ] - }, - { - "text": "Guarantee the right to manifest one's religion or belief", - "values": [ - "4 - General action" - ] - }, - { - "text": "Continue to prioritize and implement policies and legislation to address violence against women and the protection of the human rights of children", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Make the education of children a State priority and provide all children with the educational opportunities to rebuild schools and protect them", - "values": [ - "4 - General action" - ] - }, - { - "text": "That the National Action Plan include concrete and time-bound steps to accelerate the process of full domestication of all international human rights treaties to which Nigeria is Party, with particular priority on the Convention on Elimination on All Forms of Discrimination against Women", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Adopt measures to curb ill-treatment meted out by police officers to persons deprived of their civil liberties", - "values": [ - "4 - General action" - ] - }, - { - "text": "Take further steps to create better work opportunities for the members of minority groups", - "values": [ - "4 - General action" - ] - }, - { - "text": "Domesticate the international human rights law", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Guarantee access to prompt and effective investigation by an independent and impartial body for defence lawyers alleging that their access to their clients has been unlawfully obstructed", - "values": [ - "4 - General action" - ] - }, - { - "text": "Adopt legislation prohibiting corporal punishment of children in all settings", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Remove all restrictions, in law and practice, which prevent the full enjoyment of the right to freedom of expression, association and assembly and create an enabling environment for civil society in line with its previous universal periodic review engagements", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Decriminalize adultery and non-marital consensual sex and to ensure punishment for all perpetrators of this violence and calls to it including members and leaders of jirgas", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Continue to take measures to protect and promote the human rights of women, including the introduction of legislation to prohibit female genital mutilation", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Ensure health care for women and improve reproductive health care services", - "values": [ - "4 - General action" - ] - }, - { - "text": "Continue efforts to address hate speech against refugees and migrants", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Continue to engage its development partners like the African Development Bank and the New Partnership for Africa's Development (NEPAD) to ensure it meets its aims in the education sector", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Ratify CAT-OP and establish a national preventive mechanism.", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Strengthen the national mechanisms to combat human trafficking and support victims and their rehabilitation", - "values": [ - "4 - General action" - ] - }, - { - "text": "Continue with efforts to raise the living standards of persons with disabilities", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Strengthen policies promoting children's rights and the implementation of the Guidelines for the Alternative Care of Children, according to Human Rights Council resolution 11-7 and General Assembly resolution 64-142", - "values": [ - "4 - General action" - ] - }, - { - "text": "Identify priority areas and engage in international cooperation programmes to eradicate extreme poverty and ensure food security ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Put in place the recommendation made in 2011 by the Constitutional Review Commission, in concrete regarding the abolition of the death penalty", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Continue in the positive policy of granting Kuwaiti women more rights, in particular the right to participate in political life, which contribute to getting more women in leading positions in society ", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Consider ratifying the OP-CAT", - "values": [ - "3 - Considering action" - ] - }, - { - "text": "Further enhance the measures to combat discrimination against women and children in vulnerable situations ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Work towards fostering the independence of the Judiciary and reducing the number of people in pretrial detention without substantiated charges", - "values": [ - "4 - General action" - ] - }, - { - "text": "Reduce the list of crimes punishable by death penalty, in particular economic crimes and those linked to drugs, and examine the possibility of introducing a moratorium ", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Take necessary measures to ensure gender equality in all spheres, and ensure women's protection against domestic violence", - "values": [ - "4 - General action" - ] - }, - { - "text": "Sign and ratify the additional Protocol to the United Nations Convention against Transnational Organized Crime", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Organise visits of the Working Group on Enforced or Involuntary Disappearances, the Working Group on Arbitrary Detention and the Special Rapporteurs on torture, freedom of peaceful assembly and association, and sale of children, child prostitution and child pornography ", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Abolish the death penalty by adopting, promptly, the draft law on the abolition of the death penalty, and ratify the Second Optional Protocol to the ICCPR ", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Follow-up on the recommendations of CEDAW, by renewing national efforts for gender equality, including through educational and sensitization campaigns", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Continue its positive efforts in fighting poverty, with the assistance of international community, in particular the more developed countries, which should redouble cooperation with this small developing country", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Step up its cooperation with special procedures mandate holders and eventually consider extending a standing invitation to all special procedures mandate holders of the Human Rights Council", - "values": [ - "4 - General action" - ] - }, - { - "text": "Continue to make progress in education and health care, with a particular focus on women and girls, in order to achieve quality education and a quality health-care system ", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Ensure the full enjoyment of rights of non-citizen residents and linguistic minorities and facilitate their integration into society", - "values": [ - "4 - General action" - ] - }, - { - "text": "Withdraw its reservation to the Convention on the Rights of the Child, concerning the provision that detained children be separated from adults while in detention, as well as the reservation concerning refugee and asylum-seeking children", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Sign and ratify the International Convention for the Protection of All persons from Enforced Disappearance.", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Increase women\u2019s participation in public and political life, and reform laws that discriminate against women", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Strengthen its obligations under the Strategy for Roma Integration with a view to effectively combating racism, racial discrimination, xenophobia and other interrelated forms of intolerance ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Reinforce the measures to protect the rights of child, inter alia by expediting the adoption of the revised draft law on the fundamentals of protection of the rights of the child", - "values": [ - "4 - General action" - ] - }, - { - "text": "Adopt and implement laws that prohibit all forms of ill-treatment of children and that protect them from forced labour, sexual exploitation and abuse", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Further address the elimination of violence against children, including sexual violence", - "values": [ - "4 - General action" - ] - }, - { - "text": "Continue implementation of the package of important programmes aimed at the defending citizens' economic and social rights ", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Establish and implement regulations to ensure that the business sector complies with international and national human rights, labour, environment and other standards", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Continue efforts to combat terrorism", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Work to develop a technical assistance plan to strengthen its public policies, and present the plan to the donor community for its support ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Consider the possibility of strengthening the necessary measures for the protection and integration of LGBT persons", - "values": [ - "3 - Considering action" - ] - }, - { - "text": "Take the necessary measures to put an end to discrimination against those who are HIV-positive and those suffering from albinism", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Take operational steps to implement the United Nations Declaration on the Rights of Indigenous Peoples, including the recognition of the right to land and natural resources of all indigenous peoples in Panama", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Take concrete steps to ensure that women of Turkmenistan know their rights as set forth in the Optional Protocol to CEDAW ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Continue to find ways and means to increase investments by the public and private sectors in combating urban poverty", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Strengthen national mechanisms for the protection of the rights of socially vulnerable groups of the population, including women, children and persons with disabilities", - "values": [ - "4 - General action" - ] - }, - { - "text": "Continue to develop measures that guarantee inclusive education for children and girls with disabilities without discrimination, with particular emphasis on rural areas", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Accept more efforts to increase girls\u2019 secondary education, including ensuring that schools are girl-friendly in all parameters", - "values": [ - "4 - General action" - ] - }, - { - "text": "Pursue its efforts in the field of reducing poverty and promoting access to food ", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Adopt measures to end the recruitment and participation of children in military activities", - "values": [ - "4 - General action" - ] - }, - { - "text": "Promote the local integration of refugees, asylum seekers, and humanitarian status holders by extending multi-cultural programmes to them", - "values": [ - "4 - General action" - ] - }, - { - "text": "Guarantee free access to media without any discrimination to all institutions which require specific accreditation", - "values": [ - "4 - General action" - ] - }, - { - "text": "Review its legislation to ensure that it fully complies with the International Covenant on Civil and Political Rights and international standards on refugees and asylum seekers", - "values": [ - "3 - Considering action" - ] - }, - { - "text": "Pursue its ongoing positive efforts to promote and protect the rights of children in the area of access to health and education, as well as to ensure the empowerment of women", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Strengthen measures to eliminate all forms of violence against women, inter alia by criminalizing marital rape", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Apply a comprehensive sexual and reproductive health and rights approach to guarantee access of all sex workers, as well as their clients and clients' spouses and partners, to adequate health services and sexual education ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Continue to improve the working conditions of low-paid migrant labourers, especially those working as domestic help and on infrastructure projects ", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Take the necessary measures to fight marginalization of Romani individuals by addressing intolerance and discrimination, and improve their opportunities for education and employment", - "values": [ - "4 - General action" - ] - }, - { - "text": "Continue to implement its efforts to promote universal education and develop a knowledge-based society for long-term sustainable development", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Continue implementing measures against gender violence and giving care for victims", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Amend the provisions of the Personal Status Law legalizing marriage of girls below the age of 15 and raise the minimum age to 18.", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Establish, with the support of the United Nations, a dual machinery, including a special tribunal and a truth and reconciliation commission, and grant both bodies great independence, not restricting the powers of the future tribunal to the decisions of the commission.", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Establish an independent national human rights institution in compliance with the principles relating to the status of national institutions for the promotion and protection of human rights (Paris Principles) ", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Continue and intensify its efforts to prevent and eliminate all forms of de facto discrimination against immigrants based on ethnicity ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Introduce efficient legislative and policy measures that would promote gender equality and eliminate gender-based discrimination, including conducting appropriate awareness-raising campaigns to combat traditional negative stereotypes and attitudes on the role of women in society, with particular focus on rural areas ", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Approve and implement the Water Bill as a matter of urgency, particularly for rural and suburban communities", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Protect the rights of women and girls from gender-based violence, in particular domestic violence and femicide, and increase support to victims of all forms of gender-based violence", - "values": [ - "4 - General action" - ] - }, - { - "text": "Develop a national policy and further measures concerning disabled persons in order to give disabled children access to social and health services.", - "values": [ - "4 - General action" - ] - }, - { - "text": "Develop community-based and people-centred mental health services and supports that do not lead to institutionalization, over medicalization and to practices that fail to respect the rights, will and preferences of all persons", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Increase the age of criminal responsibility to a minimum of 12 years, in line with recommendations of the Committee on the Rights of the Child", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Strengthen efforts and take measures towards adoption of the law to fight discrimination", - "values": [ - "4 - General action" - ] - }, - { - "text": "Prioritize family member tracing when dealing with asylum-seeking unaccompanied children and ensure all relevant processes are in the child's best interests", - "values": [ - "4 - General action" - ] - }, - { - "text": "Adopt the necessary measures to ensure easy and effective access to free birth registration", - "values": [ - "4 - General action" - ] - }, - { - "text": "Take the necessary steps for the effective implementation of the law on marriage, divorce and family relations, in order to set the minimum age formarriage at 18 and to contribute to combating forced or early marriages", - "values": [ - "4 - General action" - ] - }, - { - "text": "Intensify efforts to present the cases in court in order to clarify, provide for reparations and punish those responsible ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Ratify and fully implement, step by step, all universal core human rights treaties ", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Carry out credible and transparent investigations into the killings of politicians and members of the armed forces in June 2009, and bring to justice the perpetrators of these crimes ", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Make an effort to prepare and submit reports to the treaty bodies without delays", - "values": [ - "4 - General action" - ] - }, - { - "text": "Remove all reservations to the Convention on the Elimination of All Forms of Discrimination against Women", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Adopt a national action plan for children in order to cover all areas included in the Convention on the Rights of the Child ", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Continue and further step up efforts with regard to the promotion of human rights education", - "values": [ - "4 - General action" - ] - }, - { - "text": "Continue accession to international human rights instruments including ratifying the Optional Protocol to the Convention on the Elimination of All Forms of Discrimination against Women", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Ensure that the new Constitution being formulated and its national legislation is in line with international human rights instruments acceded to by Nepal", - "values": [ - "4 - General action" - ] - }, - { - "text": "Consider extending an open invitation to the Human Rights Council special procedures", - "values": [ - "3 - Considering action" - ] - }, - { - "text": "Amend the Penal Code with the provisions to ensure that perpetrators of honour crimes do not benefit from reduction of penalty and that these crimes are treated as other violent crimes in regard to investigation and prosecution", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Strengthen efforts on the implementation of its national poverty strategy", - "values": [ - "4 - General action" - ] - }, - { - "text": "Adopt concrete measures to guarantee that human rights defenders are able to realize their work with no obstacles and that their freedoms of expression, association and assembly are ensured, as recommended previously", - "values": [ - "4 - General action" - ] - }, - { - "text": "Undertake an awareness-raising campaign to address discrimination against homosexuals and transgender persons ", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Consider ratifying the International Covenant on Civil and Political Rights, the International Covenant on Economic, Social and Cultural Rights and the Convention against Torture and Other Cruel, Inhuman or Degrading Treatment or Punishment", - "values": [ - "3 - Considering action" - ] - }, - { - "text": "Take measures to improve prison conditions", - "values": [ - "4 - General action" - ] - }, - { - "text": "Recognize conscientious objection to military service in law and practice and stop prosecuting, imprisoning and repeatedly punishing conscientious objectors", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Maintain constructive and cooperative dialogue with the international community in the field of human rights ", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Review its absolute criminalization of abortion and initiate open discussions in the field of sexual and reproductive health in order to amend the respective legislation, so that abortion is no longer a criminal offence", - "values": [ - "3 - Considering action" - ] - }, - { - "text": "Continue to improve the Cuban political system, upholding the values of the Cuban society and the national unity, and promoting the strengthening of its democracy", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Adopt a new National Action Plan against Trafficking in Persons with a gender perspective which guarantees the protection of victims without any type of discrimination, in particular regarding their migration status", - "values": [ - "4 - General action" - ] - }, - { - "text": "Take steps towards a full abolition of the death penalty and to commute existing death sentences to life imprisonment terms", - "values": [ - "4 - General action" - ] - }, - { - "text": "Take action to facilitate greater participation by citizens and civil society in helping to implement human rights action plans", - "values": [ - "4 - General action" - ] - }, - { - "text": "Amend the National Security Act so that it conforms with the Interim National Constitution, the Comprehensive Peace Agreement and the International Covenant on Civil and Political Rights ", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Speed up the process to formulate a five-year National Action Plan on Human Rights and implement it at an earlier time", - "values": [ - "4 - General action" - ] - }, - { - "text": "Include sexual orientation as a prohibited ground of discrimination in its Constitution Reform process", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "End the illegal occupation of Palestinian territory and of the Golan Syria", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Speed up the process of adopting laws that coincide with treaties that Nigeria has recently ratified", - "values": [ - "4 - General action" - ] - }, - { - "text": "Ratify the 1954 Convention on the Status of Stateless Persons", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Strengthen coordination and enhanced engagement by the national authorities of Panama with the Regional Office of the United Nations High Commissioner for Human Rights for Central America, based in Panama City ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Strengthen policies and measures to prevent and eliminate the manifestations of racism, xenophobia and intolerance in society, in particular during the national and local electoral campaigns ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Strengthen the independence of the judiciary in line with the United Nations Basic Principles on the Independence of the Judiciary", - "values": [ - "4 - General action" - ] - }, - { - "text": "Share its experience regarding its innovative independent national mechanism for the prevention of torture, whose establishment could serve as an example of best practices in the fight against torture", - "values": [ - "1 - Minimal action" - ] - }, - { - "text": "Continue to encourage the training of athletes with disabilities and to further promote their participation in international sporting events ", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Strengthen national frameworks and mechanisms to effectively address and combat violence against women and girls", - "values": [ - "4 - General action" - ] - }, - { - "text": "Pursue relentlessly the implementation of the national priorities, initiatives and commitments, especially the national process of healing and reconciliation as well as the creation of a Human Rights Commission ", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Continue to strengthen the works towards preventing and combatting child pornography and human trafficking, as well as implement assistance programmes for victims", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Continue the policy of national action plans in several areas to implement treaty body recommendations and those from the Universal Periodic Review mechanism ", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Strictly uphold freedom of the press, including public access to information, and ensure that the complaints made in this regard are properly investigated ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Issue a standing invitation to Special Rapporteurs ", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Intensify cooperation with United Nations mechanisms to, inter alia, address the issue of outstanding reports to various treaty bodies, and enhance cooperation with special procedures", - "values": [ - "4 - General action" - ] - }, - { - "text": "Establish mechanisms for monitoring the employment of domestic workers", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Consider the possibility of ratifying the Optional Protocol to the CAT and the Rome Statute", - "values": [ - "3 - Considering action" - ] - }, - { - "text": "Continue its actions in favour of the improvement of conditions of life of indigenous peoples ", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Impose a formal moratorium on capital punishment with a view to abolishing it entirely in line with General Assembly resolutions 62/149 and 63/168 as well as the Second Optional Protocol to ICCPR ", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Withdraw its reservations to the International Covenant on Civil and Political Rights", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Make it a government priority to ensure gender equality in all spheres of life, including by formulating a comprehensive strategy to eliminate attitudes and practices that discriminate against women and girls", - "values": [ - "4 - General action" - ] - }, - { - "text": "Strengthen all existing mechanisms within its institutional infrastructure to prevent and combat trafficking in persons by allocating human, technical and financial resources, and ensure comprehensive care and adequate reparation to victims", - "values": [ - "4 - General action" - ] - }, - { - "text": "Establish an independent police complaint mechanism to ensure the prompt, impartial, independent and efficient investigation of cases of alleged illtreatment or excessive use of force by the police ", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Provide mandatory human rights education and training to police, prison and detention staff and members of the judiciary, including awareness-raising regarding the protection of the rights of minorities, women and children, and to ensure their accountability for any violation of human rights", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Take a step further in the area of migrants' rights protection and consider ratifying the ICRMW and ILO Convention no. 189 ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Sign, ratify and implement those core international human rights instruments to which it is not yet party and abolish the death penalty ", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Adopt legislation concerning indigenous people based on international standards", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Ensure that the perpetrators of human rights violations, both past and present, are brought to justice in proceedings which meet international standards of fairness", - "values": [ - "4 - General action" - ] - }, - { - "text": "Consider extending an open invitation to the special procedures ", - "values": [ - "3 - Considering action" - ] - }, - { - "text": "Issue a standing invitation to all Special Procedures of the Human Rights Council", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Take further steps to address root causes that affect the rights of women belonging to disadvantaged groups", - "values": [ - "4 - General action" - ] - }, - { - "text": "Continue its policy to empower women and respect and protect their rights, including the fight against female genital mutilation", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Continue to implement laws, policies and programmes targeted at combating trafficking in persons, prosecute the identified perpetrators and provide rehabilitation for victims of trafficking in persons", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Close immediately all political prison camps and unconditionally release all political prisoners detained", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Continue working on the implementation of actions which ensure effective access of women victims of gender violence to justice, reparation and social reintegration", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Respect the right to freedom of expression and peaceful demonstration, and restrict to the absolute minimum the use of criminal prosecutions against people who exercise these rights ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Ensure the independence of the national human rights commission, particularly in adjusting its competences and funding in accordance with the Paris Principles.", - "values": [ - "4 - General action" - ] - }, - { - "text": "Reform the juvenile justice system, and safeguard the integrity of minors who are held in detention centres", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Take steps to ensure the operational independence of the Observatory of Places of Deprivation of Liberty by separating it from the executive branch and enabling it to select recruit and remunerate its own staff", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Improve the living conditions and infrastructure of detention facilities in the country ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Take steps for eliminating religious and racial discrimination", - "values": [ - "4 - General action" - ] - }, - { - "text": "Continue to improve its capacity to uphold human rights, including by increasing the Commission on Human Rights' (CHR) fiscal autonomy and organizational capacity, as well as further efforts to prevent human rights violations by Armed Forces of the Philippines and Philippines National Police personnel", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Continue to implement its literacy plan at the national level to achieve the full elimination of illiteracy", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Continue to improve the situation of the Roma people", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Establish an independent body for the promotion and protection of human rights in conformity with the Paris Principles.", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Continue strengthening the mandate of the Human Rights Defender's office and extend its work to regions not yet covered by the institution as well as fully and without delay implementing the recommendations put forward by the Human Rights Defender", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Take all necessary measures to officially withdraw the reservation from paragraph 4 of article 15 of the Convention on the Elimination of All Forms of Discrimination against Women", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Continue its efforts to improve the situation of children in detention as recommended by the Committee against Torture and the Committee on the Rights of the Child. ", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Speed up the process of adoption of the new Criminal Code", - "values": [ - "4 - General action" - ] - }, - { - "text": "Refrain from any steps to extend the application of the death penalty or otherwise alter the legal system in a manner that would violate human rights ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Intensify efforts to combat discrimination and intolerance, especially towards Muslims, migrants and people of African descent and encourage senior State officials and politicians to take clear positions against racist and xenophobic political discourse", - "values": [ - "4 - General action" - ] - }, - { - "text": "Formally abolish the death penalty and accede to the Second Optional Protocol to the International Covenant on Civil and Political Rights", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Immediately release political prisoners, including former President Nasheed, and conduct an effective and thorough review of the investigation and legal proceedings to ensure that international obligations related to fair trials and the rule of law have been fully respected", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Fast-track the process of accession to human rights instruments to which it is not party yet, wherever possible", - "values": [ - "4 - General action" - ] - }, - { - "text": "Move forward in implementing the National Human Rights System, with a view to ensuring greater consistency and comprehensive State actions in the area of human rights", - "values": [ - "4 - General action" - ] - }, - { - "text": "Continue its efforts for the speedy adoption and implementation of the laws on transitional justice and national reconciliation ", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Continue to support efforts aimed at setting up a legal framework for prohibiting trafficking in persons and other forms of exploitation ", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Respect its international obligations pursuant to the United Nations human rights treaties to which it is a party ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Continue to be committed, via its Equal Treatment Authority, to implement and train its citizens as regards to equal treatment for all, and to eradicate violence and discrimination against women and offer greater protection and equal opportunities to the Roma community ", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Expedite their consultation on the bill to grant domestic workers annual leave and provide cooperation with social workers to monitor their working conditions", - "values": [ - "4 - General action" - ] - }, - { - "text": "Follow through on creating an advisory council to address discrimination, to adopt comprehensive anti-discrimination legislation, as recommended by the Committee on Economic, Social and Cultural Rights in 2007.", - "values": [ - "4 - General action" - ] - }, - { - "text": "Take, as soon as possible, the necessary legislative and political measures to end early and forced marriages", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Prosecute perpetrators of crimes motivated by racial discrimination and xenophobia and encourage dialogue among communities in conflict", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Reinforce policies to ensure that all children born in Zimbabwe, regardless of their parents' origins, are issued with birth certificates", - "values": [ - "4 - General action" - ] - }, - { - "text": "Respect the rights of unions, especially by refraining from arrest and arbitrary detention of, physical violence against and harassment of union representatives and from preventing union action", - "values": [ - "4 - General action" - ] - }, - { - "text": "Improve further means and methods for vocational education of persons in prison in order to assist in their later integration into the society", - "values": [ - "4 - General action" - ] - }, - { - "text": "Ensure that the national Human Rights Commission operates in compliance with the Paris Principles, particularly in terms of its financial independence", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Take effective measures to ensure freedom of expression and independence of the media, including the media expressing critical voices, and ensure protection of journalists, bloggers, human rights defenders and independent media and their work against assaults and intimidation", - "values": [ - "4 - General action" - ] - }, - { - "text": "Adopt laws recognizing and regulating the right to conscientious objections and ensure that the civilian alternative to military service has no punitive or discriminatory effects", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Take all necessary legislative and policy measures to provide access to affordable housing with a view to ending long-term involuntary homelessness", - "values": [ - "4 - General action" - ] - }, - { - "text": "Take steps to reduce the incidence of preventative and pre-trial detention ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Ensure that the new legislation of ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Continue its efforts regarding access to health, environmental protection and the right to education, calling for technical and financial assistance to accompany the Government's efforts in these fields", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Continue to prioritize policies and programmes aimed at ensuring sustainable growth of the education sector", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Integrate all groups that constitute Latvian society in national socioeconomic plans ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Consider the possibility of introducing amendments to national laws on citizenship, so that female citizens married to non-citizens can pass on their nationality to their children in the same way that male citizens married to non citizens do.", - "values": [ - "3 - Considering action" - ] - }, - { - "text": "Increase the number of childcare facilities and ensure that the most disadvantaged groups also have access to childcare subsidies under the Working Families Scheme ", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Legislate in order to permit marriage between persons of the same sex", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Recognize the rights of persons belonging to minorities and indigenous peoples as set out in international law, regardless of the names given to such groups in domestic law ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Guarantee the rights of minority groups, particularly those of religious minorities and lesbian, gay, bisexual and transgender persons, through effective legal action against incitement to hatred and violent acts, as well as by revising legislation that can have discriminatory effects", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Take concrete steps to meet its obligations on creating an environment that fosters freedom of expression ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Consider ratifying or acceding to: OP-CAT ", - "values": [ - "3 - Considering action" - ] - }, - { - "text": "Sign and ratify the Optional Protocol to the Convention against Torture and the International Convention for the Protection of All Persons from Enforced Disappearance, and to ratify the Optional Protocol to the Convention on the Elimination of All Forms of Discrimination against Women", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Strengthen further the impartiality and independence of the judiciary by implementing the recent decrees on judicial procedures and by promptly and thoroughly investigating any allegation or complaint of ill- treatment in national detention facilities", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Consider adopting its National Plan of Action for Human Rights", - "values": [ - "3 - Considering action" - ] - }, - { - "text": "Provide sufficient resources for poverty alleviation programmes", - "values": [ - "4 - General action" - ] - }, - { - "text": "Ratify the Indigenous and Tribal Peoples Convention, 1989 (No. 169) of the International Labour Organization", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Consider the possibility of acceding to and/or ratifying International Labour Organization Convention No. 169 (1989) concerning Indigenous and Tribal Peoples in Independent Countries ", - "values": [ - "3 - Considering action" - ] - }, - { - "text": "Continue the measures necessary to ensure that women victims of domestic violence and gender-based violence have access to effective means of prevention and protection and that perpetrators are brought to justice ", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Ensure the access of all migrants, without discrimination and irrespective of their legal status, to health and education", - "values": [ - "4 - General action" - ] - }, - { - "text": "Release all the Palestinian and Arab prisoners and detainees in the Israeli prisons, including women and children, and put an end to all forms of torture exercised against them", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Ensure that its treatment of all affected persons is in line with its international human rights obligations and that it seek the technical advice of the United Nations High Commissioner for Refugees to identify, prevent and reduce statelessness ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Strengthen national policies aimed at protecting children and youth against violence, abuses and sexual exploitation ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Make efforts towards the ratification of ICCPR-OP 2 ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Ratify CEDAW and CAT", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Consider ratifying the Convention on the Rights of the Child and the International Convention on the Protection of the Rights of All Migrant Workers and Members of their Families", - "values": [ - "3 - Considering action" - ] - }, - { - "text": "Intensify efforts to make its justice system more efficient ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Continue paying particular attention to the conditions of vulnerable groups, such as persons with disabilities and indigenous peoples, in particular Afro-descendants ", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Continue with the open policy towards the special procedures of the Human Rights Council.", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Strengthen its child protection system by explicitly prohibiting all forms of corporal punishment of children in all settings", - "values": [ - "4 - General action" - ] - }, - { - "text": "Adopt and ratify the Nordic Sami Convention by year 2016 ", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Take all the necessary measures to guarantee for the Palestinians who live in the occupied Palestinian territories access to adequate quantities of drinking water and to appropriate sewage systems, including by facilitating the entry of the materials required to reconstruct the water supply system and sewage system in these territories", - "values": [ - "4 - General action" - ] - }, - { - "text": "Strengthen its National Commissions, namely the National Women Commission, in order to implement the adopted policies", - "values": [ - "4 - General action" - ] - }, - { - "text": "Engage constructively with human rights defenders in seeking solutions to address human rights problems", - "values": [ - "4 - General action" - ] - }, - { - "text": "Continue to promote the comprehensive strategy to prevent and eliminate all forms of violence against women and girls", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Continue the steps in its policy to combat discrimination, especially in view of the increased number of racist acts", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Adopt additional measures to prevent all forms of cruel, inhuman or degrading treatment of persons in detention", - "values": [ - "4 - General action" - ] - }, - { - "text": "Ratify the six core international human rights instruments, including the Convention against Torture, the International Convention for the Protection of All Persons from Enforced Disappearance, the International Convention on the Protection of the Rights of All Migrant Workers and Members of Their Families and the International Covenant on Economic, Social and Cultural Rights", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Cease arbitrary arrest and detention of people based on their religious beliefs, and review the legal framework governing religious groups and organizations ", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Amend the Mass Media Proclamation so that the space for free media is widened, and refrain from invoking the Anti-Terrorism Proclamation to stifle independent journalists ", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Investigate all alternatives to forced evictions of Roma and Sinti people, including through thorough consultation with those directly affected", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Support legislative policies to protect vulnerable groups with the necessary financial resources to ensure their implementation", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Revise or repeal legislation on associations and elaborate a new organic law on associations in conformity with international human rights norms", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Continue to further promote women's participation in all aspects of public life and especially in political life", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Implement foreseen measures to reduce the prevalence of HIV/AIDS by at least 15 per cent", - "values": [ - "4 - General action" - ] - }, - { - "text": "Follow up its ratification of the Convention on the Elimination of All Forms of Discrimination against Women (CEDAW) and the Convention on the Rights of the Child with implementation.", - "values": [ - "4 - General action" - ] - }, - { - "text": "Undertake fundamental reforms to resolve the dispute in South Sudan", - "values": [ - "4 - General action" - ] - }, - { - "text": "Ensure full respect for international humanitarian law (IHL) and also integrate IHL into the training programme of its armed and security forces, at all levels ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Implement measures to punish traffickers and prevent child prostitution and forced marriage", - "values": [ - "4 - General action" - ] - }, - { - "text": "Take further measures for the effective investigation, prosecution and punishment of hate crimes against lesbian, gay, bisexual, transgender and intersex persons and women, including femicides, as well as crimes against human rights defenders, journalists, justice workers and campesino community members in Bajo Agua", - "values": [ - "4 - General action" - ] - }, - { - "text": "Consider the possibility to ratify the Optional Protocol to national Covenant on Civil and Political Rights ", - "values": [ - "3 - Considering action" - ] - }, - { - "text": "Uphold Brunei's long-lasting moratorium on the death penalty ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Reinforce measures designed to prevent all forms of torture and inhuman or degrading treatment, including appropriate human rights training of the law enforcement personnel, while ensuring full accountability of perpetrators as well as redress and rehabilitation to victims", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Expedite the adoption and implementation of laws to counter all forms of violence against women and girls, including marital rape and female genital mutilation", - "values": [ - "4 - General action" - ] - }, - { - "text": "Fully implement the national strategy to fight against child labour and to promote descent work.", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Ratify the CED without delay and criminalize enforced disappearances and extrajudicial killings in its national legislation ", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "will actively examine the possibility of establishing a National Human Rights Institution in keeping with the Paris Principles in connection with the National Action Plan on Human Rights that is being prepared", - "values": [ - "3 - Considering action" - ] - }, - { - "text": "Respect the right to life and stop killing its own people", - "values": [ - "4 - General action" - ] - }, - { - "text": "Include in the Charter of Rights Bill, currently before Parliament, a specific prohibition of discrimination on the grounds of sexual orientation and repeal all legal provisions criminalizing consensual relations between adults of the same sex, and combat this type of discrimination through awareness-raising campaigns and education programmes in school ", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Continue efforts to give special regard to women and children and ensure their enjoyment of human rights and fundamental freedoms. ", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Complete the ratification process of OP-ICESCR ", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Continue with the policies to strengthen and protect the human rights of people working in the mining sector", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Stop the practice of releasing migrants, refugees and asylum-seekers minors at the borders.", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Intensify the efforts already undertaken to better ensure the right to adequate housing, especially for vulnerable groups and low income families", - "values": [ - "4 - General action" - ] - }, - { - "text": "Take the necessary steps to establish a national human rights institution in line with the Paris Principles, with competence to consider and act on complaints of human rights violations by public authorities, and with adequate financial and human resources", - "values": [ - "4 - General action" - ] - }, - { - "text": "Consider ratifying CAT and OP-CAT, which are already signed", - "values": [ - "3 - Considering action" - ] - }, - { - "text": "Establish a national human rights institution in order to further strengthen its human rights policies", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Share additional information on the nature and composition of the Human Rights Centre and its functions in relation to the NHRC", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Continue to work towards achieving gender equality and the attainment of the MDGs for all Algerians to improve the quality of living of its people", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Adopt a comprehensive policy for the protection of children that provides, in particular, strengthening the combat against child labour and trafficking", - "values": [ - "4 - General action" - ] - }, - { - "text": "Establish promptly, as provided in the Constitution, a constitutional court with competency, inter alia, to review the compatibility of the national law with the international human rights instruments", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Continue efforts towards the capacity-building of the national human rights institution", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Include those affected by the phosphate extraction industry in the negotiations on their settlement and the acquisition of alternative farm lands for them", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Continue its accession process to the core human rights treaties", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Cease the harassment and intimidation of media institutions", - "values": [ - "4 - General action" - ] - }, - { - "text": "Take concrete measures to ensure that the anti-human trafficking act is effectively implemented and that albinos are provided equal protection by the law", - "values": [ - "4 - General action" - ] - }, - { - "text": "Bring its legislation in compliance with the Convention on the Rights of the Child ", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Consider establishing a moratorium on the death penalty", - "values": [ - "3 - Considering action" - ] - }, - { - "text": "Consider the possibility of establishing a national human rights institution ", - "values": [ - "3 - Considering action" - ] - }, - { - "text": "Ensure that all counter-narcotics operations are conducted in conformity with constitutional protections and international human rights obligations", - "values": [ - "4 - General action" - ] - }, - { - "text": "Sign ICCPR and ICESCR ", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Strengthen human rights training of public sector employees ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Develop its legislation with a view to effectively protecting the rights of LGBT persons, and discourage the development of discriminatory ideologies in the country through information and human rights education ", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Do not reintroduce the death penalty, consistent with the Philippines\u2019 obligations as a State party to the Second Optional Protocol to the International Covenant on Civil and Political Rights", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Continue efforts to promote and protect the rights of persons with disabilities, consistent with its obligations under the Convention on the Rights of Persons with Disabilities", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Strengthen its child protection systems at local level, investigate and prosecute cases of child labour and child abuse", - "values": [ - "4 - General action" - ] - }, - { - "text": "Proceed shortly to the progressive and unconditional release of persons detained for political and conscience reasons, starting with those in a precarious state of health", - "values": [ - "4 - General action" - ] - }, - { - "text": "Follow up the implementation of the programme drawn up by the Government with the assistance of UNDP to strengthen judicial departments, human rights and gender equity", - "values": [ - "4 - General action" - ] - }, - { - "text": "Ensure that all policies concerning Roma are consistent with the provisions of the International Convention on the Elimination of All Forms of Racial Discrimination ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Ratify the Optional Protocol to International Covenant on Economic, Social and Cultural Rights", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Take all necessary measures to guarantee that the mandatory limits for pre-trial detention are respected in practice, and seek international assistance to address the issue of corporal punishment as well as the one of street children ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Abolish definitively the death penalty and ratify the Second Optional Protocol to the International Covenant on Civil and Political Rights ", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Continue to cooperate with the Special Rapporteur on the situation of human rights in the Islamic Republic of Iran with the aim of having greater cooperation and consultation with the Government", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Take appropriate measures to further improve the conditions of detainees in prisons, as recommended by the Committee against Torture in 2006 and 2007.", - "values": [ - "4 - General action" - ] - }, - { - "text": "Accede to and fully implement the 1961 Convention on the Reduction of Statelessness and ensure that all otherwise stateless persons in the country have access to a procedure that will facilitate the acquisition of a nationality", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Continue to take further measures to enhance health-care services, especially for women and children", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Make enhanced efforts to combat discrimination against the Roma population to improve their access to education, housing, health and employment", - "values": [ - "4 - General action" - ] - }, - { - "text": "Strengthen efforts to investigate all allegations of torture, summary executions, enforced disappearance and other abuses, and to bring those responsible to justice", - "values": [ - "4 - General action" - ] - }, - { - "text": "Proactively sustain the constitutional federal process in order to reinforce the long-term protection and respect for human rights and to establish the basis for future democratic elections ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Make teaching on genocide and crimes against humanity a part of curriculum in public schools", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Ensure human rights and international humanitarian law education for all security forces and prison and judicial personnel and adopt further measures to ensure their full accountability for any violations of these", - "values": [ - "4 - General action" - ] - }, - { - "text": "Continue its efforts in these fields to improve access to education and health and to promote the rights of women and children ", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Continue to promote sustainable economic and social development and improve the living standards of the people", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "All rights be restored retroactively to those affected by the Constitutional Court judgment and that they be given prompt and non-discriminatory means to acquire their Dominican Republic citizenship ", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Curb prevalence of corporal punishment on children, in keeping with Mexico's international advocacy against such offences", - "values": [ - "4 - General action" - ] - }, - { - "text": "Strengthen the institutional and operational capacity for the administration of justice and request the International community to provide Mozambique with technical assistance", - "values": [ - "4 - General action" - ] - }, - { - "text": "Ratify the Second Optional Protocol to the ICCPR aiming at the abolition of the death penalty", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Continue its efforts for the full realization of the rights of Syrian children in the occupied Syrian Golan", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Continue strengthening the promotion and protection of the rights of the child ", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Comply with its existing international and regional human rights obligations", - "values": [ - "4 - General action" - ] - }, - { - "text": "Strengthen its judicial framework by acceding to the International Covenant on Economic, Social and Cultural Rights, to the two Optional Protocols to the International Covenant on the Political and Civilian Rights, to the Convention on Torture and Other Cruel, Inhuman or Degrading Treatments or Punishments and to the International Convention for the Protection of All Persons from Enforced Disappearances ", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Continue with appropriate measures to eradicate discrimination and violence against women.", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Take all necessary measures to ensure freedom of expression and the right to participate in political and public affairs by journalists, based on the provisions of the ICCPR ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Ratify the CAT", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Reconsider policies on family, gender equality and non-discrimination", - "values": [ - "3 - Considering action" - ] - }, - { - "text": "Ratify and implement the Rome Statute", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Intensify its efforts to promote ethnic tolerance and adopt a strategy for the integration of persons of a different ethnic origin", - "values": [ - "4 - General action" - ] - }, - { - "text": "Continue its efforts to promote religious freedom, and continue to broaden the space for interfaith dialogue ", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Issue an invitation to the Special Rapporteur on freedom of religion or belief ", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Continue the efforts undertaken to protect children from violence, neglect and abuse, including by adopting the children's code, and to ensure that the national strategy for the protection of children 2011-2030 will be effectively implemented", - "values": [ - "4 - General action" - ] - }, - { - "text": "Consider ratifying outstanding major human rights instruments such as the CAT, the International Convention for the Protection of all Persons against Enforced Disappearances, the International Convention on the rights of Persons with Disabilities and the Optional Protocols to CEDAW, ICCPR, ICESCR and CRC ", - "values": [ - "3 - Considering action" - ] - }, - { - "text": "Repeal the right "to administer reasonable punishment" in the Juveniles Act 1974 and prohibit all corporal punishment of children, including in the home", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Ensure that the police provide a safe and confidential environment for women and girls to report incidents of violence, including sexual violence and incidents of trafficking, and that all complaints are recorded and effectively investigated", - "values": [ - "4 - General action" - ] - }, - { - "text": "Continue its efforts to combat all forms of discrimination and consider specific measures in order to promote tolerance and non-discrimination on the grounds of sexual orientation.", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Increase its efforts to eradicate impunity for torture and other ill treatment, and to initiate thorough, impartial and independent investigations into all such allegations, and that alleged perpetrators are brought to justice.", - "values": [ - "4 - General action" - ] - }, - { - "text": "Set up an effective statutory consultation mechanism with organizations working on the rights of indigenous peoples to help avoid further conflicts ", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Evaluate the possibility of ratifying the second optional protocol to the International Covenant on Civil and Political Rights to abolish the death penalty.", - "values": [ - "3 - Considering action" - ] - }, - { - "text": "Give effective implementation to the Fiji National Gender Policy and the Women's Plan of Action for 2010-2019, and renew efforts in fighting all cases of discrimination and violence against women", - "values": [ - "4 - General action" - ] - }, - { - "text": "Ratify ILO Convention No. 189 on decent work for domestic workers", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Repeal the provisions under its criminal legislation that punish sexual relations between consenting adults of the same sex ", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Establish a comprehensive legal framework in such a manner that the provisions of the CRC and its Optional Protocols will be fully incorporated ", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Give full priority to ensuring the full and effective implementation of the Disability Act", - "values": [ - "4 - General action" - ] - }, - { - "text": "Consider adopting a unified and modern personal status law that is compatible with all legal and procedural requirements", - "values": [ - "3 - Considering action" - ] - }, - { - "text": "Consider inviting international observers to the upcoming electoral processes, which will be held in the next months, to ensure that the new authorities are elected democratically and by legal means", - "values": [ - "3 - Considering action" - ] - }, - { - "text": "Pursue its path of the reform of the judiciary system and make a priority of the fight against impunity, in particular in relation with the process of certification of the Haitian policemen ", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Consider legislative changes to repeal corporal punishment and bring legislation into line with international human rights obligations", - "values": [ - "3 - Considering action" - ] - }, - { - "text": "Guarantee the rights of detainees with disabilities by providing them with separate detention facilities", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Delete the crime of witchcraft from the penal code", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Address the high level of female genital mutilation and early marriage through more concerted efforts, involving local levels", - "values": [ - "4 - General action" - ] - }, - { - "text": "Redouble the Government's commitment to raising awareness amongst officials and the public at large about human rights and the process of the universal periodic review", - "values": [ - "4 - General action" - ] - }, - { - "text": "Ensure the effective implementation of the legislation criminalizing slavery and guarantee effective remedies to victims of slavery", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Take measures to counteract the trend of judicial authorizations of marriages involving minors, including through necessary amendments to the Family Code", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Review its legislation in order to enact a law that criminalizes child pornography and child prostitution, in accordance with the Optional Protocol to the Convention on the Rights of the Child on the sale of children, child prostitution and child pornography", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Tackle impunity by investigating and timely prosecuting those responsible for acts of violence and human rights violations, in particular those committed by law enforcement and other authorities, and pay special attention to women and children to avoid that they are subjected to sexual abuse in detention", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Take further efforts to ensure that the status of freedom of expression is brought into line with international obligations", - "values": [ - "4 - General action" - ] - }, - { - "text": "Implement measures to protect the LGBT population from harassment, discrimination and violence ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Put in place protection measures that would allow the reintegration of teenagers to the education system after having given birth", - "values": [ - "4 - General action" - ] - }, - { - "text": "Introduce a crime of torture in the national penal legislation", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Seek and avail itself of international technical assistance opportunities in training, data collection and analysis, to support national reporting under the international human rights instruments", - "values": [ - "1 - Minimal action" - ] - }, - { - "text": "Implement measures to protect intersex persons from discrimination", - "values": [ - "4 - General action" - ] - }, - { - "text": "Intensify efforts to combat violence against women, including the elimination of female genital mutilation, by increasing resources for public awareness and educational campaigns, and by encouraging faster legislative action against gender-based violence", - "values": [ - "4 - General action" - ] - }, - { - "text": "Finalize the ongoing judicial reforms, in particular on the Criminal Code", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Take measures to improve enforcement of existing laws prohibiting discrimination, including against the Roma", - "values": [ - "4 - General action" - ] - }, - { - "text": "Abide, as an occupying power, by all its obligations under international law in the Palestinian territories ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Develop and implement a National Action Plan on Human Rights to further ensure systematic and comprehensive approach for the promotion and protection of human rights, with the full engagement of the civil society", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Take concrete measures to reduce the current and future prison population, as well as to improve prisoner safety", - "values": [ - "4 - General action" - ] - }, - { - "text": "Adopt measures leading to the creation of a national human rights institution in accordance with the Paris Principles ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Take measures to guarantee effective access for women and girls to information and services regarding sexual and reproductive health", - "values": [ - "4 - General action" - ] - }, - { - "text": "Ensure that birth registration is stepped up through an ongoing campaign and the efficient use of resources and that the right to sustainable nutrition, public health and basic education is secured for all children ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Incorporate into the education system a human rights-based strategy which is inclusive of children with disabilities", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Continue with the work of the Ombudsman in monitoring the rights and guarantees established in the Constitution and international human rights treaties ", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Develop and implement a national action plan for human rights in order to framework a systematic approach to the promotion and protection of human rights", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Continue to implement programmes and measures to improve the enjoyment of the rights to education and health ", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Review domestic legislation that criminalizes peaceful political dissent and review arrest warrants issued on the basis of such legislation ", - "values": [ - "3 - Considering action" - ] - }, - { - "text": "Continue to support developing countries in fighting poverty through its development assistance ", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Abolish the death penalty and accede to the Second Optional Protocol to the International Covenant on Civil and Political Rights (ICCPR-OP 2)", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Consider ratifying ILO Convention No. 117 on Social Policy ", - "values": [ - "3 - Considering action" - ] - }, - { - "text": "Ensure the full enjoyment of the political, civil, economic and social rights of "erased" people, including health, social security, education and employment, by regulating the status of the remaining "erased" persons and providing adequate reparation to those affected", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Consider lifting its reservations to CEDAW", - "values": [ - "3 - Considering action" - ] - }, - { - "text": "Ensure that the implementation of objectives set up in the 2014 National Strategy on Public Education are in line with the objectives and goals of the Sustainable Development Goals ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Recommended the swift adoption of the bill on freedom of information", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Further its endeavours with regard to the smooth and productive activity of the Women and Child Protection Division within the country ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Formulate programmes for the effective implementation of the National Plan on the Rights of Persons with Disabilities ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Establish as soon as possible an independent national human rights institution with a broad human rights protection mandate and adequate human and financial resources, in conformity with the Paris Principles", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Protect the rights of indigenous persons and persons of African descent with particular emphasis on combating discrimination against indigenous women and Afro-Peruvian women in the areas of education, employment and health", - "values": [ - "4 - General action" - ] - }, - { - "text": "Continue strengthening the independence and efficiency of the Elections Advisory Board by setting up a comprehensive electoral commission to make sure that the upcoming elections are free and fair ", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Strengthen its efforts to enhance the enforcement of the minimum age of recruitment into the military and to draft a new National Plan of Action for children based on the MDGs ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Ratify OP-CRC-SC ", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Issue a standing invitation to all Council special procedures ", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Establish and implement a comprehensive action plan to further improve and promote women's rights ", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Take effective measures to implement the provisions in the National Human Rights Action Plan concerning the protection of vulnerable groups, especially concerning the fight against sexual violence against women and girls", - "values": [ - "4 - General action" - ] - }, - { - "text": "Undertake further measures to realize its policies in relation to gender equality", - "values": [ - "4 - General action" - ] - }, - { - "text": "Come up with sustainable and comprehensive measures to ensure lasting peace among tribal groups ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Take prompt, appropriate, efficient measures towards the improvement of the living conditions in prisons and detention centres, including the inmates' access to food, medical care and social services ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Develop and implement a mechanism or solid legal measure to eliminate violations committed by the security forces and police", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Intensify efforts to ensure gender equality and eliminate sexual and gender-based violence, including through considering development of a National Action Plan and implementation of Security Council Resolution 1325", - "values": [ - "4 - General action" - ] - }, - { - "text": "Take further steps to improve the current conditions of its prisons", - "values": [ - "4 - General action" - ] - }, - { - "text": "Extend an open invitation to all special procedures of the Human Rights Council, and within the framework of this cooperation, allow the Special Rapporteur on the situation of human rights in the Democratic People's Republic of Korea to visit the country", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Provide for urgent instructions to all schools to respect freedom of religion or belief and to take specific measures to reprimand any teacher or school administrator who intimidates or discriminates against Baha'i children", - "values": [ - "4 - General action" - ] - }, - { - "text": "Include the effective prosecution and punishment of traffickers in legislation ", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Eliminate corporal punishment provisions from existing laws and to prohibit the use of corporal punishment in places of detention and in schools ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Adopt the measures necessary to abolish the caste system, given that, in many cases, it is conducive to the enduring existence of various forms of slavery ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Consider enacting legislation which prohibits the use of corporal punishment on children within the family and at school and promotes alternative forms of discipline", - "values": [ - "3 - Considering action" - ] - }, - { - "text": "Define unambiguously the circumstances under which therapeutic abortion is allowed ", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Guarantee the freedom of all individuals to practice their religion or belief", - "values": [ - "4 - General action" - ] - }, - { - "text": "Further intensify the combating of human trafficking and the protection of victims of trafficking in persons by removing the existing obstacles", - "values": [ - "4 - General action" - ] - }, - { - "text": "Adopt a zero-tolerance policy towards corruption", - "values": [ - "4 - General action" - ] - }, - { - "text": "Take all necessary measures, including awareness-raising and education, as well as legislative measures, to eliminate discrimination against Afro-Panamanian people", - "values": [ - "4 - General action" - ] - }, - { - "text": "Reform its administrative justice system, including by eliminating "re-education through labour", and ratify the ICCPR", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Take further steps to expedite the ratification of CRPD and its Optional Protocol (OP-CRPD)", - "values": [ - "4 - General action" - ] - }, - { - "text": "Uphold commitments to prevent impunity for human rights violations", - "values": [ - "4 - General action" - ] - }, - { - "text": "Take the necessary steps to ensure the adoption of new legislation to counteract human trafficking", - "values": [ - "4 - General action" - ] - }, - { - "text": "Consider ratifying the Convention on the Rights of persons with disabilities, to which Kazakhstan is already a signatory, although the ongoing work being done in the country to protect the rights of persons with disabilities are noted", - "values": [ - "3 - Considering action" - ] - }, - { - "text": "Ensure that girls and women have equal access to education at all levels, and ensure the retention of girls in school ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Increase cooperation with relevant United Nations treaty bodies, in particular by submitting its periodic report to the Human Rights Committee overdue since 2010", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Provide comprehensive child protection, particularly for unaccompanied minors, by addressing the problems that give rise to their migration, and often to their exploitation, and also affording them the means by which they may be repatriated", - "values": [ - "4 - General action" - ] - }, - { - "text": "Continue its efforts aiming at providing adequate housing to all its citizens", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Review the budgets and social laws taking into account gender issues ", - "values": [ - "3 - Considering action" - ] - }, - { - "text": "Ensure equal access to education for women and girls", - "values": [ - "4 - General action" - ] - }, - { - "text": "Take necessary measures to ensure that legal provisions do not create disproportionate restrictions to exercise freedom of assembly and expression ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Accede to and domesticate the Rome Statute and adopt provisions to cooperate fully and promptly with the International Criminal Court", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Implement effective oversight mechanisms within the judiciary to tackle corruption and to improve the quality and speed of the judicial process", - "values": [ - "4 - General action" - ] - }, - { - "text": "Establish, in conformity with the Paris Principles, an independent ombudsperson with a robust mandate to promote and protect human rights", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Respect fully press freedom and freedom of expression in accordance with international law", - "values": [ - "4 - General action" - ] - }, - { - "text": "Move towards the establishment of a national human rights institution in accordance with the Paris Principles", - "values": [ - "4 - General action" - ] - }, - { - "text": "Continue its efforts in cooperating with OHCHR since becoming a member in the Human Rights Council ", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Continue taking steps so as to reinforce women's representation in leadership and decision-making positions ", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Sign and ratify core international human rights instruments, including the International Covenant on Civil and Political Rights (ICCPR) and the International Covenant on Economic, Social and Cultural Rights (ICESCR)", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Invite the Special Rapporteur on torture and other mandate holders to conduct independent and impartial investigations ", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Take more proactive measures to identify and look after victims of human sex trafficking, especially by ratifying the Palermo Protocol", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Increase significantly, in conformity with international standards, the minimum age of criminal responsibility of children, which is currently 10 years ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Strengthen the capacity of the Independent National Commission on Human Rights, providing it with the necessary means to allow it to coordinate human rights monitoring, investigation and field activities", - "values": [ - "4 - General action" - ] - }, - { - "text": "Make every effort to comply with the recommendations of UNHCR and the ILO Committee of Experts on migration, refugees and asylum, especially to prevent the criminalization of those who enter or leave the country without authorization ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Intensify efforts to ratify the International Convention for the Protection of All Persons from Enforced Disappearance", - "values": [ - "4 - General action" - ] - }, - { - "text": "Sustain initiatives taken to enhance universal health care including reducing maternal and child mortality", - "values": [ - "4 - General action" - ] - }, - { - "text": "Consider taking all necessary steps to establish a de jure moratorium on executions with a view to fully abolishing the death penalty", - "values": [ - "3 - Considering action" - ] - }, - { - "text": "Further pursue its efforts to ensure the increased participation of all citizens in public life ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Ratify the Convention against Torture and Other Cruel, Inhuman or Degrading Treatment or Punishment, as previously recommended ", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Promote legislation in the area of gender equality", - "values": [ - "4 - General action" - ] - }, - { - "text": "Ensure the safe return of demobilized child soldiers to their families and ensure their access to education", - "values": [ - "4 - General action" - ] - }, - { - "text": "Consider implementing, as appropriate, the recommendations of human rights treaty bodies and special procedures on the Roma.", - "values": [ - "3 - Considering action" - ] - }, - { - "text": "Continue strengthening the access mechanisms to social services for the Aboriginal and Torres Strait Islander children", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Prioritize efforts to comply with the commitment to guarantee free primary education, presently receives one of the lowest levels of State investment in the region", - "values": [ - "4 - General action" - ] - }, - { - "text": "Implement the recommendations accepted by Slovenia during its first UPR on the subject of discrimination against Roma", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Reduce maternal, child and infant morbidity and mortality by promoting effective assistance measures during pregnancy and at the moment of birth ", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Take measures to ensure the protection of human rights defenders and journalists against harassment, physical attacks and death threats, including by investigating such incidents fully and bringing those responsible to justice", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "To update census data of communities and indigenous peoples. To ensure the participation of the own communities in this process", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Consider ratifying the fundamental International Labour Organization conventions", - "values": [ - "3 - Considering action" - ] - }, - { - "text": "Continue training programmes in order to educate youth on issues regarding equal treatment of men and women in order to secure the health and safety of women ", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Adopt legislation in the area of trafficking of persons and sexual exploitation and increase financial and human resources to strengthen existing preventive mechanisms and support services for victims", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Prioritize the need to become party to the Convention on the Prevention and Punishment of the Crime of Genocide, taking into account the fact that the Commonwealth of Dominica is party to the Rome Statute of the International Criminal Court", - "values": [ - "4 - General action" - ] - }, - { - "text": "Continue its efforts to end violence against women, including through enacting preventive legislation, as well as through providing rehabilitative services to victims", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Review its national legislation in order to ensure its compliance with freedom of expression, assembly and association, as guaranteed in articles 19, 21 and 22 of the International Covenant on\nCivil and Political Rights for example, article 193-1 of the Criminal Code - acting on behalf of a non-registered organization \n", - "values": [ - "3 - Considering action" - ] - }, - { - "text": "Take measures necessary to put an end to prison conditions that are characterized by severe overcrowding and that lead to widespread violence among prisoners", - "values": [ - "4 - General action" - ] - }, - { - "text": "Implement the accepted recommendations of the universal periodic review in cooperation with the National Council on Human Rights, NGOs, and the civil society", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Ensure that transnational corporations headquartered in the Netherlands do not violate human rights in their operations abroad", - "values": [ - "4 - General action" - ] - }, - { - "text": "Extend a standing invitation to all special procedures of the Human Rights Council as a way of informing and supporting human rights reforms", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Ratify or accede to, where appropriate, the Optional Protocol to the Convention on the Elimination of All Forms of Discrimination Against Women ", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Amend the 1992 law on freedom of communication of (Organization Act No. 2-AN-92) and update it on the basis of article 19 of the International Covenant on Civil and Political Rights (ICCPR)", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Ensure, in both legislation and its implementation, freedom of expression and freedom of the press as guaranteed in its Constitution", - "values": [ - "4 - General action" - ] - }, - { - "text": "Intensify its efforts to establish a national human rights institution fully in accordance with the Paris Principles", - "values": [ - "4 - General action" - ] - }, - { - "text": "Draft and adopt a comprehensive national plan of action to address the worst forms of child labour ", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Strengthen anti-discrimination legislation to prohibit discrimination on the basis of sexual orientation and gender identity, and take effective measures to combat violence and discrimination against LGBTI people", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Take concrete actions to deal with the discriminatory practices on the grounds of religion in access to employment and social integration", - "values": [ - "4 - General action" - ] - }, - { - "text": "Continue efforts to develop access to water and sanitation and to combat disparities between urban and rural areas", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Strengthen the independence of the judiciary by separating it from the executive powers, adopt a Criminal Procedure Code in compliance with international standards and address prison overcrowding and the overuse of pretrial detention", - "values": [ - "4 - General action" - ] - }, - { - "text": "Amend the Law on Equality in order to widen the list of possible discrimination criteria", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Further improve the coverage of reproductive, maternal, newborn, child and adolescent health services in the country", - "values": [ - "4 - General action" - ] - }, - { - "text": "Continue its efforts to promote public knowledge about HIV-AIDS, particularly among young people", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Continue adopting programmes and policies to strengthen national unity and cohesion", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Speed up efforts to ratify the Optional Protocol to the Convention against Torture and Other Cruel, Inhuman or Degrading Treatment or Punishment", - "values": [ - "4 - General action" - ] - }, - { - "text": "Noting the responsibility to protect human rights defenders, develop a specific regulatory framework to ensure the security of journalists and civil society, and also of members of the political opposition. ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Invite the Special Rapporteur on the rights to freedom of peaceful assembly and of association to visit the country ", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Review the current maternity health-care policies and introduce necessary changes to ensure pregnant women's access to medical facilities throughout the country ", - "values": [ - "3 - Considering action" - ] - }, - { - "text": "Develop a national action plan for FARDC in accordance with United Nations Security Council resolution 1612 2005, working closely with the United Nations task force on monitoring and reporting, and prioritize the reintegration of children associated with armed groups, with a focus on family tracing and reunification, the provision of psychosocial support as well as education and vocational training", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Conduct awareness raising and sensitization programmes to empower women, advance women's rights and ensure gender equality", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Consider its commitment in line with paragraph 101 of the Durban Declaration when addressing questions with respect to legislation and studies on colonialism and the slave trade, in particular with respect to overseas territories.", - "values": [ - "3 - Considering action" - ] - }, - { - "text": "Continue working so that women's rights are fully respected", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Bring its national Office of the Ombudsman into line with the Paris Principles", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Review and repeal local by-laws that may limit rights guaranteed by the Constitution, especially as they relate to the rights of women, sexual minorities and religious minorities", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Review its Penal Code to align it with the Constitution", - "values": [ - "3 - Considering action" - ] - }, - { - "text": "Strengthen legal and policy frameworks and programmes for the promotion and the protection of the rights of people of African Descent, including through promoting the employment of people of African Descent in public administration and private enterprises, and promoting the integration of women of African descent into the labour market ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Conduct a wide-ranging review of Egyptian human rights laws in order to bring them into line with Egypt's international commitments.", - "values": [ - "3 - Considering action" - ] - }, - { - "text": "Take effective legislative, administrative and judicial measures against the propagation of racial and religious hatred in the media and through the Internet ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Provide the Office of the Ombudsman with the necessary financial and human resources so that it can implement its action plan ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Ensure that children living or working in the street be provided with adequate protection, assistance, nutrition and shelter as well as with health care and educational opportunities ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Entrust the Inter-ministerial Committee on Human Rights with drafting the overdue reports to the United Nations Human Rights Treaty Bodies, including on ICESCR, ICCPR, CERD and CRPD", - "values": [ - "4 - General action" - ] - }, - { - "text": "Ensure efficient, non-discriminatory investigations and timely prosecutions as part of the enforcement of hate crime legislation", - "values": [ - "4 - General action" - ] - }, - { - "text": "Recommended amending the National Security Law to prevent abusive interpretation by the law.", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Pursue its efforts to ensure the schooling of girls and the re-schooling of children who have dropped out of or who have never gone to school, with the support of the United Nations.", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Develop and implement a national human rights plan with clear, specific measurable goals to ensure the civil, political, social and economic rights of all citizens", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Comply with the principle of non-refoulement", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Pursue initiatives to improve the quality of life by diversifying of the economy", - "values": [ - "4 - General action" - ] - }, - { - "text": "Implement and support the particular government programmes of social integration and community activation", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "On child psychiatry, Luxembourg had pledged to increase the number and quality of its infrastructures for the therapeutic treatment of children with behaviour or mental disturbances. These efforts would be continued to guarantee high-quality child psychiatry reflecting the latest developments in medicine", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Continue its efforts to ensure the full enjoyment of human rights through the participatory preparation of a national plan on human rights", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Establish an independent mechanism to carry out investigations of alleged misconduct by police officers", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Continue its process towards the ratification of the International Convention on the Protection of the Rights of All Migrant Workers and Members of Their Families", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Continue to fight impunity and promote the respect of human rights by improving the judiciary ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Continue its efforts to promote equal opportunities of those with migrant background and for their participation in the social, economic and cultural life in Germany", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Actively engage in the fight against racially motivated crimes ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Continue to make efforts to combat extreme poverty", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Take note of the recommendations of the Committee on the Rights of the Child in the National Plan for the application of the CRC until 2016 ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Take effective measures to eliminate all forms of discrimination against women, beginning with harmful cultural practices", - "values": [ - "4 - General action" - ] - }, - { - "text": "Pursue its efforts to implement the National Plan of Action for the promotion and protection of human rights", - "values": [ - "4 - General action" - ] - }, - { - "text": "Continue with the legal or administrative measures they deem appropriate to ensure equality between men and women in all aspects.", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Continue adopting measures to guarantee the rights of persons with disabilities", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Strengthen accountability mechanisms for security forces, including by ensuring these mechanisms protect the rights of victims", - "values": [ - "4 - General action" - ] - }, - { - "text": "Ratify the other pending universal human rights treaties ", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Strengthen its efforts to improve the socioeconomic situation of minority children ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Increase efforts to improve access to public health by people living in rural areas.", - "values": [ - "4 - General action" - ] - }, - { - "text": "Reconsider the decision to withdraw from the Rome Statute of the International Criminal Court", - "values": [ - "3 - Considering action" - ] - }, - { - "text": "Consider acceding to the Convention on the Elimination of All Forms of Discrimination against Women", - "values": [ - "3 - Considering action" - ] - }, - { - "text": "Strengthen safeguards against torture in all detention facilities in any territory under its jurisdiction, ensure proper and transparent investigation and prosecution of individuals responsible for all allegations of torture and ill- treatment, including those documented in the unclassified Senate summary on Central Intelligence Agency activities published in 2014 and provide redress to victims", - "values": [ - "4 - General action" - ] - }, - { - "text": "Take the necessary measures to strengthen the independence and mandate of the Slovak National Centre for Human Rights and ensure that it complies with the Paris Principles ", - "values": [ - "4 - General action" - ] - }, - { - "text": "My country's delegation welcomes the way in which Bahrain has managed the regrettable events of February and March 2011. We would ask Bahrain to ensure that there is follow-up of the recommendations of the BICI ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Consider taking necessary steps to guarantee access to fundamental social human rights, such as health care and education, for foreign residents, including their children, regardless of their migratory status", - "values": [ - "3 - Considering action" - ] - }, - { - "text": "Continue its efforts aiming at achieving an environment of nonpoliticization, cooperation and dialogue in the human rights field ", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Continue its efforts to ensure effective protection of minors and women against sexual exploitation ", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Establish a strong and well-funded national human rights institution that is fully compliant with the Paris Principles", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Revise its asylum law to be consistent with the recommendations of the Swiss Refugee Aid on care and support for unaccompanied minor asylum seekers", - "values": [ - "4 - General action" - ] - }, - { - "text": "Advance the efforts made to facilitate equitable access to justice for all, especially the poor and marginalized", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Consider intensifying the implementation of its programmes and policies aimed at combating violence against women", - "values": [ - "3 - Considering action" - ] - }, - { - "text": "Effectively address and investigate attacks against journalists and human rights defenders", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Pass legislation to increase female representation in management positions, and implement it as soon as possible, and continue efforts to achieve equal pay for men and women", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Review the reservation to CRC and CEDAW", - "values": [ - "3 - Considering action" - ] - }, - { - "text": "Ensure a successful completion and adoption of a Federal Constitution in line with the Federal Government's agenda and Vision 2016", - "values": [ - "4 - General action" - ] - }, - { - "text": "Trust be generated, through in-depth democratic reforms and promoting national social and political dialogue, that is inclusive and representative, to address the country's central issues ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Continue developing the institutional framework with respect to the promotion and protection of human rights", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Sign and-or ratify the Optional Protocol to the International Covenant on Economic, Social and Cultural Rights, the two Optional Protocols to the International Covenant on Civil and Political Rights, the Optional Protocol to the Convention against Torture and other Cruel, Inhuman or Degrading Treatment or Punishment, the International Convention for the Protection of all Persons from Enforced Disappearance, the Convention on the Rights of Persons with Disabilities and its Optional Protocol, the Optional Protocol to the Convention on the Elimination of All Forms of Discrimination against Women and the Optional Protocols to the Convention on the Rights of the Child", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Increase its activities towards the full realization of the right to education and continue increasing investment in this field", - "values": [ - "4 - General action" - ] - }, - { - "text": "Consider partnership in the Extractive Industries Transparency Initiative, including an open dialogue with civil society", - "values": [ - "3 - Considering action" - ] - }, - { - "text": "Strengthen measures to combat all forms of discrimination and other related forms of intolerance", - "values": [ - "4 - General action" - ] - }, - { - "text": "Consider the issuance of a standing invitation to these human rights mechanisms", - "values": [ - "3 - Considering action" - ] - }, - { - "text": "Ratify the treaties already signed, such as the International Convention on the Elimination of All Forms of Racial Discrimination (ICERD), ICESCR, ICCPR, and CAT ", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Ensure its security personnel undergo due human rights and humanitarian law training programmes to prevent extrajudicial killings, use of torture and other ill treatment ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Ensure that inquiries are carried out immediately, independently, and transparently in cases where members of the armed forces are suspected of having committed acts of torture, particularly in the context of their service abroad ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Strengthen its efforts to effectively combat domestic violence and provide adequate victims' support, inter alia by creating sufficient shelter capacity ", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Create independent focal points on the human rights of children to monitor and ensure the implementation of the Convention on the Rights of the Child and the Optional Protocols thereto", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Take measures to eradicate crimes against people of African descent, Muslims, Jews and foreigners, which are promoted in the media and social networks, where violence, racism, racial discrimination, xenophobia and other related forms of intolerance are openly incited", - "values": [ - "4 - General action" - ] - }, - { - "text": "Remedy the shortcomings in the media law as expressed by the Venice Commission", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Allocate adequate resources to implement its policies and programmes aimed at ensuring that equality between men and women are realized in practice", - "values": [ - "4 - General action" - ] - }, - { - "text": "Establish a National Human Rights Institution in conformity with the Paris Principles ", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Accept individual applications procedures provided for in human rights instruments ", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Ensure women\u2019s rights concerning their sexual and reproductive health through an enabling policy", - "values": [ - "4 - General action" - ] - }, - { - "text": "Sign and ratify the principal human rights instruments to which it is not a party, namely the OP-ICESCR, OP-CAT, ICCPR-OP2, aimed at abolishing the death penalty, OP-CRC-AC and ratify CED ", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Strengthen its efforts to eradicate child labour, improving coordination among the numerous national institutions dealing with the rights of the child", - "values": [ - "4 - General action" - ] - }, - { - "text": "Continue to pursue its commitment to dialogue on all issues and with all States, on the basis of mutual respect, sovereign equality, self-determination and recognition of the right of every people to choose their own political, economic and social system ", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Take measures in order to allow the adoption of children by same-sex couples ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Formally abolish any punishment on the grounds of sexual orientation or gender identity", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Consider a moratorium on the death penalty", - "values": [ - "3 - Considering action" - ] - }, - { - "text": "Take the legal measures necessary to establish a moratorium on the use the death penalty", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Incorporate the principle of the best interest of the child in all programmes and policies ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Adopt as soon as possible the Women\u2019s Empowerment and Gender Equality Bill", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Continue pursuing its efforts in upholding respect for human rights and the well-being and development of its people through education, in line with its Education Policy Framework 2004-2019", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Ratify ICCPR, ICESCR, CERD, CAT and the Rome Statute ", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Ratify the International Covenant on Civil and Political Rights also with a view to help ensure equal rights of, and end discrimination against lesbian, gay, bisexual, transgender and intersex persons", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Provide for legislation ensuring an independent functioning of the National Human Rights Commission according to the Paris Principles", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Take as soon as possible effective measures to bring conditions of detention in line with international standards, in particular to reduce overcrowding and to abolish the system of 'arraigo' and promote non-custodial measures", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Continue its efforts in the area of the right to education, and in allocating the necessary resources to promote this right and improve the quality of education ", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Establish adequate measures to ensure the real guarantee of freedom of expression recognized by article 34 of the Afghan Constitution.", - "values": [ - "4 - General action" - ] - }, - { - "text": "Intensify efforts to implement the national action plan to combat trafficking, particularly by bringing to justice and systematically convicting those individuals held responsible", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Take the necessary measures to ensure universal birth registration, including for children born out of wedlock and regardless of the parents' immigration status", - "values": [ - "4 - General action" - ] - }, - { - "text": "Continue to implement appropriate policies and programmes to combat violence and abuse against children, and ensure recovery and social integration for victims ", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Reinforce existing educational programmes about the Holocaust, and introduce additional ones, as a key lesson in the fight against racial discrimination", - "values": [ - "4 - General action" - ] - }, - { - "text": "Introduce a human rights-based approach to all climate change-related policies and programmes, including in disaster-risk reduction measures", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Establish a national human rights institution in accordance with the Paris Principles, to promote and protect fundamental rights and guarantees", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Develop further measures to combat discrimination against people living with disabilities, including by providing improved access to social and health services.", - "values": [ - "4 - General action" - ] - }, - { - "text": "Promptly ratify and implement in national laws the outstanding core human rights treaties, including ICESCR", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Undertake a comprehensive review of its domestic legislation to bring it into line with the international conventions to which it is a party, in order to eradicate any form of discrimination", - "values": [ - "3 - Considering action" - ] - }, - { - "text": "Remove or alter the broad definition and arbitrary application of \u201cinexcusable error\u201c used by the Judicial Council to punish judges", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Abolish laws and practices discriminating against women and girls", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Take all necessary measures to establish and finance anti-corruption courts", - "values": [ - "4 - General action" - ] - }, - { - "text": "Establish a shelter system for victims of domestic violence and undertaking public awareness campaigns against domestic violence", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Introduce comprehensive legislation prohibiting human trafficking, in particular trafficking of children for labour and sexual exploitation", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Amend its legislation to declare illegal and prohibit organizations promoting and inciting racial hatred, in line with article 4 (b) of the International Convention on the Elimination of All Forms of Racial Discrimination", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Take effective measures to guarantee the impartiality and independence of the judiciary, in accordance with Swaziland's international commitments and obligations, including the United Nations Basic Principles on the Independence of the Judiciary and the International Covenant on Civil and Political Rights", - "values": [ - "4 - General action" - ] - }, - { - "text": "Take additional steps to ensure women's full participation in public life as well as in the peace and reconciliation process and ensure that the Law on the Elimination of Violence against Women is implemented and that all acts of violence against women are thoroughly investigated and those responsible are brought to justice ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Establish and make operational the Commission of Inquiry, and any additional transitional justice mechanism required, to address human rights violations before and after 2012", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Continue putting in place measures aimed at preventing violence and racial discrimination against Afro-Brazilians and at protecting their cultural heritage sites and places of worship", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Continue to refine its domestic legislation in the field of human rights and freedoms ", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Strengthen legislation and policy measures aimed at preventing and addressing violence against women ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Continue assessing invitations to human rights special procedures as a measure to strengthen cooperation in areas to be determined by the authorities ", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Give due attention to the issue of the practice of sponsorship for foreigners, considering that this practice can give rise to serious human rights violations of foreign workers", - "values": [ - "3 - Considering action" - ] - }, - { - "text": "Continue to ensure food security for the elderly, persons with disabilities and persons at risk", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Fully implement the Rural Food Support and Supply Programme, the Social Milk Programme, the Living Better Food Supplement Programme and the Comprehensive Food Aid Strategy, with a view to meeting the food requirements of the must vulnerable sections of society", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Strengthen the legal framework and implement measures to combat racism and xenophobia and sanction hate crimes, in particular those against migrants in irregular situations", - "values": [ - "4 - General action" - ] - }, - { - "text": "Continue its efforts for educational opportunities, vocational training and income-generating opportunities ", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Hold free and fair elections guaranteeing for all persons the right to participate in the country's Government", - "values": [ - "4 - General action" - ] - }, - { - "text": "Increase the minimum age of marriage which is 15 for girls and 16 for boys to an age which is in line with international standards", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Take all necessary measures to protect the rights of all migrant workers especially the means for redress", - "values": [ - "4 - General action" - ] - }, - { - "text": "Appropriately investigate excessive use of force by security forces, publically release findings, and prosecute those identified as being responsible", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Disseminate the NHRAP amongst general population in local languages so as to ensure wider participation in the implementation process, thereby empowering claim holders in asserting and protecting their rights", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Seek the support of the relevant partners to pursue its efforts in its fight against trafficking in persons", - "values": [ - "1 - Minimal action" - ] - }, - { - "text": "Ratify the United Nations Convention against Transnational Organized Crime and its three Additional Protocols", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Ratify the ICCPR as well as its Optional Protocols ", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Enact measures regarding the civil registration of children at birth in order to fight the possible traffic in human beings", - "values": [ - "4 - General action" - ] - }, - { - "text": "Redouble its efforts to strengthen protection measures to combat all forms of abuse and neglect against children, including all forms of child labour", - "values": [ - "4 - General action" - ] - }, - { - "text": "Ratify the Convention against Torture, the Optional Protocol to the Convention against Torture and the International Labour Organization (ILO) Domestic Workers Convention, 2011 (No. 189)", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Reinforce mechanisms to detect and investigate cases of domestic violence and train law enforcement officials to deal with such cases", - "values": [ - "4 - General action" - ] - }, - { - "text": "Take all necessary measures to prevent women and girls from suffering from harmful traditional practices, such as female genital mutilation, early and forced marriages and teenage pregnancies ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Make more widely available to the world its experience in combining a strong state with ethnic regional autonomy", - "values": [ - "1 - Minimal action" - ] - }, - { - "text": "Eliminate all forms of discrimination and criminalization of civil society organizations, human rights defenders and the media, inter alia by repealing Executive Decrees Nos. 16, 739 and 691 and the Organic Act on Communication and by ending criminal proceedings against persons participating in social protests based on broadly worded offences contained in the Criminal Code, such as sabotage and terrorism", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Pursue steps made with the aim of addressing the effects of climate change on the population", - "values": [ - "4 - General action" - ] - }, - { - "text": "Consider accession to ILO Convention No. 189 ", - "values": [ - "3 - Considering action" - ] - }, - { - "text": "Continue its efforts to promote human rights, above all the education of children and the provision of health services for children ", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Take the necessary measures to allow the judicial system to effectively fight against impunity, including through judicial processes that are carried out within reasonable deadlines", - "values": [ - "4 - General action" - ] - }, - { - "text": "Implement the "Social missions" on a long-term basis and in a more systematic manner, in order to further reduce the level of inequality in the country ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Continue to strengthen its efforts to combat trafficking in persons by providing the necessary budget to establish a larger number of local bodies to combat this scourge ", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Maintain actions and policies that address the situation of its indigenous peoples", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Increase the commendable ongoing efforts aiming at granting full and free access to quality education for all children, inter alia, by boosting annual expenditure on education", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Continue efforts to foster unity in a diverse society, including to migrants, through considering the ratification of ICRMW ", - "values": [ - "3 - Considering action" - ] - }, - { - "text": "Decriminalise as soon as possible sexual relations between consent adults of same sex and repeal the 2006 law", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "With reference to the situation of children in detention, follow-up the recommendations in chapter VI of the Human Rights Council resolution on the Rights of the Child adopted in March 2012 ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Align its legislation to the definition of discrimination against women in accordance with Article 1 of the Convention on the Elimination of All Forms of Discrimination against Women, and adopt laws and policies for the full participation of women in both public and private decision spaces", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Continue making progress by ratifying ICRMW ", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Review the Public Order Management Act and the Non-Governmental Organizations Act so that the legal framework is conducive to safe and unhindered operation of independent NGOs", - "values": [ - "3 - Considering action" - ] - }, - { - "text": "Undertake the necessary reforms to guarantee defendants a fair trial within a reasonable time, and reduce the use of remand", - "values": [ - "4 - General action" - ] - }, - { - "text": "Guarantee fully the independence of the judiciary, in conformity with relevant international norms", - "values": [ - "4 - General action" - ] - }, - { - "text": "Continue its efforts aimed at combating all forms of discrimination", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Recommended continuing and deepening judicial reform, including by adopting measures to address the institutional weakness and lack of independence of the judiciary", - "values": [ - "4 - General action" - ] - }, - { - "text": "Increase its cooperation with OHCHR, as pledged before its accession to the Human Rights Council", - "values": [ - "4 - General action" - ] - }, - { - "text": "Continue to implement programmes aimed at alleviating the poverty of Afro-Ecuadorian families and facilitate their full participation in public life ", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Take all necessary measures to protect women, and especially girls, from sexual violence in the context of armed conflict.", - "values": [ - "4 - General action" - ] - }, - { - "text": "Continue to cooperate with human rights mechanisms and the international community in promoting and safeguarding the rights of multiethnic people in Myanmar ", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Recommended lifting the current reservation to article 8.1(a) of the ICESCR, which ensures the right of everyone to form trade unions and join the trade union of his or her choice and welcomed more information on possible reforms in this area", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Carry out the necessary measures to protect the environment and adopt specific measures to protect the enjoyment of the right to water", - "values": [ - "4 - General action" - ] - }, - { - "text": "Implement measures to facilitate access to health care and education, particularly for the most vulnerable population", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Take all measures to eliminate child labour and illegal mining ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Amend the relevant labour laws to enhance the protection of the human rights of all migrant workers", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Consider signing and ratifying the OP-CAT ", - "values": [ - "3 - Considering action" - ] - }, - { - "text": "Improve further its non-discrimination legislation by criminalizing hate crimes on the grounds of age, disability, sexual orientation and gender identity, while taking the measures necessary to combat discrimination based on race, sex, nationality, ethnicity, religion or any other grounds", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Continue efforts to eliminate all forms of discrimination against persons with disabilities, in line with best practices and international standards", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Adopt all necessary measures to provide for a free and independent media which reflects the religious, ethnic and political plurality of opinions in Egypt", - "values": [ - "4 - General action" - ] - }, - { - "text": "Ensure independent access for UNHCR and other international humanitarian agencies to all Lao Hmong returnees from Thailand to Lao, including in Phonekham, and assess their well-being ", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Consider ratifying human rights instruments to which it is not yet a State Party", - "values": [ - "3 - Considering action" - ] - }, - { - "text": "The Government is unequivocally committed to making Gabon a political and social space where its people can build a common future, regardless of their different backgrounds and beliefs, against a background of respect for human rights", - "values": [ - "4 - General action" - ] - }, - { - "text": "Continue to strengthen its national human rights mechanisms, including through finalizing the process aimed at ensuring the conformity of the national human rights institution with the Paris Principles", - "values": [ - "4 - General action" - ] - }, - { - "text": "Continue to make efforts to promote the right to education for children of migrant workers from rural areas", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Ratify, in particular, CAT", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Continue efforts to establish effective consultation processes with communities in accordance with international standards with regard to any project that affects the territory or livelihoods of indigenous people", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Ensure equal access to education for girls and children living in the rural areas, including by adopting concrete measures to eliminate early marriages, FGM and other gender discriminative practices which hinder the education of girls", - "values": [ - "4 - General action" - ] - }, - { - "text": "Prohibit all corporal punishment of children in all settings and enact legislation to achieve this ", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Ratify the Convention on the Rights of the Child and the Convention on the Rights of Persons with Disabilities", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Consider establishing a de jure moratorium of capital executions with a view to fully abolishing the death penalty", - "values": [ - "3 - Considering action" - ] - }, - { - "text": "Continue making further efforts to promote the enjoyment of economic, social and cultural rights", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Simplify requirements for official approval of religious practices in order to allow more individuals to exercise their freedom of religion and belief and to better respect the religious rights of minorities", - "values": [ - "4 - General action" - ] - }, - { - "text": "Draw up an action plan for business and human rights", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Continue positive efforts to eliminate, in accordance with international obligations and commitments, all forms of discrimination, especially discrimination against vulnerable groups and all groups that have been historically most deprived of", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Strengthen the nationwide health system and infrastructure to improve people's access to health care and add impetus to achieving the health-related Millennium Development Goals, with the support and assistance of the international community.", - "values": [ - "4 - General action" - ] - }, - { - "text": "Request technical assistance and cooperation, as deemed appropriate, from the international community, including relevant United Nations and other specialized agencies, with a view to ensuring the promotion and protection of the full spectrum of human rights of its people ", - "values": [ - "1 - Minimal action" - ] - }, - { - "text": "Ratify and implement the 1993 Hague Convention on Protection of Children and Co-operation in Respect of Intercountry Adoption ", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Ratify the International Covenant on Economic, Social and Cultural Rights and its Optional Protocol and establish a national institution for human rights in accordance with the Paris Principles, seeking international technical cooperation if necessary", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Respect the freedom of association and assembly of its citizens", - "values": [ - "4 - General action" - ] - }, - { - "text": "Improve access to the right to education and eliminate disparities in this respect, whether regional, socioeconomic or based on ethnicity or gender ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Take particular and additional measures to consolidate national unity, stability of internal security and support solidarity to spread the culture of peaceful coexistence and strengthen the values of conciliation", - "values": [ - "4 - General action" - ] - }, - { - "text": "Introduce a moratorium on executions with a view to abolishing the death penalty", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Continue giving the broadest possible scope, flexibility and coverage to its immigration policy", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Adopt a no drop policy to ensure that all cases of domestic violence are properly investigated.", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Continue its efforts to promote equality between men and women", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Complete the process of establishing a national human rights institution in conformity with the Paris Principles \n", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Canada commits to considering options for enhancing existing mechanisms and procedures related to the implementation of international human rights obligations. Canada welcomes the views of civil society and Aboriginal organizations in identifying practical means to fulfil this commitment.", - "values": [ - "3 - Considering action" - ] - }, - { - "text": "Reinforce efforts to improve the situation of poverty, education, health, gender equality and advancement of women, with assistance from the international community ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Replace the current sponsorship system with domestic worker residency permits overseen by the Government ", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Ratify ILO 189 on decent work for domestic workers ", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Enhance the role of a national authority working on the promotion and respect of human rights", - "values": [ - "4 - General action" - ] - }, - { - "text": "Continue to strengthen and promote the rights of national minorities", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Cultivate and develop at local as well as national level a culture of human rights through appropriate programmes increasingly adapted to the cultural context in the framework of formal and non-formal education", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Confirm its commitment to non-discrimination by decriminalizing sexual relations between consenting adults of the same sex and by repealing the discriminatory provisions against LGBT persons ", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Adopt measures to guarantee full access to education for all children in the country ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Close Guantanamo and secret centers of detention in the world, punish agents that torture, disappear and execute persons who have been arbitrarily detained, and compensate victims", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Improve cooperation with the United Nations treaty bodies, including by incorporating and implementing international human rights law standards ", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Put in place a national institution for the promotion and protection of human rights in accordance with international standards in force ", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Continue to implement its efforts to enhance the protection of children and improve their well-being ", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Continue efforts to develop its human capital through education, training and empowering vulnerable groups", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Sign and ratify OP-ICESCR, OP-CAT and CED ", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Strengthen its efforts to introduce human rights education in the curriculum and training programmes", - "values": [ - "4 - General action" - ] - }, - { - "text": "Take prompt effective measures to uphold a total prohibition against torture ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Consider the ratification or adhesion to the Optional Protocol to the Convention on the Elimination of All Forms of Discrimination against Women", - "values": [ - "3 - Considering action" - ] - }, - { - "text": "Enact the education bill, further enhance and develop the education system and intensify efforts to improve access to education for students from low-income families", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Enact specific legislation to prohibit discrimination against persons based on sex, race, colour, religion, national origin and sexual orientation", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Strengthen measures aimed at eliminating child labour to protect girls, children with disabilities, children in institutions and children born out of wedlock against discrimination and to increase the attention accorded to protecting the rights of the child in the area of juvenile justice", - "values": [ - "4 - General action" - ] - }, - { - "text": "Intensify efforts to ensure that all children enjoy the right to education and protection from discrimination and violence", - "values": [ - "4 - General action" - ] - }, - { - "text": "Strengthen the domestic legal framework to punish racial segregation and step up all types of measures to prevent, prohibit and eliminate in its territory all practices of this nature, in line with article 3 of the Convention on the Elimination of Racial Discrimination ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Strengthen adaptation measures to curb the long term effects of climate change", - "values": [ - "4 - General action" - ] - }, - { - "text": "Strengthen cooperation with all the mechanisms of this Council ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Continue measures underway to address land issues, including amending the Prescription Ordinance, whereby displaced landowners will be able to defeat the adverse claims based on the running of time", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Continue its efforts in food supply and the possibility of making it available to its citizens ", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Establish independent children's courts and review the role and functioning of the Child Protection Committees in order to enhance their effectiveness", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Continue its efforts to allocate sufficient pedagogical resources to support the right to education of the indigenous peoples of Norway ", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Further continue its efforts to improve the rights of children, ensure that the Omani Law of the Child is enforced and consider developing a comprehensive national plan of action for children", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Make further efforts to establish what happened to an opposition leader, those responsible for his disappearance to be prosecuted, to follow-up on the recommendations of the fact-finding commission, and to modify the terms of reference and membership to ensure better the independence of the commission", - "values": [ - "4 - General action" - ] - }, - { - "text": "Intensify its efforts in promoting literacy among the population, especially among rural women", - "values": [ - "4 - General action" - ] - }, - { - "text": "Develop a comprehensive national strategy to prevent all forms of violence against children, with particular attention to its gender dimension", - "values": [ - "4 - General action" - ] - }, - { - "text": "Proceed to the establishment of a moratorium on the application of the death penalty as a first step to its definitive abolition ", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Continue to develop its human resources for further harmonizing and mainstreaming international obligations into domestic legislation and practices, with more focus on employment, education, health care, food security and social welfare, especially in rural and remote areas ", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Sign and ratify the International Covenant on Economic, Social and Cultural Rights and its Optional Protocol ", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Take effective legal measures to eliminate all forms of discrimination and violence against women and children, in particular those who belong to ethnic and religious minorities including Muslims who still face multiple forms of discrimination with respect to education, health, employment and social and political participation ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Prohibit legally female genital mutilation, as previously recommended", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Take further measures to protect the human rights of migrants ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Take into positive consideration the abolition of the death penalty, or at least the adoption of a de jure moratorium on executions", - "values": [ - "3 - Considering action" - ] - }, - { - "text": "Accelerate its programme to eliminate discrimination against women ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Indonesia, in line with its National Plan of Action, is encouraged to follow through on its intention to accede to the Rome Statute of the International Criminal Court, the Optional Protocol to the Convention on the Rights of the Child on involvement of children in armed conflict, the Optional Protocol to the Convention on the Rights of the Child on the sale of Children, child prostitution and child pornography and the Optional Protocol to the Convention against Torture, Cruel, Inhuman and Other Degrading Treatment. Indonesia is further encouraged to consider signing the International Convention on the Protection of All Persons from Enforced Disappearance", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "With support from UNESCO and ILO, continue to strengthen its education system and vocational training especially for youth", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Fully align its national legislation with the Rome Statute", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Accede to the Optional Protocol to the Convention on the Elimination of All Forms of Discrimination against Women ", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Encourage reporting of cases of domestic and sexual violence against women and girls, and ensure that complaints are investigated and the perpetrators are punished with penalties proportional to the seriousness of the offence ending the culture of impunity", - "values": [ - "4 - General action" - ] - }, - { - "text": "Establish a national human rights institution in compliance with the Paris Principles.", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Share its experiences and best practices, especially on how to achieve the MDGs, with other countries. ", - "values": [ - "1 - Minimal action" - ] - }, - { - "text": "Take the measures necessary to ensure freedom of expression, promote diversity of opinion and prevent all interference with freedom of the press and, inter alia, systematically investigate aggression or threats against journalists and bring to justice those responsible", - "values": [ - "4 - General action" - ] - }, - { - "text": "Strengthen its policies designed to better integrate the Pygmies in the society", - "values": [ - "4 - General action" - ] - }, - { - "text": "Continue its efforts to integrate human rights in school curricula ", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Continue efforts to develop education, particularly in the rural parts of the country, with the participation of the private and public sectors and nongovernmental organizations, with a view to reducing poverty through employment opportunities and the strengthening of human resources", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Continue its efforts to implement the National Action Plan on Human rights", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Strengthen national efforts to prevent land conflicts between indigenous peoples and farmers", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Ensure that the eligibility criteria for indigenous and Afro-Honduran peoples to receive the benefits of the Presidential Programme on Health, Education and Nutrition in a culturally appropriate manner are made fair, non-discriminatory and all-inclusive", - "values": [ - "4 - General action" - ] - }, - { - "text": "Take the necessary measures to ensure that education promotes respect for human rights and participation in a free society", - "values": [ - "4 - General action" - ] - }, - { - "text": "Continue to work with regional organisations and the international community including the OHCHR and other treaty bodies during the process of implementing measures to tackle sexual and gender based violence, release of all child soldiers and prevention of future recruitment, administration of justice and rule of law", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Continue measures for the promotion and protection of the rights of peasants and other persons working in rural areas", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Enforce the judicial system and the penitentiary system with a view to eliminating the deplorable conditions of prisoners and police abuse ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Ratify the OP- CRC-SC", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Adopt the necessary measures to ensure the reduction of overcrowding and the improvement of prison conditions", - "values": [ - "4 - General action" - ] - }, - { - "text": "To Republika Srpska repeal the death penalty from its Constitution", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Incorporate an explicit prohibition of torture and other ill-treatment, as well as a clear definition of torture, into national legislation in order to comply with the obligations derived from CAT and facilitate independent, timely and thorough investigations of all allegations of torture to facilitate appropriate redress for victims ", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Continue its efforts regarding economic and social rights of the population, including modernizing the education system by enshrining the right to basic education in law", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Take all necessary action to tackle problems of persistence of extrajudicial executions, cases of torture and brutality as well as impunity, by ensuring particularly impartiality of investigations and prosecution of those responsible ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Speed up the ratification procedure of the African Union Convention for the Protection and Assistance of Internally Displaced Persons in Africa (Kampala Convention)", - "values": [ - "4 - General action" - ] - }, - { - "text": "Amend the labour code and visa sponsorship system to accord the necessary legal protection to migrant domestic workers on an equal footing with other workers", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Implement all the measures agreed in the 1996 Peace Accords to combat discrimination and promote inclusion.", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Establish a mechanism for monitoring the number of cases and scope of abuse and strengthen the measures of protection from domestic violence", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Continue efforts to become a party to the seven core human rights treaties.", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Ratify the International Convention on the Protection of the All Persons from Enforced Disappearance and pass national law criminalizing enforced disappearance and torture and recognizing the rights of victims", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Continue promoting opportunities for women and men in the labour market ", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Uphold the commitment as to the realization of the human rights to safe drinking water and sanitation", - "values": [ - "4 - General action" - ] - }, - { - "text": "Ratify the Convention on the Protection of the Rights of Migrant Workers and Members of Their Families", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "All allegations of human rights violations, including those against members of the armed forces and of the Séléka, should be thoroughly and impartially investigated, and those responsible for any such violations prosecuted", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Promote a disaster risk awareness campaign throughout the country", - "values": [ - "4 - General action" - ] - }, - { - "text": "Repeal regulations permitting trials by ordeal and amend the Penal Code to criminalize the organization of such trials", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Continue prevention, protection and assistance for the victims of trafficking", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Accede to instruments to which it is not yet a party, with priority given to ICCPR and the Rome Statute of the International Criminal Court ", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Take effective legal steps to halt human rights violations by its military forces and private security firms in Afghanistan and other States ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Consider ratifying ILO Convention 189 (2011) concerning decent work for domestic workers", - "values": [ - "3 - Considering action" - ] - }, - { - "text": "Submit its overdue reports to the International Covenant on Economic, Social and Cultural Rights", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Strengthen the implementation effectiveness of Turkey's 2012 domestic law on preventing violence against women", - "values": [ - "4 - General action" - ] - }, - { - "text": "Adopt as soon as possible the National Human Rights Action Plan ", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Undertake the necessary measures to protect the rights of human rights defenders as well as journalists", - "values": [ - "4 - General action" - ] - }, - { - "text": "Consider ratifying the ILO Domestic Workers Convention, 2011 No. 189", - "values": [ - "3 - Considering action" - ] - }, - { - "text": "Take necessary measures to protect Ugandan children against all practices detrimental to their physical and moral integrity ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Conduct a more active policy against racial discrimination and xenophobia, including the adoption of a clear and comprehensive definition of racial discrimination", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Raise awareness on the impact of climate change ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Ensure that independent, impartial and effective investigations into the unlawful use of force against women are carried out by Honduran law enforcement officials", - "values": [ - "4 - General action" - ] - }, - { - "text": "Take appropriate measures to prohibit corporal punishment in all settings", - "values": [ - "4 - General action" - ] - }, - { - "text": "Establish a federal moratorium on the death penalty with a view to the total abolition of the death penalty in the United States", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Increase access to health-care services and medical assistance for women and children and make information on family planning available to them, especially in rural areas ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Intensify its efforts to increase school attendance of the Roma children and to effectively implement the national strategy by correlating it with specific programs and by strengthening the implementation structures for the Roma at local level ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Strengthen strategies to combat manifestations of racism, xenophobia and intolerance, including incitement to hatred, taking into account international human rights standards in this regard", - "values": [ - "4 - General action" - ] - }, - { - "text": "Effectively achieve greater access to employment to persons with disabilities, particularly women ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Complete the process of full alignment of its national legislation with all obligations under the Statute and to accede to the Agreement on Privileges and Immunities of the Court", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Seek to ratify the Optional Protocol to the Convention to the Elimination of All Forms of Discrimination against Women", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Reference is made to the commitments made by Romania to launch a National Plan of Action for Human Rights, as announced by the Head of Delegation in the introductory statement ", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Take the necessary measures to ratify the International Convention for the Protection of All Persons from Enforced Disappearance and recognize the competence of the Committee", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Take additional measures to prevent abuse of children, particularly in schools, to investigate such abuses and bring perpetrators to trial", - "values": [ - "4 - General action" - ] - }, - { - "text": "Extend a standing and open invitation to all special procedures ", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Consider ratifying the Optional Protocol to the Convention against Torture (OPCAT)", - "values": [ - "3 - Considering action" - ] - }, - { - "text": "Continue incorporating the gender perspective in programmes and development plans with positive measures to the effective promotion and protection of women's' rights ", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Continue its efforts to establish a national human rights institution, as this was an accepted recommendation from the first review", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Intensify cooperation with the Office of the United Nations High Commissioner for Human Rights with a view to implementing the recommendations of the mission deployed by the Office in February 2008 to investigate the postelectoral violence that occurred at the end of 2007 ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Establish relevant prison facilities for the Juvenile population", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Sign and ratify the Optional Protocol to the Convention against Torture, the Optional Protocol to the International Covenant on Economic, Social and Cultural Rights, the Optional Protocol to the Convention on the Rights of Persons with Disabilities, and ratify the Optional Protocol to the Convention on the Elimination of All Forms of Discrimination against Women ", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Keep working in cooperation with OHCHR on the theme of the upcoming Review Conference on racism, racial discrimination, xenophobia and related intolerance as it enters the final phase of its preparatory process", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Continue to guarantee the rights of persons with disabilities, notably by improving their quality of life", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Continue efforts to combat violence against women", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Cooperate with treaty bodies, submitting pending reports", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Continue to protect the rights of migrants living in its territory", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Continue efforts to realize the right to education and pay special attention to the access of children and adolescents aged to attend middle and secondary education", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Redouble its efforts on HIV/AIDS response, particularly on prevention strategies and to take steps to address discrimination against persons living with HIV/AIDS", - "values": [ - "4 - General action" - ] - }, - { - "text": "Further improve the access of minority groups, specially Roma and, in particular, Roma children and adolescents, to education", - "values": [ - "4 - General action" - ] - }, - { - "text": "Ensure the independence and financial autonomy of the National Human Rights Commission", - "values": [ - "4 - General action" - ] - }, - { - "text": "Continue to strengthen good governance at all levels to enhance service delivery", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Intensify its efforts to effectively implement the laws on discrimination against women, and on the promotion and protection of children", - "values": [ - "4 - General action" - ] - }, - { - "text": "Fight against discrimination based on sexual orientation and gender identity, especially against children, carrying out public awareness programmes and teacher training on this subject", - "values": [ - "4 - General action" - ] - }, - { - "text": "Further consider acceding to the relevant Conventions, especially the ICRMW in line with its domestic legislative process", - "values": [ - "3 - Considering action" - ] - }, - { - "text": "Continue the efforts in favour of the promotion of women's rights", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Continue with its efforts to reform the judicial system and its practices and further examine ways by which certain legal provisions are aligned with international human rights standards", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Ratify the core international human rights instruments as well as the Rome Statute of the ICC", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Consider the possibility of acceding to the International Convention on the Rights of Migrant Workers and Members of Their Families", - "values": [ - "3 - Considering action" - ] - }, - { - "text": "Eliminate all forms of inequality between men and women", - "values": [ - "4 - General action" - ] - }, - { - "text": "Release all media workers and human rights defenders arrested and detained for their human rights activities and allow the reopening of closed media outlets", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Further develop and enhance education ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Step up awareness campaigns through the national plan of action to combat racism and racial discrimination that is currently being drafted", - "values": [ - "4 - General action" - ] - }, - { - "text": "Take all necessary steps to ensure prompt, impartial and transparent investigations into alleged unlawful killings and other abuses during anti-drug operations", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Declare an official moratorium on executions with a view to abolishing the death penalty", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Spare no effort to investigate allegations of violence and killings committed by the police and also ensure that the State, at all levels, fully respects international human rights standards", - "values": [ - "4 - General action" - ] - }, - { - "text": "Exert efforts to hasten the implementation of the new statute that will ensure the independence and autonomy of the CNDHC in accordance with the Paris Principles ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Continue to engage its regional and international partners with a view to seeking technical and other assistance in the field of human rights", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Redouble its efforts to ensure the protection of the rights of women and children", - "values": [ - "4 - General action" - ] - }, - { - "text": "Put into practice additional measures which encourage a larger presence of Arab students in university lecture halls as well as a policy encouraging the inclusion of Arab lecturers in the universities", - "values": [ - "4 - General action" - ] - }, - { - "text": "Sign the Council of Europe Convention for the protection of children against exploitation and sexual abuse", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Engage partners at the national, regional and international levels in efforts to build the human rights capacities of Government personnel, particularly judicial and law enforcement personnel", - "values": [ - "4 - General action" - ] - }, - { - "text": "Implement support services and ensure non-discrimination against the lesbian, gay, bisexual, transgender and intersex community", - "values": [ - "4 - General action" - ] - }, - { - "text": "Implement national socioeconomic policies and continue its efforts to alleviate poverty by 2015 and to graduate from the status of least developed country by 2020", - "values": [ - "4 - General action" - ] - }, - { - "text": "Share best practices in promoting the education of children with disabilities ", - "values": [ - "1 - Minimal action" - ] - }, - { - "text": "Promote anti-discrimination through awareness-raising campaigns on legislation among workers, employers and the judiciary", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Continue with positive efforts to promote economic, social and cultural rights, particularly the priority given to health, education and the care of disabled", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Promptly invite the United Nations to establish a presence in Sri Lanka, the mandate of which would include protection, monitoring, investigation and reporting.", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Develop a comprehensive policy to prevent violence against children, including all necessary measures to prevent children from being subject to torture and ill-treatment, to living and working in the streets and being subjects to threats and forced recruitment by gangs", - "values": [ - "4 - General action" - ] - }, - { - "text": "Prohibit racist organizations, in accordance with its international obligations ", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Continue their endeavours and engagement with all stakeholders for an effective implementation of the programs for the promotion and protection of the rights of women and children ", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Ensure that the Prevention and Combating of Hate Crimes and Hate Speech Bill is in conformity with the International Convention on the Elimination of All Forms of Racial Discrimination and make every effort to expedite its enactment", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Draw a timeline for realizing the visits of the Special Rapporteurs who so requested to the country ", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Continue the implementation of positive measures in favour of gender equality to facilitate their access to justice and education", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Continue to develop and institute effective mechanisms for improved dialogue and consultation with the Sami people in all areas of Government policy that affect them and in the development of legislation ", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Set a date for the ratification of the International Convention for the Protection of All Persons from Enforced Disappearance.", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Create and further implement social policies focused on providing better education, increasing the enrolment of students and reducing the number of school dropouts", - "values": [ - "4 - General action" - ] - }, - { - "text": "Consider taking measures for the implementation of its international commitments in the area of the rights of persons with disabilities, and in particular to address the issue of accessibility ", - "values": [ - "3 - Considering action" - ] - }, - { - "text": "Accede to CEDAW ", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Establish a federal Children's Ombudsman ", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Enhance human rights education and training programs for the general public and government officials", - "values": [ - "4 - General action" - ] - }, - { - "text": "Ratify those human rights treaties pending ratification in particular, the International Covenant on Civil and Political Rights and its two Optional Protocols, the International Covenant on Economic, Social and Cultural Rights, the Convention against Torture and Other Cruel, Inhuman or Degrading Treatment or Punishment and the two Protocols to the Convention on the Rights of the Child", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Consider ratification of the Convention against Torture and the Optional Protocol thereto.", - "values": [ - "3 - Considering action" - ] - }, - { - "text": "Continue to strengthen measures to deal with teenage pregnancies, by promoting access to reproductive health services for all, including sexual and reproductive health education, as well as counselling services and health care adapted to young people, in accordance with the commitments in the Montevideo Consensus on Population and Development", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Complete its legal framework by ratifying in particular the Convention against Torture and its Optional Protocol, the International Convention for the Protection of All Persons from Enforced Disappearance and the Rome Statute", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Prohibit in all circumstances the detention of migrants who are still minors", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Continue to implement measures to ensure all women and girls have equal access to quality sexual and reproductive healthcare", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Sign and ratify the Optional Protocol to the Convention against Torture.", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Take immediate steps towards holding democratic elections before the end of 2010, in order to restore democratic institutions and processes in Fiji", - "values": [ - "4 - General action" - ] - }, - { - "text": "Take appropriate measures to ensure that hate crime and violence, and racist and xenophobic acts are investigated, and that perpetrators are prosecuted", - "values": [ - "4 - General action" - ] - }, - { - "text": "Initiate a debate on the decriminalization of homosexuality ", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Continue to bring domestic legislation into line with international instruments", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Continue its on-going efforts to safeguard the rights of women and children", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Review its current legislation in order to bring it fully in line with the principles and provisions of CRC and accede to its two Optional Protocols ", - "values": [ - "3 - Considering action" - ] - }, - { - "text": "Implement policies which guarantee better protection for asylum seekers and refugees", - "values": [ - "4 - General action" - ] - }, - { - "text": "Continue efforts to strengthen the implementation of legislation on violence against women", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Consider harmonizing Guatemala's civil and penal codes with international human rights norms, in relation to racial discrimination and gender issues", - "values": [ - "3 - Considering action" - ] - }, - { - "text": "Receive as soon as possible the Special Rapporteur on the question of torture.", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Further increase its efforts to prevent the sexual exploitation of children and to prosecute the authors of such acts", - "values": [ - "4 - General action" - ] - }, - { - "text": "Strengthen its efforts to include women in decision-making processes and high level positions, and to ensure the inclusion of disabled persons in education and employment", - "values": [ - "4 - General action" - ] - }, - { - "text": "Increase its efforts in ensuring full compliance of its domestic legislation with the Convention on the Rights of the Child, including by introducing a legal minimum age for criminal accountability", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Strengthen efforts to reduce poverty, malnutrition and illiteracy ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Consider acceding to ICRMW", - "values": [ - "3 - Considering action" - ] - }, - { - "text": "Design and implement a sexual and reproductive health program for adolescents", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Ratify the International Convention for the Protection of All Persons from Enforced Disappearances (CPED) ", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Adopt the necessary measures in the legislative sphere as well as policy measures and allocation of resources to incorporate and effectively implement the Convention on the Elimination of All Forms of Discrimination against Women in its domestic law ", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "End all forms of corporal punishment of children in all settings, including in the home and in schools, by enforcing its prohibition, as previously recommended", - "values": [ - "4 - General action" - ] - }, - { - "text": "Establish an effective and inclusive process to follow up on UPR recommendations", - "values": [ - "4 - General action" - ] - }, - { - "text": "Consider issuing a standing invitation to all special procedures mandate-holders ", - "values": [ - "3 - Considering action" - ] - }, - { - "text": "Take concrete measures to promote and protect the rights of women and children, in particular to facilitate their access to education and health as basic prerequisites for growth and development.", - "values": [ - "4 - General action" - ] - }, - { - "text": "Ghana is furthermore committed to ensuring that businesses in the mining sector as well as in the other sectors of the economy give due regard to human rights issues in their operations. Ghana welcomes the Guiding Principles on Business and Human Rights for implementing the United Nations Protect, Respect and Remedy Framework as it will help the country address protection gaps in respect of business-related human rights abuses ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Address the concerns of UNICEF that discrimination persists in the law relating to marriage as regards the minimum legal age of marriage, which is 15 for girls and 16 for boys, these ages are too low in both cases, according to UNICEF ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Condemn discrimination based on ethnic origin and language in employment and take active measures to prosecute such cases", - "values": [ - "4 - General action" - ] - }, - { - "text": "Continue its positive approach in combating poverty through providing the necessary public investment in rural infrastructure and its national employment policy to reduce unemployment", - "values": [ - "4 - General action" - ] - }, - { - "text": "Strengthen measures to reinvigorate the national economy, including allowing more people-to-people contact through engagement in economic and commercial activities, including tourism", - "values": [ - "4 - General action" - ] - }, - { - "text": "Repeal criminal sanctions against sexual activity between consenting adults ", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Open impartial and independent investigations into claims of torture and ill-treatment and bring perpetrators to justice", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Fully respect the social and economic rights of all, including internally displaced persons, in line with its obligations under the ICESCR by following through on its commitments under the programme of the State Committee on Refugees and Internally Displaced Persons", - "values": [ - "4 - General action" - ] - }, - { - "text": "Remove any reference to the death penalty from the penal code.", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Pursue the reforms engaged for the protection of children and gender equality ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Include in its national legislation the concept of torture as defined in article 1 of the Convention against Torture, and to enact legislation to abolish all types of corporal punishment and other forms of cruel, inhumane or degrading treatment", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Continue its efforts aimed at improving the access of vulnerable populations and groups to the justice system ", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Decriminalize defamation ", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Extend a standing invitation to all thematic Special Procedures ", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Ensure an environment where freedom of expression is respected and amend national laws to strengthen this right ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Establish legislative and institutional guarantees to ensure that the popular initiatives are compatible with the obligations under international human rights law", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Implement an awareness and education campaign, in cooperation with community and religious leaders, aimed at ending the practice of female genital mutilation and other forms of violence against women ", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Review periodically its reservations to the ICCPR, as recommended by the Human Rights Committee in its general comment 24 ", - "values": [ - "3 - Considering action" - ] - }, - { - "text": "Continue its efforts to strengthen the judiciary in the field of human rights and improve access to justice as a priority of its national policy", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Intensify efforts, including by seeking technical assistance wherever required, to meet its human rights targets", - "values": [ - "4 - General action" - ] - }, - { - "text": "Consider establishing an independent national human rights institution in accordance with the Paris Principles", - "values": [ - "3 - Considering action" - ] - }, - { - "text": "Continue its work towards the eradication of acts of racism and other forms of discrimination and intolerance", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Surrender Saif al-Islam Qadhafi to face charges against humanity in accordance with the Court's Appeals Chamber decision of May 2014 ", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Designate a central high-level agency responsible for implementing the National Action Plan on Gender-based Violence and ensure adequate budget is allocated to seriously tackle widespread and intergenerational rates of child abuse and violence against women", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Put into place specific legislation to prevent, investigate and punish violence against women", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Continue devoting significant resources in education, with particular consideration to human rights", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Adopt a law on the rights and the status of national minorities, sign the European Charter for Regional or Minority Languages, as well as ratify Protocol no. 12 of the European Convention for the Protection of Human Rights and Fundamental Freedoms ", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Zambia will remain committed to protecting the rights of all citizens without any form of discrimination", - "values": [ - "4 - General action" - ] - }, - { - "text": "The delegation reaffirmed Brunei Darussalam's commitment to its international obligations and indicated that Brunei Darussalam would be ratifying the Convention on the Rights of Persons with Disabilities (CRPD) in the near future. ", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Continue appropriate institutional work to build the rule of law and consolidate good governance, taking into account the promotion of the principles of human rights and fundamental freedoms in the country", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Continue undertaking measures aimed at ensuring the inclusion of Roma representatives in public and political life, as well as implementing the National Action Plan for Roma (2016-2020)", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Fully align its national legislation with the Rome Statute, through the incorporation of provisions to fully and promptly cooperate with the International Criminal Court ", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Develop a policy for the use of Creole at all levels of primary education, and to incorporate human rights in the education curricula", - "values": [ - "4 - General action" - ] - }, - { - "text": "Strive to deliver basic services to the local population, protect freedom of expression and raise awareness of gender-based violence ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Ensure full respect for the rights of migrants, including through the strengthening of measures against acts of racial discrimination, xenophobia and intolerance ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Ensure that all cases of gender-based violence are properly investigated, the perpetrators are brought to justice and that its victims have better access to justice, health and social services and State support", - "values": [ - "4 - General action" - ] - }, - { - "text": "Take further steps to fully implement a National Action Plan for better integration and protection of the rights of immigrant minorities ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Take actions aimed at putting an end to discrimination based on sexual orientation, beginning by eliminating the criminalization of consensual sexual relationships between adults of the same gender", - "values": [ - "4 - General action" - ] - }, - { - "text": "Create a more favourable environment for a stronger civil society in the country, including guaranteeing the full legitimacy for human rights defenders to spare them from the harassment they had to face so far and establish closer links with international human rights non-governmental organizations", - "values": [ - "4 - General action" - ] - }, - { - "text": "Exert more efforts to provide care to victims of sexual violence in collaboration and assistance with its partners and the international community ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Include sexual orientation and gender identity in non-discrimination laws and programmes, and promote tolerance and non-discrimination regarding sexual orientation or identity, in line with the Yogyakarta principles ", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Continue to strengthen measures aimed at poverty eradication, facilitation of access to medical care and services, and education and housing, especially for the rural poor. ", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Lift the obstacles to employ Palestinian refugees, give access to employment to the Palestinian refugees, give access to free education to all children of refugees and enable universal health care", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Sign and ratify CAT, ICCPR, CED and CRPD", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Adopt integrated legislation consistent with its international obligations, that addresses the issue of discrimination and ensures the full integration of vulnerable groups, in particular immigrants and persons belonging to linguistic minorities in all spheres", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Ratify the Optional Protocol to the Convention against Torture and Other Cruel, Inhuman or Degrading Treatment or Punishment and align its national laws with international standards regarding the prohibition of torture", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Adopt necessary and effective measures to eradicate child labor in the framework of social and poverty reduction programmes", - "values": [ - "4 - General action" - ] - }, - { - "text": "Continue to take measures to combat hate crimes", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Ensure the entry into force of the Act on the Comprehensive Protection of Persons with Disabilities ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Continue strengthening its inclusive and accurate education policy", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Continue with the policy of universal coverage of education to reach the rural areas ", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Amend article 140 of the Constitution", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Continue its work on the promotion and protection of human rights and strengthening the environment within which civil society operates and will specifically consider amending its Law on National Associations (promulgated by Royal Decree 14/2000) whenever necessary.", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Effectively abolish the death penalty and that a moratorium be immediately decreed with respect to all executions.", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Undertake a comprehensive investigation into the so-called prison flights in which the Central Intelligence Agency of the United States of America landed aircraft at Danish airports with arbitrarily detained persons on board during its special operations", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Continue efforts to ensure that persons with disabilities can find employment and to provide them with medical assistance in rural areas", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Conceive measures to address the phenomenon of the reported increase in labour exploitation, such as by alerting migrant workers, informing migrant workers about their legal rights, and give training to professionals in contact with potential victims ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Ensure the full independence and impartiality of the judiciary, in conformity with international standards ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Continue its efforts to prevent and combat trafficking in persons and child labour", - "values": [ - "4 - General action" - ] - }, - { - "text": "Ensure sufficient resources enabling the Ombudsman to carry out its mandate effectively and independently", - "values": [ - "4 - General action" - ] - }, - { - "text": "Hold all those responsible for violations and abuses of international law, including human rights law and international humanitarian law, accountable in accordance with international standards", - "values": [ - "4 - General action" - ] - }, - { - "text": "Ensure that primary education is free and of quality and contains special programmes for the local population, including Pygmies", - "values": [ - "4 - General action" - ] - }, - { - "text": "Ratify the Optional Protocol to the Convention on the Rights of Persons with Disabilities by the end of 2017, consistent with the National Action Plan to Promote Equal Opportunities for Persons with Disabilities", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Release as soon as possible all individuals, including human rights defenders, having been imprisoned solely due to the exercise of their fundamental rights of expression and assembly", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Enhance the support for the Office of the Ombudsman and strengthen the Commission for Protection against Discrimination to ensure that both institutions fulfil their duties effectively and independently", - "values": [ - "4 - General action" - ] - }, - { - "text": "Accelerate the discussions regarding the bill to make basic education compulsory and free, currently under consideration", - "values": [ - "4 - General action" - ] - }, - { - "text": "Sign, ratify or accede to the Optional Protocol to the Convention against Torture and Other Cruel, Inhuman or Degrading Treatment or Punishment", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Provide sufficient protection for victims of domestic violence and ensure proper monitoring of the rehabilitation of persons convicted ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Requested that Morocco's needs in respect to technical cooperation, as included in paragraph 49 above and paragraphs 144-152 of the national report, be addressed. ", - "values": [ - "1 - Minimal action" - ] - }, - { - "text": "Put in place a national human rights institution which is in full compliance with the Paris Principles", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Intensify the ongoing awareness-raising measures with the aim of protecting and promoting the rights of migrant workers ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Continue to strengthen its cooperation with the special procedures of the Human Rights Council by responding positively to the pending visit requests", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Continue efforts to prohibit the use of child labour", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Take concrete and immediate measures to guarantee the independence and the impartiality of the judiciary", - "values": [ - "4 - General action" - ] - }, - { - "text": "Repeal or amend all domestic legislation which is in breach of international human rights law ", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Redouble efforts to increase the representation of women in decision-making positions and reduce the wage inequality gap between men and women", - "values": [ - "4 - General action" - ] - }, - { - "text": "Continue to address the problem of discrimination and hate speech, particularly through adequate allocation of resources on this issue through education and awareness programmes in schools", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Improve access to justice of the victims of domestic violence ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Guarantee freedom of opinion, expression and belief and refrain from preventing Syrian pilgrims from practicing their religious duties as it constitutes a flagrant violation of freedom of belief and religion as one of the basic freedoms", - "values": [ - "4 - General action" - ] - }, - { - "text": "Strengthen the criminal justice system to ensure easy and fair accessibility to all citizens ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Further enhance the status of women, fight against violence against women, and eliminate harmful practices against women at an early date ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Ensure bringing into force the Omani Law of the Child in pursuit of its national strategy on children and in line with its CRC obligations.", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Combat the sale and trafficking in children more effectively and strengthen partnerships with all stakeholders in order to provide child victims with recovery and social reintegration services and programmes ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Continue efforts to prevent various forms of discrimination, including discrimination based on ethnic origin", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Reinforce measures addressing violence against women, in particular the domestic violence, ensuring due accountability for perpetrators and increasing victims' access to justice ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Complete the process already started by Iraq, of accession and ratification of international conventions and treaties, in particular the Convention on the Rights of Persons with Disabilities", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Continue to pursue the reduction of the gender pay gap ", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Uphold the right to freedom of expression and assembly ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Take the necessary measures to ensure that all the persons born in Burundi obtain a birth certificate regardless the status of their parents ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Develop and implement the national anti-violence action plan at the earliest possible date", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Ratify the International Convention for the Protection of All Persons from Enforced Disappearance, the Optional Protocol to the International Covenant on Economic, Social and Cultural Rights and the Statute of the International Criminal Court ", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Amend the existing Child Labour Act to include child labour in the informal sector within the purview of the law", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Promote the rights of persons with disabilities", - "values": [ - "4 - General action" - ] - }, - { - "text": "Monitor the incidence of and combat xenophobia, and promote intercultural understanding and tolerance ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Step up its ongoing efforts in the field of the freedom of expression and assembly", - "values": [ - "4 - General action" - ] - }, - { - "text": "Establish a National Mechanism for the Prevention of Torture", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Proposed constitutional reform should provide for the comprehensive protection and promotion of all human rights and fundamental freedoms ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Specifically abolish the death penalty and ratify the Second Optional Protocol to the International Covenant on Civil and Political Rights, aiming at the abolition of the death penalty", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Devise a national strategy for the reinsertion of former detainees and to prevent recidivism", - "values": [ - "4 - General action" - ] - }, - { - "text": "Adopt effective measures to prevent torture and other forms of ill treatment and to limit the period of time for which people can be held in police custody or pre-trial detention", - "values": [ - "4 - General action" - ] - }, - { - "text": "Sign and ratify the Optional Protocol to the Convention on the Rights of the Child on the involvement of children in armed conflict", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Reconsider all its policies in relation to refugees and asylum seekers so that they are not deprived from their fundamental and social rights, in particular to ensure that children and unaccompanied minors are not detained or placed in adult detention centres", - "values": [ - "3 - Considering action" - ] - }, - { - "text": "Undertake an awareness-raising campaign regarding domestic violence", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Continue working to ensure that the National Human Rights Institution gains \u201cA\u201c status in compliance with the Paris Principles", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Continue its efforts to support children with special needs, namely, children with visual impairment, children with hearing impairment and those with learning difficulties", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "The delegation reaffirmed Burundi's commitment to eradicate all human rights violations.", - "values": [ - "4 - General action" - ] - }, - { - "text": "Continue its protection measures in response to infringements of human rights of other persons, such as defamation and invasion of privacy committed through the internet", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Allow for a more open expression of individual opinions, allow civil society organisations to develop and allow public expression of popular demands", - "values": [ - "4 - General action" - ] - }, - { - "text": "Promptly ratify the International Covenant on Civil and Political Rights", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Continue strengthening its education programmes and continue promoting the sound social policies that ensure the provision of health, food and social protection goods and services for the benefit of its people", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Provide teaching of the mother-tongue to migrant children more effectively, with improved cooperation with the Suisse communal authorities", - "values": [ - "4 - General action" - ] - }, - { - "text": "Implement, with the assistance of the international cooperation, a complaints system to guarantee the effective access of women to justice, in accordance with the provisions of the Convention on the Elimination of All Forms of Discrimination against Women ", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Raise the minimum age of marriage of 18", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Review the way National Human Rights Commission members are appointed to ensure its independence", - "values": [ - "3 - Considering action" - ] - }, - { - "text": "Extend a standing invitation to all special procedures of the Human Rights Council ", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Push forward for the elimination of discriminatory provisions affecting lesbian, gay, bisexual, transgender and intersex persons", - "values": [ - "4 - General action" - ] - }, - { - "text": "Lebanon was pleased to announce that it had accepted to extend a standing invitation to all Special Procedures mandate holders to visit the country, and that preparation of overdue reports to treaty bodies, including CAT, was under way.", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Adopt appropriate legislation on trafficking in human beings, prohibit the use, procuring or offering of children for prostitution and ensure that children under the age of 14 are not engaged in child labour ", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Continue presenting initiatives aimed at promoting and protecting economic, social and cultural human rights ", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Adopt a comprehensive national human rights plan of action", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Further continue the implementation of human rights education towards women and children's rights", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Accept the visits of Special Procedures of the Council which have been requested to date ", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Continue the elaboration of the National Disability Policy and ensure effective implementation in line with the Convention on the Rights of Persons with Disabilities, and accede to the Optional Protocol to the Convention", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Continue its efforts to abolish the death penalty", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Establish dialogues to engage in cooperation that will allow for the application of best practices and plans to reduce unemployment, underemployment and informal work, and strengthen the policies for the generation of employment and youth employment", - "values": [ - "4 - General action" - ] - }, - { - "text": "Put an end to trafficking in persons, particularly for purposes of sexual exploitation or child labour", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Ensure comprehensive human rights training for teachers with a view to preventing any excessive use of force", - "values": [ - "4 - General action" - ] - }, - { - "text": "Take concrete steps with a view to ensuring the implementation of the strategy for gender and the national plan for persons with disabilities", - "values": [ - "4 - General action" - ] - }, - { - "text": "Implement a national strategy against corruption in order to fight against its effects that impair the enjoyment of human rights", - "values": [ - "4 - General action" - ] - }, - { - "text": "Continue its work on strengthening human rights in all areas in terms of programmes and policies and ensure human rights education's inclusion in school programmes throughout the country ", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Enhance the protection of journalists while guaranteeing their independence", - "values": [ - "4 - General action" - ] - }, - { - "text": "Continue efforts to promote rights of vulnerable groups.", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Eliminate all forms of discrimination, particularly against children in vulnerable situations", - "values": [ - "4 - General action" - ] - }, - { - "text": "Ratify the Convention relating to the Status of Refugees and its Protocol and, pending this, formalize the cooperation with the Office of the United Nations High Commissioner forRefugees in order to facilitate effective protection of the human rights of refugees and asylum seekers in Libya", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Ensure to LGBTI persons the full enjoyment and equal treatment of their human rights by derogating norms that criminalize and stigmatize them", - "values": [ - "4 - General action" - ] - }, - { - "text": "Strengthen legislation regarding domestic violence and to take measures to ensure access of migrants to services including access to the justice system.", - "values": [ - "4 - General action" - ] - }, - { - "text": "Invest in the necessary infrastructure so that all citizens have access to adequate drinking water and sanitation, especially in rural areas ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Continue to strengthen efforts to eliminate human trafficking, in accordance with the national plan of action", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Continue with the commendable efforts to strengthen the legal and institutional framework for the promotion and protection of human rights and to reduce poverty and promote social equality", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Establish technical assistance programmes to train civil servants in a pragmatic human rights focused approach", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Adopt domestic legislation on refugees in accordance with international standards in this area, providing for due process of law and legal assistance for refugees ", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Bring civil law and customary law into conformity with the Convention on the Elimination of All Forms of Discrimination against Women, and to implement measures to put an end to polygamy", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Continue to promote dialogue with all States, on the basis of mutual respect, sovereign equality, self-determination and the right to choose their own political, economic and social system", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Speed up its efforts to establish a NHRI in accordance with the Paris Principles and provide sufficient resources for it to be effective ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Continue with the legal and legislative reforms at the national level to strengthen and protect human rights in accordance with international standards and in harmony with the cultural values of the people of the United Arab Emirates", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Withdraw all remaining reservations to CRC and CEDAW ", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Share experience with states within the region and benefit from their experiences in combating female genital mutilation ", - "values": [ - "1 - Minimal action" - ] - }, - { - "text": "Make every effort to uphold its clear obligations under international and African human rights treaties to respect the right to life and freedoms of expression and assembly ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Fight efficiently against rape and domestic violence", - "values": [ - "4 - General action" - ] - }, - { - "text": "Ratify the ILO Indigenous and Tribal Peoples Convention, 1989 (No. 169) and ILO Convention No. 189 ", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Adopt effective measures to combat violence against women in all its forms and allocate human and financial resources for the implementation of such measures, in particular regarding the protection of victims ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Increase awareness-raising programmes and campaigns to promote tolerance and respect for cultural diversity in schools as well as in society ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Continue its efforts to strengthen the judicial system and consolidate its independence", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Take appropriate measures to prevent the use of excessive force by security forces when forcibly repatriating migrants, refugees and asylum-seekers.", - "values": [ - "4 - General action" - ] - }, - { - "text": "Step up the efforts to combat discrimination against women at all levels, including by reinforcing the institutional mechanisms and establishing planning instruments for ensuring equality ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Adopt a law on equal rights and equal opportunities to protect the endangered elements of society, namely children, women and people with disabilities.", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Abolish the death penalty and, as interim steps, reduce the number of crimes for which the death penalty can be imposed and publish figures on executions", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Take further steps to bring legislation into line with international human rights norms and standards ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Ensure the security of migrants in conformity with international conventions", - "values": [ - "4 - General action" - ] - }, - { - "text": "Work to ensure that its legislation conforms with international human rights laws, and seek the assistance of the international community where necessary ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Strengthen the role of the Ombudsman, in particular its powers of investigation in cases involving politicians ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Take effective measures to put an end to gross human rights abuses including violence against women, committed for decades by the United States military personnel stationed in foreign bases ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Remain constructively engaged with the international community on the issue of lifting sanctions ", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Strengthen its legislation, notably its criminal legislation, relating to the punishment of racist acts and take concrete and effective measures with a view to combat all forms of discrimination and to prohibit as well as sanction in a more severe manner such behaviours", - "values": [ - "4 - General action" - ] - }, - { - "text": "Take the necessary legislative, administrative and financial measures to ensure the independence of the judiciary, including ending administrative and financial control by the executive and ensuring that the Higher Council of the Judiciary is not under the authority of the executive ", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Take all necessary measures to prevent and prosecute hate crimes, especially all forms of violence and harassment related to sexual orientation and gender identity", - "values": [ - "4 - General action" - ] - }, - { - "text": "Ensure real equality of opportunities for women in the labour market, and consolidate the principle of equal pay for equal work", - "values": [ - "4 - General action" - ] - }, - { - "text": "Tirelessly pursue the reconstruction of this vast and beautiful country without neglecting its human and economic potential", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Guarantee the effective exercise of freedom of expression, assembly and association, by reforming its legislation, notably so as not to hamper the legitimate work of non-governmental organizations and human rights defenders", - "values": [ - "4 - General action" - ] - }, - { - "text": "Take all necessary measures to abolish corporal punishment for children at all institutions, including alternative care settings", - "values": [ - "4 - General action" - ] - }, - { - "text": "Take appropriate measures to ensure equal protection for all victims of human trafficking for sexual exploitation under the age of eighteen years ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Develop and strengthen appropriate legislative measures to address the issue of sexual abuse and exploitation, ensure prompt prosecution of perpetrators, guarantee that no person under the age of 14 is admitted to employment or work, amend the Constitution to raise the minimum age for engaging in hazardous work to 18 years, and enact and implement legislation to ensure the complete prohibition of corporal punishment ", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Take measures to eradicate traditional stereotypes of women, especially through educational programmes that promote gender equality and women's rights", - "values": [ - "4 - General action" - ] - }, - { - "text": "Continue its efforts in improving its health-care system especially access for maternal, paediatric and family health services", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Repeal legislation that causes Malawian women to lose their citizenship when marrying a foreign national ", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Fully align the national legislation with all obligations under the Rome Statute of the International Criminal Court ", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Reinforce the relevant legislative provisions to reduce child labour and to punish those who contravene them", - "values": [ - "4 - General action" - ] - }, - { - "text": "Rescind impediments to freedom of expression, association and peaceful assembly", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Implement a regularization process, in accordance with its international obligations, to prevent the arbitrary deprivation of nationality, avoid deportations of populations affected by the Tribunal's ruling, and ensure a non-discriminatory process for the acquisition of nationality by individuals born in the Dominican Republic and their descendants for whom documentation is not accessible", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Ensure accountability for cases of extrajudicial killings and ethnic rape as weapons of war ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Pay attention to cases of violence and discrimination based upon sexual orientation, in particular against LGBT persons, both in law and in practice", - "values": [ - "4 - General action" - ] - }, - { - "text": "Take legal and administrative measures to guarantee the principle of non-refoulement and the adequate and fair treatment for those requesting international protection", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Strengthen its legal and institutional framework by ratifying CAT and its Optional Protocol, CPED and the Rome Statute ", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Continue its efforts towards reforming the security sector institutions, with the support of OHCHR and the international community.", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Ensure the constitutional guarantees of equality before the law ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Ensure that information on the implementation of human rights conventions in the overseas territories be consistently included in reports to treaty bodies.", - "values": [ - "4 - General action" - ] - }, - { - "text": "Amend the relevant laws so that all persons with disabilities could vote and stand for election", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Further improve the human rights situation of women and girls ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Take steps toward accession to the International Convention on the Protection of the Rights of All Migrant Workers and Members of Their Families", - "values": [ - "4 - General action" - ] - }, - { - "text": "Consider the creation of an Ombudsman for children's rights in order to further enhance the status of children", - "values": [ - "3 - Considering action" - ] - }, - { - "text": "Consider ratifying the International Convention for the Protection of All Persons from Enforced Disappearance", - "values": [ - "3 - Considering action" - ] - }, - { - "text": "Carry out public campaigns explaining the arguments for the abolition of the death penalty with the aim of ratifying the Second Optional Protocol to the International Covenant on Civil and Political Rights, aiming at the abolition of the death penalty", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Continue to engage constructively with partners and with the international community to safeguard the human rights of migrant workers, particularly to life, liberty, security of person and just and favourable conditions of work ", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Extend a standing invitation to all special procedures and accept all the visits of Special Rapporteurs", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Continue with the efforts in the realization of the national plan to bring the penal system in conformity with the international standards", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Further improve efforts to combat violence against minorities and to combat Islamophobia and xenophobia", - "values": [ - "4 - General action" - ] - }, - { - "text": "Continue to positively consider the accession to the International Covenant on Civil and Political Rights (1966)", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Request the international community to provide assistance", - "values": [ - "1 - Minimal action" - ] - }, - { - "text": "Ratify CEDAW and revise relevant legislation in accordance with international standards to provide an efficient legislation for the best interests of women ", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Maintain an open and standing invitation to the United Nations human rights mechanisms, particularly the Special Rapporteur against torture, and speed up its submissions of pending reports to treaty bodies", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Undertake further efforts in order to raise awareness among religious leaders and traditional dignitaries and involve them in the dissemination of a culture of human rights and in combating harmful traditional practices", - "values": [ - "4 - General action" - ] - }, - { - "text": "Continue the policy of inclusive education, especially in rural areas", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Issue a standing invitation to the Human Rights Council special procedures mandate holders ", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Amend the Criminal Code to criminalize all forms of sexual abuse to children", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Take further measures to end the use of torture and other forms of inhuman and degrading treatment, and ensure that allegations of torture, ill-treatment or excessive use of force by police and security forces are investigated, prosecuted and convicted in line with international standards", - "values": [ - "4 - General action" - ] - }, - { - "text": "Adopt a specific policy to prevent and combat the increase in racist hate speech and crimes motivated by racial prejudice, the summary, extrajudicial or arbitrary executions to which the population in the midst of the armed conflicts is exposed, and sexual offences in the country", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Continue taking necessary measures to promote the rights of children and women ", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Take measures to combat violence against women and children and to ensure effective complaint mechanisms for victims", - "values": [ - "4 - General action" - ] - }, - { - "text": "Continue the work on inter-family violence and the implementation of public policies for rural women", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Implement the Egyptian strategy to combat violence against women", - "values": [ - "4 - General action" - ] - }, - { - "text": "Intensify its efforts to combat trafficking in persons and eliminate violence against persons ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Strengthen protection measures against child labour", - "values": [ - "4 - General action" - ] - }, - { - "text": "Take more effective measures to combat racial discrimination and intolerance, including by collecting and publishing official statistics about incidents on racially motivated crimes and promptly investigating and taking stern action against the perpetrators of hatred, racist and xenophobic acts ", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Accept the requested visits from the Working Group on Arbitrary Detention and the Special Rapporteur on torture and other cruel, inhuman or degrading treatment or punishment ", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Adopt immediately all measures aimed at preventing discrimination and prosecution on ethnic or religious grounds", - "values": [ - "4 - General action" - ] - }, - { - "text": "Take measures to ensure an effective and impartial judicial system, in conformity with ICCPR is guaranteed", - "values": [ - "4 - General action" - ] - }, - { - "text": "Include an explicit provision in the Omani domestic legislation on prohibition of discrimination against women in all areas of life, including in the private sphere", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Bring the legislation into conformity with the country's commitment to equality and non-discrimination and its international human rights obligations, by repealing all provisions which may be applied to criminalize sexual activity between consenting adults ", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Accede to the International Convention for the Protection of the Rights of All Migrant Workers and Members of Their Families (ICMW), as an essential step in the protection of human rights ", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Continue efforts to implement the comprehensive national strategy against human trafficking adopted under Act No. 621 of 2016", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Continue working to achieve all the Millennium Development Goals", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Ratify or accede to, as appropriate, to the Optional Protocol to the Convention against Torture and the International Convention for the Protection of All Persons from Enforced Disappearance", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Explicitly prohibit all corporal punishment of children in all settings, including at home and in schools, in the context of adopting the new Children's Code, and promote alternative forms of discipline", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Continue progress in the implementation of the mandatory and free-of-cost year of primary school", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Continue to implement measures to reduce maternal mortality", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Continue to strengthen its successful educational policy, with a view to achieving full school inclusion for all sectors of the country and, in this way, advance towards achieving the greatest social welfare of its people ", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Consider ratifying the International Convention for the Protection of All Persons from Enforced Disappearance and also accepting the competence of the relevant committee", - "values": [ - "3 - Considering action" - ] - }, - { - "text": "Reinforce its legal measures on strengthening political parties and electoral system ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Ensure as priority the protection of civilians by adopting appropriate measures to guarantee the respect for international humanitarian law ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Provide reassurance that any proposed British Bill of Rights would complement rather than replace the incorporation of the European Convention on Human Rights in Northern Ireland law and acknowledging this is a primary matter for the Northern Ireland Executive and Assembly - that a Bill of Rights for Northern Ireland to reflect the particular circumstances of Northern Ireland should be pursued to provide continuity, clarity and consensus on the legal framework for human rights there", - "values": [ - "4 - General action" - ] - }, - { - "text": "Intensify public education campaigns to counter structural racism, racial discrimination, xenophobia and other forms of intolerance and punish perpetrators of racist acts, taking into account the fact that Costa Rica is a State party to the Convention on the Prevention and Punishment of the Crime of Genocide and the Rome Statute ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Favourably consider alternative sentences for juvenile offenders, and immediately halt executions of all juvenile offenders on death row", - "values": [ - "3 - Considering action" - ] - }, - { - "text": "Continue its policies aimed at diversifying its economy, placing particular emphasis on agriculture, fisheries and manufacturing", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Immediately close concentration camps for political prisoners (kwanli-so) and release all political prisoners", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Publish a list of all those killed in 1996 at Abu Selim prison, and provide their families with death certificates stating the place, date and exact circumstances of death ", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Continue to ensure that no individuals are exposed to the danger of torture or cruel, inhuman or degrading treatment or punishment when extraditing or deporting illegal migrants ", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Continue taking the necessary steps to set up a national human rights institution in line with the Paris Principles", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Further enhance the legislation and legal system, with more considerations to the harmonization of domestic developments and the international stipulations on human rights, including those of the International Covenants on Civil and Political Rights and on Economic, Cultural and Social Rights ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Review the judicial system in order to ensure that the provisions of civil law, Islamic law and customary law conform to the provisions of CEDAW ", - "values": [ - "3 - Considering action" - ] - }, - { - "text": "Take measures to safeguard the right to an adequate standard of living, including by expediting the return of Croatian Serbs to their homes and by upholding commitments under the regional housing programme", - "values": [ - "4 - General action" - ] - }, - { - "text": "Ratify ICCPR, ICESCR, CEDAW and CAT.", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Complete the domestic process in order to ratify the International Convention on the Protection of All Persons from Enforced Disappearance as soon as possible.", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Bring to justice the perpetrators of the slaughter of September 2009 and establish a witness protection mechanism for special cases", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Continue the efforts to tackle unemployment in urban areas ", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Train public servants in the human rights responsibilities and obligations of Governing structures", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Implement the 2011 EU Observation Mission recommendations concerning the equal political participation such as to provide assistance to IDPs or to prosecute people involved in election violence", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Adopt a plan to reduce maternal mortality and to equally decriminalize abortion in cases of incest or rape ", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Institute mechanisms for the effective guarantee of the human rights of all its citizens, including awareness-raising activities ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Step up efforts leading to the ratification of the International Convention for the Protection of All Persons from Enforced Disappearance, the Rome Statute of the International Criminal Court, the Optional Protocol to the Convention against Torture, and the Optional Protocol to the Convention on the Elimination of All Forms of Discrimination against Women", - "values": [ - "4 - General action" - ] - }, - { - "text": "Take additional measures, if not already taken, to reduce the time frame for the process of improving conditions in places of detention.", - "values": [ - "4 - General action" - ] - }, - { - "text": "Continue with its efforts to cooperate fully with special procedures mandate-holders that have requested access to the country to observe the situation of human rights and implement their recommendations ", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Consider revising legislation with a view to abolishing the death penalty", - "values": [ - "3 - Considering action" - ] - }, - { - "text": "Eliminate all forms of discrimination against persons of African descent", - "values": [ - "4 - General action" - ] - }, - { - "text": "Speed up the process to amend the law aiming at improving the functioning of the National Human Rights Commission in accordance with the Paris Principles", - "values": [ - "4 - General action" - ] - }, - { - "text": "End arbitrary detention, torture and ill-treatment, including violence committed by the police and the armed forces, fight effectively against the impunity of the perpetrators of such acts", - "values": [ - "4 - General action" - ] - }, - { - "text": "Share its expertise in the field of strengthening the judicial system with other countries and continue to train judges to implement international conventions in their judgements", - "values": [ - "1 - Minimal action" - ] - }, - { - "text": "Ensure the functioning of the Gender Equality and Equal Treatment Commissioner by providing sufficient resources for this institution", - "values": [ - "4 - General action" - ] - }, - { - "text": "Strengthen measures to address teenage pregnancy, promoting access to reproductive health services including sexual and reproductive health education, as well as counselling services and health care adapted to young people ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Foster equal and unconditional access for all inhabitants of the country to health care and education ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Take appropriate measure to ensure that the basic civil and political rights of Roma are being assured and that birth registration is available and accessible for all children without discrimination ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Continue to strengthen its relationship with indigenous peoples ", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Promote and guarantee freedom of expression in compliance with international standards, as recommended previously", - "values": [ - "4 - General action" - ] - }, - { - "text": "Continue its efforts towards the ratification of ICPPED", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Reinforce its legal framework by adhering to the 1951 Convention relating to the Status of Refugees and its 1967 Protocol ", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Continue to take measures towards ratification of the ICCPR", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Review its national legislation to eliminate any discrimination against women.", - "values": [ - "3 - Considering action" - ] - }, - { - "text": "Fight against human trafficking, especially in women and children ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Increase employment in the context of the next Poverty Reduction Programme (PARP) ", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Ensure proper registration of all boys and girls born in China in order to protect their rights to legal personality and equality before the law", - "values": [ - "4 - General action" - ] - }, - { - "text": "Take efforts toward the accession of international human rights instruments, including the International Convention on the Protection of the Rights of All Migrant Workers and Members of Their Families and the Convention against Torture", - "values": [ - "4 - General action" - ] - }, - { - "text": "Complete the review of the Children and Adolescents Code, and develop the law prohibiting corporal punishment and humiliating treatment towards boys, girls and adolescents", - "values": [ - "4 - General action" - ] - }, - { - "text": "Ensure that adequate resources are allocated for the effective implementation of its comprehensive national human rights action plans ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Continue to find effective measures to address concerns expressed by a number of treaty bodies, including the CRC, CEDAW and ILO Committee of Experts, regarding trafficking and exploitation of women and children for commercial purposes", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Increase the age of criminal responsibility ", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Establish an independent national human rights institution in accordance with Paris Principles ", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Bring its legislation into line with the international standards related to the prosecution of war crimes of sexual violence", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Continue its active engagement with the human rights mechanisms of UN for the protection and promotion of human rights ", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Become party to ICRMW ", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Strengthen protection of the freedom of expression by allowing discourse and greater access to information, both online and offline, and ensure the penal code and anti-terror laws are consistent with international obligations", - "values": [ - "4 - General action" - ] - }, - { - "text": "Take the necessary steps to ensure that all operations of intelligence agencies are monitored by an independent oversight mechanism", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Ensure that International Criminal Court arrest warrants are executed regardless of rank - the Rome Statute is enacted into domestic law - demobilization and reintegration are accelerated - and the Security Council's recommendations on military officer screening and transitional justice are implemented", - "values": [ - "4 - General action" - ] - }, - { - "text": "Share its experiences with other countries with regard to its system in helping especially sexually abused or exploited children and adolescents, the so-called Barnahus", - "values": [ - "1 - Minimal action" - ] - }, - { - "text": "Make the Law against Domestic Violence widely known to public officials and society and monitor its effectiveness ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Adopt and implement appropriate measures to combat sexual abuse of minors ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Take appropriate steps to prohibit and combat child labour and the worst forms of exploitation of children", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Take the necessary measures to open the office of the Federal Ethics and Anti-Corruption Commission in the remaining two national regional states ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Eliminate legal provisions which criminalize sodomy and other sexual activities between consenting adults ", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Share its experiences in the realization of the cultural rights of the people, including through diversified cultural initiatives and activities", - "values": [ - "1 - Minimal action" - ] - }, - { - "text": "Intensify the cooperation with the international human rights bodies, including through country visits and the provision of assistance to Fiji", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Continue carrying out its efforts to achieve gender equality and tackle discrimination against women in law and practice ", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Take further legislative and policy measures to discontinue the institutionalization of children under 3 years of age", - "values": [ - "4 - General action" - ] - }, - { - "text": "Ratify early the important international human rights treaties, in particular the International Convention for the Protection of All Persons from Enforced Disappearance", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Redouble the efforts to eradicate poverty and unemployment", - "values": [ - "4 - General action" - ] - }, - { - "text": "Refrain from institutionalizing children with disabilities, and ensure sufficient alternative family- and community-based care options for children with disabilities", - "values": [ - "4 - General action" - ] - }, - { - "text": "Strengthen measures to ensure the investigation and sanctioning of all politically motivated acts of violence that have occurred in the country in recent years", - "values": [ - "4 - General action" - ] - }, - { - "text": "Continue its efforts to bring the NHRI in line with the Paris Principles", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Pursue ongoing judicial reforms ", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Take steps to improve the conditions in the closed centres for aliens ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Amend the Constitution so as to define and explicitly prohibit discrimination", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Actively consider ratifying CRPD ", - "values": [ - "3 - Considering action" - ] - }, - { - "text": "Apply all the necessary measures to continue strengthening the federal public defender and the provincial defenders in order to guarantee the effectiveness of their functions in all regions of the country", - "values": [ - "4 - General action" - ] - }, - { - "text": "Ratify the CPED, OP-CAT and the Rome Statue of the ICC ", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Develop programmes of compensation and reintegration for victims of terrorism", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Intensify its efforts to eradicate poverty, to improve its health infrastructure, including access to health services especially for vulnerable groups like women, children, the elderly, the disabled and ethnic minorities, and in fostering civil society participation", - "values": [ - "4 - General action" - ] - }, - { - "text": "Continue its efforts to develop and implement sustainable solutions engaging relevant provincial government, as well as representatives of Aboriginals, on issues such as guaranteeing the property rights for Aboriginals and their participation on issues related to natural resources development ", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Allocate the necessary financial resources to the National Programme to Combat the Practice of Excision, so that it reaches the goals set for the period 2010-2014", - "values": [ - "4 - General action" - ] - }, - { - "text": "Put an end to the blockade of the Gaza strip, and guarantee full access to the Palestinian population to all basic services", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Strengthen its efforts to combat discrimination and violence against women and girls to allow them to enjoy their rights under conditions of equality", - "values": [ - "4 - General action" - ] - }, - { - "text": "Ensure that the Constitution and legislation include clear provisions on states of emergency, so as to ensure that none of the rights protected under article 4 of ICCPR are suspended in such circumstances, and that the requirements of such suspension are compatible with the above-mentioned Covenant", - "values": [ - "4 - General action" - ] - }, - { - "text": "Establish a specific timeline for the implementation of the amendment in the Marriage Act.", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Continue to adopt appropriate measures to prosecute and punish perpetrators of trafficking in human beings and develop effective systems for the timely prevention of sexual exploitation and trafficking in children ", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Consider establishing an independent national human rights institution in conformity with the Paris Principles ", - "values": [ - "3 - Considering action" - ] - }, - { - "text": "Sign and ratify the Second Optional Protocol to the International Covenant on Civil and Political Rights, aiming at the Abolition of the Death Penalty ", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Proceed to forced expulsions only in strict compliance with international and regional standards ", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Continue the efforts to host migrants and asylum seekers in order to ensure their integration", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Put an end to racial and discriminatory measures against the Palestinians in the Occupied State of Palestine, including in East Jerusalem, especially by continuing to building settlements", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Promptly adopt the bill to abolish the death penalty.", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Continue to take action-oriented measures to counter racial discrimination and intolerance, including through education and awareness-raising efforts at all levels", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Eliminate or reduce the fees for litigation so that defendants are able to obtain their rights within the law ", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Analyse the causes of the perceived impunity of perpetrators of violence against women and allocate funds and personnel to overcome these causes", - "values": [ - "3 - Considering action" - ] - }, - { - "text": "Ratify the CED", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Continue to discharge its obligations to submit, under the international legal instruments to which it was a party, initial and periodic reports to the respective treaty-monitoring bodies and to implement the recommendations of those bodies", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Invite the special procedures mandate holders who have requested visits \n\n", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Ratify and implement CAT ", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Put in place a systematic awareness-raising campaign so as to achieve an even better dissemination of a human rights culture in the society ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Formalize the moratorium on the death penalty as a step towards its full abolition", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Establish a national human rights institution that is in line with the Paris Principles and fully independent of Government control", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Review all relevant legislations, including the State's new Fundamental Law to ensure that all persons with disabilities have a right to vote, and that they can participate in political and public life on an equal basis with others", - "values": [ - "3 - Considering action" - ] - }, - { - "text": "Take steps to address inequalities affecting human rights in the area of discrimination based on sexual orientation and gender identity", - "values": [ - "4 - General action" - ] - }, - { - "text": "Consider ratification of the Protocol to the African Charter on Human and Peoples' Rights on the Rights of Women in Africa", - "values": [ - "3 - Considering action" - ] - }, - { - "text": "Modify the provisions of the Penal Code relating to freedom of expression, such as those relating to defamation and publication of false news, in order to be consistent with international and regional human rights instruments", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Initiate procedures for the opening of Turkish-Greek bilingual kindergartens, as well as new bilingual minority schools in line with the current needs of the minority ", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Finalize the draft strategy and action plan to combat corruption and effectively prosecute the perpetrators of corruption acts", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Continue working on the harmonization of national policies and laws relating the rights of women in accordance with the international human rights instruments to which it is a party", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Continue and intensify public awareness campaigns against harmful traditional practices ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Repeal section 17 of the Emergency Decree", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Encourage and facilitate relevant human rights institutions to be accredited by the International Coordinating Committee of NHRIs in line with the Paris Principles in order to create a space for independent monitoring of human rights, particularly on abusive military and police activities ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Continue the active fight against domestic violence and violence against women, paying special attention to preventive and prophylactic measures", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Strengthen the promotion of the right to education and health in disadvantaged areas ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Improve the precarious situation of indigenous peoples, particularly by stepping up efforts to guarantee their right to education, including in their own languages, unrestricted use of their lands and territories, address the problem of underrepresentation in State institutions at the federal and regional levels", - "values": [ - "4 - General action" - ] - }, - { - "text": "Amend or repeal the Religious Organisations Act so as to establish a legal framework ensuring that everyone is free to practice his or her own religious faith without penalty ", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Consider ratifying the International Covenant on Civil and Political Rights and its Optional Protocols", - "values": [ - "3 - Considering action" - ] - }, - { - "text": "Enact legislation and norms prohibiting the creation of associations that promote and disseminate hate speech and racism, consistent with appropriate international instruments", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Implement efficient policies and programmes to eliminate the phenomenon of excessive use of force by law enforcement officials, such as unlawful arrests and detentions, torture of detainees, enforced disappearances or extra-judicial executions to investigate allegations of torture and ill treatment and duly punish the perpetrators in accordance to international standards law enforcement officials should undergo a due human rights training", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Ensure adequate funding in implementing the National Education Plan, and undertake progress reports on its implementation to improve transparency and accountability", - "values": [ - "4 - General action" - ] - }, - { - "text": "Put in place appropriate mechanisms to ensure that individuals and members of the political opposition are able to take part freely in public rallies and peaceful demonstrations and to express their views without fear of reprisals, including via all forms of media ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Adopt the recommendations of the Special Rapporteur on the situation of human rights defenders and the necessary measures to its recognition and protection, guaranteeing that the human rights violations are timely, effectively and independently investigated ", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Intensify efforts to achieve further gains in the areas of poverty reduction and improving the living conditions of the people in rural areas, particularly in providing necessary resources to realize the right to adequate housing and health", - "values": [ - "4 - General action" - ] - }, - { - "text": "Eliminate obstacles to the enjoyment of land property rights for women", - "values": [ - "4 - General action" - ] - }, - { - "text": "Establish effective child abuse reporting mechanisms and ensure the appropriate remedy and rehabilitation for child victims", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Complete the ratification process for CRPD", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Set up a moratorium on all executions with a view to the final abolition of the death penalty", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Work to address the issue of domestic violence in Poland and ensure support for victims", - "values": [ - "4 - General action" - ] - }, - { - "text": "Establish a moratorium on executions with a view to formally abolishing the death penalty ", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Ensure that laws are fully and consistently enforced to provide adequate protections for members of religious minorities, scheduled castes, tribes and other vulnerable populations", - "values": [ - "4 - General action" - ] - }, - { - "text": "Establish a national group to follow-up the implementation of CEDAW recommendations", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Continue to take the necessary measures in order to better promote women's rights in all spheres of society", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Continue carrying out employment programmes, especially for the young people, the disadvantaged and disabled, as envisioned in its Programme of Employment throughout the year 2020", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Continue to develop measures and programmes allowing universal access to education", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Adopt further measures and programmes and continue efforts in strengthening human rights in accordance with the values and customs in Brunei Darussalam ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Intensify efforts inter alia through education and awareness-raising aimed at combatting prejudices against ethnic minorities ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Pay more attention to the problems related to the independence of the judicial process, and ensure that all judicial procedures are in harmony with the international standards associated with a democratic State", - "values": [ - "4 - General action" - ] - }, - { - "text": "Put in place the necessary arrangements to implement the new Constitution's guarantees of equality between men and women, in accordance with its international obligations, including CEDAW's Article 16 regarding marriage and family life ", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Step up efforts to protect the rights of Indigenous Peoples, for example, by establishing an independent mechanism to deal with their claims regarding property titles", - "values": [ - "4 - General action" - ] - }, - { - "text": "Take all necessary measures to prevent extrajudicial executions and torture by security forces by providing targeted training and capacity-building to law enforcement officials and military members", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Take steps towards a full abolition of the death penalty, commuting existing death sentences to life imprisonment terms ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Ensure full respect for freedom of religion or belief and the human rights of the persons belonging to ethnic and religious minorities, in line with international human rights law", - "values": [ - "4 - General action" - ] - }, - { - "text": "Ensure that girls with disabilities are afforded the same right to education as all children", - "values": [ - "4 - General action" - ] - }, - { - "text": "Punish perpetrators of hate speech and incitement to discrimination in accordance with the law", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Take the necessary steps to ensure effective implementation of the Anti-Gender-Based Violence Act", - "values": [ - "4 - General action" - ] - }, - { - "text": "Continue with all the initiatives and commitments to address the identified key national priorities in order to consolidate the promotion and protection of human rights, as broadly defined as these have been in the Kingdom ", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Amend the relevant national legislation, including the Law on Associations and Institutions, to reduce restrictions on procedures for establishing associations ", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Pursue reforms aimed at further protecting the judiciary from undue political interference and ensuring open, transparent and fair trial processes ", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Further its efforts to ban torture and other ill-treatment in conformity with international human rights standards, while combating terrorism", - "values": [ - "4 - General action" - ] - }, - { - "text": "Continue its efforts to effectively combat human trafficking, also through raising public awareness ", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Review the 2010 amendment to the Environment Act in order to ensure consistency with the objectives of the United Nations Declaration on the Rights of Indigenous Peoples ", - "values": [ - "3 - Considering action" - ] - }, - { - "text": "Ratify the Convention against Torture and Other Forms of Cruel, Degrading or Inhuman Treatment or Punishment", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Redouble its efforts in combating contemporary forms of racism, racial discrimination, xenophobia and related intolerance including criminalizing hate speech, and all forms of incitement to hatred and violence", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Take steps to protect and promote the freedom of expression and association of all peaceful defenders of human rights in the country ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Improve women\u2019s rights in the labour market, notably in relation to pay gaps between men and women", - "values": [ - "4 - General action" - ] - }, - { - "text": "Harmonize its Constitution and legislation with the accepted international law standards", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Continue efforts in enhancing the welfare of all segments of society and protect their rights ", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Cooperate fully with the ICC investigation, in accordance with Kenya's obligations under the Rome Statute, and establish a credible local tribunal in parallel ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Search for appropriate solutions to the problem of illegal residents on the basis of the legal framework and in line with Kuwait's admirable respect for human dignity ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Enact legislation as soon as possible to abolish the death penalty ", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Continue its cooperation with the Office of the High Commissioner for Human Rights on all issues of mutual interest ", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Review its reservations to a number of international human rights instruments with a view to withdrawing them completely ", - "values": [ - "3 - Considering action" - ] - }, - { - "text": "Amend the legislative and constitutional framework to maintain the separation of powers and cease any executive interference with the independence of the judiciary and lawyers, and ensure that the processes governing the qualification and discipline of lawyers and judges are free from political interference", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Ensure the universality of human rights, safeguarding and protecting human rights of all Nigerians irrespective of gender, age, sexual orientation, gender identity or religious affiliation ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Seek to improve prison conditions in Gabon including the availability of appropriate medical care for prisoners and access of prisoners to legal counsel and family", - "values": [ - "4 - General action" - ] - }, - { - "text": "Sign and ratify the International Convention for the Protection of All Persons from Enforced Disappearances and recognize the competence of the Committee on Enforced Disappearances to receive and consider communications on the subject", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Amend the draft bill on the Protection of State Information so that freedom of press is not curtailed in a disproportionate manner ", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Ensure that the Law on the Protection of Minors against the Detrimental Effect of Public Information is not applied with a discriminatory effect against lesbian, gay, bisexual, transgender and intersex persons", - "values": [ - "4 - General action" - ] - }, - { - "text": "Encourage ratification of CRPD ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Facilitate participation by civil society groups, in particular by reforming the system of registration for NGOs working in the country to allow organizations to be established by non-citizens, remove the obligation of having a minimal number of members in order to register, reduce the registration fees, and remove the obligation to notify the authorities of the NGOs' activities ", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Continue to restore order throughout the country in order to enable the population to resume their economic and social activities", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Redouble efforts to eliminate the practices of female genital mutilation and breast ironing ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Introduce policies in the health system to address the needs of people in situation of vulnerability ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Fully and effectively implement all recent changes in the institutional framework related to human rights, including in the area of protection of women, children as well as persons belonging to ethnic and religious minorities", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Promote interreligious dialogue and cooperation at the key local and national levels ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Continue strengthening its economic and social development ", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Implement the provision of the resolution on human rights defenders adopted by the Human Rights Council at its thirteenth session, on the establishment of a focal point for the protection of human rights defenders within the national administration", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Promptly submit responsive, non-discriminatory legislation to Parliament for property restitution seekers as mandated by the European Court of Human Rights decision from January 2011", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Implement the Law on Combating Human Trafficking of 2012 and strengthen the law enforcement and the judicial system, in order to ensure effective investigation and prosecution of perpetrators and to prevent trafficking", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Work towards strengthening the national reconciliation in order to bring the country out of the cycle of violence", - "values": [ - "4 - General action" - ] - }, - { - "text": "Continue to advance in the implementation of the national mechanism for visits to places of detention. ", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Continue its efforts initiated to better protect the rights of vulnerable groups, particularly women and children", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "To strengthen the procedures for tenancy regularization of urban land", - "values": [ - "4 - General action" - ] - }, - { - "text": "Make serious efforts to ensure that every individual has access to legal recourse for human rights violations through the formal judicial system, especially residents of districts and rural areas ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Take steps to improve the treatment of women prisoners by, inter alia, circulating the United Nations rules for the Treatment of Women Prisoners and Non-custodial Measures for Women Offenders (the Bangkok Rules) and to seek assistance from the Office of the United Nations High Commissioner for Human Rights and the United Nations Office on Drugs and Crime in implementing them ", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Accelerate the ratification of the Istanbul Convention of the Council of Europe", - "values": [ - "4 - General action" - ] - }, - { - "text": "Continue its efforts to promote and protect human rights in accordance with the characteristics, values and needs of Iranian society", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Ensure that the reforms of the jurisdiction of military tribunals provide that civilian cases are not heard by military tribunals, in accordance with international human rights standards", - "values": [ - "4 - General action" - ] - }, - { - "text": "Concretize equal pay of women and men as soon as possible ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Extend human rights education to all sectors of the country", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Take measures to protect the independence and impartiality of the judiciary", - "values": [ - "4 - General action" - ] - }, - { - "text": "Consider ratifying of the International Convention on the Rights of All Migrant Workers and Members of Their Families, in accordance with the recommendation of the Parliamentary Assembly of the Council of Europe, as well as the Convention on the Rights of Persons with Disabilities ", - "values": [ - "3 - Considering action" - ] - }, - { - "text": "Take all necessary measures to eliminate, combat and sanction all forms of discrimination or violence against women ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Take active steps to amend or repeal all discriminatory provisions that prevent women acquiring, retaining and transferring citizenship on equal basis with men and ensure the effective implementation of the provisions of the Convention on the Elimination of All Forms of Discrimination against Women", - "values": [ - "4 - General action" - ] - }, - { - "text": "Backed by the Parliament and civil society at large, Italy has reconfirmed its commitment towards the achievement of the Monterrey 0,7%, objective. Despite the international juncture and severe constraints posed to Italy by its high public debt, a portion of the new State Budget resources is usually allocated for ODA.", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Enact and enforce laws to reduce incidences of violence against women and girls", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Consider ratification of the Convention on the Rights of the Child, the Convention on the Elimination of All forms of Discrimination against Women, as well as the other core international human rights treaties that the United States is not a party to", - "values": [ - "3 - Considering action" - ] - }, - { - "text": "Ratify the International Convention for the Protection of All Persons from Enforced Disappearance, the Convention on the Reduction of Statelessness, the Optional Protocol to the Convention against Torture, the Optional Protocol to the Convention on the Elimination of All Forms of Discrimination against Women and the Second Optional Protocol to the International Covenant on Civil and Political Rights", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Ratify OP-ICESCR and the Optional Protocol to the Convention on the Rights of the Child on a communications procedure (OP-CRC-IC) ", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Strengthen its cooperation with OHCHR to organize training sessions in order to raise awareness and education in human rights ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Continue to work on the implementation of policies that guarantee respect of the rights of persons with disabilities ", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Further incorporate, as appropriate, its international human rights obligations into domestic law.", - "values": [ - "4 - General action" - ] - }, - { - "text": "Review national legal provisions, as e.g. those criminalising habitual debauchery, which are open to abuse for persecution and intimidation of persons of minority sexual orientation or gender identity or of persons with HIV-AIDS", - "values": [ - "3 - Considering action" - ] - }, - { - "text": "Fully implement international commitments stemming from United Nations human rights conventions such as on the prohibition of torture, inhuman or degrading treatment and on the rights to liberty of movement, freedom of expression, freedom of assembly and association, to which the Netherlands is a party, including with respect to the rights of foreigners, in particular senior government officials present in its territory", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Develop a national comprehensive action plan for children and strengthen legal measures for the protection of minors ", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Review the effectiveness of its current legal framework on nondiscrimination with a view to initiating a harmonization process, as recommended by the Committee on the Elimination of Racial Discrimination ", - "values": [ - "3 - Considering action" - ] - }, - { - "text": "Establish a national human rights institution which is in full compliance with the Paris Principles", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Take urgent measures to repeal the norms that discriminate against castes, and investigate and sanction the perpetrators of acts of discrimination and violence against them, in particular against the Dalits", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Continue and strengthen measures adopted to increase the participation of and progress achieved by women in all sectors of the life of the country/political life", - "values": [ - "4 - General action" - ] - }, - { - "text": "Take the necessary measures to harmonize traditional and statutory regulations, in order to further eliminate the exceptions to the principle of nondiscrimination on the grounds of sex, and strengthen the protection of women, especially of female domestic workers ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Ratify the Protocol to Prevent, Suppress and Punish Trafficking in Persons, Especially Women and Children, supplementing the United Nations Convention against Transnational Organized Crimes ", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Continue its efforts in promoting women's and children's rights, in particular combating child labour and violence against both women and children ", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Consider the creation of a separate institution of Ombudsman for children's rights, as previously recommended by the Committee on the Rights of the Child and the Danish National Council for Children ", - "values": [ - "3 - Considering action" - ] - }, - { - "text": "Take the necessary steps to ratify the International Convention on the Protection of the Rights of All Migrant Workers and Members of Their Families", - "values": [ - "4 - General action" - ] - }, - { - "text": "Ratify the Rome Statute of the International Criminal Court, as recommended previously ", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Implement a comprehensive approach to the follow up of the UPR, which includes open consultation with a wide range of government bodies and civil society representatives ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Recommended that a national commission on human rights be established in accordance with the Paris Principles. ", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Pursue further its endeavours to combat prison overcrowding and to guarantee that all detainees are treated with dignity", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Take all appropriate action in order to combat all forms of discrimination and violence against women and girls", - "values": [ - "4 - General action" - ] - }, - { - "text": "Further intensify efforts to ensure equitable access to health and education to all", - "values": [ - "4 - General action" - ] - }, - { - "text": "Consider establishing a formal moratorium on executions of persons sentenced to death", - "values": [ - "3 - Considering action" - ] - }, - { - "text": "Adopt all necessary measures to guarantee the full independence of the judiciary", - "values": [ - "4 - General action" - ] - }, - { - "text": "Eradicate the practice of criadazgo and other forms of child labor", - "values": [ - "4 - General action" - ] - }, - { - "text": "Further strengthen locally based, members-driven and funded civil society groups in the country", - "values": [ - "4 - General action" - ] - }, - { - "text": "Consider establishing an independent investigative authority that can effectively investigate the violence related to the 2007 elections and the alleged involvement of the police and public prosecutor", - "values": [ - "3 - Considering action" - ] - }, - { - "text": "Step up its efforts to end discriminatory traditional practices by organising large-scale awareness-raising campaigns on women's rights, which target local and religious leaders as well as the population in general", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Allow the Saharawi people to freely exercise their inalienable right to self-determination in accordance with General Assembly resolutions and in this context accept a schedule proposed by the Secretary-General on the organization of a referendum on self-determination in Western Sahara", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Pursue National Economic and Social Development Plans aiming at supporting the poor and the disadvantaged to ensure adequate living standards for all the population ", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Repeal all laws that allow violence and discrimination against women to persist", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Take the necessary measures to set the minimum age for marriage at 18 years of age", - "values": [ - "4 - General action" - ] - }, - { - "text": "Adopt a law on the protection of human rights defenders ", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Take all necessary measures granting women, especially those in rural areas, equal access to health services and healthcare, participation in decision making ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Reduce infant mortality rate and improve maternal health care in remote areas", - "values": [ - "4 - General action" - ] - }, - { - "text": "Adopt a comprehensive human rights action plan", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Take all appropriate action to end the impunity of perpetrators of human rights crimes and cooperate with the International Criminal Court in this regard.", - "values": [ - "4 - General action" - ] - }, - { - "text": "Repeal laws criminalizing consensual, same-sex relationships between adults", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Direct officials to cease anti-Semitic commentary and condemn any such statements ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Further promote economic empowerment programmes and job creation to prevent the radicalization of young people", - "values": [ - "4 - General action" - ] - }, - { - "text": "Lift the prohibition on the construction of minarets which was held by the High Commissioner for Human Rights and the Special Rapporteur on the Freedom of religion or belief to be clearly discriminatory", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Establish an effective and inclusive process to follow up on the UPR recommendations", - "values": [ - "4 - General action" - ] - }, - { - "text": "Repeal the Amendment of slavery against agricultural workers, especially women and children", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Continue its positive engagement with neighbouring countries in combating trafficking in persons", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Continue the on-going reform process in order to consolidate democracy and the rule of law", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Continue seeking solutions to enable children whose prison sentence is coming to an end in the middle of the school year, to continue school", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Support the work of the Truth and Reconciliation Commission, in particular to achieve the enjoyment of women and child rights and the implementation of its recommendations", - "values": [ - "4 - General action" - ] - }, - { - "text": "Continue to implement the Press and Publication Act in accordance with international standards ", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Continue to enhance the capacities of the inter-ministerial working group on combating the trafficking in persons, with the involvement of civil society, to prosecute cases of trafficking, provide assistance to victims and raise awareness", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Strengthen its legislation on violence against women, including by penalizing all forms of sexual violence", - "values": [ - "4 - General action" - ] - }, - { - "text": "Ensure full implementation of the rights of minorities on its territory in accordance with the provisions of the Treaty of Saint-Germain and Austrian State Treaty ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Make further efforts to protect and promote the human rights of indigenous people, including the taking of measures to address the issue of poverty among them", - "values": [ - "4 - General action" - ] - }, - { - "text": "Take concrete measures to end violence against women by implementing the National Action Plan to end sexual violence and by investigating and prosecuting alleged violations, including when perpetrated by military and security personnel, in accordance with international law", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Consider acceding to the UNESCO Convention against Discrimination in Education as a basis for its policy to improve access of girl children to school", - "values": [ - "3 - Considering action" - ] - }, - { - "text": "Take measures to improve women representation in decision-making positions in the public sector, including considering the adoption of temporary special measures to accelerate this objective", - "values": [ - "4 - General action" - ] - }, - { - "text": "Continue its reforms to improve policies and programmes towards the promotion and protection of all human rights", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Persist on the path of the protection and elevation of human dignity, taking into account relevant international standards", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Establish an independent complaints mechanism for persons held in custody ", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Improve facilities dedicated to pregnancy and maternity in prisons, in line with the Bangkok Rules", - "values": [ - "4 - General action" - ] - }, - { - "text": "Adopt legal provisions to prohibit religious discrimination in all areas including in that of labour ", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Effectively address the issue of child marriage by encouraging girls to continue their education beyond the secondary level, and establish laws which eliminate early forced marriages of children", - "values": [ - "4 - General action" - ] - }, - { - "text": "Ensure the right of national minorities living in territories of compact residences to receive services from the State and municipality in their mother tongue, accede to the UNESCO Convention against Discrimination in Education, reconsider the decision on the closure of gymnasiums that have less than 120 pupils ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Abolish in law and practice female genital mutilation, including through the ratification and implementation of the Maputo Protocol", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Generate data on manifestations of racial discrimination and on the position of minority groups in society, which could help identify patterns of direct and indirect racial discrimination ", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Put in place a comprehensive strategy to eliminate the patriarchal attitudes and deep-rooted stereotypes regarding the roles of women and men ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Accelerate steps towards adopting the human rights policy and national action plan for the protection and the promotion of human rights, and devise programmes for their implementation ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Adopt the Bill on Anti-Domestic Violence at the earliest possible", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Re-establish a moratorium on the death penalty with the aim of abolishing it", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Establish a centralized mechanism to prevent and combat trafficking in persons", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Maintain its efforts in the fields of health and education ", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Improve gender representation at all levels of society ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Continue the consolidation of social policies within the framework of the National Strategy for Children and Adolescents to claim the rights of children and adolescents who are in a situation of extreme vulnerability ", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Fight impunity and hold all officers and persons acting on behalf of the authorities accountable for all acts of torture and harassment of civilians ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Cooperate with the special procedures ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Continue strengthening the measures taken in the framework of combating violence against women and children", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Ensure an effective monitoring mechanism to oversee the implementation of the National Child Labour Policy", - "values": [ - "4 - General action" - ] - }, - { - "text": "The welfare system initiated by His Majesty the King serves as a crucial safety net for the most vulnerable section of the society. Despite this, the government is attempting to establish a more concrete social protection system through the following initiatives subject to availability of resources:(a) Drafting of a Social Protection Policy for Workers in Bhutan,(b) Formulation of an unemployment benefit scheme,(c) Institution of a Universal non-contributory old age pension scheme,(d) Establishment of Old age homes for the elderly.", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Immediately repeal legislation that provides for the possibility to impose the death penalty for cases related to freedom of speech, in particular section 295C of the Penal Code, in order to ensure compliance with articles 6 and 19 of the International Covenant on Civil and Political Rights", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Maintain and strengthen programmes to combat extreme poverty", - "values": [ - "4 - General action" - ] - }, - { - "text": "Develop a clear timeline and benchmarks for the full implementation of its commitments in Human Rights Council resolution 30/1", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Employ legislative mechanisms to secure gender equality and the legal protection of women from discrimination", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Continue its engagement with the Human Rights Council by bringing into domestic law the recommendations accepted in its first universal periodic review process", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Work towards enforcing Human Righst Council resolution 16/18 concerning combating intolerance, negative stereotyping and stigmatization of, and discrimination, incitement to violence and violence against, persons based on religion or belief", - "values": [ - "4 - General action" - ] - }, - { - "text": "Guarantee the effective implementation of the bill on the protection of human rights defenders, journalists, social communicators and justice officials, including appropriate financing", - "values": [ - "4 - General action" - ] - }, - { - "text": "Ratify the Second Optional Protocol to the International Covenant on Civil and Political Rights with a view to the abolition of death penalty", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Continue strengthening the measures taken to reduce violence against women and their children", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Sign and ratify the Optional Protocol to the Convention against Torture (OPCAT)", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Continue working with State Governments to remove the reservations to the Convention on the Elimination of All Forms of Discrimination against Women", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Create and maintain, in law and in practice, a safe and enabling environment in which human rights defenders and civil society can operate free from hindrance and insecurity, in accordance with Human Rights Council resolutions 22/6 and 27/31", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Intensify its efforts on the improvement of mechanisms to further protect the rights of children and the advancement of the economic well-being and standard of living of the poor", - "values": [ - "4 - General action" - ] - }, - { - "text": "Address any customary practices that are inconsistent with its obligations under international law, and bring its national law relating to women and children into line with its obligations under international human rights law", - "values": [ - "4 - General action" - ] - }, - { - "text": "Ensure that Slovenia's national legislation is fully harmonized with international standards to comply with its commitments under international treaties, especially with regard to the Convention on the Elimination of All Forms of Discrimination against Women, CRC and ICERD", - "values": [ - "4 - General action" - ] - }, - { - "text": "Efforts will be made, in conjunction with the legislature and the executive authority, to create special legislation to harmonize the domestic laws on children's rights in keeping with the Convention on the Rights of the Child, the two Optional Protocols thereto and the other conventions which deal with the subject of children.", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Promote the drafting of a new law in order to establish a National Institution of Human Rights in accordance with the Paris Principles", - "values": [ - "4 - General action" - ] - }, - { - "text": "Strengthen awareness of and respect for human rights within the armed forces, police and judiciary ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Consider ratifying the Second Optional Protocol to the International Covenant on Civil and Political Rights, aiming at the abolition of the death penalty", - "values": [ - "3 - Considering action" - ] - }, - { - "text": "Further strengthen driven policies in the area of health, in order to achieve the objective of universal access to health", - "values": [ - "4 - General action" - ] - }, - { - "text": "Strengthen measures so that ethnic minorities - Ainu, Ryukyu and Burakumins - can fully enjoy their economic, social and cultural rights", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Ratify the International Convention on the Protection of the Rights of All Migrant Workers and Members of their Families ICRMW ", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Take adequate and credible measures to put an end to incidents of arbitrary detention in line with international law", - "values": [ - "4 - General action" - ] - }, - { - "text": "Establish without delay a legal moratorium on the application of the death penalty with a view to its subsequent abolition", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Take action to improve prison conditions and implement recommendations made by the Committee against Torture and by the Human Rights Committee.", - "values": [ - "4 - General action" - ] - }, - { - "text": "Continue the public discussion over the status of the Treaty of Waitangi, with a view to its possible entrenchment as a constitutional norm.", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Ensure the right to equal and satisfactory working conditions, particularly to domestic workers ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Respect the right of peaceful association according to its domestic law and international human rights law", - "values": [ - "4 - General action" - ] - }, - { - "text": "Consider the possibility of ratifying the Optional Protocol on the involvement of children in armed conflict", - "values": [ - "3 - Considering action" - ] - }, - { - "text": "Consider withdrawing its reservations to various instruments to which it is a party ", - "values": [ - "3 - Considering action" - ] - }, - { - "text": "Continue its efforts on the implementation of the National Policy on Climate Change on reducing deforestation in the Amazon region", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Include homeless children, especially from the vulnerable groups as priority beneficiaries into poverty reduction strategy", - "values": [ - "4 - General action" - ] - }, - { - "text": "Reinforce policies to tackle domestic and sexual violence against women and girls in accordance with international human rights standards ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Recommended further measures to address the threats against Ahmadiyyah families following a fatwa banning the Ahmadiyyah", - "values": [ - "4 - General action" - ] - }, - { - "text": "Establish effective protections for civil society and journalists, including the prompt and efficient investigation and prosecution of all threats and attacks made against these individuals", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Take immediate steps to allocate proper budgetary resources to ensure protection of the rights to food, health, water and sanitation", - "values": [ - "4 - General action" - ] - }, - { - "text": "Take the necessary measures to ensure that journalists, human rights defenders and activists of the civil society can freely practice their peaceful activities and without fear of administrative or other reprisals", - "values": [ - "4 - General action" - ] - }, - { - "text": "Strengthening of efforts to take action against criminals who instigate, intimidate or help others to commit self-immolations", - "values": [ - "4 - General action" - ] - }, - { - "text": "Intensify efforts aimed at eliminating historical and structural discrimination against Roma, and prevent racist and hate speech and crimes against religious minorities and their property", - "values": [ - "4 - General action" - ] - }, - { - "text": "Enact broad anti-discrimination legislation that explicitly prohibits discrimination based on sexual orientation and gender identity", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Strengthen efforts within the context of the fight against domestic violence, rapes, violence and sexual abuse of children, as Norway has already committed itself to do ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Address shortcomings identified by international election monitors and ensure that the election and campaigning ahead of them, including the access of candidates to the media, are transparent, free and fair ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Announce a moratorium on the death penalty with a view to its eventual abolition. Pending this, take urgent steps to reduce its application, in line with international minimum standards", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Continue addressing the situation of displaced and internally displaced persons in a durable, sustainable manner, such as through the Strategy for Permanent Resolution of the Problems of displaced and internally displaced persons ", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Withdraw its reservations to CEDAW", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Consider the ratification of the Minamata Convention and update article 4.1.23 of the Law on Minerals of Mongolia, which applies to small-scale mining, to secure mining rights to small-scale miners and formalize their operation as soon as possible", - "values": [ - "3 - Considering action" - ] - }, - { - "text": "Enhance measures to promote tolerance, intercultural dialogue and respect for diversity", - "values": [ - "4 - General action" - ] - }, - { - "text": "Take action to improve opportunities for persons with disabilities to obtain gainful employment", - "values": [ - "4 - General action" - ] - }, - { - "text": "Stop all illegal measures aimed at annexing East Jerusalem and at erasing its Arabic, Christian and Islamic characteristics, and respect religious freedom and the access to places of worship.", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Preserve its social harmony through retaining its existing legal provisions that allow various religious populations to live and practice their religion without stigma ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Enhance the mandate and capacity of the National Human Rights Commission and bring it into line with the Paris Principles.", - "values": [ - "4 - General action" - ] - }, - { - "text": "Ensure the protection of the rights of individuals - including members of civil society organizations, the media and the political opposition - to assemble and speak free from intimidation and harassment", - "values": [ - "4 - General action" - ] - }, - { - "text": "Bring the definition of torture in line with the requirements of the Convention against Torture", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Ratify or accede to the the International Convention on the Protection of the Rights of All Migrant Workers and Members of Their Families and the Optional Protocol to the International Covenant on Economic, Social and Cultural Rights ", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Consider ratifying the Optional Protocol to the Convention against Torture and establish an effective national preventive mechanism in compliance with it.", - "values": [ - "3 - Considering action" - ] - }, - { - "text": "Continue to point special attention to the prevention of the emergence of the situation which might lead to conflicts on ethnic and religious basis", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Adopt measures reinforcing the fight against domestic violence", - "values": [ - "4 - General action" - ] - }, - { - "text": "Fully comply with its obligations under ICCPR and CRC with regard to the use of inhumane and-or public execution and the use of the death penalty in the case of minors", - "values": [ - "4 - General action" - ] - }, - { - "text": "Accelerate the process aimed at the establishment of a national human rights institution in conformity with the Paris Principles, and extend a standing invitation to special procedures ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Address persistent inequalities between women and men in the labour market", - "values": [ - "4 - General action" - ] - }, - { - "text": "Commit to investigating individuals suspected of involvement in terrorism-related activities and, where sufficient evidence exists, to prosecuting them in the ordinary criminal courts, and in conformity with international fair trial standards ", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Share the experiences and good practices which have enabled Zambia to obtain significant results in the field of education, particularly the access of girls to education and training.", - "values": [ - "1 - Minimal action" - ] - }, - { - "text": "Continue awareness-raising in the area of human rights", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Pass the Domestic Violence Act and ensure adequate resources and training for officials dealing with gender-based violence", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Ratify as soon as possible CPED and fully incorporate its provisions in the national legislation ", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Improve access to education for children living in rural areas and adopt further measures, special laws and awareness programs to promote gender equality in education ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Make a credible commitment to improving the status of Bidouns by ratifying the Convention relating to the Status of Stateless Persons and the Convention on the Reduction of Statelessness", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Incorporate the definition of discrimination contained in CEDAW in its domestic legislation.", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Review and amend national legislation to ensure compliance with the rights to freedom of opinion and expression enshrined in the Universal Declaration of Human Rights ", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Consider alternative, effective interventions for persons who violate national laws or norms regarding religious or cultural sensibilities through publication or posting of offensive material ", - "values": [ - "3 - Considering action" - ] - }, - { - "text": "Adopt necessary measures to legally recognize the human rights of all minorities and ethnic groups that are residing in the country", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Expedite internal procedures related to the establishing of the national preventive mechanism under the Optional Protocol to the Convention against Torture and Other Cruel, Inhuman or Degrading Treatment or Punishment", - "values": [ - "4 - General action" - ] - }, - { - "text": "Foster its holistic approach on gender equality, in particular empowering women's social and economic rights and fighting domestic violence", - "values": [ - "4 - General action" - ] - }, - { - "text": "Provide for an unhindered enjoyment of the right to the freedom of expression in accordance with country's international obligations", - "values": [ - "4 - General action" - ] - }, - { - "text": "Continue to provide overseas development assistance at the United Nations agreed level to help developing countries to realize economic and social rights ", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Fully implement the Prohibition of Female Genital Mutilation Act 2011", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Continue its efforts to improve the situation of migrant workers and members of their families", - "values": [ - "4 - General action" - ] - }, - { - "text": "Initiate an awareness-raising campaign on the importance of equal rights for lesbian, gay, bisexual and transgender persons in order to foster a climate of true social acceptance, in the spirit of the Constitution of Equatorial Guinea ", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Continue its cooperation and interaction with the Council and its mechanisms and reinforce its achievements in the area of human rights ", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Modify its legal framework in order to protect sexual minorities against discrimination", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Finalize the adoption of the law on national minorities", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Protect human rights defenders and ensure that they are able to carry out their work free from harassment and intimidation", - "values": [ - "4 - General action" - ] - }, - { - "text": "Proceed without delay in effectively implementing the law against discrimination adopted in 2009", - "values": [ - "4 - General action" - ] - }, - { - "text": "Continue the implementation of a more concrete system of social protection through the initiatives listed in the national report, and call on the international community to support those national efforts ", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Ensure non-discrimination in access to adequate housing, and prevent forced evictions, as well as the threat of forced evictions, on the basis of sexual orientation or gender identity", - "values": [ - "4 - General action" - ] - }, - { - "text": "Withdraw the reservation to CEDAW, and carry out constitutional and legal reforms in accordance with the principles of CEDAW with a view to eliminating all forms of violence against women and girls that still exist in the areas of education, labour and the family, particularly adopting the measures necessary to eliminate practices such as female genital mutilation, early forced marriage, polygamy, repudiation and force-feeding ", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Guarantee the right to education of girls through public awareness campaigns aimed at the families and the population in general", - "values": [ - "4 - General action" - ] - }, - { - "text": "Maintain the moratorium on executions and consider moving towards abolition of death penalty ", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Address concerns of the international community, including shortage of food, medical and other humanitarian services ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Combat discrimination against children from minority groups, and children with disabilities ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Continue to promote the rights of children", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Prevent deaths in custody and punish those responsible for such deaths", - "values": [ - "4 - General action" - ] - }, - { - "text": "The stigmatization of certain ethnic or social groups remained a matter of serious concern for the central Government and local authorities and the country was strongly committed to eradicating racist and xenophobic attitudes within society.", - "values": [ - "4 - General action" - ] - }, - { - "text": "Prohibit the application of the death penalty, life imprisonment and corporal punishment on offences committed by minors", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Further efforts to increase the representation of women in leadership, public and decision-making positions", - "values": [ - "4 - General action" - ] - }, - { - "text": "Strengthen its efforts to combat violence against women, and in particular work with civil society to address the societal attitudes and behaviors that underlie high rates of domestic violence ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Maintain its commitment to overcome barriers associated with deep-rooted tribal and traditional mindsets with regards to women's rights.", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Treat violence against women as a criminal offence, and enact the existing draft Bill on Social and Legal Protection against Domestic Violence ", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Continue its efforts on the promotion of the right to education with a view of increasing the level of enrolment of girls and boys at primary schools", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Intensify the implementation of its laws, policies and programmes aimed at combating violence against women", - "values": [ - "4 - General action" - ] - }, - { - "text": "Strengthen accountability measures for law enforcement officers and continue to improve living conditions in prisons", - "values": [ - "4 - General action" - ] - }, - { - "text": "Study the possibility of the definitive abolition of the death penalty", - "values": [ - "3 - Considering action" - ] - }, - { - "text": "Implement its announcement to abolish the death penalty de jure ", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Continue efforts to bring the National Human Rights Commission in line with the Paris Principles ", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Extend a standing invitation to all special representatives of the United Nations", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Establish a national institution in accordance with the Paris Principles", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Assess legislative initiatives pertaining to civil society in order to make sure that they do not unjustly restrict the scope of action of nongovernmental organizations", - "values": [ - "3 - Considering action" - ] - }, - { - "text": "Ratify the ILO Convention 189", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Facilitate women's access to justice and mainstream a gender-based approach to justice and employment ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Respect the rules on fair trial as diligently as possible.", - "values": [ - "4 - General action" - ] - }, - { - "text": "Ensure freedom of religion, as stipulated in the 2007 Religious Freedom Act and the International Covenant on Civil and Political Rights", - "values": [ - "4 - General action" - ] - }, - { - "text": "Strengthen the gender equality machinery with respect to human and financial resources ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Explicitly prohibit corporal punishment of children in all settings", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Guarantee freedom of expression and media and ensure that national legislation fully complies with international freedom of expression standards", - "values": [ - "4 - General action" - ] - }, - { - "text": "Continue implementing the State Programme "Work Roadmap 2020"", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Strengthen the legal mechanisms for combating terrorism and extremism", - "values": [ - "4 - General action" - ] - }, - { - "text": "To continue its efforts to implement a human rights information system with support from OHCHR", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Ensure that evictions from unauthorized Roma camps are carried out in full adherence with the law and work to better integrate Romani individuals into French society through provision of educational and employment opportunities ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Ensure that police officers having committed acts of torture of illtreatment be prosecuted and punished appropriately ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Continue its efforts to combat racism and xenophobia incidents", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Provide adequate administrative resources in order to fully and effectively implement the Code on Access to Information", - "values": [ - "4 - General action" - ] - }, - { - "text": "Incorporate in its legal system the possibility of granting parole to offenders under 18 sentenced to life imprisonment for murder ", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Continue efforts through dialogue with the Revolutionary Armed Forces of Colombia to reach an agreement to end the armed conflict ", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Consider the possibility of acceding to and/or ratifying the Convention against Torture and Other Cruel, Inhuman or Degrading Treatment or Punishment and its Optional Protocol ", - "values": [ - "3 - Considering action" - ] - }, - { - "text": "Respond positively to the requests of the Special Rapporteur on the promotion and protection of the right to freedom of opinion and expression for a visit ", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Strengthen efforts to reduce the incidence of maternal mortality", - "values": [ - "4 - General action" - ] - }, - { - "text": "Include a definition of torture in line with CAT and add specific offences relating to torture and other ill-treatment into the relevant legislation", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Further fulfil the internationally taken obligations as well as implement the ratified international treaties", - "values": [ - "4 - General action" - ] - }, - { - "text": "Strengthen efforts to combat domestic violence and violence against women ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Consider establishing an independent mechanism mandated to consider complaints of child rights violations as soon as possible.", - "values": [ - "3 - Considering action" - ] - }, - { - "text": "Continue efforts to ensure equal access to education of vulnerable people including women, children and persons with disabilities", - "values": [ - "4 - General action" - ] - }, - { - "text": "Ensure the freedom of the mass media, particularly of those media outlets that function in the language of the national minorities, including Russian", - "values": [ - "4 - General action" - ] - }, - { - "text": "Continue efforts to host refugees and migrants", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "It further committed itself to continue the dialogue with States and civil society, and acknowledged the importance of the UPR in the promotion and protection of human rights.", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Continue its efforts to combat violence against women and children at the national level, as previously recommended", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Reconsider the inclusion in the draft criminal code of the provision criminalizing same-sex sexual relations.", - "values": [ - "3 - Considering action" - ] - }, - { - "text": "Continue to further ensure access to sanitation facilities for girls, especially in rural schools ", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Continue the efforts to reduce the illiteracy rate", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Enforce Djibouti's existing laws to prosecute perpetrators of FGM ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Take effective measures to eliminate forms of discrimination against Roma women and girls.", - "values": [ - "4 - General action" - ] - }, - { - "text": "Strengthen its legal arsenal by acceding to the Optional Protocol to the International Covenant on Economic, Social and Cultural Rights and ratifying the International Convention for the Protection of All Persons from Enforced Disappearance ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Enhance the Independent Commission's Investigation, processing and reporting of human rights abuses by State and non-State actors, including investigations of the allegations of arbitrary arrest and detentions associated with the spring protests", - "values": [ - "4 - General action" - ] - }, - { - "text": "Adhere to the Rome Statue of the International Criminal Court ", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Ratify the Convention for the Protection of All Persons against Enforced Disappearance.", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Establish care centres for victims of domestic violence ", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Ratify the International Convention for the Protection of All Persons from Enforced Disappearance and OP-CEDAW", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Ratify ICCPR and ICESCR", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Reinstate the moratorium on the death penalty", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Continue to enhance, with the cooperation of the relevant United Nations agencies, its efforts to eliminate gender-based violence", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Further strengthen law enforcement and judicial system in the effort to address impunity and prevent the incidence of violence as well as sexual abuse of women and girls", - "values": [ - "4 - General action" - ] - }, - { - "text": "Improve the procedures to increase the percentage of children registered at birth in remote and rural areas", - "values": [ - "4 - General action" - ] - }, - { - "text": "Consider ratification of ICCPR-OP 2, aiming at abolition of the death penalty", - "values": [ - "3 - Considering action" - ] - }, - { - "text": "Continue towards providing safe drinking water in the inhabited areas", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Government is steadfastly committed to eliminate all socially or culturally constructed barriers for persons with disabilities through the Equal Opportunities (Persons with Disability) Act 2000.", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Initiate or join public campaigns so as to encourage tolerance towards homosexual, bisexual and transsexual persons ", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Continue the public security and judicial reforms and ensure their implementation", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Extend an open and permanent invitation to all special procedures", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Adopt all necessary measures for the liberalization and plurality of the media in order to promote full freedom of the press.", - "values": [ - "4 - General action" - ] - }, - { - "text": "Ensure that journalists, human rights defenders and other members of civil society can seek, receive and impart information and carry out their legitimate peaceful activities without hindrance, intimidation, harassment or pressure", - "values": [ - "4 - General action" - ] - }, - { - "text": "Put in place effective measures to prevent discrimination, prosecution and punishment on the basis of sexual orientation or gender identity ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Take additional measures to promote equality of access to employment ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Take further measures to ensure the full enjoyment by children of their human rights, notably regarding the juvenile justice system and cases of child labour ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Adopt a legislation on inheritance and matrimonial regimes", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Accede to the Convention on the Rights of Persons with Disabilities as soon as possible. In the interim continue to do what it can to counter discrimination against people with disabilities and to promote their inclusion in society", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Take steps to foster a pluralistic media environment, this should include fully implementing reform as stipulated in the GPA and liberalise airwaves and allow for private ownership of radio and TV stations ", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Ratify CEDAW and its Optional Protocol ", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Allocate sufficient funds for the effective protection of victims who report gender-based violence and focus on training and education in order to prevent such acts of violence, especially within the family", - "values": [ - "4 - General action" - ] - }, - { - "text": "Further strengthen measures to fight gender-based violence, especially domestic violence", - "values": [ - "4 - General action" - ] - }, - { - "text": "Take more effective steps to eradicate cases of police misconduct including by establishing independent body to investigate police misconduct ", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Implement effective mechanisms to prevent and sanction domestic and gender-based violence, including legal and psychological assistance for victims", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Institutionalize systematic training and capacity-building to prevent, respond and monitor gender-based violence", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Implement legal and institutional measures to eliminate the discrimination and the harmful practices and stereotypes against women, particularly the harmful practices in connection with reproductive health, and further increase Government funding for women", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Consider including provisions to ensure equality of men and women as well as the protection and promotion of women's rights in its new Constitution ", - "values": [ - "3 - Considering action" - ] - }, - { - "text": "Prioritize the social sectors such as health and education in government spending and seek international cooperation to improve the livelihood of its people", - "values": [ - "4 - General action" - ] - }, - { - "text": "Ratify the Rome Statute ", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Continue implementing the plans, programs and measures aimed at guaranteeing the right to education and access to appropriate health services for all citizens", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Continue to take steps to ensure the full and effective implementation of its National A - Development Plan to 2030 to combat poverty, particularly in rural areas", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Take further measures to ensure the effective implementation of measures to fulfil the human right to education ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Take further measures to ensure all women without any discrimination access to adequate obstetric delivery services and sexual and reproductive health services, including safe abortion and gender-sensitive comprehensive contraceptive services ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Ensure that its domestic legislation and practice are in full compliance with the requirements of article 18 of the ICCPR", - "values": [ - "4 - General action" - ] - }, - { - "text": "Fully implement the recommendations from the first universal periodic review cycle still pending, namely those regarding the strengthening of the Criminal Code provisions against gender-based violence and hate crimes", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Redouble efforts to heighten awareness of the population against FGM and excision ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Adopt comprehensive measures to address violence against women, including a law criminalizing all forms of violence against women", - "values": [ - "4 - General action" - ] - }, - { - "text": "Take measures to enable Muslims to convert to religions other than Islam and to allow those of other faiths to proselytize", - "values": [ - "4 - General action" - ] - }, - { - "text": "Undertake efforts to enforce the prohibitions on child labour, especially in its worst forms ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Continue efforts to strengthen the institutional framework, including by providing necessary funding and personnel", - "values": [ - "4 - General action" - ] - }, - { - "text": "Increase resources to protect the rights and living conditions of people in detention and prisoners", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Conclude discussions which would facilitate the expeditious ratification of the Convention on the Rights of Persons with Disabilities ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Continue the efforts to ratify CPED ", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Strengthen the independence of SUHAKAM in accordance with the Paris Principles", - "values": [ - "4 - General action" - ] - }, - { - "text": "Take the necessary measures to submit overdue reports to treaty bodies", - "values": [ - "4 - General action" - ] - }, - { - "text": "Introduce a formal moratorium on executions", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Adhere to the principles of ICRMW and consider its ratification ", - "values": [ - "4 - General action" - ] - }, - { - "text": "With regard to those arrested after the presidential elections, fully respect the right to a fair trial of all persons under arrest and detainees, in compliance with articles 32, 35, 38 and 39 of the Iranian Constitution", - "values": [ - "4 - General action" - ] - }, - { - "text": "Consider updating its domestic law to suppress the term prohibit immigrants and avoid its legal consequences, particularly administrative detention, for all undocumented asylum seekers.", - "values": [ - "3 - Considering action" - ] - }, - { - "text": "Continue taking steps in order to reinforce women\u2019s representation in leadership and decision-making positions", - "values": [ - "4 - General action" - ] - }, - { - "text": "Extend an invitation to the Special Rapporteur on torture and other cruel, inhuman or degrading treatment or punishment, the Special Rapporteur on the independence of judges and lawyers, and the Special Rapporteur on the right of everyone to the enjoyment of the highest attainable standard of physical and mental health", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Continue its endeavours to further enhance the existing mechanisms to advance human rights in Indonesia ", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Guarantee freedom of expression, association and peaceful assembly for journalists, activists, human rights defenders and for participants in demonstrations", - "values": [ - "4 - General action" - ] - }, - { - "text": "Ensure that all prisoners are provided with the minimum standards of humane treatment and that the conditions of all prisons and detention centres meet international human rights standards, including the United Nations Standard Minimum Rules for the Treatment of Prisoners (the Nelson Mandela Rules)", - "values": [ - "4 - General action" - ] - }, - { - "text": "Continue to effectively combat arbitrary arrest and pursue redeployment of the administration to reduce these practices as much as possible ", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Intensify awareness-raising and educational campaigns to combat violence against women, and adopt measures to improve women's participation in the decision-making process ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Continue engagement with the international community for ensuring access of international human rights monitoring mechanisms to the regions of Georgia, namely Abkhazia and Tskhinvali region/South Ossetia", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Continue ensuring systematic training for all personnel working in the juvenile justice system, including police, lawyers and judges ", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Continue to uphold the State policies aimed at promoting and protecting women's rights in line with its 2014 Constitution", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Harmonize its national legislation with the provisions of the Istanbul Convention", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Continue its legislative, institutional and socio-economic reforms to provide an effective framework to address gender mainstreaming, violence against women, religious intolerance, particularly with regard to citizenship, freedom of speech, and human trafficking, and focus on the very key question of achieving the targets of the Millennium Development Goals, which will comprehensively address the key question of human rights ", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Formulate and implement a national action plan against racism and xenophobia, with ample participation on the part of civil society and input from the Spanish observatory on racism and xenophobia ", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Reinforce its efforts to protect the rights of prisoners in police custody, including by duly investigating reports of ill treatment, prosecuting those responsible for confirmed abuses, and taking other appropriate preventive and corrective measures ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Strengthen national action plans that promote tolerance and intercultural understanding, in order to prevent and counter racist and xenophobic acts, particularly those arising from political propaganda", - "values": [ - "4 - General action" - ] - }, - { - "text": "Undertake clear commitments to put an end to all forms of intimidation, harassment, aggression, arbitrary arrest and detention, and torture against all persons, in particular human rights defenders, peaceful demonstrators and journalists", - "values": [ - "4 - General action" - ] - }, - { - "text": "Consider ratifying the Convention against Transnational Organized Crime and its Protocol", - "values": [ - "3 - Considering action" - ] - }, - { - "text": "Reform the Penal Code to cover offences such as sexual abuse against minors and to eliminate corporal punishment.", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Strengthen efforts in addressing issues of irregular migrants in the country in line with international human rights law obligations", - "values": [ - "4 - General action" - ] - }, - { - "text": "Consider setting up an independent human rights commission in line with the Paris Principles ", - "values": [ - "3 - Considering action" - ] - }, - { - "text": "Adapt labour legislation and align it with the provisions of ILO conventions", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Effectively address and investigate attacks against journalists and human rights defenders and bring those responsible to justice.", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Take further steps to ensure the transparent and politically impartial functioning of the Supreme Electoral Council and the accreditation of electoral observation, including by the national organizations IPADE and Etica y Transparencia", - "values": [ - "4 - General action" - ] - }, - { - "text": "Reform its education and training programmes, including those for the media and security officials, so that these programmes contribute more to the promotion of tolerance among nationalities and ethnic and religious groups", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Complete the ratification of the Optional Protocol to the Convention on the Rights of the Child on the Sale of Children, Child Prostitution and Child Pornography.", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Take measures to protect the right to privacy by developing an effective system for monitoring the legality of data collection on citizens by Serbian security services and ensuring that the confidentiality of any collected information is respected ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Step up efforts to combat and eliminate child, early and forced marriages", - "values": [ - "4 - General action" - ] - }, - { - "text": "Continue improving the Mother and Child Care Program ", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Revise the Press Code so that it would be in conformity with the international standards and take necessary measures to effectively apply the principles of freedom stipulated in the Constitution ", - "values": [ - "3 - Considering action" - ] - }, - { - "text": "Accept the individual procedures of ICCPR, CERD and CAT", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Strengthen the human rights approach in policies to fight against terrorism", - "values": [ - "3 - Considering action" - ] - }, - { - "text": "Put in place a national human rights institution in conformity with the Paris Principles", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Ratify, before the next universal periodic review cycle, the Optional Protocol to the Convention against Torture and Other Cruel, Inhuman or degrading Treatment or Punishment, and establish a national preventive mechanism accordingly", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Ensure that all complaints regarding acts of torture and ill-treatment receive a prompt, impartial and effective investigation in accordance with the Istanbul Protocol and ensure that, in conformity with the Convention against Torture and Other Cruel, Inhuman or Degrading Treatment or Punishment, any statement made as a result of torture shall not be invoked as evidence in any proceedings", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Implement more efficiently the existing laws which prohibit the corporal punishment of children ", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Ratify the Convention on Protection of Children and Cooperation in respect of Inter-country Adoption", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Devote more resources to eliminating disparities in the educational system by ensuring access to education without discrimination and eliminating hidden education fees", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Launch awareness campaigns in order to encourage parents to send their children to school including girls ", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Continue efforts to improve the situation of women", - "values": [ - "4 - General action" - ] - }, - { - "text": "Reduce the number of crimes for which the death penalty may be handed down, including non-violent crimes, and to consider abolishing the death penalty", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Accede to the CED and ILO Convention No. 169", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Combat domestic violence particularly by raising public awareness on the problem of violence", - "values": [ - "4 - General action" - ] - }, - { - "text": "Allow children of Greek citizens working in Istanbul to attend the Greek minority schools as fully-fledged students", - "values": [ - "4 - General action" - ] - }, - { - "text": "Respect and provide for freedom of expression, to end censorship of the media and to put an immediate end to attacks, harassment, intimidation and detention with regard to journalists, critics and human rights activists", - "values": [ - "4 - General action" - ] - }, - { - "text": "Strengthen measures to prevent and eliminate all forms of ill-treatment, including torture", - "values": [ - "4 - General action" - ] - }, - { - "text": "Continue its efforts at reforming the judicial system, and the rehabilitation of the prison community with a view to reintegration into society ", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Continue with the implementation of the recommendations of the OHCHR office in Colombia, according to their pertinence to the national reality. ", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Provide further support assistance services to better protect victims of domestic violence", - "values": [ - "4 - General action" - ] - }, - { - "text": "Develop additional programmes to strengthen its alternative child care facilities ", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Intensify awareness campaigns to combat gender stereotypes ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Initiate procedures for the opening of Turkish-language kindergartens for minority children in Komotini and Xanthi ", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Encouraged to promote and protect the rights of vulnerable persons including persons with disabilities", - "values": [ - "4 - General action" - ] - }, - { - "text": "Continue unabated its commitment to tackle the problem of sexual exploitation of children and child labour ", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Ensure the rights of people with disabilities during their employment, especially in public bodies or authorities", - "values": [ - "4 - General action" - ] - }, - { - "text": "Consider acceding to the Second Optional Protocol to the International Covenant on Civil and Political Rights ", - "values": [ - "3 - Considering action" - ] - }, - { - "text": "Abolish the death penalty, considering that the moratorium on judicial executions has been in place since 1975", - "values": [ - "4 - General action" - ] - }, - { - "text": "Continue to promote awareness programmes on HIV/AIDS, and enhance cooperation with civil society to address the stigma faced by persons with HIV/AIDS", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Strengthen the role of the Inter-Ministerial Committee on Human Rights to allow for the adapting of human rights policies to meet the national concerns in a changing global economic and social environment", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Continue the implementation of measures aimed to empower women and their contribution", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Speed up the drafting of a law on Anti-Human Trafficking", - "values": [ - "4 - General action" - ] - }, - { - "text": "Adopt concrete measures to address violence against women, including by criminalizing marital rape and increasing public awareness of the problem, with a particular focus on religious and community leaders", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Identify and remove administrative, physical and any other barriers that still impede access to birth registration, thus facilitating for everyone the access to health care and education", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Ensure compulsory, free and accessible primary education for all. Enhance also the availability and accessibility of secondary and higher education and close the gender gap at all levels of education", - "values": [ - "4 - General action" - ] - }, - { - "text": "Cooperate fully with the office of the High Commissioner for Human Rights in Cambodia and accept the visit requests by the special rapporteurs ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Step up, with the support of OHCHR and other international partners, the activities to establish a national human rights institution in conformity with the Paris Principles", - "values": [ - "4 - General action" - ] - }, - { - "text": "Continue strengthening the efforts in promoting and protecting non-racial discriminatory policy and specifically also ensure that Aboriginal children have access to birth registration", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Intensify efforts aimed at putting an end to the practice of secret detention and at reducing the excessive use of power and authority by the security forces ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Strengthen the National Disaster Management Authority in the country", - "values": [ - "4 - General action" - ] - }, - { - "text": "Accede to the 1954 Convention relating to the Status of Stateless Persons and the 1961 Convention on the Reduction of Statelessness", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Ensure free, universal birth registration and provide all children born in the territory, particularly those born in indigenous communities, with a birth certificate", - "values": [ - "4 - General action" - ] - }, - { - "text": "Take all necessary measures to fight internal trafficking of children", - "values": [ - "4 - General action" - ] - }, - { - "text": "Guarantee, respect and promote freedom of opinion and expression for all", - "values": [ - "4 - General action" - ] - }, - { - "text": "Pursue its efforts to fight against violence against children ", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Continue with concerted action towards combating trafficking in persons, and strengthen relevant frameworks in this regard", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Reform the Terrorism Act of 2008 and other security legislation which affect the freedom of expression, association and information, with a view to guaranteeing the full enjoyment of civil and political rights and their conformity with the international standards", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Continue the efforts to improve the birth registration figures, having in mind that considerable improvement has already been achieved, as birth registration increased from around 30 per cent in 2000 to over 60 per cent in 2010", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Complete without delay the reform aiming to restrict the jurisdiction of military courts", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Consider organizing additional human rights training for media employees, judges, prosecutors and police officers", - "values": [ - "3 - Considering action" - ] - }, - { - "text": "Continue efforts to promote and protect the rights of migrants", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Continue to promote gender equality and combating violence against women ", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Continue to provide resources and develop strategies for youth development, including for the achievement of a greater higher education completion rate for all, the retention of pregnant girls and adolescent mothers in school, the provision of technical and vocational skills and the expansion of social and economic opportunities for youth", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Continue awareness-raising campaigns on violence against women and girls and ensure that perpetrators of such crimes are brought to justice", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Give priority to non-custodial measures when sentencing or deciding on pre-trial measures, in particular in relation to the role of the primary carer of a child, and identify and implement measures to protect the best interests, needs and physical, social and psychological development of children affected by parental detention or imprisonment.", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Inform the Council on the measures to make the provision prohibiting corporal punishment in all settings widely respected in the country ", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Accede to the Second Optional Protocol to the International Covenant on Civil and Political Rights, aiming at the abolition of the death penalty ", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Ratify the OP-CAT and the Rome Statute of the International Criminal Court", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Consider ratifying Optional Protocol to the Convention against Torture", - "values": [ - "3 - Considering action" - ] - }, - { - "text": "Continue enhancing its efforts to combat trafficking in persons, and protecting the victims", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Empower women's social development and their participation in political decision-making", - "values": [ - "4 - General action" - ] - }, - { - "text": "Take all necessary measures to strengthen the independence of the judiciary and respect for the right to a fair trial, including as part of the ongoing trial against the leaders of the Islamic Renaissance Party of Tajikistan", - "values": [ - "4 - General action" - ] - }, - { - "text": "Continue its efforts to protect the rights of the child and reduce child poverty and violence ", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Adopt a comprehensive National Plan of Action geared towards solving the issue of street children", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Strengthen efforts aimed at combating and punishing trafficking in persons, particularly children and women, for labour and sexual exploitation", - "values": [ - "4 - General action" - ] - }, - { - "text": "Adopt a national action plan and legislation to prevent and combat racism, racial discrimination, xenophobia and related intolerance, including a comprehensive definition of racial discrimination", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Conduct thorough and independent investigations in cases of human rights violations and ensure victims' access to justice", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Take steps to ratify the International Labour Organization Domestic Workers Convention, 2011 (No. 189)", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Step up efforts to prevent violence against women and domestic violence", - "values": [ - "4 - General action" - ] - }, - { - "text": "Fully implement the Law on Domestic Violence against Women and disseminate information about this law as widely as possible ", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Enhance efforts to fight all forms of discrimination against women by ensuring effective implementation of the existing legislation, by implementing a policy of equal work for equal pay, by developing a comprehensive national strategy to facilitate equal access of girls and women to all levels and fields of education", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Ensure that all allegations of abuse and violence against children are investigated, and that alleged perpetrators are effectively prosecuted", - "values": [ - "4 - General action" - ] - }, - { - "text": "Consider the ratification of the Optional Protocol to the Convention against Torture", - "values": [ - "3 - Considering action" - ] - }, - { - "text": "Allow all religious or belief communities to train their religious instructors in accordance with their own dogma and traditions", - "values": [ - "4 - General action" - ] - }, - { - "text": "Investigate all unresolved cases of missing persons and bring perpetrators to justice", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Conclude the procedures for the ratification of CRPD", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Take all necessary measures to ensure that employment of children does not interfere with their right to education.", - "values": [ - "4 - General action" - ] - }, - { - "text": "Continue the enhancement of equal access to opportunities and services by the vulnerable communities ", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Continue adopting measures to improve the situation of rural women belonging to ethnic minorities, above all Roma and Albanians.", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Accelerate the process of ratification of CRPD", - "values": [ - "4 - General action" - ] - }, - { - "text": "Make every effort to guarantee the right to religious conversion and to respect the freedom of religion, in particular, enabling religious practice", - "values": [ - "4 - General action" - ] - }, - { - "text": "Ensure that all children between 4 and 18 years of age have access to education without gender discrimination, in accordance with Article 2 of the Constitution of Niger as well as Articles 2 and 28 of the Convention on the Rights of the Child", - "values": [ - "4 - General action" - ] - }, - { - "text": "Continue its efforts to provide children at risk with easy access to the necessary psychological care", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Submit the overdue report to the relevant United Nations treaty bodies", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Sign and ratify ICRMW", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Step up its efforts to protect human rights in the territory under its control, to prevent all abuses and to hold those responsible accountable", - "values": [ - "4 - General action" - ] - }, - { - "text": "Continue to reinforce the development policy on primary education ", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Seek to further decrease the number of non-citizens and to improve the social and political rights of non-citizens ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Continue to combat impunity, including by strengthening laws and regulations as well as their implementation ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Continue long-term policies for the successful integration into society of 650,000 ethnic Kazakhs repatriated from Asia, the Middle East and Europe", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Intensify its efforts with a view to a speedy ratification of CED and withdraw the reservations made to the Convention on the Elimination of All Forms of Discrimination against Women (CEDAW) ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Agree to the registration of LAMBDA [the Association for Defence of Sexual Minorities] as an official NGO", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Provide the necessary financial and human resources to strengthen the implementation of policies and programmes for the empowerment of women in social and public life", - "values": [ - "4 - General action" - ] - }, - { - "text": "Ensure that access to legal abortion is available on equal terms in all regions across the country", - "values": [ - "4 - General action" - ] - }, - { - "text": "Continue efforts to improve the access to adequate land by ethnic minority groups who have been deprived of their original lands", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Consider taking steps to establish a de jure moratorium with a view to abolishing the death penalty", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "China pledged to honour the commitments made to the world, taking into consideration its actual situation and the people's will and to continue to participate in the review process in a responsible way.", - "values": [ - "4 - General action" - ] - }, - { - "text": "Bring juvenile justice into conformity with the Convention on the Rights of the Child", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Ensure the creation of a strong, independent national human rights institution, which adheres to the Paris Principles", - "values": [ - "4 - General action" - ] - }, - { - "text": "Strengthen criminal legislation aimed at strengthening the fight against racism and intolerance and ensure their compliance", - "values": [ - "4 - General action" - ] - }, - { - "text": "Accede to ICCPR, ICERD and CAT ", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Explicitly prohibit all forms of corporal punishment of children", - "values": [ - "4 - General action" - ] - }, - { - "text": "Take steps to protect critical and independent media", - "values": [ - "4 - General action" - ] - }, - { - "text": "Within the framework of cooperation, consider extending an open standing invitation to the United Nations special procedures ", - "values": [ - "3 - Considering action" - ] - }, - { - "text": "Further build the necessary capacity for the relevant stakeholders, including government agencies, national human rights institutions and legislative as well as judicative branches, through inter alia, international cooperation on technical and capacity building programmes", - "values": [ - "4 - General action" - ] - }, - { - "text": "Consider ratifying two core United Nations human rights instruments, namely the International Covenant on Civil and Political Rights and the International Covenant on Economic, Social and Cultural Rights", - "values": [ - "3 - Considering action" - ] - }, - { - "text": "Develop in good time an action plan to prevent the illegal recruitment of children into its forces and establish transparent procedures for the verification and release of children from the Chadian army. ", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Schedule discussion of the Draft Law on the Recognition and Protection of the Rights of Traditional Communities ", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Consider drafting a law that makes basic education mandatory and free", - "values": [ - "3 - Considering action" - ] - }, - { - "text": "Take steps to limit the application and length of pretrial detention", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Advance towards the abolition of capital punishment by decreeing a de jure moratorium", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Continue efforts and implement its plans to eradicate polio in Nigeria", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Ensure appropriate protection of human rights defenders operating in the country, recognising the legitimacy of their work, including full and impartial investigations and prosecutions into all alleged human rights violations committed against them ", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Ratify the International Convention on the Protection of the Rights of All Migrant Workers and Members of Their Families ICRMW. ", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Inscribe the legal definition of discrimination in Chinese laws as a means to enhance Chinese efforts in this regard", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Become a party to the International Convention on the Protection of the Rights of All Migrant Workers and Members of Their Families ", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Continue its action to eradicate the practice of female genital mutilation ", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Grant, upon request, permanent residency to any person who was a citizen of another republic of the former Yugoslavia and who was a permanent resident of Slovenia immediately prior to its independence, as well as to his or her descendants to provide appropriate compensation to those who were disadvantaged as a result of their erasure and to conduct an outreach campaign concerning those measures to inform those now living abroad", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Take steps to accelerate the existing efforts to establish an independent human rights institution", - "values": [ - "4 - General action" - ] - }, - { - "text": "In the framework of the review of asylum and immigration law, and in accordance with the recommendation made by Committee on the Elimination of Racial Discrimination (CERD), grant foreign workers a no less favourable treatment than that which is granted to nationals in respect to restrictions, requirements and working conditions", - "values": [ - "4 - General action" - ] - }, - { - "text": "Undertake every effort to fully implement the Children's Authority Act", - "values": [ - "4 - General action" - ] - }, - { - "text": "Ratify CEDAW and the Optional Protocols thereto", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Consider the report of the High Commissioner on sexual orientation and gender identity and determine which of the recommendations can be taken into account in the further detailing of government policies", - "values": [ - "3 - Considering action" - ] - }, - { - "text": "Take additional measures on domestic violence", - "values": [ - "4 - General action" - ] - }, - { - "text": "Continue efforts to combat trafficking in human beings, particularly the exploitation of children, by reinforcing the fight against traffickers", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Consider heeding the call of the Committee on the Elimination of Racial Discrimination for the establishment of a national human rights institution in accordance with the Paris Principles", - "values": [ - "3 - Considering action" - ] - }, - { - "text": "Make effective the legislation that provides free birth registration, for example through mass awareness-raising campaigns", - "values": [ - "4 - General action" - ] - }, - { - "text": "Continue strengthening economic, social and cultural rights and improve the living conditions of the population, for which the support and solidarity of the international community is very important", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Continue to allow unfettered regular access of the ICRC to all detention facilities.", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Strengthen measures to prohibit discrimination based on sexual orientation and gender identity and combat hate crimes on these grounds", - "values": [ - "4 - General action" - ] - }, - { - "text": "Further fulfil the internationally taken obligations as well as implement the recently ratified international treaties ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Develop and adopt a comprehensive policy to combat child labour", - "values": [ - "4 - General action" - ] - }, - { - "text": "Ensure that full access is given to rural women to education, health care and credit, as well as to land and housing as recommended by the Committee on the Elimination of Discrimination against Women.", - "values": [ - "4 - General action" - ] - }, - { - "text": "Adopt the revised Law against Domestic Violence, enhance awareness -raising campaigns about domestic violence, and expand services and protection for victims", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "That all attacks on journalists are thoroughly investigated in a timely manner ", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Take stronger measures to address the problem of organized crimes and drug trafficking, in particular, to focus on the link between drug trafficking and trafficking in women and girls.", - "values": [ - "4 - General action" - ] - }, - { - "text": "Establish prison conditions that comply with the provisions of the 1999 Prison Law ", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Continue its efforts of guaranteeing an effective health system", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Continue efforts to ensure equal access of Bedouin communities to education, work, housing and public health", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Continue improving the accessibility to transport and infrastructure for persons with disabilities", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Continue to ensure that women are given equitable access to the labour market and that measures introduced to address the problem of unemployment would not result in curtailment of the rights of migrant workers in San Marino", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Positively examine the ratification of the Optional Protocol to the Convention against Torture", - "values": [ - "3 - Considering action" - ] - }, - { - "text": "Release all human rights defenders and political prisoners", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Sign and ratify the two Optional Protocols to the International Covenant on Civil and Political Rights", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Put in place effective legislation that ensures that all men and women are equal before the law ", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Redouble efforts to ensure decent living conditions for migrants and asylum seekers in the reception centres", - "values": [ - "4 - General action" - ] - }, - { - "text": "Establish an effective and inclusive process to follow up on the recommendations resulting from the present review", - "values": [ - "4 - General action" - ] - }, - { - "text": "Abolish capital punishment and commute existing death sentences to life imprisonments terms ", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Reconsider its position on the legality of corporal punishment of children", - "values": [ - "3 - Considering action" - ] - }, - { - "text": "Take steps to ensure implementation of Domestic Violence Act and Sexual Offences Act", - "values": [ - "4 - General action" - ] - }, - { - "text": "Implement successfully the national human rights policy and continue the process of incorporation of international human rights instruments into the national legislation ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Ratify the Convention on the Protection of Persons with Disabilities and its Optional Protocol.", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Take measures to reduce the problem of extreme poverty affecting indigenous people", - "values": [ - "4 - General action" - ] - }, - { - "text": "Accelerate the ratification process of the Optional Protocol to the Convention against Torture and Other Cruel, Inhuman or Degrading Treatment or Punishment", - "values": [ - "4 - General action" - ] - }, - { - "text": "Undertake effective measures to fight the widespread impunity and ensure that the reform of the military criminal justice does not lead to impunity in cases of human rights violations committed by security forces ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Proceed with its efforts to improve the health system, combat diseases, improve maternal health and reduce child mortality rates.", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Take advantage of the cooperation that the international community, particularly the Human Rights Council, can offer in order to pursue the consolidation of its national institutions, an indispensable step for the promotion and protection of human rights on the ground", - "values": [ - "1 - Minimal action" - ] - }, - { - "text": "Provide protection to the family as the natural and fundamental unit of the society", - "values": [ - "4 - General action" - ] - }, - { - "text": "Strengthen efforts to reduce disparities in the enjoyment of rights between children of minority groups, particularly Roma children and children of the majority of the population", - "values": [ - "4 - General action" - ] - }, - { - "text": "More resources be allocated to Human Rights education in parts of the country that have for a long time been under rebel control or have endured destabilization as a results of many years of civil strife ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Move towards the ratification of the Second Optional Protocol to the International Covenant on Civil and Political Rights", - "values": [ - "4 - General action" - ] - }, - { - "text": "Enact specific and comprehensive national legislation on trafficking providing for a national oversight mechanism", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Continue strengthening plans and programmes with a view to eradicating domestic violence, especially against women, girls and boys", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Adopt the decrees on the national preventive mechanism and ensure its financial and administrative independence", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Review the kafala system, and study possible alternatives in managing foreign labour, with a view to strengthening protection for domestic workers, including from violence and abuse, and to provide effective avenues for redress", - "values": [ - "3 - Considering action" - ] - }, - { - "text": "Integrate a gender perspective in the follow-up process to the review.", - "values": [ - "4 - General action" - ] - }, - { - "text": "Continue the search for measures to address the high cost of health services and the existing quality disparity in the market for such services", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Improve the work of the National Commission for Women and Children by enhancing its capacity, providing it with additional human resources and an adequate budget, in cooperation with the international community", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Ensure the timely, effective, and impartial investigations of all allegations concerning torture", - "values": [ - "4 - General action" - ] - }, - { - "text": "Include women, minorities and persons with disabilities in participation in the constitutional referendum, and elections", - "values": [ - "4 - General action" - ] - }, - { - "text": "Advance efforts to impose a formal moratorium on executions with a view to acceding to the relevant conventions, including the Second Optional Protocol to the International Covenant on Civil and Political Rights", - "values": [ - "4 - General action" - ] - }, - { - "text": "Take concrete steps to protect members of vulnerable groups from violence, encouraging more reporting of offences, more sympathetic handling of cases by the police and more convictions with appropriate sentences ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Inform the Human Rights Council in the next review of Bahrain that will be held after 4 years on the status of adoption of new legislation on female domestic workers", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "While carrying out measures to combat violence, ensure full respect for human dignity and the protection of human rights ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Ensure the proper registration of all newborns in order to ensure recognition of their legal personality", - "values": [ - "4 - General action" - ] - }, - { - "text": "Expedite the ratification of the Council of Europe Convention on Preventing and Combating Violence against Women and Domestic Violence (the Istanbul Convention) ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Strengthen training on human rights for State security forces and bodies", - "values": [ - "4 - General action" - ] - }, - { - "text": "Ratify as soon as possible the Convention on the Rights of the Child", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Guarantee universal access to health services and institutions", - "values": [ - "4 - General action" - ] - }, - { - "text": "Implement the National Action Plan on human rights", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Allow a Syrian-led transition to take place that will initiate change in laws and lead to the formation of an inclusive and representative government that adheres to the rule of law and upholds the rights of members of religious and ethnic minorities", - "values": [ - "4 - General action" - ] - }, - { - "text": "Ensure that the perpetrators of all terrorist attacks are brought to justice", - "values": [ - "4 - General action" - ] - }, - { - "text": "Take all necessary measures to prevent illegal treatment by law enforcement bodies, ensure impartial investigation of all reports of torture and ill-treatment in order to bring the offenders to justice ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Decriminalize consensual sexual relations between adults of the same sex", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Take all necessary measures to abolish the death penalty and ratify, the Second Optional Protocol to the ICCPR ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Consider formulating a national strategy to combat trafficking in persons, including women and children ", - "values": [ - "3 - Considering action" - ] - }, - { - "text": "Demonstrate firm commitment to preventing the unlawful recruitment of child soldiers by directing the Ministry of the Interior to systematically monitor self defense militias.", - "values": [ - "4 - General action" - ] - }, - { - "text": "Continue its cooperation with the United Nations Development Programme to strengthen the technical and functional capacities of the Ministry of Justice and Human Rights", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Align domestic legislation on freedom of expression and association, especially the Peaceful Assembly and Peaceful Procession Act, with international norms", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Increase advocacy for freedom from discrimination based on sexual orientation and gender identity through public education and awareness building and address violence targeting LGBT persons through training for police, first responders and justice system officials ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Continue to ensure that all pregnant women are provided with diagnosis for HIV/AIDS and access to antiretroviral treatment free of charge, in order to prevent mother-to-child transmission", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Immediately allow unrestricted humanitarian access to all areas, particularly those defined by the United Nations as besieged and hard to reach, on the basis of needs identified by the United Nations and its implementing partners", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Ratify the Convention on the Rights of Persons with Disabilities, the International Convention for the Protection of All Persons from Enforced Disappearance, the Optional Protocol to the Convention against Torture", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Strengthen the role and effectiveness of the Ministry of Human Rights and the National Commission for Human Rights, in accordance with international human rights standards", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Investigate duly and promptly allegations of misconduct, abuse and violence by public agents and take adequate action against those responsible for such crimes.", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Submit and present pending reports to the treaty bodies of which Andorra is a member, with a view to gaining an updated picture of the situation of human rights in the country", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Reduce the number of crimes punishable by the death penalty in conformity with the International Covenant on Civil and Political Rights, to which Yemen is party ", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Repeal legislation discriminating against individuals on the basis of their sexual orientation or gender identity ", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Seriously consider establishing an independent national human rights institution with a wide mandate to protect and promote human rights, especially in cooperation with civil society", - "values": [ - "3 - Considering action" - ] - }, - { - "text": "Incorporate human rights into the curriculum", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Remove the legal requirement which prevents non-Muslims from being appointed as members of the Human Rights Commission", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Take effective measures to ensure local courts and traditional leaders operate in compliance with human rights obligations and the principles of equality and non-discrimination, including by ensuring adequate access to human rights training and by reviewing the appointment procedures for local and traditional leaders ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Study the possibility of adopting new measures to strengthen the fight against discrimination, particularly with regards to persons of African descent", - "values": [ - "3 - Considering action" - ] - }, - { - "text": "Introduce alternative measures to pre-trial detention for minors wherever possible, and develop clear rules for the treatment of minors in police custody and monitor their effective implementation in practice", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Continue prohibiting all forms of direct or indirect discrimination including discrimination based on language, gender, race, religion or nationality", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Give favourable consideration to the return from Nepal of those refugees with compelling humanitarian needs ", - "values": [ - "3 - Considering action" - ] - }, - { - "text": "Continue its efforts through cooperation with civil society and combating stereotypes ", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Strengthen the national measures to combat the phenomenon of human trafficking and trafficking of human organs and protect the victims of trafficking from actions of retaliation", - "values": [ - "4 - General action" - ] - }, - { - "text": "Respect and protect the right to freedom of expression online and offline and bring its national legislation fully in line with international standards, including by decriminalizing defamation, and to develop self-regulatory mechanisms of the media", - "values": [ - "4 - General action" - ] - }, - { - "text": "Fully, systematically and continuously integrate a gender perspective into the follow-up process to the Universal Periodic Review.", - "values": [ - "4 - General action" - ] - }, - { - "text": "Involve civil society organizations in the follow-up to this UPR.", - "values": [ - "4 - General action" - ] - }, - { - "text": "Continue to work towards closing the gender gaps and ensure gender parity in education", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Ensure that religious and civil society organizations can operate without restrictions in accordance with its international obligations", - "values": [ - "4 - General action" - ] - }, - { - "text": "Step up its efforts to accelerate the ratification, among others, of ICESCR as well as its Optional Protocol (OP-ICESCR), ICCPR and its first Optional Protocol (ICCPR-OP 1), CAT and its Optional Protocol (OP-CAT), CRC and its Optional Protocols (OP-CRC-AC and OP-CRC-SC), and the Optional Protocol to CEDAW (OP-CEDAW) ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Provide all outstanding reports to the treaty bodies and respond to the long-standing requests for visits by special procedures", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Intensify awareness-raising campaigns aimed at changing existing prejudices and stereotypes against ethnic minority groups", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Commute without delay death sentences into imprisonment and establish a de jure moratorium on executions with a view to fully abolish the death penalty", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Continue its efforts to realize the goals of poverty reduction and universal access to primary education ", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Continue ongoing efforts to strengthen respect for the human rights of women and to take steps to improve their living standards", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Promptly ratify the International Convention on the Protection of the Rights of All Migrant Workers and Members of Their Families and the Convention against Torture and Other Cruel, Inhuman or Degrading Treatment or Punishment", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Continue improving the "One Mongolia" open national education programme", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Seek assistance from the international community and request OHCHR to positively respond to its expressed needs in the area of capacity-building and provision of the needed human, financial and technical resources and to provide the necessary training to officials in the various concerned departments and ministries and to the National Human Rights Institution and to provide assistance in the area of human rights education so as to spread a culture of human rights in Djibouti within the framework of the national strategy of the Government for the promotion and protection of human rights", - "values": [ - "1 - Minimal action" - ] - }, - { - "text": "Continue to advance the progress already underway on poverty eradication and improve the enjoyment of the most basic human rights of its people, especially women and children ", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Continue its efforts in improving coordination among national institutions involved in the implementation of human rights programmes and recommendations of treaties bodies as well as those made by Human Rights Council special procedures mandate holders", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Sign and ratify the Optional Protocol to the Convention on the Elimination of All Forms of Discrimination against Women ", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Prosecute or extradite for trial Luis Posada Carriles and dozens of other well-known terrorists living in impunity in the United States", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Guarantee freedom of expression, including in the Internet", - "values": [ - "4 - General action" - ] - }, - { - "text": "Continue to take proactive and innovative measures to ensure sustainable development policies related to the promotion of economic, social and cultural rights in the country", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Continue to work with the Non-Aligned Movement and the United Nations system in strengthening human rights in the world", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Repeal article 398 of the Penal Code which gives perpetrators of honour killings legal concessions ", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Put into practice awareness-raising programmes to combat the discriminatory practices against women", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Take the measures that it deems appropriate to ensure, as soon as possible, the harmonization of its national legislation with international human rights instruments to which it is a party, and envisage acceding to other fundamental human rights instruments such as CRPD ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Intensify awareness-raising relating to teenage pregnancy and sexual education", - "values": [ - "4 - General action" - ] - }, - { - "text": "Continue to carry out awareness programmes for children and adolescents against substance abuse", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Reform the association law 12-06 of 2012 to provide a clear and unambiguous legal foundation for the work of civil society organizations, including with regard to cooperation with international partners", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Strengthen the legal framework to combat and eradicate the worst forms of child labour, through legislative measures and awareness-raising campaigns", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Take necessary actions to implement the commitment to extend a standing invitation to special procedures of the Human Rights Council.", - "values": [ - "4 - General action" - ] - }, - { - "text": "Continue its efforts to ensure that the new legal framework is effectively applied by all of the country's authorities with the aim that all citizens are able to effectively exercise their rights", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Complete the ratification process of ICRMW, as recommended by several treaty bodies and special rapporteurs", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Continue its efforts to build national institutions, increase its people's awareness of all sets of human rights and broaden the space for the enjoyment of economic, social and cultural rights", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Establish effective mechanisms to monitor the situation of human rights in the country and\nallow independent human rights organizations to operate in Bhutan and express their views freely\n", - "values": [ - "4 - General action" - ] - }, - { - "text": "Consider opening a small Permanent Mission in Geneva, using the facilities provided by the newly-opened Commonwealth Small States Office ", - "values": [ - "1 - Minimal action" - ] - }, - { - "text": "Continue improving reforms to legislation on citizenship and nationality, reducing the cost of procedures and by making the language test less demanding to the minimum indispensable", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Expand family planning services in order to reduce significantly maternal mortality, which remains high especially in rural areas", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "In the area of application, dissemination and promotion of human rights: domestically, this includes strengthening the response and follow-up to the international commitments taken on by Ecuador, implementation of the evaluation process of the national plan of action, promoting the work of the National Commission for the Application of International Humanitarian Law and, the ratification of the Optional Protocol to the Convention against Torture and the International Convention for the Protection of All Persons from Enforced Disappearance", - "values": [ - "4 - General action" - ] - }, - { - "text": "Withdraw its reservations made to article 37 (c) of the Convention on the Rights of the Child (CRC)", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "The Government is however committed to protecting all members of society from harassment, discrimination and violence regardless of sexual orientation", - "values": [ - "4 - General action" - ] - }, - { - "text": "Continue efforts to generate greater inter-institutional coordination and availability of resources for the agencies responsible for the welfare of minors, both girls and boys", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Establish an independent national preventive mechanism with the necessary mandate to fulfil its obligations under the Optional Protocol to the Convention against Torture and Other Cruel, Inhuman or Degrading Treatment or Punishment ", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Remove restrictions on religious freedoms ", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Ensure that journalists and writers may work freely and without fear of retribution for expressing critical opinions or covering topics that the Government may find sensitive", - "values": [ - "4 - General action" - ] - }, - { - "text": "Adopt the measures necessary to protect and preserve the independence of the Constitutional Court and implementation of its judgments", - "values": [ - "4 - General action" - ] - }, - { - "text": "Undertake the necessary efforts to submit the corresponding periodic report to the Committee on the Elimination of Discrimination against Women, indicating specifically if the Penal Code of Dominica provides for the definition of any type of violence against women as a criminal offence", - "values": [ - "4 - General action" - ] - }, - { - "text": "Consider ratifying the ICCPR", - "values": [ - "3 - Considering action" - ] - }, - { - "text": "Implement measures to ensure girls' and women's access to all levels of education and to ensure a higher level of women's participation in public life", - "values": [ - "4 - General action" - ] - }, - { - "text": "Ensure equal rights between women and men with regard to personal status, employment and education ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Take effective measures to tackle the root causes of racial discrimination and raise awareness about stereotypes", - "values": [ - "4 - General action" - ] - }, - { - "text": "Respect the provisions of the Maseru Facilitation Declaration and ensure an environment for free, fair and democratic elections", - "values": [ - "4 - General action" - ] - }, - { - "text": "Give greater importance to the recommendations made by the Committee of the ILO Experts as regards the combat of slavery labour ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Amend current legislation on housing in order to explicitly prohibit all forms of discrimination based on ethnic origin as with regard to access to housing ", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Adopt measures and programmes to reduce the rates of maternal and infant mortality and of chronic child malnutrition ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Bring its legal framework on political parties into line with the recommendations of the Venice Commission of the Council of Europe and the relevant provisions of the European Convention of Human Rights ", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Disseminate publically the report of its Truth and Reconciliation Commission and implement the recommendations it proposed", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Consider establishing a moratorium on the death penalty with the view to its later abolition, above all in cases involving minors and those guilty of non-lethal offences ", - "values": [ - "3 - Considering action" - ] - }, - { - "text": "Make available adequate resources for the awareness-raising and for the implementation of the National Human Rights Action Plan", - "values": [ - "4 - General action" - ] - }, - { - "text": "Continue supporting the Multicultural Policy and National Anti-Racism Partnership and Strategy including by enacting comprehensive equality legislation", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Implement further measures to improve its investigation and prosecution of human trafficking cases and enhance the legal and social protection of victims of human trafficking", - "values": [ - "4 - General action" - ] - }, - { - "text": "Redouble its advocacy efforts to enhance public awareness on gender equality and women's role in social and economic development.", - "values": [ - "4 - General action" - ] - }, - { - "text": "Interpret statutory law and to set enforcement mechanisms in a way that protects unionized and non-unionized workers equally and without discrimination.", - "values": [ - "4 - General action" - ] - }, - { - "text": "Avoid arbitrary and discretionary detention particularly of foreigners and adequately reduce the detention period particularly of asylum seekers.", - "values": [ - "4 - General action" - ] - }, - { - "text": "Better ensure freedom of the press and particularly safeguard the independence of the Media Commission ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Do not discriminate against women in different political economic and social areas", - "values": [ - "4 - General action" - ] - }, - { - "text": "Continue utilizing this Inter-ministerial Standing Committee with a view to finalizing other initial and periodic reports to various treaty bodies", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Strengthen the legislative framework to better support migrants and migrant workers, particularly through the ratification of the International Convention on the Protection of the Rights of All Migrant Workers and Members of Their Families", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Support, through legislation, non-custodial measures as an alternative to imprisonment to reduce overcrowding in prisons ", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Ensure effective implementation of the Roma Integration Strategy for 2015-2020", - "values": [ - "4 - General action" - ] - }, - { - "text": "Continue strengthening programmes for combating xenophobia, discrimination and violence motivated by the sexual orientation and gender identity of the victims", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Fiji is committed to ratifying/acceding to all international human rights instruments within 10 years and states that the ratification of optional protocols will be the prerogative of the Fijian Parliament.", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Continue its efforts in the field of education and human rights training particularly for law enforcement officers", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Work to achieve additional progress in implementing the programme "Educate Your Child" which aims at connecting the prisoners with their children who are less than 6 years and their families", - "values": [ - "4 - General action" - ] - }, - { - "text": "Take more effective measures to address discrimination and other problems related to racial and ethnic relations including by developing and implementing appropriate policy and programmes with a view to improving and strengthening relations between races and cultures ", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Put an end to the detention of all migrant children, accompanied or unaccompanied or separated from their family", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Continue its efforts to bridge the gaps in the field of education, in remote areas", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Incorporate the prohibition of torture into its legislation ", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Consider adapting domestic legislation to international standards and instruments in the field of refuge and asylum ", - "values": [ - "3 - Considering action" - ] - }, - { - "text": "Continue its efforts to promote the use of non-gender specific language.", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Undertake legal reforms to ensure openness and transparency of the media in the country", - "values": [ - "4 - General action" - ] - }, - { - "text": "Take all possible measures to prevent the recruitment and torture or cruel and degrading treatment by the police and military of children ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Continue its efforts to preserve freedom of religion and ensure respect for all religions under the umbrella of the law", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Impose a moratorium on the use of the death penalty as a step towards its full abolition.", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Take steps to improve the prison conditions in order to meet all international standards", - "values": [ - "4 - General action" - ] - }, - { - "text": "Take immediate measures with a view to lifting the blockade and guarantee freedom of movement of goods and persons between Gaza and West bank, including East Jerusalem", - "values": [ - "4 - General action" - ] - }, - { - "text": "Ratify the Optional Protocols to CRC, on involvement of children in armed conflict", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Adopt measures to ensure the sustainability of efforts to fight corruption, such as legal and public policy reforms, to improve public confidence in the justice system and to increase its independence", - "values": [ - "4 - General action" - ] - }, - { - "text": "Fight effectively gender-based violence and traditional practices which are discriminating against women", - "values": [ - "4 - General action" - ] - }, - { - "text": "Strengthen the fight against discrimination and violence against women", - "values": [ - "4 - General action" - ] - }, - { - "text": "Provide regular updates to the Human Rights Council on the implementation of the recommendations adopted during the review ", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Significantly increase efforts to raise awareness among its population of gender equality and non-discrimination of women and girls ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Continue and increase efforts to eradicate female genital mutilation (FGM) throughout the country, bring perpetrators to justice and ensure adequate punishment, and adopt measures to prohibit traditional matrimonial practices, including forced marriages which are particularly harmful to children ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Ensure amendment of the relevant laws to adequately address issues of domestic violence and spousal abuse and to ensure prosecution of all alleged perpetrators", - "values": [ - "4 - General action" - ] - }, - { - "text": "Complete the review of prison conditions in order to increase the quality of the prison management system", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Step up efforts to further reduce poverty, in particular in rural areas", - "values": [ - "4 - General action" - ] - }, - { - "text": "Effectively combat child prostitution and sexual exploitation of children for commercial ends", - "values": [ - "4 - General action" - ] - }, - { - "text": "Ratify the UNESCO Convention Against Discrimination in Education ", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Ensure that any measure limiting freedom of expression, assembly and association on the Internet is based on clearly defined criteria in accordance with international law including international human rights law", - "values": [ - "4 - General action" - ] - }, - { - "text": "Step up its cooperation with special procedures mandate holders by responding positively to the pending visit requests of special procedures mandate holders and eventually consider extending a standing invitation to all special procedure mandates holders of the Human Rights Council ", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Ratify the Convention on the Rights of Persons with Disabilities signed in 2007 ", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Expressly prohibit corporal punishment in all settings", - "values": [ - "4 - General action" - ] - }, - { - "text": "Find a suitable methodology for data collection, allowing a response tailored to the problems of vulnerable groups", - "values": [ - "4 - General action" - ] - }, - { - "text": "Continue making efforts to ensure active participation of women in the country's governance ", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Continue efforts to protect and promote economic, social and cultural rights, especially in the field of food, health and education", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Take the necessary steps to ensure that its citizens fully enjoy the rights and freedoms awarded to them by the Iranian Constitution, with special emphasis on the right to freedom of expression, the right to political activity and the right to assemble", - "values": [ - "4 - General action" - ] - }, - { - "text": "Take effective measures to combat violence against Aboriginal girls and women ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Continue efforts to ensure the representation of women at all levels of the political process and their participation in public life ", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Take further active steps to create equal opportunities for both men and women in the labour market, and to bridge the gender wage gap", - "values": [ - "4 - General action" - ] - }, - { - "text": "Carry out transparent and impartial investigations, in accordance with international standards, regarding allegations of murders and extrajudicial killings in order to guarantee protection of the right to life", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "End the prosecution of civilians in military courts, transfer all cases of civilians facing proceedings before military courts to civilian courts, order a retrial in civilian courts for all civilians convicted of an offence in military courts, and amend the martial law and the Military Court Act to prohibit the prosecution of civilians in military courts", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Abolish capital punishment.", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Involve civil society, including human rights non-governmental organizations, in the follow-up to this review", - "values": [ - "4 - General action" - ] - }, - { - "text": "Internalise as soon as possible the following international human rights treaties: the International Covenant on Civil and Political Rights, the International Covenant on Economic, Social and Cultural Rights, the Convention against Torture and Other Cruel, Inhuman or Degrading Treatment or Punishment, the International Convention on the Elimination of All Forms of Racial Discrimination, the Convention on the Rights of the Child and the Convention on the Elimination of All Forms of Discrimination against Women", - "values": [ - "4 - General action" - ] - }, - { - "text": "Paying due attention to preventing and combating trafficking in women and children, strengthening education and information on the elimination of discrimination against the victims of trafficking and job and income generation for them, finding solution to the issues of child labour, street children and violence against children, close cooperation with other countries, especially in the region, on combating trafficking in women and children and transnational crime,", - "values": [ - "4 - General action" - ] - }, - { - "text": "Adopt the draft law on amending and completing the Criminal Code and the Code of Administrative Offences with regard to bias-motivated crimes and incidents to also include sexual orientation, gender identity and gender expression as grounds for hate crimes", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Bring its legislation into conformity with its commitment to equality and non-discrimination and its international human rights obligations, by repealing all provisions which may be applied to criminalize sexual activity between consenting adults ", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Continue to strengthen human rights institutions to ensure the continued promotion and protection of human rights, and raise public awareness around human rights issues nationwide ", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Consider ratifying ILO Conventions 98 and 100", - "values": [ - "3 - Considering action" - ] - }, - { - "text": "Take initiatives to strengthen gender mainstreaming and women's rights. ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Draft a comprehensive national plan of action on business and human rights, that would take into account the United Nations Guiding Principles in this regard", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Investigate and punish the violations of human rights committed in the aftermath of the coup d'etat of 28 June 2009", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Undertake legal and administrative efforts to end torture and related impunity", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Strengthen legislation and adopt a plan of action against sexual abuse and trafficking ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Consider its pending reservations on the international instruments relating to refugees and displaced persons so as not to create any stateless persons, despite migratory pressures", - "values": [ - "3 - Considering action" - ] - }, - { - "text": "Comprehensively implement the laws and consider formulating a national action plan to further ensure women's rights, including on combating violence against women ", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Ratify the Convention on the Rights of the Child (CRC) and its Optional Protocol on the involvement of children in armed conflict and endorse the Paris Commitments to protect children from unlawful recruitment or use by armed forces or armed groups ", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Consider the adoption of appropriate policies to additionally promote gender equality in public affairs and to enforce strict sanctions against all kinds of discrimination and abuse of women's rights", - "values": [ - "3 - Considering action" - ] - }, - { - "text": "Ensure that extrajudicial killings are properly investigated and that the persons responsible are held to account in accordance with due process and the rule of law", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Continue efforts to strengthen human rights education in school curricula ", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Reinforce measures aimed at eradicating gender-based violence and labour discrimination against women ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Accede to and fully implement the Optional Protocol to CEDAW, amend laws that discriminate against women, and facilitate a broad public discussion on women's rights and equality ", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Formally codify in domestic law its international legal commitments, and repeal or amend incompatible repressive laws ", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Share experience in the development of its solidarity values and in particular the National Solidarity Fund.", - "values": [ - "1 - Minimal action" - ] - }, - { - "text": "Continue its laudable measures to fight poverty and combat diseases such as HIV and AIDS", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Strengthen prison reform efforts to protect female prisoners from sexual abuse and violence", - "values": [ - "4 - General action" - ] - }, - { - "text": "Continue to prioritize policies aimed at improving the socio-economic condition of its citizens", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Speed up the ratification of the ICCPR, which has been already signed by China ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Make greater efforts to protect children and women from all forms of abuse, in particular trafficking and domestic violence", - "values": [ - "4 - General action" - ] - }, - { - "text": "Ensure ongoing practical professional training of police officers of all ranks and categories on the protection of vulnerable groups, in compliance with human rights principles ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Adopt a moratorium on executions, as a first step towards abolition of the death penalty, as previously recommended in the first cycle ", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Amend its legislation in order to increase the minimum age of marriage in line with the international standards", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Respond positively to outstanding visit requests by special procedures and issue a standing invitation", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Promote and deploy further efforts to bridge the gap between boys and girls in completing the primary, secondary and university levels", - "values": [ - "4 - General action" - ] - }, - { - "text": "Ratify the Optional Protocol to the International Covenant on Economic, Social and Cultural Rights and the Optional Protocol to the Convention on the Rights of the Child on a communications procedure", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Adopt necessary measures according to the international criteria to protect the freedom of Muslim women to belief", - "values": [ - "4 - General action" - ] - }, - { - "text": "Close the Guantanamo prison and release all detainees still held in Guantanamo, unless they are to be charged and tried without further delay", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Continue to seek technical assistance where capacity issues may impede progress.", - "values": [ - "1 - Minimal action" - ] - }, - { - "text": "Include a sexual orientation and gender identity perspective with regard to measures against incitement to hatred ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Continue to implement programmes aimed at improving the accessibility for persons with disabilities in the learning and working environment ", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Take result-oriented measures for eliminating discrimination and hate speech against migrants, Muslims and the members of the Turkish Muslim minority", - "values": [ - "4 - General action" - ] - }, - { - "text": "Improve the reception conditions, health care, access to water and sanitation, adequate housing and food, for refugees, Make sure that refugees are not repatriated in case that their lives are in danger in their country of origin, and promote, through public policies, their total integration into the society out of the refugees camps", - "values": [ - "4 - General action" - ] - }, - { - "text": "Continue measures for the protection of the rights of vulnerable groups of the population, particularly women, children, persons with disabilities and elderly persons ", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Introduce specific legislation prohibiting discrimination based on gender identity or intersex status", - "values": [ - "4 - General action" - ] - }, - { - "text": "Put an end in law and in practice to violence and discrimination against women, violence and discrimination against homosexuals and female genital mutilation", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Analyse the adoption of legal provisions and administrative actions to strengthen the free enjoyment of the rights of freedom of expression and association, as well as the independence and impartiality of the judiciary", - "values": [ - "3 - Considering action" - ] - }, - { - "text": "Strengthen measures to ensure the strictly humanitarian nature of refugee and IDP camps, to ensure that persons living there are protected against violence, in particular gender-based violence, and forced recruitment, and finally to increase its efforts to find durable solutions for these persons.", - "values": [ - "4 - General action" - ] - }, - { - "text": "The government is currently studying and reviewing other human rights instruments. It has always been the view of the government to first build the necessary social and political institutions and develop the human resources of the country before it assumes any international treaty obligations. In the absence of strong institutions and adequately qualified personnel, the government is seriously constrained in fulfilling obligations as specified in many of the international treaties and conventions. As Bhutan's capacity is enhanced, it will in the near future look forward to ratifying the other international human rights instruments.", - "values": [ - "3 - Considering action" - ] - }, - { - "text": "Strengthen efforts to fulfil its obligations under CEDAW and CRC", - "values": [ - "4 - General action" - ] - }, - { - "text": "Complete the process of fully implementing its obligations under the Rome Statute into domestic law, in particular by adopting provisions allowing for full cooperation with the International Criminal Court ", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Ratify Optional Protocol to the Convention on the Rights of Persons with Disabilities as soon as possible", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Continue efforts to combat the various forms of discrimination and strive for the respect of the rights of minority ethnic groups", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Reconsider ratifying the International Convention on the Protection of the Rights of All Migrant Workers and Members of their Families (ICRMW)", - "values": [ - "3 - Considering action" - ] - }, - { - "text": "Continue adopting measures to put an end to corporal punishment ", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Ensure that all detainees are afforded all fundamental safeguards from the outset of their detention, including the right to have prompt access to a lawyer and an independent medical examination and to notify a relative", - "values": [ - "4 - General action" - ] - }, - { - "text": "Continue to implement policies, plans and services to protect the advancement of women and to protect them against violence.", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Take measures to ensure the independence of the judiciary and consider establishing an independent body responsible for the appointment and promotion of judges", - "values": [ - "4 - General action" - ] - }, - { - "text": "Take steps to promote free and independent media and continue work to ensure the safety of journalists, including Ndey Tapha Sossey, Sarata Jabbi- Dibba, Pa Modou Faal, Pap Saine, Sam Sarr, Ebrima Sawaneh, Emil Touray, and Augustine Kanja", - "values": [ - "4 - General action" - ] - }, - { - "text": "Promote the establishment of a Truth and Reconciliation Commission, in conformity with the Arusha Agreement and United Nations Security Council resolutions 1606 and 2027, guaranteeing the fight against impunity for crimes for which there is no statute of limitation ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Continue efforts to promote and protect human rights while preserving the institution of the family in all its components and preserving religious tolerance, prioritize the maintenance of racial and religious harmony through delicate management of relations between the different races and religions and share best practices with other countries regarding the promotion of racial and religious tolerance ", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Accelerate the ratification process of ICCPR", - "values": [ - "4 - General action" - ] - }, - { - "text": "Guaranteeing the freedom of expression, association and assembly by allowing human rights defenders, political opponents and journalists to express freely their views in line with international human rights law ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Reconsider its position about the continued legality of corporal punishment against children.", - "values": [ - "3 - Considering action" - ] - }, - { - "text": "Implement the Committee on Economic, Social and Cultural Rights encouragement to recognize the right to self-identification of all ethnic groups in Ukraine as well as to ensure protection and development of their cultural heritage.", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Continue to implement the 2012 national anti-trafficking law, through efforts to investigate and prosecute trafficking offenses on the federal and state level", - "values": [ - "4 - General action" - ] - }, - { - "text": "Adopt concrete measures to avoid discrimination and protect the rights of the Batwa community and other minorities, as well as request technical assistance from the United Nations to identify their basic social needs ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Provide, in accordance with its respective obligations under international human rights law, effective protection to the family as the natural and fundamental unit of the society", - "values": [ - "4 - General action" - ] - }, - { - "text": "Make further efforts to ensure the implementation of the legal framework which guarantees human rights, including the Constitution ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Adopt legislative measures to bring the age of criminal responsibility into conformity with international standards ", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Continue to strengthen cooperation with international mechanisms, through a favourable response to the special procedures that have requested to visit the country ", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Address child labour as a matter of urgency in accordance to its international commitments, notably ILO Conventions No. 138 and 182", - "values": [ - "4 - General action" - ] - }, - { - "text": "Abolish the death penalty as a punishment under criminal law", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Sign and ratify Optional Protocol to the Convention on the Elimination of All Forms of Discrimination against Women ", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Strengthen its current work to combat racism and xenophobia, by condemning manifestations of intolerance and populism in the political sphere and in the media", - "values": [ - "4 - General action" - ] - }, - { - "text": "Provide the maximum legal and professional protection to those working in the garment and handcraft professions sector ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Undertake additional measures to support migrants and in particular to implement the corresponding recommendations of the treaty bodies, such as recommendations of the CRC on support for the families of migrants", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Prepare action plans to identify, release and ensure reintegration of all unlawful child soldiers, to prevent further recruitment, to investigate and prosecute those perpetrators of child soldering who have violated domestic criminal law, and to address other violations and abuses committed against children, including all forms of forced child labour and child prostitution", - "values": [ - "4 - General action" - ] - }, - { - "text": "Strengthen or adopt, as necessary, specific programmes to ensure appropriate representation of minority communities at all levels of government, and adopt broad and effective national measures to end discriminatory approaches to law enforcement and provide victims with effective recourse and remedies", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Continue advancing in the achievement of the Sustainable Development Goals", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Introduce comprehensive anti-discrimination legislation, including discrimination based on sexual orientation or gender identity", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Continue its efforts to ensure the observance of fundamental rights and international standards in the context of asylum procedures, particularly with regard to the treatment of unaccompanied minors ", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Take concrete measures to follow up on the concluding observations of the Committee on Economic, Social and Cultural Rights related to trafficking and sexual exploitation of trafficking victims ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Formulate a national work plan to prevent suicide, especially as Switzerland enjoys a high standard of development, progress and prosperity", - "values": [ - "4 - General action" - ] - }, - { - "text": "Take further effective measures to ensure the equal treatment of women, in accordance with its international obligations under CEDAW ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Secure the protection of witnesses to the Truth and Reconciliation Commission, also those who have testimonies which may be directed at people with power", - "values": [ - "4 - General action" - ] - }, - { - "text": "Take all necessary urgent measures to set up the national human rights commission in accordance with the Paris Principles. ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Continue negotiations on transitional justice issues and implement transitional justice elements of the Stormont House Agreement", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Request the Sub-committee on the Prevention of Torture to publicly release the report of its September 2011 visit", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Promptly follow-up on the recommendations of the Special Rapporteur on violence against women and ensure early enforcement of the Family Protection Act", - "values": [ - "4 - General action" - ] - }, - { - "text": "Intensify its efforts in addressing the welfare of expected levels ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Continue and deepen the implementation of measures to avoid and prevent discrimination against minorities and indigenous populations, including through consultations with the different indigenous peoples", - "values": [ - "4 - General action" - ] - }, - { - "text": "Envisage the possibility of making the National Consultative Forum an annual event as a tool to promote dialogue and comprehension in the field of human rights", - "values": [ - "3 - Considering action" - ] - }, - { - "text": "Consider creating, with international technical assistance, the required national human and institutional expertise that would contribute to gaining a better understanding of its obligations and to the implementation of human rights-related treaties to which it is a party ", - "values": [ - "3 - Considering action" - ] - }, - { - "text": "Take effective measures to ensure that the condition of persons in detention are in conformity with relevant international standards ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Provide additional and adequate resources to the Ombudsperson\u2019s Office, in order to enable the institution to perform the mandate of the National Preventive Mechanism effectively", - "values": [ - "4 - General action" - ] - }, - { - "text": "Continue, with all necessary determination, the efforts already undertaken to remedy the excessive length of court procedures and difficulties faced in prosecuting war crimes ", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Take measures and develop appropriate mechanisms to enable the development of legislation and policies for the protection of children in all fields ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Fully implement the reform of the residential care system for children, focusing especially on re-integration of children with disabilities", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Ensure the diligent investigation of allegations of excessive use of force by its own security and militia", - "values": [ - "4 - General action" - ] - }, - { - "text": "Adopt special measures to alleviate and remedy disparities in the enjoyment of human rights affecting vulnerable groups, which include immigrants, foreigners and ethnic minorities such as the Ciganos and Roma communities ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Adopt or ratify the Convention on the Rights of Persons with Disabilities and its Optional Protocol", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Continue measures to train the national police forces in order to enable them to fulfil their tasks in an adequate and proportionate manner, in accordance with the principles of the rule of law", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Complete and enact the draft media law reform, such that it includes measures to increase media ownership transparency and financial transparency ", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Pursue the implementation of the recommendations of the Truth and Reconciliation Commission, in particular the fight against impunity, the implementation of the Comprehensive Reparations Plan and the effective implementation of the National Missing Persons Research Plan", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Continue promoting the expansion of educative opportunities, particularly in its alternative models ", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Abolish permanently the death penalty and ratify the Second Optional Protocol to the International Covenant on Civil and Political Rights, aiming at the abolition of the death penalty ", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Put emphasis on the rights of women and children, and continue to work to eliminate sexual violence under the Stamp it Out policy and implement it in a comprehensive manner ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Continue to develop the health system through the strengthening of the right to enjoy health for all segments of the society", - "values": [ - "4 - General action" - ] - }, - { - "text": "Reform the substitute detention system in order to be consistent with the international human rights standards, including those on the right to assistance from a lawyer in custody", - "values": [ - "4 - General action" - ] - }, - { - "text": "Take measures to put an end to incidents of racial discrimination against certain social groups and xenophobic hate speech and stigmatization from public and political officials", - "values": [ - "4 - General action" - ] - }, - { - "text": "Enact federal and state laws criminalising domestic violence", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Extend an invitation to visit to the Working Group on the issue of discrimination against women in law and in practice to visit", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Promote the work of human rights defenders.", - "values": [ - "4 - General action" - ] - }, - { - "text": "Make efforts to supply quality drinking water and provide adequate cultural facilities to the rural population", - "values": [ - "4 - General action" - ] - }, - { - "text": "Provide effective protection against violence and discrimination against women, in line with an accepted UPR recommendation", - "values": [ - "4 - General action" - ] - }, - { - "text": "Undertake measures to redress marginalization of indigenous and migrant populations, in line with the prominent role of Mexico in the international scene", - "values": [ - "4 - General action" - ] - }, - { - "text": "Fully align national legislation with the Rome Statute of the International Criminal Court and ratify the Kampala Amendments to the Rome Statute ", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Ratify the Protocol to the African Charter on Human and Peoples\u2019 Rights on the Rights of Women in Africa", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Take concrete steps to prevent any form of infringement on the human rights of southern Sudanese residing in the north, including by addressing issues of nationality and citizenship in cooperation with the authorities in Southern Sudan ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Speed up legislative reforms to make acts of violence against women such as domestic violence and marital rape offenses under the criminal code ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Prioritize reform of the prison system in order to improve the living conditions of detainees, ensure thorough investigation of any allegation of illtreatment and use of excess force by police forces, and prosecute those who have committed such crimes", - "values": [ - "4 - General action" - ] - }, - { - "text": "Take all necessary steps to halt all forced evictions in all locations under its control and particularly in Mogadishu", - "values": [ - "4 - General action" - ] - }, - { - "text": "Launch media programmes to raise awareness on human rights", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Include provisions in its Equal Opportunities Act on the equal rights of women and men", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Adopt appropriate administrative policies to promote gender equality in public affairs, particularly in the labour market, and enforce strict sanctions against all kinds of discrimination and abuse of women's rights by ensuring that the rights of women are genuinely recognized in national legislation", - "values": [ - "4 - General action" - ] - }, - { - "text": "Work with civil society institutions and other partners to ensure a democratic process leading up to the elections in 2015", - "values": [ - "4 - General action" - ] - }, - { - "text": "Reviewing the laws on immigration in Britain in order to comply with the Convention on the Rights of the Child", - "values": [ - "3 - Considering action" - ] - }, - { - "text": "Reconsider the ratification of the ICRMW in the future", - "values": [ - "3 - Considering action" - ] - }, - { - "text": "Accelerate its efforts to achieve remaining Millennium Development Goals targets, as well as achieve the Sustainable Development Goals", - "values": [ - "4 - General action" - ] - }, - { - "text": "Guarantee that the law on media and publications enables full exercise of freedom of expression, in particular on the Internet", - "values": [ - "4 - General action" - ] - }, - { - "text": "The delegation of Bulgaria reiterated the commitment of the Government to continue the judicial reforms and strengthen the juvenile justice system in line with international standards. The delegation reported on ongoing measures to strengthen legislation on juvenile justice.", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Hold accountable security forces who commit human rights violations, including those involving child soldier recruitment and sexual violence", - "values": [ - "4 - General action" - ] - }, - { - "text": "Intensify its efforts in combatting hate crimes through the effective implementation of the new monitoring system provided for this purpose", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Conduct human rights awareness-raising activities for law enforcement officers", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Provide greater guarantees to journalists and media personnel, guarantee their safety and security, in particular those that investigate and report cases of drug trafficking and corruption", - "values": [ - "4 - General action" - ] - }, - { - "text": "On migrant workers: ratify ILO Convention No. 189 concerning decent work for domestic workers and abandon the current Kafala system", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Ensure that the legislation that provides individual consideration of the status of refugee includes the provision of sufficient resources for its implementation in order to avoid delays in the effective determination of the requests for the concession of refugee status", - "values": [ - "4 - General action" - ] - }, - { - "text": "Strengthen the Police Complaints Authority's capacity ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Put in place a national policy for protection and assistance for street children and persons with albinism", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Provide obligatory human rights education and training to police, prison and judiciary staff, and ensure their strict accountability for any violations of human rights", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Improve the harmonization of national legislation with that of the Convention on the Rights of the Child, in particular the legal status of corporal punishment of children and provisions on the minimum age of criminal responsibility", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Continue efforts in social and health insurance to the benefit of children with disabilities", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Ensure the strict enforcement of the laws prohibiting early marriage", - "values": [ - "4 - General action" - ] - }, - { - "text": "Intensify efforts to implement the recommendations of the Committee on the Rights of the Child on the persistence in rural areas of traditional practices harmful to children ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Consider establishing a formal moratorium on death penalty", - "values": [ - "3 - Considering action" - ] - }, - { - "text": "Ratify the Optional Protocol to the Convention against Torture and ensure a timely establishment of an effective national preventive mechanism", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Ratify the international conventions and protocols on human rights in order to enable its people to enjoy all their rights", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Ensure free access of all its citizens to information in line with its international obligations under ICCPR", - "values": [ - "4 - General action" - ] - }, - { - "text": "Provide proper assistance for the increasing number of unaccompanied minor refugees during their initial reception in Austria", - "values": [ - "4 - General action" - ] - }, - { - "text": "Further develop and implement comprehensive policies to prevent violence against children", - "values": [ - "4 - General action" - ] - }, - { - "text": "Continue strengthening the national human rights institutions of South Africa in accordance with its Constitution in order for them to be able to exercise their powers and execute their functions impartially and independently", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Consider ratifying the International Convention on the Protection of the Rights of Migrant Workers and Their Families and the ILO Convention 189", - "values": [ - "3 - Considering action" - ] - }, - { - "text": "Continue its efforts to achieve sustainable development and eradicate poverty", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Give high priority to the drafting and implementation of a new Penal Code and a new Penal Procedural Code which would include provisions to prohibit discrimination against women, minorities and displaced persons in all its forms, provisions to facilitate access to justice for all citizens, and which excludes the death penalty", - "values": [ - "4 - General action" - ] - }, - { - "text": "Increase its efforts to combat human trafficking and protect victims of trafficking, especially women and children", - "values": [ - "4 - General action" - ] - }, - { - "text": "Put an end to kidnapping and enforced disappearance of persons, whatever their country of origin ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Provide more human rights education and training programmes for law enforcement officials and agents", - "values": [ - "4 - General action" - ] - }, - { - "text": "Issue clear public orders and take all necessary steps to ensure that the Transitional Federal Government's security forces and allied militias comply with international humanitarian and human rights law ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Strengthen the domestic legislation in accordance with international law to prevent and address violence against women and girls ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Eliminate negative existing practices against women such as forced marriages, guarantee women access to education, as well as to political, social and economic activities", - "values": [ - "4 - General action" - ] - }, - { - "text": "Impose a moratorium on executions of all offenders with a view to abolishing the death penalty. ", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Honour its voluntary commitment to submit national reports to the treaty bodies by the due date.", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Continue the full implementation of its plan of action to combat violence perpetrated by men against women, violence and oppression in the name of honour, and violence in relations between people of the same sex ", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "End and prohibit torture ", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Continue on its path of aligning its national legislation with its international obligations under the instruments to which Singapore is a State party ", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Continue to strengthen efforts to combat trafficking in people, including under the strategic national plan of action to prevent online sexual exploitation of children and the programme for rehabilitating and reintegrating victims of human trafficking", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "That steps be taken to further facilitate the easy travel of its citizens abroad", - "values": [ - "4 - General action" - ] - }, - { - "text": "Duly investigate and prosecute all allegations of abuse of domestic workers and provide victims efficient access to justice ", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Continue to protect the rights of workers and women, emphasize justice for minorities, and strengthen public health", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Develop a specific normative framework to guarantee the freedom of opinion and expression, as well as the security of journalists, members of the opposition and civil society", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Continue its efforts to promote and protect the rights of children and of persons with disabilities", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Repeal provisions criminalizing consensual same-sex sexual conduct in order to bring the penal code in line with international human rights obligations", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Further increase the use of ethnic languages in schools and the mass media.", - "values": [ - "4 - General action" - ] - }, - { - "text": "Strengthen its human rights education at the national level and through the school system ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Continue the same level of methodology and transparency - we consider that the content of the report reflects the importance of the work to be carried out in spite of the challenges ", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Consider the ratification of the Framework Convention on Tobacco Control", - "values": [ - "3 - Considering action" - ] - }, - { - "text": "Take all steps necessary to ensure that the right to seek asylum is guaranteed for asylum seekers coming to Hungary and that the principle of non-refoulement is respected", - "values": [ - "4 - General action" - ] - }, - { - "text": "Take effective measures to implement the National Plan of Action for children (2010-2016) and allocate sufficient funding for implementation", - "values": [ - "4 - General action" - ] - }, - { - "text": "Take measures to limit the time of pretrial detention or the equivalent situation of deprivation of liberty without charges and for investigation purposes, in accordance with general comment No. 8 of the Human Rights Committee", - "values": [ - "4 - General action" - ] - }, - { - "text": "Adopt a de jure moratorium and ratify the Second Optional Protocol to the ICCPR, with a view to abolition of the death penalty ", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Reinforce bilingual and intercultural education models for indigenous children and include education on indigenous cultures in the national school curriculum, with a view to promoting respect for diversity ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Take further measures to improve the working possibilities and working conditions of the Palestinian refugees", - "values": [ - "4 - General action" - ] - }, - { - "text": "Further enhance the partnership with relevant NHRIs and civil society for better coordination in the planning and implementation of national human rights activities and programmes among all stakeholders ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Intensify efforts to ensure gender equality and eliminate gender- based violence", - "values": [ - "4 - General action" - ] - }, - { - "text": "Rigorously enforce legislative instruments that protect and strengthen the rights of the child", - "values": [ - "4 - General action" - ] - }, - { - "text": "Continue the efforts directed towards combating trafficking in human beings", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Consider taking more resolute action to prevent and punish perpetrators of racially motivated acts of violence against members of the Roma-Sinti, Muslim, Jewish communities, as well as German nationals of foreign origin and asylum seekers", - "values": [ - "3 - Considering action" - ] - }, - { - "text": "Ratify the CED and investigate all allegations of forced disappearances ", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Consolidate measures of national and international nature to ensure the effective fight against trafficking in persons ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Continue to promote the equal representation of women in political and public life", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "In cooperation with the World Health Organization (WHO), continue to improve its domestic healthcare system and provide quality healthcare services to its people ", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Ratify Convention No. 169 of the International Labour Organization, concerning indigenous peoples", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Establish a moratorium on executions of those sentenced to the death penalty and move forward in the legal review to reach its abolition", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Human rights education which includes training programmes for civil servants to promote human rights policy and mainstream it in various areas", - "values": [ - "4 - General action" - ] - }, - { - "text": "Continue to train law enforcement officials and to raise awareness on all human rights issues", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Take necessary measures to reduce child marriage, particularly the prohibition of forced marriage of girls", - "values": [ - "4 - General action" - ] - }, - { - "text": "Strengthen the laws and mechanisms at the federal and state levels to further combat racial discrimination in all its forms as well as against hate speech and hate crimes, to ensure that people are protected therefrom", - "values": [ - "4 - General action" - ] - }, - { - "text": "Develop appropriate labour legislation in relation to children, in line with the State's obligations under CRC, ensuring the inclusion of ILO Conventions No. 138, on the Minimum Age for Admission to Employment, and No. 182, on the Prohibition and Immediate Action for the Elimination of the Worst Forms of Child Labour ", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "That the country's judicial and prison systems work toward the improvement of prison conditions in line with international standards ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Intensify efforts to prevent and combat discrimination against persons with immigration backgrounds", - "values": [ - "4 - General action" - ] - }, - { - "text": "Continue to enhance its financial and technical capacities through, among others, constant constructive engagement with regional and international development partners", - "values": [ - "4 - General action" - ] - }, - { - "text": "Step up the accession process under way and the ratification of a number of international instruments, in particular ICERD, CAT and CRPD and the Optional Protocol thereto", - "values": [ - "4 - General action" - ] - }, - { - "text": "Step up efforts aimed at ending and discouraging vigilantism in politics in order to protect participation and freedom of expression in public life", - "values": [ - "4 - General action" - ] - }, - { - "text": "Implement the recently passed Anti-Discrimination Law and take other appropriate measures to make sure that any remaining discriminatory regulations and practices are abandoned ", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Guarantee the full legitimacy of human rights defenders and ensure their protection in order to spare them from the harassment that they have often endured", - "values": [ - "4 - General action" - ] - }, - { - "text": "Continue its efforts aimed at combating domestic violence", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Take supplementary actions to advance comprehensive education, to further promote inclusive education in all its aspects", - "values": [ - "4 - General action" - ] - }, - { - "text": "Provide the necessary status to languages of minorities and create conditions where minorities do not fear of discrimination", - "values": [ - "4 - General action" - ] - }, - { - "text": "Continue efforts to further reduce the pay gap between women and men", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Equalize the legal minimum age of marriage for girls and boys ", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Evaluate the possibility of ratifying CAT and OP-CAT ", - "values": [ - "3 - Considering action" - ] - }, - { - "text": "Reconsider decriminalizing certain conducts based on sexual orientation and gender identity, as recommended by the High Commissioner for Human Rights", - "values": [ - "3 - Considering action" - ] - }, - { - "text": "Ensure proper implementation of the Prevention and Combating of Hate Crimes and Hate Speech Bill and the draft national action plan to combat racism, racial discrimination, xenophobia and related intolerance, once adopted", - "values": [ - "4 - General action" - ] - }, - { - "text": "Seek funds for the implementation of the plan of action and road map for children associated with armed groups and forces, particularly in providing reintegration assistance and education and training geared towards longer-term durable solution for them", - "values": [ - "1 - Minimal action" - ] - }, - { - "text": "Namibia remained committed to implementing the recommendations that enjoyed its support during the first cycle of the UPR.", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Strengthen the exercise of freedom of expression, assembly, association and participation ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Continue efforts to ensure the promotion of the rights of indigenous peoples", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Ratify the CRPD already signed in 2007 as well as the two Optional Protocols to the Convention on the Rights of the Child (OP-CRC-AC and OP-CRC-SC) ", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Continue strengthening training for public sector employees in the field of human rights", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Develop the necessary tools to ensure education and human rights training, notably for law enforcement officials ", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Adopt a mechanism for the protection of journalists and release all journalists detained for exercising their freedom of expression", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Increase the number of women in political and public life in both national and local government bodies and address gender stereotypes that perpetrate discrimination against women ", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Increase the effectiveness of measures taken to prevent manifestations of racial hatred or intolerance, including in the statements of politicians, civil officials or the press and promptly introduce legal ban on the activities of any political parties and organizations that propagate hatred and racial discrimination", - "values": [ - "4 - General action" - ] - }, - { - "text": "Continue its efforts in fighting racism, including by strengthening institutional capacities to systematically document and investigate racially motivated crimes ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Undertake more effective measures to improve the security of women and girls, in particular those who live in the conflict and refugee areas. ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Analyse the possibility of adopting the necessary additional measures to combat and prevent discrimination against religious minorities", - "values": [ - "3 - Considering action" - ] - }, - { - "text": "Take the necessary steps to improve the situation of internally displaced persons in order to protect their most basic human rights ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Modify legislative provisions that may discriminate against women and in particular speed up the process of bringing the Family Code in line with international instruments.", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Put in place the necessary regulations to ensure the full implementation of the Prevention and Prohibition of Torture Act of 2012 and that appropriate training on the Act is carried out for security services to ensure its effective application", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Further build on progress in relation to child mortality and ensure the implementation of nationwide, high quality and accessible antenatal, neonatal and under-five health services ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Focus on mitigating income inequalities, providing equal opportunities in education and employment, and improving social security and health services for all segments of the population ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Take measures to eradicate all forms of police harassment and ill-treatment when police investigations are carried out, including facilitating effective access to justice to presumed victims, effective and prompt investigations and sanctioning those responsible.", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Regularize as soon as possible the protracted situation of the stateless Bidouns in conformity with its international obligations and commitments and accede to the Convention relating to the Status of Stateless Persons", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Continue in giving particular attention to the empowerment of women and children ", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Intensify measures to raise awareness of domestic violence", - "values": [ - "4 - General action" - ] - }, - { - "text": "Establish a national programme on human rights that fully brings in the rights provided for in the international instruments to which Austria is a State party ", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Continue its efforts towards harmonization of its national laws with its international human rights obligations ", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Continue to seek technical assistance from the international community in line with recommendation 12 in the OHCHR assessment mission report", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Consider ways to widen and enhance the effectiveness of measures to promote social inclusion and diversity, guaranteeing the full and effective exercise of human rights by indigenous people, persons of African descent, migrants and refugees, and eradicating all forms of racial discrimination, racism and xenophobia ", - "values": [ - "3 - Considering action" - ] - }, - { - "text": "Further strengthen law enforcement and the judicial system in the effort to address impunity and reduce the incidence of domestic violence as well as physical and sexual abuse of women and girls ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Work on rights-related legislation with its Constitutional Court and Human Rights Commissioner to ensure legislation aligns with Russia's international obligations ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Ensure accountability for all crimes committed, regardless of the perpetrator, including in cases of violence against women and sexual violence ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Develop a broad national multisectoral strategy to address the rights of indigenous peoples, Afro-descendants and other vulnerable groups subject to discrimination", - "values": [ - "4 - General action" - ] - }, - { - "text": "Continue its judicial reforms in the form of amendments to the Judicial Systems Act, the Penal Code and the Penal Procedure Code, the Ministry of Interior Act and the Criminal Assets Forfeiture Act and the like, give attention to more training and professionalism within the judiciary as well as the enhancement of the appraisal and appointment systems, and strengthen the accountability and efficiency of the Supreme Judicial Council", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Strengthen the Truth, Justice and Reconciliation Commission, as well as other institutions supporting democratic governance ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Introduce a de jure moratorium on executions until the government abolishes the death penalty ", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Share best practices of tackling the situation of the Roma and Traveller people through the EU Framework for National Roma Integration Strategies adopted in 2011 ", - "values": [ - "1 - Minimal action" - ] - }, - { - "text": "Continue to strengthen successful programmes to promote employment, food and assistance to the most vulnerable in combating poverty and social inequality ", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Evaluate to repeal the criminalization of same-sex relations", - "values": [ - "3 - Considering action" - ] - }, - { - "text": "Continue its efforts aimed at eradication of illiteracy in rural areas", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Guarantee effective protection, in law and practice, of the rights of national and religious minorities, firstly Muslims, Jews as well as the Sami", - "values": [ - "4 - General action" - ] - }, - { - "text": "Develop an awareness-raising campaign in the rural, indigenous and Afro-descendant areas with the view of increasing the birth registration of these vulnerable groups ", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Ensure independence of the media from political influence and liberalize media ownership rules ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Explain clearly relevant facts and circumstances to address concerns expressed by United Nations human rights mechanisms", - "values": [ - "4 - General action" - ] - }, - { - "text": "Enact legislation to prohibit any organisation which promotes or incites racism and racial discrimination", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Ensure prompt and effective implementation of the legislation to eliminate violence against women", - "values": [ - "4 - General action" - ] - }, - { - "text": "Uphold its constitutional provisions guaranteeing freedom of worship", - "values": [ - "4 - General action" - ] - }, - { - "text": "Amend legal provisions that criminalize some forms of sexual activity between consenting adults and decriminalize sexual activity between consenting adults.", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Put in place further measures to ensure respect for freedom of expression and of the media", - "values": [ - "4 - General action" - ] - }, - { - "text": "Increase investment in social welfare programs", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Review the definition of "genocide ideology" in the homonymous 2008 law so that it allows for diversity of opinion ", - "values": [ - "3 - Considering action" - ] - }, - { - "text": "Establish a de jure moratorium on executions and take necessary measures with a view to abolishing death penalty", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Work towards further improving women's rights ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Implement "emergency protection orders" and ratify the Council of Europe Convention on Preventing and Combating Violence against Women and Domestic Violence (Istanbul Convention) ", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Step up its cooperation with the special procedures of the Human Rights Council by responding positively to the pending visits' requests and consider extending a standing invitation to all the special procedures mandate holders ", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Consider the recommendation of various treaty bodies regarding the elimination of pre-military training in schools", - "values": [ - "3 - Considering action" - ] - }, - { - "text": "Continue its efforts and adopt further measures to promote the realization of the right to education for all in an inclusive and non- discriminatory way, including for persons with disabilities", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Intensify the policy and measures in the promotion of human rights for vulnerable groups, including the fight against racial discrimination and against trafficking and sexual exploitation of children ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Continue with measures to guarantee the birth registration of children, with no discrimination against migrant children, and continue strengthening the legal framework for the procedures of acquisition of nationality ", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Take measures to put an end to the culture of impunity of perpetrators of torture and ill-treatment and take among others concrete steps to reform the justice system to guarantee its independence and to promptly investigate allegations of torture and ill-treatment and bring criminal proceedings against those responsible ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Continue to communicate with international human rights mechanisms in order to continue its efforts to raise awareness about disabled persons ", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Complete swiftly the discussions within the legislative body on the revised draft of the Criminal Code", - "values": [ - "4 - General action" - ] - }, - { - "text": "Adopt immediate measures to put an end to the belief that witchcraft is connected to albinism, with a view to end the killing or maiming of children born with this condition", - "values": [ - "4 - General action" - ] - }, - { - "text": "Take again into consideration the possibility to soon abolish the de jure death penalty ", - "values": [ - "3 - Considering action" - ] - }, - { - "text": "Enhance the information infrastructure for the Cuban society and share its experience in broadening access to information and communications technology", - "values": [ - "4 - General action" - ] - }, - { - "text": "Respect the right of Palestinian refugees to return to their homelands and to be compensated for losses and damages incurred and to retrieve their properties in accordance with relevant United Nations resolutions and international law.", - "values": [ - "4 - General action" - ] - }, - { - "text": "Study the introduction of a universal basic income for all citizens of Timor-Leste over 18, without preconditions, with payments made from the interest on investments accrued from oil royalties", - "values": [ - "3 - Considering action" - ] - }, - { - "text": "Continue to strengthen efforts aimed at the further development of the cultures of Kazakhstan's ethnic communities", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Continue the work in establishing a national human rights institution in full compliance with the Paris Principles ", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Ratify the Second Optional Protocol to the International Covenant on Civil and Political Rights with a view to abolishing the death penalty", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Harmonize national legislation and carry out the necessary efforts in order to implement CEDAW ", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Fully respect freedom of expression, opinion, association and peaceful assembly in accordance with Angola's obligations under the International Covenant on Civil and Political Rights", - "values": [ - "4 - General action" - ] - }, - { - "text": "Promote responsible freedom of expression in speeches and publications to curb hate crimes", - "values": [ - "4 - General action" - ] - }, - { - "text": "Continue with its resolve towards the promotion and protection of the human rights of all its citizens", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Facilitate the implementation of the recommendations of the LLRC Action Plan and provide necessary funds for its implementation", - "values": [ - "4 - General action" - ] - }, - { - "text": "Continue its close cooperation and support for the activities of United Nations Office for the Coordination of Humanitarian Affairs (OCHA), United Nations Disaster Assessment and Coordination (UNDAC) team, and the International Committee of the Red Cross (ICRC), among others", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Review the repressive governmental policy designed to suppress the functioning of independent media, journalists and bloggers", - "values": [ - "4 - General action" - ] - }, - { - "text": "Ensure that the Ministries of Labour, Social Affairs and Equal Opportunity take further steps to eliminate the worst forms of child labour, that they address the informal sector in these measures, and that they receive adequate training to detect and prevent unlawful child labour, improve the\nquality of and increase the number of workplace inspections in both formal and informal sectors, and work with the courts to effectively prosecute perpetrators \n", - "values": [ - "4 - General action" - ] - }, - { - "text": "Improve equal access to the legal aid system, in particular for poor and marginalized groups", - "values": [ - "4 - General action" - ] - }, - { - "text": "Continue its efforts to further improve the situation of children in specialized institutions", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Further promote freedom of expression and the independence of the media ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Continue and strengthen the efforts aimed at the full integration of the Gypsy community and other minorities", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Develop and encourage tolerance between religious groups and fully guarantee the right to freedom of conscience and religion", - "values": [ - "4 - General action" - ] - }, - { - "text": "Continue to take effective policies to ensure adequate housing for all citizens and in particular for those in the lower income bracket", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Immediately end arbitrary detention and guarantee effective legal representation, in accordance with international fair trial standards ", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Implement measures aimed at eliminating discrimination against the Sami people, with particular focus on ensuring access to basis services in education, employment and health, as well as access to land, and ensuring that their right to land and cultural life is preserved ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Elaborate and apply alternative penalties to prison incarceration and take all necessary measures to decrease the excessive use of pre-trial detention ", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Avoid and prevent judicial pressure on human rights defenders, journalists and other activists, taking into account international standards in this respect", - "values": [ - "4 - General action" - ] - }, - { - "text": "Approve the opening of an OHCHR country office to provide for enhance protection of and cooperation on human rights", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Continue to maintain annual economic growth of average of 8%", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Set up an awareness campaign to prevent violence against women ", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Modify the legislation to repeal criminal responsibility for activities that fall within the legitimate exercise of the freedom of expression, particularly on the Internet and Twitter", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Introduce a clear definition of child pornography into national legislation ", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Take necessary measures aimed at prohibiting all forms of corporal punishment against children", - "values": [ - "4 - General action" - ] - }, - { - "text": "Take measures to protect people with albinism and to develop educational campaigns to promote tolerance and respect for diversity", - "values": [ - "4 - General action" - ] - }, - { - "text": "Fully implement CEDAW ", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Strengthen the capacity of the Lebanese Palestinian Dialogue Commission to assist Palestinian Refugees as a step to improve the human rights and humanitarian situation for Palestinian refugees in Lebanon", - "values": [ - "4 - General action" - ] - }, - { - "text": "Taking necessary steps to establish an independent national human rights institution, in accordance with Paris Principles, in order to strengthen human rights at federal and state level in addition to the local level", - "values": [ - "4 - General action" - ] - }, - { - "text": "Take legislative measures to ensure non-discrimination against children in all settings and fully implement the provisions of the Convention on the Rights of the Child", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Step up the process under way to ensure its accession to all relevant human rights international instruments", - "values": [ - "4 - General action" - ] - }, - { - "text": "Carry out additional national awareness-raising campaigns to combat violence against women and girls", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Repeal all legal provisions criminalizing sexual activities between people of the same sex", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Continue efforts to eliminate trafficking in children and address the problem of street children and child labour ", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Consider additional policy measures to promote tolerance and non-discrimination on the grounds of sexual orientation.", - "values": [ - "3 - Considering action" - ] - }, - { - "text": "Welcomes Indonesia's reaffirmation of its commitment to combat impunity and encourages it to continue its efforts in this regard.", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Continue the work to monitor and evaluate the penitentiary institutions", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Continue its ongoing efforts to implement the Economic Development Strategy aimed at achieving social and economic reforms and improving the living conditions of the population ", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Continue efforts to achieve as rapidly as possible the threshold of 30 per cent women in Parliament, as recommended by the Kenyan Constitution", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Ratify the 1951 Convention relating to the Status of Refugees and establish national legislation to implement its provisions and obligations", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Increase and consolidate the level of public awareness of the law and of mechanisms that are available to enforce human rights, particularly among women and young girls ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Ratify international instruments to which Viet Nam is not yet a party ", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Refrain from recourse to arbitrary detention and follow due process in all judicial cases, in accordance with international standards, in particular with relation to the arbitrary arrest of political opposition members, who should be immediately released", - "values": [ - "4 - General action" - ] - }, - { - "text": "Continue to take all efforts necessary to implement the recommendations of United Nations special procedures who have visited the country, and request international assistance to that end, if deemed necessary ", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Allocate appropriate resources to the Office of the Ombudswoman to facilitate equal access to justice for all citizens and further strengthen its monitoring and reporting capacity ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Take specific measures to protect women from being victim of discrimination and violence, including the appropriate investigation of such cases as well as the prosecution and punishment of perpetrators", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "However, the Dominican Republic aware of the urgent need to eliminate the social inequalities that still exist, as in most underdeveloped nations, pledges to continue implementing and planning projects, both legislative and institutional, and to take affirmative action in favour of: children, adolescents, women, the elderly, the disabled, migrants, justice, workers, the elimination of poverty, health, education, intercultural integration, social and human development, and trafficking in persons.", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Withdraw remaining reservations to the ICCPR and the Convention against Torture and take immediate steps to incorporate both treaties into domestic legislation", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Fully investigate abuses and human rights violations by law enforcement officials in prisons and ensure that perpetrators are duly punished", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Establish a moratorium on the death penalty, and take all necessary measures for its abolition", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Strengthen the system of accountability of all this personnel members of the police, military, prison and detention staff and judiciary in order to ensure effective, independent and impartial investigation of any violations of human rights by them ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Make every effort to accelerate the process of ratifying the Optional Protocol to the Convention on the Elimination of All Forms of Discrimination against Women", - "values": [ - "4 - General action" - ] - }, - { - "text": "Provide law enforcement and judicial officials with specific education-sensitivity training towards the protection of children, women and persons of minority sexual orientation or gender identity", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Fight against terrorism with all possible means", - "values": [ - "4 - General action" - ] - }, - { - "text": "Adopt additional measures aiming at protecting the minorities and continue cooperating with the international community with a view to stop the increasing violence", - "values": [ - "4 - General action" - ] - }, - { - "text": "Ratify ICCPR-OP2, aiming at the abolition of the death penalty", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Ensure freedom of expression, including by creation of conditions for expressing opinions different from the official Government position and for realization of the right to know the truth ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Review compliance of conditions in prison and detention facilities, in particular pre-trial detention facilities, with international standards ", - "values": [ - "3 - Considering action" - ] - }, - { - "text": "Prioritize the need to become party to the International Convention on the Protection of the Rights of All Migrant Workers and Members of Their Families", - "values": [ - "4 - General action" - ] - }, - { - "text": "Immediate elimination of the practice of incarcerating juvenile offenders alongside adults", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Fully respect and promote freedom of expression ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Ensure that law enforcement officials conduct their duties in line with Austria's international obligations, particularly in relation to migrants, asylum seekers and minorities", - "values": [ - "4 - General action" - ] - }, - { - "text": "Adopt legislation to recognize and regulate the rights of indigenous populations ", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Consider amending the National Security Law to prevent arbitrary application and abusive interpretation of the law", - "values": [ - "3 - Considering action" - ] - }, - { - "text": "Raise the minimum age of criminal responsibility and provide adequate protection of child victims and witnesses of crime during trial", - "values": [ - "3 - Considering action" - ] - }, - { - "text": "Assess the implementation of the National Action Plan to Combat Female Genital Mutilation/Cutting", - "values": [ - "3 - Considering action" - ] - }, - { - "text": "Ensure effective implementation of the act on human trafficking and migrant smuggling and the adoption of appropriate legal, administrative and preventive measures aimed at creating an effective policy and institutional framework for combating the exploitation of persons, especially women and children ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Take immediate steps towards the abolition of the death penalty in law", - "values": [ - "4 - General action" - ] - }, - { - "text": "Consider ratification of the International Convention for the Protection of All Persons from Enforced Disappearance.", - "values": [ - "3 - Considering action" - ] - }, - { - "text": "Broaden the mandate and powers of the institutions tasked with guaranteeing the principle of equality and non-discrimination", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Adopt measures to ban FGM and enhance the awareness campaign, in accordance with the United Nations General Assembly's recent resolutions ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Continue to pursue its commendable efforts in handling complaints regarding alleged acts of ill-treatment committed by law-enforcement authorities ", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Maintain national efforts to ensure compliance and stability of the MDGs ", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Continue and enhance its efforts to ensure the full implementation of the Convention against Torture and Other Cruel, Inhuman, or Degrading Treatment or Punishment", - "values": [ - "4 - General action" - ] - }, - { - "text": "Ensure that the deaths of human rights defenders are promptly and thoroughly investigated, and that those found to be responsible are brought to justice", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Consider ratifying the International Convention for the Protection of All Persons from Enforced Disappearances", - "values": [ - "3 - Considering action" - ] - }, - { - "text": "Continue to promote and strengthen the realization of women's rights, with special attention on equal rights and opportunities in the labour market ", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Strengthen endeavours to ensure access to safe drinking water and sanitation through installing water and sanitation networks", - "values": [ - "4 - General action" - ] - }, - { - "text": "Continue its good work to reduce the prevailing high unemployment rate in the country", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Continues its efforts to address violence against women and to speed up efforts to enact the Gender Equality Bill", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Adopt norms, and apply existing provisions, with a view to protect the rights of religious minorities and ensure the preservation of religious sites", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Implement urgently the provisions enshrined in the ILO Worst Forms of Child Labour Convention, with special emphasis on articles 1 and 6 ", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Create and implement a strategy to eliminate traditional harmful practices, such as female genital mutilation, child, early and forced marriage, and "Wahaya", and modify traditional stereotypes that are harmful to and discriminate against women", - "values": [ - "4 - General action" - ] - }, - { - "text": "Consider ratifying ILO Convention No. 169", - "values": [ - "3 - Considering action" - ] - }, - { - "text": "Continue the support, care and the rehabilitation of disabled persons and those with special needs, and continue to support them directly or through associations and specialized rehabilitation centres ", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Continue its efforts to develop its legal and institutional framework with respect to the promotion and protection of human rights ", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Continue strengthening its educational system, guaranteeing the right to education to children and adolescents with disabilities", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Repeal all laws criminalizing sexual orientation and gender identity and take concrete measures for the protection of sexual minorities", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Pursue its efforts to combat illiteracy and establish an effective system for adult education and training ", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Take all measures in order to ensure the enforcement of the existing labour laws and regulations prohibiting all employment of children under 14 years as well as the employment of children under 18 years in mines, factories and plantations", - "values": [ - "4 - General action" - ] - }, - { - "text": "Consider the introduction of alternative punishment for minor crimes, to alleviate overcrowding", - "values": [ - "3 - Considering action" - ] - }, - { - "text": "Accede to the Rome Statute of the International Criminal Court, including its Agreement on Privileges and Immunities", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Scale up and expand youth-friendly and gender-sensitive programmes on comprehensive sexuality education and sexual reproductive health and rights", - "values": [ - "4 - General action" - ] - }, - { - "text": "Allocate sufficient budget to the educational system so that all children, particularly the most vulnerable, have access to education", - "values": [ - "4 - General action" - ] - }, - { - "text": "Consider constructively the recommendations made during this UPR and made by the commission of inquiry on human rights in the Democratic People's Republic of Korea (COI)", - "values": [ - "3 - Considering action" - ] - }, - { - "text": "Intensify its efforts to combat terrorism", - "values": [ - "4 - General action" - ] - }, - { - "text": "Establish greater support systems in the form of more secure housing for women seeking shelter from abuse ", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Continue efforts to expand the coverage of and access to health services", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Adopt the necessary measures to proceed, as soon as possible, to abolishing the de jure death penalty and consider the possibility to adhere to ICCPR-OP2 ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Continue its efforts to prevent, punish and eradicate violence against boys and girls", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Amend the legislation on the protection of families in order to widen the definition of family", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Seek the technical and financial assistance of United Nations partners and specialized agencies to improve its education system so as to reduce illiteracy and school drop-out rates, particularly of girls", - "values": [ - "1 - Minimal action" - ] - }, - { - "text": "Ratify the Convention against Torture and other Cruel, Inhuman or Degrading Treatment or Punishment and its Optional Protocol toward the establishment of a national preventive mechanism", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Building on a number of international conventions and instruments, including the Durban Declaration and Programme of Action, Costa Rica has pledged to take affirmative action in favour of persons of African descent ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Intensify its public policies in the area of homeless migrant children, by identifying the number of homeless children and their specific needs, and by guaranteeing their right to health, education and housing ", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Increase the representation and participation of women in the public sector", - "values": [ - "4 - General action" - ] - }, - { - "text": "Continue to work and coordinate with countries in the region to strengthen the regional framework to deal with irregular migration and human trafficking in a comprehensive and sustainable manner, bearing in mind international human rights and humanitarian principles ", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Provide adequate protection to asylum seekers and cross-border refugees including especially those from neighbouring countries, in accordance with humanitarian considerations and relevant international norms such as the principle of non-refoulement ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Put in place an independent national mechanism for the inspection of places of deprivation of liberty ", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Encourage the efforts displayed to combat terrorism", - "values": [ - "4 - General action" - ] - }, - { - "text": "Prohibit all forms of corporal punishment of children in any setting including the home and as a sentence of the courts ", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Continue the process of reform of the security forces to provide them with better capacity and training on human rights and moderate the use of force ", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Ensure the full transposition into national law of the provisions of the CAT ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Adopt legislation prohibiting practices of violence affecting Congolese women in line with CEDAW and eradicate female genital mutilation. ", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Continue to take the necessary measures to end trafficking in human beings, including through the implementation of the national program on combating trafficking in human beings ", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Abrogate or amend section 377 of the Penal Code to guarantee non-discrimination on the grounds of sexual orientation or gender identity ", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Develop a comprehensive national policy and strategic plans to create jobs and provide equal opportunities ", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Pursue its development plans as considered an alienable right and to support the current efforts to achieve development to be attained in practice ", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Continue efforts for gender equality in the context of the National Plan of Action of Gender Equality", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Recognize the competence of the treaty bodies to receive and examine complaints from individuals, by ratifying the relevant treaties", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Continue its engagement with the United Nations human rights mechanisms for the promotion and protection of human rights", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Accede to the Rome Statute of the International Criminal Court and amend its national legislation to ensure that it is in line with the Rome Statute, including incorporating relevant provisions in order to comply with the Court", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Promulgate as soon as possible a law to establish an effective national preventive mechanism against torture", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Ensure that reports of the use of excessive force or ill-treatment by law enforcement officials are fully investigated ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Take serious measures to end violence against women and children", - "values": [ - "4 - General action" - ] - }, - { - "text": "Continue its efforts to implement the adopted National Strategies aiming at providing further protection and promotion for human rights in the country", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Adopt measures against ethnic profiling and prevent any collection of personal data on the basis of ethnic origin without the prior consent of those concerned", - "values": [ - "4 - General action" - ] - }, - { - "text": "Step up efforts in the fight against trafficking in human beings, including the full implementation of the recommendations from the Special Rapporteur on trafficking, after her visit to Gabon in May 2012", - "values": [ - "4 - General action" - ] - }, - { - "text": "Pledge financial assistance and support to the Fusi Alofa Tuvalu", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Guarantee that independent journalists, human rights defenders and political dissidents have the possibility to exercise the right to assembly, association, movement or expression and freedom of expression without the risk of harassment, intimidation or persecution", - "values": [ - "4 - General action" - ] - }, - { - "text": "Intensify its awareness-raising efforts about violence against women, and put in place concrete prevention measures to ensure that perpetrators are brought to justice ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Effectively implement the relevant policies in the field of combating domestic violence in order to prevent domestic violence and to ensure impartial and prompt investigation and prosecution of perpetrators", - "values": [ - "4 - General action" - ] - }, - { - "text": "Work in close cooperation with the OHCHR in order to establish an OHCHR office within Guinea as quickly as possible ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Ensure that the conditions of all immigration detention and reception centres are in conformity with international standards", - "values": [ - "4 - General action" - ] - }, - { - "text": "Ratify the ICPPED and define the crime of enforced disappearances as an offence in view of investigating and punishing such acts of crime", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Pursue its reform of the security sector", - "values": [ - "4 - General action" - ] - }, - { - "text": "Continue its efforts to ensure an equal opportunity to participate in the political process for all of its citizens ", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Adopt a list of hazardous work activities prohibited for children, and better enforce existing laws to fully protect children from the worst forms of child labour and all forms of sexual exploitation", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Accord priority to the ratification of ICESCR", - "values": [ - "4 - General action" - ] - }, - { - "text": "Continue to expand existing programmes and introduce new ones where necessary to support and to promote the meaningful participation of all persons with disabilities in society", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Strengthen protection for victims of human trafficking by providing temporary residency in order to promote cooperation with law enforcement and establish legal alternatives to their deportation to countries where they may face retribution or hardship", - "values": [ - "4 - General action" - ] - }, - { - "text": "Adopt a policy of taking an explicit and published decision on instituting a federal investigation and prosecution in all cases involving violence against human rights defenders ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Inform the Human Rights Council as part of the reporting process outlined in the National Report, of implementation of LLRC Action Plan recommendations", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Conduct more effective campaigns, as well as necessary legal reforms, to eradicate aggressions against minors", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "End the practice of using criminal defamation laws to restrict freedom of expression and peaceful assembly and association in accordance with international obligations", - "values": [ - "4 - General action" - ] - }, - { - "text": "Adopt legislation on access to vocational training and develop programmes to improve the integration of foreigners and minority children in schools", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Continue with the implementation of its development and poverty-reduction policy, strengthen international cooperation, and make greater efforts to reduce poverty ", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Step up its efforts to align the domestic legislation with the provisions of the Rome Statute", - "values": [ - "4 - General action" - ] - }, - { - "text": "Fully prioritise fulfilling the right to food in its public spending, thus furthering recent improvements in the food situation", - "values": [ - "4 - General action" - ] - }, - { - "text": "Further continue the implementation of the national development plan for generating resources, which is useful to combat poverty", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Set up a national human rights institution in accordance with the Paris Principles, as the authorities committed to during the first review", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Step up its efforts to combat the trafficking in persons and to formulate a national plan of action to prevent such trafficking", - "values": [ - "4 - General action" - ] - }, - { - "text": "Guarantee due process of law in all judicial proceedings", - "values": [ - "4 - General action" - ] - }, - { - "text": "Continue to implement Child Protection Act", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Implement measures to assist states and local governments in combating excessive use of force by the police and eliminating racial profiling", - "values": [ - "4 - General action" - ] - }, - { - "text": "Provide access to legal status for asylum seekers and refugees without discrimination", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Abolish corporal punishments such as lashes and amputation ", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Consider regulating articles 3 [a] and 4 of ILO Convention 182, by passing legislation listing prohibited occupations for minors under 18", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Continue to work to eliminate FGM, particularly in rural areas ", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Take necessary steps to revise its legislation on abortion and provide for clear exceptions, in line with international human rights law and standards, so as to ensure the right to abortion in cases of rape and incest, as well as cases entailing serious risks to the health of the mother or fatal foetal abnormality", - "values": [ - "4 - General action" - ] - }, - { - "text": "Ratify the Optional Protocols to the International Covenant on Economic, Social and Cultural Rights and to the Convention against Torture, as well as the Second Optional Protocol to the International Covenant on Civil and Political Rights", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Continue the comprehensive reforms that Yemen committed to in the areas of building strong and effective institutions, strengthening the rule of law and promoting human rights ", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Co-operation with the Special Rapporteur on the situation of human rights in Eritrea ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Continue promoting the right to work including to reduce the unemployment rate", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Implement the Media Law in line with all obligations under international human rights law", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Increase official development assistance to the United Nations target of 0.7 per cent of GDP", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Extend the Anti-Trafficking in Persons Task Force to cover every part of the country and ensure that child trafficking in all its forms is comprehensively defined and criminalized", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Take the necessary steps to become a party to all major human rights instruments, including the Convention against Torture and Other Cruel, Inhuman or Degrading Treatment or Punishment, the International Convention for the Protection of All Persons from Enforced Disappearance and the Convention on the Rights of Persons with Disabilities and its Optional Protocol ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Continue reform of the Iraqi Armed Forces and Security Services in accordance with article 9(1)(a) of the Iraqi Constitution to include all components of the Iraqi people, creating a force which ensures security and stability for all individuals equally and throughout Iraq, thereby eliminating the need for the use of militias ", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Further promote women's and children's rights taking into consideration the views of relevant treaty bodies of the United Nations system ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Continue consolidating its excellent social protection system for the benefit of its population", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Provide enhanced training to law enforcement, immigration and judicial officials regarding trafficking cases and victims, and provide foreign victims of trafficking with legal alternatives to deportation ", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Finalize the establishment of the State bureau of investigations and accord it the resources and independence needed to investigate crimes committed by public officials, judges and law enforcement officers, thereby addressing impunity", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Implement efficiently recently ratified international conventions, especially in the field of child rights ", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Take immediate action to align all domestic laws and pending legislation with the Convention on the Elimination of All Forms of Discrimination against Women, adopt without further delay the Bill on Sexual Offences and Domestic violence and, take all necessary measures to abolish traditional practices that are harmful to women and girls ", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Prohibit discrimination and criminalize violence against persons on the basis of their sexual orientation or gender identity", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Take additional measures to guarantee access for all citizens to safe drinking water and sanitation ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Increase the age of criminal responsibility, which is now set at 7 years, to conform to international standards ", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Accede to instruments which are conducive to making an effective contribution to combating corruption, to support the Strategic Plan for Transparency, Ethics and the Prevention of Corruption 2009-2012 - in particular consider the possibility of taking inspiration from existing models of institutions in certain countries to establish a body to combat corruption and to accede to the United Nations Convention against Corruption ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Invite the Special Rapporteur on torture to visit the country", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Finalise the ratification process of the ICESCR ", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Continue its process of accession to the Rome Statute of the International Criminal Court and take all necessary measures to incorporate it into its national legislation", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Amend, in accordance with CEDAW, discriminatory provisions vis-a-vis women contained in the Civil and Penal Code, and more generally take necessary measures to promote equality of women and men in the realms of family, economy and policy.", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Adhere to the Rome Statute and fully harmonize its national legislation with it", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Strengthen efforts to fulfil its obligations under the Convention on the Elimination of all Forms of Discrimination against Women, including by adopting and implementing legislation prohibiting female genital mutilation ", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Extend to other federative entities, the categorization of the crime of forced disappearance and the full compensation mechanism for victims and members of their families", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Submit its periodic reports in a timely manner to treaty bodies ", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Restart the four-party Maputo process talks with the goal of establishing an inclusive transitional Government that would prepare the country for free and fair elections and a return to democratic and constitutional rule", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Continue to address income inequality and share its experiences with other developing countries in the area of poverty eradication, in particular its eKasih programme", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Adopt without delay a uniform Family Code that fully complies with the provisions of CEDAW.", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Adopt measures to prevent violence and discrimination against persons on the basis of their sexual orientation and gender identity", - "values": [ - "4 - General action" - ] - }, - { - "text": "Strengthen mechanisms for detaining, identifying and providing assistance to vulnerable migrants at borders, in full compliance with international law", - "values": [ - "4 - General action" - ] - }, - { - "text": "Consider decriminalizing homosexual activities between consenting adults.", - "values": [ - "3 - Considering action" - ] - }, - { - "text": "Ensure that members of political parties, media and civil society are permitted to exercise freely their rights to free expression, association and peaceful assembly according to international standards", - "values": [ - "4 - General action" - ] - }, - { - "text": "Integrate international human rights instruments into domestic law", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Mandate the Office of the Ombudsman or another entity to receive and address complaints by women about discrimination", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Take measures to reform the Judicial Service Commission, so as to ensure an independent and impartial judiciary which respects fundamental rights", - "values": [ - "4 - General action" - ] - }, - { - "text": "Include a human rights component in the school curriculum", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Continue to implement the advice of the important United Nations treaty bodies", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Respect the rights to freedom of expression, association and assembly by allowing human rights defenders, political dissidents and journalists to express their views freely in line with international human rights law ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Ratify the Optional Protocol to the Convention on the Rights of the Child on the involvement of children in armed conflict, and the Optional Protocol to the Convention on the Rights of the Child on the sale of children, child prostitution and child pornography", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Pursue efforts with regional and international communities in seeking financial and technical assistance to domesticate ratified international treaties ", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Step up measures to combat the scourge of prostitution and trafficking in women and girls, including by conducting more nationwide awareness campaigns and training for law enforcement officials, migration officials and border police.", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Adopt more substantive measures against racism and xenophobia and establish corresponding mechanisms for monitoring and ensuring accountability ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Step up efforts to eradicate female genital mutilation (FGM), known as "excisions", which is a most common practice rooted in the Malian tradition", - "values": [ - "4 - General action" - ] - }, - { - "text": "Continue to consolidate the Human Rights Network of the Executive branch", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Continue the efforts in favour of the promotion of the rights of women and children, and in the area of the fight against discrimination", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Enhance cooperation with other countries and organs and funds of the United Nations to increase the number of financial and technical programmes aimed at strengthening the capacity of Vanuatu in the area of human rights.", - "values": [ - "4 - General action" - ] - }, - { - "text": "Continue the current practice of granting clemency and commuting death sentences, establish an official moratorium on executions and continue the public discourse to finally abolish the death penalty", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Take the commitment to stop State funding of organizations or political parties that advocate racism", - "values": [ - "4 - General action" - ] - }, - { - "text": "Withdraw its reservations and interpretative statement with respect to Article 4 of the ICERD ", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Take necessary measures to ensure the guarantee in the Nepal's Constitution of full equality between men and women with respect to the nationality of their children and in accordance with article 9 (2) of the Convention on the Elimination of All Forms of Discrimination against Women, which Nepal has ratified ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Stop using chemical weapons as documented by the relevant United Nations organs", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Strengthen the enforcement of existing legislation prohibiting female genital mutilation and at the same time enhance awareness-raising activities by focusing on the health risks of this harmful practice", - "values": [ - "4 - General action" - ] - }, - { - "text": "Continue to seek assistance from the international community in line with its national plan", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Take action to facilitate a prompt and consensual solution to the issue of the restitution to religion institutions of worship places confiscated under the communist regime, as a way of assuring the full enjoyment of the freedom of religion in the country ", - "values": [ - "4 - General action" - ] - }, - { - "text": "All decisions of the National Safety Courts should be subject to review in ordinary courts ", - "values": [ - "3 - Considering action" - ] - }, - { - "text": "Continue to successfully promote human rights by reinforcing and increasing the capacity of the Office of the Ombudsman", - "values": [ - "4 - General action" - ] - }, - { - "text": "Enact legislation prohibiting discrimination against lesbian, gay, bisexual, transgender and intersex persons, including removing laws criminalising same sex activity", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Adopt a comprehensive anti-discrimination law affording protection to all individuals, irrespective of their sexual orientation or gender identity", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Make further efforts to increase girls' enrolment in school, as well as awareness-raising in society regarding the importance of girls' education", - "values": [ - "4 - General action" - ] - }, - { - "text": "Continue to work at the international level in favour of human rights education ", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Pursue the effort to increase the standard of living of all Liberians with specific programmes in the areas of accommodation, health, education and other basic social services", - "values": [ - "4 - General action" - ] - }, - { - "text": "Establish a solid legislative mechanism to punish all forms of torture and violence committed by the police during investigations in order to get confessions", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Step up measures of protection against violence and discrimination on the grounds of sexual orientation, particularly by enacting laws that prohibit such discrimination, and take measures to ensure the effective exercise of the rights to peaceful association and assembly of the LGBT community ", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Reconsider the practice of confiscating the passports of migrants who bring to the courts a dispute with their employers, or consider an emergency judicial procedure which makes it possible to fully guarantee the rights of migrant workers on its territory ", - "values": [ - "3 - Considering action" - ] - }, - { - "text": "Give more freedom to the Rwandan media and human rights activists to operate and engage constructively with decision makers ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Establish a national mechanism for the prevention of torture, in line with the Optional Protocol to the Convention against Torture", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Intensify its fight against all discrimination that hinders trade union freedom of all workers, both national and foreign", - "values": [ - "4 - General action" - ] - }, - { - "text": "Raise awareness, through the media and educational means, of the value of human rights and respect for human rights, as well as violence against women ", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Accede to ICCPR ", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Take further steps to effectively address hate speech and protect the rights of minorities, including introducing legislation to prohibit discrimination on the grounds of race, ethnicity, sexual orientation and gender identity", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Integrate a human rights component into the protocols of actions for security forces", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Guarantee freedom of peaceful assembly and association by implementing the new Public Order Bill", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Ensure registration at birth of all children, including non-Khmer citizens born in Cambodia", - "values": [ - "4 - General action" - ] - }, - { - "text": "Further promote prenatal care and consultation to reduce the need for emergency transportation at the time of labour and thereby reduce the risk of death among mothers and children", - "values": [ - "4 - General action" - ] - }, - { - "text": "Incorporate a gender perspective in all government policies that target women belonging to different groups of vulnerable people, in line with relevant recommendations of the Committee on the Elimination of Discrimination against Women", - "values": [ - "4 - General action" - ] - }, - { - "text": "Continue its efforts aimed at the development of policies and programmes for poverty alleviation and eradication, with special emphasis on vulnerable groups, including people with disabilities and women and children, and mainstream a gender perspective into all relevant policies and programmes being developed ", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Implement with strict observation to the principle of non-refoulement, the monitoring mechanism that is being developed to monitor forcible removals ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Accede to the two optional protocols to the CRC", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Ratify the Optional Protocol to the Convention against Torture ", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Adopt the judicial and administrative measures necessary to make effective the investigations before tribunals and sanctions for declarations of incitement to racial hatred and other acts of discrimination against minorities", - "values": [ - "4 - General action" - ] - }, - { - "text": "Establish a formal moratorium on the death penalty and ratify the Second Optional Protocol to the International Covenant on Civil and Political Rights, with a view to abolishing the death penalty both in practice and in law", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Incorporate into domestic legislation the provisions of the Convention on the Elimination of All Forms of Discrimination against Women and of the Convention on the Rights of the Child ", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Bring the Internet Law in line with International and European standards, including case law of the European Court of Human Rights on the rights to freedom of expression and to privacy", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Ratify the ICCPR as soon as possible and bring its legislation into line with its provisions", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Ratify the United Nations Convention against Transnational Organized Crime and its Optional Protocols and accord appropriate legal status to the provisions of the Convention within domestic legislation", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Improve overall conditions in prisons and adopt relevant measures to tackle the problems such as overcrowding ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Develop and strengthen international human rights standards among Afghan citizens ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Consider ratifying the International Convention on the Elimination of All Forms of Racial Discrimination, the Convention against Torture and Other Cruel, Inhuman or Degrading Treatment or Punishment, and the Convention on the Rights of Persons with Disabilities, as well as the Optional Protocols thereto - the International Convention for the Protection of All Persons from Enforced Disappearance - the First and Second Optional Protocols to the International Covenant on Civil and Political Rights - the Protocols to the Convention on the Elimination of All Forms of Discrimination against Women and to the Convention on the Rights of the Child - and the Rome Statute - accede to the Conventions on refugees and stateless persons - and accomplish the human rights goals set out in Human Rights Council resolution 9-12", - "values": [ - "3 - Considering action" - ] - }, - { - "text": "Continue promoting the sound social policies implemented to eradicate poverty and inequality", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Take all necessary measures to remove the discrepancy which still exists in the level of the enjoyment of the right to food by the Togolese people, so that this important right can be enjoyed by all the Togolese People", - "values": [ - "4 - General action" - ] - }, - { - "text": "is in the process of building a new prison that will enable a better separation of prisoners and improve prison conditions in the country in general. When the new prison will be ready in 2015, two prisons that have not met the highest standards will be closed. Iceland will in addition continue to examine ways to achieve the goal set forth in the Convention on the Rights of the Child to separate juvenile prisoners from adult", - "values": [ - "4 - General action" - ] - }, - { - "text": "Expedite means and ways towards the ratification of the ICRMW as part of its international obligation in promoting and protecting the rights of migrant workers ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Ratify other key human rights treaties including the Convention Against Torture and Other Cruel, Inhuman and Degrading Treatment and the Convention on the Elimination of All Forms of Discrimination Against Women ", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Address particularly the question of inequality in access to education, as a core aspect of the realization of the right to education ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Review its procedures, practices and legislation", - "values": [ - "3 - Considering action" - ] - }, - { - "text": "Continue efforts to strengthen the education system, in particular access to education in rural areas", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Continue taking efforts aimed at combating the unemployment phenomenon", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Continue to give serious consideration to ratification of the International Convention on the Elimination of All Forms of Racial Discrimination", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Abolish all discriminatory laws which still exist in relation to women in the Democratic Republic of the Congo", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Continue its efforts to combat HIV/AIDS ", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Strengthen the institutional framework to combat all forms of racial discrimination and incitement to hatred, in particular against migrants", - "values": [ - "4 - General action" - ] - }, - { - "text": "Expand human rights training and awareness-raising programmes so that they include all aspects of human rights", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Reintroduce the moratorium and abolish capital punishment", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Continue its national efforts for the promotion and protection of human rights, including in the area of strengthening its national human rights architecture", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Establish the national mechanism for the prevention of torture under OP-CAT and appoint an independent and qualified expert, provided with necessary resources to exercise its mandate", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Include the fight against xenophobia and racism in the education curricula.", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Raise the legal minimum age of marriage to 18 years for girls", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Take the appropriate measures to develop a social environment conducive to the empowerment of civil society, in particular, by opening up new channels aimed at reflecting the expectations of young people when it comes to structures and socio-economic processes ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Free all persons imprisoned on the grounds of their sexual orientation ", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Sign and ratify ICCPR-OP1, ICCPR-OP2, OP-ICESCR and OP- CAT", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Take more proactive measures to further strengthen the human rights situation in the country and develop a mechanism to monitor and record human rights abuses ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Adopt legislation prohibiting FGM", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Work closely with the Autonomous Government of Bougainville to secure a transitional justice process without human rights violations", - "values": [ - "4 - General action" - ] - }, - { - "text": "Implement comprehensive legislation to effectively combat the widespread cases of violence against women and offer further protection to victims of domestic violence", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Pay special attention to the health needs of women in rural areas ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Continue working for the full realization of the human right to water and sanitation", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Extend invitations in particular to the Special Rapporteur on the question of torture and the Special Rapporteur on freedom of opinion and expression.", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Undertake efforts to ensure that the new draft constitution covers the equality of women condition", - "values": [ - "4 - General action" - ] - }, - { - "text": "Intensify efforts to address the underlying causes of mortality and malnutrition among children in the first years of life, including aspects related to the lack of access to health care services, poverty and the low level of education among Roma families and families living in rural areas. Also strengthen prenatal and postnatal services, implementing additional programs on maternal breastfeeding and hygiene for the development and survival in early childhood", - "values": [ - "4 - General action" - ] - }, - { - "text": "Sign and ratify ICCPR, ICESCR, CAT and their Optional Protocols as well as the Optional Protocols to CEDAW, CPRD and CED ", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Reconsider consequences of the death penalty to the society and to take steps to reduce the number of crimes which carry death penalty as sanction, and secondly, to introduce a moratorium on the death penalty that would be followed by abolition", - "values": [ - "3 - Considering action" - ] - }, - { - "text": "Review its national legislation in order to ensure its full alignment with obligations under the Rome Statute, in particular by incorporating provisions enabling cooperation with the Court ", - "values": [ - "3 - Considering action" - ] - }, - { - "text": "Continue to take tangible measures to achieve the Millennium Development Goals ", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Impose an immediate moratorium on flogging, with a view of abolishing it in law, and prohibit all forms of corporal punishment in all settings", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Redouble efforts to protect children, migrants and internally displaced persons", - "values": [ - "4 - General action" - ] - }, - { - "text": "Prohibit all forms of corporal punishment of children ", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Guarantee the safety of human rights defenders and journalists and ensure they can freely exercise their activities", - "values": [ - "4 - General action" - ] - }, - { - "text": "Carry out a review of the Family Code and amend the relevant provisions to ensure equality between men and women with regard to marriage, divorce and inheritance ", - "values": [ - "3 - Considering action" - ] - }, - { - "text": "Continue efforts to ensure that the action of police forces and conditions in places of detention meet international human rights standards fully.", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Make even greater efforts in the right to education.", - "values": [ - "4 - General action" - ] - }, - { - "text": "Take the measures necessary to protect children from hazardous work in the informal sector ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Continue to take measures to ensure access to quality education and, in particular, to encourage women and girls to remain in education", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Review its domestic legislation with a view to aligning it with the provisions of the human rights instruments that it has ratified", - "values": [ - "3 - Considering action" - ] - }, - { - "text": "Strengthen measures to improve conditions in the prisons. ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Further advance in eradicating poverty through its accurate social policies to increase the quality of life of its people, particularly of the most vulnerable", - "values": [ - "4 - General action" - ] - }, - { - "text": "Ratify the Optional Protocol to the International Covenant on Economic, Social and Cultural Rights, accede to the inquiry procedure and inter-State communications", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Withdraw reservations to articles 2 and 7 of the CRC to ensure to everyone the right to a name and nationality through universal birth registration", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Step up its efforts to enhance women's participation at the decision-making level in both public and private sectors in line with the progress made in women's education", - "values": [ - "4 - General action" - ] - }, - { - "text": "Ratify the Optional Protocol to the International Covenant on Economic, Social and Cultural Rights (OP-ICESCR) ", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Accept the recommendation of the Committee on the Elimination of Discrimination against Women to develop a comprehensive strategy or action plan to prevent and eliminate all forms of violence against women and girls, and to develop an effective institutional mechanism for coordinating, monitoring and assessing the effectiveness of the measures taken", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Establish an independent national human rights commission in compliance with the Paris Principles and finalize the submission of the required bill to the Parliament for adoption.", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Continue the process of political reforms, especially to ensure freedom of expression, freedom of thought and the right to demonstrate ", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Continue the same consultative process in the universal periodic review follow-up process to be undertaken ", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Provide redress to victims of human trafficking", - "values": [ - "4 - General action" - ] - }, - { - "text": "Abolish the death penalty, as previously recommended", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Recommended further cooperation with special procedures.", - "values": [ - "4 - General action" - ] - }, - { - "text": "Keep up its work to combat the adverse consequences of the nuclear testing programme, including the provision by its promoters of the necessary resources to deal with those consequences", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Abolish the 2010 National Security Act ", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Establish an independent mechanism for investigating allegations of torture and ill-treatment by law-enforcement officials, and ensure justice and reparation to victims of such human rights violations ", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Declare a moratorium on executions with a view to abolishing the death penalty and, to that end, support the work of the parliamentary working group on the death penalty, particularly with a view to amending the Criminal Code and to adhering to the Second Optional Protocol to the International Covenant on Civil and Political Rights, aiming at the abolition of the death penalty", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Give adequate resources to the Human Rights Commission to enable it to discharge faithfully the onerous duty of protecting and promoting human rights in Sierra Leone ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Strengthen existing legislation to effectively eliminate gender-based violence, including domestic violence, with a view to better protecting victims and holding perpetrators accountable", - "values": [ - "4 - General action" - ] - }, - { - "text": "Systematically consult with civil society and NGOs on the implementation of UPR, United Nations treaty bodies and United Nations special procedures' recommendations ", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Enhance the quality and access to information and communication technologies", - "values": [ - "4 - General action" - ] - }, - { - "text": "Further develop projects concerning relations between different religious and ethnic communities, in line with relevant recommendations of the Special Rapporteur on freedom of religion or belief ", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Continue its focus on domestic and gender-based violence and ensure the effective implementation of the national action plan in this regard", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Protect minors and ensure that imprisonment of minors is separated from imprisonment of adults", - "values": [ - "4 - General action" - ] - }, - { - "text": "Bring all settlements building in the occupied Palestinian and Arab Territories to a halt", - "values": [ - "4 - General action" - ] - }, - { - "text": "Consider signing and ratifying international instruments to which it is not a party, especially the International Covenant on Economic, Social and Cultural Rights, the Convention against Torture and Other Cruel, Inhuman or Degrading Treatment or Punishment and its Optional Protocol, and the Convention on the Rights of Persons with Disabilities ", - "values": [ - "3 - Considering action" - ] - }, - { - "text": "Continue pursuing the promotion of human rights, particularly through the consolidation of democratic institutions, freedom of expression, the protection of women, and assistance to indigenous and Afro-Honduran peoples ", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Enact legislation to prohibit female genital mutilation and conduct awareness-raising programmes in this regard, particularly for parents, women and girls", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Sustain the positive momentum in upgrading its laws and institutions, in particular in the areas of the rights of women and children", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Pursuing the process to abolishing the death penalty", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Continue judicial reform to improve access to justice by promoting better coverage throughout the country and by updating its prison system", - "values": [ - "4 - General action" - ] - }, - { - "text": "Work towards strengthening the independence of the judiciary through the adoption of the Judges Bill of 2014", - "values": [ - "4 - General action" - ] - }, - { - "text": "Strengthen its efforts to improve the detention conditions of migrants and asylum seekers, including by refraining from excessive use of force, ill-treatment, and prolongation of detention periods, and also to adopt a comprehensive integration strategy for their early stage integration", - "values": [ - "4 - General action" - ] - }, - { - "text": "Grant the National Human Rights Commission autonomy and independence in accordance with the Paris Principles", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Continue to request technical assistance and financial support to improve education services, to redraft the Kingdom's Constitution, and its activities in the promotion of human rights.", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Continue its efforts to overcome discrimination based on gender, race, descent and nationality ", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Undertake extensive advocacy campaigns to encourage greater women's participation in the political process at both the national and local levels ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Issue a standing invitation to all the United Nations human rights special procedures mandate holders", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Implement the recommendations under the United Nations Convention against Corruption peer review process conducted in April 2015 and in particular review its legal framework to criminalize the bribery of foreign officials and officials of international organizations and pass legislation that allows for the forfeiture of unexplained wealth by public officials", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Investigate all cases of arbitrary and illegal detentions with all due diligence.", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Combat and address acts of racial hatred", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Pursue this very important work [developing human rights indicators in several key priority areas], which strengthens the human rights implementation on the ground", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Take the necessary legislative, civil and criminal measures to provide the appropriate protection to women, and children that are victims of sexual abuse ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Provide legal protection for equality of opportunity in employment for all of its citizens, particularly for persons with disabilities", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Introduce a closer cooperation with special procedures and provide them with a standing invitation ", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Guarantee the right to work and equality of all public sector workers and ensure that their human dignity is respected without gender-based discrimination", - "values": [ - "4 - General action" - ] - }, - { - "text": "Strengthen and deepen interaction with relevant international human rights mechanisms.", - "values": [ - "4 - General action" - ] - }, - { - "text": "Intensify its efforts to ensure that the Roma are not victims of discrimination, especially in areas such as access to housing and the right to drinking water and sanitation", - "values": [ - "4 - General action" - ] - }, - { - "text": "Consider undertaking a comprehensive review of its normative framework on sanitation, with a view to ensuring the establishment of a coherent and comprehensive system for the collection, management, treatment and disposal of wastewater in order to prevent the contamination of rivers and other water streams ", - "values": [ - "3 - Considering action" - ] - }, - { - "text": "Consider ways to ensure the 2017-2021 National Human Rights Plan is progressed and implemented in a manner consistent with the international human rights treaties to which Peru is a party", - "values": [ - "3 - Considering action" - ] - }, - { - "text": "Establish a permanent institution to synchronise the implementation of recommendations, the monitoring of performance and reporting ", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Ratify the two current Optional Protocols thereto, on the involvement of children in armed conflict (2000) and on the sale of children, child prostitution and child pornography (2000) ", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Develop a favourable environment for the functioning of all non-governmental organizations and political parties, including simplifying registration procedures ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Continue further efforts to improve the educational and health systems in the country", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Extend an open and standing invitation to all special procedures of the Council.", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Develop reliable statistics on the number of children belonging to the Roma, Ashkali and Egyptian minorities in the Montenegrin school system.", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Publish or make available precise information on the identity and number of the individuals currently awaiting execution and of those who were executed in the past year", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Establish a specific programme to produce opportunities for income for women, mainly in rural areas", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Continue efforts to promote and protect human rights while preserving the institution of the family in all its components and preserving religious tolerance ", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Amend article 732 of the Commercial Law that restricts the possibility of persons with disabilities to obtain life insurance", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Disseminate the culture of human Rights through school curricula", - "values": [ - "4 - General action" - ] - }, - { - "text": "Continue developing programmes aimed at providing equal access to quality education for vulnerable groups, with a special emphasis on the inclusion of persons with disabilities and children under poverty conditions guaranteeing gender equality", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Take immediate measures to introduce a formal moratorium on executions and take concrete steps toward the total abolition of the death penalty", - "values": [ - "4 - General action" - ] - }, - { - "text": "Effectively investigate and prosecute allegations of sexual violence and intensify efforts to finalize a national action plan to combat sexual violence ", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Repeal or revise discriminatory provisions in the legislation, including the four recently adopted laws on the protection of race and religion, and in this regard, adopt an action plan to promote, through concrete activities, tolerance and peaceful inter-faith and inter-ethnic co-existence in Myanmar", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Ensure the timely and unimpeded passage of humanitarian relief and guarantee the safety of humanitarian workers in the conflict zones", - "values": [ - "4 - General action" - ] - }, - { - "text": "Establish comprehensive legislation to help law enforcement officials identify cases of early and forced marriages and organize awareness-raising campaigns in that regard ", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Continue exercising its sovereign right of implementing its penal code in conformity with universally agreed human rights standards, including the application of the death penalty.", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Continue and strengthen Austria's aid programmes and projects to improve the conditions of people in developing countries", - "values": [ - "4 - General action" - ] - }, - { - "text": "Bring its criminal laws on criminalization of consenting relations between adults of the same sex, and on offences of indecent assault and serious indecency that are defined vaguely, into line with international norms with respect to privacy and non-discrimination", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Prevent the involvement of foreign mercenaries in the internal conflict and their attempts to turn human rights violations into an ethnic and religious conflict", - "values": [ - "4 - General action" - ] - }, - { - "text": "Promote equal participation of all citizens in political and public affairs and adopt legislation regulating the establishment and functioning of political parties", - "values": [ - "4 - General action" - ] - }, - { - "text": "Strengthen the equal participation of women in public office", - "values": [ - "4 - General action" - ] - }, - { - "text": "Ratify the international instruments it has already signed, in particular the International Convention on the Elimination of All Forms of Racial Discrimination, the Convention against Torture and its Optional Protocol", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Adopt a specific law to combat violence and discrimination against women which includes the prohibition of forced marriage as well as marital rape ", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Increase the attention and effective measures to fight against discrimination faced by minorities, ensuring the protection of their rights ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Issue a standing and open invitation to the special procedures of the Human Rights Council", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Take all appropriate measures to ensure the rights of people with mental or intellectual disabilities", - "values": [ - "4 - General action" - ] - }, - { - "text": "Continue public awareness campaigns on domestic violence and the introduction of specific rape prevention programmes", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Prevent and combat racism and hate speech, including through human rights education and training, and by promoting tolerance", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Accept the pending visit request of the Special Rapporteur on the human rights of migrants, which is pending since 2006", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Continue pursuing appropriate policies, such as the Action Programme to Eliminate Child Labour in Namibia 2008-2012, in particular with regard to ILO Convention No. 182 concerning the Prohibition and Immediate Action for the Elimination of the Worst Forms of Child Labour, to address the phenomenon of child labour ", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "In accordance with the Convention on the Rights of the Child, create appropriate conditions for arrested juveniles and ensure that detention of juveniles is used only as a measure of last resort", - "values": [ - "4 - General action" - ] - }, - { - "text": "Tunisia has agreed in principle to allow Human Rights Watch to visit prisons. This is part of its cooperation with international human rights organizations, particularly the International Committee of the Red Cross (ICRC), following an agreement signed in April 2005", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Continue to promote quality education for all by allocating adequate resources, without any discrimination ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Launch an awareness campaign to explain the historical reasons for the return of Meskhetian Turks so as to avoid any intolerance against them", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Increase the age of criminal responsibility from 12 to 16 years and arrange that convicted minors aged between 16 and 18 years complete their sentences segregated from the adult prison population", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Attach greater priority to protection and aid programmes for victims of the crisis and vulnerable social groups, especially orphans, abandoned children and displaced persons ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Ratify the International Convention on the Elimination of All Forms of Racial Discrimination ", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Implement fully the Prohibition of Female Genital Mutilation Act 2011 and the review of the policy on female genital mutilation", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Enact as a matter of priority a new media law guaranteeing freedom of expression, particularly social media, so people can express views without fear of retribution and with defamation covered under the civil rather than criminal code", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Ensure that the members of the Roma community, but also of other vulnerable groups, are protected from violence and attacks ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Provide statistical data regarding convictions for reported incidents of rape and defilement at its mid-term review", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Stop detention of minors in adult prisons ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Continue to strengthen its measures and mechanisms to overcome the challenges related to the protection of the rights of vulnerable groups, including indigenous women.", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Incorporate the Convention against Torture into the national legislation", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Deal with the issue of irregular migration sympathetically and consider further legislative protection of their fundamental human rights", - "values": [ - "4 - General action" - ] - }, - { - "text": "Jamaica stressed its commitment to promote and protect human rights and requested help to do so.", - "values": [ - "4 - General action" - ] - }, - { - "text": "Fully respect peaceful assembly in accordance with Angolan and international human rights law", - "values": [ - "4 - General action" - ] - }, - { - "text": "Better guarantee freedom of the press and freedom of expression, as well as the right to plural information", - "values": [ - "4 - General action" - ] - }, - { - "text": "Put an end to all forms of violence against women and girls belonging to Aboriginal communities ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Consider amending discriminatory legislation concerning women\u2019s rights", - "values": [ - "3 - Considering action" - ] - }, - { - "text": "Take all measures to protect women against all forms of sexual violence and bring to an end the related impunity ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Continue efforts to reduce juvenile violence and address the root causes of the problem.", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Analyse the possibility of creating a national follow-up system to international recommendations", - "values": [ - "3 - Considering action" - ] - }, - { - "text": "Establish an inter-institutional mechanism, in which relevant civil society actors will participate, in order to implement UPR recommendations as well as Human Rights Council's Special Procedures and Treaty Bodies recommendations", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Ratify all the main international human rights instruments, especially ICCPR and ICESCR", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Protect freedom of assembly and association by ensuring that peaceful demonstration can take place free from intimidation and harassment", - "values": [ - "4 - General action" - ] - }, - { - "text": "Take measures to eradicate traditional stereotypes of women, especially through educational programmes, and apply a gender perspective in the design of future policies and programmes", - "values": [ - "4 - General action" - ] - }, - { - "text": "Ratify the Optional Protocol to the Convention against Torture (OP CAT), which was signed already in 2005", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Put an end to online censorship ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Adopt measures to strengthen the protection of freedom of expression, information and the press.", - "values": [ - "4 - General action" - ] - }, - { - "text": "Review the Law on Public Associations and all relevant policies in order to eliminate inappropriate restrictions on the right to freedom of association and ensure that all civil society organizations, including those with foreign funding, can work free from undue administrative obstacles or harassment ", - "values": [ - "3 - Considering action" - ] - }, - { - "text": "Continue actions for the implementation of the objectives/targets of the Qatar National Vision 2030, which plans the evolution, in practice, of the economic, social, cultural, human and environmental development of the State during the next few years ", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Accelerate the implementation of its national strategy for the reduction of the scale of poverty, including by availing itself of advanced international experience in this regard ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Improve the conditions in pretrial detention facilities", - "values": [ - "4 - General action" - ] - }, - { - "text": "Criminalize different types of violence against women", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Take steps to ensure that the right to peaceful assembly is not hindered", - "values": [ - "4 - General action" - ] - }, - { - "text": "Reconsider its reservations to ICCPR, especially with regard to article 102 b and its compatibility with article 37c of the Convention of Rights of the Child with regard to the separation of children from adults in detention centres ", - "values": [ - "3 - Considering action" - ] - }, - { - "text": "Consider ratifying ILO Convention No. 189", - "values": [ - "3 - Considering action" - ] - }, - { - "text": "Take effective measures to prevent violence against women, including domestic violence", - "values": [ - "4 - General action" - ] - }, - { - "text": "Adopt all necessary measures to provide for free and independent media which reflect a plurality of opinions, including those of minority groups and political opposition parties ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Pass and implement its proposed legislation to prevent violence against women and adopt a strategy to properly tackle the unequal status of women in many areas including education, public life and decision-making ", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Lower the criminal responsibility for children, ban the application of the death penalty to children, and prohibit the recruitment of children as child soldiers and their participation in armed conflict ", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Take urgent measures to put an end to harmful traditional practices such as so-called \u201chonour killings\u201c, selective abortion on the basis of the sex of the fetus, sati, devadasi, early and enforced marriage, bringing the perpetrators to justice and guaranteeing assistance for victims", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Expedite the establishment of the national mechanism against torture in all provinces, provide it with human and financial resources and protect its independence", - "values": [ - "4 - General action" - ] - }, - { - "text": "Continue the efforts aimed at combating trafficking in persons, particularly women and children, in the framework of enforcing national legislation and the international conventions that South Africa has ratified", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Establish a national human rights institution which functions in accordance with the Paris Principles", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Withdraw the reservations made to CEDAW, as an extension of measures already taken in 1998", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Regarding counter-terrorism, Canada is committed to preventing and combating terrorism in a manner that fulfills its international obligations, including its human rights obligations.", - "values": [ - "4 - General action" - ] - }, - { - "text": "Continue its policies in improving women's rights", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Adopt all necessary measures to prevent, fight and punish any violence against women and children", - "values": [ - "4 - General action" - ] - }, - { - "text": "Review and implement the national human rights strategy in collaboration with the National Commission on Human Rights and Freedoms, and with reliance upon civil society, to ensure a long lasting and sustainable framework for the application and protection of human rights for the people of Cameroon", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Put an end to impunity whenever it occurs, investigate all complaints of torture and ill-treatment by law enforcement officers, prosecute and punish those responsible and ensure that information obtained under torture is not admissible in courts", - "values": [ - "4 - General action" - ] - }, - { - "text": "Continue to study in depth the steps for the adoption of the legal framework necessary for the application of the Convention on the Rights of Persons with Disabilities", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Ratify the Second Optional Protocol to the International Covenant on Civil and Political Rights, aiming at the abolition of the death penalty , aiming at the abolition of the death penalty", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Further improve access to the legal aid through the established centres in all provinces by providing them with necessary financing and qualified human resources", - "values": [ - "4 - General action" - ] - }, - { - "text": "Use the national programme "Brunei Vision 2035" as a guide for the adoption of national legislation on gender equality and women's empowerment ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Ensure the protection of women, in practice, from all forms of violence by implementing national legislation, as pledged in its National Report to universal periodic report, and to adopt a unified family code to ensure the equal status of women under law", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Strengthen government cooperation with civil society organizations in ensuring the protection and promotion of human rights", - "values": [ - "4 - General action" - ] - }, - { - "text": "Continue to collaborate with international organisations to promote and protect economic, social and cultural rights by all", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Establish a moratorium on the death penalty as a first step towards complete abolition ", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Continue to implement programmes and measures to prevent and combat HIV/AIDS", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Continue to promote its successful social policies aimed at satisfying the needs of its population", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Adopt legislation prohibiting discrimination on all grounds including race and ethnicity", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Thoroughly and timely implement standing invitations to special procedures.", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Invest sufficient resources to promote and protect the principle of equality in the fields of work, education and health ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Strengthen existing legal protections and enhance enforcement to combat discrimination against and mistreatment of women and girls ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Ratify the main human rights instruments, in particular the International Covenant on Economic, Social and Cultural Rights, the International Covenant on Civil and Political Rights and the Convention against Torture", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Consider the early ratification of CEDAW ", - "values": [ - "3 - Considering action" - ] - }, - { - "text": "Deny paramilitary organizations sites by Swedish services providers", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Respond positively to all pending visit requests of special procedures and extend a standing invitation to the mandate holders", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Ensure the successful implementation of their National Action Plan and Strategic Framework on Trafficking in Persons", - "values": [ - "4 - General action" - ] - }, - { - "text": "Continue to adequately resource its provincial schools building programme so that more children, particularly those from poor rural communities, can have access to schools that are safe and adequately equipped", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Consider prohibiting corporal punishment of children in all forms regardless of settings ", - "values": [ - "3 - Considering action" - ] - }, - { - "text": "Improve sexual and reproductive health services for women and girls, by enhancing access to contraceptives and promoting education on sexual and reproductive health, in order to prevent early pregnancies and sexually transmitted infections and diseases, especially HIV/AIDS", - "values": [ - "4 - General action" - ] - }, - { - "text": "Continue the dissemination of the culture of human rights through its inclusion in curricula", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Ratify the International Convention on the Elimination of All Forms of Racial Discrimination, International Covenant on Economic, Social and Cultural Rights, International Covenant on Civil and Political Rights and its Second Optional Protocol, aiming at the abolition of the death penalty", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Prevent racial discrimination and other forms of expression with xenophobic overtones against foreigners", - "values": [ - "4 - General action" - ] - }, - { - "text": "Consider ratification of core international human rights instruments to which it is not yet a party, such as ICCPR, CAT and ICESCR ", - "values": [ - "3 - Considering action" - ] - }, - { - "text": "Upgrade Slovak National Centre for Human Rights to a full-fledged national human rights commission in accordance with the Paris Principles.", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Increase public spending on the health sector in accordance with the 2017 National Health Policy and take further steps to strengthen health facilities", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Adopting legislation on alternative measures to imprisonment for the administration of justice for juveniles", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Strengthen the implementation of the existing programmes for poverty eradication, especially those directed towards the most vulnerable populations ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Enact laws setting principles on law, rights and obligations that govern family reunification", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Continue strengthening successful social policies that promote access to education and health of the people, particularly for women and children", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Recognize the justiciability of social, economic and cultural rights, in accordance with the Optional Protocol to ICESCR", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Continue encouraging socio economic development and poverty eradication ", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Take immediate measures to ensure that the Media Commission is fully independent ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Continue the efforts to prevent and fight violence against children", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Launch mechanisms for recognition of truth and compensation to victims of Andijan ", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Timely launch the formulation of the national human rights action plan ", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Investigate all allegations of human rights violations particularly in relation to persons who were detained during police operations and ensure that perpetrators are properly brought to justice and punished", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Take steps to bring domestic law and practice into line with existing international human rights standards in relation to freedom of expression, including media freedom", - "values": [ - "4 - General action" - ] - }, - { - "text": "Intensify its efforts to reduce discrimination based on gender and sexual orientation ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Continue implementing programmes and policies in the area of training aiming at strengthening and developing individual capacities ", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Further improve national institutions and human rights infrastructure, including the harmonization of domestic legislation and the legal system with the international and European Union instruments on persons with disabilities, the rights of the child, the prevention of domestic violence and trafficking in persons ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Undertake effective measures to further strengthen the existing mechanisms for consultation with the indigenous population on issues which have an impact on the economic and social aspects of the indigenous population ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Pursue efforts to ensure that complaints in cases of torture, arbitrary detention and disappearances are duly investigated", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Finally, Ambassador Roux, stressed that Belgium has voluntarily committed itself to submit a mid-term report to the Human Rights Council in 2013, to provide an overview on the progress achieved.", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Call on the international community to support Thailand's request to benefit from technical assistance and the sharing of best practices, in order to enhance the capacity of Government agencies to effectively enforce laws relating to human rights and to improve the structure of law enforcement agencies to be conducive to a rights-based working culture", - "values": [ - "1 - Minimal action" - ] - }, - { - "text": "Continue and strengthen its efforts regarding the prohibition of female genital mutilation", - "values": [ - "4 - General action" - ] - }, - { - "text": "Ensure that members of the security forces are trained on human rights and on their responsibility to protect human rights and human rights defenders.", - "values": [ - "4 - General action" - ] - }, - { - "text": "Continue with the positive efforts made in the field of education and share its experience in this area with other countries.", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Enact public programs to improve integration of Muslim and other immigrants into Dutch society, and build bridges between communities ", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Continue measures aimed at enhancing the capacity of the national human rights mechanism ", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Ratify the Rome Statute of the International Criminal Court. ", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Ensure the inclusion and consultation of Roma while designing, implementing and evaluating policies, programmes or initiatives that might affect their rights", - "values": [ - "4 - General action" - ] - }, - { - "text": "Provide children with disabilities greater access to facilities, as well as to public transportation and public buildings, as recommended by the Committee on the Rights of the Child, and in keeping with the Government's existing thrust", - "values": [ - "4 - General action" - ] - }, - { - "text": "Ensure access to education for girls and prevent early school dropout, including by reinforcing the Federal Government of Nigeria Gender Education Project", - "values": [ - "4 - General action" - ] - }, - { - "text": "Consider the possibility of acceding to and/or ratifying the Optional Protocols of the Convention on the Rights of the Child ", - "values": [ - "3 - Considering action" - ] - }, - { - "text": "Work towards reaching the human rights goals set by the Council in its resolution 9-12 and to strengthening its public policy guaranteeing the rights of the child, with special attention to children without parental care.", - "values": [ - "4 - General action" - ] - }, - { - "text": "Ratify the Agreement on the Privileges and Immunities of the ICC (APIC)", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Ensure Afro-Guyanese people's rights ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Continue its efforts aimed at ratification of OP-CRC-AC ", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Consider the possibility of adopting further measures for the integral attention and reparation of victims and land restitution, aiming to attend and redress the victims of violence", - "values": [ - "3 - Considering action" - ] - }, - { - "text": "Continue its efforts in providing educational facilities to students with special educational needs, such as children with visual and hearing impairment and those with learning difficulties", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Investigate all allegations of illegal use of force and ill-treatment by police and security forces, including against migrants, Roma and people of African descent ", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Take concrete measures to prohibit and eliminate child or forced marriage", - "values": [ - "4 - General action" - ] - }, - { - "text": "Continue and strengthen efforts to ensure respect for the best interest of children when enforcing public policies on the rights of migrants ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Further strengthen the legislative environment for journalists and media outlets, take additional measures for their safety, and tackle impunity for attacks on journalists", - "values": [ - "4 - General action" - ] - }, - { - "text": "That the Police Act be reformed in such a way that the requirement of a police permit for public assemblies of three or more persons does not violate the right to peaceful assembly", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Invite independent national and international election monitoring teams to the upcoming elections", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Strengthen its efforts in combating trafficking and consider the provision of shelters for such victims ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Adopt a clear road map to reach ODA target of 0.7 per cent of GNI", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Continue its efforts on poverty reduction by expanding its microcredit programmes to small entrepreneurs, youths, and women, especially in the rural areas", - "values": [ - "4 - General action" - ] - }, - { - "text": "Step up its efforts to ensure that legislation combating gender-based discrimination is effectively implemented and that effective measures are adopted to strengthen gender equality", - "values": [ - "4 - General action" - ] - }, - { - "text": "Develop and strengthen appropriate legislative measures to address the issues of trafficking, sexual abuse and sexual exploitation of children and take measures to ensure prompt prosecution of perpetrators of sexual offences against children ", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "To develop monitoring mechanisms for following up the implementation of recommendations from the universal periodic review", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Eliminate the gender pay gap", - "values": [ - "4 - General action" - ] - }, - { - "text": "Continue to improve both the quality and accessibility of education and related facilities ", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Repeal legislation criminalizing consensual sexual conduct between same-sex adults", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Modify its criminal law to criminalize all forms of racial discrimination", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Improve the social and economic situation of women especially in rural areas, in order to make them less vulnerable to traffickers", - "values": [ - "4 - General action" - ] - }, - { - "text": "Expedite the appointment of members to the Human Rights Commission so that it may initiate its work ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Accede to CRPD", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Decriminalize religious proselytism and religious freedom ", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Create the institution of ombudsman for children", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Amend the founding legislation of the National Human Rights Commission with a view to bringing it into compliance with the Paris Principles ", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Seek the assistance of the international community in its efforts to expand and strengthen its legal and judicial sectors ", - "values": [ - "1 - Minimal action" - ] - }, - { - "text": "Continue to accede to international human rights instruments and the regular reporting system attached thereto.", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Investigate and sanction the acts of violence and discrimination committed on the ground of sexual orientation", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Finalise the implementation of a national preventive mechanism against torture", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Put an end to arbitrary detention of refugees and asylum seekers, and stop detention of children on the grounds of migration control", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Strengthen and broaden the mandate of the Austrian Ombudsman Board in order to include the protection and promotion of all human rights, in line with the Paris Principles ", - "values": [ - "4 - General action" - ] - }, - { - "text": "End the practice of revoking citizenship from individuals", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Make every effort to preserve the climate of peace achieved by the Comprehensive Peace Agreement during the six years of transition ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Strengthen the fight against xenophobia and Islamophobia", - "values": [ - "4 - General action" - ] - }, - { - "text": "Strengthen non-discrimination against women, particularly in the workplace", - "values": [ - "4 - General action" - ] - }, - { - "text": "Continue to conduct outreach activities to raise awareness of people on human rights ", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Take all necessary steps to prohibit corporal punishment in all settings and align its national legislation with the provisions of the CRC", - "values": [ - "4 - General action" - ] - }, - { - "text": "Consider revising its legislation to ensure the promotion and protection of the rights of persons with disabilities, especially the law relating to legal capacity and accommodation of persons with mental disabilities in institutions", - "values": [ - "3 - Considering action" - ] - }, - { - "text": "Abolish the death penalty and provide the families of the executed persons with relevant declassified information", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Further promote human rights education and awareness-raising programmes in Guyana", - "values": [ - "4 - General action" - ] - }, - { - "text": "Prohibit corporal punishment as a method of admonishing children and adolescents", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Strengthen its efforts to prevent and combat all forms of discrimination and violence against women, children and other vulnerable groups through the adoption of comprehensive legislation and awareness raising campaigns", - "values": [ - "4 - General action" - ] - }, - { - "text": "Ensure that all detainees are charged with an offense established under the law and receive a fair trial before the ordinary criminal courts, in conformity with international standards ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Undertake, with international assistance, human rights training for the judiciary", - "values": [ - "4 - General action" - ] - }, - { - "text": "Strengthen legislative measures and policies to improve prisons conditions", - "values": [ - "4 - General action" - ] - }, - { - "text": "Harmonize the provisions of its domestic law on the punishment and prevention of human trafficking with the international instruments ratified by Grenada ", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Investigate cases of police abuse to prevent impunity and put an end to ill treatment by police", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Take effective measures to prevent possible acts of mistreatment ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Ensure the enjoyment of the right to freedom of religion by everyone, including persons belonging to religious minorities, by punishing those who harass or incite hate speech against religious minorities", - "values": [ - "4 - General action" - ] - }, - { - "text": "Ensure non-discrimination to the Palestinian families in Israel regarding health and education of children, in particular those living in poverty, rural areas and refugee camps", - "values": [ - "4 - General action" - ] - }, - { - "text": "Take appropriate measures to enable more women to hold elective offices", - "values": [ - "4 - General action" - ] - }, - { - "text": "Adopt further measures to prevent and contrast those practices - such as early and forced marriages, and moletry - which have a negative impact on the empowerment of women", - "values": [ - "4 - General action" - ] - }, - { - "text": "Maintain the separation of powers so that all branches of government respect the constitutional authority of each other branch", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Revise the ban on abortions to allow exceptions in cases of pregnancy resulting from rape, incest or therapeutic abortion", - "values": [ - "3 - Considering action" - ] - }, - { - "text": "Enhance measures to promote and protect the rights of migrant workers, and ensure fairer and safer working conditions as well as stricter labour law enforcement and punishment for employers who violate the law", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Continue to strengthen its programmes and initiatives geared towards guaranteeing the rights to health and education ", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Sign and ratify the Optional Protocol to the Convention on the Right of the Child on the involvement of children in Armed Conflict (CRC-OP-AC).", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Effectively integrate the Rome Statute and the Convention for the Protection of All Persons from Enforced Disappearances in its domestic legislation ", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Investigate all allegations of human rights violations and other crimes committed on Palestinian land and prosecute those responsible ", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Continue the fight against human trafficking", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Continue to prioritize the realization of right to education as a key national policy to increase child enrolment rate and improve the quality of education", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Eliminate all norms and practices that lead to the discrimination of members of national minorities, such as Russians, Uzbeks, Kazakhs, Turks and Kurds.", - "values": [ - "4 - General action" - ] - }, - { - "text": "Continue its efforts and initiatives against organized crime and conflict of interest", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Adopt specific and comprehensive anti-discrimination laws to protect the rights of persons belonging to minorities, including the Roma, including access to health care and education.", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Step up its efforts to protect the rights and to enhance the safety and welfare of foreign workers in Malaysia, particularly to secure better working conditions for domestic workers and better protection for those undocumented migrants", - "values": [ - "4 - General action" - ] - }, - { - "text": "Continue to strengthen its environmental conservation efforts, which contribute to the global efforts to safeguard the common heritage of humankind ", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Continue to improve measures, in policy and practice, to increase the participation of women in political life ", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Intensify its efforts to implement the National Action Plan for Gender Equality for 2013-2015", - "values": [ - "4 - General action" - ] - }, - { - "text": "Undertake an extensive investigation into acts of on-going violence as well as all allegations of human rights violations", - "values": [ - "4 - General action" - ] - }, - { - "text": "Take adequate measures to effectively address violence against foreign, minority and indigenous women by prosecuting and sanctioning all forms of violence, and ensuring that victims have access to immediate means of redress and protection", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Accelerate the process of alignment of its national legislation with the new Constitution and incorporate its international commitments into domestic law", - "values": [ - "4 - General action" - ] - }, - { - "text": "Combat violence against women and trafficking of child victims of prostitution", - "values": [ - "4 - General action" - ] - }, - { - "text": "Introduce a law on freedom of information in compliance with international standards", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Continue its efforts in implementing national policy frameworks to eradicate poverty, unemployment and ensure equality", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Actively seek to promote awareness about the Roma population in order to combat discrimination.", - "values": [ - "4 - General action" - ] - }, - { - "text": "Ratify and accede to the International Convention for the Protection of All Persons from Enforced Disappearance", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Continue efforts to improve conditions in prisons and pre-trial facilities", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Take further steps to provide access to education and healthcare for all citizens, particularly in rural areas where there is an immediate need ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Continue with the efforts to combat violence against women through increased institutional coordination permitting the effective punishment of crimes of violence against women and comprehensive assistance to women victims", - "values": [ - "4 - General action" - ] - }, - { - "text": "Immediately declare an official moratorium on executions, particularly for minors at the time of the crime", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Investigate all reports of torture and other ill-treatment in places of detention ", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Further enhance efforts to combat discrimination, including racial discrimination, xenophobia and related intolerances", - "values": [ - "4 - General action" - ] - }, - { - "text": "Refrain from adopting any legislation, such as the draft law on "foreign agents" and the draft law on "dissemination of information about non-traditional sexual relations" that will limit the fundamental rights to freedom of expression, association and assembly", - "values": [ - "4 - General action" - ] - }, - { - "text": "Strengthen efforts to restrict any outbreaks of racism and xenophobia, particularly manifestations of racism and discrimination on the Internet, as recommended by CERD.", - "values": [ - "4 - General action" - ] - }, - { - "text": "Increase its efforts in the field of discrimination on grounds of sexual orientation and gender identity, inter alia, by review of national legislation and administration with a view to eliminate discrimination against LGBTI people with regard to family and parental rights and the right to security and integrity of the person ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Continue its endeavours to reduce the illiteracy rates and eradicate forced labour, especially child labour ", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Strengthen effectiveness, autonomy and independence of the National Human Rights Commission so that it fully complies with the Paris Principles, especially with regard to the participation of civil society in its work ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Set up a policy specifically aimed at reducing the number of Roma children placed without valid reasons in establishments for children with disabilities or in rehabilitation centres", - "values": [ - "4 - General action" - ] - }, - { - "text": "Amend the penal code and domestic abuse laws to prohibit all forms of domestic abuse, not just abuse deemed habitual or excessive", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Increase efforts to combat the stigma associated with boys and girls with disabilities and review the family planning policy with the aim of combatting the deep causes of abandonment of boys and girls with disabilities as well as to provide sufficient community services and assistance in rural regions", - "values": [ - "4 - General action" - ] - }, - { - "text": "Implement further policies to support food production, such as farm insurance, access to credit and the purchase of food by the Government to ensure a stable market for family farmers ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Taking into account the capacity of Oman in protecting the right to education, carry out an exchange of experience in the area of education, and an exchange of achievements in the area of the oversight of educational institutions", - "values": [ - "1 - Minimal action" - ] - }, - { - "text": "Ratify ICRMW, and adopt all necessary measures with the aim of improving the treatment of migrants and asylum seekers", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Consider the possibility of signing and ratifying the CED, as well as accepting the competence of its Committee ", - "values": [ - "3 - Considering action" - ] - }, - { - "text": "Increase efforts to effectively prevent trafficking in human beings for sexual exploitation and forced labour, including child prostitution, and take measures to ensure assistance to possible victims of human trafficking", - "values": [ - "4 - General action" - ] - }, - { - "text": "Adopt the necessary measures to put an end to early and enforced marriage, to follow-up on victim testimony and bring perpetrators to justice", - "values": [ - "4 - General action" - ] - }, - { - "text": "Provide adequate and stable funding for legal, psychological and medical assistance and shelter for victims of domestic violence", - "values": [ - "4 - General action" - ] - }, - { - "text": "Review the law on abortion to expand the circumstances in which it can be carried out", - "values": [ - "3 - Considering action" - ] - }, - { - "text": "Work on strengthening international cooperation in the field of human rights ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Continue taking active measures aimed at eradicating discrimination against Afro-Brazilian women based on their gender and ethnicity", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Accelerate the implementation and expand the scope of the measures of the programme for improving the conditions of detention, as well as reduce the duration of pre-trial detention", - "values": [ - "4 - General action" - ] - }, - { - "text": "Ensure equality of rights is guaranteed to men and women, not just in some areas but in all spheres of life in the country", - "values": [ - "4 - General action" - ] - }, - { - "text": "Restore, as soon as possible, the constitutional order by organizing elections", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Enact domestic violence legislation with the aim of eliminating domestic violence, and enact specific legislation criminalizing acts such as female genital mutilation", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Continue to support the UPR as a mechanism for respectful dialogue and exchange", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Facilitate the access of women to sexual and reproductive health services ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Strengthen technical and human capacity and the independence of the National Human Rights Commission and the Ombudsman, according to the Paris Principles", - "values": [ - "4 - General action" - ] - }, - { - "text": "Study the possibility of becoming a party to the following international instruments: OP-CAT and CED ", - "values": [ - "3 - Considering action" - ] - }, - { - "text": "Continue its efforts to combat impunity for serious human rights violations ", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Investigate and punish all cases of intimidation, harassment, persecution, torture and forced disappearances, especially against political dissidents, journalists, ethnic and religious minorities and human rights defenders ", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Ensure the full protection of the freedom of expression of its citizens, including the right to peaceful protest, and refrain from and condemn actions intended to intimidate or repress citizens exercising their rights ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Organize an awareness-raising campaign on the illegality and the medical consequences of FGM.", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Accelerate the property restitution process.", - "values": [ - "4 - General action" - ] - }, - { - "text": "Consider adopting policies to encourage women and girls to choose non-traditional fields of education, including technical and vocational training", - "values": [ - "3 - Considering action" - ] - }, - { - "text": "Ensure that housing policies are motivated by the integration of Roma and other marginalized and vulnerable groups and that they avoid all forms of exclusion or forced segregation ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Adopt criminal laws explicitly prohibiting FGM and excisions and provide appropriate penalties ", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Take effective measures to prevent violence against women and prevent discrimination in employment on the grounds of gender ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Incorporate the Bangkok Rules into public policies to protect female inmates and adopt bill 5654/2016 that prohibits the use of handcuffs before, during and after childbirth on women deprived of liberty", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Remove, in the process of legal and constitutional reform, any legal distinction between children born in and outside of marriage, amend its law to ensure that no person may be sentenced to the death penalty for a crime alleged to have been committed as a child, and prohibit corporal punishment in school and care settings as well as in detention", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Continue to give priority to the fulfilment of the basic rights of its citizens, particularly to food and to an adequate standard of living, by intensifying the implementation of comprehensive poverty-alleviation programs ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Further improve training given to health professionals on interculturalism ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Ratify as soon as possible the third Optional Protocol to the Convention on the Rights of the Child", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Develop policy and legislation in the area of protection of the rights of persons with disabilities", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Strengthen measures to combat maternal mortality and morbidity with a human rights-based approach", - "values": [ - "4 - General action" - ] - }, - { - "text": "Strengthen its effort to combat and prevent discrimination faced by the Roma and ensure their full participation in the creation of mechanisms and adoption of measures to this end", - "values": [ - "4 - General action" - ] - }, - { - "text": "Investigate all cases of abuse of office by the officials of the penitentiary institutions", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Undertake effective measures to ensure the independence of the judiciary", - "values": [ - "4 - General action" - ] - }, - { - "text": "Continue its efforts with a view to further promoting its position on achieving almost all targets of the MDGs ", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Fight against impunity and ensure that those responsible for the serious human rights violations and acts of violence perpetrated against the civilian population, including sexual violence against women and children, torture and summary executions, are brought to justice and held accountable", - "values": [ - "4 - General action" - ] - }, - { - "text": "Continue its progress in the field of human rights education through increasing further international and regional cooperation ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Intensify programmes to improve the social security system, the housing projects, home sanitation facilities and access to drinking water, as recommended by the Committee on the Rights of the Child ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Finalize the ratification process for the International Covenant on Civil and Political Rights and incorporate into domestic law the provisions of the international conventions already ratified ", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "In accordance with the recommendation of the People's Advocate, collect and administer accurate data and statistics regarding the blood feud phenomenon ", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Ensure that the principle of "best interest of the child" is well integrated in the draft legislation on juvenile justice and that children in conflict with the law are deprived of their liberty only as a means of the last resort", - "values": [ - "4 - General action" - ] - }, - { - "text": "Carry out measures so that, especially when treating with migrants and other vulnerable persons, all actions that are taken are respectful of the guarantees and protections established under international human rights instruments", - "values": [ - "4 - General action" - ] - }, - { - "text": "Systematically and continuously integrate a gender perspective in the follow-up to the UPR.", - "values": [ - "4 - General action" - ] - }, - { - "text": "Expedite the creation of an independent national human rights institution in conformity with the Paris Principles ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Amend the Penal Code to prohibit the practice of female genital mutilation ", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Extend a standing invitation to all United Nations special procedures mandate holders ", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Incorporate in domestic legislation a definition of torture in conformity with article 1 of the Convention against Torture, including all of its elements, in particular the imprescriptibility of torture", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Take concrete and substantial steps in matters of transitional justice in order to address grave human rights violations committed during the internal armed conflict 1979-1992", - "values": [ - "4 - General action" - ] - }, - { - "text": "Consider ratifying the International Convention on the Protection of the Rights of All Migrants Workers and Members of Their Families ", - "values": [ - "3 - Considering action" - ] - }, - { - "text": "Respect the right of return for all Palestinian refugees so that they can return to their homeland, and be duly compensated for the damages they and their property suffered from ", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Establish a national human rights institution in compliance with the Paris Principles ", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Continue to strengthen economic, social and cultural rights with a view to improving living conditions for the population", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Ratify the Rome Statute of the International Criminal Court and its Agreement on Privileges and Immunities", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Accelerate the process of domestication of international human rights instruments to which it is a party", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Continue efforts to improve the status of women in society and promote gender equality at all levels, thereby enhancing the contribution of women to the development process ", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Establish an independent institution for the promotion and protection of human rights at the national level", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Adopt measures to guarantee the independence of the judiciary", - "values": [ - "4 - General action" - ] - }, - { - "text": "Expedite and systematize the process of demarcation of indigenous collective lands and habitat, and update the census data of indigenous communities and peoples, ensuring the participation of communities in this process ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Finalize and enact draft legislation that prohibit all forms of human trafficking and that trafficking in children is effectively investigated and prosecuted. To this end, we recommend that all law enforcement officers and the judiciary receive adequate training on human trafficking and that protective services are provided to the witnesses and victims of trafficking", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Reduce the scope of crimes subject to the death penalty, specifically regarding all non-violent crimes, and work towards the total abolition of the death penalty", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Continue to strengthen the capacity of the Commission of Human Rights and Good Governance, including through the collaboration with Regional organizations and United Nations institutions", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Strengthen measures to end any possibility of alleged police brutality, arbitrary arrests and politically motivated prosecution of opposition leaders", - "values": [ - "4 - General action" - ] - }, - { - "text": "Step up measures to address the shortage of teachers especially in rural and remote areas ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Further enhance national policies to promote the rights of women ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Ratify the International Convention on the Protection of the Rights of All Migrants Workers and Members of their Families", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Effectively implement the National Human Rights Action Plan and publicly call for an end to attacks, abuse and discrimination against persons with disabilities, persons with albinism, lesbian, gay, bisexual, transgender and intersex persons, an people living with, at risk of and affected by HIV/AIDS", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "While recognizing the commitment to welcome on its territory refugees from the Horn of Africa, continue its efforts in this laudable work.", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Extend the exclusion of death penalty to all crimes committed by persons with mental illness", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Continue to promote the living standards of the people by allowing the further enjoyment of economic, social and cultural rights", - "values": [ - "4 - General action" - ] - }, - { - "text": "Adopt and promulgate as soon as possible the draft law on all forms of discrimination and to include in this draft law discrimination on the basis of sexual orientation and gender identity ", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Strengthen measures to reinforce existing mechanisms on combating all forms of discrimination, particularly racial discrimination, including by adopting a specific law prohibiting incitement to hatred based on racial and religious motives, in accordance with article 20, paragraph 2, of the International Covenant on Civil and Political Rights ", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Take adequate measures for better protecting human rights defenders and journalists", - "values": [ - "4 - General action" - ] - }, - { - "text": "Immediately cease all acts of violence and abuses committed against civilians and allow for the effective, timely and unfettered delivery of humanitarian assistance, particularly in hard-to-reach and besieged areas", - "values": [ - "4 - General action" - ] - }, - { - "text": "Continue improving the healthcare system to ensure the best welfare for the Yemeni people in this area.", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Consider positively inviting the Special Rapporteur on the promotion and protection of human rights while countering terrorism ", - "values": [ - "3 - Considering action" - ] - }, - { - "text": "Take concrete measures towards protecting children from sexual exploitation, including violence against girls with albinism, through law enforcement and appropriate sanctions, and active awareness campaign and partnership with local communities to combat impunity ", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Reinforce measures to resolve the situation of indigenous peoples, in accordance with international standards, particularly for the Mbororos fulany and pygmy peoples to have ownership of their traditional lands", - "values": [ - "4 - General action" - ] - }, - { - "text": "Consider the formulation of a comprehensive national human rights plan of action", - "values": [ - "3 - Considering action" - ] - }, - { - "text": "Combat impunity in cases of torture ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Take concrete measures for the issuance of medical cards in Traveller and Roma communities, to guarantee that such children enjoy the same access to and quality of health-care services as others", - "values": [ - "4 - General action" - ] - }, - { - "text": "That a human rights institution at the federal level be considered in order to ensure implementation of human rights in all states", - "values": [ - "3 - Considering action" - ] - }, - { - "text": "Pursue its efforts to broadly reduce poverty", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Make greater efforts to foster the law-abiding culture throughout the country", - "values": [ - "4 - General action" - ] - }, - { - "text": "Ensure that in its application of preventive body searches, all relevant human rights are adequately protected, in particular the right to privacy and physical integrity and the prohibition of discrimination on the basis of race and religion ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Intensify the cooperation with special rapporteurs mandate holders of the United Nations", - "values": [ - "4 - General action" - ] - }, - { - "text": "Set-up commissions of inquiry for all cases of deaths in custody which take place in the national police, the army, the penitentiary services, etc.", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Continue the actions taken to further advance in achieving gender equality and the empowerment of women", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Further professionalize the armed forces, including by regular and increased payment of wages. ", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Accept, ratify or accede to the Optional Protocol to the Convention on the Elimination of All Forms of Discrimination against Women", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Take measures to improve the situation of persons belonging to the Roma and other minorities", - "values": [ - "4 - General action" - ] - }, - { - "text": "Take steps to address the gender segregation in the economy and the gender wage gap in the public sector", - "values": [ - "4 - General action" - ] - }, - { - "text": "Introduce amendments to the code on the penitentiaries to guarantee that the families of condemned persons have the opportunity to say goodbye and bury the corpses in accordance with international standards", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Continue to develop appropriate policies to provide equal job opportunities for persons with disabilities", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Expedite efforts towards prohibition of all forms of child labour", - "values": [ - "4 - General action" - ] - }, - { - "text": "Sign and ratify the Second Optional Protocol to the International Covenant on Civil and Political Rights, aimed at abolishing the death penalty ", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Charge all other prisoners with a recognizable criminal offence and ensure that they are tried in accordance with international standards ", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Bring legislation and law enforcement practice on migrants and asylum-seekers in conformity with human rights international norms and standards", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Implement a variety of measures to strengthen the participation of women in all social areas ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Take urgent legislative, as well as practical steps beyond those cited in the national UPR report to protect the rights of religious and ethnic minorities", - "values": [ - "4 - General action" - ] - }, - { - "text": "Further improve the living conditions in prisons and pre-trial detention centres ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Take all necessary steps to introduce a de jure moratorium on capital executions with a view to fully abolish the death penalty, and ratify the Second Optional Protocol to the International Covenant on Civil and Political Rights", - "values": [ - "4 - General action" - ] - }, - { - "text": "Strengthen the prevention of HIV/AIDS, sexual and reproductive health and sexual diversity ", - "values": [ - "4 - General action" - ] - }, - { - "text": "While the HRCM continues to face criticism regarding its role in the institutional framework, primarily due to lack of awareness about the mandate and activities of the Commission, the Government is committed to working constructively with the HRCM, even in cases where both parties may not agree.", - "values": [ - "4 - General action" - ] - }, - { - "text": "Provide national, regional and international support to the promotion and universal realization of the human right to potable water and sanitation, in accordance with the recommendations made by the Council in its different resolutions on this matter", - "values": [ - "1 - Minimal action" - ] - }, - { - "text": "Improve the adoption system by ratifying the Hague Convention on Protection of Children and Co-operation in Respect of Intercountry Adoption and reflecting it in internal regulations, strengthening resources for the social welfare institute (IBERS), banning individual adoption and implementing recommendations by UNICEF and the Action Plan suggested by the Montreal group", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Ratify or sign, whichever is applicable, the Optional Protocol to the convention against Torture and the two Protocols of the International Covenant on Civil and Political Rights", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "The Ministry of Interior consistently states that it has no objection to peaceful demonstrations provided they are conducted lawfully and participants do not engage in criminal acts of rioting.", - "values": [ - "4 - General action" - ] - }, - { - "text": "Continue to work with the international community to address human rights issues set out in the twenty-first UNAMI Interim Human Rights report of 19 August 2014", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Promote broader access to education for all children", - "values": [ - "4 - General action" - ] - }, - { - "text": "Develop mechanisms for overseeing the implementation of the CRC in the OPT", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Continue to protect traditional culture and artistic heritage ", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Improve its investigative capacity to solve the cases of murdered women, journalists and human rights defenders, and bring to justice those responsible", - "values": [ - "4 - General action" - ] - }, - { - "text": "Be proactive in its measures to prevent discrimination against immigrant, refugee and minority women who continue to suffer from multiple forms of discrimination, and to combat violence against them", - "values": [ - "4 - General action" - ] - }, - { - "text": "Immediately cease all violations of international humanitarian law, including all targeted or indiscriminate attacks on civilians and civilian infrastructure and on medical facilities and personnel, and also immediately cease the indiscriminate use of weapons", - "values": [ - "4 - General action" - ] - }, - { - "text": "Further cooperate with the conventional mechanisms of the United Nations and of the African Union", - "values": [ - "4 - General action" - ] - }, - { - "text": "In light of concerns about the situation of human rights in Xinjiang and Tibet, respond to the invitation addressed to the Special Rapporteur on freedom of religion or belief to visit these regions", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Incorporate international human rights instruments to which it is party into its legal system, as recommended by the various treaty monitoring bodies ", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Continue its work to improve its potential in the human rights field, particularly by strengthening national human rights institutions and completing the process for the elaboration of the Philippine human rights action plan", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Undertake efforts to combat gender inequality by legislating laws that would ensure gender equality and to enable women to participate in governmental legislative positions in the country", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Continue its efforts in eradicating poverty, with a focus to addressing the issue of inadequate housing affecting minority groups in the country ", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Abolish completely and definitively the death penalty for all crimes", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Take the necessary measures to ensure respect for human rights, including the rights of women, political rights, the rights of persons in detention and the right of freedom of expression as it pertains to the press and other media ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Consider ratifying all three Optional Protocols to the CRC", - "values": [ - "3 - Considering action" - ] - }, - { - "text": "Create an independent mechanism to protect persons with disabilities", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Ratify the Optional Protocol to the Convention on the Rights of Child on the sale of children, child prostitution and child pornography (OP-SCR) as soon as possible", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Provide adapted solutions to the problems identified in the rural areas", - "values": [ - "4 - General action" - ] - }, - { - "text": "Urgently implement legislation that specifically addresses child sexual exploitation through electronic images and take appropriate measures to ensure adequate legal protection of children, including boys, against commercial sexual exploitation ", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Harmonize further its legislation in the field of religious freedom with international standards", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Accede to the Convention on the Prevention and Punishment of the Crime of Genocide", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Adopt specific legislation that explicitly prohibits domestic violence, including marital rape, and ensure its stringent implementation and enforcement", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Pursue its efforts in strengthening women's rights, including through the adoption of a draft framework law to combat violence against women", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Ensure thorough and impartial investigation into all allegations of attacks and threats against individuals targeted because of their sexual orientation or gender identity", - "values": [ - "4 - General action" - ] - }, - { - "text": "Consider ratifying the International Covenant on Civil and Political Rights and its Optional Protocols, the Optional Protocol to the International Covenant on Economic, Social and Cultural Rights and the Optional Protocol to the Convention against Torture and Other Cruel, Inhuman or Degrading Treatment or Punishment", - "values": [ - "3 - Considering action" - ] - }, - { - "text": "Slovakia will continue to play an active role in the field of the rights of the child at regional and universal level. As one of the initiators of the elaboration and adoption of the Optional Protocol to the Convention on the Rights of the Child on a Communications Procedure, we will encourage its broad ratification by Member States", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Continue efforts to combat violence against women and to eradicate negative traditions.", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Implement recommendations made by the national reform committee tasked with reviewing the Domestic Violence Protection Orders Act, continue to develop a National Action Plan on Domestic Violence, train police on domestic violence issues and seek to expedite criminal trials, where appropriate ", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Promote legislative measures, as well as all other types of measures, to promote gender equality and the prevention of violence against women and girls", - "values": [ - "4 - General action" - ] - }, - { - "text": "Implement measures to ensure the full enjoyment of rights by persons with disabilities, especially regarding inclusive education and development", - "values": [ - "4 - General action" - ] - }, - { - "text": "Continue strengthening State institutions for the protection of its people, giving special attention to the defence of human rights", - "values": [ - "4 - General action" - ] - }, - { - "text": "Continue efforts to improve detention conditions, particularly through the fight against prison overcrowding ", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Efforts be further accelerated to clear the backlog of pending cases in the Courts and that there should be early conclusion in the study now underway for strengthening the judicial system ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Elaborate a development plan with a view, inter alia, to eradicate extreme poverty and hunger as the most daunting challenge of the country, and to provide access to education, health care for all its citizens, particularly women and children", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Continue to provide assistance and protect the rights of irregular migrants fleeing from conflict through partnerships at the regional and international level", - "values": [ - "4 - General action" - ] - }, - { - "text": "Conduct an independent investigation regarding killings, arrests and detentions following the demonstrations following the 2009 presidential elections, including the possible excessive use of force by security forces", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Ensure that minority groups, including scheduled castes, are not discriminated against in education, health care, employment and other basic services and that perpetrators of hate crimes against them face the full force of the law", - "values": [ - "4 - General action" - ] - }, - { - "text": "Continue its programme of prison modernization, ensuring thorough staff training and investigations of alleged staff misconduct ", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Implement its vast programme launched for human rights promotion, with the support of the international community.", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Accede to the Agreement on the Privileges and Immunities of the International Criminal Court", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Strengthen its efforts to ensure that youth and children who come into contact with the justice system enjoy adequate protection and are subject to courts specialized in juvenile justice", - "values": [ - "4 - General action" - ] - }, - { - "text": "Continue its efforts to combat child labour through the effective implementation of the domestic workers labour and employment conditions act", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Continue efforts to combat all forms of human trafficking, and to intensify efforts to bring perpetrators to justice", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Consider acceding to the Convention the Rights of Persons with Disabilities ", - "values": [ - "3 - Considering action" - ] - }, - { - "text": "Withdraw its general reservation to CEDAW", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Strengthen its policy aimed at the full guarantee of children's rights, with attention to the implementation of the Guidelines for the Alternative Care of Children, in accordance with Human Rights Council resolution 11-7 and General Assembly resolution 64-142", - "values": [ - "4 - General action" - ] - }, - { - "text": "Enact a comprehensive anti- discrimination law enforced uniformly throughout the Confederation", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Ratify and accede to the Convention against Torture, the International Convention on the Protection of the Rights of All Migrant Workers and Members of Their Families and the International Convention for the Protection of All Persons from Enforced Disappearance ", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Adopt a higher standard regarding the protection of women's rights, both in legal terms and in implementation ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Respect the provisions of the International Covenant on Civil and Political Rights and the Convention against Torture, and the recommendations of intergovernmental human rights mechanisms, and also cooperate with special procedures \n", - "values": [ - "4 - General action" - ] - }, - { - "text": "Speedily implement provisions related to the intention of the Government to abolish capital punishment. ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Finalize working on the implementation of the recommendations of the BICI and to implement the outcome of the national conciliation dialogue ", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Fully cooperate with the United Nations to ensure that all allegations of corruption and political influence are rapidly investigated by an independent and impartial mechanism and that cases found are submitted to the authorities for judicial proceeding ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Continue strengthening the role of the Ombudsman's office, including its ability to follow up on the results of its investigations, and increase efforts to provide it with sufficient funding.", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Undertake effective awareness-raising campaigns to address violence against women ", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Enhance victims' access to legal redress, and establish special measures for the protection of victims, including the provision of shelters and legal, medical and psychological support ", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Extend a standing invitation to all mandate holders of Special Procedures", - "values": [ - "4 - General action" - ] - }, - { - "text": "Accelerate the adoption of the Domestic Violence Act", - "values": [ - "4 - General action" - ] - }, - { - "text": "Ensure that laws do not criminalize legitimate freedom of expression, association and assembly", - "values": [ - "4 - General action" - ] - }, - { - "text": "Investigate and prosecute all perpetrators of violence and intimidation crimes against journalists", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Continue its efforts to adopt programs and projects to combat poverty and reduce unemployment ", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Encourage the Parliament to speed up consultations underway to ensure the appointment and functioning of an ombudsman ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Take concrete steps to move towards the abolition of the death penalty.", - "values": [ - "4 - General action" - ] - }, - { - "text": "Harmonize laws and revise customary practices with a view to preventing child, early and forced marriage", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Continue to strengthen the National Human Rights Commission to make it fully compliant with the Paris principles", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Continue efforts and measures aimed at enhancing social security and labour policies, and expand the development model in rural areas", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Take measures to enhance the efficiency of the judicial system and reduce overcrowding in prisons", - "values": [ - "4 - General action" - ] - }, - { - "text": "Promptly ratify the International Labour Organization Indigenous and Tribal Peoples Convention, 1989 No. 169", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Take legal and practical measures that guarantee women equality in the acquisition of land, in access to the means of production and in political representation", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Take appropriate measures to ensure stricter control on the new work permit system and intensify its efforts to bring to justice all those involved in trafficking in persons ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Facilitate the development of a safe and enabling environment for all civil society actors to freely associate and express their views by ensuring that national legislative provisions are not invoked to stifle legitimate and peaceful dissent ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Consider intensifying efforts to achieve further gains in the areas of poverty reduction the right to adequate housing the right to health, water and basic sanitation and the right to education for all sectors of society", - "values": [ - "3 - Considering action" - ] - }, - { - "text": "Review its approach to domestic violence to better prevent and respond to cases of domestic violence against women and children", - "values": [ - "3 - Considering action" - ] - }, - { - "text": "Strengthen its good governance and reform process of its judicial system and national mechanism for human rights, with more focus on employment, social welfare, education and health care, especially for families in rural areas and vulnerable groups of women, children and persons with difficulties", - "values": [ - "4 - General action" - ] - }, - { - "text": "With reference to the recently expressed concern by the Economic and Social Council about the presence of the berm, continue to implement the demining programme along the berm and compensate victims", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Continue to expand its social security coverage", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Step up its efforts to prohibit and prevent hate speech and racist propaganda including on the internet and to increase public awareness on this issue ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Accelerate its poverty alleviation programmes.", - "values": [ - "4 - General action" - ] - }, - { - "text": "Take further urgent steps to address the concerns raised during the session about the recruitment and treatment of foreign workers ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Work towards the socioeconomic betterment of people from ethnic minority backgrounds", - "values": [ - "4 - General action" - ] - }, - { - "text": "For a better integration and protection of the rights of immigrant minorities, follow ILO recommendations ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Continue cooperation with the Special Procedures of the Council on the basis of its national priorities ", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Ensure that any reformed prison or compulsory care system meets international human rights standards, and abolish system of arbitrary detention, including Re-Education Through Labour", - "values": [ - "4 - General action" - ] - }, - { - "text": "Review the treatment of all detainees ensuring that the human rights, safety and security of individuals in government custody are fully respected", - "values": [ - "3 - Considering action" - ] - }, - { - "text": "Take all necessary measures to ensure that those responsible for violations of international law, including human rights and international humanitarian law, are held accountable", - "values": [ - "4 - General action" - ] - }, - { - "text": "Adopt appropriate legislative or administrative measures for effective access to justice, including the right to legal redress in the courts ", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Improve access for women to sexual and reproductive health rights and services", - "values": [ - "4 - General action" - ] - }, - { - "text": "Consider reviewing the provisions in its Penal Code which contain punitive measures against women who have undergone illegal abortions", - "values": [ - "3 - Considering action" - ] - }, - { - "text": "Issue a standing invitation for UN human rights special procedures and accept all requested visits by the mandate holders ", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Continue and strengthen efforts to bring the national legislation, in particular the Criminal Code, into line with ratified instruments.", - "values": [ - "4 - General action" - ] - }, - { - "text": "Modify legislation with respect to the death penalty, eliminating its mandatory application, ensuring that legislation is compatible with article 6 of the International Covenant on Civil and Political Rights.", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Effectively combat human trafficking, in particular sexual exploitation and forced labour", - "values": [ - "4 - General action" - ] - }, - { - "text": "Continue making efforts to prevent and sanction trafficking in persons", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Consider the possibility of acceding to ICRMW ", - "values": [ - "3 - Considering action" - ] - }, - { - "text": "Make efforts to design and adopt policies and programmes to raise awareness concerning the ill-treatment and abuse of children", - "values": [ - "4 - General action" - ] - }, - { - "text": "Pass comprehensive anti-trafficking in persons legislation", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Establish the Mental Health Fund as described in the Mental Health Act 2012 and provide it with adequate funding", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Ratify the Second Optional Protocol to the International Covenant on Civil and Political Rights and abolish the death penalty without delay", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Continue the process of harmonizing domestic legislation with provisions of international instruments ", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Increase attention to programmes for broken families ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Continue its efforts aiming at increasing women's participation in political and public life ", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Guarantee women's representation in all decision-making levels in line with the United Nations Security Council Resolution 1325 and related resolutions as well as on the Convention of the Elimination of All Forms of Discrimination against Women ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Take concrete measures to improve the realization of the right to education by the Roma children, taking also into account special education needs.", - "values": [ - "4 - General action" - ] - }, - { - "text": "Continue making efforts, with the support of the international community, to ensure that unilateral coercive measures imposed on the country are lifted", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Investigate effectively the attack on the Russian school "Intellect" in Tbilisi and the destruction of its property and punish those responsible", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Decriminalize homosexuality between consenting adults, and repeal all legal provisions used to discriminate against LGBT persons ", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Establish a Constitutional Convention on article 40.3.3 of the Constitution with the aim to remove all restrictive legislation on abortion", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Make further efforts to eradicate child labour and protect juvenile workers", - "values": [ - "4 - General action" - ] - }, - { - "text": "Halt all executions and establish a moratorium on the death penalty with a view to abolishing the capital punishment", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Develop a national plan of action that provides a road map to ensure that international human rights commitments are reflected in domestic legislation ", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Heed the recommendation of its Consultative Commission for Human Rights to introduce compulsory human rights training for civil servants and public employees ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Reduce the number of crimes carrying the death penalty", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Remove any categorization by religion on State documents including ID cards", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Work on policies and strategies to enhance awareness on gender issues ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Redouble efforts to resolve the problem of indigenous lands and prioritize support for the National Indigenous Institute ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Consider including in its criminal legislation the delinquent conducts provided for in relevant paragraphs of article 4 of the International Convention on the Elimination of All Forms of Racial Discrimination ICERD, in line with the recommendations of the Committee on the Elimination of Racial Discrimination ", - "values": [ - "3 - Considering action" - ] - }, - { - "text": "Amend the current law to legalize abortion after rape ", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Ratify international human rights instruments, to which the country is not yet a party", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Safeguard the freedom of the press, through the abrogation of the Protection of Information Bill ", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Guarantee freedom of expression, notably by combating attacks against journalists and ensuring that journalists, opinion makers and members of the political opposition are free to express their views", - "values": [ - "4 - General action" - ] - }, - { - "text": "Take the necessary measures to avoid the return of refugee and asylum-seeker children who have been recruited or involved in hostilities ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Continue working to boost the participation of women in political and executive positions under principles of equality without discrimination, particularly guaranteeing the participation of rural women", - "values": [ - "4 - General action" - ] - }, - { - "text": "Approve, in all the countries that form the Kingdom, legislation that criminalizes all forms of trafficking in persons ", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Create job opportunities and provide social services to face development challenges and combat poverty", - "values": [ - "4 - General action" - ] - }, - { - "text": "In the pledges that it will make to the Human Rights Council during the 2008 elections, Bahrain will confirm its adoption of "good practices".", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Adopt comprehensive measures to prevent and eliminate cases of cruel treatment and sexual exploitation of children ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Seek technical assistance through the relevant mechanisms of the United Nations ", - "values": [ - "1 - Minimal action" - ] - }, - { - "text": "Continue the practice of constructive engagement by the country with relevant international human rights mechanisms", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Empower women and effectively address discrimination in employment by installing a paid paternity leave of adequate length that is non-transferable and follows directly after maternity leave", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Ramp up efforts to address the challenges faced by persons with disabilities, particularly children", - "values": [ - "4 - General action" - ] - }, - { - "text": "Continue with its efforts to strengthen the enforcement of law on violence against women and protect the rights of women", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Redouble its efforts to provide quality education for children and implement programmes that would encourage them to go to school ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Consider alternatives to the detention of irregular migrants and asylum seekers, limit the length of detentions, and ensure that detainees have access to the judiciary, to consular assistance and to adequate information ", - "values": [ - "3 - Considering action" - ] - }, - { - "text": "Intensify its efforts aimed at modifying or eliminating the negative cultural practices and stereotypes which are the source of certain forms of discrimination against women", - "values": [ - "4 - General action" - ] - }, - { - "text": "Take the necessary measures for the proper civil registration of migrant children and birth registration of children of migrants", - "values": [ - "4 - General action" - ] - }, - { - "text": "Increase the level of social investment in accordance with the Extractive Industries Transparency Initiative with a view to guaranteeing the progressive realization of economic, social and cultural rights by establishing priorities to eradicate poverty and guaranteeing access to basic social necessities ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Work towards the establishment of a national human rights institution in accordance with the Paris Principles ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Work to hold perpetrators of xenophobic violence to account", - "values": [ - "4 - General action" - ] - }, - { - "text": "Expedite the finalization of the policy addressing the situation of refugees and IDPs", - "values": [ - "4 - General action" - ] - }, - { - "text": "Adopt and implement stronger legislation on children's rights ", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Complete the accession to the International Covenant on Economic, Social and Cultural Rights and to ICERD ", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Continue to eradicate corruption in all its form, through the appropriate legislation", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Step up its efforts in eliminating all forms of violence against women and girls and in that context improve the national legislation in accordance with relevant international human rights standards", - "values": [ - "4 - General action" - ] - }, - { - "text": "Extend an open and standing invitation to the special procedure mechanisms ", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Seek the assistance of the international community to achieve comprehensive national development", - "values": [ - "1 - Minimal action" - ] - }, - { - "text": "Ratify the Kampala Amendments to the Rome Statute", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Take further measures to improve access to basic health care, nutrition and education of children", - "values": [ - "4 - General action" - ] - }, - { - "text": "Ratify the international instruments to which it is not yet a party ", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Mexico is committed to strengthening the international human rights system and the UPR as part of its foreign policy, and that the President had recently reiterated its commitment with the UPR recommendations", - "values": [ - "4 - General action" - ] - }, - { - "text": "Norway converts this recommendation [1] into a voluntary commitment, as follows: "Norway will consider the possibility of signing and ratifying the OP-CESCR after having completed a study of its legal implications. The study is expected to be completed within a year."", - "values": [ - "3 - Considering action" - ] - }, - { - "text": "Continue investigations into the murders of journalists, human rights activists, and opposition and Government figures", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Expedite the comprehensive reform of the police ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Continue to strengthen its efforts to support women victims of domestic violence and to bring offenders to justice", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Consider seriously the possibility of becoming a State Party to the International Labour Organization (ILO) and initiate a legislative process towards the ratification of the eight fundamental ILO Conventions ", - "values": [ - "3 - Considering action" - ] - }, - { - "text": "Apply article 36 of the Vienna Convention on Consular Relations in order to ensure that, if a detained foreign national so requests, the competent authority shall, without delay, inform his or her consular post ", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Continue to tackle the illicit traffic in narcotic drugs. In this vein, make complementary efforts to strengthen the existing legal and regulatory mechanism and better engagement of National Drug Control Agency with regional and international relevant institutions", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Strengthen the coordination of federal and provincial mechanisms in order to remove disparities in the implementation of anti-racism legislation, policies, and programmes, and ensure the enjoyment on an equal footing within all provinces and territories of the rights set forth in the International Convention on the Elimination of All Forms of Racial Discrimination (ICERD), including by considering to adopt new federal laws", - "values": [ - "4 - General action" - ] - }, - { - "text": "Continue to strengthen its human rights institutions and develop additional measures to ensure the effective implementation of their mandate", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Ratify the Optional Protocol to the Convention against Torture and Other Cruel, Inhuman or Degrading Treatment or Punishment OP-CAT ", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Ratify the Optional Protocol to the Convention against Torture, promote strict adherence to the prohibition of torture, inhuman or degrading treatment or punishment and prosecute violations thereof", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Further strengthen the promotion of gender equality and protect women from all forms of discrimination and violence", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Continue adopting comprehensive legislation to combat discrimination, including against women", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Provide and improve training programmes on human rights for the judiciary and law enforcement personnel ", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Take steps to eliminate graft within the public sector so that the enjoyment of human rights is not imperilled by rent-seeking within Government.", - "values": [ - "4 - General action" - ] - }, - { - "text": "Strengthen protection of ethnic minorities' religious, socio-economic and political rights, ensuring reports of violations are promptly and transparently investigated", - "values": [ - "4 - General action" - ] - }, - { - "text": "Submit its outstanding reports in a step-by-step manner and make use of the reviews of the respective treaty bodies to improve its human rights situation ", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Repeal all norms that can be presumed or interpreted as being discriminatory against persons based on their sexual orientation or gender identity", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Accord higher priority to the investigation and prosecution of domestic violence cases", - "values": [ - "4 - General action" - ] - }, - { - "text": "Proceed to systematically assess the impact of austerity measures on the most vulnerable social groups, especially children", - "values": [ - "3 - Considering action" - ] - }, - { - "text": "Prevent violence against women by proper enforcement of laws and ensure prosecution and punishment of the real offenders through proper investigation and judicial process ", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Continue incrementing the amount of health establishments", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Establish a moratorium on the death penalty and take measures towards its definitive abolition", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Pursue its efforts to take up the challenges of human rights in accordance with international standards", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Continue its efforts in combating narcotics and psychotropic agents, and work towards protecting youths from them ", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Review all necessary measures to reduce discrimination and particularly, stress the design of appropriate policies to prevent discrimination against children ", - "values": [ - "3 - Considering action" - ] - }, - { - "text": "Consider ratification of the third OP to the CRC on a communications procedure ", - "values": [ - "3 - Considering action" - ] - }, - { - "text": "Ensure that all former girl soldiers as well as any girls and young women who were exploited in the armed forces as slaves for labour or sexual exploitation are included in programmes for reintegration of former soldiers ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Establish, in consultation with civil society, a mechanism to develop and harmonize a legislative framework derived from the new Constitution and in accordance with international human rights standards", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Strengthen efforts to harmonize national human rights legislation with the relevant international instruments", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Continue strengthen the regulatory framework for the protection of the rights of children ", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Clear the backlog of responses to thematic questionnaires from special procedures of the Human Rights Council ", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Continue strengthening judicial and administrative measures initiated to ensure the effective investigation and punishment of those responsible for acts of violence, in particular those targeting human rights defenders", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Abrogate the Amnesty Decree-Law No. 2.191 ", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Eliminate all obstacles to the development of NGOs, in particular the financial procedures for those financed with resources from abroad, and promote the participation of civil society in the activities of the State ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Continue its strong emphasis on ensuring access to education for all", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Promote non-discrimination and inclusion campaigns with particular focus on migrants and people with albinism", - "values": [ - "4 - General action" - ] - }, - { - "text": "Work constantly toward strengthening the coordination among the national human rights mechanisms and regularly provide them with the resources necessary for their proper functioning ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Ratify the Convention on the Elimination of All Forms of Discrimination against Women and deepen efforts to eliminate discriminatory legal provisions that limit the rights of women", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Take measures to address homo- and trans-phobic crime, including by establishing a system for recording such crimes ", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Immediately step up its efforts to eliminate all forms of discrimination based on ethnic origin, religion, gender and sexual orientation", - "values": [ - "4 - General action" - ] - }, - { - "text": "Revise the Press Act and abolish provisions that lead to a restriction of freedom of opinion and expression and freedom of religion and belief and take measures in order to allow for free, impartial and objective media ", - "values": [ - "3 - Considering action" - ] - }, - { - "text": "Better ensure the effective enforcement of laws against sexual harassment and adopt additional preventive and protective measures to combat sexual violence in the workplace ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Conduct full, impartial and independent investigations into all allegations of corruption or abuse by security forces and prosecute those responsible where appropriate", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Organize regional and local conferences to exchange experiences and opinions on strengthening and promoting human rights", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Increase funding for federal human trafficking prosecutors and take steps to end the impunity for public officials complicit in trafficking", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Give the appropriate training to the Polish police and other public bodies responsible for victim support services to assist the victims of hate crimes", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Ensure the right to equality before courts and tribunals, and to a fair trial, as provided for by the Universal Declaration of Human Rights and ICCPR, and as outlined by the United Nations Basic Principles on the Independence of the Judiciary and assure to all citizens the right to be heard by an independent tribunal", - "values": [ - "4 - General action" - ] - }, - { - "text": "Consider further steps to ensure a high number of women in decision-making positions", - "values": [ - "3 - Considering action" - ] - }, - { - "text": "Review its Penal Code, namely article 373, and other laws in order to prevent discrimination against LGBTI persons ", - "values": [ - "3 - Considering action" - ] - }, - { - "text": "Even if only in a modest and gradual way, increase the personnel and financial allocations to the ombudsman in order to ensure that the stronger legal position of the office is also reflected in its human and financial capacities", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Continue its efforts in combating child labour, as well as including by bringing the employers to justice, and to introduce new non-violent forms of discipline for children at home and in schools", - "values": [ - "4 - General action" - ] - }, - { - "text": "Include Afro-Argentinians to reflect the historical memory of Afro- Argentinians", - "values": [ - "4 - General action" - ] - }, - { - "text": "Get the reporting schedule with treaty bodies back on track", - "values": [ - "4 - General action" - ] - }, - { - "text": "Introduce awareness-raising activities with the aim of eliminating conditions and attitudes perpetuating discrimination against Haitian migrants as well as the Dominicans of Haitian descent ", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Fully implement the Chittagong Hill Tracts Accord as a matter of priority and develop a time frame for its full implementation", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Bring all constitutional provisions and relevant laws into line with the CPA and international\nobligations", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Ensure the protection of women against sexual violence and ensure the implementation of the "Women, Peace and Security" resolutions of the Security Council, in particular regarding their effective participation in the transitional process", - "values": [ - "4 - General action" - ] - }, - { - "text": "Continue to provide specific and practical human rights education and training to all prison officers and members of the Carabineros, Policia de Investigaciones and Gendarmeria, and ensure their full accountability for any violations of human rights as well as effective access to remedies for victims.", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Uphold the principle of non-refoulement regarding refugees and asylum seekers, and protect the human rights of all migrants, irrespective of their immigration status ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Take all measures necessary to ensure full respect for freedom of expression and to guarantee that journalists can practice their profession freely ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Integrate human rights education and training in the various levels of schooling", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Adopt the Law on the Rights of the Child and the Law against Discrimination as matters of priority, as well as measures to ensure the implementation of laws on birth registration ", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Immediately stop the imposition of the cruel measure of death penalty on children ", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Urgently ratify and implement the Istanbul Convention on preventing and combating violence against women and domestic violence", - "values": [ - "4 - General action" - ] - }, - { - "text": "As previously recommended, amend existing rules for the security forces, including the Public Order and Security Act, to ensure that the rights to peaceful assembly, freedom of association and freedom of the press can be exercised", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Put in place a concrete national strategy to disseminate a culture of human rights and to ensure the long-term protection of these rights.", - "values": [ - "4 - General action" - ] - }, - { - "text": "Continue to promote the rights of communities of African descent, in particular children\u2019s rights", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Continue efforts regarding the rights of the child and welcomed all initiatives relating to street children ", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Continue efforts to develop and implement inclusive health and education policies to benefit all segments of society", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Establish authoritative institutions at national level to combat racism, racial discrimination, xenophobia, anti-Semitism and intolerance and to raise awareness amongst the Andorran population on these manifestations", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Accelerate efforts to ratify the International Convention on the Protection of All Persons from Enforced Disappearance", - "values": [ - "4 - General action" - ] - }, - { - "text": "Further step up its efforts to prevent and eradicate trafficking in persons and consider the possibility of developing a national action plan and of inviting the Special Rapporteur on trafficking in persons, especially in women and children ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Accede to the International Convention on the Protection of the Rights of All Migrant Workers and Members of their Families in accordance with the recommendation no. 1737 of 17 March 2006 made in that regard by the Council of Europe ", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Continue to increase its capacities for integration of migrants ", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Ensure the safe and voluntary return of all internally displaced persons to their place of origin", - "values": [ - "4 - General action" - ] - }, - { - "text": "Sign and ratify the Convention on the Rights of Persons with Disabilities and the Optional Protocol thereto - and the International Convention for the Protection of All Persons from Enforced Disappearance ", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Allocate appropriate manpower and finance for the implementation of the National Plan to Promote and Protect Human Rights in the Sudan (2013- 2023)", - "values": [ - "4 - General action" - ] - }, - { - "text": "Reinforce measures to combat xenophobia and other related crimes ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Adopt appropriate measures to ensure safety and protection of human rights defenders and take all necessary steps to ensure prosecution of all those responsible for violation of their rights", - "values": [ - "4 - General action" - ] - }, - { - "text": "Recommended the establishment a moratorium on the application of the death penalty with a view to abolish it.", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Further promote policies and programmes which offer full and equal participation of all ethnic groups", - "values": [ - "4 - General action" - ] - }, - { - "text": "Strengthen the institutions established to protect democracy", - "values": [ - "4 - General action" - ] - }, - { - "text": "Facilitate the process to amend or rescind the Public Order and Security Act, in so that regulations on this matter are compatible with the international human rights instruments, and to safeguard the freedom of expression, association and peaceful assembly ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Issue a standing invitation to all UN special procedures", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Continue its fight against poverty with a focus on upholding respect and observance for human rights", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Consider the recommendations on reforms to the justice system made by the President of the Supreme Court in his speech of 7 January and identify improvements which will help to guarantee the human right of access to justice. This should include thorough investigation of malpractice and a zero tolerance approach towards corruption ", - "values": [ - "3 - Considering action" - ] - }, - { - "text": "Affirm their commitment to an inclusive society by continuing to support National Anti-Racism Strategies and programmes aimed at building social cohesion and community harmony", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Take further measures to guarantee freedom of expression, including by effectively investigating threats and attacks on media and journalists ", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Take into account the resolutions approved by the Council, which covers a series of important issues and offers significant recommendations to promote and protect the rights of children", - "values": [ - "4 - General action" - ] - }, - { - "text": "Review and amend relevant legislation, such as the Criminal Code and the Code of Administrative Offences, to enhance the protection and promotion of the rights of lesbian, gay, bisexual, transgender and intersex persons and of individuals belonging to vulnerable, minority populations, including religious communities and ethnic minorities, as well as amend article 1 of the Law on Ensuring Equality to include sexual orientation and gender identity", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Introduce necessary reforms to fully abolish the death penalty ", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Accede to the Rome Statute of the International Criminal Court and implement it into national law", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Continue strengthening protection of the rights of persons with disabilities, particularly through approving a national disability strategy, which particularly focuses on boys, girls and women with disabilities", - "values": [ - "4 - General action" - ] - }, - { - "text": "Fully integrate a gender perspective into the follow-up process to the UPR review.", - "values": [ - "4 - General action" - ] - }, - { - "text": "Intensify efforts to promote and protect women's rights, particularly in regard to gender based violence ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Develop and implement a specific education policy which would cover all children with special needs", - "values": [ - "4 - General action" - ] - }, - { - "text": "Submit efforts towards promotion of gender equality", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Take further steps to deal with the problem of child domestic workers and abolish children abuse", - "values": [ - "4 - General action" - ] - }, - { - "text": "Prevent and punish all forms of violence against women and girls, and consolidate a higher representation of women in management and decision making positions", - "values": [ - "4 - General action" - ] - }, - { - "text": "Additional measures to level educational opportunities will be introduced. Poland will spare no effort to enable preschool-age children to enjoy their rights, among others through the creation of amenable conditions for developing various forms of preschool education, particularly in rural areas. The planned strategy for the development of education in rural areas for 2007-2013 will be attuned to the Government Programme for the development of education in rural areas in the years 2008-2013. The strategic aim of the programme is to upgrade the quality and level of education in rural areas. Implementation of the measures facilitating access for children from rural areas and small towns to quality education will continue until 2013", - "values": [ - "4 - General action" - ] - }, - { - "text": "Take appropriate measures to combat nationalist extremism as effectively as possible", - "values": [ - "4 - General action" - ] - }, - { - "text": "Make every effort to increase the effectiveness of the protection of the rights of the child", - "values": [ - "4 - General action" - ] - }, - { - "text": "Make education reforms to increase the quality of education, make it more accessible and facilitate re-entry of adolescent mothers back to school", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Ratify the Optional Protocol to the Convention on the Rights of Child on the involvement of children in armed conflict", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Ratify the Second Optional Protocol to the International Covenant on Civil and Political Rights, on abolishing the death penalty", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Make further efforts to address reported cases of obstructions to human rights activities, including attacks and threats against journalists and human rights activists. ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Seek support from the international community, and in particular the United Nations organs and programmes, in relation to human rights training - work against sexual violence, especially violence perpetrated against women - measures against child labour - the eradication of the phenomenon of child soldiers - security - assistance to families and communities in combating the effects of poverty and AIDS - education - and juvenile justice. ", - "values": [ - "1 - Minimal action" - ] - }, - { - "text": "Establish stronger measures to eliminate gender based discrimination, especially in the work environment", - "values": [ - "4 - General action" - ] - }, - { - "text": "Proceed to the swift enactment of the draft laws on the freedom of information, as mentioned in paragraph 41 of its National Report, and to the urgent overall review of the penal treatment of freedom of expression offences, especially with regard to the protection of journalists", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Intensify efforts to improve the literacy rate among indigenous peoples and those living in the rural areas", - "values": [ - "4 - General action" - ] - }, - { - "text": "Continue implementing programmes and measures aimed at ensuring universal and quality health and education services for all its population ", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Ratify the Optional Protocol to the International Covenant on Economic, Social and Cultural Rights, the Optional Protocol to the Convention on the Rights of the Child on a communications procedure and the International Convention for the Protection of All Persons from Enforced Disappearance", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Ratify OP-CEDAW ", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Ensure the right to adequate food, including access to food, in a non-discriminatory manner, paying special attention to marginalized groups in its public distribution, in accordance with its international human rights obligations", - "values": [ - "4 - General action" - ] - }, - { - "text": "Luxembourg pledged to include gender dimensions in the review follow-up, such as in measures under chapter 9 on fundamental rights of the national plan of action for gender equality for 2009-2013, which was to be adopted after the election in 2009", - "values": [ - "4 - General action" - ] - }, - { - "text": "Elaborate an inclusive strategy for the protection of children, particularly concerning all forms of violence, abuse, and access to education without discrimination", - "values": [ - "4 - General action" - ] - }, - { - "text": "Take appropriate measures to guarantee that all legal provisions, and especially those of the Civil Code and customary practices, are in conformity with the minimum age for marriage which, under the Constitution, is 18 years ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Finalize the preparation of the National Action Plan to Combat Child Labour", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Abolish the practice of corporal punishment", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Double its efforts in combating HIV/AIDS ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Ensure that all children are registered immediately after birth, and ensure that the national legislation regulating birth registration is in line with the Convention on the Rights of the Child", - "values": [ - "4 - General action" - ] - }, - { - "text": "Revitalize the National Child Rights Committee and allocate it sufficient resources for the carrying out of its mandate", - "values": [ - "4 - General action" - ] - }, - { - "text": "Strengthen the measures for fighting discrimination", - "values": [ - "4 - General action" - ] - }, - { - "text": "Strengthen policies related to the fight against discrimination against indigenous and Afro-Brazilian children and others in vulnerable situations from an integral and intersectoral perspective", - "values": [ - "4 - General action" - ] - }, - { - "text": "Consider the possibility of acceding to the International Convention on the Protection of the Rights of All Migrant Workers and Members of Their Families ", - "values": [ - "3 - Considering action" - ] - }, - { - "text": "Follow-up on the recommendations from the treaty bodies in the areas of the rights of women, non-discrimination, torture and children ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Take the necessary measures to inquire into all allegations of human rights violations and bring to trial those responsible", - "values": [ - "4 - General action" - ] - }, - { - "text": "Criminalize all forms of sexual abuse of girls under 18 years of age, including marital rape and \u201chonour crimes\u201c", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "The head of delegation noted, as mentioned by their foreign minister during their UPR, the government has demonstrated strong commitment to implement the provisions of the CHT Peace Accord concluded in 1997. The delegation reaffirmed that Bangladesh government remains committed to full implementation of the Treaty.", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Provide by law unobstructed access to legal counsel throughout all phases of criminal investigation, trial and appeal, ensure the accused is informed of this right immediately upon arrest, and give defendants and their lawyers unrestricted access to the full case file and all evidence against the accused", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Apply the Yogyakarta principles in policy development ", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Investigate allegations of manipulation and abuse concerning the registration of political parties ", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Take all appropriate measures to combat and prevent discrimination against children belonging to religious or other minority groups, including by removing educational material which could serve to perpetuate discrimination", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Argentina undertakes to participate in an international campaign to promote the ratification of the Optional Protocol to the International Covenant on Economic, Social and Cultural Rights", - "values": [ - "4 - General action" - ] - }, - { - "text": "Issue a standing invitation to Special Procedures ", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Guarantee the rights of the child and create the best alternative for improving the current system of youth accountability, in compliance with the International Convention on the Rights of the Child", - "values": [ - "4 - General action" - ] - }, - { - "text": "Repeal or amend Law 19/06/2016, which entered into force at the beginning of 2017, in order to guarantee the constitutionally enshrined human rights to freedom of the press and of freedom of opinion and expression, as both are necessary preconditions for a democratic and active society", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Intensify efforts to end discrimination against women and increase women participation in the Government, in decision making positions and other segments of society", - "values": [ - "4 - General action" - ] - }, - { - "text": "Ensure that any legislative modification, such as the enactment of the Bill of Rights, maintains the level of protection that the current Human Rights Act guarantees", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Decriminalize defamation, abolish insult laws and take all additional measures to ensure, in law and in practice, a safe and enabling environment for journalists", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Continue to make even greater efforts to promote human rights in accordance with the cultural practices that stand side by side the Jordanian society and continue efforts to incorporate them into their national legislation", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Inform the Council on the relevant mechanisms on the Kingdom's progress in the field of dissemination of human rights culture and human rights education", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Conduct an investigation, bring perpetrators to justice and provide reparation to the victims of sexual violence involving members of the armed forces ", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Pass a law guaranteeing gender equality and take the necessary measures to empower women and society", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Intensify its efforts to resolve outstanding issues in ensuring human rights as mentioned in its national report ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Accede to the International Convention on the Rights of All Migrant Workers and Members of Their Families ", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Increase efforts to combat trafficking in persons, inter alia, through the development of international cooperation with interested Governments, international organizations and non-governmental organizations ", - "values": [ - "1 - Minimal action" - ] - }, - { - "text": "Develop and adopt a comprehensive national plan of action for the incorporation of human rights for women into national legislation and practices to ensure the eradication of violence against women, a dismantling of the male guardianship system, an allowance of the freedom of movement, access to work, study, and health care, as well as equal standing before the courts and the right to vote and participate in public affairs, and incorporate and implement the concluding observations of the Committee on the Elimination of Discrimination against Women", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Continue to work within the broader membership of the Caribbean Community (CARICOM) to establish the creation of regional strategies to combat domestic and sexual violence against women and children", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Carry out all obligations arising from the Geneva Convention of 1951 on the status of refugees and the principle of non-refoulement, and to guarantee that individuals benefit from a fair and equitable trial before being returned to countries in which risks of torture, ill treatment and other serious human rights violations exist", - "values": [ - "4 - General action" - ] - }, - { - "text": "Approve a comprehensive policy with specific measures aimed at addressing the deep-rooted causes of trafficking in children and investigate the alleged disappearances of adolescent girls in the refugee camps", - "values": [ - "4 - General action" - ] - }, - { - "text": "Undertake relevant reforms that guarantee the independence and impartiality of the judiciary and ensure that it is free from political control and interference ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Consider the ratification of ILO Convention 169", - "values": [ - "3 - Considering action" - ] - }, - { - "text": "Favourably consider revising the new Internet Law in order for its citizens to enjoy better access to the Internet thereby further ensuring their right to freedom of expression and opinion", - "values": [ - "3 - Considering action" - ] - }, - { - "text": "Take measures to put an end to the recruitment of children by armed groups and ensure the reintegration of demobilized children", - "values": [ - "4 - General action" - ] - }, - { - "text": "Adhere to or ratify the International Convention for the Protection of All Persons from Enforced Disappearance ", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Impose a moratorium on the death penalty with a view to its later abolition and sign and ratify the Second Optional Protocol to the ICCPR", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Cooperate with specialized United Nations bodies to develop the health sector in accordance with the national plan of 2012-2025", - "values": [ - "4 - General action" - ] - }, - { - "text": "Redouble efforts to eliminate child labour ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Strengthen the application of the legislation in combating discrimination and violence, above all sexual violence, against women and girls ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Take measures to increase the political participation of women ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Implement the steps envisaged in the promotion of rights of people with disabilities, with a special emphasis on equal opportunities for children with disabilities ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Continue to actively implement all these adopted measures, to safeguard women empowerment and promote gender equality", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Ensure the implementation of the judgment of the European Court on\nHuman Rights that found the Government's denial of a license to A1 broadcasting company to be in violation of Armenia's human rights obligations \n", - "values": [ - "4 - General action" - ] - }, - { - "text": "Pass legislation to make spousal rape a crime and to ensure that laws are in place to specifically address domestic violence ", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Ensure the independence and effectiveness of the National Commission on Human Rights, in particular through the allocation of adequate resources in order to bring it into conformity with the Paris Principles", - "values": [ - "4 - General action" - ] - }, - { - "text": "Implement policies dealing with the stigma and discrimination against people living with HIV/AIDS", - "values": [ - "4 - General action" - ] - }, - { - "text": "Further strengthen the Independent Commission of Investigations (INDECOM) in line with international standards by amending the Coroner's Act to include INDECOM as an interested party to an inquiry into a death, and reforming INDECOM Act to settle challenges from the police to INDECOM's jurisdiction and mandate", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Ensure realization of the right of detainees to the legal assistance immediately after being taken into detention without exception ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Strengthen further already existing anti-discriminatory measures and laws", - "values": [ - "4 - General action" - ] - }, - { - "text": "Consider adopting a comprehensive strategy at all levels to combat all forms of violence against women, including domestic violence", - "values": [ - "3 - Considering action" - ] - }, - { - "text": "Pursue its efforts to improve the situation of detainees and to take measures in achieving this goal ", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Repeal without delay all legal and regulatory provisions that are not in conformity with the Convention on the Elimination of All Forms of Discrimination against Women, ratified by Swaziland in 2004, and actively combat violence and discrimination against women", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Consider ratifying the International Convention for the Protection of All Persons from Enforced Disappearance", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Take all the necessary measures to protect journalists and human rights defenders from threats and attacks, and ensure that the perpetrators of such violence are brought to justice", - "values": [ - "4 - General action" - ] - }, - { - "text": "Take measures to ensure equal opportunities for women in the labour market", - "values": [ - "4 - General action" - ] - }, - { - "text": "Adopt as soon as possible a legislative framework on freedom of expression, including access to internet, to decriminalize defamation and slander as crimes ", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Effectively implement the national policy to reduce violence against women ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Strengthen human rights teaching in school programmes", - "values": [ - "4 - General action" - ] - }, - { - "text": "Continue its policies and programmes to promote religious tolerance and harmony in society ", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Recommended the adoption of further measures to fight impunity of persons responsible of torture and extrajudicial killings and prompt, thorough, independent and impartial investigations into all allegations of these crimes.", - "values": [ - "4 - General action" - ] - }, - { - "text": "Immediately close the Nauru and Manus Island detention centres", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Ensure the effective implementation of existing legislation, including the provision of protection and assistance to victims and timely prosecution and punishment of traffickers", - "values": [ - "4 - General action" - ] - }, - { - "text": "Ensure that reports of killings, threats, attacks and acts of intimidation against human rights defenders are thoroughly and promptly investigated and those responsible brought to justice.", - "values": [ - "4 - General action" - ] - }, - { - "text": "Ratify ICESCR and the International Convention for the Protection of All Persons Against Enforced Disappearance (CED) ", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Develop and approve the legal framework allowing to meet the minimum quota for women to sit in the Federal Parliament", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Enforce the prohibition of torture while reflecting on the condition of detention centres", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Consider, in a progressive manner, the ratification of some international human rights instruments, particularly the International Covenant on Civil and Political Rights ", - "values": [ - "3 - Considering action" - ] - }, - { - "text": "Ensure that the education system has all means to implement an inclusive education policy, since a high percentage of children with disabilities is currently excluded from the school system ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Take measures to empower young people, particularly through education, with a view to preventing them from joining criminal and transnational gangs, and ensure their rehabilitation and social reintegration", - "values": [ - "4 - General action" - ] - }, - { - "text": "Formalize its moratorium on the death penalty with a view to its full abolition", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Align the national anti-discrimination legislation with the European Union standards, in particular in relation to the rights of LGBTI persons", - "values": [ - "4 - General action" - ] - }, - { - "text": "Establish a national human rights institution in conformity with the Paris Principles, and extend a standing invitation to the Council mandate holders", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Equip all police stations with a women\u2019s desk, private rooms, and a sufficient number of female police officers, with a view to better ensuring women\u2019s and girls\u2019 access to justice", - "values": [ - "4 - General action" - ] - }, - { - "text": "Allocate adequate resources in order to strengthen the implementation of the Human Rights Action Plan 2012-2020", - "values": [ - "4 - General action" - ] - }, - { - "text": "Continue taking measures to eliminate racial and ethnic discrimination", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Introduce a provision permitting the dissolution of organizations inciting racial hatred in domestic law ", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Take immediate measures to abolish the death penalty for crimes committed by persons when they were under the age of 18, and place a moratorium on public executions", - "values": [ - "4 - General action" - ] - }, - { - "text": "Create favourable conditions to facilitate the access of persons with disabilities to education and to employment ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Consider ratifying the Convention on the Rights of Persons with Disabilities ", - "values": [ - "3 - Considering action" - ] - }, - { - "text": "Sign and ratify the Optional Protocol to the CRPD ", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Set a concrete time frame and take concrete actions in order to resolve the abduction issue as soon as possible, including ensuring the immediate return of Japanese and other abductees \n\n", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Enact the draft law on sexual harassment in the workplace", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Strengthen its enforcement of domestic laws that protect children from sexual abuses and exploitation, expedite the investigation of reported cases, and bring the perpetrators to justice", - "values": [ - "4 - General action" - ] - }, - { - "text": "Provide adequate resources as well as professional and human rights training to the judiciary and the police forces", - "values": [ - "4 - General action" - ] - }, - { - "text": "Act on its commitment to enhance the promotion and protection of Human Rights by establishing a National Human Rights Body in conformity with the Paris Principles, as well as by ratifying and implementing outstanding core international human rights treaties ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Continue efforts to reduce violence against women and girls, including sexual violence, family violence and female genital mutilation", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Recommended to the Government that the death penalty be abolished", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Investigate all attacks on journalists and members of the opposition, and take appropriate measures to fight against impunity for such crimes ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Modify its criminal code in order to establish a definition on torture and harshness of sentences according to the Convention on Tortures.", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Revise its legislation and legal practice to ensure that sexual orientation and gender identity as motivation for criminal offence are treated as aggravating circumstances", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Withdraw the reservations to articles 2 and 16 of the Convention on the Elimination of All Forms of Discriminations Against Women", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Continue its efforts to strengthen and protect human rights in accordance with the cultural values of the Iranian people", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Give men and women equal rights of inheritance ", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Enforce Gambia's Children's Act of 2005 on issues such as corporal punishment, early marriages, FGM and sexual exploitation of children, as well as the Child Trafficking Law of 2007", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Consider continuing increasing allocation of more resources to the sectors of education, health and employment ", - "values": [ - "3 - Considering action" - ] - }, - { - "text": "Further improve measures aimed at combating human trafficking, including victim assistance", - "values": [ - "4 - General action" - ] - }, - { - "text": "Continue prioritizing education opportunities for the largest possible proportions of rural inhabitants and vulnerable populations ", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Confirm the signature of ICCPR and ICESCR without restriction to freedom of expression or assembly and take the necessary measures to incorporate them into its national legislation ", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Continue its efforts in the promotion and protection of women's rights through the implementation of the various national action plans", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Review the role and the mandate of the Office of the National Ombudsman, particularly in the area of non-discrimination and police misconduct, and guarantee its sufficient funding, as suggested by the Commissioner for Human Rights of the Council of Europe.", - "values": [ - "3 - Considering action" - ] - }, - { - "text": "Seek enhanced international support for economic development and reconstruction of infrastructure destroyed due to the conflict and the devastating earthquakes", - "values": [ - "1 - Minimal action" - ] - }, - { - "text": "Continue to strengthen its cooperation with United Nations human rights mechanisms, in particular by accepting country visits of special rapporteurs", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Adopt clear and enforceable provisions criminalizing violence against women, including domestic and sexual violence", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Ratify the Optional Protocol to the Convention on the Rights of Persons with Disabilities", - "values": [ - "4 - General action" - ] - }, - { - "text": "Sign and ratify the Optional Protocol to the Convention on the Elimination of All Forms of Discrimination against Women", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Actively continue to implement the best practice and policy for the promotion and protection of the rights and living conditions, and to narrow the gap in living standards in favour of the vulnerable groups in the country ", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Consider extending a standing invitation to the special procedures", - "values": [ - "3 - Considering action" - ] - }, - { - "text": "Continue the national plans and strategies to reduce poverty and food insecurity in the country", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Ratify the Convention for the Protection of All Persons from Enforced Disappearance and establish a national human rights institution which fully complies with the Paris Principles", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Continue efforts in order to increase participation of women in political, public and professional spheres ", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Guarantee that its laws and policies are in conformity with the Convention on the Elimination of All Forms of Discrimination against Women, and take measures to combat practices that perpetuate discrimination against women and their marginalization, particularly with regard to their inheritance and citizenship, and adopt specific legislation properly penalizing domestic violence and promoting the participation of women in political life ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Take active measures to close the gap between rich and poor and between the mountainous and urban areas.", - "values": [ - "4 - General action" - ] - }, - { - "text": "Continue combating inequalities in access to employment and in working conditions based on gender and race as noted by CESCR ", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Step up its efforts to combat torture, inter alia, by effectively addressing the concerns of the Committee against Torture ", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Review its birth registration system to safeguard the human rights of unwed mothers and children by (i) ensuring immediate birth registration is available to all children regardless of the parents legal status, (ii) ensuring that the birth registration accurately indicates the biological parent(s) of the child, and (iii) taking steps to prevent birth registration of children by third parties, such as adoptive parents, that could result in the occurrence of de facto adoptions in the absence of proper judicial oversight, which could also put children at risk of being trafficked", - "values": [ - "3 - Considering action" - ] - }, - { - "text": "Build on the positive measures in protecting the rights of the household service workers and continue to step up efforts to protect the rights of migrant workers and their families", - "values": [ - "4 - General action" - ] - }, - { - "text": "Remove the reservations it has made to CEDAW ", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Kindly consider the possibility of speeding up the internal procedures necessary for the entry into force of the bilateral Agreement between Ukraine and the Republic of Moldova on the rights of national minorities, signed in Chisinau on 17 December 2009 ", - "values": [ - "3 - Considering action" - ] - }, - { - "text": "Typify the crimes of international law, enacting and enforcing legislation defining and criminalizing torture, enforced disappearance, genocide and crimes against humanity, and ensure the non-application of statutes of limitation, amnesties, pardons prior to conviction and immunities", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Ratify the ICESCR ", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Abolish the death penalty and adopt laws favouring the protection of women, and combat domestic violence", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Consider ratification of the International Covenant on Economic, Social and Cultural Rights and the International Covenant on Civil and Political Rights as soon as possible", - "values": [ - "3 - Considering action" - ] - }, - { - "text": "Ratify the International Convention on the Protection of the Rights of All Migrant Workers and Members of Their Families", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Exchange expertise on the best practices on providing health care for all", - "values": [ - "1 - Minimal action" - ] - }, - { - "text": "Sign and ratify the third optional protocol to the CRC on a communication procedures", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Further strengthen its national human rights institutions, especially in the form of greater resource allocation", - "values": [ - "4 - General action" - ] - }, - { - "text": "Take all the necessary steps to ensure that all perpetrators of torture are prosecuted and brought to justice", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Take steps to establish an independent national human rights institution in line with the Paris Principles", - "values": [ - "4 - General action" - ] - }, - { - "text": "Take measures to ensure equitable access of indigenous children, migrant children and those living in rural areas to education and health services and improve their standard of living ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Double efforts towards gender equality and the empowerment of women through education and skills training", - "values": [ - "4 - General action" - ] - }, - { - "text": "Within the context of the National Plan of Action for Women 2007-2011 and the Family Protection Act, consider raising public awareness to combat domestic violence and making legal aid available to all victims of such violence. ", - "values": [ - "3 - Considering action" - ] - }, - { - "text": "Strengthen poverty reduction and access to education and health services programmes ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Implement the recommendations of the Human Rights Committee, by prosecuting and sentencing as appropriate the perpetrators of the extrajudicial executions of December 1982 and the Moiwana massacre in 1986 ", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Establish a national mechanism for the prevention of torture, to which it committed itself by signing the Optional Protocol of the Convention against Torture in 2008", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Include sexual orientation and gender identity and expression among the prohibited grounds of discrimination", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Ensure implementation of impartial and independent investigations and criminal proceedings in accordance with existing law, including for cases as the Marina Cue events in Curuguaty of June 2012 in order to clarify allegations and bring perpetrators to justice", - "values": [ - "4 - General action" - ] - }, - { - "text": "Take more effective measures to combat racial discrimination and intolerance, including by promptly investigating and taking stern action against the perpetrators of hatred, racist and xenophobic acts, speeches and publications", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Continue to strengthen the role of the national council for women and continue working to eradicate violence against women", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Strengthen protection of migrants and asylum seekers transiting through Cap Verde ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Entrench in the standard procedures that every person arrested be given a copy of the arrest warrant and no person should be held incommunicado. In any event, all detention should be subject to effective monitoring by an independent body ", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Speed up ratification of core human rights treaties that it has signed, but not ratified yet ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Continue promoting internal debates towards a better regulation of the consultation processes with indigenous peoples on issues that affect them directly ", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Take steps to increase efforts to ensure the rights of individuals to decide freely and responsibly the number, spacing and timing of their children and to have the information and means to do so, and the right to the highest attainable standard of sexual and reproductive health", - "values": [ - "4 - General action" - ] - }, - { - "text": "Ensure effective investigation of and accountability for all cases of torture and death in detention.", - "values": [ - "4 - General action" - ] - }, - { - "text": "Strengthen efforts towards the realization of the rights to education and the highest attainable standard of physical and mental health in the post- Ebola recovery period", - "values": [ - "4 - General action" - ] - }, - { - "text": "Implement the National Roma Integration Strategy with special focus on improving Roma employment in rural areas, ensuring health insurance coverage, improving housing conditions and combating hate speech against Roma", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Continue to take steps towards eliminating gender-based violence, including through strengthening domestic laws and policies to protect women", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Increase financial support for the Slovenian minority in the provinces of Carinthia and Styria to the 1995 level in real terms, as previously recommended", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Enhance efforts for effective implementation of the Convention on the Rights of Persons with Disabilities ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Continue to take the vital steps to grant citizenship to children of Bahraini mothers in the same fashion as children of Bahraini fathers as CEDAW and the CRC have pointed out ", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Train in human rights judges working in the local courts, administering Zambian customary law, in particular, in respect to the human rights of women and children and a gender perspective and to promote a flexible and effective system of reviewing sentences, so as to guarantee the due process of law.", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Adopt a family law that ensures equal rights between men and women and which protects girls from early and forced marriage", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Invest further efforts in addressing the root causes of recent racial incidents and expand its capacity in reducing poverty in neighbourhoods experiencing sub/par public services, including access to adequate housing and public safety", - "values": [ - "4 - General action" - ] - }, - { - "text": "Continue to strengthen their national legislation into line with international human rights instruments to which it is a party", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Continue to focus on developing its economy, increasing employment, strengthening poverty eradication and raising the standard of living of its people", - "values": [ - "4 - General action" - ] - }, - { - "text": "Adopt the necessary policies to correct existing deficiencies in access to water and sanitation of the population ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Continue appropriate policies to eliminate poverty in Sri Lanka by 2030 as stated in paragraph 87 of the report", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Consider ratifying the 1951 Convention relating to the Status of Refugees and its Protocol", - "values": [ - "3 - Considering action" - ] - }, - { - "text": "The ratification of the Rome Statute of the International Criminal Court and the full alignment of Bahrain's national legislation with its provisions", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Continue with the development of programmes for the reintegration of victims of gender-based violence, the provision of psychosocial support and public awareness", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Initiate a prison reform plan to improve the deteriorating conditions in United Kingdom prisons, including addressing the increase in homicides and assaults", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Establish a judicial reform which provides, inter alia, mechanisms to guarantee an independent justice and the effectiveness of the bodies responsible for combating corruption", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Continue to take measures to support the rule of law and ensure that justice is brought to Darfur", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Take measures to protect women accused of witchcraft ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Strengthen measures to combat violence against women, including through the assessment of the implementation of the Domestic Violence Prevention Act and its related Programme, and consider seeking international cooperation on this matter", - "values": [ - "4 - General action" - ] - }, - { - "text": "Continue to actively protect rights of women and children", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Establish promptly a national human rights institution in conformity with the Paris Principles ", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Ensure that decent sanitary conditions are provided to detainees", - "values": [ - "4 - General action" - ] - }, - { - "text": "Ensure access to effective asylum procedures in line with international law and that migration policies respect the principle of non-refoulement and European Union legislation", - "values": [ - "4 - General action" - ] - }, - { - "text": "Promote a higher and adequate representation of women in the public institutions", - "values": [ - "4 - General action" - ] - }, - { - "text": "Strengthen efforts to combat smuggling and trafficking in persons, in order to eradicate this crime ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Fully implement the Strategic Poverty Reduction Programme", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Uphold freedom of expression of non-governmental organizations by amending the laws limiting it and repealing punitive administrative or judicial sanctions to that regard.", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Intensify its efforts to eliminate the gender wage gap", - "values": [ - "4 - General action" - ] - }, - { - "text": "Involve indigenous communities in any decision related to the management of their ancestral territories ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Consider ratifying OP-CRC-AC and CRPD", - "values": [ - "3 - Considering action" - ] - }, - { - "text": "Pursue efforts to foster social integration and reinsertion of recidivist minors.", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Promote and advance policies that focus on the alleviation of poverty and the advancement of its entire people ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Consider ratifying the ILO Domestic Workers Convention, 2011 [No. 189]", - "values": [ - "3 - Considering action" - ] - }, - { - "text": "Persist in its efforts to ensure equality between the rights of men and women, including through social sensitization actions ", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Extend a standing invitation to the Special Procedures of the Human Rights Council ", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Carry on its measures in the implementation of the act on Prevention of Domestic Violence as a means to improve and protect the rights of women", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Take further measures to advance equality on the ground of sexual orientation and gender identity, using the Yogyakarta Principles, among others, as a guide for policy-making.", - "values": [ - "4 - General action" - ] - }, - { - "text": "Continue efforts in ensuring access to the rights of older persons in the context of an adequate standard of living and healthcare", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Revise the procedures governing registration of civil society organizations to ensure transparent, non-discriminatory, expeditious and inexpensive procedures that allow for appeal and are in conformity with international human rights standards ", - "values": [ - "3 - Considering action" - ] - }, - { - "text": "Consider strengthening all measures aimed at promoting gender equity and the full and effective participation of women in the political, social, economic and cultural spheres of life, including through legislative and administrative means", - "values": [ - "3 - Considering action" - ] - }, - { - "text": "Take further steps to address discrimination against women, minorities and vulnerable groups, including children and disabled people", - "values": [ - "4 - General action" - ] - }, - { - "text": "Re-establish the moratorium on executions with a view to its abolition", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Establish its national human rights institution to be fully adapted to the Paris Principles, with a broad and clear legal mandate and sufficient financial resources ", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Take necessary steps to ensure that all allegations of torture are duly investigated, perpetrators prosecuted and the victims duly compensated", - "values": [ - "4 - General action" - ] - }, - { - "text": "Ratify the Second Optional Protocol to the ICCPR with a view to abolishing the death penalty", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Take the necessary steps to ensure, in the context of accelerated integration, that all child soldiers are released from the Congolese army", - "values": [ - "4 - General action" - ] - }, - { - "text": "Guarantee non-discriminatory access by Rohingya and other Muslim minorities to social services and education in Rakhine State", - "values": [ - "4 - General action" - ] - }, - { - "text": "Take necessary measures to improve access to education for children belonging to minorities and for children from immigrant families as well as to develop programmes to reduce school drop-out rate", - "values": [ - "4 - General action" - ] - }, - { - "text": "Establish a national mechanism to ensure reparation for victims of incitement to hatred, acts of racism and Islamophobia", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Continue its efforts to promote and fully develop the role of women in the political, economic and social fields ", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Take all necessary measures in order to provide a fair and independent judiciary system, which respect the rights of the defence", - "values": [ - "4 - General action" - ] - }, - { - "text": "Establish a juvenile judiciary ", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Expressly prohibit the corporal punishment of children in all settings, including the home, penal institutions, schools and day-care centres and also take steps to explicitly repeal the right "to administer proper punishment" in the Children's Act", - "values": [ - "4 - General action" - ] - }, - { - "text": "Continue to promote sustainable development of the health sector, prioritizing the partnership with the national community in delivering health services to all citizens ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Continue, with support of the WHO and UNDP, its effort to improve access to health care by its people", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Step up its efforts to ensure the protection of women against violence ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Continue to undertake measures to remove discrimination against ethnic minorities, including those recommended by the Committee on the Elimination of Racial Discrimination in September 2011", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Criminalize torture in its penal code and ratify OP-CAT ", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Further strengthen its overall law enforcement to effectively combat all forms of race-related crimes and hate speech as well as to raise public awareness in this field", - "values": [ - "4 - General action" - ] - }, - { - "text": "Consider issuing a standing invitation to all special procedures", - "values": [ - "3 - Considering action" - ] - }, - { - "text": "Consider the possibility of acceding to the Optional Protocol to the Convention on the Rights of the Child on the sale of children, child prostitution and child pornography.", - "values": [ - "3 - Considering action" - ] - }, - { - "text": "Seek technical assistance from OHCHR and UNICEF, among others, on juvenile justice as recommended by the Committee on the Rights of the Child ", - "values": [ - "1 - Minimal action" - ] - }, - { - "text": "Take expeditiously efficient steps to improve access to free basic education to all children, with particular focus on those living in the interior areas and those belonging to indigenous and minority groups ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Speed up the adoption of the new Criminal Code", - "values": [ - "4 - General action" - ] - }, - { - "text": "Ratify the Second Optional Protocol to the International Covenant on Civil and Political Rights, aiming at the abolition of the death penalty, and render its legal practices consistent therewith", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Strengthen its efforts to combat domestic violence and violence against children and adolescents ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Consider acceding to ICCPR-OP2", - "values": [ - "3 - Considering action" - ] - }, - { - "text": "Take necessary measures to ensure consultation and participation of indigenous peoples in the processes of the elaboration of public policies that is of interest to them", - "values": [ - "4 - General action" - ] - }, - { - "text": "Continue to reduce poverty as a priority in the national development plan and improve the living standards of vulnerable groups", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Address gender pay disparity effectively through the full implementation of the equal pay system standard", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Continue its efforts in the area of dealing with the past through the establishment of a Special Court and a Truth and Reconciliation Commission in line with international standards ", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Take necessary measures to prohibit racial discrimination and adopt a comprehensive anti-discriminatory law ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Draft a single national action plan on the rights of persons with disabilities, with an associated budget and a clear time frame for its implementation", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "In accordance with the commitment made after the universal periodic review of 2012, ratify the International Convention for the Protection of All Persons from Enforced Disappearance", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Guarantee access to health for all", - "values": [ - "4 - General action" - ] - }, - { - "text": "Adopt necessary measures to eradicate impunity for human rights violations, particularly against women and indigenous population", - "values": [ - "4 - General action" - ] - }, - { - "text": "Widen the scope of international obligations through accession to the remaining international treaties, such as the International Convention for the Protection of All Persons from Enforced Disappearance ", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Victims of domestic violence should have possibility to use appropriate means of redress and access to shelters", - "values": [ - "4 - General action" - ] - }, - { - "text": "Develop a rights-based national action plan that provides a framework to address the challenges of climate change, including disaster management and mitigation ", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Review and align the legislation with freedom of religion and belief and freedom of expression, as stipulated in the ICCPR", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Amend its legislation to provide special protection for children against violence, enabling them to file complaints independent of their guardians, and to provide a hotline and shelter for children who incur domestic violence", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Ratify the ICCPR, the ICESCR and CEDAW ", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Work towards guaranteeing a favourable environment for the activities of journalists, human rights defenders and civil society", - "values": [ - "4 - General action" - ] - }, - { - "text": "Further develop national programmes with a focus on providing access to health services to people living under the poverty line ", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Intensify efforts to combat trafficking in persons and provide adequate resources and services in relation to those efforts", - "values": [ - "4 - General action" - ] - }, - { - "text": "Operationalize the NHRC and strengthen its capabilities in the technical, human and financial fields for better protection of human rights ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Consider the necessary legislations and policies to effectively guarantee the protection and promotion of freedoms of expression, peaceful assembly and association", - "values": [ - "3 - Considering action" - ] - }, - { - "text": "Strengthen efforts to guarantee minimum conditions for those held in police custody and detention centres in accordance with international standards, and follow up the specific recommendations of United Nations bodies in this regard.", - "values": [ - "4 - General action" - ] - }, - { - "text": "Introduce a freedom of information law", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Continue its efforts on further eradicating poverty and empowering women", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Take effective measures to improve conditions in prisons and reduce overcrowding ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Continue its efforts to ensure that national laws are consistent with international obligations, and to further their implementation on the ground", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Continue making efforts to prioritize the reports to the treaty bodies ", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Bring rape laws in line with international standards and remove the 35-day limitation on lodging a complaint of rape with the police", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Investigate, prosecute and punish all cases of summary and extrajudicial executions, and provide adequate compensation to victims ", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Ensure that the victims of human rights violations and their families can obtain reparation ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Take further necessary measures to protect the rights of foreign workers in general and domestic workers in particular ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Harmonize national laws with international treaties to which Malawi has acceded ", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Continue and increase efforts to reduce impunity for those responsible for embezzlement of public money", - "values": [ - "4 - General action" - ] - }, - { - "text": "Review existing land concessions and cancel or sanction those found to be violating the law", - "values": [ - "3 - Considering action" - ] - }, - { - "text": "Implement legal sanctions against those who commit human rights abuses in the security forces, in addition to administrative sanctions such as dismissal.", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Strengthen measures to promote freedom of association and take measures to guarantee the full exercise of the right to freedom of expression, including the right to access to public information by civil society organizations and individual citizens.", - "values": [ - "4 - General action" - ] - }, - { - "text": "Ensure that the policies aimed at assisting displaced persons take into account the Guiding Principles on Internal Displacement ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Improve protection of the rights to freedom of expression, assembly and association, by amending the Press and Publications Law and the Civil Societies Law in line with international standards and by accepting the recommendations by the Special Rapporteur on the rights to freedom of peaceful assembly and of association in 2014", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Submit its national reports to the relevant United Nations treaty bodies", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Harmonize Mexican law with the Convention on the Rights of Persons with Disabilities", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Continue efforts to build and develop judicial capacities through training for judges and intensify efforts to strengthen the role of the judiciary", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Strengthen mechanisms to prevent domestic violence, particularly, focusing on awareness-raising to heighten awareness of this issue", - "values": [ - "4 - General action" - ] - }, - { - "text": "Continue to implement strategies and plans that ensures economic and social development and give specific attention to combating poverty", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Take further steps toward the improvement of its human rights situation ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Continue incorporating into its national legislation measures to protect the rights of women and girls, and punish violence against women ", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Ratify the Convention against Torture, as well as its Optional Protocol", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Redouble its efforts in formulating the National Human Rights Action Plan", - "values": [ - "4 - General action" - ] - }, - { - "text": "Adopt a national action plan to combat racism, racial discrimination, xenophobia and intolerance", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Continue its positive engagement in promoting equality between women and men by speeding up its voluntary programmes designed to increase the number of women on decision-making bodies", - "values": [ - "4 - General action" - ] - }, - { - "text": "Apply positive measures in order to ensure appropriate conditions for persons in detention, with involvement of public monitoring commissions ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Release all persons detained solely for the exercise of their right to freedom of expression or their right to peaceful assembly and repeal all legislative provisions criminalizing the exercise of these rights", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Provide girls with access to education facilities and resources equivalent to those available to boys", - "values": [ - "4 - General action" - ] - }, - { - "text": "Cooperate more systematically with the treaty bodies and permit the visits by special procedures", - "values": [ - "4 - General action" - ] - }, - { - "text": "Improve, in cooperation with relevant stakeholders, the living conditions and safety situation of internally displaced persons by providing access to humanitarian assistance, while ensuring the security of humanitarian workers, and strengthen its protection of women and girls from sexual violence in the camps of the internally displaced", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Combat hate speech and statements stigmatizing refugees and asylum seekers", - "values": [ - "4 - General action" - ] - }, - { - "text": "Take measures to ensure that all legislation is in full compliance with international human rights obligations", - "values": [ - "4 - General action" - ] - }, - { - "text": "Consider revising the law on customary marriage with a view to guaranteeing equal succession rights to women, and establish a minimum age of 18 years for marriage ", - "values": [ - "3 - Considering action" - ] - }, - { - "text": "Continue making progress in implementing the Action Plan on violence against women and girls ", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Ratify the Rome Statue of the International Criminal Court, as committed by Mozambique in its 2011 universal periodic review", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Follow-up on the recommendations of CAT by ensuring that the definition of torture under all federal and state legislation is fully aligned with international and regional standards and by providing for the inadmissibility in court proceedings of evidence obtained under torture", - "values": [ - "4 - General action" - ] - }, - { - "text": "Ensure that victims of human trafficking are never detained and that their rights relating to medical follow-up, residence and work permit are respected ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Step up its efforts to improve legal aid for destitute people in order to guarantee access to justice and a fair trial for all", - "values": [ - "4 - General action" - ] - }, - { - "text": "Deploy the necessary legal, financial and human resources to achieve as soon as possible the objectives of the roadmap of 5 June 2013 for the elimination of the worst forms of child labour", - "values": [ - "4 - General action" - ] - }, - { - "text": "Replace the death penalty by a sentence in conformity with international norms and initiate the procedure leading to the complete abolition of the death penalty", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Take into account the comments of CRC and CEDAW in order to ensure better harmonisation of the national legislation with conventions and to allow women and children to fully enjoy their rights", - "values": [ - "4 - General action" - ] - }, - { - "text": "Step up efforts, particularly in the educational system, by taking additional measures to put an end to the phenomena of some students being absent from school during the elementary and secondary level, in order to reach the desired goals in this friendly country", - "values": [ - "4 - General action" - ] - }, - { - "text": "Resolve the dispute between the San of the Reserve.", - "values": [ - "4 - General action" - ] - }, - { - "text": "Ensure stronger coordination between entities dealing with issues relating to children and provide sufficient resources at the national as well as local level, including the provision of temporary shelters ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Ensure that all detainees and prisoners, including those who are mentally ill, are given access to appropriate care, including where necessary by being transferred to specialized health institutions ", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Georgia is firmly committed to enhancing the protection and reintegration of street children and has taken significant steps towards these ends, including the creation of designated day-care centers, pursuant to 2008-2011 Governmental Action Plan on Child Welfare.", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Continue to strengthen the cooperation with countries of origin, transit as well as destination in dealing with irregular migration", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Implement policies and programs that promote tolerance and non- discrimination against lesbian, gay, bisexual, transgender and intersex persons, and to guarantee the compliance with the current norms in order to punish offences and violence motivated by prejudices", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Consider joining other states in ratifying the International Convention on the Protection of the Rights of All Migrant Workers and Members of their Families and the ILO Convention 189 on Decent Work for Domestic Workers, as it progressively marches towards institutionalizing protective mechanisms for migrant workers ", - "values": [ - "3 - Considering action" - ] - }, - { - "text": "Consider in the drafting of the National Human Rights Plan the promotion and protection of lesbian, gay, bisexual, transgender and intersex persons", - "values": [ - "4 - General action" - ] - }, - { - "text": "Elevate the Ombudsman to an A-status national human rights institution in accordance with the Paris Principles ", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Ratify the ICCPR-OP 2 that aims to abolish the death penalty and amend the constitution to abolish any constitutional provisions that provide for death penalty ", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Take concrete measures to end harassment, verbal threats, sabotage, arson attacks and vandalism faced by the Muslim population and provide access to justice to Roma people and Afro-Swedes and ensure their social inclusion", - "values": [ - "4 - General action" - ] - }, - { - "text": "Strengthen protection of women's rights, particularly by adopting legal measures to prohibit gender-based and domestic violence against women and girls", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Step up measures to improve employability and access to employment, especially among young men and women, and ensure equal opportunities between them", - "values": [ - "4 - General action" - ] - }, - { - "text": "Extend the monitoring authorities of the Office of the Ombudsman to Government and the Public Prosecutor's Office to ensure the possibility of redressing human rights violations.", - "values": [ - "4 - General action" - ] - }, - { - "text": "Further strengthen measures to ensure equal access to health services for all, while giving special attention to the needs of children, women and elderly persons", - "values": [ - "4 - General action" - ] - }, - { - "text": "Ratify the Optional Protocol to CAT ", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Intensify its efforts to address trafficking ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Put an end to the so-called painful techniques applied to children. ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Develop a long-term plan to address challenges in the area of incarceration and continue to give priority attention to improving prison conditions.", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Formulate a white paper in accordance with the United Nations Declaration on the Rights of Indigenous Peoples and that recommendations from the Committee on the Elimination of Racial Discrimination, the International Labour Organization (ILO) and the African Commission's Working Group on Indigenous Populations/Communities are taken into consideration in this process", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Investigate promptly, thoroughly and impartially all acts of brutality and excessive use of force by law enforcement personnel ", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "End the harassment of minorities and place procedural and institutional safeguards to prevent the misuse of the blasphemy laws", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Repeal the blasphemy law, or at least amend it to protect persons from eventual abuses or false accusations and lighten corresponding penalties, that are currently disproportional", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Eliminate any legislation criminalizing same-sex relations ", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Take immediate measures in order to comply with obligations under international humanitarian law and international human rights law", - "values": [ - "4 - General action" - ] - }, - { - "text": "Pursue efforts to provide specific human rights training to law enforcement and judicial officers on all aspects of human rights", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Continue strengthening efforts to guarantee access to adequate education for persons with disabilities ", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Create an effective juvenile system, and continue to reform its justice system", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Recognizing that the operational independence of the National Human Rights Commission has been critical, take the necessary measures to further ensure its institutional independence", - "values": [ - "4 - General action" - ] - }, - { - "text": "Approve and implement the programme for the protection of journalists, in consultation with the latter", - "values": [ - "4 - General action" - ] - }, - { - "text": "Develop awareness-raising campaigns and programmes against sexual orientation discrimination", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Ensure that the appointment of its Ombudsman Board's members is in compliance with the Paris Principles", - "values": [ - "4 - General action" - ] - }, - { - "text": "Ratify the Protocol No. 14 to the European Convention on Human Rights ", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Implement legal reform to ensure an independent Prosecuting Authority promoting effectiveness, impartiality and fairness of prosecutors in criminal proceedings", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Adopt legislative and other measures to guarantee in law and practice protection of freedom of expression and independence of journalists", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Ensure that Yemeni women enjoy the same rights as men, promote their right to participate in political life on an equal footing with their male counterparts, and protect women against gender-based discrimination and violence ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Continue its efforts to promote gender equality, including by taking concrete measures to combat the high level of violence against women", - "values": [ - "4 - General action" - ] - }, - { - "text": "Amend the discriminatory provisions against women in the legislation and take steps to fight violence against women and harmful practices, such as child marriage and crimes committed in the name of "honour"", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Establish courts for juveniles in conflict with the law.", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Intensify activities aimed at overcoming gender stereotypes", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Guarantee the right to an effective defence in eviction proceedings, including for those who cannot afford a lawyer", - "values": [ - "4 - General action" - ] - }, - { - "text": "Continue its efforts to guarantee gender equality by, for example, launching a public awareness campaign in order to stop violence against women and impunity for crimes against women ", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Make efforts to correct formulations in the Penal Code that cover rape and sexual abuse which make reference to the marital relations between victim and alleged perpetrator that have an actual influence on sentences ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Continue with negotiations to end the conflict and to build a stable and lasting peace ", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Consider becoming party to the 3rd CRC Optional Protocol on a communications procedure", - "values": [ - "3 - Considering action" - ] - }, - { - "text": "Implement further measures to support victims of domestic violence ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Ensure a holistic approach to the prevention of violence against women and girls, including harmful practices", - "values": [ - "4 - General action" - ] - }, - { - "text": "Continue to focus its efforts on ensuring full protection of human rights for all vulnerable groups, one such avenue is through the ongoing rigorous capacity building programmes that Malaysia has initiated in this area, particularly for public officers", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Continue its efforts in strengthening policies and measures to promote and protect the human rights of its people, in particular those of vulnerable groups such as women, children, poor people, and migrants", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Establish without further delay shelters to protect women and girls from violence and effectively implement the legislation already adopted", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Become a party to the Rome Statute of the International Criminal Court ", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Exercise due diligence to prevent, deter, investigate and punish those accountable for violence against women and girls", - "values": [ - "4 - General action" - ] - }, - { - "text": "Actively combat all forms of gender-based discrimination and violence, in particular domestic and sexual violence", - "values": [ - "4 - General action" - ] - }, - { - "text": "As regards Recommendation 70.19 which concerned the invitation to the Special Rapporteur on Torture, the delegation indicated that Guyana noted this recommendation and volunteered to consider it further and report to the Human Rights Council.", - "values": [ - "3 - Considering action" - ] - }, - { - "text": "Continue the development programmes and programmes to fight poverty by correcting the urban/rural gaps ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Increase its activities towards the full realization of the right to health", - "values": [ - "4 - General action" - ] - }, - { - "text": "Ratify the Convention against Torture, as previously recommended", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Take urgent and radical measures regarding legislation which will allow a real improvement of the situation of women and will guarantee the respect of their human rights, including, in particular, the right to education.", - "values": [ - "4 - General action" - ] - }, - { - "text": "In line with the resolution by the Parliamentary Assembly of the Council of Europe adopted on 2 October 2012, amend the new law on NGOs so that it cannot be used as an instrument of repression and intimidation of NGOs and civil society ", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Establish an institutional mechanism to fight discrimination and violence against women and children", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Ratify fundamental international human rights instruments in order to create a proper national framework of action to promote and protect human rights ", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Prohibit corporal punishment of children in all settings", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Continue to improve domestic laws in order to ensure international legal obligations in accordance with international norms and principles", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Allocate adequate financial resources and ensure effective coordination among State institutions mandated to strengthen the implementation of the rights of the child", - "values": [ - "4 - General action" - ] - }, - { - "text": "Implement fully the recommendations of the BICI report ", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Further scale up the work against the harmful traditional practice of female genital mutilation", - "values": [ - "4 - General action" - ] - }, - { - "text": "Continue efforts to combat human trafficking, particularly of vulnerable groups, such as women and children", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Ensure that adequate attention is dedicated to the effective protection of journalists and human rights defenders", - "values": [ - "4 - General action" - ] - }, - { - "text": "Reduce the number of crimes subject to death penalty and eliminate the compulsory application of the death penalty", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Seek to engage with the international community, with the aim of integrating with the global system and supporting the gradual democratization of its system ", - "values": [ - "1 - Minimal action" - ] - }, - { - "text": "Proceed with the formal abolition of the death penalty and sign and ratify the Second Optional Protocol to the International Covenant on Civil and Political Rights ", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Continue to cooperate with United Nations human rights mechanisms to further improve the human rights situation", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Take measures to combat the stigmatization and discrimination associated with people living with tuberculosis and HIV as well as persons living with mental illness", - "values": [ - "4 - General action" - ] - }, - { - "text": "Accept the full and unrestricted implementation of the provisions of the Convention against Torture and the International Covenant on Civil and Political Rights in overseas territories under its control. ", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Consider ratifying the Convention against Torture and other Cruel, Inhuman or Degrading Treatment or Punishment", - "values": [ - "3 - Considering action" - ] - }, - { - "text": "Pass the new criminal procedure code, which is being studied by the technical working group", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Consider positively acceding to ICRMW, as recommended by the Committee on the Elimination of Racial Discrimination, the Committee on Economic, Social and Cultural Rights and the Committee on the Elimination of Discrimination against Women ", - "values": [ - "3 - Considering action" - ] - }, - { - "text": "Consider further expanding its birth registration programme towards achieving universal birth registration coverage", - "values": [ - "3 - Considering action" - ] - }, - { - "text": "As a Small Island Developing State (SIDS), Fiji has seen a significant increase in the frequency and intensity of flash floods and tropical cyclones in the last 5 years. Fiji is committed to reducing carbon emissions through renewable energy (hydro power and bio fuels) and to adapt to climate change particularly to reduce disaster risks. ", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Deploy further efforts in order to prevent and punish violence, including rape, against women and children and pay special attention to the most vulnerable families living in a poor environment", - "values": [ - "4 - General action" - ] - }, - { - "text": "Effectively comply with the 1954 Convention Relating to the Status of Stateless Persons and the 1961 Convention on the Reduction of Statelessness and pay particular attention to the 326,906 persons considered as non-citizens, and therefore stateless persons. Pay special and urgent attention and provide a solution to this severe and current humanitarian problem", - "values": [ - "4 - General action" - ] - }, - { - "text": "Ratify the Convention on the Rights of Persons with Disabilities (CRPD)", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "The Government is committed to playing its role in activating dialogue. His Majesty the King of Bahrain has repeatedly called for dialogue and the Minister of Justice is leading the way in canvassing opinion from all political societies for this purpose", - "values": [ - "4 - General action" - ] - }, - { - "text": "Continue developing a comprehensive juvenile judicial system", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Take the necessary measures to establish a unified system of family courts to ensure full compliance with the State's obligation to protect, respect and enforce the right of access to justice for women, in family matters", - "values": [ - "4 - General action" - ] - }, - { - "text": "Adopt legislative or other measures so that human rights are taken into account upstream by the judiciary, in particular during the elaboration of popular initiatives to ensure their compliance with international obligations.", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Further improve the administration of justice and the rule of law including by setting up appropriate mechanisms in order to ensure adequate and independent investigation of police use of force, police misconduct and police-related deaths ", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Establish an institution for the promotion and protection of human rights consistent with the Paris Principles", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Establish a disaggregated database on women heads of households to be used uniformly in welfare and resettlement policies and programmes, including to ensure that women heads of households and internally displaced persons have targeted psychosocial and livelihood assistance, as well as adequate and durable access to housing", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Cooperate with the special procedures of the Council, schedule pending visits as soon as possible, including of the representative of the United Nations High Commissioner for Human Rights, and ensure the independence of the Ombudsman of the Bolivarian Republic of Venezuela", - "values": [ - "4 - General action" - ] - }, - { - "text": "End its policy of fanatic Islamism and intolerance towards persons belonging to other religions, including adherents of the Baha'i faith", - "values": [ - "4 - General action" - ] - }, - { - "text": "Strengthen measures to foster access of vulnerable populations to public services and social and health services", - "values": [ - "4 - General action" - ] - }, - { - "text": "Enact legislation and take necessary measures to prohibit discrimination on the grounds of sexual orientation, gender identity and social status", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Establish or strengthen independent public accountability mechanisms which contribute with the fight against corruption", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Pay particular attention to unaccompanied migrant children and undertake specific measures to ensure their adequate protection ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Improve the protection against domestic violence through specialized training for police officers and other persons that act in such cases and take steps to ensure the fair application of the Foreign Nationals Act so as to protect migrant women", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Continue strengthening the national dialogue aiming at true reconciliation and lasting peace", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Take all necessary steps to accelerate the enforcement of the law regarding the acceptance and integration of foreigners ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Further strengthen national programs to combat poverty and social exclusion in favour of the most vulnerable sectors of the population", - "values": [ - "4 - General action" - ] - }, - { - "text": "Continue its efforts to ratify the International Convention on the Protection of the Rights of All Migrant Workers and Members of Their Families", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Take further concrete and effective steps towards social inclusion for Romani people, such as strengthening Latvia's human rights framework and providing human rights training to law enforcement authorities in order to increase protections for Romani people against violations of their human rights", - "values": [ - "4 - General action" - ] - }, - { - "text": "Continue its efforts to take further action to prohibit discrimination in employment and take further measures to reduce unemployment, especially among immigrants", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Adopt specific measures to deal with the causes of the increasing problem of street children and to prevent and to punish sexual exploitation of children", - "values": [ - "4 - General action" - ] - }, - { - "text": "Adopt measures to combat violence, in particular through legislation defining and outlawing domestic violence, and by providing training to judges and civil servants and organizing awareness-raising programmes targeting society as a whole.", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Continue consolidating the work of the National Human Rights Council to strengthen relevant public policy", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Continue its efforts to improve access to quality education for all", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Consider amending the existing legislation to ensure that all children born in Zimbabwe, regardless of their parents' origin, are issued with birth certificates and ensure the paternity rights of children born out of wedlock", - "values": [ - "3 - Considering action" - ] - }, - { - "text": "That other state governments consider implementing similar programmes to Rio de Janeiro's UPP Police Pacifying Unit ", - "values": [ - "3 - Considering action" - ] - }, - { - "text": "Combat violence against women, in particular female genital mutilation, by ensuring that these are systematically brought to justice and by raising awareness", - "values": [ - "4 - General action" - ] - }, - { - "text": "Abolish capital punishment and ratify the Second Optional Protocol to the International Covenant on Civil and Political Rights", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Allocate sufficient technical, human and financial resources for the effective implementation of the National Action Plan on Gender-based violence", - "values": [ - "4 - General action" - ] - }, - { - "text": "Review its Nationality Law in order to ensure that an Omani mother has the right to confer the Omani citizenship to her children without discrimination", - "values": [ - "3 - Considering action" - ] - }, - { - "text": "Pass legislation to criminalize violence against women", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Ratify the Optional Protocols to CRC ", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Strengthen the measures to fight hate speech, targeting of persons on the ground of their ethnicity, religion or sexual orientation, particularly Roma, Muslim and lesbian, gay, bisexual, transgender and intersex persons, as well as asylum seekers and migrants", - "values": [ - "4 - General action" - ] - }, - { - "text": "Take measures to protect and promote the rights of all ethnic minorities, including their participation in political representation entities, in public sphere and in economy", - "values": [ - "4 - General action" - ] - }, - { - "text": "Ensure that schools are safe places for children, particularly girls", - "values": [ - "4 - General action" - ] - }, - { - "text": "Delay no longer in appointing members of the\nhighest judicial authorities and to ensure the impartiality of those members", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Ratify the Optional Protocol to CAT and, in line with its provisions, establish an independent national institution which will operate as the national preventive mechanism for the prevention of torture ", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Continue to strengthen its efforts to combat impunity for serious crimes under international law by continuing its cooperation with the ICTY and by ensuring that other perpetrators are prosecuted in domestic courts in accordance with international standards ", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Develop affirmative actions for women's empowerment in the public and private sectors ", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Condemn and sanction all manifestations of intolerance, including in political discourse and on the Internet, with due regard for freedom of expression, adopt firm measures to promote a spirit of tolerance and intercultural dialogue and prevent the stigmatization of any group", - "values": [ - "4 - General action" - ] - }, - { - "text": "Invite the African Commission and United Nations special rapporteurs on human rights defenders for a joint visit ", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Fully respect freedom of expression and media pluralism", - "values": [ - "4 - General action" - ] - }, - { - "text": "Continue efforts to improve the level of education and health in the country", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Withdraw its interpretative declaration to article 1 of the Optional Protocol to the Convention on the Rights of the Child on the involvement of children in armed conflict and unconditionally forbid children from taking part in hostilities", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Abolish the life sentence for minors, in conformity with the Convention on the Rights of the Child", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Take concrete actions to speed up the reporting process for overdue treaty body reports and include all stakeholders in a transparent process ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Create and maintain a safe and enabling environment suitable for civil society and human rights defenders", - "values": [ - "4 - General action" - ] - }, - { - "text": "Consider establishing a moratorium on death penalty.", - "values": [ - "3 - Considering action" - ] - }, - { - "text": "Take further steps in order to fully abolish the death penalty and modify the Criminal Code so no crime can be punished by the capital punishment", - "values": [ - "4 - General action" - ] - }, - { - "text": "Extend a standing invitation to Special Procedures ", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Create a framework for the socioeconomic rehabilitation and reintegration of women victims of sexual violence in the regions affected by the conflict", - "values": [ - "4 - General action" - ] - }, - { - "text": "Ensure that future generations continue to be informed of all aspects of their history, by taking measures such as the introduction of the topic of comfort women in textbooks for school children", - "values": [ - "4 - General action" - ] - }, - { - "text": "Continue addressing income inequality in the development policy of the country", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Adopt a comprehensive approach that includes providing a healthy environment, safe water and sanitation and proper childcare, encouraging exclusive breastfeeding and improving the education and the health of mothers, in order to reduce the mortality rate of children under 5 ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Continue to focus on the overall improvement in the quality of education provided and make access to education easier for all ", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Remove the provisions of the penal code that allow the punishment of the death penalty for homosexuality, as soon as possible ", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Continue to invest in the development of the health system, which results in further progress on the right to health for the entire population", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Allow the opening of independent investigations on allegations of crimes committed in the Centre for asylum seekers", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Accelerate the studies and internal procedures required for the establishment of a national human rights institution in conformity with the Paris Principles, in cooperation with OHCHR", - "values": [ - "4 - General action" - ] - }, - { - "text": "Continue its efforts in combating extreme poverty, malnutrition and maternal and child mortality", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Reconsider establishing an independent national human rights institution in accordance with the Paris Principles", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Establish a clear modality of direct access of the public to give input in the process of reviewing the Constitution ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Pursue its efforts aiming to ensure food security and reaching the MDGs and formulate its specific international cooperation and technical assistance requests to this end ", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Ensure that migrant and asylum-seeking women receive adequate assistance", - "values": [ - "4 - General action" - ] - }, - { - "text": "Carry out investigations into the recent dismissal of three judges and one magistrate so that, if it is appropriate, they are reinstated, and adopt measures to ensure the immovability of members of the judiciary", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Strengthen national capacities to assist victims of domestic violence", - "values": [ - "4 - General action" - ] - }, - { - "text": "Continue strengthening the legal and administrative measures to fight against various forms of discrimination and xenophobia", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Reinforce measures to eradicate poverty across all segments of society, including among the indigenous community", - "values": [ - "4 - General action" - ] - }, - { - "text": "Take steps to fully implement and enforce laws on violence against women and to ensure that victims were able to benefit from the existing legislative framework ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Ratify the Convention against Torture, ICERD and ICCPR", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Continue the effective implementation of the national plan of action for prevention, assistance and eradication of violence against women 2017-2019", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Amend the Criminal Code with a view to fully abolish the death penalty", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Establish a moratorium on the death penalty, with a view to fully abolishing it, in line with relevant UN General Assembly resolutions", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Set a clear timetable for the establishment or designation of national mechanisms and grant adequate resources for the effective functioning of these mechanisms, following the recent ratification of the Optional Protocol to the Convention against Torture and Other Cruel, Inhuman or Degrading Treatment or Punishment", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Continue its efforts to narrow the gap in opportunities and life outcomes between indigenous and non-indigenous Australians ", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Continue its efforts in promoting and protecting human rights in the future", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Promote dialogue within the communities with a view to face the root causes of discrimination and violence", - "values": [ - "4 - General action" - ] - }, - { - "text": "Take effective measures to combat rising instances of religious intolerance, violence and discrimination", - "values": [ - "4 - General action" - ] - }, - { - "text": "Include victims of sexual violence in the reparation programme (Programa Integral de Reparaciones)", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Accelerate the ratification process of a number of relevant international legal instruments on human rights, namely ICESCR and ICCPR-OP 1 ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Continue its talks with all the parties involved in the process of the elaboration and implementation of the plan of relocation of the persons displaced following the seism in order to avoid forced evictions", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Improve the prison system and speed up the penal processes so that each person may know judicial resolutions in appropriate times", - "values": [ - "4 - General action" - ] - }, - { - "text": "Continue to devote special attention to children in order to realize their best interest ", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Repeal the laws which criminalize sexual activity between consenting adults of the same sex, as previously recommended", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Continue to support the work of the national mechanism for the promotion of the rights of women ", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Take the necessary measures to implement the recommendations of the Committee on the Elimination of Racial Discrimination related to setting up an effective and independent mechanism to review the compatibility of popular initiatives with the obligations of Switzerland under international human rights law", - "values": [ - "4 - General action" - ] - }, - { - "text": "Consider a possibility of improving the penitentiary system as well as implement, in the national legislation, provisions of the Convention against Torture and Other Cruel, Inhuman or Degrading Treatment or Punishment ", - "values": [ - "3 - Considering action" - ] - }, - { - "text": "Ratify the 1961 Convention of the Reduction of Statelessness", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Continue efforts in the context of the Constitutional Review Process", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Ensure all children are guaranteed fundamental rights during the judicial process", - "values": [ - "4 - General action" - ] - }, - { - "text": "Take necessary measures in order to prevent and combat sexual exploitation and abuse of vulnerable people, especially girl children ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Redouble its efforts to end extrajudicial killings and ensure that those crimes are investigated promptly, thoroughly and impartially, and that alleged perpetrators are brought to justice", - "values": [ - "4 - General action" - ] - }, - { - "text": "Continue its efforts to combat racism, intolerance and discrimination as well as to strive towards the integration of Roma and immigrants ", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Continue to pursue gender equality by adopting the Optional Protocol to the Convention on the Elimination of All Forms of Discrimination against Women", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Increase the measures undertaken to promote the right to education with the aim of ensuring a high level enrolment of children in schools", - "values": [ - "4 - General action" - ] - }, - { - "text": "Remove norms, including at the constitutional level, that may be deemed as an exemption from the prohibition of discrimination, and take practical measures for its implementation", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Protect the children and families of migrants and refugees. ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Continue to cooperate with the activities of the Ombudsman.", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Continue efforts to combat all forms of racial discrimination making it possible for all persons to enjoy economic and social rights", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Extend a standing invitation to all special procedure mandate holders", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Put in place sound policies to ensure a safer environment for children, and implement a more effective system for addressing cases of violence against children", - "values": [ - "4 - General action" - ] - }, - { - "text": "Continue to promote gender equality in the country and share its experience with other nations ", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Ensure the effective enforcement of laws by which any party or organization that encourages or incites racial discrimination is declared illegal", - "values": [ - "4 - General action" - ] - }, - { - "text": "Adopt in French, as in the case of the two other official languages, terminologies which truly reflect common values related to equality between men, women and children.", - "values": [ - "4 - General action" - ] - }, - { - "text": "Abolish the use of solitary confinement for minors in the juvenile justice system", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Take appropriate legislative measures to decriminalize irregular entry and stay in Italy", - "values": [ - "4 - General action" - ] - }, - { - "text": "Strengthen efforts to address the prevention of torture and inhuman treatment through the ratification of the Convention against Torture Convention ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Recommended an acceptance of independent international monitoring be taken up as recommendations.", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Secure the defence of journalists, media personnel and media company owners against attacks and prosecute those responsible for such attempts, and adopt an information law", - "values": [ - "4 - General action" - ] - }, - { - "text": "Continue efforts to promote and protect rights of minorities, especially with regard to the Roma ", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Repeal all provisions in domestic law allowing for the death penalty, and to establish an official moratorium on executions with a view to abolishing the death penalty", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Continue measures on expanding the population's access to the quality services in the area of health and education ", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Give special attention to the attendance of children to secondary schools", - "values": [ - "4 - General action" - ] - }, - { - "text": "Set 18 years as the minimum legal age of marriage", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Ratify the Rome Statute establishing ICC", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Request technical assistance and technical cooperation to the United Nations in order to, among other objectives, develop a national action plan to implement the Convention on the Rights of the Child, establish an independent national human rights institution, carry out public policies that prevent abuse and neglect of children, and address the problems faced by children with disabilities", - "values": [ - "1 - Minimal action" - ] - }, - { - "text": "Ratify the ICESCR without any further delays ", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Further strengthen the mechanisms for the effective implementation of the National Human Rights Programme at all levels of government", - "values": [ - "4 - General action" - ] - }, - { - "text": "Establish a de jure moratorium on the death penalty that could ultimately lead to its suppression from legislation", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Raise the age of completion of compulsory schooling, with a view to properly address the issue of child labour, and ensure that primary education is free of charge for everyone", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Continue the judiciary system reform to reinforce its efficiency, notably to improve access to justice for all", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Ensure justice and reparation for victims of the effects of environmental degradation and adopt an environmental standard for the pollutant emissions of foundries ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Ensure that human rights abuses are appropriately investigated and that those responsible are processed and sanctioned by civil courts. grant better facilities and financial resources to the judiciary, to accomplish this task efficiently. and to ensure effective implementation of the Constitutional Court sentence of July 2008 on the subject.", - "values": [ - "4 - General action" - ] - }, - { - "text": "Continue its efforts to bring provincial and municipal regulations on trafficking into line with national and international standards", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Increase emphasis on the protection and promotion of human rights, especially in the areas of apprehension and interrogation of suspects and investigating reports of trafficking in persons, as part of the training programs of the Umbutfo Swaziland Defense Force, the Royal Swaziland Police Service and His Majesty's Correctional Services", - "values": [ - "4 - General action" - ] - }, - { - "text": "Prosecute human rights violations committed by members of the security service and to take measures that the judiciary can work independently without being hindered by persons related to organized crime or the security sector and others", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Continue measures aimed at improving the status of women in society and protect them from all forms of discrimination ", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Ensure that the \u201cTuition Waiver and Tuition Support Fund Programme for High School Education\u201c is extended to all schools in the country, including those that are under the responsibility of local governments", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Study the possibility of increasing the measures to eliminate all discriminatory treatment based on sexual orientation or gender identity", - "values": [ - "3 - Considering action" - ] - }, - { - "text": "Take measures so as to ensure that all children can enjoy their right to free and compulsory basic education, and establish a school programme on human rights education and training ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Ratify the Optional Protocol to the Convention against Torture (OPCAT) and thereby set a useful precedent for other States who may be considering ratification. ", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Make efforts to actively combat homophobic, anti-Semitic and anti- Roma rhetoric, including by ensuring law enforcement and judicial authorities are made aware of guidelines on identifying and investigating racially motivated crime ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Ensure the protection of the Office of Human Rights Advocate from any interference or external pressure", - "values": [ - "4 - General action" - ] - }, - { - "text": "Ensure that all detainees suspected of a crime are brought before a court of law as soon as possible", - "values": [ - "4 - General action" - ] - }, - { - "text": "Ratify the international human rights instruments to which Djibouti is not yet party ", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Strengthen human rights education provided to the police, prison staff and the military", - "values": [ - "4 - General action" - ] - }, - { - "text": "Ensure transparent and effective national investigations into all cases of violence and all cases of deaths and bring those responsible to justice", - "values": [ - "4 - General action" - ] - }, - { - "text": "Accede to the Rome Statute and adapt national legislation, including by incorporating provisions to rapidly and fully cooperate with the International Criminal Court", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Lift restrictions on freedom of expression and adopt legal and regulatory measures for the protection and safety of journalists against persecution, intimidation and harassment", - "values": [ - "4 - General action" - ] - }, - { - "text": "Increase its political and financial commitment aimed at ensuring the full development of children and their families ", - "values": [ - "3 - Considering action" - ] - }, - { - "text": "Incorporate the United Nations Rules for the Treatment of Women Prisoners and Non-Custodial Measures for Women Offenders (the Bangkok Rules) into its programme on adequate treatment for women detainees, especially young pregnant women ", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Investigate, prosecute and punish systematically all cases of sexual violence against girls and women, organize awareness-raising campaigns on the subject of sexual violence and put in place a national hotline", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Continue strengthening the application of the Growth and Transformation Plan in the fight against poverty, to which it has assigned auspiciously 69 per cent of the budget ", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Propose specific initiatives and policies aimed at combating all manifestations of racial and ethnic intolerance and respect the Agreement on the Resolution of the Conflict in the Republic of South Sudan", - "values": [ - "4 - General action" - ] - }, - { - "text": "Take appropriate measures to progressively reduce the existing backlog of overdue reports to the United Nations treaty bodies", - "values": [ - "4 - General action" - ] - }, - { - "text": "Examine the possibility of putting in place a national institution for the defence of human rights accredited by the International Coordinating Committee of National Institutions for the Promotion and\nProtection of Human Rights", - "values": [ - "3 - Considering action" - ] - }, - { - "text": "Ensure that all perpetrators of human rights violations are brought to justice, including the law enforcement officials suspected of committing acts of torture and ill-treatment or extrajudicial executions", - "values": [ - "4 - General action" - ] - }, - { - "text": "Include and consult people of African descent when adopting programmes and policies to promote their rights", - "values": [ - "4 - General action" - ] - }, - { - "text": "Make progress in the modifications of relevant laws to include a concept of disability in accordance with the Convention on the Rights of Persons with Disabilities", - "values": [ - "4 - General action" - ] - }, - { - "text": "Continue implementing measures to handle the problem of violence against women and combat impunity in this regard.", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Take the necessary measures to guarantee access to civil, penal and labour justice, as well as assistance and consular protection for all migrants, regardless of their migratory status, to ascertain their rights in cases of abuse.", - "values": [ - "4 - General action" - ] - }, - { - "text": "Reinforce measures for the protection of human rights defenders ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Take further actions to combat incitement to hatred and racist crimes against foreign nationals, including by promoting a positive narration on international migration and pursuing the National Action Plan against Racism and Intolerance", - "values": [ - "4 - General action" - ] - }, - { - "text": "Combat early marriages", - "values": [ - "4 - General action" - ] - }, - { - "text": "Establish a national mechanism to follow up on recommendations", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Continue to maintain and strengthen the economic, political and social model of Viet Nam to guarantee the full participation of the population in public and security affairs.", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Accede to and align its national legislation with the Rome Statute of the International Criminal Court and the Agreement on the Privileges and Immunities of the Court, including incorporating provisions to cooperate promptly and fully with the International Criminal Court, and investigate and prosecute genocide, crimes against humanity and war crimes effectively before its national courts ", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Renew its focus on technical and vocational training through its proposed Skill Development Programme for the youth", - "values": [ - "4 - General action" - ] - }, - { - "text": "Continue efforts to achieve gender equality", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Ensure the conformity of the definition of torture in criminal law with the Convention against Torture, that the crime of torture is not subject to the statute of limitations and that the detention facilities are subject to monitoring by impartial and independent mechanisms", - "values": [ - "4 - General action" - ] - }, - { - "text": "Step up its efforts to prevent cases of arbitrary arrests, detention and torture, and that those responsible be brought to justice", - "values": [ - "4 - General action" - ] - }, - { - "text": "Strengthen efforts and take effective measures with the aim of ensuring enjoyment of all rights for indigenous people, including participation in decision-making bodies at all levels ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Strengthen measures aimed at ensuring development in a manner that is resistant to risks", - "values": [ - "4 - General action" - ] - }, - { - "text": "Consider applying the Yogyakarta Principles on the Application of International Human Rights Law in relations to Sexual Orientation and Gender Identity as a guide to assist in policy development.", - "values": [ - "3 - Considering action" - ] - }, - { - "text": "Continue with the impressive process of granting access to the Internet to its population, in particular to underprivileged communities", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Develop, in consultation with all relevant actors, including representatives of indigenous communities, a comprehensive action plan to target gender-based violence against women, with clear goals and timelines for their implementation ", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "The fight against trafficking in foreign women be intensified.", - "values": [ - "4 - General action" - ] - }, - { - "text": "Consider expediting steps to ratify the International Covenant on Civil and Political Rights, the International Covenant on Economic, Social and Cultural Rights, the Convention on the Elimination of All Forms of Discrimination against Women and the Convention on the Rights of Persons with Disabilities, which are treaties that Saint Lucia accepted in the first cycle review to become a party to", - "values": [ - "3 - Considering action" - ] - }, - { - "text": "Ensure cooperation with international actors to help address the situation of food insecurity and public health", - "values": [ - "4 - General action" - ] - }, - { - "text": "Continue implementing plans to enable girls and persons with disabilities to have access to education", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Take appropriate action to prosecute cases of domestic violence and ratify the Council of Europe Convention on Preventing and Combating Violence against Women and Domestic Violence", - "values": [ - "4 - General action" - ] - }, - { - "text": "Continue its policies in improving women's rights ", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Make efforts to address victims of human trafficking ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Strengthen the competence of the Communications Regulatory Agency to reduce the risk of inciting ethnic or religious hatred", - "values": [ - "4 - General action" - ] - }, - { - "text": "Ensure the application of the legislation against trafficking in persons for purposes of labour and sexual exploitation, by undertaking the greatest efforts for the identification, protection and rehabilitation of victims and the investigation and prosecution of those responsible", - "values": [ - "4 - General action" - ] - }, - { - "text": "Establish a national commission on human rights", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Redouble its efforts to combat public manifestation of hate speech and intolerance", - "values": [ - "4 - General action" - ] - }, - { - "text": "Continue its efforts to eradicate violence against women and children and continue implementing the national strategy to fight against sexual violence in order to eliminate this phenomenon", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Ensure the establishment of a nationally integrated database on trafficking in persons", - "values": [ - "4 - General action" - ] - }, - { - "text": "Take necessary measures for strengthening its specialized juvenile justice system in compliance with the Convention on the Rights of the Child", - "values": [ - "4 - General action" - ] - }, - { - "text": "Adopt measures to place detainees suffering mental illness in establishments that are separate from common prisons", - "values": [ - "4 - General action" - ] - }, - { - "text": "Take measures to ensure effective implementation of legislation to prevent and punish violence against women", - "values": [ - "4 - General action" - ] - }, - { - "text": "Strengthen its efforts to ensure formal and substantive equality for women, in addition to combating gender violence in all its forms", - "values": [ - "4 - General action" - ] - }, - { - "text": "While the RMI does have offices established to oversee the fulfillment of RMI's obligations to the CRC and CEDAW, there is no body or office specifically established to comprehensively address human rights. It is hoped, however, that with technical and financial assistance from the international community, such a national human rights institution will be established, or, alternatively, the establishment of a regional human rights office. Such an office would enhance RMI's public awareness and training efforts with respect to human rights. Until such an office is realized, the Government and Non-Governmental Organizations have conducted various awareness programs on human rights, but only on specific thematic areas such as health, youth, and women issues. Despite being limited, it is important that these programs continue to assure awareness of at least these issues. For the consultations on this Report, although people were aware of their rights, they did not fully understand what those were and role the Government played in ensuring the protection and promotion of those rights. More to the point, there is more awareness on land rights than other rights.", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Invite the United Nations Special Rapporteur on Torture to conduct an assessment of torture in the country ", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Ensure the issuance of birth certificates and citizenship documents to the Roma minority", - "values": [ - "4 - General action" - ] - }, - { - "text": "Accede to the 1954 Convention relating to the Status of Stateless Persons", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Maintain its cooperation with the various international mechanisms for the promotion and protection of human rights, including this Council and the oversight bodies for those treaties to which Belarus is a party, as well as periodically comply with the submission of its reports to those bodies ", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Continue the commendable efforts to promote and protect the rights of women and children", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Sao Tome and Principe also reaffirmed its compromise to do whatever it deems as appropriate in a reasonable period of time in order to ratify international human rights treaties mentioned in recommendations 64.1 to 64.14 and in recommendations 65.1, 65.2, 64.4, 65.5, 65.6, 65.6 and 65.9 of the Working Group report, and especially those which it has already signed.", - "values": [ - "4 - General action" - ] - }, - { - "text": "Sign and ratify CRPD and OP-CEDAW", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Continue efforts to introduce the teaching of the Amazigh language and culture", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Continue to strengthen measures to combat human trafficking and child labour", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Conduct thorough, independent and impartial investigations into all cases of the use of torture and arbitrary detention by law enforcement agencies", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Take steps to accede to CRC, and ratify the United Nations Convention on Transnational Organized Crime and its Protocols ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Finalize and enact legislation to better protect children, including the draft Law of the Child ", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Improve coordination on trafficking in persons (TIP) investigations, increase funding for TIP victim services, implement programs to combat the worst forms of child labour and forced labour, and effectively enforce national labour laws, including laws related to freedom of association", - "values": [ - "4 - General action" - ] - }, - { - "text": "Consider ratifying the Optional Protocol to the International Covenant on Civil and Political Rights", - "values": [ - "3 - Considering action" - ] - }, - { - "text": "As one of the main co-authors of resolution 62-149 on the moratorium on the use of death penalty, accede to the Second Optional Protocol to ICCPR", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Move towards the abolition of the death penalty", - "values": [ - "4 - General action" - ] - }, - { - "text": "Continue promoting and developing the activities of civil society ", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Extend an open and standing invitation to all special procedures and respond positively to the visit request by the Working Group on Arbitrary Detention ", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Continue efforts aiming at empowering women, combating social and economic discrimination and protecting them from violence", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Bring its press laws into compliance with article 19 of ICCPR", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Immediately restitute permanent residence for the "erased" persons and adequately compensate them", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Urge the national commission to search for children who disappeared during the armed conflict to begin its work", - "values": [ - "4 - General action" - ] - }, - { - "text": "Expedite the establishment of an independent national mechanism for the prevention of torture and bring the law on torture in line with international standards, including by repealing the statute of limitations ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Integrate special needs education for people with disabilities for 2013 to 2015 under the National Sustainable Development Plan - Action Plan 2015", - "values": [ - "4 - General action" - ] - }, - { - "text": "Make specific provision in its criminal law for preventing and combating racist motivations which constitute an aggravating circumstance in the country", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Implement its commitment to increase the proportion of ODA to 0.7 per cent of GDP in 2009 and pursue actions in the area of ODA.", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Provide full access to justice to people belonging to racial and religious minorities and to combat racial and religious profiling and strengthen anti-discrimination legislation", - "values": [ - "4 - General action" - ] - }, - { - "text": "Adopt necessary measures to safeguard the human rights of IDPs in accordance with applicable international standards and that particular emphasis be given inter alia to increased information sharing as well as consultation efforts to reduce any sense of insecurity of the IDPs.", - "values": [ - "4 - General action" - ] - }, - { - "text": "Observe the Amnesty International 12 points program to prevent torture perpetrated by government agents ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Introduce legislation to make marital rape illegal in all circumstances ", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Ratify the Convention against Discrimination in Education", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Increase its endeavors in promotion of equity in economic development, poverty eradication, eliminating regional disparities, and guaranteeing equality of opportunity for all Sri Lanka citizens", - "values": [ - "4 - General action" - ] - }, - { - "text": "Give due consideration to resolve the issue of discrimination against women with regard to personal legal status, in particular marriage, child custody and guardianship ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Take concrete measures to increase the proportion of women in senior management positions in the civil service ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Make specific efforts to combat discrimination and to improve the levels of education and health of its people", - "values": [ - "4 - General action" - ] - }, - { - "text": "Continue to call on the international community and donor countries to finance projects such as the initiative launched by the Government in 2006 to improve the lives of the Palestinian refugees and the living conditions in camps, and similar initiatives to ensure a life in dignity for Palestinian refugees until the time of their return to their Palestinian homeland, in cooperation with the international community", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Enhance efforts to promote the presentation of women at all levels ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Strengthen appropriate measures aimed at promoting and protecting the cultural rights of certain ethnic groups, in particular the rights of children belonging to those groups", - "values": [ - "4 - General action" - ] - }, - { - "text": "Continue its efforts towards enhancing the access to secondary education, particularly for students from rural areas ", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Take further measures to reduce the case backlog before its courts", - "values": [ - "4 - General action" - ] - }, - { - "text": "Ratify the OP-CAT, the OP-CEDAW and the CPRD", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Develop comprehensive policies and programmes to reduce the incidence of infant and maternal mortality ", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Continue to provide the subsidies and financial support through its MediShield Life Policy for all its citizens and permanent residents, especially the elderly and needy ", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Criminalize domestic violence and marital rape", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Abolish the "kafala" sponsorship system with regard to migrant domestic workers", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Take steps to end lengthy pretrial detention and reduce prison overcrowding, such as by increasing the number of court hearings per week and fully implementing pending reforms to the justice system", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Consider ratifying the Convention against Torture, the International Convention on the Protection of the Rights of All Migrant Workers and Members of Their Families, and ILO Convention 189", - "values": [ - "3 - Considering action" - ] - }, - { - "text": "Accede to the Rome Statute of the ICC and implement it fully at national level and accede to the Agreement on Privileges and Immunities of the Court", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Effectively guarantee the rights of refugees and migrants and make substantive progress in the fight against hate crime", - "values": [ - "4 - General action" - ] - }, - { - "text": "Focus on the development of law enforcement capacities in order to fight impunity ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Further improve its human rights situation, including by ensuring civil and political rights such as freedom of expression and political activities", - "values": [ - "4 - General action" - ] - }, - { - "text": "Finalize the process of establishing a national mechanism for the prevention of torture", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Accelerate and strengthen its efforts to elaborate laws and policies to deal with female genital mutilation practices.", - "values": [ - "4 - General action" - ] - }, - { - "text": "Consider acceding to CAT and the Optional Protocol thereto, while bearing in mind its domestic legislation", - "values": [ - "3 - Considering action" - ] - }, - { - "text": "Extend a standing invitation to the Human Rights Council's Special Procedures", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Intensify the existing efforts to protect religious freedom and freedom of expression", - "values": [ - "4 - General action" - ] - }, - { - "text": "Deepen measures aimed at guaranteeing the rights of migrants, asylum seekers and refugees, particularly to end the acts of discrimination and violence, and to investigate, prosecute and punish the perpetrators", - "values": [ - "4 - General action" - ] - }, - { - "text": "Continue action in order to ensure the full exercise of human rights by the senior citizens of the country ", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Continue its efforts to ratify ICRMW", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Further strengthen the efforts to combat acts of torture and cruel, inhuman or degrading treatment, including to consider the ratification of the Convention against Torture", - "values": [ - "4 - General action" - ] - }, - { - "text": "Ratify the International Convention for the Protection of All Persons from Enforced Disappearance, Convention on the Rights of Persons with Disabilities, and the Optional Protocol to the Convention on the Rights of the Child on the involvement of children in armed conflict", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Establish a moratorium on the death penalty as an interim measure before its abolition and ratify the Second Optional Protocol to the International Covenant on Civil and Political Rights", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Install a high-ranking governmental working group on human rights to ascertain the smooth cooperation and coordination of inter-ministerial work in the field of human rights", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Condemn racist and xenophobic speech by politicians and promote tolerance and diversity ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Take appropriate measures to provide free legal and psychological assistance to victims of domestic and sexual violence", - "values": [ - "4 - General action" - ] - }, - { - "text": "Speed up the establishment of an information centre in the Ministry of Human Rights, taking into account its important envisaged role in designing future strategies and plans.", - "values": [ - "4 - General action" - ] - }, - { - "text": "Ratify the core international human rights instruments, including the Convention against Torture, the Convention on the Rights of Persons with Disabilities, all Optional Protocols to the Convention on the Rights of the Child, the Protocol to Prevent, Suppress and Punish Trafficking in Persons, especially Women and Children, supplementing the United Nations Convention against Transnational Organized Crime, and the First Optional Protocol to the International Covenant on Civil and Political Rights, and incorporate them into its national legislation", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Continue the efforts to protect and promote the rights of women, in conformity with CEDAW, and implement the recommendations of the National Dialogue Conference (in particular, with regard to early marriages and participation of women in political life) ", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Make the promotion of gender equality an explicit component in all development policies ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Accede to the Rome Statute of the International Criminal Court, the Agreement on the Privileges and Immunities of the International Criminal Court and the 1968 Convention on the Non-Applicability of Statutory Limitations to War Crimes and Crimes against Humanity, and implement them in national law", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Improve public infrastructure such as water supply, sanitation and waste management so as to ensure adequate living standards and the right to health for its people", - "values": [ - "4 - General action" - ] - }, - { - "text": "Accede to the human rights protocols and conventions that it has not acceded to", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Uphold the rights to freedom of expression and assembly", - "values": [ - "4 - General action" - ] - }, - { - "text": "Adopt legislation that prohibits any form of racial profiling and furthermore strengthen its efforts to promote the humane treatment of migrants and people of non-Irish origin by the Garda Síochána and other law enforcement personnel in accordance with international human rights law ", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Take further measures to realize universal health coverage throughout the country", - "values": [ - "4 - General action" - ] - }, - { - "text": "Strengthen the framework of the National Office for the Prevention of Torture to ensure it is fully functional and able to investigate all reported cases", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Continuing of institutional and capacity building of the Bahraini police forces in a way that positively reflects effective respect to human rights ", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Recognize the Roma as minority and continue to improve the standards in housing, education and health care", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Ratify the International Convention for the Protection of All Persons from Enforced Disappearance and the International Convention on the Protection of the Rights of All Migrant Workers and Members of Their Families", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Issue a standing invitation to the Special Procedures of the Human Rights Council", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Reinforce the National Committee for the Protection of the Child to enhance its ability to protect the rights of the child, especially street children", - "values": [ - "4 - General action" - ] - }, - { - "text": "Continue efforts to strengthen the role of the National Plan of Action for Women", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Abolish the article in the penal code which allows rapists of underage girls to escape trial by marrying their victims", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "With regard to the promotion of human rights on the ground: Continuance of administrative reform, improvement of the legal and institutional frameworks with a view to strengthening the rule of law, better ensuring the ownership of citizens and their access to legal aid: (i) Scaling up poverty reduction and giving priority to job creation, income improvement, development of social security network and provision of basic social services to the poor and vulnerable groups and those in mountainous and remote areas", - "values": [ - "4 - General action" - ] - }, - { - "text": "Reconsider the Protection of State Information Bill to ensure its conformity with ICCPR, in particular by removing excessive penalties for publication of classified information and the inclusion of a public interest defence ", - "values": [ - "3 - Considering action" - ] - }, - { - "text": "Guarantee a safe, free and independent environment for journalists and ensure that all cases of threats, violence, attacks and killings against journalists are investigated by independent and impartial bodies ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Provide systematic support and assistance to victims of human rights abuses in Transnistria", - "values": [ - "4 - General action" - ] - }, - { - "text": "Implement policies and plans aimed at improving maternal and child health, and ensure equitable access to health services to effectively address maternal and infant mortality", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Continue its efforts to implement the National Human Rights Action Plan", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Take effective measures to eliminate the use of torture or other cruel, inhuman or degrading treatment or punishment on an urgent basis, investigate allegations of such acts and prosecute and punish all those responsible ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Recommended putting an end to all practices limiting and-or violating the human rights of ethnic Georgians in the territories controlled by the Russian armed forces - including, but not limited to, access to education in Georgian language, freedom of movement of ethnic Georgians and right to freely choose the place of their residence", - "values": [ - "4 - General action" - ] - }, - { - "text": "Adopt a national strategy to improve the conditions in the penitentiary system", - "values": [ - "4 - General action" - ] - }, - { - "text": "Expedite action on bills currently under consideration aimed at combating racial discrimination", - "values": [ - "4 - General action" - ] - }, - { - "text": "Continue to cooperate with the Human Rights Council", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Continue its efforts to reduce all forms of violence against women, in particular by providing adequate resources to the police and the judiciary and through special training for law enforcement officials dealing with violence against women \n\n", - "values": [ - "4 - General action" - ] - }, - { - "text": "Amend legislation in order to combat discrimination and hostility toward LGBT groups", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Adopt legislative measures to prohibit the detention of minors and to decriminalize child begging", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Consider the greater participation and incorporation of indigenous peoples in governmental decisions, and ensure that the Hmong are integrated into society on an equal footing with other citizens ", - "values": [ - "3 - Considering action" - ] - }, - { - "text": "Implement the Education Act and other measures to strengthen gender equality", - "values": [ - "4 - General action" - ] - }, - { - "text": "Take measures to protect journalists and other human rights defenders ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Continue efforts to implement the existing strategies and action plans to combat trafficking in human beings and to establish channels and mechanisms for international cooperation in this field", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Adopt additional measures to combat all kinds of gender-based violence and to enforce the existing legislation on the matter by, inter alia, promoting awareness campaigns and providing appropriate care to women and girls victims of violence", - "values": [ - "4 - General action" - ] - }, - { - "text": "Fully implement the 2010 legislation on combating human trafficking and put an end to the impunity of those responsible for this act", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Consider ratifying the International Convention on the Protection of the Rights of All Migrant Workers and Members of Their Families as a way of allowing immigrants to enjoy all of the rights provided for in this international legal instrument ", - "values": [ - "3 - Considering action" - ] - }, - { - "text": "Review the effectiveness of government mechanisms intended to support the achievement of gender equality", - "values": [ - "3 - Considering action" - ] - }, - { - "text": "Share its experience and best practices with other developing countries in the area of poverty eradication, in particular between the rural and urban population", - "values": [ - "1 - Minimal action" - ] - }, - { - "text": "Consider the adoption of legislative measures to criminalize specifically gender violence", - "values": [ - "3 - Considering action" - ] - }, - { - "text": "Strengthen policies for access to health-care services, especially for children with low economic and social status and undocumented children", - "values": [ - "4 - General action" - ] - }, - { - "text": "Proceed to the ratification of the International Convention for the Protection of All Persons against Enforced Disappearance and the Convention on the Rights of persons with disabilities, and ensure the transposition into national law of the ratified treaties", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Ensure gender equality in inheritance matters, as well as the protection of women against harmful traditional practices", - "values": [ - "4 - General action" - ] - }, - { - "text": "Give high priority to the work of the National Disabilities Taskforce ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Take further measures to protect the rights of women in the family and society and ensure their equality in all areas ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Continue tirelessly to address the issue of resettlement of IDPs including by putting in place resources in provisions of basic services and infrastructure development ", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Redouble its efforts for the ratification process of the International Covenant on Economic, Social and Cultural Rights and the International Covenant on Civil and Political Rights", - "values": [ - "4 - General action" - ] - }, - { - "text": "Strengthen its judicial system and take effective measures to fight poverty ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Step up efforts to fight trafficking of persons and in this regard consider the possibility of developing a comprehensive national strategy for the fight against trafficking in persons ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Implement the recommendations of the Director of Public Prosecutions and adopt legislation allowing for prosecution of perpetrators of domestic violence without victim-lodged complaints", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Establish and implement strategies to achieve all MDGs by 2015, especially goals related to the rights of women and children ", - "values": [ - "4 - General action" - ] - }, - { - "text": "The Government is committed to addressing this overrepresentation [of Maori in the prison population] through the "Drivers of Crime" initiative. Priority areas for action include: increasing at-risk communities' uptake of maternity and early parenting support, addressing conduct and behaviour issues through education and health services, reducing harm from alcohol, and improving access to interventions for offenders to reduce reoffending and escalation.", - "values": [ - "4 - General action" - ] - }, - { - "text": "Consider the possibility of acceding to the International Covenant on Economic, Social and Cultural Rights ", - "values": [ - "3 - Considering action" - ] - }, - { - "text": "Investigate in depth on the allegations of human rights violations committed by the private security services, police forces and high officials since 2008 in Marange region, pursue and sanction those who are responsible ", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Take measures to grant effective and unhindered enjoyment of the freedom of religion.", - "values": [ - "4 - General action" - ] - }, - { - "text": "Continue to improve the socio-economic situation of the Roma minority.", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Open inquiries, as soon as possible, into all allegations of torture and death in detention and prosecute and convict all those who have committed acts of torture in prisons or other places of detention.", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Step up efforts to improve the quality of education and allocate adequate resources, and address the issue of highschool dropouts ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Take all measures to ensure the effective prohibition of female genital mutilation, including, among others, the implementation of awareness-raising programmes for the population about its terrible effects ", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Expedite action on the ratification process of the International Convention on the Protection of the Rights of All Migrant Workers and Members of Their Families", - "values": [ - "4 - General action" - ] - }, - { - "text": "Ratify the OP-CAT, the Optional Protocol to CRPD, OP-CRC-SC, the International Convention on the Protection of the Rights of All Migrant Workers and Members of Their Families, and CED ", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Ratify all conventions to which the country is not yet a party", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Simplify the issuance of permissions for holding assemblies ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Pursue and complete accession to core human rights covenants, including in particular the International Covenant on Civil and Political Rights, the International Covenant on Economic, Social and Cultural Rights, the International Convention on the Elimination of All Forms of Racial Discrimination and the Convention against Torture, as previously recommended", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Consider taking appropriate measures to ensure the institution of the Ombudsman is in conformity with the Paris Principles or eventually envisage the establishment of a national human rights institution in conformity with those principles.", - "values": [ - "3 - Considering action" - ] - }, - { - "text": "Ensure freedom of expression, in conformity with obligations under the International Covenant on Civil and Political Rights, in particular in relation to journalists, human rights activists and members of the opposition", - "values": [ - "4 - General action" - ] - }, - { - "text": "Bring all those suspected of criminal responsibility to justice in accessible ordinary civilian courts, using fair trials and without making recourse to the death penalty ", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Extend a specific invitation to the United Nations Special Rapporteur on the situation of human rights defenders", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Increase its efforts to raise awareness of a woman's entitlement to request the transfer of a case from a customary court to a common law court, as recommended by CEDAW in 2010", - "values": [ - "4 - General action" - ] - }, - { - "text": "Ratify core international human rights instruments, in particular the Rome Statute of the International Criminal Court, the International Convention on the Protection of the Rights of All Migrant Workers and Members of Their Families and the Optional Protocol to the Convention against Torture", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Continue its efforts to reach the Millennium Development Goals by 2015 and increase the number of its primary and secondary schools", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Consider the further harmonization of the prohibition of corporal punishment of children with international standards", - "values": [ - "3 - Considering action" - ] - }, - { - "text": "Amend the law to expressly prohibit hazardous work for children as well as all forms of trafficking of children", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Continue its ongoing efforts in judicial reform", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Continue its efforts in the area of countering trafficking in persons and all associated violations to the rights of the victims ", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Investigate the causes of human trafficking and compile statistical data on the subject in order to find the most effective means to combat this phenomenon ", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Recognize the competence of the Committee on Enforced Disappearances to receive and consider communications from or on behalf of victims and other States parties for violations of the provisions of the Convention, in accordance with articles 31 and 32", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Review provisions set out in its Criminal Code criminalizing libel in order to ensure that they comply with the International Covenant on Civil and Political Rights and the standards of the Organization for Security and Cooperation in Europe, and to put an end to attempts to block Internet sites or filter their content", - "values": [ - "3 - Considering action" - ] - }, - { - "text": "Adopt the necessary legislative and administrative measures to implement those treaties that they have already ratified", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Strengthen preventive, protective and rehabilitative measures for women and girl victims of sexual violence, through specialized psychosocial, legal and health services", - "values": [ - "4 - General action" - ] - }, - { - "text": "Give further attention to the assistance available to victims of violence against women, especially in the field of psycho-social support", - "values": [ - "3 - Considering action" - ] - }, - { - "text": "Continue to take action towards a comprehensive gender equality strategy ", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Allow the International Commission of Inquiry to visit the country to better understand the situation on the ground, and to work with the Government and other stakeholders to ensure accountability and to promote human rights reform", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Uphold the respect of the right to peaceful assembly and ensure that the right is effectively implemented", - "values": [ - "4 - General action" - ] - }, - { - "text": "Introduce a de facto moratorium on capital executions", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Continue to implement the current projects and socio-economic development programs ", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Review its policies discriminating against students on account of their faith, ensure that the trials of members of religious minorities are conducted in a fair and transparent manner, and accord them the full rights of citizens of Iran", - "values": [ - "3 - Considering action" - ] - }, - { - "text": "Take measures to render its criminal law consistent with the prohibition of torture which constitutes a norm of international law", - "values": [ - "4 - General action" - ] - }, - { - "text": "Ratify the Convention on the Rights of Persons with Disabilities at the earliest opportunity", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Prevent discrimination on grounds of sexual orientation and protect the rights of lesbian, gay, bisexual, transgender and intersex (LGBTI) people, including their right to freedom of expression and peaceful assembly ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Continue its efforts to establish a legal framework to protect human rights by ratifying core instruments, especially the International Covenant on Civil and Political Rights ", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Grant greater access to WHO and international NGOs working in the health field ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Intensify measures to tackle racism and xenophobia ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Continue harmonizing its domestic legislation in conformity with the Convention on the Rights of the Child, introduce legislation to prevent and end all forms of corporal punishment, and adopt effective measures for preventing children under the age of 18 from being involved in hazardous work", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Develop non-custodial alternatives, such as community service and bail arrangements.", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Review school textbooks to introduce a gender-equality perspective and promote citizenship and openness to the outside world", - "values": [ - "3 - Considering action" - ] - }, - { - "text": "Adopt the Penal Code and apply its provisions relating to violence against women, including female genital mutilations and other sexual violence, early and enforced marriage", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Take measures for the economic growth to be proportional to different parts of the country and to benefit all including in particular minorities", - "values": [ - "4 - General action" - ] - }, - { - "text": "Continue to implement, in cooperation with relevant United Nations agencies, policies and programmes to reduce poverty and improve the wellbeing of it people ", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Train its law enforcement personnel on gender sensitivity and equality", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Strengthen its fight against cases of violence, hate speech and discrimination", - "values": [ - "4 - General action" - ] - }, - { - "text": "Eliminate any legislation that has discriminatory effects against women, implement the relevant recommendations of the Committee on the Elimination of Discrimination against Women, and introduce a gender-specific dimension to the anti-discrimination provision of the Constitution.", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "In the context of the provisions of Barbados' Constitution in the area of the fight against discrimination, continue promoting legislative and public policy action to ensure the rights of persons with disabilities, especially in the areas of employment, education and the provision of State services ", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Enhance its work to achieve the objectives enshrined in the Action Programme of the Government for 2016-2018", - "values": [ - "4 - General action" - ] - }, - { - "text": "Consider possibilities of the abolition of the death penalty in law", - "values": [ - "3 - Considering action" - ] - }, - { - "text": "Review existing legislation to enhance the exercise of the right to freedom of expression, association and peaceful assembly", - "values": [ - "3 - Considering action" - ] - }, - { - "text": "Follow through and expand on already established programmes to protect children ", - "values": [ - "4 - General action" - ] - }, - { - "text": "That Ghana's Criminal Code be amended to decriminalize sexual activity between consenting adults.", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Strengthen protection mechanisms against gender-based violence ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Extend a standing invitation to all Special Procedure mandate holders", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Redouble efforts to save mother and child by pursuing the education of young girls, increasing the preparation of birth assistants and accelerating the development of public health structures, especially in rural areas ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Involve Romani organizations and communities in the development and implementation of the strategy for Roma inclusion", - "values": [ - "4 - General action" - ] - }, - { - "text": "Expedite efforts to ratify the International Convention for the Protection of All Persons from Enforced Disappearance and the Convention against Torture and Other Cruel, Inhuman or Degrading Treatment or Punishment", - "values": [ - "4 - General action" - ] - }, - { - "text": "Introduce measures to improve the conditions of Travellers in the society and introduce a comprehensive system for the monitoring of racist incidents ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Continue, in cooperation with UNESCO, to promote access to quality education for all ", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Elaborate emergency programmes of appropriate medical and psychological care for rape survivors", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Develop comprehensive policy instruments based on the Yogyakarta Principles to combat discrimination against sexual minorities ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Identify the causes of the high level of domestic violence and sexual abuse for the purpose of having a more precise diagnosis, which would make it possible to take the necessary and adequate measures for their eradication ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Ensure the full implementation of the Elimination of Violence against Women law and hold accountable police and prosecution supervisors who are not ensuring the enforcement of the law", - "values": [ - "4 - General action" - ] - }, - { - "text": "Deepen the respect about principles of proportionality and necessity for armed forces and police", - "values": [ - "4 - General action" - ] - }, - { - "text": "Take measures, including through legislation, to ensure equality of women, particularly in decision-making processes and access to basic services and infrastructure ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Continue its engagement with the international community to ensure that it delivers on its promises to support the post-referendum political transition ", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Take further steps to ensure its people, especially children, will continue to enjoy access to affordable education ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Ratify the International Convention for the Protection of All Persons from Enforced Disappearance which was signed by Mozambique in 2008", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Continue its efforts to find humane solutions for the illegal residents, including granting nationality to those who fulfil the applicable conditions and criteria ", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Continue promoting equal access for women and girls to all levels of education", - "values": [ - "4 - General action" - ] - }, - { - "text": "Further promote human rights education and training at all levels in partnership with all relevant stakeholders to promote and protect the rights of every person ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Strengthen its investigations of sex crimes committed overseas by Swedish nationals and ensure that those who have travelled abroad to purchase sexual services, especially from children, can be prosecuted in Sweden", - "values": [ - "4 - General action" - ] - }, - { - "text": "Launch a national debate which may lead to the decriminalization of homosexuality ", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Continue its efforts regarding the issue of erased persons in order to help facilitate the most appropriate remedies for that population in a dignified and efficient manner", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Strengthen its efforts to achieve a balance in terms of securing economic, social and cultural rights and civil and political rights on the other hand", - "values": [ - "4 - General action" - ] - }, - { - "text": "Finalize the process for the ratification of the International Convention on the Protection of the Rights of All Migrant Workers and Members of Their Families, as it committed to do, and create the necessary conditions to ensure the correct functioning and independence of the national Human Rights Commission", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "That all the newborn children born in Chile should have the right to Chilean nationality with a legal framework for their protection", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Further progress on measures to prevent and punish all forms of racial discrimination", - "values": [ - "4 - General action" - ] - }, - { - "text": "Take measures to prevent any interference in the exercise by defence lawyers of their functions, in accordance with the International Covenant on Civil and Political Rights", - "values": [ - "4 - General action" - ] - }, - { - "text": "Ensure the inclusion of human rights and especially children's rights in the public education system, raising awareness about human rights in general", - "values": [ - "4 - General action" - ] - }, - { - "text": "Provide intensive training to law enforcement officials to ensure that, in the performance of their duties, they respect and protect human dignity and maintain and uphold the human rights of all persons without distinction as to race, colour or national or ethnic origin ", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Continue efforts to improve prison conditions", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Ratify the ICESCR at an early stage ", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Bring to justice those responsible for abuses that took place between 28 January and 8 February 2008. ", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Adopt the necessary measures to facilitate the access to and distribution of international humanitarian assistance in the country so as to support the efforts made by the Government to meet the needs of the population ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Further strengthen their cooperation with the treaty bodies of the United Nations", - "values": [ - "4 - General action" - ] - }, - { - "text": "Reduce the number of crimes to which the death penalty can be imposed", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Pay special attention to the promotion of the rights of women and girls by adding a gender perspective to all national strategies and action plans, including development projects", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "The Government was committed to implementing the recommendations contained in the report of the Truth, Justice and Reconciliation Commission.", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Consider issuing a standing invitation to all Special Procedures mandate holders", - "values": [ - "3 - Considering action" - ] - }, - { - "text": "Clarify the legal status of refugees from neighbouring States, with a focus on the prevention of statelessness.", - "values": [ - "4 - General action" - ] - }, - { - "text": "Study the possibility of ratifying CAT, OP-CEDAW and the International Convention for the Protection of All Persons from Enforced Disappearance (CED) ", - "values": [ - "3 - Considering action" - ] - }, - { - "text": "Accede and adapt its national legislation to the Arms Trade Treaty and sign the Treaty on the Prohibition of Nuclear Weapons", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Continue the action aimed at the promotion of gender equality in all public and private activities", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Increase measures aimed at decreasing the high number of women who are victims of domestic violence", - "values": [ - "4 - General action" - ] - }, - { - "text": "Consider the creation of a national system for the monitoring of the follow-up to recommendations relating to human rights", - "values": [ - "3 - Considering action" - ] - }, - { - "text": "Develop external relations of the national preventative mechanism against torture with national human rights institutions", - "values": [ - "4 - General action" - ] - }, - { - "text": "Strengthen access to the national education system for all children and adolescents with disabilities, ensuring an inclusive education", - "values": [ - "4 - General action" - ] - }, - { - "text": "Ratify the Optional Protocol to the Convention against Torture. ", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Further pursue its efforts for the empowerment of women", - "values": [ - "4 - General action" - ] - }, - { - "text": "Fight corruption at all levels ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Make the necessary declarations under article 41 of ICCPR ", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Put in place legislations to protect migrant workers from abuse and exploitation", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Withdraw its reservations to various articles of the Convention on the Rights of the Child", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Develop human resources in the health sector in accordance with the needs", - "values": [ - "4 - General action" - ] - }, - { - "text": "Fully involve non-governmental organizations at the national level in the follow-up of this review.", - "values": [ - "4 - General action" - ] - }, - { - "text": "Step up efforts to ensure that economic, social and cultural rights of migrant workers are fully respected.", - "values": [ - "4 - General action" - ] - }, - { - "text": "Extend a standing invitation to all mandate holders of the Human Rights Council ", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Continue efforts regarding the rights of the child especially in relation to combating child trafficking", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Consider the definite abolishment of the death penalty in its internal legislation and accede", - "values": [ - "3 - Considering action" - ] - }, - { - "text": "Ensure effective practical implementation of the standards guaranteed by the Serbian Constitution in the field of minority rights, including by further harmonizing its legislation, providing adequate financial and administrative support to relevant institutions, preventing any forms of discrimination and prejudice in society and the media, and undertaking measures to achieve a more balanced socio-economic development among the regions in the country", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Continue to strictly observe the stipulations on evidence used to examine and decide on cases of the death penalty and adopt stricter standards in this regard", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Authorize the defendant to immediately have access to a lawyer and limit the detention period without charges to a maximum of 48 hours, as a step towards abolishing this system", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Continue towards ensuring that adequate instruments are put in place, enabling the involvement of Ethiopian citizens in the promotion and protection of human rights ", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Ensure the independent functioning and decision-making of the Constitutional Court free from any political interference as a fundamental pillar of democracy, rule of law and human rights protection", - "values": [ - "4 - General action" - ] - }, - { - "text": "Continue measures to protect and promote social rights ", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Adopt measures to further the enjoyment of economic, social and cultural rights by indigenous peoples", - "values": [ - "4 - General action" - ] - }, - { - "text": "Continue to be actively engaged in regional human rights bodies, particularly those concerning the promotion and protection of the rights of women and combating trafficking in persons ", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Take the necessary positive measures to modernize educational facilities with a view to successfully ensuring the enforcement of the 12-year education system ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Extend a standing invitation to all the special procedures of the Human Rights Council ", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Include in the draft legislation on the prohibition of discrimination comprehensive anti-discrimination measures, including on sexual orientation and gender identity.", - "values": [ - "4 - General action" - ] - }, - { - "text": "Introduce to its criminal legislation aggravating circumstances on the grounds of racial discrimination, as recommended by the Committee on the Elimination of Racial Discrimination.", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Continue to address the specific needs of children of migrants, refugees and asylum seekers and unaccompanied minors", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Continue its efforts to create a national human rights institution as provided for the 1991 Decree, as modified in March 2015", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Continue active work to ensure inter-confessional harmony within Pakistan", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Step up its efforts to protect vulnerable groups in society in accordance with the 2015-2019 National Legislative Programme", - "values": [ - "4 - General action" - ] - }, - { - "text": "Increase continued efforts to eliminate violence against women and children in the country ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Commute all existing death sentences and establish a moratorium on the use of the death penalty as a step towards its abolition, as declared in the Great Green Charter of Human Rights in the Jamahiriyan Era ", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Effectively abolish the death penalty and consider ratifying the Second Optional Protocol to the International Covenant on Civil and Political Rights, aiming at the abolition of the death penalty", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Establish a transparent process for the digitalization process to ensure space on the airwaves for independent and small regional media outlets ", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Further strengthen efforts towards birth registration for all, with a view to encouraging access to relevant procedures", - "values": [ - "4 - General action" - ] - }, - { - "text": "Consider taking additional steps to address discrimination against disabled adult women and Aboriginal women.", - "values": [ - "3 - Considering action" - ] - }, - { - "text": "Allow a full and independent investigation into all reports of human rights violations, including crimes against humanity and war crimes and hold accountable those found responsible for these crimes ", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Closely monitor the interpretation and application of the 2008 Surveillance Act to prevent any interference with the right to privacy ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Share its experiences, expertise and initiatives with interested countries in the field of public health and health tourism", - "values": [ - "1 - Minimal action" - ] - }, - { - "text": "Review all domestic legislation with a view to bringing it into full compliance with CEDAW and the general recommendations of the Committee on the Elimination of Discrimination against Women ", - "values": [ - "3 - Considering action" - ] - }, - { - "text": "Take steps, including allocating adequate resources, to strengthen the capacity and independence of the judiciary to improve the fair and timely administration of justice", - "values": [ - "4 - General action" - ] - }, - { - "text": "Consider creating a national human rights institution in compliance with the Paris Principles", - "values": [ - "3 - Considering action" - ] - }, - { - "text": "Step up efforts to implement effectively the National Strategy and Action Plan for the Decade of Roma Inclusion with a view to improving the living conditions of the Roma community and, if necessary, to adopt measures to improve the education of Roma children ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Take the necessary steps to combat racial hatred and promote tolerance towards persons of different ethnic origins", - "values": [ - "4 - General action" - ] - }, - { - "text": "Adopt necessary measures in order that shared possessions are divided equally, regardless of each spouse's individual contribution, and incorporate in the family law new necessary legal provisions to compensate for the fact that women undertake more non-remunerative work", - "values": [ - "4 - General action" - ] - }, - { - "text": "Consider ratifying the ICRMW as well as the ILO Convention 189", - "values": [ - "3 - Considering action" - ] - }, - { - "text": "Further improve the social security system and continue to assist vulnerable groups ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Adopt effective measures to address the high level of pregnancy among girls and adolescents and ensure their effective access to sexual and reproductive health services", - "values": [ - "4 - General action" - ] - }, - { - "text": "Ensure procedures governing the registration of civil society organizations, including those advocating for the Saharawi people\u2019s right to self-determination", - "values": [ - "4 - General action" - ] - }, - { - "text": "Improve the human rights elements of its training for law enforcement personnel ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Harmonize its legislation, including its customary law practices, with international obligations and standards ", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Step up efforts to end discrimination based on sexual orientation and sexual identity, including through relevant legislation", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Conduct an independent, impartial, thorough and effective investigation into cooperation with the American authorities regarding illegal renditions and secret prisons in the context of the fight against terrorism", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Take necessary steps to implement the commitment extended to special procedures by accepting pending visit requests", - "values": [ - "4 - General action" - ] - }, - { - "text": "Consider removal of its reservations to the Convention on the Rights of the Child and the Optional Protocol on the involvement of children in armed conflict.", - "values": [ - "3 - Considering action" - ] - }, - { - "text": "Continue to implement agreed recommendations and other domestic and international obligations such as treaty body reporting", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Pursue its effort to combat any kind of discrimination against women. to ensure redress for victims of domestic violence, as well as the prosecution of perpetrators as recommended by Committee on the Elimination of Discrimination against Women. ", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Seek support and assistance from international institutions in dealing with the challenges that constrain the effective realization of certain rights, particularly the right to education and the protection of refugees", - "values": [ - "1 - Minimal action" - ] - }, - { - "text": "Grant due process rights to all detainees held in both military and police facilities, including those held in administrative detention, disclose all unofficial detention sites, and facilitate effective and independent monitoring of detainees", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Continue making progress towards a more efficient functioning of government institutions, continuing the fight against corruption and promoting transparency", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Take measures for the submission of overdue periodic reports under the treaties and covenants to which Lebanon has become a party", - "values": [ - "4 - General action" - ] - }, - { - "text": "Establish centres supporting women and girl victims of gender violence", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Continue to strengthen its domestic legislation to implement its international human rights obligations", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Take appropriate measures against discrimination against persons belonging to ethnic minorities, in particular measures against harassment by police, and allow equal access to education for all persons belonging to minorities ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Consider the possibility of ratifying the Rome Statute of ICC, and fully harmonize its domestic legislation accordingly ", - "values": [ - "3 - Considering action" - ] - }, - { - "text": "Be more proactive in identifying and putting a stop to religious intolerance.", - "values": [ - "4 - General action" - ] - }, - { - "text": "Enhance the programmes aimed at protecting children from all forms of abuse ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Strengthen measures toward eliminating violence against women, including domestic violence", - "values": [ - "4 - General action" - ] - }, - { - "text": "Continue strengthening the capacity of government institutions on human rights and the application of a human rights-based approach", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Improve health care and reduce infant and young child mortality", - "values": [ - "4 - General action" - ] - }, - { - "text": "Recognize the right of access to safe drinking water and sanitation in line with GA resolution 64/292 and HRC resolution 18/1, as well as CESCR recommendations recognizing the right to sanitation as an integral part of the human right of access to safe drinking water ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Implement the European Committee for the Prevention of Torture and Inhuman or Degrading Treatment or Punishment's recommendation on offering at least 4 m2 per prisoner in multi-occupancy cells", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Ensure that judicial authorities carry out thorough and impartial investigations regarding acts of violence against human rights defenders ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Review the requirements for migrants and asylum-seekers to obtain permanent residence and citizenship and consider removing retroactive elements of these requirements ", - "values": [ - "3 - Considering action" - ] - }, - { - "text": "Panama reiterates its commitment to consulting with disabled persons' organizations and will strengthen the technical and administrative measures in place to ensure the full exercise of this right.", - "values": [ - "3 - Considering action" - ] - }, - { - "text": "Strengthen human rights education programmes in order to eliminate discrimination", - "values": [ - "4 - General action" - ] - }, - { - "text": "Cooperate actively with the international community, in particular United Nations mechanisms, as well as promote democratic rule and restoration of law and order", - "values": [ - "4 - General action" - ] - }, - { - "text": "Provide a clear definition of child prostitution in its national legislation in line with its international obligations ", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Review the law on protection of minors in order to deal with vulnerable situations of migrant children", - "values": [ - "3 - Considering action" - ] - }, - { - "text": "Continue to develop and implement measures aimed at protecting the rights of all children, particularly those in vulnerable situations ", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Cuba reiterated its commitment to cooperate with United Nations human rights machinery, especially the Council and its universal periodic review, and to continue working towards the promotion and protection of human rights through international cooperation and respectful dialogue.", - "values": [ - "4 - General action" - ] - }, - { - "text": "Ensure that its counter-terrorism efforts are in compliance with international human rights obligations ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Guarantee freedom of movement for the Palestinian refugees and commit to the improvement of their employment ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Further strengthen the efforts to promote the rights of the child, in particular to prevent crimes against children", - "values": [ - "4 - General action" - ] - }, - { - "text": "Strengthen the implementation of policies and measures to protect vulnerable social groups like women, children, poor people, ethnic minorities, migrants ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Poland will continue to participate in the World Programme for Human Rights Education, within the first stage of which education on human rights has been introduced into the core curricula of general education at primary and middle schools. Moreover, the Ministry of National Education has launched a number of other measures to promote education on human rights and the rights of child. Training to prepare activities for the advancement of human rights and combating discrimination in local communities has been carried out under numerous projects", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Take effective measures to accelerate the consolidation of property rights as an aspect of ensuring gender equality ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Promptly accede to the Rome Statute of the International Criminal Court and implement it in national law ", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Prohibit by law the corporal punishment of children, including in the family ", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Introduce legislation that eliminates discrimination in ownership, co-sharing and inheritance of land, protects victims of sexual violence, criminalizes marital rape and gives women equal rights in marriage and pre-marriage.", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Ensure equal access to justice and the exercise of political rights to people with disabilities", - "values": [ - "4 - General action" - ] - }, - { - "text": "Reform the penal code in line with international standards for freedom of expression, including by revising national security provisions", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Continue ongoing efforts and adopt effective measures and policies to stop and prevent sexual violence against women and girls, as recommended previously in 2009 ", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Step up efforts to enhance the participation of women in all spheres of socio-economic life, in keeping with the progress made in women's education", - "values": [ - "4 - General action" - ] - }, - { - "text": "Develop and implement a national action plan for the implementation of the activities of the International Decade for People of African Descent", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "The Government is committed to increasing the participation of women in governance on New Zealand stock exchange (NZX) top 100 and state sector boards, through targets as opposed to quotas.", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Continue its programmes aimed at poverty alleviation ", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Strengthen institutional guarantees for the legitimate rights and interests of news agencies and journalists", - "values": [ - "4 - General action" - ] - }, - { - "text": "Continue applying a gender perspective in its policies and programmes, including in the follow-up to the results of the UPR, and continue its actions, particularly through awareness-raising campaigns and public education programmes, to work towards the eradication of stereotypes associated with traditional roles of men and women in the family", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Improve access to justice for women through legal aid and ensure that women human rights defenders can work safely and are not hindered in their activities", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Put in place measures that ensure and protect the family as a natural nucleus of society and provide a family-friendly environment for the children in Liberia", - "values": [ - "4 - General action" - ] - }, - { - "text": "Establish child protection systems in order to reduce the number of cases of maltreatment of children", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Strengthen its efforts to combat trafficking in women and children for sexual and other exploitative purposes ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Accede to the Convention on the non-applicability of statutory limitations to war crimes and crimes against humanity", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Decriminalize of defamation", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Take more decisive steps towards implementing the National Programme for the Protection of Human Rights Defenders", - "values": [ - "4 - General action" - ] - }, - { - "text": "Ensure the absence of discrimination between women and men in law and in practice and withdraw all reservations to CEDAW", - "values": [ - "4 - General action" - ] - }, - { - "text": "Take concrete measures to stop racism and hate speech by politicians as well as racism in the media", - "values": [ - "4 - General action" - ] - }, - { - "text": "Supplement their international commitments by making it a priority to accede to the ICCPR and ICESCR", - "values": [ - "4 - General action" - ] - }, - { - "text": "Invest in and upgrade human rights training of the police and the staff of penal institutions ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Ensure comprehensive sexuality education is integrated into the national school curriculum, including on topics such as sexual diversity, sexual rights and gender equality", - "values": [ - "4 - General action" - ] - }, - { - "text": "Ratify and implement ICCPR without reservations or delay", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Reconsider the grounds for recognizing national minority status", - "values": [ - "3 - Considering action" - ] - }, - { - "text": "Prepare a study on the scale of direct and indirect racial discrimination in the criminal justice system, especially as far as preliminary detention and imprisonment are concerned", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Ensure due process is afforded to all persons accused of criminal offences, as well as protection from public persecution", - "values": [ - "4 - General action" - ] - }, - { - "text": "Continue reinforcing its efforts to protect children's rights", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Reiterate its recommendation to abolish the death penalty and to ratify the Optional Protocol to the International Covenant on Civil and Political Rights, and duly eliminate provisions concerning the capital punishment from the national criminal law", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Consider ratifying the Second Optional Protocol to the International Covenant on Civil and Political Rights", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Take strong coordinating measures to protect the right to freedom of religion or belief, including by ensuring that all district and provincial laws and regulations align with the Constitution and international human rights obligations of Indonesia", - "values": [ - "4 - General action" - ] - }, - { - "text": "Ensure that laws and regulations related to freedom of expression fully comply with Mongolia's obligations under the International Covenant on Civil and Political Rights and consider decriminalizing defamation", - "values": [ - "4 - General action" - ] - }, - { - "text": "Adopt measures to ensure the accessibility of persons with disabilities to places such as schools, hospitals, markets and public offices ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Continue reform towards eventual abolition of the death penalty, including greater transparency around its use", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Develop regulations that recognize the right to provide and receive quality care services and the right not to provide care when it presents an impediment to the full exercise of citizenship", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Develop measures to promote education for all, particularly for vulnerable groups, including women, children and persons with disabilities", - "values": [ - "4 - General action" - ] - }, - { - "text": "Ratify the international human rights legal instruments to which Madagascar is not a party", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Establish concrete goals to accelerate the achievement of substantive gender equality, including measures to increase women's representation in decision making positions and addressing the long-standing pay gap between women and men ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Take further measures to fight against sexual violence against women and children.", - "values": [ - "4 - General action" - ] - }, - { - "text": "Step up efforts to establish a national human rights institution in line with the Paris Principles", - "values": [ - "4 - General action" - ] - }, - { - "text": "Reform the judicial system in accordance with international standards regarding the administration of justice, including by reforming penal centres and the system for the administration of juvenile justice, and ensuring the independence of judges and lawyers", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Continue strengthening the partnership between the Government and the Maori to reach a just, fair and sustainable settlement to historical claims made in the framework of the Treaty of Waitangi ", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Enhance cooperation at the regional and international levels with relevant stakeholders with a view to achieving relevant Millennium Development Goals, related to poverty eradication, nutrition, sanitation and environmental sustainability ", - "values": [ - "1 - Minimal action" - ] - }, - { - "text": "Provide support to countries requesting assistance in case of natural disasters and other ravages of nature ", - "values": [ - "1 - Minimal action" - ] - }, - { - "text": "Continue its civic efforts at all levels, in particular at local levels, to promote racial and religious harmony ", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Ratify without delay the International Convention for the Protection of All Persons from Enforced Disappearance, signed in October 2008, and the Optional Protocol to the Convention against Torture signed in September 2003", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Development of policies to create rural employment opportunities, launching of projects, and encouragement of capacity-building and higher levels of training for women in local communities", - "values": [ - "4 - General action" - ] - }, - { - "text": "Abolish the death penalty definitively and commute all such sentences to periods of imprisonment - and put an end to caning and flogging", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Improve intra-state mechanisms for the implementation of international obligations in the area of human rights", - "values": [ - "4 - General action" - ] - }, - { - "text": "Accelerate the adoption of the Employment Sexual Harassment Bill ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Adopt further measures to combat violence and sexual abuse against girls and women, as well as violence and discrimination based on sexual orientation", - "values": [ - "4 - General action" - ] - }, - { - "text": "Undertake measures that would allow citizens to have access to public information, in particular on alleged violations of human rights", - "values": [ - "4 - General action" - ] - }, - { - "text": "Incorporate gender policies in all development plans and projects ", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Unify the criminal age in the kingdom\u2019s legislation to uphold the best interest in the treatment of the child in a manner compatible with his age and dignity and to facilitate his rehabilitation and reintegration in society", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Revoke the national system to register the entry and exit of citizens of 25 countries from the Middle-East, South Asia and North Africa, and eliminate racial and other forms of profiling and stereotyping of Arabs, Muslims and South Asians as recommended by CERD", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Ensure universal access to health for all, by providing adequate funding in undertaking such a policy and allowing sufficient training for health personnel ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Clarify the mandate and scope of its proposed NHRI as per the Paris Principles ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Ensure pluralism of the press and respect for freedom of expression and public assembly", - "values": [ - "4 - General action" - ] - }, - { - "text": "Ensure that the Panama Water Resources Authority takes into account the needs of vulnerable groups and carries out its work without discrimination ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Ensure equitable access to education and free education for all children, as well as to promote the rights of girls to education", - "values": [ - "4 - General action" - ] - }, - { - "text": "Concentrate more resources for the assurance of economic and social rights and for the implementation of MDGs, in particular in the fields of education, healthcare and social security", - "values": [ - "4 - General action" - ] - }, - { - "text": "Consider establishing an independent national human rights institution in conformity with the Paris Principles", - "values": [ - "3 - Considering action" - ] - }, - { - "text": "Pay special attention to the situation of women and to improve their access to public services, education and justice, and to consider acceding to the Optional Protocol to CEDAW", - "values": [ - "4 - General action" - ] - }, - { - "text": "Improve the transparency and efficiency of its judicial system, ensuring a fair, open and prompt process for all sectors of society", - "values": [ - "4 - General action" - ] - }, - { - "text": "Provide adequate funding for investigations of violence against women, victim support programmes for affected women, and special training for the police to sensitize them to the problem of violence against women", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Adopt a programme to safeguard the rights of victims of torture and ill-treatment ", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Continue to strengthen the appropriate health care provided to women, in particular in rural areas", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Sign and ratify the core international instruments, including the Convention against Torture and Other Cruel, Inhuman or Degrading Treatment or Punishment", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Continue advancing in the improvement of detention conditions and in the mechanisms of social reintegration of prisoners and in the reform of the criminal justice system ", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Issue a standing invitation to all United Nations Special Procedures", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Strengthen prevention and effectiveness of investigation of cases of police violence thorough improved supervision and human rights training of law enforcement personnel, namely the military police, and ensure accountability for any acts of police violence", - "values": [ - "4 - General action" - ] - }, - { - "text": "Ensure unconditional access to primary, secondary and tertiary education for all groups of society, irrespective of their socioeconomic situation, ethnic background or gender", - "values": [ - "4 - General action" - ] - }, - { - "text": "Take further steps to ensure and enhance women's rights on all levels", - "values": [ - "4 - General action" - ] - }, - { - "text": "Respect the deadlines for submitting reports to various treaty bodies of the United Nations.", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Continue to conduct outreach activities to raise the awareness of people on human rights issues ", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Enable national minorities to freely use their languages in public domain, including topographical indications in minority areas ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Ensure equal access to education for vulnerable people, including women, children and persons with disabilities", - "values": [ - "4 - General action" - ] - }, - { - "text": "Continue the implementation of strategies for ensuring the achievement of Millennium Development Goals, in particular with respect to promoting health, combating HIV-AIDS, increasing the vaccination of the population through the expanded vaccination programme, and reducing the illiteracy rate", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Ratify the two optional protocols to the International Covenant on Civil and Political Rights (ICCPR) as well as the Optional Protocol to CAT and make the necessary declarations under article 41 of ICCPR and articles 20, 21 and 22 of CAT ", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Submit as a matter of priority its delayed reports to treaty bodies.", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Ensure a prompt and independent investigation regarding the loss of lives resulting from the violence in April this year, for the purpose of justice and confidence-building in Kyrgyzstan ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Renew its action plan against the sexual exploitation of children for commercial purposes ", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Enhance ratification of international human rights instruments", - "values": [ - "4 - General action" - ] - }, - { - "text": "Accede to the universal core treaties on human rights and those of inter-American system, in particular the recognition of the jurisdiction of the Inter-American Court on Human Rights", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Take the appropriate measures to give response to the concerns raised by the civil society ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Amend the statute of the National Children's Rights Commission (NCRC) to include legal competencies to undertake institutional interventions against ministries working with children's rights and receive complaints of rights violations ", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Continue efforts to prohibit child labour", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Seek further technical assistance from relevant international organizations to ensure continual success on the path towards achieving human rights and equal access to education, health, employment and livelihood for all ", - "values": [ - "1 - Minimal action" - ] - }, - { - "text": "More effectively address the issue of overcrowding in prisons and children living in prison with their families", - "values": [ - "4 - General action" - ] - }, - { - "text": "Abolish the death penalty for all crimes and ratify the Second Optional Protocol to the International Covenant on Civil and Political Rights", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Ensure that Komnas Perempuan is in conformity with the Principles relating to the status of national institutions for the promotion and protection of human rights (the Paris Principles)", - "values": [ - "4 - General action" - ] - }, - { - "text": "Impose an immediate moratorium on the death penalty with a view of a complete abolition of capital punishment as outlined in the National Human Rights Action Plan", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Use the advantage of its matrilineal society to improve women's access to power, especially in relation to land issues, raise the social standing of women and girls, increase access to safe sanitary facilities and encourage the rearing of confident boys and men", - "values": [ - "4 - General action" - ] - }, - { - "text": "Protect victims by defining hate crimes as crimes under criminal laws ", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Continue and step up its efforts in the ratification of or accession to the Convention against Torture", - "values": [ - "4 - General action" - ] - }, - { - "text": "Put a decisive end to the practice of female genital mutilation", - "values": [ - "4 - General action" - ] - }, - { - "text": "Strengthen the rule of law and good governance as vital conditions for better protecting and promoting human rights and freedoms", - "values": [ - "4 - General action" - ] - }, - { - "text": "Strengthen efforts to combat early and forced marriages ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Combat all manifestations of religious hatred within Czech society", - "values": [ - "4 - General action" - ] - }, - { - "text": "Adopt appropriate measures to ensure equal enjoyment of the right to freedom of religion or belief ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Implement legal measures to limit the government's ability to deny an organization's license for political, religious, or arbitrary reasons and to not unnecessarily restrict the ability of Algerian NGOs to receive funding from foreign partners ", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Enact the Affirmative Action Bill promoting women in governance and decision-making positions", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Do not prosecute those arrested for terrorist crimes or any other crime in exceptional tribunals or jurisdictions, but bring them to judicial instances legally established, with the protection of due process and under all the guarantees of the American Constitution ", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Establish a specific budget line to address access to drinking water and sanitation through effective interministerial coordination and enactment of laws which strengthen monitoring environment in this regard", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Increase efforts to ensure the inclusion of children with disabilities in society, with special emphasis on access to education", - "values": [ - "4 - General action" - ] - }, - { - "text": "Take necessary measures to create an independent mechanism to monitor the situation of human rights in conformity with the Paris Principles", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Continue to take innovative measures to ensure that its development policies permit the full enjoyment of economic, social and cultural rights in the country", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Consider ratification of the Optional Protocol to the Convention against Torture (OP-CAT)", - "values": [ - "3 - Considering action" - ] - }, - { - "text": "Place greater emphasis on providing services for vulnerable, poor and homeless children and strengthen legislation against child pornography ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Extend an open and standing invitation to Special Procedures of the Human Rights Council and respond positively to visits requests issued by the Special Rapporteur on torture and other cruel, inhuman or degrading treatment or punishment, the Special Rapporteur on the sale of children, child prostitution and child pornography and the Special Rapporteur on the right to education", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Repeal section 377 of the Indian Penal Code and ensure that consensual same-sex relations are not criminalized", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Take necessary measures to better combat sexual exploitation of children", - "values": [ - "4 - General action" - ] - }, - { - "text": "Provide better health provisions in prisons ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Take concrete steps in ensuring comprehensive sexuality education for children and young people", - "values": [ - "4 - General action" - ] - }, - { - "text": "Pursue the recommendations outlined in the 2015 State of Human Rights Report, particularly those relating to women, children, people with disabilities and prisoners", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Remove restrictions on accessing internet in the country, which runs counter to the criteria of the ICCPR and the principle of proportionality", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Adopt legislation to ensure that human trafficking is prohibited under its Criminal Code ", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Intensify its efforts to combat discrimination on the basis of sexual orientation and gender identity", - "values": [ - "4 - General action" - ] - }, - { - "text": "Thoroughly investigate all forms of human rights violations particularly of those who were arrested in the course of police operations.", - "values": [ - "4 - General action" - ] - }, - { - "text": "Fully implement the constitutional provisions for the protection of the rights of the child in line with international standards, also in order to further reduce the practices of child, early and forced marriage", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Continue realizing the necessary efforts to eradicate all forms of discrimination, through the implementation of commitments it undertook with CERD ", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Continue measures to close gaps in birth and civil registration", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Increase efforts to tackle poverty and give its attention to the most vulnerable groups in society, including indigenous groups.", - "values": [ - "4 - General action" - ] - }, - { - "text": "Ensure that measures are taken to expedite the enactment of the Gender Equality Bill, the Deceased Estates Bill and the Marriage, Divorce and Family Relations Bill", - "values": [ - "4 - General action" - ] - }, - { - "text": "Complete the process of bringing the national human rights institution into compliance with the Paris Principles and allocating it the adequate resources", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Extend an open invitation to the Special Procedures and respond favourably to pending requests", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Sri Lanka will also work with Member States and relevant United Nations bodies to assist the Office of the High Commissioner for Human Rights to formulate proposals for treaty body reforms, with a view to making the treaty body system more effective and in line with present-day requirements of Member States.", - "values": [ - "4 - General action" - ] - }, - { - "text": "Continue implementing programs that guarantee the success of strategies aimed at achieving quality basic education and a reduction of child and maternal mortality ", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Consider taking measures to implement CRPD, including harmonizing domestic legislation with the Convention and promoting public policies to guarantee that persons with disabilities enjoy all their rights on equal conditions", - "values": [ - "3 - Considering action" - ] - }, - { - "text": "Implement the Constitutional Court order of May 2008 in relation to gender-based violence and, in particular, provide human rights protection for women victims of forced displacement, increase measures to prevent sexual violence and take measures to ensure that those who use sexual violence are investigated and punished.", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Investigate all allegations of the use of excessive force, including killings, by law enforcement agents and ensure that they receive training on the appropriate use of force so as to prevent unnecessary causalities ", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Progressively reduce the number of offences liable to death penalty and consider subsequent measures towards its complete abolition ", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Withdraw the restrictions placed upon the freedoms of opinion, expression and information and immediately release the estimated 2,100 political prisoners and prisoners of conscience ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Speed up efforts to ratify CRPD and its Optional Protocol (OP-CRPD)", - "values": [ - "4 - General action" - ] - }, - { - "text": "Strengthen cooperation with the special procedures of the Human Rights Council by responding positively to the pending visit requests and eventually consider extending a standing invitation to all the special procedures mandate holders", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Continue its efforts to raise human rights awareness, and provide human rights education and training for the relevant Government officials.", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Adopt a law guaranteeing media freedom", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Increase the focus, targeted efforts and effective measures regarding eliminating discrimination, and to make further efforts and measures to promote the rights of minorities,inter alia, ethnic minorities.", - "values": [ - "4 - General action" - ] - }, - { - "text": "Further enhance its efforts in social protection and security for people living in poverty, such as considering formulating the necessary poverty alleviation and homelessness strategies ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Amend the Criminal Code in order to for it to contain a specific provision stating that a child victim of prostitution should not be prosecuted and criminalizing the offences of offering, obtaining and providing a child for prostitution ", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Eventually consider extending a standing invitation to all special procedures mandate holders", - "values": [ - "3 - Considering action" - ] - }, - { - "text": "Spare no efforts and resources to provide girls and adolescents of reproductive health and social services to address the problem of teenage pregnancies", - "values": [ - "4 - General action" - ] - }, - { - "text": "Strengthen the legal protection for migrant workers to eliminate cases of abuse and exploitation", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Protect small-scale farming in the country and implement plans designed to preserve it", - "values": [ - "4 - General action" - ] - }, - { - "text": "Persist with its noteworthy efforts to combat trafficking through national and international collaboration ", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Take appropriate measures to eliminate the excessive use of force by the law enforcement officers. We refer to the case of killing the Kazakh national, Kirill Denyakin, by a United States police officer in 2011 in Virginia", - "values": [ - "4 - General action" - ] - }, - { - "text": "Consider adhering to the optional protocol to CEDAW.", - "values": [ - "3 - Considering action" - ] - }, - { - "text": "Call for the support from the international community for the efforts aimed at combating the AIDS pandemic by ensuring its capacity-building ", - "values": [ - "1 - Minimal action" - ] - }, - { - "text": "Take all measures necessary to reduce the homicide rate, especially by allocating substantial resources for strengthening the national civil police and for reforming the justice system to ensure the prosecution of those committing homicide", - "values": [ - "4 - General action" - ] - }, - { - "text": "Ensure a participatory and inclusive process with civil society, including NGOs who may be critical of the government's efforts, in the follow up of UPR Recommendations", - "values": [ - "4 - General action" - ] - }, - { - "text": "Continue efforts to combat discrimination against women and eliminate all forms of violence against them, in particular domestic violence", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Ensure the full exercise of the right to freedom of expression, association and peaceful assembly and take steps to create a safe environment for human rights defenders and journalists", - "values": [ - "4 - General action" - ] - }, - { - "text": "Grant access, as a matter of priority, to the Special Rapporteur on the situation of human rights in DPRK ", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Further pursue efforts aimed at strengthening the protection of the rights of women and children through further development of legislation and mechanisms in this field ", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "The delegation reiterated that torture was a subject of serious concern in Mongolia and acceding to the Optional Protocol to the Convention against Torture and Other Cruel, Inhuman or Degrading Treatment or Punishment in 2011 was one of many efforts by the Government to abolish all torture cases in the country. There were a total of 14 cases of torture recorded, and as of 2014 two cases had been addressed. Furthermore, the delegation reiterated Mongolia's commitment to incorporating the subject of torture in the educational programme curricular. This provision of torture had already been included for law enforcement officers, however, the curricular for prosecutors should also include the subject of torture.", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Continue its fruitful cooperation with the United Nations mechanisms, in particular those related to human rights", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Amend the Anti-Discrimination Act to ensure that all grounds of discrimination are subject to prohibition ", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Fight impunity and hold all officers and persons acting on their behalf accountable for acts of torture and harassment of civilians", - "values": [ - "4 - General action" - ] - }, - { - "text": "Erase the criminal records of all political prisoners and unconditionally release them under a genuine amnesty ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Increase international cooperation devoted to protecting the rights of the child, of women and of migrants workers ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Continue efforts towards gender equality, including ensuring effective review and control by domestic civil courts of inheritance and family matters determined by religious bodies for Muslim minority women in Thrace", - "values": [ - "4 - General action" - ] - }, - { - "text": "Further strengthen the independence of the judiciary from the executive", - "values": [ - "4 - General action" - ] - }, - { - "text": "Continue its programme on human rights education and public awareness-raising ", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Provide sufficient resources and capacity building for the Citizens Relations Unit to address dangers of a heavy military presence on the streets designed to curb organised crime", - "values": [ - "4 - General action" - ] - }, - { - "text": "Reassess media legislation provisions and guarantee freedom of expression ", - "values": [ - "3 - Considering action" - ] - }, - { - "text": "Ensure that children captured by the Forces armées de la République démocratique du Congo are treated primarily as victims, that they have access to justice and that their reintegration into their communities is facilitated", - "values": [ - "4 - General action" - ] - }, - { - "text": "Conduct thorough investigation of cases of the use of torture and other forms of cruel treatment, in particular cases of violence against women in the penitentiary system ", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Draw up a programme to ensure the full enjoyment of human rights by persons living with albinism", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Consider establishing a National Human Rights Institution in conformity with the Paris Principles", - "values": [ - "3 - Considering action" - ] - }, - { - "text": "Take into consideration the provisions of HRC resolution A/HRC/RES/13/27 relating to sport and racism, when preparing and organizing the 2014 football World Cup and the 2016 Olympic Games, in order to promote understanding, tolerance and peace and strengthen the efforts in the struggle against racism, racial discrimination, xenophobia and related intolerance ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Further enhance measures, in cooperation with the international community, to protect and promote the rights of the child, including through strengthening the educational system and the provision of adequate food, housing and health services", - "values": [ - "4 - General action" - ] - }, - { - "text": "Take measures to ensure that members of the political opposition are able to express their views freely, and are protected against intimidation and violence, including during peaceful demonstrations", - "values": [ - "4 - General action" - ] - }, - { - "text": "Abrogate the domestic legislative and regulatory provisions that discriminate against women and children", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Continue reform of the criminal justice system, including ensuring that all detainees are either charged with recognizable criminal offences and tried in accordance with international standards for fair trial, or immediately released ", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Continue to promote women\u2019s rights, especially in rural areas", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Pursue efforts to increase women's representation and leadership in the decision making bodies both at the political and economic levels", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Ratify conventions on stateless persons ", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Sign the Optional Protocols to the Convention on the Rights of the Child", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Ratify the CPED ", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Continue to incorporate CEDAW principles into its domestic legislation.", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Provide the national human rights institution with sufficient resources to carry out its mandate effectively and independently, including the promotion and protection of economic, social and cultural rights", - "values": [ - "4 - General action" - ] - }, - { - "text": "Take additional measures in combating racism, racial discrimination and xenophobia and fully implement the applicable law", - "values": [ - "4 - General action" - ] - }, - { - "text": "Continue its efforts directed towards the fight against trafficking in persons", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Give consideration to full abolition of death penalty in all cases, withdraw provisions making the death penalty mandatory, and consider ratification of the Second Optional Protocol to the International Covenant on Civil and Political Rights ", - "values": [ - "3 - Considering action" - ] - }, - { - "text": "Continue its efforts of raising awareness on human rights issues among its population", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Continue its positive measures in combatting domestic violence, including by ensuring effective investigation of domestic violence cases, bringing the perpetrators to justice and providing victims with the necessary assistance and protection", - "values": [ - "4 - General action" - ] - }, - { - "text": "Guarantee respect for the rights of the opposition, in particular freedom of assembly and demonstration, the freedom of the press and the media, by making the necessary corrections to the Constitution, the electoral commission, the status of the parties, as well as to the legal framework on the maintenance of public order", - "values": [ - "4 - General action" - ] - }, - { - "text": "Review the legislative framework on torture and cruel, inhuman and degrading treatment, and the resources of the Ombudsman office so as to ensure that, as the national preventive mechanism, it can carry out its mandate in an effective and independent manner", - "values": [ - "3 - Considering action" - ] - }, - { - "text": "Enhance the promotion and protection of the rights of women and girls, including through the elimination of violence against them", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Ratify the International Labour Organization Indigenous and Tribal Peoples Convention, 1989 (No. 169)", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Pursue efforts in human rights related areas, in particular legal review process, female genital mutilation and corporal punishment", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Adopt and implement efficiently a comprehensive legislation on combating violence against women", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Ensure the availability of safe abortions, at a minimum, in cases where the life or health of the pregnant woman or girl is at risk, and in cases where the pregnancy is the result of rape", - "values": [ - "4 - General action" - ] - }, - { - "text": "Ratify the International Convention on the Protection of the Rights of All Migrant Workers and Their Families", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Undertake effective measures to protect children, particularly those belonging to religious minorities", - "values": [ - "4 - General action" - ] - }, - { - "text": "Strengthen efforts to fulfil its obligations under the Convention on Elimination of Discrimination against Women, including by adopting and implementing legislation prohibiting female genital mutilation ", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Continue cooperating with treaty monitoring bodies regarding follow-up and implementation of its treaty obligations", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Adopt a national strategy to combat all forms of violence against women and girls ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Assign resources to the Judicial Power that facilitate access to justice, particularly in rural areas", - "values": [ - "4 - General action" - ] - }, - { - "text": "Review legislation to put an end to trials of civilians by military courts. ", - "values": [ - "3 - Considering action" - ] - }, - { - "text": "Guarantee the right to freedom of expression both offline and online, and bring Decree 72 into line with international human rights obligations ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Take steps toward accession to ILO Convention 189", - "values": [ - "4 - General action" - ] - }, - { - "text": "Conduct an independent inquiry into all suspected cases of enforced disappearances of human rights defenders and hold accountable those responsible", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Include domestic workers in the new draft labour law for the private sector, and ensure comprehensive protection, including a weekly rest day, timely payment of wages in full and limits to working hours ", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Consider undertaking a national debate with a view to assessing the possibility of establishing a moratorium on the application of the death penalty", - "values": [ - "3 - Considering action" - ] - }, - { - "text": "Implement necessary policies and programmes to address the issues of ill treatment of children, including sexual abuse, and child prostitution ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Take steps to increase overseas development assistance to 0.7 per cent of gross domestic product", - "values": [ - "4 - General action" - ] - }, - { - "text": "Step up its efforts to further reduce poverty, particularly in rural areas ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Treat appropriately all the refugees, migrants and asylum seekers who have reached the Australian shores, to effectively safeguard their human rights", - "values": [ - "4 - General action" - ] - }, - { - "text": "Continue organizing awareness educational courses on human rights, including training on equality between women and men, and on women's rights", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Abolish the death penalty in those states where it is still used", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Consider acceding to the Optional Protocol to the Convention on the Rights of Persons with Disabilities", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Establish an independent national human rights institution in compliance with the Paris Principles in order to further strengthen and institutionalize the government's policies and strategies", - "values": [ - "4 - General action" - ] - }, - { - "text": "Ratify ICESCR, ICERD, ICCPR and CAT ", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Establish effective measures to prevent mistreatment in detention centres and prisons, for example, through human rights training programmes for members of the police", - "values": [ - "4 - General action" - ] - }, - { - "text": "Through its membership of the Human Rights Council, the Libyan Arab Jamahiriya will seek to enhance the Council's efficiency in the interest of working in a transparent, non-selective and non-politicized manner to promote and protect human rights the world over, in accordance with relevant international conventions and instruments. ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Legislate against racial profiling and strengthen its efforts to promote the humane treatment of migrants and people of non-Irish origin by law enforcement officers ", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "That CEDAW be incorporated into domestic law and that efforts are also directed towards the need for the passing of all other pending bills that affect the women in Malawi ", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Organize the work for the adoption of rigorous measures that will contribute to improving the country's legislation in line with international obligations in the field of human rights", - "values": [ - "4 - General action" - ] - }, - { - "text": "Adopt legislation on abortion that is in line with its international human rights obligations, taking into account indicators such as medical risks, rape, incest and ensure improved access to appropriate methods of contraception", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Implement the Council of Europe Convention on Preventing and Combating Violence against Women and Domestic Violence in order to provide improved protection and assistance to women and children that have become victims of violence", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Collect and generate disaggregated data on actual manifestations of racism and discrimination ", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "While recognizing economic, social and cultural measures, strengthen efforts in ensuring equal access to health-care and social services", - "values": [ - "4 - General action" - ] - }, - { - "text": "Carry out reforms to ensure equality for women and prevent their discrimination in law and practice", - "values": [ - "4 - General action" - ] - }, - { - "text": "Continue with measures and programmes aimed at increasing the enjoyment of economic, social and cultural rights of its people ", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Consider taking measures to implement its international commitments pertaining to the rights of persons with disabilities and, in particular, take appropriate measures to address the issue of accessibility ", - "values": [ - "3 - Considering action" - ] - }, - { - "text": "Redouble efforts to reinforce national institutions and create a proper framework for the full exercise of human rights and international humanitarian law ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Introduce legislation explicitly prohibiting corporal punishment and promote alternative, non-violent forms of discipline", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Repeal article 326 of the penal code, which allows perpetrators of the rape of minors to escape justice by marrying their victims, and amend the family code in order to grant women the same status and legal capacity as men", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Ensure full implementation of its national plans against domestic and gender-based violence to effectively reduce social acceptance of violence against women, including domestic violence, promote equality between women and men, eliminate stereotypes and take measures to raise awareness of existing mechanisms to prevent and combat domestic violence, including by ensuring thorough investigation and prosecution of all acts of violence against women ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Carry out additional prison facility improvements, and invite independent human rights observers to monitor conditions within the prisons ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Strengthen the National Human Rights Institution in order to ensure its independence and effectiveness in accordance with the Paris Principles", - "values": [ - "4 - General action" - ] - }, - { - "text": "Continue to strengthen the effective implementation of its legislation on the rights of women ", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Place a moratorium on the death penalty with a view to its abolition", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Further promote education and training in the area of human rights ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Continue to take measures to combat racial discrimination", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Enact legislation that explicitly protects LGBT persons from discrimination and ensure that laws that contain discriminatory provisions against LGBT persons are amended", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Ratify the Optional Protocol to the Convention on the Rights of the Child on the sale of children, child prostitution and child pornography and the Optional Protocol to the Convention on the Rights of the Child on the involvement of children in armed conflict ", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Continue progress in protecting and promoting the human rights of indigenous people ", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Harmonize the work of charitable organizations with the International Convention for the Suppression of the Financing of Terrorism ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Speed up the process to explore possible solutions for mother-tongue schooling, and develop an adequate strategy to lower the failure rate before the next UPR cycle", - "values": [ - "4 - General action" - ] - }, - { - "text": "Ratify the Convention on the Rights of Persons with Disabilities and its Optional Protocol ", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Completely stop deportation of undocumented migrant children enrolled in schools and their detention after deportation orders", - "values": [ - "3 - Considering action" - ] - }, - { - "text": "Combat more effectively and decisively prejudices such as racism, racial discrimination, xenophobia and other related forms of intolerance", - "values": [ - "4 - General action" - ] - }, - { - "text": "Establish a national human rights institution that is guaranteed broad competences, as well as institutional and financial independence", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Enhance efforts to fight terrorism and continue raising awareness to fight against extremism", - "values": [ - "4 - General action" - ] - }, - { - "text": "Take the necessary measures to effectively regulate the acquisition and possession of firearms", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Consider investing further efforts in developing a foster care system for children without parental care and for children with disabilities", - "values": [ - "3 - Considering action" - ] - }, - { - "text": "Eliminate all laws and practices that discriminate against women and promote equal treatment of girls and boys", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Consider the possibility to conduct a mid-term evaluation of the Action Plan on the rights of the child", - "values": [ - "3 - Considering action" - ] - }, - { - "text": "Intensify efforts so that children with disabilities have sufficient access to education and health facilities ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Seek assistance from international community to face its challenges ", - "values": [ - "1 - Minimal action" - ] - }, - { - "text": "Expand media freedoms across print, online and, in particular, broadcast platforms, notably by ending its ban on foreign broadcasts on FM radio frequencies and eliminating new restrictions on the broadcast of foreign language television programs", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Continue adopting policies and measures to promote dialogue and tolerance among religions", - "values": [ - "4 - General action" - ] - }, - { - "text": "Adopt comprehensive national legislation against discrimination", - "values": [ - "4 - General action" - ] - }, - { - "text": "Amend all laws infringing on press freedom, in particular the Statistics Act and the Cyber Crimes Act", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Implement a zero tolerance policy to eradicate all forms of sexual and domestic violence against women ", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Strengthen the judiciary in order to end the implementation of local customary law and a strategy to fight against impunity in the acting of militias and armed groups ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Considers the adoption of a specific law for domestic violence, containing both criminal and civil provisions ", - "values": [ - "3 - Considering action" - ] - }, - { - "text": "Allocate the necessary means to assess and measure the scope of the phenomenon of corruption in the country", - "values": [ - "4 - General action" - ] - }, - { - "text": "Ratify promptly CPED ", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Reform the laws that hamper the exercise of freedom of expression to ensure that they are in line with international human rights norms", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Pursue its efforts in combating racism, in particular to guarantee an effective follow up to the outcome of the Durban Conference ", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Adopt effective measures in law and practice to eradicate all forms of discrimination, in particular on the basis of religion or belief", - "values": [ - "4 - General action" - ] - }, - { - "text": "Continue its efforts to implement the strategic plan to combat trafficking in persons", - "values": [ - "3 - Considering action" - ] - }, - { - "text": "Ratify as soon as possible the Optional Protocol to the Convention on Torture and Other Cruel, Inhumane or Degrading Treatment or Punishment, and create an independent national mechanism for monitoring detention centres ", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "End restrictions on the right to freedom of expression and related rights, as well as on movement", - "values": [ - "4 - General action" - ] - }, - { - "text": "Further strengthen the commitment to the peace and reconciliation process, also in order to guarantee a more effective protection of human rights and respect for the rule of law", - "values": [ - "4 - General action" - ] - }, - { - "text": "Continue efforts to ensure mutual understanding and peaceful interaction between all segments of Lebanese society", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Continue its efforts towards reducing poverty through continuing setting up programs aimed at this purpose", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "As the nominal state of emergency has unintended consequences for government accountability, review it and produce a timetable on how it might be ended ", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "More effectively cooperate with the United Nations mechanisms by extending a standing invitation to the special procedures, by responding to the their visit and information requests, and by regularly submitting its reports to the treaty bodies ", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Continue to guarantee the rights of ethnic minorities on an equal footing and in accordance with the law", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Reinforce women's rights within the labour market.", - "values": [ - "4 - General action" - ] - }, - { - "text": "Ratify the Second Optional Protocol to ICCPR, designed to abolish the death penalty", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "In line with its previously accepted UPR recommendation adopt legislation prohibiting FGM and continue to strengthen awareness raising on this issue ", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Extend a standing invitation to the Human Rights Council special procedures", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Remove all restrictions on girls' access to education ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Accede to the Optional Protocol to the Convention on the Rights of the Child on a communications procedure", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Provide food, water and health support not only in the direct aftermath of natural disasters, but also in the reconstruction phase, with special consideration given for women and children and other particularly vulnerable groups", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Expedite the development of the National Human Rights Action Plan", - "values": [ - "4 - General action" - ] - }, - { - "text": "Undertake the measures necessary to increase the statistical capacity on the situation of children in the country, to facilitate the development of adequate policies ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Activate the policies of integration of Travellers and Roma in all social, economic, cultural, political, educational and other spheres", - "values": [ - "4 - General action" - ] - }, - { - "text": "Take concrete measures to prevent cases of violence against women, including the implementation of awareness-raising campaigns on the rights of women and girls", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Ban early and/or forced marriages", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Intensify its efforts to counter the widespread practice of forced recruitment of children by non-state armed groups, and ensure that all demobilized children are given protection, reintegration and rehabilitation assistance ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Immediately stop the blockade on the Gaza Strip", - "values": [ - "4 - General action" - ] - }, - { - "text": "Include explicit references to sexual orientation as a protected category against discrimination in the existing laws on labour and employment as well as in the legislation on hate speech and hate crimes.", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Take measures to ensure that its national legislation is fully aligned with the international human rights obligations undertaken, including laws affecting the realisation of the freedom of expression and assembly ", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Redouble efforts aimed at reducing the high incidence of female genital mutilation and other practices that are harmful and discriminate against women", - "values": [ - "4 - General action" - ] - }, - { - "text": "Establish a mechanism for the periodic and independent review of the necessity and the proportionality of measures taken in derogation from Ukraine\u2019s obligations under human rights conventions of the United Nations and the Council of Europe", - "values": [ - "4 - General action" - ] - }, - { - "text": "Fully implement the 2002 legislation banning female genital mutilation and enhance awareness raising campaigns so as to combat this practice and other traditions harmful to women's health and dignity. ", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Take further measures to redress inequality in job opportunities and social welfare", - "values": [ - "4 - General action" - ] - }, - { - "text": "Implement targeted, sustainable and effective measures to reduce the alarmingly high rate of children suffering from chronic malnutrition, especially among the indigenous population, where eight of ten children are affected, according to UNICEF", - "values": [ - "4 - General action" - ] - }, - { - "text": "Remove from legislation the mandatory nature of the capital punishment for a number of crimes", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Engage the civil society in the UPR follow-up process", - "values": [ - "4 - General action" - ] - }, - { - "text": "Communicate on a regular basis to the Commission on Human Rights of the Philippines a list of all detainees indicating their place of detention ", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Ensure continuous reporting to the public on the status of investigations of cases of arbitrary detention and of extrajudicial killings, and ensure the provision of adequate resources and independent administrative structures for the justice system ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Take effective measures to implement the National Plan of Action (NPA) adopted in 1996, to combat and prevent Child Prostitution, Child Pornography and also trafficking of children for commercial sexual exploitation", - "values": [ - "4 - General action" - ] - }, - { - "text": "Continue to prioritize its work with the ILO on a Joint Action Plan on Child Soldiers to progress the implementation of Resolution 1612", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Consider the possibility of acceding to the International Convention on the Protection of the Rights of All Migrant Workers and Members of their Families (ICRMW)", - "values": [ - "3 - Considering action" - ] - }, - { - "text": "Strengthen protection for journalists, which is essential to the full respect of fundamental freedoms, in particular by rapidly realizing the programme of protection for journalists, for which much effort has already been made", - "values": [ - "4 - General action" - ] - }, - { - "text": "Attach further importance to the culture of human rights through the educational and mass media institutions", - "values": [ - "4 - General action" - ] - }, - { - "text": "Step up the necessary processes for the creation of the National Council for Human Rights ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Continue with the judicial reform process, including the implementation of measures to strengthen institutions and guarantee their independence ", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Continue to combat discrimination and violence against women.", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Consider the accession to the Second Optional Protocol to the ICCPR, aiming at the abolition of the death penalty", - "values": [ - "3 - Considering action" - ] - }, - { - "text": "Clearly prohibit all corporal punishment of children in all settings, including at home, and make awareness-raising campaigns to increase public knowledge about its harmful effects", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Adopt further measures to ensure that any act of threat or reprisal against human rights defenders is effectively investigated, prosecuted and punished", - "values": [ - "4 - General action" - ] - }, - { - "text": "Prioritize the implementation of a comprehensive approach to combat all forms of violence against women, in line with what the Committee on the Elimination of Discrimination against Women recommended ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Ensure that all laws, regulations, policies and practices are consistent with the Convention on the Rights of Persons with Disabilities and with rights to equality generally, as part of, or in addition to, the multitrack strategy referred to in its report ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Undertake all necessary measures to eliminate discrimination and abuses against women and girls", - "values": [ - "4 - General action" - ] - }, - { - "text": "Adopt as soon as possible legislation criminalising acts of torture and raise awareness of law enforcement officials regarding the absolute prohibition of the use of torture and other inhumane and degrading treatment ", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Redouble its efforts to significantly reduce the rates of neonatal and maternal mortality, harmful practices, such as female genital mutilation, child marriage and forced marriage", - "values": [ - "4 - General action" - ] - }, - { - "text": "Reform the judiciary so it can operate free from direct influence, oversight, pressure or interference of the executive branch of the Government", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Take urgent measures for the investigation and punishment of acts of hate and discrimination towards migrants, refugees and minorities, and strengthen its awareness-raising programmes for the population in general and for public officials", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Take appropriate measures to put an end to all forms of discrimination against women and girls, as well as to widespread sexual violence, and also to the recruitment and use of children in conflict", - "values": [ - "4 - General action" - ] - }, - { - "text": "Establish commissions of inquiry, and investigate and prosecute those who commit torture and violate human rights", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Take measures to reduce the detention time for foreigners under expulsion order as much as possible ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Establish a national human rights institution in accordance with the Paris Principles to monitor and promote human rights, including its mandate to receive and take actions on individual complaints ", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Grant women with civil and political rights, the right to health and the right to education without discrimination", - "values": [ - "4 - General action" - ] - }, - { - "text": "Enact the draft bill on Social and Legal Protection against Domestic Violence and develop a national plan to prevent and eradicate violence against women ", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Continue providing the means necessary to avoid pay differences based on gender ", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Continue to incorporate CEDAW principles into its domestic legislation. ", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Continue efforts to eradicate extreme poverty", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Establish a mechanism for the protection and support of victims aimed to enhance assistance to victims and witnesses", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Include a gender perspective in the review follow-up process in a systematic and continuous manner.", - "values": [ - "4 - General action" - ] - }, - { - "text": "Further strengthen the ongoing policies in the field of education", - "values": [ - "4 - General action" - ] - }, - { - "text": "Share its experiences of the UPR with other Pacific Island States.", - "values": [ - "1 - Minimal action" - ] - }, - { - "text": "Review all laws and practices that discriminate on the basis of gender and bring them into line with international law and standards and take steps to further improve the protection of women who are subjected to violence, including by amending the Criminal Code to ensure the criminalization of marital rape", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Extend the scope of health insurance coverage for poor families ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Continue to take measures to advance the empowerment of women without any discrimination", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Establish as soon as possible a moratorium on the death penalty with a view to its complete abolition ", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Further intensify efforts to promote gender equality, to combat sexual harassment and gender-based violence through a comprehensive legislative reform and the adoption of a national strategy, and recognize the important work and competence of NGOs in this field", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Stop the intimidation, threatening and arrest of human rights defenders and journalists and release political prisoners who are still in detention", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Expand its ongoing policies and programmes in order to consolidate the realization of a Bolivia that is plurinational and based on equality and social justice for all", - "values": [ - "4 - General action" - ] - }, - { - "text": "Make further efforts to address discrimination against women with a view to eliminating obstacles to the achievement of gender equality", - "values": [ - "4 - General action" - ] - }, - { - "text": "Work together with humanitarian and development actors to improve the living conditions and safety of IDPs, and strengthen the protection of women and girls from rape and domestic violence ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Continue close dialogue with the United Nations human rights mechanisms, and OHCHR.", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Adopt and implement comprehensive anti-discrimination legislation which prohibits discrimination on all grounds, including on the basis of race, ethnicity, sexual orientation and gender identity", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Continue its support to the Office of the Children's Rights Ombudsman", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Pay particular attention to seek even more effective results in the implementation of policies addressing the following issues: protection of the rights and promotion of the socio-economic situation of indigenous peoples and Afro-descendent Quilombo communities, access to justice and combating impunity, extra-judicial executions, torture in detention and, protection of human rights defenders ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Take concrete measures to reduce the gender pay gap", - "values": [ - "4 - General action" - ] - }, - { - "text": "Ensure the realization, without discrimination, of the right to education for all", - "values": [ - "4 - General action" - ] - }, - { - "text": "Further strengthen the programmes aimed at preventing crime and ensuring the security of citizens", - "values": [ - "4 - General action" - ] - }, - { - "text": "Adopt the necessary legal measures to ensure that the death penalty is not a applied as a sentence in judgments and consider acceding to the Second Optional Protocol to the International Covenant on Civil and Political Rights", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "The Government of Canada commits to enhancing mechanisms to promote awareness and understanding of international obligations within the federal public service.", - "values": [ - "4 - General action" - ] - }, - { - "text": "Increase its efforts to combat racial discrimination against Muslims and foster dialogue with Muslim communities", - "values": [ - "4 - General action" - ] - }, - { - "text": "Ratify the Convention against Torture and Other Cruel, Inhuman or Degrading Treatment of Punishment and its Optional Protocol ", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Continue efforts to protect economic and social rights through the implementation of programmes to fight poverty, in the framework of the national human development initiative", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Further improve the protection of women and girls against violence and discrimination ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Further advance access to the right to freedom of expression and freedom of the press by ensuring current national press legislation evolves in conformity with international human rights standards", - "values": [ - "4 - General action" - ] - }, - { - "text": "Take concrete measures aimed at facilitating access to the labour market to persons with disabilities, notably the adoption of a law in this regard", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Move forward and finalize the draft national children policy", - "values": [ - "4 - General action" - ] - }, - { - "text": "Raise the minimum age of criminal responsibility to comply with international standards", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Take all measures to respect freedom of expression", - "values": [ - "4 - General action" - ] - }, - { - "text": "Strengthen efforts to ensure that children and adolescents throughout the country enjoy equal access to social rights", - "values": [ - "4 - General action" - ] - }, - { - "text": "Continue to address the persisting gender inequality in the country.", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Step up the efforts to abolish death penalty", - "values": [ - "4 - General action" - ] - }, - { - "text": "Declare and implement a moratorium on the death penalty ", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Allocate more resources to the policies in favour of children ", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Implement the regulations of the Act of 8 May 2009 on assistance to and the protection and security of victims of human trafficking", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Refrain from passing discriminatory legislation that are based on bias against foreigners and refugees", - "values": [ - "4 - General action" - ] - }, - { - "text": "Recognizing the work of the National Council for Disability Matters, intensify necessary measures to improve specialized services for persons with disabilities, in particular in disadvantaged areas - develop reliable statistics on persons with disabilities and their access to basic services ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Expedite the process of ratification of the amendment to article 8 of the International Convention on the Elimination of All Forms of Racial Discrimination", - "values": [ - "4 - General action" - ] - }, - { - "text": "Establish a coordinated general strategy on gender issues in all public institutions", - "values": [ - "4 - General action" - ] - }, - { - "text": "Sign and ratify also remaining core international human rights instruments (CAT)", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Pursue efforts to strengthen legislation and public policies aimed at eradicating violence against women", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Improve the educational system, particularly by enhancing access to marginalized groups and those living in remote areas", - "values": [ - "4 - General action" - ] - }, - { - "text": "Amend the Federal Anti-Discrimination Law to explicitly provide protection against discrimination in public schooling and to establish independent body to deal with the complaints received in this regard ", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Take further steps to effectively implement the Justice Sector Strategic Plan, including through intensifying the network of courts in municipalities", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Build capacities and comply with international commitments ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Strengthen accountability and integrity standards within the judiciary by ensuring merit-based appointments and promoting career development", - "values": [ - "4 - General action" - ] - }, - { - "text": "Continue to strengthen human rights institutions to ensure the continued promotion and protection of human rights throughout society ", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Take steps towards the abolition of the death penalty, while commuting the existing sentences to life imprisonment terms", - "values": [ - "4 - General action" - ] - }, - { - "text": "Investigate all cases of racism, xenophobia and Islamophobia, and ensure that tolerance and intercultural understanding are promoted and conveyed to the public", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Strengthen its efforts in protecting women's rights.", - "values": [ - "4 - General action" - ] - }, - { - "text": "Strengthen its institutional mechanisms for the promotion and efficient protection of human rights by implementing the various international conventions to which it is party and call upon the international community to back it in this endeavour.", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Repeal the legal guardianship system for adult women", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Continue its efforts to provide the necessary assistance for vulnerable groups, particularly persons with disabilities", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Submit its initial report on the implementation of the Convention against Torture", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Continue its fight against discrimination against women ", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Continue its efforts in addressing cases or reports of past incidents of extrajudicial killings, enforced disappearance and torture in the country, including through the EPJUST Programme, the Joint Coordinating Centres on Private Armies, and the National Monitoring Mechanism", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Establish a national human rights institution to provide national coherence to the efforts of promotion and protection of human rights", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Consider the prompt ratification of ILO Convention No. 169 as a means of completing the recognition of the rights of indigenous peoples.", - "values": [ - "3 - Considering action" - ] - }, - { - "text": "Take the necessary steps aimed at revising the relevant legislation with a view to decriminalize abortion within reasonable gestational limits", - "values": [ - "4 - General action" - ] - }, - { - "text": "Maintain its priority to end impunity for perpetrators of all forms of acts of violence against women, whatever their social condition. give more information on progress to prevent such violations", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Improve access to safe drinking water and adequate sanitation facilities", - "values": [ - "4 - General action" - ] - }, - { - "text": "Meet the commitment it has undertaken to cooperate with the International Criminal Court on cases that the Democratic Republic of the Congo government has self-referred to the Court and uphold its treaty obligations by arresting Bosco Ntaganda and transferring him to the International Criminal Court. ", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Provide all necessary assistance in order that the national human rights institution is able to operate at full capacity and continue judicial reforms, including the increased capacity building of judicial institutions", - "values": [ - "4 - General action" - ] - }, - { - "text": "Approve the request for a visit by the Special Rapporteur on the independence of judges and lawyers ", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Continue to ensure the independence of the media and the press", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Continue combating acts of xenophobia against migrants, refugees and asylum-seekers ", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Continue its efforts towards expediting the domestication of its international obligations in the area of human rights into the national legal system ", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Ratify the International Convention for the Protection of All Persons from Enforced Disappearance and the optional protocol to the United Nations Convention against Torture and Other Cruel, Inhuman or Degrading Treatment or Punishment and the Optional Protocol to the Covenant on, Economic, Social and Cultural Rights ", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "In line with Finland's previous recommendation, take concrete and targeted measures to effectively reduce inequalities by reviewing, analysing and modifying policies and programmes on poverty reduction to ensure effective consideration of gender concerns", - "values": [ - "4 - General action" - ] - }, - { - "text": "Continue working against violence against women in line with its national legal framework for equality", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Take appropriate measures to guarantee that lesbians, gays, bisexuals, transgender and intersex persons are not subjected to discrimination, both in law and in practice", - "values": [ - "4 - General action" - ] - }, - { - "text": "Guarantee freedom and independence of the media and ensure that rules regarding media ownership comply with European Union law (no discrimination and no retroactive legislation)", - "values": [ - "4 - General action" - ] - }, - { - "text": "Increase the resources devoted to the prevention of violence against women and of FGM ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Issue a standing invitation to the United Nations mechanisms and procedures ", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Take steps to counter hate speech, including online, through public awareness campaigns", - "values": [ - "4 - General action" - ] - }, - { - "text": "Implement various recommendations made by treaty bodies and special procedures to ensure that security measures adopted in the context of armed violence including the state of emergency the 2005 emergency laws and measures to combat terrorism comply with international human rights law.", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Adopt and implement robust measures aimed at addressing human trafficking ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Share its best practices in the area of combating trafficking in women and children with other countries in contemporary situation ", - "values": [ - "1 - Minimal action" - ] - }, - { - "text": "Enhance cooperation with the relevant United Nation organizations to continue the efforts to reduce maternal and child mortality and improve the access of children to health care ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Consider adhering to the Convention on the Rights of Persons with Disabilities ", - "values": [ - "3 - Considering action" - ] - }, - { - "text": "Continue the actions undertaken with the view to ratifying the ICCPR", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Reduce government influence and control over the internet as part of a broader commitment to freedom of expression ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Accede early to the 1968 Convention on the Non-Applicability of the Statutory Limitations to War Crimes and Crimes Against Humanity, without any reservations that might defeat the purpose and object of that Convention ", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Adopt a law to confirm the official status of the national programme for the protection of human rights defenders ", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Carry out all necessary efforts to continue to align national law with provisions of the Convention on the Elimination of All Forms of Discrimination against Women and of the Convention on the Rights of the Child", - "values": [ - "4 - General action" - ] - }, - { - "text": "Continue strengthening the work of the National Human Rights Council, with the active participation of civil society", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Adopt measures to ensure the protection of religious minorities, including Ahmadis, Christians, Hindus and Sikhs, prevent the abuse of blasphemy legislation, halt forced conversions, and take necessary steps to prevent violence against members of religious minority communities", - "values": [ - "4 - General action" - ] - }, - { - "text": "Abolish the law that legalizes the Sunna", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Continue harmonizing its national legislation with the obligations under ILO Convention No. 169, particularly with respect to the prior consultation of indigenous peoples ", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Continue the efforts aimed at fighting against poverty and discrimination of the most vulnerable groups", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Review the legislation to eliminate provisions that may discriminate against women and girls and harmonize it with the Convention on the Elimination of all Forms of Discrimination against Women", - "values": [ - "3 - Considering action" - ] - }, - { - "text": "Implement the 18 recommendations made by the International Bar Association's Human Rights Institute in its 2008 report "Prosperity Versus Individual Rights" ", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Proceed with the establishment of a national human rights institution in compliance with the Paris Principles and provide it with adequate resources for its efficient functioning", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Take proper action to improve the situation of stateless persons, including by recognizing their civil and political rights", - "values": [ - "4 - General action" - ] - }, - { - "text": "Promote alternative penalties to prison and draw up public policies to foster the rights of persons in prisons ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Continue combating female genital mutilation", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Adopt effective measures for the prevention of any form of racism and discrimination ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Continue to broaden the scope for access to and quality of public education, as well as ensuring equal opportunities and leaving no one behind, from primary through secondary to tertiary level", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Develop a long-term plan to keep health personnel skilled and establish permanent training on this matter", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Implement the United Nations Convention relating to the Status of Refugees and cooperate with the Office of the United Nations High Commissioner for Refugees UNHCR in drafting national refugee legislation ", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Further strengthen national human rights institutions and mechanisms, especially on capacity-building for law enforcement and judicial systems in the fields of child labour, trafficking women and organized crimes ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Further improve good governance and the rule of law in the context of the next Poverty Reduction Programme (PARP) ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Redouble efforts to implement laws and policies countrywide to promote gender equality", - "values": [ - "4 - General action" - ] - }, - { - "text": "Ensure the independent investigation of all allegations of extrajudicial killings and torture ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Ensure that family reunification takes place without undue delay ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Take additional steps to ensure that same-sex couples are not discriminated against.", - "values": [ - "4 - General action" - ] - }, - { - "text": "Approve the national gender policy and put it into practice in order to guarantee, inter alia, the effective implementation of the Domestic Violence Act, the establishment of appropriate and effective coordination mechanisms to ensure effective multisectoral response to sexual and domestic violence and sexual harassment in the workplace and in public life, as well as the explicit prohibition of discrimination against women", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Continue its efforts to harmonize national laws with international treaties ", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Enact and enforce legislation that guarantees comprehensive protection from all forms of violence against women, and that addresses impunity for all perpetrators", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Continue efforts initiated in order to prosecute all perpetrators of serious human rights violations and provide assistance to victims", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Accelerate and follow-up on implementation of the package of reforms as announced by the country's leadership", - "values": [ - "4 - General action" - ] - }, - { - "text": "Continue to work to achieve gender equality in the country ", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Implement policies for the effective combating of domestic violence, including information and awareness-raising programmes to prevent this scourge", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Increase the access to education of children with disability by allocating more resources", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Strengthen national efforts to combat discrimination, xenophobia and racism, in particular discriminatory practices against indigenous people, migrants, refugees and people of African descent", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Continue and complete the signature and ratification process of the various relevant international human rights instruments", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Strengthen efforts to effectively implement and enforce the Family Protection Act and other measures against domestic violence and initiate an awareness-raising campaign against this form of violence", - "values": [ - "4 - General action" - ] - }, - { - "text": "Continue to take measures to fight against poverty ", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Enact a Juvenile Justice Law compliant with international standards, to consolidate the legal framework surrounding the protection of the rights of children and to ensure the proper functioning of a juvenile justice system in the country ", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Take the necessary steps to ratify the Convention on the Rights of Persons with Disabilities (CRPD), the International Convention on the Protection of the Rights of All Migrant Workers and Members of their Families (ICRMW), the Optional Protocol to the Convention on the Elimination of All Forms of Discrimination against Women (OP-CEDAW) and the Optional Protocol to the Convention against Torture and Other Cruel, Inhuman or Degrading Treatment or Punishment (OP-CAT)", - "values": [ - "4 - General action" - ] - }, - { - "text": "Strengthen its efforts to combat the trafficking in and sexual exploitation of women and girls, especially in rural areas, by adopting a comprehensive action plan to address trafficking and sexual exploitation, and to ensure the allocation of human and financial resources for its implementation", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Draw up a comprehensive programme to combat trafficking in persons ", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Include sexual orientation and gender identity in the national legislation on discrimination, and establish policies and initiatives to address discrimination against LGBTI persons", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Continue to carry out reforms in the country in order to fully ensure the protection of human rights and the rule of law in the country, and continue to exchange best practices on combating human trafficking, advancement of women and protection of the rights of the child and family with all United Nations member countries ", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Continue its efforts to seek assistance from the international community for capacity-building and technical assistance in the area of human rights, especially in the strengthening of its National Human Rights Commission ", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Step up its efforts to improve gender empowerment and women\u2019s rights nationally and continue to contribute at regional and global levels", - "values": [ - "4 - General action" - ] - }, - { - "text": "Make efforts towards the ratification of the OP-CAT", - "values": [ - "4 - General action" - ] - }, - { - "text": "Promptly adopt the law in the area of the protection and promotion of the rights of persons with disabilities to enable the requisite legal framework to apply the Convention on the Rights of Persons with Disabilities", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Investigate the excessive use of force by the police and prosecute the responsible, with a view to putting an end to such practices", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Promote, protect and respect the right to freedom of expression, assembly and association in compliance with country's international HR obligations ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Continue with efforts to abolish the practice of placement of children under 3 years of age in institutionalized organized care and further strengthen the system of family foster care as the main alternative to institutionalization", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Limit the cases in which restrictions to free movement are applied to situations that require guaranteeing its security, in accordance with international law, In particular with the International Covenant on Civil and Political Rights, non-discriminative and proportionate to the desired aim.", - "values": [ - "4 - General action" - ] - }, - { - "text": "Continue to implement policies and programmes aimed at improving its human, social and economic development, and call on the international community to provide the requisite technical and financial assistance towards this endeavour ", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Carry out the necessary nation-wide consultations to find an alternative to the death penalty, and, as far as possible, explore the possibility of establishing a moratorium on the capital punishment", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Accede to the Convention of Privileges and Immunities of the ICC and adjust its national legislation with all the obligations emanating from the Rome Statute, including the provisions on the investigation and prosecution of genocide, crimes against humanity and war crimes", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Take strong action to address hate speech and racial discrimination in access to housing, education and employment of ethnic minorities and intensify awareness-raising training for law enforcement officials ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Implement further policies to ensure gender equality throughout society and the promotion of the rights of women and children ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Bring to justice the persons and social institutions for children responsible for 238 reported unaccounted deaths in the period 2000-2010", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Investigate and prosecute those responsible for abductions and forced disappearances and increase awareness of the State security services about these offences", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Implement a strict legislative framework which ensures that evictions and relocations are legal, negotiated and fairly compensated ", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Ensure the effective and full implementation of the law adopted in 2006 to fight domestic violence ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Continue its efforts towards spreading awareness of the culture of human rights in Algerian society", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Continue its efforts in the area of gender equality to eradicate traditional patriarchal stereotypes and gender inequality", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Conduct wide consultations between different partners, in particular the legislative authority, with the view of adopting a family law.", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Bring detention and prison conditions in line with articles 9 and 10 of ICCPR and with the Standard Minimum Rules for the Treatment of Prisoners, making these rules available to the police, the armed forces, prison staff and anyone else responsible for conducting interrogations, as well as to persons deprived of their liberty.", - "values": [ - "4 - General action" - ] - }, - { - "text": "Finalize reforms of the educational system, notably by establishing mandatory schooling for children between 6 and 15 years of age ", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Ratify the OP-CRPD ", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Strengthen measures to address violence against women, including sexual violence, provide help for its victims and hold accountable its perpetrators, while also ensuring effective implementation of the laws prohibiting female genital mutilation at the State level and adopting legislation prohibiting the FGM completely throughout the country ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Accede and fully align its national legislation with the Rome Statute and accede to the Agreement on the Privileges and Immunities of the International Criminal Court", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Put an end to massive and indiscriminate detentions and proceed as soon as possible to free prisoners of conscience and people who have been arbitrarily arrested, and end the use of torture and ill-treatments", - "values": [ - "4 - General action" - ] - }, - { - "text": "Continue to implement the national gender equality policy framework developed in 2012", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Allow for greater humanitarian access to the Ogaden so that organizations such as the International Committee of the Red Cross and United Nations relief agencies can provide assistance to victims of conflict ", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Make case law from Danish courts and administrative organs publicly available and free of charge", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Continue to combat corporal punishment of children in all circumstances", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Step up efforts to provide greater access to education and health ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Take effective measures to combat discrimination on any grounds, including sexual orientation and identity", - "values": [ - "4 - General action" - ] - }, - { - "text": "Invite selected human rights special procedures with mandates of particular interest to Cape Verde to visit the country and make recommendations.", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Create and maintain a safe and enabling environment where members of all political parties and civil society organizations can exercise their rights, including to freedom of assembly in a manner which allows legitimate and peaceful dissent", - "values": [ - "4 - General action" - ] - }, - { - "text": "Seek to overcome obstacles that hinder the implementation of the act on trafficking, and expedite the current process of setting up a standing mechanism to combat trafficking", - "values": [ - "4 - General action" - ] - }, - { - "text": "Take all necessary measures to promote access to clean drinking water for all", - "values": [ - "4 - General action" - ] - }, - { - "text": "Certify that all its policies on the Roma are in line with the ICERD", - "values": [ - "4 - General action" - ] - }, - { - "text": "Ensure that rural women participate in decision-making processes and have full access to education, health services, credit and marketing facilities, land and income-generating projects", - "values": [ - "4 - General action" - ] - }, - { - "text": "Tackle the issue, noted by the Human Rights Committee, that complaints against police officers did not always lead to the imposition of commensurate penalties ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Consider the possibility of ratifying the main human rights international instruments, particularly the International Covenant on Civil and Political Rights and its Optional Protocols, the International Covenant on Economic, Social and Cultural Rights, the Convention against Torture and Other Cruel, Inhuman or Degrading Treatment or Punishment, the International Convention on the Elimination of All Forms of Racial Discrimination, the International Convention on the Elimination of All Forms of Discrimination against Women and its Optional Protocols, and the International Convention for the Protection of All Persons from Enforced Disappearance", - "values": [ - "3 - Considering action" - ] - }, - { - "text": "Give adequate attention to the improvement of the cooperation between penitentiary and judicial bodies.", - "values": [ - "4 - General action" - ] - }, - { - "text": "Continue its efforts to promptly complete the legal procedures to establish a National Preventive Mechanism", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Ratify the Optional Protocol to the Convention against Torture and other Cruel, Inhuman or Degrading Treatment or Punishment (OP-CAT) ", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Accelerate the process of adopting a relevant legislative and regulatory framework for combating racial discrimination", - "values": [ - "4 - General action" - ] - }, - { - "text": "Guarantee that the decree of necessity and urgency that limits the procedural guarantees in deportation proceedings does not restrict the human rights of migrant population", - "values": [ - "4 - General action" - ] - }, - { - "text": "Enact legislation with a view to prohibiting corporal punishment of children in all settings", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Amend laws to explicitly prohibit all forms of human trafficking, with a specific focus on child labour and forced begging", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Adopt and implement the measures necessary to prevent abuses, namely, the ill treatment and abuse of children, including sexual abuse, as referred to by the Committee on the Rights of the Child, and ensure that such abuses are properly prosecuted within a child-friendly judicial procedure, including appropriate reintegration and rehabilitation schemes for victims, regardless of their sex ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Eliminate effectively gender-based discrimination in accessing education and health care, particularly in rural areas and among indigenous communities", - "values": [ - "4 - General action" - ] - }, - { - "text": "Enact legislation and increase awareness-raising prohibiting female genital mutilation", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Continue to work towards abolition of the death penalty and consider adopting an immediate de facto moratorium ", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Increase efforts to improve women's health, in particular access to family planning services, maternal health care and eliminating the practice of female genital mutilation", - "values": [ - "4 - General action" - ] - }, - { - "text": "Take concrete measures with a view to decriminalizing consensual same-sex relations and abolishing any discriminatory legislation against LGBTI people, even if it is not applied in practice", - "values": [ - "4 - General action" - ] - }, - { - "text": "Continue efforts to improve the situation of women and their empowerment", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Take steps to increase its Official Development Assistance to developing countries which now stands at 0.3 per cent of GDP ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Repeal order 3/2015 of the National Council for Peace and Order and ensure that all civilians are tried before a civilian court and granted the right to fair trial in line with Thailand's obligations as a State party to the International Covenant on Civil and Political Rights ", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Adopt the draft law establishing quotas for women in elections, putting them in an advantageous position, as follow-up to paragraphs 108.42, 108.50 and 108.87 of the recommendations from the second cycle", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Amend legislation and regulations in order to ensure universal birth registration for children born in its territory", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Revise laws and policies to recognize and protect the rights of the minorities, including Indigenous People", - "values": [ - "3 - Considering action" - ] - }, - { - "text": "Continue and further expand human rights awareness-raising programmes ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Create a favourable environment for the effective enjoyment of the rights of persons with disabilities ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Take concrete measures to curb incitement to hatred, violence and discrimination through the enactment of legislation, as well as policies and programmes that promote tolerance and intercultural, interracial and interreligious understanding", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Make available the necessary resources to the National Unit to Combat Trafficking in Persons, the National Observatory on Gender Parity, the Human Rights Directorate and the National Human Rights Advisory Council to ensure that they fulfil their important roles", - "values": [ - "4 - General action" - ] - }, - { - "text": "Strengthen further functioning of the State enforcement agencies with the aim of combating criminality in the country, and ensure full and unhampered access to justice for all members of society", - "values": [ - "4 - General action" - ] - }, - { - "text": "Initiate a reform of police custody by considering to reduce its maximum duration to 48 hours, while allowing the presence of a lawyer and making the legal grounds and records of arrest available to the families and the defence ", - "values": [ - "3 - Considering action" - ] - }, - { - "text": "Broaden the promotion of the use of language that is more in accordance with the Convention on the Rights of Persons with Disabilities, in particular continue advancing in the access to information through Braille, sign language, among others", - "values": [ - "4 - General action" - ] - }, - { - "text": "Intensify all programmes to eradicate poverty in order to achieve Millennium Development Goals, with technical and material assistance from partners ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Enact the Prevention and Suppression of Torture and Enforced Disappearance Bill to criminalize torture in accordance with the Convention against Torture and Other Cruel, Inhuman or Degrading Treatment or Punishment", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Implement the recommendations made in 2015 by the Committee on the Elimination of Discrimination against Women", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Consider acceding to the International Covenant on Economic, Social and Cultural Rights ", - "values": [ - "3 - Considering action" - ] - }, - { - "text": "Create accessible complaints mechanisms for reporting sexual and domestic violence, while ensuring that these complaints are thoroughly investigated and the perpetrators prosecuted ", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Ratify the Rome Statue and ensure its full implementation in national legislation ", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Take all the necessary measures to finalize the draft law related to domestic violence and children's rights, and submit it to the Council of Ministers for adoption", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Give serious consideration to ratifying the Convention on the Rights of Persons with Disabilities and enact law or national policy to ensure the protection and care of persons with physical, sensory, intellectual, or mental disabilities ", - "values": [ - "3 - Considering action" - ] - }, - { - "text": "Strengthen the protection of lesbian, gay, bisexual, transgender and intersex people and work towards the full implementation of the current laws", - "values": [ - "4 - General action" - ] - }, - { - "text": "Do everything in the power of Mexico to minimize income inequalities between different social sectors and geographic regions", - "values": [ - "4 - General action" - ] - }, - { - "text": "Take steps to integrate a gender perspective throughout all areas of government, including through the application of gender-based analysis to the development of legislation, policy and programmes\n\n", - "values": [ - "4 - General action" - ] - }, - { - "text": "Amend the Labour Code to extend legal protection to domestic workers equal to that afforded to other workers and reform the visa sponsorship system so that workers can terminate employment without sponsor consent", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Consolidate the de facto moratorium on the use of capital punishment with a view to adopting a legal moratorium.", - "values": [ - "4 - General action" - ] - }, - { - "text": "Continue efforts on adopting the national Plan against Racism and Discrimination ", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Include in the new federal Constitution provisions on equality and non-discrimination between man and woman, in line with articles 1 and 2 of the Convention on the Elimination of All Forms of Discrimination against Women", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Fully implement the measures of the National Action Plan on Gender Equality for 2007-2013, especially those regarding the rights of women in the labour market ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Strengthen its efforts in the prevention, punishment and eradication of all forms of violence against women and the adoption of comprehensive policies for the promotion and protection of the rights of the child, especially those relating to the prohibition of forced labour", - "values": [ - "4 - General action" - ] - }, - { - "text": "Promote greater public appreciation for the importance of according equal rights for Roma", - "values": [ - "4 - General action" - ] - }, - { - "text": "Reform the Penal Code to eliminate homosexuality as a criminal offence ", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Ratify the Optional Protocol of the Convention against Torture and Other Cruel, Inhuman or Degrading Treatment or Punishment ", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Cooperate with treaty bodies by submitting its reports", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Improve the education of persons belonging to minority groups", - "values": [ - "4 - General action" - ] - }, - { - "text": "Consider ratifying the Optional Protocol to the Convention on the Elimination of All Forms of Discrimination Against Women", - "values": [ - "3 - Considering action" - ] - }, - { - "text": "Meet the target of allocating 15 per cent of Government spending to health, in accordance with the Abuja Declaration", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Prepare and adopt a national action plan against racism ", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Include a definition for discrimination in the Constitution or other legislation ", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Fully implement Presidential Directive 7 of 1999, and, in particular, give public recognition and support to human rights defenders, sanction those who make unsubstantiated allegations against human rights defenders, strengthen the protection programme and investigate and punish crimes against human rights defenders.", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Enact and implement the necessary regulations to protect expatriated domestic workers, in particular foreign female domestic helpers, as one of the most vulnerable segments in Kuwaiti society, from exploitation, violence and abuse, and to prevent human trafficking ", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Implement a national plan of action to fight against trafficking of women for sexual exploitation ", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Continue to reform the judicial and security systems", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Ensure decent conditions of detention", - "values": [ - "4 - General action" - ] - }, - { - "text": "Sign and ratify the Convention against Torture and Other Cruel, Inhuman or Degrading Treatment or Punishment and its Optional Protocol ", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Increase significantly the human and material resources to ensure access to justice in rural areas", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Improve detention conditions so that they are favourable to the respect of dignity of prisoners ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Follow up regularly the implementation of the strategy by actively involving representatives of the communities concerned and based upon the findings from the follow-up of the strategy to make necessary revisions to the strategy in order to improve the living conditions of the Roma, Sinti and Travellers communities", - "values": [ - "4 - General action" - ] - }, - { - "text": "Ratify and implement the Optional Protocol to the Convention against Torture at the earliest possible time", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Improve the prison system and the situation of prisoners based on the 2013 report of EHRC on the situation of human rights in the country's prisons ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Enable civil society to meet peacefully and organise in freedom and safety", - "values": [ - "4 - General action" - ] - }, - { - "text": "Ratify the Council of Europe Convention on Preventing and Combating Violence against Women and Domestic Violence and take necessary measures to implement this on the ground", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Take all necessary measures to ensure equal access to all rights for the entire population, particularly the population of African descent and indigenous peoples", - "values": [ - "4 - General action" - ] - }, - { - "text": "Ensure that the age of criminal responsibility is not lowered ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Ratify all international human rights instruments to which it is not yet a State party", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Continue its efforts to put an end to violence against women with a national plan and necessary legislative reforms.", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Continue its cooperation with the Office of the United Nations High Commissioner for Refugees and related agencies, in order to identify, repatriate and provide proper citizenship documents for the displaced population in the wake of tensions with Senegal and the expelling of citizens from both countries between 1989-1991", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Implement the recommendation of the Committee on the Elimination of Racial Discrimination to declare illegal and prohibit organizations which promote and incite racial discrimination", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Intensify training and education efforts in the field of human rights", - "values": [ - "4 - General action" - ] - }, - { - "text": "Develop a comprehensive strategy to address inequalities experienced by ethnic minorities", - "values": [ - "4 - General action" - ] - }, - { - "text": "Abolish the penal law on defamation and ensure, through legislative reform and political change, that freedom of expression, as well as freedom of association and peaceful assembly are guaranteed to all inhabitants, citizens or not, of the country ", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Ratify the Amendments to the Rome Statute of the International Criminal Court on the crime of aggression (the Kampala amendments)", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Strengthen the policies and programmes aimed at giving the Roma population equal opportunities in the access to services", - "values": [ - "4 - General action" - ] - }, - { - "text": "Introduce legislation to prohibit corporal punishment of children in the home and in all other settings, including as a sentence under traditional forms of justice", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Establishment of an independent national human rights institution compliant with Paris Principles at federal level with appropriate affiliated structures at state level", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Provide an inclusive education for all children, in particular children with disabilities and migrant children", - "values": [ - "4 - General action" - ] - }, - { - "text": "Devote primary attention to the protection of the children involved in episodes of blood feud, so as to ensure the full protection and enjoyment of their rights ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Request greater efforts by OHCHR to further assist capacity-constrained small States in the Caribbean, in such a manner as to address the challenges faced by Dominica in harmonizing and integrating its international obligations with national legislation, as well as the increased reporting obligations attendant upon those obligations", - "values": [ - "1 - Minimal action" - ] - }, - { - "text": "Increase access to food, healthcare, education, and adequate housing, throughout the country", - "values": [ - "4 - General action" - ] - }, - { - "text": "Follow up on implementation of recommendations made by the BICI, in order to overcome the effects of unfortunate events ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Improve prison conditions by reducing overcrowding, improving sanitation, increasing access to medical care, and reducing the incidence of violence among prisoners", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Develop a national plan of action for the implementation of children's rights and to adopt a holistic child rights approach ", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Ensure that media and internet laws fully comply with Kuwait's obligations to protect freedom of expression under international agreements", - "values": [ - "4 - General action" - ] - }, - { - "text": "Continue the review of its international adoption system with a view to reform relevant legislation, and to bring it fully in line with the CRC, make the consent of teenage single mothers in the process mandatory, and adopt measures for all adoptions to be subject to the approval of a central authority with a clear mandate and responsibilities for the judicial supervision and the regulation", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Accede to the Convention on the Reduction of Statelessness and adopt its safeguards in the domestic legislation", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Continue making efforts to reduce disparities in infant mortality rates between rural and urban areas in the country", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Ensure the adoption and coordinated implementation of the National Policy on Gender and Development ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Work towards a moratorium on executions with the view to abolishing the death penalty, in conformity with General Assembly resolution 62-149, adopted on 18 December 2007 ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Continue and strengthen its efforts, including through the allocation of sufficient resources, to tackle remaining challenges in the field of women's rights ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Thoroughly investigate all allegations of sexual violence and bring perpetrators of such crimes to justice, in accordance with international standards, as recommended previously in 2009", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Take necessary measures to implement a national public awareness campaign on human rights, especially women and children's rights ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Take further measures to ensure more effective protection of children against abuse or neglect.", - "values": [ - "4 - General action" - ] - }, - { - "text": "Continue to take steps to fully implement the Law on Protection from Discrimination in relation to discrimination based on sexual orientation and gender identity ", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Pursue efforts with regional and international communities in seeking financial and technical assistance to advance human rights in Papua New Guinea ", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Continue its efforts aimed at improving the level of public health in the country to attain better results in the area of health and access to health ", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Accelerate the formulation of the Labour Migration Policy and consider ratifying the International Convention on the Protection of the Rights of All Migrant Workers and Members of Their Families", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Continue the implementation of the national action plan against human trafficking that was adopted in 2014", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Continue its efforts to implement the national plan on anti-trafficking and the Zimbabwe Agenda for Sustainable Socioeconomic Transformation 2013-2018", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Continue to investigate cases of violence against journalists and to effectively prosecute those responsible for such acts", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Expedite the ratification process of the Convention on the Rights of Persons with Disabilities and the Convention on the Elimination of All forms of Discrimination against Women and consider ratifying other international human rights conventions, particularly the International Covenant on Economic, Social and Cultural Rights, the Convention on the Rights of the Child and the International Convention on the Protection of the Rights of All Migrant Workers and Members of their Families", - "values": [ - "4 - General action" - ] - }, - { - "text": "Poland will ratify the Second Optional Protocol to the International Covenant on Civil and Political Rights aiming at the abolition of death penalty", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Ensure that economic, social and cultural rights be enjoyed on an equal footing in national legislation", - "values": [ - "4 - General action" - ] - }, - { - "text": "Abolish discrimination on the basis of ethnicity, language and culture, including de jure discrimination.", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Take legal measures to provide appropriate facilities and support for children, particularly children with disabilities", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Actively combat racially-motivated crimes and counteract racist speech in politics and the mass media", - "values": [ - "4 - General action" - ] - }, - { - "text": "Investigate, prosecute and punish all hate crimes against minorities", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Adopt a comprehensive anti-discrimination legislation to prevent all forms of discrimination on the basis of ethnic, religious, sexual orientation or gender identity grounds", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Respond positively and unconditionally to the request of the Special Rapporteur on extrajudicial, summary or arbitrary executions to visit the country", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Continue innovative education programs recognizing sexual diversity and adopt a health policy that further enhances awareness on and sensitizing of sexual orientation and gender issues amongst health personnel ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Ratify ILO Convention No. 111 as recommended by the United Nations treaty bodies and the European Commission against Racism and Intolerance.", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Continue its efforts to improve the situation of women and empower them", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Spare no effort in continuing to urge the prevention of acts of revenge and investigate abuses committed by its own combatants", - "values": [ - "4 - General action" - ] - }, - { - "text": "Refrain from the harassment, intimidation and arbitrary detention of human rights activities ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Ratify ICCPR and CAT and implements both treaties at national level", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Complete the ratification process for human rights treaties that it has signed, including the International Covenant on Economic, Social and Cultural Rights (ICESCR) and the Optional Protocol to the Convention against Torture (OP-CAT) ", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Abolish the death penalty in all circumstances and ratify ICCPR-OP 2 ", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Refrain from reintroducing the death penalty, in accordance with its international obligations, in particular those under the Second Optional Protocol to the International Covenant on Civil and Political Rights, aimed at the abolition of the death penalty", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Consider ratifying the Rome Statute of the International Criminal Court ", - "values": [ - "3 - Considering action" - ] - }, - { - "text": "Pursue its efforts for balanced development that bridges the gap between the rural and urban areas, with special attention to the realization of MDGs on health", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Take the necessary measures to ensure the full participation of all citizens, in particular vulnerable groups, in the education system and in the administration of public affairs", - "values": [ - "4 - General action" - ] - }, - { - "text": "Solve the problem of the prison overcrowding and make the detention conditions to meet international standards ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Enhance efforts, both in law and practice, to protect the rights of women, promote gender equality and eliminate discrimination and violence against women", - "values": [ - "4 - General action" - ] - }, - { - "text": "Strengthen the legislative provisions to promote unity and national reconciliation and continue to assist victims of genocide", - "values": [ - "4 - General action" - ] - }, - { - "text": "Pass legislation that promotes further political participation of women in public elections positions", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Conduct a thorough and objective investigation into the facts of the cruel treatment of demonstrators by police in Tbilisi in November 2007 and May 2009, to hold accountable those responsible and to take all necessary measures to restore the violated rights of the victims, including paying appropriate compensation ", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Consider setting up a mechanism to protect unaccompanied minor refugees", - "values": [ - "3 - Considering action" - ] - }, - { - "text": "Halt the detention of immigrant families and children, seek alternatives to detention and end use of detention for reason of deterrence", - "values": [ - "4 - General action" - ] - }, - { - "text": "Ratify the Optional Protocols to the CRC ", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Renew its respect for the rule of law by observing a strict separation between State and party activities and ensuring an independent judiciary and media", - "values": [ - "4 - General action" - ] - }, - { - "text": "Review and harmonize the existing anti-discrimination laws in order to ensure effective and comprehensive protection against all forms of discrimination in law and in practice", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Ensure that law enforcement officials and other relevant actors are adequately trained to investigate and prosecute hate crimes on the basis of sexual orientation and gender identity, including through the promotion of awareness-raising and sensitization campaigns ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Ratify the Optional Protocol to the Convention on the Rights of the Child on the involvement of children in armed conflict and the Optional Protocol to the Convention on the Rights of the Child on the sale of children, child prostitution and child pornography, and prohibit explicitly corporal punishment of children in all settings, including the home", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Ensure that prisoners are informed of charges and evidence against them, have prompt access to counsel of their choice, be charged with a recognizable criminal offence and be given a fair trial.", - "values": [ - "4 - General action" - ] - }, - { - "text": "Consider ratifying ILO Convention No. 189 ", - "values": [ - "3 - Considering action" - ] - }, - { - "text": "Mainstream human rights in development planning by incorporating cross-cutting issues and promote the right to development", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Extend a standing invitation to all special procedures and give a positive response to pending visits of Special Rapporteurs on freedom of expression, freedom of religion and the right to food and the Special Rapporteur on torture", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Develop a national action plan with concrete goals to tackle the gender pay gap", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Deliver a clear message to all prison managers and staff that all forms of ill-treatment are unacceptable and will result in sanctions", - "values": [ - "4 - General action" - ] - }, - { - "text": "Reinforce ongoing measures for the promotion of freedom of expression, freedom of association and freedom of the press", - "values": [ - "4 - General action" - ] - }, - { - "text": "Collect and publish statistics on hate crimes, and develop a specific national action plan against racism and xenophobia ", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Enact the Children's Protection and Welfare Bill 2004 ", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Continue to cooperate with the United Nations and the international community to implement measures to ensure the security and safety of its people", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Take further measures in the same direction of the previous ones for the social reintegration of juvenile delinquents", - "values": [ - "4 - General action" - ] - }, - { - "text": "Put into practice a new action plan to combat sexual violence", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Consider the possibility of ratifying other core human rights instruments ", - "values": [ - "3 - Considering action" - ] - }, - { - "text": "Take adequate steps to lift restrictions on freedom of expression and adopt a framework for the protection of journalists from persecution, intimidation and harassment", - "values": [ - "4 - General action" - ] - }, - { - "text": "Ratify the Convention relating to the Status of Stateless Persons ", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Redouble efforts in the area of promotion of women and effective equality between genders in the workforce as in the social sphere.", - "values": [ - "4 - General action" - ] - }, - { - "text": "Continue to prioritise investigation and prosecution of cases where persons with albinism are the victims", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Continue to cooperate with OHCHR", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Act on its commitments in Human Rights Council resolution 30/1 including to establish transitional justice mechanisms, and to establish a clear timeline to this end", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Strengthen domestic legislation to protect victims and witnesses of human trafficking ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Prevent acts of torture and ensure that allegations of torture and ill-treatment are investigated promptly and efficiently", - "values": [ - "4 - General action" - ] - }, - { - "text": "Implement the National Development Vision 2025 and the national strategies for growth and reduction of poverty", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Step up its cooperation with the special procedures of the Human Rights Council by responding positively to the pending visit requests of the special procedures mandate holders without delay", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Ensure that detailed investigations are carried out in respect to hate crimes and violence, and racist and xenophobic speeches, as well as ensure that perpetrators are brought to justice", - "values": [ - "4 - General action" - ] - }, - { - "text": "Ratify the international instruments that have not been ratified yet", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Strengthen its cooperation with the special procedures of the Human Rights Council by extending a standing invitation to all special procedures mandate holders", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Accede to and fully align its national legislation with the Rome Statute of the International Criminal Court, including by incorporating provisions to cooperate promptly and fully with the Court", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Put an end to forms of discrimination (including legal ones) faced by lesbian, gay, bisexual, transgender and intersex persons", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Ensure that practical policies in the area of immigration be geared to the standards set forth by the principles enshrined in the International Convention on the Protection of the Rights of All Migrant Workers and Members of Their Families (ICRMW).", - "values": [ - "4 - General action" - ] - }, - { - "text": "Continue efforts and take effective measures to overcome the challenge of protecting the rights of vulnerable groups ", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Study measures that it judges appropriate to implementing the recommendation of the Committee on the Elimination of Discrimination against Women to eliminate discrimination between men and women in the area of employment and to enshrine the principle of an equal salary for equal work of equal value.", - "values": [ - "3 - Considering action" - ] - }, - { - "text": "Ensure effective implementation of its national action plan against human trafficking by law enforcement officials with the aim to dismantle illicit networks, whilst reintegrating children victims back in school and preventing revictimization ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Guarantee the full and equal access to socioeconomic resources, (including access to tertiary education and traditional language classes) for the Amazigh and Saharan/Saharawi people", - "values": [ - "4 - General action" - ] - }, - { - "text": "Bring domestic legislation in line with international norms in the fight against corruption", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Consider acceding to all United Nations human rights instruments", - "values": [ - "3 - Considering action" - ] - }, - { - "text": "Persist in working towards the full inclusion of the Roma community, the success of which will be highly rewarding for all the people of Slovakia.", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Take the necessary measures to consider lifting the United States reservation to article 5, paragraph 6 of the International Covenant on Civil and Political Rights that bans the imposition of the death penalty for crimes committed by persons under 18", - "values": [ - "4 - General action" - ] - }, - { - "text": "Accede to the 1960 UNESCO Convention against Discrimination in Education.", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Effectively enforce its legislation and other general and institutional measures to combat racial discrimination and adopt a comprehensive strategy to eliminate discrimination on any grounds whatsoever", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Continue efforts to provide comprehensive health care to all people in Nicaragua, including through improving access and services in rural areas, with the aim, inter alia, to close the gap between the infant mortality rate in rural and urban areas", - "values": [ - "4 - General action" - ] - }, - { - "text": "Investigate all allegations of torture or ill-treatment, prosecute those responsible and take all measures to ensure that impunity does not prevail ", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Give stronger support to government measures for the empowerment of women", - "values": [ - "4 - General action" - ] - }, - { - "text": "Adopt general legislation to combat discrimination on any ground, particularly on the grounds of race, sexual orientation or gender identity, and strengthen the mechanisms to eliminate xenophobic speech against migrants and multi-cultural families", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Continue its efforts to protect the rights of all foreign workers and members of their families ", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Reinforce efforts in the fight for elimination of all forms of violence and discrimination against women and children ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Promptly ratify and implement in national laws the outstanding core human rights treaties, including ICCPR and its two optional protocols ", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Put in place a national human rights institution which is in conformity with the Paris Principles", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Ensure that any physical or moral harm against journalists or human rights defenders is investigated and that the perpetrators are duly prosecuted ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Take measures to ensure freedom of expression", - "values": [ - "4 - General action" - ] - }, - { - "text": "Consider taking steps towards the abolishment of the death penalty and ratifying the Convention against Torture, as well as to intensify its efforts to implement the recommendations made at the first universal periodic review process, including ratifying the International Convention for the Protection of All Persons from Enforced Disappearance ", - "values": [ - "3 - Considering action" - ] - }, - { - "text": "Renew its commitment to a comprehensive reform of legislation aimed at guaranteeing the rule of law, the freedom of thought, religion, expression and of the media, in compliance with international standards", - "values": [ - "4 - General action" - ] - }, - { - "text": "Continue to ensure inclusive education for children and persons with disabilities, as education would allow them to fully participate in society and open the opportunity of employment", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Revise its legislation on abortion in order to enable it when the pregnancy is the result of rape or incest, or when it endangers the life or health of the mother ", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Strengthen the role of and provide the necessary resources to the National Council of Children", - "values": [ - "4 - General action" - ] - }, - { - "text": "Continue its current efforts aimed at improving the fate of the Chagossians", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Prioritise the ratification of the Council of Europe Convention on preventing and combating violence against women and domestic Violence and continue efforts to combat domestic violence, including through actions aimed at raising public awareness on this issue", - "values": [ - "4 - General action" - ] - }, - { - "text": "Ratify the Rome Statute ", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Undertake a screening of all security forces under international guidance in order to exclude perpetrators of violations of international human rights and humanitarian law from the national security and defence forces", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Continue to strengthen the legal system with new bodies ", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Redouble its efforts to advance women's rights and eliminate harmful practices", - "values": [ - "4 - General action" - ] - }, - { - "text": "Chad was committed to stepping up its efforts and allocating all available resources to ensure that the promotion and protection of human rights were an absolute priority for the Government.", - "values": [ - "4 - General action" - ] - }, - { - "text": "Provide international support to help overcome impediments to the promotion and protection of human rights", - "values": [ - "4 - General action" - ] - }, - { - "text": "Operationalize its national authority for the protection of detainees", - "values": [ - "4 - General action" - ] - }, - { - "text": "Take supplementary measures aimed at the integration of human rights education and training into school curricula, and at training Government officials, as coordinated action along these lines could facilitate better implementation of the existing legal and institutional framework ", - "values": [ - "4 - General action" - ] - }, - { - "text": "In line with the recommendations issued by the Committee against Torture and the Committee on the Elimination of Discrimination against Women, consider ratifying the First Optional Protocol to ICCPR and the Second Optional Protocol to ICCPR aiming at the abolition of the death penalty, the International Convention for the Protection of All Persons from Enforced Disappearance, the Optional Protocol to CEDAW as well as the Optional Protocol to CAT, establishing national preventive mechanisms ", - "values": [ - "3 - Considering action" - ] - }, - { - "text": "Harmonize domestic legislation with Sudan's international obligations in the area of protection of women and children's rights", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Address the issue of unduly protracted detentions and to promote the use of alternative measures to pretrial detention, in particular for pregnant women and young children. ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Continue pursuing appropriate, efficient policies, including awareness-raising campaigns, to eliminate discriminatory gender stereotypes ", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Free all remaining prisoners of conscience and put an end to practices that fuel arbitrary arrests", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Ensure primary health facilities are adequately equipped to provide care for persons with intellectual disabilities ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Continue and strengthen its efforts in favour of the elderly", - "values": [ - "4 - General action" - ] - }, - { - "text": "Prohibit political statements and platforms that promote racism, xenophobia, hate speech, or speech aimed at inciting hatred or intolerance towards ethnic, religious or any other minorities", - "values": [ - "4 - General action" - ] - }, - { - "text": "Consider signing and ratifying ICESCR and ICCPR", - "values": [ - "3 - Considering action" - ] - }, - { - "text": "Conduct thorough investigations of human rights crimes and abuses perpetrated during the internal armed conflict in the 1990s", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Continue to engage with human rights civil society groups in the followup to the universal periodic review ", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "That Namibia's education policies which were designed for inclusivity, be evaluated by the Government for effectiveness in relation to access and affordability for minority cultural groups", - "values": [ - "3 - Considering action" - ] - }, - { - "text": "Release persons detained or arrested for political reasons and refrain from and prevent all forms of violence and retaliatory action, evictions, deportations, detention and coercion", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Provide support to the Human Rights and Public Administration Commission to ensure its functioning", - "values": [ - "4 - General action" - ] - }, - { - "text": "Guarantee respect for the rights of migrant workers, in particular by strengthening the capacity of the labour inspectorate, reform the kafala system and ratify ILO Convention No. 189 ", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Elaborate and promote a national human rights plan that integrates all of its administration, harmonizes its internal legislation with its international obligations, includes awareness-raising programmes on diverse human rights subjects, links public and private actors in its defence and guides its public policies with strategies to protect human rights, in order to achieve greater systematization of its human rights action ", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Enhance its efforts to fight against trafficking in persons and fully protect the human rights of victims, especially women, children and migrants in transit ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Consider that any person detained by its armed forces is under its jurisdiction and respect its obligations concerning the human rights of such individuals.", - "values": [ - "4 - General action" - ] - }, - { - "text": "Strengthen the capacities of the CNDHC and ensure its conformity with the Paris Principles ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Strengthen the Human Rights Commission with a status in accordance with the Paris Principles, particularly with respect to human resources and independence.", - "values": [ - "4 - General action" - ] - }, - { - "text": "Take concrete measures to ensure the effective application of the law on domestic violence, and in particular increase human and financial resources for this purpose ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Continue to improve the situation of persons with disabilities, including by accelerating the preparation of relevant strategies for 2017-2030, and start implementing them", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Continue and intensify its efforts on behalf of children and women generally, to ensure their safety in the domestic environment and to remove any obstacles to their education, development and access to equal opportunities", - "values": [ - "4 - General action" - ] - }, - { - "text": "End torture and inhuman and degrading treatment, and ensure that allegations of torture, ill-treatment or excessive use of force by police and security forces are investigated, prosecuted and convicted in line with international standards ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Continue efforts to combat trafficking in persons and investigate, prosecute and punish the persons and groups involved", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Continue working for the enactment into law of the gender equality bill", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Continue improving Human rights education and trainingfor enforcement agencies, public officials, and prison guards", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Consider positively the ratification of the Migrant Workers Convention ", - "values": [ - "3 - Considering action" - ] - }, - { - "text": "Accelerate the measures undertaken to allow the national institution for the protection of human rights to comply with the Paris Principles ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Amend the law concerning "certificates of character" so as not to hamper the rehabilitation and reintegration of former convicts in the labour market", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Continue its efforts to improve conditions for detention of minors, in particular, set up, as quickly as possible, the security unit of the socio-educational centre of Dreiborn ", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Continue strengthening national strategies to combat child labour", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Fully respect the rights of the adherents of the Baha'i faith and to judicially prosecute those inciting hatred against them in religious environments, the media and the Internet", - "values": [ - "4 - General action" - ] - }, - { - "text": "Keep its attention towards the economic empowerment of women", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Become party to the core human rights instruments ", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Continue to ensure the fulfilment of the needs of vulnerable groups in Brunei Darussalam and, in this regard, also continue to uphold its commitments to the relevant international human rights instruments to which Brunei Darussalam is a party", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Take steps to ensure that free health care can be perpetually made accessible to vulnerable populations enabling them to enjoy high health coverage", - "values": [ - "4 - General action" - ] - }, - { - "text": "Ensure that journalists and workers in the media can pursue their profession in a free environment which guarantees the rights of freedom of opinion and expression for all persons ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Further legislative and policy measures aimed at ensuring gender equality and combating violence against women and girls ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Permit the TCRT full access to assistance from the United Nations Office of the High Commissioner for Human Rights, other United Nations agencies, foreign governments and human rights organizations ", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Eliminate all discriminatory provisions with regard to marriage and family in the Civil Code ", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Devise action-oriented plans to combat trafficking, in particular of women and children", - "values": [ - "4 - General action" - ] - }, - { - "text": "Ratify the Second Optional Protocol to the International Covenant on Civil and Political Rights, and abolish the death penalty", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Review the national legislation to bring it into conformity with international human rights instruments, in particular with the Second Optional Protocol to the International Covenant on Civil and Political Rights, aiming at the abolition of the death penalty", - "values": [ - "3 - Considering action" - ] - }, - { - "text": "Invite the Special Rapporteur on Freedom of Expression to visit Angola in order to demonstrate your commitment to foster an environment where journalists, civil society, and opposition members can operate freely and independently", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Consider implementing, as appropriate, the recommendations of human rights treaty bodies and special procedures on indigenous people.", - "values": [ - "3 - Considering action" - ] - }, - { - "text": "Enact comprehensive equality legislation that will provide effective remedies and address discrimination on all grounds", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Ratify the core international human rights treaties, signed by Sao Tome and Principe, as well as accede to the Optional Protocol to the Convention on the Rights of the Child on the sale of children, child prostitution and child pornography and the Optional Protocol to the Convention on the Rights of the Child on the involvement of children in armed conflict", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Adopt a National Action Plan to implement the Guiding Principles on Business and Human Rights, as recommended by the Working Group on Business and Human Rights", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Consider adopting all necessary measures to achieve the non-discrimination, protection and integration of the LGBT population", - "values": [ - "3 - Considering action" - ] - }, - { - "text": "Consider ratifying the 1961 Convention on the Reduction of Statelessness", - "values": [ - "3 - Considering action" - ] - }, - { - "text": "Continue to work with OHCHR and the Office of the United Nations High Commissioner for Refugees to re-establish the humanitarian aid programme for the Western Saharan population", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Continue its efforts to ensure adequate housing, access to health care and education as means to ensure a quality standard of living for its people ", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Continue its efforts in the field of human rights education and training ", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Become a State party to the Rome Statute of the International Criminal Court", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Pass legislation increasing the legal age of marriage to 18", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Initiate prompt, thorough and independent investigations of all torture allegations and end politically motivated prosecutions by ensuring all trials conform to obligations under the International Covenant on Civil and Political Rights", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Expedite the process to pass the draft gender equality law and to establish clear policies on gender equality and the implementation framework", - "values": [ - "4 - General action" - ] - }, - { - "text": "Adopt a comprehensive anti-discrimination law that addresses the worrying trend of incidents based on gender, sexual orientation, racial and ethnic discrimination ", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Establish a legal moratorium on the application of death penalty with a view to its definitive abolishment and meanwhile carry out awareness campaigns in order for society to be aware of the ineffectiveness of capital punishment and of its lack of connection with the increase or reduction of crime", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Carry out independent investigations in all cases of attacks against journalists", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Ratify the ILO conventions No. 189 and 87 regarding, respectively, decent conditions of work for female and male domestic workers and freedom of association and protection of the right to organise ", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Decriminalize sexual activity between consenting adults of the same sex", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Continue socioeconomic reforms to better the lives of its people, in particular by investing in education", - "values": [ - "4 - General action" - ] - }, - { - "text": "Request necessary technical and financial assistance from the international community, in particular United Nations organs and programmes, to continue to take care of refugees and internally displaced persons ", - "values": [ - "1 - Minimal action" - ] - }, - { - "text": "Continue to devote special attention to the promotion and protection of the human rights of vulnerable groups, such as women, children and the elderly", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Continue with efforts to combat discrimination and abandonment of children with disabilities", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Immediately release all political prisoners", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Ensure that all allegations of torture and other ill-treatment perpetrated by security services are subject to impartial and independent investigations by the ordinary civil justice without delay, and ensure that victims receive reparations", - "values": [ - "4 - General action" - ] - }, - { - "text": "Strengthen the justice system by establishing legislative and administrative measures to safeguard the independence of judges and lawyers, as well as by adopting measures to ensure and promote the access of all people, particularly rural women, to justice, legal assistance, psychological support and reparation", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Enact comprehensive anti-discrimination legislation to effectively protect the human rights of persons belonging to indigenous minorities and Afro-Honduran peoples and of lesbian, gay, bisexual and transgender persons, in particular with regard to violence against such persons and their access to the labour market", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Implement the Roma Integration Strategy for 2015-2020, which was adopted during the Hungarian Presidency of the Council of the European Union", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Take the necessary steps to establish a national human rights institution in accordance with the Paris Principles on the status of national institutions for the promotion and protection of human rights", - "values": [ - "4 - General action" - ] - }, - { - "text": "Accept a follow-up visit by the Special Rapporteur on the independence of judges and lawyers and accept the outstanding request of a visit by the Special Rapporteur on the situation of human rights defenders", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Consider acceding to the Convention relating to the Status of Refugees ", - "values": [ - "3 - Considering action" - ] - }, - { - "text": "Continue enacting laws and strengthen policies aimed at providing women with protection and enhancing their roles in society", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Guarantee the effective and independent functioning of autonomous trade unions from the public sector, based on the right of all persons to establish trade unions and the right of trade unions to establish federations and national confederations", - "values": [ - "4 - General action" - ] - }, - { - "text": "Establish clear vetting procedures to identify and prosecute individuals responsible for serious abuses of human rights such as torture, extrajudicial killings, recruitment of children and sexual violence - including during recruitment and integration of new forces into the SNAF", - "values": [ - "4 - General action" - ] - }, - { - "text": "Continue the measures to reinforce access to education", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Introduce new legislation to fight discrimination on any grounds", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Ratify the International Convention for the Protection of All Persons from Enforced Disappearance, accept the competence of the Committee as foreseen in article 26 of the Convention and modify its national legislation to criminalize this act.", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Step up its efforts to improve detention conditions in prisons and in police holding cells", - "values": [ - "4 - General action" - ] - }, - { - "text": "Ratify the three optional protocols to the Convention on the Rights of the Child: the Optional Protocol on the sale of children, the Optional Protocol on the involvement of children in armed conflict, and the third Optional Protocol on a communications procedure", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Ensure that the recruitment agencies for foreign workers fully comply with the applicable laws and regulation ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Consider establishing promptly a national human rights institution in accordance with the Paris Principles", - "values": [ - "3 - Considering action" - ] - }, - { - "text": "Ensure that all victims of trafficking regardless of their migration status have access to and benefit from programmes that provide support, rehabilitation and assistance", - "values": [ - "4 - General action" - ] - }, - { - "text": "Ensure affordable access to basic health care for all children ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Actively facilitate the ethno-cultural development in Russia ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Consider extending the network of Government services for the delivery of socioeconomic and development aid to rural areas.", - "values": [ - "3 - Considering action" - ] - }, - { - "text": "Ratify the CPED and make, at the moment of ratification, the declarations provided for on articles 31 and 32 ", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Authorize independent entities, such as journalists and local, national and international organizations, to travel freely in all areas of the detention centre for migrants with the aim to monitor the conditions of detention", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Establish an effective policy and legal framework to prevent and contrast all forms of discrimination and violence against women, including domestic violence, in order to ensure that women victims of violence receive adequate support and offenders are brought to justice", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Ensure that children with disabilities have access to inclusive education ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Ratify ICRMW, as recommended by the Committee on the Elimination of Racial Discrimination, the Committee on Economic, Social and Cultural Rights and the Committee on the Elimination of Discrimination against Women ", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Reinstate the moratorium on the death penalty and consider abolishing capital punishment", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Establish and operate a country-wide system to monitor and record racist incidents and hate crimes", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Adopt measures to reduce gender inequality in the labour market ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Continue promoting political dialogue and national reconciliation in order to create conditions for economic development and promote the economic, social and cultural rights of its people", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Take concrete steps to prevent coercive, unsafe and abusive sterilization and create greater accountability for these practices, including ensuring free and full consent prior to conducting the procedure and compliance with international standards", - "values": [ - "4 - General action" - ] - }, - { - "text": "Incorporate the education of human rights in its school curricula in order to raise human rights awareness among the people ", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Continue its ongoing efforts to improve prison conditions for detainees ", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Continue efforts to strengthen the independence of the National Commission for Human Rights and Freedoms and provide it with the necessary financial and human resources ", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Adopt appropriate measures to prevent and eliminate excessive use of force and summary executions by security forces, and ensure that perpetrators are brought to justice", - "values": [ - "4 - General action" - ] - }, - { - "text": "Stop the forced evictions of indigenous peoples in the territories under occupation", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Investigate fully all allegations of torture and cruel, inhuman or degrading treatment impartially, thoroughly and within a timely manner and ensure those responsible are brought to justice", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Offer regular and continuous training programmes to police officers as well as judicial and state officials in compliance with international human rights standards, and ensure swift conduct of trials and due process in criminal cases", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Speed up the process to establish an independent and credible national human rights institution in accordance with the Paris Principles ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Continue the process of transitional justice.", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Apply more effective actions to face the negative effects of the economic crisis on the population", - "values": [ - "4 - General action" - ] - }, - { - "text": "Remain steadfast in pursuing its impressive policies towards gender equality, particularly by strengthening measures to eradicate gender-based violence", - "values": [ - "4 - General action" - ] - }, - { - "text": "Support full, immediate, safe, and unfettered humanitarian access throughout the country, and ensure the protection of civilian populations, including vulnerable groups, through the immediate restoration of law and order", - "values": [ - "4 - General action" - ] - }, - { - "text": "Integrate the various regional and international human rights instruments to which it is a party into its domestic legislation, particularly concerning torture, the state of prisons, freedom of the press and of assembly, child welfare, gender equality and so on ", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Further pursue the policies and programs to improve quality and effectiveness of basic social services provided to its citizens", - "values": [ - "4 - General action" - ] - }, - { - "text": "Commute without delay all death sentences to terms of imprisonment, and ratify and implement into its national legislation ICCPR and its Second Optional Protocol, aiming at the abolition of the death penalty ", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Ask for further support from the international community to improve its human rights situation through technical assistance as appropriate.", - "values": [ - "1 - Minimal action" - ] - }, - { - "text": "Invite the Special Rapporteur on minority issues to visit the country with a view to examine the "ways and means of overcoming existing obstacles to the full and effective realization of their rights" in accordance with her mandate", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Abolish corporal punishment as a disciplinary measure for children in all areas ", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Intensify awareness-building among traditional and religious leaders to strictly observe the ban on female genital mutilation", - "values": [ - "4 - General action" - ] - }, - { - "text": "Consider establishing a comprehensive human rights act as recommended by the National Human Rights Consultative Committee", - "values": [ - "3 - Considering action" - ] - }, - { - "text": "Take urgent measures to modify legislation stipulating the precedence of the husband\u2019s decisions over the wife\u2019s decisions with respect to common property, the exercise of parental authority and the custody of children", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Take necessary measures to ensure quality education by providing sufficient training for teachers, ensuring the presence of quality school materials, books and appropriate infrastructure in all schools and available to all children, especially the most vulnerable children", - "values": [ - "4 - General action" - ] - }, - { - "text": "Strengthen its efforts to effectively implement existing laws and policies to eliminate all forms of discrimination", - "values": [ - "4 - General action" - ] - }, - { - "text": "Take further measures to protect and promote women's rights, particularly in the fields of female employment, education, health and legal capacity", - "values": [ - "4 - General action" - ] - }, - { - "text": "Effectively investigate and prosecute all cases of violence against women and children ", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Strengthen its efforts to protect the rights to freedom of religion by ensuring that persons belonging to religious minorities are able to freely exercise their religion and that rights of persons belonging to religious minorities are protected and respected without discrimination.", - "values": [ - "4 - General action" - ] - }, - { - "text": "Ensure the independence and impartiality of the judiciary and guarantee due process of law ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Continue its good momentum in its initiative to improve the quality of human life through its strive towards a green economy ", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Continue its efforts to combat unemployment, and to work on laying the ground for suitable economic environment that creates more job opportunities for youth ", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "An immediate moratorium on the use of death penalty and that all current death sentences be commuted", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Continue working for the strengthening of the process of truth-seeking ", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Continue to further promote access to and quality of health facilities and services, particularly in providing efficient care for children and mothers", - "values": [ - "4 - General action" - ] - }, - { - "text": "Attend to the appointment of members of the NHRC to enable it to commence its work", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "End blockade against Cuba", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Ratify the Optional Protocol on the Convention Against Torture (OPCAT) as soon as possible", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Continue advancing the protection of workers from third countries in Cyprus, including all victims of trafficking and exploitation in the legal aid programme and ensuring the provision of adequate funding for this ", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Enact the necessary legal provisions for the advancement of women in conformity with international human rights standards ", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Take action to alleviate the burden on the health-care system", - "values": [ - "4 - General action" - ] - }, - { - "text": "Facilitate an inclusive national dialogue on female genital mutilation and put in place, in cooperation with tribal chiefs, religious leaders and women's groups, effective measures to eliminate the practice ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Sign and ratify the International Convention on the Protection of the Rights of All Migrant Workers and Members of Their Families ", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Adopt as soon as possible and effectively implement the national action plan 2015-2019 against gender-based violence", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Strengthen efforts to combat trafficking in persons, particularly women and children, including through prevention actions ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Repeal article 230 of the Criminal Code criminalizing same-sex sexual relation", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Replace the Internal Security Act and the Criminal Law (Temporary Provisions) Act with laws that mandate that an accused person has a trial in court", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Eliminate legal sanctions against consensual sex acts between adults in private ", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Take measures to strengthen the role and capacity of the Ombudsman to address issues such as non-discrimination", - "values": [ - "4 - General action" - ] - }, - { - "text": "Intensify its efforts to combat violence against women by criminalizing and implementing comprehensive laws prohibiting sexual and gender-based violence and female genital mutilation, and by providing the necessary support to victims of sexual and gender-based violence ", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Intensify efforts to operationalize the concept of gross national happiness and the tools used to monitor its implementation in the development process", - "values": [ - "4 - General action" - ] - }, - { - "text": "Implement recent legislation on the rights of the child and strengthen efforts to prevent and combat all forms of discrimination and violence against children and other vulnerable groups, including through awareness-raising campaigns, dedicated training of law-enforcement personnel and adequate support to victims of violence", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Continue its efforts to ensure that all religious communities are treated without any discrimination ", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Fully respect the freedom of religion or belief as also expressed in the recommendations of the Human Rights Committee.", - "values": [ - "4 - General action" - ] - }, - { - "text": "Introduce a national legal provision prohibiting discrimination and harassment based on sexual orientation and gender ", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Continue to strengthen all public policies with a view to eliminating feminine genital mutilation", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Apply directives for the evaluation of performance and operational results in the armed forces, giving priority to the number of people demobilized or captured as opposed to the number of those killed.", - "values": [ - "4 - General action" - ] - }, - { - "text": "Take the necessary steps to facilitate the process of qualifying stateless individuals to be granted nationality so that they can enjoy basic human rights", - "values": [ - "4 - General action" - ] - }, - { - "text": "Continue the progress underway and introduce further steps to achieve gender equality, in particular the abolishment of the system of male guardianship", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Establish the delayed National Human Rights Commission in accordance with the Paris Principles ", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Undertake more efforts to ensure equal access to elementary and secondary education for both genders", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Take immediate measures to ensure gender equality", - "values": [ - "4 - General action" - ] - }, - { - "text": "Continue efforts of outreach to women and girls on opportunities in traditionally male occupations and trades", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Strengthen measures to facilitate access and effective distribution of international humanitarian aid to the people in need, with special attention to vulnerable groups ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Follow-up on the recommendations of Committee against Torture and OHCHR to empower civil courts to try offences against human rights, in particular torture and cruel, inhuman or degrading treatment committed by military personnel, even when it is claimed that they were service-related", - "values": [ - "4 - General action" - ] - }, - { - "text": "Further its endeavours with regard to the smooth and productive activities of the bodies involved in the promotion and protection of human rights within the country", - "values": [ - "4 - General action" - ] - }, - { - "text": "Continue its efforts to combat corruption, in particular corruption involving law enforcement authorities", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Develop policies and programmes to prevent armed violence in order to reduce violent deaths, with particular attention to Juvenile", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Continue efforts to promote and protect the rights of the child and consider establishing a specialised national body for the protection of the rights of the child", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Strengthen its efforts to eliminate discrimination against women and girls, supported by the bill on human trafficking", - "values": [ - "4 - General action" - ] - }, - { - "text": "Bring its legislation on the rights of children during the asylum procedure in line with the Convention on the Rights of the Child", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Continue providing important assistance for the development of countries in the South, particularly in the areas regarding fundamental rights", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Envisage completing the process of adhesion to the Optional Protocol to the Convention on the Rights of the Child on a communications procedure, in order to facilitate individual complaints in case of violations of the rights of children, and to the Council of Europe Convention on the Protection of Children against Sexual Exploitation and Sexual Abuse", - "values": [ - "3 - Considering action" - ] - }, - { - "text": "Make more efforts to safeguard the benefits that would go to those who live in rural areas to ensure their economic and social rights", - "values": [ - "4 - General action" - ] - }, - { - "text": "Exert efforts to improve prison conditions", - "values": [ - "4 - General action" - ] - }, - { - "text": "Continue the commendable public campaigns against violence against women and children, and ensure the swift adoption and implementation of the new Bill on Domestic Violence ", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Take all necessary measures to ensure full respect for the rights of association and assembly, including with regard to the ability of NGOs to function, which would be in line with Ethiopia's Constitution and its international obligations ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Eliminate discrimination of and violence against religious minorities including by bringing national legislation such as the "Laws on Protection of Race and Religion" and the 1982 citizenship act in accordance with international human rights obligations, and establish an effective birth registration system guaranteeing universal access to education and other government services", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Intensify efforts to submit due reports to treaty bodies ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Implement the recommendations made by the Truth, Justice and Reconciliation Commission, including investigation and punishment of those responsible for serious human rights violations and reparation for victims of such violations", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Incorporate necessary reforms for the complete abolition of the death penalty ", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Accede to the International Convention for the Protection of All Persons from Enforced Disappearance", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Allow independent investigations into the death of Deyda Hydara and the disappearance of Chief Ebrima Manneh, including publication of findings", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Continue its efforts to promote gender equality in the education sector", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Take measures and demonstrate leadership to prevent, and ensure accountability for, any crimes motivated by sexual orientation or gender identity", - "values": [ - "3 - Considering action" - ] - }, - { - "text": "Adopt efficient educational policies, notably through enforcing full accountability for school violence, human rights training programmes for teachers, and continuous expansion of the school network and its resources to guarantee a truly obligatory and accessible primary education ", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Take steps to prevent child, early and forced marriage, including through education and awareness campaigns", - "values": [ - "4 - General action" - ] - }, - { - "text": "Work closely with the OHCHR and the Council for considering eventual participation to the core international instruments on human rights", - "values": [ - "4 - General action" - ] - }, - { - "text": "Strengthen support measures for vulnerable persons", - "values": [ - "4 - General action" - ] - }, - { - "text": "Submit its overdue reports to to the Committee on the Elimination of Racial Discrimination, the Committee on the Elimination of Discrimination against Women and the Committee against Torture ", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Ensure the implementation of existing laws guaranteeing non- discrimination and adopt appropriate legislation to ensure that all children enjoy all rights, as recommended by the Committee on the Rights of the Child", - "values": [ - "4 - General action" - ] - }, - { - "text": "Ensure that all judicial bodies carrying out investigations into gender-based violence receive specialized training in order to meet the requirements of the Organic Law on Comprehensive Protection Measures against Gender Violence", - "values": [ - "4 - General action" - ] - }, - { - "text": "Continue its efforts to preserve the languages and culture of ethnic minorities.", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Further intensify its efforts to decrease the HIV-AIDS prevalence in the context of its National Health Charter, with a special focus on teenagers.", - "values": [ - "4 - General action" - ] - }, - { - "text": "Adopt a law prohibiting domestic violence and adopt the necessary measures to ensure its implementation, including inter alia through an information and awareness-raising campaign amongst the population ", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Ensure the accessibility of appropriate legal aid to safeguard access to justice for all, particularly for the most marginalized groups in society", - "values": [ - "4 - General action" - ] - }, - { - "text": "Abolish the death penalty and consider ratifying the second Optional Protocol to ICCPR ", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Strengthen partnerships with non-governmental organizations to enlist their help in identifying victims of trafficking during authorities' initial contact with potential victims among women detained for prostitution offences ", - "values": [ - "4 - General action" - ] - }, - { - "text": "The Government of Jamaica recognizes that the voluntary goals elaborated in Human Rights Council Resolution 9/12 are in keeping with Jamaica's own human rights commitment and its obligations as a party to 7 of the 9 core international human rights instruments. In those instances where it is not a party, appropriate domestic legislation, grounded in the Constitution of Jamaica, is in place to effectively ensure the protection of the rights of each citizen. However, the Government will continue to review those instruments that it has not yet ratified.", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Continue to prepare reports in order to enhance and promote the human rights situation ", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Consider the eradication of the death penalty ", - "values": [ - "3 - Considering action" - ] - }, - { - "text": "Amend the Personal and Family Code to include explicit reference to its international obligations as regards women's rights", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Adopt a definition of torture in conformity with the Convention against Torture and Other Cruel, Inhuman or Degrading Treatment or Punishment", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Develop and implement a comprehensive national action plan to prevent and eliminate child, early and forced marriages", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Continue implementing the policies and programmes aimed at guaranteeing the rights to education, health and food, in addition to combating poverty ", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Take steps to ratify and implement CAT", - "values": [ - "4 - General action" - ] - }, - { - "text": "Circulate and implement the recently adopted United Nations Rules for the Treatment of Women Prisoners and Non-custodial Measures for Women Offenders (the Bangkok Rules), and seek necessary support from the United Nations Office on Drugs and Crime and OHCHR ", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Continue its efforts to improve the justice and legal systems in accordance with the newly adopted Constitution", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Extend an invitation to the Special Rapporteur on Torture", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Continue to work towards the creation of an enabling environment for women and children and girls and addressing the problem of social exclusion that could hinder the full realization of women's rights", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Secure equal rights for boys and girls in the education system and put in place targeted measures to reduce the high dropout rates of girls from high schools", - "values": [ - "4 - General action" - ] - }, - { - "text": "Ratify the Optional Protocol to the Convention against Torture and Other Cruel, Inhuman or Degrading Treatment or Punishment as soon as possible", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Step up efforts to raise awareness through campaigns or other concrete initiatives in order to promote understanding and tolerance toward the Roma minority in the Czech society", - "values": [ - "4 - General action" - ] - }, - { - "text": "Consider the possibility of creating, with the aid and assistance of the international community, a national human rights institution accredited by the International Coordinating Committee of National Human Rights Institutions for the Promotion and Protection of Human Rights ", - "values": [ - "3 - Considering action" - ] - }, - { - "text": "Accelerate the implementation of the Action Plan to enable targeted programming and interventions for the welfare and protection of the most vulnerable children in Botswana ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Consider becoming a party to the Optional Protocol to the International Covenant on Economic, Social and Cultural Rights (OP-ICESCR) ", - "values": [ - "3 - Considering action" - ] - }, - { - "text": "Declare a moratorium on the death penalty and accede to the Second Optional Protocol to the ICCPR", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Further increase the efforts to combat trafficking in persons", - "values": [ - "4 - General action" - ] - }, - { - "text": "Improve equal access to justice, including legal assistance and information and education about legal and human rights, to those who cannot afford private representation ", - "values": [ - "4 - General action" - ] - }, - { - "text": "In preparing for the elections, take concrete measures to ensure that the rights of freedom of opinion, expression and assembly are respected by everybody, including the security forces ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Take measures to combat socioeconomic discrimination, which is a cause of continuous violence against Aboriginal women, and to inform them better of their rights", - "values": [ - "4 - General action" - ] - }, - { - "text": "Continue to implement measures such as promoting cultural understanding toward the eradication of hate crime against social minorities", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Take all measures to guarantee freedoms of expression and association.", - "values": [ - "4 - General action" - ] - }, - { - "text": "Continue to take effective measures in favour of youth employment ", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Ensure the full compliance of Kuwaiti legislation with CEDAW and the effective implementation of the rights enshrined in the Convention ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Desist from extrajudicial killings such as drone strikes and ensure accountability for civilian loss of life resulting from extraterritorial counter terrorism operations", - "values": [ - "4 - General action" - ] - }, - { - "text": "Continue its efforts to further mainstream gender equality in the public sphere as well as to combat domestic violence to protect the rights of women in the private sphere", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Investigate credible allegations of extrajudicial killings and introduce an independent complaint mechanism on the conduct of the security forces ", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Prohibit discrimination on the basis of sex, sexual orientation and gender identity. Such measures would be of great importance to the fight against homophobia as well as for the progress in combating HIV/AIDS in the country", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Act on the recommendations of the Working Group on Arbitrary Detention, and to ratify CAT", - "values": [ - "4 - General action" - ] - }, - { - "text": "Consider ratifying other remaining core human rights conventions.", - "values": [ - "3 - Considering action" - ] - }, - { - "text": "Provide for efficient administrative procedures to make use of the significant financial means available through European Union funds and other sources for projects supporting the development of the Roma.", - "values": [ - "4 - General action" - ] - }, - { - "text": "Continue to request international assistance and advice on successful examples on ways to change traditional social attitudes that accept corporal punishment ", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Accomplish progressively the human right goals as set up by Human Rights Council resolution 9-12.", - "values": [ - "4 - General action" - ] - }, - { - "text": "Provide for the full independence of the judicial branch and the freedom of the press ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Consider ratifying international human rights treaties that it is not yet a State party to ", - "values": [ - "3 - Considering action" - ] - }, - { - "text": "Ensure that assistance is provided to all victims of human trafficking and that the authorities devise specific programmes aiming at the reintegration of victims of human trafficking into the labour market and education system ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Continue to develop measures against domestic violence, maltreatment and abuse, including sexual abuse, and, as recommended by the Committee on the Rights of the Child, explicitly prohibit corporal punishment, not only in schools, but also in the family ", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Ratify the International Covenant on Civil and Political Rights (ICCPR) as quickly as possible and with minimal reservations", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Continue addressing the special needs of women in their strategy for the promotion and protection of human rights of its people ", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Continue efforts to consolidate the rights of the child, protect them from sexual exploitation and combat trafficking in children and child marriage", - "values": [ - "4 - General action" - ] - }, - { - "text": "Broaden through an inclusive public debate the access to abortion for pregnant women, in particular in cases of threat to health, rape and incest", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Work with the African Union to establish the hybrid court set out in the August 2015 peace agreement", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Harmonize a child's protection legislation to international standards ", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Continue its efforts to reduce the number of families suffering from extreme poverty through social programmes", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Continue to strengthen its policies aimed at increasing the enrolment rate in primary and secondary education, and to implement the measures necessary to achieve the Millennium Development Goals in terms of reducing illiteracy rates", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Sign and ratify OP-CAT in the near future ", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Step up efforts to improve conditions in prisons, in particular in relation to overcrowding", - "values": [ - "4 - General action" - ] - }, - { - "text": "Continue consolidating women\u2019s determined participation in public affairs", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Consider establishing a national independent mechanism to monitor all places of detention.", - "values": [ - "3 - Considering action" - ] - }, - { - "text": "Initiate awareness raising and training campaigns so that law enforcement officials, medical personnel and jurists learn how to provide proper care to survivors of gender violence", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Strengthen measures to combat trafficking in persons, in particular those related to the sexual exploitation of women and children", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Continue efforts to disseminate the culture of human rights ", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Broadly promote sexual education, directing it in particular to adolescents, and giving special attention to the prevention of early age pregnancies and the control of sexually transmitted diseases such as HIV/AIDS ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Facilitate, without further ado, the visit of the Special Rapporteur on summary executions and the Special Rapporteur on torture", - "values": [ - "4 - General action" - ] - }, - { - "text": "Establish an official moratorium on executions with the view to abolishing the death penalty", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Continue its efforts in combating human trafficking", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Continue strengthening protection policies in favour of boys and girls, women and persons with disabilities", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Introduce reforms to the judicial system to expedite the administration of justice, including the creation or increase in number of courts for lesser offences, and to study the possibility of implementing a system of probation for those accused of lesser crimes and who do not pose a threat to society.", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Continue to cooperate with the United Nations international human rights treaty bodies", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Ratify the Rome Statute of the International Criminal Court (ICC) and to accede to the Agreement on the Privileges and Immunities of the ICC", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Conduct reforms to diminish the backlog of pre-trial detainees ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Implement policies to promote food security ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Ensure that human rights defenders and witnesses are protected and can freely talk to the International Criminal Court investigative team so that the Court can carry out its mission successfully", - "values": [ - "4 - General action" - ] - }, - { - "text": "Adopt further measures aimed at improving the state of media freedom and protecting the working conditions of journalists and human rights defenders in the Country ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Take measures to guarantee effective access for the women victims of gender-based violence to justice, redress and protection ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Continue the efforts started in order to fight against discrimination of minorities, especially Roma ", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Continue its efforts to implement the national strategy of November 2009 to combat sexual violence and fulfil its action plan, which includes the fight against impunity, the protection of victims and security sector reform", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Continue to engage with human rights organizations, and look to deepen and broaden its engagement it to include a wider representation of groups ", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Strengthen the independent federal-level judicial and legislative oversight of surveillance activities of all digital communications with the aim of ensuring that the right of privacy is fully upheld, especially with regard to individuals outside the territorial borders of the United States", - "values": [ - "4 - General action" - ] - }, - { - "text": "Develop a strategy for preventing and combating all forms of violence against women.", - "values": [ - "4 - General action" - ] - }, - { - "text": "Continue its efforts aimed at ensuring greater respect for the rights of migrants", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Pursue its efforts, with the support of OHCHR, for the submission of its reports to the treaty bodies in due course.", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "End impunity for human rights violations and fulfill legal obligations regarding accountability", - "values": [ - "4 - General action" - ] - }, - { - "text": "Endorse the recommendations of the Special Rapporteur on the situation of human rights defenders.", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Continue to increase substantially spending on health in order to strengthen access to health services and, as such, effective enjoyment by all to the right to health. ", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Ratify the International Convention on the Protection of the Rights of All Migrant Workers and their Families ", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Further strengthen the structure and mandate of the national institution of promotion and protection of human rights", - "values": [ - "4 - General action" - ] - }, - { - "text": "Continue efforts to pass legislation to combat human trafficking in the form of sham marriages", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Adopt the measures necessary to ensure that its social programmes reach the most vulnerable groups of society", - "values": [ - "4 - General action" - ] - }, - { - "text": "Enact laws and promote public policies to fight violence against women, including through the criminalization of violence and sexual attacks", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Move forward as quickly as possible on further development of its judicial system based on the Strategic Plan for the Justice Sector (2011-2030)", - "values": [ - "4 - General action" - ] - }, - { - "text": "Strengthen support for victims of human trafficking", - "values": [ - "4 - General action" - ] - }, - { - "text": "Adopt a human rights based approach to its reconstruction and development process", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Cooperate with the United Nations Independent Expert, including by granting him access to the entire country", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Continue efforts to reduce illiteracy by implementing measures to ensure girl's and women's access to all levels of education ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Enhance efforts to establish and regularly update a countrywide database of human trafficking and enhance the support and assistance offered to the victims of trafficking", - "values": [ - "4 - General action" - ] - }, - { - "text": "Undertake prompt, thorough and impartial investigations of all human rights violations, in particular against women and children and hold those responsible to account", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Consider accession to the United Nations Convention on Transnational Organized Crime and its Protocol to prevent, suppress and punish trafficking in persons, especially women and children", - "values": [ - "3 - Considering action" - ] - }, - { - "text": "Enact legislation on violence against women, and to intensify its efforts to curb gender-based violence", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Publish a detailed plan for the abolition of re-education camps through labour, re-stating the timeframe of this welcomed measure", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Maintain its efforts in upholding national dialogue that would bring the country to a lasting peace, as well as its commitment to continue guaranteeing full exercise of human rights to all its citizens", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Sign and ratify the Optional Protocol to the International Covenant on Economic, Social and Cultural Rights, and ratify the International Convention for the Protection of All Persons from Enforced Disappearance", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Revoke laws on defamation, which limit the capacity of civil society to express a diversity of views.", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Decriminalize sexual relations between consenting adults of the same sex ", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Adopt a policy to strengthen the institution of the family, and develop traditional family values in society ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Take appropriate action to resolve the obstacles that prevent the full implementation of the Avena Judgment of the International Court of Justice and, until this occurs, avoid the execution of the individuals covered in said judgment ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Adopt measures to guarantee effective access to protection and redress for women victims of violence, and strengthen the National Commission on Gender Equality in order to fulfil its mandate", - "values": [ - "4 - General action" - ] - }, - { - "text": "Undertake urgent investigation on the allegation of secret flights of the CIA and take measures to prevent the use of its airports for such purposes.", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Ensure that State institutions and the judiciary uphold human rights and that new legislation does not contravene international human rights law.", - "values": [ - "4 - General action" - ] - }, - { - "text": "Deter police officers, whatever their rank, from excessive use of force or acts of corruption, theft, extortion and other abuses investigate abuses involving the police, hand down disciplinary sanctions against the perpetrators or prosecute them ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Consider the ratification of the International Convention for the Protection of all Persons from Enforced Disappearance", - "values": [ - "3 - Considering action" - ] - }, - { - "text": "Continue the efforts to set up the independent committee to monitor the implementation of laws", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Abolish the exit visa system for foreign workers ", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Ratify and fully align its national legislation with all the obligations under the Rome Statute of ICC", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Continue its efforts to strengthen national reconciliation and national dialogue", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Carefully consider whether the right balance is struck when the main street of Vilnius is made available for annual marches by neo-Nazis on Independence Day, whilst vulnerable groups like the LGBT society are refused to use the same venue, and are referred to less attractive locations", - "values": [ - "3 - Considering action" - ] - }, - { - "text": "Strengthen children's protection by establishing a federal Children's Ombudsman or Commission, address disparities in access to services by all children, establish mechanisms to protect child victims of trafficking and prevent child sexual exploitation by ensuring criminalization of relevant offences ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Step up its implementation of best practices on gender equality and empowerment of women and continue the programmes that are successfully being carried out in the area of gender equality and access of women to decision-making positions.", - "values": [ - "4 - General action" - ] - }, - { - "text": "Reduce administrative obstacles and registration requirements applicable to peaceful religious activities by registered and non-registered religious groups in order to guarantee freedom of religion or belief ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Consider legislative and administrative measures to combat violence on the basis of gender identity or sexual orientation", - "values": [ - "3 - Considering action" - ] - }, - { - "text": "Broaden the scope and application of legal and institutional reforms to address all forms of discriminatory treatment against irregular migrants and asylum seekers with special focus on protecting the rights of vulnerable groups.", - "values": [ - "4 - General action" - ] - }, - { - "text": "Step up efforts to combat crime to work on national plan of action against human trafficking and to prevent sexual slavery and violence in the family", - "values": [ - "4 - General action" - ] - }, - { - "text": "Accede to the Convention on the Non-Applicability of Statutory Limitations to War Crimes and Crimes Against Humanity", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "End the gacaca court system as soon as possible, noting the stated deadline of February 2010 ", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Continue the implementation of its Strategy to combat poverty to achieve the MDGs ", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Take steps to ensure she upholds her international obligations on freedom of expression and freedom of assembly", - "values": [ - "4 - General action" - ] - }, - { - "text": "Continue efforts to elaborate and implement policies aimed at eliminating all forms of discrimination and ensuring equality and full enjoyment of all human rights for all citizens.", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Strengthen cooperation with UNHCR in order to guarantee access to a just procedure in identifying the protection needs of those travelling to or are in Italian territory", - "values": [ - "4 - General action" - ] - }, - { - "text": "Strengthen policies for gender equality to ensure participation of women in the political and labour arenas, both public and private, particularly women from ethnic minorities", - "values": [ - "4 - General action" - ] - }, - { - "text": "Take measures in view to effectively combat violence against women ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Ratify the Optional Protocol to the Convention on the Rights of Child on the sale of children, child prostitution and child pornography (OP-SCR) ", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Consider acceding to the Convention relating to the Status of Stateless Persons", - "values": [ - "3 - Considering action" - ] - }, - { - "text": "Adopt measures that guarantee the rights of citizens to peaceful demonstration and freedom of expression", - "values": [ - "4 - General action" - ] - }, - { - "text": "Pay special attention to the situation of domestic violence and its evolution, particularly because of the possible impact of the economic difficulties on families ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Fully implement the National Food Security Strategy", - "values": [ - "4 - General action" - ] - }, - { - "text": "Allow representatives of international organizations and nongovernmental organizations to work in the country and guarantee the exercise of freedom of expression in conformity with the International Covenant on Civil and Political Rights ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Take all necessary steps towards acceding to the Rome Statute", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Develop comprehensive legislation and policies in favour of persons with disabilities, particularly with regard to non-discrimination, accessibility, education and awareness-raising ", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Continue efforts aimed at protecting and promoting human rights and fundamental freedoms.", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Develop infrastructure in rural areas to enable better access for people to basic social services", - "values": [ - "4 - General action" - ] - }, - { - "text": "Expand and improve the early childhood education provision", - "values": [ - "4 - General action" - ] - }, - { - "text": "Revise the relevant legislation concerning the Waqfs in consultation with the minority with a view to enabling the minority to directly control and to use its own Waqf properties, and to put an end to misuse and expropriation of Waqf properties ", - "values": [ - "3 - Considering action" - ] - }, - { - "text": "Ensure that the operations of intelligence agencies are monitored by an independent oversight mechanism to ensure transparency and accountability", - "values": [ - "4 - General action" - ] - }, - { - "text": "Implement the right to life, freedom of expression and opinion and the freedom of assembly in day-to-day practice", - "values": [ - "4 - General action" - ] - }, - { - "text": "Ratify the Convention on the Rights of Persons with Disabilities, which Monaco signed in 2009 ", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Take necessary steps to ensure the election of the muftis by the Turkish Muslim Minority and repeal the relevant articles of the Law No. 3536 regarding the appointment of imams, which the minority has severely opposed ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Continue with its successful policies to prevent trafficking in persons, especially women and girls ", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Enhance measures on the establishment of grass-roots members-based and members-driven civil society organizations ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Continue its measures in the field of promoting women rights, approving the national plan of action for 2010-2012 to implement the concluding observations of the Committee on the Elimination of Racial Discrimination, incorporating the goals of the Millennium Declaration into the country's development programmes, and meeting the Millennium Development Goals for 2015 ", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Give emphasis on allocating adequate National Funding for the response of the HIV/AIDS problems to implement all required actions in the country", - "values": [ - "4 - General action" - ] - }, - { - "text": "Continue its work in acceding to the core human rights conventions", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Lift reservations to the Convention on the Rights of the Child (CRC)", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Further continue its efforts in the field of protection and promotion of human rights ", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Continue its efforts to further promote participation of women in decision-making in all spheres of public life ", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Exert more efforts and take measures to promote women's rights and protection in accordance to traditional Chinese norms and values, to achieve more progress in various fields", - "values": [ - "4 - General action" - ] - }, - { - "text": "Continue to place people at the centre of development in a harmonious society for all so that this approach can further progress the economic, social and cultural rights", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Ensure religious minorities, including other Christians, are not discriminated against based on their faith ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Proceed with the ratification of the Optional Protocol to the Convention against Torture (OP-CAT) ", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Observe all human rights principles, international conventions and raise awareness among students in higher education institutions regarding human rights values ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Fully respect the right to freedom of expression, association and peaceful assembly by reviewing the laws, policies and programmes that regulate civil society and by amending or repealing any laws that allow the State to use force against peaceful demonstrators, arbitrarily detain protestors, restrict civil space and arbitrarily shut down the activities of civil society organizations. Such laws include articles 336, 339, 345, 346 of the Comprehensive Criminal Code as well as articles 22, 23, 24 of Presidential Decree No. 739", - "values": [ - "3 - Considering action" - ] - }, - { - "text": "Review its practice of imposing capital and corporal punishment and prohibit any form of corporal punishment. ", - "values": [ - "3 - Considering action" - ] - }, - { - "text": "Modify or repeal Article 230 of the Penal Code in order to decriminalize same-sex relations of consenting adults ", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "That the ongoing constitutional reform should provide for the comprehensive promotion and protection of all human rights, with particular emphasis on the rights of women and children ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Authorize the Prosecutor of the International Criminal Court to conduct a mission in Cote d'Ivoire, as prescribed by the Rome Statute ", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Ratify the Convention against Torture and Other Cruel, Inhuman or Degrading Treatment or Punishment, recalling the commitment undertaken by the Government of the Gambia during the first cycle of the UPR", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Adopt legislation to monitor and eliminate violence against women and girls, including child kidnapping", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Fully integrate IDP children in the regular education system ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Continue efforts to combat and eliminate all forms of discrimination against women", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Continue to seek technical cooperation and assistance in the field of human rights education and training ", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Continue its efforts to eliminate all traditional and modern forms of slavery, including forced child labour", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Continue to strengthen the construction of the health care system and ensure timely access to health services for the rural population", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Continue social measures to improve the well-being of those in most need, especially the elderly ", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Continue efforts to ensure access to education for all ", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Prop up efforts for social inclusion of the Roma population", - "values": [ - "4 - General action" - ] - }, - { - "text": "Open temporary shelters for child victims of abuse and neglect, and provide them with the necessary psychological and other support for their full recovery and social reintegration ", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Continue working on the adoption of those international instruments to which it is not State party, including the International Convention on the Protection of the Rights of All Migrant Workers and Members of Their Families", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Further reduce the gender gap by translating the protection of women's rights into programmes that improve their health, education, and means of livelihood", - "values": [ - "4 - General action" - ] - }, - { - "text": "Continue its efforts to reach the Millennium Development Goals by 2015 while expanding higher education ", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Develop specialized programmes and services aimed particularly at the rehabilitation and reintegration of children victims of human trafficking", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Continue to promote gender equality and work to remove all barriers to the full and active participation of women across all spheres of life", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Continue its efforts to establish an institutional and legislative framework for the provision of affordable legal aid and awareness services for all", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Establish a de jure moratorium on the use of the death penalty with a view to its abolition and support the General Assembly resolution on the use of the death penalty ", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Train the police with regard to domestic and sexual violence against women ", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Take all practical measures to prevent the financial crisis that is currently sweeping the nation from affecting citizens' economic, social and cultural rights, and to provide vulnerable groups in the country, especially the unemployed, with all the support and protection ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Continue to strengthen its domestic legal framework and implement its international human rights obligations", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Pursue further measures to strengthen gender equality and guarantee the status of women in society at all levels", - "values": [ - "4 - General action" - ] - }, - { - "text": "Ratify both the CRPD and its Optional Protocol before the next UPR cycle ", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Continue implementing social programmes to promote equity-based development of the country ", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Adopt and implement the national policies on child protection and on the child welfare system", - "values": [ - "4 - General action" - ] - }, - { - "text": "Review the imposition of death penalty for offences related to drug trafficking", - "values": [ - "3 - Considering action" - ] - }, - { - "text": "Intensify programmes and activities and provide training and education on human rights issues to military and police officers ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Ensure the effective implementation of the UN Declaration on Human Rights Defenders and improve the protection of human rights defenders", - "values": [ - "4 - General action" - ] - }, - { - "text": "Adopt the necessary measures to guarantee universal birth registration, with a particular emphasis on indigenous boy and girls", - "values": [ - "4 - General action" - ] - }, - { - "text": "Make necessary amendments to the constitution to ensure full integration of all national minorities", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Adopt subnational actions plans for strengthening implementation of laws prohibiting harmful practices, including but not limited to: trokosi, female genital mutilation, child, early and forced marriage, widowhood rites and practices related to \u201cwitchcraft\u201c", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Adopt the National Action Plan for equal opportunities for persons with disabilities ", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Adopt and implement a concrete plan of action realizing recommendations of treaty bodies and UN human rights mechanisms, and international human rights obligations ", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Carry on its work to implement a national programme for sustainable development that would contribute to the further improvement of the human rights situation in the country ", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Withdraw its reservations to the International Convention on the Elimination of All Forms of Racial Discrimination and the Convention against Torture as these reservations undermine their key objectives", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Sign, ratify and implement the Optional Protocol to the Convention on the Rights of Persons with Disabilities ", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Take all necessary measures to effectively fight against torture and ill-treatment, particularly in places of detention, by creating an independent national preventive mechanism and ratifying the Optional Protocol to the Convention against Torture", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "While noting the efforts to strengthen the judiciary, encourage Poland to make legal amendments that will make it possible to effectively prosecute offences related to torture and other cruel, inhuman or degrading treatments.", - "values": [ - "4 - General action" - ] - }, - { - "text": "Adopt necessary legislation to ensure a fully transparent and participatory process for the selection and appointment of the members of the National Human Rights Commission of Korea, guarantee the independence of their members and ensure that it has sufficient resources", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Disclose the findings of the Commission of Inquiry established to investigate cases of excessive use of force by police", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Suspend summary returns to Greece", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Consider alternative non-custodial measures for migrants in an irregular situation, with particular attention to the specific needs of women, children - including unaccompanied children - and vulnerable categories of migrants", - "values": [ - "3 - Considering action" - ] - }, - { - "text": "Consider raising the minimum age of criminal responsibility", - "values": [ - "3 - Considering action" - ] - }, - { - "text": "Strengthen the policies related to receiving and the integration of migrants and refugees", - "values": [ - "4 - General action" - ] - }, - { - "text": "Ensure that confessions obtained through torture have no value and that the new reform of the Code of Criminal Procedure is effectively carried out with respect to access to counsel and family and limits on the custody period ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Take the necessary steps to abolish the death penalty ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Focus on developing a system allowing effective collaboration between the health, social security, education, and tourism sectors with the aim of adequately tackling all forms of sexual exploitation in the country ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Strengthen its criminal legislation on domestic violence to notably make sure that such violence is considered as an aggravating circumstance ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Review the Law on the Protection of Minors against the Detrimental Effect of Public Information so that it could not be interpreted to prevent carrying out awareness-raising activities on issues of sexual orientation and gender identity", - "values": [ - "3 - Considering action" - ] - }, - { - "text": "Take steps to hold to account the perpetrators of the human rights violations, including sexual and gender-based violence, committed during the violence in Juba in July 2016, more specifically, the perpetrators of the attack on the Terrain Hotel, during which a local journalist was killed and several aid workers were raped", - "values": [ - "4 - General action" - ] - }, - { - "text": "Sign and ratify the human rights instruments already accepted in the previous review ", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Submit the required information to the Committee on the Elimination of Racial Discrimination", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Ensure that administrative detention is subject to the same right to challenge the lawfulness of detention as other forms of detention ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Tighten its legislation on rape, pedophilia and incest and conduct awareness campaigns on this matter in schools and in local communities", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Consider extending a standing invitation to special procedures.", - "values": [ - "3 - Considering action" - ] - }, - { - "text": "Take further measures to protect the environment and human health in the context of ensuring effective ways of sustainable development", - "values": [ - "4 - General action" - ] - }, - { - "text": "Reconsider the ratification of the ICED and promote the prompt acceptance of the CERD's competence, in accordance with art. 14 of the Convention", - "values": [ - "3 - Considering action" - ] - }, - { - "text": "Ratify the core international human rights conventions and ILO conventions ", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "That measures taken to protect refugee rights be in compliance with the internationally recognized norms and standards", - "values": [ - "4 - General action" - ] - }, - { - "text": "Establish a national preventive mechanism that would constitutionally-institutionally guarantee the rights of all people, particularly the rights of minorities ", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Consider strengthening efforts to put a halt to incidents of killings of persons with albinism", - "values": [ - "3 - Considering action" - ] - }, - { - "text": "Continue its significant efforts to promote gender equality, in particular the implementation of the Draft National Gender Policy as well as the proper enforcement of the existing legal frameworks", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Follow the Yogyakarta principles as a guide to assist policy development.", - "values": [ - "4 - General action" - ] - }, - { - "text": "Consider the ratification of the core international human instruments and bringing national legislation in line with the provision of these instruments ", - "values": [ - "3 - Considering action" - ] - }, - { - "text": "Continue taking measures on combating trafficking in persons", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Work towards supporting civil society efforts in promoting human rights by allocating the necessary resources required to achieve its activities in disseminating awareness of human rights principles ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Encourage the adoption in the short term of a bill on the implementation of the Rome Statute", - "values": [ - "4 - General action" - ] - }, - { - "text": "Ensure all security forces are subject to strict control of civilian authorities ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Remove reservations to the Article 16(1) of the Convention on Elimination of All Forms of Discrimination against Women ", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Maintain and develop the positive measures that have been taken, such as for example the setting up of a school system for girls and the training of women police officers and avoid entrenching in the law, discriminatory practices against women.", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Continue to review its legislation and implement practical measures, such as those contained in Kuwait's next Development plan, to eliminate discrimination against women, and to protect and empower Kuwaiti women", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Strengthen measures to combat impunity for acts of violence against women. ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Continue the process of ratifying OP-CAT ", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Ensure reparation, including fair and adequate compensation, for victims of human rights violations by the security forces or to their families where the victim has died", - "values": [ - "4 - General action" - ] - }, - { - "text": "Adopt a comprehensive legislation to address human trafficking", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Develop disability legislation", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Take additional measures to combat discrimination against national minorities, in particular the Sami and the Roma, and against immigrants, refugees and women ", - "values": [ - "4 - General action" - ] - }, - { - "text": "That human rights defenders must be protected and allowed to conduct their work without hindrance, intimidation or harassment ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Clarify the definition of torture in its penal code, and enforce an absolute prohibition of torture under any circumstances ", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Continue efforts to strengthen national human rights institutions", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Continue to strengthen human rights training for police and local government officials, especially on interrogation and investigation methods. Developments in the legal framework take much training and effort to translate into actual practice", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Continue the realization of all national efforts and international cooperation for the establishment of a national human rights institution in accordance with the Paris Principles", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Abolish officially the death penalty in the country", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Continue its four-year food safety program, foreseen in 2012, in order to continue improving nutrition and access to locally produced food for the most vulnerable households in Haiti", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Consider becoming a party to the International Convention for the Protection of All Persons from Enforced Disappearance and consider ratifying the Optional Protocol to the Convention against Torture", - "values": [ - "3 - Considering action" - ] - }, - { - "text": "Strengthen efforts to reduce neo-natal and maternal mortality including by increasing access to sexual and reproductive health services and providing quality health care and facilities to women", - "values": [ - "4 - General action" - ] - }, - { - "text": "Review all laws that are restricting freedom of expression and the press ", - "values": [ - "3 - Considering action" - ] - }, - { - "text": "Consider ratification of the Protocol to Prevent, Suppress and Punish Trafficking in Persons, Especially Women and Children, supplementing the United Nations Convention against Transnational Organized Crime ", - "values": [ - "3 - Considering action" - ] - }, - { - "text": "Consider the abolishment of the death penalty ", - "values": [ - "3 - Considering action" - ] - }, - { - "text": "Enhance its efforts to eliminate gender stereotyping", - "values": [ - "4 - General action" - ] - }, - { - "text": "Continue strengthening its economic and social development", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Take steps to ensure that prisoners under the age of 18 are housed separately from the general prison population ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Address legislative gaps in the field of children rights in order to fully comply with the 2005 recommendations of the Committee on the Rights of the Child.", - "values": [ - "4 - General action" - ] - }, - { - "text": "Ratify the International Convention against the Recruitment, Use, Financing and Training of Mercenaries.", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Take steps to fully implement the Elimination of Violence against Women Law, including by providing training and capacity-building to law enforcement officials, implementing standard, country-wide procedures to record and track complaints of violence against women, and ensuring that all allegations of violence against women are thoroughly investigated and referred to the appropriate authorities under Afghan law ", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Speed up its prospective plan to address the legal gap in its criminal law system so that victims can better exercise the right to participate in the proceedings.", - "values": [ - "4 - General action" - ] - }, - { - "text": "Ensure that the national preventive mechanism against torture becomes operational at the earliest possible time, in particular by completing the process of recruitment of members of the Council for the Prevention of Torture", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Take necessary steps to enforce laws covering violence, including sexual violence, against women and girls and support to victims to ensure that perpetrators are sanctioned ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Ensure prompt, thorough and impartial investigations into allegations of torture and ill-treatment ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Continue the ongoing procedures aimed at creating a national commission of human rights in conformity with the Paris Principles", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Share at the international level, with the support of the United Nations, its experiences of bilateral cooperation in the promotion of the right to health, especially in the areas of training of human resources and of support to health services throughout the world", - "values": [ - "1 - Minimal action" - ] - }, - { - "text": "Improve health, sanitation and habitability conditions in prisons, including a decrease in overcrowding", - "values": [ - "4 - General action" - ] - }, - { - "text": "Continue its ongoing efforts in adopting various national human rights policies based on the National Human Rights Plan 2014-2019, including by providing the necessary budgetary requirements for the actual implementation of those policies", - "values": [ - "4 - General action" - ] - }, - { - "text": "Implement a system to measure progress indicators on economic, social and cultural rights ", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Take further measures aimed at raising awareness about human rights among the population at large", - "values": [ - "4 - General action" - ] - }, - { - "text": "Investigate all cases of corruption in the judicial system", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Continue to give consideration to the human rights perspective in its migration policy and implementation, in collaboration with other European countries which are final destinations of migrants", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Implement the Sorcery and Witchcraft Accusation National Action Plan without delay", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Endeavour to implement the recommendations by CEDAW to eliminate all forms of stereotypical attitudes against Women", - "values": [ - "4 - General action" - ] - }, - { - "text": "Amend its Constitution so as to expand the prohibited grounds of discrimination to include not only gender, but also sexual orientation, disability, health status and economic status ", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Continue its various programmes to enhance the people's right to education, especially in the eradication of illiteracy, by cooperating with the specific governorates, civil society organizations as well as other international organizations", - "values": [ - "4 - General action" - ] - }, - { - "text": "Intensify its national efforts to strengthen human rights and training", - "values": [ - "4 - General action" - ] - }, - { - "text": "Prohibit corporal punishment and put in place an educational system respectful of the physical and psychological integrity of minors ", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Consider ratifying the UNESCO Convention against Discrimination in Education.", - "values": [ - "3 - Considering action" - ] - }, - { - "text": "Continue its efforts in the area of the right to education, in particular, the integration of human rights in sectorial strategies for education, by guaranteeing the inclusion of modules on human rights in the school curricula ", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Extend a standing invitation to all Special Procedures of the Human Rights Council", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Increase public awareness-raising and training of officials designed to tackle cultural justifications for FGM and discrimination against women, with the aim of increasing the number of reported cases under article 333 of the Criminal Code ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Ratify the Optional Protocol to the Convention on the Rights of Persons with Disabilities (CRPD)", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Take effective measures to eradicate the persistent cultural practices that discriminate against women ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Give the Tadamoun national agency the mandate to identify any acts of slavery, propose and implement anti-slavery programmes", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Pursue efforts regarding the fight on violence against women", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Consider the possibility of acceding promptly at least to the main international instruments, such as the International Covenant on Civil and Political Rights, the International Covenant on Economic, Social and Cultural Rights and the International Convention on the Elimination of All Forms of Racial Discrimination.", - "values": [ - "3 - Considering action" - ] - }, - { - "text": "Encourage the development of a National Action Plan on human rights", - "values": [ - "4 - General action" - ] - }, - { - "text": "Consider the adoption of specific legislation on racism, racial discrimination, xenophobia and related intolerance ", - "values": [ - "3 - Considering action" - ] - }, - { - "text": "Take all necessary measures to reduce extreme poverty, hunger and child mortality rates", - "values": [ - "4 - General action" - ] - }, - { - "text": "Conduct a detailed analysis and evaluation of the extent of technical assistance and resources required from OHCHR and from other sources to enable it to carry out its efforts aimed at strengthening the promotion and protection of human rights ", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Ensure full compliance of the Lithuanian legislation and practice with international law which guarantees every person belonging to minority the right to have his or her name in official documents written in minority language", - "values": [ - "4 - General action" - ] - }, - { - "text": "Take the necessary measures to ensure that the national Human Rights Commission is fully functional and equipped with the necessary mandate and resources in accordance with the Paris Principles", - "values": [ - "4 - General action" - ] - }, - { - "text": "Prevent more effectively racially motivated or xenophobic offences, investigate those cases and prosecute the perpetrators ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Take more effective measures to combat racism, racial discrimination and xenophobia against minority groups in the country, in particular the Muslims ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Establish an inter-ministerial mechanism with the participation of civil society to discuss and implement international commitments in the area of human rights, including the recommendations emanating from the universal periodic review.", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Take additional measures for the protection of women and children", - "values": [ - "4 - General action" - ] - }, - { - "text": "Continue in its efforts to fulfil its commitments in the area of human rights and persevere in seeking technical assistance from the Office of the United Nations High Commissioner for Human Rights OHCHR for developing and drafting national reports for the treaty bodies to which it is a party ", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Address the issue of timely reporting to human rights monitoring bodies", - "values": [ - "4 - General action" - ] - }, - { - "text": "Ratify CRPD, CAT, CPED and ICRMW ", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Create a national human rights institution in conformity with the principles relating to the status of national human rights institutions for the promotion and protection of human rights (Paris Principles)", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Do more to provide updated and precise statistics on crimes such as assaults on albinos and extra-judicial killings of elderly women, and that murder of elderly women based on accusations of witchcraft is defined as a specific category in police reports ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Revise article 261 bis of the Swiss Penal Code, the legal instrument against racism, in line with the decision of the Grand Chamber of the European Court of Human Rights regarding the Perinçek case to ensure the freedom of expression on a historical issue which is matter of legitimate scholarly debate", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Ensure that the draft law on ensuring equal rights and equal opportunities for men and women is finalized in accordance with international protection standards and that it is adopted as soon as possible ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Adopt without delay national legislation on domestic violence and create public institutions that offer assistance and protection for victims of domestic violence", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Take further measures to prevent hate crimes, hate speech and discrimination", - "values": [ - "4 - General action" - ] - }, - { - "text": "Abide by the laws of war, especially by immediately ending all deliberate, indiscriminate and disproportionate attacks against civilians", - "values": [ - "4 - General action" - ] - }, - { - "text": "Continue to strengthen measures to combat human trafficking and child labour ", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Continue its efforts in training and capacity-building programmes for government and law enforcement officials in order to strengthen efficiency in the promotion and protection of human rights within the existing laws and policies ", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Bilateral and other engagement to combat the phenomenon of human smuggling and trafficking in persons will be enhanced to curb these activities in keeping with applicable standards", - "values": [ - "4 - General action" - ] - }, - { - "text": "Cooperate with special procedures mandate holders", - "values": [ - "4 - General action" - ] - }, - { - "text": "Universal periodic review follow-up: the inter-institutional commission created to prepare the universal periodic review national report would become a permanent body to follow up on the recommendations resulting from the review. The Ombudsman would participate in the commission, and civil society would be consulted. Civil society organizations could even become members of the commission", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Ratify the 1961 Convention on the Reduction of Statelessness ", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Train and prepare public officials responsible for preparing State reports", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Consider the total abolition of the death penalty", - "values": [ - "3 - Considering action" - ] - }, - { - "text": "Share with the international community its experience in promoting the right to development and poverty reduction", - "values": [ - "1 - Minimal action" - ] - }, - { - "text": "Continue efforts to promote economic growth through its national development plans and ensure greater work opportunities for its youth and women", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Italy worked closely with the UN system and its Treaty Bodies to actively respond to their recommendations. It regularly submitted periodic reports and is committed to submit by 2014 the reports concerning the implementation of ICCPR and CAT.", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Adopt concrete measures to ensure protection of journalists and human rights defenders against intimidation, death threats and enforced disappearances, and ensure full investigation of any such cases as well as prosecution of their perpetrators.", - "values": [ - "4 - General action" - ] - }, - { - "text": "Integrate the Rabat Plan of Action on the prohibition of advocacy of national, racial or religious hatred that constitutes incitement to discrimination, hostility or violence in the national legislation regulating the media and religious institutions, and ensure the actual implementation of the Plan ", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Further efforts towards addressing the challenge of maternal and child mortality ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Seek technical expertise and work with OHCHR to prepare a Common Core Document that would alleviate its treaty-reporting burden ", - "values": [ - "1 - Minimal action" - ] - }, - { - "text": "Move to increase monitoring and enforcement of its system of child protection, building on its recent commendable amendments to the criminal code which tightened penalties for child molestation, with the aim of decreasing the level of child physical and sexual abuse and neglect ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Increase efforts to raise awareness of the precedence of constitutional law over customary laws and practices to promote gender equality.", - "values": [ - "4 - General action" - ] - }, - { - "text": "Consider new concrete guarantees so that human rights defenders can do their work", - "values": [ - "3 - Considering action" - ] - }, - { - "text": "Continue programmes to fight HIV/AIDS", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Respond favourably to all outstanding requests for visits by the Special proceduress and consider issuing a standing invitation to the Special proceduress, as recommended previously ", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Continue to expand human rights awareness as being complementary to the Samoan way of life", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Take steps to improve the status of religious minorities and ensure protection for religious communities from persecution ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Implement measures to combat racial stereotyping and discriminatory attitudes against migrants, including through awareness-raising campaigns and by enforcement of legislation against racial discrimination in all fields of public life ", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Institute a formal reconciliation process leading to an agreement with Aboriginal and Torres Strait Islander people ", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Take steps to devise a national strategy for delivering justice, to include the police, the judiciary, civil society and government", - "values": [ - "4 - General action" - ] - }, - { - "text": "Take measures to fully implement the law against discrimination of 2011 ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Ratify OP-CAT, enact and implement laws and administrative measures to combat torture and make a declaration recognizing CAT's competence to receive communications", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Apply a moratorium on the death penalty with a view to abolishing capital punishment", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Enact anti-discrimination legislation in the field of access to private and public housing.", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Strengthen its cooperation with the United Nations and its mechanisms on human rights and humanitarian matters with a view to building national capacities and improving the people's well-being ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Establish a "one stop" centre to handle human rights treaty bodies and reporting obligations ", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Continue to take positive steps to enhance the enjoyment of economic, social and cultural rights, especially in the areas of education, health and the care of the disabled", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "End the construction of all Israeli settlements in the occupied Arab territories", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Remain committed to poverty reduction, improving the living standards of people and realizing Millennium Development Goals", - "values": [ - "4 - General action" - ] - }, - { - "text": "Strengthen its labour laws, and improve living and working conditions of foreign workers \n", - "values": [ - "4 - General action" - ] - }, - { - "text": "Develop a compulsory education policy for primary school-aged children and continue to promote the importance of education ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Further strengthen the law enforcement and judicial system in the effort to address impunity and prevent the incidence of trafficking and domestic violence as well as the sexual abuse of women and girls ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Review its Nationality Law in order to ensure that a Jordanian mother married to a non-Jordanian man has the right to confer her nationality to their children", - "values": [ - "3 - Considering action" - ] - }, - { - "text": "Provide all necessary resources to further strengthen the Ombudsman and the Commission for Protection against Discrimination and bring them in line with the Paris Principles", - "values": [ - "4 - General action" - ] - }, - { - "text": "Make all possible efforts to speed up the adoption process of the law to combat all forms of terrorism", - "values": [ - "4 - General action" - ] - }, - { - "text": "Ensure the protection of private life and prevent cases of unwarranted access by special agencies to the personal information of citizens on the Internet when there is no connection with any illegal actions", - "values": [ - "4 - General action" - ] - }, - { - "text": "Consolidate the gains made in granting children access to education by maintaining the emphasis on the construction of schools and recruitment of teachers", - "values": [ - "4 - General action" - ] - }, - { - "text": "Establish a national human rights institution accredited by the International Coordinating Committee of National Institutions for the Promotion and Protection of Human Rights ", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Intensify its efforts in combating gender-based violence in all its forms ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Continue efforts to enhance public awareness on issues of ethnic and racial equality and to combat violence against indigenous peoples", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Continue undertaking measures to strengthen the legal system in accordance with the international human rights treaties which it has accepted, especially those referring to the rights of children and young people ", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Criminalize female genital mutilation ", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Continue to develop the relevant programs to implement CRPD", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Carry out actions to improve the current strategy to combat trafficking in human beings, taking into account, among other, intensifying investigations, training professional staff and creating assistance centres ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Step up its cooperation with the special procedures of the Human Rights Council by responding positively to the pending visit requests and eventually consider extending a standing invitation to all the special procedures mandate holders of the Human Rights Council ", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Maintain its commitment to realizing the Millennium Development Goals in parallel with striving for economic success ", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Sign and ratify the Optional Protocol to the ICESCR ", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Enact appropriate measures and legislation to fight against all forms of discrimination and violence against women", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Continue its efforts to further improve its relevant legal and administrative frameworks and policies, in conformity with its international commitments", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Guarantee the independence of the National Human Rights Commission and take the necessary steps to enable the NHRC to regain its A rating, in compliance with the Paris Principles", - "values": [ - "4 - General action" - ] - }, - { - "text": "Continue harmonization of its legislation with norms of the Council of Europe in the area of preventing and combating violence against women, including domestic violence, and ensure the effective implementation of legislation", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Take measures to address cases of detention whose length goes beyond the limit established by the European Union return directive", - "values": [ - "4 - General action" - ] - }, - { - "text": "Step up efforts to address the issue of prison overcrowding", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Promote freedom for trade unions to ensure fair treatment in the event of labour disputes, especially when they involve migrant workers, and ensure that all domestic labour laws fully comply with the Covenant on Economic, Social and Cultural Rights ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Sign and ratify the Optional Protocol to the ICESCR and the Optional Protocol to the Convention on the Rights of the Child on a communications procedure", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Implement the national plan of action for human rights for 2012 - 2015 and assess its implementation", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Adopt policies and measures in order to prevent the sexual exploitation of children and to facilitate the social integration of those who were victims of such a crime", - "values": [ - "4 - General action" - ] - }, - { - "text": "Take active measures to review its national legislation with the aim of eliminating existing gender-based discriminatory provisions", - "values": [ - "4 - General action" - ] - }, - { - "text": "Ensure that the primacy of the civil legal system prevail over military judicial process across the entire territory", - "values": [ - "4 - General action" - ] - }, - { - "text": "Consider setting up a national human rights institution in line with the Paris Principles ", - "values": [ - "3 - Considering action" - ] - }, - { - "text": "Amend the federal Marriage Act to allow same-sex couples to marry by changing the definition of marriage, and provide full recognition of same-sex marriages from overseas", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Step up its policies to address racial discrimination, racial profiling and hate speech, especially against Muslim women, minority group women and asylum seeking women", - "values": [ - "4 - General action" - ] - }, - { - "text": "Continue to work to strengthen national human rights mechanisms", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Accede to the International Covenant on Civil and Political Rights", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Abolish the practice of sterilization of persons with disabilities without their free and informed consent", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Guarantee, within the framework of the Constitutional reform, both individual and collective rights, under the principles of equality, taking into account its international human rights obligations", - "values": [ - "4 - General action" - ] - }, - { - "text": "Take concrete and effective actions to implement the existing legal framework and to tackle the widespread impunity for crimes related to sexual violence ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Establish conditions that would allow for an international and independent investigation to establish the facts concerning Andijan.", - "values": [ - "4 - General action" - ] - }, - { - "text": "Continue working at the national and international levels of the issue of human rights and climate change", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Strengthen its institutional framework by establishing an independent human rights institution in accordance with the Principles relating to the status of national institutions for the promotion and protection of human rights (Paris Principles)", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Regarding the situation of LGBT community, adopt legislative and political measures to establish a specific framework of protection from discrimination for sexual preference. Additionally, put in place public awareness raising campaigns on the matter ", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Increase the capacity of the Ombudsman's Office, the Belize Police Department's Professional Standards Board, and other human rights-related institutions through internal efforts and by seeking assistance in these areas from international development partners", - "values": [ - "4 - General action" - ] - }, - { - "text": "Designate an official body for a comprehensive review and recommendations in view to promote an informed debate on the reform of the death penalty", - "values": [ - "3 - Considering action" - ] - }, - { - "text": "Continue its process towards the ratification of ICRMW ", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Implement the recommendations of the report of the Bahrain International Commission of Inquiry in such a way to foster a spirit of national unity and consensus conducive to the advancement of the reform process in line with the legitimate aspirations of the people ", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Abolish the death penalty or establish a moratorium on its use", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Continue efforts to consolidate a national human rights institution in accordance with the Paris Principles ", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Enact legislation to provide for freedom of information requests", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Take effective measures to implement the National Strategy for the protection and promotion of children's rights (2008-2013) ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Adopt measures necessary to achieve the Millennium Development Goals", - "values": [ - "4 - General action" - ] - }, - { - "text": "Establish an independent commission of inquiry into the events surrounding the Tivoli Gardens incident in May 2010", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Review the Criminal and Criminal Procedural Codes in order to bring them into line with international standards", - "values": [ - "3 - Considering action" - ] - }, - { - "text": "Provide a follow-up to the initiatives to strengthen the protection of rights of the child", - "values": [ - "4 - General action" - ] - }, - { - "text": "Continue its national efforts to improve the legal and institutional frameworks, implement policies and programmes focusing on and promoting the rights of women, children, persons with disabilities and older persons", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Continue its efforts to build an inclusive, diverse and tolerant society ", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Reinforce human rights training to the law enforcement personnel and to members of security forces and to hold duly accountable all those responsible for extrajudicial killings and other excessive use of force", - "values": [ - "4 - General action" - ] - }, - { - "text": "Accede to the Convention against Torture and Other Cruel, Inhuman or Degrading Treatment or Punishment as soon as possible ", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Continue strengthening the independence and impartiality of the judiciary to ensure the right to a fair trial, including by increasing the transparency of the working methods within the High Council of Justice, the appointment of prosecutors and the allocation of court cases", - "values": [ - "4 - General action" - ] - }, - { - "text": "Amend the Persons with Disability Act of 2006 in line with the Convention on the Rights of the Persons with Disabilities", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Consider adopting measures to ensure education for all children with disabilities", - "values": [ - "3 - Considering action" - ] - }, - { - "text": "Ensure detainees have prompt access to a lawyer, doctor and family members from the time that they are taken into custody, and consider the establishment of an independent health service to conduct examinations of detainees upon arrest and release ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Establish a de jure moratorium on the death penalty with a view to total abolition thereof", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Ensure that the security forces receive clear guidance and, if needed, training, so that they can act at all times in conformity with international standards in the area of respect for the rights of peoples, in particular with regard to the right to life, the prohibition of torture and other inhuman and degrading treatment ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Set up a strategy for eliminating discriminatory cultural practices and stereotypes and repealing all discriminatory laws against women, and adopt a law criminalizing female genital mutilation ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Take effective measures to combat racism and incitement to racial hatred ", - "values": [ - "4 - General action" - ] - }, - { - "text": "End the detention of all children, whether accompanied, unaccompanied or separated, and implement, without delay, alternatives to detention in law and in practice", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Continue to allocate more resources in the area of sport for all youth", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Ratify the Convention against Torture and Other Cruel, Inhuman or Degrading Treatment or Punishment and ensure that allegations of ill treatment are investigated thoroughly and independently and that the individuals responsible are held to account", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Strengthen the rule of law by conforming the national legislation to the Rome Statute of the International Criminal Court and by strengthening the accountability mechanisms, as well as ensuring that legislation, bills and other legal documents are accessible to the population", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Consider establishing a national human rights institution in line with the Paris Principles ", - "values": [ - "3 - Considering action" - ] - }, - { - "text": "Take further steps to protect women and girls against violence and discrimination and put in place appropriate policy measures in that regard ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Facilitate procedures for holding peaceful protests and refrain from criminally punishing the exercise of the right to peaceful assembly, including through unregistered peaceful assemblies", - "values": [ - "4 - General action" - ] - }, - { - "text": "Devise and implement policies to facilitate access to justice and support for victims of violence against women, including human trafficking", - "values": [ - "4 - General action" - ] - }, - { - "text": "Fully guarantee freedom of expression and refrain from arbitrary arrest of journalists", - "values": [ - "4 - General action" - ] - }, - { - "text": "Spare no effort to expedite the establishment of an independent national human rights institution ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Make increased efforts to protect children from economic exploitation, inter alia through the introduction of legislation establishing the minimum age for admission to employment and ensuring decent working conditions", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Take measures to guarantee effective access to justice and protection for women victims of gender based violence", - "values": [ - "4 - General action" - ] - }, - { - "text": "Take effective measures in legislation and law enforcement to honestly combat racism, xenophobia and discrimination against minority groups to ensure all human rights of minorities through various means of harmonious ethnic co-existence and common development", - "values": [ - "4 - General action" - ] - }, - { - "text": "Take steps to ensure that prison conditions are independently monitored, perpetrators of acts of torture are duly prosecuted and detainees have the right to a fair trial.", - "values": [ - "4 - General action" - ] - }, - { - "text": "Continue to take all possible measures to improve access to quality education without gender discrimination ", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Establish a moratorium on executions, followed by eventual abolition of the death penalty", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Continue increasing efforts to create an independent and autonomous truth commission in accordance with international standards, that may enable the establishment of a fair and transparent mechanism to ensure effective remedy for victims of human rights violations", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Continue its efforts to end discrimination against women by taking all necessary measures to eliminate obstacles to their access to all fields of society, including the justice system ", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Ensure that all children are registered at birth and provide unregistered children with personal documents", - "values": [ - "4 - General action" - ] - }, - { - "text": "Ensure full application of the 1951 Convention relating to the Status of Refugees", - "values": [ - "4 - General action" - ] - }, - { - "text": "Abrogate legislation criminalizing homosexuality, in order to fully respect the principles of equality and non-discrimination for all persons", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Continue and strengthen efforts to integrate children with disabilities to mainstream education", - "values": [ - "4 - General action" - ] - }, - { - "text": "Continue the implementation of the Crime Prevention Strategy plan, which fosters the peaceful coexistence of the society members and ethnic minorities", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Take further efforts to raise awareness of and increase access to health service facilities and medical assistance and to make family planning information available to women and girls, including in rural areas, taking into account in this regard, among others, the recommendations of the Committee on the Elimination of Discrimination against Women", - "values": [ - "4 - General action" - ] - }, - { - "text": "Immediately dismantle all political prison camps and abolish the practice of forced labour", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Immediately end extrajudicial executions and the practice of collective punishment ", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Sustaining its efforts to provide protection and support of the family ", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Investigate all cases of torture and bring perpetrators to justice ", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Sign and ratify CRPD and CED", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Ratify ICESCR, CAT and CEDAW and CED", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Pursue development policies and programmes aimed at poverty eradication ", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Take all necessary measures to establish a national committee on the rights of the child at the earliest possible date", - "values": [ - "4 - General action" - ] - }, - { - "text": "Take all necessary measures to end all forms of discrimination still existing in Saint Kitts and Nevis and analyse the possibility of creating a specific law on discrimination based on disability, language, sexual orientation, gender identity or social status", - "values": [ - "3 - Considering action" - ] - }, - { - "text": "Consider signing and ratifying CRPD to enhance the protection of their rights and improve their quality of life ", - "values": [ - "3 - Considering action" - ] - }, - { - "text": "Ensure that its citizens can freely engage in the UPR process", - "values": [ - "4 - General action" - ] - }, - { - "text": "Take the necessary steps to ensure police receive the information, training and equipment needed to deliver their duties in accordance with the country's international human rights obligations", - "values": [ - "4 - General action" - ] - }, - { - "text": "Review the new federal immigration laws so to take into consideration the humanitarian aspects of a possible expulsion of foreign citizens with permanent resident visas, especially if they do not speak the language of their citizenship or have no longer connections with the country of origin of their family", - "values": [ - "3 - Considering action" - ] - }, - { - "text": "Establish an independent investigation mechanism for allegations of torture and other cruel and inhuman or degrading treatment committed by police forces and to prevent such violations by public agents", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Continue efforts to achieve universal primary education in line with the vision of the National Plan of "Education for all"", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Continue pursuing appropriate, sensitized polices such as the National Strategy on Resolving the Issue of Refugees and Internally Displaced Persons for the period 2011-2014 to address the situation of such persons in a durable, sustainable manner ", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Ratify the Optional Protocol to the International Covenant on Economic, Social and Cultural Rights (OP-ICESCR), the Second Optional Protocol to the International Covenant on Civil and Political Rights (ICCPR-OP2), OP-CAT, the Optional Protocol to the Convention on the Rights of the Child on the involvement of children in armed conflict (OP-CRC-AC), and CED ", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Strengthen the measures to promote the social and economic inclusion of the Batwa community", - "values": [ - "4 - General action" - ] - }, - { - "text": "Adopt specific additional measures to strengthen the fight against impunity with regard to cases of sexual violence against women and provide greater care for victims ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Continue to work, in partnership with Aboriginal and Torres Strait Islander communities, to reduce indigenous incarceration rates", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Adopt an adequate legal framework to combat all forms of violence against women and put in place an effective complaint system in order to bring the perpetrators of these acts before justice ", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Hold security forces accountable for human rights violations and establish a system for human rights monitoring and to promote accountability for gross violations of human rights", - "values": [ - "4 - General action" - ] - }, - { - "text": "Align the national legislation on freedom of expression, association and assembly with country's international HR obligations ", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Pursue reforms of the Judiciary as well as its efforts to guarantee and facilitate access to justice for all its citizens ", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Become a State party to the International Covenant on Economic, Social and Cultural Rights", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Revise and harmonize anti-discrimination laws to ensure equal protection on all grounds of discrimination ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Become a party to the Convention against Torture and Other Cruel, Inhuman or Degrading Treatment or Punishment and its Optional Protocol ", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Continue to prioritise policies aimed at promoting the enjoyment of women's rights and prevention of sexual violence", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Continue its efforts to guarantee progress and improvement of the Cuban society as well as its sustainable development, the improvement of their living standard and progress towards a more just, free, independent and equitable society ", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Regarding the legal services in the hinterland, Guyana had expanded those services and had committed to continue to work on that issue", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Establish a moratorium on the death penalty, with a view to its elimination", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Adopt necessary measures to guarantee the full enjoyment of the rights to freedom of assembly and association, and should not selectively curtail the full enjoyment of these rights, and by reforming the provisions contained in the Public Order and Security Act and more specifically in the Criminal Procedure and Evidence Act, which occasionally have hindered the work of human rights defenders. Rescind the provision contained in Section 121 of the Criminal Procedure Code that can extend to 7 days (in addition to the first 48 hours) the time that security forces can keep a person detained before bringing charges ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Continue to make efforts to ensure that children with disabilities and those without parents fully enjoy their right to health, education and other social and cultural rights", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Consider ratifying the Convention relating to the Status of Stateless Persons of 1954 and the Convention on the Reduction of Statelessness of 1961", - "values": [ - "3 - Considering action" - ] - }, - { - "text": "Develop a core common document which serves to implement specific measures to ensure compliance with its reporting obligations to human rights treaty bodies", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Continue, with the support of donor countries, its National Capacity Building Program with the objective of expanding the scope of the training and capacity building activities to government personnel", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Ratify the main pending human rights instruments, particularly the two Optional Protocols to ICCPR", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Ensure strict compliance of laws relating to gender-based violence", - "values": [ - "4 - General action" - ] - }, - { - "text": "Consider the suggestions made by CERD in respect to the acquisition of dual citizenship", - "values": [ - "3 - Considering action" - ] - }, - { - "text": "Address the concerns raised by the Special Representative of the Secretary-General on the situation of human rights defenders regarding the registration of NGOs with particular regard to the need to avoid unduly constraining the activities of civil society.", - "values": [ - "4 - General action" - ] - }, - { - "text": "Consider as a priority the most vulnerable groups in its population, in particular women and children", - "values": [ - "3 - Considering action" - ] - }, - { - "text": "Continue its policy of tolerance and diversity among the different ethnic and religious groups", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Complete the process of establishing a National Human Rights Commission in conformity with the Paris Principles", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Develop further actions to improve community services and support for persons with disabilities", - "values": [ - "4 - General action" - ] - }, - { - "text": "Ensure that blasphemy laws and their implementation are in line with international law", - "values": [ - "4 - General action" - ] - }, - { - "text": "Respond positively to the calls of the international community for the release of prisoners of conscience and engage in a meaningful and inclusive dialogue with all political parties and ethnic groups and other relevant stakeholders towards democratization and national reconciliation ", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Consider acceding to the International Convention on the Protection of the Rights of All Migrant Workers and Members of Their Families (ICRMW) ", - "values": [ - "3 - Considering action" - ] - }, - { - "text": "Complete the ratification process of the Rome Statute as soon as possible and ensure that the Statute and the Agreement on Privileges and Immunities of the International Criminal Court are effectively implemented in national legislation.", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Repeal the legal provisions which criminalize LGBT person", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Adopt a comprehensive national policy aimed at the fight against child prostitution and the trafficking of children ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Ensure that the new Constitution establishes the right to freedom of thought, conscience, religion and belief, as well as the freedom to practise a religion or conviction, except to the extent at which it is necessary to protect the fundamental rights and freedoms of others ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Promptly ratify the Optional Protocol to the Convention on the Rights of Persons with Disabilities and the Indigenous and Tribal Peoples Convention, 1989 (No. 169), of the International Labour Organization", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Encourage the Government to develop a child-friendly centre for disaster risk protection", - "values": [ - "4 - General action" - ] - }, - { - "text": "Repeal or amend the Internal Security Act and the Emergency Public Order and Preventive Ordinance in accordance with its international human rights obligations, and in the meantime refrain from applying them to political activists, journalists or others engaged in peaceful activities", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Provide sufficient financial and human resources to the new Ministry for Justice and Human Rights and to the Office of the Special Prosecutor for Human Rights, so that they can perform their function of preventing and effectively investigating cases of human rights violations, particularly those committed against journalists and human rights defenders", - "values": [ - "4 - General action" - ] - }, - { - "text": "Enact legislation which specifically defines and criminalizes torture and stipulates effective measures to prevent and punish any violations", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Finalize and enact anti-trafficking legislation and, in the interim, enforce existing trafficking provisions of the 2009 Criminal Code", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "The Government of Vanuatu commits to continuing and completing the implementation identified under the PAA. Furthermore, Vanuatu commits to working with partners nationally, regionally and internationally to implement its human rights obligations.", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Speed up its constitutional reforms to abolish the death penalty", - "values": [ - "4 - General action" - ] - }, - { - "text": "Continue prioritizing the reform of justice, under the principle of separation of powers ", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Ensure that all children complete their 10-year compulsory education by taking concrete action to address reasons behind school non-attendance and by providing effective sanctions for those who obstruct children from attending schools ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Take measures to effectively address the high dropout rates from school, especially of girls in primary education ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Investigate reports that Burundian refugees have been recruited from camps in Rwanda into armed groups, and ensure that the civilian nature of refugee camps is fully respected", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Implement the national action plan to combat discrimination in all its forms", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Step up efforts and adopt appropriate measures to combat any form of discrimination against minorities as a whole", - "values": [ - "4 - General action" - ] - }, - { - "text": "Boost the approval of the legislation oriented to guarantee the autonomy of people with disabilities to improve their social inclusion", - "values": [ - "4 - General action" - ] - }, - { - "text": "Respect obligations under ICCPR by freeing persons currently under administrative detention and by putting an end to arbitrary detention and torture ", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Adapt the practice in which unaccompanied minors are being held in migrant detention together with unrelated adults, and give them the benefit of the doubt until their age has been determined", - "values": [ - "4 - General action" - ] - }, - { - "text": "Continue its efforts to promote the harmonization of national legislation with international treaties ", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Continue strengthening programmes to reduce poverty through the National Initiative for Human Development", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Consider introducing temporary special measures in areas where women are underrepresented or disadvantaged and raise awareness among parliamentarians and government officials about the necessity of such measures", - "values": [ - "3 - Considering action" - ] - }, - { - "text": "Fully guarantee freedom of expression, particularly by ensuring that journalists can carry out their activities unhindered", - "values": [ - "4 - General action" - ] - }, - { - "text": "Respect its international commitments on fundamental rights related to non-discrimination, prevent the adoption of a law prohibiting freedom of expression with regards to homosexuality and raise awareness of civil society on combating all forms of discrimination, including discrimination based on sexual orientation and gender identity ", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Consider ratifying outstanding international human rights instruments, and update domestic legislation to be in line with the provisions of those international treaties ", - "values": [ - "3 - Considering action" - ] - }, - { - "text": "Accelerate the Parliamentary adoption procedure of the reform Sexual Offences and Domestic Violence Bill", - "values": [ - "4 - General action" - ] - }, - { - "text": "Consider its accession to the Convention against Torture and Other Cruel, Inhuman or Degrading Treatment or Punishment", - "values": [ - "3 - Considering action" - ] - }, - { - "text": "Maximize legislative, administrative and police measures to combat trafficking of women and girls, which particularly affects foreign women.", - "values": [ - "4 - General action" - ] - }, - { - "text": "Adopt and apply a comprehensive anti-discrimination law", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Respond to questionnaires of special procedure mandate holders ", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Take all appropriate steps to prevent the arbitrary arrest, torture and other ill treatment of those exercising their fundamental rights to, inter alia, freedom of expression or opinion and assembly, and bring perpetrators of such acts to justice, in accordance with international standards of fair trial ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Examine the measures needed to expedite trials and judgments, notably in the criminal area, and examine the possible modification of the criminal system to make it possible for victims to participate in trials.", - "values": [ - "4 - General action" - ] - }, - { - "text": "Take measures to regularize the situation of stateless residents in Kuwait, as well as measures for their integration in society that guarantee their economic, social and cultural rights", - "values": [ - "4 - General action" - ] - }, - { - "text": "Guarantee that defamation is punishable only through civil law and that the compensation awarded is proportionate to the damage caused", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Continue to strengthen its measures to counter human rights violations against women and girls, in particular domestic violence, and at the same time enhance its measures to promote the social participation of women and girls", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Consider positively the request for a visit by the Special Rapporteur on the promotion and protection of the right to freedom of opinion and expression and eventually extend a standing invitation to all special procedures of the Human rights Council", - "values": [ - "3 - Considering action" - ] - }, - { - "text": "Enforce more effectively the child labour and trafficking laws ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Take further measures to facilitate the entry into the army and civil service of under-represented ethnic groups in order to better reflect the cultural and ethnic diversity of the Togolese society and enhance the reconciliation process ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Involve civil society, including NGOs, academics, and research institutions in the follow-up work to this review, as noted in the national report of Peru.", - "values": [ - "4 - General action" - ] - }, - { - "text": "End early marriages and the trafficking of minors", - "values": [ - "4 - General action" - ] - }, - { - "text": "Adopt specific and comprehensive legislation against direct and indirect discrimination", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Continue to exert more effort to abolish child trafficking and sexual abuse of children and guarantee health and psychological care especially to the victims of rape, Rehabilitate them and support their inclusion in society, Ensure the prosecution and punishment of the perpetrators of those crimes and that they will not be exonerated ", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Concentrate efforts to establish an independent, efficient, responsible and properly resourced judicial system", - "values": [ - "4 - General action" - ] - }, - { - "text": "Accede to and implement the 1954 Convention relating to the Status of Stateless Persons, the 1961 Convention on the Reduction of Statelessness, the 1951 Convention relating to the Status of Refugees and article 7 of the Convention on the Rights of the Child to end statelessness and guarantee nationality for affected children", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Provide all eligible citizens with the benefits to which they are entitled, including pensions and social payments, regardless of their status as displaced persons or their place of residence in their own country", - "values": [ - "4 - General action" - ] - }, - { - "text": "As a first step, consider establishing an official moratorium and supporting the next resolution of the General Assembly on a global moratorium on the death penalty, with a view to abolishing it in the future ", - "values": [ - "3 - Considering action" - ] - }, - { - "text": "Ensure the right to access to quality education for vulnerable groups of people, including women and children", - "values": [ - "4 - General action" - ] - }, - { - "text": "Adopt a law on female genital mutilation and other harmful practices against women and girls, by criminalising them specifically as offences ", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Strengthen measures to reduce poverty amongst vulnerable groups", - "values": [ - "4 - General action" - ] - }, - { - "text": "Address, as a matter of urgency, the reportedly widespread violence against women, including a pursue of appropriate public awareness raising campaigns against the traditional negative social attitudes and stereotypes ", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Show more understanding and flexibility during the expulsions of undocumented people and to take into account the social and humanitarian aspects of these families", - "values": [ - "4 - General action" - ] - }, - { - "text": "Reconsider the recommendation made from its first UPR cycle on the collection of statistics based on the notions of ethnic origin or identity and in accordance with conditions of confidentiality and objectivity as given in the French Council of State's opinion of 1 April 2010", - "values": [ - "3 - Considering action" - ] - }, - { - "text": "Pursue efforts to ensure gender equality and combat violence against women and children", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Accede to the Optional Protocol to the International Covenant on Civil and Political Rights, the Second Optional Protocol to the International Covenant on Civil and Political Rights, aiming at the abolition of the death penalty, the Optional Protocol to the Convention against Torture and Other Cruel, Inhuman or Degrading Treatment or Punishment, and the Optional Protocol to the Convention on the Rights of the Child on the sale of children, child prostitution and child pornography", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Ratify the International Convention for the Protection of All Persons from Enforced Disappearance (CPED), the Rome Statute of the International Criminal Court (ICC), the Optional Protocol to CEDAW, the Optional Protocol to the Convention on the Rights of Persons with Disabilities (OP- CRPD) and the Optional Protocol to CRC on the involvement of children in armed conflict (OP-CRC-AC)", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Continue efforts to harmonize its national legislation with international human rights instruments to which it is party.", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Implement a comprehensive approach to combating all forms of violence against women, and criminalize the act of rape and other sexual crimes in the Model Penal Code, as recommended by the Committee on the Elimination of Discrimination against Women ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Continue strengthening its Court of Justice with a view to its carrying out its constitutional role without fear or favour.", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Canada said it was committed to taking decisive steps to eliminate racism and address discrimination, which is fundamentally repugnant to Canadian values.", - "values": [ - "4 - General action" - ] - }, - { - "text": "Consider acceding to the Optional Protocol to the Convention on the Elimination of All Forms of Discrimination Against Women (OP-CEDAW)", - "values": [ - "3 - Considering action" - ] - }, - { - "text": "Heed the call of CEDAW to promote shared parental and caring responsibilities of women and men", - "values": [ - "4 - General action" - ] - }, - { - "text": "The Government is strongly committed to progressively realizing the rights of differently abled persons.", - "values": [ - "4 - General action" - ] - }, - { - "text": "Uphold the inherent right to life by ensuring the right to liberty and security of the human person and by abolishing the death penalty", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Sign and ratify the Optional Protocol to ICESCR ", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Establish a comprehensive national birth registration system for foreign nationals to ensure the births of their children are registered", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Continue work on raising awareness and enhancing training and capacity-building in the field of human rights for government institutions, particularly internal security services and military forces, in accordance with international standards", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Amend its criminal legislation so as to bring it into line with ICERD in order to overcome the fact that racial discrimination is viewed as a minor infraction punishable by a fine, as stated by the Committee on the Elimination of Racial Discrimination and the Committee on Economic, Social and Cultural Rights \n\n", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Repeal without delay all legislation that discriminates against women, including discriminatory provisions in its criminal and civil law", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Continue to combat violence against women, particularly female genital mutilation and sexual violence, ensure that this violence is always prosecuted, and continue to organize awareness-raising campaigns on this issue", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Continue efforts to revise and implement the single parent family support law with a view of introducing measures to ensure that women, in particular single mothers, can have access without fear of discrimination to employment, equal pay and matrimonial rights, as a follow up to recommendations contained in paragraphs 124.28, 124.29, 124.36 and 124.47 of the report of the Working Group on the Universal Periodic Review from the previous cycle", - "values": [ - "4 - General action" - ] - }, - { - "text": "Sign and ratify the Optional Protocol to the International Covenant on Economic, Social and Cultural Rights (OP-ICESCR) ", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Improve the judicial system that is specialized for minors.", - "values": [ - "4 - General action" - ] - }, - { - "text": "Pursue vigorously preventive and awareness-raising policies in combating discrimination based on race or ethnicity, in addition to the measures already taken", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "In the fight against trafficking in human beings, step up cooperation with countries of origin, protect victims, and prosecute and punish those responsible", - "values": [ - "4 - General action" - ] - }, - { - "text": "Take the necessary measures to guarantee the human rights of migrant woman and children, including single mothers and unaccompanied children", - "values": [ - "4 - General action" - ] - }, - { - "text": "Strengthen the systems of legal assistance and psycho-social protection so that they are adapted to the particular needs of minors and prevent them from becoming again victims of domestic violence ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Continue to combat trafficking in human beings and cooperate in the international framework in this respect ", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Accede to ICCPR, ICESCR as well as to the Optional Protocol to CEDAW", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Continue to strengthen its human rights institutions and develop further measures to ensure the effective implementation of their mandates", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Revise the Criminal Code so as to eliminate mandatory death sentences and pursue efforts to abolish the death penalty", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Liechtenstein will continue to pay particular attention to the promotion of genuine respect for diversity and knowledge of different cultures and traditions", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Abolish all practices of forced treatment, including non-consensual castrations, sterilizations and abortions, and eliminate the possibility for third parties such as guardians, doctors and courts to approve such practices, as recommended by the Committee on the Rights of Persons with Disabilities", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Continue to harmonize its national legislation with the provisions of the Convention against Torture and Other Cruel, Inhuman or Degrading Treatment or Punishment ", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Continue to ensure that lesbian, gay, bisexual and transgender people are able to exercise their rights to freedom of expression and assembly ", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Focus on priorities set by the Government to strengthen human rights, especially agriculture and food security and the development of the green belt for irrigation and water, as well as education and technology ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Continue to enhance women's rights and intensify awareness campaigns to combat stereotypes against women ", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Share their best practices in the field of education of children with disabilities", - "values": [ - "1 - Minimal action" - ] - }, - { - "text": "Ensure protection of the basic right of all couples and individuals to decide freely and responsibly the number, spacing and timing of their children ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Continue its ongoing efforts to guarantee the rights of persons with disabilities ", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Reform the Penal Code with the aim of decriminalizing homosexuality ", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Take effective measures to increase its official development assistance to achieve the internationally agreed target of 0.7 per cent of its gross domestic product as expeditiously as possible", - "values": [ - "4 - General action" - ] - }, - { - "text": "Continue to strengthen and develop the National Human Rights Program 2013-2018", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Reconsider laws and bills on religious conversion in several Indian states in the light of freedom of religion or belief in order to avoid the use of vague or broad terminology and discriminatory provisions ", - "values": [ - "3 - Considering action" - ] - }, - { - "text": "Consider ratifying the International Convention on the Protection of the Rights of All Migrant Workers and their Families", - "values": [ - "3 - Considering action" - ] - }, - { - "text": "Reform the nationality law to give women the capacity to acquire, retain and transfer citizenship on an equal basis with men and to bring the law into compliance with international human rights standards", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Continue to seek technical assistance from the international community as well as the Office of the High Commissioner for Human Rights on the establishment of a national human rights institution in accordance with the Paris Principles ", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Advance in the allocation to the judiciary of the necessary financial resources with a view to achieving its full independence, as well as guaranteeing due transparency and efficiency in the administration of justice", - "values": [ - "4 - General action" - ] - }, - { - "text": "Consider modifying or repealing discriminatory legislation, including discriminatory provisions in the Personal Status Law and the Nationality Law ", - "values": [ - "3 - Considering action" - ] - }, - { - "text": "Continue to intensify law enforcement efforts against traffickers, incorporate anti-trafficking training into standard police curriculum, increase efforts to rescue trafficking victims, and provide appropriate care to those individuals", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Amend the Civil Registration Act empowering the registers and the Garda (police) to intervene against sham marriages and to amend the criminal law to criminalize the organizers and facilitators of sham marriages", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Continue its current efforts to guarantee education for all", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Deepen the measures aimed at speeding up the progress of trials of the perpetrators of acts of genocide and crimes against humanity and provide due protection to the judges involved in these investigations", - "values": [ - "3 - Considering action" - ] - }, - { - "text": "Demonstrate its commitment to articles 50 and 69 of the Constitution, articles 19, 21, and 22 of ICCPR and article 20 of the Universal Declaration by allowing individuals to speak out on the political system and by releasing all prisoners of conscience, such as Father Nguyen Van Ly, Nguyen Van Dai and Le Thi Cong Nhan, and abolish vague national security provisions such as articles 84, 88, and 258 used to convict those who voice dissent against the Government or its policies", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Accept the competence of the Committee on Enforced Disappearances, in conformity with Articles 31 and 32 of the International Convention for the Protection of All Persons from Enforced Disappearance", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Ensure that provisions for arrest and detention are compatible with international human rights standards. that all persons detained have timely access to legal remedies to challenge their detention, have access to legal counsel and are brought to trial or released without unnecessary delays", - "values": [ - "4 - General action" - ] - }, - { - "text": "Strengthen its cooperation with the mechanisms of the United Nations system as well as the financial institutions in order to take up the multiple challenges", - "values": [ - "4 - General action" - ] - }, - { - "text": "Speed up the process of national legislation and ratification of the Convention on the Rights of Persons with Disabilities and its Optional Protocol ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Adopt effective measures to ensure that representatives of NGOs work freely in the country and guarantee that journalists and human rights defenders enjoy the freedoms of expression, assembly and association ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Implement in a more effective manner the recommendations guaranteeing the right to freedom of expression ", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Continue efforts to ensure access to basic education and equal opportunities ", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Adopt measures to ensure that victims have access to protection and redress, that perpetrators are prosecuted and punished, and that gender sensitivity training be provided to relevant officials.", - "values": [ - "4 - General action" - ] - }, - { - "text": "Consider abolishing capital punishment", - "values": [ - "3 - Considering action" - ] - }, - { - "text": "Criminalize the dissemination of theories on racial superiority or inferiority and prohibit organizations which promote and incite racial discrimination ", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Establish an encompassing framework of judicial and non-judicial measures to ensure transitional justice, including the creation of a national mechanism of truth, justice and reconciliation and an office for reparations", - "values": [ - "4 - General action" - ] - }, - { - "text": "Ratify the CPED and reform the Criminal Procedure Code with a view to guaranteeing the rights of those deprived of their liberty", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Expand channels and mechanism of direct dialogue between the Government and the population", - "values": [ - "4 - General action" - ] - }, - { - "text": "Take measures to adopt a human rights action plan and ensure its full implementation", - "values": [ - "4 - General action" - ] - }, - { - "text": "Provide clear national guidelines to prevent discrimination in schools and universities on any ground, including sexual orientation and gender identity", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Accede to the Rome Statue of the International Criminal Court", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Meet the stated commitment from the Common Minimum Program of 2004 to dedicate 3 percent of India's GDP to health and 6 percent to education ", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Redouble its efforts to support persons with special needs and to facilitate their integration in public life.", - "values": [ - "4 - General action" - ] - }, - { - "text": "Enhance the promotion and protection of women's rights, including addressing violence against women and femicide", - "values": [ - "4 - General action" - ] - }, - { - "text": "Abrogate de jure and de facto discrimination against women, by amending or repealing national legislation that discriminates against women, such as the Nationality Act, the Personal Status Act, the Civil Code and the Private Sector Employment Act, and implement measures to penalize violence against women and girls in all forms, including domestic violence and marital rape \n", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Take effective steps to review and improve the laws unduly restricting freedom of expression, press and association, and prevent authorities from violating these rights ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Consider ratifying the Rome Statute, Optional Protocols to the International Covenant on civil and Political Rights, the Convention on the Elimination of All Forms of Discriminations against Women, the Convention against Torture and other Cruel, Inhuman or Degrading Treatment or Punishment and to the Convention on the Rights of Persons with Disabilities\n", - "values": [ - "3 - Considering action" - ] - }, - { - "text": "Carry out properly follow-up measures to guarantee meaningful progress in the area of women's public and political participation", - "values": [ - "4 - General action" - ] - }, - { - "text": "Continue to implement the programmes and policies enunciated in the National Human Rights Plan", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Amend the Penal Code to ensure its articles, in particular article 149, cannot be used as a mechanism to refer genuine political activists", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Ensure that the laws relating to persons with disabilities are consistent with international standards", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Pursue a thorough and comprehensive investigation into the missing documents requested for the trial of General Gotovina, and act on any suggestions the Chief Prosecutor has made to improve the investigation, pursuing all avenues of enquiry ", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Ensure laws safeguarding women's rights are effectively enforced, including the law banning female genital mutilation", - "values": [ - "4 - General action" - ] - }, - { - "text": "Comply with the UN Special Rapporteur's recommendation to adopt and implement a national water strategy and plan of action covering the entire population ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Raise public awareness of the rights of persons with disabilities", - "values": [ - "4 - General action" - ] - }, - { - "text": "Adhere to international legal instruments to which it is not yet a party, particularly the Second Optional Protocol to the International Covenant on Civil and Political Rights, aiming at the abolition of the death penalty", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Take all necessary measures to continue the effective implementation of the Integration Strategy and increase involvement of representatives of minority groups and civil society throughout this process ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Take all the necessary measures to prevent and combat violence, including violence against women, by establishing a coordinating body for programmes and institutions created to address violence against women", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Strengthen the measures aimed at reducing cases of racial discrimination, both direct and indirect, and investigate speech inciting racial hatred and speech inciting racial violence", - "values": [ - "4 - General action" - ] - }, - { - "text": "Continue its efforts to adopt necessary measures to abolish the death penalty", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Consider the possibility of ratifying CPED, the 1951 Convention relating to the Status of Refugees and its Protocol, and OP-CAT ", - "values": [ - "3 - Considering action" - ] - }, - { - "text": "Expeditiously and fully implement the Constitution adopted in 1997 and strive for earliest adoption of a penal and criminal procedure code as well as a civil and civil procedure code in accordance with international standards and provide clearly in new legislation for freedom of expression, assembly, movement and belief", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Make more efforts to promote gender equality and the rights of persons with disabilities ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Provide training to law enforcement officers on proper enforcement of the National Security Law to avoid investigations, detentions, and charges that restrict freedom of expression and result in a climate of self-censorship", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Ensure the enjoyment of economic, social and cultural rights, in the context of the attainment of the MDGs, which Cuba has mostly met ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Initiate investigations, prosecute actively and punish adequately offenders involved in the trafficking and exploitation of women and children implement fully national legislation on violence against women and undertake immediate measures to establish shelters and implement effective police protection for victims as recommended by the Committee on the Elimination of\nDiscrimination against Women, the Committee on Economic, Social and Cultural Rights and the Committee against Torture", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Complete the already-initiated process of the ratification of the ICRMW ", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Continue seeking technical assistance from the international community, particularly through OHCHR, towards capacity-building in human rights training and other areas, to augment the country's efforts in meeting its human rights obligations, both domestically and internationally", - "values": [ - "1 - Minimal action" - ] - }, - { - "text": "Review, reform and adequate its federal and state laws, in consultation with civil society, to comply with the protection of the right to nondiscrimination established by the Convention on the Elimination of all Forms of Racial Discrimination, especially in the areas of employment, housing, health, education and justice ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Ratify the International Convention for the Protection of All Persons from Enforced Disappearance and the Convention on the Rights of Persons with Disabilities", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Strengthen the national human rights commission to meet the requirements of the Paris Principles.", - "values": [ - "4 - General action" - ] - }, - { - "text": "Consider acceding to the Optional Protocol to the Convention on the Rights of the Child on a communications procedure", - "values": [ - "3 - Considering action" - ] - }, - { - "text": "Step up efforts to ensure non-discrimination and equality between men and women in all spheres of Egyptian society", - "values": [ - "4 - General action" - ] - }, - { - "text": "Take all the necessary measures to ensure the end of all violent acts against the civilian population all over the national territory, and bring the perpetrators to justice", - "values": [ - "4 - General action" - ] - }, - { - "text": "Speed up the ratification process of the core international treaties which it has signed over recent years and to strengthen its human rights institutional framework.", - "values": [ - "4 - General action" - ] - }, - { - "text": "Accelerate the process to accede to the 1951 Convention Relating to the Status of Refugees and its 1967 Protocol, and enact legislation to protect asylum-seekers and refugees regardless of country of origin", - "values": [ - "4 - General action" - ] - }, - { - "text": "Revise the provisions of the Criminal Code on terrorism and define terrorism-related offences more clearly and precisely", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Consider ratifying the Convention against Torture and the Second Optional Protocol to the International Covenant on Civil and Political Rights", - "values": [ - "3 - Considering action" - ] - }, - { - "text": "Seek the guidance of special procedures in further enhancing the safety of all human rights defenders in the country by inviting the Special Rapporteur on the situation of human rights defenders to visit the country", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Address racial discrimination and cases of racist violence involving destruction of property and the murders of a number of migrants", - "values": [ - "4 - General action" - ] - }, - { - "text": "Adopt proactive measures to eliminate discriminatory stereotypes about migrant workers and their families, in political discourse as well as in the media, as recommended by the CMW", - "values": [ - "4 - General action" - ] - }, - { - "text": "Take further steps to design policies and programmes to address the ill-treatment and abuse of children and institute mandatory reporting procedures regarding child abuse", - "values": [ - "4 - General action" - ] - }, - { - "text": "Interpret the Helms Amendment on the Allocation of Foreign Assistance in such a way that United States foreign assistance enables safe abortion for women and girls who have been raped and impregnated in conflict situations", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Take additional measures to enhance its social security network and to share with countries living in similar conditions its best practices aiming at improving the conditions of the social vulnerable groups in the country", - "values": [ - "4 - General action" - ] - }, - { - "text": "Strengthen the implementation of measures taken to fight against child labour and trafficking of children", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Ensure timely registration of all births ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Ratify the International Convention for the Protection of All Persons from Enforced Disappearance, OPCAT, the Rome Statute and the UNESCO Convention against Discrimination in Education", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Expressly prohibit by law corporal punishments in all areas", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Establish a human rights institution", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Continue to pay attention to violence against indigenous women by ensuring that all reports of violence, in particular sexual violence and rape against indigenous women, are thoroughly investigated, with a focus on ending impunity and bringing perpetrators before justice", - "values": [ - "4 - General action" - ] - }, - { - "text": "Finalize the investigation of all human rights cases in Papua", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Investigate all allegations of torture and ill-treatment and bring perpetrators to justice ", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Reinforce measures aimed at ensuring, during this period of crisis, effective protection of the human rights of migrants, and take additional measures to guarantee access to economic, social and cultural rights for migrants, who are the primary victims of the high level of unemployment in Spain ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Put in place mechanisms to identify at an early stage children among refugees and asylum seekers who might have been involved in armed conflict in order to ensure their protection, recovery and reintegration ", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Review its legislation in order to eliminate provisions that are discriminatory against women", - "values": [ - "3 - Considering action" - ] - }, - { - "text": "Continue its exemplary efforts to improve the living standards of the people, particularly by ensuring their access to quality health-care services and education ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Adopt comprehensive anti-discrimination legislation", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Ensure that all persons deprived of liberty are held in humane conditions, including in line with the United Nations Basic Principles for the Treatment of Prisoners and the Standard Minimum Rules for the Treatment of Prisoners", - "values": [ - "4 - General action" - ] - }, - { - "text": "Consider the possibility of ratifying the International Convention for the Protection of All Persons from Enforced Disappearance ", - "values": [ - "3 - Considering action" - ] - }, - { - "text": "Resolve the question of the commemoration of the memory of the Roma who died during the Second World War in the Nazi camp in the village of Lety", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Accelerate the process of adoption of the gender equality act", - "values": [ - "4 - General action" - ] - }, - { - "text": "Widen the definition of rape in its Penal Code to include any sexual relations without the woman's consent, and remove the exception for marital rape ", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Improve detention conditions, in particular by allowing all detainees to refer their case to a judge and by abolishing all forms of arbitrary or secret detention ", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Revise legislation on abortion to ensure that all women have access to abortion and health care in order to reduce maternal mortality", - "values": [ - "3 - Considering action" - ] - }, - { - "text": "Take concrete steps to ensure the security of human rights defenders, including journalists ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Study the possibility of expanding measures to combat discrimination, especially in the case of children with disabilities and HIV ", - "values": [ - "3 - Considering action" - ] - }, - { - "text": "Consider eliminating differences in schooling between cities and rural areas, between girls and boys and among minorities", - "values": [ - "3 - Considering action" - ] - }, - { - "text": "Improve the health situation of all children irrespective of status", - "values": [ - "4 - General action" - ] - }, - { - "text": "Intensify its efforts to investigate, identify and, if applicable, punish alleged perpetrators of the harassment, arbitrary detention and torture of opponents of the Government, including journalists and human rights defenders ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Include human rights education in school curricular", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Consider applying alternative measures to the detention of unaccompanied migrant children ", - "values": [ - "3 - Considering action" - ] - }, - { - "text": "Study the possibility of ratifying the International Convention for the Protection of All Persons from Enforced Disappearance", - "values": [ - "3 - Considering action" - ] - }, - { - "text": "Implement all measures, including national awareness-raising campaigns, and efforts aimed at amending or eliminating patriarchal attitudes and stereotypes discriminating against women, including those based on the Chbab Srey ", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Take steps to further enhance the capacity of the judiciary, especially with regard to the backlog of court cases and the staffing of the Public Prosecutor's and the Public Solicitor's Offices ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Guarantee the full legitimacy and protection for human rights defenders in accordance with the United Nations Declaration on Human Rights Defenders. Those arrested should be with no delays brought to fair and proper trials, or released", - "values": [ - "4 - General action" - ] - }, - { - "text": "Accelerate the process of ratification of the international instruments listed in the national report", - "values": [ - "4 - General action" - ] - }, - { - "text": "Incorporate the Convention on the Elimination of All Forms of Discrimination against Women and its Optional Protocol into its national legislation", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Ratify the Optional Protocol to the Convention against Torture and Other Cruel, Inhuman or Degrading Treatment or Punishment OP-CAT ", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Accelerate the process of reviewing and aligning its domestic laws with the Constitution, particularly those pertaining to the prohibition of torture and the elimination of violence against women", - "values": [ - "4 - General action" - ] - }, - { - "text": "Encourage Liberia to strengthen its judicial system, especially in view of promoting accountability, in order to bring to justice those committing violence against women and children", - "values": [ - "4 - General action" - ] - }, - { - "text": "Continue to support the work of civil society, especially the work of the human rights and journalists' organizations", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Promote the development of a free and open Internet by amending the Prime Minister's Decree, which appears to unduly limit the right to freedom of expression online", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Adopt necessary actions to prevent impunity and further violations of privacy committed by private media companies such as News Corporation, through hacking into telephone communications, emails, and voicemails ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Allocate more resources to training of specialists in the medical field, alongside doctors, nurses, midwives and social workers", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Deepen measures so that unaccompanied children and asylum-seeking family groups are not deprived of liberty", - "values": [ - "4 - General action" - ] - }, - { - "text": "Further intensify its efforts to raise the living standards of persons with disabilities, in particular to support their right to social inclusion and self-reliance", - "values": [ - "4 - General action" - ] - }, - { - "text": "Ensure that provisions in the revised Constitution guarantee the equal rights of women as well as their right to acquire, retain and transfer citizenship", - "values": [ - "4 - General action" - ] - }, - { - "text": "Increase the efficiency of tribunals against agreed targets, including through education and employment of qualified judicial personnel", - "values": [ - "4 - General action" - ] - }, - { - "text": "Continue its cooperation with United Nations human rights instruments ", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Establish an independent national human rights institution in accordance with Paris Principles, to monitor compliance with international standards and to ensure coordination in implementing its human rights obligations between federal, state and local governments", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Consider the repeal of the law that allows for the death penalty and introduce a moratorium on the death penalty with a view to total abolishment in line with Liberia's obligations under the Second Optional Protocol to the International Covenant on Civil and Political Rights, aiming at the abolition of the death penalty", - "values": [ - "3 - Considering action" - ] - }, - { - "text": "Adopt measures to guarantee freedom of the press and of expression", - "values": [ - "4 - General action" - ] - }, - { - "text": "Ensure effective registration of all children born in the country, regardless of their ethnic origin and without any discrimination, in accordance with Article 7 of the Convention on the Rights of the Child", - "values": [ - "4 - General action" - ] - }, - { - "text": "Take all necessary measures to address the backlog in the submission of reports to treaty bodies", - "values": [ - "4 - General action" - ] - }, - { - "text": "Continue developing systematic actions, including legislative ones, to combat domestic violence", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Enhance national efforts to combat discrimination, xenophobia and racism, in particular the discriminatory practices against migrants and people of African descent", - "values": [ - "4 - General action" - ] - }, - { - "text": "Continue to ensure care services and equal access of employment opportunities for persons with disabilities", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Strengthen the concept of equality between the sexes and nondiscrimination, and open up possibilities for women to participate in public life and have access to high-level positions in leadership and administrative posts", - "values": [ - "4 - General action" - ] - }, - { - "text": "Review its legislation to ensure pluralism in the television industry", - "values": [ - "3 - Considering action" - ] - }, - { - "text": "Establish a moratorium of the death penalty as a first step to its abolishing", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Continue its efforts in the field of women participation in high level positions of decision-making and in all areas of society ", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Pursue ongoing efforts to improve the living conditions of the prison population, especially in terms of vocational training and health care ", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Improve prevention, detection, investigation, prosecution and punishment of those responsible for offences covered under the OP-CRC-SC, including through cooperation with neighbouring countries", - "values": [ - "4 - General action" - ] - }, - { - "text": "Request cooperation and technical assistance for the development and implementation of the Convention on the Elimination of all Forms of Discrimination against Women", - "values": [ - "1 - Minimal action" - ] - }, - { - "text": "Continue the implementation of the national child labour project aiming at the rehabilitation of child labourers ", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Raise the minimum age of marriage to eighteen for women", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Include in the Constitution and other legislation provisions prohibiting discrimination against women in matters such as adoption, marriage, divorce, devolution of property, burial and death", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Adopt the bill on gender equality with a view to ensuring gender parity, particularly in the participation to governance and to the nomination of positions within the public sector", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Remove excessive restrictions to the exercise of the freedom of assembly in order to facilitate peaceful demonstrations", - "values": [ - "4 - General action" - ] - }, - { - "text": "Protect freedom of assembly and association by revising the Protest Law, eliminating all interference with the registration and work of NGOs and guaranteeing their right to seek and receive funding, and halting the ultimatum for unregistered NGOs", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Take all the necessary measures to ensure that the right to education is enjoyed by all children ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Strengthen programmes to combat food insecurity, improve nutrition and access to local food production through the development of the agricultural sector", - "values": [ - "4 - General action" - ] - }, - { - "text": "Continue national efforts that aim to promote a culture of and the principles of human rights, including them in the educational curriculum", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Intensify its efforts in the fight against violence against women and in particular against domestic violence by concluding public awareness raising, empowerment of women and rigorous capacity development of law enforcers ", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Take adequate measures to strengthen the criminalization of female genital mutilation and enhance awareness of the population ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Take steps to ensure that the initial and second reports (overdue since 2001) on the implementation of measures contained in the ICCPR, as well as in the CAT are submitted in the near future.", - "values": [ - "4 - General action" - ] - }, - { - "text": "Enforce the moratorium on new land concessions announced by the Government of the Lao People's Democratic Republic in June 2012 and reform the current system for the management of land leases and concessions", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Ensure full implementation of its obligations under the Optional Protocol against Torture by equipping its National Preventive Mechanism (NPM) with sufficient resources to fulfil its role ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Urgently address the problem of the acceptance by the courts of evidence obtained as a result of ill-treatment in detention ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Take legal and administrative steps to ensure that every refugee child born in Lebanon is properly registered by the authorities and issued with the documents to prove it, without prejudice to the question of permanent residency or acquisition of citizenship", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Establish a robust and well-resourced national preventive mechanism in accordance with the Optional Protocol to the Convention against Tortureand Other Cruel, Inhuman or Degrading Treatment or Punishment", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Pay particular attention to the vulnerable situation of migrants, especially women in an irregular situation ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Disseminate information on available domestic, inter alia, legal remedies against acts of racial discrimination, as well as facilitate the access of victims to such remedies ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Continue its efforts in fighting against trafficking in persons, especially women and children ", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Promote access to education, especially for minorities", - "values": [ - "4 - General action" - ] - }, - { - "text": "Encourage to continue promoting its commitment to dialogue on all issues and with all states, on the basis of mutual respect, sovereign equality, self-determination and recognition of the right of every people to choose their own political, economic and social system", - "values": [ - "4 - General action" - ] - }, - { - "text": "An early harmonization of anti-discrimination legislation along with adequate action to address racism, xenophobia and related intolerance against migrant communities and ethnic minorities, including the Roma community", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Develop a strategy to improve living conditions of persons deprived of their liberty, to combat malnutrition, lack of hygiene and to end the detention of children with adults", - "values": [ - "4 - General action" - ] - }, - { - "text": "Consider signing at the earliest possible time the Optional Protocol to the International Covenant on Economic, Social and Cultural Rights. ", - "values": [ - "3 - Considering action" - ] - }, - { - "text": "Strengthen the framework of the "Support Program for Teaching and Learning" to reduce inequalities between rural and urban areas", - "values": [ - "4 - General action" - ] - }, - { - "text": "Ratify the International Convention for the Protection of all Persons against Enforced Disappearance and the Second Optional Protocol to ICCPR for the elimination of the death penalty ", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Take the necessary political and legal provisions to ensure that the implementation of the Media Law of 2014, particularly the requirement of accreditation of journalists and their obligation to defend the public interest and the democratic order, will not be translated into limitations on freedom of expression and the press", - "values": [ - "4 - General action" - ] - }, - { - "text": "Enhance measures for the prevention, punishment and eradication of all forms of violence against women, including measures to promote their rights and to eliminate patriarchal and discriminatory stereotypes", - "values": [ - "4 - General action" - ] - }, - { - "text": "Address the discriminatory situation of women belonging to minorities, including Roma women", - "values": [ - "4 - General action" - ] - }, - { - "text": "Accelerate legislative amendments [with regards to forced disappearance] in order to include provisions on enforced disappearance in the penal code ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Strengthen the implementation of mechanisms for the assistance of victims of trafficking, placing emphasis on child victims of this crime", - "values": [ - "4 - General action" - ] - }, - { - "text": "Given the current constitutional review, fully incorporate the principle of equality between men and women and adopt a legal definition of gender-based discrimination, without overlooking to establish legislation which provides for the right to equal pay for work of equal value between men and women ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Amend the provisions of the Nationality Law to ensure that women are granted equality with men in conferring nationality to their children", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Continue to cooperate with the United Nations and other international organizations to strengthen human rights in Cambodia ", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Consider acceding to the Rome Statue of the International Criminal Court ", - "values": [ - "3 - Considering action" - ] - }, - { - "text": "Take all necessary legislative and enforcement measures to eradicate trafficking rings and prosecute perpetrators", - "values": [ - "4 - General action" - ] - }, - { - "text": "Strengthen the protection of persons with Albinism by specifically prohibiting and criminalizing all form of violence against them", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Adopt comprehensive strategy to combat domestic violence", - "values": [ - "4 - General action" - ] - }, - { - "text": "Enhance efforts aimed at the elimination of racism, racial discrimination, xenophobia and related intolerance by adopting a long-term systematic response to these scourges", - "values": [ - "4 - General action" - ] - }, - { - "text": "Proceed to adopt a national work plan for children's rights in the juvenile justice system", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Agree a precise and early date for the visit by the Special Rapporteur on the situation of human rights defenders ", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "To examine the feasibility of conducting a national consultative exercise on a national plan of action to follow up on the Vienna Conference on Human Rights and the Durban Conference on Racism", - "values": [ - "3 - Considering action" - ] - }, - { - "text": "Respond positively to the special procedures requesting a visit to the country", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Continue its efforts to achieve equitable socio-economic development, to further address social disparity and equal opportunity of people through its overarching objective according to its current policies and Action Plans ", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Sign and ratify the Optional Protocol to the Convention against Torture (OP-CAT)", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Study the possibility of becoming a party to the following international instruments: the Convention against Torture and Other Cruel, Inhuman or Degrading Treatment or Punishment (CAT)", - "values": [ - "3 - Considering action" - ] - }, - { - "text": "Continue to consider ratifying the Convention on the Rights of Persons with Disabilities", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Strengthen Government measures to eradicate forced labour, especially to prevent either child or enforced labour in the specific sectors of fishing and canning companies, as well as to ensure that employers violating labour rights are duly prosecuted", - "values": [ - "4 - General action" - ] - }, - { - "text": "Implement the rulings of the Inter-American Court of Human Rights regarding indigenous land claims by the YakyeAxa and Sawhoyamaxa Indigenous communities promptly and effectively", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Establish a formal moratorium on the death penalty with a view to abolishing the death penalty and ratifying the Second Optional Protocol to the International Covenant on Civil and Political Right, aiming at the abolition of the death penalty ", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Consider acceding to core human rights treaties to which it is not yet a party ", - "values": [ - "3 - Considering action" - ] - }, - { - "text": "Stops acts of torture by United States government officials, not only in its sovereign territory, but also on foreign soil", - "values": [ - "4 - General action" - ] - }, - { - "text": "Continue measures to combat terrorism, including the financing of terrorism ", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Step up its efforts to make the community aware of the risks of HIV and establish a campaign to increase awareness among young people.", - "values": [ - "4 - General action" - ] - }, - { - "text": "Establish a database of all cases of violence against children and explicitly prohibit all forms of corporal punishment of children under 18 years of age in all settings", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Provide the Agency for the Rights of the Ethnic Groups Which Are Less Than 20 per cent of the Population with the necessary resources to effectively deal with minority issues. ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Reconsider restrictions on undocumented migrants' access to publicly supported healthcare ", - "values": [ - "3 - Considering action" - ] - }, - { - "text": "Continue efforts to reduce violence against children and young persons", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Enact domestic legislation to ensure equality in rights and equal opportunities between men and women ", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Give priority to measures that could guarantee access to drinking water for all citizens, including those living in areas that are difficult to access ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Continue the moratorium on death penalty", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Sign and ratify also remaining core international human rights instruments (OP-ICESCR, ICCPR-OP1 and OP2, OP-CAT) ", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Continue protecting vulnerable groups from the consequences of the austerity measures undertaken by the Portuguese Government in the framework of the economic and financial adjustment programme adopted in the past few years ", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Increase public expenditure on education and undertake additional efforts to improve the functioning of the education system, in order to ensure quality education for all children", - "values": [ - "4 - General action" - ] - }, - { - "text": "Ratify and effectively implement, before its next UPR cycle, the Optional Protocol to the Convention against Torture", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Promote gender equality and combat discrimination against women ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Consider putting in place all necessary machineries to resolving and withdrawing from all outstanding reservations on human rights treaties for the full enjoyment of human rights by its people ", - "values": [ - "3 - Considering action" - ] - }, - { - "text": "Ratify the Second Optional Protocol to the International Covenant on Civil and Political Rights, amend the Constitution to abolish any constitutional provisions that provide for death penalty, provides civic education at all levels of the society on the need of abolishing the death penalty and commute the death sentences of current prisoners awaiting execution ", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Further tackle the problem of street children and child labour, as well as discrimination against indigenous children.", - "values": [ - "4 - General action" - ] - }, - { - "text": "Further promote the respect of human rights by executing public awareness campaigns on issues such as equal treatment between women and men, combating child labour, human trafficking and domestic violence", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Step up its initiatives which are specifically targeted towards implementing the National Anti-Discrimination Plan, in particular to promote awareness on non-discrimination, intercommunity harmony, mutual respect and tolerance\n", - "values": [ - "4 - General action" - ] - }, - { - "text": "Step up efforts to combat poverty in rural areas, particularly among indigenous communities", - "values": [ - "4 - General action" - ] - }, - { - "text": "Take urgent action to ensure the full independence, autonomy and impartiality of the judicial system and the electoral authority, especially with regard to the Supreme Court of Justice and the National Electoral Council", - "values": [ - "4 - General action" - ] - }, - { - "text": "Acknowledge the existence of human rights violations, including political prison camps, dismantle them and release all prisoners", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Continue to invest in green energy projects in order to provide clean and modern energy to all its people", - "values": [ - "3 - Considering action" - ] - }, - { - "text": "Enact a non-discriminatory law on succession, inheritance and land-rights issues", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Ratify the Second Optional Protocol to the International Covenant on Civil and Political Rights, aiming at the abolition of the death penalty ", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Submit national reports to the treaty bodies, including the ICESCR, and issue a standing invitation to special procedures", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Strengthen relevant legislations and administrative measures to ensure transparency and non-impunity in the judicial process on all alleged enforced disappearance cases including investigation , prosecution and reparation , which would help contribute towards its national reconciliation", - "values": [ - "4 - General action" - ] - }, - { - "text": "Take steps to ensure that the National Human Rights Commission is independent, and has civil society representation ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Amend the Criminal Code to respect, protect and enforce the right to non-discrimination for all citizens regardless of their sexual orientation", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Consider establishing a National Human Rights Institution and committing to full integration of gender perspective in all efforts vested in the implementation of the Millennium Development Goals", - "values": [ - "3 - Considering action" - ] - }, - { - "text": "Ratify ICRMW and accede to the Optional Protocol to the Convention on the Rights of the Child on a communications procedure", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Abolish the death penalty and consider commuting all death sentences imposed on persons convicted of drug offences", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Continue and deepen the measures necessary for the investigation and punishment in the courts of persons suspected of participation in war crimes and crimes against humanity", - "values": [ - "4 - General action" - ] - }, - { - "text": "Effectively enforce labour laws with appropriate penalties for violations, and ensure that all citizens have access to government services, regardless of political affiliation ", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Italy remains fully committed to promoting effective measures for the social integration of regular migrants.", - "values": [ - "4 - General action" - ] - }, - { - "text": "Continue the implementation of the strategic development plan", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Take the necessary steps to ensure police and security forces operate with greater respect for human rights, such as including comprehensive human rights and rule-of-law components in training for security forces ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Consider the possibility to put an end to the judicial proceeding initiated against the deceased Sergei Magnitsky, and reopen investigation on the causes of his death and on the fraud denounced ", - "values": [ - "3 - Considering action" - ] - }, - { - "text": "Extend a standing invitation for special procedures mandate holders", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Take further steps to ensure that juvenile courts are set up and that children are separated from adults in detention facilities.", - "values": [ - "4 - General action" - ] - }, - { - "text": "Continue with activities towards implementing the revised National Action Plan for the Decade of Roma Inclusion for 2011-2015 and the adopted Strategy for the Integration of Roma up to 2020 ", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Repeal the death penalty from its legislation and, should this be unsuccessful, establish a moratorium on the death penalty ", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Continue to apply measures aimed at the implementation of the Criminal Code and other legal mechanisms in place to protect children ", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Make every effort to ensure that schools are safe places for children and that they are free from sexual and physical violence, as recommended by CRC ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Take proactive measures to promote women's participation in the local elections planned for\nin 2010 ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Step up efforts towards the adoption of legislation fully in line with the principle of gender equality", - "values": [ - "4 - General action" - ] - }, - { - "text": "Put in place mechanisms to systematically collect and analyse disaggregated data to enable assessment of the effectiveness of policies and initiatives aimed at preventing and eliminating violence against women ", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Adopt legislative measures and policies to prevent early or forced marriages", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Continue its efforts in improving protection of women's rights", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Establish independent monitoring of conditions in detention and prisons together with effective complaint procedure for victims of torture", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Review existing legislation in order to enhance the exercise of the freedom of assembly and of the press", - "values": [ - "3 - Considering action" - ] - }, - { - "text": "Take additional measures to fight effectively against discrimination and violence against women", - "values": [ - "4 - General action" - ] - }, - { - "text": "Establish an independent mechanism to defend the rights of children on Faroe Islands", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Consider the possibility of acceding to and/or ratifying the International Covenant on Economic, Social and Cultural Rights and its Optional Protocol ", - "values": [ - "3 - Considering action" - ] - }, - { - "text": "Train all lecturers and teachers in inclusive education ", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Carry out measures to reduce overcrowding in prisons", - "values": [ - "4 - General action" - ] - }, - { - "text": "Continue efforts to fight discrimination and violence against women as well as trafficking in persons", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Take stronger measures at the federal level to combat racism, xenophobia, intolerance and discrimination on religious grounds", - "values": [ - "4 - General action" - ] - }, - { - "text": "Maintain the practice whereby the Ministry of Justice pays the fees of counsel for accused persons who are unable to pay, as well as the presence of the media and persons interested in human rights during trial hearings", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Accelerate measures to ensure adequate conditions for prisoners", - "values": [ - "4 - General action" - ] - }, - { - "text": "With the world financial crisis and the paucity of international cooperation it receives as a middle-income country, Costa Rica faces serious challenges in ensuring the best possible protection and promotion of human rights. Nevertheless, it has maintained its commitment to spare no effort in developing plans and activities to improve the welfare of its inhabitants.", - "values": [ - "4 - General action" - ] - }, - { - "text": "Consider abolishing, or institute a de facto moratorium, regarding the use of death penalty", - "values": [ - "3 - Considering action" - ] - }, - { - "text": "The State also desires to establish permanent institutions that would ensure timely submission of human rights reports, both to international and regional human rights mechanisms.", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Strengthen efforts to protect the rights of persons with disabilities, especially focusing on the implementation of CRPD", - "values": [ - "4 - General action" - ] - }, - { - "text": "Continue its efforts to promote an inclusive education for children with disabilities in the general school system", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Seek to incorporate human rights considerations in accordance with Kyrgyzstan's international obligations in any reform process it plans to carry out ", - "values": [ - "1 - Minimal action" - ] - }, - { - "text": "Promote greater and effective use of the media to promote the rights of children ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Take all necessary measures to put in place a national human rights institution in conformity with the Paris Principles", - "values": [ - "4 - General action" - ] - }, - { - "text": "Intensify the progress made to eliminate poverty by identifying the critical bottlenecks in society", - "values": [ - "4 - General action" - ] - }, - { - "text": "Promote the guarantee of the human rights of children and elderly people affected by the internal conflict, including family reunification", - "values": [ - "4 - General action" - ] - }, - { - "text": "Increase the international cooperation activities aimed at the development of other countries", - "values": [ - "4 - General action" - ] - }, - { - "text": "Vigorously investigate, prosecute, convict and sentence traffickers, including those responsible for domestic servitude and child sex trafficking", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Examine systematically its laws with the aim of putting them in conformity with CEDAW", - "values": [ - "3 - Considering action" - ] - }, - { - "text": "Continue its efforts to further promote the integration of young people into the labour market", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Not relax its efforts to eradicate practices such as incitement to hatred and violence from certain far-rights groups, wherever they appear, including on the Internet, where they are especially prevalent ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Consider establishing an official moratorium on the use of death penalty with a view to abolishing it ", - "values": [ - "3 - Considering action" - ] - }, - { - "text": "Take necessary measures to calm down the political environment ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Free political prisoners and prisoners of conscience who may still remain after previous release exercises", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Consider revising relevant legislation on the matter of transfer of nationality from parents to children to ensure equal rights between men and women", - "values": [ - "3 - Considering action" - ] - }, - { - "text": "Consider ratifying the International Convention for the Protection of All Persons from Enforced Disappearance (CPED) ", - "values": [ - "3 - Considering action" - ] - }, - { - "text": "Take measures to ensure the full enjoyment of all human rights by members of indigenous communities.", - "values": [ - "4 - General action" - ] - }, - { - "text": "Increase the penalty for the crime of torture from the current maximum of three years, proportional with the severity of the crime", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Continue with the on-going program to ensure decent housing to every Venezuelan family", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Continue implementing the national policy for persons with disabilities which lays out the fundamental pillars of development to ensure that an integrative society can truly take root", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Recognizing the commitment of the Gambia to different international human rights instruments, ratify and sign CAT and OP-CAT, CRPD and OPCRPD, CED, OP-CEDAW, CRC and ICESCR", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Continue the efforts to combat human trafficking, including through cooperation and coordination with the Office of the United Nations High Commissioner for Refugees", - "values": [ - "4 - General action" - ] - }, - { - "text": "Repeal or amend its Penal Code to ensure that it cannot be applied in an arbitrary manner to prevent the freedom of expression.", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Efficiently implement recently ratified international conventions, especially in the field of child rights", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Step up its efforts to ratify international human rights instruments that it is not yet a party to, particularly the International Convention on the Protection of the Rights of All Migrant Workers and Members of their Families", - "values": [ - "4 - General action" - ] - }, - { - "text": "Continue the promotion of measures to disarm and dismantle private armed groups as well as to impede the utilization of child soldiers ", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Continue to provide and improve training programmes on human rights for the judiciary, law enforcement personnel and lawyers", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Adopt specific laws to eliminate other forms of discrimination to supplement existing legislation on gender discrimination in the country", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Complete the process of constitutional recognition of the indigenous populations with the adequate consultations mentioned in its presentation.", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Adopt effective measures to improve conditions in prisons, reduce overcrowding and eliminate ill- treatment and forced labour of persons deprived of liberty ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Ensure the effective investigation of all reports of domestic and sexual violence against women and girls, the prosecution of perpetrators and the delivery of sentences that are commensurate with the gravity of the crimes committed ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Continue its efforts to combat trafficking in human beings", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Take measures towards the full equality for Omani women including by reviewing the Personal Status Law and Labour Law ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Take steps to ensure its obligations under the International Covenant on Civil and Political Rights are upheld when it comes to articles 21 and 22 regarding the right of peaceful assembly and the right to freedom of association", - "values": [ - "4 - General action" - ] - }, - { - "text": "Expedite the establishment and operationalization of the National Institute for Human Rights which fully complies with the Paris Principles ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Take additional measures in order to provide for the basic needs of the population and to ensure economic, social and cultural rights, with the assistance of international donors and the relevant international organizations", - "values": [ - "4 - General action" - ] - }, - { - "text": "Improve data collection regarding domestic violence and gender-based violence", - "values": [ - "4 - General action" - ] - }, - { - "text": "Step up measures to combat enrolment of children by the belligerents, taking into consideration the concerns expressed by the Committee on the Rights of the Child and the Office for the Coordination of Humanitarian Affairs.", - "values": [ - "4 - General action" - ] - }, - { - "text": "Consider developing a comprehensive plan for the care and protection of children as recommended by the Committee on the Rights of the Child ", - "values": [ - "3 - Considering action" - ] - }, - { - "text": "Ensure the provision of assistance and the accessibility of legal aid to all victims of trafficking, in line with regional and international human rights standards", - "values": [ - "4 - General action" - ] - }, - { - "text": "Take steps to ensure that the constitutional changes concerning minority rights will not entail lowered guarantees compared to the current legal framework ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Guarantee the exercise of the economic, social and cultural rights of children", - "values": [ - "4 - General action" - ] - }, - { - "text": "Consider an early ratification of ICCPR and its Optional Protocols, ICESCR and the Convention against Torture and other Cruel, Inhuman and Degrating Treatment CAT and its Optional Protocol OP-CAT", - "values": [ - "3 - Considering action" - ] - }, - { - "text": "Ensure that these crimes against political activists and journalists are independently and impartially investigated and that their perpetrators are brought to justice", - "values": [ - "4 - General action" - ] - }, - { - "text": "Continue implementing training programmes on human rights for officials, including for the personnel in charge of receiving and processing gender-based violence complaints", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Develop and implement a strategy to monitor, investigate, and prosecute hate crimes, giving the Public Defender relevant powers and resources to take action against instigators of hate crime", - "values": [ - "4 - General action" - ] - }, - { - "text": "Continue efforts to broaden the scope of the protection of human rights and the safety of citizens in the country, as a means of enhancing social justice", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Combat domestic violence and high maternal mortality rates suffered by women, in compliance with the Convention on the Elimination of All Forms of Discrimination against Women", - "values": [ - "4 - General action" - ] - }, - { - "text": "Guarantee the right to food through self-sufficiency production projects, eliminating in this manner all forms of quotas and limits imposed by the State, and additionally enabling access to the various international organizations and United Nations agencies that work on all aspects of sustainable development and food security ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Decriminalize consenting homosexual relationships between persons over the age of consent by repealing Section 365A of the penal code", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Establish an inclusive dialogue on the universal basic income as a tool to improve the current social security system, in consultation with all stakeholders", - "values": [ - "4 - General action" - ] - }, - { - "text": "Put forward the utmost efforts to implement all recommendations made by the human rights mechanisms to provide people in the occupied territories with the civil, political, economic, social and cultural rights in equal manners ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Extend an open and permanent invitation to special procedures ", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Consider accession to the Optional Protocol to the Convention against Torture and Other Cruel, Inhuman or Degrading Treatment or Punishment ", - "values": [ - "3 - Considering action" - ] - }, - { - "text": "Enhance the capacity and the independence of the national human rights institution in order to make it more effective and operational ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Consider positively the request for visit by Special Rapporteur on extrajudicial, summary or arbitrary executions and eventually extend a standing invitation to all special procedures of the Human Rights Council ", - "values": [ - "3 - Considering action" - ] - }, - { - "text": "Continue to promote the right to access to water ", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Enact legislation that eliminates and prevents all discrimination against any resident, including\nin education ", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Continue to implement socio-economic development strategies, particularly policies to try and guarantee quality education and health services for all the population", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Engage further in the common fight for the prohibition of torture, ensuring accountability and victims' compensation and enable the Special Rapporteur on torture and other cruel, inhuman or degrading treatment or punishment to visit every part of the detention facility at Guantanamo Bay and to conduct unmonitored interviews", - "values": [ - "4 - General action" - ] - }, - { - "text": "Speed up the promulgation of equality laws, specially the revision of the Persons and Family Code, as well as the law on inheritance, matrimonial regimes and gifts and bequests ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Take appropriate measures in order to investigate and punish any act of discrimination or violence against lesbian, gay, bisexual, transgender, intersex and questioning persons", - "values": [ - "4 - General action" - ] - }, - { - "text": "Strengthen the monitoring and evaluation efforts of women's empowerment and child protection through development of appropriate monitoring mechanisms", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Ensure the equal rights of lesbian, gay, bisexual and transgender -LGBT- people by legally recognizing same-sex marriage and civil partnerships", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Prohibit corporal punishment of children in all settings, including at home", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Take measures to avoid the use of excessive force and ensure that conditions of arrest and pretrial detention meet international standards ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Continue efforts aimed at reinforcing the progress achieved with regard to gender equality, including in the areas of education and health, in line with the country\u2019s obligations and commitments", - "values": [ - "4 - General action" - ] - }, - { - "text": "Take steps to put an end to overcrowding in detention facilities, including by ensuring compliance with the requirements established in article 10 of the International Covenant on Civil and Political Rights and application of the Standard Minimum Rules for the Treatment of Prisoners", - "values": [ - "4 - General action" - ] - }, - { - "text": "In follow-up to recommendations 135.8, 135.48 and 135.55 of the second cycle, continue to improve the quality of public education, particularly for those living below the poverty line, with emphasis on psychological health and the psychosocial elements of a quality learning environment", - "values": [ - "4 - General action" - ] - }, - { - "text": "Continue working on harmonizing its national policies and laws related to children in line with the Convention on the Rights of the Child and the Protocols thereto to which it is a party", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Continue efforts to stop violence against women", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Remove the death penalty from its legislation and become a party to the Second Optional Protocol to ICCPR aiming at abolishing the death penalty.", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Guarantee the right of victims to truth, justice, reparation and non-repetition, especially by taking all necessary measures to put an end to impunity and bring to justice all presumed perpetrators in line with the law and international standards", - "values": [ - "4 - General action" - ] - }, - { - "text": "Continue to give priority to efforts aimed at the recognition and protection of journalists and human rights defenders", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Develop a comprehensive strategy to eliminate discriminatory gender stereotypes ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Introduce legislation that recognises the diversity of forms of partnerships and that provides same sex couples with the same rights and social security as couples of the opposite sex, as previously recommended", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Adopt legislation that prohibits domestic violence and marital rape ", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Implement the recommendations from CAT, as well as promote the use of the Istanbul protocol to determine cases of torture and to educate forensic experts", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Consider taking steps to change the Defamation Act in the Criminal Code in order to broaden the space for exercising the freedom of expression.", - "values": [ - "3 - Considering action" - ] - }, - { - "text": "That the registration system be further improved and supported by awareness-raising activities, in order to sustain the rise in registration numbers", - "values": [ - "4 - General action" - ] - }, - { - "text": "Carry out the monitoring of enterprises so as to guarantee human and labour rights in accordance with its bilateral and multilateral obligations ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Protect women from sexual violence and abuse", - "values": [ - "4 - General action" - ] - }, - { - "text": "Take further steps to address and implement measures to decrease the wage gap between men and women", - "values": [ - "4 - General action" - ] - }, - { - "text": "Apply effective strategies and measures to reduce inconsistencies between laws and practice, including with regard to access to land for women, the gender gap in employment and trafficking in women", - "values": [ - "4 - General action" - ] - }, - { - "text": "Continue its efforts to adopt a comprehensive legislation in the area of anti-discrimination ", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Increase its efforts to implement the national literacy programs in peri-urban and rural areas", - "values": [ - "4 - General action" - ] - }, - { - "text": "Conform the juvenile justice system to be in accordance with international standards so as to prevent children from being legally accountable in courts", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Introduce a moratorium on the use of death penalty and work towards its abolition, including through ratification of the Second Optional Protocol to the International Convention on Civil and Political Rights", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Take concrete action to strengthen the legal basis for the accountability of State authorities and improvement of judicial scrutiny over their activities.", - "values": [ - "4 - General action" - ] - }, - { - "text": "Ensure an effective consultation process with indigenous peoples in all decision-making that might affect them", - "values": [ - "4 - General action" - ] - }, - { - "text": "Continue with the design and implementation of programmes fighting poverty and extreme poverty with a human rights approach to overcome structural inequality ", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Continue to increase access to safe and sustainable drinking water in rural areas and to improve sanitation coverage, especially for women and girls", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Step up the efforts to ensure the non-recruitment and demobilization of child soldiers ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Take the necessary legislative measures to prevent, prosecute and punish acts of torture and other cruel and degrading treatment, in accordance with international standards, including through the ratification of the OP-CAT", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Equal treatment for all media and prompt investigations of reported violations against the rights of press and speech", - "values": [ - "4 - General action" - ] - }, - { - "text": "Strengthen policies aimed at achieving economic, social and cultural rights, in particularly in the areas of health and education ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Continue efforts in the promotion of women rights ", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Abolish relevant articles of the criminal code which effectively serve as defamation provisions ", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Close, as soon as possible, the detention centre at Guantanamo Bay and put an end to the indefinite detention of persons considered as enemy combatants", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Put more efforts and financial resources to eradicate high level mortality and malnutrition rates, especially in rural areas and among indigenous peoples", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Continue building the national capacity to counter trafficking in human beings", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Ratify the International Convention on the Protection of the Rights of All Migrant Workers and Members of Their Families (ICRMW), the ICCPR and ICESCR, as well as their Optional Protocols", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Adopt measures to guarantee access to basic services, as well as the investigation of allegations of human rights violations in camps for internally displaced persons", - "values": [ - "4 - General action" - ] - }, - { - "text": "Continue its efforts to enhance the protection of women against violence", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Continue implementing mechanisms for the prior consultation and participation of indigenous peoples in decision-making related to the enjoyment of their ancestral rights in accordance with its domestic law", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Continue to implement policies for women development under SDGs", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Consider an early ratification of the third Optional Protocol to the Convention on the Rights of the Child on a communications procedure (OP- CRC-IC)", - "values": [ - "3 - Considering action" - ] - }, - { - "text": "Ratify the Convention against Discrimination in Education ", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Do not impede access to detention centres by other national or international oversight mechanisms different from the national preventive mechanism established by the Optional Protocol to the Convention against Torture, and adopt legislation defining and clarifying the role and responsibilities of the Special Prevention Group in respect to the Office of the Ombudsman ", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Ratify the Rome Statute of the International Criminal Court, including accession to the Agreement on the Privileges and Immunities", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Allow the OHCHR to open a country office with a full mandate", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Prevent discrimination and violence against vulnerable and marginalized groups", - "values": [ - "4 - General action" - ] - }, - { - "text": "Continue efforts in the fight against human trafficking", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Intensify its actions to combat violence against women and counter discrimination against women", - "values": [ - "4 - General action" - ] - }, - { - "text": "Give priority to judicial system reform, especially to ensure equal access to justice, expeditious court proceedings and effective enforcement of court decisions, as well as to integrate human rights education into professional training programmes for judges and prosecutors", - "values": [ - "4 - General action" - ] - }, - { - "text": "Ensure the separation of juvenile convicts from adult inmates ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Request the necessary assistance from various United Nations bodies in order to take up the various challenges mentioned in its national report ", - "values": [ - "1 - Minimal action" - ] - }, - { - "text": "Step up efforts to allocate more resources in the Constitution", - "values": [ - "4 - General action" - ] - }, - { - "text": "Ratify the Rome Statute of the International Criminal Court and accede to the Agreement on the Privileges and Immunities of the ICC ", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Share with other developing countries its experiences and best practices in guaranteeing the right to food and combating poverty, in particular in the area of microcredit", - "values": [ - "1 - Minimal action" - ] - }, - { - "text": "The inclusion of the crime of torture in the new draft criminal code is welcomed and the Government is encouraged to finalize the draft code, taking into account comments received from relevant stakeholders", - "values": [ - "4 - General action" - ] - }, - { - "text": "Abolish permanently the death penalty", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Consider a moratorium on the use of the death penalty with a view to its abolition ", - "values": [ - "3 - Considering action" - ] - }, - { - "text": "Reinforce the independence and the capacity of the Irish Human Rights Commission to fulfil its mandate effectively in accordance with the Paris Principles", - "values": [ - "4 - General action" - ] - }, - { - "text": "Earmark additional financial resources to health services and reduce the financial burden faced by vulnerable groups in accessing medical care", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Continue to create a safe and enabling environment for civil society in order to help the country's ongoing transition to democracy", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Block acts of violence against religious minorities", - "values": [ - "4 - General action" - ] - }, - { - "text": "Strengthen its efforts to fight sexual abuse of children within the framework of adopting a programme for the promotion of the rights of the child ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Continue to strengthen efforts to promote and protect the rights of women, especially to eliminate discrimination and violence against women in all spheres", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Reinstate the Council for the Prevention of Racial Discrimination, Xenophobia and Related Intolerance, or establish an alternative multi-stakeholder institution with the objective of further preventing discrimination and intolerance", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Take effective measures to curb racial hatred and discrimination against the Roma population", - "values": [ - "4 - General action" - ] - }, - { - "text": "Pay particular attention to the process of judicial-legal reforms by strengthening the legislative framework", - "values": [ - "4 - General action" - ] - }, - { - "text": "Continue programmes to eradicate domestic violence and violence against women", - "values": [ - "4 - General action" - ] - }, - { - "text": "Respond, as soon as possible, to the outstanding communications from the treaty bodies, including those from the Human Rights Committee ", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Develop advocacy campaigns to raise the level of awareness of the rights of women ", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Strengthen efforts to protect women's rights, including by addressing cultural and social barriers, as well as legal ones.", - "values": [ - "4 - General action" - ] - }, - { - "text": "Reinforce the legislative framework and institutional mechanisms to exclude all discriminatory practices that prevent equal access to employment for persons belonging to ethnic, national or religious minorities", - "values": [ - "4 - General action" - ] - }, - { - "text": "Release a clear timetable for work towards ICCPR ratification", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Continue the project of technical cooperation with OHCHR in a number of different areas, particularly to strengthen the capacity of persons in charge of enforcing the law", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Take effective steps to ensure that the Peruvian National Police, armed forces, municipal security officers, and prison guards refrain from all cruel and inhuman treatment of citizens and prisoners", - "values": [ - "4 - General action" - ] - }, - { - "text": "Continue to apply the strategies and plans for the socio-economic development of the country ", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Take further steps to implement the Strategic Development Plan", - "values": [ - "4 - General action" - ] - }, - { - "text": "Make food security a national priority and give all the required support to policies and programmes of the fight against malnutrition throughout the country", - "values": [ - "4 - General action" - ] - }, - { - "text": "Sign and ratify the Optional Protocol to the Convention on the Elimination of All Forms of Discrimination against Women and the Optional Protocol to CRPD ", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Accede to the Optional Protocol to CEDAW (OP-CEDAW) and fully incorporate CEDAW into domestic legislation without delay ", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Redouble efforts and pursue activities aimed at ensuring respect for environmental legislation ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Continue to take measures within the framework of the Plan of Action on Education for All (2003-2015) in order to promote the right to education especially for women and girls ", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Continue the efforts to reduce overcrowding and take action to improve the general conditions in prisons and detention centres", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Continue strengthening the legislation for the elimination of all forms of discrimination against women", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Ratify the International Covenant on Civil and Political Rights and continue to raise public awareness about international human rights law and the legal avenues available for defending those rights", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Take appropriate measures to ensure that the national human rights institution functions in compliance with the Paris Principles ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Strengthen measures to expand women's access to land and to microfinance and microcredit at low interest rates ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Step up cooperation with the Human Rights Council, OHCHR, special procedures and treaty bodies to address the remaining human rights challenges identified in Eritrea's report ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Improve prison conditions in line with the BJMP Modernization Act and with special regard to assuring the separation of the child and juvenile from adult prisoners ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Review criminal justice procedures in order to reduce the length of detention without trial ", - "values": [ - "3 - Considering action" - ] - }, - { - "text": "Continue supporting the work of OHCHR Seoul office", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Accede to and ratify the Rome Statute of the International Criminal Court and the Agreement on the Privileges and Immunities of the International Criminal Court ", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Step up efforts to abolish the death penalty", - "values": [ - "4 - General action" - ] - }, - { - "text": "Take measures, at the national level, against the sexual exploitation of minors", - "values": [ - "4 - General action" - ] - }, - { - "text": "Continue to advance in tackling, in an efficient and responsible manner, the structural underlying causes of discrimination against women", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Continue its efforts to strengthen the institutional and legal framework for human rights protection", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Continue its national efforts with the support and assistance of the international community in the promotion and protection of human rights, particularly in the realization of economic, social and cultural rights of the people of the Gambia", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Ratify the International Covenant on Civil and Political Rights and its Second Optional Protocol", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Abolish the system of registration for nongovernmental organizations working in the country.", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Establish, as soon as possible, a moratorium on the execution of the death penalty with a view to its abolition in the future ", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Further step up its efforts to bring earlier national legislation in line with its international obligations, especially in the area of women's and children's rights, considering that article 116 of the Constitution gives precedence to international law.", - "values": [ - "4 - General action" - ] - }, - { - "text": "Take further measures to guarantee the rights to expression, assembly, association and belief", - "values": [ - "4 - General action" - ] - }, - { - "text": "Further elaborate provisions in its legislation on the justiciability of the right to education ", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Continue to strengthen norms, programmes and administrative measures aimed at combating all forms of violence against women and children, including educational and prevention plans", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Sign and ratify the Optional Protocol to the Convention on the Elimination of All Forms of Discrimination against Women and the two Optional Protocols to the Convention on the Rights of the Child", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Implement appropriate measures to prevent discrimination against religious minorities", - "values": [ - "4 - General action" - ] - }, - { - "text": "Take steps to investigate all reports of gender-based violence, including accusations of sorcery, that perpetrators are brought to justice in fair trials, and that victims receive reparation and are given access to healthcare and other relevant services", - "values": [ - "4 - General action" - ] - }, - { - "text": "Adopt a comprehensive action plan to accelerate the repatriation process of Meskhetian Turks, including measures to facilitate their integration and taking into account the educational needs of their children", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Establish an independent investigation mechanism to effectively prevent torture and ill-treatment in detention, train personnel and guarantee effective legal representation and remedies for detainees", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Accelerate and deepen investigations of complaints of torture and other ill-treatment", - "values": [ - "4 - General action" - ] - }, - { - "text": "Declare at the earliest a moratorium on the application of the death penalty with a view, eventually, to the definitive abolition of capital punishment ", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Continue its 2012-2016 project on judicial transformation, by inserting changes at the level of the judicial authority by setting up appropriate strategies to enhance access and the expeditious delivery of justice", - "values": [ - "4 - General action" - ] - }, - { - "text": "Further strengthen measures to promote and protect the rights of all migrant workers by ensuring their appropriate welfare and standard of living", - "values": [ - "4 - General action" - ] - }, - { - "text": "Ensure that domestic laws are in conformity with international human rights obligations ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Adopt an open, merit-based selection process when selecting national candidates for United Nations treaty body elections", - "values": [ - "3 - Considering action" - ] - }, - { - "text": "Redouble its efforts to eradicate child labour, and accord all possible protection and assistance to children living or working in the streets ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Strengthen efforts to work across agencies and with non-governmental women's organizations to raise awareness that domestic violence is unacceptable, to educate women on their rights and to combat stereotypes and customary practices that perpetuate domestic violence.", - "values": [ - "4 - General action" - ] - }, - { - "text": "Take more serious measures to prevent and suppress manifestation of racism, xenophobia and intolerance against minority groups in the country, in particular the Muslims ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Establish its national human rights institution, on priority, in accordance with the Paris Principles", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Amend the protest law on the Right to Public Meeting, Processions and Peaceful Demonstrations in accordance with article 73 of the Constitution guaranteeing freedom of assembly", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Improve the conditions in prisons, try all persons held in preventive detention within a reasonable period of time and ensure that juveniles are not held in pre-trial detention ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Investigate promptly, effectively and impartially all reports of attacks on or threats against human rights defenders, lawyers, journalists and civil society activists, and identify those responsible and bring them to justice ", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Raise the school attendance rate and develop facilities at the various levels of education, while favouring gender equality and access to education, with technical and financial assistance provided by the international community.", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Strengthen access for persons with disabilities in all areas, particularly their political participation such as voting ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Ensure that the rights of children with disabilities are respected, and take into account, inter alia, the recommendations of the Committee on the Rights of the Child ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Take legal and administrative measures to address civilian killings by the United States military troops during and after its invasion of Afghanistan and Iraq by bringing perpetrators to justice and remedying the victims", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Apply the existing legal dispositions on the combating of discrimination and continue the fight on the trafficking on human beings ", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Take immediate steps to adopt and implement policies and measures to combat racism, racial discrimination, xenophobia, Islamophobia and related intolerances", - "values": [ - "4 - General action" - ] - }, - { - "text": "Continue its efforts to implement the LLRC's recommendations of the National Action Plan", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Take concrete steps for strengthening the independence of the ombuds institution", - "values": [ - "4 - General action" - ] - }, - { - "text": "Ensure all allegations of extra-judicial killings by security personal over the past ten years are fully investigated and the perpetrators brought to justice", - "values": [ - "4 - General action" - ] - }, - { - "text": "Effectively implement international labour standards with regard to children.", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Establish a NHRI in accordance with the Paris Principles through expeditious efforts. ", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Guarantee the rights of education, health, housing and employment of Roma and other ethnic minorities", - "values": [ - "4 - General action" - ] - }, - { - "text": "Facilitate for all children born to Iranian mothers access to a birth certificate and Iranian nationality, regardless of the nationality of the father", - "values": [ - "4 - General action" - ] - }, - { - "text": "Conduct awareness-raising campaigns related to women's rights, in particular aimed at eradicating female genital mutilation", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Protect trade union rights and the independence of trade unions", - "values": [ - "4 - General action" - ] - }, - { - "text": "Fully align Ecuador's national legislation with all obligations arising out of the Rome Statute of the ICC", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Accelerate steps towards finalizing the legal framework for the establishment of a national human rights institution in line with the Paris Principles ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Intensify efforts to investigate cases of violence and intimidation against journalists and ensure that perpetrators are held to account ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Implement the measures laid out in the Strategic Development Plan", - "values": [ - "4 - General action" - ] - }, - { - "text": "Strengthen its cooperation with the international community, in particular specialized agencies and programmes of the United Nations system with a view to building capacity and getting technical assistance in crucial areas such as human development, poverty eradication, education and health ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Accelerate the judicial and police reform processes ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Continue efforts to combat trafficking in women and children in the framework of implementation of the national legislation and international obligations of the country ", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Continue dialogue at the national level, with a view to reaching consensus to abolish the death penalty in the Constitution", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Protect human rights defenders from intimidation and violence and ensure prompt, impartial and thorough investigation of allegations of harassment, torture and ill-treatment of human rights defenders", - "values": [ - "4 - General action" - ] - }, - { - "text": "Consider establishing an independent national human rights institution in full compliance with the Paris Principles ", - "values": [ - "3 - Considering action" - ] - }, - { - "text": "Combat violence against women", - "values": [ - "4 - General action" - ] - }, - { - "text": "Strengthen measures to ensure the independence of the judiciary, fight corruption and political interference and expand the State justice system effectively in rural territories. ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Repeal discriminatory provisions in the Constitution and Citizenship Acts", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Continue its policy focusing on principal human rights issues, in particular in the framework of its comprehensive development vision known as Qatar National Vision 2030 and of its own civilization and religious identity", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Continue to ensure the independence of and support for the Office of the National Commissioner for Human Rights and the Truth and Reconciliation Commission, in order to fulfil their mandates ", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Continue its efforts in carrying out various programmes for promoting gender equality, combating negative stereotypes about women and their social role, including for the implementation of the "Female leaders in security and defence" project", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Ratify the CAT and its Optional Protocol ", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Take further steps to create a more enabling environment for international and national media platforms and ensure plurality of opinions within the country", - "values": [ - "4 - General action" - ] - }, - { - "text": "Take action to reduce overcrowding in detention facilities and provide separate detention facilities for child offenders", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Ensure the swift, transparent and effective prosecution of violence against journalists ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Engage in a dissemination and popularization campaign of major international human rights instruments in the whole national territory ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Consider early ratification of the Optional Protocol to the Convention against Torture and Other Cruel, Inhuman or Degrading Treatment or Punishment and the establishment of an effective national preventive mechanism accordingly.", - "values": [ - "3 - Considering action" - ] - }, - { - "text": "Accede to the Convention on the Protection and Punishment of the Crime of Genocide and the Convention on the Status of Refugees.", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Establish full collaboration with the International Criminal Tribunal for the Former Yugoslavia", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Continue its efforts to preserve the nation's ethnic diversity and promote its cultural heritage ", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Maintain education and training in human rights in those programmes for different persons working in the civil service and administration and the population as a whole ", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Implement the national strategy for the prevention, assistance and eradication of violence against women 2017-2019, and ensure continuation of this work beyond 2019", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Strengthens efforts to further promote empowerment of women", - "values": [ - "4 - General action" - ] - }, - { - "text": "Extend an open and standing invitation to all special procedures and sign and ratify the Convention on the Rights of Persons with Disabilities CRPD and the Convention against Torture and Other Cruel, Inhuman or Degrading Treatment or Punishment CAT, and sign and ratify the International\nConvention for the Protection of All Persons from Enforced Disappearance CED and the Optional Protocol to the Convention on the Rights of the Child on the sale of children, child prostitution and child pornography OP-CRC-SC ", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Eradicate in law and in practice corporal punishment and the amputation of limbs, child abuse and neglect, female genital mutilation, forced and early marriage, and the forced feeding of girls, as well as issues related to birth registration, and seek technical assistance from United Nations agencies in this regard, as recommended by the Committee on the Rights of the Child ", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Continue its efforts to achieve the MDGs on the 2015 horizon ", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Empower by statute the Zimbabwe Human Rights Commission to enable it to act in accordance with the Paris Principles and provide it with adequate resources to function effectively ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Reform the penal code to decriminalize private, same-sex sexual activity between consenting adults", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Take actions to ensure that no ill-treatment occurs during expulsions, inter alia by introducing an effective system for lodging complaints of such treatment ", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Pursue the ongoing work of revision and improvement of the Criminal Code to be amended regarding provisions against gender-based violence and hate crimes", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Reconsider seriously its policy towards the use of pre-trial detention, and ensure that this policy is effectively implemented and enforced ", - "values": [ - "3 - Considering action" - ] - }, - { - "text": "Continue the efforts concerning combating discrimination on the basis of religion", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Intensify programmes to promote the status of women ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Move forward the ratification of the Convention against Torture and Other Cruel, Inhuman or Degrading Treatment or Punishment", - "values": [ - "4 - General action" - ] - }, - { - "text": "Speed up the implementation of legal framework, as well as improve systems and procedures for the administration of justice and to make further progress on public governance", - "values": [ - "4 - General action" - ] - }, - { - "text": "Ensure the relevant constitutional provisions relating to freedom of the press are properly implemented and adhered to and that a free press, freedom of speech and assembly are allowed to thrive without undue interference ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Strengthen measures already adopted with regard to the rights of children with disabilities", - "values": [ - "4 - General action" - ] - }, - { - "text": "Consider establishing in its domestic legal system norms that strengthen the fight against discrimination ", - "values": [ - "3 - Considering action" - ] - }, - { - "text": "Immediately respect the decisions of the Human Rights Council and fully cooperate with the international Commission of Inquiry, including by granting access on the ground and by not inhibiting the mission which it has been entrusted with", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Improve reception services at foreigners' registration centres and implement alternative registration services, particularly for asylum seekers with special needs", - "values": [ - "4 - General action" - ] - }, - { - "text": "Consider lifting its reservations in respect of article 10, paragraphs 2 (b) and 3 of the ICCPR, in line with South Africa's previous recommendation ", - "values": [ - "3 - Considering action" - ] - }, - { - "text": "Work towards abolishing the separate system of military police by implementing more effective measures to tie State funding to compliance with measures aimed at reducing the incidence of extrajudicial executions by the police", - "values": [ - "4 - General action" - ] - }, - { - "text": "Consider developing a policy aimed at assisting and protecting internally displaced persons and refugees ", - "values": [ - "3 - Considering action" - ] - }, - { - "text": "Accelerate the process of adopting specific legislation and a national action plan to combat all forms of violence against women, particularly those in vulnerable situations, including migrants, persons with disabilities and women in detention facilities", - "values": [ - "4 - General action" - ] - }, - { - "text": "Fully cooperate with the United Nations and the international community to resume the political process as soon as possible", - "values": [ - "4 - General action" - ] - }, - { - "text": "Continue to develop education, health so that people can enjoy education and health of higher quality ", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Continue efforts to accede to international human rights treaties, particularly the Convention against Torture and Other Cruel, Inhuman or Degrading Treatment (CAT) ", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Promptly investigate and prosecute all allegations of torture and extrajudicial killings", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Withdraw remaining reservations to the CRC ", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Ensure prompt, transparent and impartial investigation and prosecution of all alleged attacks against independent journalists, ensuring that the media workers do not face reprisals for their publications ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Take steps to ratify the remaining five core UN human rights treaties namely the International Covenant on Economic, Social and Cultural Rights, the International Convention on the Elimination of All Forms of Racial Discrimination, the Convention against Torture and Other Cruel, Inhuman or Degrading Treatment or Punishment, and the International Convention on the Protection of the Rights of All Migrant Workers and Members of Their Families", - "values": [ - "4 - General action" - ] - }, - { - "text": "Implement appropriate, efficient measures to protect children from economic exploitation, in particular, the worst forms of child labour in line with the ILO Conventions No. 182 and No. 138, focusing especially on the mining sector as well as child domestic workers", - "values": [ - "4 - General action" - ] - }, - { - "text": "Increase available prison facilities to reduce overcrowding and ensure adequate capacity to enforce prison sentences", - "values": [ - "4 - General action" - ] - }, - { - "text": "Achieve tolerance and peaceful existence in all parts of society by promoting interfaith and intercommunal dialogue", - "values": [ - "4 - General action" - ] - }, - { - "text": "Review the daiyo kangoku system in order to ensure that the detention procedure is consistent with its obligations under human rights law.", - "values": [ - "3 - Considering action" - ] - }, - { - "text": "Adopt all necessary measures to eradicate the persistent practice of female genital mutilation, including through awareness-raising campaigns, in cooperation with civil society organizations ", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Finalize the draft national gender policy and its action plan", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Improve the implementation of the laws that protect the rights of women, girls and children", - "values": [ - "4 - General action" - ] - }, - { - "text": "Repeal Article 445 of the 2008 Constitution, which effectively grants total immunity to State and military personnel to act with impunity, even for criminal offences ", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Ensure that the death penalty is not applied to consensual same sex-relations between adults, and that the Penal Code does not criminalise such activity, and include sexual orientation and gender identity in non-discrimination laws and programmes, and promote tolerance and non-discrimination on grounds of sexual orientation or identity in line with the Yogyakarta Principles", - "values": [ - "4 - General action" - ] - }, - { - "text": "Create a National Human Rights Institution in accordance with the Paris Principles ", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Take measures to guarantee effective access to justice for victims of gender-based violence, to provide health and psychological support for victims and to provide protection for women that report cases of gender-based violence ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Guarantee the enjoyment of human rights and humanitarian law for those living in the occupied territories.", - "values": [ - "4 - General action" - ] - }, - { - "text": "Continue its efforts to eradicate female genital mutilation and strengthen implementation of its laws and administrative decisions criminalizing its perpetrators", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Continue concerted efforts at the international level for the prevention of genocide", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Adopt expeditiously necessary legislation and implement all relevant measures to prevent and combat sexual abuse of children, providing for the physical and psychological recovery and social reintegration of child victims ", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Continue strengthening the social protection programmes developed in conformity with the Convention on the Rights of Persons with Disabilities ", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Adopt the law that will protect minors from early and forced marriages", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Harmonize its domestic legal framework concerning freedom of religion and belief with its international obligations ", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Put into place guarantees, in particular public hearings and the right to appeal, including in the framework of the fight against terrorism, to ensure the right to a fair trial", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Ratify Convention against Torture and Other Cruel, Inhuman or Degrading Treatment or Punishment ", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Pursue strategies and policies to prevent discrimination, in all spheres of public life, against its indigenous people and other minority groups such as Afro-Swedes and Muslims", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Ensure that the right to freedom of expression is fully respected and its exercise facilitated, including with respect to the drafting and adopting of the new Constitution", - "values": [ - "4 - General action" - ] - }, - { - "text": "Strengthen the implementation of programmes aimed at the rehabilitation of victims of human trafficking, including the provision of counselling, shelter, legal assistance and other rehabilitative services to victims ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Respect its obligations under the Second Optional Protocol to the International Covenant on Civil and Political Rights and refrain from the plans to reimpose the death penalty", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Adopt policies necessary for the protection of victims of discrimination based on religion, language and ethnic origin", - "values": [ - "4 - General action" - ] - }, - { - "text": "Strengthen the capacity to adequately protect and promote human rights in cooperation\nwith OHCHR", - "values": [ - "4 - General action" - ] - }, - { - "text": "Lift all restrictions on movements of foreign journalists and international organizations defending human rights ", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Improve measures to protect applicants, particularly those from rural areas, in order to strengthen the land restitution process ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Ensure that the National Human Rights Commission complies with the Paris Principles and that the institution seeks accreditation from the International Coordinating Committee.", - "values": [ - "4 - General action" - ] - }, - { - "text": "Extend a standing invitation to the Human Rights Council's special procedures", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Continue its efforts to improve health through expanding its Zero Malnutrition programme to cover as much of its population as possible", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Promulgate a criminal code and amend the law of criminal procedure to comply with international human rights law", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Respect the right to a fair trial, notably by ensuring that legal procedures are respected ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Address the questions of pre-school coverage, drop-out rates, as well as violence and discrimination in schools ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Continue to promote and protect the rights of vulnerable groups, especially through the ratification of the Convention on the Rights of Persons with Disabilities", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Pursue the successful implementation of the national Action Plan for Human Rights and Vision 2025, which are in line with the Sustainable Development Goals", - "values": [ - "4 - General action" - ] - }, - { - "text": "Establish an independent body to safeguard the independence of the judiciary and to supervise the appointment, promotion and regulation of members of the profession", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Take immediate measures to conduct independent inquiries into all human rights violations, including allegations of extrajudicial executions, torture and other cruel, inhuman or degrading punishment or treatment, and international humanitarian law, as well as to bring perpetrators to justice ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Continue taking into account the specific needs of persons with disabilities, either in education or on health ", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Refrain from reintroducing the death penalty", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Enact legislation to criminalize trafficking of persons, and put in place procedures to deal with those people vulnerable to exploitation and trafficking ", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Intensify efforts in improving and strengthening its human rights institutions ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Strengthen its efforts to integrate Roma communities through positive action in the area of housing, employment, education and social services ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Continue its efforts to improve the standard of living of the population", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Ratify the Optional Protocol to the Convention on the Rights of the Child on the sale of children, child prostitution and child pornography, sign and ratify the Optional Protocol to the Convention on the Rights of the Child on a communications procedure, adopt respective amendments to the Children's Act of 2001, and fully implement the National Plan of Action on Children 2013-2017", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Take effective measures to improve conditions of detention, in particular to reduce overcrowding and violent crime in prisons, as well as to improve prisoners' access to educational and health services", - "values": [ - "4 - General action" - ] - }, - { - "text": "Sign and ratify the International Convention on the Protection of the Rights of All Migrant Workers and Members of Their Families ", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Strengthen its efforts to ensure that all war crimes trials are carried out in a non-discriminatory manner and that all cases of war crimes are effectively investigated and prosecuted, irrespective of the ethnicity of the victims and perpetrators involved", - "values": [ - "4 - General action" - ] - }, - { - "text": "Take measures to prevent the criminal behaviour of its military and police units assigned in peacekeeping missions, responsible for acts of sexual violence, and enforce the respect for international and human rights law among its peacekeeping units", - "values": [ - "4 - General action" - ] - }, - { - "text": "Take all steps necessary to reform the discriminatory provisions of penal and civil laws against women", - "values": [ - "4 - General action" - ] - }, - { - "text": "Establish legislation to monitor and address human trafficking", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Establish a moratorium with a view to the abolition of the death penalty. ", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Continue efforts in child rights protection and improving children's conditions, especially in the education and healthcare fields", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Ratify ICMW as early as possible ", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Consider the implementation of programmes and policies for the empowerment of young people", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Continue to strive to protect the rights of minorities", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Consider adhering to the Optional Protocols to ICESR and CRPD as soon as possible as well as the Optional Protocols to ICCPR and to CED", - "values": [ - "3 - Considering action" - ] - }, - { - "text": "Enhance the efforts being carried out by Djibouti in the areas of child labour, sexual exploitation and begging among children, as well as the low level of births registered in rural areas", - "values": [ - "4 - General action" - ] - }, - { - "text": "Work to ensure that freedom of opinion and expression are protected", - "values": [ - "4 - General action" - ] - }, - { - "text": "Accede to the Second Optional Protocol to the International Covenant on Civil and Political Rights Aimed at the Abolition of the Death Penalty (ICCPR-OP 2).", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Take necessary steps to provide basic rights for migrants and asylum seekers ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Align domestic legislation on detention with international standards and, in particular, to ratify CAT", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Ensure adequate health and counselling support for adolescent mothers and take further steps to encourage the girls' return to school upon delivering their child ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Ratify the Optional Protocol to the Convention on the Elimination of All Forms of Discrimination against Women (OP-CEDAW)", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Expand the integration of persons with disabilities into programmes and plans for sustainable development", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Conduct in-depth examinations into how race-related issues were affecting law enforcement and the administration of justice, both at the federal and state levels", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Strengthen its national machinery to promote gender equality and gender mainstreaming ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Undertake credible and effective investigations as a matter of priority regarding the Mungiki killings, the Mount Elgon operation and the murders of two civil society activists in addition to the post-election violence ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Take the necessary measures to increase women's access to health care facilities and medical assistance by trained personnel, in particular in rural areas, in order to reduce the incidence of maternal and infant mortality and to enhance the life expectancy of women ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Ratify other treaties and protocols which it has not yet ratified.", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Continue efforts to combat impunity and human rights violations, and achieve the voluntary human rights goals approved by the Council in its resolution 9-12.", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Continue to enact legislations and strengthen policies which are necessary to empower women and strengthen their roles in society ", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Step up its efforts to address overcrowding in correctional facilities and to improve sanitary conditions in these centres", - "values": [ - "4 - General action" - ] - }, - { - "text": "Establish a permanent coordination structure for different security forces to consistently address various issues such as the training of the military and the provision of weapons to them, and ensure that members of the security forces receive training in humanitarian and human rights law and that they follow a programme for gender awareness at all ranks.", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Continue its efforts in order to provide full access to justice, health services and education for all", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Monitor acts and public statements of hatred against ethnic and religious groups, to take necessary measures to combat them and to bring those responsible before justice, in conformity with international standards", - "values": [ - "4 - General action" - ] - }, - { - "text": "Seek assistance from the international community though technical assistance and capacity-building programmes ", - "values": [ - "1 - Minimal action" - ] - }, - { - "text": "Take steps to more effectively prevent and prosecute cases of violence against women, including domestic violence, and to ensure the effective implementation and enforcement of existing legislation in this regard", - "values": [ - "4 - General action" - ] - }, - { - "text": "Cooperate with the United Nations and other international and regional mechanisms in order to ensure that the legal and administrative measures taken to combat terrorism respect the enjoyment of human rights and fundamental freedoms ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Design a comprehensive strategy with a gender and human rights perspective to assist the population that are living in situations of poverty and extreme poverty", - "values": [ - "4 - General action" - ] - }, - { - "text": "Continue the actions aimed at fighting trafficking in persons", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Establish the National Observatory of violence against women", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Reinforce its efforts in the area of the fight against poverty with a view to attaining the Millennium Development Goals and to request the necessary financial and technical assistance in this regard ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Take all necessary measures to effectively implement the national legislation prohibiting female genital mutilation.", - "values": [ - "4 - General action" - ] - }, - { - "text": "Enhance cooperation with international community for preventing and combating human trafficking ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Initiate a national dialogue on a universal basic income", - "values": [ - "4 - General action" - ] - }, - { - "text": "Take immediate steps to ensure that CEDAW is given full legal effect in its domestic laws", - "values": [ - "4 - General action" - ] - }, - { - "text": "Ensure broader opportunities for human rights training for the members of the security forces ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Measurably improve access to the legal system for Roma individuals and other individuals belonging to groups facing discrimination, and carry out a campaign to increase awareness among these minorities of their rights and means of redress when infringements occur", - "values": [ - "4 - General action" - ] - }, - { - "text": "Take all necessary steps to work towards an immediate moratorium on execution of the death penalty, with a view to a complete abolishment, in line with international human rights standards such as the right to live", - "values": [ - "4 - General action" - ] - }, - { - "text": "Continue to engage its regional and bilateral partners with a view to building capacity and mobilizing resources in support of efforts to fulfil its human rights obligations", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Take concrete steps to ensure that journalists are able to freely carry out their work and report on the political crisis, free from harassment and intimidation", - "values": [ - "4 - General action" - ] - }, - { - "text": "Ratify or accede to CAT, OP-CAT, ICCPR, and lift its broad reservations to CEDAW and CRC", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Continue efforts to build and strengthen national human rights and democratic institutions ", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Continuously conduct nation-wide human rights awareness campaigns with specific emphasis on the right to life of people with albinism ", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Improve prison conditions in order to ensure the rights and dignity of all those deprived of their liberty", - "values": [ - "4 - General action" - ] - }, - { - "text": "Establish an impartial judicial system, including by: establishing an anti-corruption court, empowering anti-corruption institutions (such as the national anti-corruption bureau of Ukraine), and eliminating the potential for political use of the judiciary and prosecutor general\u2019s office", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Proceed to abolish the death penalty from its penal code", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Midterm report", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Step up the process of elaboration of the action plan on the implementation of the Convention on the Rights of Persons with Disabilities with a clearly defined time frame", - "values": [ - "4 - General action" - ] - }, - { - "text": "Expand public participation in pursuit of national development projects such as infrastructure and town planning in order to avoid forced evictions and violence", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Step up efforts in promoting intercultural understanding and tolerance between different ethnic groups in the country ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Carry out efforts in the area of combating discrimination, and provide the Commissioner for the Protection of Equality with all necessary means to carry out its mandate", - "values": [ - "4 - General action" - ] - }, - { - "text": "Amend the relevant provisions of the Criminal Code in order to achieve the full prohibition of all forms of corporal punishment, including at home", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Adopt measures to identify the root causes for the exploitation of children, including through prostitution and pornography, and implement adequate mechanisms for prevention and protection ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Establish a long term policy for addressing migrant workers ", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Expand the programme to prevent the spread of HIV-AIDS, in particular in remote areas", - "values": [ - "4 - General action" - ] - }, - { - "text": "Intensify national efforts to address continued high levels of violence, a common challenge in our hemisphere", - "values": [ - "4 - General action" - ] - }, - { - "text": "Consider establishing a moratorium on executions with a view to abolishing the death penalty, in accordance with General Assembly resolution 62-149.", - "values": [ - "3 - Considering action" - ] - }, - { - "text": "Ratify the ICCPR-OP2, aiming at the abolition of the death penalty.", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Ensure the rights of religious and ethnic minorities. In this regard, respect and guarantee the rights of Iraqi Turkmen and other peoples who are integral with Iraq in accordance with relevant international obligations", - "values": [ - "4 - General action" - ] - }, - { - "text": "Speed-up the abolition of the mandatory death penalty in line with the commitment taken by Barbados during the first UPR", - "values": [ - "4 - General action" - ] - }, - { - "text": "Ratify the Convention on the Rights of Persons with Disabilities and develop public awareness campaigns about the rights and participation of such persons", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Continue improving national legislation in order to ensure equality between women and men on the basis of the principle of non-discrimination", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Consider increasing its dialogue with treaty bodies and special procedures.", - "values": [ - "3 - Considering action" - ] - }, - { - "text": "Continue to build on and strengthen efforts to protect the rights of migrant workers, especially women migrant domestic workers.", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Decriminalize sexual relations between consenting adults of the same sex and amend national legislation to include sexual orientation and gender as prohibited grounds for discrimination", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Take, as soon as possible, the measures necessary to operationalize national human rights institutions, ensuring their independence and depoliticization, with the technical assistance of OHCHR", - "values": [ - "4 - General action" - ] - }, - { - "text": "Ensure the institutionalization of an independent national human rights commission in accordance with the Paris Principles", - "values": [ - "4 - General action" - ] - }, - { - "text": "Continue the efforts to harmonize national legislation with international standards in the field of human rights", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Amend laws and change policies and practices that either expressly discriminate against or perpetuate discrimination against and the marginalization of women ", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Continue placing strong emphasis on promoting and protecting human rights in crucial areas such as poverty eradication, justice administration, education, public health and gender equality", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Increase public awareness about the prohibition of gender discrimination, in particular in the areas of education and employment ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Establish, as a first stage, a moratorium on all executions and then fully abolish the death penalty", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Protect the rights of the victims of the recent mass riots ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Take concrete measures to implement ICESCR and carry out a constructive dialogue with the CESCR.", - "values": [ - "4 - General action" - ] - }, - { - "text": "Implement the recommendations of the Council and recommendations of the special procedures, particularly the Special Rapporteur on the situation of human rights in the Palestinian territories occupied since 1967 and the Special Committee on Israeli Practices in the Occupied Palestinian Territories.", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Continue its close cooperation with civil society in the follow-up to the UPR session ", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Ensure effective investigation and punishment of the crimes of murder of women, and adopt additional measures to combat this phenomenon and raise awareness about such threat", - "values": [ - "4 - General action" - ] - }, - { - "text": "Maintain systematic and fluid relationships with the International Committee of the Red Cross (ICRC) ", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Ensure that the national human rights institutions and the national preventative mechanism comply with the Paris Principles", - "values": [ - "4 - General action" - ] - }, - { - "text": "Implement legislation that increases protection of the rights of persons belonging to minority religious groups, including the status of their places of worship", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Implement the recommendations of the Organization for Security and Co-operation in Europe regarding the reform of the electoral law", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Continue improving access to adequate food for the population in extreme poverty, especially in rural areas ", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Include in the future census a question on national ethnicity ", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Accelerate the process of establishing the national commission for the promotion and protection of human rights, in accordance with the Paris Principles, and undertake the steps necessary for its accreditation with the coordinating committee for national institutions for the promotion and protection of human rights", - "values": [ - "4 - General action" - ] - }, - { - "text": "Work with the United Nations Country Team to develop a national human rights plan which incorporates human rights education and training ", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Bring the Human Rights Commission in conformity with the Paris Principles ", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Consider acceding to human rights conventions that it has yet to ratify, particularly the International Convention on the Protection of the Rights of All Migrant Workers and Members of their Families and ILO Convention 189 ", - "values": [ - "3 - Considering action" - ] - }, - { - "text": "Continue public consultations with NGOs and civil society in the follow-up to the UPR", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Ensure a clear definition in the law on internal security of appropriate and proportionate use of force by law enforcement officials in line with international standards ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Continue the process of signing and ratifying the Optional Protocol to the International Covenant on Economic, Social and Cultural Rights ", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Ratify the Second Optional Protocol to the International Covenant on Civil and Political Rights aiming at abolishing the death penalty.", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Adopt legal measures to criminalize violence against women", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Increase all efforts to combat all forms of intolerance, racism, xenophobia and take further measures and policies to combat racist manifestations, in particular against Roma", - "values": [ - "4 - General action" - ] - }, - { - "text": "Maintain the frontal fight against corruption ", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Continue, in the framework of the fight against female genital mutilation, its action in the implementation of the second National Action Plan for accelerating the abandonment of this practice until 2015", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Continue its efforts to promote human rights, which have reached a notable level in Qatar", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Develop a national plan to provide assistance and compensation to internally displaced persons", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Enact legislation on domestic violence and legislation concerning all forms of sexual abuse to ensure that violence against women and girls constitutes a criminal offence ", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Develop a national plan against racism ", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Reduce the judicial backlog ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Set an example itself accepting that the thousand of migrants workers from its development partners should be able to live in Germany benefiting from the protection of the International Convention on the Protection of the Rights of All Migrant Workers and Members of Their Families as it can truly protect the most elementary rights", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Continue placing poverty alleviation as one of its priority tasks and promote sustainable economic and social development", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Take the necessary steps to prevent the recruitment of girls and boys by the army and other armed forces, and put in place a mechanism for the disarmament, demobilization and reintegration of girls and boys who have been involved in the armed conflict", - "values": [ - "4 - General action" - ] - }, - { - "text": "Submit reports to the international human rights treaty bodies", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Ratify the Convention against Discrimination in Education of the United Nationas Educational, Scientific and Cultural Organization", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Ensure the implementation of measures aimed at combating violence against women", - "values": [ - "4 - General action" - ] - }, - { - "text": "Ensure the rights of the child, with attention to the Guidelines for the Alternative Care of Children", - "values": [ - "4 - General action" - ] - }, - { - "text": "Ensure and strengthen the independence of its national human rights infrastructure ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Enshrine full equality between women and men in the Constitution and enact specific legislation to protect women, including foreign domestic workers from sexual and domestic violence", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Accede to ICC ", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Investigate and publish the findings on the State's participation in the rendition and secret detention programmes of CIA, in particularly, on the presumed existence of secret detention centres on the national territory ", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Take the necessary steps to combat girls' sexual abuse, in particular at school", - "values": [ - "4 - General action" - ] - }, - { - "text": "Grant investigative competences to the National Committee to combat violence against women and children created in 2000 ", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Swiftly ratify the Convention against Torture and Other Cruel, Inhuman or Degrading Treatment or Punishment and adopt all necessary measures to enact it at the national level, in particular with regard to improving living standards in prison and preventing abuse and ill-treatment of detainees", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Raise the minimum age of criminal responsibility to 18, as provided by the Convention on the Rights of the Child", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Accept a visit to the country by the Special Rapporteurs on violence against women, on the situation of human rights defenders, and on freedom of opinion and expression", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Take measures to further ensure the independence and freedom of the media", - "values": [ - "4 - General action" - ] - }, - { - "text": "Continue progressing in the implementation of the recommendations of the Action Plan of the National Reconciliation Mechanism", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Continue its endeavour in enhancing dialogue between civilizations, cultures and religions.", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Take further steps to eliminate discrimination, racism and xenophobia in the country", - "values": [ - "4 - General action" - ] - }, - { - "text": "Investigate with due diligence any complaints filed by journalists and human rights defenders for harassment or repression based on their work or activity, and bring to justice and punish perpetrators, if any ", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Issue a standing invitation to the United Nations human rights special procedures ", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Commute death sentences and establish as soon as possible a moratorium on executions with a view to the definitive abolition of the death penalty ", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "The Government is committed to addressing issues for people with disabilities, for example by providing easy access through the Class Rehabilitation Program that includes ramp access for children with disabilities.", - "values": [ - "4 - General action" - ] - }, - { - "text": "Remove the bureaucratic obstacles to rendering prompt assistance to immigrants ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Continue to promote economic and social sustainable development and poverty reduction, to lay a solid foundation for the enjoyment of all human rights by its people", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Establish an independent national institution in compliance with the Paris Principles", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Continue taking steps to reduce gender-based violence and promoting gender equality", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "As a first step consider a broad amnesty of remaining political and religious prisoners ", - "values": [ - "3 - Considering action" - ] - }, - { - "text": "Prohibit the harmful practices such as the female genital mutilation and the Wahaya or practice of the fifth wife converted into sexual slave", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Utmost efforts should be made to address issues affecting children, including poverty, the recruitment of under-age soldiers, and a lack of access to education ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Ensure the implementation of the recommendations of the Fact-Finding Commission on the events which occurred in Chad from 28 January to 8 February 2008 and their consequences", - "values": [ - "4 - General action" - ] - }, - { - "text": "Incorporate the provisions of the Convention on the Rights of Persons with Disabilities into the domestic legal system", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Examine the possibility of strengthening measures to eliminate all discriminatory treatment related to sexual orientation or gender identity", - "values": [ - "3 - Considering action" - ] - }, - { - "text": "Establish mechanisms to ensure that stigmatization and discrimination against ethnic minorities are eradicated from the public and private sectors, including through training and awareness-raising of public officials, their accountability, and mechanisms providing reparations for persons affected", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Speed up efforts to achieve Millennium Development Goals on education ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Reinforce measures to compensate and resettle indigenous communities forcibly removed from their land", - "values": [ - "4 - General action" - ] - }, - { - "text": "Fully implement its policies aimed at curbing violence against women, promoting equal opportunities for men and women and eliminating discrimination stereotypes of their respective roles in the family and society", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "The delegation emphasized that Tunisia was committed to abide by its international obligations in the area of human rights, regardless of the major responsibilities which with it was faced at the national level and the expectations that the people had with regard to accountability and transitional justice, which needed to be completed prior to the initiation of the reconciliation process and the compensation of victims", - "values": [ - "4 - General action" - ] - }, - { - "text": "In line with the observations by the Human Rights Committee, address the issues of unlawful arrest and detention by the security agencies, and any allegations of torture and ill-treatment of persons in their custody", - "values": [ - "4 - General action" - ] - }, - { - "text": "Adopt criminal legislation that defines and criminalizes torture", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Bring all relevant legislation into line with CRC ", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Put a political plan and a clear strategy to ensure that overlooked ideas about Islamophobia, xenophobia and intolerance are accounted for by those who work in public office and civil service", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Consider strengthening the comprehensive policy in the National Strategy to Combat Trafficking in Persons, including preventive measures ", - "values": [ - "3 - Considering action" - ] - }, - { - "text": "Ensure the prosecution and punishment, according to the law, of those responsible of racial hate and xenophobic criminal acts ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Ratify the outstanding human rights treaties", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Take further steps to progressively improve the quality of education", - "values": [ - "4 - General action" - ] - }, - { - "text": "Continue to engage under international law in support of the right to self-determination and protection of refugees", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Decriminalize all same-sex relations between consenting adults by repealing all relevant provisions of the Criminal Code", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Consider legislation which prohibits all forms of violence against children, including corporal punishment, and which promotes alternative forms of discipline", - "values": [ - "3 - Considering action" - ] - }, - { - "text": "Ensure gender-equality is enshrined in the Constitution ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Provide the Women and Gender Equality Commission with adequate human, financial and technical resources, so as to consolidate its role in gender promotion and mainstreaming", - "values": [ - "4 - General action" - ] - }, - { - "text": "Implement measures to guarantee the rights to adequate food, clean water and sanitation, in order to prevent the spread of diseases among the population, paying special attention to refugee camps", - "values": [ - "4 - General action" - ] - }, - { - "text": "Double efforts in combatting corruption through improving the capacity of the National Secretariat to Combat Corruption", - "values": [ - "4 - General action" - ] - }, - { - "text": "Continue its work to strengthen its policies to further promote gender equality and eliminate discrimination and violence against women", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Promote good governance and transparency at the national and atoll administration levels, strengthen public and private sector accountability, and develop a human rights policy and management framework, including annual reporting on their social, environmental and economic impact, with appropriate monitoring and evaluation", - "values": [ - "4 - General action" - ] - }, - { - "text": "Ensure that public events planned by the LGBT, religious and other rights groups are permitted and adequately policed, according to the obligations of the Republic of Moldova under international human rights law", - "values": [ - "4 - General action" - ] - }, - { - "text": "Adopt new measures to deal with the growing aging of the population ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Introduce and enforce legislation prohibiting corporal punishment of children in all settings, including in the family, schools and all places of deprivation of liberty ", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Consider establishing a Wages Commission on Domestic Workers ", - "values": [ - "3 - Considering action" - ] - }, - { - "text": "Continue strengthening awareness-raising campaigns to increase women's presence in State bodies and in the main companies in the country", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Ensure that the national practice on providing asylum is in line with international standards on the protection of migrants, refugees, asylum seekers and stateless persons", - "values": [ - "4 - General action" - ] - }, - { - "text": "Improve the living conditions of asylum-seekers and refugees ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Continue its efforts to promote maternal and child care and care for young girls ", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Fight against impunity of perpetrators of violence after the 2007 elections and ensure the follow up to the recommendations of the Truth, Justice and Reconciliation Commission", - "values": [ - "4 - General action" - ] - }, - { - "text": "Expedite the granting of communal land title to indigenous communities and consider appropriate compensation in this regard", - "values": [ - "4 - General action" - ] - }, - { - "text": "Continue to take measures to implement the recommendations of the Special Rapporteur on the question of torture and the Working Group on Arbitrary Detention to fully afford detained immigrants the right to contact their consular representatives", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Continue efforts in the fight against terrorism including assistance to victims of terrorism", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Allocate the necessary resources to ensure the effective operation of the office of the ombudsman", - "values": [ - "4 - General action" - ] - }, - { - "text": "Develop and implement, in close consultation with civil society, a national human rights plan with clear, specific and measurable goals", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Liechtenstein will continue to pay particular attention to the promotion of ethnic and religious tolerance between the different communities in the country", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Sign and ratify the Optional Protocol to the Convention on the Rights of the Child (CRC) on the involvement of children in armed conflict, and implement it nationally.", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Finalize and fully implement the national policy on interfaith harmony, in order to, among other things, protect the rights of religious minorities", - "values": [ - "4 - General action" - ] - }, - { - "text": "Ensure for every citizen the exercise of his or her right to freedom of expression ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Provide more opportunities to women in the labour market", - "values": [ - "4 - General action" - ] - }, - { - "text": "Adopt measures to strengthen the independence of the judiciary and guard against corruption and political interference ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Repeal all provisions that criminalize sexual activity between consenting adults in conformity with international obligations ", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Continue to implement the National Mental Health plan and the HIV National Strategic Plan and improve the level of health care in the country", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Fully investigate all allegations of human rights violations committed by elements of the military and security forces, including the adoption of recommendations made by Mexico National Human Rights Commission", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Adopt measures to prevent and eliminate all abuses of sexual violence against girls and women, ensuring that perpetrators are effectively held to account, including with full coordination of the Zimbabwe Gender Commission", - "values": [ - "4 - General action" - ] - }, - { - "text": "Take all necessary measures to ensure equal, legal and fair treatment of minorities, including Roma", - "values": [ - "4 - General action" - ] - }, - { - "text": "Ensure sufficient human resources in the judicial system, including the Supreme Court of the Judiciary, to enable it to operate independently, to decrease the number of persons in preventive custody and to guarantee the right to a fair trial", - "values": [ - "4 - General action" - ] - }, - { - "text": "Put an end to the policy of imposing unilateral coercive measures against other countries and take initiatives to eliminate those unilateral punitive measures that violate human rights in targeted countries and constitute a breach of the terms of article 1 (2) of the provisions of the International Covenant on Economic, Social and Cultural Rights as this is a national decision whose consequences go beyond Swiss borders", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Continue efforts to combat all forms of violence against women with a particular emphasis on the most vulnerable groups of society", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "With the intention of strengthening the efficiency of the cooperation with the United Nations system and with the view of improving its national policies, Brazil reinforced its commitment to create new tools for the internal monitoring of human rights. This would include a national system of human rights indicators and the elaboration of annual reports on the situation of human rights, taking into account, among other aspects, a follow-up of the UPR exercise.", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Establish appropriate shelters and social services for victims of domestic violence, as well as a system of victim compensation and reintegration ", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Promote the full access of Roma children to education at all levels by introducing a concrete action plan with the budgetary means to achieve this goal. Efforts to decrease the rate of dropouts of Roma children should be intensified further", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Intensify its fight against poverty and strengthen access to education for all Djiboutian while eliminating gender disparities in this area ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Provide international humanitarian organizations and human rights monitors with immediate access to the prison camps and their surviving victims", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Enact the prohibition of female genital mutilation, and strengthen its awareness-raising and educational efforts to eliminate that practice and its underlying cultural justifications ", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "That the fight against domestic violence continues to be a priority for the Government ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Deepen efforts to prevent and sanction harmful traditional practices, such as female genital mutilation, the tradition known as trokosi, early forced marriage and accusations of witchcraft and [...], guaranteeing the protection and rehabilitation of victims", - "values": [ - "4 - General action" - ] - }, - { - "text": "Consider establishing a National Human Rights Institution in compliance with the Paris Principles as a step to strengthen the promotion and protection of human right for all its citizens", - "values": [ - "3 - Considering action" - ] - }, - { - "text": "Continue to promote gender equality and ensure equal opportunities for all women and girls", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Continue efforts to prevent and eliminate child labour and, if necessary, adopt further measures in this area ", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Further increase coverage for people to access health services in order to meet the targets set out by the National Health Insurance Scheme", - "values": [ - "4 - General action" - ] - }, - { - "text": "Strengthen capacities and skills of educational institutions with a view to their rehabilitation", - "values": [ - "4 - General action" - ] - }, - { - "text": "Incorporate its international human rights obligations into domestic laws, in particular the rights of the child", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Set out how it will act against the culture of impunity, including for perpetrators of extrajudicial killings ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Continue adopting and implementing robust measures to better address domestic violence, and develop programmes to assist the victims of domestic violence and programmes to assist the victims of domestic violence", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Take measures to improve the participation of persons of immigrant background, especially young people, in the labour market, and to improve their access to education and housing", - "values": [ - "4 - General action" - ] - }, - { - "text": "Ensure respect for freedom of expression and protection of journalists by reforming the Media Industry Development Decree 2010 and introducing freedom of information legislation that accords with international human rights standards", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Continue to improve the representation of women in Parliament at both national and local levels", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Effectively fight violence against women and take substantive measures to combat sexual exploitation and sexual crimes against children", - "values": [ - "4 - General action" - ] - }, - { - "text": "Strengthen efforts towards promotion of gender equality", - "values": [ - "4 - General action" - ] - }, - { - "text": "Intensify existing efforts and take additional administrative and legislative measures necessary to ensure birth registration of all children born in Timor-Leste, particularly those born in homes", - "values": [ - "4 - General action" - ] - }, - { - "text": "Strengthen the capacity and improve effectiveness of the State-level human rights Ombudsman, ensuring adherence to the Paris Principles", - "values": [ - "4 - General action" - ] - }, - { - "text": "Establish a national human rights institution, including the nomination of an ombudsperson for children, provided with adequate human and financial resources to promote and strengthen accessibility for children and to enable children to submit complaints ", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Finish the development of indicators for the human right to water and sanitation, combating trafficking and smuggling of human beings, and access to justice and fair trial", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Take concrete steps to address reporting delays to United Nations treaty bodies, in particular the Human Rights Committee", - "values": [ - "4 - General action" - ] - }, - { - "text": "Move on speedily to the ratification and/or application of human rights instruments, particularly the International Covenant on Civil and Political Rights", - "values": [ - "4 - General action" - ] - }, - { - "text": "Ratify the Second Optional Protocol to the International Covenant on Civil and Political Rights", - "values": [ - "3 - Considering action" - ] - }, - { - "text": "Call on the international community to be more fully involved next to the young State of Djibouti and to accompany it in its efforts aimed at consolidating the rule of law, notably through the integration of international norms into its national legislation, the training on the preparation of national reports on human rights and the inclusion of human rights in school curricula and training", - "values": [ - "1 - Minimal action" - ] - }, - { - "text": "Encourage women's participation in the public life of the country", - "values": [ - "4 - General action" - ] - }, - { - "text": "Undertake efforts to withdraw the country's reservations to the Convention on the Elimination of all Forms of Discrimination against Women", - "values": [ - "4 - General action" - ] - }, - { - "text": "Ensure greater transparency and broader public access to government information and official documents ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Consider as a good practice, to be continued and strengthened, the project conducted by the Ministry of Education, in the framework of the Peace Agreements, to promote a culture of peace in Guatemalan society, especially among young people.", - "values": [ - "3 - Considering action" - ] - }, - { - "text": "Ensure that journalists and other individuals be able to freely exercise the right to freedom of expression and have access to Internet without undue restrictions", - "values": [ - "4 - General action" - ] - }, - { - "text": "Continue cooperative engagement with its regional and international partners to ensure adequate resources for implementing policies and programmes on human rights ", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Safeguard the rights of victims of human trafficking consistent with its human rights obligations ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Adopt measures to restrict the recruitment of children in the conflict and to ensure their demobilization and integration into society. Pursue and punish all those responsible for violations of the human rights of children, in particular for killings and mutilations", - "values": [ - "4 - General action" - ] - }, - { - "text": "Continue the implementation of programmes and plans for the enhancement of education in Liberia at all levels, as well as earmarking more financial resources for this purpose", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Improve programs for social reintegration of detainees ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Establish an independent mechanism in order to identify and take measures against members of the security forces who are responsible for serious human rights violations. ", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Continue its efforts to eliminate illiteracy with the support of the international community ", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Continue implementing programmes in the area of upgrading penitentiary centres, social reinsertion and prevention of recidivism ", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Apply all the provisions of the Constitution relevant to human rights and the rule of law ", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Consider ratifying the Optional Protocol to CEDAW", - "values": [ - "3 - Considering action" - ] - }, - { - "text": "Continue to fight human trafficking in all its forms paying special attention to the situation of the victims ", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "A review of federal and state legislation with a view to restricting the number of offences carrying the death penalty ", - "values": [ - "3 - Considering action" - ] - }, - { - "text": "Continue its efforts to continue raising awareness at the community level and to fully implement its National Action Plan on Violence against Women", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Maintain the efforts to guarantee equal access to education, particularly for women and children", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Further ensure, in accordance with the positive stated ambitions in the previous round of the universal periodic review and Omani practice, the well-being of Omani girls by formally and explicitly encoding the prohibition against female genital mutilation into the Child Law, accompanied by a public information campaign", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Seek the support of the Group of Friends of the Convention against Torture Initiative for technical assistance in the implementation of measures aimed at preventing and investigating reports of torture in the prisons system", - "values": [ - "1 - Minimal action" - ] - }, - { - "text": "Urgently accelerate reforms to the justice sector in order to ensure that members of the judiciary receive adequate legal training in preparation for their assignment, and that access to courts is facilitated by ensuring that enough courts exist in all regions, as well as by taking measures to allow persons without sufficient means to also access the court system", - "values": [ - "4 - General action" - ] - }, - { - "text": "Establish an independent national human rights institution, and provide the financial and human resources necessary for its adequate operation ", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Put in place and apply sanctions against the perpetrators of domestic violence.", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "On the question of the rights of sexual minorities, review laws in order to ensure that legislation is brought into line with international human rights norms ", - "values": [ - "3 - Considering action" - ] - }, - { - "text": "Reform articles 126 and 129 of the Penal Code regarding the crime of torture, in order to broaden the scope of punishable conduct and prevent impunity for perpetrators", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Seek support from the international community, and particularly from United Nations institutions and programmes, in order to establish capacity-building and technical assistance programmes, notably in the areas pertaining to human rights training - child labour - women's rights, particularly female genital mutilation - security, in particular the reinforcement of the army and the judiciary - support for families and communities to help them in fighting against the effects of poverty and HIV-AIDS - education - and juvenile justice ", - "values": [ - "1 - Minimal action" - ] - }, - { - "text": "Strengthen its measures on the elimination of the economic exploitation of children, especially those coming from poor and socially marginalized families ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Finalize the law on the protection of the elderly, including women accused of witchcraft and ensure its strict application", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Re-establish a moratorium on executions, with a view to the complete abolition of the death penalty, and prohibit the imposition of the death penalty against persons with mental and intellectual disabilities ", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Take effective measures, with the assistance of all relevant international organisations, to counter food insecurity, HIV/AIDS pandemics and high morbidity and mortality rates ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Reassess the possibility of signing and ratifying the Rome Statute of the International Criminal Court ", - "values": [ - "3 - Considering action" - ] - }, - { - "text": "Continue to adopt legal and administrative measures to combat corruption", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "consider ratifying the Convention on the Rights of Persons with Disabilities", - "values": [ - "3 - Considering action" - ] - }, - { - "text": "Cooperate effectively with the Human Rights Council and its special procedures with a view to addressing the many pressing human rights issues besetting the country ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Consider adopting a comprehensive policy for prevention and combat of child abuse and neglect in the family", - "values": [ - "3 - Considering action" - ] - }, - { - "text": "Continue efforts to implement the National Action Plan for the protection and promotion and human rights", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Ensure that any crimes against minority and vulnerable individuals and communities are effectively and promptly investigated, and address any alleged discriminatory motive behind these crimes", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Enact specific legislation to criminalize all forms of violence against women, including within households", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Continue to improve access to food, especially in rural areas, for persons living in extreme poverty ", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Strengthen its efforts to ensure all violent attacks in the West Bank are investigated, and prosecuted by competent authorities", - "values": [ - "4 - General action" - ] - }, - { - "text": "Step up efforts to promote racial equality and social inclusion in the education system in Northern Ireland", - "values": [ - "4 - General action" - ] - }, - { - "text": "Continue to enhance the protection of women against violence and to promote greater gender equality ", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Consider extending a standing and open invitation to special procedures mandate holders of the United Nations human rights system ", - "values": [ - "3 - Considering action" - ] - }, - { - "text": "Viet Nam will continue to develop the legal framework on the principle of focusing on human resource to better promote and protect the rights and fundamental freedoms of the people, making sure that national law is compliant with international law and norms.", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Revise the Penal Code as well as other laws so that they comply with international freedom of expression standards and prevent the harassment of human rights defenders, journalists and NGOs ", - "values": [ - "3 - Considering action" - ] - }, - { - "text": "Amend its domestic law to criminalize domestic violence ", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Take legal and educative measures in order to change the population's attitude to corporal punishment of children", - "values": [ - "4 - General action" - ] - }, - { - "text": "Consider extending a standing invitation to special procedures. ", - "values": [ - "3 - Considering action" - ] - }, - { - "text": "Abolish the defamation law and ensure protection and promotion of the rights to freedom of expression and peaceful assembly and association through legislative reform and policy changes ", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Undertake extensive action in order to demilitarize the police force and to grant responsibility for public security to the appropriate institutions", - "values": [ - "4 - General action" - ] - }, - { - "text": "Install mechanisms to ensure the compatibility of popular initiatives with the human rights commitments of Switzerland", - "values": [ - "4 - General action" - ] - }, - { - "text": "Continue to take measures for greater participation, involvement and empowerment of women in all socio-economic fields of the country", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Continue its fight to promote and protect women's rights", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Ratify and implement ICCPR and ICESCR as soon as possible and accelerate the ratification of ICCPR ", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Increase its efforts, as a matter of urgency, in addressing high infant and maternal mortality rates, including providing an access to sexual and reproductive health information ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Ensure that human rights defenders, in particular groups campaigning for equality and against discrimination based on perceived sexual orientation, are allowed to carry out their work in a secure environment, and that the rights to freedom of expression and association are respected. ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Review its death penalty policy and strongly consider a moratorium on the use of capital punishment, and to engage in public debate about the future use of the death penalty", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Speed up the adoption of the draft law on gender equality and Justice", - "values": [ - "4 - General action" - ] - }, - { - "text": "Continue its cooperation and dialogue with the relevant international organisations with the aim to address the socio-economic needs of its people ", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Develop far-reaching and coordinated policies in order to protect minors against potential offenders and continue existing efforts to prevent and combat human trafficking and new forms of online trafficking", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Take measures to ensure consistency and equality across individual States in recognizing same-sex relationships ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Become a party to CED ", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Consider a possibility of establishing a National Action Plan on Business and Human Rights, pursuant to the Guiding Principles adopted by the Human Rights Council", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Continue its positive measures to realize the right to education of its citizens", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Fulfil its international commitments by ratifying ICERD, CAT, OPCAT, CED, OP-CRC-AC and OP-CRC-SC", - "values": [ - "4 - General action" - ] - }, - { - "text": "In keeping with its commitment to protect and promote human rights, consider establishing an independent human rights commission according to the Paris Principles to reinforce the suggestions made by different Treaty Bodies.", - "values": [ - "3 - Considering action" - ] - }, - { - "text": "Further improve the investigation of allegations of torture and ill-treatment, as well as of disproportionate use of force by security personnel, and ensure the prosecution of perpetrators", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Seek to adopt procedures for the determination of the best interests of child victims of trafficking and children of victims, including with a view to strengthening the identification of victims of trafficking, especially women and children", - "values": [ - "4 - General action" - ] - }, - { - "text": "Ensure effective implementation of the existing normative framework guaranteeing women's right to equality, in particular to ensure access to justice, protection and other remedies ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Accede to the International Convention on the Protection of the Rights of All Migrant Workers and Members of Their Families (ICRMWC).", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Reinforce the work already under way to tackle modern forms of slavery, by strengthening efforts to obstruct criminal networks and identifying victims of human trafficking", - "values": [ - "4 - General action" - ] - }, - { - "text": "Confirm by law the abolition of the death penalty in line with the Second Optional Protocol to the International Covenant on Civil and Political Rights aiming at the abolition of the death penalty, which Mongolia has ratified", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Define and enforce regulations to ensure that companies comply with international and national standards relating to human rights, labour, the environment and others", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Eliminate the gender wage gap, and ensure an equal salary for men and women for the same work", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Take concrete action to bring to justice those who committed human rights violations against the members of the Turkish minority in the period 1984-1989 before the natural extinction of both the victims and perpetrators of the said events", - "values": [ - "4 - General action" - ] - }, - { - "text": "Take all measures necessary to accelerate its criminal justice procedure and improve the conditions of its prisons and detentions centres, including the elimination of overcrowding", - "values": [ - "4 - General action" - ] - }, - { - "text": "Ensure independent and effective investigations in cases of torture and ill-treatment in order to combat impunity in such cases, and to ensure that victims of torture obtain adequate compensation and rehabilitation", - "values": [ - "4 - General action" - ] - }, - { - "text": "Continue to play a leading role in facilitating global conferences on interreligious and inter-civilization dialogue, democracy, human rights and a culture of peace", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Step up measures of awareness-raising on gender-based violence to promote the prevention of this phenomenon", - "values": [ - "4 - General action" - ] - }, - { - "text": "Approve the draft law on national minorities and protect effectively differences in languages, religions, culture and identity", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Continue strengthening the comprehensive initiatives on education in favour of migrants, ethnic minorities, women and children, in particular those from Roma communities", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Continue its efforts to enhance the position of women and to provide protection from violence, including by the full implementation of the 2009 Law on Combating Domestic Violence ", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Continue implementing solidarity programmes and initiatives aimed at guaranteeing the enjoyment of the right to quality health services by the people ", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Continue efforts to prevent and combat violence against women and domestic violence, in particular in the Faroe Islands and Greenland ", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Call on the international community to intensify their support and assistance to enable it to overcome the challenges and obstacles it faces during the implementation of its human rights policies, as stated in paragraph 131 of its national report", - "values": [ - "1 - Minimal action" - ] - }, - { - "text": "Conduct an awareness and information campaign aimed at confronting the customs and traditions that give rise to discriminatory practices and violence against women, particularly within the family ", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Step up its collaborative efforts at the regional and international level, including in the ASEAN-Senior Officials Meeting on Transnational Crimes (SOMTC) Working Group on Trafficking in Persons ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Strengthen and ensure the independence of its human rights institutions such as the National Human Rights Commission including through implementation of the 17th Amendment at the earliest.", - "values": [ - "4 - General action" - ] - }, - { - "text": "Fully implement the measures regarding violence against women as outlined in its UPR interim report and consider implementing the recommendations of the Special Rapporteur on violence against women and CEDAW ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Prohibit in the Constitution all forms of discrimination without exception", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Take further steps to improve equality between women and men", - "values": [ - "4 - General action" - ] - }, - { - "text": "Reverse the policy barring pregnant girls from attending schools and sitting state examinations, and encourage girls to return to school after childbirth", - "values": [ - "4 - General action" - ] - }, - { - "text": "Undertake measures to combat racial discrimination, including adoption of a National Action Plan to Combat Racial Discrimination as recommended by the Committee on the Elimination of Racial Discrimination", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Expedite its fight against impunity and prosecute the perpetrators of serious violations of human rights committed during the post-electoral crisis", - "values": [ - "4 - General action" - ] - }, - { - "text": "Continue strengthening the national legislation for the prevention, prosecution and reparation of racism and other forms of discrimination, in particular through the adoption of the National Plan against Racism and Discrimination, the strengthening of the Honorary Commission against Racism and Xenophobia, as well as the implementation of awareness-raising campaigns that may lead to cultural changes ", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Release individuals imprisoned or detained solely on the basis of their conscientious objection to military service and to consider expunging the corresponding charges from their criminal records", - "values": [ - "3 - Considering action" - ] - }, - { - "text": "Introduce strict time limits on pre-charge detention of those suspected of terrorism, and provide information about so-called secret flights.", - "values": [ - "4 - General action" - ] - }, - { - "text": "Consider participating in solving the problems of refugees from the Middle East region that are forced to seek asylum abroad. In this regard, elaboration of the national legislation on refugees could be advisable", - "values": [ - "3 - Considering action" - ] - }, - { - "text": "Intensify efforts to reduce the gap between the sexes in all political, economic and social activities of the country, to bring down the child mortality rate and to better protect the most vulnerable social groups.", - "values": [ - "4 - General action" - ] - }, - { - "text": "Continue implementing the national action plan for the promotion and protection of human rights (2013-2023) ", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Take measures to address the existing wage gap between men and women ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Accelerate the work aimed at strengthening its capacity to report on some treaties ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Continue with measures to protect disadvantaged children and to create conditions for their fully-fledged development.", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Take adequate institutional and legal measures to effectively respond to the problem of enforced disappearances and unpunished intentional homicides", - "values": [ - "4 - General action" - ] - }, - { - "text": "Abolish legal provisions that criminalize the dissemination of information considered to tarnish the Libyan Arab Jamahiriya's reputation abroad, including article 178 of the Libyan Penal Code", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Promote inter-ethnic dialogue and tolerance, particularly at the cantonal and communal levels", - "values": [ - "4 - General action" - ] - }, - { - "text": "Revise the National Security Act of 2010 to bring it in line with international standards, in particular to end immunity provisions and to ensure that human rights violations by armed forces, police and National Intelligence and Security Service, including the Rapid Response Force, are investigated and prosecuted ", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Support efforts aimed at protecting and enhancing human rights on the African continent, particularly through the African Commission on Human and Peoples' Rights. ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Align the minimum age of criminal responsibility with accepted international norms on the matter and ensure that all children up to the age of 18 years can benefit from the protection of the juvenile justice system", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Guarantee due process, prohibit in law the use of torture and other forms of cruel treatments, in accordance with the Convention against Torture", - "values": [ - "4 - General action" - ] - }, - { - "text": "Finalize the five-year national plan for the prevention and gradual eradication of the worst forms of child labour and the protection of adolescent workers, and take appropriate measures to implement it", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Recognize the competence of Committee on the Elimination of Racial Discrimination to receive and consider communications from individuals", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Strengthen programmes for the promotion of work, food and social assistance aimed at national minorities and other vulnerable sectors of the population in the fight against poverty and social inequality", - "values": [ - "4 - General action" - ] - }, - { - "text": "Guarantee the rights of prisoners, provide access to legal aid from the moment of arrest and create programmes of rehabilitation, including for juvenile offenders ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Accelerate the process of establishing of the National Human Rights Institution in accordance with the Paris Principles", - "values": [ - "4 - General action" - ] - }, - { - "text": "Take appropriate steps to accede to the Convention on the Elimination of All Forms of Discrimination against Women ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Harmonize the Act on Equal Treatment with the international human rights instruments ratified by Poland", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Strengthen the capacity to adequately protect and promote human rights in cooperation with OHCHR ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Create specialized courts responsible exclusively for cases of domestic violence which are particularly problematic", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Endeavour to implement fully the Constitution and operationalize the key human rights promotion institutions that it establishes", - "values": [ - "4 - General action" - ] - }, - { - "text": "Prioritize the reform of the prison system and ensure respect for and protection of the human rights of all detainees ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Issue and implement standing invitation to human rights special procedures ", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Commit to ensuring respect, in all circumstances, of the fundamental rights and dignity of all people in the country ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Take necessary measures to ensure the effective enjoyment and protection of the right to freedom of religious belief, with a view to promoting the equality of all peoples and respect for all faiths", - "values": [ - "4 - General action" - ] - }, - { - "text": "Establish and appoint an ombudsman for the rights of children and adolescents", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Conduct a study on the feasibility of inviting officials of the special procedures system for consultations and discussions.", - "values": [ - "3 - Considering action" - ] - }, - { - "text": "Address the problems arising from the trafficking of children to the neighbouring countries within the context of the National Strategy for Children and Young People.", - "values": [ - "4 - General action" - ] - }, - { - "text": "Discontinue the use of judicial action against journalists and media outlets, including the filing of civil and criminal libel suits", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Complete the review of its legislative project on the abolition of the penalty of banishment and promptly follow-up on the results of this review", - "values": [ - "3 - Considering action" - ] - }, - { - "text": "Step up all sorts of measures to end the recruitment and use of children under 18, free those children currently recruited and fully cooperate with the agencies in the field in the demobilization and reintegration of child soldiers", - "values": [ - "4 - General action" - ] - }, - { - "text": "Enhance human rights education", - "values": [ - "4 - General action" - ] - }, - { - "text": "Advance the work of the parliamentary working group on the death penalty and introduce an immediate moratorium", - "values": [ - "4 - General action" - ] - }, - { - "text": "Promote and advance policies that focus on the alleviation of poverty and the advancement of its entire people, irrespective of race, colour or ethnicity ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Take steps to ensure that sexual and reproductive health services, including abortion and contraception services and information, are available, accessible and affordable to all women and girls, especially in rural areas and among vulnerable groups", - "values": [ - "4 - General action" - ] - }, - { - "text": "Increase efforts to enhance the enjoyment of economic, social and cultural rights, which will enable the related rights to work, education, health and housing to be enforced", - "values": [ - "4 - General action" - ] - }, - { - "text": "Continue promoting and encouraging locally-based and member-driven civil societies in the country ", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Reconsider decrees and laws in force which limit freedoms of expression and assembly (such as Article 112 of the Penal Code and the Computer Crimes Act (2007)", - "values": [ - "3 - Considering action" - ] - }, - { - "text": "Ensure the protection of Tibetan refugees by ratifying and applying the 1951 Convention relating to the Status of Refugees and its 1967 Protocol", - "values": [ - "4 - General action" - ] - }, - { - "text": "Continue its efforts towards the abolition of the death penalty", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Accomplish progressively the human rights goals set forth in Human Rights Council resolution 9-12.", - "values": [ - "4 - General action" - ] - }, - { - "text": "Review the incommunicado detention regime by ensuring that access to legal assistance upon detention is not delayed, that detainees have the possibility to communicate with a lawyer of their own choice in private and that they are brought in front of a judge within 72 hours", - "values": [ - "4 - General action" - ] - }, - { - "text": "Continue its efforts to stop child labour by monitoring the implementation of the 2008 Labor Code, especially in rural communities ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Take adequate measures to combat illiteracy and guarantee to all citizens the enjoyment of the right to education, especially for poor people, those living in rural areas or indigenous minorities ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Increase the efficacy of police actions to combat domestic violence, in particular through awareness campaigns ", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Speed up the ratification of the Conventions and Protocols recommended during its 2008 Universal Periodic Review (UPR) and already under way, including Convention on the Rights of Persons with Disabilities (CRPD), its Optional Protocol and Optional Protocol to the Convention on the Elimination of All Forms of Discrimination against Women (OP-CEDAW) ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Continue efforts to meet the challenges in the legal and institutional framework ", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Take concrete measures to eliminate violence against children, and to protect and support victims, including by implementing measures to ensure that such abuse is more frequently denounced and reported by different stakeholders in contact with children", - "values": [ - "4 - General action" - ] - }, - { - "text": "Strengthen its efforts to fully implement the concluding observations adopted by CERD, as well as other relevant concluding observations adopted by other treaty bodies.", - "values": [ - "4 - General action" - ] - }, - { - "text": "Strive to reduce hunger and poverty and guarantee the provision of basic necessities to vulnerable groups", - "values": [ - "4 - General action" - ] - }, - { - "text": "Apply the constitutional norms regulating the penitentiary system which would allow regulating and using with great effectiveness the available resources in the penal system ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Further strengthen its international human rights commitments to the principle of cooperation and dialogue with the United Nations human rights mechanisms", - "values": [ - "4 - General action" - ] - }, - { - "text": "Strengthen efforts in eliminating discrimination and violence against women, also by raising the awareness of the general public and training officials in judiciary and law enforcement at all levels that will include human rights of women ", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Enhance its efforts to prevent incitement to ethnic and religious hatred", - "values": [ - "4 - General action" - ] - }, - { - "text": "Include in its legislation a definition of sex trafficking in line with international law ", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Continue to promote inclusive education for children with disabilities", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Adjust legislation and practices affecting women and children to international law obligations assumed by Sudan ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Take concrete measures to reduce multi-dimensional poverty ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Take further steps to address all kinds of discrimination against women, children, minorities and indigenous peoples.", - "values": [ - "4 - General action" - ] - }, - { - "text": "Ratify Optional Protocol of the International Covenant on Economic, Social and Cultural Rights", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Continue its efforts towards eradicating discrimination and violence against women and girls, including by fully implementing the laws against rape and \u201chonour\u201c crimes and thoroughly investigating and prosecuting all violations of those laws", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "In the spirit of a constructive dialogue and with the cooperation of the international community, continue efforts to enhance the quality of its educational and health system with a special focus on combating illiteracy", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Decriminalize same-sex conduct between consenting adults and pass legislation to prohibit discrimination based on sexual orientation or gender identity", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Continue striving for the necessary disarmament, demobilization and reintegration of all elements of Seleka as a precondition to enable guaranteeing humanitarian assistance and the defence of human rights", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Intensify its efforts to combat cases of torture and other ill-treatment by state agents, by establishing a training plan in the field of human rights for the State's security forces ", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Continue to work towards full equality between men and women, building on its historical credits, as the first country in the world to give women the right to vote in national elections ", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Lift the remaining reservations to the Convention on the Elimination of All Forms of Discrimination against Women, as well as the reservations made to the Convention on the Rights of the Child", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Accelerate the ratification of the range of international human rights instruments accepted at the universal periodic review in 2010, particularly the optional protocols to the Convention on the Rights of the Child", - "values": [ - "4 - General action" - ] - }, - { - "text": "Harmonization of domestic law with international human rights norms, amendments to the Criminal Code, adoption of the anti-discrimination law and, promoting the adoption of a law on crimes against humanity with a view to incorporating the provisions of the Rome Statute of the International Criminal Court", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Steps will be taken to create a children's court to settle family disputes.", - "values": [ - "4 - General action" - ] - }, - { - "text": "Guarantee independence of justice, equality before the law and supervision of military jurisdictions to fight impunity of crimes committed during the conflict, particularly extrajudicial killings", - "values": [ - "4 - General action" - ] - }, - { - "text": "Take further action towards gender equality, including a legal provision on the minimum age for marriage ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Undertake efforts to prevent violence against children, including sexual violence", - "values": [ - "4 - General action" - ] - }, - { - "text": "Ensure protection of victims of trafficking in human beings, in particular children, by providing assistance and social reintegration services, and by advancing cooperation with countries of origin and transit", - "values": [ - "4 - General action" - ] - }, - { - "text": "Replace decrees No. 115 and No. 116 from 2011 on press and audiovisual communication with legislation that is in line with article 65 of the Constitution relating to information, the press and publishing, and article 127 of the Constitution", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Formulate a comprehensive national strategy for the protection of the rights of children, with a view to ensuring compliance with the Convention on the Rights of the Child, following the review of national laws", - "values": [ - "4 - General action" - ] - }, - { - "text": "Ensure that all girls, Dalit children and children belonging to ethnic minorities have equal access to quality education ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Continue to take effective measures to eliminate social inequalities such as skewed distribution of income and to promote the sound and sustained development of the country's economy and society ", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Continue on the path to development and democracy ", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Take urgent measures to resolve the problem of overcrowding in the prisons of the country", - "values": [ - "4 - General action" - ] - }, - { - "text": "Strengthen the protection of journalists and human rights defenders in order to exercise the important work of monitoring the human rights situation ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Accede to and adapt its national legislation to the Rome Statute of the International Criminal Court", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Continue strengthening action aimed at protecting the human rights of the migrant population", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Step up its efforts towards ratifying the Convention on the Rights of Persons with Disabilities", - "values": [ - "4 - General action" - ] - }, - { - "text": "Enact legislation that clearly defines discrimination against women and provides for effective remedies ", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Enhance further cooperation with human rights mechanisms, including issuing a standing invitation to special procedures and providing full access to the Special Rapporteur on torture and other cruel, inhuman or degrading treatment or punishment", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Give priority to human rights education and training on all levels, according to the criteria defined by the World Programme for Human Rights Education ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Consider acceding to CPED and OP-CAT", - "values": [ - "3 - Considering action" - ] - }, - { - "text": "Ensure that special attention is paid to cases where the age of alleged juvenile offenders is in dispute, while fully respecting international human rights law ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Take into account the outcomes of this universal periodic review in the process of transformation and national reconstruction and pay particular attention to the most vulnerable social groups, among which, women and children ", - "values": [ - "4 - General action" - ] - }, - { - "text": "The Naturalization law include all persons of foreign descent proving birth in the Dominican Republic before 2010, whether registered or not, be given state identity documents ", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Continue strengthening and enhancing women rights through the enactment of relevant necessary laws while providing the necessary administrative and institutional mechanisms", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Continue to strengthen the rule of law and ensure good and clean governance at all levels of government, which would help address the social and economic needs of the Myanmar people more effectively", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Take all necessary measures to ensure the rule of law and the right to due process as enshrined in article 14 of the International Covenant on Civil and Political Rights", - "values": [ - "4 - General action" - ] - }, - { - "text": "Ratify the Council of Europe Convention on Preventing and Combating Violence against Women and Domestic Violence [Istanbul Convention]", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Follow up on the appreciated initiative of the Kingdom of Bahrain for the creation of the Arab Court for human rights, as reflected in the commitment of Bahrain in the promotion and protection of human rights ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Review existing legislation and enact comprehensive laws to address the trafficking in women, particularly in terms of prevention, prosecution, protection and rehabilitation", - "values": [ - "3 - Considering action" - ] - }, - { - "text": "Continue to implement measures aimed at improving the conditions for the exercise and protection of the rights of persons with disabilities, assuring the construction of an inclusive society without barriers", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Conduct awareness-raising campaigns for law enforcement officers to educate them, especially on the Anti-Discrimination Act", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Widely expand access to health services for all, especially for marginalized groups and indigenous peoples", - "values": [ - "4 - General action" - ] - }, - { - "text": "Fight domestic violence and discrimination against women by improving gender awareness in strategic sectors ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Take appropriate measures for the provision of legal aid to asylumseekers and migrants ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Accede to the International Convention on the Protection of the Rights of All Migrant Workers and Members of Their Families.", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Share at the international level its national experience as well as the different initiatives it has taken in the field of human rights education ", - "values": [ - "1 - Minimal action" - ] - }, - { - "text": "Continue its efforts to ensure that children with disabilities exercise their right to education to the fullest extent possible and facilitate their integration into the general education system ", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Consider ratifying ICERD, CAT and CRPD and the Optional Protocol thereto, as a further step towards fulfilling its pledge to advance human rights", - "values": [ - "3 - Considering action" - ] - }, - { - "text": "Implement programmes and policies for the prevention of all forms of violence against children, including sexual exploitation and abuse, and to strengthen social recovery and reintegration of child victims", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Continue to promote and strengthen the rights of Indigenous peoples", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Implement the observations of the Human Rights Committee by adopting the necessary legislation to ensure that no one is extradited to a State where they would be in danger of the death penalty", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Protect and promote reproductive rights without any discrimination, recognising reproductive rights include the right to the highest attainable standard of sexual and reproductive health, the right of all to decide freely and responsibly the number, spacing and timing of their children, as well as decide on matters related to their sexuality, and to have the information and means to do so free from discrimination, violence or coercion", - "values": [ - "4 - General action" - ] - }, - { - "text": "Continue the efforts to ratify international human rights treaties and instruments of which Antigua and Barbuda is not yet a party", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Adopt appropriate and concrete measures to address the issue of discrimination and exploitation of migrant workers", - "values": [ - "4 - General action" - ] - }, - { - "text": "Facilitate an early visit by the High Commissioner for Human Rights", - "values": [ - "4 - General action" - ] - }, - { - "text": "Adopt legislation to eliminate the sterility prerequisite for legal change of gender, in conformity with the Convention for the Protection of Human Rights and Fundamental Freedoms (European Convention on Human Rights)", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Seek the support of the Council in the areas highlighted under section VII in its national report.", - "values": [ - "1 - Minimal action" - ] - }, - { - "text": "Strengthen the implementation measures taken to fight child labour", - "values": [ - "4 - General action" - ] - }, - { - "text": "Bring its laws into line with European and international standards on press freedom, and abolish existing legislation on defamation", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Provide human rights defenders, including defence attorneys and political figures detained as a result of their political activities, such as Burzurgmehr Yorov, Shuhrat Qudratov, and Ishoq Tabarov and his sons, with fair, open, and transparent trials, including the substantive protections and procedural guarantees in accordance with Tajikistan's international obligations ", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Continue the justice sector reform without any deviation", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Strengthen cooperation with the international community and international organizations, including the United Nation's Children's Fund, the United Nations Educational, Scientific and Cultural Organization and OHCHR, with a view to building capacity and securing technical assistance in crucial areas such as poverty eradication, justice administration, education and gender equality", - "values": [ - "1 - Minimal action" - ] - }, - { - "text": "Abolish the death penalty in order to allow abolitionist countries to consider the possibility of extraditing persons suspected of having committed crimes in the Democratic Republic of the Congo", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Continue efforts to counter insecurity and drug trafficking using the most effective measures including the improvement of the police force and the judicial system", - "values": [ - "4 - General action" - ] - }, - { - "text": "Take action to improve prison conditions ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Authorize independent and privately-run newspapers and magazines.", - "values": [ - "4 - General action" - ] - }, - { - "text": "Implement measures to combat prison overcrowding", - "values": [ - "4 - General action" - ] - }, - { - "text": "Continue to support the integration of persons with disabilities in society by strengthening educational support and job training", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Consider establishing a child rights sub-commission within the Korean National Human Rights Commission", - "values": [ - "3 - Considering action" - ] - }, - { - "text": "Introduce an efficient mechanism for monitoring the implementation of the Prohibition of Female Genital Mutilation Act 2011", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Intensify efforts to combat all forms of discrimination to make effective the equality of opportunities and treatment among all inhabitants in its territory, with particular care and attention to women and children who are in the situation of more vulnerability, such as those who belong to the Roma people ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Intensify efforts in providing basic services to vulnerable or marginalized groups or communities particularly providing quality health and education services and creating more employment opportunities ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Implement a comprehensive plan of action envisaged to protect the rights and improve the life conditions of women and children pertaining to ethnic minorities", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Continue to strengthen, through concrete steps, national unity, tolerance and the peaceful coexistence of representatives of various nationalities and religious groups", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Take the necessary steps to address the social exclusion and vulnerability of migrant women ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Consider accession to CRPD ", - "values": [ - "3 - Considering action" - ] - }, - { - "text": "Raise awareness and disseminate in the civil society the norms contained in the CEDAW, in a language accessible and clear for the local people, through partnership collaboration with the civil society ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Consider ratifying the conventions on refugees and stateless persons and passing national legislation on refugees and stateless persons ", - "values": [ - "3 - Considering action" - ] - }, - { - "text": "Guarantee an effective and sufficient specialization of the stakeholders in the juvenile justice system", - "values": [ - "4 - General action" - ] - }, - { - "text": "Fully cooperate with relevant United Nations treaty bodies by implementing their recommendations pertaining to ending racism, racial discrimination, xenophobia and related intolerance ", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Step efforts concerning accession to core human rights treaties, particularly Convention on the Elimination of All Forms of Discrimination against Women and the Convention against Torture, before the third cycle review", - "values": [ - "4 - General action" - ] - }, - { - "text": "In line with its previous UPR commitment enact legislation to prohibit corporal punishment in all settings", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Facilitate the effective coordination between the Confederation, the cantons and civil society in relation to follow-up on the recommendations of the universal periodic review, treaty bodies and the special procedures", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Keep the important impetus given to the National Plan of educational development, with particular emphasis on the most vulnerable social sectors", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Endeavour to ratify international instruments that USA is not party, in particular among others the CRC, OP-CAT, CEDAW, and Rome Statute of the International Criminal Court ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Maintain and strengthen efforts geared to fulfilling the Millennium Development Goals ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Strengthen preventive cross-border anti-trafficking strategies and their implementation", - "values": [ - "4 - General action" - ] - }, - { - "text": "Ensure that the rights of children are protected by codifying the provisions of the Convention on the Rights of the Child in the national legislation and ratifying the Optional Protocol to the Convention on the Rights of the Child on the involvement of children in armed conflict and the Optional Protocol to the Convention on the Rights of the Child on the sale of children, child prostitution and child pornography", - "values": [ - "4 - General action" - ] - }, - { - "text": "Strengthen efforts on combating sexual and gender-based violence as well as female genital mutilation", - "values": [ - "4 - General action" - ] - }, - { - "text": "Mainstream human rights standards in counter-terrorism actions undertaken by security forces", - "values": [ - "4 - General action" - ] - }, - { - "text": "Continue to provide adequate human and financial resources to fully implement its domestic laws protective of women's rights", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Implement the recommendations of treaty bodies and take concrete measures to increase the representation of national minorities in the Government and administrative bodies", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Adopt and implement legislation setting the minimum age of marriage at 18 years, as recommended by the National Dialogue Conference, and raise awareness of the negative effects of child marriage ", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Adopt measures that will enhance the implementation of legislation combating \u201chonour\u201c killings, rape, violence against women and domestic violence", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Take measures to ensure access to humanitarian assistance for vulnerable populations and take further measures to protect civilians, including human rights defenders and humanitarian workers.", - "values": [ - "4 - General action" - ] - }, - { - "text": "Increase the minimum age of voluntary recruitment into the army to 18 years", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Integrate indigenous and Muslim women in all realms of political and public life", - "values": [ - "4 - General action" - ] - }, - { - "text": "Ensure prompt and effective investigation of gender-based violence and that alleged perpetrators are prosecuted ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Consider ratifying the Second Optional Protocol to the International Covenant on Civil and Political Rights with a view to abolish the death penalty", - "values": [ - "3 - Considering action" - ] - }, - { - "text": "Adopt a specific law protecting women against domestic violence and prosecuting and punishing the perpetrators ", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Remove, in law and in practice, restrictions on the rights of workers to strike, as recommended by the Committee on Economic, Social and Cultural Rights ", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Consider amending the Penal Code in order to formulate a definition of torture in conformity with article 1 of the Convention against Torture (CAT) ", - "values": [ - "3 - Considering action" - ] - }, - { - "text": "Adopt and implement a national action plan to combat trafficking in persons, emphasizing the protection of indigenous women and migrants ", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Develop a strategy and national indicators in order to comply with the Sustainable Development Goals", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Strengthen capacity-building measures for workers in the media and the press also through efforts of the international community ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Continue the work in bringing the national legislation in line with the international obligations of Turkmenistan ", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Ban by law early and forced marriage as well as the practice of Wahaya", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Continue its strategies for social and economic recovery, and promote social peace and sustainable development ", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Extend invitations to the thematic special procedures.", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Transfer the functions of the Korean Communications Standards Commission to an independent commission", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Intensify its efforts with a view to decrease infant and maternal mortality rates ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Sign and ratify as soon as possible the Council of Europe Framework Convention for the Protection of National Minorities", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Immediately and unconditionally release all prisoners of conscience", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Declare racial discrimination as a criminal offence", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Adopt targeted policies and programmes to address structural discrimination against indigenous peoples and people of African descent", - "values": [ - "4 - General action" - ] - }, - { - "text": "Abolish the guardianship system which severely limits the rights of women to act as autonomous and equal members of Saudi society", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Strengthen cooperation with all the mechanisms of this Council", - "values": [ - "4 - General action" - ] - }, - { - "text": "Step up the fight against corruption, including in ensuring a level playing field and competitive bidding in public procurement", - "values": [ - "4 - General action" - ] - }, - { - "text": "Continue to implement the social programmes of the Social Integration and Assistance Network to eliminate extreme poverty and reduce poverty to less than 10 per cent, and continue to reduce inequalities in income distribution", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Grant them [asylum-seekers and migrant children] access to education through integration into mainstream public schools", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Decriminalise press offences ", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Explicitly prohibit corporal punishment of children in all settings, including the home", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Work on enacting important and relevant human rights laws, particularly, Disability Act, National Commission for Human Rights Act, and Sexual Offences Act", - "values": [ - "4 - General action" - ] - }, - { - "text": "Ensure that the treatment of detainees duly follows international standards and that irregularities to those standards are properly investigated", - "values": [ - "4 - General action" - ] - }, - { - "text": "Review and reform its legislation allowing for the detention of asylum seekers on the basis of illegal entry, and ensure that the detention of asylum seekers, particularly of children, be applied only in exceptional circumstances after due diligence", - "values": [ - "4 - General action" - ] - }, - { - "text": "Increase efforts to effectively meet the challenges related to the protection of the environment and the sustainable exploitation of natural resources, and to cooperate in that regard with the relevant international organizations", - "values": [ - "4 - General action" - ] - }, - { - "text": "Develop a national human rights action plan ", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Consider ratifying international human rights treaties that are still pending, in accordance with the commitment of the national authorities as set out in paragraph 114 of the national report", - "values": [ - "3 - Considering action" - ] - }, - { - "text": "Continue to achieve its objective of establishing a society free from crimes ", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Amend legislation that infringes on freedom of expression and decriminalize press-related offences such as defamation", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Continue efforts to improve the status of women in society and further promote gender equality at all levels, enhancing the contribution of women to the country's development process", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Further expand its school feeding programme and integrate it with local agricultural production ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Put in place and enforce measures to protect human rights defenders", - "values": [ - "4 - General action" - ] - }, - { - "text": "Modernize the national plan for the development of Bahraini women in line with the anti-discrimination programs and to evaluate the effects of those programs and projects on the development of them and the society at large ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Consider ratifying the fundamental conventions of the International Labour Organization.", - "values": [ - "3 - Considering action" - ] - }, - { - "text": "Reinstate a moratorium on the use of the death penalty.", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Amend practices and deficiencies in national legislation and accede to OP-CAT to prevent and punish cases of violations in this regard", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Increase efforts to combat existing discrimination among children, as reported by the Committee on the Rights of the Child, by taking effective measures against any form of exploitation of children, especially girls, including for prostitution, pornography and domestic work ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Ensure the enjoyment of the right to work and to just and favourable conditions of work to all migrant workers, especially domestic workers ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Conclude the ratification process of the Optional Protocol to the Convention on the Rights of Persons with Disabilities ", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Ensure effective implementation of its National Strategy on Child Protection for 2014-2020", - "values": [ - "4 - General action" - ] - }, - { - "text": "Develop a mechanism to ensure the prompt return of children who have been wrongly removed from or prevented from returning to their habitual place of residence.", - "values": [ - "4 - General action" - ] - }, - { - "text": "Continue stepping up its efforts in tackling discrimination and inequality for all its citizens ", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Take further measures to enhance the national system for health care ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Expedite effort to establish a national human rights institution in conformity with the Paris Principles ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Take steps to ensure that detention of asylum-seekers is used only in exceptional cases, the procedure for detention is transparent and comprehensible, and that detainees have access to effective legal remedy", - "values": [ - "4 - General action" - ] - }, - { - "text": "Strengthen the capacity of Kenya's National Commission on Human Rights to enable it to play a greater role in promoting human rights awareness in the country ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Put an end to arbitrary detention, improve detention conditions and amend the Penal Code", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Take concrete and prompt measures to implement the Action Plan for the protection of children in armed conflict", - "values": [ - "4 - General action" - ] - }, - { - "text": "Implement Constitutional recognition of Indigenous Australians and continue to exert efforts to fully implement the Indigenous Advancement Strategy in order to ensure the indigenous people have sufficient access to health services, education and employment opportunities", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Repeal articles 227 bis and 239 of the Criminal Code to prevent perpetrators of rape and abduction from avoiding prosecution by marrying their adolescent victims", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Continue to implement the National Action Plan on Human Rights to, among other things, strengthen the capacity of the Government and of citizens when it comes to protection and promotion of human rights", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Increase its efforts to promptly investigate all human rights abuses and prosecute alleged perpetrators", - "values": [ - "4 - General action" - ] - }, - { - "text": "With international cooperation and technical assistance, continue strengthening its education policy with a view to provide a comprehensive education that responds to the needs of its people, as the only means to advance towards full development, in conditions that guarantee full equality and the inclusion of the most vulnerable sectors of the population", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Make further efforts for the protection of rights of persons with disabilities and share good experiences in this regard", - "values": [ - "4 - General action" - ] - }, - { - "text": "Adopt a comprehensive care policy to protect children living on the streets", - "values": [ - "4 - General action" - ] - }, - { - "text": "Continue to implement protection programmes for girls and boys, in particular to eliminate child labour", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Improve access of victims of domestic violence to effective protection and redress, strengthen the capacity for prosecution of perpetrators of domestic violence and criminalize marital rape", - "values": [ - "4 - General action" - ] - }, - { - "text": "Consider increasing the funding of the National Preventive Mechanism, in order to support its work and the detention monitoring activities", - "values": [ - "3 - Considering action" - ] - }, - { - "text": "Put in place, with the technical cooperation of OHCHR and the financial support of the donor's community, a sustained human rights training process for government authorities, the People's Lawyers Office, officials of the justice system and inhabitants of the country, in order to begin with a ratification process, or when applicable, accession, to the main international human rights treaties, including the Rome Statute of the International Criminal Court ", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Take steps to ensure that its legislative and policy frameworks provide effective protections against all forms of violence faced by women, and that such protections are extended to all women, including internally displaced and refugee women, who are among the most vulnerable", - "values": [ - "4 - General action" - ] - }, - { - "text": "Ensure that appropriate legal frameworks are in place in line with the international conventions governing the issue of nationality ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Work to relax its migration policy, by focusing on return with dignity of irregular migrants to their countries of origin", - "values": [ - "4 - General action" - ] - }, - { - "text": "Ensure the allocation of adequate resources to the Counselling Center against Domestic Violence, in order to enable its full functioning", - "values": [ - "4 - General action" - ] - }, - { - "text": "Reject proposed Constitutional amendments and draft bills that seek to reduce the age of criminal responsibility", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Continue its best efforts to combat xenophobia and prevent any violence against foreigners ", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Cooperate with special procedures mandate holders by responding positively to requests for information and visits ", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Ensure the protection of women\u2019s rights by strengthening legislation relating to offences on violence against women and girls", - "values": [ - "4 - General action" - ] - }, - { - "text": "Continue its good practices such as compensation for victims of human trafficking and the establishment of institutions such as the international training centre on human trafficking and migration ", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Sign and ratify the third Optional Protocol to the Convention on the Rights of the Child", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Adopt legislative measures in order to strengthen the protection of unaccompanied foreign minors", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Continue its efforts, particularly in education, in pursuing policies supporting disadvantaged populations, ensuring school attendance of all children and reducing school dropout rates among adolescents ", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Foster reconciliation through accelerated implementation of Human Rights Council resolution 30/1, including by launching the Office of Missing Persons, ending military involvement in civilian functions, returning lands to civilian owners, and establishing a judicial mechanism with the participation of foreign investigators, prosecutors and judges", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Consider the adaptation of its legislation, especially the figure of \u201cinexcusable error\u201c, in order to fully guarantee the independence of the judiciary", - "values": [ - "3 - Considering action" - ] - }, - { - "text": "Continue its work in combating trafficking in persons, with particular attention given to children and disadvantaged groups, as envisaged in its future plan of National Strategy on trafficking prevention ", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Ratify the Convention on the Elimination of All Forms of Discrimination against Women, the Convention against Torture and Other Cruel, Inhuman or Degrading Treatment or Punishment and its Optional Protocol", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Reinforce measures to combat attacks and hate speech against minority groups, by emphasizing prevention and follow-up of these acts", - "values": [ - "4 - General action" - ] - }, - { - "text": "Investigate and prosecute abuses against domestic workers ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Take other pro-active measures to combat FGM", - "values": [ - "4 - General action" - ] - }, - { - "text": "Take steps to adopt a legal framework to protect children from trafficking and to define trafficking as a criminal offence under domestic law. ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Exert its utmost efforts in ensuring a free and fair referendum to enable a new constitution to be adopted, in order to establish a firm foundation for the promotion and protection of human rights ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Put effective measures in place to ensure access to justice for victims of all forms of violence against women", - "values": [ - "4 - General action" - ] - }, - { - "text": "Continue to promote the role of women in society in order to ensure their integration into political life", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Ratify the UNESCO Convention against Discrimination in Education.", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Launch awareness campaigns against homophobia and discrimination on the basis of sexual orientation ", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Continue efforts to improve the rights of persons with disabilities ", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Review provisions to reduce the number of offences that carry the death penalty, particularly those relating to the establishment of groups, organizations or associations ", - "values": [ - "3 - Considering action" - ] - }, - { - "text": "Remove or define its blanket reservation to the CRC and to declare an immediate moratorium on juvenile executions, with the aim of abolishing the death penalty for offences committed by minors", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Continue adapting legislation against terrorism to international standards, in particular with regard to the definition of terrorism offences and the right to a fair trial ", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Amend provisions under the recently adopted security law to ensure that Kenya's international human rights obligations are respected, in particular with regard to the right to freedom of expression", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Finalize its reform of the Penal Code as rapidly as possible, and improve conditions of detention, in particular combating prison overcrowding ", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Canada remained committed to working to strengthen this dynamic new mechanism as it developed and to improving the protection of human rights for all people across Canada.", - "values": [ - "4 - General action" - ] - }, - { - "text": "Eliminate legal and political restrictions that discriminate against women on the basis of their personal status, and those that may violate their sexual and reproductive rights", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Ratify promptly the International Convention on the Protection of the Rights of All Migrant Workers and Members of their Families ICRMW", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Establish a monitoring mechanism to effectively ensure the protection of the rights of children\nin alternative care, including in monasteries ", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Provide foreign married women who are victims of domestic violence with legal safeguards and administrative guidelines for their protection, giving particular consideration to residence permits ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Take concrete actions to end the increasing gender gap in the area of employment and pay, thus ensuring equal remuneration for men and women", - "values": [ - "4 - General action" - ] - }, - { - "text": "Consider establishing an independent national institution to protect and promote human rights, in compliance with the Paris Principles ", - "values": [ - "3 - Considering action" - ] - }, - { - "text": "Ensure that any person involved in xenophobic and Islamophobic acts is investigated and prosecuted", - "values": [ - "4 - General action" - ] - }, - { - "text": "Continue the national strategy for combating violence against women", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Strengthen efforts to make further progress in the health-related MDGs ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Enhance cooperation and consultation with civil society and work towards the promotion of civil society.", - "values": [ - "4 - General action" - ] - }, - { - "text": "Take more measures to combat poverty and improve the living standards of the population, in particular of those who live in rural areas", - "values": [ - "4 - General action" - ] - }, - { - "text": "Continue to strive to obtain international assistance and technical advice to face the pressures in connection with the reception and hosting of refugees, and in his regard strengthen cooperation with relevant international organizations", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Establish independent and impartial investigations into all allegations of torture and other ill-treatment and bring perpetrators to justice ", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Ensure that asylum seekers have access to legal assistance during the process and adopt measures, together with third countries, so that conditions in the processing centres in countries with which Australia has agreements, are in conformity with international laws and standards", - "values": [ - "4 - General action" - ] - }, - { - "text": "Give full support to the Constitution Drafting Assembly and to an inclusive drafting process, leading to a constitution that is fully compliant with international human rights standards", - "values": [ - "4 - General action" - ] - }, - { - "text": "Vanuatu has committed itself to adhere to international human rights obligations, by ratifying four human rights conventions namely: CRC and its optional protocols, CEDAW and its optional protocol, CRPD, ICCPR.", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Consider the possibility of increasing the rate of accepted asylum applications, reducing the administrative and regulatory obstacles that prevent the acceptance of a higher number of asylum applications, and also consider increasing the acceptance of applications for solidarity resettlement of refugees recognized as entitled to this status, in particular those who arrive from the South", - "values": [ - "3 - Considering action" - ] - }, - { - "text": "Complete the ratification of the Convention on the Rights of Persons with Disabilities at the earliest convenience, if possible ", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "In line with the observation made by the Committee on the Elimination of Racial Discrimination, ensure proper investigation and continue its actions to stop hate crimes ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Continue pursuing sensitized policies designed for the integration and social inclusion of persons belonging to Romania's Roma community ", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Amend accordingly all laws that are contrary to Uganda's national and international obligations to respect, protect and promote the freedoms of expression and assembly ", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Strengthen anti-discrimination legislation to ensure equal access for persons with disabilities to public accommodations, commercial facilities and transportation", - "values": [ - "4 - General action" - ] - }, - { - "text": "Continue to guarantee the allocation of adequate resources for the effective implementation of educational programmes, and intensify its efforts to address low enrolment rates in primary and basic education", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Adopt an awareness-raising programme at the local level to ensure much wider knowledge of CEDAW, and take steps to ensure the cessation of practices, including those under the guardianship system, which are inconsistent with the Convention ", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Implement the Government's disability policy 2011-2016", - "values": [ - "4 - General action" - ] - }, - { - "text": "Take necessary measures to ensure gender equality in wages in the labour sector", - "values": [ - "4 - General action" - ] - }, - { - "text": "Intensify its efforts to favour support and material assistance to the most marginalized families and the most underprivileged families to effectively guarantee the rights of children through a sufficient standard of living and the right to education inter alia.", - "values": [ - "4 - General action" - ] - }, - { - "text": "Strengthen the independence of the judiciary", - "values": [ - "4 - General action" - ] - }, - { - "text": "Accelerate the political, socio-economic and administrative reform to fulfil socio-economic needs of the people", - "values": [ - "4 - General action" - ] - }, - { - "text": "Enact domestic violence legislation to ensure that women survivors of violence have legal protection from domestic violence", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Continue its efforts to combat trafficking of persons through the effective implementation of the Prevention and Combating of Trafficking in Persons Act", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Consider possible means of a stricter enforcement of existing laws, with a view to combating different forms of violence against women and girls", - "values": [ - "3 - Considering action" - ] - }, - { - "text": "Accelerate its efforts towards adopting the new law on the organization and functioning of the National Human Rights Commission in order to make it more effective", - "values": [ - "4 - General action" - ] - }, - { - "text": "Extend an open invitation to special procedures ", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Ensure an inclusive dialogue with all Nepalese minority groups", - "values": [ - "4 - General action" - ] - }, - { - "text": "Continue progressing towards the eradication of poverty, through implementing its successful social policies", - "values": [ - "4 - General action" - ] - }, - { - "text": "Develop strategies to better manage the migratory flows of political and economic refugees who unfortunately overwhelm Morocco's capacity and resources ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Make further efforts to review the Constitution with a view to explicitly recognizing economic, social and cultural rights equally with other constitutional rights", - "values": [ - "4 - General action" - ] - }, - { - "text": "Support the integration of the Roma and other minorities in Government institutions, by recruiting and promoting these minorities in the police, in the education sector and the public service ", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Continue its effort to promote and protect the rights of children including further action against the abduction, maltreatment and abandonment of children", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Strengthen the application of the domestic violence bill and the abolition of the Marital Power Act.", - "values": [ - "4 - General action" - ] - }, - { - "text": "Consider establishing an independent human rights institution in conformity with the Paris Principles ", - "values": [ - "3 - Considering action" - ] - }, - { - "text": "Take genuine steps towards the ratification of treaties and optional protocols to conventions that the United States has already signed, but not yet ratified", - "values": [ - "4 - General action" - ] - }, - { - "text": "Undertake additional measures to protect rights of women and children", - "values": [ - "4 - General action" - ] - }, - { - "text": "Allocate sufficient funds and undertake effective measures to provide adequate assistance to the elderly people", - "values": [ - "4 - General action" - ] - }, - { - "text": "Continue steady enforcement and implementation of measures and legislation designed to promote and protect women's rights ", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Guarantee a fair compensation to the victims of racial hate and xenophobic criminal acts, such as the case of the Ecuadoreans Marcelo Lucero and Jose Sucuzhanay, murdered in the United States", - "values": [ - "4 - General action" - ] - }, - { - "text": "Ensure the increase of financial resource allocation to the field of public education with a view to improving the quality of education, build an appropriate infrastructure and ensure that compulsory primary education lasts for six years ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Strengthen, in close cooperation with the relevant actors, the capacity to process, care for and house asylum seekers and irregular migrants in conformity with regional and international standards ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Intensify efforts in eliminating all forms of discrimination against ethnic minorities and in this regard seriously implement the national legal and policy framework on anti-discrimination", - "values": [ - "4 - General action" - ] - }, - { - "text": "Consider ratifying ICCPR-OP2, aiming at the abolition of the death penalty", - "values": [ - "3 - Considering action" - ] - }, - { - "text": "Ratify the Optional Protocol to the Convention against Torture and Other Cruel, Inhuman or Degrading Treatment or Punishment (OP-CAT), as well as the International Convention for the Protection of All Persons from Enforced Disappearance (CPED) ", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Establish an institutional structure that guarantees the right of access to public information ", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Work with the legislature, as well as domestic and international organizations, to amend legislation in order to promote a flourishing civil society ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Amend its Constitution to abolish the death penalty", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Carry out a review of criteria for prosecuting cases of rape and sexual assault, to ensure that lack of consent, not only the use of force, is given adequate consideration when bringing cases for prosecution", - "values": [ - "3 - Considering action" - ] - }, - { - "text": "Guarantee freedom of expression and assembly for all political parties, media and human rights defenders ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Continue its efforts to combat drug trafficking", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Continue addressing irregular migration as a matter of priority, reinforcing further its efforts, such as the recently adopted National Action Plan for Migration Management ", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Amend legislation to ensure that sexual orientation and gender identity are included as prohibited grounds for discrimination ", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Ensure that civil society organizations may express their opinions freely on Government policy", - "values": [ - "4 - General action" - ] - }, - { - "text": "Continue its efforts to promote sustainable economic and social development and further strengthen the protection of rights of women and children ", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Continue its poverty reduction programmes", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Consider working with the new OHCHR Regional Office in Dakar to develop a common-core document to simplify and streamline treaty body reporting procedures", - "values": [ - "3 - Considering action" - ] - }, - { - "text": "Continue strengthening the national plan against the scourge of domestic violence, placing emphasis on prevention and awareness-raising of public opinion ", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Step up efforts to stop and to prevent that parties to the conflict continue to recruit children. ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Strengthen investigative and prosecutorial bodies to ensure thorough investigations into all killings, as well as the appropriate prosecution of perpetrators", - "values": [ - "4 - General action" - ] - }, - { - "text": "Continue efforts to counter violence against women and to promote equality between women and men, including by conducting awareness-raising programmes for the public on the subject", - "values": [ - "4 - General action" - ] - }, - { - "text": "Ratify the International Covenant on Civil and Political Rights as well as the International Covenant on Economic, Social and Cultural Rights", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Take additional measures to ensure a safe and enabling environment for human rights defenders without fear of reprisals, intimidation, violence or discrimination", - "values": [ - "4 - General action" - ] - }, - { - "text": "Align domestic legislation with the obligations under the Convention on the Rights of Persons with Disabilities and adopt measures to ensure inclusive education and access to public buildings for people with disabilities", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Not detain children with adults unrelated to them", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Accede to the Second Optional Protocol to the International Covenant on Civil and Political Rights aiming at the abolition of the death penalty", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "End all forms of segregation in the education system and develop an awareness-raising campaign for educational staff and parents to curb negative societal perceptions about inclusive education", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Take all institutional measures required to accede to the Convention against Torture", - "values": [ - "4 - General action" - ] - }, - { - "text": "Eradicate all limitations and restrictions on freedom of religion, including the revision of the school curriculum to reflect the freedom of religion of all children", - "values": [ - "4 - General action" - ] - }, - { - "text": "Continue efforts to close the gap in opportunities and life outcomes between Indigenous and non-Indigenous Australians, according to the Close the Gap Campaign and its Progress and Priorities report 2015", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Strengthen development efforts with a focus on the rural areas ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Seek financial support from the international community in order to continue providing the necessary assistance to thousands of Iraqis hosted in the Kingdom", - "values": [ - "1 - Minimal action" - ] - }, - { - "text": "Consider revising the Sedition Act and the Newspaper Act to ensure that they conform with international human rights standards", - "values": [ - "3 - Considering action" - ] - }, - { - "text": "Further the implementation of relevant laws and policies as well as training for public officials, to tackle sexual offences and unfair treatment to women", - "values": [ - "4 - General action" - ] - }, - { - "text": "Consider the possibility to amend the criminal code to criminalize the trafficking in human beings for the purpose of sexual exploitation ", - "values": [ - "3 - Considering action" - ] - }, - { - "text": "Enhance efforts to protect the rights of the child and establish a system of juvenile justice in compliance with international standards", - "values": [ - "4 - General action" - ] - }, - { - "text": "Consider signature and ratification of ILO Conventions No. 138 and 182", - "values": [ - "3 - Considering action" - ] - }, - { - "text": "Decriminalize consensual sexual relations between same-sex adults and strength efforts to combat discrimination against those persons, while respecting their rights to association and representation in civil society", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Take steps to create an environment conducive to a free and independent media which allows freedom of expression", - "values": [ - "4 - General action" - ] - }, - { - "text": "Take steps to implement treaty body recommendations", - "values": [ - "4 - General action" - ] - }, - { - "text": "Implement effective strategies and provide adequate funds to improve the quality of education and ensure inclusive and equal access to primary and secondary education for all children in Rwanda, including girls, children with disabilities and children belonging to minority groups and indigenous peoples", - "values": [ - "4 - General action" - ] - }, - { - "text": "Include a specific prohibition of discrimination based on sexual orientation and gender identity in line with international standards in the anti-discrimination legislation and take appropriate measures to end impunity for violence and intimidation of the LGBT community ", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Enhance legal protections for women, including by improving the investigation, prosecution and prevention of violence against women and fully implementing the National Action Plan for the Prevention and Eradication of Domestic Violence and Violence against Women", - "values": [ - "4 - General action" - ] - }, - { - "text": "Update national legislation in line with its international commitments, especially with regard to gender equality, protection of the rights of the child and combating violence and forced marriage", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Ensure free birth registration and in this regard conduct relevant awareness-raising campaigns for the public and adopt efficient policies with a view to cover country's remote and rural areas ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Establish gender equality legislation to better protect the rights of women and girls", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Implement its obligations under article 14 of ICCPR to ensure that everyone without distinction is entitled to a fair and public hearing by a competent, independent and impartial tribunal established by law ", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Continue to seek support to establish an international centre or agency, in collaboration with the United Nations, in the field of combating terrorism ", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Consider subsequent measures towards the complete abolition of the death penalty", - "values": [ - "3 - Considering action" - ] - }, - { - "text": "Reinforce the fight against all forms of racism and discrimination ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Change the criminal legislation provisions on defamation to eliminate unnecessary pressure on journalists fulfilling their professional duties", - "values": [ - "4 - General action" - ] - }, - { - "text": "Continue to support a high level of socio-economic protection", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Seek the support of the international community and cooperate with it to formulate policies aimed at preventing the spread of HIV-AIDS ", - "values": [ - "1 - Minimal action" - ] - }, - { - "text": "Fully cooperate with the competent humanitarian organizations with a view to ensuring the protection of the internally displaced, particularly women and children. ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Take further steps to improve the enforcement of anti-trafficking laws", - "values": [ - "4 - General action" - ] - }, - { - "text": "Find a formula to reinitiate a respectful dialogue between the various parties and to find a peaceful solution to the problem", - "values": [ - "4 - General action" - ] - }, - { - "text": "Take steps towards meeting its obligations for timely submission of periodic reports for those instruments to which it is already party ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Continue with the reform of its Penal Code, including article 301 ", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Continue joint and mutually beneficial efforts to implement the plan for action to implement the recommendations of CTF ", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Continue its positive approach in the field of education including ensuring free primary and post-primary education as well as incorporating human rights education in the school curricula ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Ratify international human rights instruments that the Dominican Republic is not yet a party to ", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Continue to pay special attention to the victims of human trafficking and harmonize its national legislation with international instruments to which it is a party and recommendations made on this matter by treaty bodies", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Consolidate the achievements made, particularly through gender mainstreaming in all fields, grant autonomy to women, and face challenges arising in this regard, particularly the fight against violence against women ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Guarantee an environment conducive to the work of journalists, human rights defenders and civil society organizations", - "values": [ - "4 - General action" - ] - }, - { - "text": "Continue its efforts in respect of the Optional Protocol of the Convention against Torture.", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Take concrete measures to improve the protection of women against gender-based violence and to ensure that perpetrators are held accountable ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Withdraw its reservations to the Convention against Torture and Other Cruel, Inhuman or Degrading Treatment (CAT), ICCPR and CEDAW as well as its general reservations to CRC and ratify the Rome Statute and the Optional Protocol to CAT (OP-CAT) and OP-CEDAW ", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Without delay, carry out an in-depth inquiry into past and present allegations of torture as well as all allegations of excessive and illegal use of force and bring those responsible to justice ", - "values": [ - "3 - Considering action" - ] - }, - { - "text": "Continue efforts to fight poverty and consider including in the programmes persons with disabilities ", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Increase its efforts to ensure respect for the fundamental human rights for people without legal status ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Continue its efforts to combat hate speech by public officials and to investigate racially motivated violence and prosecute perpetrators", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Implement the recommendations and decisions of its own judicial institutions and of the African Commission on Human and Peoples' Rights, particularly those relating to the rights of indigenous peoples ", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Continue the efforts to strengthen the socioeconomic capacity of the country to promote development and continue fighting against poverty ", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Ensure that the recruitment of children into armed forces stops and that the children are not subjected to forced labour ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Protect persons with albinism", - "values": [ - "4 - General action" - ] - }, - { - "text": "Take measures to implement policies and programmes targeted at reducing poverty and improving the economy including the realization of the Agenda for Prosperity", - "values": [ - "4 - General action" - ] - }, - { - "text": "Envisage implementing, with assistance from OHCHR, international human rights and humanitarian law training and awareness-raising programmes for State officials in charge of security, law enforcement personnel and members of the judiciary ", - "values": [ - "3 - Considering action" - ] - }, - { - "text": "Continue to improve the legislation aimed at prohibiting all forms of torture and in particular, to strengthen measures to protect the rights of detainees", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Adopt the Code on the Protection of Children", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Permit members of all religious groups to practice their beliefs freely and allow members of other religious minorities to import scriptures, proselytize, establish new places of worship and instruct their believers, in line with the right to freedom of religion ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Address effectively the issue of excessive use of force by the police, especially during demonstrations and protests, as well as human rights violations and ill-treatment in detention ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Enhance its cooperation with United Nations human rights bodies and other regional/international partners, particularly in providing the police force with appropriate training in contemporary custodial and interrogation techniques in accordance with international human rights standards", - "values": [ - "4 - General action" - ] - }, - { - "text": "Step up efforts to implement the 2009 Gender Mainstreaming Policy with a view to combating the de facto discrimination faced by Maldivians and to explore the possibility of adopting additional measures to combat violence against women in the country ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Consider the adoption of a comprehensive national human rights action plan by involving civil society", - "values": [ - "3 - Considering action" - ] - }, - { - "text": "Ratify the Kampala amendments to the Rome Statute with a view to contributing to the activation of the jurisdiction of the International Criminal Court over the crime of aggression in 2017", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Strongly enforce labour laws protecting employees' rights so as to improve the living and working conditions of migrant workers, including through implementation by the Ministry of Labour of the provision for a minimum wage for all workers, as provided for by law ", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Take effective measures to address inequalities experienced by ethnic minority groups and combat discrimination", - "values": [ - "4 - General action" - ] - }, - { - "text": "Improve health-care efforts, especially to reduce child mortality and the prevalence rate of HIV and AIDS ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Approach, at all instances, child victims of sexual exploitation as victims and not offenders, providing for appropriate victims' reintegration", - "values": [ - "4 - General action" - ] - }, - { - "text": "Accelerate the process of establishing a national human rights institution in line with the Paris Principles", - "values": [ - "4 - General action" - ] - }, - { - "text": "Enhance gender equality in the public and private sectors", - "values": [ - "4 - General action" - ] - }, - { - "text": "Ratify the optional protocols of the human rights conventions to which Japan is a party", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Improve efficiency and empower its policy and instruments on protecting and promoting minority groups, in particular ensuring the appropriate allocation to the Fund for Minorities ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Implement the Human Rights Committee's March 2015 recommendations on gender-based violence", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Consider positively the request for visit by Special Rapporteur on the promotion and protection of the right to freedom of opinion and expression and recent request by Special Rapporteur on the rights to freedom of peaceful assembly and association", - "values": [ - "3 - Considering action" - ] - }, - { - "text": "Cooperate with other countries that have large communities of migrant workers to find a solution in accordance with international human rights standards ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Enhance its cooperation with the Special Rapporteur on the situation of human rights defenders including by accepting the mandate holder's request to visit the country", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Ensure that the recently enacted media laws are implemented in full respect for the fundamental right to freedom of opinion and expression ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Continue taking measures for the protection of the rights of senior citizens, children, persons with disabilities and minorities while giving utmost priority to the provision of social security in all regions of the country ", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Facilitate women's access to justice by providing them with information on their rights, on the available legal remedies against discrimination and on the way to use these remedies ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Take steps to ensure the full independence and impartiality of the judiciary", - "values": [ - "4 - General action" - ] - }, - { - "text": "Abolish the death penalty and ratify the Second Optional Protocol to ICCPR, aiming at the abolition of the death penalty", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Continue to adopt measures aiming at the protection of children", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Take into account in the reconstruction plans and programs, the needs and rights of persons with disabilities ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Make all efforts to take the necessary measures to ensure that there is an effective prohibition of female genital mutilation", - "values": [ - "4 - General action" - ] - }, - { - "text": "Continue to ensure proper representation of social development goals in public decisions ", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Take concreate measures to eliminate discrimination against women and girls in law and in practice, also by accelerating the constitutional review in the area of gender equality", - "values": [ - "4 - General action" - ] - }, - { - "text": "Invite the Special Rapporteur on torture to make an official visit to the country.", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Ensure that education is free and compulsory, with special focus on the enrolment of girls in schools ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Public policies will be promoted to ensure equity and better all-round participation by members of particularly vulnerable groups, including older persons, disabled persons, minors, women and members of ethnic minorities such as Afro-descendants and indigenous people. This includes better political representation, access to posts in institutions and the prohibition of any form of discrimination in the workplace or elsewhere", - "values": [ - "4 - General action" - ] - }, - { - "text": "Keep efforts to restore basic services in justice, the police and healthcare as a matter of priority", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Increase efforts to gather data on child abuse with the aim of supporting policy formulation process", - "values": [ - "4 - General action" - ] - }, - { - "text": "Ratify the Second Optional Protocol of the ICCPR, and formally establish a moratorium on the use of the death penalty with a view to its abolition ", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Formally establish a moratorium on the death penalty, with a view to abolishing it completely \n\n", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Better educate security and law enforcement authorities at all levels about the basic rights of the citizens and enhance citizens' possibilities to make complaints about mistreatment by the authorities ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Create national and local-level systems to protect children from all forms of exploitation, including child labour", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Abolish the death penalty and accede to the Second Optional Protocol to the International Covenant on Civil and Political Rights ", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Engage in a structural human rights dialogue with the European Union at the political and technical level ", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Strengthen efforts to combat trafficking in women and children, and to take effective measures to prosecute and punish trafficking in persons, as raised by the Committee on the Rights of the Child and the Committee against Torture", - "values": [ - "4 - General action" - ] - }, - { - "text": "Study the possibility of seeking technical assistance in the area of reintegration programmes for exploited children and regarding juvenile justice", - "values": [ - "3 - Considering action" - ] - }, - { - "text": "Continue its efforts in protecting the rights of women and children ", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Take measures to tackle racial discrimination and to combat more resolutely all forms of racism, xenophobia and religious intolerance against foreigners and religious minorities, including Muslims ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Strengthen the institutional framework undertaken for the benefit of indigenous and Afro-Honduran peoples", - "values": [ - "4 - General action" - ] - }, - { - "text": "Continue the efforts to combat corruption in the framework of legislative, administrative and political reform programmes", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Accomplish the Human Rights Voluntary Goals set out in resolution 9-12 of the Human Rights Council", - "values": [ - "4 - General action" - ] - }, - { - "text": "Take urgent measures to expedite judicial investigations and the punishment of the perpetrators of forced sterilizations carried out on Roma women, in the context of their efforts to combat stereotypes and prejudices against women", - "values": [ - "4 - General action" - ] - }, - { - "text": "Recognize in law the right to conscientious objection to military service and practice and ensure that recruitment methods allow it", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Sign and ratify the International Covenant on Economic, Social and Cultural Rights and its Optional Protocol", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Move towards the adoption of a law that prohibits the work of children below the age of 14, as well as the worst forms of child labour and domestic child labour", - "values": [ - "4 - General action" - ] - }, - { - "text": "Ensure that members of civil society are allowed, free of harassment, to meet with representatives of foreign media and Governments and international organizations.", - "values": [ - "4 - General action" - ] - }, - { - "text": "Extend an open invitation to the special procedures of the Human Rights Council to visit the country, particularly those who are in a position to offer assistance to strengthen measures for the promotion and protection of human rights in Belize", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Amend administrative and other regulations and practices in order to implement the constitutional provisions regarding freedom of the press and clarify the law on defamation and its application so as to ensure freedom of opinion and expression", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Accelerate the improvement of the judicial, police, military and prison systems in line with international human rights standards and to investigate all allegations of extrajudicial, summary or arbitrary killings and enforced disappearances and follow-up according to justice requirements", - "values": [ - "4 - General action" - ] - }, - { - "text": "Establish an independent national human rights institution in conformity with the Paris Principles", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Keep the direct fight against corruption as a means of ensuring the legality and trust in government and judicial institutions ", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Ratify the ICRMW.", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Develop a national programme to follow up on the results of this universal periodic review ", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Continue its efforts to overcome stereotypical attitudes regarding the roles of men and women and existing gender inequality", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Commit to the principle of non-intervention in the internal affairs of other States as it is related to the achievement of social, economic, cultural and political development of all States", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Guarantee in equal fashion for both its national citizens and foreigners residing in Sweden the highest level of health possible, without any form of discrimination, pursuant to its international obligations, particularly those set out in ICESCR ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Continue to exercise its sovereign right of implementing its laws and legislation, including on the death penalty, in conformity with the universally agreed human rights standards and norms.", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Prohibit and criminalize explicitly the recruitment and use in hostilities of children under 18 years", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Harmonize federal and state laws with international human rights instruments", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Ratify the International Convention on the Elimination of All Forms of Racial Discrimination and the International Covenant on Civil and Political Rights", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Consider accession to ICCPR and ICESCR ", - "values": [ - "3 - Considering action" - ] - }, - { - "text": "To submit to Parliament, for early ratification, the Convention on the Rights of Persons with Disabilities, the International Convention for the Protection of All Persons from Enforced Disappearance, and the Optional Protocol to the Convention against Torture and Other Cruel, Inhuman or Degrading Treatment or Punishment", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Ratify both CAT and OP-CAT, and revise its domestic laws to include the provisions of CAT", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Pay further efforts to elaborate on the education of minority languages and cultures", - "values": [ - "4 - General action" - ] - }, - { - "text": "Take urgent measures to ensure that adequate resources are allocated for education.", - "values": [ - "4 - General action" - ] - }, - { - "text": "Introduce a moratorium on capital executions, with a view to fully abolishing the death penalty", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Review domestic legislation with a view to decriminalizing homosexual relations and prohibiting all forms of discrimination, in compliance with Malawi's international commitments. Release immediately and unconditionally all persons currently deprived of their liberty only for this reason ", - "values": [ - "3 - Considering action" - ] - }, - { - "text": "Take appropriate measures to prevent land grabbing and illegal logging and ensure that future actions are based on a respect for fundamental human rights and environmental protection", - "values": [ - "4 - General action" - ] - }, - { - "text": "Effectively investigate and prosecute crimes and violations against human rights defenders, and ensure that those responsible are punished.", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Establish an official moratorium on executions with a view to abolishing the death penalty ", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Pay specific attention to its human rights obligations in the context of the significant influx of migrants from the Middle East and Northern Africa to the country", - "values": [ - "4 - General action" - ] - }, - { - "text": "Take further measures to eliminate racial discrimination in all of its forms and manifestations, in particular, by prohibiting the practice of race profiling in law enforcement, as recommended by the United Nations treaty bodies", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Urgently make all acts of torture offences under its criminal law, including in the Criminal Code of Indonesia, consistent with its binding obligations under the Convention against Torture", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Adopt awareness-raising measures to guarantee that people belonging to the lesbian, gay, bisexual, transgender and intersex community are not discriminated against on the grounds of their sexual orientation and gender identity", - "values": [ - "4 - General action" - ] - }, - { - "text": "Ratify the UNESCO Convention against discrimination in Education", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Adopt programmes to sensitize and encourage the community for positive engagement with persons with disabilities, and ratify the Convention on the Rights of Persons with Disabilities (CRPD)", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Continue to help the least developed countries affected by the world economic and financial crisis, and modify its development assistance to continue to increase the amount allocated for agriculture and stabilize populations in their countries of origin ", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Undertake a comprehensive study on the feasibility and relevance of establishing a national human rights institution in conformity with the Paris Principles ", - "values": [ - "3 - Considering action" - ] - }, - { - "text": "Continue to implement the laws and policies prohibiting direct and indirect discrimination, on the rights of persons with disabilities, on equal opportunities for women and men on child protection as well as action plans to better protect the rights of women, children and persons with disabilities", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Reinforce efforts to implement the Law on the Elimination of Violence against Women in order to support the establishment of specialized police and prosecutions units, to track the number of cases brought under the Law, and to investigate provinces or districts with low numbers of prosecutions", - "values": [ - "4 - General action" - ] - }, - { - "text": "Continue strengthening cooperation between the Government and civil society organizations in promoting and protecting human rights in areas such as education, public health and gender equality among others ", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Launch awareness-raising campaigns aimed at changing the attitude and practices related to ill-treatment and the abuse of children", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Envisage an explicit reference to the ban of child's labour in the national law", - "values": [ - "3 - Considering action" - ] - }, - { - "text": "Develop prevention and penalization strategies to address incidents of racism against the Roma population that are detected, including the establishment of a National Observatory against Racism", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Fully implement the rulings of the Inter-American Court on Human Rights regarding indigenous land claims by the Yakye Axa and Sawhoyamaxa indigenous communities quickly and effectively", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Take appropriate measures to strengthen the fight against discriminatory practices and violence against women", - "values": [ - "4 - General action" - ] - }, - { - "text": "Consider expediting the adoption of a third national human rights action plan as an extension of the second, which served for the period 2012-2016", - "values": [ - "4 - General action" - ] - }, - { - "text": "Implement legislation criminalizing sexual harassment in the workplace, and set up mechanisms to monitor the implementation of this legislation", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Continue to reform laws to ensure that no one, especially children, will be left stateless", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Take additional measures to support access to education of minority children to help them to maintain and develop their own traditions and languages ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Elaborate and implement a law and programmes to draw attention to the harmful effects of excision ", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Accelerate the adoption of a general law on violence against women and girls criminalizing all forms of violence, including domestic violence and marital rape and guarantee access to justice", - "values": [ - "4 - General action" - ] - }, - { - "text": "Amend existing legislation to recognize sexual orientation and gender identity as grounds for discrimination and allow for the prosecution of hate crimes on this basis", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Step up efforts to combat trafficking in human beings, including developing international cooperation with interested governments, international organizations and NGOs ", - "values": [ - "4 - General action" - ] - }, - { - "text": "In all devolved administrations, overseas territories and Crown dependencies, prohibit all corporal punishment in the family, including through the repeal of all legal defences, such as \u201creasonable chastisement\u201c", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Continue efforts to improve the participation of women in decisionmaking", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Continue to protect the natural family and marriage, formed by a husband and a wife, as the basic cell of society, as well as the right to life ", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "The involvement of civil society in the follow-up to the Universal Periodic Review is key to ensuring a vibrant democracy, which was the reason why Saint Kitts and Nevis committed to regular engagement with its civil society, to comply with its international obligations.", - "values": [ - "4 - General action" - ] - }, - { - "text": "Guarantee completion of ongoing investigations into abuse committed against civilian populations during the civil war", - "values": [ - "4 - General action" - ] - }, - { - "text": "Cooperate with, and support the work of, the International Commission against Impunity in Guatemala", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Establish special procedures for the review and, where appropriate, annulment of adoptions or placements that originated in an enforced disappearance, in accordance with the best interests of the child and, if the child is capable of forming their own views, recognize their right to be heard", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Adopt the next New National Action Plan on Human Rights, which will serve to further strengthen the human rights policy of the country", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Continue its endeavours for effective protection of social and economic rights of its citizens", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Adopt a comprehensive law on combating all forms of violence against women, including domestic violence and marital rape", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Establish a consolidated framework relating to immigration and asylum issues, including an independent Appeals body", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Enact the statute of the Human Rights Commission whose mandates are in line with the Paris Principles and draw up a comprehensive national human rights' plan of action ", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Strengthen the implementation of educational and awareness-raising programmes on human rights.", - "values": [ - "4 - General action" - ] - }, - { - "text": "Establish a national mechanism to visit places of detention in line with the Optional Protocol to the Convention against Torture ", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Strengthen its efforts in establishing a national human rights institution in accordance with the Paris Principles", - "values": [ - "4 - General action" - ] - }, - { - "text": "Safeguard journalists and writers, especially those working for State-owned media houses or public broadcasters, so they can work freely and without fear of reprisal for expressing critical opinions or covering subjects that the Government may find sensitive", - "values": [ - "4 - General action" - ] - }, - { - "text": "Consider stepping up positive efforts, through greater investment in the health sector to strengthen existing services", - "values": [ - "3 - Considering action" - ] - }, - { - "text": "Prioritize its legislation and policies, and empower the National Commission against Discrimination to combat discrimination against women, with particular attention to indigenous communities", - "values": [ - "4 - General action" - ] - }, - { - "text": "Abolish the death penalty and establish a moratorium on executions as a first step towards abolition of the death penalty", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Advance in the development of the proposed database and recommendation tracking platform", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Adopt vigorous measures to combat all forms of discrimination against persons with an immigrant background", - "values": [ - "4 - General action" - ] - }, - { - "text": "Implement measures to facilitate access to health care and education, particularly for the most vulnerable populations", - "values": [ - "4 - General action" - ] - }, - { - "text": "Take measures to improve the education system and carry out programmes aimed at enhancing awareness about human rights at the national level", - "values": [ - "4 - General action" - ] - }, - { - "text": "Take tangible and concrete steps to conduct free and fair Presidential elections without undue delay.", - "values": [ - "4 - General action" - ] - }, - { - "text": "Expedite efforts to ensure that a birth certificate is issued free of charge for all children without discrimination, including children born in rural and poor areas", - "values": [ - "4 - General action" - ] - }, - { - "text": "Continue efforts aiming at combating school drop-out and illiteracy through parallel programmes to the formal education system, that encourage families to register children in schools and adults in programmes for the eradication of illiteracy", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Ensure the guarantee of freedom of expression and opinion and the prevention of child labour in its legislation", - "values": [ - "4 - General action" - ] - }, - { - "text": "Undertake measures to ensure that all children are registered immediately after birth, as a crucial step for children to benefit formally from the social protection system ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Develop a model of care for violence against women and girls especially focused on indigenous population, in accordance with the acknowledgment made in paragraph 139 of the Report", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Ensure that women and women's rights advocates participate in every stage of negotiations concerning a political settlement to the conflict and that the rights of women and girls are respected in any eventual settlement ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Consider aligning its corporate criminal liability regime with international human rights law in order to ensure accountability and effective remedy for victims of serious human rights abuses involving the operations of United Kingdom companies abroad", - "values": [ - "3 - Considering action" - ] - }, - { - "text": "Take appropriate measures to address discrimination against immigrants and asylum seekers in accessing to public services, housing, health and employment, in accordance with a concern expressed by the Committee on the Elimination of Racial Discrimination ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Issue a standing invitation to special procedures ", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Enact and implement legislation that prohibits discrimination in employment and occupation based on disability, language, sexual orientation, gender identity, and HIV-positive status or other communicable diseases", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Allocate substantial resources and give special attention to children of the most vulnerable groups in the society", - "values": [ - "4 - General action" - ] - }, - { - "text": "Continue to take effective measures to promote gender equality and to combat violence against women", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Consider assigning full authority to a body to supervise issues relevant to the protection of unaccompanied immigrant minors in coordination with other agencies", - "values": [ - "3 - Considering action" - ] - }, - { - "text": "Continue the efforts for a speedy ratification of the Optional Protocol to the Convention against Torture ", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Continue efforts in the implementation of its National Approach to Eliminating Sexual and Gender Based Violence in Kiribati", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Pursue efforts to comply with the observations of the Human Rights Committee regarding safeguards of the rights of detainees.", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Continue implementing programs, in cooperation with specialised organisations of the UN system, aimed at improving living conditions of migrants and providing them with possibilities for repatriation", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Consider positively extending an invitation to visit the country to the Working Group on Arbitrary Detention. ", - "values": [ - "3 - Considering action" - ] - }, - { - "text": "Take all the necessary measures to effectively implement the law against domestic violence", - "values": [ - "4 - General action" - ] - }, - { - "text": "Ensure respect for procedural guarantees, including access to a lawyer and an interpreter, for migrants that are detected entering irregularly the autonomous cities", - "values": [ - "4 - General action" - ] - }, - { - "text": "End immediately the reprisals against human rights defenders and lift restrictions on civil society", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Make all necessary efforts to pass legislation prohibiting female genital mutilation within the current year", - "values": [ - "4 - General action" - ] - }, - { - "text": "Guarantee protection from discrimination for persons with disabilities, particularly in the fields of employment, housing, transport and cultural and leisure activities ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Consider the possibility of ratifying the Rome Statute of the International Criminal Court, as proposed by the Committee on the Rights of the Child", - "values": [ - "3 - Considering action" - ] - }, - { - "text": "Follow up on its initiatives in the fight against the trafficking in persons, especially women and children", - "values": [ - "4 - General action" - ] - }, - { - "text": "Continue to provide free health services, fully implementing the consolidated National Health Policy, which was launched in July 2011", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Envisage ratifying OP-CAT and the Rome Statute of ICC ", - "values": [ - "3 - Considering action" - ] - }, - { - "text": "Consider ratifying ILO Convention No. 189 ", - "values": [ - "3 - Considering action" - ] - }, - { - "text": "Consider ratification of the International Convention on the Protection of the Rights of All Migrant Workers and Members of their Families", - "values": [ - "3 - Considering action" - ] - }, - { - "text": "Ratify the Convention on the Rights of Persons with Disabilities, fully incorporating the provisions of the Convention into its national legislation ", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Ensure that the enjoyment of human rights is a reality for all people, without any discrimination", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Review the Gender Equality Bill and remove exceptions therein which would allow for discrimination against women, consistent with CEDAW ", - "values": [ - "3 - Considering action" - ] - }, - { - "text": "Continue efforts to prevent and combat trafficking in human beings, including in the framework of training professionals and increasing the level of awareness ", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Review the impact that the state of emergency has on the enjoyment of human rights.", - "values": [ - "3 - Considering action" - ] - }, - { - "text": "Implement a single harmonized national school core curriculum, agreed upon by the representatives of the country's ethnic groups and national minorities", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Continue to work on effective measures to ensure legal and judicial advances in the fight against hate crime, including hate crime related to racial discrimination or sexual orientation and gender identity", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Take the measures necessary to respect and protect the political, civil, economic, social and cultural rights of all ethnic communities, without any discrimination", - "values": [ - "4 - General action" - ] - }, - { - "text": "Ensure the effective investigation and sanctioning of attacks against journalists and take measure to create a safe and enabling working environment for journalists ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Continue to actively implement strategies and programmes for protection and social support of vulnerable groups", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Ratify the Optional Protocol to the Convention against Torture and take the measures necessary to comply with its provisions", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Ensure speedy passage of the bills on the establishment of a NHRI and Office of the Ombudsman. ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Take additional measures to implement recommendations on various issues as put forward by the Committee for the Elimination of Discrimination against Women, in particular the low participation of women in decision making bodies and in public life, and the high rates of illiteracy and school dropout among women ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Consider ratifying international human rights instruments that have not been ratified by Gabon yet", - "values": [ - "3 - Considering action" - ] - }, - { - "text": "Implement action-oriented measures to strengthen protection and promotion of women's rights in the areas of health and combating violence against women", - "values": [ - "4 - General action" - ] - }, - { - "text": "Take additional measures to more actively promote the full and equal participation of women in bodies where members are elected or nominated ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Recommended continued reform towards the eventual abolition of the death penalty, including greater transparency around its use", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Amend laws that still contain provisions that discriminate against lesbians, gays, transsexuals and bisexuals", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Assess the possibility of abolishing the death penalty for military crimes and ratifying the Second Optional Protocol to the International Covenant on Civil and Political Rights", - "values": [ - "3 - Considering action" - ] - }, - { - "text": "Strengthen efforts to prevent violence against women and ensure the accountability of all perpetrators while ensuring victims are provided with adequate redress, reparations and access to full rehabilitation ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Undertake effective disciplinary and criminal procedures against members of the security forces involved in cases of sexual violence ", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Facilitate the return to Rwanda of Rwandan migrant workers who are not in possession of valid travel documents", - "values": [ - "4 - General action" - ] - }, - { - "text": "Take the measures to comply with its commitment to present periodic reports to the Human Rights Committee in accordance with article 40 of ICCPR, and ensure full cooperation with this mechanism ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Speed up the implementation of laws enacted regarding the Convention on the Elimination of All Forms of Discrimination against Women, and enact adequate legislation that can put an end to the violence to which they are subjected ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Work to decriminalize defamation and prevent legal retaliation against journalists for exercising their right to freedom of expression, and increase transparency of media ownership", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Consider the ratification of the Second Optional Protocol to the International Covenant on Civil and Political Rights and impose a moratorium on executions with a view to abolish the death penalty", - "values": [ - "3 - Considering action" - ] - }, - { - "text": "Continue efforts to improve prison conditions.", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Continue on this positive path to support education", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Take all necessary measures to ratify the Optional Protocol to the Convention against Torture and other Cruel, Inhuman or Degrading Treatment or Punishment ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Prepare a report on the impact of the \u201cHate Crime Action Plan\u201c with the view to assess concrete results", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Ensure in practice better access of every detainee to lawyers, family members, medical treatment and other legal guarantees to ensure protection from torture.", - "values": [ - "4 - General action" - ] - }, - { - "text": "Adopt the measures necessary to give full effect in the domestic legal order to the recommendations made by the Committee on Economic, Social and Cultural Rights", - "values": [ - "4 - General action" - ] - }, - { - "text": "Continue to adopt a positive perspective towards accession to ICCPR", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Review the provisions on defamation and insult in articles 139 and 140 of the Criminal Code ", - "values": [ - "3 - Considering action" - ] - }, - { - "text": "Step up the fight against trafficking to which some foreign populations have fallen victim and ensure that no measures which are contrary to human rights are taken against them ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Cooperate closely with the United Nations human rights mechanisms in Mali", - "values": [ - "4 - General action" - ] - }, - { - "text": "Complete as soon as possible the necessary internal process to appoint the new Ombudsman", - "values": [ - "4 - General action" - ] - }, - { - "text": "Conduct the constitutional reform necessary for the abolition of the death penalty", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Step up its efforts against caste-based violence, discrimination and prejudice, including by eradicating all forms of caste-based discrimination in the educational system", - "values": [ - "4 - General action" - ] - }, - { - "text": "Provide consistent clear response to reject any discriminatory political speech in order to promote understanding, tolerance and friendship between nations and racial, religious and ethnic groups", - "values": [ - "4 - General action" - ] - }, - { - "text": "Continue the process of signing and ratifying international instruments, in particular those which were accepted during the previous universal periodic review", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Take urgent measures to transform the decision to abolish the death penalty into law as soon as possible.", - "values": [ - "4 - General action" - ] - }, - { - "text": "Enhance the capacity of domestic courts and witness protection mechanisms so as to improve the efficiency in domestic war crimes prosecutions", - "values": [ - "4 - General action" - ] - }, - { - "text": "Take measures improving the security of citizens and enhancing protection of particularly vulnerable groups such as women and children ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Continue its efforts in the context of the Human Rights Council to develop its work on human rights in connection with civilians in armed conflict", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Continue its legal efforts on the improvement of the health-care system, particularly for mothers and child ", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Intensify its efforts to prevent, punish and eliminate all forms of violence against women ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Continue efforts to implement the outcome document of the Durban Review Conference at the national and international levels.", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Intensify its efforts to create awareness regarding the primacy of constitutional law with respect to customary laws and practices", - "values": [ - "4 - General action" - ] - }, - { - "text": "Bahrain welcomes a visit by the High Commissioner for Human Rights.", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Continue the cooperation with the international human rights protection system by extending an open standing invitation to the Human Rights Council Special Procedures", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Address the socioeconomic issues facing Roma, including through effective implementation and adequate resourcing of the Action Plan for the Support of the Roma People for 2011-2015, as recommended by CERD", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Regarding to the issue of timely reporting to the United Nations treaty bodies, the delegation stressed the Government's strong commitment to improving the quality of its reports to them.", - "values": [ - "4 - General action" - ] - }, - { - "text": "Withdraw remaining reservation to CEDAW ", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Complete the ratification of the Optional Protocols to the Convention on the Rights of the Child", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Revise its legislation to bring it into line with the requirements of the Rome Statue, so that, for example, statutes of limitations are not applicable to crimes against humanity, ensuring that all persons regardless of their position or rank are liable to prosecution as well as including responsibility of superior officers for crimes against humanity and war crimes committed with their knowledge ", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Re-establish the moratorium on executions and beyond that, consider final abolition of the death penalty ", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Ensure that women continue to participate fully in the peace process, in line with Security Council resolution 1325 (2000) ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Take further steps to assure meaningful implementation and adequate funding of efforts to promote Roma integration, especially in the field of education", - "values": [ - "4 - General action" - ] - }, - { - "text": "Continue its efforts to accede to the remaining core international human rights treaties, which will strengthen the domestic legislation with regard to the promotion and protection of human rights, including freedom of religion or belief ", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Amend article 134 of the Penal Code of Oman and any other legislation that disproportionately restricts the right to freedom of association", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Continue updating curricular content and methods", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Explicitly prohibit all forms of corporal punishment, including in the home, and repeal the "right of correction" in the Civil Code", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Step up cooperation with human rights bodies and consider extending a standing invitation to special procedures mandate holders, so as to enhance technical assistance and contribute to the overall improvement of standard setting in the country ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Devise plans and strategies for guaranteeing the right to education and providing girls with equal access to education", - "values": [ - "4 - General action" - ] - }, - { - "text": "Accelerate the review and subsequent reform of the Family Code so as to eliminate all remaining discriminatory provisions", - "values": [ - "4 - General action" - ] - }, - { - "text": "Impose an official moratorium on the death penalty and replace the death penalty with a sentence that is fair and proportionate and respects international human rights standards", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Continue with its efforts to safeguard the rights of migrants, and provide adequate funding for migrant integration policies", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Adopt the final outcome document approved during the Durban Review Conference.", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Progress on measures to provide psychological and specialized medical services for children victims of abuse, and continue fighting the worst forms of child labour", - "values": [ - "4 - General action" - ] - }, - { - "text": "Cooperate with the United Nations to end the recruitment of child soldiers", - "values": [ - "4 - General action" - ] - }, - { - "text": "Strengthen efforts to protect the rights of persons with disabilities, including through the provision of adequate infrastructure", - "values": [ - "4 - General action" - ] - }, - { - "text": "Strengthen constitutional protections that ensure the independence of the judiciary and Parliament", - "values": [ - "4 - General action" - ] - }, - { - "text": "Continue strengthening the work and cooperation ties among the Haitian human rights organisations and the Human Rights Section of MINUSTAH", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Catch up its delay in the preparation of its initial and periodic reports to be submitted to the various Treaty Bodies", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Draw up a National Plan for Equal Opportunities and Rights and implement the Plan for Access to Justice and Legal Protection for Persons with Disabilities", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Continue efforts aimed at combating human trafficking, protecting victims of trafficking and improving the conditions of shelters ", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Continue to make efforts to abolish the practice of male guardianship over women", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Take measures to guarantee a safe and transparent environment within which civil society can freely operate without fear of repercussions, including by lifting restrictions on freedom of expression and assembly", - "values": [ - "4 - General action" - ] - }, - { - "text": "Ensure that Decree 72, concerning the management, provision and use of Internet services and information online, is implemented in a manner that does not limit individuals' rights to voice their opinions online ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Reintroduce the possibility of dual citizenship", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Pursue efforts to harmonize national legislation with the commitments undertaken at the international level ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Adopt a law that prohibits corporal punishment against children in all areas of life ", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Align its national regulations with the ILO Conventions 138 concerning Minimum Age for Admission to Employment and 182 concerning the prohibition and immediate action for the elimination of the worst forms of child labour and elaborate a timeline for the ratification of these instruments ", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Ensure the protection of and right to family life on the premise that family is the natural and fundamental group of society based upon the stable relationship between a man and a woman ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Be more flexible on the preconditions set for minaret construction ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Continue efforts to eliminate domestic violence through implementation of its Framework Act on Gender Equality", - "values": [ - "3 - Considering action" - ] - }, - { - "text": "Take specific measures to combat domestic violence against women and children", - "values": [ - "4 - General action" - ] - }, - { - "text": "Define racial violence as an offence ", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Consider prioritizing the stated objective of developing a comprehensive national action plan for human rights", - "values": [ - "3 - Considering action" - ] - }, - { - "text": "Bring national laws fully into line with its obligations under ICCPR, CEDAW, CAT and CRC ", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Ensure that enforcement authorities comply with international human rights obligations in the treatment of migrants and asylum seekers, and expedite the judicial process to avoid prolonged detention of migrants and asylum seekers", - "values": [ - "4 - General action" - ] - }, - { - "text": "Increase social and economic initiatives to reinforce the full enjoyment of human rights by internally displaced persons, in particular minorities, such as indigenous peoples and Afro descendents.", - "values": [ - "4 - General action" - ] - }, - { - "text": "Make sure the implementation of the new legislation (the Immigration Amendment Act) will not create unfair discrimination against genuine asylum seekers ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Continue strengthening national mechanisms to promote and protect human rights ", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Extend the new labour law for the private sector to cover all groups, including domestic workers", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Decriminalize sodomy or other sexual activity between consenting adults\n", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Establish, in the near future, the Truth Commission to facilitate the justice and peace within the country", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Review the use of the death penalty on minors and mentally disabled persons.", - "values": [ - "3 - Considering action" - ] - }, - { - "text": "Advance in the design of a public policy on human rights education and culture encompassing all State agencies and the general public. ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Continue to take serious measures to promote inter-religious and intercultural dialogue in the country and to prevent the reoccurrence of irresponsible acts which perpetuate religious hatred and intolerance ", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Adopt law and mechanisms to combat discrimination against groups in vulnerable situations", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Make every possible effort to guarantee universal access to healthcare through the National Health Policy", - "values": [ - "4 - General action" - ] - }, - { - "text": "Continue to reinforce strategies to avoid the prolonged stay of migrants, particularly unaccompanied minors, in centres without the necessary care infrastructure", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Strengthen efforts to eliminate out-of-court as well as child marriages", - "values": [ - "4 - General action" - ] - }, - { - "text": "Bring its legislation into conformity with its international human rights obligations by criminalizing the practice of female genital mutilation", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Strengthen legislative and administrative measures on discrimination and violence against women", - "values": [ - "4 - General action" - ] - }, - { - "text": "Accept a visit by the Special Rapporteur on Freedom of Religion or Belief, and to consider giving a standing invitation to Special Procedures ", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Conduct a systematic evaluation of the merits of establishing a national human rights institution.", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Continue its efforts to promote the rights of women by providing them access to posts of responsibilities", - "values": [ - "4 - General action" - ] - }, - { - "text": "Ratify the International Covenant on Economic, Social and Cultural Rights, the International Covenant on Civil and Political Rights, the Optional Protocol to the Convention against Torture and other Cruel, Inhuman or Degrading Treatment or Punishment, the Optional Protocol to the Convention on the Rights of the Child on the involvement of children in armed conflict, and the International Convention on the Protection of the Rights of All Migrant Workers and Members of Their Families", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Study the possibility of introducing a criminal aggravating factor for racial and religious hatred or hatred against persons with a minority sexual orientation", - "values": [ - "3 - Considering action" - ] - }, - { - "text": "Accede to and adapt its national legislation to the Arms Trade Treaty", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Continue efforts to collect and generate disaggregated data on actual manifestations of racism and discrimination with a view to evaluating the situation regarding racial, ethnic and minority groups in Norway ", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Implement all the articles of the International Convention on the Elimination of All Forms of Racial Discrimination.", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Consider the establishment of legislation providing for access to basic services for undocumented migrants, particularly health services, in conformity with the Affordable Care Act", - "values": [ - "3 - Considering action" - ] - }, - { - "text": "Continue cooperation with international human rights mechanisms", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Provide additional resources to its anti-trafficking in persons programmes ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Consolidate the legal framework for the promotion and protection of human rights by ratifying CRPD ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Deepen measures to ensure the fight against impunity for perpetrators of acts of violence and of all human rights violations", - "values": [ - "4 - General action" - ] - }, - { - "text": "Take more effective measures to prevent sexual exploitation of children, including through criminalizing the production and distribution of pornographic or erotic images including children, and prosecute Danish citizens who abused children abroad ", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Ratify the Optional Protocols to the Convention on the Elimination of All Forms of Discrimination against Women, the Convention against Torture and Other Cruel, Inhuman or Degrading Treatment or Punishment and the Convention on the Rights of Persons with Disabilities, as well as the two Optional Protocols to the Convention on the Rights of the Child", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Allow women's participation in alltracks of the national concord government formation process, as well as in decision-making positions", - "values": [ - "4 - General action" - ] - }, - { - "text": "Continue efforts to provide basic health and education services for vulnerable segments of its population, and continue its commitment to a people-oriented development policy by tackling poverty-related issues through investment in social infrastructure and by addressing the probable shortcomings in this regard ", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Provide, in accordance with its obligations under International Human Rights Law, the widest possible protection and support for the family, as the natural and fundamental unit of society ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Take appropriate measures to address problems faced by immigrant skilled workers in relation to gaining employment on par with their education, experience and skills ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Implement the recommendations of the Committee on the Rights of the Child\n\n", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Dismantle the separation wall and halt the expansion of illegal settlements", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Continue with measures to remove discrimination and segregation of Romani pupils, including by ensuring effective implementation of its National Action Plan for Inclusive Education", - "values": [ - "4 - General action" - ] - }, - { - "text": "Double investments in agriculture to protect sources of water, replenishing farmers with seeds, improving exports, vaccinating livestock and poultry, and encouraging a more nutritious and diverse diet", - "values": [ - "4 - General action" - ] - }, - { - "text": "Ensure the implementation of environmental standards to protect the environment", - "values": [ - "4 - General action" - ] - }, - { - "text": "Enhance accessibility of the United Nations Human Rights system for all members of Greek society by ensuring the translation into Greek of its UPR outcome and relevant treaty body concluding observations and special procedures country reports ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Continue to focus on policies and programmes that would further strengthen the protection and promotion of human rights of its people, including by working closely with the relevant civil society organizations and NGOs", - "values": [ - "4 - General action" - ] - }, - { - "text": "Undertake effective measures against torture and ill-treatment including human rights training of law enforcement bodies ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Prioritize the promotion of the rights of the child by ensuring that national legislation is in line with its obligations under the relevant international human rights instruments, by providing more resources to create and fully implement programmes that promote the security and safety of children, such as measures to eradicate corporal punishment and domestic violence, and by improving access to and the quality of education and health services", - "values": [ - "4 - General action" - ] - }, - { - "text": "Pursue its actions in preventing acts of torture and ensure the punishment of persons responsible for acts of torture ", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Continue to cooperate and coordinate with the international community and the United Nations Support Mission in Libya in order to obtain technical assistance to address the challenges faced in the promotion and realization of human rights", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Ensure that all living in Cuba can fully enjoy their rights to freedom of expression, association and peaceful assembly ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Continue its measures to eliminate discrimination and increase its efforts to tackle HIV infection by ensuring equal access to treatment and support", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Continue to work for the adoption of appropriate legal frameworks for the implementation of the guarantees foreseen by the new Constitution regarding human rights and fundamental freedoms", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Continue efforts to introduce a criminal justice process for youth in Vanuatu, which improves the outcomes for offenders, victims and their families ", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "End discrimination in law and in practice against all religious and ethnic minorities, such as Baha'is, Sufis, Kurds and Sunni Arabs, and ensure full protection of their rights", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Seek the necessary assistance, with appropriate partners, to fill the low literacy rates, submit its reports to the treaty bodies and implement its strategic framework for growth and the fight against poverty", - "values": [ - "1 - Minimal action" - ] - }, - { - "text": "Recognize the pre-election registration status of the National League for Democracy (NLD) and to begin a dialogue of national reconciliation with the NLD and other ethnic and democratic actors in the country ", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Set measures to prevent violence against children and prohibit corporal punishment of children", - "values": [ - "4 - General action" - ] - }, - { - "text": "Adopt appropriate measures to eradicate gender-based violence, particularly domestic violence.", - "values": [ - "4 - General action" - ] - }, - { - "text": "Enhance the facilities, services and opportunities for children and persons with disabilities", - "values": [ - "4 - General action" - ] - }, - { - "text": "Adopt legal and administrative measures to ensure the full integration of Roma people into Czech society and increase efforts to combat discrimination on the grounds of Roma women\u2019s rights and Roma children\u2019s education", - "values": [ - "4 - General action" - ] - }, - { - "text": "Consult with and involve civil society in the follow-up to the universal periodic review, including in the implementation of recommendations", - "values": [ - "4 - General action" - ] - }, - { - "text": "Implement comprehensive anti-discrimination legislation to protect and promote the rights of lesbian, gay, bisexual, transgender and intersex persons", - "values": [ - "4 - General action" - ] - }, - { - "text": "Continue the efforts to combat and prevent discrimination under any ground", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Take adequate measures to prevent trafficking in women and children and to strengthen the protection of victims of human trafficking", - "values": [ - "4 - General action" - ] - }, - { - "text": "Take effective measures to combat and put an end to discrimination against indigenous population and to elaborate and implement a National Action Plan to deal with this phenomenon", - "values": [ - "4 - General action" - ] - }, - { - "text": "Explicitly prohibit organizations promoting racial and religious hatred as well as racial profiling", - "values": [ - "4 - General action" - ] - }, - { - "text": "Continue the integration of human rights education in the remaining grades in schools.", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Take immediate steps to restore race as a ground of discrimination in compliance with ICERD, and the European Union Racial Equality Directive", - "values": [ - "4 - General action" - ] - }, - { - "text": "Implement actions to facilitate the work of civil society, including through legislative measures", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Update and make more comprehensive its National Action Plan against Racism, in consultation with civil society and concerned communities", - "values": [ - "4 - General action" - ] - }, - { - "text": "Strengthen the legislation to ban the use of children under 18 for the purpose of commercial sex, prostitution and pornography ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Maintain and step up its efforts to prevent, punish and eliminate all forms of violence against women ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Work together with the other European States to improve the conditions and treatment given to asylum seekers and refugees", - "values": [ - "4 - General action" - ] - }, - { - "text": "Improve conditions of detention for condemned prisoners regarding communication with the outside world", - "values": [ - "4 - General action" - ] - }, - { - "text": "Continue the strategies and the plans for the social and economic development of the country ", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Continue consolidating its social programmes and strengthening its successful education policy", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Take all necessary measures to prevent torture and other cruel, inhuman and degrading treatment or punishment, in particular in places of detention.", - "values": [ - "4 - General action" - ] - }, - { - "text": "Continue efforts to strengthen access to quality education and health services, especially for the vulnerable segments of society", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Ratify the Optional Protocol of the CRPD ", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Intensify efforts to prevent discrimination against ethnic groups and promote equality, as well as prevent and combat discrimination against persons from immigrant backgrounds ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Provide financial and structural support to civil society organisations", - "values": [ - "4 - General action" - ] - }, - { - "text": "Further cooperate with the international community in holding accountable those responsible for violations against human rights and humanitarian law ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Further enhance measures to combat and prevent discrimination against vulnerable groups", - "values": [ - "4 - General action" - ] - }, - { - "text": "Analyse the possibility of creating a national human rights network to facilitate, among others, the submission of reports to treaty bodies, and establishing a national system to monitor international recommendations", - "values": [ - "3 - Considering action" - ] - }, - { - "text": "Adopt an minimum age limit for access to the labour market which is in conformity with international standards, in particular with that which is established by the ILO Minimum Age Convention ", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Conduct awareness-raising programmes on gender identity and sexual orientation for civil servants, including the security forces and bodies ", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Adopt and implement a comprehensive strategy and action plan to tackle discrimination based on sexual orientation and gender identity", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Continue to take sustained measures to incorporate elements of human rights education in the training of law enforcement agencies", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Impose a moratorium on the death penalty as a first step to its abolition", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Issue an invitation to the Special Rapporteur on Torture to visit Kyrgyzstan in 2010 ", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Increase the efforts to address ill-treatment and abuse of persons in detention", - "values": [ - "4 - General action" - ] - }, - { - "text": "Adopt adequate legislation to ensure that children in conflict with the law have access to justice and social reintegration, using the deprivation of liberty as a last resort", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Strengthen the employment and education rate among refugees and migrants", - "values": [ - "4 - General action" - ] - }, - { - "text": "Immediately bring to an end the violence and repression against the civilian population ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Make every effort to further strengthen the capacity of law enforcement authorities to combat violence against women and children, and to enhance the provision of support by relevant government institutions for victims", - "values": [ - "4 - General action" - ] - }, - { - "text": "Carry out investigations, in accordance with international norms, regarding the perpetrators, police or military, of the violence which resulted in serious injuries or deaths during demonstrations and as appropriate bring those responsible to justice", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Continue efforts in achieving the United Nations official development aid target of 0.7 per cent of gross domestic product", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Continue to strengthen its efforts to prevent human rights violations committed during counter-terrorist operations", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Initiate further studies on methods by which Sami land and resource rights could be established, taking into account the culture of the Sami community ", - "values": [ - "3 - Considering action" - ] - }, - { - "text": "Step up its efforts to fight against certain forms and manifestations of racism and xenophobia, urge high-ranking State officials to take clear position against these scourges, and take necessary measures to accelerate implementation of the law on the reception and the integration of foreigners", - "values": [ - "4 - General action" - ] - }, - { - "text": "Further implement policies to advance women's role in society and combat gender-based discrimination and violence ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Request technical assistance from OHCHR regarding the preparation of reports which need to be submitted to treaty bodies ", - "values": [ - "1 - Minimal action" - ] - }, - { - "text": "Implement its commitment to increase the ODA (Official Development Aid) for developing countries, particularly least developed countries ", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Take efficient measures to combat any manifestation of discrimination, racism, xenophobia and intolerance in society, including by adopting and implementing a comprehensive national plan of action", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Ensure full respect for women's rights and eliminate discriminatory practices, such as FGM, marital rape and other forms of domestic violence, in compliance with CEDAW ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Take further steps to address discrimination against women, especially in the work place", - "values": [ - "4 - General action" - ] - }, - { - "text": "Further pursue efforts to increase the level of representation of women in society, including their appointment to the higher governmental posts", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Withdraw all reservations to international human rights treaties and implement their provisions fully and in good faith", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Continue implementation of its Comprehensive Plan to Prevent Domestic Violence, including through awareness-raising", - "values": [ - "4 - General action" - ] - }, - { - "text": "Provide effective protection for the family as the natural and fundamental unit of the society, in accordance with its respective obligations under international human rights law", - "values": [ - "4 - General action" - ] - }, - { - "text": "Accelerate the enactment of laws for the protection of lesbian, gay, bisexual, transgender and intersex persons, in particular the Transgender Persons (Protection of Rights) Bill", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Combat violence against women and girls, in particular domestic violence", - "values": [ - "4 - General action" - ] - }, - { - "text": "Continue implementing the programmes which provide education, health and social services in rural areas", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Encourage the police to follow up on all allegations of domestic violence ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Speed up the adoption of the national anti-terrorism law and start implementation in order to prevent harmful effects on the system of human rights in Somalia", - "values": [ - "4 - General action" - ] - }, - { - "text": "Reinforce measures to prevent child sex tourism and to combat child pornography on the Internet", - "values": [ - "4 - General action" - ] - }, - { - "text": "Continue your claims in light of the refusal of transnational companies to repair the serious environmental damage in the Amazon", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Reform the judicial system to establish an independent judicial power in accordance with international standards, and ensure the existence of the rule of law and justice ", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Further strengthen efforts to ensure equal participation of men and women in elected office", - "values": [ - "4 - General action" - ] - }, - { - "text": "Maintain the age of criminal responsibility for children as it currently stands", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Continue to incorporate the provisions of the human rights conventions, to which it is a party, in its national laws and development policies", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Ensure accountability for human rights violations by establishing independent and impartial investigations into the violation and abuses committed under the former rule, which in turn should lead to trials of those held accountable, in line with international standards ", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Cease immediately the demolition and destruction of public and private Palestinian properties which constitute a violation of article 53 of the Fourth Geneva Convention and articles 46, 53 and 55 of the Hague Regulations", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Continue efforts to improve opportunities for women in order to ensure that they participate on an equal footing in public life and all sectors of society", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Take immediate steps to stop extrajudicial killings and to conduct an independent and impartial inquiry into all enforced disappearances and extrajudicial killings so that the perpetrators of these crimes are brought to justice", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Take measures to limit the powers of public prosecutors and bring criminal procedure into greater conformity with article 14 of the International Covenant on Civil and Political Rights", - "values": [ - "4 - General action" - ] - }, - { - "text": "Develop a national plan to provide protection and ensure the rights of all displaced persons in accordance with the Guiding Principles on Internal Displacement", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Consider the establishment of a legal moratorium on the death penalty with a view to its abolition ", - "values": [ - "3 - Considering action" - ] - }, - { - "text": "End the solitary confinement of child detainees, and that audio-visual recordings are made of all interviews with child detainees by the Israeli police and security forces", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Take the measures necessary to eliminate the possibility of exercising the right to conscientious objection to compulsory military service", - "values": [ - "4 - General action" - ] - }, - { - "text": "Maintain State preschool and general education institutions with education/teaching in minority languages, including the Russian language", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Explicitly prohibit under criminal law life imprisonment and indeterminate detention of child offenders", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "More than 3.1 million foreign workers are contractually employed and the Government is fully committed to creating the necessary mechanisms and safeguards to protect all who reside and work in the country.", - "values": [ - "4 - General action" - ] - }, - { - "text": "Keep up the positive momentum in upgrading its laws and institutions while ensuring their effective implementation, in particular in the areas of education of all and the rights of women", - "values": [ - "4 - General action" - ] - }, - { - "text": "Immediately halt the execution of juveniles and political prisoners and, furthermore, establish an official moratorium", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Amend the appropriate legislation in accordance with its international human rights obligations to address the issue of amnesties for perpetrators of human rights violations", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Repeal administrative measures that promote acts that undermine human rights, such as the indiscriminate use of rewards to civil informants.", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Increase its efforts to ensure that perpetrators of extra-judicial killings and torture are brought to justice ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Implement the recommendations made by the Human Rights Committee and the Committee against Torture to put in place legislative measures to sanction manifestations of repeated hate speech and intolerance", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Consider signing and ratifying the International Convention for the Protection of All Persons from Enforced Disappearance", - "values": [ - "3 - Considering action" - ] - }, - { - "text": "Conduct an immediate and independent investigation into all cases of torture and ill-treatment of Palestinian children and ensure that all persons responsible for such practices are brought to justice and punished in a manner proportionate to the gravity of their crimes", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Consolidate the mechanisms to protect women against all forms of violence ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Ensure equal remuneration for men and women workers for the same work or similar work and for the prevention of discrimination on grounds of sex", - "values": [ - "4 - General action" - ] - }, - { - "text": "Strengthen migration policies, based on the respect of the human rights of all migrants ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Give abandoned children born in wedlock the same rights and protections afforded to children born out of wedlock", - "values": [ - "4 - General action" - ] - }, - { - "text": "Collaborate closely with marginalized communities to fix the problems in the justice system that continues to discriminate against them despite recent waves of protest over racial profiling and police killings of unarmed black men", - "values": [ - "4 - General action" - ] - }, - { - "text": "Establish a timeline to present anti-discrimination legislation to the National Assembly, and repeal article 92 (6) of the Military Criminal Act to end restrictions on consensual same sex relations", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Continue strengthening measures to address and lessen the HIV/AIDS impact on women and children, in particular the mother-to-child- transmission", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Modify the Criminal Procedure Code to ensure better protection for women, and thoroughly investigate allegations of violence or abuse perpetrated against children while in detention", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Take measures in order to improve and create additional favourable conditions to facilitate access to education for persons with disabilities", - "values": [ - "4 - General action" - ] - }, - { - "text": "Withdraw reservations to the International Convention on the Elimination of All Forms of Racial Discrimination and the Convention against Torture", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Ratify CRC-OP-SC which has already been signed by Jamaica ", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Continue implementation of effective policies and programmes aimed at improving among others the health, education, standard of living and access to safe drinking water and sanitation of the people", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Guarantee that lesbian, gay, bisexual, transgender and intersex persons fully enjoy their human rights, on equal terms, by repealing norms that criminalize and stigmatize them", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Continue its efforts in the area of physical interconnection regarding the technology and transport, which would ensure a better use of the resources of the country and would benefit the vulnerable sectors of the population ", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Criminalize and punish the practice of acts of racial discrimination", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Remove the reservations to the Convention on the Elimination of All Forms of Discrimination against Women and take temporary special measures in favour of gender equality", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "A Criminal Justice (Withholding Information on Crimes against Children and Vulnerable Adults) Bill and a National Vetting Bureau Bill were presently being prepared and would be presented to Parliament as soon as possible and revised Children First guidelines would be placed on a statutory basis", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Continue its efforts to protect and promote the rights of vulnerable persons ", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Continue efforts aimed at promoting the rights of children, women, migrants and national minorities", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Ensure that persons who only speak non-official languages used widely by the population are not denied access to public services ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Accelerate the issuing of invitations to rapporteurs who have been requesting to visit the country for several years ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Amend its national law to guarantee equality between men and women and ensure that customs and traditional practices cannot be used in law to discriminate against women ", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Amend or revoke section 377 to decriminalize same-sex relations", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Extend a standing invitation to all HRC Special Procedures", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Decriminalize defamation in line with international standards ", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Act on the Matrix of Actions it put forward to the G-19 international donor community in March 2010 in response to deep concerns about the 2009 elections ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Strengthen the legal actions against all forms of discrimination on the basis of race, ethnic origin, language, religion or national origin ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Take measures to expand access for persons with disabilities, in particular, with regard to transportation and physical access to educational institutions", - "values": [ - "4 - General action" - ] - }, - { - "text": "Ratify OP-CRC-SC and sign and ratify OP-CRC-IC ", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Promote a national debate on the abolition of the death penalty", - "values": [ - "4 - General action" - ] - }, - { - "text": "Take all additional measures to prevent and eradicate all manifestations of any form of racism and xenophobia against non-citizens, including refugees, asylum seekers and migrants", - "values": [ - "4 - General action" - ] - }, - { - "text": "Take further measures for the promotion of gender equality and women's rights, ensuring women's participation and gender responsiveness within the policies of the Government and other agencies", - "values": [ - "4 - General action" - ] - }, - { - "text": "Adopt a progressive Traveller Roma inclusion strategy with clear goals, indicators, timeframes, and budget in consultation with affected groups", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Improve the programmes for human rights training, in particular those designed for judges and law enforcement agents", - "values": [ - "4 - General action" - ] - }, - { - "text": "Continue to enhance its efforts to disseminate a culture of human rights at all levels, in particular in the educational institutions ", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Promote efforts to fight illiteracy", - "values": [ - "4 - General action" - ] - }, - { - "text": "Take all necessary measures to promote women's rights and fight against domestic violence", - "values": [ - "4 - General action" - ] - }, - { - "text": "Bring domestic legislation into conformity with its international human rights obligations", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "The National Transitional Council (NTC) should work to establish a functioning justice system. This should be based on an independent police force and judiciary, whose jurisdiction should include all human rights abuses committed by individuals associated with Seleka ", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Cooperate with countries of destination in order to return illegal refugees and migrants to their countries of origin ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Continue efforts to ensure greater wage equality between men and women", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Reinforce measures designed to prevent and combat the widespread economic exploitation of children, in line with country's international commitments, notably ILO Conventions No. 138 and 182, with particular focus on minors living in earthquake-hit and rural areas ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Accelerate the domestic legislative process for preventing and combating enforced disappearances, in order to enable accession to CPED and recognize the competence of its Committee ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Continue the efforts to fight against child malnutrition, particularly among indigenous people", - "values": [ - "4 - General action" - ] - }, - { - "text": "Increase efforts to ensure the implementation of legislation prohibiting racist crimes in practice", - "values": [ - "4 - General action" - ] - }, - { - "text": "Consider withdrawing its reservation to article 22 of the International Covenant on Civil and Political Rights", - "values": [ - "4 - General action" - ] - }, - { - "text": "Strengthen the enforcement of equality provisions with respect to women in employment laws ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Ratify the Hague Convention on Civil Aspects of International Child Abduction, 1980.", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Withdraw the general reservation to CRC and CEDAW ", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Step up its measures to combat racism, racial discrimination and xenophobia especially against the Muslim, indigenous and minority communities in the country ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Consider ratifying Convention No. 169 of the International Labour Organization - ILO - ", - "values": [ - "3 - Considering action" - ] - }, - { - "text": "Revoke the President's authority to appoint and dismiss judges", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Take concrete steps to ensure the full enjoyment of the right to freedom of expression for all, including journalists and human rights defenders, and strengthen protection of journalists and human rights defenders against harassment and persecution", - "values": [ - "4 - General action" - ] - }, - { - "text": "Take further measures aimed at eradicating violence against women", - "values": [ - "4 - General action" - ] - }, - { - "text": "Make further efforts to conduct a prompt, thorough and impartial investigation of allegations of arbitrary detention and excessive use of force by law enforcement officials in response to protests, with a view to ensuring accountability for perpetrators", - "values": [ - "4 - General action" - ] - }, - { - "text": "Prevent and punish violence against women and children", - "values": [ - "4 - General action" - ] - }, - { - "text": "Maintain judiciary recourse in the naturalization process.", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Continue efforts to combat impunity and ensure alleged perpetrators of serious human rights violations are brought to justice, including through renewed efforts to arrest Major General Jovito Palparan Jr., former Governor Joel Reyes and the perpetrators of the Maguindanao massacre ", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Raise the age of criminal responsibility to 18 years as recommended by the Committee on the Rights of the Child", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Maintain its effective cooperation with the Council's special procedure mandate holders ", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Take steps to bring to justice those who have threatened, or attacked human rights defenders, children, and others who are working to promote democracy and accountability in Pakistan", - "values": [ - "4 - General action" - ] - }, - { - "text": "Implement the laws on slavery and ensure that all crimes of slavery are subject to prosecution", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Amend legislation to prohibit the caning of minors ", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Address concerns over detention conditions", - "values": [ - "4 - General action" - ] - }, - { - "text": "Take further measures to ensure the accessibility of HIV/AIDS-related health services", - "values": [ - "4 - General action" - ] - }, - { - "text": "Conduct a thorough, prompt and impartial investigation on the assassinations of journalists and human rights defenders including those as referred to in paragraphs 18, 21, 24 and 58 of the report, and bring the perpetrators to justice ", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Guarantee direct applicability of the International Covenant on Economic, Social and Cultural Rights in the domestic legal order", - "values": [ - "4 - General action" - ] - }, - { - "text": "Foster the finalization of the existing initiative to set up a National Human Rights Institution in conformity with the Paris Principles", - "values": [ - "4 - General action" - ] - }, - { - "text": "Accede to the Rome Statute of the International Criminal Court and fully align its legislation with all obligations under the Rome Statute", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Continue combating and condemning racism and hate speech used by politicians and the expression of racism in the media, in particular discriminatory language and hate speech and the dissemination of racist ideas and languages ", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Continue with the support and cooperation of the international community to fight poverty ", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Adopt the necessary measures with a view to ratifying the CRPD ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Continue and strengthen the efforts of the Government to ensure that law enforcement officials and prison guards do not use excessive force or mistreat inmates, by conducting thorough investigations into all such allegations and ensuring that perpetrators are brought to justice ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Reconsider the Act on banning conspicuous religious symbols in public schools and the Act on banning Niqab in public places in the light of its relevant obligations under the international human rights law", - "values": [ - "3 - Considering action" - ] - }, - { - "text": "Step up measures to curb the incidence of drug and alcohol abuse by children including through intensive public education awareness campaigns ", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Amend article 375 of the Penal Code, dealing with the crime of rape, in order to remove the exception for sexual intercourse by a man with his wife ", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Ensure that international obligations concerning due process and fair trial rights are respected and fulfilled at all times", - "values": [ - "4 - General action" - ] - }, - { - "text": "Intensify efforts on the development of a legal framework aimed at the elimination of discrimination based on sex, race, disability, status or any other ground", - "values": [ - "4 - General action" - ] - }, - { - "text": "Endeavour to depoliticize the police and military authorities to ensure impartial administration of justice and respect for the right to a fair trial and compliance with minimum guarantees in pre-trial detention", - "values": [ - "4 - General action" - ] - }, - { - "text": "Continue to implement its voluntary commitments to promote human rights through its membership in the Human Rights Council, the African Union and the League of Arab States in order to prevent double standards in dealing with specific countries and to promote dialogue between nations, instead of resorting to force or the imposition of coercive measures or using human rights as a reason to interfere in the internal affairs of States", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Establish as quickly as possible a moratorium on executions with a view to a definitive abolition of the death penalty, and ensure respect for the fundamental rights of those persons convicted and their families", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Take all measures needed to ensure that those operations being carried out to tackle terrorism and restore Mali's sovereignty over its whole territory are undertaken with a strict respect of the international humanitarian law while making sure that full protection is extended to the civilian population", - "values": [ - "4 - General action" - ] - }, - { - "text": "Ratify or sign, as relevant, the Optional Protocol to the International Covenant on Economic, Social and Cultural Rights with a view to being consistent with its practice on this matter ", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Participate more actively in the international programmes of technical assistance and capacity-building in the field of human rights ", - "values": [ - "1 - Minimal action" - ] - }, - { - "text": "Continue its efforts to achieve the results of the national dialogue to reach a comprehensive and sustainable peace in all regions of Sudan", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Compensate victims of gross violations of human rights in American prisons and prisons under the jurisdiction of America outside its territory and provide them with remedies ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Take better consideration of the wishes of the child in pursuit of his/her education after the basic school cycle", - "values": [ - "4 - General action" - ] - }, - { - "text": "Ensure that the legislation and the State respect articles 19 and 21 of International Covenant on Civil and Political Rights, which guarantee freedom of expression and freedom of association and assembly", - "values": [ - "4 - General action" - ] - }, - { - "text": "Continue expanding the legal framework for the promotion and protection of human rights through the ratification of the Convention against Torture and Other Cruel, Inhuman or Degrading Treatment or Punishment and the International Convention for the Protection of All Persons from Enforced Disappearance as well as to consider taking steps towards the abolishment of death penalty", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Strengthen its protection for vulnerable groups, particularly women, children, persons with disabilities, the elderly and ethnic minorities, and adopt corresponding national legislation on the protection of those vulnerable groups", - "values": [ - "4 - General action" - ] - }, - { - "text": "Remove from its law and practice all civil and criminal provisions constituting discrimination against women and girls", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Consider especially abolishing the death penalty to children under 18 years ", - "values": [ - "3 - Considering action" - ] - }, - { - "text": "Ensure adequate resources in implementing MDGs with priority focus on vulnerable groups such as women and children", - "values": [ - "4 - General action" - ] - }, - { - "text": "Consider its accession to the International Convention on the Protection of the Rights of All Migrant Workers and Members of their Families, in order to ensure a comprehensive approach to migrant workers' rights", - "values": [ - "3 - Considering action" - ] - }, - { - "text": "Continue its efforts to establish the office of the Ombudsman for the Rights of the child", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Abolish the death penalty and consider the ratification of the Second Optional Protocol to ICCPR ", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Continue the efforts to achieve accession to the main human rights international instruments and their consistent incorporation into domestic legislation ", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Provide shelters and legal assistance to victims of domestic violence, and present a draft law on domestic violence", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Submit its long overdue reports to the relevant Treaty Bodies", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "In cooperation with the relevant bodies, follow up on the implementation of voluntary commitments as reflected in its national report and consider their inclusion in its national human rights strategy.", - "values": [ - "4 - General action" - ] - }, - { - "text": "Improve the situation of the Beduns by considering the possibility of acceding to the Convention on refugees and its protocol, as well as to the conventions dealing with statelessness ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Allow religious groups to worship and communicate religious believes freely", - "values": [ - "4 - General action" - ] - }, - { - "text": "Ensure the minimum age of marriage for children disallows early marriage", - "values": [ - "4 - General action" - ] - }, - { - "text": "Reduce at minimum the administrative detention of migrants and asylum seekers, observing the legal safeguards for persons in vulnerable situations and respecting the principles of international law, also considering the provision of free legal assistance for detained migrant children", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Continue working for the integration and empowerment of women in decision making processes ", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Further enhance the prevention of domestic violence ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Provide adequate funding to the Human Rights and Anti Discrimination Commission and take steps to ensure its conformity with the Paris Principles", - "values": [ - "4 - General action" - ] - }, - { - "text": "Improve the detention conditions of minor offenders, including better protection against institutional violence, and promote access to education and rehabilitation programmes to ensure future reintegration in society and full respect of their rights", - "values": [ - "4 - General action" - ] - }, - { - "text": "Strengthen measures to protect displaced persons and include them in public social development policies", - "values": [ - "4 - General action" - ] - }, - { - "text": "Share its experience with regards to fighting rebellion and terrorism and how to overcome them, as well as on the measures taken to improve its social and economic development.", - "values": [ - "1 - Minimal action" - ] - }, - { - "text": "Improve the situation of women in the labour market", - "values": [ - "4 - General action" - ] - }, - { - "text": "Strengthen collaboration with the relevant stakeholders to address the causes of gender-based violence", - "values": [ - "4 - General action" - ] - }, - { - "text": "Ratify the Rome Statute and fully align its national legislation with its provisions", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Fully support the national electoral commission's efforts to ensure transparency and prevent irregularities in the electoral process ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Consider the ratification of human rights conventions to which it is not yet a State party", - "values": [ - "3 - Considering action" - ] - }, - { - "text": "Ratify the 1960 Convention against Discrimination in Education ", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Strengthen governmental measures to guarantee the effective implementation of the human rights of migrants in accordance with the existing international instruments in this area ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Ratify the remaining human rights conventions, particularly CEDAW ", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Canada commits to enhancing information sharing with Canadians about its international human rights treaty-adherence process and the status of the review of treaties under consideration for possible signature/ratification.", - "values": [ - "4 - General action" - ] - }, - { - "text": "Address any remaining barriers to an equal sharing between women and men of paid and unpaid work ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Intensify efforts to promote access to education and extend its coverage to all levels of schooling ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Establish mechanisms, such as additional training and guidelines for police forces, aimed at preventing security forces from using force in any excessive or unjustified manner", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Continue working on children's rights taking into account its international obligations on this area ", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Condemn forcefully and consistently, at the highest level, all racist and xenophobic statements, especially by public and elected officials", - "values": [ - "4 - General action" - ] - }, - { - "text": "Continue implementing laws in accordance with the universally agreed human rights norms and principles ", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Provide to Colombian refugees the opportunity to present their request for reparation at the moment of their voluntary repatriation, if it is the case, so that they can benefit from the Victims and Land Restitution Law", - "values": [ - "4 - General action" - ] - }, - { - "text": "Strengthen the efforts to improve living standards of economically vulnerable population", - "values": [ - "4 - General action" - ] - }, - { - "text": "Abolish the Law on the Expiry of the Punitive Claims of the State to allow for thorough and all-encompassing investigation and prosecution of all human rights violations in the past.", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Introduce a limit for the time a child can be held in detention, pretrial", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Financial and other resources required will be made available by the Government to the Ministries and agencies identified as implementing agencies of the NHRAP and the National Plan of Action to Implement the Recommendations of the Lessons Learnt and Reconciliation Commission, to support the implementation of these Plans", - "values": [ - "4 - General action" - ] - }, - { - "text": "Implement as soon as possible Decree laws 115 and 116 and establish promptly a high independent authority for media and communication ", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Ensure appropriate training is provided to officials, and that law enforcement authorities carry out thorough and prompt investigations regarding attacks on LGBTI persons", - "values": [ - "4 - General action" - ] - }, - { - "text": "Consider ratifying the Convention on the Rights of Persons with Disabilities shortly", - "values": [ - "3 - Considering action" - ] - }, - { - "text": "Condemn all hate crimes, discrimination and racial profiling", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Guarantee freedom of opinion and expression in accordance with the International Covenant on Civil and Political Rights", - "values": [ - "4 - General action" - ] - }, - { - "text": "Investigate thoroughly all deaths, both those involving State security forces allegedly killing suspects in self-defence and those perpetrated by unknown assassins", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Enhance the efforts against trafficking in persons and strengthen programmes that provide assistance and aid to its victims ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Cooperate fully with all international human rights mechanisms, including the Commission on Human Rights in South Sudan established by the Human Rights Council", - "values": [ - "4 - General action" - ] - }, - { - "text": "Respect the right of the opposition members to travel freely, to hold meetings, to express their views and to have access to the media without discrimination ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Continue its utmost efforts to improve the civil, political, social, economic and cultural rights for the Iraqi people", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Ratify the Convention on the Rights of the Child, in particular its Optional Protocol on the sale of children", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Take the necessary steps to more effectively enforce compulsory education regulations, thus ensuring that equal access to education is a reality in all parts of the country", - "values": [ - "4 - General action" - ] - }, - { - "text": "Create a national registry of persons with albinism to prevent the killing of women and girls with albinism that are used for rituals", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Take effective measures to combat hate speech and acts of hate relating to ethnic origin or sexual orientation", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Intensify its efforts to combat violence and discrimination against women and girls by ensuring that perpetrators are prosecuted and punished", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Continue its endeavours to combat racism including through establishing a national board against racism and intolerance", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Take effective legal measures with a view to the adoption of a national plan of action so that the rights of indigenous peoples will be respected and all forms of violence against Aboriginal women and girls will be ended ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Undertake measures to put an end to ethnic and racial profiling and all forms of racial discrimination", - "values": [ - "4 - General action" - ] - }, - { - "text": "Ratify the Optional Protocol to the Convention on the Rights of the Child on a communications procedure, which was signed in 2013", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Continue implementing actions to ratify the Optional Protocol to the Convention on the Rights of the Child on the sale of children, child prostitution and child pornography ", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Remove all restrictions, in law and in practice, which prevent the full enjoyment of the right to including associating for the purposes of contesting political power, as guaranteed under the International Covenant on Civil and Political Rights, including by revoking the Royal Decree of 1973 ", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Ensure that the trial regarding National Socialist Underground network are easily observed and that all allegations about National Socialist Underground network are investigated ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Investigate thoroughly and sanction accordingly violence against LGBTs, including gay rights activists ", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Develop public awareness programmes to address stigmatization of lesbian, gay, bisexual, transgender and intersex persons", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Continue increasing efforts countering the trafficking of persons including issuing an invitation to the Special Rapporteur on trafficking in persons, in particular women and children", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Implement the National Action Plan for Gender Equality, in particular on the enhancement and awareness of the gender equality in different fields such as education, public life, employment and health", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Continue to implement all measures aimed at promoting gender equality, notably by combating all discrimination against women and stereotypes ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Take measures to re-establish an independent judiciary including by establishing strict rules as well as through a clear mechanism of appointment and dismissal of judges.", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Establish and respect a moratorium on the application of the death penalty in Somalia, in accordance with its 2011 universal periodic review commitment", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Study the possibility of acceding to the International Convention on the Protection of the Rights of All Migrant Workers and Members of Their Families (ICRMW)", - "values": [ - "3 - Considering action" - ] - }, - { - "text": "Repeal all legislation providing for corporal punishment as a method of education in schools and sign the Optional Protocols to the Convention on the Rights of the Child", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "The Government of Eritrea, which is currently operating on pre-Constitutional transitional powers, should heed the call of the Special Rapporteur on the situation of human rights in Eritrea to fully implement the Constitution without delay, and subsequently hold elections, thereby ensuring further governance in accordance with international principles to the rule of law ", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Step up efforts to halt torture and ill-treatment, eradicate impunity for such acts and ensure that alleged perpetrators are brought to justice", - "values": [ - "4 - General action" - ] - }, - { - "text": "Continue its efforts to adopt good governance and strengthen the role of the National Commission for Human Rights ", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Continue to give consideration to the views of treaty bodies and other mechanisms", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Guarantee unrestricted and unconditional access for medical personnel and vehicles and humanitarian assistance, particularly in the city of Aleppo, which has been severely affected in recent weeks", - "values": [ - "4 - General action" - ] - }, - { - "text": "Widening the social welfare domain and make it available to its beneficiaries", - "values": [ - "4 - General action" - ] - }, - { - "text": "Continue in its efforts to promote the rights of the child and consider setting up a centralized civil registration system", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Repeal the provision of the Civil Code that designates the husband as the administrator of marital property", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Taking urgent measures to strengthen the judicial institutions by allocating more funds to judicial districts, to expand the use of mobile courts and provide adequate forensic equipment ", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Take measures to actively track the implementation and results of the Domestic Violence Act and the National Gender-based Violence Action Plan and to publicly report on these efforts to reduce violence, especially against women and girls", - "values": [ - "4 - General action" - ] - }, - { - "text": "To monitor Government action in establishing a human rights institution, advise on legislation and the application of international human rights instruments, facilitate interaction with international and regional organizations, promote human rights education and file legal complaints", - "values": [ - "4 - General action" - ] - }, - { - "text": "Continue efforts to close gaps that still exist in the working conditions of non-regular as opposed to regular workers", - "values": [ - "4 - General action" - ] - }, - { - "text": "Reinforce mechanisms for monitoring violence and sexual abuse within the family ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Take effective measures to accelerate the consolidation of property rights ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Ensure that all members of the police and prison officers that commit human rights violations and abuses, such as torture and ill-treatment, are held accountable ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Take further concrete and effective steps towards social inclusion for Roma people ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Continue to further strengthen efforts for the empowerment of women ", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Introduce further measures to sustain and reinforce progress made in poverty reduction", - "values": [ - "4 - General action" - ] - }, - { - "text": "Consider the possibility to seek further international cooperation in order to find sustainable solutions in the area of refugees law", - "values": [ - "3 - Considering action" - ] - }, - { - "text": "Continue its cooperation with the United Nations and international organizations and overcome the remaining constraints and challenges", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Consider signing and ratifying the Second Optional Protocol to ICCPR \n\n", - "values": [ - "3 - Considering action" - ] - }, - { - "text": "Intensify its actions for a greater enjoyment by the people of fundamental human rights", - "values": [ - "4 - General action" - ] - }, - { - "text": "Intensify efforts to safeguard the rights of women and eliminate discriminatory practices against them ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Continue implementing high-quality intercultural education", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Establish a legal framework to fight against forced labour and to ban child labour", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Speed up the process to develop its National Action Plan against Racism, Racial Discrimination, Xenophobia and Related Intolerance ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Take all measures necessary to ensure that all acts of violence against journalists be investigated and that appropriate punishments are meted out.", - "values": [ - "4 - General action" - ] - }, - { - "text": "Continue to improve the conditions of foreign workers ", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Combat xenophobia, racism, anti-Semitism, and religious intolerance and to pursue and prosecute the perpetrators of such offences.", - "values": [ - "4 - General action" - ] - }, - { - "text": "Adopt a law on all forms of violence and discrimination against women", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Continue with its plans to provide health care, especially for the elimination of polio, and reduce the death rate", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Reverse the approval of the Prime Minister's Decree on International Non-Governmental Organizations and implement the mechanisms necessary to accelerate the process of legalizing NGOs", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Review domestic legislation to criminalize domestic violence.", - "values": [ - "3 - Considering action" - ] - }, - { - "text": "Provide access to land and support for the residents of the Reserve, as specified in the United Nations Declaration on the Rights of Indigenous Peoples, and work with the land boards of the various districts to ensure equity in land allocation among all applicants for residential, arable and grazing land, water sources and business sites", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Stop the aerial bombardments and the indiscriminate attacks against civilians", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Decriminalize same-sex sexual conduct between consenting adults in the Offenses Against the Person Act and enact legislation to prevent discrimination against lesbian, gay, bisexual, transgender and intersex persons", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Strengthen implementation of legislation and policies aimed at ending harmful traditional practices, in particular child, early and forced marriage", - "values": [ - "4 - General action" - ] - }, - { - "text": "Oversee the citizenship policy regarding the granting of citizenship to stateless persons in order to ensure that it corresponds with the Convention on the Reduction of Statelessness ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Continue to work with bilateral, regional and international partners to address trafficking in persons", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Build tolerance and intercultural understanding, and develop a national action plan on racism", - "values": [ - "4 - General action" - ] - }, - { - "text": "Explore the possibility of utilizing human rights training and programmes, and other similar efforts to further mainstream the promotion of the rights of women and children", - "values": [ - "3 - Considering action" - ] - }, - { - "text": "Take further measures for the promotion and protection of human rights, including those of migrants ", - "values": [ - "4 - General action" - ] - }, - { - "text": "The government and all other parties concerned should ensure the immediate release of all child soldiers and take all measures to prevent any future recruitment", - "values": [ - "4 - General action" - ] - }, - { - "text": "Take the necessary measures to adapt its asylum system to the new requirements of international protection", - "values": [ - "4 - General action" - ] - }, - { - "text": "Recommended that international treaties adhered to by Zambia enjoy full implementation and that their incorporation in domestic law be accelerated.", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Comply with its commitments to guarantee and strengthen the independence of the judiciary", - "values": [ - "4 - General action" - ] - }, - { - "text": "Implement the Family Peace Act (2014) as a matter of priority to address domestic violence", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Focus the National Human Rights Plan (2012-2016) on the most vulnerable sectors of the society, including women, children, persons with disabilities and elderly persons", - "values": [ - "4 - General action" - ] - }, - { - "text": "Continue pursuing appropriate, efficient policies in combating acts of extremism and xenophobia such as the Strategy for Combating Extremism or the Crime and Extremism Prevention Programme "Dawn"", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Take measures to protect journalists and human rights defenders from acts of violence, including by investigating attacks and assassinations and strengthening accountability mechanisms", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Carry out independent investigations into serious abuses against participants in peaceful demonstrations, and hold the perpetrators accountable for their crimes", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Continue to make progress on the participation and consultation of indigenous peoples, including on mining", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Proceed towards finalizing the ratification process of the Convention on the Rights of Persons with Disabilities ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Further engage constructively with civil society in its human rights activities in the country ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Allocate sufficient funding to the poverty eradication strategy of the Republic of Korea", - "values": [ - "4 - General action" - ] - }, - { - "text": "Recommended that civil society organizations, including those from multi-ethnic communities and conflict affected areas in Sri Lanka's north and east, be involved in the follow-up to the UPR process.", - "values": [ - "4 - General action" - ] - }, - { - "text": "Consider developing a national policy of protection of human rights defenders, which could consist of a national system of protection of witnesses and human rights defenders.", - "values": [ - "3 - Considering action" - ] - }, - { - "text": "Ensure that the independence of the judiciary is fully guaranteed in its legal framework ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Guarantee respect for international humanitarian law and human rights and the protection of the civilian population in the context of military actions", - "values": [ - "4 - General action" - ] - }, - { - "text": "Continue to adopt measures and programmes to eliminate discrimination against women, especially in the workplace ", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Take measures aiming at further ensuring for the administrative detainees, duly supported by legal assistance, their right of taking proceedings before a court to challenge the lawfulness of their detention", - "values": [ - "4 - General action" - ] - }, - { - "text": "Consider the possibility of ratifying ICRMW ", - "values": [ - "3 - Considering action" - ] - }, - { - "text": "Continue to promote dialogue with all States, on the basis of mutual respect, sovereign equality, self-determination and the right to choose their own political, economic and social system ", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "In terms of good practices, Guatemala has continued its open-door policy towards international human rights monitoring mechanisms and reaffirms its commitment to following up and implementing the recommendations it has received in the field of human rights", - "values": [ - "4 - General action" - ] - }, - { - "text": "Consider the possibility of ratifying the ICRMW", - "values": [ - "3 - Considering action" - ] - }, - { - "text": "Continue its efforts to ensure access to water by improving water services", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Take steps to ensure non-discrimination based on sexual orientation and gender identity including in the proposed civil and criminal laws ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Expedite its efforts to fully abolish the death penalty", - "values": [ - "4 - General action" - ] - }, - { - "text": "Continue to promote measures to find a positive solution to the Maori population's land claims and promote public policies to reduce the social and economic gap between the Maori people and the rest of the population of New Zealand ", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Adopt specific criminal legislation for the protection of women's rights ", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Take all the necessary steps to resolve the divergences in the interpretation of the legal text on the Supreme Judicial Council and ensure that such interpretation is in accordance with the provisions of the Constitution", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Ratify the Optional Protocol to the International Covenant on Economic, Social and Cultural Rights and the Optional Protocol to the Convention on the Rights of the Child on a communications procedure ", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Finalize the process of accession to the Convention on the Rights of Persons with Disabilities at its earliest", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Respond to all the cases submitted by the Working Group on Enforced or Involuntary Disappearances, sign and ratify CED, and fully recognize the competency of the Committee ", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Continue ensuring that unaccompanied migrant children entering South Africa are kept in child and youth care centres and treated as children in need of care and protection", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Ratify the International Convention for the Protection of All Persons from Enforced Disappearance as early as possible", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Improve the birth registration system, as previously recommended", - "values": [ - "4 - General action" - ] - }, - { - "text": "Ensure that freedom of religion and of religious practice continue to be guaranteed to all citizens, as the country's Constitution provides ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Continue the implementation of policies to encourage the sustainable economic empowerment of women, in particular in rural areas", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Adhere and adapt its national legislation to the Arms Trade Treaty", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Within the context of item e) of Human Rights Council resolution 9-12, ensure that the system of priorities in the employment sector does not imply discrimination on the grounds of race, color, nationality, religion, language or ethnic or national origin.", - "values": [ - "4 - General action" - ] - }, - { - "text": "Ensure that all persons with disabilities enjoy protection against discrimination, and have access to equal opportunities irrespective of their level of disability", - "values": [ - "4 - General action" - ] - }, - { - "text": "Continue the efforts to ensure access to health care to all people throughout the territory of the country without any discrimination based on gender or social origin ", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Commit itself to enacting legislation referred to in its national report (A-HRC-WG.6-5 -CHL-1) to strengthen human rights protection in the country, including the reform of the system of elections, the establishment of a national human rights institution (NHRI) and various pieces of legislation on gender equality .", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Continue efforts to address gender-related killing of women and girls", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Reinforce efforts to eliminate trafficking and abuse of children including the conduct of efficient awareness-raising campaigns", - "values": [ - "4 - General action" - ] - }, - { - "text": "Finalize and enact the new media law with the meaningful involvement of all stakeholders, providing for a truly independent regulatory body", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Fully implement the European Commission's 2013 recommendations related to the reform of public administration and the efficiency of the judicial system ", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Redouble efforts to address the challenges arising in the prevention of and response to gender-based violence, including by enhancing the function of the Isange One-Stop Centres", - "values": [ - "4 - General action" - ] - }, - { - "text": "Take practical steps towards the abolishment of the death penalty, and as a first step officially introduce a moratorium on the implementation of death sentences", - "values": [ - "4 - General action" - ] - }, - { - "text": "Further involve civil society actors in awareness-raising campaigns with respect to infectious diseases, in particular HIV", - "values": [ - "4 - General action" - ] - }, - { - "text": "Adopt as a matter of priority, legislative and other measures to guarantee gender equality and strengthen efforts to eradicate customs and traditions that discriminate against women, in particular cases or early or forced marriage", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Seek to implement the national socio-economic programme and pursue efforts to combat poverty", - "values": [ - "4 - General action" - ] - }, - { - "text": "Ensure the independence of the judiciary, without any political intervention ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Ratify the Rome Statute of the International Criminal Court, including accession to the Agreement on Privileges and Immunities", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Adopt a comprehensive law on violence against women ", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Take further measures to ensure that the military justice system does not claim jurisdiction in human rights cases involving members of security forces ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Ratify the Convention on the Rights of Persons with Disabilities and prioritize measures to further strengthen the existing framework, including to increase the meaningful participation of the persons with disabilities in policy making", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Take further concrete measures to ensure equal rights of women and men with regard to personal status.", - "values": [ - "4 - General action" - ] - }, - { - "text": "Commit as an occupying power to allowing the access for the Special Rapporteur on the situation of human rights in the Palestinian territories occupied since 1967 ", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Continue concerted efforts for the preservation of the cultural and linguistic identity of Indigenous peoples", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Continue its cooperation with the United Nations and other international organizations", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Ensure that the provisions contained in the international human rights instruments which Botswana has ratified are transposed into national law ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Guarantee the cooperation and responsiveness of financial institutions with regard to requests for the recovery of funds of illicit origin ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Expand the successful pretrial diversion programme for juvenile offenders from the existing five provinces to 10", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Revoke article 567 from the Penal Code and remove any discrimination on the grounds of sexual orientation from all other laws and policies", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Strengthen the independence of the judiciary, notably by ensuring that magistrates are not dismissed arbitrarily from their functions", - "values": [ - "4 - General action" - ] - }, - { - "text": "Eliminate the provisions that criminalize same-sex sexual relations between adults", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Ratify the Optional Protocol to the Convention on the Elimination of All Forms of Discrimination against Women and the optional protocol to the Convention on the Rights of the Child relating to individual complaints ", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Consider repealing the provision that allows children to work in family-based occupations", - "values": [ - "3 - Considering action" - ] - }, - { - "text": "Pursue national efforts to combat HIV and provide health services for all", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Allow independent investigations in all alleged cases of torture and impose on perpetrators of acts of torture appropriate punishments which reflect the international obligations of Kazakhstan", - "values": [ - "4 - General action" - ] - }, - { - "text": "Take further measures to implement the 2010 recommendations by the Committee on the Rights of the Child, especially related to the domestication of the CRC, the right of the child to education, nutrition and health, and protecting girls from early marriage", - "values": [ - "4 - General action" - ] - }, - { - "text": "Intensify awareness-raising campaigns and education programmes on human rights in order to prevent ill-treatment of boys and girls", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Implement the constitutional court ruling on a "right of abode" and prevent deportation of migrant children separating them from their families ", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Strengthen administrative measures to ensure the participation of a large number of women in political life", - "values": [ - "4 - General action" - ] - }, - { - "text": "Establish an effective and inclusive process to follow up on the periodic review recommendations ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Have competent bodies investigate all pending complaints about torture and enforced or involuntary disappearance and bring the perpetrators to trial ", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Refrain from arbitrary arrest and detention, and enforce existing Criminal Procedure Code provisions to limit pre-trial detention, in compliance with ICCPR obligations", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Abolish child early forced marriage and the temporary commercial marriage of girls and ensure eradication of female genital mutilation", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Continue to conduct broad based consultations in the process of preparing human rights reports", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Ratify the Convention on the Rights of Persons with Disabilities, and work to implement the Pacific Regional Strategy on Disability ", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "The Maldives takes note of this [100.56] recommendation. The Maldives is committed to maintaining a moratorium on the death penalty as its recent vote at the UN General Assembly demonstrates.", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Ensure that the constitutional framework is in compliance with its international obligations, in particular under the International Covenant on Civil and Political Rights ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Consider the possibility of expressing its consent to ratify he Convention against Torture and Other Cruel, Inhuman or Degrading Treatment or Punishment", - "values": [ - "3 - Considering action" - ] - }, - { - "text": "Extend the free primary education policy throughout the country ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Take measures to combat violence and discrimination against indigenous peoples", - "values": [ - "4 - General action" - ] - }, - { - "text": "Amend the Equal Opportunity Act to include sexual orientation and gender identity as prohibited grounds for discrimination, as part of a proactive strategy to promote respect for the dignity and rights of all individuals", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Adopt a code of conduct based on international human rights standards in order to define specific conditions for the use of force by law enforcement officials during protests and riots", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Review the legislation on defamation as a criminal offence so that these facts are examined in accordance with the Civil Code ", - "values": [ - "3 - Considering action" - ] - }, - { - "text": "Ensure that the National Human Rights Institution and Ombudsman's Office is sufficiently resourced to effectively discharge its duties and accords with the Paris Principles ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Implement the Basic Principles on the Independence of the Judiciary and the Role of Lawyers", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Continue to implement the strategic plan 2010-2014 to increase health coverage for the most vulnerable groups of the population ", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Increase efforts to apply the existing legislation to prevent separation of boys and girls from their family environment due to the economic conditions of the family, through training programmes, information and awareness raising campaigns", - "values": [ - "4 - General action" - ] - }, - { - "text": "Put an end to its actions against the realization of the rights of peoples to a healthy environment, peace, development and self-determination ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Take all necessary measures to prohibit hate speech against asylum seekers, refugees and foreigners", - "values": [ - "4 - General action" - ] - }, - { - "text": "Continue efforts to reform in the short term Law 84-2002 in order to establish a procedure for setting up NGOs, which is nimble, fast and not subject to administrative discretion", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Enact legislation to explicitly prohibit corporal punishment of children in all settings, including the home and in schools", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Continue its national efforts, with the support and assistance of the international community, in the promotion and protection of human rights particularly in the realization of economic, social and cultural rights of the people of Guinea", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Exchange information and opinions with States to achieve the best practices on human rights issues", - "values": [ - "1 - Minimal action" - ] - }, - { - "text": "Step up its efforts in empowering grassroots communities and increase rural infrastructure investments towards improving productivity and poverty reduction", - "values": [ - "4 - General action" - ] - }, - { - "text": "Consider ratifying the International Covenant on Economic, Social and Cultural Rights", - "values": [ - "3 - Considering action" - ] - }, - { - "text": "Circulate and implement the United Nations Rules for the Treatment of Women Prisoners and Non-custodial Measures for Women Offenders (Bangkok Rules), which will further enhance administration of justice ", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Conduct impartial and transparent investigations of cases where freedom of expression has been restricted", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Continue strengthening social plans and programmes under implementation to combat poverty, exclusion and social inequality, with an emphasis on employment, food and health for the benefit of the population, with particular attention to those most vulnerable sectors, and for which it is extremely important to have the support, assistance and cooperation of the community of nations ", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Set up a national strategy to combat all forms of slavery", - "values": [ - "4 - General action" - ] - }, - { - "text": "Adopt measures of a political and legislative nature, including positive measures in favour of vulnerable groups in order to protect them from discrimination based on belief and cultural stereotypes", - "values": [ - "4 - General action" - ] - }, - { - "text": "Ratify the Rome Statute of the International Criminal Court, including its Agreement on Privileges and Immunities", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Begin a national consultation process with governmental and nongovernmental actors on the most appropriate national preventive mechanism ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Reduce the length of the initial pretrial detention phase", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Continue to fight against female genital mutilation", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Ratify the Convention against Torture and abolish the death penalty ", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Enhance engagement with regional and international partners to gather support, as it may deem necessary, for building structural and operational capacities and augmenting existing human rights mechanisms", - "values": [ - "4 - General action" - ] - }, - { - "text": "Take the necessary measures to ensure the primacy of civil and political authority ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Improve the infrastructure of the health-care system and strengthen women's access to health-care facilities", - "values": [ - "4 - General action" - ] - }, - { - "text": "Extend a standing invitation to the UN human rights Special Procedures so that they can visit the country and assist the country within its human rights reforms ", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Ensure that all members of society, including members of sexual minority groups, have access to equal rights and are afforded the same level of protection, through adequate legislation and awareness-raising and training programmes, especially with regard to integration", - "values": [ - "4 - General action" - ] - }, - { - "text": "Implement the recommendations of the Committee on the Elimination of Discrimination against Women, establishing a monitoring system and implementing legislation to combat domestic violence and other forms of violence against women", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Continue its activities in bridging the gap in economic and social development between rural and urban areas and among geographical regions, as well as its efforts to eradicate poverty through the implementation of alleviation projects and the employment strategy", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Apply the 2008-2013 National Strategy on children right's protection and promotion which should ensure that special attention will be paid to children belonging to the most vulnerable groups, such as children living in poverty, Roma children, children with disabilities, children with HIV/AIDS and streets children ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Take all necessary measures to put an end to extrajudicial killings, investigate all reported cases, and ensure that all suspected perpetrators are brought to justice", - "values": [ - "4 - General action" - ] - }, - { - "text": "Consider realizing as soon as possible its plans to establish four more women and child\nprotection units in the other major towns ", - "values": [ - "3 - Considering action" - ] - }, - { - "text": "Create a unified data register on violence against women, as well as norms to address the murder of women, and to promulgate Framework Law 810 on Sexual and Reproductive Rights in the country", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Accede to the Rome Statute of the International Criminal Court, so that the atrocities committed in the Syrian Arab Republic could be the subject of a rigorous and impartial exam by an independent court", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Finalize the procedure of developing and adopting the Children's Bill", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Protect the Roma and the Sinti as national minorities, and to ensure that they are not the object of discrimination, including through the media", - "values": [ - "4 - General action" - ] - }, - { - "text": "Adopt and implement a strict legislative framework on evictions and resettlement which ensures that evictions and relocations are legal, negotiated and fairly compensated ", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Appeal for international cooperation and partnership with a view to continuing to develop concrete actions in the field of promotion and protection of human rights ", - "values": [ - "1 - Minimal action" - ] - }, - { - "text": "Raise the minimum age of criminal responsibility according to the general comment No. 10 of the Committee on the Rights of the Child", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Intensify measures, including human rights training, to raise awareness of gender equality", - "values": [ - "4 - General action" - ] - }, - { - "text": "Revise the Islamic Penal Code to ensure consistency with its international obligations, including article 6 of ICCPR, so that the death penalty is reserved for most serious crimes, never imposed for crimes committed by persons below 18 years of age and never imposed arbitrarily", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Take appropriate measures to improve the relations between law enforcement officials and the Roma to prevent the risk of excessive violence by law enforcement officials, notably through the establishment of an independent institution responsible for supervising the acts of the police ", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Introduce more rigorous anti-trafficking laws to better protect women and girls", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Continue its efforts to eradicate traditional harmful practices, such as child, forced and early marriage and other forms of gender violence, including female genital mutilation and those based on superstition, such as fear of \u201cwitchcraft\u201c", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Develop and implement independent and credible measures to ensure full respect for human rights in Western Sahara, including the freedom of expression and assembly", - "values": [ - "4 - General action" - ] - }, - { - "text": "Increase the number of women in management posts and in decision-making processes and envisage establishing full legislative provisions to promote and protect the rights of women \n\n", - "values": [ - "4 - General action" - ] - }, - { - "text": "Consider the possibility of the abolition of the death penalty by the law", - "values": [ - "3 - Considering action" - ] - }, - { - "text": "Continue to build on the successful programs for the creation of jobs and assistance to those most vulnerable, in the fight against poverty and social inequalities", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Consider the possibility of expressing its consent to be bound by the International Convention for the Protection of All Persons from Enforced Disappearance", - "values": [ - "3 - Considering action" - ] - }, - { - "text": "Continue to take measures to increase access for its population to health and education services", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Establish an independent National Human Rights Institution in full compliance with the Paris Principles", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Introduce an alternative civil legal framework for marriage and divorce as an equally accessible option for everyone", - "values": [ - "3 - Considering action" - ] - }, - { - "text": "Continue its efforts in the fight against maternal mortality, to facilitate women's access to health, and for the enrollment and retention of girls at school and in vocational training centers", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Address discriminatory practices towards ethnic and religious minorities, including lifting restrictions on their participation in government and society ", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Speed up the process of ratification of the Convention against Torture and the Optional Protocol to the Convention on the Rights of the Child on the involvement of children in armed conflict", - "values": [ - "4 - General action" - ] - }, - { - "text": "Develop targeted strategies, policies and programmes to support women in claiming their rights, in accordance with its obligations under CEDAW", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Adopt a de jure moratorium on the use of the death penalty with a view to its abolition", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Improve the quality and coverage of its early childhood care and education for indigenous children and children living in remote areas and ensure adequate resources for implementing bilingual models of education", - "values": [ - "4 - General action" - ] - }, - { - "text": "Intensify its efforts to further combat all discrimination on the ground of ethnic origin ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Organize awareness-raising campaigns at the national level, and especially in rural areas, aimed at preventing violence against children at home and in all institutions in which children are present ", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Allocate more resources to the programs that fight unemployment ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Introduce a moratorium and seek alternatives to the death penalty", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Sign the CRPD treaty ", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Complete the review of the Ohrid Framework Agreement and implement its recommendations by mid-2014", - "values": [ - "3 - Considering action" - ] - }, - { - "text": "Continue the implementation of initiatives to strengthen national unity and promote inter-ethnic tolerance and respect", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Take measures to combat discrimination against women in recruitment, employment, career advancement and pay ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Continue giving priorities to human rights education and awareness- raising in the Government's plans, strategies and programmes, and to enhance the participation of civil society and private sector, as appropriate, as a complementary driving force in this regard", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Adopt more effective policies and programmes to combat unemployment, particularly among women and youth.", - "values": [ - "4 - General action" - ] - }, - { - "text": "Share with the members of the international community its best practices regarding human rights, particularly on the new policy on domestic violence and persons with disabilities.", - "values": [ - "1 - Minimal action" - ] - }, - { - "text": "Cooperate with the International Criminal Court's investigation and take measures to ensure that those responsible for post-election violence are held accountable ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Establish a moratorium on the death penalty as a first step in acceding to the Second Optional Protocol to ICCPR", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Bahrain is currently examining the need for comprehensive national action plan on human rights", - "values": [ - "3 - Considering action" - ] - }, - { - "text": "Adopt prevention measures against sexual abuses", - "values": [ - "4 - General action" - ] - }, - { - "text": "Maintain its commitment to dedicating 0.7 per cent of gross national income to overseas development assistance in order to support economic and social rights in poor countries ", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Dismantle the "inminban" neighbourhood watches, and citizen registration and denunciation systems", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "The MSAR [Macao Special Administrative Region] Government shall strive to maintain a proper balance between the enjoyment of civil and political rights and social, economic and cultural rights, particular consideration being given to the rights of vulnerable groups, such as the disabled, the elderly, the children, the women and persons under custody.", - "values": [ - "3 - Considering action" - ] - }, - { - "text": "Ensure that women are given the medical and professional services necessary to exercise their legal right to terminate a pregnancy, and ascertain that women have the right to decide over their own bodies", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Invite the Special Rapporteur on the situation of human rights in Belarus to visit the country to demonstrate the Government's commitment to respecting human rights", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Intensify and carry forward its efforts for combating illegal migration and effectively addressing its dangerous ramification", - "values": [ - "4 - General action" - ] - }, - { - "text": "Continue efforts aimed at fostering inclusive social dialogue with all ethnic groups in Brazilian society", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Implement policies and actions aimed at the effective integration of the Roma community which would include the employment, education, security, social and health sectors, emphasis on the promotion of the Roma language, and the regularization of their identity documents", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Continue efforts for the creation of a national human rights institution, in accordance with international standards, which contributes to the preparation of an action plan on social welfare, ensuring the inclusion and equal opportunities for all the population, with special attention to minorities", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Ratify the Optional Protocol to the Convention on the Rights of the Child on the involvement of children in armed conflict", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Develop a comprehensive policy aimed at strengthening the judicial system, and rule of law", - "values": [ - "4 - General action" - ] - }, - { - "text": "Ratify and implement all major international human rights treaties", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Promote forms of discrimination and non-violent discipline as an alternative to corporal punishment, taking into consideration general comment No. 8 (2006) of the Committee on the Rights of the Child on the protection of children from corporal punishment and other cruel or degrading forms of punishment", - "values": [ - "4 - General action" - ] - }, - { - "text": "Adopt Legislation to implement the Rome Statute ", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Call for technical and financial assistance from the international community, in particular the United Nations programmes and institutions, to help it overcome the economic challenges and those posed by its vulnerability to natural disasters ", - "values": [ - "1 - Minimal action" - ] - }, - { - "text": "Adopt laws guaranteeing compulsory birth registration", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Implement measures to curb abuses against refugees and migrants, including minors, regardless of their immigration status, perpetrated by police authorities, and punish adequately those responsible, so to avoid impunity ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Speed up preparation of the strategy on the prevention and suppression of violence against women and violence in the family", - "values": [ - "4 - General action" - ] - }, - { - "text": "Consider positively the establishment of a moratorium to the death penalty with a view to the abolishment of the death penalty", - "values": [ - "3 - Considering action" - ] - }, - { - "text": "Introduce changes to laws on drugs, given the increase in drug use in the country ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Continue its effective policy to ensure the rights of persons with disabilities through instruments that are in line with international treaties, as well as the development and implementation of programmes at the national level ", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Ensure, in law and in practice, that all detainees are afforded fundamental legal safeguards from the outset", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Ensure that, in the context of the new legislation adopted in 2011, following the universal periodic review 2011 recommendations, the self-governments truly represents the persons of national minorities on whose behalf they act", - "values": [ - "4 - General action" - ] - }, - { - "text": "Establish a moratorium on the death penalty with a view to fully abolishing it both in practice and in law, for all cases and under all circumstances", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Consider, as a first step, to amend its legislation on the death penalty to restrict its scope and adjust it to international standards.", - "values": [ - "3 - Considering action" - ] - }, - { - "text": "Proceed swiftly with the ratification of OP-CAT ", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Ensure continuous access to health care, notably for vulnerable persons", - "values": [ - "4 - General action" - ] - }, - { - "text": "Take further steps to ratify the Optional Protocol to the Convention against Torture", - "values": [ - "4 - General action" - ] - }, - { - "text": "Continue to cooperate with the UN and other international organizations to develop its legal and institutional framework with respect to promoting and protecting human rights in Venezuela ", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Make accessible to the general public and teach human rights in school and university establishments, as well as in the professional sector", - "values": [ - "4 - General action" - ] - }, - { - "text": "Continue efforts to promote and protect human rights in line with international standards ", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Implement effective criminal justice mechanisms to combat impunity ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Establish a moratorium in the use of the death penalty as a preliminary step to its definitive abolition ", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Consider incorporating the right to health and the right to housing ", - "values": [ - "3 - Considering action" - ] - }, - { - "text": "Continue the work on the implementation of the series of international human rights conventions, including those in the field of labour protection", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Continue its efforts to reduce and eradicate gender-based violence, ensuring due diligence in the pursuit and prosecution of acts of this nature and providing relevant training to the competent authorities on the protection of, and prevention of violence against, women and girls", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Consolidate positive results in combating racial discrimination, trafficking in persons as well as promoting gender equality ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Continue its efforts to eliminate discrimination against women, especially those living in the rural areas ", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Review laws criminalizing defamation of public figures, to respect and guarantee freedom of expression", - "values": [ - "3 - Considering action" - ] - }, - { - "text": "Evaluate the establishment of mechanisms that allow indigenous peoples to be guaranteed the right to their ancestral lands", - "values": [ - "3 - Considering action" - ] - }, - { - "text": "The head of delegation concluded by expressing the commitment of Nicaragua to working with United Nations bodies to follow up on the new recommendations it would receive during the second review. ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Take measures to address the problem of discrimination and racially motivated acts ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Analyse the possibility of ratifying the 1990 International Convention on the Protection of the Rights of All Migrant Workers and Members of Their Families ", - "values": [ - "3 - Considering action" - ] - }, - { - "text": "Protect gender identity and expression under anti-discriminatory laws and policies ", - "values": [ - "4 - General action" - ] - }, - { - "text": "That further steps are taken in order to review existing policies and practices that lead to segregation of Roma children in schools ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Continue its efforts aimed at enacting a new labour law for the private sector to ensure balance between protecting the rights of workers and preserving the interests of employers ", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Strengthen institutional integrity and accountability by fostering an independent judiciary and democratic electoral processes by working closely with the Organization for Security and Co-operation in Europe Office for Democratic Institutions and Human Rights and local stakeholders", - "values": [ - "4 - General action" - ] - }, - { - "text": "Strengthen control mechanisms to prevent and combat the economic exploitation of children", - "values": [ - "4 - General action" - ] - }, - { - "text": "Review compliance of the Criminal Code, which now defines domestic violence only as a bodily injury, with the Convention on the Elimination of All Forms of Discrimination against Women and as elaborated on in general recommendation No. 19 of the Committee on the Elimination of Discrimination against Women", - "values": [ - "3 - Considering action" - ] - }, - { - "text": "Ensure that freedom of assemblies are guaranteed and lift all restrictions on peaceful protests", - "values": [ - "4 - General action" - ] - }, - { - "text": "Extend a standing invitation to the Special Procedures mandate holders of the Human Rights Council ", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Consider implementing the recommendations of the National Human Rights Commission (NHRC) contained in paragraph 37 of the national report", - "values": [ - "3 - Considering action" - ] - }, - { - "text": "Intensify efforts to combat trafficking in persons while ensuring that appropriate access to remedy is provided to trafficking victims", - "values": [ - "4 - General action" - ] - }, - { - "text": "Adopt measures to ensure the payment of compensations to victims of forced sterilization", - "values": [ - "4 - General action" - ] - }, - { - "text": "Continue to improve its national laws and regulations for the protection and promotion of human rights", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Ensure continuous progress in its efforts to combat trafficking, including through the full implementation of the trafficking in persons act as well as awareness-raising campaigns ", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Pursue its efforts to counter discrimination in whatever form, in particular towards the most vulnerable sectors of the population in the follow-up to the Durban Conference and the recommendations of the Committee on the Elimination of Racial Discrimination.", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "In regard to the increase in crime rates ensure the adequate functioning of the judicial system in order to combat all forms of impunity and abuse of authority ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Further strengthen efforts to implement the principles contained in the Law on Anti-Discrimination, including by combatting discrimination against members of the LGBT community", - "values": [ - "4 - General action" - ] - }, - { - "text": "Call on the international community to provide technical assistance and financial support in line with the needs of Montenegro to implement the strategy conducive to a lasting solution to refugees and internally displaced persons.", - "values": [ - "1 - Minimal action" - ] - }, - { - "text": "Undertake a study on child labour at the national level with the support of the International Labour Organization and other partners to look at the issue of child labour, and enact as quickly as possible legislation focused on the prevention of child labour and the removal of its victims from the workplace, as well as their rehabilitation, social reintegration and education ", - "values": [ - "3 - Considering action" - ] - }, - { - "text": "Step up efforts to enact legislation to implement the Convention on the Rights of the Child", - "values": [ - "4 - General action" - ] - }, - { - "text": "Strive to achieve the right to education of all boys and girls with strict respect to the principle of non-discrimination and take concrete measures to fight the high dropout rates in schools and preschools among minority and vulnerable groups", - "values": [ - "4 - General action" - ] - }, - { - "text": "Accede to Protocol No. 12 to the European Convention on Human Rights and ensure implementation of concrete measures against all forms of discrimination", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Intensify its efforts to combat racial discrimination, xenophobia and intolerance, and to encourage high level politicians to take a clear stand against these scourges ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Effectively respect for the rights of all migrant workers and their family members", - "values": [ - "4 - General action" - ] - }, - { - "text": "Take effective measures to raise women\u2019s status, combat violence against women and eliminate discrimination against women", - "values": [ - "4 - General action" - ] - }, - { - "text": "Limit, as long as the death penalty persists in the country, its application to the most serious crimes, leaving drug trade while recognizing its seriousness, outside this category", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Put an end to the practice of torture, inhumane and degrading treatment in detention facilities and sexual violence, especially against women and children", - "values": [ - "4 - General action" - ] - }, - { - "text": "Provide a clear definition of child labour and extend coverage of the Labour Code to include the informal sector, where children are mostly employed", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Invite the Special Rapporteur on the independence of judges and lawyers ", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Develop a comprehensive strategy to eliminate discrimination against women and girls in the area of education, to prevent the increase of illiteracy among females", - "values": [ - "4 - General action" - ] - }, - { - "text": "Continue to implement measures to enhance national capacities for the promotion and protection of human rights", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "That the protections guaranteed by the Constitution be implemented, that a safe and enabling environment for civil society be created in law and practice", - "values": [ - "4 - General action" - ] - }, - { - "text": "Further efforts to engage all appropriate social and political organizations in the promotion and protection of human rights. ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Take steps to implement an official land titling programme with the meaningful participation of civil society to prioritize the settlement of land disputes with full respect for the rule of law ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Establish an independent national human rights institution", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Fully respect the right to freedom of peaceful assembly, effectively investigate all allegations of excessive and disproportionate use of force by law enforcement personnel and ensure that all perpetrators are held accountable for their actions", - "values": [ - "4 - General action" - ] - }, - { - "text": "Consider ratifying human rights conventions to which it is not yet party", - "values": [ - "3 - Considering action" - ] - }, - { - "text": "Amend chapter XV of the Penal Code to ensure the protection of the minorities of all religions and beliefs", - "values": [ - "4 - General action" - ] - }, - { - "text": "Consider acceding to the remaining core international human rights instruments, including the International Covenant on Civil and Political Rights and the International Covenant on Economic, Social and Cultural Rights", - "values": [ - "3 - Considering action" - ] - }, - { - "text": "Amend the Law on discriminatory acts to recognize sexual orientation and gender identity as prohibited grounds for discrimination before its next review under the universal periodic review", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Promote affirmative action for the transgender, transvestite and transsexual population", - "values": [ - "4 - General action" - ] - }, - { - "text": "Ensure adequate resources for poverty alleviation programmes, in line with the commitment to ensure inclusive growth", - "values": [ - "4 - General action" - ] - }, - { - "text": "Promptly bring its domestic legislation and Constitution in line with international standards and remove restrictions on fundamental freedoms, including freedom of expression, freedom of peaceful assembly and association, freedom of the press and religious freedom", - "values": [ - "4 - General action" - ] - }, - { - "text": "Ensure the effective freedom of demonstration and freedom of association ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Adopt a policy and an action plan at the federal level to combat discrimination and violence against lesbian, gay, bisexual, transgender and intersex persons, and in particular include them in national surveys on suicides", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Work more systematically and intensively to bring the risk of forced confession to the attention of the police. ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Continue its efforts to establish a family court in order to deal with resolving family disputes, thus preserving Kuwaiti social structure ", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Continue to give priority to education programmes, therefore contributing to the strengthening of the democratization process.", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "The Truth and Reconciliation Commission implementation should also take into account the situation of vulnerable groups and institutional reforms.", - "values": [ - "4 - General action" - ] - }, - { - "text": "Increase efforts to improve prison conditions, including health care ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Step up efforts to draft and implement a comprehensive human rights action plan that will serve as a framework for the implementation of its human rights policies and programs", - "values": [ - "4 - General action" - ] - }, - { - "text": "Improve conditions of detention and reduce the duration of detention with faster legal proceedings and investing into infrastructure to address prison overcrowding", - "values": [ - "4 - General action" - ] - }, - { - "text": "Establish an independent body to review asylum applications.", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Guarantee the right to fair trial and ensure that civilians are tried in civilian courts at all times", - "values": [ - "4 - General action" - ] - }, - { - "text": "Take measures to change laws that discriminate against women", - "values": [ - "4 - General action" - ] - }, - { - "text": "Take concrete measures in order to reduce the number of school dropouts by establishing a quality educational and pedagogical system which will also include all children and adolescents", - "values": [ - "4 - General action" - ] - }, - { - "text": "Set up a comprehensive system to protect children's rights and develop a national strategy to prevent and address all forms of violence", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Adopt a specific programme to safeguard the rights of victims of torture and ill-treatment ", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Take effective measures to ensure the equal treatment of women in law and practice", - "values": [ - "4 - General action" - ] - }, - { - "text": "Consider partnership in the Extractive Industries Transparency Initiative, as a measure against corruption and a means towards poverty reduction", - "values": [ - "3 - Considering action" - ] - }, - { - "text": "Increase training of teaching staff throughout the country, so that they are better prepared to identify situations of abuse or domestic violence against children", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Accede, as accepted during the previous cycle, to the International Convention for the Protection of All Persons from Enforced Disappearance", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Continue to improve and implement its strategy on poverty reduction and further improve its people's living standards", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Reinforce its legal framework by acceding to international covenants for the promotion and protection of human rights to which it is not yet a party, in particular ICCPR and ICESCR ", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Pursue national efforts to align the national legislation with the new Constitution", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Step up social measures to deal with children who are not attending school and promote their rights", - "values": [ - "4 - General action" - ] - }, - { - "text": "Step up efforts in the area of combating trafficking of human beings, as well as invite the Special Rapporteur on human trafficking to visit the country", - "values": [ - "4 - General action" - ] - }, - { - "text": "Strengthen legislation to prevent the unlawful from undermining other people's interests in the name of human rights defenders", - "values": [ - "4 - General action" - ] - }, - { - "text": "That the provisional Government urgently take all steps necessary to ensure the holding of the referendum on the new constitution and parliamentary elections - announced for 27 June and 10 October 2010 - in a free, fair and democratic manner, and fully take into account the relevant expert opinion of the Office for Democratic Institutions and Human Rights of the Organization for Security and Cooperation in Europe, as well as of the Venice Commission of the Council of Europe ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Continue efforts to ratify international human rights instruments, to which Viet Nam is not yet a party ", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "For as long as it resorts to the death penalty, respect the relevant international standards, especially the principles stated in Economic and Social Council resolution 1984/50, and particularly ensure that it will only be applied to the most severe crimes and to individuals who are more than 18 years of age at the time of the act ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Guarantee respect of sexual and reproductive rights and take measures to prevent early pregnancies, particularly through awareness-raising and sexual education", - "values": [ - "4 - General action" - ] - }, - { - "text": "Expedite the creation of a robust mechanism that will implement the 2013 law on domestic violence and its associated Programme for 2014-2023", - "values": [ - "4 - General action" - ] - }, - { - "text": "Continue to give particular attention to empowerment of women, children and other vulnerable sections of the population", - "values": [ - "3 - Considering action" - ] - }, - { - "text": "Consider the amendment of its Criminal Code in order to include a definition of torture as a crime", - "values": [ - "3 - Considering action" - ] - }, - { - "text": "Improve and extend the Anti-Trafficking in Persons Task Force to cover every part of the country and amend its legislation to ensure that child trafficking in all its forms is comprehensively defined and criminalized", - "values": [ - "4 - General action" - ] - }, - { - "text": "Ensure that the right of human rights defenders to conduct their work without hindrance, intimidation or harassment is respected and protected, as recommended in the previous cycle and accepted by Cambodia ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Uphold and respect the rights of all religious communities to their institutional autonomy, their property and their procedures at all times", - "values": [ - "4 - General action" - ] - }, - { - "text": "Develop a national plan against racism in line with the Durban Declaration and Programme of Action and investigate the perpetrators of hate crime", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Duly investigate all cases of abuse of migrant domestic workers, bring perpetrators to justice and allow migrant workers full access to legal remedies", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Continue to cooperate with the United Nations Human Rights Council Special Procedures, use opportunities for having country visits for the benefit of human rights situation improvement ", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Take systematic measures, including temporary special measures, with a view to increasing the representation of women in decision-making and political organs, as recommended by the Committee on the Elimination of Discrimination against Women.", - "values": [ - "4 - General action" - ] - }, - { - "text": "Ensure that its agriculture policies do not undermine the food security or land rights of the most vulnerable and consider applying the technical guidance on the application of a human rights-based approach to the implementation of policies and programmes to reduce and eliminate preventable mortality of children under 5 years age (A/HRC/27/31)", - "values": [ - "4 - General action" - ] - }, - { - "text": "Consider ratifying those main international instruments to which it is not party, particularly the Optional Protocols to the Convention on the Rights of the Child and conclude the ratification process of the Convention on the Rights of Persons with Disabilities ", - "values": [ - "3 - Considering action" - ] - }, - { - "text": "Take concrete measures to ensure the implementation and promotion of the United Nations Declaration on the Rights of Indigenous Peoples ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Institutionalize the right to consultation of the indigenous population and involve civil society and indigenous groups in the elaboration of a functioning consultation mechanism in line with Ecuador's commitments under ILO-Convention 169 ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Take further measures to ensure that any efforts to counter terrorism are carried out in full compliance with its human rights obligations, including respect for due process and freedom of expression and assembly ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Work on the establishment of an institution concerned with the implementation of the Convention on the Rights of the Child", - "values": [ - "4 - General action" - ] - }, - { - "text": "Review legislations to ensure that all persons with disabilities have a right to vote, and that they can participate in political and public life", - "values": [ - "3 - Considering action" - ] - }, - { - "text": "Remove from national legislation all provisions relating to the death penalty ", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Restore permanent residency status to the citizens of the former Yugoslavia permanently residing in Slovenia, and to restore the rights of victims", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "While commending Barbados for not resorting to executions since 1984, establish a formal moratorium with a view to the abolishment of the death penalty ", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Continue its efforts in the advancement for the promotion and protection of the rights of women by implementing its "Third Basic Plan for Gender Equality" and its "Action Plan to Promote Economic Revival through Women's Active Participation"", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Take measures to address patriarchal attitudes and stereotypes that discriminate against women", - "values": [ - "4 - General action" - ] - }, - { - "text": "Make permanent the "pilot" requirement to include persons of both sexes in each list of candidates as it will apply to the national and departmental elections of 2014-2015 ", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Continue to adopt measures to fight impunity and acts of torture, harassment of civilians, including those committed by law enforcement officials ", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Ensure a timely and impartial investigation of all complaints and reports against such illegal acts", - "values": [ - "4 - General action" - ] - }, - { - "text": "Continue with its efforts to strengthen the enforcement of law on violence against women", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Enact a federal crime of torture, consistent with the Convention, and also encompassing acts described as - enhanced interrogation techniques", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Enact measures to combat discrimination of LGBTI people and to ensure them equal access to public services such as health care and education", - "values": [ - "4 - General action" - ] - }, - { - "text": "Introduce the total legislative ban of female genital mutilation, to initiate a public discussion and awareness-raising campaign on female genital mutilation as a violation of human rights of girls and women", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Continue its measures to tackle the problem of violence against women, including domestic violence and to address gender equality in all spheres of life ", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Ratify and implement the Convention on the Rights of Persons with Disabilities and ensure non-discrimination against persons with disabilities by, inter alia, developing specific legislation regarding the rights of persons with disabilities and providing adequate resources, including technical assistance, to the recently established Taskforce Committee ", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Introduce a definition of torture into its criminal code that is in line with Article 1 of the Convention against Torture and other Cruel, Inhuman or Degrading Treatment or Punishment, establish an effective mechanism to investigate credible allegations of torture, ensuring that perpetrators are held to account, and put in place the necessary arrangement to ratify the Optional Protocol to the Convention against Torture and other Cruel, Inhuman or Degrading Treatment or Punishment ", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Prohibit executions of minors pursuant to the Children's Act of 2010 ", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Continue to open channels of cooperation with the United Nations human rights mechanisms and with the States, particularly in the area of education, ratification and implementation of international treaties, and the fight against impunity", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Step up collaboration with regional and international actors to improve food security by working towards achieving sustainable production and distribution of food", - "values": [ - "4 - General action" - ] - }, - { - "text": "Repeal the provisions that criminalize consensual homosexual relations, notably those contained in the Sexual Offences Act and establish policies to combat discrimination, prejudice and violence based on sexual orientation or gender identity ", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Consider developing human rights indicators as an instrument that allows for a more precise and coherent evaluation of national human rights policies", - "values": [ - "3 - Considering action" - ] - }, - { - "text": "Introduce an explicit prohibition by law of the recruitment of children under the age of 15 into armed forces or armed groups.", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Limit the use of long periods of pretrial custody ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Continue strengthening education measures and policies for the integration of Roma students in the education system, as well as strengthening literacy campaigns for the population", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Re-introduce the death penalty moratorium which was broken in 2007, and take measures to adhere to the resolutions of the General Assembly in this regard.", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Report back to the Working Group of the UPR on the subject of access to justice, at the next review of Ghana for the UPR", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Accelerate the ratification of the Convention on the Rights of Persons with Disabilities ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Accede to the Rome Statute and the Agreement on the Privileges and Immunities of the International Criminal Court", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Strengthen action to enforce the law on sexual violence against women and girls and continue to provide affordable health and physical services to the victims of sexual violence. ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Repeal the Charities and Societies Proclamation in order to promote the development of an independent civil society able to operate freely ", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Strengthen laws to ensure the protection of children from child labour and trafficking of children for purposes of sexual exploitation by establishing programmes for reinsertion in school and rehabilitation", - "values": [ - "4 - General action" - ] - }, - { - "text": "Adopt appropriate legislation to guarantee the rights of disabled persons and provide them with the best care without discrimination", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Respect fully the principle of non-refoulement enshrined in the Convention relating to the Status of Refugees", - "values": [ - "4 - General action" - ] - }, - { - "text": "Continue to bolster progress in the education of girls and women and to further diversify their educational and professional choices", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Continue its efforts to improve access to education, housing and health-care services ", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Fully cooperate with all the United Nations human rights mechanisms and special procedures, particularly the Special Rapporteur on the situation of human rights in the Democratic People's Republic of Korea, and engage with OHCHR", - "values": [ - "4 - General action" - ] - }, - { - "text": "Continue to pursue implementation of the Basic Principles on the Independence of the Judiciary and repeal all provisions of national law that restrict the Constitutional Court's jurisdiction", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Take all necessary measures to ensure that the human right to non-discrimination is applied and that the human rights of all persons, including lesbian, gay, bisexual, transgender and intersex persons, are fully respected and protected", - "values": [ - "4 - General action" - ] - }, - { - "text": "Adopt a law on rural development, followed by a comprehensive policy and an increase of the budget of the Ministry of Social Development", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Expedite the process of amending Article 57 of the Code of Military Justice to ensure that human rights violations committed by armed forces against civilians are tried in civilian courts", - "values": [ - "4 - General action" - ] - }, - { - "text": "Continue to promote dialogue among different religions ", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Strengthen efforts on the eradication of extreme poverty and hunger through the full implementation of the Programme on Accelerated Growth and Employment", - "values": [ - "4 - General action" - ] - }, - { - "text": "Continue its efforts to ensure the necessary protection of the rights of foreign workers and find the appropriate solutions to the illegal residents ", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Strengthen the Ombudsman's capacity to investigate and act on allegations of discrimination in all its forms ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Intensify efforts to fully implement legislation to provide free education for all children, to ensure all children have equal access to education", - "values": [ - "4 - General action" - ] - }, - { - "text": "The Government is committed to ensuring that access to medical services is ensured, through the availability of General Practitioner Services throughout Maldives. In this regard, work is underway to develop an electronic GP registration and Patient Record Archiving System, which would facilitate in-patient identification, birth and death registration, as well as substantiate access to healthcare and universal health coverage. Birth registration has been made possible, for everyone across the country since 1960s.", - "values": [ - "4 - General action" - ] - }, - { - "text": "Ratify the United Nations Convention against Corruption ", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Take concrete measures to ensure that women and girls live free from gender-based violence by significantly improving the rates of prosecution and providing adequate services for survivors", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Follow-up on the commitment of abolishing death penalty by ratifying the second Optional Protocol of the International Covenant on Civil and Political Rights whose aim is to abolish the death penalty for all crimes in all circumstances", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Take measures to ensure freedom of association, peaceful assembly and demonstration ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Ratify the Palermo Convention (Convention against Transnational Organized Crime) as well as its Protocol on the Trafficking in Persons", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Review legislative measures restricting freedom of opinion and expression, including the Communications Law ", - "values": [ - "3 - Considering action" - ] - }, - { - "text": "Establish a national preventative mechanism in compliance with the OP-CAT ", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Continue to provide support for African development, through the Tokyo International Conference on African Development process", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Take effective legal measures to prohibit the use of excessive force by the police against various groups of peoples ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Introduce a moratorium on the death penalty as a short-term objective and consider the full abolition of the death penalty and accession to the Second Optional Protocol to the International Covenant on Civil and Political Rights, aiming at the abolition of the death penalty", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Continue the effective policy of combating poverty and promoting economic, social and cultural rights.", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Consider ratifying the CPED as foreseen in the National Human Rights Action Plan, and accelerate the ratification of the ICRMW and the implementation of its provisions ", - "values": [ - "3 - Considering action" - ] - }, - { - "text": "Developing infrastructure so as to make economic opportunities accessible to all segments of the population and to provide the basis for rapid industrialization and job creation.", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Continue to implement effectively the National Action Plan on the Rights of the Child ", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Report regularly to the Committee on the Elimination of Discrimination against Women and the Committee on the Rights of the Child", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Adopt a comprehensive law on gender equality and against discrimination, consistent with the Convention on the Elimination of All Forms of Discrimination against Women", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Continue efforts to combat diseases, including malaria and HIV/AIDS, by investing in pharmaceutical research and public access to treatment options", - "values": [ - "4 - General action" - ] - }, - { - "text": "Promote continuous training on human rights for police officers", - "values": [ - "4 - General action" - ] - }, - { - "text": "Step up efforts to guarantee national food production and promote urban and family agriculture to achieve food sovereignty", - "values": [ - "4 - General action" - ] - }, - { - "text": "Establish an independent oversight body to investigate complaints of police abuse and human rights violations ", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Fully investigate all allegations of abuse and violence against civil society actors, and to prosecute the perpetrators", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Adopt a National Policy on the protection of human rights defenders and journalists in order to prevent harassment and intimidation and to ensure effective investigation of such acts and prosecution of perpetrators", - "values": [ - "4 - General action" - ] - }, - { - "text": "Combat and address the worst forms of child labour by punishing offenders and by conducting research on the prevalence of child labour", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Ensure the national availability and accessibility to contraceptive services and methods, including through the dissemination of information and education to boys, girls and adolescents, taking into account prevention of discrimination based on geographic status, disability or migrant status", - "values": [ - "4 - General action" - ] - }, - { - "text": "Continue its constructive engagement with the international community, particularly its development partners, allowing Ghana to pursue other measures to improve the welfare of its people and advance human rights", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Take effective measures to allow women, particularly in rural areas, to have access to health services, education, clean water and sanitation.", - "values": [ - "4 - General action" - ] - }, - { - "text": "Reinforce its efforts to meet the commitment to ensure free basic education, particularly primary education, and to address gender disparities ", - "values": [ - "4 - General action" - ] - }, - { - "text": "End the criminal military attacks in which thousands of innocent persons have died and punish those responsible and who have gone unpunished up until now", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Conclude the process to create the National Secretariat for Indigenous Peoples", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Remove legal provisions that restrict the right to freedom of religion or belief, including article 9(d) of the Constitution, which bars non-Muslims from being Maldivian citizens ", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Submit its initial report to the Committee against Torture without further delay", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Take the necessary measures to protect freedom of expression and press freedom, including through the Internet ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Continue its efforts to eliminate discrimination against ethnic minorities, refugees and immigrants", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Consider the adoption of new legislation on violence against women covering inter alia domestic violence and sexual crimes against women", - "values": [ - "3 - Considering action" - ] - }, - { - "text": "Allow voluntary repatriation of ethnic Nepali Bhutanese refugees to Bhutan ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Ban organizations that incite hatred, racism, racial discrimination and xenophobia", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Continue to strengthen and promote the legal and social status of women through constitutional and legislative guarantees", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Make provision in its national legislation for the crime of domestic violence and take all adequate measures to eliminate it", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Reconsider the possibility of imposing a moratorium on the death penalty ", - "values": [ - "3 - Considering action" - ] - }, - { - "text": "Take measures aimed at preventing threats and intimidation against journalists and human rights defenders, as well as against opponents of the Government", - "values": [ - "4 - General action" - ] - }, - { - "text": "Adopt national legislation implementing the Convention relating to the Status of Refugees and its 1967 Protocol, in order to institute a functioning system for the processing of refugees in accordance with international law and to grant protection to refugees determined and recognized as such by the Office of the United Nations High Commissioner for Refugees", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Consider adopting laws and policies on the promotion of the full participation of women under equal conditions in decision-making in all sectors of public, political and professional life", - "values": [ - "3 - Considering action" - ] - }, - { - "text": "Eliminate the obstacles that hinder the effective implementation of the Anti-Torture Act and fully comply with articles 18 and 19 of the Act, which foresee compensation and rehabilitation of victims", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Resolve the problem of lack of capacity in existing centres for registration and processing of asylum applications as well as ensure publication of information on administrative detention of migrants at the federal level", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Withdraw reservations to ICCPR and CRC", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Promptly designate the person who will occupy the position of Ombudsman Defensor del Pueblo ", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Decriminalize the activities of non-registered NGOs and put an end to all forms of administrative or judicial harassment towards independent civil society actors", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Strengthen measures to fight against terrorism and extremism in the country and in the Horn of Africa, including through subregional and regional organizations, as they undermine the practical enjoyment of human rights particularly economic, social and cultural rights ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Continue its efforts to reduce migration cost and provide greater skills development to aspiring migrant workers ", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Work with the Special Rapporteur on human rights defenders to ensure that their law governing NGOs guarantees effective implementation of the declaration on human rights defenders ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Set up a task force within the Ministry of Justice with international participation to combat arbitrary detentions and to seek urgent ways of improving the situation of prisoners.", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Continue to strengthen measures to promote tolerance and respect for cultural diversity and to counter prejudice, stereotypes, discrimination, racism and Islamophobia", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Continue efforts to provide improved assistance to victims of trafficking ", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Develop a national action plan to end gender-based violence and to bring rape laws in line with international standards", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Continue with measures already put in place to ensure the integration and welfare of marginalized and vulnerable members of society through adult literacy, community health insurance and provision of decent shelter to the poor and disadvantaged population", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Implement the Anti-Discrimination Law by adopting an antidiscrimination strategy and action plan", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Take steps to establish a national human rights institution in accordance with the Paris Principles", - "values": [ - "4 - General action" - ] - }, - { - "text": "Implement the recommendations of the Jamaican Justice System Reform Task Force report and provide the justice system with adequate resources and structures to do this effectively ", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Take all necessary measures to effectively fight against discrimination, including against religious minorities and LGBTI persons", - "values": [ - "4 - General action" - ] - }, - { - "text": "Suspend the interception, holding and use of communications, including the surveillance and extraterritorial interception and the scope of the surveillance operations against citizens, institutions and representatives of other countries, which violate the right to privacy, international laws and the principle of State sovereignty recognized in the Charter of the United Nations", - "values": [ - "4 - General action" - ] - }, - { - "text": "Ensure the promotion of the economic, social and cultural rights of Roma, and the implementation of policies affecting them ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Make a long-term plan for its step-by-step ratification of or accession to all core international human rights instruments, particularly the International Covenant on Civil and Political Rights, the International Covenant on Economic, Social and Cultural Rights, and the Convention against Torture and other Cruel, Inhuman or Degrading Treatment or Punishment", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Continue efforts to promote the right to education by combating the phenomenon of children dropping out of school", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Continue the Government's efforts to ensure equal access to all citizens to employment, education and participation in the political process", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Make efforts to eliminate the large gap that exists between the rich and the poor ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Liberate immediately and unconditionally all the prisoners held in temporary detention or sentenced in connection with exercising their freedom of opinion and expression as well as freedom of assembly and association ", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Continue to strengthen its efforts for the promotion of human rights education, notably by ensuring the implementation of the National Plan of Action for Human Rights Education 2005-2014", - "values": [ - "4 - General action" - ] - }, - { - "text": "Ensure that Constitutional reforms guarantee equal protections, rights and treatment of all individuals, without distinction", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Expedite the implementation of the accepted recommendations from the first UPR cycle, including the ratification of the Convention against Torture and Other Cruel, Inhuman or Degrading Treatment or Punishment and ILO Convention No. 182 concerning the Prohibition and Immediate Action for the Elimination of the Worst Forms of Child Labour ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Continue with the necessary legislative reforms in the fight against racial discrimination ", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Continue its effort to improve access to quality health care of its people", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Establish a moratorium on executions with a view to abolishing the death penalty, and support the United Nations General Assembly resolution on a moratorium on the use of the death penalty ", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Further its endeavours with regard to the smooth and productive activity of the National Legal Aid Services Organization (NLASO) within the country ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Ratify the Optional Protocol to the Convention Against Torture", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Continue with efforts to eliminate all barriers to the effective equality of women", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Continue its measures aimed at the elimination of human trafficking, people smuggling and other related crimes, including a comprehensive antitrafficking legislation titled Human Trafficking Deterrence and Suppression Act, 2012, and the National Plan of Action 2012-2014 to combat human trafficking ", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Continue its efforts aimed at reducing overpopulation in prisons and at combating unhealthy conditions in detention, and in this regard, provide necessary financial resources to the penitentiary service", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Continue to put in place effective strategies aimed at reducing poverty and addressing the problem of malnutrition", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Review the cases of those sentenced under the now-abolished mandatory capital punishment for treason and murder and provide appropriate resentencing decisions", - "values": [ - "3 - Considering action" - ] - }, - { - "text": "Ratify the International Convention for the Protection of All Persons from Enforced Disappearance, as recommended and accepted by the country in the first cycle", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Pursue its efforts to root out any cases of violations of women's rights and domestic violence", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Continue to address the effects of unilateral blockade of the United States of America ", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Intensify its effort to prevent and combat problems, such as honor killings and domestic violence as well as early and forced marriages, so that there are no implementation gaps between plans and actions ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Set the age of marriage in law and in practice to a minimum of 18 years for both sexes, with no exceptions, traditional or otherwise, and raise public awareness of this law", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Reiterate the commitments expressed on the occasion of its election to the Human Rights Council and continue its cooperation with treaty bodies, particularly by submitting its periodic reports in due time ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Further strengthen the efforts in poverty eradication, paying special attention to the rural population ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Ratify the Optional Protocol to the Convention on the Elimination of All Forms of Discrimination against Women, and strengthen institutional capacity at the national and island levels to implement gender equality policies and programs ", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Establish equality between the sexes in the Constitution and take all necessary measures to counter gender-based discrimination.", - "values": [ - "4 - General action" - ] - }, - { - "text": "In the context of reforming the security sector, review training materials used by security forces in order to include child protection as a preventive measure against recruiting children in the armed forces.", - "values": [ - "3 - Considering action" - ] - }, - { - "text": "Bring the penal system of the country in accordance with the international standards, in particular to cancel the current mechanism of preventive detention and to strengthen the control over the behaviour of law enforcement agencies to stop the torture and ill-treatment", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Ratify Conventions to which it is not yet party ", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Intensify efforts to ensure gender equality and eliminate gender- based violence, including sexual violence and harmful traditional practices", - "values": [ - "4 - General action" - ] - }, - { - "text": "Take appropriate measures to expedite the ongoing legal proceedings against supporters of former President Laurent Gbagbo, and investigate and punish, when appropriate, crimes committed by the forces of President Ouattara", - "values": [ - "4 - General action" - ] - }, - { - "text": "Expedite the creation of an independent national human rights institution in conformity with the Paris Principles as recommended by the Committee on the Elimination of Racial Discrimination ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Continue reforms in the education sector with a view to further enhancing the quality of education ", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Revise remnants of Ben Ali-era legal code that stifle the freedoms of expression, assembly, and religion so as to fully protect those rights in accordance with international human rights law ", - "values": [ - "3 - Considering action" - ] - }, - { - "text": "Take measures to rapidly end the unlawful use of force by the police", - "values": [ - "4 - General action" - ] - }, - { - "text": "Follow up on the positive development - the moratorium on the death penalty - by removing capital punishment from legislation ", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Decriminalize homosexuality and combat discrimination based on sexual orientation or gender identity", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Consider the development of a system of reception centres where asylum seekers with serious medical conditions and disabilities can benefit from the presence of dedicated expert staff", - "values": [ - "3 - Considering action" - ] - }, - { - "text": "Adopt and implement specific legislation on the collection, use and accumulation of metadata and individual profiles, including in security and anti-terrorist activities, guaranteeing the right to privacy, transparency and accountability and the right to decide on the use, correction and deletion of personal data", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Take all appropriate measures that serve the interests of the welfare and development of child migrants, who should have been guaranteed all rights provided for in national legislation and international law ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Consider expediting the process of ratifying the International Convention on the Protection of the Rights of All Migrant Workers and Members of Their families", - "values": [ - "3 - Considering action" - ] - }, - { - "text": "Adopt quick and effective measures, as well as necessary legislation, in order to explicitly prohibit, prevent, punish and abolish discrimination on any grounds, including on the basis of HIV/AIDS status, as previously recommended", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Accede to the remaining core human rights treaties and core labour standards it has yet to become a party to, and continue to cooperate with international and regional human rights mechanisms in implementing its obligations ", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Step up efforts to eliminate violence and discrimination against women ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Allow national and international NGOs to play a full and active role in promoting and protecting human rights, specifically by expanding registration to all categories of NGOs and social organizations in China and by expanding their freedom to operate effectively", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Continue its efforts towards the total elimination of discrimination and violence against women ", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Make more efforts and mobilize plans and programmes to assist farmers in rural areas, ensure equity in land distribution, and increase funding and resources for farmers to improve agricultural productivity", - "values": [ - "4 - General action" - ] - }, - { - "text": "Strengthen the Gender Equality Council", - "values": [ - "4 - General action" - ] - }, - { - "text": "Bahrain is currently examining the idea of creating an inter-ministerial human rights mechanism to guarantee the implementation of the recommendations made by the international treaty bodies to which Bahrain reports.", - "values": [ - "3 - Considering action" - ] - }, - { - "text": "Develop and implement comprehensive and efficient policies to fight poverty and in particular chronic and acute malnutrition", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Continue and intensify efforts to ensure gender equality and equity", - "values": [ - "4 - General action" - ] - }, - { - "text": "Leave no stone unturned to address all outstanding electoral reform issues to guarantee free and fair elections in 2015", - "values": [ - "4 - General action" - ] - }, - { - "text": "Complete the process of withdrawing its general reservation to CEDAW ", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Reinforce the fight against torture", - "values": [ - "4 - General action" - ] - }, - { - "text": "Strengthen the text and enforcement of legislation that protects internationally recognized labour rights for all workers, particularly those rights relating to forced labour and freedom of association ", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Undertake awareness-raising campaigns to sensitize law enforcement officials and the judiciary on violence against women and girls, within the framework of the new Law 348, the Comprehensive Act on guaranteeing a life free of violence for women", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Continue to promote the preventive approach in education and social reintegration to avoid delinquency ", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Adopt national legislation to fully implement the ILO Convention No. 169 on indigenous and tribal peoples. Particular focus should be put on the indigenous peoples' right to be consulted at all levels of decision-making, in policy, legislative, administrative and development processes affecting them", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Establish an organic legal framework for eliminating gender-based discrimination and promoting gender equality.", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Continue to work at the provincial level to execute memorandums of understanding to combat violence against women and children", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Harness the necessary international cooperation to implement a sustainable educational and cultural campaign, in time and space, to achieve the full eradication of the use of and practice of the so-called female genital mutilation as a contribution to the comprehensive development of women in Mali, and their right to health in particular ", - "values": [ - "1 - Minimal action" - ] - }, - { - "text": "Continue its efforts in the provision of social care for children at risk and poor families", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Continue measures to ensure the full participation of civil society representing persons with disabilities in the current reform processes of the civil code and the law of civil procedure regarding the matter of legal capacity, in accordance with the Convention on the Rights of Persons with Disabilities", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Reinstate the de facto moratorium on the death penalty with a view to its abolition", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Ensure that all crimes and violations against human rights defenders and journalists are effectively investigated and prosecuted, and that those responsible are brought to justice.", - "values": [ - "4 - General action" - ] - }, - { - "text": "Expand the definition of violence against women in accordance with the recommendations of CEDAW.", - "values": [ - "4 - General action" - ] - }, - { - "text": "Take increased measures to prevent and combat impunity for human rights violations through investigation of all threats, harassment, intimidation, violence and enforced disappearances, in particular those concerning children and human rights defenders, and ensure that all perpetrators are held accountable for their actions", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Issue a standing invitation to the United Nations special procedure mandate holders ", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Take further steps to prevent all forms of discrimination against persons belonging to other ethnic or religious origins including migrant workers and their children ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Consolidate efforts made to ensure access to education for all citizens without discrimination", - "values": [ - "4 - General action" - ] - }, - { - "text": "Step up efforts to reduce poverty by allocating additional resources to individuals and groups of vulnerable populations ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Continue to integrate national procedures with acceptable international human rights mechanisms", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Carry-out an awareness raising campaign against domestic and gender based violence, and, in specific terms, against offences against women for reasons of honor", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Strengthen members-based and members-driven civil society by further facilitating the existing mechanisms to generate funds from local sources ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Intensify its successful endeavours to rehabilitate persons accused or imprisoned in cases involving terrorism, to extend these endeavours to persons accused of imprisoned or in other criminal cases and to engage in an exchange of experience in this field with other states ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Establish a death penalty moratorium and look for measures for its complete elimination ", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Step up its efforts to protect its indigenous peoples and install an effective system of consultations with indigenous peoples.", - "values": [ - "4 - General action" - ] - }, - { - "text": "Explicitly prohibit corporal punishment in all settings, including the home and all care settings ", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Continue actions to ensure that children in the most disadvantaged areas enjoy the same benefits in education and health enjoyed in urban areas ", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Strengthen efforts to protect women and girls from all forms of violence and implement a strategy to eliminate negative cultural practices that are harmful and discriminate against women", - "values": [ - "4 - General action" - ] - }, - { - "text": "Continue to enhance its judicial system and ensure respect for the rule of law ", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Reform national law in order to prohibit corporal punishment in all settings and to develop an enforcement mechanism and sanctions against corporal punishment of children", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Consider legislative measures to deal with sexual harassment.", - "values": [ - "3 - Considering action" - ] - }, - { - "text": "Consider the possibility to ratify the: Convention against Torture, International Convention on the Protection of the Rights of All Migrant Workers and Members of Their Families, International Convention for the Protection of All Persons from Enforced Disappearance", - "values": [ - "3 - Considering action" - ] - }, - { - "text": "Fully implement recommendations made by the Council for Preventing and Eliminating Discrimination to better ensure protection against discrimination and the equality of all persons", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Ratify the Optional Protocol to the Convention against Torture and Other Cruel, Inhuman and Degrading Treatment or Punishment ", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Pursue its efforts to ensure the right to an adequate standard of living for vulnerable groups ", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Exhaust international assistance for building institutional capacities that are responsible for human rights", - "values": [ - "1 - Minimal action" - ] - }, - { - "text": "Make the de facto moratorium into a permanent one with a view to abolishing the death penalty ", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Consider ratification of the optional protocols of core international human right treaties it has already ratified or is in the process of ratifying", - "values": [ - "3 - Considering action" - ] - }, - { - "text": "Agree to the visit of the Special Rapporteur on the promotion and protection of the right to freedom of opinion and expression ", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Strengthen mechanisms for preventing and eliminating xenophobic discourse in all spheres of life", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Complete swiftly all necessary procedures so the national office of human rights begins its work", - "values": [ - "4 - General action" - ] - }, - { - "text": "Ensure that adequate resources are made available to enhance access to counselling and related services for victims of domestic and sexual violence", - "values": [ - "4 - General action" - ] - }, - { - "text": "Continue the promulgation and enactment of laws to combat discrimination against women", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Promote the rights of human rights defenders to freedom of expression, association and assembly, and to review the extremism and NGO laws to ensure their compatibility with international human rights obligations and standards including the United Nations Declaration on Human Rights Defenders ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Disseminate and implement effectively the Declaration on the Right and Responsibility of Individuals, Groups and Organs of Society to Promote and Protect Universally Recognized Human Rights and Fundamental Freedoms", - "values": [ - "4 - General action" - ] - }, - { - "text": "Continue the work to ensure fair trials, particularly in cases of the death penalty, ensuring the right to be judged by an independent, impartial and competent court, the right to effective judicial protection, the right to have enough time and facilities to properly prepare the defense of a defendant, the right to the presumption of innocence, the right to appeal and the right for a sentence to be commuted", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "End discrimination in law and practice against all minorities and migrants, particularly against women and children from poor families and take effective steps to prevent and combat violence against them", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Implement its National Women Development Policy of 2011 and take effective measures in order to tackle the issue of early marriages ", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Continue implementing the recommendations emanating from the Truth and Reconciliation Commission", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Genuine and full commitment to international treaties and resolutions combating terrorism, especially Security Council resolutions 2170 (2014) and 2178 (2014)", - "values": [ - "4 - General action" - ] - }, - { - "text": "Continue strengthening the integration of human rights in its public policies by strengthening the government agencies at all levels for the implementation of the National Action Plan on Human Rights 2017-2021", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Abolish the kafala system which restricts rights of foreign workers and their access to redress mechanisms and make them vulnerable to various forms of abuse", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Evaluate the accession and ratification of the main international conventions on human rights, including the Convention against Torture and its Optional Protocol", - "values": [ - "3 - Considering action" - ] - }, - { - "text": "Continue its efforts in strengthening the mechanisms for the effective incorporation of international human rights obligations and standards into its domestic legislation ", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Establish an effective mechanism to identify victims of trafficking in human beings", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Revise its position to provide compensation to Roma women who were victims of forced sterilization to properly recognize and provide just restitution for their suffering", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Review the Constitution and legislation, in order to explicitly prohibit discrimination on the basis of sexual orientation or gender identity", - "values": [ - "3 - Considering action" - ] - }, - { - "text": "Allow visits from special procedures representatives of the Human Rights Council and other relevant human rights institutions and mechanisms, as previously recommended", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Ethiopia was committed to further strengthening freedom of peaceful assembly in line with the Constitution and obligations of the country.", - "values": [ - "4 - General action" - ] - }, - { - "text": "Guarantee a safe and independent working environment for journalists and promote transparency and diversity in the media ownership", - "values": [ - "4 - General action" - ] - }, - { - "text": "Take all necessary measures to eliminate racial discrimination and segregation of Roma in education", - "values": [ - "4 - General action" - ] - }, - { - "text": "Provide adequate financial and human resources towards the promotion of the right to education and that of the rights of the child, as a whole ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Exhort further efforts in order to fight child exploitation in dangerous work and work more seriously through the promulgation of laws to combat this dangerous phenomenon", - "values": [ - "4 - General action" - ] - }, - { - "text": "Continue with the legal and administrative steps to finally prohibit fully corporal punishment of children", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Step up its efforts to ensure the promotion and protection of human rights in a more harmonized fashion across its territory", - "values": [ - "4 - General action" - ] - }, - { - "text": "Finalize the pending initiatives, including the Federal bill on improving the protection of victims of violence", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Adopt a complex strategy to combat the poverty in the rural regions and implement measures to expand the access of the population in those regions to drinking water and sanitation", - "values": [ - "4 - General action" - ] - }, - { - "text": "Become a party to ICCPR, ICESCR and the Optional Protocols to CRC ", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Intensify its efforts in combating discrimination and intolerance, particularly against Muslims, immigrants and persons of African descent and urges high State officials and politicians to take a clear position against racist or xenophobic hate speech ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Take efforts to strengthen the education system through the provision of mandatory training on human rights education", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Continue efforts for the enactment of the Law against Trafficking in Persons, being sure that its approval will be a precious instrument in the fight against this scourge ", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Intensify awareness-raising with regard to violence against women, ensuring that perpetrators are speedily brought to justice, as well as eliminating discriminatory provisions with regard to family life and marriage in the Civil Code", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Repeal or amend without delay the Assembly Law of November 2013, with a view to guarantee the right to free assembly and freedom of expression", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Take measures to fight against and prevent child ill-treatment, in particular abuse of street children", - "values": [ - "4 - General action" - ] - }, - { - "text": "Take all necessary measures to eliminate discrimination against women and girls, particularly in relation to marriage, land ownership and inheritance rights", - "values": [ - "4 - General action" - ] - }, - { - "text": "Guarantee the closure of the Saint Patrick's Institution and the effective implementation of the Children (Amendment) Act of 2015 and the Prisons Act of 2015 ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Ensure equal opportunities for women in the labour market by eliminating occupational segregation and narrowing the gender pay gap and increase the participation of women in the political sphere, in particular at the higher levels", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Develop a strategic framework for the comprehensive protection of children as regards trafficking and sexual exploitation", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Strengthen further its commitment to the Bali process as the principal mechanism in the region which deals with people smuggling and trafficking", - "values": [ - "4 - General action" - ] - }, - { - "text": "Strengthen efforts to eliminate early and forced marriage", - "values": [ - "4 - General action" - ] - }, - { - "text": "Establish a roadmap with clear timelines to finalise the cases of sterilization of Roma women without consent and ensure adequate compensation and reparation for such women", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Strengthen the measures aimed at fighting discriminatory acts and hate speech against certain minority groups by focusing on prevention and follow-up to these acts", - "values": [ - "4 - General action" - ] - }, - { - "text": "Establish a national human rights institution in accordance with Paris Principles", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Continue efforts to ensure equality of rights and opportunities between women and men in all spheres of society, through legal recognition, the implementation of special measures and the elimination of disparities in opportunities between women and men", - "values": [ - "4 - General action" - ] - }, - { - "text": "The Republic of Kazakhstan, as a democratic State, has pledged to respect and ensure to all individuals within its territory and subject to its jurisdiction the right to freedom of expression. It must be noted, however, that any measures adopted by the Government to restrict such rights are necessary to ensure respect for the rights or reputations of others or for the protection of national security or public order (ordre public) or public health or morals. Such measures are in full conformity with article 19 of the International Covenant on Civil and Political Rights.", - "values": [ - "4 - General action" - ] - }, - { - "text": "Clearly identify the needs regarding technical assistance and capacity-building in the field of human rights ", - "values": [ - "1 - Minimal action" - ] - }, - { - "text": "Prioritize the use of alternative measures to detention of migrants and ensure that the detention of vulnerable persons is avoided", - "values": [ - "4 - General action" - ] - }, - { - "text": "Maintain and intensify the efforts regarding the elimination of poverty and social inequality.", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Continue developing its legal and institutional framework with respect to the promotion and protection of human rights ", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Take the necessary measures for the prompt and effective operationalization of the independent police complaints commission, including by providing sufficient financial and human resources", - "values": [ - "4 - General action" - ] - }, - { - "text": "Also continue the implementation of factual programmes in order to ensure the right to food and health", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Consider becoming a party to the 1967 Protocol to the United Nations Convention relating to the Status of Refugees, adopt asylum legislation, sign a memorandum of understanding with the United Nations High Commissioner for Refugees - UNHCR -, formalizing the presence of UNHCR in the Libyan Arab Jamahiriya and allowing UNHCR greater access to detained asylumseekers and migrants ", - "values": [ - "3 - Considering action" - ] - }, - { - "text": "Rapidly complete the process of aligning its national law with the provisions of the Rome Statute of the International Criminal Court ", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Take further steps, with the support of the international community, to continue ameliorating access of the population to health", - "values": [ - "4 - General action" - ] - }, - { - "text": "Give priority to the formulation and implementation of the envisaged National Action Plan for the Prevention of Violence against women and the Punishment of Aggressors", - "values": [ - "4 - General action" - ] - }, - { - "text": "Expedite the creation of an independent national human rights institution in line with the Paris Principles", - "values": [ - "4 - General action" - ] - }, - { - "text": "Ratify the International Convention on the Protection of the Rights of All Migrant Workers and the Members of Their Families, the 1951 Convention relating to the Status of Refugees and the 1967 Protocol thereto, among other conventions that it has not yet ratified", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Fully implement the Racial Discrimination Act and the revision of federal laws to be compatible with the United Nations Declaration on the Rights of Indigenous Peoples ", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Enhance efforts to ensure that all children have access to free, compulsory and quality primary education", - "values": [ - "4 - General action" - ] - }, - { - "text": "Reinforce the legal and implementation infrastructure aimed at upholding the rights of women", - "values": [ - "4 - General action" - ] - }, - { - "text": "Continue efforts to eradicate sexual exploitation of children", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Further strengthen the law reforms and policy aimed at protecting the people's rights and for the betterment of the poor and other disadvantaged groups ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Implement the 1997 Constitution and publicly affirm the right to freedom of expression, opinion, religion, association and movement ", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Implement effectively the Juvenile Justice and Welfare Act as a mandate and do not pass legislation lowering the minimum age of criminal responsibility to avoid further criminalization of minor children and their ill-treatment and abuse in detention facilities", - "values": [ - "4 - General action" - ] - }, - { - "text": "Continue incorporating international human rights norms into the national legislation", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Provide sufficient human and financial resources to the National Commission for Human Rights, so as to enable the Commission to carry out its mandate more effectively ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Continue adopting measures in the framework of freedom of expression as the new legislation on freedom of expression was passed", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Withdraw the reservations made to the International Covenant on Civil and Political Rights", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Sign and ratify all the Optional Protocols to United Nations international covenants and conventions to guarantee the effective implementation of the rights protected in the agreements.", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Take effective measures to fully implement its national framework plan against drugs for the period 2014 to 2018, in order to reduce the demand for drugs among the most vulnerable category of the population, namely children and young people", - "values": [ - "4 - General action" - ] - }, - { - "text": "Adopt official procedures to establish the best interests of the child in all processes, in particular in those referring to immigration and refugees, using as a guideline, inter alia, general comment No. 14 of the Committee on the Rights of the Child", - "values": [ - "4 - General action" - ] - }, - { - "text": "Consider acceding to the Convention Against Torture and Other Cruel, Inhuman or Degrading Treatment or Punishment (CAT).", - "values": [ - "3 - Considering action" - ] - }, - { - "text": "Strengthen efforts to promote empowerment of women and gender equality with the objective of increasing their participation in decision-making ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Develop, enact and implement a national action plan on business and human rights in order to implement the guiding Principles on Business and Human Rights", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Continue the efforts in the framework of the inter-ethnic policy and the protection of the rights of ethnic minorities", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Further increase the juvenile courts in its territory to make justice more accessible", - "values": [ - "4 - General action" - ] - }, - { - "text": "Fully publish and implement a plan that addresses how the Government of Montenegro intends to make appointments and promotions in the judiciary a fair and transparent process, to ensure that the independence of the judiciary is fully protected ", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Consider imposing a moratorium on execution of death penalties while assessing the possibility of adopting the Second Optional Protocol to ICCPR aimed at the abolition of the death penalty ", - "values": [ - "3 - Considering action" - ] - }, - { - "text": "Seek improved detection of instances of human trafficking into and out of the country", - "values": [ - "4 - General action" - ] - }, - { - "text": "Remove the reservations from the CEDAW, incompatible with the principle of equality between men and women and ratify the optional protocol to CEDAW", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Provide further resources for the preservation of the languages and culture of national communities, including the German-speaking community, which has for a very long time formed an important part of Slovene society", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Continue to promote efforts exerted in the area of combating sexual harassment", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Continue promoting and protecting the rights of women through the adoption of adequate laws and the introduction of institutional mechanisms ", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Look into the possibility of acceding to those conventions to which it is not yet party ", - "values": [ - "3 - Considering action" - ] - }, - { - "text": "Recognize the right to assembly of members of non-political groups by ensuring that such groups do not have to notify the police in advance of any gathering as currently required by the Schedule to the Public Order and Security Act ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Accede to ICRMW ", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Review the Anti-terrorism Law Number 13, ensuring its compliance with international human rights law", - "values": [ - "3 - Considering action" - ] - }, - { - "text": "Incorporate a section on rehabilitation of victims of torture into the draft bill on the national system for the prevention of torture ", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Continue to address the problems relating to minority groups including Aboriginal peoples, Metis and African Canadians, as identified in the first cycle of the UPR ", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Further align its legislation and practice with the provisions of the Convention against Torture", - "values": [ - "4 - General action" - ] - }, - { - "text": "Further their efforts to implement anti-corruption laws and regulations ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Ensure that LGBT persons in Serbia can exercise their human rights freely and in security, including fundamental freedoms such as the freedom of expression and the freedom of assembly and association", - "values": [ - "4 - General action" - ] - }, - { - "text": "Continue its efforts to fight hate speech in different State institutions through the establishment of tolerance and understanding between cultures", - "values": [ - "4 - General action" - ] - }, - { - "text": "Amend its Criminal Code to abolish the criminalization of homosexual acts to conform to the provisions of the ICCPR, particularly articles 2 and 26, and the provisions of the African Charter of Human Rights and Peoples' Rights", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Identify cases of racism and xenophobia and combat them, as well as continue to foster intercultural understanding and tolerance ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Passing of the Anti-Torture Bill and efforts to hold accountable all those committing acts of torture and ensure timely and adequate compensations to victims ", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Ensure equal access in practice to rights for persons belonging to all minorities throughout Albania, especially the right of education in and teaching of the minority languages ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Establish a mechanism to increase the participation of women, particularly indigenous women, in key positions of the three powers of the Republic and in decision-making processes", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Raise the minimum age of criminal responsibility currently fixed at 12 years, in compliance with its international obligations ", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Create a national commission of human rights and freedoms.", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "The new leadership of Niger reaffirms its commitment to continued cooperation with the human rights treaty bodies and pledges to respect the obligations arising from the ratification of the various international human rights treaties to which Niger is a party. The authorities will cooperate with the Human Rights Council and implement all the recommendations of the universal periodic review", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Intensify efforts to cooperate with United Nations human rights mechanisms, particularly with treaty bodies, by presenting periodic reports and pay due attention to the observations made by such bodies", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Promote effectively equality between men and women ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Further continue efforts to remove all barriers to access primary education", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Amend legislation, public policies and programmes to comply with its international commitments against all forms of discrimination, as stipulated in the International Convention on the Elimination of All Forms of Racial Discrimination, the Convention on the Rights of the Child and the Convention on the Elimination of All Forms of Discrimination against Women", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Investigate all complaints made against the Police Force, including alleged unprofessional conduct, beatings and assaults, and to introduce electronic recording of interviews ", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Respond to the allegation communications of the special procedures ", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Intensify the implementation of its pro-poor policies, projects and programmes ", - "values": [ - "4 - General action" - ] - }, - { - "text": "That any sanctions for violations be proportionate and not create undue obstacles to freedom of assembly", - "values": [ - "4 - General action" - ] - }, - { - "text": "Consider the possibility of ratifying the Convention on the Protection of All Persons from Enforced Disappearance (CPED) ", - "values": [ - "3 - Considering action" - ] - }, - { - "text": "Ensure equal rights between women and men in areas such as work, education, public life and decision-making ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Continue strengthening the good educational policy with a view to ensuring the full school enrolment of those who due to lack of resources are excluded from the education system, as the only way of moving forward to its full development and achieving true social well-being", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Introduce legal changes to ensure that its National Human Rights Commission is fully compliant with the Paris Principles", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Continue its efforts in the fight against poverty and in favour of people in vulnerable situations", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Introduce advanced teaching methods to improve quality education in the country and further promote cooperation with relevant international organizations and foreign countries in this regard ", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Adopt a national program against human trafficking, in particular of women and children, in order to prevent this crime, rehabilitate victims and prosecute perpetrators ", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Sign and ratify the International Convention for the Protection of All Persons from Enforced Disappearance (ICPPED)", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Continue ongoing efforts for the betterment of the rights of children and women and other vulnerable groups ", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Fully implement the equal opportunities policy with the aim of ensuring gender equality", - "values": [ - "4 - General action" - ] - }, - { - "text": "Redouble efforts to promote universal education and ensure compliance with legislation on compulsory education ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Take measures to reduce violence against lesbian, gay, bisexual, transsexual and intersex persons, with a view to reducing homophobic prejudices of the Jamaican society and facilitate their access to all services", - "values": [ - "4 - General action" - ] - }, - { - "text": "Align its legislation to prohibit all forms of discrimination against children, in particular any discrimination that stigmatizes them as witches, and guarantee that minors benefit from concrete legal and social protection against rituals that endanger their lives", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Take the necessary measures to remove the death penalty from existing laws and sign and ratify ICCPR-OP2 aiming at the abolition of the death penalty", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Make efforts to obtain accreditation for a national human rights institution that complies with the Paris Principles from the International Coordinating Committee ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Take steps to prevent discrimination and incitement to hatred against the Baha'i or any other ethnic or religious minority, regardless of whether it is officially recognized", - "values": [ - "4 - General action" - ] - }, - { - "text": "Mitigate the lack of qualified and experienced healthcare professionals by putting in place a national training strategy in the medical and paramedical branches", - "values": [ - "4 - General action" - ] - }, - { - "text": "Develop educational programmes to prevent and combat negative social attitudes towards different ethnic groups", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Take further measures to adopt a comprehensive anti-discrimination legislation, aiming at eliminating discrimination against women, especially women from minority groups, women with disabilities, migrant women and women asylum seekers", - "values": [ - "4 - General action" - ] - }, - { - "text": "Improve the situation of asylum seekers and take measures to end the detention of all refugee children", - "values": [ - "4 - General action" - ] - }, - { - "text": "Continue to engage multilateral, regional and bilateral partners with a view to build its capacity and its resources for the effective implementation of its anti-human trafficking programmes as well as disaster risk reduction measures and climate change adaption and mitigation programmes", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Enact legislation to address domestic violence", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Continue the efforts to implement the \u201cWomen Living without Violence\u201c programme launched in 2013", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Amend its press-related legislation to comply with the international standards to eliminate the censorship of the printed media through annual licensing -", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Bring the Law on Peaceful Assembly into compliance with international human rights standards ", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Enact and implement a comprehensive legal framework addressing all forms of violence against women", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Continue its measures in the fight against the sexual abuse and exploitation of children by strengthening the implementation of its relevant national action plan", - "values": [ - "4 - General action" - ] - }, - { - "text": "Punish perpetrators of abuse and police brutality, which are increasingly alarming and constitute irrefutable acts of increasing racism and racial discrimination, particularly against African Americans, Latinos and women", - "values": [ - "4 - General action" - ] - }, - { - "text": "The delegation expressed the commitment of Bulgaria to ratifying the Optional Protocol to the International Covenant on Economic, Social and Cultural Rights and the International Convention for the Protection of All Persons from Enforced Disappearance", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Eradicate discriminatory practices in the labour market that detrimentally affect women", - "values": [ - "4 - General action" - ] - }, - { - "text": "Continue working at the national level to protect the human rights of migrants, including those who have requested refuge or asylum, and in particular with regard to the principle of non-refoulement", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Accelerate the process of accession and then ratify the International Convention for the Protection of All Persons from Enforced Disappearance", - "values": [ - "4 - General action" - ] - }, - { - "text": "Continue efforts to fight all forms of discrimination against foreigners and to combat hate speech in the media by intensifying awareness campaigns and spreading a culture of dialogue and acceptance of the other", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "With a view to fostering equality in law and practice, repeal all discriminatory legislation with regard to marriage, divorce and inheritance ", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Establish an independent national human rights institution, consistent with the Paris Principles", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Withdraw reservations to Convention on the Elimination of all forms of Discrimination against Women ", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Take actions to ensure the right to freedom of expression as established by the Constitution ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Continue to take measures against all forms of discrimination ", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Adopt further measures in order to ensure the participation of persons belonging to national minorities in the decision-making process", - "values": [ - "4 - General action" - ] - }, - { - "text": "Implement actions to improve the relationship between the security forces, judicial bodies and civil society, specifically with regard to arbitrary detention, excessive use of force during arrest, judicial due process, abuse of power and torture, and allocate the necessary resources to ensure that the aforementioned abuses do not remain unpunished", - "values": [ - "4 - General action" - ] - }, - { - "text": "Withdraw reservations and declarations to the Convention on the Rights of the Child and to ratify its optional protocol OP-CRC-SC", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Continue to intensify efforts and take necessary measures with a view to carrying out the repatriation of illicit funds and proceeds of corruption to their countries of origin and to ensure cooperation with requesting States", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Conduct investigations and initiate prosecutions against alleged perpetrators of extrajudicial executions ", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Fully cooperate with the United Nations human rights mechanisms, including the special rapporteur on the situation of human rights in this country and the COI ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Create the conditions for ensuring that religious minorities can fully enjoy their rights, without discrimination", - "values": [ - "4 - General action" - ] - }, - { - "text": "Cooperate closely with United Nations bodies and address the issue of overdue reports to ICESR, the Human Rights Committee, CEDAW and CAT, among others.", - "values": [ - "4 - General action" - ] - }, - { - "text": "Continue its developmental role in the world", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Continue its efforts to fulfil the economic, social and cultural rights of all", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Establishing a national human rights institution for the promotion and protection of human rights in accordance with the Paris Principles", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Extend its participation and share its experience in the field of combating trafficking in persons with the countries of the region and continue its efforts to cooperate with the international community to eliminate this social scourge", - "values": [ - "4 - General action" - ] - }, - { - "text": "Ratify ICCPR and ICESCR.", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Continue the procedures of ratifying the Convention on the Rights of Persons with Disabilities ", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Consider establishing an independent body with the right to undertake unannounced visits to all places of deprivation of liberty, including police stations and pretrial detention facilities, with a view to an early ratification of OP-CAT", - "values": [ - "3 - Considering action" - ] - }, - { - "text": "Move further forward on existing measures against discrimination against women, particularly in terms of their inheritance rights, as well as harmful traditional practices against women, in particular in rural areas", - "values": [ - "4 - General action" - ] - }, - { - "text": "Take appropriate measures to fight against so-called acts of popular justice", - "values": [ - "4 - General action" - ] - }, - { - "text": "Ratify all international instruments concerning human rights", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Establish a national human rights commission, provide it with necessary resources for its proper functioning and ensure its conformity with the Paris Principles ", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Continue working for the implementation of the General Assembly resolution establishing the World Solidarity Fund to eradicate poverty in the world.", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Continue to promote gender equality and increase representation of women in public services", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Reform its defamation legislation in conformity with article 19 of the International Covenant on Civil and Political Rights (ICCPR), investigate all incidents of intimidation and violence against journalists and bring perpetrators to justice ", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Ratification of the Rome Statute establishing the International Criminal Court ", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Take measures to reduce cases of violence against women, including training of security forces, prosecutors and judges to increase awareness and gender-sensitivity", - "values": [ - "4 - General action" - ] - }, - { - "text": "Continue to improve its domestic framework for the empowerment of women", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Consider introducing specific legislation and additional policy measures to promote tolerance and non-discrimination of lesbians, gays, bisexuals and transsexuals.", - "values": [ - "3 - Considering action" - ] - }, - { - "text": "Take necessary legislative, political and awareness-raising measures to fight effectively against hate speech and crimes committed on the grounds of religious hatred, in particular Islamophobia", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Continue to improve the juvenile justice system ", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Increase efforts aiming at building the capacity of the judicial personnel technically and administratively", - "values": [ - "4 - General action" - ] - }, - { - "text": "Take steps to end the practice of international adoptions where the adoptive applicants are matched with children without having been introduced or had any opportunity to build any relationship with a child prior to the adoption decision", - "values": [ - "4 - General action" - ] - }, - { - "text": "Strengthen training and education programmes on human rights for law enforcement officials", - "values": [ - "4 - General action" - ] - }, - { - "text": "National capacities to implement the Trilingual Policy (2012 to 2020) and the National Policy Framework for Social Integration will be enhanced to support the achievement of the specified targets including implementation of the official languages policy in 72 bilingual administrative divisions by 2015", - "values": [ - "4 - General action" - ] - }, - { - "text": "Ratify or accede to, where appropriate, the Second Optional Protocol to the International Covenant on Civil and Political Rights", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Enhance its system for the protection of children by consideration of the establishment of a national Ombudsperson for Children ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Continue efforts to pursue the legislative efforts of the sustainable development commission for future generations", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Expeditiously permit international humanitarian missions, human rights observers and media unrestricted access within Syria, including the HRC Commission of Inquiry", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Pursue the efforts to achieve the Millennium Development Goals ", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Take measures to ensure that children are housed in separate facilities from adults in cases of detention", - "values": [ - "4 - General action" - ] - }, - { - "text": "Improve the situation of prisoners in the country, implementing the recommendations made by the European Committee for the Prevention of Torture after its visit in September 2015, such as to reduce the levels of violence and to decrease rates of overcrowding in multiple cells", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Swiftly implement the proposed National System to Prevent and Combat Torture to address concerns over abuse in prisons ", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Amend article 26 of the Constitution to ensure that the permissible grounds for restricting the right to freedom of expression are consistent with international human rights norms", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Put forward further efforts to guarantee the rights of asylum seekers, migrants and refugees with a view to delivering an adequate standard of living and access to affordable public services", - "values": [ - "4 - General action" - ] - }, - { - "text": "Provide all the necessary measures to improve the participation of women in public life and in the political and economic spheres ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Ensure budgetary provisions of $53,000 for medical assessment on people with disability and $80,000 in 2011 and $40,000 in 2012, for the development of the National Disability Policy. Tuvalu however lacks the capacity and is seeking external assistance from relevant regional organization to facilitate the development of the National Disability Policy", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Continue its efforts to prevent, penalize and prosecute sexual crimes perpetrated against women, girls and boys and to ensure the social rehabilitation and reintegration of the victims of such crimes ", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Provide legislation explicitly prohibiting corporal punishment of children, including in the home, and consider awareness-raising activities to increase public knowledge about the issue", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Draw up plans for the elimination of female genital mutilation practices", - "values": [ - "4 - General action" - ] - }, - { - "text": "Prioritize legislation and domestic policies aimed at eliminating domestic violence and protecting women's rights and gender equality, particularly in relation to property, family and employment ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Continue efforts to harmonize its normative framework with international human rights norms to which the country has acceded, particularly those concerning the rights of the child ", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Continue efforts to eradicate poverty and ensure the reduction of inequalities in the distribution of wealth and access to economic and social well-being by all people", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Ensure that all human rights initiatives stipulated in the National Plan of Action are implemented and monitored in an effective way ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Adopt a National Action Plan on Human Rights Education ", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Enact a comprehensive national law prohibiting FGM and continue awareness-raising campaigns to eradicate this scourge", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Extend a standing invitation to all UN Human Rights Council special procedures", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Ensure adequate protection for all citizens, including members of the LGBT community, by, inter alia, allowing them to assemble to publicly promote their human rights and identifying and prosecuting those who commit violence against those who participate in peaceful assemblies", - "values": [ - "4 - General action" - ] - }, - { - "text": "Further reinforce measures to combat trafficking of women and children, as well as penalties commensurate with the seriousness of such acts ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Address a standing invitation to all special procedures of the Council.", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Continue with its literacy efforts, access to bilingual education and the promotion and protection of the Guaraní language, in all its territory ", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Continue efforts aiming at enhancing human rights education especially for children", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Make the declaration provided for in article 14 of the International Convention on the Elimination of All Forms of Racial Discrimination", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Complete the process of creating an autonomous and independent national human rights institution, in conformity with the Paris Principles", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Continue taking measures on combating trafficking in persons ", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Step up efforts to stop discrimination against twins", - "values": [ - "4 - General action" - ] - }, - { - "text": "Ratify the African Union Convention for the Protection and Assistance of Internally Displaced Persons in Africa (Kampala Convention) ", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Guarantee teaching of minority languages at all elementary levels and enhance knowledge and tolerance in the Serbian society concerning languages and cultures of others ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Undertake measures to improve the quality, capacity and effectiveness of the justice system to prevent the abuses of the rights of national minorities and to investigate, prosecute and sanction cases and offenders, particularly against returnees ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Further improve the judiciary system of the country and strengthen human rights education for its citizens, especially judicial personnel", - "values": [ - "4 - General action" - ] - }, - { - "text": "Extend an open and standing invitation to mandate holders of special procedures", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Ratify all core international human rights treaties, most notably the Convention against Torture and Other Cruel, Inhuman or Degrading Treatment or Punishment ", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Share experience and efforts on religious harmony", - "values": [ - "1 - Minimal action" - ] - }, - { - "text": "Continue with efforts related to the enhancement of harmony between various religious and ethnical sects", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Develop a lasting protection mechanism for small children against food insecurity, through strategies aimed at facilitating access to food through fair agricultural policies", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Ratify the Optional Protocol to the Convention against Torture and Other Cruel, Inhuman or Degrading Treatment or Punishment", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Continue to address the concerns of disadvantaged and vulnerable persons as a matter of priority, through programs aimed at promoting their fundamental human rights", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Take all possible measures to improve the situation of the persons whose rights have been adversely affected by the decision of the Constitutional Court of 23 September 2013, and to ensure compliance with its obligations under international law ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Develop specific legislation on the elimination of discrimination against women", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Step up efforts to ensure access to quality education for all children, including those from minority groups and rural areas", - "values": [ - "4 - General action" - ] - }, - { - "text": "Introduce additional measures to ensure that the new Media Act complies with regional and international human rights standards ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Continue to work on the dissemination of the culture of human rights", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Encourage school attendance of girls and remove all obstacles to their access to education including the citizenship requirement beyond the ninth grade", - "values": [ - "4 - General action" - ] - }, - { - "text": "Continue its programmes for improving the social inclusion of children and youth with disabilities ", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Open an independent and impartial inquiry into the excessive use of force by security law enforcement forces before and after the unconstitutional transfer of power in March 2009, under the supervision of the United Nations and the African Union and with the support of international human rights organizations", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Continue efforts in establishing institutions to protect and guarantee human rights and to provide sufficient resources to these institutions ", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Act more intensively against trafficking of children for sexual exploitation and guarantee their separate detention from adults", - "values": [ - "4 - General action" - ] - }, - { - "text": "Ensure that necessary reforms are undertaken to guarantee the effective protection of the rights to freedom of expression, assembly and association. This includes enacting without delay an expanded Bill of Rights and Access to Information Bill and ensuring that the Public Order Act is implemented objectively and with professionalism by the police", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Ratifying the OP-CEDAW", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Take further steps to reduce the gender wage gap", - "values": [ - "4 - General action" - ] - }, - { - "text": "Take measures to effectively implement the provisions of the Convention on the Elimination of all Forms of Discrimination against Women and the Convention on the Rights of the Child, with special attention placed on the principle of non-discrimination", - "values": [ - "4 - General action" - ] - }, - { - "text": "Take further steps for the establishment of a human rights institution functioning in accordance with the Paris Principles", - "values": [ - "4 - General action" - ] - }, - { - "text": "Seek technical assistance and other support from development partners to strengthen implementation and development capacity with respect to human rights instruments and their domestication.", - "values": [ - "1 - Minimal action" - ] - }, - { - "text": "Accelerate the implementation of the National Action Plan for Migration Management ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Invest more resources in the implementation of law on gender equality and for gender equality in the labour market", - "values": [ - "4 - General action" - ] - }, - { - "text": "Adopt a national gender equality policy which would consolidate the variety of pending plans and policies on the subject", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Continue consolidating further an education system in accordance with its population's needs as the only way to move toward a true development with a human face, for which the international community should provide its assistance and cooperation without condition to address the teacher shortage and the current infrastructure needs in the area of education ", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Adopt appropriate and concrete measures to prevent the disadvantageous and unequal status of women and girls", - "values": [ - "4 - General action" - ] - }, - { - "text": "Take measures to ensure non-discrimination against women within all sectors of society, particularly with regard to access to education and employment, and to amend and align all existing laws in this regard", - "values": [ - "4 - General action" - ] - }, - { - "text": "Review legal and administrative requirements for the registration of NGOs, which would simplify the process and encourage the independence of civil society representatives ", - "values": [ - "3 - Considering action" - ] - }, - { - "text": "Change its domestic laws to make confessions obtained under torture inadmissible as evidence in criminal court proceedings against the person who confessed.", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Release all Palestinian and Syrian detainees and put an end to all the practices that seek to modify the demographic composition and architecture of Jerusalem and the Syrian Golan", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Adopt measures at the federal level to prevent and punish excessive use of force by law enforcement officials against members of ethnic and racial minorities, including unarmed persons, which disproportionately affect Afro- American and undocumented migrants", - "values": [ - "4 - General action" - ] - }, - { - "text": "Continue to train and improve the level of education and awareness of the judiciary and law enforcement bodies in the field of human rights ", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Advance its National Human Rights Commission in a manner consistent with the Paris Principles.", - "values": [ - "4 - General action" - ] - }, - { - "text": "Consider amending domestic legislation to pave the way for ratification of a number of other key regional and international human rights conventions", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Take measures for the promotion and protection of the rights of migrants and their families", - "values": [ - "4 - General action" - ] - }, - { - "text": "Take the necessary steps to ensure that all persons in prison or detention centers are treated according to Togolese laws and international obligations", - "values": [ - "4 - General action" - ] - }, - { - "text": "Ratify the ICCPR, the ICESCR, as well as their protocols", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Zambia remains committed to ratifying all human rights instruments and a process of internal consultations have already started as part of this process. Zambia is also currently in the process of carrying out a mapping exercise of all human rights treaties to which Zambia is party with a view of domesticating the same ", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Adopt national legislation to protect child rights, create follow-up mechanisms, criminalize the worst forms of child labour and accede to international treaties banning this practice ", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Adopt a rights-based approach to climate change policy at home and abroad, including by reducing greenhouse gas emissions to safe levels that are consistent with the full enjoyment of human rights ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Provide those held on State-security charges with all fundamental legal safeguards, including access to counsel, public trial and sentencing, and eligibility for sentence reduction and parole", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Ratify the Optional Protocol to the Convention against Torture and Other Cruel, Inhuman or Degrading Treatment or Punishment and take swift measures to ensure the human rights of convicts and persons in custody", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Continue to implement the Poverty Reduction Strategies Programme II ", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Sign and ratify the International Convention for the Protection of All Persons from Enforced Disappearance CED", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Establish an effective mechanism to address the claims of indigenous people to their traditional lands, with the appropriate participation of indigenous groups, and that resulting decisions are implemented ", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Consider adopting legislation or other new measures to more fully monitor, report, investigate, and prosecute all allegations of torture, extrajudicial execution, or other abuse of those in prison ", - "values": [ - "3 - Considering action" - ] - }, - { - "text": "Reinforce and implement the protection of vulnerable groups, namely children, women, disabled, elderly, and make a greater effort to include ethnic and religious groups in the life of Myanmar society", - "values": [ - "4 - General action" - ] - }, - { - "text": "Adopt further measures to reduce the gender pay gap in all sectors of the economy ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Establish an independent judiciary free from control of the Executive with impartial prosecutions in all cases", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Without further delay, take steps to adopt the laws called for in its Constitution to safeguard the unique status of independent agencies in Tunisia", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Continue efforts to guarantee a life with dignity for its citizens ", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Put an end to extrajudicial killings, including those related to the war on drugs, enforced disappearances, illegal arrests and detention, torture, harassment and other human rights violations", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Take policy and other measures which ensure the enjoyment of freedom of expression, opinion and assembly ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Step up efforts to achieve equality and eliminate discrimination against women, afro-descendants and indigenous, and improve their access to education, housing, health and employment ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Extend the moratorium on the death penalty and abolish the death penalty, especially for juveniles, in keeping with its international commitments", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Adopt the necessary legislation to explicitly prohibit violence against children, including corporal punishment ", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Step up efforts aimed at combating FGM, inter alia by improving the monitoring mechanism, and fighting against the stereotypes and the culture of no-reporting, also through awareness-raising campaigns targeted to communities as well as individuals ", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Consider ratifying the International Convention on the Protection of the Rights of All Migrant Workers and Members of Their Families, the Optional Protocol to the Convention on the Elimination of All Forms of Discrimination against Women and the three Optional Protocols to the Convention on the Rights of the Child", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Raise awareness as to the issue of female genital mutilation (FGM) and adopt adequate legislation prohibiting the practice of FGM and continue to implement effective programmes to sensitize the population about the harmful effects caused by this practice", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Ensure that children with disabilities are able to exercise their right to education and provide for their inclusion in the mainstream education system ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Ensure that asylum seekers are not imprisoned with regular offenders and that their treatment is reasonable and proportionate to individual cases and circumstances", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Accede to the request of the Special Rapporteur on the promotion and protection of the right to freedom of opinion and expression, introduced in 2003 and renewed in 2005, to visit the country ", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Urgently hold accountable those responsible for serious crimes committed between 1962 and 2008, ensuring transitional justice mechanisms include: witness and victim protection, an independent prosecutor, and an international commissioner. There should be no amnesty for those who committed war crimes, crimes against humanity or genocide", - "values": [ - "4 - General action" - ] - }, - { - "text": "Accelerate the implementation of legislation prohibiting the worst forms of child labour", - "values": [ - "4 - General action" - ] - }, - { - "text": "Adopt plans and programmes to eliminate torture and other forms of inhumane treatment and such education should be provided to prison authorities and wardens", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Enact comprehensive legislation which prohibits discrimination on all grounds to ensure the full enjoyment of all human rights by every member of society ", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Guarantee freedom of expression and protect journalists against any form of intimidation", - "values": [ - "4 - General action" - ] - }, - { - "text": "Ratify the Optional Protocol to the Convention on the Rights of the Child on the involvement of children in armed conflict.", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Speed up internal procedures towards the approval of the draft bill to abolish the death penalty", - "values": [ - "4 - General action" - ] - }, - { - "text": "Review its reservations to certain articles of the ICCPR and ICESCR with a view to withdrawing them ", - "values": [ - "3 - Considering action" - ] - }, - { - "text": "Commute all death penalty sentences with a view to abolishing capital punishment", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Take all necessary measures to prevent and avert illegal treatment by law enforcement authorities", - "values": [ - "4 - General action" - ] - }, - { - "text": "Complete the process of ratification of relevant international instruments ", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Enact a law criminalizing domestic violence and providing specific penalties for cases of domestic violence", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Ratify and accede to the Convention against Torture, the International Convention on the Protection of the Rights of All Migrant Workers and Members of Their Families and the International Convention for the Protection of All Persons from Enforced Disappearance", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Strengthen activities to raise awareness in society of the need to eliminate discrimination, intolerance and hate speech against minorities and other groups", - "values": [ - "4 - General action" - ] - }, - { - "text": "Set up a de jure moratorium on executions with a view to finally abolishing the death penalty as well as commuting any possible death sentences to an imprisonment penalty", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Provide adequate protection for human rights defenders and marginalized groups against racially motivated violence", - "values": [ - "4 - General action" - ] - }, - { - "text": "Take measures to reduce overcrowding in prisons", - "values": [ - "4 - General action" - ] - }, - { - "text": "Continue stepping up efforts to establish an independent National Human Rights Institution in conformity with the Paris Principles", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Continue its efforts to provide gender equality and promote women\u2019s representation at the decision-making level", - "values": [ - "4 - General action" - ] - }, - { - "text": "Strengthen the protection of minorities by having a fully inclusive electoral roll without discrimination or religious bias and by establishing an independent National Commission for Minorities from all faith communities, which should appoint its own representatives", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Facilitate the access of United Nations agencies and other humanitarian actors to conflict zones", - "values": [ - "4 - General action" - ] - }, - { - "text": "Continue to strengthen its domestic framework and institutions to combat human trafficking", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Ratify those core human rights treaties to which Fiji is not yet a party and draw up a timetable for doing so", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Continue its efforts to create the necessary institutional infrastructure that contributes to the overall improvement of the human rights regime in Afghanistan, with all the necessary technical and financial support from the international community.", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Explicitly and entirely prohibit any kind of corporal punishment of children by law, even in cases of so-called reasonable chastisement within the family", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Reduce the prison population ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Adopt a law prohibiting corporal punishment against children in all spheres\n\n", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Step up efforts to achieve universal basic education and implement specific measures to reduce and prevent girls from dropping out of school ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Enhance efforts aimed to achieve additional progress in the process of promoting economic, social and cultural rights, especially the rights of women, children and people with disabilities ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Proceed swiftly with the ratification of OP-CAT", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Sign and ratify the International Convention for the Protection of All Persons from Enforced Disappearance, and recognize fully the competence of the Committee on Enforced Disappearances ", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Early establishment and early operationalization of the national human rights institution", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Continue its efforts towards implementing and enforcing the Haitian Strategy for Development", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Take effective measures for the recognition of all minorities in order to fully protect their rights, their language, religion, culture and identity", - "values": [ - "4 - General action" - ] - }, - { - "text": "Increase efforts to guarantee women\u2019s access to justice, protection and other remedies and put in place stronger mechanisms to protect women and girls from gender-based violence and provide redress to victims", - "values": [ - "4 - General action" - ] - }, - { - "text": "Develop and implement the policies that promote the rights of the child and accede to the Optional Protocols to the Convention on the Rights of the Child on the involvement of children in armed conflict and on the sale of children, child prostitution and child pornography", - "values": [ - "4 - General action" - ] - }, - { - "text": "Become a party to the CPED", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Solomon Islands is also committed to submitting its periodic reports to the Committee on the Elimination of Discrimination against Women and the Committee on the Rights of the Child", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Prohibit the sterilization of persons with disabilities, unless they provide their free and informed consent", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Ratify the Optional Protocol to the Convention on the Rights of the Child on a communications procedure, the Optional Protocol to the International Covenant on Civil and Political Rights, and the Optional Protocol to the International Covenant on Economic, Social and Cultural Rights", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Adopt legislative and administrative measures to improve the living conditions of indigenous peoples, effectively combat and prevent violent action against indigenous women and girls through legal measures ", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Ensure that all persons deprived of their liberty are treated with humanity and with respect for the inherent dignity of the human being ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Continue efforts to facilitate a greater participation and representation of women in public offices and in higher levels of decision- making positions", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Protect the economic, social and cultural rights of Amazigh minorities", - "values": [ - "4 - General action" - ] - }, - { - "text": "Early adoption of the Women's Empowerment and Gender Equality Bill ", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Repeal all discriminatory laws against irregular migrants and take action to investigate and prosecute discriminatory acts by public and security officials, in particular where racial and religious motives are aggravating factors", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Make a full explanation of the relationship between the restrictive actions taken by the authorities and the Constitution", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Implement policies and measures that guarantee fully the human rights of indigenous peoples and improve their living conditions and standards ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Provide adequate human resources and budget to implement its national anti-trafficking in persons policies and programs", - "values": [ - "4 - General action" - ] - }, - { - "text": "Implement the Decision of the African Union on Consolidation of Peace and Security in the Country", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "End all settlement activities in the occupied Arab territories, including the West Bank and East Jerusalem", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Take the necessary steps to ensure that the new constitution is implemented while protecting human rights and thus ensuring its provisions on gender equality, lesbian, gay, bisexual and transgender persons, and minorities", - "values": [ - "4 - General action" - ] - }, - { - "text": "Increase budget allocation to the education sector", - "values": [ - "4 - General action" - ] - }, - { - "text": "Ratify all the instruments that have already been signed, in particular the International Convention on the Elimination of All Forms of Racial Discrimination, the Convention on the Elimination of All Forms of Discrimination against Women, the Convention against Torture and Other Cruel, Inhuman or Degrading Treatment or Punishment and the International Convention for the Protection of All Persons from Enforced Disappearance", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Improve the situation of the Roma population, particularly as concerns housing", - "values": [ - "4 - General action" - ] - }, - { - "text": "The Government was also committed to adopting a law to professionalize the prison service", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Continue to increase the empowerment of women in the national institutions", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Amend discriminatory provisions based on sexual orientation or gender identity, in particular with regard to equality of access to services and public office", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Adopt specific legislation punishing violence against children, including the prohibition of corporal punishment - move forward in taking the measures necessary for the registration of the highest possible number of births - support educational policies aimed at enabling girls to continue their education and eliminating stereotypes regarding gender roles - initiate awareness-raising programmes, particularly in rural areas, in order to change the tendency to value child labour more than education, and encourage access for minority children to education in their mother tongue", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Strengthen efforts regarding the effective measures on the registration of all children born in Myanmar without any discrimination", - "values": [ - "4 - General action" - ] - }, - { - "text": "While commending the Government on the measures already taken, in particular the draft act on equal treatment, the system of human rights advisers, and related research and training, recommended that steps continue to be taken by Poland to follow up on the recommendations of the Human Rights Committee.", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Continuing strengthening its migration policies in the most effective manner in order to address prejudice, racism, racial discrimination, xenophobia and other forms of intolerance ", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Promote and develop laws to combat all forms of discrimination, racism and xenophobia", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Sign the 1951 Convention relating to the Status of Refugees and its 1967 Protocol", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Harmonize its legislation in accordance with the Convention on Preventing and Combating Violence against Women and Domestic Violence (the Istanbul Convention) without delay ", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Substantially increase State spending on programmes for indigenous peoples and institutions. This can help address poverty while ensuring the meaningful participation of, and consultation with, indigenous peoples in decisions affecting them and their rights", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Develop and implement training programmes for current and trainee police officers to address stigmatisation and discrimination of lesbian, gay, bisexual, transgender and intersex persons", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Ensure that all suspects in police custody have prompt access to a lawyer at the outset of detention", - "values": [ - "4 - General action" - ] - }, - { - "text": "Sign the Optional Protocol to CRC on Communications Procedure ", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Continue to cooperate with the United Nations and other international organizations to strengthen human rights ", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Prohibit the practice of corporal punishment ", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Strengthen national procedures for the protection of the rights of socially vulnerable groups of the population, including women, children, persons with disabilities and older persons", - "values": [ - "4 - General action" - ] - }, - { - "text": "Consider extending an open and standing invitation to the special procedures of the United Nations, which may contribute to interactive cooperation with the system ", - "values": [ - "3 - Considering action" - ] - }, - { - "text": "Ratify the Kampala amendments to the Rome Statute of the International Criminal Court, if possible with a view to contributing to the activation of the jurisdiction of the International Criminal Court, over the crime of aggression at the beginning of 2017", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Consider extending a standing invitation to special procedures mandate holders", - "values": [ - "3 - Considering action" - ] - }, - { - "text": "In line with the Constitution of Burundi, continue measures to combat discrimination and violence against albinos", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Adopt a strategy and an action plan at the federal level on gender equality to promote policies at the cantonal level to combat discrimination against women in the public and private spheres and put an end to all forms of violence, in line with the 2030 Agenda for Sustainable Development", - "values": [ - "4 - General action" - ] - }, - { - "text": "Consider drafting a national action plan on addressing the question of racism and racial discrimination faced by persons of African descent ", - "values": [ - "3 - Considering action" - ] - }, - { - "text": "Fully explore the possibility of establishing an independent national human rights institution in compliance with the Paris Principles ", - "values": [ - "3 - Considering action" - ] - }, - { - "text": "Comply with the recommendations of its first UPR relating to human rights violations against the Palestinian people", - "values": [ - "4 - General action" - ] - }, - { - "text": "Ratify the Rome Statute of the International Criminal Court as well as the Optional Protocol to the Convention against Torture and Other Cruel, Inhuman or Degrading Treatment or Punishment and establish a National Torture Prevention Mechanism", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Continue harmonizing its national legislation in line with commitments assumed at the international level", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Ensure the national health and HIV policies and strategies are inclusive and accessible to all vulnerable groups, including adults and children with disabilities", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Prevent and eradicate child labour through a national strategy ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Consider de-criminalizing same-sex relations", - "values": [ - "3 - Considering action" - ] - }, - { - "text": "Consider the repeal of those rules that discriminate against women on the basis of their civil status, religious affiliation, place of residence or membership of any ethnic minority", - "values": [ - "3 - Considering action" - ] - }, - { - "text": "Liberalize the work of mass media, and draw a clear distinction between the legitimate fight against terrorism and strict respect for freedom of religion.", - "values": [ - "4 - General action" - ] - }, - { - "text": "Ensure accountability for human rights violations and environmental damage resulting from the global or overseas operations of companies registered or headquartered in the Netherlands", - "values": [ - "4 - General action" - ] - }, - { - "text": "Seek to obtain financial assistance in order to implement poverty reduction plans", - "values": [ - "1 - Minimal action" - ] - }, - { - "text": "Finalize the measures undertaken for the amendment of the national legislation related to trafficking in children", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Immediately renew the dialogue with all parties to the conflict and take a position in support of a political solution that is inclusive and consensual, emphasizes the protection of human rights and would lead to the sustainable restoration of democracy and a return to constitutional order in the country", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Developing an inter-institutional training strategy in that area", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Intensify its efforts to addressing the issues of education, poverty and health", - "values": [ - "4 - General action" - ] - }, - { - "text": "Take legislative and practical measures with a view to the realization of the right to freedom of religion and belief ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Ratify the International Convention on the Rights of Migrant Workers and Members of their Families, to supplement the rights of this vulnerable category ", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Step up efforts to reduce impunity for human rights violations ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Promote the realization of the right of everyone to take part in cultural life, including by ensuring the facilitation of access to cultural goods, particularly for disadvantaged and marginalized individuals and groups", - "values": [ - "4 - General action" - ] - }, - { - "text": "Persevere efforts to build a truly inclusive democracy by fully recognizing the rights of indigenous peoples", - "values": [ - "4 - General action" - ] - }, - { - "text": "Consider the possibility of abolition of capital punishment.", - "values": [ - "3 - Considering action" - ] - }, - { - "text": "Continue to combat violence and crime in large cities", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Strengthen the protection of rights and interests of women and children and other vulnerable groups", - "values": [ - "4 - General action" - ] - }, - { - "text": "Avail itself of technical assistance from OHCHR towards implementation of its obligations under international laws and treaties", - "values": [ - "1 - Minimal action" - ] - }, - { - "text": "Multiply the activities undertaken to increase the participation of women in political life and in decision-making", - "values": [ - "4 - General action" - ] - }, - { - "text": "Take further steps towards ratifying the Optional Protocol to the Convention against Torture", - "values": [ - "4 - General action" - ] - }, - { - "text": "Adopt and enact the Law on the Status of Judges, the Amendment of the Law on the Organization and Functioning of the Supreme Council of Magistracy and the anti-corruption law in accordance with recommendations made by the Special Representative of the Secretary-General for human rights in Cambodia, the United Nations Development Assistance Framework and the Committee on Economic, Social and Cultural Rights, respectively, and create and adopt a code of conduct for judges, prosecutors and disciplinary councils, including disciplinary provisions", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Continue its efforts to implement the adopted Strategies to eliminate any remaining gender-based discrimination", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Expedite the ratification of the Optional Protocol to CEDAW", - "values": [ - "4 - General action" - ] - }, - { - "text": "Implement measures adopted to educate foreign workers, in their native languages, of their rights and responsibilities and avenues for assistance ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Continue to fight effectively against racist statements that persist in political discourse in order to avoid associating migrants, insecurity and unemployment", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Establish training and awareness mechanisms to combat sexual violence against women and fight the culture of denial and stigma so the women may seek medical care and establish judicial complaints against perpetrators", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Draw a plan of action against torture and ill-treatment with a view to their eradication, and bring to justice all suspected perpetrators of these acts", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Continue efforts to protect the environment", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Issue a standing invitation to all special procedures and respond positively to all outstanding visit requests ", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Incorporate the crime of torture into domestic law, as recommended by the Committee against Torture", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Immediately release persons detained or imprisoned for exercising their freedom of expression on the Internet", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "While recognizing achievements of the Instance Equité - Reconciliation (IER), to continue to implement the remaining recommendations of the IER.", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Put an end to the harassment of journalists and release those detained without any valid grounds", - "values": [ - "4 - General action" - ] - }, - { - "text": "Bring its penal code into conformity with its international human rights obligations by repealing those provisions which criminalize same-sex activity between consenting adults ", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Support the gender integration in all spheres of life", - "values": [ - "4 - General action" - ] - }, - { - "text": "Continue improving the level of education of the population and putting into practice, among other measures, the State Programme of Education Development up to 2020", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Continue cooperating with the United Nations and other international organisations and share good experience and practices with other countries in order to overcome the remaining challenges", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Do all the necessary to prevent and effectively and thoroughly investigate all violent attacks against the Roma, including those committed by the police forces ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Develop a national human rights strategy and action plan, while also intensifying its public awareness campaign to the general public and other interested stakeholders ", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Ratify the ICRMW and the UNESCO Convention against Discrimination in Education", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Apply rigorously the law on the prevention and punishment of violence against women", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Take measures to strengthen efforts to reduce infant and child mortality, including by focusing on preventative measures and treatment, improved nutrition and a structured vaccination process", - "values": [ - "1 - Minimal action" - ] - }, - { - "text": "Take further measures and initiatives to implement the Strategy for the Protection of Labours", - "values": [ - "4 - General action" - ] - }, - { - "text": "Consider amending its Penal Code and Family Protection Act to ensure that spousal rape is criminalized, and that the definition of rape includes any form of non-consensual penetration of or by a sexual organ and that the definition be gender neutral so that men and boys are also protected by the rape laws", - "values": [ - "3 - Considering action" - ] - }, - { - "text": "Acknowledge and enhance the important role of women in peacebuilding and in the decision-making process", - "values": [ - "4 - General action" - ] - }, - { - "text": "Take steps to ensure that the measures of austerity do not negatively impact economic, social and cultural rights, specially the rights to adequate housing, health, food and education", - "values": [ - "4 - General action" - ] - }, - { - "text": "Intensify the programs on combatting HIV/AIDS", - "values": [ - "4 - General action" - ] - }, - { - "text": "Ensure the full protection of the rights to freedom of expression, association, assembly, religion and belief by all United Arab Emirates residents ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Elaborate and enact the anti-trafficking legislation in line with international norms and standards", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Continue its efforts to reach the Millennium Development Goals by 2015 and increase the number of its primary and secondary schools and ensure parity at all levels of education, to strengthen higher education, to curb the high rate of illiteracy among women and to reduce child mortality and mortality among the general population of Djibouti ", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Take concrete actions to reduce the gender gap in decision-making positions as well as to ensure equal remuneration for men and women ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Bolster the National Human Rights Commission to enable it to carry out its mandate ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Become party to the International Convention on the Protection of the Rights of All Migrant Workers and Members of Their Families and to the ILO Indigenous and Tribal Peoples Convention, 1989 (no. 169) ", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Eliminate the disparities in access to services by Aboriginal and Torres Strait Islander children and their families, especially by reviewing the Australian birth registration process in order to ensure that all children are registered at birth", - "values": [ - "4 - General action" - ] - }, - { - "text": "Reinforce safeguards for judicial independence and for the objectivity and impartiality of prosecutors ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Take further measures to improve the conditions of detention and to investigate deaths in detention and bring those responsible to justice ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Achieve food security through, among others, securing adequate food assistance, increasing food production, adopting better agricultural technology and improving the food distribution system ", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Continue the measures with regard to strengthening self-reliance of the returning refugees and IDPs", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Adopt and implement a sound legal framework and appropriate policies to address the issue of discriminatory practices against Roma in the education system, utilizing the definition of segregation provided by the case law of the European Court of Human Rights and of the regional court in Presov, including measures to ensure that the court%u2019s definition of ethnic segregation in education is disseminated and promoted to the relevant stakeholders", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Criminalize the act of exploiting both boys and girls and the incidence of child tourism, as well as prosecute the perpetrators in the travel and tourism industry by imposing stiffer punishments on them", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Cooperate fully with the United Nations to ensure rapid, safe and unhindered humanitarian access to those in dire need", - "values": [ - "4 - General action" - ] - }, - { - "text": "Intensify the promotion of gender equality and encourage the presence of women in high-level positions ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Ratify the Convention on the Protection of the Rights of All Migrant Workers and Members of Their Families", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Increase overseas development assistance to aim at achieving the agreed target of 0.7 per cent of GDP", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Fully cooperate with the Commission of Inquiry", - "values": [ - "4 - General action" - ] - }, - { - "text": "Ensure gender equality at the workplace ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Strengthen its cooperation with the special procedures of the Human Rights Council by responding positively to the pending visit requests and eventually consider extending a standing invitation to all the special procedures mandate holders", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Protect the rights of the vulnerable groups of the population, such as women, children, and persons with disabilities and elderly persons ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Ratify without reservations the Optional Protocol to the International Covenant on Economic, Social and Cultural Rights and opt in to the inquiry and inter-State procedures", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Conclude the drafting and adoption of the national preventive mechanism against torture and other ill-treatment in accordance with the Optional Protocol to the Convention against Torture", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Abolish immediately the death penalty ", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Take further measures to advance the participation of women in decision-making bodies", - "values": [ - "4 - General action" - ] - }, - { - "text": "Identify through its domestic discussion effective ways and means to prevent and suppress manifestation of racism, xenophobia and intolerance", - "values": [ - "4 - General action" - ] - }, - { - "text": "Invite United Nations Special Rapporteurs to visit and investigate Guantanamo Bay prison and United States secret prisons and to subsequently close them ", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Continue its efforts along the path of promotion and protection of human rights in all fields", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Expedite the adoption of the Child Protection Code", - "values": [ - "4 - General action" - ] - }, - { - "text": "Continue efforts in connection with the integration of disabled children in formal education as far as possible, in accordance with an inclusive educational approach", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Continue strengthening its legislation to eliminate all provisions that undermine freedom of expression", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Promote active presence of women in society", - "values": [ - "4 - General action" - ] - }, - { - "text": "Ratify without delay OP-CAT and, in this context, establish a national mechanism for the prevention of torture as provided by this instrument", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Investigate all allegations of violation of human rights and humanitarian law in a prompt, transparent and impartial manner ", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Continue efforts to resolve the problems of internally displaced persons, and take all measures necessary to implement the Government's National Reconciliation and Emergency Social and Economic Recovery Strategy and the National Cohesion and Integration Act of 2008 ", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Ensure that all the initiatives taken in the field of reconciliation comply with international standards on human rights, beginning with a comprehensive fight against impunity ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Explore ways and means of strengthening the ongoing efforts to combat all forms of discrimination to improve the scope of protection against discrimination at all levels in society", - "values": [ - "4 - General action" - ] - }, - { - "text": "Within the context of the National Programme of Action, adopt further measures and implement programmes to provide access and opportunities for ensuring better social and political integration of Roma groups in Montenegro", - "values": [ - "4 - General action" - ] - }, - { - "text": "Accede to the Optional Protocol to the Convention on the Elimination of All Forms of Discrimination against Women and the Optional Protocol to the Convention against Torture and other Cruel, Inhuman or Degrading Treatment or Punishment ", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Introduce and adopt a gender strategy that would be implemented in the higher education institutions ", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Fully implement the National Strategy on Gender Equality and Domestic Violence, intended to tackle violence against women ", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Consider taking necessary measures to accept individual complaints about violations of rights enshrined in Human Rights treaties and protocols ratified by Japan that foresee such a procedure", - "values": [ - "3 - Considering action" - ] - }, - { - "text": "Etablish juvenile courts throughout the country to enable the incarceration of children and adolescents separately from adults", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Establish an alternative service under civilian control for conscientious objectors, in conformity with the international human rights obligations of the Republic of Korea", - "values": [ - "4 - General action" - ] - }, - { - "text": "Continue efforts to improve education and raise school enrolment at the primary level", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Adopt urgent measures to address the increasing vulnerability of journalists working in the country, including at the legal level - see crimes of press - and by protecting them from suppression and impunity", - "values": [ - "4 - General action" - ] - }, - { - "text": "In cooperation with UNESCO and other relevant organizations, continue to step up efforts to improve access to quality education ", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Promote equal socio-economic as well as educational opportunities for all both in law and in fact, regardless of their ethnicity, race, religion, national origin, gender or disability ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Ratify the Convention on the Rights of Persons with Disabilities and the International Labour Organization Discrimination (Employment and Occupation) Convention, 1958 (No. 111)", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Continue its awareness-raising programmes with a view to putting an end to the use of corporal punishment in schools", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Continue the programmes aimed at improving the living conditions of its population ", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Continue its efforts to reduce poverty ", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Subscribe to the Optional Protocol to the Convention on the Rights of Persons with Disabilities ", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Promptly follow up on the findings of the independent investigation into extrajudicial police shootings over the period 2010-2011 in order to hold those responsible to account and to ensure rule of law", - "values": [ - "4 - General action" - ] - }, - { - "text": "Take steps to ensure that basic human rights principles are respected within all elements in its pluralistic legal system", - "values": [ - "4 - General action" - ] - }, - { - "text": "Consider being party to the International Convention on Protection of the Rights of All Migrant Workers and Members of Their Families, the Convention on the rights of Persons with Disabilities and its Optional Protocol, the Convention against Torture and Other Cruel, Inhuman or Degrading Treatment or Punishment and its Optional Protocol, the Optional Protocol to the International Covenant on Economic, Social and Cultural Rights, the Optional Protocol to the International Covenant on Civil and Political Rights, the Optional Protocol to the Convention on the Elimination of All Forms of Discrimination against Women and the Optional Protocol to the Convention on the Rights of the Child on the Sale of Children, Child Prostitution and Child Pornography", - "values": [ - "3 - Considering action" - ] - }, - { - "text": "Adopt a legislative measure prohibiting and repressing all forms of discrimination against non-citizens, and a law eliminating the stereotypes that constitute the cause of violence against women", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Increase the necessary resources to the service of the Coroner to allow him to carry out impartial, swift and effective investigations on all the deaths linked to the conflict in Northern Ireland", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Expedite ratification of the Convention against Torture and Other Cruel, Inhuman or Degrading Treatment or Punishment and its Optional Protocol ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Take more effective measures and procedures to reduce poverty and equality in income ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Strengthen without delay the measures to fight against sexual violence and amplify efforts to ensure gender equality and women's participation in peacebuilding, as recommended previously", - "values": [ - "4 - General action" - ] - }, - { - "text": "Brief the Human Rights Council in their UPR mid-term review report on the lessons learnt of the National Action Plan on Fundamental and Human Rights, including on the effectiveness of the established indicators ", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Continue to strengthen its capacity in addressing the issue of violence against women as well as children ", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Fight against the unemployment rate of people with disabilities, which still is three times higher than the average", - "values": [ - "4 - General action" - ] - }, - { - "text": "Ensure a credible independent investigation of the July 2010 Bocas del Toro incident, and prosecute all perpetrators of alleged human rights violations in compliance with international standards ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Continue its efforts to implement policies to enhance the protection of women against violence ", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Allocate specific funding within its health budget for child, maternal and reproductive health", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Adopt the additional necessary measures to ensure the full enjoyment of human rights by the vulnerable groups which are subjected to discrimination, such as lesbian, gay, bisexual, transgender and intersex persons, including the investigation and punishment of cases of discrimination, as well as the abrogation of norms that criminalize and stigmatize", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Take all necessary measures to ensure effective access to justice to victims of gender violence", - "values": [ - "4 - General action" - ] - }, - { - "text": "Ratify the Rome Statute of the ICC, the 1951 Refugees Convention and its 1967 Protocol, as well as the Conventions on statelessness", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Suppress all decisions allowing the use of torture in accordance with the Convention against Torture, and refrain from using arbitrary and summary executions.", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Bring into law the Prevention of Communal and Targeted Violence bill (2013)", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Uphold the right to freedom of expression, including journalists and human rights defenders, in particular taking steps to ensure that defamation charges are not used to undermine the right to freedom of expression", - "values": [ - "4 - General action" - ] - }, - { - "text": "Ratify, as soon as possible, the Convention for the Protection of All Persons from Enforced Disappearance ", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "To reflect in domestic law-in particular the Penal Code and Code of Criminal Procedure-Bahrain's obligations under international human rights laws and conventions ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Bring all legislation concerning communication surveillance in line with international human rights standards and especially recommends that all communications surveillance requires a test of necessity and proportionality", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Advance women's empowerment, and greater representation of women in all sectors", - "values": [ - "4 - General action" - ] - }, - { - "text": "Ratify the United Nations Convention against Transnational Organized Crime and the Protocol thereto to Prevent, Suppress and Punish Trafficking in Persons, Especially Women and Children", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Continue its process of home-grown reforms to deepen democratic reform and strengthen foundations of modern states in which all citizens enjoy all human rights", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Step up efforts to achieve the effective realization of economic, social and cultural rights for the marginalized and vulnerable groups by ensuring that they are provided with adequate access to food, health, education and fair employment ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Fight against discrimination based on the origin, gender and sexual orientation, by continuing its efforts in the implementation of the existing instruments", - "values": [ - "4 - General action" - ] - }, - { - "text": "Fully capacitate and support the National Women\u2019s Council to better protect and promote the rights of women", - "values": [ - "4 - General action" - ] - }, - { - "text": "Take the necessary measures to get the activities of the Haitian- Dominican Joint Commission going again ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Accede to the Optional Protocol to the Convention on the Rights of the Child on the sale of children, child prostitution and child pornography, the Convention on the Rights of Persons with Disabilities, the International Convention for the Protection of All Persons from Enforced Disappearance ", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Ratify various international human rights statutes and conventions, including the Convention on the Rights of Persons with Disabilities", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Identify lesbian, gay, transgender, bisexual and intersex group as a vulnerable population and include the group in the next National Plan", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Release anyone detained without charges ", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Abolish corporal punishment, in particular public flogging", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Increase involvement in matters of State by women and ethnic minorities ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Ensure that its legislation and practice fully respect article 19 of the ICCPR", - "values": [ - "4 - General action" - ] - }, - { - "text": "Prioritize people-centred and results based socioeconomic development planning in line with the Vision Burundi 2025", - "values": [ - "4 - General action" - ] - }, - { - "text": "Implement an expanded social and voluntary housing programme for Roma families, and in this regard, enhance collaboration with civil society and full participation of all relevant stakeholders", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Actively pursue its cooperation with United Nations mechanisms and the international community to restore security and establish the rule of law", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Run further public awareness campaigns on legal protection against discrimination", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Adapt the military justice system to international standards so that it guarantees the right to a fair trial.", - "values": [ - "4 - General action" - ] - }, - { - "text": "Accede to the Second optional Protocol to the International Covenant on Civil and Political Rights, aimed at abolishing the death penalty, and take the necessary steps to remove the death penalty from Lebanon's justice system", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Facilitate holding peaceful protests, protect all peaceful demonstrators from violence and arbitrary arrest and fight impunity for the use of excessive force against protestors by law-enforcement personnel", - "values": [ - "4 - General action" - ] - }, - { - "text": "Continue its ongoing efforts in tackling the issue of trafficking in persons including prosecution of the perpetrators ", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Continue to adopt its successful social policy of access to education and health services, particularly, of women and girls ", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Fully respect its international obligations regarding the freedoms of assembly and association, in particular with regard to the activities of trade unions, and ensure that its national legislation complies with these obligations", - "values": [ - "4 - General action" - ] - }, - { - "text": "Consider favourably acceding to the International Convention on the Protection of the Rights of All Migrant Workers and Members of Their Families", - "values": [ - "3 - Considering action" - ] - }, - { - "text": "Continue efforts to activate the Decent Life Fund to finance research in the agricultural sector and help the worst affected countries by world crises ", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Ensure that all its laws are free from discrimination against women, in conformity with the ratified treaties by Yemen.", - "values": [ - "4 - General action" - ] - }, - { - "text": "In line with CERD and CEDAW recommendations, to implement fully the antidiscrimination legislation in the labour market including considering the adoption of temporary special measures.", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Continue efforts to effectively prevent human trafficking and reinforce law enforcement and the training of police", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Promote concerted national efforts aimed at combating violence against women, and providing rehabilitation for perpetrators of such acts", - "values": [ - "4 - General action" - ] - }, - { - "text": "Guarantee effective compliance with the precautionary measures of the Inter-American Commission on Human Rights", - "values": [ - "4 - General action" - ] - }, - { - "text": "Ratify the Optional Protocol to the Convention on the Elimination of All Forms of Discrimination against Women and the International Convention on the Protection of the Rights of All Migrant workers and Members of their Families ", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Ensure prompt registration of all new-born children", - "values": [ - "4 - General action" - ] - }, - { - "text": "Continue its efforts to establish a legal framework to protect human rights by ratifying core instruments, especially the International Convention on the Elimination of All Forms of Racial Discrimination ", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Consider ratifying the Rome Statute of the International Criminal Court, the Convention for the Protection of All Persons against Enforced Disappearance, the Convention on the Rights of Persons with Disabilities and the Optional Protocols to the Convention against Torture and the Convention on the Elimination of All Forms of Discrimination against Women", - "values": [ - "3 - Considering action" - ] - }, - { - "text": "With regard to the pre-trial detention regime, put in place appropriate measures that would allow for separation of detainees on the basis of gender and age", - "values": [ - "4 - General action" - ] - }, - { - "text": "Intensify efforts to strengthen the national system for the promotion and protection of human rights", - "values": [ - "4 - General action" - ] - }, - { - "text": "Effectively take steps to prevent torture including through ratification of the OP-CAT at its earlier opportunity and through the establishment of a comprehensive system of independent monitoring and inspection of all places of detention without delay, regardless of the status of OP-CAT ratification ", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Combat all forms of trafficking of children, and formulate a policy of child protection to ensure a better system for safeguarding children's rights ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Continue to strengthen its domestic framework and institutions to combat human trafficking ", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Make official the moratorium on the death penalty with a view to its abolition", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Ensure that no one is discriminated against on any grounds, including on the grounds of sexual orientation and gender identity", - "values": [ - "4 - General action" - ] - }, - { - "text": "Strengthen the social protection system and step up protection of the rights of the elderly", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Further develop measures to ensure that an inclusive education system be available and accessible to all children, including those with disabilities and improve the quality and infrastructure of schools", - "values": [ - "4 - General action" - ] - }, - { - "text": "Sign the Council of Europe Convention on Violence against Women and Domestic Violence", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "The delegation reaffirmed the commitment of Ghana to uphold human rights in the country. To this end, the Government shall continue to consult with all stakeholders in the country to ensure that respect for the human rights in Ghana is further improved and advanced, and remains an inclusive process", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Further support existing initiatives aimed at collecting and generating disaggregated data on racism and discrimination ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Continue strengthening its efforts in ensuring the well-being of children, particularly those living in foster care, so that they could enjoy living in a healthy family environment", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Monitor the implementation of Act 779 and provide instruction on the dynamics of violence against women to all persons participating in the mediation processes envisaged under the Act, in order to ensure the full protection of the rights of women ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Consider raising to 18 years the minimum age for the voluntary recruitment to the armed forces, and explicitly define as a crime the violation of the provisions of the Optional Protocol to the Convention on the Rights of the Child on the involvement of children in armed conflict", - "values": [ - "3 - Considering action" - ] - }, - { - "text": "Ensure that all allegations of excessive use of force, torture and cruel and other forms of ill treatment, including in detention places and prisons, committed by law enforcement personnel are thoroughly and objectively investigated, bringing alleged perpetrators to justice and providing appropriate remedies to victims", - "values": [ - "4 - General action" - ] - }, - { - "text": "Undertake national consultation in preparation for the ratification of CRPD.", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Take urgent steps to adopt all appropriate measures to combat the root causes of political instability in Guinea-Bissau, including tackling illicit drug-related corruption and money-laundering", - "values": [ - "4 - General action" - ] - }, - { - "text": "Pay special emphasis on informing members of especially the Roma community, the elderly, women and the disadvantaged of their constitutional rights as citizens", - "values": [ - "4 - General action" - ] - }, - { - "text": "Removing existing legislative barriers for access to gender reassignment-related treatments", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Continue to adopt measures to increase the rate of issuance of birth certificates, especially in rural areas and in low-income households", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Take prompt action to prevent harassment by police officers of members of the national Human Rights Commission, human rights defenders and citizens", - "values": [ - "4 - General action" - ] - }, - { - "text": "Continue to spearhead progress towards gender equality and development for women, in particular by giving due consideration to the recommendations of the Inter-agency Committee coordinated by the Ministry of Women, Family and Development regarding the compliance of Malaysia with the Convention on the Rights of the Child and the Convention on the Elimination of Discrimination Against Women and the withdrawal of its reservations to both conventions", - "values": [ - "4 - General action" - ] - }, - { - "text": "Pursue the changes envisioned with regard to the criminal liability of minors", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Ensure that the establishment of the Independent Human Rights Commission Bill is Paris Principle compliant and that the establishment is in line with a transparent and inclusive nomination and appointment process", - "values": [ - "4 - General action" - ] - }, - { - "text": "Establish and effectively apply the legal provisions authorizing abortion, in cases when pregnancies are due to rape or incest, or when it is established that the foetus is not viable, or when the life or the health of the mothers is at risk", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Put in place a comprehensive strategy to eliminate patriarchal attitudes and negative stereotypes of women in the Tunisian society as well as eliminate discrimination against women that still exists in the national legislation, in particular concerning marriage, child custody, guardianship, as well as effective and equal access to justice ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Abolish the death penalty and any legal provisions that provide for the death penalty", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Issue a standing invitation to the special procedures of the Human Rights Council.", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Protect children in the womb, notwithstanding undue pressure from certain groups.", - "values": [ - "4 - General action" - ] - }, - { - "text": "Expedite the investigation of all human rights allegations with a view towards bringing the perpetrators to justice ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Ensure the protection of human rights of all Rohingya Muslims, address discrimination against them including by combating incitement to hatred and publicly condemning such acts as well as taking all the necessary measures to ensure accountability for violations of human rights against Rohingya Muslims in Myanmar", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Evaluate the possibility of promulgating a draft bill on the abolishment of the death penalty, which is still pending before the National Assembly", - "values": [ - "3 - Considering action" - ] - }, - { - "text": "Take the necessary measures to take into account gender aspects at all levels of the educational system, including teachers' training ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Continued efforts towards achieving the development goals in accordance with Tanzania's specific vision", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Ratify the Convention Against Torture and Other Cruel, Inhuman or Degrading Treatment or Punishment and fully implement its provisions ", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Harmonize the rights of homosexual couples with those of heterosexual couples", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Ratification of International Labour Organization (ILO) Convention concerning Indigenous and Tribal Peoples in Independent Countries No. 169, of 27 June 1989, by the last quarter of 2009", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Ratify the ILO Convention 189 on Decent Work for Domestic Workers", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Adopt legislation to combat discrimination, racism, extremism and xenophobia", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Take effective measures to counter the incitement to discrimination and violence in the media", - "values": [ - "4 - General action" - ] - }, - { - "text": "Sign and ratify the Convention against Torture and Other Cruel, Inhuman or Degrading Treatment or Punishment and the International Convention for the Protection of All Persons from Enforced Disappearance ", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Improve the quality, availability and accessibility of primary health-care services, to reduce high rates of infant and maternal mortality", - "values": [ - "4 - General action" - ] - }, - { - "text": "Strengthen the coordination between the National Police and the Public Prosecutor's office ", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Ensure that human rights defenders, independent journalists or lawyers and civil society representatives are effectively protected from any form of intimidation and harassment while performing their legitimate duties ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Increase resources from the State budget and mobilize more financial resources from international cooperation to implement policies on social security ", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Continue its endeavours in relation to the protection and promotion of the rights of children", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Strengthen cooperation with the United Nations human rights mechanisms and issue a standing invitation to special procedure mandate holders", - "values": [ - "4 - General action" - ] - }, - { - "text": "Continue to make sure that its legislation and practices in the fight against terrorism match its\ninternational obligations related to human rights, international humanitarian law and refugee law\n", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Protect all workers from abuse by prosecuting perpetrators of labour abuses, adopting laws to protect victims, and better apprising foreign workers of their legal rights and remedies", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Strengthen the human rights component in school curriculums and education programmes for the public, with special focus on women's rights ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Eliminate abuse of psychiatric committal", - "values": [ - "4 - General action" - ] - }, - { - "text": "Eliminate obstacles to the enrolment of children without identity documents and asylum seekers in secondary education and ensure that foreign children have the highest possible level of education", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "To put in place everything to combat child exploitation notably to follow up on the recommendations made by the Independent Expert on this subject", - "values": [ - "4 - General action" - ] - }, - { - "text": "Take all necessary measures to reduce the existing situation of discrimination and proceed in the near future to the equal allocation of lands, irrespective of the nationality of the owners.", - "values": [ - "4 - General action" - ] - }, - { - "text": "Ensure the effective implementation of the Family Protection Act of 2014", - "values": [ - "4 - General action" - ] - }, - { - "text": "Continue efforts to clear the backlog observed in the process of ratification of certain legal instruments, in accordance with the recommendations formulated in its first universal periodic review of Belgium", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Take responsible measures against the continuous public manifestations of hate speech by some politicians", - "values": [ - "4 - General action" - ] - }, - { - "text": "Amend the Act No. 107/2013 on the Right to Public Meetings and Peaceful Assemblies", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Establish the national preventive mechanism against torture in accordance with the Optional Protocol to the Convention against Torture and ensure independent and effective investigation and prosecution of all cases of alleged ill-treatment of persons in detention facilities and prisons as well as remedies for victims", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Take steps to ensure by both legislative and non-legislative measures, including initiatives for the promotion of multiculturalism, the protection of all religions and faiths and the non-escalation of hatred among people of different religions and faiths, based on the tenets of understanding, mutual acceptance and respect ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Consolidate all people centred programmes to fight forces of negation", - "values": [ - "4 - General action" - ] - }, - { - "text": "Resume as soon as possible, measures of social protection and care for those most affected by the severe effects of the crisis", - "values": [ - "4 - General action" - ] - }, - { - "text": "Consider establishing an independent and full-fledged national human rights institution in accordance with the Paris Principles.", - "values": [ - "3 - Considering action" - ] - }, - { - "text": "Conduct awareness-raising campaigns concerning equality between men and women ", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Prepare and adopt legal and administrative measures with a view to investigating and prosecuting acts of discrimination, stigmatization and violence against LGBTI persons", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Evaluate the possibility to set out, as a national priority, the full realization of the right to water and sanitation, which is essential to achieve other priorities established such as health, education and gender equality ", - "values": [ - "3 - Considering action" - ] - }, - { - "text": "Apply stronger measures to combat discrimination, xenophobia and incitement to hatred", - "values": [ - "4 - General action" - ] - }, - { - "text": "Continue its efforts to organise intensive courses for members of the public prosecutor office in the field of human rights, in line with the steps being made for the independence of the public prosecutor and to separate it from the police", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Continue the process of acceding to the appropriate ILO conventions.", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Abolish completely the system of propiska and adopt further measures to ensure that both its legal system and practice comply with the protection of freedom of movement ", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Continue its efforts to enhance religious tolerance and harmony among the vast and diverse society of Indonesia through the existing Religious Harmony Forum both at the national and sub-national levels ", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Abrogate all laws prohibiting consensual sexual relations between adults of the same sex ", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Continue its efforts to reform the legal and judicial systems ", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "The Executive and Judicial authorities in Uruguay should continue to cooperate to facilitate investigations into serious violations of human rights, including cases of involuntary disappearances that occurred during the era of Operation Condor ", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Intensify efforts to ratify the Optional Protocol to the Convention against Torture and Other Cruel, Inhuman or Degrading Treatment or Punishment", - "values": [ - "4 - General action" - ] - }, - { - "text": "Consider signing and/or ratifying the ICRMW", - "values": [ - "3 - Considering action" - ] - }, - { - "text": "Prohibit all forms of corporal punishment of children in all settings ", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Engage in consultation with pro-transparency organizations and other relevant stakeholders prior to developing or implementing new legislation on Freedom of Information", - "values": [ - "4 - General action" - ] - }, - { - "text": "Take additional measures to combat trafficking in persons", - "values": [ - "4 - General action" - ] - }, - { - "text": "Amend the 2014 Commission on Investigation of Disappeared Persons, Truth and Reconciliation Act in compliance with the Supreme Court ruling of 26 February, 2015 in order to uphold international standards relating to accountability for gross violations of international human rights and international humanitarian law", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Cooperate fully and effectively with independent human rights monitoring bodies, including United Nations treaty bodies ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Continue to implement in a comprehensive manner economic and social development to further improve the living standards of its people and reduce poverty and illiteracy ", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Ensure that persons accused of being the authors of or accomplices in crimes against humanity are properly prosecuted ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Strengthen the legal framework for the protection of children", - "values": [ - "4 - General action" - ] - }, - { - "text": "Consistently and rigorously implement the revised strategy for the implementation of Annex VII of the Dayton Peace Agreement and make all efforts to improve the living conditions of internally displaced persons and returnees", - "values": [ - "4 - General action" - ] - }, - { - "text": "Develop a national plan of action for the implementation of children's rights ", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Substantially increase its allocation of funds to the Afghanistan Independent Human Rights Commission in order to ensure its long-term sustainability ", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "End arbitrary detentions and guarantee treatment of detainees in line with international standards", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Strengthen efforts to conclude the formation of the Independent National Commission for Human Rights, and ensure that all human and financial resources are provided to ensure the performance of its tasks effectively and in an independent and transparent manner", - "values": [ - "4 - General action" - ] - }, - { - "text": "Consider the ratification of the main international human rights instruments to which it is not yet a State Party", - "values": [ - "3 - Considering action" - ] - }, - { - "text": "Liechtenstein would intensify its examination of the necessary implementation measures with a view to a possible accession to that convention and its protocol [Convention on the Rights of Persons with Disabilities and its Optional Protocol]. The commitment was made against the background of Liechtenstein's general policy with regard to international treaties, which consists in adapting the relevant national legislation before ratification in order to allow for immediate implementation thereafter.", - "values": [ - "3 - Considering action" - ] - }, - { - "text": "Remain committed to helping the poor to access education and health care ", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Continue its efforts in preventing and prosecuting hate crimes", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Complete its international commitments to protect and promote human rights by acceding to the relevant international instruments, in particular to the Convention against Torture and Other Cruel, Inhuman or Degrading Treatment or Punishment and the Optional Protocol to the Convention on the Elimination of All Forms of Discrimination against Women ", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Take measures to ensure effective guarantee of due process and access to a lawyer in cases of arrest by investigating and preventing any incidents of arbitrary detention and allegations of abuse of authority, including any allegations of corruption among law enforcement personnel ", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Take effective measures to bring conditions of detention in line with international standards by reducing overcrowding, improving the situation of juveniles and women in prison and promoting non-custodial measures", - "values": [ - "4 - General action" - ] - }, - { - "text": "Enhance international cooperation programmes aimed at promoting gender equality and combating trafficking in women and children ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Consolidate a human rights and gender perspective in the social policies practice aiming at gender equality in practice ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Strengthen measures aimed at poverty eradication and improvement of access to social services", - "values": [ - "4 - General action" - ] - }, - { - "text": "Expedite the process to finalize the national plan of action for children and adolescents (2015-2019)", - "values": [ - "4 - General action" - ] - }, - { - "text": "Consolidate efforts to improve educational infrastructure at secondary, tertiary and higher education levels to ensure equitable access and quality education for all", - "values": [ - "4 - General action" - ] - }, - { - "text": "Take steps to ensure that health providers and medical professionals act in full conformity with the Constitutional Court ruling decriminalizing abortion in certain circumstances ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Undertake measures in conformity with the Paris Principles regarding the Swiss Centre of Expertise in Human Rights ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Take all necessary measures with a view to explicitly prohibiting all forms of corporal punishment of children in all settings, to combat violence and to enhance the promotion of children's rights, dignity and physical integrity", - "values": [ - "4 - General action" - ] - }, - { - "text": "Take all necessary measures to prevent torture and other cruel, inhuman or degrading treatment in detention facilities, including through the provision of legal safeguards for detainees and ensure effective investigations into allegations of torture, as well as the prosecution and sentencing of perpetrators", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Argentina undertakes to continue working to strengthen the United Nations treaty bodies, focusing in particular on improving their accessibility for victims of human rights abuses and on expanding the channels of participation and the opportunities for interaction open to civil society organizations", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Take further steps to improve the integration into society of persons belonging to different ethnic and religious groups, including Muslims", - "values": [ - "4 - General action" - ] - }, - { - "text": "Take all necessary measures to prevent and prosecute all forms of violence and harassment related to sexual orientation and gender identity ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Adopt measures and programmes aimed at eliminating discrimination against women", - "values": [ - "4 - General action" - ] - }, - { - "text": "Consider ratifying the International Convention for the Protection of All Persons from Enforced Disappearance and recognize the competence of its Committee", - "values": [ - "3 - Considering action" - ] - }, - { - "text": "Continue its efforts to eradicate poverty", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Dismantle the system of male guardianship and allow women to freely travel, work, study, marry and access health care and other public services", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Mozambique also renews its commitment and desire to improve the mechanisms for the electoral participation of citizens and political parties, spreading knowledge of human rights in general, which are the basis of its constitution, through the strengthening of state institutions and encouraging the participation of civil society (NGOs, media, etc), as a means of promoting and protecting human rights ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Continue to move forward in its efforts to achieve full equality in remuneration between men and women ", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Further revise the current legislation on personal status, nationality, employment and education in order to reinforce non-discrimination against women", - "values": [ - "3 - Considering action" - ] - }, - { - "text": "Improve the functioning of the National Commission of Human Rights to regain its A status", - "values": [ - "4 - General action" - ] - }, - { - "text": "Recommended the implementation of a national strategy to combat the issue of trafficking in girls and women for sexual exploitation.", - "values": [ - "4 - General action" - ] - }, - { - "text": "Step up efforts to address the problem of unemployment, in particular in the rural regions, including through specially targeted programmes to stimulate economic growth and development in the poor and rural areas ", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Continue to strengthen human rights principles of the newly adopted Constitution", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Strengthen the role of the national human rights commission to allow it to perform its mandate", - "values": [ - "4 - General action" - ] - }, - { - "text": "Find long-term solutions to avoid situations where asylum-seekers, especially women and children, have to live in degrading conditions ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Take action to implement the 2015 peace agreement envisaging a range of transitional justice, accountability and reconciliation institutions, which are essential for long-term peace in South Sudan", - "values": [ - "4 - General action" - ] - }, - { - "text": "Step up cooperation with the relevant international mechanisms, particularly the Committee on the Elimination of Discrimination against Women and the future Working Group of the Human Rights Council to combat discrimination against women in law and practice ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Prevent and pursue through the appropriate judicial means all violent acts against religious and tribal minorities, Dalits and lower castes", - "values": [ - "4 - General action" - ] - }, - { - "text": "Increase children's access to the education system", - "values": [ - "4 - General action" - ] - }, - { - "text": "Consider the ratification of ILO Convention No. 169 ", - "values": [ - "3 - Considering action" - ] - }, - { - "text": "Ratify ICERD ", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Take appropriate measures to prohibit corporal punishment", - "values": [ - "4 - General action" - ] - }, - { - "text": "Continue its efforts to mitigate the negative results of the economic crisis and the austerity measures that primarily affect the most disadvantaged groups of the population", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Continue to improve its legislation in order to provide equal protection for boys and girls against sexual abuse and exploitation", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Align the national human rights institution with the Paris Principles and adopt a national human rights plan encompassing all agencies of the public administration, with short-term strategies and goals ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Continue efforts to strengthen the institutional and legal basis in the area of the promotion and protection of human rights ", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Further strengthen measures to ensure participation of women in political affairs ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Take appropriate measures to implement the recommendations of the Committee on the Rights of the Child, including through education and awareness-raising campaigns", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Maintain the current legislation, which respects the human person at all stages of his or her life", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Consider lifting the ban on headscarves in schools ", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Prioritize the implementation of a formal education programme for incarcerated men, women and youth, with appropriate support from the private sector and civil society", - "values": [ - "4 - General action" - ] - }, - { - "text": "Revive efforts to develop a national action plan on combating gender-based violence", - "values": [ - "4 - General action" - ] - }, - { - "text": "Continue to seek and cooperate with partners in the field of the implementation of the national plan for the advancement of Bahraini women (2022) in order to build a competitive and sustainable society in the kingdom", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Create mechanisms to end the case backlog at all levels of the judicial system ", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Ensure that laws on freedom of expression and freedom of the press are applied in conformity with international standards", - "values": [ - "4 - General action" - ] - }, - { - "text": "That legislative measures be adopted to make it possible to harmonize the domestic legal system with the provisions of the Convention on the Elimination of All Forms of Discrimination against Women, promulgating legislative initiatives in process, aimed at ensuring equal legal status of men and women", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Remain steadfast in pursuing its exemplary policies towards gender equality, particularly by strengthening measures to eradicate gender-based violence ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Intensify the dialogue with persons belonging to national minorities on the opportunities for the teaching of and in minority languages and, where appropriate, take the necessary steps to address any shortcomings ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Apply the Fourth Geneva Convention in relation to the OPT", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Adopt measures to combat domestic violence", - "values": [ - "4 - General action" - ] - }, - { - "text": "Prohibit discrimination, in a comprehensive manner, including on the basis of sexual orientation and gender identity, in all areas and sectors, in particular taking into account access to education, health, social protection and housing", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Implement the recommendations of the Committee on the Elimination of Discrimination against Women and take measures to eliminate discriminatory practices against women, also through education and awareness-raising programmes.", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Establish more administrative instruments and allocate more funds with a view to effective implementation of legislation on combating violence against women", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Benefit from the experiences of other countries regarding child protection", - "values": [ - "1 - Minimal action" - ] - }, - { - "text": "Take effective measures to combat hate speech on racial and religious grounds in the media and on the internet, and to bring to justice the perpetrators of hate speech", - "values": [ - "4 - General action" - ] - }, - { - "text": "Amend its electoral legislation so that any deprivation of the right to vote of citizens serving a prison sentence is reasonable and proportionate and applied only for the committing of the most serious crimes", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Continue to ensure that sufficient and safe shelters for women victims of gender-based violence are available and accessible for all", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Take measures to introduce a de jure moratorium on executions and take concrete steps towards the abolition of the death penalty", - "values": [ - "3 - Considering action" - ] - }, - { - "text": "Adopt a law on gender identity allowing legal recognition in the national register of persons in accordance with their sexual orientation and image of the persons concerned", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Move forward in the signing of the 6 core international conventions on human rights that the country is not yet a Party", - "values": [ - "4 - General action" - ] - }, - { - "text": "Respond positively to the pending requests of several special procedures, and to allow the timely carrying out of their visits", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Adopt a national plan with provisions to implement the legislations on women's rights", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Abolish the death penalty and consider withdrawing reservations submitted by Tunisia to the Second Optional Protocol to the International Covenant on Civil and Political Rights as announced by the Government", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Continue to strengthen programmes aimed at extending the framework of economic and social right to all citizens, and to improve living standards for those with limited income ", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Ensure full incorporation and implementation of international human rights instruments at the national level, in particular ICCPR and CAT, unless already done.", - "values": [ - "4 - General action" - ] - }, - { - "text": "Reinforce the fight against domestic violence, by strengthening the administration of justice", - "values": [ - "4 - General action" - ] - }, - { - "text": "Ratify the International Covenant on Civil and Political Rights and its Optional Protocols", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Take the steps necessary to protect lesbian, gay, bisexual, transgender and intersex persons from violence and discrimination on the basis of their sexual orientation and gender identity", - "values": [ - "4 - General action" - ] - }, - { - "text": "Take legal measures to alleviate the difficulties faced by members of minority groups, including Muslims, Roma and African people as well as the enjoyment of their economic, social and cultural rights", - "values": [ - "4 - General action" - ] - }, - { - "text": "Strengthen existing law and practice to guarantee the right to freedom of religion or belief for all citizens and residents, in particular by prosecuting and punishing all cases of religiously motivated violence", - "values": [ - "4 - General action" - ] - }, - { - "text": "Broadly disseminate the report of the Truth, Justice and Reconciliation Commission, and establish a legislative and administrative framework for the effective implementation of its recommendations", - "values": [ - "4 - General action" - ] - }, - { - "text": "Strengthen efforts to bring security sector members to justice in cases of excessive use of force or inappropriate treatment of detainees", - "values": [ - "4 - General action" - ] - }, - { - "text": "Accede to the fundamental international instruments on human rights, in particular the International Covenant on Civil and Political Rights, the International Covenant on Economic, Social and Cultural Rights and the Convention against Torture", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Complete the process of consolidation of the National Human Rights Institution and its accreditation to the International Coordinating Committee of National Human Rights Institutions ", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Continue national efforts to realize social and economic development and eradicate poverty, and achieve comprehensive sustainable development for all", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Continue to strengthen measures to achieve progress in the areas identified in the national development plan, through appropriate means", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Finalize the establishment of a national human rights institution in accordance with the Paris Principles", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Seek technical assistance of the OHCHR, according to its national priority, in order to address the issue of delay in reporting on the Conventions to which it is party", - "values": [ - "1 - Minimal action" - ] - }, - { - "text": "Continue with the Constitutional review process aimed at strengthening the legal system and policies on human rights ", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Strictly apply without delay Law No. 82/2013, which criminalizes violence against women", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Withdraw the declaration under article 124 of the Rome Statute of the International Criminal Court.", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Continue to implement its policies and programmes aimed at promoting universal education and developing a knowledge-based society for long-term sustainable development ", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Continue to focus on the overall improvement in the quality of education, particularly in rural areas ", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Strengthen its safeguards against torture, including through the improvement of conditions in prisons and detention facilities and the establishment of a complaint mechanism for victims of torture ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Consider the possibility of expressing its consent to ratify the Convention against Torture and Other Cruel, Inhuman or Degrading Treatment or Punishment", - "values": [ - "3 - Considering action" - ] - }, - { - "text": "Expedite action on the ratification process of the Optional Protocol to the Convention on the Elimination of All Forms of Discrimination against Women ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Consider withdrawal of reservations with respect to the Convention on the Rights of the Child.", - "values": [ - "3 - Considering action" - ] - }, - { - "text": "Include in its Criminal Code a definition of torture ", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Consider taking steps with a view to abolishing the death penalty", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Develop and adopt suitable legislative and administrative measures to combat discrimination against women, and discrimination and violence against LGBTI persons", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Amend the legislation to eliminate discrimination against women with respect to the transmission of nationality to their children and the registration of civil acts ", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Fully implement, once adopted, a draft amendment to the Constitution that would protect against discrimination on the basis of sex and gender, and would seek to protect women's and children's rights regarding family law, sexual offences, domestic violence, property, the right to work, and inheritance law", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Ethiopia pledged to consider the ratification of additional instruments to the International Covenant on Civil and Political Rights, the International Covenant on Economic, Social and Cultural Rights, the Convention on the Elimination of All Forms of Discrimination against Women and the Convention against Torture and Other Cruel, Inhuman and Degrading Treatment or Punishment. Ethiopia was also committed to signing the International Convention for the Protection of All Persons from Enforced Disappearance and was considering its ratification in due course.", - "values": [ - "3 - Considering action" - ] - }, - { - "text": "Further increase regional and international cooperation on human rights, particularly with the ASEAN nations and with the Human Rights Council ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Ensure the respect of human rights by law enforcement bodies and strengthen efforts to guarantee the impartiality of investigations and prosecution of police officers involved in acts of violence ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Make all efforts to ensure the independence of the judiciary", - "values": [ - "4 - General action" - ] - }, - { - "text": "Ensure that attacks with xenophobic or racist background are promptly investigated by the police, and that those responsible be brought to justice", - "values": [ - "4 - General action" - ] - }, - { - "text": "Design and implement effective policies to promote gender equality based on indicators and statistics to measure their impact", - "values": [ - "4 - General action" - ] - }, - { - "text": "Cooperate with the human rights system by accepting to receive the missions of the Human Rights Council as established by its resolutions", - "values": [ - "4 - General action" - ] - }, - { - "text": "Repeal the provisions establishing the mandatory detention of persons entering its territory irregularly", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Strengthen its measures to eradicate child labour", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Continue to take action to guarantee equal access to basic quality education for all children in the country, including children of migrants", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Ensure universal design and accessibility obligations in voting procedures, including accessible facilities and voting material", - "values": [ - "4 - General action" - ] - }, - { - "text": "Investigate the cases of domestic violence that continue to be reported and ensure perpetrators are punished", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Ensure the independence of the judiciary and improve access to justice.", - "values": [ - "4 - General action" - ] - }, - { - "text": "Explore the possibility of seeking accreditation from the International Coordinating Committee for the relevant institutions, including the Office of the Chancellor of Justice ", - "values": [ - "3 - Considering action" - ] - }, - { - "text": "Take steps to open prompt, impartial, thorough and effective investigations into alleged violations of international human rights law committed by law enforcement agencies in order to bring all the perpetrators to justice", - "values": [ - "4 - General action" - ] - }, - { - "text": "Endeavour to accede to ICRMW", - "values": [ - "4 - General action" - ] - }, - { - "text": "Pursue the strengthening of its economic and social development ", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Submit its report under the International Covenant on Civil and Political Rights as soon as possible, seeking technical support, if necessary ", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Ratify the treaties that Chad has signed in the field of human rights", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Ratify the human rights treaties listed in section I A of the compilation of OHCHR, notably the International Covenant on Civil and Political Rights, the International Covenant on Economic, Social and Cultural Rights and the International Convention on the Protection of the Rights of All Migrant Workers and Members of their Families, as well as the Optional Protocols to the Convention against Torture, the International Covenant on Civil and Political Rights, the Convention on the Rights of the Child, the Convention on the Rights of Persons with Disabilities and the Convention on the Elimination of All Forms of Discrimination against Women ", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Improve the institutional capacity of the national machinery for the advancement of women, for their active involvement in public life.", - "values": [ - "4 - General action" - ] - }, - { - "text": "Ensure sufficient resources for the effective implementation of the law on trafficking of persons", - "values": [ - "4 - General action" - ] - }, - { - "text": "Further increase its efforts towards the finalization of the new National Human Rights Plan 2017-2021", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Establish a follow-up mechanism related to the implementation of the recommendations of the Working Group on the Universal Periodic Review and associate the national institution fully in its work", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Bring the juvenile criminal justice in line with international standards", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Establish a moratorium on the use of death penalty ", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Strengthen measures to combat violence against women and girls", - "values": [ - "4 - General action" - ] - }, - { - "text": "Ratify OP-CAT", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Pursue further reforms in the education sector to improve the availability, accessibility, affordability and quality of education for all", - "values": [ - "4 - General action" - ] - }, - { - "text": "Increase public awareness about equal career opportunities and undertake measures to increase the availability of childcare facilities that will enable women to fully participate in the labour market", - "values": [ - "4 - General action" - ] - }, - { - "text": "Implement the Rome Statute of the International Criminal Court including through adopting appropriate national legislation, so as to ensure full cooperation with the ICC and effective investigation and prosecution of genocide, crimes against humanity and war crimes before its national courts", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Review legislation such as the recently adopted Act on the protection and advancement of persons with disabilities to prohibit efficiently discrimination against persons with disabilities, to guarantee equal treatment and equal opportunity and protect them from harassment, violence and abuse in all aspects of life", - "values": [ - "3 - Considering action" - ] - }, - { - "text": "Work with the Special Rapporteur on freedom of religion to ensure that its international human rights obligations under article 18 of ICCPR are fully implemented ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Consider implementing effectively the national action plan for migrants without prejudice to their status by decriminalization of irregular migration situation ", - "values": [ - "3 - Considering action" - ] - }, - { - "text": "Adopt measures to fight impunity in cases of torture ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Strengthen health policies and programmes with a view to reducing preventable maternal mortality and morbidity", - "values": [ - "4 - General action" - ] - }, - { - "text": "Continue to exert efforts to ratify major international human rights instruments, particularly including the Convention on the Elimination of All forms of Discrimination against Women and the Convention on the Rights of the Child", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Implement the 2004 guidelines and reforms in the prison system in Portugal and resolve the serious problems in prisons in an expeditious manner", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Immediately release all human rights defenders and political prisoners ", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Fight all forms of xenophobia and reject discrimination against migrants", - "values": [ - "4 - General action" - ] - }, - { - "text": "Guarantee personal autonomy and individual rights, as enshrined in the Constitution, by a prohibition of discrimination based on sexual orientation or gender identity, as well as by allowing a medical gender change to be reflected in a person's identity documents", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Consider ratifying the International Covenant on Economic, Social and Cultural Rights, the Optional Protocol to the Convention against Torture, and the 1951 Refugee Convention and the 1967 Protocol thereto ", - "values": [ - "3 - Considering action" - ] - }, - { - "text": "Ratify the Optional Protocol to ICESCR and the Second Optional Protocol to the ICCPR, aimed at the abolition of the death penalty", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Establish a formal moratorium on executions with a view to abolishing the death penalty and support the United Nations General Assembly resolution on the moratorium on the use of death penalty", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Continue its efforts to finalizing and adopting its Children's code as a matter of priority", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Ratify the Optional Protocol to the Convention on the Elimination of All Forms of Discrimination against Women", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Provide the National Commission for the Promotion of Equality with adequate human, technical and financial capacity to handle racial violence and discrimination, and to institute legal proceedings", - "values": [ - "4 - General action" - ] - }, - { - "text": "Take concrete measures to protect the rights of foreign workers ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Amend legislation that provides for the application of the death penalty, in light of the obligations undertaken under the Second Optional Protocol to the International Covenant on Civil and Political Rights", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Develop a national plan to encourage girls to remain in school, especially in disadvantaged regions of the country", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Keep up its commitment to uphold its human rights treaty obligations and engage constructively with the human rights mechanisms, including the special procedures", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Take the necessary measures to ensure that the law concerning trafficking is effectively implemented ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Review current legislation, policies and programmes relating to maternity and parental leave with a view to ensuring an adequate period of infant and early childhood care while mitigating the negative impacts on career advancement", - "values": [ - "3 - Considering action" - ] - }, - { - "text": "Consider adopting further measures to enhance legal protection to vulnerable groups, including on the issues of gender violence and child labour", - "values": [ - "3 - Considering action" - ] - }, - { - "text": "Successfully implement its national strategy for combating poverty", - "values": [ - "4 - General action" - ] - }, - { - "text": "Ensure the effective implementation of national law and policy relevant to domestic workers, including the Domestic Workers Act", - "values": [ - "4 - General action" - ] - }, - { - "text": "Conduct impartial and independent investigations into acts of violence committed against human rights defenders, to bring those responsible to justice and fully guarantee freedom of expression ", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Share with the least developed countries its efforts to overcome its challenges in enhancing economic cooperation with other developing and developed countries at bilateral, regional and multilateral levels.", - "values": [ - "1 - Minimal action" - ] - }, - { - "text": "The Law on the Protection of Minors against the Detrimental Effect of Public Information should not be applied with a view to censoring lesbian, gay, bisexual, transgender and intersex persons-related information", - "values": [ - "4 - General action" - ] - }, - { - "text": "It has asked the Human Rights Council for technical assistance to help it run human rights training courses and workshops for law enforcement personnel and members of the Prosecution Service and the judiciary.", - "values": [ - "1 - Minimal action" - ] - }, - { - "text": "Further expand the initiatives aimed at reaching better protection of the rights of the child", - "values": [ - "4 - General action" - ] - }, - { - "text": "Guarantee freedom of religion and worship, also by fighting all forms of discrimination against people belonging to religions minorities ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Continue its efforts to end sexual abuse and sexual exploitation of children, in particular of unaccompanied asylum-seeking children ", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Proceed with early conclusion of major international human rights treaties, including the International Convention for the Protection of All Persons from Enforced Disappearances ", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Continue enhancing the school infrastructure for indigenous communities in order to guarantee an increase in intercultural and bilingual education centres", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Consolidate achievements in the promotion and protection of human rights", - "values": [ - "4 - General action" - ] - }, - { - "text": "Intensify efforts to provide assistance for child victims of trafficking ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Continue actions to improve the quality of education ", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Canada is committed to giving careful consideration to the recommendations made during its review and to engaging with civil society and Aboriginal organizations to inform Canada's response and follow-up to the accepted recommendations", - "values": [ - "3 - Considering action" - ] - }, - { - "text": "Implement the National Strategy for the Social Inclusion of Roma community in order to achieve the objectives provided for their social community", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "To boost the financial support that the Ministry of Foreign Affairs gives to French non-governmental organizations that promote human rights throughout the world, in particular through a "call for human rights projects".", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Continue strengthening its social programmes to improve the quality of life of its people, in particular the most in need, with the assistance and cooperation that the country requests", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Ensure freedom of expression and assembly and that human rights defenders are respected and protected ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Take all necessary social, educational and legal measures to address the problem of violence against women and to ensure that cases of domestic violence within the family are properly investigated and punished ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Continue efforts and take necessary policy measures to ensure that children are protected from corporal punishment and other forms of violence or exploitation ", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Continue to increase the coverage of identification and birth registration services, including in the rural jungle areas", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Intensify efforts in the resettlement of refugees, especially with regard to the protracted refugee situations identified by UNHCR", - "values": [ - "4 - General action" - ] - }, - { - "text": "The Government was also ensuring that under the Five-Year Plan more emphasis was placed on gender issues and women's empowerment in all policies and national plans. The Government had also pledged to explore the adoption of a quota system for women's participation in the electoral process. ", - "values": [ - "3 - Considering action" - ] - }, - { - "text": "Stop massive surveillance activities both inside and outside its territory to avoid violating the right to privacy of its citizens and those of other countries", - "values": [ - "4 - General action" - ] - }, - { - "text": "Establish a minimum age for employment in compliance with international norms ", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Ensure that the CNDHC has the necessary resources to comply with the Paris Principles ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Continue policies aimed at multiplying and deepening, with inter alia the support of the international cooperation, actions to combat and bring an end to of all forms of gender violence, female genital mutilation and all practices that result either discriminatory or violating women's human rights ", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Continue to implement relevant legislation and policies with a view to efficiently combating bullying in schools, as part of the efforts to tackle radicalization", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Adopt measures to adapt the migratory policies to the standards established by the International Convention on the Protection of the Rights of all Migrant Workers and Members of their Families ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Further strengthen the National Human Rights Commission and the national commission to combat gender-based violence, and the capacities needed to secure advancement in the human rights field, particularly in the area of women's and children's rights ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Expressly prohibit the dissemination of ideas based on racial incitement and discrimination, giving full effect to article 4 of ICERD", - "values": [ - "4 - General action" - ] - }, - { - "text": "Ensure full and effective compliance of national legislation and law enforcement practices, particularly in the areas of education and mass media with the obligation of article 27 of the International Covenant on Civil and Political Rights and the obligations that derive from Ukraine being party to other international legal instruments, including on the protection of national minorities.", - "values": [ - "4 - General action" - ] - }, - { - "text": "Take measures to provide for the safety and protection of the Palestinian civilian population and adhere to international standards on juvenile detention", - "values": [ - "4 - General action" - ] - }, - { - "text": "Take measures to better protect vulnerable populations, by promoting the integration of young people and by combating violence against women and gender disparities in terms of professional integration - in line with the development of the framework for the organization of the justice system", - "values": [ - "4 - General action" - ] - }, - { - "text": "Remain steadfast in pursuing its impressive policies towards gender equality, particularly by strengthening measures to eradicate gender-based violence ", - "values": [ - "4 - General action" - ] - }, - { - "text": "With regard to the reporting mechanism on the gender pay gap, consider efficient means of following up on the reports made by the employers", - "values": [ - "3 - Considering action" - ] - }, - { - "text": "Continue to make efforts to eliminate female genital mutilation by enacting legislation which prohibits this practice and adopt a National Action Plan to increase awareness among women of the harmful consequences of the practice of female genital mutilation", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Ensure the protection of lesbian, gay, bisexual, transgender, queer and intersex persons from all forms of stigmatization, discrimination and violence and abstain from random testing", - "values": [ - "4 - General action" - ] - }, - { - "text": "Accelerate the implementation of the National Action Plan for Children for 2006-2016", - "values": [ - "4 - General action" - ] - }, - { - "text": "Put an end to all violations of international humanitarian law and human rights committed in the context of the armed conflict and, in particular, take all necessary measures to immediately stop the abduction of children to make them child soldiers, unlawful killings, sexual violence, attacks against civilians, lootings and the destruction of property", - "values": [ - "4 - General action" - ] - }, - { - "text": "Create new school structures in the more distant villages and improve the transport system ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Strengthen laws and policies to achieve an effective implementation of the Convention against Torture and Other Cruel, Inhuman or Degrading Treatment or Punishment, including training programmes on human rights for those responsible for law enforcement", - "values": [ - "4 - General action" - ] - }, - { - "text": "Facilitate the work of human rights defenders and journalists throughout the country", - "values": [ - "4 - General action" - ] - }, - { - "text": "Seek the opinion of the concerned parties before the approval of the draft national action plan against domestic violence 2010-2014", - "values": [ - "4 - General action" - ] - }, - { - "text": "Continue its programme of building affordable housing for low-income families aimed at promoting broader enjoyment of the right to adequate housing by 2020.", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Continue to improve prison conditions, enhancing measures already adopted to avoid overcrowding, malnutrition and poor sanitation, and end the abusive use of pretrial detention", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Proceed in its effective efforts to combat trafficking in persons, especially women and children", - "values": [ - "4 - General action" - ] - }, - { - "text": "Respect freedom of movement in all territories under State jurisdiction in conformity with international standards.", - "values": [ - "4 - General action" - ] - }, - { - "text": "Ensure the full implementation of all recommendations from the Bahrain Independent Commission of Inquiry", - "values": [ - "4 - General action" - ] - }, - { - "text": "Draw up an effective and appropriate policy framework and institutional mechanism to fight poverty with a view to attaining Millennium Development Goal 1, with the support and assistance of the international community.", - "values": [ - "4 - General action" - ] - }, - { - "text": "Provide all necessary support to the Sami people so that they may make use of legal resources that enable them to defend their rights, on an equal footing ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Accelerate the process of ratifying the International Convention on the Protection of All Persons from Enforced Disappearance ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Strengthen or enhance efforts to put an end to corruption in public institutions ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Intensify its efforts towards poverty reduction and sustainable development", - "values": [ - "4 - General action" - ] - }, - { - "text": "Ease prison congestion and its impact on mothers with young children.", - "values": [ - "4 - General action" - ] - }, - { - "text": "Apply the relevant international experience in ensuring the protection of human rights in the zones of environmental crisis", - "values": [ - "4 - General action" - ] - }, - { - "text": "Ensure that women receive equal pay for equal work so as to close the gender pay gap", - "values": [ - "4 - General action" - ] - }, - { - "text": "Appeal to the international community to provide necessary assistance, in accordance with Chad's enormous needs.", - "values": [ - "1 - Minimal action" - ] - }, - { - "text": "Strengthen efforts to prevent and combat arbitrary detentions, extrajudicial executions and excessive use of force by the security forces", - "values": [ - "4 - General action" - ] - }, - { - "text": "Continue to give more attention to boys, girls and women in public policies, especially in the area of education", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Consider the possibility of extending a standing invitation to all special procedures of the Human Rights Council ", - "values": [ - "3 - Considering action" - ] - }, - { - "text": "Continue work on the development of the national education system, ensuring access to quality and free education ", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Pursue efforts to guarantee the effective functioning of the Truth and Reconciliation Commission", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Continue to take legislative as well as policy measures to combat child labour and to ratify ILO Conventions 138 concerning Minimum Age for Admission to Employment and 182 concerning the prohibition and immediate action for the elimination of the worst forms of child labour and elaborate a timeline for the ratification of these instruments ", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Align the definition of children in all juridical instances and ensure that no life sentence is applied to any child under the age of 18 years", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Ratify core universal human rights instruments, in particular, ICERD and CAT, and fulfil its treaty obligations ", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Enact and implement a Law of Association to guarantee the right to form civil society organizations and to protect those organizations from government interference", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Take the opportunity brought by the review process of the Constitution to include in statute the definitive abolition of the death penalty", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Uphold the de facto moratorium on executions with a view to abolishing the death penalty as soon as possible", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Take all necessary measures to fight against discrimination and violence against women and to accept individual complaints procedure relating to the Optional Protocol to the Convention on the Elimination of All Forms of Discrimination Against Women", - "values": [ - "4 - General action" - ] - }, - { - "text": "Step up efforts in addressing widespread phenomenon of child economic exploitation in the form of child trafficking or child labour as well as child sexual abuse", - "values": [ - "4 - General action" - ] - }, - { - "text": "Ensure the separation of juveniles and adults in prison cells, through, inter alia, establishing juvenile detention centres", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Continue the efforts to reduce maternal and child mortality ", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Ratify or accede, as appropriate, to the First Optional Protocol to the International Covenant on Civil and Political Rights, the Optional Protocol to the Convention against Torture and Other Cruel, Inhuman or Degrading Treatment or Punishment, the Optional Protocol to the International Covenant on Economic, Social and Cultural Rights as well as the International Convention for the Protection of All Persons from Enforced Disappearance", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Make additional efforts to strengthen the judicial system, carrying out its reform and the training of judges ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Analyse the possibility of creating a monitoring system for the implementation of international obligations in order to facilitate the systematization and follow-up of the recommendations made by the treaty bodies and the Human Rights Council", - "values": [ - "3 - Considering action" - ] - }, - { - "text": "Maintain and further build upon its HIV/AIDS prevention, care and treatment programmes ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Undertake measures targeted at vulnerable groups, particularly children, in order to prevent trafficking in human beings for labour and sexual exploitation ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Develop a comprehensive action plan to combat domestic violence against women and girls ", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Strengthen the current legislation regarding criminalization of incitement to hatred", - "values": [ - "4 - General action" - ] - }, - { - "text": "Strengthen further the capacity within the public institutions to enable the effective implementation of the trilingual policy", - "values": [ - "4 - General action" - ] - }, - { - "text": "Strengthen efforts to improve the protection of human rights across the country, capacity-building of local authorities and empowerment of communities, in particular women and girls, ensuring the involvement of the civil society, both urban and rural and across the country, in the follow-up to the review report", - "values": [ - "4 - General action" - ] - }, - { - "text": "End institutionalization of children under the age of 3", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Continue strengthening national laws on offences related to violence against women and girls", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Liechtenstein will pursue its actions in the area of official development aid with a view to meeting its relevant voluntary commitment as soon as possible", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Repeal article 128 of the Criminal Code which identifies the commission of an offence with honourable motives as a mitigating excuse", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Create national institutions and improved capacity, which is essential for peace, stability, and democracy and for laying a solid foundation for the protection of human rights in the country.", - "values": [ - "4 - General action" - ] - }, - { - "text": "Declare a moratorium on the capital punishment, until that, promptly reduce the number of offences subject to death penalty and publish statistics about the use of death penalty in Viet Nam ", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Continue advancing the promotion of laws and initiatives that ban discrimination and incitement to violence on the grounds of sexual orientation and gender identity, in particular in the case of young persons and adolescents", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Ensure that the defence and security forces act in accordance with international human rights norms regarding the use of force", - "values": [ - "4 - General action" - ] - }, - { - "text": "Improve access for women and girls to basic health-care services", - "values": [ - "4 - General action" - ] - }, - { - "text": "Withdraw its reservations made to articles 2 and 16 of CEDAW, which were considered contrary to the object and purpose of this treaty ", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Proceed to the abolition of existing legislation criminalizing relations between persons of the same sex ", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Continue its endeavour to build a sound social security system and supporting services commensurate with national conditions, as well as its level of social and economic development", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Continue promoting the participation of women in social, economic and political spheres contributing to the development of the country", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Continue the current momentum, national action plans and programmes for effectively addressing challenges and disparities in health care, education, employment, gender equality and social welfare, especially for vulnerable groups of women, children, the elderly and persons with difficulties in the country ", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Take urgent steps to reduce and eliminate domestic and sexual violence against women, including measures to raise awareness of women's legal rights in consultation with civil society groups, and ensuring fair and expeditious trials of domestic and sexual violence cases", - "values": [ - "4 - General action" - ] - }, - { - "text": "Provide the Bureau of Gender Affairs with sufficient human and financial resources to enable it to contribute efficiently to the promotion and protection of the rights of women.", - "values": [ - "4 - General action" - ] - }, - { - "text": "Amend and adapt its law to give fair and equal treatment to all citizens, including women and those of religious and ethnic minorities", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Undertake effective measures to guarantee access to education for juveniles in the penitentiary system", - "values": [ - "4 - General action" - ] - }, - { - "text": "Continue its efforts to fight against impunity regarding human rights violations perpetrated in the past", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Intensify its efforts to maintain oversight over Netherlands companies operating abroad with regard to any negative impact their activities may have on the enjoyment of human rights, particularly in conflict areas, which includes situations of foreign occupation where there is a heightened risk of human rights abuses", - "values": [ - "4 - General action" - ] - }, - { - "text": "Ratify the Convention against Torture and other Cruel, Inhuman or Degrading Treatment or Punishment", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Clear the backlog in responses to thematic questionnaires of the Human Rights Council Special Procedures", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Continue implementing the positive initiatives introduced under the 1Malaysia concept with a view to strengthen national unity", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Develop a national strategy to guarantee better access to education to all children and include in the school system at all levels appropriate measures in the field of human rights education, in accordance with the Plan of Action 2005-2009 of the World Programme for Human Rights Education. ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Continue its efforts to ratify the main human rights treaties without delay, including the International Covenant on Civil and Political Rights and the International Covenant on Economic, Social and Cultural Rights", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Adopt, as soon as possible, the draft laws that promote the rights of women in marriage, marital property and divorce", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "NGOs should be consulted widely and have a substantive role in drafting the new NGO law", - "values": [ - "4 - General action" - ] - }, - { - "text": "Eliminate the death penalty from its legislation and alternatively, establish a moratorium on the death penalty", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Study the possibility to establish new measures to eliminate all discriminatory treatment against women with disabilities ", - "values": [ - "3 - Considering action" - ] - }, - { - "text": "Share its expertise in developing a Special Child's Rights Charter with other countries and continue its efforts in cooperation with international groups to advance this initiative", - "values": [ - "1 - Minimal action" - ] - }, - { - "text": "Revise the Trans Act (on the Legal Recognition of the Gender of Transsexuals) by abolishing the need for sterilization, other medical treatment and a mental health diagnosis as requirements for a person\u2019s legal recognition of their gender identity and ensure that medical procedures performed on intersex infants and children take into account the best interest of the child", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Explore way for setting up separated facilities for children deprived of liberty", - "values": [ - "3 - Considering action" - ] - }, - { - "text": "Continue efforts to strengthen the rights of women and to further the advancement and development of women's rights in the international dimension.", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Ratify the International Convention for the Protection of All Persons from Enforced Disappearance (CED).", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Continue its policies on improving the rights of the child", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Immediately comply with its obligations under international law and abolish the use of illegal weapons", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Continue its efforts to introduce a human rights perspective in business and trade ", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Ensure availability of safe abortions, at a minimum in cases where the pregnancy is the result of rape or incest and in cases of severe and fatal foetal impairment", - "values": [ - "4 - General action" - ] - }, - { - "text": "Increase efforts to reduce the maternal mortality rate, in particular by adopting a broad strategy on safe maternity, in which priority is given to access to prenatal, postnatal and obstetric quality health services", - "values": [ - "4 - General action" - ] - }, - { - "text": "Continue efforts to alleviate poverty as a means to enhance the lives and well-being of the people ", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Take sincere efforts to hold accountable those police and law enforcement officers responsible for the torture and ill-treatment of detainees ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Fully implement the National Strategy for the protection and promotion of children's rights", - "values": [ - "4 - General action" - ] - }, - { - "text": "Maintain the momentum given to positive social policies relating to health care - allocate the necessary resources to ensure the institutional capacity required for its health-care system ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Continue its efforts to implement its Comprehensive Reparations Plan in order to fully ensure the rights of victims of acts of violence", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Facilitate the issuance of visas and accreditations without restriction to representatives of international organizations defending human rights and to foreign journalists", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Continue its efforts towards peace and national reconciliation", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Address the root causes of corruption as a matter of priority", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Continue to seek a political solution to the crisis based on dialogue and reconciliation between the Syrian parties without foreign intervention in the internal affairs of the Syrian Arab Republic", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Work to ensure that the Independent Commission of Investigations receives appropriate resourcing and support to enable it to effectively perform its functions ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Continue fighting discrimination against persons with disabilities ", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Consider the possibility of re-establishing the Church of Saint Paul in Tarsus, currently functioning as a museum, as a place of worship ", - "values": [ - "3 - Considering action" - ] - }, - { - "text": "Address the high rate of homicides in Brazil's overcrowded prisons ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Amend legislation allowing the imprisonment of prisoners of conscience so as to be in compliance with the International Covenant on Civil and Political Rights (articles 18-22)", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Ratify the core international human rights instruments including the International Convention on the Protection of the Rights of All Migrant Workers and Members of Their Families", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Address the serious problem with land mines", - "values": [ - "4 - General action" - ] - }, - { - "text": "Act on its commitment to dialogue and cooperation by timely submitting all treaty body reports, by accepting outstanding requests by special procedures to visit the country and by engaging actively with OHCHR to ensure compatibility of national legislation with its international treaty obligations", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Step up efforts to address prejudice against children with disabilities to ensure that such children have access to health care and inclusive education", - "values": [ - "4 - General action" - ] - }, - { - "text": "Consider ratifying ILO Convention No. 189 (2011) concerning Decent Work for Domestic Workers ", - "values": [ - "3 - Considering action" - ] - }, - { - "text": "Adopt an official moratorium on the death penalty and conduct studies and discussions to consider its abolition", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Strengthen human rights training and awareness programmes for Parliamentarians, judges, civil servants, LEAs, lawyers and journalists", - "values": [ - "4 - General action" - ] - }, - { - "text": "Continue working to eradicate the dissemination of stereotypes that may encourage racial discrimination", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Consider establishing an NHRI in compliance with the Paris Principles ", - "values": [ - "3 - Considering action" - ] - }, - { - "text": "Intensify its efforts to promote and protect the full enjoyment of the right to education and take further steps to make access to education easier for all, including by allocating adequate resources and by reinforcing teacher training", - "values": [ - "4 - General action" - ] - }, - { - "text": "Ratify the 12 international human rights instruments to which it is not a party", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Keep on reflecting on whether to further revise the legal framework regarding the stun guns, with a view of limiting their use to situations involving an imminent threat of death or serious injury ", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Further improve prison conditions", - "values": [ - "4 - General action" - ] - }, - { - "text": "Continue efforts to address the issue of overcrowded prisons and take action to improve the conditions in prisons and detention centres", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Adhere to and adapt its national legislation to the Arms Trade Treaty", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Reduce the registration period and procedures for national and international NGOs", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Continue with judicial reforms with a view to strengthening human rights safeguards", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Take further steps so as to enact a comprehensive and general legislation for the prevention of gender-based violence", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Take forward plans to decriminalise press offences as agreed by the President of the Republic in 2004 and as reported to the United Nations Special Rapporteur on the Promotion and Protection of the right to freedom of opinion and expression ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Canada remained deeply committed to preventing and reducing all forms of violence against women and girls, working across jurisdictions to protect communities and ensure the safety of women and girls", - "values": [ - "4 - General action" - ] - }, - { - "text": "Take appropriate measures to make the promotion of gender equality an explicit component of its national development plan and policies and to include in its Constitution or other appropriate domestic legislation a definition of discrimination against women ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Adopt and implement appropriate, efficient measures to combat child prostitution and pornography, including the ratification of the Optional Protocol to CRC on the sale of children, child prostitution and child pornography ", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Swiftly finalize the Family Peace Act Implementation Plan to ensure the Act is effective in providing protection and redress for victims of domestic violence", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Further improve access to all levels of education, including in the rural interior", - "values": [ - "4 - General action" - ] - }, - { - "text": "Raise the minimum age at which children can be held criminally responsible ", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Ensure affordable access to water and sanitation, and that the price paid for access to these rights is not incompatible with access to other rights such as food, housing or education", - "values": [ - "4 - General action" - ] - }, - { - "text": "Promote the approval of the comprehensive law on violence against women", - "values": [ - "4 - General action" - ] - }, - { - "text": "Fully implement the recommendations of the OHCHR field office in Colombia as a means to contribute to the improvement of the human rights situation on the ground.", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Adopt legislative measures necessary to strengthen access to public information", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Intensify its efforts to fully implement the Convention on the Rights of the Child", - "values": [ - "4 - General action" - ] - }, - { - "text": "Ratify the ICERD, ICCPR, ICESCR and CAT", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Continue devising strategies and programmes to put an end to poverty for vulnerable groups, particularly women and children, and implement them ", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Ensure the protection of the rights of national minorities", - "values": [ - "4 - General action" - ] - }, - { - "text": "Step up the efforts of the competent ministries to effectively train professionals, such as judges, prosecutors and police officers, for prompt and independent investigation and effective prosecution of racist and hate crimes", - "values": [ - "4 - General action" - ] - }, - { - "text": "Consider strengthening measures to prevent and protect the human rights of local communities from environmental impacts", - "values": [ - "3 - Considering action" - ] - }, - { - "text": "Develop clear national strategies for the eradication of the poverty of about four million children, as indicated in the United Kingdom universal periodic review summary report of the stakeholders\u2019 submissions", - "values": [ - "4 - General action" - ] - }, - { - "text": "Ratify, in particular, ICCPR", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Further implement the National Health Development Plan 2011-2015 and the health insurance card for non-civil servants", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Continue exploring possibilities to extend its international commitments, in particular consider ratification of the ICCPR and the Rome Statute of the International Criminal Court", - "values": [ - "3 - Considering action" - ] - }, - { - "text": "Take more effective measures to better protect the rights of children, persons with disabilities, migrants and other vulnerable groups", - "values": [ - "4 - General action" - ] - }, - { - "text": "Adopt effective steps to promptly eliminate an unacceptable system of non-citizenship. As a priority and urgent step, simplify the naturalization process for persons who have reached retirement age, as well as grant children of non-citizens the right to automatically acquire citizenship at birth ", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Provide obligatory human rights education and training to police, prison and detention staff and judiciary, and ensure their accountability for any human rights violations", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Consider establishing a national human rights institution in conformity with the Paris Principles ", - "values": [ - "3 - Considering action" - ] - }, - { - "text": "Continue its efforts in implementing its Legal Sector Master Plan on the Development of the Rule of Law", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Establish the Authority for Gender Equality and Action against All Forms of Discrimination", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Consider providing regular training on the importance of ensuring both accountability for gender-based violence and victim's access to justice, especially for law enforcement and judicial officers, including prosecutors", - "values": [ - "3 - Considering action" - ] - }, - { - "text": "Take measures to accelerate the adoption of a national plan of action to combat trafficking in persons, particularly women and children, in order to prevent this crime, rehabilitate victims and prosecute perpetrators", - "values": [ - "4 - General action" - ] - }, - { - "text": "Strengthen the capacities and competencies of educational institutions in terms of providing services and rehabilitation to them, especially primary schools ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Ensure access to reproductive health care, including high-quality prenatal care, and information on sexual and reproductive health, contraception and emergency contraception, and safe abortion to all women without discrimination", - "values": [ - "4 - General action" - ] - }, - { - "text": "Reconsider introducing a moratorium on executions with a view to abolishing the death penalty", - "values": [ - "3 - Considering action" - ] - }, - { - "text": "Adopt measures to end prosecution of peaceful protesters ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Strengthen the position and the independence of the Constitutional Court in order to ensure that fundamental freedoms and minority rights, as guaranteed in the Constitution, are fully respected in newly adopted legislation", - "values": [ - "4 - General action" - ] - }, - { - "text": "Review the system of preventative detention with regard to juveniles and adopt alternative measures in conformity with recommendations of United Nations treaty bodies ", - "values": [ - "3 - Considering action" - ] - }, - { - "text": "Seek to expand its targeted measures to reduce discrimination against persons of African descent and indigenous peoples ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Ratify the International Convention for the Protection of All Persons from Enforced Disappearance and recognize the competence of the Committee on Enforced Disappearances, as provided for in articles 31 and 32 of the Convention, as early as possible ", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Pursue the protection of those who convert to another religion according to international human rights standards", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Continue the effective realization of the right of education, including human rights education, in the country ", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Work with the international community to consider removing the sanctions imposed on the Democratic People's Republic of Korea encouraging it to meaningfully promote and protect human rights in its country", - "values": [ - "4 - General action" - ] - }, - { - "text": "Decriminalize sexual relations between consenting adults of the same sex, as recommended by the Human Rights Committee ", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Define and legally classify enforced disappearance", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Advance in the implementation of human rights to live in harmony with Mother Earth", - "values": [ - "4 - General action" - ] - }, - { - "text": "Seek technical cooperation and assistance for capacity building from the international community and relevant United Nations agencies so as to successfully implement the Zimbabwe - United Nations Development Assistance Framework ", - "values": [ - "1 - Minimal action" - ] - }, - { - "text": "Formulate a comprehensive policy protecting the rights of indigenous peoples", - "values": [ - "4 - General action" - ] - }, - { - "text": "Encourage ratification of the Optional Protocol to CRPD, as well as the establishment of a priority national program to address this agenda", - "values": [ - "4 - General action" - ] - }, - { - "text": "Put an end to the discrimination against the Pygmy minority and to grant them basic human rights.", - "values": [ - "4 - General action" - ] - }, - { - "text": "Speed up the adoption of the Child Welfare and Protection Bill, in order to achieve compatibility of domestic legislation, policy and practice with international standards, for the benefit of children", - "values": [ - "4 - General action" - ] - }, - { - "text": "Bring its law in conformity with its international human rights obligations by repealing all laws which result in, or are likely to result in the discrimination, prosecution and punishment of people solely for their sexual orientation or gender identity", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Ban child marriages and amend Law 422 of 2002 on the protection of minors in conflict with the law in order to raise the minimum age of criminal responsibility in compliance with international standards", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Consider ratifying CPED", - "values": [ - "3 - Considering action" - ] - }, - { - "text": "Extend standing invitation to the United Nations human rights special procedures ", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Consider ratifying the International Convention on the Rights of all Migrant Workers and Their Families", - "values": [ - "3 - Considering action" - ] - }, - { - "text": "Continue to take further measures towards inclusive and quality education", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Investigate, prosecute and punish those responsible for acts of violence against lesbian, gay, bisexual, transgender and intersex persons as part of its efforts to combat stereotypes and bias against them", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Request OHCHR to dispatch a technical assistance team to advise the Government on treaty reporting using the common core documents - the advantages of interaction with special procedures, including country visits - and on the necessary steps for the establishment of a national human rights institution", - "values": [ - "1 - Minimal action" - ] - }, - { - "text": "Strengthen its advocacy measures to educate and empower women, especially those who are in rural or hard-to-reach communities", - "values": [ - "4 - General action" - ] - }, - { - "text": "Take measures to ensure the protection of all women from rape and sexual violence, including female genital mutilation.", - "values": [ - "4 - General action" - ] - }, - { - "text": "Strengthen its efforts to eliminate discrimination against women in law and practice", - "values": [ - "4 - General action" - ] - }, - { - "text": "Continue its efforts in addressing the challenges regarding the improvement of the protection of children against abuse and neglect", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Investigate the cases and assess the possibility of making improvements to the facilities in local prisons ", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Decriminalize homosexuality and oppose all forms of discrimination and abuse against lesbian, gay, bisexual, transgender and intersex persons", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Strengthen actions aimed at ending child, early and forced marriage", - "values": [ - "4 - General action" - ] - }, - { - "text": "Improve the services, especially social services, provided to asylum-seekers - stress the importance of providing asylum-seekers deprived of means of subsistence with health insurance comparable to that afforded to nationals ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Amend its legislation to protect freedom of expression, including freedom of the press", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Implementing plans to develop human resources and the health-care delivery system and further reforming the management of health facilities.", - "values": [ - "4 - General action" - ] - }, - { - "text": "Promptly ratify the International Labour Organization (ILO) Domestic Workers Convention, 2011 (No. 189)", - "values": [ - "3 - Considering action" - ] - }, - { - "text": "Brief regularly the Council on the follow up of universal periodic review recommendations ", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Advance in the commitment to incorporate into the national human rights law the United Nations Guiding Principles on Business and Human Rights, with special attention to labour rights, rights of indigenous communities and environmental rights", - "values": [ - "4 - General action" - ] - }, - { - "text": "Expedite actions on draft bills under consideration, aimed at modernizing its legal framework in order to strengthen citizens' guarantees in courts of law, remove provisions that conflict with international commitments, reorganise the justice system to bring it closer to citizens and redefine the courts' jurisdictions and promote gender equality in access to electoral mandates, elected office and appointments to State institutions and Government departments ", - "values": [ - "4 - General action" - ] - }, - { - "text": "To pursue their efforts in taking the necessary measures to reduce and prevent racial discrimination ", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Prioritize respect of the cultural diversity of Roma and integrate it into social policies of the Czech Republic", - "values": [ - "4 - General action" - ] - }, - { - "text": "Speed up the process of the ratification of the Optional Protocol to the Convention on the Rights of the Child on a communications procedure", - "values": [ - "4 - General action" - ] - }, - { - "text": "Immediately cease, in accordance with the Guiding Principles on Internal Displacement 1998, all forms of forced displacement", - "values": [ - "4 - General action" - ] - }, - { - "text": "Cease attacks and prevent further strikes on medical facilities", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Strengthen both the Mechanism for the Protection of Human Rights Defenders and Journalists as well as the Office of the Special Prosecutor for Crimes Against Freedom of Expression", - "values": [ - "4 - General action" - ] - }, - { - "text": "Collect accurate statistics of cases of domestic violence against women, as well as strengthen support services to victims of domestic violence, including shelters and legal aid services", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Take further steps to strengthen social, economic and educational support provided to school children from immigrant minorities ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Take legislative and other measures to address discrimination, racial hatred and incitement, and investigate reported cases", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Ratify the OP-CRC-AC and OP-CRC-SC ", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Codify existing policies regulating the granting of asylum and refugee status ", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Put an end to the recruitment and use of children by all parties to the conflict in the Syrian Arab Republic. Children should be treated primarily as victims and those in detention should be freed and put in the care of those responsible for child protection", - "values": [ - "4 - General action" - ] - }, - { - "text": "Strengthen efforts to fully implement the recommendations adopted by the CRC and to prohibit all forms of violence against children.", - "values": [ - "4 - General action" - ] - }, - { - "text": "Develop a more systematic approach to cooperation between governmental bodies and civil society to combat child trafficking ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Continue to implement additional measures to prevent discrimination against women and girls", - "values": [ - "4 - General action" - ] - }, - { - "text": "Consider setting up an independent monitoring mechanism to carry out investigations into allegations of excessive use of force and police misconduct towards vulnerable groups.", - "values": [ - "3 - Considering action" - ] - }, - { - "text": "Continue to combat domestic violence with a policy of prevention as a priority for its Government programme for 2009-2013 ", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Ensure that its legal and institutional frameworks are in line with international human rights standards", - "values": [ - "4 - General action" - ] - }, - { - "text": "Include in its plan for ratification ICCPR and its two Optional Protocols, ICESCR, CAT, ILO Convention No. 87 (1948) concerning Freedom of Association and Protection of the Right to Organise, and ICRMW ", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Ensure that transitional justice mechanisms and reparations programmes fully integrate gender concerns and that justice for gender-based crimes during the conflict is realized.", - "values": [ - "4 - General action" - ] - }, - { - "text": "Increase the number of measures for persons with disabilities to obtain appropriate jobs", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Take further steps to improve the quality of education and take all measures to ensure that children complete primary and secondary school by addressing the reasons behind the non-completion of schooling ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Ensure that religious minorities can freely exercise their right to freedom of thought, conscience and religion", - "values": [ - "4 - General action" - ] - }, - { - "text": "Continue efforts to combat drug trafficking/trade and corruption", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Abolish the death penalty, and commute all death sentences to prison terms", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Continue taking the necessary measures to ensure universal primary education and to combat illiteracy in the country", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Withdraw the reservation to CEDAW", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Take the necessary legislative measures and enact policies that recognise the diversity of families and provide same sex couples with the same rights and social security benefits as heterosexual couples", - "values": [ - "4 - General action" - ] - }, - { - "text": "Intensify cooperation with the United Nations treaty bodies by submitting overdue national periodic reports to appropriate committees in the near future", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Take measures to strengthen the independence of the judiciary, to implement existing judicial procedures and to tackle the issue of corruption in its courts", - "values": [ - "4 - General action" - ] - }, - { - "text": "Continue its best poverty eradication strategies", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Study the possibility of repealing the death penalty from its legal regime", - "values": [ - "3 - Considering action" - ] - }, - { - "text": "Enact the Right to Information Bill, which has been reviewed by the Attorney General and was submitted to the Cabinet in May 2017", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Continue efforts to strengthen combating trafficking in women and girls and making trafficking in and sexual exploitation of women and children a criminal offence", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Continue consultations with civil society in the follow-up to the review ", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Cooperate with the United Nations and international organizations to confront challenges and obstacles in the area of human rights, and to share good practices with other countries in that regard", - "values": [ - "4 - General action" - ] - }, - { - "text": "In line with the Committee on the Rights of the Child recommendations regarding discrimination against vulnerable children, in particular girls and children with disabilities, envisage reviewing the legislation to guarantee the application of the non-discrimination principle ", - "values": [ - "3 - Considering action" - ] - }, - { - "text": "Withdraw its reservations on Article 21(a) of the Convention on the Rights of the Child ", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Take advantage of the technical assistance available through OHCHR to fulfil its reporting obligations to the various United Nations treaty bodies, as previously recommended", - "values": [ - "1 - Minimal action" - ] - }, - { - "text": "Inform migrants of their rights ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Continue efforts to ensure men and women the same legal rights in all areas of legislation, including those related to marriage and requirements to acquire Monegasque nationality.", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Continue to strengthen the general concept recognizing social and ethnic diversity in Thai society and protect fundamental rights ", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Recognize people of African descent as an ethnic group and promote their rights", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Strengthen the implementation of the measures set out in the five-year plan of action for elderly people", - "values": [ - "4 - General action" - ] - }, - { - "text": "Establish an effective and inclusive process for following up on the recommendations resulting from the present review", - "values": [ - "4 - General action" - ] - }, - { - "text": "Refrain from arbitrary arrest and the use of criminal libel laws against and harassment of journalists and opposition members", - "values": [ - "4 - General action" - ] - }, - { - "text": "Promote women's rights and their role in the family institution and society in line with its national and cultural particularities as well as its international obligations ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Speed up the legal process toward the abolition of the death penalty (including in the Penal Code) with the cooperation of the Office of the High Commissioner and the donors, and establish an official moratorium on the death penalty, including of minors, to be taken into account in all peace negotiations or agreements with the rebel factions", - "values": [ - "4 - General action" - ] - }, - { - "text": "Give a mandate to the office of the Ombudsman to bring it in compliance with the Paris Principles", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Continue to invest in poverty alleviation policies and to ensure more effective and targeted implementation, so as to reduce social and economic inequality, in particular for rural populations and indigenous peoples", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Expedite reform of governance, public administration and the legal system aimed at deepening and broadening democratic norms, principles and standards ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Ensure effective implementation of the laws on the elimination of all forms of discrimination and gender equality, including by putting in place effective enforcement mechanisms and raising awareness about the provisions of the legislation", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Take concrete steps to end discrimination against persons with disabilities", - "values": [ - "4 - General action" - ] - }, - { - "text": "Consider ratification of or accession to the International Convention on the Protection of the Rights of All Migrant Workers and Members of Their Families and the International Convention for the Protection of All Persons from Enforced Disappearance", - "values": [ - "3 - Considering action" - ] - }, - { - "text": "Continue its efforts to improve legislation to ensure that it is in line with international best practices and standards on freedom of expression", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Facilitate the access to asylum procedures in order to guarantee an international protection to asylum seekers ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Adopt and implement specific legislation on racism, racial discrimination, xenophobia and related intolerance, with particular emphasis on the protection of migrant workers and their families", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Implement fully the Sexual Offences Act through the national plan for the prevention of sexual violence and the establishment of a unit against sexual offences", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Provide general information about anti-discrimination and reform the school curricula to regularly emphasize information about gender equality, lesbian, gay, bisexual and transgender people and ethnic minorities ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Implement the National Strategic Health Plan in order to ensure that all people, regardless of their socioeconomic status, have access to a basic set of effective, efficient and quality health services", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Accelerate the adoption of the national action plan on human rights which was presented to the Icelandic Parliament", - "values": [ - "4 - General action" - ] - }, - { - "text": "Continue its efforts to prevent discrimination against Roma", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Adhere to human rights conventions to which Guinea is not yet a party ", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Continue to work with and seek the support of the international community for technical and financial assistance to overcome grave challenges of poverty and unemployment ", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Take measures to improve cooperation and coordination of activities among bodies at all levels which have a role to play in the promotion and protection of human rights", - "values": [ - "4 - General action" - ] - }, - { - "text": "Continue implementing the country's strategies and plans for socioeconomic development, particularly with a view to reducing poverty ", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Consider adopting a law to prevent, punish and eradicate the violence against women", - "values": [ - "3 - Considering action" - ] - }, - { - "text": "Take steps to ensure the availability of adequate food and freedom from hunger for its citizens", - "values": [ - "4 - General action" - ] - }, - { - "text": "Implement a system to counter domestic violence against women, and ensure that the perpetrators of such violence are prosecuted and appropriately punished ", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Promptly ratify the Optional Protocol to the Convention against Torture", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Continue upholding high standards in ensuring the right to vote, also in the future", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Ensure full and effective implementation of public policies to eradicate racial discrimination in all its manifestations by strengthening the National Institution against Racial Discrimination and the National Council for the Development of Afrodescendant Communities of Venezuela", - "values": [ - "4 - General action" - ] - }, - { - "text": "Put in place alternative solutions to the detention of migrants ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Speed up the procedures concerning the establishment of a national human rights institution in accordance with the Paris Principles", - "values": [ - "4 - General action" - ] - }, - { - "text": "Withdraw its reservation to article 27 of ICCPR on minority rights, and ratify the Council of Europe Framework Convention for the Protection of National Minorities ", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "The measures taken for protection of the rights of the disabled will be further strengthened in keeping with international standards. Disabled ex-combatants will be provided with artificial limbs, monthly financial support and a self-employment grant to enable economic and social reintegration", - "values": [ - "4 - General action" - ] - }, - { - "text": "Ensure that the legislative framework guarantees the full enjoyment of freedom of expression and association", - "values": [ - "4 - General action" - ] - }, - { - "text": "Implement the Convention on the Rights of Disabilities and the Optional Protocol thereto", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Implement with urgency its national strategy against sexual violence, and establish a mechanism to monitor the implementation of this strategy in consultation with civil society.", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Ratify the Optional Protocol to the Convention against Torture and establish a national mechanism for visits to places of detention", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Continue implementing its agrarian reform policy and resettlement program by giving land to groups who have been historically disadvantaged", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Consider becoming a party to CAT", - "values": [ - "3 - Considering action" - ] - }, - { - "text": "Ensure that the legislation includes a consultation process with indigenous peoples in all actions concerning them ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Enact legislation, which prohibits all corporal punishment of children in all settings, including as a sentence in the courts and ensure that positive and non-violent forms of discipline are promoted through awareness raising campaigns about the impact of corporal punishment on children ", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Expand judicial system reforms with a view to progressing towards independence of the judiciary and improving the fight against impunity", - "values": [ - "4 - General action" - ] - }, - { - "text": "Encourage racial, ethnic and religious tolerance, especially among youth ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Strengthen strategies for access to primary education, particularly for young girls ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Increase its national budget in the areas of health to ensure that its health facilities meet the Ministry of Health's guidelines and requirements with regard to equipment and services", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Amend the Criminal Code with the view to specifically prohibiting trafficking in human beings as a criminal offence", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Redouble its efforts to shed light on the cases of enforced disappearances that have remained unresolved ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Further reinforce the laws banning FGM and take other proactive measures to fight against these practices ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Ratify CRPD and its Optional Protocol and harmonize its national legislation with the provisions of these instruments.", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Take the necessary measures to follow up on the recommendations of CEDAW, notably by enshrining gender equality in its Constitution and by criminalizing domestic violence, and to place particular attention on gender issues in the preparation of policies.", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Act to combat the trafficking in persons, especially women and children ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Continue efforts to ensure an institutional and policy framework on business and human rights, following the guidelines adopted by the United Nations", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Continue to implement adequate measures to fight trafficking in women and girls for the purpose of sexual exploitation, as well as adequate measures to fight violence against women, including providing assistance and redress for victims of both crimes ", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Guarantee access to the North and the East of the country to international and local humanitarian organizations specialized on family tracing and reunification programs", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Adapt national legislation to bring it into line with the principles of equality and non-discrimination", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Pursue the implementation of effective legal and practical measures to protect the rights of children ", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Strengthen measures to promote access by persons with disabilities to employment in the public sector", - "values": [ - "4 - General action" - ] - }, - { - "text": "Take concrete measures by law to prevent and combat child abuse and ill-treatment of children within the family, at school, in other institutions and in society at large and to officially prohibit by law the use of corporal punishment within the family and at school.", - "values": [ - "4 - General action" - ] - }, - { - "text": "Pursue efforts to honour its commitments under the international human rights conventions to which it is a party, so as to ensure the protection of these rights ", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Repeal all legislative measures criminalising the exercise of the right of freedom of religion", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Accede to the Arms Trade Treaty", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Intensify its efforts with a view to submitting delayed reports to treaty bodies ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Monitor and verify the effectiveness of, and steadily implement, measures such as quota programmes in the areas of education and employment, special police and special courts for effective implementation of the Protection of Civil Rights Act and the Scheduled Caste and Scheduled Tribes Act, and the work of the National Commission for Scheduled Castes ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Continue to promote women's political participation and representation at national and local levels, including in the cabinet, political parties and the judicial system", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Abolish the death penalty in law and consider ratifying ICCPR-OP2", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Ensure that no acts of violence, intimidation, torture or discrimination are carried out against lesbian, gay, bisexual, transgender or intersex persons", - "values": [ - "4 - General action" - ] - }, - { - "text": "Continue to strengthen national human rights mechanisms ", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Carry out awareness and education campaigns in favour of non-discrimination based on sexual orientation", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Strengthen the independence, effectiveness and resources of the Truth for Reconciliation Commission", - "values": [ - "4 - General action" - ] - }, - { - "text": "Take necessary measures in law and in practice to put an end to all forms of discrimination against minorities, especially ethnic and religious minorities", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Step up efforts to improve the overall quality of education for the children including by providing increased budget allocations for the education sector.", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Continue efforts in following up and monitoring any discrimination based on sex, race or any other form", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Continue its efforts to promote equality between women and men ", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Demonstrate its commitment toward protecting and promoting human rights and fundamental freedoms by acceding to, without delay, the International Covenant on Civil and Political Rights and the International Covenant on Economic, Social and Cultural Rights", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Introduce national measures to reduce school segregation and actively promote participation in society through education among the Roma community ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Take effective steps to address child labour ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Ease legislative and administration restrictions on the registration and operation of independent media with a view to provide for plurality of information", - "values": [ - "4 - General action" - ] - }, - { - "text": "Implement effective means to ensure greater public awareness of the issues of domestic violence and gender discrimination and encourage greater involvement of Government agencies and civil society in efforts to address these issues.", - "values": [ - "4 - General action" - ] - }, - { - "text": "Become a party of the international instruments of protection and promotion of human rights still pending ratification, as appropriate, such as the 1961 Convention on the Reduction of Statelessness ", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Continue efforts to achieve full universal health coverage, including for non-nationals, as part of the National Health Strategy ", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Ratify the Convention against Torture and Other Cruel, Inhuman or Degrading Treatment or Punishment urgently and in accordance with its commitments from the 2012 universal periodic review", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Promote and protect the basic rights of ethnic and religious minorities in law and practice, especially Rohingyas", - "values": [ - "4 - General action" - ] - }, - { - "text": "Continue its efforts to assure birth registration of all children including the children of undocumented migrants ", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Address violations in the past and encourage adequate parliamentary procedures on laws drafted to ensure political stability and reduce potential domestic tensions ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Continue to strengthen its cooperation with the United Nations treaty bodies. Cooperation with the OHCHR is also key to support national reforms", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Continue its sustainable efforts and share its experiences and best practices in the area of poverty reduction with other developing countries, especially through the programme of South-South cooperation, along with its participation in international efforts to promote the right to development.", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Continue its efforts to upgrade and develop human resources in the health sector and improve health coverage in the country", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Immediately end the mandatory detention of migrant children and ensure that the best interests of the children are respected", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Remove the discriminatory restrictions on access to the labour market for Palestinian refugees", - "values": [ - "4 - General action" - ] - }, - { - "text": "Scale up effective measures to further increase women's representation and their meaningful participation in decision-making level in the public and private sectors", - "values": [ - "4 - General action" - ] - }, - { - "text": "Adopt measures to curb discrimination against women and violence against children ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Eliminate any discriminatory norms against women from its legislation.", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Adopt an anti-discrimination law with adequate and corresponding penal provisions to protect victims", - "values": [ - "4 - General action" - ] - }, - { - "text": "Continue strengthening its social policies in order to raise the quality of life of its people, in particular of those sectors most in need", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Invite the international community to assist in the monitoring of the action plan against sexual violence. ", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Reinforce the strategy and the National plan of action concerning internally displaced persons ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Redouble efforts on ensuring gender equality and take measures to prevent gender discrimination", - "values": [ - "4 - General action" - ] - }, - { - "text": "Take all the necessary measures to significantly increase the process of returning occupied private land back to its rightful owners, with a view to also addressing accusations of land-grabbing", - "values": [ - "4 - General action" - ] - }, - { - "text": "Give yearly briefings to the Human Rights Council on the follow-up of the recommendations of this universal periodic review session as a voluntary measure", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Continue its policy of promoting and protecting all rights of the members of recognized religious minorities, as an important step to provide cultural diversity in society and create opportunities for those minorities to preserve their identities and, to that end, further ensure their political representation and promote their greater involvement in the planning and implementation of various projects aimed at providing financial assistance for their educational and cultural needs", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Expeditiously take the actions necessary to combat the negative phenomenon of violence against children, and to provide efficient rehabilitation and reintegration schemes for victims", - "values": [ - "4 - General action" - ] - }, - { - "text": "Continue efforts, despite constraints, with the assistance and cooperation of the international community to improve the situation of the justice sector, the police and prisons", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Establish effective mechanisms to guarantee the safety of human rights defenders, judges, prosecutors and journalists, and ensure that acts of violence which in many cases result in deaths, intimidation and attacks against them, do not remain unpunished", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Pay special attention to the adoption of comprehensive measures to address the aggravating problem of trafficking in children. Consider the possibility of sending an invitation to the Special Rapporteur on trafficking in persons, especially in women and children ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Consider acceding to the Rome Statute of ICC", - "values": [ - "3 - Considering action" - ] - }, - { - "text": "Raise the minimum age of criminal responsibility in accordance with international standards, which should allow Botswana to withdraw its reservation to article 1 of the Convention on the Rights of the Child", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Ratify core international human rights conventions, prioritising the International Covenant on Civil and Political Rights and the Convention against Torture", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Continue efforts to counter the brain drain to foreign countries and strengthen standards of professional education related to the main economic activities in the country", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Give continuity to legislative and institutional reforms for the promotion and protection of human rights", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Conduct an analysis of the effects of the crisis on human rights, especially on socioeconomic rights, with particular focus on the situation of vulnerable groups such as refugees, migrants, Roma, children, women and elderly people ", - "values": [ - "3 - Considering action" - ] - }, - { - "text": "Strengthen the legislative framework through the criminalization of all forms of violence against women and children, including within the family, and foresee infrastructures to shelter victims", - "values": [ - "4 - General action" - ] - }, - { - "text": "Take measures to ensure that the Office of the Equal Opportunities Ombudsperson is strengthened sufficiently to carry out its functions", - "values": [ - "4 - General action" - ] - }, - { - "text": "Create effective institutional mechanisms to combat all forms of racial discrimination, xenophobia, racism and incitement to hatred", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Change Article 319 of the Penal Code and start a national dialogue on the acceptance of homosexuality", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Take steps to end intimidation and abuse of journalists by government officials and hold all perpetrators of violence against and harassment of journalists fully accountable", - "values": [ - "4 - General action" - ] - }, - { - "text": "Progressively develop existing capacity to effectively tackle modern slavery in fulfilment of its shared treaty obligations, building resilience across the entire Kingdom of the Netherlands", - "values": [ - "4 - General action" - ] - }, - { - "text": "Review its laws at the Federal and State levels with a view to bringing them in line with its international human rights obligations ", - "values": [ - "3 - Considering action" - ] - }, - { - "text": "Implement the Roma Strategy and Action Plans, in compliance with the Strategy and the Decade of Roma Inclusion 2005-2015.", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Continue promoting democracy in the country and gender equity in political parties", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Share its experience regarding the establishment of the independent national mechanism for the prevention of torture which may be used as a good practice in preventing torture", - "values": [ - "1 - Minimal action" - ] - }, - { - "text": "Consider ratifying the United Nations Educational, Scientific and Cultural Organization (UNESCO) Convention against Discrimination in Education", - "values": [ - "3 - Considering action" - ] - }, - { - "text": "Take all the necessary measures to end the employment of sexual violence in a widespread and systematic manner, as a tactic of war, as well as rape and sexual abuses against women and girls, and ensure that perpetrators are prosecuted", - "values": [ - "4 - General action" - ] - }, - { - "text": "Continue strengthening the institutional and administrative capacities of the civil service while expanding the action against corruption, especially in the health-care, education and judiciary sectors ", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Observe the principle of non-discrimination and the international human rights agreements to which the Democratic People's Republic of Korea is a party in its law and practice", - "values": [ - "4 - General action" - ] - }, - { - "text": "Take urgent measures to protect the most vulnerable groups, with particular attention to boys and girls", - "values": [ - "4 - General action" - ] - }, - { - "text": "Take appropriate measures in the legislative sphere, including allocations of financial resources with a view to strengthening the office of the Ombudsman and bring it in line with the Paris Principles", - "values": [ - "4 - General action" - ] - }, - { - "text": "Ensure free birth registration and birth certificate issuance, at least for children up to 5 years of age", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Take other legislative measures to declare illegal organizations that incite racial discrimination", - "values": [ - "4 - General action" - ] - }, - { - "text": "Increase efforts to address the question of sexual violence of children, in particular in rural areas, develop effective data collection with regard to sexual and physical abuse of children and ensure that adequate report, policing and juridical measures are in place.", - "values": [ - "4 - General action" - ] - }, - { - "text": "Reinforce measures to fight against migrant smuggling and human trafficking, which are at risk of increasing in Equatorial Guinea and in the entire subregion ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Continue efforts to elaborate uniform strategies and programmes for the promotion of human rights in all regions, in spite of the nation's diversity and complexity ", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Further mainstream human rights in all policies, programmes and activities of the Government ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Continue efforts on public administrative reforms ", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Respond to the recommendations of the Ombudsman without ignoring them", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Address the issue of children in immigration detention in a comprehensive manner ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Adopt the necessary implementation legislation for Registered Partnership Act and ensure its full implementation", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Reinforce national legislation prohibiting trafficking in persons, in particular children.", - "values": [ - "4 - General action" - ] - }, - { - "text": "Continue its efforts to protect the environment, including through implementation of the environment act adopted in July 2008, and envisage sharing this experience with concerned countries", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Continue its efforts in the field of combating domestic violence", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Adopt the new regulations in favour of a better protection of children's rights and continue efforts for the improvement of the situation of women in the society in Grenada, notably by ratifying the Optional Protocol to CEDAW and the third Optional Protocol to CRC", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Sign and ratify the Optional Protocols to the CRC on the sale of children, child prostitution and child pornography and on the involvement of children in armed conflict", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Review and align the laws of Zimbabwe to the 2013 Constitution, including in relation to section 61 on freedom of expression and freedom of the media, and ensure their implementation", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Guarantee a favourable environment for the work of all civil society actors active in the field of the protection and promotion of human rights", - "values": [ - "4 - General action" - ] - }, - { - "text": "Continue efforts to enact a law on the comprehensive protection of the rights of the child", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Ensure that the new initiatives on health centres reach all districts of the Kingdom", - "values": [ - "4 - General action" - ] - }, - { - "text": "Continue to support and to promote international solidarity", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Further develop economic assistance programmes for the elderly and persons with disabilities", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Enact a media law, in accordance with its international human rights obligations, and continue to professionalize its judiciary, pursue justice in cases of murdered journalists and ensure that the security forces and criminal courts do not punish journalists for controversial reporting, where such punishment has occurred, it is hoped that President Karzai will exercise his right to issue pardon", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Revise the Islamic Penal Code provisions that are discriminatory against women and girls, take urgent legislative steps to specifically criminalize domestic violence, including marital rape", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Put in place a strategic plan aimed at strengthening the promotion and respect of the rights of women and vulnerable persons", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Further strengthen the capacity in implementing the environmental strategies and plan to combat natural disasters", - "values": [ - "4 - General action" - ] - }, - { - "text": "Make further efforts to ensure free education for all, since much of the burden still remains with the families ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Ratify as early as possible all international human rights instruments that Angola has signed, and incorporate the provisions of these conventions into national legislation", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Conduct thorough and effective investigations into attacks on journalists and human rights defenders, in order to enable full enjoyment of the rights, as provided for under ICCPR and under the Constitution", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Establish a minimum age for marriage in line with international standards ", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Continue its efforts to ensure the total eradication of the harmful traditional practices of female genital mutilation ", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Take measures to reduce discrimination against migrants, especially those of Asian origin, in the labour market ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Provide police, gendarmerie and the armed forces with clear instructions and the necessary training to act in accordance with International Human Rights standards ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Ensure comprehensive sexuality education in the school curriculum, including on consent, contraception and gender-based violence", - "values": [ - "4 - General action" - ] - }, - { - "text": "Strengthen its efforts in prevention, punishment and eradication of all forms of violence against women ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Draw the consequences of the positive evolution of society with respect to homosexuality by abolishing the provisions of the Penal Code related to private relations between consenting adults", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Amend its legislation in accordance with the Second Optional Protocol to the International Covenant on Civil and Political Rights, in the briefest delay, with the aim of abolishing the death penalty", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Comply with its obligations under article 37 of CRC and article 6 of ICCPR and prohibit executions of persons who, at the time of their offences, were under the age of 18", - "values": [ - "4 - General action" - ] - }, - { - "text": "Strengthen and promote respect for civil and political rights through the judicial process regarding complaints initiated regarding the violation of such rights ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Pursue the implementation of the national programmes for alleviating poverty and improving living conditions, which will result in improvements in the lives of Kenyan children ", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Consider strengthening dialogue and cooperation by issuing a standing invitation to all special procedures of the Council.", - "values": [ - "3 - Considering action" - ] - }, - { - "text": "Sign and ratify the CRPD", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Proceed with national plans of action on disabilities and on eliminating violence against women ", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Redouble its efforts for the ratification of the International Covenant on Civil and Political Rights", - "values": [ - "4 - General action" - ] - }, - { - "text": "Strengthen measures to raise awareness on the situation of albinos, prevent crimes against them and ensure material assistance to the victims.", - "values": [ - "4 - General action" - ] - }, - { - "text": "Repeal Decree No. 1247 and establish clear procedures in secondary legislation in order to implement the right to free, prior and informed consent of indigenous peoples, regarding legislative or administrative measures affecting their territories and livelihood, as contained in the Constitution of Ecuador and in the ILO Indigenous and Tribal Peoples Convention, 1989 (No. 169)", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Approve the law on judicial career and ensure that it establishes an independent body to guarantee the independence of the judiciary and supervise the appointment, promotion and regulation of members of the profession", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Include sex and disability as grounds for non-discrimination in the Constitution", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Establish a national mechanism for the advancement of women in accordance with the 2030 Agenda for Sustainable Development", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Include sexual orientation and gender identity among the prohibited grounds of discrimination and repeal the provisions criminalizing homosexual relations between consenting adults", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Develop legislation to explicitly prohibit all forms of corporal punishment of children in all settings, in accordance with the recommendations of the Committee on the Rights of the Child ", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Clearly place sexual crimes in statute books, in accordance with international standards", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Build on its human rights and fundamental freedoms training through the elaboration of specific training programmes to prevent the abuse of power ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Strengthen gender awareness through the incorporation of content with a human rights approach into formal and informal education in order to eradicate violence against women ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Enlarge the scope of the White Paper for Vulnerable Children and its Children's Action Plan by taking into account the relationship between child abuse and contributing factors such as domestic violence and poverty ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Intensify and focus efforts on the promotion of initiatives likely to promote national reconciliation as well as a return to and the consolidation of peace and security in the country ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Continue to combat intolerance based on ethnic origin and ensure the full respect of the human rights of the so-called "erased" people", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Ensure the full prosecution of all forms of trafficking and modern slavery of children so as to deliver on its commitment to eliminate the worst forms of child labour by 2015 and all forms of child labour by 2020, paying particular attention to persons from minority groups and in vulnerable situations ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Accelerate efforts aimed at raising awareness and education among the general population on human rights, particularly on the rights of women, children and disabled persons ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Further strengthen its national legislation to combat trafficking in persons", - "values": [ - "4 - General action" - ] - }, - { - "text": "Become a party to the CAT ", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "While enquiring about the status of the legislative proposal aimed at punishing anyone who promotes homosexuality or any other deviance of a sexual nature in education establishment, recommended to withdraw it if it has not yet been done.", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Continue and strengthen efforts to provide quality education for all, especially free primary education for children and education for persons with disabilities", - "values": [ - "4 - General action" - ] - }, - { - "text": "Ratify the United Nations Educational, Scientific and Cultural Organization (UNESCO) Convention against Discrimination in Education (1960) ", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Ensure that violence against women and girls, including domestic violence and all forms of sexual abuse, constitutes a criminal offence, and that perpetrators are prosecuted and punished", - "values": [ - "4 - General action" - ] - }, - { - "text": "Maintain its efforts in favour of prevention, punishment and eradication of all forms of violence against women ", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Take immediate measures to end discrimination against its citizens for the alleged sins of their grandparents under the songbun system, ensure gender equality in practice, and address violence against women and girls", - "values": [ - "4 - General action" - ] - }, - { - "text": "Respect the provisions of the Constitution on human rights in its amendments to the Public Benefit Organizations Act and amendments to media laws", - "values": [ - "4 - General action" - ] - }, - { - "text": "Ensure satisfactory prosecution of cases of gender-based violence, in particular by increasing the number of competent personnel working in the judiciary system and the Public Prosecutor's office to combat violence against women and girls and by implementing a national plan for the prevention of gender-based violence and by ensuring that all relevant government departments collect and publish disaggregated data and statistics on violence against women and girls \n\n", - "values": [ - "4 - General action" - ] - }, - { - "text": "Intensify efforts aimed at eliminating structural discrimination, especially against the indigenous people and people of African descent", - "values": [ - "4 - General action" - ] - }, - { - "text": "Continue efforts to implement the Second National Comprehensive Action Plan to fight the worst forms of child labour, exploitation and trafficking of children for the period 2012-2015", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Strengthen the Third Basic Plan for Gender Equality and raise related measures to combat violence against women, treating the problems of women belonging to minorities in an effective way", - "values": [ - "4 - General action" - ] - }, - { - "text": "Promote, protect and respect the right to freedom of expression, assembly and association in compliance with the country\u2019s international human rights obligations", - "values": [ - "4 - General action" - ] - }, - { - "text": "Make further efforts to reinforce and protect the rights of the Muslim minorities in Myanmar", - "values": [ - "4 - General action" - ] - }, - { - "text": "Consider ratifying the Optional Protocol to the International Covenant on Civil and Political Rights, aiming at the abolition of the death penalty", - "values": [ - "3 - Considering action" - ] - }, - { - "text": "Continue to work with World Health Organization and other United Nations agencies as well as with relevant international organizations to strengthen the public health system and facilities, not only in the conflict-affected areas but also in all parts of the country", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Strengthen efforts to promote the active presence of women in society and in political life, including by combating stereotypes through awareness-raising campaigns", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Continue its efforts to improve the national system to access education for all children", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Continue its efforts to eliminate violence against women in line with the relevant recommendations of the Committee on the Elimination of Discrimination against Women ", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Continue efforts taken at the legislative and executive level to put an end to the human trafficking and hold accountable those responsible", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Accept article 14 of the International Convention on the Elimination of All Forms of Racial Discrimination.", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Cooperate at the regional level to find a solution to the very serious problem of the growing number of unaccompanied minors from El Salvador that immigrate to other countries of the region", - "values": [ - "4 - General action" - ] - }, - { - "text": "Fully implement its obligations under international law, including international humanitarian law, in particular the Fourth Geneva Convention of 1949 relating to treatment of non-combatants in the hands of the occupying power.", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Take measures in order to ratify the Protocol to Prevent, Suppress and Punish Trafficking in Persons, Especially Women and Children ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Mauritius then stated that it is committed to the protection of children from any form of abuse and exploitation and that a National Child Protection Strategy has been initiated in this regard.", - "values": [ - "4 - General action" - ] - }, - { - "text": "Actively address the negative impact of climate change on human rights", - "values": [ - "4 - General action" - ] - }, - { - "text": "Strengthen its institutions and ratify key treaties, including the Optional Protocol to the Convention against Torture.", - "values": [ - "4 - General action" - ] - }, - { - "text": "Take measures to ensure coordination of activities of national and international human rights organisations working on different aspects of human rights in Afghanistan", - "values": [ - "4 - General action" - ] - }, - { - "text": "Issue a standing invitation to all special procedures of the Human Rights Council ", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Overcome the challenges and constraints in the free primary education programme, particularly the social factors that limit enrolment for primary education and shortage of appropriately qualified teachers", - "values": [ - "4 - General action" - ] - }, - { - "text": "End the practice of indefinite national service and initiate demobilization for those who have completed the statutory 18 months of service ", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Undertake further appropriate measures to improve the situation of children, in particular taking into account the rights and needs of children in its national Poverty Reduction Strategy Paper and in all other programmes intended to improve the standards of living in the country", - "values": [ - "4 - General action" - ] - }, - { - "text": "Take further activities to improve the situation of the State-level Ombudsmen", - "values": [ - "4 - General action" - ] - }, - { - "text": "Enhance capacity-building in its pro-poor and results-based development planning policy and programmes", - "values": [ - "4 - General action" - ] - }, - { - "text": "Take measures to effectively end the practice of incommunicado detention and to ensure access of detainees to legal representation without undue delay.", - "values": [ - "4 - General action" - ] - }, - { - "text": "Call upon the international community to provide technical and financial assistance to Cote d'Ivoire to further contribute to the consolidation of human rights ", - "values": [ - "1 - Minimal action" - ] - }, - { - "text": "Continue efforts to strengthen the national human rights institutions", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Invite the Special Rapporteur on the independence of judges and lawyers to visit Rwanda", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Adopt the law of 2016 on prevention and combating of hate crimes and hate speech and work towards disseminating a culture of coexistence and enhancing the values of tolerance", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Increasing mainstreaming of human rights value in education curricula ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Go one step further and abolish completely the death penalty in its national legislation", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Promote inter-ethnic dialogue and tolerance, particularly at the cantonal and communal levels ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Continue to reinforce the pillars of peace throughout the country, in implementation of the CPA ", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Continue its international cooperation to contribute to the development of the world economy ", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Accede to the Rome Statute ", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Strengthen measures to prevent and punish racism, discrimination and violence against indigenous peoples and people of African descent and violence against women and girls", - "values": [ - "4 - General action" - ] - }, - { - "text": "Take all necessary measures to effectively fight against torture and ill-treatment, particularly in the police and penitentiary domains", - "values": [ - "4 - General action" - ] - }, - { - "text": "Continue the practice of acceding to the main international human rights instruments", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Continue its efforts to combat discrimination and violence based on gender, race and ethnic origin, among others ", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Increase its efforts in overcome existing challenges in the field of the judicial system, including corruption, transparency and accountability of the public administration as well as a rational division of responsibility between federal and regional levels of Government", - "values": [ - "4 - General action" - ] - }, - { - "text": "As in the case of over 11,000 ex-combatants already rehabilitated and reintegrated into their communities, the remaining number of persons undergoing programmes for the rehabilitation of ex-combatants will be reintegrated with their communities upon completion of the rehabilitation process. Ancillary support services will be provided to ex-combatants to facilitate their reintegration", - "values": [ - "4 - General action" - ] - }, - { - "text": "Amend and clearly redefine provisions in the Charities and Societies Proclamation and the Anti-Terrorism Proclamation in order to lift restrictions on the rights to freedom of association and freedom of expression ", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Continue to implement programs and measures to ensure the enjoyment of health services and quality education for its entire people", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Guarantee fundamental freedoms, in particular freedom of expression, which will contribute to the reconciliation process ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Develop a specific legal framework defining and protecting rights and freedoms of refugees and amend the 1962 Law on Entry and Exit with a view to de-penalise the illegal entry or presence of asylum-seekers and refugees registered by UNHCR", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Consider modifying its criminal legislation so that the offence of human trafficking could specifically target trafficking for the purpose of sexual exploitation", - "values": [ - "3 - Considering action" - ] - }, - { - "text": "Strengthen the national system of investigating complaints of child abuse and neglect, eliminate violence against children, and establish policies to protect children from all forms of violence ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Include a gender perspective and a rights-based approach in the implementation of its Rent Act (right to adequate housing) with the goal of overcoming gender-based inequalities.", - "values": [ - "4 - General action" - ] - }, - { - "text": "Ensure the freedom of expression and the right to freedom of assembly and association, limited of course, by the interest of defence, public safety and public order", - "values": [ - "4 - General action" - ] - }, - { - "text": "Revise its legislation on criminal libel, to limit defamation awards and to refrain from restricting access to the Internet", - "values": [ - "3 - Considering action" - ] - }, - { - "text": "Develop, with the support of relevant UN agencies, a comprehensive plan for the provision of adequate housing with basic services, both in temporary shelters and impoverished neighbourhoods, and ensure better coordination among agencies involved in such effort", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Implement promptly the Patriotic Agenda 2025", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Take the necessary measures to ensure that the existing national legislation against torture and cruel and inhumane and degrading treatment incorporates the highest international standards in this area ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Continue close cooperation with various stakeholders and non-governmental organizations in the follow-up of this review ", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Further strengthen human rights education and training for police officers ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Consider abolishing the death penalty under any circumstance", - "values": [ - "3 - Considering action" - ] - }, - { - "text": "Conduct prior consultations with indigenous communities, as required by international standards, in relation to all plans and projects that might affect them, in particular when it comes to large-scale projects such as hydroelectric dams and mining activities and regarding national plans and projects to reduce emissions from deforestation and forest degradation ", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Broaden the definition of violence in the Law on the Prevention of Domestic Violence, according to international standards, with a view to eliminating all forms of violence against women and girls", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Implement fully the judgments of ECHR, including any judgments related to officials accused of serious human rights violations in the North Caucasus ", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Introduce less restrictive and transparent regulations on the registration of political parties and public association ", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Take necessary measures, including administrative measures, to facilitate access to education to children who are not of Italian origin", - "values": [ - "4 - General action" - ] - }, - { - "text": "Ratify without reservations the Second Optional Protocol to the International Covenant on Civil and Political Rights", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Continue to try to ameliorate prison conditions", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Undertake prompt, effective and impartial investigations in the killings of all journalists in the territory under control of the Transitional Federal Government, and investigate threats of violence against them ", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Continue efforts to prevent, punish and eliminate all forms of violence against women, and to overcome the stereotypes that cause gender discrimination ", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Address the elimination of child labour in the ongoing 1972 Labour and Employment Act review ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Continue improving its legal human rights framework by ratifying or acceding to core instruments to which it is not yet party ", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Intensify its efforts to significantly reduce the rate of maternal and under-five child mortality and morbidity", - "values": [ - "4 - General action" - ] - }, - { - "text": "Take all steps necessary to combat discrimination and violence against women, both in regards to legislation and awareness-raising to ensure that women are informed of their rights.", - "values": [ - "4 - General action" - ] - }, - { - "text": "Definitely abolish the death penalty", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Bring to justice those who commit arbitrary killings, acts of torture and other human rights violations", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Become a party to and implement CRPD ", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Adopt more comprehensive legislation to combat trafficking in persons ", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Finalize the process of implementation of the Bill drafted for the abolition of capital punishment", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Take the necessary measures to ensure freedom of expression, the press and peaceful assembly, inter alia by ensuring that those responsible for acts of intimidation, harassment or violence against persons for having exercised their rights are held accountable", - "values": [ - "4 - General action" - ] - }, - { - "text": "Allow the registration of NGOs that are active in the human rights area, both at the legal and practical level", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Consider the establishment of a moratorium on executions during the process of consideration by the Government of the recommendations of the Law Commission of Indiaon the issue of the abolition of the death penalty", - "values": [ - "3 - Considering action" - ] - }, - { - "text": "Endow the competent authorities with more resources to apply the law that sanctions female genital mutilation, in particular in the most isolated areas", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Consider establishing a national human rights institution, in conformity with the Paris Principles, with a broad mandate, as soon as possible", - "values": [ - "3 - Considering action" - ] - }, - { - "text": "Continue its efforts to combat terrorism in order to ensure security and stability and to allow the Iraqi migrants to return and contribute to building their country", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Bring its legal system in line with its Constitution by implementing measures that guarantee gender equality and adopting legislation guaranteeing women effective remedies against violence ", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Consider the ratification of the Optional Protocol to the Convention against Torture and Other Cruel, Inhuman or Degrading Treatment or Punishment OPCAT, the Optional Protocol to the Convention on the Rights of the Child on the involvement of children in armed conflict OP-CRC-AC, the Convention on the Rights of Persons with Disabilities CRPD and the Optional Protocol to the International Covenant on Economic, Social and Cultural Rights OPA-ICESCR", - "values": [ - "3 - Considering action" - ] - }, - { - "text": "Continue promoting and protecting the rights of children", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Select the Ombudsman without delay and in line with the Paris Principles ", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Work to improve conditions in its prisons, including sanitary conditions, access to food and health care and overcrowding.", - "values": [ - "4 - General action" - ] - }, - { - "text": "Improve the infrastructures for the shelters accommodating persons with albinism by providing them with access to drinking water, locked of doors, adequate light and safety", - "values": [ - "4 - General action" - ] - }, - { - "text": "Continue efforts to ensure the effective implementation of the Children\u2019s Code to guarantee that those cases of ritual infanticide, sexual child abuse, trafficking in children and early marriage are prosecuted and sanctioned", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Continue to focus work on the rights of women and children, and to lift its reservations to the Convention on the Elimination of All Forms of Discrimination against Women to guarantee fair and equal legislation", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Improve the levels of assistance provided to children, especially disabled children, children in vulnerable groups, orphans and street children, and ensure their full integration into society, and take all measures to put an end to child labour ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Fully guarantee the right to receive, seek and impart information and ideas in compliance with article 19 of ICCPR", - "values": [ - "4 - General action" - ] - }, - { - "text": "Continue strengthening the existing mechanisms in the fight against trafficking in persons, particularly of women and children ", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Expedite impartial investigations into the violent incidents in Santa Cruz and Pando with a view to identifying those responsible and bringing them to justice in a fair trial before an independent court", - "values": [ - "4 - General action" - ] - }, - { - "text": "Reform and adapt its laws, regulations and practices relating to the right to assembly, association, movement or expression and freedom of expression in accordance with international standards", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Include civil society organizations in the process before finalizing and submitting the national report", - "values": [ - "4 - General action" - ] - }, - { - "text": "Come to a more streamlined and transparent registration process and visa issuing for clergy and religious personnel in general", - "values": [ - "4 - General action" - ] - }, - { - "text": "Bring alleged perpetrators of slavery to justice, and ensure that victims of slavery enjoy full reparations ", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Strengthen efforts to promote and protect the rights of people living in rural areas and the situation of rural migrant workers", - "values": [ - "4 - General action" - ] - }, - { - "text": "The State does, however, recognize that there are still challenges to meet. It has undertaken to expand national prison capacity by 24,331 places by building ten new prison complexes. It is also designing and introducing new means of restricting liberty such as electronic tagging as an alternative to a [prison] sentence, and the urban farming programme, which is intended to train inmates to provide enough food for themselves and their families when they are freed.", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Consider taking initial steps towards the ratification of other international human rights instruments that it is not yet a party to", - "values": [ - "3 - Considering action" - ] - }, - { - "text": "Continue with the efforts to improve the status of women, including measures for gender equality at all levels in society, with a view to enhancing their contribution to the national development processes", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Ensure the right of indigenous people to their ancestral lands through the implementation of the relevant legislation with measurable targets and effective data collection ", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Intensify efforts to build the capacity of law enforcement authorities on the basic rights of citizens ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Conduct prompt and full investigation into extrajudicial executions and political killings and ensure that those responsible are prosecuted and afforded a fair trial free of political interference ", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Further strengthen and provide all the appropriate means (financial and institutional) for the national organizations for defence of human rights so that they can pursue and achieve their objectives ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Sign or ratify the following international convention: CRPD ", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Carry out an investigation into the possible involvement by officials of the Calgary prison in the brutal beating of August 2012 in the pre-trial detention facility cell of the Russian student, Telyakov by family name, arrested on trumped up charges, which were subsequently withdrawn ", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Consider acceding to the Second Optional Protocol to the International Covenant on Civil and Political Rights, aiming at the abolition of the death penalty", - "values": [ - "3 - Considering action" - ] - }, - { - "text": "Bring national legislation on freedom of expression in compliance with international law", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Facilitate unfettered access to humanitarian aid and assistance, particularly to the regions and communities most affected by the conflict", - "values": [ - "4 - General action" - ] - }, - { - "text": "Establish a moratorium with a view to abolishing the death penalty", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Prosecute those responsible for crimes against women, promulgate the individual and family code and provide assistance for women who have been victims of sexual violence.", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Establish a national human rights institution in keeping with the Paris Principles", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Take steps for the comprehensive prohibition of corporal punishment, including when exercising parental rights ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Revise its legislation on the death penalty bearing in mind existing international standards on the subject, especially concerning transparency.", - "values": [ - "3 - Considering action" - ] - }, - { - "text": "Continue providing training and implementing measures to tackle trafficking in persons, paying particular attention to the promotion and protection of the rights of the child", - "values": [ - "3 - Considering action" - ] - }, - { - "text": "Build a true dialogue with civil society and engage NGOs in the decision-making process at all levels", - "values": [ - "4 - General action" - ] - }, - { - "text": "Continue to give increased attention to the gender gap between girls and boys in their advancement at all levels of education.", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Continue efforts and share best practices on combating human trafficking both nationally and internationally by closely cooperating with concerned parties", - "values": [ - "4 - General action" - ] - }, - { - "text": "Continue multiplying measures that guarantee the full protection of the human rights of foreigners in South Africa ", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Accede, as a priority, to the International Convention on the Protection of the Rights of All Migrant Workers and Members of Their Families as well as to CRPD and to the two Optional Protocols to CRC ", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Accelerate the entry into force of the amendments to the Swiss Law on Asylum concerning judicial assistance", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Adopt a law on a National Preventive Mechanism and enact it as soon as possible", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Continue to mobilize resources and redouble efforts towards the fulfilment of its human rights obligations", - "values": [ - "4 - General action" - ] - }, - { - "text": "Raise public awareness to counter deeply rooted traditional patriarchal attitudes which lead to violence against women, as recommended by CEDAW ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Establish a National Human Rights Institution in full accordance with the Paris Principles", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Continue to address legislative gaps related to the rights of women", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Adopt the necessary measures in order to better comply with the recommendations on the use of minority languages released by the Council of Europe, with particular reference to the rights of the autochthonous Italian minority", - "values": [ - "4 - General action" - ] - }, - { - "text": "Pay particular attention to the human rights related issues, particularly by encouraging effective participation of women in political life", - "values": [ - "4 - General action" - ] - }, - { - "text": "Abolish the death penalty and consider ratifying the second Optional Protocol to the ICCPR as well the CAT ", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Abolish the practice of caged beds in all health-care and social care facilities.", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Continue with enlightened initiatives such as the Yes I Can literacy programme in diverse national, regional, and local realities, a programme aimed at implementing the right to education, broaden the scope of its cooperation in sharing and replicating its home-grown methods of combating illiteracy", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Continue the efforts to promote and protect traditional family values", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Continue to implement measures to promote the participation of women in society", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Develop a national action plan on human rights", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Pursue its education programmes with a human rights approach", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Set up an independent commission to monitor and identify cases of torture and ill-treatment perpetrated by law enforcement officials.", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Accede to the 1961 Convention on the Reduction of Statelessness, and streamline the administrative process in order to reduce the number of stateless persons", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Decriminalize defamation and place it under the Civil Code in accordance with international standards ", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Continue to mainstream human rights through training and awareness-raising programs in all relevant sectors", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Harmonize the definition of the child in domestic law and put an end to the voluntary recruitment of minors into the army", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Criminalize the discrimination and violence based on sexual orientation and gender identity, including hate crimes", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Continue with efforts to provide more protection to domestic workers and improve their living conditions", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Take concrete actions to fight against human trafficking and illegal migrants, to implement international obligations and defend normal order of international migration", - "values": [ - "4 - General action" - ] - }, - { - "text": "Repeal section 250 of the Criminal Code which criminalizes sexual conduct between consenting adults of the same sex", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Expedite operationalization of an independent human rights institution in accordance with the Paris Principles ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Take steps to address increasing trends in early, forced and child marriage", - "values": [ - "4 - General action" - ] - }, - { - "text": "Replace criminal defamation and libel laws with civil ones, and reform national security laws to provide greater protections for free expression", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Design instruments for measuring and generating reliable and disaggregated data on persons with disabilities and remove any legal barrier and discriminatory practices towards persons with disabilities", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Intensify the mediation process between conflict parties emphasizing the principles of inclusion of all relevant stakeholders to the conflict as well as parity", - "values": [ - "4 - General action" - ] - }, - { - "text": "Continue the implementation of policies aimed at improving the living standards of indigenous peoples and take all the necessary measures to eradicate discrimination against them ", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Continue the implementation of ongoing policies and programmes to guarantee access for the entire population to health services and quality education ", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Continue, with international support, its efforts to spread a culture of human rights in the society, establish and reform the institutions for law enforcement and an independent, effective and impartial justice system.", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Ratify the Optional Protocol to the International Covenant on Economic, Social and Cultural Rights and accept its procedures on investigation and communications between States ", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Ensure free, transparent and broad-ranging participation of civil society, minorities and ethnic communities in the national public debate", - "values": [ - "4 - General action" - ] - }, - { - "text": "Explore the possibility of establishing national-level coordination mechanism to assess and monitor implementation of the Government's treaty obligations", - "values": [ - "3 - Considering action" - ] - }, - { - "text": "Repeal all legislation which may discriminate against lesbian, gay, bisexual, transgender and intersex persons", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Consider ratifying CED and ICRMW ", - "values": [ - "3 - Considering action" - ] - }, - { - "text": "Ensure the full enjoyment of the rights to freedom of expression, association and peaceful assembly, including those of human rights activists, journalists and users of social networks, so that they no longer have to fear being arrested, detained, harassed or intimidated", - "values": [ - "4 - General action" - ] - }, - { - "text": "Call upon the international community to assist in capacity-building for the further strengthening of democracy and the promotion and protection of human rights in Afghanistan.", - "values": [ - "1 - Minimal action" - ] - }, - { - "text": "Take measures to ensure the universal registration of births, including through the simplification of necessary requirements and the removal of costs", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Expand the use of technology in order to reduce judiciary delays and improve judicial efficiency ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Ensure that the planned counter-extremism bill is in compliance with international law and does not single out certain organizations on the stereotypical assumption, based on general characteristics such as religion and the predominant race of the membership of the organization", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Continue moving forward with a view to achieving peace through a dialogue", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Continue efforts to eliminate all forms of discrimination and violence against women, particularly in the labour market", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Remove all restrictions in law and practice which infringe upon the work of civil societies and to ensure that all legal provisions on the rights to freedom of expression, association and peaceful assembly are in line with international human rights standards", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Redouble efforts to combat racial discrimination, xenophobia and related intolerance", - "values": [ - "4 - General action" - ] - }, - { - "text": "Step up efforts to improve the integration of ethnic and minority linguistic groups, including welcoming migrants, asylum-seekers, refugees and stateless persons ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Strengthen its policies relating to children labour and the elimination of the economic exploitation of children", - "values": [ - "4 - General action" - ] - }, - { - "text": "Reinforce the policy of promoting children's rights and the implementation of the Guidelines for the Alternative Care of Children, according to Human Rights Council resolution 11-7 and General Assembly resolution 64-142", - "values": [ - "4 - General action" - ] - }, - { - "text": "Ensure full respect for minority rights in the new constitution ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Follow up the recommendation of the Special Representative of the Secretary-General on the situation of human rights defenders and denounce more forcefully verbal and physical attacks against human rights defenders.", - "values": [ - "4 - General action" - ] - }, - { - "text": "Ensure the prosecution and punishment of perpetrators of human trafficking, and provide adequate assistance and protection services to victims", - "values": [ - "4 - General action" - ] - }, - { - "text": "Develop awareness campaigns on equality and non-discrimination ", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Invest more on a workable programme that would ensure the smooth coordination and implementation of their own initiatives and the different recommendations by treaty bodies", - "values": [ - "4 - General action" - ] - }, - { - "text": "Repeal all national legal provisions that are incompatible with international norms, such as the legislation that encourages detention on the basis of mere suspicion of having broken the law", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Adopt and ensure full implementation of the public policy for the protection of human rights defenders as well as the protocol of the Public Prosecutor\u2019s Office on the investigation of cases against human rights defenders", - "values": [ - "4 - General action" - ] - }, - { - "text": "Address the issues raised by the Special Rapporteur on the right to food concerning the deep and severe food insecurity faced by Aboriginal peoples across Canada living both on and off reserves, in remote and urban areas, especially for children ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Adopt measures so that traditional stereotypes referring to the roles of men and women in society and family can be overcome ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Accelerate the development of activities of one of the existing institutions responsible for the promotion and protection of human rights in order to better adapt it and convert it into an institution which is in conformity with the Paris Principles", - "values": [ - "4 - General action" - ] - }, - { - "text": "Intensify its efforts to include gender as a discrimination ground in the Constitution ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Take additional effective legislative and administrative measures to promote gender equality", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Continue its efforts for the protection and promotion of the human rights of vulnerable groups, including persons with disabilities and children", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "That the Anti-Terror Law be revised or abolished ", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Ratify the 1951 refugee convention and its 1967 protocol, the 1954 and 1961 conventions on statelessness and OP-CAT ", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Introduce literacy programmes aimed especially at women, and improve access to education\nby women, including those in remote parts of the country ", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Accept the advisory services offered by OHCHR ", - "values": [ - "1 - Minimal action" - ] - }, - { - "text": "Recommended removing restrictions on freedom of information and expression", - "values": [ - "4 - General action" - ] - }, - { - "text": "Take steps to ratify the Convention against Torture and Other Cruel, Inhuman or Degrading Treatment or Punishment", - "values": [ - "4 - General action" - ] - }, - { - "text": "Take effective measures to ensure the full realization of the right to freedom of expression, including on the Internet, of assembly and of association as well as to ensure that all human rights defenders, lawyers and other civil society actors are able to carry out their legitimate activities without fear or threat of reprisal", - "values": [ - "4 - General action" - ] - }, - { - "text": "Continue to improve the conditions of detention ", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Allocate sufficient resources to ensure effective implementation of the national plan to combat violence against women", - "values": [ - "4 - General action" - ] - }, - { - "text": "Intensify efforts to develop a national human rights action plan", - "values": [ - "4 - General action" - ] - }, - { - "text": "Consider extending invitations to the relevant mandate holders of thematic UN special procedures, and intensify its collaboration with the human rights mechanisms of this organization ", - "values": [ - "3 - Considering action" - ] - }, - { - "text": "Adopt measures immediately and in line with international human rights standards to protect the rights of children and in particular to prohibit child labour and prevent, criminalize and punish sexual exploitation and child trafficking", - "values": [ - "4 - General action" - ] - }, - { - "text": "Consider ratifying the International Covenant on Economic, Social and Cultural Rights, the International Covenant on Civil and Political Rights and its Second Optional Protocol, aiming at the abolition of the death penalty, and the Convention Against Torture and its Optional Protocol", - "values": [ - "3 - Considering action" - ] - }, - { - "text": "Continue to strengthen efforts to protect the rights of foreign workers ", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Sign those international human rights instruments to which it is not yet a party, including the International Covenant on Civil and Political Rights and the International Covenant on Economic, Social and Cultural Rights, and also become a party to the Rome Statute of the ICC ", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Send a clear signal that no human rights violations committed by members of the army will be tolerated, and take specific measures in order to bring to justice those responsible, without exceptions and regardless of their rank ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Continue to strengthen the system of response to gender-based violence so as to help eradicate it", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Ensure a rigorous implementation of its legislation in the main sectors that have an impact on the enjoyment of human rights such as education, health, rights of women and children, environment and access to justice", - "values": [ - "4 - General action" - ] - }, - { - "text": "Work to ensure that constitutional guarantees of the inviolability of freedom of thought, conscience and religions are carried out for all", - "values": [ - "4 - General action" - ] - }, - { - "text": "Pursue the efforts to establish and carry-out national programmes in relation to the right to education and the quality of education at every level through-out the country", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Take all necessary steps to ensure freedom of the media and duly address all cases of restrictions on the media", - "values": [ - "4 - General action" - ] - }, - { - "text": "Elaborate a National Action Plan for the promotion and protection of human rights that allows federal and non-federal institutions that work in this field to better coordinate policies and their implementation ", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Intensify efforts to reduce the infant mortality rate ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Continue its national efforts, with the support and assistance of the international community, in the promotion and protection of human rights particularly in the realization of economic, social and cultural rights of the people of Gabon", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Ratify ICCPR and ICESCR, which it signed in 1995 ", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Adopt a law to prohibit female genital mutilation ", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Continue efforts to ensure equal opportunities for girls and women in terms of education, access to employment, housing and working conditions", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Intensify investigations of trafficking crimes in high tourism sectors and other areas with prostitution, aggressively prosecute traffickers", - "values": [ - "4 - General action" - ] - }, - { - "text": "Continue its efforts to promote and protect human rights for its people and hold workshops and seminars to increase public awareness on human rights matters ", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Step up efforts to consider acceding to ICRMW ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Establish a moratorium on the death penalty as an interim measure before its abolition and the implementation by the Syrian Arab Republic of its human rights obligations, including the core international human rights treaties", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Ensure that appropriate mechanisms for addressing grievances are put in place well ahead of the upcoming elections ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Gender focal points will be appointed to each line Ministry of Government", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Support the work of civil society by implementing public policies to protect it and end the misuse of penal and administrative law against human rights defenders, including indigenous peoples\u2019 human rights defenders, especially in the context of hydroelectric and mining projects", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Ensure comprehensive human rights training for its law enforcement personnel with a view to prevent any excessive use of force and to investigate, prosecute and punish the perpetrators of such human rights violations, in accordance with international standards ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Continue to strengthen the rule of law as well as its national institutions aimed at further promoting and protecting human rights in accordance with the will and aspirations of the people of Nicaragua", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Work with the Government of Haiti to ensure Haitians living in the Dominican Republic have adequate access to civil and birth registration mechanisms in order to establish the Haitian citizenship ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Take appropriate legislative measures towards the ratification of the Convention on the Rights of Persons with Disabilities and towards improvement of living conditions, employment opportunities and access of persons with disabilities", - "values": [ - "4 - General action" - ] - }, - { - "text": "Continue to fight poverty, with the support and cooperation of the international community ", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Recognize the competence of the Committee against Torture and make the declaration under articles 21 and 22 of the Convention against Torture and Other Cruel, Inhuman or Degrading Treatment or Punishment", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Formulate specific technical assistance requests to OHCHR in the area of access to justice and law enforcement to ensure an optimal awareness-raising on human rights requirements for civil servants working in these fields", - "values": [ - "1 - Minimal action" - ] - }, - { - "text": "Scale up efforts in Italy to face the scourge of drugs that destroy human beings and societies, and therefore to enact additional legislation that prevents it", - "values": [ - "4 - General action" - ] - }, - { - "text": "Launch a credible investigation into reports that surfaced following the riots and prosecute offenders.", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Engage civil society in the follow-up implementation process of the UPR recommendations", - "values": [ - "4 - General action" - ] - }, - { - "text": "Ensure the full enjoyment of the right to freedom of expression and to peaceful assembly and revise its national legislation, inter alia the Internal Security Act and the Newspaper and Printing Presses Act, in order to eliminate media censorship and prevent self-censorship, in this regard, protect bloggers from persecution and harassment for the exercise of their human rights", - "values": [ - "4 - General action" - ] - }, - { - "text": "Ratify the Optional Protocol to the International Covenant on Economic Social and Cultural Rights", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Continue, in collaboration with the National Commission for Women and Children and other\nrelevant stakeholders, to pursue public advocacy campaigns and promote greater awareness and\nunderstanding of the rights of victims of violence against women ", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Raise the minimum age of marriage from 16 to 18 years", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Raise the age of criminal responsibility to 18 years for all types of offenses", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Put an end to the death penalty", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Further the efforts of some local governments and private firms to eliminate discrimination based on sexual orientation and gender identity, including by extending at the national level formal recognition of same-sex partnerships", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Establish an inter-institutional dialogue to implement the recommendations of the Subcommittee on Prevention of Torture", - "values": [ - "4 - General action" - ] - }, - { - "text": "Consider ratifying the remaining international human rights instruments ", - "values": [ - "3 - Considering action" - ] - }, - { - "text": "Ratify various international human rights statutes and conventions, including the Rome Statute and the ILO Conventions Nos. 87, 169 and 189", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Give more focus to building the capacity of institutions responsible for poverty eradication programmes of the Government", - "values": [ - "4 - General action" - ] - }, - { - "text": "Continue to endeavour to develop the right to health through the adoption of free care, provided through the Equity Funds in Madagascar", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Study the possibility of ratifying the International Convention on the Elimination of All Forms of Racial Discrimination", - "values": [ - "3 - Considering action" - ] - }, - { - "text": "Adopt a moratorium on the death penalty and prohibit public executions, as a first step to abolition", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Reform the penitentiary system with a view to ensuring humane conditions in detention, in line with the international standards ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Adopt policies to ensure equality of rights for all persons, without discrimination of gender, religion, race or sexual orientation, in line with international standards", - "values": [ - "4 - General action" - ] - }, - { - "text": "Step up efforts in alleviating poverty and further improve wealth distribution in order to achieve Millennium Development Goal 1 on poverty reduction by 2015", - "values": [ - "4 - General action" - ] - }, - { - "text": "Take further measures to ensure that children with disabilities have access to transportation, facilities and health services and ensure their integration into the general education system", - "values": [ - "4 - General action" - ] - }, - { - "text": "Finalize the ratification of the International Convention for the Protection of All Persons from Enforced Disappearance", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Intensify its effort in ensuring gender equality, in particular, by reviewing its legal provisions in the area of civil and family law", - "values": [ - "4 - General action" - ] - }, - { - "text": "Share with interested developing countries their good practices in the implementation of this concept of Scientific Outlook on Development", - "values": [ - "1 - Minimal action" - ] - }, - { - "text": "Continue to protect vulnerable groups, such as women", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Adopt a comprehensive law to combat all forms of violence against women, including domestic violence and marital rape", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Take immediate steps to repeal laws which criminalize and/or restrict freedom of expression and of the media, in particular the Sedition and Subversive Activities Act (1938), the Proscribed Publications Act (1968) and provisions of the Suppression of Terrorism Act (2008)", - "values": [ - "4 - General action" - ] - }, - { - "text": "Ensure the incorporation into the domestic legal system of the principles and provisions of the Convention on the Rights of the Child (CRC) ", - "values": [ - "4 - General action" - ] - }, - { - "text": "The universal periodic review was a dynamic process of consultation of independent institutions monitoring compliance of human rights in Luxembourg. This consultation process also involved civil society organizations engaged in the promotion and protection of human rights. It was a beneficial exercise for the country. Luxembourg pledged to continue this consultation on a regular basis in order to ensure an appropriate follow-up to the review report and outcome", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Consider ratifying OP-CAT in the near future", - "values": [ - "3 - Considering action" - ] - }, - { - "text": "Continue to allow unfettered regular access of the ICRC to detention and prison facilities.", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Make increased efforts to truly bring an end to discrimination", - "values": [ - "4 - General action" - ] - }, - { - "text": "Give priority to the continuation of efforts to promote the right to education ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Continue with determination and speed up the reform process it has begun.", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Continue efforts in providing necessary care for persons with disabilities in line with its obligations under CRPD", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Enhance efforts towards increasing women's participation in the public and political life of their country", - "values": [ - "4 - General action" - ] - }, - { - "text": "Eradicate all harmful practices such as female genital mutilation and early or forced marriages, and take the necessary measures to ensure the full protection of boys and girls", - "values": [ - "4 - General action" - ] - }, - { - "text": "Ratify the International Convention for the Protection of the Rights of All Migrant Workers and Members of their Families", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Intensify its efforts in the area of combating racism, racial discrimination, xenophobia and related intolerance with a more committed contribution in the preparatory process for the Durban Review Conference with a view to ensuring its success", - "values": [ - "4 - General action" - ] - }, - { - "text": "Continue to empower the status and participation of women in social and business spheres", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Include the promotion of multiculturalism in education curricula, including by sensitizing teachers to work in a multicultural environment ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Implement all necessary measures to ensure fair trial under all circumstances, investigate vigorously all allegations of torture and other forms of maltreatment and bring those who are responsible to justice", - "values": [ - "4 - General action" - ] - }, - { - "text": "Modify its national law to define rape as a criminal offense", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Step up efforts including working closely with ICRC and other relevant parties, to stop the recruitment and use of children by all parties involved in conflicts in the country.", - "values": [ - "4 - General action" - ] - }, - { - "text": "Consider the possibility of incorporating progressively into its domestic legislation the provisions set out in the international instruments mentioned in paragraphs 73.4, 73.5, 73.6, 73.8, 75.7, 75.11 and 75.18, once it has proceeded to their ratification ", - "values": [ - "3 - Considering action" - ] - }, - { - "text": "Ensure that all branches of the State, including agents of public authorities, fully respects and promotes the freedom of expression", - "values": [ - "4 - General action" - ] - }, - { - "text": "Implement the Indigenous Peoples' Rights Act to ensure that economic activity, in particular mining, does not negatively affect the rights of indigenous peoples ", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Fully implement the Education for Persons with Special Educational Needs Act 2004 as soon as possible ", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Reinforce further the rights of internally displaced persons in law and in practice", - "values": [ - "4 - General action" - ] - }, - { - "text": "Continue to apply strategies and development plans at the socioeconomic level throughout the country ", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Release all Arab prisoners and ensure that they are treated in accordance with international humanitarian law and international human rights law", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Continue to ensure unified implementation of its policy for the integration of Roma in Slovak society.", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Align its national legislation with the Rome Statute of the International Criminal Court, including by adopting provisions to cooperate with the International Criminal Court", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Take steps to incorporate provisions on gender equality and discrimination against women in the Constitution or national legislation", - "values": [ - "4 - General action" - ] - }, - { - "text": "Free without delay prisoners of conscience and those who are arbitrarily detained", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Promote policies and programmes to combat racial hatred and discrimination against minorities and refugees, as well as to sanction such acts", - "values": [ - "4 - General action" - ] - }, - { - "text": "Implement existing laws on all forms of violence and sexual violence against women and girls, including \u201chonour\u201c crimes, female feticide and female infanticide, expand the definition of rape and sexual assault to include marital rape, and end harmful practices such as child, early and forced marriage", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Continue to seek support from the international community in the form of financial or technical assistance in accordance with its national priorities ", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Seek assistance from the international community to more comprehensively address adaptation measures to address the effects of climate change", - "values": [ - "1 - Minimal action" - ] - }, - { - "text": "Intensify its efforts to combat child prostitution, provide effective support to the children affected and sensitize its police forces to this problem in particular through adequate training courses.", - "values": [ - "4 - General action" - ] - }, - { - "text": "Continue to strengthen measures to reform the judicial system, in line with applicable international standards ", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Fully cooperate with the International Criminal Court to seek accountability against persons bearing the greatest responsibility for crimes, particularly crimes against humanity, committed during the 2007 general elections in Kenya ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Ensure compliance with article 19 of the ICCPR and works towards an environment conducive to a free and open press", - "values": [ - "4 - General action" - ] - }, - { - "text": "Review its national legislation to ensure full alignment with the Rome Statute of the ICC and ratify the Kampala amendments to the Rome Statute", - "values": [ - "3 - Considering action" - ] - }, - { - "text": "Ensure that the restriction of some right, such as the right to vote for people with disabilities, is carried out with all the due guarantees and in line with the provisions of the Convention ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Follow-up on the recommendations of the Committee on Rights of the Child to devote greater resources to the improvement of the quality of the educational system", - "values": [ - "4 - General action" - ] - }, - { - "text": "Take into serious consideration the ratification of other core human rights instruments, especially ICCPR and ICESCR", - "values": [ - "3 - Considering action" - ] - }, - { - "text": "Consider allocating necessary resources to support programmes which promote and protect the rights of persons with disabilities", - "values": [ - "3 - Considering action" - ] - }, - { - "text": "Maintain, and if possible increase, the levels of investment in education for all", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Continue applying a gender perspective in its national policies ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Accelerate efforts in establishing a national network of schools that guarantee equality of access to children irrespective of their religious, cultural or social background", - "values": [ - "4 - General action" - ] - }, - { - "text": "Repeal all provisions in the law which may be used to criminalize consensual sexual activity between adults ", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Take all necessary measures to address violence against women as well as gender inequality in particular in the workplace and in the context of pregnancy or family status", - "values": [ - "4 - General action" - ] - }, - { - "text": "Allocate sufficient resources to promote the rights of persons with disabilities", - "values": [ - "4 - General action" - ] - }, - { - "text": "Revise the Migration Law of 1958 so that federal initiatives do not penalize foreign migrants in an irregular situation ", - "values": [ - "3 - Considering action" - ] - }, - { - "text": "Continue to implement the strategies and socioeconomic development plans, particularly those aimed at reducing poverty and promoting women's empowerment", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Sign and subsequently ratify the International Convention on the Protection of the Rights of All Migrant Workers and Members of Their Families ", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Further advance to democratize communication and information", - "values": [ - "4 - General action" - ] - }, - { - "text": "Continue strengthening legal and policy protections which guarantee the rights of the child, in line with the provisions of the Convention on the Rights of the Child and its Optional Protocols", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Continue to ensure basic education for all children in all the territory of Morocco and continue providing quality education programs with a special attention to the prevention of school dropout ", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Finalise the ratification of the Convention against Torture and other Cruel, Inhuman or Degrading Treatment or Punishment ", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Continue efforts to implement the plan of action for judicial reform and prison systems", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Bring to justice perpetrators of attacks on journalists by effectively investigating all individuals and organizations accused of such abuses", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Collect statistics on racist and discriminatory incidents, and develop a national plan of action against racism and xenophobia, with an emphasis on social awareness ", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Ratify and fully align its national legislation with the Rome Statute of the International Criminal Court, as previously recommended", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Take the necessary measures to ensure that the legislative development and the practical application of the reform of the Military Criminal Jurisdiction does not generate impunity, but rather helps to reduce it drastically regarding the human rights violations committed by Public Forces ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Enact legislation explicitly prohibiting female genital mutilation, and ensure that offenders are prosecuted and punished ", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Ratify the ILO fundamental conventions on labour rights and social security and the UNESCO ones relating to corporal punishment", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Further invest in achieving the Millennium Development Goals (MDGs) on maternal health including access to equipment, drugs and supplies. transportation for medical referrals. and partnerships with other medical personnel", - "values": [ - "4 - General action" - ] - }, - { - "text": "Develop primary health care guaranteeing access to medical services for all children, particularly those from the Roma community", - "values": [ - "4 - General action" - ] - }, - { - "text": "End immediately reprisals against persons on the basis of "guilt by association" and the collective punishment of families of convicted criminals", - "values": [ - "4 - General action" - ] - }, - { - "text": "The RMI Government is committed to maintaining this practice [involvement of civil society in UPR-related activities] during the follow-up process.", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Adopt norms and procedures to ensure the implementation of the principle of non-refoulement as established by the 1951 Convention relating to the Status of Refugees", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Cooperate with United Nations follow-up mechanisms, notably by issuing a standing invitation to all the special procedures, and accepting all their visits, in particular that of the Special Rapporteur on the situation of human rights in Belarus", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Ensure that instances of ill-treatment of prisoners and detainees are eliminated and that proper and thorough investigations are conducted in such situations in order to hold perpetrators accountable", - "values": [ - "4 - General action" - ] - }, - { - "text": "Continue to apply and strengthen programmes and public policies on social development, inclusion, the reduction of poverty and inequality, and non-discrimination", - "values": [ - "4 - General action" - ] - }, - { - "text": "Continue to drive forward the Programme on Access of the Population to Identity, with a focus on women and children, in particular in the jungle area, through measures such as free National Identity Document (DNI) for the vulnerable population, and continue enabling them to travel to obtain DNIs", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Strengthen its policies and measures to consolidate the State of Law, as well as social cohesion, tolerance and non-discrimination in the country ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Ratify, and ensure implementation into domestic law of CEDAW and CRC ", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Continue its pro-people policies and share its experiences with countries in a comparable situation ", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Cooperate with the special rapporteurs and other United Nations human rights mechanisms by granting them access to the country ", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Accede to ICCPR and ICESCR as well as the International Convention for the Protection of All Persons from Enforced Disappearance (CED) ", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Take steps to legally ensure equal rights of children born of incestuous relationships or born out of wedlock, according to Article 378 of the Civil Code", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Take further legislative measures to formulate policies on the prevention of discrimination and violence against migrant women and child workers and also guarantee their right to education and health", - "values": [ - "4 - General action" - ] - }, - { - "text": "Take measures to tackle the exploitation of children, including domestic work, hazardous labour, especially in the mining sector, commercial sex and trafficking, starting with the ratification of the ILO Minimum Age Convention No. 138 and the ILO Convention No. 182 on Worst Form of Child Labour ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Decriminalize sexual activities between consenting adults of the same sex ", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Establish effective measures to increase the registration of children and to obtain birth registration", - "values": [ - "4 - General action" - ] - }, - { - "text": "Adopt national legislation prohibiting the use of sterilization of adults without their consent, and of children", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Submit overdue reports to the United Nations treaty bodies as a matter of priority ", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Provide universal access to safe and comprehensive sexual and reproductive health services and examine the link between gender-based violence and sexual and reproductive rights ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Continue to confront the scourge of terrorism", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Track down and arrest the key remaining fugitives accused of war crimes by the Tribunal, namely, former Bosnian Serb General Ratko Mladic and former Croatian Serb political leader Goran Hadzic", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Develop programmes to respond to the HIV-AIDS related needs of sexually active gay men", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Ensure that law enforcement officials receive necessary training, including on human rights standards, domestic legal protections, and the appropriate use of force", - "values": [ - "4 - General action" - ] - }, - { - "text": "Continue efforts to eliminate torture and improve the conditions of detention and the protection of the rights of detainees, and to share relevant experiences with interested countries", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Establish the de facto moratorium on the death penalty and accede to the ICCPR Second Optional Protocol ", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Reinforce the Ombudsman, as a national institution compliant with the Paris Principles, with legislative measures, human and financial resources ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Ensure its legislation is in line with the International Covenant on Civil and Political Rights", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Further strengthen the judicial institutions and take measures to reduce the number of pending cases", - "values": [ - "4 - General action" - ] - }, - { - "text": "Take measures to enhance women's participation in public and political decision-making", - "values": [ - "4 - General action" - ] - }, - { - "text": "Adopt legislation for the legal recognition and protection of human rights defenders, as well as to repeal the legislation which restricts the right to defend and promote human rights ", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Consider intensifying its efforts towards the improvement of its legislature, in accordance with its own priorities and national capabilities, while taking into consideration pertinent international human rights obligations", - "values": [ - "3 - Considering action" - ] - }, - { - "text": "Ratify the Convention against Torture as soon as possible and further, ratify the Minimum Age Convention, 1973 (No. 138) and the Worst Forms of Child Labour Convention, 1999 (No. 182) of the International Labour Organization and the Optional Protocols to Convention on the Elimination of All Forms of Discrimination against Women and the International Covenant on Civil and Political Rights and abolish the death penalty as recommended by the Law Commission of India", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Consider enshrining in law, protection for rights for 16- to 18-year- olds, either by amending the Children and Young Persons Act or through other legislation", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Invite the Special Rapporteur on the independence of judges and lawyers to perform an official country visit", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Establish programmes for combating prejudice against ethnic minorities", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Ensure that freedoms of association and peaceful assembly are respected and protected, including by repealing or amending the Suppression of Terrorism Act of 2008 and the Public Order Act", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Further promote the participation of Afro-Hondurans and the indigenous communities in the public sphere", - "values": [ - "4 - General action" - ] - }, - { - "text": "Take effective measures to prevent the excessive use of force and to protect the human rights of persons in detention facilities", - "values": [ - "4 - General action" - ] - }, - { - "text": "Speed up implementation of the Strategic Development Plan for Haiti in order to prevent epidemics", - "values": [ - "4 - General action" - ] - }, - { - "text": "Continue its leadership role at the regional level, particularly with regard to facilitating dialogue and enhancing cooperation with the receiving and sending States of contractual labourers.", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Continue to criminalize consensual same sex, which is outside the purview of universally accepted human rights norms, according to Tonga's national legislation.", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Ensure adequate means, both financial and material, for the Human Rights Commission and the National Peace and Reconciliation Commission to enable them to fully and effectively fulfil their mandates", - "values": [ - "4 - General action" - ] - }, - { - "text": "Moreover, the Fijian Prime Minister in his address at the High Level Session of the 28th Session of the UNHRC announced Fiji's commitment to accede to UNCAT.", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Accelerate the adoption of the Code of the Child", - "values": [ - "4 - General action" - ] - }, - { - "text": "Uphold its commitment to and obligations under the Rome Statute of the International Criminal Court", - "values": [ - "4 - General action" - ] - }, - { - "text": "Allow the Commission of Inquiry to go to the Syrian Arab Republic in order to pursue its work and investigations in conformity with the mandate assigned to it by the Human Rights Council, and fully cooperate with the Commission", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Give further impetus to the approval by the Parliament of the new statutes of the CNDHC in accordance with the Paris Principles for the national human rights institutions ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Establish a moratorium on executions with a view to the definitive abolition of the death penalty", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Guarantee that the situation in detention facilities is in accordance with international human rights standards ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Carry out awareness-raising campaigns to promote the birth registration of all children, particularly those living in poverty, and adopt necessary measures to guarantee effective access to free birth registrations for new-borns", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Ensure that a serious inquiry is undertaken into persons responsible for detaining and executing the Bytyqi brothers in 1999", - "values": [ - "4 - General action" - ] - }, - { - "text": "Put in place concrete policies to ensure that human rights defenders can conduct their work freely without any hindrance - in this regard one of the concrete steps to be taken is the establishment of a legal framework for the protection of human rights defenders. ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Continue its efforts to eradicate illiteracy and to consider urging the cooperation of other countries engaged in that endeavour", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Continue efforts to combat trafficking in human beings and take effective measures to prevent and eradicate human trafficking and adopt procedures for the determination of the best interests of child victims of trafficking", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Put an end to the unilateral economic coercive measures, including blockade against Armenia, which violates human rights including social, economic and cultural rights", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Ratify and implement the Convention against Torture and Other Cruel, Inhuman or Degrading Treatment of Punishment and its Optional Protocol ", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Intensify its efforts to fight discrimination and intolerance, particularly against Muslims, immigrants and people of African descent, and encourage senior State officials and politicians to take a clear stand against racist or xenophobic political discourse", - "values": [ - "4 - General action" - ] - }, - { - "text": "Empower the Public Prosecutor's Office with its own investigative capacity to enable it to carry out independent inquiries", - "values": [ - "4 - General action" - ] - }, - { - "text": "Enact domestic legislation in line with the provisions of CRC to eliminate child prostitution ", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Pay more attention to fighting against extreme poverty", - "values": [ - "4 - General action" - ] - }, - { - "text": "A public policy based on collaboration between the State and civil society in the area of human rights", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Continue providing the necessary fund to support its supply of drinking water programme", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Seek technical assistance from the relevant United Nations bodies and involve civil society stakeholders, including human rights non-governmental organizations, in the follow-up to the universal periodic review in addressing the concerns highlighted", - "values": [ - "1 - Minimal action" - ] - }, - { - "text": "Continue working to safeguard the human rights of the minorities in the country", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Sign and ratify CAT-OP. ", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Actively seek, with the help of the international community, a resolution to restore the natural environment, affected by the nuclear testing of the United States on the Marshall Islands", - "values": [ - "4 - General action" - ] - }, - { - "text": "Continue full cooperation with the international human rights mechanisms", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Continue to develop the health system so as to strengthen the enjoyment of the right to health in all segments of society ", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Deepen and widen cooperation with the United Nations human rights system, and in particular with the Human Rights Council and its mechanisms", - "values": [ - "4 - General action" - ] - }, - { - "text": "Take measures to guarantee the right to peaceful assembly and avoid abuses in police activities and, if such abuses occur, ensure that they do not go unpunished", - "values": [ - "4 - General action" - ] - }, - { - "text": "Further strengthen its efforts on implementing the first cycle's recommendation no 5 on preventing delays of the on-going human rights trials", - "values": [ - "4 - General action" - ] - }, - { - "text": "Consider the implementation of the reform of the juvenile justice system as a matter of priority", - "values": [ - "3 - Considering action" - ] - }, - { - "text": "Strengthen the capacities of the Ombudsman, intensify government support to this institution and take its recommendations into account", - "values": [ - "4 - General action" - ] - }, - { - "text": "Continue programmes and actions to promote and protect economic, social and cultural rights, in particular in the area of health, education and food", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Strengthen the national capacities through cooperation with the United Nations human rights mechanisms, particularly the special procedures", - "values": [ - "4 - General action" - ] - }, - { - "text": "Ensure that all judgments and sentences handed down by indigenous courts respect international provisions and, in that regard, to establish an appeals system and an independent monitoring system", - "values": [ - "4 - General action" - ] - }, - { - "text": "Take concrete steps to promote pluralism of the media and their independent work, including the exercise of their watchdog function", - "values": [ - "4 - General action" - ] - }, - { - "text": "Continue its efforts to reduce overcrowding in prisons and improve detention conditions, including by promoting diversion and other alternatives to detention where possible", - "values": [ - "4 - General action" - ] - }, - { - "text": "Take the necessary measures to amend national laws that allow discrimination against women so that those laws are in line with international human rights standards, and criminalize domestic violence ", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Take measures to ensure that all persons, including Muslims, can freely exercise their right to freedom of religion and belief, without interference by the state and including the right to change their religion", - "values": [ - "4 - General action" - ] - }, - { - "text": "Consider ratifying the International Convention on the Protection of the Rights of All Migrant Workers and members of their families", - "values": [ - "3 - Considering action" - ] - }, - { - "text": "Increase the measures for combating intolerance and xenophobic and racist violence", - "values": [ - "4 - General action" - ] - }, - { - "text": "Strengthen efforts to reform the justice and security sector with a view to fighting corruption and strengthening the independence of the judiciary, including by fostering effective supervision and disciplinary control of the criminal justice institutions and by providing adequate supply of financial and human resources", - "values": [ - "4 - General action" - ] - }, - { - "text": "Continue to expand support and care services for victims of all forms of gender-based violence in particular at the regional level", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Ensure that freedom of opinion and expression are encouraged and protected, including for individuals and organizations communicating via online public platforms", - "values": [ - "4 - General action" - ] - }, - { - "text": "Renew the agreement with ICRC to allow visits to places of detention ", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Implement the recently adopted Children\u2019s Code and prosecute all crimes and offences against children, including child marriage, sexual exploitation, female genital mutilation and trafficking in children", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Strengthen efforts in raising public awareness to eliminate child labour ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Take into account the rights of children in climate change strategies", - "values": [ - "4 - General action" - ] - }, - { - "text": "Consider releasing, on humanitarian grounds, inmates whose detention puts at risk their health and life", - "values": [ - "3 - Considering action" - ] - }, - { - "text": "Ensure the full implementation of the Strategic Framework for Growth and Poverty Reduction ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Ensure an enabling environment for the activities of human rights defenders, journalists and other stakeholders of civil society", - "values": [ - "4 - General action" - ] - }, - { - "text": "Contribute to the universal application of the Convention on the Rights of the Child and the Convention on the Elimination of All forms of Discrimination against Women by ratifying these two important human rights conventions at an early stage", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Take concrete measures to eliminate racial criteria in the approach of the law enforcement officials and combat the excessive use of force by the same officers", - "values": [ - "4 - General action" - ] - }, - { - "text": "Continue to promote women's rights, as well as their participation and empowerment as part of their decision-making processes", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Continue its measures aimed at the promotion of interfaith dialogue and the culture of tolerance", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Decriminalize homosexuality and sign the joint declaration of the United Nations General Assembly of 18 December 2008 regarding human rights, sexual orientation and gender identity", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Take specific measures to protect women from being victims of discrimination and violence, including the promotion of women's rights through education and the media, further training of public officials, reduction in gender inequalities and empowerment of women", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Formally abolish the death penalty by ratifying the Second Optional Protocol to the ICCPR and support the next General Assembly resolution calling for a moratorium on the death penalty", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Launch and implement a National Human Rights Action Plan in order to improve the promotion and protection of human rights, with the participation of civil society", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Reinforce the fight against exploitation of minors, particularly sexual exploitation, through the effective implementation of national and international legal provisions and through maximal use of the National Plan to Combat Commercial Sexual Exploitation ", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Adopt appropriate measures to combat sexual abuse of girls in school, backed-up by the necessary human, technical and financial resources for any mechanisms", - "values": [ - "4 - General action" - ] - }, - { - "text": "Adjust its national laws to the international obligations undertaken.", - "values": [ - "4 - General action" - ] - }, - { - "text": "Accelerate the exercise to finalize the Charter of Citizen's Rights in order to enhance its human rights institutional framework", - "values": [ - "4 - General action" - ] - }, - { - "text": "Strengthen public policies aimed at addressing the high number of people living with HIV/AIDS and not receiving treatment, particularly women, in order to reduce the rates of HIV transmission from mothers to children during childbirth, as well as for lesbian, gay, bisexual, transgender and intersex people, guaranteeing medical care without discrimination based on sexual orientation and gender identity", - "values": [ - "4 - General action" - ] - }, - { - "text": "Thoroughly investigate killings by private armies and vigilantes responsible for unsanctioned activities during the Government\u2019s anti-drug campaign and prosecute those responsible", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Take all institutional measures required to accede to the International Convention for the Protection of All Persons from Enforced Disappearance", - "values": [ - "4 - General action" - ] - }, - { - "text": "Consider ratifying other core international human rights instruments, starting with the International Convention on the Elimination of All Forms of Racial Discrimination (ICERD) and the instruments mentioned in paragraph 158 of the report, as well as the International Convention on the Protection of the Rights of All Migrant Workers and Members of Their Families (ICRMW) ", - "values": [ - "3 - Considering action" - ] - }, - { - "text": "Continue the positive measures in favour of women by promoting their access to justice and education", - "values": [ - "4 - General action" - ] - }, - { - "text": "Take concrete steps to promote and protect the right of peaceful assembly, in line with international human rights law and standards", - "values": [ - "4 - General action" - ] - }, - { - "text": "Implement a national action plan to combat corruption, including enhanced laws and enforcement, more resources dedicated to anti-corruption bodies, a review of law enforcement compensation, and a nation-wide educational campaign", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Intensify its efforts to combat discrimination ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Take into account comments made by members of civil society regarding the rights of those who have lost permanent residency status and who may be entitled to regain it", - "values": [ - "4 - General action" - ] - }, - { - "text": "Review the article 212 of the Penal Code criminalising defamation, with the aim of removing it from the Penal Code ", - "values": [ - "3 - Considering action" - ] - }, - { - "text": "Promote awareness of the rights of those receiving social benefits and advocate them through adequate campaigns", - "values": [ - "4 - General action" - ] - }, - { - "text": "Enact legislation to ensure that imprisonment is only used as a last resort when sentencing all juvenile offenders and provide systematic resocialisation support ", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Remove legislation which discriminates against individuals on the basis of their religion or belief ", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Continue its efforts, in particular in the area of the juvenile justice system and access to basic health services, especially in prisons, as well as eventual implementation of recommendations that may come out of the review Uzbekistan, with the assistance of the international community.", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Revise the bill on freedom of association, freedom of expression and freedom of assembly, submitted in 2012, which is currently pending review by the Supreme Court, with a view to adopting legislation that will protect the rights of civil society", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Enact a law on asylum seekers and refugees to ensure that migrants enjoy a safe legal status", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Consider giving priority attention to indigenous peoples, in particular with reference to language, education and land redistribution", - "values": [ - "3 - Considering action" - ] - }, - { - "text": "Accept the request made by the Special Rapporteur on freedom of opinion and expression, which has been awaiting a response since 2004 ", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Share its experience with other countries that may equally wish to make progress in providing for more efficient legal frameworks in the fight against domestic violence ", - "values": [ - "1 - Minimal action" - ] - }, - { - "text": "Take steps to put in place legislative and enforcement measures designed to eliminate all forms of violence against women, including sexual violence against women participating in protests and demonstrations", - "values": [ - "4 - General action" - ] - }, - { - "text": "Continue the practice of constructive engagement by the country with relevant international human rights mechanisms ", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Ensure the compliance of the steps which were stipulated by legislation on lustration with the obligation of Poland under the core international human rights instruments ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Spare no effort to care for orphans who have become victims of the AIDS pandemic - national compassion should face this national drama ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Facilitate an environment for local and international civil society organizations to fulfil their role", - "values": [ - "4 - General action" - ] - }, - { - "text": "Enhance efforts to provide free quality education in all parts of the country", - "values": [ - "4 - General action" - ] - }, - { - "text": "Consider eliminating the differences in the legal condition of men and women regarding marriage, divorce, custody and inheritance", - "values": [ - "3 - Considering action" - ] - }, - { - "text": "Continue to carry out efforts to reduce the incidence of poverty and lessen inequalities in income and education", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Become a party to and implement the Convention against Torture and Other Cruel, Inhuman or Degrading Treatment or Punishment ", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Continue cooperation with OHCHR with a view to making necessary improvements in the fields of legislative reform on the punishment of sexual abuse of children, land and family laws, and the establishment of a national human rights commission and a human rights office.", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Seek technical assistance from the international community in developing a National Human Rights Strategy and Action Plan", - "values": [ - "1 - Minimal action" - ] - }, - { - "text": "Continue to strengthen its social programmes with a special emphasis on the fields of education, nutrition, and health, in order to increase the quality of life of its people, particularly those who are most in need, for which international cooperation and technical assistance demanded by the country are important", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "A study will be conducted of a draft law on the welfare of persons with disabilities to guarantee these persons greater rights in respect of rehabilitation, training, employment, housing, health care, education, social welfare, etc. The State will do what it can to preserve the human dignity of these persons, integrate them into society and involve them in all areas of life as productive members of Kuwait society.", - "values": [ - "3 - Considering action" - ] - }, - { - "text": "Seek the assistance of the ILO to combat child labour ", - "values": [ - "1 - Minimal action" - ] - }, - { - "text": "Take further efforts in advancing the protection of the rights of the child at national and subnational levels", - "values": [ - "4 - General action" - ] - }, - { - "text": "Provide all the requirements needed to implement the national Family Cohesion and Empowerment of Women Strategy ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Consider amending the Citizenship Law to include safeguards against statelessness, providing that children born in the Romanian territory, who would otherwise be stateless, acquire Romanian nationality", - "values": [ - "3 - Considering action" - ] - }, - { - "text": "Ensure effective implementation of the 2009 Education Act and also to develop a national strategy to reduce dropout rates and to address cases of school-aged children working as street vendors", - "values": [ - "4 - General action" - ] - }, - { - "text": "Continue its efforts to ensure the implementation of the principle of the best interest of the child in the juvenile justice system, including by considering incorporating the restorative justice principle", - "values": [ - "3 - Considering action" - ] - }, - { - "text": "Take all steps necessary to stop immediately the practice of torturing detainees in formal and informal detention facilities run by the Government and militias affiliated with it", - "values": [ - "4 - General action" - ] - }, - { - "text": "Establish specific mechanisms and formulate specific programmes geared to addressing the issue of violence against women and children, including by harmonizing national legislation with international human rights standards ", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Further fulfil the international obligations as well as join new human rights international instruments ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Reconsider the inclusion in the draft criminal code of the provision criminalizing same-sex sexual relations in conformity with Burundi's obligations to ensure non-discrimination and the right to privacy", - "values": [ - "3 - Considering action" - ] - }, - { - "text": "Progressively accomplish human rights goals as set forth in Human Rights Council resolution 9-12, in particular increased cooperation with all mechanisms of the United Nations human rights system, including special procedures and treaty bodies", - "values": [ - "4 - General action" - ] - }, - { - "text": "Consider withdrawing its reservations on the CEDAW articles 2 and 16, accede to the Optional Protocol to CEDAW and consider taking the requisite measures as the upper guardian of its citizen's rights, freedoms and interests by eliminating all forms of discrimination against women in decision-making and public life", - "values": [ - "3 - Considering action" - ] - }, - { - "text": "Continue, with international support and cooperation, efforts to ensure basic necessities of its people, particularly in terms of food, clothing, shelter and education", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Strengthen efforts to implement the - Vision for Deinstitutionalization -, specifically in the light of the United Nations Guidelines for the Alternative Care of Children", - "values": [ - "4 - General action" - ] - }, - { - "text": "Fully guarantee freedom of expression and the press, in particular by conducting credible and effective investigations into allegations of detentions, harassment and abuses against journalists in Somalia", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "The MSAR [Macao Special Administrative Region] Government pledges to increase its fight against corruption. To this end, the scope and powers of the CAC shall be broadened and reinforced. The CAC's jurisdiction will be extended to the private sector, in order for the MSAR Government and the community to play a bigger part in building a probity culture. Anti-corruption mechanisms for administration and financial management systems related to public resources shall be put in place. Additional efforts shall be undertaken, together with the civil society and NGOs, to further promote a corruption-free society and to maximize the effectiveness of publicity campaigns to build a clean society.", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Recommended considering amendment of the Jordanian Nationality Act with respect to the right of children to a nationality, as the law currently does not allow a Jordanian mother married to a non-Jordanian man to confer her nationality to her children", - "values": [ - "3 - Considering action" - ] - }, - { - "text": "Finalize and implement a National Action Plan on Women, Peace and Security ", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Observe international standards in the regard of migrant workers and members of their families", - "values": [ - "4 - General action" - ] - }, - { - "text": "Adopt all necessary measures, including legislative measures, in order to apply a policy on migrants with a human rights perspective, in particular with regard to the detention of migrants, especially women and children ", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Deploy further efforts to prevent child labour and to avoid the drop out from school of minors, with particular reference to the herd boys, ensuring a full implementation of the Education Act of 2010", - "values": [ - "4 - General action" - ] - }, - { - "text": "Implement a comprehensive strategy for birth registration taking into account the particular situation of refugee children, former refugees and migrants", - "values": [ - "4 - General action" - ] - }, - { - "text": "Redouble efforts to combat gender-based violence by criminalizing marital rape, thoroughly investigating and prosecuting acts of violence against women, and issuing guidelines for and providing training to law enforcement and judicial officials on handling domestic violence cases in all regions", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Initiate a debate on the death penalty, with a view to reaching responsive conclusions consistent with international human rights law.", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Adopt measures to combat cases of torture and ill-treatment in the detention centres ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Continue to take steps to ensure that Yemeni authorities at all levels respect the integrity of persons and support the human rights standards set out in the Constitution.", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Continue its efforts regarding the integration of the Muslim population in Germany, while at the same time ensuring the enjoyment of their human rights, including the right to religion ", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Strengthen the measures aimed at guaranteeing the full integration of persons with disabilities through an inclusive education plan ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Ensure that all surveillance policies and measures comply with international human rights law, particularly the right to privacy, regardless of the nationality or location of those affected, including through the development of effective safeguards against abuses", - "values": [ - "4 - General action" - ] - }, - { - "text": "Implementation of the official languages policy and continuing encouragement of bilingualism, in particular in the security forces, police and within the public service.", - "values": [ - "4 - General action" - ] - }, - { - "text": "Continue to work with WHO and other relevant international organizations to improve access to health care and rebuild health infrastructure in the conflict-affected areas ", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Abolish the requirement of mandatory registrations and memberships in umbrella associations and trade unions", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Accelerate the poverty alleviation programmes with a view to addressing the uneven distribution of wealth, access to health and the high level of social exclusion of indigenous peoples and Afro-Colombian groups", - "values": [ - "4 - General action" - ] - }, - { - "text": "Continue its efforts to promote and protect the full enjoyment of the right to education for all", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Adopt a specific policy to address the root causes of domestic violence, particularly violence against women and children, and conduct awareness campaigns, particularly in the rural areas", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Further promote the right to health in Kiribati, in particular by providing access to essential health-care facilities", - "values": [ - "4 - General action" - ] - }, - { - "text": "Join the International Labour Organization (ILO) and accede to relevant ILO conventions.", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Seek technical and financial assistance from the international community in order to deal with the poverty, unemployment and food insecurity", - "values": [ - "1 - Minimal action" - ] - }, - { - "text": "Pass the intended law on protection against domestic violence as soon as possible.", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Eliminate child labour through sanctioning violations of the minimum age standards and strengthening the labour inspectorate ", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Accelerate steps to introduce a national preventive mechanism against torture and ensure that the definition of torture in national law aligns with the Convention against Torture", - "values": [ - "4 - General action" - ] - }, - { - "text": "Ratify the Optional Protocol to the Convention on the Rights of the Child on the sale of children, child prostitution and child pornography and the Optional Protocol to the Convention on the Rights of the Child on the involvement of children in armed conflict", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Work towards early establishment of a national human rights institution", - "values": [ - "4 - General action" - ] - }, - { - "text": "Ensure equal rights to all workers in the country in accordance with international standards", - "values": [ - "4 - General action" - ] - }, - { - "text": "Envisage acceding to the Convention against Torture ", - "values": [ - "3 - Considering action" - ] - }, - { - "text": "Intensify its efforts to implement existing laws against child trafficking, including Law No. 2006-04 on the conditions of displacement of minors and combating child trafficking in Benin, by raising awareness among populations at risk and taking necessary steps to ensure that those responsible for child trafficking are prosecuted in conformity with international norms", - "values": [ - "4 - General action" - ] - }, - { - "text": "Establish an NHRI, in accordance with the United Arab Emirates' engagement in the first cycle of the UPR ", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Continue to fight tuberculosis and other endemic diseases in order to promote the right to health of the citizens of the Central African Republic", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Take comprehensive measures to eliminate violence against women and children, in particular by adopting a national strategy to combat violence against women, as recommended by the Committee on the Elimination of Discrimination against Women ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Establish a compulsory education age that is equal to or higher than the minimum age for employment", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Take the necessary measures to ensure that asylum seekers have the necessary support in the temporary accommodation centres for foreigners and incorporate in the legislation the current good practice of having an open regime for unaccompanied minors and persons in situation of vulnerability, as recommended by OHCHR ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Continue its efforts to implement the Framework for Climate Change and Disaster Risk Reduction, including through appropriate international cooperation that enhance the resilience and adaptability of Nauru", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Strengthen and ensure the independence of its human rights institutions such as the National Human Rights Commission.", - "values": [ - "4 - General action" - ] - }, - { - "text": "Pursue its efforts against poverty with appropriate and focused assistance from the international community, including OHCHR.", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Ratify the Convention on the Rights of Persons with Disabilities and the Optional Protocol to the International Covenant on Economic, Social and Cultural Rights ", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Decriminalize consensual same-sex sexual conduct between adults", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Consider the recommendation made by UNHCR to ratifying the Conventions relating to refugees and stateless persons ", - "values": [ - "3 - Considering action" - ] - }, - { - "text": "Consider not reinstating the death penalty, as per the bill introduced before the Seventeenth Congress", - "values": [ - "3 - Considering action" - ] - }, - { - "text": "Pass legislation to ensure that unregistered children are not deprived of their rights, and that concrete steps be taken to decrease current obstacles to child registration ", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Decriminalize offences related to freedom of expression and guarantee that human rights defenders and journalists can carry out their work in an atmosphere of freedom and security", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "End its severe restrictions and surveillance of the Internet, hence guaranteeing free, unrestricted access for all its citizens to Internet and Social Media", - "values": [ - "4 - General action" - ] - }, - { - "text": "Immediately cooperate to facilitate the release of political prisoners, improve prison conditions, and account for those prisoners who have disappeared ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Respond positively to the pending visit requests by the special procedures mandate holders", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Publicize broadly its National Action Plan against Racism and promote its full implementation", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Ensure that the implementation of a set of socioeconomic policies, such as the Stand-Up Indiascheme, is targeted, accountable and transparent, so that their benefits reach all sections of society", - "values": [ - "4 - General action" - ] - }, - { - "text": "Consider ratifying the ILO Convention concerning Equal Opportunities and Equal Treatment for Men and Women Workers", - "values": [ - "3 - Considering action" - ] - }, - { - "text": "Ensure the most vulnerable asylum seekers and migrants - such as women who are pregnant or with young children, unaccompanied minors, and persons with disabilities - have access to basic services and safe, adequate living conditions, including by increasing shelter capacity", - "values": [ - "4 - General action" - ] - }, - { - "text": "Continue its efforts to develop a system to protect journalists and safeguard freedom of expression", - "values": [ - "4 - General action" - ] - }, - { - "text": "Continue expanding the participation of women in the national public life", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Withdraw its reservations concerning CEDAW", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Continue enhancing and developing policies for the social integration of migrants", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Extend an open and standing invitation to all the special procedures ", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Take measures to eliminate discrimination against indigenous people and ensure their easy access to justice and the right to property", - "values": [ - "4 - General action" - ] - }, - { - "text": "Consider ratifying the 1951 Convention relating to the Status of Refugees and its 1967 Protocol, and allowing refugees and other migrants to seek employment while they await resettlement or other durable solutions", - "values": [ - "3 - Considering action" - ] - }, - { - "text": "The delegation committed to adopting a whole series of recommendations to improve the living conditions of internally displaced persons further.", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Promote and increase training programmes for security personnel, including human rights education and training", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Continue to strengthen provisions to address domestic violence, and programmes to reinforce mechanisms for the protection of women and children ", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Fully implement the Constitutional Act on the Rights of National Minorities and take action to implement Constitutional Court decisions regarding the Act on Usage of Languages and Scripts of National Minorities", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Continue to implement and consolidate programmes and measures aimed at reducing poverty, in particular through its Poverty Reduction Strategy ", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Step up efforts aimed at establishing efficient protection measures to prevent, combat and punish perpetrators of violence against women and children, including domestic violence and sexual abuse ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Continue its efforts on initiatives aimed at enhancing economic growth and improving the living standards in the country ", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Continue the promotion of economic and social development, and maintain domestic peace and stability to provide a solid basis for the protection and promotion of human rights", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Extend a standing invitation to the special procedures mechanisms ", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Adopt legislation explicitly prohibiting corporal punishment of children, including in the home, and consider awareness-raising activities to increase public knowledge about the issue", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Continue to further enhance access to education and health services in rural areas", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Fully guarantee respect for freedom of expression and opinion and fully comply with its commitments under the International Covenant on Civil and Political Rights, in particular articles 19 and 22 ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Implement measures to promote and protect the rights of peasants and other people working in rural areas", - "values": [ - "4 - General action" - ] - }, - { - "text": "Adopt legislative and public policy measures aimed at eliminating discrimination against children in situation of vulnerability, including children of immigrant families ", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Continue to provide sufficient funding for its human rights programmes and activities", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Allocate more resources to education for vulnerable students and the disabled", - "values": [ - "4 - General action" - ] - }, - { - "text": "Consider ratifying the International Convention on the Protection of the Rights of All Migrant Workers and Members of Their Families.", - "values": [ - "3 - Considering action" - ] - }, - { - "text": "Develop a comprehensive national strategy soon on the implementation of the Convention on the Rights of the Child, as highlighted by the Committee on the Rights of the Child ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Make efforts to increase awareness about violence against women and to work proactively to use both judicial and law enforcement tools to reduce such incidences ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Alter detention and prison facilities as well as standards of treatment for juveniles so that they are gender sensitive and ensure effective protection of detainees' and prisoners' personal safety", - "values": [ - "4 - General action" - ] - }, - { - "text": "Adopt comprehensive legislation with regard to extrajudicial executions and torture by police, including measures assuring its application", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Include a gender-perspective in the follow-up process to the UPR review.", - "values": [ - "4 - General action" - ] - }, - { - "text": "Remove all restrictions on freedom of expression, association and assembly in law and in practice and that legal and legitimate political opposition parties and civil society be able to voice their political opinions ", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Continue its engagement with relevant United Nations bodies and other related international organisations to fulfil its commitment to promote and protect the rights of its people, especially the vulnerable groups", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Take steps to create a national human rights institution in accordance with the Paris Principles", - "values": [ - "4 - General action" - ] - }, - { - "text": "Redouble its efforts in the implementation of the plan to rehabilitate detainees through the improvement of national prison system", - "values": [ - "4 - General action" - ] - }, - { - "text": "Prevent hate speech on the Internet and intensify the fight against hate crime through the implementation of the National Action Plan on Fundamental and Human Rights and other measures", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Take further steps aiming at the abolition of the death penalty", - "values": [ - "4 - General action" - ] - }, - { - "text": "A participatory and inclusive process in the follow-up to the UPR, including the full range of civil society, as well as the United Nations Human Rights system ", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Establish an official moratorium on executions and ratify the Second Optional Protocol to the International Covenant on Civil and Political Rights, aiming at the abolition of the death penalty, so as to bring national legislation into conformity with the de facto moratorium", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Translate into Thai and make public the recommendations received during its UPR and broadly engage civil society in the process of follow-up and implementation of accepted recommendations", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Ensure genuine freedom of expression and information, including on the Internet, by putting an end to the harassment against journalists, bloggers and human rights defenders", - "values": [ - "4 - General action" - ] - }, - { - "text": "Ensure full respect for the rule of law, including for the provisions set out in the Constitution for its amendment", - "values": [ - "4 - General action" - ] - }, - { - "text": "Revise the Criminal Code to include offences of incitement to violence and discrimination, public insults of a racist nature and public expressions with a racist aim", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Take the necessary steps to ensure that allegations of ill-treatment by security forces in detention centers are promptly investigated, through a transparent and independent procedure, especially when they relate to particularly vulnerable groups such as minors ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Continue to allocate the highest budgetary priority to public education", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Envisage ratifying the International Convention on the Protection of the Rights of All Migrant Workers and Members of Their Families ", - "values": [ - "3 - Considering action" - ] - }, - { - "text": "Carry out educational and awareness raising campaigns to ensure the use of alternative disciplinary measures to corporal punishments in accordance with the human dignity of the child", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Establish a national independent human rights institution in accordance with the Paris Principles", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Share its experience in strengthening education with other countries, in particular with multi-cultural and multi-religious countries", - "values": [ - "1 - Minimal action" - ] - }, - { - "text": "Adopt at the earliest a decree establishing a national commission to fight against trafficking in persons", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Reinforce and widen the scope of laudable initiatives such as the rationalization by the National Institute of Statistics of investment on social issues such as health infrastructure, access to water and sanitation, and curbing HIV/AIDS", - "values": [ - "4 - General action" - ] - }, - { - "text": "Accept the request of visit by the Special Rapporteur on the promotion of truth, justice, reparation and guarantees of non-recurrence, the Special Rapporteur on the situation of human rights defenders, the Working Group on Enforced or Involuntary Disappearances and cooperate fully with the mandate holders", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Continue to fully implement the legislative provisions guaranteeing oral and written use of Slovenian language in public administration, public life and as teaching language at schools", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Continue to improve socioeconomic conditions to eradicate inequality in line with the recent reforms undertaken by the Government", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Set out specific plans with measurable targets in the area of human rights and social policies", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Further enhance efforts to reduce infant and maternal mortality", - "values": [ - "4 - General action" - ] - }, - { - "text": "The Government undertook the commitment to submit all reports due to the human rights mechanisms within the next 24 months", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Continue to work to address issues such as a lack of teachers, school facilities and the marked differences between the quality of educational institutions in urban and rural areas", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Bring its legislation into conformity with its international human rights obligations by repealing provisions which may be used to criminalise same-sex activity between consenting adults", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Intensify implementation of special targeted programmes to stimulate economic growth and development in generating employment especially for the most vulnerable sections of society", - "values": [ - "4 - General action" - ] - }, - { - "text": "Decriminalize press crimes and prevent arrests of individuals for expressing opinions including through social media ", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Continue its work to achieve the highest quality at all levels of education ", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Accede to and ratify the Second Optional Protocol to the International Covenant on Civil and Political Rights, aiming at the Abolition of the Death Penalty ", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Continue its efforts in the context of the Sustainable Development Goals, taking into consideration a human rights perspective", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Fully ensure everyone's right to exercise freedom of expression, including internet freedom, strengthen the dialogue with civil society and respect the rights of NGOs by eliminating all restrictive impediments ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Take additional measures to improve universal access to primary education ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Consider issuing a standing invitation to all special procedures mandate holders ", - "values": [ - "3 - Considering action" - ] - }, - { - "text": "Bring its legislation into conformity with international human rights obligations, by repealing all provisions which may discriminate against lesbian, gay, bisexual and transgender persons ", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Strengthen the participation of women in decision-making positions and on the labour market", - "values": [ - "4 - General action" - ] - }, - { - "text": "Take all measures necessary to eliminate discrimination against women in all areas, including access to land and employment, as well as economic and political participation", - "values": [ - "4 - General action" - ] - }, - { - "text": "Redouble on-going efforts to improve the quality of life of the most vulnerable groups, in particular indigenous peoples and people of African descent ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Consider taking all necessary steps to introduce a de jure moratorium on capital executions with a view to fully abolish the death penalty", - "values": [ - "3 - Considering action" - ] - }, - { - "text": "Set up a national mechanism for the prevention of torture and other cruel inhumane or degrading treatment or punishment, as required by article 3 of the Optional Protocol to the Convention against Torture and Other Cruel, Inhuman or Degrading Treatment or Punishment", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Improve maternity care services especially in rural areas and work to increase the percentage of women who give birth in hospitals and to decrease maternal mortality rate during birth", - "values": [ - "4 - General action" - ] - }, - { - "text": "Ensure that the National Human Rights Commission of Thailand is an independent institution and functions in full compliance with the Paris Principles", - "values": [ - "4 - General action" - ] - }, - { - "text": "Repeal those legal provisions on sexual offences which criminalize sexual relations between consenting adults of the same sex ", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Ratify the Optional Protocols to the Convention on the Rights of the Child on the involvement of children in armed conflict and on the sale of children, child prostitution and child pornography ", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Continue its efforts to strengthening the rights of children, especially those concerning juvenile justice and courts competent for minors ", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Work towards the economic empowerment of women and their enhanced presence in decision-making positions", - "values": [ - "4 - General action" - ] - }, - { - "text": "Take further steps for the implementation of the Convention on the Rights of Persons with Disabilities", - "values": [ - "4 - General action" - ] - }, - { - "text": "Ensure that bills relating to traditional courts and traditional leaders currently under discussion are in conformity with the international commitments of South Africa", - "values": [ - "4 - General action" - ] - }, - { - "text": "Take steps to move towards increased renewable energy production, in-line with their pledges on Climate Action", - "values": [ - "4 - General action" - ] - }, - { - "text": "Accede rapidly to the Istanbul Convention and adopt and implement as soon as possible a national strategy to prevent and punish all forms of violence against children, including child trafficking", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Consider ratifying the outstanding core international human rights treaties ", - "values": [ - "3 - Considering action" - ] - }, - { - "text": "Revise its criminal legislation, including juvenile justice legislation, so as to reduce the use and length of pre-trial detention for persons under 18, and increase the age of criminal responsibility in accordance with the Convention on the Rights of the Child ", - "values": [ - "3 - Considering action" - ] - }, - { - "text": "Take effective measures to prevent forced or early marriage, in particular with a view to ending rape, sexual exploitation and forced conversions of scheduled caste girls", - "values": [ - "4 - General action" - ] - }, - { - "text": "Continue to improve the lives and well-being of its people to bring about the full enjoyment of their human rights ", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Strengthen the combat against traditional practices such as early marriage, forced marriage or polygamy, which persist despite dispositions existing in the Civil Code ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Amend Law 548 on child labour to meet the State's international human rights obligations on the minimum working age for children, to prohibit child labour in hazardous conditions, protect children from economic exploitation, protect children from any work that is likely to interfere with their education, and progressively raise the minimum age of employment", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Use a comprehensive approach to the promotion of gender equality, in particular by adopting a comprehensive law on gender equality as recommended by the CEDAW.", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Given the low level of children's education and the illiteracy rates, implement measures necessary to change the landscape in this area and promote the reintegration of child soldiers in society.", - "values": [ - "4 - General action" - ] - }, - { - "text": "Build on progress made as regards training programmes on human rights and further improve such schemes", - "values": [ - "4 - General action" - ] - }, - { - "text": "Undertake a deeper dialogue with representatives of the Sami Parliament and increase efforts to give additional responsibilities to this Parliament to strengthen the self-determination of the Sami people", - "values": [ - "4 - General action" - ] - }, - { - "text": "Intensify efforts to increase the levels of education for Maori and Pacific families while protecting and promoting their cultural heritage ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Conclude the enactment of the bill to establish a policy against harassment in the public sector", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Do everything to eradicate the phenomenon of illegal trafficking of migrants, trafficking of human beings and especially the phenomenon of child trafficking and prostitution ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Improve its control mechanisms at borders and entry points, in order to detect cases of trafficking, in accordance with its domestic legislation", - "values": [ - "4 - General action" - ] - }, - { - "text": "Increase investment in universal, mandatory and free education by giving priority to measures to eradicate discrimination and exclusion that affect girls, children with disabilities, Dalits and marginalized persons", - "values": [ - "4 - General action" - ] - }, - { - "text": "Seek technical assistance to prepare all outstanding reports to treaty bodies", - "values": [ - "1 - Minimal action" - ] - }, - { - "text": "Adopt measures to comply with provisions of the new Constitution including on combating discrimination and ensuring equal participation in political and public affairs by all citizens", - "values": [ - "4 - General action" - ] - }, - { - "text": "Continue efforts and take further steps to strengthen the national programme to ensure the right to food, to health, particularly for the vulnerable groups living in extreme poverty, including indigenous people", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Take all necessary measures to prevent children from living on the streets and protecting them against child labour and other risks they are exposed to ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Continue efforts to establish and consolidate national institutions and mechanisms for the promotion and protection of human rights", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Accelerate the ratification of the Convention on the Rights of Persons with Disabilities to strengthen the protection of persons with disabilities, and to further improve their role in the society", - "values": [ - "4 - General action" - ] - }, - { - "text": "Address the lack of special provisions for children in the Slovenian criminal code and bring its juvenile justice system fully into compliance with international standards", - "values": [ - "4 - General action" - ] - }, - { - "text": "Consider the possibility of acceding to CRPD ", - "values": [ - "3 - Considering action" - ] - }, - { - "text": "Increase its efforts to raise public awareness of the fundamental rights of women and children", - "values": [ - "4 - General action" - ] - }, - { - "text": "Ratify the United Nations Convention against Transnational Organized Crime", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Continue to strengthen and improve the Bolsa Família programme in the context of the fight against hunger and poverty", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Step up efforts to effectively implement national strategies for gender equality", - "values": [ - "4 - General action" - ] - }, - { - "text": "Take more effective measures to combat racial discrimination and intolerance, including by promptly investigating and taking stern action against perpetrators of racism, xenophobic and discriminatory acts and by promoting intercultural understanding and tolerance between the different ethnic and faith groups in the country", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Continue efforts to increase women's representation in decision- making positions on an equal footing with men", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Further strengthen measures aimed at accomplishing equality between women and men in Czechia", - "values": [ - "4 - General action" - ] - }, - { - "text": "Free all Palestinians, Syrian and Arab detainees, including women, children and journalists, and allow international organizations, including ICRC, to visit these detainees and examine their situation in all Israeli prisons to ensure that detention conditions conform to minimum standards.", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Strengthen the implementation of the Zimbabwe Agenda for Sustainable Socioeconomic Transformation", - "values": [ - "4 - General action" - ] - }, - { - "text": "Address the issue of unduly protracted detentions and promote the use of alternative measures to pretrial detention, in particular for pregnant women and young children. ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Pursue the measures which have been taken on judicial reform to support the activity of the Extraordinary Chambers and continue cooperation with the Special Rapporteur ", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Ensure that women who are victims of trafficking are recognized as such and provided with protection and assistance ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Continue to promote gender equality and actively implement the national plan for the advancement of Bahraini women 2013-2022", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Delete those provisions that could favour discriminatory practices against persons based on their sexual orientation and gender identity", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Concentrate on the poorest and most vulnerable ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Continue to implement measures to advance gender equality in political, administrative and economic spheres", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Consider signing and ratifying the new Optional Protocol to the CRC on a communications procedure", - "values": [ - "3 - Considering action" - ] - }, - { - "text": "Continue the programmes related to poverty reduction and continue the efforts to create a stronger system of social protection ", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Take all necessary legislative and policy measures to address and prevent all forms of violence against children in all settings, including corporal punishment, and to strengthen the awareness-raising activities", - "values": [ - "4 - General action" - ] - }, - { - "text": "Further strengthen its cooperation with the international community, including OHCHR and treaty bodies", - "values": [ - "4 - General action" - ] - }, - { - "text": "Sign and ratify: the Optional Protocol to the International Covenant on Civil and Political Rights, the Optional Protocol to the International Covenant on Economic, Social and Cultural Rights, and the Optional Protocol to CEDAW, the International Convention on the Protection of the Rights of All Migrant Workers and Members of Their Families, the Optional Protocols to the Convention on the Rights of the Child, the Convention on the Rights of Persons with Disabilities and the Optional Protocol thereto, and the International Convention for the Protection of All Persons from Enforced Disappearance", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Take the necessary measures to include international standards on juvenile justice in the workings of the national judiciary", - "values": [ - "4 - General action" - ] - }, - { - "text": "Continue its recent efforts in the area of the ratification of important human rights conventions, and ratify the International Convention for the Protection of All Persons from Enforced Disappearance and accede to the Convention against Torture ", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Continue increasing educational enrollment at all its levels ", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Adopt measures to improve prison conditions, especially the overcrowding.", - "values": [ - "4 - General action" - ] - }, - { - "text": "Take appropriate measures to stop sex tourism involving children and to punish traffickers ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Speed up the process of integration of the provisions of the Rome Statute in its national legislation", - "values": [ - "4 - General action" - ] - }, - { - "text": "Redouble efforts in addressing gender-based violence, with the support of the international community", - "values": [ - "4 - General action" - ] - }, - { - "text": "Improve the access of women to the labour market, especially by implementing policies which would reduce the gender pay gap", - "values": [ - "4 - General action" - ] - }, - { - "text": "Consider ratifying the individual complaints procedures under the treaties to which it is a party.", - "values": [ - "3 - Considering action" - ] - }, - { - "text": "Design and implement a national plan against trafficking in persons that would include a national coordinating body ", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Address the issue of identity through issuing identification papers to those lacking them.", - "values": [ - "4 - General action" - ] - }, - { - "text": "Set up a national mechanism to counter the phenomena of racist violence and to gather reliable statistics in this regard ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Promote the inclusion of Somali women in the peace process and in public and political life in general ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Submit as quickly as possible information on alleged forced disappearances cases to the Working Group on Enforced or Involuntary Disappearances ", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Redouble efforts to prevent suicide and detect mental illness in children and youth, promoting the close involvement of parents, teachers and school authorities in schools", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Establish, as a matter of priority, a National Human Rights Institution which is fully compliant with the Paris Principles", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Continue to implement the necessary measures to achieve sustainable management of its natural resources, in line with the respect for environmental rights and the rights of indigenous peoples", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Adopt flexible measures of birth registration, with the objective of reducing the significant number of children without civil registration", - "values": [ - "4 - General action" - ] - }, - { - "text": "Undertake a thorough review of the relevant laws to safeguard the basic rights to freedom of opinion and expression ", - "values": [ - "3 - Considering action" - ] - }, - { - "text": "Continue the measures aimed at achieving the elimination of existing patriarchal and gender stereotypes, with respect to the roles and responsibilities of men and women in the family and society", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Lift legal restrictions or hurdles to the work of civil society individuals or organizations and ensure that they can undertake their legitimate activities without fear of reprisals", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Take measures to ensure the protection of freedom of religion or belief for religious minorities in line with the Constitution of Indonesia", - "values": [ - "4 - General action" - ] - }, - { - "text": "Continue its efforts, together with other signatories to the International Convention on the Protection of the Rights of All Migrant Workers and Members of Their Families, to guarantee better accession.", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Continue to protect and promote the rights of vulnerable groups of population, including children, the disabled, the elderly and women", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Adopt appropriate measures to tackle social prejudices, stigmatization, harassment, discrimination and violence against individuals because of their sexual orientation", - "values": [ - "4 - General action" - ] - }, - { - "text": "Take further efficient measures to ensure that law enforcement officials, prosecutors and judges involved in enforcing the law relating to hate crimes and other violent acts of racial discrimination and xenophobia fully understand the nature of such crimes and that statistics on racist incidents are kept centrally and are publicized. ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Gradual consideration be given, with the assistance of OHCHR, to the ratification of some human rights treaties, in particular the Optional Protocols to the Convention on the Rights of the Child within the framework of the National Plan of Action for Children referred in the national report ", - "values": [ - "3 - Considering action" - ] - }, - { - "text": "Implement comprehensive human rights training, with regular reviews to ensure effectiveness, for all military and police personnel, including those working in the Papua and West Papua provinces ", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Adopt a comprehensive integration strategy for refugees, ensuring effective integration measures and increasing social support for refugees during the integration process", - "values": [ - "4 - General action" - ] - }, - { - "text": "Include sexual orientation and gender identity amongst illegal criteria for discrimination, in social, economic and political life and eliminate norms prohibiting consenting sexual relation between adults of the same sex", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Consider withdrawing its declaration to Article 1 of the Optional Protocol to the Convention on the Right of the Child on Involvement of Children in Armed Conflict, and raise the armed forces minimum recruitment age to 18 ", - "values": [ - "3 - Considering action" - ] - }, - { - "text": "Accede to the international treaties on human rights and ratify the first Optional Protocol to ICCPR", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Provide the judicial system with solid logistical and administrative foundations in order to avoid delays, procedural impasses and the replacement of judges, particularly in on-going human rights trials", - "values": [ - "4 - General action" - ] - }, - { - "text": "Give consideration to what further action is required to promote greater integration of migrant communities and counteract racial discrimination and racially-motivated violence ", - "values": [ - "3 - Considering action" - ] - }, - { - "text": "Continue positive ongoing efforts with a view to ensuring the access of all citizens to health ", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Continue to adopt measures to further improve health-care services to ensure greater accessibility, especially in rural areas", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Eliminate all forms of discrimination and pass the bill on caste-based discrimination and untouchability ", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Take into consideration humanitarian problems related to the crisis and find urgent and adequate responses to these problems", - "values": [ - "3 - Considering action" - ] - }, - { - "text": "Pursue its efforts, despite constraints, with the assistance and cooperation of the international community, to combat poverty, particularly among women, including material and non material poverty (in terms of exclusion)", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Continue efforts to further strengthen its capacity to effectively implement domestic laws ", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Ensure that the hotline established to respond to migrant workers' complaints provides appropriate interpretation, to the extent possible ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Systematically and continuously integrate gender perspective in the follow up process to the review.", - "values": [ - "4 - General action" - ] - }, - { - "text": "Create conditions and human and material resources to make the justice system more effective", - "values": [ - "4 - General action" - ] - }, - { - "text": "Accede to the OP-CAT as soon as possible ", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Continue to prioritise education in its development plans, and to invest sufficient resources to education as a means of helping its citizens achieve their aspirations", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Take effective measures towards ensuring equal and full enjoyment of human rights by all, in accordance with its international obligations", - "values": [ - "4 - General action" - ] - }, - { - "text": "Continue implementing programmes and measures to enhance the enjoyment of the right to education and the right to health ", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Investigate carefully each case of immigrants' incarceration ", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "That a comprehensive prevention strategy together with adequate legislation be introduced to combat the high incidence of sexual and gender-based violence", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Continue the efforts to develop the health and education public services ", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Continue the efforts already deployed to strengthen democratic institutions and to re-establish constitutional order delivered by the strengthening of the Rule of Law and of the judicial system as well as by providing for increased protection for women and children", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Continue efforts to ensure protection for the victims of human trafficking", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Adopt legislation to prohibit all forms of corporal punishment in the private sphere", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Strengthen the protection of people with albinism from violence, abduction, discrimination, stigmatization and related intolerance", - "values": [ - "4 - General action" - ] - }, - { - "text": "Develop a legal framework to fight against the phenomenon of early marriage", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Continue the effort to integrate international norms into national legislations by way of ratification, including by completing the ratification process of the Convention on the Rights of Persons with Disabilities ", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Continue the process of ratifying international human rights instruments, which have been signed, as well as those that the country is not yet a party to ", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Turn the draft new Press Code into a significant progress on the area of freedom of opinion and expression ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Introduce legislations to criminalize acts of violence on the basis of race and religion ", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Continue to realign its national procedures to combat drug trafficking with international standards", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Step up its efforts to sign and ratify the other human rights instruments which it has committed to sign and ratify", - "values": [ - "4 - General action" - ] - }, - { - "text": "Take measures to ensure women's rights are protected through implementing existing laws such as the Early Marriage Act and the Dowry Act", - "values": [ - "4 - General action" - ] - }, - { - "text": "Develop a legal framework for protecting and promoting the rights of women", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Take further steps to ensure full implementation of the Elimination of Violence against Women law also taking into account the respect for the provisions contained in international treaties that Afghanistan has signed ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Enhance efforts to enable the lesbian, gay, bisexual and transgender (LGBT) community to exercise their fundamental freedoms of expression, association and peaceful assembly", - "values": [ - "4 - General action" - ] - }, - { - "text": "Continue its efforts to enhance the protection of women's rights and promote gender equality ", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Consider the possibility of accession to CRPD", - "values": [ - "3 - Considering action" - ] - }, - { - "text": "Strengthen provisions related to the protection of women in the domestic life, particularly pursuing awareness raising campaigns on sexual violence and violence within the family, and allow the victims to be cared in an optimum manner", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Prioritize implementing the right to an inclusive basic education for all children with disabilities", - "values": [ - "4 - General action" - ] - }, - { - "text": "Take steps to protect freedom of expression and opinion, in line with its obligations under the International Covenant on Civil and Political Rights ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Ratify or accede to the main instruments on human rights, in particular the International Covenant on Civil and Political Rights ", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Review any adopted or proposed counter-terrorism legislation, policies or programmes to provide adequate safeguards against human rights violations and minimize any possible stigmatizing effect such measures might have on certain segments of the population", - "values": [ - "3 - Considering action" - ] - }, - { - "text": "Take steps to ensure equality between men and women that guarantee non-discrimination and gender equality ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Include more effective methods for the increase of food production, continue to make efforts for increased production of medical supplies and facilities", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Continue putting in place measures to prevent and eliminate racism as well as religious intolerance and hatred", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Adopt additional measures aimed at providing assistance for victims of sexual violence and combating this scourge ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Increase its efforts to prevent domestic violence, particularly against women, and ensure that sufficient shelters are available to women victims of domestic violence and their children", - "values": [ - "4 - General action" - ] - }, - { - "text": "Investigate and prosecute members of the security forces implicated in recent serious human rights violations, in accordance with international fair trial standards", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Undertake a process of revising its penal code by aiming to amend article 567 criminalizing relationships between persons of the same sex", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Eliminate the death penalty from its national legislation", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Enhance the coordination of both the central and state governments in an effective manner in order to guarantee the smooth implementation of the 2010 Right of Children to Free and Compulsory Education Act ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Bring an end to the application of cruel, inhuman or degrading punishments, in particular corporal punishment", - "values": [ - "4 - General action" - ] - }, - { - "text": "Investigate thoroughly the Bocas del Toro Case ", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Withdraw reservations to other treaties restricting the protection of migrant workers and their families. ", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Continue its efforts aimed at combating trafficking in persons at the policy and legislative levels in cooperation with civil society and the media, with a view to providing victims of trafficking with the needed protection and counselling, contributing to international efforts in this regards", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Further intensify efforts to adopt international standards in promoting and protecting human rights in the domestic legislation, including by reviewing the minimum age for criminal responsibility and adopting the juvenile justice standards", - "values": [ - "4 - General action" - ] - }, - { - "text": "Finalize the procedure of adoption of the Optional Protocol to CEDAW", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Adopt measures to promote and protect the traditional and indigenous knowledge of the Batwa", - "values": [ - "4 - General action" - ] - }, - { - "text": "Continue its efforts to combat impunity for the serious violations of human rights that had been committed", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Make sure prisoners and detainees have access at all times to their rights and descriptions of proper treatment, including those laid down in the Standard Minimum Rules and the Body of Principles for the Protection of Detainees and make sure that they have access to effective procedures to realize these rights ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Continue taking legislative and law enforcement measures aimed at the harmonization of inter-ethnic relations ", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Provide facilities to ensure that persons with disabilities can live independently, have access to public and private buildings and have equal opportunities to education, employment and health services, with a support structure particularly for children so challenged", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Provide special training to police officers and prosecutors dealing with cases of sexual and domestic violence against women", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Ensure that the judiciary is free from any interference from other branches of Government", - "values": [ - "4 - General action" - ] - }, - { - "text": "Intensify efforts to combat poverty and improve the standard of living", - "values": [ - "4 - General action" - ] - }, - { - "text": "Repeal all provisions in the Penal Code and other laws and regulations criminalizing defamation, libel and slander, and ensure that any restrictions on freedom of expression are in line with the International Covenant on Civil and Political Rights", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Strengthen measures to confront the origins of violence and crime in its combat against organized crime and adopt a restorative justice approach for young people", - "values": [ - "4 - General action" - ] - }, - { - "text": "Enact, with immediate effect, the new Media Law passed by the Lower House of Parliament.", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Immediately end the violence against peaceful protesters, including human rights defenders, and hold accountable those responsible for such acts", - "values": [ - "4 - General action" - ] - }, - { - "text": "Accede to the Rome Statute of the International Criminal Court and implement it in the national legislation, including by incorporating provisions on prompt and full cooperation with the Court", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "In parallel with its ongoing work on land titling, undertake an urgent review of economic land concessions before the current moratorium on economic land concessions is lifted ", - "values": [ - "3 - Considering action" - ] - }, - { - "text": "Take the necessary measures to implement the provisions of the August 2015 peace agreement on justice and reconciliation, which is a prerequisite for improving the situation of human rights in the country", - "values": [ - "4 - General action" - ] - }, - { - "text": "Implement the recommendations of the April 2013 report by the NHRC on the Baga incident", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Enhance efforts aimed at quality performance in the area of administration of justice ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Continue promoting the rights of women and their inclusion in decision making processes", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Strengthen the institutional human rights framework, including by establishing a national human rights institution", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Grant full access to WFP to ensure food reaches the most vulnerable, and adopt other measures to promote the right to food including economic reforms to incentivize those working in the agricultural sector to increase production ", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Train police, first responders, justice system and social services officials to respect and fully protect all human rights of every Ghanaian, including those who are lesbian, gay, bisexual and transgender", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Ensure legal ownership and return or restitution of houses and lands to internally displaced persons, according to international standards", - "values": [ - "4 - General action" - ] - }, - { - "text": "Ensure universal access to health care and services for all women, in particular migrant and elderly women ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Disseminate widely in the society the Code of Conduct for Law Enforcement Officials", - "values": [ - "4 - General action" - ] - }, - { - "text": "Ratify the Rome Statute on the International Criminal Court.", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Strengthen the fight against human trafficking in all forms, including by strengthening inter-agency coordination to combat cybersex in the community and by securing cooperation from the private sector to prevent and respond to child online abuse", - "values": [ - "4 - General action" - ] - }, - { - "text": "Extend an open and permanent invitation to all special procedures, and respond positively to requests for visits not yet agreed upon ", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Enact legislation that expressly prohibits discrimination against a person on the basis of sexual orientation or identity ", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Take proper measures to ensure that the National Human Rights Commission is fully compliant with the Paris Principles", - "values": [ - "4 - General action" - ] - }, - { - "text": "Maintain its level of efforts to tackle concerns raised regarding the situation of the Roma population in Montenegro, and give priority to implementing the 2007 strategy for the improvement of the position of the Roma population.", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Ratify the open-door policy towards internati onal human rights monitoring mechanisms ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Prohibit corporal punishment of children in all settings ", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Remain committed to negotiations to resolve pending areas of disagreement", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Take measures to amend the Criminal Code to forbid the involvement of children from age 16 to 18 in prostitution ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Consider acceding to the optional Protocol to the Convention on the Elimination of all Forms of Discrimination against Women ", - "values": [ - "3 - Considering action" - ] - }, - { - "text": "Take measures to ensure respect for the human rights of persons belonging to ethnic minorities ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Develop a national strategy to combat the sale and sexual exploitation of women ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Strengthen its cooperation with the special procedures of Human Rights Council by responding positively to pending visit requests ", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Ratify in the near future the Optional Protocol to the Convention against Torture and Other Cruel, Inhuman or Degrading Treatment or Punishment", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "End grave human rights violations (arbitrary executions, torture, destruction of places of worship and deprivation of the freedom of religion) principally committed by fundamentalist armed groups operating in the north of the country ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Implement a program to adequately integrate the refugee populations into the society of Egypt, taking into account the generosity that has historically characterized the country in this field", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Reconsider its withdrawal from the preparatory process of the Durban Review Conference and positively contribute to the global efforts to combat racism, racial discrimination, xenophobia and related intolerance", - "values": [ - "3 - Considering action" - ] - }, - { - "text": "Continue to assist and protect minorities, vulnerable groups and persons displaced due to natural disasters or conflicts", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Implement all recommendations made by the Special Rapporteur on Freedom of Religion in order to remedy the situation described in her most recent report, which noted the persistence of discriminatory legal provisions and practices, which run counter to freedom of religion ", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Ensure the implementation of the National Strategy on Equality and Gender", - "values": [ - "4 - General action" - ] - }, - { - "text": "Ensure that the right of freedom of opinion is respected, including by reviewing Art 112 of the Penal Code, and ensure a safe environment that promotes the rights of all people to freely associate and assemble without hindrances", - "values": [ - "4 - General action" - ] - }, - { - "text": "Seek the assistance of the international community to reduce poverty", - "values": [ - "1 - Minimal action" - ] - }, - { - "text": "Cease the intimidation, harassment and arbitrary detention of human rights defenders, NGO groups, and journalists and provide guarantees for the rights to freedom of expression and peaceful assembly, as well as ending its restrictions and surveillance of the Internet, namely by amending its legislation in order to remove extrajudicial procedures for blocking websites, in line with recommendations made by the OSCE Representative on Freedom of the Media, whose visit authorized by the Belarusian authorities in 2013 was a step in the right direction", - "values": [ - "4 - General action" - ] - }, - { - "text": "Strengthen efforts to prevent, combat and punish violence against women ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Take effective measures to develop alternatives to institutionalization and place children in institutions only as a measure of last resort", - "values": [ - "4 - General action" - ] - }, - { - "text": "Discourage State officials from continuing the current practice of instituting lawsuit against journalists and human rights defenders that publish criticism", - "values": [ - "4 - General action" - ] - }, - { - "text": "Ensure full compliance with its international obligations regarding the right of asylum seekers and refugees by expediting the processing of applications by asylum seekers at the various processing centres", - "values": [ - "4 - General action" - ] - }, - { - "text": "Lift restrictions on the rights to freedom of expression that are not in accordance with the Universal Declaration of Human Rights, and to ensure affordable and unhindered access to the internet for all ", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Ensure that the National Human Rights Commission of Nigeria is fully independent of the government and that the NHRC is given the mandate to investigate extrajudicial complaints regarding human rights violations and propose adequate remedies to victims", - "values": [ - "4 - General action" - ] - }, - { - "text": "Adopt policies and programmes to strengthen the rights of children and adolescents in the field of education, training and health", - "values": [ - "4 - General action" - ] - }, - { - "text": "Establish a formal moratorium on the death penalty, with a view to ratifying the Second Optional Protocol to the International Covenant on Civil and Political Rights", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Draft or amend national legislation to prevent incitement to hatred and attacks against all minority groups ", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Vigorously pursue prosecutions under its new anti-trafficking legislation and ensure that responsible government institutions are adequately resourced to provide timely and effective follow-up on specific cases ", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Fulfil its obligations under the International Covenant on Economic, Social and Cultural Rights so that the Russian-speaking linguistic minority fully enjoys the right to equal opportunities in the labour market", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Take measures to prevent human rights violations based on sexual orientation and gender identity ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Ratify CED and accept the competence of the treaty body as provided for in articles 31 and 32", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Guarantee freedom of religion or belief and the rights of persons belonging to national minorities and hold to account the perpetrators of violence and threats against religious minorities", - "values": [ - "4 - General action" - ] - }, - { - "text": "Continue to implement reforms in the judiciary ", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Promptly adopt and amend when necessary the Law on Anti-Discrimination, already prepared with civil society, to comply with international standards and ensure its due implementation in close cooperation with all stakeholders ", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Consider adopting the first Optional Protocol to the International Covenant on Civil and Political Rights", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Continue to regularly invite mandate holders of the Special Procedures", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Strengthen the fight against poverty ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Use the terminology droits humains or droits de la personne in French, which reflects true equality between men and women.", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Establish a fully independent human rights institution in compliance with the Paris Principles", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Progressively restrict the use of the death penalty and reduce the number of offences for which it may be imposed .", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Establish a National Action Plan for the priorities, initiatives and commitments it has identified in its UPR report with a view to improving the human rights situation in Côte d'Ivoire ", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Consider strengthening policies on human rights and mental health, with special attention to the area of child psychiatry.", - "values": [ - "3 - Considering action" - ] - }, - { - "text": "Reinforce its efforts to protect the rights of migrant workers and prepare favourable working conditions", - "values": [ - "4 - General action" - ] - }, - { - "text": "Continue its efforts to strengthen the institutional and normative human rights framework, particularly with regard to freedom of expression", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Sign and ratify the Convention against Torture, the International Convention for the Protection of All Persons from Enforced Disappearance, the International Convention on the Elimination of All Forms of Racial Discrimination", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Continue its efforts to incorporate and harmonize its internal national legislation with the main international human rights instruments in the most expeditious way", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Adopt further measures to ensure: accountability of the police for their proper, sensitive and effective conduct in cases of violence against women, and better protection of in particular aboriginal women against all violence, including through addressing their low socio-economic status and discrimination against them, better accessibility of alternative-protected housing for victims of domestic violence", - "values": [ - "4 - General action" - ] - }, - { - "text": "Ratify the Optional Protocol to the Convention against Torture (OPCAT) and engage in a consultation process with all relevant actors, including civil society, concerning the establishment and structure of a national preventive mechanism.", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Take into full account children, girls in particular, the most marginalised groups, including persons with disabilities, in the strategy and programmes of development in the area of health and education", - "values": [ - "4 - General action" - ] - }, - { - "text": "Continue its efforts in improving access to affordable housing through proper implementation of its existing legal and policy frameworks including mortgage financing and its Public Private Partnership housing estate schemes", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Take further steps to ensure the promotion of the values of tolerance, dialogue and mutual understanding at the local level", - "values": [ - "4 - General action" - ] - }, - { - "text": "Take appropriate measures to support the cultures of persons belonging to national minorities", - "values": [ - "4 - General action" - ] - }, - { - "text": "Repeal the provision preventing Moroccan women from transmitting nationality to their foreign husband", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "To carry out an annual review of the human rights situation in the country and report as appropriate", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Not carry out the death penalty and re-apply a moratorium on executions with a view to abolishing the death penalty in accordance with the resolution adopted in this regard by the General Assembly.", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Abolish completely the death penalty and ratify ICCPR-OP 2 ", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Continue its efforts to implement the plan on employment growth and poverty reduction (DSCERP) 2012-2016", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Make continuing efforts to combat trafficking in persons", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Take measures to facilitate the treatment, education, aftercare and social reintegration of drug abusers, as an alternative to deprivation of liberty, and in penitentiary centres", - "values": [ - "4 - General action" - ] - }, - { - "text": "Further continue its efforts to combat domestic violence, including through raising public awareness", - "values": [ - "4 - General action" - ] - }, - { - "text": "Accede to the Rome Statute of the International Criminal Court and ensure its incorporation into domestic law, as accepted in the previous universal periodic review", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Enhance training methods for collecting evidence against suspected human traffickers to increase successful prosecutions, and ensure convicted trafficking offenders are punished with sentences commensurate with the gravity of the crime", - "values": [ - "4 - General action" - ] - }, - { - "text": "Adopt comprehensive legislation on gender equality and include the ground of "sex" among grounds of non-discrimination, in article 29 of the Constitution, in order to guarantee women better protection against discrimination", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Implement fully the Family Protection Act from 2013, to ensure that police and prosecutors treat gender-based violence, including within the family, as criminal matters, and to adopt a comprehensive national action plan to combat sexual and gender-based violence, including raising general awareness through education and training, develop official and credible statistics, and ensuring access to justice for victims ", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Put forward its utmost efforts to become a party to core international human rights treaties, such as ICESCR, ICCPR and OP-CEDAW", - "values": [ - "4 - General action" - ] - }, - { - "text": "Continue to implement measures to protect and promote women's rights ", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Continue efforts to improve the human rights situation in the country and, with the support of the international community, meet the major challenges it faces.", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Consider the ratification of the Optional Protocol to the Convention on the Rights of Persons with Disabilities", - "values": [ - "3 - Considering action" - ] - }, - { - "text": "Continue its efforts to accelerate the achievement of the MDGs targets ", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Fully implement the Law on Protection from Discrimination and launch a national awareness campaign on the issue of discrimination and racism ", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Take steps to ensure that reports to treaty bodies, including the Committee on the Elimination of Racial Discrimination, the Committee on Economic, Social and Cultural Rights, and the Human Rights Committee, are submitted in a timely fashion", - "values": [ - "4 - General action" - ] - }, - { - "text": "Ensure that the procedures governing registration of civil society organizations, including organizations advocating for the Saharawi people's right to self-determination, are in conformity with international standards ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Effectively investigate and punish crimes that have been committed against leaders of Ukrainian associations in 2002-2006 ", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Sign and ratify core international human rights instruments (CAT, CERD, CCPR and CESCR)", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Take all necessary measures to protect ethnic and religious minorities from all forms of discrimination", - "values": [ - "4 - General action" - ] - }, - { - "text": "Consider signing and ratifying the International Convention on the Protection of the Rights of All Migrant Workers and Members of Their Families ", - "values": [ - "3 - Considering action" - ] - }, - { - "text": "In cooperation with AMISOM and its own security forces, take all necessary measures to protect the life of citizens ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Continue its efforts to adopt a law to protect human rights defenders against any intimidation or reprisals as foreseen in the 2005-2009 National Legislation Programme and to ensure the prompt, impartial and effective investigation of such acts ", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Amend the Child Labour Act to ban child labour, and to sign and ratify ILO Conventions 138 concerning Minimum Age for Admission to Employment and 182 concerning the prohibition and immediate action for the elimination of the worst forms of child labour and elaborate a timeline for the ratification of these instruments ", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Broaden the initiatives in favour of the independence of the State power, the freedom of expression and association", - "values": [ - "4 - General action" - ] - }, - { - "text": "Continue to strengthen measures to promote the human rights of migrant domestic workers, including by seeking to further improve working conditions of domestic workers in Singapore ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Continue to implement the recommendations made by the Committee on the Elimination of Discrimination against Women and on a regular basis submit the relevant reports for its consideration.", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Ensure the safety of journalists and a free, independent media, including in the run-up to the elections", - "values": [ - "4 - General action" - ] - }, - { - "text": "Abolish in its criminal legislation the use of life imprisonment to children", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Continue implementing programmes to combat malnutrition in hospitals and awareness programmes on nutrition for the population", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Take immediate steps to ensure that allegations of threats and intimidation against journalists and the media are fully investigated", - "values": [ - "4 - General action" - ] - }, - { - "text": "Continue strengthening the institutions and preventive policies relating to gender issues and discrimination against women ", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Strengthen the legislation to fight trafficking in persons, especially women and children, ensuring the due punishment of the perpetrators of such crimes and the provision of legal and psychological assistance to victims ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Adopt a framework for the protection of media professionals, based on the United Nations Plan of Action on the Safety of Journalists and the Issue of Impunity", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Continue efforts to combat poverty", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Ensure that the concept of defamation and disturbance of public order is in line with the human right to freedom of expression in law and practice ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Continue activities aimed at strengthening the judiciary and promoting access to justice, including through expanding the provision of free legal aid to victims of sexual violence, training members of the judiciary to fight against sexual violence and promoting awareness against the stigmatization of victims ", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Ensure that the human rights of all Gambian citizens are respected, regardless of sexual orientation or gender identity, by repealing discriminatory laws that are inconsistent with international human rights principles", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Put in place measures to ensure full respect for the right to freedom of opinion and expression, and create a more amenable climate for investigative journalism ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Further promote gender equality and women's participation in public life", - "values": [ - "4 - General action" - ] - }, - { - "text": "Set up special units in the justice and health systems to deal with gender-based violence and discrimination", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Continue working towards the recognition of indigenous peoples at the national level ", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Continue to support the Peace and Reconciliation Commission to implement the comprehensive national reconciliation and healing programme", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Urgently strengthen efforts to reform policy so as to improve the lives of Ghanaians with disabilities in practice", - "values": [ - "4 - General action" - ] - }, - { - "text": "Identify means by which the Supreme Court and the Constitutional Court can carry out their functions, especially through the designation of members of proven technical ability, moral probity and independence from external influence", - "values": [ - "4 - General action" - ] - }, - { - "text": "Conduct thorough and impartial investigation into all allegations of discrimination against women ", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Seek technical assistance to improve the judiciary, in order to more adequately execute its functions", - "values": [ - "1 - Minimal action" - ] - }, - { - "text": "Separate children in conflict with the law from adults in police and detention facilities and place them in a child-sensitive environment", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Continue its efforts to improve the national education system and to include human rights education in the school curricula", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Consider early ratification of the Third Optional Protocol to the CRC on a communication procedure ", - "values": [ - "3 - Considering action" - ] - }, - { - "text": "Substantially re-consider the punishment related to religious offences", - "values": [ - "3 - Considering action" - ] - }, - { - "text": "Prevent using cruel, inhuman and degrading punishment", - "values": [ - "4 - General action" - ] - }, - { - "text": "Allow humanitarian agencies to resume food assistance and grant WFP full, safe and unhindered access to the country in order to monitor aid distribution ", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Share its best practices in the field of human rights ", - "values": [ - "1 - Minimal action" - ] - }, - { - "text": "Provide an adequate budget for emergency centres for women victims of violence so they can carry out their mandate", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Encourage functioning of its civil society, in particular human rights NGOs", - "values": [ - "4 - General action" - ] - }, - { - "text": "Reengage with Special Rapporteur on freedom of religion.", - "values": [ - "4 - General action" - ] - }, - { - "text": "Bearing in mind Costa Rica's commitment to gender equality, seek to overcome all obstacles that impede the effective implementation of the Law to Penalize Violence against Women and guarantee the free exercise of effective judicial protection for the victims of domestic violence, including the right to reparations ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Define more clearly the regulations of the National Security Law", - "values": [ - "4 - General action" - ] - }, - { - "text": "Further develop and manage internet and communications sectors, ensuring the legitimate rights and interests of ordinary people enjoying safe and secure internet usage", - "values": [ - "4 - General action" - ] - }, - { - "text": "The Government will engage with civil society organizations and representatives in connection with the implementation of the National Plan of Action for the Promotion and Protection of Human Rights (NHRAP - 2012 to 2016)", - "values": [ - "4 - General action" - ] - }, - { - "text": "Adopt all possible measures to prevent and explicitly prohibit in its legal order the recruitment of children and their participation in armed actions and terrorist activities", - "values": [ - "4 - General action" - ] - }, - { - "text": "Consider the implementation of recommendations by special procedures so that there are institutional safeguards against harsh treatment by police and security forces.", - "values": [ - "3 - Considering action" - ] - }, - { - "text": "Raise awareness of the danger of intervention in the internal affairs of States and the risk of condoning support to terrorism, as it is a threat to international peace and security", - "values": [ - "4 - General action" - ] - }, - { - "text": "Increase efforts to strengthen its legal safeguards for eliminating all forms of ill treatment or torture in the prisons and detention centres.", - "values": [ - "4 - General action" - ] - }, - { - "text": "Extend invitations to all United Nations Special Rapporteur mandate holders, in particular the Special Rapporteur on the situation of human rights defenders and the Special Rapporteur on torture ", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Take the necessary measures to improve the rights of children, particularly with regard to juvenile justice and the fight against child marriage", - "values": [ - "4 - General action" - ] - }, - { - "text": "Adapt its legislation and take the necessary measures to guarantee the full enjoyment of the right to freedom of religion or belief, including for religious minorities", - "values": [ - "4 - General action" - ] - }, - { - "text": "Consider the establishment of a clear regulatory framework to guarantee that the activities carried out by the enterprises under its jurisdiction do not have a negative impact on human rights abroad", - "values": [ - "3 - Considering action" - ] - }, - { - "text": "Address the issue of domestic violence, gender gap in tertiary education and women's participation in politics. ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Appreciating the adoption of a series of laws on information access, take practical measures to ensure citizens' rights to free access to information", - "values": [ - "4 - General action" - ] - }, - { - "text": "Make continued efforts in promoting sustainable development of health sector, while strengthening the partnership with the local community in delivering high-quality health services to all citizens", - "values": [ - "4 - General action" - ] - }, - { - "text": "Participate in discussions in the Council, scheduled for March 2009, on the relationship between human rights and climate change, in order to send a strong message to the parties to the United Nations Framework Convention on Climate Change on the importance of reaching an effective and workable global agreement on climate change mitigation and adaptation.", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Amend its laws to remove mandatory sentences relating to the death penalty and recognize an official moratorium on its use.", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Adopt concrete measures to ensure gender sensitive training of persons involved in investigation, prosecution and assisting victims of violence against women", - "values": [ - "4 - General action" - ] - }, - { - "text": "Ensure the swift implementation of the strategic plan concerning the education and protection of children who are not in school and implement the recommendations of the Committee on the Rights of the Child in order to stop the practice of child beggars", - "values": [ - "4 - General action" - ] - }, - { - "text": "Continue with the policy of openness and cooperation with United Nations human rights mechanisms, and in particular that it consider favourably the requests by the mechanisms of the Council that have already expressed their desire to visit Cuba", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Widely publish the outcome of this UPR and make regular and inclusive consultations with civil society an integral part of the follow-up to the UPR", - "values": [ - "4 - General action" - ] - }, - { - "text": "Continue efforts to protect the rights of marginalized and vulnerable population ", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Make further efforts to promote gender equality by working to close the gender pay gap and encouraging women into top jobs and roles traditionally filled by men, which should be carried out through the National Programme for Equal Opportunities for Women and Men for 2005-2013 and other relevant programmes", - "values": [ - "4 - General action" - ] - }, - { - "text": "Extend and expand comprehensive programmes to deliver sexual and reproductive health services to women and girls, particularly those who are more vulnerable, such as rural women ", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Take measures to allow for the immediate, safe and unimpeded access of humanitarian assistance to all persons in need, allow for the visit of humanitarian agents to all places of detention and protect humanitarian agents and medical personnel operating in areas that are under siege or hard to reach", - "values": [ - "4 - General action" - ] - }, - { - "text": "Consider ratifying the Optional Protocols to CRC on the involvement of children in armed conflict and on a communications procedure ", - "values": [ - "3 - Considering action" - ] - }, - { - "text": "Undertake training of the police, administrative and judicial authorities to ensure efficient follow up of cases of slavery and slave-like practices", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Establish a national human rights institution in accordance with the Paris Principles. ", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Become a party to CAT as well as OP-CAT", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Continue to strengthen the guarantee of women's rights and promote the social status of women, in accordance with the relevant international treaties ", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Complete the process of the national legislation's full alignment with all obligations under the Rome Statute, including acceding to the Agreement on Privileges and Immunities of the International Criminal Court ", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Adopt child friendly procedural rules in the justice system", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Create a safe, favourable environment for human rights defenders: a framework where human rights can be defended without fearing reprisals or intimidation in line with the international obligations of the Republic of Moldova, in particular as a State party to the International Covenant on Civil and Political Rights", - "values": [ - "4 - General action" - ] - }, - { - "text": "Accede to those international legal instruments to which Togo is not yet a party, in particular the Optional Protocol to the Convention on the Elimination of All Forms of Discrimination against Women", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Consider withdrawing its reservation to article 2 of CEDAW.", - "values": [ - "3 - Considering action" - ] - }, - { - "text": "Adopt a penal system that is in conformity with the Committee on the Rights of the Child recommendations, the United Nations Standard Minimum Rules for the Administration of Juvenile Justice (The Beijing Rules) and the United Nations Guidelines for the Prevention of Juvenile Delinquency (The Riyadh Guidelines). to prohibit the sentencing to life imprisonment for persons under18 years of age in conformity with article 37 (a) of the Convention on the Rights of the Child.", - "values": [ - "4 - General action" - ] - }, - { - "text": "Recommended the full involvement of civil society in the follow-up to this review", - "values": [ - "4 - General action" - ] - }, - { - "text": "Set a timeline for the ratification of the International Covenant on Economic, Social and Cultural Rights.", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Elevate penal responsibility to the level of international standards and delete the marital prerogative in customary and religious marriage.", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "With the support of the international community, continue to fight HIV-AIDS.", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Continue efforts to eliminate corporal punishment", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Intensify dialogue with the international community on the issue of ill treatment by submitting the reports due to the Committee against Torture.", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Adopt specific legislation to prevent and punish violence against women.", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Recommended that cases of rape and other forms of sexual violence be adequately investigated and to brought perpetrators to justice in accordance with international standards concerning the administration of justice", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Include the content of the Convention against Torture in its legislation.", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Fight with resolve sexual violence and impunity and increase the level of representation of women in society.", - "values": [ - "4 - General action" - ] - }, - { - "text": "Respect its human rights obligations and commitment without exception or ulterior consideration and take steps to address double standard and politicization in its human rights policies", - "values": [ - "4 - General action" - ] - }, - { - "text": "Adhere to the American Convention on Human Rights", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Take all measures to address and prevent abduction of children, child trafficking, sexual abuse and exploitation and child labour, including the prosecution of perpetrators of such acts, and to protect and reintegrate child victims.", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Remain engaged with the UNHCR and other relevant international organizations to seek a comprehensive and durable solution to the refugee and IDP situations within its territory.", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Analyse the possibility of ratifying the ICCPR", - "values": [ - "3 - Considering action" - ] - }, - { - "text": "Publish the statistics of the total number of executions since the introduction of its revision to allow measurement of the decline in numbers", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Adopt measures to protect human rights defenders and cooperate with human rights organizations in adopting a national plan of action for human rights and in the implementation of the recommendations resulting from the universal periodic review", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Address the issue of unaccounted for children not handed over after the demobilization process of the paramilitaries and guarantee free primary education as a preventive measure against forced recruitments.", - "values": [ - "4 - General action" - ] - }, - { - "text": "Intensify efforts to complete the work on the national plan of action in accordance with the recommendation of OHCHR, with particular attention to efforts to improve the situation regarding sexual violence against women", - "values": [ - "4 - General action" - ] - }, - { - "text": "Respond to the communication by the Special Rapporteur on the protection of human rights while countering terrorism dated 26 April 2006.", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Integrate, in a systematic manner, a gender perspective in the UPR follow-up process.", - "values": [ - "4 - General action" - ] - }, - { - "text": "Take the necessary measures in order to reinforce the campaign against discriminatory practices and violence against women.", - "values": [ - "4 - General action" - ] - }, - { - "text": "Reopen points of passage to and from the Gaza Strip.", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Take urgent and immediate steps to end its occupation of all Palestinian and Arab territories occupied since 1967, implement all Human Rights Council, General Assembly and Security Council resolutions on the Occupied Palestinian Territories and other Arab territories, introduce measures to respect the right of the Palestinian people to self-determination and their right to return, accept its obligations under international human rights and humanitarian law, cease action that would alter the demographic situation of Palestine, and grant access to safe drinking water to Syrian citizens living in the occupied Syrian Golan", - "values": [ - "4 - General action" - ] - }, - { - "text": "Consolidate and continue taking measures to reinforce enrollment and retention rates in secondary education", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Continue to cooperate with OHCHR and human rights mechanisms and the Human Rights Council", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Ensure prompt follow-up to the recommendations formulated by the Committee against Torture in 2008 with regard to the overall state of the prison system. ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Pursue the ongoing reforms aimed at restoring public confidence in the judiciary", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Develop and adopt national legislation and practices granting formerly trafficked and exploited women and children remaining in Malaysia immunity from penalties under national immigration laws", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Enact a Children's Act as well as consolidating national legislation which is fully in line with the international obligations it has undertaken", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Enact new measures against the discrimination of the Roma population.", - "values": [ - "4 - General action" - ] - }, - { - "text": "Accelerate the ratification of the Optional Protocol to the Convention on the Rights of the Child on the sale of children, child prostitution and child pornography. ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Ratify the Rome Statute of the International Criminal Court, the International Convention for the Protection of All Persons from Enforced Disappearance and the 1977 Additional Protocols to the Geneva Conventions.", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Recommended that there should be awareness campaigns for education on human rights and in particular for women's rights.", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Continue its efforts in further developing the system of international treaties to combat international terrorism ", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Reinforce measures to combat incitement to discrimination and racial violence including through criminal prosecution of those involved in violence against minorities and immigrants, and provide adequate reparation for the victims of such acts.", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Support the recommendation of the Special Rapporteur on the question of torture and establish an OHCHR field presence with the mandate to monitor Sri Lanka's human rights situation and provide technical assistance, particularly regarding judicial, police and prison reform.", - "values": [ - "4 - General action" - ] - }, - { - "text": "Recommended the abolition of the legislation and practices arising from the propiska system of registration of permanent residence.", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Continue efforts to harmonize national legislation with international human rights instruments. Continue awareness raising and dissemination of human rights principles among the population at large. and conduct human rights training for officers responsible for law enforcement.", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Further progress on the recommendation of the Committee against Torture to set up an independent oversight mechanism for investigating torture.", - "values": [ - "4 - General action" - ] - }, - { - "text": "Take concrete measures to limit the number and extent of restrictions on the right to freedom of expression and the freedom of the press.", - "values": [ - "4 - General action" - ] - }, - { - "text": "Accede to the 1951 Convention relating to the Status of Refugees.", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Take all necessary measures to prevent torture in line with international law obligation and report about the results in the next UPR round and ensure that the absolute prohibition of torture is observed.", - "values": [ - "4 - General action" - ] - }, - { - "text": "Uphold the progress it has achieved in ensuring religious freedom for the different communities and ensuring that religious and belief activities continue to be an enriching feature of Vietnamese society.", - "values": [ - "4 - General action" - ] - }, - { - "text": "Continue to make further efforts to advance the human rights of socially vulnerable people, including persons with disabilities, ethnic minorities, women, children, persons with HIV-AIDS and victims of human trafficking.", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Adopt a law to protect the rights of human rights defenders as well as a plan to ensure their security, particularly in the east of the country. Conduct an appropriate investigation and publicly condemn attacks against human rights defenders.", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Adopt further measures to fight human trafficking and assist its victims ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Closely monitor the situation relating to direct or indirect racial discrimination and ensure that complaints in this area are duly dealt with in the most effective manner possible ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Consider ratifying the International Convention on the Protection of the Rights of All Migrant Workers and Members of their Families ", - "values": [ - "3 - Considering action" - ] - }, - { - "text": "Consider the ratification of the International Convention for the Protection of All Persons from Enforced Disappearance CED ", - "values": [ - "3 - Considering action" - ] - }, - { - "text": "Continue to promote human rights education and training for both Government officials and the general public in order to ensure the further nurturing of a human rights culture within the country", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Effectively implement the 2006 law on sexual violence and train judicial officials in its application. ", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Ensure that disarmament, demobilization, repatriation, resettlement and reintegration for rebel groups remains a high priority in operations against FDLR and the Lord's Resistance Army. ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Ensure that women are proportionately represented in all aspects of Norwegian political and public life, including migrant and minority women, as recommended by the Committee on the Elimination of Discrimination against Women", - "values": [ - "4 - General action" - ] - }, - { - "text": "Further address the issue of eliminating violence against women and children", - "values": [ - "4 - General action" - ] - }, - { - "text": "Improve its cooperation with the United Nations treaty bodies by agreeing on timelines for submitting overdue reports, in particular to the Human Rights Committee and the Committee on the Elimination of Discrimination against Women ", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Intensify efforts to combat trafficking, align its definitions of prostitution and trafficking with\ninternational law, intensify its efforts to provide support to women at risk and seek bilateral agreements with neighbouring States ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Investigate allegations of rape being used as a weapon of war, and sanction perpetrators. ", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Join ILO and accede to its core instruments and extend an open invitation, and without restrictions, to ILO officials to analyze the situation of workers' rights in the country ", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Make more efforts to guarantee the right of all children to be registered immediately after birth through a simplified and inclusive procedure, thus allowing them access to basic social services such as education and health ", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Put an end to the practice of extrajudicial executions, public and secret ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Review legislation and practice on the protection of human rights of asylum- seekers with a view to ensuring effective access to appeal against negative decisions of the Visa and Refugee Commission and upholding of the principle of non-refoulement ", - "values": [ - "3 - Considering action" - ] - }, - { - "text": "Take effective measures for integration of migrants in Norway through, among others, non-discriminatory access to education, housing and employment ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Take effective measures to guarantee the independence of the judiciary and to put an end to infringements of judiciary independence through rapid, in-depth, independent and impartial investigations into allegations of interference as well as prosecutions and sanctions against the perpetrators ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Consider acceding to all core conventions of the International Labour Organization", - "values": [ - "3 - Considering action" - ] - }, - { - "text": "Continue its active and leading participation in the Abu Dhabi dialogue process", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Continue the implementation of effective programs for the elimination of all forms of discrimination against women", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Continue the process of strengthening and adapting the national normative framework, particularly by finalizing the texts being prepared with regards to women, asylum and elections", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Continue to adopt measures necessary for continued improvement in the delivery of social services to its population, with a view to further enhancing the social protection system for its inhabitants, in particular the most vulnerable", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Continue to ensure that the freedom of the media is guaranteed and, in this regard, to take into account the recommendations of the Special Rapporteur on the right to freedom of expression and the Human Rights Committee", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Continue to place people at the centre of development in a harmonious society for all in order to permit further progress in the area of economic, social and cultural rights", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Denounce hate speech and prosecute actively in the justice system those responsible for racist and violent acts", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Do away with the death penalty", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Engage towards the abolition of the death penalty by adopting a moratorium, commuting all sentences already pronounced and by reducing the number of offences punishable by this penalty", - "values": [ - "4 - General action" - ] - }, - { - "text": "Ensure that any collaboration agreement signed with other States or contracts adjudicated to private security companies, guarantee the obligation of respecting international standards for the protection of human rights, as well as establish an adequate mechanism supervising the compliance with these standards by the actors involved", - "values": [ - "4 - General action" - ] - }, - { - "text": "Establish an independent body to regulate broadcasting", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Expedite the presentation of its pending reports to the relevant treaty bodies", - "values": [ - "4 - General action" - ] - }, - { - "text": "Guarantee the free exercise of activities of human rights defenders", - "values": [ - "4 - General action" - ] - }, - { - "text": "Increase its activities aimed at strengthening and promoting women's role in society", - "values": [ - "4 - General action" - ] - }, - { - "text": "Step up measures to comprehensively address the problem of violence against women, including FGM, by expediting the enactment of the Women's Bill, and by implementing social, educational and legal safeguards and increasing public awareness campaigns to sensitize the community on the issue", - "values": [ - "4 - General action" - ] - }, - { - "text": "Strengthen programs of capacity building in human rights field and raise human rights awareness level", - "values": [ - "4 - General action" - ] - }, - { - "text": "Take the measures necessary to combat discrimination based on sexual orientation or gender identity", - "values": [ - "4 - General action" - ] - }, - { - "text": "Ratify the International Convention for the Protection of All Persons from Enforced Disappearance as soon as possible ", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Introduce the definition of torture reflecting that in article 1 of CAT into its national legislation ", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Repeal or amend legislation, such as the Law on Public Events and Criminal Code 193-1, which represses free expression or opinion, assembly and association, in particular that of human rights defenders and other members of civil society \n", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Ensure that arrests are carried out by law enforcement officials and that the detained are duly charged and brought to fair trials in accordance with international standards or are released ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Ratify the Optional Protocol to CEDAW ", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Consider decriminalizing same-sex relations between consenting adults, with a view to ensuring the rights to privacy and non-discrimination ", - "values": [ - "3 - Considering action" - ] - }, - { - "text": "Establish an independent national human rights institution in conformity with the Paris Principles to deal with all human rights matters, including the rights of the child ", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Continue its efforts in strengthening, protecting and guaranteeing human rights and fundamental freedoms ", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Continue to implement its national plans, including for the reform of its human rights legislation, and further to improve the effectiveness of enforcing its national laws ", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Introduce measures to ensure and promote the freedom and security of reporters and human rights defenders, including revoking the criminal liability of journalists for libel and slander, and refrain from endorsing measures that limit the activity of independent civil society ", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Heed the advice of CEDAW by adopting comprehensive measures to address all forms of violence against women and girls, in accordance with CEDAW general recommendation 19 ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Comply fully with article 25 of the ICCPR, relating to the right to political participation ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Enhance efforts to build and improve infrastructure in rural areas ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Continue its efforts to combat poverty, and call for technical and financial assistance at the international and bilateral levels to that end ", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Prioritize enacting a Domestic Violence Bill ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Continue to adopt all legislative and executive measures against gender-based violence, with special attention to migrant victims ", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Continue its constructive efforts for the promotion of respect, tolerance, better understanding and cooperation among different cultures and religions through initiatives such as the Alliance of Civilizations and the Dialogue among Religions ", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Establish an independent national human rights institution ", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Intensify its efforts to eliminate violence against women, in line with recommendations by the Human Rights Committee, the Committee on the Elimination of Discrimination against Women, CRC and the Special Rapporteur on violence against women ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Set a time frame within which restrictions with regard to, among others, the enforcement of property rights, training of the clergy, and deprivation of legal personality of non-Muslim minorities, including the Greek orthodox minority, will be lifted so that members of these minorities can fully enjoy their human rights ", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Maintain its moratorium on the use of the death penalty with a view to eventually abolishing it", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Develop a comprehensive nationwide policy consistent with CEDAW, ensure true and genuine gender equality in the fight against gender-based violence, including the complete eradication of practices of female genital mutilation, and withdraw the reservation to CEDAW ", - "values": [ - "4 - General action" - ] - }, - { - "text": "In line with the recommendations of the CEDAW and CRC Committees, accelerate efforts in promulgating national action plans for the advancement of women and the elimination of all forms of discrimination against women, including violence against women, and finalize and adopt a national action plan on violence and abuse against children", - "values": [ - "4 - General action" - ] - }, - { - "text": "Ensure effective protection of the rights of foreigners residing in the country, and actively promote anti-discrimination policies, including in law enforcement practices", - "values": [ - "4 - General action" - ] - }, - { - "text": "Take necessary measures in order to ensure effective protection of journalists and to prevent and punish threats and acts of violence of which they are victims", - "values": [ - "4 - General action" - ] - }, - { - "text": "Establish a system of effective and transparent accountability to investigate, prosecute and punish those responsible for alleged police abuses and, in particular, possible extrajudicial executions, in order to avoid the perception of impunity and overcome the worrying disenchantment of public opinion regarding the acts of the security forces in their fight against crime ", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Establish within the Police Service a domestic violence and victims support unit ", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Consider the creation of additional national mechanisms to promote and protect human rights of vulnerable groups especially women, children, and people with disabilities", - "values": [ - "3 - Considering action" - ] - }, - { - "text": "Decriminalise homosexuality and ensure non-discrimination on the basis of sexual orientation and gender identity", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Criminalise all acts of torture as set forth in the Convention against Torture and adopt punishments in line with the gravity of the crime", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Abolish the death penalty and create, in the meantime, a moratorium", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Ratify outstanding core international human rights instruments, and accede to the Rome Statute of the International Criminal Court ", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Facilitate the active involvement of civil society stakeholders, including human rights non-governmental organizations in the follow-up to this review ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Sign and ratify CED as soon as possible, and fully recognize the competence of the Committee on Enforced Disappearances ", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Effectively address the recommendations of human rights treaty bodies and special procedures with respect to its human rights legislation, particularly on minorities, women and children, in order to bring them in line with international human rights law ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Continue efforts for developing trust among the population with regard to the judiciary ", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Provide information, as requested by the International Labour Organization, on the implementation of measures to promote the participation of ethnic minorities in the labour market in the public and private sectors ", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Continue its efforts to further improve the quality of education and health services", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Put an end to racial discrimination against the Rohingya and join ICERD", - "values": [ - "4 - General action" - ] - }, - { - "text": "Place importance on the review of the Law on Civil Associations to ensure a more effective working environment for them ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Strengthen existing efforts to increase the opportunities for the representation of women in the Omani Consultative Council (Majlis el-Shura) ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Step up effort in ensuring that the development programmes and other measures taken to improve the quality of lives of the people fully benefit the vulnerable groups, including those living in the rural areas ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Adopt new measures to ensure greater participation and representation of women in the Public Administration, as well as equal remuneration for men and women ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Consider the ratification of the remaining human rights core international instruments ", - "values": [ - "3 - Considering action" - ] - }, - { - "text": "Bring its legislation into conformity with its commitment to equality and non-discrimination, by repealing all legal provisions that criminalize sexual activity between consenting adults ", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Implement effectively the National Action Plan for migrants and protect the rights and interests of migrants without prejudice to their status, and minorities including Muslims and Roma population", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Ensure prompt, impartial and effective investigations into all allegations of ill-treatment committed by law enforcement officials ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Consider ratifying International Labour Organization Convention No. 169 (1989) concerning Indigenous and Tribal Peoples in Independent Countries and take operational steps to implement the United Nations Declaration on the Rights of Indigenous Peoples ", - "values": [ - "3 - Considering action" - ] - }, - { - "text": "Implement promptly the National Gender Equality and Women's Development Policy ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Respect international standards on capital punishment, especially the principles stated in resolution 1984/50 of the Economic and Social Council, and in particular ensure that capital punishment is applied only for the most serious crimes ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Repeal the death penalty", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Endorse and promote the National Policy for Women, which addresses issues of discrimination against women, and ensure the speedy enactment of the Family Safety Bill 2009 ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Bring its legislation into conformity with its commitment to equality and non-discrimination, by prohibiting discrimination based on sexual orientation or gender identity ", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Mobilize the necessary resources for the successful implementation of national programmes in the area of economic, social and cultural rights, such as the second poverty reduction strategy, Agenda for Change, and the health and education strategies ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Share experience and good practices with all other countries in the areas of development and protection of human rights ", - "values": [ - "1 - Minimal action" - ] - }, - { - "text": "Establish a national human rights institution that is compliant with the Paris Principles ", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Continue efforts to raise awareness concerning human rights by all means at its disposal ", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Issue clear, public orders and take clear steps to ensure that its security forces (and militias under its purview) comply with international human rights law and with international humanitarian law, including the principles of distinction and proportionality ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Revise the 1991 Penal Code and abolish the penalization of apostasy ", - "values": [ - "3 - Considering action" - ] - }, - { - "text": "Pass legislation at the federal level to prohibit female genital mutilation and early forced marriages, and ensure that such legislation is enforced in practice ", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Liechtenstein will continue to pay particular attention to the equality of opportunity for women and men in the labour market, taking into account, inter alia, relevant developments in the framework of the European Economic Area", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "The MSAR [Macao Special Administrative Region] Government pledges to continue to promote human rights, with due regard to the young generations, in order to assure a multicultural and ethnic society based on harmony, anti-bias and tolerance education.", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Germany is committed to the absolute prohibition of torture and other cruel, inhumane or degrading treatment or punishment.", - "values": [ - "4 - General action" - ] - }, - { - "text": "Work with the Office of the High Commissioner for Human Rights to prepare a Common Core Document that would alleviate its treaty-reporting burden ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Intensify bilateral and multilateral cooperation with neighbouring countries to combat acts of trafficking in women and girls ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Ratify the Convention on the Rights of Persons with Disabilities, as well as its optional protocol", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Enact the legal act of the Human Rights and Public Administration Commission to ensure its independence and its formal access by the population", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Seek technical assistance and support from OHCHR and other relevant United Nations bodies, agencies and founds including for the preparation of overdue reports to the treaty bodies", - "values": [ - "1 - Minimal action" - ] - }, - { - "text": "Take measures to address the low levels of representation of women in public and political life and in decision-making ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Ratify the Convention on the Rights of the Persons with Disabilities in order to further promote and protect the rights of persons with disabilities ", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Address the issue of impunity in certain cases and for certain parts of Thai society, not least by strengthening the independence of the Office of Prosecutor and the independence of the judiciary", - "values": [ - "4 - General action" - ] - }, - { - "text": "Ratify the ICCPR-OP2 ", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Persist in its efforts to eradicate corruption, corporal punishment of children, discrimination against women and domestic violence ", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Seek financial support and technical assistance from the international community, in order to bolster its efforts as part of the national on-going process to achieve the Millennium Development Goals", - "values": [ - "1 - Minimal action" - ] - }, - { - "text": "Declare a moratorium on the death penalty with a view to abolishing it, and commute the death penalty sentence by prison sentences", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Elaborate and implement where gaps exist, legislative and administrative measures to outlaw discrimination against women and eliminate gender based violence", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Undertake impartial, independent and comprehensive investigations into the 2008 election-related violence, including cases of rape, with guarantees of protection for witnesses, survivors and their families, and prosecute the alleged perpetrators ", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Continue its efforts to bridge the gaps in the field of health and education in remote areas ", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Continue contributing to the Office of High Commissioner for Human Rights ", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Continue with the proper implementation of the Convention on the Rights of Persons with Disabilities, particularly with regard to the exercise of their political rights ", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Continue efforts to reduce poverty and increase, if possible, the necessary resources for current programmes, such as the "Bolsa Familia" ", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Continue improving the life conditions of migrants and refugees in Brazil ", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Continue making efforts to guarantee all Ecuadorians the right to free intercultural, diverse and participative communication in all environments and media and the right to search, receive, exchange produce and circulate truthful, verified, timely, contextualized and plural information ", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Align criminal legislation on insult and defamation with international standards governing freedom of expression. It hoped that these important elements would be taken into account in the ongoing reform of the Penal Code ", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Facilitate that different civil society actors express their views and opinions with responsibility and objectivity ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Continue including civil society participation in the UPR process ", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Adopt promptly the reforms of the Criminal Code ", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Expressly prohibit in national legislation violence against children in all settings, including at home, schools, penal institutions and centres of alternative care ", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Organize regional conferences in Morocco to exchange views and best practices on promoting forward looking initiatives and fostering cooperation between regional groups ", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Take measures to ensure the adequate protection of human rights in the Western Sahara in light of the reported cases of enforced disappearances, torture and ill-treatment, restrictions on freedom of expression, association and assembly by Moroccan security forces ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Formulate a national human rights action plan ", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Complete its accession to the core human rights instruments that are still not yet ratified ", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Deposit at the earliest possible date its instrument of ratification to OP-CAT ", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Pay special attention in the adoption of laws and their implementation to change of negative social practices particularly with respect to, torture and ill treatment in detention, sexual violence and discrimination against women and the protection of children ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Establish transitional justice mechanisms to deal with human rights violations that were committed in the past, based on the results of a broad national consultation ", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Strengthen equality between men and women, including equality in their rights to an inheritance ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Abolish, once and for all, the death penalty in conformity with the Second Optional Protocol to ICCPR ", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Step up efforts to ensure the right to education, including the participation of all school-age children, particularly girls, to attend schools", - "values": [ - "4 - General action" - ] - }, - { - "text": "Complete the process of full alignment of its national legislation with all obligations under the Rome Statute of the International Criminal Court", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Sign and ratify the Council of Europe Convention on Action against Trafficking in Human Beings and the Palermo Protocol", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Work towards the equal status of same sex couples starting with legal recognition of same sex couples", - "values": [ - "4 - General action" - ] - }, - { - "text": "Adopt effective measures such as the establishment of an institution to monitor regularly the situation of Roma", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Clarify and publicly document the processes and guidelines for dealing with complaints against the press, including who can make them, who they can make them to and which penalties are considered to be appropriate, as well as a rationale for these decisions", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Speed up the consideration of the ratification of the International Convention on the Protection of the Rights of All Migrant Workers and Their Families", - "values": [ - "4 - General action" - ] - }, - { - "text": "Take all necessary legislative and practical measures to eradicate violence against women, in all its forms, and to promote gender equality", - "values": [ - "4 - General action" - ] - }, - { - "text": "Implement policies and programmes preventing violence against women and children", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Continue strengthening measures to ensure free birth registration of all children at birth, as well as to identify all children who have not been registered or have not obtained an identity document", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Further strengthen and improve the social security system, increase people's living standards", - "values": [ - "4 - General action" - ] - }, - { - "text": "Give priority to legislative recognition of the competence of CERD to receive and consider complaints from persons claiming to be victims of violation by the State, in accordance with article 14 of the Convention", - "values": [ - "4 - General action" - ] - }, - { - "text": "Consider the ratification of the ICRMW", - "values": [ - "3 - Considering action" - ] - }, - { - "text": "Continue to implement measures to ensure gender equality, including women belonging to minorities", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Most complexly address the root causes of trafficking and effectively protect and support victims", - "values": [ - "4 - General action" - ] - }, - { - "text": "Consider ratifying the Palermo Protocol on human trafficking", - "values": [ - "3 - Considering action" - ] - }, - { - "text": "Continue adopting its social policies of access to services on education and health, in particular for women and girls", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Continue the reform of the judiciary, law enforcement and penitentiary system, as well as continue the policy to reduce crime and corruption", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Take concrete measures, including legislative measures, in order to improve access to justice for women who are victims of gender-based violence", - "values": [ - "4 - General action" - ] - }, - { - "text": "Further enhance its efforts in implementing its international human rights obligations, particularly in relation to the protection and promotion of the rights of persons with disabilities", - "values": [ - "4 - General action" - ] - }, - { - "text": "Strengthen measures to combat violence against children", - "values": [ - "4 - General action" - ] - }, - { - "text": "Continue strengthening the mechanisms to promote international cooperation with a focus on the promotion and protection of human rights, as fundamental principles of the official development assistance", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Pursue its efforts to fight against impunity for serious human rights violations committed during the internal armed conflict", - "values": [ - "4 - General action" - ] - }, - { - "text": "Carry out independent investigations into possible cases of torture as well as reprisals related to cooperation with international human rights bodies", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Ensure that all violence against women and girls constitutes a criminal offence, that victims have access to immediate means of redress and protection, and that all perpetrators are prosecuted", - "values": [ - "4 - General action" - ] - }, - { - "text": "Pay close attention to the problem of violation of the rights of Roma, to their social situation, medical care, and their possibility to obtain adequate education", - "values": [ - "4 - General action" - ] - }, - { - "text": "Ratify the Optional Protocol to CRC on a communications procedure and the Optional Protocol to the International Covenant on Economic, Social and Cultural Rights ", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Consider signing and/or ratifying the Rome Statute of the International Criminal Court", - "values": [ - "3 - Considering action" - ] - }, - { - "text": "Step up efforts to provide equal access to education and health care to all children, irrespective of their immigration status ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Take further appropriate and effective measures to eliminate discrimination against Roma and ensure in particular their access to education, healthcare and employment without discrimination", - "values": [ - "4 - General action" - ] - }, - { - "text": "Continue active and close cooperation with UN treaty bodies", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Take all appropriate measures to protect the right to assembly and to ensure investigation and prosecution of persons violating civil and political rights as guaranteed by the Serbian Constitution", - "values": [ - "4 - General action" - ] - }, - { - "text": "Explicitly prohibit corporal punishment in family and school ", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Take steps to protect human rights defenders, journalists and religious minorities from discrimination, harassment or intimidation, including the arbitrary deprivation of nationality", - "values": [ - "4 - General action" - ] - }, - { - "text": "Continue the efforts made to achieve the integration of the human rights approach in public policies and in different education levels", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Ensure access of all children to free birth registration", - "values": [ - "4 - General action" - ] - }, - { - "text": "Ratify CPED and recognize the competence of the Committee to receive and examine communications from individuals or those coming from other States ", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Create public policies for equality of opportunities and affirmative action to combat the low participation of women in public life, especially in decision-making bodies, including Parliament, the Government, the diplomatic service, regional and local municipalities and the upper level of the judiciary ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Further criminalize violence against women and girls, prosecute perpetrators and adopt legislation on sexual harassment ", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Continue to fight corruption in all segments of society with a view to creating a suitable business environment that is conducive to attract more foreign investments which in the longer term will contribute to the economic and social development of the country ", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Adopt the draft law on the prevention and elimination of violence against women ", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Continue its programme to enhance its capacity with regard to the human rights of state and civil society actors ", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Continue its support and assistance to the provincial and territorial governments in improving the response of law enforcement and justice system to cases of violence against women and children in Aboriginal communities ", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Develop mechanisms and procedures to better protect the rights of children victims of trafficking, and provide training for police and prosecutors in this regard ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Take measures to integrate minority children in the school system with a view to preventing segregation and discrimination", - "values": [ - "4 - General action" - ] - }, - { - "text": "Investigate allegations of ill-treatment and excessive use of force by the police and prosecute perpetrators ", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Continue with the measure carried out in order to ratify the ICRMW", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Promote in the international scene the literacy and post-literacy Cuban programs named "Yo sí puedo" "Ya puedo leer y escribir" and "Yo sí puedo seguir"", - "values": [ - "1 - Minimal action" - ] - }, - { - "text": "Intensify its efforts to collect more disaggregated data in different sectors ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Carry out an independent investigation of the car accident of Oswaldo Payá ", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Continue to provide social security protection to mothers of children with severe disabilities ", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Continue its efforts with a view to modifying the discriminatory provisions of the Family Code, in particular those related to inequalities against women in heritance matters ", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Ensure that its national legislation is in conformity with the obligation set in the article 27 of ICCPR with the objective of providing national minorities with the possibility to use their mother tongue without obstacles, as well as education in their mother tongue ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Call upon the UN bodies and other donors to provide all necessary technical and financial support to help them to meet their human rights obligations ", - "values": [ - "1 - Minimal action" - ] - }, - { - "text": "Adopt appropriate laws to combat violence against women in general and domestic violence in particular ", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Introduce independent and effective legal and professional supervision of the Youth Office (Jugendamt) and ensure that the Jugendamt decisions be in conformity with binding international norms, including the rulings of the European Court of Human Rights ", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Provide, in accordance with its obligation under international human rights law instruments, effective protection for the family as the fundamental and natural unit of society ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Continue to prioritize policies and programmes aimed at eradicating poverty and underdevelopment and ensuring the enjoyment of economic social and cultural rights", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Eliminate provisions on polygamy", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Eliminate the forced labour of children, especially through the effective implementation of national legislation and international conventions ratified in this respect, and authorize the ILO to carry out monitoring of the cotton harvest ", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Ratify the Rome Statue of the International Criminal Court and the Agreement on the Privileges and Immunities of the International Criminal Court ", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Continue to pursue the issue of human rights and climate change at national and international levels", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Ensure the provision of technical and financial resources to the National Human Rights Commission to enable it to operate effectively and compliant with the Paris Principles and distinguish its roles and responsibilities from that of the Ministry of Human Rights", - "values": [ - "4 - General action" - ] - }, - { - "text": "Treat asylum seekers on its territory in compliance with the 1951 Convention relating to the Status of Refugees", - "values": [ - "4 - General action" - ] - }, - { - "text": "Ensure that administrative detention is carried out in accordance with international human rights standards", - "values": [ - "4 - General action" - ] - }, - { - "text": "Put an end to the construction, and dismantle the illegal separation wall", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Accede to the OP-CEDAW as well as review and withdraw the reservations to articles 11, 14, 15 and 16 of the CEDAW", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Continue to strengthen its legislative and institutional frameworks to enhance the rights of LGBTI people", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Continue efforts of poverty reduction and granting basic needs and services for the vulnerable groups of the society", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Continue exploring possibilities to extend its international commitments, in particular to consider ratification of ICCPR and the Rome Statute of the International Criminal Court", - "values": [ - "3 - Considering action" - ] - }, - { - "text": "Continue taking measures to promote social and cultural rights", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Abolish Re-education through Labour, prevent torture, and immediately inform relatives about arrests and effective legal representation", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Continue to prioritize and facilitate the enrolment of qualified students to continue their higher education particularly the poor families and those with low income families through different funding mechanisms", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Allocate more funds for the promotion and protection of the rights of persons with disabilities, particularly in the areas of employment, education and housing, and provide these persons with the necessary training to improve their employability and independence ", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Continue taking steps aiming to achieve further economic empowerment of women ", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Rapidly create a national preventive mechanism against torture ", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Take reform measures to ensure equality with respect to pension funds", - "values": [ - "4 - General action" - ] - }, - { - "text": "Continue and intensify work to improve the situation of indigenous people with special efforts to tackle poverty among them, to improve their access to education beyond high school and to give them constitutional recognition", - "values": [ - "4 - General action" - ] - }, - { - "text": "Take measures to fully implement the Constitution of 1997 and ensure the rule of law ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Ensure that high school students do not have to undergo compulsory military training ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Increase its official development aid to reach the international norm of 0.7 per cent of GDP ", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Sustain the broad consultation methodology including continuing the effective participation of civil society organizations in the work of the Inter-Institutional Commission ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Ensure the dissemination of information about protective measures that are available and the legal framework in place to protect women, also among the rural population of the country ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Further extend education and publicity programmes to all regions in order to inform women, and particularly women with disabilities, of the availability of the protection orders, counselling services and education under the new law ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Further implement relevant measures to protect women's and children's rights to improve women's status in economic, social and family life, and to combat violence against women ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Continue to reduce offences subjected to the death penalty ", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Share its successful experiences on poverty reduction, food security and the fight against epidemics", - "values": [ - "1 - Minimal action" - ] - }, - { - "text": "Respect the Convention on the Rights of the Child, to which Yemen is party, with regard to the death penalty ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Establish immediately a moratorium on the death penalty as a first step towards the complete abolition of the capital punishment ", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Continue to enhance programmes to protect children from all forms of violence or abuse ", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Ensure the full application of the prohibition of torture and ill treatment", - "values": [ - "4 - General action" - ] - }, - { - "text": "Reinforce national legislation and policies to combat human trafficking, in particular sex trafficking, and child labour exploitation ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Encourage greater participation of women in the political process ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Consider acceding to the International Convention for the Protection of All Persons from Enforced Disappearance ", - "values": [ - "3 - Considering action" - ] - }, - { - "text": "Consider reviewing its national legislation and regulations to incorporate greater gender perspective and women's rights in the workplace and mobilize support for women in need ", - "values": [ - "3 - Considering action" - ] - }, - { - "text": "Investigate without delay allegations of arbitrary detention of journalists, activists and political opponents and report before the holding of the local elections", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Prohibit sentences of corporal punishment for children and life imprisonment of children under the age of 14, under all systems of justice and without exception, to ensure full compliance with international standards", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Consider the ratification of international human rights instruments to which it is still not a party", - "values": [ - "3 - Considering action" - ] - }, - { - "text": "Increase support for the Commission for Equality and Against Racial Discrimination ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Take further measures to protect the rights of migrant workers ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Speed up the process of ratification of the conventions it has signed, and consider acceding to other international human rights instruments to which it is not yet a party, such as the International Convention on the Protection of the Rights of All Migrant Workers and Members of Their Families (ICRMW)", - "values": [ - "4 - General action" - ] - }, - { - "text": "Ratify the Convention against Torture and Other Cruel, Inhuman or Degrading Treatment or Punishment, the International Convention for the Protection of All Persons from Enforced Disappearance, and the International Convention on the Protection of the Rights of All Migrant Workers and Members of Their Families", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Take to ensure the establishment of a body such as the National Human Rights Committee", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Create and implement a national human rights institution in accordance with the Paris Principles", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Continue its efforts in implementing the Plan on Human Rights Education as part of the State's human rights education system", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Strengthen efforts to adequately implement policy, legislative, regulatory and administrative measures to combat discrimination, towards social inclusion", - "values": [ - "4 - General action" - ] - }, - { - "text": "Harmonize domestic legislation with international standards in relation to crimes of sexual violence during armed conflicts, continuing with investigations and ensuring the protection of witnesses and victims of these crimes", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Amend the national constitution and the Electoral Law and to bring them into line with the European Court of Human Rights ruling on Sejdic and Finci", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Enhance its cooperation with the Human Rights Council and its mechanisms by responding favourably to outstanding requests from Special Rapporteurs to visit the country", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Adopt in its Penal Code the definition of torture in article 1 (1) of the United Nations Convention against Torture", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Continue the practice of implementing socially orientated programmes", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Address legal gaps regarding illegal migration", - "values": [ - "4 - General action" - ] - }, - { - "text": "Take measures to further improve enforcement of existing laws criminalizing rape and domestic violence, including by thoroughly investigating and prosecuting all acts of violence against women, and providing targeted training and capacity-building to law enforcement officials", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Establish indicators to assess and follow up the effective implementation of the national policy on the protection of children and adolescents (2013-2023), adopt education policies to prevent dropouts at all levels and reintegrate deported children", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Join efforts for the appropriate development of the comprehensive police education system, approved in May 2013, aimed at the effective promotion and protection of human rights as a mainstream subject", - "values": [ - "4 - General action" - ] - }, - { - "text": "Strengthen and implement policy measures to eliminate child trafficking", - "values": [ - "4 - General action" - ] - }, - { - "text": "Enact and enforce effective legislation prohibiting the practice of female genital mutilation", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Intensify efforts for the enhancement of the cultural, social and economic rights of women, children and people with disabilities", - "values": [ - "4 - General action" - ] - }, - { - "text": "Take all necessary measures to ensure the protection and non-discrimination of religious minorities, including by immediately ending production of Government-controlled media programmes spreading misinformation about religious minorities and inciting hatred against them", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Review its legislation and policy so as to ensure freedom of religion of persons belonging to religious minorities, including Baha'is, as well as protection of their other human rights without any discrimination", - "values": [ - "3 - Considering action" - ] - }, - { - "text": "Repeal all legal provisions that infringe the freedoms of expression, assembly and association, as guaranteed by the International Covenant on Civil and Political Rights", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Enhance freedom of the media, establish effective protection mechanisms for journalists against attacks and intimidation and grant its people free access to electronic media", - "values": [ - "4 - General action" - ] - }, - { - "text": "Continue to address measures that protect religious and ethnic minorities in the interests of ensuring their full and equal participation in public and private life", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Take appropriate measures for ensuring prosecution for trafficking", - "values": [ - "4 - General action" - ] - }, - { - "text": "Step up its efforts to appoint the members of the national authority and ensure the effective exercise of its functions", - "values": [ - "4 - General action" - ] - }, - { - "text": "Continue strengthening mechanisms to combat racism, racial discrimination, xenophobia and other forms of related intolerance", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Ratify the Optional Protocol to CRPD ", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Further strengthen existing mechanisms aimed at safeguarding the rights of women, especially with regard to protection against violence", - "values": [ - "4 - General action" - ] - }, - { - "text": "Consider the ratification of those human rights instruments to which it is not yet a Party", - "values": [ - "3 - Considering action" - ] - }, - { - "text": "Analyse the possibility of creating a national human rights network, which among other issues would facilitate, the establishment of a national system for monitoring international recommendations", - "values": [ - "3 - Considering action" - ] - }, - { - "text": "Establish a strong and independent national human rights institution, in conformity with the Paris Principles", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Establish a fully-fledged National Human Rights Institution in full compliance with the Paris Principles", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Redouble efforts to eliminate FGM and other harmful traditional practices, including through strict enforcement of the legal prohibition and increased awareness-raising of the harmful consequences of such practices", - "values": [ - "4 - General action" - ] - }, - { - "text": "Take the necessary steps to combat sexual trafficking and abuses of children, including through improving the judicial system, strengthening the relevant government institutions and providing educational treatment and restorative support to the victims", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Consider implementing possible legislative mechanisms that would assist in combating transnational organized crime, in particular drug trafficking and money-laundering", - "values": [ - "3 - Considering action" - ] - }, - { - "text": "Continue to address the root causes of human trafficking and provide the relevant training to law enforcement officials and judges to ensure that the perpetrators of this heinous crime do not go unpunished", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Ensure de facto criminalization of child, early and forced marriages and carry out awareness-raising among women about their rights", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Conduct a wider review of its penal code in assessing its effectiveness to address domestic violence cases", - "values": [ - "3 - Considering action" - ] - }, - { - "text": "Establish an inter-institutional coordination mechanism to promote gender equality and the implementation of the Convention on the Elimination of All Forms of Discrimination against Women", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Consider issuing standing invitations to all special procedures", - "values": [ - "3 - Considering action" - ] - }, - { - "text": "Ensure birth registration is available to all its citizens and provide free, inclusive and compulsory education for all children", - "values": [ - "4 - General action" - ] - }, - { - "text": "Ratify the Convention relating to the Status of Stateless Persons and the Convention on the Reduction of Statelessness, with a view to finding a permanent solution to the legal status of Bidouns in Kuwait", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Amend legislation that discriminates against women, such as the Nationality Law, to ensure equality between men and women and non-discrimination in enjoyment of the human rights of girls and women", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Continue to engage in the full implementation of judicial decisions concerning the family, and exerting efforts to resolve family-related disputes", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Develop plans to promote human development programmes in the State of Kuwait", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Continue harmonizing national legislation with the Constitution and international human rights norms", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Further work in empowering women in decision-making", - "values": [ - "4 - General action" - ] - }, - { - "text": "Further strengthen the understanding of gender equality, in order to eliminate patriarchal attitudes and gender stereotypes", - "values": [ - "4 - General action" - ] - }, - { - "text": "Formulate a national disaster risk reduction programme to respond to crises relating to food security", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Implement the July 2014 national anti-trafficking action plan and enact implementing regulations for the 2011 anti-trafficking act, including by making the changes necessary to ensure that trafficking cases are prosecuted in the magistrate courts, not just the high court", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Pursue efforts to combat human trafficking and adopt a law to prevent this phenomenon and protect victims as soon as possible", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Guinea is committed to doing everything in its power to fully implement the principle of gender equality in its education and legal systems and its institutions. The Government remains very concerned about the issue of violence against women.", - "values": [ - "4 - General action" - ] - }, - { - "text": "With the return to constitutional normality, following the early presidential and parliamentary elections in 2014, the current Government strengthened its political will and its commitment to continuing its efforts to implement the universal periodic review and to mobilizing resources to promote sustainable development policies aimed at poverty eradication, reform of the justice system, consolidation of the rule of law and the promotion and protection of human rights.", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "The Government is committed to ensuring a rapid and efficient transition to a two tier government under which county governments will assume full responsibility of the functions assigned to them under the constitution.", - "values": [ - "4 - General action" - ] - }, - { - "text": "Consider ratifying the International Convention for the Protection of All Persons from Enforced Disappearance as well as the core international human rights instruments to which it is not yet a party", - "values": [ - "3 - Considering action" - ] - }, - { - "text": "Continue to further improve the quality of school education for children", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Step up the fight against racism, xenophobia and hate speech and adopt measures to promote poverty reduction, social inclusion and social assistance", - "values": [ - "4 - General action" - ] - }, - { - "text": "Continue efforts to facilitate the professional, social and economic inclusion of all national and ethnic and other minority groups, including the Serbian minority, represented in Croatia", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Investigate and prosecute police misconduct, in accordance with international standards, and strengthen institutional capacities to fight against corruption among police officials", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Ratify the Convention against Torture and the International Convention for the Protection of All Persons from Enforced Disappearance", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Take all the necessary measures to bring its national human rights institution in line with the Paris Principles", - "values": [ - "4 - General action" - ] - }, - { - "text": "Seek all forms of technical and logistical assistance in order to strengthen the situation of human rights in the country", - "values": [ - "1 - Minimal action" - ] - }, - { - "text": "Improve access to education for persons with disabilities", - "values": [ - "4 - General action" - ] - }, - { - "text": "Take measures to ensure the independence and impartiality of the role of the judiciary", - "values": [ - "4 - General action" - ] - }, - { - "text": "Develop and implement laws, policies and mechanisms that ensure full protection of all journalists and human rights defenders against attacks and reprisals", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Ensure an enabling environment for the activities of journalists, human rights defenders and the other civil society actors", - "values": [ - "4 - General action" - ] - }, - { - "text": "Ensure political participation of women in governmental decision- making bodies in order to generate inclusive and balanced decision-making in matters that concern both women and men", - "values": [ - "4 - General action" - ] - }, - { - "text": "Hasten its positive work on revising the Criminal Code and other necessary legal framework, followed by its effective implementation, to ensure a legal framework and human rights culture that promotes equality and security for all", - "values": [ - "4 - General action" - ] - }, - { - "text": "Allocate all necessary human and material resources to combat the trafficking of persons", - "values": [ - "4 - General action" - ] - }, - { - "text": "Continue efforts aimed at promoting the rights of children, in particular children belonging to indigenous groups and children with disabilities and HIV/AIDS", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Take appropriate measures to end illegal child labour, not least concerning indigenous children", - "values": [ - "4 - General action" - ] - }, - { - "text": "Strengthen the necessary measures to fight impunity for the authors of the events occurred in Bocas del Toro in 2010", - "values": [ - "4 - General action" - ] - }, - { - "text": "Work towards the establishment of a national human rights institution in accordance with the Paris Principles", - "values": [ - "4 - General action" - ] - }, - { - "text": "Impose a moratorium on executions with a view to abolishing the death penalty nationwide", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Take all necessary measures to ensure Aboriginal and Torres Strait Islander Peoples give their consent to the development and implementation of policies and programmes that impact upon their communities and futures", - "values": [ - "4 - General action" - ] - }, - { - "text": "Implement the Workplace Gender Equality Act 2013, in letter and spirit, to create socio-economic gender parity", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Introduce measures to address issues related to the treatment of persons with disabilities, including considering the implementation of recommendations from both the Australian Law Reform Commission's report on Equality, Capacity and Disability in Commonwealth Laws, and the Senate inquiry into high levels of violence and abuse of persons with disabilities in institutional and residential settings", - "values": [ - "4 - General action" - ] - }, - { - "text": "Adopt the necessary measures to put an end to the practice of interception and return of asylum seekers, in conformity with international refugee law and international human rights law", - "values": [ - "4 - General action" - ] - }, - { - "text": "Rectification of the underrepresentation of women in public services as well as the decision-making positions in the private sector", - "values": [ - "4 - General action" - ] - }, - { - "text": "Ensure that camps and centers for migrants and refugees have sufficient shelter and health facilities to handle current increased numbers", - "values": [ - "4 - General action" - ] - }, - { - "text": "Continue to keep the principle of non-refoulement and limit the use and duration of detention for asylum seekers", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Take further measures to eradicate discrimination against women, as prescribed by Article 3 of the International Covenant on Civil and Political Rights, by considering the withdrawal of its reservation to Article 9 of the Convention on the Elimination of All Forms of Discrimination against Women and allowing women to pass on citizenship to their children in the same manner as men", - "values": [ - "4 - General action" - ] - }, - { - "text": "Sign and ratify the 1951 Convention relating to the Status of Refugees and its 1967 Protocol and ensure their effective implementation at the national level", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Improve the legal situation of migrant workers", - "values": [ - "4 - General action" - ] - }, - { - "text": "Improve the implementation of the legal framework regarding women's rights and finalise a violence against women law", - "values": [ - "4 - General action" - ] - }, - { - "text": "Develop human rights education and training and include the aspects of women's and children's rights in education curricula", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Establish an official moratorium on the death penalty with a view to its abolition for all crimes", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Guarantee in law and in practice that lawyers and judges can perform their professional functions without improper interference and legally form and join self-governing professional associations", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Repeal the Special Law on the Marriage of Buddhist Women and the Law on Religious Conversion and review and amend the Law on Birth Control and the Law on Monogamy to conform them to international human rights norms and standards", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Undertake concrete and positive steps to put an end to all acts of discrimination, violence and other human rights violations against the Rohingyas, other Muslim minorities as well as all minorities in general", - "values": [ - "4 - General action" - ] - }, - { - "text": "Amend the Constitution in order to abolish the death penalty", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Enhance measures on protecting the rights of children, women and other vulnerable groups", - "values": [ - "4 - General action" - ] - }, - { - "text": "Withdraw its reservations to the Convention on the Elimination of All Forms of Discrimination against Women, as supported by Oman during its first cycle universal periodic review", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Intensify the efforts and the measures taken to protect women rights in an effective way which corresponds with the culture of the society", - "values": [ - "4 - General action" - ] - }, - { - "text": "Implement the recommendations of the Special Rapporteur on the rights to freedom of peaceful assembly and of association", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Continue the efforts aiming at economic growth in the country", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Continue increasing the rate of women in the workforce in the civil service sector and further enabling women in the labour area", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Ensure that no person is detained in unofficial facilities and investigate and prosecute all cases of enforced disappearance", - "values": [ - "4 - General action" - ] - }, - { - "text": "Intensify the process of translating its commitments into progress on democratization, the broadening of political space and the protection of human rights defenders", - "values": [ - "4 - General action" - ] - }, - { - "text": "Create a formal health policy", - "values": [ - "4 - General action" - ] - }, - { - "text": "Intensify efforts to promote and protect the rights of persons with disabilities", - "values": [ - "4 - General action" - ] - }, - { - "text": "Consider ratifying or acceding to the core international human rights treaties", - "values": [ - "3 - Considering action" - ] - }, - { - "text": "Register all children immediately after birth and ensure that birth registration legislation is in accordance with the Convention on the Rights of the Child, as recommended by the Committee on the Rights of the Child in its 2013 Concluding Observations", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Take active measures to revise all legislation in order to fully guarantee the application of the principle of non-discrimination in domestic laws", - "values": [ - "4 - General action" - ] - }, - { - "text": "Design and implement awareness-raising campaigns on the benefits of access to health services to prevent curable diseases", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Swiftly ratify the Optional Protocol to the Convention against Torture", - "values": [ - "4 - General action" - ] - }, - { - "text": "Adopt the necessary legislative measures to ensure the integration of the gender perspective in all public policies at all levels of government, and prohibit and punish discrimination based on gender", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Exempt all asylum-seeking and migrant children from detention", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Adopt the measures required to combat all forms of violence against women, including domestic violence and violence in marriage, both in law and in practice", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Simplify the process of naturalisation of "non-citizens" living in the country for decades", - "values": [ - "4 - General action" - ] - }, - { - "text": "Take appropriate action in order to combat all forms of discrimination and violence against women and girls", - "values": [ - "4 - General action" - ] - }, - { - "text": "Take effective actions to prevent and eradicate all forms of slavery and discrimination", - "values": [ - "4 - General action" - ] - }, - { - "text": "Strengthen the capacities of the Ombudsman's Office while making it accessible to the citizens", - "values": [ - "4 - General action" - ] - }, - { - "text": "Take the necessary measures to ensure that the operations of intelligence agencies are monitored by an independent oversight mechanism to ensure transparency and accountability", - "values": [ - "4 - General action" - ] - }, - { - "text": "Take the necessary measures to guarantee the human rights of human rights defenders and to promote and protect the space of the civil society", - "values": [ - "4 - General action" - ] - }, - { - "text": "Expedite the review of the effectiveness of the current framework of the office of the National Human Rights Commission and Ombudsman", - "values": [ - "4 - General action" - ] - }, - { - "text": "Continue to strengthen policies and programmes to ensure that all in Seychelles have access to safe water and sanitation", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Ratify the Optional Protocol to the Convention against Torture and Other Cruel, Inhuman and or Degrading Treatment or Punishment, and the International Convention for the Protection of All Persons from Enforced Disappearance", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Submit the belated national reports to the treaty bodies", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Continue the efforts to end poverty", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Repeal the law that deports foreign workers suffering from sexually transmitted diseases", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Continue to exert efforts to combat trafficking in persons through the implementation of the Prevention of Human Trafficking Act in accordance with its obligations under the Palermo Protocol", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Undertake specific legal reforms for the promotion of non- discrimination and gender equality", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Implement the action plan against sexual violence against women and adopt measures to further criminalize female genital mutilation", - "values": [ - "4 - General action" - ] - }, - { - "text": "Accede to all core United Nations human rights instruments as soon as possible, particularly those it agreed to enact during its 2011 universal periodic review appearance", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Continue to make efforts to ensure women's participation in political life and in decision-making", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Continue human rights education programmes, including in relation to the prevention of genocide and crimes against humanity through the studies of those crimes committed in the past", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Enact further measures in order to address gender based-violence and achieve gender equality, including by increasing participation of women in decision-making", - "values": [ - "4 - General action" - ] - }, - { - "text": "Further combat gender-based violence and violence linked with sorcery by strengthening, in partnership with civil society and relevant United Nations entities, the mechanism of application of the principle of responsibility", - "values": [ - "4 - General action" - ] - }, - { - "text": "Ratify the Second Optional Protocol to the International Covenant on Civil and Political Rights, aiming at the abolition of the death penalty, as to bring legislation into conformity with the de facto situation", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Ratify the Optional Protocol to the Convention on the Rights of the Child on the involvement of children in armed conflict and the Optional Protocol to the Convention on the Rights of the Child on the sale of children, child prostitution and child pornography", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Step up activities to increase participation of women in public life and decision-making", - "values": [ - "4 - General action" - ] - }, - { - "text": "Continue efforts to eradicate harmful traditional practices such as child marriage and female genital mutilation", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Give priority to ensure independent, impartial and effective investigations into violations of women's rights", - "values": [ - "4 - General action" - ] - }, - { - "text": "Take necessary measures to guarantee full respect for freedom of expression and freedom of association", - "values": [ - "4 - General action" - ] - }, - { - "text": "Take steps to implement its road map to combatting human trafficking in order to ensure compliance with minimum standards for the elimination of trafficking, including by establishing an interagency anti-trafficking structure, take steps to reduce the demand for sex trafficking and forced labour, including through public education and advocacy campaigns ", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Submit overdue reports to treaty bodies", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Take immediate and effective measures to bring conditions at all detention facilities into line with the United Nations Standard Minimum Rules for the Treatment of Prisoners", - "values": [ - "4 - General action" - ] - }, - { - "text": "Make further progress in implementing the National Human Rights Action Plan with the full engagement of multi stakeholders, including civil society ", - "values": [ - "4 - General action" - ] - }, - { - "text": "Continue to mitigate and address issues concerning the worst forms of child labour and provide appropriate rehabilitation for the victims", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Take further legal proceedings to prevent violence against children, young people and tackle it, and intensify efforts to address child labour", - "values": [ - "4 - General action" - ] - }, - { - "text": "Continue in its efforts to prevent, punish and eradicate forced labour, labour exploitation, including the issue of trafficking in persons, particularly for women and children who are involved in cases of sex tourism and pornography", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Increase its efforts to ensure the right to the highest attainable standard of health also to sex workers by ensuring them access to health care and services and comprehensive sexuality education", - "values": [ - "4 - General action" - ] - }, - { - "text": "Ensure that there are no restrictions on freedom of expression especially for the media and human rights defenders, and that no one faces threats and harassment, including attitude adjustment, for expressing their views and that all legislation affecting freedom of expression is compatible and implemented in line with Thailand's international obligations as recommended by the Special Rapporteur on human rights defenders in 2016", - "values": [ - "4 - General action" - ] - }, - { - "text": "Develop more equitable strategies to achieve gender equality on the basis of the assessment or examination of the different needs, constraints, opportunities and priorities of men and women", - "values": [ - "4 - General action" - ] - }, - { - "text": "Consider taking steps towards the abolishment of death penalty", - "values": [ - "3 - Considering action" - ] - }, - { - "text": "The Maldives signed the International Convention for the Protection of All Persons from Enforced Disappearance in 2007, and is committed to bring the domestic legislations in line with the conventions before finalizing the ratification process of CPPED.", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "The Maldives notes the challenges and limitations faced, as a small island developing state and in fulfilling its reporting obligations under international conventions, due to lack of expertise, human resources, among other issues. However, with the limited human resources the Maldives is committed in submitting its initial report under the CAT.", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Although the RMI is committed to implementing the Special Rapporteur's recommendations, inadequate resources have been an impediment in effective implementation.", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Make all possible efforts to ensure and guarantee the full operational status of national government institutions, including the parliamentary and electoral systems", - "values": [ - "4 - General action" - ] - }, - { - "text": "Ensure that the Judiciary, including the Supreme Council of the Judiciary, has adequate resources and can function without political interferences", - "values": [ - "4 - General action" - ] - }, - { - "text": "Establish a strategy to combat discriminatory stereotypes", - "values": [ - "4 - General action" - ] - }, - { - "text": "Provide, as soon as possible, documents to persons of Haitian origin living in the Dominican Republic to regularize their status and thus avoid deportations, in coordination with the International Organization for Migration ", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Consider enacting a comprehensive law against all forms of discrimination and adopt an action plan for its implementation", - "values": [ - "3 - Considering action" - ] - }, - { - "text": "Ratify promptly the International Convention on the Protection of the Rights of All Migrant Workers and Members of Their Families", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Continue efforts to ensure an enabling environment for journalists", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Adopt a comprehensive law addressing all forms of violence against women and girls", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Enact the child rights bill", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Conduct a review of the personal status law and other relevant laws, which will remove the provisions that are discriminatory towards women, such as those not granting them guardianship of their children, disabling them from travelling on their own with their children or not allowing them to transfer their citizenship to their children", - "values": [ - "3 - Considering action" - ] - }, - { - "text": "Provide immediate, full, unhindered and sustained humanitarian access to the country", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Ensure the safe passage, without the risk of attacks, of humanitarian convoys, allowing for safe, unhindered and sustained humanitarian access, and the evacuation of civilians in need of medical assistance", - "values": [ - "4 - General action" - ] - }, - { - "text": "Take effective steps to address the educational needs of all children, even in these difficult conditions", - "values": [ - "4 - General action" - ] - }, - { - "text": "Urgently take legal, statutory and administrative measures against child labour", - "values": [ - "4 - General action" - ] - }, - { - "text": "Give equal access to education, health care and other social services regardless of having birth certificates or not, to all children", - "values": [ - "4 - General action" - ] - }, - { - "text": "Consider ratifying the International Labour Organization (ILO) Domestic Workers Convention, 2011 (No. 189), and the Protocol to Prevent, Suppress and Punish Trafficking in Persons, Especially Women and Children, supplementing the United Nations Convention against Transnational Organized Crime ", - "values": [ - "3 - Considering action" - ] - }, - { - "text": "Give continuity to strengthening national human rights institutions and mechanisms", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Take measures to combat rules, practices and stereotypes that cause discrimination and violence against lesbian, gay, bisexual and transgender persons, particularly those that are an attack against their dignity and self-determination with respect to their sexual orientation", - "values": [ - "4 - General action" - ] - }, - { - "text": "Make further contributions to genuine dialogue and cooperation among countries, in respect of principles of international laws, with a view to establish conditions favourable to national endeavours in protecting and promoting human rights", - "values": [ - "4 - General action" - ] - }, - { - "text": "Develop an effective national strategy to address poverty, social security and health", - "values": [ - "4 - General action" - ] - }, - { - "text": "Ratify the international human rights treaties to which the country is not yet a party, including the Convention against Torture and its Optional Protocol, and the International Convention for the Protection of All Persons from Enforced Disappearance", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Ratify, before the next universal periodic review cycle, the Optional Protocol to the Convention on the Rights of the Child on a communications procedure", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Step up the procedure for the ratification of the International Convention on the Protection of the Rights of All Migrant Workers and Their Families", - "values": [ - "4 - General action" - ] - }, - { - "text": "Address challenges of water and sanitation in favelas by full implementation of the National Sanitation Plan", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Put effective measures in place in order to increase the number of women at all levels of the decision-making process", - "values": [ - "4 - General action" - ] - }, - { - "text": "Further strengthen the work of national councils for equality to promote inclusive society", - "values": [ - "4 - General action" - ] - }, - { - "text": "Take adequate measures to guarantee the protection of isolated indigenous peoples, including the respect for intangible zones", - "values": [ - "4 - General action" - ] - }, - { - "text": "Strengthen and enhance existing laws countering different forms of discrimination, racism and xenophobia", - "values": [ - "4 - General action" - ] - }, - { - "text": "Reinforce the measures to protect the rights of the child", - "values": [ - "4 - General action" - ] - }, - { - "text": "Continue strengthening institutions to protect children and adolescent girls and boys, with a view to eradicating child labour, sexual exploitation and the practice of child marriage", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Increase efforts to ensure the school enrolment of all children at the primary and secondary levels", - "values": [ - "4 - General action" - ] - }, - { - "text": "Strengthen the existing legal framework to protect women against all forms of violence and eliminate all discriminatory gender-based legal norms", - "values": [ - "4 - General action" - ] - }, - { - "text": "Accelerate the process of ratification of the Optional Protocol to the International Covenant on Economic, Social and Cultural Rights", - "values": [ - "4 - General action" - ] - }, - { - "text": "Continue to take action towards a comprehensive gender equality strategy", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Adopt effective legislative and administrative measures to vigorously fight racial discrimination and xenophobia and guarantee the rights of ethnic minorities", - "values": [ - "4 - General action" - ] - }, - { - "text": "Respect its obligations under international law and refrain from reintroducing capital punishment", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Continue to undertake efforts to implement the Responsible Parenthood and Reproductive Health Act", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Take immediate steps to permit abortion in cases where a woman\u2019s or a girl\u2019s life or physical or mental health is in danger, where the pregnancy is a result of rape or incest and in cases of fetal impairment, with a view to decriminalizing abortion in the near future", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Combat violence and discrimination against lesbian, gay, bisexual, transgender and intersex persons", - "values": [ - "4 - General action" - ] - }, - { - "text": "Redouble efforts to prevent and eradicate all manifestations of racism and xenophobia and improve the policing action in its response to violence against refugees, asylum seekers and migrants, among others", - "values": [ - "4 - General action" - ] - }, - { - "text": "Refrain from depriving citizenship through the blocking of identity documents and establish a dedicated procedure to identify stateless persons", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Finalize the establishment of a new national human rights institution in compliance with the principles relating to the status of national institutions for the promotion and protection of human rights (the Paris Principles)", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Strengthen its democratic election processes through the effective implementation of recommendations from the final report of the European Union Election Observation Mission to Tunisia in 2014", - "values": [ - "4 - General action" - ] - }, - { - "text": "Provide for the effective participation of civil society in the implementation of the women, peace and security agenda", - "values": [ - "4 - General action" - ] - }, - { - "text": "Provide the commission on gender equality with the necessary infrastructure and budget to carry out its important work, in particular to reduce the pay gap between women and men", - "values": [ - "4 - General action" - ] - }, - { - "text": "Withdraw its reservations to the Convention on the Rights of the Child", - "values": [ - "3 - Considering action" - ] - }, - { - "text": "Carry out systematic campaigns to combat racist and xenophobic stereotypes, including those against non-citizens", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Adopt legal provisions to define cases of enforced disappearance as a criminal offence in the national law, fully investigate cases of enforced disappearance and bring to justice those responsible", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Respect reproductive rights of women which include decriminalization of abortions", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Adopt effective legislative measures to guarantee protection of human rights defenders", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Continue the successful programmes on employment, food and assistance for the most vulnerable in its fight against poverty", - "values": [ - "4 - General action" - ] - }, - { - "text": "Develop a clear implementation and monitoring plan for all national and provincial legislation on bonded labour", - "values": [ - "4 - General action" - ] - }, - { - "text": "Redouble its efforts against human trafficking and adopt a specific action plan for the protection and compensation of victims", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Put in force an immediate moratorium on the death penalty", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Implement the outcomes of the national dialogue for Constitutional reform in the field of justice, which was initiated in February 2016, whose purpose was to hold consultations with all stakeholders regarding actions to further the strengthening of the justice system in Guatemala", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Adopt effective measures to address widespread child pregnancy and ensure access to sexual and reproductive health rights, as well as education programmes", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Ensure that the education system guidelines prevent discrimination against students", - "values": [ - "4 - General action" - ] - }, - { - "text": "Encourage the Ministry of Gender, Children and Social Protection to end the practice and harmful effects of child marriage and related cultural practices", - "values": [ - "4 - General action" - ] - }, - { - "text": "Establish an effective mechanism of comprehensive reparation and compensation for victims of forced or non-consensual sterilization, and adequately bring the perpetrators of such practices to court", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Strengthen legislation aimed at the protection of children from all forms of ill-treatment and violence", - "values": [ - "4 - General action" - ] - }, - { - "text": "Establish the national committee for the prevention of torture as soon as possible by providing it with all the human, financial and material resources to function effectively, including through the appointment of independent and qualified members", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Ratify the Inter-American Convention against All Forms of Discrimination and Intolerance", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Continue its efforts in combating human trafficking, including through training for law enforcement officials and cooperation with countries of transit and destination", - "values": [ - "4 - General action" - ] - }, - { - "text": "Make the process of recognition of professional qualifications acquired abroad more flexible, to facilitate access to the labour market for refugees, asylum seekers and provisionally admitted persons", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Intensify its efforts for a new comprehensive legislation on tackling discrimination", - "values": [ - "3 - Considering action" - ] - }, - { - "text": "Continue internal institutional processes to strengthen democracy, justice and respect for human rights", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Investigate cases of cruel treatment by law enforcement officers during the arrest, custody and interrogation of suspects and ensure that the perpetrators are brought to justice", - "values": [ - "5 - Specific action" - ] - }, - { - "text": "Continue measures to promote working conditions of foreign workers, especially women foreign workers, and to improve their integration into Japanese society", - "values": [ - "4 - General action" - ] - }, - { - "text": "Establish a systematic consultation and follow-up mechanism with civil society and non-governmental organizations on the implementation of recommendations formulated in the framework of the universal periodic review", - "values": [ - "2 - Continuing action" - ] - }, - { - "text": "Protect ethnic and religious minorities in the country and provide effective reparations when their rights are undermined", - "values": [ - "5 - Specific action" - ] - } -] \ No newline at end of file diff --git a/src/extractors/text_to_multi_option_extractor/labeled_data/action/options.json b/src/extractors/text_to_multi_option_extractor/labeled_data/action/options.json deleted file mode 100644 index 1e8e394..0000000 --- a/src/extractors/text_to_multi_option_extractor/labeled_data/action/options.json +++ /dev/null @@ -1,7 +0,0 @@ -[ - "1 - Minimal action", - "2 - Continuing action", - "3 - Considering action", - "4 - General action", - "5 - Specific action" -] \ No newline at end of file diff --git a/src/extractors/text_to_multi_option_extractor/labeled_data/cejil_countries/labels.json b/src/extractors/text_to_multi_option_extractor/labeled_data/cejil_countries/labels.json deleted file mode 100644 index 5e141d1..0000000 --- a/src/extractors/text_to_multi_option_extractor/labeled_data/cejil_countries/labels.json +++ /dev/null @@ -1,506 +0,0 @@ -[ - { - "text": "RESOLUCI\u00d3N DEL PRESIDENTE DE LA CORTE INTERAMERICANA DE DERECHOS HUMANOS DE 17 DE DICIEMBRE DE 2018 CASO ARROM SUHURT Y OTROS VS. PARAGUAY VISTO: 1. El escrito de sometimiento del caso y el Informe de Fondo de la Comisi\u00f3n Interamericana de Derechos Humanos (en adelante \u201cla Comisi\u00f3n Interamericana\u201d o \u201cla Comisi\u00f3n\u201d); el escrito de solicitudes, argumentos y pruebas (en adelante el \u201cescrito de solicitudes y argumentos\u201d) del representante de las presuntas v\u00edctimas (en adelante \u201cel representante\u201d); el escrito de excepciones preliminares y de contestaci\u00f3n al sometimiento del caso y al escrito de solicitudes y argumentos (en adelante \u201cescrito de contestaci\u00f3n\u201d) de la Rep\u00fablica del Paraguay (en adelante \u201cParaguay\u201d o \u201cel Estado\u201d), as\u00ed como los 2. Las", - "values": [ - "Republic of Paraguay" - ] - }, - { - "text": "REPORT No. 146/18 CASE 12.906 MERITS JOS\u00c9 DELF\u00cdN ACOSTA MARTINEZ AND FAMILY ARGENTINA DECEMBER 7, 2018 I. SUMMARY 1. On June 6, 2002, the Inter-American Commission on Human Rights (hereinafter \"the Inter- American Commission,\" \"the Commission,\" or \"the IACHR\") received a petition lodged by the Comisi\u00f3n de familiares de v\u00edctimas indefensas de la violencia social (COFAVI) 1 , the Centro de Investigaciones Sociales y asesor\u00edas Legales Populares (CISALP), and Paola Gabriela Canova (hereinafter \"the petitioners\"), alleging that the Republic of Argentina (hereinafter \"the Argentine State,\" \"the State,\" or \"Argentina\") is internationally responsible for the harm done to Jos\u00e9 Delf\u00edn Acosta Mart\u00ednez (hereinafter the \"alleged victim\"). 2. The 3. The", - "values": [ - "Argentine Republic" - ] - }, - { - "text": "INTER - AMERICAN COMMISSION ON HUMAN RIGHTS COMISION INTERAMERICANA DE DERECHOS HUMANOS COMISS\u00c3O INTERAMERICANA DE DIREITOS HUMANOS COMMISSION INTERAM\u00c9RICAINE DES DROITS DE L'HOMME ORGANIZACI\u00d3N DE LOS ESTADOS AMERICANOS WASHINGTON, D.C. 2 0 0 0 6 EEUU November 23, 2013 Ref.: Case No. 11.576 Garc\u00eda Ibarra y familia Ecuador Mr. Secretary: I am pleased to address you on behalf of the Inter-American Commission on Human Rights in order to file Case No. 11.576 Garc\u00eda Ibarra and family v. Ecuador (hereinafter \u201cthe State\u201d, \u201cthe Ecuadorian State\u201d or \u201cEcuador\u201d) before the jurisdiction of the Honorable Inter-American Court of Human Rights regarding to the extrajudicial execution of the child Jose Luis Garcia Ibarra on September 15, 1992, at the age ", - "values": [ - "Republic of Ecuador" - ] - }, - { - "text": "REPORT No. 110/18 CASE 12,678 MERITS PAOLA DEL ROSARIO GUZM\u00c1N ALBARRAC\u00cdN AND RELATIVES ECUADOR OCTOBER 5, 2018 I. SUMMARY 1. On October 2, 2006, the Inter-American Commission on Human Rights (hereinafter the \u201cInter- American Commission,\u201d \u201cthe Commission,\u201d or \u201cthe IACHR\u201d) received a petition submitted by the Center for Reproductive Rights and the Centro Ecuatoriano para la Promoci\u00f3n y Acci\u00f3n de la Mujer (CEPAM-Guayaquil) (hereinafter \u201cthe petitioner\u201d) alleging that the Republic of Ecuador (hereinafter \u201cthe Ecuadorian State,\u201d \u201cthe State,\u201d or \u201cEcuador\u201d) was internationally responsible to the detriment of Paola del Rosario Guzm\u00e1n Albarrac\u00edn (hereinafter \u201cPaola\u201d). 2. The Commission approved Admissibility Report 76/08 on October 17, 2008. 1 The ", - "values": [ - "Republic of Ecuador" - ] - }, - { - "text": "DISSENTING OPINION OF JUDGE ad-hoc PIER PAOLO PASCERI SCARAMUZZA In the Case of R\u00edos et al. v. the Bolivarian Republic of Venezuela With the permission of the opinion of the majority of my colleagues, I, Pier Paolo Pasceri S. , Judge ad-hoc of the Inter-American Court of Human Rights, regret to dissent from the judgment for having a different criterion as to the grounds and the operative paragraphs exposed therein (except for operative paragraphs 1 of the decision) 1 and therefore I am unable to join the decision adopted by the majority of the judges of this Court, whose favorable opinions adopted the judgment on the merits as to the remaining issues that formed part of the decision from which I dissent today. In that sense, I shall now I ", - "values": [ - "Bolivarian Republic of Venezuela" - ] - }, - { - "text": "15 de marzo de 2017 Ref.: Caso 11.388 Mar\u00eda Eugenia Villase\u00f1or y otros Guatemala Se\u00f1or Secretario: Tengo el agrado de dirigirme a usted en nombre de la Comisi\u00f3n Interamericana de Derechos Humanos (en adelante \u201cla Comisi\u00f3n Interamericana\u201d, \u201cla Comisi\u00f3n\u201d o \u201cla CIDH\u201d) con el objeto de someter a la jurisdicci\u00f3n de la Honorable Corte Interamericana de Derechos Humanos (\u201cla Corte Interamericana\u201d o \u201cla Corte\u201d), el caso 11.388 \u2013 Mar\u00eda Eugenia Villase\u00f1or y otros respecto de la Rep\u00fablica de Guatemala (en adelante \u201cel Estado\u201d, \u201cel Estado guatemalteco\u201d o \u201cGuatemala\u201d). El caso se relaciona con una secuencia prolongada de amenazas, agresiones, hostigamientos e intimidaci\u00f3n sufridas por Mar\u00eda Eugenia Villase\u00f1or en su calidad de jueza en Guatemala. La Las", - "values": [ - "Republic of Guatemala" - ] - }, - { - "text": "R ESOLUCI\u00d3N DE LA C ORTE I NTERAMERICANA DE D ERECHOS H UMANOS DE 28 DE NOVIEMBRE DE 2005 C ASO C ANTOS V S . A RGENTINA C UMPLIMIENTO DE SENTENCIA V ISTOS : 1. La Sentencia de fondo, reparaciones y costas emitida el 28 de noviembre de 2002 por la Corte Interamericana de Derechos Humanos (en adelante \u201cla Corte\u201d, \u201cla Corte Interamericana\u201d o \u201cel Tribunal\u201d), mediante la cual el Tribunal declar\u00f3, inter alia , que el Estado viol\u00f3 el derecho de acceso a la justicia consagrado en los art\u00edculos 8.1 y 25 de la Convenci\u00f3n Americana sobre Derechos Humanos, en relaci\u00f3n con el art\u00edculo 1.1 de la misma, en perjuicio del se\u00f1or Jos\u00e9 Mar\u00eda Cantos, en los t\u00e9rminos de los p\u00e1rrafos 54, 55 y 56 de la [\u2026] Sentencia. y en consecuencia, por unanimidad, decid[i\u00f3] ", - "values": [ - "Argentine Republic" - ] - }, - { - "text": "RESOLUCI\u00d3N DE LA CORTE INTERAMERICANA DE DERECHOS HUMANOS DEL 29 DE JULIO DE 1991 MEDIDAS PROVISIONALES SOLICITADAS POR LA COMISI\u00d3N INTERAMERICANA DE DERECHOS HUMANOS RESPECTO DE GUATEMALA CASO CHUNIMA LA CORTE INTERAMERICANA DE DERECHOS HUMANOS, VISTOS: 1. La resoluci\u00f3n del Presidente de la Corte Interamericana de Derechos Humanos de 15 de julio de 1991, sobre medidas provisionales solicitadas por la Comisi\u00f3n Interamericana de Derechos Humanos respecto de Guatemala; 2. La convocatoria a una audiencia p\u00fablica para el d\u00eda 29 de julio de 1991 a las 3:00 p.m., contenida en la resoluci\u00f3n citada; 3. Los escritos de fechas 24 y 26 de este mes de julio presentados por el Gobierno de Guatemala en los cuales informa que, en atenci\u00f3n a la resoluci\u00f3n", - "values": [ - "Republic of Guatemala" - ] - }, - { - "text": "INFORME N\u00b0 78/06 PETICI\u00d3N 12.094 ADMISIBILIDAD COMUNIDAD ABOR\u00cdGENES LHAKA HONHAT (NUESTRA TIERRA) ARGENTINA 21 de octubre de 2006 I. RESUMEN 1. El 4 de agosto de 1998, la Asociaci\u00f3n Comunidades Abor\u00edgenes \"Lhaka Honhat\" (en adelante, \"los peticionarios\" o Asociaci\u00f3n \"Lhaka Honhat\") con el patrocinio del Centro de Estudios Legales y Sociales (CELS) 1 y el Centro por la Justicia y el Derecho Internacional (CEJIL), presentaron una petici\u00f3n ante la Comisi\u00f3n Interamericana de Derechos Humanos (en adelante \"la Comisi\u00f3n\", \"la Comisi\u00f3n Interamericana\" o \"la CIDH\") por violaci\u00f3n de los derechos a la vida (art\u00edculo 4), integridad personal (art\u00edculo 5), a la no injerencia arbitraria en la vida privada (art\u00edculo 11.2), a la informaci\u00f3n (art\u00edculo 13), ", - "values": [ - "Argentine Republic" - ] - }, - { - "text": "Corte Interamericana de Derechos Humanos Caso Vel\u00e1squez Rodr\u00edguez Vs. Honduras Sentencia de 26 de junio de 1987 (Excepciones Preliminares) En el caso Vel\u00e1squez Rodr\u00edguez, la Corte Interamericana de Derechos Humanos, integrada por los siguientes jueces: Thomas Buergenthal, Presidente Rafael Nieto Navia, Vicepresidente Rodolfo E. Piza E., Juez Pedro Nikken, Juez H\u00e9ctor Fix-Zamudio, Juez H\u00e9ctor Gros Espiell, Juez Rigoberto Espinal Ir\u00edas, Juez ad hoc; presentes, adem\u00e1s, Charles Moyer, Secretario, y Manuel Ventura, Secretario Adjunto de acuerdo con el art\u00edculo 27.4 de su Reglamento (en adelante \"el Reglamento\"), dicta la siguiente sentencia sobre las excepciones preliminares interpuestas en los escritos y alegadas en la audiencia p\u00fablica por el", - "values": [ - "Republic of Honduras" - ] - }, - { - "text": "RESOLU\u00c7\u00c3O DO PRESIDENTE DA CORTE INTERAMERICANA DE DIREITOS HUMANOS DE 30 DE MAR\u00c7O DE 2010 CASO GOMES LUND E OUTROS VS. BRASIL VISTO: 1. O escrito da demanda apresentado pela Comiss\u00e3o Interamericana de Direitos Humanos (doravante, \u201ca Comiss\u00e3o Interamericana\u201d ou \u201ca Comiss\u00e3o\u201d) \u00e0 Corte Interamericana de Direitos Humanos (doravante, \u201ca Corte Interamericana\u201d, \u201ca Corte\u201d ou \u201co Tribunal\u201d) em 26 de mar\u00e7o de 2009, mediante a qual ofereceu tr\u00eas declara\u00e7\u00f5es testemunhais e quatro ditames periciais. Os tr\u00eas testemunhos oferecidos constituem declara\u00e7\u00f5es de supostas v\u00edtimas. 2. A comunica\u00e7\u00e3o de 23 de abril de 2009, atrav\u00e9s da qual a Comiss\u00e3o Interamericana remeteu, entre outros documentos, o curriculum vitae do perito Marlon Alberto Weichert, o qual n\u00e3o ", - "values": [ - "Federative Republic of Brazil" - ] - }, - { - "text": "RESOLUCI\u00d3N DE LA CORTE INTERAMERICANA DE DERECHOS HUMANOS * DE 18 DE NOVIEMBRE DE 2020 CASO GRANIER Y OTROS (RADIO CARACAS TELEVISI\u00d3N) VS. VENEZUELA SUPERVISI\u00d3N DE CUMPLIMIENTO DE SENTENCIA VISTO: 1. La Sentencia de excepciones preliminares, fondo, reparaciones y costas (en adelante, \u201cla Sentencia\u201d) emitida por la Corte Interamericana de Derechos Humanos (en adelante \u201cla Corte\u201d o \u201cel Tribunal\u201d) el 22 de junio de 2015 1 . La Corte declar\u00f3 la responsabilidad internacional de la Rep\u00fablica Bolivariana de Venezuela (en adelante \u201cel Estado\u201d o \u201cVenezuela\u201d) por la violaci\u00f3n a ciertos derechos, como consecuencia del cierre del canal de televisi\u00f3n \u201cRadio Caracas Televisi\u00f3n\u201d (en adelante tambi\u00e9n \u201cRCTV\u201d) ocurrido el 27 de mayo de 2007 2 , a ra\u00edz de la", - "values": [ - "Bolivarian Republic of Venezuela" - ] - }, - { - "text": "VOTO CONCURRENTE DEL JUEZ L. PATRICIO PAZMI\u00d1O FREIRE CASO URRUTIA LAUBREAUX VS. CHILE SENTENCIA DE 27 DE AGOSTO DE 2020 1. En la Sentencia del caso Urrutia Laubreaux vs. Chile la Corte desarroll\u00f3 y fortaleci\u00f3 los est\u00e1ndares relativos a la independencia judicial y, en particular, las garant\u00edas contra presiones internas y externas, necesarias para asegurarla. 2. Respecto a la independencia interna, este Tribunal, citando el Estatuto del Juez Iberoamericano, se\u00f1al\u00f3 que el Estado debe asegurar que \u201clos jueces no se encuentr[en] sometidos a autoridades judiciales superiores, sin perjuicio de la facultad de \u00e9stas de revisar las decisiones jurisdiccionales a trav\u00e9s de los recursos legalmente establecidos, y de la fuerza que cada ordenamiento 3. ", - "values": [ - "Republic of Chile" - ] - }, - { - "text": "RESOLUCI\u00d3N DE LA PRESIDENTA DE LA CORTE INTERAMERICANA DE DERECHOS HUMANOS DE 18 DE DICIEMBRE DE 2020 CASO INTEGRANTES Y MILITANTES DE LA UNI\u00d3N PATRI\u00d3TICA VS. COLOMBIA CONVOCATORIA A LA AUDIENCIA P\u00daBLICA VISTO: 1. Los escritos de sometimiento del caso presentados por el Estado y por la Comisi\u00f3n Interamericana de Derechos Humanos (en adelante \u201cla Comisi\u00f3n Interamericana\u201d o \u201cla Comisi\u00f3n\u201d), el Informe de Fondo de la Comisi\u00f3n; los escritos de solicitudes, argumentos y pruebas (en adela nte los \u201cescritos de solicitudes y argumentos\u201d) de los intervinientes comunes de las presuntas v\u00edctimas 1 (en adelante tambi\u00e9n \u201c los intervinientes comunes \u201d); el escrito de interposici\u00f3n de excepciones preliminares y contestaci\u00f3n al sometimiento del caso y a 2.", - "values": [ - "Republic of Colombia" - ] - }, - { - "text": "20 de agosto de 2020 REF.: Caso N\u00ba 12.921 Herminio Deras Garc\u00eda y familia Honduras Se\u00f1or Secretario: Tengo el agrado de dirigirme a usted, en nombre de la Comisi\u00f3n Interamericana de Derechos Humanos, con el objeto de someter a la jurisdicci\u00f3n de la Honorable Corte Interamericana de Derechos Humanos, el Caso 12.921 \u2013 Herminio Deras Garc\u00eda y familia, de la Rep\u00fablica de Honduras (en adelante \u201cel Estado\u201d, \u201cel Estado hondure\u00f1o \u201d u \u201c Honduras \u201d) . El caso se refiere a la responsabilidad internacional del Estado por la ejecuci\u00f3n extrajudicial de Herminio Deras Garc\u00eda, maestro, dirigente del Partido Comunista de Honduras y asesor de varios sindicatos de la costa norte de Honduras, as\u00ed como a las amenazas, detenciones ilegales y actos de tortura en", - "values": [ - "Republic of Honduras" - ] - }, - { - "text": "I. INTRODUCTION 1. On November 13, 2003, and June 7, 2004, the Inter-American Commission on Human Rights (hereinafter \u201cthe Inter-American Commission,\u201d \u201cthe Commission,\u201d or \u201cthe IACHR\u201d) received two petitions, filed respectively by Carlos Fern\u00e1ndez Gadea and Bonifacio R\u00edos \u00c1valos (\u201c the petitioners \u201d) alleging that the Republic of Paraguay (\u201cthe Paraguayan State,\u201d \u201cthe State,\u201d or \u201cParaguay\u201d) bears international responsibility for a series of alleged violations committed against them in the context of the impeachment proceedings that led to their removal as justices of the Supreme Court of Paraguay in 2003. 2. The Commission approved Admissibility Reports No. 18/09 1 and 47/09 2 on March 19, 2009, and notified the parties on April 20, 2009, ", - "values": [ - "Republic of Paraguay" - ] - }, - { - "text": "RESOLUCI\u00d3N DE LA PRESIDENTA DE LA CORTE INTERAMERICANA DE DERECHOS HUMANOS DE 17 DE DICIEMBRE DE 2020 CASO LEMOTH MORRIS Y OTROS (BUZOS MISKITOS) VS. HONDURAS VISTO: 1. El escrito de sometimiento del caso y el Informe de Fondo de la Comisi\u00f3n Interamericana de Derechos Humanos (en adelante \u201cla Comisi\u00f3n Interamericana\u201d o \u201cla Comisi\u00f3n\u201d); el escrito de solicitudes, argumentos y pruebas (en adelante el \u201cescrito de solicitudes y argumentos\u201d) de los representantes de las presuntas v\u00edctimas (en adelante \u201clos representantes\u201d ), y el escrito de contestaci\u00f3n al sometimiento del caso y al escrito de solicitudes y argumentos (en adelante \u201cescrito de contestaci\u00f3n\u201d) de la Rep\u00fablica de Honduras (en adelante \u201c Honduras \u201d o \u201cel Estado\u201d). 2. La nota de 3. 4.", - "values": [ - "Republic of Honduras" - ] - }, - { - "text": "REPORT N\u00ba 38/07 1 CASE 12.263 ADMISSIBILITY MARCIA BARBOSA DE SOUZA BRAZIL July 26, 2007 I. SUMMARY 1. On March 28, 2000, the Inter-American Commission on Human Rights (hereinafter \u201cthe Commission\u201d or the \u201cIACHR\u201d) received a petition submitted by the Center for Justice and International Law (CEJIL) and the Movimento Nacional dos Direitos Humanos (MNDH)/Regiona l Office for Northeast Brazil (hereinafter \u201cthe petitioners\u201d), and updated information on October 3, 2006, in which it is alleged that the Federative Republic of Brazil (hereinafter \u201cBrazil\u201d or \u201cthe State\u201d) violated Articles 2, 4, 24, 25, and 1(1) of the A merican Convention on Human Rights (hereinafter \u201cthe American Convention\u201d), and Articles 3, 4, 5, and 7 of the Inter-American 2. ", - "values": [ - "Federative Republic of Brazil" - ] - }, - { - "text": "RESOLUCI\u00d3N DE LA PRESIDENTA DE LA CORTE INTERAMERICANA DE DERECHOS HUMANOS DE 8 DE DICIEMBRE DE 2020 CASO VILLARROEL MERINO Y OTROS VS. ECUADOR VISTO: 1. El escrito de sometimiento del caso y el Informe de Fondo No. 113/18 de la Comisi\u00f3n Interamericana de Derechos Humanos (en adelante \u201cla Comisi\u00f3n Interamericana\u201d o \u201cla Comisi\u00f3n\u201d); el escrito de solicitudes, argumentos y pruebas (en adelante el \u201cescrito de solicitudes y argumentos\u201d) del representante de las presuntas v\u00edctima s 1 (en adelante \u201cel representante\u201d), y el escrito de excepciones preliminares y de contestaci\u00f3n al sometimiento del caso y al escrito de solicitudes y argumentos (en adelante \u201cescrito de contestaci\u00f3n\u201d) de la Rep\u00fablica de Ecuador (en adelante \u201cEcuador\u201d o \u201cel Estado\u201d) 2 ", - "values": [ - "Republic of Ecuador" - ] - }, - { - "text": "5 de agosto de 2020 REF.: Caso N\u00ba 12.971 Ronald Moya Chac\u00f3n y Freddy Parrales Chaves Costa Rica Se\u00f1or Secretario: Tengo el agrado de dirigirme a usted, en nombre de la Comisi\u00f3n Interamericana de Derechos Humanos, con el objeto de someter a la jurisdicci\u00f3n de la Honorable Corte Interamericana de Derechos Humanos, el Caso 12.971 \u2013 Ronald Moya Chac\u00f3n y Freddy Parrales Chaves, de la Rep\u00fablica de Costa Rica (en adelante \u201cel Estado\u201d, \u201cel Estado costarricense \u201d o \u201c Costa Rica \u201d) , relacionado con la imposici\u00f3n de una medida de responsabilidad ulterior en contra del ejercicio leg\u00edtimo del derecho a la libertad de expresi\u00f3n de los periodistas Ronald Moya Chac\u00f3n y Freddy Parrales Chaves. Los periodistas Chac\u00f3n y Parrales publicaron en el diario La ", - "values": [ - "Republic of Costa Rica" - ] - }, - { - "text": "VOTO CONCURRENTE DEL JUEZ EDUARDO VIO GROSSI RESOLUCI\u00d3N DE LA CORTE INTERAMERICANA DE DERECHOS HUMANOS DE 19 DE NOVIEMBRE DE 2020 SOLICITUD DE MEDIDAS PROVISIONALES Y SUPERVISI\u00d3N DE CUMPLIMIENTO DE SENTENCIA CASO MASACRES DE EL MOZOTE Y LUGARES ALEDA\u00d1OS VS. EL SALVADOR Se expide el presente voto concurrente con la Resoluci\u00f3n del ep\u00edgrafe, por las mismas razones esgrimidas en el tambi\u00e9n voto concurrente, de fecha 3 de septiembre de 2020, concerniente a la \u201cResoluci\u00f3n de la Corte Interamericana de Derechos Humanos\u201d, de esa fecha, \u201cSolicitud de Medidas Provisionales y Supervisi\u00f3n de Cumplimiento de Sentencia, Caso Galindo C\u00e1rdenas y Otros VS. Per\u00fa\u201d, argumentos que, por ende, se dan por reproducidos y que dicen relaci\u00f3n, en particular, con la ", - "values": [ - "Republic of El Salvador" - ] - }, - { - "text": "CORTE INTERAMERICANA DE DERECHOS HUMANOS CASO MART\u00cdNEZ ESQUIVIA VS. COLOMBIA SENTENCIA DE 6 DE OCTUBRE DE 2020 ( Excepciones preliminares, Fondo y Reparaciones ) En el caso Mart\u00ednez Esquivia Vs. Colombia, la Corte Interamericana de Derechos Humanos (en adelante \u201cla Corte Interamericana\u201d, \u201cla Corte\u201d o \u201cel Tribunal\u201d), integrada por los siguientes jueces * : Elizabeth Odio Benito, Presidenta; Patricio Pazmi\u00f1o Freire, Vicepresidente; Eduardo Vio Grossi, Juez; Eduardo Ferrer Mac-Gregor Poisot, Juez; Eugenio Ra\u00fal Zaffaroni, Juez, y Ricardo P\u00e9rez Manrique, Juez, presente, adem\u00e1s, Romina I. Sijniensky, Secretaria Adjunta ** , de conformidad con los art\u00edculos 62.3 y 63.1 de la Convenci\u00f3n Americana sobre Derechos Humanos (en adelante \u201cla Convenci\u00f3n ", - "values": [ - "Republic of Colombia" - ] - }, - { - "text": "CORTE INTERAMERICANA DE DERECHOS HUMANOS CASO ALMEIDA VS. ARGENTINA SENTENCIA DE 17 DE NOVIEMBRE DE 2020 ( Fondo, Reparaciones y Costas ) En el caso Almeida Vs. Argentina, la Corte Interamericana de Derechos Humanos (en adelante \u201cla Corte Interamericana\u201d, \u201cla Corte\u201d o \u201cel Tribunal\u201d), integrada por los siguientes jueces * : Elizabeth Odio Benito, Presidenta; Patricio Pazmi\u00f1o Freire, Vicepresidente; Humberto Antonio Sierra Porto, Juez; Eduardo Ferrer Mac-Gregor Poisot, Juez, y Ricardo P\u00e9rez Manrique, Juez; presente, adem\u00e1s, Pablo Saavedra Alessandri, Secretario ** , de conformidad con los art\u00edculos 62.3 y 63.1 de la Convenci\u00f3n Americana sobre Derechos Humanos (en adelante \u201cla Convenci\u00f3n Americana\u201d o \u201cla Convenci\u00f3n\u201d) y con los art\u00edculos 31, *", - "values": [ - "Argentine Republic" - ] - }, - { - "text": "RESOLUCI\u00d3N DE LA PRESIDENTA DE LA CORTE INTERAMERICANA DE DERECHOS HUMANOS DE 15 DE DICIEMBRE DE 2020 CASO V\u00c1SQUEZ DURAND Y OTROS VS. ECUADOR REINTEGRO AL FONDO DE ASISTENCIA LEGAL DE V\u00cdCTIMAS VISTO: 1. La Sentencia de excepciones preliminares, fondo, reparaciones y costas (en adelante \u201cla Sentencia\u201d o \u201cel Fallo\u201d) dictada por la Corte Interamericana de Derechos Humanos (en adelante \u201cla Corte Interamericana\u201d, \u201cla Corte\u201d o \u201cel Tribunal\u201d) el 15 de febrero de 2017 1 . 2. Los informes presentados por el Estado entre mayo de 2018 y marzo de 2020. 3. Las notas de la Secretar\u00eda de la Corte de 10 de mayo de 2018, 3 de junio de 2018, 6 de agosto de 2018, 23 de enero de 2020 y 13 de mayo de 2020. 4. La transferencia bancaria de 28 de octubre de 2020,", - "values": [ - "Republic of Ecuador" - ] - }, - { - "text": "17 de julio de 2020 REF.: Caso N\u00ba 13.080 Brisa Liliana de \u00c1ngulo Lozada Bolivia Se\u00f1or Secretario: Tengo el agrado de dirigirme a usted, en nombre de la Comisi\u00f3n Interamericana de Derechos Humanos, con el objeto de someter a la jurisdicci\u00f3n de la Honorable Corte Interamericana de Derechos Humanos, el Caso No. 13.080 \u2013 Brisa Liliana de \u00c1ngulo Lozada, respecto del Estado Plurinacional de Bolivia (en adelante \u201cel Estado de Bolivia\u201d, \u201cel Estado boliviano\u201d o \u201cBolivia\u201d) , relacionado con la falta de protecci\u00f3n, investigaci\u00f3n y sanci\u00f3n frente a la violencia sexual que sufri\u00f3 Brisa Liliana de \u00c1ngulo Lozada durante su adolescencia. En su Informe de Fondo, la Comisi\u00f3n Interamericana concluy\u00f3 que el Estado no llev\u00f3 a cabo una investigaci\u00f3n seria y ", - "values": [ - "Plurinational State of Bolivia" - ] - }, - { - "text": "29 de junio de 2018 REF.: Caso N\u00ba 11.227 Integrantes y Militantes de la Uni\u00f3n Patri\u00f3tica Colombia Se\u00f1or Secretario: Tengo el agrado de dirigirme a usted, en nombre de la Comisi\u00f3n Interamericana de Derechos Humanos, con el objeto de presentar ante la Honorable Corte Interamericana de Derechos Humanos, el Caso N\u00ba 11.227 \u2013 Integrantes y Militantes de la Uni\u00f3n Patri\u00f3tica respecto de la Rep\u00fablica de Colombia (en adelante \u201cel Estado\u201d, \u201cel Estado colombiano \u201d o \u201c Colombia \u201d), relacionado con las sucesivas y graves violaciones de derechos humanos cometidas en perjuicio de m\u00e1s de 6,000 v\u00edctimas integrantes y militantes del partido pol\u00edtico Uni\u00f3n Patri\u00f3tica en Colombia a partir de 1984 y por m\u00e1s de 20 a\u00f1os. La Comisi\u00f3n calific\u00f3 estos hechos como un ", - "values": [ - "Republic of Colombia" - ] - }, - { - "text": "INTER-AMERICAN COURT OF HUMAN RIGHTS CASE OF URRUTIA LAUBREAUX V. CHILE JUDGMENT OF AUGUST 27, 2020 ( Preliminary objections, merits, reparations and costs ) In the case of Urrutia Laubreaux v. Chile , the Inter- American Court of Human Rights (hereinafter \u201cthe Inter - American Court\u201d or \u201cthe Court\u201d) composed of the following judges: * Elizabeth Odio Benito, President L. Patricio Pazmi\u00f1o Freire, Vice President Humberto Antonio Sierra Porto, Judge Eduardo Ferrer Mac-Gregor Poisot, Judge Eugenio Ra\u00fal Zaffaroni, Judge, and Ricardo P\u00e9rez Manrique, Judge, also present, Romina I. Sijniensky, Deputy Secretary, * pursuant to Articles 62(3) and 63(1) of the American Convention on Human Rights (hereinafter \u201cthe American Convention\u201d or \u201cthe * Judge *", - "values": [ - "Republic of Chile" - ] - }, - { - "text": "12 de agosto de 2020 REF.: Caso N\u00ba 12.949 Comunidad Gar\u00edfuna de San Juan y sus Miembros Honduras Se\u00f1or Secretario: Tengo el agrado de dirigirme a usted, en nombre de la Comisi\u00f3n Interamericana de Derechos Humanos, con el objeto de someter a la jurisdicci\u00f3n de la Honorable Corte Interamericana de Derechos Humanos, el Caso 12.949 \u2013 Comunidad Gar\u00edfuna de San Juan y sus Miembros, de la Rep\u00fablica de Honduras (en adelante \u201cel Estado\u201d, \u201cel Estado hondure\u00f1o \u201d u \u201c Honduras \u201d) . El caso se refiere a la responsabilidad internacional del Estado por la falta de protecci\u00f3n de las tierras ancestrales de las Comunidades Gar\u00edfuna de San Juan y Tornab\u00e9, as\u00ed como las amenazas contra varios de sus l\u00edderes y lideresas. En su Informe de Fondo la Comisi\u00f3n La Por", - "values": [ - "Republic of Honduras" - ] - }, - { - "text": "26 de julio de 2019 REF.: Caso N\u00ba 12.319 Federaci\u00f3n Nacional de Trabajadores Mar\u00edtimos y Portuarios- FEMAPOR Per\u00fa Se\u00f1or Secretario: Tengo el agrado de dirigirme a usted, en nombre de la Comisi\u00f3n Interamericana de Derechos Humanos, con el objeto de someter a la jurisdicci\u00f3n de la Honorable Corte Interamericana de Derechos Humanos, el Caso N\u00ba 12.319 \u2013 Federaci\u00f3n Nacional de Trabajadores Mar\u00edtimos y Portuarios \u2013 FEMAPOR, respecto de la Rep\u00fablica de Per\u00fa (en adelante \u201cel Estado\u201d, \u201cel Estado peruano\u201d o \u201cPer\u00fa\u201d). El presente caso se relaciona con la vulneraci\u00f3n del derecho a la protecci\u00f3n judicial por la falta de cumplimiento de una sentencia de amparo de la Corte Suprema de la Rep\u00fablica del Per\u00fa, emitida el 12 de febrero de 1992, que estableci\u00f3 ", - "values": [ - "Republic of Peru" - ] - }, - { - "text": "RESOLUCI\u00d3N DE LA CORTE INTERAMERICANA DE DERECHOS HUMANOS * DE 19 DE NOVIEMBRE DE 2020 SOLICITUD DE MEDIDAS PROVISIONALES Y SUPERVISI\u00d3N DE CUMPLIMIENTO DE SENTENCIA CASO MASACRES DE EL MOZOTE Y LUGARES ALEDA\u00d1OS VS. EL SALVADOR VISTO: 1. La Sentencia de fondo, reparaciones y costas (en adelante \u201cla Sentencia\u201d) dictada por la Corte Interamericana de Derechos Humanos (en adelante \u201cla Corte Interamericana\u201d, \u201cla Corte\u201d o \u201cel Tribunal\u201d) el 25 de octubre de 2012 1 . El caso se refiri\u00f3 a las violaciones a derechos humanos perpetradas por la Fuerza Armada salvadore\u00f1a en las masacres cometidas del 11 al 13 de diciembre de 1981 en el caser\u00edo de El Mozote y otros lugares aleda\u00f1os, en el Departamento de Moraz\u00e1n, en el marco del conflicto armado interno", - "values": [ - "Republic of El Salvador" - ] - }, - { - "text": "VOTO CONCURRENTE DEL JUEZ EDUARDO VIO GROSSI, RESOLUCI\u00d3N DE LA CORTE INTERAMERICANA DE DERECHOS HUMANOS DE 19 DE NOVIEMBRE DE 2020 CASO ACEVEDO JARAMILLO Y OTROS VS. PER\u00da SOLICITUD DE MEDIDAS PROVISIONALES Y SUPERVISI\u00d3N DE CUMPLIMIENTO DE SENTENCIA Se expide el presente voto concurrente con la Resoluci\u00f3n del ep\u00edgrafe, por las mismas razones esgrimidas en el tambi\u00e9n voto concurrente, de fecha 3 de septiembre de 2020, concerniente a la \u201cResoluci\u00f3n de la Corte Interamericana de Derechos Humanos\u201d, de esa fecha, \u201cSolicitud de Medidas Provisionales y Supervisi\u00f3n de Cumplimiento de Sentencia, Caso Galindo C\u00e1rdenas y Otros VS. Per\u00fa\u201d, argumentos que, por ende, se dan por reproducidos y que dicen relaci\u00f3n, en particular, con la situaci\u00f3n ahora ", - "values": [ - "Republic of Peru" - ] - }, - { - "text": "INFORME N\u00ba 5/97 CASO 11.227 Sobre Admisibilidad COLOMBIA* 12 de marzo de 1997 1. Los peticionarios en esta causa (REINICIAR y la Comisi\u00f3n Colombiana de Juristas), alegan que la Rep\u00fablica de Colombia (el \"Estado\" o el \"Estado colombiano\" o \"Colombia\") es responsable de haber violado derechos consagrados en la Convenci\u00f3n Americana sobre Derechos Humanos (la \"Convenci\u00f3n\" o la \"Convenci\u00f3n Americana\"), en relaci\u00f3n con la persecuci\u00f3n de miembros del partido pol\u00edtico Uni\u00f3n Patri\u00f3tica. La Comisi\u00f3n Interamericana de Derechos Humanos (la \"Comisi\u00f3n\") concluye que el caso es admisible. I. ANTECEDENTES A. Contexto 2. El 28 de mayo de 1985, la Uni\u00f3n Patri\u00f3tica se constituy\u00f3 en partido pol\u00edtico como resultado de las negociaciones de paz entre las Fuerzas", - "values": [ - "Republic of Colombia" - ] - }, - { - "text": "24 de mayo de 2019 REF.: Caso N\u00ba 12.738 Opario Lemoth Morris y Otros (Buzos Miskito) Honduras Se\u00f1or Secretario: Tengo el agrado de dirigirme a usted, en nombre de la Comisi\u00f3n Interamericana de Derechos Humanos, con el objeto de presentar ante la Honorable Corte Interamericana de Derechos Humanos el Caso N\u00ba 12.738 \u2013 Opario Lemoth Morris y Otros (Buzos Miskitos) respecto de la Rep\u00fablica de Honduras (en adelante \u201cel Estado\u201d, \u201cel Estado hondure\u00f1o \u201d u \u201cHonduras\u201d). El presente caso se relaciona con la afectaci\u00f3n de m\u00faltiples derechos en perjuicio de un grupo de personas pertenecientes al pueblo ind\u00edgena Miskito que habitan en el departamento de Gracias a Dios. La Comisi\u00f3n concluy\u00f3 que el Estado vulner\u00f3 el derecho a la integridad personal de 34 ", - "values": [ - "Republic of Honduras" - ] - }, - { - "text": "RESOLUCI\u00d3N DE LA PRESIDENTA DE LA CORTE INTERAMERICANA DE DERECHOS HUMANOS DE 2 DE DICIEMBRE DE 2020 CASO MANUELA * Y OTROS VS. EL SALVADOR VISTO: 1. El escrito de sometimiento del caso y el Informe de Fondo de la Comisi\u00f3n Interamericana de Derechos Humanos (en adelante \u201cla Comisi\u00f3n Interamericana\u201d o \u201cla Comisi\u00f3n\u201d); el escrito de solicitudes, argumentos y pruebas (en adelante el \u201cescrito de solicitudes y argumentos\u201d) de los representantes de las presuntas v\u00edctimas (en adelante \u201clos representantes\u201d ), y el escrito de excepciones preliminares, contestaci\u00f3n al sometimiento del caso y al escrito de solicitudes y argumentos (en adelante \u201cescrito de contestaci\u00f3n\u201d) de la Rep\u00fablica de El Salvador (en adelante \u201c El Salvador \u201d o \u201cel Estado\u201d). 2. La ", - "values": [ - "Republic of El Salvador" - ] - }, - { - "text": "INFORME No. 152/18 CASO 12.405 FONDO VICENTE AN\u00cdBAL GRIJALVA BUENO ECUADOR 7 DE DICIEMBRE DE 2018 I. RESUMEN 1. El 13 de septiembre de 2001 la Comisi\u00f3n Interamericana de Derechos Humanos (en adelante \u201cla Comisi\u00f3n Interamerica na\u201d, \u201cla Comisi\u00f3n\u201d o \u201cla CIDH\u201d) recibi\u00f3 una petici\u00f3n presentada por la Auditor\u00eda Democr\u00e1tica Andina (en adelante \u201cla parte peticionaria\u201d) en la cual se alega la responsabilidad internacional de la Rep\u00fablica del Ecuador (en adelante \u201cel Estado ecuatoriano\u201d, \u201cel Estado\u201d o \u201cEcuador\u201d) en perjuicio de Vicente An\u00edbal Grijalva Bueno. 2. La CIDH aprob\u00f3 el informe de admisibilidad No. 68/02 el 10 de octubre de 2002 1 . El 29 de octubre de 2002 la Comisi\u00f3n notific\u00f3 dicho informe a las partes y se puso a su disposici\u00f3n a fin de ", - "values": [ - "Republic of Ecuador" - ] - }, - { - "text": "REPORT No. 121/09 PETITION 1186-04 ADMISSIBILITY OPARIO LEMOTH MORRIS ET AL. (MISKITU DIVERS) HONDURAS November 12, 2009 I. SUMMARY 1. On November 5, 2004, the Inter-American Commission on Human Rights (hereinafter \u201cthe Inter - American Commission,\u201d \u201cthe Commission,\u201d or \u201cthe IACHR\u201d) received a complaint submitted by the Asociaci\u00f3n de Miskitos Hondure\u00f1os de Buzos Lisiados (AMHBLI: Association of Disabled Honduran Miskitu Divers); the Asociaci\u00f3n de Mujeres Miskitas Miskitu Indian Mairin Asla Takanka (MIMAT: Association of Miskitu Women); and the Almuk Nani Asla Takanka Council of Elders, respectively, represented by Arqu\u00edmedes Garc\u00eda L\u00f3pez, Cendela L\u00f3pez Kilton, and Bans L\u00f3pez Solaisa, all in representation of the Miskitu indigenous people ", - "values": [ - "Republic of Honduras" - ] - }, - { - "text": "REPORT No. 158/19 CASE 12.921 REPORT ON MERITS HERMINIO DERAS GARC\u00cdA AND FAMILY HONDURAS I. INTRODUCTION 1. On February 6, 2002, the Inter-American Commission on Human Rights (hereinafter \u201cthe Inter-American Commission,\u201d \u201cthe Commission,\u201d or \u201cthe IACHR\u201d) received a petition lodged by Eustaquia Garc\u00eda Alvarado (hereinafter \u201cthe petitioner\u201d) 1 alleging that the Republic of Honduras (hereinafter \u201cthe State of Honduras,\u201d \u201cthe State, \u201cor \u201cHonduras\u201d) bore international responsibility for the extrajudicial execution of Herminio Deras Garc\u00eda and for threats, illegal detentions, and acts of torture allegedly committed against member of his family. 2. The Commission adopted Report on Admissibility No. 56/13 on July 16, 2013. 2 On August 1, 2013, the", - "values": [ - "Republic of Honduras" - ] - }, - { - "text": "REPORT No. 57/19 CASE 12.380 REPORT ON MERITS MEMBERS OF JOS\u00c9 ALVEAR RESTREPO LAWYERS' COLLECTIVE (CCAJAR) COLOMBIA May 4, 2019 I. SUMMARY 1. On April 19, 2001, the Inter-American Commission on Human Rights (hereinafter \u201cthe Commission,\u201d \u201cthe IACHR,\u201d or \u201cthe Inter-American Commission\u201d) received a petition lodged by Jos\u00e9 Alv\u00e9ar Restrepo Lawyers\u2019 Collective (Corporaci\u00f3n Colectivo de Abogados \u201cJos\u00e9 Alv\u00e9ar Restrepo\u201d \u2013 CCAJAR) and the Center for Justice and International Law (CEJIL) (hereinafter \u201cthe petitioners\u201d) alleging that the Republic of Colombia (hereinafter \u201cthe State,\u201d \u201cthe Colombian State\u201d, or \u201cColombia\u201d) bore international responsibility for alleged attacks, acts of intimidation and harassment, and threats against members of CCAJAR ", - "values": [ - "Republic of Colombia" - ] - }, - { - "text": "INFORME No. 12/20 CASO 12.949 INFORME DE FONDO COMUNIDAD GAR\u00cdFUNA DE SAN JUAN Y SUS MIEMBROS HONDURAS I. INTRODUCCI\u00d3N 1. El 9 de junio de 2006 la Comisi\u00f3n Interamericana de Derechos Humanos (en adelante la \u201cComisi\u00f3n\u201d, la \u201cComisi\u00f3n Interamericana\u201d o la \u201cCIDH\u201d) recibi\u00f3 una solicitud de medidas cautelares presentada por la Organizaci\u00f3n Fraternal Negra Hondure\u00f1a (en adelante \u201cla parte peticionaria\u201d u \u201cOFRANEH\u201d), en favor de las Comunidades Gar\u00edfuna de San Juan y Tornab\u00e9, en la que se alegaba una situaci\u00f3n de riesgo urgente debido a amenazas contra varios de sus l\u00edderes, as\u00ed como a la falta de protecci\u00f3n de sus tierras ancestrales. La CIDH decidi\u00f3 abrir de oficio la petici\u00f3n de la Comunidad Gar\u00edfuna de San Juan y sus miembros seg\u00fan lo previsto ", - "values": [ - "Republic of Honduras" - ] - }, - { - "text": "REPORT No. 21/14 PETITION 525-07 ADMISSIBILITY BAPTISTE WILLER AND FR\u00c9DO GUIRANT HAITI April 4, 2014 I. SUMMARY 1. On April 20, 2007, the Inter-American Commission on Human Rights (hereinafter, \u201cthe Inter- American Commission\u201d or \u201cthe IACHR\u201d) received a petition filed by Baptiste Willer (hereinafter \u201cthe petitioner\u201d or \u201cMr. Willer\u201d) against the Republic of Haiti (hereinafter, \u201cHaiti\u201d or \u201cthe State\u201d) on his own behalf and on behalf of his brother. 2. The petitioner argues that he was the victim of an attempted homicide; that his brother Fr\u00e9do Guirant, 16 years of age, was assassinated as the result of the persecution against him; and that the facts remain in impunity. The State, for its part, argues that there has not been any direct or 3. ", - "values": [ - "Republic of Haiti" - ] - }, - { - "text": "REPORT No. 70/10 PETITION 11.587 ADMISSIBILITY C\u00c9SAR GUSTAVO GARZ\u00d3N GUZM\u00c1N ECUADOR July 12, 2010 I. SUMMARY 1. On November 8, 1994, the Inter-American Commission on Human Rights (hereinafter \u201cthe Commission\u201d) received a petition lodged by the Ecumenical Co mmission for Human Rights (CEDHU) (hereinafter, \u201cthe petitioners\u201d) alleging the responsibility of the Republic of Ecuador for the disappearance of C\u00e9sar Gustavo Garz\u00f3n Guzm\u00e1n on November 10, 1990, in the city of Quito, Ecuador, and for failing to adequately investigate the facts. 2. The petitioners alleged that the State was responsible for violating the rights to life, to judicial guarantees, and to judicial protection established in Articles 4, 8(1) and 25 of the American Convention on", - "values": [ - "Republic of Ecuador" - ] - }, - { - "text": "3 de octubre de 2019 REF.: Caso N\u00ba 12.702 Bonifacio Rios Avalos y Carlos Fern\u00e1ndez Gadea Paraguay Se\u00f1or Secretario: Tengo el agrado de dirigirme a usted, en nombre de la Comisi\u00f3n Interamericana de Derechos Humanos, con el objeto de someter a la jurisdicci\u00f3n de la Honorable Corte Interamericana de Derechos Humanos, el Caso N\u00ba 12.702 \u2013 Bonifacio R\u00edos Avalos y Carlos Fern\u00e1ndez Gadea respecto de la Rep\u00fablica de Paraguay (en adelante \u201cel Estado\u201d, \u201cel Estado paraguayo\u201d o \u201cParaguay\u201d), relacionado con una serie de violaciones en el marco de los juicios pol\u00edticos que culminaron con las destituciones de las v\u00edctimas de sus cargos de Ministros de la Corte Suprema de Justicia de Paraguay en 2003. La Comisi\u00f3n determin\u00f3 que el Estado viol\u00f3 el derecho a ", - "values": [ - "Republic of Paraguay" - ] - }, - { - "text": "RESOLUCI\u00d3N DE LA PRESIDENTA DE LA CORTE INTERAMERICANA DE DERECHOS HUMANOS DE 18 DE DICIEMBRE DE 2020 CASO CUSCUL PIVARAL Y OTROS VS. GUATEMALA REINTEGRO AL FONDO DE ASISTENCIA LEGAL DE V\u00cdCTIMAS VISTO: 1. La Sentencia de excepci\u00f3n preliminar, fondo, reparaciones y costas (en adelante \u201cla Sentencia\u201d o \u201cel Fallo\u201d) dictada por la Corte Interamericana de Derechos Humanos (en adelante \u201cla Corte Interamericana\u201d, \u201cla Corte\u201d o \u201cel Tribunal\u201d) el 23 de agosto de 2018 1 . 2. La Sentencia de interpretaci\u00f3n emitida por la Corte el 14 de mayo de 2019 2 . 3. Las notas de la Secretar\u00eda de la Corte Interamericana de 3 de mayo y 2 de diciembre de 2019, y 13 de febrero de 2020, mediante las cuales se record\u00f3 a la Rep\u00fablica de Guatemala (en adelante \u201cel 4. El", - "values": [ - "Republic of Guatemala" - ] - }, - { - "text": "8 de julio de 2020 REF.: Caso N\u00ba 12.380 Miembros de la Corporaci\u00f3n Colectivo de Abogados \"Jos\u00e9 Alve ar Restrepo\u201d Colombia Se\u00f1or Secretario: Tengo el agrado de dirigirme a usted, en nombre de la Comisi\u00f3n Interamericana de Derechos Humanos, con el objeto de someter a la jurisdicci\u00f3n de la Honorable Corte Interamericana de Derechos Humanos, el Caso No. 12.380 \u2013 Miembros de la Corporaci\u00f3n Colectivo de Abogados \"Jos\u00e9 Alve ar Restrepo\u201d - CAJAR respecto de la Rep\u00fablica de Colombia (en adelante \u201cel Estado\u201d, \u201cel Estado colombiano \u201d o \u201c Colombia \u201d). El presente caso se relaciona con hechos de violencia, intimidaci\u00f3n, hostigamiento y amenazas en contra de los miembros del CAJAR desde la d\u00e9cada de 1990 y hasta la actualidad, vinculados a sus En su ", - "values": [ - "Republic of Colombia" - ] - }, - { - "text": "INFORME No. 12/19 CASO 12.903 FONDO PROFESORES DE CHA\u00d1ARAL Y OTRAS MUNICIPALIDADES CHILE 1 12 DE FEBRERO DE 2019 I. INTRODUCCI\u00d3N 1. El 23 de noviembre de 2005, la Comisi\u00f3n Interamericana de Derechos Humanos (en adelante \u201cla Comisi\u00f3n Interamericana\u201d, \u201cla Comisi\u00f3n\u201d o \u201cla CIDH\u201d) recibi\u00f3 una petici\u00f3n presentada por parte de dos estudios jur\u00eddicos, Etcheberry/Rodr\u00edguez y Colombara Olmedo (en adelante \u201cla parte petici onaria\u201d) 2 ; en comunicaciones de febrero de 2007 y diciembre de 2008, la parte peticionaria ampli\u00f3 su denuncia. En dichas comunicaciones, la parte peticionaria alega la responsabilidad internacional de la Rep\u00fablica de Chile (en adelante \u201cel Estado chileno \u201d, \u201cel Estado\u201d o \u201c Chile \u201d) en perjuicio de 80 profesores de la 2. La II. A.", - "values": [ - "Republic of Chile" - ] - }, - { - "text": "REPORT No. 63/18 CASE 12.593 ADMISSIBILITY AND MERITS VICTOR HENRY MINA CUERO ECUADOR May 8, 2018 I. SUMMARY 1. On March 11, 2002, the Inter-American Commission on Human Rights (hereinafter the \u201cInter - American Commission,\" \"Commission,\" or \"IACHR\") received a petition filed by V\u00edctor Henry Mina Cuero (hereinafter \u201cthe petitioner\"), 1 alleging the international responsibility of the Republic of Ecuador (hereinafter \u201cthe State of Ecuador,\" \u201cthe State,\u201d or \u201cEcuador\u201d) to his detriment. 2. The petitioner alleged a series of due process violations committed by the Disciplinary Tribunal which dismissed him from the police following a confrontation with several policemen who responded to a complaint of an alleged assault against his former 3. 4.", - "values": [ - "Republic of Ecuador" - ] - }, - { - "text": "INFORME No. 66/18 CASO 12.319 FONDO FEMAPOR PER\u00da 1 9 DE MAYO DE 2018 I. RESUMEN 1. El 10 de noviembre de 1998 la Comisi\u00f3n Interamericana de Derechos Humanos (en adelante \u201cla Comisi\u00f3n Interamericana\u201d, \u201cla Comisi\u00f3n\u201d o \u201cla CIDH\u201d) recibi\u00f3 una petici\u00f3n presentada por la Federaci\u00f3n Nacional de Trabajadores Mar\u00edtimos y Portuarios del Per\u00fa (en adelante \u201cla FEMAPOR\u201d) en nombre de 4,106 ex-trabajadores mar\u00edtimos y portuarios del Per\u00fa y sus familiares. 2. La parte peticionaria aleg\u00f3 la responsabilidad internacional de la Rep\u00fablica del Per\u00fa (en adelante \u201cel Estado peruano\u201d, \u201cel Estado\u201d o \u201cPer\u00fa\u201d) por la falta de cumplimiento de una sentencia de amparo de la Corte Suprema de la Rep\u00fablica, emitida el 12 de febrero de 1992, que estableci\u00f3 que la manera 3.", - "values": [ - "Republic of Peru" - ] - }, - { - "text": "CORTE INTERAMERICANA DE DERECHOS HUMANOS CASO COMUNIDADES IND\u00cdGENAS MIEMBROS DE LA ASOCIACI\u00d3N LHAKA HONHAT (NUESTRA TIERRA) VS. ARGENTINA SENTENCIA DE 24 DE NOVIEMBRE DE 2020 (Interpretaci\u00f3n de la Sentencia de Fondo, Reparaciones y Costas) En el caso Comunidades ind\u00edgenas miembros de la Asociaci\u00f3n Lhaka Honhat (Nuestra Tierra) Vs. Argentina, la Corte Interamericana de Derechos Humanos (en adelante \u201cla Corte Interamericana\u201d, \u201cla Corte\u201d o \u201ce l Tribunal\u201d), integrada por los siguientes Jueces \uf02a : Elizabeth Odio Benito, Presidenta L. Patricio Pazmi\u00f1o Freire, Vicepresidente; Eduardo Vio Grossi, Juez; Humberto Antonio Sierra Porto, Juez; Eduardo Ferrer Mac-Gregor Poisot, Juez, y Ricardo P\u00e9rez Manrique, Juez; presente, adem\u00e1s, Pablo Saavedra de I ", - "values": [ - "Argentine Republic" - ] - }, - { - "text": "6 de septiembre de 2019 REF.: Caso N\u00ba 13.039 Martina Rebeca Vera Rojas Chile Se\u00f1or Secretario: Tengo el agrado de dirigirme a usted, en nombre de la Comisi\u00f3n Interamericana de Derechos Humanos, con el objeto de someter a la jurisdicci\u00f3n de la Honorable Corte Interamericana de Derechos Humanos el Caso N\u00ba 13.039 \u2013 Martina Rebeca Vera Rojas respecto de la Rep\u00fablica de Chile (en adelante \u201cel Estado\u201d, \u201cel Estado chileno \u201d o \u201c Chile \u201d). La Comisi\u00f3n encontr\u00f3 que el Estado permiti\u00f3, y judicialmente valid\u00f3, la decisi\u00f3n de la aseguradora de salud (Isapre M\u00e1sVida) de finalizar unilateral y arbitrariamente el r\u00e9gimen de \u201chospitalizaci\u00f3n domiciliaria\u201d que la ni\u00f1a Martina Vera, diagnosticada con el s\u00edndrome de Leigh, requer\u00eda de modo esencial para su ", - "values": [ - "Republic of Chile" - ] - }, - { - "text": "VOTO CONCURRENTE DEL JUEZ EUGENIO RA\u00daL ZAFFARONI EN LA SENTENCIA DE 27 DE AGOSTO DE 2020 DE LA CORTE INTERAMERICANA DE DERECHOS HUMANOS CASO URRUTIA LAUBREAUX VS. CHILE 1. La sanci\u00f3n que se impuso al magistrado en este caso es reveladora del sentido corporativo que los jueces de cuerpos colegiados pretendieron asignar al Poder Judicial del que eran parte. Est\u00e1 dicho y no controvertido que, en el escrito remitido por la v\u00edctima, \u00e9sta criticaba el comportamiento del m\u00e1ximo tribunal en un per\u00edodo de dictadura altamente violatoria de Derechos Humanos. 2. La norma que autoriza la sanci\u00f3n impuesta en esa ocasi\u00f3n no tutela un orden inherente a la funci\u00f3n judicial, como ser\u00eda la prohibici\u00f3n de que los jueces formulen manifestaciones p\u00fablicas 3. En", - "values": [ - "Republic of Chile" - ] - }, - { - "text": "VOTO RAZONADO DEL JUEZ EDUARDO FERRER MAC-GREGOR POISOT CASO MART\u00cdNEZ ESQUIVIA VS. COLOMBIA SENTENCIA DE 6 DE OCTUBRE DE 2020 (Excepciones preliminares, Fondo y Reparaciones) INTRODUCCI\u00d3N 1. El caso Mart\u00ednez Esquivia Vs. Colombia (en adelante \u201cla Sentencia\u201d) constituye un aporte fundamental en la jurisprudencia interamericana en relaci\u00f3n con la independencia de funcionarias y funcionarios que se encargan de la impartici\u00f3n de justicia. En efecto, es la primera vez que la Corte Interamericana de Derechos Humanos (en adelante \u201cCorte IDH \u201d o \u201cTribunal Interamericano \u201d) se pronuncia expresamente sobre los est\u00e1ndares relativos a la independencia judicial aplicables tambi\u00e9n a las y los fiscales, teniendo en cuenta la naturaleza de las funciones ", - "values": [ - "Republic of Colombia" - ] - }, - { - "text": "11 de agosto de 2020 REF.: Caso N\u00ba 12.624 Carlos Baraona Bray Chile Se\u00f1or Secretario: Tengo el agrado de dirigirme a usted, en nombre de la Comisi\u00f3n Interamericana de Derechos Humanos, con el objeto de someter a la jurisdicci\u00f3n de la Honorable Corte Interamericana de Derechos Humanos, el Caso 12.624 \u2013 Carlos Baraona Bray, de la Rep\u00fablica de Chile (en adelante \u201cel Estado\u201d, \u201cel Estado chileno \u201d o \u201c Chile \u201d) . El caso se refiere a la responsabilidad internacional del Estado por la violaci\u00f3n del derecho a la libertad de expresi\u00f3n por la imposici\u00f3n de responsabilidades ulteriores y la improcedencia del uso del derecho penal en asuntos de inter\u00e9s p\u00fablico. En su Informe de Fondo, la Comisi\u00f3n dio por probado que en mayo de 2004 Carlos Baraona La ", - "values": [ - "Republic of Chile" - ] - }, - { - "text": "REPORT No. 6/15 PETITION 518-03 REPORT ON ADMISSIBILITY JORGE VILLARROEL AND OTHERS ECUADOR JANUARY 29, 2015 I. SUMMARY 1. On July 15, 2003, the Inter-American Commission on Human Rights (hereinafter \u201c the Commission \u201d or \u201c the IACHR \u201d ) received a petition 1 on behalf of several officers of the National Police of Ecuador \u2014 Jorge Villarroel Merino, Mario Rommel Cevallos Moreno, Jorge Coloma Gaybor, Fernando L\u00f3pez Ortiz, Am\u00edlcar Ascazubi Alb\u00e1n, and Patricio Vinuesa P\u00e1nchez \u2014 (hereinafter \u201c the alleged victims \u201d ), alleging the responsibility of the Republic of Ecuador (hereinafter \u201c the State \u201d or \u201c Ecuador \u201d ) for the alleged violation of the rights enshrined in Articles 1.1 (obligation to respect rights), 7 (personal liberty), 8 (right to", - "values": [ - "Republic of Ecuador" - ] - }, - { - "text": "VOTO CONCURRENTE DEL JUEZ RICARDO C. P\u00c9REZ MANRIQUE CASO CASA NINA VS. PER\u00da SENTENCIA DE 24 DE NOVIEMBRE DE 2020 (Excepciones Preliminares, Fondo, Reparaciones y Costas) I. Introducci\u00f3n 1. En la sentencia se declara, entre otras, la violaci\u00f3n de los art\u00edculos 8.1, 23.1 c) y 26 de la Convenci\u00f3n Americana sobre Derechos Humanos (en adelante la \u201cConvenci\u00f3n\u201d) por la violaci\u00f3n de las garant\u00edas judiciales, el derecho de permanecer en el cargo en condiciones de igualdad y el derecho al trabajo. El caso se relaciona con una serie de violaciones ocurridas en el marco del procedimiento que culmin\u00f3 con la separaci\u00f3n del se\u00f1or Julio Casa Nina del cargo de Fiscal Adjunto Provisional de la Segunda Fiscal\u00eda Penal de la Provincia de Huamanga, Ayacucho, 2.", - "values": [ - "Republic of Peru" - ] - }, - { - "text": "INFORME No. 64/19 CASO 13.267 INFORME DE ADMISIBILIDAD Y FONDO CARLOS BENITES CABRERA Y OTROS (TRABAJADORES CESADOS DEL CONGRESO DE LA REP\u00daBLICA) PER\u00da 4 de mayo de 2019 I. INTRODUCCI\u00d3N 1 1. El 19 de diciembre de 2000 la Comisi\u00f3n Interamericana de Derechos Humanos (en adelante \u201cla Comisi\u00f3n Interamericana\u201d, \u201cla Comisi\u00f3n\u201d o \u201cla CIDH\u201d) recibi\u00f3 una petici\u00f3n presentada por Javier Mujica Petit (en adelante \u201cla parte pe ticionaria\u201d) en la cual se aleg\u00f3 la responsabilidad internacional de la Rep\u00fablica del Per\u00fa (en adelante \u201cel Estado peruano \u201d, \u201cel Estado\u201d o \u201c el Per\u00fa \u201d) en perjuicio de un grupo de trabajadores cesados del Congreso de la Rep\u00fablica por la alegada vulneraci\u00f3n de sus derechos a la protecci\u00f3n y garant\u00edas judiciales. Asimismo, el 9 de ", - "values": [ - "Republic of Peru" - ] - }, - { - "text": "INFORME No. 44/16 PETICI\u00d3N 1558-11 INFORME DE ADMISIBILIDAD MARTINA REBECA VERA ROJAS Y FAMILIA CHILE 11 DE NOVIEMBRE DE 2016 I. RESUMEN 1. El 4 de noviembre de 2011 la Comisi\u00f3n Interamericana de Derechos Humanos (en adelante, \u201cla Comisi\u00f3n Interamericana\u201d , \u201cla Comisi\u00f3n\u201d o \u201cla CIDH\u201d) recibi\u00f3 una petici\u00f3n presentada por Karina Fern\u00e1ndez y Boris Paredes (en adelante, \u201c los peticionarios \u201d) contra la Rep\u00fablica de Chile (en adelante, \u201c Chile \u201d o \u201cel Estado\u201d) , en representaci\u00f3n de la ni\u00f1a Martina Rebeca Vera Rojas, de cinco a\u00f1os de edad, (en adelante \u201cla presunta v\u00edctima\u201d o \u201cMartina\u201d) y de sus padres Carolina Rojas y Ramiro Vera. En la petici\u00f3n se alega la responsabilidad internacional del Estado por falta de protecci\u00f3n judicial efectiva 2. 3.", - "values": [ - "Republic of Chile" - ] - }, - { - "text": "25 de julio de 2019 REF.: Caso No. 12.405 Vicente An\u00edbal Grijalva Bueno Ecuador Se\u00f1or Secretario: Tengo el agrado de dirigirme a usted, en nombre de la Comisi\u00f3n Interamericana de Derechos Humanos, con el objeto de someter a la jurisdicci\u00f3n de la Honorable Corte Interamericana de Derechos Humanos, el Caso No. 12.405 \u2013 Vicente An\u00edbal Grijalva Bueno respecto de la Rep\u00fablica del Ecuador (en adelante \u201cel Estado\u201d, \u201cel Estado ecuatoriano \u201d o \u201cEcuador\u201d). El presente caso se relaciona con la destituci\u00f3n arbitraria de Vicente An\u00edbal Grijalva Bueno como Capit\u00e1n de Puerto de la Fuerza Naval ecuatoriana en 1993, as\u00ed como la falta de garant\u00edas judiciales en el proceso sancionatorio de destituci\u00f3n y el proceso penal militar por \u201cdelitos contra la fe ", - "values": [ - "Republic of Ecuador" - ] - }, - { - "text": "REPORT No. 107/18 CASE 13.039 MERITS MARTINA REBECA VERA ROJAS CHILE 1 DATE I. SUMMARY 1. On November 4, 2011, the Inter-American Commission on Human Rights (hereinafter \"the Inter-American Commission,\" \"the Commission,\" or \"the IACHR\") received a petition lodged by Karinna Fern\u00e1ndez Neira, Boris Paredes Bustos, Carolina Andrea del Pilar Rojas Far\u00edas, and Ramiro \u00c1lvaro Vera Luza (hereinafter \"the petitioners\") 2 alleging the international responsibility of the Republic of Chile (hereinafter \"the Chilean State,\" \"the State,\" or \"Chile\") to the detriment of Martina Rebeca Vera Rojas; her mother, Carolina Andrea del Pilar Rojas Far\u00eda; and her father, Ramiro \u00c1lvaro Vera Luza. 2. On November 4, 2016, the Commission adopted Report on 3. The 4. ", - "values": [ - "Republic of Chile" - ] - }, - { - "text": "RESOLUCI\u00d3N DE LA CORTE INTERAMERICANA DE DERECHOS HUMANOS * DE 18 DE NOVIEMBRE DE 2020 CASO COLINDRES SCHONENBERG VS. EL SALVADOR SUPERVISI\u00d3N DE CUMPLIMIENTO DE SENTENCIA VISTO: 1. La Sentencia de fondo, reparaciones y costas (en adelante \u201cla Sentencia\u201d) dictada por la Corte Interamericana de Derechos Humanos (en adelante \u201cla Corte Interamericana\u201d, \u201cla Corte\u201d o \u201cel Tribunal\u201d) el 4 de febrero de 2019 1 . La Corte declar\u00f3 la responsabilidad internacional de la Rep\u00fablica de El Salvador (en adelante \u201cel Estado\u201d o \u201cEl Salvador\u201d ) por la violaci\u00f3n de los derechos a las garant\u00edas judiciales, a la protecci\u00f3n judicial, del derecho a permanecer en el cargo en condiciones de igualdad, de las obligaciones de respetar y garantizar derechos y de la * El", - "values": [ - "Republic of El Salvador" - ] - }, - { - "text": "RESOLUCI\u00d3N DE LA CORTE INTERAMERICANA DE DERECHOS HUMANOS* DE 18 DE NOVIEMBRE DE 2020 MEDIDAS PROVISIONALES RESPECTO DE M\u00c9XICO** 1 ASUNTO CASTRO RODR\u00cdGUEZ VISTO: 1. Las resoluciones dictadas por la Corte Interamericana de Derechos Humanos (en adelante \u201cla Corte Interamericana\u201d, \u201cla Corte\u201d o \u201cel Tribunal\u201d) el 13 de febrero y 23 de agosto de 2013, 23 de junio de 2015 y 14 de noviembre de 2017 mediante las cuales orden\u00f3 a los Estados Unidos Mexicanos (en adelante \u201cel Estado\u201d, \u201cel Estado mexicano\u201d o \u201cM\u00e9xico\u201d) la adopci\u00f3n de medidas provisionales para proteger los derechos a la vida y a la integridad personal de Luz Estela Castro Rodr\u00edguez (en adelante \u201cla beneficiaria\u201d o \u201cla se\u00f1ora Castro Rodr\u00edguez\u201d) , y se supervis\u00f3 su implementaci\u00f3n. En la ", - "values": [ - "United Mexican States" - ] - }, - { - "text": "RESOLUCI\u00d3N DE LA PRESIDENTA DE LA CORTE INTERAMERICANA DE DERECHOS HUMANOS DE 15 DE DICIEMBRE DE 2020 CASO ROSADIO VILLAVICENCIO VS. PER\u00da REINTEGRO AL FONDO DE ASISTENCIA LEGAL DE V\u00cdCTIMAS VISTO: 1. La Sentencia de excepciones preliminares, fondo, reparaciones y costas (en adelante \u201cla Sentencia\u201d o \u201cel Fallo\u201d) dictada por la Corte Interamericana de Derechos Humanos (en adelante \u201cla Corte Interamericana\u201d, \u201cla Corte\u201d o \u201cel Tribunal\u201d) el 14 de octubre de 2019 1 . 2. La Sentencia de interpretaci\u00f3n emitida por la Corte el 8 de octubre de 2020 2 . 3. La nota de la Secretar\u00eda de la Corte Interamericana de 13 de octubre de 2020, mediante la cual se record\u00f3 a l a Rep\u00fablica del Per\u00fa (en adelante \u201cel Estado\u201d o \u201c el Per\u00fa\u201d) que se encontraba vencido el", - "values": [ - "Republic of Peru" - ] - }, - { - "text": "REPORT No. 37/14 PETITION 674-06 ADMISSIBILITY GARIFUNA COMMUNITY OF SAN JUAN AND ITS MEMBERS HONDURAS JUNE 5, 2014 I. SUMMARY 1. On June 9, 2006, the Inter-American Commission on Human Rights (hereinafter the \u201cCommission,\u201d the \u201cInter -American Commission\u201d or the \u201cIACHR\u201d) received a request for precautionary measures lodged by the Organizaci\u00f3n Fraternal Negra Hondure\u00f1a or Honduran Black Fraternal Organization, known by the Spanish acronym OFRANEH 1 (hereinafter, \u201cthe petitioner\u201d or \u201cOFRANEH\u201d), on behalf of the Garifuna Communities of San Juan and Tornab\u00e9, alleging an emergency situation of risk stemming from threats leveled against several leaders of said community, as well as a lack of protection of their ancestral lands. The IACHR 2. 3. ", - "values": [ - "Republic of Honduras" - ] - }, - { - "text": "CORTE INTERAMERICANA DE DERECHOS HUMANOS CASO ROSADIO VILLAVICENCIO VS. PER\u00da SENTENCIA DE 8 DE OCTUBRE DE 2020 (Interpretaci\u00f3n de la Sentencia de Excepciones Preliminares, Fondo, Reparaciones y Costas) En el caso Rosadio Villavicencio Vs. Per\u00fa, la Corte Interamericana de Derechos Humanos (en adelante \u201cla Corte Interamericana\u201d, \u201cla Corte\u201d o \u201cel Tribunal\u201d), integrada por los siguientes Jueces \uf02a : L. Patricio Pazmi\u00f1o Freire, Vicepresidente; Eduardo Vio Grossi, Vicepresidente; Humberto Antonio Sierra Porto, Juez; Eduardo Ferrer Mac-Gregor Poisot, Juez; Eugenio Ra\u00fal Zaffaroni, Juez, y Ricardo P\u00e9rez Manrique, Juez; presentes, adem\u00e1s, Pablo Saavedra Alessandri, Secretario, y Romina I. Sijniensky, Secretaria Adjunta, de conformidad con el art\u00edculo", - "values": [ - "Republic of Peru" - ] - }, - { - "text": "11 de julio de 2019 REF.: Caso N\u00ba 12.263 Marcia Barbosa de Souza y sus familiares Brasil Se\u00f1or Secretario: Tengo el agrado de dirigirme a usted, en nombre de la Comisi\u00f3n Interamericana de Derechos Humanos, con el objeto de someter a la jurisdicci\u00f3n de la Honorable Corte Interamericana de Derechos Humanos, el Caso N\u00ba 12.263 \u2013 Marcia Barbosa de Souza y sus familiares, respecto de la Rep\u00fablica Federativa de Brasil (en adelante \u201cel Estado\u201d, \u201cel Estado brasilero \u201d o \u201c Brasil \u201d). El caso se relaciona con la muerte de M\u00e1rcia Barbosa de Souza en junio de 1998 de manos de un ex diputado estatal, el Sr. A\u00e9rcio Pereira de Lima, as\u00ed como con la responsabilidad internacional del Estado brasilero por la situaci\u00f3n de impunidad en que se encuentra el De ", - "values": [ - "Federative Republic of Brazil" - ] - }, - { - "text": "REPORT No. 19/15 PETITION 320-03 AND OTHERS JUDGES NOT RENEWED BY THE CNM ADMISSIBILITY PERU MARCH 24, 2015 I. SUMMARY 1. The present report refers to five petitions submitted between 2003 and 2008 by judges and prosecutors (hereinafter also referred to as \u201cthe alleged victims\u201d) who had been dismissed from their jobs by the National Judicial Council of Peru (Consejo Nacional de la Magistratura \u2014 CNM) (hereinafter referred to as \u201cCNM\u201d) in the framework of the process of evaluating and renewing judges and prosecutors as established by the Constitution. 2. In general, the alleged victims allege that CNM\u2019s resolutions that led to non-renewal of their employment, were not substantiated. It was indicated that, at the time they were terminated, ", - "values": [ - "Republic of Peru" - ] - }, - { - "text": "REPORT No. 148/11 PETITION 12.268 ADMISSIBILITY GONZALO ORLANDO CORTEZ ESPINOZA ECUADOR November 1 st , 2011 I. SUMMARY 1. The Inter- American Commission on Human Rights (hereinafter \u201cthe Commission\u201d) received a petition on March 29, 2000, presented by the Human Rights Clinic of the School of Law of the Pontificia Universidad Cat\u00f3lica del Ecuador (hereinafter \u201c the petitioners \u201d) , alleging the responsibility of the Republic of Ecuador (hereinafter \u201cthe State\u201d or \u201cEcuador\u201d) for the illegal detention and other violations of the right to personal liberty, violation of the right to humane treatment, and violation of the right to private property, as well as the failure to uphold the right to a fair trial in the criminal proceeding brought 2. ", - "values": [ - "Republic of Ecuador" - ] - }, - { - "text": "REPORT No. 169/19 CASE 12.889 REPORT ON MERITS DIANA MAIDANIK ET AL. URUGUAY November 9, 2019 I. INTRODUCTION 1. On August 15, 2007, the Inter-American Commission on Human Rights (hereinafter \"the Commission,\" \"the Inter-American Commission,\" or \"the IACHR\") received a petition lodged by the Instituto de Estudios Legales y Sociales del Uruguay (IELSUR), alleging the international responsibility of the Eastern Republic of Uruguay (hereinafter \"the State,\", \"the Uruguayan State,\" or \"Uruguay\") for the alleged forced disappearance of Luis Eduardo Gonz\u00e1lez Gonz\u00e1lez and Oscar Tassino Asteazu, as well as the alleged extrajudicial executions of Diana Maidanik 1 , Laura Raggio Odizzio, and Silvia Reyes (hereinafter \"the alleged victims\") and for ", - "values": [ - "Eastern Republic of Uruguay" - ] - }, - { - "text": "REPORT No. 14/19 CASE 12.302 REPORT ON MERITS CASIERRA BROTHERS AND FAMILY ECUADOR February12, 2019 I. INTRODUCTION 1. On June 27, 2000, the Inter- American Commission on Human Rights (hereinafter \u201cthe Inter - American Commission,\u201d \u201cthe Commission,\u201d or \u201cthe IACHR\u201d ) received a petition lodged by Alejandro Ponce Villac\u00eds (hereinafter \u201cthe petitioner\u201d) alleging that the Republic of Ecuador (hereinafter \u201cthe State of Ecuador,\u201d \u201cthe State,\u201d or \u201cEcuador\u201d) bore international responsibility for the killing of Luis Eduardo Casierra Qui\u00f1onez and the injuries caused to Alejandro Casierra Qui\u00f1onez by State agents, as well as the impunity for what occurred. 2. The Commission adopted Report on Admissibility No. 16/09 on March 19, 2009. 1 On April 1, 3.", - "values": [ - "Republic of Ecuador" - ] - }, - { - "text": "REPORT No. 90/12 PETITION 1056-07 ADMISSIBILITY DIANA MAIDANIC ET AL. URUGUAY November 8, 2012 I. SUMMARY 1. On August 15, 2007, the Inter-American Commission on Human Rights (hereinafter \u201cthe Commission\u201d or \u201cthe IACHR\u201d) received a petition filed by the Instituto de Estudios Legales y Sociales del Uruguay (IELSUR) (hereinafter the \u201cpetitioner\u201d) alleging the responsibility of the Oriental Republic of Uruguay (hereinafter \u201c Uruguay \u201d o r the \u201c State \u201d) for the failure to investigate and to provide an effective judicial response to the forced disappearances of Luis Eduardo Gonz\u00e1lez Gonz\u00e1lez on December 13, 1974 and of Oscar Tassino Asteazu on July 19, 1977, as well as the extrajudicial executions of Diana Maidanic, Laura Raggio Odizzio, and ", - "values": [ - "Eastern Republic of Uruguay" - ] - }, - { - "text": "REPORT No. 141/19 CASE 13.080 REPORT ON MERITS BRISA LILIANA DE ANGULO LOZADA BOLIVIA September 28, 2019 I. INTRODUCTION 1. On January 20, 2012, the Inter-American Commission on Human Rights (hereinafter \"the Inter-American Commission,\" \"the Commission,\" or \"the IACHR\") received a petition presented by the Child and Family Advocacy Clinic of Rutgers University, the International Human Rights Law Clinic of American University, the Oficina Jur\u00eddica para la Mujer, and Maria Leonor Oviedo Bellott (hereinafter \"the petitioner\") 1 alleging that the Plurinational State of Bolivia (hereinafter \"the Bolivian State,\" \"the State,\" or \"Bolivia\") was internationally responsible to the detriment of Brisa Liliana De Angulo Losada (hereinafter \"the 2. The", - "values": [ - "Plurinational State of Bolivia" - ] - }, - { - "text": "INFORME No. 115/18 CASO 12.827 FONDO H\u00c9CTOR FIDEL CORDERO BERNAL PER\u00da 5 DE OCTUBRE DE 2018 I. RESUMEN 1. El 11 de noviembre de 1998 la Comisi\u00f3n Interamericana de Derechos Humanos (en adelante \u201cla Comisi\u00f3n Interamericana\u201d, \u201cla Comisi\u00f3n\u201d o \u201cla CIDH\u201d) recibi\u00f3 una petici\u00f3n presentada por H\u00e9ctor Fidel Cordero Bernal (en adelante \u201cla parte peticionaria\u201d) en la cual alega la responsabilidad internacional de la Rep\u00fablica del Per\u00fa (en adelante \u201cel Estado peruano\u201d, \u201cel Estado\u201d o \u201cPer\u00fa\u201d) en su perjuicio. 2. La Comisi\u00f3n aprob\u00f3 el Informe de Admisibilidad No. 112/11 el 22 de julio de 2011. El 9 de agosto de 2011 la Comisi\u00f3n notific\u00f3 dicho informe a las partes y se puso a su disposici\u00f3n a fin de llegar a una soluci\u00f3n amistosa sin que ambas partes 3. La ", - "values": [ - "Republic of Peru" - ] - }, - { - "text": "RESOLUCI\u00d3N DE LA CORTE INTERAMERICANA DE DERECHOS HUMANOS \uf02a DE 19 DE NOVIEMBRE DE 2020 CASO MUJERES V\u00cdCTIMAS DE TORTURA SEXUAL EN ATENCO VS. M\u00c9XICO SUPERVISI\u00d3N DE CUMPLIMIENTO DE SENTENCIA VISTO: 1. La Sentencia de excepci\u00f3n preliminar, fondo, reparaciones y costas dictada por la Corte Interamericana de Derechos Humanos (en adelante \u201cla Corte\u201d, \u201cla Corte Interamericana\u201d o \u201cel Tribunal\u201d) el 28 de noviembre de 2018 1 . La Corte, tomando en cuenta el reconocimiento parcial de responsabilidad internacional efectuado por los Estados Unidos Mexicanos (en adelante \u201cel Estado\u201d o \u201cM\u00e9xico\u201d), declar\u00f3 su responsabilidad por las violaciones de los derechos a la integridad personal y a la vida privada, en perjuicio de once mujeres 2 contra quienes * El ", - "values": [ - "United Mexican States" - ] - }, - { - "text": "24 de mayo de 2020 REF.: Caso N\u00ba 12.889 Diana Maidanik y otros Uruguay Se\u00f1or Secretario: Tengo el agrado de dirigirme a usted, en nombre de la Comisi\u00f3n Interamericana de Derechos Humanos, con el objeto de someter a la jurisdicci\u00f3n de la Honorable Corte Interamericana de Derechos Humanos, el caso No. 12.889 \u2013 Diana Maidanik y otros, de la Rep\u00fablica Oriental del Uruguay (en adelante \u201cel Estado\u201d, \u201cel Estado uruguayo \u201d o \u201c Uruguay \u201d) relacionado con la responsabilidad internacional del Estado por las ejecuciones extrajudiciales de Diana Maidanik, Silvia Reyes y Laura Raggio Odizzio, las desapariciones forzadas de Luis Eduardo Gonz\u00e1lez Gonz\u00e1lez y Oscar Tassino Asteazu, as\u00ed como la falta de una adecuada investigaci\u00f3n. Los hechos del presente En ", - "values": [ - "Eastern Republic of Uruguay" - ] - }, - { - "text": "13 de septiembre de 2019 REF.: Caso 12.985 Jorge Villarroel y otros Ecuador Se\u00f1or Secretario: Tengo el agrado de dirigirme a usted, en nombre de la Comisi\u00f3n Interamericana de Derechos Humanos, con el objeto de someter a la jurisdicci\u00f3n de la Honorable Corte Interamericana de Derechos Humanos, el Caso 12.985 \u2013 Jorge Villarroel y otros respecto de la Rep\u00fablica del Ecuador (en adelante \u201cel Estado\u201d, \u201cel Estado ecuatoriano \u201d o \u201cEcuador\u201d), relacionado con la detenci\u00f3n ilegal y arbitraria de los entonces oficiales de la Polic\u00eda Nacional: Jorge Villarroel Merino, Mario Rommel Cevallos Moreno, Jorge Coloma Gaybor, Fernando L\u00f3pez Ortiz, Am\u00edlcar Ascazubi Alb\u00e1n y Patricio Vinuesa P\u00e1nchez en mayo de 2003, as\u00ed como de las vulneraciones a las garant\u00edas ", - "values": [ - "Republic of Ecuador" - ] - }, - { - "text": "19 de junio de 2020 REF.: Caso N\u00ba 12.302 Hermanos Casierra y familia Ecuador Se\u00f1or Secretario: Tengo el agrado de dirigirme a usted, en nombre de la Comisi\u00f3n Interamericana de Derechos Humanos, con el objeto de someter a la jurisdicci\u00f3n de la Honorable Corte Interamericana de Derechos Humanos, el Caso 12.302 \u2013 Hermanos Casierra y familia, de la Rep\u00fablica de Ecuador (en adelante \u201cel Estado\u201d, \u201cel Estado ecuatoriano \u201d o \u201c Ecuador \u201d) relacionado con la muerte de Luis Eduardo Casierra Qui\u00f1onez y las lesiones de Andr\u00e9s Alejandro Casierra Qui\u00f1onez por parte de agentes de la Armada Nacional en diciembre de 1999, y la situaci\u00f3n de impunidad de lo sucedido. En su Informe de Fondo la Comisi\u00f3n consider\u00f3 que no existe controversia respecto de que Luis ", - "values": [ - "Republic of Ecuador" - ] - }, - { - "text": "RELAT\u00d3RIO N\u00ba 10/19 CASO 12.263 RELAT\u00d3RIO DE M\u00c9RITO M\u00c1RCIA BARBOSA DE SOUZA E FAMILIARES BRASIL 12 DE FEVEREIRO DE 2019 I. INTRODU\u00c7\u00c3O 1. Em 28 de mar\u00e7o de 2000, a Comiss\u00e3o Interamericana de Direitos Humanos (doravante \u201c Comiss\u00e3o \u201d , \u201c Comiss\u00e3o Interamericana\u201d ou \u201cCIDH\u201d) recebeu uma peti\u00e7\u00e3o apresentada pelo Centro pela Justi\u00e7a e o Direito Internacional (CEJIL) e o Movimento Nacional de Direitos Humanos (MNDH) / Regional Nordeste (doravante \u201c parte peticion\u00e1ria \u201d) na qual se alega a responsabilidade internacional da Rep\u00fablica Federativa do Brasil (doravante \u201cEstado brasilei ro\u201d, \u201cBrasil\u201d ou \u201cEstado\u201d ) pelo assassinato de M\u00e1rcia Barbosa de Souza por um ex-deputado estadual em junho de 1998, bem como pela situa\u00e7\u00e3o de impunidade subsequente. 2. ", - "values": [ - "Federative Republic of Brazil" - ] - }, - { - "text": "INFORME No. 11/20 CASO 13.082 INFORME DE FONDO COMUNIDAD IND\u00cdGENA MAYA Q\u2019EQCHI\u2019 AGUA CALIENTE GUATEMALA 3 de marzo de 2020 I. INTRODUCCI\u00d3N 1. El 19 de agosto de 2011 la Comisi\u00f3n Interamericana de Derechos Humanos (en adelante \u201cla Comisi\u00f3n Interamericana\u201d, \u201cla Comisi\u00f3n\u201d o \u201cla CIDH\u201d) recibi\u00f3 una petici\u00f3n presentada por Indian Law Resource Center , la Comunidad Maya Q\u2019eqchi\u2019 Agua Caliente y Rodrigo Tot (en adelante \u201cla parte peticionaria\u201d) en la cual se alega la responsabilidad internacional de la Rep\u00fablica de Guatemala (en adelante \u201cel Estado guatemalteco \u201d, \u201cel Estado\u201d o \u201c Guatemala \u201d) en perjuicio de la Comunidad Maya Q\u2019eqchi\u2019 por la falta de legislaci\u00f3n interna para garantizar su derecho a la propiedad colectiva, el otorgamiento y 2. La ", - "values": [ - "Republic of Guatemala" - ] - }, - { - "text": "RESOLUCI\u00d3N DE LA CORTE INTERAMERICANA DE DERECHOS HUMANOS * 18 DE NOVIEMBRE DE 2020 CASO DEL CARACAZO VS. VENEZUELA SUPERVISI\u00d3N DE CUMPLIMIENTO DE SENTENCIA VISTO: 1. Las Sentencias de fondo (en adelante \u201cla Sentencia\u201d) y de reparaciones y costas (en adelante \u201cla Sentencia de reparaciones\u201d), dictadas por la Corte Interamericana de Derechos Humanos (en adelante \u201cla Corte Interamericana\u201d, \u201cla Corte\u201d o \u201cel Tribunal\u201d), respectivamente, los d\u00edas 11 de noviembre de 1999 y 29 de agosto de 2002 1 . En este caso la Rep\u00fablica Bolivariana de Venezuela (en adelante \u201cel Estado\u201d o \u201cVenezuela\u201d) efectu\u00f3 un reconocimiento de responsabilidad internacional por la muerte, desaparici\u00f3n y violaci\u00f3n a la integridad personal de las 44 v\u00edctimas de este caso, * 1 2", - "values": [ - "Bolivarian Republic of Venezuela" - ] - }, - { - "text": "RESOLUCI\u00d3N DE LA CORTE INTERAMERICANA DE DERECHOS HUMANOS \uf02a DE 18 DE NOVIEMBRE DE 2020 CASO PUEBLOS IND\u00cdGENAS KUNA DE MADUNGAND\u00cd Y EMBER\u00c1 DE BAYANO Y SUS MIEMBROS VS. PANAM\u00c1 SUPERVISI\u00d3N DE CUMPLIMIENTO DE SENTENCIA VISTOS: 1. La Sentencia de excepciones preliminares, fondo, reparaciones y costas (en adelante \u201cla Sentencia\u201d) dictada por la Corte Interamericana de Derechos Humanos (en adelante \u201cla Corte\u201d, \u201cla Corte Interamericana\u201d o \u201c el Tribunal\u201d) el 14 de octubre de 2014 1 , mediante la cual declar\u00f3 responsable internacionalmente a la Rep\u00fablica de Panam\u00e1 (en adelante \u201cel Estado\u201d o \u201cPanam\u00e1\u201d) por la violaci\u00f3n al derecho a la propiedad colectiva debido a la falta de delimitaci\u00f3n, demarcaci\u00f3n y titulaci\u00f3n de las tierras correspondientes a los ", - "values": [ - "Republic of Panama" - ] - }, - { - "text": "REPORT No. 13/19 CASE 12.268 REPORT ON MERITS GONZALO CORTEZ ESPINOZA ECUADOR February 12, 2019 I. INTRODUCTION 1. On March 29, 2000, the Inter-American Commission on Human Rights (hereinafter \"the Commission\", \"Inter-American Commission\", or \"the IACHR\") received a petition lodged by the Human Rights Clinic of the Faculty of Jurisprudence of the Catholic University of Ecuador (hereinafter \"the petitioner\"), alleging the responsibility of the Republic of Ecuador (hereinafter \"the Ecuadorian State\" or \"Ecuador\") for harm done to Gonzalo Cortez Espinoza by the two detentions served on him in 1997 and 2000, alleged acts of torture, and violations of due process. 2. The Commission approved admissibility report No. 148/11 on November 1, 2011. 1", - "values": [ - "Republic of Ecuador" - ] - }, - { - "text": "VOTO DISIDENTE DEL JUEZ EDUARDO VIO GROSSI, CORTE INTERAMERICANA DE DERECHOS HUMANOS, CASO CASA NINA VS. PER\u00da, SENTENCIA DE 24 DE NOVIEMBRE DE 2020, ( Excepciones preliminares, Fondo, Reparaciones y Costas ). I. INTRODUCCI\u00d3N. 1. Se expide el presente voto parcialmente disidente 1 con relaci\u00f3n a la Sentencia del r\u00f3tulo 2 , a los efectos de dar cuenta de las razones por las que se discrepa de lo dispuesto en su Resolutivo N\u00b0 2 3 , en el que, sobre la base de lo prescrito en el art\u00edculo 26 de la Convenci\u00f3n Americana sobre Derechos Humanos 4 , se desestima la excepci\u00f3n preliminar relativa a la falta de competencia de la Corte Interamericana de Derechos Humanos 5 para conocer sobre violaciones concernientes al derecho al trabajo. 2. Ahora bien,", - "values": [ - "Republic of Peru" - ] - }, - { - "text": "INFORME No. 113/18 CASO 12.985 JORGE VILLARROEL Y OTROS FONDO ECUADOR 5 DE OCTUBRE DE 2018 I. RESUMEN 1. El 15 de julio de 2003 la Comisi\u00f3n Interamericana de Derechos Humanos (en adelante \u201cla Comisi\u00f3n Interamericana\u201d, \u201cla Comisi\u00f3n\u201d o \u201cla CIDH\u201d) recibi\u00f3 una petici\u00f3n presentada por la se\u00f1ora Mar\u00eda Paula Romo, (en adelante \u201cla parte peticionaria\u201d) 1 , en la cual se alega la responsabilidad internacional de la Rep\u00fablica del Ecuador (en adelante \u201cel Estado ecuatoriano\u201d, \u201cel Estado\u201d o \u201cEcuador\u201d) en perjuicio de Jorge Villarroel Merino, Mario Rommel Cevallos Moreno, Jorge Coloma Gaybor, Fernando L\u00f3pez Ortiz, Am\u00edlcar Ascazubi Alb\u00e1n y Patricio Vinuesa P\u00e1nchez. 2. La Comisi\u00f3n aprob\u00f3 el informe de admisibilidad No. 6/15 el 29 de enero de 2015 2 . El ", - "values": [ - "Republic of Ecuador" - ] - }, - { - "text": "INFORME No. 52/19 CASO 12.624 FONDO CARLOS BARAONA BRAY CHILE 1 4 de mayo de 2019 I. INTRODUCCI\u00d3N 1. El 4 de marzo de 2005 la Comisi\u00f3n Interamericana de Derechos Humanos (en adelante \u201cla Comisi\u00f3n Interamericana\u201d, \u201cla Comisi\u00f3n\u201d o \u201cla CIDH\u201d) recibi\u00f3 una petici\u00f3n presentada por la Cl\u00ednica de Inter\u00e9s P\u00fablico y Derechos Humanos de la Universidad Diego Portales en nombre del se\u00f1or Carlos Baraona Bray (en adelante \u201cla parte peticionaria\u201d) en la cual se alega la responsabilidad internacional de la Rep\u00fablica de Chile (en adelante \u201c el Estado de Chile\u201d, \u201cel Estado\u201d, \u201cEl Estado chileno\u201d o \u201cChile\u201d) en perjuicio de Carlos Baraona Bray por la violaci\u00f3n de sus derechos, entre ellos el derecho a la libertad de expresi\u00f3n, como consecuencia del proceso 2. ", - "values": [ - "Republic of Chile" - ] - }, - { - "text": "17 de julio de 2020 REF.: Caso N\u00ba 13.267 Carlos Benites Cabrera y otros Per\u00fa Se\u00f1or Secretario: Tengo el agrado de dirigirme a usted, en nombre de la Comisi\u00f3n Interamericana de Derechos Humanos, con el objeto de someter a la jurisdicci\u00f3n de la Honorable Corte Interamericana de Derechos Humanos, el Caso No. 13.267 \u2013 Carlos Benites Cabrera y otros, respecto de la Rep\u00fablica de Per\u00fa (en adelante \u201cel Estado\u201d, \u201cel Estado peruano\u201d o \u201cPer\u00fa\u201d), relacionado con la responsabilidad internacional del Estado en perjuicio de 192 1 trabajadores cesados del Congreso de la Rep\u00fablica en 1992, por la vulneraci\u00f3n de sus derechos a la protecci\u00f3n y garant\u00edas judiciales. En su Informe de Admisibilidad y Fondo la Comisi\u00f3n Interamericana determin\u00f3 que las 192 La 1 2", - "values": [ - "Republic of Peru" - ] - } -] \ No newline at end of file diff --git a/src/extractors/text_to_multi_option_extractor/labeled_data/cejil_countries/options.json b/src/extractors/text_to_multi_option_extractor/labeled_data/cejil_countries/options.json deleted file mode 100644 index 03726d2..0000000 --- a/src/extractors/text_to_multi_option_extractor/labeled_data/cejil_countries/options.json +++ /dev/null @@ -1,198 +0,0 @@ -[ - "Islamic Republic of Afghanistan", - "Republic of Albania", - "People's Democratic Republic of Algeria", - "Principality of Andorra", - "Republic of Angola", - "Antigua and Barbuda", - "Argentine Republic", - "Republic of Armenia", - "Commonwealth of Australia", - "Republic of Austria", - "Republic of Azerbaijan", - "Commonwealth of The Bahamas", - "Kingdom of Bahrain", - "People's Republic of Bangladesh", - "Barbados", - "Republic of Belarus", - "Kingdom of Belgium", - "Belize", - "Republic of Benin", - "Kingdom of Bhutan", - "Plurinational State of Bolivia", - "Bosnia and Herzegovina", - "Republic of Botswana", - "Federative Republic of Brazil", - "Nation of Brunei, Abode of Peace", - "Republic of Bulgaria", - "Burkina Faso", - "Republic of Burundi", - "Republic of Cabo Verde", - "Kingdom of Cambodia", - "Republic of Cameroon", - "Canada", - "Central African Republic", - "Republic of Chad", - "Republic of Chile", - "People's Republic of China", - "Republic of Colombia", - "Union of the Comoros", - "Democratic Republic of the Congo", - "Republic of Costa Rica", - "Republic of Croatia", - "Republic of Cuba", - "Republic of Cyprus", - "Czech Republic", - "Democratic Republic of the Congo", - "Kingdom of Denmark", - "Republic of Djibouti", - "Commonwealth of Dominica", - "Dominican Republic", - "Democratic Republic of Timor-Leste", - "Republic of Ecuador", - "Arab Republic of Egypt", - "Republic of El Salvador", - "Republic of Equatorial Guinea", - "State of Eritrea", - "Republic of Estonia", - "Kingdom of Eswatini", - "Federal Democratic Republic of Ethiopia", - "Republic of Fiji", - "Republic of Finland", - "French Republic", - "Gabonese Republic", - "Republic of The Gambia", - "Georgia", - "Federal Republic of Germany", - "Republic of Ghana", - "Hellenic Republic (Greece)", - "Grenada", - "Republic of Guatemala", - "Republic of Guinea", - "Republic of Guinea-Bissau", - "Co-operative Republic of Guyana", - "Republic of Haiti", - "Republic of Honduras", - "Hungary", - "Republic of Iceland", - "Republic of India", - "Republic of Indonesia", - "Islamic Republic of Iran", - "Republic of Iraq", - "Ireland", - "State of Israel", - "Italian Republic", - "Republic of Côte d'Ivoire", - "Jamaica", - "Japan", - "Hashemite Kingdom of Jordan", - "Republic of Kazakhstan", - "Republic of Kenya", - "Republic of Kiribati", - "State of Kuwait", - "Kyrgyz Republic", - "Lao People's Democratic Republic", - "Republic of Latvia", - "Lebanese Republic", - "Kingdom of Lesotho", - "Republic of Liberia", - "State of Libya", - "Principality of Liechtenstein", - "Republic of Lithuania", - "Grand Duchy of Luxembourg", - "Republic of Madagascar", - "Republic of Malawi", - "Malaysia", - "Republic of Maldives", - "Republic of Mali", - "Republic of Malta", - "Republic of the Marshall Islands", - "Islamic Republic of Mauritania", - "Republic of Mauritius", - "United Mexican States", - "Federated States of Micronesia", - "Republic of Moldova", - "Principality of Monaco", - "Mongolia", - "Montenegro", - "Kingdom of Morocco", - "Republic of Mozambique", - "Republic of the Union of Myanmar", - "Republic of Namibia", - "Republic of Nauru", - "Federal Democratic Republic of Nepal", - "Kingdom of the Netherlands", - "New Zealand", - "Republic of Nicaragua", - "Republic of Niger", - "Federal Republic of Nigeria", - "Democratic People's Republic of Korea", - "Republic of North Macedonia", - "Kingdom of Norway", - "Sultanate of Oman", - "Islamic Republic of Pakistan", - "Republic of Palau", - "State of Palestine", - "Republic of Panama", - "Independent State of Papua New Guinea", - "Republic of Paraguay", - "Republic of Peru", - "Republic of the Philippines", - "Republic of Poland", - "Portuguese Republic", - "State of Qatar", - "Romania", - "Russian Federation", - "Republic of Rwanda", - "Federation of Saint Kitts and Nevis", - "Saint Lucia", - "Saint Vincent and the Grenadines", - "Independent State of Samoa", - "Republic of San Marino", - "Democratic Republic of São Tomé and Príncipe", - "Kingdom of Saudi Arabia", - "Republic of Senegal", - "Republic of Serbia", - "Republic of Seychelles", - "Republic of Sierra Leone", - "Republic of Singapore", - "Slovak Republic", - "Republic of Slovenia", - "Solomon Islands", - "Federal Republic of Somalia", - "Republic of South Africa", - "Republic of Korea (South Korea)", - "Republic of South Sudan", - "Kingdom of Spain", - "Democratic Socialist Republic of Sri Lanka", - "Republic of the Sudan", - "Republic of Suriname", - "Kingdom of Sweden", - "Swiss Confederation", - "Syrian Arab Republic", - "Taiwan (Republic of China)", - "Republic of Tajikistan", - "United Republic of Tanzania", - "Kingdom of Thailand", - "Togolese Republic", - "Kingdom of Tonga", - "Republic of Trinidad and Tobago", - "Republic of Tunisia", - "Republic of Turkey", - "Turkmenistan", - "Tuvalu", - "Republic of Uganda", - "Ukraine", - "United Arab Emirates", - "United Kingdom of Great Britain and Northern Ireland", - "United States of America", - "Eastern Republic of Uruguay", - "Republic of Uzbekistan", - "Republic of Vanuatu", - "Vatican City State", - "Bolivarian Republic of Venezuela", - "Socialist Republic of Vietnam", - "Republic of Yemen", - "Republic of Zambia", - "Republic of Zimbabwe" -] \ No newline at end of file diff --git a/src/extractors/text_to_multi_option_extractor/labeled_data/cejil_descriptors/labels.json b/src/extractors/text_to_multi_option_extractor/labeled_data/cejil_descriptors/labels.json deleted file mode 100644 index 94380f1..0000000 --- a/src/extractors/text_to_multi_option_extractor/labeled_data/cejil_descriptors/labels.json +++ /dev/null @@ -1,2660 +0,0 @@ -[ - { - "text": "Los hechos del presente caso dan cuenta de la desaparici\u00f3n forzada de Isidro Caballero Delgado y Mar\u00eda del Carmen Santana, quienes fueron detenidos por una patrulla del Ej\u00e9rcito de Colombia y por varios civiles que colaboraban con ellos, en el Municipio de San Alberto, departamento del Cesar, en febrero de 1989. La detenci\u00f3n se produjo por la activa participaci\u00f3n de Isidro Caballero Delgado como dirigente sindical del magisterio y la pertenencia de ambos al Movimiento 19 de Abril. Los familiares de las v\u00edctimas y diferentes organismos sindicales y de derechos humanos iniciaron su b\u00fasqueda en diversas instalaciones militares, sin resultados, toda vez que las autoridades negaron que los dos activistas hubieran sido aprehendidos. \n\n Los hechos del caso ilustran el patr\u00f3n de impunidad en relaci\u00f3n con las graves violaciones de derechos humanos cometidas en Colombia, toda vez que ante la ocurrencia de los hechos, los familiares de las v\u00edctimas entablaron acciones judiciales y administrativas para ubicar el paradero de los desaparecidos y sancionar a los responsables directos, sin que los procesos hayan arrojado resultados positivos.", - "values": [ - "Desaparici\u00f3n forzada" - ] - }, - { - "text": "Los hechos del caso se refieren al homicidio de S\u00e9timo Garibaldi y el incumplimiento de la obligaci\u00f3n de investigar y sancionar a los responsables. La muerte de la v\u00edctima se produjo el 27 de noviembre de 1998 durante una operaci\u00f3n extrajudicial de desalojo de las familias de trabajadores sin tierra que ocupaban una hacienda localizada en el Municipio de Querencia del Norte, Estado de Paran\u00e1. \n\n La Corte IDH desarroll\u00f3 est\u00e1ndares acerca de la debida diligencia en la investigaci\u00f3n de muertes violentas y la vulneraci\u00f3n a la garant\u00eda del plazo razonable. Del mismo modo, la Corte IDH hizo referencia a la denominada \u201ccl\u00e1usula federal\u201d, se\u00f1alando que un Estado no puede alegar su estructura federal para dejar de cumplir una obligaci\u00f3n internacional.", - "values": [ - "Ejecuci\u00f3n extrajudicial" - ] - }, - { - "text": "Los hechos del caso se refieren al periodista Eduardo Kimel y la publicaci\u00f3n de su libro \u201cLa masacre de San Patricio\u201d, en el que expuso el resultado de su investigaci\u00f3n sobre el asesinato de 5 religiosos. El libro critic\u00f3 la actuaci\u00f3n de las autoridades encargadas de la investigaci\u00f3n de los homicidios, entre ellas un juez, quien m\u00e1s tarde promovi\u00f3 una querella criminal en contra Kimel, que concluy\u00f3 con su condena por el delito de calumnia.\n\nLa CorteIDH evidencia el conflicto entre el derecho a la libertad de expresi\u00f3n en temas de inter\u00e9s p\u00fablico y la protecci\u00f3n de la honra de los funcionarios p\u00fablicos, estableciendo que la prevalencia de alguno en determinado caso depender\u00e1 de la ponderaci\u00f3n que se haga a trav\u00e9s de un juicio de proporcionalidad. En el caso, la Corte IDH consider\u00f3 que la opini\u00f3n del Sr. Kimel no ten\u00eda relaci\u00f3n con la vida personal del juez querellante, sino un juicio de valor cr\u00edtico sobre el desempe\u00f1o del poder judicial, que no puede ser objeto de sanci\u00f3n, m\u00e1s a\u00fan cuando se refiere a actos oficiales de un funcionario p\u00fablico en el desempe\u00f1o de su cargo.", - "values": [ - "Libertad de expresi\u00f3n" - ] - }, - { - "text": "Los hechos que fundamentan la solicitud de protecci\u00f3n de la vida y la integridad personal de todos los testigos del caso Masacre Mapirip\u00e1n, as\u00ed como de los familiares de los mismos; se refieren a los hostigamientos, amenazas y seguimientos sufridos en raz\u00f3n de sus declaraciones juradas escritas y su comparecencia en las audiencia p\u00fablicas convocadas por la Corte IDH en el marco del tramite del caso sobre la Masacre de Mapiripan.", - "values": [ - "Amenazas y hostigamientos", - "Testigo" - ] - }, - { - "text": "Los hechos del caso se refieren a la detenci\u00f3n ilegal y arbitraria, torturas y ejecuci\u00f3n extrajudicial de Consuelo Benavides Cevallos -ocurrida en diciembre de 1985-, por parte de miembros de la Infanter\u00eda Naval ecuatoriana en el marco de una investigaci\u00f3n por presuntas actividades subversivas ligadas al grupo guerrillero \u201cAlfaro Vive Carajo\u201d. Los procesos penales abiertos como consecuencia de estos hechos se caracterizaron por demoras injustificadas, ineficiencia y denegaci\u00f3n de justicia. \n\n El Estado realiz\u00f3 ante la Corte IDH un reconocimiento de responsabilidad internacional por los hechos referidos.", - "values": [ - "Privaci\u00f3n de libertad", - "Ejecuci\u00f3n extrajudicial", - "Tortura y tratos crueles, inhumanos o degradantes" - ] - }, - { - "text": "El caso se refiere a la detenci\u00f3n y el proceso penal por fraude militar -basado en una serie de irregularidades contables y administrativas- llevado adelante contra 20 oficiales militares argentinos. Los procesos judiciales se iniciaron en octubre de 1980 ante la jurisdicci\u00f3n militar y se sustanciaron de acuerdo con el C\u00f3digo de Justicia Militar de Argentina.\n\nLa Corte IDH analiz\u00f3 dimensiones del derecho a la libertad personal y los elementos que se deben observar para que no se constituya una detenci\u00f3n arbitraria e ilegal. Adem\u00e1s, analiz\u00f3 el alcance del r\u00e9gimen de prisi\u00f3n preventiva y el derecho a las garant\u00edas judiciales bajo el funcionamiento y competencia de la jurisdicci\u00f3n militar.", - "values": [ - "Privaci\u00f3n de libertad", - "Jurisdicci\u00f3n militar", - "Prisi\u00f3n preventiva" - ] - }, - { - "text": "Los hechos que fundamentan la solicitud de protecci\u00f3n se relacionan con amenazas y hostigamientos contra personas que han hecho uso del sistema interamericano de protecci\u00f3n de los derechos humanos; tambi\u00e9n refieren al asesinato de Miguel Angel Pav\u00f3n y del Sargento Jos\u00e9 Isa\u00edas Vilorio testigos en los casos de la desaparici\u00f3n forzada de los se\u00f1ores Vel\u00e1squez Rodr\u00edguez, Fair\u00e9n Garbi, Sol\u00eds Corrales, y God\u00ednez Cruz cuyos casos se encontraban denunciados ante el sistema interamericano. \n\nEl otorgamiento de las medidas buscaba proteger la vida e integridad f\u00edsica de las personas que hab\u00edan rendido su declaraci\u00f3n y aquellos que ser\u00edan llamados a ese efecto. \n", - "values": [ - "Defensores/as de derechos humanos", - "Amenazas y hostigamientos", - "Testigo" - ] - }, - { - "text": "Los hechos del caso se refieren al incumplimiento de sentencias judiciales emitidas entre los a\u00f1os 1996 a 2000 y que ordenaban el reintegro de trabajadores municipales despedidos por distintas causales. \n\n La Corte IDH estableci\u00f3 la responsabilidad del Estado por la violaci\u00f3n al derecho a la protecci\u00f3n judicial en perjuicio de los trabajadores debido a la oposici\u00f3n del municipio en ejecutar las sentencias. En este sentido, entendi\u00f3 que la ejecuci\u00f3n de las sentencias debe ser consideraba como parte integrante del derecho de acceso a un recurso efectivo y debe abarcar el pleno cumplimiento de la decisi\u00f3n respectiva.", - "values": [ - "Derechos laborales" - ] - }, - { - "text": "Los hechos del caso se refieren a la detenci\u00f3n arbitraria de Mar\u00eda Teresa De La Cruz Flores, y su condena por el delito de terrorismo sin un debido proceso. La v\u00edctima fue detenida cuando finalizaba su labor como m\u00e9dica pediatra y fue procesada bajo cargos de terrorismo por un tribunal compuesto por jueces \u201csin rostro\u201d, el que la conden\u00f3 por el delito de terrorismo a la pena de 20 a\u00f1os de prisi\u00f3n. Todo lo anterior en un contexto de grave alteraci\u00f3n al orden p\u00fablico en Per\u00fa. \n\n La Corte analiz\u00f3 la compatibilidad de la condena con el principio de legalidad y no retroactividad de la ley penal y estableci\u00f3 est\u00e1ndares respecto del deber de los m\u00e9dicos de guardar confidencialidad sobre la informaci\u00f3n a la que se tenga acceso por el ejercicio profesional.", - "values": [ - "Ley antiterrorista", - "Secreto m\u00e9dico" - ] - }, - { - "text": "Los hechos del caso se refieren a la detenci\u00f3n arbitraria, tortura y tratos crueles, inhumanos y degradantes cometidos por miembros de la Polic\u00eda Nacional y un particular (ex agente del Ej\u00e9rcito Nacional) contra Wilson Guti\u00e9rrez Soler a los efectos de obtener la confesi\u00f3n de un il\u00edcito del cual fue declarado inocente. \n\n La Corte IDH reconoci\u00f3 el allanamiento efectuado por el Estado y sus efectos jur\u00eddicos en relaci\u00f3n a la reparaci\u00f3n de las v\u00edctimas del caso, y estableci\u00f3 que el Estado era responsable por el incumplimiento de la obligaci\u00f3n de prevenir y sancionar la tortura contenida en la Convenci\u00f3n Interamericana para Prevenir y Sancionar la Tortura, toda vez que los hechos quedaron impunes a nivel interno.", - "values": [ - "Tortura y tratos crueles, inhumanos o degradantes", - "Privaci\u00f3n de libertad" - ] - }, - { - "text": "Los hechos del caso se refieren a la muerte de Blanca Jeanette Kawas Fern\u00e1ndez, defensora de derechos humanos con importante trayectoria en temas de medio ambiente, producida por un disparo de arma de fuego -el 6 de febrero de 1995- mientras se encontraba en su casa. Kawas era presidenta de la fundaci\u00f3n PROLANSATE y su liderazgo fue determinante para la afectaci\u00f3n como Parque Nacional de la zona de Punta Sal en el departamento de Atl\u00e1ntida, y en la denuncia p\u00fablica sobre la explotaci\u00f3n ilegal de madera. El asesinato de Kawas permaneci\u00f3 impune por m\u00e1s de 14 a\u00f1os.\n\nLa Corte IDH desarroll\u00f3 est\u00e1ndares acerca de la debida diligencia en la investigaci\u00f3n de muertes violentas y sobre el derecho de asociaci\u00f3n en relaci\u00f3n con personas que trabajan en la promoci\u00f3n y defensa de los derechos humanos.", - "values": [ - "Defensores/as de derechos humanos", - "Medio ambiente", - "Libertad de asociaci\u00f3n" - ] - }, - { - "text": "Los hechos del caso se refieren a la violaci\u00f3n de los derechos pol\u00edticos de Jorge Casta\u00f1eda Gutman, en virtud de una ley de car\u00e1cter electoral que impon\u00eda como requisito para ser candidato a Presidente, el ser postulado por un partido pol\u00edtico.\n\nLa Corte IDH elabor\u00f3 est\u00e1ndares acerca de la protecci\u00f3n judicial en relaci\u00f3n a la accesibilidad y efectividad de los recursos y analiz\u00f3 el alcance y contenido de los derechos pol\u00edticos y acerca de las condiciones y los criterios para su regulaci\u00f3n.", - "values": [ - "Derechos pol\u00edticos" - ] - }, - { - "text": "Los hechos se relacionan con la protecci\u00f3n de Hinostroza Ram\u00edrez, su familia y su abogado quienes fueron amenazados como consecuencia de la declaraci\u00f3n testimonial que Ram\u00edrez Hinostroza hiciera en el proceso judicial contra quien fuera Jefe del Comando Pol\u00edtico Militar de Huancayo en los a\u00f1os 90.", - "values": [ - "Amenazas y hostigamientos", - "Testigo" - ] - }, - { - "text": "Los hechos del caso se refieren a la alegada detenci\u00f3n ilegal y tortura de Alfonso Mart\u00edn del Campo Dodd por la Polic\u00eda Judicial del Distrito Federal de M\u00e9xico, y su condena a 50 a\u00f1os de prisi\u00f3n por doble homicidio con base en una confesi\u00f3n obtenida bajo tortura.\n\nLa Corte IDH hizo lugar a la excepci\u00f3n de incompetencia por \"ratione temporis\" planteada por el Estado. Para ello, se refiri\u00f3 el deber estatal de investigar, procesar y sancionar a los responsables de los hechos denunciados, pero entendi\u00f3 que los actos de tortura no eran continuados, sino de ejecuci\u00f3n instant\u00e1nea, por lo que no ten\u00eda competencia para conocer el caso, una vez que los hechos eran efectivamente anteriores al reconocimiento de la competencia jurisdiccional de la Corte IDH.", - "values": [ - "Privaci\u00f3n de libertad", - "Tortura y tratos crueles, inhumanos o degradantes" - ] - }, - { - "text": "Los hechos que fundamentan la solicitud de protecci\u00f3n se relacionan con el atentado contra la vida e integridad f\u00edsica de Gregoria Flores Mart\u00ednez, Coordinadora General de la Organizaci\u00f3n Fraternal Negra Hondure\u00f1a (OFRANEH) y con el riesgo que corren peritos y testigos convocados por la CorteIDH citados a comparecer en audiencia p\u00fablica en el caso L\u00f3pez \u00c1lvarez. ", - "values": [ - "Amenazas y hostigamientos", - "Testigo", - "Defensores/as de derechos humanos" - ] - }, - { - "text": "Los hechos del caso se refieren a la detenci\u00f3n de Mar\u00eda Elena Loayza Tamayo por la Divisi\u00f3n Nacional contra el Terrorismo (DINCOTE) debido a una supuesta vinculaci\u00f3n como colaboradora del grupo \u201cSendero Luminoso\u201d. Tras su detenci\u00f3n permaneci\u00f3 10 d\u00edas incomunicada y fue objeto de torturas, tratos crueles y degradantes y violencia sexual, todo con la finalidad de que se autoinculpara. Ante su negativa, fue procesada por el delito de traici\u00f3n a la patria y juzgada por distintas instancias militares que finalmente la absolvieron de todos los cargos. Sin embargo, al momento de pasar el caso al fuero com\u00fan, la v\u00edctima result\u00f3 condenada a 20 a\u00f1os de pena privativa de libertad por un Tribunal Especial \u201csin rostro\u201d y por el delito de terrorismo.\u00a0Durante todo el tr\u00e1mite tanto en el fuero militar como en el fuero ordinario, la v\u00edctima permaneci\u00f3 privada de libertad. \n\n La Corte IDH hizo presente en este caso que el art\u00edculo del Decreto Ley N\u00b0 25.659 por el cual fue procesada, impidi\u00f3 a la v\u00edctima utilizar el habeas corpus para salvaguardar su libertad personal o cuestionar la legalidad de su detenci\u00f3n.", - "values": [ - "Privaci\u00f3n de libertad", - "Violencia de g\u00e9nero", - "Jurisdicci\u00f3n militar", - "Tortura y tratos crueles, inhumanos o degradantes", - "Ley antiterrorista" - ] - }, - { - "text": "Los hechos del caso se refieren a la privaci\u00f3n ilegal de la libertad de Luis Alberto Cantoral Benavides, seguida de su encarcelamiento arbitrario, tortura, violaci\u00f3n a sus garant\u00edas judiciales y doble enjuiciamiento con base en los mismos hechos. La v\u00edctima fue detenida por agentes de la Divisi\u00f3n Nacional contra el Terrorismo (DINCOTE) en febrero de 1993, \u00e9poca en la que se encontraba vigente un estado de emergencia constitucional con suspensi\u00f3n de una serie de garant\u00edas. Durante su detenci\u00f3n fue objeto de actos de violencia con el fin de obtener su autoinculpaci\u00f3n. \n\n Estos acontecimientos se enmarcan en conflicto entre grupos armados y agentes de las fuerzas policiales y militares que se vivi\u00f3 en Per\u00fa durante la d\u00e9cada del 80 y hasta finales del 2000. Este conflicto se agudiz\u00f3 mediante una pr\u00e1ctica sistem\u00e1tica de violaciones a los derechos humanos de personas sospechosas de pertenecer a grupos pol\u00edticos opositores. Estas pr\u00e1cticas fueron realizadas por agentes estatales siguiendo \u00f3rdenes de jefes militares y policiales. \n\n El Sr. Cantoral Benavides fue sometido a proceso ante la jurisdicci\u00f3n militar, lo que en el an\u00e1lisis de la Corte IDH viol\u00f3 los requerimientos de independencia e imparcialidad establecidos en la Convenci\u00f3n Americana. La Corte IDH tambi\u00e9n evalu\u00f3 la compatibilidad del tipo penal de terrorismo y traici\u00f3n a la patria con el principio de legalidad penal.", - "values": [ - "Ley antiterrorista", - "Privaci\u00f3n de libertad", - "Jurisdicci\u00f3n militar", - "Tortura y tratos crueles, inhumanos o degradantes" - ] - }, - { - "text": "Los hechos que sustentan la solicitud se refieren al incremento de amenazas de muerte y seguimientos sufridos \u2013en el marco de convocatorias realizadas por la Corte IDH\u2013 por varios miembros de la familia Garc\u00eda Prieto y sus representantes legales, derivadas de su lucha por obtener justicia por el asesinato de Ram\u00f3n Mauricio Garc\u00eda Prieto. ", - "values": [ - "Amenazas y hostigamientos", - "Defensores/as de derechos humanos", - "Testigo" - ] - }, - { - "text": "Los hechos del caso se refieren a la violaci\u00f3n sexual y torturas cometidos en contra de In\u00e9s Fern\u00e1ndez Ortega por parte de miembros del Ej\u00e9rcito mexicano. La Corte IDH ubic\u00f3 los hechos en un contexto de importante presencia militar en el Estado de Guerrero, lugar con un alto porcentaje de poblaci\u00f3n ind\u00edgena que conserva su identidad cultural y reside en municipios de gran marginalidad y pobreza, dirigida a reprimir actividades ilegales contra la delincuencia organizada.\n\nLa Corte IDH indic\u00f3 los elementos constitutivos de la violaci\u00f3n sexual como acto de tortura y estableci\u00f3 est\u00e1ndares sobre la improcedencia de la jurisdicci\u00f3n militar para conocer este tipo de hechos. Asimismo desarroll\u00f3 criterios sobre debida diligencia en el procesamiento de la denuncia e investigaci\u00f3n de la violencia sexual y el acceso a la justicia sin discriminaci\u00f3n.", - "values": [ - "Violencia de g\u00e9nero", - "Jurisdicci\u00f3n militar", - "Pueblos ind\u00edgenas", - "Tortura y tratos crueles, inhumanos o degradantes" - ] - }, - { - "text": "Los hechos del caso se refieren a actos de violencia sufridos por algunos integrantes de la comunidad ind\u00edgena Zen\u00fa por parte de grupos paramilitares que actuaron al amparo de grandes propietarios y ganaderos de la regi\u00f3n y de la fuerza p\u00fablica.", - "values": [ - "Pueblos ind\u00edgenas", - "Amenazas y hostigamientos" - ] - }, - { - "text": "El caso se relaciona con la detenci\u00f3n y procesamiento y condena por parte de un Consejo de Guerra de 12 personas, miembros de la Fuerza A\u00e9rea de Chile, todos ellos colaboradores del gobierno del Presidente Allende. Durante su detenci\u00f3n sufrieron malos tratos y torturas con la finalidad de extraer confesiones. \n\nLa Corte IDH analiz\u00f3 dimensiones de la obligaci\u00f3n de investigar del Estado frente a hechos de tortura, asi como el derecho a acceder a informaci\u00f3n en archivos de comisiones de la verdad. Adicionalmente se refiri\u00f3 al los recursos de revisi\u00f3n a la luz del derecho a la protecci\u00f3n judicial.", - "values": [ - "Tortura y tratos crueles, inhumanos o degradantes", - "Acceso al recurso" - ] - }, - { - "text": "Los hechos se relacionan con la solicitud de protecci\u00f3n a la vida, la integridad, la libertad de expresi\u00f3n y de asociaci\u00f3n del defensor de derechos humanos Carlos Nieto Palma, coordinador general de la organizaci\u00f3n no gubernamental Una Ventana a la Libertad, dedicada a la defensa y promoci\u00f3n de los derechos humanos en las c\u00e1rceles en Venezuela; y la vida y la integridad de su familia.", - "values": [ - "Amenazas y hostigamientos", - "Defensores/as de derechos humanos" - ] - }, - { - "text": "Los hechos del caso se relacionan con el procedimiento de destituci\u00f3n aplicado a 3 magistrados -con designaciones provisorias- de la Corte Primera de lo Contencioso Administrativo. \n\n La Corte IDH analiz\u00f3 el procedimiento de remoci\u00f3n a la luz de las garant\u00edas judiciales y desarroll\u00f3 est\u00e1ndares sobre independencia judicial y el deber estatal de motivaci\u00f3n de sus resoluciones.\u00a0Asimismo, estableci\u00f3 criterios respecto del derecho a acceder a un cargo p\u00fablico, de acuerdo con garant\u00edas de igualdad y procedimientos razonables y objetivos que permitan la estabilidad en el mismo.", - "values": [ - "Jueces/zas", - "Destituci\u00f3n de funcionario p\u00fablico" - ] - }, - { - "text": "Los hechos del caso dan cuenta de la violencia f\u00edsica y verbal, la acusaci\u00f3n infundada como guerrillero, el allanamiento ilegal de la residencia y la posterior ejecuci\u00f3n extrajudicial del l\u00edder ind\u00edgena Germ\u00e1n Escu\u00e9 Zapata, miembro del resguardo ind\u00edgena de Jambal\u00f3, comunidad Paez del Norte del Cauca, cometida por miembros del Ej\u00e9rcito Nacional el 1 de febrero de 1988. El Estado colombiano reconoci\u00f3 su responsabilidad parcial por los hechos, y admiti\u00f3 que miembros de la fuerza p\u00fablica privaron de libertad de forma ilegal a Escu\u00e9, qui\u00e9n fue maltratado y posteriormente ejecutado extrajudicialmente. El Estado tambi\u00e9n reconoci\u00f3 que no hubo una investigaci\u00f3n eficaz. \n\n La Corte IDH desarroll\u00f3 est\u00e1ndares sobre allanamiento ilegal del lugar de residencia consider\u00e1ndolo una injerencia arbitraria y abusiva del domicilio y una violaci\u00f3n a la vida privada y familiar de las personas que lo sufren.", - "values": [ - "Ejecuci\u00f3n extrajudicial", - "Pueblos ind\u00edgenas" - ] - }, - { - "text": "Los hechos del caso se refieren a la muerte -en mayo de 2004- de 107 internos del Centro Penal de San Pedro de Sula, como resultado directo de una serie de deficiencias estructurales presentes en dicho centro penitenciario. Las v\u00edctimas eran miembros de las denominadas \u201cmaras\u201d y se encontraban aislados del resto de la poblaci\u00f3n penal y confinados en un recinto inseguro e insalubre.\n\nLa Corte IDH enmarc\u00f3 el caso en un contexto de implementaci\u00f3n de reformas penales y de pol\u00edticas de \"tolerancia cero\" con las que se pretend\u00eda erradicar las maras y pandillas; a partir de estas reformas la polic\u00eda inici\u00f3 una pr\u00e1ctica com\u00fan de detenciones por sospecha y arrestos masivos con base en la apariencia de las personas y sin orden previa de autoridad competente.\n\nLa Corte IDH homolog\u00f3 un acuerdo de soluci\u00f3n amistosa alcanzado por las partes, en el marco del cual el Estado reconoci\u00f3 su responsabilidad internacional. Sin perjuicio de ello, la Corte IDH consolid\u00f3 el desarrollo de est\u00e1ndares sobre condiciones de detenci\u00f3n y obligaciones estatales en relaci\u00f3n con personas bajo su custodia.", - "values": [ - "Condiciones de detenci\u00f3n", - "Maras" - ] - }, - { - "text": "Los hechos del caso se refieren al procesamiento y condena por delitos terroristas, entre los a\u00f1os 2001 y 2002, de un grupo de l\u00edderes del Pueblo ind\u00edgena Mapuche. Los procesos penales estuvieron rodeados de irregularidades que violaron garant\u00edas b\u00e1sicas del debido proceso, y se aplic\u00f3 la Ley antiterrorista con base en criterios discriminatorios por su condici\u00f3n de Mapuche.\n\nEsta decisi\u00f3n es la primera que la Corte Interamericana toma en relaci\u00f3n con integrantes del pueblo Mapuche. La Corte IDH analiz\u00f3 el principio de legalidad a la luz de la calificaci\u00f3n de \"terrorista\" aplicada a los l\u00edderes ind\u00edgenas, estableciendo la violaci\u00f3n de la presunci\u00f3n de inocencia y la obligaci\u00f3n estatal de definir las conductas delictivas con precisi\u00f3n y claridad.\n\nAdem\u00e1s, la Corte en el an\u00e1lisis del caso consider\u00f3 que las decisiones judiciales que condenaron a las v\u00edctimas conten\u00edan prejuicios discriminatorios contra el pueblo Mapuche, violando el principio de igualdad y no discriminaci\u00f3n. Adem\u00e1s, analiz\u00f3 las diferentes garant\u00edas del debido proceso, se refiri\u00f3 a la utilizaci\u00f3n de testigos de identidad reservada en estos casos, a la falta de motivaci\u00f3n en la adopci\u00f3n y mantenimiento de la prisi\u00f3n preventiva, as\u00ed como a la falta de consideraci\u00f3n de las caracter\u00edsticas propias de los pueblos ind\u00edgenas al tiempo de ordenar medidas de privaci\u00f3n de libertad.", - "values": [ - "Discriminaci\u00f3n", - "Ley antiterrorista", - "Pueblos ind\u00edgenas", - "Prisi\u00f3n preventiva" - ] - }, - { - "text": "Los hechos del caso se relacionan con la afectaci\u00f3n a la vida, integridad personal y a su permanencia en el territorio titulado de manera colectiva de miembros de la comunidad afrodescendiente constituida por el Consejo Comunitario de Jiguamiand\u00f3 y familias del Curbadar\u00f3.\n\nIntegrantes de estas comunidades fueron afectados por amenazas de muerte, destrucci\u00f3n de bienes, saqueos, detenciones ilegales, hostigamientos, asesinatos y desapariciones.", - "values": [ - "Amenazas y hostigamientos", - "Afrodescendientes" - ] - }, - { - "text": "Los hechos se relacionan con la solicitud de protecci\u00f3n a la vida, la integridad y la libertad de expresi\u00f3n de las periodistas Marta Colomina y Liliana Vel\u00e1squez, quienes en la madrugada del 27 de junio de 2003 sufrieron un atentado contra sus vidas cuando se dirig\u00edan al canal de televisi\u00f3n \u201cTeleven\u201d para presentar su programa \u201cLa Entrevista\u201d.", - "values": [ - "Periodistas", - "Amenazas y hostigamientos" - ] - }, - { - "text": "Los hechos del caso se refieren amenazas, hostigamientos y ataques por parte de un grupo de patrulleros civiles y ex comisionados militares contra integrantes y sus familiares del Presbiterio Kakchiquel de la Conferencia de Iglesias Evang\u00e9licas de Guatemala (CIEDEG) o personas que han tomado un papel activo en la investigaci\u00f3n de los asesinatos de los pastores de la CIEDEG, Pascual Serech y Manuel Saquic V\u00e1squez, ocurridos en agosto de 1994 y junio de 1995 respectivamente.", - "values": [ - "Testigo", - "Amenazas y hostigamientos" - ] - }, - { - "text": "Los hechos del presente caso se refieren a la condena por homicidio culposo impuesta a Carlos Alberto Mohamed en raz\u00f3n de un accidente de tr\u00e1nsito del que fue parte y a ra\u00edz del cual falleci\u00f3 una persona. En primera instancia la v\u00edctima fue absuelta de los cargos en su contra, por considerarse que no estaba suficientemente acreditada su autor\u00eda en los hechos; sin embargo, y tras una apelaci\u00f3n presentada por la Fiscal\u00eda, fue posteriormente condenada. El procedimiento penal aplicado no establec\u00eda ning\u00fan recurso que permitiera revisar esta condena, lo que se consider\u00f3 violatorio del derecho de la v\u00edctima a recurrir el fallo. \n\n La Corte IDH\u00a0avanz\u00f3 en el an\u00e1lisis del derecho a recurrir un fallo como garant\u00eda de las personas frente al Estado y no solamente como una pauta de dise\u00f1o de los sistemas de impugnaci\u00f3n en los ordenamientos jur\u00eddicos de los Estados.", - "values": [ - "Acceso al recurso" - ] - }, - { - "text": "Los hechos del caso se refieren a la muerte y tratos crueles, inhumanos y degradantes sufridos por Dami\u00e3o Ximenes Lopes mientras se encontraba bajo atenci\u00f3n m\u00e9dica psiqui\u00e1trica en un centro de salud privado que prestaba servicios al sistema p\u00fablico. La muerte de la v\u00edctima ocurri\u00f3 3 d\u00edas despu\u00e9s de su internaci\u00f3n. \n\n El Estado realiz\u00f3 un reconocimiento internacional por su responsabilidad parcial respecto a la violaci\u00f3n al derecho a la integridad personal de la v\u00edctima. \n\n La Corte IDH desarroll\u00f3 est\u00e1ndares acerca de la responsabilidad internacional del Estado por actos de particulares, y el deber estatal de regular y fiscalizar el servicio de salud prestado por terceros.\u00a0Asimismo, estableci\u00f3 est\u00e1ndares sobre los derechos de las personas con discapacidad mental, en especial con relaci\u00f3n a recibir atenci\u00f3n m\u00e9dica eficaz adecuada a su situaci\u00f3n.", - "values": [ - "Salud", - "Tortura y tratos crueles, inhumanos o degradantes" - ] - }, - { - "text": "Los hechos del caso se relacionan con la desaparici\u00f3n forzada del Sr. V\u00e1squez Durand, ocurrida el 30 de enero de 1995 por miembros del Servicio de Inteligencia de Ecuador, en el marco de la llamada Guerra del Cenepa o Conflicto del Alto Cenepa el que se origin\u00f3 en una disputa territorial entre Per\u00fa y Ecuador. \n\nEn su Sentencia, la CorteIDH aplic\u00f3 est\u00e1ndares sobre desaparici\u00f3n forzada de personas y abord\u00f3 aspectos de la obligaci\u00f3n estatal de investigar frente a este tipo de hechos. \n", - "values": [ - "Desaparici\u00f3n forzada" - ] - }, - { - "text": "Los hechos del caso se refieren a la detenci\u00f3n de Jos\u00e9 Agapito Ruano Torres, el 17 de octubre del 2000 y a su posterior condena por el delito de secuestro, en violaci\u00f3n a las garant\u00edas m\u00ednimas de debido proceso y su derecho a la presunci\u00f3n de inocencia. \n\nLa CorteIDH desarrolla, por primera vez, est\u00e1ndares sobre los alcances de la responsabilidad internacional del Estado por la actuaci\u00f3n de la defensa p\u00fablica en materia penal.", - "values": [ - "Defensa t\u00e9cnica" - ] - }, - { - "text": "Los hechos del caso se refieren a la desaparici\u00f3n forzada de Efra\u00edn B\u00e1maca Vel\u00e1squez, comandante del grupo guerrillero Organizaci\u00f3n del Pueblo en Armas (ORPA), tras ser capturado -en marzo de 1992- por agentes del Ej\u00e9rcito. Durante su cautiverio, el Sr. B\u00e1maca Vel\u00e1squez fue sometido a tortura.\n\nLa Corte IDH ubic\u00f3 los hechos en el contexto del conflicto armado interno ocurrido en Guatemala, poniendo en evidencia la pr\u00e1ctica del ej\u00e9rcito de capturar guerrilleros y mantenerlos en reclusi\u00f3n clandestina para efectos de obtener informaci\u00f3n mediante torturas.\n\nEl Estado reconoci\u00f3 su responsabilidad internacional por la violaci\u00f3n al deber estatal de respetar y garantizar los derechos establecidos en la Convenci\u00f3n Interamericana. Sin perjuicio de ello, la Corte IDH desarroll\u00f3 est\u00e1ndares sobre las caracter\u00edsticas de la desaparici\u00f3n forzada como violaci\u00f3n m\u00faltiple de derechos y sobre la violaci\u00f3n al derecho a la integridad personal de las v\u00edctimas y sus familiares en este tipo de pr\u00e1cticas.", - "values": [ - "Desaparici\u00f3n forzada" - ] - }, - { - "text": "Los hechos del caso se refieren a la condena a pena de muerte obligatoria de Tyrone Dacosta Cadogan, por encontrarlo culpable del delito de homicidio. \n\n La Corte IDH aplic\u00f3 est\u00e1ndares sobre la incompatibilidad de la imposici\u00f3n obligatoria de la pena de muerte y el derecho a la vida y la prohibici\u00f3n de la violaci\u00f3n arbitraria de la vida. Al analizar si la mera disponibilidad de una evaluaci\u00f3n psiqui\u00e1trica en favor de la v\u00edctima era suficiente para garantizar el derecho al debido proceso, estableci\u00f3 como criterio la mayor rigurosidad en la observaci\u00f3n de las garant\u00edas judiciales en aquellos que pueden culminar con la aplicaci\u00f3n de la pena de muerte. \n\n Adicionalmente analiz\u00f3 el alcance de la obligaci\u00f3n positiva estatal de adoptar medidas legislativas para garantizar el ejercicio de los derechos.", - "values": [ - "Pena de muerte" - ] - }, - { - "text": "Los hechos del caso se refieren a la condena penal por el delito de injurias y la ulterior responsabilidad civil de Carlos y Pablo M\u00e9moli, tras exponer una serie de denuncias en diferentes medios de comunicaci\u00f3n, referidas a una presunta defraudaci\u00f3n cometida por los miembros de la Asociaci\u00f3n Italiana de la ciudad de San Andr\u00e9s de Giles.\n\nEl caso reflejaba un conflicto entre el derecho a la libertad de expresi\u00f3n y la protecci\u00f3n de la honra y la reputaci\u00f3n. La Corte IDH entendi\u00f3 que la libertad de expresi\u00f3n no es un derecho absoluto y que en el marco de la libertad de informaci\u00f3n es deber del periodista constatar de forma razonable los hechos en los que fundamenta sus opiniones. Del mismo modo, consider\u00f3 que tanto la via civil cuanto la penal pueden ser medios para establecer responsabilidades ulteriores bajo ciertas circunstancias que respeten requisitos de necesidad y proporcionalidad.\n\nLos hechos generaron tambi\u00e9n un proceso civil por da\u00f1os y perjuicios con la aplicaci\u00f3n de una medida cautelar de inhibici\u00f3n general contra los Sres. M\u00e9moli para enajenar y gravar bienes con el fin de garantizar el eventual pago resultante del proceso, que se mantuvo vigente por m\u00e1s de 17 a\u00f1os, lo que configur\u00f3 una violaci\u00f3n al principio de plazo razonable y al derecho a la propiedad.", - "values": [ - "Libertad de expresi\u00f3n" - ] - }, - { - "text": "Los hechos del caso se refieren a la desaparici\u00f3n forzada de 19 personas dedicadas a actividades comerciales en el municipio de Puerto Boyac\u00e1, cometida por el grupo paramilitar denominado Asociaci\u00f3n de Campesinos y Ganaderos del Magdalena Medio (ACDEGAM), que ejerc\u00eda el control de la regi\u00f3n del Magdalena Medio con el apoyo de las fuerzas militares del Estado. \n\n La Corte IDH desarroll\u00f3 est\u00e1ndares sobre responsabilidad estatal por hechos cometidos por terceros, toda vez que se determin\u00f3 que los grupos paramilitares actuaron con apoyo o tolerancia por parte del poder p\u00fablico. Asimismo, aplic\u00f3 criterios anteriores sobre desaparici\u00f3n forzada y jurisdicci\u00f3n militar.", - "values": [ - "Desaparici\u00f3n forzada", - "Jurisdicci\u00f3n militar" - ] - }, - { - "text": "Los hechos del caso se refieren a la detenci\u00f3n ilegal y arbitraria - el 17 de abril de 1993- de Gladys Carol Espinoza Gonz\u00e1les, quien fue sometida a tortura, incluyendo actos de violencia sexual, por integrantes de la Divisi\u00f3n de Investigaci\u00f3n y Secuestro (DIVISE) y de la Direcci\u00f3n Nacional contra el Terrorismo (DINCOTE) ambas adscritas a la Polic\u00eda Nacional del Per\u00fa. Tambi\u00e9n estuvo sometida a condiciones de detenci\u00f3n inhumanas durante su permanencia en el Penal de Yanamayo. \n\nLa CorteIDH enmarc\u00f3 su an\u00e1lisis en el contexto de una pr\u00e1ctica sistem\u00e1tica de violaciones de derechos humanos, ocurrida en Per\u00fa desde inicios de la d\u00e9cada de los ochenta y hasta finales del 2000 y en el que tambi\u00e9n se produjeron numerosos actos que configuraron una pr\u00e1ctica generalizada y aberrante de violaci\u00f3n sexual que afect\u00f3 principalmente a las mujeres.", - "values": [ - "Privaci\u00f3n de libertad", - "Condiciones de detenci\u00f3n", - "Violencia de g\u00e9nero" - ] - }, - { - "text": "Los hechos del caso -que acumula 8 peticiones presentadas ante la Comisi\u00f3n Interamericana- se refieren a la inexistencia de un recurso que permitiera obtener una revisi\u00f3n amplia de las condenas penales impuestas a 17 personas. \n\nEn su Sentencia, la CorteIDH analiz\u00f3 el alcance y contenido del derecho a recurrir el fallo ante juez o tribunal superior, en particular, en relaci\u00f3n con la Sentencia dictada por la propia CorteIDH en el caso Herrera Ulloa y el impacto de las reformas legales realizadas por Costa Rica en cumplimiento de las reparaciones ordenadas en esa oportunidad. \n\nAdicionalmente, la CorteIDH aplic\u00f3 est\u00e1ndares sobre prisi\u00f3n preventiva y el derecho a contar con un juez competente, independiente e imparcial. \n", - "values": [ - "Prisi\u00f3n preventiva", - "Acceso al recurso" - ] - }, - { - "text": "Los hechos del caso se refieren la ejecuci\u00f3n extrajudicial de la antrop\u00f3loga Myrna Chang, ocurrida el 11 de setiembre de 1990, como consecuencia de una operaci\u00f3n de inteligencia militar, llevada a cabo de acuerdo a un plan previo elaborado por el alto mando del Estado Mayor Presidencial, y que incluy\u00f3 el encubrimiento de todos los autores materiales e intelectuales. A la \u00e9poca de los hechos exist\u00eda en el pa\u00eds un patr\u00f3n de ejecuciones extrajudiciales selectivas impulsadas por el Estado, el cual estaba dirigido a aquellos individuos considerados como \u201cenemigos internos\u201d.\n\nA Corte IDH estableci\u00f3 est\u00e1ndares acerca de la protecci\u00f3n del derecho a la vida y sobre el deber de los jueces de dirigir y encausar el procedimiento judicial en un plazo razonable, analizando la conducta estatal de retenci\u00f3n de evidencia.", - "values": [ - "Ejecuci\u00f3n extrajudicial" - ] - }, - { - "text": "Los hechos del caso se refieren al derecho de la Comunidad Gar\u00edfuna Triunfo de la Cruz a contar con un t\u00edtulo de propiedad sobre su territorio tradicional que fuese id\u00f3neo y culturalmente adecuado, considerando que el reconocimiento de parte de dicho territorio habr\u00eda sido tard\u00edo y negando un t\u00edtulo \u00fanico sobre la totalidad del territorio. Esta situaci\u00f3n se tradujo en una omisi\u00f3n estatal de proteger efectivamente el territorio frente a la ocupaci\u00f3n y despojo por terceros. \n\nLa CorteIDH tambi\u00e9n aplic\u00f3 est\u00e1ndares sobre consulta previa, libre e informada respecto a la adopci\u00f3n de decisiones como la planificaci\u00f3n y ejecuci\u00f3n de proyectos y megaproyectos tur\u00edsticos, la creaci\u00f3n de un \u00e1rea protegida y ventas de tierras comunitarias; y analiz\u00f3 la responsabilidad estatal por los hostigamientos sufridos por las autoridades de la Comunidad como consecuencia de sus actividades en defensa de las tierras.", - "values": [ - "Propiedad", - "Derecho a consulta", - "Amenazas y hostigamientos" - ] - }, - { - "text": "Los hechos del caso se refieren a la transferencia de fondos bancarios de un grupo de ahorristas del Banco Montevideo S.A. al Trade and Comerce Bank, en las Islas Caim\u00e1n, efectuada en el contexto de una crisis bancaria que afect\u00f3 a Uruguay a fines del a\u00f1o 2001. Algunas entidades financieras tuvieron problemas de liquidez que provocaron la intervenci\u00f3n estatal y su posterior liquidaci\u00f3n. \n\n Los reclamos de los ahorristas se canalizaban de acuerdo al procedimiento establecido en la Ley N\u00b0 17.613 regulatoria del sistema financiero y que establec\u00eda un procedimiento administrativo especial para la determinaci\u00f3n de los derechos de ahorristas cuyos dep\u00f3sitos hubieran sido transferidos a otras instituciones \u201csin mediar su consentimiento\u201d. \n\n La Corte IDH estableci\u00f3 est\u00e1ndares sobre el alcance de las garant\u00edas procesales y el derecho a ser o\u00eddos en los procesos ante \u00f3rganos administrativos.", - "values": [ - "Proceso administrativo" - ] - }, - { - "text": "Los hechos del caso se refieren a la detenci\u00f3n arbitraria e ilegal de Daniel Tibi, ocurrida en noviembre de 1995, las torturas, tratos crueles, inhumanos y degradantes que sufri\u00f3 mientras estuvo privado de libertad por un supuesto delito de tr\u00e1fico de estupefacientes, y la incautaci\u00f3n de sus bienes, los cuales no le fueron devueltos por el Estado cuando fue liberado. \n\n La Corte IDH analiz\u00f3 la prisi\u00f3n preventiva a la luz del derecho a la libertad personal, ratificando su car\u00e1cter de medida cautelar, no punitiva, y\u00a0 destac\u00f3 la relevancia del control judicial inmediato como medida tendiente a evitar la arbitrariedad o ilegalidad de las detenciones. \n\n La Corte IDH tambi\u00e9n examin\u00f3 las condiciones de detenci\u00f3n del Sr. Tibi en relaci\u00f3n con la obligaci\u00f3n estatal de respeto a la integridad personal y con la obligaci\u00f3n de investigar.", - "values": [ - "Privaci\u00f3n de libertad", - "Prisi\u00f3n preventiva", - "Tortura y tratos crueles, inhumanos o degradantes" - ] - }, - { - "text": "Los hechos del caso se refieren a la desaparici\u00f3n forzada de Mar\u00eda Tiu Toj\u00edn y Josefa, su hija reci\u00e9n nacida, en manos de efectivos del Ej\u00e9rcito guatemalteco y miembros de las Patrullas de Autodefensa Civil (PAC). La Sra. Tiu Toj\u00edn integraba la Comunidad de Poblaci\u00f3n en Resistencia de Santa Clara, conocida como \u201cla Sierra\", en el Departamento del Quich\u00e9, y estaba vinculada al Consejo de Comunidades \u00c9tnicas Runujel Junam y al Comit\u00e9 Nacional de Viudas de Guatemala, organizaciones que impulsaban la no participaci\u00f3n en las Patrullas de Autodefensa Civil durante el conflicto armado interno en el pa\u00eds.\n\nLa Corte IDH consider\u00f3 los hechos del caso como parte de una pr\u00e1ctica estatal ocurrida durante la \u00e9poca del conflicto armado interno y llevada a cabo por fuerzas de seguridad. En ella se capturaba a integrantes de movimientos insurgentes o personas identificadas como proclives a la insurgencia, se las reten\u00eda clandestinamente, sin dar aviso al juez, se los torturaba para obtener informaci\u00f3n e incluso, se les causaba la muerte.\n\nEl Estado realiz\u00f3 un reconocimiento total de responsabilidad por los hechos. La Corte IDH se pronunci\u00f3 sobre los alcances de \u00e9ste, refiri\u00e9ndose a la obligaci\u00f3n de garant\u00eda y respeto de los derechos humanos en relaci\u00f3n con la impunidad y la obligaci\u00f3n de investigar. En consideraci\u00f3n a este \u00faltimo punto, puso en evidencia el impacto diferenciado de la impunidad sobre los pueblos ind\u00edgenas y los obst\u00e1culos sociales y culturales que enfrentar para acceder a una instancia judicial.", - "values": [ - "Desaparici\u00f3n forzada", - "Pueblos ind\u00edgenas" - ] - }, - { - "text": "Los hechos del caso se relacionan con violaciones al principio de presunci\u00f3n de inocencia y el deber de motivaci\u00f3n de la sentencias en el caso de la condena del Sr. Agust\u00edn Bladimiro Zegarra Mar\u00edn quien era Comandante de la Polic\u00eda Nacional de Per\u00fa y se desempe\u00f1\u00f3 como Sub Director de Pasaportes de la Direcci\u00f3n Nacional de Migraciones del Per\u00fa. \n\nEn su Sentencia, la CorteIDH analiza la vulneraci\u00f3n de la presunci\u00f3n de inocencia y de motivaci\u00f3n a la luz de los est\u00e1ndares de debido proceso. Adicionalmente se refiere al alcance del derecho a recuro a recurrir el fallo ante juez o tribunal superior. \n", - "values": [ - "Acceso al recurso" - ] - }, - { - "text": "Los hechos del caso se refieren a la protecci\u00f3n por v\u00eda de medidas provisionales de la integridad de dos ni\u00f1os, hijos de una pareja de desaparecidos argentinos que hab\u00edan sido apropiados por un integrante de la Polic\u00eda argentina y su esposa y privados de su identidad. \n\nLos ni\u00f1os hab\u00edan sido retenidos por sus apropiadores aun despu\u00e9s de haberse conocido su filiaci\u00f3n gen\u00e9tica. La CorteIDH concedi\u00f3 medidas urgentes, que no convirti\u00f3 en medidas provisionales porque el Estado cumpli\u00f3 con la protecci\u00f3n ordenada. ", - "values": [ - "Ni\u00f1ez", - "Identidad" - ] - }, - { - "text": "Los hechos que fundamentan la solicitud de protecci\u00f3n de la vida y la integridad de In\u00e9s Fern\u00e1ndez Ortega \u2013quien fuera v\u00edctima de un caso en tr\u00e1mite ante el SIDH- , su esposo, hijas e hijo y de integrantes de la Organizaci\u00f3n de la Monta\u00f1a Tlanichollan y de la Organizaci\u00f3n del Pueblo Ind\u00edgena Tlaplaneco, se refieren a los hostigamientos y amenazas recibidos por ellos debido a su trabajo en favor de los derechos ind\u00edgenas en el estado de Guerrero. ", - "values": [ - "Defensores/as de derechos humanos", - "Amenazas y hostigamientos", - "Pueblos ind\u00edgenas" - ] - }, - { - "text": "Los hechos que fundamentan la solicitud de protecci\u00f3n de la vida de Ferm\u00edn Ram\u00edrez, se deriva de la inminente ejecuci\u00f3n de condena de pena muerte dictada en su contra. El otorgamiento de las medidas tiene como objetivo no frustrar la posibilidad de dar cumplimiento a una eventual determinaci\u00f3n de los \u00f3rganos del sistema interamericano de protecci\u00f3n de los derechos humanos de la existencia de una violaci\u00f3n del derecho a la vida protegido en la Convenci\u00f3n Americana. \n\nEn Junio de 2005, la CorteIDH dict\u00f3 Sentencia de fondo en el caso de Ferm\u00edn Ram\u00edrez disponiendo lo siguiente respecto del tr\u00e1mite de las medidas provisionales: \"14. Las obligaciones del Estado en el marco de las medidas provisionales ordenadas quedan reemplazadas por las que se ordenan en esta Sentencia, una vez que el Estado asegure el cumplimiento de los Puntos Resolutivos 7, 8 y 9 de la presente Sentencia.\" ", - "values": [ - "Pena de muerte" - ] - }, - { - "text": "Los hechos del caso se refieren al asesinato -en agosto de 1994- de Jorge Omar Guti\u00e9rrez, miembro de la Polic\u00eda Federal, quien estaba investigando un caso de corrupci\u00f3n conocido como \"caso de la aduana paralela\" en el que se encontraban involucrados empresarios y funcionarios estatales de alta jerarqu\u00eda, y la impunidad en que se hallaba el mismo m\u00e1s de 17 a\u00f1os despu\u00e9s como consecuencia de graves irregularidades en la investigaci\u00f3n. \n\n La Corte IDH desarroll\u00f3 est\u00e1ndares sobre responsabilidad estatal por la violaci\u00f3n del derecho a la vida, as\u00ed como sobre la falta de efectividad de las investigaciones y procesos relacionados con la ejecuci\u00f3n extrajudicial del Sr. Guti\u00e9rrez.", - "values": [ - "Ejecuci\u00f3n extrajudicial" - ] - }, - { - "text": "Los hechos del caso se refieren al despido de un grupo de 257 trabajadores cesados del Congreso Nacional de la Rep\u00fablica de Per\u00fa, en el marco de la disoluci\u00f3n del Congreso dispuesta por el gobierno de Alberto Fujimori y la conformaci\u00f3n del llamado \u201cGobierno de Emergencia y Reconstrucci\u00f3n Nacional\u201d. \n\n El contexto en el que ocurrieron los hechos puso en foco una situaci\u00f3n generalizada de ceses irregulares en el sector p\u00fablico y de falta de garant\u00edas e ineficacia del poder judicial para enfrentarlos.", - "values": [ - "Estado de excepci\u00f3n", - "Derechos laborales" - ] - }, - { - "text": "Los hechos del caso se refieren a la detenci\u00f3n arbitraria, tortura y en algunos casos, ejecuci\u00f3n extrajudicial de 11 personas, acciones cometidas por agentes del Estado entre junio de 1987 y febrero de 1988.\n\nLa Corte IDH analiz\u00f3 las violaciones a las garant\u00edas judiciales y desarroll\u00f3 est\u00e1ndares sobre impunidad en relaci\u00f3n con la obligaci\u00f3n del Estado de garantizar y respetar los derechos humanos.", - "values": [ - "Ejecuci\u00f3n extrajudicial", - "Privaci\u00f3n de libertad" - ] - }, - { - "text": "Los hechos que fundamentan el otorgamiento de las medidas a favor de Esperanza Uribe Mantilla, Luz Nelly Carvajal y Paola Mart\u00ednez Ortiz \u2013quienes hacen parte de las v\u00edctimas en el caso Masacre de la Rochela\u2013; refieren a las amenazas, hostigamientos y seguimientos en su contra, realizados por grupos paramilitares autodenominados \u201c\u00c1guilas Negras\u201d, y se inscriben en un contexto de avance en los procesos judiciales de investigaci\u00f3n del caso.", - "values": [ - "Amenazas y hostigamientos" - ] - }, - { - "text": "Los hechos que fundamentan la solicitud se refieren a la protecci\u00f3n de la vida, integridad personal y salud de B., una mujer de 22 a\u00f1os de edad diagnosticada con lupus eritematoso y que se encuentra embarazada de un feto anencef\u00e1lico. Pese a que los m\u00e9dicos indicaron a B que interrumpiera su embarazo debido a su situaci\u00f3n de salud y el riesgo que representaba para su vida, los servicios de salud no se lo realizaban. \n\n", - "values": [ - "Derechos reproductivos" - ] - }, - { - "text": "Los hechos que fundamentan la solicitud de protecci\u00f3n de la vida e integridad de Danilo Rueda, se relacionan con hostigamientos, amenazas de muerte e intimidaciones ocurridas entre enero y abril de 2014, en raz\u00f3n de su trabajo como miembro fundador y Director de la Comisi\u00f3n Interesclesial de Justicia y Paz (CIJP). Las medidas se sustentan en la existencia de un contexto generalizado de riesgo para defensores y defensoras de derechos humanos en Colombia.", - "values": [ - "Defensores/as de derechos humanos", - "Amenazas y hostigamientos" - ] - }, - { - "text": "Los hechos del caso se relacionan con la libertad de expresi\u00f3n de accionistas, directivos y periodistas del canal Radio Caracas Televisi\u00f3n al que el Estado decidi\u00f3 no renovarle la concesi\u00f3n, en raz\u00f3n de la postura editorial del mismo durante los hechos de abril de 2002 en Venezuela. \n\nLa CorteIDH desarroll\u00f3 est\u00e1ndares sobre libertad de expresi\u00f3n y su relaci\u00f3n con las concesiones o licencias en materia de radio difusi\u00f3n en relaci\u00f3n con la garant\u00eda de no discriminaci\u00f3n. \n", - "values": [ - "Libertad de expresi\u00f3n" - ] - }, - { - "text": "Los hechos del caso se refieren a la desaparici\u00f3n forzada de un grupo de ni\u00f1os ocurrida entre los a\u00f1os 1981 y 1983 -primeros a\u00f1os del conflicto interno armado que afect\u00f3 a El Salvador-, por parte de miembros de cuerpos militares en el contexto de \"operativos de contrainsurgencia\". Las v\u00edctimas fueron separadas de sus familias y desaparecidas a trav\u00e9s de diferentes modalidades, tales como adopci\u00f3n formal e informal, apropiaci\u00f3n por parte de militares e incluso algunas habr\u00edan sido v\u00edctimas de tr\u00e1fico ilegal.\n\nEl Estado realiz\u00f3 un reconocimiento de responsabilidad internacional por los hechos -incluyendo el patr\u00f3n de desaparici\u00f3n forzada de ni\u00f1os y ni\u00f1as- frente a la que la Corte IDH analiz\u00f3 las garant\u00edas vulneradas desarrollando est\u00e1ndares acerca de las caracter\u00edsticas y efectos de la desaparici\u00f3n forzada; el derecho a la identidad, el derecho a la familia, al nombre y las medidas de protecci\u00f3n especial de la ni\u00f1ez. Asimismo, la Corte IDH hizo referencia al derecho de acceso a la justicia en tiempo razonable, y el acceso a informaci\u00f3n de archivos militares.", - "values": [ - "Ni\u00f1ez", - "Desaparici\u00f3n forzada" - ] - }, - { - "text": "Los hechos del caso se refieren a detenci\u00f3n y posterior juzgamiento conforme a la legislaci\u00f3n antiterrorista peruana por un tribunal militar \u201csin rostro\u201d y con restricciones al derecho de defensa de Lori Helene Berenson Mej\u00eda. La v\u00edctima fue condenada a cadena perpetua por el delito de \u201ctraici\u00f3n a la patria\u201d. Como resultado de la interposici\u00f3n por la defensa de un recurso de revisi\u00f3n extraordinaria, la sentencia fue anulada y la causa transferida al fuero penal ordinario. Finalmente se estableci\u00f3 la responsabilidad de Lori Berenson por el delito de colaboraci\u00f3n con el terrorismo, conden\u00e1ndola a 20 a\u00f1os de privaci\u00f3n de libertad. \n\n La Corte IDH consider\u00f3 que el contexto en que se desarrollaron los hechos corresponde a la \u00e9poca en la que se vivi\u00f3 en Per\u00fa, desde la d\u00e9cada del 80 y hasta finales del 2000, un conflicto entre grupos armados y agentes de las fuerzas policiales y militares. Este conflicto se agudiz\u00f3 mediante una pr\u00e1ctica sistem\u00e1tica de violaciones a los derechos humanos -entre ellas ejecuciones extrajudiciales y desapariciones forzadas- de personas sospechosas de pertenecer a grupos pol\u00edticos opositores que fueron realizadas por agentes estatales siguiendo \u00f3rdenes de jefes militares y policiales. \n\n La Corte IDH se pronunci\u00f3 acerca de las condiciones de detenci\u00f3n sufridas por la v\u00edctima (aislamiento prolongado, incomunicaci\u00f3n coactiva, mala alimentaci\u00f3n, deficientes medidas sanitarias, la restricci\u00f3n de su derecho a visitas y la deficiente atenci\u00f3n m\u00e9dica, entre otras) \u00a0las que fueron consideradas tratos crueles, inhumanos y degradantes violatorios de la Convenci\u00f3n Americana. La Corte IDH reiter\u00f3 elementos relacionados con la necesidad de observar el principio de legalidad en la elaboraci\u00f3n de tipos penales y la improcedencia de la competencia penal militar en delitos cometidos por civiles debido a la vulneraci\u00f3n al derecho de juez natural y al debido proceso, ambas garant\u00edas vinculadas con el derecho al acceso a la justicia.", - "values": [ - "Ley antiterrorista", - "Condiciones de detenci\u00f3n", - "Tortura y tratos crueles, inhumanos o degradantes", - "Jurisdicci\u00f3n militar" - ] - }, - { - "text": "Los hechos del caso se refieren a las violaciones a los derechos humanos de ocho comunidades de los Pueblos Kali\u00f1a y Lokono del R\u00edo Bajo Marowijne. En particular, focaliza en la ausencia de marco normativo que reconozca -de manera colectiva- la personalidad jur\u00eddica de los pueblos ind\u00edgenas, ni su derecho a la propiedad colectiva de las tierras, territorios y recursos naturales. \n\nLa CorteIDH profundiza est\u00e1ndares vinculados con propiedad colectiva, y relaciona los mismos con la protecci\u00f3n del medio ambiente y la obligaci\u00f3n estatal de garantizar la participaci\u00f3n efectiva de los pueblos ind\u00edgenas a trav\u00e9s de procedimientos culturalmente adecuados para la toma de decisiones de dichos pueblos.", - "values": [ - "Pueblos ind\u00edgenas", - "Propiedad", - "Acceso a la informaci\u00f3n p\u00fablica" - ] - }, - { - "text": "Los hechos del caso se refieren a la ejecuci\u00f3n extrajudicial de un grupo de 5 adolescentes en situaci\u00f3n de calle, 3 de ellos menores de edad. 4 de las v\u00edctimas fueron previamente secuestradas y torturadas. La Corte IDH ubic\u00f3 los hechos en el contexto de una pr\u00e1ctica estatal de amenazas, detenciones, tratos crueles, inhumanos y degradantes y homicidios contra \"ni\u00f1os de la calle\u201d por parte de agentes de seguridad estatales como medio para contrarrestar la delincuencia juvenil.\n\nLa Corte IDH aplic\u00f3 est\u00e1ndares de protecci\u00f3n del derecho a la vida inclusivos de la garant\u00eda a una existencia digna, poniendo en foco la situaci\u00f3n de riesgo a la que se ven expuestos los \"ni\u00f1os de la calle\u201d. Asimismo aplic\u00f3 criterios de an\u00e1lisis integral del proceso interno para concluir el incumplimiento estatal de la obligaci\u00f3n de investigar efectiva y adecuadamente los hechos.", - "values": [ - "Ejecuci\u00f3n extrajudicial", - "Ni\u00f1ez" - ] - }, - { - "text": "Los hechos del caso hacen referencia a la incursi\u00f3n, el 14 de enero de 1990, del grupo paramilitar 'Los Tangueros', bajo \u00f3rdenes de Fidel Casta\u00f1o, en el corregimiento Pueblo Bello, municipio de Turbo, departamento de Antioquia. Los paramilitares saquearon algunas viviendas y, por la fuerza, trasladaron a un n\u00famero indeterminado de hombres hasta la plaza del pueblo, donde los obligaron a acostarse boca abajo, seleccionando de una lista a 43 campesinos, entre ellos 3 menores de edad. Las personas fueron amarradas, obligadas a subir a dos camiones y trasladadas a una finca donde fueron recibidas por el jefe paramilitar. All\u00ed, los campesinos fueron interrogados y torturados. De las 43 v\u00edctimas, 37 desaparecieron y 6 fueron ejecutadas extrajudicialmente. \n\n Los hechos del caso se enmarcan en el contexto del conflicto armado colombiano y particularmente en el marco de la expansi\u00f3n y control territorial por parte de los grupos paramilitares como reacci\u00f3n a la insurgencia guerrillera en la regi\u00f3n del Urab\u00e1 Antioque\u00f1o. \n\n La Corte IDH desarroll\u00f3 est\u00e1ndares sobre responsabilidad estatal por el incumplimiento de los deberes de prevenci\u00f3n y protecci\u00f3n de los habitantes de la zona -que hab\u00eda sido declarada como zona de emergencia y operaciones militares- frente a las acciones de los grupos paramilitares. Adicionalmente puso en evidencia la impunidad en que se encuentran los hechos del caso y las violaciones al acceso a la justicia.", - "values": [ - "Ejecuci\u00f3n extrajudicial", - "Desaparici\u00f3n forzada" - ] - }, - { - "text": "Los hechos del presente caso se refieren a la ejecuci\u00f3n extrajudicial y tortura -por parte de fuerzas militares- de un grupo de m\u00e1s de 20 personas debido a su supuesta vinculaci\u00f3n al Comando de la Selva.\n\nFrente a la denuncia por estos hechos, el Estado realiz\u00f3 un reconocimiento de responsabilidad internacional y la Corte decidi\u00f3 dejar abierto el procedimiento para los efectos de las reparaciones y costas.", - "values": [ - "Ejecuci\u00f3n extrajudicial", - "Tortura y tratos crueles, inhumanos o degradantes" - ] - }, - { - "text": "Los hechos del caso se refieren a la ejecuci\u00f3n extrajudicial y varias desapariciones forzadas \u2013que incluyeron algunos ni\u00f1os - ocurridas con participaci\u00f3n de agentes estatales entre junio y diciembre de 1996 en La Vereda La Esperanza en la regi\u00f3n del Magdalena Medio \u2013zona de gran importancia estrat\u00e9gica y econ\u00f3mica-, en el sur oriente del Departamento de Antioquia.\n\nLa CorteIDH en su Sentencia aplic\u00f3 est\u00e1ndares relacionados con desapariciones forzadas analizando, de manera puntual, la responsabilidad estatal en relaci\u00f3n con el actuar de terceros particulares e identificando \u2013a tal efecto- una modalidad de cooperaci\u00f3n entre fuerzas militares ubicadas en la zona y grupos paramilitares. Tambi\u00e9n se abordaron cuestiones vinculadas con la obligaci\u00f3n estatal de garantizar protecci\u00f3n a las personas participantes en el proceso y el derecho a la verdad de los familiares de las v\u00edctimas de desaparici\u00f3n forzada. \n\nAsimismo, fueron analizadas las consecuencias de los allanamientos en t\u00e9rminos de violaciones al derecho a la privacidad y la propiedad. \n", - "values": [ - "Amenazas y hostigamientos", - "Desaparici\u00f3n forzada", - "Propiedad", - "Testigo" - ] - }, - { - "text": "Los hechos del caso se refieren a la desaparici\u00f3n forzada -desde el 1 de abril de 1981- del dirigente pol\u00edtico ind\u00edgena maya Florencio Chitay Nech, y la falta de diligencia en la investigaci\u00f3n de los hechos. La Corte IDH ubic\u00f3 los mismos en el contexto del conflicto armado interno ocurrido entre 1962 y 1996, \u00e9poca en que la desaparici\u00f3n forzada de personas constituy\u00f3 una pr\u00e1ctica estatal llevada a cabo por fuerzas de seguridad en Guatemala, con la finalidad de castigar no s\u00f3lo a la v\u00edctima sino tambi\u00e9n al colectivo pol\u00edtico o social al que la misma pertenec\u00eda.\n\nLa Corte IDH aplic\u00f3 est\u00e1ndares sobre desaparici\u00f3n forzada de personas como una violaci\u00f3n m\u00faltiple de derechos humanos. Asimismo desarroll\u00f3 criterios sobre la obligaci\u00f3n de garantizar el goce de los derechos pol\u00edticos a miembros de comunidades ind\u00edgenas y \u00e9tnicas, y sobre los efectos del desplazamiento forzado de la familia de la v\u00edctima dentro de un contexto de violencia sistem\u00e1tica en contra de los grupos ind\u00edgenas mayas que result\u00f3 en afectaciones a su identidad cultural.", - "values": [ - "Desaparici\u00f3n forzada", - "Pueblos ind\u00edgenas", - "Desplazamiento forzado", - "Derechos pol\u00edticos" - ] - }, - { - "text": "Los hechos que fundamentan la solicitud de protecci\u00f3n de la vida, la integridad personal y la libertad de expresi\u00f3n de todos los periodistas, directivos y trabajadores del medio de comunicaci\u00f3n social Radio Caracas Televisi\u00f3n (RCTV), as\u00ed como de las personas que se encuentren en sus instalaciones y que est\u00e9n vinculadas a la operaci\u00f3n period\u00edstica de dicho medio, se relacionan con los actos de hostigamiento, amenazas y agresiones sufridas por los y las comunicadores sociales por el ejercicio de su funci\u00f3n period\u00edstica. ", - "values": [ - "Amenazas y hostigamientos", - "Periodistas" - ] - }, - { - "text": "Los hechos del caso se refieren a la destituci\u00f3n -en febrero de 2003- de Mar\u00eda Cristina Rever\u00f3n Trujillo, quien se desempe\u00f1aba como Jueza de Primera Instancia de lo Penal. Tras lo sucedido, la v\u00edctima recurri\u00f3 de nulidad, el recurso fue aceptado pero no se orden\u00f3 la restituci\u00f3n a su cargo, ni el pago de los salarios y beneficios sociales dejados de percibir. \n\n La Corte IDH aplic\u00f3 est\u00e1ndares sobre el derecho a un recurso judicial efectivo, y desarroll\u00f3 criterios sobre independencia judicial relacionados con\u00a0las debidas garant\u00edas en el proceso de nombramiento, inamovilidad en el cargo y protecci\u00f3n contra presiones externas, visibilizando las especificidades de los nombramientos de jueces y juezas a t\u00edtulo provisorio.", - "values": [ - "Jueces/zas", - "Destituci\u00f3n de funcionario p\u00fablico" - ] - }, - { - "text": "Los hechos del caso se refieren a la detenci\u00f3n ilegal, tortura y desaparici\u00f3n forzada de Agust\u00edn Goibur\u00fa Gim\u00e9nez, Carlos Jos\u00e9 Mancuello Bareiro y de los hermanos Rodolfo y Benjam\u00edn Ram\u00edrez Villalba, ocurridas durante la dictadura de Alfredo Stroessner en Paraguay y en el marco de la denominada \u201cOperaci\u00f3n C\u00f3ndor\u201d, nombre que se le dio a la alianza que un\u00eda y coordinaba fuerzas de seguridad y servicios de inteligencia de las dictaduras de Chile, Argentina, Uruguay, Paraguay, Bolivia y Brasil.\n\nLa Corte IDH consolid\u00f3 su jurisprudencia respecto al car\u00e1cter continuado o permanente del delito de desaparici\u00f3n forzada, y reconoci\u00f3 que aqu\u00e9l delito, y el consecuente deber de investigar y de sancionar a los responsables, tienen car\u00e1cter de normas inderogables de derecho internacional o jus cogens. La Corte IDH tambi\u00e9n analiz\u00f3 la obligaci\u00f3n de investigar aun despu\u00e9s de la ca\u00edda del r\u00e9gimen dictatorial incluyendo el alcance de la obligaci\u00f3n de cooperaci\u00f3n interestatal que se expresa en la extradici\u00f3n.", - "values": [ - "Desaparici\u00f3n forzada", - "Extradici\u00f3n" - ] - }, - { - "text": "Los hechos que fundamentan la solicitud de protecci\u00f3n de la vida e integridad f\u00edsica de Dencen Andino Alvarado se basan en las amenazas de muerte, coacci\u00f3n e intimidaci\u00f3n por parte de agentes del Estado para evitar su declaraci\u00f3n en instancias nacionales e internacionales, por su car\u00e1cter de testigo ocular de la ejecuci\u00f3n extrajudicial de la ambientalista Blanca Jeannette Kawas Fern\u00e1ndez. ", - "values": [ - "Amenazas y hostigamientos", - "Testigo" - ] - }, - { - "text": "Los hechos que fundamentan la solicitud de protecci\u00f3n en favor de los se\u00f1ores Salvador Jer\u00f3nimo y otros, se refieren al riesgo a la vida e integridad f\u00edsica en raz\u00f3n de su calidad de testigos y miembros activos de la Asociaci\u00f3n para la Justicia y Reconciliaci\u00f3n (AJR), asociaci\u00f3n civil que act\u00faa como querellante en casos de genocidio, delitos de lesa humanidad y cr\u00edmenes de guerra que conocen los tribunales de Guatemala; y su comparecencia \u2013en calidad de testigos u observadores\u2013 en la audiencia p\u00fablica celebrada en la CorteIDH para el caso Masacre Plan de S\u00e1nchez. \n\nEn el a\u00f1o 2006, la Corte IDH extendi\u00f3 la protecci\u00f3n cautelar a los y las integrantes de la Asociaci\u00f3n Civil Equipo de Estudios Comunitarios y Acci\u00f3n Psicosocial (ECAP), quienes apoyan el proceso de reparaci\u00f3n a las v\u00edctimas y sobrevivientes de la Masacre Plan de S\u00e1nchez\n", - "values": [ - "Ejecuci\u00f3n extrajudicial", - "Pueblos ind\u00edgenas", - "Testigo", - "Amenazas y hostigamientos" - ] - }, - { - "text": "Los hechos del caso se refieren a la detenci\u00f3n ilegal de Walter Bulacio, de 17 a\u00f1os de edad, en el contexto de una detenci\u00f3n masiva -pr\u00e1ctica conocida con el nombre de razzia que se amparaba en normas legales vigentes en la ciudad de Buenos Aires- que se llev\u00f3 a cabo en el lugar donde se iba a realizar un concierto de rock.\u00a0\u00a0Bulacio fue trasladado a una comisar\u00eda donde se lo mantuvo incomunicado, sin que le fueran informados los motivos de su detenci\u00f3n ni fuera puesto a disposici\u00f3n de un juez. El joven fue golpeado por agentes policiales, muriendo algunos d\u00edas despu\u00e9s como consecuencia de los mismos.", - "values": [ - "Ni\u00f1ez", - "Tortura y tratos crueles, inhumanos o degradantes", - "Privaci\u00f3n de libertad" - ] - }, - { - "text": "Los hechos del caso se refieren a los actos de hostigamiento y amenazas a la vida y la integridad contra Gladys Lanza Ochoa como consecuencia de su trabajo de protecci\u00f3n y promoci\u00f3n de los derechos humanos como Coordinadora del \"Comit\u00e9 por la Paz Visitaci\u00f3n Padilla\".", - "values": [ - "Defensores/as de derechos humanos", - "Amenazas y hostigamientos" - ] - }, - { - "text": "Los hechos del caso se refieren a la masacre de un grupo de 15 funcionarios judiciales que conformaban una Comisi\u00f3n Judicial (Unidad M\u00f3vil de Investigaci\u00f3n) que en el ejercicio de su funci\u00f3n realizaban una investigaci\u00f3n por la masacre de 19 comerciantes y otros hechos de violencia en la regi\u00f3n del Magdalena Medio. De las 15 v\u00edctimas, 12 fueron ejecutadas y 3 sobrevivieron. \n\n La Corte IDH estableci\u00f3 la responsabilidad del Estado por acciones cometidas por los grupos paramilitares en el contexto de expansi\u00f3n y control territorial contra la insurgencia guerrillera y destac\u00f3 la particular gravedad de los hechos que tuvieron como consecuencia intimidar a los funcionarios del Poder Judicial dedicados a la investigaci\u00f3n de graves violaciones a los derechos humanos. \n\n La Corte IDH desarroll\u00f3 est\u00e1ndares sobre violaci\u00f3n al derecho a la vida de los 3 sobrevivientes, toda vez que no se provoc\u00f3 su muerte -a\u00fan habi\u00e9ndoles ejecutado un \u201ctiro de gracia\u201d- por razones meramente fortuitas. Asimismo analiz\u00f3 la falta de investigaci\u00f3n y la impunidad de los hechos a la luz del est\u00e1ndar de debida diligencia.", - "values": [ - "Ejecuci\u00f3n extrajudicial", - "Jurisdicci\u00f3n militar" - ] - }, - { - "text": "Los hechos que fundamentan la solicitud de protecci\u00f3n se relacionan con amenazas y hostigamientos contra personas que han hecho uso del sistema interamericano de protecci\u00f3n de los derechos humanos; tambi\u00e9n refieren al asesinato de Miguel Angel Pav\u00f3n y del Sargento Jos\u00e9 Isa\u00edas Vilorio testigos en los casos de la desaparici\u00f3n forzada de los se\u00f1ores Vel\u00e1squez Rodr\u00edguez, Fair\u00e9n Garbi, Sol\u00eds Corrales, y God\u00ednez Cruz cuyos casos se encontraban denunciados ante el sistema interamericano. \n\nEl otorgamiento de las medidas buscaba proteger la vida e integridad f\u00edsica de las personas que hab\u00edan rendido su declaraci\u00f3n y aquellos que ser\u00edan llamados a ese efecto. \n", - "values": [ - "Testigo", - "Amenazas y hostigamientos", - "Defensores/as de derechos humanos" - ] - }, - { - "text": "Los hechos del caso se refieren a la detenci\u00f3n ilegal -por una patrulla del ej\u00e9rcito-, y posterior tortura y desaparici\u00f3n forzada a partir del 22 de julio de 1980, de Renato Ticona Estrada, quien estaba en compa\u00f1\u00eda de su hermano Hugo Ticona Estrada, que tambi\u00e9n fue detenido y torturado, y liberado posteriormente. \n\n La Corte IDH reconoci\u00f3 una vez m\u00e1s las caracter\u00edsticas y elementos particulares que posee el delito de desaparici\u00f3n forzada de personas, y entendi\u00f3 que ellas habilitaban al tribunal a declarar violaciones a la libertad personal y a la obligaci\u00f3n de no practicar, permitir ni tolerar la desaparici\u00f3n forzada de personas, tal como consagrado en la Convenci\u00f3n Interamericana sobre Desaparici\u00f3n Forzada de Personas. \n\n Adicionalmente estableci\u00f3 est\u00e1ndares sobre el deber de debida diligencia en la investigaci\u00f3n de desaparici\u00f3n forzada considerando la realizaci\u00f3n de todas las acciones necesarias para determinar el destino o paradero de la persona desaparecida y encontr\u00f3 que los procesos penales iniciados no resultaron eficaces ni fueron realizados en un plazo razonable. La Corte IDH tambi\u00e9n consider\u00f3 que la falta de investigaci\u00f3n, sanci\u00f3n y reparaci\u00f3n por los hechos de tortura derivaba en responsabilidad internacional.", - "values": [ - "Privaci\u00f3n de libertad", - "Desaparici\u00f3n forzada", - "Tortura y tratos crueles, inhumanos o degradantes" - ] - }, - { - "text": "Los hechos del caso se refieren a la detenci\u00f3n de Rigoberto Acosta Calder\u00f3n, de nacionalidad colombiana, efectuada en noviembre de 1998 por la Polic\u00eda Militar de Aduana bajo la sospecha de tr\u00e1fico de drogas. \n\n La Corte IDH estableci\u00f3 est\u00e1ndares sobre prisi\u00f3n preventiva en relaci\u00f3n con el derecho a la presunci\u00f3n de inocencia, y otras violaciones a las garant\u00edas judiciales vinculadas con el plazo razonable del proceso penal, el derecho del inculpado a ser llevado de manera inmediata ante juez competente y ser informado de manera previa y detallada de la acusaci\u00f3n que se le imputa. Finalmente, la Corte IDH hizo referencia al derecho a asistencia consular de las personas extranjeras que son detenidas.", - "values": [ - "Asistencia consular", - "Prisi\u00f3n preventiva" - ] - }, - { - "text": "Los hechos se relacionan con la solicitud de protecci\u00f3n a la vida y la integridad de Eduardo J. Natera Balboa, quien se encontraba detenido en el Centro Penitenciario Regi\u00f3n Oriental \u201cEl Dorado\u201d, en el Estado de Bol\u00edvar, y que fuera trasladado de all\u00ed por miembros de la Guardia Nacional desconoci\u00e9ndose su paradero posterior.", - "values": [ - "Condiciones de detenci\u00f3n" - ] - }, - { - "text": "Los hechos del caso se refieren a la condena a pena de muerte obligatoria de 4 personas por el delito de homicidio. \n\n La Corte IDH desarroll\u00f3 est\u00e1ndares sobre la incompatibilidad de la imposici\u00f3n obligatoria de la pena de muerte y el derecho a la vida y la prohibici\u00f3n de la violaci\u00f3n arbitraria de la vida. Adicionalmente analiz\u00f3 las condiciones de detenci\u00f3n a la luz de la prohibici\u00f3n de tratos crueles, inhumanos y degradantes.", - "values": [ - "Pena de muerte", - "Condiciones de detenci\u00f3n" - ] - }, - { - "text": "Los hechos del caso se relacionan con la detenci\u00f3n -en febrero de 2004- de Ra\u00fal Jos\u00e9 D\u00edaz Pe\u00f1a debida a su presunta participaci\u00f3n en un atentado contra el Consulado de Colombia y en la Oficina de Comercio Internacional del Reino de Espa\u00f1a, en febrero de 2003. \n\n La Corte IDH hizo lugar a la excepci\u00f3n preliminar de falta de agotamiento de recursos internos planteada por el Estado respecto de la prisi\u00f3n preventiva y la duraci\u00f3n del proceso y desarroll\u00f3 est\u00e1ndares sobre condiciones de detenci\u00f3n y atenci\u00f3n m\u00e9dica adecuada.", - "values": [ - "Condiciones de detenci\u00f3n", - "Privaci\u00f3n de libertad", - "Falta de agotamiento de recursos internos" - ] - }, - { - "text": "Los hechos del caso se refieren a la ejecuci\u00f3n extrajudicial del joven Jean Paul Genie Lacayo, de 16 a\u00f1os de edad, por parte de efectivos militares. Tras su muerte se inici\u00f3 una investigaci\u00f3n en el fuero castrense que se extendi\u00f3 por m\u00e1s de 5 a\u00f1os sin que se haya sancionado a los responsables.\n\nLa Corte IDH desarroll\u00f3 est\u00e1ndares acerca de la garant\u00eda del plazo razonable y acerca del concepto de \u201can\u00e1lisis global del procedimiento\u201d en relaci\u00f3n con ciertas conductas de parte de autoridades militares que obstaculizaron y no colaboraron de manera adecuada en las investigaciones.", - "values": [ - "Ejecuci\u00f3n extrajudicial", - "Ni\u00f1ez", - "Jurisdicci\u00f3n militar" - ] - }, - { - "text": "Los hechos del presente caso se refieren a las 2 sanciones de inhabilitaci\u00f3n para el ejercicio de la funci\u00f3n p\u00fablica que el Contralor General de la Rep\u00fablica le aplic\u00f3 a Leopoldo L\u00f3pez Mendoza en el marco del tr\u00e1mite de procesos administrativos. Como consecuencia de estas sanciones\u00a0L\u00f3pez Mendoza qued\u00f3 impedido de registrar su candidatura para cargos de elecci\u00f3n popular en el proceso electoral del a\u00f1o 2008. \n\n La Corte IDH analiz\u00f3 el alcance de las restricciones al derecho pol\u00edtico de postularse a cargos p\u00fablicos (sufragio pasivo) derivadas de decisiones administrativas. Asimismo desarroll\u00f3 est\u00e1ndares sobre garant\u00edas en el marco de procedimientos administrativos, en particular respecto del deber de motivaci\u00f3n; adicionalmente aplic\u00f3 el \"test de previsibilidad\" en el an\u00e1lisis de la discrecionalidad otorgada a la autoridad.", - "values": [ - "Derechos pol\u00edticos", - "Proceso administrativo" - ] - }, - { - "text": "Los hechos que fundamentan la solicitud de protecci\u00f3n de la vida e integridad de Helen Mack Chang, sus familiares e integrantes de la Fundaci\u00f3n Myrna Mack, se relacionan con una serie de amenazas, hostigamientos e intimidaciones derivados del tr\u00e1mite de los procesos penales \u2013y la cercan\u00eda del debate oral en juicio\u2013 destinados a establecer la responsabilidad por la ejecuci\u00f3n extrajudicial de la antrop\u00f3loga Myrna Mack Chang.\n\nEn enero de 2015, la CorteIDH levanta parcialmente las medidas de protecci\u00f3n, manteniendolas respecto de Helen Mack Chang e integrantes de la Fundaci\u00f3n Myrna Mack.", - "values": [ - "Defensores/as de derechos humanos", - "Amenazas y hostigamientos" - ] - }, - { - "text": "Los hechos del caso se refieren al asesinato del defensor de derechos humanos A.A. ocurrido el 20 de diciembre de 2004, y que ha quedado en la impunidad como consecuencia de las irregularidades y la falta de diligencia estatal en las investigaciones. \n\nLa CorteIDH analiz\u00f3 los hechos en el contexto de amenazas y ataques a la vida y la integridad personal de defensores y defensoras de derechos humanos -con posterioridad a la firma de los acuerdos de paz- en particular de quienes trabajaban por la protecci\u00f3n y promoci\u00f3n de los derechos econ\u00f3micos, sociales y culturales y de la b\u00fasqueda de verdad y justicia por las graves violaciones a los derechos humanos cometidas durante el conflicto armado. \n\nLa CorteIDH desarroll\u00f3 est\u00e1ndares sobre responsabilidad estatal respecto de la obligaci\u00f3n de garantizar los derechos a la vida y la integridad, y sobre los requisitos de idoneidad que requieren las medidas destinadas a brindar una protecci\u00f3n adecuada y efectiva a las personas que defienden derechos humanos.", - "values": [ - "Ejecuci\u00f3n extrajudicial", - "Defensores/as de derechos humanos", - "Amenazas y hostigamientos" - ] - }, - { - "text": "Los hechos del caso se refieren a la muerte de Bernab\u00e9 Balde\u00f3n Garc\u00eda -campesino de 68 a\u00f1os de edad- quien fue detenido y torturado por efectivos militares en el Departamento de Ayacucho, al inicio de la d\u00e9cada de los 90. \n\n La Corte IDH entendi\u00f3 que durante la d\u00e9cada del 80 y hasta finales del 2000, se vivi\u00f3 en Per\u00fa un conflicto entre grupos armados y agentes de las fuerzas policiales y militares. Este conflicto se agudiz\u00f3 mediante una pr\u00e1ctica sistem\u00e1tica de violaciones a los derechos humanos -entre ellas ejecuciones extrajudiciales y desapariciones forzadas- de personas sospechosas de pertenecer a grupos pol\u00edticos opositores. Estas pr\u00e1cticas fueron realizadas por agentes estatales siguiendo \u00f3rdenes de jefes militares y policiales. \n\n La Corte IDH se\u00f1al\u00f3 las deficiencias en la investigaci\u00f3n judicial sobre la muerte y tortura de la v\u00edctima y la impunidad en que quedaron los hechos.", - "values": [ - "Privaci\u00f3n de libertad", - "Ejecuci\u00f3n extrajudicial", - "Tortura y tratos crueles, inhumanos o degradantes" - ] - }, - { - "text": "Los hechos del caso se refieren a la ejecuci\u00f3n extrajudicial de Wilmer Zambrano, Segundo Olmedo y Jos\u00e9 Miguel Caicedo, en marzo de 1993, y la falta de investigaci\u00f3n y sanci\u00f3n de los responsables. Las v\u00edctimas fueron ejecutadas durante un operativo de las Fuerzas Armadas y la Polic\u00eda Nacional de Ecuador en el contexto de un clima de inseguridad y conmoci\u00f3n interna que llev\u00f3 el Presidente de la Rep\u00fablica a dictar el Decreto N\u00b0 86 del 3 de setiembre de 1992, disponiendo la intervenci\u00f3n de las Fuerzas Armadas. \n\n La Corte IDH estableci\u00f3 est\u00e1ndares sobre el alcance de la suspensi\u00f3n de garant\u00edas en estados de excepci\u00f3n y sobre criterios para el uso leg\u00edtimo de la fuerza por parte de fuerzas de seguridad del Estado.", - "values": [ - "Ejecuci\u00f3n extrajudicial", - "Estado de excepci\u00f3n", - "Uso de la fuerza" - ] - }, - { - "text": "Los hechos del caso se refieren a la desaparici\u00f3n forzada de V\u00edctor Neira Alegr\u00eda, Edgar Zenteno Escobar y William Zenteno Escobar tras un operativo militar realizado en el Establecimiento Penal de \u201cEl Front\u00f3n\u201d en el que se encontraban detenidos en calidad de procesados como presuntos autores del delito de terrorismo. Dicho operativo trajo como consecuencia que el Penal quedara bajo el Comando Conjunto de las Fuerzas Armadas en calidad de zona militar restringida. Posteriormente, la Marina orden\u00f3 su demolici\u00f3n y, desde entonces, las v\u00edctimas desaparecieron resultando infructuosos los habeas corpus presentados por sus familiares.", - "values": [ - "Ley antiterrorista", - "Desaparici\u00f3n forzada" - ] - }, - { - "text": "Los hechos del caso se refieren a la desaparici\u00f3n forzada de 26 personas, la ejecuci\u00f3n extrajudicial de Rudy Figueroa Mu\u00f1oz y detenci\u00f3n y tortura de una ni\u00f1a. Los datos de las v\u00edctimas fueron encontrados en los registros del denominado \u201cDiario Militar,\u201d documento que conten\u00eda informaci\u00f3n confidencial de inteligencia militar, as\u00ed como listas sobre organizaciones de derechos humanos y medios de prensa. La Corte IDH ubic\u00f3 los hechos en el marco de una pr\u00e1ctica estatal sistem\u00e1tica de desaparici\u00f3n forzada, que eran parte de una pol\u00edtica de ataque a las personas identificadas como enemigos internos dentro de la llamada \"Doctrina de Seguridad Nacional\".\n\nLa Corte IDH aplic\u00f3 est\u00e1ndares acerca de las m\u00faltiples violaciones de derechos en que ese traduce la desaparici\u00f3n forzada, resaltando que a la \u00e9poca de los hechos exist\u00eda un patr\u00f3n sistem\u00e1tico de desaparici\u00f3n forzada y de utilizaci\u00f3n de centros clandestinos de detenci\u00f3n.\n\nLa Corte IDH desarroll\u00f3 cuestiones referidas a la violaci\u00f3n de la libertad de asociaci\u00f3n y de expresi\u00f3n de las v\u00edctimas, y est\u00e1ndares acerca de la obligaci\u00f3n especial de investigar con debida diligencia y en plazo razonable los hechos derivados de la desaparici\u00f3n forzada, en particular hizo foco en relaci\u00f3n con la violencia sexual.", - "values": [ - "Desaparici\u00f3n forzada", - "Libertad de asociaci\u00f3n", - "Violencia de g\u00e9nero", - "Ni\u00f1ez", - "Ejecuci\u00f3n extrajudicial" - ] - }, - { - "text": "Los hechos del caso se refieren a la violaci\u00f3n de garant\u00edas judiciales de Oscar Enrique Barreto Leiva, quien siendo Director General Sectorial de Administraci\u00f3n y Servicios del Ministerio de la Secretaria de la Presidencia fue condenado por el delito de malversaci\u00f3n gen\u00e9rica agravada en grado de complicidad, en el a\u00f1o 1989. \n\n La Corte IDH estableci\u00f3 est\u00e1ndares sobre el derecho a la defensa, a ser juzgado por tribunales competentes y a recurrir el fallo. Asimismo refiri\u00f3 criterios sobre prisi\u00f3n preventiva.", - "values": [ - "Prisi\u00f3n preventiva", - "Acceso al recurso", - "Privaci\u00f3n de libertad" - ] - }, - { - "text": "Los hechos del caso se refieren a la masacre -ocurrida en noviembre de 1986- de m\u00e1s de 40 habitantes de la aldea de Moiwana, con importantes p\u00e9rdidas de sus bienes y provocando el desplazamiento forzado de los sobrevivientes. \n\n Por cuestiones de competencia temporal, la Corte IDH focaliz\u00f3 su an\u00e1lisis en las violaciones a los derechos humanos que se produjeron como consecuencia de la masacre. En particular el desplazamiento forzado de los miembros de la Comunidad por el temor a volver a sus territorios ancestrales, y las afectaciones al uso y goce de la propiedad comunal. Adicionalmente analiz\u00f3 la respuesta judicial a la luz del est\u00e1ndar de debida diligencia.", - "values": [ - "Desplazamiento forzado", - "Pueblos ind\u00edgenas", - "Propiedad" - ] - }, - { - "text": "El caso se refiere a la interceptaci\u00f3n y monitoreo -entre abril y junio de 1999-, de las lineas telef\u00f3nicas de las v\u00edctimas -integrantes de las organizaciones ADECON y COANA- por parte de la Polic\u00eda Militar del Estado de Paran\u00e1, y la posterior divulgaci\u00f3n de las conversacones telef\u00f3nicas obtenidas, asi como la denegaci\u00f3n de justicia y reparaci\u00f3n adecuada por estos hechos. \n\nLa CorteIDH desarroll\u00f3 est\u00e1ndares sobre el derecho a la vida privada, la honra y la reputaci\u00f3n en relaci\u00f3n con la interceptaci\u00f3n, grabaci\u00f3n y divulgaci\u00f3n de conversaciones telef\u00f3nicas. Adicionalmente, la CorteIDH relacion\u00f3 este an\u00e1lisis con el derecho a la libertad de asociaci\u00f3n y examin\u00f3 la llamada \u201ccl\u00e1usula federal\u201d.", - "values": [ - "Interceptaci\u00f3n de comunicaciones", - "Libertad de asociaci\u00f3n" - ] - }, - { - "text": "Los hechos del caso se refieren a las ejecuciones extrajudiciales \u2013ocurridas en el Estado de Aragua durante el a\u00f1o 1996- de los hermanos Igmar Alexander \u2013de 18 a\u00f1os de edad- y Eduardo Jos\u00e9 \u2013de 17 a\u00f1os- por parte de fuerzas de seguridad. Estos hechos ocurrieron en un contexto de abusos policiales vigente en la \u00e9poca, en varios estados de Venezuela. \n\nLa CorteIDH aplic\u00f3 criterios sobre uso de la fuerza y armas de fuego por parte de funcionarios de las fuerzas de seguridad, y sobre las obligaciones estatales de debida diligencia y humanidad posteriores al despliegue de fuerza. En relaci\u00f3n con Eduardo Jos\u00e9 -quien era menor de edad al momento de su ejecuci\u00f3n- , la CorteIDH desarroll\u00f3 tambi\u00e9n est\u00e1ndares sobre las circunstancias de su privaci\u00f3n de libertad a la luz de la protecci\u00f3n especial que le cab\u00eda por su condici\u00f3n de ni\u00f1o. Asimismo, en ambos casos evalu\u00f3 las investigaciones llevadas adelante desde el est\u00e1ndar de la debida diligencia y el plazo razonable. \n", - "values": [ - "Ejecuci\u00f3n extrajudicial", - "Uso de la fuerza", - "Ni\u00f1ez", - "Privaci\u00f3n de libertad" - ] - }, - { - "text": "Los hechos del caso se relacionan con graves actos de violencia y hostigamiento por parte de grupos paramilitares a los habitantes de la Comunidad de Paz de San Jos\u00e9 de Apartad\u00f3, en el departamento de Antioquia.", - "values": [ - "Amenazas y hostigamientos" - ] - }, - { - "text": "Los hechos del caso se refieren a la afectaci\u00f3n a la vida, la integridad personal, la identidad cultural y su relaci\u00f3n con el territorio del Pueblo Ind\u00edgena Kankuamo. \n\nPor su ubicaci\u00f3n geogr\u00e1fica, el Pueblo Kankuamo ha quedado expuesto a actos constantes de violencia y amenazas por parte de grupos armados que operaban en la zona. Esta situaci\u00f3n ha derivado en el asesinato de varios de sus integrantes y ha provocado el desplazamiento forzado de numerosas familias con el fin de proteger sus vidas.", - "values": [ - "Pueblos ind\u00edgenas", - "Desplazamiento forzado", - "Amenazas y hostigamientos" - ] - }, - { - "text": "Los hechos del caso se refieren a la desaparici\u00f3n forzada de Mar\u00eda Claudia Garc\u00eda Iruretagoyena de Gelman, as\u00ed como de la supresi\u00f3n y sustituci\u00f3n de identidad -entendida como una forma de desaparici\u00f3n forzada- de su hija nacida en cautiverio Mar\u00eda Macarena Gelman Garc\u00eda, ocurridos durante la dictadura que gobern\u00f3 Uruguay entre 1973 y 1985. Los mismos se dieron como parte de pr\u00e1cticas sistem\u00e1ticas de graves violaciones a los derechos humanos en el marco de la doctrina de seguridad nacional y de la denominada \u201cOperaci\u00f3n C\u00f3ndor\u201d, nombre que se di\u00f3 a la alianza que un\u00eda y coordinaba fuerzas de seguridad y servicios de inteligencia de las dictaduras de Chile, Argentina, Uruguay, Paraguay, Bolivia y Brasil. \n\n El caso cuestion\u00f3 la validez y aplicaci\u00f3n de la Ley de Caducidad de la Pretensi\u00f3n Punitiva del Estado -aun trat\u00e1ndose de una ley respaldada por refer\u00e9ndum y plebiscito-, la que por sus efectos constituye una ley de amnist\u00eda que impide la investigaci\u00f3n de los hechos y la identificaci\u00f3n, juzgamiento y eventual sanci\u00f3n de los responsables de graves violaciones a los derechos humanos.\n\n La Corte IDH evidenci\u00f3 la afectaci\u00f3n diferenciada derivada de la instrumentalizaci\u00f3n del cuerpo de las mujeres, as\u00ed como la obligaci\u00f3n estatal de adoptar las medidas adecuadas para garantizar el acceso t\u00e9cnico y sistematizado de la informaci\u00f3n sobre violaciones a los derechos humanos que se encuentra bajo su custodia.", - "values": [ - "Amnist\u00eda", - "Ni\u00f1ez", - "Desaparici\u00f3n forzada", - "Identidad" - ] - }, - { - "text": "Los hechos se relacionan con la solicitud de protecci\u00f3n de la vida, la integridad y la libertad de expresi\u00f3n de las personas que trabajan en los medios de comunicaci\u00f3n El Nacional y As\u00ed es la Vida.", - "values": [ - "Periodistas", - "Amenazas y hostigamientos" - ] - }, - { - "text": "Los hechos del caso se refieren a la ejecuci\u00f3n extrajudicial de 14 pescadores por parte de efectivos militares y policiales pertenecientes al \u201cComando Espec\u00edfico Jos\u00e9 Antonio P\u00e1ez\u201d (CEJAP), en el marco de una operaci\u00f3n denominada \u201cAnguila III\u201d. El CEJAP aleg\u00f3 posteriormente que los pescadores eran guerrilleros colombianos que estar\u00edan preparando acciones en el territorio venezolano, y present\u00f3 los hechos como resultado de un enfrentamiento. \n\n Venezuela reconoci\u00f3 su responsabilidad internacional por los hechos denunciados y las violaciones de derecho alegadas.", - "values": [ - "Ejecuci\u00f3n extrajudicial" - ] - }, - { - "text": "La solicitud de protecci\u00f3n en favor de los se\u00f1ores Mauricio Herrera Ulloa y Fern\u00e1n Vargas Rohrmoser, periodista y representante legal del peri\u00f3dico \u201cLa Naci\u00f3n\u201d de Costa Rica, respectivamente, se fundament\u00f3 en la protecci\u00f3n a su libertad de expresi\u00f3n, para lo cual era necesaria la suspensi\u00f3n de la ejecuci\u00f3n de la sentencia condenatoria \u2013y la consiguiente inscripci\u00f3n del Sr. Herrera Ulloa en el Registro Judicial de Delincuentes- hasta que el caso fuera resuelto de manera definitiva por los \u00f3rganos del sistema interamericano de derechos humanos. ", - "values": [ - "Libertad de expresi\u00f3n", - "Periodistas" - ] - }, - { - "text": "Los hechos del presente caso se relacionan con la ejecuci\u00f3n extrajudicial de 35 personas, la desaparici\u00f3n forzada de 2 y lesiones provocadas en otras 3, ocurridas como consecuencia del accionar -caracterizado por el uso desproporcionado de la fuerza armada en barrios populares- de integrantes de fuerzas de seguridad estatales. Las investigaciones judiciales -muchas de ellas abiertas en jurisdicci\u00f3n militar- no hab\u00edan establecido responsabilidades por lo ocurrido. \n\n Los hechos de caso ocurrieron a inicios de 1989 en un contexto de disturbios p\u00fablicos que llevaron al Poder Ejecutivo a emitir el Decreto N\u00b0 49 del 28 de febrero de 1989 suspendiendo algunas garant\u00edas individuales por 23 d\u00edas. \n\n El Estado venezolano reconoci\u00f3 su responsabilidad internacional por los hechos del caso, el que fue aceptado por la Corte IDH.", - "values": [ - "Ejecuci\u00f3n extrajudicial", - "Desaparici\u00f3n forzada", - "Jurisdicci\u00f3n militar", - "Uso de la fuerza", - "Estado de excepci\u00f3n" - ] - }, - { - "text": "Los hechos del caso se relacionan con los procesos penales tramitados en raz\u00f3n del homicidio del Sr. Francisco Garc\u00eda Valle, esposo de la Sra. Mar\u00eda Luisa Acosta Castell\u00f3n, conocida defensora de los derechos de los pueblos ind\u00edgenas en Nicaragua.\n\nLa CorteIDH analiz\u00f3 la respuesta investigativa y judicial del Estado y la diligencia con la que abordaron todas las hip\u00f3tesis vinculadas con el homicidio, en particular respecto de que el m\u00f3vil del homicidio estuviera vinculado con la actividad como defensora de derechos humanos de la Sra. Acosta. \n", - "values": [ - "Defensores/as de derechos humanos" - ] - }, - { - "text": "Los hechos del caso se refieren a la condena penal impuesta al periodista Mauricio Herrero Ulloa por difamaci\u00f3n, y la condena civil impuesta solidariamente al periodista y al diario \u201cLa Naci\u00f3n\u201d por resarcimiento de da\u00f1o moral, por la publicaci\u00f3n de una serie de art\u00edculos period\u00edsticos en los que se vinculaba a un diplom\u00e1tico costarricense a la realizaci\u00f3n de diversas conductas il\u00edcitas. \n\n La Corte IDH analiz\u00f3 la validez de la tipificaci\u00f3n penal de los delitos de difamaci\u00f3n, calumnias e injurias cuando se trata de cuestiones de inter\u00e9s p\u00fablico, relativas a funcionarios p\u00fablicos. La Corte IDH se\u00f1al\u00f3 la especial importancia de la libertad de expresi\u00f3n en una sociedad democr\u00e1tica, y determin\u00f3 el contenido de ese derecho, as\u00ed como los t\u00e9rminos bajo los cuales deben analizarse sus restricciones. \n\n Asimismo, la Corte IDH desarroll\u00f3 est\u00e1ndares y determin\u00f3 el contenido del derecho a recurrir el fallo, estableciendo que este supone la existencia de un recurso amplio que permita al tribunal realizar un an\u00e1lisis comprensivo e integral de todas las cuestiones debatidas y analizadas en el tribunal inferior.", - "values": [ - "Libertad de expresi\u00f3n", - "Acceso al recurso" - ] - }, - { - "text": "Los hechos del caso se refieren a las violaciones a los derechos humanos del Sr. Wong Ho Wing \u2013de nacionalidad china- desde su detenci\u00f3n en el a\u00f1o 2008 y en relaci\u00f3n con el proceso de extradici\u00f3n al que fue afectado por encontrarse requerido a nivel internacional \u2013por medio de una alerta roja de INTERPOL- por su participaci\u00f3n en delitos de contrabando. \n\nEn su Sentencia, la CorteIDH analiza las garant\u00edas judiciales y el debido proceso en tr\u00e1mites de extradici\u00f3n y las obligaciones derivadas del principio de no devoluci\u00f3n en el contexto de posibles riesgos a la vida y la integridad personal \n", - "values": [ - "Extradici\u00f3n", - "Migrantes" - ] - }, - { - "text": "Los hechos del caso se refieren a la violaci\u00f3n del derecho de libertad de expresi\u00f3n de Jorge Fontevecchia y H\u00e9ctor D`Amico, quienes eran director y editor, respectivamente, de la revista Noticias -publicaci\u00f3n semanal de inter\u00e9s general-. La violaci\u00f3n se gener\u00f3 en virtud de una condena civil por su responsabilidad en la publicaci\u00f3n de dos art\u00edculos que hac\u00edan referencia a la existencia de un hijo no reconocido de Carlos Sa\u00fal Menem, entonces Presidente de la Naci\u00f3n.\n\nLa Corte IDH reiter\u00f3 la necesidad de aplicar un test de proporcionalidad ante conflictos entre el derecho a la libertad de expresi\u00f3n y la protecci\u00f3n de la intimidad. En el caso, estableci\u00f3 que las publicaciones realizadas trataban sobre asuntos de inter\u00e9s p\u00fablico, por lo que no puede considerarse que hubiera una injerencia arbitraria en la vida privada del Sr. Menem\n\n.", - "values": [ - "Libertad de expresi\u00f3n" - ] - }, - { - "text": "Los hechos del caso se refieren a la condena judicial por el delito de difamaci\u00f3n e injurias impuesta a Ricardo Canese por las manifestaciones que realiz\u00f3 durante el debate electoral cuestionando la idoneidad e integridad de un candidato presidencial por su presunta vinculaci\u00f3n en hechos de corrupci\u00f3n.\n\nLa Corte IDH desarroll\u00f3 est\u00e1ndares sobre el contenido de la libertad de pensamiento y expresi\u00f3n -en su dimensi\u00f3n individual y social- , en particular en el marco de una campa\u00f1a electoral. La Corte IDH reconoci\u00f3 que durante el proceso electoral resulta indispensable que se proteja y garantice el ejercicio de la libertad de expresi\u00f3n y m\u00e1s a\u00fan cuando se trata de declaraciones que ata\u00f1en a asuntos de inter\u00e9s p\u00fablico y sobre un funcionario p\u00fablico, como realizadas por Canese. \n\nLa Corte IDH tambi\u00e9n desarroll\u00f3 est\u00e1ndares sobre restricciones al derecho a la circulaci\u00f3n a la luz de criterios de legalidad, necesidad y proporcionalidad.", - "values": [ - "Libertad de expresi\u00f3n" - ] - }, - { - "text": "Los hechos del caso se relacionan con las condiciones de detenci\u00f3n de las personas privadas de libertad en la Penitenciaria de Araraquara, asi como la de las personas que pudieran ingresar a futuro en calidad de reclusos o detenidos.", - "values": [ - "Condiciones de detenci\u00f3n" - ] - }, - { - "text": "Los hechos del caso se refieren a la desaparici\u00f3n forzada de Marco Molina Theissen, un ni\u00f1o de 14 a\u00f1os de edad secuestrado de la casa de sus padres por miembros del Ej\u00e9rcito de Guatemala en octubre de 1981, en el contexto del conflicto armado interno que padeci\u00f3 el pa\u00eds.\n\nEl Estado realiz\u00f3 un reconocimiento de responsabilidad internacional respecto de los hechos, el que fue admitido por la Corte IDH en su Resoluci\u00f3n del 26 de abril de 2004.", - "values": [ - "Ni\u00f1ez", - "Desaparici\u00f3n forzada" - ] - }, - { - "text": "Los hechos del caso se refieren al procedimiento administrativo llevado adelante contra la Sra. Olga Yolanda Maldonado Ordo\u00f1ez -funcionaria de la Oficina del Procurador de los Derechos Humanos de Guatemala- quien fue destituida por un acto administrativo violatorio de las debidas garant\u00edas. \n\nLa CorteIDH aplic\u00f3 -para el an\u00e1lisis de los procedimientos administrativos- est\u00e1ndares sobre garant\u00edas judiciales y acceso a recursos efectivos. \n", - "values": [ - "Destituci\u00f3n de funcionario p\u00fablico", - "Proceso administrativo" - ] - }, - { - "text": "Los hechos del caso se refieren a la falta de atenci\u00f3n m\u00e9dica adecuada que caus\u00f3 la muerte de Pedro Vera Vera, quien estaba bajo custodia del Estado. La v\u00edctima recibi\u00f3 un impacto de bala mientras era perseguido por un grupo de personas y polic\u00edas tras ser sorprendido robando. Luego de su detenci\u00f3n -en abril de 1993-, fue ingresado a un hospital p\u00fablico. Al d\u00eda siguiente fue dado de alta por considerar que su herida no requer\u00eda hospitalizaci\u00f3n y trasladado al Centro de Detenci\u00f3n Provisional de Santo Domingo. 4 d\u00edas despu\u00e9s fue reingresado al Hospital donde finalmente falleci\u00f3. \n\n La Corte IDH determin\u00f3 que la deficiente y demorada atenci\u00f3n m\u00e9dica dada a la v\u00edctima le caus\u00f3 un deterioro en su estado f\u00edsico que lo llevo a la muerte, y calific\u00f3 la conducta estatal como trato inhumano y degradante. Adicionalmente, tambi\u00e9n estableci\u00f3 responsabilidad por el incumplimiento del deber de investigar ex officio la muerte de Vera Vera.", - "values": [ - "Condiciones de detenci\u00f3n", - "Salud", - "Tortura y tratos crueles, inhumanos o degradantes" - ] - }, - { - "text": "Los hechos del caso se refieren a vulneraci\u00f3n de garant\u00edas en el proceso penal llevado a cabo en contra Ferm\u00edn Ram\u00edrez, y que desemboc\u00f3 en una sentencia condenatoria a pena de muerte por la violaci\u00f3n y muerte de una menor.\n\nLa Corte IDH desarroll\u00f3 est\u00e1ndares acerca del principio de coherencia o correlaci\u00f3n entre la acusaci\u00f3n y la sentencia y su vinculaci\u00f3n con el derecho a la defensa y sobre la compatibilidad del criterio de peligrosidad del agente para la calificaci\u00f3n t\u00edpica de los hechos con el principio de legalidad.", - "values": [ - "Pena de muerte" - ] - }, - { - "text": "Los hechos del caso se relacionan con las amenazas y hostigamientos que sufr\u00edan integrantes del Comit\u00e9 C\u00edvico por los Derechos Humanos del Meta y sus familias, por parte de grupos paramilitares. Como consecuencia de eso, algunos de ellos fueron ejecutados y otros obligados a desplazarse para posteriormente solicitar asilo en el extranjero.", - "values": [ - "Amenazas y hostigamientos", - "Defensores/as de derechos humanos" - ] - }, - { - "text": "Los hechos del caso se refieren a la ejecuci\u00f3n extrajudicial del senador Manuel Cepeda Vargas ocurrida el 9 de agosto de 1994 en la ciudad de Bogot\u00e1 y la falta de investigaci\u00f3n y sanci\u00f3n de los responsables del crimen. El senador era adem\u00e1s un l\u00edder pol\u00edtico y miembro de la Uni\u00f3n Patri\u00f3tica (UP) y del Partido Comunista, y su ejecuci\u00f3n extrajudicial se explica por su militancia pol\u00edtica de oposici\u00f3n y se enmarca en un contexto de violencia sistem\u00e1tica contra los miembros de la UP. \n\n La Corte IDH se\u00f1al\u00f3 la importancia y relaci\u00f3n de los derechos a la libertad de expresi\u00f3n, libertad de asociaci\u00f3n y derechos pol\u00edticos en una sociedad democr\u00e1tica y de manera especial analiza la obligaci\u00f3n estatal de garantizar la participaci\u00f3n efectiva de grupos y personas que expresen voces opositoras en tanto elementos imprescindibles para una sociedad democr\u00e1tica, y de atender la situaci\u00f3n de vulnerabilidad en que se encuentran los integrantes de ciertos grupos o sectores sociales.", - "values": [ - "Ejecuci\u00f3n extrajudicial", - "Democracia", - "Derechos pol\u00edticos" - ] - }, - { - "text": "Los hechos del caso se refieren a la detenci\u00f3n ilegal, tortura y posterior muerte de Asok Gangaram Panday, por parte de la Polic\u00eda Militar. \n\n La Corte IDH estableci\u00f3 est\u00e1ndares sobre detenciones ilegales y arbitrarias.", - "values": [ - "Privaci\u00f3n de libertad", - "Tortura y tratos crueles, inhumanos o degradantes" - ] - }, - { - "text": "Los hechos del caso se refieren a las amenazas a la vida, la integridad y la seguridad de testigos, familiares, integrantes de organismos de derechos humanos y jueces de Chunim\u00e1 en el Departamento de El Quich\u00e9, como consecuencia de la actuaci\u00f3n de patrullas civiles de la zona.", - "values": [ - "Defensores/as de derechos humanos", - "Amenazas y hostigamientos" - ] - }, - { - "text": "Los hechos del caso se refieren a las masacres ocurridas en junio de 1996 y octubre de 1997 en los corregimientos de La Granja y El Aro, respectivamente, en el Municipio de Ituango, departamento de Antioquia. El asesinato selectivo de 19 campesinos, entre ellos 1 ni\u00f1o y 3 mujeres, fue consecuencia de la incursi\u00f3n paramilitar ocurrida en ambos corregimientos con el apoyo y tolerancia de los miembros de la fuerza p\u00fablica. Muchas de estas personas antes de ser asesinadas fueron torturadas, se saquearon sus viviendas, y una gran parte del casco urbano fue destruido, obligando al desplazamiento masivo de m\u00e1s de 700 campesinos. \n\n Los hechos de este caso ilustran las graves violaciones de derechos humanos sufridas por la poblaci\u00f3n civil en el marco del conflicto armado colombiano, como consecuencia del accionar conjunto entre los grupos paramilitares y la fuerza p\u00fablica. En tal sentido, la Corte IDH se refiri\u00f3 de manera espec\u00edfica a los efectos negativos que sufri\u00f3 la poblaci\u00f3n como consecuencia de la destrucci\u00f3n y quema de las viviendas y el posterior desplazamiento forzado masivo que sufrieron las v\u00edctimas, y sent\u00f3 base jurisprudencial respecto del derecho a la honra y la dignidad y la prohibici\u00f3n de esclavitud o servidumbre. \n\n La Corte IDH determin\u00f3 la responsabilidad del Estado colombiano por haber propiciado la creaci\u00f3n de los grupos de autodefensas \u201cparamilitares\u201d y con ello haber creado una situaci\u00f3n de riesgo para sus habitantes y no haber adoptado medidas necesarias \u00a0ni suficientes para evitar que se perpetraran las masacres.", - "values": [ - "Ejecuci\u00f3n extrajudicial", - "Tortura y tratos crueles, inhumanos o degradantes", - "Desplazamiento forzado", - "Esclavitud" - ] - }, - { - "text": "Los hechos del caso se relacionan con el despido -en junio de 1989- del Sr. Alfredo Lagos del Campo, presidente del Comit\u00e9 Electoral de la Comunidad Industrial de la empresa Ceper-Pirelli, como consecuencia de declaraciones realizadas durante una entrevista con la revista La Raz\u00f3n en la que denunci\u00f3 actos de injerencia indebida de los empleadores en las organizaciones representativas de los trabajadores en la empresa. El despido fue posteriormente confirmado por los tribunales nacionales.\n\nEn su Sentencia, la CorteIDH analiz\u00f3 el ejercicio del derecho a la libertad de pensamiento y expresi\u00f3n en contextos laborales y estableci\u00f3 violaciones espec\u00edficas a los derechos econ\u00f3micos, sociales y culturales protegidos en el art\u00edculo 26 de la CADH. Adicionalmente, estableci\u00f3 violaciones al acceso a la justicia en la tutela de la estabilidad laboral. \n", - "values": [ - "Derechos laborales", - "Libertad de expresi\u00f3n", - "Sindicalismo", - "Tutela judicial efectiva" - ] - }, - { - "text": "Los hechos del caso se refieren a los tratos crueles, inhumanos y degradantes que sufrieron Teodoro Cabrera Garc\u00eda y Rodolfo Montiel Flores mientras se encontraban detenidos bajo custodia del Ej\u00e9rcito por los presuntos delitos de porte de armas de fuego de uso exclusivo del Ej\u00e9rcito sin licencia y de siembra de amapola y marihuana, as\u00ed como la violaci\u00f3n de garant\u00edas judiciales durante el proceso penal que se adelant\u00f3 en su contra.\n\nLa Corte IDH ubic\u00f3 los hechos en un contexto de importante presencia militar en la zona de Guerrero, durante los a\u00f1os 90, como respuesta estatal al narcotr\u00e1fico y a la presencia de grupos armados como el Ej\u00e9rcito Zapatista de Liberaci\u00f3n Nacional (EZLN) y el Ej\u00e9rcito Popular Revolucionario (EPR).\n\nLa Corte IDH desarroll\u00f3 est\u00e1ndares acerca del deber de investigar actos de tortura, la exclusi\u00f3n de las pruebas obtenidas mediante coacci\u00f3n y la competencia de la jurisdicci\u00f3n penal militar para conocer en ese tipo de actuaciones.", - "values": [ - "Condiciones de detenci\u00f3n", - "Jurisdicci\u00f3n militar", - "Tortura y tratos crueles, inhumanos o degradantes" - ] - }, - { - "text": "Los hechos que fundamentan la solicitud de protecci\u00f3n de la vida e integridad de Lysias Fleury, miembro de la Comisi\u00f3n Episcopal Justicia y Paz; se relacionan con actos de intimidaci\u00f3n y amenazas recibidos por su trabajo como defensor de derechos humanos. ", - "values": [ - "Defensores/as de derechos humanos", - "Amenazas y hostigamientos" - ] - }, - { - "text": "Los hechos del presente caso se refieren a la ejecuci\u00f3n extrajudicial y tortura -por parte de fuerzas militares- de un grupo de m\u00e1s de 20 personas debido a su supuesta vinculaci\u00f3n al Comando de la Selva. \n\n Frente a la denuncia por estos hechos, el Estado realiz\u00f3 un reconocimiento de responsabilidad internacional y la Corte decidi\u00f3 dejar abierto el procedimiento para los efectos de las reparaciones y costas.", - "values": [ - "Ejecuci\u00f3n extrajudicial", - "Tortura y tratos crueles, inhumanos o degradantes" - ] - }, - { - "text": "Los hechos del caso se refieren al secuestro seguido de tortura y ejecuci\u00f3n extrajudicial de Sa\u00fal Isaac Cantoral Huaman\u00ed y Consuelo Trinidad Garc\u00eda Santa Cruz, ambos l\u00edderes sindicales vinculados a la actividad minera. \n\n La Corte IDH consider\u00f3 que durante la d\u00e9cada del 80 y hasta finales del 2000, se vivi\u00f3 en Per\u00fa un conflicto entre grupos armados y agentes de las fuerzas policiales y militares. Este conflicto se agudiz\u00f3 mediante una pr\u00e1ctica sistem\u00e1tica de violaciones a los derechos humanos -entre ellas ejecuciones extrajudiciales y desapariciones forzadas- de personas sospechosas de pertenecer a grupos pol\u00edticos opositores que fueron realizadas por agentes estatales siguiendo \u00f3rdenes de jefes militares y policiales. \n\n La Corte IDH evidenci\u00f3 la represi\u00f3n focalizada sobre l\u00edderes sindicales resaltando la obligaci\u00f3n estatal de investigar con debida diligencia y en forma efectiva este tipo de cr\u00edmenes, debido al efecto amedrentador \u00a0de la impunidad que impide el libre ejercicio de los derechos sindicales.", - "values": [ - "Ejecuci\u00f3n extrajudicial", - "Tortura y tratos crueles, inhumanos o degradantes", - "Sindicalismo", - "Defensores/as de derechos humanos" - ] - }, - { - "text": "Los hechos del caso se refieren a la condena de Guillermo Jos\u00e9 Maqueda en el marco de un procedimiento penal especial llamado Ley de Defensa de la Democracia, que lo priv\u00f3 del derecho a acceder a un recurso de revisi\u00f3n amplio. La CIDH desisti\u00f3 posteriormente de la acci\u00f3n en raz\u00f3n del cumplimiento del acuerdo de implementaci\u00f3n de sus recomendaciones, y la Corte IDH sobresey\u00f3 el caso reserv\u00e1ndose la facultad de reabrirlo si hubiere alg\u00fan cambio en las circunstancias que dieron lugar al acuerdo.", - "values": [ - "Acceso al recurso" - ] - }, - { - "text": "Los hechos del caso se refieren a la remoci\u00f3n arbitraria de 27 magistrados de la Corte Suprema de Justicia de Ecuador ocurrida en diciembre de 2004 mediante resoluci\u00f3n parlamentaria. \n\n La Corte IDH ubic\u00f3 los hechos en el contexto de una situaci\u00f3n de inestabilidad pol\u00edtica que hab\u00eda implicado la remoci\u00f3n de varios Presidentes y la modificaci\u00f3n en varias oportunidades de la Constituci\u00f3n para afrontar la crisis pol\u00edtica. Asimismo, aplic\u00f3 est\u00e1ndares sobre el alcance de las garant\u00edas judiciales y la protecci\u00f3n judicial efectiva para jueces en relaci\u00f3n con la independencia judicial.", - "values": [ - "Jueces/zas", - "Destituci\u00f3n de funcionario p\u00fablico" - ] - }, - { - "text": "Los hechos del caso se refieren a la ejecuci\u00f3n extrajudicial de 15 personas residentes del vecindario Barrios Altos de la ciudad de Lima por parte de 6 individuos fuertemente armados. Al ingresar al lugar, los atacantes dispararon indiscriminadamente huyendo posteriormente en 2 veh\u00edculos. Investigaciones judiciales e informes period\u00edsticos revelaron que los involucrados trabajaban para \u00a0la inteligencia militar y eran miembros del ej\u00e9rcito peruano que actuaban en el llamado Grupo Colina. \n\n A pesar de que los hechos ocurrieron en 1991, las autoridades judiciales s\u00f3lo iniciaron una investigaci\u00f3n seria del incidente en abril de 1995, la que se vio interrumpida por un reclamo de competencia del fuero militar presentado ante la Corte Suprema en raz\u00f3n de que los hechos se relacionaban con militares en servicio activo. Antes que la Corte resolviera el asunto, el Congreso sancion\u00f3 una ley de amnist\u00eda que exoneraba de responsabilidad a los militares, polic\u00edas y civiles que hubieran cometido o participado, entre 1980 y 1995, de violaciones a los derechos humanos. El efecto de esta ley fue el de determinar el archivo definitivo de las investigaciones judiciales y as\u00ed evitar la responsabilidad penal de los responsables de la masacre. \n\n La Corte IDH se pronunci\u00f3 sobre la incompatibilidad de leyes de amnist\u00eda con la Convenci\u00f3n Americana.", - "values": [ - "Amnist\u00eda", - "Ejecuci\u00f3n extrajudicial", - "Jurisdicci\u00f3n militar" - ] - }, - { - "text": "Los hechos del caso se refieren a diversas violaciones a las garant\u00edas al debido proceso de un grupo de personas a quienes se les hab\u00eda impuesto la pena de muerte como consecuencia de las condenas por el delito de homicidio intencional.\n\nEn su Sentencia, la CorteIDH analiz\u00f3 la vigencia y aplicaci\u00f3n de la \u201cpena de muerte obligatoria\u201d a la luz de la obligaci\u00f3n estatal de respetar y garantizar el derecho a la vida y la obligaci\u00f3n de adecuar las normas del derecho interno a la Convenci\u00f3n Americana. Adicionalmente, la Corte analiz\u00f3 las condiciones de detenci\u00f3n estableciendo que la situaci\u00f3n de constante amenaza de que en cualquier momento pueden ser llevados a la horca como consecuencia de una legislaci\u00f3n y un proceso contrarios a la Convenci\u00f3n Americana, constituye trato cruel, inhumano y degradante. ", - "values": [ - "Pena de muerte" - ] - }, - { - "text": "Los hechos del caso se refieren\u00a0 a la respuesta estatal frente al diagn\u00f3stico m\u00e9dico y la cirug\u00eda por apendicitis cr\u00f3nica a la que se someti\u00f3 a Melba Peralta Mendoza, y los padecimientos severos y permanentes a su salud que le ocasionaron como consecuencia. \n\n La Corte IDH expuso la falta de diligencias y efectividad de la justicia para investigar los hechos, lo que deriv\u00f3 en la prescripci\u00f3n de la causa judicial. Por otro lado, analiz\u00f3 la vinculaci\u00f3n entre el derecho a la integridad personal y la atenci\u00f3n a la salud, destacando la interdependencia e indivisibilidad entre los derechos civiles y pol\u00edticos y los econ\u00f3micos, sociales y culturales, y reiter\u00f3 est\u00e1ndares sobre el deber estatal de regulaci\u00f3n y fiscalizaci\u00f3n de los servicios de salud.", - "values": [ - "Salud" - ] - }, - { - "text": "Los hechos del caso se refieren al secuestro y desaparici\u00f3n forzada a partir del 2 de junio de 1982 de las ni\u00f1as Ernestina y Erlinda Serrano Cruz de 7 y 3 a\u00f1os de edad respectivamente por militares integrantes del ej\u00e9rcito de El Salvador durante un operativo militar conocido como \"Operaci\u00f3n Limpieza\" o \"la guinda de mayo\", llevado adelante en el departamento de Chalatenango.\n\nDe acuerdo con la competencia temporal de la Corte IDH, su jurisdicci\u00f3n qued\u00f3 limitada al an\u00e1lisis de los procesos internos a la luz de la garant\u00eda de acceso a la justicia. En tal sentido, desarroll\u00f3 est\u00e1ndares sobre el principio de plazo razonable y la garant\u00eda de contar con un recurso efectivo en relaci\u00f3n con el h\u00e1beas corpus.", - "values": [ - "Ni\u00f1ez", - "Desaparici\u00f3n forzada" - ] - }, - { - "text": "Los hechos del caso se refieren a la detenci\u00f3n arbitraria de Wilson Garc\u00eda Asto y Urcesino Ram\u00edrez Rojas, en 1995 y 1991 respectivamente, por parte de la Polic\u00eda Nacional de Per\u00fa, su posterior incomunicaci\u00f3n y la investigaci\u00f3n, procesamiento y juzgamiento llevado a cabo por fiscales y jueces \u201csin rostro\u201d de acuerdo con lo establecido por la legislaci\u00f3n antiterrorista vigente. El Estado realiz\u00f3 un reconocimiento parcial de responsabilidad respecto de los hechos ocurridos antes de septiembre del a\u00f1o 2000, debido a que a partir de ese momento se reinstaur\u00f3 el orden democr\u00e1tico en el pa\u00eds. \n\n La Corte IDH analiz\u00f3 la compatibilidad del tipo penal de terrorismo con el principio de legalidad y retroactividad.", - "values": [ - "Privaci\u00f3n de libertad", - "Ley antiterrorista" - ] - }, - { - "text": "Los hechos del caso se refieren al asesinato -en agosto de 2003- de Joe Luis Castillo Gonz\u00e1lez abogado defensor de derechos humanos -que trabajaba en la frontera de Venezuela con Colombia en asuntos relacionados con pueblos ind\u00edgenas y personas refugiadas-, a manos de 2 personas que le dispararon mientras conduc\u00eda su autom\u00f3vil en compa\u00f1\u00eda de su familia, la que result\u00f3 gravemente herida. \n\n La Corte IDH hizo referencia al deber de prevenci\u00f3n de los Estados que se entiende en t\u00e9rminos de su obligaci\u00f3n de crear condiciones para el pleno y efectivo ejercicio de los derechos, en particular en casos de personas defensoras de derechos humanos. Del mismo modo, la Corte IDH aplic\u00f3 est\u00e1ndares de debida diligencia en la investigaci\u00f3n de muertes violentas.", - "values": [ - "Defensores/as de derechos humanos" - ] - }, - { - "text": "Los hechos del caso se refieren a la desaparici\u00f3n forzada de Rainer Ibsen C\u00e1rdenas -a partir de octubre de 1971- y Jos\u00e9 Luis Ibsen Pe\u00f1a - a partir de febrero de 1993- ocurridas durante la dictadura militar en Bolivia que se instal\u00f3 en agosto de 1971, as\u00ed como a la falta de investigaci\u00f3n y sanci\u00f3n de los culpables.\n\nLa Corte IDH ubic\u00f3 los hechos en el contexto de una dictadura militar que permaneci\u00f3 por m\u00e1s de 6 a\u00f1os en el poder y que se caracteriz\u00f3 -en particular entre 1971 a 1973- por una pr\u00e1ctica de detenci\u00f3n ilegal de personas, allanamientos violentos y tortura y desaparici\u00f3n forzada.\n\nLa Corte IDH reconoci\u00f3 una vez m\u00e1s las especiales caracter\u00edsticas y elementos que posee el delito de desaparici\u00f3n forzada de personas como violaci\u00f3n m\u00faltiple y continuada de derechos, y estableci\u00f3 nuevamente que el deber de investigarlo y sancionar a los culpables de ese delito y del de tortura tienen car\u00e1cter de normas inderogables de derecho internacional o jus cogens", - "values": [ - "Desaparici\u00f3n forzada", - "Tortura y tratos crueles, inhumanos o degradantes" - ] - }, - { - "text": "Los hechos del caso se refieren a las amenazas y el homicidio de Wilson Nogueira de Carvalho,\u00a0abogado defensor de derechos humanos y activista en contra de grupos de exterminio, y a la impunidad en que quedaron los mismos. \n\n La Corte IDH estableci\u00f3 est\u00e1ndares acerca de la protecci\u00f3n a la integridad y vida de los defensores de derechos humanos y la obligaci\u00f3n estatal de crear las condiciones necesarias para que puedan llevar adelante su trabajo, destacando el efecto individual y colectivo de las violaciones a los derechos humanos de los/as defensores/as.", - "values": [ - "Defensores/as de derechos humanos", - "Amenazas y hostigamientos" - ] - }, - { - "text": "Los hechos del caso se refieren a la detenci\u00f3n ilegal y arbitraria del se\u00f1or Juan Carlos Bayarri, seguida de actos de tortura y prisi\u00f3n preventiva de larga data, en el marco de un proceso penal seguido en su contra por la supuesta comisi\u00f3n de secuestros extorsivos reiterados. La v\u00edctima estuvo privada de su libertad por casi 13 a\u00f1os sobre la base de una confesi\u00f3n obtenida bajo tortura.\n\n La justicia nacional y 16 a\u00f1os despu\u00e9s los hechos aun se manten\u00edan impunes.\u00a0\n\n El caso tambi\u00e9n desarrolla est\u00e1ndares sobre los l\u00edmites a la pr\u00e1ctica de la prisi\u00f3n preventiva.", - "values": [ - "Prisi\u00f3n preventiva", - "Privaci\u00f3n de libertad" - ] - }, - { - "text": "Los hechos se relacionan con la solicitud de protecci\u00f3n a la vida y la integridad de Mar\u00eda del Rosario Guerrero Gallucci y su esposo Adolfo S. Mart\u00ednez Barrios debido a la pertenencia \u2013de la primera- al grupo de derechos humanos del Estado Gu\u00e1rico y su denuncia p\u00fablica sobre la ejecuci\u00f3n de m\u00e1s 100 personas por parte de la Polic\u00eda Nacional.", - "values": [ - "Defensores/as de derechos humanos", - "Amenazas y hostigamientos" - ] - }, - { - "text": "Los hechos del caso se refieren a la desaparici\u00f3n forzada de ni\u00f1os y ni\u00f1as entre los a\u00f1os 1980 a 1982, por parte de miembros de las fuerzas amadas tras la ejecuci\u00f3n de operativos militares de la llamada \"contrainsurgencia\", en el contexto del conflicto armado. \n\nLa CorteIDH analiz\u00f3 los hechos en el contexto de un patr\u00f3n espec\u00edfico de desaparici\u00f3n forzada de ni\u00f1os y ni\u00f1as que implic\u00f3, en muchos casos, su apropiaci\u00f3n e inscripci\u00f3n con otro nombre o bajo datos falsos. \n\nLa CorteIDH aplic\u00f3 est\u00e1ndares sobre desaparici\u00f3n forzada, derecho a la identidad, a la familia y a las medidas de protecci\u00f3n especial de la ni\u00f1ez, as\u00ed como al derecho al acceso a la justicia en plazos razonables.", - "values": [ - "Ni\u00f1ez", - "Familia", - "Identidad", - "Desaparici\u00f3n forzada" - ] - }, - { - "text": "Los hechos que fundamentan la solicitud de protecci\u00f3n de la vida e integridad de Sandra Lorena Ramos y de sus tres hijas \u2013familiares de Wilfredo Reyes, interno fallecido en el Centro Penal de San Pedro Sula- se relacionan con las amenazas, hostigamientos e intimidaciones vinculadas con el pago \u2013en su favor- de la indemnizaci\u00f3n concedida por la CorteIDH en la Sentencia del caso.", - "values": [ - "Amenazas y hostigamientos" - ] - }, - { - "text": "Los hechos del caso se relacionan con la detenci\u00f3n del Sr Pollo Rivera en el marco de procesos penales derivados de imputaciones de traici\u00f3n a la patria y terrorismo violatorios de varias garant\u00edas al debido proceso. \n\nLa Sentencia de la CorteIDH \u2013siguiendo las conclusiones del Informe Final de la CVR- contextualiz\u00f3 los hechos en la pr\u00e1ctica sistem\u00e1tica de tortura vigente durante los a\u00f1os 1983 a 1997 en el marco de la llamada lucha antisubversiva. \n\nAdicionalmente aplic\u00f3 est\u00e1ndares \u2013entre otros- sobre detenci\u00f3n ilegal y arbitraria, prisi\u00f3n preventiva, el derecho a la defensa y el uso de testigos de identidad reservada, y la criminalizaci\u00f3n de actos m\u00e9dicos. \n", - "values": [ - "Ley antiterrorista", - "Privaci\u00f3n de libertad", - "Prisi\u00f3n preventiva", - "Tortura y tratos crueles, inhumanos o degradantes" - ] - }, - { - "text": "Los hechos del caso se refieren a la desaparici\u00f3n forzada, tortura y ejecuci\u00f3n extrajudicial de Heliodoro Portugal, detenido el 14 de mayo de 1970 mientras el pa\u00eds se encontraba gobernado por un r\u00e9gimen militar, as\u00ed como a la omisi\u00f3n estatal de investigar, identificar y condenar a los culpables. Los restos de Heliodoro Portugal fueron encontrados en septiembre de 1999 en un cuartel militar, aunque reci\u00e9n en el a\u00f1o 2001 se confirm\u00f3 con absoluta certeza que esos restos \u00f3seos efectivamente le pertenec\u00edan. \n\nLa Corte IDH reiter\u00f3 su jurisprudencia sobre las caracter\u00edsticas espec\u00edficas y el car\u00e1cter continuo del delito de desaparici\u00f3n forzada. Asimismo, la Corte IDH evalu\u00f3 si el tipo penal del delito de desaparici\u00f3n forzada en el orden interno se adecuaba a los requisitos y elementos m\u00ednimos que exige el derecho internacional de los derechos humanos.", - "values": [ - "Ejecuci\u00f3n extrajudicial", - "Desaparici\u00f3n forzada", - "Tortura y tratos crueles, inhumanos o degradantes" - ] - }, - { - "text": "Los hechos del caso se refieren al cese arbitrario -en noviembre de 2004- de 8 vocales del Tribunal Constitucional de Ecuador mediante una resoluci\u00f3n del Congreso Nacional, y la tramitaci\u00f3n de varios juicios pol\u00edticos contra algunos de estos vocales violatorios de garant\u00edas procesales y del derecho de defensa. \n\n La Corte IDH analiza en qu\u00e9 medida el cese masivo de jueces constituye un atentado con la independencia judicial y el orden democr\u00e1tico. Tomando como referencia su precedente del caso Tribunal Constitucional vs. Per\u00fa, desarrolla el alcance de las garant\u00edas procesales en este tipo de instancias.", - "values": [ - "Jueces/zas", - "Destituci\u00f3n de funcionario p\u00fablico" - ] - }, - { - "text": "La solicitud de medidas provisionales fue realizada en el marco de una denuncia declarada admisible por la CIDH por la tortura y desaparici\u00f3n forzada de Iv\u00e1n Eladio Torres. La CorteIDH otorg\u00f3 medidas provisionales para proteger los derechos a la vida y a la integridad personal a favor de su madre y de otros familiares, testigos, familiares de testigos y las abogadas del caso. La CorteIDH orden\u00f3 al Estado planificar e implementar las medidas con la participaci\u00f3n de los beneficiarios. ", - "values": [ - "Amenazas y hostigamientos", - "Testigo" - ] - }, - { - "text": "Los hechos del caso se refieren a la detenci\u00f3n ilegal y arbitraria de Juan Carlos Chaparro \u00c1lvarez, de nacionalidad chilena, due\u00f1o de la f\u00e1brica \u201cAislantes Plumavit Compa\u00f1\u00eda Limitada\u201d, y de Freddy Hern\u00e1n Lapo \u00cd\u00f1iguez, de nacionalidad ecuatoriana, gerente de dicha f\u00e1brica. Tales detenciones se produjeron -en noviembre de 1997- en el marco de la llamada \u201cOperaci\u00f3n Antinarc\u00f3tica Rivera\u201d en la cual se incautaron cajas t\u00e9rmicas, similares a las fabricadas en la empresa de las v\u00edctimas, en las que se detect\u00f3 la presencia de clorhidrato de coca\u00edna y hero\u00edna. \n\n La Corte IDH desarroll\u00f3 est\u00e1ndares sobre prisi\u00f3n preventiva as\u00ed como sobre la efectividad de los recursos disponibles para controvertir la misma. Tambi\u00e9n resalt\u00f3 que las decisiones adoptadas por \u00f3rganos internos que puedan afectar derechos humanos deben estar debidamente fundamentadas, pues de lo contrario ser\u00e1n decisiones arbitrarias. En este sentido estableci\u00f3 que\u00a0 la motivaci\u00f3n de la decisi\u00f3n judicial es condici\u00f3n de posibilidad para garantizar el derecho de defensa. En este caso, la falta de motivaci\u00f3n de las decisiones impidi\u00f3 que la defensa conociera las razones por las cuales las v\u00edctimas permanec\u00edan privadas de su libertad y dificult\u00f3 la tarea de presentar nueva evidencia o argumentos para lograr su liberaci\u00f3n o impugnar de mejor manera una prueba de cargo determinante. \n\n La Corte IDH elabor\u00f3 tambi\u00e9n est\u00e1ndares sobre la adopci\u00f3n de medidas cautelares reales en relaci\u00f3n con el derecho a la propiedad.", - "values": [ - "Privaci\u00f3n de libertad", - "Propiedad", - "Prisi\u00f3n preventiva" - ] - }, - { - "text": "Los hechos del caso se refieren a la toma y la retoma del Palacio de Justicia, sede de la Corte Suprema y del Consejo de Estado, en Bogot\u00e1, Colombia, ocurrida, entre los d\u00edas 6 y 7 de noviembre de 1985.\n\nEl 6 de noviembre, un comando guerrillero del grupo M-19 realiz\u00f3 la toma del Palacio de Justicia, sobre lo cual el servicio de inteligencia del ej\u00e9rcito ten\u00eda informaci\u00f3n. A pesar de ello, dos d\u00edas antes de la toma, fue retirada la seguridad que brindaba la Polic\u00eda Nacional a los jueces y personal que trabajaba en el Palacio de Justicia.Los altos mandos de las Fuerzas Armadas de Colombia decidieron recuperar el Palacio de Justicia a trav\u00e9s de un operativo militar y de inteligencia que s\u00f3lo cesar\u00eda 27 horas despu\u00e9s. Durante la operaci\u00f3n, murieron aproximadamente 100 personas, incluyendo magistrados de la Corte Suprema y el Consejo de Estado. Al final de la operaci\u00f3n, muchos salieron con vida del edificio del Palacio de Justicia. A pesar de esto, fueron tratados como sospechosos de pertenecer al M 19, torturados y en algunos casos desaparecidos y o ejecutados. Entre estas personas se encontraban las v\u00edctimas del presente caso.\n\nLa CorteIDH analiz\u00f3 la responsabilidad del Estado a la luz de las obligaciones internacionales en relaci\u00f3n con los graves delitos de tortura, desaparici\u00f3n forzada y ejecuci\u00f3n, as\u00ed como la obligaci\u00f3n de investigar estos hechos a trav\u00e9s de una jurisdicci\u00f3n ordinaria y no la jurisdicci\u00f3n militar.", - "values": [ - "Desaparici\u00f3n forzada", - "Ejecuci\u00f3n extrajudicial", - "Tortura y tratos crueles, inhumanos o degradantes", - "Jurisdicci\u00f3n militar" - ] - }, - { - "text": "Los hechos del caso se refieren a la detenci\u00f3n arbitraria, tortura y ejecuci\u00f3n extrajudicial de los hermanos Emilio Mois\u00e9s y Rafael Samuel G\u00f3mez Paquiyauri, de 14 y 17 a\u00f1os respectivamente, el d\u00eda 21 de junio de 1991, por agentes de la Polic\u00eda Nacional, en un operativo que buscaba a personas involucradas en supuestos actos terroristas, en cumplimiento de un plan denominado \u201cCerco Noventiuno\u201d. \n\n Estos acontecimientos se dieron en el contexto del conflicto entre grupos armados y agentes de las fuerzas policiales y militares ocurrido en Per\u00fa durante la d\u00e9cada del 80 y hasta finales del 2000. Este conflicto se agudiz\u00f3 mediante una pr\u00e1ctica sistem\u00e1tica de violaciones a los derechos humanos -entre ellas ejecuciones extrajudiciales y desapariciones forzadas- de personas sospechosas de pertenecer a grupos pol\u00edticos opositores que fueron realizadas por agentes estatales siguiendo \u00f3rdenes de jefes militares y policiales. \n\n La Corte IDH puso en evidencia el esquema de impunidad asociado al caso, como consecuencia del cual se proces\u00f3 y conden\u00f3 a los autores materiales de m\u00e1s bajo rango en la Polic\u00eda Nacional del Per\u00fa, a la vez que el o los autores intelectuales no fueron procesados y s\u00f3lo uno ha sido presuntamente identificado. \n\n La Corte IDH destac\u00f3 que trat\u00e1ndose de v\u00edctimas que son ni\u00f1os, los hechos revisten una gravedad especial. En tal sentido, la obligaci\u00f3n del Estado de respetar el derecho a la vida de toda persona bajo su jurisdicci\u00f3n presenta modalidades especiales en el caso de los menores de edad y se transforma en una obligaci\u00f3n de prevenir situaciones que pudieran conducir, por acci\u00f3n u omisi\u00f3n, a su afectaci\u00f3n.", - "values": [ - "Privaci\u00f3n de libertad", - "Ejecuci\u00f3n extrajudicial", - "Ni\u00f1ez", - "Tortura y tratos crueles, inhumanos o degradantes" - ] - }, - { - "text": "Los hechos del caso se refieren a la privaci\u00f3n de la nacionalidad de 2 ni\u00f1as dominicanas, con ascendencia\u00a0haitiana, por parte de funcionarios del Registro Civil al negarse a inscribir sus actas de nacimiento. \n\n La Corte IDH estableci\u00f3 est\u00e1ndares acerca del derecho a la nacionalidad en relaci\u00f3n a la actuaci\u00f3n arbitraria del Estado de privar discriminatoriamente a las v\u00edctimas de este derecho, teniendo adem\u00e1s en consideraci\u00f3n su minor\u00eda de edad y la situaci\u00f3n de vulnerabilidad a la cual se vieron expuestas. Del mismo modo, la Corte hizo IDH referencia a la violaci\u00f3n de los derechos al reconocimiento de la personalidad jur\u00eddica y al nombre de las ni\u00f1as.", - "values": [ - "Ni\u00f1ez", - "Discriminaci\u00f3n", - "Nacionalidad" - ] - }, - { - "text": "Los hechos que fundamentan la solicitud de protecci\u00f3n en favor del se\u00f1or Su\u00e1rez Rosero se basan en la afectacion de su libertad al permanecer en prisi\u00f3n preventiva arbitraria e ilegal por mas de tres a\u00f1os y nueve meses. Posteriormente, las medidas fueron ampliadas en favor de su familia por haber sido recibido amenazas.", - "values": [ - "Privaci\u00f3n de libertad", - "Prisi\u00f3n preventiva", - "Amenazas y hostigamientos" - ] - }, - { - "text": "Los hechos del caso se refieren a la detenci\u00f3n ilegal, desaparici\u00f3n forzada y ejecuci\u00f3n extrajudicial de un profesor y grupo de estudiantes de la Universidad Nacional de Educaci\u00f3n Enrique Guzm\u00e1n y Valle \u2013 La Cantuta, Lima, ocurrida en la madrugada del 18 de julio de 1992, y que cont\u00f3 con la participaci\u00f3n de efectivos del ej\u00e9rcito peruano y agentes del grupo \u201cColina\u201d. Este grupo -adscrito al Servicio de Inteligencia Nacional- ten\u00eda a su cargo la identificaci\u00f3n, control y eliminaci\u00f3n -mediante acciones sistem\u00e1ticas de ejecuciones extrajudiciales indiscriminadas, asesinatos colectivos, desapariciones forzadas y torturas- de aquellas personas que se sospechaba pertenec\u00eda a los grupos insurgentes o contrarias al r\u00e9gimen del Presidente Fujimori. \n\n Fueron abiertas investigaciones que tramitaron en la jurisdicci\u00f3n militar, pero los hechos quedaron impunes, situaci\u00f3n que fue reforzada por la aplicaci\u00f3n de leyes de amnist\u00eda.\u00a0Seg\u00fan la interpretaci\u00f3n de la Corte IDH los hechos de la Cantuta se favorecieron por la situaci\u00f3n generalizada de impunidad frente a graves violaciones a los derechos humanos de la \u00e9poca, propiciada y tolerada por la ausencia de garant\u00edas judiciales e ineficacia de las instituciones judiciales para afrontar las violaciones sistem\u00e1ticas de derechos humanos. \n\n \u00a0La Corte IDH aplic\u00f3; est\u00e1ndares sobre desaparici\u00f3n forzada de personas y sobre la obligaci\u00f3n estatal de investigar ex officio, sin dilaci\u00f3n, y de forma seria, imparcial y efectiva.", - "values": [ - "Privaci\u00f3n de libertad", - "Ejecuci\u00f3n extrajudicial", - "Desaparici\u00f3n forzada", - "Jurisdicci\u00f3n militar" - ] - }, - { - "text": "Los hechos del caso se refieren a una serie de masacres sucesivas -ocurridas en diciembre de 1981 al norte del Departamento de Moraz\u00e1n- en el marco de un operativo militar, y que resultaron en la muerte de aproximadamente un millar de personas entre las que se encontraban un alto n\u00famero de ni\u00f1as y ni\u00f1os. Las investigaciones derivadas de estos hechos fueron cerradas como consecuencia de la aplicaci\u00f3n de la Ley de Amnist\u00eda.\n\nPese al reconocimiento de responsabilidad efectuado por el Estado, la Corte IDH estableci\u00f3 el marco f\u00e1ctico atendiendo a la relevancia hist\u00f3rica de los hechos denunciados que tienen referencia directa a un periodo de violencia extrema durante el conflicto armado interno, y que respondi\u00f3 a una pol\u00edtica de Estado caracterizada por acciones militares de contrainsurgencia que tuvieron como finalidad el aniquilamiento masivo e indiscriminado de los poblados que eran asimilados por sospecha a la guerrilla.", - "values": [ - "Amnist\u00eda", - "Ni\u00f1ez", - "Ejecuci\u00f3n extrajudicial" - ] - }, - { - "text": "Los hechos del caso -ocurridos en enero de 2001- se refieren a la ejecuci\u00f3n extrajudicial de Nestor Uzc\u00e1tegui y las detenciones de sus hermanos Luis Enrique y Carlos Uzc\u00e1tegui, por parte de miembros de fuerzas de seguridad estatales. \n\n La Corte IDH ubic\u00f3 los hechos del caso en un contexto en el que ocurr\u00edan ejecuciones extrajudiciales y otros abusos por parte de las fuerzas policiales estaduales y municipales, en particular en el estado de Falc\u00f3n. \n\n La Corte IDH aplic\u00f3 est\u00e1ndares acerca de la debida diligencia en la investigaci\u00f3n relacionada principalmente con la garant\u00eda del plazo razonable y el contexto en que ocurrieron los hechos. Asimismo, la Corte IDH hizo referencia al derecho a la vida privada y propiedad, en relaci\u00f3n con las consecuencias de la violencia con la que se llevaron adelante los allanamientos en el domicilio de las v\u00edctimas.", - "values": [ - "Ejecuci\u00f3n extrajudicial", - "Propiedad" - ] - }, - { - "text": "Los hechos del caso se relacionan con las restricciones al derecho a la libertad de expresi\u00f3n de 20 periodistas y trabajadores de medios de comunicaci\u00f3n vinculados a la emisora de televisi\u00f3n Compa\u00f1\u00eda An\u00f3nima Radio Caracas Televisi\u00f3n (RCTV), entre los a\u00f1os 2001 a 2004.\n\nLa Corte IDH estableci\u00f3 est\u00e1ndares sobre la obligaci\u00f3n estatal de prevenir situaciones de hostigamiento que afecten el ejercicio de la libertad de expresi\u00f3n. Adicionalmente analiz\u00f3 el eventual sesgo de g\u00e9nero respecto de las agresiones sufridas por mujeres periodistas.", - "values": [ - "Libertad de expresi\u00f3n" - ] - }, - { - "text": "Los hechos que fundamentan la solicitud de protecci\u00f3n en favor de integrantes de la familia G\u00f3mez Paquiyauri se relacionan con las amenazas y hostigamientos \u2013por parte de agentes del Estado- que han sufrido por su condici\u00f3n de v\u00edctimas y testigos del caso en tr\u00e1mite ante la CorteIDH. ", - "values": [ - "Amenazas y hostigamientos", - "Testigo" - ] - }, - { - "text": "Los hechos del caso se refieren a ejecuci\u00f3n extrajudicial de Pedro Huilca Tecse, un l\u00edder sindical peruano, ocurrida el 18 de diciembre de 1992, que fue llevada a cabo por miembros del grupo \u201cColina\u201d, un escuadr\u00f3n vinculado al Servicio de Inteligencia del Ejercito del Per\u00fa. \n\n La Corte desarroll\u00f3 est\u00e1ndares sobre el derecho de asociarse libremente con otras personas, sin intervenci\u00f3n de las autoridades p\u00fablicas que limiten o entorpezcan su ejercicio. Asimismo, interpret\u00f3 la ejecuci\u00f3n de un l\u00edder sindical no s\u00f3lo como una restricci\u00f3n a la libertad de asociaci\u00f3n del individuo, sino tambi\u00e9n como una afectaci\u00f3n al derecho y a la libertad de determinado grupo a asociarse libremente, sin miedo, concluyendo que los hechos del caso tuvieron un efecto amedrentador en los trabajadores/as del movimiento sindical peruano disminuyendo la libertad de ese grupo para ejercer tal derecho.", - "values": [ - "Ejecuci\u00f3n extrajudicial", - "Defensores/as de derechos humanos", - "Libertad de asociaci\u00f3n", - "Sindicalismo" - ] - }, - { - "text": "Los hechos de la solicitud de protecci\u00f3n se refieren a los hostigamientos, intimidaciones y amenazas contra Mario Jos\u00e9 Mart\u00edn Suriel Nu\u00f1ez, miembro fundador de la organizaci\u00f3n de la sociedad civil \u201cComisi\u00f3n de la verdad\u201d, devenidas luego de su participaci\u00f3n \u2013en car\u00e1cter de testigo y representante de las v\u00edctimas\u2013 ante los \u00f3rganos del sistema interamericano de protecci\u00f3n de los derechos humanos por la desaparici\u00f3n forzada de Narciso Gonz\u00e1lez Medina. ", - "values": [ - "Amenazas y hostigamientos", - "Defensores/as de derechos humanos", - "Testigo" - ] - }, - { - "text": "Los hechos del caso se refieren a la destrucci\u00f3n de la comunidad maya de R\u00edo Negro como consecuencia de una serie de masacres ejecutadas por el ej\u00e9rcito de Guatemala y miembros de las Patrullas de Autodefensa Civil (PAC) entre los a\u00f1os 1980 y 1982.\n\nLa Corte IDH ubic\u00f3 los hechos del caso en el contexto del conflicto armado interno ocurrido entre 1962 y 1996 y durante el cual se aplic\u00f3 la llamada \"Doctrina de Seguridad Nacional\". En ese marco, el pueblo ind\u00edgena maya fue considerado un \"enemigo interno\" por su potencial para convertirse en base social de la guerrilla. Por ello, fue el grupo \u00e9tnico m\u00e1s afectado por violaciones a los derechos humanos durante esa \u00e9poca, sufriendo desplazamiento forzado y la destrucci\u00f3n de las comunidades. Mujeres y ni\u00f1os/as fueron v\u00edctimas especialmente seleccionadas por el efecto simb\u00f3lico que la violaci\u00f3n a sus derechos representaba.\n\nLa Corte IDH refiri\u00f3 est\u00e1ndares en materia de desaparici\u00f3n forzada de personas con \u00e9nfasis en la afectaci\u00f3n de la misma sobre la ni\u00f1ez, y desarroll\u00f3 par\u00e1metros sobre la prohibici\u00f3n de la esclavitud y la servidumbre, y sobre la afectaci\u00f3n a la vida cultural y espiritual sufrida por la Comunidad como consecuencia de las violaciones de derecho padecidas.", - "values": [ - "Ni\u00f1ez", - "Pueblos ind\u00edgenas", - "Esclavitud", - "Ejecuci\u00f3n extrajudicial" - ] - }, - { - "text": "Los hechos del caso se refieren a la privaci\u00f3n arbitraria de la nacionalidad a Ivcher Bronstein, -ciudadano peruano por naturalizaci\u00f3n-, con el objeto de desplazarlo del control accionario y editorial del Canal 2 de la televisi\u00f3n peruana. Bronstein hab\u00eda realizado serie de denuncias de graves violaciones a los derechos humanos y de actos de corrupci\u00f3n en el pa\u00eds a trav\u00e9s de su se\u00f1al televisiva. \n\n La Corte IDH se pronunci\u00f3 sobre los l\u00edmites a la discrecionalidad estatal para el otorgamiento de la nacionalidad, as\u00ed como sobre los est\u00e1ndares de debido proceso en los tr\u00e1mites judiciales y administrativos vinculados con el tema. Adicionalmente, interpret\u00f3 los hechos como una forma indirecta de restricci\u00f3n a la libertad de expresi\u00f3n.", - "values": [ - "Nacionalidad" - ] - }, - { - "text": "Los hechos que fundamentan la solicitud de medidas se refieren al hostigamiento y amenazas en contra de quienes brindaron declaraci\u00f3n ante la CorteIDH por la desaparici\u00f3n forzada de Isidro Caballero Delgado y Mar\u00eda del Carmen Santana. ", - "values": [ - "Amenazas y hostigamientos", - "Testigo" - ] - }, - { - "text": "Los hechos del caso se refieren a la prohibici\u00f3n de la fecundaci\u00f3n in vitro establecida a partir de una decisi\u00f3n de la Corte Suprema de Justicia del a\u00f1o 2000 que declar\u00f3 inconstitucional el decreto que regulaba esa pr\u00e1ctica. \n\n La Corte IDH analiz\u00f3 la interpretaci\u00f3n restrictiva del art\u00edculo 4 de la Convenci\u00f3n Americana, que consagra el derecho a la vida, realizada por la Corte Suprema costarricense, as\u00ed como la prohibici\u00f3n absoluta para acceder a la fecundaci\u00f3n in vitro. La Corte IDH afirm\u00f3 que el embri\u00f3n no puede ser considerado \u201cpersona\u201d en los t\u00e9rminos del art\u00edculo 4 de la Convenci\u00f3n, pero estableci\u00f3 el principio de ponderaci\u00f3n gradual e incremental de la vida prenatal. \n\n La Corte IDH realiz\u00f3 un balance entre la restricci\u00f3n de derechos realizados en el caso, en particular el derecho a la vida privada, a la intimidad y a la autonom\u00eda reproductiva, y la importancia de la protecci\u00f3n del embri\u00f3n, para as\u00ed concluir afirmando que esa restricci\u00f3n resulta en el caso desproporcionada y discriminatoria.", - "values": [ - "Derechos reproductivos" - ] - }, - { - "text": "Los hechos del caso se refieren a la detenci\u00f3n ilegal y arbitraria, en junio de 1992, de Rafael Su\u00e1rez Rosero por parte de agentes de la Polic\u00eda Nacional del Ecuador, en el marco de la operaci\u00f3n policial \u201cCicl\u00f3n\u201d, cuyo objetivo era desarticular una de las m\u00e1s grandes organizaciones del narcotr\u00e1fico internacional. La v\u00edctima fue detenida sin orden emitida por autoridad competente y sin haber mediado flagrante delito. Luego de varios d\u00edas incomunicado, el Juez orden\u00f3 su prisi\u00f3n preventiva. \n\n La Corte IDH estableci\u00f3 est\u00e1ndares sobre prisi\u00f3n preventiva como medida cautelar no punitiva y sobre el car\u00e1cter excepcional de la incomunicaci\u00f3n, al tiempo que ratific\u00f3 la amplitud con la que debe entenderse el h\u00e1beas corpus.", - "values": [ - "Privaci\u00f3n de libertad", - "Prisi\u00f3n preventiva" - ] - }, - { - "text": "Los hechos que fundamentan la solicitud de protecci\u00f3n a la integridad f\u00edsica, ps\u00edquica y moral de Loayza Tamayo se refieren a las condiciones de su encarcelamiento y su posterior incomunicaci\u00f3n. Las medidas otorgadas fueron levantadas en ocasi\u00f3n de la libertad de la Sra. Loayza Tamayo. \n\nPosteriormente, en noviembre del 2000 fueron solicitadas nuevamente para que se garantizaran las condiciones de seguridad necesarias para su regreso a Per\u00fa.\n", - "values": [ - "Condiciones de detenci\u00f3n" - ] - }, - { - "text": "Los hechos del caso se refieren a la ejecuci\u00f3n extrajudicial y torturas sufridas por 4 personas, entre ellas 2 menores de edad, por miembros de la Fuerza de Seguridad P\u00fablica del Estado, en septiembre de 1995. Las v\u00edctimas permanecieron detenidas clandestinamente, a pesar de existir una orden de liberaci\u00f3n emanada de una jueza. Durante su detenci\u00f3n estuvieron incomunicados y fueron torturados, siendo uno de ellos v\u00edctima de violencia sexual y sus cuerpos fueron encontrados en distintos lugares de la v\u00eda p\u00fablica. Los hechos permanecieron impunes.\n\nLa Corte IDH ubic\u00f3 los hechos en un contexto de violencia estatal marcado por la victimizaci\u00f3n de ni\u00f1os y j\u00f3venes en situaci\u00f3n de riesgo social, a quienes se sindica como involucrados en \"maras\" o pandillas juveniles. Este patr\u00f3n se traduce en muertes violentas, que se exponen socialmente dejando los cuerpos expuestos en lugares p\u00fablicos.\n\nEl Estado realiz\u00f3 un reconocimiento parcial de responsabilidad por los hechos. La Corte IDH estableci\u00f3 est\u00e1ndares acerca de las detenciones colectivas, acerca de su arbitrariedad e ilegalidad, y sobre la obligaci\u00f3n de protecci\u00f3n especial en relaci\u00f3n con la ni\u00f1ez que se encuentra bajo su custodia.", - "values": [ - "Ejecuci\u00f3n extrajudicial", - "Ni\u00f1ez", - "Maras", - "Tortura y tratos crueles, inhumanos o degradantes" - ] - }, - { - "text": "Los hechos del caso se refieren a la limitaci\u00f3n al derecho de propiedad de los hermanos Salvador Chiriboga por parte del Consejo Municipal de Quito, que en mayo de 1991 declar\u00f3 de utilidad p\u00fablica con fines de expropiaci\u00f3n y de ocupaci\u00f3n urgente un inmueble de 60 hect\u00e1reas. \n\n La Corte IDH realiz\u00f3 un an\u00e1lisis acerca de las restricciones a la propiedad privada en una sociedad democr\u00e1tica estableciendo los criterios de utilidad p\u00fablica, inter\u00e9s social y pago de una indemnizaci\u00f3n justa, adecuada, pronta y efectiva como orientadores de la misma, interfiriendo en la menor medida posible en el efectivo ejercicio de un derecho.", - "values": [ - "Propiedad" - ] - }, - { - "text": "Los hechos del caso se relacionan con ejecuci\u00f3n extrajudicial de un grupo inmigrantes haitianos y la expulsi\u00f3n de los sobrevivientes, tras un ataque de agentes militares, provocado al ser descubiertos mientras ingresaban al pa\u00eds. \n\n La Corte IDH estableci\u00f3 est\u00e1ndares acerca de la aplicaci\u00f3n del debido proceso en procedimientos administrativos de deportaci\u00f3n o expulsi\u00f3n de inmigrantes, haciendo referencia a la obligaci\u00f3n del Estado de evaluar las circunstancias especiales de cada persona y la prohibici\u00f3n de expulsiones colectivas. Conjuntamente la Corte IDH reiter\u00f3 est\u00e1ndares acerca del uso excesivo de la fuerza por parte de agentes estatales y acerca de la competencia de la jurisdicci\u00f3n penal militar en casos que impliquen violaciones a los derechos humanos.", - "values": [ - "Ejecuci\u00f3n extrajudicial", - "Migrantes", - "Uso de la fuerza", - "Proceso administrativo" - ] - }, - { - "text": "Los hechos del caso se refieren a la detenci\u00f3n, procesamiento y juzgamiento de Gustavo Adolfo Cesti Hurtado, oficial retirado del ej\u00e9rcito, quien fue sometido a la jurisdicci\u00f3n militar por delitos contra el deber militar y fraude. \n\n La Corte IDH cuestion\u00f3 el alcance del fuero militar respecto de civiles, reiterando el criterio del no juzgamiento de civiles en fuero castrense, debido a que uno de los principales derechos civiles de las personas es el de ser juzgado por un juez competente, imparcial y predeterminado por ley. En tal sentido, consider\u00f3 a la jurisdicci\u00f3n militar como una justicia de excepci\u00f3n de interpretaci\u00f3n restrictiva.", - "values": [ - "Jurisdicci\u00f3n militar" - ] - }, - { - "text": "Los hechos del caso se refieren a la protecci\u00f3n de la vida y la integridad personal de A. J., su madre, y cuatro personas integrantes de la organizaci\u00f3n Action Citoyenne pour le Respect des Droits Humains quienes sufrieron actos de hostigamiento y persecuci\u00f3n por parte de funcionarios policiales luego de denunciar la violaci\u00f3n sexual sufrida por A. J. por parte de uno de dichos funcionarios.", - "values": [ - "Amenazas y hostigamientos", - "Defensores/as de derechos humanos", - "Testigo", - "Violencia de g\u00e9nero" - ] - }, - { - "text": "Los hechos del caso se relacionan con las condiciones de detenci\u00f3n de ni\u00f1os y adolescentes privados de libertad en la llamada Unidade de Interna\u00e7\u00e3o Socioeducativa, en Espiritu Santo, asi como los riesgos que afectan a cualquier persona que se encuentre en el mismo.", - "values": [ - "Condiciones de detenci\u00f3n", - "Ni\u00f1ez" - ] - }, - { - "text": "Los hechos tienen que ver con la protecci\u00f3n del derecho a la vida y a la integridad de Mar\u00eda L. Afiuni debido a las condiciones en que se encontraba privada de libertad. En particular, por no garantizarse su separaci\u00f3n respecto de otros reos a quien ella misma habr\u00eda puesto en prisi\u00f3n cuando ejerc\u00eda como jueza.", - "values": [ - "Condiciones de detenci\u00f3n", - "Amenazas y hostigamientos" - ] - }, - { - "text": "Los hechos del caso se relacionan con el rechazo a la solicitud del Sr. Duque de obtener una pensi\u00f3n de sobrevivencia tras la muerte de su pareja, por ser \u00e9sta del mismo sexo. \n\nEn su Sentencia, la CorteIDH aplic\u00f3 est\u00e1ndares sobre igualdad y no discriminaci\u00f3n para analizar la diferencia de trato entre parejas heterosexuales y aquellas formadas por personas del mismo sexo, haciendo foco en los estereotipos presentes en las decisiones judiciales nacionales. \n", - "values": [ - "Orientaci\u00f3n sexual", - "Estereotipos", - "Discriminaci\u00f3n" - ] - }, - { - "text": "Los hechos que fundamentan la solicitud a favor de protecci\u00f3n en favor del ni\u00f1o L.M. se refieren a la falta de agilizaci\u00f3n de los procesos judiciales vinculados con su guarda, custodia, patria potestad, parentesco y relacionamiento familiar. El otorgamiento de las medidas tiene como objetivo proteger su integridad personal e identidad, permiti\u00e9ndo el establecimiento y mantenci\u00f3n de v\u00ednculos con su familia de origen.", - "values": [ - "Ni\u00f1ez", - "Familia", - "Identidad" - ] - }, - { - "text": "Los hechos que fundamentan la solicitud de protecci\u00f3n se refieren al riesgo a la vida y la integridad de Santiago Cabrera L\u00f3pez y sus familiares en raz\u00f3n de su declaraci\u00f3n como testigo rendida en audiencia p\u00fablica ante la Corte IDH en el tr\u00e1mite del caso B\u00e1maca Vel\u00e1squez.", - "values": [ - "Desaparici\u00f3n forzada", - "Amenazas y hostigamientos", - "Testigo" - ] - }, - { - "text": "Los hechos del caso se refieren a las graves condiciones de detenci\u00f3n a las que eran sometidos los ni\u00f1os alojados en el Instituto de Reeducaci\u00f3n del Menor \u201cPanchito L\u00f3pez\u201d entre los a\u00f1os 1996 y 2011; y particularmente a las afectaciones derivadas de tres incendios ocurridos en los a\u00f1os 2000 y 2001 en el que 12 ni\u00f1os fallecieron, y decenas resultaron heridos. \n\nLa Corte IDH analiz\u00f3 las violaciones al derecho a la vida y a la integridad personal a la luz de las obligaciones adicionales y espec\u00edficas que los derechos de la ni\u00f1ez, consagrados en el art\u00edculo 19 de la Convenci\u00f3n Americana, le imponen a los Estados. La Corte IDH fij\u00f3 el contenido y alcance de estos derechos tomando en consideraci\u00f3n las disposiciones pertinentes de la Convenci\u00f3n sobre los Derechos del Ni\u00f1o y el Protocolo Adicional en materia de Derechos Econ\u00f3micos, Sociales y Culturales que, junto con la Convenci\u00f3n Americana, constituyen un corpus juris internacional de protecci\u00f3n de los ni\u00f1os que los Estados deben respetar.\n\nAsimismo, la Corte IDH reconoci\u00f3 que trat\u00e1ndose de procesos judiciales en los que se discuta alg\u00fan derecho de un ni\u00f1o y, particularmente cuando un ni\u00f1o/a sea sometido a un proceso penal, el ejercicio de las garant\u00edas judiciales consagradas en el art\u00edculo 8 de la Convenci\u00f3n Americana supone la adopci\u00f3n de medidas espec\u00edficas y particulares.", - "values": [ - "Ni\u00f1ez", - "Condiciones de detenci\u00f3n" - ] - }, - { - "text": "Los hechos del caso se refieren al sometimiento de personas a trabajo forzoso y servidumbre por deudas en la Hacienda Brasil Verde, ubicada en el Estado de Par\u00e1, y la falta de prevenci\u00f3n y respuesta por parte del Estado frente a tal violaci\u00f3n de los derechos humanos. \n\nEn su Sentencia, la CorteIDH desarrolla el alcance de la prohibici\u00f3n de la esclavitud y el trabajo forzoso y las obligaciones positivas del Estado frente a tal situaci\u00f3n. Adicionalmente, la CorteIDH analiz\u00f3 la respuesta estatal desde la perspectiva de la debida diligencia y la protecci\u00f3n judicial efectiva. \n", - "values": [ - "Esclavitud" - ] - }, - { - "text": "Los hechos del caso se refieren a la detenci\u00f3n ilegal y arbitraria -el 16 de octubre de 1994- de Luis Antonio Galindo C\u00e1rdenas quien para la \u00e9poca era Vocal Provisional de la Corte Superior de Justicia de Hu\u00e1nuco. La detenci\u00f3n se produjo en el cuartel militar de Yanac, donde permaneci\u00f3 al menos 30 d\u00edas y fue sometido a proceso en aplicaci\u00f3n de la Ley de Arrepentimiento. \n\nLa CorteIDH ubic\u00f3 el an\u00e1lisis del caso en el contexto de la pr\u00e1ctica sistem\u00e1tica de violaciones a los derechos humanos realizado por agentes estatales siguiendo \u00f3rdenes de jefes militares y policiales, desde el comienzo de los a\u00f1os 80 y hasta finales del 2000. \n\nLa CorteIDH estableci\u00f3 est\u00e1ndares relacionados con la privaci\u00f3n de la libertad de una persona y las condiciones de la detenci\u00f3n.", - "values": [ - "Privaci\u00f3n de libertad", - "Condiciones de detenci\u00f3n" - ] - }, - { - "text": "Los hechos del caso se refieren a la privaci\u00f3n de libertad de Alfredo L\u00f3pez \u00c1lvarez, quien era presidente del Comit\u00e9 de Defensa de Tierras Triunfe\u00f1as y vicepresidente de la Organizaci\u00f3n Fraternal Negra de Honduras, tras ser detenido por agentes del Estado por un presunto delito de tr\u00e1fico de drogas. Al ser trasladado a la Direcci\u00f3n de Investigaci\u00f3n Criminal sufri\u00f3 torturas y fue coaccionado para autoinculparse. Finalmente, fue absuelto, sin embargo permaneci\u00f3 detenido por 7 meses m\u00e1s.\n\nLa Corte IDH hizo referencia a est\u00e1ndares sobre prisi\u00f3n preventiva, al derecho a un recurso judicial efectivo y plazo razonable. Conjuntamente desarroll\u00f3 est\u00e1ndares acerca del derecho a emitir informaci\u00f3n, que en este caso fue lesionado por la orden del Director del penal donde permaneci\u00f3 la v\u00edctima al prohibir a la poblaci\u00f3n gar\u00edfuna a hablar en su lengua materna, lo cual constituy\u00f3 a su vez un acto discriminatorio en su contra.", - "values": [ - "Prisi\u00f3n preventiva", - "Tortura y tratos crueles, inhumanos o degradantes", - "Lengua materna", - "Discriminaci\u00f3n" - ] - }, - { - "text": "Los hechos del caso se refieren a la detenci\u00f3n por parte de la Polic\u00eda y sin orden judicial del Sr. Almonte, y las persecuciones y amenazas sufridas por su representante, familiares y amigos por las denuncias y averiguaciones llevadas adelante en torno a su paradero.", - "values": [ - "Privaci\u00f3n de libertad", - "Amenazas y hostigamientos", - "Defensores/as de derechos humanos" - ] - }, - { - "text": "Los hechos del caso se refieren al derecho a la propiedad ancestral de su territorio de la Comunidad ind\u00edgena Sawhoyamaxa, as\u00ed como a las graves condiciones de vida consecuencia de estar asentados al borde de una carretera nacional en situaci\u00f3n de pobreza extrema y sin acceso a servicios b\u00e1sicos m\u00ednimos como alimentaci\u00f3n, vivienda, educaci\u00f3n o salud, entre otros.\n\nLa Corte IDH ratific\u00f3 el contenido dado al derecho a la propiedad ind\u00edgena colectiva y el especial significado que el territorio tiene para los pueblos ind\u00edgenas como base fundamental de su cultura, vida espiritual, integridad y supervivencia econ\u00f3mica; y se\u00f1al\u00f3 que, debido a esa estrecha vinculaci\u00f3n, se encuentran amparados por el art\u00edculo 21 de la Convenci\u00f3n Americana. \n\nLa Corte IDH estableci\u00f3 la responsabilidad del Estado por no adoptar medidas frente a las condiciones de pobreza y falta de acceso a servicios b\u00e1sicos de la Comunidad Sawhoyamaxa y particularmente de los ni\u00f1os/as y adultos mayores.", - "values": [ - "Pueblos ind\u00edgenas", - "Pobreza", - "Propiedad" - ] - }, - { - "text": "Los hechos que fundamentan la solicitud de protecci\u00f3n a favor de Eloisa Barrios y sus familiares, refieren del riesgo a la vida e integridad f\u00edsica en raz\u00f3n de su calidad de testigos oculares del asesinato de Narciso Barrios, realizado por agentes del Estado venezolano. ", - "values": [ - "Amenazas y hostigamientos", - "Testigo" - ] - }, - { - "text": "Los hechos del caso se relacionan con la condena a prisi\u00f3n del militar retirado Francisco Us\u00f3n Ram\u00edrez por el delito de \u201cinjuria contra la Fuerza Armada Nacional\u201d por haber emitido opiniones cr\u00edticas acerca de la actuaci\u00f3n de las Fuerzas Armadas en un programa de televisi\u00f3n. \n\n La Corte IDH desarroll\u00f3 est\u00e1ndares sobre el derecho penal como restricci\u00f3n a la libertad de expresi\u00f3n, y aplic\u00f3 criterios respecto de los alcances de la competencia de la jurisdicci\u00f3n penal militar y la obligaci\u00f3n estatal de adecuar su derecho interno.", - "values": [ - "Jurisdicci\u00f3n militar", - "Libertad de expresi\u00f3n" - ] - }, - { - "text": "\nLos hechos que fundamentan la solicitud de protecci\u00f3n de los derechos -del pueblo ind\u00edgena kichwa de Sarayaku y sus defensores- a la vida, integridad personal, circulaci\u00f3n y su relaci\u00f3n con su territorio ancestral, afectados por actos de amenazas, intimidaciones y tortura que involucran a miembros del Ej\u00e9rcito ecuatoriano. Los hechos se dan en el contexto de un permiso otorgado por el Estado ecuatoriano a una empresa privada, para exploraci\u00f3n y explotaci\u00f3n de los recursos naturales del territorio Sarayaku. ", - "values": [ - "Pueblos ind\u00edgenas", - "Propiedad", - "Amenazas y hostigamientos", - "Defensores/as de derechos humanos" - ] - }, - { - "text": "Los hechos del caso hacen referencia al bombardeo ejecutado por la Fuerza A\u00e9rea colombiana, y planeado de manera conjunta con el Ej\u00e9rcito Nacional y personal de la empresa petrolera extranjera Occidental Pretroleum Corporation (OXI), el 13 de diciembre de 1998, en la vereda Santo Domingo, municipio de Tame, Arauca, regi\u00f3n donde la actividad m\u00e1s importante es la explotaci\u00f3n petrolera. Como consecuencia del bombardeo resultaron 17 personas muertas, 6 de ellos ni\u00f1os y ni\u00f1as, 27 personas heridas, 10 de los cuales eran ni\u00f1os y ni\u00f1as, y m\u00e1s de un centenar de personas desplazadas. Los hechos del caso se enmarcan en el contexto del conflicto armado colombiano y la participaci\u00f3n activa de miembros de la fuerza p\u00fablica colombiana en acciones contra la poblaci\u00f3n civil. \n\n La Corte IDH se\u00f1al\u00f3 su facultad y la necesidad de interpretar el alcance de las obligaciones convencionales a la luz de la normativa del derecho internacional humanitario, en particular analiz\u00f3 los principios referidos a conflictos armados no internacionales, a saber, principio de distinci\u00f3n, proporcionalidad y precauci\u00f3n. La Corte IDH ampli\u00f3 su jurisprudencia en relaci\u00f3n a los derechos de los ni\u00f1os y ni\u00f1as, se\u00f1alando la responsabilidad estatal por el incumplimiento de la obligaci\u00f3n especial de protecci\u00f3n en el marco de un conflicto armado no internacional.", - "values": [ - "Derecho humanitario", - "Ni\u00f1ez" - ] - }, - { - "text": "La solicitud de medidas provisionales apunta a la protecci\u00f3n de la vida de un grupo de personas condenadas a pena de muerte. El fundamento de la concesi\u00f3n de las mismas hace referencia a la obligaci\u00f3n estatal de proteger la vida de los beneficiarios para no frustrar la posibilidad de dar cumplimiento a una eventual determinaci\u00f3n por parte de los \u00f3rganos del sistema interamericano de protecci\u00f3n de derechos humanos de una violaci\u00f3n al derecho a la vida, que se ver\u00eda irremediablemente da\u00f1ado si el Estado ejecuta las penas.", - "values": [ - "Pena de muerte" - ] - }, - { - "text": "Los hechos del caso se refieren a la falta de investigaci\u00f3n y reparaci\u00f3n integral de los diversos actos de tortura sufridos por Leopoldo Garc\u00eda Lucero, desde su detenci\u00f3n en septiembre de 1973 hasta junio de 1975, fecha en la cual sali\u00f3 exiliado del territorio chileno. Los acontecimientos descritos fueron llevados a cabo en un contexto de represi\u00f3n generalizada a las personas opositoras del r\u00e9gimen militar que gobern\u00f3 a Chile entre 1973 y 1990. \n\n La Corte IDH estableci\u00f3 la responsabilidad del Estado por no iniciar de oficio y de forma inmediata la investigaci\u00f3n por los actos de tortura cometidos en contra de la v\u00edctima. Tambi\u00e9n avanz\u00f3 est\u00e1ndares sobre el derecho de las v\u00edctimas de violaciones a los derechos humanos a recibir una reparaci\u00f3n integral por parte del Estado, y advirti\u00f3 que la existencia de programas o pol\u00edticas p\u00fablicas con este objetivo debe ser compatible con las obligaciones estatales en esa materia.", - "values": [ - "Amnist\u00eda", - "Tortura y tratos crueles, inhumanos o degradantes" - ] - }, - { - "text": "Los hechos del caso se relacionan con las afectaciones a la integridad personal de Valdemir Quispialaya Vilcapoma quien durante su servicio militar -en enero de 2001- fue agredido f\u00edsicamente por un oficial del Ej\u00e9rcito por haber cometido errores durante una pr\u00e1ctica de tiro. \n\nLos tr\u00e1mites sustanciados ante la jurisdicci\u00f3n militar determinaron que las lesiones sufridas hab\u00edan sido consecuencia del servicio; tampoco la justicia penal estableci\u00f3 responsabilidad por lo ocurrido.\n \nLa CorteIDH desarroll\u00f3 est\u00e1ndares sobre la posici\u00f3n de garante del Estado respecto de personas bajo su custodia, estableciendo la situaci\u00f3n diferenciada de quienes prestan el servicio militar; y reiter\u00f3 sus anteriores valoraciones respecto del alcance de la competencia de la jurisdicci\u00f3n militar.", - "values": [ - "Condiciones de detenci\u00f3n", - "Jurisdicci\u00f3n militar", - "Servicio militar" - ] - }, - { - "text": "Los hechos del caso se refieren al reclutamiento ilegal del ni\u00f1o Gerardo Vargas Areco, realizado por las fuerzas armadas paraguayas, as\u00ed como a las torturas y ejecuci\u00f3n extrajudicial que ocurrieron mientras realizaba el servicio militar.\n\nLa Corte IDH hizo foco en la incorporaci\u00f3n de ni\u00f1os a las fuerzas armadas a la luz del derecho internacional y desarroll\u00f3 est\u00e1ndares de debida diligencia en la investigaci\u00f3n de la ejecuci\u00f3n extrajudicial y el delito de torturas, y estableci\u00f3 m\u00ednimos para la investigaci\u00f3n de esos actos que los Estados deben necesariamente tomar en consideraci\u00f3n.", - "values": [ - "Ni\u00f1ez", - "Servicio militar", - "Tortura y tratos crueles, inhumanos o degradantes" - ] - }, - { - "text": "Los hechos del caso se refieren a la ejecuci\u00f3n extrajudicial del se\u00f1or Almonacid Arellano, en septiembre de 1973 en el contexto del r\u00e9gimen militar imperante en Chile en aquella \u00e9poca. La investigaci\u00f3n fue afectada por la aplicaci\u00f3n de la ley de amnist\u00eda aprobada por el Decreto Ley N\u00b0 2191 del a\u00f1o 1978. \n\n La Corte IDH desarrolla criterios sobre la calificaci\u00f3n de crimen contra la humanidad y las obligaciones estatales de investigar y sancionar que de ello se derivan en el marco de la aplicaci\u00f3n de leyes de amnist\u00eda.\u00a0Asimismo, desarrollo est\u00e1ndares sobre la obligaci\u00f3n estatal de ejercer un \u201ccontrol de convencionalidad\u201d entre las normas jur\u00eddicas internas\u00a0y la Convenci\u00f3n Americana de Derechos Humanos.", - "values": [ - "Amnist\u00eda", - "Ejecuci\u00f3n extrajudicial" - ] - }, - { - "text": "Los hechos del caso se refieren a la desaparici\u00f3n de los costarricenses Francisco Fair\u00e9n Garbi y Yolanda Sol\u00eds Corrales, mientras viajaban por Honduras con destino a M\u00e9xico.\n\nLa Corte IDH desarroll\u00f3 est\u00e1ndares sobre desapariciones forzadas invocando sus decisiones en los casos Vel\u00e1squez Rodr\u00edguez y God\u00ednez Cruz. Sin embargo, el caso fue rechazado por no considerarse probado que la desaparici\u00f3n de las v\u00edctimas estuviera relacionada con la pr\u00e1ctica estatal vigente a la \u00e9poca de los hechos.", - "values": [ - "Desaparici\u00f3n forzada" - ] - }, - { - "text": "Los hechos que fundamentan la solicitud de protecci\u00f3n a la integridad personal del Sr Cesti Hurtado se refieren a la solicitud de tratamiento m\u00e9dico adecuado necesario por sus dolencias card\u00edacas. \n\nPosteriormente, en junio de 1999 se solicit\u00f3 -con pronunciamiento favorable por parte de la CorteIDH- una ampliaci\u00f3n de la protecci\u00f3n en favor de integrantes de su familia, quienes sufr\u00edan hostigamientos y amenazas por su trabajo en defensa de los derechos del Sr. Cesti Hurtado ante los \u00f3rganos de protecci\u00f3n del sistema interamericano. \n \nEn diciembre del 2005 el Sr. Cesti requiri\u00f3 una nueva medida a fin de proteger el cumplimiento de las sentencias dictadas por la CorteIDH en su caso, la que fue desestimada. \n\nEn agosto de 2019 el Sr. Cesti reiter\u00f3 la solicitud de medidas de protecci\u00f3n, la que fue rechazada por la CorteIDH por improcedente. \n", - "values": [ - "Amenazas y hostigamientos", - "Salud" - ] - }, - { - "text": "Los hechos que fundamentan la solicitud de protecci\u00f3n en favor de Lu\u00eds Enrique Uzc\u00e1tegui, se refieren a los actos de intimidaci\u00f3n, allanamiento, amenazas y detenciones sufridos por el Sr. Uzc\u00e1tegui debido a sus denuncias por la ejecuci\u00f3n de su hermano N\u00e9stor Jos\u00e9 Uzc\u00e1tegui. ", - "values": [ - "Amenazas y hostigamientos" - ] - }, - { - "text": "Los hechos del caso se refieren al despido arbitrario de 270 funcionarios p\u00fablicos, motivado por su participaci\u00f3n en una manifestaci\u00f3n por reclamos laborales, y a las violaciones de debido proceso y del derecho a la protecci\u00f3n judicial cometidas en el \u00e1mbito de las demandas iniciadas por los trabajadores contra el despido.\n\nLa Corte IDH determin\u00f3 que los principios de legalidad e irretroactividad se aplican a las normas sancionatorias administrativas, ya que estas tambi\u00e9n son expresi\u00f3n del poder punitivo del Estado. De igual forma, afirm\u00f3 que las garant\u00edas judiciales y de debido proceso son igualmente aplicables a los procesos administrativos. Asimismo, tambi\u00e9n se refiri\u00f3 a la libertad de asociaci\u00f3n sindical en relaci\u00f3n con el despido de dirigentes sindicales.", - "values": [ - "Derechos laborales", - "Proceso administrativo", - "Libertad de asociaci\u00f3n" - ] - }, - { - "text": "Los hechos que fundamentan el otorgamiento de las medidas se relacionan con la protecci\u00f3n a la integridad del Sr. Ivcher, integrantes de su familia, y otras personas que se relacionaron con el tr\u00e1mite del caso ente la CorteIDH (v.g. testigos, peritos). ", - "values": [ - "Amenazas y hostigamientos", - "Testigo" - ] - }, - { - "text": "Los hechos del caso se relacionan con la protecci\u00f3n del Sr. Jos\u00e9 Francisco Gallardo Rodr\u00edguez, quien se encontraba detenido en el Centro de Readaptaci\u00f3n Social \u201cNezahualcoyotl-Borda-Xochiaca\u201d, donde sufr\u00eda diversos hostigamientos.", - "values": [ - "Condiciones de detenci\u00f3n" - ] - }, - { - "text": "Los hechos del caso se relacionan con la desaparici\u00f3n forzada de Narciso Gonz\u00e1lez Medina, activista critico del r\u00e9gimen dictatorial imperante en la \u00e9poca, quien fue detenido el 26 de mayo de 1994 y sufri\u00f3 tratos crueles, inhumanos y degradantes mientras se encontraba bajo custodia estatal. \n\n La Corte IDH desarroll\u00f3 est\u00e1ndares acerca de la relaci\u00f3n entre la desaparici\u00f3n forzada, y su car\u00e1cter de violaci\u00f3n compleja de derechos humanos, y la prueba indiciaria. Conjuntamente, se pronunci\u00f3 acerca de la responsabilidad del Estado respecto de la falta de debida diligencia en la investigaci\u00f3n de los hechos y la consecuente afectaci\u00f3n al deber de garant\u00eda de los derechos a libertad personal, integridad personal, vida y reconocimiento de la personalidad jur\u00eddica de la v\u00edctima.", - "values": [ - "Desaparici\u00f3n forzada", - "Tortura y tratos crueles, inhumanos o degradantes", - "Privaci\u00f3n de libertad" - ] - }, - { - "text": "Los hechos del caso se refieren al procesamiento y condena a cadena perpetua de 4 ciudadanos chilenos por el delito de traici\u00f3n a la patria contemplado en la legislaci\u00f3n peruana como un tipo de terrorismo agravado. La Corte IDH entendi\u00f3 que durante la d\u00e9cada del 80 y hasta finales del 2000, se vivi\u00f3 en Per\u00fa un conflicto entre grupos armados y agentes de las fuerzas policiales y militares. Este conflicto se agudiz\u00f3 mediante una pr\u00e1ctica sistem\u00e1tica de violaciones a los derechos humanos -entre ellas ejecuciones extrajudiciales y desapariciones forzadas- de personas sospechosas de pertenecer a grupos pol\u00edticos opositores. Estas pr\u00e1cticas fueron realizadas por agentes estatales siguiendo \u00f3rdenes de jefes militares y policiales. \n\n La Corte IDH consider\u00f3 el procesamiento y condena de las v\u00edctimas en la jurisdicci\u00f3n militar y por un tribunal \u201csin rostro\u201d, y las imprecisiones en la definici\u00f3n de los tipos penales de terrorismo y traici\u00f3n a la patria con los que se les conden\u00f3 y se afect\u00f3 su situaci\u00f3n jur\u00eddica tanto en la sanci\u00f3n aplicable, el tribunal de conocimiento y el procedimiento correspondiente, resultaron en la violaci\u00f3n de su derecho a la defensa y del principio de legalidad.", - "values": [ - "Ley antiterrorista", - "Jurisdicci\u00f3n militar" - ] - }, - { - "text": "Los hechos del caso se refieren a la deportaci\u00f3n de la familia Pacheco Tineo desde Bolivia hacia Per\u00fa llevada a cabo el 24 de febrero de 2001, luego de que el Estado rechazara la solicitud de reconocimiento del estatuto de refugiados presentada por la familia y ordenara su expulsi\u00f3n del pa\u00eds.\n\nEn el caso, la Corte IDH estableci\u00f3 las garant\u00edas m\u00ednimas del debido proceso que deben cumplirse en procedimientos de car\u00e1cter migratorio que puedan culminar con la expulsi\u00f3n o deportaci\u00f3n de una persona extranjera, as\u00ed como en los procedimientos de solicitud de reconocimiento del estatuto de refugiado.\n\nLa Corte IDH tambi\u00e9n evidenci\u00f3 la afectaci\u00f3n espec\u00edfica sufrida por ni\u00f1os y ni\u00f1as de la familia, estableciendo que la protecci\u00f3n especial de la que deben gozar ni\u00f1os y ni\u00f1as se proyecta a los procedimientos judiciales o administrativos en los que se resuelva una solicitud de asilo o una expulsi\u00f3n que los afecte.", - "values": [ - "Refugiados/as", - "Migrantes", - "Ni\u00f1ez" - ] - }, - { - "text": "Se reportan 2 solicitudes de protecci\u00f3n, ambas respecto de testigos que declararon ante la CorteIDH en el tr\u00e1mite del caso de La Panel Blanca. \n\nEn primer lugar, la medida alcanz\u00f3 a Oscar V\u00e1squez -y a algunos integrantes de su familia- quien fue detenido de manera ilegal y amenazado de muerte. \n\nEn el a\u00f1o 2001 la protecci\u00f3n fue para Manuel de Jes\u00fas Gonz\u00e1lez Chinchilla quien hab\u00eda sufrido un ataque con disparos de bala. \n", - "values": [ - "Amenazas y hostigamientos", - "Testigo" - ] - }, - { - "text": "Los hechos del caso se refieren a la desaparici\u00f3n forzada de Manfredo Vel\u00e1squez Rodr\u00edguez, estudiante universitario secuestrado por agentes del Estado en septiembre de 1982. Tales actos se produjeron en una \u00e9poca en que las desapariciones constitu\u00edan una pr\u00e1ctica sistem\u00e1tica respecto de personas consideradas peligrosas para la seguridad del Estado.\n\nSe trata de la primera sentencia dictada por la Corte IDH, por lo cual estableci\u00f3 importantes est\u00e1ndares acerca de la naturaleza jur\u00eddica y los elementos de la desaparici\u00f3n forzada como violaci\u00f3n m\u00faltiple y continuada de numerosos derechos contenidos en la Convenci\u00f3n, junto con el desarrollo de los contenidos de las obligaciones estatales de respeto, garant\u00eda y adecuaci\u00f3n del derecho interno, as\u00ed como el alcance de las obligaciones de prevenci\u00f3n, investigaci\u00f3n, sanci\u00f3n y reparaci\u00f3n de toda violaci\u00f3n.", - "values": [ - "Desaparici\u00f3n forzada" - ] - }, - { - "text": "Este caso se refiere a la \u201ctoma\u201d de la residencia del Embajador de Jap\u00f3n en el Per\u00fa, por miembros del Movimiento Revolucionario T\u00fapac Amaru (MRTA), realizada el 17 de diciembre de 1996. Ese mismo d\u00eda se declar\u00f3 el estado de emergencia. El entonces Presidente de la Rep\u00fablica, Alberto Fujimori Fujimori convoc\u00f3 a una reuni\u00f3n de emergencia y design\u00f3 personas a cargo del proceso de negociaci\u00f3n con los miembros del MRTA, y paralelamente orden\u00f3 la elaboraci\u00f3n de un plan de rescate de los rehenes que integrara a las Fuerzas Armadas y al Servicio de Inteligencia Nacional. Entre el 17 de diciembre de 1996 y enero de 1997 los emerretistas liberaron a la mayor\u00eda de los rehenes, quedando en la residencia 72 personas. \n\nEl 22 de abril de 1997 se realiz\u00f3 la operaci\u00f3n de rescate denominada \u201cNip\u00f3n 96\u201d, conocida m\u00e1s tarde como \u201cChav\u00edn de Hu\u00e1ntar\u201d. La operaci\u00f3n de rescate logr\u00f3 la liberaci\u00f3n de los rehenes. Perdi\u00f3 la vida el reh\u00e9n y entonces magistrado Carlos Ernesto Giusti Acu\u00f1a. Tambi\u00e9n perdieron la vida los comandos Teniente EP Ra\u00fal Gustavo Jim\u00e9nez Ch\u00e1vez y Teniente Coronel EP Juan Alfonso Valer Sandoval, y los catorce miembros del MRTA. Adem\u00e1s, resultaron varios heridos entre rehenes y funcionarios estatales. \n\nLa Corte IDH analiz\u00f3 las obligaciones del Estado de garantizar y respetar el derecho a la vida, en relaci\u00f3n con las obligaciones que surgen respecto del uso de la fuerza en el marco de operaciones de rescate de rehenes. Adem\u00e1s, analizo la obligaci\u00f3n del Estado de investigar de manera diligente, y en el marco de procesos penales ordinarios.", - "values": [ - "Ejecuci\u00f3n extrajudicial", - "Uso de la fuerza" - ] - }, - { - "text": "Los hechos que relacionan la solicitud de protecci\u00f3n a favor de las personas haitianas y dominicanas de origen haitiano \u2013documentadas e indocumentadas\u2013 que se encuentran sujetas a la jurisdicci\u00f3n de la Rep\u00fablica Dominicana se refieren a las deportaciones o expulsiones ilegales masivas realizadas en 1999. El otorgamiento de las medidas ten\u00eda como prop\u00f3sito ordenar a la Rep\u00fablica Dominicana se abstuviera de realizar deportaciones o expulsiones y permitir el retorno inmediato de las v\u00edctimas a su territorio, as\u00ed como el de proteger a las quienes declararon ante la CorteIDH en calidad de testigos por estos hechos.", - "values": [ - "Migrantes" - ] - }, - { - "text": "Los hechos del caso se refieren a la violaci\u00f3n sexual y torturas sufridas por Valentina Rosendo Cant\u00fa, de 17 a\u00f1os, por miembros del Ej\u00e9rcito mexicano. La Corte IDH ubic\u00f3 los hechos en un contexto de importante presencia militar en el Estado de Guerrero, lugar con un alto porcentaje de poblaci\u00f3n ind\u00edgena que conserva su identidad cultural y reside en municipios de gran marginalidad y pobreza, dirigida a reprimir actividades ilegales contra la delincuencia organizada.\n\nLa Corte IDH indic\u00f3 los elementos constitutivos de la violaci\u00f3n sexual como acto de tortura y estableci\u00f3 est\u00e1ndares sobre la improcedencia de la jurisdicci\u00f3n militar para conocer este tipo de hechos. Asimismo desarroll\u00f3 criterios sobre debida diligencia en el procesamiento de la denuncia e investigaci\u00f3n de la violencia sexual y el acceso a la justicia sin discriminaci\u00f3n enfatizando en el deber especial de protecci\u00f3n de la ni\u00f1ez.", - "values": [ - "Ni\u00f1ez", - "Violencia de g\u00e9nero", - "Tortura y tratos crueles, inhumanos o degradantes", - "Jurisdicci\u00f3n militar" - ] - }, - { - "text": "Los hechos del caso se refieren a la vulneraci\u00f3n de las garant\u00edas procesales y del derecho a la protecci\u00f3n judicial de Sr. Raxcac\u00f3 Reyes en raz\u00f3n de la condena a la pena de muerte que se le impuso por la comisi\u00f3n del delito de secuestro, sanci\u00f3n que no estaba contemplada en la ley cuando Guatemala ratific\u00f3 la Convenci\u00f3n Interamericana.\n\nLa Corte IDH analiz\u00f3 la imposici\u00f3n de la pena de muerte en el marco establecido por la Convenci\u00f3n Interamericana en su art\u00edculo 4. Adicionalmente desarroll\u00f3 la obligaci\u00f3n estatal de adecuar el derecho interno en relaci\u00f3n con la ausencia de una legislaci\u00f3n que haga efectivo el derecho a indulto. Del mismo modo, la Corte IDh reiter\u00f3 est\u00e1ndares acerca de las condiciones de detenci\u00f3n y el denominado \u201ccorredor de la muerte\u201d.", - "values": [ - "Pena de muerte" - ] - }, - { - "text": "Los hechos del caso se refieren a la desaparici\u00f3n forzada de Oscar Jos\u00e9 Blanco Romero, Roberto Javier Hern\u00e1ndez Paz y Jos\u00e9 Francisco Rivas Fern\u00e1ndez, en diciembre de 1999, por parte de las fuerzas militares. Los hechos ocurrieron estando vigente el estado de alarma decretado por el Congreso Nacional como consecuencia del desastre natural ocasionado por las fuertes lluvias y deslizamiento de tierras que afectaban algunas regiones del pa\u00eds. \n\n Frente a la denuncia de los hechos, el Estado realiz\u00f3 un reconocimiento de responsabilidad que deriv\u00f3 en un procedimiento de reparaciones y costas en el cual se oblig\u00f3 al Estado a investigar los hechos, identificar, juzgar y sancionar a los responsables, as\u00ed como tambi\u00e9n, localizar el paradero de las v\u00edctimas y pagar una justa indemnizaci\u00f3n a los familiares de los fallecidos", - "values": [ - "Desaparici\u00f3n forzada" - ] - }, - { - "text": "Los hechos de la solicitud de protecci\u00f3n se refieren al hostigamiento y persecuci\u00f3n -principalmente m\u00faltiples y graves amenazas de muerte, atentados a su vida y una serie de falsas acusaciones vincul\u00e1ndolo a delitos tales como sedici\u00f3n, deforestaci\u00f3n y otros- que sufre el Padre Daniel Joseph Vogt, sacerdote cat\u00f3lico que realiza su actividad evang\u00e9lica en la comunidad de Rubelpec, El Estor, Izabal en el interior de Guatemala,como consecuencia de su actividad pastoral.", - "values": [ - "Amenazas y hostigamientos" - ] - }, - { - "text": "Los hechos del caso se refieren al asesinato de Jorge Carpio Nicolle y de un grupo de su comitiva, tras ser interceptados por un grupo de hombres armados miembros de las Patrullas de Autodefensa Civil (PAC), en julio de 1993, en momentos en que se encontraba en una gira pol\u00edtica. Carpio era un reconocido pol\u00edtico y periodista, fundador del partido Uni\u00f3n del Centro Nacional, en ese entonces opositor del gobierno. Tras los hechos quienes consiguieron sobrevivir denunciaron los hechos que permanecieron impunes. En la \u00e9poca en que ocurrieron los hechos, las PAC de San Pedro de Jocopilas comet\u00edan abusos contra los pobladores de la regi\u00f3n, amparados por un esquema de impunidad.\n\nEl Estado efectu\u00f3 un reconocimiento total de responsabilidad internacional, por lo cual la Corte IDH se pronunci\u00f3 acerca del alcance de la obligaci\u00f3n de reparar.", - "values": [ - "Ejecuci\u00f3n extrajudicial" - ] - }, - { - "text": "Los hechos del caso se refiere a la ejecuci\u00f3n extrajudicial de Juan Humberto S\u00e1nchez tras ser detenido por un grupo de militares armados, sin mediar orden judicial y debido a sus presuntas vinculaciones con guerrilleros del Frente Farabundo Mart\u00ed para la Liberaci\u00f3n Nacional (FMLN).\n\nLa Corte IDH ubic\u00f3 los hechos en un contexto -vigente durante los a\u00f1os 80 y principios de los 90- de desapariciones forzadas y ejecuciones cometidas por fuerzas militares al amparo de la doctrina de seguridad nacional, en raz\u00f3n de la que capturaban a personas \"peligrosas\". En ese escenario los militares controlaban a la polic\u00eda y los jueces se sent\u00edan intimidados de investigar los hechos.\n\nLa Corte IDH estableci\u00f3 est\u00e1ndares acerca de la detenci\u00f3n ilegal y arbitraria, as\u00ed como sobre las torturas que quedaron evidentes por las condiciones en que fue encontrado el cuerpo de la v\u00edctima.", - "values": [ - "Ejecuci\u00f3n extrajudicial", - "Privaci\u00f3n de libertad", - "Tortura y tratos crueles, inhumanos o degradantes" - ] - }, - { - "text": "Los hechos del caso se refieren a las amenazas a la vida y la integridad personal de integrantes de la Fundaci\u00f3n de Antropolog\u00eda Forense de Guatemala, como consecuencia de su trabajo que consiste en la realizaci\u00f3n de investigaciones antropol\u00f3gicas forenses en relaci\u00f3n con muertes sospechosas.", - "values": [ - "Amenazas y hostigamientos", - "Defensores/as de derechos humanos" - ] - }, - { - "text": "Los hechos del caso se refieren a la desaparici\u00f3n forzada de Rosendo Radilla Pacheco tras ser detenido por efectivos del Ej\u00e9rcito en agosto de 1974. La v\u00edctima participaba en actividades pol\u00edticas y sociales relacionadas con grupos caficultores y campesinos de la zona de Guerrero. La Corte IDH ubica los hechos en un contexto al que se conoce como \u201cGuerra sucia de los 70\u201d, en el que tuvieron lugar numerosas desapariciones forzadas de personas.\n\nLa Corte IDH aplic\u00f3 est\u00e1ndares acerca de la desaparici\u00f3n forzada como violaci\u00f3n m\u00faltiple de derechos humanos y la debida diligencia en la investigaci\u00f3n judicial. En tal sentido, la Corte IDH estableci\u00f3 l\u00edmites a la \"verdad hist\u00f3rica\" documentada en informes y recomendaciones, entendiendo que \u00e9sta no sustituye el deber estatal de investigar judicialmente. Adicionalmente marc\u00f3 est\u00e1ndares acerca del fuero militar en relaci\u00f3n con el conocimiento de casos de violaciones a los derechos humanos.", - "values": [ - "Desaparici\u00f3n forzada", - "Jurisdicci\u00f3n militar" - ] - }, - { - "text": "Los hechos del caso se refieren a los procesos penales \u2013conocidos con los nombres de \u201cGader\u201d, \u201cLuminarias Chinas\u201d y \u201cQuaglio\u201d- contra la Sra. Marina Nine Lupe del Rosario Andrade Salm\u00f3n por conductas il\u00edcitas relacionadas con la administraci\u00f3n de fondos p\u00fablicos durante su gesti\u00f3n como Concejala, Presidenta del Concejo Municipal y Alcaldesa del Municipio de La Paz. \n\nEn su Sentencia, la CorteIDH analiza violaciones al derecho a la propiedad y a la circulaci\u00f3n como consecuencia de la imposici\u00f3n de medidas cautelares no privativas de libertad en el marco de los procesos penales tramitados; as\u00ed como el derecho a ser juzgado en un plazo razonable. \n", - "values": [ - "Corrupci\u00f3n", - "Propiedad" - ] - }, - { - "text": "Los hechos del caso se refieren a la violaci\u00f3n del derecho a la protecci\u00f3n judicial en perjuicio de 233 miembros del Sindicato de Funcionarios, Profesionales y T\u00e9cnicos de la Empresa de Servicio de Agua Potable y Alcantarillado de Lima (SIFUSE), debido a que el Estado no les provey\u00f3 un recurso efectivo frente a la aplicaci\u00f3n retroactiva de dos decretos que eliminaban el sistema de escala salarial que los reg\u00eda, todo ello pese a que la Constituci\u00f3n Pol\u00edtica establec\u00eda la no retroactividad de este tipo de leyes. \n\n El Estado reconoci\u00f3 su responsabilidad internacional por la aplicaci\u00f3n retroactiva de los mencionados decretos y por la falta de protecci\u00f3n judicial frente a esta situaci\u00f3n. Sin embargo, no acept\u00f3 su responsabilidad por la violaci\u00f3n de la propiedad privada, debido a que la raz\u00f3n de los decretos se fundamentaba en la crisis econ\u00f3mica que enfrentaba el pa\u00eds y que justificaba -en nombre del inter\u00e9s social- tal limitaci\u00f3n al derecho de propiedad. \n\n La Corte IDH entendi\u00f3 que el derecho a la pensi\u00f3n tiene efectos patrimoniales, por lo cual tambi\u00e9n se encuentra protegido por el derecho a la propiedad consagrado en la Convenci\u00f3n Americana.", - "values": [ - "Derechos laborales", - "Propiedad" - ] - }, - { - "text": "Los hechos que fundamentan la solicitud de protecci\u00f3n a favor de Jos\u00e9 Mario S\u00e1nchez Gonz\u00e1lez, de nacionalidad nicarag\u00fcense, integrante de la \u201cAsociaci\u00f3n ProB\u00fasqueda\u201d de ni\u00f1os y ni\u00f1as desaparecidos durante el conflicto armado salvadore\u00f1o se refieren a la citaci\u00f3n emitida \u2013en marzo de 2006- por la Direcci\u00f3n General de Migraciones de El Salvador debido a su permanencia ilegal en el pa\u00eds. \n\nEste hecho se lo relaciona con las cr\u00edticas emitidas por la Asociaci\u00f3n en el marco del seguimiento a la implementaci\u00f3n de la Sentencia de la CorteIDH en el caso de las Hermanas Serrano Cruz, en el cual act\u00faan como representantes de las v\u00edctimas. El requerimiento de la solicitud tenia como prop\u00f3sito, ordenar a El Salvador que se abstenga de cualquier posible deportaci\u00f3n, hasta tanto no se resuelva el tr\u00e1mite de renovaci\u00f3n de residencia temporal.\n\nEl solicitante desisti\u00f3 de su petici\u00f3n antes que la CorteIDH la resolviera. \n", - "values": [ - "Ni\u00f1ez" - ] - }, - { - "text": "Los hechos del caso se refieren a la detenci\u00f3n, tortura y desaparici\u00f3n forzada de Jerem\u00edas Osorio Rivera, el 28 de abril de 1991, por integrantes del Ej\u00e9rcito peruano, en el marco del llamado \"Plan Operativo Palmira\" que se implement\u00f3 en la Provincia de Cajatambo, Departamento de Lima. A inicios de 1991, la zona fue declarada en estado de emergencia entreg\u00e1ndose al Ej\u00e9rcito el control interno de la misma. \n\nLa Corte IDH entendi\u00f3 que durante la d\u00e9cada del 80 y hasta finales del 2000, se vivi\u00f3 en Per\u00fa un conflicto entre grupos armados y agentes de las fuerzas policiales y militares. Este conflicto se agudiz\u00f3 mediante una pr\u00e1ctica sistem\u00e1tica de violaciones a los derechos humanos -entre ellas ejecuciones extrajudiciales y desapariciones forzadas- de personas sospechosas de pertenecer a grupos pol\u00edticos opositores. Estas pr\u00e1cticas fueron realizadas por agentes estatales siguiendo \u00f3rdenes de jefes militares y policiales. \n\nLa Corte IDH reiter\u00f3 est\u00e1ndares sobre desaparici\u00f3n forzada de personas -el car\u00e1cter jus cogens de su prohibici\u00f3n- y el alcance de la jurisdicci\u00f3n penal militar en relaci\u00f3n con las obligaciones estatales que impone la Convenci\u00f3n Americana. Adicionalmente analiz\u00f3 la conducci\u00f3n e las investigaciones penales a la luz del criterio de debida diligencia y la tipificaci\u00f3n del delito de desaparici\u00f3n forzada en la legislaci\u00f3n interna. \n\nRespecto a la suspensi\u00f3n de garant\u00edas, la Corte IDH reiter\u00f3 que la prohibici\u00f3n de privaci\u00f3n arbitraria de la libertad es un derecho inderogable no susceptible de suspensi\u00f3n, y menos a\u00fan durante un conflicto armado.", - "values": [ - "Desaparici\u00f3n forzada", - "Jurisdicci\u00f3n militar", - "Estado de excepci\u00f3n", - "Privaci\u00f3n de libertad" - ] - }, - { - "text": "Los hechos que fundamentan la solicitud de protecci\u00f3n se relacionan con amenazas y hostigamientos contra personas que han hecho uso del sistema interamericano de protecci\u00f3n de los derechos humanos; tambi\u00e9n refieren al asesinato de Miguel Angel Pav\u00f3n y del Sargento Jos\u00e9 Isa\u00edas Vilorio testigos en los casos de la desaparici\u00f3n forzada de los se\u00f1ores Vel\u00e1squez Rodr\u00edguez, Fair\u00e9n Garbi, Sol\u00eds Corrales, y God\u00ednez Cruz cuyos casos se encontraban denunciados ante el sistema interamericano. \n\nEl otorgamiento de las medidas buscaba proteger la vida e integridad f\u00edsica de las personas que hab\u00edan rendido su declaraci\u00f3n y aquellos que ser\u00edan llamados a ese efecto. \n", - "values": [ - "Amenazas y hostigamientos", - "Defensores/as de derechos humanos", - "Testigo" - ] - }, - { - "text": "Los hechos del caso se refieren a los actos de hostigamiento, intimidaci\u00f3n y amenazas que sufrieron \u2013por su actuaci\u00f3n como testigos\u2013los familiares de Jorge Carpio Nicolle, quien fuera asesinado en julio de 1993, por miembros de las Patrullas de Autodefensa Civil (PAC), junto a un grupo de su comitiva, en momentos en que se encontraba en una gira pol\u00edtica.\n", - "values": [ - "Testigo", - "Amenazas y hostigamientos" - ] - }, - { - "text": "Los hechos del caso se relacionan con la remoci\u00f3n -en el a\u00f1o 2000- de Mercedes Chocr\u00f3n Chocr\u00f3n, quien ten\u00eda un nombramiento provisorio como Jueza de Primera Instancia en lo Penal de la Circunscripci\u00f3n Judicial del \u00c1rea Metropolitana de Caracas. \n\n La Corte IDH aplic\u00f3 est\u00e1ndares sobre protecci\u00f3n judicial efectiva, y desarroll\u00f3 criterios sobre independencia judicial relacionados con\u00a0las debidas garant\u00edas en el proceso de remoci\u00f3n del cargo. Asimismo, la Corte hizo referencia al deber de motivaci\u00f3n las decisiones y su relaci\u00f3n con el derecho de defensa.", - "values": [ - "Jueces/zas", - "Destituci\u00f3n de funcionario p\u00fablico" - ] - }, - { - "text": "Los hechos del caso se refieren al secuestro -en octubre de 1990- y posterior desaparici\u00f3n de Ernesto Rafael Castillo P\u00e1ez por parte de la Polic\u00eda Nacional del Per\u00fa, en el contexto de una operaci\u00f3n para detener a los responsables del grupo \u201cSendero Luminoso\u201d. Tras la desaparici\u00f3n de la v\u00edctima, los familiares iniciaron una acci\u00f3n de habeas corpus que posteriormente desencaden\u00f3 un proceso penal por el delito de abuso a la autoridad contra varios oficiales de la Polic\u00eda. Sin embargo, la justicia orden\u00f3 archivar el caso sin sancionar a persona alguna. \n\n La Corte IDH consider\u00f3 los hechos bajo la \u00f3ptica de la desaparici\u00f3n forzada estableciendo, adem\u00e1s, la pertinencia del h\u00e1beas corpus en este tipo de casos. Del mismo modo, la Corte IDH se\u00f1al\u00f3 que el Estado est\u00e1 obligado a investigar este tipo de hechos ya que aun en el supuesto de que dificultades de orden interno impidiesen identificar a los responsables, subsiste el derecho de los familiares de la v\u00edctima de conocer cu\u00e1l fue el destino de \u00e9sta y, en su caso, d\u00f3nde se encuentran sus restos.", - "values": [ - "Desaparici\u00f3n forzada" - ] - }, - { - "text": "Los hechos del caso se refieren a la situaci\u00f3n de Jos\u00e9 Mar\u00eda Cantos a quien se le impuso el pago de una importante suma de dinero por concepto de tasa de justicia, multa por falta de pago de la misma y honorarios de abogados y peritos como consecuencia de un proceso seguido ante la Corte Suprema de Justica de la Naci\u00f3n contra el Estado Nacional y la Provincia de Santiago del Estero.\n\nLa Corte IDH estableci\u00f3 que las sumas por concepto de tasas de justicia y multas que le fueron aplicadas al Sr. Cantos constituyeron una obstrucci\u00f3n al derecho de acceso a la justicia, toda vez que se requiere que quienes participan en el proceso puedan hacerlo sin el temor de verse obligados a pagar sumas desproporcionadas de dinero a causa de haber recurrido a tribunales.", - "values": [ - "Costas judiciales" - ] - }, - { - "text": "Los hechos del caso se refieren a la detenci\u00f3n ilegal, tortura y desaparici\u00f3n forzada, sufrida por Jos\u00e9 Carlos Trujillo Oroza durante el a\u00f1o 1972, as\u00ed como a la imposibilidad de sus familiares de denunciar los hechos en el orden local a ra\u00edz la inestabilidad pol\u00edtica y a los sucesivos golpes militares que se llevaron a cabo en el pa\u00eds. \n\n En el caso, el Estado reconoci\u00f3 los hechos as\u00ed como la responsabilidad internacional y las consecuencias jur\u00eddicas que de ello derivaban. Tal allanamiento fue admitido por la Corte IDH.", - "values": [ - "Privaci\u00f3n de libertad", - "Desaparici\u00f3n forzada", - "Tortura y tratos crueles, inhumanos o degradantes" - ] - }, - { - "text": "Los hechos que fundamentan la solicitud de protecci\u00f3n en favor de la se\u00f1ora Delia Revoredo Marsano de Mur se refieren a las afectaciones a su integridad personal derivadas de las amenazas y hostigamientos padecidos por ella y su familia como consecuencia de su actuaci\u00f3n como integrante del Tribunal Constitucional de Per\u00fa. ", - "values": [ - "Amenazas y hostigamientos", - "Jueces/zas" - ] - }, - { - "text": "Los hechos que fundamentan la solicitud de protecci\u00f3n en favor de familiares de v\u00edctimas del Caso \"19 Comerciantes\" se relacionan con las represalias y amenazas de muerte sufridas en raz\u00f3n de declaraciones hechas a medios de comunicaci\u00f3n colombianos y de sus declaraciones testimoniales en audiencia p\u00fablica ante la CorteIDH.", - "values": [ - "Amenazas y hostigamientos", - "Testigo" - ] - }, - { - "text": "Los hechos que fundamentan la solicitud de protecci\u00f3n de la vida e integridad de Digna Ochoa y otros miembros del Centro de DD.HH. Miguel Agust\u00edn Pro Ju\u00e1rez se relacionan con los hostigamientos y amenazas recibidos por su trabajo como defensores de derechos humanos. Las medidas tambi\u00e9n fueron concedidas a favor de las personas que trabajan o acuden a las oficinas del Centro para que puedan llevar adelante sus tareas sin riesgos. ", - "values": [ - "Defensores/as de derechos humanos", - "Amenazas y hostigamientos" - ] - }, - { - "text": "Los hechos del caso refieren del riesgo a la vida e integridad de Justo Victoriano Mart\u00ednez Morales y de sus familiares inmediatos por las amenazas de muerte sufridas en raz\u00f3n de sus investigaciones sobre el secuestro, asesinato y desaparici\u00f3n forzada del periodista estadounidense Nicholas Chapman Blake. ", - "values": [ - "Amenazas y hostigamientos", - "Testigo", - "Desaparici\u00f3n forzada" - ] - }, - { - "text": "Los hechos que fundamentan la solicitud de protecci\u00f3n a favor de la comunidad Mayagna (Sumo) Awas Tingni se relacionan con la protecci\u00f3n de su territorio, pretendiendo por esta v\u00eda evitar da\u00f1os inmediatos e irreparables hasta tanto no se produzca la delimitaci\u00f3n, demarcaci\u00f3n y titulaci\u00f3n definitiva ordenada por la CorteIDH en su Sentencia sobre el Fondo, Reparaciones y Costas del caso. ", - "values": [ - "Pueblos ind\u00edgenas", - "Propiedad" - ] - }, - { - "text": "Los hechos del caso se refieren a la desaparici\u00f3n forzada -entre abril de 1972 y enero de 1975- de miembros de la \u201cGuerrilha do Araguaia\u201d, un movimiento de resistencia a la dictadura militar integrado por algunos miembros del partido comunista de Brasil. Como consecuencia de la vigencia y aplicaci\u00f3n de la ley de amnist\u00eda -Ley N\u00b0 6683/79- no fueron realizadas investigaciones penales por tales hechos. \n\n La Corte IDH reiter\u00f3 est\u00e1ndares sobre la desaparici\u00f3n forzada de personas como violaci\u00f3n m\u00faltiple y continuada de derechos, as\u00ed como sobre la obligaci\u00f3n estatal de investigar y sancionar graves violaciones a los derechos humanos y su incompatibilidad con la vigencia de leyes de amnist\u00eda. Por otro lado, la Corte IDH desarroll\u00f3 la protecci\u00f3n al derecho de acceder a la informaci\u00f3n p\u00fablica y los l\u00edmites del secreto estatal.", - "values": [ - "Amnist\u00eda", - "Desaparici\u00f3n forzada", - "Acceso a la informaci\u00f3n p\u00fablica" - ] - }, - { - "text": "Los hechos del caso se relacionan con las condiciones de detenci\u00f3n de ni\u00f1os y adolescentes privados de libertad en el Complejo de Tatuap\u00e9 de la Fundaci\u00f3n de Bienestar del Menor (FEBEM) en San Pablo.", - "values": [ - "Condiciones de detenci\u00f3n", - "Ni\u00f1ez" - ] - }, - { - "text": "Los hechos del caso se refieren al derecho de la Comunidad Gar\u00edfuna de Punta Piedra a la posesi\u00f3n pac\u00edfica y libre de interferencias de terceros de su territorio tradicional. Desde el a\u00f1o 1993 y por m\u00e1s de 20 a\u00f1os la Comunidad no ha conseguido controlar de manera efectiva y armoniosa el territorio que hist\u00f3ricamente le pertenece como consecuencia del paulatino incremento de la ocupaci\u00f3n del mismo por parte de terceros ajenos a la Comunidad. \n\nLa CorteIDH desarrolla est\u00e1ndares para definir la relevancia y alcance de la garant\u00eda efectiva del uso y goce de la propiedad colectiva en relaci\u00f3n con la injerencia de terceros, as\u00ed como sobre las caracter\u00edsticas de un proceso adecuado y efectivo para garantizar el derecho a la consulta.", - "values": [ - "Propiedad" - ] - }, - { - "text": "Los hechos del caso se refieren a la muerte -en mayo de 1998, cuando sal\u00eda de una reuni\u00f3n de la Alcald\u00eda de Catacamas- de Carlos Antonio Luna L\u00f3pez, defensor de derechos humanos que apoyaba las luchas por la tierra de los grupos campesinos locales. La Corte IDH ubic\u00f3 los hechos en una situaci\u00f3n de conflictividad y riesgo para las personas que trabajaban en la protecci\u00f3n del medio ambiente en Honduras.\n\nLa Corte IDH aplic\u00f3 est\u00e1ndares sobre obligaciones estatales frente a situaciones de riesgo real e inmediato para la vida de las personas. Adicionalmente evalu\u00f3 la investigaci\u00f3n de lo ocurrido a partir del marco de debida diligencia.", - "values": [ - "Defensores/as de derechos humanos", - "Medio ambiente", - "Amenazas y hostigamientos" - ] - }, - { - "text": "Los hechos del caso se refieren al otorgamiento de una concesi\u00f3n por parte del Estado a una empresa privada para realizar trabajos de construcci\u00f3n de carreteras y de explotaci\u00f3n maderera en tierras ancestrales de la comunidad Mayagna (sumo) Awas Tingui, sin mediar su consentimiento.\n\nLa Corte IDH estableci\u00f3 est\u00e1ndares derivados de la inexistencia de un procedimiento efectivo para delimitar, demarcar y titular las tierras ind\u00edgenas en relaci\u00f3n con la garant\u00eda de protecci\u00f3n judicial. En igual sentido, desarroll\u00f3 est\u00e1ndares acerca del concepto de propiedad en las comunidades ind\u00edgenas y su vinculaci\u00f3n con el derecho consuetudinario.", - "values": [ - "Pueblos ind\u00edgenas", - "Propiedad" - ] - }, - { - "text": "Los hechos del caso se refieren a violaciones a las garant\u00edas judiciales ante el cese colectivo de trabajadores de diversas entidades p\u00fablicas (Petroper\u00fa, Ministerio de Educaci\u00f3n, Ministerio de Econom\u00eda y Finanzas y la Empresa Nacional de Puertos) ocurrido en un contexto de aplicaci\u00f3n de normas y procedimientos especiales \u2013entre los a\u00f1os 1996 y 1998- de racionalizaci\u00f3n de los organismos estatales.\n\nEn su Sentencia, la CorteIDH analiz\u00f3 la respuesta judicial frente a los despidos y el derecho al trabajo en relaci\u00f3n con el acceso a la justicia. \n", - "values": [ - "Tutela judicial efectiva", - "Derechos laborales" - ] - }, - { - "text": "Los hechos del caso se relacionan con la desaparici\u00f3n forzada de Mayra Angelina Guti\u00e9rrez Hern\u00e1ndez \u2013en abril del 2000- as\u00ed como la falta de investigaci\u00f3n para localizar su paradero y sancionar a los responsables de la misma. \n\nEn su sentencia la CorteIDH establece las diferencias entre un caso de \u201cdesaparici\u00f3n\u201d y otro de \u201cdesaparici\u00f3n forzada\u201d para, finalmente, considerar -en raz\u00f3n de la prueba disponible- lo ocurrido a la Sra. Guti\u00e9rrez Hern\u00e1ndez como un supuesto de la primera categor\u00eda. \n\nAdicionalmente, la CorteIDH analiza la investigaci\u00f3n estatal a la luz de los par\u00e1metros establecidos por la Convenci\u00f3n de Belem do Par\u00e1 y la presencia de estereotipos negativos de g\u00e9nero en la investigaci\u00f3n estatal. \n", - "values": [ - "Desaparici\u00f3n forzada", - "Violencia de g\u00e9nero" - ] - }, - { - "text": "Los hechos se relacionan con el contexto de desprestigio y ataques que sufren los defensores y defensoras de derechos humanos en el Estado de Chihuahua, que incluye hostigamientos, asesinatos y desapariciones por la tarea que realizan. En particular, se hace foco en la situaci\u00f3n de Luz Estela Castro Rodr\u00edguez fundadora y directora del Centro de Derechos Humanos de las Mujeres (CEDEHM) quien dedica su tarea de defensora de derechos humanos a denuncia de la violencia contra las mujeres que ocurre en esa regi\u00f3n.", - "values": [ - "Amenazas y hostigamientos", - "Defensores/as de derechos humanos", - "Violencia de g\u00e9nero" - ] - }, - { - "text": "Los hechos del caso se relacionan con la detenci\u00f3n, ejecuci\u00f3n extrajudicial, tortura y maltratos en perjuicio de varios integrantes de la familia Barrios por parte de la Polic\u00eda del Estado Aragua, as\u00ed como la falta de investigaci\u00f3n y sanci\u00f3n a los responsables. Entre 1998 y 2011 un total de 7 integrantes de la familia fueron asesinados. \n\n La Corte IDH reiter\u00f3 est\u00e1ndares en materia de impunidad vinculados al actuar abusivo por parte de los aparatos de poder estatal, y sobre la obligaci\u00f3n estatal de investigar de manera eficiente y eficaz de modo de identificar a los autores de las violaciones. De igual modo, se refiri\u00f3 a la obligaci\u00f3n estatal de prevenir y garantizar en relaci\u00f3n con la protecci\u00f3n del derecho a la vida. \n\n Asimismo, la Corte IDH estableci\u00f3 criterios sobre inviolabilidad de domicilio y afectaci\u00f3n a la propiedad privada en raz\u00f3n del ingreso de funcionarios policiales al mismo, y sobre restricciones de hecho a la libertad de circulaci\u00f3n como consecuencia de los hostigamientos sufridos por los integrantes de la familia.", - "values": [ - "Ejecuci\u00f3n extrajudicial", - "Tortura y tratos crueles, inhumanos o degradantes", - "Amenazas y hostigamientos", - "Propiedad" - ] - }, - { - "text": "Los hechos del caso se refieren a la desaparici\u00f3n forzada de Sa\u00fal God\u00ednez Cruz en julio de 1982, en el momento en que se dirig\u00eda a su trabajo como profesor. La v\u00edctima era un activo dirigente del gremio y hab\u00eda participado en varias huelgas iniciadas en aquella \u00e9poca. \n\nLa Corte IDH aplic\u00f3 est\u00e1ndares desarrollados en el caso Vel\u00e1squez Rodr\u00edguez acerca de los elementos y caracter\u00edsticas de la desaparici\u00f3n forzada, tomando en consideraci\u00f3n el contexto hist\u00f3rico imperante al momento de los hechos. Del mismo modo, la Corte IDH estableci\u00f3 est\u00e1ndares desarrollando las caracter\u00edsticas de obligaci\u00f3n de medio de los deberes estatales de prevenir y sancionar.", - "values": [ - "Desaparici\u00f3n forzada", - "Defensores/as de derechos humanos" - ] - }, - { - "text": "Los hechos del caso se refieren a la condena penal impuesta a Santander Trist\u00e1n Donoso, abogado paname\u00f1o, a ra\u00edz de una querella presentada por el ex Procurador General por los delitos de calumnia e injuria. En julio de 1996, el funcionario p\u00fablico divulg\u00f3 el contenido de una conversaci\u00f3n telef\u00f3nica privada entre Trist\u00e1n Donoso y un cliente lo que provoc\u00f3 la presentaci\u00f3n de una denuncia por parte de Trist\u00e1n Donoso por la intromisi\u00f3n en su vida privada y en su libertad en el ejercicio profesional. La Corte Suprema sobresey\u00f3 al ex Procurador, y posteriormente hizo lugar a la querella por los delitos de calumnia e injuria presentada contra Trist\u00e1n Donoso.\n\nLa Corte IDH reconoci\u00f3 que la aplicaci\u00f3n de una sanci\u00f3n penal constituye una restricci\u00f3n indirecta a la libertad de expresi\u00f3n cuando se trata de expresiones relativas a funcionarios p\u00fablicos y sobre asuntos de inter\u00e9s p\u00fablico, y que la divulgaci\u00f3n de la conversaci\u00f3n telef\u00f3nica privada supuso una afectaci\u00f3n al derecho a la vida privada y a la honra.", - "values": [ - "Libertad de expresi\u00f3n" - ] - }, - { - "text": "Los hechos del caso se refieren al secuestro y muerte de Marco Bienvenido Palma Mendoza por supuestos agentes del Estado y las investigaciones penales derivadas de los mismos. El cuerpo de la v\u00edctima fue identificado 3 a\u00f1os despu\u00e9s de su desaparici\u00f3n. \n\n La Corte IDH rechaz\u00f3 que la conducta estatal derivara en la vulneraci\u00f3n de los derechos a las garant\u00edas y protecci\u00f3n judicial de los familiares de la v\u00edctima y, del mismo modo, determin\u00f3 que no hubo responsabilidad estatal respecto del derecho a la integridad personal.", - "values": [ - "Privaci\u00f3n de libertad", - "Ejecuci\u00f3n extrajudicial", - "Desaparici\u00f3n forzada" - ] - }, - { - "text": "Los hechos del caso se refieren a las violaciones a los derechos humanos de la Sra. I.V. como consecuencia de haber sido sometida a una cirug\u00eda de ligadura de las trompas de Falopio, sin su consentimiento informado; as\u00ed como a la subsecuente falta de una respuesta judicial efectiva frente a tales hechos.\n\nEn su Sentencia,la CorteIDH interpret\u00f3 la regla del consentimiento informado en el \u00e1mbito de la salud sexual y reproductiva,iluminando las pr\u00e1cticas m\u00e9dicas basadas en estereotipos de g\u00e9nero que afectan los derechos de las mujeres. Adicionalmente analiz\u00f3 los hechos en el marco de la protecci\u00f3n del derecho de las mujeres a una vida libre de violencia. \n\nLa CorteIDH abord\u00f3 tambi\u00e9n el acceso a la justicia en casos de violaciones a los derechos sexuales y reproductivos, en relaci\u00f3n con la garant\u00eda de no discriminaci\u00f3n. \n", - "values": [ - "Derechos reproductivos", - "Estereotipos", - "Violencia de g\u00e9nero", - "Discriminaci\u00f3n" - ] - }, - { - "text": "Los hechos que fundamentan la solicitud de protecci\u00f3n de la vida y la integridad de Valentina Rosendo Cant\u00fa \u2013quien fuera v\u00edctima de un caso en tr\u00e1mite ante el SIDH- y su hija Yenis Bernardino Rosendo se refieren a los hostigamientos sufridos por Valentina por parte de personas de \u201caspecto militar\u201d y los intentos de privaci\u00f3n de libertad y robo que sufri\u00f3 su hija. ", - "values": [ - "Amenazas y hostigamientos" - ] - }, - { - "text": "Los hechos del caso se relacionan con la detenci\u00f3n ilegal y arbitraria, tortura, tratos crueles, inhumanos y degradantes del defensor de derechos humanos Lysias Fleury -quien formaba parte de la organizaci\u00f3n Comisi\u00f3n Episcopal Nacional de Justicia y Paz-, por parte de agentes de la Polic\u00eda Nacional, as\u00ed como la falta de debida diligencia en la investigaci\u00f3n de los hechos y la denegaci\u00f3n de justicia en perjuicio de \u00e9l y sus familiares. \n\n La Corte IDH ubic\u00f3 los hechos en un contexto de polarizaci\u00f3n pol\u00edtica, inseguridad p\u00fablica y deficiencias institucionales en Hait\u00ed en el cual la Polic\u00eda Nacional estaba implicada en casos de abusos de poder y otras actividades criminales, llevando adelante una pr\u00e1ctica constante de detenciones ilegales y malos tratos. \n\n La Corte IDH aplic\u00f3 est\u00e1ndares sobre detenci\u00f3n ilegal y arbitraria y consider\u00f3 las condiciones de su detenci\u00f3n como actos de torturas y tratos crueles, inhumanos y degradantes. Asimismo destac\u00f3 la obligaci\u00f3n estatal referida a la protecci\u00f3n y reconocimiento del papel que cumplen los/as defensores/as de derechos humanos como garantes contra la impunidad y su relaci\u00f3n con la libertad de asociaci\u00f3n. Finalmente la Corte IDH elabor\u00f3 est\u00e1ndares sobre el derecho de circulaci\u00f3n y residencia como consecuencia de la limitaci\u00f3n de facto que afect\u00f3 Lysias Fleury como consecuencia de la impunidad en que quedaron los hechos.", - "values": [ - "Condiciones de detenci\u00f3n", - "Privaci\u00f3n de libertad", - "Defensores/as de derechos humanos", - "Tortura y tratos crueles, inhumanos o degradantes", - "Libertad de asociaci\u00f3n" - ] - }, - { - "text": "Los hechos del caso se refieren a la detenci\u00f3n ilegal y arbitraria y los allanamientos -por parte de agentes estatales- sufridos por la joven J. debido a su supuesta vinculaci\u00f3n con el grupo \u201cSendero Luminoso\u201d, ocurrida a inicios del a\u00f1o 1992 al amparo de un r\u00e9gimen legal de excepci\u00f3n que suspendi\u00f3 garant\u00edas. \n\n La Corte IDH consider\u00f3 que durante la d\u00e9cada del 80 y hasta finales del 2000, se vivi\u00f3 en Per\u00fa un conflicto entre grupos armados y agentes de las fuerzas policiales y militares. Este conflicto se agudiz\u00f3 mediante una pr\u00e1ctica sistem\u00e1tica de violaciones a los derechos humanos -entre ellas ejecuciones extrajudiciales y desapariciones forzadas- de personas sospechosas de pertenecer a grupos pol\u00edticos opositores que fueron realizadas por agentes estatales siguiendo \u00f3rdenes de jefes militares y policiales. \n\n La joven J. fue acusada bajo la ley antiterrorista y sometida a un proceso -en tribunales \"sin rostro\"- que la Corte IDH consider\u00f3 violatorio de sus garant\u00edas y de la presunci\u00f3n de inocencia. En igual sentido, la Corte IDH evalu\u00f3 la detenci\u00f3n y el r\u00e9gimen de prisi\u00f3n preventiva que se le aplic\u00f3 a J. as\u00ed como los maltratos y la violencia f\u00edsica y sexual a la que fue sometida. \n\n La Corte IDH refiri\u00f3 que, cuando existe raz\u00f3n fundada para creer que se ha cometido un acto de tortura o malos tratos, la decisi\u00f3n de iniciar y adelantar una investigaci\u00f3n constituye una obligaci\u00f3n estatal imperativa y no puede desecharse o condicionarse por actos o disposiciones normativas internas de ninguna \u00edndole.", - "values": [ - "Privaci\u00f3n de libertad", - "Prisi\u00f3n preventiva", - "Violencia de g\u00e9nero", - "Ley antiterrorista", - "Tortura y tratos crueles, inhumanos o degradantes" - ] - }, - { - "text": "Los hechos se relacionan con la solicitud de protecci\u00f3n a la vida, la integridad y la libertad de asociaci\u00f3n de un grupo de integrantes de la organizaci\u00f3n no gubernamental Comit\u00e9 de Familiares de V\u00edctimas de los sucesos de Febrero-Marzo de 1989, COFAVIC.", - "values": [ - "Defensores/as de derechos humanos", - "Amenazas y hostigamientos" - ] - }, - { - "text": " \nLos hechos del caso se refieren a la muerte violenta -en el marco de un operativo policial- del agente policial Luis Jorge Valencia Hinojosa. \n\nEn su Sentencia la CorteIDH analiza las garant\u00edas de independencia e imparcialidad de la jurisdicci\u00f3n especial \u2013penal policial- que investig\u00f3 los hechos, as\u00ed como la obligaci\u00f3n estatal de investigar violaciones al derecho a la vida en situaciones de uso de fuerza leg\u00edtima.", - "values": [ - "Uso de la fuerza", - "Jurisdicci\u00f3n especial" - ] - }, - { - "text": "Los hechos del caso se refieren al derecho a la propiedad ancestral de la Comunidad ind\u00edgena X\u00e1kmok K\u00e1sek que por m\u00e1s de 20 a\u00f1os tramitaba una solicitud de reivindicaci\u00f3n sin obtener ninguna respuesta. \n\nLa Corte IDH consolid\u00f3 su jurisprudencia sobre el derecho a la propiedad ancestral comunitaria, reconociendo la estrecha relaci\u00f3n existente entre las tierras ancestrales, los recursos que de ellas derivan, y los pueblos ind\u00edgenas. Particularmente, estableci\u00f3 que la falta de acceso a prestaciones b\u00e1sicas, como agua, alimentaci\u00f3n, salud y educaci\u00f3n, sufridas por la Comunidad constituye una violaci\u00f3n al derecho a la vida, y se\u00f1al\u00f3 tambi\u00e9n que el Estado era responsable por la muerte de integrantes de la comunidad en tanto no adopt\u00f3 las medidas positivas necesarias que eran de esperarse para prevenir o evitar el riesgo a la vida. \n\nUna vez m\u00e1s, la Corte IDH reconoci\u00f3 expl\u00edcitamente que la posesi\u00f3n tradicional de los ind\u00edgenas sobre sus tierras tiene efectos equivalentes al t\u00edtulo de pleno dominio que otorga el Estado y que, consecuentemente, aquellos que por causas ajenas a su voluntad han salido o perdido la posesi\u00f3n mantienen el derecho de propiedad sobre las mismas a\u00fan a falta de t\u00edtulo legal e incluso cuando las tierras se encuentren en manos privadas.", - "values": [ - "Pueblos ind\u00edgenas", - "Propiedad", - "Pobreza" - ] - }, - { - "text": "Los hechos del caso se refieren a la detenci\u00f3n ilegal y tortura de Juan Garc\u00eda Cruz y Santiago S\u00e1nchez Silvestre, ocurrida el 6 de junio de 1997, as\u00ed como tambi\u00e9n a la falta de garant\u00edas en el proceso del cual resultaron condenados. La tortura a que fueron sometidos proyect\u00f3 sus efectos en sus primeras declaraciones en las que se autoinculparon de ciertos delitos.\n\nEl caso result\u00f3 en un acuerdo de soluci\u00f3n amistosa por el cual Estado reconoci\u00f3 su responsabilidad internacional por los hechos, y que fue homologado por la Corte IDH.", - "values": [ - "Privaci\u00f3n de libertad", - "Tortura y tratos crueles, inhumanos o degradantes" - ] - }, - { - "text": "Los hechos del caso se relacionan con el proceso penal por el delito de conspiraci\u00f3n al que fue sometido el abogado constitucionalista Brewer Car\u00edas, en raz\u00f3n de su vinculaci\u00f3n con la redacci\u00f3n del \u201cDecreto Carmona\u201d por el cual se disolv\u00edan los poderes p\u00fablicos en Venezuela y se establec\u00eda un gobierno de \u201ctransici\u00f3n democr\u00e1tica\u201d; todo esto hab\u00eda acontecido en abril de 2002. \n\nLa CorteIDH hizo lugar a la excepci\u00f3n preliminar de falta de agotamiento de los recursos internos presentada por el Estado, por lo que no avanz\u00f3 en el an\u00e1lisis de fondo sobre el asunto. \n", - "values": [ - "Falta de agotamiento de recursos internos" - ] - }, - { - "text": "Los hechos del caso se refieren a la masacre \u2013ocurrida en enero de 1982- en la aldea Chichupac y las comunidades vecinas del municipio de Rabinal, integradas por personas pertenecientes al pueblo ind\u00edgena maya ach\u00ed. \n\nAdem\u00e1s de las ejecuciones extrajudiciales y desapariciones forzadas de las que fueron v\u00edctimas, la CorteIDH analiz\u00f3 las violaciones de derechos derivadas del desplazamiento forzado de las personas de las comunidades, en particular respecto de mujeres, ni\u00f1os y ni\u00f1as. Asimismo hizo foco en la falta de diligencia debida en la investigaci\u00f3n de los hechos. \n\nLa Corte IDH ubic\u00f3 los hechos del caso en el contexto del conflicto armado interno ocurrido en Guatemala entre los a\u00f1os 1962 y 1996 durante el que se aplic\u00f3 la llamada \"doctrina de la seguridad nacional\" que consideraba al pueblo maya como \"enemigo interno\".\n", - "values": [ - "Ejecuci\u00f3n extrajudicial", - "Desaparici\u00f3n forzada", - "Desplazamiento forzado" - ] - }, - { - "text": "Los hechos del caso se refieren a la situaci\u00f3n de cinco defensoras de derechos humanos quienes sufrieron amenazas, hostigamientos, allanamientos y ocupaci\u00f3n de sus viviendas por su tarea en el lugar conocido como Comuna 13 -uno de los sectores con m\u00e1s bajo \u00edndice de calidad de vida de la ciudad de Medell\u00edn- y que fuera escenario de numerosos operativos militares y presencia paramilitar durante el a\u00f1o 2002. \n\nDerivado de esta situaci\u00f3n, la Sra. Ana Teresa Yarce fue asesinada en octubre de 2004, y las otras mujeres y sus familias fueron obligadas a desplazarse para protegerse. \n\nLa CorteIDH abord\u00f3 las afectaciones a la libertad personal de las v\u00edctimas \u2013quienes permanecieron detenidas de manera ilegal y arbitraria-, asi como la violaci\u00f3n al derecho a la vida y la integridad en relaci\u00f3n con el riesgo derivado de su tarea como defensoras de derechos humanos Tambi\u00e9n fue analizada la situaci\u00f3n de desplazamiento y el impacto diferencial que la misma tuvo en raz\u00f3n del g\u00e9nero de las v\u00edctimas. \n", - "values": [ - "Amenazas y hostigamientos", - "Defensores/as de derechos humanos", - "Privaci\u00f3n de libertad", - "Violencia de g\u00e9nero", - "Desplazamiento forzado" - ] - }, - { - "text": "Los hechos del caso se refieren a las violaciones de derechos humanos cometidas contra las comunidades afrodescendientes de la cuenca del r\u00edo Cacarica, departamento del Choc\u00f3, como consecuencia de la denominada \u201cOperaci\u00f3n G\u00e9nesis\u201d a cargo de fuerzas militares de Colombia y realizada entre el 24 y 27 de febrero de 1997, y que ocasion\u00f3 la muerte de Marino L\u00f3pez Mena y el desplazamiento forzado de cientos de personas.\n\nEstos hechos se enmarcan en el contexto del conflicto armado en Colombia, especialmente en el marco de extrema violencia de la regi\u00f3n del Urab\u00e1, donde los grupos ilegales buscaban su movilidad por las riberas de los r\u00edos para el tr\u00e1fico de armas y drogas il\u00edcitas, la expansi\u00f3n y control territorial de los grupos paramilitares y su accionar conjunto con las fuerzas militares del Estado.\n\nLa Corte IDH reiter\u00f3 su jurisprudencia respecto de la responsabilidad del Estado por las acciones de las fuerzas militares estatales realizadas de manera conjunta con grupos paramilitares, y reafirm\u00f3 su facultad y la necesidad de interpretar el alcance de las obligaciones convencionales a la luz de la normativa del derecho internacional humanitario. La Corte IDH estableci\u00f3 la responsabilidad estatal por el desplazamiento forzado de cientos de personas y la violaci\u00f3n al derecho de circulaci\u00f3n y residencia, determinando que este derecho se viol\u00f3 por el incumplimiento de las obligaciones de garantizar la asistencia humanitaria y el retorno seguro de las personas desplazadas.\n\nLa Corte IDH tambi\u00e9n hizo referencias a los derechos de ni\u00f1os y ni\u00f1as en relaci\u00f3n con la obligaci\u00f3n especial de protecci\u00f3n en el marco de un conflicto armado no internacional. Asimismo, desarroll\u00f3 est\u00e1ndares respecto del contenido del derecho a la propiedad privada y colectiva.", - "values": [ - "Propiedad", - "Ni\u00f1ez", - "Desplazamiento forzado" - ] - }, - { - "text": "Los hechos del caso se refieren a la violaci\u00f3n del derecho a la libertad de expresi\u00f3n -como consecuencia de una serie de actos y omisiones cometidas por agentes del Estado y particulares- contra un grupo de comunicadores sociales y trabajadores del canal de Televisi\u00f3n Globovisi\u00f3n, entre los a\u00f1os 2001 a 2005, y que se expresaron en formas de obstrucci\u00f3n y amedrentamiento para el ejercicio de las tareas period\u00edsticas. La Corte IDH ubic\u00f3 los hechos del caso en un contexto de alta polarizaci\u00f3n y conflictividad pol\u00edtica y social. \n\n La Corte IDH consider\u00f3 que los pronunciamientos de altos funcionarios p\u00fablicos y la omisi\u00f3n de las autoridades estatales en su obligaci\u00f3n de actuar con la debida diligencia en las investigaciones por hechos de violencia contra los trabajadores constituyeron faltas a la obligaci\u00f3n por parte del Estado de prevenir e investigar los hechos. Adicionalmente analiz\u00f3 el eventual sesgo de g\u00e9nero respecto de las agresiones sufridas por mujeres periodistas.", - "values": [ - "Libertad de expresi\u00f3n" - ] - }, - { - "text": "Los hechos del caso se refieren al incumplimiento de la obligaci\u00f3n estatal de investigar en forma efectiva y adecuada el homicidio de Ram\u00f3n Garc\u00eda Prieto, en junio de 1994, as\u00ed como las amenazas y hostigamientos que sufrieron sus familiares.\n\nLa Corte IDH analiz\u00f3 la respuesta estatal a la luz del criterio de debida diligencia, estableciendo est\u00e1ndares respecto de la relevancia del uso de medios t\u00e9cnicos adecuados para llevar adelante investigaciones referidas a amenazas y hostigamientos.", - "values": [ - "Ejecuci\u00f3n extrajudicial", - "Amenazas y hostigamientos" - ] - }, - { - "text": "Los hechos del caso se refieren a la responsabilidad internacional del Estado por el trato discriminatorio y la interferencia arbitraria en la vida privada y familiar sufrida por Karen \u00c1tala Riffo debido a su orientaci\u00f3n sexual en el proceso judicial que result\u00f3 en el retiro del cuidado y custodia de sus hijas. Del mismo modo, se relaciona con la inobservancia del inter\u00e9s superior de las ni\u00f1as cuya custodia y cuidado fueron determinados sobre la base de supuestos perjuicios discriminatorios. \n\n La Corte IDH desarroll\u00f3 est\u00e1ndares sobre la orientaci\u00f3n sexual como componente de la identidad de la persona y parte de su vida privada y su consideraci\u00f3n como categor\u00eda protegida por la garant\u00eda de no discriminaci\u00f3n. Tambi\u00e9n declar\u00f3 incompatibles con el derecho internacional interamericano las valoraciones basadas en estereotipos por orientaci\u00f3n sexual o preferencias culturales respecto de ciertos conceptos tradicionales de familia para la determinaci\u00f3n del inter\u00e9s superior de ni\u00f1os y ni\u00f1as en relaci\u00f3n con su cuidado y custodia.", - "values": [ - "Orientaci\u00f3n sexual", - "Ni\u00f1ez", - "Discriminaci\u00f3n", - "Familia" - ] - }, - { - "text": "Los hechos del caso se refieren al asesinato del defensor de derechos humanos Jes\u00fas Mar\u00eda Valle Jaramillo, en represalia a las denuncias que realizara entre 1995 y 1998 sobre la connivencia entre el Ej\u00e9rcito Nacional y el paramilitarismo. \n\n La Corte IDH reiter\u00f3 que al haber propiciado la creaci\u00f3n de los grupos de autodefensa, el Estado colombiano cre\u00f3 objetivamente una situaci\u00f3n de riesgo para sus habitantes. Asimismo destac\u00f3 la especial afectaci\u00f3n que sufren defensores y defensoras de derechos humanos como consecuencia de su tarea de denuncia de las violaciones de derechos cometidas por paramilitares y miembros de la fuerza p\u00fablica. \n\n Adicionalmente, al evaluar la razonabilidad del plazo en relaci\u00f3n con la obligaci\u00f3n de investigar, la Corte IDH incluy\u00f3 el criterio de afectaci\u00f3n generada en la situaci\u00f3n de las v\u00edctimas sobrevivientes por la duraci\u00f3n del proceso.", - "values": [ - "Defensores/as de derechos humanos" - ] - }, - { - "text": "Los hechos del caso se refieren a la destituci\u00f3n de 3 magistrados del Tribunal Constitucional quienes fueron sometidos a juicio pol\u00edtico por el Congreso. El juicio pol\u00edtico se bas\u00f3 en la no aplicaci\u00f3n de la Ley N\u00b0 26.657 que habilitaba una segunda reelecci\u00f3n presidencial, y que permitir\u00eda al entonces Presidente Alberto Fujimori postularse para un tercer periodo presidencial consecutivo. \n\n Tras lo sucedido, las v\u00edctimas interpusieron acciones de amparo contra las resoluciones de destituci\u00f3n, las que fueron rechazadas por la Corte Superior de Justicia de Lima y posteriormente confirmadas por el Tribunal Constitucional. Como consecuencia de estas acciones, las v\u00edctimas sufrieron una serie de hostigamientos y persecuciones por parte de las autoridades peruanas. \n\n La Corte IDH se refiri\u00f3 a la instituci\u00f3n del juicio pol\u00edtico y las garant\u00edas del debido proceso legal y el requisito de imparcialidad del juzgador.", - "values": [ - "Jueces/zas", - "Destituci\u00f3n de funcionario p\u00fablico" - ] - }, - { - "text": "Los hechos del caso se relacionan con la condena penal impuesta a Winston Caesar -por el delito de tentativa de violaci\u00f3n sexual- y que consisti\u00f3 -de acuerdo con la Ley de Penas Corporales- en trabajos forzados y azotes.\n\nLa Corte IDH desarroll\u00f3 est\u00e1ndares sobre la compatibilidad de la aplicaci\u00f3n estatal de penas corporales con el derecho y la pr\u00e1ctica internacional y a partir del marco de protecci\u00f3n de prohibici\u00f3n de la tortura y trato cruel, inhumano y degradante.", - "values": [ - "Pena de muerte" - ] - }, - { - "text": "Los hechos que fundamentan la solicitud de las medidas se relacionan con las deficientes condiciones penitenciarias dentro de la Casa de Detenci\u00f3n Jos\u00e9 Mario Alves -conocida como \u201cC\u00e1rcel de Urso Branco\u201d -, ubicada en la ciudad de Porto Velho, Estado de Rondonia; y la p\u00e9rdida de numerosas vidas por incidentes de violencia inter-carcelaria, da\u00f1os a la integridad f\u00edsica, ps\u00edquica y moral de las personas que se encuentran privadas de libertad; asi como de quienes puedan ingresar en el futuro en calidad de internos, quienes trabajan all\u00ed o ingresan en calidad de visitantes. ", - "values": [ - "Condiciones de detenci\u00f3n" - ] - }, - { - "text": "Los hechos del caso se refieren a la desaparici\u00f3n forzada, el 16 de diciembre de 1993, de Kenneth Ney Anzualdo Castro -un joven de 25 a\u00f1os de edad- por parte de agentes del Servicio de Inteligencia del Ej\u00e9rcito, debido a su supuesta vinculaci\u00f3n con el grupo \u201cSendero Luminoso\u201d. \n\n La Corte IDH desarroll\u00f3 est\u00e1ndares sobre desaparici\u00f3n forzada como una violaci\u00f3n de m\u00faltiples derechos humanos que coloca a las v\u00edctimas en estado de completa indefensi\u00f3n y adquiere particular gravedad cuando -como en el caso- forma parte de un patr\u00f3n de pr\u00e1ctica aplicada o tolerada por el Estado. Tambi\u00e9n estableci\u00f3 criterios para que la investigaci\u00f3n en casos de desaparici\u00f3n forzada sea llevada adelante con debida diligencia.", - "values": [ - "Desaparici\u00f3n forzada" - ] - }, - { - "text": "Los hechos del caso se refieren al otorgamiento por parte de Ecuador de un permiso a una empresa privada para la realizaci\u00f3n de actividades de exploraci\u00f3n y explotaci\u00f3n en territorio del pueblo ind\u00edgena Kichwa de Sarayaku, en la d\u00e9cada de los 90, sin que se hubiese consultado previamente con \u00e9ste y sin su consentimiento. Como parte de la explotaci\u00f3n autorizada, la empresa privada introdujo explosivos de alto poder en varios puntos del territorio ind\u00edgena que limit\u00f3 sus derechos de circulaci\u00f3n y de expresar su cultura. Acrecen a estos hechos la falta de protecci\u00f3n judicial y de observancia de las garant\u00edas judiciales. \n\n La Corte IDH se pronunci\u00f3 sobre el derecho a la consulta y a la propiedad comunal ind\u00edgena, estableciendo que el Estado, al no informar ni consultar previamente al Pueblo Sarayaku sobre el proyecto que impactar\u00eda directamente su territorio, incumpli\u00f3 con sus obligaciones de adoptar todas las medidas necesarias para garantizar que los pueblos ind\u00edgenas puedan participar de sus propias instituciones y de acuerdo con sus valores, usos, costumbres y formas de organizaci\u00f3n, en la toma de decisiones sobre asuntos y pol\u00edticas que inciden o pueden incidir en su vida cultural y social. Determin\u00f3 adem\u00e1s que dichas consultas debieron hacerse de buena fe, a trav\u00e9s de procedimientos culturalmente adecuados y con el fin de llegar a un acuerdo. \n\n De este modo, la Corte IDH consider\u00f3 que la falta de consulta al Pueblo de Sarayaku afect\u00f3 su identidad cultural.", - "values": [ - "Pueblos ind\u00edgenas", - "Derecho a consulta", - "Propiedad" - ] - }, - { - "text": "Los hechos del caso se refieren a privaci\u00f3n arbitraria de la vida de Jos\u00e9 Luis Garc\u00eda Ibarra, de 16 a\u00f1os de edad, estudiante que trabajaba como vendedor en un almac\u00e9n, por parte de un funcionario de la Polic\u00eda Nacional de la ciudad de Esmeraldas. \n\nLa CorteIDH analiz\u00f3 la responsabilidad internacional del Estado por el uso de la fuerza letal, en particular a la luz de los deberes especiales respecto de la ni\u00f1ez. Tambi\u00e9n evalu\u00f3 la debida diligencia desplegada en la investigaci\u00f3n de los hechos, aun existiendo una sentencia condenatoria.", - "values": [ - "Ni\u00f1ez", - "Ejecuci\u00f3n extrajudicial", - "Uso de la fuerza" - ] - }, - { - "text": "Los hechos del caso se refieren a la detenci\u00f3n -en abril de 1990- y posterior desaparici\u00f3n forzada de Adolfo Garrido Calder\u00f3n y Ra\u00fal Baigorria Balmaceda, quienes fueron detenidos por personal uniformado de la Polic\u00eda de Mendoza. A ra\u00edz de estos acontecimientos, los familiares de ambas v\u00edctimas iniciaron una serie de acciones judiciales por las cuales no obtuvieron respuesta alguna.\n\nEl Estado realiz\u00f3 un reconocimiento de responsabilidad internacional por los hechos denunciados.", - "values": [ - "Desaparici\u00f3n forzada" - ] - }, - { - "text": "Los hechos del caso se refieren a la detenci\u00f3n por parte de las autoridades migratorias paname\u00f1as de Jes\u00fas V\u00e9lez Loor, de nacionalidad ecuatoriana, y a su posterior condena a una pena privativa de libertad por la comisi\u00f3n de delitos migratorios, sin acceso a un defensor o a su consulado. Durante a\u00f1os, el Sr. V\u00e9lez Loor estuvo alojado en c\u00e1rceles en las que se registraban condiciones inhumanas de detenci\u00f3n y donde tambi\u00e9n sufri\u00f3 torturas.\n\nLa Corte IDH estableci\u00f3 est\u00e1ndares de protecci\u00f3n a los migrantes, y determin\u00f3 que las detenciones por irregularidades migratorias deben ser excepcionales, debiendo la imposici\u00f3n de una pena privativa de la libertad requerir una evaluaci\u00f3n individualizada y la posibilidad de utilizar medidas menos restrictivas. La Corte IDH afirm\u00f3 la especial importancia del derecho a ser asistido por un defensor y la asistencia consular en los procesos judiciales que involucran a migrantes, en tanto se encuentran en una situaci\u00f3n de especial vulnerabilidad que puede agravarse si la persona se encuentra privada de su libertad.\n\nLa Corte IDH determin\u00f3 que las p\u00e9simas condiciones de detenci\u00f3n existentes en las c\u00e1rceles en las que fue privado de su libertad el Sr. V\u00e9lez Loor constituyeron tratos crueles, inhumanos y degradantes, y que el Estado no inici\u00f3 con la debida diligencia una investigaci\u00f3n sobre los actos de tortura que lo afectaron.", - "values": [ - "Asistencia consular", - "Condiciones de detenci\u00f3n", - "Migrantes", - "Tortura y tratos crueles, inhumanos o degradantes" - ] - }, - { - "text": "Los hechos del caso se relacionan con el riesgo en el que se encuentran Roc\u00edo Alvarado Reyes, Nitza Alvarado Espinoza y Jos\u00e9 Angel Alvarado Herrera quienes fueron detenidos en diciembre del 2009 en el Estado de Chihuahua, y de quienes se desconoc\u00eda su paradero.\n\nEn noviembre de 2014, la CorteIDH levanto parcialmente las medidas respecto de 2 de las beneficiarias, debido a su fallecimiento. ", - "values": [ - "Desaparici\u00f3n forzada" - ] - }, - { - "text": "Los hechos del caso se refieren a la detenci\u00f3n arbitraria, el 3 de octubre de 2003 en la ciudad de Comodoro Rivadavia, tortura y desaparici\u00f3n forzada de Iv\u00e1n Eladio Torres Millacura, as\u00ed como la posterior falta de debida diligencia en la investigaci\u00f3n de los hechos, y denegaci\u00f3n de justicia en perjuicio de los familiares de la v\u00edctima. \n\n La detenci\u00f3n y posterior desaparici\u00f3n forzada de Torres Millacura se di\u00f3 en un contexto de abusos policiales contra j\u00f3venes de escasos recursos en la jurisdicci\u00f3n de la Provincia de Chubut, amparados en leyes imprecisas que permit\u00edan a las fuerzas policiales restringir la libertad f\u00edsica de las personas. \n\nLa Corte IDH refiere la falta de debida diligencia en la investigaci\u00f3n de los hechos y la impunidad en que quedaron los mismos", - "values": [ - "Privaci\u00f3n de libertad", - "Desaparici\u00f3n forzada" - ] - }, - { - "text": "Los hechos del caso se refieren a la censura judicial impuesta a la exhibici\u00f3n cinematogr\u00e1fica de la pel\u00edcula \u201cLa \u00daltima Tentaci\u00f3n de Cristo\u201d por entender que resultaba ofensiva a la figura de Cristo y, por lo tanto, afectaba a los cat\u00f3licos y a quienes lo consideran su modelo de vida. La Constituci\u00f3n Pol\u00edtica de Chile establec\u00eda un sistema de censura para la exhibici\u00f3n y publicidad de la producci\u00f3n cinematogr\u00e1fica. \n\n La Corte IDH estableci\u00f3 el contenido del derecho a la libertad de expresi\u00f3n reconociendo dos dimensiones: una individual que comprende el derecho a utilizar cualquier medio apropiado para difundir el pensamiento y hacerlo llegar al mayor n\u00famero de destinatarios, de modo que la expresi\u00f3n y la difusi\u00f3n del pensamiento y de\u00a0la informaci\u00f3n son indivisibles; y, otra social que entiende a la libertad de expresi\u00f3n como un medio para el intercambio de ideas e informaciones entre las personas y que implica tambi\u00e9n el derecho de todos a conocer opiniones, relatos y noticias. Ambas dimensiones poseen igual importancia y deben ser garantizadas en forma simult\u00e1nea para dar efectividad total al derecho a la libertad de pensamiento y expresi\u00f3n.", - "values": [ - "Libertad de expresi\u00f3n" - ] - }, - { - "text": "Los hechos del caso se refieren a la masacre de 251 habitantes -mujeres, hombres, ni\u00f1os y ni\u00f1as- del Parcelamiento de Las Dos Erres, ocurrida entre los d\u00edas 6 a 8 de diciembre de 1982 y llevada adelante por miembros del grupo especializado de las Fuerzas Armadas denominados kaibiles. Las investigaciones judiciales fueron iniciadas m\u00e1s de 10 a\u00f1os despu\u00e9s de los hechos.\n\nLa Corte IDH valor\u00f3 las actuaciones judiciales a la luz de est\u00e1ndares de debida diligencia, refiri\u00e9ndose de manera espec\u00edfica al patr\u00f3n de violencia sexual contra las mujeres en contextos de conflicto armado. Asimismo, focaliz\u00f3 sobre la obligaci\u00f3n estatal de protecci\u00f3n especial que alcanza a la ni\u00f1ez, en relaci\u00f3n con el patr\u00f3n sistem\u00e1tico de sustracci\u00f3n y retenci\u00f3n ilegal de menores de edad perpetrado y tolerado por agentes estatales en la \u00e9poca de los hechos.", - "values": [ - "Ejecuci\u00f3n extrajudicial", - "Ni\u00f1ez", - "Violencia de g\u00e9nero" - ] - }, - { - "text": "Los hechos del caso se refieren a la negativa del Estado -a trav\u00e9s de una decisi\u00f3n del Comit\u00e9 de Inversiones Extranjeras- de brindar a los se\u00f1ores Marcel Claude Reyes, Sebasti\u00e1n Cox Urrejola y Arturo Longton Guerrero informaci\u00f3n en relaci\u00f3n con la empresa forestal Trillium y el proyecto de deforestaci\u00f3n R\u00edo C\u00f3ndor, que pod\u00eda resultar perjudicial para el medio ambiente y el desarrollo sustentable. \n\n La Corte IDH desarroll\u00f3 est\u00e1ndares sobre la relaci\u00f3n entre el derecho a la libertad de pensamiento y expresi\u00f3n y el derecho de toda persona a solicitar el acceso a informaci\u00f3n bajo control del Estado. Asimismo, analiz\u00f3 el deber estatal de fundamentaci\u00f3n de las decisiones de \u00f3rganos administrativos en el marco de las garant\u00edas del art\u00edculo 8.1 de la Convenci\u00f3n Americana sobre Derechos Humanos.", - "values": [ - "Acceso a la informaci\u00f3n p\u00fablica" - ] - }, - { - "text": "Los hechos del caso se refieren a la muerte de Zulema Tarazona Arrieta y Norma Teresa P\u00e9rez Ch\u00e1vez y las lesiones sufridas por Luis Alberto Bejarano Laura, en agosto de 1994, como consecuencia de disparos que un integrante del Ej\u00e9rcito realiz\u00f3 contra un transporte p\u00fablico. \n\nLa CorteIDH analiz\u00f3 el deber estatal de adecuar el derecho interno sobre el ejercicio del uso de la fuerza y la asistencia debida a personas heridas o afectadas. Tambi\u00e9n valor\u00f3 la actuaci\u00f3n de la administraci\u00f3n de justicia a la luz del car\u00e1cter subsidiario de la jurisdicci\u00f3n internacional, rechazando parcialmente la responsabilidad estatal.", - "values": [ - "Uso de la fuerza" - ] - }, - { - "text": "Los hechos del caso se refieren a la muerte de Laura Susana Alb\u00e1n Cornejo, tras su ingreso al Hospital Metropolitano, instituci\u00f3n privada de salud, debido al tratamiento m\u00e9dico recibido por un cuadro de meningitis bacteriana. \n\n La Corte IDH analiz\u00f3 la respuesta de la justicia penal para la investigaci\u00f3n y esclarecimiento de los hechos, y estableci\u00f3 est\u00e1ndares sobre acceso a expedientes m\u00e9dicos y sobre las obligaciones de los organismos de supervisi\u00f3n profesional m\u00e9dica. Adicionalmente, la Corte IDH reconoci\u00f3 que le cabe al Estado la facultad de decidir sobre la inclusi\u00f3n de un tipo penal espec\u00edfico de mala praxis m\u00e9dica en su legislaci\u00f3n interna, toda vez que la misma puede ser considerada dentro de tipos penales tales como el homicidio o las lesiones.", - "values": [ - "Salud" - ] - }, - { - "text": "Los hechos del caso se relacionan con las condiciones de detenci\u00f3n de las personas privadas de libertad en el Complejo Penitenciario de Pedrinhas, en S\u00e3o Luis, en el estado de Maranh\u00e3o. \n\nDurante el a\u00f1o 2013, hubo 40 muertos y decenas de heridos como consecuencia de conflictos violentos entre facciones criminales rivales y motines. Estos hechos, que pusieron en riesgo la vida y la integridad de los internos y de otras personas que permanecen en el Complejo tales como agentes penitenciarios, funcionarios y visitantes motivaron el dictado de medidas provisionales por parte de la CorteIDH.", - "values": [ - "Condiciones de detenci\u00f3n" - ] - }, - { - "text": "Los hechos hacen referencia a la ejecuci\u00f3n extrajudicial de 6 campesinos indefensos, en el municipio Las Palmeras del departamento de Putumayo, por miembros de la Polic\u00eda y el Ej\u00e9rcito Nacional, as\u00ed como la falta de administraci\u00f3n de justicia, lo que permiti\u00f3 que los hechos quedaran en la impunidad. \n\n La Corte IDH avanz\u00f3 en su jurisprudencia respecto de la responsabilidad de los Estados por las violaciones a las garant\u00edas judiciales y la protecci\u00f3n judicial como consecuencia del uso de la jurisdicci\u00f3n militar en casos de graves violaciones de derechos humanos, en tanto esta jurisdicci\u00f3n vulnera el derecho al juez competente, independiente e imparcial. Adicionalmente, la Corte IDH evidenci\u00f3 la violaci\u00f3n de derechos como consecuencia del exceso de tiempo que dur\u00f3 el proceso penal ordinario sin que se haya identificado y sancionado a los responsables de la ejecuci\u00f3n extrajudicial, lo que vulnera los l\u00edmites de razonabilidad del plazo.", - "values": [ - "Ejecuci\u00f3n extrajudicial", - "Jurisdicci\u00f3n militar" - ] - }, - { - "text": "La solicitud de protecci\u00f3n se relaciona con las condiciones de detenci\u00f3n -se denuncian pr\u00e1cticas de tortura, tratos crueles, inhumanos y degrandates, perdida de vidas por violencia intra-carcelaria y da\u00f1os a la integridad f\u00edsica, ps\u00edquica y moral- de las personas privadas de libertad en el Complejo de Curado, en Recife, Pernambuco, asi como los riesgos que afectan a cualquier persona que se encuentre en el mismo tales como agentes de seguridad, funcionarios y visitantes.\n\nEn noviembre de 2015. las medidas de protecci\u00f3n fueron ampliadas a favor de Wilma Melo \u2013una de las representantes de los beneficiarios\u2013 basadas sobre la posible existencia de un plan para atentar contra su vida e integridad f\u00edsica. ", - "values": [ - "Condiciones de detenci\u00f3n", - "Defensores/as de derechos humanos" - ] - }, - { - "text": "Los hechos de este caso dan cuenta de la persecuci\u00f3n, hostigamiento y violencia ejercida contra Luis Gonzalo V\u00e9lez Restrepo, camar\u00f3grafo de un programa nacional de noticias, que denunci\u00f3 y difundi\u00f3 la grabaci\u00f3n de hechos de violencia cometidos por miembros del Ej\u00e9rcito Nacional contra participantes de las marchas de protesta contra la pol\u00edtica gubernamental de fumigaci\u00f3n de cultivos de coca en el Departamento de Caquet\u00e1, realizadas el 29 de agosto de 1996. Como consecuencia de las denuncias penales instauradas, en septiembre de ese mismo a\u00f1o, \u00a0V\u00e9lez Restrepo comenz\u00f3 a ser objeto de amenazas y hostigamientos, siendo perseguido y amenazado de muerte, raz\u00f3n por la cual se vio obligado a salir en condici\u00f3n de asilado para los Estados Unidos de Am\u00e9rica junto con su familia. \n\n La Corte IDH reiter\u00f3 su jurisprudencia, respecto del deber de los Estados de respetar y garantizar el derecho a la libertad de expresi\u00f3n en su dimensi\u00f3n individual y colectiva, reafirm\u00f3 la importancia que reviste el respeto de este derecho en asuntos de inter\u00e9s p\u00fablico y estableci\u00f3 que este derecho fue vulnerado por las actuaciones inapropiadas de los agentes de seguridad en situaciones de protesta p\u00fablica, por falta de una investigaci\u00f3n adecuada y efectiva, por la ausencia de medidas de protecci\u00f3n por parte del Estado, y por la impunidad en que se encuentran los casos de ataques a periodistas en el ejercicio de su profesi\u00f3n. \n\n La Corte IDH reiter\u00f3 que la jurisdicci\u00f3n penal militar es de car\u00e1cter excepcional y restrictivo y que no puede juzgar violaciones de derechos humanos, porque ello configura una violaci\u00f3n a las garant\u00edas judiciales y a la protecci\u00f3n judicial, especialmente una vulneraci\u00f3n a la garant\u00eda del juez natural.", - "values": [ - "Jurisdicci\u00f3n militar", - "Amenazas y hostigamientos", - "Libertad de expresi\u00f3n" - ] - }, - { - "text": "Los hechos que fundamentan la solicitud de protecci\u00f3n se relacionan con las deficientes condiciones del sistema penitenciario venezolano, la p\u00e9rdida de numerosas vidas como consecuencia de incidentes de violencia inter-carcelaria y los da\u00f1os a la integridad f\u00edsica, ps\u00edquica y moral de quienes se encuentran privados de libertad, de quienes puedan ingresar en tal calidad a futuro y de quienes se encuentran en los centros de detenci\u00f3n en calidad de trabajadores o visitantes. \n\nLa solicitud fue ampliada en favor de integrantes del Observatorio Venezolano de Prisiones, por las amenazas, hostigamientos e intimidaciones recibidas como consecuencia de su trabajo de denuncia y acompa\u00f1amiento \u2013en instancias nacionales e internacionales- de la situaci\u00f3n de las personas privadas de libertad. \n\nDurante el tr\u00e1mite, la CorteIDH fue acumulando las diferentes solicitudes que se refer\u00edan a varios centros de detenci\u00f3n de Venezuela. \n", - "values": [ - "Condiciones de detenci\u00f3n", - "Amenazas y hostigamientos", - "Defensores/as de derechos humanos" - ] - }, - { - "text": "Los hechos que fundamentan la solicitud de protecci\u00f3n a favor de Tyrone Dacosta Cadogan se refieren a su sentencia a pena de muerte. El otorgamiento de las medidas tiene como objetivo frustrar su ejecuci\u00f3n y permitir el cumplimiento de una eventual determinaci\u00f3n de los \u00f3rganos del sistema interamericano de protecci\u00f3n de los derechos humanos de la existencia de una violaci\u00f3n del derecho a la vida e integridad personal. ", - "values": [ - "Pena de muerte" - ] - }, - { - "text": "Este caso se refiere a la desaparici\u00f3n forzada de 15 personas, siete de los cuales eran ni\u00f1os y ni\u00f1as, todos integrantes de la comunidad campesina Santa B\u00e1rbara en Huancavelica. El 4 de julio de 1991, las v\u00edctimas fueron privadas de libertad por agentes estatales, en el marco de una operaci\u00f3n militar, y permanecieron bajo custodia estatal mientras fueron trasladadas a una mina abandonada conocida con el nombre de \u201cMisteriosa\u201d o \u201cVallar\u00f3n\u201d. Alli fueron introducidas al interior del socav\u00f3n y acribilladas con fusiles por los efectivos militares y casi de inmediato fueron inmolados sus cuerpos mediante la detonaci\u00f3n de cargas de dinamita. Posteriormente, las autoridades y agentes estatales realizaron acciones con el prop\u00f3sito de eliminar las evidencias de lo sucedido, y borrar todos los rastros de los cuerpos para evitar su identificaci\u00f3n o que su destino y paradero fuera establecido. \n\nPor los hechos se interpusieron las denuncias penales correspondientes, sin embargo fueron alcanzado primero por la Ley de Amnist\u00eda N\u00b0 26,479, y luego permanecieron impunes. \n\nLa CorteIDH analiz\u00f3 los elementos del delito de desaparici\u00f3n forzada y sus consecuencias para las v\u00edctimas y familiares de este crimen. Adem\u00e1s, analiz\u00f3 dimensiones de la obligaci\u00f3n estatal de investigar la desaparici\u00f3n forzada, y la relaci\u00f3n entre la falta de acceso a la justicia y la violaci\u00f3n al derecho a la verdad.", - "values": [ - "Amnist\u00eda", - "Desaparici\u00f3n forzada", - "Ni\u00f1ez" - ] - }, - { - "text": "Los hechos del caso se refieren a la incursi\u00f3n paramilitar y la masacre de 49 campesinos cometida por los paramilitares con la colaboraci\u00f3n y aquiescencia de miembros del Ej\u00e9rcito Nacional entre el 15 y el 20 de julio de 1997 en el municipio de Mapirip\u00e1n, departamento del Meta. Las v\u00edctimas fueron retenidas, torturadas, ejecutadas y/o desaparecidas, lo que provoc\u00f3 un desplazamiento masivo de los habitantes de la regi\u00f3n. \n\n La Corte IDH desarroll\u00f3 est\u00e1ndares sobre responsabilidad estatal por actos de particulares en supuestos de acci\u00f3n u omisi\u00f3n de sus agentes en posici\u00f3n de garantes de las obligaciones de respeto y protecci\u00f3n. Adicionalmente, se\u00f1al\u00f3 la utilidad que revisten las normas del derecho internacional humanitario para la interpretaci\u00f3n de la Convenci\u00f3n Americana, y se refiri\u00f3 a las obligaciones especiales del Estado en relaci\u00f3n a los ni\u00f1os y ni\u00f1as en situaci\u00f3n de conflicto armado interno, dada su especial vulnerabilidad. Tambi\u00e9n ampli\u00f3 su jurisprudencia sobre el contenido y alcance del derecho de circulaci\u00f3n y residencia, en relaci\u00f3n al desplazamiento forzado que sufrieron las v\u00edctimas y la amplia gama de derechos que se ven afectados como consecuencia de ello.", - "values": [ - "Ejecuci\u00f3n extrajudicial", - "Tortura y tratos crueles, inhumanos o degradantes", - "Desaparici\u00f3n forzada", - "Ni\u00f1ez", - "Desplazamiento forzado" - ] - }, - { - "text": "Los hechos del presente caso se refieren a la desaparici\u00f3n y muerte de 3 mujeres j\u00f3venes -ocurrida en el a\u00f1o 2001- dos de ellas menores de edad, cuyos cuerpos fueron encontrados en un campo algodonero de Ciudad de Ju\u00e1rez. Las v\u00edctimas fueron sometidas a importantes torturas de \u00edndole sexual.\n\nLa Corte IDH ubica los hechos del caso en un contexto de aumento de los homicidios de mujeres que se dio desde el a\u00f1o 1993 en Ciudad Ju\u00e1rez, y que present\u00f3 caracter\u00edsticas de violencia sexual y se encuentra mayoritariamente impune.\n\nLa Corte IDH desarroll\u00f3 est\u00e1ndares acerca del deber de respeto, garant\u00eda y prevenci\u00f3n en relaci\u00f3n con la violencia de g\u00e9nero y sobre el deber estatal de debida diligencia en la respuesta frente a este tipo de hechos. Asimismo estableci\u00f3 criterios sobre realizaci\u00f3n de autopsias y sobre identificaci\u00f3n de estereotipos de g\u00e9nero en las pr\u00e1cticas estatales.", - "values": [ - "Desaparici\u00f3n forzada", - "Ni\u00f1ez", - "Violencia de g\u00e9nero" - ] - }, - { - "text": "Los hechos del caso se refieren a la imposici\u00f3n de penas de prisi\u00f3n y reclusi\u00f3n perpetuas a 5 personas por delitos cometidos siendo menores de 18 a\u00f1os de edad, como consecuencia de las normas del sistema de justicia penal. \n\n\n El\u00a0caso analiza el trato diferenciado en el \u00e1mbito penal entre ni\u00f1os y adultos, y su reflejo en relaci\u00f3n con las medidas punitivas las que deber\u00e1n dar especial relevancia al principio de proporcionalidad tomando en consideraci\u00f3n las circunstancias espec\u00edficas de la ni\u00f1ez y la finalidad de reintegrar al ni\u00f1o a su familia y la sociedad. Adicionalmente, se refiere al deber estatal frente a personas menores de edad privadas de libertad, en particular en relaci\u00f3n con la atenci\u00f3n y tratamiento m\u00e9dico adecuado; y a la obligaci\u00f3n de investigar la muerte de otro de ellos.", - "values": [ - "Ni\u00f1ez", - "Condiciones de detenci\u00f3n" - ] - }, - { - "text": "Los hechos del caso se refieren a las amenazas a la vida, integridad personal y libertad de expresi\u00f3n del periodista Jos\u00e9 Luis Gald\u00e1mez \u00c1lvarez, Director del programa \"Tras la Verdad\" de Radio Globo, de su compa\u00f1era Wendy Orellana Molina, de sus hijos Pedro Luis, Jos\u00e9 Luis, Marlon Josu\u00e9 y Ram\u00f3n Israel, todos de apellido Gald\u00e1mez, y de sus dos hijos menores de edad, respecto de quienes se solicit\u00f3 reserva de identidad.", - "values": [ - "Amenazas y hostigamientos", - "Libertad de expresi\u00f3n" - ] - }, - { - "text": "Los hechos del caso se refieren a la masacre -ocurrida en julio de 1982- de 268 personas, en su mayor\u00eda miembros del pueblo ind\u00edgena maya en la aldea Plan de S\u00e1nchez, ejecutada por miembros del Ej\u00e9rcito de Guatemala, y a la impunidad en que quedaron los hechos por la falta de una investigaci\u00f3n efectiva. Tras estos hechos los familiares de las v\u00edctimas y los sobrevivientes de la masacre fueron objeto de actos de intimidaci\u00f3n y discriminaci\u00f3n.\n\nLa Corte IDH ubic\u00f3 los hechos del caso en el contexto del conflicto armado interno ocurrido en Guatemala entre los a\u00f1os 1962 y 1996 durante el que se aplic\u00f3 la llamada \"doctrina de la seguridad nacional\" que consideraba al pueblo maya como \"enemigo interno\".\n\nEl Estado realiz\u00f3 un reconocimiento total de responsabilidad internacional por los hechos anteriormente se\u00f1alados.", - "values": [ - "Ejecuci\u00f3n extrajudicial", - "Pueblos ind\u00edgenas" - ] - }, - { - "text": "Los hechos del caso se refieren a las amenazas recibidas por el mayor Mel\u00e9ndez Quijano -y miembros de su familia- quien como Jefe del Departamento de Derechos Humanos del Ministerio de Defensa Nacional realiz\u00f3 denuncias por violaciones a los derechos humanos cometidas por el Ej\u00e9rcito salvadore\u00f1o.", - "values": [ - "Amenazas y hostigamientos" - ] - }, - { - "text": "Los hechos del caso se refieren al derecho a la propiedad ancestral de la Comunidad ind\u00edgena Yakye Axa, as\u00ed como a las graves condiciones de vida en las que se encontraban sus miembros quienes estaban asentados al borde de una carretera p\u00fablica, en situaci\u00f3n de pobreza extrema y sin acceso a servicios b\u00e1sicos m\u00ednimos como alimentaci\u00f3n, vivienda, educaci\u00f3n o salud, entre otros.\n\nLa Corte IDH reconoci\u00f3 el derecho a la propiedad ind\u00edgena colectiva, desarrollando el significado especial que para los pueblos ind\u00edgenas tiene su territorio ancestral como base fundamental de su cultura, vida espiritual, integridad y supervivencia econ\u00f3mica; en raz\u00f3n de esa estrecha vinculaci\u00f3n se encuentran protegidos por el art\u00edculo 21 de la Convenci\u00f3n Americana. La Corte IDH tambi\u00e9n puso en evidencia la responsabilidad estatal por la falta de adopci\u00f3n de medidas para hacer frente a las condiciones de pobreza y falta de acceso a servicios b\u00e1sicos en las que se encontraba la Comunidad Yakye Axa, y particularmente los ni\u00f1os/as y adultos mayores. \n\nLa Corte IDH reconoci\u00f3 expl\u00edcitamente que la posesi\u00f3n tradicional de los ind\u00edgenas sobre sus tierras tiene efectos equivalentes al t\u00edtulo de pleno dominio que otorga el Estado y que, consecuentemente, aquellos que por causas ajenas a su voluntad han salido o perdido la posesi\u00f3n mantienen el derecho de propiedad sobre las mismas a\u00fan a falta de t\u00edtulo legal e incluso cuando las tierras se encuentren en manos privadas.\n\nAsimismo estableci\u00f3 que a efectos de garantizar los derechos de los pueblos ind\u00edgenas los Estados deben interpretar y aplicar las normas atendiendo a las caracter\u00edsticas propias que conforman su identidad cultural.", - "values": [ - "Pueblos ind\u00edgenas", - "Propiedad", - "Pobreza" - ] - }, - { - "text": "Los hechos del caso se refieren al incumplimiento de un fallo dictado por el Tribunal Constitucional que declar\u00f3 la inconstitucionalidad de los decretos ejecutivos mediante los cuales se orden\u00f3 la disponibilidad y baja del ej\u00e9rcito del coronel Jos\u00e9 Alfredo Mej\u00eda Idrovo. \n\n La Corte IDH aplic\u00f3 est\u00e1ndares sobre efectividad de los recursos internos, adicionando que el Estado debe garantizar los medios para ejecutar las decisiones y sentencias definitivas emitidas por las autoridades competentes, ya que la efectividad de \u00e9stas depende de su ejecuci\u00f3n al tiempo que otorga certeza sobre el derecho o controversia discutida en el caso concreto. Asimismo, el principio de tutela judicial efectiva requiere que los procedimientos de ejecuci\u00f3n sean accesibles para las partes, sin obst\u00e1culos o demoras indebidas, a fin de que alcancen su objetivo de manera r\u00e1pida, sencilla e integral.", - "values": [ - "Tutela judicial efectiva" - ] - }, - { - "text": "Los hechos del caso se refieren a tres jueces y una magistrada del Poder Judicial de Honduras -integrantes de la Asociaci\u00f3n Jueces para la Democracia- que fueron sometidos a procesos disciplinarios para sancionarlos por sus expresiones en defensa de la democracia y contra el golpe de Estado del a\u00f1o 2009. \n\nLa CorteIDH entendi\u00f3 que a la luz del derecho internacional las v\u00edctimas ten\u00edan el deber de defender la democracia y, en ese sentido profundiz\u00f3 la relaci\u00f3n existente entre derechos pol\u00edticos, libertad de expresi\u00f3n, derecho de reuni\u00f3n y libertad de asociaci\u00f3n como elementos que -en conjunto- hacen posible el juego democr\u00e1tico. \n\nAsimismo, analiz\u00f3 las garant\u00edas del debido proceso y protecci\u00f3n judicial en relaci\u00f3n con procesos disciplinarios contra jueces y juezas.", - "values": [ - "Jueces/zas", - "Democracia", - "Destituci\u00f3n de funcionario p\u00fablico" - ] - }, - { - "text": "Los hechos del caso se refieren a la detenci\u00f3n ilegal -por miembros de la Direcci\u00f3n contra el Terrorismo (DIRCOTE)- y desaparici\u00f3n de Norberto Durand Ugarte y Gabriel Pablo Ugarte Rivera, bajo la sospecha de haber participado en actos de terrorismo, sin mediar orden judicial alguna, ni haber sido encontrados en flagrante delito. \n\n Mientras las v\u00edctimas se encontraban detenidas, se produjo un mot\u00edn en el penal \u201cEl Front\u00f3n\u201d el que fue declarado como \"zona militar restringida\", impidi\u00e9ndose por esa v\u00eda el ingreso de autoridades civiles y judiciales. Durante el operativo para recuperar el control del penal, las fuerzas de seguridad demolieron el Pabell\u00f3n Azul provocando lesiones y muertes entre los detenidos. Durand y Ugarte no figuraron en la lista de sobrevivientes ni sus cad\u00e1veres fueron identificados. \n\n En relaci\u00f3n a la violaci\u00f3n a la integridad personal, la Corte IDH estableci\u00f3 que no es posible inferir la pr\u00e1ctica de torturas o trato cruel, inhumano o degradante del hecho de la desproporci\u00f3n de fuerzas para debelar el mot\u00edn, ya que tales conceptos poseen contenido jur\u00eddico propio y no se deducen en forma necesaria y autom\u00e1tica de la privaci\u00f3n arbitraria de la vida, a\u00fan en circunstancias como las del caso.", - "values": [ - "Privaci\u00f3n de libertad", - "Ejecuci\u00f3n extrajudicial", - "Tortura y tratos crueles, inhumanos o degradantes", - "Uso de la fuerza" - ] - }, - { - "text": "Los hechos se relacionan con la solicitud de protecci\u00f3n a la vida y la integridad de Francisco Dionel Guerrero L\u00e1rez, quien se encontraba privado de libertad cumpliendo condena en la Penitenciar\u00eda General de Venezuela. Sus familiares no pudieron establecer contacto con el despu\u00e9s del 7 de setiembre de 2009, desconociendo su paradero.", - "values": [ - "Condiciones de detenci\u00f3n" - ] - }, - { - "text": "Los hechos se relacionan con la solicitud de protecci\u00f3n a vida y la integridad de periodistas, directivos y dem\u00e1s trabajadores de la emisora de televisi\u00f3n Globovisi\u00f3n.", - "values": [ - "Periodistas", - "Amenazas y hostigamientos" - ] - }, - { - "text": "Los hechos que fundamentan la solicitud de protecci\u00f3n en favor de Rosa Isela P\u00e9rez Torres y sus familiares inmediatos, se refieren al riesgo a su vida y su integridad en raz\u00f3n de haber sido citada a prestar testimonio ante la CorteIDH sobre la violencia contra las mujeres en Ciudad Ju\u00e1rez y la actuaci\u00f3n de las autoridades locales y federales en relaci\u00f3n con esta. ", - "values": [ - "Violencia de g\u00e9nero", - "Amenazas y hostigamientos", - "Testigo" - ] - }, - { - "text": "Los hechos del caso se refieren a la exclusi\u00f3n de participaci\u00f3n en las elecciones municipales de un grupo de candidatos pertenecientes al partido pol\u00edtico regional ind\u00edgena, como resultado de una resoluci\u00f3n emitida por el Consejo Supremo Electoral.\n\nLa Corte IDH desarroll\u00f3 est\u00e1ndares acerca del contenido de los derechos pol\u00edticos, en particular, del derecho de participaci\u00f3n pol\u00edtica, en relaci\u00f3n a la restricci\u00f3n indebida que se les impuso a las v\u00edctimas producto de una reglamentaci\u00f3n que consider\u00f3 discriminatoria.", - "values": [ - "Discriminaci\u00f3n", - "Pueblos ind\u00edgenas", - "Derechos pol\u00edticos" - ] - }, - { - "text": "Los hechos del caso se relacionan con la falta de adopci\u00f3n -por parte del Estado- de medidas efectivas para el reconocimiento y protecci\u00f3n del derecho al uso y goce del territorio ocupado tradicionalmente por el Pueblo Saramaka, frente a la realizaci\u00f3n de proyectos de explotaci\u00f3n y exploraci\u00f3n por parte de empresas privadas en los mismos. \n\n La Corte IDH precis\u00f3 est\u00e1ndares acerca de las condiciones para la restricci\u00f3n leg\u00edtima de los derechos al territorio ancestral, en particular en lo referido a la relaci\u00f3n entre recursos naturales y la subsistencia como Pueblo. Del mismo modo, estableci\u00f3 est\u00e1ndares acerca de la obligaci\u00f3n del Estado de garantizar el derecho de consulta.", - "values": [ - "Pueblos ind\u00edgenas", - "Propiedad", - "Derecho a consulta" - ] - }, - { - "text": "Los hechos del caso se refieren a las torturas sufridas por Juan Francisco Bueno Alves, de nacionalidad uruguaya, por parte de integrantes de la Polic\u00eda Federal argentina, con el objetivo de que declarase contra s\u00ed mismo y su abogado. Tras estos acontecimientos, se inici\u00f3 un proceso judicial que dur\u00f3 m\u00e1s de 9 a\u00f1os, y que culmin\u00f3 sin que se hubiese identificado ni sancionado a los responsables.\n\nLa CorteIDH estableci\u00f3 la importancia de que, en los casos en que existen alegatos de supuestas torturas o malos tratos, la investigaci\u00f3n sea efectuada con prontitud, en especial cuando no se cuenta con testigos.", - "values": [ - "Tortura y tratos crueles, inhumanos o degradantes" - ] - }, - { - "text": "Los hechos del caso se refieren a las amenazas y hostigamientos sistem\u00e1ticos padecidos por un grupo de personas, la mayor\u00eda integrantes de la Asociaci\u00f3n de Familiares de Detenidos-Desaparecidos de Colombia. El origen de la solicitud se relaciona con el atentado sufrido en la sede de Medell\u00edn de ASFADDES. Durante su vigencia, la CorteIDH amplio en varias oportunidades la protecci\u00f3n hacia diferentes personas relacionadas con el trabajo de la organizaci\u00f3n de derechos humanos mencionada. \n\nEn mayo de 2013, la CorteIDH cambi\u00f3 el nombre del tramite por el de \u201cAlmanza Su\u00e1rez respecto de Colombia\u201d. ", - "values": [ - "Defensores/as de derechos humanos", - "Amenazas y hostigamientos" - ] - }, - { - "text": "Los hechos del caso se refieren a la detenci\u00f3n arbitraria y torturas sufridas por Maritza Urrutia Garc\u00eda, en julio de 1992, por su vinculaci\u00f3n al grupo insurgente Ej\u00e9rcito Guerrillero de los Pobres (EGP). Tras su detenci\u00f3n, la v\u00edctima permaneci\u00f3 retenida en un centro clandestino de detenci\u00f3n por 8 d\u00edas y fue obligada a emitir a la opini\u00f3n p\u00fablica un comunicado previamente preparado por sus captores. La Sra. Urrutia posteriormente sali\u00f3 del pa\u00eds y obtuvo la calidad de refugiada en M\u00e9xico.\n\nLa Corte IDH ubic\u00f3 temporalmente los hechos en el escenario de conflicto armado interno y el inicio del proceso de negociaciones de paz entre el gobierno y la Unidad Revolucionaria Nacional Guatemalteca, evidenciando la pr\u00e1ctica del Ej\u00e9rcito de capturar guerrilleros y mantenerlos clandestinamente para obtener mediante tortura informaci\u00f3n \u00fatil para el propio Ej\u00e9rcito.\n\nLa Corte IDH estableci\u00f3 est\u00e1ndares sobre la situaci\u00f3n de persones detenidas ilegalmente y sobre la prohibici\u00f3n de tortura en circunstancias de conflicto armado interno, as\u00ed como la impunidad en que quedaron los hechos.", - "values": [ - "Privaci\u00f3n de libertad", - "Tortura y tratos crueles, inhumanos o degradantes" - ] - }, - { - "text": "Los hechos del caso se refieren a la detenci\u00f3n arbitraria y expulsi\u00f3n sumaria del territorio de Rep\u00fablica Dominicana de personas -que inclu\u00edan ni\u00f1os y ni\u00f1as- de ascendencia haitiana. \n\nLa CorteIDH ubica su an\u00e1lisis en el marco de un patr\u00f3n sistem\u00e1tico de expulsiones -mediante actos colectivos o procedimientos que no implicaban un an\u00e1lisis individualizado- de haitianos y personas de ascendencia haitiana, que responde a una concepci\u00f3n discriminatoria, y que exist\u00eda en los a\u00f1os 90. \n\nLa CorteIDH analiza los derechos a la nacionalidad y a la igualdad ante la ley en relaci\u00f3n con el deber estatal de prevenir y evitar la apatridia; as\u00ed como las garant\u00edas m\u00ednimas que deben regir los procedimientos migratorios", - "values": [ - "Discriminaci\u00f3n", - "Privaci\u00f3n de libertad", - "Migrantes", - "Nacionalidad" - ] - }, - { - "text": "Los hechos del caso se refieren a la desaparici\u00f3n forzada de Edgar Fernando Garc\u00eda, sindicalista y dirigente estudiantil, llevada a cabo tras su detenci\u00f3n -el 18 de febrero de 1994- por miembros de la Brigada de Operaciones Especiales de la Polic\u00eda Nacional. La Corte IDH ubic\u00f3 los hechos en un contexto de violencia interna en el pa\u00eds durante el cual los servicios de inteligencia tuvieron un papel particularmente importante como responsables de la recolecci\u00f3n y examen de informaci\u00f3n de las personas a quienes consideraban \"enemigos internos\".\n\nLa Corte IDH aplic\u00f3 criterios sobre desaparici\u00f3n forzada como violaci\u00f3n m\u00faltiple y permanente de derechos y la obligaci\u00f3n estatal de investigar la misma. Asimismo desarroll\u00f3 est\u00e1ndares sobre la libertad sindical como forma de la libertad de asociaci\u00f3n en el marco de un patr\u00f3n estatal de captura y eliminaci\u00f3n de l\u00edderes sindicales y de organizaciones estudiantiles.", - "values": [ - "Desaparici\u00f3n forzada", - "Sindicalismo", - "Libertad de asociaci\u00f3n" - ] - }, - { - "text": "Los hechos que fundamentan la solicitud en favor de la Sra de la Cruz Flores se refieren a la protecci\u00f3n de su libertad personal frente al riesgo de ser detenida con base en actos procesales derivados de la causa en tr\u00e1mite ante los tribunales peruanos. La CorteIDH no hizo lugar a su pedido por considerar su objeto directamente vinculado a la obligaci\u00f3n impuesta al Estado en la Sentencia de Fondo, Reparaciones Costas dictada el 18 de noviembre de 2004 en el caso. \n\nEn noviembre de 2011 la solicitud fue nuevamente presentada y la CorteIDH no hizo lugar a la misma. Lo mismo ocurri\u00f3 con la presentaci\u00f3n de enero de 2016 por no cumplirse con los requisitos de forma. \n", - "values": [ - "Ley antiterrorista", - "Secreto m\u00e9dico" - ] - }, - { - "text": "Los hechos del caso se refieren a la guarda judicial y posterior adopci\u00f3n de la hija de Leonardo Forner\u00f3n sin contar con su consentimiento, y a la falta de investigaci\u00f3n penal por la supuesta \u201cventa\u201d de la ni\u00f1a al matrimonio de guarda.\n\nLa Corte IDH estableci\u00f3 la importancia del principio de inter\u00e9s superior del ni\u00f1o en casos de custodia y cuidado de menores de edad. En ese marco, la Corte IDH analiz\u00f3 la evaluaci\u00f3n judicial de comportamientos parentales y conceptos tradicionales de familia a la luz de la prohibici\u00f3n de discriminaci\u00f3n.\n\nDel mismo modo, la Corte IDH evidenci\u00f3 que los procedimientos administrativos y judiciales respecto de casos de adopci\u00f3n, guardia y custodia de ni\u00f1os deben ser manejados con diligencia y celeridad por parte de las autoridades, debido al impacto negativo en la relaci\u00f3n parental que producen los largos procesos, y que se puede tornar en una irremediable situaci\u00f3n de hecho y volverla perjudicial para los intereses del ni\u00f1o.", - "values": [ - "Ni\u00f1ez", - "Estereotipos", - "Familia" - ] - }, - { - "text": "Los hechos del caso se refieren al despido de 3 trabajadores permanentes cesados del Congreso Nacional de la Rep\u00fablica de Per\u00fa en el marco de la disoluci\u00f3n del Congreso dispuesta por el gobierno de Alberto Fujimori y la conformaci\u00f3n del llamado Gobierno de Emergencia y Reconstrucci\u00f3n Nacional. \n\nLa Corte IDH indic\u00f3 expresamente las similitudes de este caso con el decidido anteriormente bajo el nombre Trabajadores Cesados del Congreso de Per\u00fa, estableciendo en consecuencia violaciones al derecho de acceso a la justicia.", - "values": [ - "Estado de excepci\u00f3n", - "Derechos laborales" - ] - }, - { - "text": "Los hechos del caso se refieren a las amenazas a la integridad y a la vida a la que est\u00e1n expuestos testigos de un violento ataque realizado el 3 de agosto de 1999 por patrulleros civiles contra participantes desarmados de una manifestaci\u00f3n a favor de los derechos humanos que tuvo lugar en Colotenango, departamento de Huehuetenango.\n\nLa Corte IDH orden\u00f3 en 1997 la ampliaci\u00f3n de las medidas de protecci\u00f3n para alcanzar a m\u00e1s testigos y familiares. ", - "values": [ - "Testigo", - "Amenazas y hostigamientos" - ] - }, - { - "text": "Los hechos que fundamentan la solicitud de protecci\u00f3n se refieren a las amenazas, detenciones, allanamientos y agresiones contra los hermanos Guti\u00e9rrez Soler y su familia, en raz\u00f3n de sus declaraciones ante los \u00f3rganos del sistema interamericano de protecci\u00f3n de los derechos humanos y de haber denunciado las torturas sufridas por el se\u00f1or Wilson Guti\u00e9rrez Soler.", - "values": [ - "Amenazas y hostigamientos", - "Testigo" - ] - }, - { - "text": "Los hechos del presente caso se refieren a la ejecuci\u00f3n extrajudicial, torturas y malos tratos de personas privadas de libertad en dos pabellones del penal Miguel Castro Castro -reclusorio de m\u00e1xima seguridad- quienes, en su mayor\u00eda, cumpl\u00edan condena por delitos de terrorismo. \n\n La masacre se desarroll\u00f3 al amparo del llamado \"Operativo Mudanza 1\" ocurrido en mayo de 1992. Durante el operativo los agentes estatales -polic\u00eda y ej\u00e9rcito- utilizaron armas de guerra, bombas lacrim\u00f3genas y paralizantes contra los internos, iniciando las acciones en un d\u00eda de visitas femeninas en el Penal. Los sobrevivientes fueron obligados a permanecer en las zonas del penal denominadas \u201ctierra de nadie\u201d y \u201cadmisi\u00f3n\u201d, tendidos boca abajo sobre la tierra, sin abrigo y recibiendo constantes golpes y agresiones durante varios d\u00edas hasta su traslado a otros penales. Una vez reubicados, continuaron las golpizas, las malas condiciones de alimentaci\u00f3n y, muchos heridos no contaron con atenci\u00f3n m\u00e9dica adecuada y oportuna. \n\n La Corte IDH estableci\u00f3 est\u00e1ndares sobre uso excesivo de fuerza utilizada en la realizaci\u00f3n de esta operaci\u00f3n, por las torturas y malos tratos a los que fueron sometidos los internos y hace especial referencia a la violencia de g\u00e9nero. En este sentido, la Corte IDH tom\u00f3 en cuenta la forma diferencial en que los hechos afectaron a las mujeres, se\u00f1alando c\u00f3mo la forma en que la violaci\u00f3n de derechos por parte del Estado puede tambi\u00e9n tener el objetivo de causar un efecto en la sociedad. \n\n Asimismo, la Corte IDH consider\u00f3 que durante la d\u00e9cada del 80 y hasta finales del 2000, se vivi\u00f3 en Per\u00fa un conflicto entre grupos armados y agentes de las fuerzas policiales y militares. Este conflicto se agudiz\u00f3 mediante una pr\u00e1ctica sistem\u00e1tica de violaciones a los derechos humanos -entre ellas ejecuciones extrajudiciales y desapariciones forzadas- de personas sospechosas de pertenecer a grupos pol\u00edticos opositores que fueron realizadas por agentes estatales siguiendo \u00f3rdenes de jefes militares y policiales.", - "values": [ - "Ejecuci\u00f3n extrajudicial", - "Condiciones de detenci\u00f3n", - "Violencia de g\u00e9nero", - "Tortura y tratos crueles, inhumanos o degradantes", - "Uso de la fuerza" - ] - }, - { - "text": "Los hechos del caso se refieren a la demorada e ineficiente investigaci\u00f3n relacionada con operativos policiales llevado a cabo en la Favela Nova Brasilia, en octubre de 1994 y mayo de 1995, y que resultaron en ejecuciones extrajudiciales, torturas y actos de violencia sexual por parte de los agentes de polic\u00eda. \n\nLa CorteIDH analiz\u00f3 los hechos a la luz de est\u00e1ndares relativos a debida diligencia y plazo razonable en la investigaci\u00f3n de ejecuciones extrajudiciales en particular, en el contexto de la pr\u00e1ctica de utilizaci\u00f3n de los \u201cautos de resistencia al arresto\u201d. Adicionalmente evalu\u00f3 la independencia de los \u00f3rganos investigadores en casos de muerte derivadas de intervenciones policiales. \n\nPor otra parte, la CorteIDH se refiri\u00f3 a la obligaci\u00f3n internacional reforzada de investigar en casos de violencia sexual contra mujeres. \n", - "values": [ - "Uso de la fuerza", - "Ejecuci\u00f3n extrajudicial" - ] - }, - { - "text": "Los hechos del caso se refieren a la modificaci\u00f3n arbitraria del r\u00e9gimen de pensiones aplicable a Carlos Torres, Javier Mujica, Guillermo \u00c1lvarez, Reymert Bartra y Maximiliano Gamarra, quienes desde el a\u00f1o 1992 recib\u00edan las mismas. \n\n La Corte IDH analiz\u00f3 el incumplimiento de las sentencias de la Corte Suprema de Justicia y del Tribunal Constitucional del Per\u00fa que ordenaron al Estado a pagar a los beneficiarios una pensi\u00f3n por un monto calculado de la manera establecida en la legislaci\u00f3n vigente en el momento en que \u00e9stos comenzaron a disfrutar de su r\u00e9gimen pensionario.", - "values": [ - "Propiedad", - "Derechos laborales" - ] - }, - { - "text": "Los hechos del caso se refieren a la muerte de Mar\u00eda In\u00e9s Chinchilla quien se encontraba bajo custodia del Estado privada de libertad -cumpliendo una condena por el delito de homicidio- en el Centro de Orientaci\u00f3n Femenino, en el que no cont\u00f3 con la atenci\u00f3n m\u00e9dica adecuada para su condici\u00f3n de salud.\n\nLa condici\u00f3n de salud de la Sra. Chinchilla Sandoval se deterior\u00f3 de manera progresiva durante su detenci\u00f3n, sufriendo la amputaci\u00f3n de una pierna y, finalmente, su muerte. En su Sentencia, la Corte IDH analiz\u00f3 de manera espec\u00edfica el alcance de la obligaci\u00f3n estatal de proveer asistencia y tratamiento m\u00e9dico adecuado a las personas que se encuentran privadas de libertad, y el control judicial de la misma. Asimismo desarroll\u00f3 el alcance de los deberes de protecci\u00f3n especial frente a las situaciones de discapacidad. ", - "values": [ - "Condiciones de detenci\u00f3n", - "Salud", - "Discapacidad" - ] - }, - { - "text": "Los hechos del caso se refieren a la detenci\u00f3n ilegal de Santiago G\u00f3mez Palomino -el 9 de julio de 1992- y su posterior desaparici\u00f3n forzada, llevada a cabo por el grupo armado \u201cColina\u201d. Al momento de ser detenido, no le fue comunicado el motivo de su detenci\u00f3n ni le fue exhibida orden judicial alguna. \n\n La Corte IDH desarroll\u00f3 est\u00e1ndares sobre desaparici\u00f3n forzada como una violaci\u00f3n de m\u00faltiples derechos humanos, que coloca a las v\u00edctimas en estados de completa indefensi\u00f3n y adquiere particular gravedad cuando -como en el caso- forma parte de un patr\u00f3n de pr\u00e1ctica aplicada o tolerada por el Estado. Tambi\u00e9n estableci\u00f3 criterios para que la investigaci\u00f3n en casos de desaparici\u00f3n forzada sea llevada adelante con debida diligencia.", - "values": [ - "Desaparici\u00f3n forzada", - "Privaci\u00f3n de libertad" - ] - }, - { - "text": "Los hechos que fundamentan la solicitud de protecci\u00f3n a favor \u2013entre otros- de Wenceslaus James, Anthony Briggs, Anderson Noel, Anthony Garc\u00eda y Christopher Bethel se refieren a sus condenas a pena de muerte en Trinidad y Tobago. El otorgamiento de las medidas tiene como objetivo frustrar su ejecuci\u00f3n y permitir que una eventual determinaci\u00f3n de responsabilidad estatal por parte del sistema interamericano de protecci\u00f3n de los derechos humanos permita la reparaci\u00f3n correspondiente. \n\nEn abril de 2009, la CorteIDH resolvi\u00f3 el levantamiento de las medidas de protecci\u00f3n en relaci\u00f3n con un grupo de beneficiarios disponiendo el seguimiento de su situaci\u00f3n en el marco del tr\u00e1mite de supervisi\u00f3n de cumplimiento de sentencia de fondo del caso Hilaire, Constantine, Benjam\u00edn y otros. \n\nEn ese mismo acto procesal, la CorteIDH dispuso mantener la protecci\u00f3n en favor de un grupo de 7 v\u00edctimas, ordenando el cambio de la caratula de proceso por el de \u201cCaso de Dottin y otros\u201d. \n\nFinalmente la CorteIDH levant\u00f3 todas las medidas en abril del 2013, archivando todo el proceso. \n", - "values": [ - "Pena de muerte" - ] - }, - { - "text": "Los hechos del caso se refieren a la detenci\u00f3n ilegal y arbitraria de Yvon Neptune, -quien se desempe\u00f1aba como Primer Ministro de Hait\u00ed- por su responsabilidad en la masacre de la poblaci\u00f3n de La Scierie y del incendio de varias casas en febrero de 2004. \n\n La Corte IDH desarroll\u00f3 est\u00e1ndares sobre la obligaci\u00f3n de respeto y garant\u00eda del derecho de acceso a la justicia, ser o\u00eddo sin demora por un tribunal competente y el derecho a contar con un recurso judicial efectivo. Asimismo se pronunci\u00f3 acerca de las condiciones de detenci\u00f3n de la v\u00edctima y el derecho a la integridad personal.", - "values": [ - "Privaci\u00f3n de libertad", - "Condiciones de detenci\u00f3n" - ] - }, - { - "text": "Los hechos del caso se refieren al secuestro, asesinato y desaparici\u00f3n forzada del periodista estadounidense Nicholas Chapman Blake, por las Patrullas de Autodefensa Civil (PAC), en marzo de 1985. Las PAC, tambi\u00e9n llamados Comit\u00e9s de Defensa Civil, ten\u00edan relaci\u00f3n con el Ej\u00e9rcito y eran coordinadas por el Ministerio de la Defensa Nacional.\n\nLa Corte IDH estableci\u00f3 est\u00e1ndares acerca de la amplitud del derecho a las garant\u00edas judiciales, el que incluye el derecho de los familiares de la v\u00edctima a las mismas.", - "values": [ - "Desaparici\u00f3n forzada" - ] - }, - { - "text": "La solicitud de medidas provisionales fue presentada por la CIDH \u2013con fundamento en sus medidas cautelares MC 923-04 - y en raz\u00f3n de la gravedad de la situaci\u00f3n carcelaria de la Penitenciaria Provincial de Mendoza y de la Unidad Gustavo Andr\u00e9, de la localidad de Lavalle. La evidencia demostr\u00f3 el constante riesgo de vida de los internos, los varios incidentes que resultaron en internos muertos y heridos y en funcionarios heridos, as\u00ed como las deplorables condiciones de vida en los centros de detenci\u00f3n, entre otras. \n\nLa CorteIDH orden\u00f3 al Estado la adopci\u00f3n de las medidas necesarias para la protecci\u00f3n de la vida e integridad de las personas privadas de libertad en las referidas penitenciarias, as\u00ed como de todas las personas que se encuentren en su interior, y llevar adelante la investigaci\u00f3n de los hechos de violencia que dieron fundamento a la medida. \n\nEn diciembre del 2010 la CorteIDH levant\u00f3 las medidas y posteriormente -durante el a\u00f1o 2011- rechaz\u00f3 una nueva solicitud que pretendi\u00f3 extender la protecci\u00f3n a otras unidades, sin perjuicio de dejar establecido que \u00a8que el Sistema Interamericano de Derechos Humanos se mantiene atento a la situaci\u00f3n de las Penitenciar\u00edas de Mendoza mediante la acci\u00f3n de uno de sus \u00f3rganos, al cual corresponde determinar el curso siguiente de los procedimientos, ya sea en el marco de la petici\u00f3n pendiente de definici\u00f3n o mediante otros mecanismos, como ser\u00eda la atenci\u00f3n que al respecto pueda continuar dando la Relator\u00eda sobre Derechos de las Personas Privadas de Libertad de la Comisi\u00f3n Interamericana.\u00a8\n", - "values": [ - "Condiciones de detenci\u00f3n", - "Tortura y tratos crueles, inhumanos o degradantes" - ] - }, - { - "text": "La solicitud de protecci\u00f3n en favor de la vida e integridad de Leonel Rivero y su familia se relaciona con las amenazas, hostigamientos y falta de investigaci\u00f3n de las mismas, por su trabajo como defensor de derechos humanos. \n\nOriginalmente la protecci\u00f3n fue concedida en el marco del tr\u00e1mite de las medidas en favor de integrantes del Centro de Derechos Humanos Miguel Agust\u00edn Pro Ju\u00e1rez y en agosto de 2008 la CorteIDH decide dar tr\u00e1mite aut\u00f3nomo a las mismas. \n", - "values": [ - "Defensores/as de derechos humanos", - "Amenazas y hostigamientos" - ] - }, - { - "text": "Los hechos del caso se refieren a la ni\u00f1a Tal\u00eda Gabriela Gonzales Lluy, quien a la edad de 3 a\u00f1os fue contagiada con el virus del VIH al recibir una transfusi\u00f3n de sangre, proveniente de un banco de sangre de la Cruz Roja, en una cl\u00ednica privada. Las acciones penales iniciadas para determinar la responsabilidad de lo sucedido prescribieron; y la inexistencia de una sentencia penal firme impidi\u00f3 que la acci\u00f3n civil fuera admitida. Como consecuencia de su diagn\u00f3stico la ni\u00f1a fue impedida de permanecer a la escuela. \n\nLa CorteIDH analiz\u00f3 los hechos a la luz de la obligaci\u00f3n estatal de regular y supervisar la prestaci\u00f3n de servicios de salud asi como en relaci\u00f3n con la disponibilidad y calidad de la asistencia sanitaria. \n\nAdicionalmente estableci\u00f3 est\u00e1ndares sobre los alcances del derecho a la educaci\u00f3n y la violaci\u00f3n del derecho a la permanencia en el sistema educativo en relaci\u00f3n con el deber de no discriminaci\u00f3n.", - "values": [ - "Discriminaci\u00f3n", - "Educaci\u00f3n", - "Salud" - ] - }, - { - "text": "Los hechos del caso se refieren a la censura aplicada al libro \u201c\u00c9tica y servicios de inteligencia\u201d, de autor\u00eda de Humberto Antonio Palamara Iribarne, en el que se abordaban aspectos relacionados con inteligencia militar. A ra\u00edz de esto, la v\u00edctima fue sometida a un proceso penal por los delitos de desobediencia y desacato, el que se sustanci\u00f3 en la jurisdicci\u00f3n militar debido a que en el momento de los hechos era oficial retirado de la Armada de Chile. \n\nLa Corte IDH expuso la incompatibilidad de la jurisdicci\u00f3n militar con la Convenci\u00f3n Americana en raz\u00f3n de su competencia para juzgar civiles, la falta de independencia e imparcialidad de los Juzgados militares as\u00ed como la vulneraci\u00f3n de garant\u00edas judiciales de un proceso caracterizado por ser secreto e inquisitivo. Tambi\u00e9n analiz\u00f3 la persecuci\u00f3n penal por el delito de desacato en el marco de una sociedad democr\u00e1tica y sus implicancias sobre el ejercicio del derecho a la libertad de pensamiento y expresi\u00f3n.", - "values": [ - "Jurisdicci\u00f3n militar", - "Libertad de expresi\u00f3n" - ] - }, - { - "text": "Los hechos del caso se refieren a Sebasti\u00e1n Furl\u00e1n, ni\u00f1o que sufri\u00f3 un accidente en un abandonado campo militar que le ocasion\u00f3 una discapacidad irreversible. Tras este acontecimiento, sus familiares iniciaron acciones civiles por la responsabilidad estatal en el caso del accidente de su hijo. El proceso judicial demor\u00f3 m\u00e1s de 9 a\u00f1os, lo que caus\u00f3 un impacto significativo en la v\u00edctima y su familia.\n\nLa Corte IDH se\u00f1al\u00f3 que por la situaci\u00f3n de vulnerabilidad de la v\u00edctima le correspond\u00eda al Estado el deber de adoptar todas las medidas adecuadas y necesarias para afrontar dicha situaci\u00f3n, y que en este caso, el deber de celeridad para la tramitaci\u00f3n del proceso civil era necesario para garantizar una mayor oportunidad de rehabilitaci\u00f3n. \n\nPor tales motivos, la Corte IDH estableci\u00f3 la existencia de una discriminaci\u00f3n de hecho asociada a las violaciones de garant\u00edas judiciales, protecci\u00f3n judicial y derecho a la propiedad, por el impacto que la denegaci\u00f3n al acceso a la justicia tuvo en la posibilidad de acceder a una adecuada rehabilitaci\u00f3n y atenci\u00f3n en la salud de la v\u00edctima. Adicionalmente, la Corte IDH desarroll\u00f3 est\u00e1ndares sobre el deber del Estado de garantizar los medios para la ejecuci\u00f3n de las decisiones y sentencias definitivas.", - "values": [ - "Ni\u00f1ez", - "Discapacidad", - "Discriminaci\u00f3n" - ] - }, - { - "text": "Los hechos que fundamentan la solicitud de protecci\u00f3n de la vida e integridad f\u00edsica de las l\u00edderes comunitarias Mery Naranjo Jim\u00e9nez y Mar\u00eda del Socorro Mosquera Londo\u00f1o y de integrantes de sus familias, quienes se encontrar\u00edan en riesgo de vida. ", - "values": [ - "Amenazas y hostigamientos", - "Defensores/as de derechos humanos" - ] - }, - { - "text": "Los hechos del caso se relacionan con la ejecuci\u00f3n extrajudicial de 37 reclusos del Ret\u00e9n de Catia, en la ciudad de Caracas, el 27 de noviembre de 1992. Los acontecimientos se produjeron en un marco de grave conmoci\u00f3n social a nivel nacional y extrema inestabilidad pol\u00edtica, provocadas por el segundo intento de golpe de Estado contra el gobierno del entonces Presidente Carlos Andr\u00e9s P\u00e9rez por parte de un grupo c\u00edvico-militar conformado por altos oficiales de las cuatro ramas de las Fuerzas Armadas y varios civiles opositores al Gobierno. En este contexto, agentes de la Guardia Nacional y de la Polic\u00eda Metropolitana intervinieron el centro penitenciario Ret\u00e9n de Catia, y haciendo un uso desproporcionado de la fuerza, dispararon indiscriminadamente a los reclusos provocando la muerte de m\u00e1s de 60 internos, 52 heridos y 28 desaparecidos. \n\n Venezuela reconoci\u00f3 su responsabilidad internacional por los hechos denunciados. La Corte IDH estableci\u00f3 est\u00e1ndares acerca del uso de la fuerza por parte de cuerpos de seguridad del Estado y sobre las condiciones carcelarias y la obligaci\u00f3n estatal de garantizar el derecho a la integridad personal.", - "values": [ - "Ejecuci\u00f3n extrajudicial", - "Condiciones de detenci\u00f3n", - "Uso de la fuerza" - ] - }, - { - "text": "Los hechos del caso se refieren a la privaci\u00f3n de libertad \u2013ocurrida en el contexto de un operativo policial conocido como \u201cOperaci\u00f3n Linda\u201d- y torturas sufridas por los Sres. Jorge Eli\u00e9cer Herrera Espinoza, Luis Alfonso Jaramillo Gonz\u00e1lez y Emmanuel Cano quienes quedaron vinculados a una investigaci\u00f3n por el delito de tr\u00e1fico internacional de drogas. \n\nLa CorteIDH analiz\u00f3 cuestiones vinculadas con la pr\u00e1ctica de tortura, su prueba y la obligaci\u00f3n estatal de investigarla. Tambi\u00e9n se refiri\u00f3 a la privaci\u00f3n ilegal y arbitraria de la libertad personal y al control judicial de la misma y al derecho a la defensa como parte central de la garant\u00eda de debido proceso. \n", - "values": [ - "Privaci\u00f3n de libertad", - "Tortura y tratos crueles, inhumanos o degradantes" - ] - }, - { - "text": "Los hechos se refieren a la detenci\u00f3n -por un patrulla militar integrada por infantes de la Marina de Guerra y miembros de Polic\u00eda de Investigaci\u00f3n de Per\u00fa- de Rigoberto Tenorio Roca el 7 de julio de 1984, cuando se dirig\u00eda junto con su esposa desde la ciudad de Huanta hacia Ayacucho. Desde entonces, pese a las gestiones de sus familiares, se desconoce su paradero. \n\nEstos hechos ocurrieron en el contexto de pr\u00e1ctica generalizada de violaciones a los derechos humanos durante el conflicto armado interno en el Per\u00fa entre los a\u00f1os 1980 y 2000. \n\nLa CorteIDH reiter\u00f3 sus est\u00e1ndares sobre desaparici\u00f3n forzada como una violaci\u00f3n de m\u00faltiples derechos humanos, que coloca a las v\u00edctimas en estados de completa indefensi\u00f3n y adquiere particular gravedad cuando -como en el caso- forma parte de un patr\u00f3n de pr\u00e1ctica aplicada o tolerada por el Estado. Tambi\u00e9n evalu\u00f3 la incompatibilidad con el derecho interamericano de los derechos humanos de la intervenci\u00f3n de la jurisdicci\u00f3n militar en la investigaci\u00f3n de este tipo de hechos, as\u00ed como la vigencia de leyes de amnist\u00eda.\n", - "values": [ - "Privaci\u00f3n de libertad", - "Desaparici\u00f3n forzada", - "Jurisdicci\u00f3n militar" - ] - }, - { - "text": "Los hechos del caso se refieren a la desaparici\u00f3n y muerte de la ni\u00f1a Mar\u00eda Isabel V\u00e9liz Franco -de 15 a\u00f1os de edad- quien desapareci\u00f3 el 16 de diciembre de 2001 luego de salir de su trabajo. \n\nLa CorteIDH ubic\u00f3 su an\u00e1lisis en el contexto de invisibilidad de la violencia contra las mujeres en Guatemala para desarrollar est\u00e1ndares sobre el deber estatal de prevenci\u00f3n a la luz del riesgo especial que afecta a las mujeres de sufrir violencia de g\u00e9nero y sobre criterios para la valoraci\u00f3n de la prueba en este tipo de casos.", - "values": [ - "Ejecuci\u00f3n extrajudicial", - "Desaparici\u00f3n forzada", - "Violencia de g\u00e9nero", - "Ni\u00f1ez" - ] - }, - { - "text": "Los hechos del caso se refieren a la muerte \u2013 en febrero de 1998 y como consecuencia de haber recibido disparos de arma de fuego- de Johan Alexis Ortiz Hern\u00e1ndez \u2013de 19 a\u00f1os- ocurrida en las instalaciones de la Escuela de Formaci\u00f3n de Guardias Nacionales de Cordero. Ortiz Hern\u00e1ndez estaba participando, como parte de su formaci\u00f3n como Guardia Nacional la que estimaba terminar en abril de ese mismo a\u00f1o, de una pr\u00e1ctica de fogueo con balas reales. \n\nEn su Sentencia la CorteIDH abord\u00f3 el alcance de las violaciones al derecho a la vida y a la integridad teniendo como eje la especial situaci\u00f3n de estar desarrollando una actividad militar. Adicionalmente, analiz\u00f3 la diligencia estatal desplegada en la investigaci\u00f3n de los hechos, as\u00ed como la compatibilidad de la jurisdicci\u00f3n militar que intervino en la misma. \n", - "values": [ - "Jurisdicci\u00f3n militar", - "Servicio militar" - ] - }, - { - "text": "Los hechos del caso se relacionan con la muerte del Sr. Poblete Vilches, de 76 a\u00f1os de edad, quien estuviera internado y sometido a tratamiento m\u00e9dico en un hospital p\u00fablico de Chile. Las alegaciones se refieren a la falta de consentimiento informado y la deficiente investigaci\u00f3n respecto de lo ocurrido.\n\nEn la Sentencia, la CorteIDH desarroll\u00f3 el alcance del derecho a la salud protegido bajo el art\u00edculo 26 de la Convenci\u00f3n Americana, analizando su contenido en situaciones de urgencias m\u00e9dicas y respecto de las personas mayores. \n\nLa CorteIDH tambien elabora estandares relacionados con el consentimento informado y el acceso a la informaci\u00f3n em mat\u00e9ria de salud.\n\n ", - "values": [ - "Salud", - "Personas mayores", - "Acceso a informacion" - ] - }, - { - "text": "Los hechos del caso se relacionan a la prohibici\u00f3n \u2013vigente en Costa Rica desde el a\u00f1o 2000- de practicar la t\u00e9cnica de reproducci\u00f3n asistida conocida como fecundaci\u00f3n in vitro. \n\nEn su Sentencia, la CorteIDH homologa un acuerdo de soluci\u00f3n amistosa alcanzado por las partes durante el periodo conferido al Estado para responder al escrito de solicitudes y argumentos. \n", - "values": [ - "Derechos reproductivos" - ] - }, - { - "text": "La solicitud de protecci\u00f3n se relaciona con agresiones, hostigamientos y amenazas contra la Comunidad, tanto a nivel de algunos de sus integrantes cuanto de manera colectiva, en un contexto en el que la Comunidad mantiene una disputa legal del territorio con otra comunidad y denuncia la presencia de grupos criminales con intereses en el uso de la tierra y vinculados al narcotr\u00e1fico. ", - "values": [ - "Amenazas y hostigamientos", - "Pueblos ind\u00edgenas" - ] - }, - { - "text": "La solicitud de protecci\u00f3n en favor de los integrantes del Centro de DD.HH Miguel Agust\u00edn Pro Ju\u00e1rez se deriva de la ejecuci\u00f3n extrajudicial de su colega Digna Ochoa y las amenazas a los miembros del Centro dejadas junto a su cad\u00e1ver. La protecci\u00f3n tambi\u00e9n incluy\u00f3 a los padres y hermanos de Digna Ochoa como consecuencia de los hostigamientos recibidos en su b\u00fasqueda de justicia.\n\nEn abril de 2004, la CorteIDH levant\u00f3 parcialmente las medidas de protecci\u00f3n manteni\u00e9ndolas s\u00f3lo en favor de las abogadas Pilar Noriega Garc\u00eda y B\u00e1rbara Zamora L\u00f3pez, del abogado Leonel Rivero y de los padres y hermanos/as de Digna Ochoa. \n", - "values": [ - "Amenazas y hostigamientos", - "Defensores/as de derechos humanos" - ] - }, - { - "text": "Los hechos que fundamentan la solicitud se refieren al riesgo a la vida e integridad personal de Wong Ho Win, de quien se hab\u00eda solicitado su extradici\u00f3n a la Rep\u00fablica Popular de China, con riesgo de condena a cadena perpetua o pena de muerte. La CorteIDH ordenar\u00f3 a Per\u00fa que se abstuviera de dar curso a la extradici\u00f3n, de modo de no frustrar la posibilidad de dar cumplimiento a una eventual decisi\u00f3n de los \u00f3rganos del sistema interamericano de protecci\u00f3n de los derechos humanos. \n\nLas medidas originalmente concedidas fueron levantadas en octubre de 2011, y reimpuestas en junio de 2012. En marzo de 2014, fue solicitada una ampliaci\u00f3n requiriendo la libertad del Wong Ho Win que fue rechazada por la CorteIDH. \n", - "values": [ - "Extradici\u00f3n" - ] - }, - { - "text": "Los hechos del caso se relacionan con la separaci\u00f3n del Sr. Flor Freire \u2013funcionario militar de Ecuador- con base en una norma del Reglamento de Disciplina Militar que sancionaba con esa consecuencia los actos sexuales entre personas del mismo sexo. \n\nLa CorteIDH evalu\u00f3 a la luz de las garant\u00edas de debido proceso tanto los tr\u00e1mites judiciales cuanto los administrativos, y aplic\u00f3 est\u00e1ndares relativos a la garant\u00eda de igualdad y no discriminaci\u00f3n.", - "values": [ - "Discriminaci\u00f3n", - "Destituci\u00f3n de funcionario p\u00fablico", - "Orientaci\u00f3n sexual" - ] - }, - { - "text": "Los hechos del caso se refieren con el asesinato \u2013en raz\u00f3n de su ejercicio profesional- del periodista Nelson Carvajal Carvajal el 6 de abril de 1998 y a la falta de debida diligencia estatal en relaci\u00f3n con la protecci\u00f3n de Carvajal y su familia y la investigaci\u00f3n de los hechos. \n\nLa CorteIDH ubic\u00f3 los hechos en el contexto colombiano de homicidios a periodistas que se produjo en la d\u00e9cada de los a\u00f1os 1990. En su Sentencia, la CorteIDH aplic\u00f3 est\u00e1ndares sobre la obligaci\u00f3n estatal de llevar cabo las investigaciones y procesos judiciales en un plazo razonable, y analiz\u00f3 la relaci\u00f3n entre el respeto y la garant\u00eda al derecho a la vida y la libertad de expresi\u00f3n de los y las periodistas y comunicadores sociales. ", - "values": [ - "Amenazas y hostigamientos", - "Libertad de expresi\u00f3n", - "Periodistas", - "Testigo" - ] - }, - { - "text": "Los hechos del caso se refieren a la ejecuci\u00f3n extrajudicial de Noel Emiro Carrascal, la desaparici\u00f3n forzada y ejecuci\u00f3n de su hijo Manuel, y el atentado y posterior muerte de su suegro, todos ellos ocurridos entre enero y octubre de 1994 en el Municipio de Aguachica, Departamento del Cesar, y como consecuencia de la actuaci\u00f3n de grupos paramilitares con la colaboraci\u00f3n de agentes estatales. \n\nLa Sentencia de la CorteIDH analiza la obligaci\u00f3n estatal de proteger el derecho a la vida y la integridad personal y la debida diligencia en la investigaci\u00f3n de los hechos. Adicionalmente aborda el derecho de circulaci\u00f3n y residencia en relaci\u00f3n con el desplazamiento que sufrieron las victimas del caso. ", - "values": [ - "Desplazamiento forzado", - "Ejecuci\u00f3n extrajudicial" - ] - }, - { - "text": "Los hechos del caso se relacionan con la falta de la debida atenci\u00f3n medica \u2013entre la d\u00e9cada del 90 y hasta el 2006- de un grupo de personas diagnosticadas con VIH/SIDA. \n\nEn su Sentencia, la Corte IDH consider\u00f3 central la controversia respecto del alcance del derecho a la salud entendido como derecho aut\u00f3nomo y avanz\u00f3 en la l\u00ednea jurisprudencial del caso Lagos del Campo. En esta l\u00ednea, focaliz\u00f3 en el derecho a la salud de las personas que viven con el VIH y las obligaciones estatales que se desprenden del mismo: acceso a medicamentos, a la realizaci\u00f3n de pruebas diagn\u00f3sticas, al apoyo social y psicol\u00f3gico, entre otras. \n\nAdicionalmente, analiz\u00f3 \u2013desde la perspectiva de la garant\u00eda de no discriminaci\u00f3n- la especificidad que presenta la violaci\u00f3n de estos derechos en relaci\u00f3n con las mujeres que se encuentran en edad reproductiva. \n", - "values": [ - "Discriminaci\u00f3n", - "Salud", - "Derechos reproductivos" - ] - }, - { - "text": "Los hechos del caso se relacionan con acciones omisiones del Estado en relaci\u00f3n con la adopci\u00f3n internacional de los ni\u00f1os Osm\u00edn Ricardo Tobar Ram\u00edrez y J.R., de 7 y 2 a\u00f1os de edad.\n\nLa Corte IDH ubic\u00f3 lo ocurrido en un contexto de irregularidades en los procesos de adopci\u00f3n de ni\u00f1os y ni\u00f1as en Guatemala, favorecido por una normativa inadecuada y la debilidad de los \u00f3rganos de control. En la Sentencia, la Corte IDH estableci\u00f3 est\u00e1ndares para el an\u00e1lisis de la separaci\u00f3n de los ni\u00f1os de su familia a la luz del derecho internacional, en particular el derecho de los ni\u00f1os a ser o\u00eddos, y el deber de motivaci\u00f3n de las decisiones de los \u00f3rganos estatales. \n\nAsimismo, la Corte analiz\u00f3 los hechos rechazando, por falta de evidencia, la posibilidad de que se hubiera configurado una violaci\u00f3n a la prohibici\u00f3n de trata de personas. \n", - "values": [ - "Discriminaci\u00f3n", - "Ni\u00f1ez", - "Familia" - ] - }, - { - "text": "Los hechos del caso se refieren a la desaparici\u00f3n y posterior homicidio de Claudina Vel\u00e1squez Paiz de 19 a\u00f1os de edad quien el 12 de agosto de 2005 sali\u00f3 de su casa hacia la Universidad en la que estudiaba la Licenciatura en Ciencias Jur\u00eddicas y Sociales y no regres\u00f3 a su casa. Un d\u00eda despu\u00e9s, su cad\u00e1ver fue encontrado con signos de violencia en la Zona 11 de la ciudad de Guatemala. La Corte Interamericana ubic\u00f3 los hechos en un contexto de aumento de la violencia homicida contra mujeres en el pa\u00eds. \n\nLa CorteIDH analiz\u00f3 la obligaci\u00f3n estatal de garantizar los derechos a la vida, la integridad, la honra y la dignidad a la luz de la violaci\u00f3n al deber de prevenci\u00f3n y la falta de debida diligencia en las investigaciones de los hechos. En relaci\u00f3n con este \u00faltimo ratific\u00f3 los alcances adicionales del deber estatal de investigar frente a la violencia de g\u00e9nero, y ratific\u00f3 algunas pautas m\u00ednimas en orden a garantizar su efectividad.", - "values": [ - "Desaparici\u00f3n forzada", - "Violencia de g\u00e9nero" - ] - }, - { - "text": "Los hechos del caso se relacionan con la detenci\u00f3n arbitraria, tortura y muerte del periodista Vladimir Herzog, ocurrida el 25 de octubre de 1975 en dependencias del Ejercito, as\u00ed como la impunidad de los ocurrido como consecuencia de la aplicaci\u00f3n de una ley de amnist\u00eda promulgada durante la \u00faltima dictadura militar brasilera.\n\nEn su Sentencia, la CorteIDH expuso de manera detallada consideraciones generales sobre los elementos de los cr\u00edmenes contra la humanidad y la responsabilidad estatal derivada de los mismos, y su aplicaci\u00f3n en el caso de tortura y muerte del Sr. Herzog. \n\nAsimismo, ratific\u00f3 los alcances de la obligaci\u00f3n positiva del Estado de garantizar el acceso a la informaci\u00f3n y a los archivos p\u00fablicos en relaci\u00f3n con el derecho a la verdad. \n", - "values": [ - "Acceso a la informaci\u00f3n p\u00fablica", - "Amnist\u00eda", - "Tortura y tratos crueles, inhumanos o degradantes", - "Crimenes contra la humanidad" - ] - }, - { - "text": "Los hechos del caso se refieren a la violaci\u00f3n al derecho a la propiedad colectiva del pueblo ind\u00edgena Xucuru y sus miembros debido al retardo en el proceso de demarcaci\u00f3n de su territorio ancestral y la ineficacia de la protecci\u00f3n judicial destinada a garantizar dicho derecho. \n\nEn su Sentencia, la CorteIDH reiter\u00f3 est\u00e1ndares relacionadas con el derecho de propiedad de los pueblos ind\u00edgenas sobre sus territorios tradicionales al tiempo de analizar si las acciones emprendidas por el Estado Brasil en el caso concreto fueron efectivas para garantizar el reconocimiento de esos derechos y el eventual impacto que pudo haber tenido la demora en la resoluci\u00f3n de las acciones judiciales. La CorteIDH concluy\u00f3 que el proceso administrativo aplicado fue parcialmente ineficaz para la protecci\u00f3n de los derechos y que la demora judicial afect\u00f3 la seguridad jur\u00eddica del derecho de propiedad del pueblo ind\u00edgena Xucur\u00fa.\n", - "values": [ - "Propiedad", - "Pueblos ind\u00edgenas", - "Proceso administrativo" - ] - }, - { - "text": "Los hechos que fundamentan la solicitud de la protecci\u00f3n se relacionan con las deficientes condiciones penitenciarias del Instituto Penal Pl\u00e1cido de S\u00e1 Carvalho, ubicado en el Complejo Penitenciario de Gericin\u00f3, en la ciudad de Rio de Janeiro, y se refieren a la p\u00e9rdida de numerosas vidas por incidentes de violencia inter-carcelaria, as\u00ed como da\u00f1os a la integridad f\u00edsica, ps\u00edquica y moral de las personas que se encuentran privadas de libertad en el Instituto referido. ", - "values": [ - "Condiciones de detenci\u00f3n" - ] - }, - { - "text": "Los hechos que fundamentan la solicitud de protecci\u00f3n a favor del pueblo ind\u00edgena Miskitu -ubicado en la Regi\u00f3n Costa Caribe Norte nicarag\u00fcense- se relacionan con una serie de secuestros, asesinatos, agresiones sexuales, amenazas, incendios de viviendas, robos y emboscadas perpetrados por \u201ccolonos\u201d contra dicha comunidad en raz\u00f3n de procesos reivindicativos de sus territorios ancestrales.", - "values": [ - "Amenazas y hostigamientos", - "Pueblos ind\u00edgenas", - "Propiedad" - ] - }, - { - "text": "Los hechos que fundamentan la solicitud de protecci\u00f3n se refieren al atentado ocurrido -en el Municipio de Wiwil\u00ed, al norte de Managua- el 23 de enero de 1995 contra la vida e integridad f\u00edsica de Arnoldo Alem\u00e1n Lacayo quien se encontraba realizando una caravana proselitista en favor de su candidatura a la presidencia de la Rep\u00fablica de Nicaragua. En el ataque muri\u00f3 uno de sus escoltas y fueron heridas de gravedad 3 personas. ", - "values": [ - "Derechos pol\u00edticos" - ] - }, - { - "text": "Los hechos del caso se relacionan con la desaparici\u00f3n forzada de Wilfredo Terrones Silva, Teresa D\u00edaz Aparicio, Santiago Antezana Cueto, N\u00e9stor Rojas Medina y Cory Clodolia Tenicela Tello \u2013ocurridas durante los a\u00f1os 1984 y 1992- en el contexto del patr\u00f3n sistem\u00e1tico de desaparici\u00f3n forzada de personas percibidas como vinculadas al terrorismo, asi como la impunidad vinculada con las mismas. \n\nEn su Sentencia, la CorteIDH aplic\u00f3 est\u00e1ndares sobre desaparici\u00f3n forzada y derecho a la verdad, y evalu\u00f3 la obligaci\u00f3n de debida diligencia estatal asi como la garant\u00eda del plazo razonable en relaci\u00f3n con la investigaci\u00f3n de los hechos", - "values": [ - "Desaparici\u00f3n forzada", - "Tortura y tratos crueles, inhumanos o degradantes" - ] - }, - { - "text": "Los hechos que fundamentan la solicitud de protecci\u00f3n a favor de un grupo de personas, todas ellas condenadas a pena de muerte en Barbados. El otorgamiento de las medidas tiene como objetivo frustrar su ejecuci\u00f3n y permitir el cumplimiento de una eventual determinaci\u00f3n de los \u00f3rganos del sistema interamericano de protecci\u00f3n de los derechos humanos de la existencia de una violaci\u00f3n del derecho a la vida e integridad personal. ", - "values": [ - "Pena de muerte" - ] - }, - { - "text": "Los hechos del caso se refieren a la violencia sexual a la que fue sometida la ni\u00f1a V.R.P por su padre, y las irregularidades ocurridas en el proceso penal que fuera abierto para investigarlos \n\nEn su Sentencia la CorteIDH analiz\u00f3 las obligaciones estatales de debida diligencia y protecci\u00f3n especial en investigaciones y procesos penales en casos de violencia sexual contra ni\u00f1as, estableciendo est\u00e1ndares espec\u00edficos para evitar la revictimizaci\u00f3n. \n\nAdicionalmente, se refiri\u00f3 a la garant\u00eda de imparcialidad y al deber de motivaci\u00f3n de las decisiones en relaci\u00f3n con el Tribunal por Jurados. \n", - "values": [ - "Discriminaci\u00f3n", - "Ni\u00f1ez", - "Violencia de g\u00e9nero" - ] - }, - { - "text": "Los hechos del caso se relacionan con los operativos policiales ocurridos los d\u00edas 3 y 4 de mayo de 2006 en los municipios de Texcoco y San Salvador Atenco, en el contexto del conflicto derivado la protesta por parte de un grupo de floricultores. Un grupo de 11 mujeres fueron sometidas a diversas formas de violencia sexual al momento de su detenci\u00f3n y posterior privaci\u00f3n de libertad. \n\nLa Sentencia de la CorteIDH analiza los l\u00edmites impuestos por el derecho internacional de los derechos humanos al el uso de la fuerza por parte de los cuerpos de seguridad, en particular en escenarios relacionados con el ejercicio del derecho de reuni\u00f3n. \n\nAdicionalmente desarrolla est\u00e1ndares sobre la naturaleza sexual de la violencia ejercida contra las mujeres v\u00edctimas del caso \u2013incluyendo consideraciones sobre el abuso verbal al que fueron sometidas-, y aborda la misma desde la perspectiva de la tortura y su utilizaci\u00f3n como una forma intencional de control social. \n\nLa CorteIDH tambi\u00e9n incorpora en su an\u00e1lisis la conducta de los profesionales de la salud que intervinieron atendiendo a las v\u00edctimas. Al considerar las caracter\u00edsticas de la privaci\u00f3n de la libertad que sufrieron las mujeres fueron establecidas algunas especificidades vinculadas con las obligaciones del Estado en supuestos de detenciones colectivas. \n\nFinalmente, se analiza la debida diligencia en relaci\u00f3n con las investigaciones sobre los hechos de violaci\u00f3n sexual \n", - "values": [ - "Discriminaci\u00f3n", - "Estereotipos", - "Violencia de g\u00e9nero", - "Uso de la fuerza", - "Tortura y tratos crueles, inhumanos o degradantes" - ] - }, - { - "text": "Los hechos del caso se relacionan con la privaci\u00f3n de la libertad y sometimiento a violencia psicol\u00f3gica, f\u00edsica y sexual de la Sra. Linda Loayza y la impunidad en que quedaron tales hechos. \n\nEn su Sentencia, la CorteIDH analiz\u00f3 la responsabilidad del Estado \u2013en casos de violencia contra las mujeres- por la violaci\u00f3n a su obligaci\u00f3n de prevenir violaciones de derechos y su relaci\u00f3n con la tolerancia estatal frente a hechos cometidos por particulares. Adicionalmente aplic\u00f3 la figura de tortura a los hechos de violencia ocurridos. \n\nA su vez, la Corte desarroll\u00f3 est\u00e1ndares sobre esclavitud sexual, y acceso a la justicia en condiciones de igualdad para mujeres v\u00edctimas de violencia. \n", - "values": [ - "Esclavitud", - "Estereotipos", - "Violencia de g\u00e9nero", - "Tortura y tratos crueles, inhumanos o degradantes" - ] - }, - { - "text": "Los hechos del caso se relacionan con el asesinato del Sr. Pacheco Le\u00f3n, ocurrido el 23 de noviembre de 2001 en el marco de su campa\u00f1a a diputado al Congreso Nacional de Honduras y la impunidad de tal hecho. \n\nPacheco Le\u00f3n estaba afiliado al Partido Nacional de Honduras y hab\u00eda ganado las elecciones primarias para ser candidato a primer diputado para el per\u00edodo 2002-2006 del departamento de Valle. Dos d\u00edas antes de las elecciones, fue asesinado al ingresar a su domicilio. En las elecciones del 25 de noviembre de ese mismo a\u00f1o, la candidatura que le hubiera correspondido obtuvo el cargo. \n\nEn su Sentencia, la CorteIDH desarroll\u00f3 est\u00e1ndares sobre debida diligencia en la investigaci\u00f3n, en particular, respecto a identificaci\u00f3n de v\u00edctimas, tratamiento de la escena del delito, seguimiento de l\u00edneas l\u00f3gicas de investigaci\u00f3n e indicios sobre autor\u00eda del mismo. \n\nPor otra parte, analiz\u00f3 la observancia por parte del Estado del deber de garant\u00eda a la luz de la vinculaci\u00f3n entre el derecho a la vida y los derechos pol\u00edticos. \n", - "values": [ - "Derechos pol\u00edticos", - "Tutela judicial efectiva" - ] - }, - { - "text": "Los hechos que fundamentan la solicitud se relacionan con las afectaciones a la vida, la integridad personal y la salud de la beneficiaria Milagro Sala, derivadas de las condiciones de su detenci\u00f3n y los procesos penales que se han abierto en su contra. \n\nAl otorgar la medida, la CorteIDH reiter\u00f3 los est\u00e1ndares referidos a la justificaci\u00f3n de la prisi\u00f3n preventiva. \n", - "values": [ - "Condiciones de detenci\u00f3n" - ] - }, - { - "text": "Los hechos que fundamentan la solicitud se refieren a protecci\u00f3n del derecho a la estabilidad de sus puestos de los magistrados del Tribunal Constitucional de Per\u00fa, Manuel Miranda, Carlos Ramos Nu\u00f1ez y Eloy Espinosa Salda\u00f1a Barrera y de la magistrada Marianella Ledesma Narv\u00e1ez a quienes se pretende destituir como consecuencia de su actuaci\u00f3n en la causa judicial relacionada con el cumplimiento de la obligaci\u00f3n de investigar ordenada por la CorteIDH en la Sentencia de Fondo del caso Durand y Ugarte, dictada el 16 de agosto de 2000. ", - "values": [ - "Jueces/zas", - "Destituci\u00f3n de funcionario p\u00fablico" - ] - }, - { - "text": "Los hechos del caso se refieren a la ejecuci\u00f3n extrajudicial de 11 personas \u2013incluyendo 3 ni\u00f1os- y lesiones causadas a un grupo de 29 pobladores de la finca Xam\u00e1n, cometidos por integrantes de las Fuerzas Armadas en octubre de 1995 y la impunidad en que se encuentran tales hechos. \n\nLa Corte IDH ubic\u00f3 los hechos del caso en el contexto del conflicto armado interno ocurrido en Guatemala entre los a\u00f1os 1962 y 1996 durante el que se aplic\u00f3 la llamada \"doctrina de la seguridad nacional\" que consideraba al pueblo maya como \"enemigo interno\".\n\nEn su Sentencia la Corte IDH estableci\u00f3 la responsabilidad del Estado por la falta de diligencia en la aprehensi\u00f3n de las personas pr\u00f3fugas, pese al dictado de \u00f3rdenes de captura. Analiz\u00f3 tambi\u00e9n los deberes especiales del Estado en relaci\u00f3n con los ni\u00f1os y la ni\u00f1a v\u00edctimas de la masacre. \n", - "values": [ - "Ejecuci\u00f3n extrajudicial", - "Discriminaci\u00f3n", - "Ni\u00f1ez" - ] - }, - { - "text": "Los hechos del caso se relacionan con el tr\u00e1mite de juicio pol\u00edtico al que fue sometido el Juez titular del Tribunal del Trabajo N\u00ba 6 del Departamento de San Isidro, y que culmin\u00f3 con su destituci\u00f3n del cargo. \n\nLa CorteIDH analiz\u00f3 alegadas violaciones a diversas garant\u00edas judiciales violadas durante el proceso llevado adelante contra el Sr. Rico.", - "values": [ - "Destituci\u00f3n de funcionario p\u00fablico", - "Jueces/zas" - ] - }, - { - "text": "Los hechos del caso se relacionan con el asesinato del defensor ambientalista Carlos Escaleras Mej\u00eda -ocurrido el 10 de octubre de 1997 en la ciudad de Tegucigalpa- como consecuencia de su trabajo, as\u00ed como la impunidad en la que qued\u00f3 el mismo. \n\nLas investigaciones judiciales abiertas como consecuencia del homicidio tuvieron falencias e irregularidades que fueron determinantes para la impunidad parcial en que quedaron los hechos. \n\nEn su Sentencia, la Corte IDH homolog\u00f3 un acuerdo de soluci\u00f3n amistosa alcanzado por las partes, en las que el Estado reconoce su responsabilidad por lo ocurrido y asume el compromiso de repararlo. \n", - "values": [ - "Defensores/as de derechos humanos", - "Medio ambiente", - "Libertad de asociaci\u00f3n", - "Derechos pol\u00edticos" - ] - }, - { - "text": "Los hechos del caso se relacionan con los procedimientos disciplinarios y posterior separaci\u00f3n de su cargo \u2013en noviembre de 1996- del magistrado del Tribunal Supremo Electoral, Eduardo Benjam\u00edn Colindres.\n\nEn su Sentencia, la CorteIDH analiz\u00f3 si los procedimientos llevados adelante respetaron las garant\u00edas del debido proceso y si, como consecuencia de su cese arbitrario en su cargo, fue afectado su derecho a permanecer en un cargo p\u00fablico en condiciones de igualdad. ", - "values": [ - "Destituci\u00f3n de funcionario p\u00fablico", - "Jueces/zas" - ] - }, - { - "text": "Los hechos del caso se relacionan con las amenazas e intimidaciones -que empezaron a ocurrir a inicios del a\u00f1o 1994- contra la Sra Villase\u00f1or quien -en su calidad de jueza- hab\u00eda intervenido en varios casos que involucraban a altos miembros del Ej\u00e9rcito de Guatemala, acusados por graves delitos patrimoniales y violaciones a los derechos humanos, as\u00ed como la falta de investigaci\u00f3n de las mismas.\n\nLa CorteIDH aplic\u00f3 est\u00e1ndares sobre independencia judicial a la luz de las presiones sufridas por la Jueza Villase\u00f1or, y analiz\u00f3 la responsabilidad estatal en relaci\u00f3n con la participaci\u00f3n o no de agentes estatales en los mismos", - "values": [ - "Jueces/zas", - "Amenazas y hostigamientos" - ] - }, - { - "text": "Los hechos del caso se relacionan con el incumplimiento de dos sentencias judiciales de amparo \u2013datadas en 1993 y 1999- que reconoc\u00edan derechos de pensi\u00f3n al Sr. Muelle Flores, en su calidad de ex trabajador de la empresa estatal minera Tintaya.\n\nEn su Sentencia, la CorteIDH analiza el incumplimiento de las sentencias nacionales a la luz de los est\u00e1ndares sobre tutela judicial efectiva y plazo razonable. \n\nAsimismo desarrolla el alcance del derecho a la seguridad social como derecho aut\u00f3nomo.\n", - "values": [ - "Seguridad social", - "Propiedad", - "Tutela judicial efectiva" - ] - }, - { - "text": "Los hechos del caso se relacionan con el proceso penal -y posterior condena- contra el Sr. Alvarez por la publicaci\u00f3n de un art\u00edculo -en su columna en el diario Asi es la Noticia- en la que informaba sobre un supuesto desv\u00edo de fondos de la Caja de Ahorro de los trabajadores y jubilados de la Asamblea Nacional de Venezuela. \n\nEn su Sentencia, la CorteIDH desarroll\u00f3 est\u00e1ndares sobre el contenido del derecho a la libertad de expresi\u00f3n y el alcance de la persecuci\u00f3n penal para la exigencia de responsabilidades ulteriores. Por otra parte, tambi\u00e9n se analiz\u00f3 la compatibilidad de la aplicaci\u00f3n de restricciones a la libertad de circulaci\u00f3n a la luz de los est\u00e1ndares del derecho internacional.", - "values": [ - "Libertad de expresi\u00f3n" - ] - }, - { - "text": "Los hechos del caso se relacionan con la desaparici\u00f3n forzada -en marzo de 1999- de Walter Mun\u00e1rriz Escobar, quien fuera privado de su libertad y permaneciera detenido en la Comisar\u00eda de Lircay.\n\nEn su Sentencia, la Corte IDH aplic\u00f3 est\u00e1ndares respecto de la desaparici\u00f3n forzada de personas y analiz\u00f3 la diligencia estatal para esclarecer los hechos del caso y la responsabilidad por los mismos. ", - "values": [ - "Desaparici\u00f3n forzada" - ] - }, - { - "text": "Los hechos del caso se relacionan con la falta de reparaci\u00f3n e indemnizaci\u00f3n a los familiares de un grupo de personas que fueron asesinadas o desaparecidas entre los a\u00f1os 1973 y 1974, durante la \u00faltima dictadura militar en Chile como consecuencia de que los tribunales judiciales aplicaran el instituto de la prescripci\u00f3n y rechazaran los reclamos. \n\nEn su sentencia, la CorteIDH analiza los hechos desde la perspectiva del derecho de acceso a la justicia en relaci\u00f3n con las acciones civiles de reparaci\u00f3n de da\u00f1os consecuencia de hechos calificados como cr\u00edmenes contra la humanidad. ", - "values": [ - "Acci\u00f3n civil", - "Crimenes contra la humanidad" - ] - }, - { - "text": "Los hechos que fundamentan la solicitud se relacionan con la seguridad de las personas que integrar\u00e1n la delegaci\u00f3n que asistir\u00e1 en representaci\u00f3n de las v\u00edctimas a una audiencia p\u00fablica convocada por la Corte IDH en el caso, as\u00ed como la de dos personas que fueron citadas a la misma en calidad de declarantes. En particular se indica que personas \u201cextra\u00f1as\u201d o \u201cpr\u00f3fugas\u201d, que podr\u00edan ser militares vinculados a las violaciones de derechos humanos que se est\u00e1n conociendo, estar\u00edan \u201crondando\u201d la comunidad y habr\u00edan efectuado seguimientos a varias personas, asociando estos hostigamientos a la realizaci\u00f3n de una audiencia p\u00fablica sobre el caso. ", - "values": [ - "Amenazas y hostigamientos", - "Testigo", - "Defensores/as de derechos humanos" - ] - }, - { - "text": "Los hechos del caso se relacionan con la muerte de 3 personas \u2013los hermanos Diaz Loreto y su padre- ocurrida en enero de 2003, como consecuencia del accionar de funcionarios policiales del Estado de Aragua y la impunidad en que quedaron los hechos. \n\nEn su Sentencia la CorteIDH analiz\u00f3 el comportamiento de los funcionarios policiales a la luz de est\u00e1ndares que legitiman el uso de la fuerza, asi como su eventual respeto a principios de necesidad y estricta proporcionalidad. \n\nTambi\u00e9n estableci\u00f3 responsabilidad por faltas a la debida diligencia y al plazo razonable en la investigaci\u00f3n de los hechos . \n\nAdicionalmente evalu\u00f3 violaciones a las garant\u00edas judiciales por falta de medidas de protecci\u00f3n en favor de las personas que participaron de los procesos judiciales, quienes hab\u00edan sufrido hostigamientos e intimidaciones. \n", - "values": [ - "Uso de la fuerza", - "Amenazas y hostigamientos", - "Tortura y tratos crueles, inhumanos o degradantes" - ] - }, - { - "text": "Los hechos del caso se relacionan con la desaparici\u00f3n forzada del sindicalista G\u00f3mez Virula en marzo de 1995 y posterior muerte \u2013su cad\u00e1ver fue encontrado 6 meses despu\u00e9s- , y la impunidad en que permanece el caso. \n\nG\u00f3mez Virula trabajaba en una maquiladora, y ten\u00eda activa participaci\u00f3n en el sindicato. \n\nEn su Sentencia, la CorteIDH consider\u00f3 que no ten\u00eda elementos para establecer que la desaparici\u00f3n y muerte de G\u00f3mez Virula fuera realizada por agentes estatales, y rechazo las alegaciones respecto de la violaci\u00f3n al deber del Estado de garantizar el derecho a la vida, la integridad y la libertad personal. \n\nSin embargo, estableci\u00f3 responsabilidad por la falta de debida diligencia en la investigaci\u00f3n sobre la desaparici\u00f3n de Gomez Virula, a pesar de su condici\u00f3n de sindicalista y de encontrarse en conflicto con su lugar de trabajo. \n", - "values": [ - "Sindicalismo", - "Tutela judicial efectiva" - ] - }, - { - "text": "Los hechos del caso se relacionan con la falta de pago de los salarios y otros beneficios laborales de la Sra. Perrone y el Sr. Preckel \u2013quienes se desempe\u00f1aban como funcionarios p\u00fablicos en la Direcci\u00f3n General Impositiva- durante su detenci\u00f3n y posterior exilio como consecuencia de la dictadura militar.\n\nLa CorteIDH analiz\u00f3 el acceso de la Sra. Perrone y el Sr. Preckel a un recurso adecuado, efectivo y con las debidas garant\u00edas procesales para el reclamo de sus salarios y beneficios sociales no recibidos. ", - "values": [ - "Acceso al recurso" - ] - }, - { - "text": "Los hechos del caso se relacionan con violaciones al debido proceso que afectaron al Sr. Rosadio Villavicencio tanto en sede administrativa cuanto en la jurisdicci\u00f3n penal militar y ordinaria. El Sr. Rosadio fue juzgado y condenado por los delitos de desobediencia y tr\u00e1fico il\u00edcito de drogas mientras se desempe\u00f1aba como Jefe de la Base Militar de Sion y llevaba adelante un plan de inteligencia que consist\u00eda en infiltrarse en grupos de narcotr\u00e1fico que operaban en la zona. \n\nEn su Sentencia la CorteIDH aborda por primera vez la violaci\u00f3n al principio de ne bis in \u00eddem en raz\u00f3n de haber sometido a juicio y condenado a la misma persona, en dos procesos penales diferentes sobre una misma base f\u00e1ctica. \n\nAdicionalmente analiz\u00f3 violaciones al derecho de defensa, y al derecho a un juez imparcial e independiente en el marco del proceso penal militar. Tambi\u00e9n aplic\u00f3 est\u00e1ndares sobre libertad personal y prisi\u00f3n preventiva. \n\n", - "values": [ - "Proceso administrativo", - "Prisi\u00f3n preventiva", - "Jurisdicci\u00f3n militar" - ] - }, - { - "text": "Los hechos del caso se refieren a la detenci\u00f3n en prisi\u00f3n preventiva del Sr. Jenkins, y las negativas a concederle su excarcelaci\u00f3n como consecuencia de haber sido acusado de los delitos de tr\u00e1fico de estupefacientes y asociaci\u00f3n il\u00edcita; as\u00ed como la falta de diligencia de la fiscal\u00eda durante la investigaci\u00f3n. \n\nEn su Sentencia la CorteIDH aplic\u00f3 est\u00e1ndares sobre la compatibilidad de la prisi\u00f3n preventiva con la protecci\u00f3n a la libertad personal y las garant\u00edas judiciales. ", - "values": [ - "Prisi\u00f3n preventiva" - ] - }, - { - "text": "Los hechos del caso se relacionan con la falta de cumplimiento de una sentencia judicial de octubre de 1993 que reconocia derechos pensionarios a un grupo de personas. \n\nEn su Sentencia la CorteIDH analiz\u00f3 el derecho a la protecci\u00f3n judicial en relaci\u00f3n con la seguridad social. Adicionalmente desarrollo el alcance del derecho a la seguridad social, en particular el derecho a la pensi\u00f3n como derecho aut\u00f3nomo y su relaci\u00f3n con la vida digna y la propiedad. ", - "values": [ - "Propiedad", - "Seguridad social" - ] - }, - { - "text": "Los hechos del caso se relacionan con violaciones al debido proceso sufridas por las v\u00edctimas as\u00ed como su posterior condena \u2013en octubre de 1993- por el delito de violaci\u00f3n agravada y su ejecuci\u00f3n \u2013por pelot\u00f3n de fusilamiento- en septiembre de 1996 como consecuencia de la aplicaci\u00f3n de la pena de muerte vigente en la legislaci\u00f3n del pa\u00eds. \n\nEn su Sentencia, la CorteIDH consider\u00f3 que la condena de pena de muerte impuesta a las victimas era incompatible con la protecci\u00f3n al derecho a la vida, ya que la norma que la establec\u00eda imped\u00eda valorar las caracter\u00edsticas espec\u00edficas del delito, ni otras circunstancias que pod\u00edan atenuar la sanci\u00f3n impuesta. \n\nAdicionalmente, la Corte IDH evalu\u00f3 el derecho al debido proceso, desarrollando en particular est\u00e1ndares sobre derecho a la defensa t\u00e9cnica. \n", - "values": [ - "Defensa t\u00e9cnica", - "Pena de muerte" - ] - }, - { - "text": "Los hechos del caso se refieren a la prisi\u00f3n preventiva en la que estuvo Romero Feris por m\u00e1s de 3 a\u00f1os, as\u00ed como los fundamentos judiciales utilizados al ordenarla y los recursos disponibles para su impugnaci\u00f3n.\n\nLa CorteIDH aplic\u00f3 est\u00e1ndares sobre prisi\u00f3n preventiva y analiz\u00f3 tambi\u00e9n la efectividad de los recursos planteados en las distintas acciones llevadas adelante. ", - "values": [ - "Prisi\u00f3n preventiva", - "Acceso al recurso" - ] - }, - { - "text": "Los hechos del caso se relacionan con la detenci\u00f3n ilegal y arbitraria de Mario Montesinos Mej\u00eda \u2013en el a\u00f1o 1992-, la falta de garant\u00edas judiciales en los procesos penales abiertos en su contra, as\u00ed como los actos de tortura sufridos. \n\nEn su Sentencia, la CorteIDH abord\u00f3 el analisis de cuestiones relacionadas con la prisi\u00f3n preventiva y la presuncion de inocencia a la luz de los estandares del derecho internacional. \n", - "values": [ - "Desaparici\u00f3n forzada", - "Tortura y tratos crueles, inhumanos o degradantes", - "Prisi\u00f3n preventiva" - ] - }, - { - "text": "Los hechos del caso se relacionan con la detenci\u00f3n ilegal y arbitraria \u2013en noviembre de 1994- de Ramon Carranza Alarc\u00f3n, asi como los plazos de prisi\u00f3n preventiva a los que se vio sometido en raz\u00f3n de un proceso penal en su contra. \n\nEn su Sentencia la CorteIDH aplic\u00f3 est\u00e1ndares sobre prisi\u00f3n preventiva y garantias establecidas en la Convenci\u00f3n Americana sobre Derechos Humanos. \n", - "values": [ - "Prisi\u00f3n preventiva", - "Privaci\u00f3n de libertad" - ] - }, - { - "text": "Los hechos del caso se refieren a vulneraci\u00f3n de garant\u00edas en el proceso penal llevado a cabo en contra el Sr. Valenzuela \u00c1vila, quien adem\u00e1s sufriera torturas durante el tiempo de su detenci\u00f3n. En el a\u00f1o 2005 y luego de haberse fugado de la c\u00e1rcel, fue ejecutado extrajudicialmente.\n\nEn su Sentencia, la CorteIDH analiz\u00f3 las violaciones a la debida diligencia estatal en relaci\u00f3n con la investigaci\u00f3n de los hechos, las que afectaron el resultado de la misma. Tambi\u00e9n concluy\u00f3 respecto de los padecimientos de tortura por haber permanecido en el \u201ccorredor de la muerte\u201d y por no haber recibido atenci\u00f3n medica .\n\nAsimismo, aplic\u00f3 est\u00e1ndares sobre pena de muerte, al analizar la imposici\u00f3n de esa condena al Sr. Valenzuela Avila como consecuencia de la aplicaci\u00f3n de la figura de \u201cpeligrosidad futura\u201d.\n", - "values": [ - "Acceso al recurso", - "Pena de muerte", - "Tortura y tratos crueles, inhumanos o degradantes", - "Condiciones de detenci\u00f3n" - ] - }, - { - "text": "Los hechos del caso se refieren a la falta de un recurso ordinario en sede penal que permita la revisi\u00f3n integral de la sentencia condenatoria impuesta al Sr. Gorigoitia en la provincia de Mendoza, Argentina. \n\nLa Sentencia de la CorteIDH reiter\u00f3 su est\u00e1ndar sobre el alcance del art\u00edculo 8.2.h) y la protecci\u00f3n del derecho a un recurso ordinario, accesible y eficaz que permita una revisi\u00f3n amplia de cuestiones f\u00e1cticas, probatorias y jur\u00eddicas que podr\u00edan haber derivado en un error en la sentencia. ", - "values": [ - "Acceso al recurso" - ] - }, - { - "text": "Los hechos del caso se relacionan con falta de garant\u00eda de los derechos territoriales de las comunidades ind\u00edgenas que habitan los lotes fiscales N\u00ba 55 y 14, en el Departamento de Rivadavia, provincia de Salta. \n\nLa CorteIDH analiz\u00f3 la conducta estatal en relaci\u00f3n con su obligaci\u00f3n de brindar seguridad jur\u00eddica adecuada al derecho de propiedad comunitaria. Adicionalmente, y por primera vez, la CorteIDH se expidi\u00f3 sobre los derechos a un medio ambiente sano, a la alimentaci\u00f3n adecuada, al agua y a participar en la vida cultural evaluando la responsabilidad estatal a la luz de las interferencias sufridas por las comunidades ind\u00edgenas en la plena posesi\u00f3n de su territorio. \n", - "values": [ - "Pueblos ind\u00edgenas", - "Propiedad", - "Medio ambiente", - "Derecho a consulta" - ] - }, - { - "text": "Los hechos del caso se refieren a la vulneraci\u00f3n de garant\u00edas en el proceso penal llevado a cabo en contra Miguel \u00c1ngel Rodr\u00edguez Revolorio, An\u00edbal Archila P\u00e9rez y Miguel \u00c1ngel L\u00f3pez Calo, y que desemboc\u00f3 en una sentencia condenatoria a pena de muerte por varios delitos, entre los cuales estaba el asesinato.\n\nEn su Sentencia la CorteIDH consider\u00f3 que Guatemala no era responsable respecto por la imposici\u00f3n de la pena de muerte a los Sres. Rodriguez Revolorio y Lopez Calo, debido a que su pena fue conmutada por otra privativa de libertad. Respecto del Sr. Archila P\u00e9rez \u2013aun cuando la pena de muerte no fue nunca ejecutada-, la aplicaci\u00f3n de criterios como la peligrosidad tanto en la tipificaci\u00f3n de los hechos cuanto en la determinaci\u00f3n de la sanci\u00f3n resulta incompatible con el principio de legalidad. \n\nAdicionalmente, la CorteIDH evalu\u00f3 las condiciones carcelarias durante la detenci\u00f3n de las victimas y su sometimiento al corredor de la muerte. \n", - "values": [ - "Pena de muerte", - "Condiciones de detenci\u00f3n", - "Acceso al recurso" - ] - }, - { - "text": "Los hechos del caso se relacionan con la situaci\u00f3n de un grupo de personas condenadas y privadas de libertad en la Provincia de Neuqu\u00e9n, quienes fueron trasladados a cumplir su pena en unidades carcelarias distantes a m\u00e1s de 1000 kil\u00f3metros del lugar donde reside su familia y se encuentran sus defensores y los \u00f3rganos encargados de la ejecuci\u00f3n de la pena. \n\nEn su Sentencia la CorteIDH desarroll\u00f3 est\u00e1ndares sobre el derecho a la integridad personal de las personas privadas de libertad, en particular, en relaci\u00f3n con la finalidad de la pena. \n\nAsimismo analiz\u00f3 afectaciones a la vida privada y al derecho a la protecci\u00f3n a la vida familiar de las personas privadas de libertad y de sus familiares como consecuencia de traslados arbitrarios y desproporcionados. \n", - "values": [ - "Privaci\u00f3n de libertad", - "Familia" - ] - }, - { - "text": "Los hechos del caso se refieren a la desaparici\u00f3n forzada y tortura de Juan Arrom y Anuncio Mart\u00ed, ocurrida en enero de 2002, ambos dirigentes del partido pol\u00edtico Patria Libre y la impunidad en que quedaron los hechos por las deficiencias en la investigaci\u00f3n llevada adelante por el Ministerio P\u00fablico. \n\nLa CorteIDH consider\u00f3 que la prueba ofrecida para demostrar la participaci\u00f3n estatal en los hechos denunciados resultan insuficientes para configurar la responsabilidad internacional del Paraguay. Adicionalmente consider\u00f3 que la investigaci\u00f3n adelantada no presentaba omisiones manifiestas que pudieran implicar violaciones a la Convenci\u00f3n Americana. ", - "values": [ - "Tortura y tratos crueles, inhumanos o degradantes", - "Desaparici\u00f3n forzada" - ] - }, - { - "text": "Los hechos del caso se refieren a vulneraci\u00f3n de garant\u00edas en el proceso penal llevado a cabo en contra Manuel Mart\u00ednez Coronado, y que desemboc\u00f3 en una sentencia condenatoria a pena de muerte por el delito de homicidio.\n\nLa Corte IDH en su Sentencia estableci\u00f3 la incompatibilidad con el principio de legalidad del criterio de peligrosidad del agente, aplicado tanto en la tipificaci\u00f3n del delito cuanto en la determinaci\u00f3n de la pena. Adicionalmente estableci\u00f3 est\u00e1ndares respecto del derecho de defensa.", - "values": [ - "Defensa t\u00e9cnica", - "Pena de muerte" - ] - }, - { - "text": "Los hechos del caso se refieren a vulneraci\u00f3n de garant\u00edas en el proceso penal llevado a cabo en contra el Sr. Ruiz Fuentes. Tiempo despu\u00e9s de su condena, el Sr. Ruiz Fuentes se fug\u00f3 de la c\u00e1rcel \u201cEl Infiernito\u201d y fue ejecutado extrajudicialmente en el marco del operativo conocido como \u201cPlan Gavil\u00e1n\u201d. \n\nEn su Sentencia, la CorteIDH estableci\u00f3 la responsabilidad de Guatemala por la violaci\u00f3n del derecho a la vida al considerar probada la participaci\u00f3n de agentes estatales. Adicionalmente, considero las torturas sufridas por el Sr. Ruiz Fuentes como consecuencia del maltrato sufrido durante su detenci\u00f3n y su sometimiento al \u201ccorredor de la muerte\u201d, las violaciones al derecho a la defensa t\u00e9cnica y a recurrir la sentencia. ", - "values": [ - "Acceso al recurso", - "Pena de muerte", - "Tortura y tratos crueles, inhumanos o degradantes", - "Defensa t\u00e9cnica" - ] - }, - { - "text": "Con las condiciones de detenci\u00f3n del Sr. Hern\u00e1ndez quien se encontraba en r\u00e9gimen de prisi\u00f3n preventiva. Durante su detenci\u00f3n contrajo meningitis, sin que se le haya dado la atenci\u00f3n m\u00e9dica adecuada. \n\nEn su Sentencia, la CorteIDH aborda por primera vez de manera aut\u00f3noma y directa la violaci\u00f3n del derecho a la salud en el contexto de personas privadas de la libertad. \nAdicionalmente la CorteIDH analiz\u00f3 violaciones a la libertad personal y la presunci\u00f3n de inocencia como consecuencia del r\u00e9gimen de prisi\u00f3n preventiva al que estuvo sometido el Sr. Hern\u00e1ndez. \n", - "values": [ - "Salud", - "Privaci\u00f3n de libertad", - "Prisi\u00f3n preventiva" - ] - }, - { - "text": "Los hechos del caso se refieren a la ejecuci\u00f3n extrajudicial por parte de miembros del Ej\u00e9rcito del joven Mirey Trueba Arciniega en agosto de 1998 en el estado de Chihuahua. Algunos d\u00edas antes del hecho 400 militares hab\u00edan llegado al lugar con el fin de combatir el narcotr\u00e1fico. \n\nEn su Sentencia, la CorteIDH homologa un acuerdo de soluci\u00f3n amistosa en el que Mexico reconoce su responsabilidad por lo ocurrido y compromete reparaciones para las v\u00edctimas. \n", - "values": [ - "Ejecuci\u00f3n extrajudicial" - ] - }, - { - "text": "Los hechos del caso se relaciona con la detenci\u00f3n ilegal y arbitraria por parte de funcionarios judiciales de Azul Rojas Marin. Durante la misma y luego estando detenida fue torturada y humillada en raz\u00f3n de su orientaci\u00f3n sexual, sin que los hechos fueran investigados debidamente. \n\nEn su Sentencia, la Corte IDH desarroll\u00f3 est\u00e1ndares sobre formas de violencia y discriminaci\u00f3n contra personas LGBTI, aplicando los mismos en el an\u00e1lisis respecto de la privaci\u00f3n de la libertad a la que fue sometida Rojas Marin. Adicionalmente estableci\u00f3 violaciones a la prohibici\u00f3n de tortura, como consecuencia de la violencia sexual ejercida por agentes estatales, encuadrando las conductas en la categor\u00eda de \u201cdelito de odio\u201d, afectando de ese modo no solo a Rojas Marin sino al colectivo LGBTI\n\nPor otra parte, evalu\u00f3 la actuaci\u00f3n del Estado en relaci\u00f3n con la investigaci\u00f3n a la luz de los est\u00e1ndares de debida diligencia, poniendo en evidencia los actos de revictimizacion que ocurrieron durante la misma. \n", - "values": [ - "Discriminaci\u00f3n", - "Estereotipos", - "Orientaci\u00f3n sexual", - "Privaci\u00f3n de libertad", - "Tortura y tratos crueles, inhumanos o degradantes", - "Violencia de g\u00e9nero" - ] - }, - { - "text": "Los hechos del caso se relacionan con el reclutamiento y muerte del menor de edad Vicente Ariel Noguera en instalaciones militares, en circunstancias que no fueron debidamente esclarecidas. \n\nEn su Sentencia, la CorteIDH aplic\u00f3 est\u00e1ndares sobre violaciones al derecho a la vida asociados a la obligaci\u00f3n de contar con servicios de atenci\u00f3n a la salud, con enfoque en la obligaci\u00f3n general de protecci\u00f3n de la ni\u00f1ez. ", - "values": [ - "Ni\u00f1ez", - "Servicio militar" - ] - }, - { - "text": "Los hechos que fundamentan la solicitud de protecci\u00f3n se refieren a las graves amenazas a la vida y a la integridad personal sufridas por las v\u00edctimas y familiares reconocidos en la Sentencia de la CorteIDH dictada en la causa principal el 13 de febrero de 2019, como consecuencia de la reapertura de la investigaci\u00f3n por violaciones sexuales. Por otro lado, tambi\u00e9n fue denunciada la situaci\u00f3n de vulnerabilidad en que quedar\u00edan las v\u00edctimas de aprobarse una amnist\u00eda en favor de los perpetradores. ", - "values": [ - "Amenazas y hostigamientos" - ] - } -] \ No newline at end of file diff --git a/src/extractors/text_to_multi_option_extractor/labeled_data/cejil_descriptors/options.json b/src/extractors/text_to_multi_option_extractor/labeled_data/cejil_descriptors/options.json deleted file mode 100644 index 2e204fa..0000000 --- a/src/extractors/text_to_multi_option_extractor/labeled_data/cejil_descriptors/options.json +++ /dev/null @@ -1,70 +0,0 @@ -[ - "Desaparición forzada", - "Ejecución extrajudicial", - "Libertad de expresión", - "Amenazas y hostigamientos", - "Testigo", - "Privación de libertad", - "Tortura y tratos crueles, inhumanos o degradantes", - "Jurisdicción militar", - "Prisión preventiva", - "Defensores/as de derechos humanos", - "Derechos laborales", - "Ley antiterrorista", - "Secreto médico", - "Medio ambiente", - "Libertad de asociación", - "Derechos políticos", - "Violencia de género", - "Pueblos indígenas", - "Acceso al recurso", - "Jueces/zas", - "Destitución de funcionario público", - "Condiciones de detención", - "Maras", - "Discriminación", - "Afrodescendientes", - "Periodistas", - "Salud", - "Defensa técnica", - "Pena de muerte", - "Propiedad", - "Derecho a consulta", - "Proceso administrativo", - "Niñez", - "Identidad", - "Estado de excepción", - "Derechos reproductivos", - "Acceso a la información pública", - "Desplazamiento forzado", - "Extradición", - "Asistencia consular", - "Falta de agotamiento de recursos internos", - "Uso de la fuerza", - "Interceptación de comunicaciones", - "Amnistía", - "Migrantes", - "Democracia", - "Esclavitud", - "Sindicalismo", - "Tutela judicial efectiva", - "Familia", - "Nacionalidad", - "Orientación sexual", - "Estereotipos", - "Lengua materna", - "Pobreza", - "Derecho humanitario", - "Servicio militar", - "Refugiados/as", - "Corrupción", - "Costas judiciales", - "Jurisdicción especial", - "Discapacidad", - "Educación", - "Personas mayores", - "Acceso a informacion", - "Crimenes contra la humanidad", - "Seguridad social", - "Acción civil" -] diff --git a/src/extractors/text_to_multi_option_extractor/labeled_data/cejil_document_type/labels.json b/src/extractors/text_to_multi_option_extractor/labeled_data/cejil_document_type/labels.json deleted file mode 100644 index a1ec250..0000000 --- a/src/extractors/text_to_multi_option_extractor/labeled_data/cejil_document_type/labels.json +++ /dev/null @@ -1,8854 +0,0 @@ -[ - { - "text": "VOTO RAZONADO DEL JUEZ SERGIO GARC\u00cdA RAM\u00cdREZ A PROP\u00d3SITO DE LA SENTENCIA DE LA CORTE INTERAMERICANA DE DERECHOS HUMANOS EN EL CASO VARGAS ARECO VS. PARAGUAY DE DE SEPTIEMBRE DE En este Voto s\u00f3lo me ocupar\u00e9 en un punto de la Sentencia dictada por la Corte Interamericana de Derechos Humanos en el Caso Vargas Areco vs. Paraguay a saber la reacci\u00f3n penal con respecto a la privaci\u00f3n de la vida de Gerardo Vargas Areco que se tradujo en dos procesos del orden criminal uno ante la justicia militar y", - "values": [ - "Voto Separado" - ] - }, - { - "text": "Resoluci\u00f3n de la Corte Interamericana de Derechos Humanos de de noviembre de Caso Goibur\u00fa y otros Vs. Paraguay Supervisi\u00f3n de Cumplimiento de Sentencia Visto La Sentencia de fondo reparaciones y costas de de septiembre de en adelante la Sentencia dictada por la Corte Interamericana de Derechos Humanos en adelante la Corte Interamericana la Corte o el Tribunal mediante la cual dispuso por unanimidad que El Estado debe realizar inmediatamente las debidas diligencias para activar y en un ", - "values": [ - "Supervisi\u00f3n de cumplimiento de Sentencia" - ] - }, - { - "text": "RESOLUCI\u00d3N DE LA CORTE INTERAMERICANA DE DERECHOS HUMANOS DE DE JULIO DE CASO DE LAS HERMANAS SERRANO CRUZ VS. EL SALVADOR SUPERVISI\u00d3N DE CUMPLIMIENTO DE SENTENCIA VISTOS La Sentencia de fondo reparaciones y costas en adelante la Sentencia dictada por la Corte Interamericana de Derechos Humanos en adelante la Corte la Corte Interamericana o el Tribunal el de marzo de La Resoluci\u00f3n sobre cumplimiento de sentencia que emiti\u00f3 la Corte el de septiembre de en la cual DECLAR\u00d3 Que de con lo ", - "values": [ - "Supervisi\u00f3n de cumplimiento de Sentencia" - ] - }, - { - "text": "RESOLUCI\u00d3N DE LA CORTE INTERAMERICANA DE DERECHOS HUMANOS DE DE NOVIEMBRE DE CASO YVON NEPTUNE VS. HAIT\u00cd SUPERVISI\u00d3N DE CUMPLIMIENTO DE SENTENCIA VISTO La Sentencia de fondo reparaciones y costas en adelante la Sentencia dictada por la Corte Interamericana de Derechos Humanos en adelante la Corte la Corte Interamericana o el Tribunal el de mayo de con relaci\u00f3n al caso Yvon Neptune. La Corte declar\u00f3 responsable internacionalmente a la Rep\u00fablica de Hait\u00ed en adelante el Estado o Hait\u00ed inter ", - "values": [ - "Supervisi\u00f3n de cumplimiento de Sentencia" - ] - }, - { - "text": "RESOLUCI\u00d3N DE LA CORTE INTERAMERICANA DE DERECHOS HUMANOS DE DE SEPTIEMBRE DE MEDIDAS PROVISIONALES ASUNTO JAMES Y OTROS VISTOS La adopci\u00f3n de Medidas Provisionales ordenada por la Corte Interamericana de Derechos Humanos en adelante la Corte la Corte Interamericana o el Tribunal en el asunto James y otros relacionada con la situaci\u00f3n de peligro inminente y vulnerabilidad a un da\u00f1o irreparable de Wenceslaus James Anderson Noel Anthony Garcia Christopher Bethel Darrin Roger Thomas Haniff ", - "values": [ - "Medidas Provisionales" - ] - }, - { - "text": "VOTO FUNDAMENTADO DO JUIZ A. A. CAN\u00c7ADO TRINDADE Ao votar a favor da ado\u00e7\u00e3o por parte da Corte Interamericana de Direitos Humanos da presente Senten\u00e7a no caso Yatama versus Nicar\u00e1gua vejome na obriga\u00e7\u00e3o de agregar este Voto Fundamentado para destacar dois pontos que me parecem merecedores de aten\u00e7\u00e3o especial. Em primeiro lugar o decidido pela Corte ao desconsiderar a terceira exce\u00e7\u00e3o preliminar interposta pelo Estado reflete o aperfei\u00e7oamento do procedimento perante o Tribunal nos \u00faltimos anos", - "values": [ - "Voto Separado" - ] - }, - { - "text": "Resoluci\u00f3n de la Corte Interamericana de Derechos Humanos de de julio de Caso Guti\u00e9rrez Soler Vs. Colombia. Medidas Provisionales VISTOS La Resoluci\u00f3n dictada por la Corte Interamericana de Derechos Humanos en adelante la Corte la Corte Interamericana o el Tribunal el de marzo de mediante la cual se ordenaron las medidas provisionales en el presente caso. La Sentencia de fondo reparaciones y costas emitida por la Corte Interamericana el de septiembre de en este caso mediante la cual ", - "values": [ - "Medidas Provisionales" - ] - }, - { - "text": "Corte Interamericana de Derechos Humanos Caso de los Ni\u00f1os de la Calle Villagr\u00e1n Morales y otros Vs. Guatemala Sentencia de de mayo de Reparaciones y Costas En el caso de los Ni\u00f1os de la Calle caso Villagr\u00e1n Morales y otros vs. Guatemala la Corte Interamericana de Derechos Humanos en adelante la Corte la Corte Interamericana o el Tribunal integrada por los siguientes jueces Ant\u00f4nio A. Can\u00e7ado Trindade Presidente Hern\u00e1n Salgado Pesantes Juez Oliver Jackman Juez Alirio Abreu Burelli Juez Sergio", - "values": [ - "Reparaciones", - "Costas" - ] - }, - { - "text": "RESOLUCI\u00d3N DE LA CORTE INTERAMERICANA DE DERECHOS HUMANOS DE DE NOVIEMBRE DE CASO L\u00d3PEZ MENDOZA VS. VENEZUELA SUPERVISI\u00d3N DE CUMPLIMIENTO DE SENTENCIA VISTO La Sentencia de fondo reparaciones y costas en adelante la Sentencia emitida por la Corte Interamericana de Derechos Humanos en adelante la Corte o el Tribunal el de septiembre de La Corte declar\u00f3 la responsabilidad internacional de la Rep\u00fablica Bolivariana de Venezuela en adelante el Estado o Venezuela por la vulneraci\u00f3n a los a ", - "values": [ - "Supervisi\u00f3n de cumplimiento de Sentencia" - ] - }, - { - "text": "Resoluci\u00f3n de la Corte Interamericana de Derechos Humanos de de agosto de Caso Durand y Ugarte Vs. Per\u00fa Supervisi\u00f3n de Cumplimiento de Sentencia Visto La Sentencia de Reparaciones y Costas en adelante la Sentencia dictada por la Corte Interamericana de Derechos Humanos en adelante la Corte la Corte Interamericana o el Tribunal el de diciembre de mediante la cual Decidi\u00f3 Por unanimidad Que aprueba el acuerdo en los t\u00e9rminos de la Sentencia sobre reparaciones suscrito el de noviembre de ", - "values": [ - "Supervisi\u00f3n de cumplimiento de Sentencia" - ] - }, - { - "text": "RESOLUCI\u00d3N DE LA CORTE INTERAMERICANA DE DERECHOS HUMANOS DE DE SEPTIEMBRE DE MEDIDAS PROVISIONALES ADOPTADAS POR LA CORTE INTERAMERICANA DE DERECHOS HUMANOS RESPECTO DE LA REP\u00daBLICA DE GUATEMALA CASO CARPIO NICOLLE VISTOS La Resoluci\u00f3n del Presidente de la Corte Interamericana de Derechos Humanos en adelante el Presidente de la Corte de de junio de mediante la cual Solicit\u00f3 al Gobierno de la Rep\u00fablica de Guatemala que adoptara sin dilaci\u00f3n cuantas medidas fueran necesarias que aseguraran", - "values": [ - "Medidas Provisionales" - ] - }, - { - "text": "RESOLUCI\u00d3N DEL PRESIDENTE DE LA CORTE INTERAMERICANA DE DERECHOS HUMANOS DE DE NOVIEMBRE DE CASO MALDONADO ORD\u00d3\u00d1EZ VS. GUATEMALA VISTO El escrito de sometimiento del caso y el Informe de Fondo de la Comisi\u00f3n Interamericana de Derechos Humanos en adelante la Comisi\u00f3n Interamericana o la Comisi\u00f3n el escrito de solicitudes argumentos y pruebas en adelante el escrito de solicitudes y argumentos de los representantes de la presunta v\u00edctima en adelante los representantes y el escrito de al del ", - "values": [ - "Otros" - ] - }, - { - "text": "Resoluci\u00f3n de la Corte Interamericana de Derechos Humanos De julio de Caso de la Masacre Plan de S\u00e1nchez Vs. Guatemala Supervisi\u00f3n de Cumplimiento de Sentencia Visto La Sentencia de reparaciones y costas en adelante la Sentencia de reparaciones o la Sentencia dictada por la Corte Interamericana de Derechos Humanos en adelante la Corte o el Tribunal el de noviembre de La Resoluci\u00f3n de Supervisi\u00f3n de Cumplimiento de Sentencia de la Corte de de noviembre de mediante la cual inter alia lo ", - "values": [ - "Supervisi\u00f3n de cumplimiento de Sentencia" - ] - }, - { - "text": "RESOLUCI\u00d3N DEL PRESIDENTE DE LA CORTE INTERAMERICANA DE DERECHOS HUMANOS DE FEBRERO DE SUPERVISI\u00d3N DE CUMPLIMIENTO DE LAS MEDIDAS DE REPARACI\u00d3N SOBRE ATENCI\u00d3N M\u00c9DICA Y PSICOL\u00d3GICA ORDENADAS EN NUEVE CASOS COLOMBIANOS CONVOCATORIA DE AUDIENCIA PRIVADA VISTO La resoluci\u00f3n de convocatoria de audiencia en el marco de la supervisi\u00f3n de cumplimiento emitida por la Corte Interamericana de Derechos Humanos en adelante la Corte la Corte Interamericana o el Tribunal el de abril de en relaci\u00f3n con ", - "values": [ - "Supervisi\u00f3n de cumplimiento de Sentencia" - ] - }, - { - "text": "Resoluci\u00f3n de la Presidenta de la Corte Interamericana de Derechos Humanos De de febrero de Caso Baena Ricardo y otros Trabajadores Vs. Panam\u00e1 Supervisi\u00f3n de Cumplimiento de Sentencia VISTO La Sentencia de fondo reparaciones y costas que emiti\u00f3 la Corte Interamericana de Derechos Humanos en adelante la Corte la Corte Interamericana o el Tribunal en el caso Baena Ricardo y otros el de febrero de en adelante la Sentencia. Las Resoluciones sobre el cumplimiento de la Sentencia emitidas por ", - "values": [ - "Supervisi\u00f3n de cumplimiento de Sentencia" - ] - }, - { - "text": "VOTO INDIVIDUAL DISIDENTE DEL JUEZ EDUARDO VIO GROSSI CASO D\u00cdAZ PE\u00d1A VS. VENEZUELA SENTENCIA DE DE JUNIO DE Excepci\u00f3n preliminar fondo reparaciones y costas Introducci\u00f3n. Se emite el presente voto individual disidente con respecto de la Sentencia indicada en el t\u00edtulo en adelante e indistintamente la Sentencia en atenci\u00f3n a que el suscrito es del parecer que proced\u00eda acoger respecto de todo el presente caso y no solo en forma parcial como acontece en autos la excepci\u00f3n preliminar interpuesta ", - "values": [ - "Voto Separado" - ] - }, - { - "text": "RESOLUCI\u00d3N DE LA CORTE INTERAMERICANA DE DERECHOS HUMANOS DEL DE JUNIO DE MEDIDAS PROVISIONALES SOLICITADAS POR LA COMISI\u00d3N INTERAMERICANA DE DERECHOS HUMANOS RESPECTO DE GUATEMALA CASO COLOTENANGO La Corte Interamericana de Derechos Humanos integrada de la siguiente manera Rafael Nieto Navia Presidente H\u00e9ctor FixZamudio Vicepresidente Alejandro Montiel Arg\u00fcello Juez M\u00e1ximo Pacheco G\u00f3mez Juez Hern\u00e1n Salgado Pesantes Juez presentes adem\u00e1s Manuel E. Ventura Robles Secretario Ana Mar\u00eda Reina ", - "values": [ - "Medidas Provisionales" - ] - }, - { - "text": "RESOLUCI\u00d3N DE LA CORTE INTERAMERICANA DE DERECHOS HUMANOS DE DE SEPTIEMBRE DE MEDIDAS PROVISIONALES RESPECTO DE LA REP\u00daBLICA BOLIVARIANA DE VENEZUELA CASO LUISIANA R\u00cdOS Y OTROS RADIO CARACAS TELEVISI\u00d3N RCTV VISTOS La Resoluci\u00f3n de la Corte Interamericana de Derechos Humanos en adelante la Corte Interamericana la Corte o el Tribunal de de noviembre de respecto del Estado de Venezuela Rep\u00fablica Bolivariana de Venezuela en adelante el Estado o Venezuela mediante la cual resolvi\u00f3 Requerir al ", - "values": [ - "Medidas Provisionales" - ] - }, - { - "text": "RESOLUCI\u00d3N DE LA CORTE INTERAMERICANA DE DERECHOS HUMANOS DE DE FEBRERO DE MEDIDAS PROVISIONALES LUISIANA R\u00cdOS y OTROS vs. VENEZUELA VISTOS La Resoluci\u00f3n de la Corte Interamericana de Derechos Humanos en adelante la Corte Interamericana la Corte o el Tribunal de de noviembre de relativa a las Medidas Provisionales solicitadas por la Comisi\u00f3n Interamericana de Derechos Humanos en adelante la Comisi\u00f3n Interamericana o la Comisi\u00f3n en favor de los se\u00f1ores Luisiana R\u00edos Armando Amaya Antonio ", - "values": [ - "Medidas Provisionales" - ] - }, - { - "text": "RESOLUCI\u00d3N DE LA CORTE INTERAMERICANA DE DERECHOS HUMANOS DE DE JULIO DE MEDIDAS PROVISIONALES RAXCAC\u00d3 REYES Y OTROS VISTOS La Resoluci\u00f3n de la Corte Interamericana de Derechos Humanos en adelante la Corte la Corte Interamericana o el Tribunal dictada el de agosto de cuyo punto resolutivo primero resolvi\u00f3 Requerir al Estado que adopte sin dilaci\u00f3n las medidas necesarias para proteger la vida de Ronald Ernesto Raxcac\u00f3 Reyes Hugo Humberto Ruiz Fuentes Bernardino Rodr\u00edguez Lara y Pablo Ruiz", - "values": [ - "Medidas Provisionales" - ] - }, - { - "text": "Corte Interamericana de Derechos Humanos Caso Acosta Calder\u00f3n Vs. Ecuador Sentencia de de junio de Fondo Reparaciones y Costas En el caso Acosta Calder\u00f3n la Corte Interamericana de Derechos Humanos en adelante la Corte la Corte Interamericana o el Tribunal integrada por los siguientes jueces Sergio Garc\u00eda Ram\u00edrez Presidente Alirio Abreu Burelli Vicepresidente Oliver Jackman Juez Ant\u00f4nio A. Can\u00e7ado Trindade Juez Cecilia Medina Quiroga Jueza Manuel E. Ventura Robles Juez Diego Garc\u00edaSay\u00e1n Juez ", - "values": [ - "Fondo", - "Reparaciones", - "Costas" - ] - }, - { - "text": "VOTO CONCORDANTE DO JUIZ AA. CAN\u00c7ADO TRINDADE Coincido plenamente com a presente Senten\u00e7a da Corte Interamericana sobre exce\u00e7\u00e3o preliminar que reflete sua jurisprudence constante e a tese que venho sustentando h\u00e1 mais de duas d\u00e9cadas a saber que no \u00e2mbito do Direito Internacional dos Direitos Humanos a exce\u00e7\u00e3o preliminar de n\u00e3oesgotamento de recursos internos \u00e9 de pura admissibilidade a ser interposta pelo Estado demandado in limite litis sem o que se presume sua ren\u00fancia t\u00e1cita por parte do ", - "values": [ - "Voto Separado" - ] - }, - { - "text": "RESOLUCI\u00d3N DE LA CORTE INTERAMERICANA DE DERECHOS HUMANOS DE DE FEBRERO DE MEDIDAS PROVISIONALES RESPECTO DE COLOMBIA CASO CABALLERO DELGADO Y SANTANA VISTO Las Sentencias de fondo y de reparaciones y costas dictadas en el caso Caballero Delgado y Santana por la Corte Interamericana de Derechos Humanos en adelante la Corte Interamericana la Corte o el Tribunal el de diciembre de y el de enero de respectivamente. Las Resoluciones de la Corte Interamericana de de diciembre de de de ", - "values": [ - "Medidas Provisionales" - ] - }, - { - "text": "Resoluci\u00f3n del Presidente de la Corte Interamericana de Derechos Humanos de de Diciembre de Medidas Provisionales respecto de Colombia Caso Caballero Delgado y Santana Vs. Colombia VISTO Las Resoluciones de la Corte Interamericana de Derechos Humanos en adelante la Corte Interamericana o el Tribunal de de diciembre de de enero de de abril de de septiembre de de junio de y de julio de Mediante esta \u00faltima el Tribunal resolvi\u00f3 Requerir al Estado que mantenga y adopte las medidas ", - "values": [ - "Medidas Provisionales" - ] - }, - { - "text": "Corte Interamericana de Derechos Humanos Caso Benjamin y otros Vs. Trinidad y Tobago Sentencia de de septiembre de Excepciones Preliminares En el caso Benjam\u00edn y otros la Corte Interamericana de Derechos Humanos en adelante la Corte Interamericana la Corte o el Tribunal integrada por los siguientes jueces Ant\u00f4nio A. Can\u00e7ado Trindade Presidente M\u00e1ximo Pacheco G\u00f3mez Vicepresidente Hern\u00e1n Salgado Pesantes Juez Oliver Jackman Juez Alirio Abreu Burelli Juez Sergio Garc\u00eda Ram\u00edrez Juez y Carlos de ", - "values": [ - "Excepciones Preliminares" - ] - }, - { - "text": "RESOLUCI\u00d3N DE LA CORTE INTERAMERICANA DE DERECHOS HUMANOS DE DE AGOSTO DE SOLICITUD DE MEDIDAS PROVISIONALES PRESENTADA POR LA COMISI\u00d3N INTERAMERICANA DE DERECHOS HUMANOS RESPECTO DE GUATEMALA CASO RAXCAC\u00d3 Y OTROS VISTOS El escrito de de agosto de y sus anexos mediante los cuales la Comisi\u00f3n Interamericana de Derechos Humanos en adelante la Comisi\u00f3n o la Comisi\u00f3n Interamericana someti\u00f3 a la Corte Interamericana de Derechos Humanos en adelante la Corte la Corte Interamericana o el Tribunal ", - "values": [ - "Medidas Provisionales" - ] - }, - { - "text": "VOTO RAZONADO DEL JUEZ SERGIO GARC\u00cdA RAMIREZ EN RELACI\u00d3N CON LA SENTENCIA DE LA CORTE INTERAMERICANA DE DERECHOS HUMANOS EN EL CASO ANZUALDO CASTRO Vs. PER\u00da DE DE SEPTIEMBRE DE La Corte Interamericana ha realizado un excelente desarrollo jurisprudencial en una materia particularmente relevante para los derechos humanos transitada en m\u00faltiples ocasiones la desaparici\u00f3n forzada de personas a la que se refiere la Sentencia del caso Anzualdo Castro dictada el de septiembre de que acompa\u00f1o con ", - "values": [ - "Voto Separado" - ] - }, - { - "text": "VOTO RAZONADO CONCURRENTE DEL JUEZ ALBERTO P\u00c9REZ P\u00c9REZ EN EL CASO M\u00c9MOLI VS. ARGENTINA Concuerdo plenamente con todos los t\u00e9rminos de la sentencia dictada por la Corte de modo que el presente voto razonado se dirige a poner de relieve algunos aspectos que considero particularmente importantes. I. Principios generales establecidos en la jurisprudencia de la Corte En el presente caso como en varios otros decididos anteriormente por la Corte se plantea el tema de la relaci\u00f3n entre el derecho a ", - "values": [ - "Voto Separado" - ] - }, - { - "text": "VOTO CONCURRENTE DE LA JUEZA C. MEDINA QUIROGA Estoy en general de acuerdo con la decisi\u00f3n de la Corte en relaci\u00f3n con las violaciones a los derechos humanos determinados en la sentencia precedente. Sin embargo tengo problemas con los fundamentos que la Corte ofrece para decidir que se han violado los art\u00edculos y de la Convenci\u00f3n Americana de la misma manera que los tuve ya en ocasiones anteriores A. En cuanto al art\u00edculo Analizando la violaci\u00f3n de los art\u00edculos y la Corte sostiene en el", - "values": [ - "Voto Separado" - ] - }, - { - "text": "VOTO CONCURRENTE DEL JUEZ JACKMAN La presente sentencia con la que concurro en su totalidad es de especial importancia por al menos tres razones su reafirmaci\u00f3n de que la pr\u00e1ctica de imponer penas corporales por parte de los Estados Partes a la Convenci\u00f3n Americana de Derechos Humanos la Convenci\u00f3n es un incumplimiento flagrante de dicho tratado su insistencia en la absoluta necesidad de que los Estados respeten sus obligaciones establecidas en el tratado y su rechazo de la t\u00e9trica herramienta ", - "values": [ - "Voto Separado" - ] - }, - { - "text": "Corte Interamericana de Derechos Humanos Caso Castillo Petruzzi y otros Vs. Per\u00fa Sentencia de de mayo de Fondo Reparaciones y Costas En el caso Castillo Petruzzi y otros la Corte Interamericana de Derechos Humanos en adelante la Corte la Corte Interamericana o el Tribunal integrada por los siguientes jueces Hern\u00e1n Salgado Pesantes Presidente Ant\u00f4nio A. Can\u00e7ado Trindade Vicepresidente M\u00e1ximo Pacheco G\u00f3mez Juez Oliver Jackman Juez Alirio Abreu Burelli Juez Sergio Garc\u00eda Ram\u00edrez Juez Carlos de ", - "values": [ - "Fondo", - "Reparaciones", - "Costas" - ] - }, - { - "text": "CORTE INTERAMERICANA DE DERECHOS HUMANOS CASO DE LA MASACRE DE MAPIRIP\u00c1N VS. COLOMBIA SENTENCIA DE SEPTIEMBRE DE En el caso de la Masacre de Mapirip\u00e1n la Corte Interamericana de Derechos Humanos en adelante la Corte Interamericana la Corte o el Tribunal integrada por los siguientes jueces Sergio Garc\u00eda Ram\u00edrez Presidente Alirio Abreu Burelli Vicepresidente Oliver Jackman Juez Ant\u00f4nio A. Can\u00e7ado Trindade Juez Manuel E. Ventura Robles Juez y Gustavo Zafra Rold\u00e1n Juez ad hoc presentes adem\u00e1s ", - "values": [ - "Fondo", - "Reparaciones", - "Costas" - ] - }, - { - "text": "CORTE INTERAMERICANA DE DERECHOS HUMANOS CASO DE LAS COMUNIDADES AFRODESCENDIENTES DESPLAZADAS DE LA CUENCA DEL R\u00cdO CACARICA OPERACI\u00d3N G\u00c9NESIS VS. COLOMBIA SENTENCIA DE DE NOVIEMBRE DE Excepciones Preliminares Fondo Reparaciones y Costas En el Caso de las Comunidades afrodescendientes desplazadas de la cuenca del r\u00edo Cacarica Operaci\u00f3n G\u00e9nesis la Corte Interamericana de Derechos Humanos en adelante la Corte Interamericana la Corte o el Tribunal integrada por los siguientes Jueces Diego E. ", - "values": [ - "Costas", - "Fondo", - "Excepciones Preliminares", - "Reparaciones" - ] - }, - { - "text": "Corte Interamericana de Derechos Humanos Caso Las Palmeras Vs. Colombia Sentencia de de diciembre de Fondo En el caso Las Palmeras la Corte Interamericana de Derechos Humanos en adelante la Corte o la Corte Interamericana integrada de la siguiente manera Ant\u00f4nio A. Can\u00e7ado Trindade Presidente M\u00e1ximo Pacheco G\u00f3mez Vicepresidente Hern\u00e1n Salgado Pesantes Juez Alirio Abreu Burelli Juez Sergio Garc\u00eda Ram\u00edrez Juez y Julio A. Barberis Juez ad hoc presente adem\u00e1s Manuel E. Ventura Robles Secretario ", - "values": [ - "Fondo" - ] - }, - { - "text": "Corte Interamericana de Derechos Humanos Caso Loayza Tamayo Vs. Per\u00fa Sentencia de de septiembre de Fondo En el caso Loayza Tamayo la Corte Interamericana de Derechos Humanos integrada por los siguientes jueces Hern\u00e1n Salgado Pesantes Presidente Ant\u00f4nio A. Can\u00e7ado Trindade Vicepresidente H\u00e9ctor FixZamudio Juez Alejandro Montiel Arg\u00fcello Juez M\u00e1ximo Pacheco G\u00f3mez Juez Oliver Jackman Juez y Alirio Abreu Burelli Juez presentes adem\u00e1s Manuel E. Ventura Robles Secretario y V\u00edctor M. Rodr\u00edguez ", - "values": [ - "Fondo" - ] - }, - { - "text": "RESOLUCI\u00d3N DEL PRESIDENTE DE LA CORTE INTERAMERICANA DE DERECHOS HUMANOS DE DE ABRIL DE SOLICITUD DE MEDIDAS PROVISIONALES DE LA COMISI\u00d3N INTERAMERICANA DE DERECHOS HUMANOS RESPECTO DE LA REP\u00daBLICA DE COSTA RICA CASO DEL PERI\u00d3DICO LA NACI\u00d3N VISTO El escrito de la Comisi\u00f3n Interamericana de Derechos Humanos en adelante la Comisi\u00f3n o la Comisi\u00f3n Interamericana de de marzo de mediante el cual present\u00f3 una solicitud de medidas provisionales a favor de los se\u00f1ores Mauricio Herrera Ulloa y Fern\u00e1n", - "values": [ - "Medidas Provisionales" - ] - }, - { - "text": "RESOLUCI\u00d3N DE LA CORTE INTERAMERICANA DE DERECHOS HUMANOS DE DE ABRIL DE SOLICITUD DE MEDIDAS PROVISIONALES PRESENTADA POR LA COMISI\u00d3N INTERAMERICANA DE DERECHOS HUMANOS RESPECTO DE VENEZUELA ASUNTO BELFORT IST\u00daRIZ Y OTROS VISTO El escrito de la Comisi\u00f3n Interamericana de Derechos Humanos en adelante la Comisi\u00f3n Interamericana o la Comisi\u00f3n de de febrero de y sus anexos mediante los cuales someti\u00f3 a la Corte Interamericana de Derechos Humanos en adelante la Corte Interamericana la Corte o ", - "values": [ - "Medidas Provisionales" - ] - }, - { - "text": "CORTE INTERAMERICANA DE DERECHOS HUMANOS CASO DEL TRIBUNAL CONSTITUCIONAL CAMBA CAMPOS Y OTROS VS. ECUADOR SENTENCIA DE DE AGOSTO DE Excepciones Preliminares Fondo Reparaciones y Costas En el caso Tribunal Constitucional Camba Campos y otros la Corte Interamericana de Derechos Humanos en adelante la Corte Interamericana la Corte o el Tribunal integrada por los siguientes jueces Diego Garc\u00edaSay\u00e1n Presidente Manuel E. Ventura Robles Vicepresidente Alberto P\u00e9rez P\u00e9rez Juez Eduardo Vio Grossi F.", - "values": [ - "Excepciones Preliminares", - "Fondo", - "Reparaciones", - "Costas" - ] - }, - { - "text": "Resoluci\u00f3n del Presidente de la Corte Interamericana de Derechos Humanos De de diciembre de Caso Instituto de Reeducaci\u00f3n del Menor Vs. Paraguay Supervisi\u00f3n de Cumplimiento de Sentencia VISTO La Sentencia de excepciones preliminares fondo reparaciones y costas en adelante la Sentencia emitida en el presente caso por la Corte Interamericana de Derechos Humanos en adelante la Corte la Corte Interamericana o el Tribunal el de septiembre de La Resoluci\u00f3n emitida por la Corte Interamericana el", - "values": [ - "Supervisi\u00f3n de cumplimiento de Sentencia" - ] - }, - { - "text": "RESOLUCI\u00d3N DE LA CORTE INTERAMERICANA DE DERECHOS HUMANOS DE DE SEPTIEMBRE DE CASO LOAYZA TAMAYO VS. PER\u00da SUPERVISI\u00d3N DE CUMPLIMIENTO DE SENTENCIA VISTOS La Sentencia de fondo dictada en el presente caso por la Interamericana de Derechos Humanos en adelante la Corte la Interamericana o el Tribunal el de septiembre de Corte Corte La Sentencia de reparaciones emitida por el Tribunal el de noviembre de La Sentencia de Interpretaci\u00f3n dictada en el presente caso por la Corte Interamericana ", - "values": [ - "Supervisi\u00f3n de cumplimiento de Sentencia" - ] - }, - { - "text": "RESOLUCI\u00d3N DEL PRESIDENTE DE LA CORTE INTERAMERICANA DE DERECHOS HUMANOS DE DE DICIEMBRE DE SOLICITUD DE MEDIDAS PROVISIONALES PRESENTADA POR LA COMISI\u00d3N INTERAMERICANA DE DERECHOS HUMANOS RESPECTO DE VENEZUELA ASUNTO MAR\u00cdA LOURDES AFIUNI VISTO El escrito de la Comisi\u00f3n Interamericana de Derechos Humanos en adelante la Comisi\u00f3n Interamericana o la Comisi\u00f3n de de noviembre de y sus anexos mediante los cuales someti\u00f3 a la Corte Interamericana de Derechos Humanos en adelante la Corte la o ", - "values": [ - "Medidas Provisionales" - ] - }, - { - "text": "Corte Interamericana de Derechos Humanos Caso Baena Ricardo y otros Vs. Panam\u00e1 Sentencia de de febrero de Fondo Reparaciones y Costas En el caso Baena Ricardo y otros la Corte Interamericana de Derechos Humanos en adelante la Corte la Corte Interamericana o el Tribunal integrada por los siguientes jueces Ant\u00f4nio A. Can\u00e7ado Trindade Presidente M\u00e1ximo Pacheco G\u00f3mez Vicepresidente Hern\u00e1n Salgado Pesantes Juez Oliver Jackman Juez Alirio Abreu Burelli Juez Sergio Garc\u00eda Ram\u00edrez Juez y Carlos de ", - "values": [ - "Fondo", - "Reparaciones", - "Costas" - ] - }, - { - "text": "VOTO RAZONADO DEL JUEZ A. A. CAN\u00c7ADO TRINDADE Concuerdo con la decisi\u00f3n de la Corte de desestimar las excepciones preliminares interpuestas por el Gobierno demandado de proseguir con el conocimiento del presente caso y de reservar el pronunciamiento sobre costas para decidirlo con la cuesti\u00f3n de fondo. Sin embargo me siento obligado a adjuntar este Voto Razonado para explicar y desarrollar las razones por las cuales estoy plenamente de acuerdo con el rechazo por la Corte de una de las en a ", - "values": [ - "Voto Separado" - ] - }, - { - "text": "VOTO DISIDENTE DEL JUEZ CARLOS VICENTE DE ROUX RENGIFO Debo apartarme de la decisi\u00f3n de la Corte sobre seis de siete excepciones preliminares presentadas por el Estado peruano porque creo que guardan una estrecha relaci\u00f3n con la materia del fondo del caso y han debido ser acumuladas a \u00e9sta. Como bien se sabe para que una petici\u00f3n o comunicaci\u00f3n sea admitida por la Comisi\u00f3n Interamericana se requiere seg\u00fan el art\u00edculo de la Convenci\u00f3n a. que se hayan interpuesto y agotado los recursos de a ", - "values": [ - "Voto Separado" - ] - }, - { - "text": "Resoluci\u00f3n de la Corte Interamericana de Derechos Humanos de de julio de Caso de la Masacre de Mapirip\u00e1n Vs. Colombia Supervisi\u00f3n de Cumplimiento de Sentencia Vistos La Sentencia de fondo reparaciones y costas emitida el de septiembre de en adelante la Sentencia por la Corte Interamericana de Derechos Humanos en adelante la Corte la Corte Interamericana o el Tribunal mediante la cual el Tribunal decidi\u00f3 que El Estado debe realizar inmediatamente las debidas diligencias para activar y ", - "values": [ - "Supervisi\u00f3n de cumplimiento de Sentencia" - ] - }, - { - "text": "VOTO PARCIALMENTE DISIDENTE DEL JUEZ CARLOS VICENTE DE ROUX RENGIFO Me aparto de la decisi\u00f3n adoptada por la Corte en relaci\u00f3n con la primera la segunda y la cuarta excepciones preliminares presentadas por el Estado demandado porque considero que las cuestiones referentes a la supuesta falta de agotamiento de los recursos internos ha debido acumularse a la materia de fondo del caso. Como lo he planteado en otra oportunidad cfr. voto disidente a la sentencia de excepciones preliminares del Caso ", - "values": [ - "Voto Separado" - ] - }, - { - "text": "Corte Interamericana de Derechos Humanos Caso Castillo P\u00e1ez Vs. Per\u00fa Sentencia de de noviembre de Fondo En el caso Castillo P\u00e1ez la Corte Interamericana de Derechos Humanos integrada por los siguientes jueces Hern\u00e1n Salgado Pesantes Presidente Ant\u00f4nio A. Can\u00e7ado Trindade Vicepresidente H\u00e9ctor FixZamudio Juez Alejandro Montiel Arg\u00fcello Juez M\u00e1ximo Pacheco G\u00f3mez Juez y Alirio Abreu Burelli Juez presentes adem\u00e1s Manuel E. Ventura Robles Secretario y V\u00edctor M. Rodr\u00edguez Rescia Secretario adjunto", - "values": [ - "Fondo" - ] - }, - { - "text": "RESOLUCI\u00d3N DE LA CORTE INTERAMERICANA DE DERECHOS HUMANOS DE DE MARZO DE CASO B\u00c1MACA VEL\u00c1SQUEZ VS. GUATEMALA SUPERVISI\u00d3N DE CUMPLIMIENTO DE SENTENCIA VISTOS La Sentencia de fondo emitida en el presente caso por la Corte Interamericana de Derechos Humanos en adelante la Corte la Corte Interamericana o el Tribunal el de noviembre de mediante la cual decidi\u00f3 inter alia que el Estado debe ordenar una investigaci\u00f3n para determinar las personas responsables de las violaciones de los derechos ", - "values": [ - "Supervisi\u00f3n de cumplimiento de Sentencia" - ] - }, - { - "text": "RESOLUCI\u00d3N DE LA CORTE INTERAMERICANA DE DERECHOS HUMANOS DE DE ABRIL DE CASO CHAPARRO \u00c1LVAREZ Y LAPO \u00cd\u00d1IGUEZ VS. ECUADOR. SUPERVISI\u00d3N DE CUMPLIMIENTO DE SENTENCIA VISTO La Sentencia de fondo reparaciones y costas en adelante la Sentencia dictada por la Corte Interamericana de Derechos Humanos en adelante la Corte la Corte Interamericana o el Tribunal el de noviembre de mediante la cual dispuso que El Estado deb\u00eda eliminar inmediatamente el nombre de los se\u00f1ores Juan Carlos Chaparro y ", - "values": [ - "Supervisi\u00f3n de cumplimiento de Sentencia" - ] - }, - { - "text": "RESOLUCI\u00d3N DE LA CORTE INTERAMERICANA DE DERECHOS HUMANOS DE DE JULIO DE MEDIDAS PROVISIONALES RESPECTO DE VENEZUELA ASUNTO LILIANA ORTEGA Y OTRAS VISTO La Resoluci\u00f3n que emiti\u00f3 la Corte Interamericana de Derechos Humanos en adelante la Corte Interamericana la Corte o el Tribunal el de noviembre de mediante la cual resolvi\u00f3 inter alia Requerir al Estado que adoptara sin dilaci\u00f3n cuantas medidas sean necesarias para proteger la vida e integridad personal de Liliana Ortega Yris Medina Cova ", - "values": [ - "Medidas Provisionales" - ] - }, - { - "text": "RESOLUCI\u00d3N DE LA CORTE INTERAMERICANA DE DERECHOS HUMANOS DE DE NOVIEMBRE DE CASO EL AMPARO CUMPLIMIENTO DE SENTENCIA VISTOS La sentencia dictada en el Caso El Amparo vs. Venezuela por la Corte Interamericana de Derechos Humanos en adelante la Corte la Corte Interamericana o el Tribunal el de enero de en cuyos puntos resolutivos estableci\u00f3 lo siguiente por unanimidad Toma nota del reconocimiento de responsabilidad efectuado por la Rep\u00fablica de Venezuela y decide que ha cesado la acerca ", - "values": [ - "Supervisi\u00f3n de cumplimiento de Sentencia" - ] - }, - { - "text": "VOTO RAZONADO DEL JUEZ DE ROUX RENGIFO La determinaci\u00f3n de si los hechos de este caso violaron o no el derecho a la propiedad consagrado en el art\u00edculo de la Convenci\u00f3n Americana ofrec\u00eda ciertas dificultades particulares. Las presuntas v\u00edctimas ten\u00edan a no dudarlo un derecho adquirido a una pensi\u00f3n y ese derecho considerado en abstracto formaba parte de su patrimonio. No obstante la concreci\u00f3n de ese derecho en mesadas pensionales de una cuant\u00eda espec\u00edfica deb\u00eda surgir de una ponderaci\u00f3n de ", - "values": [ - "Voto Separado" - ] - }, - { - "text": "VOTO RAZONADO DEL JUEZ SERGIO GARC\u00cdA RAM\u00cdREZ A LA SENTENCIA DE LA CORTE INTERAMERICANA DE DERECHOS HUMANOS EN EL CASO TRABAJADORES CESADOS DEL CONGRESO VS. PER\u00da DEL DE NOVIEMBRE DE En esta Sentencia la Corte se ha pronunciado sobre el control de convencionalidad p\u00e1rr. que pueden y deben ejercer los \u00f3rganos de la justicia nacional con respecto a actos de autoridad entre ellos normas de alcance general conforme a las atribuciones que les confieren los ordenamientos a los que se hallan y las", - "values": [ - "Voto Separado" - ] - }, - { - "text": "Corte Interamericana de Derechos Humanos Caso de la Panel Blanca Paniagua Morales y otros Vs. Guatemala Sentencia de de enero de Excepciones Preliminares En el caso Paniagua Morales y otros la Corte Interamericana de Derechos Humanos integrada por los siguientes jueces H\u00e9ctor FixZamudio Presidente Hern\u00e1n Salgado Pesantes Vicepresidente Alejandro Montiel Arg\u00fcello Juez M\u00e1ximo Pacheco G\u00f3mez Juez Alirio Abreu Burelli Juez Ant\u00f4nio A. Can\u00e7ado Trindade Juez Edgar E. Larraondo Salguero Juez ad hoc ", - "values": [ - "Excepciones Preliminares" - ] - }, - { - "text": "Resoluci\u00f3n de la Corte Interamericana de Derechos Humanos de de noviembre de Medidas Provisionales respecto de Guatemala Caso Raxcac\u00f3 Reyes y otros VISTOS La Resoluci\u00f3n de la Corte Interamericana de Derechos Humanos en adelante la Corte la Corte Interamericana o el Tribunal dictada el de agosto de en cuyo punto resolutivo primero resolvi\u00f3 Requerir al Estado que adopte sin dilaci\u00f3n las medidas necesarias para proteger la vida de Ronald Ernesto Raxcac\u00f3 Reyes Hugo Humberto Ruiz Fuentes Lara", - "values": [ - "Medidas Provisionales" - ] - }, - { - "text": "VOTO CONJUNTO DISIDENTE DE LOS JUECES MANUEL E. VENTURA ROBLES Y EDUARDO FERRER MACGREGOR POISOT CASO NOR\u00cdN CATRIM\u00c1N Y OTROS DIRIGENTES MIEMBROS Y ACTIVISTA DEL PUEBLO IND\u00cdGENA MAPUCHE VS. CHILE SENTENCIA DE DE MAYO DE FONDO REPARACIONES Y COSTAS Emitimos el presente voto disidente para fundamentar los motivos por los cuales discrepamos con lo decidido en el punto resolutivo de la Sentencia de de mayo de en el Caso Nor\u00edn Catrim\u00e1n y otros vs. Chile en adelante la Sentencia dictada por la ", - "values": [ - "Voto Separado" - ] - }, - { - "text": "RESOLUCI\u00d3N DE LA CORTE INTERAMERICANA DE DERECHOS HUMANOS DE DE NOVIEMBRE DE CASO BAYARRI Vs. ARGENTINA SUPERVISI\u00d3N DE CUMPLIMIENTO DE SENTENCIA VISTO La Sentencia de excepci\u00f3n preliminar fondo reparaciones y costas en adelante la Sentencia dictada por la Corte Interamericana de Derechos Humanos en adelante la Corte la Corte Interamericana o el Tribunal el de octubre de mediante la cual inter alia el Tribunal DISPUSO QUE El Estado debe pagar al se\u00f1or Juan Carlos Bayarri las cantidades ", - "values": [ - "Supervisi\u00f3n de cumplimiento de Sentencia" - ] - }, - { - "text": "RESOLUCI\u00d3N DE LA CORTE INTERAMERICANA DE DERECHOS HUMANOS DE DE NOVIEMBRE DE CASO BARRIOS ALTOS CUMPLIMIENTO DE SENTENCIA VISTOS La Sentencia de fondo dictada por la Corte Interamericana de Derechos Humanos en adelante la Corte o el Tribunal el de marzo de en la cual por unanimidad Admiti\u00f3 el reconocimiento de responsabilidad internacional efectuado por el Estado. Declar\u00f3 conforme a los t\u00e9rminos del reconocimiento de responsabilidad internacional efectuado por el Estado que \u00e9ste viol\u00f3 a ", - "values": [ - "Supervisi\u00f3n de cumplimiento de Sentencia" - ] - }, - { - "text": "RESOLUCI\u00d3N DE LA CORTE INTERAMERICANA DE DERECHOS HUMANOS DE DE MAYO DE CASO HELIODORO PORTUGAL VS. PANAM\u00c1 SUPERVISI\u00d3N DE CUMPLIMIENTO DE SENTENCIA VISTO La Sentencia de excepciones preliminares fondo reparaciones y costas en adelante la Sentencia dictada por la Corte Interamericana de Derechos Humanos en adelante la Corte la Corte Interamericana o el Tribunal el de agosto de mediante la cual dispuso que el Estado deb\u00eda pagar a Graciela De Le\u00f3n Patria Portugal y Franklin Portugal la en", - "values": [ - "Supervisi\u00f3n de cumplimiento de Sentencia" - ] - }, - { - "text": "CORTE INTERAMERICANA DE DERECHOS HUMANOS TICONA ESTRADA Y OTROS VS. BOLIVIA SENTENCIA DE DE NOVIEMBRE DE FONDO REPARACIONES Y COSTAS En el caso Ticona Estrada y otros la Corte Interamericana de Derechos Humanos en adelante la Corte Interamericana la Corte o el Tribunal integrada por los siguientes jueces Cecilia Medina Quiroga Presidenta Diego Garc\u00edaSay\u00e1n Vicepresidente Sergio Garc\u00eda Ram\u00edrez Juez Manuel E. Ventura Robles Juez Leonardo A. Franco Juez Margarette May Macaulay Jueza y Rhadys ", - "values": [ - "Fondo", - "Reparaciones", - "Costas" - ] - }, - { - "text": "CORTE INTERAMERICANA DE DERECHOS HUMANOS CASO HERMANOS LANDAETA MEJ\u00cdAS Y OTROS VS. VENEZUELA VOTO PARCIALMENTE DISIDENTE DEL JUEZ ROBERTO F. CALDAS SENTENCIA DE DE AGOSTO DE Excepciones Preliminares Fondo Reparaciones y Costas El presente voto razonado se refiere solamente a una \u00fanica parte de la sentencia en la cual respetuosamente disent\u00ed de la mayor\u00eda lo que en raras oportunidades ocurre. La deliberaci\u00f3n estuvo compuesta por otros cuatros jueces toda vez que fue realizada con el qu\u00f3rum ", - "values": [ - "Voto Separado" - ] - }, - { - "text": "RESOLUCI\u00d3N DE LA CORTE INTERAMERICANA DE DERECHOS HUMANOS DE DE SEPTIEMBRE DE MEDIDAS PROVISIONALES ORDENADAS POR LA CORTE INTERAMERICANA DE DERECHOS HUMANOS RESPECTO DE LA REP\u00daBLICA DE TRINIDAD Y TOBAGO CASOS JAMES Y OTROS VISTOS La Resoluci\u00f3n de la Corte Interamericana de Derechos Humanos en adelante la Corte de de mayo de en la cual decidi\u00f3 En relaci\u00f3n con las medidas provisionales adoptadas por la Corte el de agosto de a. Mantener las medidas provisionales ordenadas por la Corte de", - "values": [ - "Medidas Provisionales" - ] - }, - { - "text": "RESOLUCI\u00d3N DE LA CORTE INTERAMERICANA DE DERECHOS HUMANOS DE DE JUNIO DE MEDIDAS PROVISIONALES LILIANA ORTEGA Y OTRAS RESPECTO DE VENEZUELA VISTOS La Resoluci\u00f3n que emiti\u00f3 la Corte Interamericana de Derechos Humanos en adelante la Corte Interamericana la Corte o el Tribunal el de noviembre de mediante la cual resolvi\u00f3 Requerir al Estado que adopte sin dilaci\u00f3n cuantas medidas sean necesarias para proteger la vida e integridad personal de Liliana Ortega Yris Medina Cova Hilda P\u00e1ez Gilda ", - "values": [ - "Medidas Provisionales" - ] - }, - { - "text": "VOTO FUNDAMENTADO CONCORDANTE DO JUIZ SERGIO GARCIA RAM\u00cdREZ \u00c0 SENTEN\u00c7A DE M\u00c9RITO E REPARA\u00c7\u00d5ES DO CASO DA COMUNIDADE MAYAGNA SUMO AWAS TINGNI Coincido com o voto majorit\u00e1rio dos Ju\u00edzes que integram a Corte na Senten\u00e7a de m\u00e9rito e repara\u00e7\u00f5es do presente caso que declara a exist\u00eancia de viola\u00e7\u00f5es aos artigos e da Conven\u00e7\u00e3o Americana sobre Direitos Humanos em detrimento da Comunidade Mayagna Awas Tingni. Para chegar a esta decis\u00e3o a Corte examinou cuidadosamente as pretens\u00f5es dos peticion\u00e1rios ", - "values": [ - "Voto Separado" - ] - }, - { - "text": "RESOLUCI\u00d3N DE LA CORTE INTERAMERICANA DE DERECHOS HUMANOS DE DE JULIO DE MEDIDAS PROVISIONALES SOLICITADAS POR LA COMISI\u00d3N INTERAMERICANA DE DERECHOS HUMANOS RESPECTO DE LA REP\u00daBLICA DE VENEZUELA CASO DIARIOS EL NACIONAL Y AS\u00cd ES LA NOTICIA VISTOS El escrito de la Comisi\u00f3n Interamericana de Derechos Humanos en adelante la Comisi\u00f3n o la Comisi\u00f3n Interamericana de de junio de mediante el cual someti\u00f3 a la Corte Interamericana de Derechos Humanos en adelante la Corte o la Corte Interamericana", - "values": [ - "Medidas Provisionales" - ] - }, - { - "text": "VOTO DISIDENTE DE LA JUEZA CECILIA MEDINA QUIROGA EN EL CASO L\u00d3PEZ ALVAREZ VS. HONDURAS Estoy en general de acuerdo con la decisi\u00f3n de la Corte en relaci\u00f3n con las violaciones a los derechos humanos determinadas en la sentencia precedente excepto respecto de la violaci\u00f3n del art\u00edculo de la Convenci\u00f3n Americana No encuentro en este caso ninguna raz\u00f3n para declarar que se ha violado este art\u00edculo. De hecho los p\u00e1rrafos de la sentencia que se refieren a \u00e9l los n\u00fameros a se remiten a citar la", - "values": [ - "Voto Separado" - ] - }, - { - "text": "CORTE INTERAMERICANA DE DIREITOS HUMANOS CASO INSTITUTO DE REEDUCA\u00c7\u00c3O DO MENOR VS. PARAGUAI SENTEN\u00c7A DE DE SETEMBRO DE Exce\u00e7\u00f5es Preliminares M\u00e9rito Repara\u00e7\u00f5es e Custas No caso do Instituto de Reeduca\u00e7\u00e3o do Menor a Corte Interamericana de Direitos Humanos doravante denominada a Corte a Corte Interamericana ou o Tribunal integrada pelos seguintes ju\u00edzes Sergio Garc\u00eda Ram\u00edrez Presidente Alirio Abreu Burelli VicePresidente Oliver Jackman Juiz Ant\u00f4nio A. Can\u00e7ado Trindade Juiz Cecilia Medina Ju\u00edza", - "values": [ - "Excepciones Preliminares", - "Fondo", - "Reparaciones", - "Costas" - ] - }, - { - "text": "VOTO RAZONADO CASO ESCU\u00c9 ZAPATA vs. COLOMBIA He concurrido con mi voto para aprobar por unanimidad la presente sentencia en el caso Escu\u00e9 Zapata contra Colombia pero considero necesario aclarar mi posici\u00f3n sobre un tema que fue considerado en la deliberaci\u00f3n de este caso y durante los \u00faltimos tres a\u00f1os en diversos casos ante la Corte. Se trata de la aplicaci\u00f3n e interpretaci\u00f3n de los art\u00edculos y de la Convenci\u00f3n en relaci\u00f3n con el art\u00edculo y por ende tambi\u00e9n sobre la naturaleza y raz\u00f3n de ", - "values": [ - "Voto Separado" - ] - }, - { - "text": "Corte Interamericana de Derechos Humanos Caso Trujillo Oroza Vs. Bolivia Sentencia de de febrero de Reparaciones y Costas En el caso Trujillo Oroza la Corte Interamericana de Derechos Humanos en adelante la Corte la Corte Interamericana o el Tribunal integrada por los siguientes jueces Ant\u00f4nio A. Can\u00e7ado Trindade Presidente Alirio Abreu Burelli Vicepresidente Hern\u00e1n Salgado Pesantes Juez Oliver Jackman Juez Sergio Garc\u00eda Ram\u00edrez Juez Carlos Vicente de Roux Rengifo Juez y Charles N. Brower ad", - "values": [ - "Reparaciones", - "Costas" - ] - }, - { - "text": "Resoluci\u00f3n del Presidente de la Corte Interamericana de Derechos Humanos De de enero de Caso de los Ni\u00f1os de la CalleVillagr\u00e1n Morales y otros Vs. Guatemala Supervisi\u00f3n de Cumplimiento de Sentencias VISTOS La Resoluci\u00f3n del Presidente de la Corte Interamericana de Derechos Humanos en adelante la Corte la Corte Interamericana o el Tribunal de de diciembre de mediante la cual resolvi\u00f3 inter alia Convocar a la Comisi\u00f3n Interamericana de Derechos Humanos a los representantes de las v\u00edctimas y ", - "values": [ - "Supervisi\u00f3n de cumplimiento de Sentencia" - ] - }, - { - "text": "Corte Interamericana de Derechos Humanos Caso Loayza Tamayo Vs. Per\u00fa Resoluci\u00f3n del de noviembre de Cumplimiento de Sentencia VISTOS Las sentencias sobre excepciones preliminares y fondo dictadas por la Corte Interamericana de Derechos Humanos en adelante la Corte o la Corte Interamericana o el Tribunal el de enero de y el de septiembre de respectivamente. En ambas sentencias la Corte se pronunci\u00f3 sobre la improcedencia de la excepci\u00f3n interpuesta por el Estado del Per\u00fa en adelante el o", - "values": [ - "Supervisi\u00f3n de cumplimiento de Sentencia" - ] - }, - { - "text": " Voto razonado del Juez de Roux Rengifo El quid jur\u00eddico del presente caso gira en torno al art\u00edculo de la Convenci\u00f3n Americana en tanto dispone quela pena de muerte s\u00f3lo podr\u00e1 imponerse por los delitos m\u00e1s graves. Treinta y una de las v\u00edctimas no han sido ejecutadas y ojal\u00e1 nunca lo sean. En otras palabras no han sido privadas de la vida. Sin embargo el derecho que les confiere el art\u00edculo les ha sido conculcado porque se les ha aplicado una ley la Ley de Delitos contra la Persona de y ", - "values": [ - "Voto Separado" - ] - }, - { - "text": "VOTO CONCORDANTE DO JUIZ SERGIO GARC\u00cdA RAM\u00cdREZ COM RELA\u00c7\u00c3O \u00c0 SENTEN\u00c7A DA CORTE INTERAMERICANA DE DIREITOS HUMANOS NO CASO ESCHER E OUTROS VS. BRASIL PROFERIDA EM DE JULHO DE Chegam \u00e0 Corte temas novos para esta jurisdi\u00e7\u00e3o que concorrem a integrar o amplo cat\u00e1logo de quest\u00f5es sobre as que trabalha em benef\u00edcio dos direitos e das liberdades dos habitantes da Am\u00e9rica uma jurisprud\u00eancia em constante desenvolvimento. Certamente est\u00e1 pendente a revis\u00e3o de um bom n\u00famero de assuntos que interessam ", - "values": [ - "Voto Separado" - ] - }, - { - "text": "CORTE INTERAMERICANA DE DERECHOS HUMANOS CASO M\u00c9MOLI VS. ARGENTINA SENTENCIA DE DE AGOSTO DE Excepciones preliminares Fondo Reparaciones y Costas En el caso M\u00e9moli la Corte Interamericana de Derechos Humanos en adelante la Corte Interamericana la Corte o este Tribunal integrada por los siguientes jueces Diego Garc\u00edaSay\u00e1n Presidente Manuel E. Ventura Robles Vicepresidente Alberto P\u00e9rez P\u00e9rez Juez Eduardo Vio Grossi Juez Roberto F. Caldas Juez Humberto Antonio Sierra Porto Juez y Eduardo Ferrer", - "values": [ - "Excepciones Preliminares", - "Fondo", - "Reparaciones", - "Costas" - ] - }, - { - "text": "RESOLUCI\u00d3N DE LA CORTE INTERAMERICANA DE DERECHOS HUMANOS DE DE JUNIO DE MEDIDAS PROVISIONALES RESPECTO DE LA REPUBLICA DE HONDURAS CASO KAWAS FERN\u00c1NDEZ VS. HONDURAS VISTO Las Resoluciones de la Corte Interamericana de Derechos Humanos en adelante la Corte Interamericana la Corte o el Tribunal de de noviembre de y de julio de En esta ultima la Corte resolvi\u00f3 Reiterar a la Rep\u00fablica de Honduras que adopte sin dilaci\u00f3n cuantas medidas sean necesarias para asegurar eficazmente la de la e", - "values": [ - "Medidas Provisionales" - ] - }, - { - "text": "RESOLUCI\u00d3N DE LA CORTE INTERAMERICANA DE DERECHOS HUMANOS DE DE MAYO DE MEDIDAS PROVISIONALES RESPECTO DE COLOMBIA ASUNTO DANILO RUEDA VISTO El escrito de la Comisi\u00f3n Interamericana de Derechos Humanos en adelante la Comisi\u00f3n Interamericana o la Comisi\u00f3n de de abril de mediante el cual someti\u00f3 a la Corte Interamericana de Derechos Humanos en adelante la Corte Interamericana la Corte o el Tribunal una solicitud de medidas provisionales de conformidad con los art\u00edculos de la Convenci\u00f3n ", - "values": [ - "Medidas Provisionales" - ] - }, - { - "text": "RESOLUCI\u00d3N DE LA CORTE INTERAMERICANA DE DERECHOS HUMANOS DE DE JULIO DE CASO SU\u00c1REZ ROSERO VS. ECUADOR CUMPLIMIENTO DE SENTENCIAS VISTOS La Sentencia de fondo dictada por la Corte Interamericana de Derechos Humanos en adelante la Corte la Corte Interamericana o el Tribunal el de noviembre de mediante la cual por unanimidad Declar\u00f3 que el Ecuador deb\u00eda ordenar una investigaci\u00f3n para determinar las personas responsables de las violaciones a los derechos humanos a que se hab\u00eda hecho en ", - "values": [ - "Supervisi\u00f3n de cumplimiento de Sentencia" - ] - }, - { - "text": "RESOLUCI\u00d3N DE LA CORTE INTERAMERICANA DE DERECHOS HUMANOS DE DE JUNIO DE CASOS CASTILLO P\u00c1EZ LOAYZA TAMAYO CASTILLO PETRUZZI Y OTROS IVCHER BRONSTEIN Y DEL TRIBUNAL CONSTITUCIONAL CUMPLIMIENTO DE SENTENCIA VISTOS Lo decidido por la Corte Interamericana de Derechos Humanos en adelante la Corte o la Corte Interamericana o el Tribunal en la Sentencia sobre Reparaciones de de noviembre de en el Caso Castillo P\u00e1ez. Lo decidido por la Corte en la Sentencia sobre Reparaciones de de noviembre de", - "values": [ - "Supervisi\u00f3n de cumplimiento de Sentencia" - ] - }, - { - "text": "Corte Interamericana de Derechos Humanos Caso Bulacio Vs. Argentina Sentencia de de septiembre de Fondo Reparaciones y Costas En el caso Bulacio la Corte Interamericana de Derechos Humanos en adelante la Corte o la Corte Interamericana integrada por los siguientes jueces Ant\u00f4nio A. Can\u00e7ado Trindade Presidente Sergio Garc\u00eda Ram\u00edrez Vicepresidente Hern\u00e1n Salgado Pesantes Juez Oliver Jackman Juez Alirio Abreu Burelli Juez y Ricardo Gil Lavedra Juez ad hoc presentes adem\u00e1s Manuel E. Ventura y ", - "values": [ - "Fondo", - "Reparaciones", - "Costas" - ] - }, - { - "text": "RESOLUCI\u00d3N DE LA CORTE INTERAMERICANA DE DERECHOS HUMANOS DE DE NOVIEMBREDE CASOS GUATEMALTECOS SUPERVISI\u00d3N DE CUMPLIMIENTO DE SENTENCIAS RESPECTO DE LA OBLIGACI\u00d3N DE INVESTIGAR JUZGAR Y DE SER EL CASO SANCIONAR A LOS RESPONSABLES DE LAS VIOLACIONES A LOS DERECHOS HUMANOS En las sentenciasemitidas por la Corte Interamericana de Derechos Humanos en adelante la Corte la Corte Interamericana o el Tribunal el de enero de en el caso Blake el de mayo de en el caso de la Panel Blanca Paniagua ", - "values": [ - "Supervisi\u00f3n de cumplimiento de Sentencia" - ] - }, - { - "text": "VOTO CONCORDANTE FUNDAMENTADO DO JUIZ AD HOC EMILIO CAMACHO PAREDES CASO RICARDO CANESE VS. PARAGUAI Compartilho os fundamentos da presente senten\u00e7a raz\u00e3o pela qual concordo com a mesma. As quest\u00f5es propostas e as responsabilidades determinadas me suscitaram algumas reflex\u00f5es que me vejo na obriga\u00e7\u00e3o de consignar neste voto. O ato de processar penalmente n\u00e3o implica nenhuma criminaliza\u00e7\u00e3o de conduta pois a inj\u00faria e a difama\u00e7\u00e3o est\u00e3o tipificadas na lei penal artigos e Lei e difama\u00e7\u00e3o e ", - "values": [ - "Voto Separado" - ] - }, - { - "text": "Resoluci\u00f3n de la Corte Interamericana de Derechos Humanos de de febrero de Solicitud de Adopci\u00f3n de Medidas Provisionales Caso De La Cruz Flores Vs. Per\u00fa Visto La Sentencia de fondo reparaciones y costas en adelante la Sentencia emitida en el presente caso por la Corte Interamericana de Derechos Humanos en adelante la Corte la Corte Interamericana o el Tribunal el de noviembre de Las Resoluciones de la Corte Interamericana de de noviembre de de septiembre de y de febrero de sobre ", - "values": [ - "Medidas Provisionales" - ] - }, - { - "text": "RESOLUCI\u00d3N DE LA CORTE INTERAMERICANA DE DERECHOS HUMANOS DE DE FEBRERO DE MEDIDAS PROVISIONALES CASO LOAYZA TAMAYO VISTOS El escrito de de noviembre de y sus anexos recibido el de diciembre de en la Secretar\u00eda de la Corte Interamericana de Derechos Humanos en adelante la Corte o la Corte Interamericana mediante el cual la se\u00f1ora Michelangela Scalabrino someti\u00f3 a la Corte en nombre de la se\u00f1ora Mar\u00eda Elena Loayza Tamayo en adelante la se\u00f1ora Loayza Tamayo al amparo de los art\u00edculos de ", - "values": [ - "Medidas Provisionales" - ] - }, - { - "text": "Corte Interamericana de Derechos Humanos Caso Fair\u00e9n Garbi y Sol\u00eds Corrales Vs. Honduras Sentencia de de junio de Excepciones Preliminares En el caso Fair\u00e9n Garbi y Sol\u00eds Corrales la Corte Interamericana de Derechos Humanos en adelante la Corte integrada por los siguientes jueces Thomas Buergenthal Presidente Rafael Nieto Navia Vicepresidente Rodolfo E. Piza E Juez Pedro Nikken Juez H\u00e9ctor FixZamudio Juez H\u00e9ctor Gros Espiell Juez Rigoberto Espinal Ir\u00edas Juez ad hoc presentes adem\u00e1s Charles ", - "values": [ - "Excepciones Preliminares" - ] - }, - { - "text": "VOTO DISIDENTE DEL JUEZ EDUARDO VIO GROSSI. CORTE INTERAMERICANA DE DERECHOS HUMANOS CASO ARTAVIA MURILLO Y OTROS FECUNDACI\u00d3N IN VITRO VS. COSTA RICA SENTENCIA DE DE NOVIEMBRE DE Excepciones Preliminares Fondo Reparaciones y Costas INTRODUCCI\u00d3N. Con el mayor respeto y consideraci\u00f3n hacia la Corte Interamericana de Derecho Humanos en adelante la Corte y ciertamente hacia cada uno de sus miembros se formula el presente voto disidente a la Sentencia indicada en el t\u00edtulo en adelante la en del", - "values": [ - "Voto Separado" - ] - }, - { - "text": "RESOLUCI\u00d3N DE LA CORTE INTERAMERICANA DE DERECHOS HUMANOS DE DE NOVIEMBRE DE CASO GARC\u00cdA ASTO Y RAM\u00cdREZ ROJAS VS. PER\u00da SUPERVISI\u00d3N DE CUMPLIMIENTO DE SENTENCIA VISTO La Sentencia de excepci\u00f3n preliminar fondo reparaciones y costas en adelante la Sentencia de de noviembre de dictada por la Corte Interamericana de Derechos Humanos en adelante la Corte Interamericana la Corte o este Tribunal en la cual se declar\u00f3 la violaci\u00f3n a los derechos a la integridad personal la libertad personal de", - "values": [ - "Supervisi\u00f3n de cumplimiento de Sentencia" - ] - }, - { - "text": "RESOLUCI\u00d3N DEL PRESIDENTE DE LA CORTE INTERAMERICANA DE DERECHOS HUMANOS DE DE MARZO DE CASO OMAR HUMBERTO MALDONADO VARGAS Y OTROS VS. CHILE VISTO El escrito de sometimiento del caso y el Informe de Fondo de la Comisi\u00f3n Interamericana de Derechos Humanos en adelante la Comisi\u00f3n Interamericana o la Comisi\u00f3n el escrito de solicitudes argumentos y pruebas en adelante el escrito de solicitudes y argumentospresentado por el interviniente com\u00fan de los representantes en adelante el interviniente ", - "values": [ - "Otros" - ] - }, - { - "text": "RESOLUCI\u00d3N DE LA CORTE INTERAMERICANA DE DERECHOS HUMANOS DE DE FEBRERO DE CASO ESCU\u00c9 ZAPATA VS. COLOMBIA SUPERVISI\u00d3N DE CUMPLIMIENTO DE SENTENCIA VISTOS La Sentencia de fondo reparaciones y costas en adelante la Sentencia dictada por la Corte Interamericana de Derechos Humanos en adelante la Corte la Corte Interamericana o el Tribunal el de julio de As\u00ed como la Sentencia de Interpretaci\u00f3n dictada por la Corte el de mayo de La Resoluci\u00f3n del Presidente de la Corte de de abril de la ", - "values": [ - "Supervisi\u00f3n de cumplimiento de Sentencia" - ] - }, - { - "text": "RESOLUCI\u00d3N DE LA CORTE INTERAMERICANA DE DERECHOS HUMANOS DE DE MAYO DE AMPLIACI\u00d3N DE LAS MEDIDAS PROVISIONALES ADOPTADAS LA COMISI\u00d3N INSTRAMERICANA DE DERECHOS HUMANOS RESPECTO DE LA REP\u00daBLICA DE TRINIDAD Y TOBAGO CASOS JAMES Y OTROS VISTOS La tramitaci\u00f3n en los casos James y otros en los cuales la Corte Interamericana de Derechos Humanos en adelante la Corte orden\u00f3 medidas provisionales respecto de veintiocho personas condenadas a muerte en la Rep\u00fablica de Trinidad y Tobago en adelante el ", - "values": [ - "Medidas Provisionales" - ] - }, - { - "text": "Corte Interamericana de Direitos Humanos Caso Chaparro \u00c1lvarez e Lapo \u00cd\u00f1iguez vs. Equador Senten\u00e7a de de novembro de EXCE\u00c7\u00d5ES PRELIMINARES M\u00c9RITO REPARA\u00c7\u00d5ES E CUSTAS No caso Chaparro \u00c1lvarez e Lapo \u00cd\u00f1iguez A Corte Interamericana de Direitos Humanos doravante denominada Interamericana Corte ou Tribunal integrada pelos seguintes ju\u00edzes Corte Sergio Garc\u00eda Ram\u00edrez Presidente Cecilia Medina Quiroga VicePresidenta Manuel E. Ventura Robles Juiz Diego Garc\u00edaSay\u00e1n Juiz Leonardo A. Franco Juiz May ", - "values": [ - "Excepciones Preliminares", - "Fondo", - "Reparaciones", - "Costas" - ] - }, - { - "text": "RESOLUCI\u00d3N DE LA CORTE INTERAMERICANA DE DERECHOS HUMANOS DE DE JUNIO DE MEDIDAS PROVISIONALES RESPECTO DEL ESTADO DE GUATEMALA CASO BLAKE VISTOS La Resoluci\u00f3n del Presidente de la Corte Interamericana de Derechos Humanos en adelante el Presidente de de agosto de mediante la cual resolvi\u00f3 Solicitar al Gobierno de la Rep\u00fablica de Guatemala que adopte sin dilaci\u00f3n cuantas medidas sean necesarias para asegurar eficazmente la protecci\u00f3n de la vida e integridad personal de JUSTO VICTORIANO ", - "values": [ - "Medidas Provisionales" - ] - }, - { - "text": "RESOLUCI\u00d3N DE LA CORTE INTERAMERICANA DE DERECHOS HUMANOS DE DE MARZO DE CASO LOAYZA TAMAYO VS. PER\u00da SUPERVISI\u00d3N DE CUMPLIMIENTO DE SENTENCIA VISTOS La Sentencia de fondo dictada en el presente caso por la Corte Interamericana de Derechos Humanos en adelante la Corte la Corte Interamericana o el Tribunal el de septiembre de en la que dispuso en los puntos resolutivos quinto y sexto que ordenaba al Estado del Per\u00fa poner en libertad a Mar\u00eda Elena Loayza Tamayo dentro de un plazo razonable ", - "values": [ - "Supervisi\u00f3n de cumplimiento de Sentencia" - ] - }, - { - "text": "Corte Interamericana de Derechos Humanos Caso de las Hermanas Serrano Cruz Vs. El Salvador Sentencia de de marzo de Fondo Reparaciones y Costas En el caso de las Hermanas Serrano Cruz la Corte Interamericana de Derechos Humanos en adelante la Corte Interamericana la Corte o el Tribunal integrada por los siguientes jueces Sergio Garc\u00eda Ram\u00edrez Presidente Alirio Abreu Burelli Vicepresidente Oliver Jackman Juez Ant\u00f4nio A. Can\u00e7ado Trindade Juez Cecilia Medina Quiroga Jueza Manuel E. Ventura Juez", - "values": [ - "Fondo", - "Reparaciones", - "Costas" - ] - }, - { - "text": "Corte Interamericana de Derechos Humanos Caso Loayza Tamayo Vs. Per\u00fa Sentencia de de enero de Excepciones Preliminares En el caso Loayza Tamayo la Corte Interamericana de Derechos Humanos integrada por los siguientes jueces H\u00e9ctor FixZamudio Presidente Hern\u00e1n Salgado Pesantes Vicepresidente Alejandro Montiel Arg\u00fcello Juez M\u00e1ximo Pacheco G\u00f3mez Juez Oliver Jackman Juez Alirio Abreu Burelli Juez Ant\u00f4nio A. Can\u00e7ado Trindade Juez presentes adem\u00e1s Manuel E. Ventura Robles Secretario y Ana Mar\u00eda ", - "values": [ - "Excepciones Preliminares" - ] - }, - { - "text": "VOTO RAZONADO CONCURRENTE DEL JUEZ ADHOC GUSTAVO ZAFRA ROLDAN Comparto integralmente la Sentencia de la Corte Interamericana sobre el caso de la Masacre de Mapirip\u00e1n. Quiero expresar algunos razonamientos adicionales En los casos que el Estado de Colombia y las v\u00edctimas han conciliado ante la Jurisdicci\u00f3n Contenciosa Administrativa estas conciliaciones dentro del principio de la buena fe deben tenerse en cuenta. a Si la conciliaci\u00f3n ha sido parcial o total en la liquidaci\u00f3n de las reparaciones", - "values": [ - "Voto Separado" - ] - }, - { - "text": "RESOLUCI\u00d3N DE LA CORTE INTERAMERICANA DE DERECHOS HUMANOS DE DE SEPTIEMBRE DE MEDIDAS PROVISIONALES ORDENADAS POR LA CORTE INTERAMERICANA DE DERECHOS HUMANOS RESPECTO DE LA REP\u00daBLICA DE GUATEMALA CASO COLOTENANGO VISTOS La Resoluci\u00f3n de la Corte Interamericana de Derechos Humanos en adelante la Corte o la Corte Interamericana de de junio de mediante la cual Requiri\u00f3 al Gobierno de Guatemala que adoptase sin dilaci\u00f3n cuantas medidas fuesen necesarias para proteger el derecho a la vida e ", - "values": [ - "Medidas Provisionales" - ] - }, - { - "text": "VOTO RAZONADO CONCURRENTE DEL JUEZ SERGIO GARC\u00cdA RAM\u00cdREZ A LA SENTENCIA DE FONDO DEL CASO B\u00c1MACA VEL\u00c1SQUEZ La Sentencia dictada por la Corte Interamericana de Derechos Humanos en el Caso B\u00e1maca Vel\u00e1squez el de noviembre de examina diversas presuntas violaciones a derechos preservados por la Convenci\u00f3n Americana sobre Derechos Humanos Pacto de San Jos\u00e9. Constituye una valiosa reflexi\u00f3n jurisdiccional en torno a varios conceptos relevantes para el Derecho internacional de los derechos humanos ", - "values": [ - "Voto Separado" - ] - }, - { - "text": "Resoluci\u00f3n de la Corte Interamericana de Derechos Humanos De de mayo de Caso de la Comunidad Mayagna Sumo Awas Tingni Vs. Nicaragua Supervisi\u00f3n de Cumplimiento de Sentencia VISTOS La Sentencia de Fondo Reparaciones y Costas dictada en el Caso de la Comunidad Mayagna Sumo Awas Tingni vs. Nicaragua por la Corte Interamericana de Derechos Humanos en adelante la Corte la Corte Interamericana o el Tribunal el de agosto de en cuyos puntos resolutivos decidi\u00f3 inter alia que el Estado debe en ", - "values": [ - "Supervisi\u00f3n de cumplimiento de Sentencia" - ] - }, - { - "text": " VOTO RAZONADO DEL JUEZ VIDAL RAM\u00cdREZ Participo en el pronunciamiento de la sentencia razonando mi voto con la siguiente consideraci\u00f3n La designaci\u00f3n del Juez ad hoc por el Estado notificado con la demanda no implica que asuma su representaci\u00f3n pues pasa a integrar la Corte a t\u00edtulo personal previo juramento. La integraci\u00f3n a t\u00edtulo personal del Juez ad hoc se fundamenta en la necesidad de proteger la independencia e imparcialidad de la Corte Interamericana como Tribunal internacional. Para a ", - "values": [ - "Voto Separado" - ] - }, - { - "text": "VOTO RAZONADO CASO CANTORAL HUAMAN\u00cd Y GARC\u00cdA SANTA CRUZ vs. PER\u00da He concurrido con mi voto para aprobar por unanimidad la presente sentencia en el caso Cantoral Huaman\u00ed y Garc\u00eda Santa Cruz contra el Per\u00fa pero considero necesario aclarar mi posici\u00f3n sobre un tema que fue considerado en la deliberaci\u00f3n de este caso y durante los \u00faltimos tres a\u00f1os en diversos casos ante la Corte. Se trata de la aplicaci\u00f3n e interpretaci\u00f3n de los art\u00edculos y de la Convenci\u00f3n en relaci\u00f3n con el art\u00edculo y por ", - "values": [ - "Voto Separado" - ] - }, - { - "text": "VOTO RAZONADO DEL JUEZ AA. CAN\u00c7ADO TRINDADE He concurrido con mi voto a la adopci\u00f3n de la Sentencia que viene de adoptar la Corte Interamericana de Derechos Humanos en el caso de L\u00f3pez \u00c1lvarez versus Honduras. Dada la importancia de una cuesti\u00f3n tratada en la presente Sentencia me veo en la obligaci\u00f3n de dejar constancia de mis reflexiones sobre la misma como fundamento de mi posici\u00f3n al respecto. Me refiero al eje central conformado por el derecho de acceso lato sensu a la justicia y las del", - "values": [ - "Voto Separado" - ] - }, - { - "text": "RESOLUCI\u00d3N DE LA CORTE INTERAMERICANA DE DERECHOS HUMANOS DE DE SEPTIEMBRE DE CASO DEFENSOR DE DERECHOS HUMANOS Y OTROS VS. GUATEMALA SUPERVISI\u00d3N DE CUMPLIMIENTO DE SENTENCIA VISTO La Sentencia de excepciones preliminares fondo reparaciones y costas en adelante la Sentencia dictada por la Corte Interamericana de Derechos Humanos en adelante la Corte la Corte Interamericana o este Tribunal el de agosto de La Corte declar\u00f3 responsable internacionalmente a la Rep\u00fablica de Guatemala en el ", - "values": [ - "Supervisi\u00f3n de cumplimiento de Sentencia" - ] - }, - { - "text": "RESOLUCI\u00d3N DE LA CORTE INTERAMERICANA DE DERECHOS HUMANOS DE ENERO DE MEDIDAS PROVISIONALES RESPECTO DE COLOMBIA ASUNTO GIRALDO CARDONA Y OTROS VISTO La Resoluci\u00f3n del Presidente de la Corte Interamericana de Derechos Humanos de de octubre de as\u00ed como las Resoluciones de la Corte Interamericana de Derechos Humanos en adelante la Corte Interamericana la Corte o el Tribunal de de febrero de abril de de junio y de noviembre de de septiembre de de diciembre de de noviembre de de ", - "values": [ - "Medidas Provisionales" - ] - }, - { - "text": "RESOLUCI\u00d3N DE LA CORTE INTERAMERICANA DE DERECHOS HUMANOS DE DE MARZO DE MEDIDAS PROVISIONALES LILIANA ORTEGA Y OTRAS RESPECTO DE VENEZUELA VISTOS La Resoluci\u00f3n que emiti\u00f3 la Corte Interamericana de Derechos Humanos en adelante la Corte Interamericana la Corte o el Tribunal el de noviembre de mediante la cual resolvi\u00f3 Requerir al Estado que adopte sin dilaci\u00f3n cuantas medidas sean necesarias para proteger la vida e integridad personal de Liliana Ortega Yris Medina Cova Hilda P\u00e1ez Gilda ", - "values": [ - "Medidas Provisionales" - ] - }, - { - "text": "RESOLUCI\u00d3N DE LA CORTE INTERAMERICANA DE DERECHOS HUMANOS DE DE SEPTIEMBRE DE CASO BARRIOS ALTOS CUMPLIMIENTO DE SENTENCIA VISTOS La Sentencia de fondo dictada por la Corte Interamericana de Derechos Humanos en adelante la Corte la Corte Interamericana o el Tribunal el de marzo de en la cual por unanimidad Admiti\u00f3 el reconocimiento de responsabilidad internacional efectuado por el Estado. Declar\u00f3 conforme a los t\u00e9rminos del reconocimiento de responsabilidad internacional efectuado por el", - "values": [ - "Supervisi\u00f3n de cumplimiento de Sentencia" - ] - }, - { - "text": "Resoluci\u00f3n de la Presidenta de la Corte Interamericana de Derechos Humanos De de marzo de Caso Ferm\u00edn Ram\u00edrez Vs. Guatemala Supervisi\u00f3n de Cumplimiento de Sentencia Caso Raxcac\u00f3 Reyes Vs. Guatemala Supervisi\u00f3n de Cumplimiento de Sentencia Caso Raxcac\u00f3 Reyes y otros Solicitud de ampliaci\u00f3n de medidas provisionales VISTOS A Caso Ferm\u00edn Ram\u00edrez La Sentencia de fondo reparaciones y costas dictada el de junio de por la Corte Interamericana de Derechos Humanos en adelante la Corte la Corte o el", - "values": [ - "Supervisi\u00f3n de cumplimiento de Sentencia", - "Medidas Provisionales" - ] - }, - { - "text": "Corte Interamericana de Direitos Humanos Caso Ivcher Bronstein Vs. Peru Senten\u00e7a de de fevereiro de M\u00e9rito Repara\u00e7\u00f5es e Custas No caso Ivcher Bronstein A Corte Interamericana de Direitos Humanos doravante denominada a Corte a Corte Interamericana ou o Tribunal integrada pelos seguintes ju\u00edzes Ant\u00f4nio A. Can\u00e7ado Trindade Presidente M\u00e1ximo Pacheco G\u00f3mez VicePresidente Hern\u00e1n Salgado Pesantes Juiz Oliver Jackman Juiz Alirio Abreu Burelli Juiz Sergio Garc\u00eda Ram\u00edrez Juiz y Carlos Vicente de Roux ", - "values": [ - "Fondo", - "Reparaciones", - "Costas" - ] - }, - { - "text": "RESOLUCI\u00d3N DE LA CORTE INTERAMERICANA DE DERECHOS HUMANOS DE DE NOVIEMBRE DE MEDIDAS PROVISIONALES RESPECTO DE LOS ESTADOS UNIDOS MEXICANOS CASO PILAR NORIEGA GARCIA Y OTROS VISTOS La Resoluci\u00f3n emitida por el Presidente de la Corte Interamericana de Derechos Humanos en adelante la Corte la Corte Interamericana o el Tribunal el de octubre de en consulta con los dem\u00e1s Jueces de la Corte mediante la cual resolvi\u00f3 Requerir al Estado que adopte sin dilaci\u00f3n cuantas medidas sean necesarias ", - "values": [ - "Medidas Provisionales" - ] - }, - { - "text": "RESOLUCI\u00d3N DE LA CORTE INTERAMERICANA DE DERECHOS HUMANOS DE DE JULIO DE SOLICITUD DE MEDIDAS PROVISIONALES PRESENTADA POR LA COMISI\u00d3N INTERAMERICANA DE DERECHOS HUMANOS RESPECTO DE LA REP\u00daBLICA DE GUATEMALA CASO DE LA FUNDACI\u00d3N DE ANTROPOLOG\u00cdA FORENSE DE GUATEMALA VISTO El escrito de de abril de y sus anexos mediante los cuales la Comisi\u00f3n Interamericana de Derechos Humanos en adelante la Comisi\u00f3n Interamericana o la Comisi\u00f3n someti\u00f3 a la Corte Interamericana de Derechos Humanos en la o", - "values": [ - "Medidas Provisionales" - ] - }, - { - "text": "Voto disidente del Juez ad hoc Dr. Edgar Enrique Larraondo Salguero Caso Panel Blanca Ana Elizabeth Paniagua Morales y otros Expediente VOTO EN CONTRA del respetable criterio de la mayor\u00eda de los se\u00f1ores Jueces por las razones que expongo a continuaci\u00f3n En derecho procesal la legalidad de las formas consiste en los modos o maneras en que deben desenvolverse los actos de que se compone el proceso o sea en el tiempo lugar y orden previstos por la ley. Ello es valedero para todo tipo de proceso ", - "values": [ - "Voto Separado" - ] - }, - { - "text": "Resoluci\u00f3n de la Presidenta de la Corte Interamericana de Derechos Humanos de de agosto de Caso Instituto de Reeducaci\u00f3n del Menor Vs. Paraguay Supervisi\u00f3n de Cumplimiento de Sentencia Visto La Sentencia de excepciones preliminares fondo reparaciones y costas en adelante la Sentencia emitida en el presente caso por la Corte Interamericana de Derechos Humanos en adelante la Corte Interamericana la Corte o el Tribunal el de septiembre de Las resoluciones de supervisi\u00f3n de cumplimiento de la", - "values": [ - "Supervisi\u00f3n de cumplimiento de Sentencia" - ] - }, - { - "text": "INTERAMERICAN COURT OF HUMAN RIGHTS CASE OF CHOCR\u00d3N CHOCR\u00d3N v. VENEZUELA JUDGMENT OF JULY Preliminary objection merits reparations and costs In the Case of Chocr\u00f3n Chocr\u00f3n the InterAmerican Court of Human Rights hereinafter the InterAmerican Court or the Court composed of the following judges Diego Garc\u00edaSay\u00e1n President Leonardo A. Franco Vice President Manuel E. Ventura Robles Judge Margarette May Macaulay Judge Rhadys Abreu Blondet Judge Eduardo Vio Grossi Judge also present Pablo Saavedra ", - "values": [ - "Excepciones Preliminares", - "Fondo", - "Reparaciones", - "Costas" - ] - }, - { - "text": "RESOLUCI\u00d3N DE LA CORTE INTERAMERICANA DE DERECHOS HUMANOS DE DE JULIO DE CASO DE LA MASACRE DE LAS DOS ERRES VS. GUATEMALA SUPERVISI\u00d3N DE CUMPLIMIENTO DE SENTENCIA VISTO La Sentencia de excepci\u00f3n preliminar fondo reparaciones y costas en adelante la Sentencia dictada por la Corte Interamericana de Derechos Humanos en adelante la Corte Interamericana la Corte o el Tribunal el de noviembre de mediante la cual inter alia dispuso que El Estado debe investigar sin mayor dilaci\u00f3n de forma seria", - "values": [ - "Supervisi\u00f3n de cumplimiento de Sentencia" - ] - }, - { - "text": "RESOLUCI\u00d3N DE LA CORTE INTERAMERICANA DE DERECHOS HUMANOS DE DE FEBRERO DE CASO LAS PALMERAS VS. COLOMBIA SUPERVISI\u00d3N DE CUMPLIMIENTO DE SENTENCIA VISTOS La Sentencia de fondo dictada por la Corte Interamericana de Derechos Humanos en adelante la Corte la Corte Interamericana o el Tribunal el de diciembre de La Sentencia de reparaciones dictada por la Corte Interamericana el de noviembre de Las Resoluciones de la Corte de de noviembre de y de agosto de En esta \u00faltima el Tribunal ", - "values": [ - "Supervisi\u00f3n de cumplimiento de Sentencia" - ] - }, - { - "text": "RESOLUCI\u00d3N DE LA CORTE INTERAMERICANA DE DERECHOS HUMANOS DE DE FEBRERO DE MEDIDAS PROVISIONALES SOLICITADAS POR LA COMISI\u00d3N INTERAMERICANA DE DERECHOS HUMANOS RESPECTO DE LA REP\u00daBLICA DE COLOMBIA CASO GIRALDO CARDONA VISTOS El escrito del de octubre de mediante el cual la Comisi\u00f3n Interamericana de Derechos Humanos en adelante la Comisi\u00f3n o la Comisi\u00f3n Interamericana remiti\u00f3 a la Corte Interamericana de Derechos Humanos en adelante la Corte o la Corte Interamericana con fundamento en los ", - "values": [ - "Medidas Provisionales" - ] - }, - { - "text": "Resoluci\u00f3n de la Corte Interamericana de Derechos Humanos De de enero de Caso Servell\u00f3n Garc\u00eda y otros Vs. Honduras Supervisi\u00f3n de Cumplimiento de Sentencia VISTOS La Sentencia de fondo reparaciones y costas emitida el de septiembre de en adelante la Sentencia por la Corte Interamericana de Derechos Humanos en adelante la Corte la Corte Interamericana o el Tribunal mediante la cual el Tribunal DISPUSO que El Estado debe emprender con seriedad en un plazo razonable todas las acciones ", - "values": [ - "Supervisi\u00f3n de cumplimiento de Sentencia" - ] - }, - { - "text": "RESOLUCI\u00d3N DE LA CORTE INTERAMERICANA DE DERECHOS HUMANOS DE DE SEPTIEMBRE DE MEDIDAS PROVISIONALES CASO DE LA MASACRE DE MAPIRIP\u00c1N vs. COLOMBIA VISTO La Resoluci\u00f3n de medidas urgentes dictada por el entonces Presidente de la Corte Interamericana de Derechos Humanos en adelante la Corte Interamericana la Corte o el Tribunal de de febrero de La Resoluci\u00f3n dictada por la Corte el de junio de mediante la cual resolvi\u00f3 inter alia Ratificar la Resoluci\u00f3n del Presidente de medidas urgentes ", - "values": [ - "Medidas Provisionales" - ] - }, - { - "text": "CORTE INTERAMERICANA DE DERECHOS HUMANOS CASO CRUZ S\u00c1NCHEZ Y OTROS VS. PER\u00da SENTENCIA DE DE ABRIL DE Excepciones Preliminares Fondo Reparaciones y Costas En el caso Cruz S\u00e1nchez y otros la Corte Interamericana de Derechos Humanos en adelante la Corte Interamericana la Corte o el Tribunal integrada por los siguientes Jueces Humberto Antonio Sierra Porto Presidente Roberto F. Caldas Vicepresidente Manuel E. Ventura Robles Juez Alberto P\u00e9rez P\u00e9rez Juez Eduardo Vio Grossi Juez y Eduardo Ferrer ", - "values": [ - "Costas", - "Fondo", - "Excepciones Preliminares", - "Reparaciones" - ] - }, - { - "text": "VOTO RAZONADO CONCURRENTE Juez Oliver Jackman En la presente sentencia la Corte reconoce la ocurrencia de un da\u00f1o al proyecto de vida del se\u00f1or Wilson Guti\u00e9rrez Soler derivado de la violaci\u00f3n de sus derechos humanos Ha decidido sin embargo no cuantificar este da\u00f1o en t\u00e9rminos econ\u00f3micos ya que la condena que se hace en otros puntos de la presente sentencia contribuye a compensar al se\u00f1or Wilson Guti\u00e9rrez Soler por sus da\u00f1os materiales e inmateriales. En el Caso Loayza Tamayo el Tribunal tambi\u00e9n", - "values": [ - "Voto Separado" - ] - }, - { - "text": "RESOLUCI\u00d3N DE LA CORTE INTERAMERICANA DE DERECHOS HUMANOS DE DE NOVIEMBRE DE CASO CABALLERO DELGADO Y SANTANA CUMPLIMIENTO DE SENTENCIA VISTOS La sentencia de fondo dictada en el Caso Caballero Delgado y Santana vs. Colombia por la Corte Interamericana de Derechos Humanos en adelante la Corte la Corte Interamericana o el Tribunal el de diciembre de en la que dispuso en los puntos resolutivos pertinentes que Por unanimidad Decide que la Rep\u00fablica de Colombia est\u00e1 obligada a continuar los ", - "values": [ - "Supervisi\u00f3n de cumplimiento de Sentencia" - ] - }, - { - "text": "VOTO PARCIALMENTE DISIDENTE DEL JUEZ ALBERTO P\u00c9REZ P\u00c9REZ Estoy totalmente de acuerdo con las partes fundamentales de la Sentencia por la cual se acepta el reconocimiento parcial de responsabilidad internacional efectuado por el Estado y se determina que el Estado viol\u00f3 en perjuicio del Senador Manuel Cepeda Vargas los derechos a la vida e integridad personal a la protecci\u00f3n de la honra y la dignidad la libertad de pensamiento y expresi\u00f3n la libertad de asociaci\u00f3n y los derechos pol\u00edticos en ", - "values": [ - "Voto Separado" - ] - }, - { - "text": "RESOLUCI\u00d3N DE LA CORTE INTERAMERICANA DE DERECHOS HUMANOS DE DE ENERO DE CASO DE LOS NI\u00d1OS DE LA CALLE VILLAGR\u00c1N MORALES Y OTROS VS. GUATEMALA SUPERVISI\u00d3N DE CUMPLIMIENTO DE SENTENCIA VISTO La Sentencia de fondo dictada por la Corte Interamericana de Derechos Humanos en adelante la Corte la Corte Interamericana o el Tribunal el de noviembre de La Sentencia de reparaciones y costas dictada por la Corte Interamericana el de mayo de La Resoluci\u00f3n de la Corte de de noviembre de mediante ", - "values": [ - "Supervisi\u00f3n de cumplimiento de Sentencia" - ] - }, - { - "text": " RESOLUCI\u00d3N DE LA CORTE INTERAMERICANA DE DERECHOS HUMANOS DE DE NOVIEMBRE DE SOLICITUD DE MEDIDAS PROVISIONALES PRESENTADA POR LA COMISI\u00d3N INTERAMERICANA DE DERECHOS HUMANOS RESPECTO DE LOS ESTADOS UNIDOS MEXICANOS CASO JORGE CASTA\u00d1EDA GUTMAN VISTO El escrito de la Comisi\u00f3n Interamericana de Derechos Humanos en adelante la Comisi\u00f3n Interamericana o la Comisi\u00f3n de de noviembre de y sus anexos mediante los cuales someti\u00f3 a la Corte Interamericana de Derechos Humanos en adelante la Corte la", - "values": [ - "Medidas Provisionales" - ] - }, - { - "text": "CORTE INTERAMERICANA DE DERECHOS HUMANOS CASO BARBANI DUARTE Y OTROS VS. URUGUAY SENTENCIA DE DE JUNIO DE Solicitud de Interpretaci\u00f3n de la Sentencia de Fondo Reparaciones y Costas En el caso Barbani Duarte y otros la Corte Interamericana de Derechos Humanos en adelante la Corte Interamericana la Corte o el Tribunal integrada por los siguientes jueces Diego Garc\u00edaSay\u00e1n Presidente Manuel E. Ventura Robles Vicepresidente Margarette May Macaulay Jueza Rhadys Abreu Blondet Jueza y Eduardo Vio ", - "values": [ - "Interpretaci\u00f3n" - ] - }, - { - "text": "Corte Interamericana de Derechos Humanos Caso Vel\u00e1squez Rodr\u00edguez Vs. Honduras Sentencia de de junio de Excepciones Preliminares En el caso Vel\u00e1squez Rodr\u00edguez la Corte Interamericana de Derechos Humanos integrada por los siguientes jueces Thomas Buergenthal Presidente Rafael Nieto Navia Vicepresidente Rodolfo E. Piza E Juez Pedro Nikken Juez H\u00e9ctor FixZamudio Juez H\u00e9ctor Gros Espiell Juez Rigoberto Espinal Ir\u00edas Juez ad hoc presentes adem\u00e1s Charles Moyer Secretario y Manuel Ventura Adjunto ", - "values": [ - "Excepciones Preliminares" - ] - }, - { - "text": "Corte Interamericana de Derechos Humanos Caso de la Comunidad Moiwana Vs. Suriname Sentencia de de junio de Excepciones Preliminares Fondo reparaciones y Costas En el Caso de la Comunidad Moiwana la Corte Interamericana de Derechos Humanos en adelante la Corte la Corte Interamericana o el Tribunal integrada por los siguientes jueces Sergio Garc\u00eda Ram\u00edrez Presidente Alirio Abreu Burelli Vicepresidente Oliver Jackman Juez Ant\u00f4nio A. Can\u00e7ado Trindade Juez Cecilia Medina Quiroga Jueza Manuel E. ", - "values": [ - "Excepciones Preliminares", - "Fondo", - "Reparaciones", - "Costas" - ] - }, - { - "text": "Corte Interamericana de Derechos Humanos Caso Benavides Cevallos Vs. Ecuador Sentencia de de junio de Fondo Reparaciones y Costas En el caso Benavides Cevallos la Corte Interamericana de Derechos Humanos integrada por los siguientes Jueces Ant\u00f4nio A. Can\u00e7ado Trindade Presidente Hern\u00e1n Salgado Pesantes Juez M\u00e1ximo Pacheco G\u00f3mez Juez Oliver Jackman Juez Alirio Abreu Burelli Juez Sergio Garc\u00eda Ram\u00edrez Juez y Carlos Vicente de Roux Rengifo Juez presentes adem\u00e1s Manuel E. Ventura Robles Secretario", - "values": [ - "Fondo", - "Reparaciones", - "Costas" - ] - }, - { - "text": "VOTO CONCURRENTE DE LA JUEZA RHADYS ABREU BLONDET EN RELACI\u00d3N CON LA SENTENCIA DE LA CORTE INTERAMERICANA DE DERECHOS HUMANOS EN EL CASO ROSENDO CANT\u00da Y OTRA VS. M\u00c9XICO DE DE AGOSTO DE He decidido presentar un voto razonado respecto a la Sentencia sobre el caso Rosendo Cant\u00fa y otra contra M\u00e9xico en raz\u00f3n de los siguientes puntos i el retiro por M\u00e9xico de su excepci\u00f3n preliminar respecto a la alegada incompetencia de la Corte Interamericana de Derechos Humanos en adelante la Corte la Corte o", - "values": [ - "Voto Separado" - ] - }, - { - "text": "RESOLUCI\u00d3N DE LA CORTE INTERAMERICANA DE DERECHOS HUMANOS DE DE JUNIO DE CASO DE LOS NI\u00d1OS DE LA CALLE Villagr\u00e1n Morales y Otros CUMPLIMIENTO DE SENTENCIA VISTO La Sentencia de Fondo emitida por la Corte Interamericana de Derechos Humanos en adelante la Corte el Tribunal o la Corte Interamericana el de noviembre de en la cual resolvi\u00f3 declarar que el Estado viol\u00f3 el art\u00edculo de la Convenci\u00f3n Americana sobre Derechos Humanos en conexi\u00f3n con el art\u00edculo de la misma en perjuicio de Henry ", - "values": [ - "Supervisi\u00f3n de cumplimiento de Sentencia" - ] - }, - { - "text": "VOTO SEPARADO DEL JUEZ PIZA ESCALANTE He concurrido en el voto un\u00e1nime de la Corte y en la l\u00ednea general de su razonamiento pero tengo que separarme de la tesis recogida en los p\u00e1rrafos y en cuanto invocan la aplicabilidad inmediata y no meramente anal\u00f3gica del art\u00edculo de la Convenci\u00f3n que regula las solicitudes de interpretaci\u00f3n del fallo. En este sentido tengo que observar que esas solicitudes se articulan en la citada norma de la Convenci\u00f3n s\u00f3lo en relaci\u00f3n con el fallo es decir con la", - "values": [ - "Voto Separado" - ] - }, - { - "text": "RESOLUCI\u00d3N DE LA CORTE INTERAMERICANA DE DERECHOS HUMANOS DE DE ABRIL DE CASO GARC\u00cdA LUCERO Y OTRAS VS. CHILE SUPERVISI\u00d3N DE CUMPLIMIENTO DE SENTENCIA VISTO La Sentencia de excepci\u00f3n preliminar fondo y reparaciones en adelante la Sentencia o el Fallo emitida por la Corte Interamericana de Derechos Humanos en adelante la Corte Interamericana la Corte o el Tribunal el de agosto de En ella el Tribunal declar\u00f3 la responsabilidad internacional de la Rep\u00fablica de Chile en adelante el Estado o ", - "values": [ - "Supervisi\u00f3n de cumplimiento de Sentencia" - ] - }, - { - "text": "VOTO CONCURRENTE RAZONADO DEL JUEZ SERGIO GARCIA RAMIREZ A LA SENTENCIA DE LA CORTE INTERAMERICANA DE DERECHOS HUMANOS EN EL CASO TIBI VS. ECUADOR DEL DE SEPTIEMBRE DE I. Sentido y trascendencia de las resoluciones de la Corte Interamericana En este Voto concurrente razonado que acompa\u00f1o a la Sentencia de excepciones preliminares fondo y reparaciones en el Caso Tibi vs. Ecuador dictada por la Corte Interamericana el de septiembre de pretendo referirme a varias cuestiones que dicha as\u00ed ", - "values": [ - "Voto Separado" - ] - }, - { - "text": "RESOLUCI\u00d3N DEL PRESIDENTE DE LA CORTE INTERAMERICANA DE DERECHOS HUMANOS DE DE DICIEMBRE DE CASO QUINTANA COELLO Y OTROS VS. ECUADOR VISTO El escrito de de agosto de mediante el cual la Comisi\u00f3n Interamericana de Derechos Humanos en adelante la Comisi\u00f3n Interamericana o la Comisi\u00f3n someti\u00f3 a la Corte Interamericana de Derechos Humanos en adelante la Corte Interamericana la Corte o el Tribunal un caso en contra de la Rep\u00fablica del Ecuador en adelante Ecuador o el Estado mediante el cual un", - "values": [ - "Otros" - ] - }, - { - "text": "Resoluci\u00f3n de la Presidenta de la Corte Interamericana de Derechos Humanos de de agosto de Caso Montero Aranguren y otros Ret\u00e9n de Catia Vs. Venezuela Supervisi\u00f3n de Cumplimiento de Sentencia Visto La Sentencia de excepci\u00f3n preliminar fondo reparaciones y costas en adelante la Sentencia emitida en el presente caso por la Corte Interamericana de Derechos Humanos en adelante la Corte la Corte Interamericana o el Tribunal el de julio de mediante la cual dispuso que el Estado de Venezuela en ", - "values": [ - "Supervisi\u00f3n de cumplimiento de Sentencia" - ] - }, - { - "text": "RESOLUCI\u00d3N DE LA CORTE INTERAMERICANA DE DERECHOS HUMANOS DE DE ABRIL DE SOLICITUD DE MEDIDAS PROVISIONALES RESPECTO DEL ESTADO DE EL SALVADOR CASO DE LAS HERMANAS SERRANO CRUZ VISTOS La Sentencia de fondo reparaciones y costas emitida por la Corte Interamericana de Derechos Humanos en adelante la Corte o el Tribunal el de marzo de en el caso de las Hermanas Serrano Cruz respecto del Estado de El Salvador en adelante el Estado o El Salvador. El escrito de de marzo de y sus anexos los ", - "values": [ - "Medidas Provisionales" - ] - }, - { - "text": "VOTO CONCORRENTE DA JU\u00cdZA CECILIA MEDINA QUIROGA EM RELA\u00c7\u00c3O \u00c0 SENTEN\u00c7A DA CORTE INTERAMERICANA DE DIREITOS HUMANOS NO CASO GONZ\u00c1LEZ E OUTRAS CAMPO ALGODOEIRO VS. M\u00c9XICO DE DE NOVEMBRO DE Mesmo quando concordo com a decis\u00e3o da Corte Interamericana de Direitos Humanos doravante denominada Corte ou Tribunal neste caso no sentido de que existe uma viola\u00e7\u00e3o do artigo da Conven\u00e7\u00e3o Americana sobre Direitos Humanos doravante denominada Conven\u00e7\u00e3o Americana ou Conven\u00e7\u00e3o n\u00e3o concordo com o fato de que", - "values": [ - "Voto Separado" - ] - }, - { - "text": "Resoluci\u00f3n del Presidente en Ejercicio de la Corte Interamericana de Derechos Humanos De de junio de Caso Claude Reyes y otros Vs. Chile Supervisi\u00f3n de Cumplimiento de Sentencia VISTO La Sentencia de fondo reparaciones y costas de de septiembre de en adelante la Sentencia emitida por la Corte Interamericana de Derechos Humanos en adelante la Corte Interamericana la Corte o el Tribunal. Los escritos de de febrero de y su anexo de marzo de y sus anexos de junio de de julio de y su ", - "values": [ - "Supervisi\u00f3n de cumplimiento de Sentencia" - ] - }, - { - "text": " CORTE INTERAMERICANA DE DIREITOS HUMANOS CASO ACEVEDO BUEND\u00cdA E OUTROS DEMITIDOS E APOSENTADOS DA CONTROLADORIA VS. PERU SENTEN\u00c7A DE DE JULHO DE Exce\u00e7\u00e3o Preliminar M\u00e9rito Repara\u00e7\u00f5es e Custas No caso Acevedo Buend\u00eda e outros Demitidos e Aposentados da Controladoria a Corte Interamericana de Direitos Humanos doravante denominada a Corte a Corte Interamericana ou o Tribunal integrada pelos seguintes ju\u00edzes Cecilia Medina Quiroga Presidenta Sergio Garc\u00eda Ram\u00edrez Juiz Manuel E. Ventura Robles ", - "values": [ - "Excepciones Preliminares", - "Fondo", - "Reparaciones", - "Costas" - ] - }, - { - "text": "VOTO RAZONADO DEL JUEZ A. A. CAN\u00c7ADO TRINDADE He concurrido con mi voto para la adopci\u00f3n de la presente Sentencia de la Corte Interamericana de Derechos Humanos en el caso Blanco Romero y Otros versus Venezuela. Me veo adem\u00e1s en la obligaci\u00f3n de dejar constancia en este Voto Razonado de las reflexiones personales que me ha suscitado la presente Sentencia de la Corte en particular en relaci\u00f3n con el derecho a la verdad y con las formas de reparaci\u00f3n tal como lo he hecho en cuanto a este segundo", - "values": [ - "Voto Separado" - ] - }, - { - "text": "RESOLUCI\u00d3N DEL PRESIDENTE DE LA CORTE INTERAMERICANA DE DERECHOS HUMANOS DE DE DICIEMBRE DE CASO CHOCR\u00d3N CHOCR\u00d3N VS. VENEZUELA VISTO El escrito de demanda presentado por la Comisi\u00f3n Interamericana de Derechos Humanos en adelante la Comisi\u00f3n Interamericana o la Comisi\u00f3n ante la Corte Interamericana de Derechos Humanos en adelante la Corte Interamericana la Corte o el Tribunal el de noviembre de en el que ofreci\u00f3 la declaraci\u00f3n de la presunta v\u00edctima el dictamen de dos peritos y solicit\u00f3 la ", - "values": [ - "Otros" - ] - }, - { - "text": "RESOLUCI\u00d3N DEL PRESIDENTE DE LA CORTE INTERAMERICANA DE DERECHOS HUMANOS DE DE JULIO DE FONDO DE ASISTENCIA LEGAL DE V\u00cdCTIMAS CASO FLOR FREIRE VS. ECUADOR VISTO El escrito de de diciembre de y sus anexos mediante los cuales la Comisi\u00f3n Interamericana de Derechos Humanos en adelante la Comisi\u00f3n Interamericana o la Comisi\u00f3n someti\u00f3 ante la Corte Interamericana de Derechos Humanos en adelante la Corte Interamericana la Corte o el Tribunal el presente caso. El escrito de de febrero de el ", - "values": [ - "Fondo de asistencia a v\u00edctimas" - ] - }, - { - "text": "RESOLUCI\u00d3N DEL PRESIDENTE DE LA CORTE INTERAMERICANA DE DERECHOS HUMANOS DE JUNIO DE CASO PUEBLO IND\u00cdGENA KICHWA DE SARAYAKU vs. ECUADOR VISTO El escrito de demanda presentado el de abril de y sus anexos recibidos el de mayo siguiente por la Comisi\u00f3n Interamericana de Derechos Humanos en adelante la Comisi\u00f3n Interamericana o la Comisi\u00f3n ante la Corte Interamericana de Derechos Humanos en adelante la Corte Interamericana la Corte o el Tribunal contra la Rep\u00fablica del Ecuador en adelante el", - "values": [ - "Otros" - ] - }, - { - "text": "VOTO PARCIALMENTE DISIDENTE DEL JUEZ EDUARDO FERRER MACGREGOR POISOT A LA SENTENCIA DE LA CORTE INTERAMERICANA DE DERECHOS HUMANOS EN EL CASO DEL TRIBUNAL CONSTITUCIONAL CAMBA CAMPOS Y OTROS VS. ECUADOR DE DE AGOSTO DE I. EXORDIO La separaci\u00f3n de poderes constituye un elemento sustancial de la democracia constitucional. La independencia judicial en su faceta individual y colectiva representa un aspecto indisoluble para la consolidaci\u00f3n y existencia misma de un genuino Estado constitucional y", - "values": [ - "Voto Separado" - ] - }, - { - "text": "RESOLUCI\u00d3N DE LA CORTE INTERAMERICANA DE DERECHOS HUMANOS DE DE AGOSTO DE CASO CANTOS Vs. ARGENTINA SUPERVISI\u00d3N DE CUMPLIMIENTO DE SENTENCIA VISTO La Sentencia de fondo reparaciones y costas emitida por la Corte Interamericana de Derechos Humanos en adelante la Corte Interamericana la Corte o el Tribunal el de noviembre de en adelante la Sentencia. Las Resoluciones de la Corte Interamericana de de noviembre de de julio de y de julio de sobre el cumplimiento de la Sentencia. En esta ", - "values": [ - "Supervisi\u00f3n de cumplimiento de Sentencia" - ] - }, - { - "text": "RESOLUCI\u00d3N DE LA CORTE INTERAMERICANA DE DERECHOS HUMANOS DE FEBRERO DE CASO TICONA VS. BOLIVIA SUPERVISI\u00d3N DE CUMPLIMIENTO DE SENTENCIA VISTOS La Sentencia de fondo reparaciones y costas en adelante la Sentencia dictada por la Corte Interamericana de Derechos Humanos en adelante la Corte Interamericana la Corte o el Tribunal el de noviembre de la cual dispuso La Sentencia constituye per se una forma de reparaci\u00f3n. El Estado debe continuar con la tramitaci\u00f3n del proceso penal seguido por", - "values": [ - "Supervisi\u00f3n de cumplimiento de Sentencia" - ] - }, - { - "text": "RESOLUCI\u00d3N DE LA CORTE INTERAMERICANA DE DERECHOS HUMANOS DE DE NOVIEMBRE DE CASO B\u00c1MACA VEL\u00c1SQUEZ VS. GUATEMALA CUMPLIMIENTO DE SENTENCIA VISTOS La Sentencia de fondo dictada en el Caso B\u00e1maca Vel\u00e1squez vs. Guatemala por la Corte Interamericana de Derechos Humanos en adelante la Corte la Corte Interamericana o el Tribunal de de noviembre de mediante la cual declar\u00f3 que el Estado viol\u00f3 en perjuicio de Efra\u00edn B\u00e1maca Vel\u00e1squez el derecho a la libertad personal consagrado en el art\u00edculo de ", - "values": [ - "Supervisi\u00f3n de cumplimiento de Sentencia" - ] - }, - { - "text": "RESOLUCI\u00d3N DE LA CORTE INTERAMERICANA DE DERECHOS HUMANOS DE DE FEBRERO DE CASO VERA VERA Y OTRA VS. ECUADOR SUPERVISI\u00d3N DE CUMPLIMIENTO DE SENTENCIA VISTO La Sentencia de excepci\u00f3n preliminar fondo reparaciones y costas en adelante la Sentencia dictada por la Corte Interamericana de Derechos Humanos en adelante la Corte Interamericana la Corte o el Tribunal el de mayo de mediante la cual dispuso que El Estado deber\u00e1 adoptar en un plazo razonable las medidas necesarias para que la madre ", - "values": [ - "Supervisi\u00f3n de cumplimiento de Sentencia" - ] - }, - { - "text": "RESOLUCI\u00d3N DE LA CORTE INTERAMERICANA DE DERECHOS HUMANOS DE DE MAYO CASO RADILLA PACHECO VS. M\u00c9XICO SUPERVISI\u00d3N DE CUMPLIMIENTO DE SENTENCIA VISTO La Sentencia de excepciones preliminares fondo reparaciones y costas en adelante la Sentencia o el Fallo dictada por la Corte Interamericana de Derechos Humanos en adelante la Corte Interamericana la Corte o el Tribunal el de noviembre de En dicho Fallo se estableci\u00f3 que el de agosto de efectivos del Ej\u00e9rcito de los Estados Unidos Mexicanos ", - "values": [ - "Supervisi\u00f3n de cumplimiento de Sentencia" - ] - }, - { - "text": "RESOLUCI\u00d3N DEL PRESIDENTE DE LA CORTE INTERAMERICANA DE DERECHOS HUMANOS DE DE JUNIO DE FONDO DE ASISTENCIA LEGAL DE V\u00cdCTIMAS CASO COMUNIDAD CAMPESINA DE SANTA B\u00c1RBARA VS. PER\u00da VISTO El escrito de de julio de y sus anexos mediante los cuales la Comisi\u00f3n Interamericana de Derechos Humanos en adelante la Comisi\u00f3n Interamericana o la Comisi\u00f3n someti\u00f3 el caso Comunidad Campesina de Santa B\u00e1rbara ante la Corte Interamericana de Derechos Humanos en adelante la Corte Interamericana la Corte o el ", - "values": [ - "Fondo de asistencia a v\u00edctimas" - ] - }, - { - "text": "SEPARATE OPINION OF JUDGE DE ROUX RENGIFO The Court abstained from declaring that Maritza Urrutias right to freedom of expression as established in Article of the American Convention had been violated. I do not share this position but as the judgment does not include an operative paragraph in this regard from a procedural point of view this opinion cannot be of a dissenting nature but rather of a separate line of reasoning. Article begins with a generic formula Everyone has the right to of ", - "values": [ - "Voto Separado" - ] - }, - { - "text": "RESOLUCI\u00d3N DEL PRESIDENTE EN EJERCICIO DE LA CORTE INTERAMERICANA DE DERECHOS HUMANOS DE DE ABRIL DE CASO J. VS. PER\u00da VISTO El escrito de de enero de mediante el cual la Comisi\u00f3n Interamericana de Derechos Humanos en adelante la Comisi\u00f3n Interamericana o la Comisi\u00f3n someti\u00f3 ante la Corte Interamericana de Derechos Humanos en adelante la Corte Interamericana la Corte o el Tribunal un caso en contra de la Rep\u00fablica del Per\u00fa en adelante Per\u00fa o el Estado y ofreci\u00f3 dos dict\u00e1menes periciales. ", - "values": [ - "Otros" - ] - }, - { - "text": "RESOLUCI\u00d3N DE LA CORTE INTERAMERICANA DE DERECHOS HUMANOS DE DE NOVIEMBRE DE CASO CANTORAL BENAVIDES CUMPLIMIENTO DE SENTENCIA VISTOS La sentencia de fondo dictada en el Caso Cantoral Benavides vs. Per\u00fa por la Corte Interamericana de Derechos Humanos en adelante la Corte la Corte Interamericana o el Tribunal el de agosto de en la que dispuso en los puntos resolutivos d\u00e9cimo segundo y d\u00e9cimo tercero que decide que el Estado debe ordenar una investigaci\u00f3n para determinar las personas de ", - "values": [ - "Supervisi\u00f3n de cumplimiento de Sentencia" - ] - }, - { - "text": "RESOLUCI\u00d3N DE LA CORTE INTERAMERICANA DE DERECHOS HUMANOS DE DE DICIEMBRE DE MEDIDAS PROVISIONALES RESPECTO DE LA REP\u00daBLICA DE COLOMBIA CASO CLEMENTE TEHER\u00c1N Y OTROS COMUNIDAD IND\u00cdGENA ZEN\u00da VISTOS La Resoluci\u00f3n de la Corte Interamericana de Derechos Humanos en adelante la Corte dictada el de junio de mediante la cual resolvi\u00f3 Ratificar la Resoluci\u00f3n del Presidente de la Corte Interamericana de Derechos Humanos de de marzo de Requerir al Estado de Colombia que mantenga las medidas para", - "values": [ - "Medidas Provisionales" - ] - }, - { - "text": "RESOLUCI\u00d3N DE LA CORTE INTERAMERICANA DE DERECHOS HUMANOS DE DE FEBRERO DE CASO G\u00d3MEZ PALOMINO VS. PER\u00da SUPERVISI\u00d3N DE CUMPLIMIENTO DE SENTENCIA VISTO La Sentencia de fondo reparaciones y costas en adelante la Sentencia dictada por la Corte Interamericana de Derechos Humanos en adelante la Corte Interamericana la Corte o el Tribunal el de noviembre de El caso se refiere a la desaparici\u00f3n forzada del se\u00f1or Santiago Fortunato G\u00f3mez Palomino a la falta de cumplimiento de la obligaci\u00f3n de ", - "values": [ - "Supervisi\u00f3n de cumplimiento de Sentencia" - ] - }, - { - "text": "RESOLUCI\u00d3N DE LA CORTE INTERAMERICANA DE DERECHOS HUMANOS DE DE FEBRERO DE MEDIDAS PROVISIONALES RESPECTO DE M\u00c9XICO CASO ROSENDO CANT\u00da Y OTRA VISTO Las Resoluciones de la Corte Interamericana de Derechos Humanos en adelante la Corte Interamericana la Corte o este Tribunal de de febrero de de julio de y de junio de mediante las cuales se orden\u00f3 la adopci\u00f3n de medidas provisionales en el presente caso y se supervis\u00f3 su implementaci\u00f3n. En la \u00faltima Resoluci\u00f3n este Tribunal resolvi\u00f3 inter ", - "values": [ - "Medidas Provisionales" - ] - }, - { - "text": "RESOLUCI\u00d3N DE LA CORTE INTERAMERICANA DE DERECHOS HUMANOS DE DE FEBRERO DE CASO KAWAS FERN\u00c1NDEZ VS. HONDURAS SUPERVISI\u00d3N DE CUMPLIMIENTO DE SENTENCIA VISTO La Sentencia de fondo reparaciones y costas en adelante la Sentencia dictada por la Corte Interamericana de Derechos Humanos en adelante la Corte Interamericana la Corte o el Tribunal el de abril de mediante la cual inter alia dispuso que el Estado debe pagar a los se\u00f1ores Blanca Fern\u00e1ndez Selsa Damaris Watt Kawas Jaime Alejandro ", - "values": [ - "Supervisi\u00f3n de cumplimiento de Sentencia" - ] - }, - { - "text": "CORTE INTERAMERICANA DE DERECHOS HUMANOS CASO PEROZO Y OTROS VS. VENEZUELA SENTENCIA DE DE ENERO DE EXCEPCIONES PRELIMINARES FONDO REPARACIONES Y C OSTAS En el caso Perozo y otros vs. Venezuela la Corte Interamericana de Derechos Humanos en adelante la Corte Interamericana la Corte o el Tribunal integrada por los siguientes jueces Cecilia Medina Quiroga Presidenta Sergio Garc\u00eda Ram\u00edrez Juez Manuel E. Ventura Robles Juez Leonardo A. Franco Juez Margarette May Macaulay Jueza Rhadys Abreu Jueza", - "values": [ - "Excepciones Preliminares", - "Fondo", - "Reparaciones", - "Costas" - ] - }, - { - "text": "Corte Interamericana de Derechos Humanos Caso Su\u00e1rez Rosero Vs. Ecuador Sentencia de de enero de Reparaciones y Costas En el caso Su\u00e1rez Rosero la Corte Interamericana de Derechos Humanos en adelante la Corte la Corte Interamericana o el Tribunal integrada por los siguientes jueces Ant\u00f4nio A. Can\u00e7ado Trindade Presidente Hern\u00e1n Salgado Pesantes Juez M\u00e1ximo Pacheco G\u00f3mez Juez Oliver Jackman Juez Alirio Abreu Burelli Juez Sergio Garc\u00eda Ram\u00edrez Juez Carlos Vicente de Roux Rengifo Juez presentes ", - "values": [ - "Reparaciones", - "Costas" - ] - }, - { - "text": " VOTO RAZONADO DEL JUEZ JULIO A. BARBERIS La sentencia que antecede resuelve que el Estado argentino ha infringido los art\u00edculos y de la Convenci\u00f3n americana sobre Derechos humanos conclusi\u00f3n que se apoya en el an\u00e1lisis de los hechos y del derecho expuestos en ella. Pero en lugar de decidir simplemente que el Estado argentino ha violado los art\u00edculos indicados utiliza un lenguaje peculiar dice que ha violado las disposiciones mencionadas en relaci\u00f3n con el art\u00edculo de la Convenci\u00f3n. Esta ", - "values": [ - "Voto Separado" - ] - }, - { - "text": "RESOLUCI\u00d3N DE LA CORTE INTERAMERICANA DE DERECHOS HUMANOS DE DE JULIO DE CASO CASTA\u00d1EDA GUTMAN VS. ESTADOS UNIDOS MEXICANOS SUPERVISI\u00d3N DE CUMPLIMIENTO DE SENTENCIA VISTO La Sentencia de excepciones preliminares fondo reparaciones y costas en adelante la Sentencia de de agosto de mediante la cual la Corte Interamericana de Derechos Humanos en adelante la Corte Interamericana la Corte o el Tribunal dispuso inter alia que El Estado debe en un plazo razonable completar la adecuaci\u00f3n de su ", - "values": [ - "Supervisi\u00f3n de cumplimiento de Sentencia" - ] - }, - { - "text": "Resoluci\u00f3n de la Corte Interamericana de Derechos Humanos Del de diciembre del Solicitud de Medidas Provisionales Respecto del Estado de Barbados Caso Tyrone Dacosta Cadogan VISTOS El escrito del de octubre de mediante el cual la Comisi\u00f3n Interamericana de Derechos Humanos en adelante la Comisi\u00f3n o la Comisi\u00f3n Interamericana present\u00f3 a la Corte Interamericana de Derechos Humanos en adelante la Corte la Corte Interamericana o el Tribunal de conformidad con el art\u00edculo de la Convenci\u00f3n ", - "values": [ - "Medidas Provisionales" - ] - }, - { - "text": "VOTO RAZONADO CONJUNTO DE LOS JUECES AA. CAN\u00c7ADO TRINDADE Y A. ABREU BURELLI Al votar en favor de la presente Sentencia de reparaciones dictada por la Corte Interamericana de Derechos Humanos en el caso Castillo P\u00e1ez versus Per\u00fa nos permitimos referirnos a las ponderaciones de nuestro Voto Razonado Conjunto p\u00e1rrafos en la Sentencia de reparaciones en el caso Loayza Tamayo versus Per\u00fa de esta misma fecha. Ah\u00ed expusimos nuestro entendimiento de igual incidencia en el presente caso de que la ", - "values": [ - "Voto Separado" - ] - }, - { - "text": "RESOLUCI\u00d3N DEL PRESIDENTE DE LA CORTE INTERAMERICANA DE DERECHOS HUMANOS DE DE FEBRERO DE SOLICITUD DE MEDIDAS PROVISIONALES DE LA COMISI\u00d3N INTERAMERICANA DE DERECHOS HUMANOS RESPECTO DE LOS ESTADOS UNIDOS MEXICANOS CASO GALLARDO RODR\u00cdGUEZ VISTO El escrito de la Comisi\u00f3n Interamericana de Derechos Humanos en adelante la Comisi\u00f3n o la Comisi\u00f3n Interamericana de de diciembre de mediante el cual present\u00f3 una solicitud de medidas provisionales para evitar da\u00f1os irreparables al General Jos\u00e9 ", - "values": [ - "Medidas Provisionales" - ] - }, - { - "text": "Resoluci\u00f3n de la Corte Interamericana de Derechos Humanos de febrero de Medidas Provisionales Respecto de El Salvador Asunto Adri\u00e1n Mel\u00e9ndez Quijano y Otros Visto La Resoluci\u00f3n de la Corte Interamericana de Derechos Humanos en adelante la Corte Interamericana la Corte o el Tribunal de de mayo de mediante la cual ratific\u00f3 la Resoluci\u00f3n de la Presidencia de la Corte de de marzo de y ratific\u00f3 las medidas adoptadas a favor de Adri\u00e1n Mel\u00e9ndez Quijano Marina Elizabeth Garc\u00eda de Mel\u00e9ndez Andrea", - "values": [ - "Medidas Provisionales" - ] - }, - { - "text": "VOTO CONCURRENTE DE JUEZ EDUARDO VIO GROSSI CASO GELMAN VSURUGUAY SENTENCIA DE DE FEBRERO DE Fondo y Reparaciones Formulo el presente voto concurrente con la citada sentencia llamando la atenci\u00f3n con respecto a ciertos aspectos abordados en ella. El primero dice relaci\u00f3n con la estrecha relaci\u00f3n entre la situaci\u00f3n de Mar\u00eda Claudia Garc\u00eda Iruretagoyena de Gelman y la de su hija Mar\u00eda Macarena Gelman Garc\u00eda las que en definitiva podr\u00edan configurar una unidad. As\u00ed la desaparici\u00f3n forzada de la ", - "values": [ - "Voto Separado" - ] - }, - { - "text": "Resoluci\u00f3n de la Corte Interamericana de Derechos Humanos de de noviembre de Medidas Provisionales respecto de Hait\u00ed Asunto Lysias Fleury Vistos El escrito de la Comisi\u00f3n Interamericana de Derechos Humanos en adelante la Comisi\u00f3n o la Comisi\u00f3n Interamericana de de marzo de mediante el cual someti\u00f3 a la Corte Interamericana de Derechos Humanos en adelante la Corte la Corte Interamericana o el Tribunal de acuerdo con el art\u00edculo de la Convenci\u00f3n Americana sobre Derechos Humanos en adelante ", - "values": [ - "Medidas Provisionales" - ] - }, - { - "text": "RESOLUCI\u00d3N DEL PRESIDENTE EN EJERCICIO DE LA CORTE INTERAMERICANA DE DERECHOS HUMANOS DE DE OCTUBRE DE FONDO DE ASISTENCIA LEGAL DE V\u00cdCTIMAS CASO J. VS. PER\u00da VISTO El escrito de de enero de y sus anexos mediante los cuales la Comisi\u00f3n Interamericana de Derechos Humanos en adelante la Comisi\u00f3n Interamericana o la Comisi\u00f3n someti\u00f3 a la Corte Interamericana de Derechos Humanos en adelante la Corte Interamericana la Corte o el Tribunal el presente caso en contra de la Rep\u00fablica del Per\u00fa en ", - "values": [ - "Fondo de asistencia a v\u00edctimas" - ] - }, - { - "text": "RESOLUCI\u00d3N DE LA CORTE INTERAMERICANA DE DERECHOS HUMANOS DE DE JUNIO DE CASO BAENA RICARDO Y OTROS TRABAJADORES VS. PANAM\u00c1 CUMPLIMIENTO DE SENTENCIA VISTOS La sentencia dictada en el caso Baena Ricardo y otros por la Corte Interamericana de Derechos Humanos en adelante la Corte la Corte Interamericana o el Tribunal el de febrero de en cuyos puntos resolutivos por unanimidad declar\u00f3 que el Estado viol\u00f3 los principios de legalidad y de irretroactividad consagrados en el art\u00edculo de la ", - "values": [ - "Supervisi\u00f3n de cumplimiento de Sentencia" - ] - }, - { - "text": "Resoluci\u00f3n de la Corte Interamericana de Derechos Humanos De de mayo de Caso Ximenes Lopes Vs. Brasil Supervisi\u00f3n de Cumplimiento de Sentencia VISTO La Sentencia de fondo reparaciones y costas de de julio de en adelante la Sentencia emitida por la Corte Interamericana de Derechos Humanos en adelante la Corte Interamericana la Corte o el Tribunal mediante la cual dispuso que El Estado debe garantizar en un plazo razonable que el proceso interno tendiente a investigar y sancionar a los de", - "values": [ - "Supervisi\u00f3n de cumplimiento de Sentencia" - ] - }, - { - "text": "RESOLUCI\u00d3N DE LA CORTE INTERAMERICANA DE DERECHOS HUMANOS DE DE AGOSTO DE MEDIDAS PROVISIONALES SOLICITADAS POR LA COMISI\u00d3N INTERAMERICANA DE DERECHOS HUMANOS RESPECTO DE LA REP\u00daBLICA DE GUATEMALA CASO BLAKE VISTOS La Resoluci\u00f3n del Presidente de la Corte Interamericana de Derechos Humanos de de agosto de La Resoluci\u00f3n de la Corte Interamericana de Derechos Humanos de de septiembre de que dispuso Ratificar la Resoluci\u00f3n del Presidente del de agosto de y solicitar al Gobierno de la ", - "values": [ - "Medidas Provisionales" - ] - }, - { - "text": "Resoluci\u00f3n de la Presidenta de la Corte Interamericana de Derechos Humanos de de mayo de Caso Juan Humberto S\u00e1nchez Vs. Honduras Supervisi\u00f3n de Cumplimiento de Sentencia Visto La Sentencia de excepci\u00f3n preliminar fondo reparaciones y costas en adelante la Sentencia dictada por la Corte Interamericana de Derechos Humanos en adelante la Corte Interamericana la Corte o el Tribunal el de junio de en el presente caso. Las resoluciones de supervisi\u00f3n de cumplimiento de la Sentencia dictadas por", - "values": [ - "Supervisi\u00f3n de cumplimiento de Sentencia" - ] - }, - { - "text": "RESOLUCI\u00d3N DE LA CORTE INTERAMERICANA DE DERECHOS HUMANOS DE DE AGOSTO DE CASO DEL TRIBUNAL CONSTITUCIONAL AGUIRRE ROCA REY FERRY Y REVOREDO MARSANO VS. PER\u00da SUPERVISI\u00d3N DE CUMPLIMIENTO DE SENTENCIA VISTOS La Sentencia dictada por la Corte Interamericana de Derechos Humanos en adelante la Corte la Corte Interamericana o el Tribunal el de enero de mediante la cual declar\u00f3 que el Estado viol\u00f3 en perjuicio de Manuel Aguirre Roca Guillermo Rey Terry y Delia Revoredo Marsano el derecho a las ", - "values": [ - "Supervisi\u00f3n de cumplimiento de Sentencia" - ] - }, - { - "text": "RESOLUCI\u00d3N DEL PRESIDENTE DE CORTE INTERAMERICANA DE DERECHOS HUMANOS DE DE FEBRERO MEDIDAS PROVISIONALES SOLICITADAS POR LA COMISI\u00d3N INTERAMERICANA DE DERECHOS HUMANOS RESPECTO DE LA REP\u00daBLICA DE GUATEMALA CASOS PANIAGUA MORALES Y OTROS Y V\u00c1SQUEZ Y OTROS N. VISTOS El proceso en el caso Paniagua Morales y otros en tr\u00e1mite ante la Corte Interamericana de Derechos Humanos en adelante la Corte o la Corte Interamericana y la transcripci\u00f3n de las declaraciones rendidas por los se\u00f1ores Oscar y ", - "values": [ - "Medidas Provisionales" - ] - }, - { - "text": "RESOLUCI\u00d3N DE LA CORTE INTERAMERICANA DE DERECHOS HUMANOS DE DE NOVIEMBRE DE LA MEDIDAS PROVISIONALES SOLICITADAS POR COMISI\u00d3N INTERAMERICANA DE DERECHOS HUMANOS RESPECTO DE LA REP\u00daBLICA DE VENEZUELA LILIANA ORTEGA Y OTRAS VS. VENEZUELA VISTOS La comunicaci\u00f3n de de noviembre de y sus anexos mediante la cual la Comisi\u00f3n Interamericana de Derechos Humanos en adelante la Comisi\u00f3n Interamericana o la Comisi\u00f3n someti\u00f3 a la Corte Interamericana de Derechos Humanos en adelante la Corte la Corte ", - "values": [ - "Medidas Provisionales" - ] - }, - { - "text": "VOTO RAZONADO CASO ZAMBRANO V\u00c9LEZ Y OTROS vs. ECUADOR He concurrido con mi voto para aprobar por unanimidad la presente sentencia en el caso Zambrano V\u00e9lez y otros contra Ecuador pero considero necesario aclarar mi posici\u00f3n sobre un tema que fue considerado en la deliberaci\u00f3n de este caso y durante los \u00faltimos tres a\u00f1os en diversos casos ante la Corte. Se trata de la aplicaci\u00f3n e interpretaci\u00f3n de los art\u00edculos y de la Convenci\u00f3n en relaci\u00f3n con el art\u00edculo y por ende tambi\u00e9n sobre la y de", - "values": [ - "Voto Separado" - ] - }, - { - "text": "VOTO CONCURRENTE DEL JUEZ SERGIO GARC\u00cdA RAM\u00cdREZ A LA SENTENCIA DE LA CORTE INTERAMERICANA DE DERECHOS HUMANOS EN EL CASO BARRIOS ALTOS. DE MARZO DE Coincido con la sentencia de fondo adoptada por unanimidad de votos de los integrantes de la Corte Interamericana de Derechos Humanos en el caso Barrios Altos. Agrego este Voto Concurrente en el que recojo algunas consideraciones que me sugiere esa sentencia con respecto a los siguientes puntos a caracter\u00edsticas del allanamiento y calificaci\u00f3n ", - "values": [ - "Voto Separado" - ] - }, - { - "text": "RESOLUCI\u00d3N DE LA CORTE INTERAMERICANA DE DERECHOS HUMANOS DE DE JULIO DE CASO BAENA RICARDO Y OTROS VS. PANAM\u00c1 SUPERVISI\u00d3N DE CUMPLIMIENTO DE SENTENCIA VISTO La Sentencia de fondo reparaciones y costas emitida el de febrero de en adelante la Sentencia por la Corte Interamericana de Derechos Humanos en adelante la Corte Interamericana la Corte o el Tribunal. Las resoluciones de supervisi\u00f3n de cumplimiento de la Sentencia emitidas por la Corte Interamericana el de junio de el de de el ", - "values": [ - "Supervisi\u00f3n de cumplimiento de Sentencia" - ] - }, - { - "text": "RESOLUCI\u00d3N DEL PRESIDENTE DE LA CORTE INTERAMERICANA DE DERECHOS HUMANOS DE DE JUNIO DE FONDO DE ASISTENCIA LEGAL DE V\u00cdCTIMAS CASO ARG\u00dcELLES Y OTROS VS. ARGENTINA VISTO El escrito de de mayo de y su anexo mediante los cuales la Comisi\u00f3n Interamericana de Derechos Humanos en adelante la Comisi\u00f3n Interamericana o la Comisi\u00f3n someti\u00f3 a la Corte Interamericana de Derechos Humanos en adelante la Corte Interamericana la Corte o el Tribunal un caso en contra de la Rep\u00fablica de Argentina en o el", - "values": [ - "Fondo de asistencia a v\u00edctimas" - ] - }, - { - "text": "Resoluci\u00f3n de la Presidenta de la Corte Interamericana de Derechos Humanos de de noviembre de Caso Comerciantes Vs. Colombia Supervisi\u00f3n de Cumplimiento de la Sentencia y Medidas Provisionales Sandra Belinda Montero Fuentes y Familiares Salom\u00f3n Fl\u00f3rez y Familiares Luis Jos\u00e9 Pundor Quintero y Familiares Ana Diva Quintero Quintero De Pundor y Familiares Wilmar Rodr\u00edguez Quintero y Familiares Yimmy Efra\u00edn Rodr\u00edguez Quintero y Familiares Vistos A Supervisi\u00f3n de cumplimiento de la Sentencia La ", - "values": [ - "Supervisi\u00f3n de cumplimiento de Sentencia" - ] - }, - { - "text": "RESOLUCI\u00d3N DE LA CORTE INTERAMERICANA DE DERECHOS HUMANOS DE DE DICIEMBRE DE MEDIDAS PROVISIONALES CASO JAMES Y OTROS RESPECTO DE TRINIDAD Y TOBAGO VISTOS La Resoluci\u00f3n de la Corte Interamericana de Derechos Humanos en adelante la Corte la Corte Interamericana o el Tribunal de de junio de en la cual decidi\u00f3 Ordenar a Trinidad y Tobago que tomara todas las medidas necesarias para preservar la vida e integridad personal de los se\u00f1ores Wenceslaus James Anthony Briggs Anderson Noel Anthony y", - "values": [ - "Medidas Provisionales" - ] - }, - { - "text": "RESOLUCI\u00d3N DE LA CORTE INTERAMERICANA DE DERECHOS HUMANOS DE DE NOVIEMBRE DE MEDIDAS PROVISIONALES RESPECTO DE VENEZUELA ASUNTO GUERRERO LAREZ VISTO El escrito de la Comisi\u00f3n Interamericana de Derechos Humanos en adelante la Comisi\u00f3n Interamericana o la Comisi\u00f3n de de noviembre de y sus anexos mediante los cuales someti\u00f3 a la Corte Interamericana de Derechos Humanos en adelante la Corte Interamericana la Corte o el Tribunal una solicitud de medidas provisionales de conformidad con los de", - "values": [ - "Medidas Provisionales" - ] - }, - { - "text": "Corte Interamericana de Derechos Humanos Caso Heliodoro Portugal vs. Panam\u00e1 Sentencia de de Agosto de Excepciones Preliminares Fondo Reparaciones y Costas En el Caso Heliodoro Portugal la Corte Interamericana de Derechos Humanos en adelante la Corte la Corte Interamericana o el Tribunal integrada por los siguientes jueces Diego Garc\u00eda Say\u00e1n Presidente Sergio Garc\u00eda Ram\u00edrez Juez Manuel E. Ventura Robles Juez Leonardo A. Franco Juez Margarette May Macaulay Jueza y Rhadys Abreu Blondet Jueza ", - "values": [ - "Excepciones Preliminares", - "Fondo", - "Reparaciones", - "Costas" - ] - }, - { - "text": "Resoluci\u00f3n de la Corte Interamericana de Derechos Humanos de de febrero de Medidas Provisionales respecto de la Rep\u00fablica del Ecuador Asunto del Pueblo Ind\u00edgena Kichwa de Sarayaku Visto La Resoluci\u00f3n dictada por la Corte Interamericana de Derechos Humanos en adelante la Corte Interamericana la Corte o el Tribunal el de julio de mediante la cual resolvi\u00f3 inter alia requerir al Estado que adopte las medidas que sean necesarias para proteger la vida e integridad personal de los miembros del ", - "values": [ - "Medidas Provisionales" - ] - }, - { - "text": "RESOLUCI\u00d3N DE LA CORTE INTERAMERICANA DE DERECHOS HUMANOS DEL DE JULIO DE MEDIDAS PROVISIONALES SOLICITADAS POR LA COMISI\u00d3N INTERAMERICANA DE DERECHOS HUMANOS RESPECTO DEL PER\u00da CASO LOAYZA TAMAYO VISTO La demanda de de enero de mediante la cual la Comisi\u00f3n Interamericana de Derechos Humanos en adelante la Comisi\u00f3n o la Comisi\u00f3n Interamericana someti\u00f3 a la Corte Interamericana de Derechos Humanos en adelante la Corte o la Corte Interamericana el caso Loayza Tamayo contra el Gobierno de la ", - "values": [ - "Medidas Provisionales" - ] - }, - { - "text": "CORTE INTERAMERICANA DE DIREITOS HUMANOS CASO TRIST\u00c1N DONOSO VS. PANAM\u00c1 SENTEN\u00c7A DE DE JANEIRO DE EXCE\u00c7\u00c3O PRELIMINAR M\u00c9RITO REPARA\u00c7\u00d5ES E CUSTAS No caso Trist\u00e1n Donoso A Corte Interamericana de Direitos Humanos doravante denominada Interamericana a Corte ou o Tribunal integrada pelos seguintes ju\u00edzes a Corte Cecilia Medina Quiroga Presidenta Diego Garc\u00edaSay\u00e1n VicePresidente Sergio Garc\u00eda Ram\u00edrez Juiz Manuel E. Ventura Robles Juiz Leonardo A. Franco Juiz Margarette May Macaulay Ju\u00edza e Rhadys ", - "values": [ - "Excepciones Preliminares", - "Fondo", - "Reparaciones", - "Costas" - ] - }, - { - "text": "RESOLUCI\u00d3N DE LA CORTE INTERAMERICANA DE DERECHOS HUMANOS DE DE OCTUBRE DE MEDIDAS PROVISIONALES RESPECTO DE GUATEMALA CASO CARPIO NICOLLE Y OTROS VISTO Las Resoluciones de la Corte Interamericana de Derechos Humanos en adelante la Corte la Corte Interamericana o el Tribunal de de junio de de septiembre de de septiembre de de junio y de noviembre de de septiembre de de septiembre de de julio de y de julio de En esta \u00faltima Resoluci\u00f3n de la Corte se resolvi\u00f3 inter alia al ", - "values": [ - "Medidas Provisionales" - ] - }, - { - "text": "RESOLUCI\u00d3N DEL PRESIDENTE DE LA CORTE INTERAMERICANA DE DERECHOS HUMANOS DE DE JULIO DE CASO ATALA RIFFO E HIJAS VS. CHILE VISTO El escrito de de septiembre de y sus anexos mediante los cuales la Comisi\u00f3n Interamericana de Derechos Humanos en adelante la Comisi\u00f3n Interamericana o la Comisi\u00f3n present\u00f3 a la Corte Interamericana de Derechos Humanos en adelante la Corte Interamericana la Corte o el Tribunal una demanda en contra de la Rep\u00fablica de Chile en adelante Chile o el Estado en el y ", - "values": [ - "Otros" - ] - }, - { - "text": "RESOLUCI\u00d3N DE LA CORTE INTERAMERICANA DE DERECHOS HUMANOS DE DE AGOSTO DE MEDIDAS PROVISIONALES RESPECTO DE VENEZUELA ASUNTO GUERRERO LAREZ VISTO La Resoluci\u00f3n emitida por la Corte Interamericana de Derechos Humanos en adelante la Corte Interamericana la Corte o el Tribunal el de noviembre de mediante la cual el Tribunal adopt\u00f3 medidas provisionales en el presente asunto debido a la apreciaci\u00f3n prima facie de una situaci\u00f3n de extrema gravedad y urgencia en cuanto a los derechos a la vida e", - "values": [ - "Medidas Provisionales" - ] - }, - { - "text": "RESOLUCI\u00d3N DE LA CORTE INTERAMERICANA DE DERECHOS HUMANOS DE DE DICIEMBRE DE CASO CHITAY NECH Y OTROS VS. GUATEMALA SUPERVISI\u00d3N DE CUMPLIMIENTO DE SENTENCIA VISTO La Sentencia de excepci\u00f3n preliminar fondo reparaciones y costas en adelante la Sentencia dictada por la Corte Interamericana de Derechos Humanos en adelante la Corte Interamericana la Corte o el Tribunal el de mayo de mediante la cual inter alia dispuso que el Estado debe conducir eficazmente con la debida diligencia y dentro ", - "values": [ - "Supervisi\u00f3n de cumplimiento de Sentencia" - ] - }, - { - "text": "VOTO PARCIALMENTE DISIDENTE DEL JUEZ ALBERTO P\u00c9REZ P\u00c9REZ CORTE INTERAMERICANA DE DERECHOS HUMANOS CASO WONG HO WING VS. PER\u00da SENTENCIA DE DE JUNIO DE Excepci\u00f3n Preliminar Fondo Reparaciones y Costas He emitido un voto negativo sobre los siguientes puntos resolutivos de la sentencia en el caso Wong Ho Wing vs. Per\u00fa Punto declarativo El Estado es responsable de la violaci\u00f3n de la garant\u00eda del plazo razonable consagrada en el art\u00edculo de la Convenci\u00f3n Americana en relaci\u00f3n con el art\u00edculo de", - "values": [ - "Voto Separado" - ] - }, - { - "text": "Resoluci\u00f3n de la Corte Interamericana de Derechos Humanos de de noviembre de Caso Aptiz Barbera Rocha Contreras y Ruggeri Cova Vs. Venezuela VISTOS El escrito de demanda presentado el de noviembre de por la Comisi\u00f3n Interamericana de Derechos Humanos en adelante la Comisi\u00f3n o la Comisi\u00f3n Interamericana ante la Corte Interamericana de Derechos Humanos en adelante la Corte la Corte Interamericana o el Tribunal en el cual ofreci\u00f3 testimonios y peritajes. El escrito de solicitudes y en ", - "values": [ - "Otros" - ] - }, - { - "text": "VOTO CONCURRENTE RAZONADO DEL JUEZ SERGIO GARCIA RAMIREZ A LA SENTENCIA DE LA CORTE INTERAMERICANA DE DERECHOS HUMANOS EN EL CASO HERERERA ULLOA VS. COSTA RICA DE DE JULIO DE Libertad de expresi\u00f3n. Medios de comunicaci\u00f3n social y ejercicio del periodismo No es esta la primera vez que la Corte Interamericana debe pronunciarse sobre hechos que afectan la libertad de expresi\u00f3n. De \u00e9stos se ha ocupado en otras oportunidades con diferente contexto en alguna hip\u00f3tesis dentro de una circunstancia ", - "values": [ - "Voto Separado" - ] - }, - { - "text": "VOTO RAZONADO CONJUNTO DE LOS JUECES AA. CAN\u00c7ADO TRINDADE Y A. ABREU BURELLI Al votar en favor de la presente Sentencia de reparaciones dictada por la Corte Interamericana de Derechos Humanos en el caso Loayza Tamayo versus Per\u00fa nos vemos en la obligaci\u00f3n de dejar constancia de nuestras reflexiones al respecto dada nuestra convicci\u00f3n sobre la necesidad de un mayor desarrollo jurisprudencial en la materia de las reparaciones de violaciones de los derechos humanos. La doctrina contempor\u00e1nea ", - "values": [ - "Voto Separado" - ] - }, - { - "text": "Resoluci\u00f3n de la Corte Interamericana de Derechos Humanos de de agosto de Caso Goibur\u00fa y otros Vs. Paraguay Supervisi\u00f3n de Cumplimiento de Sentencia VISTOS La Sentencia de fondo reparaciones y costas de de septiembre de en adelante la Sentencia dictada por la Corte Interamericana de Derechos Humanos en adelante la Corte Interamericana la Corte o el Tribunal notificada \u00edntegramente a la Rep\u00fablica del Paraguay en adelante el Estado o Paraguay el de octubre de mediante la cual dispuso por ", - "values": [ - "Supervisi\u00f3n de cumplimiento de Sentencia" - ] - }, - { - "text": "CORTE INTERAMERICANA DE DERECHOS HUMANOS CASO GUTI\u00c9RREZ Y FAMILIA VS. ARGENTINA SENTENCIA DE DE NOVIEMBRE DE Fondo Reparaciones y Costas En el Caso Guti\u00e9rrez y familia la Corte Interamericana de Derechos Humanos en adelante la Corte Interamericana la Corte o el Tribunal integrada por los siguientes jueces Diego Garc\u00edaSay\u00e1n Presidente Manuel E. Ventura Robles Vicepresidente Alberto P\u00e9rez P\u00e9rez Juez Eduardo Vio Grossi Juez Roberto F. Caldas Juez Humberto Antonio Sierra Porto Juez y Eduardo ", - "values": [ - "Fondo", - "Costas", - "Reparaciones" - ] - }, - { - "text": "VOTO RAZONADO DEL JUEZ SERGIO GARC\u00cdA RAM\u00cdREZ CON RESPECTO A LA SENTENCIA DE LA CORTE INTERAMERICANA DE DERECHOS HUMANOS EN EL CASO ALBAN CORNEJO Y OTROS ECUADOR EL DE NOVIEMBRE DE A Protecci\u00f3n de la salud y derecho a la vida a la integridad y a la justicia En el examen y la resoluci\u00f3n final del Caso Alb\u00e1n Cornejo y otros Ecuador en la sentencia del de noviembre de la Corte Interamericana avanza nuevamente en las reflexiones sobre la protecci\u00f3n de vida y la integridad que se proyectan en la", - "values": [ - "Voto Separado" - ] - }, - { - "text": "Resoluci\u00f3n de la Presidenta de la Corte Interamericana de Derechos Humanos de mayo de Caso de las Ni\u00f1as Yean y Bosico Vs. Rep\u00fablica Dominicana Supervisi\u00f3n de Cumplimiento de Sentencia Visto La Sentencia de excepciones preliminares fondo reparaciones y costas en adelante la Sentencia emitida en el presente caso por la Corte Interamericana de Derechos Humanos en adelante la Corte la Corte Interamericana o el Tribunal el de septiembre de La Resoluci\u00f3n de Supervisi\u00f3n de Cumplimiento de por ", - "values": [ - "Supervisi\u00f3n de cumplimiento de Sentencia" - ] - }, - { - "text": "RESOLUCI\u00d3N DE LA CORTE INTERAMERICANA DE DERECHOS HUMANOS DE DE OCTUBRE DE SOLICITUD DE MEDIDAS PROVISIONALES RESPECTO DE HONDURAS COMUNIDAD GAR\u00cdFUNA DE BARRA VIEJA VISTO El escrito sin fecha recibido el de agosto de mediante el cual la Organizaci\u00f3n Fraternal Negra Hondure\u00f1a OFRANEH solicit\u00f3 a la Corte ordenar medidas cautelares a favor de la Comunidad Gar\u00edfuna de Barra Vieja en raz\u00f3n de que dicha Comunidad estar\u00eda a punto de ser desalojada por elementos asignados al Ministerio de de ", - "values": [ - "Medidas Provisionales" - ] - }, - { - "text": "RESOLUCI\u00d3N DE LA CORTE INTERAMERICANA DE DERECHOS HUMANOS DE DE ABRIL DE CASO CASTILLO P\u00c1EZ VS. PER\u00da SUPERVISI\u00d3N DEL CUMPLIMIENTO DE SENTENCIA VISTOS La Sentencia de fondo dictada por la Corte Interamericana de Derechos Humanos en adelante la Corte la Corte Interamericana o el Tribunal el de noviembre de en el Caso Castillo P\u00e1ez Vs. Per\u00fa mediante la cual RESOLVI\u00d3 por unanimidad Que el Estado del Per\u00fa viol\u00f3 en perjuicio de Ernesto Rafael Castillo P\u00e1ez el derecho a la libertad personal en ", - "values": [ - "Supervisi\u00f3n de cumplimiento de Sentencia" - ] - }, - { - "text": "RESOLUCI\u00d3N DE LA CORTE INTERMERICANA DE DERECHOS HUMANOS DE AGOSTO DE MEDIDAS PROVISIONALES RESPECTO DE HONDURAS CASO PACHECO TERUEL Y OTROS VISTO La Resoluci\u00f3n de la Corte Interamericana de Derechos Humanos en adelante la Corte Interamericana la Corte o el Tribunal emitida el de febrero de en la cual se orden\u00f3 otorgar medidas provisionales que sean necesarias y efectivas para evitar los da\u00f1os a la vida e integridad personal de Sandra Lorena Ramos y de sus tres hijas menores vigentes hasta", - "values": [ - "Medidas Provisionales" - ] - }, - { - "text": "RESOLUCI\u00d3N DE LA PRESIDENTA DE LA CORTE INTERAMERICANA DE DERECHOS HUMANOS DE DE DICIEMBRE DE CASO EL AMPARO VS. VENEZUELA SUPERVISI\u00d3N DE CUMPLIMIENTO DE SENTENCIAS VISTO La Sentencia de fondo dictada por la Corte Interamericana de Derechos Humanos en adelante la Corte la Corte Interamericana o el Tribunal el de enero de La Sentencia de reparaciones dictada por la Corte el de septiembre de mediante la cual Fij\u00f3 en US el total de las indemnizaciones debidas a los familiares de las y a ", - "values": [ - "Supervisi\u00f3n de cumplimiento de Sentencia" - ] - }, - { - "text": "RESOLUCI\u00d3N DE LA CORTE INTERAMERICANA DE DERECHOS HUMANOS DE DE MAYO DE CASO GONZ\u00c1LEZ Y OTRAS CAMPO ALGODONERO VS. M\u00c9XICO SUPERVISI\u00d3N DE CUMPLIMIENTO DE SENTENCIA VISTO La Sentencia de Excepci\u00f3n Preliminar Fondo Reparaciones y Costas dictada por la Corte Interamericana de Derechos Humanos en adelante la Corte la Corte Interamericana o el Tribunal el de noviembre de en la cual la Corte acept\u00f3 el reconocimiento parcial de responsabilidad internacional realizado por el Estado y declar\u00f3 entre", - "values": [ - "Supervisi\u00f3n de cumplimiento de Sentencia" - ] - }, - { - "text": "RESOLUCI\u00d3N DE LA CORTE INTERAMERICANA DE DERECHOS HUMANOS DE DE JUNIO DE CASO DEL TRIBUNAL CONSTITUCIONAL CAMBA CAMPOS Y OTROS VS. ECUADOR SUPERVISI\u00d3N DE CUMPLIMIENTO DE SENTENCIA VISTO La Sentencia de excepciones preliminares fondo reparaciones y costas en adelante la Sentencia dictada por la Corte Interamericana de Derechos Humanos en adelante la Corte Interamericana la Corte o el Tribunal el de agosto de En ella la Corte tomando en cuenta el reconocimiento parcial de responsabilidad ", - "values": [ - "Supervisi\u00f3n de cumplimiento de Sentencia" - ] - }, - { - "text": "RESOLUCI\u00d3N DEL PRESIDENTE DE LA CORTE INTERAMERICANA DE DERECHOS HUMANOS DE DE DICIEMBRE DE CASO M\u00c9MOLI VS. ARGENTINA VISTO El escrito de de diciembre de mediante el cual la Comisi\u00f3n Interamericana de Derechos Humanos en adelante la Comisi\u00f3n Interamericana o la Comisi\u00f3n someti\u00f3 ante la Corte Interamericana de Derechos Humanos en adelante la Corte Interamericana la Corte o el Tribunal un caso en contra de la Rep\u00fablica Argentina en adelante Argentina o el Estado ofreci\u00f3 un dictamen pericial ", - "values": [ - "Otros" - ] - }, - { - "text": "VOTO CONJUNTO DISIDENTE DE LOS JUECES MANUEL E. VENTURA ROBLES Y EDUARDO FERRER MACGREGOR POISOT CASO BREWER CAR\u00cdAS VS. VENEZUELA SENTENCIA DE DE MAYO DE EXCEPCIONES PRELIMINARES Se emite el presente voto disidente en el caso Brewer Car\u00edas Vs. Venezuela de acuerdo con las razones que se expondr\u00e1n a continuaci\u00f3n y por las cuales se discrepa de los puntos resolutivos de la Sentencia adoptada por mayor\u00eda de cuatro votos en adelante la Sentencia o el criterio mayoritario mediante los cuales la ", - "values": [ - "Voto Separado" - ] - }, - { - "text": "VOTO CONCORDANTE DO JUIZ DIEGO GARCIASAY\u00c1N SENTEN\u00c7A DA CORTE INTERAMERICANA DE DIREITOS HUMANOS CASO DOS MASSACRES DE EL MOZOTE E LUGARES VIZINHOS VS. EL SALVADOR DE DE OUTUBRO DE A Corte Interamericana de Direitos Humanos referiuse em v\u00e1rias de suas senten\u00e7as ao tema das anistias em sua rela\u00e7\u00e3o com a prote\u00e7\u00e3o dos direitos humanos e ao dever do Estado de investigar e se for o caso punir as graves viola\u00e7\u00f5es de direitos humanos. O tema das anistias foi durante muito tempo um assunto cr\u00edtico ", - "values": [ - "Voto Separado" - ] - }, - { - "text": "VOTO DISIDENTE DEL JUEZ VIDAL RAM\u00cdREZ Disiento de la decisi\u00f3n adoptada en la Sentencia que resuelve desestimar las excepciones preliminares opuestas por el agente del Gobierno del Per\u00fa por los siguientes fundamentos El art\u00edculo de la Convenci\u00f3n Americana autoriza a los Estados Parte en los casos que precisa y en los que se incluyen los que constituyen peligro p\u00fablico o emergencias que amenacen la independencia o seguridad del Estado a adoptar medidas que en lo posible sean compatibles con ", - "values": [ - "Voto Separado" - ] - }, - { - "text": "RESOLUCI\u00d3N DE LA CORTE INTERAMERICANA DE DERECHOS HUMANOS DE DE JUNIO DE MEDIDAS PROVISIONALES SOLICITADAS POR LA COMISI\u00d3N INTERAMERICANA DE DERECHOS HUMANOS RESPECTO DE LA REP\u00daBLICA DE GUATEMALA CASO BLAKE VISTOS La Resoluci\u00f3n del Presidente de la Corte Interamericana de Derechos Humanos de de agosto de mediante la cual adopt\u00f3 medidas urgentes en favor de Justo Victoriano Mart\u00ednez Morales Floridalma Rosalina L\u00f3pez Molina V\u00edctor Hansel Morales L\u00f3pez Edgar Ibal Mart\u00ednez L\u00f3pez y Sylvia ", - "values": [ - "Medidas Provisionales" - ] - }, - { - "text": " VOTO RAZONADO Y PARCIALMENTE DISIDENTE DEL JUEZ ARTURO MART\u00cdNEZ G\u00c1LVEZ En mi calidad de Juez ad hoc en el presente caso Maritza Urrutia cuya demanda present\u00f3 la Comisi\u00f3n Interamericana de Derechos Humanos contra el Estado de Guatemala me pronuncio sobre lo siguiente I. La Corte en la sentencia en el cap\u00edtulo correspondiente a la valoraci\u00f3n de la prueba se apoya en los informes de la Comisi\u00f3n de Esclarecimiento Hist\u00f3rico y del Proyecto Interdiocesano de Recuperaci\u00f3n de la Memoria Hist\u00f3rica sin", - "values": [ - "Voto Separado" - ] - }, - { - "text": "VOTO RAZONADO CONCURRENTE DEL JUEZ ADHOC \u00c1LVARO CASTELLANOS HOWELL Concurro plenamente con la sentencia proferida por la Corte Interamericana de Derechos Humanos en el caso Tiu Tojin vs. Guatemala. Atendiendo a que esta Corte conforme sus atribuciones y competencias jurisdiccionales tiene como fin supremo el resguardar y tutelar internacional y eficazmente los derechos humanos luego de la deliberaci\u00f3n respectiva he votado a favor de la adopci\u00f3n de dicha sentencia sin reserva alguna en mi Los ", - "values": [ - "Voto Separado" - ] - }, - { - "text": "VOTO CONCURRENTE DEL JUEZ EDUARDO FERRER MACGREGOR POISOT A LA SENTENCIA DE LA CORTE INTERAMERICANA DE DERECHOS HUMANOS EN EL CASO SU\u00c1REZ PERALTA VS. ECUADOR DE DE MAYO DE I. PREMISA INICIAL LA POSIBILIDAD DE HABER ABORDADO EL DERECHO A LA SALUD DE MANERA DIRECTA Y AUT\u00d3NOMA ART\u00cdCULOS Y DE LA CONVENCI\u00d3N AMERICANA En el presente caso la Corte Interamericana de Derechos Humanos en adelante Corte IDH o Tribunal Interamericano declar\u00f3 responsable internacionalmente al Estado demandado por la ", - "values": [ - "Voto Separado" - ] - }, - { - "text": "VOTO PARCIALMENTE DISIDENTE DEL JUEZ JACKMAN No puedo unirme con la mayor\u00eda de la Corte en su decisi\u00f3n de admitir la segunda excepci\u00f3n preliminar interpuesta por el Estado en el presente caso. Por medio de la moci\u00f3n en cuesti\u00f3n el Estado ha pedido a la Corte que sostenga que la Comisi\u00f3n Interamericana de Derechos Humanos carece de competencia para aplicar el derecho internacional humanitario y otros tratados internacionales As\u00ed lo ha sostenido la Corte. Es la sumisi\u00f3n respetuosa m\u00eda que la ", - "values": [ - "Voto Separado" - ] - }, - { - "text": "Resoluci\u00f3n de la Corte Interamericana de Derechos Humanos de de noviembre de Caso Montero Aranguren y otros Ret\u00e9n de Catia Vs. Venezuela Supervisi\u00f3n de Cumplimiento de Sentencia Visto La Sentencia de excepci\u00f3n preliminar fondo reparaciones y costas en adelante la Sentencia emitida en el presente caso por la Corte Interamericana de Derechos Humanos en adelante la Corte la Corte Interamericana o el Tribunal el de julio de mediante la cual dispuso que el Estado de Venezuela en adelante el ", - "values": [ - "Supervisi\u00f3n de cumplimiento de Sentencia" - ] - }, - { - "text": "RESOLUCI\u00d3N DE LA CORTE INTERAMERICANA DE DERECHOS HUMANOS DE DE AGOSTO DE MEDIDAS PROVISIONALES ORDENADAS POR LA CORTE EN EL CASO CESTI HURTADO VISTOS La resoluci\u00f3n de la Corte Interamericana de Derechos Humanos en adelante la Corte de de septiembre de mediante la cual requiri\u00f3 al Estado del Per\u00fa en adelante el Estado o el Per\u00fa la adopci\u00f3n de medidas provisionales a favor del se\u00f1or Gustavo Adolfo Cesti Hurtado para asegurar su integridad f\u00edsica ps\u00edquica y moral en el marco del caso Cesti ", - "values": [ - "Medidas Provisionales" - ] - }, - { - "text": "Resoluci\u00f3n de la Corte Interamericana de Derechos Humanos de de septiembre de Medidas Provisionales respecto de Honduras Asunto Gladys Lanza Ochoa VISTO El escrito de la Comisi\u00f3n Interamericana de Derechos Humanos en adelante la Comisi\u00f3n Interamericana o la Comisi\u00f3n de de agosto de y sus anexos mediante los cuales someti\u00f3 a la Corte Interamericana de Derechos Humanos en adelante la Corte Interamericana la Corte o el Tribunal una solicitud de medidas provisionales en los t\u00e9rminos de los ", - "values": [ - "Medidas Provisionales" - ] - }, - { - "text": "RESOLUCI\u00d3N DE LA CORTE INTERAMERICANA DE DERECHOS HUMANOS DE DE NOVIEMBRE DE MEDIDAS PROVISIONALES ORDENADAS POR LA CORTE EN EL CASO CESTI HURTADO VISTOS La resoluci\u00f3n de la Corte Interamericana de Derechos Humanos en adelante la Corte de de septiembre de mediante la cual requiri\u00f3 al Estado del Per\u00fa en adelante el Estado la adopci\u00f3n de medidas provisionales en favor del se\u00f1or Gustavo Adolfo Cesti Hurtado para asegurar su integridad f\u00edsica ps\u00edquica y moral en el marco del caso Cesti Hurtado", - "values": [ - "Medidas Provisionales" - ] - }, - { - "text": "RESOLUCI\u00d3N DEL PRESIDENTE DE LA CORTE INTERAMERICANA DE DERECHOS HUMANOS DE DE DICIEMBRE DE SOLICITUD DE MEDIDAS PROVISIONALES PRESENTADA POR LA COMISI\u00d3N INTERAMERICANA DE DERECHOS HUMANOS RESPECTO DE LA REP\u00daBLICA DE HONDURAS ASUNTO JOS\u00c9 LUIS GALD\u00c1MEZ \u00c1LVAREZ Y OTROS VISTO El escrito de la Comisi\u00f3n Interamericana de Derechos Humanos en adelante la Comisi\u00f3n Interamericana o la Comisi\u00f3n de de diciembre de y sus anexos mediante los cuales someti\u00f3 a la Corte Interamericana de Derechos Humanos ", - "values": [ - "Medidas Provisionales" - ] - }, - { - "text": "RESOLUCI\u00d3N DE LA CORTE INTERAMERICANA DE DERECHOS HUMANOS DE DE NOVIEMBRE DE MEDIDAS PROVISIONALES ADOPTADAS POR LA CORTE INTERAMERICANA DE DERECHOS HUMANOS RESPECTO DE LA REP\u00daBLICA DE GUATEMALA CASO CARPIO NICOLLE VISTOS La resoluci\u00f3n de la Corte Interamericana de Derechos Humanos en adelante la Corte de de septiembre de mediante la cual resolvi\u00f3 Requerir al Estado que incluya en su pr\u00f3ximo informe documentaci\u00f3n id\u00f3nea sobre la situaci\u00f3n de la causa No. y de los avances concretos en las", - "values": [ - "Medidas Provisionales" - ] - }, - { - "text": "VOTO CONCURRENTE DEL JUEZ AD HOC FERNANDO VIDAL RAM\u00cdREZ La veracidad de los hechos ha sido reconocida por el Estado Peruano y ese reconocimiento importa tambi\u00e9n el de su responsabilidad ante el concierto de Estados que son parte del Sistema Interamericano de Protecci\u00f3n de los Derechos Humanos. Como bien lo ha dejado expresado la Sentencia el allanamiento del Estado constituye una contribuci\u00f3n positiva a los principios que inspiran a la Convenci\u00f3n Americana sin embargo la Sentencia ha ponderado ", - "values": [ - "Voto Separado" - ] - }, - { - "text": "VOTO RAZONADO DEL JUEZ SERGIO GARC\u00cdA RAM\u00cdREZ CON RESPECTO A LA SENTENCIA DE LA CORTE INTERAMERICANA DE DERECHOS HUMANOS EN EL CASO KAWAS FERN\u00c1NDEZ VS. HONDURAS DEL DE ABRIL DE En la sentencia correspondiente al Caso Kawas Fern\u00e1ndez vs. Honduras emitida por la Corte Interamericana de Derechos Humanos el de abril de el tribunal afirma que hubo violaci\u00f3n del art\u00edculo Derecho a la vida en relaci\u00f3n con el art\u00edculo de la Convenci\u00f3n Americana de Derechos Humanos. Coincido con este adoptado por", - "values": [ - "Voto Separado" - ] - }, - { - "text": "VOTO CONCORRENTE DO JUIZ DIEGO GARCIASAYAN EM RELA\u00c7\u00c3O \u00c0 SENTEN\u00c7A DA CORTE INTERAMERICANA DE DIREITOS HUMANOS NO CASO GONZ\u00c1LES E OUTRAS CAMPO ALGODOEIRO VS. M\u00c9XICO DE DE NOVEMBRO DE A viol\u00eancia contra a mulher \u00e9 um drama com v\u00e1rias dimens\u00f5es e express\u00f5es. \u00c9 sem d\u00favida uma das manifesta\u00e7\u00f5es persistentes de discrimina\u00e7\u00e3o mais generalizadas no mundo que se reflete em um leque que vai de express\u00f5es sutis e veladas at\u00e9 situa\u00e7\u00f5es cru\u00e9is e violentas. Dentro desta \u00faltima categoria se encontra a a ", - "values": [ - "Voto Separado" - ] - }, - { - "text": "RESOLUCI\u00d3N DE LA CORTE INTERAMERICANA DE DERECHOS HUMANOS DE DE AGOSTO DE MEDIDAS PROVISIONALES CASO DIGNA OCHOA Y PL\u00c1CIDO Y OTROS VISTOS La Resoluci\u00f3n de la Corte Interamericana de Derechos Humanos en adelante la Corte dictada el de noviembre de mediante la cual resolvi\u00f3 Requerir al Estado que adopte sin dilaci\u00f3n cuantas medidas sean necesarias para proteger la vida e integridad de los se\u00f1ores Digna Ochoa y Pl\u00e1cido Edgar Cort\u00e9z Morales Mario Patr\u00f3n S\u00e1nchez y Jorge Fern\u00e1ndez Mendiburu ", - "values": [ - "Medidas Provisionales" - ] - }, - { - "text": "RESOLUCI\u00d3N DE LA CORTE INTERAMERICANA DE DERECHOS HUMANOS DE DE ENERO DE CASOS VEL\u00c1SQUEZ RODR\u00cdGUEZ FAIR\u00c9N GARBI Y SOL\u00cdS CORRALES Y GOD\u00cdNEZ CRUZ VISTO El escrito de la Comisi\u00f3n Interamericana de Derechos Humanos de fecha de enero en el que solicita que la Corte adopte medidas espec\u00edficas complementarias a las decididas por la Corte en la Resoluci\u00f3n de fecha de enero de Lo expuesto por las partes en la audiencia celebrada en la fecha en cumplimiento de lo ordenado por la Corte en de de ", - "values": [ - "Medidas Provisionales" - ] - }, - { - "text": "VOTO DISIDENTE CONJUNTO DE LOS JUECES AA. CAN\u00c7ADO TRINDADE y ME. VENTURA ROBLES Hemos concurrido con nuestros votos a la adopci\u00f3n de la presente Sentencia de la Corte Interamericana de Derechos Humanos en el caso de la Comunidad ind\u00edgena Yakye Axa versus Paraguay con gran parte de la cual hemos estado b\u00e1sicamente de acuerdo con excepci\u00f3n del punto resolutivo n. y p\u00e1rrafos considerativos correspondientes de los que disentimos firmemente con base en los fundamentos que expondremos a en el ", - "values": [ - "Voto Separado" - ] - }, - { - "text": "Resoluci\u00f3n de la Corte Interamericana de Derechos Humanos de de agosto de Caso Ivcher Bronstein Vs. Per\u00fa Supervisi\u00f3n de Cumplimiento de Sentencias Visto La Sentencia de fondo reparaciones y costas en adelante la Sentencia emitida en el presente caso por la Corte Interamericana de Derechos Humanos en adelante la Corte la Corte Interamericana o el Tribunal el de febrero de La Sentencia de Interpretaci\u00f3n de la Sentencia de Fondo de de febrero de supra Visto emitida por la Corte el de de", - "values": [ - "Supervisi\u00f3n de cumplimiento de Sentencia" - ] - }, - { - "text": "RESOLUCI\u00d3N DE LA CORTE INTERAMERICANA DE DERECHOS HUMANOS DE DE NOVIEMBRE DE CASO CASTILLO P\u00c1EZ VS. PER\u00da CUMPLIMIENTO DE SENTENCIA VISTOS La Sentencia de fondo dictada en el Caso Castillo P\u00e1ez vs. Per\u00fa por la Corte Interamericana de Derechos Humanos en adelante la Corte la Corte Interamericana o el Tribunal de de noviembre de en la que dispuso Que el Estado del Per\u00fa viol\u00f3 en perjuicio de Ernesto Rafael Castillo P\u00e1ez el derecho a la libertad personal reconocido en el art\u00edculo de la ", - "values": [ - "Supervisi\u00f3n de cumplimiento de Sentencia" - ] - }, - { - "text": "RESOLUCI\u00d3N DE LA CORTE INTERAMERICANA DE DERECHOS HUMANOS DE DE NOVIEMBRE DE CASO GARRIDO Y BAIGORRIA vs. ARGENTINA CUMPLIMIENTO DE SENTENCIA VISTOS La Sentencia de fondo dictada por la Corte Interamericana de Derechos Humanos en adelante la Corte la Corte Interamericana o el Tribunal el de febrero de mediante la cual inter alia Tom\u00f3 nota del reconocimiento efectuado por la Argentina acerca de los hechos articulados en la demanda. Tom\u00f3 nota igualmente de su reconocimiento de por dichos", - "values": [ - "Supervisi\u00f3n de cumplimiento de Sentencia" - ] - }, - { - "text": "VOTO DISIDENTE DEL JUEZ MAXIMO PACHECO GOMEZ Disiento de la opini\u00f3n de la mayor\u00eda en relaci\u00f3n con el Punto Resolutivo N\u00famero de la sentencia en el cual se decide que la Rep\u00fablica de Colombia no ha violado el Derecho a la integridad personal de Isidro Caballero Delgado y Mar\u00eda del Carmen Santana por las siguiente razones que El art\u00edculo de la Convenci\u00f3n Americana sobre Derechos Humanos establece Toda persona tiene derecho a que se respete su integridad f\u00edsica ps\u00edquica y moral. Nadie debe ", - "values": [ - "Voto Separado" - ] - }, - { - "text": "RESOLUCI\u00d3N DE LA CORTE INTERAMERICANA DE DERECHOS HUMANOS DE DE NOVIEMBRE DE CASO JUAN HUMBERTO S\u00c1NCHEZ vs. HONDURAS CUMPLIMIENTO DE SENTENCIA VISTOS La Sentencia de excepciones preliminares fondo y reparaciones emitida el de junio de por la Corte Interamericana de Derechos Humanos en adelante la Corte la Corte Interamericana o el Tribunal mediante la cual decidi\u00f3 desestimar la excepci\u00f3n preliminar interpuesta por el Estado. Y DECLAR\u00d3 QUE el Estado viol\u00f3 el derecho a la libertad personal", - "values": [ - "Supervisi\u00f3n de cumplimiento de Sentencia" - ] - }, - { - "text": "VOTO RAZONADO JUEZ MANUEL E. VENTURA ROBLES Pese a haber concurrido con mi voto a la aprobaci\u00f3n de todos los puntos resolutivos de la presente sentencia la alegaci\u00f3n hecha por los representantes de la v\u00edctima en su escrito de solicitudes argumentos y pruebas de que la Corte Interamericana de Derechos Humanos en adelante la Corte la Corte Interamericana o el Tribunal declarase en el presente caso la violaci\u00f3n por la Rep\u00fablica del Ecuador del Derecho a la Integridad Personal reconocido por el ", - "values": [ - "Voto Separado" - ] - }, - { - "text": "RESOLUCI\u00d3N DEL PRESIDENTE DE LA CORTE INTERAMERICANA DE DERECHOS HUMANOS DE DE SEPTIEMBRE DE CASO FORNER\u00d3N E HIJA VS. ARGENTINA VISTO El escrito de sometimiento del caso presentado por la Comisi\u00f3n Interamericana de Derechos Humanos en adelante tambi\u00e9n la Comisi\u00f3n Interamericana o la Comisi\u00f3n ante la Corte Interamericana de Derechos Humanos en adelante la Corte Interamericana la Corte o el Tribunal el de noviembre de mediante el cual ofreci\u00f3 dos dict\u00e1menes periciales sobre los que indic\u00f3 su", - "values": [ - "Otros" - ] - }, - { - "text": "VOTO RAZONADO DEL JUEZ AA. CAN\u00c7ADO TRINDADE Quiso el destino que a\u00fan durante mi per\u00edodo de servicios prestados como Juez Titular de la Corte Interamericana de Derechos Humanos el drama de los ni\u00f1os en la calle volviera al conocimiento de este Tribunal. Siete a\u00f1os despu\u00e9s de la primera Sentencia de la Corte en el hist\u00f3rico leading case de los Ni\u00f1os de la Calle Villagr\u00e1n Morales y Otros versus Guatemala fondo y reparaciones y tres a\u00f1os despu\u00e9s de la Sentencia de la Corte en el dram\u00e1tico caso ", - "values": [ - "Voto Separado" - ] - }, - { - "text": "VOTO CONCURRENTE RAZONADO DEL JUEZ SERGIO GARC\u00cdA RAM\u00cdREZ A LA SENTENCIA DEL CASO MARITZA URRUTIA DEL DE NOVIEMBRE DE En la Sentencia de fondo y reparaciones del presente caso la Corte Interamericana de Derechos Humanos ha examinado algunas cuestiones relevantes que igualmente consider\u00f3 en la Sentencia del Caso Mack Chang emitida el de noviembre de Esto sucede particularmente en el reconocimiento de la responsabilidad internacional o institucional del Estado con respecto a ciertos hechos o ", - "values": [ - "Voto Separado" - ] - }, - { - "text": "VOTO RAZONADO DEL JUEZ SERGIO GARCIA RAMIREZ EN LA SENTENCIA SOBRE EL CASO FERMIN RAMIREZ VS. GUATEMALA DEL DE JUNIO DE A El debido proceso y la funci\u00f3n penal En esta primera parte de mi Voto razonado formular\u00e9 algunas consideraciones sobre la posici\u00f3n de la Corte Interamericana acerca del debido proceso en general una noci\u00f3n que ha orientado las decisiones del Tribunal en los casos contenciosos que ata\u00f1en a los temas del enjuiciamiento. En p\u00e1rrafos separados infra me referir\u00e9 a las que la ", - "values": [ - "Voto Separado" - ] - }, - { - "text": "Corte Interamericana de Derechos Humanos Caso Trujillo Oroza Vs. Bolivia Sentencia de de enero de Fondo En el caso Trujillo Oroza la Corte Interamericana de Derechos Humanos en adelante Interamericana o la Corte integrada por los siguientes Jueces la Corte Ant\u00f4nio A. Can\u00e7ado Trindade Presidente M\u00e1ximo Pacheco G\u00f3mez Vicepresidente Hern\u00e1n Salgado Pesantes Juez Oliver Jackman Juez Alirio Abreu Burelli Juez Sergio Garc\u00eda Ram\u00edrez Juez Carlos Vicente de Roux Rengifo Juez y Charles N. Brower Juez ad", - "values": [ - "Fondo" - ] - }, - { - "text": "Resoluci\u00f3n del Presidente de la Corte Interamericana de Derechos Humanos De de Diciembre de Caso Caballero Delgado y Santana Vs. Colombia Supervisi\u00f3n de Cumplimiento de Sentencia VISTOS La Sentencia de fondo emitida en el presente caso por la Interamericana de Derechos Humanos en adelante la Corte la Interamericana o el Tribunal el de diciembre de Corte Corte La Sentencia de reparaciones y costas dictada en el presente caso por la Corte Interamericana el de enero de La Resoluci\u00f3n por ", - "values": [ - "Supervisi\u00f3n de cumplimiento de Sentencia" - ] - }, - { - "text": "Resoluci\u00f3n de la Corte Interamericana De Derechos Humanos De de mayo de Caso Claude Reyes y otros Vs. Chile Supervisi\u00f3n de Cumplimiento de Sentencia VISTO La Sentencia de fondo reparaciones y costas de de septiembre de en adelante la Sentencia emitida por la Corte Interamericana de Derechos Humanos en adelante la Corte Interamericana la Corte o el Tribunal mediante la cual dispuso que El Estado debe a trav\u00e9s de la entidad correspondiente y en el plazo de seis meses entregar la por las ", - "values": [ - "Supervisi\u00f3n de cumplimiento de Sentencia" - ] - }, - { - "text": "RESOLUCI\u00d3N DE LA CORTE INTERAMERICANA DE DERECHOS HUMANOS DE DE FEBRERO DE CASO COMERCIANTES VS. COLOMBIA CUMPLIMIENTO DE SENTENCIA VISTOS La Sentencia de fondo reparaciones y costas emitida el de julio de por la Corte Interamericana de Derechos Humanos en adelante la Corte la Corte Interamericana o el Tribunal mediante la cual el Tribunal declar\u00f3 por unanimidad que el Estado viol\u00f3 los derechos a la libertad personal a la integridad personal y a la vida consagrados en los art\u00edculos y ", - "values": [ - "Supervisi\u00f3n de cumplimiento de Sentencia" - ] - }, - { - "text": "RESOLUCI\u00d3N DEL PRESIDENTE DE LA CORTE INTERAMERICANA DE DERECHOS HUMANOS DE MARZO DE CASO PUEBLO IND\u00cdGENA KICHWA DE SARAYAKU vs. ECUADOR VISTO El escrito de de mayo de y sus anexos mediante los cuales la Comisi\u00f3n Interamericana de Derechos Humanos en adelante la Comisi\u00f3n Interamericana o la Comisi\u00f3n present\u00f3 ante la Corte Interamericana de Derechos Humanos en adelante la Corte Interamericana la Corte o el Tribunal una demanda contra la Rep\u00fablica del Ecuador en adelante el Estado o Ecuador ", - "values": [ - "Fondo de asistencia a v\u00edctimas" - ] - }, - { - "text": "RESOLUCI\u00d3N DE LA PRESIDENTA DE LA CORTE INTERAMERICANA DE DERECHOS HUMANOS DE DE OCTUBRE DE CASO KAWAS FERN\u00c1NDEZ VS. HONDURAS VISTOS El escrito de demanda presentado por la Comisi\u00f3n Interamericana de Derechos Humanos en adelante la Comisi\u00f3n Interamericana o la Comisi\u00f3n ante la Corte Interamericana de Derechos Humanos en adelante la Corte Interamericana la Corte o el Tribunal el de febrero de mediante el cual ofreci\u00f3 dos testimonios y un peritaje. El escrito de solicitudes argumentos y en", - "values": [ - "Otros" - ] - }, - { - "text": "VOTO RAZONADO DEL JUEZ AA. CAN\u00c7ADO TRINDADE He concurrido con mi voto a favor de la adopci\u00f3n por la Corte Interamericana de Derechos Humanos de la presente Sentencia en el caso de los Hermanos G\u00f3mez Paquiyauri versus Per\u00fa. Las cuestiones planteadas por el cas desp\u00e8ce y tratadas por la Corte en la Sentencia que viene de adoptar me han suscitado algunas reflexiones que me veo en la obligaci\u00f3n de consignar en este Voto Razonado como fundamentaci\u00f3n de mi posici\u00f3n al respecto. Me referir\u00e9 en a los", - "values": [ - "Voto Separado" - ] - }, - { - "text": "RESOLUCI\u00d3N DE LA CORTE INTERAMERICANA DE DERECHOS HUMANOS DE DE NOVIEMBRE DE MEDIDAS PROVISIONALES RESPECTO DE LA REP\u00daBLICA DE PER\u00da ASUNTO RAM\u00cdREZ HINOSTROZA Y OTROS VISTO La Resoluci\u00f3n emitida por el Presidente de la Corte Interamericana de Derechos Humanos en adelante la Corte Interamericana la Corte o el Tribunal el de julio de as\u00ed como las Resoluciones emitidas por la Corte Interamericana el de septiembre de el de febrero y el de julio de el de mayo de y el de febrero de esta", - "values": [ - "Medidas Provisionales" - ] - }, - { - "text": "CASO CAESAR VS TRINIDAD Y TOBAGO VOTO RAZONADO JUEZ MANUEL E. VENTURA ROBLES La necesidad de establecer en la Organizaci\u00f3n de los Estados Americanos un grupo de trabajo permanente dedicado a supervisar el cumplimiento por parte de los Estados Partes en la Convenci\u00f3n Americana sobre Derechos Humanos de las sentencias y medidas provisionales que dicta la Corte Interamericana de Derechos Humanos. I Introducci\u00f3n. II Las propuestas hechas por el Consejo Interamericano de Jurisconsultos los Estados ", - "values": [ - "Voto Separado" - ] - }, - { - "text": "Corte Interamericana de Direitos Humanos Caso Ricardo Canese Vs. Paraguai Senten\u00e7a de de agosto de M\u00e9rito Repara\u00e7\u00f5es e Custas No caso Ricardo Canese A Corte Interamericana de Direitos Humanos doravante denominada a Corte a Corte Interamericana ou o Tribunal integrada pelos seguintes ju\u00edzes Sergio Garc\u00eda Ram\u00edrez Presidente Alirio Abreu Burelli VicePresidente Oliver Jackman Juiz Ant\u00f4nio A. Can\u00e7ado Trindade Juiz Manuel E. Ventura Robles Juiz Diego Garc\u00edaSay\u00e1n Juiz e Emilio Camacho Paredes Juiz ", - "values": [ - "Fondo", - "Reparaciones", - "Costas" - ] - }, - { - "text": "VOTO RAZONADO DEL JUEZ AA. CAN\u00c7ADO TRINDADE He concurrido con mi voto para la adopci\u00f3n por la Corte Interamericana de Derechos Humanos de la presente Sentencia en el caso Acosta Calder\u00f3n versus Ecuador por haber estado de acuerdo con los puntos resolutivos de la misma y con lo que ha dicho la Corte en las consideraciones que los motivaron. Lo que no me satisface es lo que la Corte dej\u00f3 de decir sobre otras cuestiones planteadas en el presente caso las cuales en mi entender deber\u00edan haber dos ", - "values": [ - "Voto Separado" - ] - }, - { - "text": "VOTO RAZONADO CONJUNTO DE LOS JUECES AA. CAN\u00c7ADO TRINDADE Y M. PACHECO G\u00d3MEZ Hemos participado del consenso en la adopci\u00f3n de la presente Sentencia de fondo dictada por la Corte Interamericana de Derechos Humanos sobre el caso Las Palmeras relativo a Colombia por haberse establecido las violaciones de los art\u00edculos y de la Convenci\u00f3n Americana sobre Derechos Humanos y a nuestro juicio en relaci\u00f3n con el art\u00edculo de la misma. Sin embargo nos vemos en la obligaci\u00f3n de dejar constancia de ", - "values": [ - "Voto Separado" - ] - }, - { - "text": "Corte Interamericana de Derechos Humanos Caso Neira Alegr\u00eda y otros VsPer\u00fa Sentencia de de enero de Fondo En el caso Neira Alegr\u00eda y otros la Corte Interamericana de Derechos Humanos integrada por los siguientes jueces H\u00e9ctor FixZamudio Presidente Hern\u00e1n Salgado Pesantes Vicepresidente Rafael Nieto Navia Juez Alejandro Montiel Arg\u00fcello Juez M\u00e1ximo Pacheco G\u00f3mez Juez presentes adem\u00e1s Manuel E. Ventura Robles Secretario y Ana Mar\u00eda Reina Secretaria adjunta de acuerdo con el art\u00edculo del de la", - "values": [ - "Fondo" - ] - }, - { - "text": "VOTO RAZONADO DEL JUEZ SERGIO GARC\u00cdA RAM\u00cdREZ EN RELACI\u00d3N CON LA SENTENCIA DE LA CORTE INTERAMERICANA DE DERECHOS HUMANOS EN EL CASO GARC\u00cdA PRIETO EL SALVADOR DEL DE NOVIEMBRE DE A Deber de investigar En la sentencia dictada por la Corte Interamericana de Derechos Humanos en el Caso Garc\u00eda Prieto El Salvador del de noviembre de a la que acompa\u00f1o este Voto se ha examinado la necesidad de llevar adelante ciertas investigaciones que se considera inconclusas y necesarias para establecer la ", - "values": [ - "Voto Separado" - ] - }, - { - "text": "RESOLUCI\u00d3N DEL PRESIDENTE DE LA CORTE INTERAMERICANA DE DERECHOS HUMANOS DE DE ABRIL DE SOLICITUD DE MEDIDAS PROVISIONALES RESPECTO DE LA REP\u00daBLICA DE COLOMBIA CASO COMERCIANTES SANDRA BELINDA MONTERO FUENTES Y FAMILIARES SALOM\u00d3N FL\u00d3REZ Y FAMILIARES LUIS JOS\u00c9 PUNDOR QUINTERO Y FAMILIARES ANA DIVA QUINTERO PUNDOR Y FAMILIARES VISTOS La Sentencia de fondo reparaciones y costas emitida por la Corte Interamericana de Derechos Humanos en adelante la Corte o el Tribunal el de julio de en el ", - "values": [ - "Medidas Provisionales" - ] - }, - { - "text": "RESOLUCI\u00d3N DE LA CORTE INTERAMERICANA DE DERECHOS HUMANOS DE DE JUNIO DE MEDIDAS PROVISIONALES RESPECTO DE LOS ESTADOS UNIDOS MEXICANOS CASO PILAR NORIEGA GARCIA Y OTROS VISTOS La Resoluci\u00f3n emitida por el Presidente de la Corte Interamericana de Derechos Humanos en adelante la Corte la Corte Interamericana o el Tribunal el de octubre de en consulta con los dem\u00e1s Jueces de la Corte mediante la cual resolvi\u00f3 Requerir al Estado que adopte sin dilaci\u00f3n cuantas medidas sean necesarias para ", - "values": [ - "Medidas Provisionales" - ] - }, - { - "text": "RESOLUCI\u00d3N DEL PRESIDENTE DE LA CORTE INTERAMERICANA DE DERECHOS HUMANOS DE FEBRERO DE SUPERVISI\u00d3N DE CUMPLIMIENTO DE LAS MEDIDAS DE REPARACI\u00d3N SOBRE ATENCI\u00d3N M\u00c9DICA Y PSICOL\u00d3GICA ORDENADAS EN NUEVE CASOS COLOMBIANOS CONVOCATORIA DE AUDIENCIA PRIVADA VISTO La resoluci\u00f3n de convocatoria de audiencia en el marco de la supervisi\u00f3n de cumplimiento emitida por la Corte Interamericana de Derechos Humanos en adelante la Corte la Corte Interamericana o el Tribunal el de abril de en relaci\u00f3n con ", - "values": [ - "Supervisi\u00f3n de cumplimiento de Sentencia" - ] - }, - { - "text": "Resoluci\u00f3n del Presidente de la Corte Interamericana de Derechos Humanos De de enero de Caso B\u00e1maca Vel\u00e1squez Vs. Guatemala Supervisi\u00f3n de Cumplimiento de Sentencias VISTOS La Resoluci\u00f3n del Presidente de la Corte Interamericana de Derechos Humanos en adelante la Corte la Corte Interamericana o el Tribunal de de diciembre de mediante la cual resolvi\u00f3 inter alia Convocar a la Comisi\u00f3n Interamericana de Derechos Humanos a los representantes de la v\u00edctima y sus familiares y al Estado de a ", - "values": [ - "Supervisi\u00f3n de cumplimiento de Sentencia" - ] - }, - { - "text": "Resoluci\u00f3n de la Presidenta de la Corte Interamericana de Derechos Humanos de mayo de Caso Masacre de Las Dos Erres vs. Guatemala Visto El escrito de demanda de la Comisi\u00f3n Interamericana de Derechos Humanos en adelante la Comisi\u00f3n o la Comisi\u00f3n Interamericana presentado el de julio de ante la Corte Interamericana de Derechos Humanos en adelante la Corte la Corte Interamericana o el Tribunal contra la Rep\u00fablica de Guatemala en adelante el Estado o Guatemala en el cual ofreci\u00f3 un peritaje. ", - "values": [ - "Otros" - ] - }, - { - "text": "CORTE INTERAMERICANA DE DERECHOS HUMANOS CASO BLANCO ROMERO Y OTROS VS. VENEZUELA SENTENCIA DE DE NOVIEMBRE DE En el caso Blanco Romero y otros la Corte Interamericana de Derechos Humanos en adelante la Corte Interamericana la Corte o el Tribunal integrada por los siguientes jueces Sergio Garc\u00eda Ram\u00edrez Presidente Alirio Abreu Burelli Vicepresidente Oliver Jackman Juez Ant\u00f4nio A. Can\u00e7ado Trindade Juez Cecilia Medina Quiroga Jueza Manuel E. Ventura Robles Juez y Diego Garc\u00edaSay\u00e1n Juez. adem\u00e1s", - "values": [ - "Fondo", - "Reparaciones", - "Costas" - ] - }, - { - "text": "Corte Interamericana de Derechos Humanos Caso Balde\u00f3n Garc\u00eda Vs. Per\u00fa Sentencia de de Abril de Fondo Reparaciones y Costas En el caso Balde\u00f3n Garc\u00eda la Corte Interamericana de Derechos Humanos en adelante la Corte Interamericana la Corte o el Tribunal integrada por los siguientes jueces Sergio Garc\u00eda Ram\u00edrez Presidente Alirio Abreu Burelli Vicepresidente Oliver Jackman Juez Ant\u00f4nio A. Can\u00e7ado Trindade Juez Cecilia Medina Quiroga Jueza Manuel E. Ventura Robles Juez y Diego Garc\u00edaSay\u00e1n Juez. ", - "values": [ - "Fondo", - "Reparaciones", - "Costas" - ] - }, - { - "text": "RESOLUCI\u00d3N DE LA CORTE INTERAMERICANA DE DERECHOS HUMANOS DE DE NOVIEMBRE DE CASO CASTILLO P\u00c1EZ CUMPLIMIENTO DE SENTENCIA VISTOS La sentencia de fondo dictada en el Caso Castillo P\u00e1ez vs. Per\u00fa por la Corte Interamericana de Derechos Humanos en adelante la Corte la Corte Interamericana o el Tribunal el de noviembre de en la que dispuso en su punto resolutivo quinto Que el Estado del Per\u00fa est\u00e1 obligado a reparar las consecuencias de esas violaciones e indemnizar a los familiares de la y a", - "values": [ - "Supervisi\u00f3n de cumplimiento de Sentencia" - ] - }, - { - "text": "Resoluci\u00f3n de la Corte Interamericana de Derechos Humanos De de febrero de Caso Loayza Tamayo Vs. Per\u00fa Supervisi\u00f3n del Cumplimiento de Sentencia VISTOS La Sentencia de fondo emitida en el presente caso por la Interamericana de Derechos Humanos en adelante la Corte la Interamericana o el Tribunal el de septiembre de Corte Corte La Sentencia de reparaciones dictada en el presente caso por la Corte Interamericana el de noviembre de La Sentencia de interpretaci\u00f3n de la Sentencia de en el", - "values": [ - "Supervisi\u00f3n de cumplimiento de Sentencia" - ] - }, - { - "text": "CORTE INTERAMERICANA DE DERECHOS HUMANOS CASO ANZUALDO CASTRO VS. PER\u00da SENTENCIA DE DE SEPTIEMBRE DE Excepci\u00f3n Preliminar Fondo Reparaciones y Costas En el caso Anzualdo Castro vs. Per\u00fa la Corte Interamericana de Derechos Humanos en adelante la Corte Interamericana la Corte o el Tribunal integrada por los siguientes jueces Cecilia Medina Quiroga Presidenta Sergio Garc\u00eda Ram\u00edrez Juez Manuel E. Ventura Robles Juez Leonardo A. Franco Juez Margarette May Macaulay Jueza Rhadys Abreu Blondet Jueza ", - "values": [ - "Excepciones Preliminares", - "Fondo", - "Reparaciones", - "Costas" - ] - }, - { - "text": "Resolu\u00e7\u00e3o da Presidenta da Corte Interamericana de Direitos Humanos de de agosto de Medidas Provis\u00f3rias A Respeito do Brasil Assunto da Penitenci\u00e1ria Urso Branco Visto As Resolu\u00e7\u00f5es da Corte Interamericana de Direitos Humanos doravante Corte Interamericana Corte ou Tribunal de de junho de de de agosto de de de abril de de de julho de de de setembro de e de de maio de Nessa \u00faltima a Corte resolveu inter alia Reiterar ao Estado que adote de imediato todas as medidas que sejam ", - "values": [ - "Medidas Provisionales" - ] - }, - { - "text": " VOTO RAZONADO DEL JUEZ AA. CAN\u00c7ADO TRINDADE He concurrido con mi voto a la adopci\u00f3n en esta ciudad de Brasilia de la presente Sentencia que viene de adoptar la Corte Interamericana de Derechos Humanos en el caso de la Comunidad Ind\u00edgena Sawhoyamaxa versus Paraguay. Dada la alta relevancia que atribuyo a la materia tratada en la presente Sentencia me veo en la obligaci\u00f3n de dejar constancia de mis reflexiones personales al respecto como fundamento de mi posici\u00f3n sobre la materia objeto de la ", - "values": [ - "Voto Separado" - ] - }, - { - "text": "VOTO CONCURRENTE DEL JUEZ HUMBERTO ANTONIO SIERRA PORTO SENTENCIA DE LA CORTE INTERAMERICANA DE DERECHOS HUMANOS CASO CASO GONZALES LLUY Y OTROS VS. ECUADOR SENTENCIA DE DE SEPTIEMBRE DE Excepciones Preliminares Fondo Reparaciones y Costas A. Introducci\u00f3n La finalidad del presente voto concurrente es ampliar y complementar las razones por las cuales considero que no es necesario declarar la violaci\u00f3n del art\u00edculo de la Convenci\u00f3n de la Americana sobre Derechos Humanos en adelante la o la ", - "values": [ - "Voto Separado" - ] - }, - { - "text": "Resoluci\u00f3n de la Corte Interamericana de Derechos Humanos de de noviembre de Caso Ivcher Bronstein Vs. Per\u00fa Supervisi\u00f3n de Cumplimiento de Sentencias Visto La Sentencia de fondo reparaciones y costas en adelante la Sentencia emitida en el presente caso por la Corte Interamericana de Derechos Humanos en adelante la Corte la Corte Interamericana o el Tribunal el de febrero de en la que dispuso que el Estado debe investigar los hechos que generaron las violaciones establecidas en la para", - "values": [ - "Supervisi\u00f3n de cumplimiento de Sentencia" - ] - }, - { - "text": "RESOLUCI\u00d3N DE LA CORTE INTERAMERICANA DE DERECHOS HUMANOS DE DE AGOSTO DE MEDIDAS PROVISIONALES RESPECTO DE EL SALVADOR ASUNTO B. VISTO La Resoluci\u00f3n dictada por la Corte Interamericana de Derechos Humanos en adelante la Corte Interamericana la Corte o el Tribunal el de mayo de mediante la cual el Tribunal resolvi\u00f3 inter alia Requerir al Estado de El Salvador que adopte y garantice de manera urgente todas las medidas que sean necesarias y efectivas para que el grupo m\u00e9dico tratante de la ", - "values": [ - "Medidas Provisionales" - ] - }, - { - "text": "DISSENTING OPINION OF JUDGE AA. CAN\u00c7ADO TRINDADE I regret not to be able to join the majority of the Court as to the criterion it adopted in paragraphs and and the decision it took in resolutory point n. of the present Judgment on reparations. In my Separate Opinion in the previous Judgment of January in the same case El Amparo I sustained that the Court should at that stage of the procedure recognition of responsibility made by the Republic of Venezuela have expressly reserved the also ", - "values": [ - "Voto Separado" - ] - }, - { - "text": "Corte Interamericana de Derechos Humanos Caso Masacre Plan de S\u00e1nchez Vs. Guatemala Reparaciones Sentencia de de noviembre de En el caso Masacre Plan de S\u00e1nchez la Corte Interamericana de Derechos Humanos en adelante la Corte la Corte Interamericana o el Tribunal integrada por los siguientes jueces Sergio Garc\u00eda Ram\u00edrez Presidente Alirio Abreu Burelli Vicepresidente Oliver Jackman Juez Ant\u00f4nio A. Can\u00e7ado Trindade Juez Cecilia Medina Quiroga Jueza Manuel E. Ventura Robles Juez Diego Juez y ", - "values": [ - "Reparaciones", - "Costas" - ] - }, - { - "text": "RESOLUCI\u00d3N DEL PRESIDENTE DE LA CORTE INTERAMERICANA DE DERECHOS HUMANOS DE DE AGOSTO DE CASO V\u00c9LEZ LOOR VS. PANAM\u00c1 VISTO La Resoluci\u00f3n del Presidente de la Corte Interamericana de Derechos Humanos en adelante Corte Corte Interamericana o Tribunal de de julio de mediante la cual resolvi\u00f3 inter alia Convocar a la Comisi\u00f3n Interamericana de Derechos Humanos a los representantes de la presunta v\u00edctima y a la Rep\u00fablica de Panam\u00e1 a una audiencia p\u00fablica que se celebrar\u00e1 en la sede de la Corte", - "values": [ - "Otros" - ] - }, - { - "text": "CORTE INTERAMERICANA DE DERECHOS HUMANOS CASO J. VS. PER\u00da SENTENCIA DE DE NOVIEMBRE DE Excepci\u00f3n Preliminar Fondo Reparaciones y Costas En el caso J la Corte Interamericana de Derechos Humanos en adelante la Corte Interamericana la Corte o este Tribunal integrada por los siguientes jueces Manuel E. Ventura Robles Presidente en ejercicio Alberto P\u00e9rez P\u00e9rez Juez Eduardo Vio Grossi Juez Roberto F. Caldas Juez Humberto Antonio Sierra Porto Juez y Eduardo Ferrer MacGregor Poisot Juez presentes ", - "values": [ - "Costas", - "Fondo", - "Excepciones Preliminares", - "Reparaciones" - ] - }, - { - "text": "VOTO CONCURRENTE RAZONADO DEL JUEZ SERGIO GARCIA RAMIREZ A LA SENTENCIA DICTADA EN EL CASO MASACRE PLAN DE SANCHEZ VS. GUATEMALA EL DE ABRIL DEL Concurro con los jueces integrantes de la Corte Interamericana en la emisi\u00f3n de la resoluci\u00f3n de fondo correspondiente al caso Masacre Plan de S\u00e1nchez vs. Guatemala dictada el de abril de Agrego este voto razonado en el que examino algunos puntos de dicha resoluci\u00f3n as\u00ed como sus posibles implicaciones. La soluci\u00f3n del litigio puede expresarse en ", - "values": [ - "Voto Separado" - ] - }, - { - "text": "RESOLUCI\u00d3N DE LA CORTE INTERAMERICANA DE DERECHOS HUMANOS DE DE SEPTIEMBRE DE SOLICITUD DE MEDIDAS PROVISIONALES RESPECTO DE GUATEMALA CASO MASACRE PLAN DE S\u00c1NCHEZ SALVADOR JER\u00d3NIMO Y OTROS VISTOS La audiencia p\u00fablica celebrada los d\u00edas y de abril de ante la Corte Interamericana de Derechos Humanos en adelante la Corte Interamericana la Corte o el Tribunal en relaci\u00f3n con el caso Masacre Plan de S\u00e1nchez vs. el Estado de Guatemala en adelante el Estado o Guatemala en la cual comparecieron ", - "values": [ - "Medidas Provisionales" - ] - }, - { - "text": "VOTO RAZONADO DEL JUEZ A. A. CAN\u00c7ADO TRINDADE He votado a favor de la presente Sentencia sobre el fondo en el caso Blake versus Guatemala que viene de dictar la Corte Interamericana de Derechos Humanos por considerarla conforme al derecho aplicable y al tener presente lo anteriormente resuelto por la Corte en la Sentencia sobre excepciones preliminares de Me veo sin embargo obligado a dejar constancia en este Voto Razonado de las reflexiones que siguen acerca de la limitaci\u00f3n ratione temporis", - "values": [ - "Voto Separado" - ] - }, - { - "text": "Corte Interamericana de Derechos Humanos Caso Gangaram Panday Vs. Surinam Sentencia de de enero de Fondo Reparaciones y Costas En el caso Gangaram Panday la Corte Interamericana de Derechos Humanos integrada por los siguientes jueces Rafael Nieto Navia Presidente Sonia Picado Sotela Vicepresidenta H\u00e9ctor FixZamudio Juez Alejandro Montiel Arg\u00fcello Juez Hern\u00e1n Salgado Pesantes Juez Asdr\u00fabal AguiarAranguren Juez Ant\u00f4nio A. Can\u00e7ado Trindade Juez ad hoc presentes adem\u00e1s Manuel E. Ventura Robles y", - "values": [ - "Fondo", - "Reparaciones", - "Costas" - ] - }, - { - "text": "RESOLUCI\u00d3N DE LA CORTE INTERAMERICANA DE DERECHOS HUMANOS DE DE FEBRERO DE SOLICITUD DE MEDIDAS PROVISIONALES PRESENTADA POR LOS REPRESENTANTES DE LOS FAMILIARES DE LA V\u00cdCTIMA CASO JUAN HUMBERTO S\u00c1NCHEZ VS. HONDURAS VISTO La Sentencia de excepciones preliminares fondo y reparaciones emitida el de junio de por la Corte Interamericana de Derechos Humanos en adelante la Corte la Corte Interamericana o el Tribunal mediante la cual decidi\u00f3 desestimar la excepci\u00f3n preliminar interpuesta por el", - "values": [ - "Medidas Provisionales" - ] - }, - { - "text": "RESOLUCI\u00d3N DE LA CORTE INTERAMERICANA DE DERECHOS HUMANOS DE DE NOVIEMBRE DE CASO DE LOS NI\u00d1OS DE LA CALLE Villagr\u00e1n Morales y Otros CUMPLIMIENTO DE SENTENCIA VISTOS La sentencia de reparaciones dictada por el Tribunal el de mayo de en cuyos puntos resolutivos orden\u00f3 Que el Estado de Guatemala debe pagar por concepto de da\u00f1o material como consecuencia de la muerte de Anstraun Aman Villagr\u00e1n Morales Henry Giovanni Contreras Julio Roberto Caal Sandoval Federico Clemente Figueroa T\u00fanchez y ", - "values": [ - "Supervisi\u00f3n de cumplimiento de Sentencia" - ] - }, - { - "text": "RESOLUCI\u00d3N DE LA CORTE INTERAMERICANA DE DERECHOS HUMANOS DE DE NOVIEMBRE DE CASO VARGAS ARECO VS. PARAGUAY SUPERVISI\u00d3N DE CUMPLIMIENTO DE SENTENCIA VISTO La Sentencia de fondo reparaciones y costas en adelante la Sentencia dictada por la Corte Interamericana de Derechos Humanos en adelante la Corte la Corte Interamericana o el Tribunal el de septiembre de La Resoluci\u00f3n del Tribunal de de octubre de en la cual inter alia declar\u00f3 Que mantendr\u00e1 abierto el procedimiento de supervisi\u00f3n de", - "values": [ - "Supervisi\u00f3n de cumplimiento de Sentencia" - ] - }, - { - "text": "Resoluci\u00f3n de la Corte Interamericana de Derechos Humanos de de noviembre de Caso Myrna Mack Chang vs. Guatemala Supervisi\u00f3n de Cumplimiento de Sentencia Visto La Sentencia de fondo reparaciones y costas en adelante la Sentencia dictada por la Corte Interamericana de Derechos Humanos en adelante la Corte Interamericana la Corte o el Tribunal el de noviembre de Las Resoluciones dictadas por la Corte Interamericana el de septiembre de y de noviembre de En esta \u00faltima resolvi\u00f3 que el ", - "values": [ - "Supervisi\u00f3n de cumplimiento de Sentencia" - ] - }, - { - "text": "Resoluci\u00f3n de la Corte Interamericana de Derechos Humanos De de febrero de Caso Acosta Calder\u00f3n Vs. Ecuador Supervisi\u00f3n de Cumplimiento de Sentencia VISTO La Sentencia de fondo reparaciones y costas emitida por la Corte Interamericana de Derechos Humanos en adelante la Corte la Corte Interamericana o el Tribunal el de junio de mediante la cual DECLAR\u00d3 por unanimidad que el Estado viol\u00f3 en perjuicio del se\u00f1or Rigoberto Acosta Calder\u00f3n el Derecho a la Libertad Personal consagrado en el y", - "values": [ - "Supervisi\u00f3n de cumplimiento de Sentencia" - ] - }, - { - "text": "Resoluci\u00f3n de la Corte Interamericana de Derechos Humanos De de febrero de Caso Caballero Delgado y Santana Vs. Colombia Supervisi\u00f3n de Cumplimiento de Sentencia VISTO Las Sentencias de Fondo y de Reparaciones y Costas dictadas en el caso Caballero Delgado y Santana por la Corte Interamericana de Derechos Humanos en adelante la Corte Interamericana o el Tribunal el de diciembre de y el de enero de Las Resoluciones de supervisi\u00f3n de cumplimiento emitidas por la Corte Interamericana el ", - "values": [ - "Supervisi\u00f3n de cumplimiento de Sentencia" - ] - }, - { - "text": "RESOLUCI\u00d3N DE LA CORTE INTERAMERICANA DE DERECHOS HUMANOS DE DE MARZO DE MEDIDAS PROVISIONALES RESPECTO DE VENEZUELA ASUNTO MAR\u00cdA LOURDES AFIUNI VISTO El escrito de la Comisi\u00f3n Interamericana de Derechos Humanos en adelante la Comisi\u00f3n Interamericana o la Comisi\u00f3n de de noviembre de y sus anexos mediante los cuales someti\u00f3 a la Corte Interamericana de Derechos Humanos en adelante la Corte Interamericana la Corte o el Tribunal una solicitud de medidas provisionales en los t\u00e9rminos de los ", - "values": [ - "Medidas Provisionales" - ] - }, - { - "text": "RESOLUCI\u00d3N DE LA CORTE INTERAMERICANA DE DERECHOS HUMANOS DE DE NOVIEMBRE DE MEDIDAS PROVISIONALES ORDENADAS POR LA CORTE INTERAMERICANA DE DERECHOS HUMANOS RESPECTO DE LA REP\u00daBLICA DE TRINIDAD Y TOBAGO CASOS JAMES Y OTROS VISTOS La Resoluci\u00f3n de la Corte Interamericana de Derechos Humanos en adelante la Corte Interamericana la Corte o el Tribunal de de noviembre de en la cual decidi\u00f3 Requerir que el Estado de Trinidad y Tobago mantenga las medidas provisionales ordenadas por la Corte de", - "values": [ - "Medidas Provisionales" - ] - }, - { - "text": "VOTO RAZONADO DEL JUEZ ALBERTO P\u00c9REZ P\u00c9REZ EN EL CASO SU\u00c1REZ PERALTA vs. ECUADOR La finalidad del presente voto razonado es exclusivamente dejar en claro que las referencias al derecho a la salud contenidas en la sentencia no significan que se est\u00e9 asumiendo competencia en relaci\u00f3n con ese derecho en particular o con los derechos econ\u00f3micos sociales y culturales en general. La competencia contenciosa de la Corte est\u00e1 fijada en el art\u00edculo de la Convenci\u00f3n Americana y en el art\u00edculo p\u00e1rrafo ", - "values": [ - "Voto Separado" - ] - }, - { - "text": "RESOLUCI\u00d3N DE LA CORTE INTERAMERICANA DE DERECHOS HUMANOS DE DE NOVIEMBRE DE CASO CINCO PENSIONISTAS VS. PER\u00da SUPERVISI\u00d3N DE CUMPLIMIENTO DE SENTENCIA VISTO La Sentencia de fondo reparaciones y costas en adelante la Sentencia o el Fallo dictada por la Corte Interamericana de Derechos Humanos en adelante la Corte Interamericana la Corte o el Tribunal el de febrero de Las Resoluciones dictadas por la Corte Interamericana el de noviembre de el de septiembre de el de julio de y el de ", - "values": [ - "Supervisi\u00f3n de cumplimiento de Sentencia" - ] - }, - { - "text": "VOTE CONCORDANT DU JUGE AA. CAN\u00c7ADO TRINDADE Jai vot\u00e9 en faveur de ladoption du pr\u00e9sent Arr\u00eat par la Cour interam\u00e9ricaine des droits de lhomme dans laffaire Almonacid Arellano et autres c. le Chili. \u00c9tant donn\u00e9 limportance des questions qui y sont trait\u00e9es par la Cour je me vois dans lobligation dajouter au pr\u00e9sent Arr\u00eat ce Vote concordant qui contient mes r\u00e9flexions personnelles comme fondement de ma position relative aux d\u00e9lib\u00e9rations de ce Tribunal. Je vais axer mes r\u00e9flexions sur trois \u00e0", - "values": [ - "Voto Separado" - ] - }, - { - "text": "VOTO RAZONADO DEL JUEZ AA. CAN\u00c7ADO TRINDADE He concurrido con mi voto a la adopci\u00f3n de la Sentencia que viene de adoptar la Corte Interamericana de Derechos Humanos en el caso de la Masacre de Pueblo Bello versus Colombia. Dada la importancia del caso y la complejidad de la materia tratada en la presente Sentencia me veo en la obligaci\u00f3n de dejar constancia de mis reflexiones sobre la misma como fundamento de mi posici\u00f3n sobre sus m\u00faltiples aspectos. El eje central de \u00e9stos \u00faltimos ata\u00f1e al ", - "values": [ - "Voto Separado" - ] - }, - { - "text": "VOTO RAZONADO DEL JUEZ AA. CAN\u00c7ADO TRINDADE He concurrido con mi voto para la adopci\u00f3n de la presente Sentencia de la Corte Interamericana de Derechos Humanos sobre reparaciones en el caso de la Masacre de Plan de S\u00e1nchez referente al Estado de Guatemala. Me veo adem\u00e1s en la obligaci\u00f3n de dejar constancia en este Voto Razonado de las reflexiones personales que me ha suscitado la presente Sentencia de la Corte tal como lo he hecho en mi anterior Voto Razonado en la Sentencia de fondo sobre el ", - "values": [ - "Voto Separado" - ] - }, - { - "text": " CORTE INTERAMERICANA DE DERECHOS HUMANOS CASO Alb\u00e1n Cornejo y otros VS. ECUADOR SENTENCIA DE DE NOVIEMBRE DE FONDO REPARACIONES Y COSTAS En el caso Alb\u00e1n Cornejo y otros la Corte Interamericana de Derechos Humanos en adelante la Corte Interamericana la Corte o el Tribunal integrada por los siguientes jueces Sergio Garc\u00eda Ram\u00edrez Presidente Cecilia Medina Quiroga Vicepresidenta Manuel E. Ventura Robles Juez Diego Garc\u00edaSay\u00e1n Juez Leonardo A. Franco Juez Margarette May Macaulay Jueza y Rhadys ", - "values": [ - "Fondo", - "Reparaciones", - "Costas" - ] - }, - { - "text": "Corte Interamericana de Derechos Humanos Caso Blake Vs. Guatemala Sentencia de de julio de Excepciones Preliminares En el caso Blake la Corte Interamericana de Derechos Humanos integrada por los siguientes jueces H\u00e9ctor FixZamudio Presidente Hern\u00e1n Salgado Pesantes Vicepresidente Alejandro Montiel Arg\u00fcello Juez Oliver Jackman Juez Ant\u00f4nio A. Can\u00e7ado Trindade Juez Alfonso Novales Aguirre Juez ad hoc presente adem\u00e1s Manuel E. Ventura Robles Secretario de acuerdo con el art\u00edculo del Reglamento ", - "values": [ - "Excepciones Preliminares" - ] - }, - { - "text": "VOTO RAZONADO DEL JUEZ AA. CAN\u00c7ADO TRINDADE He concurrido con mi voto para la adopci\u00f3n de la presente Sentencia de la Corte Interamericana de Derechos Humanos en el caso de la Masacre de Plan de S\u00e1nchez referente al Estado de Guatemala. Me veo adem\u00e1s en la obligaci\u00f3n de dejar constancia en este Voto Razonado de las reflexiones personales que me han suscitado los hechos del cas desp\u00e8ce por su particular gravedad. En efecto es la primera vez en toda la historia de la Corte Interamericana que una", - "values": [ - "Voto Separado" - ] - }, - { - "text": "RESOLUCI\u00d3N DE LA CORTE INTERAMERICANA DE DERECHOS HUMANOS DE DE MAYO DE CASO G\u00d3MEZ PAQUIYAURI VS. PER\u00da MEDIDAS PROVISIONALES VISTOS El escrito de demanda presentado por la Comisi\u00f3n Interamericana de Derechos Humanos en adelante la Comisi\u00f3n o la Comisi\u00f3n Interamericana ante la Corte Interamericana de Derechos Humanos en adelante la Corte la Corte Interamericana o el Tribunal el de febrero de en el cual ofreci\u00f3 como testigos a los se\u00f1ores Marcelina Paquiyauri Illanes de G\u00f3mez Ricardo Samuel ", - "values": [ - "Medidas Provisionales" - ] - }, - { - "text": "CORTE INTERAMERICANA DE DERECHOS HUMANOS CASO ABRILL ALOSILLA Y OTROS VS. PER\u00da SENTENCIA DE DE MARZO DE Fondo Reparaciones y Costas En el Caso Abrill Alosilla y otros la Corte Interamericana de Derechos Humanos en adelante la Corte Interamericana la Corte o el Tribunal integrada por los siguientes jueces Leonardo A. Franco Presidente en ejercicio Manuel E. Ventura Robles Juez Margarette May Macaulay Jueza Rhadys Abreu Blondet Jueza Alberto P\u00e9rez P\u00e9rez Juez y Eduardo Vio Grossi Juez presentes ", - "values": [ - "Fondo", - "Reparaciones", - "Costas" - ] - }, - { - "text": "RESOLUCI\u00d3N DE LA PRESIDENTA DE LA CORTE INTERAMERICANA DE DERECHOS HUMANOS DE DE MARZO DE CASO GABRIELA PEROZO Y OTROS VS. VENEZUELA VISTOS El escrito de demanda presentado el de abril de por la Comisi\u00f3n Interamericana de Derechos Humanos en adelante la Comisi\u00f3n o la Comisi\u00f3n Interamericana ante la Corte Interamericana de Derechos Humanos en adelante la Corte la Corte Interamericana o el Tribunal en el cual ofreci\u00f3 siete testimonios y tres peritajes. Las notas de la Secretar\u00eda de la Corte", - "values": [ - "Otros" - ] - }, - { - "text": "Corte Interamericana de Direitos Humanos Caso da Comunidade Mayagna Sumo Awas Tingni Vs. Nicar\u00e1gua Senten\u00e7a de de agosto de M\u00e9rito Repara\u00e7\u00f5es e Custas No caso da Comunidade Mayagna Sumo Awas Tingni doravante denominada a Comunidade a Comunidade Mayagna a Comunidade Awas Tingni ou Awas Tingni a Corte Interamericana de Direitos Humanos doravante denominada a Corte a Corte Interamericana ou o Tribunal integrada pelos seguintes ju\u00edzes Ant\u00f4nio A. Can\u00e7ado Trindade Presidente M\u00e1ximo Pacheco G\u00f3mez ", - "values": [ - "Fondo", - "Reparaciones", - "Costas" - ] - }, - { - "text": "Corte Interamericana de Derechos Humanos Caso Cesti Hurtado Vs. Per\u00fa Sentencia de de mayo de Reparaciones y Costas En el caso Cesti Hurtado la Corte Interamericana de Derechos Humanos integrada por los siguientes jueces Ant\u00f4nio A. Can\u00e7ado Trindade Presidente Hern\u00e1n Salgado Pesantes Juez Oliver Jackman Juez Alirio Abreu Burelli Juez Sergio Garc\u00eda Ram\u00edrez Juez y Carlos Vicente de Roux Rengifo Juez presentes adem\u00e1s Manuel E. Ventura Robles Secretario y Renzo Pomi Secretario adjunto de acuerdo ", - "values": [ - "Reparaciones", - "Costas" - ] - }, - { - "text": "RESOLUCI\u00d3N DE LA CORTE INTERAMERICANA DE DERECHOS HUMANOS DE DE MAYO DE SOLICITUD DE MEDIDAS PROVISIONALES DE LA COMISI\u00d3N INTERAMERICANA DE DERECHOS HUMANOS RESPECTO DE LA REP\u00daBLICA DE COSTA RICA CASO DEL PERI\u00d3DICO LA NACI\u00d3N VISTOS El escrito de la Comisi\u00f3n Interamericana de Derechos Humanos en adelante la Comisi\u00f3n o la Comisi\u00f3n Interamericana de de marzo de mediante el cual present\u00f3 una solicitud de medidas provisionales a favor de los se\u00f1ores Mauricio Herrera Ulloa y Fern\u00e1n Vargas y ", - "values": [ - "Medidas Provisionales" - ] - }, - { - "text": "VOTO CONCORDANTE E DISSIDENTE DO JUIZ AUGUSTO FOGEL PEDROZO Participei no pronunciamento da Senten\u00e7a proferida pela Corte no caso X\u00c1KMOK K\u00c1SEK e discordo de alguns pontos resolutivos da mesma com base nos fundamentos expostos nas delibera\u00e7\u00f5es e que compreenderam as seguintes considera\u00e7\u00f5es I. Voto Concordante. Rejei\u00e7\u00e3o de Solicita\u00e7\u00e3o do Estado sobre suspens\u00e3o do procedimento No item do Cap\u00edtulo XIII Pontos Resolutivos manifestei que concordo com a rejei\u00e7\u00e3o da solicita\u00e7\u00e3o do Estado sobre a do ", - "values": [ - "Voto Separado" - ] - }, - { - "text": "RESOLUCI\u00d3N DE LA CORTE INTERAMERICANA DE DERECHOS HUMANOS DE DE MAYO DE CASO ESCU\u00c9 ZAPATA VS. COLOMBIA SUPERVISI\u00d3N DE CUMPLIMIENTO DE SENTENCIA VISTO La Sentencia de fondo reparaciones y costas en adelante la Sentencia dictada por la Corte Interamericana de Derechos Humanos en adelante la Corte la Corte Interamericana o el Tribunal el de julio de mediante la cual decidi\u00f3 que el Estado deb\u00eda realizar los pagos de las cantidades establecidas en la Sentencia por concepto de da\u00f1os da\u00f1os ", - "values": [ - "Supervisi\u00f3n de cumplimiento de Sentencia" - ] - }, - { - "text": "RESOLUCI\u00d3N DE LA CORTE INTERAMERICANA DE DERECHOS HUMANOS DE DE ENERO DE MEDIDAS PROVISIONALES ADOPTADAS POR LA CORTE INTERAMERICANA DE DERECHOS HUMANOS RESPECTO DE LA REP\u00daBLICA DE COLOMBIA CASO CABALLERO DELGADO Y SANTANA VISTO La solicitud de medidas provisionales de la Comisi\u00f3n Interamericana de Derechos Humanos en adelante la Comisi\u00f3n o la Comisi\u00f3n Interamericana presentada ante la Corte Interamericana de Derechos Humanos en adelante la Corte o la Corte Interamericana el de diciembre de", - "values": [ - "Medidas Provisionales" - ] - }, - { - "text": "Corte Interamericana de Derechos Humanos Caso Carpio Nicolle y otros Vs. Guatemala Sentencia de de noviembre de Fondo Reparaciones y Costas En el caso Carpio Nicolle y otros la Corte Interamericana de Derechos Humanos en adelante la Corte la Corte Interamericana o el Tribunal integrada por los siguientes jueces Sergio Garc\u00eda Ram\u00edrez Presidente Alirio Abreu Burelli Vicepresidente Oliver Jackman Juez Ant\u00f4nio A. Can\u00e7ado Trindade Juez Cecilia Medina Quiroga Jueza Manuel E. Ventura Robles Juez ", - "values": [ - "Fondo", - "Reparaciones", - "Costas" - ] - }, - { - "text": "VOTO CONCURRENTE DEL JUEZ EDUARDO VIO GROSSI CORTE INTERAMERICANA DE DERECHOS HUMANOS CASO QUISPIALAYA VILCAPOMA VS. PER\u00da SENTENCIA DE DE NOVIEMBRE DE Excepciones Preliminares Fondo Reparaciones y Costas El Juez Humberto Antonio Sierra Porto se adhiri\u00f3 al presente voto del Juez Eduardo Vio Grossi. Se emite el presente voto concurrente con respecto a la Sentencia dictada en la causa de autos a los efectos de dejar expresa constancia de que el suscrito entiende que lo se\u00f1alado en el p\u00e1rrafo de", - "values": [ - "Voto Separado" - ] - }, - { - "text": "RESOLUCI\u00d3N DE LA CORTE INTERAMERICANA DE DERECHOS HUMANOS DE DE MARZO DE MEDIDAS PROVISIONALES ORDENADAS POR LA CORTE EN EL CASO IVCHER BRONSTEIN VISTOS La resoluci\u00f3n de la Corte Interamericana de Derechos Humanos en adelante la Corte de de noviembre de mediante la cual requiri\u00f3 al Estado del Per\u00fa en adelante el Estado o el Per\u00fa la adopci\u00f3n de medidas provisionales a favor del se\u00f1or Baruch Ivcher Bronstein su esposa Neomy Even de Ivcher y sus hijas Dafna Ivcher Even Michal Ivcher Even Tal ", - "values": [ - "Medidas Provisionales" - ] - }, - { - "text": "RESOLUCI\u00d3N DE LA CORTE INTERAMERICANA DE DERECHOS HUMANOS DE DE JULIO DE CASO CINCO PENSIONISTAS VS. PER\u00da SUPERVISI\u00d3N DE CUMPLIMIENTO DE SENTENCIA VISTOS La Sentencia de fondo reparaciones y costas emitida el de febrero de por la Corte Interamericana de Derechos Humanos en adelante la Corte la Corte Interamericana o el Tribunal mediante la cual el Tribunal resolvi\u00f3 inter alia que las consecuencias patrimoniales que pudiera tener la violaci\u00f3n al derecho a la propiedad privada deber\u00e1n en", - "values": [ - "Supervisi\u00f3n de cumplimiento de Sentencia" - ] - }, - { - "text": "RESOLUCI\u00d3N DE LA CORTE INTERAMERICANA DE DERECHOS HUMANOS DE DE NOVIEMBRE DE SOLICITUD DE MEDIDAS PROVISIONALES RESPECTO DE LA REP\u00daBLICA DE COSTA RICA ASUNTO ROJAS MADRIGAL EN RELACI\u00d3N CON EL CASO AMRHEIN Y OTROS VS. COSTA RICA VISTO El escrito de sometimiento de de noviembre de mediante Comisi\u00f3n Interamericana de Derechos Humanos en adelante la Interamericana o la Comisi\u00f3n present\u00f3 a la Corte Interamericana de Humanos en adelante la Corte o el Tribunal el Caso Amrhein y otros Rica. el ", - "values": [ - "Medidas Provisionales" - ] - }, - { - "text": "RESOLUCI\u00d3N DEL PRESIDENTE DE LA CORTE INTERAMERICANA DE DERECHOS HUMANOS DE DE ENERO DE MEDIDAS PROVISIONALES RESPECTO DE HONDURAS ASUNTO GLADYS LANZA OCHOA VISTO La Resoluci\u00f3n dictada por la Corte Interamericana de Derechos Humanos en adelante la Corte Interamericana la Corte o el Tribunal el de septiembre de mediante la cual el Tribunal resolvi\u00f3 Requerir al Estado de Honduras que adopte de forma inmediata las medidas que sean necesarias para proteger la vida e integridad personal de la ", - "values": [ - "Medidas Provisionales" - ] - }, - { - "text": "Corte Interamericana de Derechos Humanos Caso El Amparo Vs. Venezuela Sentencia de de septiembre de Reparaciones y Costas En el caso El Amparo la Corte Interamericana de Derechos Humanos integrada por los siguientes jueces H\u00e9ctor FixZamudio Presidente Hern\u00e1n Salgado Pesantes Vicepresidente Alejandro Montiel Arg\u00fcello Juez Alirio Abreu Burelli Juez Ant\u00f4nio A. Can\u00e7ado Trindade Juez presentes adem\u00e1s Manuel E. Ventura Robles Secretario V\u00edctor Ml. Rodr\u00edguez Rescia Secretario adjunto interino de ", - "values": [ - "Reparaciones", - "Costas" - ] - }, - { - "text": "VOTO RAZONADO DE JUEZ AA. CAN\u00c7ADO TRINDADE Al votar a favor de la adopci\u00f3n por la Corte Interamericana de Derechos Humanos de la presente Sentencia sobre reparaciones en el caso Cantoral Benavides versus Per\u00fa me veo obligado a dejar constancia de mis breves reflexiones acerca de los puntos resolutivos ns. y de esta Sentencia. El primer punto plantea la cuesti\u00f3n del alcance del deber de reparar bajo el art\u00edculo de la Convenci\u00f3n mientras que el segundo punto se refiere a las formas del deber ", - "values": [ - "Voto Separado" - ] - }, - { - "text": "RESOLUCI\u00d3N DEL PRESIDENTE DE LA CORTE INTERAMERICANA DE DERECHOS HUMANOS DE DE DICIEMBRE DE CASO COMUNIDAD CAMPESINA DE SANTA B\u00c1RBARA VS. PER\u00da VISTO El escrito de sometimiento del caso y el Informe de Admisibilidad y Fondo de la Comisi\u00f3n Interamericana de Derechos Humanos en adelante la Comisi\u00f3n Interamericana o la Comisi\u00f3n el escrito de solicitudes argumentos y pruebas en adelante el ESAP de los representantes y el escrito de excepciones preliminares contestaci\u00f3n al sometimiento del caso y ", - "values": [ - "Otros" - ] - }, - { - "text": "RESOLUCI\u00d3N DE LA CORTE INTERAMERICANA DE DERECHOS HUMANOS DE DE SEPTIEMBRE DE SOLICITUD DE MEDIDAS PROVISIONALES Y SUPERVISI\u00d3N DE CUMPLIMIENTO DE SENTENCIA RESPECTO DE LA REP\u00daBLICA DE SURINAME CASO DEL PUEBLO SARAMAKA VISTO La Sentencia de Excepciones Preliminares Fondo Reparaciones y Costas en adelante la Sentencia dictada por la Corte Interamericana de Derechos Humanos en adelante la Corte Interamericana la Corte o el Tribunal el de noviembre de La Sentencia de Interpretaci\u00f3n de la de ", - "values": [ - "Medidas Provisionales", - "Supervisi\u00f3n de cumplimiento de Sentencia" - ] - }, - { - "text": "RESOLUCI\u00d3N DE LA CORTE INTERAMERICANA DE DERECHOS HUMANOS DE DE MAYO DE FONDO DE ASISTENCIA LEGAL DE V\u00cdCTIMAS CASO PUEBLO IND\u00cdGENA KICHWA DE SARAYAKU VS. ECUADOR VISTO La Sentencia de fondo reparaciones y costas en adelante la Sentencia dictada por la Corte Interamericana de Derechos Humanos en adelante la Corte la Corte Interamericana o el Tribunal el de junio de mediante la cual dispuso inter alia que El Estado debe pagar las cantidades fijadas en los p\u00e1rrafos y de la presente por ", - "values": [ - "Fondo de asistencia a v\u00edctimas" - ] - }, - { - "text": "RESOLUCI\u00d3N DE LA CORTE INTERAMERICANA DE DERECHOS HUMANOS DE DE NOVIEMBRE DE MEDIDAS PROVISIONALES ADOPTADAS POR LA CORTE INTERAMERICANA DE DERECHOS HUMANOS RESPECTO DE LA REP\u00daBLICA DE GUATEMALA CASO VOGT VISTOS El escrito de de marzo de y sus anexos mediante el cual la Comisi\u00f3n Interamericana de Derechos Humanos en adelante la Comisi\u00f3n o la Comisi\u00f3n Interamericana someti\u00f3 a la Corte Interamericana de Derechos Humanos en adelante la Corte o la Corte Interamericana en virtud de los de la ", - "values": [ - "Medidas Provisionales" - ] - }, - { - "text": "RESOLUCI\u00d3N DE LA CORTE INTERAMERICANA DE DERECHOS HUMANOS DE DE FEBRERO DE SOLICITUD DE MEDIDAS PROVISIONALES DE LA COMISI\u00d3N INTERAMERICANA DE DERECHOS HUMANOS RESPECTO DE LOS ESTADOS UNIDOS MEXICANOS CASO GALLARDO RODR\u00cdGUEZ VISTO El escrito de la Comisi\u00f3n Interamericana de Derechos Humanos en adelante la Comisi\u00f3n o la Comisi\u00f3n Interamericana de de diciembre de mediante el cual present\u00f3 una solicitud de medidas provisionales para evitar da\u00f1os irreparables al General Jos\u00e9 Francisco Gallardo", - "values": [ - "Medidas Provisionales" - ] - }, - { - "text": "RESOLUCI\u00d3N DE LA CORTE INTERAMERICANA DE DERECHOS HUMANOS DE DE DICIEMBRE DE MEDIDAS PROVISIONALES LILIANA ORTEGA Y OTRAS RESPECTO DE VENEZUELA VISTOS La Resoluci\u00f3n de la Corte Interamericana de Derechos Humanos en adelante la Corte Interamericana la Corte o el Tribunal de de noviembre de relativa a las medidas provisionales solicitadas por la Comisi\u00f3n Interamericana de Derechos Humanos en adelante la Comisi\u00f3n Interamericana o la Comisi\u00f3n a favor de las se\u00f1oras Liliana Ortega Yris Medina ", - "values": [ - "Medidas Provisionales" - ] - }, - { - "text": "VOTO CONCURRENTE DEL JUEZ EDUARDO FERRER MACGREGOR POISOT CASO CRUZ SANCHEZ Y OTROS VS. PER\u00da SENTENCIA DE DE ABRIL DE Excepciones Preliminares Fondo Reparaciones y Costas I. INTRODUCCI\u00d3N Quisiera reafirmar el m\u00e1s en\u00e9rgico rechazo que merece cualquier violencia terrorista la cual lesiona a los individuos y al conjunto de la sociedad como ha enfatizado la Corte Interamericana de Derechos Humanos en adelante la Corte o el Tribunal Interamericano en otros casos contra Per\u00fa Si bien los Estados ", - "values": [ - "Voto Separado" - ] - }, - { - "text": "RESOLUCI\u00d3N DE LA CORTE INTERAMERICANA DE DERECHOS HUMANOS DE DE ENERO DE CASO ACEVEDO BUEND\u00cdA Y OTROS CESANTES Y JUBILADOS DE LA CONTRALOR\u00cdA VS. PER\u00da SUPERVISI\u00d3N DE CUMPLIMIENTO DE SENTENCIA VISTO La Sentencia de excepci\u00f3n preliminar fondo reparaciones y costas en adelante la Sentencia dictada por la Corte Interamericana de Derechos Humanos en adelante la Corte Interamericana la Corte o el Tribunal el de julio de mediante la cual la Corte declar\u00f3 que la Rep\u00fablica del Per\u00fa en adelante el ", - "values": [ - "Supervisi\u00f3n de cumplimiento de Sentencia" - ] - }, - { - "text": "Resoluci\u00f3n de la Corte Interamericana de Derechos Humanos de de julio de Medidas Provisionales respecto de Guatemala A favor de los Integrantes del Equipo de Estudios Comunitarios y Acci\u00f3n Psicosocial ECAP Caso Masacre Plan de S\u00e1nchez Visto La Resoluci\u00f3n de la Corte Interamericana de Derechos Humanos en adelante la Corte Interamericana la Corte o el Tribunal de de noviembre de mediante la cual orden\u00f3 a la Rep\u00fablica de Guatemala en adelante el Estado o Guatemala adoptar medidas a favor de ", - "values": [ - "Medidas Provisionales" - ] - }, - { - "text": "VOTO RAZONADO DEL JUEZ AA. CAN\u00c7ADO TRINDADE He concurrido con mi voto a la adopci\u00f3n de la presente Sentencia de la Corte Interamericana de Derechos Humanos sobre el caso de los Trabajadores Cesados del Congreso relativo al Estado peruano. Me permito agregar en este breve Voto Razonado algunas precisiones de orden conceptual. Aunque la soluci\u00f3n de este caso no me satisfaga la presente Sentencia de la Corte al menos revela la importancia del derecho a un recurso efectivo para que no se presente ", - "values": [ - "Voto Separado" - ] - }, - { - "text": "VOTO FUNDAMENTADO DO JUIZ SERGIO GARC\u00cdA RAM\u00cdREZ COM RELA\u00c7\u00c3O \u00c0 SENTEN\u00c7A DA CORTE INTERAMERICANA DE DIREITOS HUMANOS NO CASO CASTRO E CASTRO DE DE NOVEMBRO DE Neste Voto referirmeei a duas quest\u00f5es que a Corte Interamericana analisa na Senten\u00e7a proferida no caso Castro Castro Peru de de novembro de que \u00e9 certamente uma data simb\u00f3lica no compromisso geral de combater toda forma de viol\u00eancia contra a mulher. Uma dessas quest\u00f5es da qual me ocuparei em primeiro lugar e com mais amplitude \u00e0 por", - "values": [ - "Voto Separado" - ] - }, - { - "text": "RESOLUCI\u00d3N DE LA CORTE INTERAMERICANA DE DERECHOS HUMANOS DE DE JULIO DE CASO GARC\u00cdA ASTO Y RAM\u00cdREZ ROJAS VS. PER\u00da SUPERVISI\u00d3N DE CUMPLIMIENTO DE SENTENCIA VISTO La Sentencia de fondo reparaciones y costas emitida el de noviembre de en adelante la Sentencia por la Corte Interamericana de Derechos Humanos en adelante la Corte Interamericana la Corte o el Tribunal mediante la cual el Tribunal dispuso que el Estado debe proporcionar atenci\u00f3n gratuita m\u00e9dica y psicol\u00f3gica al se\u00f1or Wilson ", - "values": [ - "Supervisi\u00f3n de cumplimiento de Sentencia" - ] - }, - { - "text": "VOTO RAZONADO DEL JUEZ SERGIO GARCIA RAMIREZ EN LA SENTENCIA SOBRE REPARACIONES DEL CASO MASACRE PLAN DE SANCHEZ DE DE NOVIEMBRE DE A. DERECHOS INDIVIDUALES Y COLECTIVOS Las consideraciones y decisiones que contiene la sentencia sobre reparaciones dictada por la Corte Interamericana de Derechos Humanos en el Caso Masacre Plan de S\u00e1nchez el de noviembre de tras la resoluci\u00f3n sobre puntos de fondo emitida el de abril del mismo a\u00f1o permiten volver sobre un tema que se ha manejado en otros ", - "values": [ - "Voto Separado" - ] - }, - { - "text": "CORTE INTERAMERICANA DE DERECHOS HUMANOS CASO IBSEN C\u00c1RDENAS E IBSEN PE\u00d1A VS. BOLIVIA SENTENCIA DE DE SEPTIEMBRE DE Fondo Reparaciones y Costas En el caso Ibsen C\u00e1rdenas e Ibsen Pe\u00f1a la Corte Interamericana de Derechos Humanos en adelante la Corte Interamericana la Corte o el Tribunal integrada por los siguientes jueces Diego Garc\u00edaSay\u00e1n Presidente Leonardo Franco Vicepresidente Manuel E. Ventura Robles Juez Margarette May Macaulay Jueza Rhadys Abreu Blondet Jueza Alberto P\u00e9rez P\u00e9rez Juez y ", - "values": [ - "Fondo", - "Reparaciones", - "Costas" - ] - }, - { - "text": "VOTO RAZONADO DEL JUEZ AA. CAN\u00c7ADO TRINDADE Voto a favor de la adopci\u00f3n por la Corte Interamericana de Derechos Humanos de la presente Sentencia sobre Excepciones Preliminares en el caso Constantine y Otros versus Trinidad y Tobago que a mi juicio representa un aporte significativo del Derecho Internacional de los Derechos Humanos a la evoluci\u00f3n de un aspecto espec\u00edfico del Derecho Internacional contempor\u00e1neo a saber el atinente a la jurisdicci\u00f3n internacional obligatoria basada en la de la ", - "values": [ - "Voto Separado" - ] - }, - { - "text": "VOTO RAZONADO DEL JUEZ SERGIO GARC\u00cdA RAM\u00cdREZ A LA SENTENCIA DE LA CORTE INTERAMERICANA DE DERECHOS HUMANOS SOBRE EL CASO L\u00d3PEZ \u00c1LVAREZ VS. HONDURAS DEL DE FEBRERO DE I. EL DEBIDO PROCESO El debido proceso constituye una garant\u00eda instrumental y secundaria que llega a ser en rigor material y primaria como clave de acceso a la tutela nacional e internacional de los derechos y a la reclamaci\u00f3n sobre los deberes. Su relevancia ha sido constantemente destacada. Lo ha hecho la jurisprudencia de la ", - "values": [ - "Voto Separado" - ] - }, - { - "text": "VOTO RAZONADO DEL JUEZ AD HOC FRANCISCO EGUIGUREN PRAELI He votado de manera conjunta compartiendo la sentencia de la Corte que declara la responsabilidad del Estado del Per\u00fa por la violaci\u00f3n de los derechos de los hermanos Rafael y Emilio G\u00f3mez Paquiyauri a la vida libertad personal integridad personal garant\u00edas judiciales y otros. No obstante estimo necesario expresar algunas reflexiones personales respecto a la naturaleza y circunstancias particulares de este caso as\u00ed como a la forma en que ", - "values": [ - "Voto Separado" - ] - }, - { - "text": "RESOLUCI\u00d3N DE LA CORTE INTERAMERICANA DE DERECHOS HUMANOS DE DE SEPTIEMBRE DE CASO DE LA MASACRE DE LAS DOS ERRES VS. GUATEMALA SUPERVISI\u00d3N DE CUMPLIMIENTO DE SENTENCIA VISTO La Sentencia de excepci\u00f3n preliminar fondo reparaciones y costas en adelante la Sentencia dictada por la Corte Interamericana de Derechos Humanos en adelante la Corte Interamericana la Corte o el Tribunal el de noviembre de La Resoluci\u00f3n de Supervisi\u00f3n de Cumplimiento de Sentencia de de julio de en la que la Corte", - "values": [ - "Supervisi\u00f3n de cumplimiento de Sentencia" - ] - }, - { - "text": "RESOLUCI\u00d3N DEL PRESIDENTE DE LA CORTE INTERAMERICANA DE DERECHOS HUMANOS DE DE MARZO DE CASO POLLO RIVERA Y OTROS VS. PER\u00da VISTO El escrito de sometimiento del caso y el Informe de Fondo de la Comisi\u00f3n Interamericana de Derechos Humanos en adelante la Comisi\u00f3n Interamericana o la Comisi\u00f3n el escrito de solicitudes argumentos y pruebas en adelante el escrito de solicitudes y argumentos de los defensores interamericanos como representantes de un grupo de las presuntas v\u00edctimas en adelante los ", - "values": [ - "Otros" - ] - }, - { - "text": "VOTO CONCORDANTE DO JUIZ SERGIO GARC\u00cdA RAM\u00cdREZ EM RELA\u00c7\u00c3O \u00c0 SENTEN\u00c7A DA CORTE INTERAMERICANA DE DIREITOS HUMANOS NO CASO ACEVEDO BUEND\u00cdA E OUTROS DEMITIDOS E APOSENTADOS DA CONTROLADORIA DE DE JULHO DE I. Perda da oportunidade de realizar atos no julgamento Em conformidade com as normas do procedimento interamericano de prote\u00e7\u00e3o dos direitos humanos normas de obrigat\u00f3ria observ\u00e2ncia o Estado disp\u00f5e de oportunidades processuais claramente estabelecidas para apresentar suas defesas. Em o ", - "values": [ - "Voto Separado" - ] - }, - { - "text": "RESOLUCI\u00d3N DEL PRESIDENTE DE LA CORTE INTERAMERICANA DE DERECHOS HUMANOS DE DE ABRIL DE CASO DEL TRIBUNAL CONSTITUCIONAL VISTOS El escrito de de abril de y sus anexos mediante el cual la se\u00f1ora Delia Revoredo Marsano de Mur en adelante la se\u00f1ora Revoredo someti\u00f3 a la Corte Interamericana de Derechos Humanos en adelante la Corte o la Corte Interamericana al amparo de los art\u00edculos de la Convenci\u00f3n Americana sobre Derechos Humanos en adelante la Convenci\u00f3n o la Convenci\u00f3n Americana y del ", - "values": [ - "Medidas Provisionales" - ] - }, - { - "text": "VOTO CONCURRENTE DEL JUEZ SERGIO GARC\u00cdA RAM\u00cdREZ A LA SENTENCIA DE LA CORTE INTERAMERICANA SOBRE EL CASO BAYARRI ARGENTINA DEL DE OCTUBRE DE El examen y la sentencia del Caso Bayarri promueven diversas cuestiones relevantes a prop\u00f3sito de la tutela de los derechos humanos en el marco del procedimiento penal que constituye un escenario complejo y peligroso para el encuentro entre los poderes del Estado y los derechos del individuo. Entre esas cuestiones figura la privaci\u00f3n cautelar de la del ", - "values": [ - "Voto Separado" - ] - }, - { - "text": "VOTO DISIDENTE DEL JUEZ EDUARDO VIO GROSSI SENTENCIA DE LA CORTE INTERAMERICANA DE DERECHOS HUMANOS FONDO REPARACIONES Y COSTAS CASO BARBANI Y OTROS VS. URUGUAY DE DE OCTUBRE DE Introducci\u00f3n. Se emite el presente voto disidente respecto de los aspectos del fallo se\u00f1alado en el t\u00edtulo en adelante la Sentencia que seguidamente se indican por las razones que asimismo se exponen. El primer asunto del que se discrepa con lo expuesto y dispuesto en la Sentencia es en lo que respecta a la violaci\u00f3n ", - "values": [ - "Voto Separado" - ] - }, - { - "text": "RESOLUCI\u00d3N DE LA CORTE INTERAMERICANA DE DERECHOS HUMANOS DE DE JUNIO DE MEDIDAS PROVISIONALES SOLICITADAS POR LA COMISI\u00d3N INTERAMERICANA DE DERECHOS HUMANOS RESPECTO DE LA REP\u00daBLICA DE TRINIDAD Y TOBAGO CASOS JAMES BRIGGS NOEL GARC\u00cdA Y BETHEL VISTOS El escrito de la Comisi\u00f3n Interamericana de Derechos Humanos en adelante la Comisi\u00f3n de de mayo de y sus anexos mediante el cual someti\u00f3 ante la Corte Interamericana de Derechos Humanos en adelante la Corte de acuerdo con los art\u00edculos de la ", - "values": [ - "Medidas Provisionales" - ] - }, - { - "text": "RESOLUCI\u00d3N DE LA CORTE INTERAMERICANA DE DERECHOS HUMANOS DE DE JUNIO DE MEDIDAS PROVISIONALES RESPECTO DE M\u00c9XICO ASUNTO P\u00c9REZ TORRES Y OTROS CAMPO ALGODONERO VISTO La Resoluci\u00f3n de la Corte Interamericana de Derechos Humanos en adelante la Corte Interamericana la Corte o el Tribunal de de julio de mediante la cual el Tribunal resolvi\u00f3 Ratificar la Resoluci\u00f3n de la Presidenta de la Corte Interamericana de de abril de Requerir al Estado que mantenga las medidas que hubiese adoptado y ", - "values": [ - "Medidas Provisionales" - ] - }, - { - "text": "Corte Interamericana de Derechos Humanos Caso Castillo Petruzzi y otros Vs. Per\u00fa Resoluci\u00f3n de de noviembre de Cumplimiento de Sentencia VISTOS La sentencia de la Corte Interamericana de Derechos Humanos en adelante la Corte la Corte Interamericana o el Tribunal de de mayo de sobre el fondo en el caso Castillo Petruzzi y otros en la cual por unanimidad declar\u00f3 que el Estado no viol\u00f3 en el presente caso el art\u00edculo de la Convenci\u00f3n Americana sobre Derechos Humanos. por unanimidad declar\u00f3", - "values": [ - "Supervisi\u00f3n de cumplimiento de Sentencia" - ] - }, - { - "text": "VOTO CONCURRENTE DEL JUEZ MONTIEL ARG\u00dcELLO He votado afirmativamente de la parte resolutiva de la sentencia que antecede sobre interpretaci\u00f3n de la sentencia del de marzo del presente a\u00f1o en el caso Hermanas Serrano Cruz contra El Salvador. La solicitud de interpretaci\u00f3n presentada por El Salvador se refiere a tres puntos a b c La concesi\u00f3n de indemnizaci\u00f3n por da\u00f1os inmateriales a favor de la Se\u00f1ora Mar\u00eda victoria Franco que hab\u00eda fallecido La asignaci\u00f3n de esa indemnizaci\u00f3n a sus hijos y La", - "values": [ - "Voto Separado" - ] - }, - { - "text": "Corte Interamericana de Derechos Humanos Caso Alfonso Mart\u00edn del Campo Dodd Vs. Estados Unidos Mexicanos Sentencia de de septiembre de Excepciones Preliminares En el caso Alfonso Mart\u00edn del Campo Dodd la Corte Interamericana de Derechos Humanos en adelante la Corte Interamericana la Corte o el Tribunal integrada por los siguientes jueces Alirio Abreu Burelli Presidente Sergio Garc\u00eda Ram\u00edrez Juez Oliver Jackman Juez Ant\u00f4nio A. Can\u00e7ado Trindade Juez Cecilia Medina Quiroga Jueza Manuel E. Juez", - "values": [ - "Excepciones Preliminares" - ] - }, - { - "text": "CORTE INTERAMERICANA DE DERECHOS HUMANOS CASO GARC\u00cdA LUCERO y OTRAS Vs. CHILE SENTENCIA DE DE AGOSTO DE EXCEPCION PRELIMINAR FONDO Y REPARACIONES En el caso Garc\u00eda Lucero y otras la Corte Interamericana de Derechos Humanos en adelante la Corte Interamericana la Corte o el Tribunal integrada por los siguientes jueces Diego Garc\u00edaSay\u00e1n Presidente Manuel E. Ventura Robles Vicepresidente Alberto P\u00e9rez P\u00e9rez Juez Roberto F. Caldas Juez Humberto Antonio Sierra Porto Juez y Eduardo Ferrer MacGregor ", - "values": [ - "Excepciones Preliminares", - "Fondo", - "Reparaciones" - ] - }, - { - "text": "RESOLUCI\u00d3N DE LA CORTE INTERAMERICANA DE DERECHOS HUMANOS DE DE NOVIEMBRE DE CASO HILAIRE CONSTANTINE Y BENJAMIN Y OTROS VS. TRINIDAD Y TOBAGO CUMPLIMIENTO DE SENTENCIA VISTOS La Sentencia dictada en el Caso Hilaire Constantine y Benjamin y otros vs. Trinidad y Tobago por la Corte Interamericana de Derechos Humanos en adelante la Corte Interamericana la Corte o el Tribunal el de junio de en la que declar\u00f3 en cuanto al fondo que el Estado viol\u00f3 el derecho a la vida consagrado en el y ", - "values": [ - "Supervisi\u00f3n de cumplimiento de Sentencia" - ] - }, - { - "text": "RESOLUCI\u00d3N DE LA CORTE INTERAMERICANA DE DERECHOS HUMANOS DEL DE JUNIO DE MEDIDAS PROVISIONALES SOLICITADAS POR LA COMISI\u00d3N INTERAMERICANA DE DERECHOS HUMANOS RESPECTO DE LA REP\u00daBLICA DE GUATEMALA CASO SERECH Y SAQUIC VISTO El escrito de de abril de y sus anexos mediante el cual la Comisi\u00f3n Interamericana de Derechos Humanos en adelante la Comisi\u00f3n o la Comisi\u00f3n Interamericana somete a la Corte Interamericana de Derechos Humanos en adelante la Corte o la Corte Interamericana con apoyo en ", - "values": [ - "Medidas Provisionales" - ] - }, - { - "text": "VOTO RAZONADO CONCURRENTE DEL JUEZ SERGIO GARC\u00cdA RAM\u00cdREZ A LAS SENTENCIAS SOBRE EXCEPCIONES PRELIMINARES EN LOS CASOS HILAIRE CONSTANTINE Y OTROS Y BENJAM\u00cdN Y OTROS He sumado mi voto al de mis colegas en la Corte Interamericana de Derechos Humanos en las Sentencias sobre excepciones preliminares en los Casos Hilaire Contantine y Otros y Benjam\u00edn y Otros del de septiembre de que se fundan en el mismo razonamiento y llegan a id\u00e9nticas decisiones en lo concerniente a la supuesta incompetencia ", - "values": [ - "Voto Separado" - ] - }, - { - "text": "RESOLUCI\u00d3N DE LA CORTE INTERAMERICANA DE DERECHOS HUMANOS DE DE NOVIEMBRE DE CASO BLAKE CUMPLIMIENTO DE SENTENCIA VISTOS La sentencia de fondo dictada en el Caso Blake vs. Guatemala por la Corte Interamericana de Derechos Humanos en adelante la Corte la Corte Interamericana o el Tribunal el de enero de en la que dispuso en los puntos resolutivos tercero y cuarto que el Estado de Guatemala est\u00e1 obligado a poner todos los medios a su alcance para investigar los hechos denunciados y a los ", - "values": [ - "Supervisi\u00f3n de cumplimiento de Sentencia" - ] - }, - { - "text": "VOTO DISIDENTE DE LA JUEZA MEDINA QUIROGA EN LA SENTENCIA DE LA CORTE INTERAMERICANA DE DERECHOS HUMANOS SOBRE EL CASO LORI BERENSON MEJ\u00cdA DE DE NOVIEMBRE DE RESPECTO DEL ART\u00cdCULO I. II. III. IV. V. La Corte ha se\u00f1alado en este caso y en otros anteriores la importancia del principio de legalidad expresando en el p\u00e1rrafo de esta Sentencia que la elaboraci\u00f3n de los tipos penales supone una clara definici\u00f3n de la conducta incriminada que fije sus elementos y permita deslindarla de no punibles", - "values": [ - "Voto Separado" - ] - }, - { - "text": "RESOLUCI\u00d3N DE LA CORTE INTERAMERICANA DE DERECHOS HUMANOS DE DE OCTUBRE DE SOLICITUD DE ADOPCI\u00d3N DE MEDIDAS PROVISIONALES RESPECTO DE LA REP\u00daBLICA DEL PER\u00da CASO DE LA CRUZ FLORES Visto La Sentencia de fondo reparaciones y costas en adelante la Sentencia emitida en el presente caso por la Corte Interamericana de Derechos Humanos en adelante la Corte la Corte Interamericana o el Tribunal el de noviembre de Las Resoluciones de la Corte Interamericana de de noviembre de de septiembre de y", - "values": [ - "Medidas Provisionales" - ] - }, - { - "text": "RESOLUCI\u00d3N DE LA CORTE INTERAMERICANA DE DERECHOS HUMANOS DE DE JUNIO DE CASO BAYARRI VS. ARGENTINA SUPERVISI\u00d3N DE CUMPLIMIENTO DE SENTENCIA VISTOS La Sentencia de excepci\u00f3n preliminar fondo reparaciones y costas en adelante la Sentencia dictada por la Corte Interamericana de Derechos Humanos en adelante la Corte la Corte Interamericana o el Tribunal el de octubre de en el presente caso. La Resoluci\u00f3n de de noviembre de dictada por el Tribunal mediante la cual inter alia declar\u00f3 que ", - "values": [ - "Supervisi\u00f3n de cumplimiento de Sentencia" - ] - }, - { - "text": "Corte Interamericana de Derechos Humanos Caso Aloeboetoe y otros Vs. Surinam Sentencia de de septiembre de Reparaciones y Costas En el caso Aloeboetoe y otros la Corte Interamericana de Derechos Humanos integrada por los siguientes jueces Rafael Nieto Navia Presidente Sonia Picado Sotela Vicepresidente H\u00e9ctor FixZamudio Juez Julio A. Barberis Juez Asdr\u00fabal AguiarAranguren Juez Ant\u00f4nio A. Can\u00e7ado Trindade Juez ad hoc presentes adem\u00e1s Manuel E. Ventura Robles Secretario y Ana Mar\u00eda Reina de ", - "values": [ - "Reparaciones", - "Costas" - ] - }, - { - "text": "RESOLUCI\u00d3N DE LA CORTE INTERAMERICANA DE DERECHOS HUMANOS DE DE JUNIO DE MEDIDAS PROVISIONALES RESPECTO DE LA REP\u00daBLICA DOMINICANA CASO GONZ\u00c1LEZ MEDINA Y FAMILIARES VISTO La Resoluci\u00f3n de la Corte Interamericana de Derechos Humanos en adelante la Corte Interamericana la Corte o el Tribunal de de agosto de mediante la cual resolvi\u00f3 Requerir al Estado que adoptara de forma inmediata las medidas que fueran necesarias para proteger la vida e integridad personal de Mario Jos\u00e9 Mart\u00edn Suriel ", - "values": [ - "Medidas Provisionales" - ] - }, - { - "text": "Corte Interamericana de Derechos Humanos Caso Caballero Delgado y Santana Vs. Colombia Sentencia de de enero de Reparaciones y Costas En el caso Caballero Delgado y Santana la Corte Interamericana de Derechos Humanos integrada por los siguientes jueces H\u00e9ctor FixZamudio Presidente Hern\u00e1n Salgado Pesantes Vicepresidente Alejandro Montiel Arg\u00fcello Juez Alirio Abreu Burelli Juez Ant\u00f4nio A. Can\u00e7ado Trindade Juez Rafael Nieto Navia Juez ad hoc presentes adem\u00e1s Manuel E. Ventura Robles Secretario ", - "values": [ - "Reparaciones", - "Costas" - ] - }, - { - "text": "Corte Interamericana de Derechos Humanos Caso de las Hermanas Serrano Cruz Vs. El Salvador Sentencia de de septiembre de Interpretaci\u00f3n de la Sentencia de Fondo Reparaciones y Costas En el caso de las Hermanas Serrano Cruz la Corte Interamericana de Derechos Humanos en adelante la Corte Interamericana la Corte o el Tribunal integrada por los siguientes jueces Sergio Garc\u00eda Ram\u00edrez Presidente Alirio Abreu Burelli Vicepresidente Oliver Jackman Juez Ant\u00f4nio A. Can\u00e7ado Trindade Juez Manuel E. ", - "values": [ - "Interpretaci\u00f3n" - ] - }, - { - "text": "RESOLUCI\u00d3N DEL PRESIDENTE DE LA CORTE INTERAMERICANA DE DERECHOS HUMANOS DE DE JUNIO DE CASO QUISPIALAYA VILCAPOMA VS. PER\u00da VISTO El escrito de sometimiento del caso y el Informe de Fondo de la Comisi\u00f3n Interamericana de Derechos Humanos en adelante la Comisi\u00f3n Interamericana o la Comisi\u00f3n el escrito de solicitudes argumentos y pruebas en adelante el escrito de solicitudes y argumentos de las representantes de las presuntas v\u00edctimas en adelante las representantes y el escrito de contestaci\u00f3n", - "values": [ - "Otros" - ] - }, - { - "text": "Resoluci\u00f3n del Presidente de la Corte Interamericana de Derechos Humanos de diciembre de Caso Mej\u00eda Idrovo Vs. Ecuador Visto El escrito de demanda de la Comisi\u00f3n Interamericana de Derechos Humanos en adelante la Comisi\u00f3n o la Comisi\u00f3n Interamericana presentado el de noviembre de ante la Corte Interamericana de Derechos Humanos en adelante la Corte la Corte Interamericana o el Tribunal contra la Rep\u00fablica del Ecuador en adelante el Estado o Ecuador en el cual ofreci\u00f3 la declaraci\u00f3n de una ", - "values": [ - "Otros" - ] - }, - { - "text": "VOTO SEPARADO CONCURRENTE DEL JUEZ JACKMAN He votado a favor de la decisi\u00f3n de la Corte en el presente caso. Sin embargo la posici\u00f3n de la Jueza Medina en relaci\u00f3n con la reparaci\u00f3n adecuada me parece particularmente convincente y en este acto manifiesto mi apoyo a la soluci\u00f3n que ella propone en el \u00faltimo p\u00e1rrafo de su voto separado es decir se debe ordenar al Estado en la forma descrita por la Jueza Medina la reducci\u00f3n de la pena de privaci\u00f3n de la libertad impuesta a la se\u00f1ora Lori Berenson.", - "values": [ - "Voto Separado" - ] - }, - { - "text": "Resoluci\u00f3n de la Presidenta de la Corte Interamericana de Derechos Humanos de de febrero de Caso Francisco Us\u00f3n Ram\u00edrez Vs. Venezuela Visto El escrito de demanda presentado el de julio de por la Comisi\u00f3n Interamericana de Derechos Humanos en adelante la Comisi\u00f3n Interamericana o la Comisi\u00f3n ante la Corte Interamericana de Derechos Humanos en adelante la Corte Interamericana la Corte o el Tribunal en el cual ofreci\u00f3 un testigo y dos peritos. El escrito de solicitudes argumentos y pruebas ", - "values": [ - "Otros" - ] - }, - { - "text": "VOTO DISIDENTE DEL JUEZ VIDAL RAM\u00cdREZ Disiento de la decisi\u00f3n adoptada en la Sentencia que resuelve desestimar las excepciones preliminares opuestas por el agente del Gobierno del Per\u00fa por los siguientes fundamentos El art\u00edculo de la Convenci\u00f3n Americana autoriza a los Estados Parte en los casos que precisa y en los que se incluyen los que constituyen peligro p\u00fablico o emergencias que amenacen la independencia o seguridad del Estado a adoptar medidas que en lo posible sean compatibles con ", - "values": [ - "Voto Separado" - ] - }, - { - "text": "RESOLUCI\u00d3N DE LA CORTE INTERAMERICANA DE DERECHOS HUMANOS DE DE ABRIL DE CASO SU\u00c1REZ ROSERO VS. ECUADOR SUPERVISI\u00d3N DE CUMPLIMIENTO DE SENTENCIA VISTOS Las Sentencias de fondo en adelante la Sentencia de reparaciones en adelante la Sentencia de reparaciones y de interpretaci\u00f3n de la Sentencia de reparaciones en adelante la Sentencia de interpretaci\u00f3n dictadas por la Corte Interamericana de Derechos Humanos en adelante la Corte la Corte Interamericana o el Tribunal respectivamente los ", - "values": [ - "Supervisi\u00f3n de cumplimiento de Sentencia" - ] - }, - { - "text": "RESOLUCI\u00d3N DE LA CORTE INTERAMERICANA DE DERECHOS HUMANOS DE DE DICIEMBRE DE MEDIDAS PROVISIONALES RESPECTO DE LA REP\u00daBLICA DE COSTA RICA CASO DEL PERI\u00d3DICO LA NACI\u00d3N VISTOS El escrito de la Comisi\u00f3n Interamericana de Derechos Humanos en adelante la Comisi\u00f3n o la Comisi\u00f3n Interamericana de de marzo de mediante el cual present\u00f3 una solicitud de medidas provisionales a favor de los se\u00f1ores Mauricio Herrera Ulloa y Fern\u00e1n Vargas Rohrmoser periodista y representante legal del peri\u00f3dico La de ", - "values": [ - "Medidas Provisionales" - ] - }, - { - "text": "Resoluci\u00f3n de la Presidenta de la Corte Interamericana de Derechos Humanos de de diciembre de Medidas Provisionales respecto de la Rep\u00fablica del Ecuador Asunto del Pueblo Ind\u00edgena de Sarayaku Visto El escrito de la Comisi\u00f3n Interamericana de Derechos Humanos en adelante la Comisi\u00f3n o la Comisi\u00f3n Interamericana de de junio de mediante el cual someti\u00f3 a la Corte Interamericana de Derechos Humanos en adelante la Corte o la Corte Interamericana de acuerdo con los art\u00edculos de la Convenci\u00f3n ", - "values": [ - "Medidas Provisionales" - ] - }, - { - "text": "RESOLUCI\u00d3N DE LA CORTE INTERAMERICANA DE DERECHOS HUMANOS DE DE SEPTIEMBRE DE CASO TICONA ESTRADA Y OTROS VS. BOLIVIA SUPERVISI\u00d3N DE CUMPLIMIENTO DE SENTENCIA VISTO La Sentencia de fondo reparaciones y costas en adelante la Sentencia dictada por la Corte Interamericana de Derechos Humanos en adelante la Corte Interamericana la Corte o el Tribunal el de noviembre de y la Sentencia de interpretaci\u00f3n dictada el de julio de El Tribunal acept\u00f3 el reconocimiento parcial de responsabilidad ", - "values": [ - "Supervisi\u00f3n de cumplimiento de Sentencia" - ] - }, - { - "text": "VOTO CONCORDANTE DO JUIZ AD HOC ALEJANDRO CARLOS ESPINOSA EM RELA\u00c7\u00c3O \u00c0 SENTEN\u00c7A DA CORTE INTERAMERICANA DE DIREITOS HUMANOS NO CASO FERN\u00c1NDEZ ORTEGA E OUTROS VS. M\u00c9XICO DE DE AGOSTO DE O presente voto concordante vale para o caso citado ut supra bem como para o Caso Rosendo Cant\u00fa e outra Vs. M\u00e9xico em considera\u00e7\u00e3o \u00e0s seguintes raz\u00f5es a Tratase de militares em servi\u00e7o isto \u00e9 agentes do Estado mexicano que sob uma condi\u00e7\u00e3o especial incorreram em viola\u00e7\u00f5es graves dos ordenamentos internos e ", - "values": [ - "Voto Separado" - ] - }, - { - "text": "RESOLUCI\u00d3N DE LA CORTE INTERAMERICANA DE DERECHOS HUMANOS DE DE AGOSTO DE FONDO DE ASISTENCIA LEGAL DE V\u00cdCTIMAS CASO FORNER\u00d3N E HIJA VS. ARGENTINA VISTO La Sentencia de fondo reparaciones y costas en adelante la Sentencia dictada por la Corte Interamericana de Derechos Humanos en adelante la Corte la Corte Interamericana o este Tribunal el de abril de mediante la cual dispuso inter alia que El Estado debe reintegrar al Fondo de Asistencia Legal de V\u00edctimas la cantidad establecida en el ", - "values": [ - "Fondo de asistencia a v\u00edctimas" - ] - }, - { - "text": "CASO DE LAS HERMANAS SERRANO CRUZ VS. EL SALVADOR Sentencia sobre fondo reparaciones y costas VOTO DISIDENTE DEL JUEZ MANUEL E. VENTURA ROBLES RESPECTO DEL PUNTO RESOLUTIVO TERCERO Disiento del criterio de mayor\u00eda en el presente caso de las Hermanas Serrano Cruz contra El Salvador sustentado por ella en el punto resolutivo tercero de acuerdo con el cual la Corte no se pronunci\u00f3 sobre las alegadas violaciones al derecho a la protecci\u00f3n a la familia al derecho al nombre y a los derechos del ni\u00f1o", - "values": [ - "Voto Separado" - ] - }, - { - "text": "RESOLUCI\u00d3N DE LA CORTE INTERAMERICANA DE DERECHOS HUMANOS DE FEBRERO DE CASO ALB\u00c1N CORNEJO Y OTROS Vs. ECUADOR SUPERVISI\u00d3N DE CUMPLIMIENTO DE SENTENCIA VISTO La Sentencia de fondo reparaciones y costas dictada por la Corte Interamericana de Derechos Humanos en adelante la Corte la Corte Interamericana o el Tribunal de de noviembre de en adelante la Sentencia. En dicho Fallo se indic\u00f3 que las autoridades de la Rep\u00fablica del Ecuador en adelante el Estado o Ecuador no asumieron con seriedad y", - "values": [ - "Supervisi\u00f3n de cumplimiento de Sentencia" - ] - }, - { - "text": "RESOLUCI\u00d3N DE LA CORTE INTERAMERICANA DE DERECHOS HUMANOS DE DE NOVIEMBRE DE CASO CESTI HURTADO Vs. Per\u00fa CUMPLIMIENTO DE SENTENCIA VISTOS La Sentencia de fondo emitida por la Corte Interamericana de Derechos Humanos en adelante la Corte la Corte Interamericana o el Tribunal el de septiembre de en la cual por unanimidad declar\u00f3 que el Estado peruano viol\u00f3 en perjuicio del se\u00f1or Gustavo Adolfo Cesti Hurtado los art\u00edculos y de la Convenci\u00f3n Americana sobre Derechos Humanos en los t\u00e9rminos ", - "values": [ - "Supervisi\u00f3n de cumplimiento de Sentencia" - ] - }, - { - "text": "Voto razonado concurrente Ram\u00f3n Cadena R\u00e1mila Juez AdHoc Mi voto es a favor en su totalidad de la presente sentencia que viene a adoptar la Corte Interamericana de Derechos Humanos en el caso de la Masacre de Las Dos Erres \u00e9sta viene a ser un avance m\u00e1s en la construcci\u00f3n jurisprudencial de la Corte Interamericana. Las caracter\u00edsticas de la Masacre de Las Dos Erres la convierten en uno de los casos de mayor gravedad que la Corte Interamericana haya conocido en toda su historia no s\u00f3lo por la ", - "values": [ - "Voto Separado" - ] - }, - { - "text": "VOTO RAZONADO DE HERNAN SALGADO PESANTES He concurrido con el voto de mayor\u00eda en el presente caso por considerar que fueron probadas las violaciones a los derechos fundamentales del Sr. Daniel Tibi y de miembros de su familia. El conocimiento de estas graves violaciones a los derechos de una persona y en mi calidad de ciudadano ecuatoriano me llevan a las siguientes consideraciones. El Estado del Ecuador no puede permitir ni debe tolerar que las m\u00e1s elementales garant\u00edas del debido proceso ", - "values": [ - "Voto Separado" - ] - }, - { - "text": "Corte Interamericana de Derechos Humanos Caso Cesti Hurtado Vs. Per\u00fa Sentencia de de enero de Excepciones Preliminares En el caso Cesti Hurtado la Corte Interamericana de Derechos Humanos en adelante la Corte la Corte Interamericana o el Tribunal integrada por los siguientes jueces Hern\u00e1n Salgado Pesantes Presidente Ant\u00f4nio A. Can\u00e7ado Trindade Vicepresidente M\u00e1ximo Pacheco G\u00f3mez Juez Oliver Jackman Juez Alirio Abreu Burelli Juez Sergio Garc\u00eda Ram\u00edrez Juez y Carlos Vicente de Roux Rengifo Juez", - "values": [ - "Excepciones Preliminares" - ] - }, - { - "text": "RESOLUCI\u00d3N DE LA CORTE INTERAMERICANA DE DERECHOS HUMANOS DE DE JULIO DE CASO COMERCIANTES VS. COLOMBIA SUPERVISI\u00d3N DE CUMPLIMIENTO DE SENTENCIA VISTOS La Sentencia de fondo reparaciones y costas emitida el de julio de en adelante la Sentencia por la Corte Interamericana de Derechos Humanos en adelante la Corte la Corte Interamericana o el Tribunal. La Resoluci\u00f3n sobre cumplimiento de Sentencia que emiti\u00f3 el Tribunal el de febrero de en la cual DECLAR\u00d3 Que de conformidad con lo en el", - "values": [ - "Supervisi\u00f3n de cumplimiento de Sentencia" - ] - }, - { - "text": "Corte Interamericana de Derechos Humanos Caso Castillo Petruzzi y otros Vs. Per\u00fa Sentencia de de septiembre de Excepciones Preliminares En el caso Castillo Petruzzi y otros la Corte Interamericana de Derechos Humanos en adelante la Corte la Corte Interamericana o el Tribunal integrada por los siguientes jueces Hern\u00e1n Salgado Pesantes Presidente Ant\u00f4nio A. Can\u00e7ado Trindade Vicepresidente M\u00e1ximo Pacheco G\u00f3mez Juez Oliver Jackman Juez Sergio Garc\u00eda Ram\u00edrez Juez Carlos Vicente de Roux Rengifo ", - "values": [ - "Excepciones Preliminares" - ] - }, - { - "text": "RESOLUCI\u00d3N DE LA CORTE INTERAMERICANA DE DERECHOS HUMANOS DE DE NOVIEMBRE DE CASO CANTORAL BENAVIDES vs. PER\u00da CUMPLIMIENTO DE SENTENCIA VISTOS La Sentencia de fondo dictada el de agosto de en cuyos puntos resolutivos d\u00e9cimo segundo y d\u00e9cimo tercero la Corte decidi\u00f3 que el Estado debe ordenar una investigaci\u00f3n para determinar las personas responsables de las violaciones de los derechos humanos a que se ha hecho referencia en esta sentencia y sancionarlos. que el Estado debe reparar los", - "values": [ - "Supervisi\u00f3n de cumplimiento de Sentencia" - ] - }, - { - "text": "RESOLUCI\u00d3N DE LA CORTE INTERAMERICANA DE DERECHOS HUMANOS DE DE FEBRERO DE CASO BAENA RICARDO Y OTROS VS. PANAM\u00c1 SUPERVISI\u00d3N DE CUMPLIMIENTO DE SENTENCIA VISTO La Sentencia de fondo reparaciones y costas emitida el de febrero de en adelante la Sentencia por la Corte Interamericana de Derechos Humanos en adelante la Corte Interamericana la Corte o el Tribunal. Las Resoluciones de supervisi\u00f3n de cumplimiento de la Sentencia emitidas por la Corte Interamericana el de junio de el de de ", - "values": [ - "Supervisi\u00f3n de cumplimiento de Sentencia" - ] - }, - { - "text": "RESOLUCI\u00d3N DE LA CORTE INTERAMERICANA DE DERECHOS HUMANOS DE DE NOVIEMBRE DE CASO BAENA RICARDO Y OTROS TRABAJADORES VS. PANAM\u00c1 CUMPLIMIENTO DE SENTENCIA VISTOS La sentencia dictada en el caso Baena Ricardo y otros por la Corte Interamericana de Derechos Humanos en adelante la Corte la Corte Interamericana o el Tribunal el de febrero de en cuyos puntos resolutivos por unanimidad declar\u00f3 que el Estado viol\u00f3 los principios de legalidad y de irretroactividad consagrados en el art\u00edculo de ", - "values": [ - "Supervisi\u00f3n de cumplimiento de Sentencia" - ] - }, - { - "text": "Corte Interamericana de Derechos Humanos Caso del Tribunal Constitucional Vs. Per\u00fa Sentencia de de enero de Fondo Reparaciones y Costas En el caso del Tribunal Constitucional la Corte Interamericana de Derechos Humanos en adelante la Corte la Corte Interamericana o el Tribunal integrada por los siguientes jueces Ant\u00f4nio A. Can\u00e7ado Trindade Presidente M\u00e1ximo Pacheco G\u00f3mez Vicepresidente Hern\u00e1n Salgado Pesantes Juez Oliver Jackman Juez Alirio Abreu Burelli Juez Sergio Garc\u00eda Ram\u00edrez Juez y de", - "values": [ - "Fondo", - "Reparaciones", - "Costas" - ] - }, - { - "text": "RESOLUCI\u00d3N DEL PRESIDENTE DE LA CORTE INTERAMERICANA DE DERECHOS HUMANOS DE DE FEBRERO DE CASO FAMILIA PACHECO TINEO VS. BOLIVIA VISTO El escrito de sometimiento del caso presentado por la Comisi\u00f3n Interamericana de Derechos Humanos en adelante tambi\u00e9n la Comisi\u00f3n Interamericana o la Comisi\u00f3n ante la Corte Interamericana de Derechos Humanos en adelante la Corte Interamericana la Corte o el Tribunal el de febrero de y sus anexos recibidos el de marzo de mediante el cual ofreci\u00f3 dos los", - "values": [ - "Otros" - ] - }, - { - "text": "RESOLUCI\u00d3N DE LA CORTE INTERAMERICANA DE DERECHOS HUMANOS DE DE JUNIO DE CASO CHAPARRO \u00c1LVAREZ Y LAPO \u00cd\u00d1IGUEZ VS. ECUADOR SUPERVISI\u00d3N DE CUMPLIMIENTO DE SENTENCIA VISTO La Sentencia de excepciones preliminares fondo reparaciones y costas en adelante la Sentencia dictada en el presente caso por la Corte Interamericana de Derechos Humanos en adelante la Corte Interamericana la Corte o el Tribunalel de noviembre de Este caso se relaciona con la detenci\u00f3n ilegal de los se\u00f1ores Juan Carlos y ", - "values": [ - "Supervisi\u00f3n de cumplimiento de Sentencia" - ] - }, - { - "text": "RESOLUCI\u00d3N DE LA CORTE INTERAMERICANA DE DERECHOS HUMANOS DE DE NOVIEMBRE DE MEDIDAS PROVISIONALES RESPECTO DE LA REP\u00daBLICA DE COLOMBIA CASO GIRALDO CARDONA VISTO La Resoluci\u00f3n del Presidente de la Corte Interamericana de Derechos Humanos en adelante la Corte Interamericana la Corte o el Tribunal de de octubre de mediante la cual decidi\u00f3 inter alia Requerir al Gobierno de Colombia que adopte sin dilaci\u00f3n cuantas medidas sean necesarias para proteger la vida e integridad f\u00edsica de la ", - "values": [ - "Medidas Provisionales" - ] - }, - { - "text": "RESOLUCI\u00d3N DE LA CORTE INTERAMERICANA DE DERECHOS HUMANOS DE DE MARZO DE MEDIDAS PROVISIONALES CASO DE LA MASACRE DE MAPIRIP\u00c1N vs. COLOMBIA VISTO La Resoluci\u00f3n de medidas urgentes dictada por el entonces Presidente de la Corte Interamericana de Derechos Humanos en adelante la Corte Interamericana la Corte o el Tribunal de de febrero de La Resoluci\u00f3n dictada por la Corte el de junio de mediante la cual resolvi\u00f3 inter alia Ratificar la Resoluci\u00f3n del Presidente de medidas urgentes de ", - "values": [ - "Medidas Provisionales" - ] - }, - { - "text": "VOTO CONCORDANTE DO JUIZ SERGIO GARCIA RAMIREZ \u00c0 SENTEN\u00c7A DO CASO YATAMA VS. NICAR\u00c1GUA DE DE JUNHO DE A Categorias de viola\u00e7\u00f5es. Indiv\u00edduos e integrantes de grupos ou comunidades A Corte Interamericana conheceu viola\u00e7\u00f5es cometidas em preju\u00edzo de indiv\u00edduos isoladamente que podem ser reduzidas a um caso concreto ou colocar \u00e0 vista um padr\u00e3o de comportamento e sugerir medidas destinadas a evitar novas transgress\u00f5es similares em detrimento de numerosas pessoas. Al\u00e9m disso este Tribunal conheceu", - "values": [ - "Voto Separado" - ] - }, - { - "text": "VOTO CONCURRENTE DEL JUEZ SERGIO GARC\u00cdA RAM\u00cdREZ A LA SENTENCIA DE LA CORTE INTERAMERICANA SOBRE EL CASO DE LA MASACRE DE LA ROCHELA VS. COLOMBIA DEL DE MAYO DE La Corte Interamericana sirve a su competencia sobre violaci\u00f3n de derechos humanos desde una perspectiva jur\u00eddica que abarca tanto los instrumentos que le confieren aqu\u00e9lla como las normas de car\u00e1cter internacional que concurren a fijar el alcance de ciertos hechos y disposiciones entre otros extremos. As\u00ed se coloca en un contexto de ", - "values": [ - "Voto Separado" - ] - }, - { - "text": "RESOLUCI\u00d3N DE LA CORTE INTERAMERICANA DE DERECHOS HUMANOS DE DE NOVIEMBRE DE MEDIDAS PROVISIONALES ORDENADAS POR LA CORTE INTERAMERICANA DE DERECHOS HUMANOS RESPECTO DE LA REP\u00daBLICA DE TRINIDAD Y TOBAGO CASO JAMES Y OTROS VISTOS La Resoluci\u00f3n de la Corte Interamericana de Derechos Humanos en adelante la Corte o la Corte Interamericana de de agosto de en la cual decidi\u00f3 Requerir que Trinidad y Tobago mantenga las medidas provisionales ordenadas por la Corte Interamericana de Derechos el ", - "values": [ - "Medidas Provisionales" - ] - }, - { - "text": "RESOLUCI\u00d3N DE LA CORTE INTERAMERICANA DE DERECHOS HUMANOS DE DE JUNIO DE CASO COMERCIANTES VS. COLOMBIA SUPERVISI\u00d3N DE CUMPLIMIENTO DE SENTENCIA VISTO La Sentencia de fondo reparaciones y costas emitida el de julio de en adelante la Sentencia por la Corte Interamericana de Derechos Humanos en adelante la Corte Interamericana la Corte o el Tribunal. Las Resoluciones de la Corte Interamericana de de febrero de de julio de de noviembre de y de julio de En esta \u00faltima resoluci\u00f3n el ", - "values": [ - "Supervisi\u00f3n de cumplimiento de Sentencia" - ] - }, - { - "text": "VOTO RAZONADO DEL JUEZ A. A. CAN\u00c7ADO TRINDADE Suscribo la decisi\u00f3n de la Corte Interamericana de Derechos Humanos en el presente caso Blake pero hubiera preferido que la Corte fundamentara sus conclusiones en razonamiento distinto. Dada la importancia de la presente Sentencia sobre Excepciones Preliminares por constituir esta la primera vez en que la Corte es llamada a pronunciarse sobre la materia en las circunstancias particulares del cas desp\u00e8ce y por sus implicaciones para casos cong\u00e9neres", - "values": [ - "Voto Separado" - ] - }, - { - "text": "RESOLUCI\u00d3N DE LA CORTE INTERAMERICANA DE DERECHOS HUMANOS DE DE JULIO DE CASO LOAYZA TAMAYO VS. PER\u00da SUPERVISI\u00d3N DE CUMPLIMIENTO DE SENTENCIA VISTO Las Sentencias de fondo reparaciones y costas y de interpretaci\u00f3n de esta \u00faltima dictadas por la Corte Interamericana de Derechos Humanos en adelante la Corte Interamericana la Corte o el Tribunal el de septiembre de el de noviembre de y el de junio de respectivamente. Las Resoluciones de Supervisi\u00f3n de Cumplimiento de la Sentencia de y ", - "values": [ - "Supervisi\u00f3n de cumplimiento de Sentencia" - ] - }, - { - "text": "VOTO PARCIALMENTE DISIDENTE DEL JUEZ A. ABREU BURELLI Al ser sometida a votaci\u00f3n la sentencia de fondo en el caso Comunidad ind\u00edgena Yakye Axa manifest\u00e9 mi disentimiento en relaci\u00f3n con el punto resolutivo en el cual la Corte declara que no cuenta con elementos probatorios suficientes para demostrar la violaci\u00f3n del Derecho a la vida consagrado en el art\u00edculo de la Convenci\u00f3n Americana sobre Derechos Humanos en perjuicio de diecis\u00e9is miembros de la Comunidad ind\u00edgena Yakye Axa A partir de ", - "values": [ - "Voto Separado" - ] - }, - { - "text": "RESOLUCI\u00d3N DE LA CORTE INTERAMERICANA DE DERECHOS HUMANOS DE DE MAYO DE MEDIDAS PROVISIONALES RESPECTO DE VENEZUELA ASUNTO GUERRERO LAREZ VISTO La Resoluci\u00f3n emitida por la Corte Interamericana de Derechos Humanos en adelante la Corte Interamericana la Corte o el Tribunal el de noviembre de mediante la cual el Tribunal adopt\u00f3 medidas provisionales en el presente asunto y en particular resolvi\u00f3 inter alia Requerir al Estado que adopte de forma inmediata las medidas que sean necesarias para", - "values": [ - "Medidas Provisionales" - ] - }, - { - "text": "RESOLUCI\u00d3N DE LA CORTE INTERAMERICANA DE DERECHOS HUMANOS DE DE JUNIO DE CASO DE LA MASACRE DE SANTO DOMINGO VS. COLOMBIA VISTO El escrito de interposici\u00f3n de excepciones preliminares contestaci\u00f3n a la demanda y observaciones al escrito de solicitudes y argumentos y sus anexos en adelante el escrito de contestaci\u00f3n recibido el de marzo de mediante el cual la Rep\u00fablica de Colombia en adelante el Estado ofreci\u00f3 un testimonio y cinco dict\u00e1menes periciales sin identificar a las personas que ", - "values": [ - "Otros" - ] - }, - { - "text": "RESOLUCI\u00d3N DEL PRESIDENTE DE LA CORTE INTERAMERICANA DE DERECHOS HUMANOS DE DE JULIO DE MEDIDAS PROVISIONALES SOLICITADAS POR LA COMISI\u00d3N INTERAMERICANA DE DERECHOS HUMANOS RESPECTO DE LA REP\u00daBLICA BOLIVARIANA DE VENEZUELA CASO DE MARTA COLOMINA y LILIANA VELASQUEZ RESPECTO DE VENEZUELA VISTOS La comunicaci\u00f3n de de julio de y sus anexos mediante la cual la Comisi\u00f3n Interamericana de Derechos Humanos en adelante la Comisi\u00f3n Interamericana o la Comisi\u00f3n someti\u00f3 a la Corte Interamericana de ", - "values": [ - "Medidas Provisionales" - ] - }, - { - "text": "Corte Interamericana de Derechos Humanos Caso Castillo P\u00e1ez Vs. Per\u00fa Sentencia de de noviembre de Reparaciones y Costas En el caso Castillo P\u00e1ez la Corte Interamericana de Derechos Humanos integrada por los siguientes jueces Hern\u00e1n Salgado Pesantes Presidente Ant\u00f4nio A. Can\u00e7ado Trindade Vicepresidente M\u00e1ximo Pacheco G\u00f3mez Juez Oliver Jackman Juez Alirio Abreu Burelli Juez Sergio Garc\u00eda Ram\u00edrez Juez Carlos Vicente de Roux Rengifo Juez presentes adem\u00e1s Manuel E. Ventura Robles Secretario y M. ", - "values": [ - "Reparaciones", - "Costas" - ] - }, - { - "text": "RESOLUCI\u00d3N DE LA PRESIDENTA DE LA CORTE INTERAMERICANA DE DERECHOS HUMANOS DE DE MAYO DE CASO BARRETO LEIVA VS. VENEZUELA VISTO El escrito de demanda presentado por la Comisi\u00f3n Interamericana de Derechos Humanos en adelante la Comisi\u00f3n Interamericana o la Comisi\u00f3n ante la Corte Interamericana de Derechos Humanos en adelante la Corte Interamericana la Corte o el Tribunal el de octubre de en el que ofreci\u00f3 la declaraci\u00f3n de la presunta v\u00edctima y de un perito no identificado. La comunicaci\u00f3n", - "values": [ - "Otros" - ] - }, - { - "text": "RESOLUCI\u00d3N DEL PRESIDENTE DE LA CORTE INTERAMERICANA DE DERECHOS HUMANOS DEL DE DICIEMBRE DE MEDIDAS PROVISIONALES SOLICITADAS POR LA COMISI\u00d3N INTERAMERICANA DE DERECHOS HUMANOS RESPECTO DEL PER\u00da CASO CHIPOCO VISTO La comunicaci\u00f3n de de noviembre de recibida en la Secretar\u00eda de la Corte en forma completa al d\u00eda siguiente mediante la cual la Comisi\u00f3n Interamericana de Derechos Humanos en adelante la Comisi\u00f3n o la Comisi\u00f3n Interamericana somete a la Corte Interamericana de Derechos Humanos ", - "values": [ - "Medidas Provisionales" - ] - }, - { - "text": "Corte Interamericana de Derechos Humanos Caso God\u00ednez Cruz Vs. Honduras Sentencia de de agosto de Interpretaci\u00f3n de la Sentencia de Reparaciones y Costas En el caso God\u00ednez Cruz la Corte Interamericana de Derechos Humanos integrada en observancia del art\u00edculo de la Convenci\u00f3n Americana sobre Derechos Humanos por los siguientes jueces H\u00e9ctor FixZamudio Presidente Rodolfo E. Piza E Juez Pedro Nikken Juez Rafael Nieto Navia Juez Rigoberto Espinal Ir\u00edas Juez ad hoc presente adem\u00e1s Manuel E. ", - "values": [ - "Interpretaci\u00f3n" - ] - }, - { - "text": "RESOLUCI\u00d3N DE LA CORTE INTERAMERICANA DE DERECHOS HUMANOS DE DE NOVIEMBRE DE MEDIDAS PROVISIONALES SOLICITADAS POR LA COMISI\u00d3N INTERAMERICANA DE DERECHOS HUMANOS RESPECTO DE LOS ESTADOS UNIDOS MEXICANOS CASO DIGNA OCHOA Y PL\u00c1CIDO Y OTROS VISTOS El escrito de de noviembre de y sus anexos mediante el cual la Comisi\u00f3n Interamericana de Derechos Humanos en adelante la Comisi\u00f3n o la Comisi\u00f3n Interamericana someti\u00f3 a la Corte Interamericana de Derechos Humanos en adelante la Corte o la Corte en", - "values": [ - "Medidas Provisionales" - ] - }, - { - "text": "RESOLUCI\u00d3N DE LA CORTE INTERAMERICANA DE DERECHOS HUMANOS DE DE ABRIL DE CASO FAMILIA PACHECO TINEO VS. ESTADO PLURINACIONAL DE BOLIVIA SUPERVISI\u00d3N DE CUMPLIMIENTO DE SENTENCIA VISTO La Sentencia de excepciones preliminares fondo reparaciones y costas en adelante la Sentencia dictada por la Corte Interamericana de Derechos Humanos en adelante la Corte la Corte Interamericana o el Tribunal el de noviembre de la cual fue notificada el de diciembre de en la cual se declar\u00f3 que el Estado ", - "values": [ - "Supervisi\u00f3n de cumplimiento de Sentencia" - ] - }, - { - "text": " VOTO RAZONADO DEL JUEZ SERGIO GARC\u00cdA RAM\u00cdREZ CON RESPECTO A LA SENTENCIA DE LA CORTE INTERAMERICANA DE DERECHOS HUMANOS DEL DE MARZO DE EN EL CASO COMUNIDAD IND\u00cdGENA SAWHOYAMAXA VS. PARAGUAY I. Cuestiones procesales procedimientos efectivos y plazo razonable En el caso que ahora nos ocupa quedan de manifiesto nuevamente como ha sucedido en otros litigios llevados ante la Corte que dieron lugar a una jurisprudencia cada vez m\u00e1s amplia y comprensiva los problemas asociados a la tutela o no ", - "values": [ - "Voto Separado" - ] - }, - { - "text": "RESOLUCI\u00d3N DEL PRESIDENTE DE LA CORTE INTERAMERICANA DE DERECHOS HUMANOS DE DE ENERO DE CASO LUIS WILLIAMS POLLO RIVERA VS. PER\u00da VISTO El sometimiento del caso Luis Williams Pollo Rivera vs. Per\u00fa ante la Corte Interamericana de Derechos Humanos en adelante la Corte o el Tribunal por parte de la Comisi\u00f3n Interamericana de Derechos Humanos en adelante la Comisi\u00f3n Interamericana o la Comisi\u00f3n realizado mediante escrito de de febrero de El escrito original y los anexos fueron recibidos el de ", - "values": [ - "Otros" - ] - }, - { - "text": "VOTO RAZONADO DEL JUEZ AA. CAN\u00c7ADO TRINDADE Suscribo la decisi\u00f3n de la Corte de desestimar las excepciones preliminares interpuestas por el Gobierno demandado y de proseguir con el conocimiento del presente caso en cuanto al fondo con la cual estoy de acuerdo. Si\u00e9ntome obligado a adjuntar este Voto Razonado para dejar constancia de los fundamentos de mi razonamiento y posici\u00f3n sobre el punto central de las dos excepciones preliminares presentadas por el Gobierno del Per\u00fa a saber la invocaci\u00f3n ", - "values": [ - "Voto Separado" - ] - }, - { - "text": "RESOLUCI\u00d3N DE LA CORTE INTERAMERICANA DE DERECHOS HUMANOS DE DE DICIEMBRE DE MEDIDAS PROVISIONALES RESPECTO REPUBLICA BOLIVARIANA DE VENEZUELA CASO MARTA COLOMINA Y LILIANA VEL\u00c1SQUEZ VISTOS La Resoluci\u00f3n del Presidente de la Corte Interamericana de Derechos Humanos en adelante el Presidente dictada el de julio de mediante la cual resolvi\u00f3 Requerir al Estado que adopte sin dilaci\u00f3n cuantas medidas sean necesarias para proteger la vida la integridad personal y la libertad de expresi\u00f3n de ", - "values": [ - "Medidas Provisionales" - ] - }, - { - "text": "RESOLUCI\u00d3N DEL PRESIDENTE DE LA CORTE INTERAMERICANA DE DERECHOS HUMANOS DE DE DICIEMBRE DE CASO GARC\u00cdA IBARRA Y FAMILIARES VS. ECUADOR VISTO El escrito de sometimiento del caso y el Informe de Fondo de la Comisi\u00f3n Interamericana de Derechos Humanos en adelante la Comisi\u00f3n Interamericana o la Comisi\u00f3n el escrito de solicitudes argumentos y pruebas en adelante el escrito de solicitudes y argumentos de los representantes de las presuntas v\u00edctimas en adelante los representantes y el escrito de", - "values": [ - "Otros" - ] - }, - { - "text": "RESOLUCI\u00d3N DEL PRESIDENTE EN EJERCICIO DE LA CORTE INTERAMERICANA DE DERECHOS HUMANOS DE DE MAYO DE SOLICITUD DE MEDIDAS PROVISIONALES PRESENTADA POR LA COMISI\u00d3N INTERAMERICANA DE DERECHOS HUMANOS RESPECTO DE COLOMBIA ASUNTO DANILO RUEDA VISTO El escrito de la Comisi\u00f3n Interamericana de Derechos Humanos en adelante la Comisi\u00f3n Interamericana o la Comisi\u00f3n de de abril de mediante el cual someti\u00f3 a la Corte Interamericana de Derechos Humanos en adelante la Corte Interamericana la Corte o el ", - "values": [ - "Medidas Provisionales" - ] - }, - { - "text": "Resoluci\u00f3n de la Corte Interamericana de Derechos Humanos de de febrero de Caso L\u00f3pez \u00c1lvarez vs. Honduras Supervisi\u00f3n de Cumplimiento de Sentencia VISTOS La Sentencia de fondo reparaciones y costas emitida el de febrero de en adelante la Sentencia por la Corte Interamericana de Derechos Humanos en adelante la Corte la Corte Interamericana o el Tribunal mediante la cual el Tribunal DISPUSO El Estado debe investigar los hechos del caso y aplicar las providencias que resulten de esa a ", - "values": [ - "Supervisi\u00f3n de cumplimiento de Sentencia" - ] - }, - { - "text": "RESOLUCI\u00d3N DEL PRESIDENTE DE LA CORTE INTERAMERICANA DE DERECHOS HUMANOS DEL DE JULIO DE MEDIDAS PROVISIONALES SOLICITADAS POR LA COMISI\u00d3N INTERAMERICANA DE DERECHOS HUMANOS RESPECTO DE GUATEMALA CASO CHUNIMA EL PRESIDENTE DE LA CORTE INTERAMERICANA DE DERECHOS HUMANOS VISTO La comunicaci\u00f3n de de junio de recibida en la Secretar\u00eda de la Corte al d\u00eda siguiente mediante la cual la Comisi\u00f3n Interamericana de Derechos Humanos en adelante la Comisi\u00f3n somete a la Corte Interamericana de Derechos", - "values": [ - "Medidas Provisionales" - ] - }, - { - "text": "VOTO CONCURRENTE DEL JUEZ AD HOC ALEJANDRO CARLOS ESPINOSA EN RELACI\u00d3N CON LA SENTENCIA DE LA CORTE INTERAMERICANA DE DERECHOS HUMANOS EN EL CASO ROSENDO CANT\u00da Y OTRA VS. M\u00c9XICO DE DE AGOSTO DE El presente voto concurrente vale para el caso citado ut supra as\u00ed como para el caso Fern\u00e1ndez Ortega y otros Vs. M\u00e9xico en consideraci\u00f3n a las razones siguientes a Se trata de militares en servicio esto es agentes del Estado mexicano que bajo una condici\u00f3n especial incurrieron en violaciones graves ", - "values": [ - "Voto Separado" - ] - }, - { - "text": "RESOLUCI\u00d3N DE LA PRESIDENTA DE LA CORTE INTERAMERICANA DE DERECHOS HUMANOS DE DE MARZO DE CASO SU\u00c1REZ ROSERO VS. ECUADOR SUPERVISI\u00d3N DE CUMPLIMIENTO DE SENTENCIAS VISTO La Sentencia de fondo dictada por la Corte Interamericana de Derechos Humanos en adelante la Corte la Corte Interamericana o el Tribunal el de noviembre de mediante la cual Declar\u00f3 que el Ecuador deb\u00eda ordenar una investigaci\u00f3n para determinar las personas responsables de las violaciones a los derechos humanos a que se ", - "values": [ - "Supervisi\u00f3n de cumplimiento de Sentencia" - ] - }, - { - "text": "VOTO CONCURRENTE DEL JUEZ SERGIO GARC\u00cdA RAM\u00cdREZ A LA SENTENCIA DE LA CORTE INTERAMERICANA DE DERECHOS HUMANOS SOBRE EL CASO VALLE JARAMILLO Y OTROS DEL DE NOVIEMBRE DE En la sentencia correspondiente al caso Valle Jaramillo y otros Colombia de la Corte Interamericana de Derechos Humanos del de noviembre de el Tribunal ha avanzado apreciablemente en la formulaci\u00f3n de criterios sobre temas relevantes del enjuiciamiento penal contemplado desde la perspectiva de los derechos humanos que en ", - "values": [ - "Voto Separado" - ] - }, - { - "text": "VOTO DISIDENTE DEL JUEZ AA. CAN\u00c7ADO TRINDADE Lamento no poder compartir la decisi\u00f3n tomada por la mayor\u00eda de la Corte Interamericana de Derechos Humanos en el punto resolutivo n. y el criterio por \u00e9sta adoptado sobre este punto en los p\u00e1rrafos considerativos ns. de la presente Sentencia sobre Excepciones Preliminares en el caso de las Hermanas Serrano Cruz versus El Salvador en el sentido de haber la Corte admitido la primera excepci\u00f3n preliminar ratione temporis interpuesta por el Estado ", - "values": [ - "Voto Separado" - ] - }, - { - "text": "Corte Interamericana de Derechos Humanos Caso Maqueda Vs. Argentina Resoluci\u00f3n de de enero Excepciones Preliminares En el caso Maqueda la Corte Interamericana de Derechos Humanos integrada por los siguientes jueces H\u00e9ctor FixZamudio Presidente Hern\u00e1n Salgado Pesantes Vicepresidente Alejandro Montiel Arg\u00fcello Juez M\u00e1ximo Pacheco G\u00f3mez Juez Ant\u00f4nio A. Can\u00e7ado Trindade Juez estuvieron adem\u00e1s presentes Manuel E. Ventura Robles Secretario y Ana Mar\u00eda Reina Secretaria adjunta de acuerdo con el ", - "values": [ - "Excepciones Preliminares" - ] - }, - { - "text": "CORTE INTERAMERICANA DE DERECHOS HUMANOS CASO MEJ\u00cdA IDROVO VS. ECUADOR SENTENCIA DE DE JULIO DE EXCEPCIONES PRELIMINARES FONDO REPARACIONES Y COSTAS En el caso Mej\u00eda Idrovo la Corte Interamericana de Derechos Humanos en adelante la Corte Interamericana la Corte o el Tribunal integrada por los siguientes jueces Diego Garc\u00edaSay\u00e1n Presidente Leonardo A. Franco Vicepresidente Manuel E. Ventura Robles Juez Margarette May Macaulay Jueza Rhadys Abreu Blondet Jueza y Eduardo Vio Grossi Juez. presente", - "values": [ - "Excepciones Preliminares", - "Fondo", - "Reparaciones", - "Costas" - ] - }, - { - "text": "VOTO CONCURRENTE RAZONADO DEL JUEZ SERGIO GARC\u00cdA RAM\u00cdREZ EN LA SENTENCIA DE REPARACIONES DEL CASO BAMACA VELASQUEZ Restitutio in integrum En su parte considerativa p\u00e1rr. la sentencia a la que se refiere este voto se\u00f1ala de nueva cuenta que la reparaci\u00f3n del da\u00f1o ocasionado por la infracci\u00f3n de una obligaci\u00f3n internacional requiere siempre que sea posible la plena restituci\u00f3n restitutio in integrum la cual consiste en el restablecimiento de la situaci\u00f3n anterior. A este respecto es pertinente ", - "values": [ - "Voto Separado" - ] - }, - { - "text": "VOTO RAZONADO DEL JUEZ AA. CAN\u00c7ADO TRINDADE Al haber concurrido con mi voto para la adopci\u00f3n de la presente Sentencia de la Corte Interamericana de Derechos Humanos me veo sin embargo en la obligaci\u00f3n de dejar constancia en este Voto Razonado de mi razonamiento sobre un punto medular de esta Sentencia conducente a fortalecer uno de sus puntos resolutivos n. y la parte considerativa a \u00e9ste correspondiente p\u00e1rrs. como fundamentaci\u00f3n de mi posici\u00f3n personal al respecto. Considero que la por ", - "values": [ - "Voto Separado" - ] - }, - { - "text": "RESOLUCI\u00d3N DE LA CORTE INTERAMERICANA DE DERECHOS HUMANOS DE DE NOVIEMBRE DE MEDIDAS PROVISIONALES ADOPTADAS POR LA CORTE INTERAMERICANA DE DERECHOS HUMANOS RESPECTO DE LA REP\u00daBLICA DE GUATEMALA CASO COLOTENANGO VISTOS La Resoluci\u00f3n de la Corte Interamericana de Derechos Humanos en adelante la Corte o la Corte Interamericana de de junio de mediante la cual Requiri\u00f3 al Gobierno de Guatemala que adoptase sin dilaci\u00f3n cuantas medidas fuesen necesarias para proteger el derecho a la vida e ", - "values": [ - "Medidas Provisionales" - ] - }, - { - "text": "VOTO RAZONADO DEL JUEZ AA. CAN\u00c7ADO TRINDADE He concurrido con mi voto a la adopci\u00f3n por la Corte Interamericana de su presente Sentencia en el caso de la Masacre de Mapirip\u00e1n. Dada la particular gravedad de los hechos del presente caso que retratan la verdadera tragedia humana vivida por Colombia en los \u00faltimos a\u00f1os me veo en la obligaci\u00f3n de dejar constancia de mis reflexiones sobre lo tratado por la Corte en la presente Sentencia como fundamento de mi posici\u00f3n al respecto. Con este prop\u00f3sito", - "values": [ - "Voto Separado" - ] - }, - { - "text": "Resoluci\u00f3n de la Corte Interamericana de Derechos Humanos de de Febrero de Medidas Provisionales respecto de los Estados Unidos Mexicanos Asunto Pilar Noriega Garc\u00eda y otros VISTO La Resoluci\u00f3n emitida por el Presidente de la Corte Interamericana de Derechos Humanos en adelante la Corte la Corte Interamericana o el Tribunal el de octubre de y las Resoluciones emitidas por el Tribunal el de noviembre de de abril de de junio de y de noviembre de En \u00e9sta \u00faltima la Corte resolvi\u00f3 al ", - "values": [ - "Medidas Provisionales" - ] - }, - { - "text": "RESOLUCI\u00d3N DE LA CORTE INTERAMERICANA DE DERECHOS HUMANOS DE DE SEPTIEMBRE DE MEDIDAS PROVISIONALES ADOPTADAS POR LA CORTE INTERAMERICANA DE DERECHOS HUMANOS RESPECTO DE LA REP\u00daBLICA DE COLOMBIA CASO GIRALDO CARDONA VISTOS La resoluci\u00f3n de la Corte Interamericana de Derechos Humanos en adelante la Corte o la Corte Interamericana de de noviembre de mediante la cual decidi\u00f3 Requerir al Estado de Colombia que tan pronto como la Hermana Noemy Palencia regrese al Meta adopte cuantas medidas ", - "values": [ - "Medidas Provisionales" - ] - }, - { - "text": "RESOLUCI\u00d3N DEL PRESIDENTE DE LA CORTE INTERAMERICANA DE DERECHOS HUMANOS DE DE ABRIL DE SOLICITUD DE AMPLIACI\u00d3N DE MEDIDAS PROVISIONALES A FAVOR DEL SE\u00d1OR TIRSO ROM\u00c1N VALENZUELA \u00c1VILA CASO RAXCAC\u00d3 REYES Y OTROS RESPECTO GUATEMALA VISTOS La Resoluci\u00f3n de la Corte Interamericana de Derechos Humanos en adelante la Corte la Corte Interamericana o el Tribunal dictada el de agosto de en la cual consider\u00f3 en lo pertinente que en este caso las medidas solicitadas tienen como objetivo no frustrar ", - "values": [ - "Medidas Provisionales" - ] - }, - { - "text": "RESOLUCI\u00d3N DE LA CORTE INTERAMERICANA DE DERECHOS HUMANOS DE DE NOVIEMBRE DE CASO TRABAJADORES CESADOS DEL CONGRESO Aguado Alfaro y otros VS. PER\u00da SUPERVISI\u00d3N DE CUMPLIMIENTO DE SENTENCIA Y SOLICITUD DE MEDIDAS PROVISIONALES VISTO A Supervisi\u00f3n de cumplimiento de Sentencia La Sentencia de excepciones preliminares fondo reparaciones y costas en adelante la Sentencia dictada por la Corte Interamericana de Derechos Humanos en adelante la Corte la Corte Interamericana o el Tribunal el de de ", - "values": [ - "Supervisi\u00f3n de cumplimiento de Sentencia" - ] - }, - { - "text": "VOTO FUNDAMENTADO DO JUIZ AD HOC ROBERTO DE FIGUEIREDO CALDAS COM RELA\u00c7\u00c3O \u00c0 SENTEN\u00c7A DA CORTE INTERAMERICANA DE DIREITOS HUMANOS NO CASO GARIBALDI VS. BRASIL PROFERIDA EM DE SETEMBRO DE I Introdu\u00e7\u00e3o Mesmo de pleno acordo com os pr\u00f3prios termos da senten\u00e7a constru\u00edda coletivamente em boa t\u00e9cnica que visa o consenso apresento este voto de fundamenta\u00e7\u00e3o pr\u00f3pria na esperan\u00e7a de que possa servir para profunda reflex\u00e3o pelo Brasil e demais pa\u00edses jurisdicionados os Estados v\u00eam sendo condenados ", - "values": [ - "Voto Separado" - ] - }, - { - "text": "RESOLUCI\u00d3N DE LA CORTE INTERAMERICANA DE DERECHOS HUMANOS DE DE FEBRERO DE MEDIDAS PROVISIONALES RESPECTO DE LOS ESTADOS UNIDOS MEXICANOS CASO ROSENDO CANT\u00da Y OTRA VISTO La Resoluci\u00f3n emitida por la entonces Presidenta en adelante la Presidenta de la Corte Interamericana de Derechos Humanos en adelante la Corte Interamericana la Corte o el Tribunal el de abril de mediante la cual requiri\u00f3 a los Estados Unidos Mexicanos en adelante M\u00e9xico o el Estado que adopten de forma inmediata las que ", - "values": [ - "Medidas Provisionales" - ] - }, - { - "text": "Corte Interamericana de Derechos Humanos Caso Neira Alegr\u00eda y otros Vs. Per\u00fa Sentencia de de diciembre de Excepciones Preliminares En el caso Neira Alegr\u00eda y otros la Corte Interamericana de Derechos Humanos integrada por los siguientes jueces H\u00e9ctor FixZamudio Presidente Thomas Buergenthal Juez Rafael Nieto Navia Juez Julio A. Barberis Juez Jorge E. Orihuela Iberico Juez ad hoc presentes adem\u00e1s Manuel E. Ventura Robles Secretario y Ana Mar\u00eda Reina Secretaria adjunta de acuerdo con el del ", - "values": [ - "Excepciones Preliminares" - ] - }, - { - "text": "VOTO CONJUNTO PARCIALMENTE DISIDENTE DE LOS JUECES MANUEL E. VENTURA ROBLES EDUARDO VIO GROSSI Y EDUARDO FERRER MACGREGOR POISOT CORTE INTERAMERICANA DE DERECHOS HUMANOS CASO M\u00c9MOLI VS. ARGENTINA SENTENCIA DE DE AGOSTO DE EXCEPCIONES PRELIMINARES FONDO REPARACIONES Y COSTAS INTRODUCCI\u00d3N. Se emite el presente voto disidente en m\u00e9rito de que por las razones que se exponen seguidamente se discrepa de los puntos resolutivos y de la Sentencia de de agosto de Excepciones Preliminares Fondo y ", - "values": [ - "Voto Separado" - ] - }, - { - "text": "Corte Interamericana de Derechos Humanos Caso Su\u00e1rez Rosero Vs. Ecuador Sentencia de de mayo de Interpretaci\u00f3n de la Sentencia de Reparaciones En el caso Su\u00e1rez Rosero la Corte Interamericana de Derechos Humanos en adelante la Corte o la Corte Interamericana integrada por los siguientes jueces Ant\u00f4nio A. Can\u00e7ado Trindade Presidente Hern\u00e1n Salgado Pesantes Juez M\u00e1ximo Pacheco G\u00f3mez Juez Oliver Jackman Juez Alirio Abreu Burelli Juez Sergio Garc\u00eda Ram\u00edrez Juez Carlos Vicente de Roux Rengifo Juez", - "values": [ - "Interpretaci\u00f3n" - ] - }, - { - "text": "VOTO CONCURRENTE DEL JUEZ ALIRIO ABREU BURELLI Al unir mi voto al de los dem\u00e1s Jueces de la Corte Interamericana de Derechos Humanos en la sentencia del caso Myrna Mack Chang vs Guatemala me permito hacer separadamente las siguientes consideraciones I De acuerdo con lo narrado en la Sentencia la Comisi\u00f3n Interamericana de Derechos Humanos aleg\u00f3 en su demanda que el Estado de Guatemala es responsable de la privaci\u00f3n arbitraria del derecho a la vida de Myrna Mack toda vez que el asesinato de \u00e9sta", - "values": [ - "Voto Separado" - ] - }, - { - "text": "VOTO RAZONADO DEL JUEZ DE ROUX RENGIFO Comparto el punto de vista de acuerdo con el cual el derecho al reconocimiento de la personalidad jur\u00eddica es decir a ser considerado por el orden jur\u00eddico como sujeto de derechos no guarda relaci\u00f3n con la cuesti\u00f3n de si a una persona se le permite o no que ejerza estos \u00faltimos en la pr\u00e1ctica. Al respecto bien vale la distinci\u00f3n entre la personalidad jur\u00eddica que ser\u00eda el qu\u00e9 de la condici\u00f3n de sujeto de derechos y deberes la capacidad jur\u00eddica que ser\u00eda ", - "values": [ - "Voto Separado" - ] - }, - { - "text": "RESOLUCI\u00d3N DE LA CORTE INTERAMERICANA DE DERECHOS HUMANOS DE DE AGOSTO DE CASO RICARDO CANESE VS. PARAGUAY SUPERVISI\u00d3N DE CUMPLIMIENTO DE SENTENCIA VISTO La Sentencia de fondo reparaciones y costas en adelante la Sentencia dictada por la Corte Interamericana de Derechos Humanos en adelante la Corte Interamericana la Corte o el Tribunal el de agosto de mediante la cual DISPUSO por unanimidad que La Sentencia constituye per se una forma de reparaci\u00f3n en los t\u00e9rminos de los p\u00e1rrafos y de ", - "values": [ - "Supervisi\u00f3n de cumplimiento de Sentencia" - ] - }, - { - "text": "VOTO RAZONADO CONCURRENTE DEL JUEZ ALFONSO NOVALES AGUIRRE Concurro con mi voto en esta Sentencia de reparaci\u00f3n de da\u00f1os basado en lo preceptuado en el art\u00edculo de la Convenci\u00f3n Americana sobre Derechos Humanos. Cuando decida que hubo violaci\u00f3n de un derecho o libertad protegidos en esta Convenci\u00f3n la Corte dispondr\u00e1 que se garantice al lesionado en el goce de su derecho o libertad conculcados. Dispondr\u00e1 asimismo si ello fuera procedente que se reparen las consecuencias de la medida o que ha ", - "values": [ - "Voto Separado" - ] - }, - { - "text": "Corte Interamericana de Derechos Humanos Caso Blake Vs. Guatemala Sentencia de de octubre de Interpretaci\u00f3n de la Sentencia de Reparaciones y Costas En el caso Blake la Corte Interamericana de Derechos Humanos en adelante la Corte o la Corte Interamericana integrada por los siguientes jueces Ant\u00f4nio A. Can\u00e7ado Trindade Presidente M\u00e1ximo Pacheco G\u00f3mez Vicepresidente Hern\u00e1n Salgado Pesantes Juez Oliver Jackman Juez Alirio Abreu Burelli Juez Sergio Garc\u00eda Ram\u00edrez Juez Carlos Vicente de Roux y ", - "values": [ - "Interpretaci\u00f3n" - ] - }, - { - "text": "VOTO CONCURRENTE DE LA JUEZA CECILIA MEDINA QUIROGA EN EL CASO ACEVEDO JARAMILLO Y OTROS VS. PER\u00da He concurrido con mi voto al punto dispositivo de esta sentencia por cuanto no estoy en contra de que se otorgue una indemnizaci\u00f3n por da\u00f1o material a los trabajadores cesados respecto de quienes no se han cumplido las sentencias de amparo que ordenaron su reposici\u00f3n al trabajo. Tengo sin embargo una discrepancia en cuanto al modo de calcular esa indemnizaci\u00f3n que la Corte establece para que los ", - "values": [ - "Voto Separado" - ] - }, - { - "text": "RESOLUCI\u00d3N DE LA PRESIDENTA DE LA CORTE INTERAMERICANA DE DERECHOS HUMANOS DE DE DICIEMBRE DE CASO BARRIOS ALTOS VS. PER\u00da SUPERVISI\u00d3N DE CUMPLIMIENTO DE SENTENCIA VISTOS La Sentencia de fondo dictada por la Corte Interamericana de Derechos Humanos en adelante la Corte la Corte Interamericana o el Tribunal el de marzo de La Sentencia de Interpretaci\u00f3n de la Sentencia de fondo dictada en el presente caso por la Corte Interamericana el de septiembre de La Sentencia de reparaciones emitida", - "values": [ - "Supervisi\u00f3n de cumplimiento de Sentencia" - ] - }, - { - "text": "VOTO PARCIALMENTE DISIDENTE DEL JUEZ ALBERTO P\u00c9REZ P\u00c9REZ CASO MOHAMED VS. ARGENTINA Sentencia de de noviembre de Excepci\u00f3n preliminar Fondo Reparaciones y Costas Alcance de la disidencia parcial. El presente voto disidente s\u00f3lo se refiere al punto declarativo No estima pertinente determinar si se produjo una violaci\u00f3n al principio de legalidad consagrado en el art\u00edculo de la Convenci\u00f3n Americana sobre Derechos Humanos en relaci\u00f3n con el art\u00edculo de la misma en perjuicio del se\u00f1or Oscar ", - "values": [ - "Voto Separado" - ] - }, - { - "text": "INTERAMERICAN COURT OF HUMAN RIGHTS CASE OF BARBANI DUARTE ET AL v. URUGUAY JUDGMENT OF OCTOBER Merits reparations and costs In the case of Barbani Duarte et al the InterAmerican Court of Human Rights hereinafter the InterAmerican Court or the Court composed of the following judges Diego Garc\u00edaSay\u00e1n President Manuel E. Ventura Robles Judge Margarette May Macaulay Judge Rhadys Abreu Blondet Judge and Eduardo Vio Grossi Judge also present Pablo Saavedra Alessandri Secretary pursuant to Articles", - "values": [ - "Fondo", - "Reparaciones", - "Costas" - ] - }, - { - "text": "VOTO CONCORDANTE DO JUIZ DIEGO GARCIASAY\u00c1N SENTEN\u00c7A DA CORTE INTERAMERICANA DE DIREITOS HUMANOS CASO ARTAVIA MURILLO E OUTROS FECUNDA\u00c7\u00c3O IN VITRO VS. COSTA RICA DE DE NOVEMBRO DE Esta senten\u00e7a \u00e9 uma decis\u00e3o muito importante e clara da Corte para consolidar os direitos \u00e0 integridade pessoal \u00e0 vida privada e familiar e o princ\u00edpio de n\u00e3o discrimina\u00e7\u00e3o. Todos eles foram seriamente violados pelos fatos que geraram este contencioso. A Corte ao estabelecer quais direitos foram violados e as a ", - "values": [ - "Voto Separado" - ] - }, - { - "text": "VOTO DISSIDENTE DO JUIZ AD HOC ALEJANDRO MONTIEL ARG\u00dcELLO De acordo com a legisla\u00e7\u00e3o nicaraguense corresponde ao Poder Eleitoral independentemente dos tr\u00eas Poderes tradicionais a organiza\u00e7\u00e3o dire\u00e7\u00e3o e vigil\u00e2ncia das elei\u00e7\u00f5es. O organismo mais alto do poder eleitoral \u00e9 o Conselho Supremo Eleitoral o qual tem fun\u00e7\u00f5es jurisdicionais e administrativas. \u00c9 indubit\u00e1vel que no presente caso a inscri\u00e7\u00e3o dos candidatos que participariam na elei\u00e7\u00e3o era uma fun\u00e7\u00e3o jurisdicional em mat\u00e9ria eleitoral que ", - "values": [ - "Voto Separado" - ] - }, - { - "text": "Resoluci\u00f3n de la Corte Interamericana de Derechos Humanos de de Enero de Caso Neira Alegr\u00eda y otros Vs. Per\u00fa Supervisi\u00f3n de Cumplimiento de Sentencia Vistos La Sentencia de fondo dictada por la Corte Interamericana de Derechos Humanos en adelante la Corte la Corte Interamericana o el Tribunal el de enero de La Sentencia de reparaciones y costas dictada por la Corte Interamericana en adelante la Sentencia el de septiembre de en la cual inter alia decidi\u00f3 que el Estado del Per\u00fa est\u00e1 a", - "values": [ - "Supervisi\u00f3n de cumplimiento de Sentencia" - ] - }, - { - "text": "Corte Interamericana de Derechos Humanos Caso Raxcac\u00f3 Reyes Vs. Guatemala Sentencia de de septiembre de Fondo Reparaciones y Costas En el caso Raxcac\u00f3 Reyes La Corte Interamericana de Derechos Humanos en adelante la Corte la Corte Interamericana o el Tribunal integrada por los siguientes jueces Sergio Garc\u00eda Ram\u00edrez Presidente Alirio Abreu Burelli Vicepresidente Oliver Jackman Juez Ant\u00f4nio A. Can\u00e7ado Trindade Juez Manuel E. Ventura Robles Juez y Alejandro S\u00e1nchez Garrido Juez ad hoc presentes", - "values": [ - "Fondo", - "Reparaciones", - "Costas" - ] - }, - { - "text": "Resoluci\u00f3n de la Corte Interamericana de Derechos Humanos de de mayo de Medidas Provisionales respecto del Per\u00fa Caso de los Hermanos G\u00f3mez Paquiyauri VISTO La Resoluci\u00f3n de la Corte Interamericana de Derechos Humanos en adelante la Corte la Corte Interamericana o el Tribunal de de mayo de mediante la cual resolvi\u00f3 inter alia requerir al Estado que adoptara sin dilaci\u00f3n las medidas necesarias para proteger la vida e integridad personal de los miembros de la familia G\u00f3mez Paquiyauri que ", - "values": [ - "Medidas Provisionales" - ] - }, - { - "text": "RESOLUCI\u00d3N DE LA CORTE INTERAMERICANA DE DERECHOS HUMANOS DE DE NOVIEMBRE DE CASO CINCO PENSIONISTAS VS. PER\u00da. SUPERVISI\u00d3N DEL CUMPLIMIENTO DE SENTENCIA VISTOS La Sentencia de fondo reparaciones y costas dictada por la Corte Interamericana de Derechos Humanos en adelante la Corte la Corte Interamericana o el Tribunal el de febrero de Las Resoluciones dictadas por la Corte Interamericana el de noviembre de y el de septiembre de en relaci\u00f3n con la supervisi\u00f3n de cumplimiento del caso. ", - "values": [ - "Supervisi\u00f3n de cumplimiento de Sentencia" - ] - }, - { - "text": "RESOLUCI\u00d3N DE LA CORTE INTERAMERICANA DE DERECHOS HUMANOS DE DE DICIEMBRE DE MEDIDAS PROVISIONALES RESPECTO DE REP\u00daBLICA DOMINICANA ASUNTO HAITIANOS Y DOMINICANOS DE ORIGEN HAITIANO EN LA REP\u00daBLICA DOMINICANA VISTO El escrito de la Comisi\u00f3n Interamericana de Derechos Humanos en adelante la Comisi\u00f3n o la Comisi\u00f3n Interamericana de de mayo de y sus anexos mediante el cual someti\u00f3 a la Corte Interamericana de Derechos Humanos en adelante la Corte Interamericana o la Corte o el Tribunal la ", - "values": [ - "Medidas Provisionales" - ] - }, - { - "text": "VOTO CONCURRENTE RAZONADO DEL JUEZ SERGIO GARC\u00cdA RAM\u00cdREZ A LA SENTENCIA DE REPARACIONES DICTADA EN EL CASO BARRIOS ALTOS CHUMBIPUMA AGUIRRE Y OTROS VS. PER\u00da Al unir mi voto al de los colegas que aprobaron la sentencia sobre reparaciones en el caso Barrios Altos Chumbipuma Aguirre y Otros vs. Per\u00fa estimo pertinente formular en el presente Voto concurrente razonado algunas consideraciones y precisiones sobre los fundamentos y el alcance que tiene a mi juicio esta resoluci\u00f3n de la Corte. La que", - "values": [ - "Voto Separado" - ] - }, - { - "text": "RESOLUCI\u00d3N DEL PRESIDENTE DE LA CORTE INTERAMERICANA DE DERECHOS HUMANOS DE DE JULIO DE CASO VARGAS ARECO VS. PARAGUAY SUPERVISI\u00d3N DE CUMPLIMIENTO DE SENTENCIA VISTOS La Sentencia de fondo reparaciones y costas en adelante la Sentencia dictada por la Corte Interamericana de Derechos Humanos en adelante la Corte la Corte Interamericana o el Tribunal el de septiembre de La Resoluci\u00f3n del Tribunal de de octubre de en la cual inter alia declar\u00f3 Que mantendr\u00e1 abierto el procedimiento de ", - "values": [ - "Supervisi\u00f3n de cumplimiento de Sentencia" - ] - }, - { - "text": "Corte Interamericana de Derechos Humanos Caso Caballero Delgado y Santana Vs. Colombia Sentencia de de diciembre de Fondo En el caso Caballero Delgado y Santana la Corte Interamericana de Derechos Humanos integrada por los siguientes jueces H\u00e9ctor FixZamudio Presidente Hern\u00e1n Salgado Pesantes Vicepresidente Rafael Nieto Navia Juez Alejandro Montiel Arg\u00fcello Juez M\u00e1ximo Pacheco G\u00f3mez Juez presentes adem\u00e1s Manuel E. Ventura Robles Secretario y Ana Mar\u00eda Reina Secretaria adjunta de acuerdo con ", - "values": [ - "Fondo" - ] - }, - { - "text": "VOTO RAZONADO DEL JUEZ RICARDO GIL LAVEDRA En el escaso lapso con que cuento para efectuar mi opini\u00f3n concurrente a la decisi\u00f3n de la Corte quisiera referirme muy brevemente a ciertos aspectos relevantes que a mi juicio plantea la sentencia en este caso Bulacio Walter David como as\u00ed tambi\u00e9n realizar algunas consideraciones generales sobre el asunto. Estos temas que entiendo de mayor significaci\u00f3n son los siguientes el modo en que las partes han arribado a una soluci\u00f3n amistosa a la luz del ", - "values": [ - "Voto Separado" - ] - }, - { - "text": "RESOLUCI\u00d3N DE LA CORTE INTERAMERICANA DE DERECHOS HUMANOS DE DE SEPTIEMBRE DE CASO MYRNA MACK CHANG VS. GUATEMALA CUMPLIMIENTO DE SENTENCIA VISTOS La sentencia de fondo reparaciones y costas dictada por la Corte Interamericana de Derechos Humanos en adelante la Corte Interamericana la Corte o el Tribunal el de noviembre de mediante la cual determin\u00f3 que el Estado debe investigar efectivamente los hechos del caso con el fin de identificar juzgar y sancionar a todos los autores materiales ", - "values": [ - "Supervisi\u00f3n de cumplimiento de Sentencia" - ] - }, - { - "text": "VOTO CONCURRENTE DEL JUEZ HUMBERTO ANTONIO SIERRA PORTO SENTENCIA DE LA CORTE INTERAMERICANA DE DERECHOS HUMANOS CASO COMUNIDAD GAR\u00cdFUNA TRIUNFO DE LA CRUZ Y SUS MIEMBROS VS. HONDURAS SENTENCIA DE DE OCTUBRE DE Fondo Reparaciones y Costas A. Introducci\u00f3n La finalidad del presente voto concurrente es se\u00f1alar algunos aspectos del caso que en mi opini\u00f3n merecen especial atenci\u00f3n. Estos aspectos se refieren a i las inconsistencias en la presentaci\u00f3n del caso y la importancia de la diligencia in ", - "values": [ - "Voto Separado" - ] - }, - { - "text": "RESOLUCI\u00d3N DE LA CORTE INTERAMERICANA DE DERECHOS HUMANOS DE DE JULIO DE MEDIDAS PROVISIONALES SOLICITADAS POR LA COMISI\u00d3N INTERAMERICANA DE DERECHOS HUMANOS RESPECTO DE VENEZUELA CASO CARLOS NIETO Y OTROS VISTO El escrito de la Comisi\u00f3n Interamericana de Derechos Humanos en adelante la Comisi\u00f3n o la Comisi\u00f3n Interamericana de de julio de mediante el cual someti\u00f3 a la Corte Interamericana de Derechos Humanos en adelante la Corte o la Corte Interamericana de acuerdo con los art\u00edculos de la", - "values": [ - "Medidas Provisionales" - ] - }, - { - "text": "RESOLUCI\u00d3N DE LA CORTE INTERAMERICANA DE DERECHOS HUMANOS DE DE NOVIEMBRE DE CASO BENAVIDES CEVALLOS CUMPLIMIENTO DE SENTENCIA VISTOS La sentencia dictada en el Caso Benavides Cevallos vs. Ecuador por la Corte Interamericana de Derechos Humanos en adelante la Corte la Corte Interamericana el de junio de en el cual consider\u00f3 que para la determinaci\u00f3n de las reparaciones la Corte tomaba conocimiento de los aspectos pertinentes del acuerdo de de febrero de En el documento mencionado el ", - "values": [ - "Supervisi\u00f3n de cumplimiento de Sentencia" - ] - }, - { - "text": "VOTO CONCURRENTE DEL JUEZ EDUARDO VIO GROSSI SENTENCIA DE LA CORTE INTERAMERICANA DE DERECHOS HUMANOS DE DE NOVIEMBRE DE CASO FAMILIA BARRIOS VS. VENEZUELA Fondo Reparaciones y Costas Qui\u00e9n suscribe concurre con su voto a la aprobaci\u00f3n de la Sentencia indicada en el r\u00f3tulo dejando empero constancia de que en atenci\u00f3n a que siendo esta \u00faltima el fallo definitivo e inapelable que ha puesto efectivo t\u00e9rmino al caso en el que mientras la Corte Interamericana de Derechos Humanos en adelante la ", - "values": [ - "Voto Separado" - ] - }, - { - "text": "VOTO RAZONADO DEL JUEZ AA. CAN\u00c7ADO TRINDADE He concurrido con mi voto a la adopci\u00f3n por la Corte Interamericana de Derechos Humanos de su presente Sentencia en el caso de las Masacres de Ituango. Dada la particular gravedad de los hechos del presente caso que retratan nuevamente ante esta Corte la verdadera tragedia humana vivida por Colombia en los \u00faltimos a\u00f1os me veo en la obligaci\u00f3n de dejar constancia de mis reflexiones sobre lo tratado por la Corte en la presente Sentencia como fundamento", - "values": [ - "Voto Separado" - ] - }, - { - "text": "Resoluci\u00f3n de la Corte Interamericana de Derechos Humanos De de mayo de Caso de los Hermanos G\u00f3mez Paquiyauri Vs. Per\u00fa Supervisi\u00f3n de Cumplimiento de Sentencia VISTO La Sentencia de fondo reparaciones y costas emitida el de julio de en adelante la Sentencia por la Corte Interamericana de Derechos Humanos en adelante la Corte la Corte Interamericana o el Tribunal mediante la cual el Tribunal dispuso inter alia que el Estado deb\u00eda en un plazo razonable investigar efectivamente los hechos ", - "values": [ - "Supervisi\u00f3n de cumplimiento de Sentencia" - ] - }, - { - "text": "RESOLUCI\u00d3N DE LA CORTE INTERAMERICANA DE DERECHOS HUMANOS DE DE SEPTIEMBRE DE MEDIDAS PROVISIONALES ADOPTADAS POR LA CORTE INTERAMERICANA DE DERECHOS HUMANOS RESPECTO DE LA REP\u00daBLICA DE GUATEMALA CASO SERECH Y SAQUIC VISTOS El escrito de de abril de y sus anexos mediante el cual la Comisi\u00f3n Interamericana de Derechos Humanos en adelante la Comisi\u00f3n o la Comisi\u00f3n Interamericana someti\u00f3 a la Corte Interamericana de Derechos Humanos en adelante la Corte o la Corte Interamericana una solicitud", - "values": [ - "Medidas Provisionales" - ] - }, - { - "text": "Resoluci\u00f3n de la Corte Interamericana de Derechos Humanos de de abril de Caso Balde\u00f3n Garc\u00eda Vs. Per\u00fa Supervisi\u00f3n de Cumplimiento de Sentencia Visto La Sentencia de fondo reparaciones y costas en adelante la Sentencia emitida por la Corte Interamericana de Derechos Humanos en adelante la Corte la Corte Interamericana o el Tribunal el de abril de mediante la cual dispuso por unanimidad que el Estado deb\u00eda emprender con plena observaci\u00f3n a las garant\u00edas judiciales y en un plazo razonable ", - "values": [ - "Supervisi\u00f3n de cumplimiento de Sentencia" - ] - }, - { - "text": "VOTO FUNDAMENTADO DO JUIZ SERGIO GARC\u00cdA RAM\u00cdREZ EM RELA\u00c7\u00c3O \u00c0 SENTEN\u00c7A DA CORTE INTERAMERICANA DE DIREITOS HUMANOS NO CASO CHAPARRO ALVAREZ E LAPO \u00cd\u00d1IGUEZ EQUADOR DE DE NOVEMBRO DE A Aspectos do julgamento penal na jurisprud\u00eancia da CorteIDH Na senten\u00e7a proferida pela Corte Interamericana de Direitos Humanos no Caso Chaparro \u00c1lvarez e Lapo \u00cd\u00f1iguez Equador de de novembro de o Tribunal analisa entre outras quest\u00f5es diversos aspectos do julgamento termo que utilizo em sentido amplo o devido ", - "values": [ - "Voto Separado" - ] - }, - { - "text": "RESOLUCI\u00d3N DE LA CORTE INTERAMERICANA DE DERECHOS HUMANOS DE DE SEPTIEMBRE DE CASO VARGAS ARECO VS. PARAGUAY SUPERVISI\u00d3N DE CUMPLIMIENTO DE SENTENCIA VISTO La Sentencia de fondo reparaciones y costas en adelante la Sentencia dictada por la Corte Interamericana de Derechos Humanos en adelante la Corte Interamericana la Corte o el Tribunal el de septiembre de Las Resoluciones de la Corte Interamericana de de octubre de y de de noviembre de En esta \u00faltima el Tribunal declar\u00f3 entre otros ", - "values": [ - "Supervisi\u00f3n de cumplimiento de Sentencia" - ] - }, - { - "text": "Corte Interamericana de Derechos Humanos Caso God\u00ednez Cruz Vs. Honduras Sentencia de de junio de Excepciones Preliminares En el caso God\u00ednez Cruz la Corte Interamericana de Derechos Humanos integrada por los siguientes jueces Thomas Buergenthal Presidente Rafael Nieto Navia Vicepresidente Rodolfo E. Piza E Juez Pedro Nikken Juez H\u00e9ctor FixZamudio Juez H\u00e9ctor Gros Espiell Juez Rigoberto Espinal Ir\u00edas Juez ad hoc presentes adem\u00e1s Charles Moyer Secretario y Manuel Ventura Secretario Adjunto de ", - "values": [ - "Excepciones Preliminares" - ] - }, - { - "text": "RESOLUCI\u00d3N DE LA CORTE INTERAMERICANA DE DERECHOS HUMANOS DE DE NOVIEMBRE DE CASO CESTI HURTADO VS. PER\u00da SUPERVISI\u00d3N DE CUMPLIMIENTO DE SENTENCIA VISTO La Sentencia de excepciones preliminares dictada por la Corte Interamericana de Derechos Humanos en adelante la Corte Interamericana la Corte o el Tribunal el de enero de la Sentencia de fondo dictada por la Corte el de septiembre de en adelante la Sentencia de fondo la Sentencia de interpretaci\u00f3n de la Sentencia de fondo emitida por la ", - "values": [ - "Supervisi\u00f3n de cumplimiento de Sentencia" - ] - }, - { - "text": "Resoluci\u00f3n de la Corte Interamericana de Derechos Humanos de de febrero de Solicitud de Medidas Provisionales presentada por la Comisi\u00f3n Interamericana de Derechos Humanos respecto de Venezuela Asunto Natera Balboa Visto El escrito de la Comisi\u00f3n Interamericana de Derechos Humanos en adelante la Comisi\u00f3n Interamericana o la Comisi\u00f3n de de noviembre de y sus anexos mediante los cuales someti\u00f3 a la Corte Interamericana de Derechos Humanos en adelante la Corte Interamericana la Corte o el ", - "values": [ - "Medidas Provisionales" - ] - }, - { - "text": "VOTO CONCURRENTE DEL JUEZ EDUARDO VIO GROSSI CORTE INTERAMERICANA DE DERECHOS HUMANOS CASO VEL\u00c1SQUEZ PAIZ Y OTROS VS. GUATEMALA SENTENCIA DE DE NOVIEMBRE DE Excepciones Preliminares Fondo Reparaciones y Costas Se emite el presente voto concurrente con la Sentencia del ep\u00edgrafe a los efectos de dejar expresa constancia de que el suscrito concurre a aprobar la decisi\u00f3n se\u00f1alada en ella de desestimar la excepci\u00f3n preliminar relativa a la alegada falta de agotamiento de los recursos internos por", - "values": [ - "Voto Separado" - ] - }, - { - "text": "Corte Interamericana de Derechos Humanos Caso Lori Berenson Mej\u00eda Vs. Per\u00fa Sentencia de de junio de Demanda de Interpretaci\u00f3n de la Sentencia de Fondo Reparaciones y Costas En el caso Lori Berenson Mej\u00eda la Corte Interamericana de Derechos Humanos en adelante la Corte Interamericana la Corte o el Tribunal integrada por los siguientes jueces Sergio Garc\u00eda Ram\u00edrez Presidente Alirio Abreu Burelli Vicepresidente Oliver Jackman Juez Ant\u00f4nio A. Can\u00e7ado Trindade Juez Cecilia Medina Quiroga Jueza y ", - "values": [ - "Interpretaci\u00f3n" - ] - }, - { - "text": "RESOLUCI\u00d3N DE LA CORTE INTERAMERICANA DE DERECHOS HUMANOS DE DE OCTUBRE DE CASO DE LAS NI\u00d1AS YEAN Y BOSICO VS. REP\u00daBLICA DOMINICANA SUPERVISI\u00d3N DE CUMPLIMIENTO DE SENTENCIA VISTO La Sentencia de excepciones preliminares fondo reparaciones y costas en adelante la Sentencia emitida en el presente caso por la Corte Interamericana de Derechos Humanos en adelante la Corte Interamericana la Corte o el Tribunal el de septiembre de La Resoluci\u00f3n de Supervisi\u00f3n de Cumplimiento de Sentencia por ", - "values": [ - "Supervisi\u00f3n de cumplimiento de Sentencia" - ] - }, - { - "text": "RESOLUCI\u00d3N DE LA CORTE INTERAMERICANA DE DERECHOS HUMANOS DE DE MAYO DE CASO ABRILL ALOSILLA Y OTROS VS. PER\u00da SUPERVISI\u00d3N DE CUMPLIMIENTO DE SENTENCIA VISTO La Sentencia de fondo reparaciones y costas dictada el de marzo de en adelante la Sentencia por la Corte Interamericana de Derechos Humanos en adelante la Corte la Corte Interamericana o el Tribunal en la cual se acept\u00f3 el reconocimiento parcial de responsabilidad internacional efectuado por el Estado y se declar\u00f3 la violaci\u00f3n a los ", - "values": [ - "Supervisi\u00f3n de cumplimiento de Sentencia" - ] - }, - { - "text": "Corte Interamericana de Derechos Humanos Caso Caballero Delgado y Santana Vs. Colombia Sentencia de enero de Excepciones Preliminares En el caso Caballero Delgado y Santana la Corte Interamericana de Derechos Humanos integrada por los siguientes jueces Sonia Picado Sotela Presidenta Rafael Nieto Navia Juez H\u00e9ctor FixZamudio Juez Alejandro Montiel Arg\u00fcello Juez Hern\u00e1n Salgado Pesantes Juez Asdr\u00fabal AguiarAranguren Juez presentes adem\u00e1s Manuel E. Ventura Robles Secretario y Ana Mar\u00eda Reina de", - "values": [ - "Excepciones Preliminares" - ] - }, - { - "text": "VOTO CONCURRENTE DEL JUEZ EDUARDO FERRER MACGREGOR POISOT A LA SENTENCIA DE LA CORTE INTERAMERICANA DE DERECHOS HUMANOS EN EL CASO LIAKAT ALI ALIBUX VS. SURINAME DE DE ENERO DE INTRODUCCI\u00d3N Concurro esencialmente con lo decidido en el presente caso en el que se establecieron est\u00e1ndares interamericanos de relevancia inter alia sobre los alcances del principio de legalidad y no retroactividad respecto de normas procesales art\u00edculo de la Convenci\u00f3n Americana sobre Derechos Humanos en adelante ", - "values": [ - "Voto Separado" - ] - }, - { - "text": "RESOLUCI\u00d3N DE LA CORTE INTERAMERICANA DE DERECHOS HUMANOS DE DE FEBRERO DE CASO CHAPARRO \u00c1LVAREZ Y LAPO \u00cd\u00d1IGUEZ VS. ECUADOR SUPERVISI\u00d3N DE CUMPLIMIENTO DE SENTENCIA VISTO La Sentencia de excepciones preliminares fondo reparaciones y costas en adelante la Sentencia dictada por la Corte Interamericana de Derechos Humanos en adelante la Corte Interamericana la Corte o el Tribunal el de noviembre de mediante la cual dispuso que El Estado deb\u00eda eliminar inmediatamente el nombre de los se\u00f1ores", - "values": [ - "Supervisi\u00f3n de cumplimiento de Sentencia" - ] - }, - { - "text": "RESOLUCI\u00d3N DEL PRESIDENTE DE LA CORTE INTERAMERICANA DE DERECHOS HUMANOS DE DE MAYO DE AMPLIACI\u00d3N DE MEDIDAS PROVISIONALES SOLICITADA POR LA COMISI\u00d3N INTERAMERICANA DE DERECHOS HUMANOS RESPECTO DE LA REP\u00daBLICA DE GUATEMALA CASO COLOTENANGO VISTOS La resoluci\u00f3n de la Corte Interamericana de Derechos Humanos en adelante la Corte o la Corte Interamericana de de junio de en la cual decidi\u00f3 Requerir al Gobierno de Guatemala que adoptase sin dilaci\u00f3n cuantas medidas fuesen necesarias para el ", - "values": [ - "Medidas Provisionales" - ] - }, - { - "text": "RESOLUCI\u00d3N DEL PRESIDENTE DE LA CORTE INTERAMERICANA DE DERECHOS HUMANOS DE DE DICIEMBRE DE CASO L\u00d3PEZ MENDOZA VS. VENEZUELA VISTO El escrito de demanda presentado por la Comisi\u00f3n Interamericana de Derechos Humanos en adelante la Comisi\u00f3n Interamericana o la Comisi\u00f3n ante la Corte Interamericana de Derechos Humanos en adelante la Corte Interamericana la Corte o el Tribunal el de diciembre de en el que propuso la declaraci\u00f3n de la presunta v\u00edctima y el dictamen de dos peritos. El escrito ", - "values": [ - "Otros" - ] - }, - { - "text": "VOTO RAZONADO DEL JUEZ AA. CAN\u00c7ADO TRINDADE Voto a favor de la adopci\u00f3n por la Corte Interamericana de Derechos Humanos de la presente Sentencia sobre el fondo y las reparaciones en el caso Myrna Mack Chang versus Guatemala mediante la cual la Corte estableci\u00f3 que la violaci\u00f3n del derecho a la vida de Myrna Mack Chang ocurri\u00f3 en circunstancias agravantes p\u00e1rr. por cuanto result\u00f3 de una operaci\u00f3n encubierta de inteligencia militar llevada a cabo por el Estado Mayor Presidencial y tolerada por ", - "values": [ - "Voto Separado" - ] - }, - { - "text": "RESOLUCI\u00d3N DEL PRESIDENTE DE LA CORTE INTERAMERICANA DE DERECHOS HUMANOS EN EJERCICIO PARA EL PRESENTE CASO DE DE AGOSTO DE FONDO DE ASISTENCIA LEGAL DE V\u00cdCTIMAS CASO CRUZ S\u00c1NCHEZ Y OTROS VS. PER\u00da VISTO El escrito de de diciembre de y su anexo mediante los cuales la Comisi\u00f3n Interamericana de Derechos Humanos en adelante la Comisi\u00f3n Interamericana o la Comisi\u00f3n someti\u00f3 a la Corte Interamericana de Derechos Humanos en adelante la Corte Interamericana la Corte o el Tribunal un caso en de ", - "values": [ - "Fondo de asistencia a v\u00edctimas" - ] - }, - { - "text": "RESOLUCI\u00d3N DE LA CORTE INTERAMERICANA DE DERECHOS HUMANOS DE DE JULIO DE MEDIDAS PROVISIONALES RESPECTO DE LOS ESTADOS UNIDOS MEXICANOS CASO ROSENDO CANT\u00da Y OTRA VISTO La Sentencia de Excepci\u00f3n Preliminar Fondo Reparaciones y Costas en adelante tambi\u00e9n la Sentencia emitida por la Corte Interamericana de Derechos Humanos en adelante la Corte Interamericana la Corte o el Tribunal el de agosto de La Resoluci\u00f3n de la Corte de de febrero de en adelante tambi\u00e9n la Resoluci\u00f3n mediante la cual ", - "values": [ - "Medidas Provisionales" - ] - }, - { - "text": "Resoluci\u00f3n de la Corte Interamericana de Derechos Humanos de de noviembre de Caso Cinco Pensionistas Vs. Per\u00fa Cumplimiento de sentencia VISTOS La Sentencia de fondo reparaciones y costas emitida el de febrero de por la Corte Interamericana de Derechos Humanos en adelante la Corte la Corte Interamericana o el Tribunal mediante la cual el Tribunal resolvi\u00f3 inter alia por unanimidad que el Estado viol\u00f3 el derecho a la propiedad privada consagrado en el art\u00edculo de la Convenci\u00f3n Americana ", - "values": [ - "Supervisi\u00f3n de cumplimiento de Sentencia" - ] - }, - { - "text": "RESOLUCI\u00d3N DE LA CORTE INTERAMERICANA DE DERECHOS HUMANOS DE DE FEBRERO DE MEDIDAS PROVISIONALES RESPECTO DE LA REP\u00daBLICA DE HONDURAS ASUNTO JOS\u00c9 LUIS GALD\u00c1MEZ \u00c1LVAREZ Y OTROS VISTO El escrito de la Comisi\u00f3n Interamericana de Derechos Humanos en adelante la Comisi\u00f3n Interamericana o la Comisi\u00f3n de de diciembre de y sus anexos mediante los cuales someti\u00f3 a la Corte Interamericana de Derechos Humanos en adelante la Corte Interamericana la Corte o el Tribunal una solicitud de medidas en los ", - "values": [ - "Medidas Provisionales" - ] - }, - { - "text": "RESOLUCI\u00d3N DE LA CORTE INTERAMERICANA DE DERECHOS HUMANOS DE DE JUNIO DE CASO LORI BERENSON MEJ\u00cdA VS. PER\u00da SUPERVISI\u00d3N DE CUMPLIMIENTO DE SENTENCIA VISTO La Sentencia de fondo reparaciones y costas en adelante la Sentencia dictada por la Corte Interamericana de Derechos Humanos en adelante la Corte Interamericana la Corte o el Tribunal el de noviembre de La Resoluci\u00f3n de supervisi\u00f3n de cumplimiento de la Sentencia emitida por el Tribunal el de septiembre de en la cual consider\u00f3 que el", - "values": [ - "Supervisi\u00f3n de cumplimiento de Sentencia" - ] - }, - { - "text": "Corte Interamericana de Derechos Humanos Caso de los Ni\u00f1os de la Calle Villagr\u00e1n Morales y otros Vs. Guatemala Sentencia de de noviembre Fondo En el caso Villagr\u00e1n Morales y otros caso de los ni\u00f1os de la calle la Corte Interamericana de Derechos Humanos en adelante la Corte la Corte Interamericana o el Tribunal integrada por los siguientes jueces Ant\u00f4nio A. Can\u00e7ado Trindade Presidente M\u00e1ximo Pacheco G\u00f3mez Vicepresidente Hern\u00e1n Salgado Pesantes Juez Oliver Jackman Juez Alirio Abreu Burelli y ", - "values": [ - "Fondo" - ] - }, - { - "text": "CORTE INTERAMERICANA DE DERECHOS HUMANOS CASO KAWAS FERN\u00c1NDEZ VS. HONDURAS SENTENCIA DE DE ABRIL DE Fondo Reparaciones y Costas En el caso Kawas Fern\u00e1ndez la Corte Interamericana de Derechos Humanos en adelante la Corte Interamericana la Corte o el Tribunal integrada por los siguientes jueces Cecilia Medina Quiroga Presidenta Diego Garc\u00edaSay\u00e1n Vicepresidente Sergio Garc\u00eda Ram\u00edrez Juez Manuel E. Ventura Robles Juez Leonardo A. Franco Juez Margarette May Macaulay Jueza Rhadys Abreu Blondet y ", - "values": [ - "Fondo", - "Reparaciones", - "Costas" - ] - }, - { - "text": "RESOLUCI\u00d3N DE LA CORTE INTERAMERICANA DE DERECHOS HUMANOS DE DE JUNIO DE MEDIDAS PROVISIONALES RESPECTO DEL ESTADO DE GUATEMALA CASO BLAKE VISTOS La Resoluci\u00f3n del Presidente de la Corte Interamericana de Derechos Humanos en adelante el Presidente de de agosto de mediante la cual resolvi\u00f3 Solicitar al Gobierno de la Rep\u00fablica de Guatemala que adopte sin dilaci\u00f3n cuantas medidas sean necesarias para asegurar eficazmente la protecci\u00f3n de la vida e integridad personal de JUSTO VICTORIANO ", - "values": [ - "Medidas Provisionales" - ] - }, - { - "text": "RESOLUCI\u00d3N DE LA CORTE INTERAMERICANA DE DERECHOS HUMANOS DE AGOSTO DE CASO CASTA\u00d1EDA GUTMAN VS. M\u00c9XICO VISTO La Sentencia de excepciones preliminares fondo reparaciones y costas en adelante la Sentencia de de agosto de dictada por la Corte Interamericana de Derechos Humanos en adelante la Corte Interamericana la Corte o este Tribunal en la cual se declar\u00f3 la violaci\u00f3n del derecho a la protecci\u00f3n judicial consagrado en el art\u00edculo de Convenci\u00f3n Americana sobre Derechos Humanos en adelante", - "values": [ - "Supervisi\u00f3n de cumplimiento de Sentencia" - ] - }, - { - "text": "RESOLUCI\u00d3N DE LA CORTE INTERAMERICANA DE DERECHOS HUMANOS DE DE OCTUBRE DE SOLICITUD DE MEDIDAS PROVISIONALES CASO IBSEN C\u00c1RDENAS E IBSEN PE\u00d1A VS. BOLIVIA VISTO El escrito de de julio de mediante el cual los representantes de las v\u00edctimas en adelante los representantes presentaron una solicitud de medidas provisionales de conformidad con los art\u00edculos de la Convenci\u00f3n Americana sobre Derechos Humanos en adelante la Convenci\u00f3n Americana o la Convenci\u00f3n y del Reglamento de la Corte de ", - "values": [ - "Medidas Provisionales" - ] - }, - { - "text": "RESOLUCI\u00d3N DE LA CORTE INTERAMERICANA DE DERECHOS HUMANOS DE DE SEPTIEMBRE DE CASO RICARDO CANESE VS. PARAGUAY SUPERVISI\u00d3N DE CUMPLIMIENTO DE SENTENCIA VISTOS La Sentencia sobre el fondo reparaciones y costas dictada por la Corte Interamericana de Derechos Humanos en adelante la Corte o el Tribunal el de agosto de en la cual por unanimidad declar\u00f3 que El Estado viol\u00f3 el derecho a la libertad de pensamiento y de expresi\u00f3n consagrado en el art\u00edculo de la Convenci\u00f3n Americana sobre Derechos", - "values": [ - "Supervisi\u00f3n de cumplimiento de Sentencia" - ] - }, - { - "text": "Resoluci\u00f3n de la Presidenta de la Corte Interamericana de Derechos Humanos de de diciembre de Medidas Provisionales Respecto de los Estados Unidos Mexicanos Asunto Pilar Noriega Garc\u00eda y otros VISTO La Resoluci\u00f3n emitida por el Presidente de la Corte Interamericana de Derechos Humanos en adelante la Corte la Corte Interamericana o el Tribunal el de octubre de en consulta con los dem\u00e1s Jueces de la Corte mediante la cual resolvi\u00f3 Requerir al Estado que adopte sin dilaci\u00f3n cuantas medidas ", - "values": [ - "Medidas Provisionales" - ] - }, - { - "text": "RESOLUCI\u00d3N DE LA CORTE INTERAMERICANA DE DERECHOS HUMANOS DE DE SEPTIEMBRE DE MEDIDAS PROVISIONALES ADOPTADAS POR LA CORTE INTERAMERICANA DE DERECHOS HUMANOS RESPECTO DE LA REP\u00daBLICA BOLIVARIANA DE VENEZUELA A FAVOR DE CARLOS NIETO PALMA Y OTROS VISTO La Resoluci\u00f3n de la Corte Interamericana de Derechos Humanos en adelante la Corte Interamericana la Corte o el Tribunal de de julio de mediante la cual resolvi\u00f3 Requerir al Estado que adopte sin dilaci\u00f3n las medidas que sean necesarias para ", - "values": [ - "Medidas Provisionales" - ] - }, - { - "text": "VOTO DISIDENTE DE LOS JUECES ALIRIO ABREU BURELLI Y CECILIA MEDINA QUIROGA Lamentamos disentir de la decisi\u00f3n de la Corte de aplicar el art\u00edculo a la decisi\u00f3n del Vicepresidente del Comit\u00e9 de Inversiones Extranjeras de negar una informaci\u00f3n a las v\u00edctimas de este caso ver p\u00e1rrafos a de la sentencia. El art\u00edculo consagra el derecho a ser o\u00eddo con las debidas garant\u00edas y dentro de un plazo razonable por un juez o un tribunal competente independiente e imparcialpara la determinaci\u00f3n de sus y", - "values": [ - "Voto Separado" - ] - }, - { - "text": "Resoluci\u00f3n de la Corte Interamericana de Derechos Humanos de de noviembre de Caso La Cantuta vs. Per\u00fa Supervisi\u00f3n de Cumplimiento de Sentencia Visto La Sentencia de fondo reparaciones y costas dictada el de noviembre de en adelante la Sentencia por la Corte Interamericana de Derechos Humanos en adelante la Corte la Corte Interamericana o el Tribunal mediante la cual el Tribunal dispuso que El Estado debe realizar inmediatamente las debidas diligencias para completar eficazmente y llevar ", - "values": [ - "Supervisi\u00f3n de cumplimiento de Sentencia" - ] - }, - { - "text": "Resoluci\u00f3n de la Corte Interamericana de Derechos Humanos de de noviembre de Medidas Provisionales adoptadas por la Corte Interamericana de Derechos Humanos respecto de Guatemala A favor de Integrantes del Equipo de Estudios Comunitarios y Acci\u00f3n Psicosocial ECAP Caso Masacre Plan de S\u00e1nchez VISTO La Resoluci\u00f3n de la Corte Interamericana de Derechos Humanos en adelante la Corte Interamericana la Corte o el Tribunal de de noviembre de mediante la cual resolvi\u00f3 Ratificar en todos sus la ", - "values": [ - "Medidas Provisionales" - ] - }, - { - "text": "VOTO CONCURRENTE RAZONADO DEL JUEZ DIEGO GARC\u00cdASAY\u00c1N SENTENCIA DE LA CORTE INTERAMERICANA DE DERECHOS HUMANOS CASO L\u00d3PEZ MENDOZA VS. VENEZUELA DE DE SEPTIEMBRE DE El caso resuelto por la Corte se refiere a una v\u00edctima perfectamente individualizada el se\u00f1or Leopoldo L\u00f3pez Mendoza y a una situaci\u00f3n y materia jur\u00eddica con un punto central identificado por la Corte El punto central del presente caso radica en las sanciones de inhabilitaci\u00f3n impuestas al se\u00f1or L\u00f3pez Mendoza por decisi\u00f3n de un ", - "values": [ - "Voto Separado" - ] - }, - { - "text": "RESOLUCI\u00d3N DE LA CORTE INTERAMERICANA DE DERECHOS HUMANOS DE DE NOVIEMBRE DE MEDIDAS PROVISIONALES RESPECTO DE LA REP\u00daBLICA DE GUATEMALA ASUNTO DE LA FUNDACI\u00d3N DE ANTROPOLOG\u00cdA FORENSE DE GUATEMALA VISTO Las Resoluciones de la Corte Interamericana de Derechos Humanos en adelante la Corte Interamericana la Corte o el Tribunal de de julio de de noviembre de de enero de y de febrero de mediante las cuales se orden\u00f3 la adopci\u00f3n de medidas provisionales y el mantenimiento de aquellas a ", - "values": [ - "Medidas Provisionales" - ] - }, - { - "text": "RESOLUCI\u00d3N DEL PRESIDENTE DE LA CORTE INTERAMERICANA DE DERECHOS HUMANOS DE DE OCTUBRE DE MEDIDAS PROVISIONALES SOLICITADAS POR LA COMISI\u00d3N INTERAMERICANA DE DERECHOS HUMANOS RESPECTO DE LA REP\u00daBLICA DE COLOMBIA CASO GIRALDO CARDONA VISTOS El escrito de de octubre de mediante el cual la Comisi\u00f3n Interamericana de Derechos Humanos en adelante la Comisi\u00f3n o la Comisi\u00f3n Interamericana somete a la Corte Interamericana de Derechos Humanos en adelante la Corte o la Corte Interamericana en virtud", - "values": [ - "Medidas Provisionales" - ] - }, - { - "text": "RESOLUCION DEL PRESIDENTE DE LA CORTE INTERAMERICANA DE DERECHOS HUMANOS DE DE FEBRERO DE CASO GARC\u00cdA LUCERO Y OTROS VS. CHILE VISTO El escrito de sometimiento del caso de de septiembre de y sus anexos recibidos el de octubre de presentados por la Comisi\u00f3n Interamericana de Derechos Humanos en adelante la Comisi\u00f3n Interamericana o la Comisi\u00f3n ante la Corte Interamericana de Derechos Humanos en adelante la Corte Interamericana la Corte o el Tribunal contra la Rep\u00fablica de Chile en el o ", - "values": [ - "Otros" - ] - }, - { - "text": "Corte Interamericana de Derechos Humanos Caso Fair\u00e9n Garbi y Sol\u00eds Corrales Vs. Honduras Sentencia de de marzo de Fondo En el caso Fair\u00e9n Garbi y Sol\u00eds Corrales la Corte Interamericana de Derechos Humanos integrada por los siguientes jueces Rafael Nieto Navia Presidente H\u00e9ctor Gros Espiell Vicepresidente Rodolfo E. Piza E Juez Thomas Buergenthal Juez Pedro Nikken Juez H\u00e9ctor FixZamudio Juez Rigoberto Espinal Ir\u00edas Juez ad hoc presentes adem\u00e1s Charles Moyer Secretario y Manuel Ventura Adjunto", - "values": [ - "Fondo" - ] - }, - { - "text": "RESOLUCI\u00d3N DEL PRESIDENTE DE LA CORTE INTERAMERICANA DE DERECHOS HUMANOS DE ENERO DE CASO PUEBLO IND\u00cdGENA KICHWA DE SARAYAKU vs. ECUADOR VISTO El escrito de demanda presentado por la Comisi\u00f3n Interamericana de Derechos Humanos en adelante la Comisi\u00f3n Interamericana o la Comisi\u00f3n el de abril de y sus anexos recibidos el de mayo siguiente contra la Rep\u00fablica del Ecuador en adelante el Estado o Ecuador. El escrito de solicitudes argumentos y pruebas en adelante escrito de solicitudes y ", - "values": [ - "Otros" - ] - }, - { - "text": "Resoluci\u00f3n de la Corte Interamericana de Derechos Humanos de de Febrero de Medidas provisionales respecto de Colombia Caso Caballero Delgado y Santana vs. Colombia VISTO Las Sentencias de fondo y de reparaciones y costas dictadas en el caso Caballero Delgado y Santana por la Corte Interamericana de Derechos Humanos en adelante la Corte la Corte Interamericana o El Tribunal el de diciembre de y el de enero de Las Resoluciones de la Corte Interamericana sobre medidas provisionales de de ", - "values": [ - "Medidas Provisionales" - ] - }, - { - "text": "RESOLUCI\u00d3N DE LA CORTE INTERAMERICANA DE DERECHOS HUMANOS DE DE SEPTIEMBRE DE CASO LORI BERENSON MEJ\u00cdA VS. PER\u00da RESOLUCI\u00d3N DE CUMPLIMIENTO DE SENTENCIA VISTO La Sentencia de fondo reparaciones y costas emitida el de noviembre de en adelante la Sentencia por la Corte Interamericana de Derechos Humanos en adelante la Corte la Corte Interamericana o el Tribunal mediante la cual el Tribunal declar\u00f3 inter alia por unanimidad que el Estado viol\u00f3 el derecho a la integridad personal consagrado en", - "values": [ - "Supervisi\u00f3n de cumplimiento de Sentencia" - ] - }, - { - "text": "RESOLUCI\u00d3N DE LA CORTE INTERAMERICANA DE DERECHOS HUMANOS DE DE SEPTIEMBRE DE CASO IVCHER BRONSTEIN VS. PERU SUPERVISI\u00d3N DE CUMPLIMIENTO DE SENTENCIA VISTOS La Sentencia dictada en el presente caso por la Corte Interamericana de Derechos Humanos en adelante la Corte la Corte Interamericana o el Tribunal el de febrero de en la que dispuso inter alia que el Estado debe investigar los hechos que generaron las violaciones establecidas en la Sentencia para identificar y sancionar a los de ", - "values": [ - "Supervisi\u00f3n de cumplimiento de Sentencia" - ] - }, - { - "text": "RESOLUCI\u00d3N DE LA CORTE INTERAMERICANA DE DERECHOS HUMANOS DE DE OCTUBRE DE MEDIDAS PROVISIONALES RESPECTO DE LA REP\u00daBLICA DE COLOMBIA CASO GUTI\u00c9RREZ SOLER VISTO Las Resoluciones de la Corte Interamericana de Derechos Humanos en adelante la Corte Interamericana la Corte o el Tribunal de de marzo de mediante la cual se ordenaron medidas provisionales en el presente caso. La Sentencia de fondo reparaciones y costas emitida por la Corte Interamericana el de septiembre de en este caso la ", - "values": [ - "Medidas Provisionales" - ] - }, - { - "text": "RESOLUCI\u00d3N DE LA CORTE INTERAMERICANA DE DERECHOS HUMANOS DE DE MAYO DE CASO BAENA RICARDO Y OTROS VS. PANAM\u00c1 SUPERVISI\u00d3N DE CUMPLIMIENTO DE SENTENCIA VISTO La Sentencia de fondo reparaciones y costas emitida el de febrero de en adelante la Sentencia por la Corte Interamericana de Derechos Humanos en adelante la Corte Interamericana la Corte o el Tribunal. Las resoluciones de supervisi\u00f3n de cumplimiento de la Sentencia emitidas por la Corte Interamericana el de junio de el de noviembre", - "values": [ - "Supervisi\u00f3n de cumplimiento de Sentencia" - ] - }, - { - "text": "RESOLUCI\u00d3N DE LA CORTE INTERAMERICANA DE DERECHOS HUMANOS DE DE NOVIEMBRE DE CASO APITZ BARBERA Y OTROS CORTE PRIMERA DE LO CONTENCIOSO ADMINISTRATIVO VS. VENEZUELA SUPERVISI\u00d3N DE CUMPLIMIENTO DE SENTENCIA VISTO La Sentencia de excepci\u00f3n preliminar fondo reparaciones y costas en adelante la Sentencia dictada por la Corte Interamericana de Derechos Humanos en adelante la Corte la Corte Interamericana o el Tribunal el de agosto de mediante la cual dispuso que El Estado debe realizar los ", - "values": [ - "Supervisi\u00f3n de cumplimiento de Sentencia" - ] - }, - { - "text": "Resoluci\u00f3n de la Corte Interamericana de Derechos Humanos de de noviembre de Caso Trabajadores Cesados del Congreso Aguado Alfaro y otros vs. Per\u00fa Supervisi\u00f3n de Cumplimiento de Sentencia Visto La Sentencia de excepciones preliminares fondo reparaciones y costas en adelante la Sentencia dictada por la Corte Interamericana de Derechos Humanos en adelante la Corte la Corte Interamericana o el Tribunal el de noviembre de en el caso Trabajadores Cesados del Congreso vs. Per\u00fa mediante la cual ", - "values": [ - "Supervisi\u00f3n de cumplimiento de Sentencia" - ] - }, - { - "text": "RESOLUCI\u00d3N DEL PRESIDENTE DE LA CORTE INTERAMERICANA DE DERECHOS HUMANOS MEDIDAS PROVISIONALES SOLICITADAS POR LA COMISI\u00d3N INTERAMERICANA DE DERECHOS HUMANOS RESPECTO DE LA REP\u00daBLICA DE COLOMBIA CASO GIRALDO CARDONA DE MARZO DE VISTOS La resoluci\u00f3n de Corte de de febrero de mediante la cual convoca al Gobierno de Colombia y a la Comisi\u00f3n Interamericana de Derechos Humanos para que por medio de sus representantes concurran a una audiencia p\u00fablica el de abril de a las horas. La del de ", - "values": [ - "Medidas Provisionales" - ] - }, - { - "text": "RESOLUCI\u00d3N DE LA CORTE INTERAMERICANA DE DERECHOS HUMANOS DEL DE JULIO DE MEDIDAS PROVISIONALES SOLICITADAS POR LA COMISI\u00d3N INTERAMERICANA DE DERECHOS HUMANOS RESPECTO DE GUATEMALA CASO CHUNIMA LA CORTE INTERAMERICANA DE DERECHOS HUMANOS VISTOS La resoluci\u00f3n del Presidente de la Corte Interamericana de Derechos Humanos de de julio de sobre medidas provisionales solicitadas por la Comisi\u00f3n Interamericana de Derechos Humanos respecto de Guatemala La convocatoria a una audiencia p\u00fablica para", - "values": [ - "Medidas Provisionales" - ] - }, - { - "text": "RESOLUC\u00cdON DEL PRESIDENTE DE LA CORTE INTERAMERICANA DE DERECHOS HUMANOS DE DE MAYO DE MEDIDAS PROVISIONALES SOLICITADAS POR LA COMISI\u00d3N INTERAMERICANA DE DERECHOS HUMANOS RESPECTO DE LA REP\u00daBLICA DE TRINIDAD Y TOBAGO CASOS JAMES BRIGGS NOEL GARC\u00cdA Y BETHEL VISTOS El escrito de la Comisi\u00f3n Interamericana de Derechos Humanos en adelante la Comisi\u00f3n de de mayo de y sus anexos mediante el cual someti\u00f3 ante la Corte Interamericana de Derechos Humanos en adelante la Corte de acuerdo con los ", - "values": [ - "Medidas Provisionales" - ] - }, - { - "text": "Resoluci\u00f3n de la Presidenta de la Corte Interamericana de Derechos Humanos de de diciembre de Convocatoria a Audiencia Privada Supervisi\u00f3n de Cumplimiento de Sentencia y Solicitud de adopci\u00f3n de Medidas Provisionales Caso De La Cruz Flores Vs. Per\u00fa Visto A Supervisi\u00f3n de cumplimiento de Sentencia La Sentencia de fondo reparaciones y costas en adelante la Sentencia emitida en el presente caso por la Corte Interamericana de Derechos Humanos en adelante la Corte la Corte Interamericana o el el", - "values": [ - "Medidas Provisionales", - "Supervisi\u00f3n de cumplimiento de Sentencia" - ] - }, - { - "text": "RESOLUCI\u00d3N DEL PRESIDENTE DE LA CORTE INTERAMERICANA DE DERECHOS HUMANOS DE DE ENERO DE SOLICITUD DE MEDIDAS PROVISIONALES DE LA COMISI\u00d3N INTERAMERICANA DE DERECHOS HUMANOS RESPECTO DE LOS ESTADOS UNIDOS MEXICANOS CASO GALLARDO RODR\u00cdGUEZ VISTOS El escrito de la Comisi\u00f3n Interamericana de Derechos Humanos en adelante la Comisi\u00f3n o la Comisi\u00f3n Interamericana de de diciembre de mediante el cual present\u00f3 una solicitud de medidas provisionales para evitar da\u00f1os irreparables al General Jos\u00e9 ", - "values": [ - "Medidas Provisionales" - ] - }, - { - "text": "CORTE INTERAMERICANA DE DERECHOS HUMANOS CASO US\u00d3N RAM\u00cdREZ VS. VENEZUELA SENTENCIA DE DE NOVIEMBRE DE Excepci\u00f3n Preliminar Fondo Reparaciones y Costas En el caso Us\u00f3n Ram\u00edrez la Corte Interamericana de Derechos Humanos en adelante la Corte Interamericana la Corte o el Tribunal integrada por los siguientes jueces Diego Garc\u00edaSay\u00e1n Presidente en Ejercicio Sergio Garc\u00eda Ram\u00edrez Juez Manuel E. Ventura Robles Juez Margarette May Macaulay Jueza y Rhadys Abreu Blondet Jueza presentes adem\u00e1s Pablo ", - "values": [ - "Excepciones Preliminares", - "Fondo", - "Reparaciones", - "Costas" - ] - }, - { - "text": "RESOLUCI\u00d3N DEL PRESIDENTE DE LA CORTE INTERAMERICANA DE DERECHOS HUMANOS DE DE MARZO DE CASO ZULEMA TARAZONA ARRIETA Y OTROS VS PER\u00da VISTO El escrito de sometimiento del caso presentado por la Comisi\u00f3n Interamericana de Derechos Humanos en adelante la Comisi\u00f3n Interamericana o la Comisi\u00f3n ante la Corte Interamericana de Derechos Humanos en adelante la Corte Interamericana la Corte o el Tribunal el de junio de mediante el cual remiti\u00f3 el Informe de Fondo No. y ofreci\u00f3 un dictamen pericial ", - "values": [ - "Otros" - ] - }, - { - "text": "RESOLUCI\u00d3N DE LA CORTE INTERAMERICANA DE DERECHOS HUMANOS DE DE FEBRERO DE CASO CANTORAL HUAMAN\u00cd Y GARC\u00cdA SANTA CRUZ VS. PER\u00da SUPERVISI\u00d3N DE CUMPLIMIENTO DE SENTENCIA VISTO La Sentencia de excepci\u00f3n preliminar fondo reparaciones y costas en adelante tambi\u00e9n la Sentencia dictada por la Corte Interamericana de Derechos Humanos en adelante la Corte Interamericana la Corte o el Tribunal el de julio de mediante la cual dispuso que El Estado debe investigar inmediatamente los hechos que las ", - "values": [ - "Supervisi\u00f3n de cumplimiento de Sentencia" - ] - }, - { - "text": "VOTO CONCURRENTE DE DIEGO GARCIASAY\u00c1N EN EL CASO M\u00c9MOLI VS. ARGENTINA En esta Sentencia la Corte Interamericana reafirma y desarrolla su jurisprudencia constante en materia de libertad de expresi\u00f3n a trav\u00e9s de la cual la Corte ha enfatizado reiteradamente la significaci\u00f3n y amplio contenido de dicho derecho fundamental. En tal sentido la Corte recuerda p\u00e1rr. entre otros aspectos que el derecho a la libertad de pensamiento y de expresi\u00f3n consagrado en el art\u00edculo de la Convenci\u00f3n tiene entre ", - "values": [ - "Voto Separado" - ] - }, - { - "text": "Resoluci\u00f3n de la Corte Interamericana de Derechos Humanos del de abril del Medidas Provisionales respecto de la Rep\u00fablica de Trinidad y Tobago Asunto James y otros VISTOS La Resoluci\u00f3n la Corte Interamericana de Derechos Humanos en adelante la Corte Interamericana o la Corte del de junio de en la que resolvi\u00f3 inter alia Ordenar a Trinidad y Tobago que tome todas las medidas necesarias para preservar la vida e integridad personal de los se\u00f1ores Wenceslaus James Anthony Briggs Anderson Noel", - "values": [ - "Medidas Provisionales" - ] - }, - { - "text": "RESOLUCI\u00d3N DE LA CORTE INTERAMERICANA DE DERECHOS HUMANOS DE DE AGOSTO DE CASO ALB\u00c1N CORNEJO Y OTROS VS. ECUADOR SUPERVISI\u00d3N DE CUMPLIMIENTO DE SENTENCIA VISTO La Sentencia de fondo reparaciones y costas en adelante la Sentencia o el Fallo dictada por la Corte Interamericana de Derechos Humanos en adelante la Corte Interamericana la Corte o el Tribunal el de noviembre de En dicho Fallo la Corte declar\u00f3 la responsabilidad internacional de la Rep\u00fablica del Ecuador en adelante el Estado o ", - "values": [ - "Supervisi\u00f3n de cumplimiento de Sentencia" - ] - }, - { - "text": "VOTO PARCIALMENTE DISIDENTE DE LA JUEZA CECILIA MEDINA QUIROGA Estoy de acuerdo con el voto disidente del juez Diego Rodr\u00edguezPinz\u00f3n. No es \u00e9sta la primera vez que disiento de la Corte en relaci\u00f3n con la posible violaci\u00f3n conjunta de los art\u00edculos y y he dado en esas ocasiones razones similares a las expresadas en el voto del juez Rodr\u00edguez. En esta ocasi\u00f3n sin embargo quisiera aclarar mi posici\u00f3n respecto del art\u00edculo Al hacer un voto disidente en un caso particular he procurado s\u00f3lo al", - "values": [ - "Voto Separado" - ] - }, - { - "text": "Resoluci\u00f3n de la Corte Interamericana de Derechos Humanos De de noviembre de Caso Trujillo Oroza Vs. Bolivia Cumplimiento de Sentencia VISTOS La Sentencia de fondo dictada por la Corte Interamericana de Derechos Humanos en adelante la Corte la Corte Interamericana o el Tribunal el de enero de La Sentencia de reparaciones y costas dictada por la Corte Interamericana el de febrero de La Resoluci\u00f3n emitida por la Corte el de noviembre de en la cual declar\u00f3 Que de conformidad con lo en", - "values": [ - "Supervisi\u00f3n de cumplimiento de Sentencia" - ] - }, - { - "text": "RESOLUCI\u00d3N DE LA CORTE INTERAMERICANA DE DERECHOS HUMANOS DE DE JUNIO DE CASO BAENA RICARDO Y OTROS VS. PANAM\u00c1 SUPERVISI\u00d3N DE CUMPLIMIENTO DE SENTENCIA VISTO La Sentencia de fondo reparaciones y costas emitida el de febrero de en adelante la Sentencia por la Corte Interamericana de Derechos Humanos en adelante la Corte Interamericana la Corte o el Tribunal. Las Resoluciones de supervisi\u00f3n de cumplimiento de la Sentencia emitidas por la Corte Interamericana el de junio y el de noviembre ", - "values": [ - "Supervisi\u00f3n de cumplimiento de Sentencia" - ] - }, - { - "text": "RESOLUCI\u00d3N DEL PRESIDENTE DE LA CORTE INTERAMERICANA DE DERECHOS HUMANOS DE DE ENERO DE CASO CASTA\u00d1EDA GUTMAN VS. ESTADOS UNIDOS MEXICANOS SUPERVISI\u00d3N DE CUMPLIMIENTO DE SENTENCIA CONVOCATORIA DE AUDIENCIA P\u00daBLICA VISTO La Sentencia de excepciones preliminares fondo reparaciones y costas en adelante la Sentencia de de agosto de dictada por la Corte Interamericana de Derechos Humanos en adelante la Corte Interamericana la Corte o el Tribunal. La Resoluci\u00f3n de supervisi\u00f3n de cumplimiento de", - "values": [ - "Supervisi\u00f3n de cumplimiento de Sentencia" - ] - }, - { - "text": "RESOLUCI\u00d3N DEL PRESIDENTE DE LA CORTE INTERAMERICANA DE DERECHOS HUMANOS DEL DE JUNIO DE MEDIDAS PROVISIONALES SOLICITADAS POR LA COMISI\u00d3N INTERAMERICANA DE DERECHOS HUMANOS RESPECTO DE LA REPUBLICA DE GUATEMALA CASO CARPIO NICOLLE VISTO El escrito del de junio de recibido en la Secretar\u00eda de la Corte ese mismo d\u00eda mediante el cual la Comisi\u00f3n Interamericana de Derechos Humanos en adelante la Comisi\u00f3n o la Comisi\u00f3n Interamericana somete a la Corte Interamericana de Derechos Humanos en la ", - "values": [ - "Medidas Provisionales" - ] - }, - { - "text": "RESOLUCI\u00d3N DE LA CORTE INTERAMERICANA DE DERECHOS HUMANOS DE DE JULIO DE MEDIDAS PROVISIONALES ORDENADAS POR LA CORTE INTERAMERICANA DE DERECHOS HUMANOS RESPECTO DE GUATEMALA CASO COLOTENANGO VISTOS La Resoluci\u00f3n de la Corte Interamericana de Derechos Humanos en adelante la Corte o la Corte Interamericana de de junio de mediante la cual inter alia Requiri\u00f3 al Gobierno de Guatemala que adoptase sin dilaci\u00f3n cuantas medidas fuesen necesarias para proteger el derecho a la vida e integridad ", - "values": [ - "Medidas Provisionales" - ] - }, - { - "text": "VOTO CONCURRENTE RAZONADO DEL JUEZ SERGIO GARC\u00cdA RAM\u00cdREZ A LA SENTENCIA DEL CASO MACK CHANG VS. GUATEMALA DEL DE NOVIEMBRE DE I. LA JURISPRUDENCIA DE LA CORTEINTERAMERICANA Y EL CASO MACK CHANG La Corte Interamericana de Derechos Humanos ha tenido oportunidad de pronunciarse desde que se inici\u00f3 el ejercicio de su competencia contenciosa sobre violaciones del derecho a la vida cometidas por agentes de un Estado mediante ejecuciones extrajudiciales. Esta materia todav\u00eda se encuentra presente ", - "values": [ - "Voto Separado" - ] - }, - { - "text": "RESOLUCI\u00d3N DEL PRESIDENTE DE LA CORTE INTERAMERICANA DE DERECHOS HUMANOS DE DE OCTUBRE DE MEDIDAS URGENTES DE AMPLIACI\u00d3N CASO LUISIANA R\u00cdOS Y OTROS VS. VENEZUELA VISTOS La Resoluci\u00f3n de la Corte Interamericana de Derechos Humanos en adelante la Corte Interamericana la Corte o el Tribunal de de noviembre de mediante la cual resolvi\u00f3 Requerir al Estado que adoptara sin dilaci\u00f3n cuantas medidas fueran necesarias para proteger la vida e integridad personal de Luisiana R\u00edos Armando Amaya Jos\u00e9", - "values": [ - "Medidas Provisionales" - ] - }, - { - "text": "RESOLUCI\u00d3N DE LA CORTE INTERAMERICANA DE DERECHOS HUMANOS DE DE ENERO DE REINTEGRO AL FONDO DE ASISTENCIA LEGAL DE V\u00cdCTIMAS CASO FAMILIA PACHECO TINEO VS. BOLIVIA VISTO La Sentencia de excepciones preliminares fondo reparaciones y costas en adelante la Sentencia o el Fallo dictada por la Corte Interamericana de Derechos Humanos en adelante la Corte la Corte Interamericana o el Tribunal el de noviembre de la cual fue notificada el de diciembre de En el punto dispositivo d\u00e9cimo de dicho ", - "values": [ - "Fondo de asistencia a v\u00edctimas" - ] - }, - { - "text": "Resoluci\u00f3n de la Presidenta de la Corte Interamericana de Derechos Humanos de de agosto de Caso Goibur\u00fa y otros Vs. Paraguay Supervisi\u00f3n de Cumplimiento de Sentencia Vistos La Sentencia de fondo reparaciones y costas de de septiembre de en adelante la Sentencia dictada por la Corte Interamericana de Derechos Humanos en adelante la Corte Interamericana la Corte o el Tribunal notificada \u00edntegramente a la Rep\u00fablica de Paraguay en adelante el Estado o Paraguay el de octubre de mediante la ", - "values": [ - "Supervisi\u00f3n de cumplimiento de Sentencia" - ] - }, - { - "text": "CORTE INTERAMERICANA DE DERECHOS HUMANOS CASO CASTA\u00d1EDA GUTMAN VS. ESTADOS UNIDOS MEXICANOS SENTENCIA DE DE AGOSTO DE EXCEPCIONES PRELIMINARES FONDO REPARACIONES Y COSTAS En el caso Casta\u00f1eda Gutman la Corte Interamericana de Derechos Humanos en adelante la Corte Interamericana la Corte o el Tribunal integrada por los siguientes jueces Cecilia Medina Quiroga Presidenta Diego Garc\u00edaSay\u00e1n Vicepresidente Manuel E. Ventura Robles Juez Leonardo A. Franco Juez Margarette May Macaulay Jueza Rhadys ", - "values": [ - "Excepciones Preliminares", - "Fondo", - "Reparaciones", - "Costas" - ] - }, - { - "text": "RESOLUCI\u00d3N DE LA CORTE INTERAMERICANA DE DERECHOS HUMANOS DE DE NOVIEMBRE DE CASO FLEURY Y OTROS VS. HAIT\u00cd SUPERVISI\u00d3N DE CUMPLIMIENTO DE SENTENCIA VISTO La Sentencia de fondo y reparaciones en adelante la Sentencia dictada por la Corte Interamericana de Derechos Humanos en adelante la Corte la Corte Interamericana o el Tribunal el de noviembre de respecto al caso Fleury y otros. En dicho caso la Corte declar\u00f3 responsable internacionalmente a la Rep\u00fablica de Hait\u00ed en adelante el Estado o ", - "values": [ - "Supervisi\u00f3n de cumplimiento de Sentencia" - ] - }, - { - "text": "RESOLUCI\u00d3N DEL PRESIDENTE DE LA CORTE INTERAMERICANA DE DERECHOS HUMANOS DE DE JUNIO DE SOLICITUD DE AMPLIACI\u00d3N DE LAS MEDIDAS PROVISIONALES ADOPTADAS POR LA CORTE INTERAMERICANA DE DERECHOS HUMANOS RESPECTO DE LA REP\u00daBLICA DE TRINIDAD Y TOBAGO CASOS JAMES Y OTROS VISTOS La Resoluci\u00f3n de la Corte Interamericana de Derechos Humanos en adelante la Corte de de junio de en la cual decidi\u00f3 Ordenar a Trinidad y Tobago que tome todas las medidas necesarias para preservar la vida e integridad de", - "values": [ - "Medidas Provisionales" - ] - }, - { - "text": "RESOLUCI\u00d3N DE LA CORTE INTERAMERICANA DE DERECHOS HUMANOS DE DE FEBRERO DE CASO DE LAS HERMANAS SERRANO CRUZ VS. EL SALVADOR SUPERVISI\u00d3N DE CUMPLIMIENTO DE SENTENCIA VISTO La Sentencia de fondo reparaciones y costas en adelante la Sentencia dictada por la Corte Interamericana de Derechos Humanos en adelante la Corte Interamericana la Corte o el Tribunal el de marzo de Las resoluciones de supervisi\u00f3n de cumplimiento de la Sentencia dictadas por la Corte el de septiembre de y el de julio", - "values": [ - "Supervisi\u00f3n de cumplimiento de Sentencia" - ] - }, - { - "text": "RESOLUCI\u00d3N DEL PRESIDENTE DE LA CORTE INTERAMERICANA DE DERECHOS HUMANOS DE DE JULIO DE SOLICITUD DE MEDIDAS PROVISIONALES RESPECTO DE GUATEMALA CASO MASACRE PLAN DE S\u00c1NCHEZ Salvador Jer\u00f3nimo y Otros VISTOS La audiencia p\u00fablica celebrada los d\u00edas y de abril de ante la Corte Interamericana de Derechos Humanos en adelante la Corte Interamericana la Corte o el Tribunal en relaci\u00f3n con el caso Masacre Plan de S\u00e1nchez vs. el Estado de Guatemala en adelante el Estado o Guatemala en la cual ", - "values": [ - "Medidas Provisionales" - ] - }, - { - "text": "VOTO CONCURRENTE DEL JUEZ SERGIO GARC\u00cdA RAM\u00cdREZ A LA SENTENCIA DE LA CORTE INTERAMERICANA DE DERECHOS HUMANOS EN EL CASO BLANCO ROMERO Y OTROS VS. VENEZUELA DE DE NOVIEMBRE DE En este caso la Corte Interamericana examin\u00f3 entre otros extremos la obligaci\u00f3n del Estado de adecuar su legislaci\u00f3n a la Convenci\u00f3n Interamericana sobre Desaparici\u00f3n Forzada de Personas del de junio de La adecuaci\u00f3n se refiere a la descripci\u00f3n que hace el art\u00edculo II de aquel instrumento acerca de la desaparici\u00f3n ", - "values": [ - "Voto Separado" - ] - }, - { - "text": "RESOLUCI\u00d3N DE LA CORTE INTERAMERICANA DE DERECHOS HUMANOS DE DE DICIEMBRE DE CASO RADILLA PACHECO VS. ESTADOS UNIDOS MEXICANOS SUPERVISI\u00d3N DE CUMPLIMIENTO DE SENTENCIA VISTO La Sentencia de excepciones preliminares fondo reparaciones y costas en adelante la Sentencia dictada por la Corte Interamericana de Derechos Humanos en adelante la Corte Interamericana la Corte o el Tribunal el de noviembre de La Resoluci\u00f3n de Supervisi\u00f3n de Cumplimiento de Sentencia emitida por el Tribunal el de ", - "values": [ - "Supervisi\u00f3n de cumplimiento de Sentencia" - ] - }, - { - "text": "Corte Interamericana de Derechos Humanos Caso de las Hermanas Serrano Cruz Vs. El Salvador Sentencia de de noviembre de Excepciones Preliminares En el caso de las Hermanas Serrano Cruz la Corte Interamericana de Derechos Humanos en adelante la Corte Interamericana la Corte o el Tribunal integrada por los siguientes jueces Sergio Garc\u00eda Ram\u00edrez Presidente Alirio Abreu Burelli Vicepresidente Oliver Jackman Juez Ant\u00f4nio A. Can\u00e7ado Trindade Juez Cecilia Medina Quiroga Jueza Manuel E. Ventura ", - "values": [ - "Excepciones Preliminares" - ] - }, - { - "text": "RESOLUCI\u00d3N DE LA CORTE INTERAMERICANA DE DERECHOS HUMANOS DE DE NOVIEMBRE DE SOLICITUD DE MEDIDAS PROVISIONALES PRESENTADA POR LA COMISI\u00d3N INTERAMERICANA DE DERECHOS HUMANOS RESPECTO DE COLOMBIA ASUNTO DE LA COMISI\u00d3N INTERECLESIAL DE JUSTICIA Y PAZ VISTO El escrito de la Comisi\u00f3n Interamericana de Derechos Humanos en adelante la Comisi\u00f3n Interamericana o la Comisi\u00f3n de de abril de y sus anexos mediante los cuales someti\u00f3 a la Corte Interamericana de Derechos Humanos en adelante la Corte ", - "values": [ - "Medidas Provisionales" - ] - }, - { - "text": "Resoluci\u00f3n de la Corte Interamericana De Derechos Humanos de de abril de Caso de la Comunidad Mayagna Sumo Awas Tingni Vs. Nicaragua Supervisi\u00f3n de Cumplimiento de Sentencia VISTO La Sentencia de fondo reparaciones y costas de de agosto de en adelante la Sentencia emitida por la Corte Interamericana de Derechos Humanos en adelante la Corte Interamericana la Corte o el Tribunal mediante la cual dispuso que el Estado deb\u00eda delimitar demarcar y titular las tierras que corresponden a los ", - "values": [ - "Supervisi\u00f3n de cumplimiento de Sentencia" - ] - }, - { - "text": "CONCURRING OPINION OF JUDGE AA. CAN\u00c7ADO TRINDADE I have voted in favor of this judgment that the InterAmerican Court of Human Rights has just adopted in Maritza Urrutia v. Guatemala and in this Separate Opinion I would like to add some brief personal observations in firm support of the Courts characterization of the absolute prohibition of torture in all its forms including psychological as belonging to the sphere of international jus cogens. This characterization is rooted in the evolution ", - "values": [ - "Voto Separado" - ] - }, - { - "text": "VOTO CONCURRENTE DEL JUEZ DE ROUX RENGIFO Debo en primer lugar poner de presente ciertas consideraciones que guardan relaci\u00f3n con lo planteado por la sentencia que antecede sobre las violaciones de la Convenci\u00f3n Americana en que incurri\u00f3 el Estado del Per\u00fa al someter a cuatro civiles las v\u00edctimas del presente caso a la justicia penal militar. El pre\u00e1mbulo de la Convenci\u00f3n Americana comienza haciendo referencia a las instituciones democr\u00e1ticas como marco general del r\u00e9gimen de libertades y que ", - "values": [ - "Voto Separado" - ] - }, - { - "text": "VOTO SEPARADO CONCORDANTE DO JUIZ JACKMAN Votei a favor desta senten\u00e7a porque estou totalmente de acordo com as conclus\u00f5es a que chegou a Corte bem como com o que ordenou. No entanto sintome obrigado a deixar const\u00e2ncia de certo grau de desconformidade com a ratio decidendi da Corte em rela\u00e7\u00e3o \u00e0 viola\u00e7\u00e3o pelo Estado da Nicar\u00e1gua o Estado dos direitos consagrados no artigo da Conven\u00e7\u00e3o Americana sobre Direitos Humanos a Conven\u00e7\u00e3o em detrimento dos candidatos do YATAMA. O enfoque particular \u00e9 ", - "values": [ - "Voto Separado" - ] - }, - { - "text": "VOTO INDIVIDUAL DISIDENTE DEL JUEZ EDUARDO VIO GROSSI CORTE INTERAMERICANA DE DERECHOS HUMANOS CASO LIAKAT ALI ALIBUX VS. SURINAME SENTENCIA DE DE ENERO DE Excepciones Preliminares Fondo Reparaciones y Costas INTRODUCCI\u00d3N Se emite el presente voto individual disidente con respecto a la Sentencia indicada en el t\u00edtulo en adelante e indistintamente la Sentencia en atenci\u00f3n a que el suscrito es del parecer a diferencia de lo resuelto en autos de que proced\u00eda acoger las excepciones preliminares ", - "values": [ - "Voto Separado" - ] - }, - { - "text": "VOTO RAZONADO DEL JUEZ AA. CAN\u00c7ADO TRINDADE He votado a favor de la presente Sentencia sobre reparaciones en el caso Blake versus Guatemala que viene de dictar la Corte Interamericana de Derechos Humanos por considerarla conforme al derecho aplicable y teniendo presente lo anteriormente resuelto por la Corte en las Sentencias sobre excepciones preliminares de y sobre el fondo de Sin embargo entiendo que lo decidido por la Corte conforme al derecho stricto sensu no guarda relaci\u00f3n directa con", - "values": [ - "Voto Separado" - ] - }, - { - "text": "RESOLU\u00c7\u00c3O DA CORTE INTERAMERICANA DE DIREITOS HUMANOS DE DE NOVEMBRO DE MEDIDAS PROVIS\u00d3RIAS A RESPEITO DO BRASIL ASSUNTO DO COMPLEXO PENITENCI\u00c1RIO DE PEDRINHAS VISTO O escrito da Comiss\u00e3o Interamericana de Direitos Humanos doravante denominada a Comiss\u00e3o Interamericana ou a Comiss\u00e3o de de setembro de e seus anexos atrav\u00e9s dos quais submeteu \u00e0 Corte Interamericana de Direitos Humanos doravante denominada a Corte Interamericana a Corte ou o Tribunal uma solicita\u00e7\u00e3o de medidas provis\u00f3rias em", - "values": [ - "Medidas Provisionales" - ] - }, - { - "text": "CORTE INTERAMERICANA DE DERECHOS HUMANOS Caso Lori Berenson Mej\u00eda Vs. Per\u00fa Sentencia de de noviembre de Fondo Reparaciones Y Costas En el caso Lori Berenson Mej\u00eda la Corte Interamericana de Derechos Humanos en adelante la Corte la Corte Interamericana o el Tribunal integrada por los siguientes jueces Sergio Garc\u00eda Ram\u00edrez Presidente Alirio Abreu Burelli Vicepresidente Oliver Jackman Juez Ant\u00f4nio A. Can\u00e7ado Trindade Juez Cecilia Medina Quiroga Jueza Manuel E. Ventura Robles Juez y Juan D. ", - "values": [ - "Fondo", - "Reparaciones", - "Costas" - ] - }, - { - "text": "Corte Interamericana de Derechos Humanos Caso Durand y Ugarte Vs. Per\u00fa Sentencia de de agosto de Fondo En el caso Durand y Ugarte la Corte Interamericana de Derechos Humanos en adelante la Corte o la Corte Interamericana integrada por los siguientes jueces Ant\u00f4nio A. Can\u00e7ado Trindade Presidente M\u00e1ximo Pacheco G\u00f3mez Vicepresidente Hern\u00e1n Salgado Pesantes Juez Alirio Abreu Burelli Juez Sergio Garc\u00eda Ram\u00edrez Juez Carlos Vicente de Roux Rengifo Juez y Fernando Vidal Ram\u00edrez Juez ad hoc presentes", - "values": [ - "Fondo" - ] - }, - { - "text": "Corte Interamericana de Derechos Humanos Caso Blake Vs. Guatemala Sentencia de de enero de Fondo En el caso Blake la Corte Interamericana de Derechos Humanos integrada por los siguientes jueces Hern\u00e1n Salgado Pesantes Presidente Ant\u00f4nio A. Can\u00e7ado Trindade Vicepresidente H\u00e9ctor FixZamudio Juez Alejandro Montiel Arg\u00fcello Juez M\u00e1ximo Pacheco G\u00f3mez Juez Oliver Jackman Juez Alirio Abreu Burelli Juez y Alfonso Novales Aguirre Juez ad hoc presentes adem\u00e1s Manuel E. Ventura Robles Secretario y M. ", - "values": [ - "Fondo" - ] - }, - { - "text": "CORTE INTERAMERICANA DE DERECHOS HUMANOS CASO GARC\u00cdA IBARRA Y OTROS VS. ECUADOR SENTENCIA DE DE NOVIEMBRE DE Excepciones Preliminares Fondo Reparaciones y Costas En el caso Garc\u00eda Ibarra y otros la Corte Interamericana de Derechos Humanos en adelante la Corte Interamericana la Corte o este Tribunal integrada por los siguientes jueces Humberto Antonio Sierra Porto Presidente Roberto F. Caldas Vicepresidente Manuel E. Ventura Robles Juez Diego Garc\u00edaSay\u00e1n Juez Alberto P\u00e9rez P\u00e9rez Juez Eduardo ", - "values": [ - "Excepciones Preliminares", - "Fondo", - "Reparaciones", - "Costas" - ] - }, - { - "text": "Corte Interamericana de Derechos Humanos Caso Gangaram Panday Vs. Surinam Sentencia de de diciembre de Excepciones Preliminares En el caso Gangaram Panday la Corte Interamericana de Derechos Humanos integrada por los siguientes jueces H\u00e9ctor FixZamudio Presidente Thomas Buergenthal Juez Rafael Nieto Navia Juez Sonia Picado Sotela Juez Julio A. Barberis Juez Ant\u00f4nio A. Can\u00e7ado Trindade Juez ad hoc presentes adem\u00e1s Manuel E. Ventura Robles Secretario y Ana Mar\u00eda Reina Secretaria adjunta de con", - "values": [ - "Excepciones Preliminares" - ] - }, - { - "text": "RESOLUCI\u00d3N DE LA CORTE INTERAMERICANA DE DERECHOS HUMANOS DE DE FEBRERO DE MEDIDAS PROVISIONALES RESPECTO DE LA REP\u00daBLICA DE COLOMBIA ASUNTO GIRALDO CARDONA Y OTROS VISTO La Resoluci\u00f3n del Presidente de la Corte Interamericana de Derechos Humanos de de octubre de as\u00ed como las Resoluciones de la Corte Interamericana de Derechos Humanos en adelante la Corte Interamericana la Corte o el Tribunal de de febrero y de abril de de junio y de noviembre de de septiembre de de diciembre de ", - "values": [ - "Medidas Provisionales" - ] - }, - { - "text": "VOTO RAZONADO CONCURRENTE DEL JUEZ ALFONSO NOVALES AGUIRRE He concurrido con mi voto en esta sentencia en la que la Corte Interamericana de Derechos Humanos acogi\u00f3 s\u00f3lo parcialmente la excepci\u00f3n de incompetencia ratione temporis planteada por el Gobierno de la Rep\u00fablica de Guatemala porque considero que en estricto derecho no proced\u00eda dictar otra resoluci\u00f3n aunque como consecuencia de la aceptaci\u00f3n parcial de la excepci\u00f3n relacionada la Corte no podr\u00e1 pronunciarse en su sentencia de fondo sobre", - "values": [ - "Voto Separado" - ] - }, - { - "text": "CORTE INTERAMERICANA DE DERECHOS HUMANOS CASO DE LA CORTE SUPREMA DE JUSTICIA QUINTANA COELLO Y OTROS VS. ECUADOR SENTENCIA DE DE AGOSTO DE Excepci\u00f3n Preliminar Fondo Reparaciones y Costas En el caso Corte Suprema de Justicia Quintana Coello y otros la Corte Interamericana de Derechos Humanos en adelante la Corte Interamericana la Corte o el Tribunal integrada por los siguientes jueces Diego Garc\u00edaSay\u00e1n Presidente Manuel E. Ventura Robles Vicepresidente Alberto P\u00e9rez P\u00e9rez Juez Eduardo Vio ", - "values": [ - "Excepciones Preliminares", - "Fondo", - "Reparaciones", - "Costas" - ] - }, - { - "text": "RESOLUCI\u00d3N DEL PRESIDENTE DE LA CORTE INTERAMERICANA DE DERECHOS HUMANOS EN EJERCICIO PARA EL PRESENTE CASO DE DE DICIEMBRE DE CASO G\u00d3MEZ PALOMINO VS. PER\u00da SUPERVISI\u00d3N DE CUMPLIMIENTO DE SENTENCIA VISTO La Sentencia de fondo reparaciones y costas en adelante la Sentencia dictada por la Corte Interamericana de Derechos Humanos en adelante la Corte la Corte Interamericana o el Tribunal el de noviembre de La Resoluci\u00f3n de la Corte de de octubre de mediante la cual declar\u00f3 Que el Estado ", - "values": [ - "Supervisi\u00f3n de cumplimiento de Sentencia" - ] - }, - { - "text": "Corte Interamericana de Derechos Humanos Caso Vel\u00e1squez Rodr\u00edguez Vs. Honduras Sentencia de de julio de Reparaciones y Costas En el caso Vel\u00e1squez Rodr\u00edguez la Corte Interamericana de Derechos Humanos integrada por los siguientes jueces H\u00e9ctor Gros Espiell Presidente H\u00e9ctor FixZamudio Vicepresidente Rodolfo E. Piza E Juez Pedro Nikken Juez Rafael Nieto Navia Juez Rigoberto Espinal Ir\u00edas Juez ad hoc presente adem\u00e1s Manuel Ventura Secretario ai. de acuerdo con el art\u00edculo de su Reglamento la ", - "values": [ - "Reparaciones", - "Costas" - ] - }, - { - "text": "RESOLUCI\u00d3N DE LA CORTE INTERAMERICANA DE DERECHOS HUMANOS DEL DE SEPTIEMBRE DE MEDIDAS PROVISIONALES SOLICITADAS POR LA COMISI\u00d3N INTERAMERICANA DE DERECHOS HUMANOS RESPECTO DE LA REPUBLICA DE GUATEMALA CASO CARPIO NICOLLE La Corte Interamericana de Derechos Humanos integrada de la siguiente manera H\u00e9ctor FixZamudio Presidente Hern\u00e1n Salgado Pesantes Vicepresidente Alejandro Montiel Arg\u00fcello Juez M\u00e1ximo Pacheco G\u00f3mez Juez Oliver Jackman Juez Alirio Abreu Burelli Juez Ant\u00f4nio A. Can\u00e7ado Juez ", - "values": [ - "Medidas Provisionales" - ] - }, - { - "text": "RESOLU\u00c7\u00c3O DA CORTE INTERAMERICANA DE DIREITOS HUMANOS DE DE SETEMBRO DE CASO XIMENES LOPES VS. BRASIL SUPERVIS\u00c3O DE CUMPRIMENTO DE SENTEN\u00c7A VISTO A Senten\u00e7a de m\u00e9rito repara\u00e7\u00f5es e custas de de julho de doravante a Senten\u00e7a proferida pela Corte Interamericana de Direitos Humanos doravante a Corte Interamericana a Corte ou o Tribunal. A Resolu\u00e7\u00e3o de Supervis\u00e3o de Cumprimento da Senten\u00e7a de de maio de mediante a qual a Corte Interamericana declarou Que manter\u00e1 aberto o procedimento de ", - "values": [ - "Supervisi\u00f3n de cumplimiento de Sentencia" - ] - }, - { - "text": "VOTO RAZONADO DEL JUEZ A. A. CAN\u00c7ADO TRINDADE Suscribo la decisi\u00f3n de la Corte de desestimar la excepci\u00f3n preliminar interpuesta por el Gobierno demandado y de proseguir con el conocimiento del presente caso en cuando al fondo con el cual estoy de acuerdo. Si\u00e9ntome obligado a adjuntar este Voto Razonado para dejar constancia de los fundamentos de mi razonamiento y posici\u00f3n sobre el punto central de la excepci\u00f3n preliminar presentada por el Gobierno del Per\u00fa a saber la invocaci\u00f3n ante la Corte ", - "values": [ - "Voto Separado" - ] - }, - { - "text": "VOTO DISIDENTE DEL JUEZ VIDAL RAMIREZ Disiento de la decisi\u00f3n adoptada en la sentencia en cuanto desestima la excepci\u00f3n preliminar de falta de agotamiento de la jurisdicci\u00f3n interna por los siguientes fundamentos La demanda se ha presentado el de agosto de o sea transcurridos m\u00e1s de diez a\u00f1os de la desaparici\u00f3n de Nolberto Durand Ugarte y Gabriel Pablo Ugarte Rivera como consecuencia del develamiento del mot\u00edn ocurrido el de junio de en el Penal El Front\u00f3n. La demanda fue planteada para ", - "values": [ - "Voto Separado" - ] - }, - { - "text": "Resoluci\u00f3n de la Corte Interamericana de Derechos Humanos de de julio de Caso Cantos Vs. Argentina Supervisi\u00f3n de Cumplimiento de Sentencia Visto La Sentencia de fondo reparaciones y costas de de noviembre de en adelante la Sentencia emitida por la Corte Interamericana de Derechos Humanos en adelante la Corte la Corte Interamericana o el Tribunal. La Resoluci\u00f3n de la Corte Interamericana de de noviembre de sobre el cumplimiento de la Sentencia mediante la cual declar\u00f3 que de con lo ", - "values": [ - "Supervisi\u00f3n de cumplimiento de Sentencia" - ] - }, - { - "text": "RESOLUCI\u00d3N DE LA CORTE INTERAMERICANA DE DERECHOS HUMANOS DE DE AGOSTO DE CASO CESTI HURTADO VS. PER\u00da SUPERVISI\u00d3N DEL CUMPLIMIENTO DE SENTENCIA VISTOS La Sentencia de fondo emitida por la Corte Interamericana de Derechos Humanos en adelante la Corte la Corte Interamericana o el Tribunal el de septiembre de La Sentencia de Interpretaci\u00f3n de la Sentencia de fondo dictada por la Corte el de enero de La Sentencia de reparaciones emitida por el Tribunal el de mayo de en cuyos puntos por ", - "values": [ - "Supervisi\u00f3n de cumplimiento de Sentencia" - ] - }, - { - "text": "VOTO PARCIALMENTE DISIDENTE DEL JUEZ SERGIO GARC\u00cdA RAM\u00cdREZ CON RESPECTO A LA SENTENCIA DE LA CORTE INTERAMERICANA DE DERECHOS HUMANOS EN EL CASO SALVADOR CHIRIBOGA VS. ECUADOR DEL DE MARZO DE He concurrido con la mayor\u00eda de los integrantes de la Corte en la adopci\u00f3n de todos los puntos que abarca la sentencia de excepci\u00f3n preliminar y fondo del Caso Salvador Chiriboga del de mayo de Ahora coincido en varios puntos de la condena a reparaciones aprobada el de marzo de y difiero en algunos.", - "values": [ - "Voto Separado" - ] - }, - { - "text": "VOTO FUNDAMENTADO DO JUIZ SERGIO GARC\u00cdA RAM\u00cdREZ COM RESPEITO \u00c0 SENTEN\u00c7A DA CORTE INTERAMERICANA DE DIREITOS HUMANOS NO CASO TRIST\u00c1N DONOSO VS. PANAM\u00c1 DE DE JANEIRO DE Coincidi com meus colegas da Corte Interamericana de Direitos Humanos na emiss\u00e3o da senten\u00e7a correspondente ao Caso Trist\u00e1n Donoso Vs. Panam\u00e1 cujo exame suscita diversas quest\u00f5es analisadas e resolvidas pelo Tribunal. Formulo este Voto Fundamentado para expor considera\u00e7\u00f5es complementares ou recapitula\u00e7\u00f5es sobre a jurisprud\u00eancia", - "values": [ - "Voto Separado" - ] - }, - { - "text": "VOTO CONCURRENTE DEL JUEZ ALBERTO P\u00c9REZ P\u00c9REZ CASO CANALES HUAPAYA Y OTROS VS. PER\u00da SENTENCIA DE DE JUNIO DE Excepciones Preliminares Fondo Reparaciones y Costas Comparto plenamente el contenido de la Sentencia dictada en el presente caso pero he sentido la necesidad de emitir un voto concurrente habida cuenta de las constantes propuestas hechas durante la deliberaci\u00f3n del caso para que se invocara como derecho principal violado por la acci\u00f3n del Estado el derecho al trabajo es decir un no ", - "values": [ - "Voto Separado" - ] - }, - { - "text": "RESOLUCI\u00d3N DE LA CORTE INTERAMERICANA DE DERECHOS HUMANOS DE DE JULIO DE CASO CANTOS VS. ARGENTINA SUPERVISI\u00d3N DE CUMPLIMIENTO DE SENTENCIA VISTOS La Sentencia de fondo reparaciones y costas emitida el de noviembre de por la Corte Interamericana de Derechos Humanos en adelante la Corte la Corte Interamericana o el Tribunal mediante la cual el Tribunal declar\u00f3 inter alia que el Estado viol\u00f3 el derecho de acceso a la justicia consagrado en los art\u00edculos y de la Convenci\u00f3n Americana sobre ", - "values": [ - "Supervisi\u00f3n de cumplimiento de Sentencia" - ] - }, - { - "text": "Resoluci\u00f3n de la Corte Interamericana de Derechos Humanos de de julio de Caso Blanco Romero y Otros Vs. Venezuela Supervisi\u00f3n de Cumplimiento de Sentencia Visto La Sentencia de fondo reparaciones y costas en adelante la Sentencia emitida en el presente caso por la Corte Interamericana de Derechos Humanos en adelante la Corte la Corte Interamericana o el Tribunal el de noviembre de mediante la cual dispuso que el Estado de Venezuela en adelante el Estado debe llevar a cabo y procesos ", - "values": [ - "Supervisi\u00f3n de cumplimiento de Sentencia" - ] - }, - { - "text": "RESOLUCI\u00d3N DEL PRESIDENTE DE LA CORTE INTERAMERICANA DE DERECHOS HUMANOS DEL DE AGOSTO DE MEDIDAS PROVISIONALES SOLICITADAS POR LA COMISI\u00d3N INTERAMERICANA DE DERECHOS HUMANOS RESPECTO DE LA REPUBLICA DE GUATEMALA CASO BLAKE VISTO El escrito y sus anexos del de agosto de recibido ese mismo d\u00eda en la Secretar\u00eda de la Corte Interamericana de Derechos Humanos en adelante la Secretar\u00eda mediante el cual la Comisi\u00f3n Interamericana de Derechos Humanos en adelante la Comisi\u00f3n o la Comisi\u00f3n someti\u00f3", - "values": [ - "Medidas Provisionales" - ] - }, - { - "text": "VOTO CONCURRENTE DEL JUEZ SERGIO GARCIA RAMIREZ A LA SENTENCIA DE LA CORTE INTERAMERICANA DE DERECHOS HUMANOS EN EL CASO G\u00d3MEZ PALOMINO VS. PER\u00da DEL DE NOVIEMBRE DE En este Voto me referir\u00e9 a un punto esencial en el Caso G\u00f3mez Palomino a saber la construcci\u00f3n legislativa del delito de desaparici\u00f3n forzada en el Derecho interno y la relaci\u00f3n que esto guarda con el orden internacional que el Estado ha reconocido. En algunos de sus aspectos m\u00e1s significativos la materia ha sido frecuentemente ", - "values": [ - "Voto Separado" - ] - }, - { - "text": "RESOLUCI\u00d3N DE LA CORTE INTERAMERICANA DE DERECHOS HUMANOS DE DE FEBRERO DE MEDIDAS PROVISIONALES RESPECTO DE LA REP\u00daBLICA DE COLOMBIA ASUNTO GIRALDO CARDONA Y OTROS VISTO La Resoluci\u00f3n del Presidente de la Corte Interamericana de Derechos Humanos de de octubre de as\u00ed como las Resoluciones de la Corte Interamericana de Derechos Humanos en adelante la Corte Interamericana la Corte o el Tribunal de de febrero y de abril de de junio y de noviembre de de septiembre de de diciembre de ", - "values": [ - "Medidas Provisionales" - ] - }, - { - "text": "Resoluci\u00f3n de la Presidenta de la Corte Interamericana de Derechos Humanos de de febrero de Caso Ivcher Bronstein Vs. Per\u00fa Supervisi\u00f3n de Cumplimiento de Sentencia Visto La Sentencia de fondo reparaciones y costas en adelante la Sentencia emitida en el presente caso por la Corte Interamericana de Derechos Humanos en adelante la Corte la Corte Interamericana o el Tribunal el de febrero de La Resoluci\u00f3n de la Corte Interamericana de de septiembre de sobre Supervisi\u00f3n de Cumplimiento de ", - "values": [ - "Supervisi\u00f3n de cumplimiento de Sentencia" - ] - }, - { - "text": "RESOLUCI\u00d3N DE LA CORTE INTERAMERICANA DE DERECHOS HUMANOS DE DE NOVIEMBRE DE CASO FONTEVECCHIA y DAMICO VS. ARGENTINA SUPERVISI\u00d3N DE CUMPLIMIENTO DE SENTENCIA VISTO La Sentencia de fondo reparaciones y costas en adelante la Sentencia o el Fallo dictada por la Corte Interamericana de Derechos Humanos en adelante la Corte la Corte Interamericana o el Tribunal el de noviembre de La Corte declar\u00f3 responsable internacionalmente a la Rep\u00fablica Argentina en adelante el Estado o Argentina por la ", - "values": [ - "Supervisi\u00f3n de cumplimiento de Sentencia" - ] - }, - { - "text": "RESOLUCI\u00d3N DEL PRESIDENTE DE LA CORTE INTERAMERICANA DE DERECHOS HUMANOS DE DE MARZO DE MEDIDAS URGENTES RESPECTO DE EL SALVADOR A FAVOR DE ADRIAN MEL\u00c9NDEZ QUIJANO Y OTROS Vistos La solicitud y sus anexos de la Comisi\u00f3n Interamericana de Derechos Humanos en adelante la Comisi\u00f3n o la Comisi\u00f3n Interamericana de de marzo de mediante los cuales someti\u00f3 a la Corte Interamericana de Derechos Humanos en adelante la Corte la Corte Interamericana o el Tribunal una solicitud de medidas provisionales", - "values": [ - "Medidas Provisionales" - ] - }, - { - "text": "VOTO PARCIALMENTE DISIDENTE DEL JUEZ HUMBERTO ANTONIO SIERRA PORTO CORTE INTERAMERICANA DE DERECHOS HUMANOS CASO GALINDO C\u00c1RDENAS Y OTROS VS. PER\u00da SENTENCIA DE DE OCTUBRE DE Excepciones Preliminares Fondo Reparaciones y costas El motivo del presente voto es expresar los motivos de mi disidencia parcial respecto de lo decidido por la mayor\u00eda de los Jueces de la Corte Interamericana de Derechos Humanos en adelante la Corte o el Tribunal en la Sentencia de de octubre de sobre el caso Galindo ", - "values": [ - "Voto Separado" - ] - }, - { - "text": "RESOLUCI\u00d3N DE LA CORTE INTERAMERICANA DE DERECHOS HUMANOS DE DE NOVIEMBRE DE CASO DE LA MASACRE DE LA ROCHELA MEDIDAS PROVISIONALES RESPECTO DE LA REP\u00daBLICA DE COLOMBIA VISTO La Sentencia de fondo reparaciones y costas emitida por la Interamericana de Derechos Humanos en adelante la Corte la Interamericana o el Tribunal el de mayo de Corte Corte El escrito de los representantes de las v\u00edctimas en adelante los representantes de de octubre de y sus anexos recibidos el de octubre de los", - "values": [ - "Medidas Provisionales" - ] - }, - { - "text": "VOTO RAZONADO CONCURRENTE DEL JUEZ SERGIO GARC\u00cdA RAM\u00cdREZ A LA SENTENCIA DICTADA POR LA CORTE INTERAMERICANA DE DERECHOS HUMANOS EN EL CASO BULACIO VS. ARGENTINA EL DE SEPTIEMBRE DEL Coincido con los integrantes de la Corte en la Sentencia a la que se refiere este Voto razonado concurrente que emito para precisar desde mi propia perspectiva el alcance de algunos conceptos incorporados en esa Sentencia a la luz de sus antecedentes y de la solicitud que las partes de com\u00fan acuerdo sometieron a ", - "values": [ - "Voto Separado" - ] - }, - { - "text": "RESOLUCI\u00d3N DE LA CORTE INTERAMERICANA DE DERECHOS HUMANOS DE DE AGOSTO DE MEDIDAS PROVISIONALES RESPECTO DE LA REP\u00daBLICA DE COLOMBIA CASO CLEMENTE TEHER\u00c1N Y OTROS VISTOS La Resoluci\u00f3n de la Corte Interamericana de Derechos Humanos en adelante la Corte o la Corte Interamericana de de junio de La Resoluci\u00f3n de la Corte de de enero de mediante la cual decidi\u00f3 Requerir al Estado de Colombia que mantenga las medidas necesarias para proteger la vida e integridad personal de los se\u00f1ores ", - "values": [ - "Medidas Provisionales" - ] - }, - { - "text": "VOTO CONCURRENTE DEL JUEZ SERGIO GARC\u00cdA RAM\u00cdREZ A LA SENTENCIA DE LA CORTE INTERAMERICANA DE DERECHOS HUMANOS EN EL CASO CAESAR VS. TRINIDAD Y TOBAGO DE MARZO DE La sentencia de la Corte Interamericana de Derechos Humanos a la que agrego este Voto razonado emitida el de marzo de en el proceso sobre el Caso Caesar vs. Trinidad y Tobago suscita diversas cuestiones vinculadas con temas relevantes. Entre aqu\u00e9llas figuran extensi\u00f3n y vigencia de los deberes asumidos por el Estado parte en un ", - "values": [ - "Voto Separado" - ] - }, - { - "text": "VOTO INDIVIDUAL DEL JUEZ EDUARDO VIO GROSSI CASO PACHECO TERUEL Y OTROS VS. HONDURAS SENTENCIA DE DE ABRIL DE Fondo Reparaciones y Costas DE LA CORTE INTERAMERICANA DE DERECHOS HUMANOS Introducci\u00f3n Emito el presente voto individual con relaci\u00f3n a la Sentencia dictada en autos por la Corte Interamericana de Derechos Humanos en adelante aquella la Sentencia y \u00e9sta la Corte a los efectos de dejar expresa constancia de que si bien la comparto y en particular la homologaci\u00f3n o aprobaci\u00f3n que hace ", - "values": [ - "Voto Separado" - ] - }, - { - "text": "RESOLUCI\u00d3N DE LA CORTE INTERAMERICANA DE DERECHOS HUMANOS DE JULIO DE MEDIDAS PROVISIONALES RESPECTO DE LOS ESTADOS UNIDOS MEXICANOS ASUNTO GALLARDO RODR\u00cdGUEZ VISTOS El escrito de la Comisi\u00f3n Interamericana de Derechos Humanos en adelante la Comisi\u00f3n o la Comisi\u00f3n Interamericana de de diciembre de mediante el cual solicit\u00f3 a la Corte Interamericana de Derechos Humanos en adelante la Corte la Corte Interamericana o el Tribunal la adopci\u00f3n de medidas provisionales para evitar da\u00f1os al ", - "values": [ - "Medidas Provisionales" - ] - }, - { - "text": "RESOLUCI\u00d3N DE LA CORTE INTERAMERICANA DE DERECHOS HUMANOS DE DE ENERO DE MEDIDAS PROVISIONALES SOLICITADAS POR LA COMISI\u00d3N INTERAMERICANA DE DERECHOS HUMANOS RESPECTO DE LA REP\u00daBLICA DE COLOMBIA CASO CLEMENTE TEHER\u00c1N Y OTROS VISTOS La Resoluci\u00f3n de la Corte Interamericana de Derechos Humanos en adelante la Corte o la Corte Interamericana de de junio de El cuarto informe del Estado de Colombia en adelante el Estado o Colombia de de octubre de en el cual manifest\u00f3 que el Estado estaba ", - "values": [ - "Medidas Provisionales" - ] - }, - { - "text": "RESOLUCI\u00d3N DE LA PRESIDENTA DE LA CORTE INTERAMERICANA DE DERECHOS HUMANOS DE DE JUNIO DE CASO TRIST\u00c1N DONOSO VS. PANAM\u00c1 VISTO El escrito de demanda presentado por la Comisi\u00f3n Interamericana de Derechos Humanos en adelante la Comisi\u00f3n Interamericana o la Comisi\u00f3n ante la Corte Interamericana de Derechos Humanos en adelante la Corte Interamericana la Corte o el Tribunal el de agosto de mediante el cual ofreci\u00f3 un testigo y dos peritos. El escrito de solicitudes argumentos y pruebas en de", - "values": [ - "Otros" - ] - }, - { - "text": "RESOLUCI\u00d3N DE LA CORTE INTERAMERICANA DE DERECHOS HUMANOS DE DE JULIO DE CASO CARPIO NICOLLE Y OTROS VS. GUATEMALA SUPERVISI\u00d3N DE CUMPLIMIENTO DE SENTENCIA VISTOS La Sentencia de fondo reparaciones y costas en adelante la Sentencia dictada por la Corte Interamericana de Derechos Humanos en adelante la Corte la Corte Interamericana o el Tribunal el de noviembre de mediante la cual Dispuso Por unanimidad que El Estado debe investigar efectivamente los hechos del presente caso con el fin de ", - "values": [ - "Supervisi\u00f3n de cumplimiento de Sentencia" - ] - }, - { - "text": "RESOLUCI\u00d3N DE LA CORTE INTERAMERICANA DE DERECHOS HUMANOS DE DE MARZO DE MEDIDAS PROVISIONALES SOLICITADAS POR LA COMISI\u00d3N INTERAMERICANA DE DERECHOS HUMANOS RESPECTO DE LA REP\u00daBLICA DE PER\u00da CASO DEL TRIBUNAL CONSTITUCIONAL VISTOS El escrito de de abril de y sus anexos mediante el cual la se\u00f1ora Delia Revoredo Marsano en adelante la se\u00f1ora Revoredo someti\u00f3 a la Corte Interamericana de Derechos Humanos en adelante la Corte o la Corte Interamericana al amparo de los art\u00edculos de la sobre ", - "values": [ - "Medidas Provisionales" - ] - }, - { - "text": "Corte Interamericana de Derechos Humanos Caso Hilaire Constantine y Benjamin y otros Vs. Trinidad y Tobago Sentencia de de junio de Fondo Reparaciones y Costas En el Caso Hilaire Constantine y Benjamin y otros la Corte Interamericana de Derechos Humanos en adelante la Corte Interamericana la Corte o el Tribunal integrada por los siguientes jueces Ant\u00f4nio A. Can\u00e7ado Trindade Presidente Alirio Abreu Burelli Vicepresidente Hern\u00e1n Salgado Pesantes Juez Oliver Jackman Juez Sergio Garc\u00eda Ram\u00edrez ", - "values": [ - "Fondo", - "Costas", - "Reparaciones" - ] - }, - { - "text": "Resoluci\u00f3n del Presidente de la Corte Interamericana de Derechos Humanos De de diciembre de Caso de los Ni\u00f1os de la Calle Villagr\u00e1n Morales y otros Vs. Guatemala Supervisi\u00f3n de Cumplimiento de Sentencias VISTOS La Sentencia de fondo dictada por la Corte Interamericana de Derechos Humanos en adelante la Corte la Corte Interamericana o el Tribunal el de noviembre de La Sentencia de reparaciones dictada por la Corte Interamericana el de mayo de La Resoluci\u00f3n de la Corte Interamericana de ", - "values": [ - "Supervisi\u00f3n de cumplimiento de Sentencia" - ] - }, - { - "text": "RESOLUCI\u00d3N DE LA PRESIDENTA DE LA CORTE INTERAMERICANA DE DERECHOS HUMANOS DE DE DICIEMBRE DE MEDIDAS PROVISIONALES RESPECTO DE COLOMBIA CASO CABALLERO DELGADO Y SANTANA VISTO Las Sentencias de fondo y de reparaciones y costas dictadas en el caso Caballero Delgado y Santana por la Corte Interamericana de Derechos Humanos en adelante la Corte Interamericana la Corte o el Tribunal el de diciembre de y el de enero de respectivamente. Las Resoluciones de la Corte Interamericana de de de ", - "values": [ - "Medidas Provisionales" - ] - }, - { - "text": "VOTO PARCIALMENTE DISIDENTE DEL JUEZ ALBERTO P\u00c9REZ P\u00c9REZ CASO CRUZ S\u00c1NCHEZ Y OTROS VS. PER\u00da La Corte determin\u00f3 que Eduardo Nicol\u00e1s Cruz S\u00e1nchez fue privado arbitrariamente de su vida en violaci\u00f3n del art\u00edculo de la Convenci\u00f3n Americana en relaci\u00f3n con el art\u00edculo de la misma p\u00e1rr. de la sentencia. Asimismo determin\u00f3 que hab\u00edan existido diversas violaciones en perjuicio de los familiares considerados como presuntas v\u00edctimas en este caso p\u00e1rrs. y En los p\u00e1rrafos y siguientes la Corte y ", - "values": [ - "Voto Separado" - ] - }, - { - "text": "RESOLUCI\u00d3N DE LA CORTE INTERAMERICANA DE DERECHOS HUMANOS DE DE FEBRERO CASO EL AMPARO VS. VENEZUELA SUPERVISI\u00d3N DE CUMPLIMIENTO DE SENTENCIA VISTO La Sentencia de fondo dictada por la Corte Interamericana de Derechos Humanos en adelante la Corte Interamericana la Corte o el Tribunal el de enero de La Sentencia de reparaciones en adelante la Sentencia dictada por la Corte Interamericana el de septiembre de mediante la cual Fij\u00f3 en US el total de las indemnizaciones debidas a los de ", - "values": [ - "Supervisi\u00f3n de cumplimiento de Sentencia" - ] - }, - { - "text": "Caso do Pres\u00eddio Miguel Castro Castro Vs. Peru Senten\u00e7a de de novembro de M\u00e9rito Repara\u00e7\u00f5es e Custas VOTO FUNDAMENTADO DO JUIZ A. A. CAN\u00c7ADO TRINDADE Votei a favor da aprova\u00e7\u00e3o pela Corte Interamericana de Direitos Humanos da presente Senten\u00e7a no Caso do Pres\u00eddio Castro Castro. Dada a import\u00e2ncia que atribuo a algumas quest\u00f5es suscitadas no curso do processo contencioso perante a Corte no presente caso vejome na obriga\u00e7\u00e3o de acrescentar \u00e0 presente Senten\u00e7a este Voto Fundamentado com minhas ", - "values": [ - "Voto Separado" - ] - }, - { - "text": "Resoluci\u00f3n de la Corte Interamericana de Derechos Humanos De de junio de Caso Baena Ricardo y otros Trabajadores Vs. Panam\u00e1 Cumplimiento de Sentencia VISTOS La sentencia dictada en el caso Baena Ricardo y otros por la Corte Interamericana de Derechos Humanos en adelante la Corte o el Tribunal el de febrero de en cuyos puntos resolutivos por unanimidad declar\u00f3 que el Estado viol\u00f3 los principios de legalidad y de irretroactividad consagrados en el art\u00edculo de la Convenci\u00f3n Americana sobre", - "values": [ - "Supervisi\u00f3n de cumplimiento de Sentencia" - ] - }, - { - "text": "RESOLUCI\u00d3N DE LA CORTE INTERAMERICANA DE DERECHOS HUMANOS DE DE SEPTIEMBRE DE CASO CINCO PENSIONISTAS VS. PER\u00da CUMPLIMIENTO DE SENTENCIA VISTOS La Sentencia de fondo reparaciones y costas emitida el de febrero de por la Corte Interamericana de Derechos Humanos en adelante la Corte la Corte Interamericana o el Tribunal mediante la cual el Tribunal resolvi\u00f3 inter alia por unanimidad que el Estado viol\u00f3 el derecho a la propiedad privada consagrado en el art\u00edculo de la Convenci\u00f3n Americana ", - "values": [ - "Supervisi\u00f3n de cumplimiento de Sentencia" - ] - }, - { - "text": "Corte Interamericana de Derechos Humanos Caso de los Comerciantes Vs. Colombia Sentencia de de junio de Excepci\u00f3n Preliminar En el caso de los Comerciantes la Corte Interamericana de Derechos Humanos en adelante la Corte Interamericana la Corte o el Tribunal integrada por los siguientes jueces Ant\u00f4nio A. Can\u00e7ado Trindade Presidente Alirio Abreu Burelli Vicepresidente Hern\u00e1n Salgado Pesantes Juez Oliver Jackman Juez Sergio Garc\u00eda Ram\u00edrez Juez y Rafael Nieto Navia Juez ad hoc presentes adem\u00e1s", - "values": [ - "Excepciones Preliminares" - ] - }, - { - "text": "Resoluci\u00f3n de la Presidenta de la Corte Interamericana de Derechos Humanos de de abril de Solicitud de Medidas Provisionales Caso Gonz\u00e1lez y otras Campo Algodonero vs. M\u00e9xico Visto El escrito de demanda presentado por la Comisi\u00f3n Interamericana de Derechos Humanos en adelante la Comisi\u00f3n Interamericana o la Comisi\u00f3n ante la Corte Interamericana de Derechos Humanos en adelante la Corte Interamericana la Corte o el Tribunal el de noviembre de El escrito de solicitudes argumentos y pruebas ", - "values": [ - "Medidas Provisionales" - ] - }, - { - "text": "RESOLUCI\u00d3N DE LA CORTE INTERAMERICANA DE DERECHOS HUMANOS DE DE DICIEMBRE DE MEDIDAS PROVISIONALES LUISIANA R\u00cdOS Y OTROS RESPECTO DE VENEZUELA VISTOS La Resoluci\u00f3n de la Corte Interamericana de Derechos Humanos en adelante la Corte Interamericana la Corte o el Tribunal de de noviembre de relativa a las medidas provisionales solicitadas por la Comisi\u00f3n Interamericana de Derechos Humanos en adelante la Comisi\u00f3n Interamericana o la Comisi\u00f3n a favor de los se\u00f1ores Luisiana R\u00edos Armando Amaya ", - "values": [ - "Medidas Provisionales" - ] - }, - { - "text": "RESOLUCI\u00d3N DE LA CORTE INTERAMERICANA DE DERECHOS HUMANOS DE DE JUNIO DE MEDIDAS PROVISIONALES SOLICITADAS POR LA COMISI\u00d3N INTERAMERICANA DE DERECHOS HUMANOS RESPECTO DE LA REP\u00daBLICA DE HAIT\u00cd CASO LYSIAS FLEURY VISTOS El escrito de la Comisi\u00f3n Interamericana de Derechos Humanos en adelante la Comisi\u00f3n o la Comisi\u00f3n Interamericana de de marzo de mediante el cual someti\u00f3 a la Corte Interamericana de Derechos Humanos en adelante la Corte o la Corte Interamericana de acuerdo con el art\u00edculo ", - "values": [ - "Medidas Provisionales" - ] - }, - { - "text": "CORTE INTERAMERICANA DE DERECHOS HUMANOS Caso de los Hermanos G\u00f3mez Paquiyauri Vs. Per\u00fa Sentencia de de julio de Fondo Reparaciones y Costas En el caso de los hermanos G\u00f3mez Paquiyauri la Corte Interamericana de Derechos Humanos en adelante la Corte Interamericana la Corte o el Tribunal integrada por los siguientes jueces Sergio Garc\u00eda Ram\u00edrez Presidente Alirio Abreu Burelli Vicepresidente Oliver Jackman Juez Ant\u00f4nio A. Can\u00e7ado Trindade Juez Cecilia Medina Quiroga Jueza Manuel E. Ventura y ", - "values": [ - "Fondo", - "Reparaciones", - "Costas" - ] - }, - { - "text": "RESOLUCI\u00d3N DE LA CORTE INTERAMERICANA DE DERECHOS HUMANOS DE DE JUNIO DE MEDIDAS PROVISIONALES ORDENADAS POR LA CORTE INTERAMERICANA DE DERECHOS HUMANOS RESPECTO DE LA REP\u00daBLICA DE GUATEMALA CASO COLOTENANGO VISTOS La Resoluci\u00f3n de la Corte Interamericana de Derechos Humanos en adelante la Corte o la Corte Interamericana de de junio de mediante la cual Requiri\u00f3 al Gobierno de Guatemala que adoptase sin dilaci\u00f3n cuantas medidas fuesen necesarias para proteger el derecho a la vida e de ", - "values": [ - "Medidas Provisionales" - ] - }, - { - "text": "Corte Interamericana de Derechos Humanos Caso Raxcac\u00f3 Reyes Vs. Guatemala Sentencia de de febrero de Interpretaci\u00f3n de la Sentencia de Fondo Reparaciones y Costas En el caso Raxcac\u00f3 Reyes La Corte Interamericana de Derechos Humanos en adelante la Corte la Corte Interamericana o el Tribunal integrada por los siguientes jueces Sergio Garc\u00eda Ram\u00edrez Presidente Alirio Abreu Burelli Vicepresidente Oliver Jackman Juez Ant\u00f4nio A. Can\u00e7ado Trindade Juez Cecilia Medina Quiroga Jueza y Manuel E. Ventura", - "values": [ - "Interpretaci\u00f3n" - ] - }, - { - "text": "RESOLUCI\u00d3N DE LA CORTE INTERAMERICANA DE DERECHOS HUMANOS DE DE MAYO DE CASO TIU TOJIN VS. GUATEMALA SUPERVISI\u00d3N DE CUMPLIMIENTO DE SENTENCIA VISTO La Sentencia de fondo reparaciones y costas en adelante la Sentencia dictada por la Corte Interamericana de Derechos Humanos en adelante la Corte Interamericana la Corte o el Tribunal el de noviembre de mediante la cual dispuso por unanimidad que el Estado debe investigar los hechos que generaron las violaciones del presente caso e juzgar y ", - "values": [ - "Supervisi\u00f3n de cumplimiento de Sentencia" - ] - }, - { - "text": "VOTO DISIDENTE DEL JUEZ AD HOC ALEJANDRO MONTIEL ARG\u00dcELLO He disentido de los puntos resolutivos de esta sentencia que declara que el Estado de El Salvador ha violado los art\u00edculos y de la Convenci\u00f3n Americana sobre Derechos Humanos. La primera disposici\u00f3n citada ha sido interpretada por esta Corte en el sentido de que no s\u00f3lo comprende garant\u00edas judiciales a favor de los acusados o de los litigantes en un juicio sino tambi\u00e9n establece la obligaci\u00f3n del Estado de investigar todo hecho del ", - "values": [ - "Voto Separado" - ] - }, - { - "text": "Resoluci\u00f3n del Presidente de la Corte Interamericana de Derechos Humanos De de Diciembre de Caso Loayza Tamayo Vs. Per\u00fa Supervisi\u00f3n de Cumplimiento de Sentencia VISTOS La Sentencia de fondo emitida en el presente caso por la Interamericana de Derechos Humanos en adelante la Corte la Interamericana o el Tribunal el de septiembre de Corte Corte La Sentencia de reparaciones dictada en el presente caso por la Corte Interamericana el de noviembre de La Sentencia de interpretaci\u00f3n de la de ", - "values": [ - "Supervisi\u00f3n de cumplimiento de Sentencia" - ] - }, - { - "text": "DISSENTING OPINION OF JUDGE MONTIELARG\u00dcELLO I am dissatisfied with some of the assertions assessments and arguments made in the Judgment in so far as they concern violations of the American Convention although I consider it unnecessary to enter into each one in detail in such a complex case except when they lead to conclusions contrary to those that have been approved. I voted in favor of all the operative paragraphs save those relating to the double jeopardy of Ms. Mar\u00eda Elena LoayzaTamayo ", - "values": [ - "Voto Separado" - ] - }, - { - "text": "Resoluci\u00f3n de La Presidenta Corte Interamericana de Derechos Humanos de de noviembre de Caso de la Masacre de Mapirip\u00e1n Vs. Colombia Supervisi\u00f3n de Cumplimiento de Sentencia y Medidas provisionales Vistos A Supervisi\u00f3n de cumplimiento de la Sentencia La Sentencia de fondo reparaciones y costas dictada el de septiembre de en adelante la Sentencia por la Corte Interamericana de Derechos Humanos en adelante la Corte la Corte Interamericana o el Tribunal mediante la cual el Tribunal decidi\u00f3 ", - "values": [ - "Supervisi\u00f3n de cumplimiento de Sentencia" - ] - }, - { - "text": "RESOLUCI\u00d3N DE LA CORTE INTERAMERICANA DE DERECHOS HUMANOS DEL DE DICIEMBRE DE MEDIDAS PROVISIONALES SOLICITADAS POR LA COMISI\u00d3N INTERAMERICANA DE DERECHOS HUMANOS RESPECTO DE GUATEMALA CASO COLOTENANGO La Corte Interamericana de Derechos Humanos integrada de la siguiente manera Rafael Nieto Navia Presidente H\u00e9ctor FixZamudio Vicepresidente Alejandro Montiel Arg\u00fcello Juez M\u00e1ximo Pacheco G\u00f3mez Juez Hern\u00e1n Salgado Pesantes Juez presentes adem\u00e1s Manuel E. Ventura Robles Secretario Ana Mar\u00eda Reina", - "values": [ - "Medidas Provisionales" - ] - }, - { - "text": "RESOLUCI\u00d3N DE LA CORTE INTERAMERICANA DE DERECHOS HUMANOS DE DE NOVIEMBRE DE CASO GARRIDO Y BAIGORRIA vs. ARGENTINA SUPERVISI\u00d3N DE CUMPLIMIENTO DE SENTENCIA VISTOS La Sentencia de fondo dictada por la Corte Interamericana de Derechos Humanos en adelante la Corte la Corte Interamericana o el Tribunal el de febrero de mediante la cual inter alia Tom\u00f3 nota del reconocimiento efectuado por la Argentina acerca de los hechos articulados en la demanda. Tom\u00f3 nota igualmente de su reconocimiento ", - "values": [ - "Supervisi\u00f3n de cumplimiento de Sentencia" - ] - }, - { - "text": "RESOLUCI\u00d3N DE LA CORTE INTERAMERICANA DE DERECHOS HUMANOS DE DE JUNIO DE CASO BALDE\u00d3N GARC\u00cdA VS. PER\u00da SUPERVISI\u00d3N DE CUMPLIMIENTO DE SENTENCIA VISTO La Sentencia de fondo reparaciones y costas en adelante la Sentencia dictada en el presente caso por la Corte Interamericana de Derechos Humanos en adelante la Corte Interamericana la Corte o el Tribunal el de abril de Dicho fallo estableci\u00f3 que el de septiembre de como parte de un operativo contrainsurgente llevado a cabo en el Departamento", - "values": [ - "Supervisi\u00f3n de cumplimiento de Sentencia" - ] - }, - { - "text": "CORTE INTERAMERICANA DE DIREITOS HUMANOS CASO V\u00c9LEZ LOOR VS. PANAM\u00c1 SENTEN\u00c7A DE DE NOVEMBRO DE Exce\u00e7\u00f5es Preliminares M\u00e9rito Repara\u00e7\u00f5es e Custas No caso V\u00e9lez Loor A Corte Interamericana de Direitos Humanos doravante denominada Interamericana Corte ou Tribunal integrada pelos seguintes ju\u00edzes Corte Diego Garc\u00edaSay\u00e1n Presidente Leonardo A. Franco VicePresidente Manuel E. Ventura Robles Juiz Margarette May Macaulay Ju\u00edza Rhadys Abreu Blondet Ju\u00edza Alberto P\u00e9rez P\u00e9rez Juiz e Eduardo Vio Grossi ", - "values": [ - "Excepciones Preliminares", - "Fondo", - "Reparaciones", - "Costas" - ] - }, - { - "text": "RESOLUCI\u00d3N DE LA CORTE INTERAMERICANA DE DERECHOS HUMANOS DE DE MAYO DE SOLICITUD DE MEDIDAS PROVISIONALES PRESENTADA POR ALEJANDRO PONCE VILLAC\u00cdS Y ALEJANDRO PONCE MART\u00cdNEZ RESPECTO DE LA REP\u00daBLICA DE ECUADOR VISTO La Sentencia de de mayo de sobre excepci\u00f3n preliminar y fondo y la Sentencia de de marzo de sobre reparaciones y costas en el caso Salvador Chiriboga Vs. Ecuador. El de marzo de los abogados del caso Salvador Chiriboga vs. Ecuador se\u00f1ores Alejandro Ponce Villac\u00eds y Ponce ", - "values": [ - "Medidas Provisionales" - ] - }, - { - "text": "RESOLUCI\u00d3N DE LA CORTE INTERAMERICANA DE DERECHOS HUMANOS DE DE JUNIO DE MEDIDAS PROVISIONALES ADOPTADAS POR LA CORTE INTERAMERICANA DE DERECHOS HUMANOS RESPECTO DE LA REP\u00daBLICA DE COLOMBIA CASO GIRALDO CARDONA VISTOS La resoluci\u00f3n del Presidente de la Corte Interamericana de Derechos Humanos en adelante el Presidente de de octubre de mediante la cual decidi\u00f3 Requerir al Gobierno de Colombia que adopte sin dilaci\u00f3n cuantas medidas sean necesarias para proteger la vida e integridad f\u00edsica ", - "values": [ - "Medidas Provisionales" - ] - }, - { - "text": "RESOLUCI\u00d3N DE LA CORTE INTERAMERICANA DE DERECHOS HUMANOS DE DE ABRIL DE MEDIDAS PROVISIONALES RESPECTO DE LOS ESTADOS UNIDOS MEXICANOS CASO DEL CENTRO DE DERECHOS HUMANOS MIGUEL AGUSTIN PRO JUAREZ Y OTROS VISTOS La Resoluci\u00f3n emitida por el Presidente de la Corte Interamericana de Derechos Humanos en adelante la Corte o el Tribunal el de octubre de en consulta con los dem\u00e1s Jueces de la Corte mediante la cual resolvi\u00f3 Requerir al Estado que adopte sin dilaci\u00f3n cuantas medidas sean para ", - "values": [ - "Medidas Provisionales" - ] - }, - { - "text": "RESOLUCI\u00d3N DEL PRESIDENTE DE LA CORTE INTERAMERICANA DE DERECHOS HUMANOS DE DE ENERO DE MEDIDAS PROVISIONALES RESPECTO DE LA REP\u00daBLICA DE PARAGUAY ASUNTO LM VISTO La Resoluci\u00f3n dictada por la Corte Interamericana de Derechos Humanos en adelante la Corte Interamericana la Corte o el Tribunal el de julio de mediante la cual el Tribunal resolvi\u00f3 Requerir al Estado del Paraguay que adopte de forma inmediata las medidas que sean necesarias adecuadas y efectivas para proteger los derechos a la", - "values": [ - "Medidas Provisionales" - ] - }, - { - "text": "RESOLUCI\u00d3N DE LA CORTE INTERAMERICANA DE DERECHOS HUMANOS DE DE JUNIO DE MEDIDAS PROVISIONALES ORDENADAS POR LA CORTE RESPECTO DE LA REP\u00daBLICA DE COLOMBIA CASO CABALLERO DELGADO Y SANTANA VISTOS La resoluci\u00f3n de la Corte Interamericana de Derechos Humanos en adelante la Corte de de abril de mediante la cual Requiri\u00f3 al Estado de Colombia que adoptara sin dilaci\u00f3n las medidas necesarias para proteger la vida e integridad personal de los se\u00f1ores Gonzalo Arias Alturo Javier P\u00e1ez Guillermo ", - "values": [ - "Medidas Provisionales" - ] - }, - { - "text": "RESOLUCI\u00d3N DE LA CORTE INTERAMERICANA DE DERECHOS HUMANOS DEL DE FEBRERO DE MEDIDAS PROVISIONALES SOLICITADAS POR LA COMISI\u00d3N INTERAMERICANA DE DERECHOS HUMANOS RESPECTO DE GUATEMALA CASO COLOTENANGO VISTO La resoluci\u00f3n de la Corte Interamericana de Derechos Humanos en adelante la Corte o la Corte Interamericana de de mayo de en cuya parte dispositiva establece Prorrogar hasta el de febrero de las medidas provisionales ordenadas mediante resoluci\u00f3n de la Corte del de junio de y por ", - "values": [ - "Medidas Provisionales" - ] - }, - { - "text": "CORTE INTERAMERICANA DE DERECHOS HUMANOS CASO ANDRADE SALM\u00d3N VS. BOLIVIA SENTENCIA DE DE DICIEMBRE DE Fondo Reparaciones y Costas En el Caso Andrade Salm\u00f3n la Corte Interamericana de Derechos Humanos en adelante la Corte Interamericana la Corte o el Tribunal integrada por los siguientes Jueces Roberto F. Caldas Presidente Eduardo Ferrer MacGregor Poisot Vicepresidente Eduardo Vio Grossi Juez Humberto Antonio Sierra Porto Juez Elizabeth Odio Benito Jueza Eugenio Ra\u00fal Zaffaroni Juez y L. ", - "values": [ - "Fondo", - "Reparaciones", - "Costas" - ] - }, - { - "text": "RESOLUCI\u00d3N DE LA CORTE INTERAMERICANA DE DERECHOS HUMANOS DE DE JUNIO DE CASO COMERCIANTES VS. COLOMBIA SUPERVISI\u00d3N DE CUMPLIMIENTO DE SENTENCIA VISTO La Sentencia de excepci\u00f3n preliminar en adelante la Sentencia de excepci\u00f3n preliminar emitida por la Corte Interamericana de Derechos Humanos en adelante la Corte la Corte Interamericana o este Tribunal el de junio de y la Sentencia de fondo reparaciones y costas en adelante la Sentencia emitida por el Tribunal el de julio de La Corte ", - "values": [ - "Supervisi\u00f3n de cumplimiento de Sentencia" - ] - }, - { - "text": "VOTO RAZONADO DEL JUEZ SERGIO GARC\u00cdA RAM\u00cdREZ PARA LA SENTENCIA DICTADA POR LA CORTE INTERAMERICANA DE DERECHOS HUMANOS EN EL CASO CLAUDE REYES Y OTROS VS. CHILE DEL DE SEPTIEMBRE DE En un cuarto de siglo la jurisprudencia de la Corte Interamericana ha debido explorar el sentido y alcance de numerosos derechos y libertades contenidos en la Convenci\u00f3n Americana. Esta relectura del ordenamiento internacional a la luz del objeto y fin del tratado que se concentran en la tutela m\u00e1s amplia de los ", - "values": [ - "Voto Separado" - ] - }, - { - "text": "RESOLUCI\u00d3N DEL PRESIDENTE DE LA CORTE INTERAMERICANA DE DERECHOS HUMANOS DE DE AGOSTO DE SOLICITUD DE AMPLIACI\u00d3N DE MEDIDAS PROVISIONALES RESPECTO DE VENEZUELA ASUNTOS DE DETERMINADOS CENTROS PENITENCIARIOS DE VENEZUELA VISTO La Resoluci\u00f3n de la Corte Interamericana de Derechos Humanos en adelante la Corte Interamericana la Corte o el Tribunal de de noviembre de en los asuntos del Internado Judicial de Monagas La Pica Centro Penitenciario Regi\u00f3n Capital Yare I y Yare II C\u00e1rcel de Yare de", - "values": [ - "Medidas Provisionales" - ] - }, - { - "text": "RESOLUCI\u00d3N DE LA CORTE INTERAMERICANA DE DERECHOS HUMANOS DE DE JUNIO DE MEDIDAS PROVISIONALES ADOPTADAS POR LA CORTE INTERAMERICANA DE DERECHOS HUMANOS RESPECTO DE LA REP\u00daBLICA DE GUATEMALA CASO CARPIO NICOLLE VISTOS La resoluci\u00f3n de la Corte Interamericana de Derechos Humanos en adelante la Corte o la Corte Interamericana de de septiembre de en la cual decidi\u00f3 confirmar y hacer suyas las medidas urgentes tomadas por el Presidente mediante resoluciones de de junio y de julio de en las ", - "values": [ - "Medidas Provisionales" - ] - }, - { - "text": "RESOLUCI\u00d3N DE LA CORTE INTERAMERICANA DE DERECHOS HUMANOS DE DE JUNIO DE MEDIDAS PROVISIONALES SOLICITADAS POR LA COMISI\u00d3N INTERAMERICANA DE DERECHOS HUMANOS RESPECTO DE LA REP\u00daBLICA DE COLOMBIA CASO CLEMENTE TEHER\u00c1N Y OTROS VISTOS El escrito de de marzo de y sus anexos mediante el cual la Comisi\u00f3n Interamericana de Derechos Humanos en adelante la Comisi\u00f3n o la Comisi\u00f3n Interamericana someti\u00f3 a la Corte Interamericana de Derechos Humanos en adelante la Corte o la Corte Interamericana en ", - "values": [ - "Medidas Provisionales" - ] - }, - { - "text": "RESOLUCI\u00d3N DE LA CORTE INTERAMERICANA DE DERECHOS HUMANOS DE DE JULIO DE CASO B\u00c1MACA VEL\u00c1SQUEZ VS. GUATEMALA SUPERVISI\u00d3N DE CUMPLIMIENTO DE SENTENCIA VISTOS La Sentencia de fondo emitida en el presente caso por la Corte Interamericana de Derechos Humanos en adelante la Corte la Corte Interamericana o el Tribunal el de noviembre de La Sentencia de reparaciones dictada en el presente caso por la Corte Interamericana el de febrero de La Resoluci\u00f3n de cumplimiento de sentencia emitida en ", - "values": [ - "Supervisi\u00f3n de cumplimiento de Sentencia" - ] - }, - { - "text": " VOTO CONCORDANTE DO JUIZ DIEGO GARC\u00cdASAY\u00c1N Este \u00e9 o primeiro caso que a Corte Interamericana de Direitos Humanos conhece sobre o crucial tema dos direitos pol\u00edticos. \u00c0 significa\u00e7\u00e3o que essa circunst\u00e2ncia \u00fanica d\u00e1 ao caso \u00e9 adicionada a import\u00e2ncia que em si mesmo tem para a afirma\u00e7\u00e3o e prote\u00e7\u00e3o dos referidos direitos em situa\u00e7\u00f5es como a que aqui se apresenta. Al\u00e9m do pr\u00f3prio caso n\u00e3o cabe d\u00favida que a vig\u00eancia dos direitos pol\u00edticos e dos componentes fundamentais da democracia s\u00e3o delicados ", - "values": [ - "Voto Separado" - ] - }, - { - "text": "RESOLUCI\u00d3N DE LA CORTE INTERAMERICANA DE DERECHOS HUMANOS DE DE AGOSTO DE CASO DE LAS NI\u00d1AS YEAN Y BOSICO VS. REP\u00daBLICA DOMINICANA SUPERVISI\u00d3N DE CUMPLIMIENTO DE SENTENCIA VISTO La Sentencia de excepciones preliminares fondo reparaciones y costas en adelante la Sentencia emitida en el presente caso por la Corte Interamericana de Derechos Humanos en adelante la Corte la Corte Interamericana o el Tribunal el de septiembre de La Resoluci\u00f3n de Supervisi\u00f3n de Cumplimiento de Sentencia emitida ", - "values": [ - "Supervisi\u00f3n de cumplimiento de Sentencia" - ] - }, - { - "text": "VOTO PARCIALMENTE DISIDENTE DEL JUEZ ALBERTO P\u00c9REZ P\u00c9REZ CASO PUEBLOS KALI\u00d1A Y LOKONO VS. SURINAM SENTENCIA DE DE NOVIEMBRE DE Fondo Reparaciones y Costas He disentido con los puntos declarativos a en la medida en que en ellos se invocanindebidamente como fundamentos ciertos art\u00edculos de la Convenci\u00f3n Americana sobre Derechos Humanos presuntamente violados respectivamente los art\u00edculos y La aplicaci\u00f3n de esos art\u00edculos hecha por la Corte en este caso va en contra del sentido claro de ", - "values": [ - "Voto Separado" - ] - }, - { - "text": "RESOLUCI\u00d3N DE LA CORTE INTERAMERICANA DE DERECHOS HUMANOS DE DE AGOSTO DE CASO ANZUALDO CASTRO VS PER\u00da SUPERVISI\u00d3N DE CUMPLIMIENTO DE SENTENCIA VISTO La Sentencia de Excepci\u00f3n Preliminar Fondo Reparaciones y Costas en adelante la Sentencia dictada por la Corte Interamericana de Derechos Humanos en adelante la Corte Interamericana la Corte o el Tribunal el de septiembre de Los hechos se refieren a la desaparici\u00f3n forzada del se\u00f1or Kenneth Ney Anzualdo Castro en la que se demostr\u00f3 que lo ", - "values": [ - "Supervisi\u00f3n de cumplimiento de Sentencia" - ] - }, - { - "text": "RESOLUCI\u00d3N DE LA CORTE INTERAMERICANA DE DERECHOS HUMANOS DE DE FEBRERO DE CASO V\u00c9LEZ LOOR VS. PANAM\u00c1 SUPERVISI\u00d3N DE CUMPLIMIENTO DE SENTENCIA VISTO La Sentencia de excepciones preliminares fondo reparaciones y costas emitida el de noviembre de en adelante la Sentencia por la Corte Interamericana de Derechos Humanos en adelante la Corte Interamericana la Corte o el Tribunal mediante la cual acept\u00f3 el reconocimiento parcial de responsabilidad internacional efectuado por la Rep\u00fablica de en ", - "values": [ - "Supervisi\u00f3n de cumplimiento de Sentencia" - ] - }, - { - "text": "DISSENTING IN PART OPINION OF AD HOC JUDGE JORGE SANTISTEVAN DE NORIEGA IN THE CASE OF GARC\u00cdAASTO AND RAM\u00cdREZROJAS The duties that in my view an Ad Hoc Judge in an International Court must perform I. In exercising international judicial functions as an Ad Hoc Judge of this Court I have endeavored to bring intimate knowledge to the distinguished judges who are members of the Court on the law in force in the country whose State is on trial and on the practices that within its framework are being ", - "values": [ - "Voto Separado" - ] - }, - { - "text": "VOTO DISIDENTE DEL JUEZ FERNANDO VIDAL RAM\u00cdREZ Disiento de la decisi\u00f3n adoptada en la sentencia que desestima las excepciones preliminares opuestas por el agente del Gobierno del Per\u00fa por los fundamentos que paso a exponer. El plazo de seis meses previsto por el art\u00edculo b de la Convenci\u00f3n Americana estuvo vencido al presentarse la denuncia a la Comisi\u00f3n. La sentencia que puso fin al proceso en la jurisdicci\u00f3n militar fue dictada el de septiembre de absolviendo al ciudadano Luis Alberto ", - "values": [ - "Voto Separado" - ] - }, - { - "text": "CORTE INTERAMERICANA DE DIREITOS HUMANOS CASO DAS CRIAN\u00c7AS YEAN E BOSICO VS. REP\u00daBLICA DOMINICANA SENTEN\u00c7A DE DE SETEMBRO DE No caso das Crian\u00e7as Yean e Bosico a Corte Interamericana de Direitos Humanos doravante denominada Interamericana a Corte ou o Tribunal integrada pelos seguintes ju\u00edzes a Corte Sergio Garc\u00eda Ram\u00edrez Presidente Alirio Abreu Burelli VicePresidente Oliver Jackman Juiz Ant\u00f4nio A. Can\u00e7ado Trindade Juiz e Manuel E. Ventura Robles Juiz presentes ademais Pablo Saavedra e ", - "values": [ - "Excepciones Preliminares", - "Fondo", - "Reparaciones", - "Costas" - ] - }, - { - "text": "Resoluci\u00f3n de la Corte Interamericana de Derechos Humanos de de noviembre de Medidas Provisionales respecto de la Rep\u00fablica Bolivariana de Venezuela Asunto de la Emisora de Televisi\u00f3n Globovisi\u00f3n VISTOS La Resoluci\u00f3n dictada por el Presidente de la Corte Interamericana de Derechos Humanos en adelante la Corte o el Tribunal el de agosto de mediante la cual en consulta con todos los jueces de la Corte resolvi\u00f3 Requerir al Estado que adopte sin dilaci\u00f3n las medidas que fueran necesarias para", - "values": [ - "Medidas Provisionales" - ] - }, - { - "text": "Resoluci\u00f3n del Presidente de la Corte Interamericana de Derechos Humanos de de diciembre de Medidas Provisionales respecto de la Rep\u00fablica Bolivariana de Venezuela Asunto de la Emisora de Televisi\u00f3n Globovisi\u00f3n VISTOS La Resoluci\u00f3n dictada por el Presidente de la Corte Interamericana de Derechos Humanos en adelante la Corte o el Tribunal el de agosto de mediante la cual en consulta con todos los jueces de la Corte resolvi\u00f3 Requerir al Estado que adopte sin dilaci\u00f3n las medidas que fueran ", - "values": [ - "Medidas Provisionales" - ] - }, - { - "text": "Corte Interamericana de Derechos Humanos Caso Comerciantes Vs. Colombia Sentencia de de julio de Fondo Reparaciones y Costas En el caso Comerciantes la Corte Interamericana de Derechos Humanos en adelante la Corte la Corte Interamericana o el Tribunal integrada por los siguientes jueces Sergio Garc\u00eda Ram\u00edrez Presidente Alirio Abreu Burelli Vicepresidente Oliver Jackman Juez Ant\u00f4nio A. Can\u00e7ado Trindade Juez Cecilia Medina Quiroga Jueza Manuel E. Ventura Robles Juez y Ernesto Rey Cantor Juez ", - "values": [ - "Fondo", - "Reparaciones", - "Costas" - ] - }, - { - "text": "RESOLUCI\u00d3N DE LA CORTE INTERAMERICANA DE DERECHOS HUMANOS DE DE ABRIL DE MEDIDAS PROVISIONALES RESPECTO DE EL SALVADOR ASUNTO MEL\u00c9NDEZ QUIJANO Y OTROS VISTO Las Resoluciones de la Corte Interamericana de Derechos Humanos en adelante tambi\u00e9n la Corte Interamericana la Corte o el Tribunal emitidas los d\u00edas de mayo de de noviembre de de febrero de de agosto de y de octubre de En esta \u00faltima la Corte resolvi\u00f3 inter alia Desestimar la solicitud de ampliaci\u00f3n de medidas provisionales ", - "values": [ - "Medidas Provisionales" - ] - }, - { - "text": "Resoluci\u00f3n de la Corte Interamericana de Derechos Humanos De de Noviembre de Caso Blake Vs. Guatemala Supervisi\u00f3n de Cumplimiento de Sentencia VISTOS La Sentencia de fondo emitida en el presente caso por la Corte Interamericana de Derechos Humanos en adelante la Corte la Corte Interamericana o el Tribunal el de enero de mediante la cual dispuso en los puntos resolutivos tercero y cuarto que el Estado de Guatemala est\u00e1 obligado a poner todos los medios a su alcance para investigar los y", - "values": [ - "Supervisi\u00f3n de cumplimiento de Sentencia" - ] - }, - { - "text": "RESOLUCI\u00d3N DE LA CORTE INTERAMERICANA DE DERECHOS HUMANOS DE DE SEPTIEMBRE DE MEDIDAS PROVISIONALES SOLICITADAS POR LA COMISI\u00d3N INTERAMERICANA DE DERECHOS HUMANOS RESPECTO DE LA REP\u00daBLICA BOLIVARIANA DE VENEZUELA CASO DE MARTA COLOMINA y LILIANA VELASQUEZ VISTOS La comunicaci\u00f3n de de julio de y sus anexos mediante la cual la Comisi\u00f3n Interamericana de Derechos Humanos en adelante la Comisi\u00f3n Interamericana o la Comisi\u00f3n someti\u00f3 a la Corte Interamericana de Derechos Humanos en adelante la ", - "values": [ - "Medidas Provisionales" - ] - }, - { - "text": "Corte Interamericana de Derechos Humanos Caso Genie Lacayo Vs. Nicaragua Sentencia de de enero de Fondo Reparaciones y Costas En el caso Genie Lacayo la Corte Interamericana de Derechos Humanos integrada por los siguientes jueces H\u00e9ctor FixZamudio Presidente Hern\u00e1n Salgado Pesantes Vicepresidente Rafael Nieto Navia Juez Alejandro Montiel Arg\u00fcello Juez M\u00e1ximo Pacheco G\u00f3mez Juez presentes adem\u00e1s Manuel E. Ventura Robles Secretario y V\u00edctor M. Rodr\u00edguez Rescia Secretario adjunto interino de con", - "values": [ - "Fondo", - "Reparaciones", - "Costas" - ] - }, - { - "text": "RESOLUCI\u00d3N DE LA CORTE INTERAMERICANA DE DERECHOS HUMANOS DE DE MAYO DE CASO IBSEN C\u00c1RDENAS E IBSEN PE\u00d1A VS. BOLIVIA SUPERVISI\u00d3N DE CUMPLIMIENTO DE SENTENCIA VISTO La Sentencia de fondo reparaciones y costas en adelante la Sentencia o el Fallo dictada por la Corte Interamericana de Derechos Humanos en adelante la Corte Interamericana la Corte o el Tribunal el de septiembre de mediante la cual declar\u00f3 responsable internacionalmente al Estado Plurinacional de Bolivia en adelante el Estado o ", - "values": [ - "Supervisi\u00f3n de cumplimiento de Sentencia" - ] - }, - { - "text": "RESOLUCI\u00d3N DE LA CORTE INTERAMERICANA DE DERECHOS HUMANOS DE DE JUNIO DE MEDIDAS PROVISIONALES SOLICITADAS POR LA COMISI\u00d3N INTERAMERICANA DE DERECHOS HUMANOS RESPECTO DE LA REP\u00daBLICA DE GUATEMALA CASOS PANIAGUA MORALES Y OTROS Y V\u00c1SQUEZ Y OTROS N. VISTOS El proceso en el caso Paniagua Morales y otros en tr\u00e1mite ante la Corte Interamericana de Derechos Humanos en adelante la Corte o la Corte Interamericana y la transcripci\u00f3n de las declaraciones rendidas por los se\u00f1ores Oscar Humberto y de", - "values": [ - "Medidas Provisionales" - ] - }, - { - "text": "VOTO CONCURRENTE DEL JUEZ EDUARDO VIO GROSSI Concurro con mi voto a la Sentencia de Excepciones Preliminares Fondo Reparaciones y Costas en el Caso Cepeda Vargas Vs. Colombia emitida con esta fecha por la Corte Interamericana de Derechos Humanos CorteIDH estimando necesario expresar empero lo que sigue en lo atingente a las indemnizaciones que en ella se disponen con relaci\u00f3n al lucro cesante En el sistema interamericano de protecci\u00f3n de los derechos humanos las indemnizaciones se decretan y ", - "values": [ - "Voto Separado" - ] - }, - { - "text": "Resoluci\u00f3n de la Corte Interamericana de Derechos Humanos De de noviembre de Caso Masacre Plan de S\u00e1nchez Vs. Guatemala Supervisi\u00f3n de Cumplimiento de Sentencia VISTOS La Sentencia de Reparaciones y Costas en adelante la Sentencia dictada por la Corte Interamericana de Derechos Humanos en adelante la Corte la Corte Interamericana o el Tribunal el de noviembre de mediante la cual Dispuso Por unanimidad que El Estado debe investigar efectivamente los hechos de la Masacre Plan de S\u00e1nchez con", - "values": [ - "Supervisi\u00f3n de cumplimiento de Sentencia" - ] - }, - { - "text": "RESOLUCI\u00d3N DE LA CORTE INTERAMERICANA DE DERECHOS HUMANOS DE DE SEPTIEMBRE DE CASO JUAN HUMBERTO S\u00c1NCHEZ vs. HONDURAS CUMPLIMIENTO DE SENTENCIA VISTOS La Sentencia de excepciones preliminares fondo y reparaciones emitida el de junio de por la Corte Interamericana de Derechos Humanos en adelante la Corte la Corte Interamericana o el Tribunal mediante la cual decidi\u00f3 desestimar la excepci\u00f3n preliminar interpuesta por el Estado. Y DECLAR\u00d3 QUE el Estado viol\u00f3 el derecho a la libertad en el", - "values": [ - "Supervisi\u00f3n de cumplimiento de Sentencia" - ] - }, - { - "text": "RESOLUCI\u00d3N DE LA CORTE INTERAMERICANA DE DERECHOS HUMANOS DE DE DICIEMBRE DE MEDIDAS PROVISIONALES CASO LYSIAS FLEURY RESPECTO DE HAIT\u00cd VISTOS La Resoluci\u00f3n del Presidente de la Corte Interamericana de Derechos Humanos en adelante el Presidente de de marzo de mediante la cual decidi\u00f3 Requerir al Estado que adoptara sin dilaci\u00f3n las medidas que fueran necesarias para proteger la vida e integridad personal del se\u00f1or Lysias Fleury. Requerir al Estado que investigara los hechos que motivaron", - "values": [ - "Medidas Provisionales" - ] - }, - { - "text": "VOTO PARCIALMENTE DISIDENTE DEL JUEZ ADHOC DIEGO RODRIGUEZ PINZON EN EL CASO SALVADOR CHIRIBOGA VS. ECUADOR SENTENCIA DE MAYO DE Estoy de acuerdo con la decisi\u00f3n de la Corte en este caso con excepci\u00f3n de la violaci\u00f3n del Art\u00edculo de la Convenci\u00f3n. Debo mencionar que mi voto parcialmente disidente responde a un debate que es a mi juicio de la mayor importancia en materia de protecci\u00f3n de derechos humanos en la Am\u00e9ricas y al que se han referido con anterioridad reconocidos juristas del ", - "values": [ - "Voto Separado" - ] - }, - { - "text": "RESOLUCI\u00d3N DE LA CORTE INTERAMERICANA DE DERECHOS HUMANOS DE DE ENERO DE CASO BLAKE VS. GUATEMALA SUPERVISION DE CUMPLIMIENTO DE SENTENCIA VISTOS La Sentencia de fondo emitida en el presente caso por la Corte Interamericana de Derechos Humanos en adelante la Corte la Corte Interamericana o el Tribunal el de enero de mediante la cual declar\u00f3 que el Estado de Guatemala est\u00e1 obligado a poner todos los medios a su alcance para investigar los hechos denunciados y sancionar a los responsables ", - "values": [ - "Supervisi\u00f3n de cumplimiento de Sentencia" - ] - }, - { - "text": "RESOLUCI\u00d3N DEL PRESIDENTE DE LA CORTE INTERAMERICANA DE DERECHOS HUMANOS DE DE JULIO DE AMPLIACI\u00d3N DE LAS MEDIDAS PROVICIONALES SOLICITADAS POR LA COMISI\u00d3N INTERAMERICA DE DERECHOS HUMANOS RESPECTO LA REP\u00daBLICA DE TRINIDAD Y TOBAGO CASOS JAMES Y OTROS VISTOS La Resoluci\u00f3n de la Corte Interamericana de Derechos Humanos en adelante la Corte de de junio de en la cual decidi\u00f3 Ordenar a Trinidad y Tobago que tome todas las medidas necesarias para preservar la vida e integridad personal de los ", - "values": [ - "Medidas Provisionales" - ] - }, - { - "text": "CORTE INTERAMERICANA DE DERECHOS HUMANOS CASO FLEURY Y OTROS VS. HAIT\u00cd SENTENCIA DE DE NOVIEMBRE DE FONDO y REPARACIONES En el caso Fleury y otros la Corte Interamericana de Derechos Humanos en adelante la Corte Interamericana la Corte o el Tribunal integrada por los siguientes jueces Diego Garc\u00edaSay\u00e1n Presidente Leonardo Franco Vicepresidente Manuel E. Ventura Robles Juez Margarette May Macaulay Jueza Rhadys Abreu Blondet Jueza Alberto P\u00e9rez P\u00e9rez Juez y Eduardo Vio Grossi Juez presentes ", - "values": [ - "Fondo", - "Reparaciones" - ] - }, - { - "text": "RESOLUCI\u00d3N DE LA CORTE INTERAMERICANA DE DERECHOS HUMANOS DE DE FEBRERO DE CASO RICARDO CANESE VS. PARAGUAY CUMPLIMIENTO DE SENTENCIA VISTOS La Sentencia sobre el fondo reparaciones y costas dictada por la Corte Interamericana de Derechos Humanos en adelante la Corte o el Tribunal el de agosto de en la cual por unanimidad declar\u00f3 que El Estado viol\u00f3 el derecho a la libertad de pensamiento y de expresi\u00f3n consagrado en el art\u00edculo de la Convenci\u00f3n Americana sobre Derechos Humanos en con ", - "values": [ - "Supervisi\u00f3n de cumplimiento de Sentencia" - ] - }, - { - "text": "Corte Interamericana de Derechos Humanos Caso Cantoral Benavides Vs. Per\u00fa Sentencia de de diciembre de Reparaciones y Costas En el caso Cantoral Benavides la Corte Interamericana de Derechos Humanos en adelante la Corte la Corte Interamericana o el Tribunal integrada por los siguientes jueces Ant\u00f4nio A. Can\u00e7ado Trindade Presidente M\u00e1ximo Pacheco G\u00f3mez Vicepresidente Hern\u00e1n Salgado Pesantes Juez Alirio Abreu Burelli Juez Sergio Garc\u00eda Ram\u00edrez Juez Carlos Vicente de Roux Rengifo Juez y Fernando", - "values": [ - "Reparaciones", - "Costas" - ] - }, - { - "text": "RESOLUCI\u00d3N DE LA CORTE INTERAMERICANA DE DERECHOS HUMANOS DE DE JUNIO DE CASO PUEBLO IND\u00cdGENA KICHWA DE SARAYAKU VS. ECUADOR SUPERVISI\u00d3N DE CUMPLIMIENTO DE SENTENCIA VISTO La Sentencia de fondo y reparaciones en adelante la Sentencia dictada por la Corte Interamericana de Derechos Humanos en adelante la Corte Interamericana la Corte o el Tribunal el de junio de En ella la Corte declar\u00f3 que la Rep\u00fablica del Ecuador en adelante el Estado o Ecuador es internacionalmente responsable por la ", - "values": [ - "Supervisi\u00f3n de cumplimiento de Sentencia" - ] - }, - { - "text": "Corte Interamericana de Derechos Humanos Caso de la Panel Blanca Paniagua Morales y otros Vs. Guatemala Sentencia del de marzo de Fondo En el caso Paniagua Morales y otros la Corte Interamericana de Derechos Humanos integrada por los siguientes jueces Hern\u00e1n Salgado Pesantes Presidente Ant\u00f4nio A. Can\u00e7ado Trindade Vicepresidente H\u00e9ctor FixZamudio Juez Alejandro Montiel Arg\u00fcello Juez M\u00e1ximo Pacheco G\u00f3mez Juez Alirio Abreu Burelli Juez y Edgar E. Larraondo Salguero Juez ad hoc presentes adem\u00e1s ", - "values": [ - "Fondo" - ] - }, - { - "text": "Corte Interamericana de Derechos Humanos Caso El Amparo Vs. Venezuela Sentencia de de enero de Fondo En el caso El Amparo la Corte Interamericana de Derechos Humanos integrada por los siguientes jueces H\u00e9ctor FixZamudio Presidente Hern\u00e1n Salgado Pesantes Vicepresidente Alejandro Montiel Arg\u00fcello Juez M\u00e1ximo Pacheco G\u00f3mez Juez Ant\u00f4nio A. Can\u00e7ado Trindade Juez presentes adem\u00e1s Manuel E. Ventura Robles Secretario y Ana Mar\u00eda Reina Secretaria adjunta de acuerdo con los art\u00edculos y del de la ", - "values": [ - "Fondo" - ] - }, - { - "text": "RESOLUCI\u00d3N DE LA PRESIDENTA DE LA CORTE INTERAMERICANA DE DERECHOS HUMANOS DE DE MARZO DE CASO BAYARRI VS. ARGENTINA VISTOS El escrito de demanda Derechos Humanos en adelante la Corte Interamericana de Interamericana la Corte o el un testimonio y dos peritajes. presentado por la Comisi\u00f3n Interamericana de la Comisi\u00f3n Interamericana o la Comisi\u00f3n ante Derechos Humanos en adelante la Corte Tribunal el de julio de en el cual ofreci\u00f3 El escrito de solicitudes argumentos y pruebas en adelante ", - "values": [ - "Otros" - ] - }, - { - "text": "CORTE INTERAMERICANA DE DIREITOS HUMANOS CASO BARRETO LEIVA VS. VENEZUELA SENTEN\u00c7A DE DE NOVEMBRO DE M\u00e9rito Repara\u00e7\u00f5es e Custas No caso Barreto Leiva A Corte Interamericana de Direitos Humanos doravante denominada Interamericana a Corte ou o Tribunal integrada pelos seguintes ju\u00edzes a Corte Diego Garc\u00eda Say\u00e1n Presidente em exerc\u00edcio Sergio Garc\u00eda Ram\u00edrez Juiz Manuel E. Ventura Robles Juiz Margarette May Macaulay Ju\u00edza e Rhadys Abreu Blondet Ju\u00edza presentes ademais Pablo Saavedra Alessandri e", - "values": [ - "Fondo", - "Reparaciones", - "Costas" - ] - }, - { - "text": "VOTO INDIVIDUAL DEL JUEZ EDUARDO VIO GROSSI CASO GARC\u00cdA Y FAMILIARES VS. GUATEMALA SENTENCIA DE DE NOVIEMBRE DE Fondo Reparaciones y Costas DE LA CORTE INTERAMERICANA DE DERECHOS HUMANOS Emito el presente voto individual con relaci\u00f3n a la Sentencia dictada en autos en adelante la Sentencia a los efectos de dejar expresa constancia de que si bien la comparto no concuerdo empero con que la Corte Interamericana de Derechos Humanos en adelante la Corte haya estimado prudente acoger la solicitud ", - "values": [ - "Voto Separado" - ] - }, - { - "text": "RESOLUCI\u00d3N DE LA CORTE INTERAMERICANA DE DERECHOS HUMANOS DE DE OCTUBRE DE CASO KAWAS FERN\u00c1NDEZ VS. HONDURAS SUPERVISI\u00d3N DE CUMPLIMIENTO DE SENTENCIA VISTO La Sentencia de fondo reparaciones y costas en adelante la Sentencia dictada por la Corte Interamericana de Derechos Humanos en adelante la Corte Interamericana la Corte o el Tribunal el de abril de en el presente caso. La Resoluci\u00f3n de Supervisi\u00f3n de Cumplimiento de la Sentencia emitida por el Tribunal el de febrero de mediante la ", - "values": [ - "Supervisi\u00f3n de cumplimiento de Sentencia" - ] - }, - { - "text": "Corte Interamericana de Derechos Humanos Caso del Tribunal Constitucional Vs. Per\u00fa Sentencia de septiembre de Competencia En el caso del Tribunal Constitucional la Corte Interamericana de Derechos Humanos en adelante la Corte la Corte Interamericana o el Tribunal integrada por los siguientes jueces Ant\u00f4nio A. Can\u00e7ado Trindade Presidente M\u00e1ximo Pacheco G\u00f3mez Vicepresidente Oliver Jackman Juez Alirio Abreu Burelli Juez Sergio Garc\u00eda Ram\u00edrez Juez y Carlos Vicente de Roux Rengifo Juez presentes ", - "values": [ - "Competencia" - ] - }, - { - "text": "Corte Interamericana de Derechos Humanos Caso Cantoral Benavides Vs. Per\u00fa Sentencia de de septiembre de Excepciones Preliminares En el caso Cantoral Benavides la Corte Interamericana de Derechos Humanos integrada por los siguientes jueces Hern\u00e1n Salgado Pesantes Presidente Ant\u00f4nio A. Can\u00e7ado Trindade Vicepresidente M\u00e1ximo Pacheco G\u00f3mez Juez Oliver Jackman Juez Sergio Garc\u00eda Ram\u00edrez Juez Carlos Vicente de Roux Rengifo Juez Fernando Vidal Ram\u00edrez Juez ad hoc presentes adem\u00e1s Manuel E. Ventura ", - "values": [ - "Excepciones Preliminares" - ] - }, - { - "text": "RESOLUCI\u00d3N DE LA CORTE INTERAMERICANA DE DERECHOS HUMANOS DEL DE DICIEMBRE DE MEDIDAS PROVISIONALES SOLICITADAS POR LA COMISI\u00d3N INTERAMERICANA DE DERECHOS HUMANOS RESPECTO DE COLOMBIA CASO CABALLERO DELGADO Y SANTANA La Corte Interamericana de Derechos Humanos integrada de la siguiente manera H\u00e9ctor FixZamudio Presidente ad hoc Rafael Nieto Navia Juez Alejandro Montiel Arg\u00fcello Juez M\u00e1ximo Pacheco G\u00f3mez Juez Hern\u00e1n Salgado Pesantes Juez presentes adem\u00e1s Manuel E. Ventura Robles Secretario Ana", - "values": [ - "Medidas Provisionales" - ] - }, - { - "text": "RESOLUCI\u00d3N DEL PRESIDENTE EN EJERCICIO PARA EL PRESENTE CASO DE LA CORTE INTERAMERICANA DE DERECHOS HUMANOS DE DE SEPTIEMBRE DE CASO ABRILL ALOSILLA Y OTROS VS. PER\u00da VISTO El escrito de demanda presentado por la Comisi\u00f3n Interamericana de Derechos Humanos en adelante la Comisi\u00f3n Interamericana o la Comisi\u00f3n ante la Corte Interamericana de Derechos Humanos en adelante la Corte Interamericana la Corte o el Tribunal el de enero de en el que ofreci\u00f3 el dictamen de un perito. El escrito de y", - "values": [ - "Otros" - ] - }, - { - "text": "VOTO PARCIALMENTE DISIDENTE DEL JUEZ ALBERTO PEREZ PEREZ SENTENCIA DE LA CORTE INTERAMERICANA DE DERECHOS HUMANOS CASO ATALA RIFFO Y NI\u00d1AS VS. CHILE DE DE FEBRERO DE He votado negativamente el punto resolutivo seg\u00fan el cual el Estado es responsable de la violaci\u00f3n de los art\u00edculos y de la Convenci\u00f3n Americana pues entiendo que solamente se deb\u00eda haber mencionado como violado al art\u00edculo porque ante los hechos del presente caso I es suficiente declarar una violaci\u00f3n del art\u00edculo y II no ", - "values": [ - "Voto Separado" - ] - }, - { - "text": "RESOLUCI\u00d3N DE LA CORTE INTERAMERICANA DE DERECHOS HUMANOS DE DE OCTUBRE DE MEDIDAS PROVISIONALES RESPECTO DE EL SALVADOR ASUNTO MEL\u00c9NDEZ QUIJANO Y OTROS VISTO Las Resoluciones de la Corte Interamericana de Derechos Humanos en adelante tambi\u00e9n la Corte Interamericana la Corte o el Tribunal emitidas el de mayo de de noviembre de de febrero de y de agosto de En esta \u00faltima la Corte resolvi\u00f3 inter alia Levantar las medidas provisionales ordenadas por la Corte Interamericana de Derechos", - "values": [ - "Medidas Provisionales" - ] - }, - { - "text": "RESOLUCI\u00d3N DE LA CORTE INTERAMERICANA DE DERECHOS HUMANOS DE DE NOVIEMBRE DE AMPLIACI\u00d3N DE MEDIDAS PROVISIONALES RESPECTO DEL ESTADO DEL PER\u00da CASO IVCHER BRONSTEIN VISTOS La Resoluci\u00f3n de la Corte Interamericana de Derechos Humanos en adelante la Corte o la Corte Interamericana de de noviembre de en la que resolvi\u00f3 Requerir al Estado del Per\u00fa que adopte sin dilaci\u00f3n cuantas medidas sean necesarias para proteger la integridad f\u00edsica ps\u00edquica y moral y el derecho a las garant\u00edas judiciales ", - "values": [ - "Medidas Provisionales" - ] - }, - { - "text": "VOTO DISIDENTE DEL JUEZ ORIHUELA IBERICO I. II. En lo que concierne a mi voto disidente sobre la sentencia de de septiembre de sobre Reparaciones del Caso Neira Alegr\u00eda y otros en lo que se refiere al punto primero de la parte resolutiva de la misma debo expresar que mi voto se limita a cuestionar el monto de la indemnizaci\u00f3n ordenada de US en favor de los familiares de las v\u00edctimas a que se refiere este caso por cuanto esta sentencia debe cumplir necesariamente con fijar una indemnizaci\u00f3n ", - "values": [ - "Voto Separado" - ] - }, - { - "text": "RESOLUCI\u00d3N DE LA CORTE INTERAMERICANA DE DERECHOS HUMANOS DE DE NOVIEMBRE DE CASO TRUJILLO OROZA VS. BOLIVIA SUPERVISI\u00d3N DE CUMPLIMIENTO DE SENTENCIA VISTO La Sentencia de fondo dictada por la Corte Interamericana de Derechos Humanos en adelante la Corte la Corte Interamericana o el Tribunal el de enero de La Sentencia de reparaciones y costas dictada por la Corte Interamericana el de febrero de Las Resoluciones dictadas por la Corte el de noviembre de y de septiembre de La por ", - "values": [ - "Supervisi\u00f3n de cumplimiento de Sentencia" - ] - }, - { - "text": "VOTO RAZONADO DEL JUEZ AA. CAN\u00c7ADO TRINDADE Voto a favor de la adopci\u00f3n por la Corte Interamericana de Derechos Humanos de la presente Sentencia sobre Excepciones Preliminares en el caso Hilaire versus Trinidad y Tobago que a mi juicio representa un aporte significativo del Derecho Internacional de los Derechos Humanos a la evoluci\u00f3n de un aspecto espec\u00edfico del Derecho Internacional contempor\u00e1neo a saber el atinente a la jurisdicci\u00f3n internacional obligatoria basada en la aceptaci\u00f3n de la ", - "values": [ - "Voto Separado" - ] - }, - { - "text": "VOTO CONCURRENTE DEL JUEZ EDUARDO VIO GROSSI CASO TORRES MILLACURA Y OTROS VS. ARGENTINA DE FECHA DE AGOSTO DE Fondo Reparaciones y Costas Concurro con mi voto a la aprobaci\u00f3n de la Sentencia del r\u00f3tulo dejando constancia que lo hago en el entendido que lo expresado en los p\u00e1rrafos y de la misma en nada contradicen la posici\u00f3n que expuse tanto en los Votos Disidentes del mismo tenor que emit\u00ed el de julio de respecto de la Resoluciones de la Corte relativas a Medidas Provisionales respecto", - "values": [ - "Voto Separado" - ] - }, - { - "text": "RESOLUCI\u00d3N DE LA CORTE INTERAMERICANA DE DERECHOS HUMANOS DEL DE SEPTIEMBRE DE MEDIDAS PROVISIONALES SOLICITADAS POR LA COMISI\u00d3N INTERAMERICANA DE DERECHOS HUMANOS RESPECTO DE LA REPUBLICA DE GUATEMALA CASO BLAKE La Corte Interamericana de Derechos Humanos integrada de la siguiente manera H\u00e9ctor FixZamudio Presidente Hern\u00e1n Salgado Pesantes Vicepresidente Alejandro Montiel Arg\u00fcello Juez M\u00e1ximo Pacheco G\u00f3mez Juez Oliver Jackman Juez Alirio Abreu Burelli Juez Ant\u00f4nio A. Can\u00e7ado Trindade Juez ", - "values": [ - "Medidas Provisionales" - ] - }, - { - "text": "RESOLUCI\u00d3N DE LA CORTE INTERAMERICANA DE DERECHOS HUMANOS DE DE ABRIL DE MEDIDAS PROVISIONALES RESPECTO DE PARAGUAY ASUNTO LM VISTO La Resoluci\u00f3n dictada por la Corte Interamericana de Derechos Humanos en adelante la Corte Interamericana la Corte o el Tribunal el de julio de mediante la cual el Tribunal resolvi\u00f3 inter alia Requerir al Estado del Paraguay que adopte de forma inmediata las medidas que sean necesarias adecuadas y efectivas para proteger los derechos a la integridad personal ", - "values": [ - "Medidas Provisionales" - ] - }, - { - "text": "VOTO CONCURRENTE DEL JUEZ AA. CAN\u00c7ADO TRINDADE Voto a favor de la adopci\u00f3n de la presente Sentencia sobre el fondo y reparaciones en el caso de los Cinco Pensionistas versus Per\u00fa en la cual la Corte Interamericana de Derechos Humanos primeramente afirma el car\u00e1cter de derecho adquirido del derecho a la pensi\u00f3n subsumido en el derecho a la propiedad privada bajo el art\u00edculo de la Convenci\u00f3n Americana sobre Derechos Humanos y vinculado a la perenne ineludible e irreductible funci\u00f3n social del ", - "values": [ - "Voto Separado" - ] - }, - { - "text": "RESOLUCI\u00d3N DE LA CORTE INTERAMERICANA DE DERECHOS HUMANOS DE DE NOVIEMBRE DE CASO CASTILLO P\u00c1EZ VS. PER\u00da CUMPLIMIENTO DE SENTENCIA VISTOS La Sentencia de fondo dictada por la Corte Interamericana de Derechos Humanos en adelante la Corte la Corte Interamericana o el Tribunal el de noviembre de en la cual por una unanimidad dispuso Que el Estado del Per\u00fa viol\u00f3 en perjuicio de Ernesto Rafael Castillo P\u00e1ez el derecho a la libertad personal reconocido en el art\u00edculo de la Convenci\u00f3n sobre ", - "values": [ - "Supervisi\u00f3n de cumplimiento de Sentencia" - ] - }, - { - "text": "RESOLUCI\u00d3N DE LA CORTE INTERAMERICANA DE DERECHOS HUMANOS DE DE AGOSTO DE MEDIDAS PROVISIONALES RESPECTO DE VENEZUELA ASUNTO MARTA COLOMINA VISTO Las Resoluciones dictadas por la Corte Interamericana de Derechos Humanos en adelante tambi\u00e9n la Corte o el Tribunal entre el de septiembre de y el de julio de en las cuales orden\u00f3 a la Rep\u00fablica Bolivariana de Venezuela en adelante el Estado o Venezuela que adoptara las medidas que fueran necesarias para proteger la vida integridad personal y ", - "values": [ - "Medidas Provisionales" - ] - }, - { - "text": "RESOLUCI\u00d3N DE LA CORTE INTERAMERICANA DE DERECHOS HUMANOS DE DE NOVIEMBRE DE MEDIDAS PROVISIONALES SOLICITADAS POR LA COMISI\u00d3N INTERAMERICANA DE DERECHOS HUMANOS RESPECTO DE LOS ESTADOS UNIDOS MEXICANOS CASO DEL CENTRO DE DERECHOS HUMANOS MIGUEL AGUST\u00cdN PRO JU\u00c1REZ Y OTROS VISTOS El escrito de de octubre de y sus anexos mediante el cual la Comisi\u00f3n Interamericana de Derechos Humanos en adelante la Comisi\u00f3n o Comisi\u00f3n Interamericana someti\u00f3 a la Corte Interamericana de Derechos Humanos en ", - "values": [ - "Medidas Provisionales" - ] - }, - { - "text": "RESOLUCI\u00d3N DE LA CORTE INTERAMERICANA DE DERECHOS HUMANOS DE DE SEPTIEMBRE DE MEDIDAS PROVISIONALES RESPECTO DEL PER\u00da CASO DE LOS HERMANOS G\u00d3MEZ PAQUIYAURI VISTO La Resoluci\u00f3n de la Corte Interamericana de Derechos Humanos en adelante la Corte la Corte Interamericana o el Tribunal de de mayo de mediante la cual resolvi\u00f3 inter alia Requerir al Estado que adoptara sin dilaci\u00f3n las medidas necesarias para proteger la vida e integridad personal de los miembros de la familia G\u00f3mez Paquiyauri ", - "values": [ - "Medidas Provisionales" - ] - }, - { - "text": "Corte Interamericana de Derechos Humanos Caso Garrido y Baigorria Vs. Argentina Sentencia de de agosto de Reparaciones Y Costas En el caso Garrido y Baigorria la Corte Interamericana de Derechos Humanos integrada por los jueces siguientes Hern\u00e1n Salgado Pesantes Presidente Ant\u00f4nio A. Can\u00e7ado Trindade Vicepresidente M\u00e1ximo Pacheco G\u00f3mez Juez Oliver Jackman Juez Alirio Abreu Burelli Juez Sergio Garc\u00eda Ram\u00edrez Juez Carlos Vicente de Roux Rengifo Juez Julio A. Barberis Juez ad hoc presentes E. ", - "values": [ - "Reparaciones", - "Costas" - ] - }, - { - "text": "RESOLUCI\u00d3N DEL PRESIDENTE DE LA CORTE INTERAMERICANA DE DERECHOS HUMANOS DE DE DICIEMBRE DE SOLICITUD DE MEDIDAS PROVISIONALES PRESENTADAS POR EL REPRESENTANTE DE LA V\u00cdCTIMA CASO CESTI HURTADO RESPECTO DEL PER\u00da VISTO La sentencia de fondo emitida por la Corte Interamericana de Derechos Humanos en adelante la Corte la Corte Interamericana o el Tribunal el de septiembre de en la cual declar\u00f3 que el Estado peruano viol\u00f3 en perjuicio del se\u00f1or Gustavo Adolfo Cesti Hurtado los art\u00edculos y de", - "values": [ - "Medidas Provisionales" - ] - }, - { - "text": "RESOLUCI\u00d3N DE LA CORTE INTERAMERICANA DE DERECHOS HUMANOS DE DE FEBRERO DE CASO MASACRE PLAN DE S\u00c1NCHEZ VS. GUATEMALA SUPERVISI\u00d3N DE CUMPLIMIENTO DE SENTENCIA VISTOS La Sentencia de fondo dictada por la Corte Interamericana de Derechos Humanos en adelante la Corte Interamericana la Corte o el Tribunal el de abril de La Sentencia de reparaciones y costas en adelante la Sentencia dictada por la Corte Interamericana el de noviembre de Las Resoluciones de Supervisi\u00f3n de Cumplimiento de de", - "values": [ - "Supervisi\u00f3n de cumplimiento de Sentencia" - ] - }, - { - "text": "RESOLUCI\u00d3N DE LA CORTE INTERAMERICANA DE DERECHOS HUMANOS DE DE MAYO DE MEDIDAS PROVISIONALES RESPECTO DE EL SALVADOR ASUNTO B. VISTO El escrito de la Comisi\u00f3n Interamericana de Derechos Humanos en adelante la Comisi\u00f3n Interamericana o la Comisi\u00f3n de de mayo de y sus anexos mediante los cuales someti\u00f3 a la Corte Interamericana de Derechos Humanos en adelante la Corte Interamericana la Corte o el Tribunal una solicitud de medidas provisionales de conformidad con los art\u00edculos de la ", - "values": [ - "Medidas Provisionales" - ] - }, - { - "text": "Resoluci\u00f3n de la Presidenta de la Corte Interamericana de Derechos Humanos de de diciembre de Medidas Provisionales Respecto de El Salvador Asunto Adri\u00e1n Mel\u00e9ndez Quijano y Otros Visto La Resoluci\u00f3n de la Corte Interamericana de Derechos Humanos en adelante la Corte Interamericana la Corte o el Tribunal de de mayo de mediante la cual ratific\u00f3 la Resoluci\u00f3n de la Presidencia de de marzo de y ratific\u00f3 las medidas adoptadas a favor de Adri\u00e1n Mel\u00e9ndez Quijano Marina Elizabeth Garc\u00eda de ", - "values": [ - "Medidas Provisionales" - ] - }, - { - "text": "RESOLUCI\u00d3N DE LA CORTE INTERAMERICANA DE DERECHOS HUMANOS DE DE JULIO DE MEDIDAS PROVISIONALES RESPECTO DE PARAGUAY ASUNTO LM VISTO El escrito de la Comisi\u00f3n Interamericana de Derechos Humanos en adelante la Comisi\u00f3n Interamericana o la Comisi\u00f3n de de mayo de y sus anexos mediante los cuales someti\u00f3 a la Corte Interamericana de Derechos Humanos en adelante la Corte Interamericana la Corte o el Tribunal una solicitud de medidas provisionales de conformidad con los art\u00edculos de la sobre ", - "values": [ - "Medidas Provisionales" - ] - }, - { - "text": "VOTO RAZONADO CONCURRENTE DEL JUEZ JACKMAN Estoy en total concordancia con la decisi\u00f3n de la Corte en el presente caso con lo ordenado en los puntos dispositivos y con las rationes decidendi de la sentencia como un todo. Sin embargo muy a mi pesar debo dejar constancia formal de que no puedo unirme con plena convicci\u00f3n al entusiasmo con el cual la Corte parece haber acogido en los p\u00e1rrafos a la noci\u00f3n del denominado proyecto de vida concepto que es nuevo en la jurisprudencia de esta Corte y ", - "values": [ - "Voto Separado" - ] - }, - { - "text": "CORTE INTERAMERICANA DE DERECHOS HUMANOS CASO TIU TOJ\u00cdN VS. GUATEMALA SENTENCIA DE DE NOVIEMBRE DE Fondo Reparaciones y Costas En el caso Tiu Toj\u00edn la Corte Interamericana de Derechos Humanos en adelante la Corte Interamericana la Corte o el Tribunal integrada por los siguientes jueces Cecilia Medina Quiroga Presidenta Diego Garc\u00edaSay\u00e1n Vicepresidente Sergio Garc\u00eda Ram\u00edrez Juez Manuel E. Ventura Robles Juez Leonardo A. Franco Juez Margarette May Macaulay Jueza Rhadys Abreu Blondet Jueza y ", - "values": [ - "Fondo", - "Reparaciones", - "Costas" - ] - }, - { - "text": "Corte Interamericana de Derechos Humanos Caso B\u00e1maca Vel\u00e1squez Vs. Guatemala Sentencia de de febrero de Reparaciones y Costas En el caso B\u00e1maca Vel\u00e1squez la Corte Interamericana de Derechos Humanos en adelante la Corte la Corte Interamericana o el Tribunal integrada por los siguientes jueces Ant\u00f4nio A. Can\u00e7ado Trindade Presidente Alirio Abreu Burelli Vicepresidente Hern\u00e1n Salgado Pesantes Juez Oliver Jackman Juez Sergio Garc\u00eda Ram\u00edrez Juez y Carlos Vicente de Roux Rengifo Juez presentes E. ", - "values": [ - "Reparaciones", - "Costas" - ] - }, - { - "text": "Resoluci\u00f3n del Presidente de la Corte Interamericana de Derechos Humanos De de Diciembre de Caso Cantoral Benavides Vs. Per\u00fa Supervisi\u00f3n de Cumplimiento de Sentencia VISTOS La Sentencia de fondo dictada el de agosto de en cuyos puntos resolutivos d\u00e9cimo segundo y d\u00e9cimo tercero la Corte decidi\u00f3 que el Estado debe ordenar una investigaci\u00f3n para determinar las personas responsables de las violaciones de los derechos humanos a que se ha hecho referencia en esta sentencia y sancionarlos. ", - "values": [ - "Supervisi\u00f3n de cumplimiento de Sentencia" - ] - }, - { - "text": "RESOLUCI\u00d3N DE LA CORTE INTERAMERICANA DE DERECHOS HUMANOS DE DE SEPTIEMBRE DE SOLICITUD DE MEDIDAS PROVISIONALES RESPECTO DE LA REP\u00daBLICA DE GUATEMALA CASO GARC\u00cdA Y FAMILIARES VISTO El escrito de los representantes de las presuntas v\u00edctimas en adelante los representantes de de julio de y sus anexos mediante los cuales sometieron a la Corte Interamericana de Derechos Humanos en adelante la Corte Interamericana la Corte o el Tribunal una solicitud de medidas provisionales de conformidad ", - "values": [ - "Medidas Provisionales" - ] - }, - { - "text": "RESOLUCI\u00d3N DE LA CORTE INTERAMERICANA DE DERECHOS HUMANOS DE DE AGOSTO DE MEDIDAS PROVISIONALES RESPECTO DE LA REP\u00daBLICA DE COSTA RICA CASO DEL PERI\u00d3DICO LA NACI\u00d3N VISTOS Los hechos enunciados en los vistos de la Resoluci\u00f3n de la Corte Interamericana de Derechos Humanos en adelante la Corte la Corte Interamericana o el Tribunal de de diciembre de La Resoluci\u00f3n de la Corte de de septiembre de mediante la cual decidi\u00f3 Requerir al Estado de Costa Rica que adoptara sin dilaci\u00f3n cuantas ", - "values": [ - "Medidas Provisionales" - ] - }, - { - "text": "Corte Interamericana de Derechos Humanos Caso Hilaire Vs. Trinidad y Tobago Sentencia de de septiembre de Excepciones Preliminares En el caso Hilaire la Corte Interamericana de Derechos Humanos en adelante la Corte Interamericana la Corte o el Tribunal integrada por los siguientes jueces Ant\u00f4nio A. Can\u00e7ado Trindade Presidente M\u00e1ximo Pacheco G\u00f3mez Vicepresidente Hern\u00e1n Salgado Pesantes Juez Alirio Abreu Burelli Juez Sergio Garc\u00eda Ram\u00edrez Juez y Carlos Vicente de Roux Rengifo Juez presentes E.", - "values": [ - "Excepciones Preliminares" - ] - }, - { - "text": "RESOLUCI\u00d3N DE LA CORTE INTERAMERICANA DE DERECHOS HUMANOS DE DE SEPTIEMBRE DE MEDIDAS PROVISIONALES RESPECTO DE REP\u00daBLICA DOMINICANA ASUNTO HAITIANOS Y DOMINICANOS DE ORIGEN HAITIANO EN LA REP\u00daBLICA DOMINICANA VISTO El escrito de la Comisi\u00f3n Interamericana de Derechos Humanos en adelante la Comisi\u00f3n o la Comisi\u00f3n Interamericana de de mayo de y sus anexos mediante los cuales someti\u00f3 a la Corte Interamericana de Derechos Humanos en adelante la Corte Interamericana o la Corte o el Tribunal ", - "values": [ - "Medidas Provisionales" - ] - }, - { - "text": "Corte Interamericana de Direitos Humanos Caso Barrios Altos Vs. Peru Senten\u00e7a de de mar\u00e7o de M\u00e9rito No caso Barrios Altos a Corte Interamericana de Direitos Humanos doravante a Corte Interamericana a Corte ou o Tribunal integrada pelos seguintes ju\u00edzes Ant\u00f4nio A. Can\u00e7ado Trindade Presidente M\u00e1ximo Pacheco G\u00f3mez VicePresidente Hern\u00e1n Salgado Pesantes Juiz Alirio Abreu Burelli Juiz Sergio Garc\u00eda Ram\u00edrez Juiz e Carlos Vicente de Roux Rengifo Juiz presentes ademais Manuel E. Ventura Robles e ", - "values": [ - "Fondo" - ] - }, - { - "text": "RESOLUCI\u00d3N DE LA CORTE INTERAMERICANA DE DERECHOS HUMANOS DE DE SEPTIEMBRE DE MEDIDAS PROVISIONALES RESPECTO DE GUATEMALA CASO RAXCAC\u00d3 REYES Y OTROS VISTO La Resoluci\u00f3n de la Corte Interamericana de Derechos Humanos en adelante la Corte Interamericana la Corte o el Tribunal dictada el de agosto de mediante la cual resolvi\u00f3 inter alia Requerir al Estado que adopte sin dilaci\u00f3n las medidas necesarias para proteger la vida de Ronald Ernesto Raxcac\u00f3 Reyes Hugo Humberto Ruiz Fuentes Bernardino", - "values": [ - "Medidas Provisionales" - ] - }, - { - "text": "RESOLUCI\u00d3N DEL PRESIDENTE DE LA CORTE INTERAMERICANA DE DERECHOS HUMANOS DE FEBRERO DE SUPERVISI\u00d3N DE CUMPLIMIENTO DE LAS MEDIDAS DE REPARACI\u00d3N SOBRE ATENCI\u00d3N M\u00c9DICA Y PSICOL\u00d3GICA ORDENADAS EN NUEVE CASOS COLOMBIANOS CONVOCATORIA DE AUDIENCIA PRIVADA VISTO La resoluci\u00f3n de convocatoria de audiencia en el marco de la supervisi\u00f3n de cumplimiento emitida por la Corte Interamericana de Derechos Humanos en adelante la Corte la Corte Interamericana o el Tribunal el de abril de en relaci\u00f3n con ", - "values": [ - "Supervisi\u00f3n de cumplimiento de Sentencia" - ] - }, - { - "text": "RESOLUCI\u00d3N DE LA CORTE INTERAMERICANA DE DERECHOS HUMANOS DE DE JUNIO DE MEDIDAS PROVISIONALES RESPECTO DE HONDURAS CASO L\u00d3PEZ \u00c1LVAREZ VISTOS La Resoluci\u00f3n del Presidente de la Corte Interamericana de Derechos Humanos en adelante la Corte la Corte Interamericana o el Tribunal de de mayo de mediante la cual resolvi\u00f3 inter alia Convocar a la Comisi\u00f3n Interamericana de Derechos Humanos a los representantes de la presunta v\u00edctima y sus familiares y al Estado a una audiencia p\u00fablica que se en", - "values": [ - "Medidas Provisionales" - ] - }, - { - "text": "RESOLUCI\u00d3N DE LA CORTE INTERAMERICANA DE DERECHOS HUMANOS DE DE JULIO DE CASO CASTILLO PETRUZZI Y OTROS VS. PER\u00da SUPERVISI\u00d3N DE CUMPLIMIENTO DE SENTENCIA VISTO La Sentencia de fondo reparaciones y costas en adelante la Sentencia dictada por la Corte Interamericana de Derechos Humanos en adelante la Corte Interamericana la Corte o el Tribunal el de mayo de mediante la cual dispuso por unanimidad que el Estado deb\u00eda declarar la invalidez por ser incompatible con la Convenci\u00f3n Americana del", - "values": [ - "Supervisi\u00f3n de cumplimiento de Sentencia" - ] - }, - { - "text": "RESOLUCI\u00d3N DE LA CORTE INTERAMERICANA DE DERECHOS HUMANOS DE DE FEBRERO DE MEDIDAS PROVISIONALES LILIANA ORTEGA Y OTRAS vs. VENEZUELA VISTOS La Resoluci\u00f3n de la Corte Interamericana de Derechos Humanos en adelante la Corte Interamericana la Corte o el Tribunal de de noviembre de relativa a las Medidas Provisionales solicitadas por la Comisi\u00f3n Interamericana de Derechos Humanos en adelante la Comisi\u00f3n Interamericana o la Comisi\u00f3n en favor de las se\u00f1oras Liliana Ortega Yris Medina Cova ", - "values": [ - "Medidas Provisionales" - ] - }, - { - "text": "VOTO RAZONADO DEL JUEZ AA. CAN\u00c7ADO TRINDADE He concurrido con mi voto en la adopci\u00f3n de la presente Sentencia de la Corte Interamericana de Derechos Humanos en el caso de Caesar versus Trinidad y Tobago. Dada la relevancia legal de los temas tratados por la Corte en su decisi\u00f3n as\u00ed como los subyacentes al mismo y referentes al presente caso me siento obligado a dejar constancia de mis reflexiones personales sobre los mismos como los fundamentos para mi posici\u00f3n sobre el tema. Me referir\u00e9 en el", - "values": [ - "Voto Separado" - ] - }, - { - "text": "Corte Interamericana de Derechos Humanos Caso Cantos Vs. Argentina Sentencia de de noviembre de Fondo Reparaciones y Costas En el caso Cantos la Corte Interamericana de Derechos Humanos en adelante la Corte la Corte Interamericana o el Tribunal integrada de la siguiente manera Ant\u00f4nio A. Can\u00e7ado Trindade Presidente Alirio Abreu Burelli Vicepresidente M\u00e1ximo Pacheco G\u00f3mez Juez Hern\u00e1n Salgado Pesantes Juez Oliver Jackman Juez Sergio Garc\u00eda Ram\u00edrez Juez Carlos Vicente de Roux Rengifo Juez y A.", - "values": [ - "Fondo", - "Reparaciones", - "Costas" - ] - }, - { - "text": "Corte Interamericana de Derechos Humanos Caso Vel\u00e1squez Rodr\u00edguez Vs. Honduras Sentencia de de agosto de Interpretaci\u00f3n de la Sentencia de Reparaciones y Costas En el caso Vel\u00e1squez Rodr\u00edguez la Corte Interamericana de Derechos Humanos integrado en observancia del art\u00edculo de la Convenci\u00f3n Americana sobre Derechos Humanos por los siguientes jueces H\u00e9ctor FixZamudio Presidente Rodolfo E. Piza E Juez Pedro Nikken Juez Rafael Nieto Navia Juez Rigoberto Espinal Ir\u00edas Juez ad hoc presente adem\u00e1s ", - "values": [ - "Interpretaci\u00f3n" - ] - }, - { - "text": "Resoluci\u00f3n de la Corte Interamericana de Derechos Humanos De de febrero de Caso Balde\u00f3n Garc\u00eda Vs. Per\u00fa Supervisi\u00f3n de Cumplimiento de Sentencia VISTOS La Sentencia de fondo reparaciones y costas en adelante la Sentencia emitida por la Corte Interamericana de Derechos Humanos en adelante la Corte la Corte Interamericana o el Tribunal el de abril de mediante la cual DECIDI\u00d3 Por unanimidad Admitir el reconocimiento de responsabilidad internacional efectuado por el Estado por la violaci\u00f3n de", - "values": [ - "Supervisi\u00f3n de cumplimiento de Sentencia" - ] - }, - { - "text": "RESOLUCI\u00d3N DEL PRESIDENTE DE LA CORTE INTERAMERICANA DE DERECHOS HUMANOS DE DE MARZO DE MEDIDAS PROVISIONALES SOLICITADAS POR LA COMISI\u00d3N INTERAMERICANA DE DERECHOS HUMANOS RESPECTO DEL ESTADO DE COLOMBIA CASO CLEMENTE TEHER\u00c1N Y OTROS VISTOS El escrito de de marzo de y sus anexos mediante el cual la Comisi\u00f3n Interamericana de Derechos Humanos en adelante la Comisi\u00f3n o la Comisi\u00f3n Interamericana someti\u00f3 a la Corte Interamericana de Derechos Humanos en adelante la Corte o la Corte en virtud", - "values": [ - "Medidas Provisionales" - ] - }, - { - "text": "RESOLUCI\u00d3N DE LA PRESIDENTA DE LA CORTE INTERAMERICANA DE DERECHOS HUMANOS DE DE DICIEMBRE DE SOLICITUD DE MEDIDAS PROVISIONALES PRESENTADA POR LA COMISI\u00d3N INTERAMERICANA DE DERECHOS HUMANOS RESPECTO DE VENEZUELA ASUNTO NATERA BALBOA VISTO El escrito de la Comisi\u00f3n Interamericana de Derechos Humanos en adelante la Comisi\u00f3n Interamericana o la Comisi\u00f3n de de noviembre de y sus anexos mediante los cuales someti\u00f3 a la Corte Interamericana de Derechos Humanos en adelante la Corte la Corte o ", - "values": [ - "Medidas Provisionales" - ] - }, - { - "text": "RESOLUCI\u00d3N DEL PRESIDENTE DE LA CORTE INTERAMERICANA DE DERECHOS HUMANOS DE DE JULIO DE AMPLIACI\u00d3N DE LAS MEDIDAS PROVISIONALES SOLICITADAS POR LA COMISI\u00d3N INTERAMERICANA DE DERECHOS HUMANOS RESPECTO DE LA REP\u00daBLICA DE TRINIDAD Y TOBAGO CASOS JAMES Y OTROS VISTOS La Resoluci\u00f3n de la Corte Interamericana de Derechos Humanos en adelante la Corte de de junio de en la cual decidi\u00f3 Ordenar a Trinidad y Tobago que tome todas las medidas necesarias para preservar la vida e integridad personal de", - "values": [ - "Medidas Provisionales" - ] - }, - { - "text": "VOTO CONCURRENTE DEL JUEZ AA. CAN\u00c7ADO TRINDADE Voto a favor de la adopci\u00f3n por la Corte Interamericana de Derechos Humanos de la presente Sentencia sobre el fondo y reparaciones en el caso Hilaire Constantine y Benjamin versus Trinidad y Tobago la cual encuentro en plena conformidad con las disposiciones relevantes y el esp\u00edritu de la Convenci\u00f3n Americana sobre Derechos Humanos. Es esta la primera vez que un tribunal internacional determina que la pena de muerte obligatoria es violatoria de un", - "values": [ - "Voto Separado" - ] - }, - { - "text": "Corte Interamericana de Derechos Humanos Caso Juan Humberto S\u00e1nchez Vs. Honduras Sentencia de de junio de Excepci\u00f3n Preliminar Fondo Reparaciones y Costas En el caso Juan Humberto S\u00e1nchez la Corte Interamericana de Derechos Humanos en adelante la Corte Interamericana la Corte o el Tribunal integrada por los siguientes jueces Ant\u00f4nio A. Can\u00e7ado Trindade Presidente Sergio Garc\u00eda Ram\u00edrez Vicepresidente M\u00e1ximo Pacheco G\u00f3mez Juez Hern\u00e1n Salgado Pesantes Juez Oliver Jackman Juez y Alirio Abreu ", - "values": [ - "Excepciones Preliminares", - "Fondo", - "Reparaciones", - "Costas" - ] - }, - { - "text": "RESOLUCI\u00d3N DE LA CORTE INTERAMERICANA DE DEREECHOS HUMANOS DE DE NOVIEMBRE DE MEDIDAS PROVISIONALES SOLICITADAS POR LA COMISI\u00d3N INTERAMERICANA DE DERECHOS HUMANOS RESPECTO DE LA REP\u00daBLICA DEL PER\u00da CASO LOAYZA TAMAYO VISTOS El escrito presentado el de mayo de por la Comisi\u00f3n Interamericana de Derechos Humanos en adelante la Comisi\u00f3n mediante el cual remiti\u00f3 a la Corte Interamericana de Derechos Humanos en adelante la Corte en virtud de los art\u00edculos de la Convenci\u00f3n Americana sobre en ", - "values": [ - "Medidas Provisionales" - ] - }, - { - "text": "RESOLUCI\u00d3N DE LA CORTE INTERAMERICANA DE DERECHOS HUMANOS DE DE NOVIEMBRE DE CASO ATALA RIFFO Y NI\u00d1AS VS. CHILE SUPERVISI\u00d3N DE CUMPLIMIENTO DE SENTENCIA VISTO La Sentencia de fondo reparaciones y costas en adelante la Sentencia o el Fallo dictada por la Corte Interamericana de Derechos Humanos en adelante la Corte Interamericana la Corte o el Tribunal el de febrero de En dicho Fallo se estableci\u00f3 la responsabilidad internacional de Chile en adelante el Estado o Chile por el trato y la ", - "values": [ - "Supervisi\u00f3n de cumplimiento de Sentencia" - ] - }, - { - "text": "RESOLUCI\u00d3N DE LA CORTE INTERAMERICANA DE DERECHOS HUMANOS DE DE AGOSTO DE CASO BARRIOS ALTOS VS. PER\u00da SUPERVISI\u00d3N DEL CUMPLIMIENTO DE SENTENCIA VISTOS La Sentencia de fondo dictada por la Corte Interamericana de Derechos Humanos en adelante la Corte la Corte Interamericana o el Tribunal el de marzo de La Sentencia de Interpretaci\u00f3n de la Sentencia de fondo dictada en el presente caso por la Corte Interamericana el de septiembre de La Sentencia de reparaciones emitida en el presente ", - "values": [ - "Supervisi\u00f3n de cumplimiento de Sentencia" - ] - }, - { - "text": "RESOLUCI\u00d3N DE LA CORTE INTERAMERICANA DE DERECHOS HUMANOS DE DE NOVIEMBRE DE MEDIDAS PROVISIONALES ADOPTADAS POR LA CORTE INTERAMERICANA DE DERECHOS HUMANOS RESPECTO DE LA REP\u00daBLICA DE GUATEMALA CASO PANIAGUA MORALES Y OTROS Y V\u00c1SQUEZ Y OTROS N. VISTOS El escrito de la Comisi\u00f3n Interamericana de Derechos Humanos en adelante la Comisi\u00f3n o la Comisi\u00f3n Interamericana de de febrero de mediante el cual solicit\u00f3 a la Corte que adoptara medidas provisionales para proteger la vida e integridad ", - "values": [ - "Medidas Provisionales" - ] - }, - { - "text": "VOTO PARCIALMENTE DISIDENTE DEL JUEZ EDUARDO FERRER MACGREGOR POISOT CASO DE LOS PUEBLOS IND\u00cdGENAS KUNA DE MADUNGAND\u00cd Y EMBER\u00c1 DE BAYANO Y SUS MIEMBROS VS. PANAM\u00c1 SENTENCIA DE DE OCTUBRE DE EXCEPCIONES PRELIMINARES FONDO REPARACIONES Y COSTAS INTRODUCCI\u00d3N Se emite el presente voto en el caso de los Pueblos Ind\u00edgenas Kuna de Madungand\u00ed y Ember\u00e1 de Bayano y sus miembros Vs. Panam\u00e1 en el cual la Corte Interamericana de Derechos Humanos en adelante la Corte o el Tribunal Interamericano acoge la ", - "values": [ - "Voto Separado" - ] - }, - { - "text": "Corte Interamericana de Derechos Humanos Caso de los Ni\u00f1os de la Calle Villagr\u00e1n Morales y otros Vs. Guatemala Sentencia de de septiembre de Excepciones Preliminares En el caso Villagr\u00e1n Morales y Otros la Corte Interamericana de Derechos Humanos integrada por los siguientes jueces H\u00e9ctor FixZamudio Presidente Hern\u00e1n Salgado Pesantes Vicepresidente Alejandro Montiel Arg\u00fcello Juez M\u00e1ximo Pacheco G\u00f3mez Juez Oliver Jackman Juez Alirio Abreu Burelli Juez y Ant\u00f4nio A. Can\u00e7ado Trindade Juez E. ", - "values": [ - "Excepciones Preliminares" - ] - }, - { - "text": "RESOLUCI\u00d3N DE LA CORTE INTERAMERICANA DE DERECHOS HUMANOS DE DE AGOSTO DE CASO LAS PALMERAS VS. COLOMBIA SUPERVISI\u00d3N DEL CUMPLIMIENTO DE SENTENCIA VISTOS La Sentencia de fondo dictada por la Corte Interamericana de Derechos Humanos en adelante la Corte la Corte Interamericana o el Tribunal el de diciembre de La Sentencia de reparaciones dictada por la Corte Interamericana el de noviembre de La Resoluci\u00f3n dictada por la Corte el de noviembre de mediante la cual declar\u00f3 Que abierto", - "values": [ - "Supervisi\u00f3n de cumplimiento de Sentencia" - ] - }, - { - "text": "RESOLU\u00c7\u00c3O DA CORTE INTERAMERICANA DE DIREITOS HUMANOS DE DE MAIO DE CASO XIMENES LOPES VS. BRASIL SUPERVIS\u00c3O DE CUMPRIMENTO DE SENTEN\u00c7A VISTO A Senten\u00e7a de m\u00e9rito repara\u00e7\u00f5es e custas de de julho de doravante a Senten\u00e7a proferida pela Corte Interamericana de Direitos Humanos doravante a Corte Interamericana a Corte ou o Tribunal. As Resolu\u00e7\u00f5es de Supervis\u00e3o de Cumprimento da Senten\u00e7a de de maio de e de de setembro de Nesta \u00faltima a Corte Interamericana declarou que manteria aberto o ", - "values": [ - "Supervisi\u00f3n de cumplimiento de Sentencia" - ] - }, - { - "text": "RESOLUCI\u00d3N DE LA CORTE INTERAMERICANA DE DERECHOS HUMANOS DE DE JUNIO DE SOLICITUD DE MEDIDAS PROVISIONALES RESPECTO DE GUATEMALA CASO MASACRE PLAN DE S\u00c1NCHEZ SALVADOR JER\u00d3NIMO Y OTROS VISTOS La Resoluci\u00f3n del Presidente de la Corte Interamericana de Derechos Humanos en adelante la Corte la Corte Interamericana o el Tribunal de de julio de mediante la cual solicit\u00f3 al Estado de Guatemala en adelante el Estado o Guatemala inter alia que adoptara sin dilaci\u00f3n todas las medidas que fueran ", - "values": [ - "Medidas Provisionales" - ] - }, - { - "text": "RESOLUCI\u00d3N DE LA CORTE INTERAMERICANA DE DERECHOS HUMANOS DE DE NOVIEMBRE DE CASO BARRIOS ALTOS CUMPLIMIENTO DE SENTENCIA VISTOS La Sentencia sobre el Fondo dictada en el caso Barrios Altos por la Corte Interamericana de Derechos Humanos en adelante la Corte o el Tribunal el de marzo de en la cual por unanimidad Admiti\u00f3 el reconocimiento de responsabilidad internacional efectuado por el Estado. Declar\u00f3 conforme a los t\u00e9rminos del reconocimiento responsabilidad internacional efectuado por", - "values": [ - "Supervisi\u00f3n de cumplimiento de Sentencia" - ] - }, - { - "text": " Voto Concurrente Conjunto de los Jueces Can\u00e7ado Trindade y Jackman Hemos votado en favor del punto resolutivo de la presente Sentencia pero nos vemos obligados a dejar constancia de nuestro entendimiento del alcance del art\u00edculo de la Convenci\u00f3n Americana sobre Derechos Humanos tal como fue considerado por la Corte en las circunstancias del presente caso Loayza Tamayo. En base del hecho de que los tribunales militares peruanos absolvieron a la se\u00f1ora Mar\u00eda Elena Loayza Tamayo la Corte el", - "values": [ - "Voto Separado" - ] - }, - { - "text": "VOTO RAZONADO CONCURRENTE DEL JUEZ HERN\u00c1N SALGADO PESANTES A LAS SENTENCIAS SOBRE EXCEPCIONES PRELIMINARES EN LOS CASOS HILAIRE CONSTANTINE Y OTROS Y BENJAMIN Y OTROS Estando de acuerdo en lo fundamental con la sentencia en el Caso Constantine y otros vs. Trinidad y Tobago quiero agregar las siguientes consideraciones En materia de reservas a los tratados al igual que en otras cuestiones del Derecho Internacional ha habido una importante evoluci\u00f3n marcada por un progreso constante. Bien podr\u00eda", - "values": [ - "Voto Separado" - ] - }, - { - "text": "RESOLUCI\u00d3N DE LA CORTE INTERAMERICANA DE DERECHOS HUMANOS DE DE ABRIL DE MEDIDAS PROVISIONALES SOLICITADAS POR LA COMISI\u00d3N INTERAMERICANA DE DERECHOS HUMANOS RESPECTO DE GUATEMALA CASO COLOTENANGO VISTOS La resoluci\u00f3n de la Corte Interamericana de Derechos Humanos en adelante la Corte de de septiembre de en la cual ordena mantener las medidas provisionales acordadas en el presente caso por seis meses adicionales. El informe del Estado de Guatemala en adelante el Estado presentado el de ", - "values": [ - "Medidas Provisionales" - ] - }, - { - "text": "RESOLUCI\u00d3N DEL PRESIDENTE DE LA CORTE INTERAMERICANA DE DERECHOS HUMANOS DEL DE DICIEMBRE DE MEDIDAS PROVISIONALES SOLICITADAS POR LA COMISI\u00d3N INTERAMERICANA DE DERECHOS HUMANOS RESPECTO DEL PER\u00da CASO DE PENALES PERUANOS VISTO La comunicaci\u00f3n de de noviembre de y sus anexos mediante la cual la Comisi\u00f3n Interamericana de Derechos Humanos en adelante la Comisi\u00f3n o la Comisi\u00f3n Interamericana somete a la Corte Interamericana de Derechos Humanos en adelante la Corte en virtud de los art\u00edculos ", - "values": [ - "Medidas Provisionales" - ] - }, - { - "text": "RESOLUCI\u00d3N DE LA CORTE INTERAMERICANA DE DERECHOS HUMANOS DE DE FEBRERO DE MEDIDAS PROVISIONALES RESPECTO DE REP\u00daBLICA DOMINICANA ASUNTO HAITIANOS Y DOMINICANOS DE ORIGEN HAITIANO EN LA REP\u00daBLICA DOMINICANA VISTO El escrito de la Comisi\u00f3n Interamericana de Derechos Humanos en adelante la Comisi\u00f3n o la Comisi\u00f3n Interamericana de de mayo de y sus anexos mediante los cuales someti\u00f3 a la Corte Interamericana de Derechos Humanos en adelante la Corte Interamericana o la Corte o el Tribunal la ", - "values": [ - "Medidas Provisionales" - ] - }, - { - "text": "Corte Interamericana de Derechos Humanos Caso Cantos Vs. Argentina Sentencia de de septiembre de Excepciones Preliminares En el caso Cantos la Corte Interamericana de Derechos Humanos en adelante la Corte o la Corte Interamericana integrada de la siguiente manera Ant\u00f4nio A. Can\u00e7ado Trindade Presidente Hern\u00e1n Salgado Pesantes Juez Oliver Jackman Juez Alirio Abreu Burelli Juez Sergio Garc\u00eda Ram\u00edrez Juez Carlos Vicente de Roux Rengifo Juez y Julio A. Barberis Juez ad hoc presentes adem\u00e1s Manuel ", - "values": [ - "Excepciones Preliminares" - ] - }, - { - "text": "RESOLUCI\u00d3N DE LA CORTE INTERAMERICANA DE DERECHOS HUMANOS DE DE SEPTIEMBRE DE CASO BARRIOS ALTOS VS. PER\u00da SUPERVISI\u00d3N DE CUMPLIMIENTO DE SENTENCIA VISTO Las Sentencias de fondo de interpretaci\u00f3n de la Sentencia de fondo y de reparaciones y costas dictadas por la Corte Interamericana de Derechos Humanos en adelante la Corte Interamericana la Corte o el Tribunal el de marzo de septiembre y de noviembre de respectivamente. Las Resoluciones emitidas por la Corte el de noviembre de de ", - "values": [ - "Supervisi\u00f3n de cumplimiento de Sentencia" - ] - }, - { - "text": "VOTO INDIVIDUAL DISIDENTE DEL JUEZ EDUARDO VIO GROSSI CORTE INTERAMERICANA DE DERECHOS HUMANOS CASO CRUZ S\u00c1NCHEZ y OTROS Vs PER\u00da SENTENCIA DE DE ABRIL DE Excepciones Preliminares Fondo Reparaciones y Costas. INTRODUCCI\u00d3N. Se emite el presente voto individual disidente de la Sentencia indicada en el t\u00edtulo en raz\u00f3n de que \u00e9sta desestim\u00f3 la excepci\u00f3n preliminar relativa al incumplimiento de la regla del previo agotamiento de los recursos internos interpuesta por la Rep\u00fablica del Per\u00fa Los de", - "values": [ - "Voto Separado" - ] - }, - { - "text": " VOTO RAZONADO DEL JUEZ DE ROUX RENGIFO He acompa\u00f1ado a la Corte en la decisi\u00f3n de abstenerse de declarar que el Estado viol\u00f3 el art\u00edculo de la Convenci\u00f3n Americana por una raz\u00f3n espec\u00edfica para haber votado en contrario hubiera requerido que obraran en el expediente pruebas precisas sobre el hecho de que al prohibirse la exhibici\u00f3n de La Ultima Tentaci\u00f3n de Cristo se menoscab\u00f3 efectivamente en perjuicio de las v\u00edctimas concretas del presente caso el derecho a cambiar de religi\u00f3n o de El de", - "values": [ - "Voto Separado" - ] - }, - { - "text": "RESOLUCI\u00d3N DEL PRESIDENTE DE LA CORTE INTERAMERICANA DE DERECHOS HUMANOS DE DE SEPTIEMBRE DE MEDIDAS PROVISIONALES RESPECTO DE LA REP\u00daBLICA DOMINICANA CASO DE HAITIANOS Y DOMINICANOS DE ORIGEN HAITIANO EN LA REP\u00daBLICA DOMINICANA VISTOS El escrito de la Comisi\u00f3n Interamericana de Derechos Humanos en adelante la Comisi\u00f3n o la Comisi\u00f3n Interamericana de de mayo de y sus Anexos mediante el cual someti\u00f3 a la Corte Interamericana de Derechos Humanos en adelante la Corte o la Corte Interamericana", - "values": [ - "Medidas Provisionales" - ] - }, - { - "text": "VOTO RAZONADO DEL JUEZ AA. CAN\u00c7ADO TRINDADE Al votar a favor de la adopci\u00f3n de la presente Sentencia de la Corte Interamericana de Derechos Humanos en el caso de Guti\u00e9rrez Soler versus Colombia con la cual estoy b\u00e1sicamente de acuerdo me veo en la obligaci\u00f3n de agregar en el presente Voto Razonado algunas breves reflexiones personales sobre cuatro puntos medulares suscitados por la consideraci\u00f3n del presente caso los cuales a mi juicio no pueden pasar aqu\u00ed desapercibidos. Me refiero en a los ", - "values": [ - "Voto Separado" - ] - }, - { - "text": "RESOLUCI\u00d3N DE LA CORTE INTERAMERICANA DE DERECHOS HUMANOS DE DE OCTUBRE DE CASO BAENA RICARDO Y OTROS TRABAJADORES VS. PANAM\u00c1 SUPERVISI\u00d3N DE CUMPLIMIENTO DE SENTENCIA VISTO La Sentencia de fondo reparaciones y costas emitida el de febrero de en adelante la Sentencia por la Corte Interamericana de Derechos Humanos en adelante la Corte Interamericana la Corte o el Tribunal mediante la cual dispuso por unanimidad que el Estado debe pagar a los trabajadores mencionados en el p\u00e1rrafo de ", - "values": [ - "Supervisi\u00f3n de cumplimiento de Sentencia" - ] - }, - { - "text": "Corte Interamericana de Derechos Humanos Caso Masacre Plan de S\u00e1nchez Vs. Guatemala Sentencia de de abril de Fondo En el caso Masacre Plan de S\u00e1nchez la Corte Interamericana de Derechos Humanos integrada por los siguientes jueces Sergio Garc\u00eda Ram\u00edrez Presidente Alirio Abreu Burelli Vicepresidente Oliver Jackman Juez Ant\u00f4nio A. Can\u00e7ado Trindade Juez Cecilia Medina Quiroga Jueza Manuel E. Ventura Robles Juez Diego Garc\u00edaSay\u00e1n Juez y Alejandro S\u00e1nchez Garrido Juez ad hoc presente adem\u00e1s Pablo ", - "values": [ - "Fondo" - ] - }, - { - "text": "RESOLUCI\u00d3N DEL PRESIDENTE DE LA CORTE INTERAMERICANA DE DERECHOS HUMANOS DE DE FEBRERO DE CASO CAMBA CAMPOS Y OTROS VS. ECUADOR VISTO El escrito de de noviembre de mediante el cual la Comisi\u00f3n Interamericana de Derechos humanos en adelante la Comisi\u00f3n Interamericana de Derechos Humanos o la Comisi\u00f3n someti\u00f3 a la Corte Interamericana de Derechos Humanos en adelante la Corte interamericana la Corte o el Tribunal un caso en contra de la Rep\u00fablica del Ecuador en adelante Ecuador o el Estado. ", - "values": [ - "Otros" - ] - }, - { - "text": "R e o s lu c n i\u00f3 d a C rte o n I m a ic d D h H s u n o d m e a o y S lic o tu d e M a s P rv n re p s c to d la R \u00fa b iB v rn e V u z la A u s n to O C F I V C o s a d e lrc z VISTOS El escrito de de marzo de y sus anexos del Centro por la Justicia y el Derecho Internacional en adelante CEJIL y el Comit\u00e9 de Familiares de las V\u00edctimas de los Sucesos de Febrero y Marzo de en adelante COFAVIC en calidad de representantes en adelante los representantes mediante los cuales sometieron ante ", - "values": [ - "Medidas Provisionales" - ] - }, - { - "text": "RESOLUCI\u00d3N DE LA CORTE INTERAMERICANA DE DERECHOS HUMANOS DE DE JUNIO DE CASO HELIODORO PORTUGAL VS. PANAM\u00c1 SUPERVISI\u00d3N DE CUMPLIMIENTO DE SENTENCIA VISTO La Sentencia de excepciones preliminares fondo reparaciones y costas en adelante la Sentencia dictada por la Corte Interamericana de Derechos Humanos en adelante la Corte Interamericana la Corte o el Tribunal el de agosto de La Resoluci\u00f3n de supervisi\u00f3n de cumplimiento de la Sentencia emitida por la Corte Interamericana el de mayo de ", - "values": [ - "Supervisi\u00f3n de cumplimiento de Sentencia" - ] - }, - { - "text": "RESOLUCI\u00d3N DE LA CORTE INTERAMERICANA DE DERECHOS HUMANOS DE DE SEPTIEMBRE DE MEDIDAS PROVISIONALES SOLICITADAS POR LOS REPRESENTANTES DE LAS V\u00cdCTIMAS RESPECTO DE LA REP\u00daBLICA DE NICARAGUA COMUNIDAD MAYAGNA SUMO AWAS TINGNI VISTOS La sentencia de la Corte Interamericana de Derechos Humanos en adelante la Corte Interamericana la Corte o el Tribunal de de agosto de en el Caso de la Comunidad Mayagna Sumo Awas Tingni. La comunicaci\u00f3n de los representantes de la Comunidad Mayagna Sumo Awas ", - "values": [ - "Medidas Provisionales" - ] - }, - { - "text": "Corte Interamericana de Derechos Humanos Caso Baena Ricardo y otros Vs. Panam\u00e1 Sentencia de de noviembre de Excepciones Preliminares En el caso Baena Ricardo y otros la Corte Interamericana de Derechos Humanos en adelante la Corte la Corte Interamericana o el Tribunal integrada por los siguientes jueces Ant\u00f4nio A. Can\u00e7ado Trindade Presidente M\u00e1ximo Pacheco G\u00f3mez Vicepresidente Hern\u00e1n Salgado Pesantes Juez Oliver Jackman Juez Alirio Abreu Burelli Juez y Carlos Vicente de Roux Rengifo Juez E.", - "values": [ - "Excepciones Preliminares" - ] - }, - { - "text": "RESOLUCI\u00d3N DE LA CORTE INTERAMERICANA DE DERECHOS HUMANOS DE DE FEBRERO DE SOLICITUD DE MEDIDAS PROVISIONALES CASO NADEGE DORZEMA Y OTROS VS. REP\u00daBLICA DOMINICANA VISTOS El escrito de de diciembre de mediante el cual la Cl\u00ednica Internacional de Defensa de los Derechos Humanos de la Universidad de Quebec en Montreal y el Grupo de Apoyo a los Repatriados y Refugiados en adelante los representantes dos de las organizaciones representantes de las v\u00edctimas en el caso Nadege Dorzema presentaron ", - "values": [ - "Medidas Provisionales" - ] - }, - { - "text": "VOTO RAZONADO DEL JUEZ AA. CAN\u00c7ADO TRINDADE Voto a favor de la adopci\u00f3n por la Corte Interamericana de Derechos Humanos de la presente Sentencia sobre el caso B\u00e1maca Vel\u00e1squez Fondo en todos sus puntos resolutivos. Ciertas cuestiones transcendentales planteadas en el presente caso me suscitan adem\u00e1s algunas reflexiones de las cuales me permito dejar constancia en el presente Voto Razonado para fundamentar mi concepci\u00f3n y posici\u00f3n frente a tales cuestiones. De inicio es verdaderamente penoso y ", - "values": [ - "Voto Separado" - ] - }, - { - "text": "VOTO DISIDENTE DEL JUEZ ALBERTO P\u00c9REZ P\u00c9REZ EN EL CASO DE LA COMUNIDAD CAMPESINA DE SANTA B\u00c1RBARA VS. PER\u00da He votado negativamente la parte de la sentencia en la que se califica a los brutales actos a que ella se refiere como desaparici\u00f3n forzada y no como ejecuci\u00f3n extrajudicial o masacre con car\u00e1cter de crimen de lesa humanidad. Las razones para mi voto que se exponen a continuaci\u00f3n comprenden tanto la descripci\u00f3n de los hechos como su calificaci\u00f3n jur\u00eddica desde el punto de vista del de ", - "values": [ - "Voto Separado" - ] - }, - { - "text": "PARTIALLY DISSENTING OPINION OF JUDGE DIEGO GARC\u00cdASAY\u00c1N WITH RESPECT TO THE JUDGMENT OF THE INTERAMERICAN COURT OF HUMAN RIGHTS IN THE CASE OF SALVADOR CHIRIBOGA V. ECUADOR MARCH The Judgment on the Merits issued in this case by the Court on May is clear regarding the standard for determining the amount of just compensation as well as on how to make this determination. Thus in this Judgment on reparations the Court is not called to decide on how to reach that determination as it did so in ", - "values": [ - "Voto Separado" - ] - }, - { - "text": "RESOLUCI\u00d3N DE LA PRESIDENTA DE LA CORTE INTERAMERICANA DE DERECHOS HUMANOS DE DE DICIEMBRE DE CASO DE LAS HERMANAS SERRANO CRUZ VS. EL SALVADOR SUPERVISI\u00d3N DE CUMPLIMIENTO DE SENTENCIA VISTO La Sentencia de fondo reparaciones y costas en adelante la Sentencia dictada por la Corte Interamericana de Derechos Humanos en adelante la Corte Interamericana la Corte o el Tribunal el de marzo de Las resoluciones de supervisi\u00f3n de cumplimiento de la Sentencia dictadas por la Corte el de septiembre", - "values": [ - "Supervisi\u00f3n de cumplimiento de Sentencia" - ] - }, - { - "text": "Corte Interamericana de Derechos Humanos Caso God\u00ednez Cruz Vs. Honduras Sentencia de de enero de Fondo En el caso God\u00ednez Cruz la Corte Interamericana de Derechos Humanos integrada por los siguientes jueces Rafael Nieto Navia Presidente Rodolfo E. Piza E Juez Thomas Buergenthal Juez Pedro Nikken Juez H\u00e9ctor FixZamudio Juez Rigoberto Espinal Ir\u00edas Juez ad hoc presentes adem\u00e1s Charles Moyer Secretario y Manuel Ventura Secretario Adjunto de acuerdo con el art\u00edculo de su Reglamento en adelante ", - "values": [ - "Fondo" - ] - }, - { - "text": "RESOLUCI\u00d3N DE LA CORTE INTERAMERICANA DE DERECHOS HUMANOS DE DE OCTUBRE DE CASO VARGAS ARECO VS. PARAGUAY SUPERVISI\u00d3N DE CUMPLIMIENTO DE SENTENCIA VISTOS La Sentencia de fondo reparaciones y costas de de septiembre de en adelante la Sentencia dictada por la Corte Interamericana de Derechos Humanos en adelante la Corte la Corte Interamericana o el Tribunal notificada \u00edntegramente a la Rep\u00fablica del Paraguay en adelante el Estado o el Paraguay el de octubre de mediante la cual dispuso por ", - "values": [ - "Supervisi\u00f3n de cumplimiento de Sentencia" - ] - }, - { - "text": "RESOLUCI\u00d3N DE LA CORTE INTERAMERICANA DE DERECHOS HUMANOS DE DE NOVIEMBRE DE CASO CLAUDE REYES Y OTROS VS. CHILE SUPERVISI\u00d3N DE CUMPLIMIENTO DE SENTENCIA VISTO La Sentencia de Fondo Reparaciones y Costas emitida el de septiembre de en adelante la Sentencia por la Corte Interamericana de Derechos Humanos en adelante la Corte la Corte Interamericana o el Tribunal mediante la cual dispuso que El Estado debe a trav\u00e9s de la entidad correspondiente y en el plazo de seis meses entregar la por", - "values": [ - "Supervisi\u00f3n de cumplimiento de Sentencia" - ] - }, - { - "text": "RESOLUCI\u00d3N DE LA CORTE INTERAMERICANA DE DERECHOS HUMANOS DE DE SEPTIEMBRE DE MEDIDAS PROVISIONALES RESPECTO DE HAIT\u00cd ASUNTO A. J. Y OTROS VISTO El escrito de la Comisi\u00f3n Interamericana de Derechos Humanos en adelante la Comisi\u00f3n Interamericana o la Comisi\u00f3n de de agosto de y sus anexos mediante los cuales someti\u00f3 a la Corte Interamericana de Derechos Humanos en adelante la Corte Interamericana la Corte o el Tribunal una solicitud de medidas provisionales de conformidad con los art\u00edculos ", - "values": [ - "Medidas Provisionales" - ] - }, - { - "text": " EL JUEZ JULIO A. BARBERIS HACE LA DECLARACI\u00d3N SIGUIENTE No estoy de acuerdo con el Cap\u00edtulo VII de la decisi\u00f3n que antecede titulado Violaci\u00f3n de los Art\u00edculos y Garant\u00edas Judiciales y Protecci\u00f3n Judicial. La sentencia deber\u00eda haber fundado sin m\u00e1s consideraci\u00f3n la violaci\u00f3n de los art\u00edculos y de la Convenci\u00f3n por parte de Colombia en los dos hechos siguientes reconocidos por ella a saber a el plazo de m\u00e1s de diez a\u00f1os transcurrido desde que sucedi\u00f3 el caso de Las Palmeras sin que hasta ", - "values": [ - "Voto Separado" - ] - }, - { - "text": "RESOLUCI\u00d3N DE LA CORTE INTERAMERICANA DE DERECHOS HUMANOS DE DE FEBRERO DE MEDIDAS PROVISIONALES RESPECTO DE COLOMBIA CASO CABALLERO DELGADO Y SANTANA VISTO Las Sentencias de fondo y de reparaciones y costas dictadas en el caso Caballero Delgado y Santana por la Corte Interamericana de Derechos Humanos en adelante la Corte Interamericana la Corte o el Tribunal el de diciembre de y el de enero de respectivamente. Las Resoluciones de la Corte Interamericana de de diciembre de de enero ", - "values": [ - "Medidas Provisionales" - ] - }, - { - "text": "RESOLUCI\u00d3N DEL PRESIDENTE DE LA CORTE INTERAMERICANA DE DERECHOS HUMANOS DE DE OCTUBRE DE SOLICITUD DE MEDIDAS PROVISIONALES RESPECTO DE GUATEMALA A FAVOR DE LOS INTEGRANTES DEL EQUIPO DE ESTUDIOS COMUNITARIOS Y ACCION PSICOSOCIAL ECAP CASO MASACRE PLAN DE SANCHEZ VISTOS El escrito y sus anexos presentados el de octubre de por el Centro para la Acci\u00f3n Legal en Derechos Humanos en adelante CALDH o los representantes mediante los cuales someti\u00f3 a la Corte Interamericana de Derechos Humanos ", - "values": [ - "Medidas Provisionales" - ] - }, - { - "text": "VOTO RAZONADO DEL JUEZ AA. CAN\u00c7ADO TRINDADE Voto a favor de la adopci\u00f3n de la presente Sentencia de la Corte Interamericana de Derechos Humanos en el caso del Instituto de Reeducaci\u00f3n del Menor relativo al Estado paraguayo la cual en la misma l\u00ednea de pensamiento inaugurada por la Corte en el caso hist\u00f3rico y paradigm\u00e1tico de los Ni\u00f1os de la Calle Villagr\u00e1n Morales y Otros versus Guatemala retrata una situaci\u00f3n real del cotidiano en toda Am\u00e9rica Latina y otras regiones del mundo y demuestra ", - "values": [ - "Voto Separado" - ] - }, - { - "text": "VOTO RAZONADO DEL JUEZ AA. CAN\u00c7ADO TRINDADE He votado en favor de la adopci\u00f3n por la Corte Interamericana de Derechos Humanos de la presente Sentencia en el caso La Cantuta versus Per\u00fa. Dada la importancia de las cuestiones en ella tratadas por la Corte me veo en la obligaci\u00f3n de agregar a la presente Sentencia este Voto Razonado con mis reflexiones personales como fundamento de mi posici\u00f3n al respecto de lo deliberado por el Tribunal. Centrar\u00e9 mis reflexiones en cuatro puntos b\u00e1sicos a saber ", - "values": [ - "Voto Separado" - ] - }, - { - "text": "RESOLUCI\u00d3N DE LA PRESIDENTA DE LA CORTE INTERAMERICANA DE DERECHOS HUMANOS DE DE MARZO DE CASO TIU TOJIN VS. GUATEMALA VISTOS El escrito de demanda presentado por la Comisi\u00f3n Interamericana de Derechos Humanos en adelante la Comisi\u00f3n Interamericana o la Comisi\u00f3n ante la Corte Interamericana de Derechos Humanos en adelante la Corte Interamericana la Corte o el Tribunal el de julio de mediante el cual ofreci\u00f3 dos testimonios y dos peritajes. El escrito de solicitudes argumentos y pruebas en", - "values": [ - "Otros" - ] - }, - { - "text": "Resoluci\u00f3n de la Corte Interamericana de Derechos Humanos de de noviembre de Caso Myrna Mack Chang Vs. Guatemala Supervisi\u00f3n de Cumplimiento de Sentencia VISTOS La Sentencia de fondo reparaciones y costas en adelante la Sentencia dictada por la Corte Interamericana de Derechos Humanos en adelante la Corte Interamericana la Corte o el Tribunal el de noviembre de La Resoluci\u00f3n dictada por la Corte Interamericana el de septiembre de mediante la cual determin\u00f3 en lo conducente que el ", - "values": [ - "Supervisi\u00f3n de cumplimiento de Sentencia" - ] - }, - { - "text": "VOTO RAZONADO DEL JUEZ SERGIO GARC\u00cdA RAM\u00cdREZ A LA SENTENCIA DE LA CORTE INTERAMERICANA DE DERECHOS HUMANOS EN EL CASO LA CANTUTA DEL DE NOVIEMBRE DE JURISPRUDENCIA DE LA CORTE SOBRE AUTOAMNIST\u00cdAS La Corte se ha ocupado en diversas oportunidades del problema que representan las llamadas leyes de autoamnist\u00eda. Por primera vez se plante\u00f3 directamente esta cuesti\u00f3n a prop\u00f3sito de disposiciones expedidas por el mismo Estado al que se refiere la presente resoluci\u00f3n en la Sentencia sobre del Caso ", - "values": [ - "Voto Separado" - ] - }, - { - "text": "RESOLUCION DE LA CORTE INTERAMERICANA DE DERECHOS HUMANOS DE FEBRERO DE CASO DEL TRIBUNAL CONSTITUCIONAL AGUIRRE ROCA REY TERRY Y REVOREDO MARSANO VS. PERU CUMPLIMIENTO DE SENTENCIA VISTOS La Sentencia dictada por la Corte Interamericana de Derechos Humanos en adelante la Corte la Corte Interamericana o el Tribunal el de enero de mediante la cual declar\u00f3 que el Estado viol\u00f3 en perjuicio de Manuel Aguirre Roca Guillermo Rey Terry y Delia Revoredo Marsano el derecho a las garant\u00edas en el", - "values": [ - "Supervisi\u00f3n de cumplimiento de Sentencia" - ] - }, - { - "text": "VOTO DISIDENTE DEL JUEZ EDUARDO VIO GROSSI SENTENCIA DE LA CORTE INTERAMERICANA DE DERECHOS HUMANOS CASO COMUNIDAD CAMPESINA DE SANTA B\u00c1RBARA VS. PER\u00da SENTENCIA DE DE SEPTIEMBRE DE Excepciones Preliminares Fondo Reparaciones y Costas INTRODUCCI\u00d3N. Se emite el presente voto individual disidente a la Sentencia indicada en el t\u00edtulo en raz\u00f3n de que \u00e9sta desestim\u00f3 la excepci\u00f3n preliminar relativa al incumplimiento de la regla del previo agotamiento de los recursos internos prevista en el art\u00edculo", - "values": [ - "Voto Separado" - ] - }, - { - "text": "Corte Interamericana de Derechos Humanos Caso Yvon Neptune vs. Hait\u00ed Sentencia de mayo de Fondo Reparaciones y Costas En el caso Yvon Neptune vs. Hait\u00ed la Corte Interamericana de Derechos Humanos en adelante la Corte Interamericana la Corte o el Tribunal integrada por los siguientes jueces Cecilia Medina Quiroga Presidenta Diego Garc\u00edaSay\u00e1n Vicepresidente Sergio Garc\u00eda Ram\u00edrez Juez Manuel E. Ventura Robles Juez Leonardo A. Franco Juez Margarette May Macaulay Jueza y Rhadys Abreu Blondet Jueza", - "values": [ - "Fondo", - "Reparaciones", - "Costas" - ] - }, - { - "text": "VOTO CONCURRENTE DEL JUEZ MONTIEL ARG\u00dcELLO He estado de acuerdo con todas las decisiones adoptadas por la Corte en la sentencia que antecede caso Caballero Delgado y Santana mas deseo hacer algunas consideraciones respecto al rechazo de la solicitud de indemnizaci\u00f3n por los da\u00f1os materiales que se dicen causados por la muerte de Mar\u00eda del Carmen Santana. Bien conocida es la controversia entre quienes opinan que la vida humana tiene un valor econ\u00f3mico o patrimonial para su titular y quienes ", - "values": [ - "Voto Separado" - ] - }, - { - "text": "Corte Interamericana de Derechos Humanos Caso God\u00ednez Cruz Vs. Honduras Sentencia de de julio de Reparaciones y Costas En el caso God\u00ednez Cruz la Corte Interamericana de Derechos Humanos integrada por los siguientes jueces H\u00e9ctor Gros Espiell Presidente H\u00e9ctor FixZamudio Vicepresidente Rodolfo E. Piza E Juez Pedro Nikken Juez Rafael Nieto Navia Juez Rigoberto Espinal Ir\u00edas Juez ad hoc presente adem\u00e1s Manuel E. Ventura Robles Secretario ai. de acuerdo con el art\u00edculo de su Reglamento dicta la", - "values": [ - "Reparaciones", - "Costas" - ] - }, - { - "text": "Corte Interamericana de Derechos Humanos Caso Caesar Vs. Trinidad y Tobago Sentencia de de marzo de Fondo Reparaciones y Costas En el caso Caesar La Corte Interamericana de Derechos Humanos en adelante la Corte la Corte Interamericana o el Tribunal integrada por los siguientes jueces Sergio Garc\u00eda Ram\u00edrez Presidente Alirio Abreu Burelli Vicepresidente Oliver Jackman Juez Ant\u00f4nio A. Can\u00e7ado Trindade Juez Cecilia Medina Quiroga Jueza Manuel E. Ventura Robles Juez y Diego Garc\u00edaSay\u00e1n Juez ", - "values": [ - "Fondo", - "Reparaciones", - "Costas" - ] - }, - { - "text": "RESOLUCI\u00d3N DE LA CORTE INTERAMERICANA DE DERECHOS HUMANOS DEL DE ABRIL DE MEDIDAS PROVISIONALES ADOPTADAS POR LA CORTE INTERAMERICANA DE DERECHOS HUMANOS RESPECTO DE LA REP\u00daBLICA DE GUATEMALA CASO BLAKE VISTOS La resoluci\u00f3n del Presidente de la Corte Interamericana de Derechos Humanos en adelante la Corte de de agosto de en la cual decidi\u00f3 solicitar al Gobierno de la Rep\u00fablica de Guatemala que adopte sin dilaci\u00f3n cuantas medidas sean necesarias para asegurar eficazmente la protecci\u00f3n de la", - "values": [ - "Medidas Provisionales" - ] - }, - { - "text": "RESOLUCI\u00d3N DE LA CORTE INTERAMERICANA DE DERECHOS HUMANOS DE DE SEPTIEMBRE DE SOLICITUD DE MEDIDAS PROVISIONALES PRESENTADA POR LA COMISI\u00d3N INTERAMERICANA DE DERECHOS HUMANOS RESPECTO DE LA REP\u00daBLICA DEL PER\u00da CASO RAM\u00cdREZ HINOSTROZA Y OTROS VISTOS El escrito de de julio de mediante el cual la Comisi\u00f3n Interamericana de Derechos Humanos en adelante la Comisi\u00f3n Interamericana o la Comisi\u00f3n someti\u00f3 a la Corte Interamericana de Derechos Humanos en adelante la Corte o el Tribunal de conformidad", - "values": [ - "Medidas Provisionales" - ] - }, - { - "text": "VOTO CONCURRENTE DEL JUEZ EDUARDO VIO GROSSI CORTE INTERAMERICANA DE DERECHOS HUMANOS CASO COMUNIDAD GAR\u00cdFUNA DE PUNTA PIEDRA Y SUS MIEMBROS VS. HONDURAS SENTENCIA DE DE OCTUBRE DE Excepciones Preliminares Fondo Reparaciones y Costas Se emite el presente voto concurrente con la Sentencia del t\u00edtulo toda vez que si bien el infrascrito comparte las decisiones que en ella se establecen en cuanto a desestimar las excepciones preliminares interpuestas por el Estado por la falta de agotamiento de ", - "values": [ - "Voto Separado" - ] - }, - { - "text": "CORTE INTERAMERICANA DE DERECHOS HUMANOS CASO DE LA MASACRE DE LAS DOS ERRES VS. GUATEMALA SENTENCIA DE DE NOVIEMBRE DE Excepci\u00f3n Preliminar Fondo Reparaciones y Costas En el Caso de la Masacre de Las Dos Erres La Corte Interamericana de Derechos Humanos en adelante la Corte la Corte Interamericana o el Tribunal integrada por los siguientes jueces Cecilia Medina Quiroga Presidenta Diego Garc\u00edaSay\u00e1n Vicepresidente Sergio Garc\u00eda Ram\u00edrez Juez Manuel E. Ventura Robles Juez Margarette May Macaulay", - "values": [ - "Excepciones Preliminares", - "Fondo", - "Reparaciones", - "Costas" - ] - }, - { - "text": "Corte Interamericana de Derechos Humanos Caso Cayara Vs. Per\u00fa Sentencia de de febrero de Excepciones Preliminares En el caso Cayara la Corte Interamericana de Derechos Humanos integrada por los siguientes jueces H\u00e9ctor FixZamudio Presidente Sonia Picado Sotela Vicepresidente Rafael Nieto Navia Juez Alejandro Montiel Arg\u00fcello Juez Hern\u00e1n Salgado Pesantes Juez Asdr\u00fabal AguiarAranguren Juez Manuel Aguirre Roca Juez ad hoc presentes adem\u00e1s Manuel E. Ventura Robles Secretario y Ana Mar\u00eda Reina ", - "values": [ - "Excepciones Preliminares" - ] - }, - { - "text": "Corte Interamericana de Derechos Humanos Caso Durand y Ugarte Vs. Per\u00fa Sentencia de de mayo de Excepciones Preliminares En el caso Durand y Ugarte la Corte Interamericana de Derechos Humanos en adelante la Corte o la Corte Interamericana integrada por los siguientes jueces Hern\u00e1n Salgado Pesantes Presidente Ant\u00f4nio A. Can\u00e7ado Trindade Vicepresidente M\u00e1ximo Pacheco G\u00f3mez Juez Alirio Abreu Burelli Juez Sergio Garc\u00eda Ram\u00edrez Juez Carlos Vicente de Roux Rengifo Juez y Fernando Vidal Ram\u00edrez Juez", - "values": [ - "Excepciones Preliminares" - ] - }, - { - "text": "RESOLUCI\u00d3N DEL PRESIDENTE DE LA CORTE INTERAMERICANA DE DERECHOS HUMANOS DE DE MARZO DE CASO ESPINOZA GONZ\u00c1LES VS. PER\u00da VISTO El escrito de sometimiento del caso presentado por la Comisi\u00f3n Interamericana de Derechos Humanos en adelante la Comisi\u00f3n Interamericana o la Comisi\u00f3n ante la Corte Interamericana de Derechos Humanos en adelante la Corte Interamericana la Corte o el Tribunal el de diciembre de mediante el cual ofreci\u00f3 un dictamen pericial y solicit\u00f3 el traslado de los peritajes por", - "values": [ - "Otros" - ] - }, - { - "text": "CORTE INTERAMERICANA DE DERECHOS HUMANOS CASO GONZ\u00c1LEZ Y OTRAS CAMPO ALGODONERO VS. M\u00c9XICO SENTENCIA DE DE NOVIEMBRE DE EXCEPCI\u00d3N PRELIMINAR FONDO REPARACIONES Y COSTAS En el caso Gonz\u00e1lez y otras Campo Algodonero la Corte Interamericana de Derechos Humanos en adelante la Corte Interamericana la Corte o el Tribunal integrada por los siguientes jueces Cecilia Medina Quiroga Presidenta Diego Garc\u00edaSay\u00e1n Vicepresidente Manuel E. Ventura Robles Juez Margarette May Macaulay Jueza Rhadys Abreu y ", - "values": [ - "Excepciones Preliminares", - "Fondo", - "Reparaciones", - "Costas" - ] - }, - { - "text": "CORTE INTERAMERICANA DE DERECHOS HUMANOS CASO DEL PUEBLO SARAMAKA VS. SURINAM SENTENCIA DE DE AGOSTO DE INTERPRETACI\u00d3N DE LA SENTENCIA DE EXCEPCIONES PRELIMINARES FONDO REPARACIONES Y COSTAS En el Caso del Pueblo Saramaka la Corte Interamericana de Derechos Humanos en adelante la Corte Interamericana la Corte o el Tribunal integrada por los siguientes jueces Sergio Garc\u00eda Ram\u00edrez Presidente Diego Garc\u00eda Say\u00e1n Juez Leonardo Franco Juez Margarette May Macaulay Jueza y Rhadys Abreu Blondet Jueza", - "values": [ - "Interpretaci\u00f3n" - ] - }, - { - "text": "VOTO CONCURRENTE DEL JUEZ ALBERTO P\u00c9REZ P\u00c9REZ CASO GONZALES LLUY Y OTROS VS. ECUADOR SENTENCIA DE DE SEPTIEMBRE DE Excepciones Preliminares Fondo Reparaciones y Costas Comparto plenamente el contenido de la Sentencia dictada en el presente caso y el profundo sentimiento de solidaridad con la v\u00edctima y de comprensi\u00f3n de sus sufrimientos. No obstante he sentido la necesidad de emitir un voto concurrente habida cuenta de las constantes propuestas hechas durante la deliberaci\u00f3n del caso para que", - "values": [ - "Voto Separado" - ] - }, - { - "text": "VOTO DISIDENTE DE LA JUEZA MARGARETTE MAY MACAULAY EN RELACI\u00d3N AL PUNTO RESOLUTIVO DE LA SENTENCIA Encuentro necesario formular mi voto disidente en relaci\u00f3n punto resolutivo de la Sentencia y en consecuencia a lo ordenado en los p\u00e1rrafos y de la Sentencia. En mi opini\u00f3n tal como aparecen estos p\u00e1rrafos se encuentran en un gran conflicto con o como m\u00ednimo no cumplen con los criterios y los principios de los est\u00e1ndares propuestos en los p\u00e1rrafos y de esta Sentencia. En estos p\u00e1rrafos la ", - "values": [ - "Voto Separado" - ] - }, - { - "text": "RESOLUCI\u00d3N DE LA PRESIDENTA DE LA CORTE INTERAMERICANA DE DERECHOS HUMANOS DE DE DICIEMBRE DE CASO CESTI HURTADO VS. PER\u00da SUPERVISI\u00d3N DE CUMPLIMIENTO DE SENTENCIA VISTOS La Sentencia de fondo emitida por la Corte Interamericana de Derechos Humanos en adelante la Corte la Corte Interamericana o el Tribunal el de septiembre de La Sentencia de Interpretaci\u00f3n de la Sentencia de fondo dictada por la Corte el de enero de La Sentencia de reparaciones emitida por el Tribunal el de mayo de ", - "values": [ - "Supervisi\u00f3n de cumplimiento de Sentencia" - ] - }, - { - "text": "VOTO RAZONADO CONJUNTO DE LOS JUECES SERGIO GARC\u00cdA RAM\u00cdREZ HERN\u00c1N SALGADO PESANTES Y ALIRIO ABREU BURELLI El Estado viol\u00f3 el derecho a la vida reconocido por el art\u00edculo de la Convenci\u00f3n Americana sobre Derechos Humanos en agravio de Julio Milciades Cer\u00f3n G\u00f3mez William Hamilton Cer\u00f3n Rojas Edebraes Norberto Cer\u00f3n Rojas Artemio Pantoja Ord\u00f3\u00f1ez y Hern\u00e1n Javier Cuar\u00e1n Muchavisoy. La violaci\u00f3n provino de la conducta de agentes del Estado debidamente probada. Es pertinente emitir sentencia en ", - "values": [ - "Voto Separado" - ] - }, - { - "text": "RESOLUCI\u00d3N DE LA CORTE INTERAMERICANA DE DERECHOS HUMANOS DE JULIO DE CASO B\u00c1MACA VEL\u00c1SQUEZ VS. GUATEMALA SUPERVISI\u00d3N DE CUMPLIMIENTO DE SENTENCIAS VISTOS La Sentencia de fondo emitida en el presente caso por la Corte Interamericana de Derechos Humanos en adelante la Corte la Corte Interamericana o el Tribunal el de noviembre de La Sentencia de reparaciones dictada en el presente caso por la Corte Interamericana el de febrero de La Resoluci\u00f3n de cumplimiento de Sentencia emitida por la", - "values": [ - "Supervisi\u00f3n de cumplimiento de Sentencia" - ] - }, - { - "text": "CORTE INTERAMERICANA DE DERECHOS HUMANOS CASO FAMILIA PACHECO TINEO VS. ESTADO PLURINACIONAL DE BOLIVIA SENTENCIA DE DE NOVIEMBRE DE Excepciones Preliminares Fondo Reparaciones y Costas En el caso Familia Pacheco Tineo la Corte Interamericana de Derechos Humanos en adelante la Corte Interamericana la Corte o el Tribunal integrada por los siguientes Jueces Diego Garc\u00edaSay\u00e1n Presidente Manuel E. Ventura Robles Vicepresidente Alberto P\u00e9rez P\u00e9rez Juez Eduardo Vio Grossi Juez Roberto F. Caldas ", - "values": [ - "Costas", - "Fondo", - "Excepciones Preliminares", - "Reparaciones" - ] - }, - { - "text": "RESOLUCI\u00d3N DE LA CORTE INTERAMERICANA DE DERECHOS HUMANOS DE DE JUNIO DE MEDIDAS PROVISIONALES RESPECTO DE HONDURAS ASUNTO GLADYS LANZA OCHOA VISTO La Resoluci\u00f3n dictada por la Corte Interamericana de Derechos Humanos en adelante la Corte Interamericana la Corte o el Tribunal el de septiembre de mediante la cual entre otros Requiri\u00f3 al Estado de Honduras que adopte de forma inmediata las medidas que sean necesarias para proteger la vida e integridad personal de la se\u00f1ora Gladys Lanza ", - "values": [ - "Medidas Provisionales" - ] - }, - { - "text": "RESOLUCI\u00d3N DE LA CORTE INTERAMERICANA DE DERECHOS HUMANOS DE DE JUNIO DE MEDIDAS PROVISIONALES RESPECTO DE EL SALVADOR ASUNTO MEL\u00c9NDEZ QUIJANO Y OTROS VISTO Las Resoluciones de la Corte Interamericana de Derechos Humanos en adelante tambi\u00e9n la Corte o el Tribunal emitidas los d\u00edas de mayo de de noviembre de de febrero de de agosto de de octubre de y de abril de En esta \u00faltima la Corte resolvi\u00f3 inter alia Levantar las medidas provisionales ordenadas por la Corte Interamericana ", - "values": [ - "Medidas Provisionales" - ] - }, - { - "text": "VOTO RAZONADO DEL JUEZ EDUARDO FERRER MACGREGOR POISOT CASO VEL\u00c1SQUEZ PAIZ Y OTROS VS. GUATEMALA SENTENCIA DE DE NOVIEMBRE DE Excepciones Preliminares Fondo Reparaciones y Costas INTRODUCCI\u00d3N SOBRE EL DEBER DE PREVENCI\u00d3N EN LA VIOLENCIA DE G\u00c9NERO La Convenci\u00f3n Interamericana para Prevenir Sancionar y Erradicar la Violencia contra la Mujer Convenci\u00f3n de Bel\u00e9m do Par\u00e1 constituye el instrumento regional que mayor consenso ha suscitado entre los pa\u00edses de las Am\u00e9ricas al haberse suscrito y o ", - "values": [ - "Voto Separado" - ] - }, - { - "text": "RESOLUCI\u00d3N DE LA CORTE INTERAMERICANA DE DERECHOS HUMANOS DE AGOSTO DE CASO MASACRE PLAN DE S\u00c1NCHEZ VS. GUATEMALA SUPERVISI\u00d3N DE CUMPLIMIENTO DE SENTENCIA VISTOS La Sentencia de Reparaciones y Costas en adelante la Sentencia de Reparaciones o la Sentencia dictada por la Corte Interamericana de Derechos Humanos en adelante la Corte o el Tribunal el de noviembre de La Resoluci\u00f3n de Supervisi\u00f3n de Cumplimiento de Sentencia de la Corte de de noviembre de mediante la cual inter alia declar\u00f3 ", - "values": [ - "Supervisi\u00f3n de cumplimiento de Sentencia" - ] - }, - { - "text": "Resoluci\u00f3n de la Corte Interamericana de Derechos Humanos de de enero de Medidas Provisionales Respecto del Per\u00fa Caso de los Hermanos G\u00f3mez Paquiyauri Vistos La Resoluci\u00f3n de la Corte Interamericana de Derechos Humanos en adelante la Corte la Corte Interamericana o el Tribunal de de mayo de mediante la cual resolvi\u00f3 inter alia requerir al Estado que adopte sin dilaci\u00f3n las medidas necesarias para proteger la vida e integridad personal de los miembros de la familia G\u00f3mez Paquiyauri que ", - "values": [ - "Medidas Provisionales" - ] - }, - { - "text": "RESOLUCI\u00d3N DE LA CORTE INTERAMERICANA DE DERECHOS HUMANOS DE DE NOVIEMBRE DE CASO NEIRA ALEGR\u00cdA Y OTROS CUMPLIMIENTO DE SENTENCIA VISTOS La sentencia de fondo dictada en el Caso Neira Alegr\u00eda y otros vs. El Per\u00fa por la Corte Interamericana de Derechos Humanos en adelante la Corte la Corte Interamericana o el Tribunal el de enero de en la que dispuso en los puntos resolutivos tercero y cuarto que Decide que el Per\u00fa est\u00e1 obligado a pagar a los familiares de las v\u00edctimas con ocasi\u00f3n de este", - "values": [ - "Supervisi\u00f3n de cumplimiento de Sentencia" - ] - }, - { - "text": " OL O CORTE INTERAMERICANA DE DERECHOS HUMANOS COUR INTERAMERICAINE DES DROITS DE LHOMME A CORTE INTERAMERICANA DE DIREITOS HUMANOS INTERAMERICAN COURT OF HUMAN RIGHTS RESOLUCION DE LA CORTE INfERAiIERICAIlA DE DERECHOS HUNlAlOS DE DE NOVIEmREDE ACUNIULACION DE CASOS Y DE AUTOS ORDENADA POR LA CORTE INfERAIERICANA DE DERECHOS OS RESPECTO DE LA REP\u00daBUCA DE TRINIDAD Y TOBAGO CASOS HlLAIRE CONSTANTINE y OTROS Y BENJAMIN Y OTROS VISTOS La demanda en el caso Hilaire us. Trinidad y Tobago ", - "values": [ - "Otros" - ] - }, - { - "text": "CORTE INTERAMERICANA DE DERECHOS HUMANOS CASO WONG HO WING VS. PER\u00da SENTENCIA DE DE JUNIO DE Interpretaci\u00f3n de la Sentencia de Excepci\u00f3n Preliminar Fondo Reparaciones y Costas En el caso Wong Ho Wing la Corte Interamericana de Derechos Humanos en adelante la Corte Interamericana la Corte o este Tribunal integrada por los siguientes jueces Roberto F. Caldas Presidente Eduardo Ferrer MacGregor Poisot Vicepresidente Manuel E. Ventura Robles Juez Eduardo Vio Grossi Juez y Humberto Antonio Sierra ", - "values": [ - "Interpretaci\u00f3n" - ] - }, - { - "text": "RESOLUCI\u00d3N DE LA CORTE INTERAMERICANA DE DERECHOS HUMANOS DE DE JULIO DE CASO EL AMPARO CUMPLIMIENTO DE SENTENCIA VISTOS La sentencia de fondo dictada en el Caso El Amparo vs. Venezuela por la Corte Interamericana de Derechos Humanos en adelante la Corte la Corte Interamericana o el Tribunal el de enero de La sentencia sobre reparaciones dictada en el presente caso por la Corte el de septiembre de La Resoluci\u00f3n del Tribunal de de noviembre de sobre el cumplimiento de sentencia en el", - "values": [ - "Supervisi\u00f3n de cumplimiento de Sentencia" - ] - }, - { - "text": "VOTO PARCIALMENTE DISIDENTE DEL JUEZ CARLOS VICENTE DE ROUX RENGIFO Me aparto de la decisi\u00f3n a la cual ha llegado la Corte en relaci\u00f3n con el monto de la indemnizaci\u00f3n compensatoria que debe pagarse a Mar\u00eda Elena Loayza Tamayo. A mi modo de ver ese monto ha debido ser mayor porque ha debido comprender tambi\u00e9n una cantidad de dinero espec\u00edficamente destinada a reparar los da\u00f1os en el proyecto de vida de la se\u00f1ora Loayza Tamayo que podr\u00eda haberse fijado en t\u00e9rminos de equidad en d\u00f3lares de los ", - "values": [ - "Voto Separado" - ] - }, - { - "text": "VOTO CONCURRENTE DEL JUEZ EDUARDO FERRER MACGREGOR POISOT A LA SENTENCIA DE LA CORTE INTERAMERICANA DE DERECHOS HUMANOS EN EL CASO CORTE SUPREMA DE JUSTICIA QUINTANA COELLO Y OTROS VS. ECUADOR DE DE AGOSTO DE I. INTRODUCCI\u00d3N LA FUNCI\u00d3N DE LA INDEPENDENCIA JUDICIAL EN EL ESTADO CONSTITUCIONAL Y DEMOCR\u00c1TICO DE DERECHO El presente caso pone de relieve la importancia de uno de los principios definitorios del Estado constitucional y democr\u00e1tico de derecho como es el de la independencia de los En", - "values": [ - "Voto Separado" - ] - }, - { - "text": "VOTO CONCURRENTE DEL JUEZ MONTIEL ARG\u00dcELLO La jurisprudencia de la Corte ha dejado establecido que la excepci\u00f3n preliminar del no agotamiento de los recursos internos puede ser renunciada Caso Viviana Gallardo y otros. Decisi\u00f3n del de noviembre de p\u00e1rr. y abundante jurisprudencia posterior y que la renuncia se presume cuando no se invoca la excepci\u00f3n en las primeras fases del procedimiento ante la Comisi\u00f3n Caso Vel\u00e1squez Rodr\u00edguez. Sentencia del de junio de p\u00e1rr. y abundante posterior. ", - "values": [ - "Voto Separado" - ] - }, - { - "text": "VOTO FUNDAMENTADO DO JUIZ AD HOC ROBERTO DE FIGUEIREDO CALDAS COM RELA\u00c7\u00c3O \u00c0 SENTEN\u00c7A DA CORTE INTERAMERICANA DE DIREITOS HUMANOS NO CASO ESCHER E OUTROS VS. BRASIL PROFERIDA EM DE JULHO DE Apresento este voto fundamentado concordante de modo geral quanto \u00e0s conclus\u00f5es da Corte com dois objetivos prec\u00edpuos. O primeiro \u00e9 deixar registrado meu entendimento pessoal relativamente a alguns temas pontuais examinados pela senten\u00e7a com os quais concordo. O segundo \u00e9 externar fundamenta\u00e7\u00e3o divergente ", - "values": [ - "Voto Separado" - ] - }, - { - "text": "RESOLUCI\u00d3N DE LA CORTE INTERAMERICANA DE DERECHOS HUMANOS DEL DE MAYO DE MEDIDAS PROVISIONALES SOLICITADAS POR LA COMISI\u00d3N INTERAMERICANA DE DERECHOS HUMANOS CASO COLOTENANGO VISTO La resoluci\u00f3n de la Corte Interamericana de Derechos Humanos del de diciembre de en cuya parte dispositiva establece Prorrogar las medidas provisionales adoptadas mediante resoluci\u00f3n del de junio de sobre el caso Colotenango por un plazo de seis meses contados a partir de la fecha y ampliarlas en favor de la ", - "values": [ - "Medidas Provisionales" - ] - }, - { - "text": "VOTO RAZONADO CONCURRENTE DEL JUEZ HERN\u00c1N SALGADO PESANTES A LAS SENTENCIAS SOBRE EXCEPCIONES PRELIMINARES EN LOS CASOS HILAIRE CONSTANTINE Y OTROS Y BENJAM\u00cdN Y OTROS Estando de acuerdo en lo fundamental con la sentencia en el Caso Benjam\u00edn y otros vs. Trinidad y Tobago quiero agregar las siguientes consideraciones En materia de reservas a los tratados al igual que en otras cuestiones del Derecho Internacional ha habido una importante evoluci\u00f3n marcada por un progreso constante. Bien podr\u00eda ", - "values": [ - "Voto Separado" - ] - }, - { - "text": "CORTE INTERAMERICANA DE DERECHOS HUMANOS CASO GRANDE VS. ARGENTINA SENTENCIA DE DE AGOSTO DE EXCEPCIONES PRELIMINARES Y FONDO En el caso Grande la Corte Interamericana de Derechos Humanos en adelante la Corte Interamericana la Corte o el Tribunal integrada por los siguientes jueces Diego Garc\u00edaSay\u00e1n Presidente Manuel E. Ventura Robles Juez Margarette May Macaulay Jueza Rhadys Abreu Blondet Jueza Alberto P\u00e9rez P\u00e9rez Juez y Eduardo Vio Grossi Juez presente adem\u00e1s Pablo Saavedra Alessandri de ", - "values": [ - "Excepciones Preliminares", - "Fondo" - ] - }, - { - "text": "CORTE INTERAMERICANA DE DERECHOS HUMANOS CASO SERVELL\u00d3N GARC\u00cdA Y OTROS VS. HONDURAS SENTENCIA DE DE SEPTIEMBRE DE En el caso Servell\u00f3n Garc\u00eda y otros la Corte Interamericana de Derechos Humanos en adelante la Corte Interamericana la Corte o el Tribunal integrada por los siguientes jueces Sergio Garc\u00eda Ram\u00edrez Presidente Alirio Abreu Burelli Vicepresidente Ant\u00f4nio A. Can\u00e7ado Trindade Juez Cecilia Medina Quiroga Jueza Manuel E. Ventura Robles Juez y Diego Garc\u00edaSay\u00e1n Juez presentes adem\u00e1s Pablo", - "values": [ - "Fondo", - "Reparaciones", - "Costas" - ] - }, - { - "text": "RESOLUCI\u00d3N DE LA CORTE INTERAMERICANA DE DERECHOS HUMANOS DE DE MAYO DE MEDIDAS PROVISIONALES RESPECTO DE COLOMBIA CASO DE LA MASACRE DE MAPIRIP\u00c1N VISTOS La Resoluci\u00f3n de medidas urgentes dictada por el Presidente de la Corte Interamericana de Derechos Humanos el de febrero de mediante la cual resolvi\u00f3 Requerir al Estado que adoptara sin dilaci\u00f3n las medidas necesarias para proteger la vida e integridad personal de las siguientes personas y sus familiares Carmen Johana Jaramillo Giraldo ", - "values": [ - "Medidas Provisionales" - ] - }, - { - "text": "RESOLUCI\u00d3N DE LA CORTE INTERAMERICANA DE DERECHOS HUMANOS DE DE NOVIEMBRE DE CASOS HILAIRE CONSTANTINE Y BENJAMIN Y OTROS Y CAESAR VS. TRINIDAD Y TOBAGO SUPERVISI\u00d3N DE CUMPLIMIENTO DE SENTENCIA VISTO Las Sentencias de fondo reparaciones y costas emitidas por la Corte Interamericana de Derechos Humanos en adelante la Corte la Corte Interamericana o el Tribunal el de junio de y el de marzo de en los casos Hilaire Constantine y Benjamin y otros y Caesar respectivamente ambos contra la de", - "values": [ - "Supervisi\u00f3n de cumplimiento de Sentencia" - ] - }, - { - "text": "Resoluci\u00f3n de la Presidenta de laCorte Interamericana de Derechos Humanos de de junio de Caso Trabajadores Cesados del Congreso Aguado Alfaro y otros vs. Per\u00fa Supervisi\u00f3n de Cumplimiento de Sentencia Visto La Sentencia de excepciones preliminares fondo reparaciones y costas en adelante la Sentencia dictada por la Corte Interamericana de Derechos Humanos en adelante la Corte la Corte Interamericana o el Tribunal el de noviembre de en el caso Trabajadores Cesados del Congreso vs. Per\u00fa la ", - "values": [ - "Supervisi\u00f3n de cumplimiento de Sentencia" - ] - }, - { - "text": "Corte Interamericana de Derechos Humanos Caso Loayza Tamayo Vs. Per\u00fa Sentencia de de noviembre de Reparaciones y Costas En el caso Loayza Tamayo la Corte Interamericana de Derechos Humanos integrada por los siguientes jueces Hern\u00e1n Salgado Pesantes Presidente Ant\u00f4nio A. Can\u00e7ado Trindade Vicepresidente M\u00e1ximo Pacheco G\u00f3mez Juez Oliver Jackman Juez Alirio Abreu Burelli Juez Sergio Garc\u00eda Ram\u00edrez Juez Carlos Vicente de Roux Rengifo Juez presentes adem\u00e1s Manuel E. Ventura Robles Secretario y M. ", - "values": [ - "Reparaciones", - "Costas" - ] - }, - { - "text": "RESOLUCI\u00d3N DE LA CORTE INTERAMERICANA DE DERECHOS HUMANOS DE DE ABRIL DE CASO CANTORAL HUAMAN\u00cd Y GARC\u00cdA SANTA CRUZ VS. PER\u00da SUPERVISI\u00d3N DE CUMPLIMIENTO DE SENTENCIA VISTO La Sentencia de excepci\u00f3n preliminar fondo reparaciones y costas en adelante tambi\u00e9n la Sentencia dictada el de julio de mediante la cual por unanimidad la Corte Interamericana de Derechos Humanos en adelante la Corte Interamericana la Corte o el Tribunal dispuso que El Estado debe investigar inmediatamente los hechos ", - "values": [ - "Supervisi\u00f3n de cumplimiento de Sentencia" - ] - }, - { - "text": "RESOLUCI\u00d3N DE LA CORTE INTERAMERICANA DE DERECHOS HUMANOS DE DE JULIO DE CASO GARC\u00cdA ASTO Y RAM\u00cdREZ ROJAS vs. PER\u00da SUPERVISI\u00d3N DE CUMPLIMIENTO DE SENTENCIA VISTOS La Sentencia de fondo reparaciones y costas emitida el de noviembre de en adelante la Sentencia por la Corte Interamericana de Derechos Humanos en adelante la Corte la Corte Interamericana o el Tribunal mediante la cual el Tribunal DECIDI\u00d3 Por unanimidad Admitir el reconocimiento de los hechos anteriores a septiembre de por el", - "values": [ - "Supervisi\u00f3n de cumplimiento de Sentencia" - ] - }, - { - "text": "Resoluci\u00f3n de la Corte Interamericana de Derechos Humanos de de noviembre de Caso Cantoral Benavides Vs. Per\u00fa Supervisi\u00f3n de Cumplimiento de Sentencia Visto La Sentencia de fondo dictada el de agosto de en cuyos puntos resolutivos decimosegundo y decimotercero la Corte Interamericana de Derechos Humanos en adelante la Corte la Corte Interamericana o el Tribunal decidi\u00f3 que el Estado debe ordenar una investigaci\u00f3n para determinar las personas responsables de las violaciones de los a que", - "values": [ - "Supervisi\u00f3n de cumplimiento de Sentencia" - ] - }, - { - "text": "RESOLUCI\u00d3N DE LA CORTE INTERAMERICANA DE DERECHOS HUMANOS DEL DE ENERO DE MEDIDAS PROVISIONALES SOLICITADAS POR LA COMISI\u00d3N INTERAMERICANA DE DERECHOS HUMANOS RESPECTO DEL PER\u00da CASO CHIPOCO La Corte Interamericana de Derechos Humanos integrada de la siguiente manera H\u00e9ctor FixZamudio Presidente Sonia Picado Sotela Vicepresidente Rafael Nieto Navia Juez Alejandro Montiel Arg\u00fcello Juez Hern\u00e1n Salgado Pesantes Juez Asdr\u00fabal AguiarAranguren Juez presentes adem\u00e1s Manuel E. Ventura Robles y Ana ", - "values": [ - "Medidas Provisionales" - ] - }, - { - "text": "Resoluci\u00f3n de la Corte Interamericana de Derechos Humanos de julio de Caso Alb\u00e1n Cornejo y otros Vs. Ecuador Supervisi\u00f3n de Cumplimiento de Sentencia Visto La Sentencia de fondo reparaciones y costas dictada por la Corte Interamericana de Derechos Humanos en adelante la Corte la Corte Interamericana o el Tribunal el de noviembre de en la cual inter alia decidi\u00f3 El Estado debe publicar en los t\u00e9rminos del p\u00e1rrafo de la Sentencia en el Diario Oficial y en otro diario de amplia nacional ", - "values": [ - "Supervisi\u00f3n de cumplimiento de Sentencia" - ] - }, - { - "text": "CORTE INTERAMERICANA DE DERECHOS HUMANOS CASO L\u00d3PEZ MENDOZA VS. VENEZUELA SENTENCIA DE DE SEPTIEMBRE DE FONDO REPARACIONES Y COSTAS En el caso L\u00f3pez Mendoza la Corte Interamericana de Derechos Humanos en adelante la Corte Interamericana la Corte o el Tribunal integrada por los siguientes jueces Diego Garc\u00edaSay\u00e1n Presidente Manuel E. Ventura Robles Juez Margarette May Macaulay Jueza Rhadys Abreu Blondet Jueza Alberto P\u00e9rez P\u00e9rez Juez y Eduardo Vio Grossi Juez presente adem\u00e1s Pablo Saavedra ", - "values": [ - "Fondo", - "Reparaciones", - "Costas" - ] - }, - { - "text": "Corte Interamericana de Derechos Humanos Caso Genie Lacayo Vs. Nicaragua Sentencia de de enero de Excepciones Preliminares En el caso Genie Lacayo la Corte Interamericana de Derechos Humanos integrada por los siguientes jueces H\u00e9ctor FixZamudio Presidente Hern\u00e1n Salgado Pesantes Vicepresidente Rafael Nieto Navia Juez Alejandro Montiel Arg\u00fcello Juez M\u00e1ximo Pacheco G\u00f3mez Juez presentes adem\u00e1s Manuel E. Ventura Robles Secretario y Ana Mar\u00eda Reina Secretaria adjunta de acuerdo con el art\u00edculo ", - "values": [ - "Excepciones Preliminares" - ] - }, - { - "text": "RESOLUCI\u00d3N DE LA CORTE INTERAMERICANA DE DERECHOS HUMANOS DE DE NOVIEMBRE DE CASO DURAND Y UGARTE VS. PER\u00da CUMPLIMIENTO DE SENTENCIA VISTOS La sentencia dictada por la Corte Interamericana de Derechos Humanos en adelante la Corte o la Corte Interamericana el de agosto de en la cual decidi\u00f3 que el Estado del Per\u00fa en adelante el Estado o el Per\u00fa hab\u00eda violado los art\u00edculos y de la Convenci\u00f3n Americana sobre Derechos Humanos en adelante la Convenci\u00f3n o la Convenci\u00f3n Americana en de y", - "values": [ - "Supervisi\u00f3n de cumplimiento de Sentencia" - ] - }, - { - "text": "VOTO DISIDENTE DEL JUEZ ALEJANDRO MONTIEL ARG\u00dcELLO He votado en contra del n\u00famero de la parte resolutiva de la sentencia sobre el fondo en el caso Blake porque a mi juicio el Estado de Guatemala no ha violado el art\u00edculo de la Convenci\u00f3n. En efecto esa disposici\u00f3n consagra el derecho de toda persona a ser o\u00edda por un juez o tribunal competente y en el caso que ahora se resuelve no encuentro que ese derecho haya sido negado a persona alguna. Los familiares del se\u00f1or Blake optaron por hacer ", - "values": [ - "Voto Separado" - ] - }, - { - "text": "RESOLUCI\u00d3N DE LA CORTE INTERAMERICANA DE DERECHOS HUMANOS DE DE JULIO DE MEDIDAS PROVISIONALES CASO MARTA COLOMINA Y LILIANA VEL\u00c1SQUEZ VISTOS La Resoluci\u00f3n de la Corte Interamericana de Derechos Humanos en adelante la Corte la Corte Interamericana o el Tribunal dictada el de septiembre de La Resoluci\u00f3n que emiti\u00f3 el Tribunal el de diciembre de La Resoluci\u00f3n emitida por la Corte el de mayo de en los casos Liliana Ortega y otras Luisiana R\u00edos y otros Luis Uzc\u00e1tegui y Marta Colomina y ", - "values": [ - "Medidas Provisionales" - ] - }, - { - "text": "VOTO CONCURRENTE RAZONADO DEL JUEZ DIEGO GARC\u00cdASAY\u00c1N EN EL CASO KIMEL VS. ARGENTINA DE DE MAYO DE I. La libertad de expresi\u00f3n en el caso Kimel vs. Argentina En la sentencia en el caso Kimel vs. Argentina la Corte reafirma el concepto de que la libertad de expresi\u00f3n es un derecho fundamental en una sociedad democr\u00e1tica. La conducta del se\u00f1or Eduardo Kimel seg\u00fan todo lo actuado configur\u00f3 el ejercicio regular de ese derecho. En el caso concreto el trabajo de investigaci\u00f3n period\u00edstica efectuado", - "values": [ - "Voto Separado" - ] - }, - { - "text": "VOTO CONCURRENTE DEL JUEZ AA. CAN\u00c7ADO TRINDADE He concurrido con mi voto a la adopci\u00f3n de la presente Sentencia de la Corte Interamericana de Derechos Humanos sobre excepciones preliminares en el caso Castillo Petruzzi versus Per\u00fa. Lo decidido por la Corte al desestimar la quinta y la sexta excepciones preliminares interpuestas por el Estado demandado relativas a la personalidad jur\u00eddica y a la legitimatio ad causam de la organizaci\u00f3n nongubernamental chilena peticionaria la Fundaci\u00f3n de Ayuda", - "values": [ - "Voto Separado" - ] - }, - { - "text": "ORDER OF THE INTERAMERICAN COURT OF HUMAN RIGHTS OF MAY CASE OF L\u00d3PEZ \u00c1LVAREZ V. HONDURAS MONITORING COMPLIANCE WITH JUDGMENT HAVING SEEN The Judgment on merits reparations and costs delivered on February hereinafter the Judgment by the InterAmerican Court of Human Rights hereinafter the InterAmerican Court or the Court. The Order on monitoring compliance with judgment issued by the InterAmerican Court on February in which it declared That as indicated in considering paragraphs and ", - "values": [ - "Supervisi\u00f3n de cumplimiento de Sentencia" - ] - }, - { - "text": "RESOLUCI\u00d3N DE LA CORTE INTERAMERICANA DE DERECHOS HUMANOS DE DE NOVIEMBRE DE MEDIDAS PROVISIONALES SOLICITADAS POR LA COMISI\u00d3N INTERAMERICANA DE DERECHOS HUMANOS RESPECTO DE LA REP\u00daBLICA BOLIVARIANA DE VENEZUELA CASO DE LUISIANA R\u00cdOS Y OTROS VISTOS La Resoluci\u00f3n de la Corte Interamericana de Derechos Humanos en adelante la Corte Interamericana la Corte o el Tribunal de de noviembre de mediante la cual resolvi\u00f3 Requerir al Estado que adoptara sin dilaci\u00f3n cuantas medidas fueran necesarias ", - "values": [ - "Medidas Provisionales" - ] - }, - { - "text": "RESOLUCI\u00d3N DE LA CORTE INTERAMERICANA DE DERECHOS HUMANOS DE DE NOVIEMBRE DE CASO BARRIOS ALTOS CUMPLIMIENTO DE SENTENCIA VISTOS La sentencia sobre reparaciones dictada en el caso Barrios Altos por la Corte Interamericana de Derechos Humanos en adelante la Corte o el Tribunal el de noviembre de en cuyos puntos resolutivos decidi\u00f3 por unanimidad Aprobar en los t\u00e9rminos de la Sentencia el acuerdo sobre reparaciones suscrito el de agosto de entre el Estado del Per\u00fa y las v\u00edctimas sus y ", - "values": [ - "Supervisi\u00f3n de cumplimiento de Sentencia" - ] - }, - { - "text": "Corte Interamericana de Derechos Humanos Caso Barrios Altos Vs. Per\u00fa Sentencia de de noviembre de Reparaciones y Costas En el caso Barrios Altos la Corte Interamericana de Derechos Humanos en adelante la Corte Interamericana la Corte o el Tribunal integrada por los siguientes jueces Ant\u00f4nio A. Can\u00e7ado Trindade Presidente M\u00e1ximo Pacheco G\u00f3mez Vicepresidente Hern\u00e1n Salgado Pesantes Juez Alirio Abreu Burelli Juez Sergio Garc\u00eda Ram\u00edrez Juez y Carlos Vicente de Roux Rengifo Juez presentes adem\u00e1s ", - "values": [ - "Reparaciones", - "Costas" - ] - }, - { - "text": "VOTO CONCURRENTE RAZONADO DEL JUEZ SERGIO GARC\u00cdA RAM\u00cdREZ EN EL CASO HILAIRE CONSTANTINE BENJAMIN Y OTROS VS. TRINIDAD Y TOBAGO DEL DE JUNIO DE El punto de mayor relevancia y complejidad en este caso ata\u00f1e a la incompatibilidad de la Offences against the Person Act de Trinidad y Tobago de de abril de mencionada en la sentencia como Ley de Delitos contra la Persona con la Convenci\u00f3n Americana sobre Derechos Humanos. A este respecto la Corte resolvi\u00f3 por el voto un\u00e1nime de sus integrantes ", - "values": [ - "Voto Separado" - ] - }, - { - "text": "RESOLUCI\u00d3N DE LA CORTE INTERAMERICANA DE DERECHOS HUMANOS DE DE NOVIEMBRE DE CASO SU\u00c1REZ ROSERO CUMPLIMIENTO DE SENTENCIA VISTOS La Sentencia de Fondo dictada en el caso Su\u00e1rez Rosero por la Corte Interamericana de Derechos Humanos en adelante la Corte o el Tribunal el de noviembre de mediante la cual por unanimidad Declar\u00f3 que el Estado del Ecuador viol\u00f3 en perjuicio de Rafael Iv\u00e1n Su\u00e1rez Rosero el art\u00edculo de la Convenci\u00f3n Americana sobre Derechos Humanos en concordancia con el de la", - "values": [ - "Supervisi\u00f3n de cumplimiento de Sentencia" - ] - }, - { - "text": "RESOLUCI\u00d3N DE LA CORTE INTERAMERICANA DE DERECHOS HUMANOS DE DE ENERO DE CASOS VEL\u00c1SQUEZ RODR\u00cdGUEZ FAIR\u00c9N GARBI Y SOL\u00cdS CORRALES Y GOD\u00cdNEZ CRUZ LA CORTE INTERAMERICANA DE DERECHOS HUMANOS VISTO Que esta Corte ha tenido conocimiento de que dentro de la jurisdicci\u00f3n territorial de la Rep\u00fablica de Honduras fue asesinado el d\u00eda de enero de el Sargento Jos\u00e9 Isa\u00edas Vilorio quien estaba citado para rendir declaraci\u00f3n como testigo ante ella durante la audiencia que tendr\u00eda lugar en este XVIII de", - "values": [ - "Medidas Provisionales" - ] - }, - { - "text": "Corte Interamericana de Derechos Humanos Caso Garrido y Baigorria Vs. Argentina Sentencia de de febrero de Fondo En el caso Garrido y Baigorria la Corte Interamericana de Derechos Humanos integrada por los siguientes jueces H\u00e9ctor FixZamudio Presidente Hern\u00e1n Salgado Pesantes Vicepresidente Alejandro Montiel Arg\u00fcello Juez M\u00e1ximo Pacheco G\u00f3mez Juez Oliver Jackman Juez Alirio Abreu Burelli Juez Ant\u00f4nio A. Can\u00e7ado Trindade Juez Julio A. Barberis Juez ad hoc presentes adem\u00e1s Manuel E. Ventura y", - "values": [ - "Fondo" - ] - }, - { - "text": "VOTO CONCURRENTE DEL JUEZ DIEGO GARCIASAY\u00c1N SENTENCIA DE LA CORTE INTERAMERICANA DE DERECHOS HUMANOS CASO BARBANI DUARTE Y OTROS VS. URUGUAY DE DE OCTUBRE DE En esta sentencia se reitera la jurisprudencia constante de la Corte Interamericana acerca de las garant\u00edas que protegen a las personas tanto en procesos judiciales como ante procedimientos no judiciales en los que se determinen sus derechos u obligaciones. En efecto en esta sentencia se se\u00f1ala que el art\u00edculo de la Convenci\u00f3n consagra", - "values": [ - "Voto Separado" - ] - }, - { - "text": "RESOLUCI\u00d3N DE LA CORTE INTERAMERICANA DE DERECHOS HUMANOS DE DE JUNIO DE CASO RADILLA PACHECO VS. ESTADOS UNIDOS MEXICANOS SUPERVISI\u00d3N DE CUMPLIMIENTO DE SENTENCIA VISTO La Sentencia de excepciones preliminares fondo reparaciones y costas en adelante la Sentencia dictada por la Corte Interamericana de Derechos Humanos en adelante la Corte Interamericana la Corte o el Tribunal el de noviembre de La Resoluci\u00f3n de Supervisi\u00f3n de Cumplimiento de la Sentencia emitida por el Tribunal el de de", - "values": [ - "Supervisi\u00f3n de cumplimiento de Sentencia" - ] - }, - { - "text": "RESOLUCI\u00d3N DE LA CORTE INTERAMERICANA DE DERECHOS HUMANOS DE DE SEPTIEMBRE DE MEDIDAS PROVISIONALES SOLICITADAS POR LA COMISI\u00d3N INTERAMERICANA DE DERECHOS HUMANOS RESPECTO DE LA REP\u00daBLICA DE GUATEMALA CASO COLOTENGO VISTO La resoluci\u00f3n Corte Interamericana de Derechos Humanos en adelante la Corte o a Corte Interamericana de de febrero de en cuya parte dispositiva establece Tomar nota de la medidas adoptadas por el Gobierno de la Rep\u00fablica de Guatemala en cumplimiento de la resoluci\u00f3n de ", - "values": [ - "Medidas Provisionales" - ] - }, - { - "text": " VOTO RAZONADO CONCURRENTE DEL JUEZ HERN\u00c1N SALGADO PESANTES A prop\u00f3sito de este caso se ha vuelto a reflexionar sobre el denominado derecho a la verdad derecho que si bien no est\u00e1 expresado en la Convenci\u00f3n puede encontrarse una referencia impl\u00edcita en algunas disposiciones de la Convenci\u00f3n Americana como por ejemplo los art\u00edculos y El derecho a la verdad se ha ido configurando en un contexto hist\u00f3rico donde el abuso del poder estatal ha dejado graves conflictos sobre todo cuando la de ", - "values": [ - "Voto Separado" - ] - }, - { - "text": "RESOLUCI\u00d3N DEL PRESIDENTE DE LA CORTE INTERAMERICANA DE DERECHOS HUMANOS DE DE DICIEMBRE DE CASO PEDRO MIGUEL VERA VERA Y OTROS VS. ECUADOR VISTOS El escrito de demanda presentado por la Comisi\u00f3n Interamericana de Derechos Humanos en adelante la Comisi\u00f3n Interamericana o la Comisi\u00f3n ante la Corte Interamericana de Derechos Humanos en adelante la Corte Interamericana la Corte o el Tribunal el de febrero de mediante el cual ofreci\u00f3 dos dict\u00e1menes periciales. La comunicaci\u00f3n presentada el ", - "values": [ - "Otros" - ] - }, - { - "text": "Resoluci\u00f3n de la Corte Interamericana de Derechos Humanos De de febrero de Caso Ricardo Canese Vs. Paraguay Supervisi\u00f3n de Cumplimiento de Sentencia VISTO La Sentencia de fondo reparaciones y costas dictada por la Corte Interamericana de Derechos Humanos en adelante la Corte o el Tribunal el de agosto de mediante la cual DISPUSO por unanimidad que La Sentencia constituye per se una forma de reparaci\u00f3n en los t\u00e9rminos de los p\u00e1rrafos y de la misma. El Estado debe pagar la cantidad de ", - "values": [ - "Supervisi\u00f3n de cumplimiento de Sentencia" - ] - }, - { - "text": "RESOLUCI\u00d3N DE LA CORTE INTERAMERICANA DE DERECHOS HUMANOS DE DE NOVIEMBRE DE CASO CASTILLO P\u00c1EZ VS. PER\u00da SUPERVISI\u00d3N DE CUMPLIMIENTO DE SENTENCIA VISTO La Sentencia de excepciones preliminares dictada por la Corte Interamericana de Derechos Humanos en adelante la Corte Interamericana la Corte o el Tribunal el de enero de la Sentencia de fondo dictada por la Corte el de noviembre de en adelante la Sentencia de fondo y la Sentencia de reparaciones y costas dictada por la Corte el de de ", - "values": [ - "Supervisi\u00f3n de cumplimiento de Sentencia" - ] - }, - { - "text": "RESOLUCI\u00d3N DE LA CORTE INTERAMERICANA DE DERECHOS HUMANOS DE DE SEPTIEMBRE DE MEDIDAS PROVISIONALES ADOPTADAS POR LA CORTE INTERAMERICANA DE DERECHOS HUMANOS RESPECTO DE LA REP\u00daBLICA DEL PER\u00da CASO LOAYZA TAMAYO VISTO La resoluci\u00f3n dictada por el Presidente de la Corte Interamericana de Derechos Humanos en adelante la Corte Interamericana o la Corte el de junio de en la que dispuso Solicitar al Gobierno de la Rep\u00fablica del Per\u00fa que adopte sin dilaci\u00f3n cuantas medidas sean necesarias para ", - "values": [ - "Medidas Provisionales" - ] - }, - { - "text": "RESOLUCI\u00d3N DE LA CORTE INTERAMERICANA DE DERECHOS HUMANOS DE DE JULIO DE MEDIDAS PROVISIONALES REP\u00daBLICA BOLIVARIANA RESPECTO DE LA DE VENEZUELA ASUNTO CARLOS NIETO PALMA Y OTROS VISTO La Resoluci\u00f3n de la Corte Interamericana de Derechos Humanos en adelante la Corte Interamericana la Corte o el Tribunal de de julio de mediante la cual otorg\u00f3 medidas provisionales a favor del se\u00f1or Carlos Nieto Palma y sus familiares Yvonne Palma S\u00e1nchez Eva Teresa Nieto Palma y John Carmelo Laicono Nieto. ", - "values": [ - "Medidas Provisionales" - ] - }, - { - "text": "VOTO CONJUNTO PARCIALMENTE DISIDENTE DE LOS JUECES ROBERTO F. CALDAS Y EDUARDO FERRER MACGREGOR POISOT CASO DEFENSOR DE DERECHOS HUMANOS Y OTROS VS. GUATEMALA SENTENCIA DE DE AGOSTO DE EXCEPCIONES PRELIMINARES FONDO REPARACIONES Y COSTAS Emitimos el presente voto parcialmente disidente para fundamentar los motivos por los cuales discrepamos con lo decidido en los puntos resolutivos y de la Sentencia de de agosto de en el Caso Defensor de Derechos Humanos y Otros Vs. Guatemala en adelante", - "values": [ - "Voto Separado" - ] - }, - { - "text": "VOTO RAZONADO DEL JUEZ SERGIO GARCIA RAMIREZ EN EL CASO RAXCACO REYES VS. GUATEMALA. SENTENCIA DEL DE SEPTIEMBRE DE A LA PENA DE MUERTE EN JURISPRUDENCIA INTERAMERICANA LA CONVENCION AMERICANA Y EN LA En el caso al que se refiere este Voto razonado que acompa\u00f1o a la sentencia adoptada por la Corte Interamericana con unanimidad de votos el Tribunal interamericano se plantea una vez m\u00e1s el tema de la pena de muerte anteriormente examinado en el desempe\u00f1o de las atribuciones consultivas del OC", - "values": [ - "Voto Separado" - ] - }, - { - "text": "VOTO CONCURRENTE DE LA JUEZA MARGARETTE MAY MACAULAY A LA SENTENCIA DE LA CORTE INTERAMERICANA DE DERECHOS HUMANOS CASO BARBANI DUARTE Y OTROS VS. URUGUAY DE DE OCTUBRE DE Me siento obligada a emitir mi opini\u00f3n concurrente sobre las afirmaciones en la decisi\u00f3n de la mayor\u00eda de la Corte tal como aparecen en los p\u00e1rrafos y a de la sentencia en cuesti\u00f3n a\u00f1adiendo lo siguiente respecto al tema del art\u00edculo de la Convenci\u00f3n y su aplicaci\u00f3n. En mi opini\u00f3n el art\u00edculo no s\u00f3lo se refiere a de", - "values": [ - "Voto Separado" - ] - }, - { - "text": "Corte Interamericana de Derechos Humanos Caso Las Palmeras Vs. Colombia Sentencia de de febrero de Excepciones Preliminares En el caso Las Palmeras la Corte Interamericana de Derechos Humanos en adelante la Corte o la Corte Interamericana integrada de la siguiente manera Ant\u00f4nio A. Can\u00e7ado Trindade Presidente M\u00e1ximo Pacheco G\u00f3mez Vicepresidente Hern\u00e1n Salgado Pesantes Juez Oliver Jackman Juez Alirio Abreu Burelli Juez Sergio Garc\u00eda Ram\u00edrez Juez y Julio A. Barberis Juez ad hoc presentes adem\u00e1s", - "values": [ - "Excepciones Preliminares" - ] - }, - { - "text": "RESOLUCI\u00d3N DE LA CORTE INTERAMERICANA DE DERECHOS HUMANOS DE DE SEPTIEMBRE DE CASO CANTORAL HUAMAN\u00cd Y GARC\u00cdA SANTA CRUZ VS. PER\u00da SUPERVISI\u00d3N DE CUMPLIMIENTO DE SENTENCIA VISTO La Sentencia de excepci\u00f3n preliminar fondo reparaciones y costas en adelante tambi\u00e9n la Sentencia dictada por la Corte Interamericana de Derechos Humanos en adelante la Corte Interamericana la Corte o el Tribunal el de julio de mediante la cual dispuso que El Estado debe investigar inmediatamente los hechos que ", - "values": [ - "Supervisi\u00f3n de cumplimiento de Sentencia" - ] - }, - { - "text": "RESOLUCI\u00d3N DE LA CORTE INTERAMERICANA DE DERECHOS HUMANOS DE JULIO DE CASO INSTITUTO DE REEDUCACI\u00d3N DEL MENOR VS. PARAGUAY CUMPLIMIENTO DE SENTENCIA VISTOS La sentencia dictada por la Corte Interamericana de Derechos Humanos en adelante la Corte la Corte Interamericana o el Tribunal el de septiembre de mediante el cual DECIDI\u00d3 Por unanimidad desestimar las excepciones preliminares referentes al defecto legal en la presentaci\u00f3n de la demanda y a la falta de reclamaci\u00f3n previa del art\u00edculo ", - "values": [ - "Supervisi\u00f3n de cumplimiento de Sentencia" - ] - }, - { - "text": "Resoluci\u00f3n de la Presidenta de la Corte Interamericana de Derechos Humanos de de noviembre de Caso de los Ni\u00f1os de la Calle Villagr\u00e1n Morales y otros vs. Guatemala Supervisi\u00f3n de Cumplimiento de Sentencias Vistos La Sentencia de fondo dictada por la Corte Interamericana de Derechos Humanos en adelante la Corte la Corte Interamericana o el Tribunal el de noviembre de La Sentencia de reparaciones y costas dictada por la Corte Interamericana el de mayo de La Resoluci\u00f3n de la Corte de de", - "values": [ - "Supervisi\u00f3n de cumplimiento de Sentencia" - ] - }, - { - "text": "Corte Interamericana De Derechos Humanos Caso De La Cruz Flores Vs. Per\u00fa Sentencia de de noviembre de Fondo Reparaciones y Costas En el caso De La Cruz Flores la Corte Interamericana de Derechos Humanos en adelante la Corte la Corte Interamericana o el Tribunal integrada por los siguientes jueces Sergio Garc\u00eda Ram\u00edrez Presidente Alirio Abreu Burelli Vicepresidente Oliver Jackman Juez Ant\u00f4nio A. Can\u00e7ado Trindade Juez Cecilia Medina Quiroga Jueza y Manuel E. Ventura Robles Juez presentes adem\u00e1s", - "values": [ - "Fondo", - "Reparaciones", - "Costas" - ] - }, - { - "text": "RESOLUCI\u00d3N DE LA CORTE INTERAMERICANA DE DERECHOS HUMANOS DEL DE JUNIO DE MEDIDAS PROVISIONALES SOLICITADAS POR LA COMISI\u00d3N INTERAMERICANA DE DERECHOS HUMANOS RESPECTO DE LA REP\u00daBLICA DEL ECUADOR CASO SU\u00c1REZ ROSERO VISTO El escrito de de marzo de y sus anexos mediante el cual la Comisi\u00f3n Interamericana de Derechos Humanos en adelante la Comisi\u00f3n o la Comisi\u00f3n Interamericana remiti\u00f3 a la Corte Interamericana de Derechos Humanos en adelante la Corte o la Corte Interamericana en virtud de los", - "values": [ - "Medidas Provisionales" - ] - }, - { - "text": "VOTO RAZONADO DEL JUEZ SERGIO GARC\u00cdA RAM\u00cdREZ EN RELACI\u00d3N CON LA SENTENCIA DE LA CORTE INTERAMERICANA DE DERECHOS HUMANOS EN EL CASO DACOSTA CADOGAN BARBADOS DE DE SEPTIEMBRE DE El caso DaCosta Cadogan a cuya sentencia agrego este voto brinda a la Corte una nueva oportunidad para reprobar la figura de la pena de muerte obligatoria o forzosa que a\u00fan recogen algunas legislaciones nacionales y que contraviene por los motivos expuestos por la propia Corte en reiteradas ocasiones los t\u00e9rminos del ", - "values": [ - "Voto Separado" - ] - }, - { - "text": "Corte Interamericana de Derechos Humanos Caso Caesar Vs. Trinidad y Tobago Resoluci\u00f3n del de Noviembre de Supervisi\u00f3n de Cumplimiento de Sentencia VISTOS La Sentencia de fondo reparaciones y costas dictada por la Corte Interamericana de Derechos Humanos en adelante la Corte o la Corte Interamericana el de marzo de en adelante la Sentencia mediante la cual DECLAR\u00d3 Por unanimidad que El Estado viol\u00f3 el derecho consagrado en el art\u00edculo y de la Convenci\u00f3n Americana sobre Derechos Humanos ", - "values": [ - "Supervisi\u00f3n de cumplimiento de Sentencia" - ] - }, - { - "text": "Voto del Juez ad hoc Dr. Jorge E. Orihuela Iberico sobre la Excepci\u00f3n Preliminar de incompetencia de la Comisi\u00f3n Caso Neira Alegr\u00eda y Otros I. II. III. IV. Hechos Normatividad Jurisprudencia Conclusiones y voto I. Hechos A La petici\u00f3n o denuncia Anterior a la presentaci\u00f3n de la denuncia a la Comisi\u00f3n Recurso de h\u00e1beas corpus que se tramita entre el de julio de en tres instancias ante el Poder Judicial y concluye el de agosto de Recurso de casaci\u00f3n ante el Tribunal de Garant\u00edas que se ", - "values": [ - "Voto Separado" - ] - }, - { - "text": "Corte Interamericana de Derechos Humanos Caso Cesti Hurtado Vs. Per\u00fa Sentencia de de septiembre de Fondo En el caso Cesti Hurtado la Corte Interamericana de Derechos Humanos en adelante la Corte la Corte Interamericana o el Tribunal integrada por los siguientes jueces Ant\u00f4nio A. Can\u00e7ado Trindade Presidente M\u00e1ximo Pacheco G\u00f3mez Vicepresidente Oliver Jackman Juez Alirio Abreu Burelli Juez Sergio Garc\u00eda Ram\u00edrez Juez y Carlos Vicente de Roux Rengifo Juez presentes adem\u00e1s Manuel E. Ventura Robles ", - "values": [ - "Fondo" - ] - }, - { - "text": "VOTO CONCURRENTE DEL JUEZ EDUARDO FERRER MACGREGOR POISOT CASO GONZALES LLUY Y OTROS VS. ECUADOR SENTENCIA DE DE SEPTIEMBRE DE Excepciones Preliminares Fondo Reparaciones y Costas Los Jueces Roberto F. Caldas y Manuel E. Ventura Robles se adhirieron al presente Voto del Juez Eduardo Ferrer MacGregor Poisot. INTRODUCCI\u00d3N SOBRE EL DERECHO A LA EDUCACI\u00d3N Y EL DERECHO A LA SALUD Este es el primer caso en la historia de la Corte Interamericana de Derechos Humanos en adelante Corte IDH o Tribunal ", - "values": [ - "Voto Separado" - ] - }, - { - "text": "Corte Interamericana de Derechos Humanos Caso de la Panel Blanca Paniagua Morales y otros Vs. Guatemala Sentencia de de mayo de Reparaciones y Costas En el caso de la Panel Blanca la Corte Interamericana de Derechos Humanos integrada por los siguientes jueces Ant\u00f4nio A. Can\u00e7ado Trindade Presidente Hern\u00e1n Salgado Pesantes Juez Oliver Jackman Juez Alirio Abreu Burelli Juez Sergio Garc\u00eda Ram\u00edrez Juez Carlos Vicente de Roux Rengifo Juez y Edgar E. Larraondo Salguero Juez ad hoc presentes adem\u00e1s ", - "values": [ - "Reparaciones", - "Costas" - ] - }, - { - "text": "Resoluci\u00f3n de la Corte Interamericana de Derechos Humanos de de noviembre de Caso Bulacio Vs. Argentina Supervisi\u00f3n de Cumplimiento de Sentencia Vistos La Sentencia de fondo reparaciones y costas de de septiembre de en adelante la Sentencia dictada por la Corte Interamericana de Derechos Humanos en adelante la Corte Interamericana la Corte o el Tribunal notificada \u00edntegramente a la Rep\u00fablica Argentina en adelante el Estado o Argentina el de octubre de mediante la cual decidi\u00f3 por que el", - "values": [ - "Supervisi\u00f3n de cumplimiento de Sentencia" - ] - }, - { - "text": "RESOLUCI\u00d3N DE LA CORTE INTERAMERICANA DE DERECHOS HUMANOS DE DE MAYO DE MEDIDAS PROVISIONALES RESPECTO DE LA REP\u00daBLICA DE TRINIDAD Y TOBAGO ASUNTO DOTTIN Y OTROS VISTO Las Resoluciones del Presidente de la Corte Interamericana de Derechos Humanos en adelante la Corte Interamericana la Corte o el Tribunal de de mayo de junio y y de julio de y de de junio de as\u00ed como las Resoluciones del Tribunal de de junio y de agosto de y de mayo y de septiembre de de agosto y de noviembre ", - "values": [ - "Medidas Provisionales" - ] - }, - { - "text": "Corte Interamericana de Derechos Humanos Caso G\u00f3mez Palomino Vs. Per\u00fa Sentencia de de noviembre de Fondo Reparaciones y Costas En el caso G\u00f3mez Palomino La Corte Interamericana de Derechos Humanos en adelante la Corte la Corte Interamericana o el Tribunal integrada por los siguientes jueces Sergio Garc\u00eda Ram\u00edrez Presidente Alirio Abreu Burelli Vicepresidente Oliver Jackman Juez Ant\u00f4nio A. Can\u00e7ado Trindade Juez Cecilia Medina Quiroga Jueza Manuel E. Ventura Robles Juez y Diego Garc\u00edaSay\u00e1n Juez", - "values": [ - "Fondo", - "Reparaciones", - "Costas" - ] - }, - { - "text": "RESOLUCI\u00d3N DE LA PRESIDENTA DE LA CORTE INTERAMERICANA DE DERECHOS HUMANOS DE DE DICIEMBRE DE CASO DE LAS HERMANAS SERRANO CRUZ VS. EL SALVADOR SUPERVISI\u00d3N DE CUMPLIMIENTO DE SENTENCIA VISTO La Sentencia de fondo reparaciones y costas en adelante la Sentencia dictada por la Corte Interamericana de Derechos Humanos en adelante la Corte Interamericana la Corte o el Tribunal el de marzo de Las resoluciones de supervisi\u00f3n de cumplimiento de la Sentencia dictadas por la Corte el de septiembre", - "values": [ - "Supervisi\u00f3n de cumplimiento de Sentencia" - ] - }, - { - "text": "CORTE INTERAMERICANA DE DERECHOS HUMANOS CASO CANTORAL HUAMAN\u00cd Y GARC\u00cdA SANTA CRUZ VS. PER\u00da SENTENCIA DE DE JULIO DE EXCEPCI\u00d3N PRELIMINAR FONDO REPARACIONES Y COSTAS En el Caso Cantoral Huaman\u00ed y Garc\u00eda Santa Cruz la Corte Interamericana de Derechos Humanos en adelante la Corte Interamericana la Corte o el Tribunal integrada por los siguientes jueces Sergio Garc\u00eda Ram\u00edrez Presidente Cecilia Medina Quiroga Vicepresidenta Manuel E. Ventura Robles Juez Leonardo A. Franco Juez Margarette May y ", - "values": [ - "Excepciones Preliminares", - "Fondo", - "Reparaciones", - "Costas" - ] - }, - { - "text": "RESOLUCI\u00d3N DE LA CORTE INTERAMERICANA DE DERECHOS HUMANOS DE DE FEBRERO DE MEDIDAS PROVISIONALES RESPECTO DE LA REP\u00daBLICA DE COLOMBIA ASUNTO GIRALDO CARDONA Y OTROS Visto La Resoluci\u00f3n del Presidente de la Corte Interamericana de Derechos Humanos en adelante la Corte la Corte Interamericana o el Tribunal de de octubre de y las Resoluciones de la Corte de de febrero y de abril de de junio y de noviembre de de septiembre de de diciembre de y de noviembre de En esta \u00faltima la ", - "values": [ - "Medidas Provisionales" - ] - }, - { - "text": "Corte Interamericana de Derechos Humanos Caso Constantine y otros Vs. Trinidad y Tobago Sentencia de de septiembre de Excepciones Preliminares En el caso Constantine y otros la Corte Interamericana de Derechos Humanos en adelante la Corte Interamericana la Corte o el Tribunal integrada por los siguientes jueces Ant\u00f4nio A. Can\u00e7ado Trindade Presidente M\u00e1ximo Pacheco G\u00f3mez Vicepresidente Hern\u00e1n Salgado Pesantes Juez Oliver Jackman Juez Alirio Abreu Burelli Juez Sergio Garc\u00eda Ram\u00edrez Juez y de ", - "values": [ - "Excepciones Preliminares" - ] - }, - { - "text": "Corte Interamericana de Derechos Humanos Caso Cantoral Benavides Vs. Per\u00fa Sentencia de de agosto de Fondo En el caso Cantoral Benavides la Corte Interamericana de Derechos Humanos en adelante la Corte o la Corte Interamericana o el Tribunal integrada por los siguientes jueces Ant\u00f4nio A. Can\u00e7ado Trindade Presidente M\u00e1ximo Pacheco G\u00f3mez Vicepresidente Hern\u00e1n Salgado Pesantes Juez Oliver Jackman Juez Alirio Abreu Burelli Juez Sergio Garc\u00eda Ram\u00edrez Juez Carlos Vicente de Roux Rengifo Juez y ", - "values": [ - "Fondo" - ] - }, - { - "text": "Corte Interamericana de Derechos Humanos Caso Ivcher Bronstein Vs. Per\u00fa Sentencia de de septiembre de Competencia En el caso Ivcher Bronstein la Corte Interamericana de Derechos Humanos en adelante la Corte la Corte Interamericana o el Tribunal integrada por los siguientes jueces Ant\u00f4nio A. Can\u00e7ado Trindade Presidente M\u00e1ximo Pacheco G\u00f3mez Vicepresidente Oliver Jackman Juez Alirio Abreu Burelli Juez Sergio Garc\u00eda Ram\u00edrez Juez y Carlos Vicente de Roux Rengifo Juez presentes adem\u00e1s Manuel E. ", - "values": [ - "Competencia" - ] - }, - { - "text": "RESOLUCI\u00d3N DE LA CORTE INTERAMERICANA DE DERECHOS HUMANOS DE DE FEBRERO DE CASO DEFENSOR DE DERECHOS HUMANOS Y OTROS VS. GUATEMALA SUPERVISI\u00d3N DE CUMPLIMIENTO DE SENTENCIA VISTO La Sentencia de excepciones preliminares fondo reparaciones y costas en adelante la Sentencia dictada por la Corte Interamericana de Derechos Humanos en adelante la Corte la Corte Interamericana o este Tribunal el de agosto de La Corte declar\u00f3 responsable internacionalmente a la Rep\u00fablica de Guatemala en adelante ", - "values": [ - "Supervisi\u00f3n de cumplimiento de Sentencia" - ] - }, - { - "text": "Resoluci\u00f3n de la Corte Interamericana de Derechos Humanos de de julio de Medidas Provisionales respecto de Rep\u00fablica Dominicana Asunto Haitianos y Dominicanos de origen Haitiano en la Rep\u00fablica Dominicana Visto Las Resoluciones de la Corte Interamericana de Derechos Humanos en adelante la Corte o la Corte Interamericana o el Tribunal de de junio y de agosto de septiembre y de noviembre de de mayo de de octubre de y de febrero de Los informes de Rep\u00fablica Dominicana en adelante ", - "values": [ - "Medidas Provisionales" - ] - }, - { - "text": "RESOLUCI\u00d3N DEL PRESIDENTE DE LA CORTE INTERAMERICANA DE DERECHOS HUMANOS DE DE DICIEMBRE DE CASO GUTI\u00c9RREZ Y FAMILIA VS. ARGENTINA VISTO El escrito de sometimiento del caso presentado por la Comisi\u00f3n Interamericana de Derechos Humanos en adelante la Comisi\u00f3n Interamericana o la Comisi\u00f3n ante la Corte Interamericana de Derechos Humanos en adelante la Corte Interamericana la Corte o el Tribunal el de agosto de mediante el cual ofreci\u00f3 un dictamen pericial. La Comisi\u00f3n indic\u00f3 el objeto de ", - "values": [ - "Otros" - ] - }, - { - "text": "VOTO DISSIDENTE DO JUIZ PIZA ESCALANTE N\u00e3o haveria tido reserva alguma para subscrever a totalidade da senten\u00e7a se o ponto \u00ba tivesse sido redigido em termos como os seguintes Decide que a forma e quantia desta indeniza\u00e7\u00e3o ser\u00e3o fixadas pela Corte caso as partes com interven\u00e7\u00e3o da Comiss\u00e3o n\u00e3o se ponham de acordo a esse respeito num per\u00edodo de seis meses a partir da data desta senten\u00e7a e deixa aberto para esse efeito o procedimento. Inclusive teria concorrido a uma decis\u00e3o menos definitiva que", - "values": [ - "Voto Separado" - ] - }, - { - "text": "VOTO CONCORDANTE DO JUIZ EDUARDO VIO GROSSI SENTEN\u00c7A DE DE AGOSTO DE CASO DA COMUNIDADE IND\u00cdGENA X\u00c1KMOK K\u00c1SEK VS. PARAGUAI M\u00c9RITO REPARA\u00c7\u00d5ES E CUSTAS DA CORTE INTERAMERICANA DE DIREITOS HUMANOS INTRODU\u00c7\u00c3O Concordo atrav\u00e9s deste voto com a decis\u00e3o indicada n\u00e3o s\u00f3 por compartilhar o que nela se indica mas tamb\u00e9m porque se insere em uma dire\u00e7\u00e3o que considero adaptada ao Direito e \u00e0 Justi\u00e7a e em conformidade com o desenvolvimento progressivo do Direito Internacional no que respeita aos povos o ", - "values": [ - "Voto Separado" - ] - }, - { - "text": "RESOLUCI\u00d3N DEL PRESIDENTE DE LA CORTE INTERAMERICANA DE DERECHOS HUMANOS DE DE JULIO DE FONDO DE ASISTENCIA LEGAL DE V\u00cdCTIMAS CASO LAGOS DEL CAMPO VS. PER\u00da VISTO El escrito de de noviembre de y sus anexos mediante los cuales la Comisi\u00f3n Interamericana de Derechos Humanos en adelante la Comisi\u00f3n Interamericana o la Comisi\u00f3n someti\u00f3 ante la Corte Interamericana de Derechos Humanos en adelante la Corte Interamericana la Corte o el Tribunal el presente caso. El escrito de de abril de y sus ", - "values": [ - "Fondo de asistencia a v\u00edctimas" - ] - }, - { - "text": "RESOLUCI\u00d3N DE LA CORTE INTERAMERICANA DE DERECHOS HUMANOS DEL DE ENERO DE MEDIDAS PROVISIONALES SOLICITADAS POR LA COMISI\u00d3N INTERAMERICANA DE DERECHOS HUMANOS RESPECTO DE LA REP\u00daBLICA ARGENTINA CASO REGGIARDO TOLOSA La Corte Interamericana de Derechos Humanos integrada de la siguiente manera Sonia Picado Sotela Presidenta H\u00e9ctor FixZamudio Juez Alejandro Montiel Arg\u00fcello Juez Hern\u00e1n Salgado Pesantes Juez Asdr\u00fabal AguiarAranguren Juez presentes adem\u00e1s Manuel E. Ventura Robles Secretario Ana ", - "values": [ - "Medidas Provisionales" - ] - }, - { - "text": "RESOLUCI\u00d3N DE LA CORTE INTERAMERICANA DE DERECHOS HUMANOS DE DE SEPTIEMBRE DE CASO DE LOS HERMANOS G\u00d3MEZ PAQUIYAURI Vs. PER\u00da SUPERVISI\u00d3N DE CUMPLIMIENTO DE SENTENCIA VISTO La Sentencia de fondo reparaciones y costas emitida el de julio de en adelante la Sentencia por la Corte Interamericana de Derechos Humanos en adelante la Corte la Corte Interamericana o el Tribunal mediante la cual el Tribunal declar\u00f3 inter alia que el Estado viol\u00f3 el Derecho a la Vida consagrado en el art\u00edculo de la", - "values": [ - "Supervisi\u00f3n de cumplimiento de Sentencia" - ] - }, - { - "text": "CORTE INTERAMERICANA DE DERECHOS HUMANOS CASO MALDONADO ORDO\u00d1EZ VS. GUATEMALA SENTENCIA DE DE MAYO DE Excepci\u00f3n Preliminar Fondo Reparaciones y Costas En el caso Maldonado Ordo\u00f1ez la Corte Interamericana de Derechos Humanos en adelante la Corte Interamericana la Corte o este Tribunal integrada por los siguientes Jueces Roberto F. Caldas Presidente Eduardo Ferrer MacGregor Poisot Vicepresidente Eduardo Vio Grossi Juez Humberto Antonio Sierra Porto Juez Elizabeth Odio Benito Juez Eugenio Ra\u00fal ", - "values": [ - "Excepciones Preliminares", - "Fondo", - "Reparaciones", - "Costas" - ] - }, - { - "text": "RESOLUCI\u00d3N DE LA CORTE INTERAMERICANA DE DERECHOS HUMANOS DE DE JULIO DE SOLICITUD DE MEDIDAS PROVISIONALES RESPECTO DE LA REP\u00daBLICA BOLIVARIANA DE VENEZUELA CASO LUISIANA R\u00cdOS Y OTROS VISTOS La Resoluci\u00f3n dictada por la Corte Interamericana de Derechos Humanos en adelante la Corte o el Tribunal el de noviembre de mediante la cual orden\u00f3 a la Rep\u00fablica Bolivariana de Venezuela en adelante el Estado o Venezuela a solicitud de la Comisi\u00f3n Interamericana de Derechos Humanos en adelante la o ", - "values": [ - "Medidas Provisionales" - ] - }, - { - "text": "CORTE INTERAMERICANA DE DERECHOS HUMANOS CASO GARC\u00cdA CRUZ Y S\u00c1NCHEZ SILVESTRE VS. ESTADOS UNIDOS MEXICANOS SENTENCIA DE DE NOVIEMBRE DE FONDO REPARACIONES Y COSTAS En el caso Garc\u00eda Cruz y S\u00e1nchez Silvestre la Corte Interamericana de Derechos Humanos en adelante la Corte Interamericana la Corte o el Tribunal integrada por los siguientes jueces Diego Garc\u00edaSay\u00e1n Presidente Manuel E. Ventura Robles Vicepresidente Alberto P\u00e9rez P\u00e9rez Juez Eduardo Vio Grossi Juez Roberto F. Caldas Juez y Humberto", - "values": [ - "Costas", - "Fondo", - "Reparaciones" - ] - }, - { - "text": "RESOLUCI\u00d3N DE LA CORTE INTERAMERICANA DE DERECHOS HUMANOS DE DE SEPTIEMBREDE MEDIDAS PROVISIONALES RESPECTO DE LA REP\u00daBLICA DELECUADOR CASO GONZALES LLUY Y OTROS VISTO El escrito delrepresentante de de julio de y sus anexos mediante los cuales someti\u00f3 a la Corte Interamericana de Derechos Humanos en adelante la Corte Interamericana la Corte o este Tribunal una solicitud de medidas provisionales de conformidad con los art\u00edculos de la Convenci\u00f3n Americana sobre Derechos Humanos en adelante ", - "values": [ - "Medidas Provisionales" - ] - }, - { - "text": "RESOLUCI\u00d3N DE LA PRESIDENTA DE LA CORTE INTERAMERICANA DE DERECHOS HUMANOS DE DE AGOSTO DE SOLICITUD DE MEDIDAS PROVISIONALES PRESENTADA POR LA COMISI\u00d3N INTERAMERICANA DE DERECHOS HUMANOS RESPECTO DE HAIT\u00cd ASUNTO A. J. Y OTROS VISTO El escrito de la Comisi\u00f3n Interamericana de Derechos Humanos en adelante la Comisi\u00f3n Interamericana o la Comisi\u00f3n de de agosto de y sus anexos mediante los cuales someti\u00f3 a la Corte Interamericana de Derechos Humanos en adelante la Corte Interamericana la Corte", - "values": [ - "Medidas Provisionales" - ] - }, - { - "text": "RESOLUCI\u00d3N DE LA CORTE INTERAMERICANA DE DERECHOS HUMANOS DE DE SEPTIEMBRE DE CASO MEJ\u00cdA IDROVO VS. ECUADOR SUPERVISI\u00d3N DE CUMPLIMIENTO DE SENTENCIA VISTO La Sentencia de excepciones preliminares fondo reparaciones y costas en adelante la Sentencia dictada por la Corte Interamericana de Derechos Humanos en adelante la Corte o el Tribunal el de julio de La Resoluci\u00f3n de la Corte de de junio de en la cual declar\u00f3 que De conformidad con lo se\u00f1alado en los considerandos pertinentes de la ", - "values": [ - "Supervisi\u00f3n de cumplimiento de Sentencia" - ] - }, - { - "text": "CORTE INTERAMERICANA DE DIREITOS HUMANOS CASO FORNER\u00d3N E FILHA VS. ARGENTINA SENTEN\u00c7A DE DE ABRIL DE M\u00e9rito Repara\u00e7\u00f5es e Custas No caso Forner\u00f3n e filha A Corte Interamericana de Direitos Humanos doravante denominada Interamericana a Corte ou o Tribunal integrada pelos seguintes Ju\u00edzes a Corte Diego Garc\u00edaSay\u00e1n Presidente Manuel E. Ventura Robles VicePresidente Margarette May Macaulay Ju\u00edza Rhadys Abreu Blondet Ju\u00edza Alberto P\u00e9rez P\u00e9rez Juiz e Eduardo Vio Grossi Juiz presentes ademais Pablo ", - "values": [ - "Fondo", - "Reparaciones", - "Costas" - ] - }, - { - "text": "Corte Interamericana de Derechos Humanos Caso Juan Humberto S\u00e1nchez Vs. Honduras Sentencia de de noviembre de Interpretaci\u00f3n de la Sentencia de Excepciones Preliminares Fondo Reparaciones y Costas En el caso Juan Humberto S\u00e1nchez la Corte Interamericana de Derechos Humanos en adelante la Corte Interamericana la Corte o el Tribunal integrada por los siguientes jueces Ant\u00f4nio A. Can\u00e7ado Trindade Presidente Sergio Garc\u00eda Ram\u00edrez Vicepresidente Hern\u00e1n Salgado Pesantes Juez M\u00e1ximo Pacheco G\u00f3mez ", - "values": [ - "Interpretaci\u00f3n" - ] - }, - { - "text": "RESOLUCI\u00d3N DE LA CORTE INTERAMERICANA DE DERECHOS HUMANOS DE DE JULIO DE MEDIDAS PROVISIONALES ADOPTADAS POR LA CORTE INTERAMERICANA DE DERECHOS HUMANOS RESPECTO DE LA REP\u00daBLICA DE GUATEMALA CASO CARPIO NICOLLE Y OTROS VISTOS La Resoluci\u00f3n del Presidente de la Corte Interamericana de Derechos Humanos en adelante el Presidente de de junio de mediante la cual solicit\u00f3 al Estado inter alia que adoptara sin dilaci\u00f3n cuantas medidas fueran necesarias que aseguraran eficazmente la protecci\u00f3n ", - "values": [ - "Medidas Provisionales" - ] - }, - { - "text": "RESOLUCI\u00d3N DE LA CORTE INTERAMERICANA DE DERECHOS HUMANOS DE DE NOVIEMBRE DE CASO BULACIO VS. ARGENTINA CUMPLIMIENTO DE SENTENCIA VISTOS La Sentencia de fondo reparaciones y costas dictada por la Corte Interamericana de Derechos Humanos en adelante la Corte la Corte Interamericana o el Tribunal el de septiembre de mediante la cual DECIDI\u00d3 admitir el reconocimiento de responsabilidad internacional efectuado por el Estado. aprobar el acuerdo en los t\u00e9rminos de la presente Sentencia sobre ", - "values": [ - "Supervisi\u00f3n de cumplimiento de Sentencia" - ] - }, - { - "text": "RESOLUCI\u00d3N DE LA CORTE INTERAMERICANA DE DERECHOS HUMANOS DE DE MAYO DE MEDIDAS PROVISIONALES SOLICITADAS POR LA COMISI\u00d3N INTERAMERICANA DE DERECHOS HUMANOS RESPECTO DE LA REP\u00daBLICA DOMINICANA CASO DE HAITIANOS Y DOMINICANOS DE ORIGEN HAITIANO EN LA REP\u00daBLICA DOMINICANA VISTOS La Resoluci\u00f3n de la Corte Interamericana de Derechos Humanos en adelante la Corte Interamericana o la Corte de de agosto de en la que resolvi\u00f3 Requerir al Estado de la Rep\u00fablica Dominicana que adopte sin dilaci\u00f3n ", - "values": [ - "Medidas Provisionales" - ] - }, - { - "text": "RESOLUCI\u00d3N DE LA CORTE INTERAMERICANA DE DERECHOS HUMANOS DE DE AGOSTO DE MEDIDAS PROVISIONALES SOLICITADAS POR LA COMISI\u00d3N INTERAMERICANA DE DERECHOS HUMANOS RESPECTO DE LA REP\u00daBLICA DE PER\u00da CASO DEL TRIBUNAL CONSTITUCIONAL VISTOS El escrito de de abril de y sus anexos mediante el cual la se\u00f1ora Delia Revoredo Marsano de Mur en adelante la se\u00f1ora Revoredo someti\u00f3 a la Corte Interamericana de Derechos Humanos en adelante la Corte o la Corte Interamericana al amparo de los art\u00edculos de la ", - "values": [ - "Medidas Provisionales" - ] - }, - { - "text": "Corte Interamericana de Derechos Humanos Caso Neira Alegr\u00eda y otros Vs. Per\u00fa Sentencia de de septiembre de Reparaciones y Costas En el caso Neira Alegr\u00eda y otros la Corte Interamericana de Derechos Humanos integrada por los siguientes jueces H\u00e9ctor FixZamudio Presidente Hern\u00e1n Salgado Pesantes Vicepresidente Alejandro Montiel Arg\u00fcello Juez Alirio Abreu Burelli Juez Ant\u00f4nio A. Can\u00e7ado Trindade Juez Jorge E. Orihuela I Juez ad hoc presentes adem\u00e1s Manuel E. Ventura Robles Secretario V\u00edctor Ml. ", - "values": [ - "Reparaciones", - "Costas" - ] - }, - { - "text": "RESOLUCI\u00d3N DE LA CORTE INTERAMERICANA DE DERECHOS HUMANOS DE DE NOVIEMBRE DE CASO BLAKE CUMPLIMIENTO DE SENTENCIA VISTOS La sentencia de fondo dictada en el Caso Blake vs. Guatemala por la Corte Interamericana de Derechos Humanos en adelante la Corte la Corte Interamericana o el Tribunal el de enero de en la que dispuso en los puntos resolutivos tercero y cuarto que el Estado de Guatemala est\u00e1 obligado a poner todos los medios a su alcance para investigar los hechos denunciados y a los ", - "values": [ - "Supervisi\u00f3n de cumplimiento de Sentencia" - ] - }, - { - "text": "RESOLUCI\u00d3N DE LA CORTE INTERAMERICANA DE DERECHOS HUMANOS DE DE ENERO DE MEDIDAS PROVISIONALES CASO PANIAGUA MORALES Y OTROS VISTOS El proceso en el caso Paniagua Morales y otros en tr\u00e1mite ante la Corte Interamericana de Derechos Humanos en adelante la Corte y la transcripci\u00f3n de la declaraci\u00f3n rendida por el se\u00f1or Manuel de Jes\u00fas Gonz\u00e1lez Chinchilla durante la audiencia p\u00fablica que sobre reparaciones del caso citado celebr\u00f3 la Corte en su sede los d\u00edas y de agosto de El escrito de la ", - "values": [ - "Medidas Provisionales" - ] - }, - { - "text": "RESOLUCI\u00d3N DEL PRESIDENTE DE LA CORTE INTERAMERICANA DE DERECHOS HUMANOS DE DE ABRIL DE CASO ARG\u00dcELLES Y OTROS VS. ARGENTINA VISTO El escrito de sometimiento del caso contra el Estado de Argentina en adelante el Estado o Argentina presentado el de mayo de por la Comisi\u00f3n Interamericana de Derechos Humanos en adelante tambi\u00e9n la Comisi\u00f3n Interamericana o la Comisi\u00f3n ante la Corte Interamericana de Derechos Humanos en adelante tambi\u00e9n la Corte Interamericana la Corte o el Tribunal mediante ", - "values": [ - "Otros" - ] - }, - { - "text": "Resoluci\u00f3n de la Corte Interamericana De Derechos Humanos De de febrero de Caso Instituto De Reeducaci\u00f3n Del Menor Vs. Paraguay Supervisi\u00f3n de Cumplimiento de Sentencia VISTO La Sentencia dictada por la Corte Interamericana de Derechos Humanos en adelante la Corte la Corte Interamericana o el Tribunal el de septiembre de La Resoluci\u00f3n de supervisi\u00f3n del cumplimiento de la Sentencia que emiti\u00f3 la Corte el de julio de en la cual el Tribunal DECLAR\u00d3 Que de conformidad con lo se\u00f1alado en ", - "values": [ - "Supervisi\u00f3n de cumplimiento de Sentencia" - ] - }, - { - "text": "VOTO RAZONADO DEL JUEZ A. A. CAN\u00c7ADO TRINDADE Concuerdo con la decisi\u00f3n de la Corte. Entiendo que en esta etapa deb\u00eda haberse agregado una aclaraci\u00f3n expresa en el sentido de que la facultad que la Corte se reserv\u00f3 en el punto resolutivo de la sentencia se extiende tambi\u00e9n a examinar y decidir sobre la solicitud hecha por la Comisi\u00f3n Interamericana de Derechos Humanos numeral acerca de la incompatibilidad o no de la vigencia de los incisos y del art\u00edculo del C\u00f3digo de Justicia Militar de ", - "values": [ - "Voto Separado" - ] - }, - { - "text": "Corte Interamericana de Derechos Humanos Caso Las Palmeras Vs. Colombia Sentencia de noviembre de Reparaciones y Costas En el caso Las Palmeras la Corte Interamericana de Derechos Humanos en adelante la Corte la Corte Interamericana o el Tribunal integrada por los siguientes jueces Ant\u00f4nio A. Can\u00e7ado Trindade Presidente Alirio Abreu Burelli Vicepresidente M\u00e1ximo Pacheco G\u00f3mez Juez Hern\u00e1n Salgado Pesantes Juez Oliver Jackman Juez Sergio Garc\u00eda Ram\u00edrez Juez y Julio A. Barberis Juez ad hoc E.", - "values": [ - "Reparaciones", - "Costas" - ] - }, - { - "text": "RESOLUCI\u00d3N DEL PRESIDENTE DE LA CORTE INTERAMERICANA DE DERECHOS HUMANOS DEL DE NOVIEMBRE DE MEDIDAS PROVISIONALES SOLICITADAS POR LA COMISI\u00d3N INTERAMERICANA DE DERECHOS HUMANOS RESPECTO DE LA REP\u00daBLICA ARGENTINA CASO REGGIARDO TOLOSA VISTO El escrito del de octubre de recibido v\u00eda facs\u00edmil en la Secretar\u00eda de la Corte el de noviembre siguiente mediante el cual la Comisi\u00f3n Interamericana de Derechos Humanos en adelante la Comisi\u00f3n o la Comisi\u00f3n Interamericana somete a la Corte de en ", - "values": [ - "Medidas Provisionales" - ] - }, - { - "text": "RESOLUCI\u00d3N DE LA PRESIDENTA DE LA CORTE INTERAMERICANA DE DERECHOS HUMANOS DE DE AGOSTO DE CASO TRUJILLO OROZA VS. BOLIVIA SUPERVISI\u00d3N DE CUMPLIMIENTO DE SENTENCIA VISTOS La Sentencia de fondo dictada por la Corte Interamericana de Derechos Humanos en adelante la Corte la Corte Interamericana o el Tribunal el de enero de La Sentencia de reparaciones y costas dictada por la Corte Interamericana el de febrero de Las Resoluciones de la Corte de de noviembre de y de septiembre de La ", - "values": [ - "Supervisi\u00f3n de cumplimiento de Sentencia" - ] - }, - { - "text": "RESOLUCI\u00d3N DE LA CORTE INTERAMERICANA DE DERECHOS HUMANOS DE DE AGOSTO DE CASO MONTERO ARANGUREN Y OTROS RET\u00c9N DE CATIA VS. VENEZUELA SUPERVISI\u00d3N DE CUMPLIMIENTO DE SENTENCIA VISTO La Sentencia de excepci\u00f3n preliminar fondo reparaciones y costas en adelante la Sentencia dictada por la Corte Interamericana de Derechos Humanos en adelante la Corte Interamericana la Corte o el Tribunal el de julio de La Resoluci\u00f3n de supervisi\u00f3n de cumplimiento de la Sentencia emitida por el Tribunal el de", - "values": [ - "Supervisi\u00f3n de cumplimiento de Sentencia" - ] - }, - { - "text": "Resoluci\u00f3n del Presidente de la Corte Interamericana de Derechos Humanos De de octubre de Caso de la Panel Blanca Caso Paniagua Morales y otros Vs. Guatemala Supervisi\u00f3n de Cumplimiento de Sentencia VISTOS La Sentencia de fondo dictada por la Corte Interamericana de Derechos Humanos en adelante la Corte la Corte Interamericana o el Tribunal el de marzo de La Sentencia sobre reparaciones dictada en el presente caso por la Corte Interamericana el de mayo de La Resoluci\u00f3n emitida por la ", - "values": [ - "Supervisi\u00f3n de cumplimiento de Sentencia" - ] - }, - { - "text": "RESOLUCI\u00d3N DE LA CORTE INTERAMERICANA DE DERECHOS HUMANOS DE DE JULIO DE CASO G\u00d3MEZ PALOMINO VS. PER\u00da SUPERVISI\u00d3N DE CUMPLIMIENTO DE SENTENCIA VISTO La Sentencia de fondo reparaciones y costas en adelante la Sentencia dictada por la Corte Interamericana de Derechos Humanos en adelante la Corte la Corte Interamericana o el Tribunal el de noviembre de alia La Resoluci\u00f3n de la Corte de de octubre de mediante la cual declar\u00f3 inter Que el Estado ha incumplido con su obligaci\u00f3n de informar ", - "values": [ - "Supervisi\u00f3n de cumplimiento de Sentencia" - ] - }, - { - "text": "RESOLUCI\u00d3N DE LA CORTE INTERAMERICANA DE DERECHOS HUMANOS DE DE AGOSTO DE CASO SERVELL\u00d3N GARC\u00cdA Y OTROS VS. HONDURAS SUPERVISI\u00d3N DE CUMPLIMIENTO DE SENTENCIA VISTOS La Sentencia de Fondo Reparaciones y Costas emitida el de septiembre de en adelante la Sentencia por la Corte Interamericana de Derechos Humanos en adelante la Corte la Corte Interamericana o el Tribunal. La Resoluci\u00f3n de Supervisi\u00f3n de Cumplimiento de la Sentencia de la Corte Interamericana de de enero de mediante la cual ", - "values": [ - "Supervisi\u00f3n de cumplimiento de Sentencia" - ] - }, - { - "text": "VOTO RAZONADO DEL JUEZ AA. CAN\u00c7ADO TRINDADE El presente caso de los Ni\u00f1os de la Calle es verdaderamente paradigm\u00e1tico en la medida en que adem\u00e1s de retratar una situaci\u00f3n real del cotidiano de Am\u00e9rica Latina demuestra que la conciencia humana ha alcanzado un grado de evoluci\u00f3n que ha tornado posible hacer justicia mediante la protecci\u00f3n de los derechos de los marginados o excluidos al otorgarse a \u00e9stos al igual que a todo ser humano acceso directo a una instancia judicial internacional para ", - "values": [ - "Voto Separado" - ] - }, - { - "text": "Resoluci\u00f3n de la Presidenta de la Corte Interamericana de Derechos Humanos de de diciembre de Convocatoria a Audiencia P\u00fablica Medidas Provisionales Respecto de la Rep\u00fablica de Colombia Asunto Giraldo Cardona y otros Visto La Resoluci\u00f3n del Presidente de la Corte Interamericana de Derechos Humanos en adelante la Corte la Corte Interamericana o el Tribunal de de octubre de y las Resoluciones de la Corte de de febrero y de abril de de junio y de noviembre de de septiembre de de de ", - "values": [ - "Medidas Provisionales" - ] - }, - { - "text": "Resoluci\u00f3n de la Corte Interamericana de Derechos Humanos de de noviembre de Medidas Provisionales respecto del Estado de El Salvador A favor de Adri\u00e1n Mel\u00e9ndez Quijano y otros VISTOS La Resoluci\u00f3n de la Corte Interamericana de Derechos Humanos en adelante la Corte Interamericana la Corte o el Tribunal de de mayo de mediante la cual inter alia orden\u00f3 Ratificar la Resoluci\u00f3n del Presidente de la Corte Interamericana de Derechos Humanos de de marzo de Requerir al Estado que mantenga las ", - "values": [ - "Medidas Provisionales" - ] - }, - { - "text": "RESOLUCI\u00d3N DE LA CORTE INTERAMERICANA DE DERECHOS HUMANOS DE DE FEBRERO DE CASO CESTI HURTADO VS. PER\u00da SUPERVISI\u00d3N DE CUMPLIMIENTO DE SENTENCIA VISTOS La Sentencia de fondo emitida por la Corte Interamericana de Derechos Humanos en adelante la Corte la Corte Interamericana o el Tribunal el de septiembre de La Sentencia de Interpretaci\u00f3n de la Sentencia de fondo dictada por la Corte el de enero de La Sentencia de reparaciones emitida por el Tribunal el de mayo de La Sentencia de de ", - "values": [ - "Supervisi\u00f3n de cumplimiento de Sentencia" - ] - }, - { - "text": "RESOLUCI\u00d3N DE LA CORTE INTERAMERICANA DE DERECHOS HUMANOS DE DE OCTUBRE DE CASO VERA VERA Y OTRA VS. ECUADOR SUPERVISI\u00d3N DE CUMPLIMIENTO DE SENTENCIA VISTO La Sentencia de excepci\u00f3n preliminar fondo reparaciones y costas en adelante la Sentencia dictada por la Corte Interamericana de Derechos Humanos en adelante la Corte Interamericana la Corte o el Tribunal el de mayo de que La Resoluci\u00f3n de la Corte de de febrero de mediante la cual declar\u00f3 De conformidad con lo se\u00f1alado en los de ", - "values": [ - "Supervisi\u00f3n de cumplimiento de Sentencia" - ] - }, - { - "text": "VOTO CONCURRENTE DEL JUEZ EDUARDO VIO GROSSI CASO L\u00d3PEZ MENDOZA VS. VENEZUELA SENTENCIA DE \u00ba DE SEPTIEMBRE DE FONDO REPARACIONES Y COSTAS Introducci\u00f3n. Emito el presente voto concurrente con lo resuelto por la Sentencia indicada en el t\u00edtulo en adelante la Sentencia y en particular en el Declarativo N y en los Dispositivos Ns y todos de sus Puntos Resolutivos a fin de resaltar primeramente que as\u00ed ella pone en evidencia que de su simple lectura el art\u00edculo de la Convenci\u00f3n Americana de ", - "values": [ - "Voto Separado" - ] - }, - { - "text": "RESOLUCI\u00d3N DE LA CORTE INTERAMERICANA DE DERECHOS HUMANOS DE DE MAYO DE MEDIDAS PROVISIONALES SOLICITADAS POR LA COMISI\u00d3N INTERAMERICANA DE DERECHOS HUMANOS RESPECTO DE LA REP\u00daBLICA DE PANAM\u00c1 CUATRO COMUNIDADES IND\u00cdGENAS NG\u00d6BE Y SUS MIEMBROS VISTO El escrito de la Comisi\u00f3n Interamericana de Derechos Humanos en adelante la Comisi\u00f3n o la Comisi\u00f3n Interamericana de de enero de mediante el cual someti\u00f3 a la Corte Interamericana de Derechos Humanos en adelante la Corte la Corte Interamericana o", - "values": [ - "Medidas Provisionales" - ] - }, - { - "text": "VOTO CONCURRENTE DEL JUEZ HUMBERTO ANTONIO SIERRA PORTO A LA SENTENCIA DE DE DICIEMBRE DE DE LA CORTE INTERAMERICANA DE DERECHOS HUMANOS EN EL CASO ANDRADE SALM\u00d3N VS. BOLIVIA I. Objeto del presente voto Concurro con la totalidad de los argumentos y de las conclusiones de la Corte Interamericana de Derechos Humanos en adelante tambi\u00e9n la Corte en la presente sentencia. Sin embargo considero relevante realizar algunas reflexiones adicionales sobre dos cuestiones en particular. Primero sobre ", - "values": [ - "Voto Separado" - ] - }, - { - "text": "Resoluci\u00f3n del Presidente de la Corte Interamericana de Derechos Humanos De de diciembre de Caso Ricardo Canese Vs. Paraguay Supervisi\u00f3n de Cumplimiento de Sentencia VISTO La Sentencia de fondo reparaciones y costas en adelante la Sentencia emitida en el presente caso por la Corte Interamericana de Derechos Humanos en adelante la Corte la Corte Interamericana o el Tribunal el de agosto de La Resoluci\u00f3n emitida por la Corte Interamericana el de septiembre de mediante la cual declar\u00f3 Que", - "values": [ - "Supervisi\u00f3n de cumplimiento de Sentencia" - ] - }, - { - "text": "VOTO RAZONADO DEL JUEZ AA. CAN\u00c7ADO TRINDADE Voto a favor de la presente Sentencia de reparaciones que viene de adoptar la Corte Interamericana de Derechos Humanos en el caso B\u00e1maca Vel\u00e1squez versus Guatemala que considero un avance m\u00e1s en su reciente construcci\u00f3n jurisprudencial. Las cuestiones trascendentales examinadas por la Corte me suscitan algunas reflexiones que me veo en la obligaci\u00f3n de consignar en este Voto Razonado como fundamento de mi posici\u00f3n al respecto. Es significativo que el", - "values": [ - "Voto Separado" - ] - }, - { - "text": "RESOLUCI\u00d3N DE LA CORTE INTERAMERICANA DE DERECHOS HUMANOS DE DE MAYO DE MEDIDAS PROVISIONALES EL SALVADOR RESPECTO DE A FAVOR DE ADRI\u00c1N MEL\u00c9NDEZ QUIJANO Y OTROS Vistos La solicitud de la Comisi\u00f3n Interamericana de Derechos Humanos en adelante la Comisi\u00f3n o la Comisi\u00f3n Interamericana de de marzo de y sus anexos mediante los cuales someti\u00f3 a la Corte Interamericana de Derechos Humanos en adelante la Corte la Corte Interamericana o el Tribunal una solicitud de medidas provisionales de con ", - "values": [ - "Medidas Provisionales" - ] - }, - { - "text": "RESOLUCI\u00d3N DE LA CORTE INTERAMERICANA DE DERECHOS HUMANOS DE DE SEPTIEMBRE DE MEDIDAS PROVISIONALES ADOPTADAS POR LA CORTE INTERAMERICANA DE DERECHOS HUMANOS RESPECTO DE GUATEMALA CASO CARPIO NICOLLE VISTOS La resoluci\u00f3n del Presidente de la Corte Interamericana de Derechos Humanos en adelante la Corte o el Tribunal de de junio de en la cual decidi\u00f3 Solicitar al Gobierno de la Rep\u00fablica de Guatemala que adopte sin dilaci\u00f3n cuantas medidas sean necesarias que aseguren eficazmente la de la", - "values": [ - "Medidas Provisionales" - ] - }, - { - "text": "RESOLUCI\u00d3N DE LA CORTE INTERAMERICANA DE DERECHOS HUMANOS DE DE NOVIEMBRE DE CASO ALMONACID ARELLANO VS. CHILE SUPERVISI\u00d3N DE CUMPLIMIENTO DE SENTENCIA VISTO La Sentencia de excepciones preliminares fondo reparaciones y costas en adelante la Sentencia emitida por la Corte Interamericana de Derechos Humanos en adelante la Corte Interamericana la Corte o el Tribunal el de septiembre de mediante la cual dispuso en materia de reparaciones lo siguiente El Estado debe asegurarse que el Decreto ", - "values": [ - "Supervisi\u00f3n de cumplimiento de Sentencia" - ] - }, - { - "text": "RESOLUCI\u00d3N DE LA CORTE INTERAMERICANA DE DERECHOS HUMANOS DE DE MAYO DE MEDIDAS PROVISIONALES RESPECTO DE VENEZUELA ASUNTO NATERA BALBOA VISTO La Resoluci\u00f3n de la Presidencia de la Corte Interamericana de Derechos Humanos en adelante la Presidencia de de diciembre de en la cual resolvi\u00f3 inter alia Requerir al Estado que adopte de forma inmediata las medidas que sean necesarias para determinar la situaci\u00f3n y paradero de Eduardo Jos\u00e9 Natera Balboa y para proteger su vida e integridad al ", - "values": [ - "Medidas Provisionales" - ] - }, - { - "text": "Resoluci\u00f3n de la Corte Interamericana de Derechos Humanos de de noviembre de Medidas Provisionales Respecto de los Estados Unidos Mexicanos Asunto Leonel Rivero y otros Visto La Resoluci\u00f3n emitida por el Presidente de la Corte Interamericana de Derechos Humanos en adelante la Corte Interamericana la Corte o el Tribunal el de octubre de y las Resoluciones emitidas por el Tribunal el de noviembre de de abril de de junio de y de noviembre de La audiencia p\u00fablica sobre las presentes ", - "values": [ - "Medidas Provisionales" - ] - }, - { - "text": "RESOLUCI\u00d3N DEL PRESIDENTE DE LA CORTE INTERAMERICANA DE DERECHOS HUMANOS DE DE JULIO DE CASO WONG HO WING VS. PER\u00da VISTO El escrito de sometimiento del caso y el Informe de Fondo de la Comisi\u00f3n Interamericana de Derechos Humanos en adelante la Comisi\u00f3n Interamericana o la Comisi\u00f3n el escrito de solicitudes argumentos y pruebas en adelante el escrito de solicitudes y argumentos del representante de la presunta v\u00edctima en adelante el representante y el escrito de excepci\u00f3n preliminar al ", - "values": [ - "Otros" - ] - }, - { - "text": "RESOLUCI\u00d3N DE LA CORTE INTERAMERICANA DE DERECHOS HUMANOS DE DE AGOSTO DE CASO ATALA RIFFO E HIJAS VS. CHILE VISTO La Resoluci\u00f3n del Presidente de la Corte de de julio de mediante la cual se convoc\u00f3 a la audiencia p\u00fablica en el presente caso y se decidi\u00f3 cuales declaraciones eran conveniente recibir por medio de declaraci\u00f3n rendida ante fedatario p\u00fablico affid\u00e1vit. En particular en dicha Resoluci\u00f3n se estableci\u00f3 que el dictamen pericial del se\u00f1or Juan Carlos Mar\u00edn ofrecido por los de las ", - "values": [ - "Otros" - ] - }, - { - "text": "RESOLUCI\u00d3N DE LA CORTE INTERAMERICANA DE DERECHOS HUMANOS DE DE NOVIEMBRE DE MEDIDAS PROVISIONALES RESPECTO DE VENEZUELA ASUNTO GUERRERO GALLUCCI VISTO Las Resoluciones de la Corte Interamericana de Derechos Humanos en adelante la Corte Interamericana la Corte o el Tribunal de de julio de y de noviembre de emitidas en relaci\u00f3n con las presentes medidas provisionales. En su \u00faltima resoluci\u00f3n el Tribunal resolvi\u00f3 inter alia Levantar las medidas provisionales ordenadas por la Corte de ", - "values": [ - "Medidas Provisionales" - ] - }, - { - "text": "RESOLUCI\u00d3N DE LA CORTE INTERAMERICANA DE DERECHOS HUMANOS DE DE NOVIEMBRE DE CASO CABALLERO DELGADO Y SANTANA CUMPLIMIENTO DE SENTENCIA VISTOS La Sentencia de fondo dictada en el Caso Caballero Delgado y Santana por la Corte Interamericana de Derechos Humanos en adelante la Corte la Corte Interamericana o el Tribunal el de diciembre de mediante la cual inter alia Por unanimidad Decidi\u00f3 que la Rep\u00fablica de Colombia estaba obligada a continuar los procedimientos judiciales por la y muerte", - "values": [ - "Supervisi\u00f3n de cumplimiento de Sentencia" - ] - }, - { - "text": "SEPARATE OPINION OF JUDGE VENTURAROBLES I have concurred with great satisfaction with my vote to the unanimous adoption of the instant Judgment in the Case of the Sawhoyamaxa Indigenous Community v. Paraguay because it meant a substantial shift in the criteria of the majority of the Court who in an identical case ie. Case of the Indigenous Community Yakye Axa v. Paraguay did not find that Article of the Convention had been violated to the detriment of the members of said community who died as", - "values": [ - "Voto Separado" - ] - }, - { - "text": "RESOLUCI\u00d3N DE LA CORTE INTERAMERICANA DE DERECHOS HUMANOS DE DE NOVIEMBRE DE MEDIDAS PROVISIONALES RESPECTO DE LA REP\u00daBLICA DE COLOMBIA CASO GUTI\u00c9RREZ SOLER VISTOS La Resoluci\u00f3n de la Corte Interamericana de Derechos Humanos en adelante la Corte la Corte Interamericana o el Tribunal de de marzo de mediante la cual requiri\u00f3 al Estado de Colombia en adelante el Estado inter alia adoptar las medidas necesarias para a proteger la vida integridad personal y libertad personal del se\u00f1or Ricardo ", - "values": [ - "Medidas Provisionales" - ] - }, - { - "text": "VOTO DISIDENTE DEL JUEZ EDUARDO VIO GROSSI CORTE INTERAMERICANA DE DERECHOS HUMANOS CASO GALINDO C\u00c1RDENAS Y OTROS VS. PER\u00da SENTENCIA DE DE OCTUBRE DE Excepciones Preliminares Fondo Reparaciones y Costas INTRODUCCI\u00d3N. Obviamente y como no podr\u00eda ser de otra manera se emite el presente voto individual disidente a la Sentencia indicada en el t\u00edtulo con el mayor respeto y la m\u00e1xima consideraci\u00f3n hacia los dem\u00e1s jueces de la Corte Interamericana de Derechos Humanos y sus opiniones y con la de ", - "values": [ - "Voto Separado" - ] - }, - { - "text": "VOTO RAZONADO DEL JUEZ SERGIO GARCIA RAMIREZ EN EL CASO GUTI\u00c9RREZ SOLER VS. COLOMBIA. SENTENCIA DEL DE SEPTIEMBRE DE A SOLUCION AUTOCOMPOSITIVA. CARACTERISTICAS Y CONDICIONES La soluci\u00f3n de la controversia que llega al conocimiento de las autoridades encargadas de resolverla puede operar con base en un acto compositivo entre las partes que pudo presentarse antes de recurrir al procedimiento p\u00fablico como es deseable que ocurra cada vez que sea posible o por medio de una resoluci\u00f3n de de ", - "values": [ - "Voto Separado" - ] - }, - { - "text": "RESOLUCI\u00d3N DE LA CORTE INTERAMERICANA DE DERECHOS HUMANOS DE DE JULIO DE MEDIDAS PROVISIONALES CASO RAM\u00cdREZ HINOSTROZA Y OTROS VISTOS La Resoluci\u00f3n de la Corte Interamericana de Derechos Humanos en adelante la Corte o el Tribunal de de septiembre de sobre medidas provisionales mediante la cual resolvi\u00f3 inter alia ratificar en todos sus t\u00e9rminos la Resoluci\u00f3n del Presidente de la Corte en adelante el Presidente de de julio de y por consiguiente requerir al Estado del Per\u00fa en adelante el ", - "values": [ - "Medidas Provisionales" - ] - }, - { - "text": "RESOLUCI\u00d3N DE LA CORTE INTERAMERICANA DE DERECHOS HUMANOS DE DE MAYO DE SOLICITUD DE MEDIDAS PROVISIONALES RESPECTO DE LA REP\u00daBLICA DE COLOMBIA AVILA MORENO Y OTROS CASO OPERACI\u00d3N G\u00c9NESIS VISTO El escrito de de febrero de de la Comisi\u00f3n Intereclesial de Justicia y Paz organizaci\u00f3n representante de los propuestos beneficiarios en adelante los representantes as\u00ed como sus anexos mediante los cuales someti\u00f3 a la Corte Interamericana de Derechos Humanos en adelante la Corte Interamericana la o", - "values": [ - "Medidas Provisionales" - ] - }, - { - "text": "RESOLUCI\u00d3N DE LA CORTE INTERAMERICANA DE DERECHOS HUMANOS DE DE ENERO DE MEDIDAS PROVISIONALES ASUNTO DE LA FUNDACI\u00d3N DE ANTROPOLOG\u00cdA FORENSE DE GUATEMALA VISTOS La Resoluci\u00f3n de la Corte Interamericana de Derechos Humanos en adelante la Corte la Corte Interamericana o el Tribunal de de julio de mediante la cual orden\u00f3 la adopci\u00f3n de medidas provisionales en favor de los integrantes de la Fundaci\u00f3n de Antropolog\u00eda Forense de Guatemala en adelante FAFG y otros. La Resoluci\u00f3n del Tribunal ", - "values": [ - "Medidas Provisionales" - ] - }, - { - "text": "RESOLUCI\u00d3N DEL PRESIDENTE DE LA CORTE INTERAMERICANA DE DERECHOS HUMANOS DE DE JULIO DE MEDIDAS PROVISIONALES SOLICITADAS POR LA COMISI\u00d3N INTERAMERICANA DE DERECHOS HUMANOS RESPECTO DE LA REP\u00daBLICA DEL PER\u00da CASO CESTI HURTADO VISTOS La solicitud presentada a la Corte Interamericana de Derechos Humanos en adelante la Corte o la Corte Interamericana por la Comisi\u00f3n Interamericana de Derechos Humanos en adelante la Comisi\u00f3n o la Comisi\u00f3n Interamericana de fecha de julio de para que la Corte ", - "values": [ - "Medidas Provisionales" - ] - }, - { - "text": "Corte Interamericana de Derechos Humanos Caso Baena Ricardo y otros Vs. Panam\u00e1 Sentencia de de noviembre de Competencia En el caso Baena Ricardo y otros la Corte Interamericana de Derechos Humanos en adelante la Corte la Corte Interamericana o el Tribunal integrada por los siguientes jueces Ant\u00f4nio A. Can\u00e7ado Trindade Presidente Sergio Garc\u00eda Ram\u00edrez Vicepresidente Hern\u00e1n Salgado Pesantes Juez M\u00e1ximo Pacheco G\u00f3mez Juez Oliver Jackman Juez Alirio Abreu Burelli Juez y Carlos Vicente de Roux ", - "values": [ - "Competencia" - ] - }, - { - "text": "VOTO FUNDAMENTADO CONCORDANTE DO JUIZ HERN\u00c1N SALGADO PESANTES No presente caso permitome agregar algumas considera\u00e7\u00f5es. A posse da terra por parte dos povos e comunidades ind\u00edgenas seja a t\u00edtulo de propriedade comunal ou de possess\u00e3o ancestral foi reconhecida em nosso continente como um direito e muitos pa\u00edses latinoamericanos o consagraram em n\u00edvel constitucional. Este direito \u00e0 terra reivindicado pelos ind\u00edgenas inscrevese no direito \u00e0 propriedade no entanto ultrapassa este conceito no a", - "values": [ - "Voto Separado" - ] - }, - { - "text": "RESOLUCI\u00d3N DE LA CORTE INTERAMERICANA DE DERECHOS HUMANOS DE DE FEBRERO DE SOLICITUD DE MEDIDAS PROVISIONALES RESPECTO DE HONDURAS CASO PACHECO TERUEL Y OTROS VISTO El escrito del Equipo de Reflexi\u00f3n Investigaci\u00f3n de la Compa\u00f1\u00eda de Jes\u00fas ERICSJ Pastoral Penitenciaria y CARITAS Di\u00f3cesis de San Pedro Sula en adelante los representantes presentado en representaci\u00f3n de la se\u00f1ora Sandra Lorena Ramos el de enero de mediante el cual se solicit\u00f3 la adopci\u00f3n de medidas provisionales de conformidad", - "values": [ - "Medidas Provisionales" - ] - }, - { - "text": "VOTO FUNDAMENTADO DO JUIZ A. A. CAN\u00c7ADO TRINDADE Ao votar a favor da ado\u00e7\u00e3o da presente Senten\u00e7a da Corte Interamericana de Direitos Humanos no caso das Crian\u00e7as Yean e Bosico versus Rep\u00fablica Dominicana com a qual estou basicamente de acordo vejome na obriga\u00e7\u00e3o de agregar no presente Voto Fundamentado algumas breves reflex\u00f5es pessoais sobre o tema central do cas desp\u00e8ce porquanto esta \u00e9 a primeira vez em sua hist\u00f3ria que a Corte Interamericana se pronuncia na resolu\u00e7\u00e3o de um caso contencioso ", - "values": [ - "Voto Separado" - ] - }, - { - "text": "RESOLUCI\u00d3N DE LA CORTE INTERAMERICANA DE DERECHOS HUMANOS DE DE JULIO DE MEDIDAS PROVISIONALES CABALLERO DELGADO Y SANTANA RESPECTO DE COLOMBIA VISTO La Resoluci\u00f3n de la Corte Interamericana de Derechos Humanos en adelante la Corte o el Tribunal de de abril de mediante la cual resolvi\u00f3 Requerir al Estado colombiano en adelante el Estado el Estado colombiano el Estado de Colombia o Colombia que adoptara sin dilaci\u00f3n las medidas necesarias para proteger la vida e integridad personal de los ", - "values": [ - "Medidas Provisionales" - ] - }, - { - "text": "VOTO DISIDENTE DEL JUEZ NIETO NAVIA Aunque no est\u00e1 probado que actuaran bajo \u00f3rdenes oficiales o que se tratara de una pr\u00e1ctica del Ej\u00e9rcito colombiano y m\u00e1s bien de los autos puede colegirse lo contrario aparentemente al secuestrar a sus v\u00edctimas estaban vestidos de guerrilleros aunque no se sepa bien qu\u00e9 diferencia existe entre un uniforme militar y uno de guerrillero y el Capit\u00e1n Forero Quintero fue tratado durante varios meses en un hospital militar por paranoia derivada del trauma que le ", - "values": [ - "Voto Separado" - ] - }, - { - "text": "RESOLUCI\u00d3N DE LA CORTE INTERAMERICANA DE DERECHOS HUMANOS DE DE SEPTIEMBRE DE CASO CESTI HURTADO vs. PER\u00da CUMPLIMIENTO DE SENTENCIA VISTO La sentencia de fondo emitida por la Corte Interamericana de Derechos Humanos en adelante la Corte la Corte Interamericana o el Tribunal el de septiembre de La sentencia de interpretaci\u00f3n de la sentencia de fondo dictada por la Corte el de enero de La sentencia de reparaciones emitida por el Tribunal el de mayo de La sentencia de interpretaci\u00f3n de", - "values": [ - "Supervisi\u00f3n de cumplimiento de Sentencia" - ] - }, - { - "text": "RESOLUCI\u00d3N DEL PRESIDENTE DE LA CORTE INTERAMERICANA DE DERECHOS HUMANOS DE DE JUNIO DE AMPLIACI\u00d3N DE LAS MEDIDAS PROVISIONALES SOLICITADAS POR LA COMISI\u00d3N INTERAMERICANA DE DERECHOS HUMANOS RESPECTO DE LA REP\u00daBLICA DE TRINIDAD Y TOBAGO CASOS JAMES Y OTROS VISTOS La Resoluci\u00f3n de la Corte Interamericana de Derechos Humanos en adelante la Corte de de mayo de en la cual decidi\u00f3 Respecto a las medidas provisionales ordenadas por la Corte el de agosto de a. Mantener las medidas ordenadas ", - "values": [ - "Medidas Provisionales" - ] - }, - { - "text": "RESOLUCI\u00d3N DE LA CORTE INTERAMERICANA DE DERECHOS HUMANOS DE DE FEBRERO DE CASO BAENA RICARDO Y OTROS VS. PANAM\u00c1 SUPERVISI\u00d3N DE CUMPLIMIENTO DE SENTENCIA VISTO La Sentencia de fondo reparaciones y costas emitida el de febrero de en adelante la Sentencia por la Corte Interamericana de Derechos Humanos en adelante la Corte Interamericana la Corte o el Tribunal relativa al despido de trabajadores de diferentes empresas estatales en virtud de la aplicaci\u00f3n de la Ley de de diciembre de en ", - "values": [ - "Supervisi\u00f3n de cumplimiento de Sentencia" - ] - }, - { - "text": "RESOLUCI\u00d3N DE LA CORTE INTERAMERICANA DE DERECHOS HUMANOS DE DE ABRIL DE MEDIDAS PROVISIONALES ADOPTADAS POR LA CORTE INTERAMERICANA DE DERECHOS HUMANOS RESPECTO DE LA REP\u00daBLICA DE COLOMBIA CASO GIRALDO CARDONA VISTOS Que la Corte Interamericana de Derechos Humanos en adelante la Corte o el Tribunal celebr\u00f3 en su sede el de abril de una audiencia p\u00fablica sobre las medidas provisionales adoptadas en el caso Giraldo Cardona. Que en dicha audiencia el representante de la Comisi\u00f3n de en ", - "values": [ - "Medidas Provisionales" - ] - }, - { - "text": "Resoluci\u00f3n de la Corte Interamericana de Derechos Humanos De de octubre de Caso G\u00f3mez Palomino Vs. Per\u00fa Supervisi\u00f3n de Cumplimiento de Sentencia VISTOS La Sentencia de fondo reparaciones y costas en adelante la Sentencia dictada por la Corte Interamericana de Derechos Humanos en adelante la Corte la Corte Interamericana o el Tribunal el de noviembre de mediante la cual DECIDI\u00d3 Por unanimidad Admitir el reconocimiento de responsabilidad internacional efectuado por el Estado del Per\u00fa en los", - "values": [ - "Supervisi\u00f3n de cumplimiento de Sentencia" - ] - }, - { - "text": "VOTO RAZONADO DEL JUEZ EDUARDO FERRER MACGREGOR POISOT CASO MALDONADO ORDO\u00d1EZ VS. GUATEMALA SENTENCIA DE DE MAYO DE Excepci\u00f3n Preliminar Fondo Reparaciones y Costas INTRODUCCI\u00d3N SOBRE LAS GARANT\u00cdAS M\u00cdNIMAS DEL DEBIDO PROCESO APLICABLES A OTRAS MATERIAS DISTINTAS DE LA PENAL INTERPRETACI\u00d3N DE LOS ALCANCES DEL ART\u00cdCULO DE LA CONVENCI\u00d3N AMERICANA Concurro esencialmente con lo decidido en el presente caso en el que se reiteraron est\u00e1ndares interamericanos de relevancia inter alia sobre la de ", - "values": [ - "Voto Separado" - ] - }, - { - "text": "VOTO CONCURRENTE DEL JUEZ EDUARDO FERRER MACGREGOR POISOT CASO RODR\u00cdGUEZ VERA Y OTROS DESAPARECIDOS DEL PALACIO DE JUSTICIA VS. COLOMBIA SENTENCIA DE DE NOVIEMBRE DE Excepciones Preliminares Fondo Reparaciones y Costas Introducci\u00f3n la necesidad de reconocer el derecho a la verdad como derecho aut\u00f3nomo en el Sistema Interamericano de Derechos Humanos La desaparici\u00f3n forzada de personas constituye lamentablemente una de las violaciones graves a los derechos humanos m\u00e1s tratadas en la de la ", - "values": [ - "Voto Separado" - ] - }, - { - "text": "RESOLUCI\u00d3N DE LA CORTE INTERAMERICANA DE DERECHOS HUMANOS DE DE MAYO DE CASO RADILLA PACHECO VS. ESTADOS UNIDOS MEXICANOS SUPERVISI\u00d3N DE CUMPLIMIENTO DE SENTENCIA VISTO La Sentencia de excepciones preliminares fondo reparaciones y costas en adelante la Sentencia dictada por la Corte Interamericana de Derechos Humanos en adelante la Corte Interamericana la Corte o el Tribunal el de noviembre de mediante la cual dispuso que El Estado deber\u00e1 conducir eficazmente con la debida diligencia y ", - "values": [ - "Supervisi\u00f3n de cumplimiento de Sentencia" - ] - }, - { - "text": "RESOLUCI\u00d3N DE LA CORTE INTERAMERICANA DE DERECHOS HUMANOS DE NOVIEMBRE DE CASO DE LA CRUZ FLORES Vs. EL PER\u00da SUPERVISI\u00d3N DE CUMPLIMIENTO DE SENTENCIA VISTO La Sentencia de fondo reparaciones y costas emitida el de noviembre de por la Corte Interamericana de Derechos Humanos en adelante la Corte la Corte Interamericana o el Tribunal mediante la cual decidi\u00f3 por unanimidad que el Estado viol\u00f3 el principio de legalidad y de irretroactividad consagrado en el art\u00edculo de la Convenci\u00f3n sobre ", - "values": [ - "Supervisi\u00f3n de cumplimiento de Sentencia" - ] - }, - { - "text": "Corte Interamericana de Direitos Humanos Caso Nogueira de Carvalho e Outro Versus Brasil Senten\u00e7a de de Novembro de Exce\u00e7\u00f5es Preliminares e M\u00e9rito No Caso Nogueira de Carvalho e outro a Corte Interamericana de Direitos Humanos doravante denominada Corte Interamericana Corte ou Tribunal integrada pelos seguintes ju\u00edzes Sergio Garc\u00eda Ram\u00edrez Presidente Alirio Abreu Burelli VicePresidente Ant\u00f4nio Augusto Can\u00e7ado Trindade Juiz Cecilia Medina Quiroga Ju\u00edza Manuel E. Ventura Robles Juiz e Diego ", - "values": [ - "Excepciones Preliminares", - "Fondo" - ] - }, - { - "text": "RESOLUCI\u00d3N DE LA CORTE INTERAMERICANA DE DERECHOS HUMANOS DE DE SEPTIEMBRE DE MEDIDAS PROVISIONALES RESPECTO DE HONDURAS CASO L\u00d3PEZ \u00c1LVAREZ Y OTROS VISTOS La Resoluci\u00f3n de la Corte Interamericana de Derechos Humanos en adelante la Corte la Corte Interamericana o el Tribunal de de junio de en la cual decidi\u00f3 Requerir al Estado que adopte sin dilaci\u00f3n las medidas necesarias para proteger la vida e integridad personal de los se\u00f1ores Alfredo L\u00f3pez \u00c1lvarez Teresa Reyes Reyes y Gregoria Flores ", - "values": [ - "Medidas Provisionales" - ] - }, - { - "text": "SEPARATE OPINION OF JUDGE AA. CAN\u00c7ADO TRINDADE In the instant Judgment in the Case of Tibi versus Ecuador in which I have concurred with my vote the InterAmerican Court of Human Rights has ruled on a new case that adequately reflects the contingencies of the human condition and the importance of the realization of justice and of guarantees of nonrecidivism regarding acts injurious to human rights as a measure of reparation. Given the concerns raised by the instant case and the significance of ", - "values": [ - "Voto Separado" - ] - }, - { - "text": "RESOLUCI\u00d3N DE LA CORTE INTERAMERICANA DE DERECHOS HUMANOS DE DE JULIO DE CASO CARPIO NICOLLE VS. GUATEMALA SUPERVISI\u00d3N DE CUMPLIMIENTO DE SENTENCIA VISTO La Sentencia de fondo reparaciones y costas en adelante la Sentencia dictada por la Corte Interamericana de Derechos Humanos en adelante la Corte la Corte Interamericana o el Tribunal el de noviembre de mediante la cual dispuso que El Estado deb\u00eda investigar efectivamente los hechos del caso con el fin de identificar juzgar y sancionar", - "values": [ - "Supervisi\u00f3n de cumplimiento de Sentencia" - ] - }, - { - "text": "RESOLUCI\u00d3N DE LA CORTE INTERAMERICANA DE DERECHOS HUMANOS DE DE FEBRERO DE SOLICITUD DE AMPLIACI\u00d3N DE MEDIDAS PROVISIONALES CASO RAXCAC\u00d3 REYES Y OTROS VISTOS La Resoluci\u00f3n de la Corte Interamericana de Derechos Humanos en adelante la Corte la Corte Interamericana o el Tribunal dictada el de agosto de cuyo punto resolutivo primero resolvi\u00f3 Requerir al Estado que adopte sin dilaci\u00f3n las medidas necesarias para proteger la vida de Ronald Ernesto Raxcac\u00f3 Reyes Hugo Humberto Ruiz Fuentes y ", - "values": [ - "Medidas Provisionales" - ] - }, - { - "text": "VOTO CONCURRENTE DE LA JUEZA MARGARETTE MAY MACAULAY EN EL CASO FURLAN Y FAMILIARES VS. ARGENTINA He votado por la adopci\u00f3n de esta sentencia de la Corte Interamericana de Derechos Humanos en el Caso Furlan y Familiares vs. Argentina. Sin embargo quiero presentar en este voto concurrente mi opini\u00f3n sobre la posibilidad de resolver parte del conflicto desde una perspectiva que contempla la justiciabilidad directa de los derechos econ\u00f3micos sociales y culturales bajo el alcance del art\u00edculo de ", - "values": [ - "Voto Separado" - ] - }, - { - "text": "VOTO RAZONADO DEL JUEZ ALBERTO P\u00c9REZ P\u00c9REZ EN EL CASO LIAKAT ALI ALIBUX vs. SURINAME Mi discrepancia radica exclusivamente en lo tocante al no acogimiento de la excepci\u00f3n de falta de agotamiento de los recursos internos con respecto al impedimento de salida del pa\u00eds ocurrido el de enero de que qued\u00f3 subsumido en la decisi\u00f3n desestimatoria global sobre todas las excepciones interpuestas p\u00e1rrafo y punto resolutivo La Corte constat\u00f3 que respecto de la falta de agotamiento de recursos sobre ", - "values": [ - "Voto Separado" - ] - }, - { - "text": "RESOLUCI\u00d3N DE LA CORTE INTERAMERICANA DE DERECHOS HUMANOS DE DE NOVIEMBRE DE CASOS EL AMPARO BLANCO ROMERO Y OTROS MONTERO ARANGUREN Y OTROS BARRETO LEIVA Y US\u00d3N RAM\u00cdREZ VS. VENEZUELA SUPERVISI\u00d3N DE CUMPLIMIENTO DE SENTENCIAS VISTO Las Sentencias emitidas por la Corte Interamericana de Derechos Humanos en adelante la Corte o el Tribunal el de septiembre de el de noviembre de el de julio de el de noviembre de y el de noviembre de en los siguientes cinco casos contra la Rep\u00fablica de", - "values": [ - "Supervisi\u00f3n de cumplimiento de Sentencia" - ] - }, - { - "text": "Resoluci\u00f3n de la Corte Interamericana de Derechos Humanos de de noviembre de Solicitud de Medidas Provisionales respecto de la Rep\u00fablica de Honduras Caso Kawas Fern\u00e1ndez vs. Honduras Vistos El escrito de de febrero de recibido ese mismo d\u00eda en la Secretar\u00eda de la Corte Interamericana de Derechos Humanos en adelante la Secretar\u00eda mediante el cual la Comisi\u00f3n Interamericana de Derechos Humanos en adelante la Comisi\u00f3n o la Comisi\u00f3n Interamericana someti\u00f3 a la Corte Interamericana de Derechos ", - "values": [ - "Medidas Provisionales" - ] - }, - { - "text": "VOTO RAZONADO CONCURRENTE DEL JUEZ HERN\u00c1N SALGADO PESANTES En el caso Caso Myrna Mack Chang he concurrido con mis colegas en esta sentencia aunque en mis razonamientos hubo otro criterio del cual que quiero dejar constancia. El Estado durante la tramitaci\u00f3n del presente caso adopt\u00f3 diversas posiciones bajo el denominador com\u00fan de responsabilidad institucional situaci\u00f3n que ven\u00eda ocurriendo desde la Comisi\u00f3n. Al momento de realizarse la audiencia p\u00fablica ante la Corte el Estado no acept\u00f3 que su", - "values": [ - "Voto Separado" - ] - }, - { - "text": "RESOLUCI\u00d3N DE LA CORTE INTERAMERICANA DE DERECHOS HUMANOS DE DICIEMBRE DE MEDIDAS PROVISIONALES RESPECTO DE LA REP\u00daBLICA DE COLOMBIA CASO GIRALDO CARDONA VISTOS La Resoluci\u00f3n de la Corte Interamericana de Derechos Humanos en adelante la Corte Interamericana la Corte o el Tribunal de de junio de mediante la cual decidi\u00f3 Levantar y dar por concluidas las medidas provisionales ordenadas por la Corte en su resoluci\u00f3n de de febrero de en favor del se\u00f1or Gonzalo Z\u00e1rate. Requerir al Estado de", - "values": [ - "Medidas Provisionales" - ] - }, - { - "text": "VOTO DISIDENTE DEL JUEZ MANUEL E. VENTURA ROBLES CORTE INTERAMERICANA DE DERECHOS HUMANOS CASO DUQUE VS. COLOMBIA SENTENCIA DE DE FEBRERO DE EXCEPCIONES PRELIMINARES FONDO REPARACIONES Y COSTAS Lo que el suscrito Juez pretende al emitir un voto disidente en el presente Caso DUQUE vs. COLOMBIA al acoger la excepci\u00f3n preliminar de no agotamiento de los recursos internos interpuesta por el Estado es dejar muy en claro que en futuros casos similares la posici\u00f3n de la Comisi\u00f3n debe ser de no a ", - "values": [ - "Voto Separado" - ] - }, - { - "text": "VOTO CONCURRENTE DEL JUEZ SERGIO GARC\u00cdA RAM\u00cdREZ A LA SENTENCIA DE LA CORTE INTERAMERICANA SOBRE EL CASO KIMEL DEL DE MAYO DE He sumado mi voto al de mis colegas porque comparto las decisiones de fondo adoptadas por la Corte Interamericana de Derechos Humanos en el caso Kimel que constan en los puntos resolutivos de la Sentencia dictada el de mayo de Por otra parte difiero en lo que respecta a algunas consideraciones formuladas en ese documento que no figuran en aquellos puntos ni afectan ", - "values": [ - "Voto Separado" - ] - }, - { - "text": "RESOLUCI\u00d3N DE LA CORTE INTERAMERICANA DE DERECHOS HUMANOS DE DE JUNIO DE MEDIDAS PROVISIONALES RESPECTO DE COLOMBIA CASO DE LA MASACRE DE MAPIRIP\u00c1N VISTOS La Resoluci\u00f3n del Presidente de la Corte Interamericana de Derechos Humanos en adelante la Corte la Corte Interamericana o el Tribunal de de enero de mediante la cual resolvi\u00f3 Requerir por las razones se\u00f1aladas y en el ejercicio de la facultad que le otorga el art\u00edculo del Reglamento que las siguientes personas propuestas por los ", - "values": [ - "Medidas Provisionales" - ] - }, - { - "text": "VOTO PARCIALMENTE DISIDENTE DEL JUEZ LEONARDO A. FRANCO CON RESPECTO A LA SENTENCIA DE LA CORTE INTERAMERICANA DE DERECHOS HUMANOS EN EL CASO SALVADOR CHIRIBOGA VS. ECUADOR DEL DE MARZO DE En la Sentencia de excepci\u00f3n preliminar y fondo dictada en el Caso Salvador Chiriboga vs. Ecuador del de mayo de la Corte declar\u00f3 la violaci\u00f3n del derecho a la propiedad privada consagrado en el art\u00edculo de la Convenci\u00f3n Americana sobre Derechos Humanos en relaci\u00f3n con los derechos a las garant\u00edas y ", - "values": [ - "Voto Separado" - ] - }, - { - "text": "RESOLUCI\u00d3N DE LA CORTE INTERAMERICANA DE DERECHOS HUMANOS DE DE NOVIEMBRE DE CASO DE LA MASACRE DE MAPIRIP\u00c1N VS. COLOMBIA SUPERVISI\u00d3N DE CUMPLIMIENTO DE SENTENCIA VISTO El escrito de de febrero de y sus anexos recibidos en esa fecha y el de marzo siguiente que el Estado de Colombia en adelante el Estado denomin\u00f3 solicitud de revisi\u00f3n de la Sentencia dictada por la Corte Interamericana de Derechos Humanos en adelante la Corte la Corte Interamericana o el Tribunal el de septiembre de en ", - "values": [ - "Supervisi\u00f3n de cumplimiento de Sentencia" - ] - }, - { - "text": "Voto del Juez ad hoc Dr. Jorge E. Orihuela Iberico sobre la Excepci\u00f3n Preliminar de caducidad de la demanda de la Comisi\u00f3n Caso Neira Alegr\u00eda y Otros I. II. III. IV. Hechos Normatividad Jurisprudencia Conclusiones y voto I. Hechos La Comisi\u00f3n aprob\u00f3 el informe en su Sesi\u00f3n correspondiente al Per\u00edodo de Sesiones celebrada el de mayo de Por nota del de junio de la Comisi\u00f3n transmite al Gobierno del Per\u00fa dicho informe precisando que los plazos materia de dicho informe surten efecto a de ", - "values": [ - "Voto Separado" - ] - }, - { - "text": "VOTO INDIVIDUAL DISIDENTE DEL JUEZ EDUARDO VIO GROSSI CORTE INTERAMERICANA DE DERECHOS HUMANOS CASO WONG HO WING VS. PER\u00da SENTENCIA DE DE JUNIO DE Excepci\u00f3n Preliminar Fondo Reparaciones y Costas INTRODUCCI\u00d3N. Se emite el presente voto individual disidente de la Sentencia indicada en el t\u00edtulo en raz\u00f3n de que \u00e9sta desestim\u00f3 la excepci\u00f3n preliminar relativa al incumplimiento de la regla del previo agotamiento de los recursos internos interpuesta por la Rep\u00fablica del Per\u00fa. Los fundamentos de ", - "values": [ - "Voto Separado" - ] - }, - { - "text": "RESOLUCI\u00d3N DE LA CORTE INTERAMERICANA DE DERECHOS HUMANOS DE DE NOVIEMBRE DE CASO DE LA PANEL BLANCA CASO PANIAGUA MORALES Y OTROS VS. GUATEMALA CUMPLIMIENTO DE SENTENCIA VISTOS La Sentencia de fondo dictada en el Caso de la Panel Blanca Caso Paniagua Morales y otros vs. Guatemala por la Corte Interamericana de Derechos Humanos en adelante la Corte la Corte Interamericana o el Tribunal el de marzo de mediante la cual Declar\u00f3 que el Estado de Guatemala viol\u00f3 el art\u00edculo de la Convenci\u00f3n ", - "values": [ - "Supervisi\u00f3n de cumplimiento de Sentencia" - ] - }, - { - "text": "Resoluci\u00f3n de la Presidenta de la Corte Interamericana de Derechos Humanos de diciembre de Caso Chitay Nech y otros vs. Guatemala Visto El escrito de demanda de la Comisi\u00f3n Interamericana de Derechos Humanos en adelante la Comisi\u00f3n o la Comisi\u00f3n Interamericana presentado el de abril de ante la Corte Interamericana de Derechos Humanos en adelante la Corte la Corte Interamericana o el Tribunal contra la Rep\u00fablica de Guatemala en adelante el Estado o Guatemala en el cual ofreci\u00f3 la de tres ", - "values": [ - "Otros" - ] - }, - { - "text": "RESOLUCI\u00d3N DE LA CORTE INTERAMERICANA DE DERECHOS HUMANOS DE DE MAYO DE CASO CASTILLO P\u00c1EZ VS. PER\u00da SUPERVISI\u00d3N DEL CUMPLIMIENTO DE SENTENCIA VISTO La Sentencia de Excepciones Preliminares dictada por la Corte Interamericana de Derechos Humanos en adelante la Corte Interamericana la Corte o el Tribunal el de enero de en el presente caso la Sentencia de Fondo dictada por la Corte el de noviembre de en este caso en adelante Sentencia de fondo y la Sentencia de Reparaciones y Costas por ", - "values": [ - "Supervisi\u00f3n de cumplimiento de Sentencia" - ] - }, - { - "text": "RESOLUCI\u00d3N DEL PRESIDENTE DE LA CORTE INTERAMERICANA DE DERECHOS HUMANOS DE DE JULIO DE CASO GUTI\u00c9RREZ HERN\u00c1NDEZ Y FAMILIA VS. GUATEMALA VISTO El escrito de sometimiento del caso y el Informe de Admisibilidad y Fondo de la Comisi\u00f3n Interamericana de Derechos Humanos en adelante la Comisi\u00f3n Interamericana o la Comisi\u00f3n el escrito de solicitudes argumentos y pruebas en adelante el escrito de solicitudes y argumentos de los representantes de las presuntas v\u00edctimas en adelante los representantes", - "values": [ - "Otros" - ] - }, - { - "text": "VOTO RAZONADO DEL JUEZ AA. CAN\u00c7ADO TRINDADE He concurrido con mi voto a la adopci\u00f3n en esta ciudad de Buenos Aires de la presente Sentencia que viene de adoptar la Corte Interamericana de Derechos Humanos en el caso Balde\u00f3n Garc\u00eda versus Per\u00fa. Dada la alta relevancia que atribuyo a determinados puntos tratados en la presente Sentencia me veo en la obligaci\u00f3n de dejar constancia de mis reflexiones personales como fundamento de mi posici\u00f3n al respecto. Me refiero en particular a la necesidad de ", - "values": [ - "Voto Separado" - ] - }, - { - "text": "RESOLUCI\u00d3N DE LA CORTE INTERAMERICANA DE DERECHOS HUMANOS DE DE AGOSTO DE MEDIDAS PROVISIONALES CASO PANIAGUA MORALES Y OTROS VISTOS El caso Paniagua Morales y otros en tr\u00e1mite ante la Corte Interamericana de Derechos Humanos en adelante la Corte y la transcripci\u00f3n de la declaraci\u00f3n rendida por el se\u00f1or Manuel Alberto Gonz\u00e1lez Chinchilla durante la audiencia p\u00fablica que sobre reparaciones del caso citado celebr\u00f3 la Corte en su sede los d\u00edas y de agosto de El escrito de la Comisi\u00f3n de ", - "values": [ - "Medidas Provisionales" - ] - }, - { - "text": "VOTO DISIDENTE DEL JUEZ AD HOC EINER ELIAS BIEL MORALES EN EL CASO REVER\u00d3N TRUJILLO VS. VENEZUELA En la sentencia emitida en el presente caso la Corte Interamericana de Derechos Humanos en adelante la Corte o el Tribunal desestima la excepci\u00f3n preliminar interpuesta por el Estado respecto al no agotamiento de recursos internos. Difiero de la decisi\u00f3n mayoritaria y por tanto con el debido respeto por la opini\u00f3n de mis colegas me permito presentar las razones jur\u00eddicas de mi disenso. Esta con ", - "values": [ - "Voto Separado" - ] - }, - { - "text": "Corte Interamericana de Derechos Humanos Caso Durand y Ugarte Vs. Per\u00fa Sentencia de de diciembre de Reparaciones En el caso Durand y Ugarte la Corte Interamericana de Derechos Humanos en adelante la Corte la Corte Interamericana o el Tribunal integrada por los siguientes jueces Ant\u00f4nio A. Can\u00e7ado Trindade Presidente M\u00e1ximo Pacheco G\u00f3mez Vicepresidente Hern\u00e1n Salgado Pesantes Juez Alirio Abreu Burelli Juez Sergio Garc\u00eda Ram\u00edrez Juez Carlos Vicente de Roux Rengifo Juez y Fernando Vidal Ram\u00edrez ", - "values": [ - "Reparaciones", - "Costas" - ] - }, - { - "text": "VOTO RAZONADO CONCURRENTE DEL JUEZ SERGIO GARC\u00cdA RAM\u00cdREZ A LAS SENTENCIAS SOBRE EXCEPCIONES PRELIMINARES EN LOS CASOS HILAIRE CONSTANTINE Y OTROS Y BENJAM\u00cdN Y OTROS He sumado mi voto al de mis colegas en la Corte Interamericana de Derechos Humanos en las Sentencias sobre excepciones preliminares en los Casos Hilaire Contantine y Otros y Benjam\u00edn y Otros del de septiembre de que se fundan en el mismo razonamiento y llegan a id\u00e9nticas decisiones en lo concerniente a la supuesta incompetencia ", - "values": [ - "Voto Separado" - ] - }, - { - "text": "Corte Interamericana de Derechos Humanos Caso Blake Vs. Guatemala Sentencia de de enero de Reparaciones y Costas En el caso Blake la Corte Interamericana de Derechos Humanos integrada por los siguientes jueces Hern\u00e1n Salgado Pesantes Presidente Antonio A. Can\u00e7ado Trindade Vicepresidente M\u00e1ximo Pacheco G\u00f3mez Juez Oliver Jackman Juez Alirio Abreu Burelli Juez Sergio Garc\u00eda Ram\u00edrez Juez Carlos Vicente de Roux Rengifo Juez Alfonso Novales Aguirre Juez ad hoc presentes adem\u00e1s Manuel E. Ventura y", - "values": [ - "Reparaciones", - "Costas" - ] - }, - { - "text": "VOTO CONCURRENTE DEL JUEZ HUMBERTO ANTONIO SIERRA PORTO A LA SENTENCIA DE DE OCTUBRE DE DE LA CORTE INTERAMERICANA DE DERECHOS HUMANOS EN EL CASO RUANO TORRES Y OTROS VS. EL SALVADOR Concurro con los argumentos jur\u00eddicos que sustentan la decisi\u00f3n de la Corte en la presente sentencia mediante la cual se acepta el reconocimiento parcial de responsabilidad internacional efectuado por el Estado y se determina que el Estado es responsable por la violaci\u00f3nen perjuicio de Jos\u00e9 Agapito Ruano a la ", - "values": [ - "Voto Separado" - ] - }, - { - "text": "RESOLUCI\u00d3N DEL PRESIDENTE DE LA CORTE INTERAMERICANA DE DERECHOS HUMANOS DE DE FEBRERO DE MEDIDAS PROVISIONALES ADOPTADAS POR LA CORTE INTERAMERICANA DE DERECHOS HUMANOS RESPECTO DE LA REP\u00daBLICA DE GUATEMALA CASO CARPIO NICOLLE VISTOS La Resoluci\u00f3n de la Corte Interamericana de Derechos Humanos en adelante la Corte de de septiembre de que Requiri\u00f3 al Estado que incluya en su pr\u00f3ximo informe documentaci\u00f3n id\u00f3nea sobre la situaci\u00f3n de la causa No. y de los avances concretos en las de las ", - "values": [ - "Medidas Provisionales" - ] - }, - { - "text": "RESOLUCI\u00d3N DE LA CORTE INTERAMERICANA DE DERECHOS HUMANOS DE DE MAYO DE SOLICITUD DE MEDIDAS PROVISIONALES DE LA COMISI\u00d3N INTERAMERICANA DE DERECHOS HUMANOS RESPECTO DE LA REP\u00daBLICA DE COSTA RICA CASO DEL PERI\u00d3DICO LA NACI\u00d3N VISTOS El escrito de la Comisi\u00f3n Interamericana de Derechos Humanos en adelante la Comisi\u00f3n o la Comisi\u00f3n Interamericana de de marzo de mediante el cual present\u00f3 una solicitud de medidas provisionales a favor de los se\u00f1ores Mauricio Herrera Ulloa y Fern\u00e1n Vargas y ", - "values": [ - "Medidas Provisionales" - ] - }, - { - "text": "VOTO CONCURRENTE DEL JUEZ NOVALES AGUIRRE He concurrido con mi voto en esta sentencia en la que la Corte Interamericana de Derechos Humanos estableci\u00f3 la responsabilidad internacional del Estado de Guatemala por violaciones a los art\u00edculos y de la Convenci\u00f3n Americana en relaci\u00f3n con el art\u00edculo de la misma en perjuicio de los familiares del se\u00f1or Nicholas Blake. A\u00fan cuando la Comisi\u00f3n Interamericana no incluy\u00f3 en la demanda ante la Corte al se\u00f1or Griffith Davis lo que lo excluy\u00f3 como parte ", - "values": [ - "Voto Separado" - ] - }, - { - "text": "RESOLUCI\u00d3N DE LA CORTE INTERAMERICANA DE DERECHOS HUMANOS DEL DE ENERO DE MEDIDAS PROVISIONALES SOLICITADAS POR LA COMISI\u00d3N INTERAMERICANA DE DERECHOS HUMANOS RESPECTO DEL PER\u00da CASO DE PENALES PERUANOS La Corte Interamericana de Derechos Humanos integrada de la siguiente manera H\u00e9ctor FixZamudio Presidente Sonia Picado Sotela Vicepresidente Rafael Nieto Navia Juez Alejandro Montiel Arg\u00fcello Juez Hern\u00e1n Salgado Pesantes Juez Asdr\u00fabal AguiarAranguren Juez presentes adem\u00e1s Manuel E. Ventura y ", - "values": [ - "Medidas Provisionales" - ] - }, - { - "text": "VOTO RAZONADO CONCURRENTE DEL JUEZ SERGIO GARC\u00cdA RAM\u00cdREZ A LAS SENTENCIAS SOBRE EXCEPCIONES PRELIMINARES EN LOS CASOS HILAIRE CONSTANTINE Y OTROS Y BENJAM\u00cdN Y OTROS He sumado mi voto al de mis colegas en la Corte Interamericana de Derechos Humanos en las Sentencias sobre excepciones preliminares en los Casos Hilaire Contantine y Otros y Benjam\u00edn y Otros del de septiembre de que se fundan en el mismo razonamiento y llegan a id\u00e9nticas decisiones en lo concerniente a la supuesta incompetencia ", - "values": [ - "Voto Separado" - ] - }, - { - "text": "VOTO PARCIALMENTE DISIDENTE DE LA JUEZA C. MEDINA QUIROGA Estoy de acuerdo con la sentencia de esta Corte excepto en lo que respecta a la decisi\u00f3n de considerar violado el art\u00edculo de la Convenci\u00f3n. Repito aqu\u00ed mi disidencia en el caso comerciantes fallado recientemente por la Corte El art\u00edculo consagra el derecho del individuo a que sus derechos humanos sean protegidos en el \u00e1mbito nacional de una manera sencilla r\u00e1pida y efectiva lo que se conoce en nuestro continente como el derecho al ", - "values": [ - "Voto Separado" - ] - }, - { - "text": "RESOLUCI\u00d3N DE LA CORTE INTERAMERICANA DE DERECHOS HUMANOS DE DE NOVIEMBRE DE CASO ARG\u00dcELLES Y OTROS VS. ARGENTINA SUPERVISI\u00d3N DE CUMPLIMIENTO DE SENTENCIA VISTO La Sentencia de excepciones preliminares fondo reparaciones y costas en adelante la Sentencia o el Fallo dictada por la Corte Interamericana de Derechos Humanos en adelante la Corte la Corte Interamericana o el Tribunal el de noviembre de a Corte declar\u00f3 la responsabilidad internacional de la Rep\u00fablica Argentina en adelante el o ", - "values": [ - "Supervisi\u00f3n de cumplimiento de Sentencia" - ] - }, - { - "text": "VOTO RAZONADO DEL JUEZ SERGIO GARC\u00cdA RAM\u00cdREZ EN RELACI\u00d3N CON LA SENTENCIA DE LA CORTE INTERAMERICANA DE DERECHOS HUMANOS DEL DE JUNIO DE EN EL CASO DE LAS MASACRES DE ITUANGO ADMISI\u00d3N DE HECHOS Y PRETENSIONES Y SENTENCIA DE LA CORTEIDH En diversas oportunidades me he referido a ciertos actos realizados en el curso del procedimiento internacional espec\u00edficamente el proceso judicial seguido ante la Corte Interamericana de Derechos Humanos que poseen relevancia sustantiva y procesal e influyen", - "values": [ - "Voto Separado" - ] - }, - { - "text": "RESOLUCI\u00d3N DE LA CORTE INTERAMERICANA DE DERECHOS HUMANOS DE OCTUBRE DE MEDIDAS PROVISIONALES RESPECTO DE LA REP\u00daBLICA DE HONDURAS ASUNTO JOS\u00c9 LUIS GALD\u00c1MEZ \u00c1LVAREZ Y OTROS VISTO La Resoluci\u00f3n dictada por la Corte Interamericana de Derechos Humanos en adelante la Corte Interamericana la Corte o el Tribunal el de febrero de mediante la cual entre otros requiri\u00f3 a la Rep\u00fablica de Honduras en adelante el Estado o Honduras que mantenga las medidas que haya implementado as\u00ed como tambi\u00e9n de ", - "values": [ - "Medidas Provisionales" - ] - }, - { - "text": "Resoluci\u00f3n de la Corte Interamericana de Derechos Humanos de agosto de Medidas Provisionales respecto de la Rep\u00fablica Bolivariana de Venezuela Asunto Carlos Nieto Palma y otro. VISTOS La Resoluci\u00f3n de la Corte Interamericana de Derechos Humanos en adelante la Corte Interamericana la Corte o el Tribunal de de julio de mediante la cual otorg\u00f3 medidas provisionales a favor del se\u00f1or Carlos Nieto Palma y sus familiares Ivonne Palma S\u00e1nchez Eva Teresa Nieto Palma y John Carmelo Laicono Nieto. ", - "values": [ - "Medidas Provisionales" - ] - }, - { - "text": "Resoluci\u00f3n de la Presidenta de la Corte Interamericana De Derechos Humanos De de marzo de Caso Comunidad Mayagna Sumo Awas Tingni Vs. Nicaragua Supervisi\u00f3n de Cumplimiento de Sentencia VISTOS La Sentencia de fondo reparaciones y costas dictada en el Caso de la Comunidad Mayagna Sumo Awas Tingni vs. Nicaragua por la Corte Interamericana de Derechos Humanos en adelante la Corte la Corte Interamericana o el Tribunal el de agosto de en cuyos puntos resolutivos decidi\u00f3 que el Estado debe en ", - "values": [ - "Supervisi\u00f3n de cumplimiento de Sentencia" - ] - }, - { - "text": "RESOLUCI\u00d3N DE LA CORTE INTERAMERICANA DE DERECHOS HUMANOS DE DE ABRIL DE MEDIDAS PROVISIONALES ADOPTADAS POR LA CORTE INTERAMERICANA DE DERECHOS HUMANOS RESPECTO DE LA REP\u00daBLICA DE COLOMBIA CASO CABALLERO DELGADO Y SANTANA VISTOS La resoluci\u00f3n de la Corte Interamericana de Derechos Humanos en adelante la Corte o el Tribunal de de diciembre de en la cual decidi\u00f3 transmitir al Gobierno de Colombia la solicitud de la Comisi\u00f3n Interamericana de Derechos Humanos para que adopte sin dilaci\u00f3n ", - "values": [ - "Medidas Provisionales" - ] - }, - { - "text": "RESOLUCI\u00d3N DE LA CORTE INTERAMERICANA DE DERECHOS HUMANOS DE DE SEPTIEMBRE DE CASO TRIST\u00c1N DONOSO VS. PANAM\u00c1 SUPERVISI\u00d3N DE CUMPLIMIENTO DE SENTENCIA VISTO La Sentencia de Excepci\u00f3n Preliminar Fondo Reparaciones y Costas emitida el de enero de en adelante la Sentencia por la Corte Interamericana de Derechos Humanos en adelante la Corte Interamericana la Corte o el Tribunal mediante la cual dispuso inter alia que El Estado debe pagar al se\u00f1or Santander Trist\u00e1n Donoso el monto fijado en el ", - "values": [ - "Supervisi\u00f3n de cumplimiento de Sentencia" - ] - }, - { - "text": "VOTO DISIDENTE DEL JUEZ AA. CAN\u00c7ADO TRINDADE Lamento no poder compartir la decisi\u00f3n tomada por la mayor\u00eda de la Corte Interamericana de Derechos Humanos en los puntos resolutivos ns. y y el criterio por \u00e9sta adoptado sobre estos puntos en los p\u00e1rrafos considerativos ns. y respectivamente de la presente Sentencia sobre fondo y reparaciones en el caso de las Hermanas Serrano Cruz versus El Salvador en el sentido de haber la Corte construido su Sentencia con base en su anterior decisi\u00f3n ", - "values": [ - "Voto Separado" - ] - }, - { - "text": "RESOLUCI\u00d3N DE LA CORTE INTERAMERICANA DE DERECHOS HUMANOS DE DE NOVIEMBRE DE CASO TRUJILLO OROZA VS. BOLIVIA CUMPLIMIENTO DE SENTENCIA VISTOS La Sentencia sobre el fondo dictada por la Corte Interamericana de Derechos Humanos en adelante la Corte o el Tribunal el de enero de en la cual por unanimidad Admiti\u00f3 la aceptaci\u00f3n de los hechos y el reconocimiento de responsabilidad efectuados por el Estado. Declar\u00f3 conforme a los t\u00e9rminos del reconocimiento de responsabilidad internacional por ", - "values": [ - "Supervisi\u00f3n de cumplimiento de Sentencia" - ] - }, - { - "text": "CASO SALVADOR CHIRIBOGA VS. ECUADOR SENTENCIA DE EXCEPCI\u00d3N PRELIMINAR Y FONDO VOTO CONCURRENTE DEL JUEZ MANUEL E. VENTURA ROBLES He concurrido con mi voto a la aprobaci\u00f3n de la Sentencia de Excepci\u00f3n Preliminar y Fondo en el Caso Salvador Chiriboga Vs. Ecuador pero hubiera preferido que el concepto de justo equilibrio entre el inter\u00e9s general y el inter\u00e9s particular hubiera sido conceptualmente desarrollado. Al considerar el tema de las restricciones al derecho a la propiedad privada en una ", - "values": [ - "Voto Separado" - ] - }, - { - "text": "DISSENTING OPINION OF JUDGE AD HOC ALEJANDRO MONTIEL ARG\u00dcELLO I have dissented from the operative paragraphs of this judgment declaring that the State of El Salvador has violated Articles and of the American Convention on Human Rights. The Court has interpreted the encompasses judicial guarantees in proceedings but also establishes the may entail its responsibility because it former provision in the sense that it not only favor of the accused or the parties to the States obligation to any ", - "values": [ - "Voto Separado" - ] - }, - { - "text": "RESOLUCI\u00d3N DE LA CORTE INTERAMERICANA DE DERECHOS HUMANOS DE DE AGOSTO DE MEDIDAS PROVISIONALES RESPECTO DE LA REP\u00daBLICA DOMINICANA CASO GONZ\u00c1LEZ MEDINA Y FAMILIARES VISTO El escrito de los representantes de las presuntas v\u00edctimas en adelante los representantes de de agosto de y su anexo mediante los cuales sometieron a la Corte Interamericana de Derechos Humanos en adelante la Corte Interamericana la Corte o el Tribunal una solicitud de medidas provisionales de conformidad con los de la", - "values": [ - "Medidas Provisionales" - ] - }, - { - "text": "VOTO RAZONADO CONCURRENTE DEL JUEZ HERN\u00c1N SALGADO PESANTES A LAS SENTENCIAS SOBRE EXCEPCIONES PRELIMINARES EN LOS CASOS HILAIRE CONSTANTINE Y OTROS Y BENJAMIN Y OTROS Estando de acuerdo en lo fundamental con la sentencia en el Caso Hilaire vs. Trinidad y Tobago quiero agregar las siguientes consideraciones En materia de reservas a los tratados al igual que en otras cuestiones del Derecho Internacional ha habido una importante evoluci\u00f3n marcada por un progreso constante. Bien podr\u00eda situarse ", - "values": [ - "Voto Separado" - ] - }, - { - "text": "Corte Interamericana de Derechos Humanos Caso Aloeboetoe y otros Vs. Surinam Sentencia de de diciembre de Fondo En el caso Aloeboetoe y otros la Corte Interamericana de Derechos Humanos integrada por los siguientes jueces H\u00e9ctor FixZamudio Presidente Thomas Buergenthal Juez Rafael Nieto Navia Juez Sonia Picado Sotela Juez Julio A. Barberis Juez Ant\u00f4nio A. Can\u00e7ado Trindade Juez ad hoc presentes adem\u00e1s Manuel E. Ventura Robles Secretario y Ana Mar\u00eda Reina Secretaria adjunta de acuerdo con los ", - "values": [ - "Fondo" - ] - }, - { - "text": "CORTE INTERAMERICANA DE DERECHOS HUMANOS CASO COMUNIDAD CAMPESINA DE SANTA B\u00c1RBARA VS. PER\u00da SENTENCIA DE DE SEPTIEMBRE DE Excepciones Preliminares Fondo Reparaciones y Costas En el caso Comunidad Campesina de Santa B\u00e1rbara Vs. Per\u00fa la Corte Interamericana de Derechos Humanos en adelante la Corte Interamericana la Corte o el Tribunal integrada por los siguientes jueces Humberto Antonio Sierra Porto Presidente Roberto F. Caldas Vicepresidente Manuel E. Ventura Robles Juez Alberto P\u00e9rez P\u00e9rez ", - "values": [ - "Fondo", - "Excepciones Preliminares", - "Reparaciones", - "Costas" - ] - }, - { - "text": "RESOLUCI\u00d3N DE LA CORTE INTERAMERICANA DE DERECHOS HUMANOS DE DE SEPTIEMBRE DE MEDIDAS PROVISIONALES ADOPTADAS POR LA CORTE INTERAMERICANA DE DERECHOS HUMANOS RESPECTO DE LA REP\u00daBLICA DE GUATEMALA CASO CARPIO NICOLLE VISTO La Resoluci\u00f3n de la Corte Interamericana de Derechos Humanos en adelante la Corte o la Corte Interamericana de de febrero de mediante la cual se resolvi\u00f3 prorrogar hasta el de septiembre de las medidas provisionales ordenadas mediante resoluci\u00f3n de la Corte de de de ", - "values": [ - "Medidas Provisionales" - ] - }, - { - "text": "RESOLUCI\u00d3N DEL PRESIDENTE DE LA CORTE INTERAMERICANA DE DERECHOS HUMANOS DE DE ENERO DE SOLICITUD DE MEDIDAS PROVISIONALES CASO DE LA CRUZ FLORES VS. PER\u00da VISTO La Sentencia de fondo reparaciones y costas dictada por la Corte Interamericana de Derechos Humanos en adelante la Corte la Corte Interamericana o el Tribunal el de noviembre de en el caso De La Cruz Flores Vs. Per\u00fa En dicho fallo se estableci\u00f3 que el Estado viol\u00f3 entre otros derechos el principio de legalidad y de en perjuicio ", - "values": [ - "Medidas Provisionales" - ] - }, - { - "text": "VOTO FUNDAMENTADO DO JUIZ AA. CAN\u00c7ADO TRINDADE Finalmente chegou ao conhecimento de um tribunal internacional a Corte Interamericana de Direitos Humanos a sinistra Opera\u00e7\u00e3o Condor na medida em que o presente caso Goibur\u00fa e outros versus Paraguai se enquadra nela e da qual \u00e9 um microcosmo. Na presente Senten\u00e7a a Corte valorou o acatamento do Estado como contribui\u00e7\u00e3o positiva ao desenvolvimento deste processo par. e acrescentou que proferir uma Senten\u00e7a na qual se determine a verdade dos fatos ", - "values": [ - "Voto Separado" - ] - }, - { - "text": "RESOLUCI\u00d3N DEL PRESIDENTE DE LA CORTE INTERAMERICANA DE DERECHOS HUMANOS EN EJERCICIO PARA EL PRESENTE CASO DE DE DICIEMBRE DE CASO CRUZ S\u00c1NCHEZ Y OTROS VS. PER\u00da CONVOCATORIA A AUDIENCIA VISTO El escrito de sometimiento del caso presentado por la Comisi\u00f3n Interamericana de Derechos Humanos en adelante tambi\u00e9n la Comisi\u00f3n Interamericana o la Comisi\u00f3n ante la Corte Interamericana de Derechos Humanos en adelante la Corte Interamericana la Corte o el Tribunal el de diciembre de mediante el ", - "values": [ - "Otros" - ] - }, - { - "text": "Resoluci\u00f3n de la Corte Interamericana de Derechos Humanos De de febrero de Caso Cantoral Benavides Vs. Per\u00fa Supervisi\u00f3n de Cumplimiento de Sentencia VISTOS La Sentencia de fondo dictada el de agosto de en cuyos puntos resolutivos d\u00e9cimo segundo y d\u00e9cimo tercero la Corte Interamericana de Derechos Humanos en adelante la Corte la Corte Interamericana o el Tribunal decidi\u00f3 que el Estado debe ordenar una investigaci\u00f3n para determinar las personas responsables de las violaciones de los a ", - "values": [ - "Supervisi\u00f3n de cumplimiento de Sentencia" - ] - }, - { - "text": "RESOLUCI\u00d3N DE LA CORTE INTERAMERICANA DE DERECHOS HUMANOS DE DE SEPTIEMBRE DE AMPLIACI\u00d3N DE LAS MEDIDAS PROVISIONALES SOLICITADA POR LA COMISI\u00d3N INTERAMERICANA DE DERECHOS HUMANOS RESPECTO DE LA REP\u00daBLICA DE VENEZUELA CASO LUISIANA R\u00cdOS Y OTROS RADIO CARACAS TELEVISI\u00d3N RCTV VISTOS La Resoluci\u00f3n de la Corte Interamericana de Derechos Humanos en adelante la Corte Interamericana la Corte o el Tribunal de de noviembre de respecto del Estado de Venezuela Rep\u00fablica Bolivariana de Venezuela en ", - "values": [ - "Medidas Provisionales" - ] - }, - { - "text": "Corte Interamericana de Direitos Humanos Caso Vel\u00e1squez Rodr\u00edguez Vs. Honduras Senten\u00e7a de de julho de M\u00e9rito No caso Vel\u00e1squez Rodr\u00edguez a Corte Interamericana de Direitos Humanos integrada pelos seguintes ju\u00edzes Rafael Nieto Navia Presidente H\u00e9ctor Gros Espiell VicePresidente Rodolfo E. Piza E Juiz Thomas Buergenthal Juiz Pedro Nikken Juiz H\u00e9ctor FixZamudio Juiz Rigoberto Espinal Ir\u00edas Juiz ad hoc presentes ademais Charles Moyer Secret\u00e1rio e Manuel Ventura Secret\u00e1rio Adjunto de acordo com o", - "values": [ - "Fondo" - ] - }, - { - "text": "Corte Interamericana de Derechos Humanos Caso Trabajadores Cesados del Congreso Aguado Alfaro y otros Vs. Per\u00fa Sentencia de de noviembre de Excepciones Preliminares Fondo Reparaciones y Costas En el caso Trabajadores Cesados del Congreso Aguado Alfaro y otros la Corte Interamericana de Derechos Humanos en adelante la Corte Interamericana la Corte o el Tribunal integrada por los siguientes jueces Sergio Garc\u00eda Ram\u00edrez Presidente Alirio Abreu Burelli Vicepresidente Ant\u00f4nio A. Can\u00e7ado Trindade", - "values": [ - "Excepciones Preliminares", - "Fondo", - "Reparaciones", - "Costas" - ] - }, - { - "text": "RESOLUCI\u00d3N DE LA CORTE INTERAMERICANA DE DERECHOS HUMANOS DE DE NOVIEMBRE DE CASO DEL TRIBUNAL CONSTITUCIONAL AGUIRRE ROCA REY TERRY Y REVOREDO MARSANO VS. PER\u00da CUMPLIMIENTO DE SENTENCIA VISTOS La Sentencia dictada por la Corte Interamericana de Derechos Humanos en adelante la Corte la Corte Interamericana o el Tribunal el de enero de mediante la cual declar\u00f3 que el Estado viol\u00f3 en perjuicio de Manuel Aguirre Roca Guillermo Rey Terry y Delia Revoredo Marsano el derecho a las garant\u00edas ", - "values": [ - "Supervisi\u00f3n de cumplimiento de Sentencia" - ] - }, - { - "text": "VOTO CONCURRENTE DEL JUEZ GARC\u00cdA RAM\u00cdREZ EN RELACI\u00d3N CON LA SENTENCIA DE REPARACIONES DICTADA POR LA CORTE INTERAMERICANA DE DERECHOS HUMANOS EN EL CASO LOAYZA TAMAYO Por lo que respecta al deber del Estado de investigar y sancionar los hechos violatorios de derechos humanos de la se\u00f1ora Loayza Tamayo reproduzco los t\u00e9rminos de mi voto concurrente en la sentencia de reparaciones del caso Castillo Pa\u00e9z de esta misma fecha. San Jos\u00e9 Costa Rica de noviembre de Sergio Garc\u00eda Ram\u00edrez Juez Manuel E.", - "values": [ - "Voto Separado" - ] - }, - { - "text": "RESOLUCI\u00d3N DE LA CORTE INTERAMERICANA DE DERECHOS HUMANOS DE DE NOVIEMBRE DE MEDIDAS PROVISIONALES SOLICITADAS POR LA COMISI\u00d3N INTERAMERICANA DE DERECHOS HUMANOS RESPECTO DE LA REP\u00daBLICA DOMINICANA CASO DE HAITIANOS Y DOMINICANOS DE ORIGEN HAITIANO EN LA REP\u00daBLICA DOMINICANA VISTOS La Resoluci\u00f3n de la Corte Interamericana de Derechos Humanos en adelante la Corte Interamericana o la Corte de de agosto de en la que resolvi\u00f3 Requerir al Estado de la Rep\u00fablica Dominicana que adopte sin ", - "values": [ - "Medidas Provisionales" - ] - }, - { - "text": "Resoluci\u00f3n de la Corte Interamericana de Derechos Humanos de de febrero de Solicitud de Adopci\u00f3n de Medidas Provisionales Caso De La Cruz Flores Vs. Per\u00fa Visto La Sentencia de fondo reparaciones y costas en adelante la Sentencia emitida en el presente caso por la Corte Interamericana de Derechos Humanos en adelante la Corte la Corte Interamericana o el Tribunal el de noviembre de Las Resoluciones de la Corte Interamericana de de noviembre de y de septiembre de sobre Supervisi\u00f3n de de", - "values": [ - "Medidas Provisionales" - ] - }, - { - "text": "RESOLUCI\u00d3N DE LA CORTE INTERAMERICANA DE DERECHOS HUMANOS DE DE FEBRERO DE MEDIDAS PROVISIONALES ADOPTADAS POR LA CORTE INTERAMERICANA DE DERECHOS HUMANOS RESPECTO DE LA REP\u00daBLICA DOMINICANA CASO DE HAITIANOS Y DOMINICANOS DE ORIGEN HAITIANO EN LA REP\u00daBLICA DOMINICANA VISTO La Resoluci\u00f3n de la Corte Interamericana de Derechos Humanos en adelante la Corte Interamericana la Corte o el Tribunal de de agosto de mediante la cual resolvi\u00f3 Requerir al Estado de la Rep\u00fablica Dominicana que adopte", - "values": [ - "Medidas Provisionales" - ] - }, - { - "text": "Corte Interamericana de Derechos Humanos Caso Escu\u00e9 Zapata Vs. Colombia Sentencia de de julio de Fondo Reparaciones y Costas En el caso Escu\u00e9 Zapata la Corte Interamericana de Derechos Humanos en adelante la Corte Interamericana la Corte o el Tribunal integrada por los siguientes jueces Sergio Garc\u00eda Ram\u00edrez Presidente Cecilia Medina Quiroga Vicepresidenta Manuel E. Ventura Robles Juez Diego Garc\u00edaSay\u00e1n Juez Leonardo A. Franco Juez Margarette May Macaulay Jueza Rhadys Abreu Blondet Jueza y ", - "values": [ - "Fondo", - "Reparaciones", - "Costas" - ] - }, - { - "text": "VOTO RAZONADO DEL JUEZ A. A. CAN\u00c7ADO TRINDADE He concurrido con mi Voto a la adopci\u00f3n de la presente Sentencia de la Corte Interamericana de Derechos Humanos sobre Excepciones Preliminares en el caso Las Palmeras relativo a Colombia mediante la cual la Corte ha desestimado la primera cuarta y quinta excepciones y ha sostenido la tercera y segunda excepciones preliminares interpuestas por el Estado demandado. Entiendo que la Corte ha llegado a una decisi\u00f3n bien fundamentada y en plena con las ", - "values": [ - "Voto Separado" - ] - }, - { - "text": "RESOLUCI\u00d3N DE LA CORTE INTERAMERICANA DE DERECHOS HUMANOS DE DE FEBRERO DE MEDIDAS PROVISIONALES RESPECTO DE HAIT\u00cd ASUNTO A. J. Y OTROS VISTO La Resoluci\u00f3n de la entonces Presidenta de la Corte Interamericana de Derechos Humanos en adelante la Corte Interamericana la Corte o el Tribunal de de agosto de en adelante la Resoluci\u00f3n de la Presidenta o Resoluci\u00f3n de medidas urgentes mediante la cual requiri\u00f3 al Estado que adopte de forma inmediata las medidas que sean necesarias para proteger la", - "values": [ - "Medidas Provisionales" - ] - }, - { - "text": "Resoluci\u00f3n de la Corte Interamericana de Derechos Humanos de de noviembre de Medidas Provisionales respecto de la Rep\u00fablica Bolivariana de Venezuela Asunto de la Emisora de Televisi\u00f3n Globovisi\u00f3n VISTOS La Resoluci\u00f3n emitida por la Corte Interamericana de Derechos Humanos en adelante la Corte Interamericana la Corte o el Tribunal el de agosto de en la cual entre otros requiri\u00f3 a la Rep\u00fablica Bolivariana de Venezuela en adelante Venezuela o el Estado que adoptara de forma inmediata todas ", - "values": [ - "Medidas Provisionales" - ] - }, - { - "text": "RESOLUCI\u00d3N DE LA CORTE INTERAMERICANA DE DERECHOS HUMANOS DEL DE AGOSTO DE MEDIDAS PROVISIONALES SOLICITADAS POR LA COMISI\u00d3N INTERAMERICANA DE DERECHOS HUMANOS RESPECTO DE GUATEMALA CASO CHUNIMA La Corte Interamericana de Derechos Humanos integrada de la siguiente manera H\u00e9ctor FixZamudio Presidente Orlando Tovar Tamayo Vicepresidente Thomas Buergenthal Juez Rafael Nieto Navia Juez Policarpo Callejas Bonilla Juez Sonia Picado Sotela Juez Julio A. Barberis Juez presentes adem\u00e1s Manuel E. y ", - "values": [ - "Medidas Provisionales" - ] - }, - { - "text": "VOTO PARCIALMENTE DISIDENTE DEL JUEZ EDUARDO VIO GROSSI CORTE INTERAMERICANA DE DERECHOS HUMANOS CASO DUQUE VS. COLOMBIA SENTENCIA DE DE FEBRERO DE Excepciones Preliminares Fondo Reparaciones y Costas INTRODUCCI\u00d3N. Se emite el presente voto parcialmente disidente a la Sentencia del ep\u00edgrafe en adelante la Sentencia en atenci\u00f3n a que por las razones netamente jur\u00eddicas internacionales que se expondr\u00e1n m\u00e1s adelante no se comparte el Resolutivo N\u00ba de la misma en el que se se\u00f1ala que el Estado ", - "values": [ - "Voto Separado" - ] - }, - { - "text": "VOTO RAZONADO DEL JUEZ DE ROUX RENGIFO Quisiera hacer con ocasi\u00f3n de esta sentencia una reflexi\u00f3n general sobre la cuesti\u00f3n de la determinaci\u00f3n en equidad de las compensaciones del da\u00f1o moral. Recordar\u00e9 previamente que en la sentencia a la que se refiere este escrito la Corte establece una distinci\u00f3n muy pertinente entre dos tipos de da\u00f1os morales a saber los sufrimientos y las aflicciones causados a las v\u00edctimas directas y a sus familiares por una parte y el menoscabo de valores muy para las ", - "values": [ - "Voto Separado" - ] - }, - { - "text": "CORTE INTERAMERICANA DE DERECHOS HUMANOS CASO GARC\u00cdA ASTO Y RAM\u00cdREZ ROJAS VS. PER\u00da SENTENCIA DE DE NOVIEMBRE DE En el caso Garc\u00eda Asto y Ram\u00edrez Rojas la Corte Interamericana de Derechos Humanos en adelante la Corte la Corte Interamericana o el Tribunal integrada por los siguientes jueces Sergio Garc\u00eda Ram\u00edrez Presidente Alirio Abreu Burelli Vicepresidente Oliver Jackman Juez Ant\u00f4nio A. Can\u00e7ado Trindade Juez Cecilia Medina Quiroga Jueza Manuel E. Ventura Robles Juez y Jorge Santistevan de ", - "values": [ - "Excepciones Preliminares", - "Fondo", - "Reparaciones", - "Costas" - ] - }, - { - "text": "Corte Interamericana de Derechos Humanos Caso de la Comunidad Mayagna Sumo Awas Tingni Vs. Nicaragua Sentencia de de febrero de Excepciones Preliminares En el caso de la Comunidad Mayagna Sumo Awas Tingni en adelante la Comunidad o la Comunidad Mayagna la Corte Interamericana de Derechos Humanos en adelante la Corte la Corte Interamericana o el Tribunal integrada por los siguientes jueces Ant\u00f4nio A. Can\u00e7ado Trindade Presidente M\u00e1ximo Pacheco G\u00f3mez Vicepresidente Hern\u00e1n Salgado Pesantes Juez ", - "values": [ - "Excepciones Preliminares" - ] - }, - { - "text": "RESOLUCI\u00d3N DEL PRESIDENTE DE LA CORTE INTERAMERICANA DE DERECHOS HUMANOS DE DE DICIEMBRE DE CASO LOAYZA TAMAYO VISTOS El escrito de de noviembre de y sus anexos recibido el de diciembre de en la Secretar\u00eda de la Corte Interamericana de Derechos Humanos en adelante la Corte o la Corte Interamericana mediante el cual la se\u00f1ora Michelangela Scalabrino someti\u00f3 a la Corte en nombre de la se\u00f1ora Mar\u00eda Elena Loayza Tamayo en adelante la se\u00f1ora Loayza Tamayo al amparo de los art\u00edculos de la ", - "values": [ - "Medidas Provisionales" - ] - }, - { - "text": "RESOLUCI\u00d3N DE LA CORTE INTERAMERICANA DE DERECHOS HUMANOS DE DE AGOSTO DE CASO JUAN HUMBERTO S\u00c1NCHEZ VS. HONDURAS SUPERVISI\u00d3N DE CUMPLIMIENTO DE SENTENCIA VISTO La Sentencia de excepci\u00f3n preliminar fondo reparaciones y costas en adelante la Sentencia dictada por la Corte Interamericana de Derechos Humanos en adelante la Corte Interamericana la Corte o este Tribunal el de junio de en el presente caso. Las resoluciones de supervisi\u00f3n de cumplimiento de la Sentencia dictadas por la Corte el ", - "values": [ - "Supervisi\u00f3n de cumplimiento de Sentencia" - ] - }, - { - "text": " ORDER OF THE INTERAMERICAN COURT OF HUMAN RIGHTS OF FEBRUARY PROVISIONAL MEASURES REGARDING THE STATE OF TRINIDAD AND TOBAGO CASE OF JAMES ET AL. HAVING SEEN The Order of May issued by the InterAmerican Court of Human Rights hereinafter the InterAmerican Court the Court or the Tribunal which decided inter alia to amplify the provisional measures ordered in the James et al. Cases and to order the Republic of Trinidad and Tobago to take all measures necessary to preserve the lives of Peter ", - "values": [ - "Medidas Provisionales" - ] - }, - { - "text": "Resoluci\u00f3n de la Presidenta de la Corte Interamericana de Derechos Humanos de de abril de Solicitud de Medidas Provisionales Caso Gonz\u00e1lez y otras Campo Algodonero vs. M\u00e9xico Visto El escrito de demanda presentado por la Comisi\u00f3n Interamericana de Derechos Humanos en adelante la Comisi\u00f3n Interamericana o la Comisi\u00f3n ante la Corte Interamericana de Derechos Humanos en adelante la Corte Interamericana la Corte o el Tribunal el de noviembre de El escrito de solicitudes argumentos y pruebas ", - "values": [ - "Medidas Provisionales" - ] - }, - { - "text": "Resoluci\u00f3n de la Corte Interamericana de Derechos Humanos de de noviembre de Medidas Provisionales Respecto de la Rep\u00fablica Bolivariana de Venezuela Asunto Guerrero Gallucci y Mart\u00ednez Barrios VISTOS El escrito de de junio de y sus anexos mediante los cuales la Comisi\u00f3n Interamericana de Derechos Humanos en adelante la Comisi\u00f3n Interamericana o la Comisi\u00f3n present\u00f3 a la Corte Interamericana de Derechos Humanos en adelante la Corte o el Tribunal de conformidad con los art\u00edculos de la ", - "values": [ - "Medidas Provisionales" - ] - }, - { - "text": "RESOLUCI\u00d3N DE LA CORTE INTERAMERICANA DE DERECHOS HUMANOS DE DE NOVIEMBRE DE CASO TRABAJADORES CESADOS DEL CONGRESO Aguado Alfaro y otros VS. PER\u00da SUPERVISI\u00d3N DE CUMPLIMIENTO DE SENTENCIA Y SOLICITUD DE MEDIDAS PROVISIONALES VISTO A Supervisi\u00f3n de cumplimiento de Sentencia La Sentencia de excepciones preliminares fondo reparaciones y costas en adelante la Sentencia dictada por la Corte Interamericana de Derechos Humanos en adelante la Corte la Corte Interamericana o el Tribunal el de de ", - "values": [ - "Medidas Provisionales", - "Supervisi\u00f3n de cumplimiento de Sentencia" - ] - }, - { - "text": "Corte Interamericana de Direitos Humanos Caso Goibur\u00fa e outros Vs. Paraguai Senten\u00e7a de de setembro de M\u00e9rito Repara\u00e7\u00f5es e Custas No caso Goibur\u00fa e outros A Corte Interamericana de Direitos Humanos doravante denominada Interamericana a Corte ou o Tribunal integrada pelos seguintes ju\u00edzes a Corte Sergio Garc\u00eda Ram\u00edrez Presidente Alirio Abreu Burelli VicePresidente Ant\u00f4nio A. Can\u00e7ado Trindade Juiz Cecilia Medina Quiroga Ju\u00edza Manuel E. Ventura Robles Juiz e Diego Garc\u00edaSay\u00e1n Juiz. presentes ", - "values": [ - "Fondo", - "Reparaciones", - "Costas" - ] - }, - { - "text": "VOTO PARCIALMENTE DISIDENTE DE LA JUEZA MEDINA QUIROGA A pesar de que en mi opini\u00f3n se encuentran probados los hechos que la Corte ha considerado como violatorios de la Convenci\u00f3n Americana en el cap\u00edtulo VIII de esta sentencia que examina la violaci\u00f3n de los art\u00edculos y de la Convenci\u00f3n Americana emito este voto parcialmente disidente para desechar la violaci\u00f3n del art\u00edculo y exponer mi razonamiento que difiere del de la Corte para llegar a la conclusi\u00f3n de que se ha violado el art\u00edculo ", - "values": [ - "Voto Separado" - ] - }, - { - "text": "RESOLUCI\u00d3N DE LA CORTE INTERAMERICANA DE DERECHOS HUMANOS DE DE AGOSTO DE MEDIDAS PROVISIONALES RESPECTO DE LOS ESTADOS UNIDOS MEXICANOS ASUNTO LEONEL RIVERO Y OTROS VISTO La Resoluci\u00f3n emitida por el Presidente de la Corte Interamericana de Derechos Humanos en adelante la Corte la Corte Interamericana o el Tribunal el de octubre de y las Resoluciones emitidas por el Tribunal el de noviembre de de abril de de junio de y de noviembre de La audiencia p\u00fablica sobre medidas llevada a", - "values": [ - "Medidas Provisionales" - ] - }, - { - "text": "RESOLUCI\u00d3N DE LA CORTE INTERAMERICANA DE DERECHOS HUMANOS DE DE AGOSTO DE CASO DE LA CORTE SUPREMA DE JUSTICIA QUINTANA COELLO Y OTROS VS. ECUADOR SUPERVISI\u00d3N DE CUMPLIMIENTO DE SENTENCIA VISTO La Sentencia de excepci\u00f3n preliminar fondo reparaciones y costas en adelante la Sentencia o el Fallo emitida en el presente caso por la Corte Interamericana de Derechos Humanos en adelante la Corte Interamericana la Corte o el Tribunal el de agosto de en la cual desestim\u00f3 la excepci\u00f3n preliminar y ", - "values": [ - "Supervisi\u00f3n de cumplimiento de Sentencia" - ] - }, - { - "text": "Resoluci\u00f3n del Presidente de la Corte Interamericana de Derechos Humanos de de diciembre de Caso de Heliodoro Portugal Vs. Panam\u00e1 VISTO La Resoluci\u00f3n emitida por la Corte Interamericana de Derechos Humanos en adelante la Corte Interamericana la Corte o el Tribunal el de noviembre de mediante la cual decidi\u00f3 inter alia Requerir por las razones se\u00f1aladas en los Considerandos y de la Resoluci\u00f3n y en ejercicio de la facultad que le otorga el art\u00edculo del Reglamento que los siguientes y ", - "values": [ - "Otros" - ] - }, - { - "text": "RESOLUCI\u00d3N DEL PRESIDENTE DE LA CORTE INTERAMERICANA DE DERECHOS HUMANOS DE DE ENERO DE FONDO DE ASISTENCIA LEGAL DE V\u00cdCTIMAS CASO TARAZONA ARRIETA Y OTROS VS. PER\u00da VISTO El escrito de de junio de y sus anexos mediante los cuales la Comisi\u00f3n Interamericana de Derechos Humanos en adelante tambi\u00e9n la Comisi\u00f3n Interamericana o la Comisi\u00f3n someti\u00f3 el caso Tarazona Arrieta y otros ante la Corte Interamericana de Derechos Humanos en adelante la Corte Interamericana la Corte o el Tribunal del ", - "values": [ - "Fondo de asistencia a v\u00edctimas" - ] - }, - { - "text": "VOTO CONCORDANTE DO JUIZ A. A. CAN\u00c7ADO TRINDADE Voto a favor da ado\u00e7\u00e3o da presente Senten\u00e7a pela Corte Interamericana de Direitos Humanos de transcend\u00eancia hist\u00f3rica sobre o m\u00e9rito no caso Barrios Altos a partir do reconhecimento de responsabilidade internacional efetuado pelo Estado peruano. Tal como observou a Corte par. esse reconhecimento constituiu uma contribui\u00e7\u00e3o positiva por parte do Estado demandado \u00e0 evolu\u00e7\u00e3o da aplica\u00e7\u00e3o da normativa de prote\u00e7\u00e3o da Conven\u00e7\u00e3o Americana sobre As ", - "values": [ - "Voto Separado" - ] - }, - { - "text": "RESOLUCI\u00d3N DEL PRESIDENTE DE LA CORTE INTERAMERICANA DE DERECHOS HUMANOS DE DE ABRIL DE CASO HELIODORO PORTUGAL VS. PANAM\u00c1 SUPERVISI\u00d3N DE CUMPLIMIENTO DE SENTENCIA VISTO La Sentencia de excepciones preliminares fondo reparaciones y costas en adelante la Sentencia dictada por la Corte Interamericana de Derechos Humanos en adelante la Corte la Corte Interamericana o el Tribunal el de agosto de mediante la cual dispuso que el Estado deb\u00eda pagar a Graciela De Le\u00f3n Patria Portugal y Franklin ", - "values": [ - "Supervisi\u00f3n de cumplimiento de Sentencia" - ] - }, - { - "text": "Resoluci\u00f3n de la Presidenta de la Corte Interamericana de Derechos Humanos de de mayo de Caso Blanco Romero y Otros Vs. Venezuela Supervisi\u00f3n de Cumplimiento de Sentencia Visto La Sentencia de fondo reparaciones y costas en adelante la Sentencia emitida en el presente caso por la Corte Interamericana de Derechos Humanos en adelante la Corte la Corte Interamericana o el Tribunal el de noviembre de mediante la cual dispuso que el Estado de Venezuela en adelante el Estado debe llevar a y", - "values": [ - "Supervisi\u00f3n de cumplimiento de Sentencia" - ] - }, - { - "text": "CORTE INTERAMERICANA DE DERECHOS HUMANOS CASO MASACRE DE SANTO DOMINGO VS. COLOMBIA SENTENCIA DE DE NOVIEMBRE DE Excepciones Preliminares Fondo y Reparaciones En el caso Masacre de Santo Domingo la Corte Interamericana de Derechos Humanos en adelante la Corte Interamericana la Corte o el Tribunal integrada por los siguientes Jueces Diego Garc\u00edaSay\u00e1n Presidente Manuel E. Ventura Robles Vicepresidente Leonardo A. Franco Juez Margarette May Macaulay Jueza Rhadys Abreu Blondet Jueza Alberto P\u00e9rez", - "values": [ - "Excepciones Preliminares", - "Fondo", - "Reparaciones", - "Costas" - ] - }, - { - "text": "RESOLUCI\u00d3N DE LA CORTE INTERAMERICANA DE DERECHOS HUMANOS DE DE AGOSTO DE MEDIDAS PROVISIONALES RESPECTO DE VENEZUELA ASUNTO NATERA BALBOA VISTO La Resoluci\u00f3n de la Presidencia de la Corte Interamericana de Derechos Humanos en adelante la Presidencia de de diciembre de en la cual la entonces Presidenta adopt\u00f3 medidas urgentes en el presente asunto debido a la apreciaci\u00f3n prima facie de una situaci\u00f3n de extrema gravedad y urgencia en cuanto a los derechos a la vida e integridad personal del", - "values": [ - "Medidas Provisionales" - ] - }, - { - "text": "RESOLUCI\u00d3N DE LA CORTE INTERAMERICANA DE DERECHOS HUMANOS DE DE MARZO DE MEDIDAS PROVISIONALES RESPECTO DE LA REP\u00daBLICA DE COLOMBIA CASO GUTI\u00c9RREZ SOLER VISTOS El escrito de demanda presentado por la Comisi\u00f3n Interamericana de Derechos Humanos en adelante la Comisi\u00f3n o la Comisi\u00f3n Interamericana ante la Corte Interamericana de Derechos Humanos en adelante la Corte la Corte Interamericana o el Tribunal el de marzo de El escrito de solicitudes argumentos y pruebas en adelante el escrito de ", - "values": [ - "Medidas Provisionales" - ] - }, - { - "text": "VOTO CONJUNTO CONCURRENTE DE LOS JUECES ROBERTO F. CALDAS Y EDUARDO FERRER MACGREGOR POISOT CASO CANALES HUAPAYA Y OTROS VS. PER\u00da SENTENCIA DE DE JUNIO DE Excepciones Preliminares Fondo Reparaciones y Costas INTRODUCCI\u00d3N Emitimos el presente voto concurrente para fundamentar los motivos por los cuales discrepamos con la decisi\u00f3n de la Corte deno involucrar en la Sentencia de de junio de en el Caso Canales Huapaya y Otros Vs. Per\u00fa en adelante la Sentencia dictada por la Corte de Derechos ", - "values": [ - "Voto Separado" - ] - }, - { - "text": "RESOLUCI\u00d3N DE LA CORTE INTERAMERICANA DE DERECHOS HUMANOS DE DE MARZO DE RATIFICACI\u00d3N DE MEDIDAS PROVISIONALES RESPECTO DE GUATEMALA CASO FERM\u00cdN RAM\u00cdREZ VISTOS El escrito de de septiembre de mediante el cual la Comisi\u00f3n Interamericana de Derechos Humanos en adelante la Comisi\u00f3n o la Comisi\u00f3n Interamericana someti\u00f3 ante la Corte Interamericana de Derechos Humanos en adelante la Corte la Corte Interamericana o el Tribunal una demanda contra el Estado de Guatemala en adelante el Estado o en ", - "values": [ - "Medidas Provisionales" - ] - }, - { - "text": "RESOLUCI\u00d3N DEL PRESIDENTE DE LA CORTE INTERAMERICANA DE DERECHOS HUMANOS DE DE JUNIO DE CASO DE LA MASACRE DE SANTO DOMINGO VS. COLOMBIA VISTO El escrito de sometimiento del caso presentado por la Comisi\u00f3n Interamericana de Derechos Humanos en adelante tambi\u00e9n la Comisi\u00f3n Interamericana o la Comisi\u00f3n ante la Corte Interamericana de Derechos Humanos en adelante la Corte Interamericana la Corte o el Tribunal el de julio de mediante el cual ofreci\u00f3 dos dict\u00e1menes periciales sobre los que su ", - "values": [ - "Otros" - ] - }, - { - "text": "VOTO PARCIALMENTE CONCURRENTE Y PARCIALMENTE DISIDENTE DEL JUEZ RAMON FOGEL He participado en el pronunciamiento de la sentencia dictada por la Corte en el caso Yakye Axa y he disentido de algunos puntos resolutivos de la misma en base a los fundamentos expuestos en las deliberaciones y que comprendieron las siguientes consideraciones La Comunidad ind\u00edgena Yakye Axa hace parte de la parcialidad Chanawatsan y pertenece al pueblo EnxetLengua. El pueblo Enxet es un pueblo n\u00f3mada de cazadores y ", - "values": [ - "Voto Separado" - ] - }, - { - "text": " Resoluci\u00f3n de la Presidenta de la Corte Interamericana de Derechos Humanos de de diciembre de Caso Cinco Pensionistas Vs. Per\u00fa. Supervisi\u00f3n del Cumplimiento de Sentencia Vistos La Sentencia de fondo reparaciones y costas en adelante la Sentencia dictada por la Corte Interamericana de Derechos Humanos en adelante la Corte la Corte Interamericana o el Tribunal el de febrero de mediante la cual orden\u00f3 que las consecuencias patrimoniales que pudiera tener la violaci\u00f3n al derecho a la en", - "values": [ - "Supervisi\u00f3n de cumplimiento de Sentencia" - ] - }, - { - "text": "Corte Interamericana de Derechos Humanos Caso Myrna Mack Chang Vs. Guatemala Sentencia de de noviembre de Fondo Reparaciones y Costas En el caso Myrna Mack Chang la Corte Interamericana de Derechos Humanos en adelante la Corte la Corte Interamericana o el Tribunal integrada por los siguientes jueces Ant\u00f4nio A. Can\u00e7ado Trindade Presidente Sergio Garc\u00eda Ram\u00edrez Vicepresidente Hern\u00e1n Salgado Pesantes Juez M\u00e1ximo Pacheco G\u00f3mez Juez Oliver Jackman Juez Alirio Abreu Burelli Juez Carlos Vicente de ", - "values": [ - "Fondo", - "Reparaciones", - "Costas" - ] - }, - { - "text": "RESOLUCI\u00d3N DE LA CORTE INTERAMERICANA DE DERECHOS HUMANOS DE DE NOVIEMBRE DE CASO CANTORAL BENAVIDES VS. PER\u00da SUPERVISI\u00d3N DE CUMPLIMIENTO DE SENTENCIA Visto La Sentencia de fondo dictada el de agosto de por la Corte Interamericana de Derechos Humanos en adelante la Corte la Corte Interamericana o el Tribunal. La Sentencia de reparaciones dictada por la Corte el de diciembre de El p\u00e1rrafo de la Sentencia de reparaciones supra Visto en el cual se establece que en caso de que el Estado ", - "values": [ - "Supervisi\u00f3n de cumplimiento de Sentencia" - ] - }, - { - "text": "RESOLUCI\u00d3N DE LA CORTE INTERAMERICANA DE DERECHOS HUMANOS DE DE NOVIEMBRE DE CASO LOAYZA TAMAYO CUMPLIMIENTO DE SENTENCIA VISTOS La sentencia de fondo dictada en el caso Loayza Tamayo vs. el Per\u00fa por la Corte Interamericana de Derechos Humanos en adelante la Corte la Corte Interamericana o el Tribunal el de septiembre de en la que dispuso en los puntos resolutivos quinto y sexto que Que ordena que el Estado del Per\u00fa ponga en libertad a Mar\u00eda Elena Loayza Tamayo dentro de un plazo en los", - "values": [ - "Supervisi\u00f3n de cumplimiento de Sentencia" - ] - }, - { - "text": "RESOLUCI\u00d3N DE LA CORTE INTERAMERICANA DE DERECHOS HUMANOS DE DE MAYO DE MEDIDAS PROVISIONALES ASUNTO RAM\u00cdREZ HINOSTROZA Y OTROS VISTOS La Resoluci\u00f3n de la Corte Interamericana de Derechos Humanos en adelante la Corte o el Tribunal de de septiembre de sobre medidas provisionales mediante la cual resolvi\u00f3 inter alia ratificar en todos sus t\u00e9rminos la Resoluci\u00f3n del Presidente de la Corte en adelante el Presidente de de julio de y por consiguiente requerir al Estado del Per\u00fa en adelante el", - "values": [ - "Medidas Provisionales" - ] - }, - { - "text": "RESOLUCI\u00d3N DEL PRESIDENTE DE LA CORTE INTERAMERICANA DE DERECHOS HUMANOS DE DE MARZO DE FONDO DE ASISTENCIA LEGAL DE V\u00cdCTIMAS CASO VALDEMIR QUISPIALAYA VS. PERU VISTO El escrito de de agosto de y sus anexos mediante los cuales la Comisi\u00f3n Interamericana de Derechos Humanos en adelante la Comisi\u00f3n Interamericana o la Comisi\u00f3n someti\u00f3 ante la Corte Interamericana de Derechos Humanos en adelante la Corte Interamericana la Corte o el Tribunal el presente caso. El escrito de de noviembre de ", - "values": [ - "Fondo de asistencia a v\u00edctimas" - ] - }, - { - "text": "RESOLUCI\u00d3N DE LA CORTE INTERAMERICANA DE DERECHOS HUMANOS DE DE AGOSTO DE MEDIDAS PROVISIONALES CASO LOAYZA TAMAYO VISTOS La Resoluci\u00f3n del Presidente de la Corte Interamericana de Derechos Humanos en adelante el Presidente dictada el de diciembre de mediante la cual resolvi\u00f3 Requerir al Estado que adopte sin dilaci\u00f3n cuantas medidas sean necesarias para asegurar eficazmente a la se\u00f1ora Mar\u00eda Elena Loayza Tamayo el regreso a su pa\u00eds as\u00ed como su integridad f\u00edsica ps\u00edquica y moral con el ", - "values": [ - "Medidas Provisionales" - ] - }, - { - "text": "Corte Interamericana de Derechos Humanos Caso de la Comunidad Moiwana vs. Surinam Sentencia del de febrero de Interpretaci\u00f3n de la Sentencia de Fondo Reparaciones y Costas En el Caso de la Comunidad Moiwana la Corte Interamericana de Derechos Humanos en adelante la Corte Interamericana la Corte o el Tribunal compuesta por los siguientes jueces Sergio Garc\u00eda Ram\u00edrez Presidente Alirio Abreu Burelli VicePresidente Oliver Jackman Juez Ant\u00f4nio A. Can\u00e7ado Trindade Juez Cecilia Medina Quiroga Jueza ", - "values": [ - "Interpretaci\u00f3n" - ] - }, - { - "text": "CORTE INTERAMERICANA DE DERECHOS HUMANOS CASO RADILLA PACHECO VS. ESTADOS UNIDOS MEXICANOS SENTENCIA DE DE NOVIEMBRE DE Excepciones Preliminares Fondo Reparaciones y Costas En el caso Radilla Pacheco la Corte Interamericana de Derechos Humanos en adelante la Corte Interamericana la Corte o el Tribunal integrada por los siguientes jueces Cecilia Medina Quiroga Presidenta Diego Garc\u00edaSay\u00e1n Vicepresidente Manuel E. Ventura Robles Juez Margarette May Macaulay Jueza y Rhadys Abreu Blondet Jueza ", - "values": [ - "Excepciones Preliminares", - "Fondo", - "Reparaciones", - "Costas" - ] - }, - { - "text": "RESOLUCI\u00d3N DE LA CORTE INTERAMERICANA DE DERECHOS HUMANOS DE DE NOVIEMBRE DE CASO BAENA RICARDO Y OTROS TRABAJADORES VS. PANAM\u00c1 CUMPLIMIENTO DE SENTENCIA VISTOS La Sentencia que emiti\u00f3 la Corte Interamericana de Derechos Humanos en adelante la Corte la Corte Interamericana o el Tribunal en el caso Baena Ricardo y otros el de febrero de en adelante la Sentencia en cuyos puntos resolutivos por unanimidad declar\u00f3 que el Estado viol\u00f3 los principios de legalidad y de irretroactividad en el ", - "values": [ - "Supervisi\u00f3n de cumplimiento de Sentencia" - ] - }, - { - "text": "RESOLUCI\u00d3N DE LA CORTE INTERAMERICANA DE DERECHOS HUMANOS DEL DE JUNIO DE MEDIDAS PROVISIONALES SOLICITADAS POR LA COMISI\u00d3N INTERAMERICANA DE DERECHOS HUMANOS RESPECTO DE LA REPUBLICA DE GUATEMALA CASO VOGT VISTO El escrito de de marzo de y sus anexos mediante el cual la Comisi\u00f3n Interamericana de Derechos Humanos en adelante la Comisi\u00f3n o la Comisi\u00f3n Interamericana somete a la Corte Interamericana de Derechos Humanos en adelante la Corte o la Corte Interamericana en virtud de los de la ", - "values": [ - "Medidas Provisionales" - ] - }, - { - "text": "Voto concurrente del Juez Diego Garc\u00edaSay\u00e1n en relaci\u00f3n con la Sentencia de la Corte Interamericana de Derechos Humanos en el Caso Cepeda Vargas vs. Colombia de de mayo de En este voto concurrente desarrollo el fundamento de mi coincidencia con lo decidido por la Corte en la Sentencia del caso Cepeda Vargas vs. Colombia en lo que ata\u00f1e a la valoraci\u00f3n positiva de lo actuado en el \u00e1mbito interno en la jurisdicci\u00f3n contencioso administrativa con respecto a la determinaci\u00f3n de una indemnizaci\u00f3n", - "values": [ - "Voto Separado" - ] - }, - { - "text": "VOTO CONCURRENTE DEL JUEZ SERGIO GARC\u00cdA RAM\u00cdREZ A LA SENTENCIA SOBRE EL CASO PALAMARA IRIBARNE VS. CHILE DE DE NOVIEMBRE DE Son temas centrales en este caso la libertad de expresi\u00f3n y el debido proceso penal. Este que ser\u00e1 el asunto principal del presente Voto concurrente constituye la cuesti\u00f3n m\u00e1s frecuentemente tratada por la jurisprudencia de la Corte Interamericana en lo que respecta a casos contenciosos y tambi\u00e9n ha sido abordada directa o indirectamente en algunas opiniones consultivas.", - "values": [ - "Voto Separado" - ] - }, - { - "text": "RESOLUCI\u00d3N DE LA CORTE INTERAMERICANA DE DERECHOS HUMANOS DE DE JULIO DE CASO G\u00d3MEZ PALOMINO VS. PER\u00da SUPERVISI\u00d3N DE CUMPLIMIENTO DE SENTENCIA VISTO La Sentencia de fondo reparaciones y costas en adelante la Sentencia dictada por la Corte Interamericana de Derechos Humanos en adelante la Corte la Corte Interamericana o el Tribunal el de noviembre de mediante la cual dispuso que El Estado deb\u00eda cumplir su obligaci\u00f3n de investigar efectivamente los hechos denunciados as\u00ed como identificar y", - "values": [ - "Supervisi\u00f3n de cumplimiento de Sentencia" - ] - }, - { - "text": " VOTO RAZONADO Y PARCIALMENTE DISIDENTE DEL JUEZ FERNANDO VIDAL RAM\u00cdREZ Participo en el pronunciamiento de la sentencia con el razonamiento ya expresado y que es definitorio de mi status como Juez ad hoc caso Durand y Ugarte y por las siguientes consideraciones Al resolver las excepciones preliminares la Corte las desestim\u00f3 y decidi\u00f3 continuar con la tramitaci\u00f3n del fondo. Contra lo resuelto dej\u00e9 expresada mi disidencia en relaci\u00f3n a seis de las siete excepciones preliminares propuestas as\u00ed ", - "values": [ - "Voto Separado" - ] - }, - { - "text": "RESOLUCI\u00d3N DEL PRESIDENTE DE LA CORTE INTERAMERICANA DE DERECHOS HUMANOS DE DE MAYO DE FONDO DE ASISTENCIA LEGAL DE V\u00cdCTIMAS CASO FORNER\u00d3N E HIJA VS. ARGENTINA VISTO El escrito de de noviembre de y su anexo mediante los cuales la Comisi\u00f3n Interamericana de Derechos Humanos en adelante la Comisi\u00f3n Interamericana o la Comisi\u00f3n someti\u00f3 a la Corte Interamericana de Derechos Humanos en adelante la Corte Interamericana la Corte o el Tribunal un caso en contra de la Rep\u00fablica Argentina en o el ", - "values": [ - "Fondo de asistencia a v\u00edctimas" - ] - }, - { - "text": "Resoluci\u00f3n de la Corte Interamericana de Derechos Humanos de de noviembre de Medidas provisionales respecto de Venezuela Asunto de los diarios El Nacional y As\u00ed es la Noticia Vistos La Resoluci\u00f3n de la Corte Interamericana de Derechos Humanos en adelante la Corte Interamericana la Corte o el Tribunal de de julio de respecto de la Rep\u00fablica Bolivariana de Venezuela en adelante el Estado o Venezuela mediante la cual resolvi\u00f3 Requerir al Estado que adoptara sin dilaci\u00f3n las medidas que y", - "values": [ - "Medidas Provisionales" - ] - }, - { - "text": "CORTE INTERAMERICANA DE DERECHOS HUMANOS CASO VARGAS ARECO VS. PARAGUAY SENTENCIA DE DE SEPTIEMBRE DE En el caso Vargas Areco la Corte Interamericana de Derechos Humanos en adelante la Corte Interamericana la Corte o el Tribunal integrada por los siguientes jueces Sergio Garc\u00eda Ram\u00edrez Presidente Alirio Abreu Burelli Vicepresidente Ant\u00f4nio A. Can\u00e7ado Trindade Juez Cecilia Medina Quiroga Jueza Manuel E. Ventura Robles Juez y Diego Garc\u00edaSay\u00e1n Juez presentes adem\u00e1s Pablo Saavedra Alessandri y ", - "values": [ - "Fondo", - "Reparaciones", - "Costas" - ] - }, - { - "text": "RESOLUCI\u00d3N DE LA CORTE INTERAMERICANA DE DERECHOS HUMANOS DE DE SEPTIEMBRE DE MEDIDAS PROVISIONALES SOLICITADAS POR LA COMISION INTERAMERICANA DE DERECHOS HUMANOS RESPECTO DE LA REP\u00daBLICA DEL PER\u00da CASO CESTI HURTADO VISTOS El escrito de de julio de mediante el cual la Comisi\u00f3n Interamericana de Derechos Humanos en adelante la Comisi\u00f3n o la Comisi\u00f3n Interamericana someti\u00f3 a la Corte Interamericana de Derechos Humanos en adelante la Corte o la Corte Interamericana en virtud de los art\u00edculos ", - "values": [ - "Medidas Provisionales" - ] - }, - { - "text": "RESOLUCI\u00d3N DEL PRESIDENTE DE LA CORTE INTERAMERICANA DE DERECHOS HUMANOS DE DE MAYO DE CASO ANDRADE SALM\u00d3N VS. BOLIVIA VISTO El escrito de sometimiento del caso y el Informe de Fondo de la Comisi\u00f3n Interamericana de Derechos Humanos en adelante la Comisi\u00f3n Interamericana o la Comisi\u00f3n el escrito de solicitudes argumentos y pruebas en adelante el escrito de solicitudes y argumentos de los representantes de la presunta v\u00edctima en adelante los representantes y el escrito de contestaci\u00f3n al ", - "values": [ - "Otros" - ] - }, - { - "text": "VOTO CONCURRENTE RAZONADO DEL JUEZ SERGIO GARC\u00cdA RAM\u00cdREZ Concurro con mis colegas en la emisi\u00f3n de la Sentencia correspondiente al Caso Cinco Pensionistas vs. Per\u00fa sin perjuicio de exponer las razones que tom\u00e9 en cuenta para emitir mi voto coincidente en relaci\u00f3n con diversos puntos analizados en esa decisi\u00f3n. Hechos planteados fuera de la demanda La tendencia que se observa claramente en los sucesivos Reglamentos de la Corte sobre todo en el vigente del a\u00f1o ha llevado al establecimiento de ", - "values": [ - "Voto Separado" - ] - }, - { - "text": "RESOLUCI\u00d3N DE LA CORTE INTERAMERICANA DE DERECHOS HUMANOS DE DE SEPTIEMBRE DE MEDIDAS PROVISIONALES ADOPTADAS POR LA CORTE INTERAMERICANA DE DERECHOS HUMANOS RESPECTO DE LA REP\u00daBLICA DE COLOMBIA CASO CABALLERO DELGADO Y SANTANA VISTOS La resoluci\u00f3n de la Corte Interamericana de Derechos Humanos en adelante la Corte de de abril de en la cual decidi\u00f3 Requerir al Estado de Colombia que adopte sin dilaci\u00f3n las medidas necesarias para proteger la vida e integridad personal de los se\u00f1ores ", - "values": [ - "Medidas Provisionales" - ] - }, - { - "text": "Corte Interamericana de Direitos Humanos Caso Su\u00e1rez Rosero Vs. Equador Senten\u00e7a de de novembro de M\u00e9rito No caso Su\u00e1rez Rosero A Corte Interamericana de Direitos Humanos integrada pelos seguintes ju\u00edzes Ant\u00f4nio A. Can\u00e7ado Trindade Presidente Hern\u00e1n Salgado Pesantes Juiz H\u00e9ctor FixZamudio Juiz Alejandro Montiel Arg\u00fcello Juiz M\u00e1ximo Pacheco G\u00f3mez Juiz Oliver Jackman Juiz e Alirio Abreu Burelli Juiz presentes ademais Manuel E. Ventura Robles Secret\u00e1rio e V\u00edctor M. Rodr\u00edguez Rescia Secret\u00e1rio ", - "values": [ - "Fondo" - ] - }, - { - "text": "RESOLUCI\u00d3N DE LA CORTE INTERAMERICANA DE DERECHOS HUMANOS DE DE NOVIEMBRE DE MEDIDAS PROVISIONALES SOLICITADAS POR LA COMISI\u00d3N INTERAMERICANA DE DERECHOS HUMANOS RESPECTO DE LA REP\u00daBLICA DE VENEZUELA LUISIANA R\u00cdOS Y OTROS VS. VENEZUELA VISTOS La comunicaci\u00f3n de de noviembre de y sus anexos mediante la cual la Comisi\u00f3n Interamericana de Derechos Humanos en adelante la Comisi\u00f3n Interamericana o la Comisi\u00f3n someti\u00f3 a la Corte Interamericana de Derechos Humanos en adelante la Corte la Corte o", - "values": [ - "Medidas Provisionales" - ] - }, - { - "text": "CORTE INTERAMERICANA DE DERECHOS HUMANOS CASO QUISPIALAYA VILCAPOMA VS. PER\u00da SENTENCIA DE DE NOVIEMBRE DE Excepciones Preliminares Fondo Reparaciones y Costas En el CasoQuispialaya Vilcapoma la Corte Interamericana de Derechos Humanos en adelante la Corte Interamericana la Corte o el Tribunal integrada por los siguientes jueces Humberto Antonio Sierra Porto Presidente Roberto F. Caldas Vicepresidente Manuel E. Ventura Robles Juez Alberto P\u00e9rez P\u00e9rez Juez Eduardo Vio Grossi Juez y Eduardo ", - "values": [ - "Excepciones Preliminares", - "Fondo", - "Reparaciones", - "Costas" - ] - }, - { - "text": "Resoluci\u00f3n de la Corte Interamericana de Derechos Humanos de de noviembre de Medidas Provisionales respecto del Estado de Nicaragua Caso Comunidad Mayagna Sumo Awas Tingni VISTOS La Sentencia de la Corte Interamericana de Derechos Humanos en adelante la Corte Interamericana la Corte o el Tribunal de de agosto de en el Caso de la Comunidad Mayagna Sumo Awas Tingni en adelante la Comunidad Awas Tingni o la Comunidad. La Resoluci\u00f3n de la Corte Interamericana de de septiembre de mediante la", - "values": [ - "Medidas Provisionales" - ] - }, - { - "text": "RESOLUCI\u00d3N DE LA CORTE INTERAMERICANA DE DERECHOS HUMANOS DE DE NOVIEMBRE DE MEDIDAS PROVISIONALES RESPECTO DEL ESTADO DE GUATEMALA CASO BLAKE VISTOS La Resoluci\u00f3n del Presidente de la Corte Interamericana de Derechos Humanos en adelante el Presidente de de agosto de mediante la cual resolvi\u00f3 Solicitar al Gobierno de la Rep\u00fablica de Guatemala que adopte sin dilaci\u00f3n cuantas medidas sean necesarias para asegurar eficazmente la protecci\u00f3n de la vida e integridad personal de JUSTO VICTORIANO", - "values": [ - "Medidas Provisionales" - ] - }, - { - "text": "RESOLUCI\u00d3N DE LA CORTE INTERAMERICANA DE DERECHOS HUMANOS DE DE NOVIEMBRE DE CASO CANTOS VS. ARGENTINA CUMPLIMIENTO DE SENTENCIA VISTOS La Sentencia de fondo reparaciones y costas emitida el de noviembre de por la Corte Interamericana de Derechos Humanos en adelante la Corte la Corte Interamericana o el Tribunal mediante la cual el Tribunal declar\u00f3 inter alia que el Estado viol\u00f3 el derecho de acceso a la justicia consagrado en los art\u00edculos y de la Convenci\u00f3n Americana sobre Derechos en", - "values": [ - "Supervisi\u00f3n de cumplimiento de Sentencia" - ] - }, - { - "text": "Resoluci\u00f3n de la Corte Interamericana de Derechos Humanos de de noviembre de Caso Casta\u00f1eda Gutman VISTOS El escrito de demanda de de marzo de presentado por la Comisi\u00f3n Interamericana de Derechos Humanos en adelante la Comisi\u00f3n o la Comisi\u00f3n Interamericana ante la Corte Interamericana de Derechos Humanos en adelante la Corte o el Tribunal en el cual propuso como perito al se\u00f1or Lorenzo C\u00f3rdova Vianello para que rindiera declaraci\u00f3n sobre los mecanismos existentes en M\u00e9xico para la por ", - "values": [ - "Otros" - ] - }, - { - "text": "RESOLUCI\u00d3N DE LA CORTE INTERAMERICANA DE DERECHOS HUMANOS DE DE NOVIEMBRE DE CASO CABALLERO DELGADO Y SANTANA VS. COLOMBIA SUPERVISI\u00d3N DE CUMPLIMIENTO DE SENTENCIA VISTO Las Sentencias de fondo y de reparaciones y costas en adelante las Sentencias dictadas por la Corte Interamericana de Derechos Humanos en adelante la Corte Interamericana la Corte o el Tribunal el de diciembre de y el de enero de respectivamente. Las resoluciones de supervisi\u00f3n de cumplimiento de las Sentencias que la ", - "values": [ - "Supervisi\u00f3n de cumplimiento de Sentencia" - ] - }, - { - "text": "RESOLUCI\u00d3N DE LA CORTE INTERAMERICANA DE DERECHOS HUMANOS DE DE SEPTIEMBRE DE AMPLIACI\u00d3N DE MEDIDAS PROVISIONALES SOLICITADAS POR LA COMISI\u00d3N INTERAMERICANA DE DERECHOS HUMANOS RESPECTO DE LA REP\u00daBLICA DE GUATEMALA CASO COLOTENANGO VISTOS La Resoluci\u00f3n de la Corte Interamericana de Derechos Humanos en adelante la Corte o la Corte Interamericana de de junio de en la cual decidi\u00f3 Requerir al Gobierno de Guatemala que adoptase sin dilaci\u00f3n cuantas medidas fuesen necesarias para proteger el ", - "values": [ - "Medidas Provisionales" - ] - }, - { - "text": "CONCURRING OPINION OF JUDGE AA. CAN\u00c7ADO TRINDADE I have concurred with the adoption of this Judgment which has been recently rendered by the InterAmerican Court of Human Rights in the Case of the Indigenous Community Yakye Axa v. Paraguay wherein the Court asserts the obligations of the respondent State with the Yakye Axa Community regarding the definite transfer of the traditional territories to the Yakye Axa Community para. I basically agree with the decision adopted by the Court and I its", - "values": [ - "Voto Separado" - ] - }, - { - "text": "VOTO CONCURRENTE DEL JUEZ AA. CAN\u00c7ADO TRINDADE Al votar a favor de la adopci\u00f3n por la Corte Interamericana de Derechos Humanos de la presente Sentencia sobre el fondo del caso La \u00daltima Tentaci\u00f3n de Cristo Olmedo Bustos y Otros versus Chile que salvaguarda el derecho a la libertad de pensamiento y de expresi\u00f3n me veo obligado a dejar constancia de mis reflexiones acerca de las implicaciones jur\u00eddicas altamente relevantes de lo decidido por la Corte como fundamento de mi posici\u00f3n al respecto. ", - "values": [ - "Voto Separado" - ] - }, - { - "text": "VOTO RAZONADO Y PARCIALMENTE DISIDENTE DEL JUEZ ARTURO MART\u00cdNEZ G\u00c1LVEZ En mi calidad de Juez ad hoc en el presente caso Myrna Mack Chang cuya demanda present\u00f3 la Comisi\u00f3n Interamericana de Derechos Humanos contra el Estado de Guatemala me pronuncio sobre lo siguiente I. En la cuesti\u00f3n de fondo con referencia al allanamiento presentado por el Estado de Guatemala la Corte no obstante entr\u00f3 a valorar la prueba de los hechos que por este acto procesal dejaron de ser controvertidos tanto m\u00e1s cuanto ", - "values": [ - "Voto Separado" - ] - }, - { - "text": "Resoluci\u00f3n de la Corte Interamericana de Derechos Humanos De de noviembre de Caso de la Panel Blanca Paniagua Morales y otros Vs. Guatemala Supervisi\u00f3n de Cumplimiento de Sentencias VISTOS La Sentencia de fondo dictada por la Corte Interamericana de Derechos Humanos en adelante la Corte la Corte Interamericana o el Tribunal el de marzo de La Sentencia de reparaciones dictada por la Corte el de mayo de La Resoluci\u00f3n emitida por el Tribunal el de noviembre de mediante la cual declar\u00f3 ", - "values": [ - "Supervisi\u00f3n de cumplimiento de Sentencia" - ] - }, - { - "text": "VOTO PARCIALMENTE DISIDENTE DEL JUEZ MANUEL E. VENTURA ROBLES Mi disidencia parcial sobre el punto resolutivo de la presente Sentencia sobre el Caso Manuel Cepeda Vargas vs. Colombia en relaci\u00f3n con la determinaci\u00f3n de la indemnizaci\u00f3n por la p\u00e9rdida de ingresos versa espec\u00edficamente sobre el criterio que adopt\u00f3 la mayor\u00eda de los Jueces de la Corte para determinar el monto por p\u00e9rdida de ingresos que valor\u00f3 positivamente lo actuado en esta materia por los tribunales internos en el caso sub y ", - "values": [ - "Voto Separado" - ] - }, - { - "text": "VOTO INDIVIDUAL CONCURRENTE DEL JUEZ EDUARDO VIO GROSSI CORTE INTERAMERICANA DE DERECHOS HUMANOS CASO UZC\u00c1TEGUI Y OTROS VS. VENEZUELA SENTENCIA DE DE SEPTIEMBRE DE Fondo y Reparaciones Introducci\u00f3n. El suscrito emite el presente Voto Individual Concurrente con respecto a la Sentencia indicada en el t\u00edtulo en adelante la Sentencia en atenci\u00f3n a que si bien la apoya era partidario de que tambi\u00e9n incluyera a las dos propuestas que durante el debate correspondiente formul\u00f3 las que empero fueron ", - "values": [ - "Voto Separado" - ] - }, - { - "text": "VOTO CONCORDANTE DO JUIZ EDUARDO VIO GROSSI CASO DOS MASSACRES DE EL MOZOTE E LUGARES VIZINHOS VS. EL SALVADOR SENTEN\u00c7A DE DE OUTUBRO DE M\u00e9rito Repara\u00e7\u00f5es e Custas Profiro o presente voto concordante com respeito \u00e0 Senten\u00e7a indicada no t\u00edtulo a fim de fazer constar que em aten\u00e7\u00e3o ao que nela se considera provado que nos massacres a que se refere foram executadas mulheres gr\u00e1vidas e que inclusive nas exuma\u00e7\u00f5es correspondentes foram recuperados os restos mortais de um feto o subscrito prop\u00f4s ", - "values": [ - "Voto Separado" - ] - }, - { - "text": "RESOLUCI\u00d3N DE LA CORTE INTERAMERICANA DE DERECHOS HUMANOS DE DE NOVIEMBRE DE CASO DE LOS HERMANOS G\u00d3MEZ PAQUIYAURI VS. PER\u00da CUMPLIMIENTO DE SENTENCIA VISTOS La Sentencia de fondo reparaciones y costas emitida el de julio de por la Corte Interamericana de Derechos Humanos en adelante la Corte la Corte Interamericana o el Tribunal mediante la cual el Tribunal declar\u00f3 inter alia que el Estado viol\u00f3 el Derecho a la Vida consagrado en el art\u00edculo de la Convenci\u00f3n Americana sobre Derechos en ", - "values": [ - "Supervisi\u00f3n de cumplimiento de Sentencia" - ] - }, - { - "text": "RESOLUCI\u00d3N DE LA CORTE INTERAMERICANA DE DERECHOS HUMANOS DE DE FEBRERO DE MEDIDAS PROVISIONALES ORDENADAS POR LA CORTE INTERAMERICANA DE DERECHOS HUMANOS RESPECTO DE LA REP\u00daBLICA DE GUATEMALA CASO COLOTENANGO VISTOS La resoluci\u00f3n de la Corte Interamericana de Derechos Humanos en adelante la Corte o la Corte Interamericana de de junio de mediante la cual Requiri\u00f3 al Gobierno de Guatemala que adoptase sin dilaci\u00f3n cuantas medidas fuesen necesarias para proteger el derecho a la vida e de ", - "values": [ - "Medidas Provisionales" - ] - }, - { - "text": "RESOLUCI\u00d3N DE LA CORTE INTERAMERICANA DE DERECHOS HUMANOS DE DE NOVIEMBRE DE MEDIDAS PROVISIONALES ADOPTADAS POR LA CORTE INTERAMERICANA DE DERECHOS HUMANOS RESPECTO DE LA REP\u00daBLICA DE COLOMBIA CASO GIRALDO CARDONA VISTOS La resoluci\u00f3n de la Corte Interamericana de Derechos Humanos en adelante la Corte o la Corte Interamericana de de febrero de mediante la cual Requiri\u00f3 al Gobierno de la Rep\u00fablica de Colombia a. Que mantenga las medidas provisionales en favor de la Hermana Noemy Palencia", - "values": [ - "Medidas Provisionales" - ] - }, - { - "text": "VOTO RAZONADO DEL JUEZ SERGIO GARCIA RAMIREZ EN LA SENTENCIA DE LA CORTE INTERAMERICANA DE DERECHOS HUMANOS SOBRE EL CASO DE LA CRUZ FLORES DE DE NOVIEMBRE DE En este Voto razonado me referir\u00e9 s\u00f3lo a un tema que se examina en la Sentencia dictada por la Corte Interamericana de Derechos Humanos en el Caso De La Cruz Flores emitida el de noviembre de el acto m\u00e9dico y la ley penal desde la perspectiva de los derechos humanos y en las circunstancias que se acreditaron en dicho caso. Aludo al ", - "values": [ - "Voto Separado" - ] - }, - { - "text": "Corte Interamericana de Derechos Humanos Caso de la Masacre de Mapirip\u00e1n Vs. Colombia Sentencia de de marzo de Excepciones Preliminares En el caso de la Masacre de Mapirip\u00e1n la Corte Interamericana de Derechos Humanos en adelante la Corte Interamericana la Corte o el Tribunal integrada por los siguientes jueces Sergio Garc\u00eda Ram\u00edrez Presidente Alirio Abreu Burelli Vicepresidente Oliver Jackman Juez Ant\u00f4nio A. Can\u00e7ado Trindade Juez Cecilia Medina Quiroga Jueza Manuel E. Ventura Robles Juez y", - "values": [ - "Excepciones Preliminares" - ] - }, - { - "text": "VOTO CONCURRENTE RAZONADO DEL JUEZ SERGIO GARC\u00cdA RAM\u00cdREZ Concurro con la mayor\u00eda de los integrantes de esta Corte en la argumentaci\u00f3n y resoluci\u00f3n sobre las excepciones preliminares correspondientes al Caso Las Palmeras sentencia del de febrero de Sin embargo considero conveniente ampliar los razonamientos relativos a la segunda excepci\u00f3n preliminar opuesta por el Estado falta de competencia de la Comisi\u00f3n p\u00e1rrs. segunda y y punto resolutivo que la Corte admiti\u00f3. Esta decisi\u00f3n es con la ", - "values": [ - "Voto Separado" - ] - }, - { - "text": "RESOLUCI\u00d3N DE LA CORTE INTERAMERICANA DE DERECHOS HUMANOS DE DE JUNIO DE CASO LUIS WILLIAMS POLLO RIVERA VS. PER\u00da VISTO El sometimiento del caso Luis Williams Pollo Rivera vs. Per\u00fa ante la Corte Interamericana de Derechos Humanos en adelante la Corte o el Tribunal por parte de la Comisi\u00f3n Interamericana de Derechos Humanos en adelante la Comisi\u00f3n Interamericana o la Comisi\u00f3n realizado mediante escrito de de febrero de El escrito original y los anexos fueron recibidos el de febrero de En", - "values": [ - "Otros" - ] - }, - { - "text": "Resoluci\u00f3n de la Corte Interamericana de Derechos Humanos de de noviembre de Caso de Heliodoro Portugal vs. Panam\u00e1 VISTO El escrito de demanda presentado por la Comisi\u00f3n Interamericana de Derechos Humanos en adelante la Comisi\u00f3n Interamericana o la Comisi\u00f3n ante la Corte Interamericana de Derechos Humanos en adelante la Corte Interamericana la Corte o el Tribunal el de enero de mediante el cual ofreci\u00f3 cinco testigos. El escrito de solicitudes argumentos y pruebas en adelante escrito de ", - "values": [ - "Otros" - ] - }, - { - "text": "DE LA RESOLUCI\u00d3N DE LA PRESIDENTA CORTE INTERAMERICANA DE DERECHOS HUMANOS DE DE JUNIO DE CASO LUISIANA R\u00cdOS Y OTROS VS. VENEZUELA VISTOS El escrito de demanda presentado el de abril de por la Comisi\u00f3n Interamericana de Derechos Humanos en adelante la Comisi\u00f3n o la Comisi\u00f3n Interamericana ante la Corte Interamericana de Derechos Humanos en adelante la Corte la Corte Interamericana o el Tribunal v\u00eda facsimilar sin sus anexos. La referida demanda fue presentada el de mayo de con sus anexos", - "values": [ - "Otros" - ] - }, - { - "text": "VOTO CONCURRENTE CONJUNTO DE LOS JUECES AA. CAN\u00c7ADO TRINDADE Y A. ABREU BURELLI Quiso el destino que la \u00faltima Sentencia de la Corte Interamericana de Derechos Humanos en este a\u00f1o en el umbral del a\u00f1o recayera sobre una situaci\u00f3n que afecta a un sector particularmente vulnerable de la poblaci\u00f3n de los pa\u00edses de Am\u00e9rica Latina la de los padecimientos de los ni\u00f1os en la calle. El p\u00e1rrafo de la presente Sentencia a nuestro juicio refleja con fidelidad el estado actual de evoluci\u00f3n del derecho a", - "values": [ - "Voto Separado" - ] - }, - { - "text": "RESOLUCI\u00d3N DE LA CORTE INTERAMERICANA DE DERECHOS HUMANOS DEL DE FEBRERO DE MEDIDAS PROVISIONALES SOLICITADAS POR LA COMISI\u00d3N INTERAMERICANA DE DERECHOS HUMANOS RESPECTO DE GUATEMALA CASO CARPIO NICOLLE VISTO La Resoluci\u00f3n de la Corte Interamericana de Derechos Humanos en adelante la Corte o la Corte Interamericana de de septiembre de mediante la que se resolvi\u00f3 Confirmar y hacer suyas las medidas urgentes tomadas por el Presidente mediante resoluciones de de junio y de julio de Que ", - "values": [ - "Medidas Provisionales" - ] - }, - { - "text": "Voto razonado del Juez ad hoc Arturo Alfredo Herrador Sandoval en el caso Ferm\u00edn Ram\u00edrez vs. Guatemala Indice I. II. III. IV. V. VI. Introducci\u00f3n Jurisdicci\u00f3n de la Corte De las deficiencias procesales Del Indulto De las condiciones carcelarias Conclusi\u00f3n Guatemala es un Estado de transici\u00f3n la democracia guatemalteca producto de d\u00e9cadas de lucha generacional a\u00fan es joven pero prometedora I. Introducci\u00f3n En mi calidad de juez ad hoc nombrado por el Estado de Guatemala concurro con mi voto con ", - "values": [ - "Voto Separado" - ] - }, - { - "text": "Corte Interamericana de Direitos Humanos Caso La Cantuta Vs. Peru Senten\u00e7a de de novembro de M\u00e9rito Repara\u00e7\u00f5es e Custas No caso La Cantuta A Corte Interamericana de Direitos Humanos doravante denominada Interamericana Corte ou Tribunal integrada pelos seguintes ju\u00edzes Corte Sergio Garc\u00eda Ram\u00edrez Presidente Alirio Abreu Burelli VicePresidente Ant\u00f4nio Augusto Can\u00e7ado Trindade Juiz Cecilia Medina Quiroga Ju\u00edza Manuel E. Ventura Robles Juiz e Fernando Vidal Ram\u00edrez Juiz ad hoc presentes ademais ", - "values": [ - "Fondo", - "Reparaciones", - "Costas" - ] - }, - { - "text": "RESOLUCI\u00d3N DE LA CORTE INTERAMERICANA DE DERECHOS HUMANOS DE DE SEPTIEMBRE DE CASO DE LAS HERMANAS SERRANO CRUZ VS. EL SALVADOR SUPERVISI\u00d3N DE CUMPLIMIENTO DE SENTENCIA VISTOS La Sentencia de fondo reparaciones y costas en adelante la Sentencia dictada por la Corte Interamericana de Derechos Humanos en adelante la Corte la Corte Interamericana o el Tribunal el de marzo de mediante la cual DECLAR\u00d3 Por seis votos contra uno que El Estado viol\u00f3 los derechos a las garant\u00edas judiciales y a la ", - "values": [ - "Supervisi\u00f3n de cumplimiento de Sentencia" - ] - }, - { - "text": "VOTO CONCURRENTE DE LA JUEZA RHADYS ABREU BLONDET SENTENCIA DE LA CORTE INTERAMERICANA DE DERECHOS HUMANOS CASO BARBANI DUARTE Y OTROS VS. URUGUAY DE DE OCTUBRE DE He decidido presentar un Voto Concurrente a la decisi\u00f3n de la Corte Interamericana respecto a la interpretaci\u00f3n y aplicaci\u00f3n del art\u00edculo de la Convenci\u00f3n Americana a la actuaci\u00f3n de la Comisi\u00f3n Asesora y del Directorio del Banco Central del Uruguay en el caso Barbani Duarte y otros. Entiendo que la decisi\u00f3n del Tribunal fue la ", - "values": [ - "Voto Separado" - ] - }, - { - "text": "Corte Interamericana de Derechos Humanos Caso Apitz Barbera y otros Corte Primera de lo Contencioso Administrativo vs. Venezuela Sentencia de de agosto de Excepci\u00f3n preliminar Fondo Reparaciones y Costas En el caso Apitz Barbera y otros la Corte Interamericana de Derechos Humanos en adelante la Corte Interamericana la Corte o el Tribunal integrada por los siguientes jueces Cecilia Medina Quiroga Presidenta Sergio Garc\u00eda Ram\u00edrez Juez Manuel E. Ventura Robles Juez Leonardo A. Franco Juez May ", - "values": [ - "Excepciones Preliminares", - "Fondo", - "Reparaciones", - "Costas" - ] - }, - { - "text": "VOTO FUNDAMENTADO DO JUIZ SERGIO GARC\u00cdA RAM\u00cdREZ \u00c0 SENTEN\u00c7A DA CORTE INTERAMERICANA DE DIREITOS HUMANOS NO CASO GOIBUR\u00da E OUTROS VS. PARAGUAI DE DE SETEMBRO DE Concordo com o parecer de meus colegas manifestado na Senten\u00e7a deste caso sem preju\u00edzo de estabelecer ou reiterar algumas preocupa\u00e7\u00f5es em rela\u00e7\u00e3o a certos conceitos cujo sentido e alcance requerem coment\u00e1rio. Desde logo esta precis\u00e3o na qual deixo a salvo a opini\u00e3o de quem tem pontos de vista diferentes n\u00e3o modifica minha participa\u00e7\u00e3o ", - "values": [ - "Voto Separado" - ] - }, - { - "text": "VOTO RAZONADO DEL JUEZ AA. CAN\u00c7ADO TRINDADE Voto a favor de la adopci\u00f3n por la Corte Interamericana de Derechos Humanos de la presente Sentencia sobre Excepciones Preliminares en el caso Benjam\u00edn y Otros versus Trinidad y Tobago que a mi juicio representa un aporte significativo del Derecho Internacional de los Derechos Humanos a la evoluci\u00f3n de un aspecto espec\u00edfico del Derecho Internacional contempor\u00e1neo a saber el atinente a la jurisdicci\u00f3n internacional obligatoria basada en la aceptaci\u00f3n ", - "values": [ - "Voto Separado" - ] - }, - { - "text": "VOTO RAZONADO DEL JUEZ AD HOC EDUARDO FERRER MACGREGOR POISOT EN RELACI\u00d3N CON LA SENTENCIA DE LA CORTE INTERAMERICANA DE DERECHOS HUMANOS EN EL CASO CABRERA GARC\u00cdA Y MONTIEL FLORES VS. M\u00c9XICO DE DE NOVIEMBRE DE I. INTRODUCCI\u00d3N La Corte Interamericana de Derechos Humanos en adelante Corte IDH o Tribunal Interamericano ha reiterado en el presente caso por unanimidad de votos su doctrina jurisprudencial sobre el control de convencionalidad. He considerado oportuno emitir el presente voto para ", - "values": [ - "Voto Separado" - ] - }, - { - "text": " CASO ACEVEDO BUEND\u00cdA E OUTROS DEMITIDOS E APOSENTADOS DA CONTROLADORIA VS. PERU SENTEN\u00c7A DE DE JULHO DE Exce\u00e7\u00e3o Preliminar M\u00e9rito Repara\u00e7\u00f5es e Custas VOTO CONCORDANTE DO JUIZ AD HOC V\u00cdCTOR OSCAR SHIYIN GARC\u00cdA TOMA No caso Acevedo Buend\u00eda e outros Demitidos e Aposentados da Controladoria Vs. Peru. Ratifico minha posi\u00e7\u00e3o exposta verbalmente na sess\u00e3o de de julho de na qual foi discutida a reda\u00e7\u00e3o da presente Senten\u00e7a no relativo \u00e0s considera\u00e7\u00f5es conceituais sobre a progressividade e n\u00e3o dos", - "values": [ - "Voto Separado" - ] - }, - { - "text": "RESOLUCI\u00d3N DEL PRESIDENTE DE LA CORTE INTERAMERICANA DE DERECHOS HUMANOS DE DE JUNIO DE SOLICITUD DE MEDIDAS PROVISIONALES RESPECTO DE LA REP\u00daBLICA BOLIVARIANA DE VENEZUELA CASO LUISIANA R\u00cdOS Y OTROS VISTOS La Resoluci\u00f3n dictada por la Corte Interamericana de Derechos Humanos en adelante la Corte o el Tribunal el de noviembre de mediante la cual orden\u00f3 a la Rep\u00fablica Bolivariana de Venezuela en adelante el Estado o Venezuela a solicitud de la Comisi\u00f3n Interamericana de Derechos Humanos en ", - "values": [ - "Medidas Provisionales" - ] - }, - { - "text": "VOTO CONCURRENTE DEL JUEZ AA. CAN\u00c7ADO TRINDADE Voto a favor de la presente Sentencia que viene de adoptar la Corte Interamericana de Derechos Humanos en el caso Palamara Iribarne versus Chile con la cual estoy b\u00e1sicamente de acuerdo. Me veo en el deber de agregar en el presente Voto Concurrente algunas breves ponderaciones y precisiones como fundamento de mi posici\u00f3n personal sobre la materia tratada por la Corte en la presente Sentencia en particular un aspecto central en el cual hace a\u00f1os he", - "values": [ - "Voto Separado" - ] - }, - { - "text": "Resoluci\u00f3n del Presidente de la Corte Interamericana de Derechos Humanos de de diciembre de Caso B\u00e1maca Vel\u00e1squez Vs. Guatemala Supervisi\u00f3n de Cumplimiento de Sentencia VISTOS La Sentencia de fondo dictada por la Corte Interamericana de Derechos Humanos en adelante la Corte la Corte Interamericana o el Tribunal el de noviembre de La Sentencia de reparaciones dictada en el presente caso por la Corte Interamericana el de febrero de La Resoluci\u00f3n emitida por la Corte el de noviembre de ", - "values": [ - "Supervisi\u00f3n de cumplimiento de Sentencia" - ] - }, - { - "text": "Resoluci\u00f3n de la Corte Interamericana de Derechos Humanos de agosto de Caso Alb\u00e1n Cornejo y otros Vs. Ecuador Supervisi\u00f3n de Cumplimiento de Sentencia Visto La Sentencia de fondo reparaciones y costas dictada por la Corte Interamericana de Derechos Humanos en adelante la Corte la Corte Interamericana o el Tribunal el de noviembre de en la cual inter alia decidi\u00f3 La Resoluci\u00f3n de Supervisi\u00f3n de Cumplimiento de Sentencia emitida por la Corte el de julio de mediante la cual declar\u00f3 Que de", - "values": [ - "Supervisi\u00f3n de cumplimiento de Sentencia" - ] - }, - { - "text": "Resoluci\u00f3n de la Corte Interamericana de Derechos Humanos de de enero de Medidas Provisionales respecto de la Rep\u00fablica Bolivariana de Venezuela Asunto de la Emisora de Televisi\u00f3n Globovisi\u00f3n VISTOS La Resoluci\u00f3n dictada por el Presidente de la Corte Interamericana de Derechos Humanos en adelante la Corte o el Tribunal el de agosto de mediante la cual en consulta con todos los jueces de la Corte resolvi\u00f3 Requerir al Estado que adopte sin dilaci\u00f3n las medidas que fueran necesarias para y ", - "values": [ - "Medidas Provisionales" - ] - }, - { - "text": "VOTO DISIDENTE DE LA JUEZA MEDINA QUIROGA EN LA SENTENCIA DE LA CORTE INTERAMERICANA DE DERECHOS HUMANOS SOBRE EL CASO GARC\u00cdA ASTO Y RAM\u00cdREZ ROJAS RESPECTO DEL ART\u00cdCULO He disentido de la sentencia de mayor\u00eda de la Corte que no consider\u00f3 violado el art\u00edculo sino por algunas de las causales invocadas por la Comisi\u00f3n Interamericana de Derechos Humanos y por los representantes de las v\u00edctimas. Para los efectos de aclarar este voto recuerdo aqu\u00ed que las v\u00edctimas de este caso son dos Wilson Asto", - "values": [ - "Voto Separado" - ] - }, - { - "text": "RESOLUCI\u00d3N DE LA CORTE INTERAMERICANA DE DERECHOS HUMANOS DE DE JUNIO DE CASO WONG HO WING VS. PER\u00da SUPERVISI\u00d3N DE CUMPLIMIENTO DE SENTENCIA VISTO La Sentencia de excepci\u00f3n preliminar fondo reparaciones y costas en adelante la Sentencia dictada por la Corte Interamericana de Derechos Humanos en adelante la Corte la Corte Interamericana o este Tribunal el de junio de La Corte declar\u00f3 que no se hab\u00eda acreditado que para la fecha de emisi\u00f3n de la Sentencia existiera un riesgo real previsible ", - "values": [ - "Supervisi\u00f3n de cumplimiento de Sentencia" - ] - }, - { - "text": "RESOLUCI\u00d3N DE LA CORTE INTERAMERICANA DE DERECHOS HUMANOS DE DE FEBRERO DE MEDIDAS PROVISIONALES RESPECTO DE LA REP\u00daBLICA DE GUATEMALA ASUNTO DE LA FUNDACI\u00d3N DE ANTROPOLOG\u00cdA FORENSE DE GUATEMALA VISTO Las Resoluciones de la Corte Interamericana de Derechos Humanos en adelante la Corte Interamericana la Corte o el Tribunal de de julio de de noviembre de y de enero de mediante las cuales se orden\u00f3 la adopci\u00f3n de medidas provisionales y el mantenimiento de las existentes a favor de los ", - "values": [ - "Medidas Provisionales" - ] - }, - { - "text": "Corte Interamericana de Derechos Humanos Caso B\u00e1maca Vel\u00e1squez Vs. Guatemala Sentencia de de noviembre de Fondo En el caso B\u00e1maca Vel\u00e1squez la Corte Interamericana de Derechos Humanos en adelante la Corte la Corte Interamericana o el Tribunal integrada por los siguientes jueces Ant\u00f4nio A. Can\u00e7ado Trindade Presidente M\u00e1ximo Pacheco G\u00f3mez Vicepresidente Hern\u00e1n Salgado Pesantes Juez Alirio Abreu Burelli Juez Sergio Garc\u00eda Ram\u00edrez Juez y Carlos Vicente de Roux Rengifo Juez presentes adem\u00e1s Manuel", - "values": [ - "Fondo" - ] - }, - { - "text": "VOTO CONCURRENTE CONJUNTO DE LOS JUECES HUMBERTO ANTONIO SIERRA PORTO Y EDUARDO FERRER MACGREGOR POISOT CASO PUEBLOS KALI\u00d1A Y LOKONO VS. SURINAM SENTENCIA DE DE NOVIEMBRE DE Fondo Reparaciones y Costas Formulamos el presente voto concurrente en relaci\u00f3n con dos temas abordados en la Sentencia del caso de los Pueblos Kali\u00f1a y Lokono Vs. Surinam a saber i sobre las garant\u00edas a la propiedad colectiva frente a la concesi\u00f3n minera dentro de la Reserva Natural Wane Kreek particularmente respecto ", - "values": [ - "Voto Separado" - ] - }, - { - "text": "VOTO CONCURRENTE DEL JUEZ HUMBERTO ANTONIO SIERRA PORTO SENTENCIA DE LA CORTE INTERAMERICANA DE DERECHOS HUMANOS CASO MALDONADO ORDO\u00d1EZ VS. GUATEMALA SENTENCIA DE DE MAYO DE Excepci\u00f3n Preliminar Fondo Reparaciones y Costas A. Introducci\u00f3n La finalidad del presente voto concurrente es explicar lo relativo a la aplicabilidad extendida de las garant\u00edas contenidas en el art\u00edculo de la Convenci\u00f3n Americana sobre Derechos Humanos en adelante Convenci\u00f3n Americana en procesos que no sean de penal.", - "values": [ - "Voto Separado" - ] - }, - { - "text": "VOTO CONCURRENTE DEL JUEZ EDUARDO FERRER MACGREGOR POISOT CASO IV. VS. BOLIVIA SENTENCIA DE DE NOVIEMBRE DE Excepciones Preliminares Fondo Reparaciones y Costas Si bien concurro esencialmente con lo decidido en la Sentencia adoptada por unanimidad de votos estimo necesario dejar constancia como lo expres\u00e9 en la deliberaci\u00f3n respectiva que el caso claramente involucra el derecho a la salud por lo que pudo haberse analizado a la luz del art\u00edculo de la Convenci\u00f3n Americana sobre Derechos en ", - "values": [ - "Voto Separado" - ] - }, - { - "text": "VOTO INDIVIDUAL CONCURRENTE DEL JUEZ EDUARDO VIO GROSSI CORTE INTERAMERICANA DE DERECHOS HUMANOS CASO YARCE Y OTRAS Vs. COLOMBIA SENTENCIA DE DE NOVIEMBRE DE Excepci\u00f3n Preliminar Fondo Reparaciones y Costas. Se emite el presente voto individual concurrente a la Sentencia del ep\u00edgrafe a los efectos de dejar constancia de que se ha concurrido a votar favorablemente la decisi\u00f3n contenida en la misma en orden a desestimar la excepci\u00f3n preliminar interpuesta por el Estado en atenci\u00f3n a que tanto ", - "values": [ - "Voto Separado" - ] - }, - { - "text": "RESOLUCI\u00d3N DE LA CORTE INTERAMERICANA DE DERECHOS HUMANOS DE DE NOVIEMBRE DE CASO ESCU\u00c9 ZAPATA VS. COLOMBIA SUPERVISI\u00d3N DE CUMPLIMIENTO DE SENTENCIA VISTO La Sentencia de fondo reparaciones y costas en adelante la Sentencia dictada por la Corte Interamericana de Derechos Humanos en adelante la Corte la Corte Interamericana o el Tribunal el de julio de Tomando en cuenta el reconocimiento parcial de responsabilidad efectuado por la Rep\u00fablica de Colombia en adelante el Estado o Colombia la ", - "values": [ - "Supervisi\u00f3n de cumplimiento de Sentencia" - ] - }, - { - "text": "RESOLUCI\u00d3N DE LA CORTE INTERAMERICANA DE DERECHOS HUMANOS DE DE OCTUBRE DE CASO DE LAS COMUNIDADES AFRODESCENDIENTES DESPLAZADAS DE LA CUENCA DEL R\u00cdO CACARICA OPERACI\u00d3N GEN\u00c9SIS VS. COLOMBIA SUPERVISI\u00d3N DE CUMPLIMIENTO DE SENTENCIA VISTO La Sentencia de excepciones preliminares fondo reparaciones y costas en adelante la Sentencia dictada en el presente caso por la Corte Interamericana de Derechos Humanos en adelante la Corte Interamericana la Corte o el Tribunal el de noviembre de En dicho ", - "values": [ - "Supervisi\u00f3n de cumplimiento de Sentencia" - ] - }, - { - "text": "VOTO CONCURRENTE Y PARCIALMENTE DISIDENTE DEL JUEZ HUMBERTO ANTONIO SIERRA PORTO CORTE INTERAMERICANA DE DERECHOS HUMANOS CASO VALENCIA HINOJOSA Y OTRA VS. ECUADOR SENTENCIA DE DE NOVIEMBRE DE Excepciones Preliminares Fondo Reparaciones y Costas I. Objeto del presente voto El objeto del presente voto es expresar las razones de mi concurrencia y de mi disidencia parcial respecto de lo decidido por la mayor\u00eda de los Jueces de la Corte Interamericana de Derechos Humanos en adelante la Corte o ", - "values": [ - "Voto Separado" - ] - }, - { - "text": "VOTO CONCURRENTE DEL JUEZ EDUARDO VIO GROSSI CORTE INTERAMERICANA DE DERECHOS HUMANOS CASO HERRERA ESPINOZA Y OTROS VS. ECUADOR SENTENCIA DE DE SEPTIEMBRE DE Excepciones Preliminares Fondo Reparaciones y Costas Introducci\u00f3n. Concurro con mi voto a la Sentencia del ep\u00edgrafe por ende desestimando la excepci\u00f3n de falta de agotamiento previo de los recursos internos interpuesta en autos por el Estado pero no por la raz\u00f3n en ella invocada sino por la que se se\u00f1ala en este escrito. En la Sentencia ", - "values": [ - "Voto Separado" - ] - }, - { - "text": "VOTO INDIVIDUAL DISIDENTE DEL JUEZ EDUARDO VIO GROSSI RESOLUCI\u00d3N DE LA CORTE INTERAMERICANA DE DERECHOS HUMANOS CASO ARTAVIA MURILLO Y OTROS FECUNDACI\u00d3N IN VITRO VS. COSTA RICA SUPERVISI\u00d3N DE CUMPLIMIENTO DE LA SENTENCIA RESOLUCI\u00d3N DE DE FEBRERO DE INTRODUCCI\u00d3N Se emite el presente voto individual disidente respecto de la Resoluci\u00f3n de Supervisi\u00f3n de Cumplimiento en adelante la Resoluci\u00f3n dictada el de febrero de por la Corte Interamericana de Derechos Humanos en adelante la Corte o el en", - "values": [ - "Voto Separado" - ] - }, - { - "text": "VOTO RAZONADO DEL JUEZ ROBERTO F. CALDAS CORTE INTERAMERICANA DE DERECHOS HUMANOS CASO CHINCHILLA SANDOVAL VS. GUATEMALA SENTENCIA DE DE FEBRERO DE Excepci\u00f3n preliminar Fondo Reparaciones y Costas I. Introducci\u00f3n Inicialmente resalto mi adhesi\u00f3n a la Sentencia a las conclusiones a las que lleg\u00f3 esta Corte y a las reparaciones de ellas resultantes. Solo difiero en cuanto a la fundamentaci\u00f3n porque entiendo que tambi\u00e9n queda configurada ofensa al derecho condensado en el art\u00edculo de la en ", - "values": [ - "Voto Separado" - ] - }, - { - "text": "VOTO CONCURRENTE DEL JUEZ EDUARDO FERRER MACGREGOR POISOT CASO CHINCHILLA SANDOVAL VS. GUATEMALA SENTENCIA DE DE FEBRERO DE Excepciones Preliminares Fondo Reparaciones y Costas INTRODUCCI\u00d3N SOBRE EL DERECHO A LA SALUD DE LAS PERSONAS CON DISCAPACIDAD PRIVADAS DE LA LIBERTAD Emito el presente voto para fundamentar los motivos por los cuales considero que la decisi\u00f3n de la Corte Interamericana de Derechos Humanos en adelante Corte IDH o Tribunal Interamericano debi\u00f3 involucrar un an\u00e1lisis y ", - "values": [ - "Voto Separado" - ] - }, - { - "text": "RESOLUCI\u00d3N DE LA CORTE INTERAMERICANA DE DERECHOS HUMANOS DE DE NOVIEMBRE DE CASO FLEURY Y OTROS VS. HAIT\u00cd SUPERVISI\u00d3N DE CUMPLIMIENTO DE SENTENCIA VISTOS La Sentencia de fondo y reparaciones en adelante la Sentencia dictada por la Corte Interamericana de Derechos Humanos en adelante la Corte Interamericana la Corte o el Tribunal el de noviembre de En dicho caso la Corte declar\u00f3 responsable internacionalmente a la Rep\u00fablica de Hait\u00ed en adelante el Estado o Hait\u00ed entre otras por las en el", - "values": [ - "Supervisi\u00f3n de cumplimiento de Sentencia" - ] - }, - { - "text": "RESOLUCI\u00d3N DE LA CORTE INTERAMERICANA DE DERECHOS HUMANOS DE DE SEPTIEMBRE DE CASO GARC\u00cdA CRUZ Y S\u00c1NCHEZ SILVESTRE VS. ESTADOS UNIDOS MEXICANOS SUPERVISI\u00d3N DE CUMPLIMIENTO DE SENTENCIA VISTO La Sentencia de fondo reparaciones y costas en adelante la Sentencia emitida por la Corte Interamericana de Derechos Humanos en adelante la Corte Interamericana la Corte o el Tribunal el de noviembre de La Corte homolog\u00f3 el Acuerdo de soluci\u00f3n amistosa y reconocimiento de responsabilidad del Estado ", - "values": [ - "Supervisi\u00f3n de cumplimiento de Sentencia" - ] - }, - { - "text": "RESOLUCI\u00d3N DE LA CORTE INTERAMERICANA DE DERECHOS HUMANOS DE DE OCTUBRE DE CASO CINCO PENSIONISTAS VS. PER\u00da SUPERVISI\u00d3N DE CUMPLIMIENTO DE SENTENCIA VISTOS La Sentencia de fondo reparaciones y costas en adelante la Sentencia emitida en el presente caso por la Corte Interamericana de Derechos Humanos en adelante la Corte Interamericana la Corte o el Tribunal el de febrero de mediante la cual la Corte declar\u00f3 que la Rep\u00fablica del Per\u00fa en adelante el Per\u00fa o el Estado viol\u00f3 los derechos a la ", - "values": [ - "Supervisi\u00f3n de cumplimiento de Sentencia" - ] - }, - { - "text": "CORTE INTERAMERICANA DE DERECHOS HUMANOS CASO POLLO RIVERA Y OTROS VS. PER\u00da SENTENCIA DE DE OCTUBRE DE Fondo Reparaciones y Costas En el caso Pollo Rivera la Corte Interamericana de Derechos Humanos en adelante la Corte Interamericana la Corte o el Tribunal integrada por los siguientes Jueces Roberto F. Caldas Presidente Eduardo Ferrer MacGregor Poisot Vicepresidente Eduardo Vio Grossi juez Humberto Antonio Sierra Porto juez Elizabeth Odio Benito jueza Eugenio Ra\u00fal Zaffaroni juez y L. juez", - "values": [ - "Fondo", - "Reparaciones", - "Costas" - ] - }, - { - "text": "RESOLUCI\u00d3N DE LA CORTE INTERAMERICANA DE DERECHOS HUMANOS DE DE SEPTIEMBRE DE CASO CASTILLO PETRUZZI Y OTROS VS. PER\u00da SUPERVISI\u00d3N DE CUMPLIMIENTO DE SENTENCIA VISTO La Sentencia de fondo reparaciones y costas en adelante la Sentencia dictada por la Corte Interamericana de Derechos Humanos en adelante la Corte Interamericana la Corte o el Tribunal el de mayo de La Sentencia estableci\u00f3 que Jaime Francisco Sebasti\u00e1n Castillo Petruzzi Lautaro Enrique Mellado Saavedra Mar\u00eda Concepci\u00f3n S\u00e1ez y ", - "values": [ - "Supervisi\u00f3n de cumplimiento de Sentencia" - ] - }, - { - "text": "CORTE INTERAMERICANA DE DERECHOS HUMANOS CASO COMUNIDAD CAMPESINA DE SANTA B\u00c1RBARA VS. PER\u00da SENTENCIA DE DE NOVIEMBRE DE Interpretaci\u00f3n de la Sentencia de Excepciones Preliminares Fondo Reparaciones y Costas En el caso Comunidad Campesina de Santa B\u00e1rbara Vs. Per\u00fa la Corte Interamericana de Derechos Humanos en adelante la Corte Interamericana la Corte o el Tribunal integrada por los siguientes Jueces Roberto F. Caldas Presidente Eduardo Ferrer MacGregor Poisot Vicepresidente Manuel E. Ventura", - "values": [ - "Interpretaci\u00f3n" - ] - }, - { - "text": "CORTE INTERAMERICANA DE DERECHOS HUMANOS CASO QUISPIALAYA VILCAPOMA VS. PER\u00da SENTENCIA DE DE NOVIEMBRE DE Interpretaci\u00f3n de la Sentencia de Excepciones Preliminares Fondo Reparaciones y Costas En el caso Quispialaya Vilcapoma Vs Per\u00fa la Corte Interamericana de Derechos Humanos en adelante la Corte Interamericana la Corte o el Tribunal integrada por los siguientes jueces Roberto F. Caldas Presidente Eduardo Ferrer MacGregor Poisot Vicepresidente Manuel E. Ventura Robles Juez Alberto P\u00e9rez ", - "values": [ - "Interpretaci\u00f3n" - ] - }, - { - "text": "RESOLUCI\u00d3N DEL PRESIDENTE DE LA CORTE INTERAMERICANA DE DERECHOS HUMANOS DE NOVIEMBRE DE CASO LAGOS DEL CAMPO VS. PER\u00da VISTO El escrito de sometimiento del caso y el Informe de Fondo de la Comisi\u00f3n Interamericana de Derechos Humanos en adelante la Comisi\u00f3n Interamericana o la Comisi\u00f3n el escrito de solicitudes argumentos y pruebas en adelante el escrito de solicitudes y argumentos de los representantes de la presunta v\u00edctima en adelante los representantes y el escrito de contestaci\u00f3n al ", - "values": [ - "Otros" - ] - }, - { - "text": "VOTO INDIVIDUAL CONCURRENTE DEL JUEZ EDUARDO VIO GROSSI CORTE INTERAMERICANA DE DERECHOS HUMANOS CASO TRABAJADORES DE LA HACIENDA BRASIL VERDE VS. BRASIL SENTENCIA DE OCTUBRE DE Excepciones Preliminares Fondo Reparaciones y Costas Se emite el presente voto concurrente a la Sentencia del ep\u00edgrafe con el prop\u00f3sito de reiterar que la referencia que en el Punto Resolutivo No. de la misma se hace a la discriminaci\u00f3n estructural hist\u00f3rica no implica que se est\u00e9 declarando en general la del en ", - "values": [ - "Voto Separado" - ] - }, - { - "text": "VOTO PARCIALMENTE DISIDENTE DEL JUEZ HUMBERTO ANTONIO SIERRA PORTO CORTE INTERAMERICANA DE DERECHOS HUMANOS CASO TRABAJADORES DE LA HACIENDA BRASIL VERDE VS. BRASIL SENTENCIA DE OCTUBRE DE Excepciones Preliminares Fondo Reparaciones y Costas El motivo del presente voto es expresar los motivos de mi disidencia parcial respecto de lo decidido por la mayor\u00eda de los Jueces de la Corte Interamericana de Derechos Humanos en adelante la Corte o el Tribunal en la Sentencia de de octubre de sobre ", - "values": [ - "Voto Separado" - ] - }, - { - "text": "VOTO RAZONADO DEL JUEZ EDUARDO FERRER MACGREGOR POISOT CASO TRABAJADORES DE LA HACIENDA BRASIL VERDE VS. BRASIL SENTENCIA DE DE OCTUBRE DE Excepciones Preliminares Fondo Reparaciones y Costas La Jueza Elizabeth Odio Benito se adhiri\u00f3 al presente Voto del Juez Eduardo Ferrer MacGregor Poisot. INTRODUCCI\u00d3N SOBRE LA DISCRIMINACI\u00d3N ESTRUCTURAL HIST\u00d3RICA EN RAZ\u00d3N DE LA POSICI\u00d3N ECON\u00d3MICA POBREZA DE LOS TRABAJADORES SOMETIDOS A TRABAJO ESCLAVO Esta es la primera ocasi\u00f3n en la que la Corte de en", - "values": [ - "Voto Separado" - ] - }, - { - "text": "VOTO DISIDENTE DEL JUEZ EDUARDO VIO GROSSI RESOLUCI\u00d3N DE LA CORTE INTERAMERICANA DE DERECHOS HUMANOS DE DE JUNIO CASO TORRES MILLACURA Y OTROS SOLICITUD DE MEDIDAS PROVISIONALES RESPECTO DE LA REP\u00daBLICA DE ARGENTINA INTRODUCCI\u00d3N. Se emite el presente voto disidente respecto de la Resoluci\u00f3n indicada en el r\u00f3tulo en m\u00e9rito de que el suscrito estima que la Corte Interamericana de Derechos Humanos debi\u00f3 rechazar in limine por carecer de competencia la nueva solicitud de medidas provisionales en", - "values": [ - "Voto Separado" - ] - }, - { - "text": "VOTO DISIDENTE DEL JUEZ EDUARDO VIO GROSSI RESPECTO DE LA RESOLUCI\u00d3N DE LA CORTE INTERAMERICANA DE DERECHOS HUMANOS DE DE NOVIEMBRE DE SOBRE MEDIDAS PROVISIONALES ASUNTO MILLACURA LLAIP\u00c9N RESPECTO DE ARGENTINA. Qui\u00e9n suscribe emite el presente voto disidente a la resoluci\u00f3n indicada en el r\u00f3tulo en adelante la Resoluci\u00f3n en atenci\u00f3n a que habi\u00e9ndose ya dictado en autos el fallo definitivo e inapelable que ha puesto efectivo t\u00e9rmino al caso en el que mientras la Corte Interamericana de en ", - "values": [ - "Voto Separado" - ] - }, - { - "text": "Voto Disidente de la Jueza Margarette May Macaulay Considero que la Resoluci\u00f3n de la mayor\u00eda de los Jueces de la Corte rechazando la solicitud de que no se publique en la Sentencia del Tribunal la identidad de uno de los que fueron considerados como v\u00edctimas por la Corte en este caso es de cierto modo autoritaria y tan preocupante que me veo obligada a escribir este breve voto explicando mi posici\u00f3n. Creo que como una Corte internacional de derechos humanos nuestras decisiones deben ofrecer ", - "values": [ - "Voto Separado" - ] - }, - { - "text": "VOTO INDIVIDUAL DEL JUEZ EDUARDO VIO GROSSI RESOLUCI\u00d3N DE LA CORTE INTERAMERICANA DE DERECHOS HUMANOS DE DE FEBRERO DE MEDIDAS PROVISIONALES RESPECTO DE LA REP\u00daBLICA ARGENTINA ASUNTO MILLACURA LLAIP\u00c9N Y OTROS Se extiende el presente voto individual con el prop\u00f3sito de dejar debida constancia que para el suscrito las presentes medidas provisionales se decretan en consideraci\u00f3n a que se trata de una situaci\u00f3n distinta del Caso Torres Millacura y otros Vs. Argentina motivo por el que se ha a ", - "values": [ - "Voto Separado" - ] - }, - { - "text": "VOTO CONCURRENTE DEL JUEZ AA. CAN\u00c7ADO TRINDADE Al votar a favor de la adopci\u00f3n de las presentes Medidas Provisionales de Protecci\u00f3n mediante las cuales la Corte Interamericana de Derechos Humanos ordena que se extienda protecci\u00f3n a todas las personas privadas de libertad en las Penitenciar\u00edas de Mendoza en Argentina me veo en la obligaci\u00f3n de retomar la construcci\u00f3n conceptual en que he estado empe\u00f1ado en el seno de la Corte Interamericana de las obligaciones erga omnes de protecci\u00f3n bajo la ", - "values": [ - "Voto Separado" - ] - }, - { - "text": "VOTO CONCURRENTE DEL JUEZ SERGIO GARCIA RAMIREZ A LA RESOLUCION SOBRE MEDIDAS PROVISIONALES EN EL CASO DE LAS PENITENCIARIAS DE MENDOZA DE DE JUNIO DE Con creciente frecuencia y con caracter\u00edsticas invariablemente graves que llegan a ser catastr\u00f3ficas se presentan ante la Corte Interamericana de Derechos Humanos problemas relacionados con la vida carcelaria. Los reclusos pobres entre los pobres que dijo Francesco Carnelutti se hallan sujetos a los mayores riesgos y da\u00f1os sobre ellos se como", - "values": [ - "Voto Separado" - ] - }, - { - "text": "VOTO CONCURRENTE DEL JUEZ DIEGO GARC\u00cdASAY\u00c1N Este es un caso con importancia en s\u00ed mismo dados los graves hechos que dieron lugar a las medidas provisionales dispuestas por la Corte Interamericana de Derechos Humanos para proteger la vida e integridad f\u00edsica de las personas privadas de libertad en la Penitenciar\u00eda Provincial de Mendoza y en la unidad Gustavo Andr\u00e9 de Lavalle as\u00ed como de quienes se encuentren en el interior de \u00e9stas. En la primera Resoluci\u00f3n de medidas provisionales sobre esta ", - "values": [ - "Voto Separado" - ] - }, - { - "text": "VOTO RAZONADO DEL JUEZ SERGIO GARC\u00cdA RAM\u00cdREZ A LA RESOLUCI\u00d3N DE LA CORTE INTERAMERICANA DE DERECHOS HUMANOS DEL DE MARZO DE SOBRE MEDIDAS PROVISIONALES EN EL CASO DE LAS PENITENCIAR\u00cdAS DE MENDOZA De nueva cuenta se plantean ante la Corte Interamericana por lo pronto a trav\u00e9s de una solicitud reiterada y quiz\u00e1s esperanzada todav\u00eda los grav\u00edsimos problemas que se abaten sobre las prisiones de muchos pa\u00edses. En la especie se trata una vez m\u00e1s de los reclusorios de Mendoza pero antes de ahora y ", - "values": [ - "Voto Separado" - ] - }, - { - "text": "VOTO RAZONADO DEL JUEZ AA. CAN\u00c7ADO TRINDADE Al concurrir a la adopci\u00f3n en esta ciudad de Brasilia de la presente Resoluci\u00f3n de la Corte Interamericana de Derechos Humanos mediante la cual el Tribunal ordena nuevas Medidas Provisionales de Protecci\u00f3n en beneficio de todas las personas privadas de libertad en las Penitenciar\u00edas de Mendoza en Argentina me veo en la obligaci\u00f3n de retomar dos razonamientos personales en cuya construcci\u00f3n conceptual he estado empe\u00f1ado hace tiempo en el seno de esta ", - "values": [ - "Voto Separado" - ] - }, - { - "text": "RESOLUCI\u00d3N DE LA CORTE INTERAMERICANA DE DERECHOS HUMANOS DE DE FEBRERO DE CASO M\u00c9MOLI VS. ARGENTINA SUPERVISI\u00d3N DE CUMPLIMIENTO DE SENTENCIA VISTO La Sentencia de excepciones preliminares fondo reparaciones y costas en adelante la Sentencia dictada por la Corte Interamericana de Derechos Humanos en adelante la Corte Interamericana la Corte o el Tribunal el de agosto de La Corte declar\u00f3 la responsabilidad internacional de la Rep\u00fablica Argentina en adelante el Estado o Argentina por la a", - "values": [ - "Supervisi\u00f3n de cumplimiento de Sentencia" - ] - }, - { - "text": "CORTE INTERAMERICANA DE DERECHOS HUMANOS CASO ARG\u00dcELLES Y OTROS VS. ARGENTINA SENTENCIA DE DE JUNIO DE Interpretaci\u00f3n de la Sentencia de Excepci\u00f3n Preliminar Fondo Reparaciones y Costas En el caso Arg\u00fcelles y otros Vs. Argentina la Corte Interamericana de Derechos Humanos en adelante la Corte Interamericana la Corte o el Tribunal integrada por los siguientes jueces Humberto Antonio Sierra Porto Presidente Roberto F. Caldas Vicepresidente Manuel E. Ventura Robles Juez Eduardo Vio Grossi Juez ", - "values": [ - "Interpretaci\u00f3n" - ] - }, - { - "text": "RESOLUCI\u00d3N DEL PRESIDENTE DE LA CORTE INTERAMERICANA DE DERECHOS HUMANOS DE ABRIL DE CASO GRANDE VS. ARGENTINA VISTO El escrito de demanda presentado por la Comisi\u00f3n Interamericana de Derechos Humanos en adelante la Comisi\u00f3n Interamericana o la Comisi\u00f3n ante la Corte Interamericana de Derechos Humanos en adelante la Corte Interamericana la Corte o el Tribunal el de mayo de mediante el cual ofreci\u00f3 un dictamen pericial. El escrito de solicitudes argumentos y pruebas en adelante escrito de ", - "values": [ - "Otros" - ] - }, - { - "text": "RESOLUCI\u00d3N DE LA CORTE INTERAMERICANA DE DERECHOS HUMANOS DE DE FEBRERO DE SOLICITUD DE MEDIDAS PROVISIONALES RESPECTO DE LA REP\u00daBLICA DE ARGENTINA CASO BUENO ALVES VISTOS El escrito de de marzo de mediante el cual la Comisi\u00f3n Interamericana de Derechos Humanos en adelante la Comisi\u00f3n demand\u00f3 a la Rep\u00fablica de Argentina en adelante el Estado o Argentina ante la Corte Interamericana de Derechos Humanos en adelante la Corte o el Tribunal en relaci\u00f3n con el caso Bueno Alves. La comunicaci\u00f3n ", - "values": [ - "Medidas Provisionales" - ] - }, - { - "text": "RESOLUCI\u00d3N DEL PRESIDENTE DE LA CORTE INTERAMERICANA DE DERECHOS HUMANOS DE DE MARZO DE CASO IBSEN C\u00c1RDENAS E IBSEN PE\u00d1A Vs. BOLIVIA VISTOS El escrito de demanda presentado por la Comisi\u00f3n Interamericana de Derechos Humanos en adelante la Comisi\u00f3n Interamericana o la Comisi\u00f3n ante la Corte Interamericana de Derechos Humanos en adelante la Corte Interamericana la Corte o el Tribunal el de mayo de mediante el cual ofreci\u00f3 cinco declaraciones testimoniales y dos dict\u00e1menes periciales. De los ", - "values": [ - "Otros" - ] - }, - { - "text": "RESOLUCI\u00d3N DE LA PRESIDENTA DE LA CORTE INTERAMERICANA DE DERECHOS HUMANOS DE DE JUNIO DE CASO TICONA ESTRADA VS. BOLIVIA Y OTROS VISTOS El escrito de demanda presentado por la Comisi\u00f3n Interamericana de Derechos Humanos en adelante la Comisi\u00f3n Interamericana o la Comisi\u00f3n ante la Corte Interamericana de Derechos Humanos en adelante la Corte o el Tribunal el de agosto de en el cual ofreci\u00f3 cinco testigos y cuatro peritos. El escrito de solicitudes argumentos y pruebas en adelante escrito ", - "values": [ - "Otros" - ] - }, - { - "text": "VOTO RAZONADO CONJUNTO DE LOS JUECES DIEGO GARC\u00cdASAY\u00c1N Y SERGIO GARC\u00cdA RAM\u00cdREZ EN EL CASO TICONA ESTRADA Y OTROS BOLIVIA Los Jueces que suscribimos este voto deseamos expresar ante todo nuestra entera coincidencia con los dem\u00e1s integrantes de la Corte Interamericana en cuanto a las declaraciones fundamentales contenidas en la sentencia sobre el caso Ticona Estrada Bolivia del de noviembre de el Estado viol\u00f3 los preceptos de la Convenci\u00f3n Americana sobre Derechos Humanos a los que se refiere ", - "values": [ - "Voto Separado" - ] - }, - { - "text": "VOTO DISIDENTE DEL JUEZ EDUARDO VIO GROSSI RESOLUCI\u00d3N DE LA CORTE INTERAMERICANA DE DERECHOS HUMANOS DE DE JUNIO CASO ROSENDO CANT\u00da Y OTRA MEDIDAS PROVISIONALES RESPECTO DE M\u00c9XICO. INTRODUCCI\u00d3N. Se emite el presente voto disidente respecto de la Resoluci\u00f3n indicada en el r\u00f3tulo en m\u00e9rito de que el suscrito estima que la Corte Interamericana de Derechos Humanos carece de la facultad de decretar como lo hace en la aludida Resoluci\u00f3n el mantenimiento de las medidas provisionales en el marco del", - "values": [ - "Voto Separado" - ] - }, - { - "text": "VOTO DISIDENTE DEL JUEZ EDUARDO VIO GROSSI MEDIDAS PROVISIONALES RESPECTO DE LOS ESTADOS UNIDOS MEXICANOS CASO ROSENDO CANT\u00da Y OTRA Se formula el presente voto disidente a la resoluci\u00f3n indicada en atenci\u00f3n a que por haberse dictado sentencia de fondo en autos ha operado la preclusi\u00f3n respecto de la facultad de la Corte Interamericana de Derechos Humanos en adelante la Corte de decretar nuevas medidas provisionales en la causa habiendo cesado por otra parte las ya ordenadas siendo empero su y ", - "values": [ - "Voto Separado" - ] - }, - { - "text": "VOTO CONCURRENTE DE LOS JUECES DIEGO GARC\u00cdASAY\u00c1N LEONARDO A. FRANCO MANUEL VENTURA ROBLES MARGARETTE MAY MACAULAY Y RHADYS ABREU BLONDET MEDIDAS PROVISIONALES RESPECTO DE LOS ESTADOS UNIDOS MEXICANOS CASO ROSENDO CANT\u00da Y OTRA La facultad de dictar medidas provisionales para evitar da\u00f1os irreparables a las personas en casos de extrema gravedad y urgencia es una de las competencias fundamentales de la Corte Interamericana de Derechos Humanos en adelante tambi\u00e9n la Corte Interamericana la Corte o", - "values": [ - "Voto Separado" - ] - }, - { - "text": "VOTO RAZONADO CONJUNTO DE LOS JUECES A. A. CAN\u00c7ADO TRINDADE Y M. E. VENTURA ROBLES Los suscritos Jueces hubi\u00e9ramos preferido que la Corte Interamericana de Derechos Humanos hubiera adoptado la presente Resoluci\u00f3n sobre medidas provisionales de protecci\u00f3n despu\u00e9s de haber convocado a las partes a una audiencia p\u00fablica en la sede del Tribunal. Entendemos que la solicitud de la Comisi\u00f3n Interamericana de Derechos Humanos plantea varias cuestiones en relaci\u00f3n con las cuales nos gustar\u00eda haber ", - "values": [ - "Voto Separado" - ] - }, - { - "text": "RESOLUCI\u00d3N DEL PRESIDENTE DE LA CORTE INTERAMERICANA DE DERECHOS HUMANOS DE DE ENERO DE CASO ALICIA BARBANI DUARTE MAR\u00cdA DEL HUERTO BRECCIA Y OTROS GRUPO DE AHORRISTAS DEL BANCO DE MONTEVIDEO VS. URUGUAY VISTOS El escrito de demanda presentado por la Comisi\u00f3n Interamericana de Derechos Humanos en adelante la Comisi\u00f3n Interamericana o la Comisi\u00f3n ante la Corte Interamericana de Derechos Humanos en adelante la Corte Interamericana la Corte o el Tribunal el de marzo de mediante el cual un ", - "values": [ - "Otros" - ] - }, - { - "text": "VOTO CONCURRENTE DEL JUEZ SERGIO GARC\u00cdA RAM\u00cdREZ EN RELACI\u00d3N CON LA SENTENCIA DE REPARACIONES DICTADA POR LA CORTE INTERAMERICANA DE DERECHOS HUMANOS EN EL CASO CASTILLO P\u00c1EZ En la sentencia de fondo dictada en el caso Castillo P\u00e1ez que se invoca en esta resoluci\u00f3n de reparaciones la Corte Interamericana de Derechos Humanos estableci\u00f3 que el Estado peruano est\u00e1 obligado a investigar los hechos que produjeron las violaciones y que el derecho de los familiares a conocer el destino de la v\u00edctima ", - "values": [ - "Voto Separado" - ] - }, - { - "text": "VOTO CONCURRENTE DEL JUEZ EDUARDO VIO GROSSI RESOLUCI\u00d3N DE LA CORTE INTERAMERICANA DE DERECHOS HUMANOS DE DE AGOSTO DE B\u00c1MACA VEL\u00c1SQUEZ VS. GUATEMALA MEDIDAS PROVISIONALES El suscrito concurre con su voto a la aprobaci\u00f3n de la Resoluci\u00f3n del ep\u00edgrafe no obstante de que en su Punto Resolutivo N\u00ba y trat\u00e1ndose de un caso respecto del que en el a\u00f1o se dict\u00f3 Sentencia se mantienen las medidas provisionales a favor del se\u00f1or Santiago Cabrera L\u00f3pez y sus familiares y del se\u00f1or Aron \u00c1lvarez y sus ", - "values": [ - "Voto Separado" - ] - }, - { - "text": "VOTO RAZONADO DEL JUEZ AA. CAN\u00c7ADO TRINDADE He concurrido con mi voto a la adopci\u00f3n de la presente Resoluci\u00f3n de la Corte Interamericana de Derechos Humanos sobre Medidas Provisionales de Protecci\u00f3n en el caso de los Integrantes del Equipo de Estudios Comunitarios y Acci\u00f3n Psicosocial ECAP caso de la Masacre de Plan de S\u00e1nchez versus Guatemala. Me veo adem\u00e1s en la obligaci\u00f3n de dejar constancia en este breve Voto Razonado mi \u00faltimo Voto en esta Corte en materia de Medidas Provisionales de ", - "values": [ - "Voto Separado" - ] - }, - { - "text": "VOTO CONCURRENTE DEL JUEZ EDUARDO VIO GROSSI A LA RESOLUCI\u00d3N DE LA CORTE INTERAMERICANA DE DERECHOS HUMANOS DE DE NOVIEMBRE DE CASO B\u00c1CAMA VEL\u00c1SQUEZ VS. GUATEMALA SUPERVISI\u00d3N DE CUMPLIMIENTO DE SENTENCIA Concurro con mi voto a aprobar la Resoluci\u00f3n mencionada en el t\u00edtulo en adelante la Resoluci\u00f3n estimando conveniente empero formular algunos comentarios atinentes a los aspectos involucrados en la misma que se indican seguidamente. Lo expuesto en el ac\u00e1pite A de la Resoluci\u00f3n no son a la ", - "values": [ - "Voto Separado" - ] - }, - { - "text": "RESOLUCI\u00d3N DE LA CORTE INTERAMERICANA DE DERECHOS HUMANOS DE DE AGOSTO DE CASO CHITAY NECH Y OTROS VS. GUATEMALA SUPERVISI\u00d3N DE CUMPLIMIENTO DE SENTENCIA VISTO La Sentencia de excepciones preliminares fondo reparaciones y costas en adelante la Sentencia dictada por la Corte Interamericana de Derechos Humanos en adelante la Corte Interamericana la Corte o el Tribunal el de mayo de Los hechos se refieren a la desaparici\u00f3n forzada ocurrida desde el de abril de del se\u00f1or Florencio Chitay ", - "values": [ - "Supervisi\u00f3n de cumplimiento de Sentencia" - ] - }, - { - "text": "VOTO RAZONADO CONJUNTO DE LOS JUECES A. A. CAN\u00c7ADO TRINDADE Y M. E. VENTURA ROBLES Los suscritos Jueces hemos concurrido con nuestro Votos a la adopci\u00f3n por parte de la Corte Interamericana de Derechos Humanos de sus resoluciones del d\u00eda de hoy en los casos Garc\u00eda Uribe y Otros respecto de M\u00e9xico y Centro Penitenciario Regi\u00f3n Capital Yare I y II C\u00e1rcel de Yare atinente a Venezuela. Sin embargo nos vemos en el deber de expresar nuestra preocupaci\u00f3n por la gravedad de los hechos denunciados que ", - "values": [ - "Voto Separado" - ] - }, - { - "text": "RESOLUCI\u00d3N DE LA CORTE INTERAMERICANA DE DERECHOS HUMANOS DE DE FEBRERO DE CASO ATALA RIFFO Y NI\u00d1AS VS. CHILE SUPERVISI\u00d3N DE CUMPLIMIENTO DE SENTENCIA VISTOS La Sentencia de fondo reparaciones y costas en adelante la Sentencia o el Fallo dictada por la Corte Interamericana de Derechos Humanos en adelante la Corte la Corte Interamericana o el Tribunal el de febrero de En dicho Fallo se estableci\u00f3 la responsabilidad internacional de Chile en adelante el Estado o Chile por la violaci\u00f3n de los", - "values": [ - "Supervisi\u00f3n de cumplimiento de Sentencia" - ] - }, - { - "text": "CORTE INTERAMERICANA DE DERECHOS HUMANOS OMAR HUMBERTO MALDONADO VARGAS Y OTROS VS. CHILE SENTENCIA DE DE SEPTIEMBRE DE Fondo Reparaciones y Costas En el Caso Omar Humberto Maldonado Vargas y otros la Corte Interamericana de Derechos Humanos en adelante la Corte Interamericana la Corte o el Tribunal integrada por los siguientes Jueces Humberto Antonio Sierra Porto Presidente Manuel E. Ventura Robles Juez Diego Garc\u00edaSay\u00e1n Juez Alberto P\u00e9rez P\u00e9rez Juez y Eduardo Ferrer MacGregor Poisot Juez ", - "values": [ - "Fondo", - "Reparaciones", - "Costas" - ] - }, - { - "text": "CORTE INTERAMERICANA DE DERECHOS HUMANOS CASO ATALA RIFFO Y NI\u00d1AS VS. CHILE SENTENCIA DE DE NOVIEMBRE DE Solicitud de Interpretaci\u00f3n de la Sentencia de Fondo Reparaciones y Costas En el caso Atala Riffo y ni\u00f1as la Corte Interamericana de Derechos Humanos en adelante la Corte Interamericana la Corte o el Tribunal integrada por los siguientes jueces Diego Garc\u00edaSay\u00e1n Presidente Manuel E. Ventura Robles Vicepresidente Leonardo A. Franco Juez Margarette May Macaulay Jueza Rhadys Abreu Blondet y", - "values": [ - "Interpretaci\u00f3n" - ] - }, - { - "text": "RESOLUCI\u00d3N DE LA CORTE INTERAMERICANA DE DERECHOS HUMANOS DE DE NOVIEMBRE DE CASO ATALA RIFFO E HIJAS VS. CHILE PARTICIPACI\u00d3N DE LAS NI\u00d1AS VISTO El escrito de de septiembre de y sus anexos mediante los cuales la Comisi\u00f3n Interamericana de Derechos Humanos en adelante la Comisi\u00f3n Interamericana o la Comisi\u00f3n present\u00f3 a la Corte Interamericana de Derechos Humanos en adelante la Corte Interamericana la Corte o el Tribunal una demanda en contra de la Rep\u00fablica de Chile en adelante Chile o el ", - "values": [ - "Otros" - ] - }, - { - "text": "CORTE INTERAMERICANA DE DERECHOS HUMANOS CASO POLLO RIVERA Y OTROS VS. PER\u00da SENTENCIA DE DE MAYO DE Solicitud de interpretaci\u00f3n de la Sentencia de Fondo Reparaciones y Costas En el caso Pollo Rivera y otros Vs. Per\u00fa la Corte Interamericana de Derechos Humanos en adelante la Corte Interamericana la Corte o el Tribunal integrada por los siguientes jueces Roberto F. Caldas Presidente Eduardo Ferrer MacGregor Poisot Vicepresidente Eduardo Vio Grossi juez Humberto Antonio Sierra Porto juez Odio ", - "values": [ - "Interpretaci\u00f3n" - ] - }, - { - "text": "RESOLUCI\u00d3N DE LA CORTE INTERAMERICANA DE DERECHOS HUMANOS DE DE FEBRERO DE CASO DEL PENAL MIGUEL CASTRO CASTRO VS. PER\u00da SUPERVISI\u00d3N DE CUMPLIMIENTO DE SENTENCIA VISTO La Sentencia de fondo reparaciones y costas en adelante la Sentencia emitida en el presente caso por la Corte Interamericana de Derechos Humanos en adelante la Corte Interamericana la Corte o el Tribunal el de noviembre de Tomando en cuenta el reconocimiento parcial de responsabilidad efectuado por la Rep\u00fablica del Per\u00fa el ", - "values": [ - "Supervisi\u00f3n de cumplimiento de Sentencia" - ] - }, - { - "text": "CORTE INTERAMERICANA DE DERECHOS HUMANOS CASO ESPINOZA GONZ\u00c1LES VS. PER\u00da SENTENCIA DE DE JUNIO DE Interpretaci\u00f3n de la Sentencia de Excepciones Preliminares Fondo Reparaciones y Costas En el caso Espinoza Gonz\u00e1les Vs. Per\u00fa la Corte Interamericana de Derechos Humanos en adelante la Corte Interamericana la Corte o el Tribunal integrada por los siguientes Jueces Humberto Antonio Sierra Porto Presidente Roberto F. Caldas Vicepresidente Manuel E. Ventura Robles Juez Alberto P\u00e9rez P\u00e9rez Juez Vio ", - "values": [ - "Interpretaci\u00f3n" - ] - }, - { - "text": "CORTE INTERAMERICANA DE DERECHOS HUMANOS CASO J. VS. PER\u00da SENTENCIA DE DE NOVIEMBRE DE Interpretaci\u00f3n de la Sentencia de Excepci\u00f3n Preliminar Fondo Reparaciones y Costas En el caso J. vs. Per\u00fa la Corte Interamericana de Derechos Humanos en adelante la Corte Interamericana la Corte o este Tribunal integrada por los siguientes jueces Humberto Antonio Sierra Porto Presidente Roberto F. Caldas Vicepresidente Manuel E. Ventura Robles Juez Eduardo Vio Grossi Juez Eduardo Ferrer MacGregor Poisot ", - "values": [ - "Interpretaci\u00f3n" - ] - }, - { - "text": "CORTE INTERAMERICANA DE DERECHOS HUMANOS CASO ABRILL ALOSILLA Y OTROS VS. PER\u00da SENTENCIA DE DE NOVIEMBRE DE Interpretaci\u00f3n de la Sentencia de Fondo Reparaciones y Costas En el caso Abrill Alosilla y otros la Corte Interamericana de Derechos Humanos en adelante la Corte Interamericana la Corte o el Tribunal integrada por los siguientes Jueces Leonardo A. Franco Presidente en ejercicio Manuel E. Ventura Robles Juez Margarette May Macaulay Jueza Rhadys Abreu Blondet Jueza Alberto P\u00e9rez P\u00e9rez y ", - "values": [ - "Interpretaci\u00f3n" - ] - }, - { - "text": "CORTE INTERAMERICANA DE DERECHOS HUMANOS CASO ACEVEDO BUEND\u00cdA Y OTROS CESANTES Y JUBILADOS DE LA CONTRALOR\u00cdA VS. PER\u00da SENTENCIA DE DE NOVIEMBRE DE INTERPRETACI\u00d3N DE LA SENTENCIA DE EXCEPCI\u00d3N PRELIMINAR FONDO REPARACIONES Y COSTAS En el caso Acevedo Buend\u00eda y otros Cesantes y Jubilados de la Contralor\u00eda la Corte Interamericana de Derechos Humanos en adelante la Corte Interamericana la Corte o el Tribunal integrada por los siguientes jueces Cecilia Medina Quiroga Presidenta Sergio Garc\u00eda Juez", - "values": [ - "Interpretaci\u00f3n" - ] - }, - { - "text": "VOTO RAZONADO DEL JUEZ AA. CAN\u00c7ADO TRINDADE He concurrido con mi voto a la adopci\u00f3n de la presente Sentencia de Interpretaci\u00f3n que viene de adoptar la Corte Interamericana de Derechos Humanos en el caso de la Prisi\u00f3n de Castro Castro versus Per\u00fa en la cual declara admisibles las demandas de Interpretaci\u00f3n sometidas a su consideraci\u00f3n tanto por el Estado recurrente como por los representantes legales otros que la interveniente com\u00fan de un grupo de v\u00edctimas y en la cual busca aclarar los puntos ", - "values": [ - "Voto Separado" - ] - }, - { - "text": "VOTO RAZONADO DEL JUEZ SERGIO GARC\u00cdA RAM\u00cdREZ A LA SENTENCIA DE LA CORTE INTERAMERICANA DE DERECHOS HUMANOS DEL DE AGOSTO DE SOBRE INTERPRETACI\u00d3N DE LA SENTENCIA DE FONDO Y REPARACIONES EN EL CASO DEL PENAL MIGUEL CASTRO CASTRO PER\u00da Formulo algunas consideraciones personales en torno a la sentencia de interpretaci\u00f3n emitida por la Corte Interamericana con respecto al caso del Penal Castro Castro. Dicha sentencia fue adoptada por unanimidad de votos de los integrantes de este tribunal. En ella", - "values": [ - "Voto Separado" - ] - }, - { - "text": "VOTO RAZONADO JUEZ MANUEL E. VENTURA ROBLES I INTRODUCCI\u00d3N He concurrido con mi voto a la adopci\u00f3n de esta sentencia de interpretaci\u00f3n de la Sentencia sobre fondo reparaciones y costas en el caso del Penal Castro Castro vs. Per\u00fa en adelante el Estado por dos razones fundamentales primero porque la Corte Interamericana de Derechos Humanos en adelante la Corte o la Corte Interamericana admiti\u00f3 la solicitud de interpretaci\u00f3n formulada por el Estado y segundo porque me pareci\u00f3 conveniente en las ", - "values": [ - "Voto Separado" - ] - }, - { - "text": "Corte Interamericana de Derechos Humanos Caso Cantoral Huaman\u00ed y Garc\u00eda Santa Cruz vs. Per\u00fa Interpretaci\u00f3n de la Sentencia de Excepci\u00f3n Preliminar Fondo Reparaciones y Costas Sentencia de de enero de En el Caso Cantoral Huaman\u00ed y Garc\u00eda Santa Cruz la Corte Interamericana de Derechos Humanos en adelante la Corte Interamericana la Corte o el Tribunal integrada por los siguientes jueces Sergio Garc\u00eda Ram\u00edrez Presidente Cecilia Medina Quiroga Vicepresidenta Manuel E. Ventura Robles Juez Leonardo ", - "values": [ - "Interpretaci\u00f3n" - ] - }, - { - "text": "CORTE INTERAMERICANA DE DERECHOS HUMANOS CASO TRABAJADORES CESADOS DEL CONGRESO AGUADO ALFARO Y OTROS VS. PER\u00da SENTENCIA DE DE NOVIEMBRE DE SOLICITUD DE INTERPRETACI\u00d3N DE LA SENTENCIA DE EXCEPCIONES PRELIMINARES FONDO REPARACIONES Y COSTAS En el caso Trabajadores Cesados del Congreso Aguado Alfaro y otros la Corte Interamericana de Derechos Humanos en adelante la Corte Interamericana la Corte o el Tribunal integrada por los siguientes jueces Sergio Garc\u00eda Ram\u00edrez Presidente Ant\u00f4nio Augusto ", - "values": [ - "Interpretaci\u00f3n" - ] - }, - { - "text": "VOTO DISIDENTE DEL JUEZ AA. CAN\u00c7ADO TRINDADE Lamento no poder compartir la decisi\u00f3n tomada por la mayor\u00eda de la Corte Interamericana de Derechos Humanos en la presente Sentencia de Interpretaci\u00f3n en el caso de los Trabajadores Cesados del Congreso versus Per\u00fa. La Corte ha declarado inadmisible en su totalidad la demanda de interpretaci\u00f3n sometida por los peticionarios en el cas desp\u00e8ce por haber entendido a mi juicio equivocadamente que dicha demanda no presenta cuesti\u00f3n alguna acerca del y ", - "values": [ - "Voto Separado" - ] - }, - { - "text": "CORTE INTERAMERICANA DE DERECHOS HUMANOS CASO LA CANTUTA VS. PER\u00da SENTENCIA DE DE NOVIEMBRE DE INTERPRETACI\u00d3N DE LA SENTENCIA DE FONDO REPARACIONES Y COSTAS En el caso La Cantuta vs. Per\u00fa la Corte Interamericana de Derechos Humanos en adelante la Corte Interamericana la Corte o el Tribunal integrada por los siguientes jueces Sergio Garc\u00eda Ram\u00edrez Presidente Ant\u00f4nio Augusto Can\u00e7ado Trindade Juez Cecilia Medina Quiroga Jueza Manuel E. Ventura Robles Juez Fernando Vidal Ram\u00edrez Juez ad hoc ", - "values": [ - "Interpretaci\u00f3n" - ] - }, - { - "text": "VOTO RAZONADO DEL JUEZ AA. CAN\u00c7ADO TRINDADE Soy un Juez sobreviviente de la Corte Interamericana de Derechos Humanos. El emit\u00ed mi \u00faltimo Voto en este Tribunal en la Sentencia sobre fondo y reparaciones en el presente caso La Cantuta atinente al Estado peruano. Trascurrido m\u00e1s de un a\u00f1o constato que en el mundo del Derecho dif\u00edcilmente hay lo \u00faltimo. La presente solicitud de Interpretaci\u00f3n de Sentencia me lleva a dejar constancia de nuevas reflexiones sobre la cuesti\u00f3n planteada en el ante la", - "values": [ - "Voto Separado" - ] - }, - { - "text": "RESOLUCI\u00d3N DEL PRESIDENTE DE LA CORTE INTERAMERICANA DE DERECHOS HUMANOS DE DE MAYO DE SOLICITUD DE MEDIDAS PROVISIONALES RESPECTO DEL PER\u00da CASO JU\u00c1REZ CRUZZAT Y OTROS VISTOS Los dos escritos de de mayo de y sus anexos mediante los cuales el se\u00f1or Douglass Cassel quien es uno de los representantes de las presuntas v\u00edctimas y sus familiares en el caso Ju\u00e1rez Cruzatt y otros pero no es el interviniente com\u00fan de los representantes present\u00f3 una solicitud de medidas provisionales a la Corte. En", - "values": [ - "Medidas Provisionales" - ] - }, - { - "text": "RESOLUCI\u00d3N DE LA CORTE INTERAMERICANA DE DERECHOS HUMANOS DE DE NOVIEMBRE DE CASO LOAYZA TAMAYO CUMPLIMIENTO DE SENTENCIA VISTOS La sentencia de fondo dictada en el caso Loayza Tamayo vs. el Per\u00fa por la Corte Interamericana de Derechos Humanos en adelante la Corte la Corte Interamericana o el Tribunal el de septiembre de en la que dispuso en los puntos resolutivos quinto y sexto que por seis votos contra uno Que ordena que el Estado del Per\u00fa ponga en libertad a Mar\u00eda Elena Loayza Tamayo", - "values": [ - "Supervisi\u00f3n de cumplimiento de Sentencia" - ] - }, - { - "text": "Corte Interamericana de Derechos Humanos Caso Cesti Hurtado Vs. Per\u00fa Sentencia de de noviembre de Interpretaci\u00f3n de la Sentencia de Reparaciones y Costas En el caso Cesti Hurtado la Corte Interamericana de Derechos Humanos en adelante la Corte la Corte Interamericana o el Tribunal integrada por los siguientes jueces Ant\u00f4nio A. Can\u00e7ado Trindade Presidente Hern\u00e1n Salgado Pesantes Juez Alirio Abreu Burelli Juez Sergio Garc\u00eda Ram\u00edrez Juez y Carlos Vicente de Roux Rengifo Juez presentes adem\u00e1s E.", - "values": [ - "Interpretaci\u00f3n" - ] - }, - { - "text": "Corte Interamericana de Derechos Humanos Caso Ivcher Bronstein Vs. Per\u00fa Sentencia de de septiembre de Interpretaci\u00f3n de la Sentencia de Fondo En el caso Ivcher Bronstein la Corte Interamericana de Derechos Humanos en adelante la Corte o la Corte Interamericana integrada por los siguientes jueces Ant\u00f4nio A. Can\u00e7ado Trindade Presidente Hern\u00e1n Salgado Pesantes Juez Oliver Jackman Juez Alirio Abreu Burelli Juez Sergio Garc\u00eda Ram\u00edrez Juez y Carlos Vicente de Roux Rengifo Juez presentes adem\u00e1s E. ", - "values": [ - "Interpretaci\u00f3n" - ] - }, - { - "text": "Corte Interamericana de Derechos Humanos Caso Barrios Altos VsPer\u00fa Sentencia de de septiembre de Interpretaci\u00f3n de la Sentencia de Fondo En el caso Barrios Altos la Corte Interamericana de Derechos Humanos en adelante la Corte o la Corte Interamericana integrada por los siguientes jueces Ant\u00f4nio A. Can\u00e7ado Trindade Presidente Hern\u00e1n Salgado Pesantes Juez Alirio Abreu Burelli Juez Sergio Garc\u00eda Ram\u00edrez Juez y Carlos Vicente de Roux Rengifo Juez presentes adem\u00e1s Manuel E. Ventura Robles y ", - "values": [ - "Interpretaci\u00f3n" - ] - }, - { - "text": "Corte Interamericana de Derechos Humanos Caso Cesti Hurtado Vs. Per\u00fa Sentencia de de enero de Interpretaci\u00f3n de la Sentencia de Fondo En el caso Cesti Hurtado la Corte Interamericana de Derechos Humanos en adelante la Corte o la Corte Interamericana integrada por los siguientes jueces Ant\u00f4nio A. Can\u00e7ado Trindade Presidente M\u00e1ximo Pacheco G\u00f3mez Vicepresidente Oliver Jackman Juez Alirio Abreu Burelli Juez Sergio Garc\u00eda Ram\u00edrez Juez y Carlos Vicente de Roux Rengifo Juez presentes adem\u00e1s Manuel E.", - "values": [ - "Interpretaci\u00f3n" - ] - }, - { - "text": "Corte Interamericana de Derechos Humanos Caso Loayza Tamayo Vs. Per\u00fa Resoluci\u00f3n del de noviembre de Cumplimiento de Sentencia VISTOS Las sentencias sobre excepciones preliminares y fondo dictadas por la Corte Interamericana de Derechos Humanos en adelante la Corte o la Corte Interamericana o el Tribunal el de enero de y el de septiembre de respectivamente. En ambas sentencias la Corte se pronunci\u00f3 sobre la improcedencia de la excepci\u00f3n interpuesta por el Estado del Per\u00fa en adelante el o", - "values": [ - "Supervisi\u00f3n de cumplimiento de Sentencia" - ] - }, - { - "text": "Corte Interamericana de Derechos Humanos Caso Loayza Tamayo Vs. Per\u00fa Resoluci\u00f3n de la Corte de marzo de Interpretaci\u00f3n de la Sentencia de Fondo En el caso Loayza Tamayo la Corte Interamericana de Derechos Humanos en adelante la Corte o la Corte Interamericana integrada por los siguientes jueces Hern\u00e1n Salgado Pesantes Presidente Ant\u00f4nio A. Can\u00e7ado Trindade Vicepresidente H\u00e9ctor FixZamudio Juez Alejandro Montiel Arg\u00fcello Juez M\u00e1ximo Pacheco G\u00f3mez Juez y Alirio Abreu Burelli Juez presentes E.", - "values": [ - "Interpretaci\u00f3n" - ] - }, - { - "text": "Corte Interamericana de Derechos Humanos Caso Castillo P\u00e1ez VsPer\u00fa Sentencia de de enero de Excepciones Preliminares En el caso Castillo P\u00e1ez la Corte Interamericana de Derechos Humanos integrada por los siguientes jueces H\u00e9ctor FixZamudio Presidente Hern\u00e1n Salgado Pesantes Vicepresidente Alejandro Montiel Arg\u00fcello Juez M\u00e1ximo Pacheco G\u00f3mez Juez Alirio Abreu Burelli Juez Ant\u00f4nio A. Can\u00e7ado Trindade Juez presentes adem\u00e1s Manuel E. Ventura Robles Secretario y Ana Mar\u00eda Reina Secretaria adjunta", - "values": [ - "Excepciones Preliminares" - ] - }, - { - "text": "VOTO RAZONADO DEL JUEZ AA. CAN\u00c7ADO TRINDADE Suscribo la decisi\u00f3n de la Corte de desestimar las excepciones preliminares interpuestas por el Gobierno demandado y de proseguir con el conocimiento del presente caso en cuanto al fondo con la cual estoy de acuerdo. Si\u00e9ntome obligado a adjuntar este Voto Razonado para dejar constancia de los fundamentos de mi razonamiento y posici\u00f3n sobre el punto central de las dos excepciones preliminares presentadas por el Gobierno del Per\u00fa a saber la invocaci\u00f3n ", - "values": [ - "Voto Separado" - ] - }, - { - "text": "VOTO RAZONADO DEL JUEZ CHARLES N. BROWER Comparto los puntos de vista expresados por un distinguido Juez Ad Hoc de la Corte Internacional de Justicia en relaci\u00f3n con el rol del Juez Ad Hoc Al ejercer sus atribuciones imparcialmente y a conciencia tiene the special obligation to endeavour to ensure that so far as is reasonable every relevant argument in favour of the party that has appointed him has been fully appreciated in the course of collegial consideration and ultimately is reflected ", - "values": [ - "Voto Separado" - ] - }, - { - "text": "VOTO RAZONADO DEL JUEZ AA. CAN\u00c7ADO TRINDADE Voto a favor de la presente Sentencia de reparaciones que viene de adoptar la Corte Interamericana de Derechos Humanos en el caso Trujillo Oroza versus Bolivia. Una consideraci\u00f3n de la Corte desarrollada en esta Sentencia ata\u00f1e a la basis de la jurisdicci\u00f3n de la Corte en materia contenciosa en el contexto del caso concreto. Me refiero al p\u00e1rrafo el cual se\u00f1ala que La Corte tiene presente que algunos de los hechos de este caso son anteriores a las ", - "values": [ - "Voto Separado" - ] - }, - { - "text": "VOTO RAZONADO CONCURRENTE DEL JUEZ SERGIO GARC\u00cdA RAM\u00cdREZ EN LA SENTENCIA DE REPARACIONES DEL CASO TRUJILLO OROZA VS. BOLIVIA Concurro con mis colegas integrantes de la Corte en la suscripci\u00f3n de la Sentencia sobre Reparaciones en el Caso Trujillo Oroza vs. Bolivia. En mi concepto el tribunal tiene competencia como lo ha se\u00f1alado para conocer y resolver acerca de los hechos sobre los que versan la sentencia de fondo y esta sentencia de reparaciones as\u00ed como para establecer las consecuencias ", - "values": [ - "Voto Separado" - ] - }, - { - "text": "VOTO INDIVIDUAL DEL JUEZ EDUARDO VIO GROSSI RESOLUCI\u00d3N DE LA CORTE INTERMERICANA DE DERECHOS HUMANOS DE MAYO DE MEDIDAS PROVISIONALES RESPECTO DE VENEZUELA CASO FAMILIA BARRIOS Qui\u00e9n suscribe concurre con su voto individual a la aprobaci\u00f3n de la Resoluci\u00f3n indicada en el r\u00f3tulo reiterando empero que en atenci\u00f3n a que en autos ya se emiti\u00f3 el fallo definitivo e inapelable que ha puesto efectivo t\u00e9rmino al caso de autos ha precluido la competencia de la Corte Interamericana de Derechos Humanos ", - "values": [ - "Medidas Provisionales" - ] - }, - { - "text": "VOTO INDIVIDUAL DEL JUEZ EDUARDO VIO GROSSI RESOLUCI\u00d3N DE LA CORTE INTERAMERICANA DE DERECHOS HUMANOS DE FEBRERO DE MEDIDAS PROVISIONALES RESPECTO DE VENEZUELA CASO FAMILIA BARRIOS Se emite el siguiente voto individual a los efectos de reiterar lo expresado por el suscrito en su voto concurrente a la Sentencia de la Corte Interamericana de Derechos Humanos de de noviembre de Caso Familia Barrios Vs. Venezuela. Eduardo Vio Grossi Juez Pablo Saavedra Alessandri Secretario", - "values": [ - "Voto Separado" - ] - }, - { - "text": "RESOLUCI\u00d3N DE LA CORTE INTERAMERICANA DE DERECHOS HUMANOS DE DE MAYO DE SOLICITUD DE MEDIDAS PROVISIONALES RESPECTO DE COSTA RICA ASUNTO ROJAS MADRIGAL RESPECTO AL CASO AMRHEIN Y OTROS VISTO El escrito de sometimiento de de noviembre de mediante el cual la Comisi\u00f3n Interamericana de Derechos Humanos en adelante la Comisi\u00f3n Interamericana o la Comisi\u00f3n present\u00f3 a la Corte Interamericana de Derechos Humanos en adelante la Corte o el Tribunal el Caso Amrhein y otros Vs. Costa Rica. Los de ", - "values": [ - "Medidas Provisionales" - ] - }, - { - "text": "VOTO CONCURRENTE DEL JUEZ EDUARDO VIO GROSSI RESOLUCI\u00d3N DE LA CORTE INTERAMERICANA DE DERECHOS HUMANOS DE DE MARZO SOLICITUD DE MEDIDAS PROVISIONALES CASO ARTAVIA MURILLO Y OTROS FECUNDACI\u00d3N IN VITRO VS COSTA RICA. Se emite el presente voto concurrente con la Resoluci\u00f3n indicada en el r\u00f3tulo en m\u00e9rito de que si bien se comparte la decisi\u00f3n de desestimar las medida provisionales solicitadas no lo es por la raz\u00f3n se\u00f1alada en la misma esto es porque el asunto planteado ante el Tribunal no es de", - "values": [ - "Voto Separado" - ] - }, - { - "text": "VOTO CONCURRENTE DEL JUEZ EDUARDO VIO GROSSI A LA RESOLUCI\u00d3N DE LA CORTE INTERAMERICANA DE DERECHOS HUMANOS DE DE FEBRERO DE CASO EL AMPARO VS. VENEZUELA SUPERVISI\u00d3N DE CUMPLIMIENTO DE SENTENCIA El suscrito concurre con el presente voto a la resoluci\u00f3n indicada en el t\u00edtulo en adelante la Resoluci\u00f3n en el entendido de que acorde a las normas pertinentes y en vista del extenso lapso y por ende m\u00e1s que prudente o razonable transcurrido desde la dictaci\u00f3n de la sentencia de autos sin que el en", - "values": [ - "Voto Separado" - ] - }, - { - "text": "VOTO CONCURRENTE DEL JUEZ DIEGO GARC\u00cdASAY\u00c1N A LA RESOLUCI\u00d3N DE SUPERVISI\u00d3N DE CUMPLIMIENTO DE SENTENCIA DEL CASO BLANCO ROMERO Y OTROS VS. VENEZUELA DE DE NOVIEMBRE DE La cuesti\u00f3n de la supervisi\u00f3n de cumplimiento de sus propias Sentencias por la Corte Interamericana de Derechos Humanos en adelante la Corte Interamericana la Corte o el Tribunal es una de las atribuciones m\u00e1s relevantes para la protecci\u00f3n de los derechos humanos. El Tribunal ejerce esta atribuci\u00f3n desde sus primeras y es una", - "values": [ - "Voto Separado" - ] - }, - { - "text": "VOTO CONCURRENTE DEL JUEZ EDUARDO VIO GROSSI A LA RESOLUCI\u00d3N DE LA CORTE INTERAMERICANA DE DERECHOS HUMANOS DE DE NOVIEMBRE DE CASO BLANCO ROMERO Y OTROS VS. VENEZUELA SUPERVISI\u00d3N DE CUMPLIMIENTO DE SENTENCIA. Introducci\u00f3n. El suscrito concurre con el presente voto a la Resoluci\u00f3n indicada en el t\u00edtulo en adelante la Resoluci\u00f3n en el entendido de que acorde a las normas pertinentes y en vista del extenso lapso y por ende m\u00e1s que prudente o razonable transcurrido desde la dictaci\u00f3n de la de ", - "values": [ - "Voto Separado" - ] - }, - { - "text": "VOTO RAZONADO DEL JUEZ SERGIO GARC\u00cdA RAM\u00cdREZ EN RELACI\u00d3N CON LA SENTENCIA DE LA CORTE INTERAMERICANA DE DERECHOS HUMANOS EN EL CASO US\u00d3N RAM\u00cdREZ VS. VENEZUELA DE DE NOVIEMBRE DE En la sentencia a la que concurro con este voto la Corte Interamericana defini\u00f3 un criterio que hab\u00eda perfilado en ocasiones anteriores pero no desarrollado puntualmente con sus naturales consecuencias. En otras oportunidades he sostenido la pertinencia de asumir ese criterio para el an\u00e1lisis y la decisi\u00f3n de un caso", - "values": [ - "Voto Separado" - ] - }, - { - "text": "VOTO DISIDENTE DEL JUEZ adhoc PIER PAOLO PASCERI SCARAMUZZA. En el caso Perozo y otros vs. La Rep\u00fablica Bolivariana de Venezuela Data venia del criterio de la mayor\u00eda Pier Paolo Pasceri S Juez adhoc de la Corte Interamericana de Derechos Humanos lamenta salvar su voto por tener criterio contrario tanto en la motiva como en la dispositiva a excepci\u00f3n de los puntos de la dispositiva o resolutiva del fallo y por tanto disentir de la mayor\u00eda de los integrantes de esta Corte cuyos votos favorables ", - "values": [ - "Voto Separado" - ] - }, - { - "text": "Voto Razonado del Juez Sergio Garc\u00eda Ram\u00edrez Con Respecto A La Resoluci\u00f3n de la Corte Interamericana De Derechos Humanos sobre El Asunto del Internado Judicial Capital El Rodeo I Y El Rodeo II de de febrero de Concurro en la adopci\u00f3n de las medidas provisionales concernientes a reclusos de los internados judiciales El Rodeo I y El Rodeo II mediante Resoluci\u00f3n del de febrero de a la que agrego este Voto. En los considerandos de aqu\u00e9lla se hace el examen de diversas cuestiones relevantes a ", - "values": [ - "Medidas Provisionales", - "Voto Separado" - ] - }, - { - "text": "VOTO CONCURRENTE DEL JUEZ SERGIO GARC\u00cdA RAM\u00cdREZ A LA RESOLUCI\u00d3N DE LA CORTE INTERAMERICANA DE DERECHOS HUMANOS SOBRE MEDIDAS PROVISIONALES EN RELACI\u00d3N CON LOS HABITANTES DEL INTERNADO JUDICIAL DE MONAGAS LA PICA VENEZUELA DEL DE FEBRERO DE En diversas audiencias p\u00fablicas y votos concurrentes o razonados manifestado mis puntos de vista acerca de la afectaci\u00f3n de derechos humanos instituciones de reclusi\u00f3n para adultos o menores de edad. Me remito a lo que expuesto en esas ocasiones acerca de ", - "values": [ - "Voto Separado" - ] - }, - { - "text": "VOTO RAZONADO CONJUNTO DE LOS JUECES AA. CAN\u00c7ADO TRINDADE Y ME. VENTURA ROBLES Hemos concurrido con nuestros votos a la adopci\u00f3n por la Corte Interamericana de Derechos Humanos de la presente Resoluci\u00f3n sobre Medidas Provisionales de protecci\u00f3n en el caso del Internado Judicial de Monagas La Pica referente a Venezuela y nos vemos adem\u00e1s en la obligaci\u00f3n de dejar constancia en este Voto Razonado Conjunto de nuestra posici\u00f3n sobre la materia tratada. En primer lugar la Corte en pleno ha una ", - "values": [ - "Voto Separado" - ] - }, - { - "text": "VOTO CONCURRENTE DEL JUEZ AA. CAN\u00c7ADO TRINDADE Al concurrir con mi voto a la adopci\u00f3n por la Corte Interamericana de Derechos Humanos de esta nueva Resoluci\u00f3n sobre Medidas Provisionales de Protecci\u00f3n en el caso de Eloisa Barrios y Otros respecto de Venezuela me veo en la obligaci\u00f3n de reiterar en el presente Voto Concurrente la esencia de mis ponderaciones en mi anterior Voto Concurrente en la previa Resoluci\u00f3n de la Corte del de junio de en el cas desp\u00e8ce. Cuando no se da pronto a las ", - "values": [ - "Voto Separado" - ] - }, - { - "text": "VOTO CONCURRENTE DEL JUEZ AA. CAN\u00c7ADO TRINDADE Al votar en favor de la adopci\u00f3n por la Corte Interamericana de Derechos Humanos de la presente Resoluci\u00f3n sobre Medidas Provisionales de Protecci\u00f3n en el caso de Eloisa Barrios y Otros respecto de Venezuela me veo en la obligaci\u00f3n de dejar constancia en el presente Voto Concurrente de una breve reflexi\u00f3n que me suscitan los hechos del cas desp\u00e8ce as\u00ed como de otros casos recientes que han conllevado esta Corte a ordenar Medidas Provisionales de ", - "values": [ - "Voto Separado" - ] - }, - { - "text": "VOTO CONCURRENTE DEL JUEZ AA. CAN\u00c7ADO TRINDADE Voto a favor de la adopci\u00f3n de las presentes Medidas Provisionales de Protecci\u00f3n mediante las cuales la Corte Interamericana de Derechos Humanos ordena que se extienda protecci\u00f3n a todas las personas que trabajan en la Emisora de Televisi\u00f3n Globovisi\u00f3n en Venezuela o vinculadas a la misma o que se encuentren en sus instalaciones. La Corte adem\u00e1s afirma la obligaci\u00f3n general del Estado de proteger a todas las personas que se encuentren bajo su a", - "values": [ - "Voto Separado" - ] - }, - { - "text": "VOTO RAZONADO CONCURRENTE DEL JUEZ SERGIO GARCIA RAMIREZ A LA RESOLUCION DE LA CORTE INTERAMERICANA DE DERECHOS HUMANOS SOBRE MEDIDAS PROVISIONALES EN EL CASO LA EMISORA DE TELEVISI\u00d3N GLOBOVISI\u00d3N DE DE SEPTIEMBRE DE En el presente Voto reitero las consideraciones que expuse en mis votos razonados concurrentes que acompa\u00f1an las Resoluciones emitidas por la Corte Interamericana de Derechos Humanos respecto de las medidas provisionales en el Caso del Pueblo Ind\u00edgena Kankuamo Resoluci\u00f3n de de ", - "values": [ - "Voto Separado" - ] - }, - { - "text": "VOTO CONCURRENTE DEL JUEZ EDUARDO FERRER MACGREGOR POISOT CASO YARCE Y OTRAS VS. COLOMBIA SENTENCIA DE DE NOVIEMBRE DE EXCEPCIONES PRELIMINARES FONDO REPARACIONES Y COSTAS INTRODUCCI\u00d3N UN SISTEMA DE DERECHOS HUMANOS SIN DERECHO A LA VIVIENDA El presente caso resulta relevante por dos aspectos de especial significaci\u00f3n. En primer lugar se enfatiza el g\u00e9nero como un elemento adicional de vulnerabilidad en la labor de la defensa de los derechos humanos es decir los Estados deben tener en cuenta", - "values": [ - "Voto Separado" - ] - }, - { - "text": "VOTO INDIVIDUAL CONCURRENTE DEL JUEZ EDUARDO VIO GROSSI. RESOLUCI\u00d3N DE LA CORTE INTERAMERICANA DE DERECHOS HUMANOS DE DE JUNIO DE MEDIDAS PROVISIONALES RESPECTO DE LA REP\u00daBLICA DE COLOMBIA CASO COMERCIANTES Vs. COLOMBIA. Se emite el presente Voto Individual Concurrente con la Resoluci\u00f3n indicada en el t\u00edtulo en adelante la Resoluci\u00f3n no obstante que ella ser\u00eda contradictoria con lo expuesto antes en votos disidentes y concurrentes emitidos en casos en que tambi\u00e9n se adoptaron medidas de ", - "values": [ - "Voto Separado" - ] - }, - { - "text": "VOTO CONCURRENTE DEL JUEZ EDUARDO VIO GROSSI RESOLUCI\u00d3N DE LA CORTE INTERAMERICANA DE DERECHOS HUMANOS DE DE FEBRERO DE CASO CABALLERO DELGADO Y SANTANA VS. COLOMBIA SUPERVISI\u00d3N DE CUMPLIMIENTO DE SENTENCIA El suscrito concurre con el presente voto a la resoluci\u00f3n indicada en el t\u00edtulo en adelante la Resoluci\u00f3n en el entendido de que acorde a las normas pertinentes y en vista del extenso lapso y por ende m\u00e1s que prudente o razonable transcurrido desde la dictaci\u00f3n de la sentencia de autos sin", - "values": [ - "Voto Separado" - ] - }, - { - "text": "VOTO CONCURRENTE DE LOS JUECES DIEGO GARC\u00cdASAY\u00c1N LEONARDO A. FRANCO MANUEL VENTURA ROBLES MARGARETTE MAY MACAULAY Y RHADYS ABREU BLONDET MEDIDAS PROVISIONALES RESPECTO DE COLOMBIA CASO GUTI\u00c9RREZ SOLER La facultad de dictar medidas provisionales para evitar da\u00f1os irreparables a las personas en casos de extrema gravedad y urgencia es una de las competencias fundamentales de la Corte Interamericana de Derechos Humanos en adelante tambi\u00e9n la Corte Interamericana la Corte o el Tribunal. Est\u00e1 en el", - "values": [ - "Voto Separado" - ] - }, - { - "text": "VOTO DISIDENTE DEL JUEZ EDUARDO VIO GROSSI MEDIDAS PROVISIONALES RESPECTO DE COLOMBIA CASO GUTI\u00c9RREZ SOLER Se formula el presente voto disidente a la resoluci\u00f3n indicada en atenci\u00f3n a que por haberse dictado sentencia de fondo en autos ha operado la preclusi\u00f3n respecto de la facultad de la Corte Interamericana de Derechos Humanos en adelante la Corte de decretar nuevas medidas provisionales en la causa habiendo cesado por otra parte las ya ordenadas siendo empero su objeto y efectos asumidos ", - "values": [ - "Voto Separado" - ] - }, - { - "text": "VOTO RAZONADO DEL JUEZ AA. CAN\u00c7ADO TRINDADE He votado en favor de la adopci\u00f3n de la presente Resoluci\u00f3n sobre Medidas Provisionales de Protecci\u00f3n de la Corte Interamericana de Derechos Humanos en el caso Mery Naranjo y Otros versus Colombia y me veo en la obligaci\u00f3n de a \u00e9sta juntar el presente Voto Razonado conteniendo mis breves reflexiones sobre algunas inquietudes que he venido exponiento a la Corte en los \u00faltimos meses con miras al fortalecimiento de este mecanismo de salvaguardia de de ", - "values": [ - "Voto Separado" - ] - }, - { - "text": "VOTO CONCURRENTE DEL JUEZ AA. CAN\u00c7ADO TRINDADE Al concurrir con mi voto a la adopci\u00f3n por la Corte Interamericana de Derechos Humanos de esta nueva Resoluci\u00f3n sobre Medidas Provisionales de Protecci\u00f3n en el caso de las Comunidades del Juguiamand\u00f3 y del Curbarad\u00f3 respecto de Colombia me veo en la obligaci\u00f3n de dejar constancia en el presente Voto Concurrente de una breve reflexi\u00f3n que me suscitan los hechos del cas desp\u00e8ce as\u00ed como de otros casos recientes que han conllevado esta Corte a de ", - "values": [ - "Voto Separado" - ] - }, - { - "text": "VOTO CONCURRENTE DEL JUEZ AA. CAN\u00c7ADO TRINDADE Al concurrir con mi voto a la adopci\u00f3n por la Corte Interamericana de Derechos Humanos de esta nueva Resoluci\u00f3n sobre Medidas Provisionales de Protecci\u00f3n en el caso de las Comunidad de San Jos\u00e9 de Apartad\u00f3 respecto de Colombia me veo en la obligaci\u00f3n de dejar constancia en el presente Voto Concurrente de una breve reflexi\u00f3n que me suscitan los hechos del cas desp\u00e8ce as\u00ed como de otros casos recientes que han conllevado esta Corte a ordenar Medidas ", - "values": [ - "Voto Separado" - ] - }, - { - "text": "VOTO CONCURRENTE DEL JUEZ AA. CAN\u00c7ADO TRINDADE Al votar a favor de la adopci\u00f3n de las presentes Medidas Provisionales de Protecci\u00f3n mediante las cuales la Corte Interamericana de Derechos Humanos ordena que se extienda protecci\u00f3n a todos los miembros de la Comunidad de Paz de San Jos\u00e9 de Apartad\u00f3 en Colombia me veo en la obligaci\u00f3n de dejar constancia en este Voto Concurrente de lo que ha sido la fundamentaci\u00f3n de mi posici\u00f3n en medidas de protecci\u00f3n como las presentes en circunstancias de la ", - "values": [ - "Voto Separado" - ] - }, - { - "text": "VOTO CONCURRENTE DEL JUEZ AA. CAN\u00c7ADO TRINDADE Al votar a favor de la adopci\u00f3n de las presentes Medidas Provisionales de Protecci\u00f3n mediante las cuales la Corte Interamericana de Derechos Humanos ordena que se extienda protecci\u00f3n a todos los miembros de las Comunidades del Jiguamiand\u00f3 y del Curbarad\u00f3 en Colombia me veo en la obligaci\u00f3n de dejar constancia en este Voto Concurrente de lo que ha sido la fundamentaci\u00f3n de mi posici\u00f3n en medidas de protecci\u00f3n como las presentes en circunstancias de", - "values": [ - "Voto Separado" - ] - }, - { - "text": "RESOLUCI\u00d3N DE LA CORTE INTERAMERICANA DE DERECHOS HUMANOS DE DE NOVIEMBRE DE CASOS FERN\u00c1NDEZ ORTEGA Y OTROS Y ROSENDO CANT\u00da Y OTRA VS. M\u00c9XICO SUPERVISI\u00d3N DE CUMPLIMIENTO DE SENTENCIA VISTO Las Sentencias de Excepci\u00f3n Preliminar Fondo Reparaciones y Costas emitidas por la Corte Interamericana de Derechos Humanos en adelante la Corte la Corte Interamericana o el Tribunal los d\u00edas y de agosto de respectivamente en el caso Fern\u00e1ndez Ortega y otros Vs. M\u00e9xico y en el caso Rosendo Cant\u00fa y otra ", - "values": [ - "Supervisi\u00f3n de cumplimiento de Sentencia" - ] - }, - { - "text": "VOTO CONCURRENTE DEL JUEZ EDUARDO VIO GROSSI RESOLUCI\u00d3N DE LA CORTE INTERAMERICANA DE DERECHOS HUMANOS DE DE FEBRERO DE MEDIDAS PROVISIONALES RESPECTO DE LOS ESTADOS UNIDOS MEXICANOS CASO FERN\u00c1NDEZ ORTEGA Y OTROS Qui\u00e9n suscribe concurre con su voto a la aprobaci\u00f3n de la Resoluci\u00f3n indicada en el r\u00f3tulo dejando empero constancia de que en atenci\u00f3n a que habi\u00e9ndose dictado en autos el fallo definitivo e inapelable que ha puesto efectivo t\u00e9rmino al caso en el que mientras la Corte Interamericana", - "values": [ - "Voto Separado" - ] - }, - { - "text": "CORTE INTERAMERICANA DE DERECHOS HUMANOS CASO FERN\u00c1NDEZ ORTEGA Y OTROS VS. M\u00c9XICO SENTENCIA DE DE MAYO DE Interpretaci\u00f3n de la Sentencia de Excepci\u00f3n Preliminar Fondo Reparaciones y Costas En el caso Fern\u00e1ndez Ortega y otros la Corte Interamericana de Derechos Humanos en adelante la Corte Interamericana la Corte o el Tribunal integrada por los siguientes Jueces Diego Garc\u00edaSay\u00e1n Presidente Leonardo A. Franco Juez Manuel E. Ventura Robles Juez Margarette May Macaulay Jueza Rhadys Abreu Blondet", - "values": [ - "Interpretaci\u00f3n" - ] - }, - { - "text": "RESOLUCI\u00d3N DE LA PRESIDENTA DE LA CORTE INTERAMERICANA DE DERECHOS HUMANOS DE DE MAYO DE CASO RADILLA PACHECO VS. M\u00c9XICO VISTOS El escrito de demanda presentado por la Comisi\u00f3n Interamericana de Derechos Humanos en adelante la Comisi\u00f3n Interamericana o la Comisi\u00f3n ante la Corte Interamericana de Derechos Humanos en adelante la Corte Interamericana la Corte o el Tribunal el de marzo de mediante el cual ofreci\u00f3 siete testimonios y tres peritajes. De los testimonios ofrecidos cuatro de ", - "values": [ - "Otros" - ] - }, - { - "text": "RESOLUCI\u00d3N DE LA PRESIDENTA DE LA CORTE INTERAMERICANA DE DERECHOS HUMANOS DE DE MARZO DE CASO GONZ\u00c1LEZ Y OTRAS CAMPO ALGODONERO VS. M\u00c9XICO VISTO El escrito de demanda presentado por la Comisi\u00f3n Interamericana de Derechos Humanos en adelante la Comisi\u00f3n Interamericana o la Comisi\u00f3n ante la Corte Interamericana de Derechos Humanos en adelante la Corte Interamericana la Corte o el Tribunal el de noviembre de en el que ofreci\u00f3 cinco testigos y cuatro peritos. Uno de los peritos ofrecidos por ", - "values": [ - "Otros" - ] - }, - { - "text": "RESOLUCI\u00d3N DE LA CORTE INTERAMERICANA DE DERECHOS HUMANOS DE DE ENERO DE CASO GONZ\u00c1LEZ Y OTRAS CAMPO ALGODONERO VS. M\u00c9XICO SOLICITUD DE AMPLIACI\u00d3N DE PRESUNTAS V\u00cdCTIMAS Y NEGATIVA DE REMISI\u00d3N DE PRUEBA DOCUMENTAL VISTO El escrito de demanda de la Comisi\u00f3n Interamericana de Derechos Humanos en adelante la Comisi\u00f3n Interamericana o la Comisi\u00f3n presentado ante la Corte Interamericana de Derechos Humanos en adelante la Corte Interamericana la Corte o el Tribunal el de noviembre de as\u00ed como ", - "values": [ - "Otros" - ] - }, - { - "text": "VOTO RAZONADO DE LA JUEZA CECILIA MEDINA EN EL CASO MARTIN DEL CAMPO Concurro a la decisi\u00f3n de la Corte de que no debe conocer de ninguna de las alegadas violaciones de derechos humanos que aparecen en el caso que le fue sometido por la Comisi\u00f3n Interamericana de Derechos Humanos y en el escrito de observaciones presentado por los representantes de la v\u00edctima pero mis razones son en algunos puntos diferentes. La excepci\u00f3n del Estado se refiere a diversas presuntas violaciones de la Convenci\u00f3n ", - "values": [ - "Voto Separado" - ] - }, - { - "text": "VOTO INDIVIDUAL DEL JUEZ EDUARDO VIO GROSSI RESOLUICI\u00d3N DE LA CORTE INTERAMERICANA DE DERECHOS HUMANOS DE FEBRERO DE MEDIDAS PROVISIONALES RESPECTO DE HONDURAS ASUNTO PACHECO TERUEL Y OTROS Se extiende el presente voto individual con el prop\u00f3sito de dejar debida constancia que para el suscrito las presentes medidas provisionales se decretan en consideraci\u00f3n a que a juicio del suscrito el Estado se encuentra obligado a brindar protecci\u00f3n a la se\u00f1ora Ramos y sus hijas en virtud de la Sentencia ", - "values": [ - "Voto Separado" - ] - }, - { - "text": "VOTO CONCURRENTE DEL JUEZ DIEGO GARC\u00cdASAY\u00c1N A LA RESOLUCI\u00d3N DE SUPERVISI\u00d3N DE CUMPLIMIENTO DE SENTENCIA DEL CASO SERVELL\u00d3N GARC\u00cdA Y OTROS VS. HONDURAS DE DE NOVIEMBRE DE La cuesti\u00f3n de la supervisi\u00f3n de cumplimiento de sus propias Sentencias por la Corte Interamericana de Derechos Humanos en adelante la Corte Interamericana la Corte o el Tribunal es una de las atribuciones m\u00e1s relevantes para la protecci\u00f3n de los derechos humanos. El Tribunal ejerce esta atribuci\u00f3n desde sus primeras y es ", - "values": [ - "Voto Separado" - ] - }, - { - "text": "VOTO CONCURRENTE DEL JUEZ EDUARDO VIO GROSSI A LA RESOLUCI\u00d3N DE LA CORTE INTERAMERICANA DE DERECHOS HUMANOS DE DE NOVIEMBRE DE CASO SERVELL\u00d3N GARC\u00cdA Y OTROS VS. HONDURAS SUPERVISI\u00d3N DE CUMPLIMIENTO DE SENTENCIA. Introducci\u00f3n. El suscrito concurre con el presente voto a la Resoluci\u00f3n indicada en el t\u00edtulo en adelante la Resoluci\u00f3n en el entendido de que acorde a las normas pertinentes y en vista del extenso lapso y por ende m\u00e1s que prudente o razonable transcurrido desde la dictaci\u00f3n de la de", - "values": [ - "Voto Separado" - ] - }, - { - "text": "VOTO DISIDENTE DEL JUEZ EDUARDO VIO GROSSI MEDIDAS PROVISIONALES RESPECTO DE HONDURAS CASO KAWAS FERN\u00c1NDEZ Se formula el presente voto disidente a la resoluci\u00f3n indicada en atenci\u00f3n a que por haberse dictado sentencia de fondo en autos ha operado la preclusi\u00f3n respecto de la facultad de la Corte Interamericana de Derechos Humanos en adelante la Corte de decretar nuevas medidas provisionales en la causa habiendo cesado por otra parte las ya ordenadas siendo empero su objeto y efectos asumidos ", - "values": [ - "Voto Separado" - ] - }, - { - "text": "VOTO CONCURRENTE DE LOS JUECES DIEGO GARC\u00cdASAY\u00c1N LEONARDO A. FRANCO MANUEL VENTURA ROBLES MARGARETTE MAY MACAULAY Y RHADYS ABREU BLONDET MEDIDAS PROVISIONALES RESPECTO DE HONDURAS CASO KAWAS FERN\u00c1NDEZ La facultad de dictar medidas provisionales para evitar da\u00f1os irreparables a las personas en casos de extrema gravedad y urgencia es una de las competencias fundamentales de la Corte Interamericana de Derechos Humanos en adelante tambi\u00e9n la Corte Interamericana la Corte o el Tribunal. Est\u00e1 en el", - "values": [ - "Voto Separado" - ] - }, - { - "text": "VOTO SEPARADO DEL JUEZ PIZA ESCALANTE He concurrido en el voto un\u00e1nime de la Corte y en la l\u00ednea general de su razonamiento pero tengo que separarme de la tesis recogida en los p\u00e1rrafos y en cuanto invocan la aplicabilidad inmediata y no meramente anal\u00f3gica del art\u00edculo de la Convenci\u00f3n que regula las solicitudes de interpretaci\u00f3n del fallo. En este sentido tengo que observar que esas solicitudes se articulan en la citada norma de la Convenci\u00f3n s\u00f3lo en relaci\u00f3n con el fallo es decir con la", - "values": [ - "Voto Separado" - ] - }, - { - "text": "RESOLUCI\u00d3N DE LA CORTE INTERAMERICANA DE DERECHOS HUMANOS DE DE NOVIEMBRE DE MEDIDAS PROVISIONALES RESPECTO DE HONDURAS ASUNTO GLADYS LANZA OCHOA VISTOS La Resoluci\u00f3n del entonces Presidente de la Corte Interamericana de Derechos Humanos en adelante la Corte Interamericana la Corte o el Tribunal emitida el de septiembre de y la Resoluci\u00f3n emitida por la Corte el de junio de mediante la cual el Tribunal resolvi\u00f3 inter alia Reiterar al Estado que contin\u00fae adoptando de forma inmediata las ", - "values": [ - "Medidas Provisionales" - ] - }, - { - "text": "RESOLUCI\u00d3N DE LA CORTE INTERAMERICANA DE DERECHOS HUMANOS DE DE NOVIEMBRE DE MEDIDAS PROVISIONALES RESPECTO HONDURAS ASUNTO JOS\u00c9 LUIS GALD\u00c1MEZ \u00c1LVAREZ Y OTROS VISTO La Resoluci\u00f3n del Presidente de la Corte Interamericana de Derechos Humanos en adelante la Corte Interamericana la Corte o el Tribunal de de diciembre de as\u00ed como las Resoluciones de la Corte de de febrero de y de octubre de mediante las cuales se orden\u00f3 la adopci\u00f3n de medidas provisionales en el presente asunto y se su ", - "values": [ - "Medidas Provisionales" - ] - }, - { - "text": "RESOLUCI\u00d3N DEL PRESIDENTE DE LA CORTE INTERAMERICANA DE DERECHOS HUMANOS DE DE ENERO DE SOLICITUD DE MEDIDAS PROVISIONALES RESPECTO DE LA REP\u00daBLICA DE COSTA RICA CASO AMRHEIN Y OTROS VS. COSTA RICA VISTO El escrito de sometimiento de de noviembre de mediante Comisi\u00f3n Interamericana de Derechos Humanos en adelante la Interamericana o la Comisi\u00f3n present\u00f3 a la Corte Interamericana de Humanos en adelante la Corte o el Tribunal el Caso Amrhein y otros Rica. el cual la Comisi\u00f3n Derechos Vs. ", - "values": [ - "Medidas Provisionales" - ] - }, - { - "text": "VOTO CONCURRENTE DEL JUEZ AA. CAN\u00c7ADO TRINDADE Al votar a favor de la adopci\u00f3n de las presentes medidas provisionales de protecci\u00f3n mediante las cuales la Corte Interamericana de Derechos Humanos reitera que se mantengan las medidas provisionales de protecci\u00f3n por ella adoptadas en su anterior Resoluci\u00f3n del en el cas desp\u00e8ce en favor de los miembros del Pueblo Ind\u00edgena de Sarayaku en Ecuador me veo en la obligaci\u00f3n de dejar constancia en este Voto Concurrente de mis reflexiones personales ", - "values": [ - "Voto Separado" - ] - }, - { - "text": "VOTO CONCURRENTE DEL JUEZ AA. CAN\u00c7ADO TRINDADE Al votar a favor de la adopci\u00f3n de las presentes Medidas Provisionales de Protecci\u00f3n mediante las cuales la Corte Interamericana de Derechos Humanos ordena que se extienda protecci\u00f3n a todos los miembros de las comunidades del Pueblo Ind\u00edgena de Sarayaku en Ecuador me veo en la obligaci\u00f3n de referirme a la construcci\u00f3n conceptual en que he estado empe\u00f1ado en el seno de la Corte Interamericana de las obligaciones erga omnes de protecci\u00f3n bajo la ", - "values": [ - "Voto Separado" - ] - }, - { - "text": "VOTO RAZONADO CONCURRENTE DEL JUEZ SERGIO GARCIA RAMIREZ A LA RESOLUCION DE LA CORTE INTERAMERICANA DE DERECHOS HUMANOS SOBRE MEDIDAS PROVISIONALES EN EL CASO DEL PUEBLO INDIGENA DE SARAYAKU DE DE JULIO DE En los \u00faltimos a\u00f1os la jurisprudencia de la Corte Interamericana de Derechos Humanos que recibe la tradici\u00f3n de etapas precedentes y se beneficia de ella ha incorporado novedades en diversos temas relevantes. Los nuevos criterios de la Corte concurren a ensanchar el horizonte de la tutela ", - "values": [ - "Voto Separado" - ] - }, - { - "text": "RESOLUCI\u00d3N DE LA CORTE INTERAMERICANA DE DERECHOS HUMANOS DE DE OCTUBRE DE CASO DE LA CORTE SUPREMA DE JUSTICIA QUINTANA COELLO Y OTROS VS. ECUADOR SUPERVISI\u00d3N DE CUMPLIMIENTO DE SENTENCIA VISTOS La Sentencia de excepci\u00f3n preliminar fondo reparaciones y costas en adelante la Sentencia o el Fallo dictada por la Corte Interamericana de Derechos Humanos en adelante la Corte la Corte Interamericana o el Tribunal el de agosto de La Corte tomando en cuenta el reconocimiento parcial de efectuado", - "values": [ - "Supervisi\u00f3n de cumplimiento de Sentencia" - ] - }, - { - "text": "RESOLUCI\u00d3N DE LA CORTE INTERAMERICANA DE DERECHOS HUMANOS DE DE ENERO DE CASO CHAPARRO \u00c1LVAREZ Y LAPO \u00cd\u00d1IGUEZ VS. ECUADOR SUPERVISI\u00d3N DE CUMPLIMIENTO DE SENTENCIA VISTO La Sentencia de excepciones preliminares fondo reparaciones y costas en adelante la Sentencia y la Sentencia sobre la solicitud de interpretaci\u00f3n de esta \u00faltima dictadas en el presente caso por la Corte Interamericana de Derechos Humanos en adelante la Corte Interamericana la Corte o el Tribunal respectivamente los d\u00edas de ", - "values": [ - "Supervisi\u00f3n de cumplimiento de Sentencia" - ] - }, - { - "text": "RESOLUCI\u00d3N DEL PRESIDENTE DE LA CORTE INTERAMERICANA DE DERECHOS HUMANOS DE DE OCTUBRE DE FONDO DE ASISTENCIA LEGAL DE V\u00cdCTIMAS CASO GONZ\u00c1LES LLUY TGGL Y FAMILIA VS. ECUADOR VISTO El escrito de de marzo de y sus anexos mediante los cuales la Comisi\u00f3n Interamericana de Derechos Humanos en adelante tambi\u00e9n la Comisi\u00f3n Interamericana o la Comisi\u00f3n someti\u00f3 ante la Corte Interamericana de Derechos Humanos en adelante la Corte Interamericana la Corte o el Tribunal el presente caso. El escrito ", - "values": [ - "Fondo de asistencia a v\u00edctimas" - ] - }, - { - "text": "CORTE INTERAMERICANA DE DERECHOS HUMANOS CASO DE LA CORTE SUPREMA DE JUSTICIA QUINTANA COELLO Y OTROS VS. ECUADOR SENTENCIA DE DE AGOSTO DE Interpretaci\u00f3n de la Sentencia de Excepci\u00f3n Preliminar Fondo Reparaciones y Costas En el caso de la Corte Suprema de Justicia Quintana Coello y otros la Corte Interamericana de Derechos Humanos en adelante la Corte Interamericana la Corte o el Tribunal integrada por los siguientes jueces Humberto Antonio Sierra Porto Presidente Roberto F. Caldas Manuel ", - "values": [ - "Interpretaci\u00f3n" - ] - }, - { - "text": "RESOLUCI\u00d3N DE LA CORTE INTERAMERICANA DE DERECHOS HUMANOS DE DE MARZO DE MEDIDAS PROVISIONALES RESPECTO DE ECUADOR ASUNTO RESPECTO A DOS NI\u00d1AS DEL PUEBLO IND\u00cdGENA TAROMENANE EN AISLAMIENTO VOLUNTARIO VISTO El escrito de la Comisi\u00f3n Interamericana de Derechos Humanos en adelante la Comisi\u00f3n Interamericana o la Comisi\u00f3n de de enero de y sus anexos mediante los cuales someti\u00f3 a la Corte Interamericana de Derechos Humanos en adelante la Corte Interamericana la Corte o el Tribunal una solicitud", - "values": [ - "Medidas Provisionales" - ] - }, - { - "text": "Corte Interamericana de Derechos Humanos Caso Chaparro \u00c1lvarez y Lapo \u00cd\u00f1iguez vs. Ecuador Sentencia de de noviembre de Interpretaci\u00f3n de la Sentencia de Excepciones Preliminares Fondo Reparaciones y Costas En el caso Chaparro \u00c1lvarez y Lapo \u00cd\u00f1iguez la Corte Interamericana de Derechos Humanos en adelante la Corte Interamericana la Corte o el Tribunal integrada por los siguientes jueces Sergio Garc\u00eda Ram\u00edrez Presidente Cecilia Medina Quiroga Vicepresidenta Manuel E. Ventura Robles Juez Diego ", - "values": [ - "Interpretaci\u00f3n" - ] - }, - { - "text": "RESOLUCI\u00d3N DEL PRESIDENTE DE LA CORTE INTERAMERICANA DE DERECHOS HUMANOS DE DE JULIO DE CASO CARVAJAL CARVAJAL Y FAMILIA VS. COLOMBIA CONVOCATORIA A AUDIENCIA VISTO El escrito de sometimiento del caso y el Informe de Fondo de la Comisi\u00f3n Interamericana de Derechos Humanos en adelante la Comisi\u00f3n Interamericana o la Comisi\u00f3n el escrito de solicitudes argumentos y pruebas en adelante el escrito de solicitudes y argumentos de los representantes de las presuntas v\u00edctimas en adelante los y el ", - "values": [ - "Otros" - ] - }, - { - "text": "RESOLUCI\u00d3N DE LA CORTE INTERAMERICANA DE DERECHOS HUMANOS DE DE MAYO DE CASO OMEARA CARRASCAL Y OTROS VS. COLOMBIA VISTO La Resoluci\u00f3n del Presidente de la Corte Interamericana de Derechos Humanos en adelante el Presidente de de abril de en adelante la Resoluci\u00f3n del Presidente mediante la cual inter alia orden\u00f3 la recepci\u00f3n de diversas declaraciones de presuntas v\u00edctimas testimoniales y periciales mediante affid\u00e1vit y convoc\u00f3 a la Comisi\u00f3n Interamericana de Derechos Humanos en adelante ", - "values": [ - "Otros" - ] - }, - { - "text": "RESOLUCI\u00d3N DEL PRESIDENTE DE LA CORTE INTERAMERICANA DE DERECHOS HUMANOS DE DE MAYO DE FONDO DE ASISTENCIA LEGAL DE V\u00cdCTIMAS CASO ISAZA URIBE Y OTROS VS. COLOMBIA VISTO El escrito de de abril de y sus anexos recibidos el d\u00eda de los mismos mes y a\u00f1o mediante los cuales la Comisi\u00f3n Interamericana de Derechos Humanos en adelante la Comisi\u00f3n Interamericana o la Comisi\u00f3n someti\u00f3 ante la Corte Interamericana de Derechos Humanos en adelante la Corte Interamericana la Corte o el Tribunal el caso.", - "values": [ - "Fondo de asistencia a v\u00edctimas" - ] - }, - { - "text": "RESOLUCI\u00d3N DEL PRESIDENTE DE LA CORTE INTERAMERICANA DE DERECHOS HUMANOS DE DE ABRIL DE CASO OMEARA CARRASCAL Y OTROS VS. COLOMBIA CONVOCATORIA A AUDIENCIA VISTO El escrito de sometimiento del caso y el Informe de Fondo de la Comisi\u00f3n Interamericana de Derechos Humanos en adelante la Comisi\u00f3n Interamericana o la Comisi\u00f3n el escrito de solicitudes argumentos y pruebas en adelante escrito de solicitudes y argumentos de los representantes de las presuntas v\u00edctimas en adelante los representantes", - "values": [ - "Otros" - ] - }, - { - "text": "RESOLUCI\u00d3N DE LA CORTE INTERAMERICANA DE DERECHOS HUMANOS DE DE FEBRERO DE MEDIDAS PROVISIONALES CASO DE LA MASACRE DE LA ROCHELA Vs. COLOMBIA VISTO La Resoluci\u00f3n de la Corte Interamericana de Derechos Humanos en adelante la Corte Interamericana o la Corte o el Tribunal de de noviembre de en la que resolvi\u00f3 inter alia a Requerir al Estado que adopte de forma inmediata las medidas que sean necesarias para proteger la vida e integridad personal de las se\u00f1oras Paola Mart\u00ednez Ortiz Luz Nelly ", - "values": [ - "Medidas Provisionales" - ] - }, - { - "text": "CORTE INTERAMERICANA DE DERECHOS HUMANOS CASO MASACRE DE SANTO DOMINGO VS. COLOMBIA SENTENCIA DE DE AGOSTO DE Solicitud de Interpretaci\u00f3n de la Sentencia sobre Excepciones Preliminares Fondo Reparaciones y Costas En el caso Masacre de Santo Domingo la Corte Interamericana de Derechos Humanos en adelante la Corte Interamericana la Corte o el Tribunal integrada por los siguientes Jueces Diego Garc\u00edaSay\u00e1n Presidente Leonardo A. Franco Juez Margarette May Macaulay Jueza Rhadys Abreu Blondet ", - "values": [ - "Interpretaci\u00f3n" - ] - }, - { - "text": "RESOLUCI\u00d3N DEL PRESIDENTE DE LA CORTE INTERAMERICANA DE DERECHOS HUMANOS DE DE DICIEMBRE DE CASO MARINO L\u00d3PEZ Y OTROS OPERACI\u00d3N G\u00c9NESIS VS. COLOMBIA VISTO El escrito de sometimiento del caso presentado por la Comisi\u00f3n Interamericana de Derechos Humanos en adelante tambi\u00e9n la Comisi\u00f3n Interamericana o la Comisi\u00f3n ante la Corte Interamericana de Derechos Humanos en adelante la Corte Interamericana la Corte o el Tribunal el de julio de mediante el cual ofreci\u00f3 tres dict\u00e1menes periciales sobre", - "values": [ - "Otros" - ] - }, - { - "text": "CORTE INTERAMERICANA DE DERECHOS HUMANOS CASO ESCU\u00c9 ZAPATA VS. COLOMBIA SENTENCIA DE DE MAYO DE INTERPRETACI\u00d3N DE LA SENTENCIA DE FONDO REPARACIONES Y COSTAS En el caso Escu\u00e9 Zapata la Corte Interamericana de Derechos Humanos en adelante la Corte Interamericana la Corte o el Tribunal integrada por los siguientes jueces Sergio Garc\u00eda Ram\u00edrez Presidente Cecilia Medina Quiroga Vicepresidenta Manuel E. Ventura Robles Juez Diego Garc\u00edaSay\u00e1n Juez Leonardo A. Franco Juez Margarette May Macaulay ", - "values": [ - "Interpretaci\u00f3n" - ] - }, - { - "text": "DEL VOTO Concurrente JUEZ AD HOC DIEGO EDUARDO L\u00d3PEZ MEDINA A LA SENTENCIA DE DE MAYO DE EN EL CASO ESCU\u00c9 ZAPATA VS. COLOMBIA Concurr\u00ed con mi voto a la decisi\u00f3n un\u00e1nime que la Corte tom\u00f3 en la Interpretaci\u00f3n de Sentencia en el caso Escu\u00e9 Zapata vs. Colombia. Aunque no tengo reserva alguna con la decisi\u00f3n tomada considero \u00fatil hacer algunas anotaciones que pueden ayudar a clarificar mi opini\u00f3n sobre dos puntos all\u00ed discutidos. I. Respecto a la divulgaci\u00f3n p\u00fablica de los resultados penales ", - "values": [ - "Voto Separado" - ] - }, - { - "text": "VOTO CONCURRENTE DEL JUEZ AA. CAN\u00c7ADO TRINDADE Al votar a favor de la adopci\u00f3n de las presentes Medidas Provisionales de Protecci\u00f3n mediante las cuales la Corte Interamericana de Derechos Humanos ordena que se extienda protecci\u00f3n a todos los miembros de las comunidades del Pueblo Ind\u00edgena Kankuamo en Colombia me veo en la obligaci\u00f3n de retomar la construcci\u00f3n conceptual en que he estado empe\u00f1ado en el seno de la Corte Interamericana de las obligaciones erga omnes de protecci\u00f3n bajo la No es ", - "values": [ - "Voto Separado" - ] - }, - { - "text": "VOTO RAZONADO CONCURRENTE DEL JUEZ SERGIO GARCIA RAMIREZ A LA RESOLUCION DE LA CORTE INTERAMERICANA DE DERECHOS HUMANOS SOBRE MEDIDAS PROVISIONALES EN EL CASO DEL PUEBLO INDIGENA KANKUAMO DEL DE JULIO DE En los \u00faltimos a\u00f1os la jurisprudencia de la Corte Interamericana de Derechos Humanos que recibe la tradici\u00f3n de etapas precedentes y se beneficia de ella ha incorporado novedades en diversos temas relevantes. Los nuevos criterios de la Corte concurren a ensanchar el horizonte de la tutela de", - "values": [ - "Voto Separado" - ] - }, - { - "text": "VOTO CONCURRENTE DE LOS JUECES SERGIO GARCIA RAMIREZ Y ALIRIO ABREU BURELLI La jurisprudencia de la Corte Interamericana de Derechos Humanos ha experimentado una apreciable evoluci\u00f3n en cuanto al alcance subjetivo de las medidas provisionales adoptadas por dicho Tribunal. Esta evoluci\u00f3n sirve adecuadamente a los importantes prop\u00f3sitos que se pretende atender a trav\u00e9s de las medidas provisionales. En nuestro voto concurrente a la Resoluci\u00f3n sobre Medidas Provisionales en el caso de la Comunidad ", - "values": [ - "Voto Separado" - ] - }, - { - "text": "VOTO DISIDENTE DEL JUEZ A. A. CAN\u00c7ADO TRINDADE Lamento no poder compartir la decisi\u00f3n tomada por la mayor\u00eda de la Corte en el punto resolutivo n. y el criterio por \u00e9sta adoptado en los p\u00e1rrafos de la presente Sentencia sobre reparaciones en el caso Caballero Delgado y Santana en el sentido de abstenerse la Corte de proceder a una revisi\u00f3n de las disposiciones pertinentes de la legislaci\u00f3n interna colombiana en cuanto al recurso del habeas corpus para determinar su compatibilidad o no con la ", - "values": [ - "Voto Separado" - ] - }, - { - "text": "VOTO INDIVIDUAL DO JUIZ ROBERTO DE FIGUEIREDO CALDAS CORTE INTERAMERICANA DE DIREITOS HUMANOS CASO GRANIER E OUTROS RADIO CARACAS TELEVISI\u00d3N VS. REP\u00daBLICA BOLIVARIANA DE VENEZUELA SENTEN\u00c7A DE DE JUNHO DE EXCE\u00c7\u00d5ES PRELIMINARES M\u00c9RITO REPARA\u00c7\u00d5ES E CUSTAS I. Introdu\u00e7\u00e3o Este voto parcialmente dissidente com algumas fundamenta\u00e7\u00f5es e conclus\u00f5es pontuais manifestadas pela maioria dos honor\u00e1veis ju\u00edzes desta Corte Interamericana na presente senten\u00e7a tem como objetivo esclarecer e enfatizar aspectos ", - "values": [ - "Voto Separado" - ] - }, - { - "text": "VOTO PARCIALMENTE DISIDENTE DEL JUEZ EDUARDO FERRER MACGREGOR POISOT CASO GRANIER Y OTROS RADIO CARACAS TELEVISI\u00d3N VS. VENEZUELA SENTENCIA DE DE JUNIO DE Excepciones Preliminares Fondo Reparaciones y Costas INTRODUCCI\u00d3N El presente caso pone de relieve la importancia de la libertad de pensamiento y expresi\u00f3n en una sociedad democr\u00e1tica misma que fuera destacada hace tres d\u00e9cadas por la Corte Interamericana de Derechos Humanos en adelante Corte IDH o Tribunal Interamericano en su Opini\u00f3n OC ", - "values": [ - "Voto Separado" - ] - }, - { - "text": "VOTO CONCURRENTE DEL JUEZ DIEGO GARCIASAY\u00c1N SENTENCIA DE LA CORTE INTERAMERICANA DE DERECHOS HUMANOS CASO GRANIER Y OTROS RADIO CARACAS TELEVISI\u00d3N VS. VENEZUELA SENTENCIA DE DE JUNIO DE Excepciones Preliminares Fondo Reparaciones y Costas En esta sentencia la Corte reafirma y desarrolla principios fundamentales acerca de la libertad de expresi\u00f3n en su relaci\u00f3n con el pluralismo democr\u00e1tico y el correspondiente deber de garantizar por parte de los Estados en diversos aspectos incluido el tema", - "values": [ - "Voto Separado" - ] - }, - { - "text": "VOTO PARCIALMENTE DISIDENTE DEL JUEZ ALBERTO P\u00c9REZ P\u00c9REZ CASO GRANIER Y OTROS RADIO CARACAS TELEVISI\u00d3N VS. VENEZUELA SENTENCIA DE DE JUNIO DE Excepciones Preliminares Fondo Reparaciones y Costas He votado negativamente los puntos declarativos y y los puntos dispositivos y por las razones que expongo a continuaci\u00f3n. I. Libertad de empresa y no libertad de expresi\u00f3n El punto central de discrepancia radica en el punto en el que se declara una violaci\u00f3n de los art\u00edculos y en relaci\u00f3n con", - "values": [ - "Voto Separado" - ] - }, - { - "text": "VOTO INDIVIDUAL CONCURRENTE DEL JUEZ EDUARDO VIO GROSSI CASO GRANIER Y OTROS RADIO CARACAS TELEVISI\u00d3N VS. VENEZUELA SENTENCIA DE DE JUNIO DE Excepciones Preliminares Fondo Reparaciones y Costas INTRODUCCI\u00d3N. Se emite el presente voto concurrente respecto de la Sentencia indicada en el t\u00edtulo a los efectos de resaltar algunos aspectos de la misma concernientes a la Carta Democr\u00e1tica Interamericana y en relaci\u00f3n a \u00e9sta a la independencia judicial y muy especialmente a la libertad de pensamiento", - "values": [ - "Voto Separado" - ] - }, - { - "text": "VOTO DISIDENTE DEL JUEZ MANUEL E. VENTURA ROBLES CASO GRANIER Y OTROS RADIO CARACAS TELEVISI\u00d3N VS. VENEZUELA SENTENCIA DE DE JUNIO DE Excepciones Preliminares Fondo Reparaciones y Costas He salvado mi voto en los puntos resolutivos y de la sentencia en el caso Granier y otros Radio Caracas Televisi\u00f3n vs. Venezuela porque de no hacerlo en mi opini\u00f3n no se reparar\u00eda en la contradicci\u00f3n en que se ha incurrido entre este caso y otros dictados por esta Corte contra el Estado de Venezuela en ", - "values": [ - "Voto Separado" - ] - }, - { - "text": "Corte Interamericana de Derechos Humanos Caso El Amparo Vs. Venezuela Resoluci\u00f3n de la Corte de de abril de Interpretaci\u00f3n de la Sentencia de Reparaciones y Costas VISTOS La sentencia de la Corte Interamericana de Derechos Humanos en adelante la Corte de de septiembre de sobre reparaciones en el caso El Amparo. El escrito de de febrero de dirigido a la Corte por la Comisi\u00f3n Interamericana de Derechos Humanos en adelante la Comisi\u00f3n en el cual asume como suya la solicitud de los de los ", - "values": [ - "Interpretaci\u00f3n" - ] - }, - { - "text": "VOTO DISIDENTE DEL JUEZ A. A. CAN\u00c7ADO TRINDADE Entiendo que los representantes de los familiares de las v\u00edctimas en el caso El Amparo juntamente con la Comisi\u00f3n Interamericana de Derechos Humanos est\u00e1n plenamente capacitados a solicitar a la Corte una interpretaci\u00f3n o aclaraci\u00f3n de su Sentencia de Reparaciones dictada el de septiembre de como tambi\u00e9n lo estar\u00eda el Estado demandado. Lamento no encontrar elementos de convicci\u00f3n que me permitan tras un reexamen de los autos del proceso la de ", - "values": [ - "Voto Separado" - ] - }, - { - "text": "VOTO CONCURRENTE DEL JUEZ MONTIEL ARG\u00dcELLO He concurrido con mi voto a la aprobaci\u00f3n de la Resoluci\u00f3n que antecede mas me considero obligado a hacer algunas precisiones. En mi opini\u00f3n la solicitud de la Comisi\u00f3n y de los representantes de las v\u00edctimas es notoriamente improcedente ya que el \u00fanico recurso que permite la Convenci\u00f3n contra las sentencias de la Corte Interamericana es el de interpretaci\u00f3n y en la solicitud no se pide una interpretaci\u00f3n de la sentencia de de septiembre de pues no ", - "values": [ - "Voto Separado" - ] - }, - { - "text": " RESOLUCI\u00d3N DE LA CORTE INTERAMERICANA DE DERECHOS HUMANOS DE DE MAYO DE CASO MASACRE DE PLAN DE S\u00c1NCHEZ VS. GUATEMALA SUPERVISI\u00d3N DE CUMPLIMIENTO DE SENTENCIA VISTO La Sentencia de fondo en adelante la Sentencia de fondo emitida por la Corte Interamericana de Derechos Humanos en adelante la Corte la Corte Interamericana o el Tribunal el de abril de y la Sentencia de reparaciones en adelante la Sentencia emitida por el Tribunal el de noviembre de El caso se refiere a los hechos el de", - "values": [ - "Supervisi\u00f3n de cumplimiento de Sentencia" - ] - }, - { - "text": "RESOLUCI\u00d3N DE LA CORTE INTERAMERICANA DE DERECHOS HUMANOS DE DE NOVIEMBRE DE CASO DEFENSOR DE DERECHOS HUMANOS Y OTROS VS. GUATEMALA SUPERVISI\u00d3N DE CUMPLIMIENTO DE SENTENCIA VISTO La Sentencia de excepciones preliminares fondo reparaciones y costas en adelante la Sentencia dictada por la Corte Interamericana de Derechos Humanos en adelante la Corte la Corte Interamericana o este Tribunal el de agosto de La Corte declar\u00f3 responsable internacionalmente a la Rep\u00fablica de Guatemala en el o", - "values": [ - "Supervisi\u00f3n de cumplimiento de Sentencia" - ] - }, - { - "text": "VOTO PARCIALMENTE DISIDENTE DEL JUEZ ROBERTO F. CALDAS CORTE INTERAMERICANA DE DERECHOS HUMANOS CASO VEL\u00c1SQUEZ PAIZ Y OTROS VS. GUATEMALA SENTENCIA DE DE NOVIEMBRE DE EXCEPCIONES PRELIMINARES FONDO REPARACIONES Y COSTAS I. Introducci\u00f3n Este voto puntual y parcialmente disidente con las fundamentaciones y conclusiones manifestadas por la mayor\u00eda de los honorables jueces de esta Corte Interamericana en relaci\u00f3n al p\u00e1rrafo n\u00famero de los Puntos Resolutivos de la Sentencia tiene como objetivo ", - "values": [ - "Voto Separado" - ] - }, - { - "text": "VOTO RAZONADO DEL JUEZ AD HOC ROBERTO DE FIGUEIREDO CALDAS CON RELACI\u00d3N A LA SENTENCIA DE LA CORTE INTERAMERICANA DE DERECHOS HUMANOS EN EL CASO GOMES LUND Y OTROS GUERRILHA DO ARAGUAIA VS. BRASIL DE DE NOVIEMBRE DE I. INTRODUCCI\u00d3N El presente voto razonado concurrente de modo general en cuanto a las fundamentaciones y conclusiones colegiadas de la Corte todas ellas un\u00e1nimes cumple el objetivo de aclarar y enfatizar algunos puntos fundamentales para las sociedades brasile\u00f1a y continental m\u00e1s", - "values": [ - "Voto Separado" - ] - }, - { - "text": "RESOLUCI\u00d3N DE LA CORTE INTERAMERICANA DE DERECHOS HUMANOS DE DE JULIO DE SOLICITUD DE MEDIDAS PROVISIONALES RESPECTO DE LA REP\u00daBLICA FEDERATIVA DE BRASIL CASO GOMES LUND Y OTROS GUERRILHA DO ARAGUAIA VISTO El escrito de de junio de y sus anexos mediante los cuales el Centro por la Justicia y el Derecho Internacional el Grupo Tortura Nunca M\u00e1s y la Comisi\u00f3n de Familiares de Muertos y Desaparecidos Pol\u00edticos representantes de las presuntas v\u00edctimas en el caso Gomes Lund y otros en adelante ", - "values": [ - "Medidas Provisionales" - ] - }, - { - "text": "VOTO CONCURRENTE DEL JUEZ A. A. CAN\u00c7ADO TRINDADE Al votar a favor de la adopci\u00f3n de las presentes Medidas Provisionales de Protecci\u00f3n mediante las cuales la Corte Interamericana de Derechos Humanos ordena que se extienda protecci\u00f3n a todas las personas recluidas en la C\u00e1rcel de Urso Branco en Brasil me veo en la obligaci\u00f3n de retomar la construcci\u00f3n conceptual en que he estado empe\u00f1ado en el seno de la Corte Interamericana de las obligaciones erga omnes de protecci\u00f3n bajo la Convenci\u00f3n No es ", - "values": [ - "Voto Separado" - ] - }, - { - "text": "VOTO CONCURRENTE A LA RESOLUCION DE LA CORTE INTERAMERICANA DE DERECHOS HUMANOS SOBRE MEDIDAS PROVISIONALES EN EL CASO DE LA CARCEL DE URSO BRANCO DEL DE JULIO DE Ante la grave situaci\u00f3n que guardan los internos y otras personas en la Casa de Detenci\u00f3n Jos\u00e9 Mario Alves conocida como C\u00e1rcel de Urso Branco ubicada en la ciudad de Porto Velho Estado de Rond\u00f4nia Brasil la Corte Interamericana de Derechos Humanos adopt\u00f3 a solicitud de la Comisi\u00f3n Interamericana de Derechos Humanos diversas medidas", - "values": [ - "Voto Separado" - ] - }, - { - "text": "RESOLUCI\u00d3N DE LA CORTE INTERAMERICANA DE DERECHOS HUMANOS DE DE FEBRERO DE MEDIDAS PROVISIONALES RESPECTO DE BRASIL ASUNTO DEL INSTITUTO PENAL PL\u00c1CIDO DE S\u00c1 CARVALHO VISTO El escrito de la Comisi\u00f3n Interamericana de Derechos Humanos en adelante la Comisi\u00f3n Interamericana o la Comisi\u00f3n de de enero de y sus anexos mediante los cuales someti\u00f3 a la Corte Interamericana de Derechos Humanos en adelante la Corte Interamericana la Corte o el Tribunal una solicitud de medidas provisionales de con", - "values": [ - "Medidas Provisionales" - ] - }, - { - "text": "VOTO RAZONADO DEL JUEZ A. A. CAN\u00c7ADO TRINDADE Al votar a favor de la adopci\u00f3n por parte de la Corte Interamericana de Derechos Humanos de la presente Resoluci\u00f3n sobre Medidas Provisionales de Protecci\u00f3n en el caso de la Penitenciar\u00eda de Araraquara vs. Brasil me veo tambi\u00e9n en el deber de dejar registro de mis reflexiones personales como fundamento de mi posici\u00f3n sobre lo deliberado por la Corte. Lo hago nuevamente en medio de la presi\u00f3n impiadosa del tiempo tomando en cuenta la fruct\u00edfera de", - "values": [ - "Voto Separado" - ] - }, - { - "text": "VOTO SEPARADO DEL JUEZ AA. CAN\u00c7ADO TRINDADE A trav\u00e9s de mi voto vengo a contribuir a la adopci\u00f3n por parte de la Corte Interamericana de Derechos Humanos de la presente Sentencia en el caso Ximenes Lopes versus Brasil. Dada la particular relevancia de la materia examinada por la Corte me veo en la obligaci\u00f3n de dejar consignadas en el presente Voto Separado mis reflexiones personales sobre lo tratado por la Corte en esta Sentencia como fundamento de mi posici\u00f3n al respecto. Lo hago como ya es ", - "values": [ - "Voto Separado" - ] - }, - { - "text": "VOTO RAZONADO DEL JUEZ SERGIO GARC\u00cdA RAM\u00cdREZ CON RESPECTO A LA SENTENCIA DE LA CORTE INTERAMERICANA DE DERECHOS HUMANOS EN EL CASO XIMENES LOPES VS. BRASIL DICTADA EL DE JULIO DE DERECHOS GENERALES Y ESPECIALES En el espacio de su jurisprudencia cada vez m\u00e1s abundante y comprensiva la Corte Interamericana se ha ocupado en el examen y la precisi\u00f3n de los derechos y libertades de individuos y miembros de grupos conjuntos o comunidades as\u00ed como en las correspondientes obligaciones y funciones ", - "values": [ - "Voto Separado" - ] - }, - { - "text": "VOTO CONCORDANTE DO JUIZ AA. CAN\u00c7ADO TRINDADE Ao votar a favor da ado\u00e7\u00e3o pela Corte Interamericana de Direitos Humanos da presente Resolu\u00e7\u00e3o sobre Medidas Provis\u00f3rias de Prote\u00e7\u00e3o no caso das Crian\u00e7as e Adolescentes Privados de Liberdade no Complexo do Tatuap\u00e9 da FEBEM versus Brasil vejome ademais no dever de deixar registro de minhas reflex\u00f5es pessoais como fundamento de minha posi\u00e7\u00e3o acerca do deliberado pela Corte. Fa\u00e7oo em meio \u00e0 press\u00e3o impiedosa do tempo contando com n\u00e3o mais que um dia e", - "values": [ - "Voto Separado" - ] - }, - { - "text": "VOTO CONCURRENTE DEL JUEZ SERGIO GARC\u00cdA RAM\u00cdREZ A LA RESOLUCI\u00d3N DE LA CORTE INTERAMERICANA DE DERECHOS HUMANOS SOBRE MEDIDAS PROVISIONALES EN EL CASO DE LOS INTERNOS EN EL COMPLEJO TATUAP\u00c9 BRASIL DE DE NOVIEMBRE DE Las caracter\u00edsticas del ejercicio jurisdiccional de la Corte Interamericana como las de cualquier tribunal internacional atraen la atenci\u00f3n de aqu\u00e9lla en dos direcciones. Por una parte es obvio que debe dirigir su inter\u00e9s y su reflexi\u00f3n a los casos que tiene sub judice tr\u00e1tese de ", - "values": [ - "Voto Separado" - ] - }, - { - "text": "RESOLU\u00c7\u00c3O DO PRESIDENTE DA CORTE INTERAMERICANA DE DIREITOS HUMANOS DE DE MAR\u00c7O DE CASO GOMES LUND E OUTROS VS. BRASIL VISTO O escrito da demanda apresentado pela Comiss\u00e3o Interamericana de Direitos Humanos doravante a Comiss\u00e3o Interamericana ou a Comiss\u00e3o \u00e0 Corte Interamericana de Direitos Humanos doravante a Corte Interamericana a Corte ou o Tribunal em de mar\u00e7o de mediante a qual ofereceu tr\u00eas declara\u00e7\u00f5es testemunhais e quatro ditames periciais. Os tr\u00eas testemunhos oferecidos constituem", - "values": [ - "Otros" - ] - }, - { - "text": "RESOLUCI\u00d3N DE LA CORTE INTERAMERICANA DE DERECHOS HUMANOS DE DE SEPTIEMBRE DE CASO HERMANAS SERRANO CRUZ VS. EL SALVADOR SUPERVISI\u00d3N DE CUMPLIMIENTO DE SENTENCIA VISTO La Sentencia de fondo reparaciones y costas en adelante la Sentencia dictada por la Corte Interamericana de Derechos Humanos en adelante la Corte la Corte Interamericana o este Tribunal el de marzo de La Corte declar\u00f3 al Estado de El Salvador en adelante el Estado o El Salvador responsable por la falta de investigaci\u00f3n de ", - "values": [ - "Supervisi\u00f3n de cumplimiento de Sentencia" - ] - }, - { - "text": "VOTO CONCURRENTE DEL JUEZ EDUARDO VIO GROSSI RESOLUCI\u00d3N DE LA CORTE INTERAMERICANA DE DERECHOS HUMANOS DE DE NOVIEMBRE DE MEDIDAS PROVISIONALES RESPECTO DE EL SALVADOR CASO GARC\u00cdA PRIETO Y OTROS. El presente voto concurrente obedece a que la Resoluci\u00f3n del ep\u00edgrafe levanta las medidas provisionales ordenadas en el caso de autos con lo que as\u00ed coincide en la pr\u00e1ctica con lo sostenido en el Voto Disidente del suscrito de fecha de enero de emitido con relaci\u00f3n al establecimiento de las En ", - "values": [ - "Voto Separado" - ] - }, - { - "text": "VOTO DISIDENTE DEL JUEZ EDUARDO VIO GROSSI RESOLUCI\u00d3N DE LA CORTE INTERAMERICANA DE DERECHOS HUMANOS DE DE ENERO MEDIDAS PROVISIONALES RESPECTO DE EL SALVADOR CASO GARC\u00cdA PRIETO Y OTROS. Se emite el presente voto disidente respecto de la Resoluci\u00f3n indicada en el r\u00f3tulo en m\u00e9rito de que ha precluido la facultad de la Corte Interamericana de Derechos Humanos de decretar la mantenci\u00f3n de medidas provisionales respecto o en el marco del referido caso sentenciado el de noviembre de Y se en la", - "values": [ - "Voto Separado" - ] - }, - { - "text": "VOTO RAZONADO DEL JUEZ AA. CAN\u00c7ADO TRINDADE He votado en favor de la adopci\u00f3n de la presente Resoluci\u00f3n de hoy sobre Medidas Provisionales de Protecci\u00f3n de la Corte Interamericana de Derechos Humanos en el caso Gloria Giralt de Garc\u00eda Prieto y Otros versus El Salvador y tal como lo hice en la muy reciente Resoluci\u00f3n de la Corte en el anterior caso Mery Naranjo y Otros versus Colombia del me veo en la obligaci\u00f3n de a \u00e9sta juntar el presente Voto Razonado conteniendo mis breves reflexiones ", - "values": [ - "Voto Separado" - ] - }, - { - "text": "VOTO RAZONADO CONJUNTO DE LOS JUECES AA. CAN\u00c7ADO TRINDADE M. PACHECO G\u00d3MEZ Y A. ABREU BURELLI Los Jueces suscritos votamos a favor de la adopci\u00f3n de la presente Sentencia de la Corte Interamericana de Derechos Humanos sobre el fondo en el caso de la Comunidad Mayagna Sumo Awas Tingni versus Nicaragua. Dada la importancia de la materia planteada en el presente caso nos vemos obligados a agregar las breves reflexiones que siguen acerca de uno de los aspectos centrales de la misma a saber la de", - "values": [ - "Voto Separado" - ] - }, - { - "text": "VOTO DISIDENTE DEL JUEZ MONTIEL ARG\u00dcELLO He disentido de los puntos resolutivos y de la sentencia dictada por la Corte en el caso de la Comunidad Mayagna Sumo Awas Tingni. Reconozco que se trata de un caso sumamente complejo y que la Corte y cada uno de los Jueces que la integran han actuado en \u00e9l con la mayor ecuanimidad. El Gobierno de Nicaragua es respetuoso en alto grado de los derechos de los pueblos ind\u00edgenas ampliamente reconocidos en la Constituci\u00f3n Pol\u00edtica y las leyes A mi ", - "values": [ - "Voto Separado" - ] - }, - { - "text": "VOTO DISIDENTE DEL JUEZ A. A. CAN\u00c7ADO TRINDADE Lamento no poder compartir la decisi\u00f3n tomada por la mayor\u00eda de la Corte en la presente Resoluci\u00f3n sobre el recurso de revisi\u00f3n de la Sentencia del fondo de de enero de en el caso Genie Lacayo. Paso a exponer los fundamentos jur\u00eddicos de mi posici\u00f3n disidente concentr\u00e1ndome de inicio en la cuesti\u00f3n de la admisibilidad de dicho recurso y en seguida en la cuesti\u00f3n de fondo de su procedencia. I. La Admisibilidad del Recurso de Revisi\u00f3n. El ante ", - "values": [ - "Voto Separado" - ] - }, - { - "text": "VOTO DISIDENTE DEL JUEZ MAXIMO PACHECO GOMEZ Disiento de la opini\u00f3n de la mayor\u00eda en relaci\u00f3n con el Punto Resolutivo n\u00famero de la sentencia en el cual la Corte decidi\u00f3 que el Estado de Nicaragua debe cancelar una compensaci\u00f3n equitativa al se\u00f1or Raymond Genie Pe\u00f1alba porque considero que lo procedente hubiera sido haber abierto la etapa de reparaciones para fijar el monto de la compensaci\u00f3n por los da\u00f1os materiales y morales sufridos despu\u00e9s de haber escuchado a las partes y a los familiares ", - "values": [ - "Voto Separado" - ] - }, - { - "text": "VOTO SEPARADO DEL JUEZ A. A. CAN\u00c7ADO TRINDADE Al suscribir la presente Resoluci\u00f3n de la Corte Interamericana de Derechos Humanos tomo nota en relaci\u00f3n con el p\u00e1rrafo n. de los Vistos del escrito del de diciembre de p\u00e1ginas de los Se\u00f1ores Raymond Genie Pe\u00f1alba y Gloria Angeles Genie padre y madre de Jean Paul Genie Lacayo que la Comisi\u00f3n Interamericana de Derechos Humanos hizo suyo seg\u00fan comunic\u00f3 a la Corte en carta del de junio de Ant\u00f4nio Augusto Can\u00e7ado Trindade Juez Manuel E. Ventura ", - "values": [ - "Voto Separado" - ] - }, - { - "text": "RESOLUCI\u00d3N DE LA CORTE INTERAMERICANA DE DERECHOS HUMANOS DEL DE FEBRERO DE MEDIDAS PROVISIONALES SOLICITADAS POR LA COMISI\u00d3N INTERAMERICANA DE DERECHOS HUMANOS RESPECTO DE NICARAGUA CASO ALEM\u00c1N LACAYO La Corte Interamericana de Derechos Humanos integrada por los siguientes jueces H\u00e9ctor FixZamudio Presidente Hern\u00e1n Salgado Pesantes Vicepresidente Alejandro Montiel Arg\u00fcello Juez M\u00e1ximo Pacheco G\u00f3mez Juez Oliver Jackman Juez Alirio Abreu Burelli Juez Ant\u00f4nio A. Can\u00e7ado Trindade Juez presentes ", - "values": [ - "Medidas Provisionales" - ] - }, - { - "text": "RESOLUCI\u00d3N DE LA CORTE INTERAMERICANA DE DERECHOS HUMANOS DEL DE FEBRERO DE MEDIDAS PROVISIONALES SOLICITADAS POR LA COMISI\u00d3N INTERAMERICANA DE DERECHOS HUMANOS RESPECTO DE LA REP\u00daBLICA DE NICARAGUA CASO ALEM\u00c1N LACAYO VISTOS El de febrero de la Comisi\u00f3n Interamericana de Derechos Humanos en adelante la Comisi\u00f3n remiti\u00f3 a la Corte Interamericana de Derechos Humanos en adelante la Corte una solicitud de medidas provisionales en favor del se\u00f1or Arnoldo Alem\u00e1n Lacayo en ese entonces candidato ", - "values": [ - "Medidas Provisionales" - ] - }, - { - "text": "VOTO RAZONADO DEL JUEZ SERGIO GARC\u00cdA RAM\u00cdREZ EN RELACI\u00d3N CON LA SENTENCIA DE LA CORTE INTERAMERICANA DE DERECHOS HUMANOS EN EL CASO HELIODORO PORTUGAL PANAM\u00c1 DEL DE AGOSTO DE Concurr\u00ed a la adopci\u00f3n de la sentencia dictada en este caso que declara el car\u00e1cter violatorio de derechos humanos de los hechos sujetos a la competencia temporal y material de la Corte Interamericana. Creo pertinente formular algunas apreciaciones adicionales en torno al hecho principal sub judice la desaparici\u00f3n del ", - "values": [ - "Voto Separado" - ] - }, - { - "text": "RESOLUCI\u00d3N DE LA CORTE INTERAMERICANA DE DERECHOS HUMANOS DE DE MAYO DE SOLICITUD DE MEDIDAS PROVISIONALES RESPECTO DE BOLIVIA CASO IV. VS. BOLIVIA VISTO La Sentencia de excepciones preliminares fondo reparaciones y costas de de noviembre de mediante la cual la Corte Interamericana de Derechos Humanos en adelante la Corte Interamericana o la Corte declar\u00f3 responsable internacionalmente al Estado Plurinacional de Bolivia en adelante el Estado de Bolivia el Estado o Bolivia por la violaci\u00f3n ", - "values": [ - "Medidas Provisionales" - ] - }, - { - "text": "CORTE INTERAMERICANA DE DERECHOS HUMANOS COUR INTERAMERICAINE DES DROITS DE LHOMME A CORTE INTERAMERICANA DE DIREITOS HUMANOS INTIRAMERICAN COURT OF HUMAN RIGHTS PRESIDENTE DE LA CORTE RESOLUCION DEL PRESIDENTE DE LA CORTE INTERAMERICANA DE DERECHOS HUMANOS DE DE ABRIL DE CASO IBSEN CARDENAS E IBSEN PENA V. BOLIVIA VISTOS La Resolucin del Presidente de la Corte Interamericana de Derechos Humanos en adelante Corte Corte Interamericana Tribunal de de marzo de mediante la cual resolvi inter ", - "values": [ - "Otros" - ] - }, - { - "text": "RESOLUCI\u00d3N DEL PRESIDENTE EN EJERCICIO DE LA CORTE INTERAMERICANA DE DERECHOS HUMANOS DE DE JULIO DE FONDO DE ASISTENCIA LEGAL DE V\u00cdCTIMAS CASO TERRONES SILVA Y OTROS VS. PER\u00da VISTO El escrito de de abril de y sus anexos mediante los cuales la Comisi\u00f3n Interamericana de Derechos Humanos en adelante la Comisi\u00f3n Interamericana o la Comisi\u00f3n someti\u00f3 ante la Corte Interamericana de Derechos Humanos en adelante la Corte Interamericana la Corte o el Tribunal el presente caso. El escrito de de ", - "values": [ - "Fondo de asistencia a v\u00edctimas" - ] - }, - { - "text": "RESOLUCI\u00d3N DE LA CORTE INTERAMERICANA DE DERECHOS HUMANOS DE DE AGOSTO DE MEDIDAS PROVISIONALES SOLICITADAS POR LA COMISI\u00d3N INTERAMERICANA DE DERECHOS HUMANOS RESPECTO DE LA REP\u00daBLICA DOMINICANA CASO DE HAITIANOS Y DOMINICANOS DE ORIGEN HAITIANO EN LA REP\u00daBLICA DOMINICANA VISTOS El escrito de la Comisi\u00f3n Interamericana de Derechos Humanos en adelante la Comisi\u00f3n o la Comisi\u00f3n Interamericana de de mayo de y sus Anexos mediante el cual someti\u00f3 a la Corte Interamericana de Derechos Humanos en", - "values": [ - "Medidas Provisionales" - ] - }, - { - "text": "VOTO CONCURRENTE DEL JUEZ AA. CAN\u00c7ADO TRINDADE En la memorable audiencia p\u00fablica del de agosto de ante la Corte Interamericana de Derechos Humanos las Delegaciones tanto de la Comisi\u00f3n Interamericana de Derechos Humanos como de la Rep\u00fablica Dominicana buscaron contextualizar el presente caso de los Haitianos y Dominicanos de Origen Haitiano en la Rep\u00fablica Dominicana y se\u00f1alaron en medio a muestras de una apreciada cooperaci\u00f3n procesal la gran complejidad del mismo y su car\u00e1cter de as\u00ed", - "values": [ - "Voto Separado" - ] - }, - { - "text": "Corte Interamericana de Derechos Humanos Caso de las Ni\u00f1as Yean y Bosico Vs. Rep\u00fablica Dominicana Sentencia de de noviembre de Demanda de Interpretaci\u00f3n de la Sentencia de Excepciones Preliminares Fondo Reparaciones y Costas En el Caso de las Ni\u00f1as Yean y Bosico la Corte Interamericana de Derechos Humanos en adelante la Corte o el Tribunal integrada por los siguientes jueces Sergio Garc\u00eda Ram\u00edrez Presidente Alirio Abreu Burelli Vicepresidente Ant\u00f4nio A. Can\u00e7ado Trindade Juez Cecilia Medina ", - "values": [ - "Interpretaci\u00f3n" - ] - }, - { - "text": "RESOLUCI\u00d3N DE LA CORTE INTERAMERICANA DE DERECHOS HUMANOS DE DE AGOSTO DE SOLICITUD DE MEDIDAS PROVISIONALES A FAVOR DE PERSONAS HAITIANAS Y DOMINICANAS DE ORIGEN HAITIANO EN REP\u00daBLICA DOMINICANA VISTOS El escrito de la Comisi\u00f3n Interamericana de Derechos Humanos en adelante la Comisi\u00f3n de de mayo de y sus anexos mediante el cual someti\u00f3 a la Corte Interamericana de Derechos Humanos en adelante la Corte de acuerdo con los art\u00edculos de la Convenci\u00f3n Americana sobre Derechos Humanos en la ", - "values": [ - "Medidas Provisionales" - ] - }, - { - "text": "ORDER OF THE PRESIDENT OF THE INTERAMERICAN COURT OF HUMAN RIGHTS OF NOVEMBER URGENT MEASURES REQUESTED BY THE INTERAMERICAN COMMISSION ON HUMAN RIGHTS REGARDING THE STATE OF BARBADOS CASE OF TYRONE DACOSTA CADOGAN HAVING SEEN The communication of October in which the InterAmerican Commission on Human Rights hereinafter the InterAmerican Commission or the Commission submitted to the InterAmerican Court of Human Rights hereinafter the InterAmerican Court the Tribunal or the Court a request ", - "values": [ - "Medidas Provisionales" - ] - }, - { - "text": "ORDER OF THE INTERAMERICAN COURT OF HUMAN RIGHTS OF JUNE EXPANSION OF PROVISIONAL MEASURES REQUESTED BY THE INTERAMERICAN COMMISSION ON HUMAN RIGHTS REGARDING THE STATE OF BARBADOS CASE OF BOYCE ET AL. VS. BARBADOS HAVING REGARD TO The Order of the President of the InterAmerican Court of Human Rights hereinafter the InterAmerican Court the Court or the Tribunal of September regarding the State of Barbados hereinafter the State or Barbados in which the President required the State inter to", - "values": [ - "Medidas Provisionales" - ] - }, - { - "text": "ORDER OF THE INTERAMERICAN COURT OF HUMAN RIGHTS OF NOVEMBER PROVISIONAL MEASURES REQUESTED BY THE INTERAMERICAN COMMISSION ON HUMAN RIGHTS REGARDING THE STATE OF BARBADOS CASE OF BOYCE AND JOSEPH V. BARBADOS HAVING SEEN The communication of the InterAmerican Commission on Human Rights hereinafter the InterAmerican Commission or the Commission of September in which the Commission submitted to the InterAmerican Court of Human Rights hereinafter the InterAmerican Court the Court or the in ", - "values": [ - "Medidas Provisionales" - ] - }, - { - "text": "VOTO RAZONADO DEL JUEZ AA. CAN\u00c7ADO TRINDADE He estado de acuerdo con mi voto con el dictado de la presente Sentencia de la Corte Interamericana de Derechos Humanos respecto del pedido de aclaratoria de la Sentencia reca\u00edda en el caso de la Comunidad Moiwana versus Surinam s\u00f3lo porque la Corte se ha mostrado deseosa de resolver las cuestiones presentadas por el Estado y los representantes de las v\u00edctimas y sus familias y porque no disiento con la breve aclaraci\u00f3n realizada por la Corte en el ", - "values": [ - "Voto Separado" - ] - }, - { - "text": "VOTO CONCURRENTE DE LA JUEZA CECILIA MEDINA Estoy de acuerdo con la decisi\u00f3n de la Corte de que se han violado los art\u00edculos y de la Convenci\u00f3n Americana todos ellos en relaci\u00f3n con el art\u00edculo de la misma y los art\u00edculos y de esa Convenci\u00f3n. Sin perjuicio de ello redacto este voto porque estimo que la Corte omiti\u00f3 declarar en la sentencia la violaci\u00f3n del art\u00edculo basada en la falta de cumplimiento por parte del Estado de su obligaci\u00f3n de investigar la privaci\u00f3n de las vidas como de la", - "values": [ - "Voto Separado" - ] - }, - { - "text": "VOTO RAZONADO DEL JUEZ AA. CAN\u00c7ADO TRINDADE Aproximadamente a\u00f1os despu\u00e9s de la decisi\u00f3n de la Corte Interamericana en el caso Aloeboetoe y otros vs. Surinam de fecha de diciembre de mi primer caso ante la Corte con una pena que ha sido cumplida de manera extraordinaria por el demandado un pa\u00eds joven golpeado por la pobreza material pero rico en cuanto a manifestaciones culturales la presente Sentencia de la Corte Interamericana de Derechos Humanos en el caso Comunidad Moiwana vs. Surinam ", - "values": [ - "Voto Separado" - ] - }, - { - "text": "VOTO DISIDENTE DE LOS JUECES PICADO SOTELA AGUIARARANGUREN Y CAN\u00c7ADO TRINDADE Los suscritos Jueces disentimos de la opini\u00f3n de mayor\u00eda en cuanto al punto resolutivo n\u00famero de la sentencia en el cual se desestima la responsabilidad del Estado demandado por violaci\u00f3n del derecho a la vida del se\u00f1or Asok Gangaram Panday. En nuestro criterio a partir del momento en que la Corte estableci\u00f3 aun por inferencia la responsabilidad del Estado demandado por detenci\u00f3n ilegal del se\u00f1or Gangaram Panday ", - "values": [ - "Voto Separado" - ] - }, - { - "text": "VOTO CONCURRENTE DEL JUEZ EDUARDO VIO GROSSI RESOLUCI\u00d3N DE LA CORTE INTERAMERICANA DE DERECHOS HUMANOS DEL DE NOVIEMBRE DE CASO DEL PUEBLO SARAMAKA VS. SURINAM SUPERVISI\u00d3N DE CUMPLIMIENTO DE SENTENCIA Introducci\u00f3n. Quien subscribe coincide en este Voto con la Resoluci\u00f3n indicada en el t\u00edtulo en adelante la Resoluci\u00f3n en el entendido que conforme a las normas pertinentes y a la luz del extensivo y por lo tanto imprudente o irrazonable tiempo transcurrido desde el dictado de la Sentencia en ", - "values": [ - "Voto Separado" - ] - }, - { - "text": "VOTO CONCURRENTE DEL JUEZ DIEGO GARC\u00cdASAY\u00c1N A LA RESOLUCI\u00d3N DE SUPERVISI\u00d3N DEL CUMPLIMIENTO CON LA SENTENCIA EN EL CASO DEL PUEBLO SARAMAKA VS. SURINAM DEL DE NOVIEMBRE DE La supervisi\u00f3n del cumplimiento de sus Sentencias es una de las facultades m\u00e1s importantes de la Corte Interamericana de Derechos Humanos para la protecci\u00f3n de los derechos humanos. La Corte Interamericana de Derechos Humanos en adelante la Corte Interamericana la Corte o el Tribunal ha ejercido esta facultad desde sus y", - "values": [ - "Voto Separado" - ] - }, - { - "text": "ORDER OF THE PRESIDENT OF THE INTERAMERICAN COURT OF HUMAN RIGHTS OF APRIL CASE OF THE SARAMAKA PEOPLE V. SURINAME MONITORING COMPLIANCE WITH JUDGMENT HAVING SEEN The Judgment on preliminary objections merits reparations and costs delivered by the InterAmerican Court of Human Rights hereinafter the InterAmerican Court the Court or the Tribunal on November in which it DECLARED Unanimously that the State violated to the detriment of the members of the Saramaka people the right to property ", - "values": [ - "Supervisi\u00f3n de cumplimiento de Sentencia" - ] - }, - { - "text": "ORDER OF THE INTERAMERICAN COURT OF HUMAN RIGHTS OF NOVEMBER CASE OF THE MOIWANA COMMUNITY V. SURINAME MONITORING COMPLIANCE WITH JUDGMENT HAVING SEEN The Judgment on preliminary objections merits reparations and costs delivered in the Case of the Moiwana Community v. Suriname by the InterAmerican Court of Human Rights hereinafter the Court the InterAmerican Court or the Tribunal on June hereinafter the Judgment or the Moiwana Judgment. The Judgment on Interpretation of the Moiwana the ", - "values": [ - "Supervisi\u00f3n de cumplimiento de Sentencia" - ] - }, - { - "text": "Order of the President of the InterAmerican Court of Human Rights of December Case of the Moiwana Village v. Suriname Monitoring Compliance with Judgment Having seen The Judgment on the preliminary objections merits reparations and costs delivered in the Case of the Moiwana Village v. Suriname by the InterAmerican Court of Human Rights hereinafter the Court or the Tribunal on June hereinafter the Judgment or the Moiwana Judgment in which it DECLARED Unanimously that The State violated the", - "values": [ - "Supervisi\u00f3n de cumplimiento de Sentencia" - ] - }, - { - "text": "RESOLUCI\u00d3N DE LA CORTE INTERAMERICANA DE DERECHOS HUMANOS DE DE MAYO DE CASO GOIBUR\u00da Y OTROS VS. PARAGUAY SUPERVISI\u00d3N DE CUMPLIMIENTO DE SENTENCIA VISTO La Sentencia de fondo reparaciones y costas en adelante la Sentencia dictada por la Corte Interamericana de Derechos Humanos en adelante la Corte Interamericana la Corte o el Tribunal el de septiembre de En dicho fallo la Corte tom\u00f3 en cuenta el reconocimiento de responsabilidad internacional efectuado por la Rep\u00fablica del Paraguay en ", - "values": [ - "Supervisi\u00f3n de cumplimiento de Sentencia" - ] - }, - { - "text": "Ordonnance de la Cour Interam\u00e9ricaine des Droits de lHomme du Novembre Affaire Yvon Neptune C. Ha\u00efti VU L\u00e9crit du d\u00e9cembre par lequel la Commission interam\u00e9ricaine des Droits de lHomme ciapr\u00e8s la Commission ou la Commission interam\u00e9ricaine a pr\u00e9sent\u00e9 une requ\u00eate contre l\u00c9tat dHa\u00efti ciapr\u00e8s l\u00c9tat ou Ha\u00efti devant la Cour interam\u00e9ricaine des Droits de lHomme ciapr\u00e8s la Cour la Cour interam\u00e9ricaine ou le Tribunal Les notes du Greffe de la Cour ciapr\u00e8s le Greffe du f\u00e9vrier ", - "values": [ - "Otros" - ] - }, - { - "text": "Voto concurrente del Juez de Roux Rengifo Creo tener razones adicionales a las planteadas en los considerandos de la resoluci\u00f3n que antecede para sustentar la decisi\u00f3n de mantener vigentes por lo menos dentro de un t\u00e9rmino razonable las medidas provisionales decretadas en relaci\u00f3n con Anthony Briggs. En el presente asunto la Corte se encuentra enfrentada a una situaci\u00f3n particular. Ha decretado unas medidas provisionales para impedir que se cause un perjuicio irreparable a una persona condenada", - "values": [ - "Voto Separado" - ] - }, - { - "text": "VOTO CONCURRENTE DEL JUEZ AA. CAN\u00c7ADO TRINDADE Voto a favor de la presente Resoluci\u00f3n de la Corte Interamericana de Derechos Humanos sobre Medidas Provisionales respecto de la Rep\u00fablica de Trinidad y Tobago. En las pocas horas de que dispuso la Corte para deliberar al respecto habiendo examinado todos los escritos sometidos a su consideraci\u00f3n hasta el presente entiendo que lleg\u00f3 a una decisi\u00f3n que contribuye a la realizaci\u00f3n del objeto y prop\u00f3sito de la Convenci\u00f3n Americana sobre Derechos en ", - "values": [ - "Voto Separado" - ] - }, - { - "text": "VOTO CONCURRENTE DEL JUEZ GARC\u00cdA RAM\u00cdREZ Estoy de acuerdo con los t\u00e9rminos de la Resoluci\u00f3n de la Corte para las medidas provisionales a las cuales este voto concurrente se refiere. Adem\u00e1s tomo nota de las declaraciones que constan en el expediente en el sentido de que el Estado de Trinidad y Tobago se encuentra bajo ciertos plazos establecidos judicialmente para ejecutar la pena capital el cual empieza en el momento en que la persona es condenada y sentenciada a muerte. Al respecto observo que", - "values": [ - "Voto Separado" - ] - }, - { - "text": "CORTE INTERAMERICANA DE DERECHOS HUMANOS CASO V\u00c9LEZ RESTREPO Y FAMILIARES VS. COLOMBIA SENTENCIA DE DE SEPTIEMBRE DE Excepci\u00f3n Preliminar Fondo Reparaciones y Costas En el caso V\u00e9lez Restrepo y familiares la Corte Interamericana de Derechos Humanos en adelante la Corte Interamericana la Corte o el Tribunal integrada por los siguientes jueces Diego Garc\u00edaSay\u00e1n Presidente Manuel E. Ventura Robles Vicepresidente Leonardo A. Franco Juez Rhadys Abreu Blondet Jueza Alberto P\u00e9rez P\u00e9rez Juez y Vio ", - "values": [ - "Excepciones Preliminares", - "Fondo", - "Reparaciones", - "Costas" - ] - }, - { - "text": "Corte Interamericana de Derechos Humanos Caso R\u00edos y otros vs. Venezuela Sentencia de de enero de Excepciones Preliminares Fondo Reparaciones y Costas En el caso R\u00edos y otros vs. Venezuela la Corte Interamericana de Derechos Humanos en adelante la Corte Interamericana la Corte o el Tribunal integrada por los siguientes jueces Cecilia Medina Quiroga Presidenta Sergio Garc\u00eda Ram\u00edrez Juez Manuel E. Ventura Robles Juez Leonardo A. Franco Juez Margarette May Macaulay Jueza Rhadys Abreu Blondet y", - "values": [ - "Costas", - "Excepciones Preliminares", - "Fondo", - "Reparaciones" - ] - }, - { - "text": "VOTO DISIDENTE DEL JUEZ adhoc PIER PAOLO PASCERI SCARAMUZZA. En el caso R\u00edos y otros vs. La Rep\u00fablica Bolivariana de Venezuela Data venia del criterio de la mayor\u00eda Pier Paolo Pasceri S Juez adhoc de la Corte Interamericana de Derechos Humanos lamenta salvar su voto por tener criterio contrario tanto en la motiva como en la dispositiva a excepci\u00f3n del punto de la parte resolutiva del fallo y por tanto disentir de la mayor\u00eda de los integrantes de esta Corte cuyos votos favorables aprobaron la ", - "values": [ - "Voto Separado" - ] - }, - { - "text": "VOTO INDIVIDUAL DISIDENTE DEL JUEZ EDUARDO VIO GROSSI CORTE INTERAMERICANA DE DERECHOS HUMANOS CASO G\u00d3MEZ MURILLO Y OTROS VS. COSTA RICA SENTENCIA DE DE NOVIEMBRE DE Introducci\u00f3n. Se emite el presente voto individual disidente respecto de la Sentencia del ep\u00edgrafe en atenci\u00f3n a que no se comparte lo resuelto en ella en orden a homologar el Acuerdo de arreglo amistoso suscrito entre el Estado de Costa Rica y la parte demandante suscrito por Costa Rica y el representante de las v\u00edctimas por ", - "values": [ - "Voto Separado" - ] - }, - { - "text": "RESOLUCI\u00d3N DE LA CORTE INTERAMERICANA DE DERECHOS HUMANOS DE DE AGOSTO DE CASO OMAR HUMBERTO MALDONADO VARGAS Y OTROS VS. CHILE SUPERVISI\u00d3N DE CUMPLIMIENTO DE SENTENCIA VISTO La Sentencia de fondo reparaciones y costas en adelante la Sentencia dictada por la Corte Interamericana de Derechos Humanos en adelante la Corte Interamericana la Corte o el Tribunal el de septiembre de La Corte declar\u00f3 la responsabilidad internacional de la Rep\u00fablica de Chile en adelante el Estado o Chile por la ", - "values": [ - "Supervisi\u00f3n de cumplimiento de Sentencia" - ] - }, - { - "text": "RESOLUCI\u00d3N DE LA CORTE INTERAMERICANA DE DERECHOS HUMANOS DE DE AGOSTO DE CASO DEFENSOR DE DERECHOS HUMANOS Y OTROS VS. GUATEMALA SUPERVISI\u00d3N DE CUMPLIMIENTO DE SENTENCIA VISTO La Sentencia de excepciones preliminares fondo reparaciones y costas en adelante la Sentencia dictada por la Corte Interamericana de Derechos Humanos en adelante la Corte la Corte Interamericana o el Tribunal el de agosto de La Corte declar\u00f3 responsable internacionalmente a la Rep\u00fablica de Guatemala en adelante el", - "values": [ - "Supervisi\u00f3n de cumplimiento de Sentencia" - ] - }, - { - "text": "RESOLUCI\u00d3N DE LA CORTE INTERAMERICANA DE DERECHOS HUMANOS DE DE AGOSTO DE SOLICITUD DE MEDIDAS PROVISIONALES RESPECTO DE LA REP\u00daBLICA DE COLOMBIA CASO GUTI\u00c9RREZ SOLER VISTO La Sentencia de fondo reparaciones y costas de de septiembre de mediante la cual la Corte Interamericana de Derechos Humanos en adelante tambi\u00e9n la Corte Interamericana la Corte o este Tribunal declar\u00f3 responsable internacionalmente a la Rep\u00fablica de Colombia en adelante el Estado o Colombia por la violaci\u00f3n de los a", - "values": [ - "Medidas Provisionales" - ] - }, - { - "text": "VOTO CONCURRENTE DEL JUEZ EDUARDO VIO GROSSI RESOLUCI\u00d3N DE LA CORTE INTERAMERICANA DE DERECHOS HUMANOS DE DE AGOSTO DE MEDIDAS PROVISIONALES RESPECTO DE LA REP\u00daBLICA DE COLOMBIA ASUNTO MERY NARANJO Y OTROS. Se concurre con este voto a la Resoluci\u00f3n del ep\u00edgrafe en atenci\u00f3n a que en el presente asunto por una parte las medidas provisionales se decretaron antes de que el Caso Yarce y Otras Vs. Colombia a cuyo expediente se integr\u00f3 el de aquellas fuese sometido a la Corte y por la otra parte a ", - "values": [ - "Voto Separado" - ] - }, - { - "text": "RESOLUCI\u00d3N DE LA CORTE INTERAMERICANA DE DERECHOS HUMANOS CASO FLOR FREIRE VS. ECUADOR DE DE AGOSTO DE VISTO La Sentencia de excepci\u00f3n preliminar fondo reparaciones y costas en adelante la Sentencia emitida por la Corte Interamericana de Derechos Humanos en adelante la Corte Interamericana la Corte o este Tribunal el de agosto de la cual fue notificada a las partes y a la Comisi\u00f3n Interamericana de Derechos Humanos en adelante la Comisi\u00f3n Interamericana o la Comisi\u00f3n el de noviembre del ", - "values": [ - "Otros" - ] - }, - { - "text": "RESOLUCI\u00d3N DE LA CORTE INTERAMERICANA DE DERECHOS HUMANOS DE AGOSTO DE MEDIDAS PROVISIONALES RESPECTO DE BRASIL ASUNTO DEL INSTITUTO PENAL PL\u00c1CIDO DE S\u00c1 CARVALHO VISTO La Resoluci\u00f3n emitida por la Corte Interamericana de Derechos Humanos en adelante la Corte Interamericana la Corte o el Tribunal el de febrero de en la cual entre otros se requiri\u00f3 a la Rep\u00fablica Federativa de Brasil en adelante Brasil o el Estado adoptar de forma inmediata todas las medidas que fueran necesarias para la ", - "values": [ - "Medidas Provisionales" - ] - }, - { - "text": "RESOLUCI\u00d3N DE LA CORTE INTERAMERICANA DE DERECHOS HUMANOS DE DE AGOSTO DE CASO V\u00c9LEZ RESTREPO Y FAMILIARES VS. COLOMBIA SUPERVISI\u00d3N DE CUMPLIMIENTO DE SENTENCIA VISTO La Sentencia de excepci\u00f3n preliminar fondo reparaciones y costas en adelante la Sentencia dictada por la Corte Interamericana de Derechos Humanos en adelante la Corte Interamericana la Corte o el Tribunal el de septiembre de En dicho fallo la Corte tom\u00f3 en cuenta el reconocimiento parcial de responsabilidad efectuado por la ", - "values": [ - "Supervisi\u00f3n de cumplimiento de Sentencia" - ] - }, - { - "text": "RESOLUCI\u00d3N DE LA CORTE INTERAMERICANA DE DERECHOS HUMANOS DE DE AGOSTO DE CASO GARRIDO Y BAIGORRIA VS. ARGENTINA SUPERVISI\u00d3N DE CUMPLIMIENTO DE SENTENCIA VISTO Las Sentencias de fondo en adelante la Sentencia y de reparaciones y costas en adelante la Sentencia de reparaciones dictadas por la Corte Interamericana de Derechos Humanos en adelante la Corte Interamericana la Corte o el Tribunal respectivamente los d\u00edas de febrero de y de agosto de En la Sentencia la Corte acept\u00f3 el de de ", - "values": [ - "Supervisi\u00f3n de cumplimiento de Sentencia" - ] - }, - { - "text": "RESOLUCI\u00d3N DE LA CORTE INTERAMERICANA DE DERECHOS HUMANOS DE DE AGOSTO DE CASO MALDONADO ORDO\u00d1EZ VS. GUATEMALA SUPERVISI\u00d3N DE CUMPLIMIENTO DE SENTENCIA VISTO La Sentencia de excepci\u00f3n preliminar fondo reparaciones y costas en adelante la Sentencia dictada por la Corte Interamericana de Derechos Humanos en adelante la Corte Interamericana la Corte o el Tribunal el de mayo de En dicho fallo la Corte encontr\u00f3 responsable internacionalmente a la Rep\u00fablica de Guatemala en adelante el Estado o ", - "values": [ - "Supervisi\u00f3n de cumplimiento de Sentencia" - ] - }, - { - "text": "CORTE INTERAMERICANA DE DERECHOS HUMANOS CASO GUTI\u00c9RREZ HERN\u00c1NDEZ Y OTROS VS. GUATEMALA SENTENCIA DE DE AGOSTO DE Excepciones Preliminares Fondo Reparaciones y Costas En el caso Guti\u00e9rrez Hern\u00e1ndez y otros la Corte Interamericana de Derechos Humanos en adelante la Corte Interamericana la Corte o el Tribunal integrada por los siguientes jueces Eduardo Ferrer MacGregor Poisot Presidente en ejercicio Eduardo Vio Grossi Juez Humberto Antonio Sierra Porto Juez Elizabeth Odio Benito Jueza Eugenio ", - "values": [ - "Costas", - "Excepciones Preliminares", - "Fondo", - "Reparaciones" - ] - }, - { - "text": "VOTO PARCIALMENTE DISIDENTE DEL JUEZ EDUARDO VIO GROSSI CORTE INTERAMERICANA DE DERECHOS HUMANOS CASO LAGOS DEL CAMPO VS. PER\u00da SENTENCIA DE DE AGOSTO DE Excepciones Preliminares Fondo Reparaciones y Costas INTRODUCCI\u00d3N. Se emite el presente voto parcialmente disidente respecto de la Sentencia del ep\u00edgrafe por discrepar respecto de la referencia que hace al art\u00edculo de la Convenci\u00f3n Americana sobre Derechos Humanos como fundamento de sus Resolutivos N y por los que se declara que el Estado", - "values": [ - "Voto Separado" - ] - }, - { - "text": "VOTO PARCIALMENTE DISIDENTE DEL JUEZ HUMBERTO ANTONIO SIERRA PORTO SENTENCIA DE LA CORTE INTERAMERICANA DE DERECHOS HUMANOS CASO LAGOS DEL CAMPO VS. PER\u00da SENTENCIA DE DE AGOSTO DE Excepciones Preliminares Fondo Reparaciones y Costas Con el acostumbrado respeto por las decisiones de la Corte me permito formular a continuaci\u00f3n el presente voto parcialmente disidente en el caso de la referencia. Para efectos del desarrollo de esta posici\u00f3n seguiremos el siguiente orden A. INTRODUCCI\u00d3N El voto ", - "values": [ - "Voto Separado" - ] - }, - { - "text": "VOTO CONCURRENTE DEL JUEZ EDUARDO FERRER MACGREGOR POISOT CASO LAGOS DEL CAMPO VS. PER\u00da SENTENCIA DE DE AGOSTO DE EXCEPCIONES PRELIMINARES FONDO REPARACIONES Y COSTAS LA JUSTICIABILIDAD DIRECTA DE LOS DERECHOS ECON\u00d3MICOS SOCIALES CULTURALES Y AMBIENTALES UNA NUEVA ETAPA EN LA JURISPRUDENCIA INTERAMERICANA El caso Lagos del Campos Vs. Per\u00fa abre un nuevo y rico horizonte en el Sistema Interamericano de Derechos Humanos. Lo anterior debido a la interpretaci\u00f3n evolutiva que la Corte de Derechos", - "values": [ - "Voto Separado" - ] - }, - { - "text": "VOTO RAZONADO DEL JUEZ ROBERTO F. CALDAS CORTE INTERAMERICANA DE DERECHOS HUMANOS CASO LAGOS DEL CAMPO VS. PERU SENTENCIA DE DE AGOSTO DE Excepciones Preliminares Fondo Reparaciones y Costas I. Introducci\u00f3n y relevancia de la Sentencia Esta es una decisi\u00f3n hist\u00f3rica que representa un gran paso jurisprudencial. Si bien un demorado trayecto pero debidamente estudiado reflexionado ponderado y trabajado a lo largo de muchos a\u00f1os sobre la justiciabilidad de los Derechos Econ\u00f3micos Sociales y en", - "values": [ - "Voto Separado" - ] - }, - { - "text": "RESOLUCI\u00d3N DE LA CORTE INTERAMERICANA DE DERECHOS HUMANOS DE DE NOVIEMBRE DE SOLICITUD DE MEDIDAS PROVISIONALES RESPECTO DE ARGENTINA ASUNTO MILAGRO SALA VISTO El escrito de de noviembre de y sus anexos mediante los cuales la Comisi\u00f3n Interamericana de Derechos Humanos en adelante la Comisi\u00f3n Interamericana o la Comisi\u00f3n someti\u00f3 a la Corte Interamericana de Derechos Humanos en adelante la Corte Interamericana la Corte o este Tribunal una solicitud de medidas provisionales de conformidad ", - "values": [ - "Medidas Provisionales" - ] - }, - { - "text": "RESOLUCI\u00d3N DE LA CORTE INTERAMERICANA DE DERECHOS HUMANOS DE DE NOVIEMBRE DE MEDIDAS PROVISIONALES RESPECTO DE COLOMBIA ASUNTO DANILO RUEDA VISTO La Resoluci\u00f3n de la Corte Interamericana de Derechos Humanos en adelante la Corte Interamericana la Corte o el Tribunal de de mayo de mediante la cual resolvi\u00f3 Ratificar en todos sus t\u00e9rminos la Resoluci\u00f3n del Presidente en ejercicio de la Corte Interamericana de Derechos Humanos de de mayo de y por consiguiente requerir al Estado que las ", - "values": [ - "Medidas Provisionales" - ] - }, - { - "text": "VOTO DISIDENTE DEL JUEZ EDUARDO VIO GROSSI RESOLUCI\u00d3N DE LA CORTE INTERAMERICANA DE DERECHOS HUMANOS DE DE NOVIEMBRE DE MEDIDAS PROVISIONALES CASO TORRES MILLACURA Y OTROS VS. ARGENTINA. Por el presente texto se reitera lo expuesto en el Voto Disidente del Juez Eduardo Vio Grossi Resoluci\u00f3n de la Corte Interamericana de Derechos Humanos de de Junio Caso Torres Millacura y Otros Solicitud de Medidas Provisionales respecto de la Rep\u00fablica Argentina el que por ende se da por reproducido. Vio", - "values": [ - "Voto Separado" - ] - }, - { - "text": "RESOLUCI\u00d3N DEL PRESIDENTE EN EJERCICIO DE LA CORTE INTERAMERICANA DE DERECHOS HUMANOS DE DE DICIEMBRE DE CASO ISAZA URIBE Y OTROS VS. COLOMBIA CONVOCATORIA A AUDIENCIA VISTO El escrito de sometimiento del caso y el Informe de Fondo de la Comisi\u00f3n Interamericana de Derechos Humanos en adelante la Comisi\u00f3n Interamericana o la Comisi\u00f3n el escrito de solicitudes argumentos y pruebas en adelante el escrito de solicitudes y argumentos de los representantes en adelante los representantes el de ", - "values": [ - "Otros" - ] - }, - { - "text": "VOTO CONCURRENTE DEL JUEZ EDUARDO FERRER MACGREGOR POISOT CASO VEREDA LA ESPERANZA VS. COLOMBIA SENTENCIA DE DE AGOSTO DE EXCEPCI\u00d3N PRELIMINAR FONDO REPARACIONES Y COSTAS INTRODUCCI\u00d3N LA JUSTICIABILIDAD DIRECTA DEL DERECHO A LA VIVIENDA Y SU AUTONOM\u00cdA RESPECTO DE OTROS DERECHOS Concurro esencialmente con lo decidido en la Sentencia. Sin embargo emito el presente voto para expresar las razones por las cuales considero que la Corte Interamericana de Derechos Humanos en adelante Corte IDH o ", - "values": [ - "Voto Separado" - ] - }, - { - "text": "VOTO INDIVIDUAL DEL JUEZ EDUARDO VIO GROSSI CORTE INTERAMERICANA DE DERECHOS HUMANOS CASO TRABAJADORES CESADOS DE PETROPER\u00da Y OTROS VS. PER\u00da SENTENCIA DE DE NOVIEMBRE DE Excepciones Preliminares Fondo Reparaciones y Costas INTRODUCCI\u00d3N. Se expide el presente voto individual respecto de la referencia que la Sentencia del ep\u00edgrafe hace al art\u00edculo de la Convenci\u00f3n Americana sobre Derechos Humanos. Y tal como en otras ocasiones este voto se emite respetando la Sentencia de la Corte de a ", - "values": [ - "Voto Separado" - ] - }, - { - "text": "VOTO PARCIALMENTE DISIDENTE DEL JUEZ HUMBERTO ANTONIO SIERRA PORTO A LA SENTENCIA DE DE NOVIEMBRE DE DE LA CORTE INTERAMERICANA DE DERECHOS HUMANOS EN EL CASO DE TRABAJADORES CESADOS DE PETROPER\u00da Y OTROS VS. PER\u00da I. Introducci\u00f3n Con el acostumbrado respeto por las decisiones de la Corte y precisando que comparto en su mayor\u00eda las consideraciones que sustentan la Sentencia me permito formular el presente voto parcialmente disidente. El voto tiene dos partes la primera se refiere al que la ", - "values": [ - "Voto Separado" - ] - }, - { - "text": "RESOLUCI\u00d3N DE LA CORTE INTERAMERICANA DE DERECHOS HUMANOS DE NOVIEMBRE DE CASO CANTOS VS. ARGENTINA SUPERVISI\u00d3N DE CUMPLIMIENTO DE SENTENCIA VISTO La Sentencia de fondo reparaciones y costas en adelante la Sentencia o el Fallo dictada por la Corte Interamericana de Derechos Humanos en adelante la Corte la Corte Interamericana o el Tribunal el de noviembre de El Tribunal declar\u00f3 responsable internacionalmente a la Rep\u00fablica Argentina en adelante el Estado o Argentina por la violaci\u00f3n del ", - "values": [ - "Supervisi\u00f3n de cumplimiento de Sentencia" - ] - }, - { - "text": "RESOLUCI\u00d3N DE LA CORTE INTERAMERICANA DE DERECHOS HUMANOS DE DE NOVIEMBRE DE CASO GARC\u00cdA IBARRA Y OTROS VS. ECUADOR SUPERVISI\u00d3N DE CUMPLIMIENTO DE SENTENCIA VISTO La Sentencia de excepciones preliminares fondo reparaciones y costas en adelante la Sentencia dictada por la Corte Interamericana de Derechos Humanos en adelante la Corte Interamericana la Corte o el Tribunal el de noviembre de La Corte declar\u00f3 la responsabilidad internacional de la Rep\u00fablica del Ecuador en adelante el Estado o ", - "values": [ - "Supervisi\u00f3n de cumplimiento de Sentencia" - ] - }, - { - "text": "RESOLUCI\u00d3N DE LA CORTE INTERAMERICANA DE DERECHOS HUMANOS DE DE NOVIEMBRE DE CASO HELIODORO PORTUGAL VS. PANAM\u00c1 SUPERVISI\u00d3N DE CUMPLIMIENTO DE SENTENCIA VISTO La Sentencia de excepciones preliminares fondo reparaciones y costas en adelante la Sentencia dictada por la Corte Interamericana de Derechos Humanos en adelante la Corte Interamericana la Corte o el Tribunal el de agosto de La Corte declar\u00f3 la responsabilidad internacional de la Rep\u00fablica de Panam\u00e1 en adelante el Estado o Panam\u00e1 ", - "values": [ - "Supervisi\u00f3n de cumplimiento de Sentencia" - ] - }, - { - "text": "VOTO RAZONADO DEL JUEZ EDUARDO FERRER MACGREGOR POISOT A LA RESOLUCI\u00d3N DE LA CORTE INTERAMERICANA DE DERECHOS HUMANOS DE DE MARZO DE SUPERVISI\u00d3N DE CUMPLIMIENTO DE SENTENCIA EN EL CASO GELMAN VS. URUGUAY I. INTRODUCCI\u00d3N IMPORTANCIA DE LA PRESENTE RESOLUCI\u00d3N DE SUPERVISI\u00d3N DE CUMPLIMIENTO DE SENTENCIA Una de las competencias m\u00e1s importantes que actualmente ejerce la Corte Interamericana de Derechos Humanos en adelante Corte IDH o Tribunal Interamericano es la supervisi\u00f3n sobre el cumplimiento", - "values": [ - "Voto Separado" - ] - }, - { - "text": "RESOLUCI\u00d3N DEL PRESIDENTE DE LA CORTE INTERAMERICANA DE DERECHOS HUMANOS DE DE ENERO DE CASO ISAZA URIBE Y OTROS VS. COLOMBIA VISTO La Resoluci\u00f3n del Presidente de la Corte en adelante el Presidente de de diciembre de mediante la cual se requiri\u00f3 la declaraci\u00f3n de presuntas v\u00edctimas testigos y peritos y se convoc\u00f3 a audiencia p\u00fablica. El escrito de de diciembre de mediante el cual el Estado de Colombia en adelante Colombia o el Estado solicit\u00f3 una reconsideraci\u00f3n de la referida as\u00ed ", - "values": [ - "Otros" - ] - }, - { - "text": "VOTO DISIDENTE DEL JUEZ HUMBERTO ANTONIO SIERRA PORTO RESOLUCI\u00d3N DE LA CORTE INTERAMERICANA DE DERECHOS HUMANOS DE DE FEBRERO DE SOLICITUD DE MEDIDAS PROVISIONALES CASO DURAND Y UGARTE VS. PER\u00da Con el acostumbrado respeto por las decisiones de la Corte me permito formular a continuaci\u00f3n el presente voto disidente de la resoluci\u00f3n mediante la cual se Ratifica la Resoluci\u00f3n del Presidente de la Corte Interamericana de Derechos Humanos de de diciembre de y requerir al Estado del Per\u00fa que para", - "values": [ - "Voto Separado" - ] - }, - { - "text": "RESOLUCI\u00d3N DE LA CORTE INTERAMERICANA DE DERECHOS HUMANOS DE DE FEBRERO DE ADOPCI\u00d3N DE MEDIDAS PROVISIONALES CASO COC MAX Y OTROS VS. GUATEMALA VISTO El escrito de de septiembre de por medio del cuales la Comisi\u00f3n Interamericana de Derechos Humanos en adelante tambi\u00e9n la Comisi\u00f3n o Comisi\u00f3n Interamericana mediante la remisi\u00f3n del y el Informe de Admisibilidad y Fondo No de de junio de someti\u00f3 el caso Coc Max y otros vs. Guatemala a la Corte Interamericana de Derechos Humanos en adelante", - "values": [ - "Medidas Provisionales" - ] - }, - { - "text": "RESOLUCI\u00d3N DEL PRESIDENTE DE LA CORTE INTERAMERICANA DE DERECHOS HUMANOS DE DE FEBRERO DE FONDO DE ASISTENCIA LEGAL DE V\u00cdCTIMAS CASO \u00c1LVAREZ RAMOS VS. VENEZUELA VISTO El escrito de de julio de y sus anexos mediante los cuales la Comisi\u00f3n Interamericana de Derechos Humanos en adelante la Comisi\u00f3n Interamericana o la Comisi\u00f3n someti\u00f3 ante la Corte Interamericana de Derechos Humanos en adelante la Corte Interamericana la Corte o el Tribunal el presente caso. El escrito de de octubre de el", - "values": [ - "Fondo de asistencia a v\u00edctimas" - ] - }, - { - "text": "RESOLUCI\u00d3N DE LA CORTE INTERAMERICANA DE DERECHOS HUMANOS DE DE FEBRERO DE SOLICITUD DE MEDIDAS PROVISIONALES RESPECTO DE ECUADOR ASUNTO EDWIN LEONARDO JARR\u00cdN JARR\u00cdN TANIA ELIZABETH PAUKER CUEVA Y SONIA GABRIELA VERA GARC\u00cdA VISTO El escrito de de febrero de y sus anexos mediante los cuales la Comisi\u00f3n Interamericana de Derechos Humanos en adelante la Comisi\u00f3n la Comisi\u00f3n Interamericana o la CIDH someti\u00f3 a la Corte Interamericana de Derechos Humanos en adelante la Corte Interamericana o la ", - "values": [ - "Medidas Provisionales" - ] - }, - { - "text": "RESOLUCI\u00d3N DE LA CORTE INTERAMERICANA DE DERECHOS HUMANOS DE DE FEBRERO DE CASO ANDRADE SALM\u00d3N VS. BOLIVIA SUPERVISI\u00d3N DE CUMPLIMIENTO DE SENTENCIA VISTO La Sentencia de fondo reparaciones y costas dictada por la Corte Interamericana de Derechos Humanos en adelante la Corte la Corte Interamericana o el Tribunal el de diciembre de En dicha Sentencia la Corte declar\u00f3 la responsabilidad internacional del Estado Plurinacional de Bolivia en adelante el Estado o Bolivia por las violaciones al ", - "values": [ - "Supervisi\u00f3n de cumplimiento de Sentencia" - ] - }, - { - "text": "RESOLUCI\u00d3N DEL PRESIDENTE DE LA CORTE INTERAMERICANA DE DERECHOS HUMANOS DE DE FEBRERO DE CASO TERRONES Y OTROS VS. PER\u00da CONVOCATORIA A AUDIENCIA VISTO El escrito de sometimiento del caso y el Informe de Fondo de la Comisi\u00f3n Interamericana de Derechos Humanos en adelante la Comisi\u00f3n Interamericana o la Comisi\u00f3n el escrito de solicitudes argumentos y pruebas en adelante el escrito de solicitudes y argumentos de los representantes de las v\u00edctimas en adelante los representantes el escrito de ", - "values": [ - "Otros" - ] - }, - { - "text": "RESOLUCI\u00d3N DEL PRESIDENTE DE LA CORTE INTERAMERICANA DE DERECHOS HUMANOS DE DE FEBRERO DE FONDO DE ASISTENCIA LEGAL DE V\u00cdCTIMAS CASO MUN\u00c1RRIZ ESCOBAR Y OTROS VS. PER\u00da VISTO El escrito de de junio de y sus anexos mediante los cuales la Comisi\u00f3n Interamericana de Derechos Humanos en adelante la Comisi\u00f3n Interamericana o la Comisi\u00f3n someti\u00f3 ante la Corte Interamericana de Derechos Humanos en adelante la Corte Interamericana la Corte o el Tribunal el presente caso. El escrito de de octubre ", - "values": [ - "Fondo de asistencia a v\u00edctimas" - ] - }, - { - "text": "RESOLUCI\u00d3N DE LA CORTE INTERAMERICANA DE DERECHOS HUMANOS DE DE MARZO DE MEDIDAS PROVISIONALES RESPECTO DE BRASIL ASUNTO DEL COMPLEJO PENITENCIARIO DE PEDRINHAS VISTO La Resoluci\u00f3n emitida por la Corte Interamericana de Derechos Humanos en adelante la Corte Interamericana la Corte o el Tribunal el de noviembre de Entre otros se requiri\u00f3 a la Rep\u00fablica Federativa de Brasil en adelante Brasil o el Estado adoptar de forma inmediata todas las medidas que fueran necesarias para proteger la y", - "values": [ - "Medidas Provisionales" - ] - }, - { - "text": "VOTO DISIDENTE DEL JUEZ EDUARDO VIO GROSSI RESOLUCI\u00d3N DE LA CORTE INTERAMERICANA DE DERECHOS HUMANOS DE DE FEBRERO DE MEDIDAS PROVISIONALES RESPECTO DEL PER\u00da CASO DURAND Y UGARTE VS. PER\u00da. INTRODUCCI\u00d3N. Objeto. Las razones por las que se emite el presente voto disidente a la Resoluci\u00f3n del ep\u00edgrafe se formulan teniendo muy presente la importancia y respeto que para una instancia como la Corte Interamericana de Derechos Humanos revisten y deben tener la independencia y la imparcialidad ", - "values": [ - "Voto Separado" - ] - }, - { - "text": "VOTO RAZONADO EN EL CASO DE LOS LONKOS DIRIGENTES Y ACTIVISTAS DEL PUEBLO INDIGENA MAPUCHE PAULO SERGIO PINHEIRO Con el acostumbrado respeto manifiesto que comparto el sentido y la orientaci\u00f3n del informe de fondo aprobado por la CIDH pero considero que es necesario hacer referencia expresa a un tema que se encuentra en la realidad chilena actual directamente asociado al de la aplicaci\u00f3n de la legislaci\u00f3n antiterrorista contra miembros del pueblo ind\u00edgena Mapuche como lo es el de la de los ", - "values": [ - "Voto Separado" - ] - }, - { - "text": "RESOLUCI\u00d3N DEL PRESIDENTE DE LA CORTE INTERAMERICANA DE DERECHOS HUMANOS DE DE JUNIO DE CASO \u00c1LVAREZ RAMOS VS. VENEZUELA VISTO El escrito de sometimiento del caso y el Informe de Fondo de la Comisi\u00f3n Interamericana de Derechos Humanos en adelante la Comisi\u00f3n Interamericana o la Comisi\u00f3n el escrito de solicitudes argumentos y pruebas en adelante el escrito de solicitudes y argumentos de los representantes de la presunta v\u00edctima en adelante los representantes el escrito de contestaci\u00f3n al del", - "values": [ - "Otros" - ] - }, - { - "text": "RESOLUCI\u00d3N DE LA CORTE INTERAMERICANA DE DERECHOS HUMANOS DE DE MAYO DE REINTEGRO AL FONDO DE ASISTENCIA LEGAL DE V\u00cdCTIMAS CASO ARG\u00dcELLES Y OTROS VS. ARGENTINA VISTO La Sentencia de excepciones preliminares fondo reparaciones y costas en adelante la Sentencia o el Fallo dictada por la Corte Interamericana de Derechos Humanos en adelante la Corte la Corte Interamericana o el Tribunal el de noviembre de La Corte declar\u00f3 la responsabilidad internacional de la Rep\u00fablica Argentina en adelante ", - "values": [ - "Fondo de asistencia a v\u00edctimas" - ] - }, - { - "text": "RESOLUCI\u00d3N DE LA CORTE INTERAMERICANA DE DERECHOS HUMANOS DE DE MAYO DE CASO CINCO PENSIONISTAS VS. PER\u00da SUPERVISI\u00d3N DE CUMPLIMIENTO DE SENTENCIA VISTOS La Sentencia de fondo reparaciones y costas en adelante la Sentencia emitida en el presente caso por la Corte Interamericana de Derechos Humanos en adelante la Corte Interamericana la Corte o el Tribunal el de febrero de mediante la cual la Corte declar\u00f3 que la Rep\u00fablica del Per\u00fa en adelante el Per\u00fa o el Estado viol\u00f3 los derechos a la y ", - "values": [ - "Supervisi\u00f3n de cumplimiento de Sentencia" - ] - }, - { - "text": "RESOLUCI\u00d3N DE LA CORTE INTERAMERICANA DE DERECHOS HUMANOS DE DE MAYO DE CASO BARRIOS ALTOS Y CASO LA CANTUTA VS. PER\u00da SUPERVISI\u00d3N DE CUMPLIMIENTO DE SENTENCIA OBLIGACI\u00d3N DE INVESTIGAR JUZGAR Y DE SER EL CASO SANCIONAR VISTO La Sentencia de fondo y la Sentencia de fondo reparaciones y costas dictadas por la Corte Interamericana de Derechos Humanos en adelante la Corte Interamericana la Corte o el Tribunal en el caso Barrios Altos y el caso La Cantuta ambos contra la Rep\u00fablica del Per\u00fa en el ", - "values": [ - "Supervisi\u00f3n de cumplimiento de Sentencia" - ] - }, - { - "text": "VOTO CONCURRENTE DEL JUEZ HUMBERTO ANTONIO SIERRA PORTO A LA SENTENCIA DE DE MARZO DE DE LA CORTE INTERAMERICANA DE DERECHOS HUMANOS EN EL CASO DE POBLETE VILCHES Y OTROS VS. CHILE I. Introducci\u00f3n Con el acostumbrado respeto por las decisiones de la Corte Interamericana de Derechos Humanos en adelante tambi\u00e9n la Corte o el Tribunal me permito formular el presente voto concurrente. El voto se centra en el an\u00e1lisis de fondo que realiz\u00f3 la Corte acerca de la responsabilidad internacional del ", - "values": [ - "Voto Separado" - ] - }, - { - "text": "VOTO PARCIALMENTE DISIDENTE COMISIONADO Jos\u00e9 de Jes\u00fas Orozco Con pleno reconocimiento al alto profesionalismo de mis colegas sirva el presente voto para expresar los motivos de mi disenso en la conclusi\u00f3n de la mayor\u00eda del pleno de la Ilustre Comisi\u00f3n Interamericana de Derechos Humanos CIDH en el caso Liakat Ali Alibux exclusivamente en cuanto a la decisi\u00f3n de considerar violado al art\u00edculo \u00ba de la Convenci\u00f3n Americana en conformidad con lo que establecen los p\u00e1rrafos y de este informe de ", - "values": [ - "Voto Separado" - ] - }, - { - "text": "CORTE INTERAMERICANA DE DERECHOS HUMANOS CASO CARVAJAL CARVAJAL Y OTROS VS. COLOMBIA SENTENCIA DE DE MARZO DE Fondo Reparaciones y Costas En el Caso Carvajal Carvajal y Otros vs. Colombia la Corte Interamericana de Derechos Humanos en adelante la Corte Interamericana la Corte o el Tribunal integrada por los siguientes Jueces Eduardo Ferrer MacGregor Poisot Presidente Eduardo Vio Grossi Vicepresidente Elizabeth Odio Benito Jueza Eugenio Ra\u00fal Zaffaroni Juez y L. Patricio Pazmi\u00f1o Freire Juez ", - "values": [ - "Fondo", - "Reparaciones", - "Costas" - ] - }, - { - "text": "RESOLUCI\u00d3N DE LA CORTE INTERAMERICANA DE DERECHOS HUMANOS DE DE MAYO DE REINTEGRO AL FONDO DE ASISTENCIA LEGAL DE V\u00cdCTIMAS CASOS POLLO RIVERA Y OTROS Y LAGOS DEL CAMPO VS. PER\u00da VISTO Las Sentencias emitidas por la Corte Interamericana de Derechos Humanos en adelante la Corte la Corte Interamericana o el Tribunal el de octubre de en el caso Pollo Rivera y otros y el de agosto de en el caso Lagos del Campo en adelante los dos casos ambas contra la Rep\u00fablica del Per\u00fa en adelante el Estado o", - "values": [ - "Fondo de asistencia a v\u00edctimas" - ] - }, - { - "text": "RESOLUCI\u00d3N DEL PRESIDENTE DE LA CORTE INTERAMERICANA DE DERECHOS HUMANOS DE DE JULIO DE CASO RICO VS. ARGENTINA CONVOCATORIA A AUDIENCIA VISTO El escrito de sometimiento del caso y el Informe de Fondo de la Comisi\u00f3n Interamericana de Derechos Humanos en adelante la Comisi\u00f3n Interamericana o la Comisi\u00f3n el escrito de solicitudes argumentos y pruebas en adelante el escrito de solicitudes y argumentos de los representantes de las presuntas v\u00edctimas en adelante los representantes y el escrito de", - "values": [ - "Otros" - ] - }, - { - "text": "VOTO INDIVIDUAL DEL JUEZ EDUARDO VIO GROSSI CORTE INTERAMERICANA DE DERECHOS HUMANOS CASO AMRHEIN Y OTROS VS. COSTA RICA SENTENCIA DE DE ABRIL DE Excepciones Preliminares Fondo Reparaciones y Costas Introducci\u00f3n. Conforme a lo dispuesto en la correspondiente norma aplicable en el presente voto individual relativo a la Sentencia del ep\u00edgrafe la que consta de Puntos Resolutivos se da cuenta de tan solo de los de ellos en que no se concuerda con lo decidido en el presente caso. Obviamente ", - "values": [ - "Voto Separado" - ] - }, - { - "text": "RESOLUCI\u00d3N DEL PRESIDENTE DE LA CORTE INTERAMERICANA DE DERECHOS HUMANOS DE DE SEPTIEMBRE DE FONDO DE ASISTENCIA LEGAL DE V\u00cdCTIMAS CASO D\u00cdAZ LORETO Y OTROS VS. VENEZUELA VISTO El escrito de de diciembre de y sus anexos recibidos el de enero de mediante los cuales la Comisi\u00f3n Interamericana de Derechos Humanos en adelante la Comisi\u00f3n Interamericana o la Comisi\u00f3n someti\u00f3 ante la Corte Interamericana de Derechos Humanos en adelante la Corte Interamericana la Corte o el Tribunal el presente ", - "values": [ - "Fondo de asistencia a v\u00edctimas" - ] - }, - { - "text": "RESOLUCI\u00d3N DEL PRESIDENTE DE LA CORTE INTERAMERICANA DE DERECHOS HUMANOS DE DE AGOSTO DE CASO \u00c1LVAREZ RAMOS VS. VENEZUELA VISTO La Resoluci\u00f3n del Presidente de la Corte Interamericana de Derechos Humanos en adelante la Corte o el Tribunal de de junio de en adelante Resoluci\u00f3n del Presidente a trav\u00e9s de la cual entre otros orden\u00f3 la recepci\u00f3n de diversas declaraciones de presuntas v\u00edctimas testigos y peritos en audiencia y a trav\u00e9s de affid\u00e1vit y convoc\u00f3 al Estado de Venezuela en adelante ", - "values": [ - "Otros" - ] - }, - { - "text": "RESOLUCI\u00d3N DE LA CORTE INTERAMERICANA DE DERECHOS HUMANOS DE DE AGOSTO DE MEDIDAS PROVISIONALES RESPECTO DE LA REP\u00daBLICA BOLIVARIANA DE VENEZUELA ASUNTO LUISIANA R\u00cdOS Y OTROS VISTO La Resoluci\u00f3n dictada por la Corte Interamericana de Derechos Humanos en adelante la Corte o el Tribunal el de noviembre de mediante la cual orden\u00f3 a la Rep\u00fablica Bolivariana de Venezuela en adelante Estado o Venezuela a solicitud de la Comisi\u00f3n Interamericana de Derechos Humanos en adelante la Comisi\u00f3n o la ", - "values": [ - "Medidas Provisionales" - ] - }, - { - "text": "CORTE INTERAMERICANA DE DERECHOS HUMANOS CASO GUTI\u00c9RREZ HERN\u00c1NDEZ Y OTROS VS. GUATEMALA SENTENCIA DE DE AGOSTO DE Interpretaci\u00f3n de Sentencia de Excepciones Preliminares Fondo Reparaciones y Costas En el caso Guti\u00e9rrez Hern\u00e1ndez y otros Vs. Guatemala la Corte Interamericana de Derechos Humanos en adelante la Corte Interamericana la Corte o el Tribunal integrada por los siguientes Jueces Eduardo Ferrer MacGregor Poisot Presidente Humberto Antonio Sierra Porto Juez Elizabeth Odio Benito Jueza ", - "values": [ - "Interpretaci\u00f3n" - ] - }, - { - "text": "RESOLUCI\u00d3N DEL PRESIDENTE DE LA CORTE INTERAMERICANA DE DERECHOS HUMANOS DE DE AGOSTO DE SOLICITUD DE MEDIDAS PROVISIONALES RESPECTO DE LA REP\u00daBLICA ARGENTINA CASO ROMERO FERIS VS. ARGENTINA VISTO El escrito de sometimiento del caso de de junio de mediante el cual la Comisi\u00f3n Interamericana de Derechos Humanos en adelante la Comisi\u00f3n Interamericana o la Comisi\u00f3n present\u00f3 a la Corte Interamericana de Derechos Humanos en adelante la Corte o el Tribunal el Caso Romero Feris Vs. Argentina. El", - "values": [ - "Medidas Provisionales" - ] - }, - { - "text": "RESOLUCI\u00d3N DE LA CORTE INTERAMERICANA DE DERECHOS HUMANOS DE DE MAYO DE REINTEGRO AL FONDO DE ASISTENCIA LEGAL DE V\u00cdCTIMAS CASOS POLLO RIVERA Y OTROS Y LAGOS DEL CAMPO VS. PER\u00da VISTO Las Sentencias emitidas por la Corte Interamericana de Derechos Humanos en adelante la Corte la Corte Interamericana o el Tribunal el de octubre de en el caso Pollo Rivera y otros y el de agosto de en el caso Lagos del Campo en adelante los dos casos ambas contra la Rep\u00fablica del Per\u00fa en adelante el Estado o", - "values": [ - "Fondo de asistencia a v\u00edctimas" - ] - }, - { - "text": "RESOLUCI\u00d3N DEL PRESIDENTE DE LA CORTE INTERAMERICANA DE DERECHOS HUMANOS DE DE MARZO DE CASO IBSEN C\u00c1RDENAS E IBSEN PE\u00d1A Vs. BOLIVIA VISTOS El escrito de demanda presentado por la Comisi\u00f3n Interamericana de Derechos Humanos en adelante la Comisi\u00f3n Interamericana o la Comisi\u00f3n ante la Corte Interamericana de Derechos Humanos en adelante la Corte Interamericana la Corte o el Tribunal el de mayo de mediante el cual ofreci\u00f3 cinco declaraciones testimoniales y dos dict\u00e1menes periciales. De los ", - "values": [ - "Otros" - ] - }, - { - "text": "RESOLUCI\u00d3N DE LA CORTE INTERAMERICANA DE DERECHOS HUMANOS DE DE SEPTIEMBRE DE CASO GUTI\u00c9RREZ HERN\u00c1NDEZ Y OTROS VS. GUATEMALA SUPERVISI\u00d3N DE CUMPLIMIENTO DE SENTENCIA VISTO La Sentencia de excepciones preliminares fondo reparaciones y costas dictada por la Corte Interamericana de Derechos Humanos en adelante la Corte la Corte Interamericana o el Tribunal el de agosto de En dicha Sentencia la Corte declar\u00f3 la responsabilidad internacional del Estado de Guatemala en adelante el Estado o en", - "values": [ - "Supervisi\u00f3n de cumplimiento de Sentencia" - ] - }, - { - "text": "RESOLUCI\u00d3N DE LA CORTE INTERAMERICANA DE DERECHOS HUMANOS DE DE SEPTIEMRE DE MEDIDAS PROVISIONALES RESPECTO DE EL SALVADOR ASUNTO MEL\u00c9NDEZ QUIJANO Y OTROS VISTO Las Resoluciones de la Corte Interamericana de Derechos Humanos en adelante tambi\u00e9n la Corte o el Tribunal emitidas los d\u00edas de marzo de de mayo de de noviembre de de febrero de de agosto de de octubre de y de abril y de junio de En esta \u00faltima la Corte resolvi\u00f3 inter alia Restablecer las medidas provisionales a favor", - "values": [ - "Medidas Provisionales" - ] - }, - { - "text": "VOTO CONCURRENTE DEL JUEZ EDUARDO VIO GROSSI CORTE INTERAMERICANA DE DERECHOS HUMANOS CASO TERRONES SILVA Y OTROS VS. PER\u00da SENTENCIA DE DE SEPTIEMBRE DE Excepciones Preliminares Fondo Reparaciones y Costas. Se expide el presente voto concurrente respecto a lo resuelto en la sentencia del ep\u00edgrafe en cuanto a la excepci\u00f3n del previo agotamiento de los recursos internos. Y se procede as\u00ed en m\u00e9rito de que si bien es cierto que la posici\u00f3n del suscrito expuesta en varios votos individuales es que", - "values": [ - "Voto Separado" - ] - }, - { - "text": "VOTO RAZONADO DEL JUEZ EDUARDO FERRER MACGREGOR POISOT CASO CUSCUL PIVARAL Y OTROS VS. GUATEMALA SENTENCIA DE DE AGOSTO DE Excepci\u00f3n Preliminar Fondo Reparaciones y Costas La Jueza Elizabeth Odio Benito y el Juez Patricio Pazmi\u00f1o Freire se adhirieron al presente Voto del Juez Eduardo Ferrer MacGregor Poisot. INTRODUCCI\u00d3N LA EXIGIBILIDAD DIRECTA DEL DERECHO A LA SALUD Y LA OBLIGACI\u00d3N DE PROGRESIVIDAD Y NO REGRESIVIDAD La sentencia en el caso Cuscul Pivaral y otros Vs. Guatemala en adelante la", - "values": [ - "Voto Separado" - ] - }, - { - "text": "CORTE INTERAMERICANA DE DERECHOS HUMANOS CASO TERRONES SILVA Y OTROS VS. PER\u00da SENTENCIA DE DE SEPTIEMBRE DE Excepciones Preliminares Fondo Reparaciones y Costas En el caso Terrones Silva y Otros Vs. Per\u00fa la Corte Interamericana de Derechos Humanos en adelante la Corte Interamericana la Corte o este Tribunal integrada por los siguientes Jueces Eduardo Ferrer MacGregor Poisot Presidente Eduardo Vio Grossi Juez Vicepresidente Humberto Antonio Sierra Porto Juez Eugenio Ra\u00fal Zaffaroni Juez y ", - "values": [ - "Excepciones Preliminares", - "Fondo", - "Reparaciones", - "Costas" - ] - }, - { - "text": "CORTE INTERAMERICANA DE DERECHOS HUMANOS CASO LAGOS DEL CAMPO VS. PER\u00da SENTENCIA DE DE NOVIEMBRE DE Interpretaci\u00f3n de Sentencia de Excepciones Preliminares Fondo Reparaciones y Costas En el caso Lagos del Campo Vs. Per\u00fa La Corte Interamericana de Derechos Humanos en adelante la Corte Interamericana la Corte o el Tribunal integrada por los siguientes jueces Eduardo Ferrer MacGregor Poisot Presidente Eduardo Vio Grossi Vicepresidente Elizabeth Odio Benito Jueza Eugenio Ra\u00fal Zaffaroni Juez y ", - "values": [ - "Interpretaci\u00f3n" - ] - }, - { - "text": "CORTE INTERAMERICANA DE DERECHOS HUMANOS CASO CARVAJAL CARVAJAL Y OTROS VS. COLOMBIA SENTENCIA DE DE NOVIEMBRE DE Interpretaci\u00f3n de la Sentencia de Fondo Reparaciones y Costas En el caso Carvajal Carvajal y Otros Vs. Colombia la Corte Interamericana de Derechos Humanos en adelante la Corte Interamericana la Corte o el Tribunal integrada por los siguientes Jueces Eduardo Ferrer MacGregor Poisot Presidente Eduardo Vio Grossi Vicepresidente Elizabeth Odio Benito Jueza Eugenio Ra\u00fal Zaffaroni Juez", - "values": [ - "Interpretaci\u00f3n" - ] - }, - { - "text": "RESOLUCI\u00d3N DE LA CORTE INTERAMERICANA DE DERECHOS HUMANOS DE DE SEPTIEMBRE DE CASO POLLO RIVERA Y OTROS Y CASO LAGOS DEL CAMPO VS. PER\u00da SUPERVISI\u00d3N DE CUMPLIMIENTO DE SENTENCIA VISTO Las Sentencias emitidas por la Corte Interamericana de Derechos Humanos en adelante la Corte Interamericana la Corte o el Tribunal el de octubre de en el caso Pollo Rivera y otros y el de agosto de en el caso Lagos del Campo en adelante los dos casos ambos contra la Rep\u00fablica del Per\u00fa en adelante el Estado o", - "values": [ - "Supervisi\u00f3n de cumplimiento de Sentencia" - ] - }, - { - "text": "RESOLUCI\u00d3N DEL PRESIDENTE DE LA CORTE INTERAMERICANA DE DERECHOS HUMANOS DE DE DICIEMBRE DE CASO JENKINS VS. ARGENTINA CONVOCATORIA A AUDIENCIA VISTO El escrito de sometimiento del caso y el Informe de Fondo de la Comisi\u00f3n Interamericana de Derechos Humanos en adelante la Comisi\u00f3n Interamericana o la Comisi\u00f3n el escrito de solicitudes argumentos y pruebas en adelante el escrito de solicitudes y argumentos de los representantes de la presunta v\u00edctima en adelante los representantes y el de ", - "values": [ - "Otros" - ] - }, - { - "text": "RESOLUCI\u00d3N DE LA CORTE INTERAMERICANA DE DERECHOS HUMANOS DE DE NOVIEMBRE DE CASO FORNER\u00d3N E HIJA VS. ARGENTINA SUPERVISI\u00d3N DE CUMPLIMIENTO DE SENTENCIA VISTO La Sentencia de fondo reparaciones y costas en adelante la Sentencia dictada por la Corte Interamericana de Derechos Humanos en adelante la Corte Interamericana la Corte o el Tribunal el de abril de La Corte declar\u00f3 la responsabilidad internacional de la Rep\u00fablica de Argentina en adelante Argentina o el Estado por la violaci\u00f3n de los", - "values": [ - "Supervisi\u00f3n de cumplimiento de Sentencia" - ] - }, - { - "text": "RESOLUCI\u00d3N DEL PRESIDENTE DE LA CORTE INTERAMERICANA DE DERECHOS HUMANOS DE DE DICIEMBRE DE CASO ARROM SUHURT Y OTROS VS. PARAGUAY VISTO El escrito de sometimiento del caso y el Informe de Fondo de la Comisi\u00f3n Interamericana de Derechos Humanos en adelante la Comisi\u00f3n Interamericana o la Comisi\u00f3n el escrito de solicitudes argumentos y pruebas en adelante el escrito de solicitudes y argumentos del representante de las presuntas v\u00edctimas en adelante el representante el escrito de excepciones ", - "values": [ - "Otros" - ] - }, - { - "text": "RESOLUCI\u00d3N DEL PRESIDENTE DE LA CORTE INTERAMERICANA DE DERECHOS HUMANOS DE DE DICIEMBRE DE CASO PERRONE Y PRECKEL VS. ARGENTINA CONVOCATORIA A AUDIENCIA VISTO El escrito de sometimiento del caso y el Informe de Fondo de la Comisi\u00f3n Interamericana de Derechos Humanos en adelante la Comisi\u00f3n Interamericana o la Comisi\u00f3n el escrito de solicitudes argumentos y pruebas en adelante el escrito de solicitudes y argumentos o ESAP de los representantes de las presuntas v\u00edctimas en adelante los y el ", - "values": [ - "Otros" - ] - }, - { - "text": "RESOLUCI\u00d3N DE LA CORTE INTERAMERICANA DE DERECHOS HUMANOS DE DE NOVIEMBRE DE CASO BENAVIDES CEVALLOS VS. ECUADOR SUPERVISI\u00d3N DE CUMPLIMIENTO DE SENTENCIA VISTO La Sentencia de fondo reparaciones y costas en adelante la Sentencia dictada por la Corte Interamericana de Derechos Humanos en adelante la Corte Interamericana la Corte o el Tribunal el de junio de La Corte consider\u00f3 procedente el allanamiento de la Rep\u00fablica del Ecuador en adelante el Estado o Ecuador respecto a los hechos del ", - "values": [ - "Supervisi\u00f3n de cumplimiento de Sentencia" - ] - }, - { - "text": "VOTO CONCURRENTE DEL JUEZ HUMBERTO ANTONIO SIERRA PORTO A LA SENTENCIA DE DE NOVIEMBRE DE DE LA CORTE INTERAMERICANA DE DERECHOS HUMANOS EN EL CASO DE \u00d3RDENES GUERRA Y OTROS VS CHILE Temas La Motivaci\u00f3n para inaplicar la prescripci\u00f3n de la acci\u00f3n civil de da\u00f1os en casos que involucren cr\u00edmenes de lesa humanidad. La utilizaci\u00f3n del principio de complementariedad o subsidiariedad en materia de reparaciones. El control de convencionalidad car\u00e1cter dial\u00f3gico y los inconvenientes de utilizarlo ", - "values": [ - "Voto Separado" - ] - }, - { - "text": "RESOLUCI\u00d3N DE LA CORTE INTERAMERICANA DE DERECHOS HUMANOS DE NOVIEMBRE DE CASO GARC\u00cdA CRUZ Y S\u00c1NCHEZ SILVESTRE VS. ESTADOS UNIDOS MEXICANOS SUPERVISI\u00d3N DE CUMPLIMIENTO DE SENTENCIA VISTO La Sentencia de fondo reparaciones y costas en adelante la Sentencia emitida por la Corte Interamericana de Derechos Humanos en adelante la Corte Interamericana la Corte o el Tribunal el de noviembre de La Corte homolog\u00f3 el Acuerdo de soluci\u00f3n amistosa y reconocimiento de responsabilidad del Estado por ", - "values": [ - "Supervisi\u00f3n de cumplimiento de Sentencia" - ] - }, - { - "text": "CORTE INTERAMERICANA DE DERECHOS HUMANOS CASO TRUEBA ARCINIEGA Y OTROS VS. M\u00c9XICO SENTENCIA DE DE NOVIEMBRE DE En el Caso Trueba Arciniega y otros la Corte Interamericana de Derechos Humanos en adelante la Corte Interamericana la Corte o el Tribunal integrada por los siguientes Jueces Eduardo Vio Grossi Presidente en ejercicio Humberto Antonio Sierra Porto Juez Elizabeth Odio Benito Jueza Eugenio Raul Zaffaroni Juez L. Patricio Pazmino Freire Juez y presente adem\u00e1s Pablo Saavedra Alessandri ", - "values": [ - "Fondo", - "Reparaciones" - ] - }, - { - "text": "RESOLUCI\u00d3N DE LA CORTE INTERAMERICANA DE DERECHOS HUMANOS DE DE NOVIEMBRE DE CASO MASACRE DE SANTO DOMINGO VS. COLOMBIA SUPERVISI\u00d3N DE CUMPLIMIENTO DE SENTENCIA VISTO La Sentencia de excepciones preliminares fondo y reparaciones en adelante la Sentencia dictada por la Corte Interamericana de Derechos Humanos en adelante la Corte Interamericana la Corte o el Tribunal el de noviembre de La Corte declar\u00f3 la responsabilidad internacional de la Rep\u00fablica de Colombia en adelante el Estado o ", - "values": [ - "Supervisi\u00f3n de cumplimiento de Sentencia" - ] - }, - { - "text": "CORTE INTERAMERICANA DE DERECHOS HUMANOS CASO OMEARA CARRASCAL Y OTROS VS. COLOMBIA SENTENCIA DE NOVIEMBRE DE Fondo Reparaciones y Costas En el caso Omeara Carrascal y otros la Corte Interamericana de Derechos Humanos en adelante la Corte Interamericana la Corte o este Tribunal integrada por los siguientes Jueces Eduardo Ferrer MacGregor Poisot Presidente Eduardo Vio Grossi Juez Vicepresidente Elizabeth Odio Benito Jueza Eugenio Ra\u00fal Zaffaroni Juez y Patricio Pazmi\u00f1o Freire Juez. Presentes ", - "values": [ - "Reparaciones", - "Costas", - "Fondo" - ] - }, - { - "text": "CORTE INTERAMERICANA DE DERECHOS HUMANOS CASO ISAZA URIBE Y OTROS VS. COLOMBIA SENTENCIA DE DE NOVIEMBRE DE Fondo Reparaciones y Costas En el caso Isaza Uribe y otros la Corte Interamericana de Derechos Humanos en adelante la Corte Interamericana la Corte o el Tribunal integrada por los siguientes Jueces Eduardo Ferrer MacGregor Poisot Presidente Eduardo Vio Grossi Vicepresidente Elizabeth Odio Benito jueza Eugenio Ra\u00fal Zaffaroni juez y L. Patricio Pazmi\u00f1o Freire juez presentes adem\u00e1s Pablo ", - "values": [ - "Fondo", - "Reparaciones", - "Costas" - ] - }, - { - "text": "VOTO CONCURRENTE DEL JUEZ EDUARDO VIO GROSSI RESOLUCI\u00d3N DE LA CORTE INTERAMERICANA DE DERECHOS HUMANOS DE DE NOVIEMBRE DE B\u00c1MACA VEL\u00c1SQUEZ VS. GUATEMALA MEDIDAS PROVISIONALES. El suscrito viene en reiterar esta vez respecto de la Resoluci\u00f3n indicada en el Ep\u00edgrafe su Voto Concurrente emitido con relaci\u00f3n a la Resoluci\u00f3n de la Corte Interamericana de Derechos Humanos de de Agosto de B\u00e1maca Vel\u00e1squez VS. Guatemala Medidas Provisionales. Eduardo Vio Grossi Juez Pablo Saavedra Alessandri ", - "values": [ - "Voto Separado" - ] - }, - { - "text": "RESOLUCI\u00d3N DE LA CORTE INTERAMERICANA DE DERECHOS HUMANOS DE DE NOVIEMBRE DE MEDIDAS PROVISIONALES RESPECTO DE LA REP\u00daBLICA DE GUATEMALA ASUNTO DE LA FUNDACI\u00d3N DE ANTROPOLOG\u00cdA FORENSE DE GUATEMALA VISTO Las Resoluciones de la Corte Interamericana de Derechos Humanos en adelante la Corte Interamericana la Corte o el Tribunal de de julio de de noviembre de de enero de de febrero de y de noviembre de mediante las cuales se orden\u00f3 la adopci\u00f3n de medidas provisionales y el mantenimiento", - "values": [ - "Medidas Provisionales" - ] - }, - { - "text": "RESOLUCI\u00d3N DE LA CORTE INTERAMERICANA DE DERECHOS HUMANOS DE NOVIEMBRE DE CASO DE LA COMUNIDAD MOIWANA VS. SURINAM SUPERVISI\u00d3N DE CUMPLIMIENTO DE SENTENCIA VISTO La Sentencia de excepciones preliminares fondo reparaciones y costas en adelante la Sentencia dictada por la Corte Interamericana de Derechos Humanos en adelante la Corte la Corte Interamericana o el Tribunal el de junio de En dicho caso la Corte declar\u00f3 responsable internacionalmente a la Rep\u00fablica de Surinam en adelante el o ", - "values": [ - "Supervisi\u00f3n de cumplimiento de Sentencia" - ] - }, - { - "text": "RESOLUCI\u00d3N DE LA CORTE INTERAMERICANA DE DERECHOS HUMANOS DE NOVIEMBRE DE MEDIDAS PROVISIONALES RESPECTO DE BRASIL ASUNTO DEL INSTITUTO PENAL PL\u00c1CIDO DE S\u00c1 CARVALHO VISTO La Resoluci\u00f3n emitida por la Corte Interamericana de Derechos Humanos en adelante la Corte Interamericana la Corte o el Tribunal el de agosto de en la cual entre otros se requiri\u00f3 a la Rep\u00fablica Federativa de Brasil en adelante Brasil o el Estado adoptar de forma inmediata todas las medidas que fueran necesarias para la", - "values": [ - "Medidas Provisionales" - ] - }, - { - "text": "RESOLUCI\u00d3N DE LA CORTE INTERAMERICANA DE DERECHOS HUMANOS DE DE NOVIEMBRE DE CASO WONG HO WING VS. PER\u00da SUPERVISI\u00d3N DE CUMPLIMIENTO DE SENTENCIA VISTO La Sentencia de excepci\u00f3n preliminar fondo reparaciones y costas en adelante la Sentencia dictada por la Corte Interamericana de Derechos Humanos en adelante la Corte la Corte Interamericana o el Tribunal el de junio de La Corte declar\u00f3 que no se hab\u00eda acreditado que para la fecha de emisi\u00f3n de la Sentencia existiera un riesgo real y a ", - "values": [ - "Supervisi\u00f3n de cumplimiento de Sentencia" - ] - }, - { - "text": "VOTO RAZONADO DEL JUEZ AA. CAN\u00c7ADO TRINDADE Mediante su presente Sentencia en Bulacio versus Argentina para cuya adopci\u00f3n he concurrido con mi voto la Corte Interamericana de Derechos Humanos se ha pronunciado sobre un caso que bien retrata las contingencias de la condici\u00f3n humana y la importancia de la realizaci\u00f3n de la justicia y de la garant\u00eda de norepetici\u00f3n de los hechos lesivos de los derechos humanos como medida de reparaci\u00f3n. Dada la relevancia de la materia tratada por la Corte me veo", - "values": [ - "Voto Separado" - ] - }, - { - "text": "VOTO CONCURRENTE DEL JUEZ EDUARDO VIO GROSSI A LA RESOLUCI\u00d3N DE LA CORTE INTERAMERICANA DE DERECHOS HUMANOS DE DE JULIO DE CASO BUENO ALVES VS. ARGENTINA SUPERVISI\u00d3N DE CUMPLIMIENTO DE SENTENCIA Concurro con mi voto a la Resoluci\u00f3n de la Corte Interamericana de Derechos Humanos de de julio de Caso Bueno Alves Vs. Argentina Supervisi\u00f3n de Cumplimiento de Sentencia haciendo presente que la inadmisibilidad en autos de las decisiones de primera y segunda instancia emitidas en el orden interno ", - "values": [ - "Voto Separado" - ] - }, - { - "text": "RESOLUCI\u00d3N DEL PRESIDENTE DE LA CORTE INTERAMERICANA DE DERECHOS HUMANOS DE DE ENERO DE CASO ARROM SUHURT Y OTROS VS. PARAGUAY VISTO El escrito de de diciembre de mediante el cual la Comisi\u00f3n Interamericana de Derechos Humanos en adelante la Comisi\u00f3n someti\u00f3 ante la Corte Interamericana de Derechos Humanos en adelante la Corte o el Tribunal el presente caso en contra de la Rep\u00fablica del Paraguay. La Resoluci\u00f3n del Presidente de la Corte Interamericana de Derechos Humanos en adelante el ", - "values": [ - "Otros" - ] - }, - { - "text": "RESOLUCI\u00d3N DE LA CORTE INTERAMERICANA DE DERECHOS HUMANOS DE DE ENERO DE CASO ARROM SUHURT Y OTROS VS. PARAGUAY VISTO La Resoluci\u00f3n del Presidente de la Corte Interamericana de Derechos Humanos en adelante el Presidente de de diciembre de en adelante la Resoluci\u00f3n del Presidente mediante la cual inter alia orden\u00f3 la recepci\u00f3n de diversas declaraciones en audiencia p\u00fablica y mediante affidavit y convoc\u00f3 a la Comisi\u00f3n Interamericana de Derechos Humanos en adelante tambi\u00e9n la Comisi\u00f3n al de ", - "values": [ - "Otros" - ] - }, - { - "text": "RESOLUCI\u00d3N DE LA CORTE INTERAMERICANA DE DERECHOS HUMANOS DE DE FEBRERO DE MEDIDAS PROVISIONALES CASO COC MAX Y OTROS VS. GUATEMALA VISTO La Resoluci\u00f3n de la Corte Interamericana de Derechos Humanos en adelante tambi\u00e9n la Corte o Tribunal de de febrero de en la que resolvi\u00f3 entre otros Requerir al Estado de Guatemala que adopte de manera inmediata las medidas de protecci\u00f3n que sean necesarias y efectivas para garantizar la vida e integridad personal de Efra\u00edn Grave Morente Maynor Estuardo", - "values": [ - "Medidas Provisionales" - ] - }, - { - "text": "RESOLUCI\u00d3N DEL PRESIDENTE DE LA CORTE INTERAMERICANA DE DERECHOS HUMANOS DE DE FEBRERO DE CASO GIR\u00d3N Y CASTILLO VS. GUATEMALA VISTO El escrito de sometimiento del caso y el Informe de Admisibilidad y Fondo de la Comisi\u00f3n Interamericana de Derechos Humanos en adelante la Comisi\u00f3n Interamericana o la Comisi\u00f3n el escrito de solicitudes argumentos y pruebas en adelante el escrito de solicitudes y argumentos de las representantes de las presuntas v\u00edctimas en adelante las representantes o las el ", - "values": [ - "Otros" - ] - }, - { - "text": "RESOLUCI\u00d3N DEL PRESIDENTE DE LA CORTE INTERAMERICANA DE DERECHOS HUMANOS DE DE FEBRERO DE CASO MART\u00cdNEZ CORONADO VS. GUATEMALA VISTO El escrito de sometimiento del caso y el Informe de Admisibilidad y Fondo de la Comisi\u00f3n Interamericana de Derechos Humanos en adelante la Comisi\u00f3n Interamericana o la Comisi\u00f3n el escrito de solicitudes argumentos y pruebas en adelante el escrito de solicitudes y argumentos de los representantes de la presuntas v\u00edctimas en adelante los representantes o los el ", - "values": [ - "Otros" - ] - }, - { - "text": "RESOLUCI\u00d3N DE LA CORTE INTERAMERICANA DE DERECHOS HUMANOS DE DE ENERO DE CASO DE LA CORTE SUPREMA DE JUSTICIA QUINTANA COELLO Y OTROS VS. ECUADOR SUPERVISI\u00d3N DE CUMPLIMIENTO DE SENTENCIA VISTOS La Sentencia de excepci\u00f3n preliminar fondo reparaciones y costas en adelante la Sentencia o el Fallo dictada por la Corte Interamericana de Derechos Humanos en adelante la Corte la Corte Interamericana o el Tribunal el de agosto de La Corte tomando en cuenta el reconocimiento parcial de efectuado ", - "values": [ - "Supervisi\u00f3n de cumplimiento de Sentencia" - ] - }, - { - "text": "RESOLUCI\u00d3N DE LA CORTE INTERAMERICANA DE DERECHOS HUMANOS DE DE ENERO DE RECONSIDERACI\u00d3N DE CONVOCATORIA CASO PERRONE Y PRECKEL Vs. ARGENTINA VISTO La Resoluci\u00f3n del Presidente de la Corte Interamericana de Derechos Humanos en adelante la Corte o el Tribunal del de diciembre de en adelante la Resoluci\u00f3n del Presidente mediante la cual inter al\u00eda orden\u00f3 la recepci\u00f3n de un peritaje a trav\u00e9s de affid\u00e1vit y convoc\u00f3 al Estado Argentino en adelante el Estado o Argentina a los representantes y a", - "values": [ - "Otros" - ] - }, - { - "text": "RESOLUCI\u00d3N DE LA CORTE INTERAMERICANA DE DERECHOS HUMANOS DE DE ENERO DE CASO ARG\u00dcELLES Y OTROS VS. ARGENTINA SUPERVISI\u00d3N DE CUMPLIMIENTO DE SENTENCIA VISTO La Sentencia de excepciones preliminares fondo reparaciones y costas en adelante la Sentencia o el Fallo dictada por la Corte Interamericana de Derechos Humanos en adelante la Corte la Corte Interamericana o el Tribunal el de noviembre de La Corte declar\u00f3 la responsabilidad internacional de la Rep\u00fablica Argentina en adelante el Estado", - "values": [ - "Supervisi\u00f3n de cumplimiento de Sentencia" - ] - }, - { - "text": "RESOLUCI\u00d3N DEL PRESIDENTE DE LA CORTE INTERAMERICANA DE DERECHOS HUMANOS DE DE FEBRERO DE CASO VALENZUELA \u00c1VILA VS. GUATEMALA CONVOCATORIA A AUDIENCIA VISTO El escrito de sometimiento del caso y el Informe de Admisibilidad y Fondo en adelante tambi\u00e9n Informe de Fondo de la Comisi\u00f3n Interamericana de Derechos Humanos en adelante la Comisi\u00f3n Interamericana o la Comisi\u00f3n el escrito de solicitudes argumentos y pruebas en adelante el escrito de solicitudes y argumentos de los representantes de la", - "values": [ - "Otros" - ] - }, - { - "text": "VOTO PARCIALMENTE DISIDENTE DEL JUEZ EDUARDO VIO GROSSI RESOLUCI\u00d3N DE LA CORTE INTERAMERICANA DE DERECHOS HUMANOS DE DE MARZO DE MEDIDAS PROVISIONALES Y SUPERVISI\u00d3N DE CUMPLIMIENTO DE SENTENCIA CASO DE LOS MIEMBROS DE LA ALDEA CHICHUPAC Y COMUNIDADES DEL MUNICIPIO DE RABINAL CASO MOLINA THIESEN Y OTROS CASOS CONTRA GUATEMALA. INTRODUCCI\u00d3N. Se emite el presente voto parcialmente disidente respecto de la Resoluci\u00f3n del ep\u00edgrafe por discrepar respecto de lo decidido en su Punto Resolutivo N ", - "values": [ - "Voto Separado" - ] - }, - { - "text": "VOTO CONCURRENTE DEL JUEZ HUMBERTO ANTONIO SIERRA PORTO A LA SENTENCIA DE DE FEBRERO DE DE LA CORTE INTERAMERICANA DE DERECHOS HUMANOS EN EL CASO VILLASE\u00d1OR VELARDE Y OTROS VS. GUATEMALA Formulo el presente voto concurrente resaltando el respeto a la decisi\u00f3n un\u00e1nime adoptada por la la Corte Interamericana de Derechos Humanos en adelante tambi\u00e9n la Corte o el Tribunal en el caso Villase\u00f1or Velarde y otros vs. Guatemala en adelante caso Villase\u00f1or. Lo hago adem\u00e1s como es evidente a partir de ", - "values": [ - "Voto Separado" - ] - }, - { - "text": "VOTO DISIDENTE DEL JUEZ EDUARDO VIO GROSSI RESOLUCI\u00d3N DE LA CORTE INTERAMERICANA DE DERECHOS HUMANOS DE DE MARZO CASO MACK CHANG Y OTROS VS GUATEMALA MEDIDAS PROVISIONALES Se formula el presente voto disidente respecto de la Resoluci\u00f3n indicada en el r\u00f3tulo en m\u00e9rito de que ha precluido la facultad de la Corte Interamericana de Derechos Humanos de decretar la mantenci\u00f3n de medidas provisionales respecto o en el marco del referido caso sentenciado el de noviembre de Y se formula reiterando ", - "values": [ - "Voto Separado" - ] - }, - { - "text": "RESOLUCI\u00d3N DEL PRESIDENTE DE LA CORTE INTERAMERICANA DE DERECHOS HUMANOS DE DE MARZO DE CASO GORIGOIT\u00cdA VS. ARGENTINA RESOLUCI\u00d3N DE CONVOCATORIA VISTO El escrito de sometimiento del caso y el Informe de Fondo de la Comisi\u00f3n Interamericana de Derechos Humanos en adelante la Comisi\u00f3n Interamericana o la Comisi\u00f3n el escrito de solicitudes argumentos y pruebas en adelante el escrito de solicitudes y argumentos de los representantes de la presunta v\u00edctima en adelante los representantes el escrito", - "values": [ - "Otros" - ] - }, - { - "text": "RESOLUCI\u00d3N DEL PRESIDENTE DE LA CORTE INTERAMERICANA DE DERECHOS HUMANOS DE DE MARZO DE CASO ROMERO FERIS VS. ARGENTINA CONVOCATORIA A AUDIENCIA VISTO El escrito de sometimiento del caso y el Informe de Fondo de la Comisi\u00f3n Interamericana de Derechos Humanos en adelante la Comisi\u00f3n Interamericana o la Comisi\u00f3n el escrito de solicitudes argumentos y pruebas en adelante el escrito de solicitudes y argumentos del representante de la presunta v\u00edctima en adelante el representante y el escrito de ", - "values": [ - "Otros" - ] - }, - { - "text": "RESOLUCI\u00d3N DE LA CORTE INTERAMERICANA DE DERECHOS HUMANOS DE DE MARZO DE SOLICITUD RESPECTO DE PARAGUAY CASO ARROM SUHURT Y OTROS VISTO El escrito de de diciembre de mediante el cual la Comisi\u00f3n Interamericana de Derechos Humanos en adelante la Comisi\u00f3n someti\u00f3 ante la Corte Interamericana de Derechos Humanos en adelante la Corte o el Tribunal el Caso Arrom Suhurt y otros Vs. Paraguay. La Audiencia P\u00fablica celebrada el de febrero de durante el Per\u00edodo Ordinario de Sesiones en la sede ", - "values": [ - "Otros" - ] - }, - { - "text": "RESOLUCI\u00d3N DE LA CORTE INTERAMERICANA DE DERECHOS HUMANOS DE DE MARZO DE CASO TARAZONA ARRIETA Y OTROS VS. PER\u00da SUPERVISI\u00d3N DE CUMPLIMIENTO DE SENTENCIA VISTO La Sentencia de excepci\u00f3n preliminar fondo reparaciones y costas en adelante la Sentencia dictada por la Corte Interamericana de Derechos Humanos en adelante la Corte Interamericana la Corte o el Tribunal el de octubre de La Corte declar\u00f3 la responsabilidad internacional de la Rep\u00fablica del Per\u00fa en adelante el Estado o el Per\u00fa por ", - "values": [ - "Supervisi\u00f3n de cumplimiento de Sentencia" - ] - }, - { - "text": "RESOLUCI\u00d3N DE LA CORTE INTERAMERICANA DE DERECHOS HUMANOS DE DE MAYO DE SOLICITUD DE MEDIDAS PROVISIONALES RESPECTO DE PARAGUAY CASO ARROM SUHURT Y OTROS VISTO El escrito de de diciembre de mediante el cual la Comisi\u00f3n Interamericana de Derechos Humanos en adelante la Comisi\u00f3n someti\u00f3 ante la Corte Interamericana de Derechos Humanos en adelante la Corte o el Tribunal el Caso Arrom Suhurt y otros Vs. Paraguay. La Audiencia P\u00fablica celebrada el de febrero de durante el Per\u00edodo Ordinario ", - "values": [ - "Medidas Provisionales" - ] - }, - { - "text": "RESOLUCI\u00d3N DEL PRESIDENTE DE LA CORTE INTERAMERICANA DE DERECHOS HUMANOS DE DE MAYO DE ADOPCI\u00d3N DE MEDIDAS URGENTES ASUNTO DE DIECISIETE PERSONAS PRIVADAS DE LIBERTAD RESPECTO DE NICARAGUA VISTO El escrito de la Comisi\u00f3n Interamericana de Derechos Humanos en adelante la Comisi\u00f3n Interamericana o la Comisi\u00f3n de de mayo de y sus anexos mediante los cuales someti\u00f3 a la Corte Interamericana de Derechos Humanos en adelante la Corte Interamericana la Corte o el Tribunal una solicitud de medidas ", - "values": [ - "Medidas Provisionales" - ] - }, - { - "text": "RESOLUCI\u00d3N DE LA CORTE INTERAMERICANA DE DERECHOS HUMANOS DE DE MARZO DE SOLICITUD DE MEDIDAS PROVISIONALES RESPECTO DE LA REP\u00daBLICA DEL PER\u00da CASO MUELLE FLORES VISTOS El escrito de sometimiento del caso de de julio de mediante el cual la Comisi\u00f3n Interamericana de Derechos Humanos en adelante la Comisi\u00f3n Interamericana o la Comisi\u00f3n present\u00f3 a la Corte Interamericana de Derechos Humanos en adelante la Corte o el Tribunal el caso Muelle Flores Vs. Per\u00fa. La Comisi\u00f3n indic\u00f3 que el caso versa", - "values": [ - "Medidas Provisionales" - ] - }, - { - "text": "VOTO RAZONADO DEL JUEZ EDUARDO FERRER MACGREGOR POISOT CASO MUELLE FLORES VS. PER\u00da SENTENCIA DE DE MARZO DE Excepciones Preliminares Fondo Reparaciones y Costas INTRODUCCI\u00d3N EL DERECHO A LA SEGURIDAD SOCIAL COMO DERECHO AUT\u00d3NOMO Y JUSTICIABLE SU ESPECIAL IMPACTO EN LAS PERSONAS MAYORES La sentencia en el caso Muelle Flores Vs. Per\u00fa en adelante la Sentencia o Muelle Flores abona a la l\u00ednea jurisprudencial interamericana en materia de derechos econ\u00f3micos sociales culturales y ambientales en ", - "values": [ - "Voto Separado" - ] - }, - { - "text": "VOTO PARCIALMENTE DISIDENTE DEL JUEZ HUMBERTO ANTONIO SIERRA PORTO CASO MUELLES FLORES VS. PER\u00da SENTENCIA DE DE MARZO DE Excepci\u00f3n Preliminar Fondo Reparaciones y Costas Con el reiterado respeto por las decisiones de la Corte Interamericana de Derechos Humanos en adelante tambi\u00e9n la Corte o el Tribunal me permito formular el presente voto parcialmente disidente. El voto se centra en el an\u00e1lisis de fondo que realiz\u00f3 la Corte acerca de la responsabilidad internacional del Estado en adelante el", - "values": [ - "Voto Separado" - ] - }, - { - "text": "CORTE INTERAMERICANA DE DERECHOS HUMANOS CASO ARROM SUHURT Y OTROS VS. PARAGUAY SENTENCIA DE DE MAYO DE Fondo En el caso Arrom Suhurt y otros Vs. Paraguay la Corte Interamericana de Derechos Humanos en adelante la Corte Interamericana la Corte o este Tribunal integrada por los siguientes jueces Eduardo Ferrer MacGregor Poisot Presidente Eduardo Vio Grossi Vicepresidente Humberto Antonio Sierra Porto Juez Elizabeth Odio Benito Jueza Patricio Pazmi\u00f1o Freire Juez y Ricardo P\u00e9rez Manrique Juez ", - "values": [ - "Fondo" - ] - }, - { - "text": "RESOLUCI\u00d3N DEL PRESIDENTE DE LA CORTE INTERAMERICANA DE DERECHOS HUMANOS DE DE JULIO DE ADOPCI\u00d3N DE MEDIDAS URGENTES ASUNTO INTEGRANTES DEL CENTRO NICARAG\u00dcENSE DE DERECHOS HUMANOS CENIDH Y DE LA COMISI\u00d3N PERMANENTE DE DERECHOS HUMANOS CPDH RESPECTO DE NICARAGUA VISTO El escrito de la Comisi\u00f3n Interamericana de Derechos Humanos en adelante la Comisi\u00f3n Interamericana o la Comisi\u00f3n o CIDH de de junio de y sus anexos mediante los cuales someti\u00f3 a la Corte Interamericana de Derechos Humanos en ", - "values": [ - "Medidas Provisionales" - ] - }, - { - "text": "CORTE INTERAMERICANA DE DERECHOS HUMANOS CASO MART\u00cdNEZ CORONADO VS. GUATEMALA SENTENCIA DE DE MAYO DE Fondo Reparaciones y Costas En el caso Mart\u00ednez Coronado la Corte Interamericana de Derechos Humanos en adelante la Corte Interamericana la Corte o este Tribunal integrada por los siguientes Jueces Eduardo Ferrer MacGregor Poisot Presidente Eduardo Vio Grossi Vicepresidente Humberto Antonio Sierra Porto Juez Elizabeth Odio Benito Jueza L. Patricio Pazmi\u00f1o Freire Juez y Ricardo P\u00e9rez Manrique", - "values": [ - "Fondo", - "Reparaciones", - "Costas" - ] - }, - { - "text": "RESOLUCI\u00d3N DEL PRESIDENTE DE LA CORTE INTERAMERICANA DE DERECHOS HUMANOS DE DE JULIO DE FONDO DE ASISTENCIA LEGAL DE V\u00cdCTIMAS CASO FLOR FREIRE VS. ECUADOR VISTO El escrito de de diciembre de y sus anexos mediante los cuales la Comisi\u00f3n Interamericana de Derechos Humanos en adelante la Comisi\u00f3n Interamericana o la Comisi\u00f3n someti\u00f3 ante la Corte Interamericana de Derechos Humanos en adelante la Corte Interamericana la Corte o el Tribunal el presente caso. El escrito de de febrero de el ", - "values": [ - "Otros" - ] - }, - { - "text": "RESOLUCI\u00d3N DEL PRESIDENTE DE LA CORTE INTERAMERICANA DE DERECHOS HUMANOS EN EJERCICIO PARA EL PRESENTE CASO DE DE DICIEMBRE DE CASO FLOR FREIRE VS. ECUADOR CONVOCATORIA A AUDIENCIA VISTO El escrito de sometimiento del caso y el Informe de Fondo de la Comisi\u00f3n Interamericana de Derechos Humanos en adelante la Comisi\u00f3n Interamericana o la Comisi\u00f3n el escrito de solicitudes argumentos y pruebas en adelante el escrito de solicitudes y argumentos del representante de la presunta v\u00edctima en el ", - "values": [ - "Otros" - ] - }, - { - "text": "RESOLUCI\u00d3N DE LA CORTE INTERAMERICANA DE DERECHOS HUMANOS DE DE MAYO DE CASO CANTORAL HUAMAN\u00cd Y GARC\u00cdA SANTA CRUZ VS. PER\u00da SUPERVISI\u00d3N DE CUMPLIMIENTO DE SENTENCIA VISTO La Sentencia de excepci\u00f3n preliminar fondo reparaciones y costas en adelante la Sentencia dictada por la Corte Interamericana de Derechos Humanos en adelante la Corte Interamericana la Corte o el Tribunal el de julio de La Corte tomando en consideraci\u00f3n el reconocimiento parcial de responsabilidad realizado por la del en", - "values": [ - "Supervisi\u00f3n de cumplimiento de Sentencia" - ] - }, - { - "text": "CORTE INTERAMERICANA DE DERECHOS HUMANOS CASO GORIGOIT\u00cdA VS. ARGENTINA SENTENCIA DE DE SEPTIEMBRE DE Excepci\u00f3n Preliminar Fondo Reparaciones y Costas En el caso Gorigoit\u00eda Vs. Argentina la Corte Interamericana de Derechos Humanos en adelante la Corte Interamericana la Corte o este Tribunal integrada por los siguientes jueces Eduardo Ferrer MacGregor Poisot Presidente Eduardo Vio Grossi Vice Presidente Humberto Antonio Sierra Porto Juez Elizabeth Odio Benito Jueza L. Patricio Pazmi\u00f1o Freire y", - "values": [ - "Excepciones Preliminares", - "Fondo", - "Reparaciones", - "Costas" - ] - }, - { - "text": "VOTO DISIDENTE DEL JUEZ EDUARDO VIO GROSSI RESOLUCI\u00d3N DE LA CORTE INTERAMERICANA DE DERECHOS HUMANOS DE DE SEPTIEMBRE DE SOLICITUD DE MEDIDAS PROVISIONALES Y SUPERVISI\u00d3N DE CUMPLIMIENTO DE SENTENCIA CASO MASACRES DE EL MOZOTE Y LUGARES ALEDA\u00d1OS VS. EL SALVADOR INTRODUCCI\u00d3N. Se formula el presente voto disidente respecto de la Resoluci\u00f3n se\u00f1alada en el r\u00f3tulo en m\u00e9rito de que se discrepa de lo que se expresa en su resolutivo n a saber que tomando en consideraci\u00f3n la informaci\u00f3n aportada con ", - "values": [ - "Voto Separado" - ] - }, - { - "text": "RESOLU\u00c7\u00c3O DA CORTE INTERAMERICANA DE DIREITOS HUMANOS DE DE OUTUBRO DE MEDIDAS PROVIS\u00d3RIAS A RESPEITO DO BRASIL ASSUNTO DO COMPLEXO PENITENCI\u00c1RIO DE PEDRINHAS TENDO VISTO A resolu\u00e7\u00e3o emitida pela Corte Interamericana de Direitos Humanos doravante denominada Corte Interamericana Corte ou Tribunal em de novembro de na qual se solicitou \u00e0 Rep\u00fablica Federativa do Brasil doravante denominada Brasil ou Estado que adotasse de forma imediata todas as medidas necess\u00e1rias para proteger eficazmente a", - "values": [ - "Medidas Provisionales" - ] - }, - { - "text": "RESOLUCI\u00d3N DE LA CORTE INTERAMERICANA DE DERECHOS HUMANOS DE DE OCTUBRE DE ASUNTO DIECISIETE PERSONAS PRIVADAS DE LIBERTAD RESPECTO DE NICARAGUA VISTO La resoluci\u00f3n de medidas urgentes del Presidente de la Corte Interamericana de Derechos Humanos en adelante la Corte Interamericana la Corte o el Tribunal de de mayo de mediante la cual se requiri\u00f3 al Estado adoptar las medidas necesarias para proteger la salud vida e integridad personal de personas privadas de libertad en Nicaragua as\u00ed ", - "values": [ - "Medidas Provisionales" - ] - }, - { - "text": "RESOLUCI\u00d3N DE LA CORTE INTERAMERICANA DE DERECHOS HUMANOS DE DE OCTUBRE DE MEDIDAS PROVISIONALES RESPECTO DE NICARAGUA ASUNTO INTEGRANTES DEL CENTRO NICARAG\u00dcENSE DE DERECHOS HUMANOS CENIDH Y DE LA COMISI\u00d3N PERMANENTE DE DERECHOS HUMANOS CPDH VISTOS El escrito de la Comisi\u00f3n Interamericana de Derechos Humanos en adelante la Comisi\u00f3n Interamericana o la Comisi\u00f3n o CIDH de de junio de y sus anexos mediante los cuales someti\u00f3 a la Corte Interamericana de Derechos Humanos en adelante la Corte ", - "values": [ - "Medidas Provisionales" - ] - }, - { - "text": "RESOLUCI\u00d3N DE LA CORTE INTERAMERICANA DE DERECHOS HUMANOS DE DE OCTUBRE DE CASO CARVAJAL CARVAJAL Y OTROS VS. COLOMBIA SUPERVISI\u00d3N DE CUMPLIMIENTO DE SENTENCIA VISTO La Sentencia de fondo reparaciones y costas en adelante la Sentencia dictada por la Corte Interamericana de Derechos Humanos en adelante la Corte Interamericana la Corte o el Tribunal el de marzo de El Tribunal declar\u00f3 la responsabilidad internacional de la Rep\u00fablica de Colombia en adelante Colombia o el Estado por la muerte ", - "values": [ - "Supervisi\u00f3n de cumplimiento de Sentencia" - ] - }, - { - "text": "RESOLUCI\u00d3N DE LA CORTE INTERAMERICANA DE DERECHOS HUMANOS DE DE OCTUBRE DE CASO FLOR FREIRE VS. ECUADOR SUPERVISI\u00d3N DE CUMPLIMIENTO DE SENTENCIA VISTO El de agosto de la Corte Interamericana de Derechos Humanos en adelante la Corte Interamericana la Corte o este Tribunal dict\u00f3 la Sentencia mediante la cual declar\u00f3 responsable internacionalmente a la Rep\u00fablica del Ecuador en adelante el Estado o Ecuador por la separaci\u00f3n del se\u00f1or Homero Flor Freire como funcionario militar de la Fuerza ", - "values": [ - "Supervisi\u00f3n de cumplimiento de Sentencia" - ] - }, - { - "text": "CORTE INTERAMERICANA DE DERECHOS HUMANOS CASO \u00c1LVAREZ RAMOS VS. VENEZUELA SENTENCIA DE DE AGOSTO DE Excepci\u00f3n Preliminar Fondo Reparaciones y Costas En el caso \u00c1lvarez Ramos la Corte Interamericana de Derechos Humanos en adelante la Corte Interamericana la Corte o este Tribunal integrada por los siguientes Jueces Eduardo Ferrer MacGregor Poisot Presidente Eduardo Vio Grossi Vicepresidente Humberto Antonio Sierra Porto Juez Elizabeth Odio Benito Jueza Eugenio Ra\u00fal Zaffaroni Juez L. Patricio ", - "values": [ - "Excepciones Preliminares", - "Fondo", - "Reparaciones", - "Costas" - ] - }, - { - "text": "CORTE INTERAMERICANA DE DERECHOS HUMANOS CASO GIR\u00d3N Y OTRO VS. GUATEMALA SENTENCIA DE DE OCTUBRE DE Excepci\u00f3n Preliminar Fondo Reparaciones y Costas En el caso Gir\u00f3n y otro Vs. Guatemala la Corte Interamericana de Derechos Humanos en adelante la Corte Interamericana la Corte o este Tribunal integrada por los siguientes Jueces Eduardo Ferrer MacGregor Poisot Presidente Eduardo Vio Grossi Vicepresidente Humberto Antonio Sierra Porto Juez Elizabeth Odio Benito Jueza Patricio Pazmi\u00f1o Freire Juez", - "values": [ - "Excepciones Preliminares", - "Fondo", - "Reparaciones", - "Costas" - ] - }, - { - "text": "VOTO CONCURRENTE DEL JUEZ HUMBERTO ANTONIO SIERRA PORTO A LA RESOLUCI\u00d3N DE MEDIDAS PROVISIONALES Y SUPERVISI\u00d3N DE CUMPLIMIENTO DE SENTENCIA DE DE OCTUBRE DE DE LA CORTE INTERAMERICANA DE DERECHOS HUMANOS CASO DE LOS MIEMBROS DE LA ALDEA CHICHUPAC Y COMUNIDADES VECINAS DEL MUNICIPIO DE RABINAL CASO MOLINA THEISSEN Y OTROS CASOS CONTRA GUATEMALA Me permito formular el presente voto concurrente resaltando el respeto a la decisi\u00f3n un\u00e1nime adoptada por la Corte Interamericana de Derechos Humanos", - "values": [ - "Voto Separado" - ] - }, - { - "text": "VOTO CONCURRENTE DEL JUEZ EDUARDO VIO GROSSI CORTE INTERAMERICANA DE DERECHOS HUMANOS CASO G\u00d3MEZ VIRULA Y OTROS VS. GUATEMALA SENTENCIA DE DE NOVIEMBRE DE Excepci\u00f3n Preliminar Fondo Reparaciones y Costas I. INTRODUCCI\u00d3N. Se emite el presente voto concurrente de la Sentencia del ep\u00edgrafe con el \u00fanico prop\u00f3sito la raz\u00f3n por la que vot\u00f3 favorablemente su Punto Resolutivo N relativo a la excepci\u00f3n interpuesta por la Rep\u00fablica de Guatemala referida al requisito del previo agotamiento de los ", - "values": [ - "Voto Separado" - ] - }, - { - "text": "VOTO RAZONADO DEL JUEZ EDUARDO FERRER MACGREGOR POISOT A LA SENTENCIA DE DE NOVIEMBRE DE DE LA CORTE INTERAMERICANA DE DERECHOS HUMANOS EN EL CASO HERN\u00c1NDEZ VS. ARGENTINA INTRODUCCI\u00d3N Hace poco m\u00e1s de dos a\u00f1os la Corte Interamericana de Derechos Humanos en adelante Corte IDH o Tribunal Interamericano consider\u00f3 oportuno brindar una visi\u00f3n integral a las violaciones de derechos humanos que se iban presentando. A partir de entonces y hasta el cierre de el Tribunal Interamericano ha aportado ", - "values": [ - "Voto Separado" - ] - }, - { - "text": "VOTO PARCIALMENTE DISIDENTE DEL JUEZ PATRICIO PAZMI\u00d1O FREIRE A LA SENTENCIA DE DE NOVIEMBRE DE DE LA CORTE INTERAMERICANA DE DERECHOS HUMANOS EN EL CASO HERN\u00c1NDEZ VS. ARGENTINA I. Introducci\u00f3n La sentencia del caso Hern\u00e1ndez Vs. Argentina en general consolida la tesis adoptada por la Corte Interamericana de Derechos Humanos a partir del caso Lagos del Campo Vs. Per\u00fa en lo relativo a la justiciabilidad directa de los derechos econ\u00f3micos sociales culturales y ambientales DESCA a trav\u00e9s del ", - "values": [ - "Voto Separado" - ] - }, - { - "text": "VOTO PARCIALMENTE DISIDENTE DEL JUEZ HUMBERTO ANTONIO SIERRA PORTO A LA SENTENCIA DE DE NOVIEMBRE DE DE LA CORTE INTERAMERICANA DE DERECHOS HUMANOS EN EL CASO HERN\u00c1NDEZ VS. ARGENTINA I. Introducci\u00f3n En el marco de mi usual respeto por las decisiones de la Corte Interamericana de Derechos Humanos en lo adelante la Corte o el Tribunal formulo el presente voto para reafirmar y profundizar sobre las diversas contradicciones e inconsistencias l\u00f3gicas y jur\u00eddicas de las que adolece la teor\u00eda de la", - "values": [ - "Voto Separado" - ] - }, - { - "text": "VOTO PARCIALMENTE DISIDENTE DEL JUEZ EDUARDO VIO GROSSI A LA SENTENCIA DE DE NOVIEMBRE DE DE LA CORTE INTERAMERICANA DE DERECHOS HUMANOS EN EL CASO HERN\u00c1NDEZ VS. ARGENTINA I. INTRODUCCI\u00d3N Se emite el presente voto parcialmente disidente respecto de la Sentencia del ep\u00edgrafe por discrepar respecto de lo decidido en el Punto Resolutivo N en el que sobre la base de lo prescrito entre otros art\u00edculos en el de la Convenci\u00f3n Americana sobre Derechos Humanos declara que la Rep\u00fablica Argentina", - "values": [ - "Voto Separado" - ] - }, - { - "text": "VOTO CONCURRENTE DEL JUEZ RICARDO C. P\u00c9REZ MANRIQUE A LA SENTENCIA DE DE NOVIEMBRE DE DE LA CORTE INTERAMERICANA DE DERECHOS HUMANOS EN EL CASO HERN\u00c1NDEZ VS. ARGENTINA I. Introducci\u00f3n En mi voto concurrente en el Caso de la Asociaci\u00f3n Nacional de Cesantes y Jubilados de la Superintendencia Nacional de Administraci\u00f3n Tributaria ANCEJUBSUNAT Vs. Per\u00fa en adelante Caso ANCEJUBSUNAT expres\u00e9 una primera reflexi\u00f3n respecto a la manera en que considero que la Corte Interamericana de Derechos Humanos", - "values": [ - "Voto Separado" - ] - }, - { - "text": "VOTO CONCURRENTE DEL JUEZ EDUARDO RA\u00daL ZAFFARONI CASO D\u00cdAZ LORETO Y OTROS VS. VENEZUELA SENTENCIA DE DE NOVIEMBRE DE Excepciones Preliminares Fondo Reparaciones y Costas Entiendo que los hechos probados en estos autos configuran tambi\u00e9n una violaci\u00f3n por parte del Estado de Venezuela al art\u00edculo numerales y de la Convenci\u00f3n Americana CADH. La prohibici\u00f3n de restablecer la pena de muerte CADH no se puede limitar a que con posterioridad a su abolici\u00f3n se sancione una ley que la prevea y a ", - "values": [ - "Voto Separado" - ] - }, - { - "text": "VOTO DISIDENTE DEL JUEZ EDUARDO VIO GROSSI CORTE INTERAMERICANA DE DERECHOS HUMANOS D\u00cdAZ LORETO Y OTROS VS. VENEZUELA SENTENCIA DE DE NOVIEMBRE Excepciones Preliminares Fondo Reparaciones y Costas I. INTRODUCCI\u00d3N. Se emite el presente voto disidente de la Sentencia del ep\u00edgrafe en raz\u00f3n de lo dispuesto en su Punto Resolutivo N relativo a la excepci\u00f3n interpuesta por la Rep\u00fablica Bolivariana de Venezuela referida al requisito del previo agotamiento de los recursos internos previsto en la ", - "values": [ - "Voto Separado" - ] - }, - { - "text": "VOTO CONCURRENTE DEL JUEZ EDUARDO FERRER MACGREGOR POISOT Y DE LA JUEZA ELIZABETH ODIO BENITO CASO D\u00cdAZ LORETO Y OTROS VS. VENEZUELA SENTENCIA DE DE NOVIEMBRE DE Excepciones Preliminares Fondo Reparaciones y Costas INTRODUCCI\u00d3N Desde su primer caso contencioso la Corte Interamericana de Derechos Humanos en adelante Corte IDH o Tribunal Interamericano ha utilizado el contexto como un elemento fundamental para la valoraci\u00f3n de los hechos sometidos a su consideraci\u00f3n y eventualmente determinar ", - "values": [ - "Voto Separado" - ] - }, - { - "text": "RESOLUCI\u00d3N DEL PRESIDENTE DE LA CORTE INTERAMERICANA DE DERECHOS HUMANOS DE DE DICIEMBRE DE CASO PETRO URREGO VS. COLOMBIA CONVOCATORIA A AUDIENCIA VISTO El escrito de sometimiento del caso y el Informe de Fondo de la Comisi\u00f3n Interamericana de Derechos Humanos en adelante la Comisi\u00f3n Interamericana o la Comisi\u00f3n el escrito de solicitudes argumentos y pruebas en adelante escrito de solicitudes y argumentos de los representantes de la presunta v\u00edctima en adelante los representantes el escrito", - "values": [ - "Medidas Provisionales" - ] - }, - { - "text": "RESOLUCI\u00d3N DE LA CORTE INTERAMERICANA DE DERECHOS HUMANOS DE DE NOVIEMBRE DE CASO ISAZA URIBE Y OTROS VS. COLOMBIA SUPERVISI\u00d3N DE CUMPLIMIENTO DE SENTENCIA Y REINTEGRO AL FONDO DE ASISTENCIA LEGAL DE V\u00cdCTIMAS VISTO La Sentencia de fondo reparaciones y costas en adelante la Sentencia dictada por la Corte Interamericana de Derechos Humanos en adelante la Corte la Corte Interamericana o el Tribunal el de noviembre de En dicha Sentencia la Corte declar\u00f3 internacionalmente responsable al de ", - "values": [ - "Supervisi\u00f3n de cumplimiento de Sentencia", - "Fondo de asistencia a v\u00edctimas" - ] - }, - { - "text": "RESOLUCI\u00d3N DE LA CORTE INTERAMERICANA DE DERECHOS HUMANOS DE DE OCTUBRE DE CASO FORNER\u00d3N E HIJA VS. ARGENTINA SUPERVISI\u00d3N DE CUMPLIMIENTO DE SENTENCIA VISTO La Sentencia de fondo reparaciones y costas en adelante la Sentencia dictada por la Corte Interamericana de Derechos Humanos en adelante la Corte Interamericana la Corte o el Tribunal el de abril de La Corte declar\u00f3 la responsabilidad internacional de la Rep\u00fablica de Argentina en adelante Argentina o el Estado por la violaci\u00f3n de los ", - "values": [ - "Supervisi\u00f3n de cumplimiento de Sentencia" - ] - }, - { - "text": "VOTO DISIDENTE DEL JUEZ EDUARDO VIO GROSSI CORTE INTERAMERICANA DE DERECHOS HUMANOS CASO L\u00d3PEZ Y OTROS VS. ARGENTINA SENTENCIA DE DE NOVIEMBRE DE Excepciones Preliminares Fondo Reparaciones y Costas I. INTRODUCCI\u00d3N. Se emite el presente voto disidente de la Sentencia del ep\u00edgrafe en raz\u00f3n de lo dispuesto en su Punto Resolutivo N relativo a la excepci\u00f3n interpuesta por la Rep\u00fablica Argentina referida al requisito del previo agotamiento de los recursos internos previsto en la Convenci\u00f3n ", - "values": [ - "Voto Separado" - ] - }, - { - "text": "RESOLUCI\u00d3N DE LA CORTE INTERAMERICANA DE DERECHOS HUMANOS DE DE NOVIEMBRE DE CASO CABALLERO DELGADO Y SANTANA VS. COLOMBIA SUPERVISI\u00d3N DE CUMPLIMIENTO DE SENTENCIA VISTO Las Sentencias de fondo en adelante la Sentencia y de reparaciones y costas en adelante la Sentencia de reparaciones emitidas por la Corte Interamericana de Derechos Humanos en adelante la Corte Interamericana la Corte o el Tribunal respectivamente el de diciembre de y el de enero de El Tribunal declar\u00f3 la de la de", - "values": [ - "Supervisi\u00f3n de cumplimiento de Sentencia" - ] - }, - { - "text": "VOTO CONCURRENTE DEL JUEZ RICARDO C P\u00c9REZ MANRIQUE A LA SENTENCIA DE DE NOVIEMBRE DE DE LA CORTE INTERAMERICANA DE DERECHOS HUMANOS EN EL CASO ASOCIACI\u00d3N NACIONAL DE CESANTES Y JUBILADOS DE LA SUPERINTENDENCIA NACIONAL DE ADMINISTRACI\u00d3N TRIBUTARIA ANCEJUBSUNAT VS. PER\u00da I. Introducci\u00f3n La justiciabilidad de los derechos econ\u00f3micos sociales culturales y ambientales en adelante DESCA en la Corte Interamericana de Derechos Humanos en adelante la Corte o el Tribunal es uno de los temas m\u00e1s y de", - "values": [ - "Voto Separado" - ] - }, - { - "text": "VOTO PARCIALMENTE DISIDENTE DEL JUEZ HUMBERTO ANTONIO SIERRA PORTO A LA SENTENCIA DE DE NOVIEMBRE DE DE LA CORTE INTERAMERICANA DE DERECHOS HUMANOS EN EL CASO DE LA ASOCIACI\u00d3N NACIONAL DE CESANTES Y JUBILADOS DE LA SUPERINTENDENCIA NACIONAL DE ADMINISTRACI\u00d3N TRIBUTARIA ANCEJUBSUNAT VS. PER\u00da I. Introducci\u00f3n Con el acostumbrado respeto por las decisiones de la Corte Interamericana de Derechos Humanos en adelante la Corte o el Tribunal me permito formular el presente voto parcialmente disidente.", - "values": [ - "Voto Separado" - ] - }, - { - "text": "RESOLUCI\u00d3N DE LA CORTE INTERAMERICANA DE DERECHOS HUMANOS DE DE OCTUBRE DE SOLICITUD DE MEDIDAS PROVISIONALES Y SUPERVISI\u00d3N DE CUMPLIMIENTO DE SENTENCIA CASO CESTI HURTADO VS. PER\u00da VISTOS Las Sentencias de excepciones preliminares de de enero de de fondo de de septiembre de en adelante la Sentencia de fondo y de reparaciones y costas de de mayo de en adelante la Sentencia de reparaciones dictadas por la Corte Interamericana de Derechos Humanos en adelante la Corte Interamericana la", - "values": [ - "Medidas Provisionales", - "Supervisi\u00f3n de cumplimiento de Sentencia" - ] - }, - { - "text": "VOTO CONCURRENTE DEL JUEZ HUMBERTO ANTONIO SIERRA PORTO A LA SENTENCIA DE DE OCTUBRE DE DE LA CORTE INTERAMERICANA DE DERECHOS HUMANOS EN EL CASO DE RODR\u00cdGUEZ REVOLORIO Y OTROS VS. GUATEMALA I. Introducci\u00f3n Con el acostumbrado respeto por las decisiones de la Corte Interamericana de Derechos Humanos en adelante la Corte o el Tribunal me permito formular el presente voto concurrente. El voto se relaciona con la discusi\u00f3n que existe en la Corte sobre el an\u00e1lisis de casos que involucren a los ", - "values": [ - "Voto Separado" - ] - }, - { - "text": "RESOLUCI\u00d3N DE LA CORTE INTERAMERICANA DE DERECHOS HUMANOS DE DE OCTUBRE DE CASO KAWAS FERN\u00c1NDEZ VS. HONDURAS SUPERVISI\u00d3N DE CUMPLIMIENTO DE SENTENCIA VISTO La Sentencia emitida por la Corte Interamericana de Derechos Humanos en adelante la Corte Interamericana la Corte o el Tribunal el de abril de en el caso Kawas Fern\u00e1ndez contra la Rep\u00fablica de Honduras en adelante el Estado u Honduras. En la referida Sentencia la Corte determin\u00f3 entre otras violaciones que el Estado era responsable de ", - "values": [ - "Supervisi\u00f3n de cumplimiento de Sentencia" - ] - }, - { - "text": "VOTO CONCURRENTE DEL JUEZ AA. CAN\u00c7ADO TRINDADE Al votar a favor de la adopci\u00f3n de las presentes Medidas Provisionales de Protecci\u00f3n mediante las cuales la Corte Interamericana de Derechos Humanos ordena que se extienda protecci\u00f3n a todos los miembros de las Comunidades del Jiguamiand\u00f3 y del Curbarad\u00f3 en Colombia me veo en la obligaci\u00f3n de hacer referencia a mi Voto Concurrente en la Resoluci\u00f3n de Medidas Provisionales de Protecci\u00f3n adoptada anteriormente por esta Corte el d\u00eda de junio de en ", - "values": [ - "Medidas Provisionales" - ] - }, - { - "text": "VOTO RAZONADO DEL JUEZ EDUARDO FERRER MACGREGOR POISOT CASO COMUNIDADES IND\u00cdGENAS MIEMBROS DE LA ASOCIACI\u00d3N LHAKA HONHAT NUESTRA TIERRA VS. ARGENTINA SENTENCIA DE DE FEBRERO DE Fondo Reparaciones y Costas INTRODUCCI\u00d3N Han pasado casi veinte a\u00f1os desde que la Corte Interamericana de Derechos Humanos en adelante Corte IDH o Tribunal Interamericano decidi\u00f3 el primer caso en donde abord\u00f3 la propiedad colectiva ind\u00edgena e hizo alusi\u00f3n a la relaci\u00f3n especial que los pueblos y comunidades ind\u00edgenas", - "values": [ - "Voto Separado" - ] - }, - { - "text": "VOTO CONCURRENTE JUEZ PATRICIO PAZMI\u00d1O FREIRE SENTENCIA DE DE FEBRERO DE CORTE INTERAMERICANA DE DERECHOS HUMANOS CASO COMUNIDADES IND\u00cdGENAS MIEMBROS DE LA ASOCIACI\u00d3N LHAKA HONHAT NUESTRA TIERRA VS. ARGENTINA PRIMERA. La sentencia del caso Comunidades Ind\u00edgenas Miembros De La Asociaci\u00f3n Lhaka Honhat Nuestra Tierra Vs. Argentina en adelante la Sentencia se inscribe dentro de la l\u00ednea jurisprudencial adoptada por la Corte Interamericana de Derechos Humanos en adelante Corte IDH desde el caso ", - "values": [ - "Voto Separado" - ] - }, - { - "text": "VOTO PARCIALMENTE DISIDENTE DEL JUEZ EDUARDO VIO GROSSI CORTE INTERAMERICANA DE DERECHOS HUMANOS CASO COMUNIDADES IND\u00cdGENAS MIEMBROS DE LA ASOCIACI\u00d3N LHAKA HONHAT NUESTRA TIERRA VS. ARGENTINA SENTENCIA DE DE FEBRERO DE Fondo Reparaciones y Costas I. INTRODUCCI\u00d3N. Se expide el presente voto parcialmente disidente con relaci\u00f3n a la Sentencia del r\u00f3tulo a los efectos de dar cuenta de las razones por las que se discrepa de lo dispuesto en los resolutivos Ns y de aquella los que sobre la base", - "values": [ - "Voto Separado" - ] - }, - { - "text": "VOTO CONCURRENTE DEL JUEZ EDUARDO VIO GROSSI CORTE INTERAMERICANA DE DERECHOS HUMANOS CASO CARRANZA ALARC\u00d3N VS. ECUADOR SENTENCIA DE DE FEBRERO DE Excepciones preliminares Fondo Reparaciones y Costas Se emite el presente voto concurrente con la Sentencia del ep\u00edgrafe a los efectos de indicar la raz\u00f3n por la que atendido lo expresado en otros de sus votos individuales sobre la materia el suscrito ha votado favorablemente el resolutivo N de aquella. Dicho motivo dice relaci\u00f3n con la resoluci\u00f3n ", - "values": [ - "Voto Separado" - ] - }, - { - "text": "VOTO PARCIALMENTE DISIDENTE DEL JUEZ HUMBERTO ANTONIO SIERRA PORTO CASO CUSCUL PIVARAL Y OTROS VS. GUATEMALA SENTENCIA DE DE AGOSTO DE Excepci\u00f3n Preliminar Fondo Reparaciones y Costas Con el acostumbrado respeto por las decisiones de la Corte Interamericana de Derechos Humanos en adelante tambi\u00e9n la Corte o el Tribunal me permito formular el presente voto parcialmente disidente. El voto se centra en el an\u00e1lisis de fondo que realiz\u00f3 la Corte acerca de la responsabilidad internacional del en ", - "values": [ - "Voto Separado" - ] - }, - { - "text": "VOTO CONCURRENTE DEL JUEZ EUGENIO RA\u00daL ZAFFARONI CASO ROCHE AZA\u00d1A Y OTROS VS. NICARAGUA SENTENCIA DE DE JUNIO DE Fondo y Reparaciones Entiendo que en el presente caso corresponde recalcar que la responsabilidad internacional del Estado en cuanto a la violaci\u00f3n del Derecho Humano a la vida no surge del mero resultado de las acciones de sus agentes en la supuesta aplicaci\u00f3n de la fuerza de las armas de guerra suministradas por el propio Estado sino de la posterior y arbitraria impunidad de En ", - "values": [ - "Voto Separado" - ] - }, - { - "text": "VOTO CONCURRENTE JUEZ L. PATRICIO PAZMI\u00d1O FREIRE CASO ROCHE AZA\u00d1A Y OTROS VS. NICARAGUA SENTENCIA DE DE JUNIO DE Fondo y Reparaciones I. Introducci\u00f3n La sentencia del caso Roche Aza\u00f1a y otros Vs Nicaragua consolida y desarrolla los est\u00e1ndares relativos a los deberes de los Estados de garantizar los derechos de las personas migrantes a un acceso equitativo y efectivo a la justicia. La sentencia aborda el derecho a las garant\u00edas judiciales y a la protecci\u00f3n judicial considerando la especial ", - "values": [ - "Voto Separado" - ] - }, - { - "text": "VOTO DISIDENTE DEL JUEZ L. PATRICIO PAZMI\u00d1O FREIRE A LA RESOLUCI\u00d3N EMITIDA EL DE JULIO DE EN EL CASO DEL PENAL MIGUEL CASTRO CASTRO VS. PER\u00da En la Resoluci\u00f3n en cuesti\u00f3n mi decisi\u00f3n se aparta del criterio de mayor\u00eda que ha resuelto realizar en el marco de la supervisi\u00f3n de cumplimiento de la Sentencia una supervisi\u00f3n reforzada respecto de la medida de tratamiento m\u00e9dico y psicol\u00f3gico ordenada en el presente caso respecto de las cinco v\u00edctimas sobre las cuales versa la presente solicitud de ", - "values": [ - "Voto Separado" - ] - }, - { - "text": "VOTO DISIDENTE DEL JUEZ EUGENIO RA\u00daL ZAFFARONI RESPECTO DE LA SOLICITUD DE MEDIDAS PROVISIONALES PRESENTADA EN EL CASO DEL PENAL MIGUEL CASTRO CASTRO VS. PER\u00da Disiento con el criterio de mayor\u00eda debido a que considero que la Corte debi\u00f3 ordenar medidas provisionales en los t\u00e9rminos de los art\u00edculos de la Convenci\u00f3n Americana y de su Reglamento a favor de las cinco v\u00edctimas para las cuales se plante\u00f3 la solicitud. Toda vez que estas cinco personas se encuentran ante una situaci\u00f3n de urgencia ", - "values": [ - "Voto Separado" - ] - }, - { - "text": "VOTO DISIDENTE DEL JUEZ EDUARDO VIO GROSSI RESOLUCI\u00d3N DE LA CORTE INTERAMERICANA DE DERECHOS HUMANOS DE DE JUNIO DE MEDIDAS PROVISIONALES RESPECTO DE COLOMBIA CASO COMERCIANTES. I. INTRODUCCI\u00d3N. Se expide el presente voto disidente respecto de la Resoluci\u00f3n del t\u00edtulo que ha ratificado la Resoluci\u00f3n de Medidas Urgentes de la Presidenta de la Corte Interamericana de Derechos Humanos del de abril del a\u00f1o en curso Con el prop\u00f3sito de facilitar una mayor comprensi\u00f3n de esta divergencia ", - "values": [ - "Voto Separado" - ] - }, - { - "text": "VOTO CONCURRENTE Leoncio Patricio Pazmi\u00f1o Freire Juez II. LA DEMOCRACIA Y LOS DERECHOS HUMANOS. Art\u00edculo La democracia es indispensable para el ejercicio efectivo de las libertades fundamentales y los derechos humanos en su car\u00e1cter universal indivisible e interdependiente consagrados en las respectivas constituciones de los Estados y en los instrumentos interamericanos e internacionales de derechos humanos Carta Democr\u00e1tica Interamericana. Consideraciones de contexto. En un continente que no ", - "values": [ - "Voto Separado" - ] - }, - { - "text": "VOTO CONCURRENTE DEL JUEZ EDUARDO VIO GROSSI RESOLUCI\u00d3N DE LA CORTE INTERAMERICANA DE DERECHOS HUMANOS DE DE SEPTIEMBRE DE SOLICITUD DE MEDIDAS PROVISIONALES Y SUPERVISI\u00d3N DE CUMPLIMIENTO DE SENTENCIA CASO MOLINA THEISSEN VS. GUATEMALA. Se emite el presente voto concurrente respecto de la Resoluci\u00f3n indicada en el t\u00edtulo en m\u00e9rito de que no obstante aprobar sus puntos resolutivos y en particular el primero no se comparte la consideraci\u00f3n consignada en su p\u00e1rrafo N Efectivamente a juicio ", - "values": [ - "Voto Separado" - ] - }, - { - "text": "VOTO CONCURRENTE DEL JUEZ EDUARDO VIO GROSSI RESOLUCI\u00d3N DE LA CORTE INTERAMERICANA DE DERECHOS HUMANOS DE DE SEPTIEMBRE DE SOLICITUD DE MEDIDAS PROVISIONALES Y SUPERVISI\u00d3N DE CUMPLIMIENTO DE SENTENCIA CASO GALINDO C\u00c1RDENAS Y OTROS VS. PER\u00da Se emite el presente voto concurrente respecto de la Resoluci\u00f3n indicada en el t\u00edtulo en m\u00e9rito de que no obstante aprobar sus puntos resolutivos y en particular el primero no se comparte la consideraci\u00f3n consignada en su p\u00e1rrafo N de sus considerandos ", - "values": [ - "Supervisi\u00f3n de cumplimiento de Sentencia", - "Medidas Provisionales" - ] - }, - { - "text": "VOTO DISIDENTE DEL JUEZ EDUARDO VIO GROSSI RESOLUCI\u00d3N DE LA CORTE INTERAMERICANA DE DERECHOS HUMANOS DE DE SEPTIEMBRE DE MEDIDAS PROVISIONALES RESPECTO DE HONDURAS CASO COMUNIDADES GAR\u00cdFUNAS DE TRIUNFO DE LA CRUZ Y PUNTA PIEDRA. I. INTRODUCCI\u00d3N. Se expide el presente voto disidente respecto de la Resoluci\u00f3n del t\u00edtulo que ha ratificado la Resoluci\u00f3n de Medidas Urgentes de la Presidenta de la Corte Interamericana de Derechos Humanos del de agosto del a\u00f1o en curso En atenci\u00f3n a la de ", - "values": [ - "Voto Separado" - ] - }, - { - "text": "VOTO DISIDENTE EN CUANTO AL PUNTO DEL RESOLUTORIO DEL JUEZ EUGENIO RA\u00daL ZAFFARONI EN LA SENTENCIA DE DE JULIO DE DE LA CORTE INTERAMERICANA DE DERECHOS HUMANOS EN EL CASO PETRO VS. COLOMBIA Es de p\u00fablico y notorio que el se\u00f1or Petro es un pol\u00edtico incluso un candidato a la Presidencia de la Rep\u00fablica. Tambi\u00e9n que ha sido sometido a un proceso irregular al punto de ser revertida la decisi\u00f3n que interrumpi\u00f3 el cumplimiento de su mandato popular del propio Estado. No se trat\u00f3 en el caso de una ", - "values": [ - "Voto Separado" - ] - }, - { - "text": "VOTO DISIDENTE DEL JUEZ RICARDO P\u00c9REZ MANRIQUE CASO SPOLTORE VS. ARGENTINA SENTENCIA DE DE JUNIO DE Excepci\u00f3n Preliminar Fondo Reparaciones y Costas INTRODUCCI\u00d3N Formulo el presente voto disidente en el caso Spoltore Vs. Argentina en adelante caso Spoltore por considerar que la Corte Interamericana de Derechos Humanos en adelante la Corte o el Tribunal Interamericano debi\u00f3 acoger la excepci\u00f3n preliminar de agotamiento de los recursos internos. Asimismo en cuanto al abordaje de las cuestiones", - "values": [ - "Voto Separado" - ] - }, - { - "text": "VOTO CONCURRENTE DEL JUEZ L. PATRICIO PAZMI\u00d1O FREIRE CASO SPOLTORE VS. ARGENTINA SENTENCIA DE DE JUNIO DE Excepci\u00f3n Preliminar Fondo Reparaciones y Costas La Sentencia del caso Spoltore Vs. Argentina desarrolla y fortalece los est\u00e1ndares relativos a la relaci\u00f3n del derecho al acceso a la justicia y los derechos econ\u00f3micos sociales culturales y ambientales. En particular la Sentencia establece que los recursos judiciales que buscan proteger derechos econ\u00f3micos sociales culturales y deben ser", - "values": [ - "Voto Separado" - ] - }, - { - "text": "VOTO RAZONADO DEL JUEZ EDUARDO FERRER MACGREGOR POISOT CASO SPOLTORE VS. ARGENTINA SENTENCIA DE DE JUNIO DE Excepci\u00f3n Preliminar Fondo Reparaciones y Costas I. INTRODUCCI\u00d3N Los alegatos estatales invocando la excepci\u00f3n preliminar por falta de agotamiento de recursos internos han estado presentes desde el primer caso contencioso resuelto por la Corte Interamericana de Derechos Humanos en adelante la Corte IDH o el Tribunal Interamericano. En efecto en la sentencia sobre excepciones del caso ", - "values": [ - "Voto Separado" - ] - }, - { - "text": "VOTO DISIDENTE DEL JUEZ HUMBERTO ANTONIO SIERRA PORTO CASO SPOLTORE VS. ARGENTINA SENTENCIA DE DE JUNIO DE Excepci\u00f3n Preliminar Fondo Reparaciones y Costas Con el reiterado respeto por las decisiones de la Corte Interamericana de Derechos Humanos en adelante tambi\u00e9n la Corte o el Tribunal me permito formular el presente voto parcialmente disidente. En este voto explicar\u00e9 mi discrepancia respecto de la posici\u00f3n que ha adoptado la mayor\u00eda de rechazar la excepci\u00f3n preliminar presentada por el ", - "values": [ - "Voto Separado" - ] - }, - { - "text": "VOTO DISIDENTE DEL JUEZ EDUARDO VIO GROSSI CASO SPOLTORE VS. ARGENTINA SENTENCIA DE DE JUNIO DE Excepci\u00f3n Preliminar Fondo Reparaciones y Costas Se emite el presente voto disidente con relaci\u00f3n a la Sentencia del t\u00edtulo por discrepar en lo principal de lo dispuesto en su Resolutivo N concerniente al cumplimiento del requisito del previo agotamiento de los recursos internos por las razones que ya se han expuesto en otros votos individuales del suscrito que se reiteran en lo que sean ", - "values": [ - "Voto Separado" - ] - }, - { - "text": "VOTO CONCURRENTE DEL JUEZ EDUARDO VIO GROSSI RESOLUCI\u00d3N DE LA CORTE INTERAMERICANA DE DERECHOS HUMANOS DE DE JUNIO DE MEDIDAS PROVISIONALES RESPECTO DE M\u00c9XICO CASO FERN\u00c1NDEZ ORTEGA Y OTROS Se emite el presente voto concurrente de la Resoluci\u00f3n del ep\u00edgrafe reiterando as\u00ed lo expuesto en los expedidos por el suscrito el de febrero de y el de febrero de relativos al mismo asunto haciendo presente que si bien no est\u00e1 as\u00ed siguiendo estrictamente la posici\u00f3n que adopt\u00f3 en cuanto a otras sobre ", - "values": [ - "Voto Separado" - ] - }, - { - "text": "VOTO PARCIALMENTE DISIDENTE DEL JUEZ HUMBERTO ANTONIO SIERRA PORTO CASO EMPLEADOS DE LA F\u00c1BRICA DE FUEGOS EN SANTO ANT\u00d4NIO DE JESUS Y SUS FAMILIARES VS. BRASIL SENTENCIA DE DE JULIO DE Excepciones Preliminares Fondo Reparaciones y Costas Con el reiterado respeto por las decisiones de la Corte Interamericana de Derechos Humanos en adelante la Corte o el Tribunal y aunque comparto la mayor parte de las consideraciones que respaldan la Sentencia adoptada me permito formular el presente voto ", - "values": [ - "Voto Separado" - ] - }, - { - "text": "VOTO RAZONADO DEL JUEZ EDUARDO FERRER MACGREGOR POISOT CASO EMPLEADOS DE LA F\u00c1BRICA DE FUEGOS EN SANTO ANT\u00d4NIO DE JESUS Y SUS FAMILIARES VS. BRASIL SENTENCIA DE DE JULIO DE Excepci\u00f3n Preliminar Fondo Reparaciones y Costas INTRODUCCI\u00d3N EMPRESA Y DERECHOS HUMANOS DERECHO AL TRABAJO POBREZA DISCRIMINACI\u00d3N ESTRUCTURAL INTERSECCIONAL E IGUALDAD MATERIAL Puede el Estado ser responsable internacionalmente por la violaci\u00f3n de derechos humanos ocasionada por actos cometidos por una empresa privada ", - "values": [ - "Voto Separado" - ] - }, - { - "text": "VOTO CONCURRENTE DEL JUEZ RICARDO C. P\u00c9REZ MANRIQUE CASO EMPLEADOS DE LA F\u00c1BRICA DE FUEGOS EN SANTO ANT\u00d4NIO DE JESUS Y SUS FAMILIARES VS. BRASIL SENTENCIA DE DE JULIO DE Excepciones Preliminares Fondo Reparaciones y Costas I. Introducci\u00f3n En la sentencia se declara entre otras la violaci\u00f3n de los art\u00edculos y de la Convenci\u00f3n Americana sobre Derechos Humanos en adelante la Convenci\u00f3n por haberse acreditado una situaci\u00f3n de discriminaci\u00f3n interseccional y estructural que vulner\u00f3 derechos ", - "values": [ - "Voto Separado" - ] - }, - { - "text": "VOTO PARCIALMENTE DISIDENTE DEL JUEZ EDUARDO VIO GROSSI CORTE INTERAMERICANA DE DERECHOS HUMANOS CASO EMPLEADOS DE LA F\u00c1BRICA DE FUEGOS EN SANTO ANT\u00d4NIO DE JESUS Y SUS FAMILIARES VS. BRASIL SENTENCIA DE DE JULIO DE Excepciones Preliminares Fondo Reparaciones y Costas. I. INTRODUCCI\u00d3N. Se expide el presente voto parcialmente disidente con relaci\u00f3n a la Sentencia del r\u00f3tulo a los efectos de dar cuenta de las razones por las que se discrepa por de pronto de lo dispuesto en los Resolutivos N ", - "values": [ - "Voto Separado" - ] - }, - { - "text": "VOTO CONCURRENTE DEL JUEZ EDUARDO VIO GROSSI RESOLUCI\u00d3N DE LA CORTE INTERAMERICANA DE DERECHOS HUMANOS DE DE NOVIEMBRE DE CASO ACEVEDO JARAMILLO Y OTROS VS. PER\u00da SOLICITUD DE MEDIDAS PROVISIONALES Y SUPERVISI\u00d3N DE CUMPLIMIENTO DE SENTENCIA Se expide el presente voto concurrente con la Resoluci\u00f3n del ep\u00edgrafe por las mismas razones esgrimidas en el tambi\u00e9n voto concurrente de fecha de septiembre de concerniente a la Resoluci\u00f3n de la Corte Interamericana de Derechos Humanos de esa fecha de ", - "values": [ - "Voto Separado" - ] - }, - { - "text": "VOTO CONCURRENTE Y PARCIALMENTE DISIDENTE DEL JUEZ HUMBERTO ANTONIO SIERRA PORTO CORTE INTERAMERICANA DE DERECHOS HUMANOS CASO CASA NINA VS. PER\u00da SENTENCIA DE DE NOVIEMBRE DE Excepciones Preliminares Fondo Reparaciones y Costas Con el acostumbrado respeto por las decisiones mayoritarias de la Corte Interamericana de Derechos Humanos en adelante la Corte o el Tribunal el presente voto tiene por objeto se\u00f1alar algunas discrepancias frente al an\u00e1lisis de fondo que realiz\u00f3 la Corte acerca de la ", - "values": [ - "Voto Separado" - ] - }, - { - "text": "VOTO CONCURRENTE DEL JUEZ RICARDO C. P\u00c9REZ MANRIQUE CASO CASA NINA VS. PER\u00da SENTENCIA DE DE NOVIEMBRE DE Excepciones Preliminares Fondo Reparaciones y Costas I. Introducci\u00f3n En la sentencia se declara entre otras la violaci\u00f3n de los art\u00edculos c y de la Convenci\u00f3n Americana sobre Derechos Humanos en adelante la Convenci\u00f3n por la violaci\u00f3n de las garant\u00edas judiciales el derecho de permanecer en el cargo en condiciones de igualdad y el derecho al trabajo. El caso se relaciona con una serie ", - "values": [ - "Voto Separado" - ] - }, - { - "text": "VOTO DISIDENTE DEL JUEZ EDUARDO VIO GROSSI CORTE INTERAMERICANA DE DERECHOS HUMANOS CASO CASA NINA VS. PER\u00da SENTENCIA DE DE NOVIEMBRE DE Excepciones preliminares Fondo Reparaciones y Costas. I. INTRODUCCI\u00d3N. Se expide el presente voto parcialmente disidente con relaci\u00f3n a la Sentencia del r\u00f3tulo a los efectos de dar cuenta de las razones por las que se discrepa de lo dispuesto en su Resolutivo N en el que sobre la base de lo prescrito en el art\u00edculo de la Convenci\u00f3n Americana sobre se ", - "values": [ - "Voto Separado" - ] - }, - { - "text": "VOTO RAZONADO DEL JUEZ EDUARDO FERRER MACGREGOR POISOT CASO MART\u00cdNEZ ESQUIVIA VS. COLOMBIA SENTENCIA DE DE OCTUBRE DE Excepciones preliminares Fondo y Reparaciones INTRODUCCI\u00d3N El caso Mart\u00ednez Esquivia Vs. Colombia en adelante la Sentencia constituye un aporte fundamental en la jurisprudencia interamericana en relaci\u00f3n con la independencia de funcionarias y funcionarios que se encargan de la impartici\u00f3n de justicia. En efecto es la primera vez que la Corte Interamericana de Derechos Humanos", - "values": [ - "Voto Separado" - ] - }, - { - "text": "VOTO CONCURRENTE DEL JUEZ EDUARDO VIO GROSSI RESOLUCI\u00d3N DE LA CORTE INTERAMERICANA DE DERECHOS HUMANOS DE DE NOVIEMBRE DE SOLICITUD DE MEDIDAS PROVISIONALES Y SUPERVISI\u00d3N DE CUMPLIMIENTO DE SENTENCIA CASO MASACRES DE EL MOZOTE Y LUGARES ALEDA\u00d1OS VS. EL SALVADOR Se expide el presente voto concurrente con la Resoluci\u00f3n del ep\u00edgrafe por las mismas razones esgrimidas en el tambi\u00e9n voto concurrente de fecha de septiembre de concerniente a la Resoluci\u00f3n de la Corte Interamericana de Derechos de ", - "values": [ - "Voto Separado" - ] - }, - { - "text": "VOTO CONCURRENTE DEL JUEZ L. PATRICIO PAZMI\u00d1O FREIRE CASO URRUTIA LAUBREAUX VS. CHILE SENTENCIA DE DE AGOSTO DE En la Sentencia del caso Urrutia Laubreaux vs. Chile la Corte desarroll\u00f3 y fortaleci\u00f3 los est\u00e1ndares relativos a la independencia judicial y en particular las garant\u00edas contra presiones internas y externas necesarias para asegurarla. Respecto a la independencia interna este Tribunal citando el Estatuto del Juez Iberoamericano se\u00f1al\u00f3 que el Estado debe asegurar que los jueces no se", - "values": [ - "Voto Separado" - ] - }, - { - "text": "VOTO DISIDENTE DEL JUEZ EDUARDO VIO GROSSI RESOLUCI\u00d3N DE LA CORTE INTERAMERICANA DE DERECHOS HUMANOS DE DE FEBRERO DE CASO INTEGRANTES Y MILITANTES DE LA UNI\u00d3N PATRI\u00d3TICA VS. COLOMBIA. CONSIDERANDO PRIMERO Que las causales de recusaci\u00f3n de peritos previstas en el art\u00edculo del Reglamento de la Corte Interamericana de Derechos Humanos en adelante la Corte tienen por finalidad garantizar la imparcialidad de dichos auxiliares de justicia del \u00f3rgano jurisdiccional y por ende principalmente de ", - "values": [ - "Voto Separado" - ] - } -] \ No newline at end of file diff --git a/src/extractors/text_to_multi_option_extractor/labeled_data/cejil_document_type/options.json b/src/extractors/text_to_multi_option_extractor/labeled_data/cejil_document_type/options.json deleted file mode 100644 index 0e712dd..0000000 --- a/src/extractors/text_to_multi_option_extractor/labeled_data/cejil_document_type/options.json +++ /dev/null @@ -1,14 +0,0 @@ -[ - "Supervisi\u00f3n de cumplimiento de Sentencia", - "Medidas Provisionales", - "Voto Separado", - "Reparaciones", - "Costas", - "Otros", - "Fondo", - "Excepciones Preliminares", - "Interpretaci\u00f3n", - "Fondo de asistencia a v\u00edctimas", - "Competencia", - "Precautionary Measures" -] \ No newline at end of file diff --git a/src/extractors/text_to_multi_option_extractor/labeled_data/cejil_judge/labels.json b/src/extractors/text_to_multi_option_extractor/labeled_data/cejil_judge/labels.json deleted file mode 100644 index 647b7ad..0000000 --- a/src/extractors/text_to_multi_option_extractor/labeled_data/cejil_judge/labels.json +++ /dev/null @@ -1,82 +0,0 @@ -[ - { - "text": " In The undersigned does not wish to conclude with this dissenting opinion without pointing out that the violence that existed in Venezuela during the occurrence of the facts analyzed in the case was deplorable; but it has been proven in the foregoing paragraphs that the domestic courts did not have the opportunity to try to find a solution to the conflict brought to the Court\u2019s Based on the foregoing, I feel I have the duty and obligation to dissent from the judgment and I hereby present my opinion with the utmost respect for those who have a different point of view. It is expressed, in this way, my reasoning to support my dissenting opinion in this case. Date ut-supra . Pier Paolo Pasceri Judge ad hoc Pablo Saavedra Alessandri Secretary", - "values": [ - "Pier Paolo Pasceri" - ] - }, - { - "text": " 32. A 33. A su vez, el fen\u00f3meno actual de la expansi\u00f3n de dichas personalidad y capacidad jur\u00eddicas internacionales 28 responde, como se desprende de recientes casos ante esta Corte atinentes a miembros de colectividades humanas, a una necesidad apremiante de la comunidad internacional de nuestros d\u00edas. En fin, el desarrollo doctrinal y Ant\u00f4nio Augusto Can\u00e7ado Trindade Juez Pablo Saavedra Alessandri Secretario 27 . Cf. A.A. Can\u00e7ado Trindade, \"Reply [- Assistance Humanitaire]\", 70 Annuaire de l'Institut de Droit International - Session de Bruges (2002-2003) n. 1, pp. 536-540. 28 . Cf. A.A. Can\u00e7ado Trindade, El Acceso Directo del Individuo a los Tribunales Internacionales de Derechos Humanos , Bilbao, Universidad de Deusto, 2001, pp. 9-104.", - "values": [ - "Ant\u00f4nio Augusto Can\u00e7ado Trindade", - "Sergio Garc\u00eda Ram\u00edrez" - ] - }, - { - "text": " 1. Apremiar al Gobierno de Honduras a que adopte sin dilaci\u00f3n cuantas medidas sean necesarias para prevenir nuevos atentados contra los derechos fundamentales de quienes han comparecido o han sido citados para comparecer ante esta Corte con motivo de los casos Vel\u00e1squez Rodr\u00edguez, Fair\u00e9n Garbi y Sol\u00eds Corrales y God\u00ednez Cruz, en escrupuloso cumplimiento de 2. Instar igualmente al Gobierno de Honduras para que extreme todos los medios a su alcance para investigar esos repudiables cr\u00edmenes, identificar a los culpables y aplicarles las sanciones previstas en el derecho interno hondure\u00f1o. Rafael Nieto Navia Presidente H\u00e9ctor Gros Espiell Rodolfo E. Piza E. Pedro Nikken H\u00e9ctor Fix-Zamudio Rigoberto Espinal Juez ad hoc Charles Moyer Secretario", - "values": [ - "Rigoberto Espinal" - ] - }, - { - "text": " 5 6 2 9. En el presente caso, comparto plenamente la decisi\u00f3n adoptada, sin embargo, hago un respetuoso llamado para que la Corte Interamericana se mantenga atenta y expectante de procesos que llegan a su conocimiento y que en principio gozan de una apariencia de legalidad, pero que, al realizar un an\u00e1lisis conglobado del contexto, as\u00ed como de los diferentes elementos probatorios, evidencian clara motivaci\u00f3n y componentes censitarios que vulneran el principio de L. Patricio Pazmi\u00f1o Freire Juez Pablo Saavedra Alessandri Secretario 7 Voto parcialmente disidente del Juez L. Patricio Pazmi\u00f1o Freire en el Caso Petro Urrego Vs. Colombia. Excepciones Preliminares, Fondo, Reparaciones y Costas. Sentencia de 8 de julio de 2020. Serie C No. 406. 3", - "values": [ - "L. Patricio Pazmi\u00f1o Freire" - ] - }, - { - "text": "VOTO CONCURRENTE DEL JUEZ EDUARDO VIO GROSSI RESOLUCI\u00d3N DE LA CORTE INTERAMERICANA DE DERECHOS HUMANOS DE 19 DE Se expide el presente voto concurrente con la Resoluci\u00f3n del ep\u00edgrafe, por las mismas razones esgrimidas en el tambi\u00e9n voto concurrente, de fecha 3 de septiembre de 2020, concerniente a la \u201cResoluci\u00f3n de la Corte Interamericana de Derechos Humanos\u201d, de esa fecha, \u201cSolicitud de Medidas Provisionales y Supervisi\u00f3n de Cumplimiento de Sentencia, Caso Galindo C\u00e1rdenas y Otros VS. Per\u00fa\u201d, argumentos que, por ende, se dan por reproducidos y que dicen relaci\u00f3n, en particular, con la situaci\u00f3n ahora se\u00f1alada en el p\u00e1rrafo N\u00b0 11 de los Considerandos de la Resoluci\u00f3n del r\u00f3tulo. Eduardo Vio Grossi Juez Pablo Saavedra Alessandri Secretario", - "values": [ - "Eduardo Vio Grossi" - ] - }, - { - "text": " 58 V\u00e9anse los casos 59 V\u00e9anse los principios y directrices relativos al derecho a un juicio justo y a asistencia jur\u00eddica en \u00c1frica. Cfr. Caso Mart\u00ednez Esquivia Vs. Colombia. Excepciones preliminares, Fondo y Reparaciones , supra, p\u00e1rr 93. 60 V\u00e9anse las Directrices de las Naciones Unidos sobre la funci\u00f3n de los fiscales, as\u00ed como los criterios de la Relator\u00eda Especial de Naciones Unidas sobre la independencia de los magistrados y abogados. Cfr. Caso Mart\u00ednez Esquivia Vs. Colombia, supra, p\u00e1rrs. 89 y 90. 61 V\u00e9ase, entre otros elementos, la Declaraci\u00f3n de Burdeos, relativo al informe conjunto del Consejo Consultivo de Jueces Europeos y el Consejo Consultivo de Fiscales Europeos. Cfr. Caso Mart\u00ednez Esquivia Vs. Colombia, supra, p\u00e1rr. 91. 13", - "values": [ - "Eduardo Ferrer Mac-Gregor Poisot" - ] - }, - { - "text": "20. In 21. Obiter dicta , it is necessary to recall the disastrous results of corporate and verticalized judiciaries in the face of the irruption of the totalitarian regimes in the inter- war years in Germany, Italy and France. Moreover, it should also be added that, even though this case relates to a rule applicable by the collegiate organs of the Judiciary itself, the prohibitions that it contains could not be tolerated even if the sanctions were imposed by an organ external to the Judiciary or belonging to the Judiciary but distinct from the collegiate 22. I add these considerations in concurrence with those expressed unanimously in this judgment. 23. This is my opinion. Eugenio Ra\u00fal Zaffaroni Judge Pablo Saavedra Alessandri Secretary 3", - "values": [ - "L. Patricio Pazmi\u00f1o Freire", - "Eugenio Ra\u00fal Zaffaroni" - ] - }, - { - "text": " VOTO CONCURRENTE DEL JUEZ EDUARDO VIO GROSSI RESOLUCI\u00d3N DE LA CORTE INTERAMERICANA DE DERECHOS HUMANOS DE 19 DE Se expide el presente voto concurrente con la Resoluci\u00f3n del ep\u00edgrafe, por las mismas razones esgrimidas en el tambi\u00e9n voto concurrente, de fecha 3 de septiembre de 2020, concerniente a la \u201cResoluci\u00f3n de la Corte Interamericana de Derechos Humanos\u201d, de esa fecha, \u201cSolicitud de Medidas Provisionales y Supervisi\u00f3n de Cumplimiento de Sentencia, Caso Galindo C\u00e1rdenas y Otros VS. Per\u00fa\u201d, argumentos que, por ende, se dan por reproducidos y que dicen relaci\u00f3n, en particular, con la situaci\u00f3n ahora se\u00f1alada en el p\u00e1rrafo N\u00b0 11 de los Considerandos de la Resoluci\u00f3n del r\u00f3tulo. Eduardo Vio Grossi Juez Pablo Saavedra Alessandri Secretario 1", - "values": [ - "Eduardo Vio Grossi" - ] - }, - { - "text": "VOTO CONCURRENTE DEL JUEZ EDUARDO VIO GROSSI, RESOLUCI\u00d3N DE LA CORTE INTERAMERICANA DE DERECHOS HUMANOS DE 19 DE Se expide el presente voto concurrente con la Resoluci\u00f3n del ep\u00edgrafe, por las mismas razones esgrimidas en el tambi\u00e9n voto concurrente, de fecha 3 de septiembre de 2020, concerniente a la \u201cResoluci\u00f3n de la Corte Interamericana de Derechos Humanos\u201d, de esa fecha, \u201cSolicitud de Medidas Provisionales y Supervisi\u00f3n de Cumplimiento de Sentencia, Caso Galindo C\u00e1rdenas y Otros VS. Per\u00fa\u201d, argumentos que, por ende, se dan por reproducidos y que dicen relaci\u00f3n, en particular, con la situaci\u00f3n ahora se\u00f1alada en el p\u00e1rrafo N\u00b0 13 de los Considerandos de la Resoluci\u00f3n del r\u00f3tulo. Eduardo Vio Grossi Juez Pablo Saavedra Alessandri Secretario", - "values": [ - "Eduardo Vio Grossi" - ] - }, - { - "text": " 21. Obiter dicta , cabe recordar el desastroso resultado de poderes judiciales corporativos y verticalizados ante la irrupci\u00f3n de los totalitarismos de entreguerras en Alemania, Italia y Francia. En otro orden, tambi\u00e9n es bueno agregar que si bien en el caso se trata de una norma aplicable por los \u00f3rganos colegiados del propio Poder Judicial, las prohibiciones que contiene no podr\u00edan ser toleradas tampoco si las sanciones fuesen impuestas por un \u00f3rgano ajeno al Poder Judicial o propio de \u00e9ste pero diferente de las instancias colegiadas de jueces, como 3 22. Agrego estos fundamentos en concurrencia con los expresados por unanimidad en la presente sentencia. 23. As\u00ed lo voto. Eugenio Ra\u00fal Zaffaroni Juez Pablo Saavedra Alessandri Secretario 4", - "values": [ - "Eugenio Ra\u00fal Zaffaroni" - ] - }, - { - "text": " 58 V\u00e9anse los casos 59 V\u00e9anse los principios y directrices relativos al derecho a un juicio justo y a asistencia jur\u00eddica en \u00c1frica. Cfr. Caso Mart\u00ednez Esquivia Vs. Colombia. Excepciones preliminares, Fondo y Reparaciones , supra, p\u00e1rr 93. 60 V\u00e9anse las Directrices de las Naciones Unidos sobre la funci\u00f3n de los fiscales, as\u00ed como los criterios de la Relator\u00eda Especial de Naciones Unidas sobre la independencia de los magistrados y abogados. Cfr. Caso Mart\u00ednez Esquivia Vs. Colombia, supra, p\u00e1rrs. 89 y 90. 61 V\u00e9ase, entre otros elementos, la Declaraci\u00f3n de Burdeos, relativo al informe conjunto del Consejo Consultivo de Jueces Europeos y el Consejo Consultivo de Fiscales Europeos. Cfr. Caso Mart\u00ednez Esquivia Vs. Colombia, supra, p\u00e1rr. 91. 13", - "values": [ - "Eduardo Ferrer Mac-Gregor Poisot" - ] - }, - { - "text": "29. En el caso, el Sr. Casa Nina debi\u00f3 ejercer el cargo de fiscal sin la seguridad de la permanencia de sus funciones pese al car\u00e1cter de provisional de su nombramiento, lo Ricardo C. P\u00e9rez Manrique Juez Pablo Saavedra Alessandri Secretario 10 Directrices sobre la funci\u00f3n de los fiscales. Octavo Congreso de las Naciones Unidas sobre Prevenci\u00f3n del Delito y Tratamiento del Delincuente, celebrado en La Habana (Cuba), del 27 de agosto al 7 de septiembre de 1990, ONU Doc. A/CONF.144/28/Rev. 1 p. 189 (1990). https://www.ohchr.org/SP/ProfessionalInterest/Pages/RoleOfProsecutors.aspx 11 \"Principios b\u00e1sicos relativos a la independencia de la judicatura\" disponibles en https://www.ohchr.org/sp/professionalinterest/pages/independencejudiciary.aspx 7", - "values": [ - "Ricardo C. P\u00e9rez Manrique" - ] - }, - { - "text": " 103. 104. Sobre este \u00faltimo particular, no est\u00e1 de m\u00e1s recordar que, en la pr\u00e1ctica y m\u00e1s all\u00e1 de cualquier consideraci\u00f3n te\u00f3rica, la funci\u00f3n de la Corte es, en definitiva, dictar fallos que restablezcan, lo m\u00e1s pronto posible, el respeto de los derechos humanos violados en un espec\u00edfico caso. No es tan seguro que ello se logre respecto de violaciones de esos derechos que no fueron consideradas en la Convenci\u00f3n como justiciables ante aquella ni tampoco cuando, m\u00e1s que procurar resolver el caso que le ha sido sometido, parecer\u00eda que la Eduardo Vio Grossi Juez Pablo Saavedra Alessandri Secretario 107 Adoptada en el Vig\u00e9simo Octavo Per\u00edodo Extraordinario de Sesiones de la Asamblea General de la OEA, 11 de septiembre de 2001, Lima, Per\u00fa. 27", - "values": [ - "Eduardo Vio Grossi" - ] - } -] \ No newline at end of file diff --git a/src/extractors/text_to_multi_option_extractor/labeled_data/cejil_judge/options.json b/src/extractors/text_to_multi_option_extractor/labeled_data/cejil_judge/options.json deleted file mode 100644 index dd7c7f2..0000000 --- a/src/extractors/text_to_multi_option_extractor/labeled_data/cejil_judge/options.json +++ /dev/null @@ -1,11 +0,0 @@ -[ - "Eugenio Raúl Zaffaroni", - "Eduardo Vio Grossi", - "Pier Paolo Pasceri", - "Eduardo Ferrer Mac-Gregor Poisot", - "Antônio Augusto Cançado Trindade", - "Ricardo C. Pérez Manrique", - "Sergio García Ramírez", - "L. Patricio Pazmiño Freire", - "Rigoberto Espinal" -] \ No newline at end of file diff --git a/src/extractors/text_to_multi_option_extractor/labeled_data/cejil_mechanism/labels.json b/src/extractors/text_to_multi_option_extractor/labeled_data/cejil_mechanism/labels.json deleted file mode 100644 index 19fde5e..0000000 --- a/src/extractors/text_to_multi_option_extractor/labeled_data/cejil_mechanism/labels.json +++ /dev/null @@ -1,18758 +0,0 @@ -[ - { - "text": "VOTO RAZONADO DEL JUEZ SERGIO GARC\u00cdA RAM\u00cdREZ A PROP\u00d3SITO DE LA SENTENCIA DE LA CORTE INTERAMERICANA DE DERECHOS HUMANOS EN EL CASO VARGAS ARECO VS. PARAGUAY DE DE SEPTIEMBRE DE En este Voto s\u00f3lo me ocupar\u00e9 en un punto de la Sentencia dictada por la Corte Interamericana de Derechos Humanos en el Caso Vargas Areco vs. Paraguay a saber la reacci\u00f3n penal con respecto a la privaci\u00f3n de la vida de Gerardo Vargas Areco que se tradujo en dos procesos del orden criminal uno ante la justicia militar y", - "values": [ - "Corte Interamericana de Derechos Humanos" - ] - }, - { - "text": "Resoluci\u00f3n de la Corte Interamericana de Derechos Humanos de de septiembre de Supervisi\u00f3n de Cumplimiento de Sentencia y Solicitud de Adopci\u00f3n de Medidas Provisionales Caso De La Cruz Flores Vs. Per\u00fa Visto A Supervisi\u00f3n de cumplimiento de Sentencia La Sentencia de fondo reparaciones y costas en adelante la Sentencia emitida en el presente caso por la Corte Interamericana de Derechos Humanos en adelante la Corte la Corte Interamericana o el Tribunal el de noviembre de en la que dispuso ", - "values": [ - "Corte Interamericana de Derechos Humanos" - ] - }, - { - "text": "Resoluci\u00f3n de la Corte Interamericana de Derechos Humanos de de noviembre de Caso Goibur\u00fa y otros Vs. Paraguay Supervisi\u00f3n de Cumplimiento de Sentencia Visto La Sentencia de fondo reparaciones y costas de de septiembre de en adelante la Sentencia dictada por la Corte Interamericana de Derechos Humanos en adelante la Corte Interamericana la Corte o el Tribunal mediante la cual dispuso por unanimidad que El Estado debe realizar inmediatamente las debidas diligencias para activar y en un ", - "values": [ - "Corte Interamericana de Derechos Humanos" - ] - }, - { - "text": "RESOLUCI\u00d3N DE LA CORTE INTERAMERICANA DE DERECHOS HUMANOS DE DE SEPTIEMBRE DE CASO HERRERA ULLOA SUPERVISI\u00d3N DE CUMPLIMIENTO DE SENTENCIA VISTOS La Sentencia sobre excepciones preliminares fondo reparaciones y costas en adelante la Sentencia dictada por la Corte Interamericana de Derechos Humanos en adelante la Corte Interamericana la Corte o el Tribunal el de julio de en la cual por unanimidad DECLAR\u00d3 Que el Estado viol\u00f3 el derecho a la libertad de pensamiento y de expresi\u00f3n consagrado ", - "values": [ - "Corte Interamericana de Derechos Humanos" - ] - }, - { - "text": "VOTO CONJUNTO PARCIALMENTE DISIDENTE DE LA JUEZA CECILIA MEDINA QUIROGA Y DEL JUEZ ADHOC DIEGO RODRIGUEZ PINZON EN EL CASO SALVADOR CHIRIBOGA VS. ECUADOR SENTENCIA DE MARZO DE Estamos de acuerdo con la decisi\u00f3n de la Corte y en particular con lo dispuesto por este Tribunal en cuanto a los pagos diferidos a cinco a\u00f1os en los p\u00e1rrafos y pero discrepamos en lo relacionado con la falta de asignaci\u00f3n de intereses sobre el monto pendiente de pago durante esos cinco a\u00f1os en esos mismos p\u00e1rrafos. ", - "values": [ - "Corte Interamericana de Derechos Humanos" - ] - }, - { - "text": "Corte Interamericana de Derechos Humanos Caso Bayarri vs. Argentina Sentencia de de octubre de Excepci\u00f3n Preliminar Fondo Reparaciones y Costas En el caso Bayarri la Corte Interamericana de Derechos Humanos en adelante la Corte Interamericana la Corte o el Tribunal integrada por los siguientes jueces Cecilia Medina Quiroga Presidenta Diego Garc\u00edaSay\u00e1n Vicepresidente Sergio Garc\u00eda Ram\u00edrez Juez Manuel E. Ventura Robles Juez Margarette May Macaulay Jueza y Rhadys Abreu Blondet Jueza presente ", - "values": [ - "Corte Interamericana de Derechos Humanos" - ] - }, - { - "text": "RESOLUCI\u00d3N DE LA CORTE INTERAMERICANA DE DERECHOS HUMANOS DE DE JULIO DE CASO DE LAS HERMANAS SERRANO CRUZ VS. EL SALVADOR SUPERVISI\u00d3N DE CUMPLIMIENTO DE SENTENCIA VISTOS La Sentencia de fondo reparaciones y costas en adelante la Sentencia dictada por la Corte Interamericana de Derechos Humanos en adelante la Corte la Corte Interamericana o el Tribunal el de marzo de La Resoluci\u00f3n sobre cumplimiento de sentencia que emiti\u00f3 la Corte el de septiembre de en la cual DECLAR\u00d3 Que de con lo ", - "values": [ - "Corte Interamericana de Derechos Humanos" - ] - }, - { - "text": "RESOLUCI\u00d3N DE LA CORTE INTERAMERICANA DE DERECHOS HUMANOS DE DE NOVIEMBRE DE CASO YVON NEPTUNE VS. HAIT\u00cd SUPERVISI\u00d3N DE CUMPLIMIENTO DE SENTENCIA VISTO La Sentencia de fondo reparaciones y costas en adelante la Sentencia dictada por la Corte Interamericana de Derechos Humanos en adelante la Corte la Corte Interamericana o el Tribunal el de mayo de con relaci\u00f3n al caso Yvon Neptune. La Corte declar\u00f3 responsable internacionalmente a la Rep\u00fablica de Hait\u00ed en adelante el Estado o Hait\u00ed inter ", - "values": [ - "Corte Interamericana de Derechos Humanos" - ] - }, - { - "text": "RESOLUCI\u00d3N DE LA CORTE INTERAMERICANA DE DERECHOS HUMANOS DE DE SEPTIEMBRE DE MEDIDAS PROVISIONALES ASUNTO JAMES Y OTROS VISTOS La adopci\u00f3n de Medidas Provisionales ordenada por la Corte Interamericana de Derechos Humanos en adelante la Corte la Corte Interamericana o el Tribunal en el asunto James y otros relacionada con la situaci\u00f3n de peligro inminente y vulnerabilidad a un da\u00f1o irreparable de Wenceslaus James Anderson Noel Anthony Garcia Christopher Bethel Darrin Roger Thomas Haniff ", - "values": [ - "Corte Interamericana de Derechos Humanos" - ] - }, - { - "text": "INFORME N\u00ba CASO MAURICIO HERRERA ULLOA Y FERN\u00c1N VARGAS ROHRMOSER DEL DIARIO LA NACI\u00d3N COSTA RICA de diciembre de I. RESUMEN El de febrero del los se\u00f1ores Fernando Lincoln Guier Esquivel Carlos Ayala Corao Mauricio Herrera Ulloa y Fern\u00e1n Vargas Rohrmoser en adelante los peticionarios denunciaron ante la Comisi\u00f3n Interamericana de Derechos Humanos en adelante la Comisi\u00f3n la Comisi\u00f3n Interamericana o CIDH que la Rep\u00fablica de Costa Rica en adelante el Estado Costa Rica el Estado o el Estado", - "values": [ - "Comisi\u00f3n Interamericana de Derechos Humanos" - ] - }, - { - "text": "VOTO FUNDAMENTADO DO JUIZ A. A. CAN\u00c7ADO TRINDADE Ao votar a favor da ado\u00e7\u00e3o por parte da Corte Interamericana de Direitos Humanos da presente Senten\u00e7a no caso Yatama versus Nicar\u00e1gua vejome na obriga\u00e7\u00e3o de agregar este Voto Fundamentado para destacar dois pontos que me parecem merecedores de aten\u00e7\u00e3o especial. Em primeiro lugar o decidido pela Corte ao desconsiderar a terceira exce\u00e7\u00e3o preliminar interposta pelo Estado reflete o aperfei\u00e7oamento do procedimento perante o Tribunal nos \u00faltimos anos", - "values": [ - "Corte Interamericana de Derechos Humanos" - ] - }, - { - "text": "Resoluci\u00f3n de la Corte Interamericana de Derechos Humanos de de julio de Caso Guti\u00e9rrez Soler Vs. Colombia. Medidas Provisionales VISTOS La Resoluci\u00f3n dictada por la Corte Interamericana de Derechos Humanos en adelante la Corte la Corte Interamericana o el Tribunal el de marzo de mediante la cual se ordenaron las medidas provisionales en el presente caso. La Sentencia de fondo reparaciones y costas emitida por la Corte Interamericana el de septiembre de en este caso mediante la cual ", - "values": [ - "Corte Interamericana de Derechos Humanos" - ] - }, - { - "text": "Corte Interamericana de Derechos Humanos Caso de los Ni\u00f1os de la Calle Villagr\u00e1n Morales y otros Vs. Guatemala Sentencia de de mayo de Reparaciones y Costas En el caso de los Ni\u00f1os de la Calle caso Villagr\u00e1n Morales y otros vs. Guatemala la Corte Interamericana de Derechos Humanos en adelante la Corte la Corte Interamericana o el Tribunal integrada por los siguientes jueces Ant\u00f4nio A. Can\u00e7ado Trindade Presidente Hern\u00e1n Salgado Pesantes Juez Oliver Jackman Juez Alirio Abreu Burelli Juez Sergio", - "values": [ - "Corte Interamericana de Derechos Humanos" - ] - }, - { - "text": "RESOLUCI\u00d3N DE LA CORTE INTERAMERICANA DE DERECHOS HUMANOS DE DE NOVIEMBRE DE CASO L\u00d3PEZ MENDOZA VS. VENEZUELA SUPERVISI\u00d3N DE CUMPLIMIENTO DE SENTENCIA VISTO La Sentencia de fondo reparaciones y costas en adelante la Sentencia emitida por la Corte Interamericana de Derechos Humanos en adelante la Corte o el Tribunal el de septiembre de La Corte declar\u00f3 la responsabilidad internacional de la Rep\u00fablica Bolivariana de Venezuela en adelante el Estado o Venezuela por la vulneraci\u00f3n a los a ", - "values": [ - "Corte Interamericana de Derechos Humanos" - ] - }, - { - "text": "Resoluci\u00f3n de la Corte Interamericana de Derechos Humanos de de agosto de Caso Durand y Ugarte Vs. Per\u00fa Supervisi\u00f3n de Cumplimiento de Sentencia Visto La Sentencia de Reparaciones y Costas en adelante la Sentencia dictada por la Corte Interamericana de Derechos Humanos en adelante la Corte la Corte Interamericana o el Tribunal el de diciembre de mediante la cual Decidi\u00f3 Por unanimidad Que aprueba el acuerdo en los t\u00e9rminos de la Sentencia sobre reparaciones suscrito el de noviembre de ", - "values": [ - "Corte Interamericana de Derechos Humanos" - ] - }, - { - "text": "RESOLUCI\u00d3N DE LA CORTE INTERAMERICANA DE DERECHOS HUMANOS DE DE SEPTIEMBRE DE MEDIDAS PROVISIONALES ADOPTADAS POR LA CORTE INTERAMERICANA DE DERECHOS HUMANOS RESPECTO DE LA REP\u00daBLICA DE GUATEMALA CASO CARPIO NICOLLE VISTOS La Resoluci\u00f3n del Presidente de la Corte Interamericana de Derechos Humanos en adelante el Presidente de la Corte de de junio de mediante la cual Solicit\u00f3 al Gobierno de la Rep\u00fablica de Guatemala que adoptara sin dilaci\u00f3n cuantas medidas fueran necesarias que aseguraran", - "values": [ - "Corte Interamericana de Derechos Humanos" - ] - }, - { - "text": "RESOLUCI\u00d3N DEL PRESIDENTE DE LA CORTE INTERAMERICANA DE DERECHOS HUMANOS DE DE NOVIEMBRE DE CASO MALDONADO ORD\u00d3\u00d1EZ VS. GUATEMALA VISTO El escrito de sometimiento del caso y el Informe de Fondo de la Comisi\u00f3n Interamericana de Derechos Humanos en adelante la Comisi\u00f3n Interamericana o la Comisi\u00f3n el escrito de solicitudes argumentos y pruebas en adelante el escrito de solicitudes y argumentos de los representantes de la presunta v\u00edctima en adelante los representantes y el escrito de al del ", - "values": [ - "Corte Interamericana de Derechos Humanos" - ] - }, - { - "text": "Resoluci\u00f3n de la Corte Interamericana de Derechos Humanos De julio de Caso de la Masacre Plan de S\u00e1nchez Vs. Guatemala Supervisi\u00f3n de Cumplimiento de Sentencia Visto La Sentencia de reparaciones y costas en adelante la Sentencia de reparaciones o la Sentencia dictada por la Corte Interamericana de Derechos Humanos en adelante la Corte o el Tribunal el de noviembre de La Resoluci\u00f3n de Supervisi\u00f3n de Cumplimiento de Sentencia de la Corte de de noviembre de mediante la cual inter alia lo ", - "values": [ - "Corte Interamericana de Derechos Humanos" - ] - }, - { - "text": "RESOLUCI\u00d3N DEL PRESIDENTE DE LA CORTE INTERAMERICANA DE DERECHOS HUMANOS DE FEBRERO DE SUPERVISI\u00d3N DE CUMPLIMIENTO DE LAS MEDIDAS DE REPARACI\u00d3N SOBRE ATENCI\u00d3N M\u00c9DICA Y PSICOL\u00d3GICA ORDENADAS EN NUEVE CASOS COLOMBIANOS CONVOCATORIA DE AUDIENCIA PRIVADA VISTO La resoluci\u00f3n de convocatoria de audiencia en el marco de la supervisi\u00f3n de cumplimiento emitida por la Corte Interamericana de Derechos Humanos en adelante la Corte la Corte Interamericana o el Tribunal el de abril de en relaci\u00f3n con ", - "values": [ - "Corte Interamericana de Derechos Humanos" - ] - }, - { - "text": "Resoluci\u00f3n de la Presidenta de la Corte Interamericana de Derechos Humanos De de febrero de Caso Baena Ricardo y otros Trabajadores Vs. Panam\u00e1 Supervisi\u00f3n de Cumplimiento de Sentencia VISTO La Sentencia de fondo reparaciones y costas que emiti\u00f3 la Corte Interamericana de Derechos Humanos en adelante la Corte la Corte Interamericana o el Tribunal en el caso Baena Ricardo y otros el de febrero de en adelante la Sentencia. Las Resoluciones sobre el cumplimiento de la Sentencia emitidas por ", - "values": [ - "Corte Interamericana de Derechos Humanos" - ] - }, - { - "text": "RESOLUCI\u00d3N DE LA CORTE INTERAMERICANA DE DERECHOS HUMANOS DE DE SEPTIEMBRE DE CASO FAMILIA BARRIOS VS. VENEZUELA SUPERVISI\u00d3N DE CUMPLIMIENTO DE SENTENCIA VISTO La Sentencia de fondo reparaciones y costas en adelante la Sentencia dictada por la Corte Interamericana de Derechos Humanos en adelante la Corte Interamericana la Corte o el Tribunal el de noviembre de El caso se refiere a la privaci\u00f3n de la vida de siete integrantes de la familia Barrios a partir del a\u00f1o en el estado Aragua al ", - "values": [ - "Corte Interamericana de Derechos Humanos" - ] - }, - { - "text": "CORTE INTERAMERICANA DE DIREITOS HUMANOS CASO DOS MASSACRES DE EL MOZOTE E LUGARES VIZINHOS VS. EL SALVADOR SENTEN\u00c7A DE DE OUTUBRO DE M\u00e9rito Repara\u00e7\u00f5es e Custas No caso dos Massacres de El Mozote e lugares vizinhos A Corte Interamericana de Direitos Humanos doravante a Corte Interamericana a Corte ou o Tribunal integrada pelos seguintes ju\u00edzes Diego Garc\u00edaSay\u00e1n Presidente Manuel E. Ventura Robles VicePresidente Leonardo A. Franco Juiz Margarette May Macaulay Ju\u00edza Rhadys Abreu Blondet Ju\u00edza ", - "values": [ - "Corte Interamericana de Derechos Humanos" - ] - }, - { - "text": "RESOLUCI\u00d3N DEL PRESIDENTE DE LA CORTE INTERAMERICANA DE DERECHOS HUMANOS DE DE MAYO DE MEDIDAS PROVISIONALES RESPECTO DE LA REP\u00daBLICA DE COLOMBIA ASUNTO COMUNIDADES DEL JIGUAMIAND\u00d3 Y DEL CURBARAD\u00d3 VISTOS La Resoluci\u00f3n de la Corte Interamericana de Derechos Humanos en adelante Corte Interamericana Corte o Tribunal de de marzo de mediante la cual resolvi\u00f3 Requerir al Estado de Colombia que adopte sin dilaci\u00f3n las medidas que sean necesarias para proteger la vida e integridad personal de ", - "values": [ - "Corte Interamericana de Derechos Humanos" - ] - }, - { - "text": "VOTO INDIVIDUAL DISIDENTE DEL JUEZ EDUARDO VIO GROSSI CASO D\u00cdAZ PE\u00d1A VS. VENEZUELA SENTENCIA DE DE JUNIO DE Excepci\u00f3n preliminar fondo reparaciones y costas Introducci\u00f3n. Se emite el presente voto individual disidente con respecto de la Sentencia indicada en el t\u00edtulo en adelante e indistintamente la Sentencia en atenci\u00f3n a que el suscrito es del parecer que proced\u00eda acoger respecto de todo el presente caso y no solo en forma parcial como acontece en autos la excepci\u00f3n preliminar interpuesta ", - "values": [ - "Corte Interamericana de Derechos Humanos" - ] - }, - { - "text": "RESOLUCI\u00d3N DE LA CORTE INTERAMERICANA DE DERECHOS HUMANOS DEL DE JUNIO DE MEDIDAS PROVISIONALES SOLICITADAS POR LA COMISI\u00d3N INTERAMERICANA DE DERECHOS HUMANOS RESPECTO DE GUATEMALA CASO COLOTENANGO La Corte Interamericana de Derechos Humanos integrada de la siguiente manera Rafael Nieto Navia Presidente H\u00e9ctor FixZamudio Vicepresidente Alejandro Montiel Arg\u00fcello Juez M\u00e1ximo Pacheco G\u00f3mez Juez Hern\u00e1n Salgado Pesantes Juez presentes adem\u00e1s Manuel E. Ventura Robles Secretario Ana Mar\u00eda Reina ", - "values": [ - "Corte Interamericana de Derechos Humanos" - ] - }, - { - "text": "RESOLUCI\u00d3N DE LA CORTE INTERAMERICANA DE DERECHOS HUMANOS DE DE FEBRERO DE SOLICITUD DE MEDIDAS PROVISIONALES RESPECTO DE M\u00c9XICO ASUNTO CASTRO RODRIGUEZ VISTO El escrito de la Comisi\u00f3n Interamericana de Derechos Humanos en adelante la Comisi\u00f3n Interamericana o la Comisi\u00f3n de de noviembre de mediante el cual someti\u00f3 a la Corte una solicitud de medidas provisionales de conformidad con los art\u00edculos de la Convenci\u00f3n Americana sobre Derechos Humanos en adelante la Convenci\u00f3n Americana o la ", - "values": [ - "Corte Interamericana de Derechos Humanos" - ] - }, - { - "text": "Resoluci\u00f3n del Presidente de la Corte Interamericana de Derechos Humanos De de marzo de Caso Fern\u00e1ndez Ortega y otros Vs. M\u00e9xico VISTO El escrito de demanda presentado por la Comisi\u00f3n Interamericana de Derechos Humanos en adelante la Comisi\u00f3n Interamericana o la Comisi\u00f3n ante la Corte Interamericana de Derechos Humanos en adelante la Corte Interamericana la Corte o el Tribunal el de mayo de mediante el cual ofreci\u00f3 cuatro declaraciones testimoniales y cinco informes periciales. De los ", - "values": [ - "Corte Interamericana de Derechos Humanos" - ] - }, - { - "text": "VOTO PARCIALMENTE DISIDENTE DEL JUEZ AD HOC V\u00cdCTOR OSCAR SHIYIN GARC\u00cdA TOMA En lo relativo al tema de las reparaciones estimo que el quantum de las mismas sobre el da\u00f1o material da\u00f1o inmaterial costas y gastos ha sido establecido sin ning\u00fan fundamento t\u00e9cnico espec\u00edfico ampar\u00e1ndose \u00fanicamente en el cada vez m\u00e1s discutido criterio de discrecionalidad. Por dicha raz\u00f3n me veo en la necesidad de se\u00f1alar que carezco de par\u00e1metro objetivo alguno para considerar como diminutas ajustadas o excesivas ", - "values": [ - "Corte Interamericana de Derechos Humanos" - ] - }, - { - "text": "RESOLUCI\u00d3N DE LA CORTE INTERAMERICANA DE DERECHOS HUMANOS de de Enero de MEDIDAS PROVISIONALES RESPECTO DE GUATEMALA CASO MACK CHANG Y OTROS VISTOS La Resoluci\u00f3n del Presidente de la Corte Interamericana de Derechos Humanos en adelante la Corte la Corte Interamericana o el Tribunal de de agosto de mediante la cual adopt\u00f3 medidas provisionales a favor de las se\u00f1oras Helen Mack Chang Viviana Salvatierra y Am\u00e9rica Morales Ruiz del se\u00f1or Luis Roberto Romero Rivera y de los dem\u00e1s integrantes de", - "values": [ - "Corte Interamericana de Derechos Humanos" - ] - }, - { - "text": "RESOLUCI\u00d3N DE LA CORTE INTERAMERICANA DE DERECHOS HUMANOS DE DE NOVIEMBRE DE LA MEDIDAS PROVISIONALES SOLICITADAS POR COMISI\u00d3N INTERAMERICANA DE DERECHOS HUMANOS RESPECTO DE LA REP\u00daBLICA DE VENEZUELA CASO ELOISA BARRIOS Y OTROS VISTOS El escrito de la Comisi\u00f3n Interamericana de Derechos Humanos en adelante la Comisi\u00f3n o la Comisi\u00f3n Interamericana de de septiembre de mediante el cual someti\u00f3 a la Corte Interamericana de Derechos Humanos en adelante la Corte o la Corte Interamericana de con", - "values": [ - "Corte Interamericana de Derechos Humanos" - ] - }, - { - "text": "RESOLUCI\u00d3N DE LA CORTE INTERAMERICANA DE DERECHOS HUMANOS DE DE SEPTIEMBRE DE MEDIDAS PROVISIONALES RESPECTO DE LA REP\u00daBLICA BOLIVARIANA DE VENEZUELA CASO LUISIANA R\u00cdOS Y OTROS RADIO CARACAS TELEVISI\u00d3N RCTV VISTOS La Resoluci\u00f3n de la Corte Interamericana de Derechos Humanos en adelante la Corte Interamericana la Corte o el Tribunal de de noviembre de respecto del Estado de Venezuela Rep\u00fablica Bolivariana de Venezuela en adelante el Estado o Venezuela mediante la cual resolvi\u00f3 Requerir al ", - "values": [ - "Corte Interamericana de Derechos Humanos" - ] - }, - { - "text": "RESOLUCI\u00d3N DE LA CORTE INTERAMERICANA DE DERECHOS HUMANOS DE DE FEBRERO DE MEDIDAS PROVISIONALES LUISIANA R\u00cdOS y OTROS vs. VENEZUELA VISTOS La Resoluci\u00f3n de la Corte Interamericana de Derechos Humanos en adelante la Corte Interamericana la Corte o el Tribunal de de noviembre de relativa a las Medidas Provisionales solicitadas por la Comisi\u00f3n Interamericana de Derechos Humanos en adelante la Comisi\u00f3n Interamericana o la Comisi\u00f3n en favor de los se\u00f1ores Luisiana R\u00edos Armando Amaya Antonio ", - "values": [ - "Corte Interamericana de Derechos Humanos" - ] - }, - { - "text": "RESOLUCI\u00d3N DE LA CORTE INTERAMERICANA DE DERECHOS HUMANOS DE DE JULIO DE MEDIDAS PROVISIONALES RAXCAC\u00d3 REYES Y OTROS VISTOS La Resoluci\u00f3n de la Corte Interamericana de Derechos Humanos en adelante la Corte la Corte Interamericana o el Tribunal dictada el de agosto de cuyo punto resolutivo primero resolvi\u00f3 Requerir al Estado que adopte sin dilaci\u00f3n las medidas necesarias para proteger la vida de Ronald Ernesto Raxcac\u00f3 Reyes Hugo Humberto Ruiz Fuentes Bernardino Rodr\u00edguez Lara y Pablo Ruiz", - "values": [ - "Corte Interamericana de Derechos Humanos" - ] - }, - { - "text": "RESOLUCI\u00d3N DEL PRESIDENTE DE LA CORTE INTERAMERICANA DE DERECHOS HUMANOS DE DE DICIEMBRE DE SOLICITUD DE MEDIDAS PROVISIONALES RESPECTO DE LA REP\u00daBLICA DE GUATEMALA CASO B\u00c1MACA VEL\u00c1SQUEZ VISTOS La comunicaci\u00f3n del Centro por la Justicia y el Derecho Internacional CEJIL en adelante los representantes de las v\u00edctimas o los representantes de de septiembre de mediante la cual informaron sobre la situaci\u00f3n de riesgo y temor que vive parte de la familia del se\u00f1or Efra\u00edn B\u00e1maca en relaci\u00f3n con el", - "values": [ - "Corte Interamericana de Derechos Humanos" - ] - }, - { - "text": "Corte Interamericana de Derechos Humanos Caso Acosta Calder\u00f3n Vs. Ecuador Sentencia de de junio de Fondo Reparaciones y Costas En el caso Acosta Calder\u00f3n la Corte Interamericana de Derechos Humanos en adelante la Corte la Corte Interamericana o el Tribunal integrada por los siguientes jueces Sergio Garc\u00eda Ram\u00edrez Presidente Alirio Abreu Burelli Vicepresidente Oliver Jackman Juez Ant\u00f4nio A. Can\u00e7ado Trindade Juez Cecilia Medina Quiroga Jueza Manuel E. Ventura Robles Juez Diego Garc\u00edaSay\u00e1n Juez ", - "values": [ - "Corte Interamericana de Derechos Humanos" - ] - }, - { - "text": "VOTO CONCORDANTE DO JUIZ AA. CAN\u00c7ADO TRINDADE Coincido plenamente com a presente Senten\u00e7a da Corte Interamericana sobre exce\u00e7\u00e3o preliminar que reflete sua jurisprudence constante e a tese que venho sustentando h\u00e1 mais de duas d\u00e9cadas a saber que no \u00e2mbito do Direito Internacional dos Direitos Humanos a exce\u00e7\u00e3o preliminar de n\u00e3oesgotamento de recursos internos \u00e9 de pura admissibilidade a ser interposta pelo Estado demandado in limite litis sem o que se presume sua ren\u00fancia t\u00e1cita por parte do ", - "values": [ - "Corte Interamericana de Derechos Humanos" - ] - }, - { - "text": "INFORME N PETICI\u00d3N ADMISIBILIDAD IVAN ELADIO TORRES ARGENTINA de octubre de I. RESUMEN El de noviembre de la Comisi\u00f3n Interamericana de Derechos Humanos la CIDH recibi\u00f3 una denuncia presentada por la se\u00f1ora Mar\u00eda Leontina Millacura Llaip\u00e9n y la Asociaci\u00f3n Grupo ProDerechos de los Ni\u00f1os los peticionarios en la cual se alega la responsabilidad internacional de agentes del Estado de Argentina el Estado por la detenci\u00f3n ilegal incomunicaci\u00f3n tortura y desaparici\u00f3n forzada de Iv\u00e1n Eladio ", - "values": [ - "Comisi\u00f3n Interamericana de Derechos Humanos" - ] - }, - { - "text": "RESOLUCI\u00d3N DE LA CORTE INTERAMERICANA DE DERECHOS HUMANOS DE DE FEBRERO DE MEDIDAS PROVISIONALES RESPECTO DE COLOMBIA CASO CABALLERO DELGADO Y SANTANA VISTO Las Sentencias de fondo y de reparaciones y costas dictadas en el caso Caballero Delgado y Santana por la Corte Interamericana de Derechos Humanos en adelante la Corte Interamericana la Corte o el Tribunal el de diciembre de y el de enero de respectivamente. Las Resoluciones de la Corte Interamericana de de diciembre de de de ", - "values": [ - "Corte Interamericana de Derechos Humanos" - ] - }, - { - "text": "CORTE INTERAMERICANA DE DERECHOS HUMANOS CASO WONG HO WING VS. PER\u00da SENTENCIA DE DE JUNIO DE Excepci\u00f3n Preliminar Fondo Reparaciones y Costas En el caso Wong Ho Wing la Corte Interamericana de Derechos Humanos en adelante la Corte Interamericana la Corte o este Tribunal integrada por los siguientes jueces Humberto Antonio Sierra Porto Presidente Roberto F. Caldas Vicepresidente Manuel E. Ventura Robles Juez Alberto P\u00e9rez P\u00e9rez Juez Eduardo Vio Grossi Juez y Eduardo Ferrer MacGregor Poisot ", - "values": [ - "Corte Interamericana de Derechos Humanos" - ] - }, - { - "text": "Resoluci\u00f3n del Presidente de la Corte Interamericana de Derechos Humanos de de Diciembre de Medidas Provisionales respecto de Colombia Caso Caballero Delgado y Santana Vs. Colombia VISTO Las Resoluciones de la Corte Interamericana de Derechos Humanos en adelante la Corte Interamericana o el Tribunal de de diciembre de de enero de de abril de de septiembre de de junio de y de julio de Mediante esta \u00faltima el Tribunal resolvi\u00f3 Requerir al Estado que mantenga y adopte las medidas ", - "values": [ - "Corte Interamericana de Derechos Humanos" - ] - }, - { - "text": "RESOLUCI\u00d3N DE LA CORTE INTERMERICANA DE DERECHOS HUMANOS DE FEBRERO DE MEDIDAS PROVISIONALES RESPECTO DE VENEZUELA CASO ELOISA BARRIOS Y OTROS VISTO Las Resoluciones de la Corte Interamericana de Derechos Humanos en adelante la Corte Interamericana la Corte o el Tribunal emitidas el de noviembre de de junio y de septiembre de de febrero y de noviembre de En esta \u00faltima la Corte declar\u00f3 que La muerte de Rigoberto Barrios ocurrida el de enero de de Oscar Barrios ocurrida el de de ", - "values": [ - "Corte Interamericana de Derechos Humanos" - ] - }, - { - "text": "RESOLUCI\u00d3N DE LA CORTE INTERAMERICANA DE DERECHOS HUMANOS DE DE SEPTIEMBRE DE MEDIDAS PROVISIONALES RESPECTO DE LA REP\u00daBLICA FEDERATIVA DEL BRASIL CASO DE LA C\u00c1RCEL DE URSO BRANCO VISTOS La Resoluci\u00f3n de la Corte Interamericana de Derechos Humanos en adelante la Corte la Corte Interamericana o el Tribunal de de junio de mediante la cual requiri\u00f3 a la Rep\u00fablica Federativa del Brasil en adelante el Brasil o el Estado que adoptara todas las medidas que fueran necesarias para proteger la vida ", - "values": [ - "Corte Interamericana de Derechos Humanos" - ] - }, - { - "text": "Corte Interamericana de Derechos Humanos Caso Benjamin y otros Vs. Trinidad y Tobago Sentencia de de septiembre de Excepciones Preliminares En el caso Benjam\u00edn y otros la Corte Interamericana de Derechos Humanos en adelante la Corte Interamericana la Corte o el Tribunal integrada por los siguientes jueces Ant\u00f4nio A. Can\u00e7ado Trindade Presidente M\u00e1ximo Pacheco G\u00f3mez Vicepresidente Hern\u00e1n Salgado Pesantes Juez Oliver Jackman Juez Alirio Abreu Burelli Juez Sergio Garc\u00eda Ram\u00edrez Juez y Carlos de ", - "values": [ - "Corte Interamericana de Derechos Humanos" - ] - }, - { - "text": "RESOLU\u00c7\u00c3O DA CORTE INTERAMERICANA DE DIREITOS HUMANOS DE DE AGOSTO DE MEDIDAS PROVIS\u00d3RIAS A RESPEITO DA REP\u00daBLICA FEDERATIVA DO BRASIL CASO DA PENITENCI\u00c1RIA URSO BRANCO VISTO O escrito da Comiss\u00e3o Interamericana de Direitos Humanos doravante denominada Comiss\u00e3o ou Comiss\u00e3o Interamericana de de junho de mediante o qual someteu \u00e0 Corte Interamericana de Direitos Humanos doravante denominada Corte Tribunal ou Corte Interamericana em conformidade com os artigos da Conven\u00e7\u00e3o Americana sobre ", - "values": [ - "Corte Interamericana de Derechos Humanos" - ] - }, - { - "text": "RESOLUCI\u00d3N DE LA CORTE INTERAMERICANA DE DERECHOS HUMANOS DE DE FEBRERO DE SOLICITUD DE MEDIDAS PROVISIONALES PRESENTADA POR LA COMISI\u00d3N INTERAMERICANA DE DERECHOS HUMANOS RESPECTO DE LOS ESTADOS UNIDOS MEXICANOS CASO GARC\u00cdA URIBE Y OTROS VISTO El escrito de de enero de y sus anexos mediante los cuales la Comisi\u00f3n interamericana de Derechos Humanos en adelante la Comisi\u00f3n Interamericana o la Comisi\u00f3n someti\u00f3 a la Corte Interamericana de Derechos Humanos en adelante la Corte la Corte o ", - "values": [ - "Corte Interamericana de Derechos Humanos" - ] - }, - { - "text": "RESOLUCI\u00d3N DE LA CORTE INTERAMERICANA DE DERECHOS HUMANOS DE DE AGOSTO DE SOLICITUD DE MEDIDAS PROVISIONALES PRESENTADA POR LA COMISI\u00d3N INTERAMERICANA DE DERECHOS HUMANOS RESPECTO DE GUATEMALA CASO RAXCAC\u00d3 Y OTROS VISTOS El escrito de de agosto de y sus anexos mediante los cuales la Comisi\u00f3n Interamericana de Derechos Humanos en adelante la Comisi\u00f3n o la Comisi\u00f3n Interamericana someti\u00f3 a la Corte Interamericana de Derechos Humanos en adelante la Corte la Corte Interamericana o el Tribunal ", - "values": [ - "Corte Interamericana de Derechos Humanos" - ] - }, - { - "text": "VOTO RAZONADO DEL JUEZ SERGIO GARC\u00cdA RAMIREZ EN RELACI\u00d3N CON LA SENTENCIA DE LA CORTE INTERAMERICANA DE DERECHOS HUMANOS EN EL CASO ANZUALDO CASTRO Vs. PER\u00da DE DE SEPTIEMBRE DE La Corte Interamericana ha realizado un excelente desarrollo jurisprudencial en una materia particularmente relevante para los derechos humanos transitada en m\u00faltiples ocasiones la desaparici\u00f3n forzada de personas a la que se refiere la Sentencia del caso Anzualdo Castro dictada el de septiembre de que acompa\u00f1o con ", - "values": [ - "Corte Interamericana de Derechos Humanos" - ] - }, - { - "text": "VOTO RAZONADO CONCURRENTE DEL JUEZ ALBERTO P\u00c9REZ P\u00c9REZ EN EL CASO M\u00c9MOLI VS. ARGENTINA Concuerdo plenamente con todos los t\u00e9rminos de la sentencia dictada por la Corte de modo que el presente voto razonado se dirige a poner de relieve algunos aspectos que considero particularmente importantes. I. Principios generales establecidos en la jurisprudencia de la Corte En el presente caso como en varios otros decididos anteriormente por la Corte se plantea el tema de la relaci\u00f3n entre el derecho a ", - "values": [ - "Corte Interamericana de Derechos Humanos" - ] - }, - { - "text": "CORTE INTERAMERICANA DE DERECHOS HUMANOS CASO OSORIO RIVERA Y FAMILIARES VS. PER\u00da SENTENCIA DE DE NOVIEMBRE DE Excepciones Preliminares Fondo Reparaciones y Costas En el caso Osorio Rivera y familiares la Corte Interamericana de Derechos Humanos en adelante la Corte Interamericana la Corte o el Tribunal integrada por los siguientes Jueces Manuel E. Ventura Robles Presidente en ejercicio Alberto P\u00e9rez P\u00e9rez Juez Eduardo Vio Grossi Juez Roberto F. Caldas Juez Humberto Antonio Sierra Porto Juez ", - "values": [ - "Corte Interamericana de Derechos Humanos" - ] - }, - { - "text": "VOTO CONCURRENTE DE LA JUEZA C. MEDINA QUIROGA Estoy en general de acuerdo con la decisi\u00f3n de la Corte en relaci\u00f3n con las violaciones a los derechos humanos determinados en la sentencia precedente. Sin embargo tengo problemas con los fundamentos que la Corte ofrece para decidir que se han violado los art\u00edculos y de la Convenci\u00f3n Americana de la misma manera que los tuve ya en ocasiones anteriores A. En cuanto al art\u00edculo Analizando la violaci\u00f3n de los art\u00edculos y la Corte sostiene en el", - "values": [ - "Corte Interamericana de Derechos Humanos" - ] - }, - { - "text": "RESOLUCI\u00d3N DE LA CORTE INTERAMERICANA DE DERECHOS HUMANOS DE DE FEBRERO DE CASO CABALLERO DELGADO Y SANTANA VS. COLOMBIA SUPERVISI\u00d3N DE CUMPLIMIENTO DE SENTENCIA VISTO Las Sentencias de fondo y de reparaciones y costas en adelante las Sentencias dictadas por la Corte Interamericana de Derechos Humanos en adelante la Corte Interamericana la Corte o el Tribunal el de diciembre de y el de enero de respectivamente. Las resoluciones de supervisi\u00f3n de cumplimiento de las Sentencias que emiti\u00f3", - "values": [ - "Corte Interamericana de Derechos Humanos" - ] - }, - { - "text": "VOTO CONCURRENTE DEL JUEZ JACKMAN La presente sentencia con la que concurro en su totalidad es de especial importancia por al menos tres razones su reafirmaci\u00f3n de que la pr\u00e1ctica de imponer penas corporales por parte de los Estados Partes a la Convenci\u00f3n Americana de Derechos Humanos la Convenci\u00f3n es un incumplimiento flagrante de dicho tratado su insistencia en la absoluta necesidad de que los Estados respeten sus obligaciones establecidas en el tratado y su rechazo de la t\u00e9trica herramienta ", - "values": [ - "Corte Interamericana de Derechos Humanos" - ] - }, - { - "text": "RESOLUCI\u00d3N DEL PRESIDENTE DE LA CORTE INTERAMERICANA DE DERECHOS HUMANOS DE DE ABRIL DE CASO CONTRERAS Y OTROS VS. EL SALVADOR VISTO El escrito de de junio de y sus anexos mediante los cuales la Comisi\u00f3n Interamericana de Derechos Humanos en adelante la Comisi\u00f3n Interamericana o la Comisi\u00f3n present\u00f3 a la Corte Interamericana de Derechos Humanos en adelante la Corte Interamericana la Corte o el Tribunal una demanda en contra de la Rep\u00fablica de El Salvador en adelante El Salvador o el Estado", - "values": [ - "Corte Interamericana de Derechos Humanos" - ] - }, - { - "text": "RESOLUCI\u00d3N DE LA CORTE INTERAMERICANA DE DERECHOS HUMANOS DE DE SEPTIEMBRE DE CASO HUILCA TECSE Vs. PER\u00da SUPERVISI\u00d3N DE CUMPLIMIENTO DE SENTENCIA VISTO La Sentencia de fondo reparaciones y costas emitida el de marzo de en adelante la Sentencia por la Corte Interamericana de Derechos Humanos en adelante la Corte la Corte Interamericana o el Tribunal mediante la cual el Tribunal DECIDI\u00d3 por unanimidad Admitir el allanamiento efectuado por el Estado el de septiembre de en los t\u00e9rminos de ", - "values": [ - "Corte Interamericana de Derechos Humanos" - ] - }, - { - "text": "RESOLUCI\u00d3N DE LA CORTE INTERAMERICANA DE DERECHOS HUMANOS DE DE JUNIO DE SOLICITUD DE AMPLIACI\u00d3N DE LAS MEDIDAS PROVISIONALES ORDENADAS POR LA CORTE EN EL CASO CESTI HURTADO VISTOS La resoluci\u00f3n de la Corte Interamericana de Derechos Humanos en adelante la Corte de de septiembre de mediante la cual requiri\u00f3 al Estado del Per\u00fa en adelante el Estado la adopci\u00f3n de medidas provisionales en favor del se\u00f1or Gustavo Adolfo Cesti Hurtado en el marco del caso Cesti Hurtado que actualmente se en ", - "values": [ - "Corte Interamericana de Derechos Humanos" - ] - }, - { - "text": "RESOLUCI\u00d3N DE LA PRESIDENTA DE LA CORTE INTERAMERICANA DE DERECHOS HUMANOS DE DE MAYO DE CASO COMUNIDAD IND\u00cdGENA SAWHOYAMAXA VS. PARAGUAY CONVOCATORIA A AUDIENCIA P\u00daBLICA SUPERVISION DE CUMPLIMIENTO DE SENTENCIA VISTO La Sentencia de fondo reparaciones y costas dictada por la Corte Interamericana de Derechos Humanos en adelante la Corte la Corte Interamericana o el Tribunal el de marzo de mediante la cual dispuso que el Estado deb\u00eda adoptar todas las medidas legislativas administrativas ", - "values": [ - "Corte Interamericana de Derechos Humanos" - ] - }, - { - "text": "RESOLUCI\u00d3N DE LA CORTE INTERAMERICANA DE DERECHOS HUMANOS DE DE NOVIEMBRE DE CASO MOHAMED VS. ARGENTINA SUPERVISI\u00d3N DE CUMPLIMIENTO DE SENTENCIA VISTOS La Sentencia de excepci\u00f3n preliminar fondo reparaciones y costas en adelante la Sentencia o el Fallo dictada por la Corte Interamericana de Derechos Humanos en adelante la Corte la Corte Interamericana o el Tribunal el de noviembre de En ella la Corte declar\u00f3 la responsabilidad internacional de la Rep\u00fablica Argentina en adelante el Estado o", - "values": [ - "Corte Interamericana de Derechos Humanos" - ] - }, - { - "text": "Corte Interamericana de Derechos Humanos Caso Castillo Petruzzi y otros Vs. Per\u00fa Sentencia de de mayo de Fondo Reparaciones y Costas En el caso Castillo Petruzzi y otros la Corte Interamericana de Derechos Humanos en adelante la Corte la Corte Interamericana o el Tribunal integrada por los siguientes jueces Hern\u00e1n Salgado Pesantes Presidente Ant\u00f4nio A. Can\u00e7ado Trindade Vicepresidente M\u00e1ximo Pacheco G\u00f3mez Juez Oliver Jackman Juez Alirio Abreu Burelli Juez Sergio Garc\u00eda Ram\u00edrez Juez Carlos de ", - "values": [ - "Corte Interamericana de Derechos Humanos" - ] - }, - { - "text": "CORTE INTERAMERICANA DE DERECHOS HUMANOS CASO DE LA MASACRE DE MAPIRIP\u00c1N VS. COLOMBIA SENTENCIA DE SEPTIEMBRE DE En el caso de la Masacre de Mapirip\u00e1n la Corte Interamericana de Derechos Humanos en adelante la Corte Interamericana la Corte o el Tribunal integrada por los siguientes jueces Sergio Garc\u00eda Ram\u00edrez Presidente Alirio Abreu Burelli Vicepresidente Oliver Jackman Juez Ant\u00f4nio A. Can\u00e7ado Trindade Juez Manuel E. Ventura Robles Juez y Gustavo Zafra Rold\u00e1n Juez ad hoc presentes adem\u00e1s ", - "values": [ - "Corte Interamericana de Derechos Humanos" - ] - }, - { - "text": "Resoluci\u00f3n de la Corte Interamericana de Derechos Humanos de julio de Caso Tibi Vs. Ecuador Supervisi\u00f3n de Cumplimiento de Sentencia Visto La Sentencia de excepciones preliminares fondo reparaciones y costas en adelante la Sentencia dictada por la Corte Interamericana de Derechos Humanos en adelante la Corte Interamericana la Corte o el Tribunal el de septiembre de mediante la cual dispuso que El Estado debe en un plazo razonable investigar efectivamente los hechos del caso con el fin ", - "values": [ - "Corte Interamericana de Derechos Humanos" - ] - }, - { - "text": "Resoluci\u00f3n de la Corte Interamericana de Derechos Humanos de de febrero de Medidas Provisionales respecto de la Rep\u00fablica de Colombia Asunto Comunidades del Jiguamiand\u00f3 y del Curbarad\u00f3 VISTOS La Resoluci\u00f3n de la Corte Interamericana de Derechos Humanos en adelante la Corte la Corte Interamericana o el Tribunal de de marzo de mediante la cual orden\u00f3 Requerir al Estado de Colombia que adopte sin dilaci\u00f3n las medidas que sean necesarias para proteger la vida e integridad personal de todos ", - "values": [ - "Corte Interamericana de Derechos Humanos" - ] - }, - { - "text": "CORTE INTERAMERICANA DE DERECHOS HUMANOS CASO DE LAS COMUNIDADES AFRODESCENDIENTES DESPLAZADAS DE LA CUENCA DEL R\u00cdO CACARICA OPERACI\u00d3N G\u00c9NESIS VS. COLOMBIA SENTENCIA DE DE NOVIEMBRE DE Excepciones Preliminares Fondo Reparaciones y Costas En el Caso de las Comunidades afrodescendientes desplazadas de la cuenca del r\u00edo Cacarica Operaci\u00f3n G\u00e9nesis la Corte Interamericana de Derechos Humanos en adelante la Corte Interamericana la Corte o el Tribunal integrada por los siguientes Jueces Diego E. ", - "values": [ - "Corte Interamericana de Derechos Humanos" - ] - }, - { - "text": "Corte Interamericana de Derechos Humanos Caso Las Palmeras Vs. Colombia Sentencia de de diciembre de Fondo En el caso Las Palmeras la Corte Interamericana de Derechos Humanos en adelante la Corte o la Corte Interamericana integrada de la siguiente manera Ant\u00f4nio A. Can\u00e7ado Trindade Presidente M\u00e1ximo Pacheco G\u00f3mez Vicepresidente Hern\u00e1n Salgado Pesantes Juez Alirio Abreu Burelli Juez Sergio Garc\u00eda Ram\u00edrez Juez y Julio A. Barberis Juez ad hoc presente adem\u00e1s Manuel E. Ventura Robles Secretario ", - "values": [ - "Corte Interamericana de Derechos Humanos" - ] - }, - { - "text": "RESOLUCI\u00d3N DE LA CORTE INTERAMERICANA DE DERECHOS HUMANOS DE DE NOVIEMBRE DE MEDIDAS PROVISIONALES RESPECTO DE LA REP\u00daBLICA DE COLOMBIA ASUNTO PUEBLO IND\u00cdGENA KANKUAMO VISTO Las Resoluciones de la Corte Interamericana de Derechos Humanos en adelante la Corte Interamericana la Corte o el Tribunal de de julio de de enero de y de abril de dictadas en el presente asunto. Mediante esta \u00faltima resoluci\u00f3n el Tribunal requiri\u00f3 a la Rep\u00fablica de Colombia en adelante el Estado o Colombia y ", - "values": [ - "Corte Interamericana de Derechos Humanos" - ] - }, - { - "text": "Corte Interamericana de Derechos Humanos Caso Loayza Tamayo Vs. Per\u00fa Sentencia de de septiembre de Fondo En el caso Loayza Tamayo la Corte Interamericana de Derechos Humanos integrada por los siguientes jueces Hern\u00e1n Salgado Pesantes Presidente Ant\u00f4nio A. Can\u00e7ado Trindade Vicepresidente H\u00e9ctor FixZamudio Juez Alejandro Montiel Arg\u00fcello Juez M\u00e1ximo Pacheco G\u00f3mez Juez Oliver Jackman Juez y Alirio Abreu Burelli Juez presentes adem\u00e1s Manuel E. Ventura Robles Secretario y V\u00edctor M. Rodr\u00edguez ", - "values": [ - "Corte Interamericana de Derechos Humanos" - ] - }, - { - "text": "RESOLUCI\u00d3N DEL PRESIDENTE DE LA CORTE INTERAMERICANA DE DERECHOS HUMANOS DE DE JULIO DE CASO BREWER CAR\u00cdAS VS. VENEZUELA VISTO El escrito de sometimiento del caso contra la Rep\u00fablica Bolivariana de Venezuela en adelante el Estado o Venezuela presentado el de marzo de por la Comisi\u00f3n Interamericana de Derechos Humanos en adelante la Comisi\u00f3n Interamericana o la Comisi\u00f3n ante la Corte Interamericana de Derechos Humanos en adelante la Corte Interamericana la Corte o el Tribunal mediante el ", - "values": [ - "Corte Interamericana de Derechos Humanos" - ] - }, - { - "text": "RESOLUCI\u00d3N DEL PRESIDENTE DE LA CORTE INTERAMERICANA DE DERECHOS HUMANOS DE DE ABRIL DE SOLICITUD DE MEDIDAS PROVISIONALES DE LA COMISI\u00d3N INTERAMERICANA DE DERECHOS HUMANOS RESPECTO DE LA REP\u00daBLICA DE COSTA RICA CASO DEL PERI\u00d3DICO LA NACI\u00d3N VISTO El escrito de la Comisi\u00f3n Interamericana de Derechos Humanos en adelante la Comisi\u00f3n o la Comisi\u00f3n Interamericana de de marzo de mediante el cual present\u00f3 una solicitud de medidas provisionales a favor de los se\u00f1ores Mauricio Herrera Ulloa y Fern\u00e1n", - "values": [ - "Corte Interamericana de Derechos Humanos" - ] - }, - { - "text": "RESOLUCI\u00d3N DEL PRESIDENTE DE LA CORTE INTERAMERICANA DE DERECHOS HUMANOS DE DE ENERO DE SOLICITUD DE MEDIDAS PROVISIONALES PRESENTADA POR LA COMISI\u00d3N INTERAMERICANA DE DERECHOS HUMANOS RESPECTO DE LA REP\u00daBLICA BOLIVARIANA DE VENEZUELA CASO DEL INTERNADO JUDICIAL DE MONAGAS LA PICA VISTOS El escrito de de diciembre de y sus anexos mediante los cuales la Comisi\u00f3n Interamericana de Derechos Humanos en adelante la Comisi\u00f3n Interamericana o la Comisi\u00f3n someti\u00f3 a la Corte Interamericana de en ", - "values": [ - "Corte Interamericana de Derechos Humanos" - ] - }, - { - "text": "Corte Interamericana de Derechos Humanos Caso Cinco Pensionistas Vs. Per\u00fa Sentencia de de febrero de Fondo Reparaciones y Costas En el caso Cinco Pensionistas la Corte Interamericana de Derechos Humanos en adelante la Corte la Corte Interamericana o el Tribunal integrada por los siguientes jueces Ant\u00f4nio A. Can\u00e7ado Trindade Presidente Sergio Garc\u00eda Ram\u00edrez Vicepresidente Hern\u00e1n Salgado Pesantes Juez Oliver Jackman Juez Alirio Abreu Burelli Juez Carlos Vicente de Roux Rengifo Juez y Javier de ", - "values": [ - "Corte Interamericana de Derechos Humanos" - ] - }, - { - "text": "RESOLUCI\u00d3N DEL PRESIDENTE DE LA CORTE INTERAMERICANA DE DERECHOS HUMANOS DE DE DICIEMBRE DE CASO DE LAS MASACRES DE ITUANGO VS. COLOMBIA SUPERVISI\u00d3N DE CUMPLIMIENTO DE SENTENCIA Visto La Sentencia de fondo reparaciones y costas dictada el de julio de en adelante la Sentencia por la Corte Interamericana de Derechos Humanos en adelante la Corte la Corte Interamericana o el Tribunal en el caso de las Masacres de Ituango. La Resoluci\u00f3n sobre supervisi\u00f3n de cumplimiento de Sentencia dictada ", - "values": [ - "Corte Interamericana de Derechos Humanos" - ] - }, - { - "text": "RESOLUCI\u00d3N DE LA CORTE INTERAMERICANA DE DERECHOS HUMANOS DE DE ABRIL DE SOLICITUD DE MEDIDAS PROVISIONALES PRESENTADA POR LA COMISI\u00d3N INTERAMERICANA DE DERECHOS HUMANOS RESPECTO DE VENEZUELA ASUNTO BELFORT IST\u00daRIZ Y OTROS VISTO El escrito de la Comisi\u00f3n Interamericana de Derechos Humanos en adelante la Comisi\u00f3n Interamericana o la Comisi\u00f3n de de febrero de y sus anexos mediante los cuales someti\u00f3 a la Corte Interamericana de Derechos Humanos en adelante la Corte Interamericana la Corte o ", - "values": [ - "Corte Interamericana de Derechos Humanos" - ] - }, - { - "text": "RELAT\u00d3RIO N\u00ba PETI\u00c7\u00c3O ADMISSIBILIDADE JORGE OMAR GUTI\u00c9RREZ ARGENTINA de fevereiro de I. RESUMO O presente relat\u00f3rio referese \u00e0 admissibilidade da peti\u00e7\u00e3o As atua\u00e7\u00f5es foram iniciadas pela Comiss\u00e3o Interamericana de Direitos Humanos doravante denominada Comiss\u00e3o Interamericana Comiss\u00e3o ou CIDH depois de receber uma peti\u00e7\u00e3o em de maio de e informa\u00e7\u00e3o conexa em de outubro de apresentadas por Francisco Guti\u00e9rrez Nilda Maldonado o Centro de Estudos Legais e Sociais CELS e o Centro pela e o ", - "values": [ - "Comisi\u00f3n Interamericana de Derechos Humanos" - ] - }, - { - "text": "RESOLUCI\u00d3N DE LA CORTE INTERAMERICANA DE DERECHOS HUMANOS DE DE JULIO DE MEDIDAS PROVISIONALES RESPECTO DE VENEZUELA ASUNTOS DE DETERMINADOS CENTROS PENITENCIARIOS DE VENEZUELA VISTO La Resoluci\u00f3n de la Corte Interamericana de Derechos Humanos en adelante la Corte Interamericana la Corte o el Tribunal de de febrero de en el asunto del Internado Judicial Capital El Rodeo I y El Rodeo II mediante la cual resolvi\u00f3 inter alia Requerir al Estado que adopte las medidas provisionales que sean ", - "values": [ - "Corte Interamericana de Derechos Humanos" - ] - }, - { - "text": "RESOLUCI\u00d3N DE LA CORTE INTERAMERICANA DE DERECHOS HUMANOS DE DE MAYO DE MEDIDAS PROVISIONALES RESPECTO DE VENEZUELA CASOS LILIANA ORTEGA Y OTRAS LUISIANA R\u00cdOS Y OTROS LUIS UZC\u00c1TEGUI MARTA COLOMINA Y LILIANA VEL\u00c1SQUEZ. VISTOS Las cuatro Resoluciones de la Corte Interamericana de Derechos Humanos en adelante la Corte Interamericana la Corte o el Tribunal de de diciembre de relativas a las medidas provisionales solicitadas por la Comisi\u00f3n Interamericana de Derechos Humanos en adelante la o ", - "values": [ - "Corte Interamericana de Derechos Humanos" - ] - }, - { - "text": "CORTE INTERAMERICANA DE DERECHOS HUMANOS CASO DEL TRIBUNAL CONSTITUCIONAL CAMBA CAMPOS Y OTROS VS. ECUADOR SENTENCIA DE DE AGOSTO DE Excepciones Preliminares Fondo Reparaciones y Costas En el caso Tribunal Constitucional Camba Campos y otros la Corte Interamericana de Derechos Humanos en adelante la Corte Interamericana la Corte o el Tribunal integrada por los siguientes jueces Diego Garc\u00edaSay\u00e1n Presidente Manuel E. Ventura Robles Vicepresidente Alberto P\u00e9rez P\u00e9rez Juez Eduardo Vio Grossi F.", - "values": [ - "Corte Interamericana de Derechos Humanos" - ] - }, - { - "text": "Resoluci\u00f3n del Presidente de la Corte Interamericana de Derechos Humanos De de diciembre de Caso Instituto de Reeducaci\u00f3n del Menor Vs. Paraguay Supervisi\u00f3n de Cumplimiento de Sentencia VISTO La Sentencia de excepciones preliminares fondo reparaciones y costas en adelante la Sentencia emitida en el presente caso por la Corte Interamericana de Derechos Humanos en adelante la Corte la Corte Interamericana o el Tribunal el de septiembre de La Resoluci\u00f3n emitida por la Corte Interamericana el", - "values": [ - "Corte Interamericana de Derechos Humanos" - ] - }, - { - "text": "RESOLUCI\u00d3N DE LA CORTE INTERAMERICANA DE DERECHOS HUMANOS DE DE SEPTIEMBRE DE CASO LOAYZA TAMAYO VS. PER\u00da SUPERVISI\u00d3N DE CUMPLIMIENTO DE SENTENCIA VISTOS La Sentencia de fondo dictada en el presente caso por la Interamericana de Derechos Humanos en adelante la Corte la Interamericana o el Tribunal el de septiembre de Corte Corte La Sentencia de reparaciones emitida por el Tribunal el de noviembre de La Sentencia de Interpretaci\u00f3n dictada en el presente caso por la Corte Interamericana ", - "values": [ - "Corte Interamericana de Derechos Humanos" - ] - }, - { - "text": "RESOLUCI\u00d3N DE LA CORTE INTERAMERICANA DE DERECHOS HUMANOS DE DE JUNIO DE MEDIDAS PROVISIONALES ADOPTADAS POR LA CORTE INTERAMERICANA DE DERECHOS HUMANOS RESPECTO DE LA REP\u00daBLICA DE COLOMBIA CASO \u00c1LVAREZ Y OTROS VISTOS La resoluci\u00f3n del Presidente de la Corte Interamericana de Derechos Humanos en adelante el Presidente de de julio de en cuya parte dispositiva decidi\u00f3 Requerir a la Rep\u00fablica de Colombia que adopte sin dilaci\u00f3n cuantas medidas sean necesarias para proteger la vida e de Jos\u00e9", - "values": [ - "Corte Interamericana de Derechos Humanos" - ] - }, - { - "text": "RESOLUCI\u00d3N DEL PRESIDENTE DE LA CORTE INTERAMERICANA DE DERECHOS HUMANOS DE DE DICIEMBRE DE SOLICITUD DE MEDIDAS PROVISIONALES PRESENTADA POR LA COMISI\u00d3N INTERAMERICANA DE DERECHOS HUMANOS RESPECTO DE VENEZUELA ASUNTO MAR\u00cdA LOURDES AFIUNI VISTO El escrito de la Comisi\u00f3n Interamericana de Derechos Humanos en adelante la Comisi\u00f3n Interamericana o la Comisi\u00f3n de de noviembre de y sus anexos mediante los cuales someti\u00f3 a la Corte Interamericana de Derechos Humanos en adelante la Corte la o ", - "values": [ - "Corte Interamericana de Derechos Humanos" - ] - }, - { - "text": "Corte Interamericana de Derechos Humanos Caso Baena Ricardo y otros Vs. Panam\u00e1 Sentencia de de febrero de Fondo Reparaciones y Costas En el caso Baena Ricardo y otros la Corte Interamericana de Derechos Humanos en adelante la Corte la Corte Interamericana o el Tribunal integrada por los siguientes jueces Ant\u00f4nio A. Can\u00e7ado Trindade Presidente M\u00e1ximo Pacheco G\u00f3mez Vicepresidente Hern\u00e1n Salgado Pesantes Juez Oliver Jackman Juez Alirio Abreu Burelli Juez Sergio Garc\u00eda Ram\u00edrez Juez y Carlos de ", - "values": [ - "Corte Interamericana de Derechos Humanos" - ] - }, - { - "text": "REPORT N\u00ba CASE MARCO ANTONIO MOLINA THEISSEN GUATEMALA October I. SUMMARY On September the Center for Justice and International Law CEJIL and the Grupo de Apoyo Mutuo GAM hereinafter the petitioners submitted a petition to the InterAmerican Commission on Human Rights hereinafter the Commission the InterAmerican Commission or the IACHR denouncing the forced disappearance of Marco Antonio Molina Theissen hereinafter the alleged victim a yearold child who was allegedly abducted from his ", - "values": [ - "Comisi\u00f3n Interamericana de Derechos Humanos" - ] - }, - { - "text": "VOTO RAZONADO DEL JUEZ A. A. CAN\u00c7ADO TRINDADE Concuerdo con la decisi\u00f3n de la Corte de desestimar las excepciones preliminares interpuestas por el Gobierno demandado de proseguir con el conocimiento del presente caso y de reservar el pronunciamiento sobre costas para decidirlo con la cuesti\u00f3n de fondo. Sin embargo me siento obligado a adjuntar este Voto Razonado para explicar y desarrollar las razones por las cuales estoy plenamente de acuerdo con el rechazo por la Corte de una de las en a ", - "values": [ - "Corte Interamericana de Derechos Humanos" - ] - }, - { - "text": "VOTO DISIDENTE DEL JUEZ CARLOS VICENTE DE ROUX RENGIFO Debo apartarme de la decisi\u00f3n de la Corte sobre seis de siete excepciones preliminares presentadas por el Estado peruano porque creo que guardan una estrecha relaci\u00f3n con la materia del fondo del caso y han debido ser acumuladas a \u00e9sta. Como bien se sabe para que una petici\u00f3n o comunicaci\u00f3n sea admitida por la Comisi\u00f3n Interamericana se requiere seg\u00fan el art\u00edculo de la Convenci\u00f3n a. que se hayan interpuesto y agotado los recursos de a ", - "values": [ - "Corte Interamericana de Derechos Humanos" - ] - }, - { - "text": "CORTE INTERAMERICANA DE DERECHOS HUMANOS CASO HERMANOS LANDAETA MEJ\u00cdAS Y OTROS VS. VENEZUELA SENTENCIA DE DE AGOSTO DE Excepciones Preliminares Fondo Reparaciones y Costas En el caso Hermanos Landaeta Mej\u00edas y otros La Corte Interamericana de Derechos Humanos en adelante la Corte Interamericana la Corte o el Tribunal integrada por los siguientes jueces Humberto Antonio Sierra Porto Presidente Roberto F. Caldas Vicepresidente Manuel E. Ventura Robles Juez Eduardo Vio Grossi Juez y Eduardo ", - "values": [ - "Corte Interamericana de Derechos Humanos" - ] - }, - { - "text": "RESOLUCI\u00d3N DE LA CORTE INTERAMERICANA DE DERECHOS HUMANOS DE DE SEPTIEMBRE DE SOLICITUD DE MEDIDAS PROVISIONALES RESPECTO DE VENEZUELA ASUNTO CENTRO PENITENCIARIO DE LA REGI\u00d3N ANDINA VISTO El escrito de la Comisi\u00f3n Interamericana de Derechos Humanos en adelante la Comisi\u00f3n Interamericana o la Comisi\u00f3n de de agosto de y sus anexos mediante los cuales someti\u00f3 a la Corte una solicitud de medidas provisionales de conformidad con los art\u00edculos de la Convenci\u00f3n Americana sobre Derechos Humanos ", - "values": [ - "Corte Interamericana de Derechos Humanos" - ] - }, - { - "text": "Resoluci\u00f3n de la Corte Interamericana de Derechos Humanos de de julio de Caso de la Masacre de Mapirip\u00e1n Vs. Colombia Supervisi\u00f3n de Cumplimiento de Sentencia Vistos La Sentencia de fondo reparaciones y costas emitida el de septiembre de en adelante la Sentencia por la Corte Interamericana de Derechos Humanos en adelante la Corte la Corte Interamericana o el Tribunal mediante la cual el Tribunal decidi\u00f3 que El Estado debe realizar inmediatamente las debidas diligencias para activar y ", - "values": [ - "Corte Interamericana de Derechos Humanos" - ] - }, - { - "text": "VOTO PARCIALMENTE DISIDENTE DEL JUEZ CARLOS VICENTE DE ROUX RENGIFO Me aparto de la decisi\u00f3n adoptada por la Corte en relaci\u00f3n con la primera la segunda y la cuarta excepciones preliminares presentadas por el Estado demandado porque considero que las cuestiones referentes a la supuesta falta de agotamiento de los recursos internos ha debido acumularse a la materia de fondo del caso. Como lo he planteado en otra oportunidad cfr. voto disidente a la sentencia de excepciones preliminares del Caso ", - "values": [ - "Corte Interamericana de Derechos Humanos" - ] - }, - { - "text": "Corte Interamericana de Derechos Humanos Caso Castillo P\u00e1ez Vs. Per\u00fa Sentencia de de noviembre de Fondo En el caso Castillo P\u00e1ez la Corte Interamericana de Derechos Humanos integrada por los siguientes jueces Hern\u00e1n Salgado Pesantes Presidente Ant\u00f4nio A. Can\u00e7ado Trindade Vicepresidente H\u00e9ctor FixZamudio Juez Alejandro Montiel Arg\u00fcello Juez M\u00e1ximo Pacheco G\u00f3mez Juez y Alirio Abreu Burelli Juez presentes adem\u00e1s Manuel E. Ventura Robles Secretario y V\u00edctor M. Rodr\u00edguez Rescia Secretario adjunto", - "values": [ - "Corte Interamericana de Derechos Humanos" - ] - }, - { - "text": "RESOLUCI\u00d3N DE LA CORTE INTERAMERICANA DE DERECHOS HUMANOS DE DE NOVIEMBRE DE MEDIDAS PROVISIONALES RESPECTO DE LA REP\u00daBLICA DE GUATEMALA CASO B\u00c1MACA VEL\u00c1SQUEZ VISTOS La Resoluci\u00f3n del Presidente de la Corte Interamericana de Derechos Humanos en adelante el Presidente en el Caso B\u00e1maca Vel\u00e1squez de de abril de mediante la cual decidi\u00f3 Convocar a los representantes del Estado de Guatemala y de la Comisi\u00f3n Interamericana de Derechos Humanos a una audiencia p\u00fablica que se celebrar\u00eda en la de", - "values": [ - "Corte Interamericana de Derechos Humanos" - ] - }, - { - "text": "RESOLUCI\u00d3N DE LA CORTE INTERAMERICANA DE DERECHOS HUMANOS DE DE MARZO DE CASO B\u00c1MACA VEL\u00c1SQUEZ VS. GUATEMALA SUPERVISI\u00d3N DE CUMPLIMIENTO DE SENTENCIA VISTOS La Sentencia de fondo emitida en el presente caso por la Corte Interamericana de Derechos Humanos en adelante la Corte la Corte Interamericana o el Tribunal el de noviembre de mediante la cual decidi\u00f3 inter alia que el Estado debe ordenar una investigaci\u00f3n para determinar las personas responsables de las violaciones de los derechos ", - "values": [ - "Corte Interamericana de Derechos Humanos" - ] - }, - { - "text": "RESOLUCI\u00d3N DE LA CORTE INTERAMERICANA DE DERECHOS HUMANOS DE DE ABRIL DE CASO CHAPARRO \u00c1LVAREZ Y LAPO \u00cd\u00d1IGUEZ VS. ECUADOR. SUPERVISI\u00d3N DE CUMPLIMIENTO DE SENTENCIA VISTO La Sentencia de fondo reparaciones y costas en adelante la Sentencia dictada por la Corte Interamericana de Derechos Humanos en adelante la Corte la Corte Interamericana o el Tribunal el de noviembre de mediante la cual dispuso que El Estado deb\u00eda eliminar inmediatamente el nombre de los se\u00f1ores Juan Carlos Chaparro y ", - "values": [ - "Corte Interamericana de Derechos Humanos" - ] - }, - { - "text": "RESOLUCI\u00d3N DE LA CORTE INTERAMERICANA DE DERECHOS HUMANOS DE DE JULIO DE MEDIDAS PROVISIONALES RESPECTO DE VENEZUELA ASUNTO LILIANA ORTEGA Y OTRAS VISTO La Resoluci\u00f3n que emiti\u00f3 la Corte Interamericana de Derechos Humanos en adelante la Corte Interamericana la Corte o el Tribunal el de noviembre de mediante la cual resolvi\u00f3 inter alia Requerir al Estado que adoptara sin dilaci\u00f3n cuantas medidas sean necesarias para proteger la vida e integridad personal de Liliana Ortega Yris Medina Cova ", - "values": [ - "Corte Interamericana de Derechos Humanos" - ] - }, - { - "text": "RESOLUCI\u00d3N DE LA CORTE INTERAMERICANA DE DERECHOS HUMANOS DE DE NOVIEMBRE DE CASO EL AMPARO CUMPLIMIENTO DE SENTENCIA VISTOS La sentencia dictada en el Caso El Amparo vs. Venezuela por la Corte Interamericana de Derechos Humanos en adelante la Corte la Corte Interamericana o el Tribunal el de enero de en cuyos puntos resolutivos estableci\u00f3 lo siguiente por unanimidad Toma nota del reconocimiento de responsabilidad efectuado por la Rep\u00fablica de Venezuela y decide que ha cesado la acerca ", - "values": [ - "Corte Interamericana de Derechos Humanos" - ] - }, - { - "text": "VOTO RAZONADO DEL JUEZ DE ROUX RENGIFO La determinaci\u00f3n de si los hechos de este caso violaron o no el derecho a la propiedad consagrado en el art\u00edculo de la Convenci\u00f3n Americana ofrec\u00eda ciertas dificultades particulares. Las presuntas v\u00edctimas ten\u00edan a no dudarlo un derecho adquirido a una pensi\u00f3n y ese derecho considerado en abstracto formaba parte de su patrimonio. No obstante la concreci\u00f3n de ese derecho en mesadas pensionales de una cuant\u00eda espec\u00edfica deb\u00eda surgir de una ponderaci\u00f3n de ", - "values": [ - "Corte Interamericana de Derechos Humanos" - ] - }, - { - "text": "VOTO RAZONADO DEL JUEZ SERGIO GARC\u00cdA RAM\u00cdREZ A LA SENTENCIA DE LA CORTE INTERAMERICANA DE DERECHOS HUMANOS EN EL CASO TRABAJADORES CESADOS DEL CONGRESO VS. PER\u00da DEL DE NOVIEMBRE DE En esta Sentencia la Corte se ha pronunciado sobre el control de convencionalidad p\u00e1rr. que pueden y deben ejercer los \u00f3rganos de la justicia nacional con respecto a actos de autoridad entre ellos normas de alcance general conforme a las atribuciones que les confieren los ordenamientos a los que se hallan y las", - "values": [ - "Corte Interamericana de Derechos Humanos" - ] - }, - { - "text": "Corte Interamericana de Derechos Humanos Caso de la Panel Blanca Paniagua Morales y otros Vs. Guatemala Sentencia de de enero de Excepciones Preliminares En el caso Paniagua Morales y otros la Corte Interamericana de Derechos Humanos integrada por los siguientes jueces H\u00e9ctor FixZamudio Presidente Hern\u00e1n Salgado Pesantes Vicepresidente Alejandro Montiel Arg\u00fcello Juez M\u00e1ximo Pacheco G\u00f3mez Juez Alirio Abreu Burelli Juez Ant\u00f4nio A. Can\u00e7ado Trindade Juez Edgar E. Larraondo Salguero Juez ad hoc ", - "values": [ - "Corte Interamericana de Derechos Humanos" - ] - }, - { - "text": "INFORME N\u00ba CASO LORI BERENSON PER\u00da de diciembre de I. RESUMEN El d\u00eda de enero de los doctores Ramsey Clark Thomas H. Nooter y Grimaldo Achahui Loayza presentaron una petici\u00f3n ante la Comisi\u00f3n Interamericana de Derechos Humanos en adelante la Comisi\u00f3n en representaci\u00f3n de la ciudadana norteamericana Lori Berenson contra la Rep\u00fablica del Per\u00fa en adelante el Estado o Per\u00fa. En la petici\u00f3n se afirma que la se\u00f1orita Berenson fue condenada a prisi\u00f3n perpetua por tribunales militares peruanos ", - "values": [ - "Comisi\u00f3n Interamericana de Derechos Humanos" - ] - }, - { - "text": "VOTO RAZONADO DEL JUEZ DE ROUX RENGIFO La Sentencia que antecede ha ordenado pagar unas sumas de dinero a los hermanos de las v\u00edctimas directas para compensar el da\u00f1o moral que sufrieron a ra\u00edz de los hechos del caso. Comparto esa determinaci\u00f3n y quisiera hacer algunas comentarios sobre ella. Puede decirse en t\u00e9rminos generales y salvo los resultados de un examen m\u00e1s exhaustivo de la cuesti\u00f3n que la Corte ha enfocado el tema del da\u00f1o moral causado a los parientes inmediatos de las v\u00edctimas de ", - "values": [ - "Corte Interamericana de Derechos Humanos" - ] - }, - { - "text": "Resoluci\u00f3n de la Corte Interamericana de Derechos Humanos de de noviembre de Medidas Provisionales respecto de Guatemala Caso Raxcac\u00f3 Reyes y otros VISTOS La Resoluci\u00f3n de la Corte Interamericana de Derechos Humanos en adelante la Corte la Corte Interamericana o el Tribunal dictada el de agosto de en cuyo punto resolutivo primero resolvi\u00f3 Requerir al Estado que adopte sin dilaci\u00f3n las medidas necesarias para proteger la vida de Ronald Ernesto Raxcac\u00f3 Reyes Hugo Humberto Ruiz Fuentes Lara", - "values": [ - "Corte Interamericana de Derechos Humanos" - ] - }, - { - "text": "VOTO CONJUNTO DISIDENTE DE LOS JUECES MANUEL E. VENTURA ROBLES Y EDUARDO FERRER MACGREGOR POISOT CASO NOR\u00cdN CATRIM\u00c1N Y OTROS DIRIGENTES MIEMBROS Y ACTIVISTA DEL PUEBLO IND\u00cdGENA MAPUCHE VS. CHILE SENTENCIA DE DE MAYO DE FONDO REPARACIONES Y COSTAS Emitimos el presente voto disidente para fundamentar los motivos por los cuales discrepamos con lo decidido en el punto resolutivo de la Sentencia de de mayo de en el Caso Nor\u00edn Catrim\u00e1n y otros vs. Chile en adelante la Sentencia dictada por la ", - "values": [ - "Corte Interamericana de Derechos Humanos" - ] - }, - { - "text": "RESOLUCI\u00d3N DEL PRESIDENTE DE LA CORTE INTERAMERICANA DE DERECHOS HUMANOS EN EJERCICIO PARA ESTE CASO DE DE AGOSTO DE SOLICITUD PRESENTADA POR EL INTERVINIENTE COM\u00daN DE LOS REPRESENTANTES DE LAS V\u00cdCTIMAS Y SUS FAMILIARES CASO DEL PENAL MIGUEL CASTRO CASTRO VS. PER\u00da SUPERVISI\u00d3N DE CUMPLIMIENTO DE SENTENCIA VISTO La Sentencia de fondo reparaciones y costas en adelante la Sentencia emitida por la Corte Interamericana de Derechos Humanos en adelante la Corte Interamericana la Corte o el Tribunal", - "values": [ - "Corte Interamericana de Derechos Humanos" - ] - }, - { - "text": "RESOLUCI\u00d3N DE LA CORTE INTERAMERICANA DE DERECHOS HUMANOS DE DE NOVIEMBRE DE CASO BAYARRI Vs. ARGENTINA SUPERVISI\u00d3N DE CUMPLIMIENTO DE SENTENCIA VISTO La Sentencia de excepci\u00f3n preliminar fondo reparaciones y costas en adelante la Sentencia dictada por la Corte Interamericana de Derechos Humanos en adelante la Corte la Corte Interamericana o el Tribunal el de octubre de mediante la cual inter alia el Tribunal DISPUSO QUE El Estado debe pagar al se\u00f1or Juan Carlos Bayarri las cantidades ", - "values": [ - "Corte Interamericana de Derechos Humanos" - ] - }, - { - "text": "Corte Interamericana de Derechos Humanos Caso Comunidad ind\u00edgena Yakye Axa Vs. Paraguay Sentencia de de febrero de Interpretaci\u00f3n de la Sentencia de Fondo Reparaciones y Costas En el caso Comunidad ind\u00edgena Yakye Axa La Corte Interamericana de Derechos Humanos en adelante la Corte la Corte Interamericana o el Tribunal integrada por los siguientes jueces Sergio Garc\u00eda Ram\u00edrez Presidente Alirio Abreu Burelli Vicepresidente Oliver Jackman Juez Ant\u00f4nio A. Can\u00e7ado Trindade Juez Cecilia Medina E.", - "values": [ - "Corte Interamericana de Derechos Humanos" - ] - }, - { - "text": "RESOLUCI\u00d3N DE LA CORTE INTERAMERICANA DE DERECHOS HUMANOS DE DE AGOSTO DE CASO YATAMA VS. NICARAGUA SUPERVISI\u00d3N DE CUMPLIMIENTO DE SENTENCIA VISTO La Sentencia de excepciones preliminares fondo reparaciones y costas en adelante la Sentencia o el Fallo dictada por la Corte Interamericana de Derechos Humanos en adelante la Corte Interamericana la Corte o el Tribunal el de junio de En dicho Fallo se estableci\u00f3 que los candidatos propuestos por el partido pol\u00edtico regional ind\u00edgena Yapti Tasba", - "values": [ - "Corte Interamericana de Derechos Humanos" - ] - }, - { - "text": "Corte Interamericana de Derechos Humanos Caso Genie Lacayo Vs. Nicaragua Resoluci\u00f3n de la Corte de de septiembre de Solicitud de Revisi\u00f3n de la Sentencia de Fondo Reparaciones y Costas En el caso Genie Lacayo la Corte Interamericana de Derechos Humanos en adelante la Corte o la Corte Interamericana integrada por los siguientes jueces Hern\u00e1n Salgado Pesantes Presidente Ant\u00f4nio A. Can\u00e7ado Trindade Vicepresidente H\u00e9ctor FixZamudio Juez Alejandro Montiel Arg\u00fcello Juez M\u00e1ximo Pacheco G\u00f3mez Juez ", - "values": [ - "Corte Interamericana de Derechos Humanos" - ] - }, - { - "text": "RESOLUCI\u00d3N DE LA CORTE INTERAMERICANA DE DERECHOS HUMANOS DE DE NOVIEMBRE DE CASO BARRIOS ALTOS CUMPLIMIENTO DE SENTENCIA VISTOS La Sentencia de fondo dictada por la Corte Interamericana de Derechos Humanos en adelante la Corte o el Tribunal el de marzo de en la cual por unanimidad Admiti\u00f3 el reconocimiento de responsabilidad internacional efectuado por el Estado. Declar\u00f3 conforme a los t\u00e9rminos del reconocimiento de responsabilidad internacional efectuado por el Estado que \u00e9ste viol\u00f3 a ", - "values": [ - "Corte Interamericana de Derechos Humanos" - ] - }, - { - "text": "RESOLUCI\u00d3N DE LA CORTE INTERAMERICANA DE DERECHOS HUMANOS DE DE MAYO DE CASO HELIODORO PORTUGAL VS. PANAM\u00c1 SUPERVISI\u00d3N DE CUMPLIMIENTO DE SENTENCIA VISTO La Sentencia de excepciones preliminares fondo reparaciones y costas en adelante la Sentencia dictada por la Corte Interamericana de Derechos Humanos en adelante la Corte la Corte Interamericana o el Tribunal el de agosto de mediante la cual dispuso que el Estado deb\u00eda pagar a Graciela De Le\u00f3n Patria Portugal y Franklin Portugal la en", - "values": [ - "Corte Interamericana de Derechos Humanos" - ] - }, - { - "text": "CORTE INTERAMERICANA DE DERECHOS HUMANOS TICONA ESTRADA Y OTROS VS. BOLIVIA SENTENCIA DE DE NOVIEMBRE DE FONDO REPARACIONES Y COSTAS En el caso Ticona Estrada y otros la Corte Interamericana de Derechos Humanos en adelante la Corte Interamericana la Corte o el Tribunal integrada por los siguientes jueces Cecilia Medina Quiroga Presidenta Diego Garc\u00edaSay\u00e1n Vicepresidente Sergio Garc\u00eda Ram\u00edrez Juez Manuel E. Ventura Robles Juez Leonardo A. Franco Juez Margarette May Macaulay Jueza y Rhadys ", - "values": [ - "Corte Interamericana de Derechos Humanos" - ] - }, - { - "text": "CORTE INTERAMERICANA DE DERECHOS HUMANOS CASO ATALA RIFFO Y NI\u00d1AS VS. CHILE SENTENCIA DE DE FEBRERO DE Fondo Reparaciones y Costas En el caso Atala Riffo y ni\u00f1as la Corte Interamericana de Derechos Humanos en adelante la Corte Interamericana la Corte o el Tribunal integrada por los siguientes jueces Diego Garc\u00edaSay\u00e1n Presidente Manuel E. Ventura Robles Vicepresidente Leonardo A. Franco Juez Margarette May Macaulay Jueza Rhadys Abreu Blondet Jueza Alberto P\u00e9rez P\u00e9rez Juez y presentes adem\u00e1s ", - "values": [ - "Corte Interamericana de Derechos Humanos" - ] - }, - { - "text": "CORTE INTERAMERICANA DE DERECHOS HUMANOS CASO HERMANOS LANDAETA MEJ\u00cdAS Y OTROS VS. VENEZUELA VOTO PARCIALMENTE DISIDENTE DEL JUEZ ROBERTO F. CALDAS SENTENCIA DE DE AGOSTO DE Excepciones Preliminares Fondo Reparaciones y Costas El presente voto razonado se refiere solamente a una \u00fanica parte de la sentencia en la cual respetuosamente disent\u00ed de la mayor\u00eda lo que en raras oportunidades ocurre. La deliberaci\u00f3n estuvo compuesta por otros cuatros jueces toda vez que fue realizada con el qu\u00f3rum ", - "values": [ - "Corte Interamericana de Derechos Humanos" - ] - }, - { - "text": "RESOLUCI\u00d3N DE LA CORTE INTERAMERICANA DE DERECHOS HUMANOS DE DE SEPTIEMBRE DE MEDIDAS PROVISIONALES ORDENADAS POR LA CORTE INTERAMERICANA DE DERECHOS HUMANOS RESPECTO DE LA REP\u00daBLICA DE TRINIDAD Y TOBAGO CASOS JAMES Y OTROS VISTOS La Resoluci\u00f3n de la Corte Interamericana de Derechos Humanos en adelante la Corte de de mayo de en la cual decidi\u00f3 En relaci\u00f3n con las medidas provisionales adoptadas por la Corte el de agosto de a. Mantener las medidas provisionales ordenadas por la Corte de", - "values": [ - "Corte Interamericana de Derechos Humanos" - ] - }, - { - "text": "RESOLUCI\u00d3N DE LA CORTE INTERAMERICANA DE DERECHOS HUMANOS DE DE JUNIO DE MEDIDAS PROVISIONALES LILIANA ORTEGA Y OTRAS RESPECTO DE VENEZUELA VISTOS La Resoluci\u00f3n que emiti\u00f3 la Corte Interamericana de Derechos Humanos en adelante la Corte Interamericana la Corte o el Tribunal el de noviembre de mediante la cual resolvi\u00f3 Requerir al Estado que adopte sin dilaci\u00f3n cuantas medidas sean necesarias para proteger la vida e integridad personal de Liliana Ortega Yris Medina Cova Hilda P\u00e1ez Gilda ", - "values": [ - "Corte Interamericana de Derechos Humanos" - ] - }, - { - "text": "RESOLUCI\u00d3N DE LA CORTE INTERAMERICANA DE DERECHOS HUMANOS DE AGOSTO DE CASO CABRERA GARC\u00cdA Y MONTIEL FLORES VS. M\u00c9XICO SUPERVISI\u00d3N DE CUMPLIMIENTO DE SENTENCIA VISTO La Sentencia de Excepci\u00f3n Preliminar Fondo Reparaciones y Costas en adelante la Sentencia o el Fallo dictada por la Corte Interamericana de Derechos Humanos en adelante la Corte Interamericana la Corte o el Tribunal el de noviembre de En dicho Fallo se estableci\u00f3 que los se\u00f1ores Cabrera Garc\u00eda y Montiel Flores fueron por un ", - "values": [ - "Corte Interamericana de Derechos Humanos" - ] - }, - { - "text": "RESOLUCI\u00d3N DE LA CORTE INTERAMERICANA DE DERECHOS HUMANOS DE DE ENERO DE MEDIDAS PROVISIONALES RESPECTO DE VENEZUELA ASUNTO LUIS UZC\u00c1TEGUI VISTOS La Resoluci\u00f3n de la Corte Interamericana de Derechos Humanos en adelante la Corte Interamericana la Corte o el Tribunal de de noviembre de relativa a las medidas provisionales solicitadas por la Comisi\u00f3n Interamericana de Derechos Humanos en adelante la Comisi\u00f3n Interamericana o la Comisi\u00f3n respecto de la Rep\u00fablica Bolivariana de Venezuela en el", - "values": [ - "Corte Interamericana de Derechos Humanos" - ] - }, - { - "text": "INFORME N\u00ba CASO EMILIO MOIS\u00c9S Y RAFAEL SAMUEL G\u00d3MEZ PAQUIYAURI PER\u00da de marzo de I. RESUMEN El de julio de la Comisi\u00f3n Interamericana de Derechos Humanos en adelante la Comisi\u00f3n la Comisi\u00f3n Interamericana o CIDH recibi\u00f3 una petici\u00f3n presentada por la se\u00f1ora Marcelina Paquiyauri de G\u00f3mez y ampliada por el Centro de Estudios y Acci\u00f3n para la Paz CEAPAZ en adelante los peticionarios en contra de la Rep\u00fablica del Per\u00fa en adelante Per\u00fa el Estado o el Estado peruano por la detenci\u00f3n arbitraria", - "values": [ - "Comisi\u00f3n Interamericana de Derechos Humanos" - ] - }, - { - "text": "VOTO FUNDAMENTADO CONCORDANTE DO JUIZ SERGIO GARCIA RAM\u00cdREZ \u00c0 SENTEN\u00c7A DE M\u00c9RITO E REPARA\u00c7\u00d5ES DO CASO DA COMUNIDADE MAYAGNA SUMO AWAS TINGNI Coincido com o voto majorit\u00e1rio dos Ju\u00edzes que integram a Corte na Senten\u00e7a de m\u00e9rito e repara\u00e7\u00f5es do presente caso que declara a exist\u00eancia de viola\u00e7\u00f5es aos artigos e da Conven\u00e7\u00e3o Americana sobre Direitos Humanos em detrimento da Comunidade Mayagna Awas Tingni. Para chegar a esta decis\u00e3o a Corte examinou cuidadosamente as pretens\u00f5es dos peticion\u00e1rios ", - "values": [ - "Corte Interamericana de Derechos Humanos" - ] - }, - { - "text": "RESOLUCI\u00d3N DE LA CORTE INTERAMERICANA DE DERECHOS HUMANOS DE DE JULIO DE MEDIDAS PROVISIONALES SOLICITADAS POR LA COMISI\u00d3N INTERAMERICANA DE DERECHOS HUMANOS RESPECTO DE LA REP\u00daBLICA DE VENEZUELA CASO DIARIOS EL NACIONAL Y AS\u00cd ES LA NOTICIA VISTOS El escrito de la Comisi\u00f3n Interamericana de Derechos Humanos en adelante la Comisi\u00f3n o la Comisi\u00f3n Interamericana de de junio de mediante el cual someti\u00f3 a la Corte Interamericana de Derechos Humanos en adelante la Corte o la Corte Interamericana", - "values": [ - "Corte Interamericana de Derechos Humanos" - ] - }, - { - "text": "INFORME N\u00ba PETICI\u00d3N ADMISIBILIDAD ARLEY JOS\u00c9 ESCHER Y OTROS INTERCEPTACI\u00d3N DE L\u00cdNEAS TELEF\u00d3NICAS DE ORGANIZACIONES SOCIALES BRASIL de marzo de I. RESUMEN El de junio de la Rede Nacional Aut\u00f3noma de abogadas y abogadas Populares RENAAP y el Centro de Justi\u00e7a Global CJG en adelante los peticionarios presentaron una denuncia ante la Comisi\u00f3n Interamericana de Derechos Humanos la Comisi\u00f3n en contra de la Rep\u00fablica Federativa de Brasil el Estado por la presunta violaci\u00f3n de los derechos al ", - "values": [ - "Comisi\u00f3n Interamericana de Derechos Humanos" - ] - }, - { - "text": "VOTO DISIDENTE DE LA JUEZA CECILIA MEDINA QUIROGA EN EL CASO L\u00d3PEZ ALVAREZ VS. HONDURAS Estoy en general de acuerdo con la decisi\u00f3n de la Corte en relaci\u00f3n con las violaciones a los derechos humanos determinadas en la sentencia precedente excepto respecto de la violaci\u00f3n del art\u00edculo de la Convenci\u00f3n Americana No encuentro en este caso ninguna raz\u00f3n para declarar que se ha violado este art\u00edculo. De hecho los p\u00e1rrafos de la sentencia que se refieren a \u00e9l los n\u00fameros a se remiten a citar la", - "values": [ - "Corte Interamericana de Derechos Humanos" - ] - }, - { - "text": "InterAmerican Court of Human Rights Case of the Sawhoyamaxa Indigenous Community v. Paraguay Judgment of March Merits Reparations and Costs In the Case of Sawhoyamaxa Indigenous Community the InterAmerican Court of Human Rights hereinafter the Court the InterAmerican Court or the Tribunal composed of the following judges Sergio Garc\u00edaRam\u00edrez President Alirio AbreuBurelli VicePresident Oliver Jackman Judge Ant\u00f4nio A. Can\u00e7ado Trindade Judge Cecilia MedinaQuiroga Judge Manuel E. VenturaRobles ", - "values": [ - "Corte Interamericana de Derechos Humanos" - ] - }, - { - "text": "CORTE INTERAMERICANA DE DIREITOS HUMANOS CASO INSTITUTO DE REEDUCA\u00c7\u00c3O DO MENOR VS. PARAGUAI SENTEN\u00c7A DE DE SETEMBRO DE Exce\u00e7\u00f5es Preliminares M\u00e9rito Repara\u00e7\u00f5es e Custas No caso do Instituto de Reeduca\u00e7\u00e3o do Menor a Corte Interamericana de Direitos Humanos doravante denominada a Corte a Corte Interamericana ou o Tribunal integrada pelos seguintes ju\u00edzes Sergio Garc\u00eda Ram\u00edrez Presidente Alirio Abreu Burelli VicePresidente Oliver Jackman Juiz Ant\u00f4nio A. Can\u00e7ado Trindade Juiz Cecilia Medina Ju\u00edza", - "values": [ - "Corte Interamericana de Derechos Humanos" - ] - }, - { - "text": "VOTO RAZONADO CASO ESCU\u00c9 ZAPATA vs. COLOMBIA He concurrido con mi voto para aprobar por unanimidad la presente sentencia en el caso Escu\u00e9 Zapata contra Colombia pero considero necesario aclarar mi posici\u00f3n sobre un tema que fue considerado en la deliberaci\u00f3n de este caso y durante los \u00faltimos tres a\u00f1os en diversos casos ante la Corte. Se trata de la aplicaci\u00f3n e interpretaci\u00f3n de los art\u00edculos y de la Convenci\u00f3n en relaci\u00f3n con el art\u00edculo y por ende tambi\u00e9n sobre la naturaleza y raz\u00f3n de ", - "values": [ - "Corte Interamericana de Derechos Humanos" - ] - }, - { - "text": "Corte Interamericana de Derechos Humanos Caso Trujillo Oroza Vs. Bolivia Sentencia de de febrero de Reparaciones y Costas En el caso Trujillo Oroza la Corte Interamericana de Derechos Humanos en adelante la Corte la Corte Interamericana o el Tribunal integrada por los siguientes jueces Ant\u00f4nio A. Can\u00e7ado Trindade Presidente Alirio Abreu Burelli Vicepresidente Hern\u00e1n Salgado Pesantes Juez Oliver Jackman Juez Sergio Garc\u00eda Ram\u00edrez Juez Carlos Vicente de Roux Rengifo Juez y Charles N. Brower ad", - "values": [ - "Corte Interamericana de Derechos Humanos" - ] - }, - { - "text": "Resoluci\u00f3n del Presidente de la Corte Interamericana de Derechos Humanos De de enero de Caso de los Ni\u00f1os de la CalleVillagr\u00e1n Morales y otros Vs. Guatemala Supervisi\u00f3n de Cumplimiento de Sentencias VISTOS La Resoluci\u00f3n del Presidente de la Corte Interamericana de Derechos Humanos en adelante la Corte la Corte Interamericana o el Tribunal de de diciembre de mediante la cual resolvi\u00f3 inter alia Convocar a la Comisi\u00f3n Interamericana de Derechos Humanos a los representantes de las v\u00edctimas y ", - "values": [ - "Corte Interamericana de Derechos Humanos" - ] - }, - { - "text": "RELAT\u00d3RIO N\u00ba PETI\u00c7\u00d5ES e ADMISSIBILIDADE JUAN CARLOS CHAPARRO ALVAREZ FREDDY HERNAN LAPO I\u00d1IGUEZ EQUADOR de outubro de I. RESUMO Em de setembro de a Comiss\u00e3o Interamericana de Direitos Humanos doravante denominada a Comiss\u00e3o ou a CIDH recebeu uma den\u00fancia que alegava a viola\u00e7\u00e3o de direitos protegidos pela Conven\u00e7\u00e3o Americana sobre Direitos Humanos doravante denominada a Conven\u00e7\u00e3o Americana pela Rep\u00fablica do Equador doravante denominada o Estado ou Equador em detrimento do Sr. Juan ", - "values": [ - "Comisi\u00f3n Interamericana de Derechos Humanos" - ] - }, - { - "text": "Corte Interamericana de Derechos Humanos Caso Loayza Tamayo Vs. Per\u00fa Resoluci\u00f3n del de noviembre de Cumplimiento de Sentencia VISTOS Las sentencias sobre excepciones preliminares y fondo dictadas por la Corte Interamericana de Derechos Humanos en adelante la Corte o la Corte Interamericana o el Tribunal el de enero de y el de septiembre de respectivamente. En ambas sentencias la Corte se pronunci\u00f3 sobre la improcedencia de la excepci\u00f3n interpuesta por el Estado del Per\u00fa en adelante el o", - "values": [ - "Corte Interamericana de Derechos Humanos" - ] - }, - { - "text": " Voto razonado del Juez de Roux Rengifo El quid jur\u00eddico del presente caso gira en torno al art\u00edculo de la Convenci\u00f3n Americana en tanto dispone quela pena de muerte s\u00f3lo podr\u00e1 imponerse por los delitos m\u00e1s graves. Treinta y una de las v\u00edctimas no han sido ejecutadas y ojal\u00e1 nunca lo sean. En otras palabras no han sido privadas de la vida. Sin embargo el derecho que les confiere el art\u00edculo les ha sido conculcado porque se les ha aplicado una ley la Ley de Delitos contra la Persona de y ", - "values": [ - "Corte Interamericana de Derechos Humanos" - ] - }, - { - "text": "VOTO CONCORDANTE DO JUIZ SERGIO GARC\u00cdA RAM\u00cdREZ COM RELA\u00c7\u00c3O \u00c0 SENTEN\u00c7A DA CORTE INTERAMERICANA DE DIREITOS HUMANOS NO CASO ESCHER E OUTROS VS. BRASIL PROFERIDA EM DE JULHO DE Chegam \u00e0 Corte temas novos para esta jurisdi\u00e7\u00e3o que concorrem a integrar o amplo cat\u00e1logo de quest\u00f5es sobre as que trabalha em benef\u00edcio dos direitos e das liberdades dos habitantes da Am\u00e9rica uma jurisprud\u00eancia em constante desenvolvimento. Certamente est\u00e1 pendente a revis\u00e3o de um bom n\u00famero de assuntos que interessam ", - "values": [ - "Corte Interamericana de Derechos Humanos" - ] - }, - { - "text": "CORTE INTERAMERICANA DE DERECHOS HUMANOS CASO M\u00c9MOLI VS. ARGENTINA SENTENCIA DE DE AGOSTO DE Excepciones preliminares Fondo Reparaciones y Costas En el caso M\u00e9moli la Corte Interamericana de Derechos Humanos en adelante la Corte Interamericana la Corte o este Tribunal integrada por los siguientes jueces Diego Garc\u00edaSay\u00e1n Presidente Manuel E. Ventura Robles Vicepresidente Alberto P\u00e9rez P\u00e9rez Juez Eduardo Vio Grossi Juez Roberto F. Caldas Juez Humberto Antonio Sierra Porto Juez y Eduardo Ferrer", - "values": [ - "Corte Interamericana de Derechos Humanos" - ] - }, - { - "text": "RESOLUCI\u00d3N DE LA CORTE INTERAMERICANA DE DERECHOS HUMANOS DE DE JUNIO DE MEDIDAS PROVISIONALES RESPECTO DE LA REPUBLICA DE HONDURAS CASO KAWAS FERN\u00c1NDEZ VS. HONDURAS VISTO Las Resoluciones de la Corte Interamericana de Derechos Humanos en adelante la Corte Interamericana la Corte o el Tribunal de de noviembre de y de julio de En esta ultima la Corte resolvi\u00f3 Reiterar a la Rep\u00fablica de Honduras que adopte sin dilaci\u00f3n cuantas medidas sean necesarias para asegurar eficazmente la de la e", - "values": [ - "Corte Interamericana de Derechos Humanos" - ] - }, - { - "text": "RESOLUCI\u00d3N DE LA CORTE INTERAMERICANA DE DERECHOS HUMANOS DE DE MAYO DE MEDIDAS PROVISIONALES RESPECTO DE COLOMBIA ASUNTO DANILO RUEDA VISTO El escrito de la Comisi\u00f3n Interamericana de Derechos Humanos en adelante la Comisi\u00f3n Interamericana o la Comisi\u00f3n de de abril de mediante el cual someti\u00f3 a la Corte Interamericana de Derechos Humanos en adelante la Corte Interamericana la Corte o el Tribunal una solicitud de medidas provisionales de conformidad con los art\u00edculos de la Convenci\u00f3n ", - "values": [ - "Corte Interamericana de Derechos Humanos" - ] - }, - { - "text": "RESOLUCI\u00d3N DE LA CORTE INTERAMERICANA DE DERECHOS HUMANOS DE DE JULIO DE CASO SU\u00c1REZ ROSERO VS. ECUADOR CUMPLIMIENTO DE SENTENCIAS VISTOS La Sentencia de fondo dictada por la Corte Interamericana de Derechos Humanos en adelante la Corte la Corte Interamericana o el Tribunal el de noviembre de mediante la cual por unanimidad Declar\u00f3 que el Ecuador deb\u00eda ordenar una investigaci\u00f3n para determinar las personas responsables de las violaciones a los derechos humanos a que se hab\u00eda hecho en ", - "values": [ - "Corte Interamericana de Derechos Humanos" - ] - }, - { - "text": "RESOLUCI\u00d3N DE LA CORTE INTERAMERICANA DE DERECHOS HUMANOS DE DE JUNIO DE CASOS CASTILLO P\u00c1EZ LOAYZA TAMAYO CASTILLO PETRUZZI Y OTROS IVCHER BRONSTEIN Y DEL TRIBUNAL CONSTITUCIONAL CUMPLIMIENTO DE SENTENCIA VISTOS Lo decidido por la Corte Interamericana de Derechos Humanos en adelante la Corte o la Corte Interamericana o el Tribunal en la Sentencia sobre Reparaciones de de noviembre de en el Caso Castillo P\u00e1ez. Lo decidido por la Corte en la Sentencia sobre Reparaciones de de noviembre de", - "values": [ - "Corte Interamericana de Derechos Humanos" - ] - }, - { - "text": "Corte Interamericana de Derechos Humanos Caso Bulacio Vs. Argentina Sentencia de de septiembre de Fondo Reparaciones y Costas En el caso Bulacio la Corte Interamericana de Derechos Humanos en adelante la Corte o la Corte Interamericana integrada por los siguientes jueces Ant\u00f4nio A. Can\u00e7ado Trindade Presidente Sergio Garc\u00eda Ram\u00edrez Vicepresidente Hern\u00e1n Salgado Pesantes Juez Oliver Jackman Juez Alirio Abreu Burelli Juez y Ricardo Gil Lavedra Juez ad hoc presentes adem\u00e1s Manuel E. Ventura y ", - "values": [ - "Corte Interamericana de Derechos Humanos" - ] - }, - { - "text": "RESOLUCI\u00d3N DE LA CORTE INTERAMERICANA DE DERECHOS HUMANOS DE DE NOVIEMBREDE CASOS GUATEMALTECOS SUPERVISI\u00d3N DE CUMPLIMIENTO DE SENTENCIAS RESPECTO DE LA OBLIGACI\u00d3N DE INVESTIGAR JUZGAR Y DE SER EL CASO SANCIONAR A LOS RESPONSABLES DE LAS VIOLACIONES A LOS DERECHOS HUMANOS En las sentenciasemitidas por la Corte Interamericana de Derechos Humanos en adelante la Corte la Corte Interamericana o el Tribunal el de enero de en el caso Blake el de mayo de en el caso de la Panel Blanca Paniagua ", - "values": [ - "Corte Interamericana de Derechos Humanos" - ] - }, - { - "text": "RESOLUCI\u00d3N DE LA CORTE INTERAMERICANA DE DERECHOS HUMANOS DE DE FEBRERO DE MEDIDAS PROVISIONALES RESPECTO DE LA REP\u00daBLICA ARGENTINA ASUNTO MILLACURA LLAIP\u00c9N Y OTROS VISTO La Resoluci\u00f3n del Presidente de la Corte Interamericana de Derechos Humanos en adelante la Corte Interamericana la Corte o el Tribunal de de junio de as\u00ed como las Resoluciones del Tribunal de de julio de de febrero de y de noviembre de En esta \u00faltima la Corte resolvi\u00f3 inter alia levantar las medidas provisionales a", - "values": [ - "Corte Interamericana de Derechos Humanos" - ] - }, - { - "text": "VOTO CONCORDANTE FUNDAMENTADO DO JUIZ AD HOC EMILIO CAMACHO PAREDES CASO RICARDO CANESE VS. PARAGUAI Compartilho os fundamentos da presente senten\u00e7a raz\u00e3o pela qual concordo com a mesma. As quest\u00f5es propostas e as responsabilidades determinadas me suscitaram algumas reflex\u00f5es que me vejo na obriga\u00e7\u00e3o de consignar neste voto. O ato de processar penalmente n\u00e3o implica nenhuma criminaliza\u00e7\u00e3o de conduta pois a inj\u00faria e a difama\u00e7\u00e3o est\u00e3o tipificadas na lei penal artigos e Lei e difama\u00e7\u00e3o e ", - "values": [ - "Corte Interamericana de Derechos Humanos" - ] - }, - { - "text": "CORTE INTERAMERICANA DE DERECHOS HUMANOS CASO SU\u00c1REZ PERALTA VS. ECUADOR SENTENCIA DE DE MAYO DE Excepciones Preliminares Fondo Reparaciones y Costas En el caso Su\u00e1rez Peralta la Corte Interamericana de Derechos Humanos en adelante la Corte Interamericana la Corte o el Tribunal integrada por los siguientes jueces Diego Garc\u00edaSay\u00e1n Presidente Manuel E. Ventura Robles Vicepresidente Alberto P\u00e9rez P\u00e9rez Juez Eduardo Vio Grossi Juez Roberto de Figueiredo Caldas Juez Humberto Sierra Porto Juez y ", - "values": [ - "Corte Interamericana de Derechos Humanos" - ] - }, - { - "text": "Resoluci\u00f3n de la Corte Interamericana de Derechos Humanos de de febrero de Solicitud de Adopci\u00f3n de Medidas Provisionales Caso De La Cruz Flores Vs. Per\u00fa Visto La Sentencia de fondo reparaciones y costas en adelante la Sentencia emitida en el presente caso por la Corte Interamericana de Derechos Humanos en adelante la Corte la Corte Interamericana o el Tribunal el de noviembre de Las Resoluciones de la Corte Interamericana de de noviembre de de septiembre de y de febrero de sobre ", - "values": [ - "Corte Interamericana de Derechos Humanos" - ] - }, - { - "text": "RESOLUCI\u00d3N DE LA CORTE INTERAMERICANA DE DERECHOS HUMANOS DE DE FEBRERO DE MEDIDAS PROVISIONALES CASO LOAYZA TAMAYO VISTOS El escrito de de noviembre de y sus anexos recibido el de diciembre de en la Secretar\u00eda de la Corte Interamericana de Derechos Humanos en adelante la Corte o la Corte Interamericana mediante el cual la se\u00f1ora Michelangela Scalabrino someti\u00f3 a la Corte en nombre de la se\u00f1ora Mar\u00eda Elena Loayza Tamayo en adelante la se\u00f1ora Loayza Tamayo al amparo de los art\u00edculos de ", - "values": [ - "Corte Interamericana de Derechos Humanos" - ] - }, - { - "text": "Corte Interamericana de Derechos Humanos Caso Fair\u00e9n Garbi y Sol\u00eds Corrales Vs. Honduras Sentencia de de junio de Excepciones Preliminares En el caso Fair\u00e9n Garbi y Sol\u00eds Corrales la Corte Interamericana de Derechos Humanos en adelante la Corte integrada por los siguientes jueces Thomas Buergenthal Presidente Rafael Nieto Navia Vicepresidente Rodolfo E. Piza E Juez Pedro Nikken Juez H\u00e9ctor FixZamudio Juez H\u00e9ctor Gros Espiell Juez Rigoberto Espinal Ir\u00edas Juez ad hoc presentes adem\u00e1s Charles ", - "values": [ - "Corte Interamericana de Derechos Humanos" - ] - }, - { - "text": "VOTO DISIDENTE DEL JUEZ EDUARDO VIO GROSSI. CORTE INTERAMERICANA DE DERECHOS HUMANOS CASO ARTAVIA MURILLO Y OTROS FECUNDACI\u00d3N IN VITRO VS. COSTA RICA SENTENCIA DE DE NOVIEMBRE DE Excepciones Preliminares Fondo Reparaciones y Costas INTRODUCCI\u00d3N. Con el mayor respeto y consideraci\u00f3n hacia la Corte Interamericana de Derecho Humanos en adelante la Corte y ciertamente hacia cada uno de sus miembros se formula el presente voto disidente a la Sentencia indicada en el t\u00edtulo en adelante la en del", - "values": [ - "Corte Interamericana de Derechos Humanos" - ] - }, - { - "text": "RESOLUCI\u00d3N DE LA CORTE INTERAMERICANA DE DERECHOS HUMANOS DE DE NOVIEMBRE DE CASO GARC\u00cdA ASTO Y RAM\u00cdREZ ROJAS VS. PER\u00da SUPERVISI\u00d3N DE CUMPLIMIENTO DE SENTENCIA VISTO La Sentencia de excepci\u00f3n preliminar fondo reparaciones y costas en adelante la Sentencia de de noviembre de dictada por la Corte Interamericana de Derechos Humanos en adelante la Corte Interamericana la Corte o este Tribunal en la cual se declar\u00f3 la violaci\u00f3n a los derechos a la integridad personal la libertad personal de", - "values": [ - "Corte Interamericana de Derechos Humanos" - ] - }, - { - "text": "RESOLUCI\u00d3N DEL PRESIDENTE DE LA CORTE INTERAMERICANA DE DERECHOS HUMANOS DE DE MARZO DE CASO OMAR HUMBERTO MALDONADO VARGAS Y OTROS VS. CHILE VISTO El escrito de sometimiento del caso y el Informe de Fondo de la Comisi\u00f3n Interamericana de Derechos Humanos en adelante la Comisi\u00f3n Interamericana o la Comisi\u00f3n el escrito de solicitudes argumentos y pruebas en adelante el escrito de solicitudes y argumentospresentado por el interviniente com\u00fan de los representantes en adelante el interviniente ", - "values": [ - "Corte Interamericana de Derechos Humanos" - ] - }, - { - "text": "CORTE INTERAMERICANA DE DERECHOS HUMANOS CASO BREWER CAR\u00cdAS VS. VENEZUELA SENTENCIA DE DE MAYO DE Excepciones Preliminares En el caso Allan Randolph Brewer Car\u00edas Vs. la Rep\u00fablica Bolivariana de Venezuela la Corte Interamericana de Derechos Humanos en adelante la Corte Interamericana la Corte o el Tribunal integrada por los siguientes jueces Humberto Antonio Sierra Porto Presidente Roberto F. Caldas Vicepresidente Manuel E. Ventura Robles Juez Diego Garc\u00edaSay\u00e1n Juez Alberto P\u00e9rez P\u00e9rez Juez ", - "values": [ - "Corte Interamericana de Derechos Humanos" - ] - }, - { - "text": "RESOLUCI\u00d3N DE LA CORTE INTERAMERICANA DE DERECHOS HUMANOS DE AGOSTO DE MEDIDAS PROVISIONALES RESPECTO DE EL SALVADOR ASUNTO MEL\u00c9NDEZ QUIJANO Y OTROS VISTO Las Resoluciones de la Corte Interamericana de Derechos Humanos en adelante tambi\u00e9n la Corte Interamericana la Corte o el Tribunal emitidas el de mayo de de noviembre de y de febrero de En esta \u00faltima la Corte resolvi\u00f3 Levantar las medidas provisionales a favor de los beneficiarios Jos\u00e9 Roberto Burgos Viale y Eur\u00edpides Manuel al", - "values": [ - "Corte Interamericana de Derechos Humanos" - ] - }, - { - "text": "RESOLUCI\u00d3N DE LA CORTE INTERAMERICANA DE DERECHOS HUMANOS DE DE FEBRERO DE CASO ESCU\u00c9 ZAPATA VS. COLOMBIA SUPERVISI\u00d3N DE CUMPLIMIENTO DE SENTENCIA VISTOS La Sentencia de fondo reparaciones y costas en adelante la Sentencia dictada por la Corte Interamericana de Derechos Humanos en adelante la Corte la Corte Interamericana o el Tribunal el de julio de As\u00ed como la Sentencia de Interpretaci\u00f3n dictada por la Corte el de mayo de La Resoluci\u00f3n del Presidente de la Corte de de abril de la ", - "values": [ - "Corte Interamericana de Derechos Humanos" - ] - }, - { - "text": "INFORME N\u00ba ADMISIBILIDAD PETICI\u00d3N ARG\u00dcELLES Y OTROS ARGENTINA de octubre de I. RESUMEN El presente informe se refiere a la admisibilidad de la petici\u00f3n La Comisi\u00f3n Interamericana de Derechos Humanos en adelante Comisi\u00f3n Interamericana Comisi\u00f3n o CIDH abri\u00f3 el presente caso tras recibir una serie de denuncias presentadas entre el de junio y el de octubre de en nombre de personas Hugo Oscar Arg\u00fcelles Miguel \u00c1ngel Maluf Miguel Ram\u00f3n Taranto Ambrosio Marcial Miguel Oscar Cardozo Julio ", - "values": [ - "Comisi\u00f3n Interamericana de Derechos Humanos" - ] - }, - { - "text": "RESOLUCI\u00d3N DE LA CORTE INTERAMERICANA DE DERECHOS HUMANOS DE DE MAYO DE CASO V\u00c9LIZ FRANCO Y OTROS VS. GUATEMALA SUPERVISI\u00d3N DE CUMPLIMIENTO DE SENTENCIA VISTO La Sentencia de excepciones preliminares fondo reparaciones y costas en adelante la Sentencia dictada por la Corte Interamericana de Derechos Humanos en adelante la Corte la Corte Interamericana o este Tribunal el de mayo de La Corte declar\u00f3 responsable internacionalmente a la Rep\u00fablica de Guatemala en adelante el Estado o Guatemala ", - "values": [ - "Corte Interamericana de Derechos Humanos" - ] - }, - { - "text": "RESOLUCI\u00d3N DE LA CORTE INTERAMERICANA DE DERECHOS HUMANOS DE DE MAYO DE AMPLIACI\u00d3N DE LAS MEDIDAS PROVISIONALES ADOPTADAS LA COMISI\u00d3N INSTRAMERICANA DE DERECHOS HUMANOS RESPECTO DE LA REP\u00daBLICA DE TRINIDAD Y TOBAGO CASOS JAMES Y OTROS VISTOS La tramitaci\u00f3n en los casos James y otros en los cuales la Corte Interamericana de Derechos Humanos en adelante la Corte orden\u00f3 medidas provisionales respecto de veintiocho personas condenadas a muerte en la Rep\u00fablica de Trinidad y Tobago en adelante el ", - "values": [ - "Corte Interamericana de Derechos Humanos" - ] - }, - { - "text": "Corte Interamericana de Direitos Humanos Caso Chaparro \u00c1lvarez e Lapo \u00cd\u00f1iguez vs. Equador Senten\u00e7a de de novembro de EXCE\u00c7\u00d5ES PRELIMINARES M\u00c9RITO REPARA\u00c7\u00d5ES E CUSTAS No caso Chaparro \u00c1lvarez e Lapo \u00cd\u00f1iguez A Corte Interamericana de Direitos Humanos doravante denominada Interamericana Corte ou Tribunal integrada pelos seguintes ju\u00edzes Corte Sergio Garc\u00eda Ram\u00edrez Presidente Cecilia Medina Quiroga VicePresidenta Manuel E. Ventura Robles Juiz Diego Garc\u00edaSay\u00e1n Juiz Leonardo A. Franco Juiz May ", - "values": [ - "Corte Interamericana de Derechos Humanos" - ] - }, - { - "text": "RESOLUCI\u00d3N DE LA CORTE INTERAMERICANA DE DERECHOS HUMANOS DE DE ABRIL DE CASO DEL PENAL MIGUEL CASTRO CASTRO VS. PER\u00da SUPERVISI\u00d3N DE CUMPLIMIENTO DE SENTENCIA VISTO La Sentencia de fondo reparaciones y costas en adelante la Sentencia emitida en el presente caso por la Corte Interamericana de Derechos Humanos en adelante la Corte Interamericana la Corte o el Tribunal el de noviembre de Tomando en cuenta el reconocimiento parcial de responsabilidad efectuado por la Rep\u00fablica del Per\u00fa el o", - "values": [ - "Corte Interamericana de Derechos Humanos" - ] - }, - { - "text": "RESOLUCI\u00d3N DE LA CORTE INTERAMERICANA DE DERECHOS HUMANOS DE DE JUNIO DE MEDIDAS PROVISIONALES RESPECTO DEL ESTADO DE GUATEMALA CASO BLAKE VISTOS La Resoluci\u00f3n del Presidente de la Corte Interamericana de Derechos Humanos en adelante el Presidente de de agosto de mediante la cual resolvi\u00f3 Solicitar al Gobierno de la Rep\u00fablica de Guatemala que adopte sin dilaci\u00f3n cuantas medidas sean necesarias para asegurar eficazmente la protecci\u00f3n de la vida e integridad personal de JUSTO VICTORIANO ", - "values": [ - "Corte Interamericana de Derechos Humanos" - ] - }, - { - "text": "RESOLUCI\u00d3N DE LA CORTE INTERAMERICANA DE DERECHOS HUMANOS DE DE ENERO DE MEDIDAS PROVISIONALES RESPECTO DE LA REP\u00daBLICA FEDERATIVA DE BRASIL ASUNTO DE LA UNIDAD DE INTERNACI\u00d3N SOCIOEDUCATIVA VISTO Las Resoluciones dictadas por la Corte Interamericana de Derechos Humanos en adelante la Corte Interamericana la Corte o el Tribunal el de febrero y de septiembre de de abril y de noviembre de y de agosto de en las cuales entre otros requiri\u00f3 a la Rep\u00fablica Federativa de Brasil en adelante ", - "values": [ - "Corte Interamericana de Derechos Humanos" - ] - }, - { - "text": "RESOLU\u00c7\u00c3O DA CORTE INTERAMERICANA DE DIREITOS HUMANOS DE DE FEVEREIRO DE CASO GARIBALDI VS. BRASIL SUPERVIS\u00c3O DE CUMPRIMENTO DE SENTEN\u00c7A VISTO A Senten\u00e7a de exce\u00e7\u00f5es preliminares m\u00e9rito repara\u00e7\u00f5es e custas de de setembro de doravante a Senten\u00e7a emitida pela Corte Interamericana de Direitos Humanos doravante a Corte Interamericana a Corte ou o Tribunal mediante a qual disp\u00f4s que O Estado deve publicar no Di\u00e1rio Oficial em outro jornal de ampla circula\u00e7\u00e3o nacional e em um jornal de ampla ", - "values": [ - "Corte Interamericana de Derechos Humanos" - ] - }, - { - "text": "RESOLUCI\u00d3N DE LA CORTE INTERAMERICANA DE DERECHOS HUMANOS DE DE MAYO DE AMPLIACI\u00d3N DE MEDIDAS PROVISIONALES SOLICITADA POR LA COMISI\u00d3N INTERAMERICANA DE DERECHOS HUMANOS RESPECTO DE LA REP\u00daBLICA DE COLOMBIA CASO \u00c1LVAREZ Y OTROS VISTOS La Resoluci\u00f3n del Presidente de la Corte Interamericana de Derechos Humanos en adelante el Presidente de de julio de en cuya parte dispositiva decidi\u00f3 Requerir a la Rep\u00fablica de Colombia que adopte sin dilaci\u00f3n cuantas medidas sean necesarias para proteger ", - "values": [ - "Corte Interamericana de Derechos Humanos" - ] - }, - { - "text": "RESOLUCI\u00d3N DE LA CORTE INTERAMERICANA DE DERECHOS HUMANOS DE DE MARZO DE CASO LOAYZA TAMAYO VS. PER\u00da SUPERVISI\u00d3N DE CUMPLIMIENTO DE SENTENCIA VISTOS La Sentencia de fondo dictada en el presente caso por la Corte Interamericana de Derechos Humanos en adelante la Corte la Corte Interamericana o el Tribunal el de septiembre de en la que dispuso en los puntos resolutivos quinto y sexto que ordenaba al Estado del Per\u00fa poner en libertad a Mar\u00eda Elena Loayza Tamayo dentro de un plazo razonable ", - "values": [ - "Corte Interamericana de Derechos Humanos" - ] - }, - { - "text": "Corte Interamericana de Derechos Humanos Caso de las Hermanas Serrano Cruz Vs. El Salvador Sentencia de de marzo de Fondo Reparaciones y Costas En el caso de las Hermanas Serrano Cruz la Corte Interamericana de Derechos Humanos en adelante la Corte Interamericana la Corte o el Tribunal integrada por los siguientes jueces Sergio Garc\u00eda Ram\u00edrez Presidente Alirio Abreu Burelli Vicepresidente Oliver Jackman Juez Ant\u00f4nio A. Can\u00e7ado Trindade Juez Cecilia Medina Quiroga Jueza Manuel E. Ventura Juez", - "values": [ - "Corte Interamericana de Derechos Humanos" - ] - }, - { - "text": "Corte Interamericana de Derechos Humanos Caso Loayza Tamayo Vs. Per\u00fa Sentencia de de enero de Excepciones Preliminares En el caso Loayza Tamayo la Corte Interamericana de Derechos Humanos integrada por los siguientes jueces H\u00e9ctor FixZamudio Presidente Hern\u00e1n Salgado Pesantes Vicepresidente Alejandro Montiel Arg\u00fcello Juez M\u00e1ximo Pacheco G\u00f3mez Juez Oliver Jackman Juez Alirio Abreu Burelli Juez Ant\u00f4nio A. Can\u00e7ado Trindade Juez presentes adem\u00e1s Manuel E. Ventura Robles Secretario y Ana Mar\u00eda ", - "values": [ - "Corte Interamericana de Derechos Humanos" - ] - }, - { - "text": "Resoluci\u00f3n de la Presidenta de la Corte Interamericana de Derechos Humanos de de agosto de Caso Myrna Mack Chang Vs. Guatemala Supervisi\u00f3n de Cumplimiento de Sentencia Y Medidas Provisionales Visto A Supervisi\u00f3n de cumplimiento de la Sentencia La Sentencia de fondo reparaciones y costas en adelante la Sentencia dictada por la Corte Interamericana de Derechos Humanos en adelante la Corte Interamericana la Corte o el Tribunal el de noviembre de Las Resoluciones dictadas por la Corte el de", - "values": [ - "Corte Interamericana de Derechos Humanos" - ] - }, - { - "text": "RESOLUCI\u00d3N DEL PRESIDENTE DE LA CORTE INTERAMERICANA DE DERECHOS HUMANOS EN EJERCICIO PARA EL PRESENTE CASO DE DE MARZO DE FONDO DE ASISTENCIA LEGAL DE V\u00cdCTIMAS CASO OSORIO RIVERA Y OTROS VS. PER\u00da VISTO El escrito de de junio de mediante el cual la Comisi\u00f3n Interamericana de Derechos Humanos en adelante la Comisi\u00f3n Interamericana o la Comisi\u00f3n someti\u00f3 a la Corte Interamericana de Derechos Humanos en adelante la Corte Interamericana la Corte o el Tribunal un caso en contra de la Rep\u00fablica ", - "values": [ - "Corte Interamericana de Derechos Humanos" - ] - }, - { - "text": "RESOLUCI\u00d3N DE LA CORTE INTERAMERICANA DE DERECHOS HUMANOS DE DE AGOSTO DE CASO DE LA MASACRE DE LA ROCHELA Vs. COLOMBIA SUPERVISI\u00d3N DE CUMPLIMIENTO DE SENTENCIA VISTO La Sentencia de fondo reparaciones y costas emitida el de mayo de en adelante la Sentencia por la Corte Interamericana de Derechos Humanos en adelante la Corte Interamericana la Corte o el Tribunal en la cual orden\u00f3 las medidas de reparaci\u00f3n que deben ser cumplidas por el Estado. La Sentencia de Interpretaci\u00f3n de la dictada", - "values": [ - "Corte Interamericana de Derechos Humanos" - ] - }, - { - "text": "VOTO RAZONADO CONCURRENTE DEL JUEZ ADHOC GUSTAVO ZAFRA ROLDAN Comparto integralmente la Sentencia de la Corte Interamericana sobre el caso de la Masacre de Mapirip\u00e1n. Quiero expresar algunos razonamientos adicionales En los casos que el Estado de Colombia y las v\u00edctimas han conciliado ante la Jurisdicci\u00f3n Contenciosa Administrativa estas conciliaciones dentro del principio de la buena fe deben tenerse en cuenta. a Si la conciliaci\u00f3n ha sido parcial o total en la liquidaci\u00f3n de las reparaciones", - "values": [ - "Corte Interamericana de Derechos Humanos" - ] - }, - { - "text": "RESOLUCI\u00d3N DE LA CORTE INTERAMERICANA DE DERECHOS HUMANOS DE DE SEPTIEMBRE DE MEDIDAS PROVISIONALES ORDENADAS POR LA CORTE INTERAMERICANA DE DERECHOS HUMANOS RESPECTO DE LA REP\u00daBLICA DE GUATEMALA CASO COLOTENANGO VISTOS La Resoluci\u00f3n de la Corte Interamericana de Derechos Humanos en adelante la Corte o la Corte Interamericana de de junio de mediante la cual Requiri\u00f3 al Gobierno de Guatemala que adoptase sin dilaci\u00f3n cuantas medidas fuesen necesarias para proteger el derecho a la vida e ", - "values": [ - "Corte Interamericana de Derechos Humanos" - ] - }, - { - "text": "VOTO RAZONADO CONCURRENTE DEL JUEZ SERGIO GARC\u00cdA RAM\u00cdREZ A LA SENTENCIA DE FONDO DEL CASO B\u00c1MACA VEL\u00c1SQUEZ La Sentencia dictada por la Corte Interamericana de Derechos Humanos en el Caso B\u00e1maca Vel\u00e1squez el de noviembre de examina diversas presuntas violaciones a derechos preservados por la Convenci\u00f3n Americana sobre Derechos Humanos Pacto de San Jos\u00e9. Constituye una valiosa reflexi\u00f3n jurisdiccional en torno a varios conceptos relevantes para el Derecho internacional de los derechos humanos ", - "values": [ - "Corte Interamericana de Derechos Humanos" - ] - }, - { - "text": "Resoluci\u00f3n de la Corte Interamericana de Derechos Humanos De de mayo de Caso de la Comunidad Mayagna Sumo Awas Tingni Vs. Nicaragua Supervisi\u00f3n de Cumplimiento de Sentencia VISTOS La Sentencia de Fondo Reparaciones y Costas dictada en el Caso de la Comunidad Mayagna Sumo Awas Tingni vs. Nicaragua por la Corte Interamericana de Derechos Humanos en adelante la Corte la Corte Interamericana o el Tribunal el de agosto de en cuyos puntos resolutivos decidi\u00f3 inter alia que el Estado debe en ", - "values": [ - "Corte Interamericana de Derechos Humanos" - ] - }, - { - "text": " VOTO RAZONADO DEL JUEZ VIDAL RAM\u00cdREZ Participo en el pronunciamiento de la sentencia razonando mi voto con la siguiente consideraci\u00f3n La designaci\u00f3n del Juez ad hoc por el Estado notificado con la demanda no implica que asuma su representaci\u00f3n pues pasa a integrar la Corte a t\u00edtulo personal previo juramento. La integraci\u00f3n a t\u00edtulo personal del Juez ad hoc se fundamenta en la necesidad de proteger la independencia e imparcialidad de la Corte Interamericana como Tribunal internacional. Para a ", - "values": [ - "Corte Interamericana de Derechos Humanos" - ] - }, - { - "text": "RESOLU\u00c7\u00c3O DO PRESIDENTE DA CORTE INTERAMERICANA DE DIREITOS HUMANOS DE DE JULHO DE SOLICITA\u00c7\u00c3O DE MEDIDAS PROVIS\u00d3RIAS APRESENTADA PELA COMISS\u00c3O INTERAMERICANA DE DIREITOS HUMANOS COM RESPEITO AO BRASIL CASO DAS PESSOAS PRIVADAS DE LIBERDADE NA PENITENCI\u00c1RIA DR. SEBASTI\u00c3O MARTINS SILVEIRA EM ARARAQUARA S\u00c3O PAULO BRASIL VISTO O documento da Comiss\u00e3o Interamericana de Direitos Humanos doravante denominada a Comiss\u00e3o Interamericana ou a Comiss\u00e3o de de julho de e seus anexos mediante os quais ", - "values": [ - "Corte Interamericana de Derechos Humanos" - ] - }, - { - "text": "RESOLUCI\u00d3N DEL PRESIDENTE DE LA CORTE INTERAMERICANA DE DERECHOS HUMANOS DE DE JULIO DE CASO FONTEVECCHIA Y DAMICO VS. ARGENTINA VISTO El escrito de sometimiento del caso presentado por la Comisi\u00f3n Interamericana de Derechos Humanos en adelante tambi\u00e9n la Comisi\u00f3n Interamericana o la Comisi\u00f3n ante la Corte Interamericana de Derechos Humanos en adelante la Corte Interamericana la Corte o el Tribunal el de diciembre de mediante el cual ofreci\u00f3 tres dict\u00e1menes periciales sobre los que indic\u00f3 ", - "values": [ - "Corte Interamericana de Derechos Humanos" - ] - }, - { - "text": "VOTO RAZONADO CASO CANTORAL HUAMAN\u00cd Y GARC\u00cdA SANTA CRUZ vs. PER\u00da He concurrido con mi voto para aprobar por unanimidad la presente sentencia en el caso Cantoral Huaman\u00ed y Garc\u00eda Santa Cruz contra el Per\u00fa pero considero necesario aclarar mi posici\u00f3n sobre un tema que fue considerado en la deliberaci\u00f3n de este caso y durante los \u00faltimos tres a\u00f1os en diversos casos ante la Corte. Se trata de la aplicaci\u00f3n e interpretaci\u00f3n de los art\u00edculos y de la Convenci\u00f3n en relaci\u00f3n con el art\u00edculo y por ", - "values": [ - "Corte Interamericana de Derechos Humanos" - ] - }, - { - "text": "RESOLUCI\u00d3N DEL PRESIDENTE DE LA CORTE INTERAMERICANA DE DERECHOS HUMANOS DE DE DICIEMBRE DE CASO TENORIO ROCA Y OTROS VS. PER\u00da VISTO El escrito de sometimiento del caso y el Informe de Fondo de la Comisi\u00f3n Interamericana de Derechos Humanos en adelante la Comisi\u00f3n Interamericana o la Comisi\u00f3n el escrito de solicitudes argumentos y pruebas en adelante el escrito de solicitudes y argumentos de los representantes de las presuntas v\u00edctimas en adelante los representantes el escrito de excepciones", - "values": [ - "Corte Interamericana de Derechos Humanos" - ] - }, - { - "text": "VOTO RAZONADO DEL JUEZ AA. CAN\u00c7ADO TRINDADE He concurrido con mi voto a la adopci\u00f3n de la Sentencia que viene de adoptar la Corte Interamericana de Derechos Humanos en el caso de L\u00f3pez \u00c1lvarez versus Honduras. Dada la importancia de una cuesti\u00f3n tratada en la presente Sentencia me veo en la obligaci\u00f3n de dejar constancia de mis reflexiones sobre la misma como fundamento de mi posici\u00f3n al respecto. Me refiero al eje central conformado por el derecho de acceso lato sensu a la justicia y las del", - "values": [ - "Corte Interamericana de Derechos Humanos" - ] - }, - { - "text": "RESOLUCI\u00d3N DE LA CORTE INTERAMERICANA DE DERECHOS HUMANOS DE DE SEPTIEMBRE DE CASO DEFENSOR DE DERECHOS HUMANOS Y OTROS VS. GUATEMALA SUPERVISI\u00d3N DE CUMPLIMIENTO DE SENTENCIA VISTO La Sentencia de excepciones preliminares fondo reparaciones y costas en adelante la Sentencia dictada por la Corte Interamericana de Derechos Humanos en adelante la Corte la Corte Interamericana o este Tribunal el de agosto de La Corte declar\u00f3 responsable internacionalmente a la Rep\u00fablica de Guatemala en el ", - "values": [ - "Corte Interamericana de Derechos Humanos" - ] - }, - { - "text": "RESOLUCI\u00d3N DE LA CORTE INTERAMERICANA DE DERECHOS HUMANOS DE ENERO DE MEDIDAS PROVISIONALES RESPECTO DE COLOMBIA ASUNTO GIRALDO CARDONA Y OTROS VISTO La Resoluci\u00f3n del Presidente de la Corte Interamericana de Derechos Humanos de de octubre de as\u00ed como las Resoluciones de la Corte Interamericana de Derechos Humanos en adelante la Corte Interamericana la Corte o el Tribunal de de febrero de abril de de junio y de noviembre de de septiembre de de diciembre de de noviembre de de ", - "values": [ - "Corte Interamericana de Derechos Humanos" - ] - }, - { - "text": "RESOLUCI\u00d3N DE LA CORTE INTERAMERICANA DE DERECHOS HUMANOS DE DE MARZO DE MEDIDAS PROVISIONALES LILIANA ORTEGA Y OTRAS RESPECTO DE VENEZUELA VISTOS La Resoluci\u00f3n que emiti\u00f3 la Corte Interamericana de Derechos Humanos en adelante la Corte Interamericana la Corte o el Tribunal el de noviembre de mediante la cual resolvi\u00f3 Requerir al Estado que adopte sin dilaci\u00f3n cuantas medidas sean necesarias para proteger la vida e integridad personal de Liliana Ortega Yris Medina Cova Hilda P\u00e1ez Gilda ", - "values": [ - "Corte Interamericana de Derechos Humanos" - ] - }, - { - "text": "RESOLUCI\u00d3N DE LA CORTE INTERAMERICANA DE DERECHOS HUMANOS DE NOVIEMBRE DE CASO BREWER CAR\u00cdAS VS. VENEZUELA VISTO La comunicaci\u00f3n presentada el de julio de dirigida al Presidente de la Corte Interamericana por el Juez Eduardo Vio Grossi en la cual dicho juez se excus\u00f3 de participar en el caso Brewer Car\u00edas. La carta de de septiembre de dirigida al Juez Eduardo Vio Grossi por el Presidente de la Corte Interamericana en la cual en consulta con los dem\u00e1s jueces de la Corte acept\u00f3 la excusa ", - "values": [ - "Corte Interamericana de Derechos Humanos" - ] - }, - { - "text": "RESOLUCI\u00d3N DE LA CORTE INTERAMERICANA DE DERECHOS HUMANOS DE DE SEPTIEMBRE DE CASO BARRIOS ALTOS CUMPLIMIENTO DE SENTENCIA VISTOS La Sentencia de fondo dictada por la Corte Interamericana de Derechos Humanos en adelante la Corte la Corte Interamericana o el Tribunal el de marzo de en la cual por unanimidad Admiti\u00f3 el reconocimiento de responsabilidad internacional efectuado por el Estado. Declar\u00f3 conforme a los t\u00e9rminos del reconocimiento de responsabilidad internacional efectuado por el", - "values": [ - "Corte Interamericana de Derechos Humanos" - ] - }, - { - "text": "Resoluci\u00f3n de la Presidenta de la Corte Interamericana de Derechos Humanos De de marzo de Caso Ferm\u00edn Ram\u00edrez Vs. Guatemala Supervisi\u00f3n de Cumplimiento de Sentencia Caso Raxcac\u00f3 Reyes Vs. Guatemala Supervisi\u00f3n de Cumplimiento de Sentencia Caso Raxcac\u00f3 Reyes y otros Solicitud de ampliaci\u00f3n de medidas provisionales VISTOS A Caso Ferm\u00edn Ram\u00edrez La Sentencia de fondo reparaciones y costas dictada el de junio de por la Corte Interamericana de Derechos Humanos en adelante la Corte la Corte o el", - "values": [ - "Corte Interamericana de Derechos Humanos" - ] - }, - { - "text": "Corte Interamericana de Direitos Humanos Caso Ivcher Bronstein Vs. Peru Senten\u00e7a de de fevereiro de M\u00e9rito Repara\u00e7\u00f5es e Custas No caso Ivcher Bronstein A Corte Interamericana de Direitos Humanos doravante denominada a Corte a Corte Interamericana ou o Tribunal integrada pelos seguintes ju\u00edzes Ant\u00f4nio A. Can\u00e7ado Trindade Presidente M\u00e1ximo Pacheco G\u00f3mez VicePresidente Hern\u00e1n Salgado Pesantes Juiz Oliver Jackman Juiz Alirio Abreu Burelli Juiz Sergio Garc\u00eda Ram\u00edrez Juiz y Carlos Vicente de Roux ", - "values": [ - "Corte Interamericana de Derechos Humanos" - ] - }, - { - "text": "CORTE INTERAMERICANA DE DIREITOS HUMANOS CASO DA COMUNIDADE IND\u00cdGENA X\u00c1KMOK K\u00c1SEK VS. PARAGUAI SENTEN\u00c7A DE DE AGOSTO DE M\u00c9RITO REPARA\u00c7\u00d5ES E CUSTAS No caso da Comunidade Ind\u00edgena X\u00e1kmok K\u00e1sek a Corte Interamericana de Direitos Humanos doravante a Corte Interamericana a Corte ou o Tribunal integrada pelos seguintes ju\u00edzes Diego Garc\u00edaSay\u00e1n Presidente Leonardo A. Franco VicePresidente Manuel E. Ventura Robles Juiz Margarette May Macaulay Ju\u00edza Rhadys Abreu Blondet Ju\u00edza Alberto P\u00e9rez P\u00e9rez Juiz ", - "values": [ - "Corte Interamericana de Derechos Humanos" - ] - }, - { - "text": "RESOLUCI\u00d3N DE LA CORTE INTERAMERICANA DE DERECHOS HUMANOS DE DE NOVIEMBRE DE MEDIDAS PROVISIONALES RESPECTO DE LOS ESTADOS UNIDOS MEXICANOS CASO PILAR NORIEGA GARCIA Y OTROS VISTOS La Resoluci\u00f3n emitida por el Presidente de la Corte Interamericana de Derechos Humanos en adelante la Corte la Corte Interamericana o el Tribunal el de octubre de en consulta con los dem\u00e1s Jueces de la Corte mediante la cual resolvi\u00f3 Requerir al Estado que adopte sin dilaci\u00f3n cuantas medidas sean necesarias ", - "values": [ - "Corte Interamericana de Derechos Humanos" - ] - }, - { - "text": "RELAT\u00d3RIO N PETI\u00c7\u00c3O ADMISSIBILIDADE SANTO DOMINGO COL\u00d4MBIA de mar\u00e7o de I. RESUMO Em de abril de a Comiss\u00e3o Interamericana de Direitos Humanos doravante denominada a Comiss\u00e3o ou a CIDH recebeu uma peti\u00e7\u00e3o apresentada pela Comiss\u00e3o Interfranciscana de Justi\u00e7a Paz e Rever\u00eancia pela Cria\u00e7\u00e3o Comit\u00ea Regional de Direitos Humanos Joel Sierra a Associa\u00e7\u00e3o de Advogados Jos\u00e9 Alvear Restrepo Humanidade Vigente Corpora\u00e7\u00e3o Jur\u00eddica e o Center for International Human Rights of Northwestern University ", - "values": [ - "Comisi\u00f3n Interamericana de Derechos Humanos" - ] - }, - { - "text": "RESOLUCI\u00d3N DE LA CORTE INTERAMERICANA DE DERECHOS HUMANOS DE DE FEBRERO DE MEDIDAS PROVISIONALES RESPECTO DE LA REP\u00daBLICA DEL PER\u00da ASUNTO WONG HO WING VISTO La Resoluci\u00f3n del Presidente en ejercicio para el presente asunto en adelante el Presidente en ejercicio o la Presidencia en ejercicio de la Corte Interamericana de Derechos Humanos en adelante la Corte Interamericana la Corte o el Tribunal de de marzo de as\u00ed como las Resoluciones del Tribunal de de mayo y de noviembre de de de y", - "values": [ - "Corte Interamericana de Derechos Humanos" - ] - }, - { - "text": "RESOLUCI\u00d3N DEL PRESIDENTE DE LA CORTE INTERAMERICANA DE DERECHOS HUMANOS DE DE MARZO DE CASO GARC\u00cdA Y FAMILIARES VS. GUATEMALA VISTO El escrito de sometimiento del caso presentado por la Comisi\u00f3n Interamericana de Derechos Humanos en adelante tambi\u00e9n la Comisi\u00f3n Interamericana o la Comisi\u00f3n ante la Corte Interamericana de Derechos Humanos en adelante la Corte Interamericana la Corte o el Tribunal el de febrero de mediante el cual ofreci\u00f3 dos dict\u00e1menes periciales sobre los que indic\u00f3 su ", - "values": [ - "Corte Interamericana de Derechos Humanos" - ] - }, - { - "text": "RESOLUCI\u00d3N DE LA CORTE INTERAMERICANA DE DERECHOS HUMANOS DE DE NOVIEMBRE DE CASO SALVADOR CHIRIBOGA VS. ECUADOR SUPERVISI\u00d3N DE CUMPLIMIENTO DE SENTENCIA VISTO Las Sentencias de excepci\u00f3n preliminar y fondo en adelante la Sentencia de reparaciones y costas en adelante la Sentencia de reparaciones y de interpretaci\u00f3n de esta \u00faltima dictadas por la Corte Interamericana de Derechos Humanos en adelante la Corte la Corte Interamericana o el Tribunal respectivamente los d\u00edas de mayo de de ", - "values": [ - "Corte Interamericana de Derechos Humanos" - ] - }, - { - "text": "RESOLUCI\u00d3N DE LA CORTE INTERAMERICANA DE DERECHOS HUMANOS DE DE JULIO DE SOLICITUD DE MEDIDAS PROVISIONALES PRESENTADA POR LA COMISI\u00d3N INTERAMERICANA DE DERECHOS HUMANOS RESPECTO DE LA REP\u00daBLICA DE GUATEMALA CASO DE LA FUNDACI\u00d3N DE ANTROPOLOG\u00cdA FORENSE DE GUATEMALA VISTO El escrito de de abril de y sus anexos mediante los cuales la Comisi\u00f3n Interamericana de Derechos Humanos en adelante la Comisi\u00f3n Interamericana o la Comisi\u00f3n someti\u00f3 a la Corte Interamericana de Derechos Humanos en la o", - "values": [ - "Corte Interamericana de Derechos Humanos" - ] - }, - { - "text": "Voto disidente del Juez ad hoc Dr. Edgar Enrique Larraondo Salguero Caso Panel Blanca Ana Elizabeth Paniagua Morales y otros Expediente VOTO EN CONTRA del respetable criterio de la mayor\u00eda de los se\u00f1ores Jueces por las razones que expongo a continuaci\u00f3n En derecho procesal la legalidad de las formas consiste en los modos o maneras en que deben desenvolverse los actos de que se compone el proceso o sea en el tiempo lugar y orden previstos por la ley. Ello es valedero para todo tipo de proceso ", - "values": [ - "Corte Interamericana de Derechos Humanos" - ] - }, - { - "text": "Resoluci\u00f3n de la Presidenta de la Corte Interamericana de Derechos Humanos de de agosto de Caso Instituto de Reeducaci\u00f3n del Menor Vs. Paraguay Supervisi\u00f3n de Cumplimiento de Sentencia Visto La Sentencia de excepciones preliminares fondo reparaciones y costas en adelante la Sentencia emitida en el presente caso por la Corte Interamericana de Derechos Humanos en adelante la Corte Interamericana la Corte o el Tribunal el de septiembre de Las resoluciones de supervisi\u00f3n de cumplimiento de la", - "values": [ - "Corte Interamericana de Derechos Humanos" - ] - }, - { - "text": "INTERAMERICAN COURT OF HUMAN RIGHTS CASE OF CHOCR\u00d3N CHOCR\u00d3N v. VENEZUELA JUDGMENT OF JULY Preliminary objection merits reparations and costs In the Case of Chocr\u00f3n Chocr\u00f3n the InterAmerican Court of Human Rights hereinafter the InterAmerican Court or the Court composed of the following judges Diego Garc\u00edaSay\u00e1n President Leonardo A. Franco Vice President Manuel E. Ventura Robles Judge Margarette May Macaulay Judge Rhadys Abreu Blondet Judge Eduardo Vio Grossi Judge also present Pablo Saavedra ", - "values": [ - "Corte Interamericana de Derechos Humanos" - ] - }, - { - "text": "RESOLUCI\u00d3N DE LA CORTE INTERAMERICANA DE DERECHOS HUMANOS DE DE JULIO DE CASO DE LA MASACRE DE LAS DOS ERRES VS. GUATEMALA SUPERVISI\u00d3N DE CUMPLIMIENTO DE SENTENCIA VISTO La Sentencia de excepci\u00f3n preliminar fondo reparaciones y costas en adelante la Sentencia dictada por la Corte Interamericana de Derechos Humanos en adelante la Corte Interamericana la Corte o el Tribunal el de noviembre de mediante la cual inter alia dispuso que El Estado debe investigar sin mayor dilaci\u00f3n de forma seria", - "values": [ - "Corte Interamericana de Derechos Humanos" - ] - }, - { - "text": "RESOLUCI\u00d3N DE LA CORTE INTERAMERICANA DE DERECHOS HUMANOS DE DE FEBRERO DE CASO LAS PALMERAS VS. COLOMBIA SUPERVISI\u00d3N DE CUMPLIMIENTO DE SENTENCIA VISTOS La Sentencia de fondo dictada por la Corte Interamericana de Derechos Humanos en adelante la Corte la Corte Interamericana o el Tribunal el de diciembre de La Sentencia de reparaciones dictada por la Corte Interamericana el de noviembre de Las Resoluciones de la Corte de de noviembre de y de agosto de En esta \u00faltima el Tribunal ", - "values": [ - "Corte Interamericana de Derechos Humanos" - ] - }, - { - "text": "RESOLUCI\u00d3N DE LA CORTE INTERAMERICANA DE DERECHOS HUMANOS DE DE FEBRERO DE MEDIDAS PROVISIONALES SOLICITADAS POR LA COMISI\u00d3N INTERAMERICANA DE DERECHOS HUMANOS RESPECTO DE LA REP\u00daBLICA DE COLOMBIA CASO GIRALDO CARDONA VISTOS El escrito del de octubre de mediante el cual la Comisi\u00f3n Interamericana de Derechos Humanos en adelante la Comisi\u00f3n o la Comisi\u00f3n Interamericana remiti\u00f3 a la Corte Interamericana de Derechos Humanos en adelante la Corte o la Corte Interamericana con fundamento en los ", - "values": [ - "Corte Interamericana de Derechos Humanos" - ] - }, - { - "text": "Resoluci\u00f3n de la Corte Interamericana de Derechos Humanos De de enero de Caso Servell\u00f3n Garc\u00eda y otros Vs. Honduras Supervisi\u00f3n de Cumplimiento de Sentencia VISTOS La Sentencia de fondo reparaciones y costas emitida el de septiembre de en adelante la Sentencia por la Corte Interamericana de Derechos Humanos en adelante la Corte la Corte Interamericana o el Tribunal mediante la cual el Tribunal DISPUSO que El Estado debe emprender con seriedad en un plazo razonable todas las acciones ", - "values": [ - "Corte Interamericana de Derechos Humanos" - ] - }, - { - "text": "RESOLUCI\u00d3N DE LA CORTE INTERAMERICANA DE DERECHOS HUMANOS DE DE FEBRERO DE SOLICITUD DE MEDIDAS PROVISIONALES PRESENTADA POR LA COMISI\u00d3N INTERAMERICANA DE DERECHOS HUMANOS RESPECTO DE LA REP\u00daBLICA BOLIVARIANA DE VENEZUELA ASUNTO DEL CENTRO PENITENCIARIO DE LA REGI\u00d3N CENTRO OCCCIDENTAL C\u00c1RCEL DE URIBANA VISTOS El escrito de de febrero de y sus anexos mediante los cuales la Comisi\u00f3n Interamericana de Derechos Humanos en adelante la Comisi\u00f3n Interamericana o la Comisi\u00f3n someti\u00f3 a la Corte ", - "values": [ - "Corte Interamericana de Derechos Humanos" - ] - }, - { - "text": "RESOLUCI\u00d3N DE LA CORTE INTERAMERICANA DE DERECHOS HUMANOS DE DE MARZO DE SOLICITUD DE MEDIDAS PROVISIONALES PRESENTADA POR LA COMISI\u00d3N INTERAMERICANA DE DERECHOS HUMANOS RESPECTO DE LA REP\u00daBLICA BOLIVARIANA DE VENEZUELA CASO DEL CENTRO PENITENCIARIO REGI\u00d3N CAPITAL YARE I Y YARE II C\u00c1RCEL DE YARE VISTOS El escrito de de marzo de y sus anexos mediante los cuales la Comisi\u00f3n Interamericana de Derechos Humanos en adelante la Comisi\u00f3n Interamericana o la Comisi\u00f3n someti\u00f3 a la Corte de Derechos", - "values": [ - "Corte Interamericana de Derechos Humanos" - ] - }, - { - "text": "RESOLUCI\u00d3N DE LA CORTE INTERAMERICANA DE DERECHOS HUMANOS DE DE SEPTIEMBRE DE MEDIDAS PROVISIONALES CASO DE LA MASACRE DE MAPIRIP\u00c1N vs. COLOMBIA VISTO La Resoluci\u00f3n de medidas urgentes dictada por el entonces Presidente de la Corte Interamericana de Derechos Humanos en adelante la Corte Interamericana la Corte o el Tribunal de de febrero de La Resoluci\u00f3n dictada por la Corte el de junio de mediante la cual resolvi\u00f3 inter alia Ratificar la Resoluci\u00f3n del Presidente de medidas urgentes ", - "values": [ - "Corte Interamericana de Derechos Humanos" - ] - }, - { - "text": "CORTE INTERAMERICANA DE DERECHOS HUMANOS CASO CRUZ S\u00c1NCHEZ Y OTROS VS. PER\u00da SENTENCIA DE DE ABRIL DE Excepciones Preliminares Fondo Reparaciones y Costas En el caso Cruz S\u00e1nchez y otros la Corte Interamericana de Derechos Humanos en adelante la Corte Interamericana la Corte o el Tribunal integrada por los siguientes Jueces Humberto Antonio Sierra Porto Presidente Roberto F. Caldas Vicepresidente Manuel E. Ventura Robles Juez Alberto P\u00e9rez P\u00e9rez Juez Eduardo Vio Grossi Juez y Eduardo Ferrer ", - "values": [ - "Corte Interamericana de Derechos Humanos" - ] - }, - { - "text": "VOTO RAZONADO CONCURRENTE Juez Oliver Jackman En la presente sentencia la Corte reconoce la ocurrencia de un da\u00f1o al proyecto de vida del se\u00f1or Wilson Guti\u00e9rrez Soler derivado de la violaci\u00f3n de sus derechos humanos Ha decidido sin embargo no cuantificar este da\u00f1o en t\u00e9rminos econ\u00f3micos ya que la condena que se hace en otros puntos de la presente sentencia contribuye a compensar al se\u00f1or Wilson Guti\u00e9rrez Soler por sus da\u00f1os materiales e inmateriales. En el Caso Loayza Tamayo el Tribunal tambi\u00e9n", - "values": [ - "Corte Interamericana de Derechos Humanos" - ] - }, - { - "text": "RESOLUCI\u00d3N DE LA CORTE INTERAMERICANA DE DERECHOS HUMANOS DE DE NOVIEMBRE DE CASO CABALLERO DELGADO Y SANTANA CUMPLIMIENTO DE SENTENCIA VISTOS La sentencia de fondo dictada en el Caso Caballero Delgado y Santana vs. Colombia por la Corte Interamericana de Derechos Humanos en adelante la Corte la Corte Interamericana o el Tribunal el de diciembre de en la que dispuso en los puntos resolutivos pertinentes que Por unanimidad Decide que la Rep\u00fablica de Colombia est\u00e1 obligada a continuar los ", - "values": [ - "Corte Interamericana de Derechos Humanos" - ] - }, - { - "text": "INFORME N\u00ba PETICI\u00d3N ADMISIBILIDAD HUGO QUINTANA COELLO Y OTROS MAGISTRADOS DE LA CORTE SUPREMA ECUADOR de febrero de I. RESUMEN El de diciembre de la Comisi\u00f3n Interamericana de Derechos Humanos en adelante la Comisi\u00f3n recibi\u00f3 una petici\u00f3n presentada por Hugo Quintana Coello y otros ex magistrados de la Corte Suprema de Justicia de Ecuador los peticionarios en la cual se alega la violaci\u00f3n por parte de la Rep\u00fablica de Ecuador el Estado de los art\u00edculos garant\u00edas judiciales principio de", - "values": [ - "Comisi\u00f3n Interamericana de Derechos Humanos" - ] - }, - { - "text": "CORTE INTERAMERICANA DE DERECHOS HUMANOS CASO FAMILIA BARRIOS VS. VENEZUELA SENTENCIA DE DE NOVIEMBRE DE Fondo Reparaciones y Costas En el caso Familia Barrios la Corte Interamericana de Derechos Humanos en adelante la Corte Interamericana la Corte o el Tribunal integrada por los siguientes Jueces Diego Garc\u00edaSay\u00e1n Presidente Leonardo A. Franco Vicepresidente Manuel E. Ventura Robles Juez Margarette May Macaulay Jueza Rhadys Abreu Blondet Jueza Alberto P\u00e9rez P\u00e9rez Juez y Eduardo Vio Grossi ", - "values": [ - "Corte Interamericana de Derechos Humanos" - ] - }, - { - "text": "RESOLUCI\u00d3N DE LA CORTE INTERAMERICANA DE DERECHOS HUMANOS DE DE NOVIEMBRE DE CASO KIMEL VS. ARGENTINA SUPERVISI\u00d3N DE CUMPLIMIENTO DE SENTENCIA VISTO La Sentencia de fondo reparaciones y costas en adelante la Sentencia emitida en el presente caso por la Corte Interamericana de Derechos Humanos en adelante la Corte Interamericana la Corte o el Tribunal el de mayo de La Resoluci\u00f3n de la Corte de de mayo de relativa a la supervisi\u00f3n del cumplimiento de la Sentencia mediante la cual declar\u00f3 ", - "values": [ - "Corte Interamericana de Derechos Humanos" - ] - }, - { - "text": "VOTO PARCIALMENTE DISIDENTE DEL JUEZ ALBERTO P\u00c9REZ P\u00c9REZ Estoy totalmente de acuerdo con las partes fundamentales de la Sentencia por la cual se acepta el reconocimiento parcial de responsabilidad internacional efectuado por el Estado y se determina que el Estado viol\u00f3 en perjuicio del Senador Manuel Cepeda Vargas los derechos a la vida e integridad personal a la protecci\u00f3n de la honra y la dignidad la libertad de pensamiento y expresi\u00f3n la libertad de asociaci\u00f3n y los derechos pol\u00edticos en ", - "values": [ - "Corte Interamericana de Derechos Humanos" - ] - }, - { - "text": "RESOLUCI\u00d3N DE LA CORTE INTERAMERICANA DE DERECHOS HUMANOS DE DE NOVIEMBRE DE CASO ZAMBRANO V\u00c9LEZ Y OTROS VS. ECUADOR SUPERVISI\u00d3N DE CUMPLIMIENTO DE SENTENCIA VISTOS La Sentencia de fondo reparaciones y costas dictada por la Interamericana de Derechos Humanos en adelante la Corte la Interamericana o el Tribunal el de julio de Corte Corte La Resoluci\u00f3n de la Corte Interamericana de de septiembre de mediante la cual declar\u00f3 que de conformidad con lo se\u00f1alado en los Considerandos y de", - "values": [ - "Corte Interamericana de Derechos Humanos" - ] - }, - { - "text": "RESOLUCI\u00d3N DE LA CORTE INTERAMERICANA DE DERECHOS HUMANOS DE DE ENERO DE CASO DE LOS NI\u00d1OS DE LA CALLE VILLAGR\u00c1N MORALES Y OTROS VS. GUATEMALA SUPERVISI\u00d3N DE CUMPLIMIENTO DE SENTENCIA VISTO La Sentencia de fondo dictada por la Corte Interamericana de Derechos Humanos en adelante la Corte la Corte Interamericana o el Tribunal el de noviembre de La Sentencia de reparaciones y costas dictada por la Corte Interamericana el de mayo de La Resoluci\u00f3n de la Corte de de noviembre de mediante ", - "values": [ - "Corte Interamericana de Derechos Humanos" - ] - }, - { - "text": " RESOLUCI\u00d3N DE LA CORTE INTERAMERICANA DE DERECHOS HUMANOS DE DE NOVIEMBRE DE SOLICITUD DE MEDIDAS PROVISIONALES PRESENTADA POR LA COMISI\u00d3N INTERAMERICANA DE DERECHOS HUMANOS RESPECTO DE LOS ESTADOS UNIDOS MEXICANOS CASO JORGE CASTA\u00d1EDA GUTMAN VISTO El escrito de la Comisi\u00f3n Interamericana de Derechos Humanos en adelante la Comisi\u00f3n Interamericana o la Comisi\u00f3n de de noviembre de y sus anexos mediante los cuales someti\u00f3 a la Corte Interamericana de Derechos Humanos en adelante la Corte la", - "values": [ - "Corte Interamericana de Derechos Humanos" - ] - }, - { - "text": "Resoluci\u00f3n de la Presidenta de la Corte Interamericana de Derechos Humanos de mayo de Caso del Caracazo Vs. Venezuela Supervisi\u00f3n de Cumplimiento de Sentencia Visto La Sentencia de fondo dictada por la Corte Interamericana de Derechos Humanos en adelante la Corte Interamericana la Corte o el Tribunal el de noviembre de La Sentencia de Reparaciones y Costas en adelante la Sentencia dictada por la Corte el de agosto de La Resoluci\u00f3n de Supervisi\u00f3n de Cumplimiento de Sentencia dictada por", - "values": [ - "Corte Interamericana de Derechos Humanos" - ] - }, - { - "text": "CORTE INTERAMERICANA DE DERECHOS HUMANOS CASO BARBANI DUARTE Y OTROS VS. URUGUAY SENTENCIA DE DE JUNIO DE Solicitud de Interpretaci\u00f3n de la Sentencia de Fondo Reparaciones y Costas En el caso Barbani Duarte y otros la Corte Interamericana de Derechos Humanos en adelante la Corte Interamericana la Corte o el Tribunal integrada por los siguientes jueces Diego Garc\u00edaSay\u00e1n Presidente Manuel E. Ventura Robles Vicepresidente Margarette May Macaulay Jueza Rhadys Abreu Blondet Jueza y Eduardo Vio ", - "values": [ - "Corte Interamericana de Derechos Humanos" - ] - }, - { - "text": "RESOLUCI\u00d3N DE LA CORTE INTERAMERICANA DE DERECHOS HUMANOS DE DE JULIO DE SOLICITUD DE MEDIDAS PROVISIONALES PRESENTADA POR LA COMISI\u00d3N INTERAMERICANA DE DERECHOS HUMANOS RESPECTO DE ARGENTINA A FAVOR DE MAR\u00cdA LEONTINA MILLACURA LLAIP\u00c9N Y OTROS VISTOS El escrito de de junio de y sus anexos mediante los cuales la Comisi\u00f3n Interamericana de Derechos Humanos en adelante la Comisi\u00f3n Interamericana o la Comisi\u00f3n someti\u00f3 a la Corte Interamericana de Derechos Humanos en adelante la Corte o el de ", - "values": [ - "Corte Interamericana de Derechos Humanos" - ] - }, - { - "text": "Corte Interamericana de Derechos Humanos Caso Vel\u00e1squez Rodr\u00edguez Vs. Honduras Sentencia de de junio de Excepciones Preliminares En el caso Vel\u00e1squez Rodr\u00edguez la Corte Interamericana de Derechos Humanos integrada por los siguientes jueces Thomas Buergenthal Presidente Rafael Nieto Navia Vicepresidente Rodolfo E. Piza E Juez Pedro Nikken Juez H\u00e9ctor FixZamudio Juez H\u00e9ctor Gros Espiell Juez Rigoberto Espinal Ir\u00edas Juez ad hoc presentes adem\u00e1s Charles Moyer Secretario y Manuel Ventura Adjunto ", - "values": [ - "Corte Interamericana de Derechos Humanos" - ] - }, - { - "text": "RESOLUCI\u00d3N DEL PRESIDENTE DE LA CORTE INTERAMERICANA DE DERECHOS HUMANOS DE ABRIL DE CASO TORRES Y OTROS VS. ARGENTINA VISTO El escrito de demanda presentado por la Comisi\u00f3n Interamericana de Derechos Humanos en adelante la Comisi\u00f3n Interamericana o la Comisi\u00f3n ante la Corte Interamericana de Derechos Humanos en adelante la Corte Interamericana la Corte o el Tribunal el de abril de mediante el cual ofreci\u00f3 dos peritajes sin individualizar a las personas que propon\u00eda como peritos. Asimismo ", - "values": [ - "Corte Interamericana de Derechos Humanos" - ] - }, - { - "text": "INFORME No. PETICI\u00d3N ADMISIBILIDAD CLAUDINA ISABEL VELASQUEZ PAIZ Y OTROS GUATEMALA de octubre de I. RESUMEN La Comisi\u00f3n Interamericana de Derechos Humanos en adelante Comisi\u00f3n Comisi\u00f3n Interamericana o CIDH recibi\u00f3 el de diciembre de una petici\u00f3n presentada por el Instituto de Estudios Comparados en Ciencias Penales de Guatemala y Jorge Rolando Vel\u00e1squez Dur\u00e1n en adelante los peticionarios en representaci\u00f3n de Claudina Isabel Vel\u00e1squez Paiz Jorge Rolando Vel\u00e1squez Dur\u00e1n Elsa Claudina ", - "values": [ - "Comisi\u00f3n Interamericana de Derechos Humanos" - ] - }, - { - "text": "Corte Interamericana de Derechos Humanos Caso de la Comunidad Moiwana Vs. Suriname Sentencia de de junio de Excepciones Preliminares Fondo reparaciones y Costas En el Caso de la Comunidad Moiwana la Corte Interamericana de Derechos Humanos en adelante la Corte la Corte Interamericana o el Tribunal integrada por los siguientes jueces Sergio Garc\u00eda Ram\u00edrez Presidente Alirio Abreu Burelli Vicepresidente Oliver Jackman Juez Ant\u00f4nio A. Can\u00e7ado Trindade Juez Cecilia Medina Quiroga Jueza Manuel E. ", - "values": [ - "Corte Interamericana de Derechos Humanos" - ] - }, - { - "text": "Corte Interamericana de Derechos Humanos Caso Benavides Cevallos Vs. Ecuador Sentencia de de junio de Fondo Reparaciones y Costas En el caso Benavides Cevallos la Corte Interamericana de Derechos Humanos integrada por los siguientes Jueces Ant\u00f4nio A. Can\u00e7ado Trindade Presidente Hern\u00e1n Salgado Pesantes Juez M\u00e1ximo Pacheco G\u00f3mez Juez Oliver Jackman Juez Alirio Abreu Burelli Juez Sergio Garc\u00eda Ram\u00edrez Juez y Carlos Vicente de Roux Rengifo Juez presentes adem\u00e1s Manuel E. Ventura Robles Secretario", - "values": [ - "Corte Interamericana de Derechos Humanos" - ] - }, - { - "text": "VOTO CONCURRENTE DE LA JUEZA RHADYS ABREU BLONDET EN RELACI\u00d3N CON LA SENTENCIA DE LA CORTE INTERAMERICANA DE DERECHOS HUMANOS EN EL CASO ROSENDO CANT\u00da Y OTRA VS. M\u00c9XICO DE DE AGOSTO DE He decidido presentar un voto razonado respecto a la Sentencia sobre el caso Rosendo Cant\u00fa y otra contra M\u00e9xico en raz\u00f3n de los siguientes puntos i el retiro por M\u00e9xico de su excepci\u00f3n preliminar respecto a la alegada incompetencia de la Corte Interamericana de Derechos Humanos en adelante la Corte la Corte o", - "values": [ - "Corte Interamericana de Derechos Humanos" - ] - }, - { - "text": "RESOLUCI\u00d3N DE LA CORTE INTERAMERICANA DE DERECHOS HUMANOS DE DE JUNIO DE CASO DE LOS NI\u00d1OS DE LA CALLE Villagr\u00e1n Morales y Otros CUMPLIMIENTO DE SENTENCIA VISTO La Sentencia de Fondo emitida por la Corte Interamericana de Derechos Humanos en adelante la Corte el Tribunal o la Corte Interamericana el de noviembre de en la cual resolvi\u00f3 declarar que el Estado viol\u00f3 el art\u00edculo de la Convenci\u00f3n Americana sobre Derechos Humanos en conexi\u00f3n con el art\u00edculo de la misma en perjuicio de Henry ", - "values": [ - "Corte Interamericana de Derechos Humanos" - ] - }, - { - "text": "RESOLUCI\u00d3N DE LA CORTE INTERAMERICANA DE DERECHOS HUMANOS DE DE MAYO DE SOLICITUD DE AMPLIACI\u00d3N DE MEDIDAS PROVISIONALES RESPECTO DE LA REP\u00daBLICA DE COLOMBIA CASO COMERCIANTES SANDRA BELINDA MONTERO FUENTES Y FAMILIARES SALOM\u00d3N FL\u00d3REZ Y FAMILIARES LUIS JOS\u00c9 PUNDOR QUINTERO Y FAMILIARES ANA DIVA QUINTERO QUINTERO DE PUNDOR Y FAMILIARES WILMAR RODR\u00cdGUEZ QUINTERO Y FAMILIARES YIMMY EFRA\u00cdN RODR\u00cdGUEZ QUINTERO Y FAMILIARES VISTOS La Sentencia de fondo reparaciones y costas emitida por la Corte ", - "values": [ - "Corte Interamericana de Derechos Humanos" - ] - }, - { - "text": "VOTO SEPARADO DEL JUEZ PIZA ESCALANTE He concurrido en el voto un\u00e1nime de la Corte y en la l\u00ednea general de su razonamiento pero tengo que separarme de la tesis recogida en los p\u00e1rrafos y en cuanto invocan la aplicabilidad inmediata y no meramente anal\u00f3gica del art\u00edculo de la Convenci\u00f3n que regula las solicitudes de interpretaci\u00f3n del fallo. En este sentido tengo que observar que esas solicitudes se articulan en la citada norma de la Convenci\u00f3n s\u00f3lo en relaci\u00f3n con el fallo es decir con la", - "values": [ - "Corte Interamericana de Derechos Humanos" - ] - }, - { - "text": "RESOLUCI\u00d3N DE LA CORTE INTERAMERICANA DE DERECHOS HUMANOS DE DE ABRIL DE CASO GARC\u00cdA LUCERO Y OTRAS VS. CHILE SUPERVISI\u00d3N DE CUMPLIMIENTO DE SENTENCIA VISTO La Sentencia de excepci\u00f3n preliminar fondo y reparaciones en adelante la Sentencia o el Fallo emitida por la Corte Interamericana de Derechos Humanos en adelante la Corte Interamericana la Corte o el Tribunal el de agosto de En ella el Tribunal declar\u00f3 la responsabilidad internacional de la Rep\u00fablica de Chile en adelante el Estado o ", - "values": [ - "Corte Interamericana de Derechos Humanos" - ] - }, - { - "text": "RESOLUCI\u00d3N DEL PRESIDENTE DE LA CORTE INTERAMERICANA DE DERECHOS HUMANOS DE DE SEPTIEMBRE DE CASO CANALES HUAPAYA Y OTROS VS. PER\u00da VISTO El escrito de sometimiento del caso y el Informe de Fondo de la Comisi\u00f3n Interamericana de Derechos Humanos en adelante la Comisi\u00f3n Interamericana o la Comisi\u00f3n los escritos de solicitudes argumentos y pruebas en adelante escritos de solicitudes y argumentos de los intervinientes comunes y el escrito de excepciones preliminares contestaci\u00f3n al sometimiento", - "values": [ - "Corte Interamericana de Derechos Humanos" - ] - }, - { - "text": "VOTO CONCURRENTE RAZONADO DEL JUEZ SERGIO GARCIA RAMIREZ A LA SENTENCIA DE LA CORTE INTERAMERICANA DE DERECHOS HUMANOS EN EL CASO TIBI VS. ECUADOR DEL DE SEPTIEMBRE DE I. Sentido y trascendencia de las resoluciones de la Corte Interamericana En este Voto concurrente razonado que acompa\u00f1o a la Sentencia de excepciones preliminares fondo y reparaciones en el Caso Tibi vs. Ecuador dictada por la Corte Interamericana el de septiembre de pretendo referirme a varias cuestiones que dicha as\u00ed ", - "values": [ - "Corte Interamericana de Derechos Humanos" - ] - }, - { - "text": "RESOLUCI\u00d3N DEL PRESIDENTE DE LA CORTE INTERAMERICANA DE DERECHOS HUMANOS DE DE DICIEMBRE DE CASO QUINTANA COELLO Y OTROS VS. ECUADOR VISTO El escrito de de agosto de mediante el cual la Comisi\u00f3n Interamericana de Derechos Humanos en adelante la Comisi\u00f3n Interamericana o la Comisi\u00f3n someti\u00f3 a la Corte Interamericana de Derechos Humanos en adelante la Corte Interamericana la Corte o el Tribunal un caso en contra de la Rep\u00fablica del Ecuador en adelante Ecuador o el Estado mediante el cual un", - "values": [ - "Corte Interamericana de Derechos Humanos" - ] - }, - { - "text": "Resoluci\u00f3n de la Presidenta de la Corte Interamericana de Derechos Humanos de de agosto de Caso Montero Aranguren y otros Ret\u00e9n de Catia Vs. Venezuela Supervisi\u00f3n de Cumplimiento de Sentencia Visto La Sentencia de excepci\u00f3n preliminar fondo reparaciones y costas en adelante la Sentencia emitida en el presente caso por la Corte Interamericana de Derechos Humanos en adelante la Corte la Corte Interamericana o el Tribunal el de julio de mediante la cual dispuso que el Estado de Venezuela en ", - "values": [ - "Corte Interamericana de Derechos Humanos" - ] - }, - { - "text": "RESOLUCI\u00d3N DE LA CORTE INTERAMERICANA DE DERECHOS HUMANOS DE DE ABRIL DE SOLICITUD DE MEDIDAS PROVISIONALES RESPECTO DEL ESTADO DE EL SALVADOR CASO DE LAS HERMANAS SERRANO CRUZ VISTOS La Sentencia de fondo reparaciones y costas emitida por la Corte Interamericana de Derechos Humanos en adelante la Corte o el Tribunal el de marzo de en el caso de las Hermanas Serrano Cruz respecto del Estado de El Salvador en adelante el Estado o El Salvador. El escrito de de marzo de y sus anexos los ", - "values": [ - "Corte Interamericana de Derechos Humanos" - ] - }, - { - "text": "CORTE INTERAMERICANA DE DERECHOS HUMANOS CASO COMUNIDAD GAR\u00cdFUNA DE PUNTA PIEDRA Y SUS MIEMBROS VS. HONDURAS SENTENCIA DE DE OCTUBRE DE Excepciones Preliminares Fondo Reparaciones y Costas En el caso de la Comunidad Gar\u00edfuna de Punta Piedra y sus miembros la Corte Interamericana de Derechos Humanos en adelante la Corte Interamericana la Corte o el Tribunal integrada por los siguientes Jueces Humberto Antonio Sierra Porto Presidente Roberto F. Caldas Vicepresidente Manuel E. Ventura Robles ", - "values": [ - "Corte Interamericana de Derechos Humanos" - ] - }, - { - "text": "VOTO CONCORRENTE DA JU\u00cdZA CECILIA MEDINA QUIROGA EM RELA\u00c7\u00c3O \u00c0 SENTEN\u00c7A DA CORTE INTERAMERICANA DE DIREITOS HUMANOS NO CASO GONZ\u00c1LEZ E OUTRAS CAMPO ALGODOEIRO VS. M\u00c9XICO DE DE NOVEMBRO DE Mesmo quando concordo com a decis\u00e3o da Corte Interamericana de Direitos Humanos doravante denominada Corte ou Tribunal neste caso no sentido de que existe uma viola\u00e7\u00e3o do artigo da Conven\u00e7\u00e3o Americana sobre Direitos Humanos doravante denominada Conven\u00e7\u00e3o Americana ou Conven\u00e7\u00e3o n\u00e3o concordo com o fato de que", - "values": [ - "Corte Interamericana de Derechos Humanos" - ] - }, - { - "text": "Resoluci\u00f3n del Presidente en Ejercicio de la Corte Interamericana de Derechos Humanos De de junio de Caso Claude Reyes y otros Vs. Chile Supervisi\u00f3n de Cumplimiento de Sentencia VISTO La Sentencia de fondo reparaciones y costas de de septiembre de en adelante la Sentencia emitida por la Corte Interamericana de Derechos Humanos en adelante la Corte Interamericana la Corte o el Tribunal. Los escritos de de febrero de y su anexo de marzo de y sus anexos de junio de de julio de y su ", - "values": [ - "Corte Interamericana de Derechos Humanos" - ] - }, - { - "text": "RELAT\u00d3RIO N\u00ba CASO ALFREDO L\u00d3PEZ ALVAREZ HONDURAS de dezembro de I. RESUMO Em de dezembro de a Comiss\u00e3o Interamericana de Direitos Humanos doravante denominada a Comiss\u00e3o ou a CIDH recebeu uma peti\u00e7\u00e3o apresentada pela Organiza\u00e7\u00e3o Fraternal Negra Hondurenha OFRANEH representada pela sua presidenta senhora Gregoria Flores doravante denominada a peticion\u00e1ria em favor do senhor Alfredo L\u00f3pez Alvarez hondurenho gar\u00edfuna doravante denominado a v\u00edtima e contra a Rep\u00fablica de Honduras doravante ", - "values": [ - "Comisi\u00f3n Interamericana de Derechos Humanos" - ] - }, - { - "text": " CORTE INTERAMERICANA DE DIREITOS HUMANOS CASO ACEVEDO BUEND\u00cdA E OUTROS DEMITIDOS E APOSENTADOS DA CONTROLADORIA VS. PERU SENTEN\u00c7A DE DE JULHO DE Exce\u00e7\u00e3o Preliminar M\u00e9rito Repara\u00e7\u00f5es e Custas No caso Acevedo Buend\u00eda e outros Demitidos e Aposentados da Controladoria a Corte Interamericana de Direitos Humanos doravante denominada a Corte a Corte Interamericana ou o Tribunal integrada pelos seguintes ju\u00edzes Cecilia Medina Quiroga Presidenta Sergio Garc\u00eda Ram\u00edrez Juiz Manuel E. Ventura Robles ", - "values": [ - "Corte Interamericana de Derechos Humanos" - ] - }, - { - "text": "CORTE INTERAMERICANA DE DERECHOS HUMANOS CASO GONZ\u00c1LEZ MEDINA Y FAMILIARES VS. REP\u00daBLICA DOMINICANA SENTENCIA DE DE FEBRERO DE EXCEPCIONES PRELIMINARES FONDO REPARACIONES Y COSTAS En el caso Gonz\u00e1lez Medina y familiares la Corte Interamericana de Derechos Humanos en adelante la Corte Interamericana la Corte o el Tribunal integrada por los siguientes jueces Diego Garc\u00edaSay\u00e1n Presidente Manuel E. Ventura Robles Vicepresidente Leonardo A. Franco Juez Margarette May Macaulay Jueza Alberto P\u00e9rez ", - "values": [ - "Corte Interamericana de Derechos Humanos" - ] - }, - { - "text": "VOTO RAZONADO DEL JUEZ A. A. CAN\u00c7ADO TRINDADE He concurrido con mi voto para la adopci\u00f3n de la presente Sentencia de la Corte Interamericana de Derechos Humanos en el caso Blanco Romero y Otros versus Venezuela. Me veo adem\u00e1s en la obligaci\u00f3n de dejar constancia en este Voto Razonado de las reflexiones personales que me ha suscitado la presente Sentencia de la Corte en particular en relaci\u00f3n con el derecho a la verdad y con las formas de reparaci\u00f3n tal como lo he hecho en cuanto a este segundo", - "values": [ - "Corte Interamericana de Derechos Humanos" - ] - }, - { - "text": "RESOLUCI\u00d3N DEL PRESIDENTE DE LA CORTE INTERAMERICANA DE DERECHOS HUMANOS DE DE DICIEMBRE DE CASO CHOCR\u00d3N CHOCR\u00d3N VS. VENEZUELA VISTO El escrito de demanda presentado por la Comisi\u00f3n Interamericana de Derechos Humanos en adelante la Comisi\u00f3n Interamericana o la Comisi\u00f3n ante la Corte Interamericana de Derechos Humanos en adelante la Corte Interamericana la Corte o el Tribunal el de noviembre de en el que ofreci\u00f3 la declaraci\u00f3n de la presunta v\u00edctima el dictamen de dos peritos y solicit\u00f3 la ", - "values": [ - "Corte Interamericana de Derechos Humanos" - ] - }, - { - "text": "RESOLUCI\u00d3N DEL PRESIDENTE DE LA CORTE INTERAMERICANA DE DERECHOS HUMANOS DE DE JULIO DE FONDO DE ASISTENCIA LEGAL DE V\u00cdCTIMAS CASO FLOR FREIRE VS. ECUADOR VISTO El escrito de de diciembre de y sus anexos mediante los cuales la Comisi\u00f3n Interamericana de Derechos Humanos en adelante la Comisi\u00f3n Interamericana o la Comisi\u00f3n someti\u00f3 ante la Corte Interamericana de Derechos Humanos en adelante la Corte Interamericana la Corte o el Tribunal el presente caso. El escrito de de febrero de el ", - "values": [ - "Corte Interamericana de Derechos Humanos" - ] - }, - { - "text": "INFORME N\u00ba PETICI\u00d3N ADMISIBILIDAD LUISIANA R\u00cdOS Y OTROS VENEZUELA de febrero de I. RESUMEN El de julio de la Comisi\u00f3n Interamericana de Derechos Humanos la Comisi\u00f3n o CIDH recibi\u00f3 una petici\u00f3n de Luisiana R\u00edos Luis Augusto Contreras Alvarado Eduardo Sapene Granier Javier Garc\u00eda Isnardo Bravo David P\u00e9rez Hansen Wilmer Marcano Winston Guti\u00e9rrez e Isabel Mavarez todos trabajadores de la emisora de televisi\u00f3n RCTV CA. RCTV en adelante los peticionarios contra la Republica Bolivariana de en ", - "values": [ - "Comisi\u00f3n Interamericana de Derechos Humanos" - ] - }, - { - "text": "RESOLUCI\u00d3N DE LA CORTE INTERAMERICANA DE DERECHOS HUMANOS DE DE AGOSTO DE SUPERVISI\u00d3N DE CUMPLIMIENTO DE SENTENCIA EN CASOS CONTRA GUATEMALA RESPECTO DE LA OBLIGACI\u00d3N DE INVESTIGAR JUZGAR Y DE SER EL CASO SANCIONAR A LOS RESPONSABLES DE LAS VIOLACIONES A LOS DERECHOS HUMANOS VISTO La audiencia de supervisi\u00f3n de cumplimiento de la medida de reparaci\u00f3n relativa a la obligaci\u00f3n de investigar juzgar y de ser el caso sancionar a los responsables de las violaciones a los derechos humanos en las", - "values": [ - "Corte Interamericana de Derechos Humanos" - ] - }, - { - "text": "Resoluci\u00f3n de la Corte Interamericana de Derechos Humanos De de Noviembre de Caso Palamara Iribarne Vs. Chile Supervisi\u00f3n de Cumplimiento de Sentencia VISTO La Sentencia de fondo reparaciones y costas en adelante la Sentencia emitida por la Corte Interamericana de Derechos Humanos en adelante la Corte Interamericana la Corte o el Tribunal el de noviembre de mediante la cual DECLAR\u00d3 Por unanimidad que El Estado viol\u00f3 el derecho a la libertad de pensamiento y de expresi\u00f3n consagrado en el ", - "values": [ - "Corte Interamericana de Derechos Humanos" - ] - }, - { - "text": "RESOLUCI\u00d3N DEL PRESIDENTE DE LA CORTE INTERAMERICANA DE DERECHOS HUMANOS DE JUNIO DE CASO PUEBLO IND\u00cdGENA KICHWA DE SARAYAKU vs. ECUADOR VISTO El escrito de demanda presentado el de abril de y sus anexos recibidos el de mayo siguiente por la Comisi\u00f3n Interamericana de Derechos Humanos en adelante la Comisi\u00f3n Interamericana o la Comisi\u00f3n ante la Corte Interamericana de Derechos Humanos en adelante la Corte Interamericana la Corte o el Tribunal contra la Rep\u00fablica del Ecuador en adelante el", - "values": [ - "Corte Interamericana de Derechos Humanos" - ] - }, - { - "text": "VOTO PARCIALMENTE DISIDENTE DEL JUEZ EDUARDO FERRER MACGREGOR POISOT A LA SENTENCIA DE LA CORTE INTERAMERICANA DE DERECHOS HUMANOS EN EL CASO DEL TRIBUNAL CONSTITUCIONAL CAMBA CAMPOS Y OTROS VS. ECUADOR DE DE AGOSTO DE I. EXORDIO La separaci\u00f3n de poderes constituye un elemento sustancial de la democracia constitucional. La independencia judicial en su faceta individual y colectiva representa un aspecto indisoluble para la consolidaci\u00f3n y existencia misma de un genuino Estado constitucional y", - "values": [ - "Corte Interamericana de Derechos Humanos" - ] - }, - { - "text": "RESOLU\u00c7\u00c3O DA CORTE INTERAMERICANA DE DIREITOS HUMANOS DE DE FEVEREIRO DE MEDIDAS PROVIS\u00d3RIAS A RESPEITO DO BRASIL ASSUNTO DA UNIDADE DE INTERNA\u00c7\u00c3O SOCIOEDUCATIVA VISTO O escrito da Comiss\u00e3o Interamericana de Direitos Humanos doravante a Comiss\u00e3o Interamericana ou a Comiss\u00e3o de de dezembro de e seus anexos mediante os quais submeteu \u00e0 Corte Interamericana de Direitos Humanos doravante a Corte Interamericana a Corte ou o Tribunal uma solicita\u00e7\u00e3o de medidas provis\u00f3rias em conformidade com os ", - "values": [ - "Corte Interamericana de Derechos Humanos" - ] - }, - { - "text": "RESOLUCI\u00d3N DE LA CORTE INTERAMERICANA DE DERECHOS HUMANOS DE DE AGOSTO DE CASO CANTOS Vs. ARGENTINA SUPERVISI\u00d3N DE CUMPLIMIENTO DE SENTENCIA VISTO La Sentencia de fondo reparaciones y costas emitida por la Corte Interamericana de Derechos Humanos en adelante la Corte Interamericana la Corte o el Tribunal el de noviembre de en adelante la Sentencia. Las Resoluciones de la Corte Interamericana de de noviembre de de julio de y de julio de sobre el cumplimiento de la Sentencia. En esta ", - "values": [ - "Corte Interamericana de Derechos Humanos" - ] - }, - { - "text": "RESOLUCI\u00d3N DE LA CORTE INTERAMERICANA DE DERECHOS HUMANOS DE FEBRERO DE CASO TICONA VS. BOLIVIA SUPERVISI\u00d3N DE CUMPLIMIENTO DE SENTENCIA VISTOS La Sentencia de fondo reparaciones y costas en adelante la Sentencia dictada por la Corte Interamericana de Derechos Humanos en adelante la Corte Interamericana la Corte o el Tribunal el de noviembre de la cual dispuso La Sentencia constituye per se una forma de reparaci\u00f3n. El Estado debe continuar con la tramitaci\u00f3n del proceso penal seguido por", - "values": [ - "Corte Interamericana de Derechos Humanos" - ] - }, - { - "text": "RESOLUCI\u00d3N DE LA CORTE INTERAMERICANA DE DERECHOS HUMANOS DE DE NOVIEMBRE DE CASO B\u00c1MACA VEL\u00c1SQUEZ VS. GUATEMALA CUMPLIMIENTO DE SENTENCIA VISTOS La Sentencia de fondo dictada en el Caso B\u00e1maca Vel\u00e1squez vs. Guatemala por la Corte Interamericana de Derechos Humanos en adelante la Corte la Corte Interamericana o el Tribunal de de noviembre de mediante la cual declar\u00f3 que el Estado viol\u00f3 en perjuicio de Efra\u00edn B\u00e1maca Vel\u00e1squez el derecho a la libertad personal consagrado en el art\u00edculo de ", - "values": [ - "Corte Interamericana de Derechos Humanos" - ] - }, - { - "text": "RESOLUCI\u00d3N DE LA CORTE INTERAMERICANA DE DERECHOS HUMANOS DE DE FEBRERO DE CASO VERA VERA Y OTRA VS. ECUADOR SUPERVISI\u00d3N DE CUMPLIMIENTO DE SENTENCIA VISTO La Sentencia de excepci\u00f3n preliminar fondo reparaciones y costas en adelante la Sentencia dictada por la Corte Interamericana de Derechos Humanos en adelante la Corte Interamericana la Corte o el Tribunal el de mayo de mediante la cual dispuso que El Estado deber\u00e1 adoptar en un plazo razonable las medidas necesarias para que la madre ", - "values": [ - "Corte Interamericana de Derechos Humanos" - ] - }, - { - "text": "Resoluci\u00f3n de la Corte Interamericana de Derechos Humanos de de febrero de Medidas Provisionales respecto de Argentina Asunto Millacura Llaip\u00e9n y otros VISTOS La Resoluci\u00f3n del Presidente de la Corte Interamericana de Derechos Humanos en adelante el Presidente de la Corte de de junio de La audiencia p\u00fablica sobre la solicitud de medidas provisionales celebrada en la sede la Corte Interamericana de Derechos Humanos en adelante la Corte Interamericana la Corte o el Tribunal el de julio de ", - "values": [ - "Corte Interamericana de Derechos Humanos" - ] - }, - { - "text": "RESOLUCI\u00d3N DE LA CORTE INTERAMERICANA DE DERECHOS HUMANOS DE DE MAYO CASO RADILLA PACHECO VS. M\u00c9XICO SUPERVISI\u00d3N DE CUMPLIMIENTO DE SENTENCIA VISTO La Sentencia de excepciones preliminares fondo reparaciones y costas en adelante la Sentencia o el Fallo dictada por la Corte Interamericana de Derechos Humanos en adelante la Corte Interamericana la Corte o el Tribunal el de noviembre de En dicho Fallo se estableci\u00f3 que el de agosto de efectivos del Ej\u00e9rcito de los Estados Unidos Mexicanos ", - "values": [ - "Corte Interamericana de Derechos Humanos" - ] - }, - { - "text": "RESOLUCI\u00d3N DEL PRESIDENTE DE LA CORTE INTERAMERICANA DE DERECHOS HUMANOS DE DE JUNIO DE FONDO DE ASISTENCIA LEGAL DE V\u00cdCTIMAS CASO COMUNIDAD CAMPESINA DE SANTA B\u00c1RBARA VS. PER\u00da VISTO El escrito de de julio de y sus anexos mediante los cuales la Comisi\u00f3n Interamericana de Derechos Humanos en adelante la Comisi\u00f3n Interamericana o la Comisi\u00f3n someti\u00f3 el caso Comunidad Campesina de Santa B\u00e1rbara ante la Corte Interamericana de Derechos Humanos en adelante la Corte Interamericana la Corte o el ", - "values": [ - "Corte Interamericana de Derechos Humanos" - ] - }, - { - "text": "SEPARATE OPINION OF JUDGE DE ROUX RENGIFO The Court abstained from declaring that Maritza Urrutias right to freedom of expression as established in Article of the American Convention had been violated. I do not share this position but as the judgment does not include an operative paragraph in this regard from a procedural point of view this opinion cannot be of a dissenting nature but rather of a separate line of reasoning. Article begins with a generic formula Everyone has the right to of ", - "values": [ - "Corte Interamericana de Derechos Humanos" - ] - }, - { - "text": "RESOLU\u00c7\u00c3O DA CORTE INTERAMERICANA DE DIREITOS HUMANOS DE DE FEVEREIRO DE CASO TRABALHADORES DA FAZENDA BRASIL VERDE VS. BRASIL VISTO A Resolu\u00e7\u00e3o do Presidente da Corte Interamericana de Direitos Humanos doravante o Presidente de de dezembro de doravante a Resolu\u00e7\u00e3o do Presidente por meio da qual inter alia ordenou a recep\u00e7\u00e3o de diversas declara\u00e7\u00f5es testemunhais e periciais mediante declara\u00e7\u00e3o prestada perante agente dotado de f\u00e9 p\u00fablica declara\u00e7\u00e3o juramentada e convocou a Comiss\u00e3o de a", - "values": [ - "Corte Interamericana de Derechos Humanos" - ] - }, - { - "text": "RESOLUCI\u00d3N DEL PRESIDENTE EN EJERCICIO DE LA CORTE INTERAMERICANA DE DERECHOS HUMANOS DE DE ABRIL DE CASO J. VS. PER\u00da VISTO El escrito de de enero de mediante el cual la Comisi\u00f3n Interamericana de Derechos Humanos en adelante la Comisi\u00f3n Interamericana o la Comisi\u00f3n someti\u00f3 ante la Corte Interamericana de Derechos Humanos en adelante la Corte Interamericana la Corte o el Tribunal un caso en contra de la Rep\u00fablica del Per\u00fa en adelante Per\u00fa o el Estado y ofreci\u00f3 dos dict\u00e1menes periciales. ", - "values": [ - "Corte Interamericana de Derechos Humanos" - ] - }, - { - "text": "RESOLUCI\u00d3N DE LA CORTE INTERAMERICANA DE DERECHOS HUMANOS DE DE NOVIEMBRE DE CASO CANTORAL BENAVIDES CUMPLIMIENTO DE SENTENCIA VISTOS La sentencia de fondo dictada en el Caso Cantoral Benavides vs. Per\u00fa por la Corte Interamericana de Derechos Humanos en adelante la Corte la Corte Interamericana o el Tribunal el de agosto de en la que dispuso en los puntos resolutivos d\u00e9cimo segundo y d\u00e9cimo tercero que decide que el Estado debe ordenar una investigaci\u00f3n para determinar las personas de ", - "values": [ - "Corte Interamericana de Derechos Humanos" - ] - }, - { - "text": "RELAT\u00d3RIO N\u00ba ADMISSIBILIDADE CASO MARCO ANTONIO SERVELLON GARC\u00cdA RONY ALEXIS BETANCOURT HERN\u00c1NDEZ DI\u00d3MEDES OBED GARC\u00cdA E ORLANDO ALVAREZ R\u00cdOS OS QUATRO PONTOS CARDINAIS HONDURAS de fevereiro de I. RESUMO Em de outubro de o Centro pela Justi\u00e7a e o Direito Internacional CEJIL e a Associa\u00e7\u00e3o Casa Alian\u00e7a Am\u00e9rica Latina Casa Alian\u00e7a doravante denominados os peticion\u00e1rios apresentaram uma den\u00fancia perante a Comiss\u00e3o Interamericana de Direitos Humanos doravante denominada a Comiss\u00e3o ou a na", - "values": [ - "Comisi\u00f3n Interamericana de Derechos Humanos" - ] - }, - { - "text": "RESOLUCI\u00d3N DE LA CORTE INTERAMERICANA DE DERECHOS HUMANOS DE DE SEPTIEMBRE DE MEDIDAS PROVISIONALES SOLICITADAS POR LA COMISI\u00d3N INTERAMERICANA DE DERECHOS HUMANOS RESPECTO DE LA REP\u00daBLICA DE VENEZUELA CASO ELOISA BARRIOS Y OTROS VISTO La Resoluci\u00f3n de la Corte Interamericana de Derechos Humanos en adelante la Corte la Corte Interamericana o el Tribunal emitida el de noviembre de mediante la cual resolvi\u00f3 Ratificar en todos sus t\u00e9rminos la Resoluci\u00f3n del Presidente de de septiembre de ", - "values": [ - "Corte Interamericana de Derechos Humanos" - ] - }, - { - "text": "RESOLUCI\u00d3N DEL PRESIDENTE DE LA CORTE INTERAMERICANA DE DERECHOS HUMANOS EN EJERCICIO PARA EL PRESENTE CASO DE DICIEMBRE DE FONDO DE ASISTENCIA LEGAL DE V\u00cdCTIMAS CASO VEREDA LA ESPERANZA VS. COLOMBIA VISTO El escrito de de diciembre de y sus anexos mediante los cuales la Comisi\u00f3n Interamericana de Derechos Humanos en adelante la Comisi\u00f3n Interamericana o la Comisi\u00f3n someti\u00f3 ante la Corte Interamericana de Derechos Humanos en adelante la Corte Interamericana la Corte o el Tribunal el caso.", - "values": [ - "Corte Interamericana de Derechos Humanos" - ] - }, - { - "text": "RESOLUCI\u00d3N DE LA CORTE INTERAMERICANA DE DERECHOS HUMANOS DE DE DICIEMBRE DE MEDIDAS PROVISIONALES RESPECTO DE LA REP\u00daBLICA DE COLOMBIA CASO CLEMENTE TEHER\u00c1N Y OTROS COMUNIDAD IND\u00cdGENA ZEN\u00da VISTOS La Resoluci\u00f3n de la Corte Interamericana de Derechos Humanos en adelante la Corte dictada el de junio de mediante la cual resolvi\u00f3 Ratificar la Resoluci\u00f3n del Presidente de la Corte Interamericana de Derechos Humanos de de marzo de Requerir al Estado de Colombia que mantenga las medidas para", - "values": [ - "Corte Interamericana de Derechos Humanos" - ] - }, - { - "text": "RESOLUCI\u00d3N DE LA CORTE INTERAMERICANA DE DERECHOS HUMANOS DE DE FEBRERO DE CASO G\u00d3MEZ PALOMINO VS. PER\u00da SUPERVISI\u00d3N DE CUMPLIMIENTO DE SENTENCIA VISTO La Sentencia de fondo reparaciones y costas en adelante la Sentencia dictada por la Corte Interamericana de Derechos Humanos en adelante la Corte Interamericana la Corte o el Tribunal el de noviembre de El caso se refiere a la desaparici\u00f3n forzada del se\u00f1or Santiago Fortunato G\u00f3mez Palomino a la falta de cumplimiento de la obligaci\u00f3n de ", - "values": [ - "Corte Interamericana de Derechos Humanos" - ] - }, - { - "text": "RESOLUCI\u00d3N DE LA CORTE INTERAMERICANA DE DERECHOS HUMANOS DE DE FEBRERO DE MEDIDAS PROVISIONALES RESPECTO DE M\u00c9XICO CASO ROSENDO CANT\u00da Y OTRA VISTO Las Resoluciones de la Corte Interamericana de Derechos Humanos en adelante la Corte Interamericana la Corte o este Tribunal de de febrero de de julio de y de junio de mediante las cuales se orden\u00f3 la adopci\u00f3n de medidas provisionales en el presente caso y se supervis\u00f3 su implementaci\u00f3n. En la \u00faltima Resoluci\u00f3n este Tribunal resolvi\u00f3 inter ", - "values": [ - "Corte Interamericana de Derechos Humanos" - ] - }, - { - "text": "RESOLUCI\u00d3N DE LA CORTE INTERAMERICANA DE DERECHOS HUMANOS DE DE FEBRERO DE CASO KAWAS FERN\u00c1NDEZ VS. HONDURAS SUPERVISI\u00d3N DE CUMPLIMIENTO DE SENTENCIA VISTO La Sentencia de fondo reparaciones y costas en adelante la Sentencia dictada por la Corte Interamericana de Derechos Humanos en adelante la Corte Interamericana la Corte o el Tribunal el de abril de mediante la cual inter alia dispuso que el Estado debe pagar a los se\u00f1ores Blanca Fern\u00e1ndez Selsa Damaris Watt Kawas Jaime Alejandro ", - "values": [ - "Corte Interamericana de Derechos Humanos" - ] - }, - { - "text": "CORTE INTERAMERICANA DE DERECHOS HUMANOS CASO PEROZO Y OTROS VS. VENEZUELA SENTENCIA DE DE ENERO DE EXCEPCIONES PRELIMINARES FONDO REPARACIONES Y C OSTAS En el caso Perozo y otros vs. Venezuela la Corte Interamericana de Derechos Humanos en adelante la Corte Interamericana la Corte o el Tribunal integrada por los siguientes jueces Cecilia Medina Quiroga Presidenta Sergio Garc\u00eda Ram\u00edrez Juez Manuel E. Ventura Robles Juez Leonardo A. Franco Juez Margarette May Macaulay Jueza Rhadys Abreu Jueza", - "values": [ - "Corte Interamericana de Derechos Humanos" - ] - }, - { - "text": "Corte Interamericana de Derechos Humanos Caso Su\u00e1rez Rosero Vs. Ecuador Sentencia de de enero de Reparaciones y Costas En el caso Su\u00e1rez Rosero la Corte Interamericana de Derechos Humanos en adelante la Corte la Corte Interamericana o el Tribunal integrada por los siguientes jueces Ant\u00f4nio A. Can\u00e7ado Trindade Presidente Hern\u00e1n Salgado Pesantes Juez M\u00e1ximo Pacheco G\u00f3mez Juez Oliver Jackman Juez Alirio Abreu Burelli Juez Sergio Garc\u00eda Ram\u00edrez Juez Carlos Vicente de Roux Rengifo Juez presentes ", - "values": [ - "Corte Interamericana de Derechos Humanos" - ] - }, - { - "text": " VOTO RAZONADO DEL JUEZ JULIO A. BARBERIS La sentencia que antecede resuelve que el Estado argentino ha infringido los art\u00edculos y de la Convenci\u00f3n americana sobre Derechos humanos conclusi\u00f3n que se apoya en el an\u00e1lisis de los hechos y del derecho expuestos en ella. Pero en lugar de decidir simplemente que el Estado argentino ha violado los art\u00edculos indicados utiliza un lenguaje peculiar dice que ha violado las disposiciones mencionadas en relaci\u00f3n con el art\u00edculo de la Convenci\u00f3n. Esta ", - "values": [ - "Corte Interamericana de Derechos Humanos" - ] - }, - { - "text": "RESOLUCI\u00d3N DE LA CORTE INTERAMERICANA DE DERECHOS HUMANOS DE DE JUNIO DE LA MEDIDAS PROVISIONALES SOLICITADAS POR COMISI\u00d3N INTERAMERICANA DE DERECHOS HUMANOS RESPECTO DE LA REP\u00daBLICA DE VENEZUELA CASO ELOISA BARRIOS Y OTROS VISTO La Resoluci\u00f3n de la Corte Interamericana emitida el de noviembre de mediante la cual resolvi\u00f3 Ratificar en todos sus t\u00e9rminos la Resoluci\u00f3n del Presidente de de septiembre de Requerir al Estado que mantenga las medidas que hubiese adoptado y disponga de forma ", - "values": [ - "Corte Interamericana de Derechos Humanos" - ] - }, - { - "text": "ORDER OF THE ACTING PRESIDENT OF THE INTERAMERICAN COURT OF HUMAN RIGHTS FOR THIS CASE OF AUGUST REQUEST PRESENTED BY THE COMMON INTERVENER OF THE REPRESENTATIVES OF THE VICTIMS AND THEIR NEXT OF KIN CASE OF THE MIGUEL CASTRO CASTRO PRISON v. PERU MONITORING COMPLIANCE WITH JUDGMENT HAVING SEEN The Judgment on merits reparations and costs hereinafter the Judgment delivered by the InterAmerican Court of Human Rights hereinafter the InterAmerican Court or the Court on November The handed", - "values": [ - "Corte Interamericana de Derechos Humanos" - ] - }, - { - "text": "RESOLUCI\u00d3N DE LA CORTE INTERAMERICANA DE DERECHOS HUMANOS DE DE JULIO DE CASO CASTA\u00d1EDA GUTMAN VS. ESTADOS UNIDOS MEXICANOS SUPERVISI\u00d3N DE CUMPLIMIENTO DE SENTENCIA VISTO La Sentencia de excepciones preliminares fondo reparaciones y costas en adelante la Sentencia de de agosto de mediante la cual la Corte Interamericana de Derechos Humanos en adelante la Corte Interamericana la Corte o el Tribunal dispuso inter alia que El Estado debe en un plazo razonable completar la adecuaci\u00f3n de su ", - "values": [ - "Corte Interamericana de Derechos Humanos" - ] - }, - { - "text": "Resoluci\u00f3n de la Corte Interamericana de Derechos Humanos Del de diciembre del Solicitud de Medidas Provisionales Respecto del Estado de Barbados Caso Tyrone Dacosta Cadogan VISTOS El escrito del de octubre de mediante el cual la Comisi\u00f3n Interamericana de Derechos Humanos en adelante la Comisi\u00f3n o la Comisi\u00f3n Interamericana present\u00f3 a la Corte Interamericana de Derechos Humanos en adelante la Corte la Corte Interamericana o el Tribunal de conformidad con el art\u00edculo de la Convenci\u00f3n ", - "values": [ - "Corte Interamericana de Derechos Humanos" - ] - }, - { - "text": "INFORME N\u00ba CASO JUAN CARLOS BAYARRI ARGENTINA de enero de I. RESUMEN El de abril de la Comisi\u00f3n Interamericana de Derechos Humanos en adelante la Comisi\u00f3n Interamericana la Comisi\u00f3n o la CIDH recibi\u00f3 una petici\u00f3n del se\u00f1or Juan Carlos Bayarri en adelante el peticionario contra la Rep\u00fablica de Argentina en adelante el Estado o Argentina por la presunta violaci\u00f3n de los derechos a la integridad personal art\u00edculo a la libertad personal art\u00edculo garant\u00edas judiciales art\u00edculo y protecci\u00f3n", - "values": [ - "Comisi\u00f3n Interamericana de Derechos Humanos" - ] - }, - { - "text": "VOTO RAZONADO CONJUNTO DE LOS JUECES AA. CAN\u00c7ADO TRINDADE Y A. ABREU BURELLI Al votar en favor de la presente Sentencia de reparaciones dictada por la Corte Interamericana de Derechos Humanos en el caso Castillo P\u00e1ez versus Per\u00fa nos permitimos referirnos a las ponderaciones de nuestro Voto Razonado Conjunto p\u00e1rrafos en la Sentencia de reparaciones en el caso Loayza Tamayo versus Per\u00fa de esta misma fecha. Ah\u00ed expusimos nuestro entendimiento de igual incidencia en el presente caso de que la ", - "values": [ - "Corte Interamericana de Derechos Humanos" - ] - }, - { - "text": "RESOLUCI\u00d3N DEL PRESIDENTE DE LA CORTE INTERAMERICANA DE DERECHOS HUMANOS DE DE FEBRERO DE SOLICITUD DE MEDIDAS PROVISIONALES DE LA COMISI\u00d3N INTERAMERICANA DE DERECHOS HUMANOS RESPECTO DE LOS ESTADOS UNIDOS MEXICANOS CASO GALLARDO RODR\u00cdGUEZ VISTO El escrito de la Comisi\u00f3n Interamericana de Derechos Humanos en adelante la Comisi\u00f3n o la Comisi\u00f3n Interamericana de de diciembre de mediante el cual present\u00f3 una solicitud de medidas provisionales para evitar da\u00f1os irreparables al General Jos\u00e9 ", - "values": [ - "Corte Interamericana de Derechos Humanos" - ] - }, - { - "text": "RESOLUCI\u00d3N DEL PRESIDENTE DE LA CORTE INTERAMERICANA DE DERECHOS HUMANOS DE DE DICIEMBRE DE CASO PUEBLOS KALI\u00d1A Y LOKONO VS. SURINAME VISTO El escrito de sometimiento del caso y el Informe de Fondo de la Comisi\u00f3n Interamericana de Derechos Humanos en adelante la Comisi\u00f3n Interamericana o la Comisi\u00f3n el escrito de solicitudes argumentos y pruebas en adelante el escrito de solicitudes y argumentos de los representantes de las presuntas v\u00edctimas en adelante los representantes y el escrito de ", - "values": [ - "Corte Interamericana de Derechos Humanos" - ] - }, - { - "text": "Resoluci\u00f3n de la Corte Interamericana de Derechos Humanos de febrero de Medidas Provisionales Respecto de El Salvador Asunto Adri\u00e1n Mel\u00e9ndez Quijano y Otros Visto La Resoluci\u00f3n de la Corte Interamericana de Derechos Humanos en adelante la Corte Interamericana la Corte o el Tribunal de de mayo de mediante la cual ratific\u00f3 la Resoluci\u00f3n de la Presidencia de la Corte de de marzo de y ratific\u00f3 las medidas adoptadas a favor de Adri\u00e1n Mel\u00e9ndez Quijano Marina Elizabeth Garc\u00eda de Mel\u00e9ndez Andrea", - "values": [ - "Corte Interamericana de Derechos Humanos" - ] - }, - { - "text": "RESOLUCI\u00d3N DEL PRESIDENTE DE LA CORTE INTERAMERICANA DE DERECHOS HUMANOS DE DE MARZO DE CASO MASACRES DE EL MOZOTE Y LUGARES ALEDA\u00d1OS VS. EL SALVADOR VISTO El escrito de sometimiento del caso presentado por la Comisi\u00f3n Interamericana de Derechos Humanos en adelante tambi\u00e9n la Comisi\u00f3n Interamericana o la Comisi\u00f3n ante la Corte Interamericana de Derechos Humanos en adelante la Corte Interamericana la Corte o el Tribunal el de marzo de mediante el cual ofreci\u00f3 tres dict\u00e1menes periciales los", - "values": [ - "Corte Interamericana de Derechos Humanos" - ] - }, - { - "text": "VOTO CONCURRENTE DE JUEZ EDUARDO VIO GROSSI CASO GELMAN VSURUGUAY SENTENCIA DE DE FEBRERO DE Fondo y Reparaciones Formulo el presente voto concurrente con la citada sentencia llamando la atenci\u00f3n con respecto a ciertos aspectos abordados en ella. El primero dice relaci\u00f3n con la estrecha relaci\u00f3n entre la situaci\u00f3n de Mar\u00eda Claudia Garc\u00eda Iruretagoyena de Gelman y la de su hija Mar\u00eda Macarena Gelman Garc\u00eda las que en definitiva podr\u00edan configurar una unidad. As\u00ed la desaparici\u00f3n forzada de la ", - "values": [ - "Corte Interamericana de Derechos Humanos" - ] - }, - { - "text": "RESOLUCI\u00d3N DEL PRESIDENTE DE LA CORTE INTERAMERICANA DE DERECHOS HUMANOS DE DE MARZO DE SOLICITUD DE MEDIDAS PROVISIONALES PRESENTADA POR LA COMISI\u00d3N INTERAMERICANA DE DERECHOS HUMANOS RESPECTO DE REP\u00daBLICA DOMINICANA ASUNTO JUAN ALMONTE HERRERA Y OTROS VISTO El escrito de la Comisi\u00f3n Interamericana de Derechos Humanos en adelante la Comisi\u00f3n Interamericana o la Comisi\u00f3n de de marzo de y sus anexos mediante los cuales someti\u00f3 a la Corte Interamericana de Derechos Humanos en adelante la ", - "values": [ - "Corte Interamericana de Derechos Humanos" - ] - }, - { - "text": "INFORME N\u00ba PETICI\u00d3N ADMISIBILIDAD JES\u00daS TRANQUILINO V\u00c9LEZ LOOR PANAM\u00c1 de octubre de I. RESUMEN El de febrero de la Comisi\u00f3n Interamericana de Derechos Humanos en adelante la Comisi\u00f3n recibi\u00f3 por correo electr\u00f3nico una petici\u00f3n presentada por Jes\u00fas Tranquilino V\u00e9lez Loor en adelante la presunta victima en la cual alega haber sufrido torturas incomunicaci\u00f3n y malos tratos por agentes policiales paname\u00f1os en dos centros de detenci\u00f3n paname\u00f1os sin hab\u00e9rsele reconocido el derecho a la defensa", - "values": [ - "Comisi\u00f3n Interamericana de Derechos Humanos" - ] - }, - { - "text": "Resoluci\u00f3n de la Corte Interamericana de Derechos Humanos de de septiembre de Caso Zambrano V\u00e9lez y otros Vs. Ecuador Supervisi\u00f3n de Cumplimiento de Sentencia Vistos La Sentencia de fondo reparaciones y costas dictada por la Corte Interamericana de Derechos Humanos en adelante la Corte la Corte Interamericana o el Tribunal el de julio de mediante la cual decidi\u00f3 que El Estado debe realizar inmediatamente las debidas diligencias y utilizar todos los medios disponibles para hacer expedita ", - "values": [ - "Corte Interamericana de Derechos Humanos" - ] - }, - { - "text": "RESOLUCI\u00d3N DE LA CORTE INTERAMERICANA DE DE DERECHOS HUMANOS DE DE FEBRERO DE CASO DE LAS MASACRES DE ITUANGO VS. COLOMBIA SUPERVISI\u00d3N DE CUMPLIMIENTO DE SENTENCIA Visto La Sentencia de fondo reparaciones y costas dictada el de julio de en adelante la Sentencia por la Corte Interamericana de Derechos Humanos en adelante la Corte la Corte Interamericana o el Tribunal en el caso de las Masacres de Ituango. La Resoluci\u00f3n sobre supervisi\u00f3n de cumplimiento de Sentencia dictada por la Corte el ", - "values": [ - "Corte Interamericana de Derechos Humanos" - ] - }, - { - "text": "Resoluci\u00f3n de la Corte Interamericana de Derechos Humanos de de noviembre de Medidas Provisionales respecto de Hait\u00ed Asunto Lysias Fleury Vistos El escrito de la Comisi\u00f3n Interamericana de Derechos Humanos en adelante la Comisi\u00f3n o la Comisi\u00f3n Interamericana de de marzo de mediante el cual someti\u00f3 a la Corte Interamericana de Derechos Humanos en adelante la Corte la Corte Interamericana o el Tribunal de acuerdo con el art\u00edculo de la Convenci\u00f3n Americana sobre Derechos Humanos en adelante ", - "values": [ - "Corte Interamericana de Derechos Humanos" - ] - }, - { - "text": "INFORME N\u00ba PETICI\u00d3N ADMISIBILIDAD ALICIA BARBANI DUARTE MAR\u00cdA DEL HUERTO BRECCIA Y OTROS GRUPO DE AHORRISTAS DEL BANCO DE MONTEVIDEO REP\u00daBLICA ORIENTAL DEL URUGUAY URUGUAY de octubre de I. RESUMEN El de octubre de las se\u00f1oras Alicia Barbani Duarte y Mar\u00eda del Huerto Breccia Farro las peticionarias presentaron en su nombre y en nombre de personas m\u00e1s una denuncia ante la Comisi\u00f3n Interamericana de Derechos Humanos la Comisi\u00f3n en contra de la Rep\u00fablica del Uruguay el Estado por la de ", - "values": [ - "Comisi\u00f3n Interamericana de Derechos Humanos" - ] - }, - { - "text": "RESOLUCI\u00d3N DEL PRESIDENTE EN EJERCICIO DE LA CORTE INTERAMERICANA DE DERECHOS HUMANOS DE DE OCTUBRE DE FONDO DE ASISTENCIA LEGAL DE V\u00cdCTIMAS CASO J. VS. PER\u00da VISTO El escrito de de enero de y sus anexos mediante los cuales la Comisi\u00f3n Interamericana de Derechos Humanos en adelante la Comisi\u00f3n Interamericana o la Comisi\u00f3n someti\u00f3 a la Corte Interamericana de Derechos Humanos en adelante la Corte Interamericana la Corte o el Tribunal el presente caso en contra de la Rep\u00fablica del Per\u00fa en ", - "values": [ - "Corte Interamericana de Derechos Humanos" - ] - }, - { - "text": "RESOLUCI\u00d3N DE LA CORTE INTERAMERICANA DE DERECHOS HUMANOS DE DE JUNIO DE CASO BAENA RICARDO Y OTROS TRABAJADORES VS. PANAM\u00c1 CUMPLIMIENTO DE SENTENCIA VISTOS La sentencia dictada en el caso Baena Ricardo y otros por la Corte Interamericana de Derechos Humanos en adelante la Corte la Corte Interamericana o el Tribunal el de febrero de en cuyos puntos resolutivos por unanimidad declar\u00f3 que el Estado viol\u00f3 los principios de legalidad y de irretroactividad consagrados en el art\u00edculo de la ", - "values": [ - "Corte Interamericana de Derechos Humanos" - ] - }, - { - "text": "RESOLUCI\u00d3N DEL PRESIDENTE DE LA CORTE INTERAMERICANA DE DERECHOS HUMANOS DE DE DICIEMBRE DE FONDO DE ASISTENCIA LEGAL DE V\u00cdCTIMAS CASO COMUNIDAD GAR\u00cdFUNA Y SUS MIEMBROS VS. HONDURAS VISTO El escrito de de febrero de y sus anexos mediante los cuales la Comisi\u00f3n Interamericana de Derechos Humanos en adelante tambi\u00e9n la Comisi\u00f3n Interamericana o la Comisi\u00f3n someti\u00f3 el caso de la Comunidad Gar\u00edfuna Triunfo de la Cruz y sus miembros ante la Corte Interamericana de Derechos Humanos en adelante ", - "values": [ - "Corte Interamericana de Derechos Humanos" - ] - }, - { - "text": "RESOLUCI\u00d3N DEL PRESIDENTE DE LA CORTE INTERAMERICANA DE DERECHOS HUMANOS DE DE MARZO DE CASO PUEBLOS IND\u00cdGENAS KUNA DE MADUNGAND\u00cd Y EMBER\u00c1 DE BAYANO Y SUS MIEMBROS VS PANAM\u00c1 VISTO El escrito de sometimiento del caso presentado por la Comisi\u00f3n Interamericana de Derechos Humanos en adelante la Comisi\u00f3n Interamericana o la Comisi\u00f3n ante la Corte Interamericana de Derechos Humanos en adelante la Corte Interamericana la Corte o el Tribunal el de febrero de mediante el cual remiti\u00f3 el Informe de", - "values": [ - "Corte Interamericana de Derechos Humanos" - ] - }, - { - "text": "Resoluci\u00f3n de la Corte Interamericana de Derechos Humanos De de mayo de Caso Ximenes Lopes Vs. Brasil Supervisi\u00f3n de Cumplimiento de Sentencia VISTO La Sentencia de fondo reparaciones y costas de de julio de en adelante la Sentencia emitida por la Corte Interamericana de Derechos Humanos en adelante la Corte Interamericana la Corte o el Tribunal mediante la cual dispuso que El Estado debe garantizar en un plazo razonable que el proceso interno tendiente a investigar y sancionar a los de", - "values": [ - "Corte Interamericana de Derechos Humanos" - ] - }, - { - "text": "RESOLUCI\u00d3N DE LA CORTE INTERAMERICANA DE DERECHOS HUMANOS DE DE AGOSTO DE MEDIDAS PROVISIONALES SOLICITADAS POR LA COMISI\u00d3N INTERAMERICANA DE DERECHOS HUMANOS RESPECTO DE LA REP\u00daBLICA DE GUATEMALA CASO BLAKE VISTOS La Resoluci\u00f3n del Presidente de la Corte Interamericana de Derechos Humanos de de agosto de La Resoluci\u00f3n de la Corte Interamericana de Derechos Humanos de de septiembre de que dispuso Ratificar la Resoluci\u00f3n del Presidente del de agosto de y solicitar al Gobierno de la ", - "values": [ - "Corte Interamericana de Derechos Humanos" - ] - }, - { - "text": "RESOLUCI\u00d3N DEL PRESIDENTE DE LA CORTE INTERAMERICANA DE DERECHOS HUMANOS DE DE NOVIEMBRE DE CASO GALINDO CARDENAS Y OTROS VS. PER\u00da VISTO El escrito de sometimiento del caso y el Informe de Fondo de la Comisi\u00f3n Interamericana de Derechos Humanos en adelante la Comisi\u00f3n Interamericana o la Comisi\u00f3n el escrito de solicitudes argumentos y pruebas en adelante escrito de solicitudes y argumentos del representante de las presuntas v\u00edctimas en adelante el representante y el escrito de excepciones ", - "values": [ - "Corte Interamericana de Derechos Humanos" - ] - }, - { - "text": "Resoluci\u00f3n de la Presidenta de la Corte Interamericana de Derechos Humanos de de mayo de Caso Juan Humberto S\u00e1nchez Vs. Honduras Supervisi\u00f3n de Cumplimiento de Sentencia Visto La Sentencia de excepci\u00f3n preliminar fondo reparaciones y costas en adelante la Sentencia dictada por la Corte Interamericana de Derechos Humanos en adelante la Corte Interamericana la Corte o el Tribunal el de junio de en el presente caso. Las resoluciones de supervisi\u00f3n de cumplimiento de la Sentencia dictadas por", - "values": [ - "Corte Interamericana de Derechos Humanos" - ] - }, - { - "text": "INFORME N\u00ba CASO BARUCH IVCHER BRONSTEIN PERU de marzo de I. ANTECEDENTES El ciudadano peruano Baruch Ivcher Bronstein es un empresario peruano exPresidente del directorio de la empresa de televisi\u00f3n Frecuencia LatinaCanal y accionista mayoritario quien en adquiri\u00f3 la nacionalidad peruana por Decreto Supremo conforme a la ley vigente. Cabe destacar que conforme a la legislaci\u00f3n vigente a esa fecha al igual que en la actual ning\u00fan extranjero pod\u00eda ser due\u00f1o de un canal de radio o en Per\u00fa.", - "values": [ - "Comisi\u00f3n Interamericana de Derechos Humanos" - ] - }, - { - "text": "RESOLUCI\u00d3N DEL PRESIDENTE DE LA CORTE INTERAMERICANA DE DERECHOS HUMANOS DE DE MARZO DE CASO IV VS. BOLIVIA CONVOCATORIA A AUDIENCIA VISTO El escrito de sometimiento del caso y el Informe de Fondo de la Comisi\u00f3n Interamericana de Derechos Humanos en adelante la Comisi\u00f3n Interamericana o la Comisi\u00f3n el escrito de solicitudes argumentos y pruebas en adelante el escrito de solicitudes y argumentos de la representante de la presunta v\u00edctima en adelante la representante y el escrito de al del", - "values": [ - "Corte Interamericana de Derechos Humanos" - ] - }, - { - "text": "RESOLUCI\u00d3N DE LA CORTE INTERAMERICANA DE DERECHOS HUMANOS DE DE AGOSTO DE CASO DEL TRIBUNAL CONSTITUCIONAL AGUIRRE ROCA REY FERRY Y REVOREDO MARSANO VS. PER\u00da SUPERVISI\u00d3N DE CUMPLIMIENTO DE SENTENCIA VISTOS La Sentencia dictada por la Corte Interamericana de Derechos Humanos en adelante la Corte la Corte Interamericana o el Tribunal el de enero de mediante la cual declar\u00f3 que el Estado viol\u00f3 en perjuicio de Manuel Aguirre Roca Guillermo Rey Terry y Delia Revoredo Marsano el derecho a las ", - "values": [ - "Corte Interamericana de Derechos Humanos" - ] - }, - { - "text": "RESOLUCI\u00d3N DEL PRESIDENTE DE CORTE INTERAMERICANA DE DERECHOS HUMANOS DE DE FEBRERO MEDIDAS PROVISIONALES SOLICITADAS POR LA COMISI\u00d3N INTERAMERICANA DE DERECHOS HUMANOS RESPECTO DE LA REP\u00daBLICA DE GUATEMALA CASOS PANIAGUA MORALES Y OTROS Y V\u00c1SQUEZ Y OTROS N. VISTOS El proceso en el caso Paniagua Morales y otros en tr\u00e1mite ante la Corte Interamericana de Derechos Humanos en adelante la Corte o la Corte Interamericana y la transcripci\u00f3n de las declaraciones rendidas por los se\u00f1ores Oscar y ", - "values": [ - "Corte Interamericana de Derechos Humanos" - ] - }, - { - "text": "RESOLUCI\u00d3N DE LA CORTE INTERAMERICANA DE DERECHOS HUMANOS DE DE NOVIEMBRE DE LA MEDIDAS PROVISIONALES SOLICITADAS POR COMISI\u00d3N INTERAMERICANA DE DERECHOS HUMANOS RESPECTO DE LA REP\u00daBLICA DE VENEZUELA LILIANA ORTEGA Y OTRAS VS. VENEZUELA VISTOS La comunicaci\u00f3n de de noviembre de y sus anexos mediante la cual la Comisi\u00f3n Interamericana de Derechos Humanos en adelante la Comisi\u00f3n Interamericana o la Comisi\u00f3n someti\u00f3 a la Corte Interamericana de Derechos Humanos en adelante la Corte la Corte ", - "values": [ - "Corte Interamericana de Derechos Humanos" - ] - }, - { - "text": "VOTO RAZONADO CASO ZAMBRANO V\u00c9LEZ Y OTROS vs. ECUADOR He concurrido con mi voto para aprobar por unanimidad la presente sentencia en el caso Zambrano V\u00e9lez y otros contra Ecuador pero considero necesario aclarar mi posici\u00f3n sobre un tema que fue considerado en la deliberaci\u00f3n de este caso y durante los \u00faltimos tres a\u00f1os en diversos casos ante la Corte. Se trata de la aplicaci\u00f3n e interpretaci\u00f3n de los art\u00edculos y de la Convenci\u00f3n en relaci\u00f3n con el art\u00edculo y por ende tambi\u00e9n sobre la y de", - "values": [ - "Corte Interamericana de Derechos Humanos" - ] - }, - { - "text": "INFORME N PETICI\u00d3N ADMISIBILIDAD EDUARDO KIMEL ARGENTINA de febrero de I. RESUMEN El de diciembre de la Comisi\u00f3n Interamericana de Derechos Humanos en adelante la Comisi\u00f3n Interamericana la Comisi\u00f3n o la CIDH recibi\u00f3 una denuncia presentada por el Centro de Estudios Legales y Sociales CELS y el Centro para la Justicia y el Derecho Internacional CEJIL en adelante los peticionarios en contra de la Rep\u00fablica de Argentina en adelante el Estado el Gobierno o Argentina. La petici\u00f3n se con la ", - "values": [ - "Comisi\u00f3n Interamericana de Derechos Humanos" - ] - }, - { - "text": "VOTO CONCURRENTE DEL JUEZ SERGIO GARC\u00cdA RAM\u00cdREZ A LA SENTENCIA DE LA CORTE INTERAMERICANA DE DERECHOS HUMANOS EN EL CASO BARRIOS ALTOS. DE MARZO DE Coincido con la sentencia de fondo adoptada por unanimidad de votos de los integrantes de la Corte Interamericana de Derechos Humanos en el caso Barrios Altos. Agrego este Voto Concurrente en el que recojo algunas consideraciones que me sugiere esa sentencia con respecto a los siguientes puntos a caracter\u00edsticas del allanamiento y calificaci\u00f3n ", - "values": [ - "Corte Interamericana de Derechos Humanos" - ] - }, - { - "text": "RESOLUCI\u00d3N DE LA CORTE INTERAMERICANA DE DERECHOS HUMANOS DE DE FEBRERO DE MEDIDAS PROVISIONALES CASO RAM\u00cdREZ HINOSTROZA Y OTROS VISTOS La Resoluci\u00f3n de la Corte Interamericana de Derechos Humanos en adelante la Corte o el Tribunal de de septiembre de sobre medidas provisionales mediante la cual resolvi\u00f3 Ratificar en todos sus t\u00e9rminos la Resoluci\u00f3n del Presidente de la Corte Interamericana de Derechos Humanos de de julio de y por consiguiente requerir al Estado que mantenga las medidas", - "values": [ - "Corte Interamericana de Derechos Humanos" - ] - }, - { - "text": "CORTE INTERAMERICANA DE DERECHOS HUMANOS CASO D\u00cdAZ PE\u00d1A VS. VENEZUELA SENTENCIA DE DE JUNIO DE Excepci\u00f3n preliminar fondo reparaciones y costas En el caso D\u00edaz Pe\u00f1a la Corte Interamericana de Derechos Humanos en adelante la Corte Interamericana la Corte o el Tribunal integrada por los siguientes Jueces Diego Garc\u00edaSay\u00e1n Presidente Manuel E. Ventura Robles Vicepresidente Leonardo A. Franco Juez Margarette May Macaulay Jueza Rhadys Abreu Blondet Jueza Alberto P\u00e9rez P\u00e9rez Juez y Eduardo Vio ", - "values": [ - "Corte Interamericana de Derechos Humanos" - ] - }, - { - "text": "RESOLUCI\u00d3N DEL PRESIDENTE DE LA CORTE INTERAMERICANA DE DERECHOS HUMANOS DE DE DICIEMBRE DE FONDO DE ASISTENCIA LEGAL DE V\u00cdCTIMAS CASO MASACRES DE EL MOZOTE Y LUGARES ALEDA\u00d1OS VS. EL SALVADOR VISTO El escrito de de marzo de y sus anexos mediante los cuales la Comisi\u00f3n Interamericana de Derechos Humanos en adelante la Comisi\u00f3n Interamericana o la Comisi\u00f3n someti\u00f3 a la Corte Interamericana de Derechos Humanos en adelante la Corte Interamericana la Corte o el Tribunal un caso en contra de la ", - "values": [ - "Corte Interamericana de Derechos Humanos" - ] - }, - { - "text": "RESOLUCI\u00d3N DE LA CORTE INTERAMERICANA DE DERECHOS HUMANOS DE DE JULIO DE CASO BAENA RICARDO Y OTROS VS. PANAM\u00c1 SUPERVISI\u00d3N DE CUMPLIMIENTO DE SENTENCIA VISTO La Sentencia de fondo reparaciones y costas emitida el de febrero de en adelante la Sentencia por la Corte Interamericana de Derechos Humanos en adelante la Corte Interamericana la Corte o el Tribunal. Las resoluciones de supervisi\u00f3n de cumplimiento de la Sentencia emitidas por la Corte Interamericana el de junio de el de de el ", - "values": [ - "Corte Interamericana de Derechos Humanos" - ] - }, - { - "text": "RESOLUCI\u00d3N DEL PRESIDENTE DE LA CORTE INTERAMERICANA DE DERECHOS HUMANOS DE DE JUNIO DE FONDO DE ASISTENCIA LEGAL DE V\u00cdCTIMAS CASO ARG\u00dcELLES Y OTROS VS. ARGENTINA VISTO El escrito de de mayo de y su anexo mediante los cuales la Comisi\u00f3n Interamericana de Derechos Humanos en adelante la Comisi\u00f3n Interamericana o la Comisi\u00f3n someti\u00f3 a la Corte Interamericana de Derechos Humanos en adelante la Corte Interamericana la Corte o el Tribunal un caso en contra de la Rep\u00fablica de Argentina en o el", - "values": [ - "Corte Interamericana de Derechos Humanos" - ] - }, - { - "text": "INFORME N\u00ba CASO RAM\u00d3N MAURICIO GARC\u00cdAPRIETO GIRALT EL SALVADOR de marzo de I. RESUMEN El de octubre de la Comisi\u00f3n Interamericana de Derechos Humanos en adelante la Comisi\u00f3n o la CIDH recibi\u00f3 una comunicaci\u00f3n del Centro Internacional para la Justicia y el Derecho Internacional CEJIL en adelante los peticionarios por medio de la cual se denunci\u00f3 la ejecuci\u00f3n arbitraria del se\u00f1or Ram\u00f3n Mauricio Garc\u00edaPrieto Giralt en adelante tambi\u00e9n referido como la v\u00edctima ocurrida en la ciudad de San ", - "values": [ - "Comisi\u00f3n Interamericana de Derechos Humanos" - ] - }, - { - "text": "Resoluci\u00f3n de la Presidenta de la Corte Interamericana de Derechos Humanos de de noviembre de Caso Comerciantes Vs. Colombia Supervisi\u00f3n de Cumplimiento de la Sentencia y Medidas Provisionales Sandra Belinda Montero Fuentes y Familiares Salom\u00f3n Fl\u00f3rez y Familiares Luis Jos\u00e9 Pundor Quintero y Familiares Ana Diva Quintero Quintero De Pundor y Familiares Wilmar Rodr\u00edguez Quintero y Familiares Yimmy Efra\u00edn Rodr\u00edguez Quintero y Familiares Vistos A Supervisi\u00f3n de cumplimiento de la Sentencia La ", - "values": [ - "Corte Interamericana de Derechos Humanos" - ] - }, - { - "text": "INFORME N\u00ba ADMISIBILIDAD PETICI\u00d3N ASOCIACI\u00d3N NACIONAL DE CESANTES Y JUBILADOS DE LA CONTRALOR\u00cdA GENERAL DE LA REP\u00daBLICA PER\u00da de octubre de I. RESUMEN Mediante petici\u00f3n presentada a la Comisi\u00f3n Interamericana de Derechos Humanos en adelante la Comisi\u00f3n o CIDH el de noviembre de y ampliada el de enero de los integrantes de la Asociaci\u00f3n Nacional de Cesantes y Jubilados de la Contralor\u00eda General de la rep\u00fablica del Per\u00fa y el Centro de Asesor\u00eda Laboral CEDAL en adelante los peticionarios ", - "values": [ - "Comisi\u00f3n Interamericana de Derechos Humanos" - ] - }, - { - "text": "CORTE INTERAMERICANA DE DERECHOS HUMANOS CASO SALVADOR CHIRIBOGA VS. ECUADOR SENTENCIA DE DE AGOSTO DE INTERPRETACI\u00d3N DE LA SENTENCIA DE REPARACIONES Y COSTAS En el caso Salvador Chiriboga la Corte Interamericana de Derechos Humanos en adelante la Corte Interamericana la Corte o el Tribunal integrada por los siguientes jueces Diego Garc\u00edaSay\u00e1n Presidente Cecilia Medina Quiroga Jueza Sergio Garc\u00eda Ram\u00edrez Juez Manuel E. Ventura Robles Juez Margarette May Macaulay Jueza Rhadys Abreu Blondet y ", - "values": [ - "Corte Interamericana de Derechos Humanos" - ] - }, - { - "text": "CORTE INTERAMERICANA DE DERECHOS HUMANOS CASO OSORIO RIVERA Y FAMILIARES VS. PER\u00da SENTENCIA DE DE NOVIEMBRE DE Interpretaci\u00f3n de la Sentencia de Excepciones Preliminares Fondo Reparaciones y Costas En el caso Osorio Rivera y familiares Vs. Per\u00fa la Corte Interamericana de Derechos Humanos en adelante la Corte Interamericana la Corte o este Tribunal integrada por los siguientes Jueces Humberto Antonio Sierra Porto Presidente Roberto F. Caldas Vicepresidente Manuel E. Ventura Robles Juez Vio ", - "values": [ - "Corte Interamericana de Derechos Humanos" - ] - }, - { - "text": "RESOLUCI\u00d3N DE LA CORTE INTERAMERICANA DE DERECHOS HUMANOS DE DE DICIEMBRE DE MEDIDAS PROVISIONALES CASO JAMES Y OTROS RESPECTO DE TRINIDAD Y TOBAGO VISTOS La Resoluci\u00f3n de la Corte Interamericana de Derechos Humanos en adelante la Corte la Corte Interamericana o el Tribunal de de junio de en la cual decidi\u00f3 Ordenar a Trinidad y Tobago que tomara todas las medidas necesarias para preservar la vida e integridad personal de los se\u00f1ores Wenceslaus James Anthony Briggs Anderson Noel Anthony y", - "values": [ - "Corte Interamericana de Derechos Humanos" - ] - }, - { - "text": "RESOLUCI\u00d3N DE LA CORTE INTERAMERICANA DE DERECHOS HUMANOS DE DE NOVIEMBRE DE MEDIDAS PROVISIONALES RESPECTO DE VENEZUELA ASUNTO GUERRERO LAREZ VISTO El escrito de la Comisi\u00f3n Interamericana de Derechos Humanos en adelante la Comisi\u00f3n Interamericana o la Comisi\u00f3n de de noviembre de y sus anexos mediante los cuales someti\u00f3 a la Corte Interamericana de Derechos Humanos en adelante la Corte Interamericana la Corte o el Tribunal una solicitud de medidas provisionales de conformidad con los de", - "values": [ - "Corte Interamericana de Derechos Humanos" - ] - }, - { - "text": "INFORME No. PETICI\u00d3N ADMISIBILIDAD DIGNA OCHOA Y OTROS M\u00c9XICO de julio de I. RESUMEN La Comisi\u00f3n Interamericana de Derechos Humanos en adelante Comisi\u00f3n Comisi\u00f3n Interamericana o CIDH recibi\u00f3 el de noviembre de una petici\u00f3n presentada por el Centro por la Justicia y el Derecho Internacional CEJIL y la Red Nacional de Organismos Civiles de Derechos Humanos Todos los Derechos para Todos y Todas en la cual alegaron la violaci\u00f3n de varios derechos contenidos en la Convenci\u00f3n Americana sobre ", - "values": [ - "Comisi\u00f3n Interamericana de Derechos Humanos" - ] - }, - { - "text": "INFORME N\u00ba CASO HANIFF HILAIRE TRINIDAD Y TOBAGO de septiembre de I. ANTECEDENTES Por fax del de octubre de el estudio de abogados Simmons Simmons de Londres present\u00f3 una petici\u00f3n ante la Comisi\u00f3n Interamericana de Derechos Humanos en adelante la Comisi\u00f3n contra la Rep\u00fablica de Trinidad y Tobago en adelante el Estado o Trinidad en nombre del Sr. Haniff Hilaire actualmente condenado a muerte en la penitenciar\u00eda estatal de Puerto Espa\u00f1a. En la petici\u00f3n se afirma que la Alta Corte de en ", - "values": [ - "Comisi\u00f3n Interamericana de Derechos Humanos" - ] - }, - { - "text": "INFORME N\u00ba CASO JUAN FRANCISCO BUENO ALVES ARGENTINA de septiembre de I. RESUMEN Juan Francisco Bueno Alves en adelante el peticionario present\u00f3 una petici\u00f3n a la Comisi\u00f3n Interamericana de Derechos Humanos en adelante la Comisi\u00f3n el de agosto de contra la Rep\u00fablica Argentina en adelante Argentina o el Estado en la que denuncia la presunta violaci\u00f3n de los siguientes derechos consagrados en la Convenci\u00f3n Americana sobre Derechos Humanos en adelante la Convenci\u00f3n a la integridad personal ", - "values": [ - "Comisi\u00f3n Interamericana de Derechos Humanos" - ] - }, - { - "text": "Corte Interamericana de Derechos Humanos Caso Heliodoro Portugal vs. Panam\u00e1 Sentencia de de Agosto de Excepciones Preliminares Fondo Reparaciones y Costas En el Caso Heliodoro Portugal la Corte Interamericana de Derechos Humanos en adelante la Corte la Corte Interamericana o el Tribunal integrada por los siguientes jueces Diego Garc\u00eda Say\u00e1n Presidente Sergio Garc\u00eda Ram\u00edrez Juez Manuel E. Ventura Robles Juez Leonardo A. Franco Juez Margarette May Macaulay Jueza y Rhadys Abreu Blondet Jueza ", - "values": [ - "Corte Interamericana de Derechos Humanos" - ] - }, - { - "text": "Resoluci\u00f3n de la Corte Interamericana de Derechos Humanos de de febrero de Medidas Provisionales respecto de la Rep\u00fablica del Ecuador Asunto del Pueblo Ind\u00edgena Kichwa de Sarayaku Visto La Resoluci\u00f3n dictada por la Corte Interamericana de Derechos Humanos en adelante la Corte Interamericana la Corte o el Tribunal el de julio de mediante la cual resolvi\u00f3 inter alia requerir al Estado que adopte las medidas que sean necesarias para proteger la vida e integridad personal de los miembros del ", - "values": [ - "Corte Interamericana de Derechos Humanos" - ] - }, - { - "text": "CORTE INTERAMERICANA DE DIREITOS HUMANOS CASO FONTEVECCHIA E DAMICO VS. ARGENTINA SENTEN\u00c7A DE DE NOVEMBRO DE M\u00e9rito Repara\u00e7\u00f5es e Custas No caso Fontevecchia e DAmico A Corte Interamericana de Direitos Humanos doravante denominada Interamericana a Corte ou o Tribunal integrada pelos seguintes Ju\u00edzes a Corte Diego Garc\u00edaSay\u00e1n Presidente Manuel E. Ventura Robles Juiz Margarette May Macaulay Ju\u00edza Rhadys Abreu Blondet Ju\u00edza Alberto P\u00e9rez P\u00e9rez Juiz e Eduardo Vio Grossi Juiz presentes ademais ", - "values": [ - "Corte Interamericana de Derechos Humanos" - ] - }, - { - "text": "INFORME N\u00ba PETICI\u00d3N ADMISIBILIDAD JOS\u00c9 ADRI\u00c1N ROCHAC HERN\u00c1NDEZ EL SALVADOR de octubre de I. RESUMEN El de septiembre de la Comisi\u00f3n Interamericana de Derechos Humanos en adelante la Comisi\u00f3n Interamericana o la CIDH recibi\u00f3 una denuncia presentada por la Asociaci\u00f3n ProB\u00fasqueda de Ni\u00f1as y Ni\u00f1os Desaparecidos Asociaci\u00f3n ProB\u00fasqueda en adelante los peticionarios en la cual se alega la responsabilidad internacional de la Rep\u00fablica de El Salvador el Estado por la desaparici\u00f3n forzada del ni\u00f1o", - "values": [ - "Comisi\u00f3n Interamericana de Derechos Humanos" - ] - }, - { - "text": "RESOLUCI\u00d3N DE LA CORTE INTERAMERICANA DE DERECHOS HUMANOS DEL DE JULIO DE MEDIDAS PROVISIONALES SOLICITADAS POR LA COMISI\u00d3N INTERAMERICANA DE DERECHOS HUMANOS RESPECTO DEL PER\u00da CASO LOAYZA TAMAYO VISTO La demanda de de enero de mediante la cual la Comisi\u00f3n Interamericana de Derechos Humanos en adelante la Comisi\u00f3n o la Comisi\u00f3n Interamericana someti\u00f3 a la Corte Interamericana de Derechos Humanos en adelante la Corte o la Corte Interamericana el caso Loayza Tamayo contra el Gobierno de la ", - "values": [ - "Corte Interamericana de Derechos Humanos" - ] - }, - { - "text": "INFORME N\u00ba CASO HUGO JU\u00c1REZ CRUZAT Y OTROS CENTRO PENAL MIGUEL CASTRO CASTRO PER\u00da de marzo de I. RESUMEN El de mayo de la Comisi\u00f3n Interamericana de Derechos Humanos en adelante Comisi\u00f3n Interamericana Comisi\u00f3n o CIDH recibi\u00f3 una comunicaci\u00f3n presentada por la se\u00f1ora Sabina Astete contra la Rep\u00fablica del Per\u00fa en adelante Per\u00fa Estado peruano o Estado conforme a la cual se se\u00f1al\u00f3 que el de mayo de efectivos del Ej\u00e9rcito peruano se movilizaron por aire y tierra al pabell\u00f3n A del centro ", - "values": [ - "Comisi\u00f3n Interamericana de Derechos Humanos" - ] - }, - { - "text": "CORTE INTERAMERICANA DE DIREITOS HUMANOS CASO TRIST\u00c1N DONOSO VS. PANAM\u00c1 SENTEN\u00c7A DE DE JANEIRO DE EXCE\u00c7\u00c3O PRELIMINAR M\u00c9RITO REPARA\u00c7\u00d5ES E CUSTAS No caso Trist\u00e1n Donoso A Corte Interamericana de Direitos Humanos doravante denominada Interamericana a Corte ou o Tribunal integrada pelos seguintes ju\u00edzes a Corte Cecilia Medina Quiroga Presidenta Diego Garc\u00edaSay\u00e1n VicePresidente Sergio Garc\u00eda Ram\u00edrez Juiz Manuel E. Ventura Robles Juiz Leonardo A. Franco Juiz Margarette May Macaulay Ju\u00edza e Rhadys ", - "values": [ - "Corte Interamericana de Derechos Humanos" - ] - }, - { - "text": "RESOLUCI\u00d3N DE LA CORTE INTERAMERICANA DE DERECHOS HUMANOS DE DE AGOSTO DE CASO BREWER CARIAS VS. VENEZUELA VISTO La Resoluci\u00f3n del Presidente de la Corte Interamericana de Derechos Humanos en adelante la Corte Interamericana la Corte o el Tribunal de de julio de mediante la cual inter alia orden\u00f3 la recepci\u00f3n de declaraciones testimoniales y periciales mediante affid\u00e1vits y convoc\u00f3 a la Comisi\u00f3n Interamericana de Derechos Humanos en adelante tambi\u00e9n la Comisi\u00f3n Interamericana o la a los ", - "values": [ - "Corte Interamericana de Derechos Humanos" - ] - }, - { - "text": "RESOLUCI\u00d3N DEL PRESIDENTE DE LA CORTE INTERAMERICANA DE DERECHOS HUMANOS DE DE ENERO DE FONDO DE ASISTENCIA LEGAL DE V\u00cdCTIMAS CASO V\u00c9LIZ FRANCO VS. GUATEMALA VISTO El escrito de de mayo de y su anexo mediantes los cuales la Comisi\u00f3n Interamericana de Derechos Humanos en adelante la Comisi\u00f3n Interamericana o la Comisi\u00f3n someti\u00f3 a la Corte Interamericana de Derechos Humanos en adelante la Corte Interamericana la Corte o el Tribunal un caso en contra de la Rep\u00fablica de Guatemala en adelante ", - "values": [ - "Corte Interamericana de Derechos Humanos" - ] - }, - { - "text": "RESOLUCI\u00d3N DE LA CORTE INTERAMERICANA DE DERECHOS HUMANOS DE DE JUNIO DE SOLICITUD DE MEDIDAS PROVISIONALES RESPECTO DE LA REP\u00daBLICA DE ARGENTINA CASO TORRES MILLACURA Y OTROS VS. ARGENTINA VISTO El escrito de de febrero de mediante el cual la se\u00f1ora Mar\u00eda Leontina Millacura Llaip\u00e9n y el se\u00f1or Roberto Llaiquel informaron a la Corte Interamericana de Derechos Humanos en adelante la Corte o el Tribunal sobre nuevos hechos de permanente hostigamiento y tortura psicol\u00f3gica por parte del Estado", - "values": [ - "Corte Interamericana de Derechos Humanos" - ] - }, - { - "text": "RESOLUCI\u00d3N DE LA CORTE INTERAMERICANA DE DERECHOS HUMANOS DE DE OCTUBRE DE MEDIDAS PROVISIONALES RESPECTO DE GUATEMALA CASO CARPIO NICOLLE Y OTROS VISTO Las Resoluciones de la Corte Interamericana de Derechos Humanos en adelante la Corte la Corte Interamericana o el Tribunal de de junio de de septiembre de de septiembre de de junio y de noviembre de de septiembre de de septiembre de de julio de y de julio de En esta \u00faltima Resoluci\u00f3n de la Corte se resolvi\u00f3 inter alia al ", - "values": [ - "Corte Interamericana de Derechos Humanos" - ] - }, - { - "text": "RESOLUCI\u00d3N DEL PRESIDENTE DE LA CORTE INTERAMERICANA DE DERECHOS HUMANOS DE DE JULIO DE CASO ATALA RIFFO E HIJAS VS. CHILE VISTO El escrito de de septiembre de y sus anexos mediante los cuales la Comisi\u00f3n Interamericana de Derechos Humanos en adelante la Comisi\u00f3n Interamericana o la Comisi\u00f3n present\u00f3 a la Corte Interamericana de Derechos Humanos en adelante la Corte Interamericana la Corte o el Tribunal una demanda en contra de la Rep\u00fablica de Chile en adelante Chile o el Estado en el y ", - "values": [ - "Corte Interamericana de Derechos Humanos" - ] - }, - { - "text": "RESOLUCI\u00d3N DE LA CORTE INTERAMERICANA DE DERECHOS HUMANOS DE DE AGOSTO DE MEDIDAS PROVISIONALES RESPECTO DE VENEZUELA ASUNTO GUERRERO LAREZ VISTO La Resoluci\u00f3n emitida por la Corte Interamericana de Derechos Humanos en adelante la Corte Interamericana la Corte o el Tribunal el de noviembre de mediante la cual el Tribunal adopt\u00f3 medidas provisionales en el presente asunto debido a la apreciaci\u00f3n prima facie de una situaci\u00f3n de extrema gravedad y urgencia en cuanto a los derechos a la vida e", - "values": [ - "Corte Interamericana de Derechos Humanos" - ] - }, - { - "text": "RESOLUCI\u00d3N DE LA CORTE INTERAMERICANA DE DERECHOS HUMANOS DE DE DICIEMBRE DE CASO CHITAY NECH Y OTROS VS. GUATEMALA SUPERVISI\u00d3N DE CUMPLIMIENTO DE SENTENCIA VISTO La Sentencia de excepci\u00f3n preliminar fondo reparaciones y costas en adelante la Sentencia dictada por la Corte Interamericana de Derechos Humanos en adelante la Corte Interamericana la Corte o el Tribunal el de mayo de mediante la cual inter alia dispuso que el Estado debe conducir eficazmente con la debida diligencia y dentro ", - "values": [ - "Corte Interamericana de Derechos Humanos" - ] - }, - { - "text": "VOTO PARCIALMENTE DISIDENTE DEL JUEZ ALBERTO P\u00c9REZ P\u00c9REZ CORTE INTERAMERICANA DE DERECHOS HUMANOS CASO WONG HO WING VS. PER\u00da SENTENCIA DE DE JUNIO DE Excepci\u00f3n Preliminar Fondo Reparaciones y Costas He emitido un voto negativo sobre los siguientes puntos resolutivos de la sentencia en el caso Wong Ho Wing vs. Per\u00fa Punto declarativo El Estado es responsable de la violaci\u00f3n de la garant\u00eda del plazo razonable consagrada en el art\u00edculo de la Convenci\u00f3n Americana en relaci\u00f3n con el art\u00edculo de", - "values": [ - "Corte Interamericana de Derechos Humanos" - ] - }, - { - "text": "Resoluci\u00f3n de la Corte Interamericana de Derechos Humanos de de noviembre de Caso Aptiz Barbera Rocha Contreras y Ruggeri Cova Vs. Venezuela VISTOS El escrito de demanda presentado el de noviembre de por la Comisi\u00f3n Interamericana de Derechos Humanos en adelante la Comisi\u00f3n o la Comisi\u00f3n Interamericana ante la Corte Interamericana de Derechos Humanos en adelante la Corte la Corte Interamericana o el Tribunal en el cual ofreci\u00f3 testimonios y peritajes. El escrito de solicitudes y en ", - "values": [ - "Corte Interamericana de Derechos Humanos" - ] - }, - { - "text": "RESOLUCI\u00d3N DE LA CORTE INTERAMERICANA DE DERECHOS HUMANOS DE DE MAYO DE MEDIDAS PROVISIONALES RESPECTO DE REP\u00daBLICA DOMINICANA ASUNTO JUAN ALMONTE HERRERA Y OTROS VISTO El escrito de la Comisi\u00f3n Interamericana de Derechos Humanos en adelante la Comisi\u00f3n Interamericana o la Comisi\u00f3n de de marzo de y sus anexos mediante los cuales someti\u00f3 a la Corte Interamericana de Derechos Humanos en adelante la Corte Interamericana la Corte o el Tribunal una solicitud de medidas provisionales en los de ", - "values": [ - "Corte Interamericana de Derechos Humanos" - ] - }, - { - "text": "ORDER OF THE INTERAMERICAN COURT OF HUMAN RIGHTS OF SEPTEMBER PROVISIONAL MEASURES ADOPTED BY THE INTERAMERICAN COURT OF HUMAN RIGHTS IN THE MATTER OF THE REPUBLIC OF GUATEMALA CARPIO NICOLLE CASE HAVING SEEN The Order of the Court of November in which it was decided To declare that the State of Guatemala should take the necessary measures to resolve the actual and future situation of Karen Fischer de Carpio in compliance with its obligation to effectively ensure the protection of her ", - "values": [ - "Corte Interamericana de Derechos Humanos" - ] - }, - { - "text": "RESOLUCI\u00d3N DEL PRESIDENTE DE LA CORTE INTERAMERICANA DE DERECHOS HUMANOS DE FEBRERO DE SUPERVISI\u00d3N DE CUMPLIMIENTO DE LAS MEDIDAS DE REPARACI\u00d3N SOBRE ATENCI\u00d3N M\u00c9DICA Y PSICOL\u00d3GICA ORDENADAS EN NUEVE CASOS COLOMBIANOS CONVOCATORIA DE AUDIENCIA PRIVADA VISTO La resoluci\u00f3n de convocatoria de audiencia en el marco de la supervisi\u00f3n de cumplimiento emitida por la Corte Interamericana de Derechos Humanos en adelante la Corte la Corte Interamericana o el Tribunal el de abril de en relaci\u00f3n con ", - "values": [ - "Corte Interamericana de Derechos Humanos" - ] - }, - { - "text": "RESOLUCI\u00d3N DE LA CORTE INTERAMERICANA DE DERECHOS HUMANOS DE DE MAYO DE CASO SALVADOR CHIRIBOGA VS. ECUADOR SUPERVISI\u00d3N DE CUMPLIMIENTO DE SENTENCIA VISTO La Sentencia de excepci\u00f3n preliminar y fondo en adelante la Sentencia la de reparaciones y costas en adelante la Sentencia de reparaciones y la de interpretaci\u00f3n de esta \u00faltima dictadas por la Corte Interamericana de Derechos Humanos en adelante la Corte la Corte Interamericana o el Tribunal respectivamente los d\u00edas de mayo de de y ", - "values": [ - "Corte Interamericana de Derechos Humanos" - ] - }, - { - "text": "VOTO CONCURRENTE RAZONADO DEL JUEZ SERGIO GARCIA RAMIREZ A LA SENTENCIA DE LA CORTE INTERAMERICANA DE DERECHOS HUMANOS EN EL CASO HERERERA ULLOA VS. COSTA RICA DE DE JULIO DE Libertad de expresi\u00f3n. Medios de comunicaci\u00f3n social y ejercicio del periodismo No es esta la primera vez que la Corte Interamericana debe pronunciarse sobre hechos que afectan la libertad de expresi\u00f3n. De \u00e9stos se ha ocupado en otras oportunidades con diferente contexto en alguna hip\u00f3tesis dentro de una circunstancia ", - "values": [ - "Corte Interamericana de Derechos Humanos" - ] - }, - { - "text": "VOTO RAZONADO CONJUNTO DE LOS JUECES AA. CAN\u00c7ADO TRINDADE Y A. ABREU BURELLI Al votar en favor de la presente Sentencia de reparaciones dictada por la Corte Interamericana de Derechos Humanos en el caso Loayza Tamayo versus Per\u00fa nos vemos en la obligaci\u00f3n de dejar constancia de nuestras reflexiones al respecto dada nuestra convicci\u00f3n sobre la necesidad de un mayor desarrollo jurisprudencial en la materia de las reparaciones de violaciones de los derechos humanos. La doctrina contempor\u00e1nea ", - "values": [ - "Corte Interamericana de Derechos Humanos" - ] - }, - { - "text": "Resoluci\u00f3n de la Corte Interamericana de Derechos Humanos de de agosto de Caso Goibur\u00fa y otros Vs. Paraguay Supervisi\u00f3n de Cumplimiento de Sentencia VISTOS La Sentencia de fondo reparaciones y costas de de septiembre de en adelante la Sentencia dictada por la Corte Interamericana de Derechos Humanos en adelante la Corte Interamericana la Corte o el Tribunal notificada \u00edntegramente a la Rep\u00fablica del Paraguay en adelante el Estado o Paraguay el de octubre de mediante la cual dispuso por ", - "values": [ - "Corte Interamericana de Derechos Humanos" - ] - }, - { - "text": "Corte Interamericana de Derechos Humanos Caso Acevedo Jaramillo y otros Vs. Per\u00fa Sentencia de de febrero de Excepciones Preliminares Fondo Reparaciones y Costas En el caso Acevedo Jaramillo y otros vs. Per\u00fa la Corte Interamericana de Derechos Humanos en adelante la Corte Interamericana la Corte o el Tribunal integrada por los siguientes jueces Sergio Garc\u00eda Ram\u00edrez Presidente Alirio Abreu Burelli Vicepresidente Oliver Jackman Juez Ant\u00f4nio A. Can\u00e7ado Trindade Juez Cecilia Medina Quiroga Jueza ", - "values": [ - "Corte Interamericana de Derechos Humanos" - ] - }, - { - "text": "CORTE INTERAMERICANA DE DERECHOS HUMANOS CASO GUTI\u00c9RREZ Y FAMILIA VS. ARGENTINA SENTENCIA DE DE NOVIEMBRE DE Fondo Reparaciones y Costas En el Caso Guti\u00e9rrez y familia la Corte Interamericana de Derechos Humanos en adelante la Corte Interamericana la Corte o el Tribunal integrada por los siguientes jueces Diego Garc\u00edaSay\u00e1n Presidente Manuel E. Ventura Robles Vicepresidente Alberto P\u00e9rez P\u00e9rez Juez Eduardo Vio Grossi Juez Roberto F. Caldas Juez Humberto Antonio Sierra Porto Juez y Eduardo ", - "values": [ - "Corte Interamericana de Derechos Humanos" - ] - }, - { - "text": "VOTO RAZONADO DEL JUEZ SERGIO GARC\u00cdA RAM\u00cdREZ CON RESPECTO A LA SENTENCIA DE LA CORTE INTERAMERICANA DE DERECHOS HUMANOS EN EL CASO ALBAN CORNEJO Y OTROS ECUADOR EL DE NOVIEMBRE DE A Protecci\u00f3n de la salud y derecho a la vida a la integridad y a la justicia En el examen y la resoluci\u00f3n final del Caso Alb\u00e1n Cornejo y otros Ecuador en la sentencia del de noviembre de la Corte Interamericana avanza nuevamente en las reflexiones sobre la protecci\u00f3n de vida y la integridad que se proyectan en la", - "values": [ - "Corte Interamericana de Derechos Humanos" - ] - }, - { - "text": "Resoluci\u00f3n de la Presidenta de la Corte Interamericana de Derechos Humanos de mayo de Caso de las Ni\u00f1as Yean y Bosico Vs. Rep\u00fablica Dominicana Supervisi\u00f3n de Cumplimiento de Sentencia Visto La Sentencia de excepciones preliminares fondo reparaciones y costas en adelante la Sentencia emitida en el presente caso por la Corte Interamericana de Derechos Humanos en adelante la Corte la Corte Interamericana o el Tribunal el de septiembre de La Resoluci\u00f3n de Supervisi\u00f3n de Cumplimiento de por ", - "values": [ - "Corte Interamericana de Derechos Humanos" - ] - }, - { - "text": "RESOLUCI\u00d3N DE LA CORTE INTERAMERICANA DE DERECHOS HUMANOS DE DE NOVIEMBRE DE AMPLIACI\u00d3N DE MEDIDAS PROVISIONALES SOLICITADA POR LA COMISI\u00d3N INTERAMERICANA DE DERECHOS HUMANOS RESPECTO DE LA REP\u00daBLICA DE COLOMBIA CASO \u00c1LVAREZ Y OTROS VISTOS La Resoluci\u00f3n del Presidente de la Corte Interamericana de Derechos Humanos en adelante el Presidente de de julio de en cuya parte dispositiva decidi\u00f3 Requerir a la Rep\u00fablica de Colombia que adopte sin dilaci\u00f3n cuantas medidas sean necesarias para la ", - "values": [ - "Corte Interamericana de Derechos Humanos" - ] - }, - { - "text": "RESOLUCI\u00d3N DE LA CORTE INTERAMERICANA DE DERECHOS HUMANOS DE DE OCTUBRE DE SOLICITUD DE MEDIDAS PROVISIONALES RESPECTO DE HONDURAS COMUNIDAD GAR\u00cdFUNA DE BARRA VIEJA VISTO El escrito sin fecha recibido el de agosto de mediante el cual la Organizaci\u00f3n Fraternal Negra Hondure\u00f1a OFRANEH solicit\u00f3 a la Corte ordenar medidas cautelares a favor de la Comunidad Gar\u00edfuna de Barra Vieja en raz\u00f3n de que dicha Comunidad estar\u00eda a punto de ser desalojada por elementos asignados al Ministerio de de ", - "values": [ - "Corte Interamericana de Derechos Humanos" - ] - }, - { - "text": "RESOLUCI\u00d3N DE LA CORTE INTERAMERICANA DE DERECHOS HUMANOS DE DE ENERO DE AMPLIACI\u00d3N DE MEDIDAS PROVISIONALES SOLICITADA POR LA COMISI\u00d3N INTERAMERICANA DE DERECHOS HUMANOS RESPECTO DE LA REP\u00daBLICA DE COLOMBIA CASO \u00c1LVAREZ Y OTROS VISTOS La resoluci\u00f3n del Presidente de la Corte Interamericana de Derechos Humanos en adelante el Presidente de de julio de mediante la cual decidi\u00f3 Requerir a la Rep\u00fablica de Colombia que adopte sin dilaci\u00f3n cuantas medidas sean necesarias para proteger la vida e", - "values": [ - "Corte Interamericana de Derechos Humanos" - ] - }, - { - "text": "RESOLUCI\u00d3N DE LA CORTE INTERAMERICANA DE DERECHOS HUMANOS DE DE ABRIL DE CASO CASTILLO P\u00c1EZ VS. PER\u00da SUPERVISI\u00d3N DEL CUMPLIMIENTO DE SENTENCIA VISTOS La Sentencia de fondo dictada por la Corte Interamericana de Derechos Humanos en adelante la Corte la Corte Interamericana o el Tribunal el de noviembre de en el Caso Castillo P\u00e1ez Vs. Per\u00fa mediante la cual RESOLVI\u00d3 por unanimidad Que el Estado del Per\u00fa viol\u00f3 en perjuicio de Ernesto Rafael Castillo P\u00e1ez el derecho a la libertad personal en ", - "values": [ - "Corte Interamericana de Derechos Humanos" - ] - }, - { - "text": "RESOLUCI\u00d3N DE LA CORTE INTERMERICANA DE DERECHOS HUMANOS DE AGOSTO DE MEDIDAS PROVISIONALES RESPECTO DE HONDURAS CASO PACHECO TERUEL Y OTROS VISTO La Resoluci\u00f3n de la Corte Interamericana de Derechos Humanos en adelante la Corte Interamericana la Corte o el Tribunal emitida el de febrero de en la cual se orden\u00f3 otorgar medidas provisionales que sean necesarias y efectivas para evitar los da\u00f1os a la vida e integridad personal de Sandra Lorena Ramos y de sus tres hijas menores vigentes hasta", - "values": [ - "Corte Interamericana de Derechos Humanos" - ] - }, - { - "text": "RESOLUCI\u00d3N DE LA PRESIDENTA DE LA CORTE INTERAMERICANA DE DERECHOS HUMANOS DE DE DICIEMBRE DE CASO EL AMPARO VS. VENEZUELA SUPERVISI\u00d3N DE CUMPLIMIENTO DE SENTENCIAS VISTO La Sentencia de fondo dictada por la Corte Interamericana de Derechos Humanos en adelante la Corte la Corte Interamericana o el Tribunal el de enero de La Sentencia de reparaciones dictada por la Corte el de septiembre de mediante la cual Fij\u00f3 en US el total de las indemnizaciones debidas a los familiares de las y a ", - "values": [ - "Corte Interamericana de Derechos Humanos" - ] - }, - { - "text": "INFORME N\u00ba PETICI\u00d3N ADMISIBILIDAD Mercedes Chocr\u00f3n Chocr\u00f3n VENEZUELA de marzo de I. RESUMEN El de mayo de la Comisi\u00f3n recibi\u00f3 una petici\u00f3n promovida por la occisa se\u00f1ora Yadira At\u00eda L\u00f3pez quien posteriormente fuera sustituida por el se\u00f1or Rafael J. Chavero Gazdik en adelante el peticionario en la cual se denuncia a la Rep\u00fablica Bolivariana de Venezuela por violaciones al derecho al debido proceso art\u00edculo los derechos pol\u00edticos art\u00edculo c igualdad ante la ley art\u00edculo protecci\u00f3n y ", - "values": [ - "Comisi\u00f3n Interamericana de Derechos Humanos" - ] - }, - { - "text": "Resoluci\u00f3n de la Corte Interamericana de Derechos Humanos de febrero de Medidas Provisionales Respecto de Venezuela Asunto Eloisa Barrios y Otros Visto Las Resoluciones de la Corte Interamericana de Derechos Humanos en adelante la Corte Interamericana la Corte o el Tribunal emitidas el de noviembre de y de junio y de septiembre de Mediante la \u00faltima la Corte resolvi\u00f3 Reiterar las Resoluciones de la Corte Interamericana de Derechos Humanos de de noviembre de y de junio de a favor de", - "values": [ - "Corte Interamericana de Derechos Humanos" - ] - }, - { - "text": "RESOLUCI\u00d3N DE LA CORTE INTERAMERICANA DE DERECHOS HUMANOS DE DE SEPTIEMBRE DE MEDIDAS PROVISIONALES RESPECTO DE VENEZUELA ASUNTOS DE DETERMINADOS CENTROS PENITENCIARIOS DE VENEZUELA CENTRO PENITENCIARIO REGI\u00d3N CAPITAL YARE I Y YARE II VISTO La Resoluci\u00f3n de la Corte Interamericana de Derechos Humanos en adelante la Corte Interamericana la Corte o el Tribunal de de marzo de en el asunto del Centro Penitenciario Regi\u00f3n Capital Yare I y Yare II C\u00e1rcel del Yare mediante la cual resolvi\u00f3 inter ", - "values": [ - "Corte Interamericana de Derechos Humanos" - ] - }, - { - "text": "RESOLUCI\u00d3N DE LA CORTE INTERAMERICANA DE DERECHOS HUMANOS DE DE NOVIEMBRE DE MEDIDAS PROVISIONALES RESPECTO DE LA REP\u00daBLICA DE ARGENTINA ASUNTO MILLACURA LLAIP\u00c9N Y OTROS VISTO La Resoluci\u00f3n del Presidente de la Corte Interamericana de Derechos Humanos en adelante la Corte Interamericana la Corte o el Tribunal de de junio de as\u00ed como las Resoluciones del Tribunal de de julio de de febrero de y de noviembre de En esta \u00faltima la Corte resolvi\u00f3 inter alia Levantar las medidas a favor ", - "values": [ - "Corte Interamericana de Derechos Humanos" - ] - }, - { - "text": "RESOLUCI\u00d3N DE LA CORTE INTERAMERICANA DE DERECHOS HUMANOS DE DE MAYO DE CASO GONZ\u00c1LEZ Y OTRAS CAMPO ALGODONERO VS. M\u00c9XICO SUPERVISI\u00d3N DE CUMPLIMIENTO DE SENTENCIA VISTO La Sentencia de Excepci\u00f3n Preliminar Fondo Reparaciones y Costas dictada por la Corte Interamericana de Derechos Humanos en adelante la Corte la Corte Interamericana o el Tribunal el de noviembre de en la cual la Corte acept\u00f3 el reconocimiento parcial de responsabilidad internacional realizado por el Estado y declar\u00f3 entre", - "values": [ - "Corte Interamericana de Derechos Humanos" - ] - }, - { - "text": "RESOLUCI\u00d3N DE LA CORTE INTERAMERICANA DE DERECHOS HUMANOS DE DE JUNIO DE CASO DEL TRIBUNAL CONSTITUCIONAL CAMBA CAMPOS Y OTROS VS. ECUADOR SUPERVISI\u00d3N DE CUMPLIMIENTO DE SENTENCIA VISTO La Sentencia de excepciones preliminares fondo reparaciones y costas en adelante la Sentencia dictada por la Corte Interamericana de Derechos Humanos en adelante la Corte Interamericana la Corte o el Tribunal el de agosto de En ella la Corte tomando en cuenta el reconocimiento parcial de responsabilidad ", - "values": [ - "Corte Interamericana de Derechos Humanos" - ] - }, - { - "text": "RESOLUCI\u00d3N DEL PRESIDENTE DE LA CORTE INTERAMERICANA DE DERECHOS HUMANOS DE DE DICIEMBRE DE CASO M\u00c9MOLI VS. ARGENTINA VISTO El escrito de de diciembre de mediante el cual la Comisi\u00f3n Interamericana de Derechos Humanos en adelante la Comisi\u00f3n Interamericana o la Comisi\u00f3n someti\u00f3 ante la Corte Interamericana de Derechos Humanos en adelante la Corte Interamericana la Corte o el Tribunal un caso en contra de la Rep\u00fablica Argentina en adelante Argentina o el Estado ofreci\u00f3 un dictamen pericial ", - "values": [ - "Corte Interamericana de Derechos Humanos" - ] - }, - { - "text": "RESOLUCI\u00d3N DEL PRESIDENTE DE LA CORTE INTERAMERICANA DE DERECHOS HUMANOS DE DE SEPTIEMBRE DE FONDO DE ASISTENCIA LEGAL DE V\u00cdCTIMAS CASO SUAREZ PERALTA VS. ECUADOR VISTO El escrito de de enero de y sus anexos mediante los cuales la Comisi\u00f3n Interamericana de Derechos Humanos en adelante la Comisi\u00f3n Interamericana o la Comisi\u00f3n someti\u00f3 a la Corte Interamericana de Derechos Humanos en adelante la Corte Interamericana la Corte o el Tribunal un caso en contra de la Rep\u00fablica de Ecuador en o ", - "values": [ - "Corte Interamericana de Derechos Humanos" - ] - }, - { - "text": "VOTO CONJUNTO DISIDENTE DE LOS JUECES MANUEL E. VENTURA ROBLES Y EDUARDO FERRER MACGREGOR POISOT CASO BREWER CAR\u00cdAS VS. VENEZUELA SENTENCIA DE DE MAYO DE EXCEPCIONES PRELIMINARES Se emite el presente voto disidente en el caso Brewer Car\u00edas Vs. Venezuela de acuerdo con las razones que se expondr\u00e1n a continuaci\u00f3n y por las cuales se discrepa de los puntos resolutivos de la Sentencia adoptada por mayor\u00eda de cuatro votos en adelante la Sentencia o el criterio mayoritario mediante los cuales la ", - "values": [ - "Corte Interamericana de Derechos Humanos" - ] - }, - { - "text": "VOTO CONCORDANTE DO JUIZ DIEGO GARCIASAY\u00c1N SENTEN\u00c7A DA CORTE INTERAMERICANA DE DIREITOS HUMANOS CASO DOS MASSACRES DE EL MOZOTE E LUGARES VIZINHOS VS. EL SALVADOR DE DE OUTUBRO DE A Corte Interamericana de Direitos Humanos referiuse em v\u00e1rias de suas senten\u00e7as ao tema das anistias em sua rela\u00e7\u00e3o com a prote\u00e7\u00e3o dos direitos humanos e ao dever do Estado de investigar e se for o caso punir as graves viola\u00e7\u00f5es de direitos humanos. O tema das anistias foi durante muito tempo um assunto cr\u00edtico ", - "values": [ - "Corte Interamericana de Derechos Humanos" - ] - }, - { - "text": "VOTO DISIDENTE DEL JUEZ VIDAL RAM\u00cdREZ Disiento de la decisi\u00f3n adoptada en la Sentencia que resuelve desestimar las excepciones preliminares opuestas por el agente del Gobierno del Per\u00fa por los siguientes fundamentos El art\u00edculo de la Convenci\u00f3n Americana autoriza a los Estados Parte en los casos que precisa y en los que se incluyen los que constituyen peligro p\u00fablico o emergencias que amenacen la independencia o seguridad del Estado a adoptar medidas que en lo posible sean compatibles con ", - "values": [ - "Corte Interamericana de Derechos Humanos" - ] - }, - { - "text": "RESOLUCI\u00d3N DE LA CORTE INTERAMERICANA DE DERECHOS HUMANOS DE DE JUNIO DE MEDIDAS PROVISIONALES SOLICITADAS POR LA COMISI\u00d3N INTERAMERICANA DE DERECHOS HUMANOS RESPECTO DE LA REP\u00daBLICA DE GUATEMALA CASO BLAKE VISTOS La Resoluci\u00f3n del Presidente de la Corte Interamericana de Derechos Humanos de de agosto de mediante la cual adopt\u00f3 medidas urgentes en favor de Justo Victoriano Mart\u00ednez Morales Floridalma Rosalina L\u00f3pez Molina V\u00edctor Hansel Morales L\u00f3pez Edgar Ibal Mart\u00ednez L\u00f3pez y Sylvia ", - "values": [ - "Corte Interamericana de Derechos Humanos" - ] - }, - { - "text": " VOTO RAZONADO Y PARCIALMENTE DISIDENTE DEL JUEZ ARTURO MART\u00cdNEZ G\u00c1LVEZ En mi calidad de Juez ad hoc en el presente caso Maritza Urrutia cuya demanda present\u00f3 la Comisi\u00f3n Interamericana de Derechos Humanos contra el Estado de Guatemala me pronuncio sobre lo siguiente I. La Corte en la sentencia en el cap\u00edtulo correspondiente a la valoraci\u00f3n de la prueba se apoya en los informes de la Comisi\u00f3n de Esclarecimiento Hist\u00f3rico y del Proyecto Interdiocesano de Recuperaci\u00f3n de la Memoria Hist\u00f3rica sin", - "values": [ - "Corte Interamericana de Derechos Humanos" - ] - }, - { - "text": "VOTO RAZONADO CONCURRENTE DEL JUEZ ADHOC \u00c1LVARO CASTELLANOS HOWELL Concurro plenamente con la sentencia proferida por la Corte Interamericana de Derechos Humanos en el caso Tiu Tojin vs. Guatemala. Atendiendo a que esta Corte conforme sus atribuciones y competencias jurisdiccionales tiene como fin supremo el resguardar y tutelar internacional y eficazmente los derechos humanos luego de la deliberaci\u00f3n respectiva he votado a favor de la adopci\u00f3n de dicha sentencia sin reserva alguna en mi Los ", - "values": [ - "Corte Interamericana de Derechos Humanos" - ] - }, - { - "text": "VOTO CONCURRENTE DEL JUEZ EDUARDO FERRER MACGREGOR POISOT A LA SENTENCIA DE LA CORTE INTERAMERICANA DE DERECHOS HUMANOS EN EL CASO SU\u00c1REZ PERALTA VS. ECUADOR DE DE MAYO DE I. PREMISA INICIAL LA POSIBILIDAD DE HABER ABORDADO EL DERECHO A LA SALUD DE MANERA DIRECTA Y AUT\u00d3NOMA ART\u00cdCULOS Y DE LA CONVENCI\u00d3N AMERICANA En el presente caso la Corte Interamericana de Derechos Humanos en adelante Corte IDH o Tribunal Interamericano declar\u00f3 responsable internacionalmente al Estado demandado por la ", - "values": [ - "Corte Interamericana de Derechos Humanos" - ] - }, - { - "text": "CORTE INTERAMERICANA DE DERECHOS HUMANOS CASO MASACRES DE R\u00cdO NEGRO VS. GUATEMALA SENTENCIA DE DE SEPTIEMBRE DE Excepci\u00f3n Preliminar Fondo Reparaciones y Costas En el Caso Masacres de R\u00edo Negro la Corte Interamericana de Derechos Humanos en adelante la Corte Interamericana la Corte o el Tribunal integrada por los siguientes Jueces y Juezas Diego Garc\u00edaSay\u00e1n Presidente Manuel E. Ventura Robles Vicepresidente Leonardo A. Franco Juez Margarette May Macaulay Jueza Rhadys Abreu Blondet Jueza y", - "values": [ - "Corte Interamericana de Derechos Humanos" - ] - }, - { - "text": "VOTO PARCIALMENTE DISIDENTE DEL JUEZ JACKMAN No puedo unirme con la mayor\u00eda de la Corte en su decisi\u00f3n de admitir la segunda excepci\u00f3n preliminar interpuesta por el Estado en el presente caso. Por medio de la moci\u00f3n en cuesti\u00f3n el Estado ha pedido a la Corte que sostenga que la Comisi\u00f3n Interamericana de Derechos Humanos carece de competencia para aplicar el derecho internacional humanitario y otros tratados internacionales As\u00ed lo ha sostenido la Corte. Es la sumisi\u00f3n respetuosa m\u00eda que la ", - "values": [ - "Corte Interamericana de Derechos Humanos" - ] - }, - { - "text": "Resoluci\u00f3n de la Corte Interamericana de Derechos Humanos de de noviembre de Caso Montero Aranguren y otros Ret\u00e9n de Catia Vs. Venezuela Supervisi\u00f3n de Cumplimiento de Sentencia Visto La Sentencia de excepci\u00f3n preliminar fondo reparaciones y costas en adelante la Sentencia emitida en el presente caso por la Corte Interamericana de Derechos Humanos en adelante la Corte la Corte Interamericana o el Tribunal el de julio de mediante la cual dispuso que el Estado de Venezuela en adelante el ", - "values": [ - "Corte Interamericana de Derechos Humanos" - ] - }, - { - "text": "RESOLUCI\u00d3N DE LA CORTE INTERAMERICANA DE DERECHOS HUMANOS DE DE AGOSTO DE MEDIDAS PROVISIONALES ORDENADAS POR LA CORTE EN EL CASO CESTI HURTADO VISTOS La resoluci\u00f3n de la Corte Interamericana de Derechos Humanos en adelante la Corte de de septiembre de mediante la cual requiri\u00f3 al Estado del Per\u00fa en adelante el Estado o el Per\u00fa la adopci\u00f3n de medidas provisionales a favor del se\u00f1or Gustavo Adolfo Cesti Hurtado para asegurar su integridad f\u00edsica ps\u00edquica y moral en el marco del caso Cesti ", - "values": [ - "Corte Interamericana de Derechos Humanos" - ] - }, - { - "text": "Resoluci\u00f3n de la Corte Interamericana de Derechos Humanos de de septiembre de Medidas Provisionales respecto de Honduras Asunto Gladys Lanza Ochoa VISTO El escrito de la Comisi\u00f3n Interamericana de Derechos Humanos en adelante la Comisi\u00f3n Interamericana o la Comisi\u00f3n de de agosto de y sus anexos mediante los cuales someti\u00f3 a la Corte Interamericana de Derechos Humanos en adelante la Corte Interamericana la Corte o el Tribunal una solicitud de medidas provisionales en los t\u00e9rminos de los ", - "values": [ - "Corte Interamericana de Derechos Humanos" - ] - }, - { - "text": "RESOLUCI\u00d3N DE LA CORTE INTERAMERICANA DE DERECHOS HUMANOS DE DE NOVIEMBRE DE MEDIDAS PROVISIONALES ORDENADAS POR LA CORTE EN EL CASO CESTI HURTADO VISTOS La resoluci\u00f3n de la Corte Interamericana de Derechos Humanos en adelante la Corte de de septiembre de mediante la cual requiri\u00f3 al Estado del Per\u00fa en adelante el Estado la adopci\u00f3n de medidas provisionales en favor del se\u00f1or Gustavo Adolfo Cesti Hurtado para asegurar su integridad f\u00edsica ps\u00edquica y moral en el marco del caso Cesti Hurtado", - "values": [ - "Corte Interamericana de Derechos Humanos" - ] - }, - { - "text": "RESOLUCI\u00d3N DE LA CORTE INTERAMERICANA DE DERECHOS HUMANOS DE DE MARZO DE MEDIDAS PROVISIONALES RESPECTO DE LA REP\u00daBLICA DE GUATEMALA CASO B\u00c1MACA VEL\u00c1SQUEZ VISTOS La Resoluci\u00f3n de la Corte Interamericana de Derechos Humanos en adelante la Corte la Corte Interamericana o el Tribunal de de agosto de mediante la cual decidi\u00f3 Ratificar la Resoluci\u00f3n del Presidente de la Corte Interamericana de Derechos Humanos de de junio de y por consiguiente requerir al Estado de Guatemala que mantenga las", - "values": [ - "Corte Interamericana de Derechos Humanos" - ] - }, - { - "text": "Corte Interamericana de Derechos Humanos Caso Valle Jaramillo y otros Vs. Colombia Sentencia de de noviembre de Fondo Reparaciones y Costas En el Caso Valle Jaramillo y otros La Corte Interamericana de Derechos Humanos en adelante la Corte la Corte Interamericana o el Tribunal integrada por los siguientes jueces Cecilia Medina Quiroga Presidenta Diego Garc\u00eda Say\u00e1n Vicepresidente Sergio Garc\u00eda Ram\u00edrez Juez Manuel E. Ventura Robles Juez Leonardo A. Franco Juez Margarette May Macaulay Jueza y ", - "values": [ - "Corte Interamericana de Derechos Humanos" - ] - }, - { - "text": "RESOLUCI\u00d3N DE LA CORTE INTERAMERICANA DE DERECHOS HUMANOS DE DE JUNIO DE CASO GUTI\u00c9RREZ SOLER VS. COLOMBIA SUPERVISI\u00d3N DE CUMPLIMIENTO DE SENTENCIA VISTOS La Sentencia de fondo reparaciones y costas en adelante la Sentencia emitida por la Corte Interamericana de Derechos Humanos en adelante la Corte la Corte Interamericana o el Tribunal el de septiembre de mediante la cual dispuso que El Estado debe cumplir las medidas dispuestas relativas a su obligaci\u00f3n de investigar los hechos as\u00ed ", - "values": [ - "Corte Interamericana de Derechos Humanos" - ] - }, - { - "text": "Order of the InterAmerican Court of Human Rights of February Case of the Yakye Axa Indigenous Community v. Paraguay Monitoring Compliance with Judgment HAVING SEEN The judgment on merits reparations and costs hereinafter the Judgment delivered by the InterAmerican Court of Human Rights hereinafter the Court or the InterAmerican Court on June in which it decided that The State must identify the traditional territory of the members of the Yakye Axa Indigenous Community and grant it to them ", - "values": [ - "Corte Interamericana de Derechos Humanos" - ] - }, - { - "text": "RESOLUCI\u00d3N DEL PRESIDENTE DE LA CORTE INTERAMERICANA DE DERECHOS HUMANOS DE DE DICIEMBRE DE SOLICITUD DE MEDIDAS PROVISIONALES PRESENTADA POR LA COMISI\u00d3N INTERAMERICANA DE DERECHOS HUMANOS RESPECTO DE LA REP\u00daBLICA DE HONDURAS ASUNTO JOS\u00c9 LUIS GALD\u00c1MEZ \u00c1LVAREZ Y OTROS VISTO El escrito de la Comisi\u00f3n Interamericana de Derechos Humanos en adelante la Comisi\u00f3n Interamericana o la Comisi\u00f3n de de diciembre de y sus anexos mediante los cuales someti\u00f3 a la Corte Interamericana de Derechos Humanos ", - "values": [ - "Corte Interamericana de Derechos Humanos" - ] - }, - { - "text": "RESOLUCI\u00d3N DE LA CORTE INTERAMERICANA DE DERECHOS HUMANOS DE DE NOVIEMBRE DE MEDIDAS PROVISIONALES ADOPTADAS POR LA CORTE INTERAMERICANA DE DERECHOS HUMANOS RESPECTO DE LA REP\u00daBLICA DE GUATEMALA CASO CARPIO NICOLLE VISTOS La resoluci\u00f3n de la Corte Interamericana de Derechos Humanos en adelante la Corte de de septiembre de mediante la cual resolvi\u00f3 Requerir al Estado que incluya en su pr\u00f3ximo informe documentaci\u00f3n id\u00f3nea sobre la situaci\u00f3n de la causa No. y de los avances concretos en las", - "values": [ - "Corte Interamericana de Derechos Humanos" - ] - }, - { - "text": "RESOLUCI\u00d3N DE LA CORTE INTERAMERICANA DE DERECHOS HUMANOS DE DE ENERO DE REINTEGRO AL FONDO DE ASISTENCIA LEGAL DE V\u00cdCTIMAS CASOS TORRES MILLACURA Y OTROS FORNER\u00d3N E HIJA FURLAN Y FAMILIARES MOHAMED Y MENDOZA Y OTROS VS. ARGENTINA VISTO Las Sentencias dictadas por la Corte Interamericana de Derecho Humanos en adelante la Corte la Corte Interamericana o el Tribunal entre agosto de y mayo de en cinco casos contra la Rep\u00fablica de Argentina en adelante el Estado o Argentina En dichas la ", - "values": [ - "Corte Interamericana de Derechos Humanos" - ] - }, - { - "text": "INFORME N\u00ba PETICI\u00d3N ADMISIBILIDAD VALENTINA ROSENDO CANT\u00da Y OTROS M\u00c9XICO de octubre de I. RESUMEN El de noviembre de la Comisi\u00f3n Interamericana de Derechos Humanos la Comisi\u00f3n Interamericana o la CIDH recibi\u00f3 una denuncia en la que se alega la responsabilidad internacional de los Estados Unidos Mexicanos el Estado el estado mexicano por la detenci\u00f3n ilegal violaci\u00f3n y tortura de Valentina Rosendo Cant\u00fa ind\u00edgena del pueblo Tlapaneca Mepaa presunta v\u00edctima as\u00ed como la posterior falta de ", - "values": [ - "Comisi\u00f3n Interamericana de Derechos Humanos" - ] - }, - { - "text": "RESOLUCI\u00d3N DE LA CORTE INTERAMERICANA DE DERECHOS HUMANOS DE DE AGOSTO DE MEDIDAS PROVISIONALES SOLICITADAS POR LA COMISI\u00d3N INTERAMERICANA DE DERECHOS HUMANOS RESPECTO DE LA REP\u00daBLICA DE GUATEMALA HELEN MACK CHANG Y OTROS VISTOS La comunicaci\u00f3n de de agosto de y sus anexos mediante la cual la Comisi\u00f3n Interamericana de Derechos Humanos en adelante la Comisi\u00f3n Interamericana o la Comisi\u00f3n someti\u00f3 a la Corte Interamericana de Derechos Humanos en adelante la Corte Interamericana la Corte o el", - "values": [ - "Corte Interamericana de Derechos Humanos" - ] - }, - { - "text": "VOTO CONCURRENTE DEL JUEZ AD HOC FERNANDO VIDAL RAM\u00cdREZ La veracidad de los hechos ha sido reconocida por el Estado Peruano y ese reconocimiento importa tambi\u00e9n el de su responsabilidad ante el concierto de Estados que son parte del Sistema Interamericano de Protecci\u00f3n de los Derechos Humanos. Como bien lo ha dejado expresado la Sentencia el allanamiento del Estado constituye una contribuci\u00f3n positiva a los principios que inspiran a la Convenci\u00f3n Americana sin embargo la Sentencia ha ponderado ", - "values": [ - "Corte Interamericana de Derechos Humanos" - ] - }, - { - "text": "VOTO RAZONADO DEL JUEZ SERGIO GARC\u00cdA RAM\u00cdREZ CON RESPECTO A LA SENTENCIA DE LA CORTE INTERAMERICANA DE DERECHOS HUMANOS EN EL CASO KAWAS FERN\u00c1NDEZ VS. HONDURAS DEL DE ABRIL DE En la sentencia correspondiente al Caso Kawas Fern\u00e1ndez vs. Honduras emitida por la Corte Interamericana de Derechos Humanos el de abril de el tribunal afirma que hubo violaci\u00f3n del art\u00edculo Derecho a la vida en relaci\u00f3n con el art\u00edculo de la Convenci\u00f3n Americana de Derechos Humanos. Coincido con este adoptado por", - "values": [ - "Corte Interamericana de Derechos Humanos" - ] - }, - { - "text": "VOTO CONCORRENTE DO JUIZ DIEGO GARCIASAYAN EM RELA\u00c7\u00c3O \u00c0 SENTEN\u00c7A DA CORTE INTERAMERICANA DE DIREITOS HUMANOS NO CASO GONZ\u00c1LES E OUTRAS CAMPO ALGODOEIRO VS. M\u00c9XICO DE DE NOVEMBRO DE A viol\u00eancia contra a mulher \u00e9 um drama com v\u00e1rias dimens\u00f5es e express\u00f5es. \u00c9 sem d\u00favida uma das manifesta\u00e7\u00f5es persistentes de discrimina\u00e7\u00e3o mais generalizadas no mundo que se reflete em um leque que vai de express\u00f5es sutis e veladas at\u00e9 situa\u00e7\u00f5es cru\u00e9is e violentas. Dentro desta \u00faltima categoria se encontra a a ", - "values": [ - "Corte Interamericana de Derechos Humanos" - ] - }, - { - "text": "CORTE INTERAMERICANA DE DERECHOS HUMANOS CASO UZC\u00c1TEGUI Y OTROS VS. VENEZUELA SENTENCIA DE DE SEPTIEMBRE DE Fondo y Reparaciones En el caso Uzc\u00e1tegui y otros la Corte Interamericana de Derechos Humanos en adelante la Corte Interamericana o la Corte integrada por los siguientes Jueces Diego Garc\u00edaSay\u00e1n Presidente Manuel E. Ventura Robles Vicepresidente Leonardo A. Franco Juez Rhadys Abreu Blondet Jueza Alberto P\u00e9rez P\u00e9rez Juez Eduardo Vio Grossi Juez y presentes adem\u00e1s Pablo Saavedra y ", - "values": [ - "Corte Interamericana de Derechos Humanos" - ] - }, - { - "text": "RESOLUCI\u00d3N DE LA CORTE INTERAMERICANA DE DERECHOS HUMANOS DE DE AGOSTO DE MEDIDAS PROVISIONALES CASO DIGNA OCHOA Y PL\u00c1CIDO Y OTROS VISTOS La Resoluci\u00f3n de la Corte Interamericana de Derechos Humanos en adelante la Corte dictada el de noviembre de mediante la cual resolvi\u00f3 Requerir al Estado que adopte sin dilaci\u00f3n cuantas medidas sean necesarias para proteger la vida e integridad de los se\u00f1ores Digna Ochoa y Pl\u00e1cido Edgar Cort\u00e9z Morales Mario Patr\u00f3n S\u00e1nchez y Jorge Fern\u00e1ndez Mendiburu ", - "values": [ - "Corte Interamericana de Derechos Humanos" - ] - }, - { - "text": "RESOLUCI\u00d3N DE LA CORTE INTERAMERICANA DE DERECHOS HUMANOS DE DE ENERO DE CASOS VEL\u00c1SQUEZ RODR\u00cdGUEZ FAIR\u00c9N GARBI Y SOL\u00cdS CORRALES Y GOD\u00cdNEZ CRUZ VISTO El escrito de la Comisi\u00f3n Interamericana de Derechos Humanos de fecha de enero en el que solicita que la Corte adopte medidas espec\u00edficas complementarias a las decididas por la Corte en la Resoluci\u00f3n de fecha de enero de Lo expuesto por las partes en la audiencia celebrada en la fecha en cumplimiento de lo ordenado por la Corte en de de ", - "values": [ - "Corte Interamericana de Derechos Humanos" - ] - }, - { - "text": "RESOLUCI\u00d3N DE LA CORTE INTERAMERICANA DE DERECHOS HUMANOS DE DE MAYO DE SOLICITUD DE MEDIDAS PROVISIONALES RESPECTO DE LA REP\u00daBLICA DEL PER\u00da CASO GALINDO C\u00c1RDENAS Y OTROS VISTOS El escrito de de abril de mediante el cual el representante del se\u00f1or Luis Antonio Galindo C\u00e1rdenas en adelante tambi\u00e9n el representante present\u00f3 su escrito de solicitudes argumentos y pruebas en adelante el escrito de solicitudes y argumentos en el cual solicit\u00f3 a la Corte Interamericana de Derechos Humanos en ", - "values": [ - "Corte Interamericana de Derechos Humanos" - ] - }, - { - "text": "VOTO DISIDENTE CONJUNTO DE LOS JUECES AA. CAN\u00c7ADO TRINDADE y ME. VENTURA ROBLES Hemos concurrido con nuestros votos a la adopci\u00f3n de la presente Sentencia de la Corte Interamericana de Derechos Humanos en el caso de la Comunidad ind\u00edgena Yakye Axa versus Paraguay con gran parte de la cual hemos estado b\u00e1sicamente de acuerdo con excepci\u00f3n del punto resolutivo n. y p\u00e1rrafos considerativos correspondientes de los que disentimos firmemente con base en los fundamentos que expondremos a en el ", - "values": [ - "Corte Interamericana de Derechos Humanos" - ] - }, - { - "text": "Resoluci\u00f3n de la Corte Interamericana de Derechos Humanos de de agosto de Caso Ivcher Bronstein Vs. Per\u00fa Supervisi\u00f3n de Cumplimiento de Sentencias Visto La Sentencia de fondo reparaciones y costas en adelante la Sentencia emitida en el presente caso por la Corte Interamericana de Derechos Humanos en adelante la Corte la Corte Interamericana o el Tribunal el de febrero de La Sentencia de Interpretaci\u00f3n de la Sentencia de Fondo de de febrero de supra Visto emitida por la Corte el de de", - "values": [ - "Corte Interamericana de Derechos Humanos" - ] - }, - { - "text": "RESOLUCI\u00d3N DE LA CORTE INTERAMERICANA DE DERECHOS HUMANOS DE DE NOVIEMBRE DE CASO CASTILLO P\u00c1EZ VS. PER\u00da CUMPLIMIENTO DE SENTENCIA VISTOS La Sentencia de fondo dictada en el Caso Castillo P\u00e1ez vs. Per\u00fa por la Corte Interamericana de Derechos Humanos en adelante la Corte la Corte Interamericana o el Tribunal de de noviembre de en la que dispuso Que el Estado del Per\u00fa viol\u00f3 en perjuicio de Ernesto Rafael Castillo P\u00e1ez el derecho a la libertad personal reconocido en el art\u00edculo de la ", - "values": [ - "Corte Interamericana de Derechos Humanos" - ] - }, - { - "text": "RESOLUCI\u00d3N DE LA CORTE INTERAMERICANA DE DERECHOS HUMANOS DE DE NOVIEMBRE DE CASO GARRIDO Y BAIGORRIA vs. ARGENTINA CUMPLIMIENTO DE SENTENCIA VISTOS La Sentencia de fondo dictada por la Corte Interamericana de Derechos Humanos en adelante la Corte la Corte Interamericana o el Tribunal el de febrero de mediante la cual inter alia Tom\u00f3 nota del reconocimiento efectuado por la Argentina acerca de los hechos articulados en la demanda. Tom\u00f3 nota igualmente de su reconocimiento de por dichos", - "values": [ - "Corte Interamericana de Derechos Humanos" - ] - }, - { - "text": "RESOLUCI\u00d3N DE LA CORTE INTERAMERICANA DE DERECHOS HUMANOS DE DE NOVIEMBRE DE CASO BOYCE Y OTROS VS. BARBADOS Y CASO DACOSTA CADOGAN VS. BARBADOS SUPERVISI\u00d3N DE CUMPLIMIENTO DE SENTENCIA VISTO La Sentencia de excepciones preliminares fondo reparaciones y costas dictada en el Caso Boyce y otros vs. Barbados por la Corte Interamericana de Derechos Humanos en adelante la Corte la Corte Interamericana o el Tribunal el de noviembre de en adelante la Sentencia Boyce o Boyce en la cual se decidi\u00f3 ", - "values": [ - "Corte Interamericana de Derechos Humanos" - ] - }, - { - "text": "VOTO DISIDENTE DEL JUEZ MAXIMO PACHECO GOMEZ Disiento de la opini\u00f3n de la mayor\u00eda en relaci\u00f3n con el Punto Resolutivo N\u00famero de la sentencia en el cual se decide que la Rep\u00fablica de Colombia no ha violado el Derecho a la integridad personal de Isidro Caballero Delgado y Mar\u00eda del Carmen Santana por las siguiente razones que El art\u00edculo de la Convenci\u00f3n Americana sobre Derechos Humanos establece Toda persona tiene derecho a que se respete su integridad f\u00edsica ps\u00edquica y moral. Nadie debe ", - "values": [ - "Corte Interamericana de Derechos Humanos" - ] - }, - { - "text": "RESOLUCI\u00d3N DE LA CORTE INTERAMERICANA DE DERECHOS HUMANOS DE DE NOVIEMBRE DE CASO JUAN HUMBERTO S\u00c1NCHEZ vs. HONDURAS CUMPLIMIENTO DE SENTENCIA VISTOS La Sentencia de excepciones preliminares fondo y reparaciones emitida el de junio de por la Corte Interamericana de Derechos Humanos en adelante la Corte la Corte Interamericana o el Tribunal mediante la cual decidi\u00f3 desestimar la excepci\u00f3n preliminar interpuesta por el Estado. Y DECLAR\u00d3 QUE el Estado viol\u00f3 el derecho a la libertad personal", - "values": [ - "Corte Interamericana de Derechos Humanos" - ] - }, - { - "text": "CORTE INTERAMERICANA DE DERECHOS HUMANOS CASO REVER\u00d3N TRUJILLO VS. VENEZUELA SENTENCIA DE DE JUNIO DE Excepci\u00f3n Preliminar Fondo Reparaciones y Costas En el caso Rever\u00f3n Trujillo la Corte Interamericana de Derechos Humanos en adelante la Corte Interamericana la Corte o el Tribunal integrada por los siguientes jueces Cecilia Medina Quiroga Presidenta Sergio Garc\u00eda Ram\u00edrez Juez Manuel E. Ventura Robles Juez Leonardo A. Franco Juez Margarette May Macaulay Jueza Rhadys Abreu Blondet Jueza y Einer", - "values": [ - "Corte Interamericana de Derechos Humanos" - ] - }, - { - "text": "VOTO RAZONADO JUEZ MANUEL E. VENTURA ROBLES Pese a haber concurrido con mi voto a la aprobaci\u00f3n de todos los puntos resolutivos de la presente sentencia la alegaci\u00f3n hecha por los representantes de la v\u00edctima en su escrito de solicitudes argumentos y pruebas de que la Corte Interamericana de Derechos Humanos en adelante la Corte la Corte Interamericana o el Tribunal declarase en el presente caso la violaci\u00f3n por la Rep\u00fablica del Ecuador del Derecho a la Integridad Personal reconocido por el ", - "values": [ - "Corte Interamericana de Derechos Humanos" - ] - }, - { - "text": "RESOLUCI\u00d3N DEL PRESIDENTE DE LA CORTE INTERAMERICANA DE DERECHOS HUMANOS DE DE SEPTIEMBRE DE CASO FORNER\u00d3N E HIJA VS. ARGENTINA VISTO El escrito de sometimiento del caso presentado por la Comisi\u00f3n Interamericana de Derechos Humanos en adelante tambi\u00e9n la Comisi\u00f3n Interamericana o la Comisi\u00f3n ante la Corte Interamericana de Derechos Humanos en adelante la Corte Interamericana la Corte o el Tribunal el de noviembre de mediante el cual ofreci\u00f3 dos dict\u00e1menes periciales sobre los que indic\u00f3 su", - "values": [ - "Corte Interamericana de Derechos Humanos" - ] - }, - { - "text": "VOTO RAZONADO DEL JUEZ AA. CAN\u00c7ADO TRINDADE Quiso el destino que a\u00fan durante mi per\u00edodo de servicios prestados como Juez Titular de la Corte Interamericana de Derechos Humanos el drama de los ni\u00f1os en la calle volviera al conocimiento de este Tribunal. Siete a\u00f1os despu\u00e9s de la primera Sentencia de la Corte en el hist\u00f3rico leading case de los Ni\u00f1os de la Calle Villagr\u00e1n Morales y Otros versus Guatemala fondo y reparaciones y tres a\u00f1os despu\u00e9s de la Sentencia de la Corte en el dram\u00e1tico caso ", - "values": [ - "Corte Interamericana de Derechos Humanos" - ] - }, - { - "text": "VOTO CONCURRENTE RAZONADO DEL JUEZ SERGIO GARC\u00cdA RAM\u00cdREZ A LA SENTENCIA DEL CASO MARITZA URRUTIA DEL DE NOVIEMBRE DE En la Sentencia de fondo y reparaciones del presente caso la Corte Interamericana de Derechos Humanos ha examinado algunas cuestiones relevantes que igualmente consider\u00f3 en la Sentencia del Caso Mack Chang emitida el de noviembre de Esto sucede particularmente en el reconocimiento de la responsabilidad internacional o institucional del Estado con respecto a ciertos hechos o ", - "values": [ - "Corte Interamericana de Derechos Humanos" - ] - }, - { - "text": "VOTO RAZONADO DEL JUEZ SERGIO GARCIA RAMIREZ EN LA SENTENCIA SOBRE EL CASO FERMIN RAMIREZ VS. GUATEMALA DEL DE JUNIO DE A El debido proceso y la funci\u00f3n penal En esta primera parte de mi Voto razonado formular\u00e9 algunas consideraciones sobre la posici\u00f3n de la Corte Interamericana acerca del debido proceso en general una noci\u00f3n que ha orientado las decisiones del Tribunal en los casos contenciosos que ata\u00f1en a los temas del enjuiciamiento. En p\u00e1rrafos separados infra me referir\u00e9 a las que la ", - "values": [ - "Corte Interamericana de Derechos Humanos" - ] - }, - { - "text": "INFORME N PETICI\u00d3N ADMISIBILIDAD BLANCA JEANETTE KAWAS HONDURAS de octubre de I. RESUMEN En fecha de enero de la Comisi\u00f3n Interamericana de Derechos Humanos en adelante la Comisi\u00f3n la Comisi\u00f3n Interamericana o la CIDH recibi\u00f3 una petici\u00f3n presentada por el Centro por la Justicia y el Derecho Internacional y el Equipo de Reflexi\u00f3n Investigaci\u00f3n y Comunicaci\u00f3n en adelante los peticionarios. En esta petici\u00f3n se alega la responsabilidad de la Rep\u00fablica de Honduras en adelante Honduras el o", - "values": [ - "Comisi\u00f3n Interamericana de Derechos Humanos" - ] - }, - { - "text": "Corte Interamericana de Derechos Humanos Caso Trujillo Oroza Vs. Bolivia Sentencia de de enero de Fondo En el caso Trujillo Oroza la Corte Interamericana de Derechos Humanos en adelante Interamericana o la Corte integrada por los siguientes Jueces la Corte Ant\u00f4nio A. Can\u00e7ado Trindade Presidente M\u00e1ximo Pacheco G\u00f3mez Vicepresidente Hern\u00e1n Salgado Pesantes Juez Oliver Jackman Juez Alirio Abreu Burelli Juez Sergio Garc\u00eda Ram\u00edrez Juez Carlos Vicente de Roux Rengifo Juez y Charles N. Brower Juez ad", - "values": [ - "Corte Interamericana de Derechos Humanos" - ] - }, - { - "text": "RESOLUCI\u00d3N DE LA PRESIDENTA DE LA CORTE INTERAMERICANA DE DERECHOS HUMANOS DE DE OCTUBRE DE MEDIDAS PROVISIONALES RESPECTO DE LA REP\u00daBLICA DE ARGENTINA ASUNTO DE LAS PENITENCIAR\u00cdAS DE MENDOZA VISTOS La Resoluci\u00f3n de la Corte Interamericana de Derechos Humanos en adelante la Corte o la Corte Interamericana de de noviembre de mediante la cual resolvi\u00f3 de conformidad con los art\u00edculos de la Convenci\u00f3n Americana sobre Derechos Humanos en adelante la Convenci\u00f3n o la Convenci\u00f3n Americana y del", - "values": [ - "Corte Interamericana de Derechos Humanos" - ] - }, - { - "text": "Resoluci\u00f3n del Presidente de la Corte Interamericana de Derechos Humanos De de Diciembre de Caso Caballero Delgado y Santana Vs. Colombia Supervisi\u00f3n de Cumplimiento de Sentencia VISTOS La Sentencia de fondo emitida en el presente caso por la Interamericana de Derechos Humanos en adelante la Corte la Interamericana o el Tribunal el de diciembre de Corte Corte La Sentencia de reparaciones y costas dictada en el presente caso por la Corte Interamericana el de enero de La Resoluci\u00f3n por ", - "values": [ - "Corte Interamericana de Derechos Humanos" - ] - }, - { - "text": "Resoluci\u00f3n de la Corte Interamericana De Derechos Humanos De de mayo de Caso Claude Reyes y otros Vs. Chile Supervisi\u00f3n de Cumplimiento de Sentencia VISTO La Sentencia de fondo reparaciones y costas de de septiembre de en adelante la Sentencia emitida por la Corte Interamericana de Derechos Humanos en adelante la Corte Interamericana la Corte o el Tribunal mediante la cual dispuso que El Estado debe a trav\u00e9s de la entidad correspondiente y en el plazo de seis meses entregar la por las ", - "values": [ - "Corte Interamericana de Derechos Humanos" - ] - }, - { - "text": "RESOLUCI\u00d3N DE LA CORTE INTERAMERICANA DE DERECHOS HUMANOS DE DE MAYO DE SOLICITUD DE MEDIDAS PROVISIONALES PRESENTADA POR LA COMISI\u00d3N INTERAMERICANA DE DERECHOS HUMANOS RESPECTO DE LA REP\u00daBLICA DEL PER\u00da ASUNTO WONG HO WING VISTO El escrito de la Comisi\u00f3n Interamericana de Derechos Humanos en adelante la Comisi\u00f3n Interamericana o la Comisi\u00f3n de de febrero de y sus anexos mediante los cuales someti\u00f3 a la Corte Interamericana de Derechos Humanos en adelante la Corte Interamericana la Corte o ", - "values": [ - "Corte Interamericana de Derechos Humanos" - ] - }, - { - "text": "RESOLUCI\u00d3N DE LA CORTE INTERAMERICANA DE DERECHOS HUMANOS DE DE FEBRERO DE CASO COMERCIANTES VS. COLOMBIA CUMPLIMIENTO DE SENTENCIA VISTOS La Sentencia de fondo reparaciones y costas emitida el de julio de por la Corte Interamericana de Derechos Humanos en adelante la Corte la Corte Interamericana o el Tribunal mediante la cual el Tribunal declar\u00f3 por unanimidad que el Estado viol\u00f3 los derechos a la libertad personal a la integridad personal y a la vida consagrados en los art\u00edculos y ", - "values": [ - "Corte Interamericana de Derechos Humanos" - ] - }, - { - "text": "INFORME N\u00ba PETICI\u00d3N ADMISIBILIDAD TYRONE DACOSTA CADOGAN BARBADOS de marzo de I. RESUMEN El de diciembre de la Comisi\u00f3n Interamericana de Derechos Humanos en adelante la Comisi\u00f3n recibi\u00f3 una petici\u00f3n interpuesta en nombre de Tyrone DaCosta Cadogan recluso en espera de ejecuci\u00f3n en la Prisi\u00f3n de Su Majestad Barbados. En la petici\u00f3n se alega la violaci\u00f3n del derecho al debido proceso dispuesto en el art\u00edculo de la Convenci\u00f3n Americana sobre Derechos Humanos la Convenci\u00f3n Americana. El ", - "values": [ - "Comisi\u00f3n Interamericana de Derechos Humanos" - ] - }, - { - "text": "RESOLUCI\u00d3N DEL PRESIDENTE DE LA CORTE INTERAMERICANA DE DERECHOS HUMANOS DE MARZO DE CASO PUEBLO IND\u00cdGENA KICHWA DE SARAYAKU vs. ECUADOR VISTO El escrito de de mayo de y sus anexos mediante los cuales la Comisi\u00f3n Interamericana de Derechos Humanos en adelante la Comisi\u00f3n Interamericana o la Comisi\u00f3n present\u00f3 ante la Corte Interamericana de Derechos Humanos en adelante la Corte Interamericana la Corte o el Tribunal una demanda contra la Rep\u00fablica del Ecuador en adelante el Estado o Ecuador ", - "values": [ - "Corte Interamericana de Derechos Humanos" - ] - }, - { - "text": "CORTE INTERAMERICANA DE DIREITOS HUMANOS CASO FERN\u00c1NDEZ ORTEGA E OUTROS VS. M\u00c9XICO SENTEN\u00c7A DE DE AGOSTO DE Exce\u00e7\u00e3o Preliminar M\u00e9rito Repara\u00e7\u00f5es e Custas No caso Fern\u00e1ndez Ortega e outros A Corte Interamericana de Direitos Humanos doravante denominada Interamericana a Corte ou o Tribunal integrada pelos seguintes ju\u00edzes a Corte Diego Garc\u00edaSay\u00e1n Presidente Leonardo A. Franco VicePresidente Manuel E. Ventura Robles Juiz Margarette May Macaulay Ju\u00edza Rhadys Abreu Blondet Ju\u00edza Alberto P\u00e9rez ", - "values": [ - "Corte Interamericana de Derechos Humanos" - ] - }, - { - "text": "RESOLUCI\u00d3N DE LA PRESIDENTA DE LA CORTE INTERAMERICANA DE DERECHOS HUMANOS DE DE OCTUBRE DE CASO KAWAS FERN\u00c1NDEZ VS. HONDURAS VISTOS El escrito de demanda presentado por la Comisi\u00f3n Interamericana de Derechos Humanos en adelante la Comisi\u00f3n Interamericana o la Comisi\u00f3n ante la Corte Interamericana de Derechos Humanos en adelante la Corte Interamericana la Corte o el Tribunal el de febrero de mediante el cual ofreci\u00f3 dos testimonios y un peritaje. El escrito de solicitudes argumentos y en", - "values": [ - "Corte Interamericana de Derechos Humanos" - ] - }, - { - "text": "INFORME No. PETICI\u00d3N ADMISIBILIDAD C\u00c9SAR ALBERTO MENDOZA Y OTROS ARGENTINA de marzo de I. RESUMEN El presente informe se refiere a la admisibilidad de la petici\u00f3n La Comisi\u00f3n Interamericana de Derechos Humanos en lo sucesivo Comisi\u00f3n Interamericana Comisi\u00f3n o CIDH abri\u00f3 la presente petici\u00f3n tras recibir una serie de denuncias presentadas entre el de abril de y el de diciembre de en nombre de personas Guillermo Antonio \u00c1lvarez C\u00e9sar Alberto Mendoza Claudio David N\u00fa\u00f1ez Lucas Mat\u00edas ", - "values": [ - "Comisi\u00f3n Interamericana de Derechos Humanos" - ] - }, - { - "text": "ORDER THE INTERAMERICAN COURT OF HUMAN RIGHTS OF MAY PROVISIONAL MEASURES REGARDING BRAZIL MATTER OF THE PENITENTIARY COMPLEX OF CURADO HAVING SEEN The brief of the InterAmerican Commission on Human Rights hereinafter the InterAmerican Commission or the Commission of March and its attachments wherein it filed a request for provisional measures before the InterAmerican Court of Human Rights hereinafter the InterAmerican Court the Court or the Tribunal pursuant to Articles of the American ", - "values": [ - "Corte Interamericana de Derechos Humanos" - ] - }, - { - "text": "RESOLU\u00c7\u00c3O DA CORTE INTERAMERICANA DE DIREITOS HUMANOS DE DE JULHO DE MEDIDAS PROVIS\u00d3RIAS REP\u00daBLICA FEDERATIVA DO BRASIL COM RESPEITO \u00c0 ASSUNTO DAS CRIAN\u00c7AS E ADOLESCENTES PRIVADOS DE LIBERDADE NO COMPLEXO DO TATUAP\u00c9 DA FUNDA\u00c7\u00c3O CASA VISTOS A Resolu\u00e7\u00e3o da Corte Interamericana de Direitos Humanos doravante a Corte a Corte Interamericana ou o Tribunal de de novembro de mediante a qual requereu \u00e0 Rep\u00fablica Federativa do Brasil doravante o Estado ou Brasil que adotasse de forma imediata as ", - "values": [ - "Corte Interamericana de Derechos Humanos" - ] - }, - { - "text": "VOTO RAZONADO DEL JUEZ AA. CAN\u00c7ADO TRINDADE He concurrido con mi voto a favor de la adopci\u00f3n por la Corte Interamericana de Derechos Humanos de la presente Sentencia en el caso de los Hermanos G\u00f3mez Paquiyauri versus Per\u00fa. Las cuestiones planteadas por el cas desp\u00e8ce y tratadas por la Corte en la Sentencia que viene de adoptar me han suscitado algunas reflexiones que me veo en la obligaci\u00f3n de consignar en este Voto Razonado como fundamentaci\u00f3n de mi posici\u00f3n al respecto. Me referir\u00e9 en a los", - "values": [ - "Corte Interamericana de Derechos Humanos" - ] - }, - { - "text": "RESOLUCI\u00d3N DE LA CORTE INTERAMERICANA DE DERECHOS HUMANOS DE DE NOVIEMBRE DE MEDIDAS PROVISIONALES RESPECTO DE LA REP\u00daBLICA DE PER\u00da ASUNTO RAM\u00cdREZ HINOSTROZA Y OTROS VISTO La Resoluci\u00f3n emitida por el Presidente de la Corte Interamericana de Derechos Humanos en adelante la Corte Interamericana la Corte o el Tribunal el de julio de as\u00ed como las Resoluciones emitidas por la Corte Interamericana el de septiembre de el de febrero y el de julio de el de mayo de y el de febrero de esta", - "values": [ - "Corte Interamericana de Derechos Humanos" - ] - }, - { - "text": "CASO CAESAR VS TRINIDAD Y TOBAGO VOTO RAZONADO JUEZ MANUEL E. VENTURA ROBLES La necesidad de establecer en la Organizaci\u00f3n de los Estados Americanos un grupo de trabajo permanente dedicado a supervisar el cumplimiento por parte de los Estados Partes en la Convenci\u00f3n Americana sobre Derechos Humanos de las sentencias y medidas provisionales que dicta la Corte Interamericana de Derechos Humanos. I Introducci\u00f3n. II Las propuestas hechas por el Consejo Interamericano de Jurisconsultos los Estados ", - "values": [ - "Corte Interamericana de Derechos Humanos" - ] - }, - { - "text": "Corte Interamericana de Direitos Humanos Caso Ricardo Canese Vs. Paraguai Senten\u00e7a de de agosto de M\u00e9rito Repara\u00e7\u00f5es e Custas No caso Ricardo Canese A Corte Interamericana de Direitos Humanos doravante denominada a Corte a Corte Interamericana ou o Tribunal integrada pelos seguintes ju\u00edzes Sergio Garc\u00eda Ram\u00edrez Presidente Alirio Abreu Burelli VicePresidente Oliver Jackman Juiz Ant\u00f4nio A. Can\u00e7ado Trindade Juiz Manuel E. Ventura Robles Juiz Diego Garc\u00edaSay\u00e1n Juiz e Emilio Camacho Paredes Juiz ", - "values": [ - "Corte Interamericana de Derechos Humanos" - ] - }, - { - "text": "RESOLUCI\u00d3N DE LA CORTE INTERAMERICANA DE DERECHOS HUMANOS DE DE JULIO DE SOLICITUD DE MEDIDAS PROVISIONALES RESPECTO DE LA REP\u00daBLICA DE COLOMBIA CASO COMERCIANTES SANDRA BELINDA MONTERO FUENTES Y FAMILIARES SALOM\u00d3N FL\u00d3REZ Y FAMILIARES LUIS JOS\u00c9 PUNDOR QUINTERO Y FAMILIARES ANA DIVA QUINTERO QUINTERO DE PUNDOR Y FAMILIARES VISTOS La Sentencia de fondo reparaciones y costas emitida por la Corte Interamericana de Derechos Humanos en adelante la Corte o el Tribunal el de julio de en el caso ", - "values": [ - "Corte Interamericana de Derechos Humanos" - ] - }, - { - "text": "RESOLUCI\u00d3N DEL PRESIDENTE DE LA CORTE INTERAMERICANA DE DERECHOS HUMANOS DE DICIEMBRE DE CASO SU\u00c1REZ PERALTA VS. ECUADOR VISTO El escrito de de enero de mediante el cual la Comisi\u00f3n Interamericana de Derechos Humanos en adelante la Comisi\u00f3n Interamericana o la Comisi\u00f3n someti\u00f3 a la Corte Interamericana de Derechos Humanos en adelante la Corte Interamericana la Corte o el Tribunal un caso en contra de la Rep\u00fablica del Ecuador en adelante Ecuador o el Estado mediante el cual ofreci\u00f3 un e ", - "values": [ - "Corte Interamericana de Derechos Humanos" - ] - }, - { - "text": "VOTO RAZONADO DEL JUEZ AA. CAN\u00c7ADO TRINDADE He concurrido con mi voto para la adopci\u00f3n por la Corte Interamericana de Derechos Humanos de la presente Sentencia en el caso Acosta Calder\u00f3n versus Ecuador por haber estado de acuerdo con los puntos resolutivos de la misma y con lo que ha dicho la Corte en las consideraciones que los motivaron. Lo que no me satisface es lo que la Corte dej\u00f3 de decir sobre otras cuestiones planteadas en el presente caso las cuales en mi entender deber\u00edan haber dos ", - "values": [ - "Corte Interamericana de Derechos Humanos" - ] - }, - { - "text": "VOTO RAZONADO CONJUNTO DE LOS JUECES AA. CAN\u00c7ADO TRINDADE Y M. PACHECO G\u00d3MEZ Hemos participado del consenso en la adopci\u00f3n de la presente Sentencia de fondo dictada por la Corte Interamericana de Derechos Humanos sobre el caso Las Palmeras relativo a Colombia por haberse establecido las violaciones de los art\u00edculos y de la Convenci\u00f3n Americana sobre Derechos Humanos y a nuestro juicio en relaci\u00f3n con el art\u00edculo de la misma. Sin embargo nos vemos en la obligaci\u00f3n de dejar constancia de ", - "values": [ - "Corte Interamericana de Derechos Humanos" - ] - }, - { - "text": "Corte Interamericana de Derechos Humanos Caso Neira Alegr\u00eda y otros VsPer\u00fa Sentencia de de enero de Fondo En el caso Neira Alegr\u00eda y otros la Corte Interamericana de Derechos Humanos integrada por los siguientes jueces H\u00e9ctor FixZamudio Presidente Hern\u00e1n Salgado Pesantes Vicepresidente Rafael Nieto Navia Juez Alejandro Montiel Arg\u00fcello Juez M\u00e1ximo Pacheco G\u00f3mez Juez presentes adem\u00e1s Manuel E. Ventura Robles Secretario y Ana Mar\u00eda Reina Secretaria adjunta de acuerdo con el art\u00edculo del de la", - "values": [ - "Corte Interamericana de Derechos Humanos" - ] - }, - { - "text": "INFORME N\u00ba CASO WILSON GUTI\u00c9RREZ SOLER COLOMBIA de octubre de I. RESUMEN El de noviembre de la Comisi\u00f3n Interamericana de Derechos Humanos en adelante la Comisi\u00f3n recibi\u00f3 una petici\u00f3n presentada por la Corporaci\u00f3n Colectivo de Abogados Jos\u00e9 Alvear Restrepo en adelante los peticionarios en la cual se alega que el de agosto de miembros de la Unidad Nacional Antiextorsi\u00f3n y Secuestro de la Polic\u00eda Nacional UNASE y un particular torturaron al se\u00f1or Wilson Guti\u00e9rrez Soler tras su detenci\u00f3n ", - "values": [ - "Comisi\u00f3n Interamericana de Derechos Humanos" - ] - }, - { - "text": "INFORME N\u00ba CASO ALDEA DE MOIWANA SURINAME de marzo de I. RESUMEN La denuncia fue presentada por Moiwana Organizaci\u00f3n de Derechos Humanos de Suriname el de julio de y se refiere a la ejecuci\u00f3n extrajudicial de m\u00e1s de cuarenta habitantes de la aldea de Moiwana una de las comunidades del pueblo Cimarr\u00f3n Maroons de Suriname y a la destrucci\u00f3n intencional de sus bienes por miembros del Ej\u00e9rcito de ese pa\u00eds as\u00ed como a la falta de garant\u00edas judiciales debido proceso y reparaciones por esos El", - "values": [ - "Comisi\u00f3n Interamericana de Derechos Humanos" - ] - }, - { - "text": "VOTO RAZONADO DEL JUEZ SERGIO GARC\u00cdA RAM\u00cdREZ EN RELACI\u00d3N CON LA SENTENCIA DE LA CORTE INTERAMERICANA DE DERECHOS HUMANOS EN EL CASO GARC\u00cdA PRIETO EL SALVADOR DEL DE NOVIEMBRE DE A Deber de investigar En la sentencia dictada por la Corte Interamericana de Derechos Humanos en el Caso Garc\u00eda Prieto El Salvador del de noviembre de a la que acompa\u00f1o este Voto se ha examinado la necesidad de llevar adelante ciertas investigaciones que se considera inconclusas y necesarias para establecer la ", - "values": [ - "Corte Interamericana de Derechos Humanos" - ] - }, - { - "text": "RESOLUCI\u00d3N DEL PRESIDENTE DE LA CORTE INTERAMERICANA DE DERECHOS HUMANOS DE DE JUNIO DE SOLICITUD DE MEDIDAS PROVISIONALES PRESENTADA POR LA COMISI\u00d3N INTERAMERICANA DE DERECHOS HUMANOS RESPECTO DE LA REP\u00daBLICA DE ARGENTINA CASO MILLACURA LLAIP\u00c9N Y OTROS VISTOS El escrito de de junio de y sus anexos mediante los cuales la Comisi\u00f3n Interamericana de Derechos Humanos en adelante la Comisi\u00f3n Interamericana o la Comisi\u00f3n someti\u00f3 a la Corte Interamericana de Derechos Humanos en adelante la Corte", - "values": [ - "Corte Interamericana de Derechos Humanos" - ] - }, - { - "text": "CORTE INTERAMERICANA DE DERECHOS HUMANOS CASO LUNA L\u00d3PEZ VS. HONDURAS SENTENCIA DE DE OCTUBRE DE Fondo Reparaciones y Costas En el caso Luna L\u00f3pez la Corte Interamericana de Derechos Humanos en adelante la Corte Interamericana la Corte o el Tribunal integrada por los siguientes jueces Diego Garc\u00edaSay\u00e1n Presidente Manuel E. Ventura Robles Vicepresidente Alberto P\u00e9rez P\u00e9rez Juez Eduardo Vio Grossi Juez Roberto F. Caldas Juez Humberto Antonio Sierra Porto Juez y Eduardo Ferrer MacGregor Poisot ", - "values": [ - "Corte Interamericana de Derechos Humanos" - ] - }, - { - "text": "RESOLUCI\u00d3N DEL PRESIDENTE DE LA CORTE INTERAMERICANA DE DERECHOS HUMANOS DE DE ABRIL DE SOLICITUD DE MEDIDAS PROVISIONALES RESPECTO DE LA REP\u00daBLICA DE COLOMBIA CASO COMERCIANTES SANDRA BELINDA MONTERO FUENTES Y FAMILIARES SALOM\u00d3N FL\u00d3REZ Y FAMILIARES LUIS JOS\u00c9 PUNDOR QUINTERO Y FAMILIARES ANA DIVA QUINTERO PUNDOR Y FAMILIARES VISTOS La Sentencia de fondo reparaciones y costas emitida por la Corte Interamericana de Derechos Humanos en adelante la Corte o el Tribunal el de julio de en el ", - "values": [ - "Corte Interamericana de Derechos Humanos" - ] - }, - { - "text": "RESOLUCI\u00d3N DEL PRESIDENTE DE LA CORTE INTERAMERICANA DE DERECHOS HUMANOS EN EJERCICIO PARA ESTE CASO DE DE JULIO DE SOLICITUD PRESENTADA POR LA INTERVINIENTE COM\u00daN DE LOS REPRESENTANTES DE LAS V\u00cdCTIMAS Y SUS FAMILIARES CASO DEL PENAL MIGUEL CASTRO CASTRO VS. PER\u00da SUPERVISI\u00d3N DE CUMPLIMIENTO DE SENTENCIA VISTO La Sentencia de fondo reparaciones y costas en adelante la Sentencia emitida por la Corte Interamericana de Derechos Humanos en adelante la Corte Interamericana la Corte o el Tribunal ", - "values": [ - "Corte Interamericana de Derechos Humanos" - ] - }, - { - "text": "RESOLUCI\u00d3N DE LA CORTE INTERAMERICANA DE DERECHOS HUMANOS DE DE JUNIO DE MEDIDAS PROVISIONALES RESPECTO DE LOS ESTADOS UNIDOS MEXICANOS CASO PILAR NORIEGA GARCIA Y OTROS VISTOS La Resoluci\u00f3n emitida por el Presidente de la Corte Interamericana de Derechos Humanos en adelante la Corte la Corte Interamericana o el Tribunal el de octubre de en consulta con los dem\u00e1s Jueces de la Corte mediante la cual resolvi\u00f3 Requerir al Estado que adopte sin dilaci\u00f3n cuantas medidas sean necesarias para ", - "values": [ - "Corte Interamericana de Derechos Humanos" - ] - }, - { - "text": "RESOLUCI\u00d3N DEL PRESIDENTE DE LA CORTE INTERAMERICANA DE DERECHOS HUMANOS DE FEBRERO DE SUPERVISI\u00d3N DE CUMPLIMIENTO DE LAS MEDIDAS DE REPARACI\u00d3N SOBRE ATENCI\u00d3N M\u00c9DICA Y PSICOL\u00d3GICA ORDENADAS EN NUEVE CASOS COLOMBIANOS CONVOCATORIA DE AUDIENCIA PRIVADA VISTO La resoluci\u00f3n de convocatoria de audiencia en el marco de la supervisi\u00f3n de cumplimiento emitida por la Corte Interamericana de Derechos Humanos en adelante la Corte la Corte Interamericana o el Tribunal el de abril de en relaci\u00f3n con ", - "values": [ - "Corte Interamericana de Derechos Humanos" - ] - }, - { - "text": "Resoluci\u00f3n del Presidente de la Corte Interamericana de Derechos Humanos De de enero de Caso B\u00e1maca Vel\u00e1squez Vs. Guatemala Supervisi\u00f3n de Cumplimiento de Sentencias VISTOS La Resoluci\u00f3n del Presidente de la Corte Interamericana de Derechos Humanos en adelante la Corte la Corte Interamericana o el Tribunal de de diciembre de mediante la cual resolvi\u00f3 inter alia Convocar a la Comisi\u00f3n Interamericana de Derechos Humanos a los representantes de la v\u00edctima y sus familiares y al Estado de a ", - "values": [ - "Corte Interamericana de Derechos Humanos" - ] - }, - { - "text": "Resoluci\u00f3n de la Corte Interamericana de Derechos Humanos de de mayo de Medidas Provisionales Respecto de los Estados Unidos Mexicanos Asunto Alvarado Reyes y otros VISTO El escrito de la Comisi\u00f3n Interamericana de Derechos Humanos en adelante la Comisi\u00f3n Interamericana o la Comisi\u00f3n de de mayo de y sus anexos mediante los cuales someti\u00f3 a la Corte Interamericana de Derechos Humanos en adelante la Corte Interamericana la Corte o el Tribunal una solicitud de medidas provisionales de con ", - "values": [ - "Corte Interamericana de Derechos Humanos" - ] - }, - { - "text": "RESOLUCI\u00d3N DE LA CORTE INTERAMERICANA DE DERECHOS HUMANOS DE DE MAYO DE CASO DE LAS MASACRES DE ITUANGO VS. COLOMBIA SUPERVISI\u00d3N DE CUMPLIMIENTO DE SENTENCIA VISTO La Sentencia de fondo reparaciones y costas dictada el de julio de en adelante la Sentencia por la Corte Interamericana de Derechos Humanos en adelante la Corte la Corte Interamericana o el Tribunal Los hechos del presente caso ocurrieron en junio de y a partir de octubre de en los corregimientos de La Granja y El Aro ambos", - "values": [ - "Corte Interamericana de Derechos Humanos" - ] - }, - { - "text": "Resoluci\u00f3n de la Presidenta de la Corte Interamericana de Derechos Humanos de mayo de Caso Masacre de Las Dos Erres vs. Guatemala Visto El escrito de demanda de la Comisi\u00f3n Interamericana de Derechos Humanos en adelante la Comisi\u00f3n o la Comisi\u00f3n Interamericana presentado el de julio de ante la Corte Interamericana de Derechos Humanos en adelante la Corte la Corte Interamericana o el Tribunal contra la Rep\u00fablica de Guatemala en adelante el Estado o Guatemala en el cual ofreci\u00f3 un peritaje. ", - "values": [ - "Corte Interamericana de Derechos Humanos" - ] - }, - { - "text": "CORTE INTERAMERICANA DE DERECHOS HUMANOS CASO BLANCO ROMERO Y OTROS VS. VENEZUELA SENTENCIA DE DE NOVIEMBRE DE En el caso Blanco Romero y otros la Corte Interamericana de Derechos Humanos en adelante la Corte Interamericana la Corte o el Tribunal integrada por los siguientes jueces Sergio Garc\u00eda Ram\u00edrez Presidente Alirio Abreu Burelli Vicepresidente Oliver Jackman Juez Ant\u00f4nio A. Can\u00e7ado Trindade Juez Cecilia Medina Quiroga Jueza Manuel E. Ventura Robles Juez y Diego Garc\u00edaSay\u00e1n Juez. adem\u00e1s", - "values": [ - "Corte Interamericana de Derechos Humanos" - ] - }, - { - "text": "RESOLU\u00c7\u00c3O DA CORTE INTERAMERICANA DE DIREITOS HUMANOS DE DE JULHO DE MEDIDAS PROVIS\u00d3RIAS A RESPEITO DA REP\u00daBLICA FEDERATIVA DO BRASIL CASO DA PENITENCI\u00c1RIA URSO BRANCO VISTO A Resolu\u00e7\u00e3o da Corte Interamericana de Direitos Humanos doravante denominada a Corte ou Tribunal de de junho de mediante a qual requereu \u00e0 Rep\u00fablica Federativa do Brasil doravante denominada Brasil ou Estado que adoptasse todas as medidas que sejam necess\u00e1rias para proteger a vida e integridade pessoal de todas as na", - "values": [ - "Corte Interamericana de Derechos Humanos" - ] - }, - { - "text": "RESOLU\u00c7\u00c3O DA CORTE INTERAMERICANA DE DIREITOS HUMANOS DE DE ABRIL DE MEDIDAS PROVIS\u00d3RIAS A RESPEITO DA REP\u00daBLICA FEDERATIVA DO BRASIL ASSUNTO DA UNIDADE DE INTERNA\u00c7\u00c3O SOCIOEDUCATIVA VISTO A Resolu\u00e7\u00e3o da Corte Interamericana de Direitos Humanos doravante a Corte Interamericana a Corte ou o Tribunal de de fevereiro de mediante a qual requereu \u00e0 Rep\u00fablica Federativa do Brasil doravante o Estado ou Brasil adotar de forma imediata as medidas que se fa\u00e7am necess\u00e1rias para proteger eficazmente a ", - "values": [ - "Corte Interamericana de Derechos Humanos" - ] - }, - { - "text": "Corte Interamericana de Derechos Humanos Caso Balde\u00f3n Garc\u00eda Vs. Per\u00fa Sentencia de de Abril de Fondo Reparaciones y Costas En el caso Balde\u00f3n Garc\u00eda la Corte Interamericana de Derechos Humanos en adelante la Corte Interamericana la Corte o el Tribunal integrada por los siguientes jueces Sergio Garc\u00eda Ram\u00edrez Presidente Alirio Abreu Burelli Vicepresidente Oliver Jackman Juez Ant\u00f4nio A. Can\u00e7ado Trindade Juez Cecilia Medina Quiroga Jueza Manuel E. Ventura Robles Juez y Diego Garc\u00edaSay\u00e1n Juez. ", - "values": [ - "Corte Interamericana de Derechos Humanos" - ] - }, - { - "text": "RESOLUCI\u00d3N DE LA CORTE INTERAMERICANA DE DERECHOS HUMANOS DE DE NOVIEMBRE DE CASO CASTILLO P\u00c1EZ CUMPLIMIENTO DE SENTENCIA VISTOS La sentencia de fondo dictada en el Caso Castillo P\u00e1ez vs. Per\u00fa por la Corte Interamericana de Derechos Humanos en adelante la Corte la Corte Interamericana o el Tribunal el de noviembre de en la que dispuso en su punto resolutivo quinto Que el Estado del Per\u00fa est\u00e1 obligado a reparar las consecuencias de esas violaciones e indemnizar a los familiares de la y a", - "values": [ - "Corte Interamericana de Derechos Humanos" - ] - }, - { - "text": "Resoluci\u00f3n de la Corte Interamericana de Derechos Humanos De de febrero de Caso Loayza Tamayo Vs. Per\u00fa Supervisi\u00f3n del Cumplimiento de Sentencia VISTOS La Sentencia de fondo emitida en el presente caso por la Interamericana de Derechos Humanos en adelante la Corte la Interamericana o el Tribunal el de septiembre de Corte Corte La Sentencia de reparaciones dictada en el presente caso por la Corte Interamericana el de noviembre de La Sentencia de interpretaci\u00f3n de la Sentencia de en el", - "values": [ - "Corte Interamericana de Derechos Humanos" - ] - }, - { - "text": "CORTE INTERAMERICANA DE DERECHOS HUMANOS CASO ANZUALDO CASTRO VS. PER\u00da SENTENCIA DE DE SEPTIEMBRE DE Excepci\u00f3n Preliminar Fondo Reparaciones y Costas En el caso Anzualdo Castro vs. Per\u00fa la Corte Interamericana de Derechos Humanos en adelante la Corte Interamericana la Corte o el Tribunal integrada por los siguientes jueces Cecilia Medina Quiroga Presidenta Sergio Garc\u00eda Ram\u00edrez Juez Manuel E. Ventura Robles Juez Leonardo A. Franco Juez Margarette May Macaulay Jueza Rhadys Abreu Blondet Jueza ", - "values": [ - "Corte Interamericana de Derechos Humanos" - ] - }, - { - "text": "Resolu\u00e7\u00e3o da Presidenta da Corte Interamericana de Direitos Humanos de de agosto de Medidas Provis\u00f3rias A Respeito do Brasil Assunto da Penitenci\u00e1ria Urso Branco Visto As Resolu\u00e7\u00f5es da Corte Interamericana de Direitos Humanos doravante Corte Interamericana Corte ou Tribunal de de junho de de de agosto de de de abril de de de julho de de de setembro de e de de maio de Nessa \u00faltima a Corte resolveu inter alia Reiterar ao Estado que adote de imediato todas as medidas que sejam ", - "values": [ - "Corte Interamericana de Derechos Humanos" - ] - }, - { - "text": "RESOLUCI\u00d3N DEL PRESIDENTE DE LA CORTE INTERAMERICANA DE DERECHOS HUMANOS DE DE MARZO DE CASO RUANO TORRES Y FAMILIARES VS. EL SALVADOR VISTO El escrito de sometimiento del caso y el Informe de Fondo de la Comisi\u00f3n Interamericana de Derechos Humanos en adelante la Comisi\u00f3n Interamericana o la Comisi\u00f3n el escrito de solicitudes argumentos y pruebas en adelante el escrito de solicitudes y argumentos de los representantes de las presuntas v\u00edctimas en adelante los representantes y el escrito de ", - "values": [ - "Corte Interamericana de Derechos Humanos" - ] - }, - { - "text": " VOTO RAZONADO DEL JUEZ AA. CAN\u00c7ADO TRINDADE He concurrido con mi voto a la adopci\u00f3n en esta ciudad de Brasilia de la presente Sentencia que viene de adoptar la Corte Interamericana de Derechos Humanos en el caso de la Comunidad Ind\u00edgena Sawhoyamaxa versus Paraguay. Dada la alta relevancia que atribuyo a la materia tratada en la presente Sentencia me veo en la obligaci\u00f3n de dejar constancia de mis reflexiones personales al respecto como fundamento de mi posici\u00f3n sobre la materia objeto de la ", - "values": [ - "Corte Interamericana de Derechos Humanos" - ] - }, - { - "text": "RESOLUCI\u00d3N DEL PRESIDENTE DE LA CORTE INTERAMERICANA DE DERECHOS HUMANOS DE DE AGOSTO DE AMPLIACI\u00d3N DE MEDIDAS PROVISIONALES SOLICITADA POR LA COMISI\u00d3N INTERAMERICANA DE DERECHOS HUMANOS RESPECTO DE COLOMBIA CASO \u00c1LVAREZ Y OTROS VISTOS El escrito de de julio de y sus anexos mediante el cual la Comisi\u00f3n Interamericana de Derechos Humanos en adelante la Comisi\u00f3n o la Comisi\u00f3n Interamericana someti\u00f3 a la Corte Interamericana de Derechos Humanos en adelante la Corte o la Corte Interamericana ", - "values": [ - "Corte Interamericana de Derechos Humanos" - ] - }, - { - "text": "VOTO CONCURRENTE DEL JUEZ HUMBERTO ANTONIO SIERRA PORTO SENTENCIA DE LA CORTE INTERAMERICANA DE DERECHOS HUMANOS CASO CASO GONZALES LLUY Y OTROS VS. ECUADOR SENTENCIA DE DE SEPTIEMBRE DE Excepciones Preliminares Fondo Reparaciones y Costas A. Introducci\u00f3n La finalidad del presente voto concurrente es ampliar y complementar las razones por las cuales considero que no es necesario declarar la violaci\u00f3n del art\u00edculo de la Convenci\u00f3n de la Americana sobre Derechos Humanos en adelante la o la ", - "values": [ - "Corte Interamericana de Derechos Humanos" - ] - }, - { - "text": "RESOLUCI\u00d3N DE LA CORTE INTERAMERICANA DE DERECHOS HUMANOS DE DE ENERO DE REINTEGRO AL FONDO DE ASISTENCIA LEGAL DE V\u00cdCTIMAS CASO SU\u00c1REZ PERALTA VS. ECUADOR VISTO La Sentencia de excepciones preliminares fondo reparaciones y costas en adelante la Sentencia o el Fallo dictada por la Corte Interamericana de Derechos Humanos en adelante la Corte la Corte Interamericana o el Tribunal el de mayo de la cual fue notificada el de junio de En el punto resolutivo octavo de dicho Fallo el Tribunal", - "values": [ - "Corte Interamericana de Derechos Humanos" - ] - }, - { - "text": "Resoluci\u00f3n de la Corte Interamericana de Derechos Humanos de de noviembre de Caso Ivcher Bronstein Vs. Per\u00fa Supervisi\u00f3n de Cumplimiento de Sentencias Visto La Sentencia de fondo reparaciones y costas en adelante la Sentencia emitida en el presente caso por la Corte Interamericana de Derechos Humanos en adelante la Corte la Corte Interamericana o el Tribunal el de febrero de en la que dispuso que el Estado debe investigar los hechos que generaron las violaciones establecidas en la para", - "values": [ - "Corte Interamericana de Derechos Humanos" - ] - }, - { - "text": "RESOLU\u00c7\u00c3O DO PRESIDENTE DA CORTE INTERAMERICANA DE DIREITOS HUMANOS DE DE JULHO DE MEDIDAS PROVIS\u00d3RIAS A RESPEITO DA REP\u00daBLICA FEDERATIVA DO BRASIL ASSUNTO DA UNIDADE DE INTERNA\u00c7\u00c3O SOCIOEDUCATIVA VISTO A Resolu\u00e7\u00e3o da Corte Interamericana de Direitos Humanos doravante a Corte Interamericana a Corte ou o Tribunal de de fevereiro de mediante a qual requereu \u00e0 Rep\u00fablica Federativa do Brasil doravante o Estado ou Brasil adotar de forma imediata as medidas que fossem necess\u00e1rias para proteger a", - "values": [ - "Corte Interamericana de Derechos Humanos" - ] - }, - { - "text": "RESOLUCI\u00d3N DE LA CORTE INTERAMERICANA DE DERECHOS HUMANOS DE DE AGOSTO DE MEDIDAS PROVISIONALES RESPECTO DE EL SALVADOR ASUNTO B. VISTO La Resoluci\u00f3n dictada por la Corte Interamericana de Derechos Humanos en adelante la Corte Interamericana la Corte o el Tribunal el de mayo de mediante la cual el Tribunal resolvi\u00f3 inter alia Requerir al Estado de El Salvador que adopte y garantice de manera urgente todas las medidas que sean necesarias y efectivas para que el grupo m\u00e9dico tratante de la ", - "values": [ - "Corte Interamericana de Derechos Humanos" - ] - }, - { - "text": "DISSENTING OPINION OF JUDGE AA. CAN\u00c7ADO TRINDADE I regret not to be able to join the majority of the Court as to the criterion it adopted in paragraphs and and the decision it took in resolutory point n. of the present Judgment on reparations. In my Separate Opinion in the previous Judgment of January in the same case El Amparo I sustained that the Court should at that stage of the procedure recognition of responsibility made by the Republic of Venezuela have expressly reserved the also ", - "values": [ - "Corte Interamericana de Derechos Humanos" - ] - }, - { - "text": "RESOLUCI\u00d3N DE LA CORTE INTERAMERICANA DE DERECHOS HUMANOS DE DE NOVIEMBRE DE CASO DEL CARACAZO VS. VENEZUELA CUMPLIMIENTO DE SENTENCIA VISTOS La sentencia dictada por la Corte Interamericana de Derechos Humanos en adelante la Corte la Corte Interamericana o el Tribunal el de noviembre de en cuyos puntos resolutivos por unanimidad Tom\u00f3 nota del reconocimiento efectuado por el Estado de Venezuela acerca de los hechos se\u00f1alados en la demanda y declar\u00f3 que hab\u00eda cesado la controversia sobre ", - "values": [ - "Corte Interamericana de Derechos Humanos" - ] - }, - { - "text": "CORTE INTERAMERICANA DE DERECHOS HUMANOS CASO MASACRES DE EL MOZOTE Y LUGARES ALEDA\u00d1OS VS. EL SALVADOR SENTENCIA DE DE AGOSTO DE Interpretaci\u00f3n de la Sentencia de Fondo Reparaciones y Costas En el caso Masacres de El Mozote y lugares aleda\u00f1os la Corte Interamericana de Derechos Humanos en adelante la Corte Interamericana la Corte o el Tribunal integrada por los siguientes Jueces Diego Garc\u00edaSay\u00e1n Presidente Leonardo A. Franco Juez Margarette May Macaulay Jueza Rhadys Abreu Blondet Jueza y", - "values": [ - "Corte Interamericana de Derechos Humanos" - ] - }, - { - "text": "RESOLUCI\u00d3N DEL PRESIDENTE DE LA CORTE INTERAMERICANA DE DERECHOS HUMANOS DE DE NOVIEMBRE DE CASO N\u00c9STOR JOS\u00c9 Y LUIS UZC\u00c1TEGUI Y OTROS VS VENEZUELA VISTO El escrito de sometimiento del caso de de octubre de y sus anexos recibidos el de noviembre de presentado por la Comisi\u00f3n Interamericana de Derechos Humanos en adelante la Comisi\u00f3n Interamericana o la Comisi\u00f3n ante la Corte Interamericana de Derechos Humanos en adelante la Corte Interamericana la Corte o el Tribunal contra la Rep\u00fablica ", - "values": [ - "Corte Interamericana de Derechos Humanos" - ] - }, - { - "text": "RESOLUCI\u00d3N DE LA CORTE INTERAMERICANA DE DERECHOS HUMANOS DE DE JULIO DE MEDIDAS PROVISIONALES SOLICITADAS POR LA COMISI\u00d3N INTERAMERICANA DE DERECHOS HUMANOS RESPECTO DE LA REP\u00daBLICA DEL ECUADOR CASO PUEBLO IND\u00cdGENA DE SARAYAKU VISTOS El escrito de la Comisi\u00f3n Interamericana de Derechos Humanos en adelante la Comisi\u00f3n o la Comisi\u00f3n Interamericana de de junio de mediante el cual someti\u00f3 a la Corte Interamericana de Derechos Humanos en adelante la Corte o la Corte Interamericana de acuerdo ", - "values": [ - "Corte Interamericana de Derechos Humanos" - ] - }, - { - "text": "Corte Interamericana de Derechos Humanos Caso Masacre Plan de S\u00e1nchez Vs. Guatemala Reparaciones Sentencia de de noviembre de En el caso Masacre Plan de S\u00e1nchez la Corte Interamericana de Derechos Humanos en adelante la Corte la Corte Interamericana o el Tribunal integrada por los siguientes jueces Sergio Garc\u00eda Ram\u00edrez Presidente Alirio Abreu Burelli Vicepresidente Oliver Jackman Juez Ant\u00f4nio A. Can\u00e7ado Trindade Juez Cecilia Medina Quiroga Jueza Manuel E. Ventura Robles Juez Diego Juez y ", - "values": [ - "Corte Interamericana de Derechos Humanos" - ] - }, - { - "text": "RESOLUCI\u00d3N DEL PRESIDENTE DE LA CORTE INTERAMERICANA DE DERECHOS HUMANOS DE DE AGOSTO DE CASO V\u00c9LEZ LOOR VS. PANAM\u00c1 VISTO La Resoluci\u00f3n del Presidente de la Corte Interamericana de Derechos Humanos en adelante Corte Corte Interamericana o Tribunal de de julio de mediante la cual resolvi\u00f3 inter alia Convocar a la Comisi\u00f3n Interamericana de Derechos Humanos a los representantes de la presunta v\u00edctima y a la Rep\u00fablica de Panam\u00e1 a una audiencia p\u00fablica que se celebrar\u00e1 en la sede de la Corte", - "values": [ - "Corte Interamericana de Derechos Humanos" - ] - }, - { - "text": "CORTE INTERAMERICANA DE DERECHOS HUMANOS CASO J. VS. PER\u00da SENTENCIA DE DE NOVIEMBRE DE Excepci\u00f3n Preliminar Fondo Reparaciones y Costas En el caso J la Corte Interamericana de Derechos Humanos en adelante la Corte Interamericana la Corte o este Tribunal integrada por los siguientes jueces Manuel E. Ventura Robles Presidente en ejercicio Alberto P\u00e9rez P\u00e9rez Juez Eduardo Vio Grossi Juez Roberto F. Caldas Juez Humberto Antonio Sierra Porto Juez y Eduardo Ferrer MacGregor Poisot Juez presentes ", - "values": [ - "Corte Interamericana de Derechos Humanos" - ] - }, - { - "text": "VOTO CONCURRENTE RAZONADO DEL JUEZ SERGIO GARCIA RAMIREZ A LA SENTENCIA DICTADA EN EL CASO MASACRE PLAN DE SANCHEZ VS. GUATEMALA EL DE ABRIL DEL Concurro con los jueces integrantes de la Corte Interamericana en la emisi\u00f3n de la resoluci\u00f3n de fondo correspondiente al caso Masacre Plan de S\u00e1nchez vs. Guatemala dictada el de abril de Agrego este voto razonado en el que examino algunos puntos de dicha resoluci\u00f3n as\u00ed como sus posibles implicaciones. La soluci\u00f3n del litigio puede expresarse en ", - "values": [ - "Corte Interamericana de Derechos Humanos" - ] - }, - { - "text": "RESOLUCI\u00d3N DE LA CORTE INTERAMERICANA DE DERECHOS HUMANOS DE DE AGOSTO DE MEDIDAS PROVISIONALES RESPECTO DE LA REP\u00daBLICA DE COLOMBIA CASO COMERCIANTES Vs. COLOMBIA VISTO La Sentencia de fondo reparaciones y costas dictada por la Corte Interamericana de Derechos Humanos en adelante la Corte Interamericana la Corte o el Tribunal el de julio de Las Resoluciones dictadas por el Presidente de la Corte el de julio de de abril de y de febrero de as\u00ed como las resoluciones de la Corte de ", - "values": [ - "Corte Interamericana de Derechos Humanos" - ] - }, - { - "text": "RESOLUCI\u00d3N DE LA CORTE INTERAMERICANA DE DERECHOS HUMANOS DE DE SEPTIEMBRE DE SOLICITUD DE MEDIDAS PROVISIONALES RESPECTO DE GUATEMALA CASO MASACRE PLAN DE S\u00c1NCHEZ SALVADOR JER\u00d3NIMO Y OTROS VISTOS La audiencia p\u00fablica celebrada los d\u00edas y de abril de ante la Corte Interamericana de Derechos Humanos en adelante la Corte Interamericana la Corte o el Tribunal en relaci\u00f3n con el caso Masacre Plan de S\u00e1nchez vs. el Estado de Guatemala en adelante el Estado o Guatemala en la cual comparecieron ", - "values": [ - "Corte Interamericana de Derechos Humanos" - ] - }, - { - "text": "VOTO RAZONADO DEL JUEZ A. A. CAN\u00c7ADO TRINDADE He votado a favor de la presente Sentencia sobre el fondo en el caso Blake versus Guatemala que viene de dictar la Corte Interamericana de Derechos Humanos por considerarla conforme al derecho aplicable y al tener presente lo anteriormente resuelto por la Corte en la Sentencia sobre excepciones preliminares de Me veo sin embargo obligado a dejar constancia en este Voto Razonado de las reflexiones que siguen acerca de la limitaci\u00f3n ratione temporis", - "values": [ - "Corte Interamericana de Derechos Humanos" - ] - }, - { - "text": "Corte Interamericana de Derechos Humanos Caso Gangaram Panday Vs. Surinam Sentencia de de enero de Fondo Reparaciones y Costas En el caso Gangaram Panday la Corte Interamericana de Derechos Humanos integrada por los siguientes jueces Rafael Nieto Navia Presidente Sonia Picado Sotela Vicepresidenta H\u00e9ctor FixZamudio Juez Alejandro Montiel Arg\u00fcello Juez Hern\u00e1n Salgado Pesantes Juez Asdr\u00fabal AguiarAranguren Juez Ant\u00f4nio A. Can\u00e7ado Trindade Juez ad hoc presentes adem\u00e1s Manuel E. Ventura Robles y", - "values": [ - "Corte Interamericana de Derechos Humanos" - ] - }, - { - "text": "RESOLUCI\u00d3N DEL PRESIDENTE DE LA CORTE INTERAMERICANA DE DERECHOS HUMANOS DE DE ENERO DE FONDO DE ASISTENCIA LEGAL DE V\u00cdCTIMAS CASO IV. VS. BOLIVIA VISTO El escrito de de abril de y sus anexos mediante los cuales la Comisi\u00f3n Interamericana de Derechos Humanos en adelante la Comisi\u00f3n Interamericana o la Comisi\u00f3n someti\u00f3 ante la Corte Interamericana de Derechos Humanos en adelante la Corte Interamericana la Corte o el Tribunal el presente caso. El escrito de de septiembre de y sus anexos ", - "values": [ - "Corte Interamericana de Derechos Humanos" - ] - }, - { - "text": "RESOLUCI\u00d3N DE LA CORTE INTERAMERICANA DE DERECHOS HUMANOS DE DE FEBRERO DE SOLICITUD DE MEDIDAS PROVISIONALES PRESENTADA POR LOS REPRESENTANTES DE LOS FAMILIARES DE LA V\u00cdCTIMA CASO JUAN HUMBERTO S\u00c1NCHEZ VS. HONDURAS VISTO La Sentencia de excepciones preliminares fondo y reparaciones emitida el de junio de por la Corte Interamericana de Derechos Humanos en adelante la Corte la Corte Interamericana o el Tribunal mediante la cual decidi\u00f3 desestimar la excepci\u00f3n preliminar interpuesta por el", - "values": [ - "Corte Interamericana de Derechos Humanos" - ] - }, - { - "text": "RESOLUCI\u00d3N DE LA CORTE INTERAMERICANA DE DERECHOS HUMANOS DE DE NOVIEMBRE DE CASO DE LOS NI\u00d1OS DE LA CALLE Villagr\u00e1n Morales y Otros CUMPLIMIENTO DE SENTENCIA VISTOS La sentencia de reparaciones dictada por el Tribunal el de mayo de en cuyos puntos resolutivos orden\u00f3 Que el Estado de Guatemala debe pagar por concepto de da\u00f1o material como consecuencia de la muerte de Anstraun Aman Villagr\u00e1n Morales Henry Giovanni Contreras Julio Roberto Caal Sandoval Federico Clemente Figueroa T\u00fanchez y ", - "values": [ - "Corte Interamericana de Derechos Humanos" - ] - }, - { - "text": "RESOLUCI\u00d3N DE LA CORTE INTERAMERICANA DE DERECHOS HUMANOS DE DE SEPTIEMBRE DE CASO HERRERA ULLOA CUMPLIMIENTO DE SENTENCIA VISTOS La Sentencia sobre excepciones preliminares fondo reparaciones y costas dictada por la Corte Interamericana de Derechos Humanos en adelante la Corte Interamericana la Corte o el Tribunal el de julio de en la cual por unanimidad DECLAR\u00d3 Que el Estado viol\u00f3 el derecho a la libertad de pensamiento y de expresi\u00f3n consagrado en el art\u00edculo de la Convenci\u00f3n sobre ", - "values": [ - "Corte Interamericana de Derechos Humanos" - ] - }, - { - "text": "RESOLUCI\u00d3N DE LA CORTE INTERAMERICANA DE DERECHOS HUMANOS DE DE NOVIEMBRE DE CASO VARGAS ARECO VS. PARAGUAY SUPERVISI\u00d3N DE CUMPLIMIENTO DE SENTENCIA VISTO La Sentencia de fondo reparaciones y costas en adelante la Sentencia dictada por la Corte Interamericana de Derechos Humanos en adelante la Corte la Corte Interamericana o el Tribunal el de septiembre de La Resoluci\u00f3n del Tribunal de de octubre de en la cual inter alia declar\u00f3 Que mantendr\u00e1 abierto el procedimiento de supervisi\u00f3n de", - "values": [ - "Corte Interamericana de Derechos Humanos" - ] - }, - { - "text": "INFORME N CASO GUERRILLA DEL ARAGUAIA JULIA GOMES LUND Y OTROS BRASIL de marzo de I. RESUMEN El de agosto de la Comisi\u00f3n Interamericana de Derechos Humanos en adelante denominada la Comisi\u00f3n recibi\u00f3 una petici\u00f3n contra la Rep\u00fablica Federativa de Brasil en adelante el Estado o Brasil presentada por la secci\u00f3n brasilera del Centro por la Justicia y el Derecho Internacional CEJILBrasil y por Human Rights WatchAmericas HRWA. Posteriormente se sumaron como copeticionarios en el presente caso ", - "values": [ - "Comisi\u00f3n Interamericana de Derechos Humanos" - ] - }, - { - "text": "Resoluci\u00f3n de la Corte Interamericana de Derechos Humanos de de noviembre de Caso Myrna Mack Chang vs. Guatemala Supervisi\u00f3n de Cumplimiento de Sentencia Visto La Sentencia de fondo reparaciones y costas en adelante la Sentencia dictada por la Corte Interamericana de Derechos Humanos en adelante la Corte Interamericana la Corte o el Tribunal el de noviembre de Las Resoluciones dictadas por la Corte Interamericana el de septiembre de y de noviembre de En esta \u00faltima resolvi\u00f3 que el ", - "values": [ - "Corte Interamericana de Derechos Humanos" - ] - }, - { - "text": "Resoluci\u00f3n de la Corte Interamericana de Derechos Humanos De de febrero de Caso Acosta Calder\u00f3n Vs. Ecuador Supervisi\u00f3n de Cumplimiento de Sentencia VISTO La Sentencia de fondo reparaciones y costas emitida por la Corte Interamericana de Derechos Humanos en adelante la Corte la Corte Interamericana o el Tribunal el de junio de mediante la cual DECLAR\u00d3 por unanimidad que el Estado viol\u00f3 en perjuicio del se\u00f1or Rigoberto Acosta Calder\u00f3n el Derecho a la Libertad Personal consagrado en el y", - "values": [ - "Corte Interamericana de Derechos Humanos" - ] - }, - { - "text": "Resoluci\u00f3n de la Corte Interamericana de Derechos Humanos De de febrero de Caso Caballero Delgado y Santana Vs. Colombia Supervisi\u00f3n de Cumplimiento de Sentencia VISTO Las Sentencias de Fondo y de Reparaciones y Costas dictadas en el caso Caballero Delgado y Santana por la Corte Interamericana de Derechos Humanos en adelante la Corte Interamericana o el Tribunal el de diciembre de y el de enero de Las Resoluciones de supervisi\u00f3n de cumplimiento emitidas por la Corte Interamericana el ", - "values": [ - "Corte Interamericana de Derechos Humanos" - ] - }, - { - "text": "RESOLUCI\u00d3N DE LA CORTE INTERAMERICANA DE DERECHOS HUMANOS DE DE MARZO DE MEDIDAS PROVISIONALES RESPECTO DE VENEZUELA ASUNTO MAR\u00cdA LOURDES AFIUNI VISTO El escrito de la Comisi\u00f3n Interamericana de Derechos Humanos en adelante la Comisi\u00f3n Interamericana o la Comisi\u00f3n de de noviembre de y sus anexos mediante los cuales someti\u00f3 a la Corte Interamericana de Derechos Humanos en adelante la Corte Interamericana la Corte o el Tribunal una solicitud de medidas provisionales en los t\u00e9rminos de los ", - "values": [ - "Corte Interamericana de Derechos Humanos" - ] - }, - { - "text": "RESOLUCI\u00d3N DE LA CORTE INTERAMERICANA DE DERECHOS HUMANOS DE DE JULIO DE CASO PALAMARA IRIBARNE VS. CHILE SUPERVISI\u00d3N DE CUMPLIMIENTO DE SENTENCIA VISTO La Sentencia de fondo reparaciones y costas emitida el de noviembre de en adelante la Sentencia por la Corte Interamericana de Derechos Humanos en adelante la Corte Interamericana la Corte o el Tribunal. Las Resoluciones de supervisi\u00f3n de cumplimiento de la Sentencia emitidas por la Corte Interamericana el de noviembre de y el de de ", - "values": [ - "Corte Interamericana de Derechos Humanos" - ] - }, - { - "text": "RESOLUCI\u00d3N DE LA CORTE INTERAMERICANA DE DERECHOS HUMANOS DE DE NOVIEMBRE DE MEDIDAS PROVISIONALES ORDENADAS POR LA CORTE INTERAMERICANA DE DERECHOS HUMANOS RESPECTO DE LA REP\u00daBLICA DE TRINIDAD Y TOBAGO CASOS JAMES Y OTROS VISTOS La Resoluci\u00f3n de la Corte Interamericana de Derechos Humanos en adelante la Corte Interamericana la Corte o el Tribunal de de noviembre de en la cual decidi\u00f3 Requerir que el Estado de Trinidad y Tobago mantenga las medidas provisionales ordenadas por la Corte de", - "values": [ - "Corte Interamericana de Derechos Humanos" - ] - }, - { - "text": "Resoluci\u00f3n de la Corte Interamericana de Derechos Humanos de de julio de Caso del Caracazo Vs. Venezuela Supervisi\u00f3n de Cumplimiento de Sentencia Visto La Sentencia de fondo dictada por la Corte Interamericana de Derechos Humanos en adelante la Corte Interamericana la Corte o el Tribunal el de noviembre de La Sentencia de reparaciones y costas en adelante la Sentencia dictada por la Corte el de agosto de La Resoluci\u00f3n de Supervisi\u00f3n de Cumplimiento de Sentencia dictada por la Corte el ", - "values": [ - "Corte Interamericana de Derechos Humanos" - ] - }, - { - "text": "VOTO RAZONADO DEL JUEZ ALBERTO P\u00c9REZ P\u00c9REZ EN EL CASO SU\u00c1REZ PERALTA vs. ECUADOR La finalidad del presente voto razonado es exclusivamente dejar en claro que las referencias al derecho a la salud contenidas en la sentencia no significan que se est\u00e9 asumiendo competencia en relaci\u00f3n con ese derecho en particular o con los derechos econ\u00f3micos sociales y culturales en general. La competencia contenciosa de la Corte est\u00e1 fijada en el art\u00edculo de la Convenci\u00f3n Americana y en el art\u00edculo p\u00e1rrafo ", - "values": [ - "Corte Interamericana de Derechos Humanos" - ] - }, - { - "text": "RESOLUCI\u00d3N DE LA CORTE INTERAMERICANA DE DERECHOS HUMANOS DE DE NOVIEMBRE DE CASO CINCO PENSIONISTAS VS. PER\u00da SUPERVISI\u00d3N DE CUMPLIMIENTO DE SENTENCIA VISTO La Sentencia de fondo reparaciones y costas en adelante la Sentencia o el Fallo dictada por la Corte Interamericana de Derechos Humanos en adelante la Corte Interamericana la Corte o el Tribunal el de febrero de Las Resoluciones dictadas por la Corte Interamericana el de noviembre de el de septiembre de el de julio de y el de ", - "values": [ - "Corte Interamericana de Derechos Humanos" - ] - }, - { - "text": "VOTE CONCORDANT DU JUGE AA. CAN\u00c7ADO TRINDADE Jai vot\u00e9 en faveur de ladoption du pr\u00e9sent Arr\u00eat par la Cour interam\u00e9ricaine des droits de lhomme dans laffaire Almonacid Arellano et autres c. le Chili. \u00c9tant donn\u00e9 limportance des questions qui y sont trait\u00e9es par la Cour je me vois dans lobligation dajouter au pr\u00e9sent Arr\u00eat ce Vote concordant qui contient mes r\u00e9flexions personnelles comme fondement de ma position relative aux d\u00e9lib\u00e9rations de ce Tribunal. Je vais axer mes r\u00e9flexions sur trois \u00e0", - "values": [ - "Corte Interamericana de Derechos Humanos" - ] - }, - { - "text": "VOTO RAZONADO DEL JUEZ AA. CAN\u00c7ADO TRINDADE He concurrido con mi voto a la adopci\u00f3n de la Sentencia que viene de adoptar la Corte Interamericana de Derechos Humanos en el caso de la Masacre de Pueblo Bello versus Colombia. Dada la importancia del caso y la complejidad de la materia tratada en la presente Sentencia me veo en la obligaci\u00f3n de dejar constancia de mis reflexiones sobre la misma como fundamento de mi posici\u00f3n sobre sus m\u00faltiples aspectos. El eje central de \u00e9stos \u00faltimos ata\u00f1e al ", - "values": [ - "Corte Interamericana de Derechos Humanos" - ] - }, - { - "text": "Resoluci\u00f3n de la Presidenta de la Corte Interamericana de Derechos Humanos de de noviembre de Caso B\u00e1maca Vel\u00e1squez Vs. Guatemala Solicitud de Levantamiento de Medidas Provisionales Supervisi\u00f3n de Cumplimiento de Sentencia Vistos A Solicitud de Levantamiento de Medidas Provisionales La Resoluci\u00f3n del Presidente de la Corte Interamericana de Derechos Humanos en adelante el Presidente de de junio de mediante la cual requiri\u00f3 a la Rep\u00fablica de Guatemala en adelante el Estado o Guatemala las ", - "values": [ - "Corte Interamericana de Derechos Humanos" - ] - }, - { - "text": "INFORME N\u00ba PETICI\u00d3N ADMISIBILIDAD ANA MAR\u00cdA RUGGERI COVA PERKINS ROCHA CONTRERAS Y JUAN CARLOS APITZ BARBERA VENEZUELA de marzo de I. RESUMEN El de abril de la Comisi\u00f3n Interamericana de Derechos Humanos en adelante la Comisi\u00f3n o CIDH recibi\u00f3 una denuncia presentada por Ana Mar\u00eda Ruggeri Cova Perkins Rocha Contreras y Juan Carlos Apitz Barbera en adelante los peticionarios asistidos por el Dr. H\u00e9ctor Fa\u00fandez Ledesma en adelante el representante de los peticionarios en la cual se alega ", - "values": [ - "Comisi\u00f3n Interamericana de Derechos Humanos" - ] - }, - { - "text": "RESOLUCI\u00d3N DE LA PRESIDENTA DE LA CORTE INTERAMERICANA DE DERECHOS HUMANOS DE DE DICIEMBRE DE CASO APITZ BARBERA Y OTROS CORTE PRIMERA DE LO CONTENCIOSO ADMINISTRATIVO VS. VENEZUELA SUPERVISI\u00d3N DE CUMPLIMIENTO DE SENTENCIA VISTO La Sentencia de excepci\u00f3n preliminar fondo reparaciones y costas en adelante la Sentencia dictada por la Corte Interamericana de Derechos Humanos en adelante la Corte la Corte Interamericana o el Tribunal el de agosto de mediante la cual dispuso El Estado deb\u00eda ", - "values": [ - "Corte Interamericana de Derechos Humanos" - ] - }, - { - "text": "VOTO RAZONADO DEL JUEZ AA. CAN\u00c7ADO TRINDADE He concurrido con mi voto para la adopci\u00f3n de la presente Sentencia de la Corte Interamericana de Derechos Humanos sobre reparaciones en el caso de la Masacre de Plan de S\u00e1nchez referente al Estado de Guatemala. Me veo adem\u00e1s en la obligaci\u00f3n de dejar constancia en este Voto Razonado de las reflexiones personales que me ha suscitado la presente Sentencia de la Corte tal como lo he hecho en mi anterior Voto Razonado en la Sentencia de fondo sobre el ", - "values": [ - "Corte Interamericana de Derechos Humanos" - ] - }, - { - "text": "RESOLUCI\u00d3N DEL PRESIDENTE DE LA CORTE INTERAMERICANA DE DERECHOS HUMANOS DE DE MARZO DE FONDO DE ASISTENCIA LEGAL DE V\u00cdCTIMAS CASO TIDE MENDEZ Y OTROS VS. REPUBLICA DOMINICANA VISTO El escrito de de julio de y su anexo mediante los cuales la Comisi\u00f3n Interamericana de Derechos Humanos en adelante la Comisi\u00f3n Interamericana o la Comisi\u00f3n someti\u00f3 a la Corte Interamericana de Derechos Humanos en adelante la Corte Interamericana la Corte o el Tribunal un caso en contra de la Rep\u00fablica en o", - "values": [ - "Corte Interamericana de Derechos Humanos" - ] - }, - { - "text": " CORTE INTERAMERICANA DE DERECHOS HUMANOS CASO Alb\u00e1n Cornejo y otros VS. ECUADOR SENTENCIA DE DE NOVIEMBRE DE FONDO REPARACIONES Y COSTAS En el caso Alb\u00e1n Cornejo y otros la Corte Interamericana de Derechos Humanos en adelante la Corte Interamericana la Corte o el Tribunal integrada por los siguientes jueces Sergio Garc\u00eda Ram\u00edrez Presidente Cecilia Medina Quiroga Vicepresidenta Manuel E. Ventura Robles Juez Diego Garc\u00edaSay\u00e1n Juez Leonardo A. Franco Juez Margarette May Macaulay Jueza y Rhadys ", - "values": [ - "Corte Interamericana de Derechos Humanos" - ] - }, - { - "text": "Corte Interamericana de Derechos Humanos Caso Blake Vs. Guatemala Sentencia de de julio de Excepciones Preliminares En el caso Blake la Corte Interamericana de Derechos Humanos integrada por los siguientes jueces H\u00e9ctor FixZamudio Presidente Hern\u00e1n Salgado Pesantes Vicepresidente Alejandro Montiel Arg\u00fcello Juez Oliver Jackman Juez Ant\u00f4nio A. Can\u00e7ado Trindade Juez Alfonso Novales Aguirre Juez ad hoc presente adem\u00e1s Manuel E. Ventura Robles Secretario de acuerdo con el art\u00edculo del Reglamento ", - "values": [ - "Corte Interamericana de Derechos Humanos" - ] - }, - { - "text": "VOTO RAZONADO DEL JUEZ AA. CAN\u00c7ADO TRINDADE He concurrido con mi voto para la adopci\u00f3n de la presente Sentencia de la Corte Interamericana de Derechos Humanos en el caso de la Masacre de Plan de S\u00e1nchez referente al Estado de Guatemala. Me veo adem\u00e1s en la obligaci\u00f3n de dejar constancia en este Voto Razonado de las reflexiones personales que me han suscitado los hechos del cas desp\u00e8ce por su particular gravedad. En efecto es la primera vez en toda la historia de la Corte Interamericana que una", - "values": [ - "Corte Interamericana de Derechos Humanos" - ] - }, - { - "text": "RESOLUCI\u00d3N DE LA CORTE INTERAMERICANA DE DERECHOS HUMANOS DE DE MAYO DE CASO G\u00d3MEZ PAQUIYAURI VS. PER\u00da MEDIDAS PROVISIONALES VISTOS El escrito de demanda presentado por la Comisi\u00f3n Interamericana de Derechos Humanos en adelante la Comisi\u00f3n o la Comisi\u00f3n Interamericana ante la Corte Interamericana de Derechos Humanos en adelante la Corte la Corte Interamericana o el Tribunal el de febrero de en el cual ofreci\u00f3 como testigos a los se\u00f1ores Marcelina Paquiyauri Illanes de G\u00f3mez Ricardo Samuel ", - "values": [ - "Corte Interamericana de Derechos Humanos" - ] - }, - { - "text": "CORTE INTERAMERICANA DE DERECHOS HUMANOS CASO ABRILL ALOSILLA Y OTROS VS. PER\u00da SENTENCIA DE DE MARZO DE Fondo Reparaciones y Costas En el Caso Abrill Alosilla y otros la Corte Interamericana de Derechos Humanos en adelante la Corte Interamericana la Corte o el Tribunal integrada por los siguientes jueces Leonardo A. Franco Presidente en ejercicio Manuel E. Ventura Robles Juez Margarette May Macaulay Jueza Rhadys Abreu Blondet Jueza Alberto P\u00e9rez P\u00e9rez Juez y Eduardo Vio Grossi Juez presentes ", - "values": [ - "Corte Interamericana de Derechos Humanos" - ] - }, - { - "text": "RESOLUCI\u00d3N DE LA PRESIDENTA DE LA CORTE INTERAMERICANA DE DERECHOS HUMANOS DE DE MARZO DE CASO GABRIELA PEROZO Y OTROS VS. VENEZUELA VISTOS El escrito de demanda presentado el de abril de por la Comisi\u00f3n Interamericana de Derechos Humanos en adelante la Comisi\u00f3n o la Comisi\u00f3n Interamericana ante la Corte Interamericana de Derechos Humanos en adelante la Corte la Corte Interamericana o el Tribunal en el cual ofreci\u00f3 siete testimonios y tres peritajes. Las notas de la Secretar\u00eda de la Corte", - "values": [ - "Corte Interamericana de Derechos Humanos" - ] - }, - { - "text": "Corte Interamericana de Direitos Humanos Caso da Comunidade Mayagna Sumo Awas Tingni Vs. Nicar\u00e1gua Senten\u00e7a de de agosto de M\u00e9rito Repara\u00e7\u00f5es e Custas No caso da Comunidade Mayagna Sumo Awas Tingni doravante denominada a Comunidade a Comunidade Mayagna a Comunidade Awas Tingni ou Awas Tingni a Corte Interamericana de Direitos Humanos doravante denominada a Corte a Corte Interamericana ou o Tribunal integrada pelos seguintes ju\u00edzes Ant\u00f4nio A. Can\u00e7ado Trindade Presidente M\u00e1ximo Pacheco G\u00f3mez ", - "values": [ - "Corte Interamericana de Derechos Humanos" - ] - }, - { - "text": "Corte Interamericana de Derechos Humanos Caso Cesti Hurtado Vs. Per\u00fa Sentencia de de mayo de Reparaciones y Costas En el caso Cesti Hurtado la Corte Interamericana de Derechos Humanos integrada por los siguientes jueces Ant\u00f4nio A. Can\u00e7ado Trindade Presidente Hern\u00e1n Salgado Pesantes Juez Oliver Jackman Juez Alirio Abreu Burelli Juez Sergio Garc\u00eda Ram\u00edrez Juez y Carlos Vicente de Roux Rengifo Juez presentes adem\u00e1s Manuel E. Ventura Robles Secretario y Renzo Pomi Secretario adjunto de acuerdo ", - "values": [ - "Corte Interamericana de Derechos Humanos" - ] - }, - { - "text": "RESOLUCI\u00d3N DE LA CORTE INTERAMERICANA DE DERECHOS HUMANOS DE DE MAYO DE SOLICITUD DE MEDIDAS PROVISIONALES DE LA COMISI\u00d3N INTERAMERICANA DE DERECHOS HUMANOS RESPECTO DE LA REP\u00daBLICA DE COSTA RICA CASO DEL PERI\u00d3DICO LA NACI\u00d3N VISTOS El escrito de la Comisi\u00f3n Interamericana de Derechos Humanos en adelante la Comisi\u00f3n o la Comisi\u00f3n Interamericana de de marzo de mediante el cual present\u00f3 una solicitud de medidas provisionales a favor de los se\u00f1ores Mauricio Herrera Ulloa y Fern\u00e1n Vargas y ", - "values": [ - "Corte Interamericana de Derechos Humanos" - ] - }, - { - "text": "VOTO CONCORDANTE E DISSIDENTE DO JUIZ AUGUSTO FOGEL PEDROZO Participei no pronunciamento da Senten\u00e7a proferida pela Corte no caso X\u00c1KMOK K\u00c1SEK e discordo de alguns pontos resolutivos da mesma com base nos fundamentos expostos nas delibera\u00e7\u00f5es e que compreenderam as seguintes considera\u00e7\u00f5es I. Voto Concordante. Rejei\u00e7\u00e3o de Solicita\u00e7\u00e3o do Estado sobre suspens\u00e3o do procedimento No item do Cap\u00edtulo XIII Pontos Resolutivos manifestei que concordo com a rejei\u00e7\u00e3o da solicita\u00e7\u00e3o do Estado sobre a do ", - "values": [ - "Corte Interamericana de Derechos Humanos" - ] - }, - { - "text": "Corte Interamericana de Derechos Humanos Caso del Caracazo Vs. Venezuela Sentencia de de noviembre de Fondo En el caso del Caracazo la Corte Interamericana de Derechos Humanos en adelante Interamericana o la Corte integrada por los siguientes Jueces la Corte Ant\u00f4nio A. Can\u00e7ado Trindade Presidente M\u00e1ximo Pacheco G\u00f3mez Vicepresidente Hern\u00e1n Salgado Pesantes Juez Oliver Jackman Juez y Carlos Vicente de Roux Rengifo Juez presentes adem\u00e1s Manuel E. Ventura Robles Secretario y Renzo Pomi Secretario", - "values": [ - "Corte Interamericana de Derechos Humanos" - ] - }, - { - "text": "RESOLUCI\u00d3N DE LA CORTE INTERAMERICANA DE DERECHOS HUMANOS DE DE MAYO DE CASO ESCU\u00c9 ZAPATA VS. COLOMBIA SUPERVISI\u00d3N DE CUMPLIMIENTO DE SENTENCIA VISTO La Sentencia de fondo reparaciones y costas en adelante la Sentencia dictada por la Corte Interamericana de Derechos Humanos en adelante la Corte la Corte Interamericana o el Tribunal el de julio de mediante la cual decidi\u00f3 que el Estado deb\u00eda realizar los pagos de las cantidades establecidas en la Sentencia por concepto de da\u00f1os da\u00f1os ", - "values": [ - "Corte Interamericana de Derechos Humanos" - ] - }, - { - "text": "RESOLUCI\u00d3N DEL PRESIDENTE DE LA CORTE INTERAMERICANA DE DERECHOS HUMANOS DE DE AGOSTO DE FONDO DE ASISTENCIA LEGAL DE V\u00cdCTIMAS CASO CANALES HUAPAYA Y OTROS VS. PER\u00da VISTO El escrito de de diciembre de y sus anexos mediante los cuales la Comisi\u00f3n Interamericana de Derechos Humanos en adelante la Comisi\u00f3n Interamericana o la Comisi\u00f3n someti\u00f3 ante la Corte Interamericana de Derechos Humanos en adelante la Corte Interamericana la Corte o el Tribunal el presente caso El escrito de de marzo ", - "values": [ - "Corte Interamericana de Derechos Humanos" - ] - }, - { - "text": "CORTE INTERAMERICANA DE DERECHOS HUMANOS CASO RODR\u00cdGUEZ VERA Y OTROS DESAPARECIDOS DEL PALACIO DE JUSTICIA VS. COLOMBIA SENTENCIA DE DE NOVIEMBRE DE Excepciones Preliminares Fondo Reparaciones y Costas En el caso Rodr\u00edguez Vera y otros Desaparecidos del Palacio de Justicia la Corte Interamericana de Derechos Humanos en adelante la Corte Interamericana la Corte o este Tribunal integrada por los siguientes jueces Roberto F. Caldas Presidente en ejercicio Manuel E. Ventura Robles Juez Diego ", - "values": [ - "Corte Interamericana de Derechos Humanos" - ] - }, - { - "text": "RESOLUCI\u00d3N DE LA CORTE INTERAMERICANA DE DERECHOS HUMANOS DE DE ENERO DE MEDIDAS PROVISIONALES ADOPTADAS POR LA CORTE INTERAMERICANA DE DERECHOS HUMANOS RESPECTO DE LA REP\u00daBLICA DE COLOMBIA CASO CABALLERO DELGADO Y SANTANA VISTO La solicitud de medidas provisionales de la Comisi\u00f3n Interamericana de Derechos Humanos en adelante la Comisi\u00f3n o la Comisi\u00f3n Interamericana presentada ante la Corte Interamericana de Derechos Humanos en adelante la Corte o la Corte Interamericana el de diciembre de", - "values": [ - "Corte Interamericana de Derechos Humanos" - ] - }, - { - "text": "INFORME N\u00ba PETICI\u00d3N ADMISIBILIDAD YVON NEPTUNE HAIT\u00cd de octubre de I. RESUMEN El de abril de la Comisi\u00f3n Interamericana de Derechos Humanos en adelante la CIDH o la Comisi\u00f3n recibi\u00f3 una denuncia presentada por Brian Concannon Mario Joseph Hastings Human Rights Project for Hait\u00ed en adelante los peticionarios en representaci\u00f3n de Yvon Neptune contra la Rep\u00fablica de Hait\u00ed en adelante el Estado o Hait\u00ed cuyos hechos caracterizan alegadas violaciones de sus derechos a un trato humano art\u00edculo ", - "values": [ - "Comisi\u00f3n Interamericana de Derechos Humanos" - ] - }, - { - "text": "Corte Interamericana de Derechos Humanos Caso Carpio Nicolle y otros Vs. Guatemala Sentencia de de noviembre de Fondo Reparaciones y Costas En el caso Carpio Nicolle y otros la Corte Interamericana de Derechos Humanos en adelante la Corte la Corte Interamericana o el Tribunal integrada por los siguientes jueces Sergio Garc\u00eda Ram\u00edrez Presidente Alirio Abreu Burelli Vicepresidente Oliver Jackman Juez Ant\u00f4nio A. Can\u00e7ado Trindade Juez Cecilia Medina Quiroga Jueza Manuel E. Ventura Robles Juez ", - "values": [ - "Corte Interamericana de Derechos Humanos" - ] - }, - { - "text": "VOTO CONCURRENTE DEL JUEZ EDUARDO VIO GROSSI CORTE INTERAMERICANA DE DERECHOS HUMANOS CASO QUISPIALAYA VILCAPOMA VS. PER\u00da SENTENCIA DE DE NOVIEMBRE DE Excepciones Preliminares Fondo Reparaciones y Costas El Juez Humberto Antonio Sierra Porto se adhiri\u00f3 al presente voto del Juez Eduardo Vio Grossi. Se emite el presente voto concurrente con respecto a la Sentencia dictada en la causa de autos a los efectos de dejar expresa constancia de que el suscrito entiende que lo se\u00f1alado en el p\u00e1rrafo de", - "values": [ - "Corte Interamericana de Derechos Humanos" - ] - }, - { - "text": "RESOLUCI\u00d3N DE LA CORTE INTERAMERICANA DE DERECHOS HUMANOS DE DE MARZO DE MEDIDAS PROVISIONALES ORDENADAS POR LA CORTE EN EL CASO IVCHER BRONSTEIN VISTOS La resoluci\u00f3n de la Corte Interamericana de Derechos Humanos en adelante la Corte de de noviembre de mediante la cual requiri\u00f3 al Estado del Per\u00fa en adelante el Estado o el Per\u00fa la adopci\u00f3n de medidas provisionales a favor del se\u00f1or Baruch Ivcher Bronstein su esposa Neomy Even de Ivcher y sus hijas Dafna Ivcher Even Michal Ivcher Even Tal ", - "values": [ - "Corte Interamericana de Derechos Humanos" - ] - }, - { - "text": "RESOLUCI\u00d3N DE LA CORTE INTERAMERICANA DE DERECHOS HUMANOS DE DE JULIO DE CASO CINCO PENSIONISTAS VS. PER\u00da SUPERVISI\u00d3N DE CUMPLIMIENTO DE SENTENCIA VISTOS La Sentencia de fondo reparaciones y costas emitida el de febrero de por la Corte Interamericana de Derechos Humanos en adelante la Corte la Corte Interamericana o el Tribunal mediante la cual el Tribunal resolvi\u00f3 inter alia que las consecuencias patrimoniales que pudiera tener la violaci\u00f3n al derecho a la propiedad privada deber\u00e1n en", - "values": [ - "Corte Interamericana de Derechos Humanos" - ] - }, - { - "text": "RESOLUCI\u00d3N DE LA CORTE INTERAMERICANA DE DERECHOS HUMANOS DE DE NOVIEMBRE DE SOLICITUD DE MEDIDAS PROVISIONALES RESPECTO DE LA REP\u00daBLICA DE COSTA RICA ASUNTO ROJAS MADRIGAL EN RELACI\u00d3N CON EL CASO AMRHEIN Y OTROS VS. COSTA RICA VISTO El escrito de sometimiento de de noviembre de mediante Comisi\u00f3n Interamericana de Derechos Humanos en adelante la Interamericana o la Comisi\u00f3n present\u00f3 a la Corte Interamericana de Humanos en adelante la Corte o el Tribunal el Caso Amrhein y otros Rica. el ", - "values": [ - "Corte Interamericana de Derechos Humanos" - ] - }, - { - "text": "RESOLUCI\u00d3N DEL PRESIDENTE DE LA CORTE INTERAMERICANA DE DERECHOS HUMANOS DE DE ENERO DE MEDIDAS PROVISIONALES RESPECTO DE HONDURAS ASUNTO GLADYS LANZA OCHOA VISTO La Resoluci\u00f3n dictada por la Corte Interamericana de Derechos Humanos en adelante la Corte Interamericana la Corte o el Tribunal el de septiembre de mediante la cual el Tribunal resolvi\u00f3 Requerir al Estado de Honduras que adopte de forma inmediata las medidas que sean necesarias para proteger la vida e integridad personal de la ", - "values": [ - "Corte Interamericana de Derechos Humanos" - ] - }, - { - "text": "RESOLUCI\u00d3N DEL PRESIDENTE DE LA CORTE INTERAMERICANA DE DERECHOS HUMANOS DEL DE JULIO DE AMPLIACI\u00d3N DE LAS MEDIDAS PROVISIONALES SOLICITADAS POR LA COMISI\u00d3N INTERAMERICANA DE DERECHOS HUMANOS RESPECTO DE LA REPUBLICA DE GUATEMALA CASO CARPIO NICOLLE VISTO La Resoluci\u00f3n del Presidente de la Corte Interamericana de Derechos Humanos en adelante el Presidente del de junio de mediante la que se resolvi\u00f3 Solicitar al Gobierno de la Rep\u00fablica de Guatemala que adopte sin dilaci\u00f3n cuantas medidas ", - "values": [ - "Corte Interamericana de Derechos Humanos" - ] - }, - { - "text": "Corte Interamericana de Derechos Humanos Caso El Amparo Vs. Venezuela Sentencia de de septiembre de Reparaciones y Costas En el caso El Amparo la Corte Interamericana de Derechos Humanos integrada por los siguientes jueces H\u00e9ctor FixZamudio Presidente Hern\u00e1n Salgado Pesantes Vicepresidente Alejandro Montiel Arg\u00fcello Juez Alirio Abreu Burelli Juez Ant\u00f4nio A. Can\u00e7ado Trindade Juez presentes adem\u00e1s Manuel E. Ventura Robles Secretario V\u00edctor Ml. Rodr\u00edguez Rescia Secretario adjunto interino de ", - "values": [ - "Corte Interamericana de Derechos Humanos" - ] - }, - { - "text": "VOTO RAZONADO DE JUEZ AA. CAN\u00c7ADO TRINDADE Al votar a favor de la adopci\u00f3n por la Corte Interamericana de Derechos Humanos de la presente Sentencia sobre reparaciones en el caso Cantoral Benavides versus Per\u00fa me veo obligado a dejar constancia de mis breves reflexiones acerca de los puntos resolutivos ns. y de esta Sentencia. El primer punto plantea la cuesti\u00f3n del alcance del deber de reparar bajo el art\u00edculo de la Convenci\u00f3n mientras que el segundo punto se refiere a las formas del deber ", - "values": [ - "Corte Interamericana de Derechos Humanos" - ] - }, - { - "text": "CORTE INTERAMERICANA DE DERECHOS HUMANOS CASO VERA VERA Y OTRA VS. ECUADOR SENTENCIA DE DE MAYO DE Excepci\u00f3n Preliminar Fondo Reparaciones y Costas En el Caso Vera Vera y otra La Corte Interamericana de Derechos Humanos en adelante la Corte Interamericana la Corte o el Tribunal integrada por los siguientes jueces Diego Garc\u00edaSay\u00e1n Presidente Leonardo A. Franco Vicepresidente Manuel E. Ventura Robles Juez Margarette May Macaulay Jueza Rhadys Abreu Blondet Jueza Alberto P\u00e9rez P\u00e9rez Juez Eduardo", - "values": [ - "Corte Interamericana de Derechos Humanos" - ] - }, - { - "text": "RESOLUCI\u00d3N DEL PRESIDENTE DE LA CORTE INTERAMERICANA DE DERECHOS HUMANOS DE DE DICIEMBRE DE CASO COMUNIDAD CAMPESINA DE SANTA B\u00c1RBARA VS. PER\u00da VISTO El escrito de sometimiento del caso y el Informe de Admisibilidad y Fondo de la Comisi\u00f3n Interamericana de Derechos Humanos en adelante la Comisi\u00f3n Interamericana o la Comisi\u00f3n el escrito de solicitudes argumentos y pruebas en adelante el ESAP de los representantes y el escrito de excepciones preliminares contestaci\u00f3n al sometimiento del caso y ", - "values": [ - "Corte Interamericana de Derechos Humanos" - ] - }, - { - "text": "RESOLUCI\u00d3N DE LA CORTE INTERAMERICANA DE DERECHOS HUMANOS DE DE SEPTIEMBRE DE SOLICITUD DE MEDIDAS PROVISIONALES Y SUPERVISI\u00d3N DE CUMPLIMIENTO DE SENTENCIA RESPECTO DE LA REP\u00daBLICA DE SURINAME CASO DEL PUEBLO SARAMAKA VISTO La Sentencia de Excepciones Preliminares Fondo Reparaciones y Costas en adelante la Sentencia dictada por la Corte Interamericana de Derechos Humanos en adelante la Corte Interamericana la Corte o el Tribunal el de noviembre de La Sentencia de Interpretaci\u00f3n de la de ", - "values": [ - "Corte Interamericana de Derechos Humanos" - ] - }, - { - "text": "RESOLUCI\u00d3N DE LA CORTE INTERAMERICANA DE DERECHOS HUMANOS DE DE MAYO DE FONDO DE ASISTENCIA LEGAL DE V\u00cdCTIMAS CASO PUEBLO IND\u00cdGENA KICHWA DE SARAYAKU VS. ECUADOR VISTO La Sentencia de fondo reparaciones y costas en adelante la Sentencia dictada por la Corte Interamericana de Derechos Humanos en adelante la Corte la Corte Interamericana o el Tribunal el de junio de mediante la cual dispuso inter alia que El Estado debe pagar las cantidades fijadas en los p\u00e1rrafos y de la presente por ", - "values": [ - "Corte Interamericana de Derechos Humanos" - ] - }, - { - "text": "RESOLU\u00c7\u00c3O DA PRESIDENTA DA CORTE INTERAMERICANA DE DIREITOS HUMANOS DE DE OUTUBRO DE CASO ESCHER E OUTROS VS. BRASIL VISTO O escrito de demanda apresentado pela Comiss\u00e3o Interamericana de Direitos Humanos doravante denominada Comiss\u00e3o Interamericana ou Comiss\u00e3o ante a Corte Interamericana de Direitos Humanos doravante denominada Corte Interamericana Corte ou Tribunal em de dezembro de mediante o qual ofereceu cinco testemunhas e um perito. O escrito de peti\u00e7\u00f5es argumentos e provas de ", - "values": [ - "Corte Interamericana de Derechos Humanos" - ] - }, - { - "text": "CORTE INTERAMERICANA DE DERECHOS HUMANOS CASO ARG\u00dcELLES Y OTROS VS. ARGENTINA SENTENCIA DE DE NOVIEMBRE DE Excepciones Preliminares Fondo Reparaciones y Costas En el caso Arg\u00fcelles y otros la Corte Interamericana de Derechos Humanos en adelante la Corte Interamericana la Corte o el Tribunal integrada por los siguientes jueces Humberto Antonio Sierra Porto Presidente Roberto F. Caldas Vicepresidente Manuel E. Ventura Robles Juez Eduardo Vio Grossi Juez y Eduardo Ferrer MacGregor Poisot Juez ", - "values": [ - "Corte Interamericana de Derechos Humanos" - ] - }, - { - "text": "RESOLUCI\u00d3N DE LA CORTE INTERAMERICANA DE DERECHOS HUMANOS DE DE NOVIEMBRE DE MEDIDAS PROVISIONALES ADOPTADAS POR LA CORTE INTERAMERICANA DE DERECHOS HUMANOS RESPECTO DE LA REP\u00daBLICA DE GUATEMALA CASO VOGT VISTOS El escrito de de marzo de y sus anexos mediante el cual la Comisi\u00f3n Interamericana de Derechos Humanos en adelante la Comisi\u00f3n o la Comisi\u00f3n Interamericana someti\u00f3 a la Corte Interamericana de Derechos Humanos en adelante la Corte o la Corte Interamericana en virtud de los de la ", - "values": [ - "Corte Interamericana de Derechos Humanos" - ] - }, - { - "text": "RESOLUCI\u00d3N DE LA CORTE INTERAMERICANA DE DERECHOS HUMANOS DE DE AGOSTO DE SOLICITUD DE MEDIDAS PROVISIONALES CASO ACEVEDO JARAMILLO Y OTROS VS. PER\u00da VISTO La Sentencia de excepciones preliminares fondo reparaciones y costas en adelante la Sentencia emitida en el presente caso por la Corte Interamericana de Derechos Humanos en adelante la Corte Interamericana la Corte o este Tribunal el de febrero de La Corte determin\u00f3 que la Rep\u00fablica del Per\u00fa en adelante el Estado o Per\u00fa era por haber", - "values": [ - "Corte Interamericana de Derechos Humanos" - ] - }, - { - "text": "RESOLU\u00c7\u00c3O DA CORTE INTERAMERICANA DE DIREITOS HUMANOS DE DE JULHO DE MEDIDAS PROVIS\u00d3RIAS E SOLICITA\u00c7\u00c3O DE AMPLIA\u00c7\u00c3O DE MEDIDAS PROVIS\u00d3RIAS COM RESPEITO \u00c0 REP\u00daBLICA FEDERATIVA DO BRASIL CASO DAS CRIAN\u00c7AS E ADOLESCENTES PRIVADOS DE LIBERDADE NO COMPLEXO DO TATUAP\u00c9 DA FEBEM VISTOS A Resolu\u00e7\u00e3o da Corte Interamericana de Direitos Humanos doravante denominada a Corte Interamericana ou o Tribunal do dia de novembro de mediante a qual solicitou ao Estado do Brasil doravante o Estado que adote de ", - "values": [ - "Corte Interamericana de Derechos Humanos" - ] - }, - { - "text": "RESOLUCI\u00d3N DE LA CORTE INTERAMERICANA DE DERECHOS HUMANOS DE DE FEBRERO DE SOLICITUD DE MEDIDAS PROVISIONALES DE LA COMISI\u00d3N INTERAMERICANA DE DERECHOS HUMANOS RESPECTO DE LOS ESTADOS UNIDOS MEXICANOS CASO GALLARDO RODR\u00cdGUEZ VISTO El escrito de la Comisi\u00f3n Interamericana de Derechos Humanos en adelante la Comisi\u00f3n o la Comisi\u00f3n Interamericana de de diciembre de mediante el cual present\u00f3 una solicitud de medidas provisionales para evitar da\u00f1os irreparables al General Jos\u00e9 Francisco Gallardo", - "values": [ - "Corte Interamericana de Derechos Humanos" - ] - }, - { - "text": "RESOLUCI\u00d3N DE LA CORTE INTERAMERICANA DE DERECHOS HUMANOS DE DE DICIEMBRE DE MEDIDAS PROVISIONALES LILIANA ORTEGA Y OTRAS RESPECTO DE VENEZUELA VISTOS La Resoluci\u00f3n de la Corte Interamericana de Derechos Humanos en adelante la Corte Interamericana la Corte o el Tribunal de de noviembre de relativa a las medidas provisionales solicitadas por la Comisi\u00f3n Interamericana de Derechos Humanos en adelante la Comisi\u00f3n Interamericana o la Comisi\u00f3n a favor de las se\u00f1oras Liliana Ortega Yris Medina ", - "values": [ - "Corte Interamericana de Derechos Humanos" - ] - }, - { - "text": "VOTO CONCURRENTE DEL JUEZ EDUARDO FERRER MACGREGOR POISOT CASO CRUZ SANCHEZ Y OTROS VS. PER\u00da SENTENCIA DE DE ABRIL DE Excepciones Preliminares Fondo Reparaciones y Costas I. INTRODUCCI\u00d3N Quisiera reafirmar el m\u00e1s en\u00e9rgico rechazo que merece cualquier violencia terrorista la cual lesiona a los individuos y al conjunto de la sociedad como ha enfatizado la Corte Interamericana de Derechos Humanos en adelante la Corte o el Tribunal Interamericano en otros casos contra Per\u00fa Si bien los Estados ", - "values": [ - "Corte Interamericana de Derechos Humanos" - ] - }, - { - "text": "RESOLUCI\u00d3N DE LA CORTE INTERAMERICANA DE DERECHOS HUMANOS DE DE ENERO DE CASO ACEVEDO BUEND\u00cdA Y OTROS CESANTES Y JUBILADOS DE LA CONTRALOR\u00cdA VS. PER\u00da SUPERVISI\u00d3N DE CUMPLIMIENTO DE SENTENCIA VISTO La Sentencia de excepci\u00f3n preliminar fondo reparaciones y costas en adelante la Sentencia dictada por la Corte Interamericana de Derechos Humanos en adelante la Corte Interamericana la Corte o el Tribunal el de julio de mediante la cual la Corte declar\u00f3 que la Rep\u00fablica del Per\u00fa en adelante el ", - "values": [ - "Corte Interamericana de Derechos Humanos" - ] - }, - { - "text": "Resoluci\u00f3n de la Corte Interamericana de Derechos Humanos de febrero de Medidas Provisionales Respecto de El Salvador Caso Garc\u00eda Prieto y otros Vs. El Salvador Visto La Resoluci\u00f3n de la Corte Interamericana de Derechos Humanos en adelante la Corte Interamericana la Corte o el Tribunal de de enero de en la que resolvi\u00f3 Ratificar la Resoluci\u00f3n del Presidente de de diciembre de Requerir al Estado que mantenga las medidas que hubiese adoptado y que adopte de forma inmediata las medidas ", - "values": [ - "Corte Interamericana de Derechos Humanos" - ] - }, - { - "text": "Resoluci\u00f3n de la Corte Interamericana de Derechos Humanos de de julio de Medidas Provisionales respecto de Guatemala A favor de los Integrantes del Equipo de Estudios Comunitarios y Acci\u00f3n Psicosocial ECAP Caso Masacre Plan de S\u00e1nchez Visto La Resoluci\u00f3n de la Corte Interamericana de Derechos Humanos en adelante la Corte Interamericana la Corte o el Tribunal de de noviembre de mediante la cual orden\u00f3 a la Rep\u00fablica de Guatemala en adelante el Estado o Guatemala adoptar medidas a favor de ", - "values": [ - "Corte Interamericana de Derechos Humanos" - ] - }, - { - "text": "VOTO RAZONADO DEL JUEZ AA. CAN\u00c7ADO TRINDADE He concurrido con mi voto a la adopci\u00f3n de la presente Sentencia de la Corte Interamericana de Derechos Humanos sobre el caso de los Trabajadores Cesados del Congreso relativo al Estado peruano. Me permito agregar en este breve Voto Razonado algunas precisiones de orden conceptual. Aunque la soluci\u00f3n de este caso no me satisfaga la presente Sentencia de la Corte al menos revela la importancia del derecho a un recurso efectivo para que no se presente ", - "values": [ - "Corte Interamericana de Derechos Humanos" - ] - }, - { - "text": "RESOLUCI\u00d3N DE LA CORTE INTERAMERICANA DE DERECHOS HUMANOS DE DE ENERO DE MEDIDAS PROVISIONALES RESPECTO DE LA REP\u00daBLICA DE COLOMBIA ASUNTO DEL PUEBLO IND\u00cdGENA KANKUAMO VISTO La Resoluci\u00f3n de la Corte Interamericana de Derechos Humanos en adelante la Corte Interamericana la Corte o el Tribunal de de julio de mediante la cual resolvi\u00f3 inter alia Requerir al Estado que adopte sin dilaci\u00f3n las medidas que sean necesarias para proteger la vida e integridad personal de todos los miembros de las", - "values": [ - "Corte Interamericana de Derechos Humanos" - ] - }, - { - "text": "VOTO FUNDAMENTADO DO JUIZ SERGIO GARC\u00cdA RAM\u00cdREZ COM RELA\u00c7\u00c3O \u00c0 SENTEN\u00c7A DA CORTE INTERAMERICANA DE DIREITOS HUMANOS NO CASO CASTRO E CASTRO DE DE NOVEMBRO DE Neste Voto referirmeei a duas quest\u00f5es que a Corte Interamericana analisa na Senten\u00e7a proferida no caso Castro Castro Peru de de novembro de que \u00e9 certamente uma data simb\u00f3lica no compromisso geral de combater toda forma de viol\u00eancia contra a mulher. Uma dessas quest\u00f5es da qual me ocuparei em primeiro lugar e com mais amplitude \u00e0 por", - "values": [ - "Corte Interamericana de Derechos Humanos" - ] - }, - { - "text": "RESOLUCI\u00d3N DE LA CORTE INTERAMERICANA DE DERECHOS HUMANOS DE DE JULIO DE CASO GARC\u00cdA ASTO Y RAM\u00cdREZ ROJAS VS. PER\u00da SUPERVISI\u00d3N DE CUMPLIMIENTO DE SENTENCIA VISTO La Sentencia de fondo reparaciones y costas emitida el de noviembre de en adelante la Sentencia por la Corte Interamericana de Derechos Humanos en adelante la Corte Interamericana la Corte o el Tribunal mediante la cual el Tribunal dispuso que el Estado debe proporcionar atenci\u00f3n gratuita m\u00e9dica y psicol\u00f3gica al se\u00f1or Wilson ", - "values": [ - "Corte Interamericana de Derechos Humanos" - ] - }, - { - "text": "RESOLUCI\u00d3N DE LA CORTE INTERAMERICANA DE DERECHOS HUMANOS DE DE NOVIEMBRE DE CASOS CHOCR\u00d3N CHOCR\u00d3N D\u00cdAZ PE\u00d1A Y UZC\u00c1TEGUI Y OTROS VS. VENEZUELA SUPERVISI\u00d3N DE CUMPLIMIENTO DE SENTENCIAS VISTO Las Sentencias emitidas por la Corte Interamericana de Derechos Humanos en adelante la Corte o el Tribunal el julio de el de junio de y el de septiembre de en los siguientes tres casos contra la Rep\u00fablica Bolivariana de Venezuela en adelante el Estado o Venezuela i Chocr\u00f3n Chocr\u00f3n ii D\u00edaz Pe\u00f1a y ", - "values": [ - "Corte Interamericana de Derechos Humanos" - ] - }, - { - "text": "RESOLUCION DEL PRESIDENTE DE LA CORTE INTERAMERICANA DE DERECHOS HUMANOS DE DE ABRIL DE CASO V\u00c9LIZ FRANCO Y OTROS VS. GUATEMALA VISTO El escrito de sometimiento del caso de de mayo de presentado por la Comisi\u00f3n Interamericana de Derechos Humanos en adelante la Comisi\u00f3n Interamericana o la Comisi\u00f3n ante la Corte Interamericana de Derechos Humanos en adelante la Corte Interamericana la Corte o el Tribunal contra la Rep\u00fablica de Guatemala en adelante Guatemala o el Estado mediante el cual ", - "values": [ - "Corte Interamericana de Derechos Humanos" - ] - }, - { - "text": "VOTO RAZONADO DEL JUEZ SERGIO GARCIA RAMIREZ EN LA SENTENCIA SOBRE REPARACIONES DEL CASO MASACRE PLAN DE SANCHEZ DE DE NOVIEMBRE DE A. DERECHOS INDIVIDUALES Y COLECTIVOS Las consideraciones y decisiones que contiene la sentencia sobre reparaciones dictada por la Corte Interamericana de Derechos Humanos en el Caso Masacre Plan de S\u00e1nchez el de noviembre de tras la resoluci\u00f3n sobre puntos de fondo emitida el de abril del mismo a\u00f1o permiten volver sobre un tema que se ha manejado en otros ", - "values": [ - "Corte Interamericana de Derechos Humanos" - ] - }, - { - "text": "CORTE INTERAMERICANA DE DERECHOS HUMANOS CASO IBSEN C\u00c1RDENAS E IBSEN PE\u00d1A VS. BOLIVIA SENTENCIA DE DE SEPTIEMBRE DE Fondo Reparaciones y Costas En el caso Ibsen C\u00e1rdenas e Ibsen Pe\u00f1a la Corte Interamericana de Derechos Humanos en adelante la Corte Interamericana la Corte o el Tribunal integrada por los siguientes jueces Diego Garc\u00edaSay\u00e1n Presidente Leonardo Franco Vicepresidente Manuel E. Ventura Robles Juez Margarette May Macaulay Jueza Rhadys Abreu Blondet Jueza Alberto P\u00e9rez P\u00e9rez Juez y ", - "values": [ - "Corte Interamericana de Derechos Humanos" - ] - }, - { - "text": "VOTO RAZONADO DEL JUEZ AA. CAN\u00c7ADO TRINDADE Voto a favor de la adopci\u00f3n por la Corte Interamericana de Derechos Humanos de la presente Sentencia sobre Excepciones Preliminares en el caso Constantine y Otros versus Trinidad y Tobago que a mi juicio representa un aporte significativo del Derecho Internacional de los Derechos Humanos a la evoluci\u00f3n de un aspecto espec\u00edfico del Derecho Internacional contempor\u00e1neo a saber el atinente a la jurisdicci\u00f3n internacional obligatoria basada en la de la ", - "values": [ - "Corte Interamericana de Derechos Humanos" - ] - }, - { - "text": "VOTO RAZONADO DEL JUEZ SERGIO GARC\u00cdA RAM\u00cdREZ A LA SENTENCIA DE LA CORTE INTERAMERICANA DE DERECHOS HUMANOS SOBRE EL CASO L\u00d3PEZ \u00c1LVAREZ VS. HONDURAS DEL DE FEBRERO DE I. EL DEBIDO PROCESO El debido proceso constituye una garant\u00eda instrumental y secundaria que llega a ser en rigor material y primaria como clave de acceso a la tutela nacional e internacional de los derechos y a la reclamaci\u00f3n sobre los deberes. Su relevancia ha sido constantemente destacada. Lo ha hecho la jurisprudencia de la ", - "values": [ - "Corte Interamericana de Derechos Humanos" - ] - }, - { - "text": "VOTO RAZONADO DEL JUEZ AD HOC FRANCISCO EGUIGUREN PRAELI He votado de manera conjunta compartiendo la sentencia de la Corte que declara la responsabilidad del Estado del Per\u00fa por la violaci\u00f3n de los derechos de los hermanos Rafael y Emilio G\u00f3mez Paquiyauri a la vida libertad personal integridad personal garant\u00edas judiciales y otros. No obstante estimo necesario expresar algunas reflexiones personales respecto a la naturaleza y circunstancias particulares de este caso as\u00ed como a la forma en que ", - "values": [ - "Corte Interamericana de Derechos Humanos" - ] - }, - { - "text": "Resolu\u00e7\u00e3o da Corte Interamericana de Direitos Humanos de de novembro de Medidas Provis\u00f3rias a respeito do Brasil Assunto das crian\u00e7as e adolescentes privados de liberdade no Complexo do Tatuap\u00e9 da Funda\u00e7\u00e3o CASA VISTO A Resolu\u00e7\u00e3o do Presidente da Corte Interamericana de Direitos Humanos doravante denominada Corte Interamericana Corte ou Tribunal de de novembro de e as Resolu\u00e7\u00f5es emitidas pela Corte em de novembro de em de julho de e em de julho de Nessa \u00faltima o Tribunal resolveu ao", - "values": [ - "Corte Interamericana de Derechos Humanos" - ] - }, - { - "text": "RESOLUCI\u00d3N DE LA CORTE INTERAMERICANA DE DERECHOS HUMANOS DE DE MARZO DE MEDIDAS PROVISIONALES RESPECTO DE LA REP\u00daBLICA DEL PER\u00da CASO WONG HO WING VISTO La Resoluci\u00f3n del entonces Presidente en ejercicio para el presente caso en adelante el Presidente en ejercicio de la Corte Interamericana de Derechos Humanos en adelante la Corte Interamericana la Corte o este Tribunal de de marzo de as\u00ed como las Resoluciones de este Tribunal de de mayo y de noviembre de de de marzo y de julio de ", - "values": [ - "Corte Interamericana de Derechos Humanos" - ] - }, - { - "text": "RESOLUCI\u00d3N DE LA CORTE INTERAMERICANA DE DERECHOS HUMANOS DE DE SEPTIEMBRE DE CASO DE LA MASACRE DE LAS DOS ERRES VS. GUATEMALA SUPERVISI\u00d3N DE CUMPLIMIENTO DE SENTENCIA VISTO La Sentencia de excepci\u00f3n preliminar fondo reparaciones y costas en adelante la Sentencia dictada por la Corte Interamericana de Derechos Humanos en adelante la Corte Interamericana la Corte o el Tribunal el de noviembre de La Resoluci\u00f3n de Supervisi\u00f3n de Cumplimiento de Sentencia de de julio de en la que la Corte", - "values": [ - "Corte Interamericana de Derechos Humanos" - ] - }, - { - "text": "Resoluci\u00f3n de la Corte Interamericana de Derechos Humanos de de noviembre de Medidas Provisionales respecto de Guatemala Caso Mack Chang y otros Visto La Resoluci\u00f3n de la Presidencia de la Corte Interamericana de Derechos Humanos en adelante la Corte la Corte Interamericana o el Tribunal de de agosto de y las Resoluciones de la Corte de de agosto de de febrero y de junio de y de enero de En esta \u00faltima Resoluci\u00f3n resolvi\u00f3 inter alia Requerir al Estado que mantenga las medidas que ", - "values": [ - "Corte Interamericana de Derechos Humanos" - ] - }, - { - "text": "RESOLUCI\u00d3N DE LA CORTE INTERAMERICANA DE DERECHOS HUMANOS DE DE JUNIO DE CASO YARCE Y OTRAS VS. COLOMBIA VISTO La Resoluci\u00f3n del Presidente de la Corte Interamericana de Derechos Humanos en ejercicio para al presente caso en adelante el Presidente en ejercicio de de mayo de en adelante la Resoluci\u00f3n del Presidente en ejercicio mediante la cual inter alia orden\u00f3 la recepci\u00f3n de diversas declaraciones periciales mediante affid\u00e1vit y convoc\u00f3 a la Comisi\u00f3n Interamericana de Derechos Humanos en", - "values": [ - "Corte Interamericana de Derechos Humanos" - ] - }, - { - "text": "RESOLUCI\u00d3N DEL PRESIDENTE DE LA CORTE INTERAMERICANA DE DERECHOS HUMANOS DE DE MARZO DE ROCHAC HERN\u00c1NDEZ Y OTROS VS. EL SALVADOR CONVOCATORIA A AUDIENCIA VISTO El escrito de sometimiento del caso presentado por la Comisi\u00f3n Interamericana de Derechos Humanos en adelante la Comisi\u00f3n Interamericana o la Comisi\u00f3n ante la Corte Interamericana de Derechos Humanos en adelante la Corte Interamericana la Corte o el Tribunal de de marzo de mediante el cual ofreci\u00f3 un dictamen pericial e indic\u00f3 el ", - "values": [ - "Corte Interamericana de Derechos Humanos" - ] - }, - { - "text": "RESOLUCI\u00d3N DEL PRESIDENTE DE LA CORTE INTERAMERICANA DE DERECHOS HUMANOS DE DE DICIEMBRE DE CASO HERMANOS LANDAETA MEJ\u00cdAS Y OTROS VS. VENEZUELA VISTO El escrito de sometimiento del caso presentado por la Comisi\u00f3n Interamericana de Derechos Humanos en adelante la Comisi\u00f3n Interamericana o la Comisi\u00f3n ante la Corte Interamericana de Derechos Humanos en adelante la Corte Interamericana la Corte o el Tribunal el de julio de mediante el cual ofreci\u00f3 dos dict\u00e1menes periciales. El escrito de y", - "values": [ - "Corte Interamericana de Derechos Humanos" - ] - }, - { - "text": "RESOLUCI\u00d3N DEL PRESIDENTE DE LA CORTE INTERAMERICANA DE DERECHOS HUMANOS DE DE MARZO DE CASO POLLO RIVERA Y OTROS VS. PER\u00da VISTO El escrito de sometimiento del caso y el Informe de Fondo de la Comisi\u00f3n Interamericana de Derechos Humanos en adelante la Comisi\u00f3n Interamericana o la Comisi\u00f3n el escrito de solicitudes argumentos y pruebas en adelante el escrito de solicitudes y argumentos de los defensores interamericanos como representantes de un grupo de las presuntas v\u00edctimas en adelante los ", - "values": [ - "Corte Interamericana de Derechos Humanos" - ] - }, - { - "text": "VOTO CONCORDANTE DO JUIZ SERGIO GARC\u00cdA RAM\u00cdREZ EM RELA\u00c7\u00c3O \u00c0 SENTEN\u00c7A DA CORTE INTERAMERICANA DE DIREITOS HUMANOS NO CASO ACEVEDO BUEND\u00cdA E OUTROS DEMITIDOS E APOSENTADOS DA CONTROLADORIA DE DE JULHO DE I. Perda da oportunidade de realizar atos no julgamento Em conformidade com as normas do procedimento interamericano de prote\u00e7\u00e3o dos direitos humanos normas de obrigat\u00f3ria observ\u00e2ncia o Estado disp\u00f5e de oportunidades processuais claramente estabelecidas para apresentar suas defesas. Em o ", - "values": [ - "Corte Interamericana de Derechos Humanos" - ] - }, - { - "text": "RESOLUCI\u00d3N DEL PRESIDENTE DE LA CORTE INTERAMERICANA DE DERECHOS HUMANOS DE DE ABRIL DE CASO DEL TRIBUNAL CONSTITUCIONAL VISTOS El escrito de de abril de y sus anexos mediante el cual la se\u00f1ora Delia Revoredo Marsano de Mur en adelante la se\u00f1ora Revoredo someti\u00f3 a la Corte Interamericana de Derechos Humanos en adelante la Corte o la Corte Interamericana al amparo de los art\u00edculos de la Convenci\u00f3n Americana sobre Derechos Humanos en adelante la Convenci\u00f3n o la Convenci\u00f3n Americana y del ", - "values": [ - "Corte Interamericana de Derechos Humanos" - ] - }, - { - "text": "VOTO CONCURRENTE DEL JUEZ SERGIO GARC\u00cdA RAM\u00cdREZ A LA SENTENCIA DE LA CORTE INTERAMERICANA SOBRE EL CASO BAYARRI ARGENTINA DEL DE OCTUBRE DE El examen y la sentencia del Caso Bayarri promueven diversas cuestiones relevantes a prop\u00f3sito de la tutela de los derechos humanos en el marco del procedimiento penal que constituye un escenario complejo y peligroso para el encuentro entre los poderes del Estado y los derechos del individuo. Entre esas cuestiones figura la privaci\u00f3n cautelar de la del ", - "values": [ - "Corte Interamericana de Derechos Humanos" - ] - }, - { - "text": "Resoluci\u00f3n del Presidente de la Corte Interamericana de Derechos Humanos de de diciembre de Medidas Provisionales respecto de Colombia Asunto de la Comunidad de Paz de San Jos\u00e9 de Apartad\u00f3 VISTOS La Resoluci\u00f3n del Presidente de la Corte Interamericana de Derechos Humanos en adelante el Presidente de la Corte de de octubre de Las audiencias p\u00fablicas celebradas en la sede de la Corte Interamericana de Derechos Humanos en adelante la Corte Interamericana la Corte o el Tribunal el de de el", - "values": [ - "Corte Interamericana de Derechos Humanos" - ] - }, - { - "text": "VOTO DISIDENTE DEL JUEZ EDUARDO VIO GROSSI SENTENCIA DE LA CORTE INTERAMERICANA DE DERECHOS HUMANOS FONDO REPARACIONES Y COSTAS CASO BARBANI Y OTROS VS. URUGUAY DE DE OCTUBRE DE Introducci\u00f3n. Se emite el presente voto disidente respecto de los aspectos del fallo se\u00f1alado en el t\u00edtulo en adelante la Sentencia que seguidamente se indican por las razones que asimismo se exponen. El primer asunto del que se discrepa con lo expuesto y dispuesto en la Sentencia es en lo que respecta a la violaci\u00f3n ", - "values": [ - "Corte Interamericana de Derechos Humanos" - ] - }, - { - "text": "RESOLUCI\u00d3N DE LA CORTE INTERAMERICANA DE DERECHOS HUMANOS DE DE NOVIEMBRE DE MEDIDAS PROVISIONALES RESPECTO DE REP\u00daBLICA DOMINICANA ASUNTO JUAN ALMONTE HERRERA Y OTROS VISTO La Resoluci\u00f3n dictada por la Corte Interamericana de Derechos Humanos en adelante la Corte Interamericana la Corte o el Tribunal el de mayo de en la que resolvi\u00f3 inter alia Ratificar en todos sus t\u00e9rminos la Resoluci\u00f3n del Presidente de la Corte Interamericana de Derechos Humanos de de marzo de y por consiguiente ", - "values": [ - "Corte Interamericana de Derechos Humanos" - ] - }, - { - "text": "INFORME N\u00ba ADMISIBILIDAD PETICI\u00d3N COMUNIDAD IND\u00cdGENA YAXYE AXA DEL PUEBLO ENXETLENGUA PARAGUAY de febrero de I. RESUMEN El de enero de la Comisi\u00f3n Interamericana de Derechos Humanos en adelante la Comisi\u00f3n o la CIDH recibi\u00f3 una petici\u00f3n presentada por Tom\u00e1s Galeano y Esteban L\u00f3pez l\u00edderes de la Comunidad Ind\u00edgena Yaxye Axa del Pueblo EnxetLengua representados por la Organizaci\u00f3n Tierraviva para los Pueblos Ind\u00edgenas del Chaco en adelante TIERRAVIVA y el Centro por la Justicia y el en ", - "values": [ - "Comisi\u00f3n Interamericana de Derechos Humanos" - ] - }, - { - "text": "INFORME N PETICI\u00d3N ADMISIBILIDAD MARINO L\u00d3PEZ Y OTROS OPERACI\u00d3N G\u00c9NESIS COLOMBIA de octubre de I. RESUMEN El de junio de la Comisi\u00f3n Interamericana de Derechos Humanos en adelante la CIDH o la Comisi\u00f3n recibi\u00f3 una petici\u00f3n presentada por la Comisi\u00f3n Intereclesial de Justicia y Paz en adelante los peticionarios mediante la cual se alega la responsabilidad de la Rep\u00fablica de Colombia en adelante el Estado o el Estado colombiano en los hechos perpetrados entre el y el de febrero de como", - "values": [ - "Comisi\u00f3n Interamericana de Derechos Humanos" - ] - }, - { - "text": "RESOLUCI\u00d3N DE LA CORTE INTERAMERICANA DE DERECHOS HUMANOS DE DE JUNIO DE MEDIDAS PROVISIONALES SOLICITADAS POR LA COMISI\u00d3N INTERAMERICANA DE DERECHOS HUMANOS RESPECTO DE LA REP\u00daBLICA DE TRINIDAD Y TOBAGO CASOS JAMES BRIGGS NOEL GARC\u00cdA Y BETHEL VISTOS El escrito de la Comisi\u00f3n Interamericana de Derechos Humanos en adelante la Comisi\u00f3n de de mayo de y sus anexos mediante el cual someti\u00f3 ante la Corte Interamericana de Derechos Humanos en adelante la Corte de acuerdo con los art\u00edculos de la ", - "values": [ - "Corte Interamericana de Derechos Humanos" - ] - }, - { - "text": "RESOLUCI\u00d3N DE LA CORTE INTERAMERICANA DE DERECHOS HUMANOS DE DE JUNIO DE MEDIDAS PROVISIONALES RESPECTO DE M\u00c9XICO ASUNTO P\u00c9REZ TORRES Y OTROS CAMPO ALGODONERO VISTO La Resoluci\u00f3n de la Corte Interamericana de Derechos Humanos en adelante la Corte Interamericana la Corte o el Tribunal de de julio de mediante la cual el Tribunal resolvi\u00f3 Ratificar la Resoluci\u00f3n de la Presidenta de la Corte Interamericana de de abril de Requerir al Estado que mantenga las medidas que hubiese adoptado y ", - "values": [ - "Corte Interamericana de Derechos Humanos" - ] - }, - { - "text": "Corte Interamericana de Derechos Humanos Caso Castillo Petruzzi y otros Vs. Per\u00fa Resoluci\u00f3n de de noviembre de Cumplimiento de Sentencia VISTOS La sentencia de la Corte Interamericana de Derechos Humanos en adelante la Corte la Corte Interamericana o el Tribunal de de mayo de sobre el fondo en el caso Castillo Petruzzi y otros en la cual por unanimidad declar\u00f3 que el Estado no viol\u00f3 en el presente caso el art\u00edculo de la Convenci\u00f3n Americana sobre Derechos Humanos. por unanimidad declar\u00f3", - "values": [ - "Corte Interamericana de Derechos Humanos" - ] - }, - { - "text": "VOTO CONCURRENTE DEL JUEZ MONTIEL ARG\u00dcELLO He votado afirmativamente de la parte resolutiva de la sentencia que antecede sobre interpretaci\u00f3n de la sentencia del de marzo del presente a\u00f1o en el caso Hermanas Serrano Cruz contra El Salvador. La solicitud de interpretaci\u00f3n presentada por El Salvador se refiere a tres puntos a b c La concesi\u00f3n de indemnizaci\u00f3n por da\u00f1os inmateriales a favor de la Se\u00f1ora Mar\u00eda victoria Franco que hab\u00eda fallecido La asignaci\u00f3n de esa indemnizaci\u00f3n a sus hijos y La", - "values": [ - "Corte Interamericana de Derechos Humanos" - ] - }, - { - "text": "Corte Interamericana de Derechos Humanos Caso Alfonso Mart\u00edn del Campo Dodd Vs. Estados Unidos Mexicanos Sentencia de de septiembre de Excepciones Preliminares En el caso Alfonso Mart\u00edn del Campo Dodd la Corte Interamericana de Derechos Humanos en adelante la Corte Interamericana la Corte o el Tribunal integrada por los siguientes jueces Alirio Abreu Burelli Presidente Sergio Garc\u00eda Ram\u00edrez Juez Oliver Jackman Juez Ant\u00f4nio A. Can\u00e7ado Trindade Juez Cecilia Medina Quiroga Jueza Manuel E. Juez", - "values": [ - "Corte Interamericana de Derechos Humanos" - ] - }, - { - "text": "INFORME N\u00ba PETICI\u00d3N ADMISIBILIDAD LYSIAS FLEURY HAIT\u00cd de febrero de I. RESUMEN El de octubre de la Comisi\u00f3n Interamericana de Derechos Humanos en adelante la CIDH o la Comisi\u00f3n recibi\u00f3 una denuncia presentada por Lysias Fleury en adelante el peticionario contra la Rep\u00fablica de Hait\u00ed en adelante El Estado o Hait\u00ed en la cual alega la violaci\u00f3n de su integridad y libertad personales y de su honra y dignidad toda vez que fue arrestado sin orden judicial por agentes policiales y civiles le ", - "values": [ - "Comisi\u00f3n Interamericana de Derechos Humanos" - ] - }, - { - "text": "CORTE INTERAMERICANA DE DERECHOS HUMANOS CASO GUTI\u00c9RREZ SOLER VS. COLOMBIA SENTENCIA DE DE SEPTIEMBRE DE En el caso Guti\u00e9rrez Soler la Corte Interamericana de Derechos Humanos en adelante la Corte Interamericana la Corte o el Tribunal integrada por los siguientes jueces Sergio Garc\u00eda Ram\u00edrez Presidente Alirio Abreu Burelli Vicepresidente Oliver Jackman Juez Ant\u00f4nio A. Can\u00e7ado Trindade Juez Manuel E. Ventura Robles Juez Diego Garc\u00edaSay\u00e1n Juez y Ernesto Rey Cantor Juez ad hoc presentes adem\u00e1s ", - "values": [ - "Corte Interamericana de Derechos Humanos" - ] - }, - { - "text": "CORTE INTERAMERICANA DE DERECHOS HUMANOS CASO GARC\u00cdA LUCERO y OTRAS Vs. CHILE SENTENCIA DE DE AGOSTO DE EXCEPCION PRELIMINAR FONDO Y REPARACIONES En el caso Garc\u00eda Lucero y otras la Corte Interamericana de Derechos Humanos en adelante la Corte Interamericana la Corte o el Tribunal integrada por los siguientes jueces Diego Garc\u00edaSay\u00e1n Presidente Manuel E. Ventura Robles Vicepresidente Alberto P\u00e9rez P\u00e9rez Juez Roberto F. Caldas Juez Humberto Antonio Sierra Porto Juez y Eduardo Ferrer MacGregor ", - "values": [ - "Corte Interamericana de Derechos Humanos" - ] - }, - { - "text": "RESOLUCI\u00d3N DE LA CORTE INTERAMERICANA DE DERECHOS HUMANOS DE DE NOVIEMBRE DE CASO HILAIRE CONSTANTINE Y BENJAMIN Y OTROS VS. TRINIDAD Y TOBAGO CUMPLIMIENTO DE SENTENCIA VISTOS La Sentencia dictada en el Caso Hilaire Constantine y Benjamin y otros vs. Trinidad y Tobago por la Corte Interamericana de Derechos Humanos en adelante la Corte Interamericana la Corte o el Tribunal el de junio de en la que declar\u00f3 en cuanto al fondo que el Estado viol\u00f3 el derecho a la vida consagrado en el y ", - "values": [ - "Corte Interamericana de Derechos Humanos" - ] - }, - { - "text": "RESOLUCI\u00d3N DE LA CORTE INTERAMERICANA DE DERECHOS HUMANOS DEL DE JUNIO DE MEDIDAS PROVISIONALES SOLICITADAS POR LA COMISI\u00d3N INTERAMERICANA DE DERECHOS HUMANOS RESPECTO DE LA REP\u00daBLICA DE GUATEMALA CASO SERECH Y SAQUIC VISTO El escrito de de abril de y sus anexos mediante el cual la Comisi\u00f3n Interamericana de Derechos Humanos en adelante la Comisi\u00f3n o la Comisi\u00f3n Interamericana somete a la Corte Interamericana de Derechos Humanos en adelante la Corte o la Corte Interamericana con apoyo en ", - "values": [ - "Corte Interamericana de Derechos Humanos" - ] - }, - { - "text": "VOTO RAZONADO CONCURRENTE DEL JUEZ SERGIO GARC\u00cdA RAM\u00cdREZ A LAS SENTENCIAS SOBRE EXCEPCIONES PRELIMINARES EN LOS CASOS HILAIRE CONSTANTINE Y OTROS Y BENJAM\u00cdN Y OTROS He sumado mi voto al de mis colegas en la Corte Interamericana de Derechos Humanos en las Sentencias sobre excepciones preliminares en los Casos Hilaire Contantine y Otros y Benjam\u00edn y Otros del de septiembre de que se fundan en el mismo razonamiento y llegan a id\u00e9nticas decisiones en lo concerniente a la supuesta incompetencia ", - "values": [ - "Corte Interamericana de Derechos Humanos" - ] - }, - { - "text": "RESOLUCI\u00d3N DE LA CORTE INTERAMERICANA DE DERECHOS HUMANOS DE DE NOVIEMBRE DE CASO BLAKE CUMPLIMIENTO DE SENTENCIA VISTOS La sentencia de fondo dictada en el Caso Blake vs. Guatemala por la Corte Interamericana de Derechos Humanos en adelante la Corte la Corte Interamericana o el Tribunal el de enero de en la que dispuso en los puntos resolutivos tercero y cuarto que el Estado de Guatemala est\u00e1 obligado a poner todos los medios a su alcance para investigar los hechos denunciados y a los ", - "values": [ - "Corte Interamericana de Derechos Humanos" - ] - }, - { - "text": "VOTO DISIDENTE DE LA JUEZA MEDINA QUIROGA EN LA SENTENCIA DE LA CORTE INTERAMERICANA DE DERECHOS HUMANOS SOBRE EL CASO LORI BERENSON MEJ\u00cdA DE DE NOVIEMBRE DE RESPECTO DEL ART\u00cdCULO I. II. III. IV. V. La Corte ha se\u00f1alado en este caso y en otros anteriores la importancia del principio de legalidad expresando en el p\u00e1rrafo de esta Sentencia que la elaboraci\u00f3n de los tipos penales supone una clara definici\u00f3n de la conducta incriminada que fije sus elementos y permita deslindarla de no punibles", - "values": [ - "Corte Interamericana de Derechos Humanos" - ] - }, - { - "text": "RESOLUCI\u00d3N DE LA CORTE INTERAMERICANA DE DERECHOS HUMANOS DE DE OCTUBRE DE SOLICITUD DE ADOPCI\u00d3N DE MEDIDAS PROVISIONALES RESPECTO DE LA REP\u00daBLICA DEL PER\u00da CASO DE LA CRUZ FLORES Visto La Sentencia de fondo reparaciones y costas en adelante la Sentencia emitida en el presente caso por la Corte Interamericana de Derechos Humanos en adelante la Corte la Corte Interamericana o el Tribunal el de noviembre de Las Resoluciones de la Corte Interamericana de de noviembre de de septiembre de y", - "values": [ - "Corte Interamericana de Derechos Humanos" - ] - }, - { - "text": "RESOLUCI\u00d3N DE LA CORTE INTERAMERICANA DE DERECHOS HUMANOS DE DE JUNIO DE CASO BAYARRI VS. ARGENTINA SUPERVISI\u00d3N DE CUMPLIMIENTO DE SENTENCIA VISTOS La Sentencia de excepci\u00f3n preliminar fondo reparaciones y costas en adelante la Sentencia dictada por la Corte Interamericana de Derechos Humanos en adelante la Corte la Corte Interamericana o el Tribunal el de octubre de en el presente caso. La Resoluci\u00f3n de de noviembre de dictada por el Tribunal mediante la cual inter alia declar\u00f3 que ", - "values": [ - "Corte Interamericana de Derechos Humanos" - ] - }, - { - "text": "RESOLUCI\u00d3N DE LA CORTE INTERAMERICANA DE DERECHOS HUMANOS DE DE ABRIL DE CASO CABRERA GARC\u00cdA Y MONTIEL FLORES VS. M\u00c9XICO SUPERVISI\u00d3N DE CUMPLIMIENTO DE SENTENCIA VISTO La Sentencia de excepci\u00f3n preliminar fondo reparaciones y costas dictada por la Corte Interamericana de Derechos Humanos en adelante la Corte Interamericana la Corte o el Tribunal el de noviembre de en el caso Cabrera Garc\u00eda y Montiel Flores Vs. M\u00e9xico en adelante el Estado o M\u00e9xico. En dicho fallo se estableci\u00f3 que los ", - "values": [ - "Corte Interamericana de Derechos Humanos" - ] - }, - { - "text": "Corte Interamericana de Derechos Humanos Caso Aloeboetoe y otros Vs. Surinam Sentencia de de septiembre de Reparaciones y Costas En el caso Aloeboetoe y otros la Corte Interamericana de Derechos Humanos integrada por los siguientes jueces Rafael Nieto Navia Presidente Sonia Picado Sotela Vicepresidente H\u00e9ctor FixZamudio Juez Julio A. Barberis Juez Asdr\u00fabal AguiarAranguren Juez Ant\u00f4nio A. Can\u00e7ado Trindade Juez ad hoc presentes adem\u00e1s Manuel E. Ventura Robles Secretario y Ana Mar\u00eda Reina de ", - "values": [ - "Corte Interamericana de Derechos Humanos" - ] - }, - { - "text": "RESOLUCI\u00d3N DE LA CORTE INTERAMERICANA DE DERECHOS HUMANOS DE DE JUNIO DE MEDIDAS PROVISIONALES RESPECTO DE M\u00c9XICO ASUNTO CASTRO RODR\u00cdGUEZ VISTO Las resoluciones dictadas por la Corte Interamericana de Derechos Humanos en adelante la Corte Interamericana la Corte o el Tribunal el de febrero y de agosto de mediante las cuales se orden\u00f3 la adopci\u00f3n de medidas provisionales para proteger los derechos a la vida y a la integridad personal de Luz Estela Castro Rodr\u00edguez en adelante la o la y", - "values": [ - "Corte Interamericana de Derechos Humanos" - ] - }, - { - "text": "INFORME N\u00ba PETICI\u00d3N ADMISIBILIDAD CARLOS ALBERTO MOHAMED ARGENTINA de febrero de I. RESUMEN En el presente informe se examina la admisibilidad de la petici\u00f3n La Comisi\u00f3n Interamericana de Derechos Humanos en adelante la Comisi\u00f3n Interamericana la Comisi\u00f3n o la CIDH inici\u00f3 el tr\u00e1mite tras recibir una petici\u00f3n el de marzo de presentada por Carlos Alberto Mohamed y el abogado Roque J. Mantione en adelante los peticionarios contra la Rep\u00fablica Argentina en adelante el Estado. Los indican ", - "values": [ - "Comisi\u00f3n Interamericana de Derechos Humanos" - ] - }, - { - "text": "RESOLUCI\u00d3N DE LA CORTE INTERAMERICANA DE DERECHOS HUMANOS DE DE JUNIO DE MEDIDAS PROVISIONALES RESPECTO DE LA REP\u00daBLICA DOMINICANA CASO GONZ\u00c1LEZ MEDINA Y FAMILIARES VISTO La Resoluci\u00f3n de la Corte Interamericana de Derechos Humanos en adelante la Corte Interamericana la Corte o el Tribunal de de agosto de mediante la cual resolvi\u00f3 Requerir al Estado que adoptara de forma inmediata las medidas que fueran necesarias para proteger la vida e integridad personal de Mario Jos\u00e9 Mart\u00edn Suriel ", - "values": [ - "Corte Interamericana de Derechos Humanos" - ] - }, - { - "text": "Corte Interamericana de Derechos Humanos Caso Caballero Delgado y Santana Vs. Colombia Sentencia de de enero de Reparaciones y Costas En el caso Caballero Delgado y Santana la Corte Interamericana de Derechos Humanos integrada por los siguientes jueces H\u00e9ctor FixZamudio Presidente Hern\u00e1n Salgado Pesantes Vicepresidente Alejandro Montiel Arg\u00fcello Juez Alirio Abreu Burelli Juez Ant\u00f4nio A. Can\u00e7ado Trindade Juez Rafael Nieto Navia Juez ad hoc presentes adem\u00e1s Manuel E. Ventura Robles Secretario ", - "values": [ - "Corte Interamericana de Derechos Humanos" - ] - }, - { - "text": "Corte Interamericana de Derechos Humanos Caso de las Hermanas Serrano Cruz Vs. El Salvador Sentencia de de septiembre de Interpretaci\u00f3n de la Sentencia de Fondo Reparaciones y Costas En el caso de las Hermanas Serrano Cruz la Corte Interamericana de Derechos Humanos en adelante la Corte Interamericana la Corte o el Tribunal integrada por los siguientes jueces Sergio Garc\u00eda Ram\u00edrez Presidente Alirio Abreu Burelli Vicepresidente Oliver Jackman Juez Ant\u00f4nio A. Can\u00e7ado Trindade Juez Manuel E. ", - "values": [ - "Corte Interamericana de Derechos Humanos" - ] - }, - { - "text": "RESOLUCI\u00d3N DEL PRESIDENTE DE LA CORTE INTERAMERICANA DE DERECHOS HUMANOS DE DE JUNIO DE CASO QUISPIALAYA VILCAPOMA VS. PER\u00da VISTO El escrito de sometimiento del caso y el Informe de Fondo de la Comisi\u00f3n Interamericana de Derechos Humanos en adelante la Comisi\u00f3n Interamericana o la Comisi\u00f3n el escrito de solicitudes argumentos y pruebas en adelante el escrito de solicitudes y argumentos de las representantes de las presuntas v\u00edctimas en adelante las representantes y el escrito de contestaci\u00f3n", - "values": [ - "Corte Interamericana de Derechos Humanos" - ] - }, - { - "text": "Resoluci\u00f3n del Presidente de la Corte Interamericana de Derechos Humanos de diciembre de Caso Mej\u00eda Idrovo Vs. Ecuador Visto El escrito de demanda de la Comisi\u00f3n Interamericana de Derechos Humanos en adelante la Comisi\u00f3n o la Comisi\u00f3n Interamericana presentado el de noviembre de ante la Corte Interamericana de Derechos Humanos en adelante la Corte la Corte Interamericana o el Tribunal contra la Rep\u00fablica del Ecuador en adelante el Estado o Ecuador en el cual ofreci\u00f3 la declaraci\u00f3n de una ", - "values": [ - "Corte Interamericana de Derechos Humanos" - ] - }, - { - "text": "VOTO SEPARADO CONCURRENTE DEL JUEZ JACKMAN He votado a favor de la decisi\u00f3n de la Corte en el presente caso. Sin embargo la posici\u00f3n de la Jueza Medina en relaci\u00f3n con la reparaci\u00f3n adecuada me parece particularmente convincente y en este acto manifiesto mi apoyo a la soluci\u00f3n que ella propone en el \u00faltimo p\u00e1rrafo de su voto separado es decir se debe ordenar al Estado en la forma descrita por la Jueza Medina la reducci\u00f3n de la pena de privaci\u00f3n de la libertad impuesta a la se\u00f1ora Lori Berenson.", - "values": [ - "Corte Interamericana de Derechos Humanos" - ] - }, - { - "text": "Resoluci\u00f3n de la Presidenta de la Corte Interamericana de Derechos Humanos de de febrero de Caso Francisco Us\u00f3n Ram\u00edrez Vs. Venezuela Visto El escrito de demanda presentado el de julio de por la Comisi\u00f3n Interamericana de Derechos Humanos en adelante la Comisi\u00f3n Interamericana o la Comisi\u00f3n ante la Corte Interamericana de Derechos Humanos en adelante la Corte Interamericana la Corte o el Tribunal en el cual ofreci\u00f3 un testigo y dos peritos. El escrito de solicitudes argumentos y pruebas ", - "values": [ - "Corte Interamericana de Derechos Humanos" - ] - }, - { - "text": "VOTO DISIDENTE DEL JUEZ VIDAL RAM\u00cdREZ Disiento de la decisi\u00f3n adoptada en la Sentencia que resuelve desestimar las excepciones preliminares opuestas por el agente del Gobierno del Per\u00fa por los siguientes fundamentos El art\u00edculo de la Convenci\u00f3n Americana autoriza a los Estados Parte en los casos que precisa y en los que se incluyen los que constituyen peligro p\u00fablico o emergencias que amenacen la independencia o seguridad del Estado a adoptar medidas que en lo posible sean compatibles con ", - "values": [ - "Corte Interamericana de Derechos Humanos" - ] - }, - { - "text": "INFORME N PETICI\u00d3N ADMISIBILIDAD EDGAR FERNANDO GARC\u00cdA GUATEMALA de octubre de I. RESUMEN El de agosto de la Comisi\u00f3n Interamericana de Derechos Humanos en adelante la Comisi\u00f3n la Comisi\u00f3n Interamericana o la CIDH recibi\u00f3 una petici\u00f3n presentada por el Grupo de Apoyo Mutuo GAM representado por Mario Alcides Polanco P\u00e9rez en adelante los peticionarios en contra de la Rep\u00fablica de Guatemala en adelante el Estado o el Estado Guatemalteco o Guatemala por la responsabilidad internacional en ", - "values": [ - "Comisi\u00f3n Interamericana de Derechos Humanos" - ] - }, - { - "text": "RESOLUCI\u00d3N DE LA CORTE INTERAMERICANA DE DERECHOS HUMANOS DE DE ABRIL DE CASO SU\u00c1REZ ROSERO VS. ECUADOR SUPERVISI\u00d3N DE CUMPLIMIENTO DE SENTENCIA VISTOS Las Sentencias de fondo en adelante la Sentencia de reparaciones en adelante la Sentencia de reparaciones y de interpretaci\u00f3n de la Sentencia de reparaciones en adelante la Sentencia de interpretaci\u00f3n dictadas por la Corte Interamericana de Derechos Humanos en adelante la Corte la Corte Interamericana o el Tribunal respectivamente los ", - "values": [ - "Corte Interamericana de Derechos Humanos" - ] - }, - { - "text": "RESOLUCI\u00d3N DE LA CORTE INTERAMERICANA DE DERECHOS HUMANOS DE DE DICIEMBRE DE MEDIDAS PROVISIONALES RESPECTO DE LA REP\u00daBLICA DE COSTA RICA CASO DEL PERI\u00d3DICO LA NACI\u00d3N VISTOS El escrito de la Comisi\u00f3n Interamericana de Derechos Humanos en adelante la Comisi\u00f3n o la Comisi\u00f3n Interamericana de de marzo de mediante el cual present\u00f3 una solicitud de medidas provisionales a favor de los se\u00f1ores Mauricio Herrera Ulloa y Fern\u00e1n Vargas Rohrmoser periodista y representante legal del peri\u00f3dico La de ", - "values": [ - "Corte Interamericana de Derechos Humanos" - ] - }, - { - "text": "Resoluci\u00f3n de la Presidenta de la Corte Interamericana de Derechos Humanos de de diciembre de Medidas Provisionales respecto de la Rep\u00fablica del Ecuador Asunto del Pueblo Ind\u00edgena de Sarayaku Visto El escrito de la Comisi\u00f3n Interamericana de Derechos Humanos en adelante la Comisi\u00f3n o la Comisi\u00f3n Interamericana de de junio de mediante el cual someti\u00f3 a la Corte Interamericana de Derechos Humanos en adelante la Corte o la Corte Interamericana de acuerdo con los art\u00edculos de la Convenci\u00f3n ", - "values": [ - "Corte Interamericana de Derechos Humanos" - ] - }, - { - "text": "RESOLUCI\u00d3N DE LA CORTE INTERAMERICANA DE DERECHOS HUMANOS DE DE SEPTIEMBRE DE CASO TICONA ESTRADA Y OTROS VS. BOLIVIA SUPERVISI\u00d3N DE CUMPLIMIENTO DE SENTENCIA VISTO La Sentencia de fondo reparaciones y costas en adelante la Sentencia dictada por la Corte Interamericana de Derechos Humanos en adelante la Corte Interamericana la Corte o el Tribunal el de noviembre de y la Sentencia de interpretaci\u00f3n dictada el de julio de El Tribunal acept\u00f3 el reconocimiento parcial de responsabilidad ", - "values": [ - "Corte Interamericana de Derechos Humanos" - ] - }, - { - "text": "RESOLU\u00c7\u00c3O DA CORTE INTERAMERICANA DE DIREITOS HUMANOS DE DE NOVEMBRO DE MEDIDAS PROVIS\u00d3RIAS A RESPEITO DO BRASIL ASSUNTO DA PENITENCI\u00c1RIA URSO BRANCO VISTO As Resolu\u00e7\u00f5es da Corte Interamericana de Direitos Humanos doravante Corte Interamericana Corte ou Tribunal de de junho de de agosto de de abril de de julho de de setembro de e de maio de Nessa \u00faltima a Corte resolveu inter alia Reiterar ao Estado que adote de imediato todas as medidas que sejam necess\u00e1rias para proteger a e", - "values": [ - "Corte Interamericana de Derechos Humanos" - ] - }, - { - "text": "INFORME N\u00ba CASO MERVYN EDMUND TRINIDAD Y TOBAGO de marzo de I. RESUMEN El Sr. Clive Woolf el peticionario de la firma de abogados de Londres Collyer Bristow present\u00f3 una denuncia ante la Comisi\u00f3n Interamericana de Derechos Humanos en adelante la Comisi\u00f3n contra la Rep\u00fablica de Trinidad y Tobago en adelante el Estado o Trinidad en nombre del Sr. Mervyn Edmund actualmente condenado a muerte y recluido en la Prisi\u00f3n del Estado en Puerto Espa\u00f1a. En la denuncia se sostiene que el Estado de y ", - "values": [ - "Comisi\u00f3n Interamericana de Derechos Humanos" - ] - }, - { - "text": "INFORME No. PETICI\u00d3N ADMISIBILIDAD COMUNIDAD GAR\u00cdFUNA PUNTA PIEDRA Y SUS MIEMBROS HONDURAS de marzo de I. RESUMEN El de octubre de la Comisi\u00f3n Interamericana de Derechos Humanos en adelante la Comisi\u00f3n la Comisi\u00f3n Interamericana o la CIDH recibi\u00f3 una petici\u00f3n presentada por la Organizaci\u00f3n Fraternal Negra Hondure\u00f1a en adelante la peticionaria u OFRANEH en favor de las Comunidades Gar\u00edfunas de Cayos Cochinos Punta Piedra y Triunfo de la Cruz en contra de la Rep\u00fablica de Honduras en el ", - "values": [ - "Comisi\u00f3n Interamericana de Derechos Humanos" - ] - }, - { - "text": "RESOLUCI\u00d3N DEL PRESIDENTE DE LA CORTE INTERAMERICANA DE DERECHOS HUMANOS DE DE FEBRERO DE SOLICITUD DE AMPLIACI\u00d3N DE MEDIDAS PROVISIONALES RESPECTO DE LA REP\u00daBLICA DE COLOMBIA CASO COMERCIANTES SANDRA BELINDA MONTERO FUENTES Y FAMILIARES SALOM\u00d3N FL\u00d3REZ Y FAMILIARES LUIS JOS\u00c9 PUNDOR QUINTERO Y FAMILIARES ANA DIVA QUINTERO QUINTERO DE PUNDOR Y FAMILIARES WILMAR RODR\u00cdGUEZ QUINTERO Y FAMILIARES YIMMY EFRA\u00cdN RODR\u00cdGUEZ QUINTERO Y FAMILIARES VISTOS La Sentencia de fondo reparaciones y costas por ", - "values": [ - "Corte Interamericana de Derechos Humanos" - ] - }, - { - "text": "RESOLUCI\u00d3N DE LA CORTE INTERAMERICANA DE DERECHOS HUMANOS DE DE FEBRERO DE MEDIDAS PROVISIONALES RESPECTO DE M\u00c9XICO CASO FERN\u00c1NDEZ ORTEGA Y OTROS VISTO Las Resoluciones de la Corte Interamericana de Derechos Humanos en adelante la Corte Interamericana la Corte o el Tribunal y su Presidencia de y de abril y de diciembre de de de noviembre de y de de febrero de En esta \u00faltima la Corte resolvi\u00f3 inter alia Reiterar al Estado que contin\u00fae adoptando de forma inmediata las medidas que ", - "values": [ - "Corte Interamericana de Derechos Humanos" - ] - }, - { - "text": "VOTO CONCORDANTE DO JUIZ AD HOC ALEJANDRO CARLOS ESPINOSA EM RELA\u00c7\u00c3O \u00c0 SENTEN\u00c7A DA CORTE INTERAMERICANA DE DIREITOS HUMANOS NO CASO FERN\u00c1NDEZ ORTEGA E OUTROS VS. M\u00c9XICO DE DE AGOSTO DE O presente voto concordante vale para o caso citado ut supra bem como para o Caso Rosendo Cant\u00fa e outra Vs. M\u00e9xico em considera\u00e7\u00e3o \u00e0s seguintes raz\u00f5es a Tratase de militares em servi\u00e7o isto \u00e9 agentes do Estado mexicano que sob uma condi\u00e7\u00e3o especial incorreram em viola\u00e7\u00f5es graves dos ordenamentos internos e ", - "values": [ - "Corte Interamericana de Derechos Humanos" - ] - }, - { - "text": "RESOLUCI\u00d3N DE LA CORTE INTERAMERICANA DE DERECHOS HUMANOS DE DE AGOSTO DE FONDO DE ASISTENCIA LEGAL DE V\u00cdCTIMAS CASO FORNER\u00d3N E HIJA VS. ARGENTINA VISTO La Sentencia de fondo reparaciones y costas en adelante la Sentencia dictada por la Corte Interamericana de Derechos Humanos en adelante la Corte la Corte Interamericana o este Tribunal el de abril de mediante la cual dispuso inter alia que El Estado debe reintegrar al Fondo de Asistencia Legal de V\u00edctimas la cantidad establecida en el ", - "values": [ - "Corte Interamericana de Derechos Humanos" - ] - }, - { - "text": "CASO DE LAS HERMANAS SERRANO CRUZ VS. EL SALVADOR Sentencia sobre fondo reparaciones y costas VOTO DISIDENTE DEL JUEZ MANUEL E. VENTURA ROBLES RESPECTO DEL PUNTO RESOLUTIVO TERCERO Disiento del criterio de mayor\u00eda en el presente caso de las Hermanas Serrano Cruz contra El Salvador sustentado por ella en el punto resolutivo tercero de acuerdo con el cual la Corte no se pronunci\u00f3 sobre las alegadas violaciones al derecho a la protecci\u00f3n a la familia al derecho al nombre y a los derechos del ni\u00f1o", - "values": [ - "Corte Interamericana de Derechos Humanos" - ] - }, - { - "text": "RELAT\u00d3RIO N CASO ALFONSO MART\u00cdN DEL CAMPO DODD M\u00c9XICO de outubro de I. RESUMO Em de julho de a Comiss\u00e3o Interamericana de Direitos Humanos doravante denominada a Comiss\u00e3o Interamericana ou a CIDH recebeu uma den\u00fancia apresentada por Alfonso Mart\u00edn del Campo Dodd na qual alega a responsabilidade internacional dos Estados Unidos Mexicanos o Estado por sua deten\u00e7\u00e3o ilegal e tortura bem como sua posterior condena\u00e7\u00e3o a anos de pris\u00e3o num julgamento que n\u00e3o obedeceu \u00e0s normas de devido pois ", - "values": [ - "Comisi\u00f3n Interamericana de Derechos Humanos" - ] - }, - { - "text": "CORTE INTERAMERICANA DE DERECHOS HUMANOS PUEBLO IND\u00cdGENA KICHWA DE SARAYAKU VS. ECUADOR SENTENCIA DE DE JUNIO DE Fondo y Reparaciones En el Caso del Pueblo Ind\u00edgena Kichwa de Sarayaku la Corte Interamericana de Derechos Humanos en adelante la Corte Interamericana la Corte o el Tribunal integrada por los siguientes jueces Diego Garc\u00edaSay\u00e1n Presidente Manuel E. Ventura Robles Vicepresidente Leonardo A. Franco Juez Margarette May Macaulay Jueza Rhadys Abreu Blondet Jueza Alberto P\u00e9rez P\u00e9rez Juez", - "values": [ - "Corte Interamericana de Derechos Humanos" - ] - }, - { - "text": "RESOLUCI\u00d3N DE LA CORTE INTERAMERICANA DE DERECHOS HUMANOS DE NOVIEMBRE DE MEDIDAS PROVISIONALES RESPECTO DE LA REP\u00daBLICA DE COLOMBIA SOLICITUD DE AMPLIACI\u00d3N ASUNTO COMUNIDADES DEL JIGUAMIAND\u00d3 Y DEL CURVARAD\u00d3 VISTOS Las Resoluciones de la Corte Interamericana de de marzo de de noviembre de de marzo de de febrero de de febrero de de noviembre de y de agosto de En esta \u00faltima Resoluci\u00f3n la Corte resolvi\u00f3 Reiterar al Estado de Colombia que adopte sin dilaci\u00f3n las medidas que ", - "values": [ - "Corte Interamericana de Derechos Humanos" - ] - }, - { - "text": "RESOLUCI\u00d3N DE LA CORTE INTERAMERICANA DE DERECHOS HUMANOS DE FEBRERO DE CASO ALB\u00c1N CORNEJO Y OTROS Vs. ECUADOR SUPERVISI\u00d3N DE CUMPLIMIENTO DE SENTENCIA VISTO La Sentencia de fondo reparaciones y costas dictada por la Corte Interamericana de Derechos Humanos en adelante la Corte la Corte Interamericana o el Tribunal de de noviembre de en adelante la Sentencia. En dicho Fallo se indic\u00f3 que las autoridades de la Rep\u00fablica del Ecuador en adelante el Estado o Ecuador no asumieron con seriedad y", - "values": [ - "Corte Interamericana de Derechos Humanos" - ] - }, - { - "text": "RESOLUCI\u00d3N DE LA CORTE INTERAMERICANA DE DERECHOS HUMANOS DE DE MAYO DE MEDIDAS PROVISIONALES RESPECTO DE VENEZUELA ASUNTO CENTRO PENITENCIARIO DE ARAGUA C\u00c1RCEL DE TOCOR\u00d3N VISTO La Resoluci\u00f3n de la Corte Interamericana de Derechos Humanos en adelante la Corte Interamericana la Corte o el Tribunal de de noviembre de en los asuntos del Internado Judicial de Monagas La Pica Centro Penitenciario Regi\u00f3n Capital Yare I y Yare II C\u00e1rcel de Yare Centro Penitenciario de la Regi\u00f3n Centro Occidental ", - "values": [ - "Corte Interamericana de Derechos Humanos" - ] - }, - { - "text": "INFORME No. PETICI\u00d3N ADMISIBILIDAD AGUST\u00cdN BLADIMIRO ZEGARRA MAR\u00cdN PER\u00da de marzo de I. RESUMEN El de mayo de la Comisi\u00f3n Interamericana de Derechos Humanos en adelante tambi\u00e9n la Comisi\u00f3n Interamericana la Comisi\u00f3n o la CIDH recibi\u00f3 una petici\u00f3n presentada en nombre propio por el se\u00f1or Agust\u00edn Bladimiro Zegarra Mar\u00edn en adelante tambi\u00e9n el peticionario o la presunta v\u00edctima en la cual se alega la violaci\u00f3n por parte de la Rep\u00fablica de Per\u00fa en adelante tambi\u00e9n Per\u00fa el Estado o el Estado ", - "values": [ - "Comisi\u00f3n Interamericana de Derechos Humanos" - ] - }, - { - "text": "RESOLUCI\u00d3N DE LA CORTE INTERAMERICANA DE DERECHOS HUMANOS DE DE ENERO DE CASO LUNA LOPEZ VS. HONDURAS VISTO La Resoluci\u00f3n del Presidente en adelante la Resoluci\u00f3n de la Corte Interamericana de Derechos Humanos en adelante la Corte o la Corte Interamericana de de diciembre de en la cual entre otros resolvi\u00f3 Requerir por las razones expuestas en la presente Resoluci\u00f3n Considerandos Y de conformidad con el principio de econom\u00eda procesal y en ejercicio de la facultad que le otorga el del", - "values": [ - "Corte Interamericana de Derechos Humanos" - ] - }, - { - "text": "CORTE INTERAMERICANA DE DERECHOS HUMANOS CASO DE LOS PUEBLOS IND\u00cdGENAS KUNA DE MADUNGAND\u00cd Y EMBER\u00c1 DE BAYANO Y SUS MIEMBROS VS. PANAM\u00c1 SENTENCIA DE DE OCTUBRE DE Excepciones Preliminares Fondo Reparaciones y Costas En el Caso de los Pueblos Ind\u00edgenas Kuna de Madungand\u00ed y Ember\u00e1 de Bayano y sus miembros la Corte Interamericana de Derechos Humanos en adelante la Corte Interamericana la Corte o el Tribunal integrada por los siguientes Jueces Humberto Antonio Sierra Porto Presidente Roberto F. ", - "values": [ - "Corte Interamericana de Derechos Humanos" - ] - }, - { - "text": "RESOLUCI\u00d3N DE LA CORTE INTERAMERICANA DE DERECHOS HUMANOS DE DE MAYO DE CASO MENDOZA Y OTROS VS. ARGENTINA VISTO El escrito de de noviembre de mediante el cual la representante de las presuntas v\u00edctimas en adelante la representante solicit\u00f3 la reserva de la identidad de una de \u00e9stas. Los escritos de y de diciembre de mediante los cuales la Comisi\u00f3n Interamericana de Derechos Humanos en adelante la Comisi\u00f3n Interamericana o la Comisi\u00f3n y la Rep\u00fablica Argentina en adelante el Estado o ", - "values": [ - "Corte Interamericana de Derechos Humanos" - ] - }, - { - "text": "RESOLUCI\u00d3N DE LA CORTE INTERAMERICANA DE DERECHOS HUMANOS DE DE NOVIEMBRE DE CASO CESTI HURTADO Vs. Per\u00fa CUMPLIMIENTO DE SENTENCIA VISTOS La Sentencia de fondo emitida por la Corte Interamericana de Derechos Humanos en adelante la Corte la Corte Interamericana o el Tribunal el de septiembre de en la cual por unanimidad declar\u00f3 que el Estado peruano viol\u00f3 en perjuicio del se\u00f1or Gustavo Adolfo Cesti Hurtado los art\u00edculos y de la Convenci\u00f3n Americana sobre Derechos Humanos en los t\u00e9rminos ", - "values": [ - "Corte Interamericana de Derechos Humanos" - ] - }, - { - "text": "Voto razonado concurrente Ram\u00f3n Cadena R\u00e1mila Juez AdHoc Mi voto es a favor en su totalidad de la presente sentencia que viene a adoptar la Corte Interamericana de Derechos Humanos en el caso de la Masacre de Las Dos Erres \u00e9sta viene a ser un avance m\u00e1s en la construcci\u00f3n jurisprudencial de la Corte Interamericana. Las caracter\u00edsticas de la Masacre de Las Dos Erres la convierten en uno de los casos de mayor gravedad que la Corte Interamericana haya conocido en toda su historia no s\u00f3lo por la ", - "values": [ - "Corte Interamericana de Derechos Humanos" - ] - }, - { - "text": "VOTO RAZONADO DE HERNAN SALGADO PESANTES He concurrido con el voto de mayor\u00eda en el presente caso por considerar que fueron probadas las violaciones a los derechos fundamentales del Sr. Daniel Tibi y de miembros de su familia. El conocimiento de estas graves violaciones a los derechos de una persona y en mi calidad de ciudadano ecuatoriano me llevan a las siguientes consideraciones. El Estado del Ecuador no puede permitir ni debe tolerar que las m\u00e1s elementales garant\u00edas del debido proceso ", - "values": [ - "Corte Interamericana de Derechos Humanos" - ] - }, - { - "text": "Corte Interamericana de Derechos Humanos Caso Cesti Hurtado Vs. Per\u00fa Sentencia de de enero de Excepciones Preliminares En el caso Cesti Hurtado la Corte Interamericana de Derechos Humanos en adelante la Corte la Corte Interamericana o el Tribunal integrada por los siguientes jueces Hern\u00e1n Salgado Pesantes Presidente Ant\u00f4nio A. Can\u00e7ado Trindade Vicepresidente M\u00e1ximo Pacheco G\u00f3mez Juez Oliver Jackman Juez Alirio Abreu Burelli Juez Sergio Garc\u00eda Ram\u00edrez Juez y Carlos Vicente de Roux Rengifo Juez", - "values": [ - "Corte Interamericana de Derechos Humanos" - ] - }, - { - "text": "RESOLUCI\u00d3N DE LA CORTE INTERAMERICANA DE DERECHOS HUMANOS DE DE JULIO DE CASO COMERCIANTES VS. COLOMBIA SUPERVISI\u00d3N DE CUMPLIMIENTO DE SENTENCIA VISTOS La Sentencia de fondo reparaciones y costas emitida el de julio de en adelante la Sentencia por la Corte Interamericana de Derechos Humanos en adelante la Corte la Corte Interamericana o el Tribunal. La Resoluci\u00f3n sobre cumplimiento de Sentencia que emiti\u00f3 el Tribunal el de febrero de en la cual DECLAR\u00d3 Que de conformidad con lo en el", - "values": [ - "Corte Interamericana de Derechos Humanos" - ] - }, - { - "text": "Corte Interamericana de Derechos Humanos Caso Castillo Petruzzi y otros Vs. Per\u00fa Sentencia de de septiembre de Excepciones Preliminares En el caso Castillo Petruzzi y otros la Corte Interamericana de Derechos Humanos en adelante la Corte la Corte Interamericana o el Tribunal integrada por los siguientes jueces Hern\u00e1n Salgado Pesantes Presidente Ant\u00f4nio A. Can\u00e7ado Trindade Vicepresidente M\u00e1ximo Pacheco G\u00f3mez Juez Oliver Jackman Juez Sergio Garc\u00eda Ram\u00edrez Juez Carlos Vicente de Roux Rengifo ", - "values": [ - "Corte Interamericana de Derechos Humanos" - ] - }, - { - "text": "Resoluci\u00f3n de la Corte Interamericana de Derechos Humanos de noviembre de Medidas Provisionales Respecto de Venezuela Caso Eloisa Barrios y Otros Visto Las Resoluciones de la Corte Interamericana de Derechos Humanos en adelante la Corte Interamericana la Corte o el Tribunal emitidas el de noviembre de de junio y de septiembre de y de febrero de En la \u00faltima la Corte resolvi\u00f3 Que la muerte del beneficiario Oscar Barrios denota el incumplimiento por parte del Estado de implementar las", - "values": [ - "Corte Interamericana de Derechos Humanos" - ] - }, - { - "text": "RESOLUCI\u00d3N DE LA CORTE INTERAMERICANA DE DERECHOS HUMANOS DE DE NOVIEMBRE DE CASO CANTORAL BENAVIDES vs. PER\u00da CUMPLIMIENTO DE SENTENCIA VISTOS La Sentencia de fondo dictada el de agosto de en cuyos puntos resolutivos d\u00e9cimo segundo y d\u00e9cimo tercero la Corte decidi\u00f3 que el Estado debe ordenar una investigaci\u00f3n para determinar las personas responsables de las violaciones de los derechos humanos a que se ha hecho referencia en esta sentencia y sancionarlos. que el Estado debe reparar los", - "values": [ - "Corte Interamericana de Derechos Humanos" - ] - }, - { - "text": "RESOLUCI\u00d3N DE LA CORTE INTERAMERICANA DE DERECHOS HUMANOS DE DE FEBRERO DE CASO BAENA RICARDO Y OTROS VS. PANAM\u00c1 SUPERVISI\u00d3N DE CUMPLIMIENTO DE SENTENCIA VISTO La Sentencia de fondo reparaciones y costas emitida el de febrero de en adelante la Sentencia por la Corte Interamericana de Derechos Humanos en adelante la Corte Interamericana la Corte o el Tribunal. Las Resoluciones de supervisi\u00f3n de cumplimiento de la Sentencia emitidas por la Corte Interamericana el de junio de el de de ", - "values": [ - "Corte Interamericana de Derechos Humanos" - ] - }, - { - "text": "RESOLUCI\u00d3N DE LA CORTE INTERAMERICANA DE DERECHOS HUMANOS DE DE NOVIEMBRE DE CASO BAENA RICARDO Y OTROS TRABAJADORES VS. PANAM\u00c1 CUMPLIMIENTO DE SENTENCIA VISTOS La sentencia dictada en el caso Baena Ricardo y otros por la Corte Interamericana de Derechos Humanos en adelante la Corte la Corte Interamericana o el Tribunal el de febrero de en cuyos puntos resolutivos por unanimidad declar\u00f3 que el Estado viol\u00f3 los principios de legalidad y de irretroactividad consagrados en el art\u00edculo de ", - "values": [ - "Corte Interamericana de Derechos Humanos" - ] - }, - { - "text": "INFORME N PETICI\u00d3N ADMISIBILIDAD YOLANDA OLGA MALDONADO ORD\u00d3\u00d1EZ GUATEMALA de marzo de I. RESUMEN El de julio de la Comisi\u00f3n Interamericana de Derechos Humanos en adelante la Comisi\u00f3n o la CIDH recibi\u00f3 una petici\u00f3n presentada por Olga Yolanda Maldonado Ord\u00f3\u00f1ez y los abogados Alejandro S\u00e1nchez y Jorge Ra\u00fal Rodr\u00edguez Ovalle en adelante los peticionarios en la cual se alega la responsabilidad del Estado de Guatemala en adelante el Estado o el Estado guatemalteco por la falta de respeto a las", - "values": [ - "Comisi\u00f3n Interamericana de Derechos Humanos" - ] - }, - { - "text": "Corte Interamericana de Derechos Humanos Caso del Tribunal Constitucional Vs. Per\u00fa Sentencia de de enero de Fondo Reparaciones y Costas En el caso del Tribunal Constitucional la Corte Interamericana de Derechos Humanos en adelante la Corte la Corte Interamericana o el Tribunal integrada por los siguientes jueces Ant\u00f4nio A. Can\u00e7ado Trindade Presidente M\u00e1ximo Pacheco G\u00f3mez Vicepresidente Hern\u00e1n Salgado Pesantes Juez Oliver Jackman Juez Alirio Abreu Burelli Juez Sergio Garc\u00eda Ram\u00edrez Juez y de", - "values": [ - "Corte Interamericana de Derechos Humanos" - ] - }, - { - "text": "INFORME N\u00ba PETICI\u00d3N ADMISIBILIDAD COMUNIDAD GAR\u00cdFUNA TRIUNFO DE LA CRUZ Y SUS MIEMBROS HONDURAS de marzo de I. RESUMEN El de octubre de la Comisi\u00f3n Interamericana de Derechos Humanos en adelante la Comisi\u00f3n la Comisi\u00f3n Interamericana o la CIDH recibi\u00f3 una petici\u00f3n presentada por la Organizaci\u00f3n Fraternal Negra Hondure\u00f1a OFRANEH en adelante la peticionaria donde se alega la responsabilidad del Estado de Honduras en adelante Honduras o el Estado por la violaci\u00f3n en perjuicio de la de de", - "values": [ - "Comisi\u00f3n Interamericana de Derechos Humanos" - ] - }, - { - "text": "RESOLUCI\u00d3N DE LA CORTE INTERAMERICANA DE DERECHOS HUMANOS DE DE FEBRERO DE CASO FAMILIA BARRIOS VS. VENEZUELA SUPERVISI\u00d3N DE CUMPLIMIENTO DE SENTENCIA FONDO DE ASISTENCIA LEGAL DE V\u00cdCTIMAS VISTO La Sentencia de fondo reparaciones y costas en adelante la Sentencia dictada por la Corte Interamericana de Derechos Humanos en adelante la Corte Interamericana la Corte o el Tribunal el de noviembre de El caso se refiere inter alia a la privaci\u00f3n de la vida de siete integrantes de la familia a ", - "values": [ - "Corte Interamericana de Derechos Humanos" - ] - }, - { - "text": "RESOLUCI\u00d3N DEL PRESIDENTE DE LA CORTE INTERAMERICANA DE DERECHOS HUMANOS DE DE SEPTIEMBRE DE MEDIDAS PROVISIONALES CASO \u00c1LVAREZ Y OTROS VISTO La resoluci\u00f3n de la Corte Interamericana de Derechos Humanos de de septiembre de mediante la cual decidi\u00f3 convocar a la Comisi\u00f3n Interamericana de Derechos Humanos y al Estado de Colombia a una audiencia p\u00fablica que se celebrar\u00e1 el de noviembre de a partir de las horas en la sede de la Corte para conocer sus argumentos sobre las medidas en el ", - "values": [ - "Corte Interamericana de Derechos Humanos" - ] - }, - { - "text": "INFORME N\u00ba PETICI\u00d3N ADMISIBILIDAD EDUARDO JOS\u00c9 LANDAETA MEJ\u00cdAS Y OTROS VENEZUELA de marzo de I. RESUMEN El de abril de la Comisi\u00f3n Interamericana de Derechos Humanos en adelante tambi\u00e9n la Comisi\u00f3n Interamericana la Comisi\u00f3n o la CIDH recibi\u00f3 una petici\u00f3n presentada por Ignacio Landaeta Mu\u00f1oz la Comisi\u00f3n de Derechos Humanos de Justicia y Paz del Estado Aragua y el Centro por la Justicia y el Derecho Internacional CEJIL en adelante tambi\u00e9n los peticionarios en la cual se alega la por ", - "values": [ - "Comisi\u00f3n Interamericana de Derechos Humanos" - ] - }, - { - "text": "RESOLUCI\u00d3N DEL PRESIDENTE DE LA CORTE INTERAMERICANA DE DERECHOS HUMANOS DE DE FEBRERO DE CASO FAMILIA PACHECO TINEO VS. BOLIVIA VISTO El escrito de sometimiento del caso presentado por la Comisi\u00f3n Interamericana de Derechos Humanos en adelante tambi\u00e9n la Comisi\u00f3n Interamericana o la Comisi\u00f3n ante la Corte Interamericana de Derechos Humanos en adelante la Corte Interamericana la Corte o el Tribunal el de febrero de y sus anexos recibidos el de marzo de mediante el cual ofreci\u00f3 dos los", - "values": [ - "Corte Interamericana de Derechos Humanos" - ] - }, - { - "text": "Order of the InterAmerican Court of Human Rights of November Case of the Juvenile Reeducation Institute v. Paraguay Monitoring Compliance with Judgment HAVING SEEN The Judgment on preliminary objections merits reparations and costs hereinafter the Judgment issued by the InterAmerican Court of Human Rights hereinafter the InterAmerican Court the Court or the Tribunal on September The orders on monitoring compliance with judgment issued by the Court of July and February In the latter ", - "values": [ - "Corte Interamericana de Derechos Humanos" - ] - }, - { - "text": "RESOLUCI\u00d3N DEL PRESIDENTE DE LA CORTE INTERAMERICANA DE DERECHOS HUMANOS DE DE MAYO DE FONDO DE ASISTENCIA LEGAL DE V\u00cdCTIMAS CASO COMUNIDAD GAR\u00cdFUNA PUNTA PIEDRA Y SUS MIEMBROS VS. HONDURAS VISTO El escrito de de octubre de y sus anexos mediante los cuales la Comisi\u00f3n Interamericana de Derechos Humanos en adelante la Comisi\u00f3n Interamericana o la Comisi\u00f3n someti\u00f3 el caso de la Comunidad Gar\u00edfuna Punta Piedra y sus miembros ante la Corte Interamericana de Derechos Humanos en adelante la la", - "values": [ - "Corte Interamericana de Derechos Humanos" - ] - }, - { - "text": "RESOLUCI\u00d3N DEL PRESIDENTE DE LA CORTE INTERAMERICANA DE DERECHOS HUMANOS DE DE MAYO DE CASO CHINCHILLA SANDOVAL Y OTROS VS. GUATEMALA VISTO El escrito de sometimiento del caso y el Informe de Fondo de la Comisi\u00f3n Interamericana de Derechos Humanos en adelante la Comisi\u00f3n Interamericana o la Comisi\u00f3n el escrito de solicitudes argumentos y pruebas en adelante el escrito de solicitudes y argumentos de los representantes de las presuntas v\u00edctimas en adelante los representantes y el escrito de ", - "values": [ - "Corte Interamericana de Derechos Humanos" - ] - }, - { - "text": "RESOLUCI\u00d3N DE LA CORTE INTERAMERICANA DE DERECHOS HUMANOS DE DE JUNIO DE CASO CHAPARRO \u00c1LVAREZ Y LAPO \u00cd\u00d1IGUEZ VS. ECUADOR SUPERVISI\u00d3N DE CUMPLIMIENTO DE SENTENCIA VISTO La Sentencia de excepciones preliminares fondo reparaciones y costas en adelante la Sentencia dictada en el presente caso por la Corte Interamericana de Derechos Humanos en adelante la Corte Interamericana la Corte o el Tribunalel de noviembre de Este caso se relaciona con la detenci\u00f3n ilegal de los se\u00f1ores Juan Carlos y ", - "values": [ - "Corte Interamericana de Derechos Humanos" - ] - }, - { - "text": "INFORME N\u00ba PETICI\u00d3N ADMISIBILIDAD FLORENCIO CHITAY NECH Y OTROS GUATEMALA de febrero de I. RESUMEN El de marzo de la Comisi\u00f3n Interamericana de Derechos Humanos en adelante la Comisi\u00f3n Interamericana la Comisi\u00f3n o la CIDH recibi\u00f3 una denuncia presentada por Pedro Chitay Rodr\u00edguez Alejandro S\u00e1nchez Garrido Astrid Odete Escobedo Barrondo y la Asociaci\u00f3n Azmitia Dorantes para el desarrollo y fomento integral representada por Irma Graciela Azmitia Dorantes en adelante los peticionarios en la", - "values": [ - "Comisi\u00f3n Interamericana de Derechos Humanos" - ] - }, - { - "text": "CORTE INTERAMERICANA DE DIREITOS HUMANOS CASO GARIBALDI VS. BRASIL SENTEN\u00c7A DE DE SETEMBRO DE Exce\u00e7\u00f5es Preliminares M\u00e9rito Repara\u00e7\u00f5es e Custas No caso Garibaldi a Corte Interamericana de Direitos Humanos doravante a Corte Interamericana a Corte ou o Tribunal integrada pelos seguintes ju\u00edzes Cecilia Medina Quiroga Presidenta Diego Garc\u00edaSay\u00e1n Vicepresidente Sergio Garc\u00eda Ram\u00edrez Juiz Manuel E. Ventura Robles Juiz Leonardo A. Franco Juiz Margarette May Macaulay Ju\u00edza Rhadys Abreu Blondet Ju\u00edza ", - "values": [ - "Corte Interamericana de Derechos Humanos" - ] - }, - { - "text": "RESOLUCI\u00d3N DE LA CORTE INTERAMERICANA DE DERECHOS HUMANOS DE DE NOVIEMBRE DE MEDIDAS PROVISIONALES RESPECTO DE LA REP\u00daBLICA DE COLOMBIA CASO GIRALDO CARDONA VISTO La Resoluci\u00f3n del Presidente de la Corte Interamericana de Derechos Humanos en adelante la Corte Interamericana la Corte o el Tribunal de de octubre de mediante la cual decidi\u00f3 inter alia Requerir al Gobierno de Colombia que adopte sin dilaci\u00f3n cuantas medidas sean necesarias para proteger la vida e integridad f\u00edsica de la ", - "values": [ - "Corte Interamericana de Derechos Humanos" - ] - }, - { - "text": "RESOLUCI\u00d3N DE LA CORTE INTERAMERICANA DE DERECHOS HUMANOS DE DE MARZO DE MEDIDAS PROVISIONALES CASO DE LA MASACRE DE MAPIRIP\u00c1N vs. COLOMBIA VISTO La Resoluci\u00f3n de medidas urgentes dictada por el entonces Presidente de la Corte Interamericana de Derechos Humanos en adelante la Corte Interamericana la Corte o el Tribunal de de febrero de La Resoluci\u00f3n dictada por la Corte el de junio de mediante la cual resolvi\u00f3 inter alia Ratificar la Resoluci\u00f3n del Presidente de medidas urgentes de ", - "values": [ - "Corte Interamericana de Derechos Humanos" - ] - }, - { - "text": "VOTO CONCORDANTE DO JUIZ SERGIO GARCIA RAMIREZ \u00c0 SENTEN\u00c7A DO CASO YATAMA VS. NICAR\u00c1GUA DE DE JUNHO DE A Categorias de viola\u00e7\u00f5es. Indiv\u00edduos e integrantes de grupos ou comunidades A Corte Interamericana conheceu viola\u00e7\u00f5es cometidas em preju\u00edzo de indiv\u00edduos isoladamente que podem ser reduzidas a um caso concreto ou colocar \u00e0 vista um padr\u00e3o de comportamento e sugerir medidas destinadas a evitar novas transgress\u00f5es similares em detrimento de numerosas pessoas. Al\u00e9m disso este Tribunal conheceu", - "values": [ - "Corte Interamericana de Derechos Humanos" - ] - }, - { - "text": "VOTO CONCURRENTE DEL JUEZ SERGIO GARC\u00cdA RAM\u00cdREZ A LA SENTENCIA DE LA CORTE INTERAMERICANA SOBRE EL CASO DE LA MASACRE DE LA ROCHELA VS. COLOMBIA DEL DE MAYO DE La Corte Interamericana sirve a su competencia sobre violaci\u00f3n de derechos humanos desde una perspectiva jur\u00eddica que abarca tanto los instrumentos que le confieren aqu\u00e9lla como las normas de car\u00e1cter internacional que concurren a fijar el alcance de ciertos hechos y disposiciones entre otros extremos. As\u00ed se coloca en un contexto de ", - "values": [ - "Corte Interamericana de Derechos Humanos" - ] - }, - { - "text": "RESOLUCI\u00d3N DE LA CORTE INTERAMERICANA DE DERECHOS HUMANOS DE DE NOVIEMBRE DE MEDIDAS PROVISIONALES ORDENADAS POR LA CORTE INTERAMERICANA DE DERECHOS HUMANOS RESPECTO DE LA REP\u00daBLICA DE TRINIDAD Y TOBAGO CASO JAMES Y OTROS VISTOS La Resoluci\u00f3n de la Corte Interamericana de Derechos Humanos en adelante la Corte o la Corte Interamericana de de agosto de en la cual decidi\u00f3 Requerir que Trinidad y Tobago mantenga las medidas provisionales ordenadas por la Corte Interamericana de Derechos el ", - "values": [ - "Corte Interamericana de Derechos Humanos" - ] - }, - { - "text": "RESOLUCI\u00d3N DE LA CORTE INTERAMERICANA DE DERECHOS HUMANOS DE DE JUNIO DE CASO COMERCIANTES VS. COLOMBIA SUPERVISI\u00d3N DE CUMPLIMIENTO DE SENTENCIA VISTO La Sentencia de fondo reparaciones y costas emitida el de julio de en adelante la Sentencia por la Corte Interamericana de Derechos Humanos en adelante la Corte Interamericana la Corte o el Tribunal. Las Resoluciones de la Corte Interamericana de de febrero de de julio de de noviembre de y de julio de En esta \u00faltima resoluci\u00f3n el ", - "values": [ - "Corte Interamericana de Derechos Humanos" - ] - }, - { - "text": "VOTO RAZONADO DEL JUEZ A. A. CAN\u00c7ADO TRINDADE Suscribo la decisi\u00f3n de la Corte Interamericana de Derechos Humanos en el presente caso Blake pero hubiera preferido que la Corte fundamentara sus conclusiones en razonamiento distinto. Dada la importancia de la presente Sentencia sobre Excepciones Preliminares por constituir esta la primera vez en que la Corte es llamada a pronunciarse sobre la materia en las circunstancias particulares del cas desp\u00e8ce y por sus implicaciones para casos cong\u00e9neres", - "values": [ - "Corte Interamericana de Derechos Humanos" - ] - }, - { - "text": "RESOLUCI\u00d3N DEL PRESIDENTE DE LA CORTE INTERAMERICANA DE DERECHOS HUMANOS DE DE JULIO DE MEDIDAS PROVISIONALES SOLICITADAS POR LA COMISI\u00d3N INTERAMERICANA DE DERECHOS HUMANOS RESPECTO DE LA REP\u00daBLICA DE COLOMBIA CASO \u00c1LVAREZ Y OTROS VISTOS El escrito de de julio de y sus anexos mediante el cual la Comisi\u00f3n Interamericana de Derechos Humanos en adelante la Comisi\u00f3n o la Comisi\u00f3n Interamericana someti\u00f3 a la Corte Interamericana de Derechos Humanos en adelante la Corte o la Corte Interamericana", - "values": [ - "Corte Interamericana de Derechos Humanos" - ] - }, - { - "text": "RESOLUCI\u00d3N DE LA CORTE INTERAMERICANA DE DERECHOS HUMANOS DE DE JUNIO DE MEDIDAS PROVISIONALES CASO DE LAS PENITENCIAR\u00cdAS DE MENDOZA VISTOS El escrito de de octubre de y sus anexos mediante los cuales la Comisi\u00f3n Interamericana de Derechos Humanos en adelante la Comisi\u00f3n Interamericana o la Comisi\u00f3n someti\u00f3 a la Corte Interamericana de Derechos Humanos en adelante la Corte la Corte Interamericana o el Tribunal una solicitud de medidas provisionales de conformidad con los art\u00edculos de la ", - "values": [ - "Corte Interamericana de Derechos Humanos" - ] - }, - { - "text": "RESOLUCI\u00d3N DE LA CORTE INTERAMERICANA DE DERECHOS HUMANOS DE DE JULIO DE CASO LOAYZA TAMAYO VS. PER\u00da SUPERVISI\u00d3N DE CUMPLIMIENTO DE SENTENCIA VISTO Las Sentencias de fondo reparaciones y costas y de interpretaci\u00f3n de esta \u00faltima dictadas por la Corte Interamericana de Derechos Humanos en adelante la Corte Interamericana la Corte o el Tribunal el de septiembre de el de noviembre de y el de junio de respectivamente. Las Resoluciones de Supervisi\u00f3n de Cumplimiento de la Sentencia de y ", - "values": [ - "Corte Interamericana de Derechos Humanos" - ] - }, - { - "text": "VOTO PARCIALMENTE DISIDENTE DEL JUEZ A. ABREU BURELLI Al ser sometida a votaci\u00f3n la sentencia de fondo en el caso Comunidad ind\u00edgena Yakye Axa manifest\u00e9 mi disentimiento en relaci\u00f3n con el punto resolutivo en el cual la Corte declara que no cuenta con elementos probatorios suficientes para demostrar la violaci\u00f3n del Derecho a la vida consagrado en el art\u00edculo de la Convenci\u00f3n Americana sobre Derechos Humanos en perjuicio de diecis\u00e9is miembros de la Comunidad ind\u00edgena Yakye Axa A partir de ", - "values": [ - "Corte Interamericana de Derechos Humanos" - ] - }, - { - "text": "RESOLUCI\u00d3N DE LA CORTE INTERAMERICANA DE DERECHOS HUMANOS DE DE MAYO DE MEDIDAS PROVISIONALES RESPECTO DE VENEZUELA ASUNTO GUERRERO LAREZ VISTO La Resoluci\u00f3n emitida por la Corte Interamericana de Derechos Humanos en adelante la Corte Interamericana la Corte o el Tribunal el de noviembre de mediante la cual el Tribunal adopt\u00f3 medidas provisionales en el presente asunto y en particular resolvi\u00f3 inter alia Requerir al Estado que adopte de forma inmediata las medidas que sean necesarias para", - "values": [ - "Corte Interamericana de Derechos Humanos" - ] - }, - { - "text": "RESOLUCI\u00d3N DE LA CORTE INTERAMERICANA DE DERECHOS HUMANOS DE DE MAYO DE FONDO DE ASISTENCIA LEGAL DE V\u00cdCTIMAS CASO CONTRERAS Y OTROS VS. EL SALVADOR VISTO La Sentencia de fondo reparaciones y costas en adelante la Sentencia dictada por la Corte Interamericana de Derechos Humanos en adelante la Corte Interamericana la Corte o el Tribunal el de agosto de mediante la cual dispuso inter alia que El Estado debe reintegrar al Fondo de Asistencia Legal de V\u00edctimas de la Corte Interamericana de", - "values": [ - "Corte Interamericana de Derechos Humanos" - ] - }, - { - "text": "RESOLUCI\u00d3N DE LA CORTE INTERAMERICANA DE DERECHOS HUMANOS DE DE MARZO DE MEDIDAS PROVISIONALES CASO DE LAS PENITENCIAR\u00cdAS DE MENDOZA VISTOS El escrito de de octubre de y sus anexos mediante los cuales la Comisi\u00f3n Interamericana de Derechos Humanos en adelante la Comisi\u00f3n Interamericana o la Comisi\u00f3n someti\u00f3 a la Corte Interamericana de Derechos Humanos en adelante la Corte la Corte Interamericana o el Tribunal una solicitud de medidas provisionales de conformidad con los art\u00edculos de la ", - "values": [ - "Corte Interamericana de Derechos Humanos" - ] - }, - { - "text": "RESOLUCI\u00d3N DE LA CORTE INTERAMERICANA DE DERECHOS HUMANOS DE DE JUNIO DE CASO DE LA MASACRE DE SANTO DOMINGO VS. COLOMBIA VISTO El escrito de interposici\u00f3n de excepciones preliminares contestaci\u00f3n a la demanda y observaciones al escrito de solicitudes y argumentos y sus anexos en adelante el escrito de contestaci\u00f3n recibido el de marzo de mediante el cual la Rep\u00fablica de Colombia en adelante el Estado ofreci\u00f3 un testimonio y cinco dict\u00e1menes periciales sin identificar a las personas que ", - "values": [ - "Corte Interamericana de Derechos Humanos" - ] - }, - { - "text": "RESOLUCI\u00d3N DEL PRESIDENTE DE LA CORTE INTERAMERICANA DE DERECHOS HUMANOS DE DE JULIO DE MEDIDAS PROVISIONALES SOLICITADAS POR LA COMISI\u00d3N INTERAMERICANA DE DERECHOS HUMANOS RESPECTO DE LA REP\u00daBLICA BOLIVARIANA DE VENEZUELA CASO DE MARTA COLOMINA y LILIANA VELASQUEZ RESPECTO DE VENEZUELA VISTOS La comunicaci\u00f3n de de julio de y sus anexos mediante la cual la Comisi\u00f3n Interamericana de Derechos Humanos en adelante la Comisi\u00f3n Interamericana o la Comisi\u00f3n someti\u00f3 a la Corte Interamericana de ", - "values": [ - "Corte Interamericana de Derechos Humanos" - ] - }, - { - "text": "Corte Interamericana de Derechos Humanos Caso Castillo P\u00e1ez Vs. Per\u00fa Sentencia de de noviembre de Reparaciones y Costas En el caso Castillo P\u00e1ez la Corte Interamericana de Derechos Humanos integrada por los siguientes jueces Hern\u00e1n Salgado Pesantes Presidente Ant\u00f4nio A. Can\u00e7ado Trindade Vicepresidente M\u00e1ximo Pacheco G\u00f3mez Juez Oliver Jackman Juez Alirio Abreu Burelli Juez Sergio Garc\u00eda Ram\u00edrez Juez Carlos Vicente de Roux Rengifo Juez presentes adem\u00e1s Manuel E. Ventura Robles Secretario y M. ", - "values": [ - "Corte Interamericana de Derechos Humanos" - ] - }, - { - "text": "RESOLUCI\u00d3N DE LA PRESIDENTA DE LA CORTE INTERAMERICANA DE DERECHOS HUMANOS DE DE MAYO DE CASO BARRETO LEIVA VS. VENEZUELA VISTO El escrito de demanda presentado por la Comisi\u00f3n Interamericana de Derechos Humanos en adelante la Comisi\u00f3n Interamericana o la Comisi\u00f3n ante la Corte Interamericana de Derechos Humanos en adelante la Corte Interamericana la Corte o el Tribunal el de octubre de en el que ofreci\u00f3 la declaraci\u00f3n de la presunta v\u00edctima y de un perito no identificado. La comunicaci\u00f3n", - "values": [ - "Corte Interamericana de Derechos Humanos" - ] - }, - { - "text": "RESOLUCI\u00d3N DEL PRESIDENTE DE LA CORTE INTERAMERICANA DE DERECHOS HUMANOS DEL DE DICIEMBRE DE MEDIDAS PROVISIONALES SOLICITADAS POR LA COMISI\u00d3N INTERAMERICANA DE DERECHOS HUMANOS RESPECTO DEL PER\u00da CASO CHIPOCO VISTO La comunicaci\u00f3n de de noviembre de recibida en la Secretar\u00eda de la Corte en forma completa al d\u00eda siguiente mediante la cual la Comisi\u00f3n Interamericana de Derechos Humanos en adelante la Comisi\u00f3n o la Comisi\u00f3n Interamericana somete a la Corte Interamericana de Derechos Humanos ", - "values": [ - "Corte Interamericana de Derechos Humanos" - ] - }, - { - "text": "Corte Interamericana de Derechos Humanos Caso God\u00ednez Cruz Vs. Honduras Sentencia de de agosto de Interpretaci\u00f3n de la Sentencia de Reparaciones y Costas En el caso God\u00ednez Cruz la Corte Interamericana de Derechos Humanos integrada en observancia del art\u00edculo de la Convenci\u00f3n Americana sobre Derechos Humanos por los siguientes jueces H\u00e9ctor FixZamudio Presidente Rodolfo E. Piza E Juez Pedro Nikken Juez Rafael Nieto Navia Juez Rigoberto Espinal Ir\u00edas Juez ad hoc presente adem\u00e1s Manuel E. ", - "values": [ - "Corte Interamericana de Derechos Humanos" - ] - }, - { - "text": "RESOLUCI\u00d3N DE LA CORTE INTERAMERICANA DE DERECHOS HUMANOS DE DE NOVIEMBRE DE MEDIDAS PROVISIONALES RESPECTO DE LA REP\u00daBLICA DE COLOMBIA ASUNTO MERY NARANJO Y OTROS VISTO Las Resoluciones dictadas por la Corte Interamericana de Derechos Humanos en adelante la Corte Interamericana la Corte o el Tribunal de de julio de de septiembre de y de enero de mediante las cuales el Tribunal orden\u00f3 medidas provisionales en el presente asunto. En esta \u00faltima la Corte resolvi\u00f3 inter alia Reiterar al ", - "values": [ - "Corte Interamericana de Derechos Humanos" - ] - }, - { - "text": "RESOLUCI\u00d3N DE LA CORTE INTERAMERICANA DE DERECHOS HUMANOS DE DE NOVIEMBRE DE MEDIDAS PROVISIONALES SOLICITADAS POR LA COMISI\u00d3N INTERAMERICANA DE DERECHOS HUMANOS RESPECTO DE LOS ESTADOS UNIDOS MEXICANOS CASO DIGNA OCHOA Y PL\u00c1CIDO Y OTROS VISTOS El escrito de de noviembre de y sus anexos mediante el cual la Comisi\u00f3n Interamericana de Derechos Humanos en adelante la Comisi\u00f3n o la Comisi\u00f3n Interamericana someti\u00f3 a la Corte Interamericana de Derechos Humanos en adelante la Corte o la Corte en", - "values": [ - "Corte Interamericana de Derechos Humanos" - ] - }, - { - "text": "RESOLUCI\u00d3N DE LA CORTE INTERAMERICANA DE DERECHOS HUMANOS DE DE ABRIL DE CASO FAMILIA PACHECO TINEO VS. ESTADO PLURINACIONAL DE BOLIVIA SUPERVISI\u00d3N DE CUMPLIMIENTO DE SENTENCIA VISTO La Sentencia de excepciones preliminares fondo reparaciones y costas en adelante la Sentencia dictada por la Corte Interamericana de Derechos Humanos en adelante la Corte la Corte Interamericana o el Tribunal el de noviembre de la cual fue notificada el de diciembre de en la cual se declar\u00f3 que el Estado ", - "values": [ - "Corte Interamericana de Derechos Humanos" - ] - }, - { - "text": " VOTO RAZONADO DEL JUEZ SERGIO GARC\u00cdA RAM\u00cdREZ CON RESPECTO A LA SENTENCIA DE LA CORTE INTERAMERICANA DE DERECHOS HUMANOS DEL DE MARZO DE EN EL CASO COMUNIDAD IND\u00cdGENA SAWHOYAMAXA VS. PARAGUAY I. Cuestiones procesales procedimientos efectivos y plazo razonable En el caso que ahora nos ocupa quedan de manifiesto nuevamente como ha sucedido en otros litigios llevados ante la Corte que dieron lugar a una jurisprudencia cada vez m\u00e1s amplia y comprensiva los problemas asociados a la tutela o no ", - "values": [ - "Corte Interamericana de Derechos Humanos" - ] - }, - { - "text": "RESOLUCI\u00d3N DEL PRESIDENTE DE LA CORTE INTERAMERICANA DE DERECHOS HUMANOS DE DE ENERO DE CASO LUIS WILLIAMS POLLO RIVERA VS. PER\u00da VISTO El sometimiento del caso Luis Williams Pollo Rivera vs. Per\u00fa ante la Corte Interamericana de Derechos Humanos en adelante la Corte o el Tribunal por parte de la Comisi\u00f3n Interamericana de Derechos Humanos en adelante la Comisi\u00f3n Interamericana o la Comisi\u00f3n realizado mediante escrito de de febrero de El escrito original y los anexos fueron recibidos el de ", - "values": [ - "Corte Interamericana de Derechos Humanos" - ] - }, - { - "text": "RESOLUCI\u00d3N DE LA CORTE INTERAMERICANA DE DERECHOS HUMANOS DE DE JUNIO DE MEDIDAS PROVISIONALES RESPECTO DE M\u00c9XICO CASO ROSENDO CANT\u00da Y OTRA VISTO Las Resoluciones de la Corte Interamericana de Derechos Humanos en adelante la Corte Interamericana la Corte o este Tribunal de de febrero de y de julio de mediante las cuales se orden\u00f3 la adopci\u00f3n de medidas provisionales en el presente caso y se supervis\u00f3 su implementaci\u00f3n. En la \u00faltima Resoluci\u00f3n este Tribunal resolvi\u00f3 inter alia Requerir ", - "values": [ - "Corte Interamericana de Derechos Humanos" - ] - }, - { - "text": "VOTO RAZONADO DEL JUEZ AA. CAN\u00c7ADO TRINDADE Suscribo la decisi\u00f3n de la Corte de desestimar las excepciones preliminares interpuestas por el Gobierno demandado y de proseguir con el conocimiento del presente caso en cuanto al fondo con la cual estoy de acuerdo. Si\u00e9ntome obligado a adjuntar este Voto Razonado para dejar constancia de los fundamentos de mi razonamiento y posici\u00f3n sobre el punto central de las dos excepciones preliminares presentadas por el Gobierno del Per\u00fa a saber la invocaci\u00f3n ", - "values": [ - "Corte Interamericana de Derechos Humanos" - ] - }, - { - "text": "RESOLUCI\u00d3N DE LA CORTE INTERAMERICANA DE DERECHOS HUMANOS DE DE DICIEMBRE DE MEDIDAS PROVISIONALES RESPECTO REPUBLICA BOLIVARIANA DE VENEZUELA CASO MARTA COLOMINA Y LILIANA VEL\u00c1SQUEZ VISTOS La Resoluci\u00f3n del Presidente de la Corte Interamericana de Derechos Humanos en adelante el Presidente dictada el de julio de mediante la cual resolvi\u00f3 Requerir al Estado que adopte sin dilaci\u00f3n cuantas medidas sean necesarias para proteger la vida la integridad personal y la libertad de expresi\u00f3n de ", - "values": [ - "Corte Interamericana de Derechos Humanos" - ] - }, - { - "text": "INFORME N PETICI\u00d3N ADMISIBILIDAD LUIS ANTONIO GALINDO C\u00c1RDENAS PER\u00da de febrero de I. RESUMEN El presente informe se refiere a la admisibilidad de la petici\u00f3n Las actuaciones fueron iniciadas por la Comisi\u00f3n Interamericana de Derechos Humanos en lo sucesivo la Comisi\u00f3n Interamericana la Comisi\u00f3n o la CIDH el de enero de tras recibir una petici\u00f3n de fecha de enero de presentada por el se\u00f1or Luis Antonio Galindo C\u00e1rdenas contra la Rep\u00fablica del Per\u00fa en adelante Per\u00fa el Estado o el Estado", - "values": [ - "Comisi\u00f3n Interamericana de Derechos Humanos" - ] - }, - { - "text": "RESOLUCI\u00d3N DEL PRESIDENTE DE LA CORTE INTERAMERICANA DE DERECHOS HUMANOS DE DE DICIEMBRE DE CASO GARC\u00cdA IBARRA Y FAMILIARES VS. ECUADOR VISTO El escrito de sometimiento del caso y el Informe de Fondo de la Comisi\u00f3n Interamericana de Derechos Humanos en adelante la Comisi\u00f3n Interamericana o la Comisi\u00f3n el escrito de solicitudes argumentos y pruebas en adelante el escrito de solicitudes y argumentos de los representantes de las presuntas v\u00edctimas en adelante los representantes y el escrito de", - "values": [ - "Corte Interamericana de Derechos Humanos" - ] - }, - { - "text": "RESOLUCI\u00d3N DEL PRESIDENTE EN EJERCICIO DE LA CORTE INTERAMERICANA DE DERECHOS HUMANOS DE DE MAYO DE SOLICITUD DE MEDIDAS PROVISIONALES PRESENTADA POR LA COMISI\u00d3N INTERAMERICANA DE DERECHOS HUMANOS RESPECTO DE COLOMBIA ASUNTO DANILO RUEDA VISTO El escrito de la Comisi\u00f3n Interamericana de Derechos Humanos en adelante la Comisi\u00f3n Interamericana o la Comisi\u00f3n de de abril de mediante el cual someti\u00f3 a la Corte Interamericana de Derechos Humanos en adelante la Corte Interamericana la Corte o el ", - "values": [ - "Corte Interamericana de Derechos Humanos" - ] - }, - { - "text": "Resoluci\u00f3n del Presidente en ejercicio de la Corte Interamericana de Derechos Humanos de de diciembre de Caso Palamara Iribarne Vs. Chile Supervisi\u00f3n de Cumplimiento de Sentencia Visto La Sentencia de fondo reparaciones y costas de de noviembre de en adelante la Sentencia emitida por la Corte Interamericana de Derechos Humanos en adelante la Corte Interamericana la Corte o el Tribunal. La Resoluci\u00f3n de supervisi\u00f3n de cumplimiento de la Sentencia emitida por la Corte el de noviembre de ", - "values": [ - "Corte Interamericana de Derechos Humanos" - ] - }, - { - "text": "Resoluci\u00f3n de la Corte Interamericana de Derechos Humanos de de febrero de Caso L\u00f3pez \u00c1lvarez vs. Honduras Supervisi\u00f3n de Cumplimiento de Sentencia VISTOS La Sentencia de fondo reparaciones y costas emitida el de febrero de en adelante la Sentencia por la Corte Interamericana de Derechos Humanos en adelante la Corte la Corte Interamericana o el Tribunal mediante la cual el Tribunal DISPUSO El Estado debe investigar los hechos del caso y aplicar las providencias que resulten de esa a ", - "values": [ - "Corte Interamericana de Derechos Humanos" - ] - }, - { - "text": "RESOLUCI\u00d3N DEL PRESIDENTE DE LA CORTE INTERAMERICANA DE DERECHOS HUMANOS DEL DE JULIO DE MEDIDAS PROVISIONALES SOLICITADAS POR LA COMISI\u00d3N INTERAMERICANA DE DERECHOS HUMANOS RESPECTO DE GUATEMALA CASO CHUNIMA EL PRESIDENTE DE LA CORTE INTERAMERICANA DE DERECHOS HUMANOS VISTO La comunicaci\u00f3n de de junio de recibida en la Secretar\u00eda de la Corte al d\u00eda siguiente mediante la cual la Comisi\u00f3n Interamericana de Derechos Humanos en adelante la Comisi\u00f3n somete a la Corte Interamericana de Derechos", - "values": [ - "Corte Interamericana de Derechos Humanos" - ] - }, - { - "text": "VOTO CONCURRENTE DEL JUEZ AD HOC ALEJANDRO CARLOS ESPINOSA EN RELACI\u00d3N CON LA SENTENCIA DE LA CORTE INTERAMERICANA DE DERECHOS HUMANOS EN EL CASO ROSENDO CANT\u00da Y OTRA VS. M\u00c9XICO DE DE AGOSTO DE El presente voto concurrente vale para el caso citado ut supra as\u00ed como para el caso Fern\u00e1ndez Ortega y otros Vs. M\u00e9xico en consideraci\u00f3n a las razones siguientes a Se trata de militares en servicio esto es agentes del Estado mexicano que bajo una condici\u00f3n especial incurrieron en violaciones graves ", - "values": [ - "Corte Interamericana de Derechos Humanos" - ] - }, - { - "text": "RELAT\u00d3RIO N\u00ba ADMISSIBILIDADE PETI\u00c7\u00c3O FERM\u00cdN RAM\u00cdREZ EOU FERM\u00cdN RAM\u00cdREZ ORDO\u00d1EZ GUATEMALA de outubro de I. RESUMO Em de junho de a Comiss\u00e3o Interamericana de Direitos Humanos doravante denominada a Comiss\u00e3o Interamericana a Comiss\u00e3o ou a CIDH recebeu uma den\u00fancia apresentada pelo Instituto de Defesa P\u00fablica Penal doravante denominado o peticion\u00e1rio representando o Sr. Ferm\u00edn Ram\u00edrez ou Ferm\u00edn Ram\u00edrez Ordo\u00f1ez doravante denominada a suposta v\u00edtima contra a Rep\u00fablica da Guatemala doravante ", - "values": [ - "Comisi\u00f3n Interamericana de Derechos Humanos" - ] - }, - { - "text": "RESOLUCI\u00d3N DEL PRESIDENTE DE LA CORTE INTERAMERICANA DE DERECHOS HUMANOS DE DE SEPTIEMBRE DE CASO TIDE M\u00c9NDEZ Y OTROS VS. REP\u00daBLICA DOMINICANA VISTO El escrito de sometimiento del caso contra el Estado de Rep\u00fablica Dominicana en adelante el Estado o Rep\u00fablica Dominicana presentado el de julio de por la Comisi\u00f3n Interamericana de Derechos Humanos en adelante tambi\u00e9n la Comisi\u00f3n Interamericana o la Comisi\u00f3n ante la Corte Interamericana de Derechos Humanos en adelante tambi\u00e9n la Corte la o ", - "values": [ - "Corte Interamericana de Derechos Humanos" - ] - }, - { - "text": "ORDER OF THE INTERAMERICAN COURT OF HUMAN RIGHTS OF MAY CASE OF CHAPARRO \u00c1LVAREZ AND LAPO \u00cd\u00d1IGUEZ V. ECUADOR MONITORING COMPLIANCE WITH JUDGMENT HAVING SEEN The Judgment on preliminary objections merits reparations and costs hereinafter the Judgment delivered by the InterAmerican Court of Human Rights hereinafter the InterAmerican Court or the Court of November whereby it decided that The State had to eliminate forthwith the names of Juan Carlos Chaparro \u00c1lvarez and Freddy Hern\u00e1n Lapo ", - "values": [ - "Corte Interamericana de Derechos Humanos" - ] - }, - { - "text": "RESOLUCI\u00d3N DE LA PRESIDENTA DE LA CORTE INTERAMERICANA DE DERECHOS HUMANOS DE DE MARZO DE CASO SU\u00c1REZ ROSERO VS. ECUADOR SUPERVISI\u00d3N DE CUMPLIMIENTO DE SENTENCIAS VISTO La Sentencia de fondo dictada por la Corte Interamericana de Derechos Humanos en adelante la Corte la Corte Interamericana o el Tribunal el de noviembre de mediante la cual Declar\u00f3 que el Ecuador deb\u00eda ordenar una investigaci\u00f3n para determinar las personas responsables de las violaciones a los derechos humanos a que se ", - "values": [ - "Corte Interamericana de Derechos Humanos" - ] - }, - { - "text": "VOTO CONCURRENTE DEL JUEZ SERGIO GARC\u00cdA RAM\u00cdREZ A LA SENTENCIA DE LA CORTE INTERAMERICANA DE DERECHOS HUMANOS SOBRE EL CASO VALLE JARAMILLO Y OTROS DEL DE NOVIEMBRE DE En la sentencia correspondiente al caso Valle Jaramillo y otros Colombia de la Corte Interamericana de Derechos Humanos del de noviembre de el Tribunal ha avanzado apreciablemente en la formulaci\u00f3n de criterios sobre temas relevantes del enjuiciamiento penal contemplado desde la perspectiva de los derechos humanos que en ", - "values": [ - "Corte Interamericana de Derechos Humanos" - ] - }, - { - "text": "VOTO DISIDENTE DEL JUEZ AA. CAN\u00c7ADO TRINDADE Lamento no poder compartir la decisi\u00f3n tomada por la mayor\u00eda de la Corte Interamericana de Derechos Humanos en el punto resolutivo n. y el criterio por \u00e9sta adoptado sobre este punto en los p\u00e1rrafos considerativos ns. de la presente Sentencia sobre Excepciones Preliminares en el caso de las Hermanas Serrano Cruz versus El Salvador en el sentido de haber la Corte admitido la primera excepci\u00f3n preliminar ratione temporis interpuesta por el Estado ", - "values": [ - "Corte Interamericana de Derechos Humanos" - ] - }, - { - "text": "Resoluci\u00f3n de la Corte Interamericana de Derechos Humanos De de febrero de Caso Comunidad Ind\u00edgena Sawhoyamaxa Vs. Paraguay Supervisi\u00f3n de Cumplimiento de Sentencia VISTOS La Sentencia de fondo reparaciones y costas dictada por la Corte Interamericana de Derechos Humanos en adelante la Corte la Corte Interamericana o el Tribunal el de marzo de mediante la cual dispuso inter alia que el Estado deb\u00eda adoptar todas las medidas legislativas administrativas y de cualquier otra \u00edndole para en ", - "values": [ - "Corte Interamericana de Derechos Humanos" - ] - }, - { - "text": "CORTE INTERAMERICANA DE DIREITOS HUMANOS CASO ESCHER E OUTROS VS. BRASIL SENTEN\u00c7A DE DE JULHO DE Exce\u00e7\u00f5es Preliminares M\u00e9rito Repara\u00e7\u00f5es e Custas No caso Escher e outros a Corte Interamericana de Direitos Humanos doravante a Corte Interamericana a Corte ou o Tribunal integrada pelos seguintes ju\u00edzes Cecilia Medina Quiroga Presidenta Diego Garc\u00edaSay\u00e1n Vicepresidente Sergio Garc\u00eda Ram\u00edrez Juiz Manuel E. Ventura Robles Juiz Leonardo A. Franco Juiz Margarette May Macaulay Ju\u00edza Rhadys Abreu e ", - "values": [ - "Corte Interamericana de Derechos Humanos" - ] - }, - { - "text": "RESOLUCI\u00d3N DEL PRESIDENTE DE LA CORTE INTERAMERICANA DE DERECHOS HUMANOS EN EJERCICIO PARA EL PRESENTE CASO DE DE JULIO DE CASO \u00c1NGEL ALBERTO DUQUE VS. COLOMBIA CONVOCATORIA A AUDIENCIA VISTO El escrito de sometimiento del caso y el Informe de Fondo de la Comisi\u00f3n Interamericana de Derechos Humanos en adelante la Comisi\u00f3n Interamericana o la Comisi\u00f3n el escrito de solicitudes argumentos y pruebas en adelante el escrito de solicitudes y argumentos de los representantes de las presuntas en ", - "values": [ - "Corte Interamericana de Derechos Humanos" - ] - }, - { - "text": "RESOLU\u00c7\u00c3O DA CORTE INTERAMERICANA DE DIREITOS HUMANOS DE DE SETEMBRO DE SOLICITA\u00c7\u00c3O DE MEDIDAS PROVIS\u00d3RIAS APRESENTADA PELA COMISS\u00c3O INTERAMERICANA DE DIREITOS HUMANOS COM RESPEITO AO BRASIL A FAVOR DAS PESSOAS PRIVADAS DE LIBERDADE NA PENITENCI\u00c1RIA DR. SEBASTI\u00c3O MARTINS SILVEIRA EM ARARAQUARA S\u00c3O PAULO BRASIL VISTO O documento da Comiss\u00e3o Interamericana de Direitos Humanos doravante a Comiss\u00e3o Interamericana ou a Comiss\u00e3o de de julho de e seus anexos mediante os quais submeteu \u00e0 Corte de", - "values": [ - "Corte Interamericana de Derechos Humanos" - ] - }, - { - "text": "Corte Interamericana de Derechos Humanos Caso Maqueda Vs. Argentina Resoluci\u00f3n de de enero Excepciones Preliminares En el caso Maqueda la Corte Interamericana de Derechos Humanos integrada por los siguientes jueces H\u00e9ctor FixZamudio Presidente Hern\u00e1n Salgado Pesantes Vicepresidente Alejandro Montiel Arg\u00fcello Juez M\u00e1ximo Pacheco G\u00f3mez Juez Ant\u00f4nio A. Can\u00e7ado Trindade Juez estuvieron adem\u00e1s presentes Manuel E. Ventura Robles Secretario y Ana Mar\u00eda Reina Secretaria adjunta de acuerdo con el ", - "values": [ - "Corte Interamericana de Derechos Humanos" - ] - }, - { - "text": "CORTE INTERAMERICANA DE DERECHOS HUMANOS CASO MEJ\u00cdA IDROVO VS. ECUADOR SENTENCIA DE DE JULIO DE EXCEPCIONES PRELIMINARES FONDO REPARACIONES Y COSTAS En el caso Mej\u00eda Idrovo la Corte Interamericana de Derechos Humanos en adelante la Corte Interamericana la Corte o el Tribunal integrada por los siguientes jueces Diego Garc\u00edaSay\u00e1n Presidente Leonardo A. Franco Vicepresidente Manuel E. Ventura Robles Juez Margarette May Macaulay Jueza Rhadys Abreu Blondet Jueza y Eduardo Vio Grossi Juez. presente", - "values": [ - "Corte Interamericana de Derechos Humanos" - ] - }, - { - "text": "VOTO CONCURRENTE RAZONADO DEL JUEZ SERGIO GARC\u00cdA RAM\u00cdREZ EN LA SENTENCIA DE REPARACIONES DEL CASO BAMACA VELASQUEZ Restitutio in integrum En su parte considerativa p\u00e1rr. la sentencia a la que se refiere este voto se\u00f1ala de nueva cuenta que la reparaci\u00f3n del da\u00f1o ocasionado por la infracci\u00f3n de una obligaci\u00f3n internacional requiere siempre que sea posible la plena restituci\u00f3n restitutio in integrum la cual consiste en el restablecimiento de la situaci\u00f3n anterior. A este respecto es pertinente ", - "values": [ - "Corte Interamericana de Derechos Humanos" - ] - }, - { - "text": "RESOLU\u00c7\u00c3O DA CORTE INTERAMERICANA DE DIREITOS HUMANOS DE DE ABRIL DE MEDIDAS PROVIS\u00d3RIAS A RESPEITO DA REP\u00daBLICA FEDERATIVA DO BRASIL CASO DA PENITENCI\u00c1RIA URSO BRANCO VISTO A Resolu\u00e7\u00e3o da Corte Interamericana de Direitos Humanos doravante denominada a Corte ou Tribunal de de junho de mediante a qual requereu \u00e0 Rep\u00fablica Federativa do Brasil doravante denominada Brasil ou Estado que adoptasse todas as medidas que sejam necess\u00e1rias para proteger a vida e integridade pessoal de todas as na", - "values": [ - "Corte Interamericana de Derechos Humanos" - ] - }, - { - "text": "VOTO RAZONADO DEL JUEZ AA. CAN\u00c7ADO TRINDADE Al haber concurrido con mi voto para la adopci\u00f3n de la presente Sentencia de la Corte Interamericana de Derechos Humanos me veo sin embargo en la obligaci\u00f3n de dejar constancia en este Voto Razonado de mi razonamiento sobre un punto medular de esta Sentencia conducente a fortalecer uno de sus puntos resolutivos n. y la parte considerativa a \u00e9ste correspondiente p\u00e1rrs. como fundamentaci\u00f3n de mi posici\u00f3n personal al respecto. Considero que la por ", - "values": [ - "Corte Interamericana de Derechos Humanos" - ] - }, - { - "text": "INFORME N\u00ba CASO MASACRE DE PLAN DE S\u00c1NCHEZ GUATEMALA de marzo de I. RESUMEN La petici\u00f3n que dio lugar al presente caso denunci\u00f3 la masacre de habitantes de Plan de S\u00e1nchez Baja Verapaz por parte de miembros de las Fuerzas Armadas de Guatemala el de julio de Los peticionarios manifiestan que la masacre fue perpetrada en ejecuci\u00f3n de una pol\u00edtica del Estado dirigida a decapitar el movimiento insurgente por medio de la erradicaci\u00f3n estrat\u00e9gica de su base de apoyo civil. Sostienen que las ", - "values": [ - "Comisi\u00f3n Interamericana de Derechos Humanos" - ] - }, - { - "text": "RESOLUCI\u00d3N DE LA CORTE INTERAMERICANA DE DERECHOS HUMANOS DE DE NOVIEMBRE DE MEDIDAS PROVISIONALES ADOPTADAS POR LA CORTE INTERAMERICANA DE DERECHOS HUMANOS RESPECTO DE LA REP\u00daBLICA DE GUATEMALA CASO COLOTENANGO VISTOS La Resoluci\u00f3n de la Corte Interamericana de Derechos Humanos en adelante la Corte o la Corte Interamericana de de junio de mediante la cual Requiri\u00f3 al Gobierno de Guatemala que adoptase sin dilaci\u00f3n cuantas medidas fuesen necesarias para proteger el derecho a la vida e ", - "values": [ - "Corte Interamericana de Derechos Humanos" - ] - }, - { - "text": "VOTO RAZONADO DEL JUEZ AA. CAN\u00c7ADO TRINDADE He concurrido con mi voto a la adopci\u00f3n por la Corte Interamericana de su presente Sentencia en el caso de la Masacre de Mapirip\u00e1n. Dada la particular gravedad de los hechos del presente caso que retratan la verdadera tragedia humana vivida por Colombia en los \u00faltimos a\u00f1os me veo en la obligaci\u00f3n de dejar constancia de mis reflexiones sobre lo tratado por la Corte en la presente Sentencia como fundamento de mi posici\u00f3n al respecto. Con este prop\u00f3sito", - "values": [ - "Corte Interamericana de Derechos Humanos" - ] - }, - { - "text": "Resoluci\u00f3n de la Corte Interamericana de Derechos Humanos de de Febrero de Medidas Provisionales respecto de los Estados Unidos Mexicanos Asunto Pilar Noriega Garc\u00eda y otros VISTO La Resoluci\u00f3n emitida por el Presidente de la Corte Interamericana de Derechos Humanos en adelante la Corte la Corte Interamericana o el Tribunal el de octubre de y las Resoluciones emitidas por el Tribunal el de noviembre de de abril de de junio de y de noviembre de En \u00e9sta \u00faltima la Corte resolvi\u00f3 al ", - "values": [ - "Corte Interamericana de Derechos Humanos" - ] - }, - { - "text": "RELAT\u00d3RIO N\u00ba ADMISSIBILIDADE PETI\u00c7\u00c3O MARIELA MORALES CARO E OUTROS MASSACRE DE LA ROCHELA COL\u00d4MBIA de outubro de I. RESUMO Em de outubro de a Comiss\u00e3o Interamericana de Direitos Humanos doravante denominada a Comiss\u00e3o ou a CIDH recebeu uma peti\u00e7\u00e3o apresentada pela Corpora\u00e7\u00e3o Colectiva de Advogados Jos\u00e9 Alvear Restrepo doravante denominada os peticion\u00e1rios a qual alega que em de janeiro de um grupo paramilitar em coordena\u00e7\u00e3o com membros do Ex\u00e9rcito matou Mariela Morales Caro Pablo ", - "values": [ - "Comisi\u00f3n Interamericana de Derechos Humanos" - ] - }, - { - "text": "RESOLUCI\u00d3N DE LA CORTE INTERAMERICANA DE DERECHOS HUMANOS DE DE SEPTIEMBRE DE MEDIDAS PROVISIONALES ADOPTADAS POR LA CORTE INTERAMERICANA DE DERECHOS HUMANOS RESPECTO DE LA REP\u00daBLICA DE COLOMBIA CASO GIRALDO CARDONA VISTOS La resoluci\u00f3n de la Corte Interamericana de Derechos Humanos en adelante la Corte o la Corte Interamericana de de noviembre de mediante la cual decidi\u00f3 Requerir al Estado de Colombia que tan pronto como la Hermana Noemy Palencia regrese al Meta adopte cuantas medidas ", - "values": [ - "Corte Interamericana de Derechos Humanos" - ] - }, - { - "text": "RESOLUCI\u00d3N DEL PRESIDENTE DE LA CORTE INTERAMERICANA DE DERECHOS HUMANOS DE DE ABRIL DE SOLICITUD DE AMPLIACI\u00d3N DE MEDIDAS PROVISIONALES A FAVOR DEL SE\u00d1OR TIRSO ROM\u00c1N VALENZUELA \u00c1VILA CASO RAXCAC\u00d3 REYES Y OTROS RESPECTO GUATEMALA VISTOS La Resoluci\u00f3n de la Corte Interamericana de Derechos Humanos en adelante la Corte la Corte Interamericana o el Tribunal dictada el de agosto de en la cual consider\u00f3 en lo pertinente que en este caso las medidas solicitadas tienen como objetivo no frustrar ", - "values": [ - "Corte Interamericana de Derechos Humanos" - ] - }, - { - "text": "RESOLUCI\u00d3N DE LA CORTE INTERAMERICANA DE DERECHOS HUMANOS DE DE NOVIEMBRE DE CASO TRABAJADORES CESADOS DEL CONGRESO Aguado Alfaro y otros VS. PER\u00da SUPERVISI\u00d3N DE CUMPLIMIENTO DE SENTENCIA Y SOLICITUD DE MEDIDAS PROVISIONALES VISTO A Supervisi\u00f3n de cumplimiento de Sentencia La Sentencia de excepciones preliminares fondo reparaciones y costas en adelante la Sentencia dictada por la Corte Interamericana de Derechos Humanos en adelante la Corte la Corte Interamericana o el Tribunal el de de ", - "values": [ - "Corte Interamericana de Derechos Humanos" - ] - }, - { - "text": "VOTO FUNDAMENTADO DO JUIZ AD HOC ROBERTO DE FIGUEIREDO CALDAS COM RELA\u00c7\u00c3O \u00c0 SENTEN\u00c7A DA CORTE INTERAMERICANA DE DIREITOS HUMANOS NO CASO GARIBALDI VS. BRASIL PROFERIDA EM DE SETEMBRO DE I Introdu\u00e7\u00e3o Mesmo de pleno acordo com os pr\u00f3prios termos da senten\u00e7a constru\u00edda coletivamente em boa t\u00e9cnica que visa o consenso apresento este voto de fundamenta\u00e7\u00e3o pr\u00f3pria na esperan\u00e7a de que possa servir para profunda reflex\u00e3o pelo Brasil e demais pa\u00edses jurisdicionados os Estados v\u00eam sendo condenados ", - "values": [ - "Corte Interamericana de Derechos Humanos" - ] - }, - { - "text": "RESOLUCI\u00d3N DE LA CORTE INTERAMERICANA DE DERECHOS HUMANOS DE DE FEBRERO DE MEDIDAS PROVISIONALES RESPECTO DE LOS ESTADOS UNIDOS MEXICANOS CASO ROSENDO CANT\u00da Y OTRA VISTO La Resoluci\u00f3n emitida por la entonces Presidenta en adelante la Presidenta de la Corte Interamericana de Derechos Humanos en adelante la Corte Interamericana la Corte o el Tribunal el de abril de mediante la cual requiri\u00f3 a los Estados Unidos Mexicanos en adelante M\u00e9xico o el Estado que adopten de forma inmediata las que ", - "values": [ - "Corte Interamericana de Derechos Humanos" - ] - }, - { - "text": "INFORME N\u00ba CASO A ADMISIBILIDAD JES\u00daS M\u00d3NICA FERIA TINTA PER\u00da de marzo de I. RESUMEN El de junio de la Comisi\u00f3n Interamericana de Derechos Humanos en adelante la Comisi\u00f3n la Comisi\u00f3n Americana o la CIDH recibi\u00f3 una petici\u00f3n presentada por el Doctor Curtis Francis Doebbler en su car\u00e1cter de representante de la se\u00f1ora Jes\u00fas M\u00f3nica Feria Tinta en adelante la presunta v\u00edctima o la peticionaria en la cual se alega la responsabilidad de la Rep\u00fablica de Per\u00fa en adelante el Estado el Estado o ", - "values": [ - "Comisi\u00f3n Interamericana de Derechos Humanos" - ] - }, - { - "text": "INFORME N\u00ba CASO HUGO MU\u00d1OZ S\u00c1NCHEZ BERTILA LOZANO TORRES DORA OYAGUE FIERRO LUIS ENRIQUE ORTIZ PEREA ARMANDO RICHARD AMARO CONDOR ROBERT EDGAR TEODORO ESPINOZA HER\u00c1CLIDES PABLO MEZA FELIPE FLORES CHIPANA MARCELINO ROSALES C\u00c1RDENAS Y JUAN GABRIEL MARI\u00d1OS FIGUEROA LA CANTUTA PER\u00da de marzo de I. RESUMEN Mediante petici\u00f3n presentada a la Comisi\u00f3n Interamericana de Derechos Humanos en adelante la Comisi\u00f3n por la organizaci\u00f3n no gubernamental Asociaci\u00f3n Pro Derechos Humanos APRODEH el de julio ", - "values": [ - "Comisi\u00f3n Interamericana de Derechos Humanos" - ] - }, - { - "text": "Corte Interamericana de Derechos Humanos Caso Neira Alegr\u00eda y otros Vs. Per\u00fa Sentencia de de diciembre de Excepciones Preliminares En el caso Neira Alegr\u00eda y otros la Corte Interamericana de Derechos Humanos integrada por los siguientes jueces H\u00e9ctor FixZamudio Presidente Thomas Buergenthal Juez Rafael Nieto Navia Juez Julio A. Barberis Juez Jorge E. Orihuela Iberico Juez ad hoc presentes adem\u00e1s Manuel E. Ventura Robles Secretario y Ana Mar\u00eda Reina Secretaria adjunta de acuerdo con el del ", - "values": [ - "Corte Interamericana de Derechos Humanos" - ] - }, - { - "text": "VOTO CONJUNTO PARCIALMENTE DISIDENTE DE LOS JUECES MANUEL E. VENTURA ROBLES EDUARDO VIO GROSSI Y EDUARDO FERRER MACGREGOR POISOT CORTE INTERAMERICANA DE DERECHOS HUMANOS CASO M\u00c9MOLI VS. ARGENTINA SENTENCIA DE DE AGOSTO DE EXCEPCIONES PRELIMINARES FONDO REPARACIONES Y COSTAS INTRODUCCI\u00d3N. Se emite el presente voto disidente en m\u00e9rito de que por las razones que se exponen seguidamente se discrepa de los puntos resolutivos y de la Sentencia de de agosto de Excepciones Preliminares Fondo y ", - "values": [ - "Corte Interamericana de Derechos Humanos" - ] - }, - { - "text": "Corte Interamericana de Derechos Humanos Caso Su\u00e1rez Rosero Vs. Ecuador Sentencia de de mayo de Interpretaci\u00f3n de la Sentencia de Reparaciones En el caso Su\u00e1rez Rosero la Corte Interamericana de Derechos Humanos en adelante la Corte o la Corte Interamericana integrada por los siguientes jueces Ant\u00f4nio A. Can\u00e7ado Trindade Presidente Hern\u00e1n Salgado Pesantes Juez M\u00e1ximo Pacheco G\u00f3mez Juez Oliver Jackman Juez Alirio Abreu Burelli Juez Sergio Garc\u00eda Ram\u00edrez Juez Carlos Vicente de Roux Rengifo Juez", - "values": [ - "Corte Interamericana de Derechos Humanos" - ] - }, - { - "text": "VOTO CONCURRENTE DEL JUEZ ALIRIO ABREU BURELLI Al unir mi voto al de los dem\u00e1s Jueces de la Corte Interamericana de Derechos Humanos en la sentencia del caso Myrna Mack Chang vs Guatemala me permito hacer separadamente las siguientes consideraciones I De acuerdo con lo narrado en la Sentencia la Comisi\u00f3n Interamericana de Derechos Humanos aleg\u00f3 en su demanda que el Estado de Guatemala es responsable de la privaci\u00f3n arbitraria del derecho a la vida de Myrna Mack toda vez que el asesinato de \u00e9sta", - "values": [ - "Corte Interamericana de Derechos Humanos" - ] - }, - { - "text": "VOTO RAZONADO DEL JUEZ DE ROUX RENGIFO Comparto el punto de vista de acuerdo con el cual el derecho al reconocimiento de la personalidad jur\u00eddica es decir a ser considerado por el orden jur\u00eddico como sujeto de derechos no guarda relaci\u00f3n con la cuesti\u00f3n de si a una persona se le permite o no que ejerza estos \u00faltimos en la pr\u00e1ctica. Al respecto bien vale la distinci\u00f3n entre la personalidad jur\u00eddica que ser\u00eda el qu\u00e9 de la condici\u00f3n de sujeto de derechos y deberes la capacidad jur\u00eddica que ser\u00eda ", - "values": [ - "Corte Interamericana de Derechos Humanos" - ] - }, - { - "text": "RESOLUCI\u00d3N DE LA CORTE INTERAMERICANA DE DERECHOS HUMANOS DE DE AGOSTO DE CASO RICARDO CANESE VS. PARAGUAY SUPERVISI\u00d3N DE CUMPLIMIENTO DE SENTENCIA VISTO La Sentencia de fondo reparaciones y costas en adelante la Sentencia dictada por la Corte Interamericana de Derechos Humanos en adelante la Corte Interamericana la Corte o el Tribunal el de agosto de mediante la cual DISPUSO por unanimidad que La Sentencia constituye per se una forma de reparaci\u00f3n en los t\u00e9rminos de los p\u00e1rrafos y de ", - "values": [ - "Corte Interamericana de Derechos Humanos" - ] - }, - { - "text": "VOTO RAZONADO CONCURRENTE DEL JUEZ ALFONSO NOVALES AGUIRRE Concurro con mi voto en esta Sentencia de reparaci\u00f3n de da\u00f1os basado en lo preceptuado en el art\u00edculo de la Convenci\u00f3n Americana sobre Derechos Humanos. Cuando decida que hubo violaci\u00f3n de un derecho o libertad protegidos en esta Convenci\u00f3n la Corte dispondr\u00e1 que se garantice al lesionado en el goce de su derecho o libertad conculcados. Dispondr\u00e1 asimismo si ello fuera procedente que se reparen las consecuencias de la medida o que ha ", - "values": [ - "Corte Interamericana de Derechos Humanos" - ] - }, - { - "text": "CORTE INTERAMERICANA DE DERECHOS HUMANOS CASO DE LAS MASACRES DE ITUANGO VS. COLOMBIA SENTENCIA DE DE JULIO DE En el caso de las Masacres de Ituango la Corte Interamericana de Derechos Humanos en adelante la Corte la Corte Interamericana o el Tribunal integrada por los siguientes jueces Sergio Garc\u00eda Ram\u00edrez Presidente Alirio Abreu Burelli Vicepresidente Ant\u00f4nio A. Can\u00e7ado Trindade Juez Cecilia Medina Quiroga Jueza Manuel E. Ventura Robles Juez y Diego Garc\u00edaSay\u00e1n Juez presentes adem\u00e1s Pablo ", - "values": [ - "Corte Interamericana de Derechos Humanos" - ] - }, - { - "text": "Resoluci\u00f3n del Presidente de la Corte Interamericana de Derechos Humanos de de diciembre de Medidas Provisionales respecto de la Rep\u00fablica de Colombia Asunto Comunidades del Jiguamiand\u00f3 y del Curbarad\u00f3 VISTOS La Resoluci\u00f3n de la Corte Interamericana de Derechos Humanos en adelante la Corte la Corte Interamericana o el Tribunal de de marzo de mediante la cual resolvi\u00f3 Requerir al Estado de Colombia que adopte sin dilaci\u00f3n las medidas que sean necesarias para proteger la vida e integridad ", - "values": [ - "Corte Interamericana de Derechos Humanos" - ] - }, - { - "text": "INFORME N PETICI\u00d3N ADMISIBILIDAD FRANCISCO US\u00d3N RAM\u00cdREZ VENEZUELA de marzo de I. RESUMEN El de mayo de la Comisi\u00f3n Interamericana de Derechos Humanos en adelante la Comisi\u00f3n la Comisi\u00f3n Interamericana o la CIDH recibi\u00f3 una petici\u00f3n presentada por el se\u00f1or H\u00e9ctor Fa\u00fandez Ledesma en adelante el peticionario en representaci\u00f3n del General de Brigada en condici\u00f3n de retiro del Ej\u00e9rcito de Venezuela se\u00f1or Francisco Us\u00f3n Ram\u00edrez en adelante la presunta v\u00edctima o el se\u00f1or Us\u00f3n. En la denuncia ", - "values": [ - "Comisi\u00f3n Interamericana de Derechos Humanos" - ] - }, - { - "text": "Corte Interamericana de Derechos Humanos Caso Blake Vs. Guatemala Sentencia de de octubre de Interpretaci\u00f3n de la Sentencia de Reparaciones y Costas En el caso Blake la Corte Interamericana de Derechos Humanos en adelante la Corte o la Corte Interamericana integrada por los siguientes jueces Ant\u00f4nio A. Can\u00e7ado Trindade Presidente M\u00e1ximo Pacheco G\u00f3mez Vicepresidente Hern\u00e1n Salgado Pesantes Juez Oliver Jackman Juez Alirio Abreu Burelli Juez Sergio Garc\u00eda Ram\u00edrez Juez Carlos Vicente de Roux y ", - "values": [ - "Corte Interamericana de Derechos Humanos" - ] - }, - { - "text": "VOTO CONCURRENTE DE LA JUEZA CECILIA MEDINA QUIROGA EN EL CASO ACEVEDO JARAMILLO Y OTROS VS. PER\u00da He concurrido con mi voto al punto dispositivo de esta sentencia por cuanto no estoy en contra de que se otorgue una indemnizaci\u00f3n por da\u00f1o material a los trabajadores cesados respecto de quienes no se han cumplido las sentencias de amparo que ordenaron su reposici\u00f3n al trabajo. Tengo sin embargo una discrepancia en cuanto al modo de calcular esa indemnizaci\u00f3n que la Corte establece para que los ", - "values": [ - "Corte Interamericana de Derechos Humanos" - ] - }, - { - "text": "RESOLUCI\u00d3N DE LA PRESIDENTA DE LA CORTE INTERAMERICANA DE DERECHOS HUMANOS DE DE DICIEMBRE DE CASO BARRIOS ALTOS VS. PER\u00da SUPERVISI\u00d3N DE CUMPLIMIENTO DE SENTENCIA VISTOS La Sentencia de fondo dictada por la Corte Interamericana de Derechos Humanos en adelante la Corte la Corte Interamericana o el Tribunal el de marzo de La Sentencia de Interpretaci\u00f3n de la Sentencia de fondo dictada en el presente caso por la Corte Interamericana el de septiembre de La Sentencia de reparaciones emitida", - "values": [ - "Corte Interamericana de Derechos Humanos" - ] - }, - { - "text": "VOTO PARCIALMENTE DISIDENTE DEL JUEZ ALBERTO P\u00c9REZ P\u00c9REZ CASO MOHAMED VS. ARGENTINA Sentencia de de noviembre de Excepci\u00f3n preliminar Fondo Reparaciones y Costas Alcance de la disidencia parcial. El presente voto disidente s\u00f3lo se refiere al punto declarativo No estima pertinente determinar si se produjo una violaci\u00f3n al principio de legalidad consagrado en el art\u00edculo de la Convenci\u00f3n Americana sobre Derechos Humanos en relaci\u00f3n con el art\u00edculo de la misma en perjuicio del se\u00f1or Oscar ", - "values": [ - "Corte Interamericana de Derechos Humanos" - ] - }, - { - "text": "INTERAMERICAN COURT OF HUMAN RIGHTS CASE OF BARBANI DUARTE ET AL v. URUGUAY JUDGMENT OF OCTOBER Merits reparations and costs In the case of Barbani Duarte et al the InterAmerican Court of Human Rights hereinafter the InterAmerican Court or the Court composed of the following judges Diego Garc\u00edaSay\u00e1n President Manuel E. Ventura Robles Judge Margarette May Macaulay Judge Rhadys Abreu Blondet Judge and Eduardo Vio Grossi Judge also present Pablo Saavedra Alessandri Secretary pursuant to Articles", - "values": [ - "Corte Interamericana de Derechos Humanos" - ] - }, - { - "text": "VOTO CONCORDANTE DO JUIZ DIEGO GARCIASAY\u00c1N SENTEN\u00c7A DA CORTE INTERAMERICANA DE DIREITOS HUMANOS CASO ARTAVIA MURILLO E OUTROS FECUNDA\u00c7\u00c3O IN VITRO VS. COSTA RICA DE DE NOVEMBRO DE Esta senten\u00e7a \u00e9 uma decis\u00e3o muito importante e clara da Corte para consolidar os direitos \u00e0 integridade pessoal \u00e0 vida privada e familiar e o princ\u00edpio de n\u00e3o discrimina\u00e7\u00e3o. Todos eles foram seriamente violados pelos fatos que geraram este contencioso. A Corte ao estabelecer quais direitos foram violados e as a ", - "values": [ - "Corte Interamericana de Derechos Humanos" - ] - }, - { - "text": "VOTO DISSIDENTE DO JUIZ AD HOC ALEJANDRO MONTIEL ARG\u00dcELLO De acordo com a legisla\u00e7\u00e3o nicaraguense corresponde ao Poder Eleitoral independentemente dos tr\u00eas Poderes tradicionais a organiza\u00e7\u00e3o dire\u00e7\u00e3o e vigil\u00e2ncia das elei\u00e7\u00f5es. O organismo mais alto do poder eleitoral \u00e9 o Conselho Supremo Eleitoral o qual tem fun\u00e7\u00f5es jurisdicionais e administrativas. \u00c9 indubit\u00e1vel que no presente caso a inscri\u00e7\u00e3o dos candidatos que participariam na elei\u00e7\u00e3o era uma fun\u00e7\u00e3o jurisdicional em mat\u00e9ria eleitoral que ", - "values": [ - "Corte Interamericana de Derechos Humanos" - ] - }, - { - "text": "Resoluci\u00f3n de la Corte Interamericana de Derechos Humanos de de Enero de Caso Neira Alegr\u00eda y otros Vs. Per\u00fa Supervisi\u00f3n de Cumplimiento de Sentencia Vistos La Sentencia de fondo dictada por la Corte Interamericana de Derechos Humanos en adelante la Corte la Corte Interamericana o el Tribunal el de enero de La Sentencia de reparaciones y costas dictada por la Corte Interamericana en adelante la Sentencia el de septiembre de en la cual inter alia decidi\u00f3 que el Estado del Per\u00fa est\u00e1 a", - "values": [ - "Corte Interamericana de Derechos Humanos" - ] - }, - { - "text": "Corte Interamericana de Derechos Humanos Caso Raxcac\u00f3 Reyes Vs. Guatemala Sentencia de de septiembre de Fondo Reparaciones y Costas En el caso Raxcac\u00f3 Reyes La Corte Interamericana de Derechos Humanos en adelante la Corte la Corte Interamericana o el Tribunal integrada por los siguientes jueces Sergio Garc\u00eda Ram\u00edrez Presidente Alirio Abreu Burelli Vicepresidente Oliver Jackman Juez Ant\u00f4nio A. Can\u00e7ado Trindade Juez Manuel E. Ventura Robles Juez y Alejandro S\u00e1nchez Garrido Juez ad hoc presentes", - "values": [ - "Corte Interamericana de Derechos Humanos" - ] - }, - { - "text": "Resoluci\u00f3n de la Corte Interamericana de Derechos Humanos de de mayo de Medidas Provisionales respecto del Per\u00fa Caso de los Hermanos G\u00f3mez Paquiyauri VISTO La Resoluci\u00f3n de la Corte Interamericana de Derechos Humanos en adelante la Corte la Corte Interamericana o el Tribunal de de mayo de mediante la cual resolvi\u00f3 inter alia requerir al Estado que adoptara sin dilaci\u00f3n las medidas necesarias para proteger la vida e integridad personal de los miembros de la familia G\u00f3mez Paquiyauri que ", - "values": [ - "Corte Interamericana de Derechos Humanos" - ] - }, - { - "text": "RESOLUCI\u00d3N DE LA CORTE INTERAMERICANA DE DERECHOS HUMANOS DE DE FEBRERO DE CASO VALLE JARAMILLO VS. COLOMBIA SUPERVISI\u00d3N DE CUMPLIMIENTO DE SENTENCIA VISTO La Sentencia de fondo reparaciones y costas en adelante la Sentencia dictada por la Corte Interamericana de Derechos Humanos en adelante la Corte la Corte Interamericana o el Tribunal el de noviembre de mediante la cual dispuso que El Estado deb\u00eda realizar los pagos de las cantidades establecidas en la Sentencia por concepto de da\u00f1o ", - "values": [ - "Corte Interamericana de Derechos Humanos" - ] - }, - { - "text": "RESOLUCI\u00d3N DE LA CORTE INTERAMERICANA DE DERECHOS HUMANOS DE DE NOVIEMBRE DE CASO CINCO PENSIONISTAS VS. PER\u00da. SUPERVISI\u00d3N DEL CUMPLIMIENTO DE SENTENCIA VISTOS La Sentencia de fondo reparaciones y costas dictada por la Corte Interamericana de Derechos Humanos en adelante la Corte la Corte Interamericana o el Tribunal el de febrero de Las Resoluciones dictadas por la Corte Interamericana el de noviembre de y el de septiembre de en relaci\u00f3n con la supervisi\u00f3n de cumplimiento del caso. ", - "values": [ - "Corte Interamericana de Derechos Humanos" - ] - }, - { - "text": "INFORME N PETICI\u00d3N ADMISIBILIDAD JUAN PATRICIO MARILEO SARAVIA Y OTROS CHILE de abril de I. RESUMEN El de abril de la Comisi\u00f3n Interamericana de Derechos Humanos en adelante la Comisi\u00f3n Interamericana o la CIDH recibi\u00f3 una denuncia presentada por Juan Patricio Marileo Saravia Florencio Jaime Marileo Saravia Patricia Roxana Troncoso Robles Jos\u00e9 Huenchunao Mari\u00f1an y Juan Ciriaco Millacheo Lican las presuntas v\u00edctimas en contra del Estado de Chile en adelante el Estado o el Estado chileno en", - "values": [ - "Comisi\u00f3n Interamericana de Derechos Humanos" - ] - }, - { - "text": "RESOLUCI\u00d3N DE LA CORTE INTERAMERICANA DE DERECHOS HUMANOS DE DE DICIEMBRE DE MEDIDAS PROVISIONALES RESPECTO DE REP\u00daBLICA DOMINICANA ASUNTO HAITIANOS Y DOMINICANOS DE ORIGEN HAITIANO EN LA REP\u00daBLICA DOMINICANA VISTO El escrito de la Comisi\u00f3n Interamericana de Derechos Humanos en adelante la Comisi\u00f3n o la Comisi\u00f3n Interamericana de de mayo de y sus anexos mediante el cual someti\u00f3 a la Corte Interamericana de Derechos Humanos en adelante la Corte Interamericana o la Corte o el Tribunal la ", - "values": [ - "Corte Interamericana de Derechos Humanos" - ] - }, - { - "text": "VOTO CONCURRENTE RAZONADO DEL JUEZ SERGIO GARC\u00cdA RAM\u00cdREZ A LA SENTENCIA DE REPARACIONES DICTADA EN EL CASO BARRIOS ALTOS CHUMBIPUMA AGUIRRE Y OTROS VS. PER\u00da Al unir mi voto al de los colegas que aprobaron la sentencia sobre reparaciones en el caso Barrios Altos Chumbipuma Aguirre y Otros vs. Per\u00fa estimo pertinente formular en el presente Voto concurrente razonado algunas consideraciones y precisiones sobre los fundamentos y el alcance que tiene a mi juicio esta resoluci\u00f3n de la Corte. La que", - "values": [ - "Corte Interamericana de Derechos Humanos" - ] - }, - { - "text": "RESOLUCI\u00d3N DE LA CORTE INTERAMERICANA DE DERECHOS HUMANOS DE DE ENERO DE MEDIDAS PROVISIONALES SOLICITADAS POR LA COMISI\u00d3N INTERAMERICANA DE DERECHOS HUMANOS RESPECTO DEL PERU CASO CESTI HURTADO VISTOS El escrito de de julio de mediante el cual la Comisi\u00f3n Interamericana de Derechos Humanos en adelante la Comisi\u00f3n o la Comisi\u00f3n Interamericana someti\u00f3 a la Corte Interamericana de Derechos Humanos en adelante la Corte o la Corte Interamericana en virtud de los art\u00edculos de la Convenci\u00f3n ", - "values": [ - "Corte Interamericana de Derechos Humanos" - ] - }, - { - "text": "RESOLUCI\u00d3N DE LA CORTE INTERAMERICANA DE DERECHOS HUMANOS DE DE JUNIO DE REINTEGRO AL FONDO DE ASISTENCIA LEGAL DE V\u00cdCTIMAS CASO ROCHAC HERN\u00c1NDEZ Y OTROS VS. EL SALVADOR VISTO La Sentencia de fondo reparaciones y costas en adelante la Sentencia o el Fallo dictada por la Corte Interamericana de Derechos Humanos en adelante la Corte la Corte Interamericana o el Tribunal el de octubre de la cual fue notificada el de noviembre de En el punto resolutivo d\u00e9cimo s\u00e9ptimo de dicho Fallo el que", - "values": [ - "Corte Interamericana de Derechos Humanos" - ] - }, - { - "text": "RESOLUCI\u00d3N DE LA CORTE INTERAMERICANA DE DERECHOS HUMANOS DE DE NOVIEMBRE DE CASO MANUEL CEPEDA VARGAS VS. COLOMBIA SUPERVISI\u00d3N DE CUMPLIMIENTO DE SENTENCIA VISTO La Sentencia de excepciones preliminares fondo y reparaciones en adelante la Sentencia dictada por la Corte Interamericana de Derechos Humanos en adelante la Corte Interamericana la Corte o el Tribunal el de mayo de mediante la cual inter alia dispuso que el Estado debe conducir eficazmente las investigaciones internas en curso", - "values": [ - "Corte Interamericana de Derechos Humanos" - ] - }, - { - "text": "RESOLUCI\u00d3N DEL PRESIDENTE DE LA CORTE INTERAMERICANA DE DERECHOS HUMANOS DE DE JULIO DE CASO VARGAS ARECO VS. PARAGUAY SUPERVISI\u00d3N DE CUMPLIMIENTO DE SENTENCIA VISTOS La Sentencia de fondo reparaciones y costas en adelante la Sentencia dictada por la Corte Interamericana de Derechos Humanos en adelante la Corte la Corte Interamericana o el Tribunal el de septiembre de La Resoluci\u00f3n del Tribunal de de octubre de en la cual inter alia declar\u00f3 Que mantendr\u00e1 abierto el procedimiento de ", - "values": [ - "Corte Interamericana de Derechos Humanos" - ] - }, - { - "text": "Corte Interamericana de Derechos Humanos Caso Caballero Delgado y Santana Vs. Colombia Sentencia de de diciembre de Fondo En el caso Caballero Delgado y Santana la Corte Interamericana de Derechos Humanos integrada por los siguientes jueces H\u00e9ctor FixZamudio Presidente Hern\u00e1n Salgado Pesantes Vicepresidente Rafael Nieto Navia Juez Alejandro Montiel Arg\u00fcello Juez M\u00e1ximo Pacheco G\u00f3mez Juez presentes adem\u00e1s Manuel E. Ventura Robles Secretario y Ana Mar\u00eda Reina Secretaria adjunta de acuerdo con ", - "values": [ - "Corte Interamericana de Derechos Humanos" - ] - }, - { - "text": "VOTO RAZONADO DEL JUEZ RICARDO GIL LAVEDRA En el escaso lapso con que cuento para efectuar mi opini\u00f3n concurrente a la decisi\u00f3n de la Corte quisiera referirme muy brevemente a ciertos aspectos relevantes que a mi juicio plantea la sentencia en este caso Bulacio Walter David como as\u00ed tambi\u00e9n realizar algunas consideraciones generales sobre el asunto. Estos temas que entiendo de mayor significaci\u00f3n son los siguientes el modo en que las partes han arribado a una soluci\u00f3n amistosa a la luz del ", - "values": [ - "Corte Interamericana de Derechos Humanos" - ] - }, - { - "text": "RESOLUCI\u00d3N DE LA CORTE INTERAMERICANA DE DERECHOS HUMANOS DE DE SEPTIEMBRE DE CASO MYRNA MACK CHANG VS. GUATEMALA CUMPLIMIENTO DE SENTENCIA VISTOS La sentencia de fondo reparaciones y costas dictada por la Corte Interamericana de Derechos Humanos en adelante la Corte Interamericana la Corte o el Tribunal el de noviembre de mediante la cual determin\u00f3 que el Estado debe investigar efectivamente los hechos del caso con el fin de identificar juzgar y sancionar a todos los autores materiales ", - "values": [ - "Corte Interamericana de Derechos Humanos" - ] - }, - { - "text": "VOTO CONCURRENTE DEL JUEZ HUMBERTO ANTONIO SIERRA PORTO SENTENCIA DE LA CORTE INTERAMERICANA DE DERECHOS HUMANOS CASO COMUNIDAD GAR\u00cdFUNA TRIUNFO DE LA CRUZ Y SUS MIEMBROS VS. HONDURAS SENTENCIA DE DE OCTUBRE DE Fondo Reparaciones y Costas A. Introducci\u00f3n La finalidad del presente voto concurrente es se\u00f1alar algunos aspectos del caso que en mi opini\u00f3n merecen especial atenci\u00f3n. Estos aspectos se refieren a i las inconsistencias en la presentaci\u00f3n del caso y la importancia de la diligencia in ", - "values": [ - "Corte Interamericana de Derechos Humanos" - ] - }, - { - "text": "RESOLUCI\u00d3N DE LA CORTE INTERAMERICANA DE DERECHOS HUMANOS DE DE MAYO DE MEDIDAS PROVISIONALES RESPECTO DE LA REP\u00daBLICA DE COLOMBIA ASUNTO \u00c1LVAREZ Y OTROS VISTOS Las Resoluciones del Presidente de la Corte Interamericana de Derechos Humanos en adelante el Presidente de de julio de agosto y de diciembre de de mayo y de agosto de y de julio de Las Resoluciones de la Corte Interamericana de Derechos Humanos en adelante la Corte la Corte Interamericana o el Tribunal de de noviembre de ", - "values": [ - "Corte Interamericana de Derechos Humanos" - ] - }, - { - "text": "RESOLUCI\u00d3N DE LA CORTE INTERAMERICANA DE DERECHOS HUMANOS DE DE JULIO DE MEDIDAS PROVISIONALES SOLICITADAS POR LA COMISI\u00d3N INTERAMERICANA DE DERECHOS HUMANOS RESPECTO DE VENEZUELA CASO CARLOS NIETO Y OTROS VISTO El escrito de la Comisi\u00f3n Interamericana de Derechos Humanos en adelante la Comisi\u00f3n o la Comisi\u00f3n Interamericana de de julio de mediante el cual someti\u00f3 a la Corte Interamericana de Derechos Humanos en adelante la Corte o la Corte Interamericana de acuerdo con los art\u00edculos de la", - "values": [ - "Corte Interamericana de Derechos Humanos" - ] - }, - { - "text": "RESOLUCI\u00d3N DE LA CORTE INTERAMERICANA DE DERECHOS HUMANOS DE DE JUNIO DE CASOS DE LAS COMUNIDADES IND\u00cdGENAS YAKYE AXA SAWHOYAMAXA Y X\u00c1KMOK K\u00c1SEK VS. PARAGUAY SUPERVISI\u00d3N DE CUMPLIMIENTO DE SENTENCIA REPARACIONES RELATIVAS A IDENTIFICACI\u00d3N ENTREGA Y TITULACI\u00d3N DE TIERRAS TRADICIONALES VISTO Las Sentencias de fondo reparaciones y costas emitidas por la Corte Interamericana de Derechos Humanos en adelante la Corte la Corte Interamericana o el Tribunal los d\u00edas de junio de de marzo de y ", - "values": [ - "Corte Interamericana de Derechos Humanos" - ] - }, - { - "text": "RESOLUCI\u00d3N DE LA CORTE INTERAMERICANA DE DERECHOS HUMANOS DE DE NOVIEMBRE DE CASO BENAVIDES CEVALLOS CUMPLIMIENTO DE SENTENCIA VISTOS La sentencia dictada en el Caso Benavides Cevallos vs. Ecuador por la Corte Interamericana de Derechos Humanos en adelante la Corte la Corte Interamericana el de junio de en el cual consider\u00f3 que para la determinaci\u00f3n de las reparaciones la Corte tomaba conocimiento de los aspectos pertinentes del acuerdo de de febrero de En el documento mencionado el ", - "values": [ - "Corte Interamericana de Derechos Humanos" - ] - }, - { - "text": "Resoluci\u00f3n de la Corte Interamericana de Derechos Humanos de febrero de Caso Garc\u00eda Prieto y otros Vs. El Salvador Supervisi\u00f3n de Cumplimiento de Sentencia Visto La Sentencia de excepciones preliminares fondo reparaciones y costas en adelante la Sentencia emitida en el presente caso por la Corte Interamericana de Derechos Humanos en adelante la Corte la Corte Interamericana o el Tribunal el de noviembre de en la que dispuso que el Estado debe concluir las investigaciones pendientes al ", - "values": [ - "Corte Interamericana de Derechos Humanos" - ] - }, - { - "text": "VOTO CONCURRENTE DEL JUEZ EDUARDO VIO GROSSI SENTENCIA DE LA CORTE INTERAMERICANA DE DERECHOS HUMANOS DE DE NOVIEMBRE DE CASO FAMILIA BARRIOS VS. VENEZUELA Fondo Reparaciones y Costas Qui\u00e9n suscribe concurre con su voto a la aprobaci\u00f3n de la Sentencia indicada en el r\u00f3tulo dejando empero constancia de que en atenci\u00f3n a que siendo esta \u00faltima el fallo definitivo e inapelable que ha puesto efectivo t\u00e9rmino al caso en el que mientras la Corte Interamericana de Derechos Humanos en adelante la ", - "values": [ - "Corte Interamericana de Derechos Humanos" - ] - }, - { - "text": "RESOLU\u00c7\u00c3O DA CORTE INTERAMERICANA DE DIREITOS HUMANOS DE DE NOVEMBRO DE MEDIDAS PROVIS\u00d3RIAS COM RESPEITO \u00c0 REP\u00daBLICA FEDERATIVA DO BRASIL CASO DAS CRIAN\u00c7AS E ADOLESCENTES PRIVADOS DE LIBERDADE NO COMPLEXO DO TATUAP\u00c9 DA FEBEM VISTO A Resolu\u00e7\u00e3o da Corte Interamericana de Direitos Humanos doravante denominada a Corte a Corte Interamericana ou o Tribunal de de novembro de mediante a qual resolveu Requerer ao Estado que adote de forma imediata as medidas que forem necess\u00e1rias para proteger a ", - "values": [ - "Corte Interamericana de Derechos Humanos" - ] - }, - { - "text": "INFORME No. PETICIONES JOS\u00c9 CASTRO BALLENA MAR\u00cdA GRACIA BARRIGA OR\u00c9 Y OTRAS CARLOS ALBERTO CANALES HUAPAYA ADMISIBILIDAD PER\u00da de noviembre de I. RESUMEN El presente informe se refiere a dos peticiones interpuestas en representaci\u00f3n de Jos\u00e9 Castro Ballena Mar\u00eda Gracia Barriga Or\u00e9 Luz Ang\u00e9lica Soria Ca\u00f1as y Dusnara Amelia Campos Ram\u00edrez P y Carlos Alberto Canales Huapaya P en adelante tambi\u00e9n las presuntas v\u00edctimas en las cuales se alega la violaci\u00f3n por parte de la Rep\u00fablica del Per\u00fa", - "values": [ - "Comisi\u00f3n Interamericana de Derechos Humanos" - ] - }, - { - "text": "VOTO RAZONADO DEL JUEZ AA. CAN\u00c7ADO TRINDADE He concurrido con mi voto a la adopci\u00f3n por la Corte Interamericana de Derechos Humanos de su presente Sentencia en el caso de las Masacres de Ituango. Dada la particular gravedad de los hechos del presente caso que retratan nuevamente ante esta Corte la verdadera tragedia humana vivida por Colombia en los \u00faltimos a\u00f1os me veo en la obligaci\u00f3n de dejar constancia de mis reflexiones sobre lo tratado por la Corte en la presente Sentencia como fundamento", - "values": [ - "Corte Interamericana de Derechos Humanos" - ] - }, - { - "text": "RESOLUCI\u00d3N DE LA CORTE INTERAMERICANA DE DERECHOS HUMANOS DE DE JUNIO DE MEDIDAS PROVISIONALES RESPECTO DE LA REP\u00daBLICA DE COLOMBIA CASO GUTI\u00c9RREZ SOLER VS. COLOMBIA VISTO La Resoluci\u00f3n dictada por la Corte Interamericana de Derechos Humanos en adelante la Corte Interamericana la Corte o el Tribunal el de marzo de mediante la cual se ordenaron medidas provisionales en el presente caso. La Sentencia de fondo reparaciones y costas emitida por la Corte Interamericana el de septiembre de en", - "values": [ - "Corte Interamericana de Derechos Humanos" - ] - }, - { - "text": "Resoluci\u00f3n de la Corte Interamericana de Derechos Humanos De de mayo de Caso de los Hermanos G\u00f3mez Paquiyauri Vs. Per\u00fa Supervisi\u00f3n de Cumplimiento de Sentencia VISTO La Sentencia de fondo reparaciones y costas emitida el de julio de en adelante la Sentencia por la Corte Interamericana de Derechos Humanos en adelante la Corte la Corte Interamericana o el Tribunal mediante la cual el Tribunal dispuso inter alia que el Estado deb\u00eda en un plazo razonable investigar efectivamente los hechos ", - "values": [ - "Corte Interamericana de Derechos Humanos" - ] - }, - { - "text": "CORTE INTERAMERICANA DE DERECHOS HUMANOS CASO L\u00d3PEZ LONE Y OTROS VS. HONDURAS SENTENCIA DE DE OCTUBRE DE Excepci\u00f3n Preliminar Fondo Reparaciones y Costas En el caso L\u00f3pez Lone y otros Vs. Honduras la Corte Interamericana de Derechos Humanos en adelante la Corte Interamericana la Corte o este Tribunal integrada por los siguientes jueces Humberto Antonio Sierra Porto Presidente Roberto F. Caldas Vicepresidente Manuel E. Ventura Robles Juez Diego Garc\u00edaSay\u00e1n Juez Alberto P\u00e9rez P\u00e9rez Juez Eduardo", - "values": [ - "Corte Interamericana de Derechos Humanos" - ] - }, - { - "text": "RESOLUCI\u00d3N DE LA CORTE INTERAMERICANA DE DERECHOS HUMANOS DE DE SEPTIEMBRE DE MEDIDAS PROVISIONALES ADOPTADAS POR LA CORTE INTERAMERICANA DE DERECHOS HUMANOS RESPECTO DE LA REP\u00daBLICA DE GUATEMALA CASO SERECH Y SAQUIC VISTOS El escrito de de abril de y sus anexos mediante el cual la Comisi\u00f3n Interamericana de Derechos Humanos en adelante la Comisi\u00f3n o la Comisi\u00f3n Interamericana someti\u00f3 a la Corte Interamericana de Derechos Humanos en adelante la Corte o la Corte Interamericana una solicitud", - "values": [ - "Corte Interamericana de Derechos Humanos" - ] - }, - { - "text": "Corte Interamericana de Derechos Humanos Caso Bueno Alves Vs. Argentina Sentencia de de mayo de Fondo Reparaciones y Costas En el caso Bueno Alves la Corte Interamericana de Derechos Humanos en adelante la Corte Interamericana la Corte o el Tribunal integrada por los siguientes jueces Sergio Garc\u00eda Ram\u00edrez Presidente Cecilia Medina Quiroga Vicepresidenta Manuel E. Ventura Robles Juez Diego Garc\u00edaSay\u00e1n Juez Margarette May Macaulay Jueza y Rhadys Abreu Blondet Jueza presentes adem\u00e1s Pablo y ", - "values": [ - "Corte Interamericana de Derechos Humanos" - ] - }, - { - "text": "RESOLUCI\u00d3N DE LA CORTE INTERAMERICANA DE DERECHOS HUMANOS DE DE AGOSTO DE CASO SALVADOR CHIRIBOGA VS. ECUADOR SUPERVISI\u00d3N DE CUMPLIMIENTO DE SENTENCIA VISTO La Sentencia de excepci\u00f3n preliminar y fondo dictada por la Corte Interamericana de Derechos Humanos en adelante la Corte la Corte Interamericana o el Tribunal el de mayo de en adelante la Sentencia. La Sentencia de reparaciones y costas en adelante la Sentencia de reparaciones o el Fallo dictada por la Corte Interamericana el de de", - "values": [ - "Corte Interamericana de Derechos Humanos" - ] - }, - { - "text": "RESOLUCI\u00d3N DE LA CORTE INTERAMERICANA DE DERECHOS HUMANOS DE DE NOVIEMBRE DE SOLICITUD DE MEDIDAS PROVISIONALES PRESENTADA POR LA COMISION INTERAMERICANA DE DERECHOS HUMANOS RESPECTO DE LA REP\u00daBLICA DE COLOMBIA ASUNTO DE LA COMISION COLOMBIANA DE JURISTAS VISTO El escrito de la Comisi\u00f3n Interamericana de Derechos Humanos en adelante la Comisi\u00f3n Interamericana o la Comisi\u00f3n de de noviembre de y sus anexos mediante los cuales someti\u00f3 a la Corte Interamericana de Derechos Humanos en adelante ", - "values": [ - "Corte Interamericana de Derechos Humanos" - ] - }, - { - "text": "Resoluci\u00f3n de la Corte Interamericana de Derechos Humanos de de abril de Caso Balde\u00f3n Garc\u00eda Vs. Per\u00fa Supervisi\u00f3n de Cumplimiento de Sentencia Visto La Sentencia de fondo reparaciones y costas en adelante la Sentencia emitida por la Corte Interamericana de Derechos Humanos en adelante la Corte la Corte Interamericana o el Tribunal el de abril de mediante la cual dispuso por unanimidad que el Estado deb\u00eda emprender con plena observaci\u00f3n a las garant\u00edas judiciales y en un plazo razonable ", - "values": [ - "Corte Interamericana de Derechos Humanos" - ] - }, - { - "text": "INFORME No. PETICI\u00d3N ADMISIBILIDAD RIGOBERTO TENORIO ROCA Y OTROS PER\u00da de marzo de I. RESUMEN El de noviembre de la Comisi\u00f3n Interamericana de Derechos Humanos en adelante tambi\u00e9n la Comisi\u00f3n Interamericana la Comisi\u00f3n o la CIDH recibi\u00f3 una petici\u00f3n presentada por la se\u00f1ora Cipriana Huaman\u00ed Anampa y el Comit\u00e9 Nacional de Familiares de Detenidos Desaparecidos y Refugiados en Lima en adelante tambi\u00e9n los peticionarios en representaci\u00f3n de Rigoberto Tenorio Roca en adelante tambi\u00e9n la en ", - "values": [ - "Comisi\u00f3n Interamericana de Derechos Humanos" - ] - }, - { - "text": "INFORME No. PETICI\u00d3N ADMISIBILIDAD RAFAEL ARTURO PACHECO TERUEL Y OTROS MUERTE POR INCENDIO EN EL CENTRO PENAL DE SAN PEDRO SULA HONDURAS de octubre de I. RESUMEN El de julio de la Comisi\u00f3n Interamericana de Derechos Humanos en adelante la Comisi\u00f3n Interamericana la Comisi\u00f3n o la CIDH recibi\u00f3 una denuncia presentada por la Pastoral Penitenciaria CARITAS Sampedrana y el Equipo de Reflexi\u00f3n Investigaci\u00f3n y Comunicaci\u00f3n en adelante los peticionarios contra el Estado de Honduras en adelante ", - "values": [ - "Comisi\u00f3n Interamericana de Derechos Humanos" - ] - }, - { - "text": "INFORME N\u00ba CASO DILCIA YEAN Y VIOLETA BOSICA REP\u00daBLICA DOMINICANA febrero de I. RESUMEN DE LOS HECHOS DENUNCIADOS La Comisi\u00f3n Interamericana de Derechos Humanos en adelante la Comisi\u00f3n o la CIDH recibi\u00f3 el de octubre de una petici\u00f3n presentada por el International Human Rights Law Clinic University of California Berkeley School of Law Boat Hall el Centro por la Justicia y el Derecho Internacional CEJIL y el Movimiento de Mujeres Dominico Haitianas Inc. MUDHA en adelante los peticionarios", - "values": [ - "Comisi\u00f3n Interamericana de Derechos Humanos" - ] - }, - { - "text": "RESOLUCI\u00d3N DE LA CORTE INTERAMERICANA DE DERECHOS HUMANOS DE DE MAYO DE CASO RODR\u00cdGUEZ VERA Y OTROS VS. COLOMBIA VISTO El escrito de de febrero de mediante el cual la Comisi\u00f3n Interamericana de Derechos Humanos en adelante la Comisi\u00f3n Interamericana o la Comisi\u00f3n someti\u00f3 ante la Corte Interamericana de Derechos Humanos en adelante la Corte Interamericana la Corte o el Tribunal el presente caso en contra de la Rep\u00fablica de Colombia en adelante Colombia o el Estado. El escrito de de junio ", - "values": [ - "Corte Interamericana de Derechos Humanos" - ] - }, - { - "text": "VOTO FUNDAMENTADO DO JUIZ SERGIO GARC\u00cdA RAM\u00cdREZ EM RELA\u00c7\u00c3O \u00c0 SENTEN\u00c7A DA CORTE INTERAMERICANA DE DIREITOS HUMANOS NO CASO CHAPARRO ALVAREZ E LAPO \u00cd\u00d1IGUEZ EQUADOR DE DE NOVEMBRO DE A Aspectos do julgamento penal na jurisprud\u00eancia da CorteIDH Na senten\u00e7a proferida pela Corte Interamericana de Direitos Humanos no Caso Chaparro \u00c1lvarez e Lapo \u00cd\u00f1iguez Equador de de novembro de o Tribunal analisa entre outras quest\u00f5es diversos aspectos do julgamento termo que utilizo em sentido amplo o devido ", - "values": [ - "Corte Interamericana de Derechos Humanos" - ] - }, - { - "text": "INFORME N\u00ba PETICI\u00d3N ADMISIBILIDAD CARLOS Y PABLO M\u00c9MOLI ARGENTINA de julio de I. RESUMEN El de febrero de el se\u00f1or Carlos M\u00e9moli y su hijo Pablo Carlos M\u00e9moli en adelante los peticionarios o las presuntas v\u00edctimas presentaron una denuncia en nombre propio ante la Comisi\u00f3n Interamericana de Derechos Humanos en adelante la Comisi\u00f3n la Comisi\u00f3n Interamericana o la CIDH por la presunta violaci\u00f3n del derecho a las garant\u00edas judiciales y del derecho a la libertad de pensamiento y de expresi\u00f3n ", - "values": [ - "Comisi\u00f3n Interamericana de Derechos Humanos" - ] - }, - { - "text": "RESOLUCI\u00d3N DE LA CORTE INTERAMERICANA DE DERECHOS HUMANOS DE DE SEPTIEMBRE DE CASO VARGAS ARECO VS. PARAGUAY SUPERVISI\u00d3N DE CUMPLIMIENTO DE SENTENCIA VISTO La Sentencia de fondo reparaciones y costas en adelante la Sentencia dictada por la Corte Interamericana de Derechos Humanos en adelante la Corte Interamericana la Corte o el Tribunal el de septiembre de Las Resoluciones de la Corte Interamericana de de octubre de y de de noviembre de En esta \u00faltima el Tribunal declar\u00f3 entre otros ", - "values": [ - "Corte Interamericana de Derechos Humanos" - ] - }, - { - "text": "Corte Interamericana de Derechos Humanos Caso God\u00ednez Cruz Vs. Honduras Sentencia de de junio de Excepciones Preliminares En el caso God\u00ednez Cruz la Corte Interamericana de Derechos Humanos integrada por los siguientes jueces Thomas Buergenthal Presidente Rafael Nieto Navia Vicepresidente Rodolfo E. Piza E Juez Pedro Nikken Juez H\u00e9ctor FixZamudio Juez H\u00e9ctor Gros Espiell Juez Rigoberto Espinal Ir\u00edas Juez ad hoc presentes adem\u00e1s Charles Moyer Secretario y Manuel Ventura Secretario Adjunto de ", - "values": [ - "Corte Interamericana de Derechos Humanos" - ] - }, - { - "text": "RESOLUCI\u00d3N DEL PRESIDENTE DE LA CORTE INTERAMERICANA DE DERECHOS HUMANOS DEL DE MAYO DE MEDIDAS URGENTES ADOPTADAS POR EL PRESIDENTE DE LA CORTE INTERAMERICANA DE DERECHOS HUMANOS EN EL CASO \u00c1LVAREZ Y OTROS VISTOS La Resoluci\u00f3n de la Corte Interamericana de Derechos Humanos en adelante la Corte de de noviembre de mediante la cual dispuso Requerir al Estado de Colombia que mantenga las medidas necesarias por un plazo de seis meses a partir de la presente resoluci\u00f3n para proteger la vida e", - "values": [ - "Corte Interamericana de Derechos Humanos" - ] - }, - { - "text": "Resoluci\u00f3n de la Corte Interamericana de Derechos Humanos de de febrero de Solicitud de medidas provisionales presentada por la Comisi\u00f3n Interamericana de Derechos Humanos respecto de la Rep\u00fablica Bolivariana de Venezuela Asunto del Internado Judicial Capital El Rodeo I y El Rodeo II VISTOS El escrito de de diciembre de y sus anexos mediante los cuales la Comisi\u00f3n Interamericana de Derechos Humanos en adelante la Comisi\u00f3n Interamericana o la Comisi\u00f3n someti\u00f3 a la Corte Interamericana de ", - "values": [ - "Corte Interamericana de Derechos Humanos" - ] - }, - { - "text": "RESOLUCI\u00d3N DE LA CORTE INTERAMERICANA DE DERECHOS HUMANOS DE DE NOVIEMBRE DE CASO CESTI HURTADO VS. PER\u00da SUPERVISI\u00d3N DE CUMPLIMIENTO DE SENTENCIA VISTO La Sentencia de excepciones preliminares dictada por la Corte Interamericana de Derechos Humanos en adelante la Corte Interamericana la Corte o el Tribunal el de enero de la Sentencia de fondo dictada por la Corte el de septiembre de en adelante la Sentencia de fondo la Sentencia de interpretaci\u00f3n de la Sentencia de fondo emitida por la ", - "values": [ - "Corte Interamericana de Derechos Humanos" - ] - }, - { - "text": "Resoluci\u00f3n de la Corte Interamericana de Derechos Humanos de de febrero de Solicitud de Medidas Provisionales presentada por la Comisi\u00f3n Interamericana de Derechos Humanos respecto de Venezuela Asunto Natera Balboa Visto El escrito de la Comisi\u00f3n Interamericana de Derechos Humanos en adelante la Comisi\u00f3n Interamericana o la Comisi\u00f3n de de noviembre de y sus anexos mediante los cuales someti\u00f3 a la Corte Interamericana de Derechos Humanos en adelante la Corte Interamericana la Corte o el ", - "values": [ - "Corte Interamericana de Derechos Humanos" - ] - }, - { - "text": "RESOLUCI\u00d3N DEL PRESIDENTE DE LA CORTE INTERAMERICANA DE DERECHOS HUMANOS DE DE MARZO DE CASO MIEMBROS DE LA ALDEA CHICHUPAC Y COMUNIDADES VECINAS DEL MUNICIPIO DE RABINAL VS. GUATEMALA VISTO El escrito de sometimiento del caso y el Informe de Fondo de la Comisi\u00f3n Interamericana de Derechos Humanos en adelante la Comisi\u00f3n Interamericana o la Comisi\u00f3n el escrito de solicitudes argumentos y pruebas en adelante el escrito de solicitudes y argumentos de los representantes de las presuntas en ", - "values": [ - "Corte Interamericana de Derechos Humanos" - ] - }, - { - "text": "VOTO CONCURRENTE DEL JUEZ EDUARDO VIO GROSSI CORTE INTERAMERICANA DE DERECHOS HUMANOS CASO VEL\u00c1SQUEZ PAIZ Y OTROS VS. GUATEMALA SENTENCIA DE DE NOVIEMBRE DE Excepciones Preliminares Fondo Reparaciones y Costas Se emite el presente voto concurrente con la Sentencia del ep\u00edgrafe a los efectos de dejar expresa constancia de que el suscrito concurre a aprobar la decisi\u00f3n se\u00f1alada en ella de desestimar la excepci\u00f3n preliminar relativa a la alegada falta de agotamiento de los recursos internos por", - "values": [ - "Corte Interamericana de Derechos Humanos" - ] - }, - { - "text": "Corte Interamericana de Derechos Humanos Caso Lori Berenson Mej\u00eda Vs. Per\u00fa Sentencia de de junio de Demanda de Interpretaci\u00f3n de la Sentencia de Fondo Reparaciones y Costas En el caso Lori Berenson Mej\u00eda la Corte Interamericana de Derechos Humanos en adelante la Corte Interamericana la Corte o el Tribunal integrada por los siguientes jueces Sergio Garc\u00eda Ram\u00edrez Presidente Alirio Abreu Burelli Vicepresidente Oliver Jackman Juez Ant\u00f4nio A. Can\u00e7ado Trindade Juez Cecilia Medina Quiroga Jueza y ", - "values": [ - "Corte Interamericana de Derechos Humanos" - ] - }, - { - "text": "RESOLUCI\u00d3N DE LA CORTE INTERAMERICANA DE DERECHOS HUMANOS DE DE OCTUBRE DE CASO DE LAS NI\u00d1AS YEAN Y BOSICO VS. REP\u00daBLICA DOMINICANA SUPERVISI\u00d3N DE CUMPLIMIENTO DE SENTENCIA VISTO La Sentencia de excepciones preliminares fondo reparaciones y costas en adelante la Sentencia emitida en el presente caso por la Corte Interamericana de Derechos Humanos en adelante la Corte Interamericana la Corte o el Tribunal el de septiembre de La Resoluci\u00f3n de Supervisi\u00f3n de Cumplimiento de Sentencia por ", - "values": [ - "Corte Interamericana de Derechos Humanos" - ] - }, - { - "text": "RESOLUCI\u00d3N DE LA CORTE INTERAMERICANA DE DERECHOS HUMANOS DEL DE NOVIEMBRE DE CASO DEL PUEBLO SARAMAKA VS. SURINAM SUPERVISI\u00d3N DE CUMPLIMIENTO DE SENTENCIA VISTO La Sentencia de excepciones preliminares fondo reparaciones y costas en adelante la Sentencia Saramaka o la Sentencia dictada por la Corte Interamericana de Derechos Humanos en adelante la Corte Interamericana la Corte o el Tribunal el de noviembre de mediante la cual DECLAR\u00d3 por unanimidad que e l Estado viol\u00f3 en perjuicio de ", - "values": [ - "Corte Interamericana de Derechos Humanos" - ] - }, - { - "text": "RESOLUCI\u00d3N DE LA CORTE INTERAMERICANA DE DERECHOS HUMANOS DE DE MAYO DE CASO ABRILL ALOSILLA Y OTROS VS. PER\u00da SUPERVISI\u00d3N DE CUMPLIMIENTO DE SENTENCIA VISTO La Sentencia de fondo reparaciones y costas dictada el de marzo de en adelante la Sentencia por la Corte Interamericana de Derechos Humanos en adelante la Corte la Corte Interamericana o el Tribunal en la cual se acept\u00f3 el reconocimiento parcial de responsabilidad internacional efectuado por el Estado y se declar\u00f3 la violaci\u00f3n a los ", - "values": [ - "Corte Interamericana de Derechos Humanos" - ] - }, - { - "text": "RESOLUCI\u00d3N DEL PRESIDENTE DE LA CORTE INTERAMERICANA DE DERECHOS HUMANOS DE DE MAYO DE MEDIDAS PROVISIONALES RESPECTO DE LOS ESTADOS UNIDOS MEXICANOS CASO FERN\u00c1NDEZ ORTEGA Y OTROS VISTO La Resoluci\u00f3n de la entonces Presidenta de la Corte Interamericana de Derechos Humanos en adelante la Corte Interamericana la Corte o el Tribunal de de abril de mediante la cual requiri\u00f3 a los Estados Unidos Mexicanos en adelante M\u00e9xico o el Estado adoptar de forma inmediata las medidas que fueran para la", - "values": [ - "Corte Interamericana de Derechos Humanos" - ] - }, - { - "text": "RESOLUCI\u00d3N DEL PRESIDENTE DE LA CORTE INTERAMERICANA DE DERECHOS HUMANOS DE DE JUNIO DE CASO MOHAMED VS. ARGENTINA VISTO El escrito de sometimiento del caso presentado el de abril de por la Comisi\u00f3n Interamericana de Derechos Humanos en adelante la Comisi\u00f3n Interamericana o la Comisi\u00f3n ante la Corte Interamericana de Derechos Humanos en adelante la Corte Interamericana la Corte o el Tribunal mediante el cual ofreci\u00f3 un dictamen pericial. La Comisi\u00f3n no identific\u00f3 al perito propuesto. La ", - "values": [ - "Corte Interamericana de Derechos Humanos" - ] - }, - { - "text": "INFORME N\u00ba PETICI\u00d3N ADMISIBILIDAD ANA VICTORIA S\u00c1NCHEZ VILLALOBOS Y OTROS COSTA RICA de marzo de I. RESUMEN El de enero de el Sr. Gerardo Trejos Salas en adelante el peticionario present\u00f3 una denuncia ante la Comisi\u00f3n Interamericana de Derechos Humanos en adelante la Comisi\u00f3n la Comisi\u00f3n Interamericana o la CIDH contra la Rep\u00fablica de Costa Rica en adelante El Estado Costa Rica el Estado costarricense o el Estado de Costa Rica en la que alega la responsabilidad internacional del Estado ", - "values": [ - "Comisi\u00f3n Interamericana de Derechos Humanos" - ] - }, - { - "text": "Corte Interamericana de Derechos Humanos Caso Caballero Delgado y Santana Vs. Colombia Sentencia de enero de Excepciones Preliminares En el caso Caballero Delgado y Santana la Corte Interamericana de Derechos Humanos integrada por los siguientes jueces Sonia Picado Sotela Presidenta Rafael Nieto Navia Juez H\u00e9ctor FixZamudio Juez Alejandro Montiel Arg\u00fcello Juez Hern\u00e1n Salgado Pesantes Juez Asdr\u00fabal AguiarAranguren Juez presentes adem\u00e1s Manuel E. Ventura Robles Secretario y Ana Mar\u00eda Reina de", - "values": [ - "Corte Interamericana de Derechos Humanos" - ] - }, - { - "text": "VOTO CONCURRENTE DEL JUEZ EDUARDO FERRER MACGREGOR POISOT A LA SENTENCIA DE LA CORTE INTERAMERICANA DE DERECHOS HUMANOS EN EL CASO LIAKAT ALI ALIBUX VS. SURINAME DE DE ENERO DE INTRODUCCI\u00d3N Concurro esencialmente con lo decidido en el presente caso en el que se establecieron est\u00e1ndares interamericanos de relevancia inter alia sobre los alcances del principio de legalidad y no retroactividad respecto de normas procesales art\u00edculo de la Convenci\u00f3n Americana sobre Derechos Humanos en adelante ", - "values": [ - "Corte Interamericana de Derechos Humanos" - ] - }, - { - "text": "RESOLUCI\u00d3N DE LA CORTE INTERAMERICANA DE DERECHOS HUMANOS DE DE FEBRERO DE CASO CHAPARRO \u00c1LVAREZ Y LAPO \u00cd\u00d1IGUEZ VS. ECUADOR SUPERVISI\u00d3N DE CUMPLIMIENTO DE SENTENCIA VISTO La Sentencia de excepciones preliminares fondo reparaciones y costas en adelante la Sentencia dictada por la Corte Interamericana de Derechos Humanos en adelante la Corte Interamericana la Corte o el Tribunal el de noviembre de mediante la cual dispuso que El Estado deb\u00eda eliminar inmediatamente el nombre de los se\u00f1ores", - "values": [ - "Corte Interamericana de Derechos Humanos" - ] - }, - { - "text": "RESOLUCI\u00d3N DEL PRESIDENTE DE LA CORTE INTERAMERICANA DE DERECHOS HUMANOS DE DE MAYO DE AMPLIACI\u00d3N DE MEDIDAS PROVISIONALES SOLICITADA POR LA COMISI\u00d3N INTERAMERICANA DE DERECHOS HUMANOS RESPECTO DE LA REP\u00daBLICA DE GUATEMALA CASO COLOTENANGO VISTOS La resoluci\u00f3n de la Corte Interamericana de Derechos Humanos en adelante la Corte o la Corte Interamericana de de junio de en la cual decidi\u00f3 Requerir al Gobierno de Guatemala que adoptase sin dilaci\u00f3n cuantas medidas fuesen necesarias para el ", - "values": [ - "Corte Interamericana de Derechos Humanos" - ] - }, - { - "text": "RESOLUCI\u00d3N DE LA CORTE INTERAMERICANA DE DERECHOS HUMANOS DE DE NOVIEMBRE DE MEDIDAS PROVISIONALES RESPECTO DE LA REP\u00daBLICA DE COLOMBIA CASO DE LAS COMUNIDADES DEL JIGUAMIAND\u00d3 Y DEL CURBARAD\u00d3 VISTO La Resoluci\u00f3n de la Corte Interamericana de Derechos Humanos en adelante la Corte Interamericana la Corte o el Tribunal de de marzo de en la cual resolvi\u00f3 Requerir al Estado de Colombia que adopte sin dilaci\u00f3n las medidas que sean necesarias para proteger la vida e integridad personal de todos ", - "values": [ - "Corte Interamericana de Derechos Humanos" - ] - }, - { - "text": "RESOLUCI\u00d3N DEL PRESIDENTE DE LA CORTE INTERAMERICANA DE DERECHOS HUMANOS DE DE DICIEMBRE DE CASO L\u00d3PEZ MENDOZA VS. VENEZUELA VISTO El escrito de demanda presentado por la Comisi\u00f3n Interamericana de Derechos Humanos en adelante la Comisi\u00f3n Interamericana o la Comisi\u00f3n ante la Corte Interamericana de Derechos Humanos en adelante la Corte Interamericana la Corte o el Tribunal el de diciembre de en el que propuso la declaraci\u00f3n de la presunta v\u00edctima y el dictamen de dos peritos. El escrito ", - "values": [ - "Corte Interamericana de Derechos Humanos" - ] - }, - { - "text": "VOTO RAZONADO DEL JUEZ AA. CAN\u00c7ADO TRINDADE Voto a favor de la adopci\u00f3n por la Corte Interamericana de Derechos Humanos de la presente Sentencia sobre el fondo y las reparaciones en el caso Myrna Mack Chang versus Guatemala mediante la cual la Corte estableci\u00f3 que la violaci\u00f3n del derecho a la vida de Myrna Mack Chang ocurri\u00f3 en circunstancias agravantes p\u00e1rr. por cuanto result\u00f3 de una operaci\u00f3n encubierta de inteligencia militar llevada a cabo por el Estado Mayor Presidencial y tolerada por ", - "values": [ - "Corte Interamericana de Derechos Humanos" - ] - }, - { - "text": "RESOLUCI\u00d3N DE LA CORTE INTERAMERICANA DE DERECHOS HUMANOS DE DE AGOSTO DE MEDIDAS PROVISIONALES RESPECTO DE M\u00c9XICO ASUNTO CASTRO RODR\u00cdGUEZ VISTO La Resoluci\u00f3n dictada por la Corte Interamericana de Derechos Humanos en adelante la Corte Interamericana la Corte o el Tribunal el de febrero de mediante la cual a solicitud de la Comisi\u00f3n Interamericana de Derechos Humanos en adelante la Comisi\u00f3n o la Comisi\u00f3n Interamericana se orden\u00f3 otorgar medidas provisionales a favor de Luz Estela Castro ", - "values": [ - "Corte Interamericana de Derechos Humanos" - ] - }, - { - "text": "CORTE INTERAMERICANA DE DERECHOS HUMANOS CASO CABRERA GARC\u00cdA Y MONTIEL FLORES VS. M\u00c9XICO SENTENCIA DE DE NOVIEMBRE DE Excepci\u00f3n Preliminar Fondo Reparaciones y Costas En el caso Cabrera Garc\u00eda y Montiel Flores la Corte Interamericana de Derechos Humanos en adelante la Corte Interamericana la Corte o el Tribunal integrada por los siguientes jueces Diego Garc\u00edaSay\u00e1n Presidente Leonardo A. Franco Vicepresidente Manuel E. Ventura Robles Juez Margarette May Macaulay Jueza Rhadys Abreu Blondet ", - "values": [ - "Corte Interamericana de Derechos Humanos" - ] - }, - { - "text": "RESOLUCI\u00d3N DEL PRESIDENTE DE LA CORTE INTERAMERICANA DE DERECHOS HUMANOS EN EJERCICIO PARA EL PRESENTE CASO DE DE AGOSTO DE FONDO DE ASISTENCIA LEGAL DE V\u00cdCTIMAS CASO CRUZ S\u00c1NCHEZ Y OTROS VS. PER\u00da VISTO El escrito de de diciembre de y su anexo mediante los cuales la Comisi\u00f3n Interamericana de Derechos Humanos en adelante la Comisi\u00f3n Interamericana o la Comisi\u00f3n someti\u00f3 a la Corte Interamericana de Derechos Humanos en adelante la Corte Interamericana la Corte o el Tribunal un caso en de ", - "values": [ - "Corte Interamericana de Derechos Humanos" - ] - }, - { - "text": "CORTE INTERAMERICANA DE DERECHOS HUMANOS CASO NADEGE DORZEMA Y OTROS VS. REP\u00daBLICA DOMINICANA SENTENCIA DE DE OCTUBRE DE Fondo Reparaciones y Costas En el caso Nadege Dorzema y otros la Corte Interamericana de Derechos Humanos en adelante la Corte Interamericana o la Corte integrada por los siguientes jueces Diego Garc\u00edaSay\u00e1n Presidente Manuel E. Ventura Robles Vicepresidente Leonardo A. Franco Juez Margarette May Macaulay Jueza Alberto P\u00e9rez P\u00e9rez Juez Eduardo V\u00edo Grossi Juez y presentes ", - "values": [ - "Corte Interamericana de Derechos Humanos" - ] - }, - { - "text": "InterAmerican Court of Human Rights Case of Garc\u00edaPrieto et al. v. El Salvador Judgment of November Interpretation of the Judgment on Preliminary Objections Merits Reparations and Costs In the Case of Garc\u00eda Prieto et al The InterAmerican Court of Human Rights hereinafter the InterAmerican Court the Court or the Tribunal composed of the following judges Sergio Garc\u00eda Ram\u00edrez President Cecilia Medina Quiroga Vice President Manuel E. Ventura Robles Judge Leonardo A. Franco Judge Margarette May", - "values": [ - "Corte Interamericana de Derechos Humanos" - ] - }, - { - "text": "RESOLUCION DEL PRESIDENTE DE LA CORTE INTERAMERICANA DE DERECHOS HUMANOS DE DE ENERO DE CASO PACHECO TERUEL Y OTROS VS. HONDURAS VISTO El escrito de sometimiento del caso presentado el de marzo de por la Comisi\u00f3n Interamericana de Derechos Humanos en adelante la Comisi\u00f3n Interamericana o la Comisi\u00f3n ante la Corte Interamericana de Derechos Humanos en adelante la Corte Interamericana o la Corte mediante el cual ofreci\u00f3 dos dict\u00e1menes periciales sobre los que indic\u00f3 su objeto sin a las que", - "values": [ - "Corte Interamericana de Derechos Humanos" - ] - }, - { - "text": "Resoluci\u00f3n de la Presidenta de la Corte Interamericana De Derechos Humanos de de Junio de Caso Herrera Ulloa Vs. Costa Rica Supervisi\u00f3n de Cumplimiento de Sentencia Visto La Sentencia de excepciones preliminares fondo reparaciones y costas en adelante la Sentencia dictada por la Corte Interamericana de Derechos Humanos en adelante la Corte Interamericana la Corte o el Tribunal el de julio de Las Resoluciones de cumplimiento de sentencia dictadas por la Corte el de septiembre de y el de", - "values": [ - "Corte Interamericana de Derechos Humanos" - ] - }, - { - "text": "RESOLUCI\u00d3N DE LA CORTE INTERAMERICANA DE DERECHOS HUMANOS DE DE JULIO DE MEDIDAS PROVISIONALES RESPECTO DE LOS ESTADOS UNIDOS MEXICANOS CASO ROSENDO CANT\u00da Y OTRA VISTO La Sentencia de Excepci\u00f3n Preliminar Fondo Reparaciones y Costas en adelante tambi\u00e9n la Sentencia emitida por la Corte Interamericana de Derechos Humanos en adelante la Corte Interamericana la Corte o el Tribunal el de agosto de La Resoluci\u00f3n de la Corte de de febrero de en adelante tambi\u00e9n la Resoluci\u00f3n mediante la cual ", - "values": [ - "Corte Interamericana de Derechos Humanos" - ] - }, - { - "text": "RESOLUCI\u00d3N DEL PRESIDENTE DE LA CORTE INTERAMERICANA DE DERECHOS HUMANOS DE DE NOVIEMBRE DE FONDO DE ASISTENCIA LEGAL DE V\u00cdCTIMAS CASO CASTILLO GONZ\u00c1LEZ Y OTROS VS. VENEZUELA VISTO El escrito de de febrero de mediante el cual la Comisi\u00f3n Interamericana de Derechos Humanos en adelante la Comisi\u00f3n Interamericana o la Comisi\u00f3n someti\u00f3 a la Corte Interamericana de Derechos Humanos en adelante la Corte Interamericana la Corte o el Tribunal un caso en contra de la Rep\u00fablica Bolivariana de en ", - "values": [ - "Corte Interamericana de Derechos Humanos" - ] - }, - { - "text": "Resoluci\u00f3n de la Corte Interamericana de Derechos Humanos de de noviembre de Caso Cinco Pensionistas Vs. Per\u00fa Cumplimiento de sentencia VISTOS La Sentencia de fondo reparaciones y costas emitida el de febrero de por la Corte Interamericana de Derechos Humanos en adelante la Corte la Corte Interamericana o el Tribunal mediante la cual el Tribunal resolvi\u00f3 inter alia por unanimidad que el Estado viol\u00f3 el derecho a la propiedad privada consagrado en el art\u00edculo de la Convenci\u00f3n Americana ", - "values": [ - "Corte Interamericana de Derechos Humanos" - ] - }, - { - "text": "RESOLUCI\u00d3N DE LA CORTE INTERAMERICANA DE DERECHOS HUMANOS DE DE FEBRERO DE MEDIDAS PROVISIONALES RESPECTO DE LA REP\u00daBLICA DE HONDURAS ASUNTO JOS\u00c9 LUIS GALD\u00c1MEZ \u00c1LVAREZ Y OTROS VISTO El escrito de la Comisi\u00f3n Interamericana de Derechos Humanos en adelante la Comisi\u00f3n Interamericana o la Comisi\u00f3n de de diciembre de y sus anexos mediante los cuales someti\u00f3 a la Corte Interamericana de Derechos Humanos en adelante la Corte Interamericana la Corte o el Tribunal una solicitud de medidas en los ", - "values": [ - "Corte Interamericana de Derechos Humanos" - ] - }, - { - "text": "INFORME N\u00ba PETICI\u00d3N ADMISIBILIDAD MILAGROS FORNER\u00d3N Y LEONARDO AN\u00cdBAL JAVIER FORNER\u00d3N ARGENTINA de octubre de I. RESUMEN El presente informe se refiere a la admisibilidad de la petici\u00f3n abierta por la Comisi\u00f3n Interamericana de Derechos Humanos en lo sucesivo Comisi\u00f3n Interamericana Comisi\u00f3n o CIDH en virtud de la presentaci\u00f3n de una petici\u00f3n el de octubre de por parte de Leonardo An\u00edbal Javier Forner\u00f3n y de Margarita Rosa Nicoliche representante legal del Centro de Estudios Sociales y ", - "values": [ - "Comisi\u00f3n Interamericana de Derechos Humanos" - ] - }, - { - "text": "RESOLUCI\u00d3N DE LA CORTE INTERAMERICANA DE DERECHOS HUMANOS DE DE JUNIO DE CASO LORI BERENSON MEJ\u00cdA VS. PER\u00da SUPERVISI\u00d3N DE CUMPLIMIENTO DE SENTENCIA VISTO La Sentencia de fondo reparaciones y costas en adelante la Sentencia dictada por la Corte Interamericana de Derechos Humanos en adelante la Corte Interamericana la Corte o el Tribunal el de noviembre de La Resoluci\u00f3n de supervisi\u00f3n de cumplimiento de la Sentencia emitida por el Tribunal el de septiembre de en la cual consider\u00f3 que el", - "values": [ - "Corte Interamericana de Derechos Humanos" - ] - }, - { - "text": "Corte Interamericana de Derechos Humanos Caso de los Ni\u00f1os de la Calle Villagr\u00e1n Morales y otros Vs. Guatemala Sentencia de de noviembre Fondo En el caso Villagr\u00e1n Morales y otros caso de los ni\u00f1os de la calle la Corte Interamericana de Derechos Humanos en adelante la Corte la Corte Interamericana o el Tribunal integrada por los siguientes jueces Ant\u00f4nio A. Can\u00e7ado Trindade Presidente M\u00e1ximo Pacheco G\u00f3mez Vicepresidente Hern\u00e1n Salgado Pesantes Juez Oliver Jackman Juez Alirio Abreu Burelli y ", - "values": [ - "Corte Interamericana de Derechos Humanos" - ] - }, - { - "text": "INFORME N PETICI\u00d3N ADMISIBILIDAD TEODORO CABRERA GARC\u00cdA Y RODOLFO MONTIEL FLORES M\u00c9XICO de febrero de I. RESUMEN El de octubre de la Comisi\u00f3n Interamericana de Derechos Humanos en adelante la Comisi\u00f3n Interamericana o la CIDH recibi\u00f3 una denuncia presentada por Ubalda Cort\u00e9s Salgado Ventura L\u00f3pez y las organizaciones Sierra Club Greenpeace International el Centro de Derechos Humanos Miguel Agust\u00edn Pro Ju\u00e1rez PRODH y el Centro por la Justicia y el Derecho Internacional CEJIL en adelante", - "values": [ - "Comisi\u00f3n Interamericana de Derechos Humanos" - ] - }, - { - "text": "CORTE INTERAMERICANA DE DERECHOS HUMANOS CASO KAWAS FERN\u00c1NDEZ VS. HONDURAS SENTENCIA DE DE ABRIL DE Fondo Reparaciones y Costas En el caso Kawas Fern\u00e1ndez la Corte Interamericana de Derechos Humanos en adelante la Corte Interamericana la Corte o el Tribunal integrada por los siguientes jueces Cecilia Medina Quiroga Presidenta Diego Garc\u00edaSay\u00e1n Vicepresidente Sergio Garc\u00eda Ram\u00edrez Juez Manuel E. Ventura Robles Juez Leonardo A. Franco Juez Margarette May Macaulay Jueza Rhadys Abreu Blondet y ", - "values": [ - "Corte Interamericana de Derechos Humanos" - ] - }, - { - "text": "RESOLUCI\u00d3N DE LA CORTE INTERAMERICANA DE DERECHOS HUMANOS DE MARZO DE CASO TIBI VS. ECUADOR SUPERVISI\u00d3N DE CUMPLIMIENTO DE SENTENCIA VISTOS La Sentencia de excepciones preliminares fondo reparaciones y costas en adelante la Sentencia dictada por la Corte Interamericana de Derechos Humanos en adelante la Corte Interamericana la Corte o el Tribunal el de septiembre de Las Resoluciones de Supervisi\u00f3n de Cumplimiento de Sentencia emitidas por la Corte el de septiembre de y el de julio de ", - "values": [ - "Corte Interamericana de Derechos Humanos" - ] - }, - { - "text": "Corte Interamericana de Derechos Humanos Caso Claude Reyes y otros Vs. Chile Sentencia de de septiembre de Fondo Reparaciones y Costas En el caso Claude Reyes y otros la Corte Interamericana de Derechos Humanos en adelante la Corte Interamericana la Corte o el Tribunal integrada por los siguientes jueces Sergio Garc\u00eda Ram\u00edrez Presidente Alirio Abreu Burelli Vicepresidente Ant\u00f4nio A. Can\u00e7ado Trindade Juez Cecilia Medina Quiroga Jueza Manuel E. Ventura Robles Juez y Diego Garc\u00edaSay\u00e1n Juez ", - "values": [ - "Corte Interamericana de Derechos Humanos" - ] - }, - { - "text": "RESOLUCI\u00d3N DE LA CORTE INTERAMERICANA DE DERECHOS HUMANOS DE DE JUNIO DE MEDIDAS PROVISIONALES RESPECTO DEL ESTADO DE GUATEMALA CASO BLAKE VISTOS La Resoluci\u00f3n del Presidente de la Corte Interamericana de Derechos Humanos en adelante el Presidente de de agosto de mediante la cual resolvi\u00f3 Solicitar al Gobierno de la Rep\u00fablica de Guatemala que adopte sin dilaci\u00f3n cuantas medidas sean necesarias para asegurar eficazmente la protecci\u00f3n de la vida e integridad personal de JUSTO VICTORIANO ", - "values": [ - "Corte Interamericana de Derechos Humanos" - ] - }, - { - "text": "RESOLUCI\u00d3N DE LA CORTE INTERAMERICANA DE DERECHOS HUMANOS DE AGOSTO DE CASO CASTA\u00d1EDA GUTMAN VS. M\u00c9XICO VISTO La Sentencia de excepciones preliminares fondo reparaciones y costas en adelante la Sentencia de de agosto de dictada por la Corte Interamericana de Derechos Humanos en adelante la Corte Interamericana la Corte o este Tribunal en la cual se declar\u00f3 la violaci\u00f3n del derecho a la protecci\u00f3n judicial consagrado en el art\u00edculo de Convenci\u00f3n Americana sobre Derechos Humanos en adelante", - "values": [ - "Corte Interamericana de Derechos Humanos" - ] - }, - { - "text": "RESOLUCI\u00d3N DE LA CORTE INTERAMERICANA DE DERECHOS HUMANOS DE DE ENERO DE MEDIDAS PROVISIONALES RESPECTO DE LA REP\u00daBLICA DEL PER\u00da CASO WONG HO WING VISTO La Resoluci\u00f3n del entonces Presidente en ejercicio para el presente caso en adelante el Presidente en ejercicio de la Corte Interamericana de Derechos Humanos en adelante la Corte Interamericana la Corte o este Tribunal de de marzo de as\u00ed como las Resoluciones de este Tribunal de de mayo y de noviembre de de de marzo y de julio de ", - "values": [ - "Corte Interamericana de Derechos Humanos" - ] - }, - { - "text": "RESOLUCI\u00d3N DE LA CORTE INTERAMERICANA DE DERECHOS HUMANOS DE DE OCTUBRE DE SOLICITUD DE MEDIDAS PROVISIONALES CASO IBSEN C\u00c1RDENAS E IBSEN PE\u00d1A VS. BOLIVIA VISTO El escrito de de julio de mediante el cual los representantes de las v\u00edctimas en adelante los representantes presentaron una solicitud de medidas provisionales de conformidad con los art\u00edculos de la Convenci\u00f3n Americana sobre Derechos Humanos en adelante la Convenci\u00f3n Americana o la Convenci\u00f3n y del Reglamento de la Corte de ", - "values": [ - "Corte Interamericana de Derechos Humanos" - ] - }, - { - "text": "RESOLUCI\u00d3N DE LA CORTE INTERAMERICANA DE DERECHOS HUMANOS DE DE SEPTIEMBRE DE CASO RICARDO CANESE VS. PARAGUAY SUPERVISI\u00d3N DE CUMPLIMIENTO DE SENTENCIA VISTOS La Sentencia sobre el fondo reparaciones y costas dictada por la Corte Interamericana de Derechos Humanos en adelante la Corte o el Tribunal el de agosto de en la cual por unanimidad declar\u00f3 que El Estado viol\u00f3 el derecho a la libertad de pensamiento y de expresi\u00f3n consagrado en el art\u00edculo de la Convenci\u00f3n Americana sobre Derechos", - "values": [ - "Corte Interamericana de Derechos Humanos" - ] - }, - { - "text": "RESOLUCI\u00d3N DE LA CORTE INTERAMERICANA DE DERECHOS HUMANOS DE DE SEPTIEMBRE DE SOLICITUD DE MEDIDAS PROVISIONALES PRESENTADA POR LA COMISI\u00d3N INTERAMERICANA DE DERECHOS HUMANOS RESPECTO DE EL SALVADOR A FAVOR DE GLORIA GIRALT DE GARCIA PRIETO Y OTROS VISTO El escrito de de septiembre de y sus anexos mediante los cuales la Comisi\u00f3n Interamericana de Derechos Humanos en adelante la Comisi\u00f3n Interamericana o la Comisi\u00f3n someti\u00f3 a la Corte Interamericana de Derechos Humanos en adelante la Corte ", - "values": [ - "Corte Interamericana de Derechos Humanos" - ] - }, - { - "text": "RESOLUCI\u00d3N DE LA CORTE INTERAMERICANA DE DERECHOS HUMANOS DE DE FEBRERO DE CASO EL AMPARO VS. VENEZUELA SUPERVISI\u00d3N DE CUMPLIMIENTO DE SENTENCIA VISTO Las Sentencias de fondo y de reparaciones y costas dictadas por la Corte Interamericana de Derechos Humanos en adelante la Corte Interamericana la Corte o el Tribunal el de enero de y el de septiembre de respectivamente en el presente caso. Las resoluciones de supervisi\u00f3n de cumplimiento dictadas por el Tribunal el de noviembre de el ", - "values": [ - "Corte Interamericana de Derechos Humanos" - ] - }, - { - "text": "Resoluci\u00f3n de la Presidenta de la Corte Interamericana de Derechos Humanos de de diciembre de Medidas Provisionales Respecto de los Estados Unidos Mexicanos Asunto Pilar Noriega Garc\u00eda y otros VISTO La Resoluci\u00f3n emitida por el Presidente de la Corte Interamericana de Derechos Humanos en adelante la Corte la Corte Interamericana o el Tribunal el de octubre de en consulta con los dem\u00e1s Jueces de la Corte mediante la cual resolvi\u00f3 Requerir al Estado que adopte sin dilaci\u00f3n cuantas medidas ", - "values": [ - "Corte Interamericana de Derechos Humanos" - ] - }, - { - "text": "RESOLUCI\u00d3N DE LA CORTE INTERAMERICANA DE DERECHOS HUMANOS DE DE SEPTIEMBRE DE MEDIDAS PROVISIONALES ADOPTADAS POR LA CORTE INTERAMERICANA DE DERECHOS HUMANOS RESPECTO DE LA REP\u00daBLICA BOLIVARIANA DE VENEZUELA A FAVOR DE CARLOS NIETO PALMA Y OTROS VISTO La Resoluci\u00f3n de la Corte Interamericana de Derechos Humanos en adelante la Corte Interamericana la Corte o el Tribunal de de julio de mediante la cual resolvi\u00f3 Requerir al Estado que adopte sin dilaci\u00f3n las medidas que sean necesarias para ", - "values": [ - "Corte Interamericana de Derechos Humanos" - ] - }, - { - "text": "VOTO DISIDENTE DE LOS JUECES ALIRIO ABREU BURELLI Y CECILIA MEDINA QUIROGA Lamentamos disentir de la decisi\u00f3n de la Corte de aplicar el art\u00edculo a la decisi\u00f3n del Vicepresidente del Comit\u00e9 de Inversiones Extranjeras de negar una informaci\u00f3n a las v\u00edctimas de este caso ver p\u00e1rrafos a de la sentencia. El art\u00edculo consagra el derecho a ser o\u00eddo con las debidas garant\u00edas y dentro de un plazo razonable por un juez o un tribunal competente independiente e imparcialpara la determinaci\u00f3n de sus y", - "values": [ - "Corte Interamericana de Derechos Humanos" - ] - }, - { - "text": "Resoluci\u00f3n de la Corte Interamericana de Derechos Humanos de de noviembre de Caso La Cantuta vs. Per\u00fa Supervisi\u00f3n de Cumplimiento de Sentencia Visto La Sentencia de fondo reparaciones y costas dictada el de noviembre de en adelante la Sentencia por la Corte Interamericana de Derechos Humanos en adelante la Corte la Corte Interamericana o el Tribunal mediante la cual el Tribunal dispuso que El Estado debe realizar inmediatamente las debidas diligencias para completar eficazmente y llevar ", - "values": [ - "Corte Interamericana de Derechos Humanos" - ] - }, - { - "text": "Resoluci\u00f3n de la Corte Interamericana de Derechos Humanos de de noviembre de Medidas Provisionales adoptadas por la Corte Interamericana de Derechos Humanos respecto de Guatemala A favor de Integrantes del Equipo de Estudios Comunitarios y Acci\u00f3n Psicosocial ECAP Caso Masacre Plan de S\u00e1nchez VISTO La Resoluci\u00f3n de la Corte Interamericana de Derechos Humanos en adelante la Corte Interamericana la Corte o el Tribunal de de noviembre de mediante la cual resolvi\u00f3 Ratificar en todos sus la ", - "values": [ - "Corte Interamericana de Derechos Humanos" - ] - }, - { - "text": "RESOLUCI\u00d3N DEL PRESIDENTE DE LA CORTE INTERAMERICANA DE DERECHOS HUMANOS DE DE ABRIL DE CASO ROSENDO CANT\u00da Y OTRA VS. ESTADOS UNIDOS MEXICANOS VISTO El escrito de demanda presentado por la Comisi\u00f3n Interamericana de Derechos Humanos en adelante la Comisi\u00f3n Interamericana o la Comisi\u00f3n ante la Corte Interamericana de Derechos Humanos en adelante la Corte Interamericana la Corte o el Tribunal el de agosto de mediante el cual ofreci\u00f3 cuatro declaraciones testimoniales y seis informes De los ", - "values": [ - "Corte Interamericana de Derechos Humanos" - ] - }, - { - "text": "Resoluci\u00f3n de la Corte Interamericana de Derechos Humanos de de julio de Caso de la Masacre de Pueblo Bello Vs. Colombia Supervisi\u00f3n de Cumplimiento de Sentencia Vistos La Sentencia de fondo reparaciones y costas dictada el de enero de en adelante la Sentencia por la Corte Interamericana de Derechos Humanos en adelante la Corte la Corte Interamericana o el Tribunal notificada \u00edntegramente a la Rep\u00fablica de Colombia en adelante el Estado o Colombia el de febrero de mediante la cual el ", - "values": [ - "Corte Interamericana de Derechos Humanos" - ] - }, - { - "text": "VOTO CONCURRENTE RAZONADO DEL JUEZ DIEGO GARC\u00cdASAY\u00c1N SENTENCIA DE LA CORTE INTERAMERICANA DE DERECHOS HUMANOS CASO L\u00d3PEZ MENDOZA VS. VENEZUELA DE DE SEPTIEMBRE DE El caso resuelto por la Corte se refiere a una v\u00edctima perfectamente individualizada el se\u00f1or Leopoldo L\u00f3pez Mendoza y a una situaci\u00f3n y materia jur\u00eddica con un punto central identificado por la Corte El punto central del presente caso radica en las sanciones de inhabilitaci\u00f3n impuestas al se\u00f1or L\u00f3pez Mendoza por decisi\u00f3n de un ", - "values": [ - "Corte Interamericana de Derechos Humanos" - ] - }, - { - "text": "RESOLUCI\u00d3N DE LA CORTE INTERAMERICANA DE DERECHOS HUMANOS DE DE DICIEMBRE DE MEDIDAS PROVISIONALES LUIS UZC\u00c1TEGUI RESPECTO DE VENEZUELA VISTOS La Resoluci\u00f3n de la Corte Interamericana de Derechos Humanos en adelante la Corte la Corte Interamericana o el Tribunal de de noviembre de relativa a las medidas provisionales solicitadas por la Comisi\u00f3n Interamericana de Derechos Humanos en adelante la Comisi\u00f3n o la Comisi\u00f3n Interamericana a favor del se\u00f1or Luis Enrique Uzc\u00e1tegui Jim\u00e9nez mediante ", - "values": [ - "Corte Interamericana de Derechos Humanos" - ] - }, - { - "text": "RESOLUCI\u00d3N DE LA CORTE INTERAMERICANA DE DERECHOS HUMANOS DE DE NOVIEMBRE DE MEDIDAS PROVISIONALES RESPECTO DE LA REP\u00daBLICA DE GUATEMALA ASUNTO DE LA FUNDACI\u00d3N DE ANTROPOLOG\u00cdA FORENSE DE GUATEMALA VISTO Las Resoluciones de la Corte Interamericana de Derechos Humanos en adelante la Corte Interamericana la Corte o el Tribunal de de julio de de noviembre de de enero de y de febrero de mediante las cuales se orden\u00f3 la adopci\u00f3n de medidas provisionales y el mantenimiento de aquellas a ", - "values": [ - "Corte Interamericana de Derechos Humanos" - ] - }, - { - "text": "RESOLUCI\u00d3N DEL PRESIDENTE DE LA CORTE INTERAMERICANA DE DERECHOS HUMANOS DE DE OCTUBRE DE MEDIDAS PROVISIONALES SOLICITADAS POR LA COMISI\u00d3N INTERAMERICANA DE DERECHOS HUMANOS RESPECTO DE LA REP\u00daBLICA DE COLOMBIA CASO GIRALDO CARDONA VISTOS El escrito de de octubre de mediante el cual la Comisi\u00f3n Interamericana de Derechos Humanos en adelante la Comisi\u00f3n o la Comisi\u00f3n Interamericana somete a la Corte Interamericana de Derechos Humanos en adelante la Corte o la Corte Interamericana en virtud", - "values": [ - "Corte Interamericana de Derechos Humanos" - ] - }, - { - "text": "RESOLUCION DEL PRESIDENTE DE LA CORTE INTERAMERICANA DE DERECHOS HUMANOS DE DE FEBRERO DE CASO GARC\u00cdA LUCERO Y OTROS VS. CHILE VISTO El escrito de sometimiento del caso de de septiembre de y sus anexos recibidos el de octubre de presentados por la Comisi\u00f3n Interamericana de Derechos Humanos en adelante la Comisi\u00f3n Interamericana o la Comisi\u00f3n ante la Corte Interamericana de Derechos Humanos en adelante la Corte Interamericana la Corte o el Tribunal contra la Rep\u00fablica de Chile en el o ", - "values": [ - "Corte Interamericana de Derechos Humanos" - ] - }, - { - "text": "Corte Interamericana de Derechos Humanos Caso Fair\u00e9n Garbi y Sol\u00eds Corrales Vs. Honduras Sentencia de de marzo de Fondo En el caso Fair\u00e9n Garbi y Sol\u00eds Corrales la Corte Interamericana de Derechos Humanos integrada por los siguientes jueces Rafael Nieto Navia Presidente H\u00e9ctor Gros Espiell Vicepresidente Rodolfo E. Piza E Juez Thomas Buergenthal Juez Pedro Nikken Juez H\u00e9ctor FixZamudio Juez Rigoberto Espinal Ir\u00edas Juez ad hoc presentes adem\u00e1s Charles Moyer Secretario y Manuel Ventura Adjunto", - "values": [ - "Corte Interamericana de Derechos Humanos" - ] - }, - { - "text": "Order of the InterAmerican Court of Human Rights of January Provisional Measures regarding the Bolivarian Republic of Venezuela Matter of Carlos NietoPalma et al. HAVING SEEN The Order of the InterAmerican Court of Human Rights hereinafter the InterAmerican Court or the Court of July whereby the Court ordered provisional measures for the benefit of Carlos NietoPalma and his next of kin Ivonne PalmaS\u00e1nchez Eva Teresa NietoPalma and John Carmelo LaiconoNieto. The Order of the InterAmerican ", - "values": [ - "Corte Interamericana de Derechos Humanos" - ] - }, - { - "text": "RESOLU\u00c7\u00c3O DA CORTE INTERAMERICANA DE DIREITOS HUMANOS DE DE JUNHO DE MEDIDAS PROVIS\u00d3RIAS SOLICITADAS PELA COMISS\u00c3O INTERAMERICANA DE DIREITOS HUMANOS A RESPEITO DA REP\u00daBLICA FEDERATIVA DO BRASIL CASO DA PENITENCI\u00c1RIA URSO BRANCO VISTO O escrito da Comiss\u00e3o Interamericana de Direitos Humanos doravante denominada Comiss\u00e3o ou Comiss\u00e3o Interamericana de de junho de mediante o qual submeteu \u00e0 Corte Interamericana de Direitos Humanos doravante denominada Corte ou Corte Interamericana de acordo ", - "values": [ - "Corte Interamericana de Derechos Humanos" - ] - }, - { - "text": "RESOLUCI\u00d3N DE LA CORTE INTERAMERICANA DE DERECHOS HUMANOS DE DE SEPTIEMBRE DE MEDIDAS PROVISIONALES SOLICITADAS POR LA COMISI\u00d3N INTERAMERICANA DE DERECHOS HUMANOS RESPECTO DE LA REP\u00daBLICA DE COLOMBIA CASO \u00c1LVAREZ Y OTROS VISTOS El escrito de de julio de y sus anexos mediante el cual la Comisi\u00f3n Interamericana de Derechos Humanos en adelante la Comisi\u00f3n o la Comisi\u00f3n Interamericana someti\u00f3 a la Corte Interamericana de Derechos Humanos en adelante la Corte o la Corte Interamericana en virtud", - "values": [ - "Corte Interamericana de Derechos Humanos" - ] - }, - { - "text": "RESOLUCI\u00d3N DEL PRESIDENTE DE LA CORTE INTERAMERICANA DE DERECHOS HUMANOS DE DE JUNIO DE MEDIDAS PROVISIONALES RESPECTO DE LA REP\u00daBLICA DE COLOMBIA ASUNTO COMUNIDADES DEL JIGUAMIAND\u00d3 Y DEL CURBARAD\u00d3 VISTOS Las Resoluciones de la Corte Interamericana de de marzo de de noviembre de de marzo de de febrero de de febrero de y de agosto de En esta \u00faltima Resoluci\u00f3n la Corte solicit\u00f3 a los representantes y particularmente a la Comisi\u00f3n Interamericana que aclararan cu\u00e1les son las cinco ", - "values": [ - "Corte Interamericana de Derechos Humanos" - ] - }, - { - "text": "RESOLUCI\u00d3N DE LA CORTE INTERAMERICANA DE DERECHOS HUMANOS DE DE NOVIEMBRE DE CASO HERRERA ULLOA VS. COSTA RICA SUPERVISI\u00d3N DE CUMPLIMIENTO DE SENTENCIA VISTO La Sentencia de excepciones preliminares fondo reparaciones y costas en adelante la Sentencia dictada por la Corte Interamericana de Derechos Humanos en adelante la Corte Interamericana la Corte o el Tribunal el de julio de mediante la cual inter alia dispuso Que el Estado debe dejar sin efecto en todos sus extremos la sentencia el ", - "values": [ - "Corte Interamericana de Derechos Humanos" - ] - }, - { - "text": "RESOLUCI\u00d3N DEL PRESIDENTE DE LA CORTE INTERAMERICANA DE DERECHOS HUMANOS DE ENERO DE CASO PUEBLO IND\u00cdGENA KICHWA DE SARAYAKU vs. ECUADOR VISTO El escrito de demanda presentado por la Comisi\u00f3n Interamericana de Derechos Humanos en adelante la Comisi\u00f3n Interamericana o la Comisi\u00f3n el de abril de y sus anexos recibidos el de mayo siguiente contra la Rep\u00fablica del Ecuador en adelante el Estado o Ecuador. El escrito de solicitudes argumentos y pruebas en adelante escrito de solicitudes y ", - "values": [ - "Corte Interamericana de Derechos Humanos" - ] - }, - { - "text": "INFORME N PETICI\u00d3N ADMISIBILIDAD JORGE FONTEVECCHIA Y H\u00c9CTOR DAMICO ARGENTINA de octubre de I. RESUMEN El de noviembre de la Comisi\u00f3n Interamericana de Derechos Humanos en adelante la Comisi\u00f3n o la CIDH recibi\u00f3 una petici\u00f3n presentada por Jorge Fontevecchia H\u00e9ctor DAmico y la Asociaci\u00f3n Periodistas en adelante los peticionarios en la que se alega la responsabilidad de la Rep\u00fablica Argentina en adelante el Estado Argentino Argentina o el Estado por la violaci\u00f3n de los art\u00edculos garant\u00edas", - "values": [ - "Comisi\u00f3n Interamericana de Derechos Humanos" - ] - }, - { - "text": "Resoluci\u00f3n de la Corte Interamericana de Derechos Humanos de de febrero de Medidas Provisionales respecto de Colombia Asunto de la Comunidad de Paz de San Jos\u00e9 de Apartad\u00f3 VISTOS Las Resoluciones de la Corte Interamericana de Derechos Humanos en adelante la Corte Interamericana la Corte o el Tribunal de de noviembre de de junio de de noviembre de de marzo de y de febrero de Las audiencias p\u00fablicas celebradas en la sede de la Corte Interamericana el de noviembre de el de junio ", - "values": [ - "Corte Interamericana de Derechos Humanos" - ] - }, - { - "text": "Resoluci\u00f3n de la Corte Interamericana de Derechos Humanos de de Febrero de Medidas provisionales respecto de Colombia Caso Caballero Delgado y Santana vs. Colombia VISTO Las Sentencias de fondo y de reparaciones y costas dictadas en el caso Caballero Delgado y Santana por la Corte Interamericana de Derechos Humanos en adelante la Corte la Corte Interamericana o El Tribunal el de diciembre de y el de enero de Las Resoluciones de la Corte Interamericana sobre medidas provisionales de de ", - "values": [ - "Corte Interamericana de Derechos Humanos" - ] - }, - { - "text": "RESOLUCI\u00d3N DE LA CORTE INTERAMERICANA DE DERECHOS HUMANOS DE DE SEPTIEMBRE DE CASO LORI BERENSON MEJ\u00cdA VS. PER\u00da RESOLUCI\u00d3N DE CUMPLIMIENTO DE SENTENCIA VISTO La Sentencia de fondo reparaciones y costas emitida el de noviembre de en adelante la Sentencia por la Corte Interamericana de Derechos Humanos en adelante la Corte la Corte Interamericana o el Tribunal mediante la cual el Tribunal declar\u00f3 inter alia por unanimidad que el Estado viol\u00f3 el derecho a la integridad personal consagrado en", - "values": [ - "Corte Interamericana de Derechos Humanos" - ] - }, - { - "text": "RESOLUCI\u00d3N DE LA CORTE INTERAMERICANA DE DERECHOS HUMANOS DE DE SEPTIEMBRE DE CASO IVCHER BRONSTEIN VS. PERU SUPERVISI\u00d3N DE CUMPLIMIENTO DE SENTENCIA VISTOS La Sentencia dictada en el presente caso por la Corte Interamericana de Derechos Humanos en adelante la Corte la Corte Interamericana o el Tribunal el de febrero de en la que dispuso inter alia que el Estado debe investigar los hechos que generaron las violaciones establecidas en la Sentencia para identificar y sancionar a los de ", - "values": [ - "Corte Interamericana de Derechos Humanos" - ] - }, - { - "text": "RESOLUCI\u00d3N DE LA CORTE INTERAMERICANA DE DERECHOS HUMANOS DE DE OCTUBRE DE MEDIDAS PROVISIONALES RESPECTO DE LA REP\u00daBLICA DE COLOMBIA CASO GUTI\u00c9RREZ SOLER VISTO Las Resoluciones de la Corte Interamericana de Derechos Humanos en adelante la Corte Interamericana la Corte o el Tribunal de de marzo de mediante la cual se ordenaron medidas provisionales en el presente caso. La Sentencia de fondo reparaciones y costas emitida por la Corte Interamericana el de septiembre de en este caso la ", - "values": [ - "Corte Interamericana de Derechos Humanos" - ] - }, - { - "text": "RESOLUCI\u00d3N DE LA CORTE INTERAMERICANA DE DERECHOS HUMANOS DE DE MAYO DE CASO BAENA RICARDO Y OTROS VS. PANAM\u00c1 SUPERVISI\u00d3N DE CUMPLIMIENTO DE SENTENCIA VISTO La Sentencia de fondo reparaciones y costas emitida el de febrero de en adelante la Sentencia por la Corte Interamericana de Derechos Humanos en adelante la Corte Interamericana la Corte o el Tribunal. Las resoluciones de supervisi\u00f3n de cumplimiento de la Sentencia emitidas por la Corte Interamericana el de junio de el de noviembre", - "values": [ - "Corte Interamericana de Derechos Humanos" - ] - }, - { - "text": "RESOLUCI\u00d3N DE LA CORTE INTERAMERICANA DE DERECHOS HUMANOS DE DE NOVIEMBRE DE CASO APITZ BARBERA Y OTROS CORTE PRIMERA DE LO CONTENCIOSO ADMINISTRATIVO VS. VENEZUELA SUPERVISI\u00d3N DE CUMPLIMIENTO DE SENTENCIA VISTO La Sentencia de excepci\u00f3n preliminar fondo reparaciones y costas en adelante la Sentencia dictada por la Corte Interamericana de Derechos Humanos en adelante la Corte la Corte Interamericana o el Tribunal el de agosto de mediante la cual dispuso que El Estado debe realizar los ", - "values": [ - "Corte Interamericana de Derechos Humanos" - ] - }, - { - "text": "Resoluci\u00f3n de la Corte Interamericana de Derechos Humanos de de noviembre de Caso Trabajadores Cesados del Congreso Aguado Alfaro y otros vs. Per\u00fa Supervisi\u00f3n de Cumplimiento de Sentencia Visto La Sentencia de excepciones preliminares fondo reparaciones y costas en adelante la Sentencia dictada por la Corte Interamericana de Derechos Humanos en adelante la Corte la Corte Interamericana o el Tribunal el de noviembre de en el caso Trabajadores Cesados del Congreso vs. Per\u00fa mediante la cual ", - "values": [ - "Corte Interamericana de Derechos Humanos" - ] - }, - { - "text": "CORTE INTERAMERICANA DE DERECHOS HUMANOS COMUNIDAD GAR\u00cdFUNA TRIUNFO DE LA CRUZ Y SUS MIEMBROS VS. HONDURAS SENTENCIA DE DE OCTUBRE DE Fondo Reparaciones y Costas En el Caso Comunidad Gar\u00edfuna Triunfo de la Cruz y sus miembros la Corte Interamericana de Derechos Humanos en adelante la Corte Interamericana la Corte o el Tribunal integrada por los siguientes Jueces Humberto Antonio Sierra Porto Presidente Roberto F. Caldas Vicepresidente Manuel E. Ventura Robles Juez Diego Garc\u00edaSay\u00e1n Juez ", - "values": [ - "Corte Interamericana de Derechos Humanos" - ] - }, - { - "text": "INFORME N\u00ba PETICI\u00d3N ADMISIBILIDAD IN\u00c9S FERN\u00c1NDEZ ORTEGA Y OTROS M\u00c9XICO de octubre de I. RESUMEN El de junio de la Comisi\u00f3n Interamericana de Derechos Humanos la Comisi\u00f3n Interamericana o la CIDH recibi\u00f3 una denuncia en la que se alega la responsabilidad internacional de los Estados Unidos Mexicanos el Estado el estado mexicano por la detenci\u00f3n ilegal violaci\u00f3n y tortura en agravio de In\u00e9s Fern\u00e1ndez Ortega presunta v\u00edctima ind\u00edgena del pueblo Tlapaneca Mepaa as\u00ed como la posterior falta de", - "values": [ - "Comisi\u00f3n Interamericana de Derechos Humanos" - ] - }, - { - "text": "RESOLUCI\u00d3N DEL PRESIDENTE DE LA CORTE INTERAMERICANA DE DERECHOS HUMANOS MEDIDAS PROVISIONALES SOLICITADAS POR LA COMISI\u00d3N INTERAMERICANA DE DERECHOS HUMANOS RESPECTO DE LA REP\u00daBLICA DE COLOMBIA CASO GIRALDO CARDONA DE MARZO DE VISTOS La resoluci\u00f3n de Corte de de febrero de mediante la cual convoca al Gobierno de Colombia y a la Comisi\u00f3n Interamericana de Derechos Humanos para que por medio de sus representantes concurran a una audiencia p\u00fablica el de abril de a las horas. La del de ", - "values": [ - "Corte Interamericana de Derechos Humanos" - ] - }, - { - "text": "RESOLUCI\u00d3N DE LA CORTE INTERAMERICANA DE DERECHOS HUMANOS DEL DE JULIO DE MEDIDAS PROVISIONALES SOLICITADAS POR LA COMISI\u00d3N INTERAMERICANA DE DERECHOS HUMANOS RESPECTO DE GUATEMALA CASO CHUNIMA LA CORTE INTERAMERICANA DE DERECHOS HUMANOS VISTOS La resoluci\u00f3n del Presidente de la Corte Interamericana de Derechos Humanos de de julio de sobre medidas provisionales solicitadas por la Comisi\u00f3n Interamericana de Derechos Humanos respecto de Guatemala La convocatoria a una audiencia p\u00fablica para", - "values": [ - "Corte Interamericana de Derechos Humanos" - ] - }, - { - "text": "RESOLUCI\u00d3N DE LA CORTE INTERAMERICANA DE DERECHOS HUMANOS DE DE NOVIEMBRE DE SOLICITUD DE MEDIDAS PROVISIONALES RESPECTO DE GUATEMALA A FAVOR DE LOS INTEGRANTES DEL EQUIPO DE ESTUDIOS COMUNITARIOS Y ACCI\u00d3N PSICOSOCIAL ECAP CASO MASACRE PLAN DE S\u00c1NCHEZ VISTO El escrito de de octubre de y sus anexos mediante los cuales el Centro para la Acci\u00f3n Legal en Derechos Humanos en adelante CALDH o los representantes someti\u00f3 a la Corte Interamericana de Derechos Humanos en adelante la Corte o el de ", - "values": [ - "Corte Interamericana de Derechos Humanos" - ] - }, - { - "text": "RESOLUC\u00cdON DEL PRESIDENTE DE LA CORTE INTERAMERICANA DE DERECHOS HUMANOS DE DE MAYO DE MEDIDAS PROVISIONALES SOLICITADAS POR LA COMISI\u00d3N INTERAMERICANA DE DERECHOS HUMANOS RESPECTO DE LA REP\u00daBLICA DE TRINIDAD Y TOBAGO CASOS JAMES BRIGGS NOEL GARC\u00cdA Y BETHEL VISTOS El escrito de la Comisi\u00f3n Interamericana de Derechos Humanos en adelante la Comisi\u00f3n de de mayo de y sus anexos mediante el cual someti\u00f3 ante la Corte Interamericana de Derechos Humanos en adelante la Corte de acuerdo con los ", - "values": [ - "Corte Interamericana de Derechos Humanos" - ] - }, - { - "text": "Resoluci\u00f3n de la Presidenta de la Corte Interamericana de Derechos Humanos de de diciembre de Convocatoria a Audiencia Privada Supervisi\u00f3n de Cumplimiento de Sentencia y Solicitud de adopci\u00f3n de Medidas Provisionales Caso De La Cruz Flores Vs. Per\u00fa Visto A Supervisi\u00f3n de cumplimiento de Sentencia La Sentencia de fondo reparaciones y costas en adelante la Sentencia emitida en el presente caso por la Corte Interamericana de Derechos Humanos en adelante la Corte la Corte Interamericana o el el", - "values": [ - "Corte Interamericana de Derechos Humanos" - ] - }, - { - "text": "RESOLU\u00c7\u00c3O DO PRESIDENTE EM EXERC\u00cdCIO DA CORTE INTERAMERICANA DE DIREITOS HUMANOS DE DE AGOSTO DE CASO COSME ROSA GENOVEVA E OUTROS FAVELA NOVA BRAS\u00cdLIA VS. BRASIL CONVOCAT\u00d3RIA A AUDI\u00caNCIA VISTO O escrito de submiss\u00e3o do caso e o Relat\u00f3rio de M\u00e9rito da Comiss\u00e3o Interamericana de Direitos Humanos doravante denominada a Comiss\u00e3o Interamericana ou a Comiss\u00e3o o escrito de peti\u00e7\u00f5es argumentos e provas doravante denominado escrito de peti\u00e7\u00f5es e argumentos dos representantes das supostas v\u00edtimas ", - "values": [ - "Corte Interamericana de Derechos Humanos" - ] - }, - { - "text": "RESOLUCI\u00d3N DEL PRESIDENTE DE LA CORTE INTERAMERICANA DE DERECHOS HUMANOS DE DE ENERO DE SOLICITUD DE MEDIDAS PROVISIONALES DE LA COMISI\u00d3N INTERAMERICANA DE DERECHOS HUMANOS RESPECTO DE LOS ESTADOS UNIDOS MEXICANOS CASO GALLARDO RODR\u00cdGUEZ VISTOS El escrito de la Comisi\u00f3n Interamericana de Derechos Humanos en adelante la Comisi\u00f3n o la Comisi\u00f3n Interamericana de de diciembre de mediante el cual present\u00f3 una solicitud de medidas provisionales para evitar da\u00f1os irreparables al General Jos\u00e9 ", - "values": [ - "Corte Interamericana de Derechos Humanos" - ] - }, - { - "text": "CORTE INTERAMERICANA DE DERECHOS HUMANOS CASO US\u00d3N RAM\u00cdREZ VS. VENEZUELA SENTENCIA DE DE NOVIEMBRE DE Excepci\u00f3n Preliminar Fondo Reparaciones y Costas En el caso Us\u00f3n Ram\u00edrez la Corte Interamericana de Derechos Humanos en adelante la Corte Interamericana la Corte o el Tribunal integrada por los siguientes jueces Diego Garc\u00edaSay\u00e1n Presidente en Ejercicio Sergio Garc\u00eda Ram\u00edrez Juez Manuel E. Ventura Robles Juez Margarette May Macaulay Jueza y Rhadys Abreu Blondet Jueza presentes adem\u00e1s Pablo ", - "values": [ - "Corte Interamericana de Derechos Humanos" - ] - }, - { - "text": "Corte Interamericana de Derechos Humanos Caso Almonacid Arellano y otros Vs. Chile Sentencia de de septiembre de Excepciones Preliminares Fondo Reparaciones y Costas En el caso Almonacid Arellano y otros la Corte Interamericana de Derechos Humanos en adelante la Corte Interamericana la Corte o el Tribunal integrada por los siguientes jueces Sergio Garc\u00eda Ram\u00edrez Presidente Alirio Abreu Burelli Vicepresidente Ant\u00f4nio A. Can\u00e7ado Trindade Juez Manuel E. Ventura Robles Juez y Diego Garc\u00edaSay\u00e1n ", - "values": [ - "Corte Interamericana de Derechos Humanos" - ] - }, - { - "text": "RESOLUCI\u00d3N DEL PRESIDENTE DE LA CORTE INTERAMERICANA DE DERECHOS HUMANOS DE DE MARZO DE CASO ZULEMA TARAZONA ARRIETA Y OTROS VS PER\u00da VISTO El escrito de sometimiento del caso presentado por la Comisi\u00f3n Interamericana de Derechos Humanos en adelante la Comisi\u00f3n Interamericana o la Comisi\u00f3n ante la Corte Interamericana de Derechos Humanos en adelante la Corte Interamericana la Corte o el Tribunal el de junio de mediante el cual remiti\u00f3 el Informe de Fondo No. y ofreci\u00f3 un dictamen pericial ", - "values": [ - "Corte Interamericana de Derechos Humanos" - ] - }, - { - "text": "RESOLUCI\u00d3N DEL PRESIDENTE DE LA CORTE INTERAMERICANA DE DERECHOS HUMANOS DE DE MARZO DE SOLICITUD PRESENTADA POR LAS PRESUNTAS V\u00cdCTIMAS CASO CONTRERAS Y OTROS VS. EL SALVADOR VISTO El escrito de de junio de y sus anexos mediante los cuales la Comisi\u00f3n Interamericana de Derechos Humanos en adelante la Comisi\u00f3n Interamericana o la Comisi\u00f3n present\u00f3 a la Corte Interamericana de Derechos Humanos en adelante la Corte Interamericana la Corte o el Tribunal una demanda en contra de la Rep\u00fablica de", - "values": [ - "Corte Interamericana de Derechos Humanos" - ] - }, - { - "text": "RESOLUCI\u00d3N DE LA CORTE INTERAMERICANA DE DERECHOS HUMANOS DE DE FEBRERO DE CASO CANTORAL HUAMAN\u00cd Y GARC\u00cdA SANTA CRUZ VS. PER\u00da SUPERVISI\u00d3N DE CUMPLIMIENTO DE SENTENCIA VISTO La Sentencia de excepci\u00f3n preliminar fondo reparaciones y costas en adelante tambi\u00e9n la Sentencia dictada por la Corte Interamericana de Derechos Humanos en adelante la Corte Interamericana la Corte o el Tribunal el de julio de mediante la cual dispuso que El Estado debe investigar inmediatamente los hechos que las ", - "values": [ - "Corte Interamericana de Derechos Humanos" - ] - }, - { - "text": "VOTO CONCURRENTE DE DIEGO GARCIASAY\u00c1N EN EL CASO M\u00c9MOLI VS. ARGENTINA En esta Sentencia la Corte Interamericana reafirma y desarrolla su jurisprudencia constante en materia de libertad de expresi\u00f3n a trav\u00e9s de la cual la Corte ha enfatizado reiteradamente la significaci\u00f3n y amplio contenido de dicho derecho fundamental. En tal sentido la Corte recuerda p\u00e1rr. entre otros aspectos que el derecho a la libertad de pensamiento y de expresi\u00f3n consagrado en el art\u00edculo de la Convenci\u00f3n tiene entre ", - "values": [ - "Corte Interamericana de Derechos Humanos" - ] - }, - { - "text": "RESOLUCI\u00d3N DE LA PRESIDENTA DE LA CORTE INTERAMERICANA DE DERECHOS HUMANOS DE DE NOVIEMBRE DE CASO CARPIO NICOLLE Y OTROS VS. GUATEMALA SOLICITUD DE LEVANTAMIENTO DE MEDIDAS PROVISIONALES SUPERVISI\u00d3N DE CUMPLIMIENTO DE SENTENCIA Vistos A Solicitud de levantamiento de medidas provisionales Las Resoluciones del Presidente de la Corte Interamericana de Derechos Humanos en adelante el Presidente de de junio y de julio de y las Resoluciones de la Corte Interamericana de Derechos Humanos en la", - "values": [ - "Corte Interamericana de Derechos Humanos" - ] - }, - { - "text": "RESOLUCI\u00d3N DEL PRESIDENTE EN FUNCIONES DE LA CORTE INTERAMERICANA DE DERECHOS HUMANOS DE FEBRERO DE CASO HERMANOS LANDAETA MEJIAS VS. VENEZUELA VISTO El escrito de la Rep\u00fablica Bolivariana de Venezuela en adelante el Estado o Venezuela recibido el de enero de en la Corte Interamericana de Derechos Humanos en adelante la Corte Interamericana la Corte o el Tribunal. La nota de fecha de febrero de dirigidas al suscrito por los Jueces Diego Garc\u00edaSay\u00e1n y Manuel E. Ventura Robles en las ", - "values": [ - "Corte Interamericana de Derechos Humanos" - ] - }, - { - "text": "Resoluci\u00f3n de la Corte Interamericana de Derechos Humanos del de abril del Medidas Provisionales respecto de la Rep\u00fablica de Trinidad y Tobago Asunto James y otros VISTOS La Resoluci\u00f3n la Corte Interamericana de Derechos Humanos en adelante la Corte Interamericana o la Corte del de junio de en la que resolvi\u00f3 inter alia Ordenar a Trinidad y Tobago que tome todas las medidas necesarias para preservar la vida e integridad personal de los se\u00f1ores Wenceslaus James Anthony Briggs Anderson Noel", - "values": [ - "Corte Interamericana de Derechos Humanos" - ] - }, - { - "text": "RESOLUCI\u00d3N DE LA CORTE INTERAMERICANA DE DERECHOS HUMANOS DE DE AGOSTO DE CASO ALB\u00c1N CORNEJO Y OTROS VS. ECUADOR SUPERVISI\u00d3N DE CUMPLIMIENTO DE SENTENCIA VISTO La Sentencia de fondo reparaciones y costas en adelante la Sentencia o el Fallo dictada por la Corte Interamericana de Derechos Humanos en adelante la Corte Interamericana la Corte o el Tribunal el de noviembre de En dicho Fallo la Corte declar\u00f3 la responsabilidad internacional de la Rep\u00fablica del Ecuador en adelante el Estado o ", - "values": [ - "Corte Interamericana de Derechos Humanos" - ] - }, - { - "text": "INFORME N\u00ba PETICI\u00d3N ADMISIBILIDAD LOS PUEBLOS KALI\u0147A Y LOKONO SURINAME de octubre de I. RESUMEN El de febrero de la Comisi\u00f3n Interamericana de Derechos Humanos en adelante la Comisi\u00f3n o la CIADH recibi\u00f3 una petici\u00f3n presentada en nombre de los pueblos ind\u00edgenas Kalina y Lokono del Bajo Marowijne en adelante las presuntas v\u00edctimas o los pueblos de Kalina y Lokono o los pueblos del Bajo Marowijne contra la Rep\u00fablica de Suriname Suriname o el Estado. La petici\u00f3n fue presentada conjuntamente", - "values": [ - "Comisi\u00f3n Interamericana de Derechos Humanos" - ] - }, - { - "text": "VOTO PARCIALMENTE DISIDENTE DE LA JUEZA CECILIA MEDINA QUIROGA Estoy de acuerdo con el voto disidente del juez Diego Rodr\u00edguezPinz\u00f3n. No es \u00e9sta la primera vez que disiento de la Corte en relaci\u00f3n con la posible violaci\u00f3n conjunta de los art\u00edculos y y he dado en esas ocasiones razones similares a las expresadas en el voto del juez Rodr\u00edguez. En esta ocasi\u00f3n sin embargo quisiera aclarar mi posici\u00f3n respecto del art\u00edculo Al hacer un voto disidente en un caso particular he procurado s\u00f3lo al", - "values": [ - "Corte Interamericana de Derechos Humanos" - ] - }, - { - "text": "Resoluci\u00f3n de la Corte Interamericana de Derechos Humanos De de noviembre de Caso Trujillo Oroza Vs. Bolivia Cumplimiento de Sentencia VISTOS La Sentencia de fondo dictada por la Corte Interamericana de Derechos Humanos en adelante la Corte la Corte Interamericana o el Tribunal el de enero de La Sentencia de reparaciones y costas dictada por la Corte Interamericana el de febrero de La Resoluci\u00f3n emitida por la Corte el de noviembre de en la cual declar\u00f3 Que de conformidad con lo en", - "values": [ - "Corte Interamericana de Derechos Humanos" - ] - }, - { - "text": "RESOLUCI\u00d3N DE LA CORTE INTERAMERICANA DE DERECHOS HUMANOS DE DE MAYO DE MEDIDAS PROVISIONALES RESPECTO DE LOS ESTADOS UNIDOS MEXICANOS ASUNTO ALVARADO REYES Y OTROS VISTO Las Resoluciones dictadas por la Corte Interamericana de Derechos Humanos en adelante la Corte Interamericana la Corte o el Tribunal el de mayo y de noviembre de mediante las cuales el Tribunal orden\u00f3 medidas provisionales y supervis\u00f3 su ejecuci\u00f3n en el presente asunto. En esta \u00faltima la Corte resolvi\u00f3 inter alia al ", - "values": [ - "Corte Interamericana de Derechos Humanos" - ] - }, - { - "text": "CORTE INTERAMERICANA DE DERECHOS HUMANOS CASO DEFENSOR DE DERECHOS HUMANOS Y OTROS VS. GUATEMALA SENTENCIA DE DE AGOSTO DE Excepciones Preliminares Fondo Reparaciones y Costas En el caso Defensor de derechos humanos y otros la Corte Interamericana de Derechos Humanos en adelante la Corte Interamericana la Corte o el Tribunal integrada por los siguientes jueces Humberto Antonio Sierra Porto Presidente Roberto F. Caldas Vicepresidente Manuel E. Ventura Robles Juez Eduardo Vio Grossi Juez y ", - "values": [ - "Corte Interamericana de Derechos Humanos" - ] - }, - { - "text": "RESOLUCI\u00d3N DE LA CORTE INTERAMERICANA DE DERECHOS HUMANOS DE DE SEPTIEMBRE DE CASO MARITZA URRUTIA VS. GUATEMALA SUPERVISI\u00d3N DE CUMPLIMIENTO DE SENTENCIA VISTOS La Sentencia de fondo y reparaciones dictada en el presente caso por la Corte Interamericana de Derechos Humanos en adelante la Corte la Corte Interamericana o el Tribunal el de noviembre de en la que dispuso inter alia que el Estado debe investigar efectivamente los hechos en el presente caso que generaron las violaciones de la ", - "values": [ - "Corte Interamericana de Derechos Humanos" - ] - }, - { - "text": "INFORME N\u00ba PETICI\u00d3N ADMISIBILIDAD BENITO TIDE M\u00c9NDEZ ANTONIO SENSI\u00d3N ANDREA ALEZI JANTY FILSAIME WILLIAM MEDINA FERRERAS RAFAELITO P\u00c9REZ CHARLES BERSON GELIM Y OTROS REP\u00daBLICA DOMINICANA de octubre de I. RESUMEN El de noviembre de la Comisi\u00f3n Interamericana de Derechos Humanos en adelante la Comisi\u00f3n o la CIDH recibi\u00f3 una petici\u00f3n presentada por la Cl\u00ednica de Derechos Humanos de la Escuela de Derecho de la Universidad de Berkeley de CaliforniaBoat Hall el Centro por la Justicia y el y", - "values": [ - "Comisi\u00f3n Interamericana de Derechos Humanos" - ] - }, - { - "text": "RESOLUCI\u00d3N DE LA CORTE INTERAMERICANA DE DERECHOS HUMANOS DE DE JUNIO DE CASO BAENA RICARDO Y OTROS VS. PANAM\u00c1 SUPERVISI\u00d3N DE CUMPLIMIENTO DE SENTENCIA VISTO La Sentencia de fondo reparaciones y costas emitida el de febrero de en adelante la Sentencia por la Corte Interamericana de Derechos Humanos en adelante la Corte Interamericana la Corte o el Tribunal. Las Resoluciones de supervisi\u00f3n de cumplimiento de la Sentencia emitidas por la Corte Interamericana el de junio y el de noviembre ", - "values": [ - "Corte Interamericana de Derechos Humanos" - ] - }, - { - "text": "RESOLUCI\u00d3N DEL PRESIDENTE DE LA CORTE INTERAMERICANA DE DERECHOS HUMANOS DE DE ENERO DE CASO CASTA\u00d1EDA GUTMAN VS. ESTADOS UNIDOS MEXICANOS SUPERVISI\u00d3N DE CUMPLIMIENTO DE SENTENCIA CONVOCATORIA DE AUDIENCIA P\u00daBLICA VISTO La Sentencia de excepciones preliminares fondo reparaciones y costas en adelante la Sentencia de de agosto de dictada por la Corte Interamericana de Derechos Humanos en adelante la Corte Interamericana la Corte o el Tribunal. La Resoluci\u00f3n de supervisi\u00f3n de cumplimiento de", - "values": [ - "Corte Interamericana de Derechos Humanos" - ] - }, - { - "text": "RESOLUCI\u00d3N DE LA CORTE INTERAMERICANA DE DERECHOS HUMANOS DE DE AGOSTO DE AMPLIACI\u00d3N DE MEDIDAS PROVISIONALES SOLICITADA POR LA COMISI\u00d3N INTERAMERICANA DE DERECHOS HUMANOS RESPECTO DE LA REP\u00daBLICA DE COLOMBIA CASO \u00c1LVAREZ Y OTROS VISTOS La resoluci\u00f3n del Presidente de la Corte Interamericana de Derechos Humanos en adelante el Presidente de de julio de en cuya parte dispositiva decidi\u00f3 Requerir a la Rep\u00fablica de Colombia que adopte sin dilaci\u00f3n cuantas medidas sean necesarias para proteger", - "values": [ - "Corte Interamericana de Derechos Humanos" - ] - }, - { - "text": "Resoluci\u00f3n de la Corte Interamericana de Derechos Humanos de de noviembre de Medidas Provisionales Respecto de la Rep\u00fablica Bolivariana de Venezuela Asunto del Centro Penitenciario Regi\u00f3n Capital Yare I y Yare II C\u00e1rcel de Yare VISTO La Resoluci\u00f3n de la Corte Interamericana de Derechos Humanos en adelante la Corte Interamericana la Corte o el Tribunal de de marzo de mediante la cual decidi\u00f3 inter alia requerir al Estado que adopte de forma inmediata las medidas necesarias para evitar en ", - "values": [ - "Corte Interamericana de Derechos Humanos" - ] - }, - { - "text": "RESOLUCI\u00d3N DE LA CORTE INTERAMERICANA DE DERECHOS HUMANOS DE DE JUNIO DE MEDIDAS PROVISIONALES CASO PUEBLO IND\u00cdGENA DE SARAYAKU VISTOS El escrito de la Comisi\u00f3n Interamericana de Derechos Humanos en adelante la Comisi\u00f3n o la Comisi\u00f3n Interamericana de de junio de mediante el cual someti\u00f3 a la Corte Interamericana de Derechos Humanos en adelante la Corte o la Corte Interamericana de acuerdo con los art\u00edculos de la Convenci\u00f3n Americana sobre Derechos Humanos en adelante la Convenci\u00f3n o la ", - "values": [ - "Corte Interamericana de Derechos Humanos" - ] - }, - { - "text": "RESOLUCI\u00d3N DE LA CORTE INTERAMERICANA DE DERECHOS HUMANOS DE DE NOVIEMBRE DE MEDIDAS PROVISIONALES RESPECTO DE LA REP\u00daBLICA ARGENTINA ASUNTO FLORES Y OTRA EN RELACI\u00d3N CON EL CASO TORRES MILLACURA Y OTROS VS. ARGENTINA VISTO La Resoluci\u00f3n del Presidente de la Corte Interamericana de Derechos Humanos en adelante la Corte Interamericana la Corte o el Tribunal de de junio de as\u00ed como las Resoluciones del Tribunal de de julio de de febrero de de noviembre de de noviembre de y de de ", - "values": [ - "Corte Interamericana de Derechos Humanos" - ] - }, - { - "text": "INFORME N\u00ba CASO NARCISO GONZ\u00c1LEZ REP\u00daBLICA DOMINICANA de marzo de I. ANTECEDENTES El \u00ba de julio de la Comisi\u00f3n Interamericana de Derechos Humanos recibi\u00f3 una petici\u00f3n en la que se denuncia la presunta detenci\u00f3n y desaparici\u00f3n del Sr. Narciso Gonz\u00e1lez perpetradas por agentes de la Rep\u00fablica Dominicana. La Comisi\u00f3n inici\u00f3 la tramitaci\u00f3n del caso de acuerdo a sus disposiciones reglamentarias y como parte de su procedimiento escuch\u00f3 a las partes en audiencia dentro del marco de soluci\u00f3n el ", - "values": [ - "Comisi\u00f3n Interamericana de Derechos Humanos" - ] - }, - { - "text": "RESOLUCI\u00d3N DEL PRESIDENTE DE LA CORTE INTERAMERICANA DE DERECHOS HUMANOS DEL DE JUNIO DE MEDIDAS PROVISIONALES SOLICITADAS POR LA COMISI\u00d3N INTERAMERICANA DE DERECHOS HUMANOS RESPECTO DE LA REPUBLICA DE GUATEMALA CASO CARPIO NICOLLE VISTO El escrito del de junio de recibido en la Secretar\u00eda de la Corte ese mismo d\u00eda mediante el cual la Comisi\u00f3n Interamericana de Derechos Humanos en adelante la Comisi\u00f3n o la Comisi\u00f3n Interamericana somete a la Corte Interamericana de Derechos Humanos en la ", - "values": [ - "Corte Interamericana de Derechos Humanos" - ] - }, - { - "text": "RESOLUCI\u00d3N DE LA CORTE INTERAMERICANA DE DERECHOS HUMANOS DE DE JULIO DE MEDIDAS PROVISIONALES ORDENADAS POR LA CORTE INTERAMERICANA DE DERECHOS HUMANOS RESPECTO DE GUATEMALA CASO COLOTENANGO VISTOS La Resoluci\u00f3n de la Corte Interamericana de Derechos Humanos en adelante la Corte o la Corte Interamericana de de junio de mediante la cual inter alia Requiri\u00f3 al Gobierno de Guatemala que adoptase sin dilaci\u00f3n cuantas medidas fuesen necesarias para proteger el derecho a la vida e integridad ", - "values": [ - "Corte Interamericana de Derechos Humanos" - ] - }, - { - "text": "VOTO CONCURRENTE RAZONADO DEL JUEZ SERGIO GARC\u00cdA RAM\u00cdREZ A LA SENTENCIA DEL CASO MACK CHANG VS. GUATEMALA DEL DE NOVIEMBRE DE I. LA JURISPRUDENCIA DE LA CORTEINTERAMERICANA Y EL CASO MACK CHANG La Corte Interamericana de Derechos Humanos ha tenido oportunidad de pronunciarse desde que se inici\u00f3 el ejercicio de su competencia contenciosa sobre violaciones del derecho a la vida cometidas por agentes de un Estado mediante ejecuciones extrajudiciales. Esta materia todav\u00eda se encuentra presente ", - "values": [ - "Corte Interamericana de Derechos Humanos" - ] - }, - { - "text": "RESOLUCI\u00d3N DEL PRESIDENTE DE LA CORTE INTERAMERICANA DE DERECHOS HUMANOS DE DE OCTUBRE DE MEDIDAS URGENTES DE AMPLIACI\u00d3N CASO LUISIANA R\u00cdOS Y OTROS VS. VENEZUELA VISTOS La Resoluci\u00f3n de la Corte Interamericana de Derechos Humanos en adelante la Corte Interamericana la Corte o el Tribunal de de noviembre de mediante la cual resolvi\u00f3 Requerir al Estado que adoptara sin dilaci\u00f3n cuantas medidas fueran necesarias para proteger la vida e integridad personal de Luisiana R\u00edos Armando Amaya Jos\u00e9", - "values": [ - "Corte Interamericana de Derechos Humanos" - ] - }, - { - "text": "RESOLUCI\u00d3N DE LA CORTE INTERAMERICANA DE DERECHOS HUMANOS DE DE ENERO DE REINTEGRO AL FONDO DE ASISTENCIA LEGAL DE V\u00cdCTIMAS CASO FAMILIA PACHECO TINEO VS. BOLIVIA VISTO La Sentencia de excepciones preliminares fondo reparaciones y costas en adelante la Sentencia o el Fallo dictada por la Corte Interamericana de Derechos Humanos en adelante la Corte la Corte Interamericana o el Tribunal el de noviembre de la cual fue notificada el de diciembre de En el punto dispositivo d\u00e9cimo de dicho ", - "values": [ - "Corte Interamericana de Derechos Humanos" - ] - }, - { - "text": "Resoluci\u00f3n de la Presidenta de la Corte Interamericana de Derechos Humanos de de agosto de Caso Goibur\u00fa y otros Vs. Paraguay Supervisi\u00f3n de Cumplimiento de Sentencia Vistos La Sentencia de fondo reparaciones y costas de de septiembre de en adelante la Sentencia dictada por la Corte Interamericana de Derechos Humanos en adelante la Corte Interamericana la Corte o el Tribunal notificada \u00edntegramente a la Rep\u00fablica de Paraguay en adelante el Estado o Paraguay el de octubre de mediante la ", - "values": [ - "Corte Interamericana de Derechos Humanos" - ] - }, - { - "text": "CORTE INTERAMERICANA DE DERECHOS HUMANOS CASO CASTA\u00d1EDA GUTMAN VS. ESTADOS UNIDOS MEXICANOS SENTENCIA DE DE AGOSTO DE EXCEPCIONES PRELIMINARES FONDO REPARACIONES Y COSTAS En el caso Casta\u00f1eda Gutman la Corte Interamericana de Derechos Humanos en adelante la Corte Interamericana la Corte o el Tribunal integrada por los siguientes jueces Cecilia Medina Quiroga Presidenta Diego Garc\u00edaSay\u00e1n Vicepresidente Manuel E. Ventura Robles Juez Leonardo A. Franco Juez Margarette May Macaulay Jueza Rhadys ", - "values": [ - "Corte Interamericana de Derechos Humanos" - ] - }, - { - "text": "RESOLUCI\u00d3N DE LA CORTE INTERAMERICANA DE DERECHOS HUMANOS DE DE NOVIEMBRE DE CASO FLEURY Y OTROS VS. HAIT\u00cd SUPERVISI\u00d3N DE CUMPLIMIENTO DE SENTENCIA VISTO La Sentencia de fondo y reparaciones en adelante la Sentencia dictada por la Corte Interamericana de Derechos Humanos en adelante la Corte la Corte Interamericana o el Tribunal el de noviembre de respecto al caso Fleury y otros. En dicho caso la Corte declar\u00f3 responsable internacionalmente a la Rep\u00fablica de Hait\u00ed en adelante el Estado o ", - "values": [ - "Corte Interamericana de Derechos Humanos" - ] - }, - { - "text": "RESOLUCI\u00d3N DEL PRESIDENTE DE LA CORTE INTERAMERICANA DE DERECHOS HUMANOS DE DE JUNIO DE SOLICITUD DE AMPLIACI\u00d3N DE LAS MEDIDAS PROVISIONALES ADOPTADAS POR LA CORTE INTERAMERICANA DE DERECHOS HUMANOS RESPECTO DE LA REP\u00daBLICA DE TRINIDAD Y TOBAGO CASOS JAMES Y OTROS VISTOS La Resoluci\u00f3n de la Corte Interamericana de Derechos Humanos en adelante la Corte de de junio de en la cual decidi\u00f3 Ordenar a Trinidad y Tobago que tome todas las medidas necesarias para preservar la vida e integridad de", - "values": [ - "Corte Interamericana de Derechos Humanos" - ] - }, - { - "text": "INFORME N\u00ba CASO MANUEL AGUIRRE ROCA GUILLERMO REY TERRY Y DELIA REVOREDO DE MUR PER\u00da de mayo de I. ANTECEDENTES El de junio de se recibi\u00f3 ante la Comisi\u00f3n Interamericana de Derechos Humanos en adelante la Comisi\u00f3n una denuncia presentada contra de la Rep\u00fablica del Per\u00fa en adelante el Estado peruano o el Estado cuyas partes pertinentes fueron transmitidas al Estado por medio de carta de fecha de julio de solicit\u00e1ndose informaci\u00f3n sobre los hechos denunciados y en relaci\u00f3n a cualquier ", - "values": [ - "Comisi\u00f3n Interamericana de Derechos Humanos" - ] - }, - { - "text": "RESOLUCI\u00d3N DE LA CORTE INTERAMERICANA DE DERECHOS HUMANOS DE DE FEBRERO DE CASO DE LAS HERMANAS SERRANO CRUZ VS. EL SALVADOR SUPERVISI\u00d3N DE CUMPLIMIENTO DE SENTENCIA VISTO La Sentencia de fondo reparaciones y costas en adelante la Sentencia dictada por la Corte Interamericana de Derechos Humanos en adelante la Corte Interamericana la Corte o el Tribunal el de marzo de Las resoluciones de supervisi\u00f3n de cumplimiento de la Sentencia dictadas por la Corte el de septiembre de y el de julio", - "values": [ - "Corte Interamericana de Derechos Humanos" - ] - }, - { - "text": "RESOLUCI\u00d3N DEL PRESIDENTE DE LA CORTE INTERAMERICANA DE DERECHOS HUMANOS DE DE JULIO DE SOLICITUD DE MEDIDAS PROVISIONALES RESPECTO DE GUATEMALA CASO MASACRE PLAN DE S\u00c1NCHEZ Salvador Jer\u00f3nimo y Otros VISTOS La audiencia p\u00fablica celebrada los d\u00edas y de abril de ante la Corte Interamericana de Derechos Humanos en adelante la Corte Interamericana la Corte o el Tribunal en relaci\u00f3n con el caso Masacre Plan de S\u00e1nchez vs. el Estado de Guatemala en adelante el Estado o Guatemala en la cual ", - "values": [ - "Corte Interamericana de Derechos Humanos" - ] - }, - { - "text": "VOTO CONCURRENTE DEL JUEZ SERGIO GARC\u00cdA RAM\u00cdREZ A LA SENTENCIA DE LA CORTE INTERAMERICANA DE DERECHOS HUMANOS EN EL CASO BLANCO ROMERO Y OTROS VS. VENEZUELA DE DE NOVIEMBRE DE En este caso la Corte Interamericana examin\u00f3 entre otros extremos la obligaci\u00f3n del Estado de adecuar su legislaci\u00f3n a la Convenci\u00f3n Interamericana sobre Desaparici\u00f3n Forzada de Personas del de junio de La adecuaci\u00f3n se refiere a la descripci\u00f3n que hace el art\u00edculo II de aquel instrumento acerca de la desaparici\u00f3n ", - "values": [ - "Corte Interamericana de Derechos Humanos" - ] - }, - { - "text": "RESOLUCI\u00d3N DE LA CORTE INTERAMERICANA DE DERECHOS HUMANOS DE DE DICIEMBRE DE CASO RADILLA PACHECO VS. ESTADOS UNIDOS MEXICANOS SUPERVISI\u00d3N DE CUMPLIMIENTO DE SENTENCIA VISTO La Sentencia de excepciones preliminares fondo reparaciones y costas en adelante la Sentencia dictada por la Corte Interamericana de Derechos Humanos en adelante la Corte Interamericana la Corte o el Tribunal el de noviembre de La Resoluci\u00f3n de Supervisi\u00f3n de Cumplimiento de Sentencia emitida por el Tribunal el de ", - "values": [ - "Corte Interamericana de Derechos Humanos" - ] - }, - { - "text": "Corte Interamericana de Derechos Humanos Caso de las Hermanas Serrano Cruz Vs. El Salvador Sentencia de de noviembre de Excepciones Preliminares En el caso de las Hermanas Serrano Cruz la Corte Interamericana de Derechos Humanos en adelante la Corte Interamericana la Corte o el Tribunal integrada por los siguientes jueces Sergio Garc\u00eda Ram\u00edrez Presidente Alirio Abreu Burelli Vicepresidente Oliver Jackman Juez Ant\u00f4nio A. Can\u00e7ado Trindade Juez Cecilia Medina Quiroga Jueza Manuel E. Ventura ", - "values": [ - "Corte Interamericana de Derechos Humanos" - ] - }, - { - "text": "RESOLUCI\u00d3N DE LA CORTE INTERAMERICANA DE DERECHOS HUMANOS DE DE NOVIEMBRE DE SOLICITUD DE MEDIDAS PROVISIONALES PRESENTADA POR LA COMISI\u00d3N INTERAMERICANA DE DERECHOS HUMANOS RESPECTO DE COLOMBIA ASUNTO DE LA COMISI\u00d3N INTERECLESIAL DE JUSTICIA Y PAZ VISTO El escrito de la Comisi\u00f3n Interamericana de Derechos Humanos en adelante la Comisi\u00f3n Interamericana o la Comisi\u00f3n de de abril de y sus anexos mediante los cuales someti\u00f3 a la Corte Interamericana de Derechos Humanos en adelante la Corte ", - "values": [ - "Corte Interamericana de Derechos Humanos" - ] - }, - { - "text": "Resoluci\u00f3n de la Corte Interamericana De Derechos Humanos de de abril de Caso de la Comunidad Mayagna Sumo Awas Tingni Vs. Nicaragua Supervisi\u00f3n de Cumplimiento de Sentencia VISTO La Sentencia de fondo reparaciones y costas de de agosto de en adelante la Sentencia emitida por la Corte Interamericana de Derechos Humanos en adelante la Corte Interamericana la Corte o el Tribunal mediante la cual dispuso que el Estado deb\u00eda delimitar demarcar y titular las tierras que corresponden a los ", - "values": [ - "Corte Interamericana de Derechos Humanos" - ] - }, - { - "text": "CONCURRING OPINION OF JUDGE AA. CAN\u00c7ADO TRINDADE I have voted in favor of this judgment that the InterAmerican Court of Human Rights has just adopted in Maritza Urrutia v. Guatemala and in this Separate Opinion I would like to add some brief personal observations in firm support of the Courts characterization of the absolute prohibition of torture in all its forms including psychological as belonging to the sphere of international jus cogens. This characterization is rooted in the evolution ", - "values": [ - "Corte Interamericana de Derechos Humanos" - ] - }, - { - "text": "VOTO CONCURRENTE DEL JUEZ DE ROUX RENGIFO Debo en primer lugar poner de presente ciertas consideraciones que guardan relaci\u00f3n con lo planteado por la sentencia que antecede sobre las violaciones de la Convenci\u00f3n Americana en que incurri\u00f3 el Estado del Per\u00fa al someter a cuatro civiles las v\u00edctimas del presente caso a la justicia penal militar. El pre\u00e1mbulo de la Convenci\u00f3n Americana comienza haciendo referencia a las instituciones democr\u00e1ticas como marco general del r\u00e9gimen de libertades y que ", - "values": [ - "Corte Interamericana de Derechos Humanos" - ] - }, - { - "text": "ORDER OF THE PRESIDENT OF THE INTERAMERICAN COURT OF HUMAN RIGHTS OF APRIL PROVISIONAL MEASURES REGARDING THE UNITED MEXICAN STATES MATTER ALVARADO REYES ET AL. HAVING SEEN The Orders issued by the InterAmerican Court of Human Rights hereinafter the InterAmerican Court the Court or the Tribunal on May and November in which the Tribunal ordered provisional measures and monitored their execution in this matter. In the latter the Court ordered inter alia To reiterate that the State adopt ", - "values": [ - "Corte Interamericana de Derechos Humanos" - ] - }, - { - "text": "VOTO SEPARADO CONCORDANTE DO JUIZ JACKMAN Votei a favor desta senten\u00e7a porque estou totalmente de acordo com as conclus\u00f5es a que chegou a Corte bem como com o que ordenou. No entanto sintome obrigado a deixar const\u00e2ncia de certo grau de desconformidade com a ratio decidendi da Corte em rela\u00e7\u00e3o \u00e0 viola\u00e7\u00e3o pelo Estado da Nicar\u00e1gua o Estado dos direitos consagrados no artigo da Conven\u00e7\u00e3o Americana sobre Direitos Humanos a Conven\u00e7\u00e3o em detrimento dos candidatos do YATAMA. O enfoque particular \u00e9 ", - "values": [ - "Corte Interamericana de Derechos Humanos" - ] - }, - { - "text": "VOTO INDIVIDUAL DISIDENTE DEL JUEZ EDUARDO VIO GROSSI CORTE INTERAMERICANA DE DERECHOS HUMANOS CASO LIAKAT ALI ALIBUX VS. SURINAME SENTENCIA DE DE ENERO DE Excepciones Preliminares Fondo Reparaciones y Costas INTRODUCCI\u00d3N Se emite el presente voto individual disidente con respecto a la Sentencia indicada en el t\u00edtulo en adelante e indistintamente la Sentencia en atenci\u00f3n a que el suscrito es del parecer a diferencia de lo resuelto en autos de que proced\u00eda acoger las excepciones preliminares ", - "values": [ - "Corte Interamericana de Derechos Humanos" - ] - }, - { - "text": "VOTO RAZONADO DEL JUEZ AA. CAN\u00c7ADO TRINDADE He votado a favor de la presente Sentencia sobre reparaciones en el caso Blake versus Guatemala que viene de dictar la Corte Interamericana de Derechos Humanos por considerarla conforme al derecho aplicable y teniendo presente lo anteriormente resuelto por la Corte en las Sentencias sobre excepciones preliminares de y sobre el fondo de Sin embargo entiendo que lo decidido por la Corte conforme al derecho stricto sensu no guarda relaci\u00f3n directa con", - "values": [ - "Corte Interamericana de Derechos Humanos" - ] - }, - { - "text": "RESOLUCI\u00d3N DE LA CORTE INTERAMERICANA DE DERECHOS HUMANOS DE DE SEPTIEMBRE DE CASO FERM\u00cdN RAMIREZ VS. GUATEMALA CUMPLIMIENTO DE SENTENCIA VISTOS La Sentencia sobre fondo y reparaciones dictada el de junio de por la Corte Interamericana de Derechos Humanos en adelante la Corte la Corte Interamericana o el Tribunal notificada \u00edntegramente al Estado el de julio de mediante la cual declar\u00f3 por unanimidad que El Estado viol\u00f3 en perjuicio del se\u00f1or Ferm\u00edn Ram\u00edrez el derecho a las garant\u00edas ", - "values": [ - "Corte Interamericana de Derechos Humanos" - ] - }, - { - "text": "RESOLUCI\u00d3N DE LA CORTE INTERAMERICANA DE DERECHOS HUMANOS DE DE SEPTIEMBRE DE SOLICITUD DE MEDIDAS PROVISIONALES DE LA COMISI\u00d3N INTERAMERICANA DE DERECHOS HUMANOS RESPECTO DE LA REP\u00daBLICA DE COSTA RICA CASO DEL PERI\u00d3DICO LA NACI\u00d3N VISTOS El escrito de la Comisi\u00f3n Interamericana de Derechos Humanos en adelante la Comisi\u00f3n o la Comisi\u00f3n Interamericana de de marzo de mediante el cual present\u00f3 una solicitud de medidas provisionales a favor de los se\u00f1ores Mauricio Herrera Ulloa y Fern\u00e1n Vargas ", - "values": [ - "Corte Interamericana de Derechos Humanos" - ] - }, - { - "text": "CORTE INTERAMERICANA DE DERECHOS HUMANOS CASO GUDIEL \u00c1LVAREZ Y OTROS DIARIO MILITAR VS. GUATEMALA SENTENCIA DE DE AGOSTO DE Interpretaci\u00f3n de la Sentencia de Fondo Reparaciones y Costas En el caso Gudiel \u00c1lvarez y otros la Corte Interamericana de Derechos Humanos en adelante la Corte Interamericana la Corte o este Tribunal integrada por los siguientes jueces Diego Garc\u00edaSay\u00e1n Presidente Leonardo A. Franco Juez Margarette May Macaulay Jueza Rhadys Abreu Blondet Jueza y Alberto P\u00e9rez P\u00e9rez Juez", - "values": [ - "Corte Interamericana de Derechos Humanos" - ] - }, - { - "text": "Corte Interamericana de Derechos Humanos Caso del Pueblo Saramaka vs. Surinam Sentencia del de noviembre de Excepciones Preliminares Fondo Reparaciones y Costas En el Caso del Pueblo Saramaka la Corte Interamericana de Derechos Humanos en adelante la Corte la Corte Interamericana o el Tribunal integrada por los siguientes jueces Sergio Garc\u00eda Ram\u00edrez Presidente Cecilia Medina Quiroga Vicepresidente Manuel E. Ventura Robles Juez Diego Garc\u00eda Say\u00e1n Juez Leonardo A. Franco Juez Margarette May ", - "values": [ - "Corte Interamericana de Derechos Humanos" - ] - }, - { - "text": "RESOLUCI\u00d3N DE LA CORTE INTERAMERICANA DE DERECHOS HUMANOS DE DE JULIO DE MEDIDAS PROVISIONALES RESPECTO DE LA REP\u00daBLICA DEL PER\u00da CASO WONG HO WING VISTO La Resoluci\u00f3n del Presidente en ejercicio de la Corte Interamericana de Derechos Humanos en adelante la Corte Interamericana la Corte o el Tribunal de de marzo de y las Resoluciones del Tribunal de de mayo y de noviembre de y de de marzo de mediante las cuales resolvi\u00f3 inter alia requerir a la Rep\u00fablica del Per\u00fa en adelante tambi\u00e9n ", - "values": [ - "Corte Interamericana de Derechos Humanos" - ] - }, - { - "text": "CORTE INTERAMERICANA DE DERECHOS HUMANOS CASO RUANO TORRES Y OTROSVS. EL SALVADOR SENTENCIA DE DE OCTUBRE DE Fondo Reparaciones y Costas En el caso Ruano Torres y otros la Corte Interamericana de Derechos Humanos en adelante la Corte Interamericana la Corte o el Tribunal integrada por los siguientes Jueces Humberto Antonio Sierra Porto Presidente Roberto F. Caldas Vicepresidente Manuel E. Ventura Robles Juez Diego Garc\u00edaSay\u00e1n Juez Alberto P\u00e9rez P\u00e9rez Juez Eduardo Vio Grossi Juez y Eduardo ", - "values": [ - "Corte Interamericana de Derechos Humanos" - ] - }, - { - "text": "RESOLU\u00c7\u00c3O DA CORTE INTERAMERICANA DE DIREITOS HUMANOS DE DE NOVEMBRO DE MEDIDAS PROVIS\u00d3RIAS A RESPEITO DO BRASIL ASSUNTO DO COMPLEXO PENITENCI\u00c1RIO DE PEDRINHAS VISTO O escrito da Comiss\u00e3o Interamericana de Direitos Humanos doravante denominada a Comiss\u00e3o Interamericana ou a Comiss\u00e3o de de setembro de e seus anexos atrav\u00e9s dos quais submeteu \u00e0 Corte Interamericana de Direitos Humanos doravante denominada a Corte Interamericana a Corte ou o Tribunal uma solicita\u00e7\u00e3o de medidas provis\u00f3rias em", - "values": [ - "Corte Interamericana de Derechos Humanos" - ] - }, - { - "text": "CORTE INTERAMERICANA DE DERECHOS HUMANOS Caso Lori Berenson Mej\u00eda Vs. Per\u00fa Sentencia de de noviembre de Fondo Reparaciones Y Costas En el caso Lori Berenson Mej\u00eda la Corte Interamericana de Derechos Humanos en adelante la Corte la Corte Interamericana o el Tribunal integrada por los siguientes jueces Sergio Garc\u00eda Ram\u00edrez Presidente Alirio Abreu Burelli Vicepresidente Oliver Jackman Juez Ant\u00f4nio A. Can\u00e7ado Trindade Juez Cecilia Medina Quiroga Jueza Manuel E. Ventura Robles Juez y Juan D. ", - "values": [ - "Corte Interamericana de Derechos Humanos" - ] - }, - { - "text": "RESOLUCI\u00d3N DEL PRESIDENTE DE LA CORTE INTERAMERICANA DE DERECHOS HUMANOS DE FEBRERO DE SUPERVISI\u00d3N DE CUMPLIMIENTO DE LAS MEDIDAS DE REPARACI\u00d3N SOBRE ATENCI\u00d3N M\u00c9DICA Y PSICOL\u00d3GICA ORDENADAS EN NUEVE CASOS COLOMBIANOS CONVOCATORIA DE AUDIENCIA PRIVADA VISTO La resoluci\u00f3n de convocatoria de audiencia en el marco de la supervisi\u00f3n de cumplimiento emitida por la Corte Interamericana de Derechos Humanos en adelante la Corte la Corte Interamericana o el Tribunal el de abril de en relaci\u00f3n con ", - "values": [ - "Corte Interamericana de Derechos Humanos" - ] - }, - { - "text": "Corte Interamericana de Derechos Humanos Caso Durand y Ugarte Vs. Per\u00fa Sentencia de de agosto de Fondo En el caso Durand y Ugarte la Corte Interamericana de Derechos Humanos en adelante la Corte o la Corte Interamericana integrada por los siguientes jueces Ant\u00f4nio A. Can\u00e7ado Trindade Presidente M\u00e1ximo Pacheco G\u00f3mez Vicepresidente Hern\u00e1n Salgado Pesantes Juez Alirio Abreu Burelli Juez Sergio Garc\u00eda Ram\u00edrez Juez Carlos Vicente de Roux Rengifo Juez y Fernando Vidal Ram\u00edrez Juez ad hoc presentes", - "values": [ - "Corte Interamericana de Derechos Humanos" - ] - }, - { - "text": "Corte Interamericana de Derechos Humanos Caso Blake Vs. Guatemala Sentencia de de enero de Fondo En el caso Blake la Corte Interamericana de Derechos Humanos integrada por los siguientes jueces Hern\u00e1n Salgado Pesantes Presidente Ant\u00f4nio A. Can\u00e7ado Trindade Vicepresidente H\u00e9ctor FixZamudio Juez Alejandro Montiel Arg\u00fcello Juez M\u00e1ximo Pacheco G\u00f3mez Juez Oliver Jackman Juez Alirio Abreu Burelli Juez y Alfonso Novales Aguirre Juez ad hoc presentes adem\u00e1s Manuel E. Ventura Robles Secretario y M. ", - "values": [ - "Corte Interamericana de Derechos Humanos" - ] - }, - { - "text": "INFORME N\u00ba CASOS y TRABAJADORES CESADOS DEL CONGRESO REP\u00daBLICA PER\u00da de junio de I. RESUMEN El presente informe de admisibilidad comprende los casos y que han sido reunidos por referirse a los mismos hechos cuales son el despido de un grupo de trabajadores del Congreso Nacional de la Rep\u00fablica del Per\u00fa en adelante Per\u00fa el Estado o el Estado peruano que impugnaron mediante los recursos internos dos Resoluciones dictadas en el a\u00f1o por las cuales se despidi\u00f3 a un total de trabajadores de", - "values": [ - "Comisi\u00f3n Interamericana de Derechos Humanos" - ] - }, - { - "text": "CORTE INTERAMERICANA DE DERECHOS HUMANOS CASO GARC\u00cdA IBARRA Y OTROS VS. ECUADOR SENTENCIA DE DE NOVIEMBRE DE Excepciones Preliminares Fondo Reparaciones y Costas En el caso Garc\u00eda Ibarra y otros la Corte Interamericana de Derechos Humanos en adelante la Corte Interamericana la Corte o este Tribunal integrada por los siguientes jueces Humberto Antonio Sierra Porto Presidente Roberto F. Caldas Vicepresidente Manuel E. Ventura Robles Juez Diego Garc\u00edaSay\u00e1n Juez Alberto P\u00e9rez P\u00e9rez Juez Eduardo ", - "values": [ - "Corte Interamericana de Derechos Humanos" - ] - }, - { - "text": "Corte Interamericana de Derechos Humanos Caso La \u00daltima Tentaci\u00f3n de Cristo Olmedo Bustos y otros Vs. Chile Sentencia de de febrero de Fondo Reparaciones y Costas En el caso La \u00daltima Tentaci\u00f3n de Cristo caso Olmedo Bustos y otros la Corte Interamericana de Derechos Humanos en adelante la Corte la Corte Interamericana o el Tribunal integrada por los siguientes jueces Ant\u00f4nio A. Can\u00e7ado Trindade Presidente M\u00e1ximo Pacheco G\u00f3mez Vicepresidente Hern\u00e1n Salgado Pesantes Juez Oliver Jackman Juez ", - "values": [ - "Corte Interamericana de Derechos Humanos" - ] - }, - { - "text": "Corte Interamericana de Derechos Humanos Caso Gangaram Panday Vs. Surinam Sentencia de de diciembre de Excepciones Preliminares En el caso Gangaram Panday la Corte Interamericana de Derechos Humanos integrada por los siguientes jueces H\u00e9ctor FixZamudio Presidente Thomas Buergenthal Juez Rafael Nieto Navia Juez Sonia Picado Sotela Juez Julio A. Barberis Juez Ant\u00f4nio A. Can\u00e7ado Trindade Juez ad hoc presentes adem\u00e1s Manuel E. Ventura Robles Secretario y Ana Mar\u00eda Reina Secretaria adjunta de con", - "values": [ - "Corte Interamericana de Derechos Humanos" - ] - }, - { - "text": "RESOLUCI\u00d3N DE LA CORTE INTERAMERICANA DE DERECHOS HUMANOS DE DE MARZO DE MEDIDAS PROVISIONALES RESPECTO DE LOS ESTADOS UNIDOS MEXICANOS ASUNTO MARTINEZ MARTINEZ Y OTROS VISTO El escrito de la Comisi\u00f3n Interamericana de Derechos Humanos en adelante la Comisi\u00f3n Interamericana o la Comisi\u00f3n de de noviembre de y sus anexos mediante los cuales someti\u00f3 a la Corte Interamericana de Derechos Humanos en adelante la Corte Interamericana la Corte o el Tribunal una solicitud de medidas provisionales ", - "values": [ - "Corte Interamericana de Derechos Humanos" - ] - }, - { - "text": "RESOLUCI\u00d3N DE LA CORTE INTERAMERICANA DE DERECHOS HUMANOS DE DE FEBRERO DE MEDIDAS PROVISIONALES RESPECTO DE LA REP\u00daBLICA DE COLOMBIA ASUNTO GIRALDO CARDONA Y OTROS VISTO La Resoluci\u00f3n del Presidente de la Corte Interamericana de Derechos Humanos de de octubre de as\u00ed como las Resoluciones de la Corte Interamericana de Derechos Humanos en adelante la Corte Interamericana la Corte o el Tribunal de de febrero y de abril de de junio y de noviembre de de septiembre de de diciembre de ", - "values": [ - "Corte Interamericana de Derechos Humanos" - ] - }, - { - "text": "VOTO RAZONADO CONCURRENTE DEL JUEZ ALFONSO NOVALES AGUIRRE He concurrido con mi voto en esta sentencia en la que la Corte Interamericana de Derechos Humanos acogi\u00f3 s\u00f3lo parcialmente la excepci\u00f3n de incompetencia ratione temporis planteada por el Gobierno de la Rep\u00fablica de Guatemala porque considero que en estricto derecho no proced\u00eda dictar otra resoluci\u00f3n aunque como consecuencia de la aceptaci\u00f3n parcial de la excepci\u00f3n relacionada la Corte no podr\u00e1 pronunciarse en su sentencia de fondo sobre", - "values": [ - "Corte Interamericana de Derechos Humanos" - ] - }, - { - "text": "CORTE INTERAMERICANA DE DERECHOS HUMANOS CASO DE LA CORTE SUPREMA DE JUSTICIA QUINTANA COELLO Y OTROS VS. ECUADOR SENTENCIA DE DE AGOSTO DE Excepci\u00f3n Preliminar Fondo Reparaciones y Costas En el caso Corte Suprema de Justicia Quintana Coello y otros la Corte Interamericana de Derechos Humanos en adelante la Corte Interamericana la Corte o el Tribunal integrada por los siguientes jueces Diego Garc\u00edaSay\u00e1n Presidente Manuel E. Ventura Robles Vicepresidente Alberto P\u00e9rez P\u00e9rez Juez Eduardo Vio ", - "values": [ - "Corte Interamericana de Derechos Humanos" - ] - }, - { - "text": "RELAT\u00d3RIO N CASO WINSTON CAESAR TRINIDAD E TOBAGO de outubro de I. RESUMO Em de maio de a Comiss\u00e3o Interamericana de Direitos Humanos doravante denominada a Comiss\u00e3o recebeu uma peti\u00e7\u00e3o de Lovell White Durrant uma firma de advogados de Londres Reino Unido doravante denominada os peticion\u00e1rios contra o Governo de Trinidad e Tobago doravante denominado Trinidad e Tobago ou o Estado. A peti\u00e7\u00e3o foi apresentada em nome do Sr. Winston Caesar o qual encontrase detido na Pris\u00e3o de Condenados de ", - "values": [ - "Comisi\u00f3n Interamericana de Derechos Humanos" - ] - }, - { - "text": "RESOLUCI\u00d3N DEL PRESIDENTE DE LA CORTE INTERAMERICANA DE DERECHOS HUMANOS EN EJERCICIO PARA EL PRESENTE CASO DE DE DICIEMBRE DE CASO G\u00d3MEZ PALOMINO VS. PER\u00da SUPERVISI\u00d3N DE CUMPLIMIENTO DE SENTENCIA VISTO La Sentencia de fondo reparaciones y costas en adelante la Sentencia dictada por la Corte Interamericana de Derechos Humanos en adelante la Corte la Corte Interamericana o el Tribunal el de noviembre de La Resoluci\u00f3n de la Corte de de octubre de mediante la cual declar\u00f3 Que el Estado ", - "values": [ - "Corte Interamericana de Derechos Humanos" - ] - }, - { - "text": "Corte Interamericana de Derechos Humanos Caso Vel\u00e1squez Rodr\u00edguez Vs. Honduras Sentencia de de julio de Reparaciones y Costas En el caso Vel\u00e1squez Rodr\u00edguez la Corte Interamericana de Derechos Humanos integrada por los siguientes jueces H\u00e9ctor Gros Espiell Presidente H\u00e9ctor FixZamudio Vicepresidente Rodolfo E. Piza E Juez Pedro Nikken Juez Rafael Nieto Navia Juez Rigoberto Espinal Ir\u00edas Juez ad hoc presente adem\u00e1s Manuel Ventura Secretario ai. de acuerdo con el art\u00edculo de su Reglamento la ", - "values": [ - "Corte Interamericana de Derechos Humanos" - ] - }, - { - "text": "INFORME N\u00ba CASO ZULEMA TARAZONA ARRIATE NORMA TERESA P\u00c9REZ CH\u00c1VEZ Y LUIS ALBERTO BEJARANO LAURA PER\u00da de octubre de I. RESUMEN Mediante petici\u00f3n de fecha de enero de presentada a la Comisi\u00f3n Interamericana de Derechos Humanos en adelante la Comisi\u00f3n la Comisi\u00f3n Interamericana o CIDH por la Asociaci\u00f3n Pro Derechos Humanos APRODEH y por los se\u00f1ores V\u00edctor Tarazona Hinostroza y Santiago P\u00e9rez Vela en adelante los peticionarios se denunci\u00f3 a la Rep\u00fablica del Per\u00fa en adelante Per\u00fa el Estado o", - "values": [ - "Comisi\u00f3n Interamericana de Derechos Humanos" - ] - }, - { - "text": "RESOLU\u00c7\u00c3O DA CORTE INTERAMERICANA DE DIREITOS HUMANOS DE DE JUNHO DE MEDIDAS PROVIS\u00d3RIAS A RESPEITO DA REP\u00daBLICA FEDERATIVA DO BRASIL ASSUNTO DA UNIDADE DE INTERNA\u00c7\u00c3O SOCIOEDUCATIVA VISTO As Resolu\u00e7\u00f5es emitidas pela Corte Interamericana de Direitos Humanos doravante denominada a Corte Interamericana a Corte ou o Tribunal em de fevereiro e \u00ba de setembro de de abril e de novembro de de agosto de e de janeiro e por seu Presidente em de setembro de nas quais entre outros requereu \u00e0 ", - "values": [ - "Corte Interamericana de Derechos Humanos" - ] - }, - { - "text": "RESOLUCI\u00d3N DE LA CORTE INTERAMERICANA DE DERECHOS HUMANOS DEL DE SEPTIEMBRE DE MEDIDAS PROVISIONALES SOLICITADAS POR LA COMISI\u00d3N INTERAMERICANA DE DERECHOS HUMANOS RESPECTO DE LA REPUBLICA DE GUATEMALA CASO CARPIO NICOLLE La Corte Interamericana de Derechos Humanos integrada de la siguiente manera H\u00e9ctor FixZamudio Presidente Hern\u00e1n Salgado Pesantes Vicepresidente Alejandro Montiel Arg\u00fcello Juez M\u00e1ximo Pacheco G\u00f3mez Juez Oliver Jackman Juez Alirio Abreu Burelli Juez Ant\u00f4nio A. Can\u00e7ado Juez ", - "values": [ - "Corte Interamericana de Derechos Humanos" - ] - }, - { - "text": "RESOLUCI\u00d3N DEL PRESIDENTE DE LA CORTE INTERAMERICANA DE DERECHOS HUMANOS DE DE SEPTIEMBRE DE CASO TIDE M\u00c9NDEZ Y OTROS VS. REP\u00daBLICA DOMINICANA VISTO La Resoluci\u00f3n del Presidente de la Corte Interamericana de Derechos Humanos en adelante la Corte de de marzo de sobre el Fondo de Asistencia V\u00edctimas de la Corte Interamericana de Derechos Humanos en adelante el Fondo de Asistencia o el Fondo en la cual se dispuso otorgar la asistencia econ\u00f3mica necesaria para la presentaci\u00f3n de un m\u00e1ximo de ", - "values": [ - "Corte Interamericana de Derechos Humanos" - ] - }, - { - "text": "CORTE INTERAMERICANA DE DERECHOS HUMANOS CASO VEL\u00c1SQUEZ PAIZ Y OTROS VS. GUATEMALA SENTENCIA DE DE NOVIEMBRE DE Excepciones Preliminares Fondo Reparaciones y Costas En el caso Vel\u00e1squez Paiz y otros la Corte Interamericana de Derechos Humanos en adelante la Corte Interamericana la Corte o el Tribunal integrada por los siguientes Jueces Humberto Antonio Sierra Porto Presidente Roberto F. Caldas Vicepresidente Manuel E. Ventura Robles Juez Diego Garc\u00edaSay\u00e1n Juez Alberto P\u00e9rez P\u00e9rez Juez Eduardo", - "values": [ - "Corte Interamericana de Derechos Humanos" - ] - }, - { - "text": "RESOLUCI\u00d3N DE LA CORTE INTERAMERICANA DE DERECHOS HUMANOS DE DE MAYO DE CASO MASACRES DE EL MOZOTE Y LUGARES ALEDA\u00d1OS VS. EL SALVADOR SUPERVISI\u00d3N DE CUMPLIMIENTO DE SENTENCIA VISTO La Sentencia de fondo reparaciones y costas en adelante la Sentencia dictada por la Corte Interamericana de Derechos Humanos en adelante la Corte Interamericana la Corte o el Tribunal el de octubre de El caso se refiri\u00f3 a las violaciones a derechos humanos perpetradas por la Fuerza Armada salvadore\u00f1a en las ", - "values": [ - "Corte Interamericana de Derechos Humanos" - ] - }, - { - "text": "RESOLU\u00c7\u00c3O DA CORTE INTERAMERICANA DE DIREITOS HUMANOS DE DE SETEMBRO DE CASO XIMENES LOPES VS. BRASIL SUPERVIS\u00c3O DE CUMPRIMENTO DE SENTEN\u00c7A VISTO A Senten\u00e7a de m\u00e9rito repara\u00e7\u00f5es e custas de de julho de doravante a Senten\u00e7a proferida pela Corte Interamericana de Direitos Humanos doravante a Corte Interamericana a Corte ou o Tribunal. A Resolu\u00e7\u00e3o de Supervis\u00e3o de Cumprimento da Senten\u00e7a de de maio de mediante a qual a Corte Interamericana declarou Que manter\u00e1 aberto o procedimento de ", - "values": [ - "Corte Interamericana de Derechos Humanos" - ] - }, - { - "text": "RESOLUCI\u00d3N DEL PRESIDENTE DE LA CORTE INTERAMERICANA DE DERECHOS HUMANOS DE DE JUNIO DE MEDIDAS PROVISIONALES SOLICITADAS POR LA COMISI\u00d3N INTERAMERICANA DE DERECHOS HUMANOS CASO B\u00c1MACA VEL\u00c1SQUEZ N. VISTOS El proceso en el caso B\u00e1maca Vel\u00e1squez en tr\u00e1mite ante la Corte Interamericana de Derechos Humanos en adelante la Corte o la Corte Interamericana y la transcripci\u00f3n de la declaraci\u00f3n rendida por el se\u00f1or Santiago Cabrera L\u00f3pez durante la audiencia p\u00fablica que sobre el fondo del caso citado", - "values": [ - "Corte Interamericana de Derechos Humanos" - ] - }, - { - "text": "RESOLUCI\u00d3N DEL PRESIDENTE EN EJERCICIO PARA EL PRESENTE CASO DE LA CORTE INTERAMERICANA DE DERECHOS HUMANOS DE DE FEBRERO DE FONDO DE ASISTENCIA LEGAL DE V\u00cdCTIMAS CASO YARCE Y OTROS VS. COLOMBIA VISTO El escrito de de junio de y sus anexos mediante los cuales la Comisi\u00f3n Interamericana de Derechos Humanos someti\u00f3 ante la Corte Interamericana de Derechos Humanos en adelante tambi\u00e9n la Corte o el Tribunal el presente caso. El escrito de de septiembre de mediante el cual los de las en ", - "values": [ - "Corte Interamericana de Derechos Humanos" - ] - }, - { - "text": "VOTO RAZONADO DEL JUEZ A. A. CAN\u00c7ADO TRINDADE Suscribo la decisi\u00f3n de la Corte de desestimar la excepci\u00f3n preliminar interpuesta por el Gobierno demandado y de proseguir con el conocimiento del presente caso en cuando al fondo con el cual estoy de acuerdo. Si\u00e9ntome obligado a adjuntar este Voto Razonado para dejar constancia de los fundamentos de mi razonamiento y posici\u00f3n sobre el punto central de la excepci\u00f3n preliminar presentada por el Gobierno del Per\u00fa a saber la invocaci\u00f3n ante la Corte ", - "values": [ - "Corte Interamericana de Derechos Humanos" - ] - }, - { - "text": "CORTE INTERAMERICANA DE DIREITOS HUMANOS CASO FURLAN E FAMILIARES VS. ARGENTINA SENTEN\u00c7A DE DE AGOSTO DE Exce\u00e7\u00f5es Preliminares M\u00e9rito Repara\u00e7\u00f5es e Custas No caso Furlan e familiares a Corte Interamericana de Direitos Humanos doravante denominada a Corte Interamericana a Corte ou o Tribunal integrada pelos seguintes ju\u00edzes Diego Garc\u00edaSay\u00e1n Presidente Manuel E. Ventura Robles VicePresidente Margarette May Macaulay Ju\u00edza Rhadys Abreu Blondet Ju\u00edza Alberto P\u00e9rez P\u00e9rez Juiz e Eduardo Vio Grossi ", - "values": [ - "Corte Interamericana de Derechos Humanos" - ] - }, - { - "text": "ORDER OF THE INTERAMERICAN COURT OF HUMAN RIGHTS OF NOVEMBER PROVISIONAL MEASURES WITH REGARD TO MEXICO MATTER OF ALVARADO REYES HAVING SEEN The Orders issued by the InterAmerican Court of Human Rights hereinafter the InterAmerican Court or the Court on May and November and May in which at the request of the InterAmerican Commission the Court ordered provisional measures and monitored their execution in this matter. In the last Order the Court decided inter alia To ratify all aspects ", - "values": [ - "Corte Interamericana de Derechos Humanos" - ] - }, - { - "text": "VOTO DISIDENTE DEL JUEZ VIDAL RAMIREZ Disiento de la decisi\u00f3n adoptada en la sentencia en cuanto desestima la excepci\u00f3n preliminar de falta de agotamiento de la jurisdicci\u00f3n interna por los siguientes fundamentos La demanda se ha presentado el de agosto de o sea transcurridos m\u00e1s de diez a\u00f1os de la desaparici\u00f3n de Nolberto Durand Ugarte y Gabriel Pablo Ugarte Rivera como consecuencia del develamiento del mot\u00edn ocurrido el de junio de en el Penal El Front\u00f3n. La demanda fue planteada para ", - "values": [ - "Corte Interamericana de Derechos Humanos" - ] - }, - { - "text": "Resoluci\u00f3n de la Corte Interamericana de Derechos Humanos de de julio de Caso Cantos Vs. Argentina Supervisi\u00f3n de Cumplimiento de Sentencia Visto La Sentencia de fondo reparaciones y costas de de noviembre de en adelante la Sentencia emitida por la Corte Interamericana de Derechos Humanos en adelante la Corte la Corte Interamericana o el Tribunal. La Resoluci\u00f3n de la Corte Interamericana de de noviembre de sobre el cumplimiento de la Sentencia mediante la cual declar\u00f3 que de con lo ", - "values": [ - "Corte Interamericana de Derechos Humanos" - ] - }, - { - "text": "RESOLUCI\u00d3N DE LA CORTE INTERAMERICANA DE DERECHOS HUMANOS DE DE FEBRERO DE CASO ARTAVIA MURILLO Y OTROS FECUNDACI\u00d3N IN VITRO VS. COSTA RICA SUPERVISI\u00d3N DE CUMPLIMIENTO DE SENTENCIA VISTO La Sentencia de excepciones preliminares fondo reparaciones y costas en adelante la Sentencia emitida en el presente caso por la Corte Interamericana de Derechos Humanos en adelante la Corte Interamericana la Corte o el Tribunal el de noviembre de Dicha Sentencia determin\u00f3 que la Rep\u00fablica de Costa Rica en", - "values": [ - "Corte Interamericana de Derechos Humanos" - ] - }, - { - "text": "RESOLUCI\u00d3N DE LA CORTE INTERAMERICANA DE DERECHOS HUMANOS DE DE AGOSTO DE CASO CESTI HURTADO VS. PER\u00da SUPERVISI\u00d3N DEL CUMPLIMIENTO DE SENTENCIA VISTOS La Sentencia de fondo emitida por la Corte Interamericana de Derechos Humanos en adelante la Corte la Corte Interamericana o el Tribunal el de septiembre de La Sentencia de Interpretaci\u00f3n de la Sentencia de fondo dictada por la Corte el de enero de La Sentencia de reparaciones emitida por el Tribunal el de mayo de en cuyos puntos por ", - "values": [ - "Corte Interamericana de Derechos Humanos" - ] - }, - { - "text": "VOTO PARCIALMENTE DISIDENTE DEL JUEZ SERGIO GARC\u00cdA RAM\u00cdREZ CON RESPECTO A LA SENTENCIA DE LA CORTE INTERAMERICANA DE DERECHOS HUMANOS EN EL CASO SALVADOR CHIRIBOGA VS. ECUADOR DEL DE MARZO DE He concurrido con la mayor\u00eda de los integrantes de la Corte en la adopci\u00f3n de todos los puntos que abarca la sentencia de excepci\u00f3n preliminar y fondo del Caso Salvador Chiriboga del de mayo de Ahora coincido en varios puntos de la condena a reparaciones aprobada el de marzo de y difiero en algunos.", - "values": [ - "Corte Interamericana de Derechos Humanos" - ] - }, - { - "text": "RESOLU\u00c7\u00c3O DA CORTE INTERAMERICANA DE DIREITOS HUMANOS DE DE NOVEMBRO DE MEDIDAS PROVIS\u00d3RIAS A RESPEITO DA REP\u00daBLICA FEDERATIVA DO BRASIL ASSUNTO DA UNIDADE DE INTERNA\u00c7\u00c3O SOCIOEDUCATIVA VISTO A Resolu\u00e7\u00e3o da Corte Interamericana de Direitos Humanos doravante a Corte Interamericana a Corte ou o Tribunal de de fevereiro de mediante a qual requereu \u00e0 Rep\u00fablica Federativa de Brasil doravante o Estado ou Brasil adotar de forma imediata as medidas que se fa\u00e7am necess\u00e1rias para proteger eficazmente", - "values": [ - "Corte Interamericana de Derechos Humanos" - ] - }, - { - "text": "RESOLUCI\u00d3N DE LA CORTE INTERAMERICANA DE DERECHOS HUMANOS DE DE AGOSTO DE CASO SU\u00c1REZ PERALTA VS. ECUADOR SUPERVISI\u00d3N DE CUMPLIMIENTO DE SENTENCIA VISTOS La Sentencia de excepciones preliminares fondo reparaciones y costas en adelante la Sentencia o el Fallo dictada por la Corte Interamericana de Derechos Humanos en adelante la Corte la Corte Interamericana o el Tribunal el de mayo de En ella la Corte declar\u00f3 la responsabilidad internacional de la Rep\u00fablica del Ecuador en adelante el o ", - "values": [ - "Corte Interamericana de Derechos Humanos" - ] - }, - { - "text": "RESOLUCI\u00d3N DE LA CORTE INTERAMERICANA DE DERECHOS HUMANOS DE DE AGOSTO DE MEDIDAS PROVISIONALES RESPECTO DE LA REP\u00daBLICA DE COLOMBIA ASUNTO COMUNIDADES DEL JIGUAMIAND\u00d3 Y DEL CURBARAD\u00d3 VISTOS Las Resoluciones de la Corte Interamericana de de marzo de de noviembre de de marzo de de febrero de y de febrero de En esta \u00faltima Resoluci\u00f3n la Corte resolvi\u00f3 inter alia Reiterar al Estado de Colombia que adopte sin dilaci\u00f3n las medidas que sean necesarias para proteger la vida e integridad ", - "values": [ - "Corte Interamericana de Derechos Humanos" - ] - }, - { - "text": "RESOLUCI\u00d3N DE LA CORTE INTERMERICANA DE DERECHOS HUMANOS DE JULIO DE MEDIDAS PROVISIONALES RESPECTO DE VENEZUELA CASO ELOISA BARRIOS Y OTROS VISTO Las Resoluciones de la Corte Interamericana de Derechos Humanos en adelante la Corte Interamericana la Corte o el Tribunal emitidas el de noviembre de de junio y de septiembre de de febrero y de noviembre de y de febrero de En esta \u00faltima la Corte declar\u00f3 que Los hechos ocurridos presuntamente contra la vida de N\u00e9stor Caud\u00ed Barrios el ", - "values": [ - "Corte Interamericana de Derechos Humanos" - ] - }, - { - "text": "RELAT\u00d3RIO N\u00ba CASO YATAMA NICAR\u00c1GUA de dezembro de I. RESUMO Em de abril de a Organiza\u00e7\u00e3o Yabti Tasba Masraka Nanih Asia Takanka YATAMA o Centro Nicarag\u00fcense de Direitos Humanos CENIDH e o Centro para a Justi\u00e7a e o Direito Internacional CEJIL doravante denominados os peticion\u00e1rios apresentaram perante a Comiss\u00e3o Interamericana de Direitos Humanos doravante denominada a Comiss\u00e3o ou a CIDH uma peti\u00e7\u00e3o contra a Rep\u00fablica de Nicar\u00e1gua doravante denominada o Estado nicarag\u00fcense Nicar\u00e1gua ou o ", - "values": [ - "Comisi\u00f3n Interamericana de Derechos Humanos" - ] - }, - { - "text": "VOTO FUNDAMENTADO DO JUIZ SERGIO GARC\u00cdA RAM\u00cdREZ COM RESPEITO \u00c0 SENTEN\u00c7A DA CORTE INTERAMERICANA DE DIREITOS HUMANOS NO CASO TRIST\u00c1N DONOSO VS. PANAM\u00c1 DE DE JANEIRO DE Coincidi com meus colegas da Corte Interamericana de Direitos Humanos na emiss\u00e3o da senten\u00e7a correspondente ao Caso Trist\u00e1n Donoso Vs. Panam\u00e1 cujo exame suscita diversas quest\u00f5es analisadas e resolvidas pelo Tribunal. Formulo este Voto Fundamentado para expor considera\u00e7\u00f5es complementares ou recapitula\u00e7\u00f5es sobre a jurisprud\u00eancia", - "values": [ - "Corte Interamericana de Derechos Humanos" - ] - }, - { - "text": "VOTO CONCURRENTE DEL JUEZ ALBERTO P\u00c9REZ P\u00c9REZ CASO CANALES HUAPAYA Y OTROS VS. PER\u00da SENTENCIA DE DE JUNIO DE Excepciones Preliminares Fondo Reparaciones y Costas Comparto plenamente el contenido de la Sentencia dictada en el presente caso pero he sentido la necesidad de emitir un voto concurrente habida cuenta de las constantes propuestas hechas durante la deliberaci\u00f3n del caso para que se invocara como derecho principal violado por la acci\u00f3n del Estado el derecho al trabajo es decir un no ", - "values": [ - "Corte Interamericana de Derechos Humanos" - ] - }, - { - "text": "RESOLUCI\u00d3N DE LA CORTE INTERAMERICANA DE DERECHOS HUMANOS DE DE JULIO DE CASO CANTOS VS. ARGENTINA SUPERVISI\u00d3N DE CUMPLIMIENTO DE SENTENCIA VISTOS La Sentencia de fondo reparaciones y costas emitida el de noviembre de por la Corte Interamericana de Derechos Humanos en adelante la Corte la Corte Interamericana o el Tribunal mediante la cual el Tribunal declar\u00f3 inter alia que el Estado viol\u00f3 el derecho de acceso a la justicia consagrado en los art\u00edculos y de la Convenci\u00f3n Americana sobre ", - "values": [ - "Corte Interamericana de Derechos Humanos" - ] - }, - { - "text": "RESOLUCI\u00d3N DE LA CORTE INTERAMERICANA DE DERECHOS HUMANOS DE DE JUNIO DE CASO SALVADOR CHIRIBOGA VS. ECUADOR SUPERVISI\u00d3N DE CUMPLIMIENTO DE SENTENCIA VISTO Las Sentencias de excepci\u00f3n preliminar y fondo en adelante la Sentencia de reparaciones y costas en adelante la Sentencia de reparaciones y de interpretaci\u00f3n de esta \u00faltima dictadas por la Corte Interamericana de Derechos Humanos en adelante la Corte la Corte Interamericana o el Tribunal respectivamente los d\u00edas de mayo de de marzo", - "values": [ - "Corte Interamericana de Derechos Humanos" - ] - }, - { - "text": "RELATORIO N\u00ba CASO GILSON NOGUEIRA CARVALHO BRASIL de outubro de I. RESUMO Em de dezembro de a Comiss\u00e3o Interamericana de Direitos Humanos doravante denominada Comiss\u00e3o recebeu uma peti\u00e7\u00e3o contra a Rep\u00fablica Federativa do Brasil doravante denominada Estado ou Brasil apresentada pelo Centro de Direitos Humanos e Mem\u00f3ria Popular CDHMP pelo Holocaust Human Rights Project HHRP e peloGroup of International Human Rights Law Students GIHRLS A peti\u00e7\u00e3o referese ao assassinato do advogado defensor ", - "values": [ - "Comisi\u00f3n Interamericana de Derechos Humanos" - ] - }, - { - "text": "Resoluci\u00f3n de la Corte Interamericana de Derechos Humanos de de julio de Caso Blanco Romero y Otros Vs. Venezuela Supervisi\u00f3n de Cumplimiento de Sentencia Visto La Sentencia de fondo reparaciones y costas en adelante la Sentencia emitida en el presente caso por la Corte Interamericana de Derechos Humanos en adelante la Corte la Corte Interamericana o el Tribunal el de noviembre de mediante la cual dispuso que el Estado de Venezuela en adelante el Estado debe llevar a cabo y procesos ", - "values": [ - "Corte Interamericana de Derechos Humanos" - ] - }, - { - "text": "RESOLU\u00c7\u00c3O DA PRESIDENTA DA CORTE INTERAMERICANA DE DIREITOS HUMANOS DE DE JUNHO DE MEDIDAS PROVIS\u00d3RIAS A RESPEITO DO BRASIL A FAVOR DAS PESSOAS PRIVADAS DE LIBERDADE NA PENITENCI\u00c1RIA DR. SEBASTI\u00c3O MARTINS SILVEIRA EM ARARAQUARA S\u00c3O PAULO VISTO A Resolu\u00e7\u00e3o da Corte Interamericana de Direitos Humanos doravante denominada Corte Corte Interamericana ou Tribunal de de setembro de mediante a qual resolveu Ratificar em todos os seus termos a Resolu\u00e7\u00e3o do Presidente da Corte Interamericana de e", - "values": [ - "Corte Interamericana de Derechos Humanos" - ] - }, - { - "text": "CORTE INTERAMERICANA DE DERECHOS HUMANOS CASO SALVADOR CHIRIBOGA VS. ECUADOR SENTENCIA DE DE MARZO DE REPARACIONES Y COSTAS En el caso Salvador Chiriboga la Corte Interamericana de Derechos Humanos en adelante la Corte Interamericana la Corte o el Tribunal integrada por los siguientes jueces Diego Garc\u00edaSay\u00e1n Presidente Cecilia Medina Quiroga Jueza Sergio Garc\u00eda Ram\u00edrez Juez Manuel E. Ventura Robles Juez Leonardo A. Franco Juez Margarette May Macaulay Jueza Rhadys Abreu Blondet Jueza y Diego ", - "values": [ - "Corte Interamericana de Derechos Humanos" - ] - }, - { - "text": "RESOLUCI\u00d3N DEL PRESIDENTE DE LA CORTE INTERAMERICANA DE DERECHOS HUMANOS DEL DE AGOSTO DE MEDIDAS PROVISIONALES SOLICITADAS POR LA COMISI\u00d3N INTERAMERICANA DE DERECHOS HUMANOS RESPECTO DE LA REPUBLICA DE GUATEMALA CASO BLAKE VISTO El escrito y sus anexos del de agosto de recibido ese mismo d\u00eda en la Secretar\u00eda de la Corte Interamericana de Derechos Humanos en adelante la Secretar\u00eda mediante el cual la Comisi\u00f3n Interamericana de Derechos Humanos en adelante la Comisi\u00f3n o la Comisi\u00f3n someti\u00f3", - "values": [ - "Corte Interamericana de Derechos Humanos" - ] - }, - { - "text": "VOTO CONCURRENTE DEL JUEZ SERGIO GARCIA RAMIREZ A LA SENTENCIA DE LA CORTE INTERAMERICANA DE DERECHOS HUMANOS EN EL CASO G\u00d3MEZ PALOMINO VS. PER\u00da DEL DE NOVIEMBRE DE En este Voto me referir\u00e9 a un punto esencial en el Caso G\u00f3mez Palomino a saber la construcci\u00f3n legislativa del delito de desaparici\u00f3n forzada en el Derecho interno y la relaci\u00f3n que esto guarda con el orden internacional que el Estado ha reconocido. En algunos de sus aspectos m\u00e1s significativos la materia ha sido frecuentemente ", - "values": [ - "Corte Interamericana de Derechos Humanos" - ] - }, - { - "text": "RESOLUCI\u00d3N DE LA CORTE INTERAMERICANA DE DERECHOS HUMANOS DE DE FEBRERO DE MEDIDAS PROVISIONALES RESPECTO DE LA REP\u00daBLICA DE COLOMBIA ASUNTO GIRALDO CARDONA Y OTROS VISTO La Resoluci\u00f3n del Presidente de la Corte Interamericana de Derechos Humanos de de octubre de as\u00ed como las Resoluciones de la Corte Interamericana de Derechos Humanos en adelante la Corte Interamericana la Corte o el Tribunal de de febrero y de abril de de junio y de noviembre de de septiembre de de diciembre de ", - "values": [ - "Corte Interamericana de Derechos Humanos" - ] - }, - { - "text": "Resoluci\u00f3n de la Presidenta de la Corte Interamericana de Derechos Humanos de de febrero de Caso Ivcher Bronstein Vs. Per\u00fa Supervisi\u00f3n de Cumplimiento de Sentencia Visto La Sentencia de fondo reparaciones y costas en adelante la Sentencia emitida en el presente caso por la Corte Interamericana de Derechos Humanos en adelante la Corte la Corte Interamericana o el Tribunal el de febrero de La Resoluci\u00f3n de la Corte Interamericana de de septiembre de sobre Supervisi\u00f3n de Cumplimiento de ", - "values": [ - "Corte Interamericana de Derechos Humanos" - ] - }, - { - "text": "RESOLUCI\u00d3N DE LA CORTE INTERAMERICANA DE DERECHOS HUMANOS DE DE NOVIEMBRE DE CASO FONTEVECCHIA y DAMICO VS. ARGENTINA SUPERVISI\u00d3N DE CUMPLIMIENTO DE SENTENCIA VISTO La Sentencia de fondo reparaciones y costas en adelante la Sentencia o el Fallo dictada por la Corte Interamericana de Derechos Humanos en adelante la Corte la Corte Interamericana o el Tribunal el de noviembre de La Corte declar\u00f3 responsable internacionalmente a la Rep\u00fablica Argentina en adelante el Estado o Argentina por la ", - "values": [ - "Corte Interamericana de Derechos Humanos" - ] - }, - { - "text": "RESOLUCI\u00d3N DEL PRESIDENTE DE LA CORTE INTERAMERICANA DE DERECHOS HUMANOS DE DE MARZO DE MEDIDAS URGENTES RESPECTO DE EL SALVADOR A FAVOR DE ADRIAN MEL\u00c9NDEZ QUIJANO Y OTROS Vistos La solicitud y sus anexos de la Comisi\u00f3n Interamericana de Derechos Humanos en adelante la Comisi\u00f3n o la Comisi\u00f3n Interamericana de de marzo de mediante los cuales someti\u00f3 a la Corte Interamericana de Derechos Humanos en adelante la Corte la Corte Interamericana o el Tribunal una solicitud de medidas provisionales", - "values": [ - "Corte Interamericana de Derechos Humanos" - ] - }, - { - "text": "VOTO PARCIALMENTE DISIDENTE DEL JUEZ HUMBERTO ANTONIO SIERRA PORTO CORTE INTERAMERICANA DE DERECHOS HUMANOS CASO GALINDO C\u00c1RDENAS Y OTROS VS. PER\u00da SENTENCIA DE DE OCTUBRE DE Excepciones Preliminares Fondo Reparaciones y costas El motivo del presente voto es expresar los motivos de mi disidencia parcial respecto de lo decidido por la mayor\u00eda de los Jueces de la Corte Interamericana de Derechos Humanos en adelante la Corte o el Tribunal en la Sentencia de de octubre de sobre el caso Galindo ", - "values": [ - "Corte Interamericana de Derechos Humanos" - ] - }, - { - "text": "RESOLUCI\u00d3N DE LA CORTE INTERAMERICANA DE DERECHOS HUMANOS DE DE NOVIEMBRE DE CASO DE LA MASACRE DE LA ROCHELA MEDIDAS PROVISIONALES RESPECTO DE LA REP\u00daBLICA DE COLOMBIA VISTO La Sentencia de fondo reparaciones y costas emitida por la Interamericana de Derechos Humanos en adelante la Corte la Interamericana o el Tribunal el de mayo de Corte Corte El escrito de los representantes de las v\u00edctimas en adelante los representantes de de octubre de y sus anexos recibidos el de octubre de los", - "values": [ - "Corte Interamericana de Derechos Humanos" - ] - }, - { - "text": "RESOLUCI\u00d3N DE LA CORTE INTERAMERICANA DE DERECHOS HUMANOS DE DE OCTUBRE DE CASO WONG HO WING VS. PER\u00da VISTO La Sentencia de excepci\u00f3n preliminar fondo reparaciones y costas en adelante la Sentencia dictada por la Corte Interamericana de Derechos Humanos en adelante la Corte la Corte Interamericana o este Tribunal el de junio de La Corte declar\u00f3 que no se hab\u00eda acreditado que para la fecha de emisi\u00f3n de la Sentencia existiera un riesgo real previsible y personal a los derechos a la vida e", - "values": [ - "Corte Interamericana de Derechos Humanos" - ] - }, - { - "text": "RESOLUCI\u00d3N DEL PRESIDENTE DE LA CORTE INTERAMERICANA DE DERECHOS HUMANOS DE DE JULIO DE CASO COMUNIDAD GAR\u00cdFUNA PUNTA PIEDRA Y SUS MIEMBROS VS. HONDURAS VISTO El escrito de sometimiento del caso y el Informe de Fondo de la Comisi\u00f3n Interamericana de Derechos Humanos en adelante la Comisi\u00f3n Interamericana o la Comisi\u00f3n el escrito de solicitudes argumentos y pruebas en adelante el escrito de solicitudes y argumentos de los representantes de las presuntas v\u00edctimas en adelante los representantes", - "values": [ - "Corte Interamericana de Derechos Humanos" - ] - }, - { - "text": "VOTO RAZONADO CONCURRENTE DEL JUEZ SERGIO GARC\u00cdA RAM\u00cdREZ A LA SENTENCIA DICTADA POR LA CORTE INTERAMERICANA DE DERECHOS HUMANOS EN EL CASO BULACIO VS. ARGENTINA EL DE SEPTIEMBRE DEL Coincido con los integrantes de la Corte en la Sentencia a la que se refiere este Voto razonado concurrente que emito para precisar desde mi propia perspectiva el alcance de algunos conceptos incorporados en esa Sentencia a la luz de sus antecedentes y de la solicitud que las partes de com\u00fan acuerdo sometieron a ", - "values": [ - "Corte Interamericana de Derechos Humanos" - ] - }, - { - "text": "RESOLUCI\u00d3N DE LA CORTE INTERAMERICANA DE DERECHOS HUMANOS DE DE AGOSTO DE MEDIDAS PROVISIONALES RESPECTO DE LA REP\u00daBLICA DE COLOMBIA CASO CLEMENTE TEHER\u00c1N Y OTROS VISTOS La Resoluci\u00f3n de la Corte Interamericana de Derechos Humanos en adelante la Corte o la Corte Interamericana de de junio de La Resoluci\u00f3n de la Corte de de enero de mediante la cual decidi\u00f3 Requerir al Estado de Colombia que mantenga las medidas necesarias para proteger la vida e integridad personal de los se\u00f1ores ", - "values": [ - "Corte Interamericana de Derechos Humanos" - ] - }, - { - "text": "VOTO CONCURRENTE DEL JUEZ SERGIO GARC\u00cdA RAM\u00cdREZ A LA SENTENCIA DE LA CORTE INTERAMERICANA DE DERECHOS HUMANOS EN EL CASO CAESAR VS. TRINIDAD Y TOBAGO DE MARZO DE La sentencia de la Corte Interamericana de Derechos Humanos a la que agrego este Voto razonado emitida el de marzo de en el proceso sobre el Caso Caesar vs. Trinidad y Tobago suscita diversas cuestiones vinculadas con temas relevantes. Entre aqu\u00e9llas figuran extensi\u00f3n y vigencia de los deberes asumidos por el Estado parte en un ", - "values": [ - "Corte Interamericana de Derechos Humanos" - ] - }, - { - "text": "RESOLUCI\u00d3N DEL PRESIDENTE DE LA CORTE INTERAMERICANA DE DERECHOS HUMANOS EN EJERCICIO PARA EL PRESENTE CASO DE DE MAYO DE CASO YARCE Y OTROS VS. COLOMBIA VISTO El escrito de sometimiento del caso y el Informe de Fondo de la Comisi\u00f3n Interamericana de Derechos Humanos en adelante la Comisi\u00f3n Interamericana o la Comisi\u00f3n el escrito de solicitudes argumentos y pruebas en adelante el escrito de solicitudes y argumentos de las representantes de las presuntas v\u00edctimas en adelante las y el de ", - "values": [ - "Corte Interamericana de Derechos Humanos" - ] - }, - { - "text": "VOTO INDIVIDUAL DEL JUEZ EDUARDO VIO GROSSI CASO PACHECO TERUEL Y OTROS VS. HONDURAS SENTENCIA DE DE ABRIL DE Fondo Reparaciones y Costas DE LA CORTE INTERAMERICANA DE DERECHOS HUMANOS Introducci\u00f3n Emito el presente voto individual con relaci\u00f3n a la Sentencia dictada en autos por la Corte Interamericana de Derechos Humanos en adelante aquella la Sentencia y \u00e9sta la Corte a los efectos de dejar expresa constancia de que si bien la comparto y en particular la homologaci\u00f3n o aprobaci\u00f3n que hace ", - "values": [ - "Corte Interamericana de Derechos Humanos" - ] - }, - { - "text": "CORTE INTERAMERICANA DE DERECHOS HUMANOS CASO GALINDO C\u00c1RDENAS Y OTROS VS. PER\u00da SENTENCIA DE DE OCTUBRE DE Excepciones Preliminares Fondo Reparaciones y costas En el caso de Galindo C\u00e1rdenas y otros la Corte Interamericana de Derechos Humanos en adelante tambi\u00e9n la Interamericana la Corte o el Tribunal integrada por los siguientes jueces Corte Humberto Antonio Sierra Porto Presidente Roberto F. Caldas Vicepresidente Manuel E. Ventura Robles Juez Alberto P\u00e9rez P\u00e9rez Juez Eduardo Vio Grossi y", - "values": [ - "Corte Interamericana de Derechos Humanos" - ] - }, - { - "text": "ORDER OF THE INTERAMERICAN COURT OF HUMAN RIGHTS OF JULY REQUEST FOR PROVISIONAL MEASURES SUBMITTED BY THE INTERAMERICAN COMMISSION ON HUMAN RIGHTS REGARDING THE BOLIVARIAN REPUBLIC OF VENEZUELA MATTER OF GUERREROGALLUCCI AND MART\u00cdNEZBARRIOS HAVING SEEN The brief of June and its Appendixes whereby the InterAmerican Commission on Human Rights hereinafter the InterAmerican Commission or The Commission submitted to the InterAmerican Court of Human Rights hereinafter the Court or the Tribunal ", - "values": [ - "Corte Interamericana de Derechos Humanos" - ] - }, - { - "text": "RESOLUCI\u00d3N DE LA CORTE INTERAMERICANA DE DERECHOS HUMANOS DE JULIO DE MEDIDAS PROVISIONALES RESPECTO DE LOS ESTADOS UNIDOS MEXICANOS ASUNTO GALLARDO RODR\u00cdGUEZ VISTOS El escrito de la Comisi\u00f3n Interamericana de Derechos Humanos en adelante la Comisi\u00f3n o la Comisi\u00f3n Interamericana de de diciembre de mediante el cual solicit\u00f3 a la Corte Interamericana de Derechos Humanos en adelante la Corte la Corte Interamericana o el Tribunal la adopci\u00f3n de medidas provisionales para evitar da\u00f1os al ", - "values": [ - "Corte Interamericana de Derechos Humanos" - ] - }, - { - "text": "RESOLUCI\u00d3N DE LA CORTE INTERAMERICANA DE DERECHOS HUMANOS DE DE ENERO DE MEDIDAS PROVISIONALES SOLICITADAS POR LA COMISI\u00d3N INTERAMERICANA DE DERECHOS HUMANOS RESPECTO DE LA REP\u00daBLICA DE COLOMBIA CASO CLEMENTE TEHER\u00c1N Y OTROS VISTOS La Resoluci\u00f3n de la Corte Interamericana de Derechos Humanos en adelante la Corte o la Corte Interamericana de de junio de El cuarto informe del Estado de Colombia en adelante el Estado o Colombia de de octubre de en el cual manifest\u00f3 que el Estado estaba ", - "values": [ - "Corte Interamericana de Derechos Humanos" - ] - }, - { - "text": "INFORME N\u00ba PETICI\u00d3N ADMISIBILIDAD MANUEL ANTONIO BONILLA OSORIO Y RICARDO AYALA ABARCA EL SALVADOR de julio de I. RESUMEN El de diciembre de la Comisi\u00f3n Interamericana de Derechos Humanos en adelante la Comisi\u00f3n Interamericana o la CIDH recibi\u00f3 una denuncia presentada por la Asociaci\u00f3n ProB\u00fasqueda de Ni\u00f1as y Ni\u00f1os Desaparecidos Asociaci\u00f3n ProB\u00fasqueda en adelante los peticionarios en la cual se alega la responsabilidad internacional de la Rep\u00fablica de El Salvador en adelante el Estado El ", - "values": [ - "Comisi\u00f3n Interamericana de Derechos Humanos" - ] - }, - { - "text": "RESOLUCI\u00d3N DE LA PRESIDENTA DE LA CORTE INTERAMERICANA DE DERECHOS HUMANOS DE DE JUNIO DE CASO TRIST\u00c1N DONOSO VS. PANAM\u00c1 VISTO El escrito de demanda presentado por la Comisi\u00f3n Interamericana de Derechos Humanos en adelante la Comisi\u00f3n Interamericana o la Comisi\u00f3n ante la Corte Interamericana de Derechos Humanos en adelante la Corte Interamericana la Corte o el Tribunal el de agosto de mediante el cual ofreci\u00f3 un testigo y dos peritos. El escrito de solicitudes argumentos y pruebas en de", - "values": [ - "Corte Interamericana de Derechos Humanos" - ] - }, - { - "text": "RESOLUCI\u00d3N DE LA CORTE INTERAMERICANA DE DERECHOS HUMANOS DE DE JULIO DE CASO CARPIO NICOLLE Y OTROS VS. GUATEMALA SUPERVISI\u00d3N DE CUMPLIMIENTO DE SENTENCIA VISTOS La Sentencia de fondo reparaciones y costas en adelante la Sentencia dictada por la Corte Interamericana de Derechos Humanos en adelante la Corte la Corte Interamericana o el Tribunal el de noviembre de mediante la cual Dispuso Por unanimidad que El Estado debe investigar efectivamente los hechos del presente caso con el fin de ", - "values": [ - "Corte Interamericana de Derechos Humanos" - ] - }, - { - "text": "Resoluci\u00f3n de la Corte Interamericana de Derechos Humanos De de febrero de Caso Huilca Tecse Vs. Per\u00fa Supervisi\u00f3n de Cumplimiento de Sentencia VISTOS La Sentencia de fondo reparaciones y costas en adelante la Sentencia emitida por la Corte Interamericana de Derechos Humanos en adelante la Corte la Corte Interamericana o el Tribunal el de marzo de mediante la cual DECIDI\u00d3 Por unanimidad Admitir el allanamiento efectuado por el Estado el de septiembre de en los t\u00e9rminos de los p\u00e1rrafos ", - "values": [ - "Corte Interamericana de Derechos Humanos" - ] - }, - { - "text": "RESOLUCI\u00d3N DE LA CORTE INTERAMERICANA DE DERECHOS HUMANOS DE DE ENERO DE CASO SU\u00c1REZ PERALTA VS. ECUADOR VISTO La Resoluci\u00f3n del Presidente en adelante la Resoluci\u00f3n de la Corte Interamericana de Derechos Humanos en adelante la Corte o la Corte Interamericana de de diciembre de en la cual entre otros resolvi\u00f3 Requerir por las razones expuestas en la presente Resoluci\u00f3n Considerandos a de conformidad con el principio de econom\u00eda procesal y en ejercicio de la facultad que le otorga el ", - "values": [ - "Corte Interamericana de Derechos Humanos" - ] - }, - { - "text": "RESOLUCI\u00d3N DE LA CORTE INTERAMERICANA DE DERECHOS HUMANOS DE DE MARZO DE MEDIDAS PROVISIONALES SOLICITADAS POR LA COMISI\u00d3N INTERAMERICANA DE DERECHOS HUMANOS RESPECTO DE LA REP\u00daBLICA DE PER\u00da CASO DEL TRIBUNAL CONSTITUCIONAL VISTOS El escrito de de abril de y sus anexos mediante el cual la se\u00f1ora Delia Revoredo Marsano en adelante la se\u00f1ora Revoredo someti\u00f3 a la Corte Interamericana de Derechos Humanos en adelante la Corte o la Corte Interamericana al amparo de los art\u00edculos de la sobre ", - "values": [ - "Corte Interamericana de Derechos Humanos" - ] - }, - { - "text": "Corte Interamericana de Derechos Humanos Caso Hilaire Constantine y Benjamin y otros Vs. Trinidad y Tobago Sentencia de de junio de Fondo Reparaciones y Costas En el Caso Hilaire Constantine y Benjamin y otros la Corte Interamericana de Derechos Humanos en adelante la Corte Interamericana la Corte o el Tribunal integrada por los siguientes jueces Ant\u00f4nio A. Can\u00e7ado Trindade Presidente Alirio Abreu Burelli Vicepresidente Hern\u00e1n Salgado Pesantes Juez Oliver Jackman Juez Sergio Garc\u00eda Ram\u00edrez ", - "values": [ - "Corte Interamericana de Derechos Humanos" - ] - }, - { - "text": "Resoluci\u00f3n del Presidente de la Corte Interamericana de Derechos Humanos De de diciembre de Caso de los Ni\u00f1os de la Calle Villagr\u00e1n Morales y otros Vs. Guatemala Supervisi\u00f3n de Cumplimiento de Sentencias VISTOS La Sentencia de fondo dictada por la Corte Interamericana de Derechos Humanos en adelante la Corte la Corte Interamericana o el Tribunal el de noviembre de La Sentencia de reparaciones dictada por la Corte Interamericana el de mayo de La Resoluci\u00f3n de la Corte Interamericana de ", - "values": [ - "Corte Interamericana de Derechos Humanos" - ] - }, - { - "text": "RESOLUCI\u00d3N DE LA PRESIDENTA DE LA CORTE INTERAMERICANA DE DERECHOS HUMANOS DE DE DICIEMBRE DE MEDIDAS PROVISIONALES RESPECTO DE COLOMBIA CASO CABALLERO DELGADO Y SANTANA VISTO Las Sentencias de fondo y de reparaciones y costas dictadas en el caso Caballero Delgado y Santana por la Corte Interamericana de Derechos Humanos en adelante la Corte Interamericana la Corte o el Tribunal el de diciembre de y el de enero de respectivamente. Las Resoluciones de la Corte Interamericana de de de ", - "values": [ - "Corte Interamericana de Derechos Humanos" - ] - }, - { - "text": "VOTO PARCIALMENTE DISIDENTE DEL JUEZ ALBERTO P\u00c9REZ P\u00c9REZ CASO CRUZ S\u00c1NCHEZ Y OTROS VS. PER\u00da La Corte determin\u00f3 que Eduardo Nicol\u00e1s Cruz S\u00e1nchez fue privado arbitrariamente de su vida en violaci\u00f3n del art\u00edculo de la Convenci\u00f3n Americana en relaci\u00f3n con el art\u00edculo de la misma p\u00e1rr. de la sentencia. Asimismo determin\u00f3 que hab\u00edan existido diversas violaciones en perjuicio de los familiares considerados como presuntas v\u00edctimas en este caso p\u00e1rrs. y En los p\u00e1rrafos y siguientes la Corte y ", - "values": [ - "Corte Interamericana de Derechos Humanos" - ] - }, - { - "text": "RESOLUCI\u00d3N DE LA CORTE INTERAMERICANA DE DERECHOS HUMANOS DE DE FEBRERO CASO EL AMPARO VS. VENEZUELA SUPERVISI\u00d3N DE CUMPLIMIENTO DE SENTENCIA VISTO La Sentencia de fondo dictada por la Corte Interamericana de Derechos Humanos en adelante la Corte Interamericana la Corte o el Tribunal el de enero de La Sentencia de reparaciones en adelante la Sentencia dictada por la Corte Interamericana el de septiembre de mediante la cual Fij\u00f3 en US el total de las indemnizaciones debidas a los de ", - "values": [ - "Corte Interamericana de Derechos Humanos" - ] - }, - { - "text": "RESOLUCI\u00d3N DE LA CORTE INTERAMERICANA DE DERECHOS HUMANOS DE DE ENERO DE MEDIDAS PROVISIONALES RESPECTO DE EL SALVADOR AMPLIACION DE MEDIDAS PROVISIONES A FAVOR DE RICARDO ALBERTO IGLESIAS HERRERA EN RELACION CON LAS MEDIDAS PROVISIONALES A FAVOR DE GLORIA GIRALT DE GARCIA PRIETO Y OTROS CASO GARCIA PRIETO Y OTROS VISTOS El escrito de solicitudes argumentos y pruebas presentado por el Centro por la Justicia y el Derecho Internacional y el Instituto de Derechos Humanos de la Universidad ", - "values": [ - "Corte Interamericana de Derechos Humanos" - ] - }, - { - "text": "Caso do Pres\u00eddio Miguel Castro Castro Vs. Peru Senten\u00e7a de de novembro de M\u00e9rito Repara\u00e7\u00f5es e Custas VOTO FUNDAMENTADO DO JUIZ A. A. CAN\u00c7ADO TRINDADE Votei a favor da aprova\u00e7\u00e3o pela Corte Interamericana de Direitos Humanos da presente Senten\u00e7a no Caso do Pres\u00eddio Castro Castro. Dada a import\u00e2ncia que atribuo a algumas quest\u00f5es suscitadas no curso do processo contencioso perante a Corte no presente caso vejome na obriga\u00e7\u00e3o de acrescentar \u00e0 presente Senten\u00e7a este Voto Fundamentado com minhas ", - "values": [ - "Corte Interamericana de Derechos Humanos" - ] - }, - { - "text": "Resoluci\u00f3n de la Corte Interamericana de Derechos Humanos De de junio de Caso Baena Ricardo y otros Trabajadores Vs. Panam\u00e1 Cumplimiento de Sentencia VISTOS La sentencia dictada en el caso Baena Ricardo y otros por la Corte Interamericana de Derechos Humanos en adelante la Corte o el Tribunal el de febrero de en cuyos puntos resolutivos por unanimidad declar\u00f3 que el Estado viol\u00f3 los principios de legalidad y de irretroactividad consagrados en el art\u00edculo de la Convenci\u00f3n Americana sobre", - "values": [ - "Corte Interamericana de Derechos Humanos" - ] - }, - { - "text": "INFORME N\u00ba PETICI\u00d3N ADMISIBILIDAD INTERNOS PENITENCIARIA DE MENDOZA ARGENTINA de octubre de I. RESUMEN El de mayo de la Comisi\u00f3n Interamericana de Derechos Humanos en adelante la Comisi\u00f3n o la CIDH recibi\u00f3 una petici\u00f3n presentada por varios internos de la Penitenciar\u00eda de Mendoza en la cual se alega la responsabilidad de la Rep\u00fablica de Argentina en adelante el Estado o el Estado argentino por la violaci\u00f3n de los derechos de los internos a la integridad f\u00edsica a la salud y a la vida. El", - "values": [ - "Comisi\u00f3n Interamericana de Derechos Humanos" - ] - }, - { - "text": "RESOLUCI\u00d3N DE LA CORTE INTERAMERICANA DE DERECHOS HUMANOS DE DE SEPTIEMBRE DE CASO CINCO PENSIONISTAS VS. PER\u00da CUMPLIMIENTO DE SENTENCIA VISTOS La Sentencia de fondo reparaciones y costas emitida el de febrero de por la Corte Interamericana de Derechos Humanos en adelante la Corte la Corte Interamericana o el Tribunal mediante la cual el Tribunal resolvi\u00f3 inter alia por unanimidad que el Estado viol\u00f3 el derecho a la propiedad privada consagrado en el art\u00edculo de la Convenci\u00f3n Americana ", - "values": [ - "Corte Interamericana de Derechos Humanos" - ] - }, - { - "text": "INFORME N\u00ba ADMISIBILIDAD PETICI\u00d2N KAREN ATALA E HIJAS CHILE de julio de I. RESUMEN El de noviembre de la Comisi\u00f3n Interamericana de Derechos Humanos la Comisi\u00f3n Interamericana o la CIDH recibi\u00f3 una denuncia en la que se alega la responsabilidad internacional del Estado chileno por violaciones cometidas mediante una sentencia de la Corte Suprema de Justicia que le revoca a la Sra. Karen Atala la tuici\u00f3n de sus tres hijas y a\u00f1os de edad fund\u00e1ndose exclusivamente en prejuicios basados ", - "values": [ - "Comisi\u00f3n Interamericana de Derechos Humanos" - ] - }, - { - "text": "Corte Interamericana de Derechos Humanos Caso de los Comerciantes Vs. Colombia Sentencia de de junio de Excepci\u00f3n Preliminar En el caso de los Comerciantes la Corte Interamericana de Derechos Humanos en adelante la Corte Interamericana la Corte o el Tribunal integrada por los siguientes jueces Ant\u00f4nio A. Can\u00e7ado Trindade Presidente Alirio Abreu Burelli Vicepresidente Hern\u00e1n Salgado Pesantes Juez Oliver Jackman Juez Sergio Garc\u00eda Ram\u00edrez Juez y Rafael Nieto Navia Juez ad hoc presentes adem\u00e1s", - "values": [ - "Corte Interamericana de Derechos Humanos" - ] - }, - { - "text": "Resoluci\u00f3n de la Presidenta de la Corte Interamericana de Derechos Humanos de diciembre de Medidas Provisionales Respecto de Venezuela Asunto Eloisa Barrios y Otros Visto La Resoluci\u00f3n de la Presidencia de la Corte Interamericana de Derechos Humanos en adelante la Corte Interamericana la Corte o el Tribunal emitida el de septiembre de Las Resoluciones de la Corte Interamericana emitidas el de noviembre de el de junio y el de septiembre de Mediante la \u00faltima la Corte resolvi\u00f3 que ", - "values": [ - "Corte Interamericana de Derechos Humanos" - ] - }, - { - "text": "Resoluci\u00f3n de la Presidenta de la Corte Interamericana de Derechos Humanos de de abril de Solicitud de Medidas Provisionales Caso Gonz\u00e1lez y otras Campo Algodonero vs. M\u00e9xico Visto El escrito de demanda presentado por la Comisi\u00f3n Interamericana de Derechos Humanos en adelante la Comisi\u00f3n Interamericana o la Comisi\u00f3n ante la Corte Interamericana de Derechos Humanos en adelante la Corte Interamericana la Corte o el Tribunal el de noviembre de El escrito de solicitudes argumentos y pruebas ", - "values": [ - "Corte Interamericana de Derechos Humanos" - ] - }, - { - "text": "RESOLUCI\u00d3N DE LA CORTE INTERAMERICANA DE DERECHOS HUMANOS DE DE ABRIL DE MEDIDAS PROVISIONALES RESPECTO DE LOS ESTADOS UNIDOS MEXICANOS ASUNTO FERN\u00c1NDEZ ORTEGA Y OTROS VISTO El escrito de la Comisi\u00f3n Interamericana de Derechos Humanos en adelante la Comisi\u00f3n Interamericana o la Comisi\u00f3n de de abril de y sus anexos recibidos el d\u00eda de abril de mediante los cuales someti\u00f3 a la Corte Interamericana de Derechos Humanos en adelante la Corte Interamericana la Corte o el Tribunal una solicitud ", - "values": [ - "Corte Interamericana de Derechos Humanos" - ] - }, - { - "text": "RELAT\u00d3RIO N\u00ba PETI\u00c7\u00c3O ADMISSIBILIDADE INTERNOS PRES\u00cdDIO URSO BRANCO ROND\u00d4NIA BRASIL de outubro de I. RESUMO Em de junho de a Justi\u00e7a Global e a Comiss\u00e3o Justi\u00e7a e Paz da Arquidiocese Porto Velho doravante denominados peticion\u00e1rios apresentaram \u00e0 Comiss\u00e3o Interamericana de Direitos Humanos doravante denominada CIDH ou a Comiss\u00e3o uma peti\u00e7\u00e3o contra a Rep\u00fablica Federativa do Brasil doravante denominada Brasil ou Estado. Esta peti\u00e7\u00e3o denuncia a situa\u00e7\u00e3o de viol\u00eancia e perigo em que se as ", - "values": [ - "Comisi\u00f3n Interamericana de Derechos Humanos" - ] - }, - { - "text": "RESOLUCI\u00d3N DE LA CORTE INTERAMERICANA DE DERECHOS HUMANOS DE DE ENERO DE MEDIDAS PROVISIONALES RESPECTO DE GUATEMALA CASO MACK CHANG Y OTROS VISTO Las Resoluciones de la Corte Interamericana de Derechos Humanos en adelante tambi\u00e9n la Corte la Corte Interamericana o el Tribunal de de agosto de de febrero y de junio de de enero y de noviembre de y de mayo de En esta \u00faltima Resoluci\u00f3n la Corte requiri\u00f3 al Estado que contin\u00fae implementando las medidas que fueran necesarias para los ", - "values": [ - "Corte Interamericana de Derechos Humanos" - ] - }, - { - "text": "RESOLU\u00c7\u00c3O DA CORTE INTERAMERICANA DE DIREITOS HUMANOS DE DE OUTUBRO DE MEDIDAS PROVIS\u00d3RIAS A RESPEITO DO BRASIL ASSUNTO DO COMPLEXO PENITENCI\u00c1RIO DE CURADO VISTO A Resolu\u00e7\u00e3o emitida pela Corte Interamericana de Direitos Humanos doravante denominada a Corte Interamericana a Corte ou o Tribunal em de maio de na qual entre outros requereu \u00e0 Rep\u00fablica Federativa do Brasil doravante denominado Brasil ou o Estado que adotasse de forma imediata todas as medidas que fossem necess\u00e1rias para a e ", - "values": [ - "Corte Interamericana de Derechos Humanos" - ] - }, - { - "text": "INFORME No. PETICI\u00d3N ADMISIBILIDAD \u00c1NGEL ALBERTO DUQUE COLOMBIA de noviembre de I. RESUMEN El de febrero de la Comisi\u00f3n Interamericana de Derechos Humanos en adelante la Comisi\u00f3n recibi\u00f3 una petici\u00f3n presentada por la Comisi\u00f3n Colombiana de Juristas y Germ\u00e1n Humberto Rinc\u00f3n Perfetti en adelante los peticionarios en la cual se alega la responsabilidad de la Rep\u00fablica de Colombia en adelante el Estado el Estado colombiano o Colombia por la falta de acceso de \u00c1ngel Alberto Duque en adelante", - "values": [ - "Comisi\u00f3n Interamericana de Derechos Humanos" - ] - }, - { - "text": "RESOLUCI\u00d3N DE LA CORTE INTERAMERICANA DE DERECHOS HUMANOS DE DE DICIEMBRE DE MEDIDAS PROVISIONALES LUISIANA R\u00cdOS Y OTROS RESPECTO DE VENEZUELA VISTOS La Resoluci\u00f3n de la Corte Interamericana de Derechos Humanos en adelante la Corte Interamericana la Corte o el Tribunal de de noviembre de relativa a las medidas provisionales solicitadas por la Comisi\u00f3n Interamericana de Derechos Humanos en adelante la Comisi\u00f3n Interamericana o la Comisi\u00f3n a favor de los se\u00f1ores Luisiana R\u00edos Armando Amaya ", - "values": [ - "Corte Interamericana de Derechos Humanos" - ] - }, - { - "text": "RESOLUCI\u00d3N DE LA CORTE INTERAMERICANA DE DERECHOS HUMANOS DE DE JUNIO DE MEDIDAS PROVISIONALES SOLICITADAS POR LA COMISI\u00d3N INTERAMERICANA DE DERECHOS HUMANOS RESPECTO DE LA REP\u00daBLICA DE HAIT\u00cd CASO LYSIAS FLEURY VISTOS El escrito de la Comisi\u00f3n Interamericana de Derechos Humanos en adelante la Comisi\u00f3n o la Comisi\u00f3n Interamericana de de marzo de mediante el cual someti\u00f3 a la Corte Interamericana de Derechos Humanos en adelante la Corte o la Corte Interamericana de acuerdo con el art\u00edculo ", - "values": [ - "Corte Interamericana de Derechos Humanos" - ] - }, - { - "text": "CORTE INTERAMERICANA DE DERECHOS HUMANOS Caso de los Hermanos G\u00f3mez Paquiyauri Vs. Per\u00fa Sentencia de de julio de Fondo Reparaciones y Costas En el caso de los hermanos G\u00f3mez Paquiyauri la Corte Interamericana de Derechos Humanos en adelante la Corte Interamericana la Corte o el Tribunal integrada por los siguientes jueces Sergio Garc\u00eda Ram\u00edrez Presidente Alirio Abreu Burelli Vicepresidente Oliver Jackman Juez Ant\u00f4nio A. Can\u00e7ado Trindade Juez Cecilia Medina Quiroga Jueza Manuel E. Ventura y ", - "values": [ - "Corte Interamericana de Derechos Humanos" - ] - }, - { - "text": "RESOLUCI\u00d3N DE LA CORTE INTERAMERICANA DE DERECHOS HUMANOS DE DE JUNIO DE MEDIDAS PROVISIONALES ORDENADAS POR LA CORTE INTERAMERICANA DE DERECHOS HUMANOS RESPECTO DE LA REP\u00daBLICA DE GUATEMALA CASO COLOTENANGO VISTOS La Resoluci\u00f3n de la Corte Interamericana de Derechos Humanos en adelante la Corte o la Corte Interamericana de de junio de mediante la cual Requiri\u00f3 al Gobierno de Guatemala que adoptase sin dilaci\u00f3n cuantas medidas fuesen necesarias para proteger el derecho a la vida e de ", - "values": [ - "Corte Interamericana de Derechos Humanos" - ] - }, - { - "text": "Corte Interamericana de Derechos Humanos Caso Raxcac\u00f3 Reyes Vs. Guatemala Sentencia de de febrero de Interpretaci\u00f3n de la Sentencia de Fondo Reparaciones y Costas En el caso Raxcac\u00f3 Reyes La Corte Interamericana de Derechos Humanos en adelante la Corte la Corte Interamericana o el Tribunal integrada por los siguientes jueces Sergio Garc\u00eda Ram\u00edrez Presidente Alirio Abreu Burelli Vicepresidente Oliver Jackman Juez Ant\u00f4nio A. Can\u00e7ado Trindade Juez Cecilia Medina Quiroga Jueza y Manuel E. Ventura", - "values": [ - "Corte Interamericana de Derechos Humanos" - ] - }, - { - "text": "RESOLUCI\u00d3N DE LA CORTE INTERAMERICANA DE DERECHOS HUMANOS DE DE MAYO DE CASO TIU TOJIN VS. GUATEMALA SUPERVISI\u00d3N DE CUMPLIMIENTO DE SENTENCIA VISTO La Sentencia de fondo reparaciones y costas en adelante la Sentencia dictada por la Corte Interamericana de Derechos Humanos en adelante la Corte Interamericana la Corte o el Tribunal el de noviembre de mediante la cual dispuso por unanimidad que el Estado debe investigar los hechos que generaron las violaciones del presente caso e juzgar y ", - "values": [ - "Corte Interamericana de Derechos Humanos" - ] - }, - { - "text": "VOTO DISIDENTE DEL JUEZ AD HOC ALEJANDRO MONTIEL ARG\u00dcELLO He disentido de los puntos resolutivos de esta sentencia que declara que el Estado de El Salvador ha violado los art\u00edculos y de la Convenci\u00f3n Americana sobre Derechos Humanos. La primera disposici\u00f3n citada ha sido interpretada por esta Corte en el sentido de que no s\u00f3lo comprende garant\u00edas judiciales a favor de los acusados o de los litigantes en un juicio sino tambi\u00e9n establece la obligaci\u00f3n del Estado de investigar todo hecho del ", - "values": [ - "Corte Interamericana de Derechos Humanos" - ] - }, - { - "text": "Resoluci\u00f3n del Presidente de la Corte Interamericana de Derechos Humanos De de Diciembre de Caso Loayza Tamayo Vs. Per\u00fa Supervisi\u00f3n de Cumplimiento de Sentencia VISTOS La Sentencia de fondo emitida en el presente caso por la Interamericana de Derechos Humanos en adelante la Corte la Interamericana o el Tribunal el de septiembre de Corte Corte La Sentencia de reparaciones dictada en el presente caso por la Corte Interamericana el de noviembre de La Sentencia de interpretaci\u00f3n de la de ", - "values": [ - "Corte Interamericana de Derechos Humanos" - ] - }, - { - "text": "RESOLU\u00c7\u00c3O DA CORTE INTERAMERICANA DE DIREITOS HUMANOS DE DE AGOSTO DE MEDIDAS PROVIS\u00d3RIAS A RESPEITO DA REP\u00daBLICA FEDERATIVA DO BRASIL ASSUNTO DA UNIDADE DE INTERNA\u00c7\u00c3O SOCIOEDUCATIVA VISTO As Resolu\u00e7\u00f5es ditadas pela Corte Interamericana de Direitos Humanos doravante a Corte Interamericana a Corte ou o Tribunal em de fevereiro e de setembro de de abril e de novembro de nas quais entre outros requeriu \u00e0 Rep\u00fablica Federativa do Brasil doravante o Estado ou Brasil adotar de forma imediata", - "values": [ - "Corte Interamericana de Derechos Humanos" - ] - }, - { - "text": "INFORME N\u00ba PETICI\u00d3N ADMISIBILIDAD Leopoldo L\u00f3pez Mendoza VENEZUELA de julio de I. RESUMEN El de marzo de la Comisi\u00f3n Interamericana de Derechos Humanos en adelante tambi\u00e9n la Comisi\u00f3n Interamericana la Comisi\u00f3n o la CIDH recibi\u00f3 una petici\u00f3n presentada por el se\u00f1or Leopoldo L\u00f3pez Mendoza en nombre propio en adelante tambi\u00e9n el peticionario o la presunta v\u00edctima en la cual se alega la violaci\u00f3n por parte de la Rep\u00fablica Bolivariana de Venezuela en adelante tambi\u00e9n Venezuela el Estado o ", - "values": [ - "Comisi\u00f3n Interamericana de Derechos Humanos" - ] - }, - { - "text": "INFORME N\u00ba ADMISIBILIDAD PETICI\u00d3N RONALD ERNESTO RAXACAC\u00d3 REYES GUATEMALA de octubre de I. RESUMEN El de enero de la Comisi\u00f3n Interamericana de Derechos Humanos en adelante la Comisi\u00f3n o la CIDH recibi\u00f3 una petici\u00f3n presentada por el Centro por la Justicia y el Derecho Internacional CEJIL el Instituto de Estudios Comparados en Ciencias Penales de Guatemala ICCPG y el Instituto de Defensa P\u00fablica Penal de Guatemala en adelante los peticionarios en contra de la Rep\u00fablica Guatemala en el", - "values": [ - "Comisi\u00f3n Interamericana de Derechos Humanos" - ] - }, - { - "text": "DISSENTING OPINION OF JUDGE MONTIELARG\u00dcELLO I am dissatisfied with some of the assertions assessments and arguments made in the Judgment in so far as they concern violations of the American Convention although I consider it unnecessary to enter into each one in detail in such a complex case except when they lead to conclusions contrary to those that have been approved. I voted in favor of all the operative paragraphs save those relating to the double jeopardy of Ms. Mar\u00eda Elena LoayzaTamayo ", - "values": [ - "Corte Interamericana de Derechos Humanos" - ] - }, - { - "text": "Resoluci\u00f3n de La Presidenta Corte Interamericana de Derechos Humanos de de noviembre de Caso de la Masacre de Mapirip\u00e1n Vs. Colombia Supervisi\u00f3n de Cumplimiento de Sentencia y Medidas provisionales Vistos A Supervisi\u00f3n de cumplimiento de la Sentencia La Sentencia de fondo reparaciones y costas dictada el de septiembre de en adelante la Sentencia por la Corte Interamericana de Derechos Humanos en adelante la Corte la Corte Interamericana o el Tribunal mediante la cual el Tribunal decidi\u00f3 ", - "values": [ - "Corte Interamericana de Derechos Humanos" - ] - }, - { - "text": "RESOLUCI\u00d3N DE LA CORTE INTERAMERICANA DE DERECHOS HUMANOS DEL DE DICIEMBRE DE MEDIDAS PROVISIONALES SOLICITADAS POR LA COMISI\u00d3N INTERAMERICANA DE DERECHOS HUMANOS RESPECTO DE GUATEMALA CASO COLOTENANGO La Corte Interamericana de Derechos Humanos integrada de la siguiente manera Rafael Nieto Navia Presidente H\u00e9ctor FixZamudio Vicepresidente Alejandro Montiel Arg\u00fcello Juez M\u00e1ximo Pacheco G\u00f3mez Juez Hern\u00e1n Salgado Pesantes Juez presentes adem\u00e1s Manuel E. Ventura Robles Secretario Ana Mar\u00eda Reina", - "values": [ - "Corte Interamericana de Derechos Humanos" - ] - }, - { - "text": "RESOLUCI\u00d3N DEL PRESIDENTE DE LA CORTE INTERAMERICANA DE DERECHOS HUMANOS EN EJERCICIO PARA EL PRESENTE CASO DE DE JULIO DE CASO OSORIO RIVERA Y OTROS VS. PER\u00da VISTO El escrito de sometimiento del caso presentado por la Comisi\u00f3n Interamericana de Derechos Humanos en adelante tambi\u00e9n la Comisi\u00f3n Interamericana o la Comisi\u00f3n ante la Corte Interamericana de Derechos Humanos en adelante la Corte Interamericana la Corte o el Tribunal el de junio de mediante el cual ofreci\u00f3 un dictamen pericial ", - "values": [ - "Corte Interamericana de Derechos Humanos" - ] - }, - { - "text": "RESOLUCI\u00d3N DE LA CORTE INTERAMERICANA DE DERECHOS HUMANOS DE DE NOVIEMBRE DE CASO GARRIDO Y BAIGORRIA vs. ARGENTINA SUPERVISI\u00d3N DE CUMPLIMIENTO DE SENTENCIA VISTOS La Sentencia de fondo dictada por la Corte Interamericana de Derechos Humanos en adelante la Corte la Corte Interamericana o el Tribunal el de febrero de mediante la cual inter alia Tom\u00f3 nota del reconocimiento efectuado por la Argentina acerca de los hechos articulados en la demanda. Tom\u00f3 nota igualmente de su reconocimiento ", - "values": [ - "Corte Interamericana de Derechos Humanos" - ] - }, - { - "text": "RESOLUCI\u00d3N DE LA CORTE INTERAMERICANA DE DERECHOS HUMANOS DE DE JUNIO DE CASO BALDE\u00d3N GARC\u00cdA VS. PER\u00da SUPERVISI\u00d3N DE CUMPLIMIENTO DE SENTENCIA VISTO La Sentencia de fondo reparaciones y costas en adelante la Sentencia dictada en el presente caso por la Corte Interamericana de Derechos Humanos en adelante la Corte Interamericana la Corte o el Tribunal el de abril de Dicho fallo estableci\u00f3 que el de septiembre de como parte de un operativo contrainsurgente llevado a cabo en el Departamento", - "values": [ - "Corte Interamericana de Derechos Humanos" - ] - }, - { - "text": "CORTE INTERAMERICANA DE DIREITOS HUMANOS CASO V\u00c9LEZ LOOR VS. PANAM\u00c1 SENTEN\u00c7A DE DE NOVEMBRO DE Exce\u00e7\u00f5es Preliminares M\u00e9rito Repara\u00e7\u00f5es e Custas No caso V\u00e9lez Loor A Corte Interamericana de Direitos Humanos doravante denominada Interamericana Corte ou Tribunal integrada pelos seguintes ju\u00edzes Corte Diego Garc\u00edaSay\u00e1n Presidente Leonardo A. Franco VicePresidente Manuel E. Ventura Robles Juiz Margarette May Macaulay Ju\u00edza Rhadys Abreu Blondet Ju\u00edza Alberto P\u00e9rez P\u00e9rez Juiz e Eduardo Vio Grossi ", - "values": [ - "Corte Interamericana de Derechos Humanos" - ] - }, - { - "text": "RESOLUCI\u00d3N DE LA CORTE INTERAMERICANA DE DERECHOS HUMANOS DE DE MAYO DE SOLICITUD DE MEDIDAS PROVISIONALES PRESENTADA POR ALEJANDRO PONCE VILLAC\u00cdS Y ALEJANDRO PONCE MART\u00cdNEZ RESPECTO DE LA REP\u00daBLICA DE ECUADOR VISTO La Sentencia de de mayo de sobre excepci\u00f3n preliminar y fondo y la Sentencia de de marzo de sobre reparaciones y costas en el caso Salvador Chiriboga Vs. Ecuador. El de marzo de los abogados del caso Salvador Chiriboga vs. Ecuador se\u00f1ores Alejandro Ponce Villac\u00eds y Ponce ", - "values": [ - "Corte Interamericana de Derechos Humanos" - ] - }, - { - "text": "RESOLUCI\u00d3N DE LA CORTE INTERAMERICANA DE DERECHOS HUMANOS DE DE MAYO DE CASO ESCHER Y OTROS VS. BRASIL SUPERVISI\u00d3N DE CUMPLIMIENTO DE SENTENCIA VISTO La Sentencia de excepciones preliminares fondo reparaciones y costas en adelante la Sentencia de de julio de mediante la cual la Corte Interamericana de Derechos Humanos en adelante la Corte Interamericana la Corte o el Tribunal dispuso inter alia que El Estado debe publicar en el Diario Oficial en otro diario de amplia circulaci\u00f3n nacional ", - "values": [ - "Corte Interamericana de Derechos Humanos" - ] - }, - { - "text": "RESOLUCI\u00d3N DE LA CORTE INTERAMERICANA DE DERECHOS HUMANOS DE DE JUNIO DE MEDIDAS PROVISIONALES ADOPTADAS POR LA CORTE INTERAMERICANA DE DERECHOS HUMANOS RESPECTO DE LA REP\u00daBLICA DE COLOMBIA CASO GIRALDO CARDONA VISTOS La resoluci\u00f3n del Presidente de la Corte Interamericana de Derechos Humanos en adelante el Presidente de de octubre de mediante la cual decidi\u00f3 Requerir al Gobierno de Colombia que adopte sin dilaci\u00f3n cuantas medidas sean necesarias para proteger la vida e integridad f\u00edsica ", - "values": [ - "Corte Interamericana de Derechos Humanos" - ] - }, - { - "text": "RESOLUCI\u00d3N DE LA CORTE INTERAMERICANA DE DERECHOS HUMANOS DE DE ABRIL DE MEDIDAS PROVISIONALES RESPECTO DE LOS ESTADOS UNIDOS MEXICANOS CASO DEL CENTRO DE DERECHOS HUMANOS MIGUEL AGUSTIN PRO JUAREZ Y OTROS VISTOS La Resoluci\u00f3n emitida por el Presidente de la Corte Interamericana de Derechos Humanos en adelante la Corte o el Tribunal el de octubre de en consulta con los dem\u00e1s Jueces de la Corte mediante la cual resolvi\u00f3 Requerir al Estado que adopte sin dilaci\u00f3n cuantas medidas sean para ", - "values": [ - "Corte Interamericana de Derechos Humanos" - ] - }, - { - "text": "RESOLUCI\u00d3N DEL PRESIDENTE DE LA CORTE INTERAMERICANA DE DERECHOS HUMANOS DE DE ENERO DE MEDIDAS PROVISIONALES RESPECTO DE LA REP\u00daBLICA DE PARAGUAY ASUNTO LM VISTO La Resoluci\u00f3n dictada por la Corte Interamericana de Derechos Humanos en adelante la Corte Interamericana la Corte o el Tribunal el de julio de mediante la cual el Tribunal resolvi\u00f3 Requerir al Estado del Paraguay que adopte de forma inmediata las medidas que sean necesarias adecuadas y efectivas para proteger los derechos a la", - "values": [ - "Corte Interamericana de Derechos Humanos" - ] - }, - { - "text": "RESOLUCI\u00d3N DE LA CORTE INTERAMERICANA DE DERECHOS HUMANOS DE DE JUNIO DE MEDIDAS PROVISIONALES ORDENADAS POR LA CORTE RESPECTO DE LA REP\u00daBLICA DE COLOMBIA CASO CABALLERO DELGADO Y SANTANA VISTOS La resoluci\u00f3n de la Corte Interamericana de Derechos Humanos en adelante la Corte de de abril de mediante la cual Requiri\u00f3 al Estado de Colombia que adoptara sin dilaci\u00f3n las medidas necesarias para proteger la vida e integridad personal de los se\u00f1ores Gonzalo Arias Alturo Javier P\u00e1ez Guillermo ", - "values": [ - "Corte Interamericana de Derechos Humanos" - ] - }, - { - "text": "RESOLUCI\u00d3N DE LA CORTE INTERAMERICANA DE DERECHOS HUMANOS DEL DE FEBRERO DE MEDIDAS PROVISIONALES SOLICITADAS POR LA COMISI\u00d3N INTERAMERICANA DE DERECHOS HUMANOS RESPECTO DE GUATEMALA CASO COLOTENANGO VISTO La resoluci\u00f3n de la Corte Interamericana de Derechos Humanos en adelante la Corte o la Corte Interamericana de de mayo de en cuya parte dispositiva establece Prorrogar hasta el de febrero de las medidas provisionales ordenadas mediante resoluci\u00f3n de la Corte del de junio de y por ", - "values": [ - "Corte Interamericana de Derechos Humanos" - ] - }, - { - "text": "CORTE INTERAMERICANA DE DERECHOS HUMANOS CASO ANDRADE SALM\u00d3N VS. BOLIVIA SENTENCIA DE DE DICIEMBRE DE Fondo Reparaciones y Costas En el Caso Andrade Salm\u00f3n la Corte Interamericana de Derechos Humanos en adelante la Corte Interamericana la Corte o el Tribunal integrada por los siguientes Jueces Roberto F. Caldas Presidente Eduardo Ferrer MacGregor Poisot Vicepresidente Eduardo Vio Grossi Juez Humberto Antonio Sierra Porto Juez Elizabeth Odio Benito Jueza Eugenio Ra\u00fal Zaffaroni Juez y L. ", - "values": [ - "Corte Interamericana de Derechos Humanos" - ] - }, - { - "text": "RESOLUCI\u00d3N DE LA CORTE INTERAMERICANA DE DERECHOS HUMANOS DE DE JUNIO DE CASO COMERCIANTES VS. COLOMBIA SUPERVISI\u00d3N DE CUMPLIMIENTO DE SENTENCIA VISTO La Sentencia de excepci\u00f3n preliminar en adelante la Sentencia de excepci\u00f3n preliminar emitida por la Corte Interamericana de Derechos Humanos en adelante la Corte la Corte Interamericana o este Tribunal el de junio de y la Sentencia de fondo reparaciones y costas en adelante la Sentencia emitida por el Tribunal el de julio de La Corte ", - "values": [ - "Corte Interamericana de Derechos Humanos" - ] - }, - { - "text": "VOTO RAZONADO DEL JUEZ SERGIO GARC\u00cdA RAM\u00cdREZ PARA LA SENTENCIA DICTADA POR LA CORTE INTERAMERICANA DE DERECHOS HUMANOS EN EL CASO CLAUDE REYES Y OTROS VS. CHILE DEL DE SEPTIEMBRE DE En un cuarto de siglo la jurisprudencia de la Corte Interamericana ha debido explorar el sentido y alcance de numerosos derechos y libertades contenidos en la Convenci\u00f3n Americana. Esta relectura del ordenamiento internacional a la luz del objeto y fin del tratado que se concentran en la tutela m\u00e1s amplia de los ", - "values": [ - "Corte Interamericana de Derechos Humanos" - ] - }, - { - "text": "RESOLUCI\u00d3N DEL PRESIDENTE DE LA CORTE INTERAMERICANA DE DERECHOS HUMANOS DE DE AGOSTO DE SOLICITUD DE AMPLIACI\u00d3N DE MEDIDAS PROVISIONALES RESPECTO DE VENEZUELA ASUNTOS DE DETERMINADOS CENTROS PENITENCIARIOS DE VENEZUELA VISTO La Resoluci\u00f3n de la Corte Interamericana de Derechos Humanos en adelante la Corte Interamericana la Corte o el Tribunal de de noviembre de en los asuntos del Internado Judicial de Monagas La Pica Centro Penitenciario Regi\u00f3n Capital Yare I y Yare II C\u00e1rcel de Yare de", - "values": [ - "Corte Interamericana de Derechos Humanos" - ] - }, - { - "text": "RESOLUCI\u00d3N DE LA CORTE INTERAMERICANA DE DERECHOS HUMANOS DE DE JUNIO DE MEDIDAS PROVISIONALES ADOPTADAS POR LA CORTE INTERAMERICANA DE DERECHOS HUMANOS RESPECTO DE LA REP\u00daBLICA DE GUATEMALA CASO CARPIO NICOLLE VISTOS La resoluci\u00f3n de la Corte Interamericana de Derechos Humanos en adelante la Corte o la Corte Interamericana de de septiembre de en la cual decidi\u00f3 confirmar y hacer suyas las medidas urgentes tomadas por el Presidente mediante resoluciones de de junio y de julio de en las ", - "values": [ - "Corte Interamericana de Derechos Humanos" - ] - }, - { - "text": "RESOLUCI\u00d3N DE LA CORTE INTERAMERICANA DE DERECHOS HUMANOS DE DE JUNIO DE MEDIDAS PROVISIONALES SOLICITADAS POR LA COMISI\u00d3N INTERAMERICANA DE DERECHOS HUMANOS RESPECTO DE LA REP\u00daBLICA DE COLOMBIA CASO CLEMENTE TEHER\u00c1N Y OTROS VISTOS El escrito de de marzo de y sus anexos mediante el cual la Comisi\u00f3n Interamericana de Derechos Humanos en adelante la Comisi\u00f3n o la Comisi\u00f3n Interamericana someti\u00f3 a la Corte Interamericana de Derechos Humanos en adelante la Corte o la Corte Interamericana en ", - "values": [ - "Corte Interamericana de Derechos Humanos" - ] - }, - { - "text": "RESOLUCI\u00d3N DE LA CORTE INTERAMERICANA DE DERECHOS HUMANOS DE DE JULIO DE CASO B\u00c1MACA VEL\u00c1SQUEZ VS. GUATEMALA SUPERVISI\u00d3N DE CUMPLIMIENTO DE SENTENCIA VISTOS La Sentencia de fondo emitida en el presente caso por la Corte Interamericana de Derechos Humanos en adelante la Corte la Corte Interamericana o el Tribunal el de noviembre de La Sentencia de reparaciones dictada en el presente caso por la Corte Interamericana el de febrero de La Resoluci\u00f3n de cumplimiento de sentencia emitida en ", - "values": [ - "Corte Interamericana de Derechos Humanos" - ] - }, - { - "text": " VOTO CONCORDANTE DO JUIZ DIEGO GARC\u00cdASAY\u00c1N Este \u00e9 o primeiro caso que a Corte Interamericana de Direitos Humanos conhece sobre o crucial tema dos direitos pol\u00edticos. \u00c0 significa\u00e7\u00e3o que essa circunst\u00e2ncia \u00fanica d\u00e1 ao caso \u00e9 adicionada a import\u00e2ncia que em si mesmo tem para a afirma\u00e7\u00e3o e prote\u00e7\u00e3o dos referidos direitos em situa\u00e7\u00f5es como a que aqui se apresenta. Al\u00e9m do pr\u00f3prio caso n\u00e3o cabe d\u00favida que a vig\u00eancia dos direitos pol\u00edticos e dos componentes fundamentais da democracia s\u00e3o delicados ", - "values": [ - "Corte Interamericana de Derechos Humanos" - ] - }, - { - "text": "Corte Interamericana de Derechos Humanos Caso Ferm\u00edn Ram\u00edrez Vs. Guatemala Sentencia de de junio de Fondo Reparaciones y Costas En el caso Ferm\u00edn Ram\u00edrez La Corte Interamericana de Derechos Humanos en adelante la Corte la Corte Interamericana o el Tribunal integrada por los siguientes jueces Sergio Garc\u00eda Ram\u00edrez Presidente Alirio Abreu Burelli Vicepresidente Oliver Jackman Juez Ant\u00f4nio A. Can\u00e7ado Trindade Juez Cecilia Medina Quiroga Jueza Manuel E. Ventura Robles Juez Diego Garc\u00edaSay\u00e1n Juez ", - "values": [ - "Corte Interamericana de Derechos Humanos" - ] - }, - { - "text": "Corte Interamericana de Derechos Humanos Caso Tibi Vs. Ecuador Sentencia de de septiembre de Excepciones Preliminares Fondo Reparaciones y Costas En el caso Tibi la Corte Interamericana de Derechos Humanos en adelante la Corte la Corte Interamericana o el Tribunal integrada por los siguientes jueces Sergio Garc\u00eda Ram\u00edrez Presidente Alirio Abreu Burelli Vicepresidente Oliver Jackman Juez Ant\u00f4nio A. Can\u00e7ado Trindade Juez Cecilia Medina Quiroga Jueza Manuel E. Ventura Robles Juez Diego Juez y ", - "values": [ - "Corte Interamericana de Derechos Humanos" - ] - }, - { - "text": "RESOLUCI\u00d3N DE LA CORTE INTERAMERICANA DE DERECHOS HUMANOS DE DE AGOSTO DE CASO DE LAS NI\u00d1AS YEAN Y BOSICO VS. REP\u00daBLICA DOMINICANA SUPERVISI\u00d3N DE CUMPLIMIENTO DE SENTENCIA VISTO La Sentencia de excepciones preliminares fondo reparaciones y costas en adelante la Sentencia emitida en el presente caso por la Corte Interamericana de Derechos Humanos en adelante la Corte la Corte Interamericana o el Tribunal el de septiembre de La Resoluci\u00f3n de Supervisi\u00f3n de Cumplimiento de Sentencia emitida ", - "values": [ - "Corte Interamericana de Derechos Humanos" - ] - }, - { - "text": "INFORME N\u00ba ADMISIBILIDAD PETICI\u00d3N SANTANDER TRIST\u00c1N DONOSO PANAM\u00c1 de octubre de I. RESUMEN El Centro de Asistencia Legal Popular CEALP y el Centro por la Justicia y el Derecho Internacional CEJIL en adelante los peticionarios presentaron una petici\u00f3n el de julio de ante la Comisi\u00f3n Interamericana de Derechos Humanos en adelante la Comisi\u00f3n o la CIDH contra la Rep\u00fablica de Panam\u00e1 en adelante el Estado o Panam\u00e1 en la cual alegan la violaci\u00f3n de los siguientes derechos reconocidos en la ", - "values": [ - "Comisi\u00f3n Interamericana de Derechos Humanos" - ] - }, - { - "text": "VOTO PARCIALMENTE DISIDENTE DEL JUEZ ALBERTO P\u00c9REZ P\u00c9REZ CASO PUEBLOS KALI\u00d1A Y LOKONO VS. SURINAM SENTENCIA DE DE NOVIEMBRE DE Fondo Reparaciones y Costas He disentido con los puntos declarativos a en la medida en que en ellos se invocanindebidamente como fundamentos ciertos art\u00edculos de la Convenci\u00f3n Americana sobre Derechos Humanos presuntamente violados respectivamente los art\u00edculos y La aplicaci\u00f3n de esos art\u00edculos hecha por la Corte en este caso va en contra del sentido claro de ", - "values": [ - "Corte Interamericana de Derechos Humanos" - ] - }, - { - "text": "RESOLUCI\u00d3N DEL PRESIDENTE EN FUNCIONES DE LA CORTE INTERAMERICANA DE DERECHOS HUMANOS DE NOVIEMBRE DE CASO BREWER CAR\u00cdAS VS. VENEZUELA VISTO El escrito de la Rep\u00fablica Bolivariana de Venezuela en adelante el Estado o Venezuela recibido el de noviembre de en la Corte Interamericana de Derechos Humanos en adelante la Corte Interamericana la Corte o el Tribunal mediante el cual inter alia present\u00f3 una recusaci\u00f3n contra los Jueces Diego Garc\u00edaSay\u00e1n Leonardo A. Franco Manuel E. Ventura Robles ", - "values": [ - "Corte Interamericana de Derechos Humanos" - ] - }, - { - "text": "RESOLUCI\u00d3N DE LA CORTE INTERAMERICANA DE DERECHOS HUMANOS DE DE AGOSTO DE CASO ANZUALDO CASTRO VS PER\u00da SUPERVISI\u00d3N DE CUMPLIMIENTO DE SENTENCIA VISTO La Sentencia de Excepci\u00f3n Preliminar Fondo Reparaciones y Costas en adelante la Sentencia dictada por la Corte Interamericana de Derechos Humanos en adelante la Corte Interamericana la Corte o el Tribunal el de septiembre de Los hechos se refieren a la desaparici\u00f3n forzada del se\u00f1or Kenneth Ney Anzualdo Castro en la que se demostr\u00f3 que lo ", - "values": [ - "Corte Interamericana de Derechos Humanos" - ] - }, - { - "text": "RESOLUCI\u00d3N DE LA CORTE INTERAMERICANA DE DERECHOS HUMANOS DE DE FEBRERO DE CASO V\u00c9LEZ LOOR VS. PANAM\u00c1 SUPERVISI\u00d3N DE CUMPLIMIENTO DE SENTENCIA VISTO La Sentencia de excepciones preliminares fondo reparaciones y costas emitida el de noviembre de en adelante la Sentencia por la Corte Interamericana de Derechos Humanos en adelante la Corte Interamericana la Corte o el Tribunal mediante la cual acept\u00f3 el reconocimiento parcial de responsabilidad internacional efectuado por la Rep\u00fablica de en ", - "values": [ - "Corte Interamericana de Derechos Humanos" - ] - }, - { - "text": "Resoluci\u00f3n del Presidente de la Corte Interamericana de Derechos Humanos De de diciembre de Caso Comunidad ind\u00edgena Yakye Axa Vs. Paraguay Supervisi\u00f3n de Cumplimiento de Sentencia VISTOS La Sentencia de fondo reparaciones y costas en adelante la Sentencia dictada por la Corte Interamericana de Derechos Humanos en adelante la Corte la Corte Interamericana o el Tribunal el de junio de mediante la cual dispuso que el Estado deb\u00eda identificar el territorio tradicional de los miembros de la ", - "values": [ - "Corte Interamericana de Derechos Humanos" - ] - }, - { - "text": "Corte Interamericana de Derechos Humanos Caso Herrera Ulloa Vs. Costa Rica Sentencia de de julio de Excepciones Preliminares Fondo Reparaciones y Costas En el caso Herrera Ulloa la Corte Interamericana de Derechos Humanos en adelante la Corte la Corte Interamericana o el Tribunal integrada por los siguientes jueces Sergio Garc\u00eda Ram\u00edrez Presidente Alirio Abreu Burelli Vicepresidente Oliver Jackman Juez Ant\u00f4nio A. Can\u00e7ado Trindade Juez Cecilia Medina Quiroga Jueza Diego Garc\u00edaSay\u00e1n Juez Marco", - "values": [ - "Corte Interamericana de Derechos Humanos" - ] - }, - { - "text": "DISSENTING IN PART OPINION OF AD HOC JUDGE JORGE SANTISTEVAN DE NORIEGA IN THE CASE OF GARC\u00cdAASTO AND RAM\u00cdREZROJAS The duties that in my view an Ad Hoc Judge in an International Court must perform I. In exercising international judicial functions as an Ad Hoc Judge of this Court I have endeavored to bring intimate knowledge to the distinguished judges who are members of the Court on the law in force in the country whose State is on trial and on the practices that within its framework are being ", - "values": [ - "Corte Interamericana de Derechos Humanos" - ] - }, - { - "text": "VOTO DISIDENTE DEL JUEZ FERNANDO VIDAL RAM\u00cdREZ Disiento de la decisi\u00f3n adoptada en la sentencia que desestima las excepciones preliminares opuestas por el agente del Gobierno del Per\u00fa por los fundamentos que paso a exponer. El plazo de seis meses previsto por el art\u00edculo b de la Convenci\u00f3n Americana estuvo vencido al presentarse la denuncia a la Comisi\u00f3n. La sentencia que puso fin al proceso en la jurisdicci\u00f3n militar fue dictada el de septiembre de absolviendo al ciudadano Luis Alberto ", - "values": [ - "Corte Interamericana de Derechos Humanos" - ] - }, - { - "text": "CORTE INTERAMERICANA DE DIREITOS HUMANOS CASO DAS CRIAN\u00c7AS YEAN E BOSICO VS. REP\u00daBLICA DOMINICANA SENTEN\u00c7A DE DE SETEMBRO DE No caso das Crian\u00e7as Yean e Bosico a Corte Interamericana de Direitos Humanos doravante denominada Interamericana a Corte ou o Tribunal integrada pelos seguintes ju\u00edzes a Corte Sergio Garc\u00eda Ram\u00edrez Presidente Alirio Abreu Burelli VicePresidente Oliver Jackman Juiz Ant\u00f4nio A. Can\u00e7ado Trindade Juiz e Manuel E. Ventura Robles Juiz presentes ademais Pablo Saavedra e ", - "values": [ - "Corte Interamericana de Derechos Humanos" - ] - }, - { - "text": "Resoluci\u00f3n de la Corte Interamericana de Derechos Humanos de de noviembre de Medidas Provisionales respecto de la Rep\u00fablica Bolivariana de Venezuela Asunto de la Emisora de Televisi\u00f3n Globovisi\u00f3n VISTOS La Resoluci\u00f3n dictada por el Presidente de la Corte Interamericana de Derechos Humanos en adelante la Corte o el Tribunal el de agosto de mediante la cual en consulta con todos los jueces de la Corte resolvi\u00f3 Requerir al Estado que adopte sin dilaci\u00f3n las medidas que fueran necesarias para", - "values": [ - "Corte Interamericana de Derechos Humanos" - ] - }, - { - "text": "Resoluci\u00f3n del Presidente de la Corte Interamericana de Derechos Humanos de de diciembre de Medidas Provisionales respecto de la Rep\u00fablica Bolivariana de Venezuela Asunto de la Emisora de Televisi\u00f3n Globovisi\u00f3n VISTOS La Resoluci\u00f3n dictada por el Presidente de la Corte Interamericana de Derechos Humanos en adelante la Corte o el Tribunal el de agosto de mediante la cual en consulta con todos los jueces de la Corte resolvi\u00f3 Requerir al Estado que adopte sin dilaci\u00f3n las medidas que fueran ", - "values": [ - "Corte Interamericana de Derechos Humanos" - ] - }, - { - "text": "Corte Interamericana de Derechos Humanos Caso Comunidad ind\u00edgena Yakye Axa Vs. Paraguay Sentencia de de junio de Fondo Reparaciones y Costas En el caso Comunidad ind\u00edgena Yakye Axa la Corte Interamericana de Derechos Humanos en adelante la Corte la Corte Interamericana o el Tribunal integrada por los siguientes jueces Sergio Garc\u00eda Ram\u00edrez Presidente Alirio Abreu Burelli Vicepresidente Oliver Jackman Juez Ant\u00f4nio A. Can\u00e7ado Trindade Juez Cecilia Medina Quiroga Jueza Manuel E. Ventura Robles ", - "values": [ - "Corte Interamericana de Derechos Humanos" - ] - }, - { - "text": "RESOLUCI\u00d3N DE LA CORTE INTERAMERICANA DE DERECHOS HUMANOS DE DE MARZO DE SOLICITUD DE MEDIDAS PROVISIONALES CASO ARTAVIA MURILLO Y OTROS FECUNDACI\u00d3N IN VITRO VS. COSTA RICA VISTO La Sentencia de excepciones preliminares fondo reparaciones y costas en adelante la Sentencia emitida en el presente caso por la Corte Interamericana de Derechos Humanos en adelante la Corte Interamericana la Corte o el Tribunal el de noviembre de La Corte determin\u00f3 que la Rep\u00fablica de Costa Rica en adelante el ", - "values": [ - "Corte Interamericana de Derechos Humanos" - ] - }, - { - "text": "Corte Interamericana de Derechos Humanos Caso Comerciantes Vs. Colombia Sentencia de de julio de Fondo Reparaciones y Costas En el caso Comerciantes la Corte Interamericana de Derechos Humanos en adelante la Corte la Corte Interamericana o el Tribunal integrada por los siguientes jueces Sergio Garc\u00eda Ram\u00edrez Presidente Alirio Abreu Burelli Vicepresidente Oliver Jackman Juez Ant\u00f4nio A. Can\u00e7ado Trindade Juez Cecilia Medina Quiroga Jueza Manuel E. Ventura Robles Juez y Ernesto Rey Cantor Juez ", - "values": [ - "Corte Interamericana de Derechos Humanos" - ] - }, - { - "text": "RESOLUCI\u00d3N DE LA CORTE INTERAMERICANA DE DERECHOS HUMANOS DE DE ABRIL DE MEDIDAS PROVISIONALES RESPECTO DE EL SALVADOR ASUNTO MEL\u00c9NDEZ QUIJANO Y OTROS VISTO Las Resoluciones de la Corte Interamericana de Derechos Humanos en adelante tambi\u00e9n la Corte Interamericana la Corte o el Tribunal emitidas los d\u00edas de mayo de de noviembre de de febrero de de agosto de y de octubre de En esta \u00faltima la Corte resolvi\u00f3 inter alia Desestimar la solicitud de ampliaci\u00f3n de medidas provisionales ", - "values": [ - "Corte Interamericana de Derechos Humanos" - ] - }, - { - "text": "Resoluci\u00f3n de la Corte Interamericana de Derechos Humanos De de Noviembre de Caso Blake Vs. Guatemala Supervisi\u00f3n de Cumplimiento de Sentencia VISTOS La Sentencia de fondo emitida en el presente caso por la Corte Interamericana de Derechos Humanos en adelante la Corte la Corte Interamericana o el Tribunal el de enero de mediante la cual dispuso en los puntos resolutivos tercero y cuarto que el Estado de Guatemala est\u00e1 obligado a poner todos los medios a su alcance para investigar los y", - "values": [ - "Corte Interamericana de Derechos Humanos" - ] - }, - { - "text": "Corte Interamericana de Derechos Humanos Caso Palamara Iribarne Vs. Chile Sentencia de de noviembre de Fondo Reparaciones y Costas En el caso Palamara Iribarne la Corte Interamericana de Derechos Humanos en adelante la Corte Interamericana la Corte o el Tribunal integrada por los siguientes jueces Sergio Garc\u00eda Ram\u00edrez Presidente Alirio Abreu Burelli Vicepresidente Oliver Jackman Juez Ant\u00f4nio A. Can\u00e7ado Trindade Juez y Manuel E. Ventura Robles Juez presentes adem\u00e1s Pablo Saavedra Alessandri ", - "values": [ - "Corte Interamericana de Derechos Humanos" - ] - }, - { - "text": "RESOLUCI\u00d3N DE LA CORTE INTERAMERICANA DE DERECHOS HUMANOS DE DE SEPTIEMBRE DE MEDIDAS PROVISIONALES SOLICITADAS POR LA COMISI\u00d3N INTERAMERICANA DE DERECHOS HUMANOS RESPECTO DE LA REP\u00daBLICA BOLIVARIANA DE VENEZUELA CASO DE MARTA COLOMINA y LILIANA VELASQUEZ VISTOS La comunicaci\u00f3n de de julio de y sus anexos mediante la cual la Comisi\u00f3n Interamericana de Derechos Humanos en adelante la Comisi\u00f3n Interamericana o la Comisi\u00f3n someti\u00f3 a la Corte Interamericana de Derechos Humanos en adelante la ", - "values": [ - "Corte Interamericana de Derechos Humanos" - ] - }, - { - "text": "Corte Interamericana de Derechos Humanos Caso Genie Lacayo Vs. Nicaragua Sentencia de de enero de Fondo Reparaciones y Costas En el caso Genie Lacayo la Corte Interamericana de Derechos Humanos integrada por los siguientes jueces H\u00e9ctor FixZamudio Presidente Hern\u00e1n Salgado Pesantes Vicepresidente Rafael Nieto Navia Juez Alejandro Montiel Arg\u00fcello Juez M\u00e1ximo Pacheco G\u00f3mez Juez presentes adem\u00e1s Manuel E. Ventura Robles Secretario y V\u00edctor M. Rodr\u00edguez Rescia Secretario adjunto interino de con", - "values": [ - "Corte Interamericana de Derechos Humanos" - ] - }, - { - "text": "INFORME N\u00ba CASO Sobre Admisibilidad COLOMBIA de marzo de Los peticionarios en esta causa REINICIAR y la Comisi\u00f3n Colombiana de Juristas alegan que la Rep\u00fablica de Colombia el Estado o el Estado colombiano o Colombia es responsable de haber violado derechos consagrados en la Convenci\u00f3n Americana sobre Derechos Humanos la Convenci\u00f3n o la Convenci\u00f3n Americana en relaci\u00f3n con la persecuci\u00f3n de miembros del partido pol\u00edtico Uni\u00f3n Patri\u00f3tica. La Comisi\u00f3n Interamericana de Derechos Humanos la ", - "values": [ - "Comisi\u00f3n Interamericana de Derechos Humanos" - ] - }, - { - "text": "INFORME N\u00ba PETICI\u00d3N ADMISIBILIDAD MAR\u00cdA CRISTINA REVER\u00d3N TRUJILLO REP\u00daBLICA BOLIVARIANA DE VENEZUELA de julio de I. RESUMEN El de abril de la Comisi\u00f3n Interamericana de Derechos Humanos en adelante la Comisi\u00f3n o CIDH recibi\u00f3 una petici\u00f3n presentada por Rafael Chavero Gazdik en adelante el peticionario en la cual se alega la violaci\u00f3n por parte de la Rep\u00fablica Bolivariana de Venezuela en adelante Venezuela el Estado o el Estado venezolano de los art\u00edculos y de la Convenci\u00f3n sobre ", - "values": [ - "Comisi\u00f3n Interamericana de Derechos Humanos" - ] - }, - { - "text": "RESOLUCI\u00d3N DE LA CORTE INTERAMERICANA DE DERECHOS HUMANOS DE DE MAYO DE CASO IBSEN C\u00c1RDENAS E IBSEN PE\u00d1A VS. BOLIVIA SUPERVISI\u00d3N DE CUMPLIMIENTO DE SENTENCIA VISTO La Sentencia de fondo reparaciones y costas en adelante la Sentencia o el Fallo dictada por la Corte Interamericana de Derechos Humanos en adelante la Corte Interamericana la Corte o el Tribunal el de septiembre de mediante la cual declar\u00f3 responsable internacionalmente al Estado Plurinacional de Bolivia en adelante el Estado o ", - "values": [ - "Corte Interamericana de Derechos Humanos" - ] - }, - { - "text": "RESOLUCI\u00d3N DE LA CORTE INTERAMERICANA DE DERECHOS HUMANOS DE DE JUNIO DE MEDIDAS PROVISIONALES SOLICITADAS POR LA COMISI\u00d3N INTERAMERICANA DE DERECHOS HUMANOS RESPECTO DE LA REP\u00daBLICA DE GUATEMALA CASOS PANIAGUA MORALES Y OTROS Y V\u00c1SQUEZ Y OTROS N. VISTOS El proceso en el caso Paniagua Morales y otros en tr\u00e1mite ante la Corte Interamericana de Derechos Humanos en adelante la Corte o la Corte Interamericana y la transcripci\u00f3n de las declaraciones rendidas por los se\u00f1ores Oscar Humberto y de", - "values": [ - "Corte Interamericana de Derechos Humanos" - ] - }, - { - "text": "VOTO CONCURRENTE DEL JUEZ EDUARDO VIO GROSSI Concurro con mi voto a la Sentencia de Excepciones Preliminares Fondo Reparaciones y Costas en el Caso Cepeda Vargas Vs. Colombia emitida con esta fecha por la Corte Interamericana de Derechos Humanos CorteIDH estimando necesario expresar empero lo que sigue en lo atingente a las indemnizaciones que en ella se disponen con relaci\u00f3n al lucro cesante En el sistema interamericano de protecci\u00f3n de los derechos humanos las indemnizaciones se decretan y ", - "values": [ - "Corte Interamericana de Derechos Humanos" - ] - }, - { - "text": "Resoluci\u00f3n de la Corte Interamericana de Derechos Humanos De de noviembre de Caso Masacre Plan de S\u00e1nchez Vs. Guatemala Supervisi\u00f3n de Cumplimiento de Sentencia VISTOS La Sentencia de Reparaciones y Costas en adelante la Sentencia dictada por la Corte Interamericana de Derechos Humanos en adelante la Corte la Corte Interamericana o el Tribunal el de noviembre de mediante la cual Dispuso Por unanimidad que El Estado debe investigar efectivamente los hechos de la Masacre Plan de S\u00e1nchez con", - "values": [ - "Corte Interamericana de Derechos Humanos" - ] - }, - { - "text": "RESOLUCI\u00d3N DE LA CORTE INTERAMERICANA DE DERECHOS HUMANOS DE DE SEPTIEMBRE DE CASO JUAN HUMBERTO S\u00c1NCHEZ vs. HONDURAS CUMPLIMIENTO DE SENTENCIA VISTOS La Sentencia de excepciones preliminares fondo y reparaciones emitida el de junio de por la Corte Interamericana de Derechos Humanos en adelante la Corte la Corte Interamericana o el Tribunal mediante la cual decidi\u00f3 desestimar la excepci\u00f3n preliminar interpuesta por el Estado. Y DECLAR\u00d3 QUE el Estado viol\u00f3 el derecho a la libertad en el", - "values": [ - "Corte Interamericana de Derechos Humanos" - ] - }, - { - "text": "RESOLU\u00c7\u00c3O DO PRESIDENTE EM EXERC\u00cdCIO DA CORTE INTERAMERICANA DE DIREITOS HUMANOS DE DE FEVEREIRO DE CASO TRABALHADORES DA FAZENDA BRASIL VERDE VS. BRASIL RESOLU\u00c7\u00c3O SOBRE DILIG\u00caNCIA IN SITU VISTOS O Escrito de Submiss\u00e3o do Caso e o Relat\u00f3rio de M\u00e9rito no da Comiss\u00e3o Interamericana de Direitos Humanos doravante a Comiss\u00e3o Interamericana ou a Comiss\u00e3o o Escrito de Solicita\u00e7\u00f5es Argumentos e Provas doravante o Escrito de Peti\u00e7\u00f5es e Argumentos dos Representantes das supostas v\u00edtimas doravante os ", - "values": [ - "Corte Interamericana de Derechos Humanos" - ] - }, - { - "text": "RESOLUCI\u00d3N DE LA CORTE INTERAMERICANA DE DERECHOS HUMANOS DE DE DICIEMBRE DE MEDIDAS PROVISIONALES CASO LYSIAS FLEURY RESPECTO DE HAIT\u00cd VISTOS La Resoluci\u00f3n del Presidente de la Corte Interamericana de Derechos Humanos en adelante el Presidente de de marzo de mediante la cual decidi\u00f3 Requerir al Estado que adoptara sin dilaci\u00f3n las medidas que fueran necesarias para proteger la vida e integridad personal del se\u00f1or Lysias Fleury. Requerir al Estado que investigara los hechos que motivaron", - "values": [ - "Corte Interamericana de Derechos Humanos" - ] - }, - { - "text": "Resoluci\u00f3n de la Presidenta de la Corte Interamericana de Derechos Humanos de de diciembre de Caso Guti\u00e9rrez Soler Vs. Colombia. Medidas Provisionales Supervisi\u00f3n del Cumplimiento de Sentencia Vistos A Supervisi\u00f3n de implementaci\u00f3n de las medidas provisionales La Resoluci\u00f3n de la Corte Interamericana de Derechos Humanos en adelante la Corte la Corte Interamericana o el Tribunal de de marzo de mediante la cual requiri\u00f3 a la Rep\u00fablica de Colombia en adelante el Estado o Colombia inter alia ", - "values": [ - "Corte Interamericana de Derechos Humanos" - ] - }, - { - "text": "VOTO PARCIALMENTE DISIDENTE DEL JUEZ ADHOC DIEGO RODRIGUEZ PINZON EN EL CASO SALVADOR CHIRIBOGA VS. ECUADOR SENTENCIA DE MAYO DE Estoy de acuerdo con la decisi\u00f3n de la Corte en este caso con excepci\u00f3n de la violaci\u00f3n del Art\u00edculo de la Convenci\u00f3n. Debo mencionar que mi voto parcialmente disidente responde a un debate que es a mi juicio de la mayor importancia en materia de protecci\u00f3n de derechos humanos en la Am\u00e9ricas y al que se han referido con anterioridad reconocidos juristas del ", - "values": [ - "Corte Interamericana de Derechos Humanos" - ] - }, - { - "text": "RESOLUCI\u00d3N DE LA CORTE INTERAMERICANA DE DERECHOS HUMANOS DE DE ENERO DE CASO BLAKE VS. GUATEMALA SUPERVISION DE CUMPLIMIENTO DE SENTENCIA VISTOS La Sentencia de fondo emitida en el presente caso por la Corte Interamericana de Derechos Humanos en adelante la Corte la Corte Interamericana o el Tribunal el de enero de mediante la cual declar\u00f3 que el Estado de Guatemala est\u00e1 obligado a poner todos los medios a su alcance para investigar los hechos denunciados y sancionar a los responsables ", - "values": [ - "Corte Interamericana de Derechos Humanos" - ] - }, - { - "text": "RESOLUCI\u00d3N DEL PRESIDENTE DE LA CORTE INTERAMERICANA DE DERECHOS HUMANOS DE DE JULIO DE AMPLIACI\u00d3N DE LAS MEDIDAS PROVICIONALES SOLICITADAS POR LA COMISI\u00d3N INTERAMERICA DE DERECHOS HUMANOS RESPECTO LA REP\u00daBLICA DE TRINIDAD Y TOBAGO CASOS JAMES Y OTROS VISTOS La Resoluci\u00f3n de la Corte Interamericana de Derechos Humanos en adelante la Corte de de junio de en la cual decidi\u00f3 Ordenar a Trinidad y Tobago que tome todas las medidas necesarias para preservar la vida e integridad personal de los ", - "values": [ - "Corte Interamericana de Derechos Humanos" - ] - }, - { - "text": "CORTE INTERAMERICANA DE DERECHOS HUMANOS CASO FLEURY Y OTROS VS. HAIT\u00cd SENTENCIA DE DE NOVIEMBRE DE FONDO y REPARACIONES En el caso Fleury y otros la Corte Interamericana de Derechos Humanos en adelante la Corte Interamericana la Corte o el Tribunal integrada por los siguientes jueces Diego Garc\u00edaSay\u00e1n Presidente Leonardo Franco Vicepresidente Manuel E. Ventura Robles Juez Margarette May Macaulay Jueza Rhadys Abreu Blondet Jueza Alberto P\u00e9rez P\u00e9rez Juez y Eduardo Vio Grossi Juez presentes ", - "values": [ - "Corte Interamericana de Derechos Humanos" - ] - }, - { - "text": "RESOLUCI\u00d3N DE LA CORTE INTERAMERICANA DE DERECHOS HUMANOS DE DE FEBRERO DE CASO RICARDO CANESE VS. PARAGUAY CUMPLIMIENTO DE SENTENCIA VISTOS La Sentencia sobre el fondo reparaciones y costas dictada por la Corte Interamericana de Derechos Humanos en adelante la Corte o el Tribunal el de agosto de en la cual por unanimidad declar\u00f3 que El Estado viol\u00f3 el derecho a la libertad de pensamiento y de expresi\u00f3n consagrado en el art\u00edculo de la Convenci\u00f3n Americana sobre Derechos Humanos en con ", - "values": [ - "Corte Interamericana de Derechos Humanos" - ] - }, - { - "text": "Corte Interamericana de Derechos Humanos Caso Cantoral Benavides Vs. Per\u00fa Sentencia de de diciembre de Reparaciones y Costas En el caso Cantoral Benavides la Corte Interamericana de Derechos Humanos en adelante la Corte la Corte Interamericana o el Tribunal integrada por los siguientes jueces Ant\u00f4nio A. Can\u00e7ado Trindade Presidente M\u00e1ximo Pacheco G\u00f3mez Vicepresidente Hern\u00e1n Salgado Pesantes Juez Alirio Abreu Burelli Juez Sergio Garc\u00eda Ram\u00edrez Juez Carlos Vicente de Roux Rengifo Juez y Fernando", - "values": [ - "Corte Interamericana de Derechos Humanos" - ] - }, - { - "text": "RESOLUCI\u00d3N DE LA CORTE INTERAMERICANA DE DERECHOS HUMANOS DE DE JUNIO DE CASO PUEBLO IND\u00cdGENA KICHWA DE SARAYAKU VS. ECUADOR SUPERVISI\u00d3N DE CUMPLIMIENTO DE SENTENCIA VISTO La Sentencia de fondo y reparaciones en adelante la Sentencia dictada por la Corte Interamericana de Derechos Humanos en adelante la Corte Interamericana la Corte o el Tribunal el de junio de En ella la Corte declar\u00f3 que la Rep\u00fablica del Ecuador en adelante el Estado o Ecuador es internacionalmente responsable por la ", - "values": [ - "Corte Interamericana de Derechos Humanos" - ] - }, - { - "text": "RESOLUCI\u00d3N DEL PRESIDENTE DE LA CORTE INTERAMERICANA DE DERECHOS HUMANOS DE DE DICIEMBRE DE FONDO DE ASISTENCIA LEGAL DE V\u00cdCTIMAS CASO ROCHAC HERN\u00c1NDEZ Y OTROS VS. EL SALVADOR VISTO El escrito de de marzo de mediante el cual la Comisi\u00f3n Interamericana de Derechos Humanos en adelante la Comisi\u00f3n Interamericana o la Comisi\u00f3n someti\u00f3 a la Corte Interamericana de Derechos Humanos en adelante la Corte Interamericana la Corte o el Tribunal un caso en contra de la Rep\u00fablica de El Salvador en el ", - "values": [ - "Corte Interamericana de Derechos Humanos" - ] - }, - { - "text": "CORTE INTERAMERICANA DE DERECHOS HUMANOS CASO GARC\u00cdA Y FAMILIARES VS. GUATEMALA SENTENCIA DE DE NOVIEMBRE DE FONDO REPARACIONES Y COSTAS En el caso Garc\u00eda y familiares la Corte Interamericana de Derechos Humanos en adelante la Corte Interamericana la Corte o el Tribunal integrada por los siguientes jueces Diego Garc\u00edaSay\u00e1n Presidente Manuel E. Ventura Robles Vicepresidente Leonardo A. Franco Juez Margarette May Macaulay Jueza Rhadys Abreu Blondet Jueza Alberto P\u00e9rez P\u00e9rez Juez y Eduardo Vio ", - "values": [ - "Corte Interamericana de Derechos Humanos" - ] - }, - { - "text": "Corte Interamericana de Derechos Humanos Caso de la Panel Blanca Paniagua Morales y otros Vs. Guatemala Sentencia del de marzo de Fondo En el caso Paniagua Morales y otros la Corte Interamericana de Derechos Humanos integrada por los siguientes jueces Hern\u00e1n Salgado Pesantes Presidente Ant\u00f4nio A. Can\u00e7ado Trindade Vicepresidente H\u00e9ctor FixZamudio Juez Alejandro Montiel Arg\u00fcello Juez M\u00e1ximo Pacheco G\u00f3mez Juez Alirio Abreu Burelli Juez y Edgar E. Larraondo Salguero Juez ad hoc presentes adem\u00e1s ", - "values": [ - "Corte Interamericana de Derechos Humanos" - ] - }, - { - "text": "Corte Interamericana de Derechos Humanos Caso El Amparo Vs. Venezuela Sentencia de de enero de Fondo En el caso El Amparo la Corte Interamericana de Derechos Humanos integrada por los siguientes jueces H\u00e9ctor FixZamudio Presidente Hern\u00e1n Salgado Pesantes Vicepresidente Alejandro Montiel Arg\u00fcello Juez M\u00e1ximo Pacheco G\u00f3mez Juez Ant\u00f4nio A. Can\u00e7ado Trindade Juez presentes adem\u00e1s Manuel E. Ventura Robles Secretario y Ana Mar\u00eda Reina Secretaria adjunta de acuerdo con los art\u00edculos y del de la ", - "values": [ - "Corte Interamericana de Derechos Humanos" - ] - }, - { - "text": "RESOLUCI\u00d3N DE LA PRESIDENTA DE LA CORTE INTERAMERICANA DE DERECHOS HUMANOS DE DE MARZO DE CASO BAYARRI VS. ARGENTINA VISTOS El escrito de demanda Derechos Humanos en adelante la Corte Interamericana de Interamericana la Corte o el un testimonio y dos peritajes. presentado por la Comisi\u00f3n Interamericana de la Comisi\u00f3n Interamericana o la Comisi\u00f3n ante Derechos Humanos en adelante la Corte Tribunal el de julio de en el cual ofreci\u00f3 El escrito de solicitudes argumentos y pruebas en adelante ", - "values": [ - "Corte Interamericana de Derechos Humanos" - ] - }, - { - "text": "CORTE INTERAMERICANA DE DIREITOS HUMANOS CASO BARRETO LEIVA VS. VENEZUELA SENTEN\u00c7A DE DE NOVEMBRO DE M\u00e9rito Repara\u00e7\u00f5es e Custas No caso Barreto Leiva A Corte Interamericana de Direitos Humanos doravante denominada Interamericana a Corte ou o Tribunal integrada pelos seguintes ju\u00edzes a Corte Diego Garc\u00eda Say\u00e1n Presidente em exerc\u00edcio Sergio Garc\u00eda Ram\u00edrez Juiz Manuel E. Ventura Robles Juiz Margarette May Macaulay Ju\u00edza e Rhadys Abreu Blondet Ju\u00edza presentes ademais Pablo Saavedra Alessandri e", - "values": [ - "Corte Interamericana de Derechos Humanos" - ] - }, - { - "text": "VOTO INDIVIDUAL DEL JUEZ EDUARDO VIO GROSSI CASO GARC\u00cdA Y FAMILIARES VS. GUATEMALA SENTENCIA DE DE NOVIEMBRE DE Fondo Reparaciones y Costas DE LA CORTE INTERAMERICANA DE DERECHOS HUMANOS Emito el presente voto individual con relaci\u00f3n a la Sentencia dictada en autos en adelante la Sentencia a los efectos de dejar expresa constancia de que si bien la comparto no concuerdo empero con que la Corte Interamericana de Derechos Humanos en adelante la Corte haya estimado prudente acoger la solicitud ", - "values": [ - "Corte Interamericana de Derechos Humanos" - ] - }, - { - "text": "RESOLUCI\u00d3N DE LA CORTE INTERAMERICANA DE DERECHOS HUMANOS DE DE OCTUBRE DE CASO KAWAS FERN\u00c1NDEZ VS. HONDURAS SUPERVISI\u00d3N DE CUMPLIMIENTO DE SENTENCIA VISTO La Sentencia de fondo reparaciones y costas en adelante la Sentencia dictada por la Corte Interamericana de Derechos Humanos en adelante la Corte Interamericana la Corte o el Tribunal el de abril de en el presente caso. La Resoluci\u00f3n de Supervisi\u00f3n de Cumplimiento de la Sentencia emitida por el Tribunal el de febrero de mediante la ", - "values": [ - "Corte Interamericana de Derechos Humanos" - ] - }, - { - "text": "Corte Interamericana de Derechos Humanos Caso del Tribunal Constitucional Vs. Per\u00fa Sentencia de septiembre de Competencia En el caso del Tribunal Constitucional la Corte Interamericana de Derechos Humanos en adelante la Corte la Corte Interamericana o el Tribunal integrada por los siguientes jueces Ant\u00f4nio A. Can\u00e7ado Trindade Presidente M\u00e1ximo Pacheco G\u00f3mez Vicepresidente Oliver Jackman Juez Alirio Abreu Burelli Juez Sergio Garc\u00eda Ram\u00edrez Juez y Carlos Vicente de Roux Rengifo Juez presentes ", - "values": [ - "Corte Interamericana de Derechos Humanos" - ] - }, - { - "text": "Corte Interamericana de Derechos Humanos Caso Cantoral Benavides Vs. Per\u00fa Sentencia de de septiembre de Excepciones Preliminares En el caso Cantoral Benavides la Corte Interamericana de Derechos Humanos integrada por los siguientes jueces Hern\u00e1n Salgado Pesantes Presidente Ant\u00f4nio A. Can\u00e7ado Trindade Vicepresidente M\u00e1ximo Pacheco G\u00f3mez Juez Oliver Jackman Juez Sergio Garc\u00eda Ram\u00edrez Juez Carlos Vicente de Roux Rengifo Juez Fernando Vidal Ram\u00edrez Juez ad hoc presentes adem\u00e1s Manuel E. Ventura ", - "values": [ - "Corte Interamericana de Derechos Humanos" - ] - }, - { - "text": "RESOLUCI\u00d3N DE LA CORTE INTERAMERICANA DE DERECHOS HUMANOS DEL DE DICIEMBRE DE MEDIDAS PROVISIONALES SOLICITADAS POR LA COMISI\u00d3N INTERAMERICANA DE DERECHOS HUMANOS RESPECTO DE COLOMBIA CASO CABALLERO DELGADO Y SANTANA La Corte Interamericana de Derechos Humanos integrada de la siguiente manera H\u00e9ctor FixZamudio Presidente ad hoc Rafael Nieto Navia Juez Alejandro Montiel Arg\u00fcello Juez M\u00e1ximo Pacheco G\u00f3mez Juez Hern\u00e1n Salgado Pesantes Juez presentes adem\u00e1s Manuel E. Ventura Robles Secretario Ana", - "values": [ - "Corte Interamericana de Derechos Humanos" - ] - }, - { - "text": "RESOLUCI\u00d3N DEL PRESIDENTE EN EJERCICIO PARA EL PRESENTE CASO DE LA CORTE INTERAMERICANA DE DERECHOS HUMANOS DE DE SEPTIEMBRE DE CASO ABRILL ALOSILLA Y OTROS VS. PER\u00da VISTO El escrito de demanda presentado por la Comisi\u00f3n Interamericana de Derechos Humanos en adelante la Comisi\u00f3n Interamericana o la Comisi\u00f3n ante la Corte Interamericana de Derechos Humanos en adelante la Corte Interamericana la Corte o el Tribunal el de enero de en el que ofreci\u00f3 el dictamen de un perito. El escrito de y", - "values": [ - "Corte Interamericana de Derechos Humanos" - ] - }, - { - "text": "INFORME No. PETICI\u00d3N ADMISIBILIDAD NADEGE DORZEMA Y OTROS o MASACRE DE GUAYUBIN REP\u00daBLICA DOMINICANA de diciembre de I. RESUMEN El de noviembre de la Comisi\u00f3n Interamericana de Derechos Humanos en adelante la Comisi\u00f3n Interamericana la Comisi\u00f3n o la CIDH recibi\u00f3 una petici\u00f3n presentada por el Grupo de Apoyo a los Repatriados y Refugiados representado por el Sr. Cherubin Tragelus y por el Centro Cultural Dom\u00ednico Haitiano representado por el Sr. Antonio Pol Emil en adelante los en la ", - "values": [ - "Comisi\u00f3n Interamericana de Derechos Humanos" - ] - }, - { - "text": "RESOLUCI\u00d3N DE LA CORTE INTERAMERICANA DE DERECHOS HUMANOS DE DE NOVIEMBRE DE MEDIDAS PROVISIONALES SOLICITADAS POR LA COMISI\u00d3N INTERAMERICANA DE DERECHOS HUMANOS RESPECTO DE LA REP\u00daBLICA DE VENEZUELA LUIS UZC\u00c1TEGUI VS. VENEZUELA VISTOS La comunicaci\u00f3n de de noviembre de y sus anexos mediante la cual la Comisi\u00f3n Interamericana de Derechos Humanos en adelante la Comisi\u00f3n Interamericana o la Comisi\u00f3n someti\u00f3 a la Corte Interamericana de Derechos Humanos en adelante la Corte Interamericana la ", - "values": [ - "Corte Interamericana de Derechos Humanos" - ] - }, - { - "text": "VOTO PARCIALMENTE DISIDENTE DEL JUEZ ALBERTO PEREZ PEREZ SENTENCIA DE LA CORTE INTERAMERICANA DE DERECHOS HUMANOS CASO ATALA RIFFO Y NI\u00d1AS VS. CHILE DE DE FEBRERO DE He votado negativamente el punto resolutivo seg\u00fan el cual el Estado es responsable de la violaci\u00f3n de los art\u00edculos y de la Convenci\u00f3n Americana pues entiendo que solamente se deb\u00eda haber mencionado como violado al art\u00edculo porque ante los hechos del presente caso I es suficiente declarar una violaci\u00f3n del art\u00edculo y II no ", - "values": [ - "Corte Interamericana de Derechos Humanos" - ] - }, - { - "text": "INFORME N PETICI\u00d3N ADMISIBILIDAD PUEBLO IND\u00cdGENA KICHWA DE SARAYAKU Y SUS MIEMBROS ECUADOR de octubre de I. RESUMEN El de diciembre de la Comisi\u00f3n Interamericana de Derechos Humanos en adelante la Comisi\u00f3n Interamericana la Comisi\u00f3n o la CIDH recibi\u00f3 una petici\u00f3n presentada por la Asociaci\u00f3n de Pueblos Kichwa de Sarayaku el Centro por la Justicia y el Derecho Internacional CEJIL y el Centro de Derechos Econ\u00f3micos y Sociales CDES en adelante los peticionarios en la cual se alega la de la", - "values": [ - "Comisi\u00f3n Interamericana de Derechos Humanos" - ] - }, - { - "text": "RESOLUCI\u00d3N DE LA CORTE INTERAMERICANA DE DERECHOS HUMANOS DE DE OCTUBRE DE MEDIDAS PROVISIONALES RESPECTO DE EL SALVADOR ASUNTO MEL\u00c9NDEZ QUIJANO Y OTROS VISTO Las Resoluciones de la Corte Interamericana de Derechos Humanos en adelante tambi\u00e9n la Corte Interamericana la Corte o el Tribunal emitidas el de mayo de de noviembre de de febrero de y de agosto de En esta \u00faltima la Corte resolvi\u00f3 inter alia Levantar las medidas provisionales ordenadas por la Corte Interamericana de Derechos", - "values": [ - "Corte Interamericana de Derechos Humanos" - ] - }, - { - "text": "RESOLUCI\u00d3N DE LA CORTE INTERAMERICANA DE DERECHOS HUMANOS DE DE NOVIEMBRE DE AMPLIACI\u00d3N DE MEDIDAS PROVISIONALES RESPECTO DEL ESTADO DEL PER\u00da CASO IVCHER BRONSTEIN VISTOS La Resoluci\u00f3n de la Corte Interamericana de Derechos Humanos en adelante la Corte o la Corte Interamericana de de noviembre de en la que resolvi\u00f3 Requerir al Estado del Per\u00fa que adopte sin dilaci\u00f3n cuantas medidas sean necesarias para proteger la integridad f\u00edsica ps\u00edquica y moral y el derecho a las garant\u00edas judiciales ", - "values": [ - "Corte Interamericana de Derechos Humanos" - ] - }, - { - "text": "VOTO DISIDENTE DEL JUEZ ORIHUELA IBERICO I. II. En lo que concierne a mi voto disidente sobre la sentencia de de septiembre de sobre Reparaciones del Caso Neira Alegr\u00eda y otros en lo que se refiere al punto primero de la parte resolutiva de la misma debo expresar que mi voto se limita a cuestionar el monto de la indemnizaci\u00f3n ordenada de US en favor de los familiares de las v\u00edctimas a que se refiere este caso por cuanto esta sentencia debe cumplir necesariamente con fijar una indemnizaci\u00f3n ", - "values": [ - "Corte Interamericana de Derechos Humanos" - ] - }, - { - "text": "CORTE INTERAMERICANA DE DIREITOS HUMANOS CASO ARTAVIA MURILLO E OUTROS FECUNDA\u00c7\u00c3O IN VITRO VS. COSTA RICA SENTEN\u00c7A DE DE NOVEMBRO DE Exce\u00e7\u00f5es Preliminares M\u00e9rito Repara\u00e7\u00f5es e Custas No Caso Artavia Murillo e outros Fecunda\u00e7\u00e3o in vitro a Corte Interamericana de Direitos Humanos doravante denominada Interamericana a Corte ou o Tribunal integrada pelos seguintes ju\u00edzes a Corte Diego Garc\u00edaSay\u00e1n Presidente Leonardo A. Franco Juiz Margarette May Macaulay Ju\u00edza Rhadys Abreu Blondet Ju\u00edza Alberto ", - "values": [ - "Corte Interamericana de Derechos Humanos" - ] - }, - { - "text": "RESOLUCI\u00d3N DE LA CORTE INTERAMERICANA DE DERECHOS HUMANOS DE DE NOVIEMBRE DE CASO TRUJILLO OROZA VS. BOLIVIA SUPERVISI\u00d3N DE CUMPLIMIENTO DE SENTENCIA VISTO La Sentencia de fondo dictada por la Corte Interamericana de Derechos Humanos en adelante la Corte la Corte Interamericana o el Tribunal el de enero de La Sentencia de reparaciones y costas dictada por la Corte Interamericana el de febrero de Las Resoluciones dictadas por la Corte el de noviembre de y de septiembre de La por ", - "values": [ - "Corte Interamericana de Derechos Humanos" - ] - }, - { - "text": "VOTO RAZONADO DEL JUEZ AA. CAN\u00c7ADO TRINDADE Voto a favor de la adopci\u00f3n por la Corte Interamericana de Derechos Humanos de la presente Sentencia sobre Excepciones Preliminares en el caso Hilaire versus Trinidad y Tobago que a mi juicio representa un aporte significativo del Derecho Internacional de los Derechos Humanos a la evoluci\u00f3n de un aspecto espec\u00edfico del Derecho Internacional contempor\u00e1neo a saber el atinente a la jurisdicci\u00f3n internacional obligatoria basada en la aceptaci\u00f3n de la ", - "values": [ - "Corte Interamericana de Derechos Humanos" - ] - }, - { - "text": "VOTO CONCURRENTE DEL JUEZ EDUARDO VIO GROSSI CASO TORRES MILLACURA Y OTROS VS. ARGENTINA DE FECHA DE AGOSTO DE Fondo Reparaciones y Costas Concurro con mi voto a la aprobaci\u00f3n de la Sentencia del r\u00f3tulo dejando constancia que lo hago en el entendido que lo expresado en los p\u00e1rrafos y de la misma en nada contradicen la posici\u00f3n que expuse tanto en los Votos Disidentes del mismo tenor que emit\u00ed el de julio de respecto de la Resoluciones de la Corte relativas a Medidas Provisionales respecto", - "values": [ - "Corte Interamericana de Derechos Humanos" - ] - }, - { - "text": "RESOLUCI\u00d3N DE LA CORTE INTERAMERICANA DE DERECHOS HUMANOS DEL DE SEPTIEMBRE DE MEDIDAS PROVISIONALES SOLICITADAS POR LA COMISI\u00d3N INTERAMERICANA DE DERECHOS HUMANOS RESPECTO DE LA REPUBLICA DE GUATEMALA CASO BLAKE La Corte Interamericana de Derechos Humanos integrada de la siguiente manera H\u00e9ctor FixZamudio Presidente Hern\u00e1n Salgado Pesantes Vicepresidente Alejandro Montiel Arg\u00fcello Juez M\u00e1ximo Pacheco G\u00f3mez Juez Oliver Jackman Juez Alirio Abreu Burelli Juez Ant\u00f4nio A. Can\u00e7ado Trindade Juez ", - "values": [ - "Corte Interamericana de Derechos Humanos" - ] - }, - { - "text": "RESOLUCI\u00d3N DE LA CORTE INTERAMERICANA DE DERECHOS HUMANOS DE DE ABRIL DE MEDIDAS PROVISIONALES RESPECTO DE PARAGUAY ASUNTO LM VISTO La Resoluci\u00f3n dictada por la Corte Interamericana de Derechos Humanos en adelante la Corte Interamericana la Corte o el Tribunal el de julio de mediante la cual el Tribunal resolvi\u00f3 inter alia Requerir al Estado del Paraguay que adopte de forma inmediata las medidas que sean necesarias adecuadas y efectivas para proteger los derechos a la integridad personal ", - "values": [ - "Corte Interamericana de Derechos Humanos" - ] - }, - { - "text": "VOTO CONCURRENTE DEL JUEZ AA. CAN\u00c7ADO TRINDADE Voto a favor de la adopci\u00f3n de la presente Sentencia sobre el fondo y reparaciones en el caso de los Cinco Pensionistas versus Per\u00fa en la cual la Corte Interamericana de Derechos Humanos primeramente afirma el car\u00e1cter de derecho adquirido del derecho a la pensi\u00f3n subsumido en el derecho a la propiedad privada bajo el art\u00edculo de la Convenci\u00f3n Americana sobre Derechos Humanos y vinculado a la perenne ineludible e irreductible funci\u00f3n social del ", - "values": [ - "Corte Interamericana de Derechos Humanos" - ] - }, - { - "text": "Resoluci\u00f3n de la Corte Interamericana de Derechos Humanos de de septiembre de Caso del Caracazo Vs. Venezuela Supervisi\u00f3n de Cumplimiento de Sentencia Visto La Sentencia de fondo dictada por la Corte Interamericana de Derechos Humanos en adelante la Corte Interamericana la Corte o el Tribunal el de noviembre de La Sentencia de reparaciones y costas en adelante la Sentencia dictada por la Corte el de agosto de Las Resoluciones de Supervisi\u00f3n de Cumplimiento de Sentencia dictadas por la ", - "values": [ - "Corte Interamericana de Derechos Humanos" - ] - }, - { - "text": "Resolu\u00e7\u00e3o da Presidenta da Corte Interamericana de Direitos Humanos de de junho de Medidas Provis\u00f3rias a Respeito do Brasil Assunto das crian\u00e7as e adolescentes privados de liberdade no Complexo do Tatuap\u00e9 da Funda\u00e7\u00e3o CASA VISTO As Resolu\u00e7\u00f5es emitidas pela Corte Interamericana de Direitos Humanos doravante denominada Corte Interamericana ou Corte em de novembro de em de novembro de em de julho de e em de julho de Nesta \u00faltima a Corte resolveu Reiterar ao Estado que mantenha e adote ", - "values": [ - "Corte Interamericana de Derechos Humanos" - ] - }, - { - "text": "RESOLUCI\u00d3N DE LA CORTE INTERAMERICANA DE DERECHOS HUMANOS DE DE NOVIEMBRE DE CASO CASTILLO P\u00c1EZ VS. PER\u00da CUMPLIMIENTO DE SENTENCIA VISTOS La Sentencia de fondo dictada por la Corte Interamericana de Derechos Humanos en adelante la Corte la Corte Interamericana o el Tribunal el de noviembre de en la cual por una unanimidad dispuso Que el Estado del Per\u00fa viol\u00f3 en perjuicio de Ernesto Rafael Castillo P\u00e1ez el derecho a la libertad personal reconocido en el art\u00edculo de la Convenci\u00f3n sobre ", - "values": [ - "Corte Interamericana de Derechos Humanos" - ] - }, - { - "text": "RESOLUCI\u00d3N DE LA CORTE INTERAMERICANA DE DERECHOS HUMANOS DE DE ENERO DE CASO B\u00c1MACA VEL\u00c1SQUEZ VS. GUATEMALA SUPERVISI\u00d3N DE CUMPLIMIENTO DE SENTENCIA MEDIDAS PROVISIONALES VISTO A Supervisi\u00f3n de cumplimiento de Sentencia La Sentencia de fondo dictada por la Corte Interamericana de Derechos Humanos en adelante la Corte la Corte Interamericana o el Tribunal el de noviembre de La Sentencia de reparaciones y costas dictada por la Corte Interamericana el de febrero de La Resoluci\u00f3n de la ", - "values": [ - "Corte Interamericana de Derechos Humanos" - ] - }, - { - "text": "RESOLUCI\u00d3N DE LA CORTE INTERAMERICANA DE DERECHOS HUMANOS DE DE MAYO MEDIDAS PROVISIONALES ORDENADAS POR LA CORTE INTERAMERICANA DE DERECHOS HUMANOS RESPECTO DE LA REP\u00daBLICA DE TRINIDAD Y TOBAGO CASOS JAMES Y OTROS VISTOS Respecto de las medidas provisionales ordenadas por la Corte Interamericana de Derechos Humanos en adelante la Corte el de agosto de en los casos James y otros en favor de ocho personas condenados a la pena de muerte en la Rep\u00fablica de Trinidad y Tobago en adelante el o ", - "values": [ - "Corte Interamericana de Derechos Humanos" - ] - }, - { - "text": "RESOLUCI\u00d3N DE LA CORTE INTERAMERICANA DE DERECHOS HUMANOS DE DE AGOSTO DE MEDIDAS PROVISIONALES RESPECTO DE VENEZUELA ASUNTO MARTA COLOMINA VISTO Las Resoluciones dictadas por la Corte Interamericana de Derechos Humanos en adelante tambi\u00e9n la Corte o el Tribunal entre el de septiembre de y el de julio de en las cuales orden\u00f3 a la Rep\u00fablica Bolivariana de Venezuela en adelante el Estado o Venezuela que adoptara las medidas que fueran necesarias para proteger la vida integridad personal y ", - "values": [ - "Corte Interamericana de Derechos Humanos" - ] - }, - { - "text": "RESOLUCI\u00d3N DE LA CORTE INTERAMERICANA DE DERECHOS HUMANOS DE DE JULIO DE CASO MOLINA THEISSEN VS. GUATEMALA CUMPLIMIENTO DE SENTENCIAS VISTOS La Sentencia de fondo dictada por la Corte Interamericana de Derechos Humanos en adelante la Corte la Corte Interamericana o el Tribunal el de mayo de mediante la cual DECIDI\u00d3 por unanimidad Reafirmar su Resoluci\u00f3n de de abril de en la cual tuvo por retiradas todas las excepciones preliminares interpuestas por el Estado y admiti\u00f3 el reconocimiento", - "values": [ - "Corte Interamericana de Derechos Humanos" - ] - }, - { - "text": "RESOLUCI\u00d3N DE LA CORTE INTERAMERICANA DE DERECHOS HUMANOS DE DE NOVIEMBRE DE MEDIDAS PROVISIONALES RESPECTO DE EL SALVADOR CASO GARC\u00cdA PRIETO Y OTROS VISTO Las Resoluciones de la Corte Interamericana de Derechos Humanos en adelante tambi\u00e9n la Corte Interamericana la Corte o el Tribunal emitidas el de septiembre de de enero de de febrero de y de enero de y las resoluciones del Presidente de la Corte emitidas el de diciembre de y de diciembre de En su \u00faltima resoluci\u00f3n la Corte ", - "values": [ - "Corte Interamericana de Derechos Humanos" - ] - }, - { - "text": "RESOLUCI\u00d3N DEL PRESIDENTE DE LA CORTE INTERAMERICANA DE DERECHOS HUMANOS DE DE ABRIL DE CASO YATAMA Vs. NICARAGUA SUPERVISI\u00d3N DE CUMPLIMIENTO DE SENTENCIA VISTO La Sentencia de excepciones preliminares fondo reparaciones y costas en adelante la Sentencia dictada por la Corte Interamericana de Derechos Humanos en adelante la Corte la Corte Interamericana o el Tribunal el de junio de La Resoluci\u00f3n de la Corte de de noviembre de La Resoluci\u00f3n del Tribunal de de agosto de en la cual ", - "values": [ - "Corte Interamericana de Derechos Humanos" - ] - }, - { - "text": "RESOLUCI\u00d3N DE LA CORTE INTERAMERICANA DE DERECHOS HUMANOS DE DE JULIO DE CASO BUENO ALVES VS. ARGENTINA SUPERVISI\u00d3N DE CUMPLIMIENTO DE SENTENCIA VISTO La Sentencia de fondo reparaciones y costas de de mayo de en adelante la Sentencia emitida por la Corte Interamericana de Derechos Humanos en adelante la Corte Interamericana la Corte o el Tribunal mediante la cual decidi\u00f3 inter alia que el Estado deb\u00eda realizar los pagos de las cantidades establecidas en la Sentencia por concepto de ", - "values": [ - "Corte Interamericana de Derechos Humanos" - ] - }, - { - "text": "RESOLUCI\u00d3N DE LA CORTE INTERAMERICANA DE DERECHOS HUMANOS DE DE NOVIEMBRE DE MEDIDAS PROVISIONALES SOLICITADAS POR LA COMISI\u00d3N INTERAMERICANA DE DERECHOS HUMANOS RESPECTO DE LOS ESTADOS UNIDOS MEXICANOS CASO DEL CENTRO DE DERECHOS HUMANOS MIGUEL AGUST\u00cdN PRO JU\u00c1REZ Y OTROS VISTOS El escrito de de octubre de y sus anexos mediante el cual la Comisi\u00f3n Interamericana de Derechos Humanos en adelante la Comisi\u00f3n o Comisi\u00f3n Interamericana someti\u00f3 a la Corte Interamericana de Derechos Humanos en ", - "values": [ - "Corte Interamericana de Derechos Humanos" - ] - }, - { - "text": "Corte Interamericana de Derechos Humanos Caso del Caracazo Vs. Venezuela Sentencia de de agosto de Reparaciones y Costas En el caso del Caracazo la Corte Interamericana de Derechos Humanos en adelante Interamericana o la Corte integrada por los siguientes Jueces la Corte Ant\u00f4nio A. Can\u00e7ado Trindade Presidente Alirio Abreu Burelli Vicepresidente M\u00e1ximo Pacheco G\u00f3mez Juez Hern\u00e1n Salgado Pesantes Juez Oliver Jackman Juez Sergio Garc\u00eda Ram\u00edrez Juez y Carlos Vicente de Roux Rengifo Juez presentes ", - "values": [ - "Corte Interamericana de Derechos Humanos" - ] - }, - { - "text": "RESOLUCI\u00d3N DE LA CORTE INTERAMERICANA DE DERECHOS HUMANOS DE DE SEPTIEMBRE DE MEDIDAS PROVISIONALES RESPECTO DEL PER\u00da CASO DE LOS HERMANOS G\u00d3MEZ PAQUIYAURI VISTO La Resoluci\u00f3n de la Corte Interamericana de Derechos Humanos en adelante la Corte la Corte Interamericana o el Tribunal de de mayo de mediante la cual resolvi\u00f3 inter alia Requerir al Estado que adoptara sin dilaci\u00f3n las medidas necesarias para proteger la vida e integridad personal de los miembros de la familia G\u00f3mez Paquiyauri ", - "values": [ - "Corte Interamericana de Derechos Humanos" - ] - }, - { - "text": "INFORME N\u00ba PETICI\u00d3N ADMISIBILIDAD SEBASTI\u00c1N CLAUS FURLAN Y FAMILIA ARGENTINA de marzo de I. RESUMEN El presente informe se refiere a la admisibilidad de la petici\u00f3n abierta por la Comisi\u00f3n Interamericana de Derechos Humanos en lo sucesivo Comisi\u00f3n Interamericana Comisi\u00f3n o CIDH en virtud de la presentaci\u00f3n de una serie de comunicaciones a partir del de julio de por parte de Danilo Pedro Furlan padre de la presunta v\u00edctima Sebasti\u00e1n Furlan en lo sucesivo el peticionario contra la en ", - "values": [ - "Comisi\u00f3n Interamericana de Derechos Humanos" - ] - }, - { - "text": "Corte Interamericana de Derechos Humanos Caso Garrido y Baigorria Vs. Argentina Sentencia de de agosto de Reparaciones Y Costas En el caso Garrido y Baigorria la Corte Interamericana de Derechos Humanos integrada por los jueces siguientes Hern\u00e1n Salgado Pesantes Presidente Ant\u00f4nio A. Can\u00e7ado Trindade Vicepresidente M\u00e1ximo Pacheco G\u00f3mez Juez Oliver Jackman Juez Alirio Abreu Burelli Juez Sergio Garc\u00eda Ram\u00edrez Juez Carlos Vicente de Roux Rengifo Juez Julio A. Barberis Juez ad hoc presentes E. ", - "values": [ - "Corte Interamericana de Derechos Humanos" - ] - }, - { - "text": "RESOLUCI\u00d3N DE LA CORTE INTERAMERICANA DE DERECHOS HUMANOS DE DE JULIO DE CASO ACEVEDO BUEND\u00cdA Y OTROS CESANTES Y JUBILADOS DE LA CONTRALOR\u00cdA VS. PER\u00da SUPERVISI\u00d3N DE CUMPLIMIENTO DE SENTENCIA VISTO La Sentencia de excepci\u00f3n preliminar fondo reparaciones y costas en adelante la Sentencia dictada por la Corte Interamericana de Derechos Humanos en adelante la Corte Interamericana la Corte o el Tribunal el de julio de mediante la cual dispuso que El Estado deb\u00eda realizar los pagos de las en", - "values": [ - "Corte Interamericana de Derechos Humanos" - ] - }, - { - "text": "RESOLUCI\u00d3N DEL PRESIDENTE DE LA CORTE INTERAMERICANA DE DERECHOS HUMANOS DE DE DICIEMBRE DE SOLICITUD DE MEDIDAS PROVISIONALES PRESENTADAS POR EL REPRESENTANTE DE LA V\u00cdCTIMA CASO CESTI HURTADO RESPECTO DEL PER\u00da VISTO La sentencia de fondo emitida por la Corte Interamericana de Derechos Humanos en adelante la Corte la Corte Interamericana o el Tribunal el de septiembre de en la cual declar\u00f3 que el Estado peruano viol\u00f3 en perjuicio del se\u00f1or Gustavo Adolfo Cesti Hurtado los art\u00edculos y de", - "values": [ - "Corte Interamericana de Derechos Humanos" - ] - }, - { - "text": "Resoluci\u00f3n de la Corte Interamericana de Derechos Humanos de de julio de Caso Comerciantes Vs. Colombia Supervisi\u00f3n de Cumplimiento de Sentencia y Medidas Provisionales Vistos A Supervisi\u00f3n de cumplimiento de Sentencia La Sentencia de fondo reparaciones y costas dictada el de julio de en adelante la Sentencia por la Corte Interamericana de Derechos Humanos en adelante la Corte la Corte Interamericana o el Tribunal. La Resoluci\u00f3n sobre cumplimiento de Sentencia dictada por el Tribunal el ", - "values": [ - "Corte Interamericana de Derechos Humanos" - ] - }, - { - "text": "RESOLUCI\u00d3N DE LA CORTE INTERAMERICANA DE DERECHOS HUMANOS DE DE FEBRERO DE CASO MASACRE PLAN DE S\u00c1NCHEZ VS. GUATEMALA SUPERVISI\u00d3N DE CUMPLIMIENTO DE SENTENCIA VISTOS La Sentencia de fondo dictada por la Corte Interamericana de Derechos Humanos en adelante la Corte Interamericana la Corte o el Tribunal el de abril de La Sentencia de reparaciones y costas en adelante la Sentencia dictada por la Corte Interamericana el de noviembre de Las Resoluciones de Supervisi\u00f3n de Cumplimiento de de", - "values": [ - "Corte Interamericana de Derechos Humanos" - ] - }, - { - "text": "Corte Interamericana de Direitos Humanos Caso Ximenes Lopes versus Brasil Senten\u00e7a de de julho de M\u00e9rito Repara\u00e7\u00f5es e Custas No caso Ximenes Lopes a Corte Interamericana de Direitos Humanos doravante denominada Corte Interamericana Corte ou Tribunal integrada pelos seguintes ju\u00edzes Sergio Garc\u00eda Ram\u00edrez Presidente Alirio Abreu Burelli VicePresidente Ant\u00f4nio Augusto Can\u00e7ado Trindade Juiz Cecilia Medina Quiroga Ju\u00edza Manuel E. Ventura Robles Juiz e Diego Garc\u00edaSay\u00e1n Juiz presentes ademais Pablo", - "values": [ - "Corte Interamericana de Derechos Humanos" - ] - }, - { - "text": "RESOLUCI\u00d3N DE LA CORTE INTERAMERICANA DE DERECHOS HUMANOS DE DE MAYO DE MEDIDAS PROVISIONALES RESPECTO DE EL SALVADOR ASUNTO B. VISTO El escrito de la Comisi\u00f3n Interamericana de Derechos Humanos en adelante la Comisi\u00f3n Interamericana o la Comisi\u00f3n de de mayo de y sus anexos mediante los cuales someti\u00f3 a la Corte Interamericana de Derechos Humanos en adelante la Corte Interamericana la Corte o el Tribunal una solicitud de medidas provisionales de conformidad con los art\u00edculos de la ", - "values": [ - "Corte Interamericana de Derechos Humanos" - ] - }, - { - "text": "Resoluci\u00f3n de la Presidenta de la Corte Interamericana de Derechos Humanos de de diciembre de Medidas Provisionales Respecto de El Salvador Asunto Adri\u00e1n Mel\u00e9ndez Quijano y Otros Visto La Resoluci\u00f3n de la Corte Interamericana de Derechos Humanos en adelante la Corte Interamericana la Corte o el Tribunal de de mayo de mediante la cual ratific\u00f3 la Resoluci\u00f3n de la Presidencia de de marzo de y ratific\u00f3 las medidas adoptadas a favor de Adri\u00e1n Mel\u00e9ndez Quijano Marina Elizabeth Garc\u00eda de ", - "values": [ - "Corte Interamericana de Derechos Humanos" - ] - }, - { - "text": "RESOLUCI\u00d3N DE LA CORTE INTERAMERICANA DE DERECHOS HUMANOS DE DE JULIO DE MEDIDAS PROVISIONALES RESPECTO DE PARAGUAY ASUNTO LM VISTO El escrito de la Comisi\u00f3n Interamericana de Derechos Humanos en adelante la Comisi\u00f3n Interamericana o la Comisi\u00f3n de de mayo de y sus anexos mediante los cuales someti\u00f3 a la Corte Interamericana de Derechos Humanos en adelante la Corte Interamericana la Corte o el Tribunal una solicitud de medidas provisionales de conformidad con los art\u00edculos de la sobre ", - "values": [ - "Corte Interamericana de Derechos Humanos" - ] - }, - { - "text": "VOTO RAZONADO CONCURRENTE DEL JUEZ JACKMAN Estoy en total concordancia con la decisi\u00f3n de la Corte en el presente caso con lo ordenado en los puntos dispositivos y con las rationes decidendi de la sentencia como un todo. Sin embargo muy a mi pesar debo dejar constancia formal de que no puedo unirme con plena convicci\u00f3n al entusiasmo con el cual la Corte parece haber acogido en los p\u00e1rrafos a la noci\u00f3n del denominado proyecto de vida concepto que es nuevo en la jurisprudencia de esta Corte y ", - "values": [ - "Corte Interamericana de Derechos Humanos" - ] - }, - { - "text": "CORTE INTERAMERICANA DE DERECHOS HUMANOS CASO TIU TOJ\u00cdN VS. GUATEMALA SENTENCIA DE DE NOVIEMBRE DE Fondo Reparaciones y Costas En el caso Tiu Toj\u00edn la Corte Interamericana de Derechos Humanos en adelante la Corte Interamericana la Corte o el Tribunal integrada por los siguientes jueces Cecilia Medina Quiroga Presidenta Diego Garc\u00edaSay\u00e1n Vicepresidente Sergio Garc\u00eda Ram\u00edrez Juez Manuel E. Ventura Robles Juez Leonardo A. Franco Juez Margarette May Macaulay Jueza Rhadys Abreu Blondet Jueza y ", - "values": [ - "Corte Interamericana de Derechos Humanos" - ] - }, - { - "text": "RESOLUCI\u00d3N DEL PRESIDENTE DE LA CORTE INTERAMERICANA DE DERECHOS HUMANOS DE DE DICIEMBRE DE CASO VALLE JARAMILLO VS. COLOMBIA SUPERVISI\u00d3N DE CUMPLIMIENTO DE SENTENCIA VISTO La Sentencia de fondo reparaciones y costas en adelante la Sentencia dictada por la Corte Interamericana de Derechos Humanos en adelante la Corte la Corte Interamericana o el Tribunal el de noviembre de mediante la cual dispuso que El Estado deb\u00eda realizar los pagos de las cantidades establecidas en la Sentencia por ", - "values": [ - "Corte Interamericana de Derechos Humanos" - ] - }, - { - "text": "Corte Interamericana de Derechos Humanos Caso B\u00e1maca Vel\u00e1squez Vs. Guatemala Sentencia de de febrero de Reparaciones y Costas En el caso B\u00e1maca Vel\u00e1squez la Corte Interamericana de Derechos Humanos en adelante la Corte la Corte Interamericana o el Tribunal integrada por los siguientes jueces Ant\u00f4nio A. Can\u00e7ado Trindade Presidente Alirio Abreu Burelli Vicepresidente Hern\u00e1n Salgado Pesantes Juez Oliver Jackman Juez Sergio Garc\u00eda Ram\u00edrez Juez y Carlos Vicente de Roux Rengifo Juez presentes E. ", - "values": [ - "Corte Interamericana de Derechos Humanos" - ] - }, - { - "text": "INFORME N\u00ba ADMISIBILIDAD PETICI\u00d3N JORGE FERNANDO GRANDE ARGENTINA de febrero de I. RESUMEN El presente informe se refiere a la admisibilidad de la petici\u00f3n N\u00ba El expediente fue abierto por la Comisi\u00f3n Interamericana de Derechos Humanos en lo sucesivo la Comisi\u00f3n Interamericana la Comisi\u00f3n o la CIDH en virtud de la presentaci\u00f3n de una petici\u00f3n por parte de Jorge Fernando Grande fechada el de octubre de y recibida el de noviembre de contra la Rep\u00fablica Argentina en lo sucesivo Argentina", - "values": [ - "Comisi\u00f3n Interamericana de Derechos Humanos" - ] - }, - { - "text": "Resoluci\u00f3n del Presidente de la Corte Interamericana de Derechos Humanos De de Diciembre de Caso Cantoral Benavides Vs. Per\u00fa Supervisi\u00f3n de Cumplimiento de Sentencia VISTOS La Sentencia de fondo dictada el de agosto de en cuyos puntos resolutivos d\u00e9cimo segundo y d\u00e9cimo tercero la Corte decidi\u00f3 que el Estado debe ordenar una investigaci\u00f3n para determinar las personas responsables de las violaciones de los derechos humanos a que se ha hecho referencia en esta sentencia y sancionarlos. ", - "values": [ - "Corte Interamericana de Derechos Humanos" - ] - }, - { - "text": "RESOLUCI\u00d3N DE LA CORTE INTERAMERICANA DE DERECHOS HUMANOS DE DE SEPTIEMBRE DE SOLICITUD DE MEDIDAS PROVISIONALES RESPECTO DE LA REP\u00daBLICA DE GUATEMALA CASO GARC\u00cdA Y FAMILIARES VISTO El escrito de los representantes de las presuntas v\u00edctimas en adelante los representantes de de julio de y sus anexos mediante los cuales sometieron a la Corte Interamericana de Derechos Humanos en adelante la Corte Interamericana la Corte o el Tribunal una solicitud de medidas provisionales de conformidad ", - "values": [ - "Corte Interamericana de Derechos Humanos" - ] - }, - { - "text": "RESOLUCI\u00d3N DE LA CORTE INTERAMERICANA DE DERECHOS HUMANOS DE DE AGOSTO DE MEDIDAS PROVISIONALES RESPECTO DE LA REP\u00daBLICA DE COSTA RICA CASO DEL PERI\u00d3DICO LA NACI\u00d3N VISTOS Los hechos enunciados en los vistos de la Resoluci\u00f3n de la Corte Interamericana de Derechos Humanos en adelante la Corte la Corte Interamericana o el Tribunal de de diciembre de La Resoluci\u00f3n de la Corte de de septiembre de mediante la cual decidi\u00f3 Requerir al Estado de Costa Rica que adoptara sin dilaci\u00f3n cuantas ", - "values": [ - "Corte Interamericana de Derechos Humanos" - ] - }, - { - "text": "RESOLUCI\u00d3N DE LA CORTE INTERAMERICANA DE DERECHOS HUMANOS DE DE MAYO DE FONDO DE ASISTENCIA LEGAL DE V\u00cdCTIMAS CASO MASACRES DE EL MOZOTE Y LUGARES ALEDA\u00d1OS VS. EL SALVADOR VISTO La Sentencia de fondo reparaciones y costas en adelante la Sentencia dictada por la Corte Interamericana de Derechos Humanos en adelante la Corte Interamericana la Corte o el Tribunal el de octubre de mediante la cual dispuso inter alia que El Estado debe reintegrar al Fondo de Asistencia Legal de V\u00edctimas de la", - "values": [ - "Corte Interamericana de Derechos Humanos" - ] - }, - { - "text": "RESOLUCI\u00d3N DEL PRESIDENTE DE LA CORTE INTERAMERICANA DE DERECHOS HUMANOS DE DE DICIEMBRE DE AMPLIACI\u00d3N DE MEDIDAS PROVISIONALES SOLICITADAS POR LA COMISI\u00d3N INTERAMERICANA DE DERECHOS HUMANOS RESPECTO DE COLOMBIA CASO \u00c1LVAREZ Y OTROS VISTOS La resoluci\u00f3n del Presidente de la Corte en adelante el Presidente de de julio de mediante la cual decidi\u00f3 Requerir a la Rep\u00fablica de Colombia que adopte sin dilaci\u00f3n cuantas medidas sean necesarias para proteger la vida e integridad de Jos\u00e9 Daniel ", - "values": [ - "Corte Interamericana de Derechos Humanos" - ] - }, - { - "text": "RESOLUCI\u00d3N DE LA CORTE INTERAMERICANA DE DERECHOS HUMANOS DE DE AGOSTO DE MEDIDAS PROVISIONALES SOLICITADAS POR LA COMISI\u00d3N INTERAMERICANA DE DERECHOS HUMANOS RESPECTO DE LA REP\u00daBLICA DE TRINIDAD Y TOBAGO CASO JAMES Y OTROS VISTOS Con referencia a los casos Wenceslaus James Anthony Briggs Anderson Noel Anthony Garcia y Christopher Bethel a. El escrito de la Comisi\u00f3n Interamericana de Derechos Humanos en adelante la Comisi\u00f3n de de mayo de y sus anexos mediante el cual someti\u00f3 ante la Corte ", - "values": [ - "Corte Interamericana de Derechos Humanos" - ] - }, - { - "text": "RESOLUCI\u00d3N DE LA CORTE INTERAMERICANA DE DERECHOS HUMANOS DE DE JULIO DE SOLICITUD DE MEDIDAS PROVISIONALES PRESENTADA POR LA COMISI\u00d3N INTERAMERICANA DE DERECHOS HUMANOS RESPECTO DE LA REP\u00daBLICA DE COLOMBIA CASO MERY NARANJO Y OTROS VISTO El escrito de de julio de y sus anexos mediante los cuales la Comisi\u00f3n Interamericana de Derechos Humanos en adelante la Comisi\u00f3n Interamericana o la Comisi\u00f3n someti\u00f3 a la Corte Interamericana de Derechos Humanos en adelante la Corte o el Tribunal de con", - "values": [ - "Corte Interamericana de Derechos Humanos" - ] - }, - { - "text": "Corte Interamericana de Derechos Humanos Caso Hilaire Vs. Trinidad y Tobago Sentencia de de septiembre de Excepciones Preliminares En el caso Hilaire la Corte Interamericana de Derechos Humanos en adelante la Corte Interamericana la Corte o el Tribunal integrada por los siguientes jueces Ant\u00f4nio A. Can\u00e7ado Trindade Presidente M\u00e1ximo Pacheco G\u00f3mez Vicepresidente Hern\u00e1n Salgado Pesantes Juez Alirio Abreu Burelli Juez Sergio Garc\u00eda Ram\u00edrez Juez y Carlos Vicente de Roux Rengifo Juez presentes E.", - "values": [ - "Corte Interamericana de Derechos Humanos" - ] - }, - { - "text": "RESOLUCI\u00d3N DE LA CORTE INTERAMERICANA DE DERECHOS HUMANOS DE DE SEPTIEMBRE DE MEDIDAS PROVISIONALES RESPECTO DE REP\u00daBLICA DOMINICANA ASUNTO HAITIANOS Y DOMINICANOS DE ORIGEN HAITIANO EN LA REP\u00daBLICA DOMINICANA VISTO El escrito de la Comisi\u00f3n Interamericana de Derechos Humanos en adelante la Comisi\u00f3n o la Comisi\u00f3n Interamericana de de mayo de y sus anexos mediante los cuales someti\u00f3 a la Corte Interamericana de Derechos Humanos en adelante la Corte Interamericana o la Corte o el Tribunal ", - "values": [ - "Corte Interamericana de Derechos Humanos" - ] - }, - { - "text": "Corte Interamericana de Direitos Humanos Caso Barrios Altos Vs. Peru Senten\u00e7a de de mar\u00e7o de M\u00e9rito No caso Barrios Altos a Corte Interamericana de Direitos Humanos doravante a Corte Interamericana a Corte ou o Tribunal integrada pelos seguintes ju\u00edzes Ant\u00f4nio A. Can\u00e7ado Trindade Presidente M\u00e1ximo Pacheco G\u00f3mez VicePresidente Hern\u00e1n Salgado Pesantes Juiz Alirio Abreu Burelli Juiz Sergio Garc\u00eda Ram\u00edrez Juiz e Carlos Vicente de Roux Rengifo Juiz presentes ademais Manuel E. Ventura Robles e ", - "values": [ - "Corte Interamericana de Derechos Humanos" - ] - }, - { - "text": "INFORME N\u00ba PETICI\u00d3N ADMISIBILIDAD JUAN GELMAN MAR\u00cdA CLAUDIA GARC\u00cdA DE GELMAN Y MAR\u00cdA MACARENA GELMAN GARC\u00cdA IRURETAGOYENA URUGUAY de marzo de I. RESUMEN El de mayo de Mar\u00eda Macarena Gelman Garc\u00eda Iruretagoyena en lo sucesivo Mar\u00eda Macarena Gelman y Juan Gelman representados por el Dr. Jos\u00e9 Lu\u00eds Gonz\u00e1lez y el Centro por la Justicia y el Derecho Internacional CEJIL en lo sucesivo los peticionarios presentaron por s\u00ed y en nombre de Mar\u00eda Claudia Garc\u00eda Iruretagoyena de Gelman en lo sucesivo", - "values": [ - "Comisi\u00f3n Interamericana de Derechos Humanos" - ] - }, - { - "text": "RESOLUCI\u00d3N DEL PRESIDENTE DE LA CORTE INTERAMERICANA DE DERECHOS HUMANOS DE DICIEMBRE DE CASO LUNA LOPEZ VS. HONDURAS VISTO El escrito de sometimiento del caso presentado por la Comisi\u00f3n Interamericana de Derechos Humanos en adelante la Comisi\u00f3n Interamericana o la Comisi\u00f3n ante la Corte Interamericana de Derechos Humanos en adelante la Corte Interamericana la Corte o el Tribunal el de noviembre de mediante el cual ofreci\u00f3 dos dict\u00e1menes periciales. El escrito de solicitudes argumentos y ", - "values": [ - "Corte Interamericana de Derechos Humanos" - ] - }, - { - "text": "RESOLUCI\u00d3N DE LA CORTE INTERAMERICANA DE DERECHOS HUMANOS DE DE SEPTIEMBRE DE MEDIDAS PROVISIONALES RESPECTO DE GUATEMALA CASO RAXCAC\u00d3 REYES Y OTROS VISTO La Resoluci\u00f3n de la Corte Interamericana de Derechos Humanos en adelante la Corte Interamericana la Corte o el Tribunal dictada el de agosto de mediante la cual resolvi\u00f3 inter alia Requerir al Estado que adopte sin dilaci\u00f3n las medidas necesarias para proteger la vida de Ronald Ernesto Raxcac\u00f3 Reyes Hugo Humberto Ruiz Fuentes Bernardino", - "values": [ - "Corte Interamericana de Derechos Humanos" - ] - }, - { - "text": "INFORME N\u00ba PETICI\u00d3N ADMISIBILIDAD GREGORIA HERMINIA SERAPIO CRISTI\u00c1N Y JULIA IN\u00c9S CONTRERAS EL SALVADOR de febrero de I. RESUMEN El de septiembre de la Comisi\u00f3n Interamericana de Derechos Humanos en adelante la Comisi\u00f3n Interamericana o la CIDH recibi\u00f3 una denuncia presentada por laAsociaci\u00f3n ProB\u00fasqueda de Ni\u00f1as y Ni\u00f1os Desaparecidos Asociaci\u00f3n ProB\u00fasqueda en adelante los peticionarios en la cual se alega la responsabilidad internacional de la Rep\u00fablica de El Salvador el Estado por la ", - "values": [ - "Comisi\u00f3n Interamericana de Derechos Humanos" - ] - }, - { - "text": "RESOLUCI\u00d3N DEL PRESIDENTE DE LA CORTE INTERAMERICANA DE DERECHOS HUMANOS DE FEBRERO DE SUPERVISI\u00d3N DE CUMPLIMIENTO DE LAS MEDIDAS DE REPARACI\u00d3N SOBRE ATENCI\u00d3N M\u00c9DICA Y PSICOL\u00d3GICA ORDENADAS EN NUEVE CASOS COLOMBIANOS CONVOCATORIA DE AUDIENCIA PRIVADA VISTO La resoluci\u00f3n de convocatoria de audiencia en el marco de la supervisi\u00f3n de cumplimiento emitida por la Corte Interamericana de Derechos Humanos en adelante la Corte la Corte Interamericana o el Tribunal el de abril de en relaci\u00f3n con ", - "values": [ - "Corte Interamericana de Derechos Humanos" - ] - }, - { - "text": "RESOLUCI\u00d3N DE LA CORTE INTERAMERICANA DE DERECHOS HUMANOS DE DE JUNIO DE MEDIDAS PROVISIONALES SOLICITADAS POR LA COMISI\u00d3N INTERAMERICANA DE DERECHOS HUMANOS RESPECTO DE COLOMBIA CASO DE LA COMUNIDAD DE PAZ DE SAN JOS\u00c9 DE APARTAD\u00d3 VISTOS El escrito de la Comisi\u00f3n Interamericana de Derechos Humanos en adelante la Comisi\u00f3n o la Comisi\u00f3n Interamericana de de octubre de mediante el cual someti\u00f3 a la Corte Interamericana de Derechos Humanos en adelante la Corte o la Corte Interamericana de con", - "values": [ - "Corte Interamericana de Derechos Humanos" - ] - }, - { - "text": "RESOLUCI\u00d3N DE LA CORTE INTERAMERICANA DE DERECHOS HUMANOS DE DE JUNIO DE MEDIDAS PROVISIONALES RESPECTO DE HONDURAS CASO L\u00d3PEZ \u00c1LVAREZ VISTOS La Resoluci\u00f3n del Presidente de la Corte Interamericana de Derechos Humanos en adelante la Corte la Corte Interamericana o el Tribunal de de mayo de mediante la cual resolvi\u00f3 inter alia Convocar a la Comisi\u00f3n Interamericana de Derechos Humanos a los representantes de la presunta v\u00edctima y sus familiares y al Estado a una audiencia p\u00fablica que se en", - "values": [ - "Corte Interamericana de Derechos Humanos" - ] - }, - { - "text": "RESOLUCI\u00d3N DE LA CORTE INTERAMERICANA DE DERECHOS HUMANOS DE DE JULIO DE CASO CASTILLO PETRUZZI Y OTROS VS. PER\u00da SUPERVISI\u00d3N DE CUMPLIMIENTO DE SENTENCIA VISTO La Sentencia de fondo reparaciones y costas en adelante la Sentencia dictada por la Corte Interamericana de Derechos Humanos en adelante la Corte Interamericana la Corte o el Tribunal el de mayo de mediante la cual dispuso por unanimidad que el Estado deb\u00eda declarar la invalidez por ser incompatible con la Convenci\u00f3n Americana del", - "values": [ - "Corte Interamericana de Derechos Humanos" - ] - }, - { - "text": "CORTE INTERAMERICANA DE DERECHOS HUMANOS CASO DE PERSONAS DOMINICANAS Y HAITIANAS EXPULSADAS VS. REP\u00daBLICA DOMINICANA SENTENCIA DE DE AGOSTO DE Excepciones Preliminares Fondo Reparaciones y Costas En el caso de Personas dominicanas y haitianas expulsadas la Corte Interamericana de Derechos Humanos en adelante tambi\u00e9n la Corte Interamericana la Corte o el Tribunal integrada por los siguientes jueces Humberto Antonio Sierra Porto Presidente Roberto F. Caldas Vicepresidente Manuel E. Ventura ", - "values": [ - "Corte Interamericana de Derechos Humanos" - ] - }, - { - "text": "RESOLUCI\u00d3N DE LA CORTE INTERAMERICANA DE DERECHOS HUMANOS DE DE FEBRERO DE MEDIDAS PROVISIONALES LILIANA ORTEGA Y OTRAS vs. VENEZUELA VISTOS La Resoluci\u00f3n de la Corte Interamericana de Derechos Humanos en adelante la Corte Interamericana la Corte o el Tribunal de de noviembre de relativa a las Medidas Provisionales solicitadas por la Comisi\u00f3n Interamericana de Derechos Humanos en adelante la Comisi\u00f3n Interamericana o la Comisi\u00f3n en favor de las se\u00f1oras Liliana Ortega Yris Medina Cova ", - "values": [ - "Corte Interamericana de Derechos Humanos" - ] - }, - { - "text": "RESOLUCI\u00d3N DEL PRESIDENTE DE LA CORTE INTERAMERICANA DE DERECHOS HUMANOS DE DE AGOSTO DE SOLICITUD DE AMPLIACI\u00d3N DE MEDIDAS PROVISIONALES RESPECTO DE VENEZUELA ASUNTOS DE DETERMINADOS CENTROS PENITENCIARIOS DE VENEZUELA VISTO La Resoluci\u00f3n de la Corte Interamericana de Derechos Humanos en adelante la Corte Interamericana la Corte o el Tribunal de de noviembre de en los asuntos del Internado Judicial de Monagas La Pica Centro Penitenciario Regi\u00f3n Capital Yare I y Yare II C\u00e1rcel de Yare de", - "values": [ - "Corte Interamericana de Derechos Humanos" - ] - }, - { - "text": "RESOLUCI\u00d3N DE LA CORTE INTERAMERICANA DE DERECHOS HUMANOS DE DE AGOSTO DE CASO DE LA MASACRE DE LA ROCHELA Vs. COLOMBIA SUPERVISI\u00d3N DE CUMPLIMIENTO DE SENTENCIA VISTO La Sentencia de fondo reparaciones y costas de de mayo de en adelante la Sentencia dictada por la Corte Interamericana de Derechos Humanos en adelante la Corte Interamericana la Corte o el Tribunal en el presente caso. Dicho fallo estableci\u00f3 la responsabilidad internacional de la Rep\u00fablica de Colombia en adelante el Estado ", - "values": [ - "Corte Interamericana de Derechos Humanos" - ] - }, - { - "text": "RESOLUCI\u00d3N DEL PRESIDENTE DE LA CORTE INTERAMERICANA DE DERECHOS HUMANOS DE DE ABRIL DE FONDO DE ASISTENCIA LEGAL DE V\u00cdCTIMAS CASO FAMILIA BARRIOS VS. VENEZUELA VISTO El escrito de de julio de y sus anexos mediante los cuales la Comisi\u00f3n Interamericana de Derechos Humanos en adelante la Comisi\u00f3n Interamericana o la Comisi\u00f3n someti\u00f3 a la Corte Interamericana de Derechos Humanos en adelante la Corte Interamericana la Corte o el Tribunal un caso en contra de la Rep\u00fablica Bolivariana de en ", - "values": [ - "Corte Interamericana de Derechos Humanos" - ] - }, - { - "text": "CORTE INTERAMERICANA DE DERECHOS HUMANOS CASO MENDOZA Y OTROS VS. ARGENTINA SENTENCIA DE DE MAYO DE Excepciones Preliminares Fondo y Reparaciones En el Caso Mendoza y otros la Corte Interamericana de Derechos Humanos en adelante la Corte Interamericana la Corte o el Tribunal integrada por los siguientes Jueces y Juezas Diego Garc\u00edaSay\u00e1n Presidente Manuel E. Ventura Robles Vicepresidente Margarette May Macaulay Jueza Rhadys Abreu Blondet Jueza y Alberto P\u00e9rez P\u00e9rez Juez presentes adem\u00e1s Pablo", - "values": [ - "Corte Interamericana de Derechos Humanos" - ] - }, - { - "text": "RESOLUCI\u00d3N DE LA CORTE INTERAMERICANA DE DERECHOS HUMANOS DE DE NOVIEMBRE DE MEDIDAS PROVISIONALES RESPECTO DE LA REP\u00daBLICA DEL PER\u00da CASO WONG HO WING VISTO La Resoluci\u00f3n del Presidente en ejercicio de la Corte Interamericana de Derechos Humanos en adelante la Corte Interamericana la Corte o el Tribunal de de marzo de mediante la cual resolvi\u00f3 inter alia requerir a la Rep\u00fablica del Per\u00fa en adelante el Estado o Per\u00fa que se abstuviera de extraditar al se\u00f1or Wong Ho Wing mientras su solicitud", - "values": [ - "Corte Interamericana de Derechos Humanos" - ] - }, - { - "text": "VOTO RAZONADO DEL JUEZ AA. CAN\u00c7ADO TRINDADE He concurrido con mi voto en la adopci\u00f3n de la presente Sentencia de la Corte Interamericana de Derechos Humanos en el caso de Caesar versus Trinidad y Tobago. Dada la relevancia legal de los temas tratados por la Corte en su decisi\u00f3n as\u00ed como los subyacentes al mismo y referentes al presente caso me siento obligado a dejar constancia de mis reflexiones personales sobre los mismos como los fundamentos para mi posici\u00f3n sobre el tema. Me referir\u00e9 en el", - "values": [ - "Corte Interamericana de Derechos Humanos" - ] - }, - { - "text": "INFORME N\u00ba PETICI\u00d3N ADMISIBILIDAD JOE LUIS CASTILLO GONZ\u00c1LEZ Y OTROS VENEZUELA de marzo de I. RESUMEN El de marzo de la Comisi\u00f3n Interamericana de Derechos Humanos en adelante la Comisi\u00f3n o la CIDH recibi\u00f3 una petici\u00f3n presentada por la Vicar\u00eda Episcopal de Derechos Humanos de Caracas y el Centro por la Justicia y el Derecho Internacional CEJIL en adelante los peticionarios en representaci\u00f3n de Joe Lu\u00eds Castillo Gonz\u00e1lez Yelitze Moreno de Castillo y Cesar Lu\u00eds Castillo Moreno en la cual", - "values": [ - "Comisi\u00f3n Interamericana de Derechos Humanos" - ] - }, - { - "text": "RESOLUCI\u00d3N DE LA CORTE INTERAMERICANA DE DERECHOS HUMANOS DE DE NOVIEMBRE DE SOLICITUD DE AMPLIACI\u00d3N DE MEDIDAS PROVISIONALES RESPECTO DE LOS ESTADOS UNIDOS MEXICANOS CASO FERN\u00c1NDEZ ORTEGA Y OTROS VISTO La Resoluci\u00f3n de la entonces Presidenta de la Corte Interamericana de Derechos Humanos en adelante la Corte Interamericana la Corte o el Tribunal de de abril de mediante la cual requiri\u00f3 a los Estados Unidos Mexicanos en adelante M\u00e9xico o el Estado adoptar de forma inmediata las medidas que", - "values": [ - "Corte Interamericana de Derechos Humanos" - ] - }, - { - "text": "Corte Interamericana de Derechos Humanos Caso Cantos Vs. Argentina Sentencia de de noviembre de Fondo Reparaciones y Costas En el caso Cantos la Corte Interamericana de Derechos Humanos en adelante la Corte la Corte Interamericana o el Tribunal integrada de la siguiente manera Ant\u00f4nio A. Can\u00e7ado Trindade Presidente Alirio Abreu Burelli Vicepresidente M\u00e1ximo Pacheco G\u00f3mez Juez Hern\u00e1n Salgado Pesantes Juez Oliver Jackman Juez Sergio Garc\u00eda Ram\u00edrez Juez Carlos Vicente de Roux Rengifo Juez y A.", - "values": [ - "Corte Interamericana de Derechos Humanos" - ] - }, - { - "text": "Corte Interamericana de Derechos Humanos Caso Vel\u00e1squez Rodr\u00edguez Vs. Honduras Sentencia de de agosto de Interpretaci\u00f3n de la Sentencia de Reparaciones y Costas En el caso Vel\u00e1squez Rodr\u00edguez la Corte Interamericana de Derechos Humanos integrado en observancia del art\u00edculo de la Convenci\u00f3n Americana sobre Derechos Humanos por los siguientes jueces H\u00e9ctor FixZamudio Presidente Rodolfo E. Piza E Juez Pedro Nikken Juez Rafael Nieto Navia Juez Rigoberto Espinal Ir\u00edas Juez ad hoc presente adem\u00e1s ", - "values": [ - "Corte Interamericana de Derechos Humanos" - ] - }, - { - "text": "Resolu\u00e7\u00e3o da Corte Interamericana de Direitos Humanos de de novembro de Medidas Provis\u00f3rias a respeito do Brasil Assunto das pessoas privadas de liberdade na Penitenci\u00e1ria Dr. Sebasti\u00e3o Martins Silveira em Araraquara S\u00e3o Paulo VISTO A Resolu\u00e7\u00e3o do Presidente da Corte Interamericana de Direitos Humanos doravante denominada Corte Interamericana Corte ou Tribunal de de julho de e a Resolu\u00e7\u00e3o emitida pela Corte em de setembro de mediante a qual o Tribunal resolveu Ratificar em todos os seus", - "values": [ - "Corte Interamericana de Derechos Humanos" - ] - }, - { - "text": "Resoluci\u00f3n de la Corte Interamericana de Derechos Humanos De de febrero de Caso Balde\u00f3n Garc\u00eda Vs. Per\u00fa Supervisi\u00f3n de Cumplimiento de Sentencia VISTOS La Sentencia de fondo reparaciones y costas en adelante la Sentencia emitida por la Corte Interamericana de Derechos Humanos en adelante la Corte la Corte Interamericana o el Tribunal el de abril de mediante la cual DECIDI\u00d3 Por unanimidad Admitir el reconocimiento de responsabilidad internacional efectuado por el Estado por la violaci\u00f3n de", - "values": [ - "Corte Interamericana de Derechos Humanos" - ] - }, - { - "text": "RESOLUCI\u00d3N DE LA CORTE INTERAMERICANA DE DERECHOS HUMANOS DE DE NOVIEMBRE DE CASO ROSENDO CANT\u00da Y OTRA VS. M\u00c9XICO SUPERVISI\u00d3N DE CUMPLIMIENTO DE SENTENCIA VISTO La Sentencia de Excepci\u00f3n Preliminar Fondo Reparaciones y Costas emitida el de agosto de en adelante la Sentencia por la Corte Interamericana de Derechos Humanos en adelante la Corte Interamericana la Corte o el Tribunal mediante la cual dispuso inter alia que El Estado deber\u00e1 conducir en el fuero ordinario eficazmente y dentro de", - "values": [ - "Corte Interamericana de Derechos Humanos" - ] - }, - { - "text": "RESOLUCI\u00d3N DEL PRESIDENTE DE LA CORTE INTERAMERICANA DE DERECHOS HUMANOS DE DE MARZO DE MEDIDAS PROVISIONALES SOLICITADAS POR LA COMISI\u00d3N INTERAMERICANA DE DERECHOS HUMANOS RESPECTO DEL ESTADO DE COLOMBIA CASO CLEMENTE TEHER\u00c1N Y OTROS VISTOS El escrito de de marzo de y sus anexos mediante el cual la Comisi\u00f3n Interamericana de Derechos Humanos en adelante la Comisi\u00f3n o la Comisi\u00f3n Interamericana someti\u00f3 a la Corte Interamericana de Derechos Humanos en adelante la Corte o la Corte en virtud", - "values": [ - "Corte Interamericana de Derechos Humanos" - ] - }, - { - "text": "RESOLUCI\u00d3N DE LA PRESIDENTA DE LA CORTE INTERAMERICANA DE DERECHOS HUMANOS DE DE DICIEMBRE DE SOLICITUD DE MEDIDAS PROVISIONALES PRESENTADA POR LA COMISI\u00d3N INTERAMERICANA DE DERECHOS HUMANOS RESPECTO DE VENEZUELA ASUNTO NATERA BALBOA VISTO El escrito de la Comisi\u00f3n Interamericana de Derechos Humanos en adelante la Comisi\u00f3n Interamericana o la Comisi\u00f3n de de noviembre de y sus anexos mediante los cuales someti\u00f3 a la Corte Interamericana de Derechos Humanos en adelante la Corte la Corte o ", - "values": [ - "Corte Interamericana de Derechos Humanos" - ] - }, - { - "text": "RESOLUCI\u00d3N DE LA CORTE INTERAMERICANA DE DERECHOS HUMANOS DE DE NOVIEMBRE DE CASO BLANCO ROMERO Y OTROS VS. VENEZUELA SUPERVISI\u00d3N DE CUMPLIMIENTO DE SENTENCIA VISTO La Sentencia de fondo reparaciones y costas en adelante la Sentencia dictada por la Corte Interamericana de Derechos Humanos en adelante la Corte Interamericana la Corte o el Tribunal el de noviembre de La Resoluci\u00f3n de supervisi\u00f3n de cumplimiento de Sentencia emitida por el Tribunal el de julio de en la cual declar\u00f3 inter ", - "values": [ - "Corte Interamericana de Derechos Humanos" - ] - }, - { - "text": "RESOLUCI\u00d3N DEL PRESIDENTE DE LA CORTE INTERAMERICANA DE DERECHOS HUMANOS DE DE JULIO DE AMPLIACI\u00d3N DE LAS MEDIDAS PROVISIONALES SOLICITADAS POR LA COMISI\u00d3N INTERAMERICANA DE DERECHOS HUMANOS RESPECTO DE LA REP\u00daBLICA DE TRINIDAD Y TOBAGO CASOS JAMES Y OTROS VISTOS La Resoluci\u00f3n de la Corte Interamericana de Derechos Humanos en adelante la Corte de de junio de en la cual decidi\u00f3 Ordenar a Trinidad y Tobago que tome todas las medidas necesarias para preservar la vida e integridad personal de", - "values": [ - "Corte Interamericana de Derechos Humanos" - ] - }, - { - "text": "VOTO CONCURRENTE DEL JUEZ AA. CAN\u00c7ADO TRINDADE Voto a favor de la adopci\u00f3n por la Corte Interamericana de Derechos Humanos de la presente Sentencia sobre el fondo y reparaciones en el caso Hilaire Constantine y Benjamin versus Trinidad y Tobago la cual encuentro en plena conformidad con las disposiciones relevantes y el esp\u00edritu de la Convenci\u00f3n Americana sobre Derechos Humanos. Es esta la primera vez que un tribunal internacional determina que la pena de muerte obligatoria es violatoria de un", - "values": [ - "Corte Interamericana de Derechos Humanos" - ] - }, - { - "text": "Corte Interamericana de Derechos Humanos Caso Juan Humberto S\u00e1nchez Vs. Honduras Sentencia de de junio de Excepci\u00f3n Preliminar Fondo Reparaciones y Costas En el caso Juan Humberto S\u00e1nchez la Corte Interamericana de Derechos Humanos en adelante la Corte Interamericana la Corte o el Tribunal integrada por los siguientes jueces Ant\u00f4nio A. Can\u00e7ado Trindade Presidente Sergio Garc\u00eda Ram\u00edrez Vicepresidente M\u00e1ximo Pacheco G\u00f3mez Juez Hern\u00e1n Salgado Pesantes Juez Oliver Jackman Juez y Alirio Abreu ", - "values": [ - "Corte Interamericana de Derechos Humanos" - ] - }, - { - "text": "RESOLUCI\u00d3N DE LA CORTE INTERAMERICANA DE DEREECHOS HUMANOS DE DE NOVIEMBRE DE MEDIDAS PROVISIONALES SOLICITADAS POR LA COMISI\u00d3N INTERAMERICANA DE DERECHOS HUMANOS RESPECTO DE LA REP\u00daBLICA DEL PER\u00da CASO LOAYZA TAMAYO VISTOS El escrito presentado el de mayo de por la Comisi\u00f3n Interamericana de Derechos Humanos en adelante la Comisi\u00f3n mediante el cual remiti\u00f3 a la Corte Interamericana de Derechos Humanos en adelante la Corte en virtud de los art\u00edculos de la Convenci\u00f3n Americana sobre en ", - "values": [ - "Corte Interamericana de Derechos Humanos" - ] - }, - { - "text": "RESOLUCI\u00d3N DE LA CORTE INTERAMERICANA DE DERECHOS HUMANOS DE DE NOVIEMBRE DE CASO ATALA RIFFO Y NI\u00d1AS VS. CHILE SUPERVISI\u00d3N DE CUMPLIMIENTO DE SENTENCIA VISTO La Sentencia de fondo reparaciones y costas en adelante la Sentencia o el Fallo dictada por la Corte Interamericana de Derechos Humanos en adelante la Corte Interamericana la Corte o el Tribunal el de febrero de En dicho Fallo se estableci\u00f3 la responsabilidad internacional de Chile en adelante el Estado o Chile por el trato y la ", - "values": [ - "Corte Interamericana de Derechos Humanos" - ] - }, - { - "text": "RESOLUCI\u00d3N DE LA CORTE INTERAMERICANA DE DERECHOS HUMANOS DE DE AGOSTO DE CASO BARRIOS ALTOS VS. PER\u00da SUPERVISI\u00d3N DEL CUMPLIMIENTO DE SENTENCIA VISTOS La Sentencia de fondo dictada por la Corte Interamericana de Derechos Humanos en adelante la Corte la Corte Interamericana o el Tribunal el de marzo de La Sentencia de Interpretaci\u00f3n de la Sentencia de fondo dictada en el presente caso por la Corte Interamericana el de septiembre de La Sentencia de reparaciones emitida en el presente ", - "values": [ - "Corte Interamericana de Derechos Humanos" - ] - }, - { - "text": "RESOLUCI\u00d3N DE LA CORTE INTERAMERICANA DE DERECHOS HUMANOS DE DE NOVIEMBRE DE MEDIDAS PROVISIONALES ADOPTADAS POR LA CORTE INTERAMERICANA DE DERECHOS HUMANOS RESPECTO DE LA REP\u00daBLICA DE GUATEMALA CASO PANIAGUA MORALES Y OTROS Y V\u00c1SQUEZ Y OTROS N. VISTOS El escrito de la Comisi\u00f3n Interamericana de Derechos Humanos en adelante la Comisi\u00f3n o la Comisi\u00f3n Interamericana de de febrero de mediante el cual solicit\u00f3 a la Corte que adoptara medidas provisionales para proteger la vida e integridad ", - "values": [ - "Corte Interamericana de Derechos Humanos" - ] - }, - { - "text": "VOTO PARCIALMENTE DISIDENTE DEL JUEZ EDUARDO FERRER MACGREGOR POISOT CASO DE LOS PUEBLOS IND\u00cdGENAS KUNA DE MADUNGAND\u00cd Y EMBER\u00c1 DE BAYANO Y SUS MIEMBROS VS. PANAM\u00c1 SENTENCIA DE DE OCTUBRE DE EXCEPCIONES PRELIMINARES FONDO REPARACIONES Y COSTAS INTRODUCCI\u00d3N Se emite el presente voto en el caso de los Pueblos Ind\u00edgenas Kuna de Madungand\u00ed y Ember\u00e1 de Bayano y sus miembros Vs. Panam\u00e1 en el cual la Corte Interamericana de Derechos Humanos en adelante la Corte o el Tribunal Interamericano acoge la ", - "values": [ - "Corte Interamericana de Derechos Humanos" - ] - }, - { - "text": "Corte Interamericana de Derechos Humanos Caso de los Ni\u00f1os de la Calle Villagr\u00e1n Morales y otros Vs. Guatemala Sentencia de de septiembre de Excepciones Preliminares En el caso Villagr\u00e1n Morales y Otros la Corte Interamericana de Derechos Humanos integrada por los siguientes jueces H\u00e9ctor FixZamudio Presidente Hern\u00e1n Salgado Pesantes Vicepresidente Alejandro Montiel Arg\u00fcello Juez M\u00e1ximo Pacheco G\u00f3mez Juez Oliver Jackman Juez Alirio Abreu Burelli Juez y Ant\u00f4nio A. Can\u00e7ado Trindade Juez E. ", - "values": [ - "Corte Interamericana de Derechos Humanos" - ] - }, - { - "text": "RESOLUCI\u00d3N DE LA CORTE INTERAMERICANA DE DERECHOS HUMANOS DE DE AGOSTO DE CASO LAS PALMERAS VS. COLOMBIA SUPERVISI\u00d3N DEL CUMPLIMIENTO DE SENTENCIA VISTOS La Sentencia de fondo dictada por la Corte Interamericana de Derechos Humanos en adelante la Corte la Corte Interamericana o el Tribunal el de diciembre de La Sentencia de reparaciones dictada por la Corte Interamericana el de noviembre de La Resoluci\u00f3n dictada por la Corte el de noviembre de mediante la cual declar\u00f3 Que abierto", - "values": [ - "Corte Interamericana de Derechos Humanos" - ] - }, - { - "text": "Resoluci\u00f3n de la Corte Interamericana de Derechos Humanos de de julio de Caso de las Masacres de Ituango Vs. Colombia Supervisi\u00f3n de Cumplimiento de Sentencia Visto La Sentencia de fondo reparaciones y costas emitida el de julio de en adelante la Sentencia por la Corte Interamericana de Derechos Humanos en adelante la Corte la Corte Interamericana o el Tribunal mediante la cual el Tribunal dispuso que el Estado de Colombia en adelante el Estado el Estado colombiano o Colombia debe las", - "values": [ - "Corte Interamericana de Derechos Humanos" - ] - }, - { - "text": "RESOLU\u00c7\u00c3O DA CORTE INTERAMERICANA DE DIREITOS HUMANOS DE DE MAIO DE CASO XIMENES LOPES VS. BRASIL SUPERVIS\u00c3O DE CUMPRIMENTO DE SENTEN\u00c7A VISTO A Senten\u00e7a de m\u00e9rito repara\u00e7\u00f5es e custas de de julho de doravante a Senten\u00e7a proferida pela Corte Interamericana de Direitos Humanos doravante a Corte Interamericana a Corte ou o Tribunal. As Resolu\u00e7\u00f5es de Supervis\u00e3o de Cumprimento da Senten\u00e7a de de maio de e de de setembro de Nesta \u00faltima a Corte Interamericana declarou que manteria aberto o ", - "values": [ - "Corte Interamericana de Derechos Humanos" - ] - }, - { - "text": "RESOLUCI\u00d3N DE LA CORTE INTERAMERICANA DE DERECHOS HUMANOS DE DE JUNIO DE SOLICITUD DE MEDIDAS PROVISIONALES RESPECTO DE GUATEMALA CASO MASACRE PLAN DE S\u00c1NCHEZ SALVADOR JER\u00d3NIMO Y OTROS VISTOS La Resoluci\u00f3n del Presidente de la Corte Interamericana de Derechos Humanos en adelante la Corte la Corte Interamericana o el Tribunal de de julio de mediante la cual solicit\u00f3 al Estado de Guatemala en adelante el Estado o Guatemala inter alia que adoptara sin dilaci\u00f3n todas las medidas que fueran ", - "values": [ - "Corte Interamericana de Derechos Humanos" - ] - }, - { - "text": "RESOLUCI\u00d3N DE LA CORTE INTERAMERICANA DE DERECHOS HUMANOS DE DE NOVIEMBRE DE CASO BARRIOS ALTOS CUMPLIMIENTO DE SENTENCIA VISTOS La Sentencia sobre el Fondo dictada en el caso Barrios Altos por la Corte Interamericana de Derechos Humanos en adelante la Corte o el Tribunal el de marzo de en la cual por unanimidad Admiti\u00f3 el reconocimiento de responsabilidad internacional efectuado por el Estado. Declar\u00f3 conforme a los t\u00e9rminos del reconocimiento responsabilidad internacional efectuado por", - "values": [ - "Corte Interamericana de Derechos Humanos" - ] - }, - { - "text": " Voto Concurrente Conjunto de los Jueces Can\u00e7ado Trindade y Jackman Hemos votado en favor del punto resolutivo de la presente Sentencia pero nos vemos obligados a dejar constancia de nuestro entendimiento del alcance del art\u00edculo de la Convenci\u00f3n Americana sobre Derechos Humanos tal como fue considerado por la Corte en las circunstancias del presente caso Loayza Tamayo. En base del hecho de que los tribunales militares peruanos absolvieron a la se\u00f1ora Mar\u00eda Elena Loayza Tamayo la Corte el", - "values": [ - "Corte Interamericana de Derechos Humanos" - ] - }, - { - "text": "VOTO RAZONADO CONCURRENTE DEL JUEZ HERN\u00c1N SALGADO PESANTES A LAS SENTENCIAS SOBRE EXCEPCIONES PRELIMINARES EN LOS CASOS HILAIRE CONSTANTINE Y OTROS Y BENJAMIN Y OTROS Estando de acuerdo en lo fundamental con la sentencia en el Caso Constantine y otros vs. Trinidad y Tobago quiero agregar las siguientes consideraciones En materia de reservas a los tratados al igual que en otras cuestiones del Derecho Internacional ha habido una importante evoluci\u00f3n marcada por un progreso constante. Bien podr\u00eda", - "values": [ - "Corte Interamericana de Derechos Humanos" - ] - }, - { - "text": "RESOLUCI\u00d3N DEL PRESIDENTE DE LA CORTE INTERAMERICANA DE DERECHOS HUMANOS DE DE ENERO DE MEDIDAS PROVISIONALES RESPECTO DE REP\u00daBLICA DOMINICANA ASUNTO JUAN ALMONTE HERRERA Y OTROS VISTO La Resoluci\u00f3n dictada por la Corte Interamericana de Derechos Humanos en adelante la Corte Interamericana la Corte o el Tribunal el de mayo de Los escritos de la Rep\u00fablica Dominicana en adelante el Estado de y de septiembre y de diciembre de de marzo y de abril de mayo de agosto y de noviembre de ", - "values": [ - "Corte Interamericana de Derechos Humanos" - ] - }, - { - "text": "RESOLUCI\u00d3N DE LA CORTE INTERAMERICANA DE DERECHOS HUMANOS DE DE ENERO DE CASO L\u00d3PEZ LONE Y OTROS VS. HONDURAS VISTO La Resoluci\u00f3n del Presidente en adelante el Presidente de la Corte Interamericana de Derechos Humanos en adelante la Corte Interamericana la Corte o este Tribunal de de diciembre de en adelante la Resoluci\u00f3n en la cual entre otros resolvi\u00f3 Requerir por las razones expuestas en dicha Resoluci\u00f3n de conformidad con el principio de econom\u00eda procesal y de la facultad que le el ", - "values": [ - "Corte Interamericana de Derechos Humanos" - ] - }, - { - "text": "RESOLUCI\u00d3N DE LA CORTE INTERAMERICANA DE DERECHOS HUMANOS DE DE FEBRERO DE MEDIDAS PROVISIONALES RESPECTO DE LA REP\u00daBLICA DE COLOMBIA SOLICITUD DE RECONSIDERACI\u00d3N YO MOTIVACI\u00d3N DE LA RESOLUCI\u00d3N DE DE NOVIEMBRE DE ASUNTO COMUNIDADES DEL JIGUAMIAND\u00d3 Y DEL CURVARAD\u00d3 VISTOS Las Resoluciones de la Corte Interamericana de de marzo de de noviembre de de marzo de de febrero de de febrero de de noviembre de de agosto de y de noviembre de En esta \u00faltima Resoluci\u00f3n la Corte decidi\u00f3 ", - "values": [ - "Corte Interamericana de Derechos Humanos" - ] - }, - { - "text": "RESOLUCI\u00d3N DE LA CORTE INTERAMERICANA DE DERECHOS HUMANOS DE DE ABRIL DE MEDIDAS PROVISIONALES SOLICITADAS POR LA COMISI\u00d3N INTERAMERICANA DE DERECHOS HUMANOS RESPECTO DE GUATEMALA CASO COLOTENANGO VISTOS La resoluci\u00f3n de la Corte Interamericana de Derechos Humanos en adelante la Corte de de septiembre de en la cual ordena mantener las medidas provisionales acordadas en el presente caso por seis meses adicionales. El informe del Estado de Guatemala en adelante el Estado presentado el de ", - "values": [ - "Corte Interamericana de Derechos Humanos" - ] - }, - { - "text": "Resoluci\u00f3n de la Presidenta de la Corte Interamericana de Derechos Humanos de de diciembre de Caso Acevedo Jaramillo y otros vs. Per\u00fa Supervisi\u00f3n de Cumplimiento de Sentencia Vistos La Sentencia de excepciones preliminares fondo reparaciones y costas en adelante la Sentencia dictada por la Corte Interamericana de Derechos Humanos en adelante la Corte la Corte Interamericana o el Tribunal el de septiembre de mediante la cual dispuso que el Estado del Per\u00fa en adelante el Estado o Per\u00fa debe ", - "values": [ - "Corte Interamericana de Derechos Humanos" - ] - }, - { - "text": "Corte Interamericana de Derechos Humanos Caso de la Masacre de La Rochela Vs. Colombia Sentencia de de Mayo de Fondo Reparaciones y Costas En el caso de la masacre de La Rochela la Corte Interamericana de Derechos Humanos en adelante la Corte Interamericana la Corte o el Tribunal integrada por los siguientes jueces Sergio Garc\u00eda Ram\u00edrez Presidente Cecilia Medina Quiroga Vicepresidenta Manuel E. Ventura Robles Juez Diego Garc\u00edaSay\u00e1n Juez Leonardo A. Franco Juez Margarette May Macaulay Jueza y ", - "values": [ - "Corte Interamericana de Derechos Humanos" - ] - }, - { - "text": "RESOLUCI\u00d3N DE LA CORTE INTERAMERICANA DE DERECHOS HUMANOS DE DE SEPTIEMBRE DE CASO TIBI VS. ECUADOR CUMPLIMIENTO DE SENTENCIA VISTOS La sentencia de fondo reparaciones y costas dictada por la Corte Interamericana de Derechos Humanos en adelante la Corte Interamericana la Corte o el Tribunal el de septiembre de mediante la cual dispuso que El Estado debe en un plazo razonable investigar efectivamente los hechos del caso con el fin de identificar juzgar y sancionar a todos los autores de ", - "values": [ - "Corte Interamericana de Derechos Humanos" - ] - }, - { - "text": "INFORME N\u00ba CASO PEDRO HUILCA TECSE PER\u00da de septiembre de I. RESUMEN El de mayo de la Comisi\u00f3n Interamericana de Derechos Humanos en adelante la Comisi\u00f3n recibi\u00f3 una denuncia en contra de la Rep\u00fablica del Per\u00fa en adelante Per\u00fa el Estado o el Estado peruano sobre la violaci\u00f3n del derecho a la vida en perjuicio de Pedro Huilca Tecse en adelante la v\u00edctima. II. HECHOS El peticionario inform\u00f3 a la Comisi\u00f3n que el de diciembre de a las ocho de la ma\u00f1ana Pedro Huilca Tecse Secretario de la", - "values": [ - "Comisi\u00f3n Interamericana de Derechos Humanos" - ] - }, - { - "text": "INFORME No. PETICI\u00d3N ADMISIBILIDAD TGGL ECUADOR de agosto de I. RESUMEN El de junio de la Comisi\u00f3n Interamericana de Derechos Humanos en adelante la Comisi\u00f3n recibi\u00f3 una petici\u00f3n presentada por los se\u00f1ores Iv\u00e1n Patricio Durazno Campoverde y Gustavo Quito Mendieta en adelante los peticionarios en la cual se alega la responsabilidad de la Rep\u00fablica de Ecuador en adelante el Estado por los da\u00f1os causados a la ni\u00f1a TGGL a ra\u00edz de su presunta infecci\u00f3n con el Virus de Inmunodeficiencia de ", - "values": [ - "Comisi\u00f3n Interamericana de Derechos Humanos" - ] - }, - { - "text": "RESOLUCI\u00d3N DEL PRESIDENTE DE LA CORTE INTERAMERICANA DE DERECHOS HUMANOS DEL DE DICIEMBRE DE MEDIDAS PROVISIONALES SOLICITADAS POR LA COMISI\u00d3N INTERAMERICANA DE DERECHOS HUMANOS RESPECTO DEL PER\u00da CASO DE PENALES PERUANOS VISTO La comunicaci\u00f3n de de noviembre de y sus anexos mediante la cual la Comisi\u00f3n Interamericana de Derechos Humanos en adelante la Comisi\u00f3n o la Comisi\u00f3n Interamericana somete a la Corte Interamericana de Derechos Humanos en adelante la Corte en virtud de los art\u00edculos ", - "values": [ - "Corte Interamericana de Derechos Humanos" - ] - }, - { - "text": "Order of the InterAmerican Court of Human Rights of November Case of the Moiwana Village v. Suriname Monitoring Compliance with Judgment HAVING SEEN The Judgment on the preliminary objections merits reparations and costs delivered in the Case of the Moiwana Village v. Suriname by the InterAmerican Court of Human Rights hereinafter the Court or the Tribunal of June hereinafter the Judgment or the Moiwana Judgment in which it DECLARED Unanimously that The State violated the right to humane ", - "values": [ - "Corte Interamericana de Derechos Humanos" - ] - }, - { - "text": "RESOLUCI\u00d3N DE LA CORTE INTERAMERICANA DE DERECHOS HUMANOS DE DE FEBRERO DE MEDIDAS PROVISIONALES RESPECTO DE REP\u00daBLICA DOMINICANA ASUNTO HAITIANOS Y DOMINICANOS DE ORIGEN HAITIANO EN LA REP\u00daBLICA DOMINICANA VISTO El escrito de la Comisi\u00f3n Interamericana de Derechos Humanos en adelante la Comisi\u00f3n o la Comisi\u00f3n Interamericana de de mayo de y sus anexos mediante los cuales someti\u00f3 a la Corte Interamericana de Derechos Humanos en adelante la Corte Interamericana o la Corte o el Tribunal la ", - "values": [ - "Corte Interamericana de Derechos Humanos" - ] - }, - { - "text": "RESOLUCI\u00d3N DE LA CORTE INTERAMERICANA DE DERECHOS HUMANOS DE DE NOVIEMBRE DE CASO FERN\u00c1NDEZ ORTEGA Y OTROS VS. M\u00c9XICO SUPERVISI\u00d3N DE CUMPLIMIENTO DE SENTENCIA VISTO La Sentencia de Excepci\u00f3n Preliminar Fondo Reparaciones y Costas emitida el de agosto de en adelante la Sentencia por la Corte Interamericana de Derechos Humanos en adelante la Corte Interamericana la Corte o el Tribunal mediante la cual dispuso inter alia que El Estado deber\u00e1 conducir en el fuero ordinario eficazmente y de ", - "values": [ - "Corte Interamericana de Derechos Humanos" - ] - }, - { - "text": "RESOLUCI\u00d3N DE LA CORTE INTERAMERICANA DE DERECHOS HUMANOS DE DE ABRIL DE SOLICITUD DE MEDIDAS PROVISIONALES RESPECTO DE LA REP\u00daBLICA DEL PER\u00da ASUNTO WONG HO WING VISTO La Resoluci\u00f3n del Presidente en ejercicio de la Corte Interamericana de Derechos Humanos en adelante la Corte Interamericana la Corte o el Tribunal de de marzo de as\u00ed como las Resoluciones del Tribunal de de mayo y de noviembre de y de de marzo y de julio de mediante las cuales resolvieron inter alia requerir a la ", - "values": [ - "Corte Interamericana de Derechos Humanos" - ] - }, - { - "text": "Corte Interamericana de Derechos Humanos Caso Cantos Vs. Argentina Sentencia de de septiembre de Excepciones Preliminares En el caso Cantos la Corte Interamericana de Derechos Humanos en adelante la Corte o la Corte Interamericana integrada de la siguiente manera Ant\u00f4nio A. Can\u00e7ado Trindade Presidente Hern\u00e1n Salgado Pesantes Juez Oliver Jackman Juez Alirio Abreu Burelli Juez Sergio Garc\u00eda Ram\u00edrez Juez Carlos Vicente de Roux Rengifo Juez y Julio A. Barberis Juez ad hoc presentes adem\u00e1s Manuel ", - "values": [ - "Corte Interamericana de Derechos Humanos" - ] - }, - { - "text": "RESOLUCI\u00d3N DEL PRESIDENTE DE LA CORTE INTERAMERICANA DE DERECHOS HUMANOS DE DE MAYO DE CASO VEREDA LA ESPERANZA VS. COLOMBIA CONVOCATORIA A AUDIENCIA VISTO El escrito de sometimiento del caso y el Informe de Fondo de la Comisi\u00f3n Interamericana de Derechos Humanos en adelante la Comisi\u00f3n Interamericana o la Comisi\u00f3n el escrito de solicitudes argumentos y pruebas en adelante el escrito de solicitudes y argumentos de los representantes de las presuntas v\u00edctimas en adelante los representantes el", - "values": [ - "Corte Interamericana de Derechos Humanos" - ] - }, - { - "text": "RESOLUCI\u00d3N DE LA CORTE INTERAMERICANA DE DERECHOS HUMANOS DE DE SEPTIEMBRE DE CASO BARRIOS ALTOS VS. PER\u00da SUPERVISI\u00d3N DE CUMPLIMIENTO DE SENTENCIA VISTO Las Sentencias de fondo de interpretaci\u00f3n de la Sentencia de fondo y de reparaciones y costas dictadas por la Corte Interamericana de Derechos Humanos en adelante la Corte Interamericana la Corte o el Tribunal el de marzo de septiembre y de noviembre de respectivamente. Las Resoluciones emitidas por la Corte el de noviembre de de ", - "values": [ - "Corte Interamericana de Derechos Humanos" - ] - }, - { - "text": "VOTO INDIVIDUAL DISIDENTE DEL JUEZ EDUARDO VIO GROSSI CORTE INTERAMERICANA DE DERECHOS HUMANOS CASO CRUZ S\u00c1NCHEZ y OTROS Vs PER\u00da SENTENCIA DE DE ABRIL DE Excepciones Preliminares Fondo Reparaciones y Costas. INTRODUCCI\u00d3N. Se emite el presente voto individual disidente de la Sentencia indicada en el t\u00edtulo en raz\u00f3n de que \u00e9sta desestim\u00f3 la excepci\u00f3n preliminar relativa al incumplimiento de la regla del previo agotamiento de los recursos internos interpuesta por la Rep\u00fablica del Per\u00fa Los de", - "values": [ - "Corte Interamericana de Derechos Humanos" - ] - }, - { - "text": "RESOLUCI\u00d3N DE LA CORTE INTERAMERICANA DE DERECHOS HUMANOS DE DE AGOSTO DE MEDIDAS PROVISIONALES SOLICITADAS POR LA COMISI\u00d3N INTERAMERICANA DE DERECHOS HUMANOS CASO B\u00c1MACA VEL\u00c1SQUEZ VISTOS El proceso en el caso B\u00e1maca Vel\u00e1squez en tr\u00e1mite ante la Corte Interamericana de Derechos Humanos en adelante la Corte o la Corte Interamericana y la transcripci\u00f3n de la declaraci\u00f3n rendida por el se\u00f1or Santiago Cabrera L\u00f3pez durante la audiencia p\u00fablica que sobre el fondo del caso citado celebr\u00f3 la Corte ", - "values": [ - "Corte Interamericana de Derechos Humanos" - ] - }, - { - "text": "RESOLUCI\u00d3N DEL PRESIDENTE DE LA CORTE INTERAMERICANA DE DERECHOS HUMANOS DE FEBRERO DE SUPERVISI\u00d3N DE CUMPLIMIENTO DE LAS MEDIDAS DE REPARACI\u00d3N SOBRE ATENCI\u00d3N M\u00c9DICA Y PSICOL\u00d3GICA ORDENADAS EN NUEVE CASOS COLOMBIANOS CONVOCATORIA DE AUDIENCIA PRIVADA VISTO La resoluci\u00f3n de convocatoria de audiencia en el marco de la supervisi\u00f3n de cumplimiento emitida por la Corte Interamericana de Derechos Humanos en adelante la Corte la Corte Interamericana o el Tribunal el de abril de en relaci\u00f3n con ", - "values": [ - "Corte Interamericana de Derechos Humanos" - ] - }, - { - "text": " VOTO RAZONADO DEL JUEZ DE ROUX RENGIFO He acompa\u00f1ado a la Corte en la decisi\u00f3n de abstenerse de declarar que el Estado viol\u00f3 el art\u00edculo de la Convenci\u00f3n Americana por una raz\u00f3n espec\u00edfica para haber votado en contrario hubiera requerido que obraran en el expediente pruebas precisas sobre el hecho de que al prohibirse la exhibici\u00f3n de La Ultima Tentaci\u00f3n de Cristo se menoscab\u00f3 efectivamente en perjuicio de las v\u00edctimas concretas del presente caso el derecho a cambiar de religi\u00f3n o de El de", - "values": [ - "Corte Interamericana de Derechos Humanos" - ] - }, - { - "text": "RESOLUCI\u00d3N DEL PRESIDENTE DE LA CORTE INTERAMERICANA DE DERECHOS HUMANOS DE DE SEPTIEMBRE DE MEDIDAS PROVISIONALES RESPECTO DE LA REP\u00daBLICA DOMINICANA CASO DE HAITIANOS Y DOMINICANOS DE ORIGEN HAITIANO EN LA REP\u00daBLICA DOMINICANA VISTOS El escrito de la Comisi\u00f3n Interamericana de Derechos Humanos en adelante la Comisi\u00f3n o la Comisi\u00f3n Interamericana de de mayo de y sus Anexos mediante el cual someti\u00f3 a la Corte Interamericana de Derechos Humanos en adelante la Corte o la Corte Interamericana", - "values": [ - "Corte Interamericana de Derechos Humanos" - ] - }, - { - "text": "VOTO RAZONADO DEL JUEZ AA. CAN\u00c7ADO TRINDADE Al votar a favor de la adopci\u00f3n de la presente Sentencia de la Corte Interamericana de Derechos Humanos en el caso de Guti\u00e9rrez Soler versus Colombia con la cual estoy b\u00e1sicamente de acuerdo me veo en la obligaci\u00f3n de agregar en el presente Voto Razonado algunas breves reflexiones personales sobre cuatro puntos medulares suscitados por la consideraci\u00f3n del presente caso los cuales a mi juicio no pueden pasar aqu\u00ed desapercibidos. Me refiero en a los ", - "values": [ - "Corte Interamericana de Derechos Humanos" - ] - }, - { - "text": "RESOLUCI\u00d3N DE LA CORTE INTERAMERICANA DE DERECHOS HUMANOS DE DE OCTUBRE DE CASO BAENA RICARDO Y OTROS TRABAJADORES VS. PANAM\u00c1 SUPERVISI\u00d3N DE CUMPLIMIENTO DE SENTENCIA VISTO La Sentencia de fondo reparaciones y costas emitida el de febrero de en adelante la Sentencia por la Corte Interamericana de Derechos Humanos en adelante la Corte Interamericana la Corte o el Tribunal mediante la cual dispuso por unanimidad que el Estado debe pagar a los trabajadores mencionados en el p\u00e1rrafo de ", - "values": [ - "Corte Interamericana de Derechos Humanos" - ] - }, - { - "text": "Corte Interamericana de Derechos Humanos Caso Masacre Plan de S\u00e1nchez Vs. Guatemala Sentencia de de abril de Fondo En el caso Masacre Plan de S\u00e1nchez la Corte Interamericana de Derechos Humanos integrada por los siguientes jueces Sergio Garc\u00eda Ram\u00edrez Presidente Alirio Abreu Burelli Vicepresidente Oliver Jackman Juez Ant\u00f4nio A. Can\u00e7ado Trindade Juez Cecilia Medina Quiroga Jueza Manuel E. Ventura Robles Juez Diego Garc\u00edaSay\u00e1n Juez y Alejandro S\u00e1nchez Garrido Juez ad hoc presente adem\u00e1s Pablo ", - "values": [ - "Corte Interamericana de Derechos Humanos" - ] - }, - { - "text": "RESOLUCI\u00d3N DEL PRESIDENTE DE LA CORTE INTERAMERICANA DE DERECHOS HUMANOS DE DE JUNIO DE FONDO DE ASISTENCIA LEGAL DE V\u00cdCTIMAS CASO ACOSTA Y OTROS VS. NICARAGUA VISTO El escrito de de julio de y sus anexos recibidos el d\u00eda de agosto de mediante los cuales la Comisi\u00f3n Interamericana de Derechos Humanos en adelante la Comisi\u00f3n Interamericana o la Comisi\u00f3n someti\u00f3 ante la Corte Interamericana de Derechos Humanos en adelante la Corte Interamericana la Corte o el Tribunal el presente caso. El", - "values": [ - "Corte Interamericana de Derechos Humanos" - ] - }, - { - "text": "CORTE INTERAMERICANA DE DERECHOS HUMANOS CASO CHITAY NECH Y OTROS VS. GUATEMALA SENTENCIA DE DE MAYO DE Excepciones Preliminares Fondo Reparaciones y Costas En el Caso Chitay Nech y otros La Corte Interamericana de Derechos Humanos en adelante la Corte la Corte Interamericana o el Tribunal integrada por los siguientes jueces Diego Garc\u00edaSay\u00e1n Presidente Leonardo A. Franco Vicepresidente Manuel E. Ventura Robles Juez Margarette May Macaulay Jueza Rhadys Abreu Blondet Jueza Alberto P\u00e9rez P\u00e9rez ", - "values": [ - "Corte Interamericana de Derechos Humanos" - ] - }, - { - "text": "RESOLUCI\u00d3N DE LA CORTE INTERAMERICANA DE DERECHOS HUMANOS DE DE NOVIEMBRE DE CASO B\u00c1MACA VEL\u00c1SQUEZ VS. GUATEMALA SUPERVISI\u00d3N DE CUMPLIMIENTO DE SENTENCIA VISTO La Sentencia de fondo dictada por la Corte Interamericana de Derechos Humanos en adelante la Corte la Corte Interamericana o el Tribunal el de noviembre de La Sentencia de reparaciones dictada por la Corte Interamericana el de febrero de Las Resoluciones de la Corte de de noviembre de de marzo de de julio de de julio de ", - "values": [ - "Corte Interamericana de Derechos Humanos" - ] - }, - { - "text": "INFORME N\u00ba CASO MARTIN REID TRINIDAD Y TOBAGO de marzo de I. RESUMEN Por carta fechada el de agosto de el Sr. Glynn Barwick el peticionario de la firma de abogados de Londres Simmons Simmons present\u00f3 una denuncia ante la Comisi\u00f3n Interamericana de Derechos Humanos en adelante la Comisi\u00f3n contra la Rep\u00fablica de Trinidad y Tobago en adelante el Estado o Trinidad en nombre del Sr. Martin Reid actualmente condenado a muerte y recluido en la Prisi\u00f3n del Estado en Puerto Espa\u00f1a. En la se ", - "values": [ - "Comisi\u00f3n Interamericana de Derechos Humanos" - ] - }, - { - "text": "RESOLUCI\u00d3N DEL PRESIDENTE DE LA CORTE INTERAMERICANA DE DERECHOS HUMANOS DE DE FEBRERO DE CASO CAMBA CAMPOS Y OTROS VS. ECUADOR VISTO El escrito de de noviembre de mediante el cual la Comisi\u00f3n Interamericana de Derechos humanos en adelante la Comisi\u00f3n Interamericana de Derechos Humanos o la Comisi\u00f3n someti\u00f3 a la Corte Interamericana de Derechos Humanos en adelante la Corte interamericana la Corte o el Tribunal un caso en contra de la Rep\u00fablica del Ecuador en adelante Ecuador o el Estado. ", - "values": [ - "Corte Interamericana de Derechos Humanos" - ] - }, - { - "text": "RESOLUCI\u00d3N DEL PRESIDENTE DE LA CORTE INTERAMERICANA DE DERECHOS HUMANOS DE DE ENERO DE FONDO DE ASISTENCIA LEGAL DE V\u00cdCTIMAS SOLICITUD PRESENTADA POR LOS REPRESENTANTES DE LAS V\u00cdCTIMAS CASO FAMILIA BARRIOS VS. VENEZUELA SUPERVISI\u00d3N DE CUMPLIMIENTO DE SENTENCIA VISTO La Resoluci\u00f3n del Presidente de la Corte Interamericana de Derechos Humanos de de abril de mediante la cual declar\u00f3 procedente la solicitud interpuesta por las presuntas v\u00edctimas a trav\u00e9s de sus representantes de acogerse al ", - "values": [ - "Corte Interamericana de Derechos Humanos" - ] - }, - { - "text": "R e o s lu c n i\u00f3 d a C rte o n I m a ic d D h H s u n o d m e a o y S lic o tu d e M a s P rv n re p s c to d la R \u00fa b iB v rn e V u z la A u s n to O C F I V C o s a d e lrc z VISTOS El escrito de de marzo de y sus anexos del Centro por la Justicia y el Derecho Internacional en adelante CEJIL y el Comit\u00e9 de Familiares de las V\u00edctimas de los Sucesos de Febrero y Marzo de en adelante COFAVIC en calidad de representantes en adelante los representantes mediante los cuales sometieron ante ", - "values": [ - "Corte Interamericana de Derechos Humanos" - ] - }, - { - "text": "RESOLUCI\u00d3N DE LA CORTE INTERAMERICANA DE DERECHOS HUMANOS DE DE JULIO DE MEDIDAS PROVISIONALES SOLICITADAS POR LA COMISI\u00d3N INTERAMERICANA DE DERECHOS HUMANOS RESPECTO DE LA REP\u00daBLICA DE COLOMBIA CASO PUEBLO IND\u00cdGENA KANKUAMO VISTOS El escrito de la Comisi\u00f3n Interamericana de Derechos Humanos en adelante la Comisi\u00f3n o la Comisi\u00f3n Interamericana de de julio de mediante el cual someti\u00f3 a la Corte Interamericana de Derechos Humanos en adelante la Corte o la Corte Interamericana de acuerdo con ", - "values": [ - "Corte Interamericana de Derechos Humanos" - ] - }, - { - "text": "RESOLUCI\u00d3N DE LA CORTE INTERAMERICANA DE DERECHOS HUMANOS DE DE JUNIO DE CASO HELIODORO PORTUGAL VS. PANAM\u00c1 SUPERVISI\u00d3N DE CUMPLIMIENTO DE SENTENCIA VISTO La Sentencia de excepciones preliminares fondo reparaciones y costas en adelante la Sentencia dictada por la Corte Interamericana de Derechos Humanos en adelante la Corte Interamericana la Corte o el Tribunal el de agosto de La Resoluci\u00f3n de supervisi\u00f3n de cumplimiento de la Sentencia emitida por la Corte Interamericana el de mayo de ", - "values": [ - "Corte Interamericana de Derechos Humanos" - ] - }, - { - "text": "RESOLUCI\u00d3N DE LA CORTE INTERAMERICANA DE DERECHOS HUMANOS DE DE SEPTIEMBRE DE MEDIDAS PROVISIONALES SOLICITADAS POR LOS REPRESENTANTES DE LAS V\u00cdCTIMAS RESPECTO DE LA REP\u00daBLICA DE NICARAGUA COMUNIDAD MAYAGNA SUMO AWAS TINGNI VISTOS La sentencia de la Corte Interamericana de Derechos Humanos en adelante la Corte Interamericana la Corte o el Tribunal de de agosto de en el Caso de la Comunidad Mayagna Sumo Awas Tingni. La comunicaci\u00f3n de los representantes de la Comunidad Mayagna Sumo Awas ", - "values": [ - "Corte Interamericana de Derechos Humanos" - ] - }, - { - "text": "INFORME N\u00ba PETICI\u00d3N ADMISIBILIDAD OMAR HUMBERTO MALDONADO VARGAS Y OTROS CHILE de marzo de I. RESUMEN El de abril de dos organizaciones de derechos humanos la Corporaci\u00f3n de Promoci\u00f3n de Defensa de los Derechos del Pueblo CODEPU con sede en Chile y representada por su Presidente Paz Rojas Baeza y los abogados Mar\u00eda Alejandra Arriaza Donoso y Hugo Humberto Guti\u00e9rrez G\u00e1lvez y la Federaci\u00f3n Internacional de Ligas de Derechos Humanos FIDH con sede en Francia presentaron una petici\u00f3n ante la ", - "values": [ - "Comisi\u00f3n Interamericana de Derechos Humanos" - ] - }, - { - "text": "RESOLUCI\u00d3N DEL PRESIDENTE DE LA CORTE INTERAMERICANA DE DERECHOS HUMANOS DE DE ABRIL DE CASO NOR\u00cdN CATRIM\u00c1N Y OTROS LONKOS DIRIGENTES Y ACTIVISTAS DEL PUEBLO IND\u00cdGENA MAPUCHE VS. CHILE VISTO El escrito de sometimiento del caso contra el Estado de Chile presentado el de agosto de por la Comisi\u00f3n Interamericana de Derechos Humanos en adelante la Comisi\u00f3n Interamericana o la Comisi\u00f3n ante la Corte Interamericana de Derechos Humanos en adelante la Corte Interamericana la Corte o el Tribunal ", - "values": [ - "Corte Interamericana de Derechos Humanos" - ] - }, - { - "text": "INFORME N\u00ba CASO Daniel David Tibi Ecuador de octubre de I. RESUMEN El de julio de la Comisi\u00f3n Interamericana de Derechos Humanos en adelante la Comisi\u00f3n recibi\u00f3 una denuncia sobre la violaci\u00f3n de los derechos protegidos en la Convenci\u00f3n Americana sobre Derechos Humanos en adelante la Convenci\u00f3n Americana por parte de la Rep\u00fablica del Ecuador en adelante el Estado o Ecuador en perjuicio del se\u00f1or Daniel David Tibi de nacionalidad francesa comerciante de piedras preciosas y objetos de arte", - "values": [ - "Comisi\u00f3n Interamericana de Derechos Humanos" - ] - }, - { - "text": "RESOLUCI\u00d3N DEL PRESIDENTE DE LA CORTE INTERAMERICANA DE DERECHOS HUMANOS DE DE ENERO DE CASO FURLAN Y FAMILIARES VS. ARGENTINA VISTO El escrito de de marzo de mediante el cual la Comisi\u00f3n Interamericana de Derechos Humanos en adelante la Comisi\u00f3n Interamericana o la Comisi\u00f3n someti\u00f3 a la Corte Interamericana de Derechos Humanos en adelante la Corte Interamericana la Corte o el Tribunal un caso en contra de la Rep\u00fablica Argentina en adelante Argentina o el Estado. En esa oportunidad la el", - "values": [ - "Corte Interamericana de Derechos Humanos" - ] - }, - { - "text": "Resoluci\u00f3n de la Corte Interamericana de Derechos Humanos de de enero de Solicitud de medidas provisionales presentada por los representantes de un grupo de v\u00edctimas en el Caso del Penal Miguel Castro Castro VISTO La Sentencia sobre fondo reparaciones y costas emitida el de noviembre de por la Corte Interamericana de Derechos Humanos en adelante la Corte Interamericana o el Tribunal en el caso del Penal Miguel Castro Castro. El escrito de de diciembre de y sus anexos mediante los los ", - "values": [ - "Corte Interamericana de Derechos Humanos" - ] - }, - { - "text": "Corte Interamericana de Derechos Humanos Caso Baena Ricardo y otros Vs. Panam\u00e1 Sentencia de de noviembre de Excepciones Preliminares En el caso Baena Ricardo y otros la Corte Interamericana de Derechos Humanos en adelante la Corte la Corte Interamericana o el Tribunal integrada por los siguientes jueces Ant\u00f4nio A. Can\u00e7ado Trindade Presidente M\u00e1ximo Pacheco G\u00f3mez Vicepresidente Hern\u00e1n Salgado Pesantes Juez Oliver Jackman Juez Alirio Abreu Burelli Juez y Carlos Vicente de Roux Rengifo Juez E.", - "values": [ - "Corte Interamericana de Derechos Humanos" - ] - }, - { - "text": "RELAT\u00d3RIO N ADMISSIBILIDADE PETI\u00c7\u00c3O JOS\u00c9 DEL CARMEN \u00c1LVAREZ BLANCO E OUTROS COMUNIDADE BELLO COL\u00d4MBIA de outubro de I. RESUMO Em de maio de a Comiss\u00e3o Interamericana de Direitos Humanos doravante denominada a Comiss\u00e3o ou CIDH recebeu uma peti\u00e7\u00e3o apresentada pela Associa\u00e7\u00e3o de Familiares dos Detidos e Desaparecidos de Col\u00f4mbia FEDEFAM a Federa\u00e7\u00e3o Latinoamericana de Associa\u00e7\u00f5es de Familiares de Detidos e Desaparecidos ASFADDES e a Comiss\u00e3o Colombiana de Juristas CCJ doravante denominados os", - "values": [ - "Comisi\u00f3n Interamericana de Derechos Humanos" - ] - }, - { - "text": "RESOLUCI\u00d3N DE LA CORTE INTERAMERICANA DE DERECHOS HUMANOS DE DE FEBRERO DE SOLICITUD DE MEDIDAS PROVISIONALES CASO NADEGE DORZEMA Y OTROS VS. REP\u00daBLICA DOMINICANA VISTOS El escrito de de diciembre de mediante el cual la Cl\u00ednica Internacional de Defensa de los Derechos Humanos de la Universidad de Quebec en Montreal y el Grupo de Apoyo a los Repatriados y Refugiados en adelante los representantes dos de las organizaciones representantes de las v\u00edctimas en el caso Nadege Dorzema presentaron ", - "values": [ - "Corte Interamericana de Derechos Humanos" - ] - }, - { - "text": "VOTO RAZONADO DEL JUEZ AA. CAN\u00c7ADO TRINDADE Voto a favor de la adopci\u00f3n por la Corte Interamericana de Derechos Humanos de la presente Sentencia sobre el caso B\u00e1maca Vel\u00e1squez Fondo en todos sus puntos resolutivos. Ciertas cuestiones transcendentales planteadas en el presente caso me suscitan adem\u00e1s algunas reflexiones de las cuales me permito dejar constancia en el presente Voto Razonado para fundamentar mi concepci\u00f3n y posici\u00f3n frente a tales cuestiones. De inicio es verdaderamente penoso y ", - "values": [ - "Corte Interamericana de Derechos Humanos" - ] - }, - { - "text": "VOTO DISIDENTE DEL JUEZ ALBERTO P\u00c9REZ P\u00c9REZ EN EL CASO DE LA COMUNIDAD CAMPESINA DE SANTA B\u00c1RBARA VS. PER\u00da He votado negativamente la parte de la sentencia en la que se califica a los brutales actos a que ella se refiere como desaparici\u00f3n forzada y no como ejecuci\u00f3n extrajudicial o masacre con car\u00e1cter de crimen de lesa humanidad. Las razones para mi voto que se exponen a continuaci\u00f3n comprenden tanto la descripci\u00f3n de los hechos como su calificaci\u00f3n jur\u00eddica desde el punto de vista del de ", - "values": [ - "Corte Interamericana de Derechos Humanos" - ] - }, - { - "text": "Resoluci\u00f3n de la Corte Interamericana de Derechos Humanos de de mayo de Caso Ferm\u00edn Ram\u00edrez Vs. Guatemala Supervisi\u00f3n de Cumplimiento de Sentencia Caso Raxcac\u00f3 Reyes Vs. Guatemala Supervisi\u00f3n de Cumplimiento de Sentencia Caso Raxcac\u00f3 Reyes y otros Solicitud de ampliaci\u00f3n de medidas provisionales VISTOS A Caso Ferm\u00edn Ram\u00edrez La Sentencia de fondo reparaciones y costas dictada el de junio de por la Corte Interamericana de Derechos Humanos en adelante la Corte la Corte Interamericana o el ", - "values": [ - "Corte Interamericana de Derechos Humanos" - ] - }, - { - "text": "RESOLUCI\u00d3N DEL PRESIDENTE DE LA CORTE INTERAMERICANA DE DERECHOS HUMANOS DE DE ENERO DE FONDO DE ASISTENCIA LEGAL DE V\u00cdCTIMAS CASO CHINCHILLA SANDOVAL Y OTROS VS. GUATEMALA VISTO El escrito de de agosto de y sus anexos mediante los cuales la Comisi\u00f3n Interamericana de Derechos Humanos en adelante la Comisi\u00f3n Interamericana o la Comisi\u00f3n someti\u00f3 ante la Corte Interamericana de Derechos Humanos en adelante la Corte Interamericana la Corte o el Tribunal el presente caso. El escrito de de ", - "values": [ - "Corte Interamericana de Derechos Humanos" - ] - }, - { - "text": "PARTIALLY DISSENTING OPINION OF JUDGE DIEGO GARC\u00cdASAY\u00c1N WITH RESPECT TO THE JUDGMENT OF THE INTERAMERICAN COURT OF HUMAN RIGHTS IN THE CASE OF SALVADOR CHIRIBOGA V. ECUADOR MARCH The Judgment on the Merits issued in this case by the Court on May is clear regarding the standard for determining the amount of just compensation as well as on how to make this determination. Thus in this Judgment on reparations the Court is not called to decide on how to reach that determination as it did so in ", - "values": [ - "Corte Interamericana de Derechos Humanos" - ] - }, - { - "text": "RESOLUCI\u00d3N DE LA CORTE INTERAMERICANA DE DERECHOS HUMANOS DE DE ABRIL DE CASO DEL PENAL MIGUEL CASTRO CASTRO VS. PER\u00da SUPERVISI\u00d3N DE CUMPLIMIENTO DE SENTENCIA VISTO La Sentencia de fondo reparaciones y costas en adelante tambi\u00e9n la Sentencia dictada el de noviembre de mediante la cual por unanimidad la Corte Interamericana de Derechos Humanos en adelante la Corte Interamericana la Corte o el Tribunal dispuso que El Estado debe en un plazo razonable investigar efectivamente los hechos en", - "values": [ - "Corte Interamericana de Derechos Humanos" - ] - }, - { - "text": "INFORME N\u00ba PETICI\u00d3N ADMISIBILIDAD V\u00cdCTOR MANUEL ANCALAF LLAUPE CHILE de mayo de I. RESUMEN El de mayo de la Comisi\u00f3n Interamericana de Derechos Humanos en adelante la Comisi\u00f3n Interamericana la Comisi\u00f3n o la CIDH recibi\u00f3 una denuncia presentada por dirigentes del pueblo ind\u00edgena mapuche y por los abogados Ariel Le\u00f3n Bacian aymara Sergio Fuenzalida Bascu\u00f1\u00e1n del Centro de Estudios Jur\u00eddicos Sociales y Documentaci\u00f3n Ind\u00edgena y Jos\u00e9 Alywin Oyarz\u00fan Director del Observatorio de Derecho de ", - "values": [ - "Comisi\u00f3n Interamericana de Derechos Humanos" - ] - }, - { - "text": "RESOLUCI\u00d3N DE LA PRESIDENTA DE LA CORTE INTERAMERICANA DE DERECHOS HUMANOS DE DE DICIEMBRE DE CASO DE LAS HERMANAS SERRANO CRUZ VS. EL SALVADOR SUPERVISI\u00d3N DE CUMPLIMIENTO DE SENTENCIA VISTO La Sentencia de fondo reparaciones y costas en adelante la Sentencia dictada por la Corte Interamericana de Derechos Humanos en adelante la Corte Interamericana la Corte o el Tribunal el de marzo de Las resoluciones de supervisi\u00f3n de cumplimiento de la Sentencia dictadas por la Corte el de septiembre", - "values": [ - "Corte Interamericana de Derechos Humanos" - ] - }, - { - "text": "Corte Interamericana de Derechos Humanos Caso God\u00ednez Cruz Vs. Honduras Sentencia de de enero de Fondo En el caso God\u00ednez Cruz la Corte Interamericana de Derechos Humanos integrada por los siguientes jueces Rafael Nieto Navia Presidente Rodolfo E. Piza E Juez Thomas Buergenthal Juez Pedro Nikken Juez H\u00e9ctor FixZamudio Juez Rigoberto Espinal Ir\u00edas Juez ad hoc presentes adem\u00e1s Charles Moyer Secretario y Manuel Ventura Secretario Adjunto de acuerdo con el art\u00edculo de su Reglamento en adelante ", - "values": [ - "Corte Interamericana de Derechos Humanos" - ] - }, - { - "text": "RESOLUCI\u00d3N DE LA CORTE INTERAMERICANA DE DERECHOS HUMANOS DE DE OCTUBRE DE CASO VARGAS ARECO VS. PARAGUAY SUPERVISI\u00d3N DE CUMPLIMIENTO DE SENTENCIA VISTOS La Sentencia de fondo reparaciones y costas de de septiembre de en adelante la Sentencia dictada por la Corte Interamericana de Derechos Humanos en adelante la Corte la Corte Interamericana o el Tribunal notificada \u00edntegramente a la Rep\u00fablica del Paraguay en adelante el Estado o el Paraguay el de octubre de mediante la cual dispuso por ", - "values": [ - "Corte Interamericana de Derechos Humanos" - ] - }, - { - "text": "RESOLUCI\u00d3N DE LA CORTE INTERAMERICANA DE DERECHOS HUMANOS DE DE NOVIEMBRE DE CASO CLAUDE REYES Y OTROS VS. CHILE SUPERVISI\u00d3N DE CUMPLIMIENTO DE SENTENCIA VISTO La Sentencia de Fondo Reparaciones y Costas emitida el de septiembre de en adelante la Sentencia por la Corte Interamericana de Derechos Humanos en adelante la Corte la Corte Interamericana o el Tribunal mediante la cual dispuso que El Estado debe a trav\u00e9s de la entidad correspondiente y en el plazo de seis meses entregar la por", - "values": [ - "Corte Interamericana de Derechos Humanos" - ] - }, - { - "text": "Resoluci\u00f3n de la Corte Interamericana de Derechos Humanos de de enero de Caso Cepeda Vargas Vs. Colombia Visto La Resoluci\u00f3n dictada por la entonces Presidenta de la Corte Interamericana de Derechos Humanos en adelante la Corte Interamericana la Corte o el Tribunal el de diciembre de mediante la cual convoc\u00f3 a la Comisi\u00f3n Interamericana de Derechos Humanos en adelante la Comisi\u00f3n Interamericana o la Comisi\u00f3n al Estado de Colombia en adelante el Estado o Colombia y a los representantes de ", - "values": [ - "Corte Interamericana de Derechos Humanos" - ] - }, - { - "text": "RESOLUCI\u00d3N DEL PRESIDENTE DE LA CORTE INTERAMERICANA DE DERECHOS HUMANOS DE DE DICIEMBRE DE CASO ZEGARRA MAR\u00cdN VS. PER\u00da CONVOCATORIA A AUDIENCIA VISTO El escrito de sometimiento del caso y el Informe de Fondo de la Comisi\u00f3n Interamericana de Derechos Humanos en adelante la Comisi\u00f3n Interamericana o la Comisi\u00f3n el escrito de solicitudes argumentos y pruebas en adelante el escrito de solicitudes y argumentos de los representantes de la presunta v\u00edctima en adelante los representantes y el de ", - "values": [ - "Corte Interamericana de Derechos Humanos" - ] - }, - { - "text": "RESOLUCI\u00d3N DEL PRESIDENTE DE LA CORTE INTERAMERICANA DE DERECHOS HUMANOS DE FEBRERO DE SUPERVISI\u00d3N DE CUMPLIMIENTO DE LAS MEDIDAS DE REPARACI\u00d3N SOBRE ATENCI\u00d3N M\u00c9DICA Y PSICOL\u00d3GICA ORDENADAS EN NUEVE CASOS COLOMBIANOS CONVOCATORIA DE AUDIENCIA PRIVADA VISTO La resoluci\u00f3n de convocatoria de audiencia en el marco de la supervisi\u00f3n de cumplimiento emitida por la Corte Interamericana de Derechos Humanos en adelante la Corte la Corte Interamericana o el Tribunal el de abril de en relaci\u00f3n con ", - "values": [ - "Corte Interamericana de Derechos Humanos" - ] - }, - { - "text": "INFORME No. PETICI\u00d3N ADMISIBILIDAD KEVIN DIAL Y ANDREW DOTTIN TRINIDAD Y TOBAGO de julio de I. RESUMEN El de abril de la Comisi\u00f3n Interamericana de Derechos Humanos en adelante la Comisi\u00f3n Interamericana o la CIDH recibi\u00f3 dos peticiones junto con solicitudes de medidas cautelares de HerbertSmith LLP los peticionarios contra la Rep\u00fablica de Trinidad y Tobago Trinidad y Tobago o el Estado. Dichas peticiones fueron presentadas a nombre de Kevin Dial y Andrew Dottin las presuntas v\u00edctimas ", - "values": [ - "Comisi\u00f3n Interamericana de Derechos Humanos" - ] - }, - { - "text": "RESOLUCI\u00d3N DE LA CORTE INTERAMERICANA DE DERECHOS HUMANOS DE DE SEPTIEMBRE DE MEDIDAS PROVISIONALES RESPECTO DE HAIT\u00cd ASUNTO A. J. Y OTROS VISTO El escrito de la Comisi\u00f3n Interamericana de Derechos Humanos en adelante la Comisi\u00f3n Interamericana o la Comisi\u00f3n de de agosto de y sus anexos mediante los cuales someti\u00f3 a la Corte Interamericana de Derechos Humanos en adelante la Corte Interamericana la Corte o el Tribunal una solicitud de medidas provisionales de conformidad con los art\u00edculos ", - "values": [ - "Corte Interamericana de Derechos Humanos" - ] - }, - { - "text": " EL JUEZ JULIO A. BARBERIS HACE LA DECLARACI\u00d3N SIGUIENTE No estoy de acuerdo con el Cap\u00edtulo VII de la decisi\u00f3n que antecede titulado Violaci\u00f3n de los Art\u00edculos y Garant\u00edas Judiciales y Protecci\u00f3n Judicial. La sentencia deber\u00eda haber fundado sin m\u00e1s consideraci\u00f3n la violaci\u00f3n de los art\u00edculos y de la Convenci\u00f3n por parte de Colombia en los dos hechos siguientes reconocidos por ella a saber a el plazo de m\u00e1s de diez a\u00f1os transcurrido desde que sucedi\u00f3 el caso de Las Palmeras sin que hasta ", - "values": [ - "Corte Interamericana de Derechos Humanos" - ] - }, - { - "text": "RESOLUCI\u00d3N DE LA CORTE INTERAMERICANA DE DERECHOS HUMANOS DE DE FEBRERO DE MEDIDAS PROVISIONALES RESPECTO DE COLOMBIA CASO CABALLERO DELGADO Y SANTANA VISTO Las Sentencias de fondo y de reparaciones y costas dictadas en el caso Caballero Delgado y Santana por la Corte Interamericana de Derechos Humanos en adelante la Corte Interamericana la Corte o el Tribunal el de diciembre de y el de enero de respectivamente. Las Resoluciones de la Corte Interamericana de de diciembre de de enero ", - "values": [ - "Corte Interamericana de Derechos Humanos" - ] - }, - { - "text": "RELAT\u00d3RIO N PETI\u00c7\u00c3O ADMISSIBILIDADE COMUNIDADE IND\u00cdGENA SAWHOYAMAXA DO POVO ENXET PARAGUAI de fevereiro de I. RESUMO Em de maio de a Comiss\u00e3o Interamericana de Direitos Humanos doravante denominada a Comiss\u00e3o ou a CIDH recebeu uma peti\u00e7\u00e3o apresentada pela organiza\u00e7\u00e3o n\u00e3o governamental Terraviva para os Povos Ind\u00edgenas de Chaco TERRAVIVA doravante denominada os peticion\u00e1rios em representa\u00e7\u00e3o da Comunidade Ind\u00edgena Sawhoyamaxa do Povo Enxet e seus membros doravante denominada a Comunidade ", - "values": [ - "Comisi\u00f3n Interamericana de Derechos Humanos" - ] - }, - { - "text": "INFORME No. PETICI\u00d3N ADMISIBILIDAD LM. Y OTROS PARAGUAY de noviembre de I. RESUMEN El de septiembre de la Comisi\u00f3n Interamericana de Derechos Humanos en adelante la Comisi\u00f3n recibi\u00f3 una petici\u00f3n presentada por la Coordinadora por los derechos de la Infancia y Adolescencia CDIA y el Centro por la Justicia y el Derecho Internacional CEJIL en adelante los peticionarios con relaci\u00f3n al ni\u00f1o LM a sus padres biol\u00f3gicos y a sus abuelos maternos. Se alega que el Estado paraguayo en adelante el ", - "values": [ - "Comisi\u00f3n Interamericana de Derechos Humanos" - ] - }, - { - "text": "RESOLUCI\u00d3N DEL PRESIDENTE DE LA CORTE INTERAMERICANA DE DERECHOS HUMANOS DE DE OCTUBRE DE AMPLIACI\u00d3N DE MEDIDAS PROVISIONALES SOLICITADA POR LA COMISI\u00d3N INTERAMERICANA DE DERECHOS HUMANOS RESPECTO DE LA REP\u00daBLICA DE COLOMBIA CASO \u00c1LVAREZ Y OTROS VISTOS La Resoluci\u00f3n del Presidente de la Corte Interamericana de Derechos Humanos en adelante el Presidente de de julio de en cuya parte dispositiva decidi\u00f3 Requerir a la Rep\u00fablica de Colombia que adopte sin dilaci\u00f3n cuantas medidas sean para ", - "values": [ - "Corte Interamericana de Derechos Humanos" - ] - }, - { - "text": "RESOLUCI\u00d3N DEL PRESIDENTE DE LA CORTE INTERAMERICANA DE DERECHOS HUMANOS DE DE OCTUBRE DE SOLICITUD DE MEDIDAS PROVISIONALES RESPECTO DE GUATEMALA A FAVOR DE LOS INTEGRANTES DEL EQUIPO DE ESTUDIOS COMUNITARIOS Y ACCION PSICOSOCIAL ECAP CASO MASACRE PLAN DE SANCHEZ VISTOS El escrito y sus anexos presentados el de octubre de por el Centro para la Acci\u00f3n Legal en Derechos Humanos en adelante CALDH o los representantes mediante los cuales someti\u00f3 a la Corte Interamericana de Derechos Humanos ", - "values": [ - "Corte Interamericana de Derechos Humanos" - ] - }, - { - "text": "VOTO RAZONADO DEL JUEZ AA. CAN\u00c7ADO TRINDADE Voto a favor de la adopci\u00f3n de la presente Sentencia de la Corte Interamericana de Derechos Humanos en el caso del Instituto de Reeducaci\u00f3n del Menor relativo al Estado paraguayo la cual en la misma l\u00ednea de pensamiento inaugurada por la Corte en el caso hist\u00f3rico y paradigm\u00e1tico de los Ni\u00f1os de la Calle Villagr\u00e1n Morales y Otros versus Guatemala retrata una situaci\u00f3n real del cotidiano en toda Am\u00e9rica Latina y otras regiones del mundo y demuestra ", - "values": [ - "Corte Interamericana de Derechos Humanos" - ] - }, - { - "text": "VOTO RAZONADO DEL JUEZ AA. CAN\u00c7ADO TRINDADE He votado en favor de la adopci\u00f3n por la Corte Interamericana de Derechos Humanos de la presente Sentencia en el caso La Cantuta versus Per\u00fa. Dada la importancia de las cuestiones en ella tratadas por la Corte me veo en la obligaci\u00f3n de agregar a la presente Sentencia este Voto Razonado con mis reflexiones personales como fundamento de mi posici\u00f3n al respecto de lo deliberado por el Tribunal. Centrar\u00e9 mis reflexiones en cuatro puntos b\u00e1sicos a saber ", - "values": [ - "Corte Interamericana de Derechos Humanos" - ] - }, - { - "text": "RESOLUCI\u00d3N DE LA PRESIDENTA DE LA CORTE INTERAMERICANA DE DERECHOS HUMANOS DE DE MARZO DE CASO TIU TOJIN VS. GUATEMALA VISTOS El escrito de demanda presentado por la Comisi\u00f3n Interamericana de Derechos Humanos en adelante la Comisi\u00f3n Interamericana o la Comisi\u00f3n ante la Corte Interamericana de Derechos Humanos en adelante la Corte Interamericana la Corte o el Tribunal el de julio de mediante el cual ofreci\u00f3 dos testimonios y dos peritajes. El escrito de solicitudes argumentos y pruebas en", - "values": [ - "Corte Interamericana de Derechos Humanos" - ] - }, - { - "text": "Resoluci\u00f3n de la Corte Interamericana de Derechos Humanos de de noviembre de Caso Myrna Mack Chang Vs. Guatemala Supervisi\u00f3n de Cumplimiento de Sentencia VISTOS La Sentencia de fondo reparaciones y costas en adelante la Sentencia dictada por la Corte Interamericana de Derechos Humanos en adelante la Corte Interamericana la Corte o el Tribunal el de noviembre de La Resoluci\u00f3n dictada por la Corte Interamericana el de septiembre de mediante la cual determin\u00f3 en lo conducente que el ", - "values": [ - "Corte Interamericana de Derechos Humanos" - ] - }, - { - "text": "VOTO RAZONADO DEL JUEZ SERGIO GARC\u00cdA RAM\u00cdREZ A LA SENTENCIA DE LA CORTE INTERAMERICANA DE DERECHOS HUMANOS EN EL CASO LA CANTUTA DEL DE NOVIEMBRE DE JURISPRUDENCIA DE LA CORTE SOBRE AUTOAMNIST\u00cdAS La Corte se ha ocupado en diversas oportunidades del problema que representan las llamadas leyes de autoamnist\u00eda. Por primera vez se plante\u00f3 directamente esta cuesti\u00f3n a prop\u00f3sito de disposiciones expedidas por el mismo Estado al que se refiere la presente resoluci\u00f3n en la Sentencia sobre del Caso ", - "values": [ - "Corte Interamericana de Derechos Humanos" - ] - }, - { - "text": "RESOLUCION DE LA CORTE INTERAMERICANA DE DERECHOS HUMANOS DE FEBRERO DE CASO DEL TRIBUNAL CONSTITUCIONAL AGUIRRE ROCA REY TERRY Y REVOREDO MARSANO VS. PERU CUMPLIMIENTO DE SENTENCIA VISTOS La Sentencia dictada por la Corte Interamericana de Derechos Humanos en adelante la Corte la Corte Interamericana o el Tribunal el de enero de mediante la cual declar\u00f3 que el Estado viol\u00f3 en perjuicio de Manuel Aguirre Roca Guillermo Rey Terry y Delia Revoredo Marsano el derecho a las garant\u00edas en el", - "values": [ - "Corte Interamericana de Derechos Humanos" - ] - }, - { - "text": "VOTO DISIDENTE DEL JUEZ EDUARDO VIO GROSSI SENTENCIA DE LA CORTE INTERAMERICANA DE DERECHOS HUMANOS CASO COMUNIDAD CAMPESINA DE SANTA B\u00c1RBARA VS. PER\u00da SENTENCIA DE DE SEPTIEMBRE DE Excepciones Preliminares Fondo Reparaciones y Costas INTRODUCCI\u00d3N. Se emite el presente voto individual disidente a la Sentencia indicada en el t\u00edtulo en raz\u00f3n de que \u00e9sta desestim\u00f3 la excepci\u00f3n preliminar relativa al incumplimiento de la regla del previo agotamiento de los recursos internos prevista en el art\u00edculo", - "values": [ - "Corte Interamericana de Derechos Humanos" - ] - }, - { - "text": "Corte Interamericana de Derechos Humanos Caso Yvon Neptune vs. Hait\u00ed Sentencia de mayo de Fondo Reparaciones y Costas En el caso Yvon Neptune vs. Hait\u00ed la Corte Interamericana de Derechos Humanos en adelante la Corte Interamericana la Corte o el Tribunal integrada por los siguientes jueces Cecilia Medina Quiroga Presidenta Diego Garc\u00edaSay\u00e1n Vicepresidente Sergio Garc\u00eda Ram\u00edrez Juez Manuel E. Ventura Robles Juez Leonardo A. Franco Juez Margarette May Macaulay Jueza y Rhadys Abreu Blondet Jueza", - "values": [ - "Corte Interamericana de Derechos Humanos" - ] - }, - { - "text": "VOTO CONCURRENTE DEL JUEZ MONTIEL ARG\u00dcELLO He estado de acuerdo con todas las decisiones adoptadas por la Corte en la sentencia que antecede caso Caballero Delgado y Santana mas deseo hacer algunas consideraciones respecto al rechazo de la solicitud de indemnizaci\u00f3n por los da\u00f1os materiales que se dicen causados por la muerte de Mar\u00eda del Carmen Santana. Bien conocida es la controversia entre quienes opinan que la vida humana tiene un valor econ\u00f3mico o patrimonial para su titular y quienes ", - "values": [ - "Corte Interamericana de Derechos Humanos" - ] - }, - { - "text": "Corte Interamericana de Derechos Humanos Caso God\u00ednez Cruz Vs. Honduras Sentencia de de julio de Reparaciones y Costas En el caso God\u00ednez Cruz la Corte Interamericana de Derechos Humanos integrada por los siguientes jueces H\u00e9ctor Gros Espiell Presidente H\u00e9ctor FixZamudio Vicepresidente Rodolfo E. Piza E Juez Pedro Nikken Juez Rafael Nieto Navia Juez Rigoberto Espinal Ir\u00edas Juez ad hoc presente adem\u00e1s Manuel E. Ventura Robles Secretario ai. de acuerdo con el art\u00edculo de su Reglamento dicta la", - "values": [ - "Corte Interamericana de Derechos Humanos" - ] - }, - { - "text": "Corte Interamericana de Derechos Humanos Caso Caesar Vs. Trinidad y Tobago Sentencia de de marzo de Fondo Reparaciones y Costas En el caso Caesar La Corte Interamericana de Derechos Humanos en adelante la Corte la Corte Interamericana o el Tribunal integrada por los siguientes jueces Sergio Garc\u00eda Ram\u00edrez Presidente Alirio Abreu Burelli Vicepresidente Oliver Jackman Juez Ant\u00f4nio A. Can\u00e7ado Trindade Juez Cecilia Medina Quiroga Jueza Manuel E. Ventura Robles Juez y Diego Garc\u00edaSay\u00e1n Juez ", - "values": [ - "Corte Interamericana de Derechos Humanos" - ] - }, - { - "text": "CORTE INTERAMERICANA DE DERECHOS HUMANOS CASO GONZALES LLUY Y OTROS VS. ECUADOR SENTENCIA DE DE SEPTIEMBRE DE Excepciones Preliminares Fondo Reparaciones y Costas En el caso Gonzales Lluy y otros la Corte Interamericana de Derechos Humanos en adelante la Corte Interamericana la Corte o este Tribunal integrada por los siguientes Jueces Humberto Antonio Sierra Porto Presidente Roberto F. Caldas Vicepresidente Manuel E. Ventura Robles Juez Diego Garc\u00edaSay\u00e1n Juez Alberto P\u00e9rez P\u00e9rez Juez Eduardo ", - "values": [ - "Corte Interamericana de Derechos Humanos" - ] - }, - { - "text": "RESOLUCI\u00d3N DE LA CORTE INTERAMERICANA DE DERECHOS HUMANOS DE DE NOVIEMBRE DE MEDIDAS PROVISIONALES RESPECTO DE LOS ESTADOS UNIDOS MEXICANOS ASUNTO ALVARADO REYES Y OTROS VISTO La Resoluci\u00f3n de de mayo de mediante la cual la Corte Interamericana de Derechos Humanos en adelante la Corte Interamericana la Corte o el Tribunal orden\u00f3 la adopci\u00f3n de medidas provisionales a favor de Roc\u00edo Irene Alvarado Reyes Nitza Paola Alvarado Espinoza y Jos\u00e9 \u00c1ngel Alvarado Herrera. En particular el Tribunal ", - "values": [ - "Corte Interamericana de Derechos Humanos" - ] - }, - { - "text": "RESOLUCI\u00d3N DE LA CORTE INTERAMERICANA DE DERECHOS HUMANOS DEL DE ABRIL DE MEDIDAS PROVISIONALES ADOPTADAS POR LA CORTE INTERAMERICANA DE DERECHOS HUMANOS RESPECTO DE LA REP\u00daBLICA DE GUATEMALA CASO BLAKE VISTOS La resoluci\u00f3n del Presidente de la Corte Interamericana de Derechos Humanos en adelante la Corte de de agosto de en la cual decidi\u00f3 solicitar al Gobierno de la Rep\u00fablica de Guatemala que adopte sin dilaci\u00f3n cuantas medidas sean necesarias para asegurar eficazmente la protecci\u00f3n de la", - "values": [ - "Corte Interamericana de Derechos Humanos" - ] - }, - { - "text": "RESOLUCI\u00d3N DE LA CORTE INTERAMERICANA DE DERECHOS HUMANOS DE DE SEPTIEMBRE DE SOLICITUD DE MEDIDAS PROVISIONALES PRESENTADA POR LA COMISI\u00d3N INTERAMERICANA DE DERECHOS HUMANOS RESPECTO DE LA REP\u00daBLICA DEL PER\u00da CASO RAM\u00cdREZ HINOSTROZA Y OTROS VISTOS El escrito de de julio de mediante el cual la Comisi\u00f3n Interamericana de Derechos Humanos en adelante la Comisi\u00f3n Interamericana o la Comisi\u00f3n someti\u00f3 a la Corte Interamericana de Derechos Humanos en adelante la Corte o el Tribunal de conformidad", - "values": [ - "Corte Interamericana de Derechos Humanos" - ] - }, - { - "text": "REPORT N\u00ba CASE ERNESTINA and ERLINDA SERRANO CRUZ EL SALVADOR February I. SUMMARY On February the InterAmerican Commission on Human Rights hereinafter the InterAmerican Commission or the IACHR received a complaint filed by theAsociaci\u00f3n ProB\u00fasqueda de Ni\u00f1as y Ni\u00f1os Desaparecidos Asociaci\u00f3n ProB\u00fasqueda and the Center for Justice and International Law CEJIL jointly the petitioners alleging that the Republic of El Salvador the State bears international responsibility for the forced of the ", - "values": [ - "Comisi\u00f3n Interamericana de Derechos Humanos" - ] - }, - { - "text": "RESOLUCI\u00d3N DE LA CORTE INTERAMERICANA DE DERECHOS HUMANOS DE DE AGOSTO DE SUPERVISI\u00d3N DE CUMPLIMIENTO DE SENTENCIA CASOS MASACRES DE R\u00cdO NEGRO Y GUDIEL \u00c1LVAREZ Y OTROS VISTOS La Sentencia de excepci\u00f3n preliminar fondo reparaciones y costas emitida por la Corte Interamericana de Derechos Humanos en adelante la Corte Interamericana la Corte o este Tribunal en el caso Masacres de R\u00edo Negro Vs. Guatemala el de septiembre de y las Sentencias de fondo reparaciones y costas y de interpretaci\u00f3n ", - "values": [ - "Corte Interamericana de Derechos Humanos" - ] - }, - { - "text": "INFORME N\u00ba PETICI\u00d3N ADMISIBILIDAD RAINER IBSEN C\u00c1RDENAS Y JOS\u00c9 LUIS IBSEN PE\u00d1A BOLIVIA de octubre de I. RESUMEN El de septiembre de la Comisi\u00f3n Interamericana de Derechos Humanos en adelante la Comisi\u00f3n o la CIDH recibi\u00f3 una petici\u00f3n contra la Rep\u00fablica de Bolivia presentada por los se\u00f1ores Mario Resine Ordo\u00f1e y Tito Ibsen en adelante los peticionarios en la que se alega la tortura detenci\u00f3n ilegal y posterior desaparici\u00f3n forzada de las presuntas v\u00edctimas Rainer Ibsen C\u00e1rdenas y Jos\u00e9 ", - "values": [ - "Comisi\u00f3n Interamericana de Derechos Humanos" - ] - }, - { - "text": "VOTO CONCURRENTE DEL JUEZ EDUARDO VIO GROSSI CORTE INTERAMERICANA DE DERECHOS HUMANOS CASO COMUNIDAD GAR\u00cdFUNA DE PUNTA PIEDRA Y SUS MIEMBROS VS. HONDURAS SENTENCIA DE DE OCTUBRE DE Excepciones Preliminares Fondo Reparaciones y Costas Se emite el presente voto concurrente con la Sentencia del t\u00edtulo toda vez que si bien el infrascrito comparte las decisiones que en ella se establecen en cuanto a desestimar las excepciones preliminares interpuestas por el Estado por la falta de agotamiento de ", - "values": [ - "Corte Interamericana de Derechos Humanos" - ] - }, - { - "text": "RESOLUCI\u00d3N DEL PRESIDENTE DE LA CORTE INTERAMERICANA DE DERECHOS HUMANOS DE DE NOVIEMBRE DE SOLICITUD DE MEDIDAS PROVISIONALES PRESENTADA POR LA COMISI\u00d3N INTERAMERICANA DE DERECHOS HUMANOS RESPECTO DE VENEZUELA ASUNTO CENTRO PENITENCIARIO DE ARAGUA C\u00c1RCEL DE TOCOR\u00d3N VISTO El escrito de la Comisi\u00f3n Interamericana de Derechos Humanos en adelante la Comisi\u00f3n Interamericana o la Comisi\u00f3n de de octubre de y sus anexos mediante los cuales someti\u00f3 a la Corte Interamericana de Derechos Humanos en ", - "values": [ - "Corte Interamericana de Derechos Humanos" - ] - }, - { - "text": "RESOLUCI\u00d3N DE LA CORTE INTERAMERICANA DE DERECHOS HUMANOS DE DE AGOSTO DE REINTEGRO AL FONDO DE ASISTENCIA LEGAL DE V\u00cdCTIMAS CASO DE LOS PUEBLOS IND\u00cdGENAS KUNA DE MADUNGAND\u00cd Y EMBER\u00c1 DE BAYANO Y SUS MIEMBROS VS. PANAM\u00c1 VISTO La Sentencia de excepciones preliminares fondo reparaciones y costas en adelante la Sentencia o el Fallo dictada por la Corte Interamericana de Derechos Humanos en adelante la Corte la Corte Interamericana o el Tribunal el de octubre de la cual fue notificada el de ", - "values": [ - "Corte Interamericana de Derechos Humanos" - ] - }, - { - "text": "RESOLUCI\u00d3N DEL PRESIDENTE DE LA CORTE INTERAMERICANA DE DERECHOS HUMANOS DE DE SEPTIEMBRE DE MEDIDAS URGENTES CASO B\u00c1MACA VEL\u00c1SQUEZ GUATEMALA VISTOS La Resoluci\u00f3n de la Corte Interamericana de Derechos Humanos en adelante la Corte la Corte Interamericana o el Tribunal de de agosto de mediante la cual decidi\u00f3 Requerir al Estado de Guatemala que adopte las medidas que sean necesarias para proteger la vida e integridad personal de los se\u00f1ores Alfonso Cabrera Viagres Mar\u00eda Victoria L\u00f3pez ", - "values": [ - "Corte Interamericana de Derechos Humanos" - ] - }, - { - "text": "CORTE INTERAMERICANA DE DERECHOS HUMANOS CASO DE LA MASACRE DE LAS DOS ERRES VS. GUATEMALA SENTENCIA DE DE NOVIEMBRE DE Excepci\u00f3n Preliminar Fondo Reparaciones y Costas En el Caso de la Masacre de Las Dos Erres La Corte Interamericana de Derechos Humanos en adelante la Corte la Corte Interamericana o el Tribunal integrada por los siguientes jueces Cecilia Medina Quiroga Presidenta Diego Garc\u00edaSay\u00e1n Vicepresidente Sergio Garc\u00eda Ram\u00edrez Juez Manuel E. Ventura Robles Juez Margarette May Macaulay", - "values": [ - "Corte Interamericana de Derechos Humanos" - ] - }, - { - "text": "INFORME N PETICI\u00d3N ADMISIBILIDAD EDUARDO NICOL\u00c1S CRUZ S\u00c1NCHEZ Y OTROS PER\u00da de febrero de I. RESUMEN Mediante petici\u00f3n presentada a la Comisi\u00f3n Interamericana de Derechos Humanos en adelante Comisi\u00f3n Comisi\u00f3n Interamericana o CIDH de fecha de febrero de por Juan Miguel Jugo Viera en representaci\u00f3n de la Asociaci\u00f3n Pro Derechos Humanos APRODEH Edgar Cruz Acu\u00f1a hermano de Eduardo Nicol\u00e1s Cruz S\u00e1nchez y Herma Luz Cueva Torres madre de Herma Luz Mel\u00e9ndez Cueva en adelante los peticionarios se", - "values": [ - "Comisi\u00f3n Interamericana de Derechos Humanos" - ] - }, - { - "text": "Corte Interamericana de Derechos Humanos Caso Cayara Vs. Per\u00fa Sentencia de de febrero de Excepciones Preliminares En el caso Cayara la Corte Interamericana de Derechos Humanos integrada por los siguientes jueces H\u00e9ctor FixZamudio Presidente Sonia Picado Sotela Vicepresidente Rafael Nieto Navia Juez Alejandro Montiel Arg\u00fcello Juez Hern\u00e1n Salgado Pesantes Juez Asdr\u00fabal AguiarAranguren Juez Manuel Aguirre Roca Juez ad hoc presentes adem\u00e1s Manuel E. Ventura Robles Secretario y Ana Mar\u00eda Reina ", - "values": [ - "Corte Interamericana de Derechos Humanos" - ] - }, - { - "text": "Corte Interamericana de Derechos Humanos Caso Durand y Ugarte Vs. Per\u00fa Sentencia de de mayo de Excepciones Preliminares En el caso Durand y Ugarte la Corte Interamericana de Derechos Humanos en adelante la Corte o la Corte Interamericana integrada por los siguientes jueces Hern\u00e1n Salgado Pesantes Presidente Ant\u00f4nio A. Can\u00e7ado Trindade Vicepresidente M\u00e1ximo Pacheco G\u00f3mez Juez Alirio Abreu Burelli Juez Sergio Garc\u00eda Ram\u00edrez Juez Carlos Vicente de Roux Rengifo Juez y Fernando Vidal Ram\u00edrez Juez", - "values": [ - "Corte Interamericana de Derechos Humanos" - ] - }, - { - "text": "RESOLUCI\u00d3N DEL PRESIDENTE DE LA CORTE INTERAMERICANA DE DERECHOS HUMANOS DE DE MARZO DE CASO ESPINOZA GONZ\u00c1LES VS. PER\u00da VISTO El escrito de sometimiento del caso presentado por la Comisi\u00f3n Interamericana de Derechos Humanos en adelante la Comisi\u00f3n Interamericana o la Comisi\u00f3n ante la Corte Interamericana de Derechos Humanos en adelante la Corte Interamericana la Corte o el Tribunal el de diciembre de mediante el cual ofreci\u00f3 un dictamen pericial y solicit\u00f3 el traslado de los peritajes por", - "values": [ - "Corte Interamericana de Derechos Humanos" - ] - }, - { - "text": "CORTE INTERAMERICANA DE DERECHOS HUMANOS CASO GONZ\u00c1LEZ Y OTRAS CAMPO ALGODONERO VS. M\u00c9XICO SENTENCIA DE DE NOVIEMBRE DE EXCEPCI\u00d3N PRELIMINAR FONDO REPARACIONES Y COSTAS En el caso Gonz\u00e1lez y otras Campo Algodonero la Corte Interamericana de Derechos Humanos en adelante la Corte Interamericana la Corte o el Tribunal integrada por los siguientes jueces Cecilia Medina Quiroga Presidenta Diego Garc\u00edaSay\u00e1n Vicepresidente Manuel E. Ventura Robles Juez Margarette May Macaulay Jueza Rhadys Abreu y ", - "values": [ - "Corte Interamericana de Derechos Humanos" - ] - }, - { - "text": "CORTE INTERAMERICANA DE DERECHOS HUMANOS CASO DEL PUEBLO SARAMAKA VS. SURINAM SENTENCIA DE DE AGOSTO DE INTERPRETACI\u00d3N DE LA SENTENCIA DE EXCEPCIONES PRELIMINARES FONDO REPARACIONES Y COSTAS En el Caso del Pueblo Saramaka la Corte Interamericana de Derechos Humanos en adelante la Corte Interamericana la Corte o el Tribunal integrada por los siguientes jueces Sergio Garc\u00eda Ram\u00edrez Presidente Diego Garc\u00eda Say\u00e1n Juez Leonardo Franco Juez Margarette May Macaulay Jueza y Rhadys Abreu Blondet Jueza", - "values": [ - "Corte Interamericana de Derechos Humanos" - ] - }, - { - "text": "VOTO CONCURRENTE DEL JUEZ ALBERTO P\u00c9REZ P\u00c9REZ CASO GONZALES LLUY Y OTROS VS. ECUADOR SENTENCIA DE DE SEPTIEMBRE DE Excepciones Preliminares Fondo Reparaciones y Costas Comparto plenamente el contenido de la Sentencia dictada en el presente caso y el profundo sentimiento de solidaridad con la v\u00edctima y de comprensi\u00f3n de sus sufrimientos. No obstante he sentido la necesidad de emitir un voto concurrente habida cuenta de las constantes propuestas hechas durante la deliberaci\u00f3n del caso para que", - "values": [ - "Corte Interamericana de Derechos Humanos" - ] - }, - { - "text": "VOTO DISIDENTE DE LA JUEZA MARGARETTE MAY MACAULAY EN RELACI\u00d3N AL PUNTO RESOLUTIVO DE LA SENTENCIA Encuentro necesario formular mi voto disidente en relaci\u00f3n punto resolutivo de la Sentencia y en consecuencia a lo ordenado en los p\u00e1rrafos y de la Sentencia. En mi opini\u00f3n tal como aparecen estos p\u00e1rrafos se encuentran en un gran conflicto con o como m\u00ednimo no cumplen con los criterios y los principios de los est\u00e1ndares propuestos en los p\u00e1rrafos y de esta Sentencia. En estos p\u00e1rrafos la ", - "values": [ - "Corte Interamericana de Derechos Humanos" - ] - }, - { - "text": "INFORME No. PETICI\u00d3N ADMISIBILIDAD FLORENT\u00cdN GUDIEL RAMOS MAKRINA GUDIEL \u00c1LVAREZ Y OTROS GUATEMALA de septiembre de I. RESUMEN La Comisi\u00f3n Interamericana de Derechos Humanos en adelante Comisi\u00f3n Comisi\u00f3n Interamericana o CIDH recibi\u00f3 el de diciembre de una petici\u00f3n presentada por Claudia Samayoa y Makrina Gudiel \u00c1lvarez en adelante las peticionarias en representaci\u00f3n de Florent\u00edn Gudiel Ramos y Makrina Gudiel \u00c1lvarez en adelante presuntas v\u00edctimas. La petici\u00f3n se present\u00f3 en contra del ", - "values": [ - "Comisi\u00f3n Interamericana de Derechos Humanos" - ] - }, - { - "text": "RESOLUCI\u00d3N DE LA PRESIDENTA DE LA CORTE INTERAMERICANA DE DERECHOS HUMANOS DE DE DICIEMBRE DE CASO CESTI HURTADO VS. PER\u00da SUPERVISI\u00d3N DE CUMPLIMIENTO DE SENTENCIA VISTOS La Sentencia de fondo emitida por la Corte Interamericana de Derechos Humanos en adelante la Corte la Corte Interamericana o el Tribunal el de septiembre de La Sentencia de Interpretaci\u00f3n de la Sentencia de fondo dictada por la Corte el de enero de La Sentencia de reparaciones emitida por el Tribunal el de mayo de ", - "values": [ - "Corte Interamericana de Derechos Humanos" - ] - }, - { - "text": "VOTO RAZONADO CONJUNTO DE LOS JUECES SERGIO GARC\u00cdA RAM\u00cdREZ HERN\u00c1N SALGADO PESANTES Y ALIRIO ABREU BURELLI El Estado viol\u00f3 el derecho a la vida reconocido por el art\u00edculo de la Convenci\u00f3n Americana sobre Derechos Humanos en agravio de Julio Milciades Cer\u00f3n G\u00f3mez William Hamilton Cer\u00f3n Rojas Edebraes Norberto Cer\u00f3n Rojas Artemio Pantoja Ord\u00f3\u00f1ez y Hern\u00e1n Javier Cuar\u00e1n Muchavisoy. La violaci\u00f3n provino de la conducta de agentes del Estado debidamente probada. Es pertinente emitir sentencia en ", - "values": [ - "Corte Interamericana de Derechos Humanos" - ] - }, - { - "text": "RESOLUCI\u00d3N DE LA CORTE INTERAMERICANA DE DERECHOS HUMANOS DE DE FEBRERO DE AMPLIACI\u00d3N DE MEDIDAS PROVISIONALES HELEN MACK CHANG Y OTROS RESPECTO DE LA REP\u00daBLICA DE GUATEMALA VISTOS La Resoluci\u00f3n del Presidente de la Corte Interamericana de Derechos Humanos en adelante el Presidente de de agosto de mediante la cual resolvi\u00f3 Requerir al Estado que adopte sin dilaci\u00f3n cuantas medidas sean necesarias para proteger la vida e integridad personal de la se\u00f1ora Helen Mack Chang y de los de la ", - "values": [ - "Corte Interamericana de Derechos Humanos" - ] - }, - { - "text": "RESOLUCI\u00d3N DE LA CORTE INTERAMERICANA DE DERECHOS HUMANOS DE JULIO DE CASO B\u00c1MACA VEL\u00c1SQUEZ VS. GUATEMALA SUPERVISI\u00d3N DE CUMPLIMIENTO DE SENTENCIAS VISTOS La Sentencia de fondo emitida en el presente caso por la Corte Interamericana de Derechos Humanos en adelante la Corte la Corte Interamericana o el Tribunal el de noviembre de La Sentencia de reparaciones dictada en el presente caso por la Corte Interamericana el de febrero de La Resoluci\u00f3n de cumplimiento de Sentencia emitida por la", - "values": [ - "Corte Interamericana de Derechos Humanos" - ] - }, - { - "text": "CORTE INTERAMERICANA DE DERECHOS HUMANOS CASO FAMILIA PACHECO TINEO VS. ESTADO PLURINACIONAL DE BOLIVIA SENTENCIA DE DE NOVIEMBRE DE Excepciones Preliminares Fondo Reparaciones y Costas En el caso Familia Pacheco Tineo la Corte Interamericana de Derechos Humanos en adelante la Corte Interamericana la Corte o el Tribunal integrada por los siguientes Jueces Diego Garc\u00edaSay\u00e1n Presidente Manuel E. Ventura Robles Vicepresidente Alberto P\u00e9rez P\u00e9rez Juez Eduardo Vio Grossi Juez Roberto F. Caldas ", - "values": [ - "Corte Interamericana de Derechos Humanos" - ] - }, - { - "text": "RESOLUCI\u00d3N DE LA CORTE INTERAMERICANA DE DERECHOS HUMANOS DE DE JUNIO DE MEDIDAS PROVISIONALES RESPECTO DE HONDURAS ASUNTO GLADYS LANZA OCHOA VISTO La Resoluci\u00f3n dictada por la Corte Interamericana de Derechos Humanos en adelante la Corte Interamericana la Corte o el Tribunal el de septiembre de mediante la cual entre otros Requiri\u00f3 al Estado de Honduras que adopte de forma inmediata las medidas que sean necesarias para proteger la vida e integridad personal de la se\u00f1ora Gladys Lanza ", - "values": [ - "Corte Interamericana de Derechos Humanos" - ] - }, - { - "text": "RESOLUCI\u00d3N DE LA CORTE INTERAMERICANA DE DERECHOS HUMANOS DE DE JUNIO DE MEDIDAS PROVISIONALES RESPECTO DE EL SALVADOR ASUNTO MEL\u00c9NDEZ QUIJANO Y OTROS VISTO Las Resoluciones de la Corte Interamericana de Derechos Humanos en adelante tambi\u00e9n la Corte o el Tribunal emitidas los d\u00edas de mayo de de noviembre de de febrero de de agosto de de octubre de y de abril de En esta \u00faltima la Corte resolvi\u00f3 inter alia Levantar las medidas provisionales ordenadas por la Corte Interamericana ", - "values": [ - "Corte Interamericana de Derechos Humanos" - ] - }, - { - "text": "Corte Interamericana de Derechos Humanos Caso Salvador Chiriboga vs. Ecuador Sentencia de de mayo de Excepci\u00f3n Preliminar y Fondo En el caso Salvador Chiriboga la Corte Interamericana de Derechos Humanos en adelante la Corte Interamericana la Corte o el Tribunal integrada por los siguientes jueces Cecilia Medina Quiroga Presidenta Diego Garc\u00edaSay\u00e1n Vicepresidente Sergio Garc\u00eda Ram\u00edrez Juez Manuel E. Ventura Robles Juez Leonardo A. Franco Juez Margarette May Macaulay Jueza Rhadys Abreu Blondet", - "values": [ - "Corte Interamericana de Derechos Humanos" - ] - }, - { - "text": "CORTE INTERAMERICANA DE DERECHOS HUMANOS CASO ROSENDO CANT\u00da Y OTRA VS. M\u00c9XICO SENTENCIA DE DE AGOSTO DE Excepci\u00f3n Preliminar Fondo Reparaciones y Costas En el caso Rosendo Cant\u00fa y otra la Corte Interamericana de Derechos Humanos en adelante tambi\u00e9n la Interamericana la Corte o el Tribunal integrada por los siguientes jueces Corte Diego Garc\u00edaSay\u00e1n Presidente Leonardo A. Franco Vicepresidente Manuel E. Ventura Robles Juez Margarette May Macaulay Jueza Rhadys Abreu Blondet Jueza Alberto P\u00e9rez ", - "values": [ - "Corte Interamericana de Derechos Humanos" - ] - }, - { - "text": "RESOLUCI\u00d3N DE LA CORTE INTERAMERICANA DE DERECHOS HUMANOS DE DE MAYO DE CASO YATAMA Vs. NICARAGUA SUPERVISI\u00d3N DE CUMPLIMIENTO DE SENTENCIA VISTO La Sentencia de excepciones preliminares fondo reparaciones y costas en adelante la Sentencia dictada por la Corte Interamericana de Derechos Humanos en adelante la Corte la Corte Interamericana o el Tribunal el de junio de La Resoluci\u00f3n de la Corte de de noviembre de La Resoluci\u00f3n del Tribunal de de agosto de en la cual inter alia declar\u00f3 ", - "values": [ - "Corte Interamericana de Derechos Humanos" - ] - }, - { - "text": "VOTO RAZONADO DEL JUEZ EDUARDO FERRER MACGREGOR POISOT CASO VEL\u00c1SQUEZ PAIZ Y OTROS VS. GUATEMALA SENTENCIA DE DE NOVIEMBRE DE Excepciones Preliminares Fondo Reparaciones y Costas INTRODUCCI\u00d3N SOBRE EL DEBER DE PREVENCI\u00d3N EN LA VIOLENCIA DE G\u00c9NERO La Convenci\u00f3n Interamericana para Prevenir Sancionar y Erradicar la Violencia contra la Mujer Convenci\u00f3n de Bel\u00e9m do Par\u00e1 constituye el instrumento regional que mayor consenso ha suscitado entre los pa\u00edses de las Am\u00e9ricas al haberse suscrito y o ", - "values": [ - "Corte Interamericana de Derechos Humanos" - ] - }, - { - "text": "CORTE INTERAMERICANA DE DIREITOS HUMANOS CASO GELMAN VS. URUGUAI SENTEN\u00c7A DE DE FEVEREIRO DE M\u00e9rito e Repara\u00e7\u00f5es A Corte Interamericana de Direitos Humanos doravante denominada Interamericana a Corte ou o Tribunal integrada pelos seguintes Ju\u00edzes a Corte Diego Garc\u00edaSay\u00e1n Presidente Leonardo A. Franco VicePresidente Manuel E. Ventura Robles Juiz Margarette May Macaulay Ju\u00edza Rhadys Abreu Blondet Ju\u00edza e Eduardo Vio Grossi Juiz presentes ademais Pablo Saavedra Alessandri Secret\u00e1rio e Emilia ", - "values": [ - "Corte Interamericana de Derechos Humanos" - ] - }, - { - "text": "RESOLUCI\u00d3N DEL PRESIDENTE DE LA CORTE INTERAMERICANA DE DERECHOS HUMANOS DE DE FEBRERO DE CASO GONZ\u00c1LES LLUY TGGL Y FAMILIA VS. ECUADOR VISTO La Resoluci\u00f3n del Presidente en adelante el Presidente de la Corte Interamericana de Derechos Humanos en adelante la Corte Interamericana la Corte o este Tribunal de de enero de en adelante la Resoluci\u00f3n en la cual entre otros resolvi\u00f3 Requerir por las razones expuestas en dicha Resoluci\u00f3n de conformidad con el principio de econom\u00eda procesal y de ", - "values": [ - "Corte Interamericana de Derechos Humanos" - ] - }, - { - "text": "CORTE INTERAMERICANA DE DERECHOS HUMANOS CASO DACOSTA CADOGAN VS. BARBADOS SENTENCIA DE DE SEPTIEMBRE DE Excepciones Preliminares Fondo Reparaciones y Costas En el caso DaCosta Cadogan la Corte Interamericana de Derechos Humanos en adelante la Corte Interamericana la Corte o el Tribunal integrada por lo siguientes jueces Cecilia Medina Quiroga Presidenta Diego Garc\u00eda Say\u00e1n Vicepresidente Sergio Garc\u00eda Ram\u00edrez Juez Manuel E. Ventura Robles Juez Leonardo A. Franco Juez Margarette May Macaulay ", - "values": [ - "Corte Interamericana de Derechos Humanos" - ] - }, - { - "text": "RESOLUCI\u00d3N DE LA CORTE INTERAMERICANA DE DERECHOS HUMANOS DE AGOSTO DE CASO MASACRE PLAN DE S\u00c1NCHEZ VS. GUATEMALA SUPERVISI\u00d3N DE CUMPLIMIENTO DE SENTENCIA VISTOS La Sentencia de Reparaciones y Costas en adelante la Sentencia de Reparaciones o la Sentencia dictada por la Corte Interamericana de Derechos Humanos en adelante la Corte o el Tribunal el de noviembre de La Resoluci\u00f3n de Supervisi\u00f3n de Cumplimiento de Sentencia de la Corte de de noviembre de mediante la cual inter alia declar\u00f3 ", - "values": [ - "Corte Interamericana de Derechos Humanos" - ] - }, - { - "text": "Resoluci\u00f3n de la Corte Interamericana de Derechos Humanos de de enero de Medidas Provisionales Respecto del Per\u00fa Caso de los Hermanos G\u00f3mez Paquiyauri Vistos La Resoluci\u00f3n de la Corte Interamericana de Derechos Humanos en adelante la Corte la Corte Interamericana o el Tribunal de de mayo de mediante la cual resolvi\u00f3 inter alia requerir al Estado que adopte sin dilaci\u00f3n las medidas necesarias para proteger la vida e integridad personal de los miembros de la familia G\u00f3mez Paquiyauri que ", - "values": [ - "Corte Interamericana de Derechos Humanos" - ] - }, - { - "text": "RESOLUCI\u00d3N DE LA CORTE INTERAMERICANA DE DERECHOS HUMANOS DE DE NOVIEMBRE DE CASO NEIRA ALEGR\u00cdA Y OTROS CUMPLIMIENTO DE SENTENCIA VISTOS La sentencia de fondo dictada en el Caso Neira Alegr\u00eda y otros vs. El Per\u00fa por la Corte Interamericana de Derechos Humanos en adelante la Corte la Corte Interamericana o el Tribunal el de enero de en la que dispuso en los puntos resolutivos tercero y cuarto que Decide que el Per\u00fa est\u00e1 obligado a pagar a los familiares de las v\u00edctimas con ocasi\u00f3n de este", - "values": [ - "Corte Interamericana de Derechos Humanos" - ] - }, - { - "text": " OL O CORTE INTERAMERICANA DE DERECHOS HUMANOS COUR INTERAMERICAINE DES DROITS DE LHOMME A CORTE INTERAMERICANA DE DIREITOS HUMANOS INTERAMERICAN COURT OF HUMAN RIGHTS RESOLUCION DE LA CORTE INfERAiIERICAIlA DE DERECHOS HUNlAlOS DE DE NOVIEmREDE ACUNIULACION DE CASOS Y DE AUTOS ORDENADA POR LA CORTE INfERAIERICANA DE DERECHOS OS RESPECTO DE LA REP\u00daBUCA DE TRINIDAD Y TOBAGO CASOS HlLAIRE CONSTANTINE y OTROS Y BENJAMIN Y OTROS VISTOS La demanda en el caso Hilaire us. Trinidad y Tobago ", - "values": [ - "Corte Interamericana de Derechos Humanos" - ] - }, - { - "text": "Order of the InterAmerican Court of Human Rights of January Provisional Measures regarding Honduras Case of L\u00f3pez\u00c1lvarez et al. HAVING SEEN The Order of the InterAmerican Court of Human Rights hereinafter the Court or the InterAmerican Court of June wherein it decided To request the State to adopt forthwith such measures as may be necessary to protect the life and physical integrity of Alfredo L\u00f3pez\u00c1lvarez Teresa ReyesReyes and Gregoria FloresMart\u00ednez who will appear as witnesses before ", - "values": [ - "Corte Interamericana de Derechos Humanos" - ] - }, - { - "text": "CORTE INTERAMERICANA DE DERECHOS HUMANOS CASO WONG HO WING VS. PER\u00da SENTENCIA DE DE JUNIO DE Interpretaci\u00f3n de la Sentencia de Excepci\u00f3n Preliminar Fondo Reparaciones y Costas En el caso Wong Ho Wing la Corte Interamericana de Derechos Humanos en adelante la Corte Interamericana la Corte o este Tribunal integrada por los siguientes jueces Roberto F. Caldas Presidente Eduardo Ferrer MacGregor Poisot Vicepresidente Manuel E. Ventura Robles Juez Eduardo Vio Grossi Juez y Humberto Antonio Sierra ", - "values": [ - "Corte Interamericana de Derechos Humanos" - ] - }, - { - "text": "RESOLUCI\u00d3N DE LA CORTE INTERAMERICANA DE DERECHOS HUMANOS DE DE AGOSTO DE MEDIDAS PROVISIONALES RESPECTO DE LA REP\u00daBLICA DEL PER\u00da ASUNTO WONG HO WING VISTO La Resoluci\u00f3n del Presidente en ejercicio para el presente asunto en adelante el Presidente en ejercicio de la Corte Interamericana de Derechos Humanos en adelante la Corte Interamericana la Corte o este Tribunal de de marzo de as\u00ed como las Resoluciones de este Tribunal de de mayo y de noviembre de de de marzo y de julio de las ", - "values": [ - "Corte Interamericana de Derechos Humanos" - ] - }, - { - "text": "INFORME N\u00ba PETICI\u00d3N ADMISIBILIDAD GABRIELA PEROZO ALOYS MAR\u00cdN OSCAR D\u00c1VILA P\u00c9REZ Y OTROS VENEZUELA de febrero de I. RESUMEN El de junio de Gabriela Perozo Aloys Mar\u00edn Efra\u00edn Henr\u00edquez Oscar D\u00e1vila P\u00e9rez Yesenia Thais Balza Bol\u00edvar Carlos Quintero Felipe Antonio Lugo Dur\u00e1n Alfredo Jos\u00e9 Pe\u00f1a Isaya Beatriz Adri\u00e1n Jorge Manuel Paz Paz Mayela Le\u00f3n Rodr\u00edguez Richard Alexis L\u00f3pez Valle F\u00e9lix Jos\u00e9 Padilla Geromes John Power Miguel \u00c1ngel Calzadilla Jos\u00e9 Domingo Blanco Jhonny Donato Ficarella ", - "values": [ - "Comisi\u00f3n Interamericana de Derechos Humanos" - ] - }, - { - "text": "RESOLUCI\u00d3N DE LA CORTE INTERAMERICANA DE DERECHOS HUMANOS DE DE JULIO DE CASO EL AMPARO CUMPLIMIENTO DE SENTENCIA VISTOS La sentencia de fondo dictada en el Caso El Amparo vs. Venezuela por la Corte Interamericana de Derechos Humanos en adelante la Corte la Corte Interamericana o el Tribunal el de enero de La sentencia sobre reparaciones dictada en el presente caso por la Corte el de septiembre de La Resoluci\u00f3n del Tribunal de de noviembre de sobre el cumplimiento de sentencia en el", - "values": [ - "Corte Interamericana de Derechos Humanos" - ] - }, - { - "text": "VOTO PARCIALMENTE DISIDENTE DEL JUEZ CARLOS VICENTE DE ROUX RENGIFO Me aparto de la decisi\u00f3n a la cual ha llegado la Corte en relaci\u00f3n con el monto de la indemnizaci\u00f3n compensatoria que debe pagarse a Mar\u00eda Elena Loayza Tamayo. A mi modo de ver ese monto ha debido ser mayor porque ha debido comprender tambi\u00e9n una cantidad de dinero espec\u00edficamente destinada a reparar los da\u00f1os en el proyecto de vida de la se\u00f1ora Loayza Tamayo que podr\u00eda haberse fijado en t\u00e9rminos de equidad en d\u00f3lares de los ", - "values": [ - "Corte Interamericana de Derechos Humanos" - ] - }, - { - "text": "CORTE INTERAMERICANA DE DERECHOS HUMANOS CASO LIAKAT ALI ALIBUX VS. SURINAME SENTENCIA DE DE ENERO DE Excepciones Preliminares Fondo Reparaciones y Costas En el caso Liakat Ali Alibux la Corte Interamericana de Derechos Humanos en adelante la Corte Interamericana la Corte o el Tribunal integrada por los siguientes jueces Humberto Antonio Sierra Porto Presidente Roberto F. Caldas Vicepresidente Manuel E. Ventura Robles Juez Diego Garc\u00edaSay\u00e1n Juez Alberto P\u00e9rez P\u00e9rez Juez Eduardo Vio Grossi y ", - "values": [ - "Corte Interamericana de Derechos Humanos" - ] - }, - { - "text": "VOTO CONCURRENTE DEL JUEZ EDUARDO FERRER MACGREGOR POISOT A LA SENTENCIA DE LA CORTE INTERAMERICANA DE DERECHOS HUMANOS EN EL CASO CORTE SUPREMA DE JUSTICIA QUINTANA COELLO Y OTROS VS. ECUADOR DE DE AGOSTO DE I. INTRODUCCI\u00d3N LA FUNCI\u00d3N DE LA INDEPENDENCIA JUDICIAL EN EL ESTADO CONSTITUCIONAL Y DEMOCR\u00c1TICO DE DERECHO El presente caso pone de relieve la importancia de uno de los principios definitorios del Estado constitucional y democr\u00e1tico de derecho como es el de la independencia de los En", - "values": [ - "Corte Interamericana de Derechos Humanos" - ] - }, - { - "text": "RESOLUCI\u00d3N DEL PRESIDENTE DE LA CORTE INTERAMERICANA DE DERECHOS HUMANOS DE DE MAYO DE CASO MASACRES DE R\u00cdO NEGRO VS. GUATEMALA VISTO El escrito de sometimiento del caso presentado por la Comisi\u00f3n Interamericana de Derechos Humanos en adelante la Comisi\u00f3n Interamericana o la Comisi\u00f3n ante la Corte Interamericana de Derechos Humanos en adelante la Corte Interamericana la Corte o el Tribunal el de noviembre de mediante el cual ofreci\u00f3 tres dict\u00e1menes periciales. La Comisi\u00f3n indic\u00f3 el objeto ", - "values": [ - "Corte Interamericana de Derechos Humanos" - ] - }, - { - "text": "RESOLUCI\u00d3N DE LA CORTE INTERAMERICANA DE DERECHOS HUMANOS DE DE MAYO DE CASO ROSENDO CANT\u00da Y OTRA VS. ESTADOS UNIDOS MEXICANOS VISTO La Resoluci\u00f3n dictada por el Presidente en adelante la Resoluci\u00f3n de convocatoria o la Resoluci\u00f3n del Presidente de la Corte Interamericana de Derechos Humanos en adelante la Corte Interamericana la Corte o el Tribunal el de abril de mediante la cual convoc\u00f3 a la Comisi\u00f3n Interamericana de Derechos Humanos en adelante la Comisi\u00f3n Interamericana o la Comisi\u00f3n ", - "values": [ - "Corte Interamericana de Derechos Humanos" - ] - }, - { - "text": "VOTO CONCURRENTE DEL JUEZ MONTIEL ARG\u00dcELLO La jurisprudencia de la Corte ha dejado establecido que la excepci\u00f3n preliminar del no agotamiento de los recursos internos puede ser renunciada Caso Viviana Gallardo y otros. Decisi\u00f3n del de noviembre de p\u00e1rr. y abundante jurisprudencia posterior y que la renuncia se presume cuando no se invoca la excepci\u00f3n en las primeras fases del procedimiento ante la Comisi\u00f3n Caso Vel\u00e1squez Rodr\u00edguez. Sentencia del de junio de p\u00e1rr. y abundante posterior. ", - "values": [ - "Corte Interamericana de Derechos Humanos" - ] - }, - { - "text": "VOTO FUNDAMENTADO DO JUIZ AD HOC ROBERTO DE FIGUEIREDO CALDAS COM RELA\u00c7\u00c3O \u00c0 SENTEN\u00c7A DA CORTE INTERAMERICANA DE DIREITOS HUMANOS NO CASO ESCHER E OUTROS VS. BRASIL PROFERIDA EM DE JULHO DE Apresento este voto fundamentado concordante de modo geral quanto \u00e0s conclus\u00f5es da Corte com dois objetivos prec\u00edpuos. O primeiro \u00e9 deixar registrado meu entendimento pessoal relativamente a alguns temas pontuais examinados pela senten\u00e7a com os quais concordo. O segundo \u00e9 externar fundamenta\u00e7\u00e3o divergente ", - "values": [ - "Corte Interamericana de Derechos Humanos" - ] - }, - { - "text": "RESOLUCI\u00d3N DE LA CORTE INTERAMERICANA DE DERECHOS HUMANOS DE DE FEBRERO DE MEDIDAS PROVISIONALES RESPECTO DE VENEZUELA ASUNTOS DE DETERMINADOS CENTROS PENITENCIARIOS DE VENEZUELA CENTRO PENITENCIARIO DE LA REGI\u00d3N CENTRO OCCIDENTAL C\u00c1RCEL DE URIBANA VISTO La Resoluci\u00f3n de la Corte Interamericana de Derechos Humanos en adelante la Corte Interamericana la Corte o el Tribunal de de febrero de en el asunto del Centro Penitenciario de la Regi\u00f3n Centro Occidental C\u00e1rcel de Uribana mediante la ", - "values": [ - "Corte Interamericana de Derechos Humanos" - ] - }, - { - "text": "RESOLUCI\u00d3N DE LA CORTE INTERAMERICANA DE DERECHOS HUMANOS DEL DE MAYO DE MEDIDAS PROVISIONALES SOLICITADAS POR LA COMISI\u00d3N INTERAMERICANA DE DERECHOS HUMANOS CASO COLOTENANGO VISTO La resoluci\u00f3n de la Corte Interamericana de Derechos Humanos del de diciembre de en cuya parte dispositiva establece Prorrogar las medidas provisionales adoptadas mediante resoluci\u00f3n del de junio de sobre el caso Colotenango por un plazo de seis meses contados a partir de la fecha y ampliarlas en favor de la ", - "values": [ - "Corte Interamericana de Derechos Humanos" - ] - }, - { - "text": "RESOLUCI\u00d3N DE LA CORTE INTERAMERICANA DE DERECHOS HUMANOS DE DE ENERO DE CASO MARITZA URRUTIA VS. GUATEMALA SUPERVISI\u00d3N DE CUMPLIMIENTO DE SENTENCIA VISTOS La Sentencia de fondo reparaciones y costas dictada en el presente caso por la Corte Interamericana de Derechos Humanos en adelante la Corte la Corte Interamericana o el Tribunal el de noviembre de mediante la cual orden\u00f3 a la Rep\u00fablica de Guatemala en adelante el Estado investigar efectivamente los hechos en el presente caso que las", - "values": [ - "Corte Interamericana de Derechos Humanos" - ] - }, - { - "text": "RESOLUCI\u00d3N DE LA CORTE INTERAMERICANA DE DERECHOS HUMANOS DE DE SEPTIEMBRE DE CASO FONTEVECCHIA y DAMICO VS. ARGENTINA SUPERVISI\u00d3N DE CUMPLIMIENTO DE SENTENCIA VISTO La Sentencia de fondo reparaciones y costas en adelante la Sentencia o el Fallo dictada por la Corte Interamericana de Derechos Humanos en adelante la Corte la Corte Interamericana o el Tribunal el de noviembre de En ella la Corte declar\u00f3 responsable internacionalmente a la Rep\u00fablica de Argentina en adelante el Estado o por ", - "values": [ - "Corte Interamericana de Derechos Humanos" - ] - }, - { - "text": "Resoluci\u00f3n de la Presidenta de la Corte Interamericana de Derechos Humanos de de agosto de Convocatoria a Audiencia P\u00fablica Medidas Provisionales Respecto de la Rep\u00fablica Bolivariana de Venezuela Asuntos Internado Judicial de Monagas La Pica Centro Penitenciario Regi\u00f3n Capital Yare I y Yare II C\u00e1rcel de Yare Centro Penitenciario de la Regi\u00f3n Centro Occidental C\u00e1rcel de Uribana e Internado Judicial Capital El Rodeo I y el Rodeo II Visto Las Resoluciones de la Corte Interamericana de Derechos ", - "values": [ - "Corte Interamericana de Derechos Humanos" - ] - }, - { - "text": "RESOLUCI\u00d3N DE LA CORTE INTERAMERICANA DE DERECHOS HUMANOS DE DE FEBRERO DE FONDO DE ASISTENCIA LEGAL DE V\u00cdCTIMAS CASO TORRES MILLACURA Y OTROS VS. ARGENTINA VISTO La Sentencia de fondo reparaciones y costas en adelante la Sentencia dictada por la Corte Interamericana de Derechos Humanos en adelante la Corte la Corte Interamericana o el Tribunal el de agosto de mediante la cual dispuso inter alia que El Estado deber\u00e1 reintegrar al Fondo de Asistencia Legal de V\u00edctimas de la Corte de la", - "values": [ - "Corte Interamericana de Derechos Humanos" - ] - }, - { - "text": "VOTO RAZONADO CONCURRENTE DEL JUEZ HERN\u00c1N SALGADO PESANTES A LAS SENTENCIAS SOBRE EXCEPCIONES PRELIMINARES EN LOS CASOS HILAIRE CONSTANTINE Y OTROS Y BENJAM\u00cdN Y OTROS Estando de acuerdo en lo fundamental con la sentencia en el Caso Benjam\u00edn y otros vs. Trinidad y Tobago quiero agregar las siguientes consideraciones En materia de reservas a los tratados al igual que en otras cuestiones del Derecho Internacional ha habido una importante evoluci\u00f3n marcada por un progreso constante. Bien podr\u00eda ", - "values": [ - "Corte Interamericana de Derechos Humanos" - ] - }, - { - "text": "RESOLUCI\u00d3N DE LA CORTE INTERAMERICANA DE DERECHOS HUMANOS DE DE JULIO DE MEDIDAS PROVISIONALES RESPECTO DE LA REP\u00daBLICA BOLIVARIANA DE VENEZUELA ASUNTO DEL INTERNADO JUDICIAL DE MONAGAS LA PICA VISTOS La Resoluci\u00f3n del Presidente de la Corte Interamericana de Derechos Humanos en adelante la Corte Interamericana la Corte o el Tribunal de de enero de mediante la cual resolvi\u00f3 inter alia requerir al Estado que mantenga y profundice las medidas que ya est\u00e1 adoptando as\u00ed como adopte de forma ", - "values": [ - "Corte Interamericana de Derechos Humanos" - ] - }, - { - "text": "Resoluci\u00f3n de la Presidenta de la Corte Interamericana de Derechos Humanos de de agosto de Caso Salvador Chiriboga Vs. Ecuador Reparaciones y Costas Visto La Sentencia de excepci\u00f3n preliminar y fondo en adelante la Sentencia de mayo de mediante la cual la Corte Interamericana de Derechos Humanos en adelante la Corte o el Tribunal orden\u00f3 que La determinaci\u00f3n del monto y el pago de la indemnizaci\u00f3n justa por la expropiaci\u00f3n de los bienes as\u00ed como cualquier otra medida tendiente a reparar", - "values": [ - "Corte Interamericana de Derechos Humanos" - ] - }, - { - "text": "CORTE INTERAMERICANA DE DERECHOS HUMANOS CASO GRANDE VS. ARGENTINA SENTENCIA DE DE AGOSTO DE EXCEPCIONES PRELIMINARES Y FONDO En el caso Grande la Corte Interamericana de Derechos Humanos en adelante la Corte Interamericana la Corte o el Tribunal integrada por los siguientes jueces Diego Garc\u00edaSay\u00e1n Presidente Manuel E. Ventura Robles Juez Margarette May Macaulay Jueza Rhadys Abreu Blondet Jueza Alberto P\u00e9rez P\u00e9rez Juez y Eduardo Vio Grossi Juez presente adem\u00e1s Pablo Saavedra Alessandri de ", - "values": [ - "Corte Interamericana de Derechos Humanos" - ] - }, - { - "text": "CORTE INTERAMERICANA DE DERECHOS HUMANOS CASO SERVELL\u00d3N GARC\u00cdA Y OTROS VS. HONDURAS SENTENCIA DE DE SEPTIEMBRE DE En el caso Servell\u00f3n Garc\u00eda y otros la Corte Interamericana de Derechos Humanos en adelante la Corte Interamericana la Corte o el Tribunal integrada por los siguientes jueces Sergio Garc\u00eda Ram\u00edrez Presidente Alirio Abreu Burelli Vicepresidente Ant\u00f4nio A. Can\u00e7ado Trindade Juez Cecilia Medina Quiroga Jueza Manuel E. Ventura Robles Juez y Diego Garc\u00edaSay\u00e1n Juez presentes adem\u00e1s Pablo", - "values": [ - "Corte Interamericana de Derechos Humanos" - ] - }, - { - "text": "RESOLUCI\u00d3N DE LA CORTE INTERAMERICANA DE DERECHOS HUMANOS DE DE MAYO DE MEDIDAS PROVISIONALES RESPECTO DE COLOMBIA CASO DE LA MASACRE DE MAPIRIP\u00c1N VISTOS La Resoluci\u00f3n de medidas urgentes dictada por el Presidente de la Corte Interamericana de Derechos Humanos el de febrero de mediante la cual resolvi\u00f3 Requerir al Estado que adoptara sin dilaci\u00f3n las medidas necesarias para proteger la vida e integridad personal de las siguientes personas y sus familiares Carmen Johana Jaramillo Giraldo ", - "values": [ - "Corte Interamericana de Derechos Humanos" - ] - }, - { - "text": "RESOLUCI\u00d3N DE LA CORTE INTERAMERICANA DE DERECHOS HUMANOS DE DE NOVIEMBRE DE CASOS HILAIRE CONSTANTINE Y BENJAMIN Y OTROS Y CAESAR VS. TRINIDAD Y TOBAGO SUPERVISI\u00d3N DE CUMPLIMIENTO DE SENTENCIA VISTO Las Sentencias de fondo reparaciones y costas emitidas por la Corte Interamericana de Derechos Humanos en adelante la Corte la Corte Interamericana o el Tribunal el de junio de y el de marzo de en los casos Hilaire Constantine y Benjamin y otros y Caesar respectivamente ambos contra la de", - "values": [ - "Corte Interamericana de Derechos Humanos" - ] - }, - { - "text": "Resoluci\u00f3n de la Presidenta de laCorte Interamericana de Derechos Humanos de de junio de Caso Trabajadores Cesados del Congreso Aguado Alfaro y otros vs. Per\u00fa Supervisi\u00f3n de Cumplimiento de Sentencia Visto La Sentencia de excepciones preliminares fondo reparaciones y costas en adelante la Sentencia dictada por la Corte Interamericana de Derechos Humanos en adelante la Corte la Corte Interamericana o el Tribunal el de noviembre de en el caso Trabajadores Cesados del Congreso vs. Per\u00fa la ", - "values": [ - "Corte Interamericana de Derechos Humanos" - ] - }, - { - "text": "Corte Interamericana de Derechos Humanos Caso Loayza Tamayo Vs. Per\u00fa Sentencia de de noviembre de Reparaciones y Costas En el caso Loayza Tamayo la Corte Interamericana de Derechos Humanos integrada por los siguientes jueces Hern\u00e1n Salgado Pesantes Presidente Ant\u00f4nio A. Can\u00e7ado Trindade Vicepresidente M\u00e1ximo Pacheco G\u00f3mez Juez Oliver Jackman Juez Alirio Abreu Burelli Juez Sergio Garc\u00eda Ram\u00edrez Juez Carlos Vicente de Roux Rengifo Juez presentes adem\u00e1s Manuel E. Ventura Robles Secretario y M. ", - "values": [ - "Corte Interamericana de Derechos Humanos" - ] - }, - { - "text": "Resoluci\u00f3n de la Presidenta de la Corte Interamericana de Derechos Humanos de de noviembre de Caso de la Masacre de Pueblo Bello Vs. Colombia Supervisi\u00f3n de Cumplimiento de Sentencia Vistos La Sentencia de fondo reparaciones y costas dictada el de enero de en adelante la Sentencia por la Corte Interamericana de Derechos Humanos en adelante la Corte la Corte Interamericana o el Tribunal notificada \u00edntegramente a la Rep\u00fablica de Colombia en adelante el Estado o Colombia el de febrero de ", - "values": [ - "Corte Interamericana de Derechos Humanos" - ] - }, - { - "text": "RESOLUCI\u00d3N DE LA CORTE INTERAMERICANA DE DERECHOS HUMANOS DE DE JUNIO DE MEDIDAS PROVISIONALES RESPECTO DE LA REP\u00daBLICA DEL PER\u00da ASUNTO WONG HO WING VISTO La Resoluci\u00f3n del Presidente en ejercicio para el presente asunto en adelante el Presidente en ejercicio de la Corte Interamericana de Derechos Humanos en adelante la Corte Interamericana la Corte o el Tribunal de de marzo de as\u00ed como las Resoluciones del Tribunal de de mayo y de noviembre de de de marzo y de julio de mediante las ", - "values": [ - "Corte Interamericana de Derechos Humanos" - ] - }, - { - "text": "RESOLUCI\u00d3N DE LA CORTE INTERAMERICANA DE DERECHOS HUMANOS DE DE NOVIEMBRE DE MEDIDAS PROVISIONALES RESPECTO DE LA REP\u00daBLICA DE COLOMBIA ASUNTO COMUNIDADES DEL JIGUAMIAND\u00d3 Y DEL CURBARAD\u00d3 VISTOS La Resoluci\u00f3n de la Corte Interamericana de Derechos Humanos en adelante la Corte la Corte Interamericana o el Tribunal de de marzo de mediante la cual resolvi\u00f3 Requerir al Estado de Colombia que adopte sin dilaci\u00f3n las medidas que sean necesarias para proteger la vida e integridad personal de los", - "values": [ - "Corte Interamericana de Derechos Humanos" - ] - }, - { - "text": "RESOLUCI\u00d3N DE LA CORTE INTERAMERICANA DE DERECHOS HUMANOS DE DE NOVIEMBRE DE CASO LA \u00daLTIMA TENTACI\u00d3N DE CRISTO OLMEDO BUSTOS Y OTROS CUMPLIMIENTO DE SENTENCIA VISTOS La sentencia de fondo dictada en el Caso La \u00daltima Tentaci\u00f3n de Cristo vs. Chile por la Corte Interamericana de Derechos Humanos en adelante la Corte la Corte Interamericana o el Tribunal el de febrero de en la que dispuso lo siguiente por unanimidad declara que el Estado viol\u00f3 el derecho a la libertad de pensamiento y de ", - "values": [ - "Corte Interamericana de Derechos Humanos" - ] - }, - { - "text": "CORTE INTERAMERICANA DE DERECHOS HUMANOS CASO PUEBLOS KALI\u00d1A Y LOKONOVSSURINAM SENTENCIA DE DE NOVIEMBRE DE Fondo Reparaciones y Costas En el caso Pueblos Kali\u00f1a y Lokono la Corte Interamericana de Derechos Humanos en adelante la Corte Interamericana la Corte o el Tribunal integrada por los siguientes Jueces Humberto Antonio Sierra Porto Presidente Roberto F. Caldas Vicepresidente Manuel E. Ventura Robles Juez Diego Garc\u00edaSay\u00e1n Juez Alberto P\u00e9rez P\u00e9rez Juez Eduardo Vio Grossi Juez y Eduardo ", - "values": [ - "Corte Interamericana de Derechos Humanos" - ] - }, - { - "text": "RESOLUCI\u00d3N DE LA CORTE INTERAMERICANA DE DERECHOS HUMANOS DE DE ABRIL DE CASO CANTORAL HUAMAN\u00cd Y GARC\u00cdA SANTA CRUZ VS. PER\u00da SUPERVISI\u00d3N DE CUMPLIMIENTO DE SENTENCIA VISTO La Sentencia de excepci\u00f3n preliminar fondo reparaciones y costas en adelante tambi\u00e9n la Sentencia dictada el de julio de mediante la cual por unanimidad la Corte Interamericana de Derechos Humanos en adelante la Corte Interamericana la Corte o el Tribunal dispuso que El Estado debe investigar inmediatamente los hechos ", - "values": [ - "Corte Interamericana de Derechos Humanos" - ] - }, - { - "text": "RESOLUCI\u00d3N DEL PRESIDENTE DE LA CORTE INTERAMERICANA DE DERECHOS HUMANOS DE DE FEBRERO DE FONDO DE ASISTENCIA LEGAL DE V\u00cdCTIMAS CASO V\u00c1SQUEZ DURAND Y OTROS VS. ECUADOR VISTO El escrito de de julio de y sus anexos mediante los cuales la Comisi\u00f3n Interamericana de Derechos Humanos en adelante la Comisi\u00f3n Interamericana o la Comisi\u00f3n someti\u00f3 ante la Corte Interamericana de Derechos Humanos en adelante la Corte Interamericana la Corte o el Tribunal el presente caso. El escrito de de octubre ", - "values": [ - "Corte Interamericana de Derechos Humanos" - ] - }, - { - "text": "RESOLUCI\u00d3N DE LA CORTE INTERAMERICANA DE DERECHOS HUMANOS DE DE JULIO DE CASO GARC\u00cdA ASTO Y RAM\u00cdREZ ROJAS vs. PER\u00da SUPERVISI\u00d3N DE CUMPLIMIENTO DE SENTENCIA VISTOS La Sentencia de fondo reparaciones y costas emitida el de noviembre de en adelante la Sentencia por la Corte Interamericana de Derechos Humanos en adelante la Corte la Corte Interamericana o el Tribunal mediante la cual el Tribunal DECIDI\u00d3 Por unanimidad Admitir el reconocimiento de los hechos anteriores a septiembre de por el", - "values": [ - "Corte Interamericana de Derechos Humanos" - ] - }, - { - "text": "Resoluci\u00f3n de la Corte Interamericana de Derechos Humanos de de noviembre de Caso Cantoral Benavides Vs. Per\u00fa Supervisi\u00f3n de Cumplimiento de Sentencia Visto La Sentencia de fondo dictada el de agosto de en cuyos puntos resolutivos decimosegundo y decimotercero la Corte Interamericana de Derechos Humanos en adelante la Corte la Corte Interamericana o el Tribunal decidi\u00f3 que el Estado debe ordenar una investigaci\u00f3n para determinar las personas responsables de las violaciones de los a que", - "values": [ - "Corte Interamericana de Derechos Humanos" - ] - }, - { - "text": "Resoluci\u00f3n de la Corte Interamericana de Derechos Humanos De de enero de Caso Guti\u00e9rrez Soler Vs. Colombia Supervisi\u00f3n de Cumplimiento de Sentencia VISTOS La Sentencia de fondo reparaciones y costas emitida por la Corte Interamericana de Derechos Humanos en adelante la Corte la Corte Interamericana o el Tribunal el de septiembre de en este caso mediante la cual dispuso que El Estado debe cumplir las medidas dispuestas relativas a su obligaci\u00f3n de investigar los hechos denunciados as\u00ed como", - "values": [ - "Corte Interamericana de Derechos Humanos" - ] - }, - { - "text": "RESOLUCI\u00d3N DE LA CORTE INTERAMERICANA DE DERECHOS HUMANOS DEL DE ENERO DE MEDIDAS PROVISIONALES SOLICITADAS POR LA COMISI\u00d3N INTERAMERICANA DE DERECHOS HUMANOS RESPECTO DEL PER\u00da CASO CHIPOCO La Corte Interamericana de Derechos Humanos integrada de la siguiente manera H\u00e9ctor FixZamudio Presidente Sonia Picado Sotela Vicepresidente Rafael Nieto Navia Juez Alejandro Montiel Arg\u00fcello Juez Hern\u00e1n Salgado Pesantes Juez Asdr\u00fabal AguiarAranguren Juez presentes adem\u00e1s Manuel E. Ventura Robles y Ana ", - "values": [ - "Corte Interamericana de Derechos Humanos" - ] - }, - { - "text": "Resoluci\u00f3n de la Corte Interamericana de Derechos Humanos de julio de Caso Alb\u00e1n Cornejo y otros Vs. Ecuador Supervisi\u00f3n de Cumplimiento de Sentencia Visto La Sentencia de fondo reparaciones y costas dictada por la Corte Interamericana de Derechos Humanos en adelante la Corte la Corte Interamericana o el Tribunal el de noviembre de en la cual inter alia decidi\u00f3 El Estado debe publicar en los t\u00e9rminos del p\u00e1rrafo de la Sentencia en el Diario Oficial y en otro diario de amplia nacional ", - "values": [ - "Corte Interamericana de Derechos Humanos" - ] - }, - { - "text": "CORTE INTERAMERICANA DE DERECHOS HUMANOS CASO L\u00d3PEZ MENDOZA VS. VENEZUELA SENTENCIA DE DE SEPTIEMBRE DE FONDO REPARACIONES Y COSTAS En el caso L\u00f3pez Mendoza la Corte Interamericana de Derechos Humanos en adelante la Corte Interamericana la Corte o el Tribunal integrada por los siguientes jueces Diego Garc\u00edaSay\u00e1n Presidente Manuel E. Ventura Robles Juez Margarette May Macaulay Jueza Rhadys Abreu Blondet Jueza Alberto P\u00e9rez P\u00e9rez Juez y Eduardo Vio Grossi Juez presente adem\u00e1s Pablo Saavedra ", - "values": [ - "Corte Interamericana de Derechos Humanos" - ] - }, - { - "text": "Corte Interamericana de Derechos Humanos Caso Genie Lacayo Vs. Nicaragua Sentencia de de enero de Excepciones Preliminares En el caso Genie Lacayo la Corte Interamericana de Derechos Humanos integrada por los siguientes jueces H\u00e9ctor FixZamudio Presidente Hern\u00e1n Salgado Pesantes Vicepresidente Rafael Nieto Navia Juez Alejandro Montiel Arg\u00fcello Juez M\u00e1ximo Pacheco G\u00f3mez Juez presentes adem\u00e1s Manuel E. Ventura Robles Secretario y Ana Mar\u00eda Reina Secretaria adjunta de acuerdo con el art\u00edculo ", - "values": [ - "Corte Interamericana de Derechos Humanos" - ] - }, - { - "text": "RESOLUCI\u00d3N DE LA CORTE INTERAMERICANA DE DERECHOS HUMANOS DE DE NOVIEMBRE DE CASO DURAND Y UGARTE VS. PER\u00da CUMPLIMIENTO DE SENTENCIA VISTOS La sentencia dictada por la Corte Interamericana de Derechos Humanos en adelante la Corte o la Corte Interamericana el de agosto de en la cual decidi\u00f3 que el Estado del Per\u00fa en adelante el Estado o el Per\u00fa hab\u00eda violado los art\u00edculos y de la Convenci\u00f3n Americana sobre Derechos Humanos en adelante la Convenci\u00f3n o la Convenci\u00f3n Americana en de y", - "values": [ - "Corte Interamericana de Derechos Humanos" - ] - }, - { - "text": "VOTO DISIDENTE DEL JUEZ ALEJANDRO MONTIEL ARG\u00dcELLO He votado en contra del n\u00famero de la parte resolutiva de la sentencia sobre el fondo en el caso Blake porque a mi juicio el Estado de Guatemala no ha violado el art\u00edculo de la Convenci\u00f3n. En efecto esa disposici\u00f3n consagra el derecho de toda persona a ser o\u00edda por un juez o tribunal competente y en el caso que ahora se resuelve no encuentro que ese derecho haya sido negado a persona alguna. Los familiares del se\u00f1or Blake optaron por hacer ", - "values": [ - "Corte Interamericana de Derechos Humanos" - ] - }, - { - "text": "RESOLUCI\u00d3N DE LA CORTE INTERAMERICANA DE DERECHOS HUMANOS DE DE JULIO DE MEDIDAS PROVISIONALES CASO MARTA COLOMINA Y LILIANA VEL\u00c1SQUEZ VISTOS La Resoluci\u00f3n de la Corte Interamericana de Derechos Humanos en adelante la Corte la Corte Interamericana o el Tribunal dictada el de septiembre de La Resoluci\u00f3n que emiti\u00f3 el Tribunal el de diciembre de La Resoluci\u00f3n emitida por la Corte el de mayo de en los casos Liliana Ortega y otras Luisiana R\u00edos y otros Luis Uzc\u00e1tegui y Marta Colomina y ", - "values": [ - "Corte Interamericana de Derechos Humanos" - ] - }, - { - "text": "VOTO CONCURRENTE RAZONADO DEL JUEZ DIEGO GARC\u00cdASAY\u00c1N EN EL CASO KIMEL VS. ARGENTINA DE DE MAYO DE I. La libertad de expresi\u00f3n en el caso Kimel vs. Argentina En la sentencia en el caso Kimel vs. Argentina la Corte reafirma el concepto de que la libertad de expresi\u00f3n es un derecho fundamental en una sociedad democr\u00e1tica. La conducta del se\u00f1or Eduardo Kimel seg\u00fan todo lo actuado configur\u00f3 el ejercicio regular de ese derecho. En el caso concreto el trabajo de investigaci\u00f3n period\u00edstica efectuado", - "values": [ - "Corte Interamericana de Derechos Humanos" - ] - }, - { - "text": "VOTO CONCURRENTE DEL JUEZ AA. CAN\u00c7ADO TRINDADE He concurrido con mi voto a la adopci\u00f3n de la presente Sentencia de la Corte Interamericana de Derechos Humanos sobre excepciones preliminares en el caso Castillo Petruzzi versus Per\u00fa. Lo decidido por la Corte al desestimar la quinta y la sexta excepciones preliminares interpuestas por el Estado demandado relativas a la personalidad jur\u00eddica y a la legitimatio ad causam de la organizaci\u00f3n nongubernamental chilena peticionaria la Fundaci\u00f3n de Ayuda", - "values": [ - "Corte Interamericana de Derechos Humanos" - ] - }, - { - "text": "RESOLUCI\u00d3N DEL PRESIDENTE DE LA CORTE INTERAMERICANA DE DERECHOS HUMANOS DE FEBRERO DE SUPERVISI\u00d3N DE CUMPLIMIENTO DE LAS MEDIDAS DE REPARACI\u00d3N SOBRE ATENCI\u00d3N M\u00c9DICA Y PSICOL\u00d3GICA ORDENADAS EN NUEVE CASOS COLOMBIANOS CONVOCATORIA DE AUDIENCIA PRIVADA VISTO La resoluci\u00f3n de convocatoria de audiencia en el marco de la supervisi\u00f3n de cumplimiento emitida por la Corte Interamericana de Derechos Humanos en adelante la Corte la Corte Interamericana o el Tribunal el de abril de en relaci\u00f3n con ", - "values": [ - "Corte Interamericana de Derechos Humanos" - ] - }, - { - "text": "RESOLUCI\u00d3N DEL PRESIDENTE DE LA CORTE INTERAMERICANA DE DERECHOS HUMANOS DE DE NOVIEMBRE DE FONDO DE ASISTENCIA LEGAL DE V\u00cdCTIMAS CASO FURLAN Y FAMILIARES VS. ARGENTINA VISTO El escrito de de marzo de y su anexo mediante los cuales la Comisi\u00f3n Interamericana de Derechos Humanos en adelante la Comisi\u00f3n Interamericana o la Comisi\u00f3n someti\u00f3 a la Corte Interamericana de Derechos Humanos en adelante la Corte Interamericana la Corte o el Tribunal un caso en contra de la Rep\u00fablica Argentina en ", - "values": [ - "Corte Interamericana de Derechos Humanos" - ] - }, - { - "text": "ORDER OF THE INTERAMERICAN COURT OF HUMAN RIGHTS OF MAY CASE OF L\u00d3PEZ \u00c1LVAREZ V. HONDURAS MONITORING COMPLIANCE WITH JUDGMENT HAVING SEEN The Judgment on merits reparations and costs delivered on February hereinafter the Judgment by the InterAmerican Court of Human Rights hereinafter the InterAmerican Court or the Court. The Order on monitoring compliance with judgment issued by the InterAmerican Court on February in which it declared That as indicated in considering paragraphs and ", - "values": [ - "Corte Interamericana de Derechos Humanos" - ] - }, - { - "text": "Corte Interamericana de Derechos Humanos Caso Boyce y otros vs. Barbados Sentencia de de noviembre de Excepci\u00f3n Preliminar Fondo Reparaciones y Costas En el Caso Boyce y otros La Corte Interamericana de Derechos Humanos en adelante la Corte la Corte Interamericana o el Tribunal integrada por lo siguientes jueces Sergio Garc\u00eda Ram\u00edrez Presidente Cecilia Medina Quiroga Vicepresidenta Manuel E. Ventura Robles Juez Diego Garc\u00eda Say\u00e1n Juez Leonardo A. Franco Juez Margarette May Macaulay Jueza y ", - "values": [ - "Corte Interamericana de Derechos Humanos" - ] - }, - { - "text": "RESOLUCI\u00d3N DE LA CORTE INTERAMERICANA DE DERECHOS HUMANOS DE DE FEBRERO DE MEDIDAS PROVISIONALES RESPECTO DE LA REP\u00daBLICA BOLIVARIANA DE VENEZUELA CASO DEL INTERNADO JUDICIAL DE MONAGAS LA PICA VISTOS El escrito de de diciembre de y sus anexos mediante los cuales la Comisi\u00f3n Interamericana de Derechos Humanos en adelante la Comisi\u00f3n Interamericana o la Comisi\u00f3n someti\u00f3 a la Corte Interamericana de Derechos Humanos en adelante la Corte la Corte Interamericana o el Tribunal una solicitud de ", - "values": [ - "Corte Interamericana de Derechos Humanos" - ] - }, - { - "text": "RESOLUCI\u00d3N DE LA CORTE INTERAMERICANA DE DERECHOS HUMANOS DE DE NOVIEMBRE DE MEDIDAS PROVISIONALES SOLICITADAS POR LA COMISI\u00d3N INTERAMERICANA DE DERECHOS HUMANOS RESPECTO DE LA REP\u00daBLICA BOLIVARIANA DE VENEZUELA CASO DE LUISIANA R\u00cdOS Y OTROS VISTOS La Resoluci\u00f3n de la Corte Interamericana de Derechos Humanos en adelante la Corte Interamericana la Corte o el Tribunal de de noviembre de mediante la cual resolvi\u00f3 Requerir al Estado que adoptara sin dilaci\u00f3n cuantas medidas fueran necesarias ", - "values": [ - "Corte Interamericana de Derechos Humanos" - ] - }, - { - "text": "RESOLUCI\u00d3N DE LA CORTE INTERAMERICANA DE DERECHOS HUMANOS DE DE NOVIEMBRE DE CASO BARRIOS ALTOS CUMPLIMIENTO DE SENTENCIA VISTOS La sentencia sobre reparaciones dictada en el caso Barrios Altos por la Corte Interamericana de Derechos Humanos en adelante la Corte o el Tribunal el de noviembre de en cuyos puntos resolutivos decidi\u00f3 por unanimidad Aprobar en los t\u00e9rminos de la Sentencia el acuerdo sobre reparaciones suscrito el de agosto de entre el Estado del Per\u00fa y las v\u00edctimas sus y ", - "values": [ - "Corte Interamericana de Derechos Humanos" - ] - }, - { - "text": "RESOLU\u00c7\u00c3O DA CORTE INTERAMERICANA DE DIREITOS HUMANOS DE DE FEVEREIRO DE CASO GARIBALDI VS. BRASIL SUPERVIS\u00c3O DE CUMPRIMENTO DE SENTEN\u00c7A VISTO A Senten\u00e7a de exce\u00e7\u00f5es preliminares m\u00e9rito repara\u00e7\u00f5es e custas de de setembro de doravante a Senten\u00e7a emitida pela Corte Interamericana de Direitos Humanos doravante a Corte Interamericana a Corte ou o Tribunal assim como a Resolu\u00e7\u00e3o do Tribunal de de fevereiro de mediante a qual declarou que manteria aberto o procedimento de supervis\u00e3o de em ", - "values": [ - "Corte Interamericana de Derechos Humanos" - ] - }, - { - "text": "Corte Interamericana de Derechos Humanos Caso Barrios Altos Vs. Per\u00fa Sentencia de de noviembre de Reparaciones y Costas En el caso Barrios Altos la Corte Interamericana de Derechos Humanos en adelante la Corte Interamericana la Corte o el Tribunal integrada por los siguientes jueces Ant\u00f4nio A. Can\u00e7ado Trindade Presidente M\u00e1ximo Pacheco G\u00f3mez Vicepresidente Hern\u00e1n Salgado Pesantes Juez Alirio Abreu Burelli Juez Sergio Garc\u00eda Ram\u00edrez Juez y Carlos Vicente de Roux Rengifo Juez presentes adem\u00e1s ", - "values": [ - "Corte Interamericana de Derechos Humanos" - ] - }, - { - "text": "VOTO CONCURRENTE RAZONADO DEL JUEZ SERGIO GARC\u00cdA RAM\u00cdREZ EN EL CASO HILAIRE CONSTANTINE BENJAMIN Y OTROS VS. TRINIDAD Y TOBAGO DEL DE JUNIO DE El punto de mayor relevancia y complejidad en este caso ata\u00f1e a la incompatibilidad de la Offences against the Person Act de Trinidad y Tobago de de abril de mencionada en la sentencia como Ley de Delitos contra la Persona con la Convenci\u00f3n Americana sobre Derechos Humanos. A este respecto la Corte resolvi\u00f3 por el voto un\u00e1nime de sus integrantes ", - "values": [ - "Corte Interamericana de Derechos Humanos" - ] - }, - { - "text": "RESOLUCI\u00d3N DEL PRESIDENTE EN EJERCICIO DE LA CORTE INTERAMERICANA DE DERECHOS HUMANOS DE DE DICIEMBRE DE CASO DEL PENAL MIGUEL CASTRO CASTRO VS. PER\u00da SUPERVISI\u00d3N DE CUMPLIMIENTO DE SENTENCIA VISTO La Sentencia de fondo reparaciones y costas en adelante la Sentencia dictada el de noviembre de mediante la cual la Corte Interamericana de Derechos Humanos en adelante la Corte Interamericana la Corte o el Tribunal dispuso que El Estado debe en un plazo razonable investigar efectivamente los ", - "values": [ - "Corte Interamericana de Derechos Humanos" - ] - }, - { - "text": "RESOLUCI\u00d3N DE LA CORTE INTERAMERICANA DE DERECHOS HUMANOS DE DE NOVIEMBRE DE CASO SU\u00c1REZ ROSERO CUMPLIMIENTO DE SENTENCIA VISTOS La Sentencia de Fondo dictada en el caso Su\u00e1rez Rosero por la Corte Interamericana de Derechos Humanos en adelante la Corte o el Tribunal el de noviembre de mediante la cual por unanimidad Declar\u00f3 que el Estado del Ecuador viol\u00f3 en perjuicio de Rafael Iv\u00e1n Su\u00e1rez Rosero el art\u00edculo de la Convenci\u00f3n Americana sobre Derechos Humanos en concordancia con el de la", - "values": [ - "Corte Interamericana de Derechos Humanos" - ] - }, - { - "text": "INFORME N\u00ba PETICI\u00d3N ADMISIBILIDAD RENATO TICONA ESTRADA Y OTROS BOLIVIA de octubre de I. RESUMEN El de agosto de la Comisi\u00f3n Interamericana de Derechos Humanos en adelante la Comisi\u00f3n o la CIDH recibi\u00f3 una petici\u00f3n presentada por el Defensor del Pueblo de Bolivia en adelante el peticionario en contra de la Rep\u00fablica de Bolivia en adelante el Estado en la que se alega la violaci\u00f3n de los derechos humanos de los ciudadanos Renato Ticona Estrada art\u00edculos y de la Convenci\u00f3n sobre ", - "values": [ - "Comisi\u00f3n Interamericana de Derechos Humanos" - ] - }, - { - "text": "INFORME N PETICI\u00d3N ADMISIBILIDAD LEOPOLDO GARCIA LUCERO CHILE de octubre de I. RESUMEN El de mayo de la organizaci\u00f3n Seeking Reparation for Torture Survivors REDRESSen adelante los peticionarios present\u00f3 una denuncia ante la Comisi\u00f3n Interamericana de Derechos Humanos en adelante la Comisi\u00f3n en contra de la Rep\u00fablica de Chile en adelante el Estado por la presunta violaci\u00f3n de los derechos a las garant\u00edas judiciales art\u00edculo y recurso judicial art\u00edculo conjuntamente con la violaci\u00f3n de", - "values": [ - "Comisi\u00f3n Interamericana de Derechos Humanos" - ] - }, - { - "text": "INFORME N\u00ba CASO WALTER DAVID BULACIO ARGENTINA de mayo de I. ANTECEDENTES El de mayo de la Comisi\u00f3n Interamericana de Derechos Humanos en adelante la Comisi\u00f3n recibi\u00f3 una denuncia sobre la violaci\u00f3n de derechos protegidos en la Convenci\u00f3n Americana sobre Derechos Humanos en adelante la Convenci\u00f3n Americana por parte de la Rep\u00fablica Argentina en adelante el Estado el Estado argentino o Argentina en perjuicio del se\u00f1or Walter David Bulacio quien es representado ante la Comisi\u00f3n por la la", - "values": [ - "Comisi\u00f3n Interamericana de Derechos Humanos" - ] - }, - { - "text": "RESOLUCI\u00d3N DE LA CORTE INTERAMERICANA DE DERECHOS HUMANOS DE DE ENERO DE CASOS VEL\u00c1SQUEZ RODR\u00cdGUEZ FAIR\u00c9N GARBI Y SOL\u00cdS CORRALES Y GOD\u00cdNEZ CRUZ LA CORTE INTERAMERICANA DE DERECHOS HUMANOS VISTO Que esta Corte ha tenido conocimiento de que dentro de la jurisdicci\u00f3n territorial de la Rep\u00fablica de Honduras fue asesinado el d\u00eda de enero de el Sargento Jos\u00e9 Isa\u00edas Vilorio quien estaba citado para rendir declaraci\u00f3n como testigo ante ella durante la audiencia que tendr\u00eda lugar en este XVIII de", - "values": [ - "Corte Interamericana de Derechos Humanos" - ] - }, - { - "text": "INFORME No. PETICI\u00d3N ADMISIBILIDAD MELBA DEL CARMEN SU\u00c1REZ PERALTA ECUADOR de octubre de I. RESUMEN El de febrero de la Comisi\u00f3n Interamericana de Derechos Humanos en adelante la Comisi\u00f3n recibi\u00f3 una petici\u00f3n presentada por el se\u00f1or Jorge Sosa Meza en adelante el peticionario en la cual se alega la responsabilidad de la Rep\u00fablica de Ecuador por la falta de juzgamiento de los profesionales de la salud que habr\u00edan causado un perjuicio a la se\u00f1ora Melba del Carmen Su\u00e1rez Peralta en una a ", - "values": [ - "Comisi\u00f3n Interamericana de Derechos Humanos" - ] - }, - { - "text": "Corte Interamericana de Derechos Humanos Caso Garrido y Baigorria Vs. Argentina Sentencia de de febrero de Fondo En el caso Garrido y Baigorria la Corte Interamericana de Derechos Humanos integrada por los siguientes jueces H\u00e9ctor FixZamudio Presidente Hern\u00e1n Salgado Pesantes Vicepresidente Alejandro Montiel Arg\u00fcello Juez M\u00e1ximo Pacheco G\u00f3mez Juez Oliver Jackman Juez Alirio Abreu Burelli Juez Ant\u00f4nio A. Can\u00e7ado Trindade Juez Julio A. Barberis Juez ad hoc presentes adem\u00e1s Manuel E. Ventura y", - "values": [ - "Corte Interamericana de Derechos Humanos" - ] - }, - { - "text": "VOTO CONCURRENTE DEL JUEZ DIEGO GARCIASAY\u00c1N SENTENCIA DE LA CORTE INTERAMERICANA DE DERECHOS HUMANOS CASO BARBANI DUARTE Y OTROS VS. URUGUAY DE DE OCTUBRE DE En esta sentencia se reitera la jurisprudencia constante de la Corte Interamericana acerca de las garant\u00edas que protegen a las personas tanto en procesos judiciales como ante procedimientos no judiciales en los que se determinen sus derechos u obligaciones. En efecto en esta sentencia se se\u00f1ala que el art\u00edculo de la Convenci\u00f3n consagra", - "values": [ - "Corte Interamericana de Derechos Humanos" - ] - }, - { - "text": "RESOLUCI\u00d3N DE LA CORTE INTERAMERICANA DE DERECHOS HUMANOS DE DE JUNIO DE CASO RADILLA PACHECO VS. ESTADOS UNIDOS MEXICANOS SUPERVISI\u00d3N DE CUMPLIMIENTO DE SENTENCIA VISTO La Sentencia de excepciones preliminares fondo reparaciones y costas en adelante la Sentencia dictada por la Corte Interamericana de Derechos Humanos en adelante la Corte Interamericana la Corte o el Tribunal el de noviembre de La Resoluci\u00f3n de Supervisi\u00f3n de Cumplimiento de la Sentencia emitida por el Tribunal el de de", - "values": [ - "Corte Interamericana de Derechos Humanos" - ] - }, - { - "text": "RESOLUCI\u00d3N DE LA CORTE INTERAMERICANA DE DERECHOS HUMANOS DE DE SEPTIEMBRE DE MEDIDAS PROVISIONALES SOLICITADAS POR LA COMISI\u00d3N INTERAMERICANA DE DERECHOS HUMANOS RESPECTO DE LA REP\u00daBLICA DE GUATEMALA CASO COLOTENGO VISTO La resoluci\u00f3n Corte Interamericana de Derechos Humanos en adelante la Corte o a Corte Interamericana de de febrero de en cuya parte dispositiva establece Tomar nota de la medidas adoptadas por el Gobierno de la Rep\u00fablica de Guatemala en cumplimiento de la resoluci\u00f3n de ", - "values": [ - "Corte Interamericana de Derechos Humanos" - ] - }, - { - "text": " VOTO RAZONADO CONCURRENTE DEL JUEZ HERN\u00c1N SALGADO PESANTES A prop\u00f3sito de este caso se ha vuelto a reflexionar sobre el denominado derecho a la verdad derecho que si bien no est\u00e1 expresado en la Convenci\u00f3n puede encontrarse una referencia impl\u00edcita en algunas disposiciones de la Convenci\u00f3n Americana como por ejemplo los art\u00edculos y El derecho a la verdad se ha ido configurando en un contexto hist\u00f3rico donde el abuso del poder estatal ha dejado graves conflictos sobre todo cuando la de ", - "values": [ - "Corte Interamericana de Derechos Humanos" - ] - }, - { - "text": "RESOLUCI\u00d3N DEL PRESIDENTE DE LA CORTE INTERAMERICANA DE DERECHOS HUMANOS DE DE DICIEMBRE DE CASO HERRERA ESPINOZA Y OTROS VS. ECUADOR CONVOCATORIA A AUDIENCIA VISTO El escrito de sometimiento del caso y el Informe de Fondo de la Comisi\u00f3n Interamericana de Derechos Humanos en adelante la Comisi\u00f3n Interamericana o la Comisi\u00f3n el escrito de solicitudes argumentos y pruebas en adelante escrito de solicitudes y argumentos de los representantes de las presuntas v\u00edctimas en adelante los y el de ", - "values": [ - "Corte Interamericana de Derechos Humanos" - ] - }, - { - "text": "Corte Interamericana de Derechos Humanos Caso Huilca Tecse Vs. Per\u00fa Sentencia de de marzo de Fondo Reparaciones y Costas En el caso Huilca Tecse la Corte Interamericana de Derechos Humanos en adelante la Corte la Corte Interamericana o el Tribunal integrada por los siguientes jueces Sergio Garc\u00eda Ram\u00edrez Presidente Alirio Abreu Burelli Vicepresidente Oliver Jackman Juez Ant\u00f4nio A. Can\u00e7ado Trindade Juez Cecilia Medina Quiroga Jueza Manuel E. Ventura Robles Juez y Diego Garc\u00edaSay\u00e1n Juez adem\u00e1s", - "values": [ - "Corte Interamericana de Derechos Humanos" - ] - }, - { - "text": "INFORME N\u00ba PETICI\u00d3N ADMISIBILIDAD N\u00c9STOR JOS\u00c9 UZC\u00c1TEGUI Y OTROS VENEZUELA de julio de I. RESUMEN El de marzo de la Comisi\u00f3n Interamericana de Derechos Humanos en adelante tambi\u00e9n la Comisi\u00f3n Interamericana la Comisi\u00f3n o la CIDH recibi\u00f3 una petici\u00f3n presentada por el Comit\u00e9 de Familiares de V\u00edctimas de los Sucesos de Febrero Marzo de COFAVIC el Centro por la Justicia y el Derecho Internacional CEJIL y el se\u00f1or Carlos Ayala Corao en adelante tambi\u00e9n los peticionarios en la cual se alega", - "values": [ - "Comisi\u00f3n Interamericana de Derechos Humanos" - ] - }, - { - "text": "RESOLUCI\u00d3N DEL PRESIDENTE DE LA CORTE INTERAMERICANA DE DERECHOS HUMANOS DE DE DICIEMBRE DE CASO PEDRO MIGUEL VERA VERA Y OTROS VS. ECUADOR VISTOS El escrito de demanda presentado por la Comisi\u00f3n Interamericana de Derechos Humanos en adelante la Comisi\u00f3n Interamericana o la Comisi\u00f3n ante la Corte Interamericana de Derechos Humanos en adelante la Corte Interamericana la Corte o el Tribunal el de febrero de mediante el cual ofreci\u00f3 dos dict\u00e1menes periciales. La comunicaci\u00f3n presentada el ", - "values": [ - "Corte Interamericana de Derechos Humanos" - ] - }, - { - "text": "RESOLUCI\u00d3N DE LA CORTE INTERAMERICANA DE DERECHOS HUMANOS DE DE NOVIEMBRE DE SOLICITUD DE MEDIDAS PROVISIONALES RESPECTO DE HONDURAS COMUNIDAD GAR\u00cdFUNA DE PUNTA PIEDRA Y SUS MIEMBROS VISTO El escrito de de julio de mediante el cual la Organizaci\u00f3n Fraternal Negra Hondure\u00f1a en adelante la OFRANEH solicit\u00f3 a la Corte Interamericana de Derechos Humanos en adelante la Corte o el Tribunal ordenar medidas provisionales a favor de la Presidenta de dicha instituci\u00f3n Miriam Merced Miranda y de", - "values": [ - "Corte Interamericana de Derechos Humanos" - ] - }, - { - "text": "Resoluci\u00f3n de la Presidenta de la Corte Interamericana de Derechos Humanos de de septiembre de Caso Rever\u00f3n Trujillo vs. Venezuela Vistos El escrito de demanda presentado por la Comisi\u00f3n Interamericana de Derechos Humanos en adelante la Comisi\u00f3n Interamericana o la Comisi\u00f3n ante la Corte Interamericana de Derechos Humanos en adelante la Corte Interamericana la Corte o el Tribunal el de noviembre de en el que ofreci\u00f3 un testigo y dos peritos. El escrito de solicitudes argumentos y pruebas ", - "values": [ - "Corte Interamericana de Derechos Humanos" - ] - }, - { - "text": "Resoluci\u00f3n de la Corte Interamericana de Derechos Humanos De de febrero de Caso Ricardo Canese Vs. Paraguay Supervisi\u00f3n de Cumplimiento de Sentencia VISTO La Sentencia de fondo reparaciones y costas dictada por la Corte Interamericana de Derechos Humanos en adelante la Corte o el Tribunal el de agosto de mediante la cual DISPUSO por unanimidad que La Sentencia constituye per se una forma de reparaci\u00f3n en los t\u00e9rminos de los p\u00e1rrafos y de la misma. El Estado debe pagar la cantidad de ", - "values": [ - "Corte Interamericana de Derechos Humanos" - ] - }, - { - "text": "RESOLUCI\u00d3N DE LA CORTE INTERAMERICANA DE DERECHOS HUMANOS DE DE NOVIEMBRE DE CASO CASTILLO P\u00c1EZ VS. PER\u00da SUPERVISI\u00d3N DE CUMPLIMIENTO DE SENTENCIA VISTO La Sentencia de excepciones preliminares dictada por la Corte Interamericana de Derechos Humanos en adelante la Corte Interamericana la Corte o el Tribunal el de enero de la Sentencia de fondo dictada por la Corte el de noviembre de en adelante la Sentencia de fondo y la Sentencia de reparaciones y costas dictada por la Corte el de de ", - "values": [ - "Corte Interamericana de Derechos Humanos" - ] - }, - { - "text": "RESOLUCI\u00d3N DE LA CORTE INTERAMERICANA DE DERECHOS HUMANOS DE DE SEPTIEMBRE DE MEDIDAS PROVISIONALES ADOPTADAS POR LA CORTE INTERAMERICANA DE DERECHOS HUMANOS RESPECTO DE LA REP\u00daBLICA DEL PER\u00da CASO LOAYZA TAMAYO VISTO La resoluci\u00f3n dictada por el Presidente de la Corte Interamericana de Derechos Humanos en adelante la Corte Interamericana o la Corte el de junio de en la que dispuso Solicitar al Gobierno de la Rep\u00fablica del Per\u00fa que adopte sin dilaci\u00f3n cuantas medidas sean necesarias para ", - "values": [ - "Corte Interamericana de Derechos Humanos" - ] - }, - { - "text": "RESOLUCI\u00d3N DE LA CORTE INTERAMERICANA DE DERECHOS HUMANOS DE DE JULIO DE MEDIDAS PROVISIONALES REP\u00daBLICA BOLIVARIANA RESPECTO DE LA DE VENEZUELA ASUNTO CARLOS NIETO PALMA Y OTROS VISTO La Resoluci\u00f3n de la Corte Interamericana de Derechos Humanos en adelante la Corte Interamericana la Corte o el Tribunal de de julio de mediante la cual otorg\u00f3 medidas provisionales a favor del se\u00f1or Carlos Nieto Palma y sus familiares Yvonne Palma S\u00e1nchez Eva Teresa Nieto Palma y John Carmelo Laicono Nieto. ", - "values": [ - "Corte Interamericana de Derechos Humanos" - ] - }, - { - "text": "Resoluci\u00f3n de la Presidenta de la Corte Interamericana de Derechos Humanos de de diciembre de Caso Garc\u00eda Prieto y otros Vs. El Salvador Supervisi\u00f3n de Cumplimiento de Sentencia Y Medidas Provisionales Visto A Supervisi\u00f3n de cumplimiento de la Sentencia La Sentencia de excepciones preliminares fondo reparaciones y costas en adelante la Sentencia dictada por la Corte Interamericana de Derechos Humanos en adelante la Corte Interamericana la Corte o el Tribunal el de noviembre de mediante la ", - "values": [ - "Corte Interamericana de Derechos Humanos" - ] - }, - { - "text": "Resoluci\u00f3n de la Corte Interamericana de Derechos Humanos De de Noviembre de Caso Maritza Urrutia Vs. Guatemala Supervisi\u00f3n de Cumplimiento de Sentencia VISTOS La Sentencia de fondo reparaciones y costas dictada en el presente caso por la Corte Interamericana de Derechos Humanos en adelante la Corte la Corte Interamericana o el Tribunal el de noviembre de La Resoluci\u00f3n emitida por la Corte Interamericana el de septiembre de El informe presentado por el Estado de Guatemala en adelante ", - "values": [ - "Corte Interamericana de Derechos Humanos" - ] - }, - { - "text": "VOTO CONJUNTO PARCIALMENTE DISIDENTE DE LOS JUECES ROBERTO F. CALDAS Y EDUARDO FERRER MACGREGOR POISOT CASO DEFENSOR DE DERECHOS HUMANOS Y OTROS VS. GUATEMALA SENTENCIA DE DE AGOSTO DE EXCEPCIONES PRELIMINARES FONDO REPARACIONES Y COSTAS Emitimos el presente voto parcialmente disidente para fundamentar los motivos por los cuales discrepamos con lo decidido en los puntos resolutivos y de la Sentencia de de agosto de en el Caso Defensor de Derechos Humanos y Otros Vs. Guatemala en adelante", - "values": [ - "Corte Interamericana de Derechos Humanos" - ] - }, - { - "text": "VOTO RAZONADO DEL JUEZ SERGIO GARCIA RAMIREZ EN EL CASO RAXCACO REYES VS. GUATEMALA. SENTENCIA DEL DE SEPTIEMBRE DE A LA PENA DE MUERTE EN JURISPRUDENCIA INTERAMERICANA LA CONVENCION AMERICANA Y EN LA En el caso al que se refiere este Voto razonado que acompa\u00f1o a la sentencia adoptada por la Corte Interamericana con unanimidad de votos el Tribunal interamericano se plantea una vez m\u00e1s el tema de la pena de muerte anteriormente examinado en el desempe\u00f1o de las atribuciones consultivas del OC", - "values": [ - "Corte Interamericana de Derechos Humanos" - ] - }, - { - "text": "VOTO CONCURRENTE DE LA JUEZA MARGARETTE MAY MACAULAY A LA SENTENCIA DE LA CORTE INTERAMERICANA DE DERECHOS HUMANOS CASO BARBANI DUARTE Y OTROS VS. URUGUAY DE DE OCTUBRE DE Me siento obligada a emitir mi opini\u00f3n concurrente sobre las afirmaciones en la decisi\u00f3n de la mayor\u00eda de la Corte tal como aparecen en los p\u00e1rrafos y a de la sentencia en cuesti\u00f3n a\u00f1adiendo lo siguiente respecto al tema del art\u00edculo de la Convenci\u00f3n y su aplicaci\u00f3n. En mi opini\u00f3n el art\u00edculo no s\u00f3lo se refiere a de", - "values": [ - "Corte Interamericana de Derechos Humanos" - ] - }, - { - "text": "Corte Interamericana de Derechos Humanos Caso Las Palmeras Vs. Colombia Sentencia de de febrero de Excepciones Preliminares En el caso Las Palmeras la Corte Interamericana de Derechos Humanos en adelante la Corte o la Corte Interamericana integrada de la siguiente manera Ant\u00f4nio A. Can\u00e7ado Trindade Presidente M\u00e1ximo Pacheco G\u00f3mez Vicepresidente Hern\u00e1n Salgado Pesantes Juez Oliver Jackman Juez Alirio Abreu Burelli Juez Sergio Garc\u00eda Ram\u00edrez Juez y Julio A. Barberis Juez ad hoc presentes adem\u00e1s", - "values": [ - "Corte Interamericana de Derechos Humanos" - ] - }, - { - "text": "RESOLUCI\u00d3N DE LA CORTE INTERAMERICANA DE DERECHOS HUMANOS DE DE SEPTIEMBRE DE CASO CANTORAL HUAMAN\u00cd Y GARC\u00cdA SANTA CRUZ VS. PER\u00da SUPERVISI\u00d3N DE CUMPLIMIENTO DE SENTENCIA VISTO La Sentencia de excepci\u00f3n preliminar fondo reparaciones y costas en adelante tambi\u00e9n la Sentencia dictada por la Corte Interamericana de Derechos Humanos en adelante la Corte Interamericana la Corte o el Tribunal el de julio de mediante la cual dispuso que El Estado debe investigar inmediatamente los hechos que ", - "values": [ - "Corte Interamericana de Derechos Humanos" - ] - }, - { - "text": "RESOLUCI\u00d3N DE LA CORTE INTERAMERICANA DE DERECHOS HUMANOS DE JULIO DE CASO INSTITUTO DE REEDUCACI\u00d3N DEL MENOR VS. PARAGUAY CUMPLIMIENTO DE SENTENCIA VISTOS La sentencia dictada por la Corte Interamericana de Derechos Humanos en adelante la Corte la Corte Interamericana o el Tribunal el de septiembre de mediante el cual DECIDI\u00d3 Por unanimidad desestimar las excepciones preliminares referentes al defecto legal en la presentaci\u00f3n de la demanda y a la falta de reclamaci\u00f3n previa del art\u00edculo ", - "values": [ - "Corte Interamericana de Derechos Humanos" - ] - }, - { - "text": "Resoluci\u00f3n de la Presidenta de la Corte Interamericana de Derechos Humanos de de noviembre de Caso de los Ni\u00f1os de la Calle Villagr\u00e1n Morales y otros vs. Guatemala Supervisi\u00f3n de Cumplimiento de Sentencias Vistos La Sentencia de fondo dictada por la Corte Interamericana de Derechos Humanos en adelante la Corte la Corte Interamericana o el Tribunal el de noviembre de La Sentencia de reparaciones y costas dictada por la Corte Interamericana el de mayo de La Resoluci\u00f3n de la Corte de de", - "values": [ - "Corte Interamericana de Derechos Humanos" - ] - }, - { - "text": "Corte Interamericana De Derechos Humanos Caso De La Cruz Flores Vs. Per\u00fa Sentencia de de noviembre de Fondo Reparaciones y Costas En el caso De La Cruz Flores la Corte Interamericana de Derechos Humanos en adelante la Corte la Corte Interamericana o el Tribunal integrada por los siguientes jueces Sergio Garc\u00eda Ram\u00edrez Presidente Alirio Abreu Burelli Vicepresidente Oliver Jackman Juez Ant\u00f4nio A. Can\u00e7ado Trindade Juez Cecilia Medina Quiroga Jueza y Manuel E. Ventura Robles Juez presentes adem\u00e1s", - "values": [ - "Corte Interamericana de Derechos Humanos" - ] - }, - { - "text": "RESOLUCI\u00d3N DE LA CORTE INTERAMERICANA DE DERECHOS HUMANOS DEL DE JUNIO DE MEDIDAS PROVISIONALES SOLICITADAS POR LA COMISI\u00d3N INTERAMERICANA DE DERECHOS HUMANOS RESPECTO DE LA REP\u00daBLICA DEL ECUADOR CASO SU\u00c1REZ ROSERO VISTO El escrito de de marzo de y sus anexos mediante el cual la Comisi\u00f3n Interamericana de Derechos Humanos en adelante la Comisi\u00f3n o la Comisi\u00f3n Interamericana remiti\u00f3 a la Corte Interamericana de Derechos Humanos en adelante la Corte o la Corte Interamericana en virtud de los", - "values": [ - "Corte Interamericana de Derechos Humanos" - ] - }, - { - "text": "RESOLUCI\u00d3N DEL PRESIDENTE DE LA CORTE INTERAMERICANA DE DERECHOS HUMANOS DE DE MAYO DE FONDO DE ASISTENCIA LEGAL DE V\u00cdCTIMAS CASO NOR\u00cdN CATRIM\u00c1N Y OTROS VS. CHILE VISTO El escrito de de agosto de el Informe de Fondo No. y sus anexos mediante los cuales la Comisi\u00f3n Interamericana de Derechos Humanos en adelante la Comisi\u00f3n Interamericana o la Comisi\u00f3n someti\u00f3 a la Corte Interamericana de Derechos Humanos en adelante la Corte Interamericana la Corte o el Tribunal un caso en contra del de ", - "values": [ - "Corte Interamericana de Derechos Humanos" - ] - }, - { - "text": "RESOLUCI\u00d3N DE LA CORTE INTERAMERICANA DE DERECHOS HUMANOS DE DE SEPTIEMBRE DE SOLICITUD DE MEDIDAS PROVISIONALES PRESENTADA POR LA COMISI\u00d3N INTERAMERICANA DE DERECHOS HUMANOS RESPECTO DE LA REP\u00daBLICA DE VENEZUELA CASO DE LA EMISORA DE TELEVISI\u00d3N GLOBOVISI\u00d3N VISTOS El escrito de de julio de y sus anexos mediante los cuales la Comisi\u00f3n Interamericana de Derechos Humanos en adelante la Comisi\u00f3n Interamericana o la Comisi\u00f3n someti\u00f3 a la Corte Interamericana de Derechos Humanos en adelante la ", - "values": [ - "Corte Interamericana de Derechos Humanos" - ] - }, - { - "text": "VOTO RAZONADO DEL JUEZ SERGIO GARC\u00cdA RAM\u00cdREZ EN RELACI\u00d3N CON LA SENTENCIA DE LA CORTE INTERAMERICANA DE DERECHOS HUMANOS EN EL CASO DACOSTA CADOGAN BARBADOS DE DE SEPTIEMBRE DE El caso DaCosta Cadogan a cuya sentencia agrego este voto brinda a la Corte una nueva oportunidad para reprobar la figura de la pena de muerte obligatoria o forzosa que a\u00fan recogen algunas legislaciones nacionales y que contraviene por los motivos expuestos por la propia Corte en reiteradas ocasiones los t\u00e9rminos del ", - "values": [ - "Corte Interamericana de Derechos Humanos" - ] - }, - { - "text": "Corte Interamericana de Derechos Humanos Caso Caesar Vs. Trinidad y Tobago Resoluci\u00f3n del de Noviembre de Supervisi\u00f3n de Cumplimiento de Sentencia VISTOS La Sentencia de fondo reparaciones y costas dictada por la Corte Interamericana de Derechos Humanos en adelante la Corte o la Corte Interamericana el de marzo de en adelante la Sentencia mediante la cual DECLAR\u00d3 Por unanimidad que El Estado viol\u00f3 el derecho consagrado en el art\u00edculo y de la Convenci\u00f3n Americana sobre Derechos Humanos ", - "values": [ - "Corte Interamericana de Derechos Humanos" - ] - }, - { - "text": "RESOLUCI\u00d3N DE LA CORTE INTERAMERICANA DE DERECHOS HUMANOS DE DE JUNIO DE AMPLIACI\u00d3N DE MEDIDAS PROVISIONALES RESPECTO DEL ESTADO DE GUATEMALA HELEN MACK CHANG Y OTROS VISTOS La Resoluci\u00f3n del Presidente de la Corte Interamericana de Derechos Humanos en adelante el Presidente de de agosto de mediante la cual resolvi\u00f3 Requerir al Estado que adopte sin dilaci\u00f3n cuantas medidas sean necesarias para proteger la vida e integridad personal de la se\u00f1ora Helen Mack Chang y de los integrantes de la", - "values": [ - "Corte Interamericana de Derechos Humanos" - ] - }, - { - "text": "INFORME N\u00ba PETICI\u00d3N ADMISIBILIDAD COMUNIDAD DE R\u00cdO NEGRO DEL PUEBLO IND\u00cdGENA MAYA Y SUS MIEMBROS GUATEMALA de marzo de I. RESUMEN El de julio de la Comisi\u00f3n Interamericana de Derechos Humanos en adelante la Comisi\u00f3n Interamericana la Comisi\u00f3n o la CIDH recibi\u00f3 una denuncia presentada por la Asociaci\u00f3n para el Desarrollo Integral de las V\u00edctimas de la Violencia en las Verapaces Maya Ach\u00ed en adelante ADIVIMA o los peticionarios en favor de los sobrevivientes de la Comunidad Ind\u00edgena de ", - "values": [ - "Comisi\u00f3n Interamericana de Derechos Humanos" - ] - }, - { - "text": "Voto del Juez ad hoc Dr. Jorge E. Orihuela Iberico sobre la Excepci\u00f3n Preliminar de incompetencia de la Comisi\u00f3n Caso Neira Alegr\u00eda y Otros I. II. III. IV. Hechos Normatividad Jurisprudencia Conclusiones y voto I. Hechos A La petici\u00f3n o denuncia Anterior a la presentaci\u00f3n de la denuncia a la Comisi\u00f3n Recurso de h\u00e1beas corpus que se tramita entre el de julio de en tres instancias ante el Poder Judicial y concluye el de agosto de Recurso de casaci\u00f3n ante el Tribunal de Garant\u00edas que se ", - "values": [ - "Corte Interamericana de Derechos Humanos" - ] - }, - { - "text": "Corte Interamericana de Derechos Humanos Caso Yatama Vs. Nicaragua Sentencia de de Junio de Excepciones Preliminares Fondo Reparaciones y Costas En el caso YATAMA la Corte Interamericana de Derechos Humanos en adelante la Corte Interamericana la Corte o el Tribunal integrada por los siguientes jueces Sergio Garc\u00eda Ram\u00edrez Presidente Alirio Abreu Burelli Vicepresidente Oliver Jackman Juez Ant\u00f4nio A. Can\u00e7ado Trindade Juez Cecilia Medina Quiroga Jueza Manuel E. Ventura Robles Juez Diego Juez y ", - "values": [ - "Corte Interamericana de Derechos Humanos" - ] - }, - { - "text": "RESOLUCI\u00d3N DEL PRESIDENTE DE LA CORTE INTERAMERICANA DE DERECHOS HUMANOS DE DE FEBRERO DE FONDO DE ASISTENCIA LEGAL DE V\u00cdCTIMAS CASO HERMANOS LANDAETA MEJ\u00cdAS Y OTROS VS. VENEZUELA VISTO El escrito recibido el de julio de mediante el cual la Comisi\u00f3n Interamericana de Derechos Humanos en adelante la Comisi\u00f3n Interamericana o la Comisi\u00f3n someti\u00f3 a la Corte Interamericana de Derechos Humanos en adelante la Corte Interamericana la Corte o el Tribunal un caso en contra de la Rep\u00fablica de en ", - "values": [ - "Corte Interamericana de Derechos Humanos" - ] - }, - { - "text": "Corte Interamericana de Derechos Humanos Caso Cesti Hurtado Vs. Per\u00fa Sentencia de de septiembre de Fondo En el caso Cesti Hurtado la Corte Interamericana de Derechos Humanos en adelante la Corte la Corte Interamericana o el Tribunal integrada por los siguientes jueces Ant\u00f4nio A. Can\u00e7ado Trindade Presidente M\u00e1ximo Pacheco G\u00f3mez Vicepresidente Oliver Jackman Juez Alirio Abreu Burelli Juez Sergio Garc\u00eda Ram\u00edrez Juez y Carlos Vicente de Roux Rengifo Juez presentes adem\u00e1s Manuel E. Ventura Robles ", - "values": [ - "Corte Interamericana de Derechos Humanos" - ] - }, - { - "text": "VOTO CONCURRENTE DEL JUEZ EDUARDO FERRER MACGREGOR POISOT CASO GONZALES LLUY Y OTROS VS. ECUADOR SENTENCIA DE DE SEPTIEMBRE DE Excepciones Preliminares Fondo Reparaciones y Costas Los Jueces Roberto F. Caldas y Manuel E. Ventura Robles se adhirieron al presente Voto del Juez Eduardo Ferrer MacGregor Poisot. INTRODUCCI\u00d3N SOBRE EL DERECHO A LA EDUCACI\u00d3N Y EL DERECHO A LA SALUD Este es el primer caso en la historia de la Corte Interamericana de Derechos Humanos en adelante Corte IDH o Tribunal ", - "values": [ - "Corte Interamericana de Derechos Humanos" - ] - }, - { - "text": "Corte Interamericana de Derechos Humanos Caso de la Panel Blanca Paniagua Morales y otros Vs. Guatemala Sentencia de de mayo de Reparaciones y Costas En el caso de la Panel Blanca la Corte Interamericana de Derechos Humanos integrada por los siguientes jueces Ant\u00f4nio A. Can\u00e7ado Trindade Presidente Hern\u00e1n Salgado Pesantes Juez Oliver Jackman Juez Alirio Abreu Burelli Juez Sergio Garc\u00eda Ram\u00edrez Juez Carlos Vicente de Roux Rengifo Juez y Edgar E. Larraondo Salguero Juez ad hoc presentes adem\u00e1s ", - "values": [ - "Corte Interamericana de Derechos Humanos" - ] - }, - { - "text": "Resoluci\u00f3n de la Corte Interamericana de Derechos Humanos de de noviembre de Caso Bulacio Vs. Argentina Supervisi\u00f3n de Cumplimiento de Sentencia Vistos La Sentencia de fondo reparaciones y costas de de septiembre de en adelante la Sentencia dictada por la Corte Interamericana de Derechos Humanos en adelante la Corte Interamericana la Corte o el Tribunal notificada \u00edntegramente a la Rep\u00fablica Argentina en adelante el Estado o Argentina el de octubre de mediante la cual decidi\u00f3 por que el", - "values": [ - "Corte Interamericana de Derechos Humanos" - ] - }, - { - "text": "RESOLUCI\u00d3N DE LA CORTE INTERAMERICANA DE DERECHOS HUMANOS DE DE AGOSTO DE CASO HUILCA TECSE VS. PER\u00da SUPERVISI\u00d3N DE CUMPLIMIENTO DE SENTENCIA VISTO La Sentencia de fondo reparaciones y costas en adelante la Sentencia dictada por la Corte Interamericana de Derechos Humanos en adelante la Corte Interamericana la Corte o el Tribunal el de marzo de El caso se refiere a la ejecuci\u00f3n extrajudicial perpetrada el de diciembre de contra el se\u00f1or Pedro Huilca Tecse quien en ese momento fung\u00eda ", - "values": [ - "Corte Interamericana de Derechos Humanos" - ] - }, - { - "text": "RESOLUCI\u00d3N DE LA CORTE INTERAMERICANA DE DERECHOS HUMANOS DE DE MAYO DE MEDIDAS PROVISIONALES RESPECTO DE LA REP\u00daBLICA DE TRINIDAD Y TOBAGO ASUNTO DOTTIN Y OTROS VISTO Las Resoluciones del Presidente de la Corte Interamericana de Derechos Humanos en adelante la Corte Interamericana la Corte o el Tribunal de de mayo de junio y y de julio de y de de junio de as\u00ed como las Resoluciones del Tribunal de de junio y de agosto de y de mayo y de septiembre de de agosto y de noviembre ", - "values": [ - "Corte Interamericana de Derechos Humanos" - ] - }, - { - "text": "Corte Interamericana de Derechos Humanos Caso G\u00f3mez Palomino Vs. Per\u00fa Sentencia de de noviembre de Fondo Reparaciones y Costas En el caso G\u00f3mez Palomino La Corte Interamericana de Derechos Humanos en adelante la Corte la Corte Interamericana o el Tribunal integrada por los siguientes jueces Sergio Garc\u00eda Ram\u00edrez Presidente Alirio Abreu Burelli Vicepresidente Oliver Jackman Juez Ant\u00f4nio A. Can\u00e7ado Trindade Juez Cecilia Medina Quiroga Jueza Manuel E. Ventura Robles Juez y Diego Garc\u00edaSay\u00e1n Juez", - "values": [ - "Corte Interamericana de Derechos Humanos" - ] - }, - { - "text": "RESOLUCI\u00d3N DE LA CORTE INTERAMERICANA DE DERECHOS HUMANOS DE DE SEPTIEMBRE DE CASO PALAMARA IRIBARNE VS. CHILE SUPERVISI\u00d3N DE CUMPLIMIENTO DE SENTENCIA VISTO La Sentencia de fondo reparaciones y costas en adelante la Sentencia dictada por la Corte Interamericana de Derechos Humanos en adelante la Corte Interamericana la Corte o el Tribunal el de noviembre de La Corte declar\u00f3 la responsabilidad internacional de la Rep\u00fablica de Chile en adelante el Estado o Chile por la violaci\u00f3n entre a", - "values": [ - "Corte Interamericana de Derechos Humanos" - ] - }, - { - "text": "RESOLUCI\u00d3N DEL PRESIDENTE DE LA CORTE INTERAMERICANA DE DERECHOS HUMANOS DE DE JUNIO DE MEDIDAS PROVISIONALES RESPECTO DE LA REP\u00daBLICA DE COLOMBIA ASUNTO PUEBLO IND\u00cdGENA KANKUAMO VISTO Las Resoluciones de la Corte Interamericana de Derechos Humanos en adelante la Corte Interamericana la Corte o el Tribunal de de julio de de enero de y de abril de dictadas en el presente asunto. Mediante esta \u00faltima resoluci\u00f3n el Tribunal requiri\u00f3 a la Rep\u00fablica de Colombia en adelante el Estado o y ", - "values": [ - "Corte Interamericana de Derechos Humanos" - ] - }, - { - "text": "Resoluci\u00f3n de la Presidenta de la Corte Interamericana de Derechos Humanos de de mayo de Caso Zambrano V\u00e9lez y otros vs. Ecuador Supervisi\u00f3n de cumplimiento de Sentencia Visto La Sentencia de fondo reparaciones y costas dictada por la Corte Interamericana de Derechos Humanos en adelante la Corte la Corte Interamericana o el Tribunal el de julio de mediante la cual decidi\u00f3 que El Estado debe realizar inmediatamente las debidas diligencias y utilizar todos los medios disponibles para hacer", - "values": [ - "Corte Interamericana de Derechos Humanos" - ] - }, - { - "text": "RESOLUCI\u00d3N DE LA CORTE INTERAMERICANA DE DERECHOS HUMANOS DE DE SEPTIEMBRE DE CASO TRUJILLO OROZA VS. BOLIVIA CUMPLIMIENTO DE SENTENCIA VISTOS La Sentencia sobre el fondo dictada por la Corte Interamericana de Derechos Humanos en adelante la Corte o el Tribunal el de enero de en la cual por unanimidad Admiti\u00f3 la aceptaci\u00f3n de los hechos y el reconocimiento de responsabilidad efectuados por el Estado. Declar\u00f3 conforme a los t\u00e9rminos del reconocimiento de responsabilidad internacional por ", - "values": [ - "Corte Interamericana de Derechos Humanos" - ] - }, - { - "text": "RESOLUCI\u00d3N DEL PRESIDENTE DE LA CORTE INTERAMERICANA DE DERECHOS HUMANOS DE DE JUNIO DE CASO FAMILIA BARRIOS VS. VENEZUELA VISTO El escrito de sometimiento del caso presentado por la Comisi\u00f3n Interamericana de Derechos Humanos en adelante la Comisi\u00f3n Interamericana o la Comisi\u00f3n ante la Corte Interamericana de Derechos Humanos en adelante la Corte Interamericana la Corte o el Tribunal el de julio de mediante el cual ofreci\u00f3 dos dict\u00e1menes periciales. En dicho escrito la Comisi\u00f3n indic\u00f3 el ", - "values": [ - "Corte Interamericana de Derechos Humanos" - ] - }, - { - "text": "RELAT\u00d3RIO N CASO OSCAR JOSE BLANCO ROMERO VENEZUELA de outubro de I. RESUMO Em de fevereiro de a Comiss\u00e3o Interamericana de Direitos Humanos doravante denominada a Comiss\u00e3o Interamericana ou a CIDH recebeu uma den\u00fancia apresentada pelo Comit\u00ea de Familiares de V\u00edtimas dos Acontecimentos de FevereiroMar\u00e7o de COFAVIC e o Centro de Justi\u00e7a e o Direito Internacional CEJIL doravante denominados os peticion\u00e1rios na qual se alega a responsabilidade internacional do Estado da Venezuela doravante", - "values": [ - "Comisi\u00f3n Interamericana de Derechos Humanos" - ] - }, - { - "text": "RESOLUCI\u00d3N DE LA PRESIDENTA DE LA CORTE INTERAMERICANA DE DERECHOS HUMANOS DE DE DICIEMBRE DE CASO DE LAS HERMANAS SERRANO CRUZ VS. EL SALVADOR SUPERVISI\u00d3N DE CUMPLIMIENTO DE SENTENCIA VISTO La Sentencia de fondo reparaciones y costas en adelante la Sentencia dictada por la Corte Interamericana de Derechos Humanos en adelante la Corte Interamericana la Corte o el Tribunal el de marzo de Las resoluciones de supervisi\u00f3n de cumplimiento de la Sentencia dictadas por la Corte el de septiembre", - "values": [ - "Corte Interamericana de Derechos Humanos" - ] - }, - { - "text": "CORTE INTERAMERICANA DE DERECHOS HUMANOS CASO CANTORAL HUAMAN\u00cd Y GARC\u00cdA SANTA CRUZ VS. PER\u00da SENTENCIA DE DE JULIO DE EXCEPCI\u00d3N PRELIMINAR FONDO REPARACIONES Y COSTAS En el Caso Cantoral Huaman\u00ed y Garc\u00eda Santa Cruz la Corte Interamericana de Derechos Humanos en adelante la Corte Interamericana la Corte o el Tribunal integrada por los siguientes jueces Sergio Garc\u00eda Ram\u00edrez Presidente Cecilia Medina Quiroga Vicepresidenta Manuel E. Ventura Robles Juez Leonardo A. Franco Juez Margarette May y ", - "values": [ - "Corte Interamericana de Derechos Humanos" - ] - }, - { - "text": "RESOLUCI\u00d3N DE LA CORTE INTERAMERICANA DE DERECHOS HUMANOS DE DE FEBRERO DE MEDIDAS PROVISIONALES RESPECTO DE LA REP\u00daBLICA DE COLOMBIA ASUNTO GIRALDO CARDONA Y OTROS Visto La Resoluci\u00f3n del Presidente de la Corte Interamericana de Derechos Humanos en adelante la Corte la Corte Interamericana o el Tribunal de de octubre de y las Resoluciones de la Corte de de febrero y de abril de de junio y de noviembre de de septiembre de de diciembre de y de noviembre de En esta \u00faltima la ", - "values": [ - "Corte Interamericana de Derechos Humanos" - ] - }, - { - "text": "RESOLUCI\u00d3N DE LA CORTE INTERAMERICANA DE DERECHOS HUMANOS DE DE ENERO DE REINTEGRO AL FONDO DE ASISTENCIA LEGAL DE V\u00cdCTIMAS CASO NOR\u00cdN CATRIM\u00c1N Y OTROS DIRIGENTES MIEMBROS Y ACTIVISTA DEL PUEBLO IND\u00cdGENA MAPUCHE VS. CHILE VISTO La Sentencia de fondo reparaciones y costas en adelante la Sentencia o el Fallo dictada por la Corte Interamericana de Derechos Humanos en adelante la Corte la Corte Interamericana o el Tribunal el de mayo de la cual fue notificada el de julio de En el punto ", - "values": [ - "Corte Interamericana de Derechos Humanos" - ] - }, - { - "text": "INFORME N\u00ba PETICI\u00d3N ADMISIBILIDAD EMELINDA LORENA HERN\u00c1NDEZ EL SALVADOR de marzo de I. RESUMEN El de septiembre de la Comisi\u00f3n Interamericana de Derechos Humanos en adelante la Comisi\u00f3n Interamericana o la CIDH recibi\u00f3 una denuncia presentada por la Asociaci\u00f3n ProB\u00fasqueda de Ni\u00f1as y Ni\u00f1os Desaparecidos Asociaci\u00f3n ProB\u00fasqueda en adelante los peticionarios en la cual se alega la responsabilidad internacional de la Rep\u00fablica de El Salvador el Estado El Salvador o el Estado salvadore\u00f1o por ", - "values": [ - "Comisi\u00f3n Interamericana de Derechos Humanos" - ] - }, - { - "text": "Corte Interamericana de Derechos Humanos Caso Constantine y otros Vs. Trinidad y Tobago Sentencia de de septiembre de Excepciones Preliminares En el caso Constantine y otros la Corte Interamericana de Derechos Humanos en adelante la Corte Interamericana la Corte o el Tribunal integrada por los siguientes jueces Ant\u00f4nio A. Can\u00e7ado Trindade Presidente M\u00e1ximo Pacheco G\u00f3mez Vicepresidente Hern\u00e1n Salgado Pesantes Juez Oliver Jackman Juez Alirio Abreu Burelli Juez Sergio Garc\u00eda Ram\u00edrez Juez y de ", - "values": [ - "Corte Interamericana de Derechos Humanos" - ] - }, - { - "text": "Corte Interamericana de Derechos Humanos Caso Cantoral Benavides Vs. Per\u00fa Sentencia de de agosto de Fondo En el caso Cantoral Benavides la Corte Interamericana de Derechos Humanos en adelante la Corte o la Corte Interamericana o el Tribunal integrada por los siguientes jueces Ant\u00f4nio A. Can\u00e7ado Trindade Presidente M\u00e1ximo Pacheco G\u00f3mez Vicepresidente Hern\u00e1n Salgado Pesantes Juez Oliver Jackman Juez Alirio Abreu Burelli Juez Sergio Garc\u00eda Ram\u00edrez Juez Carlos Vicente de Roux Rengifo Juez y ", - "values": [ - "Corte Interamericana de Derechos Humanos" - ] - }, - { - "text": "RESOLUCI\u00d3N DEL PRESIDENTE DE LA CORTE INTERAMERICANA DE DERECHOS HUMANOS DE DE SEPTIEMBRE DE CASO GELMAN VS. URUGUAY VISTO El escrito de demanda presentado el de enero de por la Comisi\u00f3n Interamericana de Derechos Humanos en adelante la Comisi\u00f3n Interamericana o la Comisi\u00f3n ante la Corte Interamericana de Derechos Humanos en adelante la Corte Interamericana la Corte o el Tribunal en el que ofreci\u00f3 un dictamen pericial. El escrito de solicitudes argumentos y pruebas en adelante escrito de ", - "values": [ - "Corte Interamericana de Derechos Humanos" - ] - }, - { - "text": "RESOLUCI\u00d3N DEL PRESIDENTE DE LA CORTE INTERAMERICANA DE DERECHOS HUMANOS DE DE ABRIL DE CASO COMUNIDAD GAR\u00cdFUNA TRIUNFO DE LA CRUZ Y SUS MIEMBROS VS HONDURAS VISTO El escrito de sometimiento del caso presentado por la Comisi\u00f3n Interamericana de Derechos Humanos en adelante la Comisi\u00f3n Interamericana o la Comisi\u00f3n ante la Corte Interamericana de Derechos Humanos en adelante la Corte Interamericana la Corte o el Tribunal el de febrero de mediante el cual remiti\u00f3 el Informe de Fondo No. y ", - "values": [ - "Corte Interamericana de Derechos Humanos" - ] - }, - { - "text": "Corte Interamericana de Derechos Humanos Caso Ivcher Bronstein Vs. Per\u00fa Sentencia de de septiembre de Competencia En el caso Ivcher Bronstein la Corte Interamericana de Derechos Humanos en adelante la Corte la Corte Interamericana o el Tribunal integrada por los siguientes jueces Ant\u00f4nio A. Can\u00e7ado Trindade Presidente M\u00e1ximo Pacheco G\u00f3mez Vicepresidente Oliver Jackman Juez Alirio Abreu Burelli Juez Sergio Garc\u00eda Ram\u00edrez Juez y Carlos Vicente de Roux Rengifo Juez presentes adem\u00e1s Manuel E. ", - "values": [ - "Corte Interamericana de Derechos Humanos" - ] - }, - { - "text": "Corte Interamericana de Direitos Humanos Caso do Pres\u00eddio Miguel Castro Castro Vs. Peru Senten\u00e7a de de novembro de M\u00e9rito Repara\u00e7\u00f5es e Custas No Caso do Pres\u00eddio Miguel Castro Castro a Corte Interamericana de Direitos Humanos doravante denominada Interamericana Corte ou Tribunal integrada pelos seguintes ju\u00edzes Corte Sergio Garc\u00eda Ram\u00edrez Presidente Alirio Abreu Burelli VicePresidente Ant\u00f4nio A. Can\u00e7ado Trindade Juiz Cecilia Medina Quiroga Ju\u00edza e Manuel E. Ventura Robles Juiz presentes ", - "values": [ - "Corte Interamericana de Derechos Humanos" - ] - }, - { - "text": "RESOLUCI\u00d3N DE LA CORTE INTERAMERICANA DE DERECHOS HUMANOS DE DE FEBRERO DE CASO DEFENSOR DE DERECHOS HUMANOS Y OTROS VS. GUATEMALA SUPERVISI\u00d3N DE CUMPLIMIENTO DE SENTENCIA VISTO La Sentencia de excepciones preliminares fondo reparaciones y costas en adelante la Sentencia dictada por la Corte Interamericana de Derechos Humanos en adelante la Corte la Corte Interamericana o este Tribunal el de agosto de La Corte declar\u00f3 responsable internacionalmente a la Rep\u00fablica de Guatemala en adelante ", - "values": [ - "Corte Interamericana de Derechos Humanos" - ] - }, - { - "text": "Resoluci\u00f3n de la Presidenta de la Corte Interamericana de Derechos Humanos de de abril de Solicitud de Medidas Provisionales presentada por la Comisi\u00f3n Interamericana de Derechos Humanos respecto de los Estados Unidos Mexicanos Asunto Fern\u00e1ndez Ortega y otros VISTO El escrito de la Comisi\u00f3n Interamericana de Derechos Humanos en adelante la Comisi\u00f3n Interamericana o la Comisi\u00f3n de de abril de y sus anexos recibidos el d\u00eda de abril de mediante los cuales someti\u00f3 a la Corte Interamericana ", - "values": [ - "Corte Interamericana de Derechos Humanos" - ] - }, - { - "text": "Resoluci\u00f3n de la Corte Interamericana de Derechos Humanos de de julio de Medidas Provisionales respecto de Rep\u00fablica Dominicana Asunto Haitianos y Dominicanos de origen Haitiano en la Rep\u00fablica Dominicana Visto Las Resoluciones de la Corte Interamericana de Derechos Humanos en adelante la Corte o la Corte Interamericana o el Tribunal de de junio y de agosto de septiembre y de noviembre de de mayo de de octubre de y de febrero de Los informes de Rep\u00fablica Dominicana en adelante ", - "values": [ - "Corte Interamericana de Derechos Humanos" - ] - }, - { - "text": "RESOLUCI\u00d3N DEL PRESIDENTE DE LA CORTE INTERAMERICANA DE DERECHOS HUMANOS DE DE DICIEMBRE DE CASO GUTI\u00c9RREZ Y FAMILIA VS. ARGENTINA VISTO El escrito de sometimiento del caso presentado por la Comisi\u00f3n Interamericana de Derechos Humanos en adelante la Comisi\u00f3n Interamericana o la Comisi\u00f3n ante la Corte Interamericana de Derechos Humanos en adelante la Corte Interamericana la Corte o el Tribunal el de agosto de mediante el cual ofreci\u00f3 un dictamen pericial. La Comisi\u00f3n indic\u00f3 el objeto de ", - "values": [ - "Corte Interamericana de Derechos Humanos" - ] - }, - { - "text": "VOTO DISSIDENTE DO JUIZ PIZA ESCALANTE N\u00e3o haveria tido reserva alguma para subscrever a totalidade da senten\u00e7a se o ponto \u00ba tivesse sido redigido em termos como os seguintes Decide que a forma e quantia desta indeniza\u00e7\u00e3o ser\u00e3o fixadas pela Corte caso as partes com interven\u00e7\u00e3o da Comiss\u00e3o n\u00e3o se ponham de acordo a esse respeito num per\u00edodo de seis meses a partir da data desta senten\u00e7a e deixa aberto para esse efeito o procedimento. Inclusive teria concorrido a uma decis\u00e3o menos definitiva que", - "values": [ - "Corte Interamericana de Derechos Humanos" - ] - }, - { - "text": "VOTO CONCORDANTE DO JUIZ EDUARDO VIO GROSSI SENTEN\u00c7A DE DE AGOSTO DE CASO DA COMUNIDADE IND\u00cdGENA X\u00c1KMOK K\u00c1SEK VS. PARAGUAI M\u00c9RITO REPARA\u00c7\u00d5ES E CUSTAS DA CORTE INTERAMERICANA DE DIREITOS HUMANOS INTRODU\u00c7\u00c3O Concordo atrav\u00e9s deste voto com a decis\u00e3o indicada n\u00e3o s\u00f3 por compartilhar o que nela se indica mas tamb\u00e9m porque se insere em uma dire\u00e7\u00e3o que considero adaptada ao Direito e \u00e0 Justi\u00e7a e em conformidade com o desenvolvimento progressivo do Direito Internacional no que respeita aos povos o ", - "values": [ - "Corte Interamericana de Derechos Humanos" - ] - }, - { - "text": "RESOLUCI\u00d3N DE LA CORTE INTERAMERICANA DE DERECHOS HUMANOS DE DE NOVIEMBRE DE MEDIDAS PROVISIONALES RESPECTO DE VENEZUELA ASUNTO CENTRO PENITENCIARIO DE ARAGUA C\u00c1RCEL DE TOCOR\u00d3N VISTO El escrito de la Comisi\u00f3n Interamericana de Derechos Humanos en adelante la Comisi\u00f3n Interamericana o la Comisi\u00f3n de de octubre de y sus anexos mediante los cuales someti\u00f3 a la Corte Interamericana de Derechos Humanos en adelante la Corte Interamericana la Corte o el Tribunal una solicitud de medidas de con ", - "values": [ - "Corte Interamericana de Derechos Humanos" - ] - }, - { - "text": "RESOLUCI\u00d3N DE LA CORTE INTERAMERICANA DE DERECHOS HUMANOS DE DE SEPTIEMBRE DE SOLICITUD DE AMPLIACI\u00d3N DE MEDIDAS PROVISIONALES A FAVOR DE MARIANELA S\u00c1NCHEZ ORTIZ Y FAMILIA RESPECTO DE VENEZUELA ASUNTOS DE DETERMINADOS CENTROS PENITENCIARIOS DE VENEZUELA VISTO La Resoluci\u00f3n de la Corte Interamericana de Derechos Humanos en adelante la Corte Interamericana la Corte o el Tribunal de de noviembre de en los asuntos del Internado Judicial de Monagas La Pica Centro Penitenciario Regi\u00f3n Capital I", - "values": [ - "Corte Interamericana de Derechos Humanos" - ] - }, - { - "text": "RESOLUCI\u00d3N DEL PRESIDENTE DE LA CORTE INTERAMERICANA DE DERECHOS HUMANOS DE DE JULIO DE FONDO DE ASISTENCIA LEGAL DE V\u00cdCTIMAS CASO LAGOS DEL CAMPO VS. PER\u00da VISTO El escrito de de noviembre de y sus anexos mediante los cuales la Comisi\u00f3n Interamericana de Derechos Humanos en adelante la Comisi\u00f3n Interamericana o la Comisi\u00f3n someti\u00f3 ante la Corte Interamericana de Derechos Humanos en adelante la Corte Interamericana la Corte o el Tribunal el presente caso. El escrito de de abril de y sus ", - "values": [ - "Corte Interamericana de Derechos Humanos" - ] - }, - { - "text": "RESOLUCI\u00d3N DE LA CORTE INTERAMERICANA DE DERECHOS HUMANOS DE DE NOVIEMBRE DE CASO YATAMA VS. NICARAGUA SUPERVISI\u00d3N DE CUMPLIMIENTO DE SENTENCIA VISTO La Sentencia de excepciones preliminares fondo reparaciones y costas en adelante la Sentencia dictada por la Corte Interamericana de Derechos Humanos en adelante la Corte la Corte Interamericana o el Tribunal el de junio de La Corte declar\u00f3 responsable internacionalmente a la Rep\u00fablica de Nicaragua en adelante el Estado o Nicaragua por la ", - "values": [ - "Corte Interamericana de Derechos Humanos" - ] - }, - { - "text": "RESOLUCI\u00d3N DE LA CORTE INTERAMERICANA DE DERECHOS HUMANOS DEL DE ENERO DE MEDIDAS PROVISIONALES SOLICITADAS POR LA COMISI\u00d3N INTERAMERICANA DE DERECHOS HUMANOS RESPECTO DE LA REP\u00daBLICA ARGENTINA CASO REGGIARDO TOLOSA La Corte Interamericana de Derechos Humanos integrada de la siguiente manera Sonia Picado Sotela Presidenta H\u00e9ctor FixZamudio Juez Alejandro Montiel Arg\u00fcello Juez Hern\u00e1n Salgado Pesantes Juez Asdr\u00fabal AguiarAranguren Juez presentes adem\u00e1s Manuel E. Ventura Robles Secretario Ana ", - "values": [ - "Corte Interamericana de Derechos Humanos" - ] - }, - { - "text": "RESOLUCI\u00d3N DE LA CORTE INTERAMERICANA DE DERECHOS HUMANOS DE DE SEPTIEMBRE DE CASO DE LOS HERMANOS G\u00d3MEZ PAQUIYAURI Vs. PER\u00da SUPERVISI\u00d3N DE CUMPLIMIENTO DE SENTENCIA VISTO La Sentencia de fondo reparaciones y costas emitida el de julio de en adelante la Sentencia por la Corte Interamericana de Derechos Humanos en adelante la Corte la Corte Interamericana o el Tribunal mediante la cual el Tribunal declar\u00f3 inter alia que el Estado viol\u00f3 el Derecho a la Vida consagrado en el art\u00edculo de la", - "values": [ - "Corte Interamericana de Derechos Humanos" - ] - }, - { - "text": "CORTE INTERAMERICANA DE DERECHOS HUMANOS CASO MALDONADO ORDO\u00d1EZ VS. GUATEMALA SENTENCIA DE DE MAYO DE Excepci\u00f3n Preliminar Fondo Reparaciones y Costas En el caso Maldonado Ordo\u00f1ez la Corte Interamericana de Derechos Humanos en adelante la Corte Interamericana la Corte o este Tribunal integrada por los siguientes Jueces Roberto F. Caldas Presidente Eduardo Ferrer MacGregor Poisot Vicepresidente Eduardo Vio Grossi Juez Humberto Antonio Sierra Porto Juez Elizabeth Odio Benito Juez Eugenio Ra\u00fal ", - "values": [ - "Corte Interamericana de Derechos Humanos" - ] - }, - { - "text": "RESOLUCI\u00d3N DE LA CORTE INTERAMERICANA DE DERECHOS HUMANOS DE DE JULIO DE SOLICITUD DE MEDIDAS PROVISIONALES RESPECTO DE LA REP\u00daBLICA BOLIVARIANA DE VENEZUELA CASO LUISIANA R\u00cdOS Y OTROS VISTOS La Resoluci\u00f3n dictada por la Corte Interamericana de Derechos Humanos en adelante la Corte o el Tribunal el de noviembre de mediante la cual orden\u00f3 a la Rep\u00fablica Bolivariana de Venezuela en adelante el Estado o Venezuela a solicitud de la Comisi\u00f3n Interamericana de Derechos Humanos en adelante la o ", - "values": [ - "Corte Interamericana de Derechos Humanos" - ] - }, - { - "text": "RESOLUCI\u00d3N DE LA CORTE INTERAMERICANA DE DERECHOS HUMANOS DE DE ENERO DE REINTEGRO AL FONDO DE ASISTENCIA LEGAL DE V\u00cdCTIMAS CASO V\u00c9LIZ FRANCO Y OTROS VS. GUATEMALA VISTO La Sentencia de excepciones preliminares fondo reparaciones y costas en adelante la Sentencia o el Fallo dictada por la Corte Interamericana de Derechos Humanos en adelante la Corte la Corte Interamericana o el Tribunal el de mayo de la cual fue notificada el de julio de En el punto dispositivo d\u00e9cimo cuarto de dicho ", - "values": [ - "Corte Interamericana de Derechos Humanos" - ] - }, - { - "text": "CORTE INTERAMERICANA DE DERECHOS HUMANOS CASO GARC\u00cdA CRUZ Y S\u00c1NCHEZ SILVESTRE VS. ESTADOS UNIDOS MEXICANOS SENTENCIA DE DE NOVIEMBRE DE FONDO REPARACIONES Y COSTAS En el caso Garc\u00eda Cruz y S\u00e1nchez Silvestre la Corte Interamericana de Derechos Humanos en adelante la Corte Interamericana la Corte o el Tribunal integrada por los siguientes jueces Diego Garc\u00edaSay\u00e1n Presidente Manuel E. Ventura Robles Vicepresidente Alberto P\u00e9rez P\u00e9rez Juez Eduardo Vio Grossi Juez Roberto F. Caldas Juez y Humberto", - "values": [ - "Corte Interamericana de Derechos Humanos" - ] - }, - { - "text": "RESOLUCI\u00d3N DE LA CORTE INTERAMERICANA DE DERECHOS HUMANOS DE DE SEPTIEMBREDE MEDIDAS PROVISIONALES RESPECTO DE LA REP\u00daBLICA DELECUADOR CASO GONZALES LLUY Y OTROS VISTO El escrito delrepresentante de de julio de y sus anexos mediante los cuales someti\u00f3 a la Corte Interamericana de Derechos Humanos en adelante la Corte Interamericana la Corte o este Tribunal una solicitud de medidas provisionales de conformidad con los art\u00edculos de la Convenci\u00f3n Americana sobre Derechos Humanos en adelante ", - "values": [ - "Corte Interamericana de Derechos Humanos" - ] - }, - { - "text": "RESOLUCI\u00d3N DE LA PRESIDENTA DE LA CORTE INTERAMERICANA DE DERECHOS HUMANOS DE DE AGOSTO DE SOLICITUD DE MEDIDAS PROVISIONALES PRESENTADA POR LA COMISI\u00d3N INTERAMERICANA DE DERECHOS HUMANOS RESPECTO DE HAIT\u00cd ASUNTO A. J. Y OTROS VISTO El escrito de la Comisi\u00f3n Interamericana de Derechos Humanos en adelante la Comisi\u00f3n Interamericana o la Comisi\u00f3n de de agosto de y sus anexos mediante los cuales someti\u00f3 a la Corte Interamericana de Derechos Humanos en adelante la Corte Interamericana la Corte", - "values": [ - "Corte Interamericana de Derechos Humanos" - ] - }, - { - "text": "INFORME N\u00ba PETICI\u00d3N ADMISIBILIDAD NARCISO BARRIOS Y OTROS VENEZUELA de febrero de I. RESUMEN El de marzo de la Comisi\u00f3n Interamericana de Derechos Humanos en adelante la Comisi\u00f3n o la CIDH recibi\u00f3 una petici\u00f3n presentada por el Sr. Luis Aguilera Secretario General de la Comisi\u00f3n de Derechos Humanos de Justicia y Paz del Estado de Aragua en adelante el peticionario en representaci\u00f3n del occiso Narciso Barrios y sus familiares Eloisa Barrios Elvira Barrios Justina Barrios Luis Barrios hoy ", - "values": [ - "Comisi\u00f3n Interamericana de Derechos Humanos" - ] - }, - { - "text": "RESOLUCI\u00d3N DE LA CORTE INTERAMERICANA DE DERECHOS HUMANOS DE DE SEPTIEMBRE DE CASO MEJ\u00cdA IDROVO VS. ECUADOR SUPERVISI\u00d3N DE CUMPLIMIENTO DE SENTENCIA VISTO La Sentencia de excepciones preliminares fondo reparaciones y costas en adelante la Sentencia dictada por la Corte Interamericana de Derechos Humanos en adelante la Corte o el Tribunal el de julio de La Resoluci\u00f3n de la Corte de de junio de en la cual declar\u00f3 que De conformidad con lo se\u00f1alado en los considerandos pertinentes de la ", - "values": [ - "Corte Interamericana de Derechos Humanos" - ] - }, - { - "text": "RESOLUCI\u00d3N DEL PRESIDENTE DE LA CORTE INTERAMERICANA DE DERECHOS HUMANOS EN EJERCICIO PARA EL PRESENTE CASO DE DE MAYO DE FONDO DE ASISTENCIA LEGAL DE V\u00cdCTIMAS CASO \u00c1NGEL ALBERTO DUQUE VS. COLOMBIA VISTO El escrito de de octubre de y su anexo mediante los cuales la Comisi\u00f3n Interamericana de Derechos Humanos en adelante tambi\u00e9n la Comisi\u00f3n Interamericana o la Comisi\u00f3n someti\u00f3 el caso \u00c1ngel Alberto Duque ante la Corte Interamericana de Derechos Humanos en adelante la Corte Interamericana ", - "values": [ - "Corte Interamericana de Derechos Humanos" - ] - }, - { - "text": "CORTE INTERAMERICANA DE DIREITOS HUMANOS CASO FORNER\u00d3N E FILHA VS. ARGENTINA SENTEN\u00c7A DE DE ABRIL DE M\u00e9rito Repara\u00e7\u00f5es e Custas No caso Forner\u00f3n e filha A Corte Interamericana de Direitos Humanos doravante denominada Interamericana a Corte ou o Tribunal integrada pelos seguintes Ju\u00edzes a Corte Diego Garc\u00edaSay\u00e1n Presidente Manuel E. Ventura Robles VicePresidente Margarette May Macaulay Ju\u00edza Rhadys Abreu Blondet Ju\u00edza Alberto P\u00e9rez P\u00e9rez Juiz e Eduardo Vio Grossi Juiz presentes ademais Pablo ", - "values": [ - "Corte Interamericana de Derechos Humanos" - ] - }, - { - "text": "RESOLUCI\u00d3N DE LA CORTE INTERAMERICANA DE DERECHOS HUMANOS DE DE NOVIEMBRE DE MEDIDAS PROVISIONALES RESPECTO DE LA REPUBLICA DE COLOMBIA CASO DE LA COMUNIDAD DE PAZ DE SAN JOS\u00c9 DE APARTAD\u00d3 VISTO La Resoluci\u00f3n del Presidente de la Corte Interamericana de Derechos Humanos en adelante la Corte Interamericana la Corte o el Tribunal de de octubre de mediante la cual requiri\u00f3 al Estado de Colombia en adelante el Estado o Colombia que adoptara sin dilaci\u00f3n cuantas medidas fueran necesarias para ", - "values": [ - "Corte Interamericana de Derechos Humanos" - ] - }, - { - "text": "Corte Interamericana de Derechos Humanos Caso Juan Humberto S\u00e1nchez Vs. Honduras Sentencia de de noviembre de Interpretaci\u00f3n de la Sentencia de Excepciones Preliminares Fondo Reparaciones y Costas En el caso Juan Humberto S\u00e1nchez la Corte Interamericana de Derechos Humanos en adelante la Corte Interamericana la Corte o el Tribunal integrada por los siguientes jueces Ant\u00f4nio A. Can\u00e7ado Trindade Presidente Sergio Garc\u00eda Ram\u00edrez Vicepresidente Hern\u00e1n Salgado Pesantes Juez M\u00e1ximo Pacheco G\u00f3mez ", - "values": [ - "Corte Interamericana de Derechos Humanos" - ] - }, - { - "text": "RESOLUCI\u00d3N DE LA CORTE INTERAMERICANA DE DERECHOS HUMANOS DE DE JULIO DE MEDIDAS PROVISIONALES ADOPTADAS POR LA CORTE INTERAMERICANA DE DERECHOS HUMANOS RESPECTO DE LA REP\u00daBLICA DE GUATEMALA CASO CARPIO NICOLLE Y OTROS VISTOS La Resoluci\u00f3n del Presidente de la Corte Interamericana de Derechos Humanos en adelante el Presidente de de junio de mediante la cual solicit\u00f3 al Estado inter alia que adoptara sin dilaci\u00f3n cuantas medidas fueran necesarias que aseguraran eficazmente la protecci\u00f3n ", - "values": [ - "Corte Interamericana de Derechos Humanos" - ] - }, - { - "text": "RESOLUCI\u00d3N DEL PRESIDENTE DE LA CORTE INTERAMERICANA DE DERECHOS HUMANOS DE DE MARZO DE CASO VALENCIA HINOJOSA Y OTRA VS. ECUADOR VISTO El escrito de sometimiento del caso y el Informe de Admisibilidad y Fondo de la Comisi\u00f3n Interamericana de Derechos Humanos en adelante la Comisi\u00f3n Interamericana o la Comisi\u00f3n el escrito de solicitudes argumentos y pruebas en adelante el escrito de solicitudes y argumentos de los representantes de las presuntas v\u00edctimas en adelante los representantes y el ", - "values": [ - "Corte Interamericana de Derechos Humanos" - ] - }, - { - "text": "RESOLUCI\u00d3N DE LA CORTE INTERAMERICANA DE DERECHOS HUMANOS DE DE NOVIEMBRE DE CASO BULACIO VS. ARGENTINA CUMPLIMIENTO DE SENTENCIA VISTOS La Sentencia de fondo reparaciones y costas dictada por la Corte Interamericana de Derechos Humanos en adelante la Corte la Corte Interamericana o el Tribunal el de septiembre de mediante la cual DECIDI\u00d3 admitir el reconocimiento de responsabilidad internacional efectuado por el Estado. aprobar el acuerdo en los t\u00e9rminos de la presente Sentencia sobre ", - "values": [ - "Corte Interamericana de Derechos Humanos" - ] - }, - { - "text": "RESOLUCI\u00d3N DE LA CORTE INTERAMERICANA DE DERECHOS HUMANOS DE DE MAYO DE MEDIDAS PROVISIONALES SOLICITADAS POR LA COMISI\u00d3N INTERAMERICANA DE DERECHOS HUMANOS RESPECTO DE LA REP\u00daBLICA DOMINICANA CASO DE HAITIANOS Y DOMINICANOS DE ORIGEN HAITIANO EN LA REP\u00daBLICA DOMINICANA VISTOS La Resoluci\u00f3n de la Corte Interamericana de Derechos Humanos en adelante la Corte Interamericana o la Corte de de agosto de en la que resolvi\u00f3 Requerir al Estado de la Rep\u00fablica Dominicana que adopte sin dilaci\u00f3n ", - "values": [ - "Corte Interamericana de Derechos Humanos" - ] - }, - { - "text": "RESOLUCI\u00d3N DE LA CORTE INTERAMERICANA DE DERECHOS HUMANOS DE DE AGOSTO DE MEDIDAS PROVISIONALES SOLICITADAS POR LA COMISI\u00d3N INTERAMERICANA DE DERECHOS HUMANOS RESPECTO DE LA REP\u00daBLICA DE PER\u00da CASO DEL TRIBUNAL CONSTITUCIONAL VISTOS El escrito de de abril de y sus anexos mediante el cual la se\u00f1ora Delia Revoredo Marsano de Mur en adelante la se\u00f1ora Revoredo someti\u00f3 a la Corte Interamericana de Derechos Humanos en adelante la Corte o la Corte Interamericana al amparo de los art\u00edculos de la ", - "values": [ - "Corte Interamericana de Derechos Humanos" - ] - }, - { - "text": "CORTE INTERAMERICANA DE DERECHOS HUMANOS CASO NOR\u00cdN CATRIM\u00c1N Y OTROS DIRIGENTES MIEMBROS Y ACTIVISTA DEL PUEBLO IND\u00cdGENA MAPUCHE VS. CHILE SENTENCIA DE DE MAYO DE FONDO REPARACIONES Y COSTAS En el caso Nor\u00edn Catrim\u00e1n y otros la Corte Interamericana de Derechos Humanos en adelante la Corte Interamericana la Corte o el Tribunal integrada por los siguientes jueces Humberto Antonio Sierra Porto Presidente Roberto F. Caldas Vicepresidente Manuel E. Ventura Robles Juez Diego Garc\u00edaSay\u00e1n Juez P\u00e9rez", - "values": [ - "Corte Interamericana de Derechos Humanos" - ] - }, - { - "text": "RESOLUCI\u00d3N DE LA CORTE INTERAMERICANA DE DERECHOS HUMANOS DE DE NOVIEMBRE DE CASO YATAMA VS. NICARAGUA SUPERVISI\u00d3N DE CUMPLIMIENTO DE SENTENCIA VISTOS La Sentencia de excepciones preliminares fondo reparaciones y costas en adelante la Sentencia dictada por la Corte Interamericana de Derechos Humanos en adelante la Corte la Corte Interamericana o el Tribunal el de junio de mediante la cual DECIDI\u00d3 Por unanimidad que Desestima las cinco excepciones preliminares interpuestas por el Estado de", - "values": [ - "Corte Interamericana de Derechos Humanos" - ] - }, - { - "text": "RESOLUCI\u00d3N DE LA CORTE INTERAMERICANA DE DERECHOS HUMANOS DE DE NOVIEMBRE DE MEDIDAS PROVISIONALES RESPECTO DE LA REPUBLICA DE COLOMBIA CASO DE LA COMUNIDAD DE PAZ DE SAN JOS\u00c9 DE APARTAD\u00d3 VISTO La Resoluci\u00f3n del Presidente de la Corte Interamericana de Derechos Humanos en adelante la Corte Interamericana la Corte o el Tribunal de de octubre de mediante la cual requiri\u00f3 al Estado de Colombia en adelante el Estado o Colombia que adoptara sin dilaci\u00f3n cuantas medidas fueran necesarias para ", - "values": [ - "Corte Interamericana de Derechos Humanos" - ] - }, - { - "text": "RESOLUCI\u00d3N DE LA PRESIDENTA DE LA CORTE INTERAMERICANA DE DERECHOS HUMANOS DE DE AGOSTO DE CASO MOLINA THEISSEN VS. GUATEMALA SUPERVISI\u00d3N DE CUMPLIMIENTO DE SENTENCIAS VISTO La Sentencia de fondo dictada por la Corte Interamericana de Derechos Humanos en adelante la Corte la Corte Interamericana o el Tribunal el de mayo de La Sentencia de reparaciones dictada por la Corte el de julio de mediante la cual dispuso que el Estado deb\u00eda localizar y hacer entrega de los restos mortales de ", - "values": [ - "Corte Interamericana de Derechos Humanos" - ] - }, - { - "text": "RESOLUCI\u00d3N DE LA CORTE INTERAMERICANA DE DERECHOS HUMANOS DE DE JUNIO DE MEDIDAS PROVISIONALES RESPECTO DE M\u00c9XICO ASUNTO ALVARADO REYES Y OTROS VISTO Las Resoluciones dictadas por la Corte Interamericana de Derechos Humanos en adelante la Corte Interamericana la Corte o el Tribunal el de mayo y de noviembre de de mayo de y el de noviembre de mediante las cuales a solicitud de la Comisi\u00f3n el Tribual orden\u00f3 medidas provisionales y supervis\u00f3 su ejecuci\u00f3n en el presente asunto. En su la", - "values": [ - "Corte Interamericana de Derechos Humanos" - ] - }, - { - "text": "Corte Interamericana de Derechos Humanos Caso Neira Alegr\u00eda y otros Vs. Per\u00fa Sentencia de de septiembre de Reparaciones y Costas En el caso Neira Alegr\u00eda y otros la Corte Interamericana de Derechos Humanos integrada por los siguientes jueces H\u00e9ctor FixZamudio Presidente Hern\u00e1n Salgado Pesantes Vicepresidente Alejandro Montiel Arg\u00fcello Juez Alirio Abreu Burelli Juez Ant\u00f4nio A. Can\u00e7ado Trindade Juez Jorge E. Orihuela I Juez ad hoc presentes adem\u00e1s Manuel E. Ventura Robles Secretario V\u00edctor Ml. ", - "values": [ - "Corte Interamericana de Derechos Humanos" - ] - }, - { - "text": "RESOLUCI\u00d3N DE LA CORTE INTERAMERICANA DE DERECHOS HUMANOS DE DE NOVIEMBRE DE CASO BLAKE CUMPLIMIENTO DE SENTENCIA VISTOS La sentencia de fondo dictada en el Caso Blake vs. Guatemala por la Corte Interamericana de Derechos Humanos en adelante la Corte la Corte Interamericana o el Tribunal el de enero de en la que dispuso en los puntos resolutivos tercero y cuarto que el Estado de Guatemala est\u00e1 obligado a poner todos los medios a su alcance para investigar los hechos denunciados y a los ", - "values": [ - "Corte Interamericana de Derechos Humanos" - ] - }, - { - "text": "RESOLUCI\u00d3N DE LA CORTE INTERAMERICANA DE DERECHOS HUMANOS DE DE ENERO DE MEDIDAS PROVISIONALES CASO PANIAGUA MORALES Y OTROS VISTOS El proceso en el caso Paniagua Morales y otros en tr\u00e1mite ante la Corte Interamericana de Derechos Humanos en adelante la Corte y la transcripci\u00f3n de la declaraci\u00f3n rendida por el se\u00f1or Manuel de Jes\u00fas Gonz\u00e1lez Chinchilla durante la audiencia p\u00fablica que sobre reparaciones del caso citado celebr\u00f3 la Corte en su sede los d\u00edas y de agosto de El escrito de la ", - "values": [ - "Corte Interamericana de Derechos Humanos" - ] - }, - { - "text": "RESOLUCI\u00d3N DEL PRESIDENTE DE LA CORTE INTERAMERICANA DE DERECHOS HUMANOS DE DE JUNIO DE FONDO DE ASISTENCIA LEGAL DE V\u00cdCTIMAS CASO NESTOR JOS\u00c9 Y LUIS UZC\u00c1TEGUI Y OTROS VS. VENEZUELA VISTO El escrito de de noviembre de y sus anexos mediante los cuales la Comisi\u00f3n Interamericana de Derechos Humanos en adelante la Comisi\u00f3n Interamericana o la Comisi\u00f3n someti\u00f3 un caso ante la Corte Interamericana de Derechos Humanos en adelante la Corte Interamericana la Corte o el Tribunal. El escrito de de", - "values": [ - "Corte Interamericana de Derechos Humanos" - ] - }, - { - "text": "RESOLUCI\u00d3N DE LA CORTE INTERAMERICANA DE DERECHOS HUMANOS DE DE SEPTIEMBRE DE MEDIDAS PROVISIONALES RESPECTO DE VENEZUELA ASUNTOS DE DETERMINADOS CENTROS PENITENCIARIOS DE VENEZUELA INTERNADO JUDICIAL CAPITAL EL RODEO I Y EL RODEO II VISTO La Resoluci\u00f3n de la Corte Interamericana de Derechos Humanos en adelante la Corte Interamericana la Corte o el Tribunal de de febrero de en el asunto del Internado Judicial Capital El Rodeo I y El Rodeo II mediante la cual resolvi\u00f3 inter alia Requerir ", - "values": [ - "Corte Interamericana de Derechos Humanos" - ] - }, - { - "text": "RESOLUCI\u00d3N DE LA CORTE INTERAMERICANA DE DERECHOS HUMANOS DE DE FEBRERO DE CASO COMUNIDAD IND\u00cdGENA SAWHOYAMAXA VS. PARAGUAY SUPERVISI\u00d3N DE CUMPLIMIENTO DE SENTENCIA VISTOS La Sentencia de fondo reparaciones y costas dictada en el presente caso por la Corte Interamericana de Derechos Humanos en adelante la Corte la Corte Interamericana o el Tribunal el de marzo de mediante la cual por unanimidad DECLAR\u00d3 QUE el Estado viol\u00f3 los derechos a las Garant\u00edas Judiciales y a la Protecci\u00f3n Judicial ", - "values": [ - "Corte Interamericana de Derechos Humanos" - ] - }, - { - "text": "RESOLUCI\u00d3N DEL PRESIDENTE DE LA CORTE INTERAMERICANA DE DERECHOS HUMANOS DE DE ABRIL DE CASO ARG\u00dcELLES Y OTROS VS. ARGENTINA VISTO El escrito de sometimiento del caso contra el Estado de Argentina en adelante el Estado o Argentina presentado el de mayo de por la Comisi\u00f3n Interamericana de Derechos Humanos en adelante tambi\u00e9n la Comisi\u00f3n Interamericana o la Comisi\u00f3n ante la Corte Interamericana de Derechos Humanos en adelante tambi\u00e9n la Corte Interamericana la Corte o el Tribunal mediante ", - "values": [ - "Corte Interamericana de Derechos Humanos" - ] - }, - { - "text": "Resoluci\u00f3n de la Corte Interamericana De Derechos Humanos De de febrero de Caso Instituto De Reeducaci\u00f3n Del Menor Vs. Paraguay Supervisi\u00f3n de Cumplimiento de Sentencia VISTO La Sentencia dictada por la Corte Interamericana de Derechos Humanos en adelante la Corte la Corte Interamericana o el Tribunal el de septiembre de La Resoluci\u00f3n de supervisi\u00f3n del cumplimiento de la Sentencia que emiti\u00f3 la Corte el de julio de en la cual el Tribunal DECLAR\u00d3 Que de conformidad con lo se\u00f1alado en ", - "values": [ - "Corte Interamericana de Derechos Humanos" - ] - }, - { - "text": "VOTO RAZONADO DEL JUEZ A. A. CAN\u00c7ADO TRINDADE Concuerdo con la decisi\u00f3n de la Corte. Entiendo que en esta etapa deb\u00eda haberse agregado una aclaraci\u00f3n expresa en el sentido de que la facultad que la Corte se reserv\u00f3 en el punto resolutivo de la sentencia se extiende tambi\u00e9n a examinar y decidir sobre la solicitud hecha por la Comisi\u00f3n Interamericana de Derechos Humanos numeral acerca de la incompatibilidad o no de la vigencia de los incisos y del art\u00edculo del C\u00f3digo de Justicia Militar de ", - "values": [ - "Corte Interamericana de Derechos Humanos" - ] - }, - { - "text": "Corte Interamericana de Derechos Humanos Caso Las Palmeras Vs. Colombia Sentencia de noviembre de Reparaciones y Costas En el caso Las Palmeras la Corte Interamericana de Derechos Humanos en adelante la Corte la Corte Interamericana o el Tribunal integrada por los siguientes jueces Ant\u00f4nio A. Can\u00e7ado Trindade Presidente Alirio Abreu Burelli Vicepresidente M\u00e1ximo Pacheco G\u00f3mez Juez Hern\u00e1n Salgado Pesantes Juez Oliver Jackman Juez Sergio Garc\u00eda Ram\u00edrez Juez y Julio A. Barberis Juez ad hoc E.", - "values": [ - "Corte Interamericana de Derechos Humanos" - ] - }, - { - "text": "RESOLUCI\u00d3N DEL PRESIDENTE DE LA CORTE INTERAMERICANA DE DERECHOS HUMANOS DEL DE NOVIEMBRE DE MEDIDAS PROVISIONALES SOLICITADAS POR LA COMISI\u00d3N INTERAMERICANA DE DERECHOS HUMANOS RESPECTO DE LA REP\u00daBLICA ARGENTINA CASO REGGIARDO TOLOSA VISTO El escrito del de octubre de recibido v\u00eda facs\u00edmil en la Secretar\u00eda de la Corte el de noviembre siguiente mediante el cual la Comisi\u00f3n Interamericana de Derechos Humanos en adelante la Comisi\u00f3n o la Comisi\u00f3n Interamericana somete a la Corte de en ", - "values": [ - "Corte Interamericana de Derechos Humanos" - ] - }, - { - "text": "RESOLUCI\u00d3N DE LA PRESIDENTA DE LA CORTE INTERAMERICANA DE DERECHOS HUMANOS DE DE AGOSTO DE CASO TRUJILLO OROZA VS. BOLIVIA SUPERVISI\u00d3N DE CUMPLIMIENTO DE SENTENCIA VISTOS La Sentencia de fondo dictada por la Corte Interamericana de Derechos Humanos en adelante la Corte la Corte Interamericana o el Tribunal el de enero de La Sentencia de reparaciones y costas dictada por la Corte Interamericana el de febrero de Las Resoluciones de la Corte de de noviembre de y de septiembre de La ", - "values": [ - "Corte Interamericana de Derechos Humanos" - ] - }, - { - "text": "RESOLUCI\u00d3N DE LA CORTE INTERAMERICANA DE DERECHOS HUMANOS DE DE JUNIO DE MEDIDAS PROVISIONALES RESPECTO DE LA REP\u00daBLICA DE COLOMBIA CASO COMERCIANTES Vs. COLOMBIA VISTO La Sentencia de fondo reparaciones y costas dictada por la Corte Interamericana de Derechos Humanos en adelante la Corte Interamericana la Corte o el Tribunal el de julio de Las Resoluciones dictadas por el Presidente de la Corte el de julio de de abril de y de febrero de as\u00ed como las resoluciones de la Corte de ", - "values": [ - "Corte Interamericana de Derechos Humanos" - ] - }, - { - "text": "RESOLU\u00c7\u00c3O DA CORTE INTERAMERICANA DE DIREITOS HUMANOS DE DE SETEMBRO DE MEDIDAS PROVIS\u00d3RIAS A RESPEITO DA REP\u00daBLICA FEDERATIVA DO BRASIL ASSUNTO DA UNIDADE DE INTERNA\u00c7\u00c3O SOCIOEDUCATIVA VISTO A Resolu\u00e7\u00e3o da Corte Interamericana de Direitos Humanos doravante a Corte Interamericana a Corte ou o Tribunal de de fevereiro de mediante a qual requereu \u00e0 Rep\u00fablica Federativa do Brasil doravante o Estado ou Brasil adotar de forma imediata as medidas que fossem necess\u00e1rias para proteger eficazmente ", - "values": [ - "Corte Interamericana de Derechos Humanos" - ] - }, - { - "text": "INFORME N PETICI\u00d3N ADMISIBILIDAD MARCEL CLAUDE REYES SEBASTI\u00c1N COX URREJOLA Y ARTURO LONGTON GUERRERO CHILE de octubre de I. RESUMEN El de diciembre de un grupo integrado por ONG FORJA Fundaci\u00f3n Terram la Cl\u00ednica Jur\u00eddica de Inter\u00e9s P\u00fablico de la Universidad Diego Portales y Corporaci\u00f3n la Morada organizaciones chilenas el Instituto de Defensa Legal del Per\u00fa entidad peruana Fundaci\u00f3n Poder Ciudadano y la Asociaci\u00f3n de Derechos Civiles entidades argentinas y los diputados chilenos Baldo ", - "values": [ - "Comisi\u00f3n Interamericana de Derechos Humanos" - ] - }, - { - "text": "RESOLUCI\u00d3N DE LA CORTE INTERAMERICANA DE DERECHOS HUMANOS DE DE AGOSTO DE CASO MONTERO ARANGUREN Y OTROS RET\u00c9N DE CATIA VS. VENEZUELA SUPERVISI\u00d3N DE CUMPLIMIENTO DE SENTENCIA VISTO La Sentencia de excepci\u00f3n preliminar fondo reparaciones y costas en adelante la Sentencia dictada por la Corte Interamericana de Derechos Humanos en adelante la Corte Interamericana la Corte o el Tribunal el de julio de La Resoluci\u00f3n de supervisi\u00f3n de cumplimiento de la Sentencia emitida por el Tribunal el de", - "values": [ - "Corte Interamericana de Derechos Humanos" - ] - }, - { - "text": "INFORME No. PETICI\u00d3N ADMISIBILIDAD MAR\u00cdA IN\u00c9S CHINCHILLA SANDOVAL GUATEMALA de noviembre de I. RESUMEN El de marzo de la Comisi\u00f3n Interamericana de Derechos Humanos en adelante la Comisi\u00f3n la Comisi\u00f3n Interamericana o la CIDH recibi\u00f3 una denuncia presentada por el Instituto de Estudios Comparados en Ciencias Penales de Guatemala ICCPG representado por Alejandro Rodr\u00edguez Barillas en adelante los peticionarios en la cual se alega la responsabilidad internacional del Estado de Guatemala en", - "values": [ - "Comisi\u00f3n Interamericana de Derechos Humanos" - ] - }, - { - "text": "RESOLUCI\u00d3N DEL PRESIDENTE DE LA CORTE INTERAMERICANA DE DERECHOS HUMANOS DE DE ABRIL DE FONDO DE ASISTENCIA LEGAL DE V\u00cdCTIMAS CASO TORRES Y OTROS VS. ARGENTINA VISTO El escrito de de abril de y sus anexos mediante los cuales la Comisi\u00f3n Interamericana de Derechos Humanos en adelante la Comisi\u00f3n Interamericana o la Comisi\u00f3n present\u00f3 ante la Corte Interamericana de Derechos Humanos en adelante la Corte Interamericana la Corte o el Tribunal una demanda en contra de la Rep\u00fablica Argentina en ", - "values": [ - "Corte Interamericana de Derechos Humanos" - ] - }, - { - "text": "Resoluci\u00f3n del Presidente de la Corte Interamericana de Derechos Humanos De de octubre de Caso de la Panel Blanca Caso Paniagua Morales y otros Vs. Guatemala Supervisi\u00f3n de Cumplimiento de Sentencia VISTOS La Sentencia de fondo dictada por la Corte Interamericana de Derechos Humanos en adelante la Corte la Corte Interamericana o el Tribunal el de marzo de La Sentencia sobre reparaciones dictada en el presente caso por la Corte Interamericana el de mayo de La Resoluci\u00f3n emitida por la ", - "values": [ - "Corte Interamericana de Derechos Humanos" - ] - }, - { - "text": "RESOLUCI\u00d3N DE LA CORTE INTERAMERICANA DE DERECHOS HUMANOS DE DE JULIO DE CASO G\u00d3MEZ PALOMINO VS. PER\u00da SUPERVISI\u00d3N DE CUMPLIMIENTO DE SENTENCIA VISTO La Sentencia de fondo reparaciones y costas en adelante la Sentencia dictada por la Corte Interamericana de Derechos Humanos en adelante la Corte la Corte Interamericana o el Tribunal el de noviembre de alia La Resoluci\u00f3n de la Corte de de octubre de mediante la cual declar\u00f3 inter Que el Estado ha incumplido con su obligaci\u00f3n de informar ", - "values": [ - "Corte Interamericana de Derechos Humanos" - ] - }, - { - "text": "RESOLUCION DEL PRESIDENTE DE LA CORTE INTERAMERICANA DE DERECHOS HUMANOS DE DE MARZO DE CASO VEL\u00c1SQUEZ PAIZ Y OTROS VS. GUATEMALA VISTO El escrito de sometimiento del caso y el Informe de Fondo de la Comisi\u00f3n Interamericana de Derechos Humanos en adelante la Comisi\u00f3n Interamericana o la Comisi\u00f3n el escrito de solicitudes argumentos y pruebas en adelante el escrito de solicitudes y argumentos de los representantes de las presuntas v\u00edctimas en adelante los representantes y el escrito de al ", - "values": [ - "Corte Interamericana de Derechos Humanos" - ] - }, - { - "text": "RESOLUCI\u00d3N DE LA CORTE INTERAMERICANA DE DERECHOS HUMANOS DE DE AGOSTO DE CASO SERVELL\u00d3N GARC\u00cdA Y OTROS VS. HONDURAS SUPERVISI\u00d3N DE CUMPLIMIENTO DE SENTENCIA VISTOS La Sentencia de Fondo Reparaciones y Costas emitida el de septiembre de en adelante la Sentencia por la Corte Interamericana de Derechos Humanos en adelante la Corte la Corte Interamericana o el Tribunal. La Resoluci\u00f3n de Supervisi\u00f3n de Cumplimiento de la Sentencia de la Corte Interamericana de de enero de mediante la cual ", - "values": [ - "Corte Interamericana de Derechos Humanos" - ] - }, - { - "text": "VOTO RAZONADO DEL JUEZ AA. CAN\u00c7ADO TRINDADE El presente caso de los Ni\u00f1os de la Calle es verdaderamente paradigm\u00e1tico en la medida en que adem\u00e1s de retratar una situaci\u00f3n real del cotidiano de Am\u00e9rica Latina demuestra que la conciencia humana ha alcanzado un grado de evoluci\u00f3n que ha tornado posible hacer justicia mediante la protecci\u00f3n de los derechos de los marginados o excluidos al otorgarse a \u00e9stos al igual que a todo ser humano acceso directo a una instancia judicial internacional para ", - "values": [ - "Corte Interamericana de Derechos Humanos" - ] - }, - { - "text": "RESOLUCI\u00d3N DE LA CORTE INTERAMERICANA DE DERECHOS HUMANOS DE DE MAYO DE CASO CONTRERAS Y OTROS VS. EL SALVADOR SUPERVISI\u00d3N DE CUMPLIMIENTO DE SENTENCIA VISTO La Sentencia de fondo reparaciones y costas emitida el de agosto de en adelante la Sentencia por la Corte Interamericana de Derechos Humanos en adelante la Corte Interamericana la Corte o el Tribunal mediante la cual acept\u00f3 el reconocimiento de responsabilidad internacional efectuado por la Rep\u00fablica de El Salvador en adelante el o ", - "values": [ - "Corte Interamericana de Derechos Humanos" - ] - }, - { - "text": "ORDER OF THE INTERAMERICAN COURT OF HUMAN RIGHTS OF AUGUST PROVISIONAL MEASURES ORDERED BY THE INTERAMERICAN COURT OF HUMAN RIGHTS IN THE MATTER OF THE REPUBLIC OF TRINIDAD AND TOBAGO JAMES ET AL. CASES HAVING SEEN The Order of the InterAmerican Court of Human Rights hereinafter the Court or the InterAmerican Court of May in which it decided With respect to the Provisional Measures adopted by the Court on August a. To maintain the Provisional Measures ordered by the InterAmerican Court ", - "values": [ - "Corte Interamericana de Derechos Humanos" - ] - }, - { - "text": "RESOLUCI\u00d3N DE LA CORTE INTERAMERICANA DE DERECHOS HUMANOS DE DE FEBRERO DE MEDIDAS PROVISIONALES RESPECTO DE LA REP\u00daBLICA DE GUATEMALA CASO B\u00c1MACA VEL\u00c1SQUEZ VISTOS La comunicaci\u00f3n del Centro por la Justicia y el Derecho Internacional CEJIL en adelante los representantes de las v\u00edctimas o los representantes de de septiembre de mediante la cual informaron sobre la situaci\u00f3n de riesgo y temor que vive parte de la familia del se\u00f1or Efra\u00edn B\u00e1maca en relaci\u00f3n con el cumplimiento de sentencia en ", - "values": [ - "Corte Interamericana de Derechos Humanos" - ] - }, - { - "text": "INFORME No. PETICI\u00d3N ADMISIBILIDAD RA\u00daL JOS\u00c9 D\u00cdAZ PE\u00d1A VENEZUELA de marzo de I. RESUMEN El de octubre de la Comisi\u00f3n Interamericana de Derechos Humanos en adelante la Comisi\u00f3n recibi\u00f3 una petici\u00f3n presentada por Patricia Andrade de la organizaci\u00f3n Venezuela Awareness Foundation en adelante la peticionaria en la cual se alega la responsabilidad de agentes de la Rep\u00fablica Bolivariana de Venezuela en adelante el Estado el Estado venezolano o Venezuela por la presunta detenci\u00f3n ilegal de ", - "values": [ - "Comisi\u00f3n Interamericana de Derechos Humanos" - ] - }, - { - "text": "Resoluci\u00f3n de la Presidenta de la Corte Interamericana de Derechos Humanos de de diciembre de Convocatoria a Audiencia P\u00fablica Medidas Provisionales Respecto de la Rep\u00fablica de Colombia Asunto Giraldo Cardona y otros Visto La Resoluci\u00f3n del Presidente de la Corte Interamericana de Derechos Humanos en adelante la Corte la Corte Interamericana o el Tribunal de de octubre de y las Resoluciones de la Corte de de febrero y de abril de de junio y de noviembre de de septiembre de de de ", - "values": [ - "Corte Interamericana de Derechos Humanos" - ] - }, - { - "text": "Resoluci\u00f3n de la Corte Interamericana de Derechos Humanos de de noviembre de Medidas Provisionales respecto del Estado de El Salvador A favor de Adri\u00e1n Mel\u00e9ndez Quijano y otros VISTOS La Resoluci\u00f3n de la Corte Interamericana de Derechos Humanos en adelante la Corte Interamericana la Corte o el Tribunal de de mayo de mediante la cual inter alia orden\u00f3 Ratificar la Resoluci\u00f3n del Presidente de la Corte Interamericana de Derechos Humanos de de marzo de Requerir al Estado que mantenga las ", - "values": [ - "Corte Interamericana de Derechos Humanos" - ] - }, - { - "text": "RESOLUCI\u00d3N DE LA CORTE INTERAMERICANA DE DERECHOS HUMANOS DE DE FEBRERO DE CASO CESTI HURTADO VS. PER\u00da SUPERVISI\u00d3N DE CUMPLIMIENTO DE SENTENCIA VISTOS La Sentencia de fondo emitida por la Corte Interamericana de Derechos Humanos en adelante la Corte la Corte Interamericana o el Tribunal el de septiembre de La Sentencia de Interpretaci\u00f3n de la Sentencia de fondo dictada por la Corte el de enero de La Sentencia de reparaciones emitida por el Tribunal el de mayo de La Sentencia de de ", - "values": [ - "Corte Interamericana de Derechos Humanos" - ] - }, - { - "text": "RESOLUCI\u00d3N DEL PRESIDENTE DE LA CORTE INTERAMERICANA DE DERECHOS HUMANOS DE FEBRERO DE SUPERVISI\u00d3N DE CUMPLIMIENTO DE LAS MEDIDAS DE REPARACI\u00d3N SOBRE ATENCI\u00d3N M\u00c9DICA Y PSICOL\u00d3GICA ORDENADAS EN NUEVE CASOS COLOMBIANOS CONVOCATORIA DE AUDIENCIA PRIVADA VISTO La resoluci\u00f3n de convocatoria de audiencia en el marco de la supervisi\u00f3n de cumplimiento emitida por la Corte Interamericana de Derechos Humanos en adelante la Corte la Corte Interamericana o el Tribunal el de abril de en relaci\u00f3n con ", - "values": [ - "Corte Interamericana de Derechos Humanos" - ] - }, - { - "text": "RESOLUCI\u00d3N DE LA CORTE INTERAMERICANA DE DERECHOS HUMANOS DE DE OCTUBRE DE CASO VERA VERA Y OTRA VS. ECUADOR SUPERVISI\u00d3N DE CUMPLIMIENTO DE SENTENCIA VISTO La Sentencia de excepci\u00f3n preliminar fondo reparaciones y costas en adelante la Sentencia dictada por la Corte Interamericana de Derechos Humanos en adelante la Corte Interamericana la Corte o el Tribunal el de mayo de que La Resoluci\u00f3n de la Corte de de febrero de mediante la cual declar\u00f3 De conformidad con lo se\u00f1alado en los de ", - "values": [ - "Corte Interamericana de Derechos Humanos" - ] - }, - { - "text": "RESOLUCI\u00d3N DE LA CORTE INTERAMERICANA DE DERECHOS HUMANOS DE DE NOVIEMBRE DE CASOS R\u00cdOS Y OTROS PEROZO Y OTROS Y REVER\u00d3N TRUJILLO VS. VENEZUELA SUPERVISI\u00d3N DE CUMPLIMIENTO DE SENTENCIAS VISTO Las Sentencias emitidas por la Corte Interamericana de Derechos Humanos en adelante la Corte o el Tribunal el de enero y el de junio de en los siguientes tres casos contra la Rep\u00fablica Bolivariana de Venezuela en adelante el Estado o Venezuela i R\u00edos y otros ii Perozo y otros iii Rever\u00f3n Trujillo", - "values": [ - "Corte Interamericana de Derechos Humanos" - ] - }, - { - "text": "VOTO CONCURRENTE DEL JUEZ EDUARDO VIO GROSSI CASO L\u00d3PEZ MENDOZA VS. VENEZUELA SENTENCIA DE \u00ba DE SEPTIEMBRE DE FONDO REPARACIONES Y COSTAS Introducci\u00f3n. Emito el presente voto concurrente con lo resuelto por la Sentencia indicada en el t\u00edtulo en adelante la Sentencia y en particular en el Declarativo N y en los Dispositivos Ns y todos de sus Puntos Resolutivos a fin de resaltar primeramente que as\u00ed ella pone en evidencia que de su simple lectura el art\u00edculo de la Convenci\u00f3n Americana de ", - "values": [ - "Corte Interamericana de Derechos Humanos" - ] - }, - { - "text": "RESOLUCI\u00d3N DEL PRESIDENTE DE LA CORTE INTERAMERICANA DE DERECHOS HUMANOS DE DE AGOSTO DE CASO MENDOZA Y OTROS VS. ARGENTINA VISTO El escrito de sometimiento del caso presentado por la Comisi\u00f3n Interamericana de Derechos Humanos en adelante la Comisi\u00f3n Interamericana o la Comisi\u00f3n ante la Corte Interamericana de Derechos Humanos en adelante la Corte Interamericana la Corte o el Tribunal el de junio de mediante el cual ofreci\u00f3 tres dict\u00e1menes periciales e indic\u00f3 sus objetos pero solo a la ", - "values": [ - "Corte Interamericana de Derechos Humanos" - ] - }, - { - "text": "RESOLUCI\u00d3N DE LA CORTE INTERAMERICANA DE DERECHOS HUMANOS DE DE MAYO DE MEDIDAS PROVISIONALES SOLICITADAS POR LA COMISI\u00d3N INTERAMERICANA DE DERECHOS HUMANOS RESPECTO DE LA REP\u00daBLICA DE PANAM\u00c1 CUATRO COMUNIDADES IND\u00cdGENAS NG\u00d6BE Y SUS MIEMBROS VISTO El escrito de la Comisi\u00f3n Interamericana de Derechos Humanos en adelante la Comisi\u00f3n o la Comisi\u00f3n Interamericana de de enero de mediante el cual someti\u00f3 a la Corte Interamericana de Derechos Humanos en adelante la Corte la Corte Interamericana o", - "values": [ - "Corte Interamericana de Derechos Humanos" - ] - }, - { - "text": "VOTO CONCURRENTE DEL JUEZ HUMBERTO ANTONIO SIERRA PORTO A LA SENTENCIA DE DE DICIEMBRE DE DE LA CORTE INTERAMERICANA DE DERECHOS HUMANOS EN EL CASO ANDRADE SALM\u00d3N VS. BOLIVIA I. Objeto del presente voto Concurro con la totalidad de los argumentos y de las conclusiones de la Corte Interamericana de Derechos Humanos en adelante tambi\u00e9n la Corte en la presente sentencia. Sin embargo considero relevante realizar algunas reflexiones adicionales sobre dos cuestiones en particular. Primero sobre ", - "values": [ - "Corte Interamericana de Derechos Humanos" - ] - }, - { - "text": "Resoluci\u00f3n del Presidente de la Corte Interamericana de Derechos Humanos De de diciembre de Caso Ricardo Canese Vs. Paraguay Supervisi\u00f3n de Cumplimiento de Sentencia VISTO La Sentencia de fondo reparaciones y costas en adelante la Sentencia emitida en el presente caso por la Corte Interamericana de Derechos Humanos en adelante la Corte la Corte Interamericana o el Tribunal el de agosto de La Resoluci\u00f3n emitida por la Corte Interamericana el de septiembre de mediante la cual declar\u00f3 Que", - "values": [ - "Corte Interamericana de Derechos Humanos" - ] - }, - { - "text": "VOTO RAZONADO DEL JUEZ AA. CAN\u00c7ADO TRINDADE Voto a favor de la presente Sentencia de reparaciones que viene de adoptar la Corte Interamericana de Derechos Humanos en el caso B\u00e1maca Vel\u00e1squez versus Guatemala que considero un avance m\u00e1s en su reciente construcci\u00f3n jurisprudencial. Las cuestiones trascendentales examinadas por la Corte me suscitan algunas reflexiones que me veo en la obligaci\u00f3n de consignar en este Voto Razonado como fundamento de mi posici\u00f3n al respecto. Es significativo que el", - "values": [ - "Corte Interamericana de Derechos Humanos" - ] - }, - { - "text": "INFORME N\u00ba PETICI\u00d3N ADMISIBILIDAD MIGUEL CAMBA CAMPOS Y OTROS VOCALES DEL TRIBUNAL CONSTITUCIONAL ECUADOR de febrero de I. RESUMEN El de febrero de la Comisi\u00f3n Interamericana de Derechos Humanos en adelante la Comisi\u00f3n Interamericana o la CIDH recibi\u00f3 una petici\u00f3n presentada por Miguel Camba Campos Oswaldo Cevallos Bueno Enrique Herrer\u00eda Bonnet Manuel Jaramillo C\u00f3rdova Jaime Nogales Izureta Luis Rojas Baja\u00f1a Mauro Ter\u00e1n Cevallos y Sim\u00f3n Zabala Guzm\u00e1n ex vocales del Tribunal de Ecuador ", - "values": [ - "Comisi\u00f3n Interamericana de Derechos Humanos" - ] - }, - { - "text": "RESOLUCI\u00d3N DEL PRESIDENTE DE LA CORTE INTERAMERICANA DE DERECHOS HUMANOS DE DE MAYO DE SOLICITUD DE MEDIDAS PROVISIONALES CASO WONG HO WING VS. PER\u00da VISTO La Sentencia de excepci\u00f3n preliminar fondo reparaciones y costas en adelante la Sentencia dictada por la Corte Interamericana de Derechos Humanos en adelante la Corte la Corte Interamericana o este Tribunal el de junio de La Corte declar\u00f3 que no se hab\u00eda acreditado que para la fecha de emisi\u00f3n de la Sentencia existiera un riesgo real y ", - "values": [ - "Corte Interamericana de Derechos Humanos" - ] - }, - { - "text": "INFORME N PETICI\u00d3N ADMISIBILIDAD VALDEMIR QUISPIALAYA VILCAPOMA PER\u00da de febrero de I. RESUMEN Mediante petici\u00f3n presentada a la Comisi\u00f3n Interamericana de Derechos Humanos en adelante Comisi\u00f3n Comisi\u00f3n Interamericana o CIDH de fecha de febrero de por la Comisi\u00f3n de Derechos Humanos COMISEDH en adelante la peticionaria se denunci\u00f3 que el Estado del Per\u00fa en adelante Per\u00fa el Estado o el Estado peruano viol\u00f3 en perjuicio de Valdemir Quispialaya Vilcapoma en adelante la v\u00edctima ciertos en ", - "values": [ - "Comisi\u00f3n Interamericana de Derechos Humanos" - ] - }, - { - "text": "RESOLUCI\u00d3N DEL PRESIDENTE DE LA CORTE INTERAMERICANA DE DERECHOS HUMANOS DE DE SEPTIEMBRE DE CASO GELMAN VS. URUGUAY VISTO La Resoluci\u00f3n dictada por el Presidente de la Corte Interamericana de Derechos Humanos en adelante Corte Corte Interamericana o Tribunal el de septiembre de en el presente caso mediante la cual resolvi\u00f3 inter alia Convocar a la Comisi\u00f3n Interamericana a los representantes y al Estado a una audiencia p\u00fablica que se celebrar\u00e1 en el Centro de Convenciones Eugenio Espejo ", - "values": [ - "Corte Interamericana de Derechos Humanos" - ] - }, - { - "text": "INFORME N PETICI\u00d3N ADMISIBILIDAD JUAN GARC\u00cdA CRUZ Y SANTIAGO S\u00c1NCHEZ SILVESTRE M\u00c9XICO de octubre de I. RESUMEN El de mayo de la Comisi\u00f3n Interamericana de Derechos Humanos la Comisi\u00f3n Interamericana o la CIDH recibi\u00f3 una denuncia presentada por Servicios Legalese Investigaci\u00f3n y Estudios Jur\u00eddicos y el Centro por la Justicia y el Derecho InternacionalSLIEJ y CEJIL en adelante conjuntamente los peticionarios en la cual se alega la responsabilidad internacional de los Estados Unidos el ", - "values": [ - "Comisi\u00f3n Interamericana de Derechos Humanos" - ] - }, - { - "text": "RESOLUCI\u00d3N DE LA CORTE INTERAMERICANA DE DERECHOS HUMANOS DE DE MAYO DE MEDIDAS PROVISIONALES EL SALVADOR RESPECTO DE A FAVOR DE ADRI\u00c1N MEL\u00c9NDEZ QUIJANO Y OTROS Vistos La solicitud de la Comisi\u00f3n Interamericana de Derechos Humanos en adelante la Comisi\u00f3n o la Comisi\u00f3n Interamericana de de marzo de y sus anexos mediante los cuales someti\u00f3 a la Corte Interamericana de Derechos Humanos en adelante la Corte la Corte Interamericana o el Tribunal una solicitud de medidas provisionales de con ", - "values": [ - "Corte Interamericana de Derechos Humanos" - ] - }, - { - "text": "RESOLUCI\u00d3N DE LA CORTE INTERAMERICANA DE DERECHOS HUMANOS DE DE SEPTIEMBRE DE MEDIDAS PROVISIONALES ADOPTADAS POR LA CORTE INTERAMERICANA DE DERECHOS HUMANOS RESPECTO DE GUATEMALA CASO CARPIO NICOLLE VISTOS La resoluci\u00f3n del Presidente de la Corte Interamericana de Derechos Humanos en adelante la Corte o el Tribunal de de junio de en la cual decidi\u00f3 Solicitar al Gobierno de la Rep\u00fablica de Guatemala que adopte sin dilaci\u00f3n cuantas medidas sean necesarias que aseguren eficazmente la de la", - "values": [ - "Corte Interamericana de Derechos Humanos" - ] - }, - { - "text": "RELAT\u00d3RIO N ADMISSIBILIDADE PETI\u00c7\u00c3O LUIS ALFREDO ALMONACID ARELLANO CHILE de outubro de I. RESUMO Em de setembro de a Comiss\u00e3o Interamericana de Direitos Humanos doravante denominada a Comiss\u00e3o ou CIDH recebeu uma peti\u00e7\u00e3o apresentada por Mario M\u00e1rquez Maldonado e Elvira Del Rosario G\u00f3mez doravante denominados os peticion\u00e1rios na qual alegam a responsabilidade da Rep\u00fablica do Chile doravante denominado o Estado ou o Estado chileno por viola\u00e7\u00e3o ao direito de acesso \u00e0 justi\u00e7a em virtude da", - "values": [ - "Comisi\u00f3n Interamericana de Derechos Humanos" - ] - }, - { - "text": "RESOLUCI\u00d3N DE LA CORTE INTERAMERICANA DE DERECHOS HUMANOS DE DE MARZO DE MEDIDAS PROVISIONALES RESPECTO DE LA REP\u00daBLICA DE COLOMBIA ASUNTO MERY NARANJO Y OTROS VISTO Las Resoluciones dictadas por la Corte Interamericana de Derechos Humanos en adelante la Corte Interamericana la Corte o el Tribunal de de julio de de septiembre de de enero de y de noviembre de mediante las cuales el Tribunal orden\u00f3 medidas provisionales y supervis\u00f3 su ejecuci\u00f3n en el presente asunto. En esta \u00faltima la ", - "values": [ - "Corte Interamericana de Derechos Humanos" - ] - }, - { - "text": "RESOLUCI\u00d3N DE LA CORTE INTERAMERICANA DE DERECHOS HUMANOS DE DE NOVIEMBRE DE CASO ALMONACID ARELLANO VS. CHILE SUPERVISI\u00d3N DE CUMPLIMIENTO DE SENTENCIA VISTO La Sentencia de excepciones preliminares fondo reparaciones y costas en adelante la Sentencia emitida por la Corte Interamericana de Derechos Humanos en adelante la Corte Interamericana la Corte o el Tribunal el de septiembre de mediante la cual dispuso en materia de reparaciones lo siguiente El Estado debe asegurarse que el Decreto ", - "values": [ - "Corte Interamericana de Derechos Humanos" - ] - }, - { - "text": "RESOLUCI\u00d3N DE LA CORTE INTERAMERICANA DE DERECHOS HUMANOS DE DE MAYO DE MEDIDAS PROVISIONALES RESPECTO DE VENEZUELA ASUNTO NATERA BALBOA VISTO La Resoluci\u00f3n de la Presidencia de la Corte Interamericana de Derechos Humanos en adelante la Presidencia de de diciembre de en la cual resolvi\u00f3 inter alia Requerir al Estado que adopte de forma inmediata las medidas que sean necesarias para determinar la situaci\u00f3n y paradero de Eduardo Jos\u00e9 Natera Balboa y para proteger su vida e integridad al ", - "values": [ - "Corte Interamericana de Derechos Humanos" - ] - }, - { - "text": "RESOLUCI\u00d3N DE LA CORTE INTERAMERICANA DE DERECHOS HUMANOS DE DE SEPTIEMBRE DE CASO PALAMARA IRIBARNE VS. CHILE SUPERVISI\u00d3N DE CUMPLIMIENTO DE SENTENCIA VISTO La Sentencia de fondo reparaciones y costas en adelante tambi\u00e9n la Sentencia dictada por la Corte Interamericana de Derechos Humanos en adelante la Corte Interamericana la Corte o el Tribunal el de noviembre de La Resoluci\u00f3n de supervisi\u00f3n de cumplimiento de la Sentencia emitida por la Corte Interamericana el de noviembre de en la", - "values": [ - "Corte Interamericana de Derechos Humanos" - ] - }, - { - "text": "Resoluci\u00f3n de la Corte Interamericana de Derechos Humanos de de noviembre de Medidas Provisionales Respecto de los Estados Unidos Mexicanos Asunto Leonel Rivero y otros Visto La Resoluci\u00f3n emitida por el Presidente de la Corte Interamericana de Derechos Humanos en adelante la Corte Interamericana la Corte o el Tribunal el de octubre de y las Resoluciones emitidas por el Tribunal el de noviembre de de abril de de junio de y de noviembre de La audiencia p\u00fablica sobre las presentes ", - "values": [ - "Corte Interamericana de Derechos Humanos" - ] - }, - { - "text": "RESOLUCI\u00d3N DEL PRESIDENTE DE LA CORTE INTERAMERICANA DE DERECHOS HUMANOS DE DE JULIO DE CASO WONG HO WING VS. PER\u00da VISTO El escrito de sometimiento del caso y el Informe de Fondo de la Comisi\u00f3n Interamericana de Derechos Humanos en adelante la Comisi\u00f3n Interamericana o la Comisi\u00f3n el escrito de solicitudes argumentos y pruebas en adelante el escrito de solicitudes y argumentos del representante de la presunta v\u00edctima en adelante el representante y el escrito de excepci\u00f3n preliminar al ", - "values": [ - "Corte Interamericana de Derechos Humanos" - ] - }, - { - "text": "RESOLUCI\u00d3N DE LA CORTE INTERAMERICANA DE DERECHOS HUMANOS DE DE AGOSTO DE CASO ATALA RIFFO E HIJAS VS. CHILE VISTO La Resoluci\u00f3n del Presidente de la Corte de de julio de mediante la cual se convoc\u00f3 a la audiencia p\u00fablica en el presente caso y se decidi\u00f3 cuales declaraciones eran conveniente recibir por medio de declaraci\u00f3n rendida ante fedatario p\u00fablico affid\u00e1vit. En particular en dicha Resoluci\u00f3n se estableci\u00f3 que el dictamen pericial del se\u00f1or Juan Carlos Mar\u00edn ofrecido por los de las ", - "values": [ - "Corte Interamericana de Derechos Humanos" - ] - }, - { - "text": "RESOLUCI\u00d3N DE LA CORTE INTERAMERICANA DE DERECHOS HUMANOS DE DE NOVIEMBRE DE MEDIDAS PROVISIONALES RESPECTO DE VENEZUELA ASUNTO GUERRERO GALLUCCI VISTO Las Resoluciones de la Corte Interamericana de Derechos Humanos en adelante la Corte Interamericana la Corte o el Tribunal de de julio de y de noviembre de emitidas en relaci\u00f3n con las presentes medidas provisionales. En su \u00faltima resoluci\u00f3n el Tribunal resolvi\u00f3 inter alia Levantar las medidas provisionales ordenadas por la Corte de ", - "values": [ - "Corte Interamericana de Derechos Humanos" - ] - }, - { - "text": "RESOLUCI\u00d3N DE LA CORTE INTERAMERICANA DE DERECHOS HUMANOS DE DE NOVIEMBRE DE CASO CABALLERO DELGADO Y SANTANA CUMPLIMIENTO DE SENTENCIA VISTOS La Sentencia de fondo dictada en el Caso Caballero Delgado y Santana por la Corte Interamericana de Derechos Humanos en adelante la Corte la Corte Interamericana o el Tribunal el de diciembre de mediante la cual inter alia Por unanimidad Decidi\u00f3 que la Rep\u00fablica de Colombia estaba obligada a continuar los procedimientos judiciales por la y muerte", - "values": [ - "Corte Interamericana de Derechos Humanos" - ] - }, - { - "text": "RESOLU\u00c7\u00c3O DA CORTE INTERAMERICANA DE DIREITOS HUMANOS DE DE NOVEMBRO DE MEDIDAS PROVIS\u00d3RIAS A RESPEITO DO BRASIL ASSUNTO DO COMPLEXO PENITENCI\u00c1RIO DE CURADO VISTO As Resolu\u00e7\u00f5es emitidas pela Corte Interamericana de Direitos Humanos doravante denominada a Corte Interamericana a Corte ou o Tribunal em de maio de e de outubro de nas quais entre outros requereu \u00e0 Rep\u00fablica Federativa do Brasil doravante denominado Brasil ou o Estado que adotasse de forma imediata todas as medidas que fossem", - "values": [ - "Corte Interamericana de Derechos Humanos" - ] - }, - { - "text": "RESOLUCI\u00d3N DE LA CORTE INTERAMERICANA DE DERECHOS HUMANOS DE DE ENERO DE CASO LUNA L\u00d3PEZ VS. HONDURAS SUPERVISI\u00d3N DE CUMPLIMIENTO DE SENTENCIA VISTO La Sentencia de fondo reparaciones y costas en adelante la Sentencia o el Fallo dictada por la Corte Interamericana de Derechos Humanos en adelante la Corte Interamericana la Corte o el Tribunal el de octubre de en el caso Luna L\u00f3pez Vs. Honduras. En dicho Fallo se estableci\u00f3 que el de mayo de el se\u00f1or Carlos Luna L\u00f3pez defensor de derechos ", - "values": [ - "Corte Interamericana de Derechos Humanos" - ] - }, - { - "text": "SEPARATE OPINION OF JUDGE VENTURAROBLES I have concurred with great satisfaction with my vote to the unanimous adoption of the instant Judgment in the Case of the Sawhoyamaxa Indigenous Community v. Paraguay because it meant a substantial shift in the criteria of the majority of the Court who in an identical case ie. Case of the Indigenous Community Yakye Axa v. Paraguay did not find that Article of the Convention had been violated to the detriment of the members of said community who died as", - "values": [ - "Corte Interamericana de Derechos Humanos" - ] - }, - { - "text": "RESOLUCI\u00d3N DE LA CORTE INTERAMERICANA DE DERECHOS HUMANOS DE DE NOVIEMBRE DE SOLICITUD DE MEDIDAS PROVISIONALES RESPECTO DEL ESTADO DEL PER\u00da CASO ACEVEDO JARAMILLO Y OTROS VISTOS El escrito de de octubre de y sus anexos mediante los cuales los se\u00f1ores Manuel Antonio Condori Araujo Ana Mar\u00eda Zegarra Laos Wilfredo Castillo S. y Guillermo Castro B\u00e1rcena representantes de algunas de las presuntas v\u00edctimas en el caso Acevedo Jaramillo y otros en adelante los representantes y el se\u00f1or Javier A. ", - "values": [ - "Corte Interamericana de Derechos Humanos" - ] - }, - { - "text": "RESOLUCI\u00d3N DE LA CORTE INTERAMERICANA DE DERECHOS HUMANOS DE DE NOVIEMBRE DE MEDIDAS PROVISIONALES RESPECTO DE LA REP\u00daBLICA DE COLOMBIA CASO GUTI\u00c9RREZ SOLER VISTOS La Resoluci\u00f3n de la Corte Interamericana de Derechos Humanos en adelante la Corte la Corte Interamericana o el Tribunal de de marzo de mediante la cual requiri\u00f3 al Estado de Colombia en adelante el Estado inter alia adoptar las medidas necesarias para a proteger la vida integridad personal y libertad personal del se\u00f1or Ricardo ", - "values": [ - "Corte Interamericana de Derechos Humanos" - ] - }, - { - "text": "VOTO DISIDENTE DEL JUEZ EDUARDO VIO GROSSI CORTE INTERAMERICANA DE DERECHOS HUMANOS CASO GALINDO C\u00c1RDENAS Y OTROS VS. PER\u00da SENTENCIA DE DE OCTUBRE DE Excepciones Preliminares Fondo Reparaciones y Costas INTRODUCCI\u00d3N. Obviamente y como no podr\u00eda ser de otra manera se emite el presente voto individual disidente a la Sentencia indicada en el t\u00edtulo con el mayor respeto y la m\u00e1xima consideraci\u00f3n hacia los dem\u00e1s jueces de la Corte Interamericana de Derechos Humanos y sus opiniones y con la de ", - "values": [ - "Corte Interamericana de Derechos Humanos" - ] - }, - { - "text": "RELAT\u00d3RIO N PETI\u00c7\u00c3O ADMISSIBILIDADE JES\u00daS MAR\u00cdA VALLE JARAMILLO COL\u00d4MBIA de fevereiro de I. RESUMO Em de agosto de a Comiss\u00e3o Interamericana de Direitos Humanos doravante denominada a Comiss\u00e3o ou a CIDH recebeu uma peti\u00e7\u00e3o apresentada pelo Grupo Interdisciplinario Direitos Humanos doravante denominado os peticion\u00e1rios na qual se alega a responsabilidade da Rep\u00fablica de Col\u00f4mbia doravante denominada o Estado ou o Estado colombiano no assassinato do advogado e defensor de direitos humanos ", - "values": [ - "Comisi\u00f3n Interamericana de Derechos Humanos" - ] - }, - { - "text": "VOTO RAZONADO DEL JUEZ SERGIO GARCIA RAMIREZ EN EL CASO GUTI\u00c9RREZ SOLER VS. COLOMBIA. SENTENCIA DEL DE SEPTIEMBRE DE A SOLUCION AUTOCOMPOSITIVA. CARACTERISTICAS Y CONDICIONES La soluci\u00f3n de la controversia que llega al conocimiento de las autoridades encargadas de resolverla puede operar con base en un acto compositivo entre las partes que pudo presentarse antes de recurrir al procedimiento p\u00fablico como es deseable que ocurra cada vez que sea posible o por medio de una resoluci\u00f3n de de ", - "values": [ - "Corte Interamericana de Derechos Humanos" - ] - }, - { - "text": "RESOLUCI\u00d3N DE LA CORTE INTERAMERICANA DE DERECHOS HUMANOS DE DE NOVIEMBRE DE MEDIDAS PROVISIONALES SOLICITADAS POR LA COMISI\u00d3N INTERAMERICANA DE DERECHOS HUMANOS RESPECTO DE LA REPUBLICA DE COLOMBIA CASO \u00c1LVAREZ Y OTROS VISTOS El escrito de de julio de y sus anexos mediante el cual la Comisi\u00f3n Interamericana de Derechos Humanos en adelante la Comisi\u00f3n o la Comisi\u00f3n Interamericana someti\u00f3 a la Corte Interamericana de Derechos Humanos en adelante la Corte o la Corte Interamericana en virtud ", - "values": [ - "Corte Interamericana de Derechos Humanos" - ] - }, - { - "text": "RESOLUCI\u00d3N DE LA CORTE INTERAMERICANA DE DERECHOS HUMANOS DE DE JULIO DE MEDIDAS PROVISIONALES CASO RAM\u00cdREZ HINOSTROZA Y OTROS VISTOS La Resoluci\u00f3n de la Corte Interamericana de Derechos Humanos en adelante la Corte o el Tribunal de de septiembre de sobre medidas provisionales mediante la cual resolvi\u00f3 inter alia ratificar en todos sus t\u00e9rminos la Resoluci\u00f3n del Presidente de la Corte en adelante el Presidente de de julio de y por consiguiente requerir al Estado del Per\u00fa en adelante el ", - "values": [ - "Corte Interamericana de Derechos Humanos" - ] - }, - { - "text": "RESOLUCI\u00d3N DE LA CORTE INTERAMERICANA DE DERECHOS HUMANOS DE DE MAYO DE SOLICITUD DE MEDIDAS PROVISIONALES RESPECTO DE LA REP\u00daBLICA DE COLOMBIA AVILA MORENO Y OTROS CASO OPERACI\u00d3N G\u00c9NESIS VISTO El escrito de de febrero de de la Comisi\u00f3n Intereclesial de Justicia y Paz organizaci\u00f3n representante de los propuestos beneficiarios en adelante los representantes as\u00ed como sus anexos mediante los cuales someti\u00f3 a la Corte Interamericana de Derechos Humanos en adelante la Corte Interamericana la o", - "values": [ - "Corte Interamericana de Derechos Humanos" - ] - }, - { - "text": "RESOLUCI\u00d3N DE LA CORTE INTERAMERICANA DE DERECHOS HUMANOS DE DE ENERO DE MEDIDAS PROVISIONALES ASUNTO DE LA FUNDACI\u00d3N DE ANTROPOLOG\u00cdA FORENSE DE GUATEMALA VISTOS La Resoluci\u00f3n de la Corte Interamericana de Derechos Humanos en adelante la Corte la Corte Interamericana o el Tribunal de de julio de mediante la cual orden\u00f3 la adopci\u00f3n de medidas provisionales en favor de los integrantes de la Fundaci\u00f3n de Antropolog\u00eda Forense de Guatemala en adelante FAFG y otros. La Resoluci\u00f3n del Tribunal ", - "values": [ - "Corte Interamericana de Derechos Humanos" - ] - }, - { - "text": "RESOLUCI\u00d3N DE LA CORTE INTERAMERICANA DE DERECHOS HUMANOS DE DE MAYO DE MEDIDAS PROVISIONALES RESPECTO DE LA REP\u00daBLICA DE COLOMBIA ASUNTO COMUNIDADES DEL JIGUAMIAND\u00d3 Y DEL CURVARAD\u00d3 VISTOS Las Resoluciones de la Corte Interamericana de Derechos Humanos en adelante la Corte Interamericana la Corte o el Tribunal de de marzo de de noviembre de de marzo de de febrero de de febrero de de noviembre de y de agosto de En esta \u00faltima Resoluci\u00f3n la Corte resolvi\u00f3 inter alia Reiterar al", - "values": [ - "Corte Interamericana de Derechos Humanos" - ] - }, - { - "text": "RESOLUCI\u00d3N DEL PRESIDENTE DE LA CORTE INTERAMERICANA DE DERECHOS HUMANOS DE DE JULIO DE MEDIDAS PROVISIONALES SOLICITADAS POR LA COMISI\u00d3N INTERAMERICANA DE DERECHOS HUMANOS RESPECTO DE LA REP\u00daBLICA DEL PER\u00da CASO CESTI HURTADO VISTOS La solicitud presentada a la Corte Interamericana de Derechos Humanos en adelante la Corte o la Corte Interamericana por la Comisi\u00f3n Interamericana de Derechos Humanos en adelante la Comisi\u00f3n o la Comisi\u00f3n Interamericana de fecha de julio de para que la Corte ", - "values": [ - "Corte Interamericana de Derechos Humanos" - ] - }, - { - "text": "RESOLUCI\u00d3N DE LA PRESIDENTA DE LA CORTE INTERAMERICANA DE DERECHOS HUMANOS DE DE OCTUBRE DE MEDIDAS PROVISIONALES RESPECTO DE LA REP\u00daBLICA DE COLOMBIA ASUNTO PUEBLO IND\u00cdGENA KANKUAMO VISTO La Resoluci\u00f3n de la Corte Interamericana de Derechos Humanos en adelante la Corte Interamericana la Corte o el Tribunal de de julio de mediante la cual resolvi\u00f3 inter alia Requerir al Estado que adopte sin dilaci\u00f3n las medidas que sean necesarias para proteger la vida e integridad personal de todos los ", - "values": [ - "Corte Interamericana de Derechos Humanos" - ] - }, - { - "text": "Corte Interamericana de Derechos Humanos Caso Baena Ricardo y otros Vs. Panam\u00e1 Sentencia de de noviembre de Competencia En el caso Baena Ricardo y otros la Corte Interamericana de Derechos Humanos en adelante la Corte la Corte Interamericana o el Tribunal integrada por los siguientes jueces Ant\u00f4nio A. Can\u00e7ado Trindade Presidente Sergio Garc\u00eda Ram\u00edrez Vicepresidente Hern\u00e1n Salgado Pesantes Juez M\u00e1ximo Pacheco G\u00f3mez Juez Oliver Jackman Juez Alirio Abreu Burelli Juez y Carlos Vicente de Roux ", - "values": [ - "Corte Interamericana de Derechos Humanos" - ] - }, - { - "text": "VOTO FUNDAMENTADO CONCORDANTE DO JUIZ HERN\u00c1N SALGADO PESANTES No presente caso permitome agregar algumas considera\u00e7\u00f5es. A posse da terra por parte dos povos e comunidades ind\u00edgenas seja a t\u00edtulo de propriedade comunal ou de possess\u00e3o ancestral foi reconhecida em nosso continente como um direito e muitos pa\u00edses latinoamericanos o consagraram em n\u00edvel constitucional. Este direito \u00e0 terra reivindicado pelos ind\u00edgenas inscrevese no direito \u00e0 propriedade no entanto ultrapassa este conceito no a", - "values": [ - "Corte Interamericana de Derechos Humanos" - ] - }, - { - "text": "RESOLUCI\u00d3N DE LA CORTE INTERAMERICANA DE DERECHOS HUMANOS DE DE FEBRERO DE SOLICITUD DE MEDIDAS PROVISIONALES RESPECTO DE HONDURAS CASO PACHECO TERUEL Y OTROS VISTO El escrito del Equipo de Reflexi\u00f3n Investigaci\u00f3n de la Compa\u00f1\u00eda de Jes\u00fas ERICSJ Pastoral Penitenciaria y CARITAS Di\u00f3cesis de San Pedro Sula en adelante los representantes presentado en representaci\u00f3n de la se\u00f1ora Sandra Lorena Ramos el de enero de mediante el cual se solicit\u00f3 la adopci\u00f3n de medidas provisionales de conformidad", - "values": [ - "Corte Interamericana de Derechos Humanos" - ] - }, - { - "text": "VOTO FUNDAMENTADO DO JUIZ A. A. CAN\u00c7ADO TRINDADE Ao votar a favor da ado\u00e7\u00e3o da presente Senten\u00e7a da Corte Interamericana de Direitos Humanos no caso das Crian\u00e7as Yean e Bosico versus Rep\u00fablica Dominicana com a qual estou basicamente de acordo vejome na obriga\u00e7\u00e3o de agregar no presente Voto Fundamentado algumas breves reflex\u00f5es pessoais sobre o tema central do cas desp\u00e8ce porquanto esta \u00e9 a primeira vez em sua hist\u00f3ria que a Corte Interamericana se pronuncia na resolu\u00e7\u00e3o de um caso contencioso ", - "values": [ - "Corte Interamericana de Derechos Humanos" - ] - }, - { - "text": "RESOLUCI\u00d3N DE LA CORTE INTERAMERICANA DE DERECHOS HUMANOS DE DE JULIO DE MEDIDAS PROVISIONALES CABALLERO DELGADO Y SANTANA RESPECTO DE COLOMBIA VISTO La Resoluci\u00f3n de la Corte Interamericana de Derechos Humanos en adelante la Corte o el Tribunal de de abril de mediante la cual resolvi\u00f3 Requerir al Estado colombiano en adelante el Estado el Estado colombiano el Estado de Colombia o Colombia que adoptara sin dilaci\u00f3n las medidas necesarias para proteger la vida e integridad personal de los ", - "values": [ - "Corte Interamericana de Derechos Humanos" - ] - }, - { - "text": "RESOLU\u00c7\u00c3O DA CORTE INTERAMERICANA DE DIREITOS HUMANOS DE DE JUNHO DE CASO ESCHER E OUTROS VS. BRASIL SUPERVIS\u00c3O DE CUMPRIMENTO DE SENTEN\u00c7A VISTO A Senten\u00e7a de exce\u00e7\u00f5es preliminares m\u00e9rito repara\u00e7\u00f5es e custas doravante a Senten\u00e7a emitida em de julho de pela Corte Interamericana de Direitos Humanos doravante a Corte Interamericana a Corte ou o Tribunal mediante a qual disp\u00f4s que O Estado deve pagar aos senhores Arlei Jos\u00e9 Escher Dalton Luciano de Vargas Delfino Jos\u00e9 Becker Pedro Alves e ", - "values": [ - "Corte Interamericana de Derechos Humanos" - ] - }, - { - "text": "VOTO DISIDENTE DEL JUEZ NIETO NAVIA Aunque no est\u00e1 probado que actuaran bajo \u00f3rdenes oficiales o que se tratara de una pr\u00e1ctica del Ej\u00e9rcito colombiano y m\u00e1s bien de los autos puede colegirse lo contrario aparentemente al secuestrar a sus v\u00edctimas estaban vestidos de guerrilleros aunque no se sepa bien qu\u00e9 diferencia existe entre un uniforme militar y uno de guerrillero y el Capit\u00e1n Forero Quintero fue tratado durante varios meses en un hospital militar por paranoia derivada del trauma que le ", - "values": [ - "Corte Interamericana de Derechos Humanos" - ] - }, - { - "text": "RESOLUCI\u00d3N DE LA CORTE INTERAMERICANA DE DERECHOS HUMANOS DE DE SEPTIEMBRE DE CASO CESTI HURTADO vs. PER\u00da CUMPLIMIENTO DE SENTENCIA VISTO La sentencia de fondo emitida por la Corte Interamericana de Derechos Humanos en adelante la Corte la Corte Interamericana o el Tribunal el de septiembre de La sentencia de interpretaci\u00f3n de la sentencia de fondo dictada por la Corte el de enero de La sentencia de reparaciones emitida por el Tribunal el de mayo de La sentencia de interpretaci\u00f3n de", - "values": [ - "Corte Interamericana de Derechos Humanos" - ] - }, - { - "text": "RESOLUCI\u00d3N DEL PRESIDENTE DE LA CORTE INTERAMERICANA DE DERECHOS HUMANOS DE DE JUNIO DE AMPLIACI\u00d3N DE LAS MEDIDAS PROVISIONALES SOLICITADAS POR LA COMISI\u00d3N INTERAMERICANA DE DERECHOS HUMANOS RESPECTO DE LA REP\u00daBLICA DE TRINIDAD Y TOBAGO CASOS JAMES Y OTROS VISTOS La Resoluci\u00f3n de la Corte Interamericana de Derechos Humanos en adelante la Corte de de mayo de en la cual decidi\u00f3 Respecto a las medidas provisionales ordenadas por la Corte el de agosto de a. Mantener las medidas ordenadas ", - "values": [ - "Corte Interamericana de Derechos Humanos" - ] - }, - { - "text": "INFORME N CASO MASACRE DE MAPIRIP\u00c1N COLOMBIA de febrero de I. RESUMEN El de octubre de el Colectivo de Abogados Jos\u00e9 Alvear Restrepo y el Centro por la Justicia y el Derecho Internacional CEJIL presentaron una petici\u00f3n ante la Comisi\u00f3n Interamericana de Derechos Humanos en adelante la Comisi\u00f3n o la CIDH en contra de la Rep\u00fablica de Colombia en adelante el Estado en la cual se alega que entre el y el de julio de aproximadamente un centenar de miembros del grupo paramilitar conocido ", - "values": [ - "Comisi\u00f3n Interamericana de Derechos Humanos" - ] - }, - { - "text": "RESOLUCI\u00d3N DE LA CORTE INTERAMERICANA DE DERECHOS HUMANOS DE DE FEBRERO DE CASO BAENA RICARDO Y OTROS VS. PANAM\u00c1 SUPERVISI\u00d3N DE CUMPLIMIENTO DE SENTENCIA VISTO La Sentencia de fondo reparaciones y costas emitida el de febrero de en adelante la Sentencia por la Corte Interamericana de Derechos Humanos en adelante la Corte Interamericana la Corte o el Tribunal relativa al despido de trabajadores de diferentes empresas estatales en virtud de la aplicaci\u00f3n de la Ley de de diciembre de en ", - "values": [ - "Corte Interamericana de Derechos Humanos" - ] - }, - { - "text": "RESOLUCI\u00d3N DE LA CORTE INTERAMERICANA DE DERECHOS HUMANOS DE DE ABRIL DE MEDIDAS PROVISIONALES ADOPTADAS POR LA CORTE INTERAMERICANA DE DERECHOS HUMANOS RESPECTO DE LA REP\u00daBLICA DE COLOMBIA CASO GIRALDO CARDONA VISTOS Que la Corte Interamericana de Derechos Humanos en adelante la Corte o el Tribunal celebr\u00f3 en su sede el de abril de una audiencia p\u00fablica sobre las medidas provisionales adoptadas en el caso Giraldo Cardona. Que en dicha audiencia el representante de la Comisi\u00f3n de en ", - "values": [ - "Corte Interamericana de Derechos Humanos" - ] - }, - { - "text": "RESOLUCI\u00d3N DE LA CORTE INTERAMERICANA DE DERECHOS HUMANOS DE DE MAYO DE CASO KIMEL VS. ARGENTINA SUPERVISI\u00d3N DE CUMPLIMIENTO DE SENTENCIA VISTO La Sentencia de fondo reparaciones y costas en adelante la Sentencia dictada por la Corte Interamericana de Derechos Humanos en adelante la Corte Interamericana la Corte o el Tribunal el de mayo de mediante la cual dispuso que El Estado deb\u00eda realizar los pagos de las cantidades establecidas en la Sentencia por concepto de da\u00f1o material y de y", - "values": [ - "Corte Interamericana de Derechos Humanos" - ] - }, - { - "text": "Resoluci\u00f3n de la Corte Interamericana de Derechos Humanos De de octubre de Caso G\u00f3mez Palomino Vs. Per\u00fa Supervisi\u00f3n de Cumplimiento de Sentencia VISTOS La Sentencia de fondo reparaciones y costas en adelante la Sentencia dictada por la Corte Interamericana de Derechos Humanos en adelante la Corte la Corte Interamericana o el Tribunal el de noviembre de mediante la cual DECIDI\u00d3 Por unanimidad Admitir el reconocimiento de responsabilidad internacional efectuado por el Estado del Per\u00fa en los", - "values": [ - "Corte Interamericana de Derechos Humanos" - ] - }, - { - "text": "INFORME N\u00ba ADMISIBILIDAD PETICI\u00d3N HELIODORO PORTUGAL PANAM\u00c1 de octubre de I. RESUMEN El de mayo de el Centro por la Justicia y el Derecho Internacional CEJIL y la se\u00f1ora Patria Portugal presentaron una denuncia ante la Comisi\u00f3n Interamericana de Derechos Humanos en adelante la Comisi\u00f3n o la CIDH en contra de la Rep\u00fablica de Panam\u00e1 en adelante el Estado o Panam\u00e1 por la violaci\u00f3n de los derechos a la vida art\u00edculo derecho a la integridad personal art\u00edculo derecho a la libertad personal ", - "values": [ - "Comisi\u00f3n Interamericana de Derechos Humanos" - ] - }, - { - "text": "VOTO RAZONADO DEL JUEZ EDUARDO FERRER MACGREGOR POISOT CASO MALDONADO ORDO\u00d1EZ VS. GUATEMALA SENTENCIA DE DE MAYO DE Excepci\u00f3n Preliminar Fondo Reparaciones y Costas INTRODUCCI\u00d3N SOBRE LAS GARANT\u00cdAS M\u00cdNIMAS DEL DEBIDO PROCESO APLICABLES A OTRAS MATERIAS DISTINTAS DE LA PENAL INTERPRETACI\u00d3N DE LOS ALCANCES DEL ART\u00cdCULO DE LA CONVENCI\u00d3N AMERICANA Concurro esencialmente con lo decidido en el presente caso en el que se reiteraron est\u00e1ndares interamericanos de relevancia inter alia sobre la de ", - "values": [ - "Corte Interamericana de Derechos Humanos" - ] - }, - { - "text": "VOTO CONCURRENTE DEL JUEZ EDUARDO FERRER MACGREGOR POISOT CASO RODR\u00cdGUEZ VERA Y OTROS DESAPARECIDOS DEL PALACIO DE JUSTICIA VS. COLOMBIA SENTENCIA DE DE NOVIEMBRE DE Excepciones Preliminares Fondo Reparaciones y Costas Introducci\u00f3n la necesidad de reconocer el derecho a la verdad como derecho aut\u00f3nomo en el Sistema Interamericano de Derechos Humanos La desaparici\u00f3n forzada de personas constituye lamentablemente una de las violaciones graves a los derechos humanos m\u00e1s tratadas en la de la ", - "values": [ - "Corte Interamericana de Derechos Humanos" - ] - }, - { - "text": "RESOLUCI\u00d3N DE LA CORTE INTERAMERICANA DE DERECHOS HUMANOS DE DE MAYO DE CASO RADILLA PACHECO VS. ESTADOS UNIDOS MEXICANOS SUPERVISI\u00d3N DE CUMPLIMIENTO DE SENTENCIA VISTO La Sentencia de excepciones preliminares fondo reparaciones y costas en adelante la Sentencia dictada por la Corte Interamericana de Derechos Humanos en adelante la Corte Interamericana la Corte o el Tribunal el de noviembre de mediante la cual dispuso que El Estado deber\u00e1 conducir eficazmente con la debida diligencia y ", - "values": [ - "Corte Interamericana de Derechos Humanos" - ] - }, - { - "text": "RESOLUCI\u00d3N DE LA CORTE INTERAMERICANA DE DERECHOS HUMANOS DE NOVIEMBRE DE CASO DE LA CRUZ FLORES Vs. EL PER\u00da SUPERVISI\u00d3N DE CUMPLIMIENTO DE SENTENCIA VISTO La Sentencia de fondo reparaciones y costas emitida el de noviembre de por la Corte Interamericana de Derechos Humanos en adelante la Corte la Corte Interamericana o el Tribunal mediante la cual decidi\u00f3 por unanimidad que el Estado viol\u00f3 el principio de legalidad y de irretroactividad consagrado en el art\u00edculo de la Convenci\u00f3n sobre ", - "values": [ - "Corte Interamericana de Derechos Humanos" - ] - }, - { - "text": "INFORME N\u00ba PETICI\u00d3N ADMISIBILIDAD MARIA SALVADOR CHIRIBOGA Y GUILLERMO SALVADOR CHIRIBOGA ECUADOR de octubre de I. RESUMEN El de junio de la Comisi\u00f3n Interamericana de Derechos Humanos en adelante la Comisi\u00f3n o la CIDH recibi\u00f3 una petici\u00f3n en la que se alegaba la violaci\u00f3n de los derechos protegidos por la Convenci\u00f3n Americana sobre Derechos Humanos en adelante la Convenci\u00f3n Americana por parte de la Rep\u00fablica del Ecuador en adelante el Estado o Ecuador en perjuicio de la se\u00f1ora Mar\u00eda ", - "values": [ - "Comisi\u00f3n Interamericana de Derechos Humanos" - ] - }, - { - "text": "Corte Interamericana de Direitos Humanos Caso Nogueira de Carvalho e Outro Versus Brasil Senten\u00e7a de de Novembro de Exce\u00e7\u00f5es Preliminares e M\u00e9rito No Caso Nogueira de Carvalho e outro a Corte Interamericana de Direitos Humanos doravante denominada Corte Interamericana Corte ou Tribunal integrada pelos seguintes ju\u00edzes Sergio Garc\u00eda Ram\u00edrez Presidente Alirio Abreu Burelli VicePresidente Ant\u00f4nio Augusto Can\u00e7ado Trindade Juiz Cecilia Medina Quiroga Ju\u00edza Manuel E. Ventura Robles Juiz e Diego ", - "values": [ - "Corte Interamericana de Derechos Humanos" - ] - }, - { - "text": "INFORME N\u00ba PETICI\u00d3N ADMISIBILIDAD MASACRE EL MOZOTE EL SALVADOR de marzo de I. RESUMEN El de octubre de la Comisi\u00f3n Interamericana de Derechos Humanos en adelante la Comisi\u00f3n Interamericana o la CIDH recibi\u00f3 una denuncia presentada por la Oficina de Tutela legal del Arzobispado de San Salvador en adelante los peticionarios en la que se aleg\u00f3 la responsabilidad internacional de la Rep\u00fablica de El Salvador el Estado por violaciones a los derechos humanos de personas en adelante las ", - "values": [ - "Comisi\u00f3n Interamericana de Derechos Humanos" - ] - }, - { - "text": "RESOLUCI\u00d3N DE LA CORTE INTERAMERICANA DE DERECHOS HUMANOS DE DE SEPTIEMBRE DE MEDIDAS PROVISIONALES RESPECTO DE HONDURAS CASO L\u00d3PEZ \u00c1LVAREZ Y OTROS VISTOS La Resoluci\u00f3n de la Corte Interamericana de Derechos Humanos en adelante la Corte la Corte Interamericana o el Tribunal de de junio de en la cual decidi\u00f3 Requerir al Estado que adopte sin dilaci\u00f3n las medidas necesarias para proteger la vida e integridad personal de los se\u00f1ores Alfredo L\u00f3pez \u00c1lvarez Teresa Reyes Reyes y Gregoria Flores ", - "values": [ - "Corte Interamericana de Derechos Humanos" - ] - }, - { - "text": "SEPARATE OPINION OF JUDGE AA. CAN\u00c7ADO TRINDADE In the instant Judgment in the Case of Tibi versus Ecuador in which I have concurred with my vote the InterAmerican Court of Human Rights has ruled on a new case that adequately reflects the contingencies of the human condition and the importance of the realization of justice and of guarantees of nonrecidivism regarding acts injurious to human rights as a measure of reparation. Given the concerns raised by the instant case and the significance of ", - "values": [ - "Corte Interamericana de Derechos Humanos" - ] - }, - { - "text": "Resoluci\u00f3n de la Corte Interamericana de Derechos Humanos de de noviembre de Caso de las Ni\u00f1as Yean y Bosico Vs. Rep\u00fablica Dominicana Supervisi\u00f3n de Cumplimiento de Sentencia VISTO La Sentencia de excepciones preliminares fondo reparaciones y costas dictada por la Corte Interamericana de Derechos Humanos en adelante la Corte Interamericana la Corte o el Tribunal el de septiembre de mediante la cual en lo conducente determin\u00f3 que El Estado debe publicar en el plazo de seis meses contado a", - "values": [ - "Corte Interamericana de Derechos Humanos" - ] - }, - { - "text": "RESOLUCI\u00d3N DE LA CORTE INTERAMERICANA DE DERECHOS HUMANOS DE DE JULIO DE CASO CARPIO NICOLLE VS. GUATEMALA SUPERVISI\u00d3N DE CUMPLIMIENTO DE SENTENCIA VISTO La Sentencia de fondo reparaciones y costas en adelante la Sentencia dictada por la Corte Interamericana de Derechos Humanos en adelante la Corte la Corte Interamericana o el Tribunal el de noviembre de mediante la cual dispuso que El Estado deb\u00eda investigar efectivamente los hechos del caso con el fin de identificar juzgar y sancionar", - "values": [ - "Corte Interamericana de Derechos Humanos" - ] - }, - { - "text": "RESOLUCI\u00d3N DE LA CORTE INTERAMERICANA DE DERECHOS HUMANOS DE DE FEBRERO DE SOLICITUD DE AMPLIACI\u00d3N DE MEDIDAS PROVISIONALES CASO RAXCAC\u00d3 REYES Y OTROS VISTOS La Resoluci\u00f3n de la Corte Interamericana de Derechos Humanos en adelante la Corte la Corte Interamericana o el Tribunal dictada el de agosto de cuyo punto resolutivo primero resolvi\u00f3 Requerir al Estado que adopte sin dilaci\u00f3n las medidas necesarias para proteger la vida de Ronald Ernesto Raxcac\u00f3 Reyes Hugo Humberto Ruiz Fuentes y ", - "values": [ - "Corte Interamericana de Derechos Humanos" - ] - }, - { - "text": "CORTE INTERAMERICANA DE DERECHOS HUMANOS CASO MANUEL CEPEDA VARGAS VS. COLOMBIA SENTENCIA DE DE MAYO DE Excepciones Preliminares Fondo Reparaciones y Costas En el caso Manuel Cepeda Vargas vs. Colombia la Corte Interamericana de Derechos Humanos en adelante la Corte Interamericana la Corte o el Tribunal integrada por los siguientes jueces Diego Garc\u00edaSay\u00e1n Presidente Leonardo A. Franco Juez Manuel E. Ventura Robles Juez Margarette May Macaulay Jueza Rhadys Abreu Blondet Jueza Alberto P\u00e9rez ", - "values": [ - "Corte Interamericana de Derechos Humanos" - ] - }, - { - "text": "VOTO CONCURRENTE DE LA JUEZA MARGARETTE MAY MACAULAY EN EL CASO FURLAN Y FAMILIARES VS. ARGENTINA He votado por la adopci\u00f3n de esta sentencia de la Corte Interamericana de Derechos Humanos en el Caso Furlan y Familiares vs. Argentina. Sin embargo quiero presentar en este voto concurrente mi opini\u00f3n sobre la posibilidad de resolver parte del conflicto desde una perspectiva que contempla la justiciabilidad directa de los derechos econ\u00f3micos sociales y culturales bajo el alcance del art\u00edculo de ", - "values": [ - "Corte Interamericana de Derechos Humanos" - ] - }, - { - "text": "VOTO RAZONADO DEL JUEZ ALBERTO P\u00c9REZ P\u00c9REZ EN EL CASO LIAKAT ALI ALIBUX vs. SURINAME Mi discrepancia radica exclusivamente en lo tocante al no acogimiento de la excepci\u00f3n de falta de agotamiento de los recursos internos con respecto al impedimento de salida del pa\u00eds ocurrido el de enero de que qued\u00f3 subsumido en la decisi\u00f3n desestimatoria global sobre todas las excepciones interpuestas p\u00e1rrafo y punto resolutivo La Corte constat\u00f3 que respecto de la falta de agotamiento de recursos sobre ", - "values": [ - "Corte Interamericana de Derechos Humanos" - ] - }, - { - "text": "RESOLUCI\u00d3N DE LA CORTE INTERAMERICANA DE DERECHOS HUMANOS DE DE NOVIEMBRE DE CASOS EL AMPARO BLANCO ROMERO Y OTROS MONTERO ARANGUREN Y OTROS BARRETO LEIVA Y US\u00d3N RAM\u00cdREZ VS. VENEZUELA SUPERVISI\u00d3N DE CUMPLIMIENTO DE SENTENCIAS VISTO Las Sentencias emitidas por la Corte Interamericana de Derechos Humanos en adelante la Corte o el Tribunal el de septiembre de el de noviembre de el de julio de el de noviembre de y el de noviembre de en los siguientes cinco casos contra la Rep\u00fablica de", - "values": [ - "Corte Interamericana de Derechos Humanos" - ] - }, - { - "text": "Resoluci\u00f3n de la Corte Interamericana de Derechos Humanos de de noviembre de Solicitud de Medidas Provisionales respecto de la Rep\u00fablica de Honduras Caso Kawas Fern\u00e1ndez vs. Honduras Vistos El escrito de de febrero de recibido ese mismo d\u00eda en la Secretar\u00eda de la Corte Interamericana de Derechos Humanos en adelante la Secretar\u00eda mediante el cual la Comisi\u00f3n Interamericana de Derechos Humanos en adelante la Comisi\u00f3n o la Comisi\u00f3n Interamericana someti\u00f3 a la Corte Interamericana de Derechos ", - "values": [ - "Corte Interamericana de Derechos Humanos" - ] - }, - { - "text": "RESOLU\u00c7\u00c3O DA CORTE INTERAMERICANA DE DIREITOS HUMANOS DE DE NOVEMBRO DE SOLICITA\u00c7\u00c3O DE MEDIDAS PROVIS\u00d3RIAS APRESENTADA PELA COMISS\u00c3O INTERAMERICANA DE DIREITOS HUMANOS COM RESPEITO REP\u00daBLICA FEDERATIVA DO BRASIL CASO DAS CRIAN\u00c7AS E ADOLESCENTES PRIVADOS DE LIBERDADE NO COMPLEXO DO TATUAP\u00c9 DA FEBEM VISTO O documento da Comiss\u00e3o Interamericana de Direitos Humanos doravante denominada a Comiss\u00e3o Interamericana ou a Comiss\u00e3o de de outubro de e seus anexos mediante os quais submeteu \u00e0 Corte de", - "values": [ - "Corte Interamericana de Derechos Humanos" - ] - }, - { - "text": "VOTO RAZONADO CONCURRENTE DEL JUEZ HERN\u00c1N SALGADO PESANTES En el caso Caso Myrna Mack Chang he concurrido con mis colegas en esta sentencia aunque en mis razonamientos hubo otro criterio del cual que quiero dejar constancia. El Estado durante la tramitaci\u00f3n del presente caso adopt\u00f3 diversas posiciones bajo el denominador com\u00fan de responsabilidad institucional situaci\u00f3n que ven\u00eda ocurriendo desde la Comisi\u00f3n. Al momento de realizarse la audiencia p\u00fablica ante la Corte el Estado no acept\u00f3 que su", - "values": [ - "Corte Interamericana de Derechos Humanos" - ] - }, - { - "text": "Resoluci\u00f3n de la Corte Interamericana de Derechos Humanos de de mayo de Medidas Provisionales respecto del Brasil Asunto de la C\u00e1rcel de Urso Branco VISTO Las Resoluciones emitidas por la Corte Interamericana de Derechos Humanos en adelante la Corte la Corte Interamericana o el Tribunal el de junio de el de agosto de el de abril de el de julio de y el de septiembre de En \u00e9sta \u00faltima la Corte resolvi\u00f3 Requerir al Estado que a adoptara de forma inmediata todas las medidas que sean ", - "values": [ - "Corte Interamericana de Derechos Humanos" - ] - }, - { - "text": "RESOLUCI\u00d3N DE LA CORTE INTERAMERICANA DE DERECHOS HUMANOS DE DICIEMBRE DE MEDIDAS PROVISIONALES RESPECTO DE LA REP\u00daBLICA DE COLOMBIA CASO GIRALDO CARDONA VISTOS La Resoluci\u00f3n de la Corte Interamericana de Derechos Humanos en adelante la Corte Interamericana la Corte o el Tribunal de de junio de mediante la cual decidi\u00f3 Levantar y dar por concluidas las medidas provisionales ordenadas por la Corte en su resoluci\u00f3n de de febrero de en favor del se\u00f1or Gonzalo Z\u00e1rate. Requerir al Estado de", - "values": [ - "Corte Interamericana de Derechos Humanos" - ] - }, - { - "text": "VOTO DISIDENTE DEL JUEZ MANUEL E. VENTURA ROBLES CORTE INTERAMERICANA DE DERECHOS HUMANOS CASO DUQUE VS. COLOMBIA SENTENCIA DE DE FEBRERO DE EXCEPCIONES PRELIMINARES FONDO REPARACIONES Y COSTAS Lo que el suscrito Juez pretende al emitir un voto disidente en el presente Caso DUQUE vs. COLOMBIA al acoger la excepci\u00f3n preliminar de no agotamiento de los recursos internos interpuesta por el Estado es dejar muy en claro que en futuros casos similares la posici\u00f3n de la Comisi\u00f3n debe ser de no a ", - "values": [ - "Corte Interamericana de Derechos Humanos" - ] - }, - { - "text": "RESOLUCI\u00d3N DE LA CORTE INTERAMERICANA DE DERECHOS HUMANOS DE DE NOVIEMBRE DE CASO LA ULTIMA TENTACI\u00d3N DE CRISTO OLMEDO BUSTOS Y OTROS CUMPLIMIENTO DE SENTENCIA VISTOS La Sentencia de fondo y reparaciones dictada en el caso La \u00daltima Tentaci\u00f3n de Cristo por la Corte Interamericana de Derechos Humanos en adelante la Corte la Corte Interamericana o el Tribunal el de febrero de en la cual dispuso por unanimidad que el Estado viol\u00f3 el derecho a la libertad de pensamiento y de expresi\u00f3n en el", - "values": [ - "Corte Interamericana de Derechos Humanos" - ] - }, - { - "text": "VOTO CONCURRENTE DEL JUEZ SERGIO GARC\u00cdA RAM\u00cdREZ A LA SENTENCIA DE LA CORTE INTERAMERICANA SOBRE EL CASO KIMEL DEL DE MAYO DE He sumado mi voto al de mis colegas porque comparto las decisiones de fondo adoptadas por la Corte Interamericana de Derechos Humanos en el caso Kimel que constan en los puntos resolutivos de la Sentencia dictada el de mayo de Por otra parte difiero en lo que respecta a algunas consideraciones formuladas en ese documento que no figuran en aquellos puntos ni afectan ", - "values": [ - "Corte Interamericana de Derechos Humanos" - ] - }, - { - "text": "RESOLUCI\u00d3N DE LA CORTE INTERAMERICANA DE DERECHOS HUMANOS DE DE JUNIO DE MEDIDAS PROVISIONALES RESPECTO DE COLOMBIA CASO DE LA MASACRE DE MAPIRIP\u00c1N VISTOS La Resoluci\u00f3n del Presidente de la Corte Interamericana de Derechos Humanos en adelante la Corte la Corte Interamericana o el Tribunal de de enero de mediante la cual resolvi\u00f3 Requerir por las razones se\u00f1aladas y en el ejercicio de la facultad que le otorga el art\u00edculo del Reglamento que las siguientes personas propuestas por los ", - "values": [ - "Corte Interamericana de Derechos Humanos" - ] - }, - { - "text": "CORTE INTERAMERICANA DE DIREITOS HUMANOS CASO CONTRERAS E OUTROS VS. EL SALVADOR SENTEN\u00c7A DE DE AGOSTO DE M\u00e9rito Repara\u00e7\u00f5es e Custas No caso Contreras e outros a Corte Interamericana de Direitos Humanos doravante denominada Interamericana Corte ou Tribunal integrada pelos seguintes ju\u00edzes Corte Diego Garc\u00edaSay\u00e1n Presidente Manuel E. Ventura Robles Juiz Margarette May Macaulay Ju\u00edza Rhadys Abreu Blondet Ju\u00edza Alberto P\u00e9rez P\u00e9rez Juiz e Eduardo Vio Grossi Juiz presente ademais Pablo Saavedra ", - "values": [ - "Corte Interamericana de Derechos Humanos" - ] - }, - { - "text": "RESOLUCION DEL PRESIDENTE DE LA CORTE INTERAMERICANA DE DERECHOS HUMANOS DE DE ENERO DE CASO CASTILLO GONZ\u00c1LEZ Y OTROS VS. VENEZUELA VISTO El escrito de sometimiento del caso de de febrero de y sus anexos recibidos el de marzo de presentados por la Comisi\u00f3n Interamericana de Derechos Humanos en adelante la Comisi\u00f3n Interamericana o la Comisi\u00f3n ante la Corte Interamericana de Derechos Humanos en adelante la Corte Interamericana la Corte o el Tribunal contra la Rep\u00fablica Bolivariana de en", - "values": [ - "Corte Interamericana de Derechos Humanos" - ] - }, - { - "text": "RESOLUCI\u00d3N DEL PRESIDENTE EN EJERCICIO DE LA CORTE INTERAMERICANA DE DERECHOS HUMANOS DE DE DICIEMBRE DE MEDIDAS PROVISIONALES RESPECTO DE LA REP\u00daBLICA DEL PER\u00da ASUNTO WONG HO WING VISTO La Resoluci\u00f3n del Presidente en ejercicio para el presente asunto en adelante el Presidente en ejercicio o la Presidencia en ejercicio de la Corte Interamericana de Derechos Humanos en adelante la Corte Interamericana la Corte o el Tribunal de de marzo de as\u00ed como las Resoluciones del Tribunal de de mayo", - "values": [ - "Corte Interamericana de Derechos Humanos" - ] - }, - { - "text": "VOTO PARCIALMENTE DISIDENTE DEL JUEZ LEONARDO A. FRANCO CON RESPECTO A LA SENTENCIA DE LA CORTE INTERAMERICANA DE DERECHOS HUMANOS EN EL CASO SALVADOR CHIRIBOGA VS. ECUADOR DEL DE MARZO DE En la Sentencia de excepci\u00f3n preliminar y fondo dictada en el Caso Salvador Chiriboga vs. Ecuador del de mayo de la Corte declar\u00f3 la violaci\u00f3n del derecho a la propiedad privada consagrado en el art\u00edculo de la Convenci\u00f3n Americana sobre Derechos Humanos en relaci\u00f3n con los derechos a las garant\u00edas y ", - "values": [ - "Corte Interamericana de Derechos Humanos" - ] - }, - { - "text": "RESOLUCI\u00d3N DE LA CORTE INTERAMERICANA DE DERECHOS HUMANOS DE DE NOVIEMBRE DE CASO DE LA MASACRE DE MAPIRIP\u00c1N VS. COLOMBIA SUPERVISI\u00d3N DE CUMPLIMIENTO DE SENTENCIA VISTO El escrito de de febrero de y sus anexos recibidos en esa fecha y el de marzo siguiente que el Estado de Colombia en adelante el Estado denomin\u00f3 solicitud de revisi\u00f3n de la Sentencia dictada por la Corte Interamericana de Derechos Humanos en adelante la Corte la Corte Interamericana o el Tribunal el de septiembre de en ", - "values": [ - "Corte Interamericana de Derechos Humanos" - ] - }, - { - "text": "Voto del Juez ad hoc Dr. Jorge E. Orihuela Iberico sobre la Excepci\u00f3n Preliminar de caducidad de la demanda de la Comisi\u00f3n Caso Neira Alegr\u00eda y Otros I. II. III. IV. Hechos Normatividad Jurisprudencia Conclusiones y voto I. Hechos La Comisi\u00f3n aprob\u00f3 el informe en su Sesi\u00f3n correspondiente al Per\u00edodo de Sesiones celebrada el de mayo de Por nota del de junio de la Comisi\u00f3n transmite al Gobierno del Per\u00fa dicho informe precisando que los plazos materia de dicho informe surten efecto a de ", - "values": [ - "Corte Interamericana de Derechos Humanos" - ] - }, - { - "text": "VOTO INDIVIDUAL DISIDENTE DEL JUEZ EDUARDO VIO GROSSI CORTE INTERAMERICANA DE DERECHOS HUMANOS CASO WONG HO WING VS. PER\u00da SENTENCIA DE DE JUNIO DE Excepci\u00f3n Preliminar Fondo Reparaciones y Costas INTRODUCCI\u00d3N. Se emite el presente voto individual disidente de la Sentencia indicada en el t\u00edtulo en raz\u00f3n de que \u00e9sta desestim\u00f3 la excepci\u00f3n preliminar relativa al incumplimiento de la regla del previo agotamiento de los recursos internos interpuesta por la Rep\u00fablica del Per\u00fa. Los fundamentos de ", - "values": [ - "Corte Interamericana de Derechos Humanos" - ] - }, - { - "text": "RESOLUCI\u00d3N DE LA CORTE INTERAMERICANA DE DERECHOS HUMANOS DE DE NOVIEMBRE DE CASO DE LA PANEL BLANCA CASO PANIAGUA MORALES Y OTROS VS. GUATEMALA CUMPLIMIENTO DE SENTENCIA VISTOS La Sentencia de fondo dictada en el Caso de la Panel Blanca Caso Paniagua Morales y otros vs. Guatemala por la Corte Interamericana de Derechos Humanos en adelante la Corte la Corte Interamericana o el Tribunal el de marzo de mediante la cual Declar\u00f3 que el Estado de Guatemala viol\u00f3 el art\u00edculo de la Convenci\u00f3n ", - "values": [ - "Corte Interamericana de Derechos Humanos" - ] - }, - { - "text": "Resoluci\u00f3n de la Presidenta de la Corte Interamericana de Derechos Humanos de diciembre de Caso Chitay Nech y otros vs. Guatemala Visto El escrito de demanda de la Comisi\u00f3n Interamericana de Derechos Humanos en adelante la Comisi\u00f3n o la Comisi\u00f3n Interamericana presentado el de abril de ante la Corte Interamericana de Derechos Humanos en adelante la Corte la Corte Interamericana o el Tribunal contra la Rep\u00fablica de Guatemala en adelante el Estado o Guatemala en el cual ofreci\u00f3 la de tres ", - "values": [ - "Corte Interamericana de Derechos Humanos" - ] - }, - { - "text": "RESOLUCI\u00d3N DE LA CORTE INTERAMERICANA DE DERECHOS HUMANOS DE DE JUNIO DE CASO YATAMA Vs. NICARAGUA SUPERVISI\u00d3N DE CUMPLIMIENTO DE SENTENCIA VISTO La Sentencia de excepciones preliminares fondo reparaciones y costas en adelante la Sentencia dictada por la Corte Interamericana de Derechos Humanos en adelante la Corte Interamericana la Corte o el Tribunal el de junio de Las Resoluciones de la Corte de de noviembre de de agosto de y de mayo de En esta \u00faltima inter alia el Tribunal Que", - "values": [ - "Corte Interamericana de Derechos Humanos" - ] - }, - { - "text": "RESOLUCI\u00d3N DE LA CORTE INTERAMERICANA DE DERECHOS HUMANOS DE DE MAYO DE CASO CASTILLO P\u00c1EZ VS. PER\u00da SUPERVISI\u00d3N DEL CUMPLIMIENTO DE SENTENCIA VISTO La Sentencia de Excepciones Preliminares dictada por la Corte Interamericana de Derechos Humanos en adelante la Corte Interamericana la Corte o el Tribunal el de enero de en el presente caso la Sentencia de Fondo dictada por la Corte el de noviembre de en este caso en adelante Sentencia de fondo y la Sentencia de Reparaciones y Costas por ", - "values": [ - "Corte Interamericana de Derechos Humanos" - ] - }, - { - "text": "RESOLUCI\u00d3N DEL PRESIDENTE DE LA CORTE INTERAMERICANA DE DERECHOS HUMANOS DE DE JULIO DE CASO GUTI\u00c9RREZ HERN\u00c1NDEZ Y FAMILIA VS. GUATEMALA VISTO El escrito de sometimiento del caso y el Informe de Admisibilidad y Fondo de la Comisi\u00f3n Interamericana de Derechos Humanos en adelante la Comisi\u00f3n Interamericana o la Comisi\u00f3n el escrito de solicitudes argumentos y pruebas en adelante el escrito de solicitudes y argumentos de los representantes de las presuntas v\u00edctimas en adelante los representantes", - "values": [ - "Corte Interamericana de Derechos Humanos" - ] - }, - { - "text": "VOTO RAZONADO DEL JUEZ AA. CAN\u00c7ADO TRINDADE He concurrido con mi voto a la adopci\u00f3n en esta ciudad de Buenos Aires de la presente Sentencia que viene de adoptar la Corte Interamericana de Derechos Humanos en el caso Balde\u00f3n Garc\u00eda versus Per\u00fa. Dada la alta relevancia que atribuyo a determinados puntos tratados en la presente Sentencia me veo en la obligaci\u00f3n de dejar constancia de mis reflexiones personales como fundamento de mi posici\u00f3n al respecto. Me refiero en particular a la necesidad de ", - "values": [ - "Corte Interamericana de Derechos Humanos" - ] - }, - { - "text": "RESOLUCI\u00d3N DE LA CORTE INTERAMERICANA DE DERECHOS HUMANOS DE DE AGOSTO DE MEDIDAS PROVISIONALES CASO PANIAGUA MORALES Y OTROS VISTOS El caso Paniagua Morales y otros en tr\u00e1mite ante la Corte Interamericana de Derechos Humanos en adelante la Corte y la transcripci\u00f3n de la declaraci\u00f3n rendida por el se\u00f1or Manuel Alberto Gonz\u00e1lez Chinchilla durante la audiencia p\u00fablica que sobre reparaciones del caso citado celebr\u00f3 la Corte en su sede los d\u00edas y de agosto de El escrito de la Comisi\u00f3n de ", - "values": [ - "Corte Interamericana de Derechos Humanos" - ] - }, - { - "text": "RESOLUCI\u00d3N DE LA CORTE INTERAMERICANA DE DERECHOS HUMANOS DE DE NOVIEMBRE DE MEDIDAS PROVISIONALES RESPECTO DE LA REP\u00daBLICA DE ARGENTINA ASUNTO DE LAS PENITENCIAR\u00cdAS DE MENDOZA VISTO La Resoluci\u00f3n de la Corte Interamericana de Derechos Humanos en adelante la Corte o la Corte Interamericana de de noviembre de mediante la cual resolvi\u00f3 en los t\u00e9rminos de los art\u00edculos de la Convenci\u00f3n Americana sobre Derechos Humanos en adelante la Convenci\u00f3n o la Convenci\u00f3n Americana y del Reglamento de ", - "values": [ - "Corte Interamericana de Derechos Humanos" - ] - }, - { - "text": "RESOLUCI\u00d3N DE LA CORTE INTERAMERICANA DE DERECHOS HUMANOS DE DE MARZO DE CASO GELMAN VS. URUGUAY SUPERVISI\u00d3N DE CUMPLIMIENTO DE SENTENCIA VISTO La Sentencia de fondo y reparaciones dictada por la Corte Interamericana de Derechos Humanos en adelante la Corte Interamericana la Corte o el Tribunal el de febrero de Los hechos del presente caso ocurrieron durante la dictadura c\u00edvicomilitar que gobern\u00f3 Uruguay entre y recurriendo a pr\u00e1cticas sistem\u00e1ticas de graves violaciones de derechos por ", - "values": [ - "Corte Interamericana de Derechos Humanos" - ] - }, - { - "text": "VOTO DISIDENTE DEL JUEZ AD HOC EINER ELIAS BIEL MORALES EN EL CASO REVER\u00d3N TRUJILLO VS. VENEZUELA En la sentencia emitida en el presente caso la Corte Interamericana de Derechos Humanos en adelante la Corte o el Tribunal desestima la excepci\u00f3n preliminar interpuesta por el Estado respecto al no agotamiento de recursos internos. Difiero de la decisi\u00f3n mayoritaria y por tanto con el debido respeto por la opini\u00f3n de mis colegas me permito presentar las razones jur\u00eddicas de mi disenso. Esta con ", - "values": [ - "Corte Interamericana de Derechos Humanos" - ] - }, - { - "text": "INFORME No. PETICI\u00d3N ADMISIBILIDAD JEREM\u00cdAS OSORIO RIVERA Y OTROS PER\u00da de julio de I. RESUMEN El de noviembre de la Comisi\u00f3n Interamericana de Derechos Humanos en adelante tambi\u00e9n la Comisi\u00f3n Interamericana la Comisi\u00f3n o la CIDH recibi\u00f3 una petici\u00f3n presentada por Porfirio Osorio Rivera y por la Asociaci\u00f3n Pro Derechos Humanos APRODEH en adelante tambi\u00e9n los peticionarios en representaci\u00f3n de Jerem\u00edas Osorio Rivera en adelante tambi\u00e9n la presunta v\u00edctima en la cual se alega la violaci\u00f3n ", - "values": [ - "Comisi\u00f3n Interamericana de Derechos Humanos" - ] - }, - { - "text": "DECISION OF THE PRESIDENT OF THE INTERAMERICAN COURT OF HUMAN RIGHTS OF OCTOBER PROVISIONAL MEASURES REQUESTED BY THE INTERAMERICAN COMMISSION OF HUMAN RIGHTS IN THE MATTER OF THE REPUBLIC OF COLOMBIA PEACE COMMUNITY OF SAN JOS\u00c9 DE APARTAD\u00d3 CASE HAVING SEEN The brief of the InterAmerican Commission of Human Rights hereinafter the Commission or the InterAmerican Commission of October which submitted to the InterAmerican Court of Human Rights hereinafter the Court or the InterAmerican Court ", - "values": [ - "Corte Interamericana de Derechos Humanos" - ] - }, - { - "text": "RESOLUCI\u00d3N DE LA CORTE INTERAMERICANA DE DERECHOS HUMANOS DE DE FEBRERO DE MEDIDAS PROVISIONALES RESPECTO DE LA REP\u00daBLICA DE COLOMBIA CASO DE LAS COMUNIDADES DEL JIGUAMIAND\u00d3 Y DEL CURBARAD\u00d3 VISTO La Resoluci\u00f3n de la Corte Interamericana de Derechos Humanos en adelante la Corte Interamericana la Corte o el Tribunal de de marzo de La Resoluci\u00f3n de la Corte Interamericana de de noviembre de en la cual requiri\u00f3 inter alia que el Estado de Colombia en adelante el Estado o Colombia mantuviera", - "values": [ - "Corte Interamericana de Derechos Humanos" - ] - }, - { - "text": "Corte Interamericana de Derechos Humanos Caso Durand y Ugarte Vs. Per\u00fa Sentencia de de diciembre de Reparaciones En el caso Durand y Ugarte la Corte Interamericana de Derechos Humanos en adelante la Corte la Corte Interamericana o el Tribunal integrada por los siguientes jueces Ant\u00f4nio A. Can\u00e7ado Trindade Presidente M\u00e1ximo Pacheco G\u00f3mez Vicepresidente Hern\u00e1n Salgado Pesantes Juez Alirio Abreu Burelli Juez Sergio Garc\u00eda Ram\u00edrez Juez Carlos Vicente de Roux Rengifo Juez y Fernando Vidal Ram\u00edrez ", - "values": [ - "Corte Interamericana de Derechos Humanos" - ] - }, - { - "text": "VOTO RAZONADO CONCURRENTE DEL JUEZ SERGIO GARC\u00cdA RAM\u00cdREZ A LAS SENTENCIAS SOBRE EXCEPCIONES PRELIMINARES EN LOS CASOS HILAIRE CONSTANTINE Y OTROS Y BENJAM\u00cdN Y OTROS He sumado mi voto al de mis colegas en la Corte Interamericana de Derechos Humanos en las Sentencias sobre excepciones preliminares en los Casos Hilaire Contantine y Otros y Benjam\u00edn y Otros del de septiembre de que se fundan en el mismo razonamiento y llegan a id\u00e9nticas decisiones en lo concerniente a la supuesta incompetencia ", - "values": [ - "Corte Interamericana de Derechos Humanos" - ] - }, - { - "text": "Corte Interamericana de Derechos Humanos Caso Blake Vs. Guatemala Sentencia de de enero de Reparaciones y Costas En el caso Blake la Corte Interamericana de Derechos Humanos integrada por los siguientes jueces Hern\u00e1n Salgado Pesantes Presidente Antonio A. Can\u00e7ado Trindade Vicepresidente M\u00e1ximo Pacheco G\u00f3mez Juez Oliver Jackman Juez Alirio Abreu Burelli Juez Sergio Garc\u00eda Ram\u00edrez Juez Carlos Vicente de Roux Rengifo Juez Alfonso Novales Aguirre Juez ad hoc presentes adem\u00e1s Manuel E. Ventura y", - "values": [ - "Corte Interamericana de Derechos Humanos" - ] - }, - { - "text": "RESOLUCI\u00d3N DE LA CORTE INTERAMERICANA DE DERECHOS HUMANOS DE DE MARZO DE MEDIDAS PROVISIONALES RESPECTO DE LA REP\u00daBLICA DE COLOMBIA CASO DE LAS COMUNIDADES DEL JIGUAMIAND\u00d3 Y DEL CURBARAD\u00d3 VISTO La Resoluci\u00f3n de la Corte Interamericana de Derechos Humanos en adelante la Corte Interamericana la Corte o el Tribunal de de marzo de en la cual decidi\u00f3 requerir al Estado de Colombia en adelante el Estado que adoptara las medidas necesarias para proteger la vida e integridad personal de todos los ", - "values": [ - "Corte Interamericana de Derechos Humanos" - ] - }, - { - "text": "RESOLUCI\u00d3N DE LA CORTE INTERAMERICANA DE DERECHOS HUMANOS DE DE NOVIEMBRE DE MEDIDAS PROVISIONALES RESPECTO DEL ESTADO DEL PER\u00da CASO IVCHER BRONSTEIN VISTOS El escrito de demanda presentado por la Comisi\u00f3n Interamericana de Derechos Humanos en adelante la Comisi\u00f3n o la Comisi\u00f3n Interamericana a la Corte Interamericana de Derechos Humanos en adelante la Corte o la Corte Interamericana el de marzo de en contra del Estado del Per\u00fa en adelante el Estado o el Per\u00fa sobre el caso Ivcher Bronstein.", - "values": [ - "Corte Interamericana de Derechos Humanos" - ] - }, - { - "text": "VOTO CONCURRENTE DEL JUEZ HUMBERTO ANTONIO SIERRA PORTO A LA SENTENCIA DE DE OCTUBRE DE DE LA CORTE INTERAMERICANA DE DERECHOS HUMANOS EN EL CASO RUANO TORRES Y OTROS VS. EL SALVADOR Concurro con los argumentos jur\u00eddicos que sustentan la decisi\u00f3n de la Corte en la presente sentencia mediante la cual se acepta el reconocimiento parcial de responsabilidad internacional efectuado por el Estado y se determina que el Estado es responsable por la violaci\u00f3nen perjuicio de Jos\u00e9 Agapito Ruano a la ", - "values": [ - "Corte Interamericana de Derechos Humanos" - ] - }, - { - "text": "CORTE INTERAMERICANA DE DERECHOS HUMANOS CASO DUQUE VS. COLOMBIA SENTENCIA DE DE FEBRERO DE Excepciones Preliminares Fondo Reparaciones y Costas En el Caso Duque la Corte Interamericana de Derechos Humanos en adelante la Corte Interamericana la Corte o el Tribunal integrada por los siguientes Jueces Roberto F. Caldas Presidente Eduardo Ferrer MacGregor Poisot Vicepresidente Manuel E. Ventura Robles Juez Diego Garc\u00edaSay\u00e1n Juez Alberto P\u00e9rez P\u00e9rez Juez y Eduardo Vio Grossi Juez. presentes ", - "values": [ - "Corte Interamericana de Derechos Humanos" - ] - }, - { - "text": "RESOLUCI\u00d3N DEL PRESIDENTE DE LA CORTE INTERAMERICANA DE DERECHOS HUMANOS DE DE FEBRERO DE MEDIDAS PROVISIONALES ADOPTADAS POR LA CORTE INTERAMERICANA DE DERECHOS HUMANOS RESPECTO DE LA REP\u00daBLICA DE GUATEMALA CASO CARPIO NICOLLE VISTOS La Resoluci\u00f3n de la Corte Interamericana de Derechos Humanos en adelante la Corte de de septiembre de que Requiri\u00f3 al Estado que incluya en su pr\u00f3ximo informe documentaci\u00f3n id\u00f3nea sobre la situaci\u00f3n de la causa No. y de los avances concretos en las de las ", - "values": [ - "Corte Interamericana de Derechos Humanos" - ] - }, - { - "text": "RESOLUCI\u00d3N DE LA CORTE INTERAMERICANA DE DERECHOS HUMANOS DE DE ENERO DE SOLICITUD DE MEDIDAS PROVISIONALES PRESENTADA POR LA INTERVINIENTE COM\u00daN DE LOS REPRESENTANTES DE LAS V\u00cdCTIMAS Y SUS FAMILIARES EN EL CASO DEL PENAL MIGUEL CASTRO CASTRO VISTOS El escrito de de enero de y sus anexos mediante los cuales la se\u00f1ora M\u00f3nica Feria Tinta interviniente com\u00fan de los representantes de las presuntas v\u00edctimas y sus familiares en el caso del Penal Miguel Castro Castro en adelante la solicitante ", - "values": [ - "Corte Interamericana de Derechos Humanos" - ] - }, - { - "text": "Resoluci\u00f3n del Presidente de la Corte Interamericana de Derechos Humanos de de diciembre de Medidas Provisionales Respecto de la Rep\u00fablica de Colombia Asunto \u00c1lvarez y otros VISTOS La Resoluci\u00f3n del Presidente de la Corte Interamericana de Derechos Humanos en adelante el Presidente de de julio de en cuya parte dispositiva decidi\u00f3 Requerir a la Rep\u00fablica de Colombia que adoptara sin dilaci\u00f3n cuantas medidas sean necesarias para proteger la vida e integridad de Jos\u00e9 Daniel \u00c1lvarez Nidia ", - "values": [ - "Corte Interamericana de Derechos Humanos" - ] - }, - { - "text": "RESOLUCI\u00d3N DE LA CORTE INTERAMERICANA DE DERECHOS HUMANOS DE DE MAYO DE SOLICITUD DE MEDIDAS PROVISIONALES DE LA COMISI\u00d3N INTERAMERICANA DE DERECHOS HUMANOS RESPECTO DE LA REP\u00daBLICA DE COSTA RICA CASO DEL PERI\u00d3DICO LA NACI\u00d3N VISTOS El escrito de la Comisi\u00f3n Interamericana de Derechos Humanos en adelante la Comisi\u00f3n o la Comisi\u00f3n Interamericana de de marzo de mediante el cual present\u00f3 una solicitud de medidas provisionales a favor de los se\u00f1ores Mauricio Herrera Ulloa y Fern\u00e1n Vargas y ", - "values": [ - "Corte Interamericana de Derechos Humanos" - ] - }, - { - "text": "Resoluci\u00f3n de la Corte Interamericana de Derechos Humanos de de julio de Caso Carpio Nicolle vs. Guatemala Medidas Provisionales VISTO Las Resoluciones del Presidente de la Corte Interamericana de Derechos Humanos en adelante la Corte la Corte Interamericana o el Tribunal de de junio y de julio de y las Resoluciones de la Corte de de septiembre de de febrero y de septiembre de de septiembre de de junio y de noviembre de de septiembre de de septiembre de y de julio de En ", - "values": [ - "Corte Interamericana de Derechos Humanos" - ] - }, - { - "text": "VOTO CONCURRENTE DEL JUEZ NOVALES AGUIRRE He concurrido con mi voto en esta sentencia en la que la Corte Interamericana de Derechos Humanos estableci\u00f3 la responsabilidad internacional del Estado de Guatemala por violaciones a los art\u00edculos y de la Convenci\u00f3n Americana en relaci\u00f3n con el art\u00edculo de la misma en perjuicio de los familiares del se\u00f1or Nicholas Blake. A\u00fan cuando la Comisi\u00f3n Interamericana no incluy\u00f3 en la demanda ante la Corte al se\u00f1or Griffith Davis lo que lo excluy\u00f3 como parte ", - "values": [ - "Corte Interamericana de Derechos Humanos" - ] - }, - { - "text": "I. ANTECEDENTES INFORME N\u00ba SOBRE ADMISIBILIDAD CASO GUATEMALA de marzo de El d\u00eda de septiembre de la se\u00f1ora Myrna Mack sal\u00eda de su trabajo situado en la Ciudad de Guatemala con el objeto de dirigirse a su domicilio cuando dos individuos armados con armas cortantes la sorprendieron y la atacaron hasta darle muerte produci\u00e9ndole pu\u00f1aladas en el cuerpo. Luego los individuos se alejaron del lugar sustrayendo el bolso de mano de la v\u00edctima su portafolio y una bolsa pl\u00e1stica que la v\u00edctima ", - "values": [ - "Comisi\u00f3n Interamericana de Derechos Humanos" - ] - }, - { - "text": "RESOLUCI\u00d3N DE LA CORTE INTERAMERICANA DE DERECHOS HUMANOS DE DE MAYO DE CASO VALLE JARAMILLO VS. COLOMBIA SUPERVISI\u00d3N DE CUMPLIMIENTO DE SENTENCIA VISTO La Sentencia de fondo reparaciones y costas en adelante la Sentencia dictada por la Corte Interamericana de Derechos Humanos en adelante la Corte la Corte Interamericana o el Tribunal el de noviembre de la cual en su resolutivo decimonoveno dispuso que el Estado deb\u00eda otorgar a Nelly Valle Jaramillo y Carlos Fernando Jaramillo Correa en el", - "values": [ - "Corte Interamericana de Derechos Humanos" - ] - }, - { - "text": "RELAT\u00d3RIO N PETI\u00c7\u00c3O ADMISSIBILIDADE COMUNIDADE IND\u00cdGENA XAKMOK K\u00c1SEK DO POVO ENXET PARAGUAI de fevereiro de I. RESUMO Em de maio de a Comiss\u00e3o Interamericana de Direitos Humanos doravante denominada a Comiss\u00e3o ou a CIDH recebeu uma peti\u00e7\u00e3o apresentada pela organiza\u00e7\u00e3o n\u00e3o governamental Terraviva para os Povos Ind\u00edgenas de Chaco TERRAVIVA doravante denominada os peticion\u00e1rios em representa\u00e7\u00e3o da Comunidade Ind\u00edgena Xakmok K\u00e1sek do Povo Enxet e seus membros doravante denominada a Ind\u00edgena", - "values": [ - "Comisi\u00f3n Interamericana de Derechos Humanos" - ] - }, - { - "text": "RESOLUCI\u00d3N DE LA CORTE INTERAMERICANA DE DERECHOS HUMANOS DEL DE ENERO DE MEDIDAS PROVISIONALES SOLICITADAS POR LA COMISI\u00d3N INTERAMERICANA DE DERECHOS HUMANOS RESPECTO DEL PER\u00da CASO DE PENALES PERUANOS La Corte Interamericana de Derechos Humanos integrada de la siguiente manera H\u00e9ctor FixZamudio Presidente Sonia Picado Sotela Vicepresidente Rafael Nieto Navia Juez Alejandro Montiel Arg\u00fcello Juez Hern\u00e1n Salgado Pesantes Juez Asdr\u00fabal AguiarAranguren Juez presentes adem\u00e1s Manuel E. Ventura y ", - "values": [ - "Corte Interamericana de Derechos Humanos" - ] - }, - { - "text": "VOTO RAZONADO CONCURRENTE DEL JUEZ SERGIO GARC\u00cdA RAM\u00cdREZ A LAS SENTENCIAS SOBRE EXCEPCIONES PRELIMINARES EN LOS CASOS HILAIRE CONSTANTINE Y OTROS Y BENJAM\u00cdN Y OTROS He sumado mi voto al de mis colegas en la Corte Interamericana de Derechos Humanos en las Sentencias sobre excepciones preliminares en los Casos Hilaire Contantine y Otros y Benjam\u00edn y Otros del de septiembre de que se fundan en el mismo razonamiento y llegan a id\u00e9nticas decisiones en lo concerniente a la supuesta incompetencia ", - "values": [ - "Corte Interamericana de Derechos Humanos" - ] - }, - { - "text": "VOTO PARCIALMENTE DISIDENTE DE LA JUEZA C. MEDINA QUIROGA Estoy de acuerdo con la sentencia de esta Corte excepto en lo que respecta a la decisi\u00f3n de considerar violado el art\u00edculo de la Convenci\u00f3n. Repito aqu\u00ed mi disidencia en el caso comerciantes fallado recientemente por la Corte El art\u00edculo consagra el derecho del individuo a que sus derechos humanos sean protegidos en el \u00e1mbito nacional de una manera sencilla r\u00e1pida y efectiva lo que se conoce en nuestro continente como el derecho al ", - "values": [ - "Corte Interamericana de Derechos Humanos" - ] - }, - { - "text": "RESOLUCI\u00d3N DE LA CORTE INTERAMERICANA DE DERECHOS HUMANOS DE DE NOVIEMBRE DE CASO ARG\u00dcELLES Y OTROS VS. ARGENTINA SUPERVISI\u00d3N DE CUMPLIMIENTO DE SENTENCIA VISTO La Sentencia de excepciones preliminares fondo reparaciones y costas en adelante la Sentencia o el Fallo dictada por la Corte Interamericana de Derechos Humanos en adelante la Corte la Corte Interamericana o el Tribunal el de noviembre de a Corte declar\u00f3 la responsabilidad internacional de la Rep\u00fablica Argentina en adelante el o ", - "values": [ - "Corte Interamericana de Derechos Humanos" - ] - }, - { - "text": "VOTO RAZONADO DEL JUEZ SERGIO GARC\u00cdA RAM\u00cdREZ EN RELACI\u00d3N CON LA SENTENCIA DE LA CORTE INTERAMERICANA DE DERECHOS HUMANOS DEL DE JUNIO DE EN EL CASO DE LAS MASACRES DE ITUANGO ADMISI\u00d3N DE HECHOS Y PRETENSIONES Y SENTENCIA DE LA CORTEIDH En diversas oportunidades me he referido a ciertos actos realizados en el curso del procedimiento internacional espec\u00edficamente el proceso judicial seguido ante la Corte Interamericana de Derechos Humanos que poseen relevancia sustantiva y procesal e influyen", - "values": [ - "Corte Interamericana de Derechos Humanos" - ] - }, - { - "text": "RESOLUCI\u00d3N DEL PRESIDENTE DE LA CORTE INTERAMERICANA DE DERECHOS HUMANOS DE DE DICIEMBRE DE MEDIDAS URGENTES RESPECTO DE EL SALVADOR A FAVOR DE RICARDO ALBERTO IGLESIAS HERRERA EN RELACION CON LAS MEDIDAS PROVISIONALES A FAVOR DE GLORIA GIRALT DE GARCIA PRIETO Y OTROS CASO GARCIA PRIETO Y OTRO VISTO El escrito de solicitudes argumentos y pruebas presentado por el Centro por la Justicia y el Derecho Internacional y el Instituto de Derechos Humanos de la Universidad Centroamericana Jos\u00e9 Sime\u00f3n", - "values": [ - "Corte Interamericana de Derechos Humanos" - ] - }, - { - "text": "RESOLUCI\u00d3N DEL PRESIDENTE DE LA CORTE INTERAMERICANA DE DERECHOS HUMANOS DE DE AGOSTO DE SOLICITUD DE AMPLIACI\u00d3N DE MEDIDAS PROVISIONALES ASUNTO DE LAS PENITENCIAR\u00cdAS DE MENDOZA VISTOS La Resoluci\u00f3n de la Corte Interamericana de Derechos Humanos en adelante la Corte o la Corte Interamericana de de noviembre de mediante la cual resolvi\u00f3 de conformidad con los art\u00edculos de la Convenci\u00f3n Americana sobre Derechos Humanos en adelante la Convenci\u00f3n o la Convenci\u00f3n Americana y del Reglamento de", - "values": [ - "Corte Interamericana de Derechos Humanos" - ] - }, - { - "text": "RESOLUCI\u00d3N DE LA CORTE INTERAMERICANA DE DERECHOS HUMANOS DE OCTUBRE DE MEDIDAS PROVISIONALES RESPECTO DE LA REP\u00daBLICA DE HONDURAS ASUNTO JOS\u00c9 LUIS GALD\u00c1MEZ \u00c1LVAREZ Y OTROS VISTO La Resoluci\u00f3n dictada por la Corte Interamericana de Derechos Humanos en adelante la Corte Interamericana la Corte o el Tribunal el de febrero de mediante la cual entre otros requiri\u00f3 a la Rep\u00fablica de Honduras en adelante el Estado o Honduras que mantenga las medidas que haya implementado as\u00ed como tambi\u00e9n de ", - "values": [ - "Corte Interamericana de Derechos Humanos" - ] - }, - { - "text": "Resoluci\u00f3n de la Corte Interamericana de Derechos Humanos de agosto de Medidas Provisionales respecto de la Rep\u00fablica Bolivariana de Venezuela Asunto Carlos Nieto Palma y otro. VISTOS La Resoluci\u00f3n de la Corte Interamericana de Derechos Humanos en adelante la Corte Interamericana la Corte o el Tribunal de de julio de mediante la cual otorg\u00f3 medidas provisionales a favor del se\u00f1or Carlos Nieto Palma y sus familiares Ivonne Palma S\u00e1nchez Eva Teresa Nieto Palma y John Carmelo Laicono Nieto. ", - "values": [ - "Corte Interamericana de Derechos Humanos" - ] - }, - { - "text": "Resoluci\u00f3n de la Presidenta de la Corte Interamericana De Derechos Humanos De de marzo de Caso Comunidad Mayagna Sumo Awas Tingni Vs. Nicaragua Supervisi\u00f3n de Cumplimiento de Sentencia VISTOS La Sentencia de fondo reparaciones y costas dictada en el Caso de la Comunidad Mayagna Sumo Awas Tingni vs. Nicaragua por la Corte Interamericana de Derechos Humanos en adelante la Corte la Corte Interamericana o el Tribunal el de agosto de en cuyos puntos resolutivos decidi\u00f3 que el Estado debe en ", - "values": [ - "Corte Interamericana de Derechos Humanos" - ] - }, - { - "text": "RESOLUCI\u00d3N DE LA CORTE INTERAMERICANA DE DERECHOS HUMANOS DE DE ABRIL DE MEDIDAS PROVISIONALES ADOPTADAS POR LA CORTE INTERAMERICANA DE DERECHOS HUMANOS RESPECTO DE LA REP\u00daBLICA DE COLOMBIA CASO CABALLERO DELGADO Y SANTANA VISTOS La resoluci\u00f3n de la Corte Interamericana de Derechos Humanos en adelante la Corte o el Tribunal de de diciembre de en la cual decidi\u00f3 transmitir al Gobierno de Colombia la solicitud de la Comisi\u00f3n Interamericana de Derechos Humanos para que adopte sin dilaci\u00f3n ", - "values": [ - "Corte Interamericana de Derechos Humanos" - ] - }, - { - "text": "RESOLUCI\u00d3N DE LA CORTE INTERAMERICANA DE DERECHOS HUMANOS DE DE SEPTIEMBRE DE CASO TRIST\u00c1N DONOSO VS. PANAM\u00c1 SUPERVISI\u00d3N DE CUMPLIMIENTO DE SENTENCIA VISTO La Sentencia de Excepci\u00f3n Preliminar Fondo Reparaciones y Costas emitida el de enero de en adelante la Sentencia por la Corte Interamericana de Derechos Humanos en adelante la Corte Interamericana la Corte o el Tribunal mediante la cual dispuso inter alia que El Estado debe pagar al se\u00f1or Santander Trist\u00e1n Donoso el monto fijado en el ", - "values": [ - "Corte Interamericana de Derechos Humanos" - ] - }, - { - "text": "RESOLUCI\u00d3N DEL PRESIDENTE DE LA CORTE INTERAMERICANA DE DERECHOS HUMANOS DE DE SEPTIEMBRE DE MEDIDAS PROVISIONALES RESPECTO DE LA REP\u00daBLICA DE ARGENTINA ASUNTO DE LAS PENITENCIAR\u00cdAS DE MENDOZA VISTOS La Resoluci\u00f3n de la Corte Interamericana de Derechos Humanos en adelante la Corte o la Corte Interamericana de de noviembre de mediante la cual resolvi\u00f3 en los t\u00e9rminos de los art\u00edculos de la Convenci\u00f3n Americana sobre Derechos Humanos en adelante la Convenci\u00f3n o la Convenci\u00f3n Americana y ", - "values": [ - "Corte Interamericana de Derechos Humanos" - ] - }, - { - "text": "VOTO DISIDENTE DEL JUEZ AA. CAN\u00c7ADO TRINDADE Lamento no poder compartir la decisi\u00f3n tomada por la mayor\u00eda de la Corte Interamericana de Derechos Humanos en los puntos resolutivos ns. y y el criterio por \u00e9sta adoptado sobre estos puntos en los p\u00e1rrafos considerativos ns. y respectivamente de la presente Sentencia sobre fondo y reparaciones en el caso de las Hermanas Serrano Cruz versus El Salvador en el sentido de haber la Corte construido su Sentencia con base en su anterior decisi\u00f3n ", - "values": [ - "Corte Interamericana de Derechos Humanos" - ] - }, - { - "text": "RESOLUCI\u00d3N DE LA CORTE INTERAMERICANA DE DERECHOS HUMANOS DE DE NOVIEMBRE DE CASO TRUJILLO OROZA VS. BOLIVIA CUMPLIMIENTO DE SENTENCIA VISTOS La Sentencia sobre el fondo dictada por la Corte Interamericana de Derechos Humanos en adelante la Corte o el Tribunal el de enero de en la cual por unanimidad Admiti\u00f3 la aceptaci\u00f3n de los hechos y el reconocimiento de responsabilidad efectuados por el Estado. Declar\u00f3 conforme a los t\u00e9rminos del reconocimiento de responsabilidad internacional por ", - "values": [ - "Corte Interamericana de Derechos Humanos" - ] - }, - { - "text": "Resoluci\u00f3n de la Corte Interamericana de Derechos Humanos de de enero de Medidas Provisionales respecto de Colombia Asunto Mery Naranjo y otros VISTOS La Resoluci\u00f3n de la Corte Interamericana de Derechos Humanos en adelante la Corte la Corte Interamericana o el Tribunal de de julio de en la cual orden\u00f3 que el Estado de Colombia en adelante el Estado o Colombia adoptara medidas provisionales en el presente asunto. La Resoluci\u00f3n de la Corte Interamericana de de septiembre de mediante la ", - "values": [ - "Corte Interamericana de Derechos Humanos" - ] - }, - { - "text": "CASO SALVADOR CHIRIBOGA VS. ECUADOR SENTENCIA DE EXCEPCI\u00d3N PRELIMINAR Y FONDO VOTO CONCURRENTE DEL JUEZ MANUEL E. VENTURA ROBLES He concurrido con mi voto a la aprobaci\u00f3n de la Sentencia de Excepci\u00f3n Preliminar y Fondo en el Caso Salvador Chiriboga Vs. Ecuador pero hubiera preferido que el concepto de justo equilibrio entre el inter\u00e9s general y el inter\u00e9s particular hubiera sido conceptualmente desarrollado. Al considerar el tema de las restricciones al derecho a la propiedad privada en una ", - "values": [ - "Corte Interamericana de Derechos Humanos" - ] - }, - { - "text": "Resoluci\u00f3n de la Corte Interamericana de Derechos Humanos de de noviembre de Medidas Provisionales Respecto de la Rep\u00fablica Bolivariana de Venezuela Asuntos Internado Judicial de Monagas La Pica Centro Penitenciario Regi\u00f3n Capital Yare I y Yare II C\u00e1rcel de Yare Centro Penitenciario de la Regi\u00f3n Centro Occidental C\u00e1rcel de Uribana e Internado Judicial Capital El Rodeo I y el Rodeo II Visto Las Resoluciones de la Corte Interamericana de Derechos Humanos en adelante la Corte Interamericana la ", - "values": [ - "Corte Interamericana de Derechos Humanos" - ] - }, - { - "text": "RESOLUCI\u00d3N DEL PRESIDENTE DE LA CORTE INTERAMERICANA DE DERECHOS HUMANOS DE DE NOVIEMBRE DE CASO D\u00cdAZ PE\u00d1A VS. VENEZUELA VISTO El escrito de sometimiento del caso presentado por la Comisi\u00f3n Interamericana de Derechos Humanos en adelante tambi\u00e9n la Comisi\u00f3n Interamericana o la Comisi\u00f3n ante la Corte Interamericana de Derechos Humanos en adelante la Corte Interamericana la Corte o el Tribunal el de noviembre de mediante el cual ofreci\u00f3 dos dict\u00e1menes periciales sobre los que indic\u00f3 su objeto", - "values": [ - "Corte Interamericana de Derechos Humanos" - ] - }, - { - "text": "DISSENTING OPINION OF JUDGE AD HOC ALEJANDRO MONTIEL ARG\u00dcELLO I have dissented from the operative paragraphs of this judgment declaring that the State of El Salvador has violated Articles and of the American Convention on Human Rights. The Court has interpreted the encompasses judicial guarantees in proceedings but also establishes the may entail its responsibility because it former provision in the sense that it not only favor of the accused or the parties to the States obligation to any ", - "values": [ - "Corte Interamericana de Derechos Humanos" - ] - }, - { - "text": "RESOLUCI\u00d3N DE LA CORTE INTERAMERICANA DE DERECHOS HUMANOS DE DE AGOSTO DE MEDIDAS PROVISIONALES RESPECTO DE LA REP\u00daBLICA DOMINICANA CASO GONZ\u00c1LEZ MEDINA Y FAMILIARES VISTO El escrito de los representantes de las presuntas v\u00edctimas en adelante los representantes de de agosto de y su anexo mediante los cuales sometieron a la Corte Interamericana de Derechos Humanos en adelante la Corte Interamericana la Corte o el Tribunal una solicitud de medidas provisionales de conformidad con los de la", - "values": [ - "Corte Interamericana de Derechos Humanos" - ] - }, - { - "text": "VOTO RAZONADO CONCURRENTE DEL JUEZ HERN\u00c1N SALGADO PESANTES A LAS SENTENCIAS SOBRE EXCEPCIONES PRELIMINARES EN LOS CASOS HILAIRE CONSTANTINE Y OTROS Y BENJAMIN Y OTROS Estando de acuerdo en lo fundamental con la sentencia en el Caso Hilaire vs. Trinidad y Tobago quiero agregar las siguientes consideraciones En materia de reservas a los tratados al igual que en otras cuestiones del Derecho Internacional ha habido una importante evoluci\u00f3n marcada por un progreso constante. Bien podr\u00eda situarse ", - "values": [ - "Corte Interamericana de Derechos Humanos" - ] - }, - { - "text": "Corte Interamericana de Derechos Humanos Caso Aloeboetoe y otros Vs. Surinam Sentencia de de diciembre de Fondo En el caso Aloeboetoe y otros la Corte Interamericana de Derechos Humanos integrada por los siguientes jueces H\u00e9ctor FixZamudio Presidente Thomas Buergenthal Juez Rafael Nieto Navia Juez Sonia Picado Sotela Juez Julio A. Barberis Juez Ant\u00f4nio A. Can\u00e7ado Trindade Juez ad hoc presentes adem\u00e1s Manuel E. Ventura Robles Secretario y Ana Mar\u00eda Reina Secretaria adjunta de acuerdo con los ", - "values": [ - "Corte Interamericana de Derechos Humanos" - ] - }, - { - "text": "Corte Interamericana de Derechos Humanos Caso Zambrano V\u00e9lez y otros Vs. Ecuador Sentencia de de julio de Fondo Reparaciones y Costas En el caso Zambrano V\u00e9lez y Otros La Corte Interamericana de Derechos Humanos en adelante la Corte Interamericana la Corte o el Tribunal integrada por los siguientes jueces Sergio Garc\u00eda Ram\u00edrez Presidente Cecilia Medina Quiroga Vicepresidenta Manuel E. Ventura Robles Juez Diego Garc\u00edaSay\u00e1n Juez Leonardo A. Franco Juez Margarette May Macaulay Jueza y Rhadys ", - "values": [ - "Corte Interamericana de Derechos Humanos" - ] - }, - { - "text": "CORTE INTERAMERICANA DE DERECHOS HUMANOS CASO COMUNIDAD CAMPESINA DE SANTA B\u00c1RBARA VS. PER\u00da SENTENCIA DE DE SEPTIEMBRE DE Excepciones Preliminares Fondo Reparaciones y Costas En el caso Comunidad Campesina de Santa B\u00e1rbara Vs. Per\u00fa la Corte Interamericana de Derechos Humanos en adelante la Corte Interamericana la Corte o el Tribunal integrada por los siguientes jueces Humberto Antonio Sierra Porto Presidente Roberto F. Caldas Vicepresidente Manuel E. Ventura Robles Juez Alberto P\u00e9rez P\u00e9rez ", - "values": [ - "Corte Interamericana de Derechos Humanos" - ] - }, - { - "text": "RELAT\u00d3RIO N\u00ba ADMISSIBILIDADE PETI\u00c7\u00c3O DAMI\u00c3O XIMENES LOPES BRASIL de outubro de I. RESUMO No dia de novembro de a senhora Irene Ximenes Lopes Miranda apresentou ante a Comiss\u00e3o Interamericana de Direitos Humanos doravante a Comiss\u00e3o ou a CIDH uma peti\u00e7\u00e3o contra a Rep\u00fablica Federativa do Brasil doravante Brasil o Estado ou o Estado Brasileiro. A referida peti\u00e7\u00e3o denunciava a viola\u00e7\u00e3o dos artigos e da Conven\u00e7\u00e3o Americana sobre Direitos Humanos doravante a Conven\u00e7\u00e3o ou a Conven\u00e7\u00e3o \u00e0 ", - "values": [ - "Comisi\u00f3n Interamericana de Derechos Humanos" - ] - }, - { - "text": "RESOLUCI\u00d3N DE LA CORTE INTERAMERICANA DE DERECHOS HUMANOS DE DE SEPTIEMBRE DE MEDIDAS PROVISIONALES ADOPTADAS POR LA CORTE INTERAMERICANA DE DERECHOS HUMANOS RESPECTO DE LA REP\u00daBLICA DE GUATEMALA CASO CARPIO NICOLLE VISTO La Resoluci\u00f3n de la Corte Interamericana de Derechos Humanos en adelante la Corte o la Corte Interamericana de de febrero de mediante la cual se resolvi\u00f3 prorrogar hasta el de septiembre de las medidas provisionales ordenadas mediante resoluci\u00f3n de la Corte de de de ", - "values": [ - "Corte Interamericana de Derechos Humanos" - ] - }, - { - "text": "RESOLUCI\u00d3N DEL PRESIDENTE DE LA CORTE INTERAMERICANA DE DERECHOS HUMANOS DE DE ENERO DE SOLICITUD DE MEDIDAS PROVISIONALES CASO DE LA CRUZ FLORES VS. PER\u00da VISTO La Sentencia de fondo reparaciones y costas dictada por la Corte Interamericana de Derechos Humanos en adelante la Corte la Corte Interamericana o el Tribunal el de noviembre de en el caso De La Cruz Flores Vs. Per\u00fa En dicho fallo se estableci\u00f3 que el Estado viol\u00f3 entre otros derechos el principio de legalidad y de en perjuicio ", - "values": [ - "Corte Interamericana de Derechos Humanos" - ] - }, - { - "text": "VOTO FUNDAMENTADO DO JUIZ AA. CAN\u00c7ADO TRINDADE Finalmente chegou ao conhecimento de um tribunal internacional a Corte Interamericana de Direitos Humanos a sinistra Opera\u00e7\u00e3o Condor na medida em que o presente caso Goibur\u00fa e outros versus Paraguai se enquadra nela e da qual \u00e9 um microcosmo. Na presente Senten\u00e7a a Corte valorou o acatamento do Estado como contribui\u00e7\u00e3o positiva ao desenvolvimento deste processo par. e acrescentou que proferir uma Senten\u00e7a na qual se determine a verdade dos fatos ", - "values": [ - "Corte Interamericana de Derechos Humanos" - ] - }, - { - "text": "INFORME N\u00ba PETICI\u00d3N ADMISIBILIDAD MERY NARANJO Y OTRAS COMUNA COLOMBIA de julio de I. RESUMEN El de marzo de la Comisi\u00f3n Interamericana de Derechos Humanos en adelante la Comisi\u00f3n recibi\u00f3 una petici\u00f3n presentada por el Grupo Interdisciplinario por los Derechos Humanos en adelante los peticionarios en la cual se alega la responsabilidad de la Rep\u00fablica de Colombia en adelante el Estado o el Estado Colombiano en la presunta detenci\u00f3n arbitraria de las l\u00edderes sociales Mar\u00eda del Socorro ", - "values": [ - "Comisi\u00f3n Interamericana de Derechos Humanos" - ] - }, - { - "text": "RESOLUCI\u00d3N DEL PRESIDENTE DE LA CORTE INTERAMERICANA DE DERECHOS HUMANOS EN EJERCICIO PARA EL PRESENTE CASO DE DE DICIEMBRE DE CASO CRUZ S\u00c1NCHEZ Y OTROS VS. PER\u00da CONVOCATORIA A AUDIENCIA VISTO El escrito de sometimiento del caso presentado por la Comisi\u00f3n Interamericana de Derechos Humanos en adelante tambi\u00e9n la Comisi\u00f3n Interamericana o la Comisi\u00f3n ante la Corte Interamericana de Derechos Humanos en adelante la Corte Interamericana la Corte o el Tribunal el de diciembre de mediante el ", - "values": [ - "Corte Interamericana de Derechos Humanos" - ] - }, - { - "text": "RESOLUCI\u00d3N DEL PRESIDENTE DE LA CORTE INTERAMERICANA DE DERECHOS HUMANOS DE DE JUNIO DE CASO GONZ\u00c1LEZ MEDINA Y FAMILIARES VS. REP\u00daBLICA DOMINICANA VISTO El escrito de demanda presentado el de mayo de y sus anexos remitidos el de mayo de por la Comisi\u00f3n Interamericana de Derechos Humanos en adelante la Comisi\u00f3n Interamericana o la Comisi\u00f3n ante la Corte Interamericana de Derechos Humanos en adelante la Corte Interamericana la Corte o el Tribunal mediante el cual ofreci\u00f3 dos peritajes. En ", - "values": [ - "Corte Interamericana de Derechos Humanos" - ] - }, - { - "text": "RESOLUCI\u00d3N DE LA CORTE INTERAMERICANA DE DERECHOS HUMANOS DE DE MARZO DE CASO DEL PENAL MIGUEL CASTRO CASTRO VS. PER\u00da SUPERVISI\u00d3N DE CUMPLIMIENTO DE SENTENCIA VISTO La Sentencia de fondo reparaciones y costas en adelante la Sentencia emitida en el presente caso por la Corte Interamericana de Derechos Humanos en adelante la Corte Interamericana la Corte o el Tribunal el de noviembre de Tomando en cuenta el reconocimiento parcial de responsabilidad efectuado por la Rep\u00fablica del Per\u00fa el o", - "values": [ - "Corte Interamericana de Derechos Humanos" - ] - }, - { - "text": "Resoluci\u00f3n de la Corte Interamericana de Derechos Humanos De de febrero de Caso Cantoral Benavides Vs. Per\u00fa Supervisi\u00f3n de Cumplimiento de Sentencia VISTOS La Sentencia de fondo dictada el de agosto de en cuyos puntos resolutivos d\u00e9cimo segundo y d\u00e9cimo tercero la Corte Interamericana de Derechos Humanos en adelante la Corte la Corte Interamericana o el Tribunal decidi\u00f3 que el Estado debe ordenar una investigaci\u00f3n para determinar las personas responsables de las violaciones de los a ", - "values": [ - "Corte Interamericana de Derechos Humanos" - ] - }, - { - "text": "RESOLUCI\u00d3N DEL PRESIDENTE DE LA CORTE INTERAMERICANA DE DERECHOS HUMANOS DE DE JULIO DE MEDIDAS PROVISIONALES RESPECTO DE LA REP\u00daBLICA DE GUATEMALA ASUNTO DE LA FUNDACI\u00d3N DE ANTROPOLOG\u00cdA FORENSE DE GUATEMALA VISTOS Las Resoluciones de la Corte Interamericana de Derechos Humanos en adelante la Corte la Corte Interamericana o el Tribunal de de julio de y de noviembre de mediante las cuales orden\u00f3 la adopci\u00f3n de medidas provisionales y el mantenimiento de las existentes a favor de los de ", - "values": [ - "Corte Interamericana de Derechos Humanos" - ] - }, - { - "text": "RESOLUCI\u00d3N DE LA CORTE INTERAMERICANA DE DERECHOS HUMANOS DE DE SEPTIEMBRE DE AMPLIACI\u00d3N DE LAS MEDIDAS PROVISIONALES SOLICITADA POR LA COMISI\u00d3N INTERAMERICANA DE DERECHOS HUMANOS RESPECTO DE LA REP\u00daBLICA DE VENEZUELA CASO LUISIANA R\u00cdOS Y OTROS RADIO CARACAS TELEVISI\u00d3N RCTV VISTOS La Resoluci\u00f3n de la Corte Interamericana de Derechos Humanos en adelante la Corte Interamericana la Corte o el Tribunal de de noviembre de respecto del Estado de Venezuela Rep\u00fablica Bolivariana de Venezuela en ", - "values": [ - "Corte Interamericana de Derechos Humanos" - ] - }, - { - "text": "Corte Interamericana de Direitos Humanos Caso Vel\u00e1squez Rodr\u00edguez Vs. Honduras Senten\u00e7a de de julho de M\u00e9rito No caso Vel\u00e1squez Rodr\u00edguez a Corte Interamericana de Direitos Humanos integrada pelos seguintes ju\u00edzes Rafael Nieto Navia Presidente H\u00e9ctor Gros Espiell VicePresidente Rodolfo E. Piza E Juiz Thomas Buergenthal Juiz Pedro Nikken Juiz H\u00e9ctor FixZamudio Juiz Rigoberto Espinal Ir\u00edas Juiz ad hoc presentes ademais Charles Moyer Secret\u00e1rio e Manuel Ventura Secret\u00e1rio Adjunto de acordo com o", - "values": [ - "Corte Interamericana de Derechos Humanos" - ] - }, - { - "text": "Corte Interamericana de Derechos Humanos Caso Trabajadores Cesados del Congreso Aguado Alfaro y otros Vs. Per\u00fa Sentencia de de noviembre de Excepciones Preliminares Fondo Reparaciones y Costas En el caso Trabajadores Cesados del Congreso Aguado Alfaro y otros la Corte Interamericana de Derechos Humanos en adelante la Corte Interamericana la Corte o el Tribunal integrada por los siguientes jueces Sergio Garc\u00eda Ram\u00edrez Presidente Alirio Abreu Burelli Vicepresidente Ant\u00f4nio A. Can\u00e7ado Trindade", - "values": [ - "Corte Interamericana de Derechos Humanos" - ] - }, - { - "text": "RESOLUCI\u00d3N DE LA CORTE INTERAMERICANA DE DERECHOS HUMANOS DE DE NOVIEMBRE DE MEDIDAS PROVISIONALES RESPECTO DE LA REP\u00daBLICA DE ARGENTINA ASUNTO MILLACURA LLAIP\u00c9N Y OTROS VISTO La Resoluci\u00f3n del Presidente de la Corte Interamericana de Derechos Humanos en adelante la Corte Interamericana la Corte o el Tribunal de de junio de as\u00ed como las Resoluciones del Tribunal de de julio de y de febrero de En esta \u00faltima la Corte resolvi\u00f3 inter alia reiterar al Estado de Argentina que mantuviera ", - "values": [ - "Corte Interamericana de Derechos Humanos" - ] - }, - { - "text": "RESOLUCI\u00d3N DE LA CORTE INTERAMERICANA DE DERECHOS HUMANOS DE DE NOVIEMBRE DE CASO DEL TRIBUNAL CONSTITUCIONAL AGUIRRE ROCA REY TERRY Y REVOREDO MARSANO VS. PER\u00da CUMPLIMIENTO DE SENTENCIA VISTOS La Sentencia dictada por la Corte Interamericana de Derechos Humanos en adelante la Corte la Corte Interamericana o el Tribunal el de enero de mediante la cual declar\u00f3 que el Estado viol\u00f3 en perjuicio de Manuel Aguirre Roca Guillermo Rey Terry y Delia Revoredo Marsano el derecho a las garant\u00edas ", - "values": [ - "Corte Interamericana de Derechos Humanos" - ] - }, - { - "text": "VOTO CONCURRENTE DEL JUEZ GARC\u00cdA RAM\u00cdREZ EN RELACI\u00d3N CON LA SENTENCIA DE REPARACIONES DICTADA POR LA CORTE INTERAMERICANA DE DERECHOS HUMANOS EN EL CASO LOAYZA TAMAYO Por lo que respecta al deber del Estado de investigar y sancionar los hechos violatorios de derechos humanos de la se\u00f1ora Loayza Tamayo reproduzco los t\u00e9rminos de mi voto concurrente en la sentencia de reparaciones del caso Castillo Pa\u00e9z de esta misma fecha. San Jos\u00e9 Costa Rica de noviembre de Sergio Garc\u00eda Ram\u00edrez Juez Manuel E.", - "values": [ - "Corte Interamericana de Derechos Humanos" - ] - }, - { - "text": "INFORME N\u00ba PETICI\u00d3N ADMISIBILIDAD ROSENDO RADILLA PACHECO M\u00c9XICO de octubre de I. RESUMEN El de noviembre de Tita Radilla Mart\u00ednez vicepresidenta de la Asociaci\u00f3n de Familiares de Detenidos Desaparecidos y V\u00edctimas de Violaciones a los Derechos Humanos en M\u00e9xico AFADEM y la Comisi\u00f3n Mexicana de Defensa y Promoci\u00f3n de los Derechos Humanos AC. CMDPDH en adelante conjuntamente los peticionarios presentaron a la Comisi\u00f3n Interamericana de Derechos Humanos en adelante la Comisi\u00f3n o la CIDH ", - "values": [ - "Comisi\u00f3n Interamericana de Derechos Humanos" - ] - }, - { - "text": "RESOLUCI\u00d3N DE LA CORTE INTERAMERICANA DE DERECHOS HUMANOS DE DE MARZO DE MEDIDAS PROVISIONALES RESPECTO DE LA REPUBLICA DE COLOMBIA CASO DE LA COMUNIDAD DE PAZ DE SAN JOS\u00c9 DE APARTAD\u00d3 VISTO La Resoluci\u00f3n del Presidente de la Corte Interamericana de Derechos Humanos en adelante la Corte Interamericana la Corte o el Tribunal de de octubre de mediante la cual requiri\u00f3 al Estado de Colombia en adelante el Estado o Colombia que adoptara sin dilaci\u00f3n cuantas medidas fueran necesarias para la e", - "values": [ - "Corte Interamericana de Derechos Humanos" - ] - }, - { - "text": "RESOLUCI\u00d3N DE LA CORTE INTERAMERICANA DE DERECHOS HUMANOS DE DE NOVIEMBRE DE MEDIDAS PROVISIONALES SOLICITADAS POR LA COMISI\u00d3N INTERAMERICANA DE DERECHOS HUMANOS RESPECTO DE LA REP\u00daBLICA DOMINICANA CASO DE HAITIANOS Y DOMINICANOS DE ORIGEN HAITIANO EN LA REP\u00daBLICA DOMINICANA VISTOS La Resoluci\u00f3n de la Corte Interamericana de Derechos Humanos en adelante la Corte Interamericana o la Corte de de agosto de en la que resolvi\u00f3 Requerir al Estado de la Rep\u00fablica Dominicana que adopte sin ", - "values": [ - "Corte Interamericana de Derechos Humanos" - ] - }, - { - "text": "Resoluci\u00f3n de la Corte Interamericana de Derechos Humanos de de febrero de Solicitud de Adopci\u00f3n de Medidas Provisionales Caso De La Cruz Flores Vs. Per\u00fa Visto La Sentencia de fondo reparaciones y costas en adelante la Sentencia emitida en el presente caso por la Corte Interamericana de Derechos Humanos en adelante la Corte la Corte Interamericana o el Tribunal el de noviembre de Las Resoluciones de la Corte Interamericana de de noviembre de y de septiembre de sobre Supervisi\u00f3n de de", - "values": [ - "Corte Interamericana de Derechos Humanos" - ] - }, - { - "text": "INFORME No. PETICI\u00d3N ADMISIBILIDAD BENITO ANTONIO BARRIOS Y OTROS VENEZUELA de enero de I. RESUMEN El de diciembre de la Comisi\u00f3n Interamericana de Derechos Humanos en adelante tambi\u00e9n la Comisi\u00f3n recibi\u00f3 una petici\u00f3n presentada por Eloisa Barrios la Comisi\u00f3n de Derechos Humanos de Justicia y Paz del Estado Aragua y el Centro por la Justicia y el Derecho Internacional CEJIL en adelante tambi\u00e9n los peticionarios en la cual se alega la responsabilidad de agentes de la Rep\u00fablica Bolivariana", - "values": [ - "Comisi\u00f3n Interamericana de Derechos Humanos" - ] - }, - { - "text": "RESOLUCI\u00d3N DE LA CORTE INTERAMERICANA DE DERECHOS HUMANOS DE DE FEBRERO DE MEDIDAS PROVISIONALES ADOPTADAS POR LA CORTE INTERAMERICANA DE DERECHOS HUMANOS RESPECTO DE LA REP\u00daBLICA DOMINICANA CASO DE HAITIANOS Y DOMINICANOS DE ORIGEN HAITIANO EN LA REP\u00daBLICA DOMINICANA VISTO La Resoluci\u00f3n de la Corte Interamericana de Derechos Humanos en adelante la Corte Interamericana la Corte o el Tribunal de de agosto de mediante la cual resolvi\u00f3 Requerir al Estado de la Rep\u00fablica Dominicana que adopte", - "values": [ - "Corte Interamericana de Derechos Humanos" - ] - }, - { - "text": "Corte Interamericana de Derechos Humanos Caso Escu\u00e9 Zapata Vs. Colombia Sentencia de de julio de Fondo Reparaciones y Costas En el caso Escu\u00e9 Zapata la Corte Interamericana de Derechos Humanos en adelante la Corte Interamericana la Corte o el Tribunal integrada por los siguientes jueces Sergio Garc\u00eda Ram\u00edrez Presidente Cecilia Medina Quiroga Vicepresidenta Manuel E. Ventura Robles Juez Diego Garc\u00edaSay\u00e1n Juez Leonardo A. Franco Juez Margarette May Macaulay Jueza Rhadys Abreu Blondet Jueza y ", - "values": [ - "Corte Interamericana de Derechos Humanos" - ] - }, - { - "text": "VOTO RAZONADO DEL JUEZ A. A. CAN\u00c7ADO TRINDADE He concurrido con mi Voto a la adopci\u00f3n de la presente Sentencia de la Corte Interamericana de Derechos Humanos sobre Excepciones Preliminares en el caso Las Palmeras relativo a Colombia mediante la cual la Corte ha desestimado la primera cuarta y quinta excepciones y ha sostenido la tercera y segunda excepciones preliminares interpuestas por el Estado demandado. Entiendo que la Corte ha llegado a una decisi\u00f3n bien fundamentada y en plena con las ", - "values": [ - "Corte Interamericana de Derechos Humanos" - ] - }, - { - "text": "Resoluci\u00f3n de la Corte Interamericana de Derechos Humanos de agosto de Caso Garc\u00eda Prieto y otros Vs. El Salvador Supervisi\u00f3n de Cumplimiento de Sentencia Visto La Sentencia de excepciones preliminares fondo reparaciones y costas en adelante la Sentencia emitida en el presente caso por la Corte Interamericana de Derechos Humanos en adelante la Corte la Corte Interamericana o el Tribunal el de noviembre de La Resoluci\u00f3n de la Corte Interamericana de de febrero de sobre el cumplimiento de", - "values": [ - "Corte Interamericana de Derechos Humanos" - ] - }, - { - "text": "CORTE INTERAMERICANA DE DERECHOS HUMANOS CASO ROCHAC HERN\u00c1NDEZ Y OTROS VS. EL SALVADOR SENTENCIA DE DE OCTUBRE DE Fondo Reparaciones y Costas En el caso Rochac Hern\u00e1ndez y otros Vs. El Salvador la Corte Interamericana de Derechos Humanos en adelante la Corte Interamericana la Corte o el Tribunal integrada por los siguientes Jueces Humberto Antonio Sierra Porto Presidente Roberto F. Caldas Vicepresidente Manuel E. Ventura Robles Juez Diego Garc\u00edaSay\u00e1n Juez Eduardo Vio Grossi Juez y Eduardo ", - "values": [ - "Corte Interamericana de Derechos Humanos" - ] - }, - { - "text": "RESOLUCI\u00d3N DE LA CORTE INTERAMERICANA DE DERECHOS HUMANOS DE DE FEBRERO DE MEDIDAS PROVISIONALES RESPECTO DE HAIT\u00cd ASUNTO A. J. Y OTROS VISTO La Resoluci\u00f3n de la entonces Presidenta de la Corte Interamericana de Derechos Humanos en adelante la Corte Interamericana la Corte o el Tribunal de de agosto de en adelante la Resoluci\u00f3n de la Presidenta o Resoluci\u00f3n de medidas urgentes mediante la cual requiri\u00f3 al Estado que adopte de forma inmediata las medidas que sean necesarias para proteger la", - "values": [ - "Corte Interamericana de Derechos Humanos" - ] - }, - { - "text": "Resoluci\u00f3n de la Corte Interamericana de Derechos Humanos de de noviembre de Medidas Provisionales respecto de la Rep\u00fablica Bolivariana de Venezuela Asunto de la Emisora de Televisi\u00f3n Globovisi\u00f3n VISTOS La Resoluci\u00f3n emitida por la Corte Interamericana de Derechos Humanos en adelante la Corte Interamericana la Corte o el Tribunal el de agosto de en la cual entre otros requiri\u00f3 a la Rep\u00fablica Bolivariana de Venezuela en adelante Venezuela o el Estado que adoptara de forma inmediata todas ", - "values": [ - "Corte Interamericana de Derechos Humanos" - ] - }, - { - "text": "RESOLUCI\u00d3N DE LA CORTE INTERAMERICANA DE DERECHOS HUMANOS DE DE NOVIEMBRE DE MEDIDAS PROVISIONALES SOLICITADAS POR LA COMISI\u00d3N INTERAMERICANA DE DERECHOS HUMANOS RESPECTO DE COLOMBIA CASO DE LA COMUNIDAD DE PAZ DE SAN JOS\u00c9 DE APARTAD\u00d3 VISTOS El escrito de la Comisi\u00f3n Interamericana de Derechos Humanos en adelante la Comisi\u00f3n o la Comisi\u00f3n Interamericana de de octubre de mediante el cual someti\u00f3 a la Corte Interamericana de Derechos Humanos en adelante la Corte o la Corte Interamericana de ", - "values": [ - "Corte Interamericana de Derechos Humanos" - ] - }, - { - "text": "INFORME N\u00ba PETICI\u00d3N ADMISIBILIDAD Santos Ernesto Salinas EL SALVADOR de marzo de I. RESUMEN El de septiembre de la Comisi\u00f3n Interamericana de Derechos Humanos en adelante la Comisi\u00f3n Interamericana o la CIDH recibi\u00f3 una denuncia presentada por la Asociaci\u00f3n ProB\u00fasqueda de Ni\u00f1as y Ni\u00f1os Desaparecidos Asociaci\u00f3n ProB\u00fasqueda en adelante los peticionarios en la cual se alega la responsabilidad internacional de la Rep\u00fablica de El Salvador en adelante el Estado por la desaparici\u00f3n forzada del ", - "values": [ - "Comisi\u00f3n Interamericana de Derechos Humanos" - ] - }, - { - "text": "RESOLUCI\u00d3N DE LA CORTE INTERAMERICANA DE DERECHOS HUMANOS DEL DE AGOSTO DE MEDIDAS PROVISIONALES SOLICITADAS POR LA COMISI\u00d3N INTERAMERICANA DE DERECHOS HUMANOS RESPECTO DE GUATEMALA CASO CHUNIMA La Corte Interamericana de Derechos Humanos integrada de la siguiente manera H\u00e9ctor FixZamudio Presidente Orlando Tovar Tamayo Vicepresidente Thomas Buergenthal Juez Rafael Nieto Navia Juez Policarpo Callejas Bonilla Juez Sonia Picado Sotela Juez Julio A. Barberis Juez presentes adem\u00e1s Manuel E. y ", - "values": [ - "Corte Interamericana de Derechos Humanos" - ] - }, - { - "text": "RESOLUCI\u00d3N DEL PRESIDENTE DE LA CORTE INTERAMERICANA DE DERECHOS HUMANOS DE DE JUNIO DE CASO V\u00c1SQUEZ DURAND Y OTROS VS. ECUADOR VISTO El escrito de sometimiento del caso y el Informe de Admisibilidad y Fondo de la Comisi\u00f3n Interamericana de Derechos Humanos en adelante la Comisi\u00f3n Interamericana o la Comisi\u00f3n el escrito de solicitudes argumentos y pruebas en adelante el escrito de solicitudes y argumentos de los representantes de las presuntas v\u00edctimas en adelante los representantes y el de", - "values": [ - "Corte Interamericana de Derechos Humanos" - ] - }, - { - "text": "VOTO PARCIALMENTE DISIDENTE DEL JUEZ EDUARDO VIO GROSSI CORTE INTERAMERICANA DE DERECHOS HUMANOS CASO DUQUE VS. COLOMBIA SENTENCIA DE DE FEBRERO DE Excepciones Preliminares Fondo Reparaciones y Costas INTRODUCCI\u00d3N. Se emite el presente voto parcialmente disidente a la Sentencia del ep\u00edgrafe en adelante la Sentencia en atenci\u00f3n a que por las razones netamente jur\u00eddicas internacionales que se expondr\u00e1n m\u00e1s adelante no se comparte el Resolutivo N\u00ba de la misma en el que se se\u00f1ala que el Estado ", - "values": [ - "Corte Interamericana de Derechos Humanos" - ] - }, - { - "text": "VOTO RAZONADO DEL JUEZ DE ROUX RENGIFO Quisiera hacer con ocasi\u00f3n de esta sentencia una reflexi\u00f3n general sobre la cuesti\u00f3n de la determinaci\u00f3n en equidad de las compensaciones del da\u00f1o moral. Recordar\u00e9 previamente que en la sentencia a la que se refiere este escrito la Corte establece una distinci\u00f3n muy pertinente entre dos tipos de da\u00f1os morales a saber los sufrimientos y las aflicciones causados a las v\u00edctimas directas y a sus familiares por una parte y el menoscabo de valores muy para las ", - "values": [ - "Corte Interamericana de Derechos Humanos" - ] - }, - { - "text": "INFORME No. PETICIONES MANFRED AMRHEIN PINTO RONALD FERN\u00c1NDEZ PINTO CARLOS OSBORNE ESCALANTE CARLOS MANUEL GONZ\u00c1LEZ LIZANO Y ARTURO FALLAS Z\u00da\u00d1IGA RAFAEL ANTONIO ROJAS MADRIGAL DAMAS VEGA ATENCIO MIGUEL MORA CALVO MANUEL HERN\u00c1NDEZ QUESADA JORGE ALBERTO MART\u00cdNEZ MEL\u00c9NDEZ GUILLERMO RODR\u00cdGUEZ SILVA Y MART\u00cdN ROJAS HERN\u00c1NDEZ CARLOS EDUARDO Y\u00c9PEZ CRUZ LUIS ARCHBOLD JAY ENRIQUE FLOYD ARCHBOLD JAY FERNANDO SALDARRIAGA SALDARRIAGA Y MIGUEL ANTONIO VALVERDE ADMISIBILIDAD COSTA RICA de julio de ", - "values": [ - "Comisi\u00f3n Interamericana de Derechos Humanos" - ] - }, - { - "text": "INFORME N\u00ba CASO WILSON PRINCE TRINIDAD Y TOBAGO de marzo de I. RESUMEN El se\u00f1or Tony MortonHooper en adelante el Peticionario de la firma de abogados de Londres Mishcon de Reya Solicitors present\u00f3 una petici\u00f3n ante la Comisi\u00f3n Interamericana de Derechos Humanos en adelante la Comisi\u00f3n contra la Rep\u00fablica de Trinidad y Tobago en adelante el Estado o Trinidad en nombre del Se\u00f1or Wilson Prince actualmente condenado a muerte y recluido en la Prisi\u00f3n del Estado en Puerto Espa\u00f1a. En la denuncia ", - "values": [ - "Comisi\u00f3n Interamericana de Derechos Humanos" - ] - }, - { - "text": "CORTE INTERAMERICANA DE DERECHOS HUMANOS CASO GARC\u00cdA ASTO Y RAM\u00cdREZ ROJAS VS. PER\u00da SENTENCIA DE DE NOVIEMBRE DE En el caso Garc\u00eda Asto y Ram\u00edrez Rojas la Corte Interamericana de Derechos Humanos en adelante la Corte la Corte Interamericana o el Tribunal integrada por los siguientes jueces Sergio Garc\u00eda Ram\u00edrez Presidente Alirio Abreu Burelli Vicepresidente Oliver Jackman Juez Ant\u00f4nio A. Can\u00e7ado Trindade Juez Cecilia Medina Quiroga Jueza Manuel E. Ventura Robles Juez y Jorge Santistevan de ", - "values": [ - "Corte Interamericana de Derechos Humanos" - ] - }, - { - "text": "Corte Interamericana de Derechos Humanos Caso de la Comunidad Mayagna Sumo Awas Tingni Vs. Nicaragua Sentencia de de febrero de Excepciones Preliminares En el caso de la Comunidad Mayagna Sumo Awas Tingni en adelante la Comunidad o la Comunidad Mayagna la Corte Interamericana de Derechos Humanos en adelante la Corte la Corte Interamericana o el Tribunal integrada por los siguientes jueces Ant\u00f4nio A. Can\u00e7ado Trindade Presidente M\u00e1ximo Pacheco G\u00f3mez Vicepresidente Hern\u00e1n Salgado Pesantes Juez ", - "values": [ - "Corte Interamericana de Derechos Humanos" - ] - }, - { - "text": "RESOLU\u00c7\u00c3O DO PRESIDENTE DA CORTE INTERAMERICANA DE DIREITOS HUMANOS DE DE JULHO DE MEDIDAS PROVIS\u00d3RIAS A RESPEITO DA REP\u00daBLICA FEDERATIVA DO BRASIL ASSUNTO DA PENITENCI\u00c1RIA URSO BRANCO VISTO As Resolu\u00e7\u00f5es da Corte Interamericana de Direitos Humanos doravante a Corte Interamericana a Corte ou o Tribunal de de junho de de agosto de de abril de de julho de de setembro de de maio de e de novembro de Nessa \u00faltima a Corte resolveu inter alia Reiterar ao Estado que continue adotando ", - "values": [ - "Corte Interamericana de Derechos Humanos" - ] - }, - { - "text": "RESOLUCI\u00d3N DE LA CORTE INTERAMERICANA DE DERECHOS HUMANOS DE DE MAYO DE MEDIDAS PROVISIONALES RESPECTO DE LA REP\u00daBLICA DEL PER\u00da ASUNTO WONG HO WING VISTO La Resoluci\u00f3n del Presidente en ejercicio para el presente asunto en adelante el Presidente en ejercicio de la Corte Interamericana de Derechos Humanos en adelante la Corte Interamericana la Corte o el Tribunal de de marzo de as\u00ed como las Resoluciones del Tribunal de de mayo y de noviembre de de de marzo y de julio de mediante las ", - "values": [ - "Corte Interamericana de Derechos Humanos" - ] - }, - { - "text": "RESOLU\u00c7\u00c3O DA CORTE INTERAMERICANA DE DIREITOS HUMANOS DE DE OUTUBRO DE CASO GOMES LUND E OUTROS GUERRILHA DO ARAGUAIA VS. BRASIL SUPERVIS\u00c3O DE CUMPRIMENTO DE SENTEN\u00c7A VISTO A Senten\u00e7a de exce\u00e7\u00f5es preliminares m\u00e9rito repara\u00e7\u00f5es e custas doravante denominada a Senten\u00e7a emitida no presente caso pela Corte Interamericana de Direitos Humanos doravante denominada a Corte Interamericana a Corte ou o Tribunal em de novembro de na qual declarou que a Rep\u00fablica Federativa do Brasil doravante o ", - "values": [ - "Corte Interamericana de Derechos Humanos" - ] - }, - { - "text": "RESOLUCI\u00d3N DEL PRESIDENTE DE LA CORTE INTERAMERICANA DE DERECHOS HUMANOS DE DE DICIEMBRE DE CASO LOAYZA TAMAYO VISTOS El escrito de de noviembre de y sus anexos recibido el de diciembre de en la Secretar\u00eda de la Corte Interamericana de Derechos Humanos en adelante la Corte o la Corte Interamericana mediante el cual la se\u00f1ora Michelangela Scalabrino someti\u00f3 a la Corte en nombre de la se\u00f1ora Mar\u00eda Elena Loayza Tamayo en adelante la se\u00f1ora Loayza Tamayo al amparo de los art\u00edculos de la ", - "values": [ - "Corte Interamericana de Derechos Humanos" - ] - }, - { - "text": "RESOLUCI\u00d3N DE LA CORTE INTERAMERICANA DE DERECHOS HUMANOS DE DE OCTUBRE DE MEDIDAS PROVISIONALES RESPECTO DE LA REP\u00daBLICA DEL PER\u00da CASO WONG HO WING VISTO La Resoluci\u00f3n del Presidente en ejercicio de la Corte Interamericana de Derechos Humanos en adelante la Corte Interamericana la Corte o el Tribunal de de marzo de as\u00ed como las Resoluciones del Tribunal de de mayo y de de noviembre de de de marzo y de de julio de mediante las cuales resolvieron inter alia requerir a la Rep\u00fablica ", - "values": [ - "Corte Interamericana de Derechos Humanos" - ] - }, - { - "text": "RESOLUCI\u00d3N DE LA CORTE INTERAMERICANA DE DERECHOS HUMANOS DE DE AGOSTO DE CASO JUAN HUMBERTO S\u00c1NCHEZ VS. HONDURAS SUPERVISI\u00d3N DE CUMPLIMIENTO DE SENTENCIA VISTO La Sentencia de excepci\u00f3n preliminar fondo reparaciones y costas en adelante la Sentencia dictada por la Corte Interamericana de Derechos Humanos en adelante la Corte Interamericana la Corte o este Tribunal el de junio de en el presente caso. Las resoluciones de supervisi\u00f3n de cumplimiento de la Sentencia dictadas por la Corte el ", - "values": [ - "Corte Interamericana de Derechos Humanos" - ] - }, - { - "text": "RESOLUCI\u00d3N DE LA CORTE INTERAMERICANA DE DERECHOS HUMANOS DE DE NOVIEMBRE DE CASO SERVELL\u00d3N GARC\u00cdA Y OTROS VS. HONDURAS SUPERVISI\u00d3N DE CUMPLIMIENTO DE SENTENCIA VISTO La Sentencia de Fondo Reparaciones y Costas emitida el de septiembre de en adelante la Sentencia por la Corte Interamericana de Derechos Humanos en adelante la Corte Interamericana la Corte o el Tribunal. La Resoluci\u00f3n de Supervisi\u00f3n de Cumplimiento de la Sentencia de la Corte Interamericana de de agosto de mediante la ", - "values": [ - "Corte Interamericana de Derechos Humanos" - ] - }, - { - "text": "RESOLUCI\u00d3N DE LA CORTE INTERAMERICANA DE DERECHOS HUMANOS DE DE JUNIO DE CASO MOHAMED VS. ARGENTINA VISTO La Resoluci\u00f3n del Presidente de la Corte Interamericana de Derechos Humanos en adelante la Corte Interamericana la Corte o el Tribunal de de junio de mediante la cual inter alia orden\u00f3 la recepci\u00f3n mediante affid\u00e1vits de la declaraci\u00f3n de la presunta v\u00edctima y el dictamen de un perito ambos propuestos por los representantes de la presunta v\u00edctima y convoc\u00f3 a la Comisi\u00f3n Interamericana ", - "values": [ - "Corte Interamericana de Derechos Humanos" - ] - }, - { - "text": "RESOLUCI\u00d3N DE LA CORTE INTERAMERICANA DE DERECHOS HUMANOS DE DE AGOSTO DE CASO CABRERA GARCIA Y MONTIEL FLORES VS. ESTADOS UNIDOS MEXICANOS VISTO La Resoluci\u00f3n dictada por el Presidente en adelante la Resoluci\u00f3n de convocatoria o la Resoluci\u00f3n del Presidente de la Corte Interamericana de Derechos Humanos en adelante la Corte Interamericana la Corte o el Tribunal el de julio de mediante la cual convoc\u00f3 a la Comisi\u00f3n Interamericana de Derechos Humanos en adelante la Comisi\u00f3n Interamericana ", - "values": [ - "Corte Interamericana de Derechos Humanos" - ] - }, - { - "text": " ORDER OF THE INTERAMERICAN COURT OF HUMAN RIGHTS OF FEBRUARY PROVISIONAL MEASURES REGARDING THE STATE OF TRINIDAD AND TOBAGO CASE OF JAMES ET AL. HAVING SEEN The Order of May issued by the InterAmerican Court of Human Rights hereinafter the InterAmerican Court the Court or the Tribunal which decided inter alia to amplify the provisional measures ordered in the James et al. Cases and to order the Republic of Trinidad and Tobago to take all measures necessary to preserve the lives of Peter ", - "values": [ - "Corte Interamericana de Derechos Humanos" - ] - }, - { - "text": "Resoluci\u00f3n de la Presidenta de la Corte Interamericana de Derechos Humanos de de abril de Solicitud de Medidas Provisionales Caso Gonz\u00e1lez y otras Campo Algodonero vs. M\u00e9xico Visto El escrito de demanda presentado por la Comisi\u00f3n Interamericana de Derechos Humanos en adelante la Comisi\u00f3n Interamericana o la Comisi\u00f3n ante la Corte Interamericana de Derechos Humanos en adelante la Corte Interamericana la Corte o el Tribunal el de noviembre de El escrito de solicitudes argumentos y pruebas ", - "values": [ - "Corte Interamericana de Derechos Humanos" - ] - }, - { - "text": "CORTE INTERAMERICANA DE DERECHOS HUMANOS CASO GARC\u00cdA PRIETO Y OTRO VS. EL SALVADOR SENTENCIA DE DE NOVIEMBRE DE EXCEPCIONES PRELIMINARES FONDO REPARACIONES Y COSTAS En el caso Garc\u00eda Prieto y otro la Corte Interamericana de Derechos Humanos en adelante la Corte Interamericana la Corte o el Tribunal integrada por los siguientes jueces Sergio Garc\u00eda Ram\u00edrez Presidente Cecilia Medina Quiroga Vicepresidenta Manuel E. Ventura Robles Juez Leonardo A. Franco Juez Margarette May Macaulay Jueza y ", - "values": [ - "Corte Interamericana de Derechos Humanos" - ] - }, - { - "text": "RESOLUCI\u00d3N DE LA CORTE INTERAMERICANA DE DERECHOS HUMANOS DE MAYO DE CASO MACK CHANG Y OTROS Vs. GUATEMALA MEDIDAS PROVISIONALES VISTO Las Resoluciones de la Corte Interamericana de Derechos Humanos en adelante la Corte la Corte Interamericana o el Tribunal de de agosto de de febrero y de junio de de enero y de noviembre de Los escritos de la Rep\u00fablica de Guatemala en adelante el Estado o Guatemala presentados el de marzo de marzo de abril de julio de septiembre de noviembre ", - "values": [ - "Corte Interamericana de Derechos Humanos" - ] - }, - { - "text": "RESOLUCI\u00d3N DEL PRESIDENTE DE LA CORTE INTERAMERICANA DE DERECHOS HUMANOS DE DE JULIO DE AMPLIACI\u00d3N DE MEDIDAS PROVISIONALES SOLICITADA POR LA COMISI\u00d3N INTERAMERICANA DE DERECHOS HUMANOS RESPECTO DE LA REP\u00daBLICA DE COLOMBIA CASO \u00c1LVAREZ Y OTROS VISTOS La resoluci\u00f3n del Presidente de la Corte Interamericana de Derechos Humanos en adelante el Presidente de de julio de en cuya parte dispositiva decidi\u00f3 Requerir a la Rep\u00fablica de Colombia que adopte sin dilaci\u00f3n cuantas medidas sean necesarias", - "values": [ - "Corte Interamericana de Derechos Humanos" - ] - }, - { - "text": "Corte Interamericana de Derechos Humanos Caso Maritza Urrutia Vs. Guatemala Sentencia de de noviembre de Fondo Reparaciones y Costas En el caso Maritza Urrutia la Corte Interamericana de Derechos Humanos en adelante la Corte la Corte Interamericana o el Tribunal integrada por los siguientes jueces Ant\u00f4nio A. Can\u00e7ado Trindade Presidente Sergio Garc\u00eda Ram\u00edrez Vicepresidente Hern\u00e1n Salgado Pesantes Juez M\u00e1ximo Pacheco G\u00f3mez Juez Alirio Abreu Burelli Juez Carlos Vicente de Roux Rengifo Juez y ", - "values": [ - "Corte Interamericana de Derechos Humanos" - ] - }, - { - "text": "Resoluci\u00f3n de la Corte Interamericana de Derechos Humanos de de noviembre de Medidas Provisionales Respecto de la Rep\u00fablica Bolivariana de Venezuela Asunto Guerrero Gallucci y Mart\u00ednez Barrios VISTOS El escrito de de junio de y sus anexos mediante los cuales la Comisi\u00f3n Interamericana de Derechos Humanos en adelante la Comisi\u00f3n Interamericana o la Comisi\u00f3n present\u00f3 a la Corte Interamericana de Derechos Humanos en adelante la Corte o el Tribunal de conformidad con los art\u00edculos de la ", - "values": [ - "Corte Interamericana de Derechos Humanos" - ] - }, - { - "text": "RESOLUCI\u00d3N DE LA CORTE INTERAMERICANA DE DERECHOS HUMANOS DE DE NOVIEMBRE DE CASO TRABAJADORES CESADOS DEL CONGRESO Aguado Alfaro y otros VS. PER\u00da SUPERVISI\u00d3N DE CUMPLIMIENTO DE SENTENCIA Y SOLICITUD DE MEDIDAS PROVISIONALES VISTO A Supervisi\u00f3n de cumplimiento de Sentencia La Sentencia de excepciones preliminares fondo reparaciones y costas en adelante la Sentencia dictada por la Corte Interamericana de Derechos Humanos en adelante la Corte la Corte Interamericana o el Tribunal el de de ", - "values": [ - "Corte Interamericana de Derechos Humanos" - ] - }, - { - "text": "RESOLUCI\u00d3N DE LA CORTE INTERMERICANA DE DERECHOS HUMANOS DE FEBRERO DE MEDIDAS PROVISIONALES RESPECTO DE VENEZUELA CASO FAMILIA BARRIOS VISTO Las Resoluciones de la Corte Interamericana de Derechos Humanos en adelante la Corte Interamericana la Corte o el Tribunal emitidas el de noviembre de de junio y de septiembre de de febrero y de noviembre de y de febrero y de julio de En esta \u00faltima la Corte declar\u00f3 que La muerte del se\u00f1or Juan Jos\u00e9 Barrios ocurrida el de mayo de pone de", - "values": [ - "Corte Interamericana de Derechos Humanos" - ] - }, - { - "text": "Corte Interamericana de Direitos Humanos Caso Goibur\u00fa e outros Vs. Paraguai Senten\u00e7a de de setembro de M\u00e9rito Repara\u00e7\u00f5es e Custas No caso Goibur\u00fa e outros A Corte Interamericana de Direitos Humanos doravante denominada Interamericana a Corte ou o Tribunal integrada pelos seguintes ju\u00edzes a Corte Sergio Garc\u00eda Ram\u00edrez Presidente Alirio Abreu Burelli VicePresidente Ant\u00f4nio A. Can\u00e7ado Trindade Juiz Cecilia Medina Quiroga Ju\u00edza Manuel E. Ventura Robles Juiz e Diego Garc\u00edaSay\u00e1n Juiz. presentes ", - "values": [ - "Corte Interamericana de Derechos Humanos" - ] - }, - { - "text": "VOTO PARCIALMENTE DISIDENTE DE LA JUEZA MEDINA QUIROGA A pesar de que en mi opini\u00f3n se encuentran probados los hechos que la Corte ha considerado como violatorios de la Convenci\u00f3n Americana en el cap\u00edtulo VIII de esta sentencia que examina la violaci\u00f3n de los art\u00edculos y de la Convenci\u00f3n Americana emito este voto parcialmente disidente para desechar la violaci\u00f3n del art\u00edculo y exponer mi razonamiento que difiere del de la Corte para llegar a la conclusi\u00f3n de que se ha violado el art\u00edculo ", - "values": [ - "Corte Interamericana de Derechos Humanos" - ] - }, - { - "text": "RESOLUCI\u00d3N DE LA CORTE INTERAMERICANA DE DERECHOS HUMANOS DE DE AGOSTO DE MEDIDAS PROVISIONALES RESPECTO DE LOS ESTADOS UNIDOS MEXICANOS ASUNTO LEONEL RIVERO Y OTROS VISTO La Resoluci\u00f3n emitida por el Presidente de la Corte Interamericana de Derechos Humanos en adelante la Corte la Corte Interamericana o el Tribunal el de octubre de y las Resoluciones emitidas por el Tribunal el de noviembre de de abril de de junio de y de noviembre de La audiencia p\u00fablica sobre medidas llevada a", - "values": [ - "Corte Interamericana de Derechos Humanos" - ] - }, - { - "text": "RESOLUCI\u00d3N DE LA CORTE INTERAMERICANA DE DERECHOS HUMANOS DE DE AGOSTO DE CASO DE LA CORTE SUPREMA DE JUSTICIA QUINTANA COELLO Y OTROS VS. ECUADOR SUPERVISI\u00d3N DE CUMPLIMIENTO DE SENTENCIA VISTO La Sentencia de excepci\u00f3n preliminar fondo reparaciones y costas en adelante la Sentencia o el Fallo emitida en el presente caso por la Corte Interamericana de Derechos Humanos en adelante la Corte Interamericana la Corte o el Tribunal el de agosto de en la cual desestim\u00f3 la excepci\u00f3n preliminar y ", - "values": [ - "Corte Interamericana de Derechos Humanos" - ] - }, - { - "text": "Resoluci\u00f3n del Presidente de la Corte Interamericana de Derechos Humanos de de diciembre de Caso de Heliodoro Portugal Vs. Panam\u00e1 VISTO La Resoluci\u00f3n emitida por la Corte Interamericana de Derechos Humanos en adelante la Corte Interamericana la Corte o el Tribunal el de noviembre de mediante la cual decidi\u00f3 inter alia Requerir por las razones se\u00f1aladas en los Considerandos y de la Resoluci\u00f3n y en ejercicio de la facultad que le otorga el art\u00edculo del Reglamento que los siguientes y ", - "values": [ - "Corte Interamericana de Derechos Humanos" - ] - }, - { - "text": "RESOLUCI\u00d3N DEL PRESIDENTE DE LA CORTE INTERAMERICANA DE DERECHOS HUMANOS DE DE ENERO DE FONDO DE ASISTENCIA LEGAL DE V\u00cdCTIMAS CASO TARAZONA ARRIETA Y OTROS VS. PER\u00da VISTO El escrito de de junio de y sus anexos mediante los cuales la Comisi\u00f3n Interamericana de Derechos Humanos en adelante tambi\u00e9n la Comisi\u00f3n Interamericana o la Comisi\u00f3n someti\u00f3 el caso Tarazona Arrieta y otros ante la Corte Interamericana de Derechos Humanos en adelante la Corte Interamericana la Corte o el Tribunal del ", - "values": [ - "Corte Interamericana de Derechos Humanos" - ] - }, - { - "text": "RESOLUCI\u00d3N DEL PRESIDENTE DE LA CORTE INTERAMERICANA DE DERECHOS HUMANOS DE DE DICIEMBRE DE FONDO DE ASISTENCIA LEGAL DE V\u00cdCTIMAS CASO NADEGE DORZEMA Y OTROS VS. REP\u00daBLICA DOMINICANA VISTO El escrito de de febrero de y su anexo mediante los cuales la Comisi\u00f3n Interamericana de Derechos Humanos en adelante la Comisi\u00f3n Interamericana o la Comisi\u00f3n someti\u00f3 a la Corte Interamericana de Derechos Humanos en adelante la Corte Interamericana la Corte o el Tribunal un caso en contra de la Rep\u00fablica", - "values": [ - "Corte Interamericana de Derechos Humanos" - ] - }, - { - "text": "VOTO CONCORDANTE DO JUIZ A. A. CAN\u00c7ADO TRINDADE Voto a favor da ado\u00e7\u00e3o da presente Senten\u00e7a pela Corte Interamericana de Direitos Humanos de transcend\u00eancia hist\u00f3rica sobre o m\u00e9rito no caso Barrios Altos a partir do reconhecimento de responsabilidade internacional efetuado pelo Estado peruano. Tal como observou a Corte par. esse reconhecimento constituiu uma contribui\u00e7\u00e3o positiva por parte do Estado demandado \u00e0 evolu\u00e7\u00e3o da aplica\u00e7\u00e3o da normativa de prote\u00e7\u00e3o da Conven\u00e7\u00e3o Americana sobre As ", - "values": [ - "Corte Interamericana de Derechos Humanos" - ] - }, - { - "text": "RESOLUCI\u00d3N DEL PRESIDENTE DE LA CORTE INTERAMERICANA DE DERECHOS HUMANOS DE DE SEPTIEMBRE DE MEDIDAS PROVISIONALES RESPECTO DE LA REP\u00daBLICA FEDERATIVA DE BRASIL ASUNTO DE LA UNIDAD DE INTERNACI\u00d3N SOCIOEDUCATIVA VISTO Las Resoluciones dictadas por la Corte Interamericana de Derechos Humanos en adelante la Corte Interamericana la Corte o el Tribunal el de febrero y de septiembre de de abril y de noviembre de de agosto de y de enero de en las cuales entre otros requiri\u00f3 a la Rep\u00fablica", - "values": [ - "Corte Interamericana de Derechos Humanos" - ] - }, - { - "text": "Corte Interamericana de Derechos Humanos Caso Molina Theissen Vs. Guatemala Sentencia de de mayo de Fondo En el caso Molina Theissen la Corte Interamericana de Derechos Humanos integrada por los siguientes jueces Sergio Garc\u00eda Ram\u00edrez Presidente Alirio Abreu Burelli Vicepresidente Oliver Jackman Juez Ant\u00f4nio A. Can\u00e7ado Trindade Juez Cecilia Medina Quiroga Jueza Manuel E. Ventura Robles Juez y Diego Garc\u00edaSay\u00e1n Juez presente adem\u00e1s Pablo Saavedra Alessandri Secretario de conformidad con los ", - "values": [ - "Corte Interamericana de Derechos Humanos" - ] - }, - { - "text": "RESOLUCI\u00d3N DEL PRESIDENTE DE LA CORTE INTERAMERICANA DE DERECHOS HUMANOS DE DE ABRIL DE CASO HELIODORO PORTUGAL VS. PANAM\u00c1 SUPERVISI\u00d3N DE CUMPLIMIENTO DE SENTENCIA VISTO La Sentencia de excepciones preliminares fondo reparaciones y costas en adelante la Sentencia dictada por la Corte Interamericana de Derechos Humanos en adelante la Corte la Corte Interamericana o el Tribunal el de agosto de mediante la cual dispuso que el Estado deb\u00eda pagar a Graciela De Le\u00f3n Patria Portugal y Franklin ", - "values": [ - "Corte Interamericana de Derechos Humanos" - ] - }, - { - "text": "Resoluci\u00f3n de la Presidenta de la Corte Interamericana de Derechos Humanos de de mayo de Caso Blanco Romero y Otros Vs. Venezuela Supervisi\u00f3n de Cumplimiento de Sentencia Visto La Sentencia de fondo reparaciones y costas en adelante la Sentencia emitida en el presente caso por la Corte Interamericana de Derechos Humanos en adelante la Corte la Corte Interamericana o el Tribunal el de noviembre de mediante la cual dispuso que el Estado de Venezuela en adelante el Estado debe llevar a y", - "values": [ - "Corte Interamericana de Derechos Humanos" - ] - }, - { - "text": "RELAT\u00d3RIO N\u00ba ADMISSIBILIDADE PETI\u00c7\u00c3O LAURA ALB\u00c1N CORNEJO EQUADOR de outubro de I. RESUMO Em de maio de Carmen Susana Cornejo de Alb\u00e1n em nome de seu esposo Bismarck Wagner Alb\u00e1n S\u00e1nchez e n\u00e3o o seu pr\u00f3prio doravante denominados os peticion\u00e1rios apresentaram uma peti\u00e7\u00e3o perante a Comiss\u00e3o Interamericana de Direitos Humanos doravante denominada a Comiss\u00e3o ou a CIDH contra a Rep\u00fablica do Equador doravante denominado o Estado na qual alegam a viola\u00e7\u00e3o dos seguintes direitos protegidos pela ", - "values": [ - "Comisi\u00f3n Interamericana de Derechos Humanos" - ] - }, - { - "text": "CORTE INTERAMERICANA DE DERECHOS HUMANOS CASO MASACRE DE SANTO DOMINGO VS. COLOMBIA SENTENCIA DE DE NOVIEMBRE DE Excepciones Preliminares Fondo y Reparaciones En el caso Masacre de Santo Domingo la Corte Interamericana de Derechos Humanos en adelante la Corte Interamericana la Corte o el Tribunal integrada por los siguientes Jueces Diego Garc\u00edaSay\u00e1n Presidente Manuel E. Ventura Robles Vicepresidente Leonardo A. Franco Juez Margarette May Macaulay Jueza Rhadys Abreu Blondet Jueza Alberto P\u00e9rez", - "values": [ - "Corte Interamericana de Derechos Humanos" - ] - }, - { - "text": "RESOLUCI\u00d3N DE LA CORTE INTERAMERICANA DE DERECHOS HUMANOS DE DE AGOSTO DE MEDIDAS PROVISIONALES RESPECTO DE VENEZUELA ASUNTO NATERA BALBOA VISTO La Resoluci\u00f3n de la Presidencia de la Corte Interamericana de Derechos Humanos en adelante la Presidencia de de diciembre de en la cual la entonces Presidenta adopt\u00f3 medidas urgentes en el presente asunto debido a la apreciaci\u00f3n prima facie de una situaci\u00f3n de extrema gravedad y urgencia en cuanto a los derechos a la vida e integridad personal del", - "values": [ - "Corte Interamericana de Derechos Humanos" - ] - }, - { - "text": "RESOLUCI\u00d3N DE LA CORTE INTERAMERICANA DE DERECHOS HUMANOS DE DE MARZO DE MEDIDAS PROVISIONALES RESPECTO DE LA REP\u00daBLICA DE COLOMBIA CASO GUTI\u00c9RREZ SOLER VISTOS El escrito de demanda presentado por la Comisi\u00f3n Interamericana de Derechos Humanos en adelante la Comisi\u00f3n o la Comisi\u00f3n Interamericana ante la Corte Interamericana de Derechos Humanos en adelante la Corte la Corte Interamericana o el Tribunal el de marzo de El escrito de solicitudes argumentos y pruebas en adelante el escrito de ", - "values": [ - "Corte Interamericana de Derechos Humanos" - ] - }, - { - "text": "RESOLUCI\u00d3N DE LA CORTE INTERAMERICANA DE DERECHOS HUMANOS DE DE AGOSTO DE CASO YATAMA VS. NICARAGUA SUPERVISI\u00d3N DEL CUMPLIMIENTO DE SENTENCIA VISTOS La Sentencia de excepciones preliminares fondo reparaciones y costas en adelante la Sentencia dictada por la Corte Interamericana de Derechos Humanos en adelante la Corte la Corte Interamericana o el Tribunal el de junio de La Resoluci\u00f3n dictada por la Corte el de noviembre de mediante la cual declar\u00f3 inter alia Que mantendr\u00eda abierto el", - "values": [ - "Corte Interamericana de Derechos Humanos" - ] - }, - { - "text": "VOTO CONJUNTO CONCURRENTE DE LOS JUECES ROBERTO F. CALDAS Y EDUARDO FERRER MACGREGOR POISOT CASO CANALES HUAPAYA Y OTROS VS. PER\u00da SENTENCIA DE DE JUNIO DE Excepciones Preliminares Fondo Reparaciones y Costas INTRODUCCI\u00d3N Emitimos el presente voto concurrente para fundamentar los motivos por los cuales discrepamos con la decisi\u00f3n de la Corte deno involucrar en la Sentencia de de junio de en el Caso Canales Huapaya y Otros Vs. Per\u00fa en adelante la Sentencia dictada por la Corte de Derechos ", - "values": [ - "Corte Interamericana de Derechos Humanos" - ] - }, - { - "text": "RESOLUCI\u00d3N DE LA CORTE INTERAMERICANA DE DERECHOS HUMANOS DE DE MARZO DE RATIFICACI\u00d3N DE MEDIDAS PROVISIONALES RESPECTO DE GUATEMALA CASO FERM\u00cdN RAM\u00cdREZ VISTOS El escrito de de septiembre de mediante el cual la Comisi\u00f3n Interamericana de Derechos Humanos en adelante la Comisi\u00f3n o la Comisi\u00f3n Interamericana someti\u00f3 ante la Corte Interamericana de Derechos Humanos en adelante la Corte la Corte Interamericana o el Tribunal una demanda contra el Estado de Guatemala en adelante el Estado o en ", - "values": [ - "Corte Interamericana de Derechos Humanos" - ] - }, - { - "text": "RESOLUCI\u00d3N DEL PRESIDENTE DE LA CORTE INTERAMERICANA DE DERECHOS HUMANOS DE DE JUNIO DE CASO DE LA MASACRE DE SANTO DOMINGO VS. COLOMBIA VISTO El escrito de sometimiento del caso presentado por la Comisi\u00f3n Interamericana de Derechos Humanos en adelante tambi\u00e9n la Comisi\u00f3n Interamericana o la Comisi\u00f3n ante la Corte Interamericana de Derechos Humanos en adelante la Corte Interamericana la Corte o el Tribunal el de julio de mediante el cual ofreci\u00f3 dos dict\u00e1menes periciales sobre los que su ", - "values": [ - "Corte Interamericana de Derechos Humanos" - ] - }, - { - "text": "VOTO PARCIALMENTE CONCURRENTE Y PARCIALMENTE DISIDENTE DEL JUEZ RAMON FOGEL He participado en el pronunciamiento de la sentencia dictada por la Corte en el caso Yakye Axa y he disentido de algunos puntos resolutivos de la misma en base a los fundamentos expuestos en las deliberaciones y que comprendieron las siguientes consideraciones La Comunidad ind\u00edgena Yakye Axa hace parte de la parcialidad Chanawatsan y pertenece al pueblo EnxetLengua. El pueblo Enxet es un pueblo n\u00f3mada de cazadores y ", - "values": [ - "Corte Interamericana de Derechos Humanos" - ] - }, - { - "text": "RESOLUC I\u00d3N DEL PRESIDENTE DE LA CORTE INTERAMERICANA DE DERECHOS HUMANOS DE DE AGOSTO DE CASO ARTAVIA MURILLO Y OTROS FERTILIZAC I\u00d3N IN VITRO VS. COSTA RICA VISTO El escrito de de julio de mediante el cual la Comisi\u00f3n Interamericana de Derechos Humanos en adelante la Comisi\u00f3n Interamericana o la Comisi\u00f3n someti\u00f3 a la Corte Interamericana de Derechos Humanos en adelante la Corte Interamericana la Corte o el Tribunal un caso en contra de la Rep\u00fablica Costa Rica en adelante Costa Rica o el ", - "values": [ - "Corte Interamericana de Derechos Humanos" - ] - }, - { - "text": " Resoluci\u00f3n de la Presidenta de la Corte Interamericana de Derechos Humanos de de diciembre de Caso Cinco Pensionistas Vs. Per\u00fa. Supervisi\u00f3n del Cumplimiento de Sentencia Vistos La Sentencia de fondo reparaciones y costas en adelante la Sentencia dictada por la Corte Interamericana de Derechos Humanos en adelante la Corte la Corte Interamericana o el Tribunal el de febrero de mediante la cual orden\u00f3 que las consecuencias patrimoniales que pudiera tener la violaci\u00f3n al derecho a la en", - "values": [ - "Corte Interamericana de Derechos Humanos" - ] - }, - { - "text": "Corte Interamericana de Derechos Humanos Caso Myrna Mack Chang Vs. Guatemala Sentencia de de noviembre de Fondo Reparaciones y Costas En el caso Myrna Mack Chang la Corte Interamericana de Derechos Humanos en adelante la Corte la Corte Interamericana o el Tribunal integrada por los siguientes jueces Ant\u00f4nio A. Can\u00e7ado Trindade Presidente Sergio Garc\u00eda Ram\u00edrez Vicepresidente Hern\u00e1n Salgado Pesantes Juez M\u00e1ximo Pacheco G\u00f3mez Juez Oliver Jackman Juez Alirio Abreu Burelli Juez Carlos Vicente de ", - "values": [ - "Corte Interamericana de Derechos Humanos" - ] - }, - { - "text": "RESOLUCI\u00d3N DE LA CORTE INTERAMERICANA DE DERECHOS HUMANOS DE DE NOVIEMBRE DE CASO CANTORAL BENAVIDES VS. PER\u00da SUPERVISI\u00d3N DE CUMPLIMIENTO DE SENTENCIA Visto La Sentencia de fondo dictada el de agosto de por la Corte Interamericana de Derechos Humanos en adelante la Corte la Corte Interamericana o el Tribunal. La Sentencia de reparaciones dictada por la Corte el de diciembre de El p\u00e1rrafo de la Sentencia de reparaciones supra Visto en el cual se establece que en caso de que el Estado ", - "values": [ - "Corte Interamericana de Derechos Humanos" - ] - }, - { - "text": "RESOLUCI\u00d3N DEL PRESIDENTE DE LA CORTE INTERAMERICANA DE DERECHOS HUMANOS DE DE DICIEMBRE DE CASO DE LIAKAT ALI ALIBUX VS. SURINAM VISTO El escrito de sometimiento del caso presentado por la Comisi\u00f3n Interamericana de Derechos Humanos en adelante la Comisi\u00f3n Interamericana o la Comisi\u00f3n ante la Corte Interamericana de Derechos Humanos en adelante la Corte Interamericana la Corte o el Tribunal el de enero de y el de febrero mediante el cual ofreci\u00f3 un peritaje. Las comunicaciones de de ", - "values": [ - "Corte Interamericana de Derechos Humanos" - ] - }, - { - "text": "RESOLUCI\u00d3N DE LA CORTE INTERAMERICANA DE DERECHOS HUMANOS DE DE NOVIEMBRE DE CASO LOAYZA TAMAYO CUMPLIMIENTO DE SENTENCIA VISTOS La sentencia de fondo dictada en el caso Loayza Tamayo vs. el Per\u00fa por la Corte Interamericana de Derechos Humanos en adelante la Corte la Corte Interamericana o el Tribunal el de septiembre de en la que dispuso en los puntos resolutivos quinto y sexto que Que ordena que el Estado del Per\u00fa ponga en libertad a Mar\u00eda Elena Loayza Tamayo dentro de un plazo en los", - "values": [ - "Corte Interamericana de Derechos Humanos" - ] - }, - { - "text": "RESOLUCI\u00d3N DE LA CORTE INTERAMERICANA DE DERECHOS HUMANOS DE DE MAYO DE MEDIDAS PROVISIONALES ASUNTO RAM\u00cdREZ HINOSTROZA Y OTROS VISTOS La Resoluci\u00f3n de la Corte Interamericana de Derechos Humanos en adelante la Corte o el Tribunal de de septiembre de sobre medidas provisionales mediante la cual resolvi\u00f3 inter alia ratificar en todos sus t\u00e9rminos la Resoluci\u00f3n del Presidente de la Corte en adelante el Presidente de de julio de y por consiguiente requerir al Estado del Per\u00fa en adelante el", - "values": [ - "Corte Interamericana de Derechos Humanos" - ] - }, - { - "text": "RESOLUCI\u00d3N DE LA CORTE INTERAMERICANA DE DERECHOS HUMANOS DE DE JULIO DE MEDIDAS PROVISIONALES RESPECTO DE VENEZUELA ASUNTOS DE DETERMINADOS CENTROS PENITENCIARIOS DE VENEZUELA VISTO La Resoluci\u00f3n de la Corte Interamericana de Derechos Humanos en adelante la Corte Interamericana la Corte o el Tribunal de de febrero de en el asunto del Internado Judicial Capital El Rodeo I y El Rodeo II mediante la cual resolvi\u00f3 inter alia Requerir al Estado que adopte las medidas provisionales que sean ", - "values": [ - "Corte Interamericana de Derechos Humanos" - ] - }, - { - "text": "RESOLUCI\u00d3N DEL PRESIDENTE DE LA CORTE INTERAMERICANA DE DERECHOS HUMANOS DE DE MARZO DE FONDO DE ASISTENCIA LEGAL DE V\u00cdCTIMAS CASO VALDEMIR QUISPIALAYA VS. PERU VISTO El escrito de de agosto de y sus anexos mediante los cuales la Comisi\u00f3n Interamericana de Derechos Humanos en adelante la Comisi\u00f3n Interamericana o la Comisi\u00f3n someti\u00f3 ante la Corte Interamericana de Derechos Humanos en adelante la Corte Interamericana la Corte o el Tribunal el presente caso. El escrito de de noviembre de ", - "values": [ - "Corte Interamericana de Derechos Humanos" - ] - }, - { - "text": "RESOLUCI\u00d3N DE LA CORTE INTERAMERICANA DE DERECHOS HUMANOS DE DE AGOSTO DE MEDIDAS PROVISIONALES CASO LOAYZA TAMAYO VISTOS La Resoluci\u00f3n del Presidente de la Corte Interamericana de Derechos Humanos en adelante el Presidente dictada el de diciembre de mediante la cual resolvi\u00f3 Requerir al Estado que adopte sin dilaci\u00f3n cuantas medidas sean necesarias para asegurar eficazmente a la se\u00f1ora Mar\u00eda Elena Loayza Tamayo el regreso a su pa\u00eds as\u00ed como su integridad f\u00edsica ps\u00edquica y moral con el ", - "values": [ - "Corte Interamericana de Derechos Humanos" - ] - }, - { - "text": "Corte Interamericana de Derechos Humanos Caso de la Comunidad Moiwana vs. Surinam Sentencia del de febrero de Interpretaci\u00f3n de la Sentencia de Fondo Reparaciones y Costas En el Caso de la Comunidad Moiwana la Corte Interamericana de Derechos Humanos en adelante la Corte Interamericana la Corte o el Tribunal compuesta por los siguientes jueces Sergio Garc\u00eda Ram\u00edrez Presidente Alirio Abreu Burelli VicePresidente Oliver Jackman Juez Ant\u00f4nio A. Can\u00e7ado Trindade Juez Cecilia Medina Quiroga Jueza ", - "values": [ - "Corte Interamericana de Derechos Humanos" - ] - }, - { - "text": "CORTE INTERAMERICANA DE DERECHOS HUMANOS CASO RADILLA PACHECO VS. ESTADOS UNIDOS MEXICANOS SENTENCIA DE DE NOVIEMBRE DE Excepciones Preliminares Fondo Reparaciones y Costas En el caso Radilla Pacheco la Corte Interamericana de Derechos Humanos en adelante la Corte Interamericana la Corte o el Tribunal integrada por los siguientes jueces Cecilia Medina Quiroga Presidenta Diego Garc\u00edaSay\u00e1n Vicepresidente Manuel E. Ventura Robles Juez Margarette May Macaulay Jueza y Rhadys Abreu Blondet Jueza ", - "values": [ - "Corte Interamericana de Derechos Humanos" - ] - }, - { - "text": "RESOLUCI\u00d3N DE LA CORTE INTERAMERICANA DE DERECHOS HUMANOS DE DE NOVIEMBRE DE CASO BAENA RICARDO Y OTROS TRABAJADORES VS. PANAM\u00c1 CUMPLIMIENTO DE SENTENCIA VISTOS La Sentencia que emiti\u00f3 la Corte Interamericana de Derechos Humanos en adelante la Corte la Corte Interamericana o el Tribunal en el caso Baena Ricardo y otros el de febrero de en adelante la Sentencia en cuyos puntos resolutivos por unanimidad declar\u00f3 que el Estado viol\u00f3 los principios de legalidad y de irretroactividad en el ", - "values": [ - "Corte Interamericana de Derechos Humanos" - ] - }, - { - "text": "RESOLUCI\u00d3N DE LA CORTE INTERAMERICANA DE DERECHOS HUMANOS DEL DE JUNIO DE MEDIDAS PROVISIONALES SOLICITADAS POR LA COMISI\u00d3N INTERAMERICANA DE DERECHOS HUMANOS RESPECTO DE LA REPUBLICA DE GUATEMALA CASO VOGT VISTO El escrito de de marzo de y sus anexos mediante el cual la Comisi\u00f3n Interamericana de Derechos Humanos en adelante la Comisi\u00f3n o la Comisi\u00f3n Interamericana somete a la Corte Interamericana de Derechos Humanos en adelante la Corte o la Corte Interamericana en virtud de los de la ", - "values": [ - "Corte Interamericana de Derechos Humanos" - ] - }, - { - "text": "RESOLUCI\u00d3N DE LA CORTE INTERAMERICANA DE DERECHOS HUMANOS DE DE SEPTIEMBRE DE SOLICITUD DE MEDIDAS PROVISIONALES PRESENTADA POR LA COMISI\u00d3N INTERAMERICANA DE DERECHOS HUMANOS RESPECTO DE LA REP\u00daBLICA DE COLOMBIA CASO COMERCIANTES SANDRA BELINDA MONTERO FUENTES Y OTROS VISTOS La Sentencia de fondo reparaciones y costas emitida por la Corte Interamericana de Derechos Humanos en adelante la Corte o el Tribunal el de julio de en el caso Comerciantes respecto de la Rep\u00fablica de Colombia en ", - "values": [ - "Corte Interamericana de Derechos Humanos" - ] - }, - { - "text": "Voto concurrente del Juez Diego Garc\u00edaSay\u00e1n en relaci\u00f3n con la Sentencia de la Corte Interamericana de Derechos Humanos en el Caso Cepeda Vargas vs. Colombia de de mayo de En este voto concurrente desarrollo el fundamento de mi coincidencia con lo decidido por la Corte en la Sentencia del caso Cepeda Vargas vs. Colombia en lo que ata\u00f1e a la valoraci\u00f3n positiva de lo actuado en el \u00e1mbito interno en la jurisdicci\u00f3n contencioso administrativa con respecto a la determinaci\u00f3n de una indemnizaci\u00f3n", - "values": [ - "Corte Interamericana de Derechos Humanos" - ] - }, - { - "text": "VOTO CONCURRENTE DEL JUEZ SERGIO GARC\u00cdA RAM\u00cdREZ A LA SENTENCIA SOBRE EL CASO PALAMARA IRIBARNE VS. CHILE DE DE NOVIEMBRE DE Son temas centrales en este caso la libertad de expresi\u00f3n y el debido proceso penal. Este que ser\u00e1 el asunto principal del presente Voto concurrente constituye la cuesti\u00f3n m\u00e1s frecuentemente tratada por la jurisprudencia de la Corte Interamericana en lo que respecta a casos contenciosos y tambi\u00e9n ha sido abordada directa o indirectamente en algunas opiniones consultivas.", - "values": [ - "Corte Interamericana de Derechos Humanos" - ] - }, - { - "text": "RESOLUCI\u00d3N DE LA CORTE INTERAMERICANA DE DERECHOS HUMANOS DE DE JULIO DE CASO G\u00d3MEZ PALOMINO VS. PER\u00da SUPERVISI\u00d3N DE CUMPLIMIENTO DE SENTENCIA VISTO La Sentencia de fondo reparaciones y costas en adelante la Sentencia dictada por la Corte Interamericana de Derechos Humanos en adelante la Corte la Corte Interamericana o el Tribunal el de noviembre de mediante la cual dispuso que El Estado deb\u00eda cumplir su obligaci\u00f3n de investigar efectivamente los hechos denunciados as\u00ed como identificar y", - "values": [ - "Corte Interamericana de Derechos Humanos" - ] - }, - { - "text": " VOTO RAZONADO Y PARCIALMENTE DISIDENTE DEL JUEZ FERNANDO VIDAL RAM\u00cdREZ Participo en el pronunciamiento de la sentencia con el razonamiento ya expresado y que es definitorio de mi status como Juez ad hoc caso Durand y Ugarte y por las siguientes consideraciones Al resolver las excepciones preliminares la Corte las desestim\u00f3 y decidi\u00f3 continuar con la tramitaci\u00f3n del fondo. Contra lo resuelto dej\u00e9 expresada mi disidencia en relaci\u00f3n a seis de las siete excepciones preliminares propuestas as\u00ed ", - "values": [ - "Corte Interamericana de Derechos Humanos" - ] - }, - { - "text": "RESOLUCI\u00d3N DEL PRESIDENTE DE LA CORTE INTERAMERICANA DE DERECHOS HUMANOS DE DE MAYO DE FONDO DE ASISTENCIA LEGAL DE V\u00cdCTIMAS CASO FORNER\u00d3N E HIJA VS. ARGENTINA VISTO El escrito de de noviembre de y su anexo mediante los cuales la Comisi\u00f3n Interamericana de Derechos Humanos en adelante la Comisi\u00f3n Interamericana o la Comisi\u00f3n someti\u00f3 a la Corte Interamericana de Derechos Humanos en adelante la Corte Interamericana la Corte o el Tribunal un caso en contra de la Rep\u00fablica Argentina en o el ", - "values": [ - "Corte Interamericana de Derechos Humanos" - ] - }, - { - "text": "RESOLUCI\u00d3N DE LA CORTE INTERAMERICANA DE DERECHOS HUMANOS DE DE ENERO DE MEDIDAS PROVISIONALES RESPECTO DE EL SALVADOR CASO GARC\u00cdA PRIETO Y OTROS VISTO Las Resoluciones de la Corte Interamericana de Derechos Humanos en adelante tambi\u00e9n la Corte Interamericana la Corte o el Tribunal emitidas el de septiembre de de enero de y de febrero de y las resoluciones del Presidente de la Corte emitidas el de diciembre de y de diciembre de En su \u00faltima resoluci\u00f3n la Corte resolvi\u00f3 Levantar ", - "values": [ - "Corte Interamericana de Derechos Humanos" - ] - }, - { - "text": "Resoluci\u00f3n de la Corte Interamericana de Derechos Humanos de de noviembre de Medidas provisionales respecto de Venezuela Asunto de los diarios El Nacional y As\u00ed es la Noticia Vistos La Resoluci\u00f3n de la Corte Interamericana de Derechos Humanos en adelante la Corte Interamericana la Corte o el Tribunal de de julio de respecto de la Rep\u00fablica Bolivariana de Venezuela en adelante el Estado o Venezuela mediante la cual resolvi\u00f3 Requerir al Estado que adoptara sin dilaci\u00f3n las medidas que y", - "values": [ - "Corte Interamericana de Derechos Humanos" - ] - }, - { - "text": "CORTE INTERAMERICANA DE DERECHOS HUMANOS CASO VARGAS ARECO VS. PARAGUAY SENTENCIA DE DE SEPTIEMBRE DE En el caso Vargas Areco la Corte Interamericana de Derechos Humanos en adelante la Corte Interamericana la Corte o el Tribunal integrada por los siguientes jueces Sergio Garc\u00eda Ram\u00edrez Presidente Alirio Abreu Burelli Vicepresidente Ant\u00f4nio A. Can\u00e7ado Trindade Juez Cecilia Medina Quiroga Jueza Manuel E. Ventura Robles Juez y Diego Garc\u00edaSay\u00e1n Juez presentes adem\u00e1s Pablo Saavedra Alessandri y ", - "values": [ - "Corte Interamericana de Derechos Humanos" - ] - }, - { - "text": "RESOLUCI\u00d3N DE LA CORTE INTERAMERICANA DE DERECHOS HUMANOS DE DE SEPTIEMBRE DE MEDIDAS PROVISIONALES SOLICITADAS POR LA COMISION INTERAMERICANA DE DERECHOS HUMANOS RESPECTO DE LA REP\u00daBLICA DEL PER\u00da CASO CESTI HURTADO VISTOS El escrito de de julio de mediante el cual la Comisi\u00f3n Interamericana de Derechos Humanos en adelante la Comisi\u00f3n o la Comisi\u00f3n Interamericana someti\u00f3 a la Corte Interamericana de Derechos Humanos en adelante la Corte o la Corte Interamericana en virtud de los art\u00edculos ", - "values": [ - "Corte Interamericana de Derechos Humanos" - ] - }, - { - "text": "CORTE INTERAMERICANA DE DERECHOS HUMANOS CASO PALMA MENDOZA Y OTROS VS. ECUADOR SENTENCIA DE SEPTIEMBRE DE EXCEPCION PRELIMINAR Y FONDO En el caso Palma Mendoza y otros la Corte Interamericana de Derechos Humanos en adelante la Corte Interamericana la Corte o el Tribunal integrada por los siguientes jueces Diego Garc\u00edaSay\u00e1n Presidente Manuel E. Ventura Robles Vicepresidente Leonardo A. Franco Juez Rhadys Abreu Blondet Jueza Alberto P\u00e9rez P\u00e9rez Juez y Eduardo Vio Grossi Juez presentes adem\u00e1s ", - "values": [ - "Corte Interamericana de Derechos Humanos" - ] - }, - { - "text": "Corte Interamericana de Derechos Humanos Caso L\u00f3pez \u00c1lvarez Vs. Honduras Sentencia de de febrero de Fondo Reparaciones y Costas En el caso L\u00f3pez \u00c1lvarez la Corte Interamericana de Derechos Humanos en adelante la Corte la Corte Interamericana o el Tribunal integrada por los siguientes jueces Sergio Garc\u00eda Ram\u00edrez Presidente Alirio Abreu Burelli Vicepresidente Oliver Jackman Juez Ant\u00f4nio A. Can\u00e7ado Trindade Juez Cecilia Medina Quiroga Jueza y Manuel E. Ventura Robles Juez presentes adem\u00e1s Pablo", - "values": [ - "Corte Interamericana de Derechos Humanos" - ] - }, - { - "text": "CORTE INTERAMERICANA DE DERECHOS HUMANOS CASO KIMEL VS. ARGENTINA SENTENCIA DE DE MAYO DE FONDO REPARACIONES Y COSTAS En el caso Kimel la Corte Interamericana de Derechos Humanos en adelante la Corte Interamericana la Corte o el Tribunal integrada por los siguientes jueces Cecilia Medina Quiroga Presidenta Diego Garc\u00edaSay\u00e1n Vicepresidente Sergio Garc\u00eda Ram\u00edrez Juez Manuel E. Ventura Robles Juez Margarette May Macaulay Jueza y Rhadys Abreu Blondet Jueza presentes adem\u00e1s Pablo Saavedra y ", - "values": [ - "Corte Interamericana de Derechos Humanos" - ] - }, - { - "text": "RESOLUCI\u00d3N DE LA CORTE INTERAMERICANA DE DERECHOS HUMANOS DE DE AGOSTO DE MEDIDAS PROVISIONALES RESPECTO DE LA REP\u00daBLICA DE COLOMBIA ASUNTO DE LA COMUNIDAD DE PAZ DE SAN JOS\u00c9 DE APARTAD\u00d3 VISTO Las Resoluciones de la Corte Interamericana de Derechos Humanos en adelante la Corte Interamericana la Corte o el Tribunal de de noviembre de de junio de de noviembre de de marzo de de febrero de y de febrero de En esta \u00faltima Resoluci\u00f3n la Corte resolvi\u00f3 inter alia Reiterar al Estado que ", - "values": [ - "Corte Interamericana de Derechos Humanos" - ] - }, - { - "text": "CORTE INTERAMERICANA DE DERECHOS HUMANOS CASO MOHAMED VS. ARGENTINA SENTENCIA DE DE NOVIEMBRE DE EXCEPCI\u00d3N PRELIMINAR FONDO REPARACIONES Y COSTAS En el caso Mohamed la Corte Interamericana de Derechos Humanos en adelante la Corte Interamericana la Corte o el Tribunal integrada por los siguientes jueces Diego Garc\u00edaSay\u00e1n Presidente Manuel E. Ventura Robles Vicepresidente Margarette May Macaulay Jueza Rhadys Abreu Blondet Jueza Alberto P\u00e9rez P\u00e9rez Juez y Eduardo Vio Grossi Juez presentes ", - "values": [ - "Corte Interamericana de Derechos Humanos" - ] - }, - { - "text": "RESOLUCI\u00d3N DEL PRESIDENTE EN EJERCICIO DE LA CORTE INTERAMERICANA DE DERECHOS HUMANOS DE DE MARZO DE SOLICITUD DE MEDIDAS PROVISIONALES PRESENTADA POR LA COMISI\u00d3N INTERAMERICANA DE DERECHOS HUMANOS RESPECTO DE LA REP\u00daBLICA DE PER\u00da ASUNTO WONG HO WING VISTO El escrito de la Comisi\u00f3n Interamericana de Derechos Humanos en adelante la Comisi\u00f3n Interamericana o la Comisi\u00f3n de de febrero de y sus anexos mediante los cuales someti\u00f3 a la Corte Interamericana de Derechos Humanos en adelante la la", - "values": [ - "Corte Interamericana de Derechos Humanos" - ] - }, - { - "text": "RESOLUCI\u00d3N DEL PRESIDENTE DE LA CORTE INTERAMERICANA DE DERECHOS HUMANOS DE DE MAYO DE CASO ANDRADE SALM\u00d3N VS. BOLIVIA VISTO El escrito de sometimiento del caso y el Informe de Fondo de la Comisi\u00f3n Interamericana de Derechos Humanos en adelante la Comisi\u00f3n Interamericana o la Comisi\u00f3n el escrito de solicitudes argumentos y pruebas en adelante el escrito de solicitudes y argumentos de los representantes de la presunta v\u00edctima en adelante los representantes y el escrito de contestaci\u00f3n al ", - "values": [ - "Corte Interamericana de Derechos Humanos" - ] - }, - { - "text": "CORTE INTERAMERICANA DE DERECHOS HUMANOS CASTILLO GONZ\u00c1LEZ Y OTROS VS. VENEZUELA SENTENCIA DE DE NOVIEMBRE DE Fondo En el caso Castillo Gonz\u00e1lez y otros la Corte Interamericana de Derechos Humanos en adelante la Corte Interamericana la Corte o el Tribunal integrada por los siguientes jueces Diego Garc\u00edaSay\u00e1n Presidente Manuel E. Ventura Robles Vicepresidente Leonardo A. Franco Juez Margarette May Macaulay Jueza Rhadys Abreu Blondet Jueza Alberto P\u00e9rez P\u00e9rez Juez Eduardo Vio Grossi Juez y ", - "values": [ - "Corte Interamericana de Derechos Humanos" - ] - }, - { - "text": "RESOLUCI\u00d3N DE LA CORTE INTERAMERICANA DE DERECHOS HUMANOS DE DE NOVIEMBRE DE MEDIDAS PROVISIONALES ASUNTO DE LA FUNDACI\u00d3N DE ANTROPOLOG\u00cdA FORENSE DE GUATEMALA VISTOS La Resoluci\u00f3n de la Corte Interamericana de Derechos Humanos en adelante la Corte la Corte Interamericana o el Tribunal dictada el de julio de mediante la cual orden\u00f3 la adopci\u00f3n de medidas provisionales a favor de los integrantes de la Fundaci\u00f3n de Antropolog\u00eda Forense de Guatemala en adelante la FAFG y otros entre quienes se", - "values": [ - "Corte Interamericana de Derechos Humanos" - ] - }, - { - "text": "RESOLUCI\u00d3N DE LA CORTE INTERAMERICANA DE DERECHOS HUMANOS DE DE SEPTIEMBRE DE SOLICITUD DE MEDIDAS PROVISIONALES PRESENTADA POR LA COMISI\u00d3N INTERAMERICANA DE DERECHOS HUMANOS RESPECTO DE LA REP\u00daBLICA DE COLOMBIA A FAVOR DE MERY NARANJO Y OTROS VISTO La Resoluci\u00f3n de la Corte Interamericana de Derechos Humanos en adelante la Corte Interamericana o la Corte o el Tribunal de de julio de en la cual resolvi\u00f3 Requerir al Estado que adopte de forma inmediata las medidas necesarias para proteger ", - "values": [ - "Corte Interamericana de Derechos Humanos" - ] - }, - { - "text": "VOTO CONCURRENTE RAZONADO DEL JUEZ SERGIO GARC\u00cdA RAM\u00cdREZ Concurro con mis colegas en la emisi\u00f3n de la Sentencia correspondiente al Caso Cinco Pensionistas vs. Per\u00fa sin perjuicio de exponer las razones que tom\u00e9 en cuenta para emitir mi voto coincidente en relaci\u00f3n con diversos puntos analizados en esa decisi\u00f3n. Hechos planteados fuera de la demanda La tendencia que se observa claramente en los sucesivos Reglamentos de la Corte sobre todo en el vigente del a\u00f1o ha llevado al establecimiento de ", - "values": [ - "Corte Interamericana de Derechos Humanos" - ] - }, - { - "text": "RELAT\u00d3RIO N\u00ba CASO EL ARO ITUANGO COL\u00d4MBIA de outubro de I. RESUMO Em de mar\u00e7o de a Comiss\u00e3o Interamericana de Direitos Humanos doravante denominada a Comiss\u00e3o ou CIDH recebeu uma peti\u00e7\u00e3o apresentada pelo Grupo Interdisciplinar pelos Direitos Humanos doravante denominado os peticion\u00e1rios na qual alega que entre o dia de outubro e de novembro de membros de grupos \u00e0 margem da lei conhecidos como paramilitares executaram Arnulfo S\u00e1nchez Jos\u00e9 Dar\u00edo Mart\u00ednez Olcris Fail D\u00edaz Wilmar Restrepo", - "values": [ - "Comisi\u00f3n Interamericana de Derechos Humanos" - ] - }, - { - "text": "INFORME N\u00ba CASO ALVARO LOBO PACHECO Y OTROS COMERCIANTES COLOMBIA de septiembre de I. RESUMEN El de marzo de la Comisi\u00f3n Interamericana de Derechos Humanos en adelante la Comisi\u00f3n recibi\u00f3 una petici\u00f3n presentada por la Comisi\u00f3n Colombiana de Juristas en adelante los peticionarios contra la Rep\u00fablica de Colombia en adelante el Estado el Estado colombiano o Colombia por la presunta desaparici\u00f3n forzada de Alvaro Lobo Pacheco Gerson Rodr\u00edguez Israel Pundor Angel Barrera Antonio Florez ", - "values": [ - "Comisi\u00f3n Interamericana de Derechos Humanos" - ] - }, - { - "text": "CORTE INTERAMERICANA DE DERECHOS HUMANOS CASO PACHECO TERUEL Y OTROS VS. HONDURAS SENTENCIA DE DE ABRIL DE Fondo Reparaciones y Costas En el caso Pacheco Teruel y otros la Corte Interamericana de Derechos Humanos en adelante la Corte Interamericana la Corte o el Tribunal integrada por los siguientes jueces Diego Garc\u00edaSay\u00e1n Presidente Manuel E. Ventura Robles Vicepresidente Leonardo A. Franco Juez Margarette May Macaulay Jueza Rhadys Abreu Blondet Jueza Alberto P\u00e9rez P\u00e9rez Juez Eduardo Vio ", - "values": [ - "Corte Interamericana de Derechos Humanos" - ] - }, - { - "text": "RESOLUCI\u00d3N DE LA CORTE INTERAMERICANA DE DERECHOS HUMANOS DE DE FEBRERO DE MEDIDAS PROVISIONALES RESPECTO DE LA REP\u00daBLICA DE PER\u00da ASUNTO RAM\u00cdREZ HINOSTROZA Y OTROS VISTO La Resoluci\u00f3n emitida por el Presidente de la Corte Interamericana de Derechos Humanos en adelante la Corte Interamericana la Corte o el Tribunal el de julio de as\u00ed como las Resoluciones emitidas por la Corte Interamericana el de septiembre de el de febrero de el de julio de y el de mayo de Mediante esta \u00faltima el ", - "values": [ - "Corte Interamericana de Derechos Humanos" - ] - }, - { - "text": "INFORME N\u00ba PETICI\u00d3N ADMISIBILIDAD MAR\u00cdA ISABEL V\u00c9LIZ FRANCO GUATEMALA de octubre de I. RESUMEN El de enero de la Comisi\u00f3n Interamericana de Derechos Humanos en lo sucesivo Comisi\u00f3n Interamericana Comisi\u00f3n o CIDH recibi\u00f3 una denuncia en la que se alega la responsabilidad internacional del Estado de Guatemala El Estado por los vac\u00edos e irregularidades en la investigaci\u00f3n de la muerte de Mar\u00eda Isabel V\u00e9liz Franco de a\u00f1os de edad quien desapareci\u00f3 el de diciembre de en Ciudad Guatemala y ", - "values": [ - "Comisi\u00f3n Interamericana de Derechos Humanos" - ] - }, - { - "text": "RESOLUCI\u00d3N DE LA CORTE INTERAMERICANA DE DERECHOS HUMANOS DE DE NOVIEMBRE DE CASO MOLINA THEISSEN VS. GUATEMALA SUPERVISI\u00d3N DE CUMPLIMIENTO DE SENTENCIA VISTO La Sentencia de fondo dictada por la Corte Interamericana de Derechos Humanos en adelante la Corte la Corte Interamericana o el Tribunal el de mayo de La Sentencia de reparaciones dictada por la Corte el de julio de mediante la cual dispuso que el Estado deb\u00eda localizar y hacer entrega de los restos mortales de Marco Antonio a ", - "values": [ - "Corte Interamericana de Derechos Humanos" - ] - }, - { - "text": "RESOLUCI\u00d3N DE LA CORTE INTERAMERICANA DE DERECHOS HUMANOS DE DE SEPTIEMBRE DE MEDIDAS PROVISIONALES ADOPTADAS POR LA CORTE INTERAMERICANA DE DERECHOS HUMANOS RESPECTO DE LA REP\u00daBLICA DE COLOMBIA CASO CABALLERO DELGADO Y SANTANA VISTOS La resoluci\u00f3n de la Corte Interamericana de Derechos Humanos en adelante la Corte de de abril de en la cual decidi\u00f3 Requerir al Estado de Colombia que adopte sin dilaci\u00f3n las medidas necesarias para proteger la vida e integridad personal de los se\u00f1ores ", - "values": [ - "Corte Interamericana de Derechos Humanos" - ] - }, - { - "text": "Corte Interamericana de Direitos Humanos Caso Su\u00e1rez Rosero Vs. Equador Senten\u00e7a de de novembro de M\u00e9rito No caso Su\u00e1rez Rosero A Corte Interamericana de Direitos Humanos integrada pelos seguintes ju\u00edzes Ant\u00f4nio A. Can\u00e7ado Trindade Presidente Hern\u00e1n Salgado Pesantes Juiz H\u00e9ctor FixZamudio Juiz Alejandro Montiel Arg\u00fcello Juiz M\u00e1ximo Pacheco G\u00f3mez Juiz Oliver Jackman Juiz e Alirio Abreu Burelli Juiz presentes ademais Manuel E. Ventura Robles Secret\u00e1rio e V\u00edctor M. Rodr\u00edguez Rescia Secret\u00e1rio ", - "values": [ - "Corte Interamericana de Derechos Humanos" - ] - }, - { - "text": "RESOLUCI\u00d3N DE LA CORTE INTERAMERICANA DE DERECHOS HUMANOS DE DE NOVIEMBRE DE MEDIDAS PROVISIONALES SOLICITADAS POR LA COMISI\u00d3N INTERAMERICANA DE DERECHOS HUMANOS RESPECTO DE LA REP\u00daBLICA DE VENEZUELA LUISIANA R\u00cdOS Y OTROS VS. VENEZUELA VISTOS La comunicaci\u00f3n de de noviembre de y sus anexos mediante la cual la Comisi\u00f3n Interamericana de Derechos Humanos en adelante la Comisi\u00f3n Interamericana o la Comisi\u00f3n someti\u00f3 a la Corte Interamericana de Derechos Humanos en adelante la Corte la Corte o", - "values": [ - "Corte Interamericana de Derechos Humanos" - ] - }, - { - "text": "CORTE INTERAMERICANA DE DERECHOS HUMANOS CASO QUISPIALAYA VILCAPOMA VS. PER\u00da SENTENCIA DE DE NOVIEMBRE DE Excepciones Preliminares Fondo Reparaciones y Costas En el CasoQuispialaya Vilcapoma la Corte Interamericana de Derechos Humanos en adelante la Corte Interamericana la Corte o el Tribunal integrada por los siguientes jueces Humberto Antonio Sierra Porto Presidente Roberto F. Caldas Vicepresidente Manuel E. Ventura Robles Juez Alberto P\u00e9rez P\u00e9rez Juez Eduardo Vio Grossi Juez y Eduardo ", - "values": [ - "Corte Interamericana de Derechos Humanos" - ] - }, - { - "text": "Resoluci\u00f3n de la Corte Interamericana de Derechos Humanos de de noviembre de Medidas Provisionales respecto del Estado de Nicaragua Caso Comunidad Mayagna Sumo Awas Tingni VISTOS La Sentencia de la Corte Interamericana de Derechos Humanos en adelante la Corte Interamericana la Corte o el Tribunal de de agosto de en el Caso de la Comunidad Mayagna Sumo Awas Tingni en adelante la Comunidad Awas Tingni o la Comunidad. La Resoluci\u00f3n de la Corte Interamericana de de septiembre de mediante la", - "values": [ - "Corte Interamericana de Derechos Humanos" - ] - }, - { - "text": "RESOLUCI\u00d3N DE LA CORTE INTERAMERICANA DE DERECHOS HUMANOS DE DE NOVIEMBRE DE MEDIDAS PROVISIONALES RESPECTO DEL ESTADO DE GUATEMALA CASO BLAKE VISTOS La Resoluci\u00f3n del Presidente de la Corte Interamericana de Derechos Humanos en adelante el Presidente de de agosto de mediante la cual resolvi\u00f3 Solicitar al Gobierno de la Rep\u00fablica de Guatemala que adopte sin dilaci\u00f3n cuantas medidas sean necesarias para asegurar eficazmente la protecci\u00f3n de la vida e integridad personal de JUSTO VICTORIANO", - "values": [ - "Corte Interamericana de Derechos Humanos" - ] - }, - { - "text": "RESOLUCI\u00d3N DE LA CORTE INTERAMERICANA DE DERECHOS HUMANOS DE DE NOVIEMBRE DE CASO CANTOS VS. ARGENTINA CUMPLIMIENTO DE SENTENCIA VISTOS La Sentencia de fondo reparaciones y costas emitida el de noviembre de por la Corte Interamericana de Derechos Humanos en adelante la Corte la Corte Interamericana o el Tribunal mediante la cual el Tribunal declar\u00f3 inter alia que el Estado viol\u00f3 el derecho de acceso a la justicia consagrado en los art\u00edculos y de la Convenci\u00f3n Americana sobre Derechos en", - "values": [ - "Corte Interamericana de Derechos Humanos" - ] - }, - { - "text": "Resoluci\u00f3n de la Corte Interamericana de Derechos Humanos de de noviembre de Caso Casta\u00f1eda Gutman VISTOS El escrito de demanda de de marzo de presentado por la Comisi\u00f3n Interamericana de Derechos Humanos en adelante la Comisi\u00f3n o la Comisi\u00f3n Interamericana ante la Corte Interamericana de Derechos Humanos en adelante la Corte o el Tribunal en el cual propuso como perito al se\u00f1or Lorenzo C\u00f3rdova Vianello para que rindiera declaraci\u00f3n sobre los mecanismos existentes en M\u00e9xico para la por ", - "values": [ - "Corte Interamericana de Derechos Humanos" - ] - }, - { - "text": "RESOLUCI\u00d3N DE LA CORTE INTERAMERICANA DE DERECHOS HUMANOS DE DE NOVIEMBRE DE CASO CABALLERO DELGADO Y SANTANA VS. COLOMBIA SUPERVISI\u00d3N DE CUMPLIMIENTO DE SENTENCIA VISTO Las Sentencias de fondo y de reparaciones y costas en adelante las Sentencias dictadas por la Corte Interamericana de Derechos Humanos en adelante la Corte Interamericana la Corte o el Tribunal el de diciembre de y el de enero de respectivamente. Las resoluciones de supervisi\u00f3n de cumplimiento de las Sentencias que la ", - "values": [ - "Corte Interamericana de Derechos Humanos" - ] - }, - { - "text": "RESOLUCI\u00d3N DE LA CORTE INTERAMERICANA DE DERECHOS HUMANOS DE DE ABRIL DE CASOS RADILLA PACHECO FERN\u00c1NDEZ ORTEGA Y OTROS Y ROSENDO CANT\u00da Y OTRA VS. M\u00c9XICO SUPERVISI\u00d3N DE CUMPLIMIENTO DE SENTENCIA VISTO Las Sentencias de excepci\u00f3n preliminar fondo reparaciones y costas dictadas por la Corte Interamericana de Derechos Humanos en adelante la Corte Interamericana la Corte o el Tribunal en los casos Radilla Pacheco Fern\u00e1ndez Ortega y otros y Rosendo Cant\u00fa y otra todos contra M\u00e9xico en adelante el ", - "values": [ - "Corte Interamericana de Derechos Humanos" - ] - }, - { - "text": "RESOLUCI\u00d3N DE LA CORTE INTERAMERICANA DE DERECHOS HUMANOS DE DE SEPTIEMBRE DE AMPLIACI\u00d3N DE MEDIDAS PROVISIONALES SOLICITADAS POR LA COMISI\u00d3N INTERAMERICANA DE DERECHOS HUMANOS RESPECTO DE LA REP\u00daBLICA DE GUATEMALA CASO COLOTENANGO VISTOS La Resoluci\u00f3n de la Corte Interamericana de Derechos Humanos en adelante la Corte o la Corte Interamericana de de junio de en la cual decidi\u00f3 Requerir al Gobierno de Guatemala que adoptase sin dilaci\u00f3n cuantas medidas fuesen necesarias para proteger el ", - "values": [ - "Corte Interamericana de Derechos Humanos" - ] - }, - { - "text": "RESOLUCI\u00d3N DEL PRESIDENTE DE LA CORTE INTERAMERICANA DE DERECHOS HUMANOS DE DE OCTUBRE DE CASO RODR\u00cdGUEZ VERA Y OTROS VS. COLOMBIA VISTO El escrito de de febrero de mediante el cual la Comisi\u00f3n Interamericana de Derechos Humanos en adelante la Comisi\u00f3n Interamericana o la Comisi\u00f3n someti\u00f3 ante la Corte Interamericana de Derechos Humanos en adelante la Corte Interamericana la Corte o este Tribunal un caso en contra de la Rep\u00fablica de Colombia en adelante Colombia o el Estado y ofreci\u00f3 dos ", - "values": [ - "Corte Interamericana de Derechos Humanos" - ] - }, - { - "text": "RESOLUCI\u00d3N DE LA CORTE INTERMERICANA DE DERECHOS HUMANOS DE MAYO DE MEDIDAS PROVISIONALES RESPECTO DE VENEZUELA CASO FAMILIA BARRIOS VISTO Las Resoluciones de la Corte Interamericana de Derechos Humanos en adelante la Corte Interamericana la Corte o el Tribunal emitidas el de noviembre de de junio y de septiembre de de febrero y de noviembre de de febrero y de julio de y de febrero de En esta \u00faltima la Corte declar\u00f3 que Las muertes de los se\u00f1ores V\u00edctor Tom\u00e1s Navarro Barrios y ", - "values": [ - "Corte Interamericana de Derechos Humanos" - ] - }, - { - "text": "CORTE INTERAMERICANA DE DERECHOS HUMANOS CASO TORRES MILLACURA Y OTROS VS. ARGENTINA SENTENCIA DE DE AGOSTO DE Fondo Reparaciones y Costas En el Caso Torres Millacura y otros la Corte Interamericana de Derechos Humanos en adelante la Corte Interamericana la Corte o el Tribunal integrada por los siguientes jueces Diego Garc\u00edaSay\u00e1n Presidente Manuel E. Ventura Robles Juez Margarette May Macaulay Jueza Rhadys Abreu Blondet Jueza Alberto P\u00e9rez P\u00e9rez Juez y Eduardo Vio Grossi Juez presente adem\u00e1s ", - "values": [ - "Corte Interamericana de Derechos Humanos" - ] - }, - { - "text": "CORTE INTERAMERICANA DE DERECHOS HUMANOS CASO GUDIEL \u00c1LVAREZ Y OTROS DIARIO MILITAR VS. GUATEMALA SENTENCIA DE DE NOVIEMBRE DE FONDO REPARACIONES Y COSTAS En el caso Gudiel \u00c1lvarez y otros la Corte Interamericana de Derechos Humanos en adelante la Corte Interamericana la Corte o el Tribunal integrada por los siguientes jueces Diego Garc\u00edaSay\u00e1n Presidente Manuel E. Ventura Robles Vicepresidente Leonardo A. Franco Juez Margarette May Macaulay Jueza Rhadys Abreu Blondet Jueza y Alberto P\u00e9rez ", - "values": [ - "Corte Interamericana de Derechos Humanos" - ] - }, - { - "text": "RESOLUCI\u00d3N DEL PRESIDENTE DE LA CORTE INTERAMERICANA DE DERECHOS HUMANOS DE DE AGOSTO DE MEDIDAS PROVISIONALES ASUNTO DE LA FUNDACI\u00d3N DE ANTROPOLOG\u00cdA FORENSE DE GUATEMALA VISTOS La Resoluci\u00f3n de la Corte Interamericana de Derechos Humanos en adelante la Corte la Corte Interamericana o el Tribunal dictada el de julio de mediante la cual orden\u00f3 la adopci\u00f3n de medidas provisionales a favor de los integrantes de la Fundaci\u00f3n de Antropolog\u00eda Forense de Guatemala en adelante la FAFG y otros se", - "values": [ - "Corte Interamericana de Derechos Humanos" - ] - }, - { - "text": "CONCURRING OPINION OF JUDGE AA. CAN\u00c7ADO TRINDADE I have concurred with the adoption of this Judgment which has been recently rendered by the InterAmerican Court of Human Rights in the Case of the Indigenous Community Yakye Axa v. Paraguay wherein the Court asserts the obligations of the respondent State with the Yakye Axa Community regarding the definite transfer of the traditional territories to the Yakye Axa Community para. I basically agree with the decision adopted by the Court and I its", - "values": [ - "Corte Interamericana de Derechos Humanos" - ] - }, - { - "text": "VOTO CONCURRENTE DEL JUEZ AA. CAN\u00c7ADO TRINDADE Al votar a favor de la adopci\u00f3n por la Corte Interamericana de Derechos Humanos de la presente Sentencia sobre el fondo del caso La \u00daltima Tentaci\u00f3n de Cristo Olmedo Bustos y Otros versus Chile que salvaguarda el derecho a la libertad de pensamiento y de expresi\u00f3n me veo obligado a dejar constancia de mis reflexiones acerca de las implicaciones jur\u00eddicas altamente relevantes de lo decidido por la Corte como fundamento de mi posici\u00f3n al respecto. ", - "values": [ - "Corte Interamericana de Derechos Humanos" - ] - }, - { - "text": "VOTO RAZONADO Y PARCIALMENTE DISIDENTE DEL JUEZ ARTURO MART\u00cdNEZ G\u00c1LVEZ En mi calidad de Juez ad hoc en el presente caso Myrna Mack Chang cuya demanda present\u00f3 la Comisi\u00f3n Interamericana de Derechos Humanos contra el Estado de Guatemala me pronuncio sobre lo siguiente I. En la cuesti\u00f3n de fondo con referencia al allanamiento presentado por el Estado de Guatemala la Corte no obstante entr\u00f3 a valorar la prueba de los hechos que por este acto procesal dejaron de ser controvertidos tanto m\u00e1s cuanto ", - "values": [ - "Corte Interamericana de Derechos Humanos" - ] - }, - { - "text": "Resoluci\u00f3n de la Corte Interamericana de Derechos Humanos De de noviembre de Caso de la Panel Blanca Paniagua Morales y otros Vs. Guatemala Supervisi\u00f3n de Cumplimiento de Sentencias VISTOS La Sentencia de fondo dictada por la Corte Interamericana de Derechos Humanos en adelante la Corte la Corte Interamericana o el Tribunal el de marzo de La Sentencia de reparaciones dictada por la Corte el de mayo de La Resoluci\u00f3n emitida por el Tribunal el de noviembre de mediante la cual declar\u00f3 ", - "values": [ - "Corte Interamericana de Derechos Humanos" - ] - }, - { - "text": "VOTO PARCIALMENTE DISIDENTE DEL JUEZ MANUEL E. VENTURA ROBLES Mi disidencia parcial sobre el punto resolutivo de la presente Sentencia sobre el Caso Manuel Cepeda Vargas vs. Colombia en relaci\u00f3n con la determinaci\u00f3n de la indemnizaci\u00f3n por la p\u00e9rdida de ingresos versa espec\u00edficamente sobre el criterio que adopt\u00f3 la mayor\u00eda de los Jueces de la Corte para determinar el monto por p\u00e9rdida de ingresos que valor\u00f3 positivamente lo actuado en esta materia por los tribunales internos en el caso sub y ", - "values": [ - "Corte Interamericana de Derechos Humanos" - ] - }, - { - "text": "RESOLUCI\u00d3N DE LA CORTE INTERAMERICANA DE DERECHOS HUMANOS DE DE FEBRERO DE CASO PACHECO TERUEL Y OTROS VS. HONDURAS VISTO La Resoluci\u00f3n del Presidente en adelante la Resoluci\u00f3n de la Corte Interamericana de Derechos Humanos en adelante la Corte o la Corte Interamericana de de enero de en la cual entre otros resolvi\u00f3 Informar a los representantes al Estado y a la Comisi\u00f3n Interamericana que cuentan con un plazo hasta el de marzo de para presentar sus alegatos finales escritos y finales", - "values": [ - "Corte Interamericana de Derechos Humanos" - ] - }, - { - "text": "INFORME N\u00ba CASO ANTHONY GARC\u00cdA TRINIDAD Y TOBAGO de septiembre de I. ANTECEDENTES Por carta fechada el de diciembre de el Sr. Clive Woolf de la firma de abogados londinense S. Rutter y Co. en adelante Collyer Bristow present\u00f3 una petici\u00f3n ante la Comisi\u00f3n Interamericana de Derechos Humanos en adelante la Comisi\u00f3n contra la Rep\u00fablica de Trinidad y Tobago en adelante el Estado o Trinidad en nombre del Sr. Anthony Garc\u00eda condenado a muerte en la penitenciar\u00eda estatal de Puerto Espa\u00f1a. En ", - "values": [ - "Comisi\u00f3n Interamericana de Derechos Humanos" - ] - }, - { - "text": "VOTO INDIVIDUAL CONCURRENTE DEL JUEZ EDUARDO VIO GROSSI CORTE INTERAMERICANA DE DERECHOS HUMANOS CASO UZC\u00c1TEGUI Y OTROS VS. VENEZUELA SENTENCIA DE DE SEPTIEMBRE DE Fondo y Reparaciones Introducci\u00f3n. El suscrito emite el presente Voto Individual Concurrente con respecto a la Sentencia indicada en el t\u00edtulo en adelante la Sentencia en atenci\u00f3n a que si bien la apoya era partidario de que tambi\u00e9n incluyera a las dos propuestas que durante el debate correspondiente formul\u00f3 las que empero fueron ", - "values": [ - "Corte Interamericana de Derechos Humanos" - ] - }, - { - "text": "INFORME N\u00ba PETICI\u00d3N ADMISIBILIDAD LUIS GONZALO RICHARD V\u00c9LEZ RESTREPO Y FAMILIA COLOMBIA de julio de I. RESUMEN El de julio de la Comisi\u00f3n Interamericana de Derechos Humanos en adelante la Comisi\u00f3n Interamericana o la CIDH recibi\u00f3 una denuncia presentada por el se\u00f1or Luis Gonzalo V\u00e9lez Restrepo conocido tambi\u00e9n como Richard V\u00e9lez y Aracelly Rom\u00e1n Amariles en lo sucesivo los peticionarios a nombre propio y en representaci\u00f3n de sus hijos los menores Mateo V\u00e9lez Rom\u00e1n y Juliana V\u00e9lez Rom\u00e1n ", - "values": [ - "Comisi\u00f3n Interamericana de Derechos Humanos" - ] - }, - { - "text": "RESOLUCI\u00d3N DE LA CORTE INTERAMERICANA DE DERECHOS HUMANOS DE DE MARZO DE MEDIDAS PROVISIONALES RESPECTO DE LA REP\u00daBLICA DEL PER\u00da CASO WONG HO WING VISTO La Resoluci\u00f3n del Presidente en ejercicio de la Corte Interamericana de Derechos Humanos en adelante la Corte Interamericana la Corte o el Tribunal de de marzo de y las Resoluciones del Tribunal de de mayo de y de noviembre de mediante la cuales resolvi\u00f3 inter alia requerir a la Rep\u00fablica del Per\u00fa en adelante el Estado o Per\u00fa que se ", - "values": [ - "Corte Interamericana de Derechos Humanos" - ] - }, - { - "text": "VOTO CONCORDANTE DO JUIZ EDUARDO VIO GROSSI CASO DOS MASSACRES DE EL MOZOTE E LUGARES VIZINHOS VS. EL SALVADOR SENTEN\u00c7A DE DE OUTUBRO DE M\u00e9rito Repara\u00e7\u00f5es e Custas Profiro o presente voto concordante com respeito \u00e0 Senten\u00e7a indicada no t\u00edtulo a fim de fazer constar que em aten\u00e7\u00e3o ao que nela se considera provado que nos massacres a que se refere foram executadas mulheres gr\u00e1vidas e que inclusive nas exuma\u00e7\u00f5es correspondentes foram recuperados os restos mortais de um feto o subscrito prop\u00f4s ", - "values": [ - "Corte Interamericana de Derechos Humanos" - ] - }, - { - "text": "RESOLUCI\u00d3N DE LA CORTE INTERAMERICANA DE DERECHOS HUMANOS DE DE NOVIEMBRE DE CASO DE LOS HERMANOS G\u00d3MEZ PAQUIYAURI VS. PER\u00da CUMPLIMIENTO DE SENTENCIA VISTOS La Sentencia de fondo reparaciones y costas emitida el de julio de por la Corte Interamericana de Derechos Humanos en adelante la Corte la Corte Interamericana o el Tribunal mediante la cual el Tribunal declar\u00f3 inter alia que el Estado viol\u00f3 el Derecho a la Vida consagrado en el art\u00edculo de la Convenci\u00f3n Americana sobre Derechos en ", - "values": [ - "Corte Interamericana de Derechos Humanos" - ] - }, - { - "text": "RESOLUCI\u00d3N DE LA CORTE INTERAMERICANA DE DERECHOS HUMANOS DE DE FEBRERO DE MEDIDAS PROVISIONALES ORDENADAS POR LA CORTE INTERAMERICANA DE DERECHOS HUMANOS RESPECTO DE LA REP\u00daBLICA DE GUATEMALA CASO COLOTENANGO VISTOS La resoluci\u00f3n de la Corte Interamericana de Derechos Humanos en adelante la Corte o la Corte Interamericana de de junio de mediante la cual Requiri\u00f3 al Gobierno de Guatemala que adoptase sin dilaci\u00f3n cuantas medidas fuesen necesarias para proteger el derecho a la vida e de ", - "values": [ - "Corte Interamericana de Derechos Humanos" - ] - }, - { - "text": "RESOLUCI\u00d3N DE LA CORTE INTERAMERICANA DE DERECHOS HUMANOS DE DE NOVIEMBRE DE MEDIDAS PROVISIONALES ADOPTADAS POR LA CORTE INTERAMERICANA DE DERECHOS HUMANOS RESPECTO DE LA REP\u00daBLICA DE COLOMBIA CASO GIRALDO CARDONA VISTOS La resoluci\u00f3n de la Corte Interamericana de Derechos Humanos en adelante la Corte o la Corte Interamericana de de febrero de mediante la cual Requiri\u00f3 al Gobierno de la Rep\u00fablica de Colombia a. Que mantenga las medidas provisionales en favor de la Hermana Noemy Palencia", - "values": [ - "Corte Interamericana de Derechos Humanos" - ] - }, - { - "text": "Corte Interamericana de Derechos Humanos Caso Molina Theissen Vs. Guatemala Sentencia de de julio de Reparaciones y Costas En el caso Molina Theissen la Corte Interamericana de Derechos Humanos integrada por los siguientes jueces Sergio Garc\u00eda Ram\u00edrez Presidente Alirio Abreu Burelli Vicepresidente Oliver Jackman Juez Ant\u00f4nio A. Can\u00e7ado Trindade Juez Cecilia Medina Quiroga Jueza Manuel E. Ventura Robles Juez y Diego Garc\u00edaSay\u00e1n Juez presentes adem\u00e1s Pablo Saavedra Alessandri Secretario y ", - "values": [ - "Corte Interamericana de Derechos Humanos" - ] - }, - { - "text": "RESOLUCI\u00d3N DEL PRESIDENTE DE LA CORTE INTERAMERICANA DE DERECHOS HUMANOS DE DE AGOSTO DE AMPLIACI\u00d3N DE MEDIDAS PROVISIONALES ADOPTADAS POR LA CORTE INTERAMERICANA DE DERECHOS HUMANOS RESPECTO DE COLOMBIA CASO \u00c1LVAREZ Y OTROS VISTOS La resoluci\u00f3n del Presidente de la Corte Interamericana de Derechos Humanos en adelante el Presidente de de julio de en cuya parte dispositiva decidi\u00f3 Requerir a la Rep\u00fablica de Colombia que adopte sin dilaci\u00f3n cuantas medidas sean necesarias para proteger la ", - "values": [ - "Corte Interamericana de Derechos Humanos" - ] - }, - { - "text": "INFORME No. PETICI\u00d3N ADMISIBILIDAD ANICETO NORIN CATRIMAN Y PASCUAL PICHUN PAILLALAO CHILE de octubre de I. RESUMEN El de agosto de la Comisi\u00f3n Interamericana de Derechos Humanos en adelante la Comisi\u00f3n Interamericana o la CIDH recibi\u00f3 una denuncia presentada porAniceto Nor\u00edn Catrim\u00e1n y otra denuncia presentada por Pascual Huentequeo Pich\u00fan Paillalao las presuntas v\u00edctimas en contra del Estado de Chile el Estado en la que se alega laviolaci\u00f3n de los art\u00edculos y de la Convenci\u00f3n ", - "values": [ - "Comisi\u00f3n Interamericana de Derechos Humanos" - ] - }, - { - "text": "VOTO RAZONADO DEL JUEZ SERGIO GARCIA RAMIREZ EN LA SENTENCIA DE LA CORTE INTERAMERICANA DE DERECHOS HUMANOS SOBRE EL CASO DE LA CRUZ FLORES DE DE NOVIEMBRE DE En este Voto razonado me referir\u00e9 s\u00f3lo a un tema que se examina en la Sentencia dictada por la Corte Interamericana de Derechos Humanos en el Caso De La Cruz Flores emitida el de noviembre de el acto m\u00e9dico y la ley penal desde la perspectiva de los derechos humanos y en las circunstancias que se acreditaron en dicho caso. Aludo al ", - "values": [ - "Corte Interamericana de Derechos Humanos" - ] - }, - { - "text": "RESOLUCI\u00d3N DE LA CORTE INTERAMERICANA DE DERECHOS HUMANOS DE JULIO DE CASO HERRERA ULLOA VS. COSTA RICA SUPERVISI\u00d3N DE CUMPLIMIENTO DE SENTENCIA VISTO La Sentencia de excepciones preliminares fondo reparaciones y costas en adelante la Sentencia dictada por la Corte Interamericana de Derechos Humanos en adelante la Corte Interamericana la Corte o el Tribunal el de julio de mediante la cual dispuso Que el Estado debe dejar sin efecto en todos sus extremos la sentencia emitida el de de ", - "values": [ - "Corte Interamericana de Derechos Humanos" - ] - }, - { - "text": "RESOLUCI\u00d3N DE LA PRESIDENTA DE LA CORTE INTERAMERICANA DE DERECHOS HUMANOS DE DE DICIEMBRE DE SOLICITUD DE AMPLIACI\u00d3N DE MEDIDAS PROVISIONALES RESPECTO DE LOS ESTADOS UNIDOS MEXICANOS CASO FERN\u00c1NDEZ ORTEGA Y OTROS VISTO La Resoluci\u00f3n emitida por la Presidenta en adelante la Presidenta de la Corte Interamericana de Derechos Humanos en adelante la Corte Interamericana la Corte o el Tribunal el de abril de mediante la cual requiri\u00f3 a los Estados Unidos Mexicanos en adelante M\u00e9xico o el Estado", - "values": [ - "Corte Interamericana de Derechos Humanos" - ] - }, - { - "text": "Corte Interamericana de Derechos Humanos Caso Montero Aranguren y otros Ret\u00e9n de Catia Vs. Venezuela Sentencia de de julio de Excepci\u00f3n Preliminar Fondo Reparaciones y Costas En el caso Montero Aranguren y otros Ret\u00e9n de Catia la Corte Interamericana de Derechos Humanos en adelante la Corte Interamericana la Corte o el Tribunal integrada por los siguientes jueces Sergio Garc\u00eda Ram\u00edrez Presidente Alirio Abreu Burelli Vicepresidente Ant\u00f4nio A. Can\u00e7ado Trindade Juez Cecilia Medina Quiroga Jueza ", - "values": [ - "Corte Interamericana de Derechos Humanos" - ] - }, - { - "text": "INFORME N\u00ba CASO JUAN PABLO OLMEDO BUSTOS CIRO COLOMBARA L\u00d3PEZ CLAUDIO M\u00c1RQUEZ VIDAL ALEX MU\u00d1OZ WILSON MAT\u00cdAS INSUZA TAGLE Y HERN\u00c1N AGUIRRE FUENTES CHILE de mayo de I TR\u00c1MITE ANTE LA COMISI\u00d3N Con fecha de setiembre de la Comisi\u00f3n Interamericana de Derechos Humanos en adelante la Comisi\u00f3n recibi\u00f3 una denuncia sobre violaci\u00f3n de derechos protegidos en la Convenci\u00f3n Americana sobre Derechos Humanos en adelante la Convenci\u00f3n por parte de la Rep\u00fablica de Chile en adelante El Estado el Estado", - "values": [ - "Comisi\u00f3n Interamericana de Derechos Humanos" - ] - }, - { - "text": "Corte Interamericana de Derechos Humanos Caso de la Masacre de Mapirip\u00e1n Vs. Colombia Sentencia de de marzo de Excepciones Preliminares En el caso de la Masacre de Mapirip\u00e1n la Corte Interamericana de Derechos Humanos en adelante la Corte Interamericana la Corte o el Tribunal integrada por los siguientes jueces Sergio Garc\u00eda Ram\u00edrez Presidente Alirio Abreu Burelli Vicepresidente Oliver Jackman Juez Ant\u00f4nio A. Can\u00e7ado Trindade Juez Cecilia Medina Quiroga Jueza Manuel E. Ventura Robles Juez y", - "values": [ - "Corte Interamericana de Derechos Humanos" - ] - }, - { - "text": "VOTO CONCURRENTE RAZONADO DEL JUEZ SERGIO GARC\u00cdA RAM\u00cdREZ Concurro con la mayor\u00eda de los integrantes de esta Corte en la argumentaci\u00f3n y resoluci\u00f3n sobre las excepciones preliminares correspondientes al Caso Las Palmeras sentencia del de febrero de Sin embargo considero conveniente ampliar los razonamientos relativos a la segunda excepci\u00f3n preliminar opuesta por el Estado falta de competencia de la Comisi\u00f3n p\u00e1rrs. segunda y y punto resolutivo que la Corte admiti\u00f3. Esta decisi\u00f3n es con la ", - "values": [ - "Corte Interamericana de Derechos Humanos" - ] - }, - { - "text": "CORTE INTERAMERICANA DE DIREITOS HUMANOS CASO GOMES LUND E OUTROS GUERRILHA DO ARAGUAIA VS. BRASIL SENTEN\u00c7A DE DE NOVEMBRO DE Exce\u00e7\u00f5es Preliminares M\u00e9rito Repara\u00e7\u00f5es e Custas No caso Gomes Lund e outros Guerrilha do Araguaia a Corte Interamericana de Direitos Humanos doravante denominada Interamericana Corte ou Tribunal integrada pelos seguintes ju\u00edzes Corte Diego Garc\u00edaSay\u00e1n Presidente Leonardo A. Franco VicePresidente Manuel E. Ventura Robles Juiz Margarette May Macaulay Ju\u00edza Rhadys Abreu ", - "values": [ - "Corte Interamericana de Derechos Humanos" - ] - }, - { - "text": "RESOLUCI\u00d3N DE LA CORTE INTERAMERICANA DE DERECHOS HUMANOS DE DE JUNIO DE CASO LUIS WILLIAMS POLLO RIVERA VS. PER\u00da VISTO El sometimiento del caso Luis Williams Pollo Rivera vs. Per\u00fa ante la Corte Interamericana de Derechos Humanos en adelante la Corte o el Tribunal por parte de la Comisi\u00f3n Interamericana de Derechos Humanos en adelante la Comisi\u00f3n Interamericana o la Comisi\u00f3n realizado mediante escrito de de febrero de El escrito original y los anexos fueron recibidos el de febrero de En", - "values": [ - "Corte Interamericana de Derechos Humanos" - ] - }, - { - "text": "RESOLUCI\u00d3N DE LA CORTE INTERAMERICANA DE DERECHOS HUMANOS DE DE JULIO DE SOLICITUD DE MEDIDAS PROVISIONALES PRESENTADA POR LA COMISI\u00d3N INTERAMERICANA DE DERECHOS HUMANOS RESPECTO DE LA REP\u00daBLICA DE GUATEMALA CASO DE LA FUNDACI\u00d3N DE ANTROPOLOG\u00cdA FORENSE DE GUATEMALA VISTO El escrito de de abril de y sus anexos mediante los cuales la Comisi\u00f3n Interamericana de Derechos Humanos en adelante la Comisi\u00f3n Interamericana o la Comisi\u00f3n someti\u00f3 a la Corte Interamericana de Derechos Humanos en la o", - "values": [ - "Corte Interamericana de Derechos Humanos" - ] - }, - { - "text": "Resoluci\u00f3n de la Corte Interamericana de Derechos Humanos de de noviembre de Caso de Heliodoro Portugal vs. Panam\u00e1 VISTO El escrito de demanda presentado por la Comisi\u00f3n Interamericana de Derechos Humanos en adelante la Comisi\u00f3n Interamericana o la Comisi\u00f3n ante la Corte Interamericana de Derechos Humanos en adelante la Corte Interamericana la Corte o el Tribunal el de enero de mediante el cual ofreci\u00f3 cinco testigos. El escrito de solicitudes argumentos y pruebas en adelante escrito de ", - "values": [ - "Corte Interamericana de Derechos Humanos" - ] - }, - { - "text": "DE LA RESOLUCI\u00d3N DE LA PRESIDENTA CORTE INTERAMERICANA DE DERECHOS HUMANOS DE DE JUNIO DE CASO LUISIANA R\u00cdOS Y OTROS VS. VENEZUELA VISTOS El escrito de demanda presentado el de abril de por la Comisi\u00f3n Interamericana de Derechos Humanos en adelante la Comisi\u00f3n o la Comisi\u00f3n Interamericana ante la Corte Interamericana de Derechos Humanos en adelante la Corte la Corte Interamericana o el Tribunal v\u00eda facsimilar sin sus anexos. La referida demanda fue presentada el de mayo de con sus anexos", - "values": [ - "Corte Interamericana de Derechos Humanos" - ] - }, - { - "text": "VOTO CONCURRENTE CONJUNTO DE LOS JUECES AA. CAN\u00c7ADO TRINDADE Y A. ABREU BURELLI Quiso el destino que la \u00faltima Sentencia de la Corte Interamericana de Derechos Humanos en este a\u00f1o en el umbral del a\u00f1o recayera sobre una situaci\u00f3n que afecta a un sector particularmente vulnerable de la poblaci\u00f3n de los pa\u00edses de Am\u00e9rica Latina la de los padecimientos de los ni\u00f1os en la calle. El p\u00e1rrafo de la presente Sentencia a nuestro juicio refleja con fidelidad el estado actual de evoluci\u00f3n del derecho a", - "values": [ - "Corte Interamericana de Derechos Humanos" - ] - }, - { - "text": "RESOLUCI\u00d3N DE LA CORTE INTERAMERICANA DE DERECHOS HUMANOS DEL DE FEBRERO DE MEDIDAS PROVISIONALES SOLICITADAS POR LA COMISI\u00d3N INTERAMERICANA DE DERECHOS HUMANOS RESPECTO DE GUATEMALA CASO CARPIO NICOLLE VISTO La Resoluci\u00f3n de la Corte Interamericana de Derechos Humanos en adelante la Corte o la Corte Interamericana de de septiembre de mediante la que se resolvi\u00f3 Confirmar y hacer suyas las medidas urgentes tomadas por el Presidente mediante resoluciones de de junio y de julio de Que ", - "values": [ - "Corte Interamericana de Derechos Humanos" - ] - }, - { - "text": "RELAT\u00d3RIO N CASO HUMBERTO ANTONIO PALAMARA IRIBARNE CHILE de outubro de I. RESUMO Em de janeiro a Comiss\u00e3o Interamericana de Direitos Humanos doravante denominada Comiss\u00e3o Interamericana ou a CIDH recebeu uma den\u00fancia apresentada por Humberto Palamara Iribarne representado pelo Centro pela Justi\u00e7a e o Direito Internacional CEJIL e Human Rights WatchAm\u00e9ricas doravante denominados conjuntamente os peticion\u00e1rios na qual alega a responsabilidade internacional da Rep\u00fablica de Chile doravante ", - "values": [ - "Comisi\u00f3n Interamericana de Derechos Humanos" - ] - }, - { - "text": "Voto razonado del Juez ad hoc Arturo Alfredo Herrador Sandoval en el caso Ferm\u00edn Ram\u00edrez vs. Guatemala Indice I. II. III. IV. V. VI. Introducci\u00f3n Jurisdicci\u00f3n de la Corte De las deficiencias procesales Del Indulto De las condiciones carcelarias Conclusi\u00f3n Guatemala es un Estado de transici\u00f3n la democracia guatemalteca producto de d\u00e9cadas de lucha generacional a\u00fan es joven pero prometedora I. Introducci\u00f3n En mi calidad de juez ad hoc nombrado por el Estado de Guatemala concurro con mi voto con ", - "values": [ - "Corte Interamericana de Derechos Humanos" - ] - }, - { - "text": "RESOLUCI\u00d3N DE LA CORTE INTERAMERICANA DE DERECHOS HUMANOS DE DE JULIO DE MEDIDAS PROVISIONALES RESPECTO DE LA REP\u00daBLICA DE HONDURAS CASO KAWAS FERN\u00c1NDEZ VS. HONDURAS VISTO La Resoluci\u00f3n dictada por la Corte Interamericana de Derechos Humanos en adelante la Corte Interamericana la Corte o el Tribunal el de noviembre de mediante la cual orden\u00f3 a la Rep\u00fablica de Honduras en adelante el Estado u Honduras adoptar sin dilaci\u00f3n cuantas medidas sean necesarias para asegurar eficazmente la de la ", - "values": [ - "Corte Interamericana de Derechos Humanos" - ] - }, - { - "text": "Corte Interamericana de Direitos Humanos Caso La Cantuta Vs. Peru Senten\u00e7a de de novembro de M\u00e9rito Repara\u00e7\u00f5es e Custas No caso La Cantuta A Corte Interamericana de Direitos Humanos doravante denominada Interamericana Corte ou Tribunal integrada pelos seguintes ju\u00edzes Corte Sergio Garc\u00eda Ram\u00edrez Presidente Alirio Abreu Burelli VicePresidente Ant\u00f4nio Augusto Can\u00e7ado Trindade Juiz Cecilia Medina Quiroga Ju\u00edza Manuel E. Ventura Robles Juiz e Fernando Vidal Ram\u00edrez Juiz ad hoc presentes ademais ", - "values": [ - "Corte Interamericana de Derechos Humanos" - ] - }, - { - "text": "RESOLUCI\u00d3N DE LA CORTE INTERAMERICANA DE DERECHOS HUMANOS DE DE SEPTIEMBRE DE MEDIDAS PROVISIONALES SOLICITADAS POR LA COMISI\u00d3N INTERAMERICANA DE DERECHOS HUMANOS CASO B\u00c1MACA VEL\u00c1SQUEZ VISTOS La Resoluci\u00f3n del Presidente de la Corte Interamericana de Derechos Humanos en adelante el Presidente de la Corte de de junio de en cuya parte dispositiva decidi\u00f3 Requerir al Estado de Guatemala que adopte sin dilaci\u00f3n las medidas que sean necesarias para asegurar eficazmente la integridad personal ", - "values": [ - "Corte Interamericana de Derechos Humanos" - ] - }, - { - "text": "RESOLUCI\u00d3N DE LA CORTE INTERAMERICANA DE DERECHOS HUMANOS DE DE SEPTIEMBRE DE CASO DE LAS HERMANAS SERRANO CRUZ VS. EL SALVADOR SUPERVISI\u00d3N DE CUMPLIMIENTO DE SENTENCIA VISTOS La Sentencia de fondo reparaciones y costas en adelante la Sentencia dictada por la Corte Interamericana de Derechos Humanos en adelante la Corte la Corte Interamericana o el Tribunal el de marzo de mediante la cual DECLAR\u00d3 Por seis votos contra uno que El Estado viol\u00f3 los derechos a las garant\u00edas judiciales y a la ", - "values": [ - "Corte Interamericana de Derechos Humanos" - ] - }, - { - "text": "RESOLUCI\u00d3N DE LA CORTE INTERAMERICANA DE DERECHOS HUMANOS DE DE AGOSTO DE MEDIDAS PROVISIONALES ADOPTADAS POR LA CORTE INTERAMERICANA DE DERECHOS HUMANOS RESPECTO DE LA REP\u00daBLICA DE COLOMBIA CASO \u00c1LVAREZ Y OTROS VISTOS La resoluci\u00f3n del Presidente de la Corte Interamericana de Derechos Humanos en adelante el Presidente de de julio de en cuya parte dispositiva decidi\u00f3 Requerir a la Rep\u00fablica de Colombia que adopte sin dilaci\u00f3n cuantas medidas sean necesarias para proteger la vida e de ", - "values": [ - "Corte Interamericana de Derechos Humanos" - ] - }, - { - "text": "ORDER OF THE INTERAMERICAN COURT OF HUMAN RIGHTS OF JUNE CASE OF MEJ\u00cdA IDROVO v. ECUADOR MONITORING OF COMPLIANCE WITH JUDGMENT HAVING SEEN The Judgment on Preliminary Objections Merits Reparations and Costs hereinafter the Judgment issued by the InterAmerican Court of Human Rights hereinafter the InterAmerican Court or the Court on July in which it ordered that The State shall issue the publications ordered in paragraphs of the Judgment in the manner and period indicated in said of ", - "values": [ - "Corte Interamericana de Derechos Humanos" - ] - }, - { - "text": "VOTO CONCURRENTE DE LA JUEZA RHADYS ABREU BLONDET SENTENCIA DE LA CORTE INTERAMERICANA DE DERECHOS HUMANOS CASO BARBANI DUARTE Y OTROS VS. URUGUAY DE DE OCTUBRE DE He decidido presentar un Voto Concurrente a la decisi\u00f3n de la Corte Interamericana respecto a la interpretaci\u00f3n y aplicaci\u00f3n del art\u00edculo de la Convenci\u00f3n Americana a la actuaci\u00f3n de la Comisi\u00f3n Asesora y del Directorio del Banco Central del Uruguay en el caso Barbani Duarte y otros. Entiendo que la decisi\u00f3n del Tribunal fue la ", - "values": [ - "Corte Interamericana de Derechos Humanos" - ] - }, - { - "text": "CORTE INTERAMERICANA DE DERECHOS HUMANOS CASO DE LA MASACRE DE PUEBLO BELLO VS. COLOMBIA SENTENCIA DE DE ENERO DE En el caso de la Masacre de Pueblo Bello la Corte Interamericana de Derechos Humanos en adelante la Corte Interamericana la Corte o el Tribunal integrada por los siguientes jueces Sergio Garc\u00eda Ram\u00edrez Presidente Alirio Abreu Burelli Vicepresidente Oliver Jackman Juez Ant\u00f4nio A. Can\u00e7ado Trindade Juez Cecilia Medina Quiroga Jueza Manuel E. Ventura Robles Juez Diego Garc\u00edaSay\u00e1n Juez", - "values": [ - "Corte Interamericana de Derechos Humanos" - ] - }, - { - "text": "Corte Interamericana de Derechos Humanos Caso Apitz Barbera y otros Corte Primera de lo Contencioso Administrativo vs. Venezuela Sentencia de de agosto de Excepci\u00f3n preliminar Fondo Reparaciones y Costas En el caso Apitz Barbera y otros la Corte Interamericana de Derechos Humanos en adelante la Corte Interamericana la Corte o el Tribunal integrada por los siguientes jueces Cecilia Medina Quiroga Presidenta Sergio Garc\u00eda Ram\u00edrez Juez Manuel E. Ventura Robles Juez Leonardo A. Franco Juez May ", - "values": [ - "Corte Interamericana de Derechos Humanos" - ] - }, - { - "text": "RESOLUCI\u00d3N DEL PRESIDENTE DE LA CORTE INTERAMERICANA DE DERECHOS HUMANOS DE DE ENERO DE CASO GONZ\u00c1LES LLUY TGGL Y FAMILIA VS. ECUADOR VISTO El escrito de sometimiento del caso y el Informe de Fondo de la Comisi\u00f3n Interamericana de Derechos Humanos en adelante la Comisi\u00f3n Interamericana o la Comisi\u00f3n el escrito de solicitudes argumentos y pruebas en adelante el escrito de solicitudes y argumentos de los representantes de las presuntas v\u00edctimas en adelante los representantes y el escrito de ", - "values": [ - "Corte Interamericana de Derechos Humanos" - ] - }, - { - "text": "VOTO FUNDAMENTADO DO JUIZ SERGIO GARC\u00cdA RAM\u00cdREZ \u00c0 SENTEN\u00c7A DA CORTE INTERAMERICANA DE DIREITOS HUMANOS NO CASO GOIBUR\u00da E OUTROS VS. PARAGUAI DE DE SETEMBRO DE Concordo com o parecer de meus colegas manifestado na Senten\u00e7a deste caso sem preju\u00edzo de estabelecer ou reiterar algumas preocupa\u00e7\u00f5es em rela\u00e7\u00e3o a certos conceitos cujo sentido e alcance requerem coment\u00e1rio. Desde logo esta precis\u00e3o na qual deixo a salvo a opini\u00e3o de quem tem pontos de vista diferentes n\u00e3o modifica minha participa\u00e7\u00e3o ", - "values": [ - "Corte Interamericana de Derechos Humanos" - ] - }, - { - "text": "CORTE INTERAMERICANA DE DERECHOS HUMANOS CASO ESPINOZA GONZ\u00c1LES VS. PER\u00da SENTENCIA DE DE NOVIEMBRE DE Excepciones Preliminares Fondo Reparaciones y Costas En el caso Espinoza Gonz\u00e1les Vs. Per\u00fa la Corte Interamericana de Derechos Humanos en adelante la Corte Interamericana la Corte o el Tribunal integrada por los siguientes jueces Humberto Antonio Sierra Porto Presidente Roberto F. Caldas Vicepresidente Manuel E. Ventura Robles Juez Eduardo Vio Grossi Juez y Eduardo Ferrer MacGregor Poisot ", - "values": [ - "Corte Interamericana de Derechos Humanos" - ] - }, - { - "text": "VOTO RAZONADO DEL JUEZ AA. CAN\u00c7ADO TRINDADE Voto a favor de la adopci\u00f3n por la Corte Interamericana de Derechos Humanos de la presente Sentencia sobre Excepciones Preliminares en el caso Benjam\u00edn y Otros versus Trinidad y Tobago que a mi juicio representa un aporte significativo del Derecho Internacional de los Derechos Humanos a la evoluci\u00f3n de un aspecto espec\u00edfico del Derecho Internacional contempor\u00e1neo a saber el atinente a la jurisdicci\u00f3n internacional obligatoria basada en la aceptaci\u00f3n ", - "values": [ - "Corte Interamericana de Derechos Humanos" - ] - }, - { - "text": "VOTO RAZONADO DEL JUEZ AD HOC EDUARDO FERRER MACGREGOR POISOT EN RELACI\u00d3N CON LA SENTENCIA DE LA CORTE INTERAMERICANA DE DERECHOS HUMANOS EN EL CASO CABRERA GARC\u00cdA Y MONTIEL FLORES VS. M\u00c9XICO DE DE NOVIEMBRE DE I. INTRODUCCI\u00d3N La Corte Interamericana de Derechos Humanos en adelante Corte IDH o Tribunal Interamericano ha reiterado en el presente caso por unanimidad de votos su doctrina jurisprudencial sobre el control de convencionalidad. He considerado oportuno emitir el presente voto para ", - "values": [ - "Corte Interamericana de Derechos Humanos" - ] - }, - { - "text": " CASO ACEVEDO BUEND\u00cdA E OUTROS DEMITIDOS E APOSENTADOS DA CONTROLADORIA VS. PERU SENTEN\u00c7A DE DE JULHO DE Exce\u00e7\u00e3o Preliminar M\u00e9rito Repara\u00e7\u00f5es e Custas VOTO CONCORDANTE DO JUIZ AD HOC V\u00cdCTOR OSCAR SHIYIN GARC\u00cdA TOMA No caso Acevedo Buend\u00eda e outros Demitidos e Aposentados da Controladoria Vs. Peru. Ratifico minha posi\u00e7\u00e3o exposta verbalmente na sess\u00e3o de de julho de na qual foi discutida a reda\u00e7\u00e3o da presente Senten\u00e7a no relativo \u00e0s considera\u00e7\u00f5es conceituais sobre a progressividade e n\u00e3o dos", - "values": [ - "Corte Interamericana de Derechos Humanos" - ] - }, - { - "text": "RESOLUCI\u00d3N DEL PRESIDENTE DE LA CORTE INTERAMERICANA DE DERECHOS HUMANOS DE DE JUNIO DE SOLICITUD DE MEDIDAS PROVISIONALES RESPECTO DE LA REP\u00daBLICA BOLIVARIANA DE VENEZUELA CASO LUISIANA R\u00cdOS Y OTROS VISTOS La Resoluci\u00f3n dictada por la Corte Interamericana de Derechos Humanos en adelante la Corte o el Tribunal el de noviembre de mediante la cual orden\u00f3 a la Rep\u00fablica Bolivariana de Venezuela en adelante el Estado o Venezuela a solicitud de la Comisi\u00f3n Interamericana de Derechos Humanos en ", - "values": [ - "Corte Interamericana de Derechos Humanos" - ] - }, - { - "text": "VOTO CONCURRENTE DEL JUEZ AA. CAN\u00c7ADO TRINDADE Voto a favor de la presente Sentencia que viene de adoptar la Corte Interamericana de Derechos Humanos en el caso Palamara Iribarne versus Chile con la cual estoy b\u00e1sicamente de acuerdo. Me veo en el deber de agregar en el presente Voto Concurrente algunas breves ponderaciones y precisiones como fundamento de mi posici\u00f3n personal sobre la materia tratada por la Corte en la presente Sentencia en particular un aspecto central en el cual hace a\u00f1os he", - "values": [ - "Corte Interamericana de Derechos Humanos" - ] - }, - { - "text": "Resoluci\u00f3n del Presidente de la Corte Interamericana de Derechos Humanos de de diciembre de Caso B\u00e1maca Vel\u00e1squez Vs. Guatemala Supervisi\u00f3n de Cumplimiento de Sentencia VISTOS La Sentencia de fondo dictada por la Corte Interamericana de Derechos Humanos en adelante la Corte la Corte Interamericana o el Tribunal el de noviembre de La Sentencia de reparaciones dictada en el presente caso por la Corte Interamericana el de febrero de La Resoluci\u00f3n emitida por la Corte el de noviembre de ", - "values": [ - "Corte Interamericana de Derechos Humanos" - ] - }, - { - "text": "Resoluci\u00f3n de la Corte Interamericana de Derechos Humanos de agosto de Caso Alb\u00e1n Cornejo y otros Vs. Ecuador Supervisi\u00f3n de Cumplimiento de Sentencia Visto La Sentencia de fondo reparaciones y costas dictada por la Corte Interamericana de Derechos Humanos en adelante la Corte la Corte Interamericana o el Tribunal el de noviembre de en la cual inter alia decidi\u00f3 La Resoluci\u00f3n de Supervisi\u00f3n de Cumplimiento de Sentencia emitida por la Corte el de julio de mediante la cual declar\u00f3 Que de", - "values": [ - "Corte Interamericana de Derechos Humanos" - ] - }, - { - "text": "INFORME No. PETICI\u00d3N ADMISIBILIDAD WONG HO WING PER\u00da de noviembre de I. RESUMEN El de marzo de la Comisi\u00f3n Interamericana de Derechos Humanos en adelante la Comisi\u00f3n Interamericana la Comisi\u00f3n o la CIDH recibi\u00f3 una petici\u00f3n presentada por Luis Lamas Puccio en adelante el peticionario a favor de Wong Ho Wing en adelante tambi\u00e9n la presunta v\u00edctima en la cual se alega la violaci\u00f3n por parte de la Rep\u00fablica del Per\u00fa en adelante Per\u00fa el Estado o el Estado peruano de derechos consagrados en ", - "values": [ - "Comisi\u00f3n Interamericana de Derechos Humanos" - ] - }, - { - "text": "Resoluci\u00f3n de la Corte Interamericana de Derechos Humanos de de enero de Medidas Provisionales respecto de la Rep\u00fablica Bolivariana de Venezuela Asunto de la Emisora de Televisi\u00f3n Globovisi\u00f3n VISTOS La Resoluci\u00f3n dictada por el Presidente de la Corte Interamericana de Derechos Humanos en adelante la Corte o el Tribunal el de agosto de mediante la cual en consulta con todos los jueces de la Corte resolvi\u00f3 Requerir al Estado que adopte sin dilaci\u00f3n las medidas que fueran necesarias para y ", - "values": [ - "Corte Interamericana de Derechos Humanos" - ] - }, - { - "text": "VOTO DISIDENTE DE LA JUEZA MEDINA QUIROGA EN LA SENTENCIA DE LA CORTE INTERAMERICANA DE DERECHOS HUMANOS SOBRE EL CASO GARC\u00cdA ASTO Y RAM\u00cdREZ ROJAS RESPECTO DEL ART\u00cdCULO He disentido de la sentencia de mayor\u00eda de la Corte que no consider\u00f3 violado el art\u00edculo sino por algunas de las causales invocadas por la Comisi\u00f3n Interamericana de Derechos Humanos y por los representantes de las v\u00edctimas. Para los efectos de aclarar este voto recuerdo aqu\u00ed que las v\u00edctimas de este caso son dos Wilson Asto", - "values": [ - "Corte Interamericana de Derechos Humanos" - ] - }, - { - "text": "RESOLUCI\u00d3N DE LA CORTE INTERAMERICANA DE DERECHOS HUMANOS DE DE JUNIO DE CASO WONG HO WING VS. PER\u00da SUPERVISI\u00d3N DE CUMPLIMIENTO DE SENTENCIA VISTO La Sentencia de excepci\u00f3n preliminar fondo reparaciones y costas en adelante la Sentencia dictada por la Corte Interamericana de Derechos Humanos en adelante la Corte la Corte Interamericana o este Tribunal el de junio de La Corte declar\u00f3 que no se hab\u00eda acreditado que para la fecha de emisi\u00f3n de la Sentencia existiera un riesgo real previsible ", - "values": [ - "Corte Interamericana de Derechos Humanos" - ] - }, - { - "text": "RESOLU\u00c7\u00c3O DA CORTE INTERAMERICANA DE DIREITOS HUMANOS DE DE AGOSTO DE MEDIDAS PROVIS\u00d3RIAS A RESPEITO DA REP\u00daBLICA FEDERATIVA DO BRASIL ASSUNTO DA PENITENCI\u00c1RIA URSO BRANCO VISTO As Resolu\u00e7\u00f5es da Corte Interamericana de Direitos Humanos doravante a Corte Interamericana a Corte ou o Tribunal de de junho de de agosto de de abril de de julho de de setembro de de maio de e de novembro de Nessa \u00faltima a Corte resolveu inter alia Reiterar ao Estado que continue adotando de forma as", - "values": [ - "Corte Interamericana de Derechos Humanos" - ] - }, - { - "text": "RESOLUCI\u00d3N DE LA CORTE INTERAMERICANA DE DERECHOS HUMANOS DE DE FEBRERO DE MEDIDAS PROVISIONALES RESPECTO DE LA REP\u00daBLICA DE GUATEMALA ASUNTO DE LA FUNDACI\u00d3N DE ANTROPOLOG\u00cdA FORENSE DE GUATEMALA VISTO Las Resoluciones de la Corte Interamericana de Derechos Humanos en adelante la Corte Interamericana la Corte o el Tribunal de de julio de de noviembre de y de enero de mediante las cuales se orden\u00f3 la adopci\u00f3n de medidas provisionales y el mantenimiento de las existentes a favor de los ", - "values": [ - "Corte Interamericana de Derechos Humanos" - ] - }, - { - "text": "Corte Interamericana de Derechos Humanos Caso B\u00e1maca Vel\u00e1squez Vs. Guatemala Sentencia de de noviembre de Fondo En el caso B\u00e1maca Vel\u00e1squez la Corte Interamericana de Derechos Humanos en adelante la Corte la Corte Interamericana o el Tribunal integrada por los siguientes jueces Ant\u00f4nio A. Can\u00e7ado Trindade Presidente M\u00e1ximo Pacheco G\u00f3mez Vicepresidente Hern\u00e1n Salgado Pesantes Juez Alirio Abreu Burelli Juez Sergio Garc\u00eda Ram\u00edrez Juez y Carlos Vicente de Roux Rengifo Juez presentes adem\u00e1s Manuel", - "values": [ - "Corte Interamericana de Derechos Humanos" - ] - }, - { - "text": "VOTO CONCURRENTE CONJUNTO DE LOS JUECES HUMBERTO ANTONIO SIERRA PORTO Y EDUARDO FERRER MACGREGOR POISOT CASO PUEBLOS KALI\u00d1A Y LOKONO VS. SURINAM SENTENCIA DE DE NOVIEMBRE DE Fondo Reparaciones y Costas Formulamos el presente voto concurrente en relaci\u00f3n con dos temas abordados en la Sentencia del caso de los Pueblos Kali\u00f1a y Lokono Vs. Surinam a saber i sobre las garant\u00edas a la propiedad colectiva frente a la concesi\u00f3n minera dentro de la Reserva Natural Wane Kreek particularmente respecto ", - "values": [ - "Corte Interamericana de Derechos Humanos" - ] - }, - { - "text": "CORTE INTERAMERICANA DE DERECHOS HUMANOS CASO CANALES HUAPAYA Y OTROS VS. PER\u00da SENTENCIA DE DE JUNIO DE Excepciones Preliminares Fondo Reparaciones y Costas En el caso Canales Huapaya y otros la Corte Interamericana de Derechos Humanos en adelante la Corte Interamericana la Corte o este Tribunal integrada por los siguientes Jueces Humberto Antonio Sierra Porto Presidente Roberto F. Caldas Vicepresidente Manuel E. Ventura Robles Juez Alberto P\u00e9rez P\u00e9rez Juez Eduardo Vio Grossi Juez y Eduardo ", - "values": [ - "Corte Interamericana de Derechos Humanos" - ] - }, - { - "text": "VOTO CONCURRENTE DEL JUEZ HUMBERTO ANTONIO SIERRA PORTO SENTENCIA DE LA CORTE INTERAMERICANA DE DERECHOS HUMANOS CASO MALDONADO ORDO\u00d1EZ VS. GUATEMALA SENTENCIA DE DE MAYO DE Excepci\u00f3n Preliminar Fondo Reparaciones y Costas A. Introducci\u00f3n La finalidad del presente voto concurrente es explicar lo relativo a la aplicabilidad extendida de las garant\u00edas contenidas en el art\u00edculo de la Convenci\u00f3n Americana sobre Derechos Humanos en adelante Convenci\u00f3n Americana en procesos que no sean de penal.", - "values": [ - "Corte Interamericana de Derechos Humanos" - ] - }, - { - "text": "Resoluci\u00f3n del Presidente de la Corte Interamericana de Derechos Humanos De de diciembre de Caso Comunidad Ind\u00edgena Sawhoyamaxa Vs. Paraguay Supervisi\u00f3n de Cumplimiento de Sentencia VISTOS La Sentencia de fondo reparaciones y costas dictada por la Corte Interamericana de Derechos Humanos en adelante la Corte la Corte Interamericana o el Tribunal el de marzo de mediante la cual dispuso inter alia que el Estado deb\u00eda adoptar todas las medidas legislativas administrativas y de cualquier otra", - "values": [ - "Corte Interamericana de Derechos Humanos" - ] - }, - { - "text": "INFORME N PETICI\u00d3N CARLOS ANTONIO LUNA L\u00d3PEZ ADMISIBILIDAD HONDURAS de octubre de I. RESUMEN En fecha de enero de la Comisi\u00f3n Interamericana de Derechos Humanos en adelante la Comisi\u00f3n la Comisi\u00f3n Interamericana o la CIDH recibi\u00f3 una petici\u00f3n presentada por el Centro por la Justicia y el Derecho Internacional y el Equipo de Reflexi\u00f3n Investigaci\u00f3n y Comunicaci\u00f3n en adelante los peticionarios. En esta petici\u00f3n se alega la responsabilidad de la Rep\u00fablica de Honduras en adelante Honduras el", - "values": [ - "Comisi\u00f3n Interamericana de Derechos Humanos" - ] - }, - { - "text": "CORTE INTERAMERICANA DE DERECHOS HUMANOS CASO IV VS. BOLIVIA SENTENCIA DE DE NOVIEMBRE DE Excepciones Preliminares Fondo Reparaciones y Costas En el caso IV la Corte Interamericana de Derechos Humanos en adelante la Corte Interamericana la Corte o este Tribunal integrada por los siguientes jueces Roberto F. Caldas Presidente Eduardo Ferrer MacGregor Poisot Vicepresidente Eduardo Vio Grossi Juez Humberto Antonio Sierra Porto Juez Elizabeth Odio Benito Jueza Eugenio Ra\u00fal Zaffaroni Juez y L. ", - "values": [ - "Corte Interamericana de Derechos Humanos" - ] - }, - { - "text": "VOTO CONCURRENTE DEL JUEZ EDUARDO FERRER MACGREGOR POISOT CASO IV. VS. BOLIVIA SENTENCIA DE DE NOVIEMBRE DE Excepciones Preliminares Fondo Reparaciones y Costas Si bien concurro esencialmente con lo decidido en la Sentencia adoptada por unanimidad de votos estimo necesario dejar constancia como lo expres\u00e9 en la deliberaci\u00f3n respectiva que el caso claramente involucra el derecho a la salud por lo que pudo haberse analizado a la luz del art\u00edculo de la Convenci\u00f3n Americana sobre Derechos en ", - "values": [ - "Corte Interamericana de Derechos Humanos" - ] - }, - { - "text": "VOTO INDIVIDUAL CONCURRENTE DEL JUEZ EDUARDO VIO GROSSI CORTE INTERAMERICANA DE DERECHOS HUMANOS CASO YARCE Y OTRAS Vs. COLOMBIA SENTENCIA DE DE NOVIEMBRE DE Excepci\u00f3n Preliminar Fondo Reparaciones y Costas. Se emite el presente voto individual concurrente a la Sentencia del ep\u00edgrafe a los efectos de dejar constancia de que se ha concurrido a votar favorablemente la decisi\u00f3n contenida en la misma en orden a desestimar la excepci\u00f3n preliminar interpuesta por el Estado en atenci\u00f3n a que tanto ", - "values": [ - "Corte Interamericana de Derechos Humanos" - ] - }, - { - "text": "CORTE INTERAMERICANA DE DERECHOS HUMANOS CASO YARCE Y OTRAS VS. COLOMBIA SENTENCIA DE DE NOVIEMBRE DE Excepci\u00f3n Preliminar Fondo Reparaciones y Costas En el caso Yarce y otras la Corte Interamericana de Derechos Humanos en adelante la Corte Interamericana la Corte o este Tribunal integrada por los siguientes jueces Roberto F. Caldas Presidente Eduardo Ferrer MacGregor Poisot Vicepresidente Manuel E. Ventura Robles Juez Diego Garc\u00edaSay\u00e1n Juez Alberto P\u00e9rez P\u00e9rez Juez y Eduardo Vio Grossi Juez ", - "values": [ - "Corte Interamericana de Derechos Humanos" - ] - }, - { - "text": "RESOLUCI\u00d3N DEL PRESIDENTE DE LA CORTE INTERAMERICANA DE DERECHOS HUMANOS DE DE OCTUBRE DE REINTEGRO AL FONDO DE ASISTENCIA LEGAL DE V\u00cdCTIMAS CASO DUQUE VS. COLOMBIA VISTO La Sentencia de excepciones preliminares fondo reparaciones y costas en adelante la Sentencia emitida por la Corte Interamericana de Derechos Humanos en adelante la Corte la Corte Interamericana o el Tribunal el de febrero de La Corte determin\u00f3 que la Rep\u00fablica de Colombia en adelante el Estado o Colombia incurri\u00f3 en ", - "values": [ - "Corte Interamericana de Derechos Humanos" - ] - }, - { - "text": "RESOLUCI\u00d3N DE LA CORTE INTERAMERICANA DE DERECHOS HUMANOS DE DE NOVIEMBRE DE CASO ESCU\u00c9 ZAPATA VS. COLOMBIA SUPERVISI\u00d3N DE CUMPLIMIENTO DE SENTENCIA VISTO La Sentencia de fondo reparaciones y costas en adelante la Sentencia dictada por la Corte Interamericana de Derechos Humanos en adelante la Corte la Corte Interamericana o el Tribunal el de julio de Tomando en cuenta el reconocimiento parcial de responsabilidad efectuado por la Rep\u00fablica de Colombia en adelante el Estado o Colombia la ", - "values": [ - "Corte Interamericana de Derechos Humanos" - ] - }, - { - "text": "RESOLUCI\u00d3N DE LA CORTE INTERAMERICANA DE DERECHOS HUMANOS DE DE OCTUBRE DE CASO DE LAS COMUNIDADES AFRODESCENDIENTES DESPLAZADAS DE LA CUENCA DEL R\u00cdO CACARICA OPERACI\u00d3N GEN\u00c9SIS VS. COLOMBIA SUPERVISI\u00d3N DE CUMPLIMIENTO DE SENTENCIA VISTO La Sentencia de excepciones preliminares fondo reparaciones y costas en adelante la Sentencia dictada en el presente caso por la Corte Interamericana de Derechos Humanos en adelante la Corte Interamericana la Corte o el Tribunal el de noviembre de En dicho ", - "values": [ - "Corte Interamericana de Derechos Humanos" - ] - }, - { - "text": "RESOLUCI\u00d3N DE LA CORTE INTERAMERICANA DE DERECHOS HUMANOS DE DE AGOSTO DE CASO V\u00c1SQUEZ DURAND Y OTROS VS. ECUADOR VISTO La Resoluci\u00f3n del Presidente en adelante la Resoluci\u00f3n de la Corte Interamericana de Derechos Humanos en adelante la Corte o la Corte Interamericana de de junio de en la cual entre otros resolvi\u00f3 Convocar a la Rep\u00fablica del Ecuador a los representantes de las presuntas v\u00edctimas y a la Comisi\u00f3n Interamericana de Derechos Humanos a una audiencia p\u00fablica sobre las y y", - "values": [ - "Corte Interamericana de Derechos Humanos" - ] - }, - { - "text": "RESOLUCI\u00d3N DEL PRESIDENTE DE LA CORTE INTERAMERICANA DE DERECHOS HUMANOS DE DE NOVIEMBRE DE CASO AMRHEIN Y OTROS VS. COSTA RICA VISTO El escrito de de noviembre de mediante el cual la Comisi\u00f3n Interamericana de Derechos Humanos en adelante la Comisi\u00f3n Interamericana o la Comisi\u00f3n someti\u00f3 ante la Corte Interamericana de Derechos Humanos en adelante la Corte Interamericana la Corte o el Tribunal el presente caso en contra de la Rep\u00fablica de Costa Rica en adelante el Estado o Costa Rica. En ", - "values": [ - "Corte Interamericana de Derechos Humanos" - ] - }, - { - "text": "CORTE INTERAMERICANA DE DERECHOS HUMANOS CASO VALENCIA HINOJOSA Y OTRA VS. ECUADOR SENTENCIA DE DE NOVIEMBRE DE Excepciones Preliminares Fondo Reparaciones y Costas En el caso Valencia Hinojosa y otra la Corte Interamericana de Derechos Humanos en adelante la Corte Interamericana la Corte o este Tribunal integrada por los siguientes jueces Roberto F. Caldas Presidente Eduardo Ferrer MacGregor Poisot Vicepresidente Eduardo Vio Grossi Juez Humberto Antonio Sierra Porto Juez Elizabeth Odio y ", - "values": [ - "Corte Interamericana de Derechos Humanos" - ] - }, - { - "text": "VOTO CONCURRENTE Y PARCIALMENTE DISIDENTE DEL JUEZ HUMBERTO ANTONIO SIERRA PORTO CORTE INTERAMERICANA DE DERECHOS HUMANOS CASO VALENCIA HINOJOSA Y OTRA VS. ECUADOR SENTENCIA DE DE NOVIEMBRE DE Excepciones Preliminares Fondo Reparaciones y Costas I. Objeto del presente voto El objeto del presente voto es expresar las razones de mi concurrencia y de mi disidencia parcial respecto de lo decidido por la mayor\u00eda de los Jueces de la Corte Interamericana de Derechos Humanos en adelante la Corte o ", - "values": [ - "Corte Interamericana de Derechos Humanos" - ] - }, - { - "text": "CORTE INTERAMERICANA DE DERECHOS HUMANOS CASO HERRERA ESPINOZA Y OTROS VS. ECUADOR SENTENCIA DE DE SEPTIEMBRE DE Excepciones Preliminares Fondo Reparaciones y Costas En el caso Herrera Espinoza y otros la Corte Interamericana de Derechos Humanos en adelante tambi\u00e9n la Corte Interamericana la Corte o este Tribunal integrada por los siguientes jueces Roberto F. Caldas Presidente Eduardo Ferrer MacGregor Poisot Vicepresidente Eduardo Vio Grossi Juez Humberto Antonio Sierra Porto Juez Elizabeth ", - "values": [ - "Corte Interamericana de Derechos Humanos" - ] - }, - { - "text": "VOTO CONCURRENTE DEL JUEZ EDUARDO VIO GROSSI CORTE INTERAMERICANA DE DERECHOS HUMANOS CASO HERRERA ESPINOZA Y OTROS VS. ECUADOR SENTENCIA DE DE SEPTIEMBRE DE Excepciones Preliminares Fondo Reparaciones y Costas Introducci\u00f3n. Concurro con mi voto a la Sentencia del ep\u00edgrafe por ende desestimando la excepci\u00f3n de falta de agotamiento previo de los recursos internos interpuesta en autos por el Estado pero no por la raz\u00f3n en ella invocada sino por la que se se\u00f1ala en este escrito. En la Sentencia ", - "values": [ - "Corte Interamericana de Derechos Humanos" - ] - }, - { - "text": "RESOLUCI\u00d3N DE LA CORTE INTERAMERICANA DE DERECHOS HUMANOS DE DE NOVIEMBRE DE CASO TIBI VS. ECUADOR SUPERVISI\u00d3N DE CUMPLIMIENTO DE SENTENCIA VISTO La Sentencia de excepciones preliminares fondo reparaciones y costas en adelante la Sentencia o el Fallo dictada por la Corte Interamericana de Derechos Humanos en adelante la Corte la Corte Interamericana o el Tribunal el de septiembre de La Corte declar\u00f3 la responsabilidad internacional de la Rep\u00fablica del Ecuador en adelante el Estado o por ", - "values": [ - "Corte Interamericana de Derechos Humanos" - ] - }, - { - "text": "VOTO INDIVIDUAL DISIDENTE DEL JUEZ EDUARDO VIO GROSSI RESOLUCI\u00d3N DE LA CORTE INTERAMERICANA DE DERECHOS HUMANOS CASO ARTAVIA MURILLO Y OTROS FECUNDACI\u00d3N IN VITRO VS. COSTA RICA SUPERVISI\u00d3N DE CUMPLIMIENTO DE LA SENTENCIA RESOLUCI\u00d3N DE DE FEBRERO DE INTRODUCCI\u00d3N Se emite el presente voto individual disidente respecto de la Resoluci\u00f3n de Supervisi\u00f3n de Cumplimiento en adelante la Resoluci\u00f3n dictada el de febrero de por la Corte Interamericana de Derechos Humanos en adelante la Corte o el en", - "values": [ - "Corte Interamericana de Derechos Humanos" - ] - }, - { - "text": "CORTE INTERAMERICANA DE DERECHOS HUMANOS CASO CHINCHILLA SANDOVAL VS. GUATEMALA SENTENCIA DE DE FEBRERO DE Excepci\u00f3n preliminar Fondo Reparaciones y Costas En el caso Chinchilla Sandoval y otros vs. Guatemala la Corte Interamericana de Derechos Humanos en adelante la Corte Interamericana la Corte o el Tribunal integrada por los siguientes jueces Roberto F. Caldas Presidente Eduardo Ferrer MacGregor Poisot Vicepresidente Manuel E. Ventura Robles Juez Alberto P\u00e9rez P\u00e9rez Juez Eduardo Vio Juez", - "values": [ - "Corte Interamericana de Derechos Humanos" - ] - }, - { - "text": "VOTO RAZONADO DEL JUEZ ROBERTO F. CALDAS CORTE INTERAMERICANA DE DERECHOS HUMANOS CASO CHINCHILLA SANDOVAL VS. GUATEMALA SENTENCIA DE DE FEBRERO DE Excepci\u00f3n preliminar Fondo Reparaciones y Costas I. Introducci\u00f3n Inicialmente resalto mi adhesi\u00f3n a la Sentencia a las conclusiones a las que lleg\u00f3 esta Corte y a las reparaciones de ellas resultantes. Solo difiero en cuanto a la fundamentaci\u00f3n porque entiendo que tambi\u00e9n queda configurada ofensa al derecho condensado en el art\u00edculo de la en ", - "values": [ - "Corte Interamericana de Derechos Humanos" - ] - }, - { - "text": "VOTO CONCURRENTE DEL JUEZ EDUARDO FERRER MACGREGOR POISOT CASO CHINCHILLA SANDOVAL VS. GUATEMALA SENTENCIA DE DE FEBRERO DE Excepciones Preliminares Fondo Reparaciones y Costas INTRODUCCI\u00d3N SOBRE EL DERECHO A LA SALUD DE LAS PERSONAS CON DISCAPACIDAD PRIVADAS DE LA LIBERTAD Emito el presente voto para fundamentar los motivos por los cuales considero que la decisi\u00f3n de la Corte Interamericana de Derechos Humanos en adelante Corte IDH o Tribunal Interamericano debi\u00f3 involucrar un an\u00e1lisis y ", - "values": [ - "Corte Interamericana de Derechos Humanos" - ] - }, - { - "text": "RESOLUCI\u00d3N DE LA CORTE INTERAMERICANA DE DERECHOS HUMANOS DE DE NOVIEMBRE DE CASO GARC\u00cdA Y FAMILIARES VS. GUATEMALA SUPERVISI\u00d3N DE CUMPLIMIENTO DE SENTENCIA VISTO La Sentencia de fondo reparaciones y costas en adelante la Sentencia dictada por la Corte Interamericana de Derechos Humanos en adelante la Corte la Corte Interamericana o el Tribunal el de noviembre de En dicho fallo la Corte tom\u00f3 en cuenta el reconocimiento de responsabilidad parcial efectuado por la Rep\u00fablica de Guatemala en ", - "values": [ - "Corte Interamericana de Derechos Humanos" - ] - }, - { - "text": "RESOLUCI\u00d3N DE LA CORTE INTERAMERICANA DE DERECHOS HUMANOS DE DE NOVIEMBRE DE CASO FLEURY Y OTROS VS. HAIT\u00cd SUPERVISI\u00d3N DE CUMPLIMIENTO DE SENTENCIA VISTOS La Sentencia de fondo y reparaciones en adelante la Sentencia dictada por la Corte Interamericana de Derechos Humanos en adelante la Corte Interamericana la Corte o el Tribunal el de noviembre de En dicho caso la Corte declar\u00f3 responsable internacionalmente a la Rep\u00fablica de Hait\u00ed en adelante el Estado o Hait\u00ed entre otras por las en el", - "values": [ - "Corte Interamericana de Derechos Humanos" - ] - }, - { - "text": "RESOLUCI\u00d3N DE LA CORTE INTERAMERICANA DE DERECHOS HUMANOS DE DE SEPTIEMBRE DE REINTEGRO AL FONDO DE ASISTENCIA LEGAL DE V\u00cdCTIMAS CASOS COMUNIDAD GAR\u00cdFUNA DE PUNTA PIEDRA Y SUS MIEMBROS Y COMUNIDAD GAR\u00cdFUNA TRIUNFO DE LA CRUZ Y SUS MIEMBROS VS. HONDURAS VISTO Las Sentencias emitidas por la Corte Interamericana de Derechos Humanos en adelante la Corte la Corte Interamericana o el Tribunal el de octubre de en los casos Comunidad Gar\u00edfuna de Punta Piedra y sus miembros y Comunidad Gar\u00edfuna ", - "values": [ - "Corte Interamericana de Derechos Humanos" - ] - }, - { - "text": "CORTE INTERAMERICANA DE DERECHOS HUMANOS CASO L\u00d3PEZ LONE Y OTROS VS. HONDURAS SENTENCIA DE DE SEPTIEMBRE DE Interpretaci\u00f3n de la Sentencia de Excepci\u00f3n Preliminar Fondo Reparaciones y Costas En el caso L\u00f3pez Lone y otros la Corte Interamericana de Derechos Humanos en adelante la Corte Interamericana la Corte o este Tribunal integrada por los siguientes jueces Roberto F. Caldas Presidente Eduardo Ferrer MacGregor Poisot Vicepresidente Manuel E. Ventura Robles Juez Diego Garc\u00edaSay\u00e1n Juez P\u00e9rez", - "values": [ - "Corte Interamericana de Derechos Humanos" - ] - }, - { - "text": "RESOLUCI\u00d3N DE LA CORTE INTERAMERICANA DE DERECHOS HUMANOS DE DE SEPTIEMBRE DE CASO GARC\u00cdA CRUZ Y S\u00c1NCHEZ SILVESTRE VS. ESTADOS UNIDOS MEXICANOS SUPERVISI\u00d3N DE CUMPLIMIENTO DE SENTENCIA VISTO La Sentencia de fondo reparaciones y costas en adelante la Sentencia emitida por la Corte Interamericana de Derechos Humanos en adelante la Corte Interamericana la Corte o el Tribunal el de noviembre de La Corte homolog\u00f3 el Acuerdo de soluci\u00f3n amistosa y reconocimiento de responsabilidad del Estado ", - "values": [ - "Corte Interamericana de Derechos Humanos" - ] - }, - { - "text": "RESOLUCI\u00d3N DE LA CORTE INTERAMERICANA DE DERECHOS HUMANOS DE DE OCTUBRE DE CASO ACOSTA Y OTROS VS. NICARAGUA VISTO La Resoluci\u00f3n del Presidente de la Corte Interamericana de Derechos Humanos en adelante la Corte Interamericana la Corte o el Tribunal de de septiembre de El escrito de de septiembre de mediante la cual el Estado de Nicaragua en adelante el Estado present\u00f3 una recusaci\u00f3n contra la perita \u00c1ngela Buitrago en los t\u00e9rminos del art\u00edculo c del Reglamento de la Corte. La del ", - "values": [ - "Corte Interamericana de Derechos Humanos" - ] - }, - { - "text": "RESOLUCI\u00d3N DEL PRESIDENTE DE LA CORTE INTERAMERICANA DE DERECHOS HUMANOS DE DE SEPTIEMBRE DE CASO ACOSTA Y OTROS VS. NICARAGUA VISTO La Resoluci\u00f3n del Presidente de la Corte Interamericana de Derechos Humanos en adelante la Corte Interamericana la Corte o el Tribunal de de septiembre de El escrito de de septiembre de mediante la cual el Estado de Nicaragua en adelante el Estado present\u00f3 una recusaci\u00f3n contra la perita \u00c1ngela Buitrago en los t\u00e9rminos del art\u00edculo c del Reglamento de la ", - "values": [ - "Corte Interamericana de Derechos Humanos" - ] - }, - { - "text": "RESOLUCI\u00d3N DEL PRESIDENTE DE LA CORTE INTERAMERICANA DE DERECHOS HUMANOS DE DE SEPTIEMBRE DE CASO ACOSTA Y OTROS VS. NICARAGUA VISTO El escrito de sometimiento del caso y el Informe de Fondo de la Comisi\u00f3n Interamericana de Derechos Humanos en adelante la Comisi\u00f3n Interamericana o la Comisi\u00f3n el escrito de solicitudes argumentos y pruebas en adelante el escrito de solicitudes y argumentos de los representantes de las presuntas v\u00edctimas en adelante los representantes y el escrito de al del ", - "values": [ - "Corte Interamericana de Derechos Humanos" - ] - }, - { - "text": "RESOLUCI\u00d3N DE LA CORTE INTERAMERICANA DE DERECHOS HUMANOS DE DE OCTUBRE DE CASO CINCO PENSIONISTAS VS. PER\u00da SUPERVISI\u00d3N DE CUMPLIMIENTO DE SENTENCIA VISTOS La Sentencia de fondo reparaciones y costas en adelante la Sentencia emitida en el presente caso por la Corte Interamericana de Derechos Humanos en adelante la Corte Interamericana la Corte o el Tribunal el de febrero de mediante la cual la Corte declar\u00f3 que la Rep\u00fablica del Per\u00fa en adelante el Per\u00fa o el Estado viol\u00f3 los derechos a la ", - "values": [ - "Corte Interamericana de Derechos Humanos" - ] - }, - { - "text": "CORTE INTERAMERICANA DE DERECHOS HUMANOS CASO POLLO RIVERA Y OTROS VS. PER\u00da SENTENCIA DE DE OCTUBRE DE Fondo Reparaciones y Costas En el caso Pollo Rivera la Corte Interamericana de Derechos Humanos en adelante la Corte Interamericana la Corte o el Tribunal integrada por los siguientes Jueces Roberto F. Caldas Presidente Eduardo Ferrer MacGregor Poisot Vicepresidente Eduardo Vio Grossi juez Humberto Antonio Sierra Porto juez Elizabeth Odio Benito jueza Eugenio Ra\u00fal Zaffaroni juez y L. juez", - "values": [ - "Corte Interamericana de Derechos Humanos" - ] - }, - { - "text": "RESOLUCI\u00d3N DEL PRESIDENTE DE LA CORTE INTERAMERICANA DE DERECHOS HUMANOS DE DE JUNIO DE FONDO DE ASISTENCIA LEGAL DE V\u00cdCTIMAS CASO TRABAJADORES CESADOS DE PETROPER\u00da DEL MINISTERIO DE EDUCACI\u00d3N DEL MINISTERIO DE ECONOM\u00cdA Y FINANZAS Y DE LA EMPRESA NACIONAL DE PUERTOS VS. PER\u00da VISTO El escrito de de agosto de y sus anexos mediante los cuales la Comisi\u00f3n Interamericana de Derechos Humanos en adelante la Comisi\u00f3n Interamericana o la Comisi\u00f3n someti\u00f3 ante la Corte Interamericana de Derechos en", - "values": [ - "Corte Interamericana de Derechos Humanos" - ] - }, - { - "text": "CORTE INTERAMERICANA DE DERECHOS HUMANOS CASO CANALES HUAPAYA Y OTROS VS. PER\u00da SENTENCIA DE DE NOVIEMBRE DE Interpretaci\u00f3n de la Sentencia de Excepciones Preliminares Fondo Reparaciones y Costas En el caso Canales Huapaya y otros Vs Per\u00fa la Corte Interamericana de Derechos Humanos en adelante la Corte Interamericana la Corte o el Tribunal integrada por los siguientes jueces Roberto F. Caldas Presidente Eduardo Ferrer MacGregor Poisot Vicepresidente Manuel E. Ventura Robles Juez Alberto P\u00e9rez ", - "values": [ - "Corte Interamericana de Derechos Humanos" - ] - }, - { - "text": "CORTE INTERAMERICANA DE DERECHOS HUMANOS CASO GALINDO C\u00c1RDENAS Y OTROS VS. PER\u00da SENTENCIA DE DE NOVIEMBRE DE Interpretaci\u00f3n de la Sentencia de Excepciones Preliminares Fondo Reparaciones y Costas En el caso Galindo C\u00e1rdenas y Otros Vs. Per\u00fa La Corte Interamericana de Derechos Humanos en adelante la Corte Interamericana la Corte o el Tribunal integrada por los siguientes jueces Roberto F. Caldas Presidente Eduardo Ferrer MacGregor Poisot Vicepresidente Manuel E. Ventura Robles Juez Alberto ", - "values": [ - "Corte Interamericana de Derechos Humanos" - ] - }, - { - "text": "RESOLUCI\u00d3N DEL PRESIDENTE DE LA CORTE INTERAMERICANA DE DERECHOS HUMANOS DE DE MARZO DE FONDO DE ASISTENCIA LEGAL DE V\u00cdCTIMAS CASO TENORIO ROCA Y OTROS VS. PER\u00da VISTO El escrito de de septiembre de y sus anexos mediante los cuales la Comisi\u00f3n Interamericana de Derechos Humanos en adelante tambi\u00e9n la Comisi\u00f3n Interamericana o la Comisi\u00f3n someti\u00f3 ante la Corte Interamericana de Derechos Humanos en adelante la Corte Interamericana la Corte o el Tribunal el presente caso. El escrito de de ", - "values": [ - "Corte Interamericana de Derechos Humanos" - ] - }, - { - "text": "CORTE INTERAMERICANA DE DERECHOS HUMANOS CASO TENORIO ROCA Y OTROS VS. PER\u00da SENTENCIA DE DE JUNIO DE Excepciones Preliminares Fondo Reparaciones y Costas En el caso Tenorio Roca y otros la Corte Interamericana de Derechos Humanos en adelante la Corte Interamericana la Corte o este Tribunal integrada por los siguientes jueces Roberto F. Caldas Presidente Eduardo Ferrer MacGregor Poisot Vicepresidente Eduardo Vio Grossi Juez Humberto Antonio Sierra Porto Juez Elizabeth Odio Benito Jueza Eugenio", - "values": [ - "Corte Interamericana de Derechos Humanos" - ] - }, - { - "text": "RESOLUCI\u00d3N DE LA CORTE INTERAMERICANA DE DERECHOS HUMANOS DE DE SEPTIEMBRE DE CASO CASTILLO PETRUZZI Y OTROS VS. PER\u00da SUPERVISI\u00d3N DE CUMPLIMIENTO DE SENTENCIA VISTO La Sentencia de fondo reparaciones y costas en adelante la Sentencia dictada por la Corte Interamericana de Derechos Humanos en adelante la Corte Interamericana la Corte o el Tribunal el de mayo de La Sentencia estableci\u00f3 que Jaime Francisco Sebasti\u00e1n Castillo Petruzzi Lautaro Enrique Mellado Saavedra Mar\u00eda Concepci\u00f3n S\u00e1ez y ", - "values": [ - "Corte Interamericana de Derechos Humanos" - ] - }, - { - "text": "CORTE INTERAMERICANA DE DERECHOS HUMANOS CASO COMUNIDAD CAMPESINA DE SANTA B\u00c1RBARA VS. PER\u00da SENTENCIA DE DE NOVIEMBRE DE Interpretaci\u00f3n de la Sentencia de Excepciones Preliminares Fondo Reparaciones y Costas En el caso Comunidad Campesina de Santa B\u00e1rbara Vs. Per\u00fa la Corte Interamericana de Derechos Humanos en adelante la Corte Interamericana la Corte o el Tribunal integrada por los siguientes Jueces Roberto F. Caldas Presidente Eduardo Ferrer MacGregor Poisot Vicepresidente Manuel E. Ventura", - "values": [ - "Corte Interamericana de Derechos Humanos" - ] - }, - { - "text": "CORTE INTERAMERICANA DE DERECHOS HUMANOS CASO QUISPIALAYA VILCAPOMA VS. PER\u00da SENTENCIA DE DE NOVIEMBRE DE Interpretaci\u00f3n de la Sentencia de Excepciones Preliminares Fondo Reparaciones y Costas En el caso Quispialaya Vilcapoma Vs Per\u00fa la Corte Interamericana de Derechos Humanos en adelante la Corte Interamericana la Corte o el Tribunal integrada por los siguientes jueces Roberto F. Caldas Presidente Eduardo Ferrer MacGregor Poisot Vicepresidente Manuel E. Ventura Robles Juez Alberto P\u00e9rez ", - "values": [ - "Corte Interamericana de Derechos Humanos" - ] - }, - { - "text": "RESOLUCI\u00d3N DEL PRESIDENTE DE LA CORTE INTERAMERICANA DE DERECHOS HUMANOS DE DE SEPTIEMBRE DE CASO TRABAJADORES CESADOS DE PETROPER\u00da DEL MINISTERIO DE EDUCACI\u00d3N DEL MINISTERIO DE ECONOM\u00cdA Y FINANZAS Y DE LA EMPRESA NACIONAL DE PUERTOS VS. PER\u00da VISTO El escrito de sometimiento del caso y el Informe de Admisibilidad y Fondo de la Comisi\u00f3n Interamericana de Derechos Humanos en adelante la Comisi\u00f3n Interamericana o la Comisi\u00f3n los escritos de solicitudes argumentos y pruebas en adelante los de ", - "values": [ - "Corte Interamericana de Derechos Humanos" - ] - }, - { - "text": "RESOLUCI\u00d3N DE LA CORTE INTERAMERICANA DE DERECHOS HUMANOS DE DE NOVIEMBRE DE CASO HERMANOS LANDAETA MEJ\u00cdAS Y OTROS VS. VENEZUELA SUPERVISI\u00d3N DE CUMPLIMIENTO DE SENTENCIA VISTO La Sentencia de excepciones preliminares fondo reparaciones y costas en adelante la Sentencia emitida por la Corte Interamericana de Derechos Humanos en adelante la la Corte Interamericana la Corte o el Tribunal el de agosto de La Corte declar\u00f3 la responsabilidad internacional de la Rep\u00fablica Bolivariana de en el ", - "values": [ - "Corte Interamericana de Derechos Humanos" - ] - }, - { - "text": "RESOLUCI\u00d3N DE LA CORTE INTERAMERICANA DE DERECHOS HUMANOS DE DE NOVIEMBRE DE CASOS CHOCR\u00d3N CHOCR\u00d3N D\u00cdAZ PE\u00d1A Y UZC\u00c1TEGUI Y OTROS VS. VENEZUELA SUPERVISI\u00d3N DE CUMPLIMIENTO DE SENTENCIAS VISTO Las Sentencias emitidas por la Corte Interamericana de Derechos Humanos en adelante la Corte o el Tribunal el julio de el de junio de y el de septiembre de respectivamente en los siguientes tres casos contra la Rep\u00fablica Bolivariana de Venezuela en adelante el Estado o Venezuela i Chocr\u00f3n Chocr\u00f3n ", - "values": [ - "Corte Interamericana de Derechos Humanos" - ] - }, - { - "text": "RESOLUCI\u00d3N DEL PRESIDENTE DE LA CORTE INTERAMERICANA DE DERECHOS HUMANOS DE DE SEPTIEMBRE DE CASOS DE LAS COMUNIDADES IND\u00cdGENAS YAKYE AXA SAWHOYAMAXA Y X\u00c1KMOK K\u00c1SEK VS. PARAGUAY SUPERVISI\u00d3N DE CUMPLIMIENTO DE SENTENCIAS VISTO Las Sentencias de fondo reparaciones y costas emitidas por la Corte Interamericana de Derechos Humanos en adelante la Corte la Corte Interamericana o el Tribunal los d\u00edas de junio de de marzo de y de agosto de en adelante las Sentencias respectivamente en los ", - "values": [ - "Corte Interamericana de Derechos Humanos" - ] - }, - { - "text": "RESOLUCI\u00d3N DEL PRESIDENTE DE LA CORTE INTERAMERICANA DE DERECHOS HUMANOS DE NOVIEMBRE DE CASO LAGOS DEL CAMPO VS. PER\u00da VISTO El escrito de sometimiento del caso y el Informe de Fondo de la Comisi\u00f3n Interamericana de Derechos Humanos en adelante la Comisi\u00f3n Interamericana o la Comisi\u00f3n el escrito de solicitudes argumentos y pruebas en adelante el escrito de solicitudes y argumentos de los representantes de la presunta v\u00edctima en adelante los representantes y el escrito de contestaci\u00f3n al ", - "values": [ - "Corte Interamericana de Derechos Humanos" - ] - }, - { - "text": "RESOLUCI\u00d3N DE LA CORTE INTERAMERICANA DE DERECHOS HUMANOS DE DE NOVIEMBRE DE CASO FAMILIA BARRIOS VS. VENEZUELA SUPERVISI\u00d3N DE CUMPLIMIENTO DE SENTENCIA VISTO La Sentencia de fondo reparaciones y costas en adelante la Sentencia dictada por la Corte Interamericana de Derechos Humanos en adelante la Corte Interamericana la Corte o el Tribunal el de noviembre de El caso se refiere a la privaci\u00f3n de la vida de siete integrantes de la familia Barrios a partir del a\u00f1o en el estado Aragua al ", - "values": [ - "Corte Interamericana de Derechos Humanos" - ] - }, - { - "text": "RESOLUCI\u00d3N DEL PRESIDENTE DE LA CORTE INTERAMERICANA DE DERECHOS HUMANOS DE DE DICIEMBRE DE CASO SAN MIGUEL SOSA Y OTRAS VS. VENEZUELA VISTO El escrito de sometimiento del caso y el Informe de Fondo de la Comisi\u00f3n Interamericana de Derechos Humanos en adelante la Comisi\u00f3n Interamericana o la Comisi\u00f3n y el escrito de solicitudes argumentos y pruebas en adelante el escrito de solicitudes y argumentos del representante de las presuntas v\u00edctimas en adelante el representante. La nota de de de ", - "values": [ - "Corte Interamericana de Derechos Humanos" - ] - }, - { - "text": "RESOLUCI\u00d3N DE LA CORTE INTERAMERICANA DE DERECHOS HUMANOS DE DE FEBRERO DE CASO SAN MIGUEL SOSA Y OTRAS VS. VENEZUELA VISTO El escrito de de noviembre de mediante el cual el se\u00f1or Germ\u00e1n Saltr\u00f3n Negretti en su car\u00e1cter de Agente del Estado para los Derechos Humanos del Estado de Venezuela ratific\u00f3 ante la Corte todos y cada uno de los escritos con las argumentaciones expuestas en su defensa ante la Comisi\u00f3n Interamericana y adem\u00e1s ofreci\u00f3 a dos personas para que declararan como peritos. ", - "values": [ - "Corte Interamericana de Derechos Humanos" - ] - }, - { - "text": "RESOLUCI\u00d3N DEL PRESIDENTE DE LA CORTE INTERAMERICANA DE DERECHOS HUMANOS DE DE DICIEMBRE DE CASO ORTIZ HERN\u00c1NDEZ Y OTROS VS. VENEZUELA VISTO El escrito de sometimiento del caso y el Informe de Fondo de la Comisi\u00f3n Interamericana de Derechos Humanos en adelante la Comisi\u00f3n Interamericana o la Comisi\u00f3n el escrito de solicitudes argumentos y pruebas en adelante el escrito de solicitudes y argumentos de las representantes de las presuntas v\u00edctimas en adelante las representantes y el escrito de ", - "values": [ - "Corte Interamericana de Derechos Humanos" - ] - }, - { - "text": "CORTE INTERAMERICANA DE DERECHOS HUMANOS CASO TRABAJADORES DE LA HACIENDA BRASIL VERDE VS. BRASIL SENTENCIA DE OCTUBRE DE Excepciones Preliminares Fondo Reparaciones y Costas En el caso Trabajadores de la Hacienda Brasil Verde la Corte Interamericana de Derechos Humanos en adelante la Corte Interamericana la Corte o este Tribunal integrada por los siguientes Jueces Eduardo Ferrer MacGregor Poisot Presidente en ejercicio Eduardo Vio Grossi Vicepresidente en ejercicio Humberto Ant\u00f4nio Sierra ", - "values": [ - "Corte Interamericana de Derechos Humanos" - ] - }, - { - "text": "VOTO INDIVIDUAL CONCURRENTE DEL JUEZ EDUARDO VIO GROSSI CORTE INTERAMERICANA DE DERECHOS HUMANOS CASO TRABAJADORES DE LA HACIENDA BRASIL VERDE VS. BRASIL SENTENCIA DE OCTUBRE DE Excepciones Preliminares Fondo Reparaciones y Costas Se emite el presente voto concurrente a la Sentencia del ep\u00edgrafe con el prop\u00f3sito de reiterar que la referencia que en el Punto Resolutivo No. de la misma se hace a la discriminaci\u00f3n estructural hist\u00f3rica no implica que se est\u00e9 declarando en general la del en ", - "values": [ - "Corte Interamericana de Derechos Humanos" - ] - }, - { - "text": "VOTO PARCIALMENTE DISIDENTE DEL JUEZ HUMBERTO ANTONIO SIERRA PORTO CORTE INTERAMERICANA DE DERECHOS HUMANOS CASO TRABAJADORES DE LA HACIENDA BRASIL VERDE VS. BRASIL SENTENCIA DE OCTUBRE DE Excepciones Preliminares Fondo Reparaciones y Costas El motivo del presente voto es expresar los motivos de mi disidencia parcial respecto de lo decidido por la mayor\u00eda de los Jueces de la Corte Interamericana de Derechos Humanos en adelante la Corte o el Tribunal en la Sentencia de de octubre de sobre ", - "values": [ - "Corte Interamericana de Derechos Humanos" - ] - }, - { - "text": "VOTO RAZONADO DEL JUEZ EDUARDO FERRER MACGREGOR POISOT CASO TRABAJADORES DE LA HACIENDA BRASIL VERDE VS. BRASIL SENTENCIA DE DE OCTUBRE DE Excepciones Preliminares Fondo Reparaciones y Costas La Jueza Elizabeth Odio Benito se adhiri\u00f3 al presente Voto del Juez Eduardo Ferrer MacGregor Poisot. INTRODUCCI\u00d3N SOBRE LA DISCRIMINACI\u00d3N ESTRUCTURAL HIST\u00d3RICA EN RAZ\u00d3N DE LA POSICI\u00d3N ECON\u00d3MICA POBREZA DE LOS TRABAJADORES SOMETIDOS A TRABAJO ESCLAVO Esta es la primera ocasi\u00f3n en la que la Corte de en", - "values": [ - "Corte Interamericana de Derechos Humanos" - ] - }, - { - "text": "RESOLUCI\u00d3N DEL PRESIDENTE DE LA CORTE INTERAMERICANA DE DERECHOS HUMANOS DE DE DICIEMBRE DE CASO TRABAJADORES DE LA HACIENDA BRASIL VERDE VS. BRASIL VISTO El escrito de sometimiento del caso y el Informe de Fondo de la Comisi\u00f3n Interamericana de Derechos Humanos en adelante la Comisi\u00f3n Interamericana o la Comisi\u00f3n el escrito de solicitudes argumentos y pruebas en adelante el escrito de solicitudes y argumentos de los representantes de las presuntas v\u00edctimas en adelante los representantes el ", - "values": [ - "Corte Interamericana de Derechos Humanos" - ] - }, - { - "text": "RESOLUCI\u00d3N DE LA CORTE INTERAMERICANA DE DERECHOS HUMANOS DE DE OCTUBRE DE CASO GENOVEVA Y OTROS FAVELA NOVA BRASILIA VS. BRASIL VISTO La Resoluci\u00f3n del Presidente de la Corte Interamericana de Derechos Humanos en adelante el Presidente de de agosto de en adelante la Resoluci\u00f3n del Presidente mediante la cual inter alia orden\u00f3 la recepci\u00f3n de diversas declaraciones testimoniales y periciales mediante afid\u00e1vit rechaz\u00f3 la sustituci\u00f3n de una declaraci\u00f3n pericial y la incorporaci\u00f3n de nuevos ", - "values": [ - "Corte Interamericana de Derechos Humanos" - ] - }, - { - "text": "RESOLUCI\u00d3N DEL PRESIDENTE DE LA CORTE INTERAMERICANA DE DERECHOS HUMANOS DE DE DICIEMBRE DE FONDO DE ASISTENCIA LEGAL DE V\u00cdCTIMAS CASO COSME ROSA GENOVEVA EVANDRO DE OLIVEIRA Y OTROS FAVELA NOVA BRAS\u00cdLIA VS. BRASIL VISTO El escrito de de mayo de y sus anexos mediante los cuales la Comisi\u00f3n Interamericana de Derechos Humanos en adelante la Comisi\u00f3n Interamericana o la Comisi\u00f3n someti\u00f3 ante la Corte Interamericana de Derechos Humanos en adelante la Corte Interamericana la Corte o el Tribunal", - "values": [ - "Corte Interamericana de Derechos Humanos" - ] - }, - { - "text": "RESOLUCI\u00d3N DEL PRESIDENTE DE LA CORTE INTERAMERICANA DE DERECHOS HUMANOS DE DE NOVIEMBRE DE CASO POBLETE VILCHES Y OTROS VS. CHILE VISTO El sometimiento del caso Poblete Vilches y otros Vs. Chile ante la Corte Interamericana de Derechos Humanos en adelante la Corte o el Tribunal por parte de la Comisi\u00f3n Interamericana de Derechos Humanos en adelante la Comisi\u00f3n Interamericana o la Comisi\u00f3n realizado mediante escrito de de agosto de El escrito original y los anexos fueron recibidos el de ", - "values": [ - "Corte Interamericana de Derechos Humanos" - ] - }, - { - "text": "VOTO DISIDENTE DEL JUEZ EDUARDO VIO GROSSI RESOLUCI\u00d3N DE LA CORTE INTERAMERICANA DE DERECHOS HUMANOS DE DE JUNIO CASO TORRES MILLACURA Y OTROS SOLICITUD DE MEDIDAS PROVISIONALES RESPECTO DE LA REP\u00daBLICA DE ARGENTINA INTRODUCCI\u00d3N. Se emite el presente voto disidente respecto de la Resoluci\u00f3n indicada en el r\u00f3tulo en m\u00e9rito de que el suscrito estima que la Corte Interamericana de Derechos Humanos debi\u00f3 rechazar in limine por carecer de competencia la nueva solicitud de medidas provisionales en", - "values": [ - "Corte Interamericana de Derechos Humanos" - ] - }, - { - "text": "VOTO DISIDENTE DEL JUEZ EDUARDO VIO GROSSI RESPECTO DE LA RESOLUCI\u00d3N DE LA CORTE INTERAMERICANA DE DERECHOS HUMANOS DE DE NOVIEMBRE DE SOBRE MEDIDAS PROVISIONALES ASUNTO MILLACURA LLAIP\u00c9N RESPECTO DE ARGENTINA. Qui\u00e9n suscribe emite el presente voto disidente a la resoluci\u00f3n indicada en el r\u00f3tulo en adelante la Resoluci\u00f3n en atenci\u00f3n a que habi\u00e9ndose ya dictado en autos el fallo definitivo e inapelable que ha puesto efectivo t\u00e9rmino al caso en el que mientras la Corte Interamericana de en ", - "values": [ - "Corte Interamericana de Derechos Humanos" - ] - }, - { - "text": "Voto Disidente de la Jueza Margarette May Macaulay Considero que la Resoluci\u00f3n de la mayor\u00eda de los Jueces de la Corte rechazando la solicitud de que no se publique en la Sentencia del Tribunal la identidad de uno de los que fueron considerados como v\u00edctimas por la Corte en este caso es de cierto modo autoritaria y tan preocupante que me veo obligada a escribir este breve voto explicando mi posici\u00f3n. Creo que como una Corte internacional de derechos humanos nuestras decisiones deben ofrecer ", - "values": [ - "Corte Interamericana de Derechos Humanos" - ] - }, - { - "text": "VOTO INDIVIDUAL DEL JUEZ EDUARDO VIO GROSSI RESOLUCI\u00d3N DE LA CORTE INTERAMERICANA DE DERECHOS HUMANOS DE DE FEBRERO DE MEDIDAS PROVISIONALES RESPECTO DE LA REP\u00daBLICA ARGENTINA ASUNTO MILLACURA LLAIP\u00c9N Y OTROS Se extiende el presente voto individual con el prop\u00f3sito de dejar debida constancia que para el suscrito las presentes medidas provisionales se decretan en consideraci\u00f3n a que se trata de una situaci\u00f3n distinta del Caso Torres Millacura y otros Vs. Argentina motivo por el que se ha a ", - "values": [ - "Corte Interamericana de Derechos Humanos" - ] - }, - { - "text": "VOTO CONCURRENTE DEL JUEZ AA. CAN\u00c7ADO TRINDADE Al votar a favor de la adopci\u00f3n de las presentes Medidas Provisionales de Protecci\u00f3n mediante las cuales la Corte Interamericana de Derechos Humanos ordena que se extienda protecci\u00f3n a todas las personas privadas de libertad en las Penitenciar\u00edas de Mendoza en Argentina me veo en la obligaci\u00f3n de retomar la construcci\u00f3n conceptual en que he estado empe\u00f1ado en el seno de la Corte Interamericana de las obligaciones erga omnes de protecci\u00f3n bajo la ", - "values": [ - "Corte Interamericana de Derechos Humanos" - ] - }, - { - "text": "VOTO CONCURRENTE DEL JUEZ SERGIO GARCIA RAMIREZ A LA RESOLUCION SOBRE MEDIDAS PROVISIONALES EN EL CASO DE LAS PENITENCIARIAS DE MENDOZA DE DE JUNIO DE Con creciente frecuencia y con caracter\u00edsticas invariablemente graves que llegan a ser catastr\u00f3ficas se presentan ante la Corte Interamericana de Derechos Humanos problemas relacionados con la vida carcelaria. Los reclusos pobres entre los pobres que dijo Francesco Carnelutti se hallan sujetos a los mayores riesgos y da\u00f1os sobre ellos se como", - "values": [ - "Corte Interamericana de Derechos Humanos" - ] - }, - { - "text": "VOTO CONCURRENTE DEL JUEZ DIEGO GARC\u00cdASAY\u00c1N Este es un caso con importancia en s\u00ed mismo dados los graves hechos que dieron lugar a las medidas provisionales dispuestas por la Corte Interamericana de Derechos Humanos para proteger la vida e integridad f\u00edsica de las personas privadas de libertad en la Penitenciar\u00eda Provincial de Mendoza y en la unidad Gustavo Andr\u00e9 de Lavalle as\u00ed como de quienes se encuentren en el interior de \u00e9stas. En la primera Resoluci\u00f3n de medidas provisionales sobre esta ", - "values": [ - "Corte Interamericana de Derechos Humanos" - ] - }, - { - "text": "VOTO RAZONADO DEL JUEZ SERGIO GARC\u00cdA RAM\u00cdREZ A LA RESOLUCI\u00d3N DE LA CORTE INTERAMERICANA DE DERECHOS HUMANOS DEL DE MARZO DE SOBRE MEDIDAS PROVISIONALES EN EL CASO DE LAS PENITENCIAR\u00cdAS DE MENDOZA De nueva cuenta se plantean ante la Corte Interamericana por lo pronto a trav\u00e9s de una solicitud reiterada y quiz\u00e1s esperanzada todav\u00eda los grav\u00edsimos problemas que se abaten sobre las prisiones de muchos pa\u00edses. En la especie se trata una vez m\u00e1s de los reclusorios de Mendoza pero antes de ahora y ", - "values": [ - "Corte Interamericana de Derechos Humanos" - ] - }, - { - "text": "VOTO RAZONADO DEL JUEZ AA. CAN\u00c7ADO TRINDADE Al concurrir a la adopci\u00f3n en esta ciudad de Brasilia de la presente Resoluci\u00f3n de la Corte Interamericana de Derechos Humanos mediante la cual el Tribunal ordena nuevas Medidas Provisionales de Protecci\u00f3n en beneficio de todas las personas privadas de libertad en las Penitenciar\u00edas de Mendoza en Argentina me veo en la obligaci\u00f3n de retomar dos razonamientos personales en cuya construcci\u00f3n conceptual he estado empe\u00f1ado hace tiempo en el seno de esta ", - "values": [ - "Corte Interamericana de Derechos Humanos" - ] - }, - { - "text": "RESOLUCI\u00d3N DE LA CORTE INTERAMERICANA DE DERECHOS HUMANOS DE DE FEBRERO DE CASO M\u00c9MOLI VS. ARGENTINA SUPERVISI\u00d3N DE CUMPLIMIENTO DE SENTENCIA VISTO La Sentencia de excepciones preliminares fondo reparaciones y costas en adelante la Sentencia dictada por la Corte Interamericana de Derechos Humanos en adelante la Corte Interamericana la Corte o el Tribunal el de agosto de La Corte declar\u00f3 la responsabilidad internacional de la Rep\u00fablica Argentina en adelante el Estado o Argentina por la a", - "values": [ - "Corte Interamericana de Derechos Humanos" - ] - }, - { - "text": "CORTE INTERAMERICANA DE DERECHOS HUMANOS CASO ARG\u00dcELLES Y OTROS VS. ARGENTINA SENTENCIA DE DE JUNIO DE Interpretaci\u00f3n de la Sentencia de Excepci\u00f3n Preliminar Fondo Reparaciones y Costas En el caso Arg\u00fcelles y otros Vs. Argentina la Corte Interamericana de Derechos Humanos en adelante la Corte Interamericana la Corte o el Tribunal integrada por los siguientes jueces Humberto Antonio Sierra Porto Presidente Roberto F. Caldas Vicepresidente Manuel E. Ventura Robles Juez Eduardo Vio Grossi Juez ", - "values": [ - "Corte Interamericana de Derechos Humanos" - ] - }, - { - "text": "RESOLUCI\u00d3N DE LA CORTE INTERAMERICANA DE DERECHOS HUMANOS DE DE FEBRERO DE CASO KIMEL VS. ARGENTINA SUPERVISI\u00d3N DE CUMPLIMIENTO DE SENTENCIA VISTO La Sentencia de fondo reparaciones y costas en adelante la Sentencia emitida en el presente caso por la Corte Interamericana de Derechos Humanos en adelante la Corte Interamericana la Corte o el Tribunal el de mayo de en la cual la Corte acept\u00f3 el reconocimiento de responsabilidad internacional efectuado por la Rep\u00fablica Argentina en adelante el", - "values": [ - "Corte Interamericana de Derechos Humanos" - ] - }, - { - "text": "RESOLUCI\u00d3N DEL PRESIDENTE DE LA CORTE INTERAMERICANA DE DERECHOS HUMANOS DE DE MAYO DE FONDO DE ASISTENCIA LEGAL DE V\u00cdCTIMAS CASO MENDOZA Y OTROS PRISI\u00d3N Y RECLUSI\u00d3N PERPETUAS DE ADOLESCENTES VS. ARGENTINA VISTO El escrito de de junio de y sus anexos mediante los cuales la Comisi\u00f3n Interamericana de Derechos Humanos en adelante la Comisi\u00f3n Interamericana o la Comisi\u00f3n someti\u00f3 a la Corte Interamericana de Derechos Humanos en adelante la Corte Interamericana la Corte o el Tribunal un caso en", - "values": [ - "Corte Interamericana de Derechos Humanos" - ] - }, - { - "text": "RESOLUCI\u00d3N DEL PRESIDENTE DE LA CORTE INTERAMERICANA DE DERECHOS HUMANOS DE ABRIL DE CASO GRANDE VS. ARGENTINA VISTO El escrito de demanda presentado por la Comisi\u00f3n Interamericana de Derechos Humanos en adelante la Comisi\u00f3n Interamericana o la Comisi\u00f3n ante la Corte Interamericana de Derechos Humanos en adelante la Corte Interamericana la Corte o el Tribunal el de mayo de mediante el cual ofreci\u00f3 un dictamen pericial. El escrito de solicitudes argumentos y pruebas en adelante escrito de ", - "values": [ - "Corte Interamericana de Derechos Humanos" - ] - }, - { - "text": "RESOLUCI\u00d3N DE LA CORTE INTERAMERICANA DE DERECHOS HUMANOS DE DE JULIO DE MEDIDAS PROVISIONALES RESPECTO DE LA REP\u00daBLICA DE ARGENTINA ASUNTO DE LAS PENITENCIAR\u00cdAS DE MENDOZA VISTO La Resoluci\u00f3n de la Corte Interamericana de Derechos Humanos en adelante la Corte Interamericana la Corte o el Tribunal de de noviembre de mediante la cual resolvi\u00f3 en los t\u00e9rminos de los art\u00edculos de la Convenci\u00f3n Americana sobre Derechos Humanos en adelante tambi\u00e9n la Convenci\u00f3n Americana o la Convenci\u00f3n y ", - "values": [ - "Corte Interamericana de Derechos Humanos" - ] - }, - { - "text": "RESOLUCI\u00d3N DE LA CORTE INTERAMERICANA DE DERECHOS HUMANOS DE DE FEBRERO DE SOLICITUD DE MEDIDAS PROVISIONALES RESPECTO DE LA REP\u00daBLICA DE ARGENTINA CASO BUENO ALVES VISTOS El escrito de de marzo de mediante el cual la Comisi\u00f3n Interamericana de Derechos Humanos en adelante la Comisi\u00f3n demand\u00f3 a la Rep\u00fablica de Argentina en adelante el Estado o Argentina ante la Corte Interamericana de Derechos Humanos en adelante la Corte o el Tribunal en relaci\u00f3n con el caso Bueno Alves. La comunicaci\u00f3n ", - "values": [ - "Corte Interamericana de Derechos Humanos" - ] - }, - { - "text": "RESOLUCI\u00d3N DEL PRESIDENTE DE LA CORTE INTERAMERICANA DE DERECHOS HUMANOS DE DE MARZO DE CASO IBSEN C\u00c1RDENAS E IBSEN PE\u00d1A Vs. BOLIVIA VISTOS El escrito de demanda presentado por la Comisi\u00f3n Interamericana de Derechos Humanos en adelante la Comisi\u00f3n Interamericana o la Comisi\u00f3n ante la Corte Interamericana de Derechos Humanos en adelante la Corte Interamericana la Corte o el Tribunal el de mayo de mediante el cual ofreci\u00f3 cinco declaraciones testimoniales y dos dict\u00e1menes periciales. De los ", - "values": [ - "Corte Interamericana de Derechos Humanos" - ] - }, - { - "text": "Corte Interamericana de Derechos Humanos Caso Ticona Estrada y otros Vs. Bolivia Sentencia de de julio de Interpretaci\u00f3n de la Sentencia de Fondo Reparaciones y Costas En el caso Ticona Estrada y otros la Corte Interamericana de Derechos Humanos en adelante la Corte Interamericana la Corte o el Tribunal integrada por los siguientes jueces Cecilia Medina Quiroga Presidenta Diego Garc\u00edaSay\u00e1n Vicepresidente Sergio Garc\u00eda Ram\u00edrez Juez Manuel E. Ventura Robles Juez Leonardo A. Franco Juez May ", - "values": [ - "Corte Interamericana de Derechos Humanos" - ] - }, - { - "text": "RESOLUCI\u00d3N DE LA PRESIDENTA DE LA CORTE INTERAMERICANA DE DERECHOS HUMANOS DE DE JUNIO DE CASO TICONA ESTRADA VS. BOLIVIA Y OTROS VISTOS El escrito de demanda presentado por la Comisi\u00f3n Interamericana de Derechos Humanos en adelante la Comisi\u00f3n Interamericana o la Comisi\u00f3n ante la Corte Interamericana de Derechos Humanos en adelante la Corte o el Tribunal el de agosto de en el cual ofreci\u00f3 cinco testigos y cuatro peritos. El escrito de solicitudes argumentos y pruebas en adelante escrito ", - "values": [ - "Corte Interamericana de Derechos Humanos" - ] - }, - { - "text": "VOTO RAZONADO CONJUNTO DE LOS JUECES DIEGO GARC\u00cdASAY\u00c1N Y SERGIO GARC\u00cdA RAM\u00cdREZ EN EL CASO TICONA ESTRADA Y OTROS BOLIVIA Los Jueces que suscribimos este voto deseamos expresar ante todo nuestra entera coincidencia con los dem\u00e1s integrantes de la Corte Interamericana en cuanto a las declaraciones fundamentales contenidas en la sentencia sobre el caso Ticona Estrada Bolivia del de noviembre de el Estado viol\u00f3 los preceptos de la Convenci\u00f3n Americana sobre Derechos Humanos a los que se refiere ", - "values": [ - "Corte Interamericana de Derechos Humanos" - ] - }, - { - "text": "VOTO DISIDENTE DEL JUEZ EDUARDO VIO GROSSI RESOLUCI\u00d3N DE LA CORTE INTERAMERICANA DE DERECHOS HUMANOS DE DE JUNIO CASO ROSENDO CANT\u00da Y OTRA MEDIDAS PROVISIONALES RESPECTO DE M\u00c9XICO. INTRODUCCI\u00d3N. Se emite el presente voto disidente respecto de la Resoluci\u00f3n indicada en el r\u00f3tulo en m\u00e9rito de que el suscrito estima que la Corte Interamericana de Derechos Humanos carece de la facultad de decretar como lo hace en la aludida Resoluci\u00f3n el mantenimiento de las medidas provisionales en el marco del", - "values": [ - "Corte Interamericana de Derechos Humanos" - ] - }, - { - "text": "VOTO DISIDENTE DEL JUEZ EDUARDO VIO GROSSI MEDIDAS PROVISIONALES RESPECTO DE LOS ESTADOS UNIDOS MEXICANOS CASO ROSENDO CANT\u00da Y OTRA Se formula el presente voto disidente a la resoluci\u00f3n indicada en atenci\u00f3n a que por haberse dictado sentencia de fondo en autos ha operado la preclusi\u00f3n respecto de la facultad de la Corte Interamericana de Derechos Humanos en adelante la Corte de decretar nuevas medidas provisionales en la causa habiendo cesado por otra parte las ya ordenadas siendo empero su y ", - "values": [ - "Corte Interamericana de Derechos Humanos" - ] - }, - { - "text": "VOTO CONCURRENTE DE LOS JUECES DIEGO GARC\u00cdASAY\u00c1N LEONARDO A. FRANCO MANUEL VENTURA ROBLES MARGARETTE MAY MACAULAY Y RHADYS ABREU BLONDET MEDIDAS PROVISIONALES RESPECTO DE LOS ESTADOS UNIDOS MEXICANOS CASO ROSENDO CANT\u00da Y OTRA La facultad de dictar medidas provisionales para evitar da\u00f1os irreparables a las personas en casos de extrema gravedad y urgencia es una de las competencias fundamentales de la Corte Interamericana de Derechos Humanos en adelante tambi\u00e9n la Corte Interamericana la Corte o", - "values": [ - "Corte Interamericana de Derechos Humanos" - ] - }, - { - "text": "VOTO RAZONADO CONJUNTO DE LOS JUECES A. A. CAN\u00c7ADO TRINDADE Y M. E. VENTURA ROBLES Los suscritos Jueces hubi\u00e9ramos preferido que la Corte Interamericana de Derechos Humanos hubiera adoptado la presente Resoluci\u00f3n sobre medidas provisionales de protecci\u00f3n despu\u00e9s de haber convocado a las partes a una audiencia p\u00fablica en la sede del Tribunal. Entendemos que la solicitud de la Comisi\u00f3n Interamericana de Derechos Humanos plantea varias cuestiones en relaci\u00f3n con las cuales nos gustar\u00eda haber ", - "values": [ - "Corte Interamericana de Derechos Humanos" - ] - }, - { - "text": "RESOLUCI\u00d3N DEL PRESIDENTE DE LA CORTE INTERAMERICANA DE DERECHOS HUMANOS DE DE ENERO DE CASO ALICIA BARBANI DUARTE MAR\u00cdA DEL HUERTO BRECCIA Y OTROS GRUPO DE AHORRISTAS DEL BANCO DE MONTEVIDEO VS. URUGUAY VISTOS El escrito de demanda presentado por la Comisi\u00f3n Interamericana de Derechos Humanos en adelante la Comisi\u00f3n Interamericana o la Comisi\u00f3n ante la Corte Interamericana de Derechos Humanos en adelante la Corte Interamericana la Corte o el Tribunal el de marzo de mediante el cual un ", - "values": [ - "Corte Interamericana de Derechos Humanos" - ] - }, - { - "text": "VOTO CONCURRENTE DEL JUEZ SERGIO GARC\u00cdA RAM\u00cdREZ EN RELACI\u00d3N CON LA SENTENCIA DE REPARACIONES DICTADA POR LA CORTE INTERAMERICANA DE DERECHOS HUMANOS EN EL CASO CASTILLO P\u00c1EZ En la sentencia de fondo dictada en el caso Castillo P\u00e1ez que se invoca en esta resoluci\u00f3n de reparaciones la Corte Interamericana de Derechos Humanos estableci\u00f3 que el Estado peruano est\u00e1 obligado a investigar los hechos que produjeron las violaciones y que el derecho de los familiares a conocer el destino de la v\u00edctima ", - "values": [ - "Corte Interamericana de Derechos Humanos" - ] - }, - { - "text": "RESOLUCI\u00d3N DE LA CORTE INTERAMERICANA DE DERECHOS HUMANOS DE DE AGOSTO DE CASO B\u00c1MACA VEL\u00c1SQUEZ VS. GUATEMALA MEDIDAS PROVISIONALES VISTO Las Resoluciones del Presidente de la Corte Interamericana de Derechos Humanos en adelante tambi\u00e9n la Corte Interamericana la Corte o este Tribunal de de junio de de diciembre de de septiembre de y de noviembre de y las Resoluciones de la Corte de de agosto de de septiembre de de febrero y de noviembre de de marzo de y de enero de En ", - "values": [ - "Corte Interamericana de Derechos Humanos" - ] - }, - { - "text": "VOTO CONCURRENTE DEL JUEZ EDUARDO VIO GROSSI RESOLUCI\u00d3N DE LA CORTE INTERAMERICANA DE DERECHOS HUMANOS DE DE AGOSTO DE B\u00c1MACA VEL\u00c1SQUEZ VS. GUATEMALA MEDIDAS PROVISIONALES El suscrito concurre con su voto a la aprobaci\u00f3n de la Resoluci\u00f3n del ep\u00edgrafe no obstante de que en su Punto Resolutivo N\u00ba y trat\u00e1ndose de un caso respecto del que en el a\u00f1o se dict\u00f3 Sentencia se mantienen las medidas provisionales a favor del se\u00f1or Santiago Cabrera L\u00f3pez y sus familiares y del se\u00f1or Aron \u00c1lvarez y sus ", - "values": [ - "Corte Interamericana de Derechos Humanos" - ] - }, - { - "text": "VOTO RAZONADO DEL JUEZ AA. CAN\u00c7ADO TRINDADE He concurrido con mi voto a la adopci\u00f3n de la presente Resoluci\u00f3n de la Corte Interamericana de Derechos Humanos sobre Medidas Provisionales de Protecci\u00f3n en el caso de los Integrantes del Equipo de Estudios Comunitarios y Acci\u00f3n Psicosocial ECAP caso de la Masacre de Plan de S\u00e1nchez versus Guatemala. Me veo adem\u00e1s en la obligaci\u00f3n de dejar constancia en este breve Voto Razonado mi \u00faltimo Voto en esta Corte en materia de Medidas Provisionales de ", - "values": [ - "Corte Interamericana de Derechos Humanos" - ] - }, - { - "text": "VOTO CONCURRENTE DEL JUEZ EDUARDO VIO GROSSI A LA RESOLUCI\u00d3N DE LA CORTE INTERAMERICANA DE DERECHOS HUMANOS DE DE NOVIEMBRE DE CASO B\u00c1CAMA VEL\u00c1SQUEZ VS. GUATEMALA SUPERVISI\u00d3N DE CUMPLIMIENTO DE SENTENCIA Concurro con mi voto a aprobar la Resoluci\u00f3n mencionada en el t\u00edtulo en adelante la Resoluci\u00f3n estimando conveniente empero formular algunos comentarios atinentes a los aspectos involucrados en la misma que se indican seguidamente. Lo expuesto en el ac\u00e1pite A de la Resoluci\u00f3n no son a la ", - "values": [ - "Corte Interamericana de Derechos Humanos" - ] - }, - { - "text": "RESOLUCI\u00d3N DE LA CORTE INTERAMERICANA DE DERECHOS HUMANOS DE DE AGOSTO DE CASO CHITAY NECH Y OTROS VS. GUATEMALA SUPERVISI\u00d3N DE CUMPLIMIENTO DE SENTENCIA VISTO La Sentencia de excepciones preliminares fondo reparaciones y costas en adelante la Sentencia dictada por la Corte Interamericana de Derechos Humanos en adelante la Corte Interamericana la Corte o el Tribunal el de mayo de Los hechos se refieren a la desaparici\u00f3n forzada ocurrida desde el de abril de del se\u00f1or Florencio Chitay ", - "values": [ - "Corte Interamericana de Derechos Humanos" - ] - }, - { - "text": "VOTO RAZONADO CONJUNTO DE LOS JUECES A. A. CAN\u00c7ADO TRINDADE Y M. E. VENTURA ROBLES Los suscritos Jueces hemos concurrido con nuestro Votos a la adopci\u00f3n por parte de la Corte Interamericana de Derechos Humanos de sus resoluciones del d\u00eda de hoy en los casos Garc\u00eda Uribe y Otros respecto de M\u00e9xico y Centro Penitenciario Regi\u00f3n Capital Yare I y II C\u00e1rcel de Yare atinente a Venezuela. Sin embargo nos vemos en el deber de expresar nuestra preocupaci\u00f3n por la gravedad de los hechos denunciados que ", - "values": [ - "Corte Interamericana de Derechos Humanos" - ] - }, - { - "text": "RESOLUCI\u00d3N DE LA CORTE INTERAMERICANA DE DERECHOS HUMANOS DE DE FEBRERO DE CASO ATALA RIFFO Y NI\u00d1AS VS. CHILE SUPERVISI\u00d3N DE CUMPLIMIENTO DE SENTENCIA VISTOS La Sentencia de fondo reparaciones y costas en adelante la Sentencia o el Fallo dictada por la Corte Interamericana de Derechos Humanos en adelante la Corte la Corte Interamericana o el Tribunal el de febrero de En dicho Fallo se estableci\u00f3 la responsabilidad internacional de Chile en adelante el Estado o Chile por la violaci\u00f3n de los", - "values": [ - "Corte Interamericana de Derechos Humanos" - ] - }, - { - "text": "CORTE INTERAMERICANA DE DERECHOS HUMANOS OMAR HUMBERTO MALDONADO VARGAS Y OTROS VS. CHILE SENTENCIA DE DE SEPTIEMBRE DE Fondo Reparaciones y Costas En el Caso Omar Humberto Maldonado Vargas y otros la Corte Interamericana de Derechos Humanos en adelante la Corte Interamericana la Corte o el Tribunal integrada por los siguientes Jueces Humberto Antonio Sierra Porto Presidente Manuel E. Ventura Robles Juez Diego Garc\u00edaSay\u00e1n Juez Alberto P\u00e9rez P\u00e9rez Juez y Eduardo Ferrer MacGregor Poisot Juez ", - "values": [ - "Corte Interamericana de Derechos Humanos" - ] - }, - { - "text": "CORTE INTERAMERICANA DE DERECHOS HUMANOS CASO ATALA RIFFO Y NI\u00d1AS VS. CHILE SENTENCIA DE DE NOVIEMBRE DE Solicitud de Interpretaci\u00f3n de la Sentencia de Fondo Reparaciones y Costas En el caso Atala Riffo y ni\u00f1as la Corte Interamericana de Derechos Humanos en adelante la Corte Interamericana la Corte o el Tribunal integrada por los siguientes jueces Diego Garc\u00edaSay\u00e1n Presidente Manuel E. Ventura Robles Vicepresidente Leonardo A. Franco Juez Margarette May Macaulay Jueza Rhadys Abreu Blondet y", - "values": [ - "Corte Interamericana de Derechos Humanos" - ] - }, - { - "text": "RESOLUCI\u00d3N DE LA CORTE INTERAMERICANA DE DERECHOS HUMANOS DE DE NOVIEMBRE DE CASO ATALA RIFFO E HIJAS VS. CHILE PARTICIPACI\u00d3N DE LAS NI\u00d1AS VISTO El escrito de de septiembre de y sus anexos mediante los cuales la Comisi\u00f3n Interamericana de Derechos Humanos en adelante la Comisi\u00f3n Interamericana o la Comisi\u00f3n present\u00f3 a la Corte Interamericana de Derechos Humanos en adelante la Corte Interamericana la Corte o el Tribunal una demanda en contra de la Rep\u00fablica de Chile en adelante Chile o el ", - "values": [ - "Corte Interamericana de Derechos Humanos" - ] - }, - { - "text": "CORTE INTERAMERICANA DE DERECHOS HUMANOS CASO POLLO RIVERA Y OTROS VS. PER\u00da SENTENCIA DE DE MAYO DE Solicitud de interpretaci\u00f3n de la Sentencia de Fondo Reparaciones y Costas En el caso Pollo Rivera y otros Vs. Per\u00fa la Corte Interamericana de Derechos Humanos en adelante la Corte Interamericana la Corte o el Tribunal integrada por los siguientes jueces Roberto F. Caldas Presidente Eduardo Ferrer MacGregor Poisot Vicepresidente Eduardo Vio Grossi juez Humberto Antonio Sierra Porto juez Odio ", - "values": [ - "Corte Interamericana de Derechos Humanos" - ] - }, - { - "text": "CORTE INTERAMERICANA DE DERECHOS HUMANOS CASO ZEGARRA MAR\u00cdN VS. PER\u00da SENTENCIA DE DE FEBRERO DE Excepciones Preliminares Fondo Reparaciones y Costas En el caso Zegarra Mar\u00edn la Corte Interamericana de Derechos Humanos en adelante la Corte Interamericana la Corte o el Tribunal integrada por los siguientes jueces Roberto F. Caldas Presidente Eduardo Ferrer MacGregor Poisot Vicepresidente Eduardo Vio Grossi Juez Humberto Antonio Sierra Porto Juez Elizabeth Odio Benito Jueza Eugenio Raul Juez y ", - "values": [ - "Corte Interamericana de Derechos Humanos" - ] - }, - { - "text": "RESOLUCI\u00d3N DE LA CORTE INTERAMERICANA DE DERECHOS HUMANOS DE DE FEBRERO DE CASO DEL PENAL MIGUEL CASTRO CASTRO VS. PER\u00da SUPERVISI\u00d3N DE CUMPLIMIENTO DE SENTENCIA VISTO La Sentencia de fondo reparaciones y costas en adelante la Sentencia emitida en el presente caso por la Corte Interamericana de Derechos Humanos en adelante la Corte Interamericana la Corte o el Tribunal el de noviembre de Tomando en cuenta el reconocimiento parcial de responsabilidad efectuado por la Rep\u00fablica del Per\u00fa el ", - "values": [ - "Corte Interamericana de Derechos Humanos" - ] - }, - { - "text": "RESOLUCI\u00d3N DE LA CORTE INTERAMERICANA DE DERECHOS HUMANOS DE DE SEPTIEMBRE DE CASO DE LA CRUZ FLORES VS. PER\u00da SUPERVISI\u00d3N DE CUMPLIMIENTO DE SENTENCIA VISTO La Sentencia de fondo reparaciones y costas dictada por la Corte Interamericana de Derechos Humanos en adelante la Corte la Corte Interamericana o el Tribunal el de noviembre de en el caso De La Cruz Flores Vs. Per\u00fa. En dicho fallo se estableci\u00f3 que Mar\u00eda Teresa De La Cruz Flores m\u00e9dica de profesi\u00f3n fue condenada por un tribunal sin ", - "values": [ - "Corte Interamericana de Derechos Humanos" - ] - }, - { - "text": "CORTE INTERAMERICANA DE DERECHOS HUMANOS CASO ESPINOZA GONZ\u00c1LES VS. PER\u00da SENTENCIA DE DE JUNIO DE Interpretaci\u00f3n de la Sentencia de Excepciones Preliminares Fondo Reparaciones y Costas En el caso Espinoza Gonz\u00e1les Vs. Per\u00fa la Corte Interamericana de Derechos Humanos en adelante la Corte Interamericana la Corte o el Tribunal integrada por los siguientes Jueces Humberto Antonio Sierra Porto Presidente Roberto F. Caldas Vicepresidente Manuel E. Ventura Robles Juez Alberto P\u00e9rez P\u00e9rez Juez Vio ", - "values": [ - "Corte Interamericana de Derechos Humanos" - ] - }, - { - "text": "CORTE INTERAMERICANA DE DERECHOS HUMANOS CASO J. VS. PER\u00da SENTENCIA DE DE NOVIEMBRE DE Interpretaci\u00f3n de la Sentencia de Excepci\u00f3n Preliminar Fondo Reparaciones y Costas En el caso J. vs. Per\u00fa la Corte Interamericana de Derechos Humanos en adelante la Corte Interamericana la Corte o este Tribunal integrada por los siguientes jueces Humberto Antonio Sierra Porto Presidente Roberto F. Caldas Vicepresidente Manuel E. Ventura Robles Juez Eduardo Vio Grossi Juez Eduardo Ferrer MacGregor Poisot ", - "values": [ - "Corte Interamericana de Derechos Humanos" - ] - }, - { - "text": "CORTE INTERAMERICANA DE DERECHOS HUMANOS CASO ABRILL ALOSILLA Y OTROS VS. PER\u00da SENTENCIA DE DE NOVIEMBRE DE Interpretaci\u00f3n de la Sentencia de Fondo Reparaciones y Costas En el caso Abrill Alosilla y otros la Corte Interamericana de Derechos Humanos en adelante la Corte Interamericana la Corte o el Tribunal integrada por los siguientes Jueces Leonardo A. Franco Presidente en ejercicio Manuel E. Ventura Robles Juez Margarette May Macaulay Jueza Rhadys Abreu Blondet Jueza Alberto P\u00e9rez P\u00e9rez y ", - "values": [ - "Corte Interamericana de Derechos Humanos" - ] - }, - { - "text": "RESOLUCI\u00d3N DE LA CORTE INTERAMERICANA DE DERECHOS HUMANOS DE DE SEPTIEMBRE DE SOLICITUD PRESENTADA POR LA INTERVINIENTE COM\u00daN DE LOS REPRESENTANTES DE LAS V\u00cdCTIMAS Y SUS FAMILIARES CASO DEL PENAL MIGUEL CASTRO CASTRO VS. PER\u00da VISTO La Sentencia de fondo reparaciones y costas emitida por la Corte Interamericana de Derechos Humanos en adelante la Corte Interamericana la Corte o el Tribunal el de noviembre de en adelante la Sentencia. La Sentencia de interpretaci\u00f3n de la Sentencia emitida ", - "values": [ - "Corte Interamericana de Derechos Humanos" - ] - }, - { - "text": "CORTE INTERAMERICANA DE DERECHOS HUMANOS CASO ACEVEDO BUEND\u00cdA Y OTROS CESANTES Y JUBILADOS DE LA CONTRALOR\u00cdA VS. PER\u00da SENTENCIA DE DE NOVIEMBRE DE INTERPRETACI\u00d3N DE LA SENTENCIA DE EXCEPCI\u00d3N PRELIMINAR FONDO REPARACIONES Y COSTAS En el caso Acevedo Buend\u00eda y otros Cesantes y Jubilados de la Contralor\u00eda la Corte Interamericana de Derechos Humanos en adelante la Corte Interamericana la Corte o el Tribunal integrada por los siguientes jueces Cecilia Medina Quiroga Presidenta Sergio Garc\u00eda Juez", - "values": [ - "Corte Interamericana de Derechos Humanos" - ] - }, - { - "text": "CORTE INTERAMERICANA DE DERECHOS HUMANOS CASO DEL PENAL MIGUEL CASTRO CASTRO VS. PER\u00da INTERPRETACI\u00d3N DE LA SENTENCIA DE FONDO REPARACIONES Y COSTAS SENTENCIA DE DE AGOSTO DE En el Caso del Penal Miguel Castro Castro la Corte Interamericana de Derechos Humanos en adelante la Corte Interamericana la Corte o el Tribunal integrada por los siguientes jueces Sergio Garc\u00eda Ram\u00edrez Presidente Ant\u00f4nio A. Can\u00e7ado Trindade Juez Cecilia Medina Quiroga Jueza Manuel E. Ventura Robles Juez y Leonardo A. ", - "values": [ - "Corte Interamericana de Derechos Humanos" - ] - }, - { - "text": "VOTO RAZONADO DEL JUEZ AA. CAN\u00c7ADO TRINDADE He concurrido con mi voto a la adopci\u00f3n de la presente Sentencia de Interpretaci\u00f3n que viene de adoptar la Corte Interamericana de Derechos Humanos en el caso de la Prisi\u00f3n de Castro Castro versus Per\u00fa en la cual declara admisibles las demandas de Interpretaci\u00f3n sometidas a su consideraci\u00f3n tanto por el Estado recurrente como por los representantes legales otros que la interveniente com\u00fan de un grupo de v\u00edctimas y en la cual busca aclarar los puntos ", - "values": [ - "Corte Interamericana de Derechos Humanos" - ] - }, - { - "text": "VOTO RAZONADO DEL JUEZ SERGIO GARC\u00cdA RAM\u00cdREZ A LA SENTENCIA DE LA CORTE INTERAMERICANA DE DERECHOS HUMANOS DEL DE AGOSTO DE SOBRE INTERPRETACI\u00d3N DE LA SENTENCIA DE FONDO Y REPARACIONES EN EL CASO DEL PENAL MIGUEL CASTRO CASTRO PER\u00da Formulo algunas consideraciones personales en torno a la sentencia de interpretaci\u00f3n emitida por la Corte Interamericana con respecto al caso del Penal Castro Castro. Dicha sentencia fue adoptada por unanimidad de votos de los integrantes de este tribunal. En ella", - "values": [ - "Corte Interamericana de Derechos Humanos" - ] - }, - { - "text": "VOTO RAZONADO JUEZ MANUEL E. VENTURA ROBLES I INTRODUCCI\u00d3N He concurrido con mi voto a la adopci\u00f3n de esta sentencia de interpretaci\u00f3n de la Sentencia sobre fondo reparaciones y costas en el caso del Penal Castro Castro vs. Per\u00fa en adelante el Estado por dos razones fundamentales primero porque la Corte Interamericana de Derechos Humanos en adelante la Corte o la Corte Interamericana admiti\u00f3 la solicitud de interpretaci\u00f3n formulada por el Estado y segundo porque me pareci\u00f3 conveniente en las ", - "values": [ - "Corte Interamericana de Derechos Humanos" - ] - }, - { - "text": "Corte Interamericana de Derechos Humanos Caso Cantoral Huaman\u00ed y Garc\u00eda Santa Cruz vs. Per\u00fa Interpretaci\u00f3n de la Sentencia de Excepci\u00f3n Preliminar Fondo Reparaciones y Costas Sentencia de de enero de En el Caso Cantoral Huaman\u00ed y Garc\u00eda Santa Cruz la Corte Interamericana de Derechos Humanos en adelante la Corte Interamericana la Corte o el Tribunal integrada por los siguientes jueces Sergio Garc\u00eda Ram\u00edrez Presidente Cecilia Medina Quiroga Vicepresidenta Manuel E. Ventura Robles Juez Leonardo ", - "values": [ - "Corte Interamericana de Derechos Humanos" - ] - }, - { - "text": "CORTE INTERAMERICANA DE DERECHOS HUMANOS CASO TRABAJADORES CESADOS DEL CONGRESO AGUADO ALFARO Y OTROS VS. PER\u00da SENTENCIA DE DE NOVIEMBRE DE SOLICITUD DE INTERPRETACI\u00d3N DE LA SENTENCIA DE EXCEPCIONES PRELIMINARES FONDO REPARACIONES Y COSTAS En el caso Trabajadores Cesados del Congreso Aguado Alfaro y otros la Corte Interamericana de Derechos Humanos en adelante la Corte Interamericana la Corte o el Tribunal integrada por los siguientes jueces Sergio Garc\u00eda Ram\u00edrez Presidente Ant\u00f4nio Augusto ", - "values": [ - "Corte Interamericana de Derechos Humanos" - ] - }, - { - "text": "VOTO DISIDENTE DEL JUEZ AA. CAN\u00c7ADO TRINDADE Lamento no poder compartir la decisi\u00f3n tomada por la mayor\u00eda de la Corte Interamericana de Derechos Humanos en la presente Sentencia de Interpretaci\u00f3n en el caso de los Trabajadores Cesados del Congreso versus Per\u00fa. La Corte ha declarado inadmisible en su totalidad la demanda de interpretaci\u00f3n sometida por los peticionarios en el cas desp\u00e8ce por haber entendido a mi juicio equivocadamente que dicha demanda no presenta cuesti\u00f3n alguna acerca del y ", - "values": [ - "Corte Interamericana de Derechos Humanos" - ] - }, - { - "text": "CORTE INTERAMERICANA DE DERECHOS HUMANOS CASO LA CANTUTA VS. PER\u00da SENTENCIA DE DE NOVIEMBRE DE INTERPRETACI\u00d3N DE LA SENTENCIA DE FONDO REPARACIONES Y COSTAS En el caso La Cantuta vs. Per\u00fa la Corte Interamericana de Derechos Humanos en adelante la Corte Interamericana la Corte o el Tribunal integrada por los siguientes jueces Sergio Garc\u00eda Ram\u00edrez Presidente Ant\u00f4nio Augusto Can\u00e7ado Trindade Juez Cecilia Medina Quiroga Jueza Manuel E. Ventura Robles Juez Fernando Vidal Ram\u00edrez Juez ad hoc ", - "values": [ - "Corte Interamericana de Derechos Humanos" - ] - }, - { - "text": "VOTO RAZONADO DEL JUEZ AA. CAN\u00c7ADO TRINDADE Soy un Juez sobreviviente de la Corte Interamericana de Derechos Humanos. El emit\u00ed mi \u00faltimo Voto en este Tribunal en la Sentencia sobre fondo y reparaciones en el presente caso La Cantuta atinente al Estado peruano. Trascurrido m\u00e1s de un a\u00f1o constato que en el mundo del Derecho dif\u00edcilmente hay lo \u00faltimo. La presente solicitud de Interpretaci\u00f3n de Sentencia me lleva a dejar constancia de nuevas reflexiones sobre la cuesti\u00f3n planteada en el ante la", - "values": [ - "Corte Interamericana de Derechos Humanos" - ] - }, - { - "text": "Corte Interamericana de Derechos Humanos Caso Acevedo Jaramillo y otros Vs. Per\u00fa Sentencia de de noviembre de Interpretaci\u00f3n de la Sentencia de Excepciones Preliminares Fondo Reparaciones y Costas En el caso Acevedo Jaramillo y otros La Corte Interamericana de Derechos Humanos en adelante la Corte la Corte Interamericana o el Tribunal integrada por los siguientes jueces Sergio Garc\u00eda Ram\u00edrez Presidente Alirio Abreu Burelli Vicepresidente Ant\u00f4nio A. Can\u00e7ado Trindade Juez Cecilia Medina Quiroga", - "values": [ - "Corte Interamericana de Derechos Humanos" - ] - }, - { - "text": "RESOLUCI\u00d3N DEL PRESIDENTE DE LA CORTE INTERAMERICANA DE DERECHOS HUMANOS DE DE MAYO DE SOLICITUD DE MEDIDAS PROVISIONALES RESPECTO DEL PER\u00da CASO JU\u00c1REZ CRUZZAT Y OTROS VISTOS Los dos escritos de de mayo de y sus anexos mediante los cuales el se\u00f1or Douglass Cassel quien es uno de los representantes de las presuntas v\u00edctimas y sus familiares en el caso Ju\u00e1rez Cruzatt y otros pero no es el interviniente com\u00fan de los representantes present\u00f3 una solicitud de medidas provisionales a la Corte. En", - "values": [ - "Corte Interamericana de Derechos Humanos" - ] - }, - { - "text": "RESOLUCI\u00d3N DE LA CORTE INTERAMERICANA DE DERECHOS HUMANOS DE DE NOVIEMBRE DE CASO LOAYZA TAMAYO CUMPLIMIENTO DE SENTENCIA VISTOS La sentencia de fondo dictada en el caso Loayza Tamayo vs. el Per\u00fa por la Corte Interamericana de Derechos Humanos en adelante la Corte la Corte Interamericana o el Tribunal el de septiembre de en la que dispuso en los puntos resolutivos quinto y sexto que por seis votos contra uno Que ordena que el Estado del Per\u00fa ponga en libertad a Mar\u00eda Elena Loayza Tamayo", - "values": [ - "Corte Interamericana de Derechos Humanos" - ] - }, - { - "text": "Corte Interamericana de Derechos Humanos Caso Cesti Hurtado Vs. Per\u00fa Sentencia de de noviembre de Interpretaci\u00f3n de la Sentencia de Reparaciones y Costas En el caso Cesti Hurtado la Corte Interamericana de Derechos Humanos en adelante la Corte la Corte Interamericana o el Tribunal integrada por los siguientes jueces Ant\u00f4nio A. Can\u00e7ado Trindade Presidente Hern\u00e1n Salgado Pesantes Juez Alirio Abreu Burelli Juez Sergio Garc\u00eda Ram\u00edrez Juez y Carlos Vicente de Roux Rengifo Juez presentes adem\u00e1s E.", - "values": [ - "Corte Interamericana de Derechos Humanos" - ] - }, - { - "text": "Corte Interamericana de Derechos Humanos Caso Ivcher Bronstein Vs. Per\u00fa Sentencia de de septiembre de Interpretaci\u00f3n de la Sentencia de Fondo En el caso Ivcher Bronstein la Corte Interamericana de Derechos Humanos en adelante la Corte o la Corte Interamericana integrada por los siguientes jueces Ant\u00f4nio A. Can\u00e7ado Trindade Presidente Hern\u00e1n Salgado Pesantes Juez Oliver Jackman Juez Alirio Abreu Burelli Juez Sergio Garc\u00eda Ram\u00edrez Juez y Carlos Vicente de Roux Rengifo Juez presentes adem\u00e1s E. ", - "values": [ - "Corte Interamericana de Derechos Humanos" - ] - }, - { - "text": "Corte Interamericana de Derechos Humanos Caso Barrios Altos VsPer\u00fa Sentencia de de septiembre de Interpretaci\u00f3n de la Sentencia de Fondo En el caso Barrios Altos la Corte Interamericana de Derechos Humanos en adelante la Corte o la Corte Interamericana integrada por los siguientes jueces Ant\u00f4nio A. Can\u00e7ado Trindade Presidente Hern\u00e1n Salgado Pesantes Juez Alirio Abreu Burelli Juez Sergio Garc\u00eda Ram\u00edrez Juez y Carlos Vicente de Roux Rengifo Juez presentes adem\u00e1s Manuel E. Ventura Robles y ", - "values": [ - "Corte Interamericana de Derechos Humanos" - ] - }, - { - "text": "Corte Interamericana de Derechos Humanos Caso Cesti Hurtado Vs. Per\u00fa Sentencia de de enero de Interpretaci\u00f3n de la Sentencia de Fondo En el caso Cesti Hurtado la Corte Interamericana de Derechos Humanos en adelante la Corte o la Corte Interamericana integrada por los siguientes jueces Ant\u00f4nio A. Can\u00e7ado Trindade Presidente M\u00e1ximo Pacheco G\u00f3mez Vicepresidente Oliver Jackman Juez Alirio Abreu Burelli Juez Sergio Garc\u00eda Ram\u00edrez Juez y Carlos Vicente de Roux Rengifo Juez presentes adem\u00e1s Manuel E.", - "values": [ - "Corte Interamericana de Derechos Humanos" - ] - }, - { - "text": "Corte Interamericana de Derechos Humanos Caso Loayza Tamayo Vs. Per\u00fa Resoluci\u00f3n del de noviembre de Cumplimiento de Sentencia VISTOS Las sentencias sobre excepciones preliminares y fondo dictadas por la Corte Interamericana de Derechos Humanos en adelante la Corte o la Corte Interamericana o el Tribunal el de enero de y el de septiembre de respectivamente. En ambas sentencias la Corte se pronunci\u00f3 sobre la improcedencia de la excepci\u00f3n interpuesta por el Estado del Per\u00fa en adelante el o", - "values": [ - "Corte Interamericana de Derechos Humanos" - ] - }, - { - "text": "Corte Interamericana de Derechos Humanos Caso Loayza Tamayo Vs. Per\u00fa Resoluci\u00f3n de la Corte de marzo de Interpretaci\u00f3n de la Sentencia de Fondo En el caso Loayza Tamayo la Corte Interamericana de Derechos Humanos en adelante la Corte o la Corte Interamericana integrada por los siguientes jueces Hern\u00e1n Salgado Pesantes Presidente Ant\u00f4nio A. Can\u00e7ado Trindade Vicepresidente H\u00e9ctor FixZamudio Juez Alejandro Montiel Arg\u00fcello Juez M\u00e1ximo Pacheco G\u00f3mez Juez y Alirio Abreu Burelli Juez presentes E.", - "values": [ - "Corte Interamericana de Derechos Humanos" - ] - }, - { - "text": "Corte Interamericana de Derechos Humanos Caso Castillo P\u00e1ez VsPer\u00fa Sentencia de de enero de Excepciones Preliminares En el caso Castillo P\u00e1ez la Corte Interamericana de Derechos Humanos integrada por los siguientes jueces H\u00e9ctor FixZamudio Presidente Hern\u00e1n Salgado Pesantes Vicepresidente Alejandro Montiel Arg\u00fcello Juez M\u00e1ximo Pacheco G\u00f3mez Juez Alirio Abreu Burelli Juez Ant\u00f4nio A. Can\u00e7ado Trindade Juez presentes adem\u00e1s Manuel E. Ventura Robles Secretario y Ana Mar\u00eda Reina Secretaria adjunta", - "values": [ - "Corte Interamericana de Derechos Humanos" - ] - }, - { - "text": "VOTO RAZONADO DEL JUEZ AA. CAN\u00c7ADO TRINDADE Suscribo la decisi\u00f3n de la Corte de desestimar las excepciones preliminares interpuestas por el Gobierno demandado y de proseguir con el conocimiento del presente caso en cuanto al fondo con la cual estoy de acuerdo. Si\u00e9ntome obligado a adjuntar este Voto Razonado para dejar constancia de los fundamentos de mi razonamiento y posici\u00f3n sobre el punto central de las dos excepciones preliminares presentadas por el Gobierno del Per\u00fa a saber la invocaci\u00f3n ", - "values": [ - "Corte Interamericana de Derechos Humanos" - ] - }, - { - "text": "VOTO RAZONADO DEL JUEZ CHARLES N. BROWER Comparto los puntos de vista expresados por un distinguido Juez Ad Hoc de la Corte Internacional de Justicia en relaci\u00f3n con el rol del Juez Ad Hoc Al ejercer sus atribuciones imparcialmente y a conciencia tiene the special obligation to endeavour to ensure that so far as is reasonable every relevant argument in favour of the party that has appointed him has been fully appreciated in the course of collegial consideration and ultimately is reflected ", - "values": [ - "Corte Interamericana de Derechos Humanos" - ] - }, - { - "text": "VOTO RAZONADO DEL JUEZ AA. CAN\u00c7ADO TRINDADE Voto a favor de la presente Sentencia de reparaciones que viene de adoptar la Corte Interamericana de Derechos Humanos en el caso Trujillo Oroza versus Bolivia. Una consideraci\u00f3n de la Corte desarrollada en esta Sentencia ata\u00f1e a la basis de la jurisdicci\u00f3n de la Corte en materia contenciosa en el contexto del caso concreto. Me refiero al p\u00e1rrafo el cual se\u00f1ala que La Corte tiene presente que algunos de los hechos de este caso son anteriores a las ", - "values": [ - "Corte Interamericana de Derechos Humanos" - ] - }, - { - "text": "VOTO RAZONADO CONCURRENTE DEL JUEZ SERGIO GARC\u00cdA RAM\u00cdREZ EN LA SENTENCIA DE REPARACIONES DEL CASO TRUJILLO OROZA VS. BOLIVIA Concurro con mis colegas integrantes de la Corte en la suscripci\u00f3n de la Sentencia sobre Reparaciones en el Caso Trujillo Oroza vs. Bolivia. En mi concepto el tribunal tiene competencia como lo ha se\u00f1alado para conocer y resolver acerca de los hechos sobre los que versan la sentencia de fondo y esta sentencia de reparaciones as\u00ed como para establecer las consecuencias ", - "values": [ - "Corte Interamericana de Derechos Humanos" - ] - }, - { - "text": "RESOLUCI\u00d3N DE LA CORTE INTERAMERICANA DE DERECHOS HUMANOS DE DE MAYO DE CASO SAN MIGUEL SOSA Y OTRAS VS. VENEZUELA VISTO La Resoluci\u00f3n del Presidente de la Corte Interamericana de Derechos Humanos en adelante la Corte o el Tribunal de de diciembre de La audiencia p\u00fablica celebrada el d\u00eda de febrero de durante el Per\u00edodo Ordinario de Sesiones de la Corte en su sede en la cual \u00e9sta recibi\u00f3 las declaraciones de una presunta v\u00edctima y de tres peritos as\u00ed como los alegatos y observaciones ", - "values": [ - "Corte Interamericana de Derechos Humanos" - ] - }, - { - "text": "RESOLUCI\u00d3N DEL PRESIDENTE DE LA CORTE INTERAMERICANA DE DERECHOS HUMANOS DE DE DICIEMBRE DE CASO SAN MIGUEL SOSA Y OTRAS VS. VENEZUELA VISTO El escrito de sometimiento del caso y el Informe de Fondo de la Comisi\u00f3n Interamericana de Derechos Humanos en adelante la Comisi\u00f3n Interamericana o la Comisi\u00f3n y el escrito de solicitudes argumentos y pruebas en adelante el escrito de solicitudes y argumentos del representante de las presuntas v\u00edctimas en adelante el representante. La nota de de de ", - "values": [ - "Corte Interamericana de Derechos Humanos" - ] - }, - { - "text": "VOTO INDIVIDUAL DEL JUEZ EDUARDO VIO GROSSI RESOLUCI\u00d3N DE LA CORTE INTERMERICANA DE DERECHOS HUMANOS DE MAYO DE MEDIDAS PROVISIONALES RESPECTO DE VENEZUELA CASO FAMILIA BARRIOS Qui\u00e9n suscribe concurre con su voto individual a la aprobaci\u00f3n de la Resoluci\u00f3n indicada en el r\u00f3tulo reiterando empero que en atenci\u00f3n a que en autos ya se emiti\u00f3 el fallo definitivo e inapelable que ha puesto efectivo t\u00e9rmino al caso de autos ha precluido la competencia de la Corte Interamericana de Derechos Humanos ", - "values": [ - "Corte Interamericana de Derechos Humanos" - ] - }, - { - "text": "VOTO INDIVIDUAL DEL JUEZ EDUARDO VIO GROSSI RESOLUCI\u00d3N DE LA CORTE INTERAMERICANA DE DERECHOS HUMANOS DE FEBRERO DE MEDIDAS PROVISIONALES RESPECTO DE VENEZUELA CASO FAMILIA BARRIOS Se emite el siguiente voto individual a los efectos de reiterar lo expresado por el suscrito en su voto concurrente a la Sentencia de la Corte Interamericana de Derechos Humanos de de noviembre de Caso Familia Barrios Vs. Venezuela. Eduardo Vio Grossi Juez Pablo Saavedra Alessandri Secretario", - "values": [ - "Corte Interamericana de Derechos Humanos" - ] - }, - { - "text": "RESOLUCI\u00d3N DE LA CORTE INTERAMERICANA DE DERECHOS HUMANOS DE DE MAYO DE SOLICITUD DE MEDIDAS PROVISIONALES RESPECTO DE COSTA RICA ASUNTO ROJAS MADRIGAL RESPECTO AL CASO AMRHEIN Y OTROS VISTO El escrito de sometimiento de de noviembre de mediante el cual la Comisi\u00f3n Interamericana de Derechos Humanos en adelante la Comisi\u00f3n Interamericana o la Comisi\u00f3n present\u00f3 a la Corte Interamericana de Derechos Humanos en adelante la Corte o el Tribunal el Caso Amrhein y otros Vs. Costa Rica. Los de ", - "values": [ - "Corte Interamericana de Derechos Humanos" - ] - }, - { - "text": "VOTO CONCURRENTE DEL JUEZ EDUARDO VIO GROSSI RESOLUCI\u00d3N DE LA CORTE INTERAMERICANA DE DERECHOS HUMANOS DE DE MARZO SOLICITUD DE MEDIDAS PROVISIONALES CASO ARTAVIA MURILLO Y OTROS FECUNDACI\u00d3N IN VITRO VS COSTA RICA. Se emite el presente voto concurrente con la Resoluci\u00f3n indicada en el r\u00f3tulo en m\u00e9rito de que si bien se comparte la decisi\u00f3n de desestimar las medida provisionales solicitadas no lo es por la raz\u00f3n se\u00f1alada en la misma esto es porque el asunto planteado ante el Tribunal no es de", - "values": [ - "Corte Interamericana de Derechos Humanos" - ] - }, - { - "text": "VOTO CONCURRENTE DEL JUEZ EDUARDO VIO GROSSI A LA RESOLUCI\u00d3N DE LA CORTE INTERAMERICANA DE DERECHOS HUMANOS DE DE FEBRERO DE CASO EL AMPARO VS. VENEZUELA SUPERVISI\u00d3N DE CUMPLIMIENTO DE SENTENCIA El suscrito concurre con el presente voto a la resoluci\u00f3n indicada en el t\u00edtulo en adelante la Resoluci\u00f3n en el entendido de que acorde a las normas pertinentes y en vista del extenso lapso y por ende m\u00e1s que prudente o razonable transcurrido desde la dictaci\u00f3n de la sentencia de autos sin que el en", - "values": [ - "Corte Interamericana de Derechos Humanos" - ] - }, - { - "text": "VOTO CONCURRENTE DEL JUEZ DIEGO GARC\u00cdASAY\u00c1N A LA RESOLUCI\u00d3N DE SUPERVISI\u00d3N DE CUMPLIMIENTO DE SENTENCIA DEL CASO BLANCO ROMERO Y OTROS VS. VENEZUELA DE DE NOVIEMBRE DE La cuesti\u00f3n de la supervisi\u00f3n de cumplimiento de sus propias Sentencias por la Corte Interamericana de Derechos Humanos en adelante la Corte Interamericana la Corte o el Tribunal es una de las atribuciones m\u00e1s relevantes para la protecci\u00f3n de los derechos humanos. El Tribunal ejerce esta atribuci\u00f3n desde sus primeras y es una", - "values": [ - "Corte Interamericana de Derechos Humanos" - ] - }, - { - "text": "VOTO CONCURRENTE DEL JUEZ EDUARDO VIO GROSSI A LA RESOLUCI\u00d3N DE LA CORTE INTERAMERICANA DE DERECHOS HUMANOS DE DE NOVIEMBRE DE CASO BLANCO ROMERO Y OTROS VS. VENEZUELA SUPERVISI\u00d3N DE CUMPLIMIENTO DE SENTENCIA. Introducci\u00f3n. El suscrito concurre con el presente voto a la Resoluci\u00f3n indicada en el t\u00edtulo en adelante la Resoluci\u00f3n en el entendido de que acorde a las normas pertinentes y en vista del extenso lapso y por ende m\u00e1s que prudente o razonable transcurrido desde la dictaci\u00f3n de la de ", - "values": [ - "Corte Interamericana de Derechos Humanos" - ] - }, - { - "text": "VOTO RAZONADO DEL JUEZ SERGIO GARC\u00cdA RAM\u00cdREZ EN RELACI\u00d3N CON LA SENTENCIA DE LA CORTE INTERAMERICANA DE DERECHOS HUMANOS EN EL CASO US\u00d3N RAM\u00cdREZ VS. VENEZUELA DE DE NOVIEMBRE DE En la sentencia a la que concurro con este voto la Corte Interamericana defini\u00f3 un criterio que hab\u00eda perfilado en ocasiones anteriores pero no desarrollado puntualmente con sus naturales consecuencias. En otras oportunidades he sostenido la pertinencia de asumir ese criterio para el an\u00e1lisis y la decisi\u00f3n de un caso", - "values": [ - "Corte Interamericana de Derechos Humanos" - ] - }, - { - "text": "VOTO DISIDENTE DEL JUEZ adhoc PIER PAOLO PASCERI SCARAMUZZA. En el caso Perozo y otros vs. La Rep\u00fablica Bolivariana de Venezuela Data venia del criterio de la mayor\u00eda Pier Paolo Pasceri S Juez adhoc de la Corte Interamericana de Derechos Humanos lamenta salvar su voto por tener criterio contrario tanto en la motiva como en la dispositiva a excepci\u00f3n de los puntos de la dispositiva o resolutiva del fallo y por tanto disentir de la mayor\u00eda de los integrantes de esta Corte cuyos votos favorables ", - "values": [ - "Corte Interamericana de Derechos Humanos" - ] - }, - { - "text": "Voto Razonado del Juez Sergio Garc\u00eda Ram\u00edrez Con Respecto A La Resoluci\u00f3n de la Corte Interamericana De Derechos Humanos sobre El Asunto del Internado Judicial Capital El Rodeo I Y El Rodeo II de de febrero de Concurro en la adopci\u00f3n de las medidas provisionales concernientes a reclusos de los internados judiciales El Rodeo I y El Rodeo II mediante Resoluci\u00f3n del de febrero de a la que agrego este Voto. En los considerandos de aqu\u00e9lla se hace el examen de diversas cuestiones relevantes a ", - "values": [ - "Corte Interamericana de Derechos Humanos" - ] - }, - { - "text": "VOTO CONCURRENTE DEL JUEZ SERGIO GARC\u00cdA RAM\u00cdREZ A LA RESOLUCI\u00d3N DE LA CORTE INTERAMERICANA DE DERECHOS HUMANOS SOBRE MEDIDAS PROVISIONALES EN RELACI\u00d3N CON LOS HABITANTES DEL INTERNADO JUDICIAL DE MONAGAS LA PICA VENEZUELA DEL DE FEBRERO DE En diversas audiencias p\u00fablicas y votos concurrentes o razonados manifestado mis puntos de vista acerca de la afectaci\u00f3n de derechos humanos instituciones de reclusi\u00f3n para adultos o menores de edad. Me remito a lo que expuesto en esas ocasiones acerca de ", - "values": [ - "Corte Interamericana de Derechos Humanos" - ] - }, - { - "text": "VOTO RAZONADO CONJUNTO DE LOS JUECES AA. CAN\u00c7ADO TRINDADE Y ME. VENTURA ROBLES Hemos concurrido con nuestros votos a la adopci\u00f3n por la Corte Interamericana de Derechos Humanos de la presente Resoluci\u00f3n sobre Medidas Provisionales de protecci\u00f3n en el caso del Internado Judicial de Monagas La Pica referente a Venezuela y nos vemos adem\u00e1s en la obligaci\u00f3n de dejar constancia en este Voto Razonado Conjunto de nuestra posici\u00f3n sobre la materia tratada. En primer lugar la Corte en pleno ha una ", - "values": [ - "Corte Interamericana de Derechos Humanos" - ] - }, - { - "text": "VOTO CONCURRENTE DEL JUEZ AA. CAN\u00c7ADO TRINDADE Al concurrir con mi voto a la adopci\u00f3n por la Corte Interamericana de Derechos Humanos de esta nueva Resoluci\u00f3n sobre Medidas Provisionales de Protecci\u00f3n en el caso de Eloisa Barrios y Otros respecto de Venezuela me veo en la obligaci\u00f3n de reiterar en el presente Voto Concurrente la esencia de mis ponderaciones en mi anterior Voto Concurrente en la previa Resoluci\u00f3n de la Corte del de junio de en el cas desp\u00e8ce. Cuando no se da pronto a las ", - "values": [ - "Corte Interamericana de Derechos Humanos" - ] - }, - { - "text": "VOTO CONCURRENTE DEL JUEZ AA. CAN\u00c7ADO TRINDADE Al votar en favor de la adopci\u00f3n por la Corte Interamericana de Derechos Humanos de la presente Resoluci\u00f3n sobre Medidas Provisionales de Protecci\u00f3n en el caso de Eloisa Barrios y Otros respecto de Venezuela me veo en la obligaci\u00f3n de dejar constancia en el presente Voto Concurrente de una breve reflexi\u00f3n que me suscitan los hechos del cas desp\u00e8ce as\u00ed como de otros casos recientes que han conllevado esta Corte a ordenar Medidas Provisionales de ", - "values": [ - "Corte Interamericana de Derechos Humanos" - ] - }, - { - "text": "VOTO CONCURRENTE DEL JUEZ AA. CAN\u00c7ADO TRINDADE Voto a favor de la adopci\u00f3n de las presentes Medidas Provisionales de Protecci\u00f3n mediante las cuales la Corte Interamericana de Derechos Humanos ordena que se extienda protecci\u00f3n a todas las personas que trabajan en la Emisora de Televisi\u00f3n Globovisi\u00f3n en Venezuela o vinculadas a la misma o que se encuentren en sus instalaciones. La Corte adem\u00e1s afirma la obligaci\u00f3n general del Estado de proteger a todas las personas que se encuentren bajo su a", - "values": [ - "Corte Interamericana de Derechos Humanos" - ] - }, - { - "text": "VOTO RAZONADO CONCURRENTE DEL JUEZ SERGIO GARCIA RAMIREZ A LA RESOLUCION DE LA CORTE INTERAMERICANA DE DERECHOS HUMANOS SOBRE MEDIDAS PROVISIONALES EN EL CASO LA EMISORA DE TELEVISI\u00d3N GLOBOVISI\u00d3N DE DE SEPTIEMBRE DE En el presente Voto reitero las consideraciones que expuse en mis votos razonados concurrentes que acompa\u00f1an las Resoluciones emitidas por la Corte Interamericana de Derechos Humanos respecto de las medidas provisionales en el Caso del Pueblo Ind\u00edgena Kankuamo Resoluci\u00f3n de de ", - "values": [ - "Corte Interamericana de Derechos Humanos" - ] - }, - { - "text": "VOTO CONCURRENTE DEL JUEZ EDUARDO FERRER MACGREGOR POISOT CASO YARCE Y OTRAS VS. COLOMBIA SENTENCIA DE DE NOVIEMBRE DE EXCEPCIONES PRELIMINARES FONDO REPARACIONES Y COSTAS INTRODUCCI\u00d3N UN SISTEMA DE DERECHOS HUMANOS SIN DERECHO A LA VIVIENDA El presente caso resulta relevante por dos aspectos de especial significaci\u00f3n. En primer lugar se enfatiza el g\u00e9nero como un elemento adicional de vulnerabilidad en la labor de la defensa de los derechos humanos es decir los Estados deben tener en cuenta", - "values": [ - "Corte Interamericana de Derechos Humanos" - ] - }, - { - "text": "VOTO INDIVIDUAL CONCURRENTE DEL JUEZ EDUARDO VIO GROSSI. RESOLUCI\u00d3N DE LA CORTE INTERAMERICANA DE DERECHOS HUMANOS DE DE JUNIO DE MEDIDAS PROVISIONALES RESPECTO DE LA REP\u00daBLICA DE COLOMBIA CASO COMERCIANTES Vs. COLOMBIA. Se emite el presente Voto Individual Concurrente con la Resoluci\u00f3n indicada en el t\u00edtulo en adelante la Resoluci\u00f3n no obstante que ella ser\u00eda contradictoria con lo expuesto antes en votos disidentes y concurrentes emitidos en casos en que tambi\u00e9n se adoptaron medidas de ", - "values": [ - "Corte Interamericana de Derechos Humanos" - ] - }, - { - "text": "VOTO CONCURRENTE DEL JUEZ EDUARDO VIO GROSSI RESOLUCI\u00d3N DE LA CORTE INTERAMERICANA DE DERECHOS HUMANOS DE DE FEBRERO DE CASO CABALLERO DELGADO Y SANTANA VS. COLOMBIA SUPERVISI\u00d3N DE CUMPLIMIENTO DE SENTENCIA El suscrito concurre con el presente voto a la resoluci\u00f3n indicada en el t\u00edtulo en adelante la Resoluci\u00f3n en el entendido de que acorde a las normas pertinentes y en vista del extenso lapso y por ende m\u00e1s que prudente o razonable transcurrido desde la dictaci\u00f3n de la sentencia de autos sin", - "values": [ - "Corte Interamericana de Derechos Humanos" - ] - }, - { - "text": "VOTO CONCURRENTE DE LOS JUECES DIEGO GARC\u00cdASAY\u00c1N LEONARDO A. FRANCO MANUEL VENTURA ROBLES MARGARETTE MAY MACAULAY Y RHADYS ABREU BLONDET MEDIDAS PROVISIONALES RESPECTO DE COLOMBIA CASO GUTI\u00c9RREZ SOLER La facultad de dictar medidas provisionales para evitar da\u00f1os irreparables a las personas en casos de extrema gravedad y urgencia es una de las competencias fundamentales de la Corte Interamericana de Derechos Humanos en adelante tambi\u00e9n la Corte Interamericana la Corte o el Tribunal. Est\u00e1 en el", - "values": [ - "Corte Interamericana de Derechos Humanos" - ] - }, - { - "text": "VOTO DISIDENTE DEL JUEZ EDUARDO VIO GROSSI MEDIDAS PROVISIONALES RESPECTO DE COLOMBIA CASO GUTI\u00c9RREZ SOLER Se formula el presente voto disidente a la resoluci\u00f3n indicada en atenci\u00f3n a que por haberse dictado sentencia de fondo en autos ha operado la preclusi\u00f3n respecto de la facultad de la Corte Interamericana de Derechos Humanos en adelante la Corte de decretar nuevas medidas provisionales en la causa habiendo cesado por otra parte las ya ordenadas siendo empero su objeto y efectos asumidos ", - "values": [ - "Corte Interamericana de Derechos Humanos" - ] - }, - { - "text": "VOTO RAZONADO DEL JUEZ AA. CAN\u00c7ADO TRINDADE He votado en favor de la adopci\u00f3n de la presente Resoluci\u00f3n sobre Medidas Provisionales de Protecci\u00f3n de la Corte Interamericana de Derechos Humanos en el caso Mery Naranjo y Otros versus Colombia y me veo en la obligaci\u00f3n de a \u00e9sta juntar el presente Voto Razonado conteniendo mis breves reflexiones sobre algunas inquietudes que he venido exponiento a la Corte en los \u00faltimos meses con miras al fortalecimiento de este mecanismo de salvaguardia de de ", - "values": [ - "Corte Interamericana de Derechos Humanos" - ] - }, - { - "text": "VOTO CONCURRENTE DEL JUEZ AA. CAN\u00c7ADO TRINDADE Al concurrir con mi voto a la adopci\u00f3n por la Corte Interamericana de Derechos Humanos de esta nueva Resoluci\u00f3n sobre Medidas Provisionales de Protecci\u00f3n en el caso de las Comunidades del Juguiamand\u00f3 y del Curbarad\u00f3 respecto de Colombia me veo en la obligaci\u00f3n de dejar constancia en el presente Voto Concurrente de una breve reflexi\u00f3n que me suscitan los hechos del cas desp\u00e8ce as\u00ed como de otros casos recientes que han conllevado esta Corte a de ", - "values": [ - "Corte Interamericana de Derechos Humanos" - ] - }, - { - "text": "VOTO CONCURRENTE DEL JUEZ AA. CAN\u00c7ADO TRINDADE Al concurrir con mi voto a la adopci\u00f3n por la Corte Interamericana de Derechos Humanos de esta nueva Resoluci\u00f3n sobre Medidas Provisionales de Protecci\u00f3n en el caso de las Comunidad de San Jos\u00e9 de Apartad\u00f3 respecto de Colombia me veo en la obligaci\u00f3n de dejar constancia en el presente Voto Concurrente de una breve reflexi\u00f3n que me suscitan los hechos del cas desp\u00e8ce as\u00ed como de otros casos recientes que han conllevado esta Corte a ordenar Medidas ", - "values": [ - "Corte Interamericana de Derechos Humanos" - ] - }, - { - "text": "VOTO CONCURRENTE DEL JUEZ AA. CAN\u00c7ADO TRINDADE Al votar a favor de la adopci\u00f3n de las presentes Medidas Provisionales de Protecci\u00f3n mediante las cuales la Corte Interamericana de Derechos Humanos ordena que se extienda protecci\u00f3n a todos los miembros de la Comunidad de Paz de San Jos\u00e9 de Apartad\u00f3 en Colombia me veo en la obligaci\u00f3n de dejar constancia en este Voto Concurrente de lo que ha sido la fundamentaci\u00f3n de mi posici\u00f3n en medidas de protecci\u00f3n como las presentes en circunstancias de la ", - "values": [ - "Corte Interamericana de Derechos Humanos" - ] - }, - { - "text": "VOTO CONCURRENTE DEL JUEZ AA. CAN\u00c7ADO TRINDADE Al votar a favor de la adopci\u00f3n de las presentes Medidas Provisionales de Protecci\u00f3n mediante las cuales la Corte Interamericana de Derechos Humanos ordena que se extienda protecci\u00f3n a todos los miembros de las Comunidades del Jiguamiand\u00f3 y del Curbarad\u00f3 en Colombia me veo en la obligaci\u00f3n de dejar constancia en este Voto Concurrente de lo que ha sido la fundamentaci\u00f3n de mi posici\u00f3n en medidas de protecci\u00f3n como las presentes en circunstancias de", - "values": [ - "Corte Interamericana de Derechos Humanos" - ] - }, - { - "text": "RESOLUCI\u00d3N DE LA CORTE INTERAMERICANA DE DERECHOS HUMANOS DE DE NOVIEMBRE DE CASOS FERN\u00c1NDEZ ORTEGA Y OTROS Y ROSENDO CANT\u00da Y OTRA VS. M\u00c9XICO SUPERVISI\u00d3N DE CUMPLIMIENTO DE SENTENCIA VISTO Las Sentencias de Excepci\u00f3n Preliminar Fondo Reparaciones y Costas emitidas por la Corte Interamericana de Derechos Humanos en adelante la Corte la Corte Interamericana o el Tribunal los d\u00edas y de agosto de respectivamente en el caso Fern\u00e1ndez Ortega y otros Vs. M\u00e9xico y en el caso Rosendo Cant\u00fa y otra ", - "values": [ - "Corte Interamericana de Derechos Humanos" - ] - }, - { - "text": "RESOLUCI\u00d3N DE LA CORTE INTERAMERICANA DE DERECHOS HUMANOS DE DE FEBRERO DE MEDIDAS PROVISIONALES RESPECTO DE LOS ESTADOS UNIDOS MEXICANOS CASO FERN\u00c1NDEZ ORTEGA Y OTROS VISTO La Sentencia de Excepci\u00f3n Preliminar Fondo Reparaciones y Costas en adelante tambi\u00e9n la Sentencia emitida por la Corte Interamericana de Derechos Humanos en adelante la Corte Interamericana la Corte o el Tribunal el de agosto de La Resoluci\u00f3n de la Presidenta de la Corte de de abril de mediante la cual inter alia a", - "values": [ - "Corte Interamericana de Derechos Humanos" - ] - }, - { - "text": "VOTO CONCURRENTE DEL JUEZ EDUARDO VIO GROSSI RESOLUCI\u00d3N DE LA CORTE INTERAMERICANA DE DERECHOS HUMANOS DE DE FEBRERO DE MEDIDAS PROVISIONALES RESPECTO DE LOS ESTADOS UNIDOS MEXICANOS CASO FERN\u00c1NDEZ ORTEGA Y OTROS Qui\u00e9n suscribe concurre con su voto a la aprobaci\u00f3n de la Resoluci\u00f3n indicada en el r\u00f3tulo dejando empero constancia de que en atenci\u00f3n a que habi\u00e9ndose dictado en autos el fallo definitivo e inapelable que ha puesto efectivo t\u00e9rmino al caso en el que mientras la Corte Interamericana", - "values": [ - "Corte Interamericana de Derechos Humanos" - ] - }, - { - "text": "CORTE INTERAMERICANA DE DERECHOS HUMANOS CASO ROSENDO CANT\u00da Y OTRA VS. M\u00c9XICO SENTENCIA DE DE MAYO DE Interpretaci\u00f3n de la Sentencia de Excepci\u00f3n Preliminar Fondo Reparaciones y Costas En el caso Rosendo Cant\u00fa y otra la Corte Interamericana de Derechos Humanos en adelante la Corte Interamericana la Corte o el Tribunal integrada por los siguientes Jueces Diego Garc\u00edaSay\u00e1n Presidente Leonardo A. Franco Juez Manuel E. Ventura Robles Juez Margarette May Macaulay Jueza Rhadys Abreu Blondet Jueza ", - "values": [ - "Corte Interamericana de Derechos Humanos" - ] - }, - { - "text": "CORTE INTERAMERICANA DE DERECHOS HUMANOS CASO FERN\u00c1NDEZ ORTEGA Y OTROS VS. M\u00c9XICO SENTENCIA DE DE MAYO DE Interpretaci\u00f3n de la Sentencia de Excepci\u00f3n Preliminar Fondo Reparaciones y Costas En el caso Fern\u00e1ndez Ortega y otros la Corte Interamericana de Derechos Humanos en adelante la Corte Interamericana la Corte o el Tribunal integrada por los siguientes Jueces Diego Garc\u00edaSay\u00e1n Presidente Leonardo A. Franco Juez Manuel E. Ventura Robles Juez Margarette May Macaulay Jueza Rhadys Abreu Blondet", - "values": [ - "Corte Interamericana de Derechos Humanos" - ] - }, - { - "text": "CORTE INTERAMERICANA DE DERECHOS HUMANOS COUR INTERAMERICAINE DES DROITS DE LHOMME A CORTE INTERAMERICANA DE DIREITOS HUMANOS INTERAMERICAN COURT OF HUMAN RIGHTS PRESIDENTE DE LA CORTE RESOLUCION DEL PRESIDENTE DE LA CORTE INTERAMERICANA DE DERECHOS HUMANOS DE DE AGOSTO DE CASO CABRERA GARCIA Y MONTIEL FLORES VS MEXICO VISTO La Resolucion del Presidente de la Corte Interamericana de Derechos Humanos en adelante Ia Corte Ia Corte Interamericana el Tribunal de de julio de mediante la cual ", - "values": [ - "Corte Interamericana de Derechos Humanos" - ] - }, - { - "text": "CORTE INTERAMERICANA DE DERECHOS HUMANOS COUR INTERAMERICAINE DES DROITS DE LHOMME A CORTE INTERAMERICANA DE DIREITOS HUMANOS INTERAMERICAN COURT OF HUMAN RIGHTS PRESIDENTE DE LA CORTE RESOLUCION DEL PRESIDENTE DE LA CORTE INTERAMERICANA DE DERECHOS HUMANOS DE DE JULIO DE CASO CABRERA GARCIA Y MONTIEL FLORES V. MEXICO VISTO EI escrito de demanda presentado por la Comision Interamericana de Derechos Humanos en adelante Ia Comision Interamericana Ia Comision ante la Corte Interamericana de ", - "values": [ - "Corte Interamericana de Derechos Humanos" - ] - }, - { - "text": "CORTE INTERAMERICANA DE DERECHOS HUMANOS COUR INTERAMERICAINE DES DROITS DE LHOMME A CORTE INTERAMERICANA DE DIREITOS HUMANOS INTERAMERICAN COURT OF HUMAN RIGHTS RESOLUCI\u00d3N DE LA CORTE INTERAMERICANA DE DERECHOS HUMANOS DE DE ABRIL DE CASO FERN\u00c1NDEZ ORTEGA Y OTROS VS. ESTADOS UNIDOS MEXICANOS VISTO L La Resoluci\u00f3n dictada por el Presidente de la Corte Interamericana de Derechos Humanos en adelante la Corte Interamericana la Corte o el Tribunal el de marzo de mediante la cual convoc\u00f3 a la ", - "values": [ - "Corte Interamericana de Derechos Humanos" - ] - }, - { - "text": "CORTE INTERAMERICANA DE DERECHOS HUMANOS COUR INTERAMERICAINE DES DROITS DE LHOMME A CORTE INTERAMERICANA DE DIREITOS HUMANOS INTERAMERICAN COURT OF HUMAN RIGHTS PRESIDENTE DE LA CORTE RESOLUCI\u00d3N DEL PRESIDENTE DE LA CORTE INTERAMERICANA DE DERECHOS HUMANOS DE DE ABRIL DE CASO FERN\u00c1NDEZ ORTEGA Y OTROS VS. M\u00c9XICO VISTO La Resoluci\u00f3n dictada por el Presidente de la Corte Interamericana de Derechos Humanos en adelante la Corte Interamericana la Corte o el Tribunal el de marzo de mediante la ", - "values": [ - "Corte Interamericana de Derechos Humanos" - ] - }, - { - "text": "RESOLUCI\u00d3N DE LA PRESIDENTA DE LA CORTE INTERAMERICANA DE DERECHOS HUMANOS DE DE MAYO DE CASO RADILLA PACHECO VS. M\u00c9XICO VISTOS El escrito de demanda presentado por la Comisi\u00f3n Interamericana de Derechos Humanos en adelante la Comisi\u00f3n Interamericana o la Comisi\u00f3n ante la Corte Interamericana de Derechos Humanos en adelante la Corte Interamericana la Corte o el Tribunal el de marzo de mediante el cual ofreci\u00f3 siete testimonios y tres peritajes. De los testimonios ofrecidos cuatro de ", - "values": [ - "Corte Interamericana de Derechos Humanos" - ] - }, - { - "text": "RESOLUCI\u00d3N DE LA PRESIDENTA DE LA CORTE INTERAMERICANA DE DERECHOS HUMANOS DE DE MARZO DE CASO GONZ\u00c1LEZ Y OTRAS CAMPO ALGODONERO VS. M\u00c9XICO VISTO El escrito de demanda presentado por la Comisi\u00f3n Interamericana de Derechos Humanos en adelante la Comisi\u00f3n Interamericana o la Comisi\u00f3n ante la Corte Interamericana de Derechos Humanos en adelante la Corte Interamericana la Corte o el Tribunal el de noviembre de en el que ofreci\u00f3 cinco testigos y cuatro peritos. Uno de los peritos ofrecidos por ", - "values": [ - "Corte Interamericana de Derechos Humanos" - ] - }, - { - "text": "RESOLUCI\u00d3N DE LA CORTE INTERAMERICANA DE DERECHOS HUMANOS DE DE ENERO DE CASO GONZ\u00c1LEZ Y OTRAS CAMPO ALGODONERO VS. M\u00c9XICO SOLICITUD DE AMPLIACI\u00d3N DE PRESUNTAS V\u00cdCTIMAS Y NEGATIVA DE REMISI\u00d3N DE PRUEBA DOCUMENTAL VISTO El escrito de demanda de la Comisi\u00f3n Interamericana de Derechos Humanos en adelante la Comisi\u00f3n Interamericana o la Comisi\u00f3n presentado ante la Corte Interamericana de Derechos Humanos en adelante la Corte Interamericana la Corte o el Tribunal el de noviembre de as\u00ed como ", - "values": [ - "Corte Interamericana de Derechos Humanos" - ] - }, - { - "text": "VOTO RAZONADO DE LA JUEZA CECILIA MEDINA EN EL CASO MARTIN DEL CAMPO Concurro a la decisi\u00f3n de la Corte de que no debe conocer de ninguna de las alegadas violaciones de derechos humanos que aparecen en el caso que le fue sometido por la Comisi\u00f3n Interamericana de Derechos Humanos y en el escrito de observaciones presentado por los representantes de la v\u00edctima pero mis razones son en algunos puntos diferentes. La excepci\u00f3n del Estado se refiere a diversas presuntas violaciones de la Convenci\u00f3n ", - "values": [ - "Corte Interamericana de Derechos Humanos" - ] - }, - { - "text": "RESOLUCI\u00d3N DE LA CORTE INTERAMERICANA DE DERECHOS HUMANOS DE DE MAYO DE CASO L\u00d3PEZ LONE Y OTROS VS. HONDURAS SUPERVISI\u00d3N DE CUMPLIMIENTO DE SENTENCIA VISTO La Sentencia de excepci\u00f3n preliminar fondo reparaciones y costas en adelante la Sentencia dictada por la Corte Interamericana de Derechos Humanos en adelante la Corte Interamericana la Corte o el Tribunal el de octubre de La Corte declar\u00f3 la responsabilidad internacional de la Rep\u00fablica de Honduras en adelante el Estado u Honduras por ", - "values": [ - "Corte Interamericana de Derechos Humanos" - ] - }, - { - "text": "VOTO INDIVIDUAL DEL JUEZ EDUARDO VIO GROSSI RESOLUICI\u00d3N DE LA CORTE INTERAMERICANA DE DERECHOS HUMANOS DE FEBRERO DE MEDIDAS PROVISIONALES RESPECTO DE HONDURAS ASUNTO PACHECO TERUEL Y OTROS Se extiende el presente voto individual con el prop\u00f3sito de dejar debida constancia que para el suscrito las presentes medidas provisionales se decretan en consideraci\u00f3n a que a juicio del suscrito el Estado se encuentra obligado a brindar protecci\u00f3n a la se\u00f1ora Ramos y sus hijas en virtud de la Sentencia ", - "values": [ - "Corte Interamericana de Derechos Humanos" - ] - }, - { - "text": "VOTO CONCURRENTE DEL JUEZ DIEGO GARC\u00cdASAY\u00c1N A LA RESOLUCI\u00d3N DE SUPERVISI\u00d3N DE CUMPLIMIENTO DE SENTENCIA DEL CASO SERVELL\u00d3N GARC\u00cdA Y OTROS VS. HONDURAS DE DE NOVIEMBRE DE La cuesti\u00f3n de la supervisi\u00f3n de cumplimiento de sus propias Sentencias por la Corte Interamericana de Derechos Humanos en adelante la Corte Interamericana la Corte o el Tribunal es una de las atribuciones m\u00e1s relevantes para la protecci\u00f3n de los derechos humanos. El Tribunal ejerce esta atribuci\u00f3n desde sus primeras y es ", - "values": [ - "Corte Interamericana de Derechos Humanos" - ] - }, - { - "text": "VOTO CONCURRENTE DEL JUEZ EDUARDO VIO GROSSI A LA RESOLUCI\u00d3N DE LA CORTE INTERAMERICANA DE DERECHOS HUMANOS DE DE NOVIEMBRE DE CASO SERVELL\u00d3N GARC\u00cdA Y OTROS VS. HONDURAS SUPERVISI\u00d3N DE CUMPLIMIENTO DE SENTENCIA. Introducci\u00f3n. El suscrito concurre con el presente voto a la Resoluci\u00f3n indicada en el t\u00edtulo en adelante la Resoluci\u00f3n en el entendido de que acorde a las normas pertinentes y en vista del extenso lapso y por ende m\u00e1s que prudente o razonable transcurrido desde la dictaci\u00f3n de la de", - "values": [ - "Corte Interamericana de Derechos Humanos" - ] - }, - { - "text": "VOTO DISIDENTE DEL JUEZ EDUARDO VIO GROSSI MEDIDAS PROVISIONALES RESPECTO DE HONDURAS CASO KAWAS FERN\u00c1NDEZ Se formula el presente voto disidente a la resoluci\u00f3n indicada en atenci\u00f3n a que por haberse dictado sentencia de fondo en autos ha operado la preclusi\u00f3n respecto de la facultad de la Corte Interamericana de Derechos Humanos en adelante la Corte de decretar nuevas medidas provisionales en la causa habiendo cesado por otra parte las ya ordenadas siendo empero su objeto y efectos asumidos ", - "values": [ - "Corte Interamericana de Derechos Humanos" - ] - }, - { - "text": "VOTO CONCURRENTE DE LOS JUECES DIEGO GARC\u00cdASAY\u00c1N LEONARDO A. FRANCO MANUEL VENTURA ROBLES MARGARETTE MAY MACAULAY Y RHADYS ABREU BLONDET MEDIDAS PROVISIONALES RESPECTO DE HONDURAS CASO KAWAS FERN\u00c1NDEZ La facultad de dictar medidas provisionales para evitar da\u00f1os irreparables a las personas en casos de extrema gravedad y urgencia es una de las competencias fundamentales de la Corte Interamericana de Derechos Humanos en adelante tambi\u00e9n la Corte Interamericana la Corte o el Tribunal. Est\u00e1 en el", - "values": [ - "Corte Interamericana de Derechos Humanos" - ] - }, - { - "text": "VOTO SEPARADO DEL JUEZ PIZA ESCALANTE He concurrido en el voto un\u00e1nime de la Corte y en la l\u00ednea general de su razonamiento pero tengo que separarme de la tesis recogida en los p\u00e1rrafos y en cuanto invocan la aplicabilidad inmediata y no meramente anal\u00f3gica del art\u00edculo de la Convenci\u00f3n que regula las solicitudes de interpretaci\u00f3n del fallo. En este sentido tengo que observar que esas solicitudes se articulan en la citada norma de la Convenci\u00f3n s\u00f3lo en relaci\u00f3n con el fallo es decir con la", - "values": [ - "Corte Interamericana de Derechos Humanos" - ] - }, - { - "text": "RESOLUCI\u00d3N DE LA CORTE INTERAMERICANA DE DERECHOS HUMANOS DE DE MAYO DE CASO PACHECO TERUEL Y OTROS VS. HONDURAS SUPERVISI\u00d3N DE CUMPLIMIENTO DE SENTENCIA VISTO La Sentencia de fondo reparaciones y costas en adelante la Sentencia dictada por la Corte Interamericana de Derechos Humanos en adelante la Corte Interamericana la Corte o el Tribunal el de abril de Tomando en cuenta el reconocimiento de responsabilidad efectuado por la Rep\u00fablica de Honduras en adelante el Estado u Honduras la Corte", - "values": [ - "Corte Interamericana de Derechos Humanos" - ] - }, - { - "text": "RESOLUCI\u00d3N DEL PRESIDENTE DE LA CORTE INTERAMERICANA DE DERECHOS HUMANOS DE DE FEBRERO DE CASO PACHECO LE\u00d3N Y OTROS VS. HONDURAS VISTO El escrito de sometimiento del caso y el Informe de Fondo de la Comisi\u00f3n Interamericana de Derechos Humanos en adelante tambi\u00e9n la Comisi\u00f3n Interamericana o la Comisi\u00f3n el escrito de solicitudes argumentos y pruebas en adelante tambi\u00e9n el escrito de solicitudes y argumentos de los representantes de las presuntas v\u00edctimas en adelante tambi\u00e9n los representantes", - "values": [ - "Corte Interamericana de Derechos Humanos" - ] - }, - { - "text": "RESOLUCI\u00d3N DE LA CORTE INTERAMERICANA DE DERECHOS HUMANOS DE DE NOVIEMBRE DE MEDIDAS PROVISIONALES RESPECTO DE HONDURAS ASUNTO GLADYS LANZA OCHOA VISTOS La Resoluci\u00f3n del entonces Presidente de la Corte Interamericana de Derechos Humanos en adelante la Corte Interamericana la Corte o el Tribunal emitida el de septiembre de y la Resoluci\u00f3n emitida por la Corte el de junio de mediante la cual el Tribunal resolvi\u00f3 inter alia Reiterar al Estado que contin\u00fae adoptando de forma inmediata las ", - "values": [ - "Corte Interamericana de Derechos Humanos" - ] - }, - { - "text": "RESOLUCI\u00d3N DE LA CORTE INTERAMERICANA DE DERECHOS HUMANOS DE DE NOVIEMBRE DE MEDIDAS PROVISIONALES RESPECTO HONDURAS ASUNTO JOS\u00c9 LUIS GALD\u00c1MEZ \u00c1LVAREZ Y OTROS VISTO La Resoluci\u00f3n del Presidente de la Corte Interamericana de Derechos Humanos en adelante la Corte Interamericana la Corte o el Tribunal de de diciembre de as\u00ed como las Resoluciones de la Corte de de febrero de y de octubre de mediante las cuales se orden\u00f3 la adopci\u00f3n de medidas provisionales en el presente asunto y se su ", - "values": [ - "Corte Interamericana de Derechos Humanos" - ] - }, - { - "text": "RESOLUCI\u00d3N DEL PRESIDENTE DE LA CORTE INTERAMERICANA DE DERECHOS HUMANOS DE DE ENERO DE SOLICITUD DE MEDIDAS PROVISIONALES RESPECTO DE LA REP\u00daBLICA DE COSTA RICA CASO AMRHEIN Y OTROS VS. COSTA RICA VISTO El escrito de sometimiento de de noviembre de mediante Comisi\u00f3n Interamericana de Derechos Humanos en adelante la Interamericana o la Comisi\u00f3n present\u00f3 a la Corte Interamericana de Humanos en adelante la Corte o el Tribunal el Caso Amrhein y otros Rica. el cual la Comisi\u00f3n Derechos Vs. ", - "values": [ - "Corte Interamericana de Derechos Humanos" - ] - }, - { - "text": "CORTE INTERAMERICANA DE DERECHOS HUMANOS CASO V\u00c1SQUEZ DURAND Y OTROS VS. ECUADOR SENTENCIA DE DE FEBRERO DE Excepciones Preliminares Fondo Reparaciones y Costas En el caso V\u00e1squez Durand y otros Vs. Ecuador la Corte Interamericana de Derechos Humanos en adelante la Corte Interamericana la Corte o este Tribunal integrada por los siguientes jueces Roberto F. Caldas Presidente Eduardo Ferrer MacGregor Poisot Vicepresidente Eduardo Vio Grossi Juez Humberto Antonio Sierra Porto Juez Elizabeth ", - "values": [ - "Corte Interamericana de Derechos Humanos" - ] - }, - { - "text": "VOTO CONCURRENTE DEL JUEZ AA. CAN\u00c7ADO TRINDADE Al votar a favor de la adopci\u00f3n de las presentes medidas provisionales de protecci\u00f3n mediante las cuales la Corte Interamericana de Derechos Humanos reitera que se mantengan las medidas provisionales de protecci\u00f3n por ella adoptadas en su anterior Resoluci\u00f3n del en el cas desp\u00e8ce en favor de los miembros del Pueblo Ind\u00edgena de Sarayaku en Ecuador me veo en la obligaci\u00f3n de dejar constancia en este Voto Concurrente de mis reflexiones personales ", - "values": [ - "Corte Interamericana de Derechos Humanos" - ] - }, - { - "text": "VOTO CONCURRENTE DEL JUEZ AA. CAN\u00c7ADO TRINDADE Al votar a favor de la adopci\u00f3n de las presentes Medidas Provisionales de Protecci\u00f3n mediante las cuales la Corte Interamericana de Derechos Humanos ordena que se extienda protecci\u00f3n a todos los miembros de las comunidades del Pueblo Ind\u00edgena de Sarayaku en Ecuador me veo en la obligaci\u00f3n de referirme a la construcci\u00f3n conceptual en que he estado empe\u00f1ado en el seno de la Corte Interamericana de las obligaciones erga omnes de protecci\u00f3n bajo la ", - "values": [ - "Corte Interamericana de Derechos Humanos" - ] - }, - { - "text": "VOTO RAZONADO CONCURRENTE DEL JUEZ SERGIO GARCIA RAMIREZ A LA RESOLUCION DE LA CORTE INTERAMERICANA DE DERECHOS HUMANOS SOBRE MEDIDAS PROVISIONALES EN EL CASO DEL PUEBLO INDIGENA DE SARAYAKU DE DE JULIO DE En los \u00faltimos a\u00f1os la jurisprudencia de la Corte Interamericana de Derechos Humanos que recibe la tradici\u00f3n de etapas precedentes y se beneficia de ella ha incorporado novedades en diversos temas relevantes. Los nuevos criterios de la Corte concurren a ensanchar el horizonte de la tutela ", - "values": [ - "Corte Interamericana de Derechos Humanos" - ] - }, - { - "text": "RESOLUCI\u00d3N DE LA CORTE INTERAMERICANA DE DERECHOS HUMANOS DE DE OCTUBRE DE CASO DE LA CORTE SUPREMA DE JUSTICIA QUINTANA COELLO Y OTROS VS. ECUADOR SUPERVISI\u00d3N DE CUMPLIMIENTO DE SENTENCIA VISTOS La Sentencia de excepci\u00f3n preliminar fondo reparaciones y costas en adelante la Sentencia o el Fallo dictada por la Corte Interamericana de Derechos Humanos en adelante la Corte la Corte Interamericana o el Tribunal el de agosto de La Corte tomando en cuenta el reconocimiento parcial de efectuado", - "values": [ - "Corte Interamericana de Derechos Humanos" - ] - }, - { - "text": "RESOLUCI\u00d3N DE LA CORTE INTERAMERICANA DE DERECHOS HUMANOS DE DE SEPTIEMBRE DE CASO ZAMBRANO V\u00c9LEZ Y OTROS VS. ECUADOR SUPERVISI\u00d3N DE CUMPLIMIENTO DE SENTENCIA VISTO La Sentencia de fondo reparaciones y costas en adelante la Sentencia o el Fallo dictada por la Corte Interamericana de Derechos Humanos en adelante la Corte la Corte Interamericana o el Tribunal el de julio de En ella la Corte declar\u00f3 la responsabilidad internacional de la Rep\u00fablica del Ecuador en adelante el Estado o Ecuador ", - "values": [ - "Corte Interamericana de Derechos Humanos" - ] - }, - { - "text": "CORTE INTERAMERICANA DE DERECHOS HUMANOS CASO FLOR FREIRE VS. ECUADOR SENTENCIA DE DE AGOSTO DE Excepci\u00f3n Preliminar Fondo Reparaciones y Costas En el caso Flor Freire la Corte Interamericana de Derechos Humanos en adelante la Corte Interamericana la Corte o este Tribunal integrada por los siguientes jueces Roberto F. Caldas Presidente Eduardo Ferrer MacGregor Poisot Vicepresidente Eduardo Vio Grossi Juez Humberto Antonio Sierra Porto Juez Elizabeth Odio Benito Jueza y Eugenio Ra\u00fal Zaffaroni", - "values": [ - "Corte Interamericana de Derechos Humanos" - ] - }, - { - "text": "RESOLUCI\u00d3N DE LA CORTE INTERAMERICANA DE DERECHOS HUMANOS DE DE ENERO DE CASO CHAPARRO \u00c1LVAREZ Y LAPO \u00cd\u00d1IGUEZ VS. ECUADOR SUPERVISI\u00d3N DE CUMPLIMIENTO DE SENTENCIA VISTO La Sentencia de excepciones preliminares fondo reparaciones y costas en adelante la Sentencia y la Sentencia sobre la solicitud de interpretaci\u00f3n de esta \u00faltima dictadas en el presente caso por la Corte Interamericana de Derechos Humanos en adelante la Corte Interamericana la Corte o el Tribunal respectivamente los d\u00edas de ", - "values": [ - "Corte Interamericana de Derechos Humanos" - ] - }, - { - "text": "RESOLUCI\u00d3N DEL PRESIDENTE DE LA CORTE INTERAMERICANA DE DERECHOS HUMANOS DE DE OCTUBRE DE FONDO DE ASISTENCIA LEGAL DE V\u00cdCTIMAS CASO GONZ\u00c1LES LLUY TGGL Y FAMILIA VS. ECUADOR VISTO El escrito de de marzo de y sus anexos mediante los cuales la Comisi\u00f3n Interamericana de Derechos Humanos en adelante tambi\u00e9n la Comisi\u00f3n Interamericana o la Comisi\u00f3n someti\u00f3 ante la Corte Interamericana de Derechos Humanos en adelante la Corte Interamericana la Corte o el Tribunal el presente caso. El escrito ", - "values": [ - "Corte Interamericana de Derechos Humanos" - ] - }, - { - "text": "CORTE INTERAMERICANA DE DERECHOS HUMANOS CASO DE LA CORTE SUPREMA DE JUSTICIA QUINTANA COELLO Y OTROS VS. ECUADOR SENTENCIA DE DE AGOSTO DE Interpretaci\u00f3n de la Sentencia de Excepci\u00f3n Preliminar Fondo Reparaciones y Costas En el caso de la Corte Suprema de Justicia Quintana Coello y otros la Corte Interamericana de Derechos Humanos en adelante la Corte Interamericana la Corte o el Tribunal integrada por los siguientes jueces Humberto Antonio Sierra Porto Presidente Roberto F. Caldas Manuel ", - "values": [ - "Corte Interamericana de Derechos Humanos" - ] - }, - { - "text": "RESOLUCI\u00d3N DE LA CORTE INTERAMERICANA DE DERECHOS HUMANOS DE DE MARZO DE MEDIDAS PROVISIONALES RESPECTO DE ECUADOR ASUNTO RESPECTO A DOS NI\u00d1AS DEL PUEBLO IND\u00cdGENA TAROMENANE EN AISLAMIENTO VOLUNTARIO VISTO El escrito de la Comisi\u00f3n Interamericana de Derechos Humanos en adelante la Comisi\u00f3n Interamericana o la Comisi\u00f3n de de enero de y sus anexos mediante los cuales someti\u00f3 a la Corte Interamericana de Derechos Humanos en adelante la Corte Interamericana la Corte o el Tribunal una solicitud", - "values": [ - "Corte Interamericana de Derechos Humanos" - ] - }, - { - "text": "RESOLUCI\u00d3N DE LA CORTE INTERAMERICANA DE DERECHOS HUMANOS DE DE OCTUBRE DE CASO SALVADOR CHIRIBOGA VS. ECUADOR SUPERVISI\u00d3N DE CUMPLIMIENTO DE SENTENCIA VISTO La Sentencia de excepci\u00f3n preliminar y fondo dictada por la Corte Interamericana de Derechos Humanos en adelante la Corte o el Tribunal el de mayo de La Sentencia de reparaciones y costas en adelante la Sentencia o el Fallo dictada por la Corte Interamericana el de marzo de mediante la cual dispuso que El Estado debe pagar a la ", - "values": [ - "Corte Interamericana de Derechos Humanos" - ] - }, - { - "text": "RESOLUCION DEL PRESIDENTE DE LA CORTE INTERAMERICANA DE DERECHOS HUMANOS DE DE ENERO DE CASO PALMA MENDOZA Y OTROS VS. ECUADOR VISTO El escrito de sometimiento del caso de de febrero de y sus anexos recibidos el de marzo de presentados por la Comisi\u00f3n Interamericana de Derechos Humanos en adelante la Comisi\u00f3n Interamericana o la Comisi\u00f3n ante la Corte Interamericana de Derechos Humanos en adelante la Corte Interamericana o la Corte o el Tribunal contra la Rep\u00fablica del Ecuador en el o ", - "values": [ - "Corte Interamericana de Derechos Humanos" - ] - }, - { - "text": "Corte Interamericana de Derechos Humanos Caso Chaparro \u00c1lvarez y Lapo \u00cd\u00f1iguez vs. Ecuador Sentencia de de noviembre de Interpretaci\u00f3n de la Sentencia de Excepciones Preliminares Fondo Reparaciones y Costas En el caso Chaparro \u00c1lvarez y Lapo \u00cd\u00f1iguez la Corte Interamericana de Derechos Humanos en adelante la Corte Interamericana la Corte o el Tribunal integrada por los siguientes jueces Sergio Garc\u00eda Ram\u00edrez Presidente Cecilia Medina Quiroga Vicepresidenta Manuel E. Ventura Robles Juez Diego ", - "values": [ - "Corte Interamericana de Derechos Humanos" - ] - }, - { - "text": "RESOLUCI\u00d3N DEL PRESIDENTE DE LA CORTE INTERAMERICANA DE DERECHOS HUMANOS DE DE JULIO DE CASO CARVAJAL CARVAJAL Y FAMILIA VS. COLOMBIA CONVOCATORIA A AUDIENCIA VISTO El escrito de sometimiento del caso y el Informe de Fondo de la Comisi\u00f3n Interamericana de Derechos Humanos en adelante la Comisi\u00f3n Interamericana o la Comisi\u00f3n el escrito de solicitudes argumentos y pruebas en adelante el escrito de solicitudes y argumentos de los representantes de las presuntas v\u00edctimas en adelante los y el ", - "values": [ - "Corte Interamericana de Derechos Humanos" - ] - }, - { - "text": "RESOLUCI\u00d3N DEL PRESIDENTE DE CORTE INTERAMERICANA DE DERECHOS HUMANOS DE DE JUNIO DE MEDIDAS PROVISIONALES RESPECTO DE LA REP\u00daBLICA DE COLOMBIA ASUNTO COMUNIDAD DE PAZ DE SAN JOS\u00c9 DE APARTAD\u00d3 VISTOS Las Resoluciones de la Corte Interamericana de de octubre de de noviembre de de junio de de noviembre de de marzo de de febrero de de diciembre de de febrero de y de agosto de En esta \u00faltima Resoluci\u00f3n la Corte resolvi\u00f3 inter alia Reiterar al Estado que mantenga las medidas que", - "values": [ - "Corte Interamericana de Derechos Humanos" - ] - }, - { - "text": "RESOLUCI\u00d3N DE LA CORTE INTERAMERICANA DE DERECHOS HUMANOS DE DE MAYO DE CASO OMEARA CARRASCAL Y OTROS VS. COLOMBIA VISTO La Resoluci\u00f3n del Presidente de la Corte Interamericana de Derechos Humanos en adelante el Presidente de de abril de en adelante la Resoluci\u00f3n del Presidente mediante la cual inter alia orden\u00f3 la recepci\u00f3n de diversas declaraciones de presuntas v\u00edctimas testimoniales y periciales mediante affid\u00e1vit y convoc\u00f3 a la Comisi\u00f3n Interamericana de Derechos Humanos en adelante ", - "values": [ - "Corte Interamericana de Derechos Humanos" - ] - }, - { - "text": "RESOLUCI\u00d3N DEL PRESIDENTE DE LA CORTE INTERAMERICANA DE DERECHOS HUMANOS DE DE MAYO DE FONDO DE ASISTENCIA LEGAL DE V\u00cdCTIMAS CASO ISAZA URIBE Y OTROS VS. COLOMBIA VISTO El escrito de de abril de y sus anexos recibidos el d\u00eda de los mismos mes y a\u00f1o mediante los cuales la Comisi\u00f3n Interamericana de Derechos Humanos en adelante la Comisi\u00f3n Interamericana o la Comisi\u00f3n someti\u00f3 ante la Corte Interamericana de Derechos Humanos en adelante la Corte Interamericana la Corte o el Tribunal el caso.", - "values": [ - "Corte Interamericana de Derechos Humanos" - ] - }, - { - "text": "RESOLUCI\u00d3N DEL PRESIDENTE DE LA CORTE INTERAMERICANA DE DERECHOS HUMANOS DE DE ABRIL DE CASO OMEARA CARRASCAL Y OTROS VS. COLOMBIA CONVOCATORIA A AUDIENCIA VISTO El escrito de sometimiento del caso y el Informe de Fondo de la Comisi\u00f3n Interamericana de Derechos Humanos en adelante la Comisi\u00f3n Interamericana o la Comisi\u00f3n el escrito de solicitudes argumentos y pruebas en adelante escrito de solicitudes y argumentos de los representantes de las presuntas v\u00edctimas en adelante los representantes", - "values": [ - "Corte Interamericana de Derechos Humanos" - ] - }, - { - "text": "RESOLUCI\u00d3N DE LA CORTE INTERAMERICANA DE DERECHOS HUMANOS DE DE FEBRERO DE MEDIDAS PROVISIONALES CASO DE LA MASACRE DE LA ROCHELA Vs. COLOMBIA VISTO La Resoluci\u00f3n de la Corte Interamericana de Derechos Humanos en adelante la Corte Interamericana o la Corte o el Tribunal de de noviembre de en la que resolvi\u00f3 inter alia a Requerir al Estado que adopte de forma inmediata las medidas que sean necesarias para proteger la vida e integridad personal de las se\u00f1oras Paola Mart\u00ednez Ortiz Luz Nelly ", - "values": [ - "Corte Interamericana de Derechos Humanos" - ] - }, - { - "text": "RESOLUCI\u00d3N DE LA CORTE INTERAMERICANA DE DERECHOS HUMANOS DE DE FEBRERO DE CASO RODR\u00cdGUEZ VERA Y OTROS DESAPARECIDOS DEL PALACIO DE JUSTICIA VS. COLOMBIA SUPERVISI\u00d3N DE CUMPLIMIENTO DE SENTENCIA VISTO La Sentencia de excepciones preliminares fondo reparaciones y costas en adelante la Sentencia dictada por la Corte Interamericana de Derechos Humanos en adelante la Corte Interamericana la Corte o el Tribunal el de noviembre de Tomando en cuenta el reconocimiento parcial de responsabilidad ", - "values": [ - "Corte Interamericana de Derechos Humanos" - ] - }, - { - "text": "RESOLUCI\u00d3N DEL PRESIDENTE DE LA CORTE INTERAMERICANA DE DERECHOS HUMANOS DE DE OCTUBRE DE REINTEGRO AL FONDO DE ASISTENCIA LEGAL DE V\u00cdCTIMAS CASO DUQUE VS. COLOMBIA VISTO La Sentencia de excepciones preliminares fondo reparaciones y costas en adelante la Sentencia emitida por la Corte Interamericana de Derechos Humanos en adelante la Corte la Corte Interamericana o el Tribunal el de febrero de La Corte determin\u00f3 que la Rep\u00fablica de Colombia en adelante el Estado o Colombia incurri\u00f3 en ", - "values": [ - "Corte Interamericana de Derechos Humanos" - ] - }, - { - "text": "CORTE INTERAMERICANA DE DERECHOS HUMANOS CASO MASACRE DE SANTO DOMINGO VS. COLOMBIA SENTENCIA DE DE AGOSTO DE Solicitud de Interpretaci\u00f3n de la Sentencia sobre Excepciones Preliminares Fondo Reparaciones y Costas En el caso Masacre de Santo Domingo la Corte Interamericana de Derechos Humanos en adelante la Corte Interamericana la Corte o el Tribunal integrada por los siguientes Jueces Diego Garc\u00edaSay\u00e1n Presidente Leonardo A. Franco Juez Margarette May Macaulay Jueza Rhadys Abreu Blondet ", - "values": [ - "Corte Interamericana de Derechos Humanos" - ] - }, - { - "text": "RESOLUCI\u00d3N DEL PRESIDENTE DE LA CORTE INTERAMERICANA DE DERECHOS HUMANOS DE DE DICIEMBRE DE CASO MARINO L\u00d3PEZ Y OTROS OPERACI\u00d3N G\u00c9NESIS VS. COLOMBIA VISTO El escrito de sometimiento del caso presentado por la Comisi\u00f3n Interamericana de Derechos Humanos en adelante tambi\u00e9n la Comisi\u00f3n Interamericana o la Comisi\u00f3n ante la Corte Interamericana de Derechos Humanos en adelante la Corte Interamericana la Corte o el Tribunal el de julio de mediante el cual ofreci\u00f3 tres dict\u00e1menes periciales sobre", - "values": [ - "Corte Interamericana de Derechos Humanos" - ] - }, - { - "text": "RESOLUCI\u00d3N DEL PRESIDENTE DE LA CORTE INTERAMERICANA DE DERECHOS HUMANOS DE FEBRERO DE SUPERVISI\u00d3N DE CUMPLIMIENTO DE LAS MEDIDAS DE REPARACI\u00d3N SOBRE ATENCI\u00d3N M\u00c9DICA Y PSICOL\u00d3GICA ORDENADAS EN NUEVE CASOS COLOMBIANOS CONVOCATORIA DE AUDIENCIA PRIVADA VISTO La resoluci\u00f3n de convocatoria de audiencia en el marco de la supervisi\u00f3n de cumplimiento emitida por la Corte Interamericana de Derechos Humanos en adelante la Corte la Corte Interamericana o el Tribunal el de abril de en relaci\u00f3n con ", - "values": [ - "Corte Interamericana de Derechos Humanos" - ] - }, - { - "text": "CORTE INTERAMERICANA DE DERECHOS HUMANOS CASO ESCU\u00c9 ZAPATA VS. COLOMBIA SENTENCIA DE DE MAYO DE INTERPRETACI\u00d3N DE LA SENTENCIA DE FONDO REPARACIONES Y COSTAS En el caso Escu\u00e9 Zapata la Corte Interamericana de Derechos Humanos en adelante la Corte Interamericana la Corte o el Tribunal integrada por los siguientes jueces Sergio Garc\u00eda Ram\u00edrez Presidente Cecilia Medina Quiroga Vicepresidenta Manuel E. Ventura Robles Juez Diego Garc\u00edaSay\u00e1n Juez Leonardo A. Franco Juez Margarette May Macaulay ", - "values": [ - "Corte Interamericana de Derechos Humanos" - ] - }, - { - "text": "DEL VOTO Concurrente JUEZ AD HOC DIEGO EDUARDO L\u00d3PEZ MEDINA A LA SENTENCIA DE DE MAYO DE EN EL CASO ESCU\u00c9 ZAPATA VS. COLOMBIA Concurr\u00ed con mi voto a la decisi\u00f3n un\u00e1nime que la Corte tom\u00f3 en la Interpretaci\u00f3n de Sentencia en el caso Escu\u00e9 Zapata vs. Colombia. Aunque no tengo reserva alguna con la decisi\u00f3n tomada considero \u00fatil hacer algunas anotaciones que pueden ayudar a clarificar mi opini\u00f3n sobre dos puntos all\u00ed discutidos. I. Respecto a la divulgaci\u00f3n p\u00fablica de los resultados penales ", - "values": [ - "Corte Interamericana de Derechos Humanos" - ] - }, - { - "text": "Corte Interamericana de Derechos Humanos Caso de la masacre de La Rochela vs. Colombia Sentencia de de enero de Interpretaci\u00f3n de la Sentencia de Fondo Reparaciones y Costas En el caso de la masacre de La Rochela la Corte Interamericana de Derechos Humanos en adelante la Corte Interamericana la Corte o el Tribunal integrada por los siguientes jueces Sergio Garc\u00eda Ram\u00edrez Presidente Cecilia Medina Quiroga Vicepresidenta Manuel E. Ventura Robles Juez Diego Garc\u00edaSay\u00e1n Juez Leonardo A. Franco ", - "values": [ - "Corte Interamericana de Derechos Humanos" - ] - }, - { - "text": "Resoluci\u00f3n de la Corte Interamericana de Derechos Humanos de de noviembre de Caso Valle Jaramillo y otros vs. Colombia VISTO El escrito de demanda presentado por la Comisi\u00f3n Interamericana de Derechos Humanos en adelante la Comisi\u00f3n Interamericana o la Comisi\u00f3n ante la Corte Interamericana de Derechos Humanos en adelante la Corte Interamericana la Corte o el Tribunal el de febrero de mediante el cual ofreci\u00f3 cinco testigos. El escrito de solicitudes argumentos y pruebas en adelante de y", - "values": [ - "Corte Interamericana de Derechos Humanos" - ] - }, - { - "text": "Corte Interamericana de Derechos Humanos Caso de la Masacre de Pueblo Bello Vs. Colombia Sentencia de de noviembre de Interpretaci\u00f3n de la Sentencia de Fondo Reparaciones y Costas En el caso de Masacre de Pueblo Bello vs. Colombia la Corte Interamericana de Derechos Humanos en adelante la Corte Interamericana la Corte o el Tribunal integrada por los siguientes jueces Sergio Garc\u00eda Ram\u00edrez Presidente Alirio Abreu Burelli Vicepresidente Ant\u00f4nio A. Can\u00e7ado Trindade Juez Cecilia Medina Quiroga ", - "values": [ - "Corte Interamericana de Derechos Humanos" - ] - }, - { - "text": "VOTO CONCURRENTE DEL JUEZ AA. CAN\u00c7ADO TRINDADE Al votar a favor de la adopci\u00f3n de las presentes Medidas Provisionales de Protecci\u00f3n mediante las cuales la Corte Interamericana de Derechos Humanos ordena que se extienda protecci\u00f3n a todos los miembros de las comunidades del Pueblo Ind\u00edgena Kankuamo en Colombia me veo en la obligaci\u00f3n de retomar la construcci\u00f3n conceptual en que he estado empe\u00f1ado en el seno de la Corte Interamericana de las obligaciones erga omnes de protecci\u00f3n bajo la No es ", - "values": [ - "Corte Interamericana de Derechos Humanos" - ] - }, - { - "text": "VOTO RAZONADO CONCURRENTE DEL JUEZ SERGIO GARCIA RAMIREZ A LA RESOLUCION DE LA CORTE INTERAMERICANA DE DERECHOS HUMANOS SOBRE MEDIDAS PROVISIONALES EN EL CASO DEL PUEBLO INDIGENA KANKUAMO DEL DE JULIO DE En los \u00faltimos a\u00f1os la jurisprudencia de la Corte Interamericana de Derechos Humanos que recibe la tradici\u00f3n de etapas precedentes y se beneficia de ella ha incorporado novedades en diversos temas relevantes. Los nuevos criterios de la Corte concurren a ensanchar el horizonte de la tutela de", - "values": [ - "Corte Interamericana de Derechos Humanos" - ] - }, - { - "text": "VOTO CONCURRENTE DE LOS JUECES SERGIO GARCIA RAMIREZ Y ALIRIO ABREU BURELLI La jurisprudencia de la Corte Interamericana de Derechos Humanos ha experimentado una apreciable evoluci\u00f3n en cuanto al alcance subjetivo de las medidas provisionales adoptadas por dicho Tribunal. Esta evoluci\u00f3n sirve adecuadamente a los importantes prop\u00f3sitos que se pretende atender a trav\u00e9s de las medidas provisionales. En nuestro voto concurrente a la Resoluci\u00f3n sobre Medidas Provisionales en el caso de la Comunidad ", - "values": [ - "Corte Interamericana de Derechos Humanos" - ] - }, - { - "text": "RESOLUCI\u00d3N DE LA CORTE INTERAMERICANA DE DERECHOS HUMANOS DE DE MARZO DE MEDIDAS PROVISIONALES SOLICITADAS POR LA COMISI\u00d3N INTERAMERICANA DE DERECHOS HUMANOS RESPECTO DE LA REP\u00daBLICA DE COLOMBIA CASO DE LAS COMUNIDADES DEL JIGUAMIAND\u00d3 Y DEL CURBARAD\u00d3 VISTOS El escrito de la Comisi\u00f3n Interamericana de Derechos Humanos en adelante la Comisi\u00f3n o la Comisi\u00f3n Interamericana de de marzo de mediante el cual someti\u00f3 a la Corte Interamericana de Derechos Humanos en adelante la Corte o la Corte de", - "values": [ - "Corte Interamericana de Derechos Humanos" - ] - }, - { - "text": "VOTO DISIDENTE DEL JUEZ A. A. CAN\u00c7ADO TRINDADE Lamento no poder compartir la decisi\u00f3n tomada por la mayor\u00eda de la Corte en el punto resolutivo n. y el criterio por \u00e9sta adoptado en los p\u00e1rrafos de la presente Sentencia sobre reparaciones en el caso Caballero Delgado y Santana en el sentido de abstenerse la Corte de proceder a una revisi\u00f3n de las disposiciones pertinentes de la legislaci\u00f3n interna colombiana en cuanto al recurso del habeas corpus para determinar su compatibilidad o no con la ", - "values": [ - "Corte Interamericana de Derechos Humanos" - ] - }, - { - "text": "CORTE INTERAMERICANA DE DERECHOS HUMANOS COUR INTERAMERICAINE DES DROITS DE LHOMME A CORTE INTERAMERICANA DE DIREITOS HUMANOS INTERAMERICAN COURT OF HUMAN RIGHTS PRESIDENTE DE LA CORTE Resolucion de la Presidenta de la Corte Interamericana de Derechos Humanos de de diciembre de Caso Cepeda Vargas vs Colombia Visto EI escrito de demanda presentado el de noviembre de por la Comision Interamericana de Derechos Humanos en adelante Ia Comision Interamericana Ia Comision ante la Corte de en ", - "values": [ - "Corte Interamericana de Derechos Humanos" - ] - }, - { - "text": "CORTE INTERAMERICANA DE DERECHOS HUMANOS CASO GRANIER Y OTROS RADIO CARACAS TELEVISI\u00d3N VS. VENEZUELA SENTENCIA DE DE JUNIO DE Excepciones Preliminares Fondo Reparaciones y Costas En el caso Granier y otros Radio Caracas Televisi\u00f3n la Corte Interamericana de Derechos Humanos en adelante la Corte Interamericana la Corte o este Tribunal integrada por los siguientes jueces Humberto Antonio Sierra Porto Presidente Roberto F. Caldas Vicepresidente Manuel E. Ventura Robles Juez Diego Garc\u00edaSay\u00e1n ", - "values": [ - "Corte Interamericana de Derechos Humanos" - ] - }, - { - "text": "VOTO INDIVIDUAL DO JUIZ ROBERTO DE FIGUEIREDO CALDAS CORTE INTERAMERICANA DE DIREITOS HUMANOS CASO GRANIER E OUTROS RADIO CARACAS TELEVISI\u00d3N VS. REP\u00daBLICA BOLIVARIANA DE VENEZUELA SENTEN\u00c7A DE DE JUNHO DE EXCE\u00c7\u00d5ES PRELIMINARES M\u00c9RITO REPARA\u00c7\u00d5ES E CUSTAS I. Introdu\u00e7\u00e3o Este voto parcialmente dissidente com algumas fundamenta\u00e7\u00f5es e conclus\u00f5es pontuais manifestadas pela maioria dos honor\u00e1veis ju\u00edzes desta Corte Interamericana na presente senten\u00e7a tem como objetivo esclarecer e enfatizar aspectos ", - "values": [ - "Corte Interamericana de Derechos Humanos" - ] - }, - { - "text": "VOTO PARCIALMENTE DISIDENTE DEL JUEZ EDUARDO FERRER MACGREGOR POISOT CASO GRANIER Y OTROS RADIO CARACAS TELEVISI\u00d3N VS. VENEZUELA SENTENCIA DE DE JUNIO DE Excepciones Preliminares Fondo Reparaciones y Costas INTRODUCCI\u00d3N El presente caso pone de relieve la importancia de la libertad de pensamiento y expresi\u00f3n en una sociedad democr\u00e1tica misma que fuera destacada hace tres d\u00e9cadas por la Corte Interamericana de Derechos Humanos en adelante Corte IDH o Tribunal Interamericano en su Opini\u00f3n OC ", - "values": [ - "Corte Interamericana de Derechos Humanos" - ] - }, - { - "text": "VOTO CONCURRENTE DEL JUEZ DIEGO GARCIASAY\u00c1N SENTENCIA DE LA CORTE INTERAMERICANA DE DERECHOS HUMANOS CASO GRANIER Y OTROS RADIO CARACAS TELEVISI\u00d3N VS. VENEZUELA SENTENCIA DE DE JUNIO DE Excepciones Preliminares Fondo Reparaciones y Costas En esta sentencia la Corte reafirma y desarrolla principios fundamentales acerca de la libertad de expresi\u00f3n en su relaci\u00f3n con el pluralismo democr\u00e1tico y el correspondiente deber de garantizar por parte de los Estados en diversos aspectos incluido el tema", - "values": [ - "Corte Interamericana de Derechos Humanos" - ] - }, - { - "text": "VOTO PARCIALMENTE DISIDENTE DEL JUEZ ALBERTO P\u00c9REZ P\u00c9REZ CASO GRANIER Y OTROS RADIO CARACAS TELEVISI\u00d3N VS. VENEZUELA SENTENCIA DE DE JUNIO DE Excepciones Preliminares Fondo Reparaciones y Costas He votado negativamente los puntos declarativos y y los puntos dispositivos y por las razones que expongo a continuaci\u00f3n. I. Libertad de empresa y no libertad de expresi\u00f3n El punto central de discrepancia radica en el punto en el que se declara una violaci\u00f3n de los art\u00edculos y en relaci\u00f3n con", - "values": [ - "Corte Interamericana de Derechos Humanos" - ] - }, - { - "text": "VOTO INDIVIDUAL CONCURRENTE DEL JUEZ EDUARDO VIO GROSSI CASO GRANIER Y OTROS RADIO CARACAS TELEVISI\u00d3N VS. VENEZUELA SENTENCIA DE DE JUNIO DE Excepciones Preliminares Fondo Reparaciones y Costas INTRODUCCI\u00d3N. Se emite el presente voto concurrente respecto de la Sentencia indicada en el t\u00edtulo a los efectos de resaltar algunos aspectos de la misma concernientes a la Carta Democr\u00e1tica Interamericana y en relaci\u00f3n a \u00e9sta a la independencia judicial y muy especialmente a la libertad de pensamiento", - "values": [ - "Corte Interamericana de Derechos Humanos" - ] - }, - { - "text": "VOTO DISIDENTE DEL JUEZ MANUEL E. VENTURA ROBLES CASO GRANIER Y OTROS RADIO CARACAS TELEVISI\u00d3N VS. VENEZUELA SENTENCIA DE DE JUNIO DE Excepciones Preliminares Fondo Reparaciones y Costas He salvado mi voto en los puntos resolutivos y de la sentencia en el caso Granier y otros Radio Caracas Televisi\u00f3n vs. Venezuela porque de no hacerlo en mi opini\u00f3n no se reparar\u00eda en la contradicci\u00f3n en que se ha incurrido entre este caso y otros dictados por esta Corte contra el Estado de Venezuela en ", - "values": [ - "Corte Interamericana de Derechos Humanos" - ] - }, - { - "text": "RESOLUCI\u00d3N DEL PRESIDENTE DE LA CORTE INTERAMERICANA DE DERECHOS HUMANOS DE DE ABRIL DE CASO GRANIER Y OTROS RADIO CARACAS TELEVISI\u00d3N VS. VENEZUELA VISTO El escrito de sometimiento del caso contra la Rep\u00fablica Bolivariana de Venezuela en adelante el Estado o Venezuela presentado el de marzo de por la Comisi\u00f3n Interamericana de Derechos Humanos en adelante la Comisi\u00f3n Interamericana o la Comisi\u00f3n ante la Corte Interamericana de Derechos Humanos en adelante la Corte Interamericana la Corte o", - "values": [ - "Corte Interamericana de Derechos Humanos" - ] - }, - { - "text": "RESOLUCI\u00d3N DE LA CORTE INTERAMERICANA DE DERECHOS HUMANOS DE FEBRERO DE CASO GRANIER Y OTROS RADIO CARACAS TELEVISI\u00d3N VS. VENEZUELA VISTO El escrito de la Rep\u00fablica Bolivariana de Venezuela en adelante el Estado o Venezuela recibido el de diciembre de en la Corte Interamericana de Derechos Humanos en adelante la Corte Interamericana la Corte o el Tribunal mediante el cual inter alia present\u00f3 una recusaci\u00f3n contra los Jueces Diego Garc\u00edaSay\u00e1n y Manuel E. Ventura Robles. CONSIDERANDO QUE ", - "values": [ - "Corte Interamericana de Derechos Humanos" - ] - }, - { - "text": "RESOLUCI\u00d3N DE LA CORTE INTERAMERICANA DE DERECHOS HUMANOS DE DE FEBRERO DE MEDIDAS PROVISIONALES LUIS UZC\u00c1TEGUI vs. VENEZUELA VISTOS La Resoluci\u00f3n de la Corte Interamericana de Derechos Humanos en adelante la Corte la Corte Interamericana o el Tribunal de de noviembre de relativa a las Medidas Provisionales solicitadas por la Comisi\u00f3n Interamericana de Derechos Humanos en adelante la Comisi\u00f3n o la Comisi\u00f3n Interamericana en favor de Luis Enrique Uzc\u00e1tegui Jim\u00e9nez mediante la cual resolvi\u00f3", - "values": [ - "Corte Interamericana de Derechos Humanos" - ] - }, - { - "text": "Corte Interamericana de Derechos Humanos Caso El Amparo Vs. Venezuela Resoluci\u00f3n de la Corte de de abril de Interpretaci\u00f3n de la Sentencia de Reparaciones y Costas VISTOS La sentencia de la Corte Interamericana de Derechos Humanos en adelante la Corte de de septiembre de sobre reparaciones en el caso El Amparo. El escrito de de febrero de dirigido a la Corte por la Comisi\u00f3n Interamericana de Derechos Humanos en adelante la Comisi\u00f3n en el cual asume como suya la solicitud de los de los ", - "values": [ - "Corte Interamericana de Derechos Humanos" - ] - }, - { - "text": "VOTO DISIDENTE DEL JUEZ A. A. CAN\u00c7ADO TRINDADE Entiendo que los representantes de los familiares de las v\u00edctimas en el caso El Amparo juntamente con la Comisi\u00f3n Interamericana de Derechos Humanos est\u00e1n plenamente capacitados a solicitar a la Corte una interpretaci\u00f3n o aclaraci\u00f3n de su Sentencia de Reparaciones dictada el de septiembre de como tambi\u00e9n lo estar\u00eda el Estado demandado. Lamento no encontrar elementos de convicci\u00f3n que me permitan tras un reexamen de los autos del proceso la de ", - "values": [ - "Corte Interamericana de Derechos Humanos" - ] - }, - { - "text": "VOTO CONCURRENTE DEL JUEZ MONTIEL ARG\u00dcELLO He concurrido con mi voto a la aprobaci\u00f3n de la Resoluci\u00f3n que antecede mas me considero obligado a hacer algunas precisiones. En mi opini\u00f3n la solicitud de la Comisi\u00f3n y de los representantes de las v\u00edctimas es notoriamente improcedente ya que el \u00fanico recurso que permite la Convenci\u00f3n contra las sentencias de la Corte Interamericana es el de interpretaci\u00f3n y en la solicitud no se pide una interpretaci\u00f3n de la sentencia de de septiembre de pues no ", - "values": [ - "Corte Interamericana de Derechos Humanos" - ] - }, - { - "text": "RESOLUCI\u00d3N DEL PRESIDENTE EN EJERCICIO DE LA CORTE INTERAMERICANA DE DERECHOS HUMANOS DE DE JULIO DE FONDO DE ASISTENCIA LEGAL DE V\u00cdCTIMAS CASO CUSCUL PIVARAL Y OTROS VS. GUATEMALA VISTO El escrito de de diciembre de y sus anexos mediante los cuales la Comisi\u00f3n Interamericana de Derechos Humanos en adelante la Comisi\u00f3n Interamericana o la Comisi\u00f3n someti\u00f3 ante la Corte Interamericana de Derechos Humanos en adelante la Corte Interamericana la Corte o el Tribunal el presente caso. El de ", - "values": [ - "Corte Interamericana de Derechos Humanos" - ] - }, - { - "text": " RESOLUCI\u00d3N DE LA CORTE INTERAMERICANA DE DERECHOS HUMANOS DE DE MAYO DE CASO MASACRE DE PLAN DE S\u00c1NCHEZ VS. GUATEMALA SUPERVISI\u00d3N DE CUMPLIMIENTO DE SENTENCIA VISTO La Sentencia de fondo en adelante la Sentencia de fondo emitida por la Corte Interamericana de Derechos Humanos en adelante la Corte la Corte Interamericana o el Tribunal el de abril de y la Sentencia de reparaciones en adelante la Sentencia emitida por el Tribunal el de noviembre de El caso se refiere a los hechos el de", - "values": [ - "Corte Interamericana de Derechos Humanos" - ] - }, - { - "text": "RESOLUCI\u00d3N DE LA CORTE INTERAMERICANA DE DERECHOS HUMANOS DE DE MAYO DE CASO MASACRES DE R\u00cdO NEGRO VS. GUATEMALA SUPERVISI\u00d3N DE CUMPLIMIENTO DE SENTENCIA VISTO La Sentencia de Excepci\u00f3n Preliminar Fondo Reparaciones y Costas emitida el de septiembre de en adelante la Sentencia por la Corte Interamericana de Derechos Humanos en adelante la Corte Interamericana la Corte o el Tribunal En dicho fallo la Corte tomando en cuenta el reconocimiento de responsabilidad parcial efectuado por la de ", - "values": [ - "Corte Interamericana de Derechos Humanos" - ] - }, - { - "text": "RESOLUCI\u00d3N DEL PRESIDENTE DE LA CORTE INTERAMERICANA DE DERECHOS HUMANOS DE DE ABRIL DE CASO RAM\u00cdREZ ESCOBAR Y OTROS VS. GUATEMALA VISTO El escrito de sometimiento del caso y el Informe de Fondo de la Comisi\u00f3n Interamericana de Derechos Humanos en adelante la Comisi\u00f3n Interamericana o la Comisi\u00f3n el escrito de solicitudes argumentos y pruebas en adelante el escrito de solicitudes y argumentos de los representantes de las presuntas v\u00edctimas en adelante los representantes el escrito de al ", - "values": [ - "Corte Interamericana de Derechos Humanos" - ] - }, - { - "text": "CORTE INTERAMERICANA DE DERECHOS HUMANOS CASO MIEMBROS DE LA ALDEA CHICHUPAC Y COMUNIDADES VECINAS DEL MUNICIPIO DE RABINAL VS. GUATEMALA SENTENCIA DE DE NOVIEMBRE DE Excepciones Preliminares Fondo Reparaciones y Costas En el caso Miembros de la Aldea Chichupac y Comunidades Vecinas del Municipio de Rabinal la Corte Interamericana de Derechos Humanos en adelante la Corte Interamericana la Corte o el Tribunal integrada por los siguientes jueces Roberto F. Caldas Presidente Eduardo Ferrer ", - "values": [ - "Corte Interamericana de Derechos Humanos" - ] - }, - { - "text": "RESOLUCI\u00d3N DE LA CORTE INTERAMERICANA DE DERECHOS HUMANOS DE DE NOVIEMBRE DE CASO DEFENSOR DE DERECHOS HUMANOS Y OTROS VS. GUATEMALA SUPERVISI\u00d3N DE CUMPLIMIENTO DE SENTENCIA VISTO La Sentencia de excepciones preliminares fondo reparaciones y costas en adelante la Sentencia dictada por la Corte Interamericana de Derechos Humanos en adelante la Corte la Corte Interamericana o este Tribunal el de agosto de La Corte declar\u00f3 responsable internacionalmente a la Rep\u00fablica de Guatemala en el o", - "values": [ - "Corte Interamericana de Derechos Humanos" - ] - }, - { - "text": "RESOLUCI\u00d3N DEL PRESIDENTE DE LA CORTE INTERAMERICANA DE DERECHOS HUMANOS DE DE OCTUBRE DE FONDO DE ASISTENCIA LEGAL DE V\u00cdCTIMAS CASO RAM\u00cdREZ ESCOBAR y OTROS VS. GUATEMALA VISTO El escrito de de febrero de y sus anexos mediante los cuales la Comisi\u00f3n Interamericana de Derechos Humanos en adelante la Comisi\u00f3n Interamericana o la Comisi\u00f3n someti\u00f3 ante la Corte Interamericana de Derechos Humanos en adelante la Corte Interamericana la Corte o el Tribunal el presente caso. El escrito de de de", - "values": [ - "Corte Interamericana de Derechos Humanos" - ] - }, - { - "text": "RESOLUCI\u00d3N DEL PRESIDENTE DE LA CORTE INTERAMERICANA DE DERECHOS HUMANOS DE DE MARZO DE CASO MIEMBROS DE LA ALDEA CHICHUPAC Y COMUNIDADES VECINAS DEL MUNICIPIO DE RABINAL VS. GUATEMALA VISTO El escrito de sometimiento del caso y el Informe de Fondo de la Comisi\u00f3n Interamericana de Derechos Humanos en adelante la Comisi\u00f3n Interamericana o la Comisi\u00f3n el escrito de solicitudes argumentos y pruebas en adelante el escrito de solicitudes y argumentos de los representantes de las presuntas en ", - "values": [ - "Corte Interamericana de Derechos Humanos" - ] - }, - { - "text": "VOTO PARCIALMENTE DISIDENTE DEL JUEZ ROBERTO F. CALDAS CORTE INTERAMERICANA DE DERECHOS HUMANOS CASO VEL\u00c1SQUEZ PAIZ Y OTROS VS. GUATEMALA SENTENCIA DE DE NOVIEMBRE DE EXCEPCIONES PRELIMINARES FONDO REPARACIONES Y COSTAS I. Introducci\u00f3n Este voto puntual y parcialmente disidente con las fundamentaciones y conclusiones manifestadas por la mayor\u00eda de los honorables jueces de esta Corte Interamericana en relaci\u00f3n al p\u00e1rrafo n\u00famero de los Puntos Resolutivos de la Sentencia tiene como objetivo ", - "values": [ - "Corte Interamericana de Derechos Humanos" - ] - }, - { - "text": "CORTE INTERAMERICANA DE DERECHOS HUMANOS CASO VELIZ FRANCO Y OTROS VS. GUATEMALA SENTENCIA DE DE MAYO DE Excepciones Preliminares Fondo Reparaciones y Costas En el caso Veliz Franco y otros la Corte Interamericana de Derechos Humanos en adelante la Corte Interamericana la Corte o el Tribunal integrada por los siguientes Jueces Humberto Antonio Sierra Porto Presidente Roberto F. Caldas Vicepresidente Manuel E. Ventura Robles Juez Diego Garc\u00edaSay\u00e1n Juez Alberto P\u00e9rez P\u00e9rez Juez Eduardo Vio y ", - "values": [ - "Corte Interamericana de Derechos Humanos" - ] - }, - { - "text": "RESOLUCI\u00d3N DEL PRESIDENTE DE LA CORTE INTERAMERICANA DE DERECHOS HUMANOS DE DE MARZO DE CASO GUDIEL \u00c1LVAREZ Y OTROS VS. GUATEMALA VISTO El escrito de sometimiento del caso presentado por la Comisi\u00f3n Interamericana de Derechos Humanos en adelante tambi\u00e9n la Comisi\u00f3n Interamericana o la Comisi\u00f3n ante la Corte Interamericana de Derechos Humanos en adelante la Corte Interamericana la Corte o el Tribunal el de febrero de y sus anexos mediante los cuales ofreci\u00f3 tres dict\u00e1menes periciales. El ", - "values": [ - "Corte Interamericana de Derechos Humanos" - ] - }, - { - "text": "RESOLUCI\u00d3N DE LA CORTE INTERAMERICANA DE DERECHOS HUMANOS DE DE MAYO DE CASO VEL\u00c1SQUEZ PAIZ Y OTROS VS. GUATEMALA SUPERVISI\u00d3N DE CUMPLIMIENTO DE SENTENCIA VISTO La Sentencia de excepciones preliminares fondo reparaciones y costas en adelante la Sentencia dictada por la Corte Interamericana de Derechos Humanos en adelante la Corte la Corte Interamericana o el Tribunal el de noviembre de La Corte declar\u00f3 responsable internacionalmente a la Rep\u00fablica de Guatemala en adelante el Estado o por", - "values": [ - "Corte Interamericana de Derechos Humanos" - ] - }, - { - "text": "RESOLUCI\u00d3N DEL PRESIDENTE EN EJERCICIO DE LA CORTE INTERAMERICANA DE DERECHOS HUMANOS DE DE ABRIL DE CASO VLADIMIR HERZOG Y OTROS VS. BRASIL CONVOCATORIA A AUDIENCIA VISTO El escrito de sometimiento del caso y el Informe de Fondo de la Comisi\u00f3n Interamericana de Derechos Humanos en adelante la Comisi\u00f3n Interamericana o la Comisi\u00f3n el escrito de solicitudes argumentos y pruebas en adelante el escrito de solicitudes y argumentos de los representantes de las presuntas v\u00edctimas en adelante los ", - "values": [ - "Corte Interamericana de Derechos Humanos" - ] - }, - { - "text": "RESOLUCI\u00d3N DEL PRESIDENTE EN EJERCICIO DE LA CORTE INTERAMERICANA DE DERECHOS HUMANOS DE DE FEBRERO DE FONDO DE ASISTENCIA LEGAL DE V\u00cdCTIMAS CASO VLADIMIR HERZOG Y OTROS VS. BRASIL VISTO El escrito de de abril de y sus anexos mediante los cuales la Comisi\u00f3n Interamericana de Derechos Humanos en adelante la Comisi\u00f3n Interamericana o la Comisi\u00f3n someti\u00f3 ante la Corte Interamericana de Derechos Humanos en adelante la Corte Interamericana la Corte o el Tribunal el presente caso. El escrito ", - "values": [ - "Corte Interamericana de Derechos Humanos" - ] - }, - { - "text": "CORTE INTERAMERICANA DE DERECHOS HUMANOS CASO FAVELA NOVA BRASILIA VS. BRASIL SENTENCIA DE FEBRERO DE Excepciones Preliminares Fondo Reparaciones y Costas En el caso Favela Nova Brasilia la Corte Interamericana de Derechos Humanos en adelante la Corte Interamericana la Corte o este Tribunal integrada por los siguientes Jueces Eduardo Ferrer MacGregor Poisot Presidente en ejercicio Eduardo Vio Grossi Vicepresidente en ejercicio Humberto Antonio Sierra Porto Juez Elizabeth Odio Benito Jueza ", - "values": [ - "Corte Interamericana de Derechos Humanos" - ] - }, - { - "text": "RESOLUCI\u00d3N DEL PRESIDENTE EN EJERCICIO DE LA CORTE INTERAMERICANA DE DERECHOS HUMANOS DE DE ENERO DE CASO PUEBLO IND\u00cdGENA XUCURU Y SUS MIEMBROS VS. BRASIL CONVOCATORIA A AUDIENCIA VISTO El escrito de sometimiento del caso y el Informe de Fondo de la Comisi\u00f3n Interamericana de Derechos Humanos en adelante la Comisi\u00f3n Interamericana o la Comisi\u00f3n el escrito de excepciones preliminares y contestaci\u00f3n al sometimiento del caso en adelante escrito de contestaci\u00f3n de la Rep\u00fablica Federativa de en ", - "values": [ - "Corte Interamericana de Derechos Humanos" - ] - }, - { - "text": "RESOLU\u00c7\u00c3O DO PRESIDENTE EM EXERC\u00cdCIO DA CORTE INTERAMERICANA DE DIREITOS HUMANOS DE DE SETEMBRO DE CASO GENOVEVA E OUTROS FAVELA NOVA BRAS\u00cdLIA VS. BRASIL VISTO A Resolu\u00e7\u00e3o do Presidente em exerc\u00edcio da Corte Interamericana de Direitos Humanos doravante denominado o Presidente de de agosto de doravante denominada a Resolu\u00e7\u00e3o do Presidente atrav\u00e9s da qual entre outros ordenou a recep\u00e7\u00e3o de diversas declara\u00e7\u00f5es testemunhais e periciais por meio de afid\u00e1vit e convocou a Comiss\u00e3o Interamericana", - "values": [ - "Corte Interamericana de Derechos Humanos" - ] - }, - { - "text": "VOTO RAZONADO DEL JUEZ AD HOC ROBERTO DE FIGUEIREDO CALDAS CON RELACI\u00d3N A LA SENTENCIA DE LA CORTE INTERAMERICANA DE DERECHOS HUMANOS EN EL CASO GOMES LUND Y OTROS GUERRILHA DO ARAGUAIA VS. BRASIL DE DE NOVIEMBRE DE I. INTRODUCCI\u00d3N El presente voto razonado concurrente de modo general en cuanto a las fundamentaciones y conclusiones colegiadas de la Corte todas ellas un\u00e1nimes cumple el objetivo de aclarar y enfatizar algunos puntos fundamentales para las sociedades brasile\u00f1a y continental m\u00e1s", - "values": [ - "Corte Interamericana de Derechos Humanos" - ] - }, - { - "text": "RESOLUCI\u00d3N DE LA CORTE INTERAMERICANA DE DERECHOS HUMANOS DE DE JULIO DE SOLICITUD DE MEDIDAS PROVISIONALES RESPECTO DE LA REP\u00daBLICA FEDERATIVA DE BRASIL CASO GOMES LUND Y OTROS GUERRILHA DO ARAGUAIA VISTO El escrito de de junio de y sus anexos mediante los cuales el Centro por la Justicia y el Derecho Internacional el Grupo Tortura Nunca M\u00e1s y la Comisi\u00f3n de Familiares de Muertos y Desaparecidos Pol\u00edticos representantes de las presuntas v\u00edctimas en el caso Gomes Lund y otros en adelante ", - "values": [ - "Corte Interamericana de Derechos Humanos" - ] - }, - { - "text": "RESOLUCI\u00d3N DE LA PRESIDENTA DE LA CORTE INTERAMERICANA DE DERECHOS HUMANOS DE DE NOVIEMBRE DE CASO S\u00c9TIMO GARIBALDI VS. BRASIL VISTO El escrito de demanda presentado por la Comisi\u00f3n Interamericana de Derechos Humanos en adelante la Comisi\u00f3n Interamericana o la Comisi\u00f3n ante la Corte Interamericana de Derechos Humanos en adelante la Corte Interamericana la Corte o el Tribunal el de diciembre de mediante el cual ofreci\u00f3 dos testigos y un perito. El escrito de solicitudes argumentos y en ", - "values": [ - "Corte Interamericana de Derechos Humanos" - ] - }, - { - "text": "VOTO CONCURRENTE DEL JUEZ A. A. CAN\u00c7ADO TRINDADE Al votar a favor de la adopci\u00f3n de las presentes Medidas Provisionales de Protecci\u00f3n mediante las cuales la Corte Interamericana de Derechos Humanos ordena que se extienda protecci\u00f3n a todas las personas recluidas en la C\u00e1rcel de Urso Branco en Brasil me veo en la obligaci\u00f3n de retomar la construcci\u00f3n conceptual en que he estado empe\u00f1ado en el seno de la Corte Interamericana de las obligaciones erga omnes de protecci\u00f3n bajo la Convenci\u00f3n No es ", - "values": [ - "Corte Interamericana de Derechos Humanos" - ] - }, - { - "text": "VOTO CONCURRENTE A LA RESOLUCION DE LA CORTE INTERAMERICANA DE DERECHOS HUMANOS SOBRE MEDIDAS PROVISIONALES EN EL CASO DE LA CARCEL DE URSO BRANCO DEL DE JULIO DE Ante la grave situaci\u00f3n que guardan los internos y otras personas en la Casa de Detenci\u00f3n Jos\u00e9 Mario Alves conocida como C\u00e1rcel de Urso Branco ubicada en la ciudad de Porto Velho Estado de Rond\u00f4nia Brasil la Corte Interamericana de Derechos Humanos adopt\u00f3 a solicitud de la Comisi\u00f3n Interamericana de Derechos Humanos diversas medidas", - "values": [ - "Corte Interamericana de Derechos Humanos" - ] - }, - { - "text": "RESOLUCI\u00d3N DE LA CORTE INTERAMERICANA DE DERECHOS HUMANOS DE DE FEBRERO DE MEDIDAS PROVISIONALES RESPECTO DE BRASIL ASUNTOS DE LA UNIDAD DE INTERNACI\u00d3N SOCIOEDUCATIVA DEL COMPLEJO PENITENCIARIO DE CURADO DEL COMPLEJO PENITENCIARIO DE PEDRINHAS Y DEL INSTITUTO PENAL PL\u00c1CIDO DE S\u00c1 CARVALHO VISTO Que obran en esta Corte cuatro medidas provisionales referidas a hechos de violencia carcelaria y superpoblaci\u00f3n notoria en instituciones penitenciarias de Brasil de diferentes Estados y regiones. la", - "values": [ - "Corte Interamericana de Derechos Humanos" - ] - }, - { - "text": "RESOLUCI\u00d3N DE LA CORTE INTERAMERICANA DE DERECHOS HUMANOS DE DE FEBRERO DE MEDIDAS PROVISIONALES RESPECTO DE BRASIL ASUNTO DEL INSTITUTO PENAL PL\u00c1CIDO DE S\u00c1 CARVALHO VISTO El escrito de la Comisi\u00f3n Interamericana de Derechos Humanos en adelante la Comisi\u00f3n Interamericana o la Comisi\u00f3n de de enero de y sus anexos mediante los cuales someti\u00f3 a la Corte Interamericana de Derechos Humanos en adelante la Corte Interamericana la Corte o el Tribunal una solicitud de medidas provisionales de con", - "values": [ - "Corte Interamericana de Derechos Humanos" - ] - }, - { - "text": "RESOLUCI\u00d3N DE LA CORTE INTERAMERICANA DE DERECHOS HUMANOS DE DE NOVIEMBRE DE MEDIDAS PROVISIONALES RESPECTO DE BRASIL ASUNTO DEL COMPLEJO PENITENCIARIO DE CURADO VISTO Las Resoluciones emitidas por la Corte Interamericana de Derechos Humanos en adelante la Corte Interamericana la Corte o el Tribunal el de mayo de y el de octubre de en las cuales entre otros requiri\u00f3 a la Rep\u00fablica Federativa de Brasil en adelante Brasil o el Estado que adoptara de forma inmediata todas las medidas que ", - "values": [ - "Corte Interamericana de Derechos Humanos" - ] - }, - { - "text": "VOTO RAZONADO DEL JUEZ A. A. CAN\u00c7ADO TRINDADE Al votar a favor de la adopci\u00f3n por parte de la Corte Interamericana de Derechos Humanos de la presente Resoluci\u00f3n sobre Medidas Provisionales de Protecci\u00f3n en el caso de la Penitenciar\u00eda de Araraquara vs. Brasil me veo tambi\u00e9n en el deber de dejar registro de mis reflexiones personales como fundamento de mi posici\u00f3n sobre lo deliberado por la Corte. Lo hago nuevamente en medio de la presi\u00f3n impiadosa del tiempo tomando en cuenta la fruct\u00edfera de", - "values": [ - "Corte Interamericana de Derechos Humanos" - ] - }, - { - "text": "CORTE INTERAMERICANA DE DERECHOS HUMANOS CASO XIMENES LOPES VS. BRASIL SENTENCIA DE DE JULIO DE En el caso Ximenes Lopes la Corte Interamericana de Derechos Humanos en adelante la Corte Interamericana la Corte o el Tribunal integrada por los siguientes jueces Sergio Garc\u00eda Ram\u00edrez Presidente Alirio Abreu Burelli Vicepresidente Ant\u00f4nio Augusto Can\u00e7ado Trindade Juez Cecilia Medina Quiroga Jueza Manuel E. Ventura Robles Juez y Diego Garc\u00edaSay\u00e1n Juez presentes adem\u00e1s Pablo Saavedra Alessandri y ", - "values": [ - "Corte Interamericana de Derechos Humanos" - ] - }, - { - "text": "VOTO SEPARADO DEL JUEZ AA. CAN\u00c7ADO TRINDADE A trav\u00e9s de mi voto vengo a contribuir a la adopci\u00f3n por parte de la Corte Interamericana de Derechos Humanos de la presente Sentencia en el caso Ximenes Lopes versus Brasil. Dada la particular relevancia de la materia examinada por la Corte me veo en la obligaci\u00f3n de dejar consignadas en el presente Voto Separado mis reflexiones personales sobre lo tratado por la Corte en esta Sentencia como fundamento de mi posici\u00f3n al respecto. Lo hago como ya es ", - "values": [ - "Corte Interamericana de Derechos Humanos" - ] - }, - { - "text": "VOTO RAZONADO DEL JUEZ SERGIO GARC\u00cdA RAM\u00cdREZ CON RESPECTO A LA SENTENCIA DE LA CORTE INTERAMERICANA DE DERECHOS HUMANOS EN EL CASO XIMENES LOPES VS. BRASIL DICTADA EL DE JULIO DE DERECHOS GENERALES Y ESPECIALES En el espacio de su jurisprudencia cada vez m\u00e1s abundante y comprensiva la Corte Interamericana se ha ocupado en el examen y la precisi\u00f3n de los derechos y libertades de individuos y miembros de grupos conjuntos o comunidades as\u00ed como en las correspondientes obligaciones y funciones ", - "values": [ - "Corte Interamericana de Derechos Humanos" - ] - }, - { - "text": "VOTO CONCORDANTE DO JUIZ AA. CAN\u00c7ADO TRINDADE Ao votar a favor da ado\u00e7\u00e3o pela Corte Interamericana de Direitos Humanos da presente Resolu\u00e7\u00e3o sobre Medidas Provis\u00f3rias de Prote\u00e7\u00e3o no caso das Crian\u00e7as e Adolescentes Privados de Liberdade no Complexo do Tatuap\u00e9 da FEBEM versus Brasil vejome ademais no dever de deixar registro de minhas reflex\u00f5es pessoais como fundamento de minha posi\u00e7\u00e3o acerca do deliberado pela Corte. Fa\u00e7oo em meio \u00e0 press\u00e3o impiedosa do tempo contando com n\u00e3o mais que um dia e", - "values": [ - "Corte Interamericana de Derechos Humanos" - ] - }, - { - "text": "VOTO CONCURRENTE DEL JUEZ SERGIO GARC\u00cdA RAM\u00cdREZ A LA RESOLUCI\u00d3N DE LA CORTE INTERAMERICANA DE DERECHOS HUMANOS SOBRE MEDIDAS PROVISIONALES EN EL CASO DE LOS INTERNOS EN EL COMPLEJO TATUAP\u00c9 BRASIL DE DE NOVIEMBRE DE Las caracter\u00edsticas del ejercicio jurisdiccional de la Corte Interamericana como las de cualquier tribunal internacional atraen la atenci\u00f3n de aqu\u00e9lla en dos direcciones. Por una parte es obvio que debe dirigir su inter\u00e9s y su reflexi\u00f3n a los casos que tiene sub judice tr\u00e1tese de ", - "values": [ - "Corte Interamericana de Derechos Humanos" - ] - }, - { - "text": "RESOLU\u00c7\u00c3O DO PRESIDENTE DA CORTE INTERAMERICANA DE DIREITOS HUMANOS DE DE MAR\u00c7O DE CASO GOMES LUND E OUTROS VS. BRASIL VISTO O escrito da demanda apresentado pela Comiss\u00e3o Interamericana de Direitos Humanos doravante a Comiss\u00e3o Interamericana ou a Comiss\u00e3o \u00e0 Corte Interamericana de Direitos Humanos doravante a Corte Interamericana a Corte ou o Tribunal em de mar\u00e7o de mediante a qual ofereceu tr\u00eas declara\u00e7\u00f5es testemunhais e quatro ditames periciais. Os tr\u00eas testemunhos oferecidos constituem", - "values": [ - "Corte Interamericana de Derechos Humanos" - ] - }, - { - "text": "RESOLUCI\u00d3N DE LA CORTE INTERAMERICANA DE DERECHOS HUMANOS DE DE FEBRERO DE CASO ROCHAC HERN\u00c1NDEZ Y OTROS VS. EL SALVADOR SUPERVISI\u00d3N DE CUMPLIMIENTO DE SENTENCIA VISTO La Sentencia de fondo reparaciones y costas emitida el de octubre de en adelante la Sentencia por la Corte Interamericana de Derechos Humanos en adelante la Corte Interamericana la Corte o el Tribunal. En dicho fallo la Corte tomando en cuenta la aceptaci\u00f3n total de los hechos y el reconocimiento de responsabilidad parcial ", - "values": [ - "Corte Interamericana de Derechos Humanos" - ] - }, - { - "text": "RESOLUCI\u00d3N DE LA CORTE INTERAMERICANA DE DERECHOS HUMANOS DE DE SEPTIEMBRE DE CASO HERMANAS SERRANO CRUZ VS. EL SALVADOR SUPERVISI\u00d3N DE CUMPLIMIENTO DE SENTENCIA VISTO La Sentencia de fondo reparaciones y costas en adelante la Sentencia dictada por la Corte Interamericana de Derechos Humanos en adelante la Corte la Corte Interamericana o este Tribunal el de marzo de La Corte declar\u00f3 al Estado de El Salvador en adelante el Estado o El Salvador responsable por la falta de investigaci\u00f3n de ", - "values": [ - "Corte Interamericana de Derechos Humanos" - ] - }, - { - "text": "RESOLUCI\u00d3N DE LA CORTE INTERAMERICANA DE DERECHOS HUMANOS DE DE SEPTIEMBRE DE CASO CONTRERAS Y OTROS VS. EL SALVADOR SUPERVISI\u00d3N DE CUMPLIMIENTO DE SENTENCIA VISTO La Sentencia de fondo reparaciones y costas emitida el de agosto de en adelante la Sentencia por la Corte Interamericana de Derechos Humanos en adelante la Corte Interamericana la Corte o el Tribunal mediante la cual acept\u00f3 el reconocimiento de responsabilidad internacional efectuado por la Rep\u00fablica de El Salvador en adelante ", - "values": [ - "Corte Interamericana de Derechos Humanos" - ] - }, - { - "text": "VOTO CONCURRENTE DEL JUEZ EDUARDO VIO GROSSI RESOLUCI\u00d3N DE LA CORTE INTERAMERICANA DE DERECHOS HUMANOS DE DE NOVIEMBRE DE MEDIDAS PROVISIONALES RESPECTO DE EL SALVADOR CASO GARC\u00cdA PRIETO Y OTROS. El presente voto concurrente obedece a que la Resoluci\u00f3n del ep\u00edgrafe levanta las medidas provisionales ordenadas en el caso de autos con lo que as\u00ed coincide en la pr\u00e1ctica con lo sostenido en el Voto Disidente del suscrito de fecha de enero de emitido con relaci\u00f3n al establecimiento de las En ", - "values": [ - "Corte Interamericana de Derechos Humanos" - ] - }, - { - "text": "VOTO DISIDENTE DEL JUEZ EDUARDO VIO GROSSI RESOLUCI\u00d3N DE LA CORTE INTERAMERICANA DE DERECHOS HUMANOS DE DE ENERO MEDIDAS PROVISIONALES RESPECTO DE EL SALVADOR CASO GARC\u00cdA PRIETO Y OTROS. Se emite el presente voto disidente respecto de la Resoluci\u00f3n indicada en el r\u00f3tulo en m\u00e9rito de que ha precluido la facultad de la Corte Interamericana de Derechos Humanos de decretar la mantenci\u00f3n de medidas provisionales respecto o en el marco del referido caso sentenciado el de noviembre de Y se en la", - "values": [ - "Corte Interamericana de Derechos Humanos" - ] - }, - { - "text": "VOTO RAZONADO DEL JUEZ AA. CAN\u00c7ADO TRINDADE He votado en favor de la adopci\u00f3n de la presente Resoluci\u00f3n de hoy sobre Medidas Provisionales de Protecci\u00f3n de la Corte Interamericana de Derechos Humanos en el caso Gloria Giralt de Garc\u00eda Prieto y Otros versus El Salvador y tal como lo hice en la muy reciente Resoluci\u00f3n de la Corte en el anterior caso Mery Naranjo y Otros versus Colombia del me veo en la obligaci\u00f3n de a \u00e9sta juntar el presente Voto Razonado conteniendo mis breves reflexiones ", - "values": [ - "Corte Interamericana de Derechos Humanos" - ] - }, - { - "text": "RESOLUCI\u00d3N DEL PRESIDENTE DE LA CORTE INTERAMERICANA DE DERECHOS HUMANOS DE DE JUNIO DE AMPLIACI\u00d3N DE MEDIDAS PROVISIONALES RESPECTO NICARAGUA ASUNTO POBLADORES DE LAS COMUNIDADES DEL PUEBLO IND\u00cdGENA MISKITU DE LA REGI\u00d3N COSTA CARIBE NORTE VISTOS La Resoluci\u00f3n de la Corte Interamericana de Derechos Humanos en adelante tambi\u00e9n la Corte Interamericana la Corte o el Tribunal de de septiembre de mediante la cual orden\u00f3 al Estado de Nicaragua inter alia i erradicar la violencia y proteger la ", - "values": [ - "Corte Interamericana de Derechos Humanos" - ] - }, - { - "text": "CORTE INTERAMERICANA DE DERECHOS HUMANOS CASO ACOSTA Y OTROS VS. NICARAGUA SENTENCIA DE DE MARZO DE Excepciones preliminares Fondo Reparaciones y Costas En el caso Acosta y otros la Corte Interamericana de Derechos Humanos en adelante la Corte Interamericana la Corte o el Tribunal integrada por los siguientes Jueces Roberto F. Caldas Presidente Eduardo Ferrer MacGregor Poisot Vicepresidente Eduardo Vio Grossi juez Humberto Antonio Sierra Porto juez Elizabeth Odio Benito jueza Eugenio Ra\u00fal y", - "values": [ - "Corte Interamericana de Derechos Humanos" - ] - }, - { - "text": "RESOLUCI\u00d3N DE LA CORTE INTERAMERICANA DE DERECHOS HUMANOS DE DE NOVIEMBRE DE MEDIDAS PROVISIONALES RESPECTO NICARAGUA ASUNTO POBLADORES DE LAS COMUNIDADES DEL PUEBLO IND\u00cdGENA MISKITU DE LA REGI\u00d3N COSTA CARIBE NORTE VISTO La Resoluci\u00f3n de la Corte Interamericana de Derechos Humanos en adelante tambi\u00e9n la Corte Interamericana la Corte o el Tribunal de de septiembre de mediante la cual orden\u00f3 inter alia Disponer como medida provisional la adopci\u00f3n de manera inmediata por parte del Estado de ", - "values": [ - "Corte Interamericana de Derechos Humanos" - ] - }, - { - "text": "VOTO RAZONADO CONJUNTO DE LOS JUECES AA. CAN\u00c7ADO TRINDADE M. PACHECO G\u00d3MEZ Y A. ABREU BURELLI Los Jueces suscritos votamos a favor de la adopci\u00f3n de la presente Sentencia de la Corte Interamericana de Derechos Humanos sobre el fondo en el caso de la Comunidad Mayagna Sumo Awas Tingni versus Nicaragua. Dada la importancia de la materia planteada en el presente caso nos vemos obligados a agregar las breves reflexiones que siguen acerca de uno de los aspectos centrales de la misma a saber la de", - "values": [ - "Corte Interamericana de Derechos Humanos" - ] - }, - { - "text": "VOTO DISIDENTE DEL JUEZ MONTIEL ARG\u00dcELLO He disentido de los puntos resolutivos y de la sentencia dictada por la Corte en el caso de la Comunidad Mayagna Sumo Awas Tingni. Reconozco que se trata de un caso sumamente complejo y que la Corte y cada uno de los Jueces que la integran han actuado en \u00e9l con la mayor ecuanimidad. El Gobierno de Nicaragua es respetuoso en alto grado de los derechos de los pueblos ind\u00edgenas ampliamente reconocidos en la Constituci\u00f3n Pol\u00edtica y las leyes A mi ", - "values": [ - "Corte Interamericana de Derechos Humanos" - ] - }, - { - "text": "VOTO DISIDENTE DEL JUEZ A. A. CAN\u00c7ADO TRINDADE Lamento no poder compartir la decisi\u00f3n tomada por la mayor\u00eda de la Corte en la presente Resoluci\u00f3n sobre el recurso de revisi\u00f3n de la Sentencia del fondo de de enero de en el caso Genie Lacayo. Paso a exponer los fundamentos jur\u00eddicos de mi posici\u00f3n disidente concentr\u00e1ndome de inicio en la cuesti\u00f3n de la admisibilidad de dicho recurso y en seguida en la cuesti\u00f3n de fondo de su procedencia. I. La Admisibilidad del Recurso de Revisi\u00f3n. El ante ", - "values": [ - "Corte Interamericana de Derechos Humanos" - ] - }, - { - "text": "VOTO DISIDENTE DEL JUEZ MAXIMO PACHECO GOMEZ Disiento de la opini\u00f3n de la mayor\u00eda en relaci\u00f3n con el Punto Resolutivo n\u00famero de la sentencia en el cual la Corte decidi\u00f3 que el Estado de Nicaragua debe cancelar una compensaci\u00f3n equitativa al se\u00f1or Raymond Genie Pe\u00f1alba porque considero que lo procedente hubiera sido haber abierto la etapa de reparaciones para fijar el monto de la compensaci\u00f3n por los da\u00f1os materiales y morales sufridos despu\u00e9s de haber escuchado a las partes y a los familiares ", - "values": [ - "Corte Interamericana de Derechos Humanos" - ] - }, - { - "text": "RESOLUCI\u00d3N DE LA CORTE INTERAMERICANA DE DERECHOS HUMANOS DE DE SEPTIEMBRE DE SOLICITUD DE MEDIDAS PROVISIONALES RESPECTO NICARAGUA ASUNTO POBLADORES DE LAS COMUNIDADES DEL PUEBLO IND\u00cdGENA MISKITU DE LA REGI\u00d3N COSTA CARIBE NORTE VISTO El escrito de de agosto de mediante el cual la Comisi\u00f3n Interamericana de Derechos Humanos en adelante la Comisi\u00f3n la Comisi\u00f3n Interamericana o la CIDH someti\u00f3 a la Corte Interamericana de Derechos Humanos en adelante la Corte Interamericana o la Corte una ", - "values": [ - "Corte Interamericana de Derechos Humanos" - ] - }, - { - "text": "RESOLUCI\u00d3N DE LA CORTE INTERAMERICANA DE DERECHOS HUMANOS DE DE NOVIEMBRE DE CASO YATAMA VS. NICARAGUA SUPERVISI\u00d3N DE CUMPLIMIENTO DE SENTENCIA VISTO La Sentencia de excepciones preliminares fondo reparaciones y costas en adelante la Sentencia dictada por la Corte Interamericana de Derechos Humanos en adelante la Corte la Corte Interamericana o el Tribunal el de junio de La Corte declar\u00f3 responsable internacionalmente a la Rep\u00fablica de Nicaragua en adelante el Estado o Nicaragua por la ", - "values": [ - "Corte Interamericana de Derechos Humanos" - ] - }, - { - "text": "CORTE INTERAMERICANA DE DERECHOS HUMANOS COUR INTERAMERIC\u00c1NE DES DROITS DE LHOMME CORTE INTERAMERICANA DE DIREITOS HUMANOS INTERAMERICAN COURT OF HUMAN RIGHTS RESOLUCION DE LA CORTE INTERAMERICANA DE DERECHOS HUMANOS DE DE AGOSTO DE CASO GENIE LACAYO VISTOS La sentencia emitida por la Corte Interamericana de Derechos Humanos en adelante la Corte o la Corte Interamericana el de enero de en cuyo punto resolutivo n\u00famero cuatro estableci\u00f3 en US veinte mil d\u00f3lares de los Estados equivalente en ", - "values": [ - "Corte Interamericana de Derechos Humanos" - ] - }, - { - "text": "VOTO SEPARADO DEL JUEZ A. A. CAN\u00c7ADO TRINDADE Al suscribir la presente Resoluci\u00f3n de la Corte Interamericana de Derechos Humanos tomo nota en relaci\u00f3n con el p\u00e1rrafo n. de los Vistos del escrito del de diciembre de p\u00e1ginas de los Se\u00f1ores Raymond Genie Pe\u00f1alba y Gloria Angeles Genie padre y madre de Jean Paul Genie Lacayo que la Comisi\u00f3n Interamericana de Derechos Humanos hizo suyo seg\u00fan comunic\u00f3 a la Corte en carta del de junio de Ant\u00f4nio Augusto Can\u00e7ado Trindade Juez Manuel E. Ventura ", - "values": [ - "Corte Interamericana de Derechos Humanos" - ] - }, - { - "text": "RESOLUCI\u00d3N DE LA CORTE INTERAMERICANA DE DERECHOS HUMANOS DEL DE FEBRERO DE MEDIDAS PROVISIONALES SOLICITADAS POR LA COMISI\u00d3N INTERAMERICANA DE DERECHOS HUMANOS RESPECTO DE NICARAGUA CASO ALEM\u00c1N LACAYO La Corte Interamericana de Derechos Humanos integrada por los siguientes jueces H\u00e9ctor FixZamudio Presidente Hern\u00e1n Salgado Pesantes Vicepresidente Alejandro Montiel Arg\u00fcello Juez M\u00e1ximo Pacheco G\u00f3mez Juez Oliver Jackman Juez Alirio Abreu Burelli Juez Ant\u00f4nio A. Can\u00e7ado Trindade Juez presentes ", - "values": [ - "Corte Interamericana de Derechos Humanos" - ] - }, - { - "text": "RESOLUCI\u00d3N DE LA CORTE INTERAMERICANA DE DERECHOS HUMANOS DEL DE FEBRERO DE MEDIDAS PROVISIONALES SOLICITADAS POR LA COMISI\u00d3N INTERAMERICANA DE DERECHOS HUMANOS RESPECTO DE LA REP\u00daBLICA DE NICARAGUA CASO ALEM\u00c1N LACAYO VISTOS El de febrero de la Comisi\u00f3n Interamericana de Derechos Humanos en adelante la Comisi\u00f3n remiti\u00f3 a la Corte Interamericana de Derechos Humanos en adelante la Corte una solicitud de medidas provisionales en favor del se\u00f1or Arnoldo Alem\u00e1n Lacayo en ese entonces candidato ", - "values": [ - "Corte Interamericana de Derechos Humanos" - ] - }, - { - "text": "RESOLUCI\u00d3N DE LA CORTE INTERAMERICANA DE DERECHOS HUMANOS DE DE MAYO DE CASO PUEBLOS IND\u00cdGENAS KUNA DE MADUNGAND\u00cd Y EMBER\u00c1 DE BAYANO Y SUS MIEMBROS VS. PANAM\u00c1 SUPERVISI\u00d3N DE CUMPLIMIENTO DE SENTENCIA VISTOS La Sentencia de excepciones preliminares fondo reparaciones y costas en adelante la Sentencia dictada por la Corte Interamericana de Derechos Humanos en adelante la Corte la Corte Interamericana o el Tribunal el de octubre de mediante la cual declar\u00f3 responsable internacionalmente a la", - "values": [ - "Corte Interamericana de Derechos Humanos" - ] - }, - { - "text": "VOTO RAZONADO DEL JUEZ SERGIO GARC\u00cdA RAM\u00cdREZ EN RELACI\u00d3N CON LA SENTENCIA DE LA CORTE INTERAMERICANA DE DERECHOS HUMANOS EN EL CASO HELIODORO PORTUGAL PANAM\u00c1 DEL DE AGOSTO DE Concurr\u00ed a la adopci\u00f3n de la sentencia dictada en este caso que declara el car\u00e1cter violatorio de derechos humanos de los hechos sujetos a la competencia temporal y material de la Corte Interamericana. Creo pertinente formular algunas apreciaciones adicionales en torno al hecho principal sub judice la desaparici\u00f3n del ", - "values": [ - "Corte Interamericana de Derechos Humanos" - ] - }, - { - "text": "CORTE INTERAMERICANA DE DERECHOS HUMANOS CASO IV. VS. BOLIVIA SENTENCIA DE DE MAYO DE Interpretaci\u00f3n de la Sentencia de Excepciones Preliminares Fondo Reparaciones y Costas En el caso IV. Vs. Bolivia la Corte Interamericana de Derechos Humanos en adelante la Corte Interamericana la Corte o este Tribunal integrada por los siguientes Jueces Roberto F. Caldas Presidente Eduardo Ferrer MacGregor Poisot Vicepresidente Eduardo Vio Grossi Juez Humberto Antonio Sierra Porto Juez Elizabeth Odio Benito", - "values": [ - "Corte Interamericana de Derechos Humanos" - ] - }, - { - "text": "RESOLUCI\u00d3N DE LA CORTE INTERAMERICANA DE DERECHOS HUMANOS DE DE MAYO DE SOLICITUD DE MEDIDAS PROVISIONALES RESPECTO DE BOLIVIA CASO IV. VS. BOLIVIA VISTO La Sentencia de excepciones preliminares fondo reparaciones y costas de de noviembre de mediante la cual la Corte Interamericana de Derechos Humanos en adelante la Corte Interamericana o la Corte declar\u00f3 responsable internacionalmente al Estado Plurinacional de Bolivia en adelante el Estado de Bolivia el Estado o Bolivia por la violaci\u00f3n ", - "values": [ - "Corte Interamericana de Derechos Humanos" - ] - }, - { - "text": "CORTE INTERAMERICANA DE DERECHOS HUMANOS COUR INTERAMERICAINE DES DROITS DE LHOMME A CORTE INTERAMERICANA DE DIREITOS HUMANOS INTIRAMERICAN COURT OF HUMAN RIGHTS PRESIDENTE DE LA CORTE RESOLUCION DEL PRESIDENTE DE LA CORTE INTERAMERICANA DE DERECHOS HUMANOS DE DE ABRIL DE CASO IBSEN CARDENAS E IBSEN PENA V. BOLIVIA VISTOS La Resolucin del Presidente de la Corte Interamericana de Derechos Humanos en adelante Corte Corte Interamericana Tribunal de de marzo de mediante la cual resolvi inter ", - "values": [ - "Corte Interamericana de Derechos Humanos" - ] - }, - { - "text": "RESOLUCI\u00d3N DEL PRESIDENTE EN EJERCICIO DE LA CORTE INTERAMERICANA DE DERECHOS HUMANOS DE DE JULIO DE FONDO DE ASISTENCIA LEGAL DE V\u00cdCTIMAS CASO TERRONES SILVA Y OTROS VS. PER\u00da VISTO El escrito de de abril de y sus anexos mediante los cuales la Comisi\u00f3n Interamericana de Derechos Humanos en adelante la Comisi\u00f3n Interamericana o la Comisi\u00f3n someti\u00f3 ante la Corte Interamericana de Derechos Humanos en adelante la Corte Interamericana la Corte o el Tribunal el presente caso. El escrito de de ", - "values": [ - "Corte Interamericana de Derechos Humanos" - ] - }, - { - "text": "RESOLUCI\u00d3N DE LA CORTE INTERAMERICANA DE DERECHOS HUMANOS DE DE AGOSTO DE MEDIDAS PROVISIONALES SOLICITADAS POR LA COMISI\u00d3N INTERAMERICANA DE DERECHOS HUMANOS RESPECTO DE LA REP\u00daBLICA DOMINICANA CASO DE HAITIANOS Y DOMINICANOS DE ORIGEN HAITIANO EN LA REP\u00daBLICA DOMINICANA VISTOS El escrito de la Comisi\u00f3n Interamericana de Derechos Humanos en adelante la Comisi\u00f3n o la Comisi\u00f3n Interamericana de de mayo de y sus Anexos mediante el cual someti\u00f3 a la Corte Interamericana de Derechos Humanos en", - "values": [ - "Corte Interamericana de Derechos Humanos" - ] - }, - { - "text": "VOTO CONCURRENTE DEL JUEZ AA. CAN\u00c7ADO TRINDADE En la memorable audiencia p\u00fablica del de agosto de ante la Corte Interamericana de Derechos Humanos las Delegaciones tanto de la Comisi\u00f3n Interamericana de Derechos Humanos como de la Rep\u00fablica Dominicana buscaron contextualizar el presente caso de los Haitianos y Dominicanos de Origen Haitiano en la Rep\u00fablica Dominicana y se\u00f1alaron en medio a muestras de una apreciada cooperaci\u00f3n procesal la gran complejidad del mismo y su car\u00e1cter de as\u00ed", - "values": [ - "Corte Interamericana de Derechos Humanos" - ] - }, - { - "text": "CORTE INTERAMERICANA DE DERECHOS HUMANOS COUR INTERAMERICAINE DES DROITS DE LHOMME A CORTE INTERAMERICANA DE DIREITOS HUMANOS INTERAMERICAN COURT OF HUMAN RIGHTS PRESIDENTE DE LA CORTE RESOLUCION DEL PRESIDENTE DE LA CORTE INTERAMERICANA DE DERECHOS HUMANOS DE DE MAYO DE CASO NADEGE DORZEMA Y OTROS VS. REPUBLICA DOMINICANA VISTO El escrito de sometimiento del case presentado por Ia Comisin Interamericana de Derechos Humanos en adelante Ia Comisin Interamericana o Ia Comisin ante Ia Corte de", - "values": [ - "Corte Interamericana de Derechos Humanos" - ] - }, - { - "text": "Corte Interamericana de Derechos Humanos Caso de las Ni\u00f1as Yean y Bosico Vs. Rep\u00fablica Dominicana Sentencia de de noviembre de Demanda de Interpretaci\u00f3n de la Sentencia de Excepciones Preliminares Fondo Reparaciones y Costas En el Caso de las Ni\u00f1as Yean y Bosico la Corte Interamericana de Derechos Humanos en adelante la Corte o el Tribunal integrada por los siguientes jueces Sergio Garc\u00eda Ram\u00edrez Presidente Alirio Abreu Burelli Vicepresidente Ant\u00f4nio A. Can\u00e7ado Trindade Juez Cecilia Medina ", - "values": [ - "Corte Interamericana de Derechos Humanos" - ] - }, - { - "text": "RESOLUCI\u00d3N DE LA CORTE INTERAMERICANA DE DERECHOS HUMANOS DE DE AGOSTO DE SOLICITUD DE MEDIDAS PROVISIONALES A FAVOR DE PERSONAS HAITIANAS Y DOMINICANAS DE ORIGEN HAITIANO EN REP\u00daBLICA DOMINICANA VISTOS El escrito de la Comisi\u00f3n Interamericana de Derechos Humanos en adelante la Comisi\u00f3n de de mayo de y sus anexos mediante el cual someti\u00f3 a la Corte Interamericana de Derechos Humanos en adelante la Corte de acuerdo con los art\u00edculos de la Convenci\u00f3n Americana sobre Derechos Humanos en la ", - "values": [ - "Corte Interamericana de Derechos Humanos" - ] - }, - { - "text": "Order of the President of the InterAmerican Court of Human Rights of May Case of DaCosta Cadogan v. Barbados Having Seen The application submitted by the InterAmerican Commission on Human Rights hereinafter the InterAmerican Commission or the Commission to the InterAmerican Court of Human Rights hereinafter the InterAmerican Court the Court or the Tribunal on October in which it offered the testimony of one witness. The brief containing pleadings motions and evidence hereinafter the by", - "values": [ - "Corte Interamericana de Derechos Humanos" - ] - }, - { - "text": "ORDER OF THE PRESIDENT OF THE INTERAMERICAN COURT OF HUMAN RIGHTS OF NOVEMBER URGENT MEASURES REQUESTED BY THE INTERAMERICAN COMMISSION ON HUMAN RIGHTS REGARDING THE STATE OF BARBADOS CASE OF TYRONE DACOSTA CADOGAN HAVING SEEN The communication of October in which the InterAmerican Commission on Human Rights hereinafter the InterAmerican Commission or the Commission submitted to the InterAmerican Court of Human Rights hereinafter the InterAmerican Court the Tribunal or the Court a request ", - "values": [ - "Corte Interamericana de Derechos Humanos" - ] - }, - { - "text": "ORDER OF THE INTERAMERICAN COURT OF HUMAN RIGHTS OF JUNE EXPANSION OF PROVISIONAL MEASURES REQUESTED BY THE INTERAMERICAN COMMISSION ON HUMAN RIGHTS REGARDING THE STATE OF BARBADOS CASE OF BOYCE ET AL. VS. BARBADOS HAVING REGARD TO The Order of the President of the InterAmerican Court of Human Rights hereinafter the InterAmerican Court the Court or the Tribunal of September regarding the State of Barbados hereinafter the State or Barbados in which the President required the State inter to", - "values": [ - "Corte Interamericana de Derechos Humanos" - ] - }, - { - "text": "ORDER OF THE INTERAMERICAN COURT OF HUMAN RIGHTS OF NOVEMBER PROVISIONAL MEASURES REQUESTED BY THE INTERAMERICAN COMMISSION ON HUMAN RIGHTS REGARDING THE STATE OF BARBADOS CASE OF BOYCE AND JOSEPH V. BARBADOS HAVING SEEN The communication of the InterAmerican Commission on Human Rights hereinafter the InterAmerican Commission or the Commission of September in which the Commission submitted to the InterAmerican Court of Human Rights hereinafter the InterAmerican Court the Court or the in ", - "values": [ - "Corte Interamericana de Derechos Humanos" - ] - }, - { - "text": "VOTO RAZONADO DEL JUEZ AA. CAN\u00c7ADO TRINDADE He estado de acuerdo con mi voto con el dictado de la presente Sentencia de la Corte Interamericana de Derechos Humanos respecto del pedido de aclaratoria de la Sentencia reca\u00edda en el caso de la Comunidad Moiwana versus Surinam s\u00f3lo porque la Corte se ha mostrado deseosa de resolver las cuestiones presentadas por el Estado y los representantes de las v\u00edctimas y sus familias y porque no disiento con la breve aclaraci\u00f3n realizada por la Corte en el ", - "values": [ - "Corte Interamericana de Derechos Humanos" - ] - }, - { - "text": "VOTO CONCURRENTE DE LA JUEZA CECILIA MEDINA Estoy de acuerdo con la decisi\u00f3n de la Corte de que se han violado los art\u00edculos y de la Convenci\u00f3n Americana todos ellos en relaci\u00f3n con el art\u00edculo de la misma y los art\u00edculos y de esa Convenci\u00f3n. Sin perjuicio de ello redacto este voto porque estimo que la Corte omiti\u00f3 declarar en la sentencia la violaci\u00f3n del art\u00edculo basada en la falta de cumplimiento por parte del Estado de su obligaci\u00f3n de investigar la privaci\u00f3n de las vidas como de la", - "values": [ - "Corte Interamericana de Derechos Humanos" - ] - }, - { - "text": "VOTO RAZONADO DEL JUEZ AA. CAN\u00c7ADO TRINDADE Aproximadamente a\u00f1os despu\u00e9s de la decisi\u00f3n de la Corte Interamericana en el caso Aloeboetoe y otros vs. Surinam de fecha de diciembre de mi primer caso ante la Corte con una pena que ha sido cumplida de manera extraordinaria por el demandado un pa\u00eds joven golpeado por la pobreza material pero rico en cuanto a manifestaciones culturales la presente Sentencia de la Corte Interamericana de Derechos Humanos en el caso Comunidad Moiwana vs. Surinam ", - "values": [ - "Corte Interamericana de Derechos Humanos" - ] - }, - { - "text": "VOTO DISIDENTE DE LOS JUECES PICADO SOTELA AGUIARARANGUREN Y CAN\u00c7ADO TRINDADE Los suscritos Jueces disentimos de la opini\u00f3n de mayor\u00eda en cuanto al punto resolutivo n\u00famero de la sentencia en el cual se desestima la responsabilidad del Estado demandado por violaci\u00f3n del derecho a la vida del se\u00f1or Asok Gangaram Panday. En nuestro criterio a partir del momento en que la Corte estableci\u00f3 aun por inferencia la responsabilidad del Estado demandado por detenci\u00f3n ilegal del se\u00f1or Gangaram Panday ", - "values": [ - "Corte Interamericana de Derechos Humanos" - ] - }, - { - "text": "VOTO CONCURRENTE DEL JUEZ EDUARDO VIO GROSSI RESOLUCI\u00d3N DE LA CORTE INTERAMERICANA DE DERECHOS HUMANOS DEL DE NOVIEMBRE DE CASO DEL PUEBLO SARAMAKA VS. SURINAM SUPERVISI\u00d3N DE CUMPLIMIENTO DE SENTENCIA Introducci\u00f3n. Quien subscribe coincide en este Voto con la Resoluci\u00f3n indicada en el t\u00edtulo en adelante la Resoluci\u00f3n en el entendido que conforme a las normas pertinentes y a la luz del extensivo y por lo tanto imprudente o irrazonable tiempo transcurrido desde el dictado de la Sentencia en ", - "values": [ - "Corte Interamericana de Derechos Humanos" - ] - }, - { - "text": "VOTO CONCURRENTE DEL JUEZ DIEGO GARC\u00cdASAY\u00c1N A LA RESOLUCI\u00d3N DE SUPERVISI\u00d3N DEL CUMPLIMIENTO CON LA SENTENCIA EN EL CASO DEL PUEBLO SARAMAKA VS. SURINAM DEL DE NOVIEMBRE DE La supervisi\u00f3n del cumplimiento de sus Sentencias es una de las facultades m\u00e1s importantes de la Corte Interamericana de Derechos Humanos para la protecci\u00f3n de los derechos humanos. La Corte Interamericana de Derechos Humanos en adelante la Corte Interamericana la Corte o el Tribunal ha ejercido esta facultad desde sus y", - "values": [ - "Corte Interamericana de Derechos Humanos" - ] - }, - { - "text": "ORDER OF THE PRESIDENT OF THE INTERAMERICAN COURT OF HUMAN RIGHTS OF APRIL CASE OF THE SARAMAKA PEOPLE V. SURINAME MONITORING COMPLIANCE WITH JUDGMENT HAVING SEEN The Judgment on preliminary objections merits reparations and costs delivered by the InterAmerican Court of Human Rights hereinafter the InterAmerican Court the Court or the Tribunal on November in which it DECLARED Unanimously that the State violated to the detriment of the members of the Saramaka people the right to property ", - "values": [ - "Corte Interamericana de Derechos Humanos" - ] - }, - { - "text": "ORDER OF THE INTERAMERICAN COURT OF HUMAN RIGHTS OF NOVEMBER CASE OF THE MOIWANA COMMUNITY V. SURINAME MONITORING COMPLIANCE WITH JUDGMENT HAVING SEEN The Judgment on preliminary objections merits reparations and costs delivered in the Case of the Moiwana Community v. Suriname by the InterAmerican Court of Human Rights hereinafter the Court the InterAmerican Court or the Tribunal on June hereinafter the Judgment or the Moiwana Judgment. The Judgment on Interpretation of the Moiwana the ", - "values": [ - "Corte Interamericana de Derechos Humanos" - ] - }, - { - "text": "Order of the President of the InterAmerican Court of Human Rights of December Case of the Moiwana Village v. Suriname Monitoring Compliance with Judgment Having seen The Judgment on the preliminary objections merits reparations and costs delivered in the Case of the Moiwana Village v. Suriname by the InterAmerican Court of Human Rights hereinafter the Court or the Tribunal on June hereinafter the Judgment or the Moiwana Judgment in which it DECLARED Unanimously that The State violated the", - "values": [ - "Corte Interamericana de Derechos Humanos" - ] - }, - { - "text": "RESOLUCI\u00d3N DE LA CORTE INTERAMERICANA DE DERECHOS HUMANOS DE DE NOVIEMBRE DE MEDIDAS PROVISIONALES RESPECTO DE VENEZUELA ASUNTOS DE DETERMINADOS CENTROS PENITENCIARIOS DE VENEZUELA HUMBERTO PRADO MARIANELA S\u00c1NCHEZ ORTIZ Y FAMILIA VISTO La Resoluci\u00f3n de la Corte Interamericana de Derechos Humanos en adelante la Corte Interamericana la Corte o el Tribunal de de noviembre de en los Asuntos del Internado Judicial de Monagas La Pica Centro Penitenciario Regi\u00f3n Capital Yare I y Yare II C\u00e1rcel de", - "values": [ - "Corte Interamericana de Derechos Humanos" - ] - }, - { - "text": "RESOLUCI\u00d3N DE LA CORTE INTERAMERICANA DE DERECHOS HUMANOS DE DE MAYO DE CASO GOIBUR\u00da Y OTROS VS. PARAGUAY SUPERVISI\u00d3N DE CUMPLIMIENTO DE SENTENCIA VISTO La Sentencia de fondo reparaciones y costas en adelante la Sentencia dictada por la Corte Interamericana de Derechos Humanos en adelante la Corte Interamericana la Corte o el Tribunal el de septiembre de En dicho fallo la Corte tom\u00f3 en cuenta el reconocimiento de responsabilidad internacional efectuado por la Rep\u00fablica del Paraguay en ", - "values": [ - "Corte Interamericana de Derechos Humanos" - ] - }, - { - "text": "Ordonnance de la Cour Interam\u00e9ricaine des Droits de lHomme du Novembre Affaire Yvon Neptune C. Ha\u00efti VU L\u00e9crit du d\u00e9cembre par lequel la Commission interam\u00e9ricaine des Droits de lHomme ciapr\u00e8s la Commission ou la Commission interam\u00e9ricaine a pr\u00e9sent\u00e9 une requ\u00eate contre l\u00c9tat dHa\u00efti ciapr\u00e8s l\u00c9tat ou Ha\u00efti devant la Cour interam\u00e9ricaine des Droits de lHomme ciapr\u00e8s la Cour la Cour interam\u00e9ricaine ou le Tribunal Les notes du Greffe de la Cour ciapr\u00e8s le Greffe du f\u00e9vrier ", - "values": [ - "Corte Interamericana de Derechos Humanos" - ] - }, - { - "text": "Voto concurrente del Juez de Roux Rengifo Creo tener razones adicionales a las planteadas en los considerandos de la resoluci\u00f3n que antecede para sustentar la decisi\u00f3n de mantener vigentes por lo menos dentro de un t\u00e9rmino razonable las medidas provisionales decretadas en relaci\u00f3n con Anthony Briggs. En el presente asunto la Corte se encuentra enfrentada a una situaci\u00f3n particular. Ha decretado unas medidas provisionales para impedir que se cause un perjuicio irreparable a una persona condenada", - "values": [ - "Corte Interamericana de Derechos Humanos" - ] - }, - { - "text": "VOTO CONCURRENTE DEL JUEZ AA. CAN\u00c7ADO TRINDADE Voto a favor de la presente Resoluci\u00f3n de la Corte Interamericana de Derechos Humanos sobre Medidas Provisionales respecto de la Rep\u00fablica de Trinidad y Tobago. En las pocas horas de que dispuso la Corte para deliberar al respecto habiendo examinado todos los escritos sometidos a su consideraci\u00f3n hasta el presente entiendo que lleg\u00f3 a una decisi\u00f3n que contribuye a la realizaci\u00f3n del objeto y prop\u00f3sito de la Convenci\u00f3n Americana sobre Derechos en ", - "values": [ - "Corte Interamericana de Derechos Humanos" - ] - }, - { - "text": "VOTO CONCURRENTE DEL JUEZ GARC\u00cdA RAM\u00cdREZ Estoy de acuerdo con los t\u00e9rminos de la Resoluci\u00f3n de la Corte para las medidas provisionales a las cuales este voto concurrente se refiere. Adem\u00e1s tomo nota de las declaraciones que constan en el expediente en el sentido de que el Estado de Trinidad y Tobago se encuentra bajo ciertos plazos establecidos judicialmente para ejecutar la pena capital el cual empieza en el momento en que la persona es condenada y sentenciada a muerte. Al respecto observo que", - "values": [ - "Corte Interamericana de Derechos Humanos" - ] - }, - { - "text": "CORTE INTERAMERICANA DE DERECHOS HUMANOS CASO V\u00c9LEZ RESTREPO Y FAMILIARES VS. COLOMBIA SENTENCIA DE DE SEPTIEMBRE DE Excepci\u00f3n Preliminar Fondo Reparaciones y Costas En el caso V\u00e9lez Restrepo y familiares la Corte Interamericana de Derechos Humanos en adelante la Corte Interamericana la Corte o el Tribunal integrada por los siguientes jueces Diego Garc\u00edaSay\u00e1n Presidente Manuel E. Ventura Robles Vicepresidente Leonardo A. Franco Juez Rhadys Abreu Blondet Jueza Alberto P\u00e9rez P\u00e9rez Juez y Vio ", - "values": [ - "Corte Interamericana de Derechos Humanos" - ] - }, - { - "text": "Corte Interamericana de Derechos Humanos Caso R\u00edos y otros vs. Venezuela Sentencia de de enero de Excepciones Preliminares Fondo Reparaciones y Costas En el caso R\u00edos y otros vs. Venezuela la Corte Interamericana de Derechos Humanos en adelante la Corte Interamericana la Corte o el Tribunal integrada por los siguientes jueces Cecilia Medina Quiroga Presidenta Sergio Garc\u00eda Ram\u00edrez Juez Manuel E. Ventura Robles Juez Leonardo A. Franco Juez Margarette May Macaulay Jueza Rhadys Abreu Blondet y", - "values": [ - "Corte Interamericana de Derechos Humanos" - ] - }, - { - "text": "VOTO DISIDENTE DEL JUEZ adhoc PIER PAOLO PASCERI SCARAMUZZA. En el caso R\u00edos y otros vs. La Rep\u00fablica Bolivariana de Venezuela Data venia del criterio de la mayor\u00eda Pier Paolo Pasceri S Juez adhoc de la Corte Interamericana de Derechos Humanos lamenta salvar su voto por tener criterio contrario tanto en la motiva como en la dispositiva a excepci\u00f3n del punto de la parte resolutiva del fallo y por tanto disentir de la mayor\u00eda de los integrantes de esta Corte cuyos votos favorables aprobaron la ", - "values": [ - "Corte Interamericana de Derechos Humanos" - ] - }, - { - "text": "CORTE INTERAMERICANA DE DERECHOS HUMANOS CASO G\u00d3MEZ MURILLO Y OTROS VS. COSTA RICA SENTENCIA DE DE NOVIEMBRE En el caso G\u00f3mez Murillo y otros la Corte Interamericana de Derechos Humanos en adelante la Corte Interamericana la Corte o este Tribunal integrada por los siguientes jueces Roberto F. Caldas Presidente Eduardo Ferrer MacGregor Poisot Vicepresidente Eduardo Vio Grossi Juez Humberto Antonio Sierra Porto Juez Eugenio Raul Zaffaroni Juez y L. Patricio Pazmino Freire Juez presentes ademas", - "values": [ - "Corte Interamericana de Derechos Humanos" - ] - }, - { - "text": "VOTO INDIVIDUAL DISIDENTE DEL JUEZ EDUARDO VIO GROSSI CORTE INTERAMERICANA DE DERECHOS HUMANOS CASO G\u00d3MEZ MURILLO Y OTROS VS. COSTA RICA SENTENCIA DE DE NOVIEMBRE DE Introducci\u00f3n. Se emite el presente voto individual disidente respecto de la Sentencia del ep\u00edgrafe en atenci\u00f3n a que no se comparte lo resuelto en ella en orden a homologar el Acuerdo de arreglo amistoso suscrito entre el Estado de Costa Rica y la parte demandante suscrito por Costa Rica y el representante de las v\u00edctimas por ", - "values": [ - "Corte Interamericana de Derechos Humanos" - ] - }, - { - "text": "INFORME N\u00ba PETICI\u00d3N ADMISIBILIDAD MIRYAM EUGENIA RUA FIGUEROA Y OTROS COMUNA COLOMBIA de febrero de I. RESUMEN El de octubre de la Comisi\u00f3n Interamericana de Derechos Humanos en adelante la Comisi\u00f3n recibi\u00f3 una petici\u00f3n presentada por el Grupo Interdisciplinario por los Derechos Humanos los peticionarios en la cual se alega que miembros de grupos paramilitares con la aquiescencia y participaci\u00f3n de agentes de la Rep\u00fablica de Colombia en adelante el Estado el Estado colombiano o Colombia", - "values": [ - "Comisi\u00f3n Interamericana de Derechos Humanos" - ] - }, - { - "text": "INFORME N\u00ba PETICI\u00d3N ADMISIBILIDAD LUZ DARY OSPINA BASTIDAS Y OTROS COMUNA COLOMBIA de febrero de I. RESUMEN El de octubre de la Comisi\u00f3n Interamericana de Derechos Humanos en adelante la Comisi\u00f3n recibi\u00f3 una petici\u00f3n presentada por el Grupo Interdisciplinario por los Derechos Humanos los peticionarios en la cual se alega que miembros de grupos paramilitares con la aquiescencia y participaci\u00f3n de agentes de la Rep\u00fablica de Colombia en adelante el Estado el Estado colombiano o Colombia ", - "values": [ - "Comisi\u00f3n Interamericana de Derechos Humanos" - ] - }, - { - "text": "INFORME N\u00ba PETICI\u00d3N ADMISIBILIDAD LUIS WILLIAMS POLLO RIVERA PER\u00da de julio de I. RESUMEN El de febrero de la Comisi\u00f3n Interamericana de Derechos Humanos en adelante la Comisi\u00f3n o la Comisi\u00f3n Interamericana o la CIDH recibi\u00f3 una petici\u00f3n presentada por Carolina Loayza Tamayo en adelante la peticionaria y por Luis Williams Pollo Rivera en nombre propio en adelante la presunta v\u00edctima yo el peticionario en la cual se alega la responsabilidad internacional de la Republica de Per\u00fa en adelante", - "values": [ - "Comisi\u00f3n Interamericana de Derechos Humanos" - ] - }, - { - "text": "INFORME No. PETICI\u00d3N ADMISIBILIDAD AGUST\u00cdN BLADIMIRO ZEGARRA MAR\u00cdN PER\u00da de marzo de I. RESUMEN El de mayo de la Comisi\u00f3n Interamericana de Derechos Humanos en adelante tambi\u00e9n la Comisi\u00f3n Interamericana la Comisi\u00f3n o la CIDH recibi\u00f3 una petici\u00f3n presentada en nombre propio por el se\u00f1or Agust\u00edn Bladimiro Zegarra Mar\u00edn en adelante tambi\u00e9n el peticionario o la presunta v\u00edctima en la cual se alega la violaci\u00f3n por parte de la Rep\u00fablica de Per\u00fa en adelante tambi\u00e9n Per\u00fa el Estado o el Estado ", - "values": [ - "Comisi\u00f3n Interamericana de Derechos Humanos" - ] - }, - { - "text": "INFORME N\u00ba CASO FAVELA NOVA BRASILIA BRASIL de septiembre de I. INTRODUCCI\u00d3N El de noviembre de la Comisi\u00f3n Interamericana de Derechos Humanos en adelante la Comisi\u00f3n recibi\u00f3 una denuncia del Centro por la Justicia y el Derecho Internacional CEJIL alegando la violaci\u00f3n de derechos protegidos en la Convenci\u00f3n Americana sobre Derechos Humanos en adelante la Convenci\u00f3n por parte de la Rep\u00fablica Federativa del Brasil en adelante el Estado el Estado brasile\u00f1o o Brasil en perjuicio de Cosme ", - "values": [ - "Comisi\u00f3n Interamericana de Derechos Humanos" - ] - }, - { - "text": "INFORME No. PETICI\u00d3N ADMISIBILIDAD MAR\u00cdA NINA LUPE DEL ROSARIO ANDRADE SALM\u00d3N BOLIVIA de marzo de I. RESUMEN El de abril de la Comisi\u00f3n Interamericana de Derechos Humanos en adelante tambi\u00e9n la Comisi\u00f3n Interamericana la Comisi\u00f3n o la CIDH recibi\u00f3 una petici\u00f3n presentada por Coty Krsul Andrade en adelante tambi\u00e9n los peticionarios en representaci\u00f3n de la se\u00f1ora Mar\u00eda Nina Lupe del Rosario Andrade Salm\u00f3n en adelante tambi\u00e9n la presunta v\u00edctima o la se\u00f1ora Andrade en la cual se alega la ", - "values": [ - "Comisi\u00f3n Interamericana de Derechos Humanos" - ] - }, - { - "text": "INFORME N\u00ba CASO EVANDRO DE OLIVEIRA Y OTROS BRASIL de febrero de I. RESUMEN El de julio de la Comisi\u00f3n Interamericana de Derechos Humanos en adelante la Comisi\u00f3n o la CIDH recibi\u00f3 una denuncia del Centro para la Justicia y el Derecho Internacional CEJIL y de Human Rights WatchAmericas en adelante los peticionarios contra la Rep\u00fablica Federativa del Brasil en adelante Estado o Brasil por la presunta ejecuci\u00f3n extrajudicial de Evandro de Oliveira Andre Luis Neri da Silva Alberto dos Santos", - "values": [ - "Comisi\u00f3n Interamericana de Derechos Humanos" - ] - }, - { - "text": "INFORME N\u00ba PETICI\u00d3N ADMISIBILIDAD IV BOLIVIA de julio de I. RESUMEN El de marzo de la Comisi\u00f3n Interamericana de Derechos Humanos en adelante la Comisi\u00f3n Interamericana la Comisi\u00f3n o la CIDH recibi\u00f3 una petici\u00f3n presentada por el Defensor del Pueblo de la Rep\u00fablica de Bolivia en adelante el peticionario en nombre de IV. en adelante la presunta v\u00edctima en la que se alega la responsabilidad internacional del Estado de Bolivia en adelante el Estado o el Estado boliviano por haber sometido a", - "values": [ - "Comisi\u00f3n Interamericana de Derechos Humanos" - ] - }, - { - "text": "INFORME No. PETICI\u00d3N ADMISIBILIDAD HOMERO FLOR FREIRE ECUADOR de marzo de I. RESUMEN El de agosto de la Comisi\u00f3n Interamericana de Derechos Humanos en adelante la Comisi\u00f3n recibi\u00f3 una petici\u00f3n presentada por Alejandro Ponce Villac\u00eds y Juan Manuel March\u00e1n en adelante los peticionarios en la cual se alega la responsabilidad de la Rep\u00fablica del Ecuador por la baja de Homero Flor Freire Oficial de Polic\u00eda Militar de la Fuerza Terrestre Ecuatoriana en adelante Ej\u00e9rcito en virtud de la de ", - "values": [ - "Comisi\u00f3n Interamericana de Derechos Humanos" - ] - }, - { - "text": "INFORME No. PETICI\u00d3N ADMISIBILIDAD ALLAN R. BREWER CAR\u00cdAS VENEZUELA de septiembre de I. RESUMEN El de enero de la Comisi\u00f3n Interamericana de Derechos Humanos en adelante tambi\u00e9n la Comisi\u00f3n recibi\u00f3 una petici\u00f3n presentada por Pedro Nikken H\u00e9lio Bicudo Claudio Grossman Juan M\u00e9ndez Douglass Cassel y H\u00e9ctor Fa\u00fandez en adelante los peticionarios en la cual se alega que los tribunales de la Rep\u00fablica Bolivariana de Venezuela en adelante el Estado son responsables por la persecuci\u00f3n pol\u00edtica ", - "values": [ - "Comisi\u00f3n Interamericana de Derechos Humanos" - ] - }, - { - "text": "INFORME No. PETICI\u00d3N ADMISIBILIDAD MARCEL GRANIER Y OTROS VENEZUELA de julio de I. RESUMEN El \u00ba de marzo de la Comisi\u00f3n Interamericana de Derechos Humanos en adelante la Comisi\u00f3n o la CIDH recibi\u00f3 una petici\u00f3n presentada por Carlos Ayala Corao y Pedro Nikken en adelante los peticionarios en la cual alegaron la responsabilidad de la Rep\u00fablica Bolivariana de Venezuela en adelante el Estado o el Estado venezolano por las violaciones de derechos humanos en perjuicio del se\u00f1or Marcel Granier y", - "values": [ - "Comisi\u00f3n Interamericana de Derechos Humanos" - ] - }, - { - "text": "INFORME No. PETICI\u00d3N ADMISIBILIDAD IGMAR ALEXANDER LANDAETA MEJ\u00cdAS VENEZUELA de marzo de I. RESUMEN El de septiembre de la Comisi\u00f3n Interamericana de Derechos Humanos en adelante tambi\u00e9n la Comisi\u00f3n Interamericana la Comisi\u00f3n o la CIDH recibi\u00f3 una denuncia presentada por la organizaci\u00f3n no gubernamental Comisi\u00f3n de Derechos Humanos de Justicia y Paz del Estado Aragua en adelante tambi\u00e9n el peticionario en representaci\u00f3n de las presuntas v\u00edctimas el fallecido Igmar Alexander Landaeta y ", - "values": [ - "Comisi\u00f3n Interamericana de Derechos Humanos" - ] - }, - { - "text": "INFORME No. PETICI\u00d3N ADMISIBILIDAD PUEBLO IND\u00cdGENA KUNA DE MADUNGANDI Y EMBER\u00c1 DE BAYANO Y SUS MIEMBROS PANAM\u00c1 de abril I. RESUMEN El de mayo de la Comisi\u00f3n Interamericana de Derechos Humanos en adelante la Comisi\u00f3n Interamericana la Comisi\u00f3n o la CIDH recibi\u00f3 una denuncia presentada por el International Human Rights Law Clinic of the Washington College of Law el Centro de Asistencia Legal Popular CEALP la Asociaci\u00f3n Napguana y Emily Yozell en adelante los peticionarios en favor de los ", - "values": [ - "Comisi\u00f3n Interamericana de Derechos Humanos" - ] - }, - { - "text": "INFORME No. PETICI\u00d3N ADMISIBILIDAD DANIEL GERARDO GOMEZ AIDA MARCELA GARITA Y OTROS COSTA RICA \u00ba de noviembre de I. RESUMEN La Comisi\u00f3n Interamericana de Derechos Humanos en adelante Comisi\u00f3n o Comisi\u00f3n Interamericana o CIDH recibi\u00f3 cinco peticiones presentadas por Gerardo Trejos Salas en adelante el peticionario el de diciembre de en nombre de Daniel Gerardo G\u00f3mez Murillo y A\u00edda Marcela Garita S\u00e1nchez P el de diciembre de en nombre de Roberto P\u00e9rez Guti\u00e9rrez y Silvia Mar\u00eda Sosa Ulate ", - "values": [ - "Comisi\u00f3n Interamericana de Derechos Humanos" - ] - }, - { - "text": "RESOLUCI\u00d3N DE LA CORTE INTERAMERICANA DE DERECHOS HUMANOS DE DE AGOSTO DE CASO KAWAS FERN\u00c1NDEZ Y CASO LUNA L\u00d3PEZ VS. HONDURAS SUPERVISI\u00d3N DE CUMPLIMIENTO DE SENTENCIAS RESPECTO DE REPARACIONES RELATIVAS A LA PROTECCI\u00d3N DE PERSONAS DEFENSORAS DE DERECHOS HUMANOS EN PARTICULAR DEL MEDIO AMBIENTE Y OBLIGACI\u00d3N DE INVESTIGAR JUZGAR Y DE SER EL CASO SANCIONAR VISTO Las Sentencias emitidas por la Corte Interamericana de Derechos Humanos en adelante la Corte Interamericana la Corte o el Tribunal el ", - "values": [ - "Corte Interamericana de Derechos Humanos" - ] - }, - { - "text": "RESOLUCI\u00d3N DE LA CORTE INTERAMERICANA DE DERECHOS HUMANOS DE DE AGOSTO DE CASO OMAR HUMBERTO MALDONADO VARGAS Y OTROS VS. CHILE SUPERVISI\u00d3N DE CUMPLIMIENTO DE SENTENCIA VISTO La Sentencia de fondo reparaciones y costas en adelante la Sentencia dictada por la Corte Interamericana de Derechos Humanos en adelante la Corte Interamericana la Corte o el Tribunal el de septiembre de La Corte declar\u00f3 la responsabilidad internacional de la Rep\u00fablica de Chile en adelante el Estado o Chile por la ", - "values": [ - "Corte Interamericana de Derechos Humanos" - ] - }, - { - "text": "RESOLUCI\u00d3N DE LA CORTE INTERAMERICANA DE DERECHOS HUMANOS DE DE AGOSTO DE CASO DEFENSOR DE DERECHOS HUMANOS Y OTROS VS. GUATEMALA SUPERVISI\u00d3N DE CUMPLIMIENTO DE SENTENCIA VISTO La Sentencia de excepciones preliminares fondo reparaciones y costas en adelante la Sentencia dictada por la Corte Interamericana de Derechos Humanos en adelante la Corte la Corte Interamericana o el Tribunal el de agosto de La Corte declar\u00f3 responsable internacionalmente a la Rep\u00fablica de Guatemala en adelante el", - "values": [ - "Corte Interamericana de Derechos Humanos" - ] - }, - { - "text": "RESOLUCI\u00d3N DE LA CORTE INTERAMERICANA DE DERECHOS HUMANOS DE DE AGOSTO DE CASO V\u00c9LIZ FRANCO VS. GUATEMALA SUPERVISI\u00d3N DE CUMPLIMIENTO DE SENTENCIA VISTO La Sentencia de excepciones preliminares fondo reparaciones y costas en adelante la Sentencia dictada por la Corte Interamericana de Derechos Humanos en adelante la Corte la Corte Interamericana o este Tribunal el de mayo de La Corte declar\u00f3 responsable internacionalmente a la Rep\u00fablica de Guatemala en adelante el Estado o Guatemala por ", - "values": [ - "Corte Interamericana de Derechos Humanos" - ] - }, - { - "text": "CORTE INTERAMERICANA DE DERECHOS HUMANOS CASO TRABAJADORES DE LA HACIENDA BRASIL VERDE VS. BRASIL SENTENCIA DE DE AGOSTO DE Interpretaci\u00f3n de la Sentencia de Excepciones Preliminares Fondo Reparaciones y Costas En el caso Trabajadores de la Hacienda Brasil Verde la Corte Interamericana de Derechos Humanos en adelante la Corte Interamericana la Corte o el Tribunal integrada por los siguientes jueces Eduardo Ferrer MacGregor Poisot Presidente en ejercicio Eduardo Vio Grossi Vicepresidente en ", - "values": [ - "Corte Interamericana de Derechos Humanos" - ] - }, - { - "text": "RESOLUCI\u00d3N DE LA CORTE INTERAMERICANA DE DERECHOS HUMANOS DE DE AGOSTO DE SOLICITUD DE MEDIDAS PROVISIONALES RESPECTO DE LA REP\u00daBLICA DE COLOMBIA CASO GUTI\u00c9RREZ SOLER VISTO La Sentencia de fondo reparaciones y costas de de septiembre de mediante la cual la Corte Interamericana de Derechos Humanos en adelante tambi\u00e9n la Corte Interamericana la Corte o este Tribunal declar\u00f3 responsable internacionalmente a la Rep\u00fablica de Colombia en adelante el Estado o Colombia por la violaci\u00f3n de los a", - "values": [ - "Corte Interamericana de Derechos Humanos" - ] - }, - { - "text": "RESOLUCI\u00d3N DE LA CORTE INTERAMERICANA DE DERECHOS HUMANOS DE DE AGOSTO DE MEDIDAS PROVISIONALES RESPECTO DE LA REP\u00daBLICA DE COLOMBIA ASUNTO MERY NARANJO Y OTROS VISTO Las Resoluciones dictadas por la Corte Interamericana de Derechos Humanos en adelante la Corte Interamericana la Corte o el Tribunal los d\u00edas de julio y de septiembre de de enero de de noviembre de y de marzo de as\u00ed como la Sentencia sobre el caso Yarce y otras Vs. Colombia. En la \u00faltima Resoluci\u00f3n la Corte resolvi\u00f3 ", - "values": [ - "Corte Interamericana de Derechos Humanos" - ] - }, - { - "text": "VOTO CONCURRENTE DEL JUEZ EDUARDO VIO GROSSI RESOLUCI\u00d3N DE LA CORTE INTERAMERICANA DE DERECHOS HUMANOS DE DE AGOSTO DE MEDIDAS PROVISIONALES RESPECTO DE LA REP\u00daBLICA DE COLOMBIA ASUNTO MERY NARANJO Y OTROS. Se concurre con este voto a la Resoluci\u00f3n del ep\u00edgrafe en atenci\u00f3n a que en el presente asunto por una parte las medidas provisionales se decretaron antes de que el Caso Yarce y Otras Vs. Colombia a cuyo expediente se integr\u00f3 el de aquellas fuese sometido a la Corte y por la otra parte a ", - "values": [ - "Corte Interamericana de Derechos Humanos" - ] - }, - { - "text": "RESOLUCI\u00d3N DE LA CORTE INTERAMERICANA DE DERECHOS HUMANOS DE DE AGOSTO DE AMPLIACI\u00d3N DE MEDIDAS PROVISIONALES RESPECTO NICARAGUA ASUNTO POBLADORES DE LAS COMUNIDADES DEL PUEBLO IND\u00cdGENA MISKITU DE LA REGI\u00d3N COSTA CARIBE NORTE VISTOS La Resoluci\u00f3n de la Corte Interamericana de Derechos Humanos en adelante tambi\u00e9n la Corte Interamericana la Corte o el Tribunal de de septiembre de mediante la cual orden\u00f3 al Estado de Nicaragua inter alia i erradicar la violencia y proteger la vida integridad ", - "values": [ - "Corte Interamericana de Derechos Humanos" - ] - }, - { - "text": "RESOLUCI\u00d3N DEL PRESIDENTE DE LA CORTE INTERAMERICANA DE DERECHOS HUMANOS DE DE OCTUBRE DE CASO VILLAMIZAR DUR\u00c1N Y OTROS VS. COLOMBIA VISTO La Resoluci\u00f3n del Presidente de la Corte Interamericana de Derechos Humanos en adelante el Presidente de de septiembre de en adelante la Resoluci\u00f3n del Presidente mediante la cual inter alia orden\u00f3 la recepci\u00f3n de diversas declaraciones testimoniales a t\u00edtulo informativo de presuntas v\u00edctimas y periciales mediante afid\u00e1vit y convoc\u00f3 a la Comisi\u00f3n de ", - "values": [ - "Corte Interamericana de Derechos Humanos" - ] - }, - { - "text": "RESOLUCI\u00d3N DEL PRESIDENTE DE LA CORTE INTERAMERICANA DE DERECHOS HUMANOS DE DE SEPTIEMBRE DE CASO VILLAMIZAR DUR\u00c1N Y OTROS VS. COLOMBIA CONVOCATORIA A LA AUDIENCIA P\u00daBLICA VISTO El escrito de sometimiento del caso y el Informe de Fondo de la Comisi\u00f3n Interamericana de Derechos Humanos en adelante la Comisi\u00f3n Interamericana o la Comisi\u00f3n los escritos de solicitudes argumentos y pruebas en adelante los escritos de solicitudes y argumentos de los representantes de las presuntas v\u00edctimas en los", - "values": [ - "Corte Interamericana de Derechos Humanos" - ] - }, - { - "text": "RESOLUCI\u00d3N DEL PRESIDENTE DE LA CORTE INTERAMERICANA DE DERECHOS HUMANOS DE DE SEPTIEMBRE DE CASO VRP. Y VPC VS. NICARAGUA CONVOCATORIA A AUDIENCIA VISTO El escrito de sometimiento del caso y el Informe de Fondo No. de la Comisi\u00f3n Interamericana de Derechos Humanos en adelante la Comisi\u00f3n Interamericana o la Comisi\u00f3n el escrito de solicitudes argumentos y pruebas en adelante el escrito de solicitudes y argumentos de las representantes y el escrito de contestaci\u00f3n al sometimiento del caso y", - "values": [ - "Corte Interamericana de Derechos Humanos" - ] - }, - { - "text": "RESOLUCI\u00d3N DEL PRESIDENTE DE LA CORTE INTERAMERICANA DE DERECHOS HUMANOS DE SEPTIEMBRE DE CASO POBLETE VILCHES Y OTROS VS. CHILE CONVOCATORIA A AUDIENCIA VISTO El escrito de sometimiento del caso y el Informe de Fondo de la Comisi\u00f3n Interamericana de Derechos Humanos en adelante la Comisi\u00f3n Interamericana o la Comisi\u00f3n el escrito de solicitudes argumentos y pruebas en adelante el escrito de solicitudes y argumentos de las defensoras p\u00fablicas interamericanas del se\u00f1or Poblete y familiares en ", - "values": [ - "Corte Interamericana de Derechos Humanos" - ] - }, - { - "text": "RESOLUCI\u00d3N DE LA CORTE INTERAMERICANA DE DERECHOS HUMANOS CASO FLOR FREIRE VS. ECUADOR DE DE AGOSTO DE VISTO La Sentencia de excepci\u00f3n preliminar fondo reparaciones y costas en adelante la Sentencia emitida por la Corte Interamericana de Derechos Humanos en adelante la Corte Interamericana la Corte o este Tribunal el de agosto de la cual fue notificada a las partes y a la Comisi\u00f3n Interamericana de Derechos Humanos en adelante la Comisi\u00f3n Interamericana o la Comisi\u00f3n el de noviembre del ", - "values": [ - "Corte Interamericana de Derechos Humanos" - ] - }, - { - "text": "RESOLUCI\u00d3N DE LA CORTE INTERAMERICANA DE DERECHOS HUMANOS DE DE AGOSTO DE CASO MASACRES DE EL MOZOTE Y LUGARES ALEDA\u00d1OS VS. EL SALVADOR SUPERVISI\u00d3N DE CUMPLIMIENTO DE SENTENCIA VISTO La Sentencia de fondo reparaciones y costas en adelante la Sentencia dictada por la Corte Interamericana de Derechos Humanos en adelante la Corte Interamericana la Corte o el Tribunal el de octubre de El caso se refiri\u00f3 a las violaciones a derechos humanos perpetradas por la Fuerza Armada salvadore\u00f1a en las ", - "values": [ - "Corte Interamericana de Derechos Humanos" - ] - }, - { - "text": "RESOLUCI\u00d3N DE LA CORTE INTERAMERICANA DE DERECHOS HUMANOS DE AGOSTO DE MEDIDAS PROVISIONALES RESPECTO DE BRASIL ASUNTO DEL INSTITUTO PENAL PL\u00c1CIDO DE S\u00c1 CARVALHO VISTO La Resoluci\u00f3n emitida por la Corte Interamericana de Derechos Humanos en adelante la Corte Interamericana la Corte o el Tribunal el de febrero de en la cual entre otros se requiri\u00f3 a la Rep\u00fablica Federativa de Brasil en adelante Brasil o el Estado adoptar de forma inmediata todas las medidas que fueran necesarias para la ", - "values": [ - "Corte Interamericana de Derechos Humanos" - ] - }, - { - "text": "RESOLUCI\u00d3N DE LA CORTE INTERAMERICANA DE DERECHOS HUMANOS DE DE AGOSTO DE CASOS DE LAS COMUNIDADES IND\u00cdGENAS YAKYE AXA SAWHOYAMAXA Y X\u00c1KMOK K\u00c1SEK VS. PARAGUAY SUPERVISI\u00d3N DE CUMPLIMIENTO DE SENTENCIAS VISTO Las Sentencias de fondo reparaciones y costas emitidas por la Corte Interamericana de Derechos Humanos en adelante la Corte la Corte Interamericana o el Tribunal los d\u00edas de junio de de marzo de y de agosto de en adelante las Sentencias respectivamente en los casos de las Yakye ", - "values": [ - "Corte Interamericana de Derechos Humanos" - ] - }, - { - "text": "RESOLUCI\u00d3N DE LA CORTE INTERAMERICANA DE DERECHOS HUMANOS DE DE AGOSTO DE CASO V\u00c9LEZ RESTREPO Y FAMILIARES VS. COLOMBIA SUPERVISI\u00d3N DE CUMPLIMIENTO DE SENTENCIA VISTO La Sentencia de excepci\u00f3n preliminar fondo reparaciones y costas en adelante la Sentencia dictada por la Corte Interamericana de Derechos Humanos en adelante la Corte Interamericana la Corte o el Tribunal el de septiembre de En dicho fallo la Corte tom\u00f3 en cuenta el reconocimiento parcial de responsabilidad efectuado por la ", - "values": [ - "Corte Interamericana de Derechos Humanos" - ] - }, - { - "text": "RESOLUCI\u00d3N DE LA CORTE INTERAMERICANA DE DERECHOS HUMANOS DE DE AGOSTO DE CASO GARRIDO Y BAIGORRIA VS. ARGENTINA SUPERVISI\u00d3N DE CUMPLIMIENTO DE SENTENCIA VISTO Las Sentencias de fondo en adelante la Sentencia y de reparaciones y costas en adelante la Sentencia de reparaciones dictadas por la Corte Interamericana de Derechos Humanos en adelante la Corte Interamericana la Corte o el Tribunal respectivamente los d\u00edas de febrero de y de agosto de En la Sentencia la Corte acept\u00f3 el de de ", - "values": [ - "Corte Interamericana de Derechos Humanos" - ] - }, - { - "text": "RESOLUCI\u00d3N DE LA CORTE INTERAMERICANA DE DERECHOS HUMANOS DE DE AGOSTO DE CASO MALDONADO ORDO\u00d1EZ VS. GUATEMALA SUPERVISI\u00d3N DE CUMPLIMIENTO DE SENTENCIA VISTO La Sentencia de excepci\u00f3n preliminar fondo reparaciones y costas en adelante la Sentencia dictada por la Corte Interamericana de Derechos Humanos en adelante la Corte Interamericana la Corte o el Tribunal el de mayo de En dicho fallo la Corte encontr\u00f3 responsable internacionalmente a la Rep\u00fablica de Guatemala en adelante el Estado o ", - "values": [ - "Corte Interamericana de Derechos Humanos" - ] - }, - { - "text": "CORTE INTERAMERICANA DE DERECHOS HUMANOS CASO GUTI\u00c9RREZ HERN\u00c1NDEZ Y OTROS VS. GUATEMALA SENTENCIA DE DE AGOSTO DE Excepciones Preliminares Fondo Reparaciones y Costas En el caso Guti\u00e9rrez Hern\u00e1ndez y otros la Corte Interamericana de Derechos Humanos en adelante la Corte Interamericana la Corte o el Tribunal integrada por los siguientes jueces Eduardo Ferrer MacGregor Poisot Presidente en ejercicio Eduardo Vio Grossi Juez Humberto Antonio Sierra Porto Juez Elizabeth Odio Benito Jueza Eugenio ", - "values": [ - "Corte Interamericana de Derechos Humanos" - ] - }, - { - "text": "INFORME No. CASO FONDO LUIS ROLANDO CUSCUL PIVARAL Y OTRAS PERSONAS CON VIHSIDA GUATEMALA DE ABRIL DE I. RESUMEN El de agosto de la Comisi\u00f3n Interamericana de Derechos Humanos en adelante la Comisi\u00f3n Interamericana la Comisi\u00f3n o la CIDH recibi\u00f3 una petici\u00f3n presentada por el Centro por la Justicia y el Derecho Internacional CEJIL la Red Nacional de Personas que Viven con el VIHSIDA la Asociaci\u00f3n Gente Unida el Proyecto Vida la Fundaci\u00f3n Preventiva del SIDA Fernando Iturbide y la de ", - "values": [ - "Comisi\u00f3n Interamericana de Derechos Humanos" - ] - }, - { - "text": " de diciembre de REF Caso N\u00ba Luis Rolando Cuscul Pivaral y Otros Guatemala Se\u00f1or Secretario Tengo el agrado de dirigirme a usted en nombre de la Comisi\u00f3n Interamericana de Derechos Humanos con el objeto de someter a la jurisdicci\u00f3n de la Honorable Corte Interamericana de Derechos Humanos el Caso N\u00ba Luis Rolando Cuscul Pivaral y Otros respecto de la Rep\u00fablica de Guatemala en adelante el Estado el Estado de Guatemala el Estado guatemalteco o Guatemala relacionado con su responsabilidad por ", - "values": [ - "Comisi\u00f3n Interamericana de Derechos Humanos" - ] - }, - { - "text": "RESOLUCI\u00d3N DE LA CORTE INTERAMERICANA DE DERECHOS HUMANOS DE DE OCTUBRE DE CASO VILLAMIZAR DUR\u00c1N Y OTROS VS. COLOMBIA VISTO La Resoluci\u00f3n del Presidente de la Corte Interamericana de Derechos Humanos en adelante el Presidente de de septiembre de en adelante la Resoluci\u00f3n del Presidente mediante la cual inter alia orden\u00f3 la recepci\u00f3n de diversas declaraciones testimoniales y periciales mediante afid\u00e1vit y convoc\u00f3 a la Comisi\u00f3n Interamericana de Derechos Humanos en adelante la Comisi\u00f3n o la", - "values": [ - "Corte Interamericana de Derechos Humanos" - ] - }, - { - "text": "RESOLUCI\u00d3N DE LA CORTE INTERAMERICANA DE DERECHOS HUMANOS DE DE OCTUBRE DE CASO VILLAMIZAR DUR\u00c1N Y OTROS VS. COLOMBIA VISTO La Resoluci\u00f3n del Presidente de la Corte Interamericana de Derechos Humanos en adelante el Presidente de de septiembre de en adelante la Resoluci\u00f3n del Presidente mediante la cual inter alia orden\u00f3 la recepci\u00f3n de diversas declaraciones testimoniales y periciales mediante affid\u00e1vit y convoc\u00f3 a la Comisi\u00f3n Interamericana de Derechos Humanos en adelante la Comisi\u00f3n o ", - "values": [ - "Corte Interamericana de Derechos Humanos" - ] - }, - { - "text": "RESOLUCI\u00d3N DE LA CORTE INTERAMERICANA DE DERECHOS HUMANOS DE DE OCTUBRE DE CASO FONTEVECCHIA y DAMICO VS. ARGENTINA SUPERVISI\u00d3N DE CUMPLIMIENTO DE SENTENCIA VISTO La Sentencia de fondo reparaciones y costas en adelante la Sentencia o el Fallo dictada por la Corte Interamericana de Derechos Humanos en adelante la Corte la Corte Interamericana o el Tribunal el de noviembre de La Corte declar\u00f3 responsable internacionalmente a la Rep\u00fablica Argentina en adelante el Estado o Argentina por la ", - "values": [ - "Corte Interamericana de Derechos Humanos" - ] - }, - { - "text": "RESOLUCI\u00d3N DEL PRESIDENTE DE LA CORTE INTERAMERICANA DE DERECHOS HUMANOS DE DE OCTUBRE DE CASO SELVAS G\u00d3MEZ Y OTRAS VS. M\u00c9XICO CONVOCATORIA A AUDIENCIA VISTO El escrito de sometimiento del caso y el Informe de Fondo de la Comisi\u00f3n Interamericana de Derechos Humanos en adelante la Comisi\u00f3n Interamericana o la Comisi\u00f3n el escrito de solicitudes argumentos y pruebas en adelante el escrito de solicitudes y argumentos de los representantes en adelante los representantes el escrito de al del y", - "values": [ - "Corte Interamericana de Derechos Humanos" - ] - }, - { - "text": "INFORME No. CASOS y DESAPARICIONES FORZADAS EN PER\u00da INFORME DE FONDO Caso Teresa D\u00edaz Aparicio Caso Santiago Antezana Cueto Caso Cory Clodolia Tenicela Tello INFORME DE ADMISIBILIDAD Y FONDO Caso Wilfredo Terrones Silva y Caso N\u00e9stor Rojas Medina PER\u00da DE ABRIL DE I. RESUMEN Entre agosto de y junio de la Comisi\u00f3n Interamericana de Derechos Humanos en adelante la Comisi\u00f3n la Comisi\u00f3n Interamericana o la CIDH recibi\u00f3 cinco peticiones en las cuales se aleg\u00f3 la responsabilidad del ", - "values": [ - "Comisi\u00f3n Interamericana de Derechos Humanos" - ] - }, - { - "text": " de noviembre de Ref Casos Desapariciones forzadas en Per\u00fa y Wilfredo Terrones Silva Teresa D\u00edaz Aparicio Santiago Antezana Cueto N\u00e9stor Rojas Medina y Cory Clodolia Tenicela Tello Per\u00fa Se\u00f1or Secretario Tengo el agrado de dirigirme a usted en nombre de la Comisi\u00f3n Interamericana de Derechos Humanos con el objeto de someter a la jurisdicci\u00f3n de la Honorable Corte Interamericana de Derechos Humanos los casos acumulados y Desapariciones forzadas en Per\u00fa respecto de la Rep\u00fablica de en", - "values": [ - "Comisi\u00f3n Interamericana de Derechos Humanos" - ] - }, - { - "text": " de agosto de REF Caso N\u00ba Vinicio Antonio Poblete Vilches y familiares Chile Se\u00f1or Secretario Tengo el agrado de dirigirme a usted en nombre de la Comisi\u00f3n Interamericana de Derechos Humanos con el objeto de presentar a la jurisdicci\u00f3n de la Honorable Corte Interamericana de Derechos Humanos el caso Vinicio Antonio Poblete Vilches y familiares respecto de la Rep\u00fablica de Chile en adelante el Estado el Estado chileno o Chile relacionado con las diversas acciones y omisiones que tuvieron el", - "values": [ - "Comisi\u00f3n Interamericana de Derechos Humanos" - ] - }, - { - "text": "INFORME No. CASO FONDO VINICIO ANTONIO POBLETE TAPIA Y FAMILIARES CHILE DE ABRIL DE I. RESUMEN El de mayo de la Comisi\u00f3n Interamericana de Derechos Humanos en adelante la Comisi\u00f3n la CIDH o la Comisi\u00f3n Interamericana recibi\u00f3 una petici\u00f3n presentada por Blanca Margarita Tapia Encina Cesia Leyla Poblete Tapia y Vinicio Antonio Poblete Tapia en adelante los peticionarios contra la Rep\u00fablica de Chile en lo sucesivo Chile o el Estado en relaci\u00f3n con la muerte del se\u00f1or Vinicio Antonio Poblete", - "values": [ - "Comisi\u00f3n Interamericana de Derechos Humanos" - ] - }, - { - "text": " de agosto de REF Caso No. VRP. y VPC Nicaragua Se\u00f1or Secretario Tengo el agrado de dirigirme a usted en nombre de la Comisi\u00f3n Interamericana de Derechos Humanos con el objeto de presentar a la jurisdicci\u00f3n de la Honorable Corte Interamericana de Derechos Humanos el caso VRP y VPC respecto de la Rep\u00fablica de Nicaragua en adelante el Estado el Estado nicarag\u00fcense o Nicaragua relacionado con la violaci\u00f3n sexual sufrida por la ni\u00f1a VRP quien al momento de los hechos ten\u00eda nueve a\u00f1os de edad y ", - "values": [ - "Comisi\u00f3n Interamericana de Derechos Humanos" - ] - }, - { - "text": "INFORME No. CASO INFORME DE FONDO VRP Y VPC NICARAGUA DE ABRIL DE I. RESUMEN El de octubre de la Comisi\u00f3n Interamericana de Derechos Humanos en adelante la Comisi\u00f3n Interamericana la Comisi\u00f3n o la CIDH recibi\u00f3 una petici\u00f3n presentada por la se\u00f1ora VPC en adelante la peticionaria o VPC en la cual se aleg\u00f3 la responsabilidad internacional de la Rep\u00fablica de Nicaragua en adelante el Estado nicarag\u00fcense Nicaragua o el Estado por las irregularidades y la situaci\u00f3n de impunidad en el proceso ", - "values": [ - "Comisi\u00f3n Interamericana de Derechos Humanos" - ] - }, - { - "text": " de mayo de Ref Caso Noel Emiro Omeara Carrascal y otros Colombia Se\u00f1or Secretario Tengo el agrado de dirigirme a usted en nombre de la Comisi\u00f3n Interamericana de Derechos Humanos con el objeto de someter a la jurisdicci\u00f3n de la Honorable Corte Interamericana de Derechos Humanos el caso Noel Emiro Omeara Carrascal y otros respecto de la Rep\u00fablica de Colombia en adelante el Estado el Estado colombiano o Colombia. El caso se relaciona con una secuencia de graves violaciones de derechos en ", - "values": [ - "Comisi\u00f3n Interamericana de Derechos Humanos" - ] - }, - { - "text": "INFORME NO. CASO FONDO NOEL EMIRO OMEARA CARRASCAL MANUEL GUILLERMO OMEARA MIRAVAL HECTOR ALVAREZ SANCHEZ Y OTROS COLOMBIA DE JULIO DE I. RESUMEN El de mayo de la Comisi\u00f3n Interamericana de Derechos Humanos en adelante la Comisi\u00f3n la Comisi\u00f3n Interamericana o la CIDH recibi\u00f3 una petici\u00f3n presentada por la Comisi\u00f3n Colombiana de Juristas CCJ en adelante los peticionariosen la cual se aleg\u00f3 la responsabilidad internacional de la Rep\u00fablica de Colombia en adelante el Estado el Estado o por", - "values": [ - "Comisi\u00f3n Interamericana de Derechos Humanos" - ] - }, - { - "text": "Ref Casos No. y Gustavo Giraldo Villamizar Duran y otros Colombia de abril de Se\u00f1or Secretario Tengo el agrado de dirigirme a usted en nombre de la Comisi\u00f3n Interamericana de Derechos Humanos con el objeto de someter a la jurisdicci\u00f3n de la Honorable Corte Interamericana de Derechos Humanos los casos y Gustavo Giraldo Villamizar Dur\u00e1n y otros respecto de la Rep\u00fablica de Colombia en adelante el Estado el Estado colombiano o Colombia. El caso se relaciona con las ejecuciones de el", - "values": [ - "Comisi\u00f3n Interamericana de Derechos Humanos" - ] - }, - { - "text": "Ref Caso No. V\u00edctor Manuel Isaza Uribe Colombia de abril de Se\u00f1or Secretario Tengo el agrado de dirigirme a usted en nombre de la Comisi\u00f3n Interamericana de Derechos Humanos con el objeto de someter a la jurisdicci\u00f3n de la Honorable Corte Interamericana de Derechos Humanos el caso V\u00edctor Manuel Isaza Uribe respecto de la Rep\u00fablica de Colombia en adelante el Estado el Estado colombiano o Colombia. El caso se relaciona con la desaparici\u00f3n forzada de V\u00edctor Manuel Isaza Uribe desde el de de", - "values": [ - "Comisi\u00f3n Interamericana de Derechos Humanos" - ] - }, - { - "text": "INFORME No. CASO FONDO V\u00cdCTOR MANUEL ISAZA URIBE Y FAMILIA COLOMBIA DE JULIO DE I. RESUMEN En diciembre de la Comisi\u00f3n Interamericana de Derechos Humanos en adelante la Comisi\u00f3n Interamericana la Comisi\u00f3n o la CIDH recibi\u00f3 una denuncia presentada por la Asociaci\u00f3n de Familiares de Detenidos Desaparecidos ASFADDES y la Comisi\u00f3n Colombiana de Juristas en adelante los peticionarios por la violaci\u00f3n de los derechos al reconocimiento de la personalidad jur\u00eddica la vida la integridad personal ", - "values": [ - "Comisi\u00f3n Interamericana de Derechos Humanos" - ] - }, - { - "text": " de enero de Ref Caso No. G\u00f3mez Murillo y otros Fecundaci\u00f3n in Vitro Costa Rica Se\u00f1or Secretario Tengo el agrado de dirigirme a usted en nombre de la Comisi\u00f3n Interamericana de Derechos Humanos con el objeto de someter a la jurisdicci\u00f3n de la Honorable Corte Interamericana de Derechos Humanos el caso G\u00f3mez Murillo y otros respecto del Estado de Costa Rica en adelante el Estado el Estado costarricense o Costa Rica. El caso se relaciona con la violaci\u00f3n de los derechos a la integridad vida", - "values": [ - "Comisi\u00f3n Interamericana de Derechos Humanos" - ] - }, - { - "text": "INFORME No. CASO FONDO DANIEL GERARDO G\u00d3MEZ MURILLO AIDA MARCELA GARITA S\u00c1NCHEZ Y OTROS COSTA RICA DE ENERO DE I. RESUMEN La Comisi\u00f3n Interamericana de Derechos Humanos en adelante la Comisi\u00f3n la Comisi\u00f3n Interamericana o la CIDH recibi\u00f3 cinco peticiones presentadas por Gerardo Trejos Salas en adelante el peticionario el de diciembre de en nombre de Daniel Gerardo G\u00f3mez Murillo y A\u00edda Marcela Garita S\u00e1nchez P el de diciembre de en nombre de Roberto P\u00e9rez Guti\u00e9rrez y Silvia Mar\u00eda Sosa ", - "values": [ - "Comisi\u00f3n Interamericana de Derechos Humanos" - ] - }, - { - "text": "RESOLUCI\u00d3N DEL PRESIDENTE EN EJERCICIO DE LA CORTE INTERAMERICANA DE DERECHOS HUMANOS DE DE AGOSTO DE FONDO DE ASISTENCIA LEGAL DE V\u00cdCTIMAS CASO L\u00d3PEZ SOTO Y OTROS VS. VENEZUELA VISTO El escrito de de noviembre de y sus anexos mediante los cuales la Comisi\u00f3n Interamericana de Derechos Humanos en adelante la Comisi\u00f3n Interamericana o la Comisi\u00f3n someti\u00f3 ante la Corte Interamericana de Derechos Humanos en adelante la Corte Interamericana la Corte o el Tribunal el presente caso. El escrito ", - "values": [ - "Corte Interamericana de Derechos Humanos" - ] - }, - { - "text": " de noviembre de REF Caso No. Linda Loaiza L\u00f3pez Soto y familiares Venezuela Se\u00f1or Secretario Tengo el agrado de dirigirme a usted en nombre de la Comisi\u00f3n Interamericana de Derechos Humanos con el objeto de someter a la jurisdicci\u00f3n de la Honorable Corte Interamericana de Derechos Humanos el caso Linda Loaiza L\u00f3pez Soto y familiares respecto de la Rep\u00fablica Bolivariana de Venezuela en adelante el Estado el Estado venezolano o Venezuela. El caso se relaciona con la responsabilidad del de ", - "values": [ - "Comisi\u00f3n Interamericana de Derechos Humanos" - ] - }, - { - "text": "INFORME No. CASO INFORME DE FONDO LINDA LOAIZA L\u00d3PEZ SOTO Y FAMILIARES VENEZUELA de julio de I. RESUMEN El de noviembre de la Comisi\u00f3n Interamericana de Derechos Humanos en adelante la Comisi\u00f3n la Comisi\u00f3n Interamericana o la CIDH recibi\u00f3 una petici\u00f3n presentada por Linda Loaiza L\u00f3pez Soto y Juan Bernardo Delgado en adelante los peticionarios en la cual se aleg\u00f3 la responsabilidad internacional de la Rep\u00fablica Bolivariana de Venezuela en adelante el Estado el Estado de Venezuela el o ", - "values": [ - "Comisi\u00f3n Interamericana de Derechos Humanos" - ] - }, - { - "text": "INFORME No. ADMISIBILIDAD PETICI\u00d3N LINDA LOAIZA L\u00d3PEZ SOTO y FAMILIARES VENEZUELA \u00ba de noviembre de I. RESUMEN El de noviembre de la Comisi\u00f3n Interamericana de Derechos Humanos en adelante la Comisi\u00f3n Interamericana o la CIDH recibi\u00f3 una denuncia presentada por Linda Loaiza L\u00f3pez Soto y el se\u00f1or Juan Bernardo Delgado en calidad de representante de las v\u00edctimas en adelante los peticionarios en la que se alega la responsabilidad internacional del Estado de Venezuela por la falta de debida ", - "values": [ - "Comisi\u00f3n Interamericana de Derechos Humanos" - ] - }, - { - "text": "INFORME No. PETICI\u00d3N ADMISIBILIDAD SANTIAGO ANTEZANA CUETO Y OTROS PER\u00da de enero de I. RESUMEN El de noviembre de la Comisi\u00f3n Interamericana de Derechos Humanos en adelante tambi\u00e9n la Comisi\u00f3n Interamericana la Comisi\u00f3n o la CIDH recibi\u00f3 una petici\u00f3n presentada por el Comit\u00e9 Nacional de Familiares de Detenidos Desaparecidos y Refugiados CONFADERPer\u00fa y por la Comisi\u00f3n de Derechos Humanos COMISEDH en adelante tambi\u00e9n los peticionarios en representaci\u00f3n de Santiago Antezana Cueto en la ", - "values": [ - "Comisi\u00f3n Interamericana de Derechos Humanos" - ] - }, - { - "text": "INFORME No. PETICI\u00d3N ADMISIBILIDAD TERESA D\u00cdAZ APARICIO y Otros PER\u00da de noviembre de I. RESUMEN El de agosto de la Comisi\u00f3n Interamericana de Derechos Humanos en adelante tambi\u00e9n la Comisi\u00f3n Interamericana la Comisi\u00f3n o la CIDH recibi\u00f3 una petici\u00f3n presentada por Rodolfo Asencios Martel Federico D\u00edaz Aparicio y por la Asociaci\u00f3n Pro Derechos Humanos APRODEH en adelante tambi\u00e9n los peticionarios en representaci\u00f3n de Teresa D\u00edaz Aparicio en adelante tambi\u00e9n la presunta v\u00edctima en la cual ", - "values": [ - "Comisi\u00f3n Interamericana de Derechos Humanos" - ] - }, - { - "text": "INFORME No. PETICI\u00d3N ADMISIBILIDAD CORY CLODOLIA TENICELA TELLO y Otros PER\u00da de julio de I. RESUMEN El de junio de la Comisi\u00f3n Interamericana de Derechos Humanos en adelante tambi\u00e9n la Comisi\u00f3n Interamericana la Comisi\u00f3n o la CIDH recibi\u00f3 una petici\u00f3n presentada por Amadea Tello de Tenicela y Norma Juana Tenicela Tello en adelante tambi\u00e9n las peticionarias en representaci\u00f3n de Cory Clodolia Tenicela Tello en adelante tambi\u00e9n la presunta v\u00edctima en la cual se alega la violaci\u00f3n por parte ", - "values": [ - "Comisi\u00f3n Interamericana de Derechos Humanos" - ] - }, - { - "text": "INFORME No. PETICI\u00d3N ADMISIBILIDAD MARIANA SELVAS G\u00d3MEZ Y OTRAS M\u00c9XICO de noviembre de I. RESUMEN La Comisi\u00f3n Interamericana de Derechos Humanos en adelante Comisi\u00f3n Comisi\u00f3n Interamericana o CIDH recibi\u00f3 el de abril de una petici\u00f3n presentada por el Centro de los Derechos Humanos Miguel Agust\u00edn Pro Ju\u00e1rez AC. PRODH y el Centro por la Justicia y el Derecho Internacional CEJIL en adelante peticionarios en representaci\u00f3n de Mariana Selvas G\u00f3mez Georgina Edith Rosales Guti\u00e9rrez ", - "values": [ - "Comisi\u00f3n Interamericana de Derechos Humanos" - ] - }, - { - "text": "Ref Caso Mariana Selvas G\u00f3mez y otras M\u00e9xico de septiembre de Se\u00f1or Secretario Tengo el agrado de dirigirme a usted en nombre de la Comisi\u00f3n Interamericana de Derechos Humanos con el objeto de someter a la jurisdicci\u00f3n de la Honorable Corte Interamericana de Derechos Humanos el caso Mariana Selvas G\u00f3mez y otras respecto de los Estados Unidos Mexicanos en adelante el Estado el Estado mexicano o M\u00e9xico. El caso se relaciona con una serie de violaciones a la Convenci\u00f3n Americana sobre a la ", - "values": [ - "Comisi\u00f3n Interamericana de Derechos Humanos" - ] - }, - { - "text": "INFORME No. CASO FONDO MARIANA SELVAS GOMEZ Y OTRAS MEXICO DE OCTUBRE DE I. RESUMEN El de abril de la Comisi\u00f3n Interamericana de Derechos Humanos en adelante la Comisi\u00f3n la CIDH o la Comisi\u00f3n Interamericana recibi\u00f3 una petici\u00f3n presentada por el Centro de los Derechos Humanos Miguel Agust\u00edn Pro Ju\u00e1rez AC. PRODH y el Centro por la Justicia y el Derecho Internacional CEJIL en adelante los peticionarios en representaci\u00f3n de Mariana Selvas G\u00f3mez Georgina Edith Rosales Guti\u00e9rrez Mar\u00eda Romero", - "values": [ - "Comisi\u00f3n Interamericana de Derechos Humanos" - ] - }, - { - "text": "RESOLUCI\u00d3N DEL PRESIDENTE DE LA CORTE INTERAMERICANA DE DERECHOS HUMANOS DE DE MAYO DE FONDO DE ASISTENCIA LEGAL DE V\u00cdCTIMAS CASO SELVAS G\u00d3MEZ Y OTRAS VS. M\u00c9XICO VISTO El escrito de de septiembre de y sus anexos mediante los cuales la Comisi\u00f3n Interamericana de Derechos Humanos en adelante la Comisi\u00f3n Interamericana o la Comisi\u00f3n someti\u00f3 ante la Corte Interamericana de Derechos Humanos en adelante la Corte Interamericana la Corte o el Tribunal el presente caso. El escrito de de enero de ", - "values": [ - "Corte Interamericana de Derechos Humanos" - ] - }, - { - "text": " de marzo de REF Caso No. Pueblo Ind\u00edgena Xucuru y sus miembros Brasil Se\u00f1or Secretario Tengo el agrado de dirigirme a usted en nombre de la Comisi\u00f3n Interamericana de Derechos Humanos con el objeto de someter a la jurisdicci\u00f3n de la Honorable Corte Interamericana de Derechos Humanos el caso Pueblo Ind\u00edgena Xucuru y sus miembros respecto de la Rep\u00fablica Federativa de Brasil en adelante el Estado el Estado brasilero o Brasil. El caso se relaciona con la violaci\u00f3n del derecho a la propiedad ", - "values": [ - "Comisi\u00f3n Interamericana de Derechos Humanos" - ] - }, - { - "text": "INFORME No. CASO PUEBLO IND\u00cdGENA XUCURU FONDO BRASIL de julio de I. RESUMEN El de octubre de el Movimento Nacional de Direitos HumanosRegional Nordeste el Gabinete de Assessoria Jur\u00eddica \u00e0s Organiza\u00e7\u00f5es Populares GAJOP y el Conselho Indigenista Mission\u00e1rio CIMI en adelante los peticionarios presentaron una denuncia ante la Comisi\u00f3n Interamericana de Derechos Humanos la Comisi\u00f3n Interamericana la Comisi\u00f3n o la CIDH contra la Rep\u00fablica Federativa de Brasil el Estado el Estado brasilero o", - "values": [ - "Comisi\u00f3n Interamericana de Derechos Humanos" - ] - }, - { - "text": " de abril de REF Caso No. Vladimir Herzog y otros Brasil Se\u00f1or Secretario Tengo el agrado de dirigirme a usted en nombre de la Comisi\u00f3n Interamericana de Derechos Humanos con el objeto de someter a la jurisdicci\u00f3n de la Honorable Corte Interamericana de Derechos Humanos el caso Vladimir Herzog y otros respecto de la Rep\u00fablica Federativa de Brasil en adelante el Estado el Estado brasilero o Brasil. El caso se relaciona con la responsabilidad internacional del Estado de Brasil por la y ", - "values": [ - "Comisi\u00f3n Interamericana de Derechos Humanos" - ] - }, - { - "text": "INFORME No. CASO FONDO VLADIMIR HERZOG Y OTROS BRASIL DE OCTUBRE DE I. RESUMEN El de julio de la Comisi\u00f3n Interamericana de Derechos Humanos en adelante la Comisi\u00f3n o la CIDH recibi\u00f3 una petici\u00f3n presentada por el Centro por la Justicia y el Derecho Internacional CEJILBrasil la Fundaci\u00f3n Interamericana de Defensa de los Derechos Humanos FIDDH el Centro Santos Dias de la Arquidi\u00f3cesis de S\u00e3o Paulo y el Grupo Tortura Nunca M\u00e1s de S\u00e3o Paulo en adelante los peticionarios mediante la cual la", - "values": [ - "Comisi\u00f3n Interamericana de Derechos Humanos" - ] - }, - { - "text": "INFORME No. PETICI\u00d3N P VLADIMIR HERZOG Y OTROS ADMISIBILIDAD BRASIL de noviembre de I. RESUMEN El de julio de la Comisi\u00f3n Interamericana de Derechos Humanos en adelante la Comisi\u00f3n Interamericana o la CIDH recibi\u00f3 una petici\u00f3n contra la Rep\u00fablica Federativa del Brasil el Estado o Brasil en la que se alega su responsabilidad internacional por la detenci\u00f3n arbitraria tortura y muerte del periodista Vladimir Herzog la presunta v\u00edctima ocurrida en una dependencia del Ej\u00e9rcito el de ", - "values": [ - "Comisi\u00f3n Interamericana de Derechos Humanos" - ] - }, - { - "text": " de abril de REF Caso No. IV. Bolivia Se\u00f1or Secretario Tengo el agrado de dirigirme a usted en nombre de la Comisi\u00f3n Interamericana de Derechos Humanos con el objeto de someter a la jurisdicci\u00f3n de la Honorable Corte Interamericana de Derechos Humanos el caso No. IV respecto al Estado Plurinacional de Bolivia en adelante el Estado de Bolivia el Estado boliviano o Bolivia relacionado con la responsabilidad internacional del Estado por la intervenci\u00f3n quir\u00fargica a la que fue sometida la IV ", - "values": [ - "Comisi\u00f3n Interamericana de Derechos Humanos" - ] - }, - { - "text": "no text", - "values": [ - "Comisi\u00f3n Interamericana de Derechos Humanos" - ] - }, - { - "text": " de noviembre de REF Caso No. \u00c1ngel Pacheco Le\u00f3n y familia Honduras Se\u00f1or Secretario Tengo el agrado de dirigirme a usted en nombre de la Comisi\u00f3n Interamericana de Derechos Humanos con el objeto de someter a la jurisdicci\u00f3n de la Honorable Corte Interamericana de Derechos Humanos el caso \u00c1ngel Pacheco Le\u00f3n y familia respecto de la Rep\u00fablica de Honduras en adelante el Estado Honduras o el Estado hondure\u00f1o. El presente caso se relaciona con el asesinato de \u00c1ngel Pacheco Le\u00f3n el de noviembre", - "values": [ - "Comisi\u00f3n Interamericana de Derechos Humanos" - ] - }, - { - "text": "INFORME No. CASO INFORME DE FONDO \u00c1NGEL PACHECO LE\u00d3N Y FAMILIA HONDURAS DE JULIO DE I. RESUMEN El de agosto de la Comisi\u00f3n Interamericana de Derechos Humanos en adelante la Comisi\u00f3n Interamericana la Comisi\u00f3n o la CIDH recibi\u00f3 una petici\u00f3n presentada por Marleny Pacheco Posadas en adelante los peticionarios en la cual se aleg\u00f3 la responsabilidad internacional de la Rep\u00fablica de Honduras en adelante el Estado hondure\u00f1o Honduras o el Estado como consecuencia del asesinato de \u00c1ngel Pacheco ", - "values": [ - "Comisi\u00f3n Interamericana de Derechos Humanos" - ] - }, - { - "text": " de noviembre de Ref Caso No. Alfredo Lagos del Campo Per\u00fa Se\u00f1or Secretario Tengo el agrado de dirigirme a usted en nombre de la Comisi\u00f3n Interamericana de Derechos Humanos con el objeto de someter a la jurisdicci\u00f3n de la Honorable Corte Interamericana de Derechos Humanos el caso Alfredo Lagos del Campo respecto de la Rep\u00fablica de Per\u00fa en adelante el Estado el Estado peruano o Per\u00fa relacionado con el despido del se\u00f1or Alfredo Lagos del Campo el de junio de como consecuencia de ciertas ", - "values": [ - "Comisi\u00f3n Interamericana de Derechos Humanos" - ] - }, - { - "text": "INFORME No. CASO FONDO ALFREDO LAGOS DEL CAMPO PER\u00da DE JULIO DE I. RESUMEN El de agosto de la Comisi\u00f3n Interamericana de Derechos Humanos en adelante la Comisi\u00f3n Interamericana la Comisi\u00f3n o la CIDH recibi\u00f3 una petici\u00f3n presentada por el se\u00f1or Alfredo Lagos del Campo en adelante la presunta v\u00edctima en la cual sostiene la responsabilidad internacional de la Rep\u00fablica del Per\u00fa en adelante Per\u00fa o el Estado por la falta de protecci\u00f3n de su derecho como dirigente laboral a expresar en el ", - "values": [ - "Comisi\u00f3n Interamericana de Derechos Humanos" - ] - }, - { - "text": "RESOLUCI\u00d3N DE LA CORTE INTERAMERICANA DE DERECHOS HUMANOS DE DE AGOSTO DE CASO AMRHEIN Y OTROS VS. COSTA RICA VISTO La Resoluci\u00f3n del Presidente de la Corte Interamericana de Derechos Humanos en adelante el Presidente de de julio de en adelante la Resoluci\u00f3n del Presidente mediante la cual inter alia orden\u00f3 la recepci\u00f3n de diversas declaraciones de peticionarios testigos declarantes a t\u00edtulo informativo y peritos mediante afid\u00e1vit rechaz\u00f3 las declaraciones de algunos testigos y convoc\u00f3 a ", - "values": [ - "Corte Interamericana de Derechos Humanos" - ] - }, - { - "text": "CORTE INTERAMERICANA DE DERECHOS HUMANOS CASO LAGOS DEL CAMPO VS. PER\u00da SENTENCIA DE DE AGOSTO DE Excepciones Preliminares Fondo Reparaciones y Costas En el caso Lagos del Campo la Corte Interamericana de Derechos Humanos en adelante la Corte Interamericana la Corte o el Tribunal integrada por los siguientes jueces Roberto F. Caldas Presidente Eduardo Ferrer MacGregor Poisot Vicepresidente Eduardo Vio Grossi Juez Humberto Antonio Sierra Porto Juez Elizabeth Odio Benito Jueza Eugenio Ra\u00fal Juez", - "values": [ - "Corte Interamericana de Derechos Humanos" - ] - }, - { - "text": "VOTO PARCIALMENTE DISIDENTE DEL JUEZ EDUARDO VIO GROSSI CORTE INTERAMERICANA DE DERECHOS HUMANOS CASO LAGOS DEL CAMPO VS. PER\u00da SENTENCIA DE DE AGOSTO DE Excepciones Preliminares Fondo Reparaciones y Costas INTRODUCCI\u00d3N. Se emite el presente voto parcialmente disidente respecto de la Sentencia del ep\u00edgrafe por discrepar respecto de la referencia que hace al art\u00edculo de la Convenci\u00f3n Americana sobre Derechos Humanos como fundamento de sus Resolutivos N y por los que se declara que el Estado", - "values": [ - "Corte Interamericana de Derechos Humanos" - ] - }, - { - "text": "VOTO PARCIALMENTE DISIDENTE DEL JUEZ HUMBERTO ANTONIO SIERRA PORTO SENTENCIA DE LA CORTE INTERAMERICANA DE DERECHOS HUMANOS CASO LAGOS DEL CAMPO VS. PER\u00da SENTENCIA DE DE AGOSTO DE Excepciones Preliminares Fondo Reparaciones y Costas Con el acostumbrado respeto por las decisiones de la Corte me permito formular a continuaci\u00f3n el presente voto parcialmente disidente en el caso de la referencia. Para efectos del desarrollo de esta posici\u00f3n seguiremos el siguiente orden A. INTRODUCCI\u00d3N El voto ", - "values": [ - "Corte Interamericana de Derechos Humanos" - ] - }, - { - "text": "VOTO CONCURRENTE DEL JUEZ EDUARDO FERRER MACGREGOR POISOT CASO LAGOS DEL CAMPO VS. PER\u00da SENTENCIA DE DE AGOSTO DE EXCEPCIONES PRELIMINARES FONDO REPARACIONES Y COSTAS LA JUSTICIABILIDAD DIRECTA DE LOS DERECHOS ECON\u00d3MICOS SOCIALES CULTURALES Y AMBIENTALES UNA NUEVA ETAPA EN LA JURISPRUDENCIA INTERAMERICANA El caso Lagos del Campos Vs. Per\u00fa abre un nuevo y rico horizonte en el Sistema Interamericano de Derechos Humanos. Lo anterior debido a la interpretaci\u00f3n evolutiva que la Corte de Derechos", - "values": [ - "Corte Interamericana de Derechos Humanos" - ] - }, - { - "text": "VOTO RAZONADO DEL JUEZ ROBERTO F. CALDAS CORTE INTERAMERICANA DE DERECHOS HUMANOS CASO LAGOS DEL CAMPO VS. PERU SENTENCIA DE DE AGOSTO DE Excepciones Preliminares Fondo Reparaciones y Costas I. Introducci\u00f3n y relevancia de la Sentencia Esta es una decisi\u00f3n hist\u00f3rica que representa un gran paso jurisprudencial. Si bien un demorado trayecto pero debidamente estudiado reflexionado ponderado y trabajado a lo largo de muchos a\u00f1os sobre la justiciabilidad de los Derechos Econ\u00f3micos Sociales y en", - "values": [ - "Corte Interamericana de Derechos Humanos" - ] - }, - { - "text": "INFORME No. PETICI\u00d3N ADMISIBILIDAD ALFREDO LAGOS DEL CAMPO PER\u00da de noviembre de I. RESUMEN El presente informe se refiere a la petici\u00f3n cuyas actuaciones fueron iniciadas ante la Comisi\u00f3n Interamericana de Derechos Humanos en lo sucesivo Comisi\u00f3n Interamericana Comisi\u00f3n o CIDH en virtud de la presentaci\u00f3n de una petici\u00f3n realizada por el se\u00f1or Alfredo Lagos del Campo en adelante el peticionario en contra de la Rep\u00fablica del Per\u00fa en adelante Per\u00fa o el Estado. Dicha petici\u00f3n fue recibida ", - "values": [ - "Comisi\u00f3n Interamericana de Derechos Humanos" - ] - }, - { - "text": "RESOLUCI\u00d3N DE LA CORTE INTERAMERICANA DE DERECHOS HUMANOS DE DE NOVIEMBRE DE SOLICITUD DE MEDIDAS PROVISIONALES RESPECTO DE ARGENTINA ASUNTO MILAGRO SALA VISTO El escrito de de noviembre de y sus anexos mediante los cuales la Comisi\u00f3n Interamericana de Derechos Humanos en adelante la Comisi\u00f3n Interamericana o la Comisi\u00f3n someti\u00f3 a la Corte Interamericana de Derechos Humanos en adelante la Corte Interamericana la Corte o este Tribunal una solicitud de medidas provisionales de conformidad ", - "values": [ - "Corte Interamericana de Derechos Humanos" - ] - }, - { - "text": "COMISI\u00d3N INTERAMERICANA DE DERECHOS HUMANOS RESOLUCI\u00d3N Medida cautelar No. Milagro Amalia \u00c1ngela Sala respecto de Argentina de julio de I. INTRODUCCI\u00d3N El de enero de la Comisi\u00f3n Interamericana de Derechos Humanos en adelante la Comisi\u00f3n Interamericana la Comisi\u00f3n o la CIDH recibi\u00f3 una solicitud de medidas cautelares presentada por el Centro de Estudios Legales y Sociales CELS Amnist\u00eda Internacional Argentina y Abogados y Abogadas del Noroeste Argentino en Derechos Humanos y Estudios ", - "values": [ - "Comisi\u00f3n Interamericana de Derechos Humanos" - ] - }, - { - "text": "RESOLUCI\u00d3N DE LA CORTE INTERAMERICANA DE DERECHOS HUMANOS DE DE NOVIEMBRE DE MEDIDAS PROVISIONALES RESPECTO DE M\u00c9XICO ASUNTO ALVARADO REYES Y OTROS VISTO Las Resoluciones dictadas por la Corte Interamericana de Derechos Humanos en adelante la Corte Interamericana la Corte o el Tribunal el de mayo y de noviembre de de mayo de de noviembre de y el de junio de mediante las cuales a solicitud de la Comisi\u00f3n el Tribunal orden\u00f3 medidas provisionales y supervis\u00f3 su ejecuci\u00f3n en el presente", - "values": [ - "Corte Interamericana de Derechos Humanos" - ] - }, - { - "text": "RESOLUCI\u00d3N DE LA CORTE INTERAMERICANA DE DERECHOS HUMANOS DE DE NOVIEMBRE DE MEDIDAS PROVISIONALES RESPECTO DE COLOMBIA ASUNTO DANILO RUEDA VISTO La Resoluci\u00f3n de la Corte Interamericana de Derechos Humanos en adelante la Corte Interamericana la Corte o el Tribunal de de mayo de mediante la cual resolvi\u00f3 Ratificar en todos sus t\u00e9rminos la Resoluci\u00f3n del Presidente en ejercicio de la Corte Interamericana de Derechos Humanos de de mayo de y por consiguiente requerir al Estado que las ", - "values": [ - "Corte Interamericana de Derechos Humanos" - ] - }, - { - "text": "RESOLUCI\u00d3N DE LA CORTE INTERAMERICANA DE DERECHOS HUMANOS DE DE NOVIEMBRE DE MEDIDAS PROVISIONALES CASO TORRES MILLACURA Y OTROS VS. ARGENTINA VISTO La Sentencia de fondo reparaciones y costas de de agosto de mediante la cual la Corte Interamericana de Derechos Humanos en adelante tambi\u00e9n la Corte Interamericana o el Tribunal declar\u00f3 responsable internacionalmente a la Rep\u00fablica de Argentina en adelante el Estado o Argentina por la violaci\u00f3n del derecho a la libertad personal establecido ", - "values": [ - "Corte Interamericana de Derechos Humanos" - ] - }, - { - "text": "VOTO DISIDENTE DEL JUEZ EDUARDO VIO GROSSI RESOLUCI\u00d3N DE LA CORTE INTERAMERICANA DE DERECHOS HUMANOS DE DE NOVIEMBRE DE MEDIDAS PROVISIONALES CASO TORRES MILLACURA Y OTROS VS. ARGENTINA. Por el presente texto se reitera lo expuesto en el Voto Disidente del Juez Eduardo Vio Grossi Resoluci\u00f3n de la Corte Interamericana de Derechos Humanos de de Junio Caso Torres Millacura y Otros Solicitud de Medidas Provisionales respecto de la Rep\u00fablica Argentina el que por ende se da por reproducido. Vio", - "values": [ - "Corte Interamericana de Derechos Humanos" - ] - }, - { - "text": "RESOLUCI\u00d3N DE LA CORTE INTERAMERICANA DE DERECHOS HUMANOS DE DE NOVIEMBRE DE FONDO DE ASISTENCIA LEGAL DE V\u00cdCTIMAS MEDIDAS PROVISIONALES RESPECTO DE COLOMBIA ASUNTO COMUNIDAD DE PAZ DE SAN JOS\u00c9 DE APARTAD\u00d3 VISTO Las Resoluciones de la Corte Interamericana de Derechos Humanos en adelante la Corte o el Tribunal de de noviembre de de junio de de noviembre de de marzo de de febrero de de febrero de de agosto de as\u00ed como las Resoluciones del Presidente del Tribunal de de octubre de", - "values": [ - "Corte Interamericana de Derechos Humanos" - ] - }, - { - "text": " de octubre de REF Caso No. Nelson Carvajal Carvajal y familia Colombia Se\u00f1or Secretario Tengo el agrado de dirigirme a usted en nombre de la Comisi\u00f3n Interamericana de Derechos Humanos con el objeto de someter a la jurisdicci\u00f3n de la Honorable Corte Interamericana de Derechos Humanos el caso Nelson Carvajal Carvajal y familia respecto de la Rep\u00fablica de Colombia en adelante el Estado el Estado colombiano o Colombia. El presente caso se relaciona con el asesinato del periodista Nelson por", - "values": [ - "Comisi\u00f3n Interamericana de Derechos Humanos" - ] - }, - { - "text": "INFORME No. CASO FONDO NELSON CARVAJAL CARVAJAL Y FAMILIA COLOMBIA DE MARZO DE I. RESUMEN El de junio de la Comisi\u00f3n Interamericana de Derechos Humanos en adelante la Comisi\u00f3n Interamericana o la CIDH recibi\u00f3 una petici\u00f3n de la Sociedad Interamericana de Prensa en adelante la SIP o la peticionaria contra la Rep\u00fablica de Colombia en adelante Colombia o el Estado en relaci\u00f3n con el asesinato del periodista Nelson Carvajal Carvajal en adelante tambi\u00e9n la presunta v\u00edctima. Seg\u00fan la el de ", - "values": [ - "Comisi\u00f3n Interamericana de Derechos Humanos" - ] - }, - { - "text": "INFORME No. CASOS y INFORME DE FONDO TRABAJADORES CESADOS PETROPER\u00da MEF Y ENAPU INFORME DE ADMISIBILIDAD Y FONDO MINEDU PER\u00da DE MARZO DE I. RESUMEN Entre febrero de y marzo de la Comisi\u00f3n Interamericana de Derechos Humanos en adelante la Comisi\u00f3n la Comisi\u00f3n Interamericana o la CIDH recibi\u00f3 cuatro peticiones respecto de personas en las cuales se aleg\u00f3 la responsabilidad internacional del Estado de Per\u00fa en adelante el Estado el Estado peruano o Per\u00fa debido a la alegada destituci\u00f3n de", - "values": [ - "Comisi\u00f3n Interamericana de Derechos Humanos" - ] - }, - { - "text": "Ref Caso No. Maria Luisa Acosta y otros Nicaragua de julio de Se\u00f1or Secretario Tengo el agrado de dirigirme a usted en nombre de la Comisi\u00f3n Interamericana de Derechos Humanos con el objeto de someter a la jurisdicci\u00f3n de la Honorable Corte Interamericana de Derechos Humanos el caso Maria Luisa Acosta y otros respecto de la Rep\u00fablica de Nicaragua en adelante el Estado el Estado nicarag\u00fcense o Nicaragua relacionado con la falta de investigaci\u00f3n diligente y en un plazo razonable del del ", - "values": [ - "Comisi\u00f3n Interamericana de Derechos Humanos" - ] - }, - { - "text": "INFORME No. CASO FONDO MARIA LUISA ACOSTA Y OTROS NICARAGUA DE MARZO DE I. RESUMEN El de junio de la Comisi\u00f3n Interamericana de Derechos Humanos en adelante la Comisi\u00f3n Interamericana la Comisi\u00f3n o la CIDH recibi\u00f3 una denuncia presentada por Mar\u00eda Luisa Acosta Castell\u00f3n el Centro de Asistencia Legal a Pueblos Ind\u00edgenas CALPI el Centro por la Justicia y Derechos Humanos de la Costa Atl\u00e1ntica de Nicaragua CEJUDHCAN y el Centro Nicarag\u00fcense de Derechos Humanos CENIDH en adelante los en ", - "values": [ - "Comisi\u00f3n Interamericana de Derechos Humanos" - ] - }, - { - "text": "INFORME No. PETICI\u00d3N ADMISIBILIDAD MARIA LUISA ACOSTA Y OTROS NICARAGUA \u00ba de noviembre de I. RESUMEN El de junio de la Comisi\u00f3n Interamericana de Derechos Humanos en adelante la Comisi\u00f3n Interamericana Comisi\u00f3n o CIDH recibi\u00f3 una denuncia presentada por Mar\u00eda Luisa Acosta Castell\u00f3n el Centro de Asistencia Legal a Pueblos Ind\u00edgenas CALPI el Centro por la Justicia y Derechos Humanos de la Costa Atl\u00e1ntica de Nicaragua CEJUDHCAN y el Centro Nicarag\u00fcense de Derechos Humanos CENIDH en los", - "values": [ - "Comisi\u00f3n Interamericana de Derechos Humanos" - ] - }, - { - "text": " de julio de Ref Caso No. Mayra Angelina Guti\u00e9rrez Hern\u00e1ndez y familia Guatemala Se\u00f1or Secretario Tengo el agrado de dirigirme a usted en nombre de la Comisi\u00f3n Interamericana de Derechos Humanos con el objeto de someter a la jurisdicci\u00f3n de la Honorable Corte Interamericana de Derechos Humanos el caso Mayra Angelina Guti\u00e9rrez Hern\u00e1ndez y familia respecto de la Rep\u00fablica de Guatemala en adelante el Estado el Estado guatemalteco o Guatemala. El caso se relaciona con la desaparici\u00f3n de Mayra ", - "values": [ - "Comisi\u00f3n Interamericana de Derechos Humanos" - ] - }, - { - "text": "INFORME No. CASO ADMISIBILIDAD Y FONDO MAYRA ANGELINA GUTI\u00c9RREZ HERN\u00c1NDEZ Y FAMILIA GUATEMALA DE MARZO DE I. RESUMEN El de octubre de la Comisi\u00f3n Interamericana de Derechos Humanos en adelante la Comisi\u00f3n la Comisi\u00f3n Interamericana o la CIDH recibi\u00f3 una petici\u00f3n presentada por Nilda Guti\u00e9rrez Hern\u00e1ndez \u00c1ngela Mar\u00eda del Carmen Arg\u00fcello Guti\u00e9rrez y Greta Mancilla Chavarr\u00eda en la cual se aleg\u00f3 la responsabilidad internacional de la Rep\u00fablica de Guatemala en adelante el Estado el Estado o ", - "values": [ - "Comisi\u00f3n Interamericana de Derechos Humanos" - ] - }, - { - "text": " de julio de Ref Caso No. Jorge V\u00e1squez Durand y familia Ecuador Se\u00f1or Secretario Tengo el agrado de dirigirme a usted en nombre de la Comisi\u00f3n Interamericana de Derechos Humanos con el objeto de someter a la jurisdicci\u00f3n de la Honorable Corte Interamericana de Derechos Humanos el caso Jorge V\u00e1squez Durand y familia respecto de la Rep\u00fablica del Ecuador en adelante el Estado el Estado ecuatoriano o Ecuador relacionado con la desaparici\u00f3n forzada del se\u00f1or Jorge V\u00e1squez Durand comerciante de ", - "values": [ - "Comisi\u00f3n Interamericana de Derechos Humanos" - ] - }, - { - "text": "INFORME No. CASO INFORME DE ADMISIBILIDAD Y FONDO JORGE V\u00c1SQUEZ DURAND Y FAMILIA ECUADOR DE MARZO DE I. RESUMEN El de marzo de la Comisi\u00f3n Interamericana de Derechos Humanos en adelante la Comisi\u00f3n Interamericana o la CIDH recibi\u00f3 una denuncia presentada por Mar\u00eda Esther Gomero Cuentas de V\u00e1squez y el de abril de por ella y tambi\u00e9n por la Asociaci\u00f3n Pro Derechos Humanos APRODEH en adelante los peticionarios. En ambos escritos se alegaba que el se\u00f1or Jorge V\u00e1squez Durand en adelante la ", - "values": [ - "Comisi\u00f3n Interamericana de Derechos Humanos" - ] - }, - { - "text": " de mayo de Ref Caso No. Cosme Rosa Genoveva Evandro de Oliveira y otros Favela Nova Bras\u00edlia Brasil Se\u00f1or Secretario Tengo el agrado de dirigirme a usted en nombre de la Comisi\u00f3n Interamericana de Derechos Humanos con el objeto de someter a la jurisdicci\u00f3n de la Honorable Corte Interamericana de Derechos Humanos el caso Cosme Rosa Genoveva Evandro de Oliveira y otros Favela Nova Bras\u00edlia respecto de la Rep\u00fablica Federativa de Brasil en adelante el Estado el Estado brasilero o Brasil. El ", - "values": [ - "Comisi\u00f3n Interamericana de Derechos Humanos" - ] - }, - { - "text": "RELAT\u00d3RIO No. M\u00c9RITO CASOS e COSME ROSA GENOVEVA EVANDRO DE OLIVEIRA E OUTROS FAVELA NOVA BRAS\u00cdLIA BRASIL de outubro de I. RESUMO Em de novembro de e de julho de respectivamente a Comiss\u00e3o Interamericana de Direitos Humanos doravante a CIDH ou a Comiss\u00e3o Interamericana recebeu duas peti\u00e7\u00f5es registradas sob os nos. e contra a Rep\u00fablica Federativa do Brasil o Estado ou Brasil apresentadas pelo Centro pela Justi\u00e7a e o Direito Internacional CEJILBrasil e Human Rights Watch Americas os ", - "values": [ - "Comisi\u00f3n Interamericana de Derechos Humanos" - ] - }, - { - "text": " de mayo de Ref Caso No. Johan Alexis Ortiz Hern\u00e1ndez Venezuela Se\u00f1or Secretario Tengo el agrado de dirigirme a usted en nombre de la Comisi\u00f3n Interamericana de Derechos Humanos con el objeto de someter a la jurisdicci\u00f3n de la Honorable Corte Interamericana de Derechos Humanos el caso Johan Alexis Ortiz Hern\u00e1ndez respecto de la Rep\u00fablica Bolivariana de Venezuela en adelante el Estado el Estado venezolano o Venezuela. El caso se relaciona con la responsabilidad internacional del Estado de ", - "values": [ - "Comisi\u00f3n Interamericana de Derechos Humanos" - ] - }, - { - "text": "INFORME No. CASO INFORME DE FONDO JOHAN ALEXIS ORTIZ HERN\u00c1NDEZ VENEZUELA DE ENERO DE I. RESUMEN El de marzo de la Comisi\u00f3n Interamericana de Derechos Humanos en adelante la Comisi\u00f3n Interamericana la Comisi\u00f3n o la CIDH recibi\u00f3 una petici\u00f3n presentada por Edgar Humberto Ortiz Ruiz y Zaida Hern\u00e1ndez de Arellano en adelante los peticionarios en la cual se aleg\u00f3 la responsabilidad de la Rep\u00fablica Bolivariana de Venezuela en adelante el Estado o el Estado venezolano por el fallecimiento de su", - "values": [ - "Comisi\u00f3n Interamericana de Derechos Humanos" - ] - }, - { - "text": "INFORME N\u00ba PETICI\u00d3N ADMISIBILIDAD JOHAN ALEXIS ORTIZ HERN\u00c1NDEZ VENEZUELA de febrero de I. RESUMEN El de marzo de la Comisi\u00f3n Interamericana de Derechos Humanos en adelante la Comisi\u00f3n o la CIDH recibi\u00f3 una petici\u00f3n presentada por Edgar Humberto Ortiz Ruiz y Zaida Hern\u00e1ndez de Arellano en adelante los peticionarios en la cual se alega la responsabilidad de la Rep\u00fablica Bolivariana de Venezuela en adelante el Estado o el Estado venezolano por el fallecimiento de su hijo Johan Alexis Ortiz", - "values": [ - "Comisi\u00f3n Interamericana de Derechos Humanos" - ] - }, - { - "text": " de marzo de Ref Caso No. Trabajadores de la Fazenda Brasil Verde Brasil Se\u00f1or Secretario Tengo el agrado de dirigirme a usted en nombre de la Comisi\u00f3n Interamericana de Derechos Humanos con el objeto de someter a la jurisdicci\u00f3n de la Honorable Corte Interamericana de Derechos Humanos el caso Trabajadores de la Fazenda Brasil Verde respecto de la Rep\u00fablica Federativa de Brasil en adelante el Estado el Estado brasilero o Brasil. El caso se relaciona con la situaci\u00f3n de trabajo forzado y ", - "values": [ - "Comisi\u00f3n Interamericana de Derechos Humanos" - ] - }, - { - "text": "no text", - "values": [ - "Comisi\u00f3n Interamericana de Derechos Humanos" - ] - }, - { - "text": " de febrero de REF Caso No. Luis Jorge Valencia Hinojosa Ecuador Se\u00f1or Secretario Tengo el agrado de dirigirme a usted en nombre de la Comisi\u00f3n Interamericana de Derechos Humanos con el objeto de someter a la jurisdicci\u00f3n de la Honorable Corte Interamericana de Derechos Humanos el caso Luis Jorge Valencia Hinojosa respecto de la Rep\u00fablica del Ecuador en adelante el Estado el Estado ecuatoriano o Ecuador. El caso se relaciona con la muerte violenta del agente de polic\u00eda Luis Jorge Valencia ", - "values": [ - "Comisi\u00f3n Interamericana de Derechos Humanos" - ] - }, - { - "text": "REPORT No. CASE ADMISSIBILITY AND MERITS LUIS JORGE VALENCIA HINOJOSA ECUADOR OCTOBER XX I. SUMMARY On November the InterAmerican Commission on Human Rights hereinafter also the InterAmerican Commission the Commission or the IACHR received a petition submitted by the Comisi\u00f3n Ecum\u00e9nica de Derechos Humanos hereinafter also the petitioners alleging the violation by the Republic of Ecuador hereinafter the Ecuadorian State the State or Ecuador of several provisions of the American Convention", - "values": [ - "Comisi\u00f3n Interamericana de Derechos Humanos" - ] - }, - { - "text": " de febrero de Ref Caso No. Luis Williams Pollo Rivera Per\u00fa Se\u00f1or Secretario Tengo el agrado de dirigirme a usted en nombre de la Comisi\u00f3n Interamericana de Derechos Humanos con el objeto de someter a la jurisdicci\u00f3n de la Honorable Corte Interamericana de Derechos Humanos el caso Luis Williams Pollo Rivera respecto de la Rep\u00fablica de Per\u00fa en adelante el Estado el Estado peruano o Per\u00fa. El caso se relaciona con una serie de violaciones a los derechos humanos en perjuicio del se\u00f1or Luis ", - "values": [ - "Comisi\u00f3n Interamericana de Derechos Humanos" - ] - }, - { - "text": " de enero de Ref Caso No. Lupe Andrade Bolivia Se\u00f1or Secretario Tengo el agrado de dirigirme a usted en nombre de la Comisi\u00f3n Interamericana de Derechos Humanos con el objeto de someter a la jurisdicci\u00f3n de la Honorable Corte Interamericana de Derechos Humanos el caso Lupe Andrade respecto del Estado Plurinacional de Bolivia en adelante el Estado el Estado boliviano o Bolivia. El presente caso se relaciona con la responsabilidad internacional del Estado por las violaciones a la Convenci\u00f3n ", - "values": [ - "Comisi\u00f3n Interamericana de Derechos Humanos" - ] - }, - { - "text": "INFORME No. CASO FONDO MAR\u00cdA NINA LUPE DEL ROSARIO ANDRADE SALM\u00d3N BOLIVIA de marzo de I. I. RESUMEN El de abril de la Comisi\u00f3n Interamericana de Derechos Humanos en adelante tambi\u00e9n la Comisi\u00f3n Interamericana la Comisi\u00f3n o la CIDH recibi\u00f3 una petici\u00f3n presentada por Coty Krsul Andrade en adelante tambi\u00e9n los peticionarios en representaci\u00f3n de la se\u00f1ora Mar\u00eda Nina Lupe del Rosario Andrade Salm\u00f3n en adelante tambi\u00e9n la presunta v\u00edctima o la se\u00f1ora Andrade en la cual se alega la violaci\u00f3n ", - "values": [ - "Comisi\u00f3n Interamericana de Derechos Humanos" - ] - }, - { - "text": "CORTE INTERAMERICANA DE DERECHOS HUMANOS CASO PACHECO LE\u00d3N Y OTROS VS. HONDURAS SENTENCIA DE DE NOVIEMBRE DE Fondo Reparaciones y Costas En el caso Pacheo Le\u00f3n y otros Vs. Honduras la Corte Interamericana de Derechos Humanos en adelante la Corte Interamericana la Corte o este Tribunal integrada por los siguientes jueces Roberto F. Caldas Presidente Eduardo Ferrer MacGregor Poisot Vicepresidente Eduardo Vio Grossi Juez Humberto Antonio Sierra Porto Juez Elizabeth Odio Benito Jueza Eugenio Ra\u00fal", - "values": [ - "Corte Interamericana de Derechos Humanos" - ] - }, - { - "text": "INFORME N\u00ba PETICI\u00d3N ADMISIBILIDAD \u00c1NGEL PACHECO LE\u00d3N HONDURAS de octubre de I. RESUMEN El de agosto de la Comisi\u00f3n Interamericana de Derechos Humanos en adelante la Comisi\u00f3n Interamericana o la CIDH recibi\u00f3 una denuncia presentada por Marleny Pacheco Posadas en adelante los peticionarios en contra del Estado de Honduras en adelante el Estado Honduras o el Estado hondure\u00f1o por no realizar una investigaci\u00f3n seria y diligente para determinar a los responsables del asesinato de \u00c1ngel Le\u00f3n ", - "values": [ - "Comisi\u00f3n Interamericana de Derechos Humanos" - ] - }, - { - "text": "RESOLUCI\u00d3N DEL PRESIDENTE DE LA CORTE INTERAMERICANA DE DERECHOS HUMANOS DE DE DICIEMBRE DE ADOPCI\u00d3N DE MEDIDAS URGENTES CASO DURAND Y UGARTE VS. PER\u00da VISTO La Sentencia de fondo de de agosto de en adelante la Sentencia mediante la cual la Corte Interamericana de Derechos Humanos en adelante tambi\u00e9n la Corte Interamericana o el Tribunal declar\u00f3 responsable internacionalmente a la Rep\u00fablica del Per\u00fa en adelante el Estado o Per\u00fa por la violaci\u00f3n del derecho a la vida de los se\u00f1ores Nolberto ", - "values": [ - "Corte Interamericana de Derechos Humanos" - ] - }, - { - "text": "RESOLUCI\u00d3N DEL PRESIDENTE DE LA CORTE INTERAMERICANA DE DERECHOS HUMANOS DE DE DICIEMBRE DE FONDO DE ASISTENCIA LEGAL DE V\u00cdCTIMAS CASO ALVARADO ESPINOZA Y OTROS VS. M\u00c9XICO VISTO El escrito de de noviembre de y el Informe No. y sus anexos mediante los cuales la Comisi\u00f3n Interamericana de Derechos Humanos en adelante la Comisi\u00f3n Interamericana o la Comisi\u00f3n someti\u00f3 ante la Corte Interamericana de Derechos Humanos en adelante la Corte Interamericana la Corte o el Tribunal el presente caso. ", - "values": [ - "Corte Interamericana de Derechos Humanos" - ] - }, - { - "text": " de noviembre de Ref Caso Nitza Paola Alvarado Espinoza Roc\u00edo Irene Alvarado Reyes Jos\u00e9 \u00c1ngel Alvarado Herrera y otros M\u00e9xico Se\u00f1or Secretario Tengo el agrado de dirigirme a usted en nombre de la Comisi\u00f3n Interamericana de Derechos Humanos con el objeto de someter a la jurisdicci\u00f3n de la Honorable Corte Interamericana de Derechos Humanos el caso Nitza Paola Alvarado Espinoza Roc\u00edo Irene Alvarado Reyes Jos\u00e9 \u00c1ngel Alvarado Herrera y otros respecto de los Estados Unidos Mexicanos en adelante ", - "values": [ - "Comisi\u00f3n Interamericana de Derechos Humanos" - ] - }, - { - "text": "INFORME No. CASO FONDO NITZA PAOLA ALVARADO ESPINOZA ROC\u00cdO IRENE ALVARADO REYES JOS\u00c9 \u00c1NGEL ALVARADO HERRERA Y OTROS M\u00c9XICO DE ABRIL DE I. RESUMEN El de junio de la Comisi\u00f3n Interamericana de Derechos Humanos en adelante la CIDH la Comisi\u00f3n o la Comisi\u00f3n Interamericana recibi\u00f3 una petici\u00f3n presentada por el Centro de Derechos Humanos de las Mujeres CEDEHM la Comisi\u00f3n de Solidaridad y Defensa de los Derechos Humanos COSYDDHAC Justicia Para Nuestras Hijas JPNH y el Centro de Derechos Paso", - "values": [ - "Comisi\u00f3n Interamericana de Derechos Humanos" - ] - }, - { - "text": "INFORME No. PETICI\u00d3N ADMISIBILIDAD NITZA PAOLA ALVARADO ESPINOZA ROC\u00cdO IRENE ALVARADO REYES JOS\u00c9 \u00c1NGEL ALVARADO HERRERA Y OTROS M\u00c9XICO de julio de I. RESUMEN El de junio de la Comisi\u00f3n Interamericana de Derechos Humanos en adelante CIDH o Comisi\u00f3n recibi\u00f3 una petici\u00f3n presentada por el Centro de Derechos Humanos de las Mujeres CEDEHM la Comisi\u00f3n de Solidaridad y Defensa de los Derechos Humanos COSYDDHAC Justicia Para Nuestras Hijas JPNH todas con sede en la ciudad de Chihuahua y el de ", - "values": [ - "Comisi\u00f3n Interamericana de Derechos Humanos" - ] - }, - { - "text": "RESOLUCI\u00d3N DEL PRESIDENTE EN EJERCICIO DE LA CORTE INTERAMERICANA DE DERECHOS HUMANOS DE DE DICIEMBRE DE CASO ISAZA URIBE Y OTROS VS. COLOMBIA CONVOCATORIA A AUDIENCIA VISTO El escrito de sometimiento del caso y el Informe de Fondo de la Comisi\u00f3n Interamericana de Derechos Humanos en adelante la Comisi\u00f3n Interamericana o la Comisi\u00f3n el escrito de solicitudes argumentos y pruebas en adelante el escrito de solicitudes y argumentos de los representantes en adelante los representantes el de ", - "values": [ - "Corte Interamericana de Derechos Humanos" - ] - }, - { - "text": "CORTE INTERAMERICANA DE DERECHOS HUMANOS CASO VEREDA LA ESPERANZA VS. COLOMBIA SENTENCIA DE DE AGOSTO Excepci\u00f3n Preliminar Fondo Reparaciones y Costas En el Caso Vereda La Esperanza Vs. Colombia la Corte Interamericana de Derechos Humanos en adelante la Corte Interamericana la Corte o el Tribunal integrada por los siguientes Jueces Roberto F. Caldas Presidente Eduardo Ferrer MacGregor Poisot Vicepresidente Eduardo Vio Grossi Juez Elizabeth Odio Benito Jueza Eugenio Ra\u00fal Zaffaroni Juez y L. ", - "values": [ - "Corte Interamericana de Derechos Humanos" - ] - }, - { - "text": "VOTO CONCURRENTE DEL JUEZ EDUARDO FERRER MACGREGOR POISOT CASO VEREDA LA ESPERANZA VS. COLOMBIA SENTENCIA DE DE AGOSTO DE EXCEPCI\u00d3N PRELIMINAR FONDO REPARACIONES Y COSTAS INTRODUCCI\u00d3N LA JUSTICIABILIDAD DIRECTA DEL DERECHO A LA VIVIENDA Y SU AUTONOM\u00cdA RESPECTO DE OTROS DERECHOS Concurro esencialmente con lo decidido en la Sentencia. Sin embargo emito el presente voto para expresar las razones por las cuales considero que la Corte Interamericana de Derechos Humanos en adelante Corte IDH o ", - "values": [ - "Corte Interamericana de Derechos Humanos" - ] - }, - { - "text": "CORTE INTERAMERICANA DE DERECHOS HUMANOS CASO ORTIZ HERN\u00c1NDEZ Y OTROS VS. VENEZUELA SENTENCIA DE DE AGOSTO DE Fondo Reparaciones y Costas En el caso Ortiz Hern\u00e1ndez y otros la Corte Interamericana de Derechos Humanos en adelante la Corte Interamericana la Corte o este Tribunal integrada por los siguientes jueces Eduardo Ferrer MacGregor Poisot Presidente en ejercicio Eduardo Vio Grossi Juez Humberto Antonio Sierra Porto Juez Elizabeth Odio Benito Jueza Eugenio Ra\u00fal Zaffaroni Juez y L. ", - "values": [ - "Corte Interamericana de Derechos Humanos" - ] - }, - { - "text": "VOTO INDIVIDUAL DEL JUEZ EDUARDO VIO GROSSI CORTE INTERAMERICANA DE DERECHOS HUMANOS CASO TRABAJADORES CESADOS DE PETROPER\u00da Y OTROS VS. PER\u00da SENTENCIA DE DE NOVIEMBRE DE Excepciones Preliminares Fondo Reparaciones y Costas INTRODUCCI\u00d3N. Se expide el presente voto individual respecto de la referencia que la Sentencia del ep\u00edgrafe hace al art\u00edculo de la Convenci\u00f3n Americana sobre Derechos Humanos. Y tal como en otras ocasiones este voto se emite respetando la Sentencia de la Corte de a ", - "values": [ - "Corte Interamericana de Derechos Humanos" - ] - }, - { - "text": "CORTE INTERAMERICANA DE DERECHOS HUMANOS CASO TRABAJADORES CESADOS DE PETROPER\u00da Y OTROS VS. PER\u00da SENTENCIA DE DE NOVIEMBRE DE Excepciones Preliminares Fondo Reparaciones y Costas En el Caso Trabajadores Cesados de Petroper\u00fa del Ministerio de Educaci\u00f3n del Ministerio de Econom\u00eda y Finanzas y de la Empresa Nacional de Puertos la Corte Interamericana de Derechos Humanos en adelante la Corte Interamericana la Corte o el Tribunal integrada por los siguientes Jueces y Jueza Roberto F. Caldas ", - "values": [ - "Corte Interamericana de Derechos Humanos" - ] - }, - { - "text": "VOTO PARCIALMENTE DISIDENTE DEL JUEZ HUMBERTO ANTONIO SIERRA PORTO A LA SENTENCIA DE DE NOVIEMBRE DE DE LA CORTE INTERAMERICANA DE DERECHOS HUMANOS EN EL CASO DE TRABAJADORES CESADOS DE PETROPER\u00da Y OTROS VS. PER\u00da I. Introducci\u00f3n Con el acostumbrado respeto por las decisiones de la Corte y precisando que comparto en su mayor\u00eda las consideraciones que sustentan la Sentencia me permito formular el presente voto parcialmente disidente. El voto tiene dos partes la primera se refiere al que la ", - "values": [ - "Corte Interamericana de Derechos Humanos" - ] - }, - { - "text": "CORTE INTERAMERICANA DE DERECHOS HUMANOS CASO YARCE Y OTRAS VS. COLOMBIA SENTENCIA DE DE NOVIEMBRE DE Interpretaci\u00f3n de la Sentencia de Excepci\u00f3n Preliminar Fondo Reparaciones y Costas En el caso Yarce y Otras Vs. Colombia la Corte Interamericana de Derechos Humanos en adelante la Corte Interamericana la Corte o el Tribunal integrada por los siguientes Jueces Roberto F. Caldas Presidente Eduardo Ferrer MacGregor Poisot Vicepresidente Manuel E. Ventura Robles Juez Eduardo Vio Grossi Juez y ", - "values": [ - "Corte Interamericana de Derechos Humanos" - ] - }, - { - "text": "RESOLUCI\u00d3N DE LA CORTE INTERAMERICANA DE DERECHOS HUMANOS DE NOVIEMBRE DE MEDIDAS PROVISIONALES RESPECTO DE LA REP\u00daBLICA FEDERATIVA DE BRASIL ASUNTO DE LA UNIDAD DE INTERNACI\u00d3N SOCIOEDUCATIVA VISTO Las Resoluciones emitidas por la Corte Interamericana de Derechos Humanos en adelante la Corte Interamericana la Corte o el Tribunal el de febrero y de septiembre de de abril y de noviembre de de agosto de de enero y de septiembre de y de junio de mediante las cuales entre otros a ", - "values": [ - "Corte Interamericana de Derechos Humanos" - ] - }, - { - "text": "RESOLUCI\u00d3N DE LA CORTE INTERAMERICANA DE DERECHOS HUMANOS DE NOVIEMBRE DE CASO CANTOS VS. ARGENTINA SUPERVISI\u00d3N DE CUMPLIMIENTO DE SENTENCIA VISTO La Sentencia de fondo reparaciones y costas en adelante la Sentencia o el Fallo dictada por la Corte Interamericana de Derechos Humanos en adelante la Corte la Corte Interamericana o el Tribunal el de noviembre de El Tribunal declar\u00f3 responsable internacionalmente a la Rep\u00fablica Argentina en adelante el Estado o Argentina por la violaci\u00f3n del ", - "values": [ - "Corte Interamericana de Derechos Humanos" - ] - }, - { - "text": "RESOLUCI\u00d3N DE LA CORTE INTERAMERICANA DE DERECHOS HUMANOS DE DE NOVIEMBRE DE CASO GARC\u00cdA IBARRA Y OTROS VS. ECUADOR SUPERVISI\u00d3N DE CUMPLIMIENTO DE SENTENCIA VISTO La Sentencia de excepciones preliminares fondo reparaciones y costas en adelante la Sentencia dictada por la Corte Interamericana de Derechos Humanos en adelante la Corte Interamericana la Corte o el Tribunal el de noviembre de La Corte declar\u00f3 la responsabilidad internacional de la Rep\u00fablica del Ecuador en adelante el Estado o ", - "values": [ - "Corte Interamericana de Derechos Humanos" - ] - }, - { - "text": "INTER AMERICAN COMMISSION ON HUMAN RIGHTS COMISION INTERAMERICANA DE DERECHOS HUMANOS COMISS\u00c3O INTERAMERICANA DE DIREITOS HUMANOS COMMISSION INTERAM\u00c9RICAINE DES DROITS DE LHOMME ORGANIZACI\u00d3N DE LOS ESTADOS AMERICANOS WASHINGTON DC. EEUU de noviembre de Ref Caso No. Garc\u00eda Ibarra y familia Ecuador Se\u00f1or Secretario Tengo el agrado de dirigirme a usted en nombre de la Comisi\u00f3n Interamericana de Derechos Humanos con el objeto de someter a la jurisdicci\u00f3n de la Honorable Corte de Derechos ", - "values": [ - "Comisi\u00f3n Interamericana de Derechos Humanos" - ] - }, - { - "text": "INFORME No. CASO ADMISIBILIDAD Y FONDO JOS\u00c9 LU\u00cdS GARC\u00cdA IBARRA Y FAMILIA ECUADOR de julio de I. RESUMEN El de noviembre de la Comisi\u00f3n Interamericana de Derechos Humanos en adelante tambi\u00e9n la Comisi\u00f3n Interamericana la Comisi\u00f3n o la CIDH recibi\u00f3 una petici\u00f3n presentada por la Comisi\u00f3n Ecum\u00e9nica de Derechos Humanos en adelante tambi\u00e9n los peticionarios en la cual se aleg\u00f3 la violaci\u00f3n por parte de la Rep\u00fablica de Ecuador en adelante tambi\u00e9n el Estado ecuatoriano el Estado o Ecuador de ", - "values": [ - "Comisi\u00f3n Interamericana de Derechos Humanos" - ] - }, - { - "text": "RESOLUCI\u00d3N DE LA CORTE INTERAMERICANA DE DERECHOS HUMANOS DE DE NOVIEMBRE DE CASO HELIODORO PORTUGAL VS. PANAM\u00c1 SUPERVISI\u00d3N DE CUMPLIMIENTO DE SENTENCIA VISTO La Sentencia de excepciones preliminares fondo reparaciones y costas en adelante la Sentencia dictada por la Corte Interamericana de Derechos Humanos en adelante la Corte Interamericana la Corte o el Tribunal el de agosto de La Corte declar\u00f3 la responsabilidad internacional de la Rep\u00fablica de Panam\u00e1 en adelante el Estado o Panam\u00e1 ", - "values": [ - "Corte Interamericana de Derechos Humanos" - ] - }, - { - "text": "RESOLUCI\u00d3N DE LA CORTE INTERAMERICANA DE DERECHOS HUMANOS DE DE NOVIEMBRE DE CASO IV. VS. BOLIVIA SUPERVISI\u00d3N DE CUMPLIMIENTO DE SENTENCIA VISTO La Sentencia de excepciones preliminares fondo reparaciones y costas en adelante la Sentencia o el Fallo dictada por la Corte Interamericana de Derechos Humanos en adelante la Corte la Corte Interamericana o el Tribunal el de noviembre de Los hechos del caso se refieren a la esterilizaci\u00f3n no consentida realizada a la se\u00f1ora IV. en un hospital ", - "values": [ - "Corte Interamericana de Derechos Humanos" - ] - }, - { - "text": "RESOLUCI\u00d3N DE LA CORTE INTERAMERICANA DE DERECHOS HUMANOS DE DE NOVIEMBRE DE REINTEGRO AL FONDO DE ASISTENCIA LEGAL DE V\u00cdCTIMAS CASOS OSORIO RIVERA Y FAMILIARES J PENAL MIGUEL CASTRO CASTRO TARAZONA ARRIETA Y OTROS ESPINOZA GONZ\u00c1LES CRUZ S\u00c1NCHEZ Y OTROS CANALES HUAPAYA Y OTROS COMUNIDAD CAMPESINA DE SANTA B\u00c1RBARA QUISPIALAYA VILCAPOMA Y TENORIO ROCA Y OTROS VS. PER\u00da VISTO Las Sentencias emitidas por la Corte Interamericana de Derechos Humanos en adelante la Corte la Corte Interamericana o el", - "values": [ - "Corte Interamericana de Derechos Humanos" - ] - }, - { - "text": "RESOLUCI\u00d3N DE LA CORTE INTERAMERICANA DE DERECHOS HUMANOS DE DE NOVIEMBRE DE REINTEGRO AL FONDO DE ASISTENCIA LEGAL DE V\u00cdCTIMAS CASO BOYCE Y OTROS Y CASO DACOSTA CADOGAN VS. BARBADOS VISTO Las Sentencias de excepciones preliminares fondo reparaciones y costas en adelante las Sentencias emitidas por la Corte Interamericana de Derechos Humanos en adelante la Corte Interamericana la Corte o el Tribunal el de noviembre de en el caso Boyce y otros y el de septiembre de en el caso DaCosta en ", - "values": [ - "Corte Interamericana de Derechos Humanos" - ] - }, - { - "text": "RESOLUCI\u00d3N DEL PRESIDENTE EN EJERCICIO DE LA CORTE INTERAMERICANA DE DERECHOS HUMANOS DE DE DICIEMBRE DE CASO L\u00d3PEZ SOTO Y OTROS VS. VENEZUELA CONVOCATORIA A AUDIENCIA VISTO El escrito de sometimiento del caso y el Informe de Fondo de la Comisi\u00f3n Interamericana de Derechos Humanos en adelante la Comisi\u00f3n Interamericana o la Comisi\u00f3n el escrito de solicitudes argumentos y pruebas en adelante el escrito de solicitudes y argumentos de los representantes de las presuntas v\u00edctimas en adelante ", - "values": [ - "Corte Interamericana de Derechos Humanos" - ] - }, - { - "text": "RESOLUCI\u00d3N DEL PRESIDENTE EN EJERCICIO DE LA CORTE INTERAMERICANA DE DERECHOS HUMANOS DE DE DICIEMBRE DE CASO COC MAX Y OTROS VS GUATEMALA CONVOCATORIA A AUDIENCIA VISTO El escrito de sometimiento del caso y el Informe de Fondo de la Comisi\u00f3n Interamericana de Derechos Humanos en adelante la Comisi\u00f3n Interamericana o la Comisi\u00f3n el escrito de solicitudes argumentos y pruebas en adelante el escrito de solicitudes y argumentos de los representantes en adelante los representantes y el escrito ", - "values": [ - "Corte Interamericana de Derechos Humanos" - ] - }, - { - "text": " de septiembre de REF Caso N\u00ba Maurilia Coc Max y Otros Masacre de Xaman Guatemala Se\u00f1or Secretario Tengo el agrado de dirigirme a usted en nombre de la Comisi\u00f3n Interamericana de Derechos Humanos con el objeto de someter a la jurisdicci\u00f3n de la Honorable Corte Interamericana de Derechos Humanos el Caso N\u00ba Maurilia Coc Max y otros Masacre de Xaman respecto de la Rep\u00fablica de Guatemala en adelante el Estado el Estado de Guatemala el Estado guatemalteco o Guatemala relacionado con la masacre ", - "values": [ - "Comisi\u00f3n Interamericana de Derechos Humanos" - ] - }, - { - "text": "INFORME No. CASO INFORME DE ADMISIBILIDAD Y FONDO MAURILIA COC MAX Y OTROS MASACRE DE XAM\u00c1N GUATEMALA DE JUNIO DE I. RESUMEN El de noviembre de la Comisi\u00f3n Interamericana de Derechos Humanos en adelante la Comisi\u00f3n o la CIDH recibi\u00f3 una petici\u00f3n presentada por Rigoberta Mench\u00fa Tum Eduardo Antonio Salerno y Mar\u00eda L\u00f3pez Funes. Posteriormente se constituy\u00f3 como peticionario el Grupo de Apoyo Mutuo GAM en adelante los peticionarios. Los peticionarios alegaron la responsabilidad del Estado de", - "values": [ - "Comisi\u00f3n Interamericana de Derechos Humanos" - ] - }, - { - "text": "RESOLUCI\u00d3N DE LA CORTE INTERAMERICANA DE DERECHOS HUMANOS DE DE NOVIEMBRE DE MEDIDAS PROVISIONALES RESPECTO DE LA REP\u00daBLICA DE COLOMBIA ASUNTO ALMANZA SU\u00c1REZ VISTOS Las Resoluciones del Presidente de la Corte Interamericana de Derechos Humanos en adelante el Presidente en el Asunto \u00c1lvarez y otros respecto de Colombia luego denominado Almanza Su\u00e1rez respecto de Colombia infra Visto de de julio de agosto y de diciembre de de mayo y de agosto de y de julio de Las Resoluciones de la", - "values": [ - "Corte Interamericana de Derechos Humanos" - ] - }, - { - "text": "INFORME No. PETICI\u00d3N ADMISIBILIDAD VINICIO POBLETE VILCHES CHILE de marzo de I. RESUMEN El presente informe se refiere a la admisibilidad de la petici\u00f3n Las actuaciones fueron iniciadas por la Comisi\u00f3n Interamericana de Derechos Humanos en lo sucesivo Comisi\u00f3n Interamericana Comisi\u00f3n o CIDH tras recibir una petici\u00f3n el de mayo de presentada por los se\u00f1ores Blanca Margarita Tapia Encina Cesia Leyla Poblete Tapia y Vinicio Antonio Poblete Tapia en adelante los peticionarios contra la ", - "values": [ - "Comisi\u00f3n Interamericana de Derechos Humanos" - ] - }, - { - "text": "INFORME No. PETICI\u00d3N ADMISIBILIDAD V\u00cdCTOR MANUEL ISAZA URIBE Y FAMILIA COLOMBIA de julio de I. RESUMEN En diciembre de la Comisi\u00f3n Interamericana de Derechos Humanos en adelante la Comisi\u00f3n recibi\u00f3 una petici\u00f3n presentada por la Asociaci\u00f3n de Familiares de Detenidos Desaparecidos ASFADDES y la Comisi\u00f3n Colombiana de Juristas en adelante los peticionarios en la cual se alega que el de noviembre de con la tolerancia de agentes de la Rep\u00fablica de Colombia en adelante el Estado el ", - "values": [ - "Comisi\u00f3n Interamericana de Derechos Humanos" - ] - }, - { - "text": "VOTO RAZONADO DEL JUEZ EDUARDO FERRER MACGREGOR POISOT A LA RESOLUCI\u00d3N DE LA CORTE INTERAMERICANA DE DERECHOS HUMANOS DE DE MARZO DE SUPERVISI\u00d3N DE CUMPLIMIENTO DE SENTENCIA EN EL CASO GELMAN VS. URUGUAY I. INTRODUCCI\u00d3N IMPORTANCIA DE LA PRESENTE RESOLUCI\u00d3N DE SUPERVISI\u00d3N DE CUMPLIMIENTO DE SENTENCIA Una de las competencias m\u00e1s importantes que actualmente ejerce la Corte Interamericana de Derechos Humanos en adelante Corte IDH o Tribunal Interamericano es la supervisi\u00f3n sobre el cumplimiento", - "values": [ - "Corte Interamericana de Derechos Humanos" - ] - }, - { - "text": "INFORME N\u00ba PETICI\u00d3N ADMISIBILIDAD LUIS ROLANDO CUSCUL PIVARAL Y OTRAS PERSONAS AFECTADAS POR EL VIHSIDA GUATEMALA de marzo de I. RESUMEN El de agosto de la Comisi\u00f3n Interamericana de Derechos Humanos en adelante la Comisi\u00f3n recibi\u00f3 una petici\u00f3n presentada por el Centro por la Justicia y el Derecho Internacional CEJIL la Red Nacional de Personas que Viven con el VIHSIDA presidida por el Sr. F\u00e9lix Vagrera la Asociaci\u00f3n Gente Unida El Proyecto Vida representada por Dee Smith La Fundaci\u00f3n ", - "values": [ - "Comisi\u00f3n Interamericana de Derechos Humanos" - ] - }, - { - "text": "INFORME No PETICI\u00d3N NELSON CARVAJAL CARVAJAL ADMISIBILIDAD COLOMBIA de octubre de I. RESUMEN El presente informe se refiere a la admisibilidad de la Petici\u00f3n presentada ante la Comisi\u00f3n Interamericana de Derechos Humanos en lo sucesivo la Comisi\u00f3n Interamericana la Comisi\u00f3n o la CIDH el de junio de por la Sociedad Interamericana de Prensa en adelante la SIP la peticionaria o la denunciante contra la Rep\u00fablica de Colombia en adelante Colombia el Estado o el Estado colombiano. La se ", - "values": [ - "Comisi\u00f3n Interamericana de Derechos Humanos" - ] - }, - { - "text": "INFORME No. CASO ADMISIBILIDAD Y FONDO VEREDA LA ESPERANZA COLOMBIA de noviembre de I. RESUMEN El de julio de la Comisi\u00f3n Interamericana de Derechos Humanos en adelante la Comisi\u00f3n o la CIDH recibi\u00f3 una petici\u00f3n presentada por la Corporaci\u00f3n Jur\u00eddica Libertad en adelante los peticionarios en la cual se aleg\u00f3 la responsabilidad internacional de la Rep\u00fablica de Colombia en adelante el Estado el Estado colombiano o Colombia por la desaparici\u00f3n forzada de personas incluyendo tres ni\u00f1os y ", - "values": [ - "Comisi\u00f3n Interamericana de Derechos Humanos" - ] - }, - { - "text": " de diciembre de Ref Caso No. Vereda La Esperanza Colombia Se\u00f1or Secretario Tengo el agrado de dirigirme a usted en nombre de la Comisi\u00f3n Interamericana de Derechos Humanos con el objeto de someter a la jurisdicci\u00f3n de la Honorable Corte Interamericana de Derechos Humanos el caso Vereda La Esperanza respecto de la Rep\u00fablica de Colombia en adelante el Estado el Estado colombiano o Colombia. El caso se relaciona con la desaparici\u00f3n forzada de personas incluyendo tres ni\u00f1os y la ejecuci\u00f3n de ", - "values": [ - "Comisi\u00f3n Interamericana de Derechos Humanos" - ] - }, - { - "text": "INFORME No. PETICI\u00d3N ADMISIBILIDAD PUEBLO IND\u00cdGENA XUCURU BRASIL de octubre de I. RESUMEN El de octubre de el Movimento Nacional de Direitos HumanosRegional Nordeste el Gabinete de Assessoria Jur\u00eddica \u00e0s Organiza\u00e7\u00f5es Populares GAJOP y el Conselho Indigenista Mission\u00e1rio CIMI en adelante los peticionarios presentaron una denuncia ante la Comisi\u00f3n Interamericana de Derechos Humanos la Comisi\u00f3n Interamericana o la CIDH contra la Rep\u00fablica Federativa de Brasil el Estado o Brasil por del", - "values": [ - "Comisi\u00f3n Interamericana de Derechos Humanos" - ] - }, - { - "text": "RESOLUCI\u00d3N DEL PRESIDENTE DE LA CORTE INTERAMERICANA DE DERECHOS HUMANOS DE DE ENERO DE CASO ISAZA URIBE Y OTROS VS. COLOMBIA VISTO La Resoluci\u00f3n del Presidente de la Corte en adelante el Presidente de de diciembre de mediante la cual se requiri\u00f3 la declaraci\u00f3n de presuntas v\u00edctimas testigos y peritos y se convoc\u00f3 a audiencia p\u00fablica. El escrito de de diciembre de mediante el cual el Estado de Colombia en adelante Colombia o el Estado solicit\u00f3 una reconsideraci\u00f3n de la referida as\u00ed ", - "values": [ - "Corte Interamericana de Derechos Humanos" - ] - }, - { - "text": " de febrero de REF Caso No. Hermanos Ram\u00edrez y familia Guatemala Se\u00f1or Secretario Tengo el agrado de dirigirme a usted en nombre de la Comisi\u00f3n Interamericana de Derechos Humanos con el objeto de someter a la jurisdicci\u00f3n de la Honorable Corte Interamericana de Derechos Humanos el caso Hermanos Ram\u00edrez y familia respecto de la Rep\u00fablica de Guatemala en adelante el Estado el Estado guatemalteco o Guatemala. El caso se relaciona con una serie de violaciones a la Convenci\u00f3n Americana sobre ", - "values": [ - "Comisi\u00f3n Interamericana de Derechos Humanos" - ] - }, - { - "text": "INFORME No. CASO FONDO HERMANOS RAM\u00cdREZ Y FAMILIA GUATEMALA DE OCTUBRE DE I. RESUMEN El agosto de la Comisi\u00f3n Interamericana de Derechos Humanos en adelante la Comisi\u00f3n la CIDH o la Comisi\u00f3n Interamericana recibi\u00f3 una petici\u00f3n presentada por la Asociaci\u00f3n Casa Alianza el Movimiento Social por los Derechos de la Ni\u00f1ez y el Centro por la Justicia y el Derecho Internacional CEJIL en adelante los peticionarios en donde se aleg\u00f3 la responsabilidad internacional de la Rep\u00fablica de Guatemala en", - "values": [ - "Comisi\u00f3n Interamericana de Derechos Humanos" - ] - }, - { - "text": "INFORME No. PETICI\u00d3N ADMISIBILIDAD HERMANOS RAM\u00cdREZ Y FAMILIA GUATEMALA de marzo de I. RESUMEN El \u00ba de agosto de la Comisi\u00f3n Interamericana de Derechos Humanos en adelante la Comisi\u00f3n la CIDH o la Comisi\u00f3n Interamericana recibi\u00f3 una petici\u00f3n presentada por la Asociaci\u00f3n Casa Alianza el Movimiento Social por los Derechos de la Ni\u00f1ez y el Centro por la Justicia y el Derecho Internacional CEJIL en adelante los peticionarios en nombre de los ni\u00f1os Osm\u00edn Ricardo Tobar Ram\u00edrez Jeffrey Rainiery ", - "values": [ - "Comisi\u00f3n Interamericana de Derechos Humanos" - ] - }, - { - "text": " de marzo de Ref Caso No. Roc\u00edo San Miguel Sosa y otras Venezuela Se\u00f1or Secretario Tengo el agrado de dirigirme a usted en nombre de la Comisi\u00f3n Interamericana de Derechos Humanos con el objeto de someter a la jurisdicci\u00f3n de la Honorable Corte Interamericana de Derechos Humanos el caso Roc\u00edo San Miguel Sosa y otras respecto de la Rep\u00fablica Bolivariana de Venezuela en adelante el Estado el Estado venezolano o Venezuela. El caso se relaciona con el despido arbitrario de Roc\u00edo San Miguel Sosa", - "values": [ - "Comisi\u00f3n Interamericana de Derechos Humanos" - ] - }, - { - "text": "INFORME No. CASO FONDO ROC\u00cdO SAN MIGUEL SOSA Y OTRAS VENEZUELA DE OCTUBRE DE I. RESUMEN El de marzo de la Comisi\u00f3n Interamericana de Derechos Humanos en adelante la Comisi\u00f3n la Comisi\u00f3n Interamericana o la CIDH recibi\u00f3 una petici\u00f3n presentada por Ligia Bol\u00edvar Osuna y H\u00e9ctor Fa\u00fandez Ledesma en adelante los peticionarios en la cual se alega la responsabilidad de la Rep\u00fablica Bolivariana de Venezuela en adelante el Estado el Estado venezolano o Venezuela por la violaci\u00f3n de varias de la ", - "values": [ - "Comisi\u00f3n Interamericana de Derechos Humanos" - ] - }, - { - "text": "INFORME No. PETICI\u00d3N ADMISIBILIDAD ROC\u00cdO SAN MIGUEL SOSA Y OTRAS VENEZUELA de julio de I. RESUMEN El de marzo de la Comisi\u00f3n Interamericana de Derechos Humanos en adelante la Comisi\u00f3n o la CIDH recibi\u00f3 una petici\u00f3n presentada por Ligia Bol\u00edvar Osuna y H\u00e9ctor Fa\u00fandez Ledesma en adelante los peticionarios en la cual se alega la responsabilidad de la Rep\u00fablica Bolivariana de Venezuela en adelante el Estado o el Estado venezolano por la violaci\u00f3n de los derechos a la integridad personal ", - "values": [ - "Comisi\u00f3n Interamericana de Derechos Humanos" - ] - }, - { - "text": "INFORME No. PETICI\u00d3N ADMISIBILIDAD VRP. y VPC. NICARAGUA de febrero de I. RESUMEN El de octubre de la Comisi\u00f3n Interamericana de Derechos Humanos en adelante la Comisi\u00f3n la CIDH o la Comisi\u00f3n Interamericana recibi\u00f3 una denuncia presentada por la se\u00f1ora VPC. en adelante la peticionaria o VPC madre de VRP. en adelante la presunta v\u00edctima o VRP en la que se alega la responsabilidad internacional del Estado de Nicaragua en adelante el Estado Estado de Nicaragua o el Estado nicarag\u00fcense por ", - "values": [ - "Comisi\u00f3n Interamericana de Derechos Humanos" - ] - }, - { - "text": " INFORME No. PETICI\u00d3N ADMISIBILIDAD CARLOS ARTURO UVA VELANDIA COLOMBIA de marzo de I. RESUMEN El de octubre de la Comisi\u00f3n Interamericana de Derechos Humanos en adelante la Comisi\u00f3n recibi\u00f3 una petici\u00f3n presentada por Horacio Perdomo Parada en adelante el peticionario en la cual se alega la responsabilidad de la Rep\u00fablica de Colombia en adelante el Estado el Estado colombiano o Colombia por la muerte de Carlos Arturo Uva Velandia por parte de un miembro de la Fuerza P\u00fablica en el de ", - "values": [ - "Comisi\u00f3n Interamericana de Derechos Humanos" - ] - }, - { - "text": "INFORME No. PETICI\u00d3N ADMISIBILIDAD ELIO GELVES CARRILLO Y OTROS COLOMBIA de julio de I. RESUMEN El de marzo de la Comisi\u00f3n Interamericana de Derechos Humanos en adelante la Comisi\u00f3n o la CIDH recibi\u00f3 una petici\u00f3n presentada por Humanidad Vigente Corporaci\u00f3n Jur\u00eddica en adelante los peticionarios en la cual se alega la responsabilidad de la Rep\u00fablica de Colombia en adelante el Estado o el Estado colombiano por la ejecuci\u00f3n extrajudicial de Elio Gelves Carrillo adolescente de a\u00f1os de ", - "values": [ - "Comisi\u00f3n Interamericana de Derechos Humanos" - ] - }, - { - "text": "INFORME No. PETICI\u00d3N ADMISIBILIDAD GUSTAVO GIRALDO VILLAMIZAR DUR\u00c1N COLOMBIA de octubre de I. RESUMEN El de marzo de la Comisi\u00f3n Interamericana de Derechos Humanos en adelante la Comisi\u00f3n recibi\u00f3 una petici\u00f3n presentada por Humanidad Vigente Corporaci\u00f3n Jur\u00eddica en adelante los peticionarios en la cual se alega la responsabilidad de la Rep\u00fablica de Colombia en adelante el Estado el Estado colombiano o Colombia por la muerte de Gustavo Giraldo Villamizar Dur\u00e1n el de agosto de en el de ", - "values": [ - "Comisi\u00f3n Interamericana de Derechos Humanos" - ] - }, - { - "text": "INFORME No. PETICI\u00d3N ADMISIBILIDAD WILFREDO QUI\u00d1ONEZ BARCENAS Y FAMILIA COLOMBIA de agosto de I. RESUMEN El de febrero de la Comisi\u00f3n Interamericana de Derechos Humanos en adelante la Comisi\u00f3n recibi\u00f3 una petici\u00f3n presentada por la Corporaci\u00f3n Colectivo de Abogados Jos\u00e9 Alvear Restrepo en adelante los peticionarios en la cual se alega la responsabilidad de agentes de la Rep\u00fablica de Colombia en adelante el Estado el Estado colombiano o Colombia por la ejecuci\u00f3n extrajudicial de Wilfredo ", - "values": [ - "Comisi\u00f3n Interamericana de Derechos Humanos" - ] - }, - { - "text": "INFORME NO. CASOS FONDO GUSTAVO GIRALDO VILLAMIZAR DUR\u00c1N Y OTROS COLOMBIA DE JULIO DE I. RESUMEN Entre el de marzo de y el de febrero de la Comisi\u00f3n Interamericana de Derechos Humanos en adelante tambi\u00e9n la Comisi\u00f3n Interamericana la Comisi\u00f3n o la CIDH recibi\u00f3 cuatro peticiones en las cuales se alegan respectivamente la ejecuci\u00f3n extrajudicial de Elio Gelves Carrillo Gustavo Giraldo Villamizar Dur\u00e1n Carlos Arturo Uva Velandia y Wilfredo Qui\u00f1\u00f3nez cometidas por agentes del Estado de ", - "values": [ - "Comisi\u00f3n Interamericana de Derechos Humanos" - ] - }, - { - "text": "REF Caso N\u00ba Eduardo Rico Argentina de noviembre de Se\u00f1or Secretario Tengo el agrado de dirigirme a usted en nombre de la Comisi\u00f3n Interamericana de Derechos Humanos con el objeto de presentar ante la Honorable Corte Interamericana de Derechos Humanos el Caso N\u00ba Eduardo Rico respecto de la Rep\u00fablica de Argentina en adelante el Estado el Estado argentino o Argentina relacionado con la destituci\u00f3n de Eduardo Rico como Juez del Tribunal del Trabajo No del Departamento Judicial de San Isidro ", - "values": [ - "Comisi\u00f3n Interamericana de Derechos Humanos" - ] - }, - { - "text": "INFORME No. PETICI\u00d3N INFORME DE ADMISIBILIDAD EDUARDO RICO ARGENTINA DE ABRIL DE I. RESUMEN El de marzo de la Comisi\u00f3n Interamericana de Derechos Humanos en adelante la Comisi\u00f3n Interamericana la Comisi\u00f3n o la CIDH recibi\u00f3 una petici\u00f3n presentada en favor de Eduardo Rico en adelante la presunta v\u00edctima o el se\u00f1or Rico contra Argentina en adelante Argentina o el Estado. La petici\u00f3n fue presentada por el se\u00f1or Rico y sus representantes en adelante los peticionarios quienes alegan que se ", - "values": [ - "Comisi\u00f3n Interamericana de Derechos Humanos" - ] - }, - { - "text": "INFORME No. CASO INFORME DE FONDO EDUARDO RICO ARGENTINA DE JULIO DE I. RESUMEN El de marzo de la Comisi\u00f3n Interamericana de Derechos Humanos en adelante la CIDH la Comisi\u00f3n o la Comisi\u00f3n Interamericana recibi\u00f3 una petici\u00f3n presentada por Susana Mar\u00eda Barneix y Adri\u00e1n Leopoldo Azzi en adelante los peticionarios en representaci\u00f3n de Eduardo Rico en adelante la presunta v\u00edctima en la cual se aleg\u00f3 la violaci\u00f3n por parte de la Rep\u00fablica de Argentina en adelante Argentina el Estado o el de", - "values": [ - "Comisi\u00f3n Interamericana de Derechos Humanos" - ] - }, - { - "text": " de septiembre de REF Caso N\u00ba Carlos Escaleras Mej\u00eda y familia Honduras Se\u00f1or Secretario Tengo el agrado de dirigirme a usted en nombre de la Comisi\u00f3n Interamericana de Derechos Humanos con el objeto de presentar ante la Honorable Corte Interamericana de Derechos Humanos el caso Carlos Escaleras Mej\u00eda y otros Honduras respecto de la Rep\u00fablica de Honduras en adelante el Estado el Estado hondure\u00f1o o Honduras relacionado con la responsabilidad internacional del Estado por la muerte del ", - "values": [ - "Comisi\u00f3n Interamericana de Derechos Humanos" - ] - }, - { - "text": "INFORME No. CASO FONDO CARLOS ESCALERAS MEJ\u00cdA Y FAMILIA HONDURAS DE JULIO DE I. RESUMEN El de enero de la Comisi\u00f3n Interamericana de Derechos Humanos en adelante la Comisi\u00f3n Interamericana la Comisi\u00f3n o la CIDH recibi\u00f3 una petici\u00f3n presentada por el Equipo de Reflexi\u00f3n Investigaci\u00f3n y Comunicaci\u00f3n ERIC y por el Centro por la Justicia y el Derecho Internacional CEJIL en adelante los peticionarios en la cual se alega la responsabilidad internacional de la Rep\u00fablica de Honduras en adelante ", - "values": [ - "Comisi\u00f3n Interamericana de Derechos Humanos" - ] - }, - { - "text": "INFORME N\u00ba PETICI\u00d3N ADMISIBILIDAD CARLOS ESCALERAS MEJ\u00cdA HONDURAS de febrero de I. RESUMEN El de enero de el Centro por la Justicia y el Derecho Internacional CEJIL present\u00f3 ante la Comisi\u00f3n Interamericana de Derechos Humanos en adelante la Comisi\u00f3n o la CIDH una petici\u00f3n contra la Rep\u00fablica de Honduras en adelante el Estado hondure\u00f1o Honduras o el Estado. La referida petici\u00f3n denuncia la violaci\u00f3n de los art\u00edculos y de la Convenci\u00f3n Americana sobre Derechos Humanos en adelante la o", - "values": [ - "Comisi\u00f3n Interamericana de Derechos Humanos" - ] - }, - { - "text": " de septiembre de REF Caso N\u00ba Eduardo Benjam\u00edn Colindres El Salvador Se\u00f1or Secretario Tengo el agrado de dirigirme a usted en nombre de la Comisi\u00f3n Interamericana de Derechos Humanos con el objeto de someter a la jurisdicci\u00f3n de la Honorable Corte Interamericana de Derechos Humanos el Caso N\u00ba Eduardo Benjam\u00edn Colindres respecto de la Rep\u00fablica de El Salvador en adelante el Estado El Salvador o el Estado salvadore\u00f1o. El presente caso se relaciona con los ceses del se\u00f1or Eduardo Benjam\u00edn de ", - "values": [ - "Comisi\u00f3n Interamericana de Derechos Humanos" - ] - }, - { - "text": "INFORME N\u00ba PETICI\u00d3N ADMISIBILIDAD EDUARDO BENJAM\u00cdN COLINDRES EL SALVADOR de marzo de I. RESUMEN El de mayo de la Comisi\u00f3n Interamericana de Derechos Humanos en adelante la Comisi\u00f3n Interamericana o la CIDH recibi\u00f3 una denuncia presentada por el Instituto de Derechos Humanos de la Universidad Centroamericana Jos\u00e9 Sime\u00f3n Ca\u00f1as IDHUCA en adelante los peticionarios en la cual se alega la responsabilidad internacional de la Rep\u00fablica de El Salvador el Estado por violaciones a los derechos ", - "values": [ - "Comisi\u00f3n Interamericana de Derechos Humanos" - ] - }, - { - "text": "INFORME No. CASO FONDO EDUARDO BENJAMIN COLINDRES EL SALVADOR DE MARZO DE I. RESUMEN El de mayo de la Comisi\u00f3n Interamericana de Derechos Humanos en adelante la Comisi\u00f3n Interamericana la Comisi\u00f3n o la CIDH recibi\u00f3 una petici\u00f3n presentada por el Instituto de Derechos Humanos de la Universidad Centroamericana Jos\u00e9 Sime\u00f3n Ca\u00f1as en adelante los peticionarios en la cual se aleg\u00f3 la responsabilidad internacional de la Rep\u00fablica de El Salvador en adelante el Estado salvadore\u00f1o El Salvador o el", - "values": [ - "Comisi\u00f3n Interamericana de Derechos Humanos" - ] - }, - { - "text": "INFORME No. CASO INFORME DE ADMISIBILIDAD Y FONDO MAR\u00cdA EUGENIA VILLASE\u00d1OR Y FAMILIA GUATEMALA DE NOVIEMBRE DE I. RESUMEN El de septiembre de la Comisi\u00f3n Interamericana de Derechos Humanos en adelante la Comisi\u00f3n la Comisi\u00f3n Interamericana o la CIDH recibi\u00f3 una petici\u00f3n presentada por la Oficina de Derechos Humanos del Arzobispado de Guatemala en adelante los peticionarios en la cual se aleg\u00f3 la responsabilidad internacional de la Rep\u00fablica de Guatemala en adelante el Estado el Estado o", - "values": [ - "Comisi\u00f3n Interamericana de Derechos Humanos" - ] - }, - { - "text": " de marzo de Ref Caso Mar\u00eda Eugenia Villase\u00f1or y otros Guatemala Se\u00f1or Secretario Tengo el agrado de dirigirme a usted en nombre de la Comisi\u00f3n Interamericana de Derechos Humanos en adelante la Comisi\u00f3n Interamericana la Comisi\u00f3n o la CIDH con el objeto de someter a la jurisdicci\u00f3n de la Honorable Corte Interamericana de Derechos Humanos la Corte Interamericana o la Corte el caso Mar\u00eda Eugenia Villase\u00f1or y otros respecto de la Rep\u00fablica de Guatemala en adelante el Estado el Estado o El ", - "values": [ - "Comisi\u00f3n Interamericana de Derechos Humanos" - ] - }, - { - "text": "INFORME No. PETICI\u00d3N ADMISIBILIDAD OSCAR MUELLE FLORES PER\u00da de julio de I. RESUMEN El de abril de la Comisi\u00f3n Interamericana de Derechos Humanos en adelante la Comisi\u00f3n la Comisi\u00f3n Interamericana o la CIDH recibi\u00f3 una petici\u00f3n presentada en nombre propio por Oscar Muelle Flores en adelante el peticionario o la presunta v\u00edctima en la cual se alega la responsabilidad de la Rep\u00fablica del Per\u00fa en adelante el Estado o el Estado peruano por el presunto incumplimiento de dos sentencias de que ", - "values": [ - "Comisi\u00f3n Interamericana de Derechos Humanos" - ] - }, - { - "text": " INFORME No. CASO FONDO OSCAR MUELLE FLORES PER\u00da de enero de I. RESUMEN El de abril de la Comisi\u00f3n Interamericana de Derechos Humanos en adelante la Comisi\u00f3n la Comisi\u00f3n Interamericana o la CIDH recibi\u00f3 una petici\u00f3n presentada en nombre propio por Oscar Muelle Flores en adelante el peticionario o la presunta v\u00edctima. En dicha petici\u00f3n se aleg\u00f3 la responsabilidad internacional de la Rep\u00fablica del Per\u00fa en adelante el Estado el Estado peruano o Per\u00fa por la falta de cumplimiento de dos de ", - "values": [ - "Comisi\u00f3n Interamericana de Derechos Humanos" - ] - }, - { - "text": " de julio de REF Caso N\u00ba Oscar Muelle Flores Per\u00fa Se\u00f1or Secretario Tengo el agrado de dirigirme a usted en nombre de la Comisi\u00f3n Interamericana de Derechos Humanos con el objeto de someter a la jurisdicci\u00f3n de la Honorable Corte Interamericana de Derechos Humanos el Caso N\u00ba Oscar Muelle Flores respecto de la Rep\u00fablica de Per\u00fa en adelante el Estado el Estado peruano o Per\u00fa. El presente caso se relaciona con la violaci\u00f3n del derecho a la tutela judicial efectiva como consecuencia del durante", - "values": [ - "Comisi\u00f3n Interamericana de Derechos Humanos" - ] - }, - { - "text": " de julio de Ref Caso No. Tulio Alberto \u00c1lvarez Venezuela Se\u00f1or Secretario Tengo el agrado de dirigirme a usted en nombre de la Comisi\u00f3n Interamericana de Derechos Humanos con el objeto de someter a la jurisdicci\u00f3n de la Honorable Corte Interamericana de Derechos Humanos el caso Tulio Alberto \u00c1lvarez respecto de la Rep\u00fablica Bolivariana de Venezuela en adelante el Estado el Estado venezolano o Venezuela. El caso se relaciona con la violaci\u00f3n al derecho a la libertad de expresi\u00f3n los y la ", - "values": [ - "Comisi\u00f3n Interamericana de Derechos Humanos" - ] - }, - { - "text": "INFORME No. PETICI\u00d3N ADMISIBILIDAD TULIO ALBERTO \u00c1LVAREZ VENEZUELA de julio de I. RESUMEN El de abril de la Comisi\u00f3n Interamericana de Derechos Humanos en adelante la Comisi\u00f3n Interamericana la Comisi\u00f3n o la CIDH recibi\u00f3 una petici\u00f3n presentada en nombre propio por Tulio Alberto \u00c1lvarez en adelante el peticionario o la presunta v\u00edctima en contra de la Rep\u00fablica Bolivariana de Venezuela en adelante el Estado o el Estado venezolano relacionada con el proceso y la sanci\u00f3n penal impuesta ", - "values": [ - "Comisi\u00f3n Interamericana de Derechos Humanos" - ] - }, - { - "text": "INFORME No. CASO FONDO TULIO ALBERTO \u00c1LVAREZ VENEZUELA de enero de I. RESUMEN El de abril de la Comisi\u00f3n Interamericana de Derechos Humanos en adelante la Comisi\u00f3n Interamericana la Comisi\u00f3n o la CIDH recibi\u00f3 una petici\u00f3n presentada por Tulio \u00c1lvarez en adelante tambi\u00e9n el peticionario o la presunta v\u00edctima mediante la cual aleg\u00f3 la responsabilidad internacional de la Rep\u00fablica Bolivariana de Venezuela en adelante Venezuela el Estado o el Estado venezolano por la violaci\u00f3n de sus como ", - "values": [ - "Comisi\u00f3n Interamericana de Derechos Humanos" - ] - }, - { - "text": "Comisi\u00f3n interamericana Derechos Ref ae Humanos Caso No. Walter Mun\u00e1rriz Escobar y otros Per\u00fa Organizaci\u00f3n de los Estados Americanos de junio de Se\u00f1or Secretario Tengo el agrado de dirigirme a usted en nombre de la Comisi\u00f3n Interamericana de Derechos Humanos con el objeto de someter a la jurisdicci\u00f3n de la Honorable Corte Interamericana de Derechos Humanos el Caso N Walter Mun\u00e1rriz Escobar y otros respecto de la Rep\u00fablica de Per\u00fa en adelante el Estado el Estado peruano o Per\u00fa. El presente", - "values": [ - "Comisi\u00f3n Interamericana de Derechos Humanos" - ] - }, - { - "text": "INFORME N\u00ba PETICI\u00d3N ADMISIBILIDAD WALTER MUN\u00c1RRIZ ESCOBAR PER\u00da de febrero de I. RESUMEN El de junio de de la Comisi\u00f3n Interamericana de Derechos Humanos en adelante la Comisi\u00f3n la Comisi\u00f3n Americana o la CIDH recibi\u00f3 una petici\u00f3n presentada por la Comisi\u00f3n de Derechos Humanos COMISEDH en adelante los peticionarios en la cual se alega la responsabilidad de la Rep\u00fablica de Per\u00fa en adelante el Estado el Estado peruano o Per\u00fa en vista de la desaparici\u00f3n forzada del estudiante Walter Mun\u00e1rriz", - "values": [ - "Comisi\u00f3n Interamericana de Derechos Humanos" - ] - }, - { - "text": "INFORME No. CASO WALTER MUN\u00c1RRIZ ESCOBAR INFORME DE FONDO PER\u00da DE DICIEMBRE DE I. RESUMEN El de junio de la Comisi\u00f3n Interamericana de Derechos Humanos en adelante la Comisi\u00f3n la Comisi\u00f3n Interamericana o la CIDH recibi\u00f3 una petici\u00f3n presentada por la Comisi\u00f3n de Derechos Humanos COMISEDH en adelante los peticionarios en la cual se aleg\u00f3 la responsabilidad internacional del Estado de Per\u00fa en adelante el Estado el Estado peruano o Per\u00fa por la supuesta desaparici\u00f3n forzada de Walter Los", - "values": [ - "Comisi\u00f3n Interamericana de Derechos Humanos" - ] - }, - { - "text": "INFORME N\u00ba PETICI\u00d3N ADMISIBILIDAD ALINA MARIA BARRAZA CODOCEO Y OTROS CHILE de octubre de I. RESUMEN El de octubre de el abogado Nelson Caucoto el peticionario present\u00f3 una denuncia ante la Comisi\u00f3n Interamericana de Derechos Humanos la Comisi\u00f3n en contra de la Rep\u00fablica de Chile el Estado por la presunta violaci\u00f3n de los derechos a las garant\u00edas judiciales art\u00edculo y recurso judicial art\u00edculo conjuntamente con la violaci\u00f3n de las obligaciones de respetar los derechos y adoptar y ", - "values": [ - "Comisi\u00f3n Interamericana de Derechos Humanos" - ] - }, - { - "text": "INFORME N\u00ba PETICI\u00d3N ADMISIBILIDAD LUC\u00cdA MORALES COMPAGNON E HIJOS CHILE de octubre de I. RESUMEN El de septiembre de el abogado Nelson Caucoto el peticionario present\u00f3 una denuncia ante la Comisi\u00f3n Interamericana de Derechos Humanos la Comisi\u00f3n en contra de la Rep\u00fablica de Chile el Estado por la presunta violaci\u00f3n de los derechos a las garant\u00edas judiciales art\u00edculo y recurso judicial art\u00edculo conjuntamente con la violaci\u00f3n de las obligaciones de respetar los derechos y adoptar medidas", - "values": [ - "Comisi\u00f3n Interamericana de Derechos Humanos" - ] - }, - { - "text": "INFORME N\u00ba PETICI\u00d3N ADMISIBILIDAD MAGDALENA MERCEDES NAVARRETE ALBERTO REYES NAVARRETE V\u00cdCTOR EDUARDO REYES NAVARRETE PATRICIO HERN\u00c1N REYES NAVARRETE PAMELA ADRIANA VIVANCO KATIA XIMENA DEL CARMEN ESPEJO G\u00d3MEZ ELENA ALEJANDRINA VARGAS G\u00d3MEZ ILIA MAR\u00cdA PRADENAS P\u00c1EZ MARIO MELO ACU\u00d1A CARLOS GUSTAVO MELO PRADENAS CHILE de octubre de I. RESUMEN El de enero de el abogado Nelson Caucoto el peticionario present\u00f3 una denuncia ante la Comisi\u00f3n Interamericana de Derechos Humanos la Comisi\u00f3n en ", - "values": [ - "Comisi\u00f3n Interamericana de Derechos Humanos" - ] - }, - { - "text": " de mayo de REF Caso N\u00ba Mar\u00eda Laura \u00d3rdenes Guerra y otros Chile Se\u00f1or Secretario Tengo el agrado de dirigirme a usted en nombre de la Comisi\u00f3n Interamericana de Derechos Humanos con el objeto de presentar ante la Honorable Corte Interamericana de Derechos Humanos el Caso N\u00ba Mar\u00eda Laura \u00d3rdenes Guerra y otros respecto de la Rep\u00fablica de Chile en adelante el Estado el Estado chileno o Chile relacionado con la responsabilidad internacional del Estado por la violaci\u00f3n de los derechos a las y", - "values": [ - "Comisi\u00f3n Interamericana de Derechos Humanos" - ] - }, - { - "text": "INFORME No. CASO FONDO MARIA LAURA \u00d3RDENES GUERRA Y OTROS CHILE DE NOVIEMBRE DE I. RESUMEN El de julio de septiembre y de octubre de as\u00ed como el de enero de la Comisi\u00f3n Interamericana de Derechos Humanos en adelante la Comisi\u00f3n la Comisi\u00f3n Interamericana o la CIDH recibi\u00f3 cuatro peticiones presentadas por el abogado Nelson Caucoto en adelante el peticionario en contra de la Rep\u00fablica de Chile en adelante el Estado el Estado chileno o Chile por la presunta falta de reparaci\u00f3n e del ", - "values": [ - "Comisi\u00f3n Interamericana de Derechos Humanos" - ] - }, - { - "text": "INFORME N\u00ba PETICI\u00d3N ADMISIBILIDAD MAR\u00cdA \u00d3RDENES GUERRA CHILE de octubre de I. RESUMEN El de julio de el abogado Nelson Caucoto en nombre de Maria Laura \u00d3rdenes Guerra los peticionarios presentaron una denuncia ante la Comisi\u00f3n Interamericana de Derechos Humanos la Comisi\u00f3n en contra de la Rep\u00fablica de Chile el Estado por la presunta violaci\u00f3n de los derechos a las garant\u00edas judiciales art\u00edculo y recurso judicial art\u00edculo conjuntamente con la violaci\u00f3n de las obligaciones de respetar ", - "values": [ - "Comisi\u00f3n Interamericana de Derechos Humanos" - ] - }, - { - "text": " de agosto de Ref Casos acumulados No. y Trabajadores Cesados de Petroper\u00fa del Ministerio de Educaci\u00f3n del Ministerio de Econom\u00eda y Finanzas y de la Empresa Nacional de Puertos Per\u00fa Se\u00f1or Secretario Tengo el agrado de dirigirme a usted en nombre de la Comisi\u00f3n Interamericana de Derechos Humanos con el objeto de someter a la jurisdicci\u00f3n de la Honorable Corte Interamericana de Derechos Humanos los casos acumulados y Trabajadores Cesados de Petroper\u00fa del Ministerio de Educaci\u00f3n del de ", - "values": [ - "Comisi\u00f3n Interamericana de Derechos Humanos" - ] - }, - { - "text": "INFORME N\u00ba ADMISIBILIDAD PETICI\u00d3N NOEL EMIRO OMEARA CARRASCAL GUILLERMO OMEARA MIRAVAL Y H\u00c9CTOR ALVAREZ S\u00c1NCHEZ COLOMBIA de febrero de I. RESUMEN El de mayo de la Comisi\u00f3n Interamericana de Derechos Humanos en adelante la Comisi\u00f3n recibi\u00f3 una petici\u00f3n presentada por la Comisi\u00f3n Colombiana de Juristas en adelante los peticionarios en la cual se denuncia la ejecuci\u00f3n extrajudicial del se\u00f1or Noel Emiro Omeara Carrascal la posterior desaparici\u00f3n forzada y ejecuci\u00f3n extrajudicial de su hijo ", - "values": [ - "Comisi\u00f3n Interamericana de Derechos Humanos" - ] - }, - { - "text": "INFORME No. CASO FONDO HOMERO FLOR FREIRE ECUADOR de noviembre de I. RESUMEN El de agosto de la Comisi\u00f3n Interamericana de Derechos Humanos en adelante la Comisi\u00f3n Interamericana la Comisi\u00f3n o la CIDH recibi\u00f3 una petici\u00f3n presentada por Alejandro Ponce Villac\u00eds y Juan Manuel March\u00e1n en adelante los peticionarios en la cual se alega la responsabilidad de la Rep\u00fablica de Ecuador en adelante el Estado o el Estado ecuatoriano por la baja de Homero Flor Freire en adelante Homero Flor el se\u00f1or", - "values": [ - "Comisi\u00f3n Interamericana de Derechos Humanos" - ] - }, - { - "text": " de diciembre de Ref Caso No. Homero Flor Freire Ecuador Se\u00f1or Secretario Tengo el agrado de dirigirme a usted en nombre de la Comisi\u00f3n Interamericana de Derechos Humanos con el objeto de someter a la jurisdicci\u00f3n de la Honorable Corte Interamericana de Derechos Humanos el caso Homero Flor Freire respecto de la Rep\u00fablica de Ecuador en adelante el Estado el Estado ecuatoriano o Ecuador. El caso se relaciona con la responsabilidad internacional del Estado de Ecuador como consecuencia de las ", - "values": [ - "Comisi\u00f3n Interamericana de Derechos Humanos" - ] - }, - { - "text": " de diciembre de Ref Caso No. Olga Yolanda Maldonado Ord\u00f3\u00f1ez Guatemala Se\u00f1or Secretario Tengo el agrado de dirigirme a usted en nombre de la Comisi\u00f3n Interamericana de Derechos Humanos con el objeto de someter a la jurisdicci\u00f3n de la Honorable Corte Interamericana de Derechos Humanos el caso Olga Yolanda Maldonado Ord\u00f3\u00f1ez respecto de la Rep\u00fablica de Guatemala en adelante el Estado el Estado guatemalteco o Guatemala. El caso se relaciona con un procedimiento administrativo que dio lugar al ", - "values": [ - "Comisi\u00f3n Interamericana de Derechos Humanos" - ] - }, - { - "text": "INFORME No. CASO FONDO OLGA YOLANDA MALDONADO ORDO\u00d1EZ GUATEMALA DE JULIO DE I. RESUMEN El de julio de la Comisi\u00f3n Interamericana de Derechos Humanos en adelante la Comisi\u00f3n o la CIDH recibi\u00f3 una petici\u00f3n presentada por Olga Yolanda Maldonado Ord\u00f3\u00f1ez y los abogados Alejandro S\u00e1nchez y Jorge Ra\u00fal Rodr\u00edguez Ovalle en adelante los peticionarios en la cual se alega la responsabilidad del Estado de Guatemala en adelante el Estado o el Estado guatemalteco por la violaci\u00f3n de los derechos a las ", - "values": [ - "Comisi\u00f3n Interamericana de Derechos Humanos" - ] - }, - { - "text": " de noviembre de REF Caso No. Herrera Espinoza y otros Ecuador Se\u00f1or Secretario Tengo el agrado de dirigirme a usted en nombre de la Comisi\u00f3n Interamericana de Derechos Humanos con el objeto de someter a la jurisdicci\u00f3n de la Honorable Corte Interamericana de Derechos Humanos el caso Herrera Espinoza y otros respecto de la Rep\u00fablica de Ecuador en adelante el Estado el Estado ecuatoriano o Ecuador. El caso se relaciona con la privaci\u00f3n arbitraria de la libertad y torturas sufridas en de los", - "values": [ - "Comisi\u00f3n Interamericana de Derechos Humanos" - ] - }, - { - "text": "INFORME No. CASO INFORME DE FONDO HERRERA ESPINOZA Y OTROS ECUADOR DE JULIO DE I. RESUMEN El de octubre de la Comisi\u00f3n Interamericana de Derechos Humanos en adelante la Comisi\u00f3n la Comisi\u00f3n Interamericana o la CIDH recibi\u00f3 una denuncia presentada por la se\u00f1ora Elsie Monje Directora de la Comisi\u00f3n Ecum\u00e9nica de Derechos Humanos en adelante la peticionaria en la cual se alega la responsabilidad internacional del Estado de Ecuador en adelante el Estado o Ecuador por la violaci\u00f3n de varios ", - "values": [ - "Comisi\u00f3n Interamericana de Derechos Humanos" - ] - }, - { - "text": " de octubre de REF Caso No. \u00c1ngel Alberto Duque Colombia Se\u00f1or Secretario Tengo el agrado de dirigirme a usted en nombre de la Comisi\u00f3n Interamericana de Derechos Humanos con el objeto de someter a la jurisdicci\u00f3n de la Honorable Corte Interamericana de Derechos Humanos el caso \u00c1ngel Alberto Duque respecto de la Rep\u00fablica de Colombia en adelante el Estado el Estado colombiano o Colombia. El presente caso se relaciona con la exclusi\u00f3n del se\u00f1or \u00c1ngel Alberto Duque de la posibilidad de una ", - "values": [ - "Comisi\u00f3n Interamericana de Derechos Humanos" - ] - }, - { - "text": "INFORME No. CASO FONDO \u00c1NGEL ALBERTO DUQUE COLOMBIA de abril de I. RESUMEN El de febrero de la Comisi\u00f3n Interamericana de Derechos Humanos en adelante la Comisi\u00f3n o la CIDH recibi\u00f3 una petici\u00f3n presentada por la Comisi\u00f3n Colombiana de Juristas y Germ\u00e1n Humberto Rinc\u00f3n Perfetti en adelante los peticionarios en la cual se alega la responsabilidad de la Rep\u00fablica de Colombia en adelante el Estado el Estado colombiano o Colombia por la violaci\u00f3n de varias disposiciones de la Convenci\u00f3n ", - "values": [ - "Comisi\u00f3n Interamericana de Derechos Humanos" - ] - }, - { - "text": "INFORME No. CASO FONDO RIGOBERTO TENORIO ROCA Y OTROS PER\u00da de julio de I. RESUMEN El de noviembre de la Comisi\u00f3n Interamericana de Derechos Humanos en adelante tambi\u00e9n la Comisi\u00f3n Interamericana la Comisi\u00f3n o la CIDH recibi\u00f3 una petici\u00f3n presentada por la se\u00f1ora Cipriana Huaman\u00ed Anampa el Comit\u00e9 Nacional de Familiares de Detenidos Desaparecidos y Refugiados en Lima y la Asociaci\u00f3n Pro Derechos Humanos APRODEH en adelante tambi\u00e9n los peticionarios en representaci\u00f3n de Rigoberto Tenorio ", - "values": [ - "Comisi\u00f3n Interamericana de Derechos Humanos" - ] - }, - { - "text": " de septiembre de Ref Caso No. Rigoberto Tenorio Roca y otros Per\u00fa Se\u00f1or Secretario Tengo el agrado de dirigirme a usted en nombre de la Comisi\u00f3n Interamericana de Derechos Humanos con el objeto de someter a la jurisdicci\u00f3n de la Honorable Corte Interamericana de Derechos Humanos el caso Rigoberto Tenorio Roca y otros respecto de la Rep\u00fablica de Per\u00fa en adelante el Estado el Estado peruano o Per\u00fa. El presente caso se relaciona con la detenci\u00f3n traslado tortura y posterior desaparici\u00f3n de ", - "values": [ - "Comisi\u00f3n Interamericana de Derechos Humanos" - ] - }, - { - "text": "INFORME No. CASO FONDO AGUSTIN BLADIMIRO ZEGARRA MARIN PER\u00da de abril de I. RESUMEN El de mayo de la Comisi\u00f3n Interamericana de Derechos Humanos en adelante tambi\u00e9n la Comisi\u00f3n Interamericana la Comisi\u00f3n o la CIDH recibi\u00f3 una petici\u00f3n presentada en nombre propio por el se\u00f1or Agust\u00edn Bladimiro Zegarra Mar\u00edn en adelante tambi\u00e9n el peticionario o la presunta v\u00edctima en la cual se alega la violaci\u00f3n por parte de la Rep\u00fablica de Per\u00fa en adelante tambi\u00e9n Per\u00fa el Estado o el Estado peruano de ", - "values": [ - "Comisi\u00f3n Interamericana de Derechos Humanos" - ] - }, - { - "text": " de agosto de Ref Caso No. Agust\u00edn Bladimiro Zegarra Mar\u00edn Per\u00fa Se\u00f1or Secretario Tengo el agrado de dirigirme a usted en nombre de la Comisi\u00f3n Interamericana de Derechos Humanos con el objeto de someter a la jurisdicci\u00f3n de la Honorable Corte Interamericana de Derechos Humanos el caso Agust\u00edn Bladimiro Zegarra Mar\u00edn respecto de la Rep\u00fablica de Per\u00fa en adelante el Estado el Estado peruano o Per\u00fa. El presente caso se relaciona con la violaci\u00f3n al principio de presunci\u00f3n de inocencia y al de ", - "values": [ - "Comisi\u00f3n Interamericana de Derechos Humanos" - ] - }, - { - "text": " de agosto de Ref Caso No. Mar\u00eda In\u00e9s Chinchilla Sandoval y otros Guatemala Se\u00f1or Secretario Tengo el agrado de dirigirme a usted en nombre de la Comisi\u00f3n Interamericana de Derechos Humanos con el objeto de someter a la jurisdicci\u00f3n de la Honorable Corte Interamericana de Derechos Humanos el caso Mar\u00eda In\u00e9s Chinchilla Sandoval y otros respecto de la Rep\u00fablica de Guatemala en adelante el Estado el Estado guatemalteco o Guatemala. El presente caso se relaciona con las violaciones a los de ", - "values": [ - "Comisi\u00f3n Interamericana de Derechos Humanos" - ] - }, - { - "text": "INFORME No. CASO FONDO MAR\u00cdA IN\u00c9S CHINCHILLA SANDOVAL Y OTROS GUATEMALA de abril de I. RESUMEN La Comisi\u00f3n Interamericana de Derechos Humanos en adelante la Comisi\u00f3n la Comisi\u00f3n Interamericana o la CIDH recibi\u00f3 el de marzo de una petici\u00f3n presentada por el Instituto de Estudios Comparados en Ciencias Penales a trav\u00e9s de su representante legal Alejandro Rodr\u00edguez Barrillas en adelante el peticionario en contra del Estado de Guatemala en adelante el Estado el Estado guatemalteco o por los", - "values": [ - "Comisi\u00f3n Interamericana de Derechos Humanos" - ] - }, - { - "text": "INFORME No. CASO FONDO MIEMBROS DE LA ALDEA DE CHICHUPAC Y COMUNIDADES VECINAS DEL MUNICIPIO DE RABINAL GUATEMALA de abril de I. RESUMEN El de diciembre de la Comisi\u00f3n Interamericana de Derechos Humanos en adelante la Comisi\u00f3n Interamericana la Comisi\u00f3n o la CIDH recibi\u00f3 una petici\u00f3n presentada por la Asociaci\u00f3n Bufete Jur\u00eddico Popular en adelante los peticionarios en la cual se aleg\u00f3 la responsabilidad internacional de la Rep\u00fablica de Guatemala en adelante el Estado el Estado o por ", - "values": [ - "Comisi\u00f3n Interamericana de Derechos Humanos" - ] - }, - { - "text": " de agosto de Ref Caso No. Miembros de la Aldea de Chichupac y Comunidades Vecinas del Municipio de Rabinal Guatemala Se\u00f1or Secretario Tengo el agrado de dirigirme a usted en nombre de la Comisi\u00f3n Interamericana de Derechos Humanos con el objeto de someter a la jurisdicci\u00f3n de la Honorable Corte Interamericana de Derechos Humanos el caso Miembros de la Aldea de Chichupac y Comunidades Vecinas del Municipio de Rabinal respecto de la Rep\u00fablica de Guatemala en adelante el Estado el Estado o ", - "values": [ - "Comisi\u00f3n Interamericana de Derechos Humanos" - ] - }, - { - "text": "INFORME No. PETICI\u00d3N ADMISIBILIDAD VECINOS DE LA ALDEA DE CHICHUPAC Y CASER\u00cdO XEABAJ DEL MUNICIPIO DE RABINAL GUATEMALA \u00ba de noviembre de I. RESUMEN El de diciembre de la Comisi\u00f3n Interamericana de Derechos Humanos en adelante la Comisi\u00f3n Interamericana Comisi\u00f3n o CIDH recibi\u00f3 una denuncia presentada por la Asociaci\u00f3n Bufete Jur\u00eddico Popular en adelante los peticionarios en favor de los vecinos de la Aldea Chichupac y caser\u00edo Xeabaj del Municipio de Rabinal en contra de la Rep\u00fablica de ", - "values": [ - "Comisi\u00f3n Interamericana de Derechos Humanos" - ] - }, - { - "text": "INFORME No. CASO FONDO VALDEMIR QUISPEALAYA VILCAPOMA PER\u00da de noviembre de I. RESUMEN La Comisi\u00f3n Interamericana de Derechos Humanos en adelante la Comisi\u00f3n Interamericana la Comisi\u00f3n o la CIDH recibi\u00f3 una petici\u00f3n de fecha de febrero de por parte de la Comisi\u00f3n de Derechos Humanos COMISEDH en adelante la peticionaria en la que denunci\u00f3 que el Estado del Per\u00fa en adelante Per\u00fa el Estado o el Estado peruano viol\u00f3 en perjuicio de Valdemir Quispealaya Vilcapoma en adelante la v\u00edctima ciertos", - "values": [ - "Comisi\u00f3n Interamericana de Derechos Humanos" - ] - }, - { - "text": " de agosto de Ref Caso No. Valdemir Quispealaya Vilcapoma Per\u00fa Se\u00f1or Secretario Tengo el agrado de dirigirme a usted en nombre de la Comisi\u00f3n Interamericana de Derechos Humanos con el objeto de someter a la jurisdicci\u00f3n de la Honorable Corte Interamericana de Derechos Humanos el caso Valdemir Quispealaya Vilcapoma respecto de la Rep\u00fablica de Per\u00fa en adelante el Estado el Estado peruano o Per\u00fa. El presente caso se relaciona con la afectaci\u00f3n a la integridad personal en perjuicio del se\u00f1or ", - "values": [ - "Comisi\u00f3n Interamericana de Derechos Humanos" - ] - }, - { - "text": " de junio de Ref Casos Nos y Ana Teresa Yarce y Otras Colombia Se\u00f1or Secretario Tengo el agrado de dirigirme a usted en nombre de la Comisi\u00f3n Interamericana de Derechos Humanos con el objeto de someter a la jurisdicci\u00f3n de la Honorable Corte Interamericana de Derechos Humanos los casos acumulados y Ana Teresa Yarce y otras respecto de la Rep\u00fablica de Colombia en adelante el Estado el Estado colombiano o Colombia. Este caso se encuentra relacionado con las Medidas Provisionales Mery y ", - "values": [ - "Comisi\u00f3n Interamericana de Derechos Humanos" - ] - }, - { - "text": "INFORME No. CASOS y FONDO ANA TERESA YARCE Y OTRAS COMUNA COLOMBIA de noviembre de I. RESUMEN El de octubre de la Comisi\u00f3n Interamericana de Derechos Humanos en adelante la Comisi\u00f3n o la CIDH recibi\u00f3 una petici\u00f3n presentada por el Grupo Interdisciplinario por los Derechos Humanos en adelante los peticionarios en la cual se alega que miembros de grupos paramilitares con la aquiescencia y participaci\u00f3n de agentes del Estado colombiano en adelante el Estado el Estado colombiano o y ", - "values": [ - "Comisi\u00f3n Interamericana de Derechos Humanos" - ] - }, - { - "text": "INTER AMERICAN COMMISSION ON HUMAN RIGHTS COMISION INTERAMERICANA DE DERECHOS HUMANOS COMISS\u00c3O INTERAMERICANA DE DIREITOS HUMANOS COMMISSION INTERAM\u00c9RICAINE DES DROITS DE LHOMME ORGANIZACI\u00d3N DE LOS ESTADOS AMERICANOS WASHINGTON DC. EEUU de abril de Ref Caso No. Omar Humberto Maldonado Vargas y otros Chile Se\u00f1or Secretario Tengo el agrado de dirigirme a usted en nombre de la Comisi\u00f3n Interamericana de Derechos Humanos con el objeto de someter a la jurisdicci\u00f3n de la Honorable Corte de ", - "values": [ - "Comisi\u00f3n Interamericana de Derechos Humanos" - ] - }, - { - "text": "INTER AMERICAN COMMISSION ON HUMAN RIGHTS COMISION INTERAMERICANA DE DERECHOS HUMANOS COMISS\u00c3O INTERAMERICANA DE DIREITOS HUMANOS COMMISSION INTERAM\u00c9RICAINE DES DROITS DE LHOMME ORGANIZACI\u00d3N DE LOS ESTADOS AMERICANOS WASHINGTON DC. E E U U de marzo de Ref Caso No. Ad\u00e1n Guillermo L\u00f3pez Lone y otros Honduras Se\u00f1or Secretario Tengo el agrado de dirigirme a usted en nombre de la Comisi\u00f3n Interamericana de Derechos Humanos con el objeto de someter a la jurisdicci\u00f3n de la Corte de Derechos ", - "values": [ - "Comisi\u00f3n Interamericana de Derechos Humanos" - ] - }, - { - "text": "INFORME No. PETICI\u00d3N ADMISIBILIDAD ADAN GUILLERMO LOPEZ LONE Y OTROS HONDURAS de marzo de I. RESUMEN El de julio de la Comisi\u00f3n Interamericana de Derechos Humanos en adelante Comisi\u00f3n Comisi\u00f3n Interamericana o CIDH recibi\u00f3 una denuncia de la Asociaci\u00f3n de Jueces por la Democracia AJD y el Centro por la Justicia y el Derecho Internacional CEJIL en adelante peticionarios en contra del Estado de Honduras en adelante Estado Honduras o Estado hondure\u00f1o porque la Corte Suprema de Justicia de ", - "values": [ - "Comisi\u00f3n Interamericana de Derechos Humanos" - ] - }, - { - "text": "INFORME No. CASO FONDO ADAN GUILLERMO LOPEZ LONE Y OTROS HONDURAS de noviembre de I. RESUMEN El de julio de la Comisi\u00f3n Interamericana de Derechos Humanos en adelante la Comisi\u00f3n Interamericana la Comisi\u00f3n o la CIDH recibi\u00f3 una petici\u00f3n presentada por la Asociaci\u00f3n de Jueces por la Democracia AJD y el Centro por la Justicia y el Derecho Internacional CEJIL en adelante los peticionarios en la cual se aleg\u00f3 la responsabilidad internacional de la Rep\u00fablica de Honduras en adelante el Estado ", - "values": [ - "Comisi\u00f3n Interamericana de Derechos Humanos" - ] - }, - { - "text": "INTER AMERICAN COMMISSION ON HUMAN RIGHTS COMISION INTERAMERICANA DE DERECHOS HUMANOS COMISS\u00c3O INTERAMERICANA DE DIREITOS HUMANOS COMMISSION INTERAM\u00c9RICAINE DES DROITS DE LHOMME ORGANIZACI\u00d3N DE LOS ESTADOS AMERICANOS WASHINGTON DC. EEUU de marzo de Ref Caso No. Claudina I. Vel\u00e1squez Paiz y otros Guatemala Se\u00f1or Secretario Tengo el agrado de dirigirme a usted en nombre de la Comisi\u00f3n Interamericana de Derechos Humanos con el objeto de someter a la jurisdicci\u00f3n de la Honorable Corte de ", - "values": [ - "Comisi\u00f3n Interamericana de Derechos Humanos" - ] - }, - { - "text": "INFORME No. CASO CLAUDINA ISABEL VELASQUEZ PAIZ Y OTROS FONDO GUATEMALA de noviembre de I. RESUMEN El de diciembre de la Comisi\u00f3n Interamericana de Derechos Humanos en lo sucesivo Comisi\u00f3n Interamericana Comisi\u00f3n o CIDH recibi\u00f3 una petici\u00f3n presentada por el Instituto de Estudios Comparados en Ciencias Penales de Guatemala y Jorge Rolando Vel\u00e1squez Dur\u00e1n en adelante los peticionarios en representaci\u00f3n de Claudina Isabel Vel\u00e1squez Paiz Jorge Rolando Vel\u00e1squez Dur\u00e1n Elsa Claudina Paiz de ", - "values": [ - "Comisi\u00f3n Interamericana de Derechos Humanos" - ] - }, - { - "text": "INTER AMERICAN COMMISSION ON HUMAN RIGHTS COMISION INTERAMERICANA DE DERECHOS HUMANOS COMISS\u00c3O INTERAMERICANA DE DIREITOS HUMANOS COMMISSION INTERAM\u00c9RICAINE DES DROITS DE LHOMME ORGANIZACI\u00d3N DE LOS ESTADOS AMERICANOS WASHINGTON DC. EEUU de marzo de Ref Caso No. TGGL y familia Ecuador Se\u00f1or Secretario Tengo el agrado de dirigirme a usted en nombre de la Comisi\u00f3n Interamericana de Derechos Humanos con el objeto de someter a la jurisdicci\u00f3n de la Honorable Corte Interamericana de Derechos", - "values": [ - "Comisi\u00f3n Interamericana de Derechos Humanos" - ] - }, - { - "text": "INFORME No. CASO FONDO TGGL ECUADOR de noviembre de I. RESUMEN El de junio de la Comisi\u00f3n Interamericana de Derechos Humanos en adelante la Comisi\u00f3n Interamericana la Comisi\u00f3n o la CIDH recibi\u00f3 una denuncia presentada por Iv\u00e1n Patricio Durazno Campoverde en adelante los peticionarios en favor de TGGL en adelante la presunta v\u00edctima o la ni\u00f1a TGGL argumentando la responsabilidad internacional de la Rep\u00fablica de Ecuador en adelante el Estado de Ecuador el Estado ecuatoriano o Ecuador por ", - "values": [ - "Comisi\u00f3n Interamericana de Derechos Humanos" - ] - }, - { - "text": "INTER AMERICAN COMMISSION ON HUMAN RIGHTS COMISION INTERAMERICANA DE DERECHOS HUMANOS COMISS\u00c3O INTERAMERICANA DE DIREITOS HUMANOS COMMISSION INTERAM\u00c9RICAINE DES DROITS DE LHOMME ORGANIZACI\u00d3N DE LOS ESTADOS AMERICANOS WASHINGTON DC. EEUU de febrero de Ref Caso No. Jos\u00e9 Agapito Ruano Torres y familia El Salvador Se\u00f1or Secretario Tengo el agrado de dirigirme a usted en nombre de la Comisi\u00f3n Interamericana de Derechos Humanos con el objeto de someter a la jurisdicci\u00f3n de la Honorable Corte", - "values": [ - "Comisi\u00f3n Interamericana de Derechos Humanos" - ] - }, - { - "text": "INFORME No. CASO FONDO JOS\u00c9 AGAPITO RUANO TORRES Y FAMILIA EL SALVADOR de noviembre de I. RESUMEN El de diciembre de la Comisi\u00f3n Interamericana de Derechos Humanos en adelante la Comisi\u00f3n la Comisi\u00f3n Interamericana o la CIDH recibi\u00f3 una denuncia presentada por Pedro Torres H\u00e9rcules en adelante el peticionario en la cual se alega la responsabilidad internacional de la Rep\u00fablica de El Salvador en adelante el Estado El Salvador o el Estado salvadore\u00f1o por presuntas violaciones a los a las ", - "values": [ - "Comisi\u00f3n Interamericana de Derechos Humanos" - ] - }, - { - "text": "INFORME No. CASO FONDO LOS PUEBLOS DE KALI\u00d1A Y LOKONO SURINAM de julio de I. RESUMEN El presente informe se refiere al fondo de una petici\u00f3n recibida por la Comisi\u00f3n Interamericana de Derechos Humanos CIDH o Comisi\u00f3n Interamericana el de febrero de que fue presentada en nombre de los Pueblos Ind\u00edgenas de Kali\u00f1a y Lokono del R\u00edo Bajo Marowijne en adelante las presuntas v\u00edctimas los Pueblos de Kali\u00f1a y Lokono o los Pueblos del Bajo Marowijne contra la Rep\u00fablica de Surinam Surinam o el La ", - "values": [ - "Comisi\u00f3n Interamericana de Derechos Humanos" - ] - }, - { - "text": "INTER AMERICAN COMMISSION ON HUMAN RIGHTS COMISION INTERAMERICANA DE DERECHOS HUMANOS COMISS\u00c3O INTERAMERICANA DE DIREITOS HUMANOS COMMISSION INTERAM\u00c9RICAINE DES DROITS DE LHOMME ORGANIZACI\u00d3N DE LOS ESTADOS AMERICANOS WASHINGTON DC. EEUU de enero de Ref Caso No. Pueblos Kali\u00f1a y Lokono Surinam Se\u00f1or Secretario Tengo el agrado de dirigirme a usted en nombre de la Comisi\u00f3n Interamericana de Derechos Humanos con el objeto de someter a la jurisdicci\u00f3n de la Honorable Corte Interamericana de", - "values": [ - "Comisi\u00f3n Interamericana de Derechos Humanos" - ] - }, - { - "text": "INTER AMERICAN COMMISSION ON HUMAN RIGHTS COMISION INTERAMERICANA DE DERECHOS HUMANOS COMISS\u00c3O INTERAMERICANA DE DIREITOS HUMANOS COMMISSION INTERAM\u00c9RICAINE DES DROITS DE LHOMME ORGANIZACI\u00d3N DE LOS ESTADOS AMERICANOS WASHINGTON DC. EEUU January Ref Caso No. Luis Antonio Galindo C\u00e1rdenas y familiares Per\u00fa Se\u00f1or Secretario Tengo el agrado de dirigirme a usted en nombre de la Comisi\u00f3n Interamericana de Derechos Humanos con el objeto de someter a la jurisdicci\u00f3n de la Honorable Corte de ", - "values": [ - "Comisi\u00f3n Interamericana de Derechos Humanos" - ] - }, - { - "text": "INFORME No. CASO FONDO LUIS ANTONIO GALINDO C\u00c1RDENAS Y FAMILIARES PER\u00da de marzo de I. RESUMEN La Comisi\u00f3n Interamericana de Derechos Humanos en adelante la Comisi\u00f3n Interamericana la Comisi\u00f3n o la CIDH recibi\u00f3 una denuncia de fecha de enero de presentada por el se\u00f1or Luis Antonio Galindo C\u00e1rdenas en adelante el peticionario la presunta v\u00edctima o el se\u00f1or Galindo en la que se alega la violaci\u00f3n de varias disposiciones de la Convenci\u00f3n Americana sobre Derechos Humanos en adelante la la ", - "values": [ - "Comisi\u00f3n Interamericana de Derechos Humanos" - ] - }, - { - "text": "INFORME No. CASO FONDO MANFRED AMRHEIN Y OTROS COSTA RICA de abril de I. RESUMEN Entre marzo de y noviembre de la Comisi\u00f3n Interamericana de Derechos Humanos en adelante la Comisi\u00f3n o la CIDH recibi\u00f3 ocho peticiones respecto de personas en las cuales se aleg\u00f3 la responsabilidad internacional del Estado de Costa Rica en adelante el Estado o Costa Rica debido a la inexistencia de un recurso ordinario que permita recurrir las sentencias de condena penal impuestas a diecisiete personas. en", - "values": [ - "Comisi\u00f3n Interamericana de Derechos Humanos" - ] - }, - { - "text": " de noviembre de Ref Caso No. Manfred Amhrein y otros Costa Rica Se\u00f1or Secretario Tengo el agrado de dirigirme a usted en nombre de la Comisi\u00f3n Interamericana de Derechos Humanos con el objeto de someter a la jurisdicci\u00f3n de la Honorable Corte Interamericana de Derechos Humanos el caso Manfred Amhrein y otros respecto del Estado de Costa Rica en adelante el Estado el Estado costarricense o Costa Rica. El caso se relaciona con la responsabilidad internacional de Costa Rica por la de un que", - "values": [ - "Comisi\u00f3n Interamericana de Derechos Humanos" - ] - }, - { - "text": "VOTO DISIDENTE DEL JUEZ HUMBERTO ANTONIO SIERRA PORTO RESOLUCI\u00d3N DE LA CORTE INTERAMERICANA DE DERECHOS HUMANOS DE DE FEBRERO DE SOLICITUD DE MEDIDAS PROVISIONALES CASO DURAND Y UGARTE VS. PER\u00da Con el acostumbrado respeto por las decisiones de la Corte me permito formular a continuaci\u00f3n el presente voto disidente de la resoluci\u00f3n mediante la cual se Ratifica la Resoluci\u00f3n del Presidente de la Corte Interamericana de Derechos Humanos de de diciembre de y requerir al Estado del Per\u00fa que para", - "values": [ - "Corte Interamericana de Derechos Humanos" - ] - }, - { - "text": "RESOLUCI\u00d3N DE LA CORTE INTERAMERICANA DE DERECHOS HUMANOS DE DE FEBRERO DE SOLICITUD DE MEDIDAS PROVISIONALES RESPECTO DE LA REP\u00daBLICA DEL PER\u00da CASO GALINDO C\u00c1RDENAS VISTOS La Sentencia de octubre de dictada por la Corte Interamericana de Derechos Humanos en adelante la Corte o este Tribunal sobre excepciones preliminares fondo reparaciones y costas. El escrito de de diciembre de mediante el cual el se\u00f1or Luis Antonio Galindo C\u00e1rdenas en adelante tambi\u00e9n el se\u00f1or Galindo C\u00e1rdenas o el ", - "values": [ - "Corte Interamericana de Derechos Humanos" - ] - }, - { - "text": "RESOLUCI\u00d3N DE LA CORTE INTERAMERICANA DE DERECHOS HUMANOS DE DE FEBRERO DE ADOPCI\u00d3N DE MEDIDAS PROVISIONALES CASO COC MAX Y OTROS VS. GUATEMALA VISTO El escrito de de septiembre de por medio del cuales la Comisi\u00f3n Interamericana de Derechos Humanos en adelante tambi\u00e9n la Comisi\u00f3n o Comisi\u00f3n Interamericana mediante la remisi\u00f3n del y el Informe de Admisibilidad y Fondo No de de junio de someti\u00f3 el caso Coc Max y otros vs. Guatemala a la Corte Interamericana de Derechos Humanos en adelante", - "values": [ - "Corte Interamericana de Derechos Humanos" - ] - }, - { - "text": "RESOLUCI\u00d3N DEL PRESIDENTE DE LA CORTE INTERAMERICANA DE DERECHOS HUMANOS DE DE FEBRERO DE FONDO DE ASISTENCIA LEGAL DE V\u00cdCTIMAS CASO \u00c1LVAREZ RAMOS VS. VENEZUELA VISTO El escrito de de julio de y sus anexos mediante los cuales la Comisi\u00f3n Interamericana de Derechos Humanos en adelante la Comisi\u00f3n Interamericana o la Comisi\u00f3n someti\u00f3 ante la Corte Interamericana de Derechos Humanos en adelante la Corte Interamericana la Corte o el Tribunal el presente caso. El escrito de de octubre de el", - "values": [ - "Corte Interamericana de Derechos Humanos" - ] - }, - { - "text": "RESOLUCI\u00d3N DE LA CORTE INTERAMERICANA DE DERECHOS HUMANOS DE DE FEBRERO DE SOLICITUD DE MEDIDAS PROVISIONALES RESPECTO DE ECUADOR ASUNTO EDWIN LEONARDO JARR\u00cdN JARR\u00cdN TANIA ELIZABETH PAUKER CUEVA Y SONIA GABRIELA VERA GARC\u00cdA VISTO El escrito de de febrero de y sus anexos mediante los cuales la Comisi\u00f3n Interamericana de Derechos Humanos en adelante la Comisi\u00f3n la Comisi\u00f3n Interamericana o la CIDH someti\u00f3 a la Corte Interamericana de Derechos Humanos en adelante la Corte Interamericana o la ", - "values": [ - "Corte Interamericana de Derechos Humanos" - ] - }, - { - "text": "INFORME No. CASO FONDO CARLOS ALBERTO CANALES HUAPAYA Y OTROS PER\u00da xx de noviembre de I. RESUMEN El presente informe se refiere a dos peticiones interpuestas en representaci\u00f3n de Carlos Alberto Canales Huapaya P Jos\u00e9 Castro Ballena y Mar\u00eda Gracia Barriga Or\u00e9 P en adelante tambi\u00e9n las presuntas v\u00edctimas en las cuales se alega la violaci\u00f3n por parte de la Rep\u00fablica del Per\u00fa en adelante tambi\u00e9n Per\u00fa el Estado o el Estado peruano de los derechos consagrados en los art\u00edculos y de la ", - "values": [ - "Comisi\u00f3n Interamericana de Derechos Humanos" - ] - }, - { - "text": "INTER AMERICAN COMMISSION ON HUMAN RIGHTS COMISION INTERAMERICANA DE DERECHOS HUMANOS COMISS\u00c3O INTERAMERICANA DE DIREITOS HUMANOS COMMISSION INTERAM\u00c9RICAINE DES DROITS DE LHOMME ORGANIZACI\u00d3N DE LOS ESTADOS AMERICANOS WASHINGTON DC. EEUU de diciembre de Ref Caso No. Canales Huapaya y otros Per\u00fa Se\u00f1or Secretario Tengo el agrado de dirigirme a usted en nombre de la Comisi\u00f3n Interamericana de Derechos Humanos con el objeto de someter a la jurisdicci\u00f3n de la Honorable Corte Interamericana ", - "values": [ - "Comisi\u00f3n Interamericana de Derechos Humanos" - ] - }, - { - "text": "INTER AMERICAN COMMISSION ON HUMAN RIGHTS COMISION INTERAMERICANA DE DERECHOS HUMANOS COMISS\u00c3O INTERAMERICANA DE DIREITOS HUMANOS COMMISSION INTERAM\u00c9RICAINE DES DROITS DE LHOMME ORGANIZACI\u00d3N DE LOS ESTADOS AMERICANOS WASHINGTON DC. EEUU de octubre de Ref Caso No. Wong Ho Wing Per\u00fa Se\u00f1or Secretario Tengo el agrado de dirigirme a usted en nombre de la Comisi\u00f3n Interamericana de Derechos Humanos con el objeto de someter a la jurisdicci\u00f3n de la Honorable Corte Interamericana de Derechos ", - "values": [ - "Comisi\u00f3n Interamericana de Derechos Humanos" - ] - }, - { - "text": "INFORME No. CASO FONDO WONG HO WING PER\u00da de julio de I. RESUMEN El de marzo de la Comisi\u00f3n Interamericana de Derechos Humanos en adelante la Comisi\u00f3n Interamericana la Comisi\u00f3n o la CIDH recibi\u00f3 una petici\u00f3n presentada por Luis Lamas Puccio en adelante el peticionario en favor de Wong Ho Wing en la cual se aleg\u00f3 la violaci\u00f3n por parte de la Rep\u00fablica del Per\u00fa en adelante Per\u00fa el Estado o el Estado peruano de derechos consagrados en la Convenci\u00f3n Americana sobre Derechos Humanos en la ", - "values": [ - "Comisi\u00f3n Interamericana de Derechos Humanos" - ] - }, - { - "text": "RESOLUCI\u00d3N DE LA CORTE INTERAMERICANA DE DERECHOS HUMANOS DE DE FEBRERO DE CASO ANDRADE SALM\u00d3N VS. BOLIVIA SUPERVISI\u00d3N DE CUMPLIMIENTO DE SENTENCIA VISTO La Sentencia de fondo reparaciones y costas dictada por la Corte Interamericana de Derechos Humanos en adelante la Corte la Corte Interamericana o el Tribunal el de diciembre de En dicha Sentencia la Corte declar\u00f3 la responsabilidad internacional del Estado Plurinacional de Bolivia en adelante el Estado o Bolivia por las violaciones al ", - "values": [ - "Corte Interamericana de Derechos Humanos" - ] - }, - { - "text": "RESOLUCI\u00d3N DE LA CORTE INTERAMERICANA DE DERECHOS HUMANOS DE DE FEBRERO DE REINTEGRO AL FONDO DE ASISTENCIA LEGAL DE V\u00cdCTIMAS CASO CHINCHILLA SANDOVAL VS. GUATEMALA VISTO La Sentencia de excepci\u00f3n preliminar fondo reparaciones y costas en adelante la Sentencia o el Fallo dictada por la Corte Interamericana de Derechos Humanos en adelante la Corte la Corte Interamericana o el Tribunal el de febrero de La Corte declar\u00f3 responsable internacionalmente al Estado de Guatemala en adelante el o ", - "values": [ - "Corte Interamericana de Derechos Humanos" - ] - }, - { - "text": "RESOLUCI\u00d3N DEL PRESIDENTE DE LA CORTE INTERAMERICANA DE DERECHOS HUMANOS DE DE FEBRERO DE CASO CUSC\u00daL PIVARAL Y OTROS VS. GUATEMALA VISTO El escrito de sometimiento del caso y el Informe de Fondo de la Comisi\u00f3n Interamericana de Derechos Humanos en adelante la Comisi\u00f3n Interamericana o la Comisi\u00f3n el escrito de solicitudes argumentos y pruebas en adelante el escrito de solicitudes y argumentos de los representantes de las presuntas v\u00edctimas en adelante los representantes el escrito de y ", - "values": [ - "Corte Interamericana de Derechos Humanos" - ] - }, - { - "text": "RESOLUCI\u00d3N DE LA CORTE INTERAMERICANA DE DERECHOS HUMANOS DE DE FEBRERO DE CASO CUSCUL PIVARAL Y OTROS VS. GUATEMALA VISTO La Resoluci\u00f3n del Presidente de la Corte Interamericana de Derechos Humanos en adelante el Presidente de de febrero de en adelante la Resoluci\u00f3n del Presidente mediante la cual inter alia orden\u00f3 la recepci\u00f3n de diversas declaraciones en audiencia p\u00fablica y mediante affid\u00e1vit y convoc\u00f3 a la Comisi\u00f3n Interamericana de Derechos Humanos en adelante tambi\u00e9n la Comisi\u00f3n o ", - "values": [ - "Corte Interamericana de Derechos Humanos" - ] - }, - { - "text": "RESOLUCI\u00d3N DEL PRESIDENTE DE LA CORTE INTERAMERICANA DE DERECHOS HUMANOS DE DE FEBRERO DE CASO TERRONES Y OTROS VS. PER\u00da CONVOCATORIA A AUDIENCIA VISTO El escrito de sometimiento del caso y el Informe de Fondo de la Comisi\u00f3n Interamericana de Derechos Humanos en adelante la Comisi\u00f3n Interamericana o la Comisi\u00f3n el escrito de solicitudes argumentos y pruebas en adelante el escrito de solicitudes y argumentos de los representantes de las v\u00edctimas en adelante los representantes el escrito de ", - "values": [ - "Corte Interamericana de Derechos Humanos" - ] - }, - { - "text": "CORTE INTERAMERICANA DE DERECHOS HUMANOS CASO ZEGARRA MAR\u00cdN VS. PER\u00da SENTENCIA DE DE FEBRERO DE Interpretaci\u00f3n de Sentencia de Excepciones Preliminares Fondo Reparaciones y Costas En el caso Zegarra Mar\u00edn Vs. Per\u00fa la Corte Interamericana de Derechos Humanos en adelante la Corte Interamericana la Corte o el Tribunal integrada por los siguientes Jueces Eduardo Ferrer MacGregor Poisot Presidente Eduardo Vio Grossi Vicepresidente Roberto F. Caldas Humberto Antonio Sierra Porto Juez Elizabeth Odio", - "values": [ - "Corte Interamericana de Derechos Humanos" - ] - }, - { - "text": "CORTE INTERAMERICANA DE DIREITOS HUMANOS CASO FAVELA NOVA BRAS\u00cdLIA VS. BRASIL SENTEN\u00c7A DE DE FEVEREIRO DE Interpreta\u00e7\u00e3o da Senten\u00e7a de Exce\u00e7\u00f5es Preliminares M\u00e9rito Repara\u00e7\u00f5es e Custas No Caso Favela Nova Bras\u00edlia a Corte Interamericana de Direitos Humanos doravante denominada Corte Interamericana Corte ou Tribunal assim constitu\u00edda Eduardo Ferrer MacGregor Poisot Presidente Eduardo Vio Grossi VicePresidente Humberto Antonio Sierra Porto Juiz Elizabeth Odio Benito Ju\u00edza Eugenio Ra\u00fal Zaffaroni ", - "values": [ - "Corte Interamericana de Derechos Humanos" - ] - }, - { - "text": "RESOLUCI\u00d3N DE LA CORTE INTERAMERICANA DE DERECHOS HUMANOS DE DE FEBRERO DE CASO GONZALES LLUY Y OTROS VS. ECUADOR SUPERVISI\u00d3N DE CUMPLIMIENTO DE SENTENCIA VISTO La Sentencia de excepciones preliminares fondo reparaciones y costas en adelante la Sentencia dictada por la Corte Interamericana de Derechos Humanos en adelante la Corte Interamericana la Corte o el Tribunal el de septiembre de La Corte declar\u00f3 la responsabilidad internacional de la Rep\u00fablica del Ecuador en adelante el Estado o ", - "values": [ - "Corte Interamericana de Derechos Humanos" - ] - }, - { - "text": "RESOLUCI\u00d3N DE LA CORTE INTERAMERICANA DE DERECHOS HUMANOS DE DE FEBRERO DE SOLICITUD DE MEDIDAS PROVISIONALES CASO DEL PENAL MIGUEL CASTRO CASTRO VS. PER\u00da VISTO La Sentencia de fondo reparaciones y costas en adelante la Sentencia emitida en el presente caso por la Corte Interamericana de Derechos Humanos en adelante la Corte Interamericana la Corte o el Tribunal el de noviembre de Tomando en cuenta el reconocimiento parcial de responsabilidad efectuado por la Rep\u00fablica del Per\u00fa el Estado", - "values": [ - "Corte Interamericana de Derechos Humanos" - ] - }, - { - "text": "RESOLUCI\u00d3N DE LA CORTE INTERAMERICANA DE DERECHOS HUMANOS DE DE FEBREO DE MEDIDAS PROVISIONALES RESPECTO DE LA REP\u00daBLICA DE COLOMBIA ASUNTO COMUNIDAD DE PAZ DE SAN JOS\u00c9 DE APARTAD\u00d3 VISTOS Las Resoluciones de la Corte Interamericana de de octubre de de noviembre de de junio de de noviembre de de marzo de de febrero de de diciembre de de febrero de de agosto de y de junio de En esta \u00faltima Resoluci\u00f3n la Corte resolvi\u00f3 entre otros Reiterar al Estado que mantenga las medidas", - "values": [ - "Corte Interamericana de Derechos Humanos" - ] - }, - { - "text": "RESOLUCI\u00d3N DE LA CORTE INTERAMERICANA DE DERECHOS HUMANOS DE DE FEBRERO DE SOLICITUD DE MEDIDAS PROVISIONALES CASO DURAND Y UGARTE VS. PER\u00da VISTO La Sentencia de fondo de de agosto de en adelante la Sentencia mediante la cual la Corte Interamericana de Derechos Humanos en adelante tambi\u00e9n la Corte Interamericana o el Tribunal declar\u00f3 responsable internacionalmente a la Rep\u00fablica del Per\u00fa en adelante el Estado o Per\u00fa por la violaci\u00f3n del derecho a la vida de los se\u00f1ores Nolberto Durand y ", - "values": [ - "Corte Interamericana de Derechos Humanos" - ] - }, - { - "text": "RESOLUCI\u00d3N DEL PRESIDENTE DE LA CORTE INTERAMERICANA DE DERECHOS HUMANOS DE DE FEBRERO DE FONDO DE ASISTENCIA LEGAL DE V\u00cdCTIMAS CASO MUN\u00c1RRIZ ESCOBAR Y OTROS VS. PER\u00da VISTO El escrito de de junio de y sus anexos mediante los cuales la Comisi\u00f3n Interamericana de Derechos Humanos en adelante la Comisi\u00f3n Interamericana o la Comisi\u00f3n someti\u00f3 ante la Corte Interamericana de Derechos Humanos en adelante la Corte Interamericana la Corte o el Tribunal el presente caso. El escrito de de octubre ", - "values": [ - "Corte Interamericana de Derechos Humanos" - ] - }, - { - "text": "INTER AMERICAN COMMISSION ON HUMAN RIGHTS COMISION INTERAMERICANA DE DERECHOS HUMANOS COMISS\u00c3O INTERAMERICANA DE DIREITOS HUMANOS COMMISSION INTERAM\u00c9RICAINE DES DROITS DE LHOMME ORGANIZACI\u00d3N DE LOS ESTADOS AMERICANOS WASHINGTON DC. EEUU de julio de Ref Caso No. Florent\u00edn Gudiel Ramos Makrina Gudiel \u00c1lvarez y otros Guatemala Se\u00f1or Secretario Tengo el agrado de dirigirme a usted en nombre de la Comisi\u00f3n Interamericana de Derechos Humanos con el objeto de someter a la jurisdicci\u00f3n de la ", - "values": [ - "Comisi\u00f3n Interamericana de Derechos Humanos" - ] - }, - { - "text": "INFORME No. CASO FONDO FLORENT\u00cdN GUDIEL RAMOS MAKRINA GUDIEL \u00c1LVAREZ Y OTROS GUATEMALA de marzo de I. RESUMEN La Comisi\u00f3n Interamericana de Derechos Humanos en adelante Comisi\u00f3n Comisi\u00f3n Interamericana o CIDH recibi\u00f3 el de diciembre de una petici\u00f3n presentada por Claudia Samayoa y Makrina Gudiel \u00c1lvarez en adelante las peticionarias en representaci\u00f3n de Florent\u00edn Gudiel Ramos y Makrina Gudiel \u00c1lvarez en adelante presuntas v\u00edctimas en contra del Estado de Guatemala en adelante Estado o ", - "values": [ - "Comisi\u00f3n Interamericana de Derechos Humanos" - ] - }, - { - "text": "INTER AMERICAN COMMISSION ON HUMAN RIGHTS COMISION INTERAMERICANA DE DERECHOS HUMANOS COMISS\u00c3O INTERAMERICANA DE DIREITOS HUMANOS COMMISSION INTERAM\u00c9RICAINE DES DROITS DE LHOMME ORGANIZACI\u00d3N DE LOS ESTADOS AMERICANOS WASHINGTON DC. EEUU de julio de Ref Caso No. Hermanos Landaeta Mej\u00edas y otros Venezuela Se\u00f1or Secretario Tengo el agrado de dirigirme a usted en nombre de la Comisi\u00f3n Interamericana de Derechos Humanos con el objeto de someter a la jurisdicci\u00f3n de la Honorable Corte de ", - "values": [ - "Comisi\u00f3n Interamericana de Derechos Humanos" - ] - }, - { - "text": "INFORME No. CASO FONDO HERMANOS LANDAETA MEJ\u00cdAS VENEZUELA de marzo de I. RESUMEN El de septiembre de y el de abril de la Comisi\u00f3n Interamericana de Derechos Humanos en adelante tambi\u00e9n la Comisi\u00f3n Interamericana la Comisi\u00f3n o la CIDH recibi\u00f3 dos peticiones presentadas por Ignacio Landaeta Mu\u00f1oz y la Comisi\u00f3n de Derechos Humanos de Justicia y Paz del Estado Aragua en el caso de la primera y ellos junto con el Centro por la Justicia y el Derecho Internacional CEJIL en el caso de la en ", - "values": [ - "Comisi\u00f3n Interamericana de Derechos Humanos" - ] - }, - { - "text": "INFORME No. CASO FONDO BENITO TIDE MENDEZ Y OTROS REP\u00daBLICA DOMINICANA de marzo de I. RESUMEN El de noviembre de la Comisi\u00f3n Interamericana de Derechos Humanos en adelante la Comisi\u00f3n Interamericana la Comisi\u00f3n o la CIDH recibi\u00f3 una petici\u00f3n presentada por la Cl\u00ednica de Derechos Humanos de la Escuela de Derecho de la Universidad de Berkeley California Boalt Hall el Centro por la Justicia y el Derecho Internacional CEJIL y la Coalici\u00f3n Nacional para los Derechos de los Haitianos NCHR en ", - "values": [ - "Comisi\u00f3n Interamericana de Derechos Humanos" - ] - }, - { - "text": "INFORME No. CASO FONDO JEREM\u00cdAS OSORIO RIVERA Y OTROS PER\u00da de octubre de I. RESUMEN El de noviembre de la Comisi\u00f3n Interamericana de Derechos Humanos en adelante tambi\u00e9n la Comisi\u00f3n Interamericana la Comisi\u00f3n o la CIDH recibi\u00f3 una petici\u00f3n presentada por Porfirio Osorio Rivera y por la Asociaci\u00f3n Pro Derechos Humanos APRODEH en adelante tambi\u00e9n los peticionarios en representaci\u00f3n de Jerem\u00edas Osorio Rivera en adelante tambi\u00e9n la presunta v\u00edctima en la cual se aleg\u00f3 la violaci\u00f3n por parte ", - "values": [ - "Comisi\u00f3n Interamericana de Derechos Humanos" - ] - }, - { - "text": "INTER AMERICAN COMMISSION ON HUMAN RIGHTS COMISION INTERAMERICANA DE DERECHOS HUMANOS COMISS\u00c3O INTERAMERICANA DE DIREITOS HUMANOS COMMISSION INTERAM\u00c9RICAINE DES DROITS DE LHOMME ORGANIZACI\u00d3N DE LOS ESTADOS AMERICANOS WASHINGTON DC. EEUU de mayo de Ref Caso No. Hugo Oscar Arguelles y otros Argentina Se\u00f1or Secretario Tengo el agrado de dirigirme a usted en nombre de la Comisi\u00f3n Interamericana de Derechos Humanos con el objeto de someter a la jurisdicci\u00f3n de la Honorable Corte de el ", - "values": [ - "Comisi\u00f3n Interamericana de Derechos Humanos" - ] - }, - { - "text": "INTER AMERICAN COMMISSION ON HUMAN RIGHTS COMISION INTERAMERICANA DE DERECHOS HUMANOS COMISS\u00c3O INTERAMERICANA DE DIREITOS HUMANOS COMMISSION INTERAM\u00c9RICAINE DES DROITS DE LHOMME ORGANIZACI\u00d3N DE LOS ESTADOS AMERICANOS WASHINGTON DC. EEUU de junio de Ref Caso No. Jerem\u00edas Osorio Rivera y otros Per\u00fa Se\u00f1or Secretario Tengo el agrado de dirigirme a usted en nombre de la Comisi\u00f3n Interamericana de Derechos Humanos con el objeto de someter a la jurisdicci\u00f3n de la Honorable Corte de Derechos ", - "values": [ - "Comisi\u00f3n Interamericana de Derechos Humanos" - ] - }, - { - "text": "INFORME No. CASO FONDO HUGO OSCAR ARG\u00dcELLES Y OTROS. ARGENTINA de octubre de I. RESUMEN Entre el de junio de y el de octubre de la Comisi\u00f3n InterAmericana La Comisi\u00f3n recibi\u00f3 una seria de peticiones presentadas en nombre de individuos todos Militares Argentinos Hugo Oscar Arg\u00fcelles Enrique Jes\u00fas Aracena Carlos Julio Arancibia Julio Cesar Allendes Ricardo Omar Candurra Miguel Oscar Cardozo Jos\u00e9 Eduardo di Rosa Carlos Alberto Galluzzi Gerardo Feliz Giordano An\u00edbal Ram\u00f3n Mach\u00edn", - "values": [ - "Comisi\u00f3n Interamericana de Derechos Humanos" - ] - }, - { - "text": " de diciembre de REF Caso No. Robert Ignacio D\u00edaz Loreto David Octavio D\u00edaz Loreto Octavio Ignacio D\u00edaz \u00c1lvarez y familiares Venezuela Se\u00f1or Secretario Tengo el agrado de dirigirme a usted en nombre de la Comisi\u00f3n Interamericana de Derechos Humanos con el objeto de someter a la jurisdicci\u00f3n de la Honorable Corte Interamericana de Derechos Humanos el caso Robert Ignacio D\u00edaz Loreto David Octavio D\u00edaz Loreto Octavio Ignacio D\u00edaz \u00c1lvarez y familiares respecto de la Rep\u00fablica Bolivariana de en", - "values": [ - "Comisi\u00f3n Interamericana de Derechos Humanos" - ] - }, - { - "text": "INFORME No. CASO INFORME DE FONDO ROBERT IGNACIO D\u00cdAZ LORETO DAVID OCTAVIO D\u00cdAZ LORETO OCTAVIO IGNACIO D\u00cdAZ \u00c1LVAREZ Y FAMILIARES VENEZUELA DE JULIO DE I. RESUMEN El de marzo de la Comisi\u00f3n Interamericana de Derechos Humanos en adelante la Comisi\u00f3n Interamericana la Comisi\u00f3n o la CIDH recibi\u00f3 una petici\u00f3n presentada por Luis Aguilera en su car\u00e1cter de Secretario General de la Comisi\u00f3n de Derechos Humanos de Justicia y Paz del estado Aragua y por la se\u00f1ora Juana Emilia D\u00edaz Loreto en la ", - "values": [ - "Comisi\u00f3n Interamericana de Derechos Humanos" - ] - }, - { - "text": "INFORME No. PETICI\u00d3N ADMISIBILIDAD ROBERT IGNACIO D\u00cdAZ LORETO Y OTROS VENEZUELA de julio de I. RESUMEN El de marzo de la Comisi\u00f3n Interamericana de Derechos Humanos en adelante tambi\u00e9n la Comisi\u00f3n Interamericana la Comisi\u00f3n o la CIDH recibi\u00f3 una petici\u00f3n presentada por el se\u00f1or Lu\u00eds Aguilera en su car\u00e1cter de Secretario General de la Comisi\u00f3n de Derechos Humanos de Justicia y Paz del Estado Aragua y por la se\u00f1ora Juana Emilia D\u00edaz Loreto en adelante tambi\u00e9n los peticionarios en la cual ", - "values": [ - "Comisi\u00f3n Interamericana de Derechos Humanos" - ] - }, - { - "text": "INFORME No. CASO INFORME DE ADMISIBILIDAD Y FONDO ALEJANDRO YOVANY G\u00d3MEZ VIRULA Y FAMILIA GUATEMALA DE MARZO DE I. RESUMEN El de julio de la Comisi\u00f3n Interamericana de Derechos Humanos en adelante la Comisi\u00f3n la Comisi\u00f3n Interamericana o la CIDH recibi\u00f3 una petici\u00f3n presentada por Antonio G\u00f3mez Paula Virula the Guatemala Labor Education Project y la Uni\u00f3n Sindical de Trabajadores de Guatemala en adelante los peticionarios en la cual se aleg\u00f3 la responsabilidad internacional de la de en", - "values": [ - "Comisi\u00f3n Interamericana de Derechos Humanos" - ] - }, - { - "text": "REF Caso N\u00ba Alejandro Yovany G\u00f3mez Virula y familia Guatemala de noviembre de Se\u00f1or Secretario Tengo el agrado de dirigirme a usted en nombre de la Comisi\u00f3n Interamericana de Derechos Humanos con el objeto de someter a la jurisdicci\u00f3n de la Honorable Corte Interamericana de Derechos Humanos el Caso N\u00ba Alejandro Yovany G\u00f3mez Virula y familia respecto de la Rep\u00fablica de Guatemala en adelante el Estado el Estado de Guatemala el Estado guatemalteco o Guatemala relacionado con la desaparici\u00f3n y", - "values": [ - "Comisi\u00f3n Interamericana de Derechos Humanos" - ] - }, - { - "text": "INFORME No. CASO FONDO ELBA CLOTILDE PERRONE Y JUAN JOSE PRECKEL ARGENTINA DE MARZO DE I. RESUMEN El de diciembre de y el de enero de la Comisi\u00f3n Interamericana de Derechos Humanos en adelante la Comisi\u00f3n la Comisi\u00f3n Interamericana o la CIDH recibi\u00f3 dos peticiones presentadas por la Asamblea Permanente por los Derechos Humanos en adelante los peticionarios en la cual se aleg\u00f3 la responsabilidad internacional de la Rep\u00fablica de Argentina en adelante el Estado el Estado argentino o por ", - "values": [ - "Comisi\u00f3n Interamericana de Derechos Humanos" - ] - }, - { - "text": " de octubre de REF Caso N\u00ba Elba Clotilde Perrone y Juan Jos\u00e9 Preckel Argentina Se\u00f1or Secretario Tengo el agrado de dirigirme a usted en nombre de la Comisi\u00f3n Interamericana de Derechos Humanos con el objeto de presentar ante la Honorable Corte Interamericana de Derechos Humanos el Caso N\u00ba Elba Clotilde Perrone y Juan Jos\u00e9 Preckel respecto de la Rep\u00fablica de Argentina en adelante el Estado el Estado argentino o Argentina relacionado con la violaci\u00f3n de los derechos a las garant\u00edas judiciales", - "values": [ - "Comisi\u00f3n Interamericana de Derechos Humanos" - ] - }, - { - "text": "INFORME N\u00ba CASO ELBA CLOTILDE PERRONE Y JUAN JOSE PRECKEL ARGENTINA de mayo de I. RESUMEN El de diciembre de y el de enero de la Asamblea Permanente por los Derechos Humanos en adelante la peticionaria present\u00f3 una petici\u00f3n ante la Comisi\u00f3n Interamericana de Derechos Humanos en adelante la Comisi\u00f3n o la Comisi\u00f3n Interamericana alegando que durante el lapso que Elba Clotilde Perrone y Juan Jos\u00e9 Preckel estuvieron ileg\u00edtimamente detenidos y en exilio por \u00f3rdenes del gobierno de facto que", - "values": [ - "Comisi\u00f3n Interamericana de Derechos Humanos" - ] - }, - { - "text": "INFORME No. CASO FONDO JORGE ROSADIO VILLAVICENCIO PER\u00da DE MAYO DE I. RESUMEN El de abril de la Comisi\u00f3n Interamericana de Derechos Humanos en adelante la Comisi\u00f3n la Comisi\u00f3n Interamericana o la CIDH recibi\u00f3 una petici\u00f3n presentada por Amelia Villavicencio de Rosadio en adelante los peticionarios en la cual se alega la responsabilidad de la Rep\u00fablica del Per\u00fa en adelante el Estado el Estado peruano o Per\u00fa por la violaci\u00f3n de varias disposiciones de la Convenci\u00f3n Americana sobre en ", - "values": [ - "Comisi\u00f3n Interamericana de Derechos Humanos" - ] - }, - { - "text": "INFORME N\u00ba PETICI\u00d3N ADMISIBILIDAD JORGE ROSAD\u00cdO VILLAVICENCIO PER\u00da de febrero de I. RESUMEN Mediante petici\u00f3n presentada a la Comisi\u00f3n Interamericana de Derechos Humanos en adelante la Comisi\u00f3n el de abril de la se\u00f1ora Amelia Villavicencio de Rosad\u00edo en adelante la peticionaria denunci\u00f3 que la Rep\u00fablica del Per\u00fa en adelante Per\u00fa el Estado o el Estado peruano viol\u00f3 en perjuicio de su hijo el se\u00f1or Jorge Rosad\u00edo Villavicencio en adelante la v\u00edctima el principio de legalidad el derecho a la", - "values": [ - "Comisi\u00f3n Interamericana de Derechos Humanos" - ] - }, - { - "text": "INFORME No. CASO FONDO GABRIEL OSCAR JENKINS ARGENTINA DE DICIEMBRE DE I. RESUMEN El de septiembre de la Comisi\u00f3n Interamericana de Derechos Humanos en adelante la Comisi\u00f3n la Comisi\u00f3n Interamericana o la CIDH recibi\u00f3 una petici\u00f3n presentada por Gabriel Oscar Jenkins en la cual se alega la responsabilidad de la Rep\u00fablica de Argentina en adelante el Estado el Estado de argentina el Estado argentino o Argentina por la violaci\u00f3n de varias disposiciones de la Convenci\u00f3n Americana sobre en ", - "values": [ - "Comisi\u00f3n Interamericana de Derechos Humanos" - ] - }, - { - "text": " de septiembre de REF Caso N\u00ba Gabriel Oscar Jenkins Argentina Se\u00f1or Secretario Tengo el agrado de dirigirme a usted en nombre de la Comisi\u00f3n Interamericana de Derechos Humanos con el objeto de presentar ante la Honorable Corte Interamericana de Derechos Humanos el Caso N\u00ba Gabriel Oscar Jenkins respecto de la Rep\u00fablica de Argentina en adelante el Estado el Estado argentino o Argentina relacionado con la privaci\u00f3n arbitraria de libertad de Gabriel Oscar Jenkins desde el de junio de hasta el", - "values": [ - "Comisi\u00f3n Interamericana de Derechos Humanos" - ] - }, - { - "text": "INFORME No. CASO FONDO ASOCIACI\u00d3N NACIONAL DE CESANTES Y JUBILADOS DE LA SUPERINTENDENCIA NACIONAL DE ADMINISTRACI\u00d3N TRIBUTARIA ANCEJUBSUNAT PER\u00da DE MAYO DE I. RESUMEN Entre noviembre de y octubre de la Comisi\u00f3n Interamericana de Derechos Humanos en adelante la Comisi\u00f3n la Comisi\u00f3n Interamericana o la CIDH recibi\u00f3 cuatro peticiones en las cuales se aleg\u00f3 la responsabilidad internacional de la Rep\u00fablica del Per\u00fa en adelante el Estado el Estado peruano o Per\u00fa por la falta de cumplimiento ", - "values": [ - "Comisi\u00f3n Interamericana de Derechos Humanos" - ] - }, - { - "text": " de septiembre de REF Caso N\u00ba Asociaci\u00f3n Nacional de Cesantes y Jubilados de la Superintendencia Nacional de Administraci\u00f3n Tributaria ANCEJUBSUNAT Per\u00fa Se\u00f1or Secretario Tengo el agrado de dirigirme a usted en nombre de la Comisi\u00f3n Interamericana de Derechos Humanos con el objeto de someter a la jurisdicci\u00f3n de la Honorable Corte Interamericana de Derechos Humanos el Caso N\u00ba Asociaci\u00f3n Nacional de Cesantes y Jubilados de la Superintendencia Nacional de Administraci\u00f3n Tributaria ANCEJUBSUNAT", - "values": [ - "Comisi\u00f3n Interamericana de Derechos Humanos" - ] - }, - { - "text": "INFORME No. PETICIONES y Acumuladas ADMISIBILIDAD ASOCIACI\u00d3N NACIONAL DE CESANTES Y JUBILADOS DE LA SUNAT PER\u00da de marzo de I. RESUMEN El de noviembre de el de agosto de y el de octubre de la Comisi\u00f3n Interamericana de Derechos Humanos en adelante tambi\u00e9n la Comisi\u00f3n Interamericana la Comisi\u00f3n o la CIDH recibi\u00f3 peticiones presentadas por la Asociaci\u00f3n Nacional de Cesantes y Jubilados de la SUNAT un grupo de seis personas y el Centro de Asesor\u00eda Laboral del Per\u00fa en adelante tambi\u00e9n ", - "values": [ - "Comisi\u00f3n Interamericana de Derechos Humanos" - ] - }, - { - "text": " de noviembre de Ref Caso No. Roberto Gir\u00f3n y Pedro Castillo Mendoza Guatemala Se\u00f1or Secretario Tengo el agrado de dirigirme a usted en nombre de la Comisi\u00f3n Interamericana de Derechos Humanos con el objeto de someter a la jurisdicci\u00f3n de la Honorable Corte Interamericana de Derechos Humanos el Caso N\u00ba Roberto Gir\u00f3n y Pedro Castillo Mendoza respecto de la Rep\u00fablica de Guatemala en adelante el Estado el Estado guatemalteco o Guatemala. El presente caso se relaciona con una serie de al en", - "values": [ - "Comisi\u00f3n Interamericana de Derechos Humanos" - ] - }, - { - "text": "INFORME No. CASO ADMISIBILIDAD Y FONDO ROBERTO GIR\u00d3N Y PEDRO CASTILLO MENDOZA GUATEMALA DE JULIO DE I. RESUMEN El de julio y de agosto de la Comisi\u00f3n Interamericana de Derechos Humanos en adelante la Comisi\u00f3n la Comisi\u00f3n Interamericana o la CIDH recibi\u00f3 dos peticiones presentadas respectivamente por The Magnus F. Hirschfeld Centre for Human Rights y el Instituto de Estudios Comparados en Ciencias Penales de Guatemala conjuntamente con el Centro para la Acci\u00f3n Legal en Derechos Humanos ", - "values": [ - "Comisi\u00f3n Interamericana de Derechos Humanos" - ] - }, - { - "text": "RESOLUCI\u00d3N DEL PRESIDENTE EN EJERCICIO DE LA CORTE INTERAMERICANA DE DERECHOS HUMANOS DE DE MARZO DE CASO ALVARADO ESPINOZA Y OTROS VS. MEXICO CONVOCATORIA A AUDIENCIA. VISTO El escrito de sometimiento del Caso Alvarado Espinoza y Otros Vs. M\u00e9xico y el Informe de Fondo de la Comisi\u00f3n Interamericana de Derechos Humanos en adelante la Comisi\u00f3n Interamericana o la Comisi\u00f3n el escrito de solicitudes argumentos y pruebas en adelante el escrito de solicitudes y argumentos de las representantes de", - "values": [ - "Corte Interamericana de Derechos Humanos" - ] - }, - { - "text": "RESOLUCI\u00d3N DE LA CORTE INTERAMERICANA DE DERECHOS HUMANOS DE DE MARZO DE MEDIDAS PROVISIONALES RESPECTO DE M\u00c9XICO ASUNTO ALVARADO REYES Y OTROS VISTO Las Resoluciones dictadas por la Corte Interamericana de Derechos Humanos en adelante la Corte Interamericana la Corte o el Tribunal el de mayo y de noviembre de de mayo de de noviembre de de junio de y de noviembre de mediante las cuales a solicitud de la Comisi\u00f3n el Tribunal orden\u00f3 medidas provisionales y supervis\u00f3 su ejecuci\u00f3n en ", - "values": [ - "Corte Interamericana de Derechos Humanos" - ] - }, - { - "text": "RESOLUCI\u00d3N DE LA CORTE INTERAMERICANA DE DERECHOS HUMANOS DE DE MARZO DE MEDIDAS PROVISIONALES RESPECTO DE BRASIL ASUNTO DEL COMPLEJO PENITENCIARIO DE PEDRINHAS VISTO La Resoluci\u00f3n emitida por la Corte Interamericana de Derechos Humanos en adelante la Corte Interamericana la Corte o el Tribunal el de noviembre de Entre otros se requiri\u00f3 a la Rep\u00fablica Federativa de Brasil en adelante Brasil o el Estado adoptar de forma inmediata todas las medidas que fueran necesarias para proteger la y", - "values": [ - "Corte Interamericana de Derechos Humanos" - ] - }, - { - "text": "RESOLUCI\u00d3N DE LA CORTE INTERAMERICANA DE DERECHOS HUMANOS DE DE MARZO DE CASO VALENCIA HINOJOSA Y OTRA VS. ECUADOR SUPERVISI\u00d3N DE CUMPLIMIENTO DE SENTENCIA VISTO La Sentencia de excepciones preliminares fondo reparaciones y costas en adelante la Sentencia dictada por la Corte Interamericana de Derechos Humanos en adelante la Corte Interamericana la Corte o el Tribunal el de noviembre de La Corte declar\u00f3 la responsabilidad internacional de la Rep\u00fablica del Ecuador en adelante el Estado o ", - "values": [ - "Corte Interamericana de Derechos Humanos" - ] - }, - { - "text": "RESOLUCI\u00d3N DE LA CORTE INTERAMERICANA DE DERECHOS HUMANOS DE DE MARZO DE CASO MASACRES DE R\u00cdO NEGRO VS. GUATEMALA SUPERVISI\u00d3N DE CUMPLIMIENTO DE SENTENCIA VISTO La Sentencia de excepci\u00f3n preliminar fondo reparaciones y costas en adelante la Sentencia dictada por la Corte Interamericana de Derechos Humanos en adelante la Corte Interamericana la Corte o el Tribunal el de septiembre de Tomando en cuenta el reconocimiento de responsabilidad parcial efectuado por la Rep\u00fablica de Guatemala en ", - "values": [ - "Corte Interamericana de Derechos Humanos" - ] - }, - { - "text": "INFORME N PETICI\u00d3N ADMISIBILIDAD GABRIEL OSCAR JENKINS ARGENTINA de octubre de I. RESUMEN El de septiembre de la Comisi\u00f3n Interamericana de Derechos Humanos en adelante la Comisi\u00f3n Interamericana la Comisi\u00f3n o la CIDH recibi\u00f3 una denuncia presentada por el Sr. Gabriel Oscar Jenkins en adelante el peticionario el denunciante o la v\u00edctima en contra de la Rep\u00fablica de Argentina en adelante el Estado el Gobierno o Argentina. La petici\u00f3n se relaciona con la detenci\u00f3n del peticionario su en ", - "values": [ - "Comisi\u00f3n Interamericana de Derechos Humanos" - ] - }, - { - "text": "INFORME No. CASO FONDO COMUNIDAD GAR\u00cdFUNA DE PUNTA PIEDRA Y SUS MIEMBROS HONDURAS de marzo de I. RESUMEN El de octubre de la Comisi\u00f3n Interamericana de Derechos Humanos en adelante Comisi\u00f3n Interamericana Comisi\u00f3n o CIDH recibi\u00f3 una petici\u00f3n presentada por la Organizaci\u00f3n Fraternal Negra Hondure\u00f1a en adelante peticionaria u OFRANEH contra el Estado de Honduras en adelante Estado hondure\u00f1o Honduras o Estado por la violaci\u00f3n de los art\u00edculos y de la Convenci\u00f3n Americana sobre Derechos ", - "values": [ - "Comisi\u00f3n Interamericana de Derechos Humanos" - ] - }, - { - "text": "INTER AMERICAN COMMISSION ON HUMAN RIGHTS COMISION INTERAMERICANA DE DERECHOS HUMANOS COMISS\u00c3O INTERAMERICANA DE DIREITOS HUMANOS COMMISSION INTERAM\u00c9RICAINE DES DROITS DE LHOMME ORGANIZACI\u00d3N DE LOS ESTADOS AMERICANOS WASHINGTON DC. E E U U de octubre de Ref Caso No. Comunidad Gar\u00edfuna Punta Piedra Honduras Se\u00f1or Secretario Tengo el agrado de dirigirme a usted en nombre de la Comisi\u00f3n Interamericana de Derechos Humanos con el objeto de someter a la jurisdicci\u00f3n de la Corte de Derechos ", - "values": [ - "Comisi\u00f3n Interamericana de Derechos Humanos" - ] - }, - { - "text": "INFORME No. CASO ADMISIBILIDAD Y FONDO COMUNIDAD CAMPESINA SANTA BARBARA PERU de julio de I. RESUMEN El de julio de la Comisi\u00f3n Interamericana de Derechos Humanos en adelante la Comisi\u00f3n o la CIDH recibi\u00f3 una petici\u00f3n presentada por la Centro de Estudios y Acci\u00f3n para la Paz CEAPAZ en adelante los peticionarios en la cual se alega la responsabilidad de la Rep\u00fablica del Per\u00fa en adelante el Estado o el Estado peruano por la presunta desaparici\u00f3n de personas que en su mayor\u00eda eran de ", - "values": [ - "Comisi\u00f3n Interamericana de Derechos Humanos" - ] - }, - { - "text": "INTER AMERICAN COMMISSION ON HUMAN RIGHTS COMISION INTERAMERICANA DE DERECHOS HUMANOS COMISS\u00c3O INTERAMERICANA DE DIREITOS HUMANOS COMMISSION INTERAM\u00c9RICAINE DES DROITS DE LHOMME ORGANIZACI\u00d3N DE LOS ESTADOS AMERICANOS WASHINGTON DC. E E U U de julio de Ref Caso No. Comunidad Campesina de Santa B\u00e1rbara Per\u00fa Se\u00f1or Secretario Tengo el agrado de dirigirme a usted en nombre de la Comisi\u00f3n Interamericana de Derechos Humanos con el objeto de someter a la jurisdicci\u00f3n de la Corte Interamericana", - "values": [ - "Comisi\u00f3n Interamericana de Derechos Humanos" - ] - }, - { - "text": "INTER AMERICAN COMMISSION ON HUMAN RIGHTS COMISION INTERAMERICANA DE DERECHOS HUMANOS COMISS\u00c3O INTERAMERICANA DE DIREITOS HUMANOS COMMISSION INTERAM\u00c9RICAINE DES DROITS DE LHOMME ORGANIZACI\u00d3N DE LOS ESTADOS AMERICANOS WASHINGTON DC. EEUU de febrero de Ref Caso No. Comunidad Gar\u00edfuna Triunfo de la Cruz y sus miembros Honduras Se\u00f1or Secretario Tengo el agrado de dirigirme a usted en nombre de la Comisi\u00f3n Interamericana de Derechos Humanos con el objeto de someter a la jurisdicci\u00f3n de la ", - "values": [ - "Comisi\u00f3n Interamericana de Derechos Humanos" - ] - }, - { - "text": "INFORME No. CASO FONDO ZULEMA TARAZONA ARRIETA Y OTROS REP\u00daBLICA DEL PER\u00da de noviembre de I. RESUMEN El de enero de la Asociaci\u00f3n Pro Derechos Humanos APRODEH y los se\u00f1ores V\u00edctor Tarazona Hinostroza y Santiago P\u00e9rez Vela en adelante los peticionarios presentaron una petici\u00f3n ante la Comisi\u00f3n Interamericana de Derechos Humanos en adelante la Comisi\u00f3n la Comisi\u00f3n Interamericana o CIDH en contra de la Rep\u00fablica del Per\u00fa en adelante Per\u00fa el Estado o el Estado peruano en relaci\u00f3n con el de", - "values": [ - "Comisi\u00f3n Interamericana de Derechos Humanos" - ] - }, - { - "text": "INTER AMERICAN COMMISSION ON HUMAN RIGHTS COMISION INTERAMERICANA DE DERECHOS HUMANOS COMISS\u00c3O INTERAMERICANA DE DIREITOS HUMANOS COMMISSION INTERAM\u00c9RICAINE DES DROITS DE LHOMME ORGANIZACI\u00d3N DE LOS ESTADOS AMERICANOS WASHINGTON DC. EEUU de junio de Ref Caso No. Tarazona Arrieta y otros Per\u00fa Se\u00f1or Secretario Tengo el agrado de dirigirme a usted en nombre de la Comisi\u00f3n Interamericana de Derechos Humanos con el objeto de someter a la jurisdicci\u00f3n de la Honorable Corte Interamericana de ", - "values": [ - "Comisi\u00f3n Interamericana de Derechos Humanos" - ] - }, - { - "text": "INTER AMERICAN COMMISSION ON HUMAN RIGHTS COMISION INTERAMERICANA DE DERECHOS HUMANOS COMISS\u00c3O INTERAMERICANA DE DIREITOS HUMANOS COMMISSION INTERAM\u00c9RICAINE DES DROITS DE LHOMME ORGANIZACI\u00d3N DE LOS ESTADOS AMERICANOS WASHINGTON DC. EEUU de marzo de Ref Caso No. Rochac Hern\u00e1ndez y otros El Salvador Se\u00f1or Secretario Tengo el agrado de dirigirme a usted en nombre de la Comisi\u00f3n Interamericana de Derechos Humanos con el objeto de someter a la jurisdicci\u00f3n de la Honorable Corte de Derechos", - "values": [ - "Comisi\u00f3n Interamericana de Derechos Humanos" - ] - }, - { - "text": "INFORME No. CASOS FONDO ROCHAC HERN\u00c1NDEZ Y OTROS EL SALVADOR de noviembre de I. RESUMEN El de septiembre de la Comisi\u00f3n Interamericana de Derechos Humanos en adelante la Comisi\u00f3n Interamericana la Comisi\u00f3n o la CIDH recibi\u00f3 tres denuncias presentadas por la Asociaci\u00f3n ProB\u00fasqueda de Ni\u00f1as y Ni\u00f1os Desaparecidos Asociaci\u00f3n Pro B\u00fasqueda a favor del ni\u00f1o Jos\u00e9 Adri\u00e1n Rochac Hern\u00e1ndez P de la ni\u00f1a Emelinda Lorena Hern\u00e1ndez P y del ni\u00f1o Santos Ernesto Salinas P El de diciembre de se ", - "values": [ - "Comisi\u00f3n Interamericana de Derechos Humanos" - ] - }, - { - "text": "INTER AMERICAN COMMISSION ON HUMAN RIGHTS COMISION INTERAMERICANA DE DERECHOS HUMANOS COMISS\u00c3O INTERAMERICANA DE DIREITOS HUMANOS COMMISSION INTERAM\u00c9RICAINE DES DROITS DE LHOMME ORGANIZACI\u00d3N DE LOS ESTADOS AMERICANOS WASHINGTON DC. EEUU de marzo de Ref Caso No. Juan Garc\u00eda Cruz y Santiago S\u00e1nchez Silvestre M\u00e9xico Se\u00f1or Secretario Tengo el agrado de dirigirme a usted en nombre de la Comisi\u00f3n Interamericana de Derechos Humanos con el objeto de someter a la jurisdicci\u00f3n de la Honorable ", - "values": [ - "Comisi\u00f3n Interamericana de Derechos Humanos" - ] - }, - { - "text": " INFORME No. CASO JUAN GARC\u00cdA CRUZ Y SANTIAGO S\u00c1NCHEZ SILVESTRE FONDO M\u00c9XICO de octubre de I. RESUMEN El de mayo de la Comisi\u00f3n Interamericana de Derechos Humanos en adelante Comisi\u00f3n Interamericana Comisi\u00f3n o CIDH recibi\u00f3 una denuncia presentada por Servicios Legales e Investigaci\u00f3n y Estudios Jur\u00eddicos SLIEJ y el Centro por la Justicia y el Derecho Internacional CEJIL en adelante peticionarios En la denuncia se alega la responsabilidad internacional del Estado de M\u00e9xico en adelante ", - "values": [ - "Comisi\u00f3n Interamericana de Derechos Humanos" - ] - }, - { - "text": "INTER AMERICAN COMMISSION ON HUMAN RIGHTS COMISION INTERAMERICANA DE DERECHOS HUMANOS COMISS\u00c3O INTERAMERICANA DE DIREITOS HUMANOS COMMISSION INTERAM\u00c9RICAINE DES DROITS DE LHOMME ORGANIZACI\u00d3N DE LOS ESTADOS AMERICANOS WASHINGTON DC. EEUU de febrero de Ref Caso No. Marcel Granier y otros Radio Caracas Televisi\u00f3n Venezuela Se\u00f1or Secretario Tengo el agrado de dirigirme a usted en nombre de la Comisi\u00f3n Interamericana de Derechos Humanos con el objeto de someter a la jurisdicci\u00f3n de la de", - "values": [ - "Comisi\u00f3n Interamericana de Derechos Humanos" - ] - }, - { - "text": "INFORME No. CASO FONDO MARCEL GRANIER Y OTROS VENEZUELA de noviembre de I. RESUMEN El de marzo de la Comisi\u00f3n Interamericana de Derechos Humanos en adelante la Comisi\u00f3n o la CIDH recibi\u00f3 una petici\u00f3n presentada por Carlos Ayala Corao y Pedro Nikken en adelante los peticionarios en la cual alegaron la responsabilidad de la Rep\u00fablica Bolivariana de Venezuela en adelante el Estado o el Estado venezolano por las violaciones de derechos humanos en perjuicio del se\u00f1or Marcel Granier y otros ", - "values": [ - "Comisi\u00f3n Interamericana de Derechos Humanos" - ] - }, - { - "text": "INTER AMERICAN COMMISSION ON HUMAN RIGHTS COMISION INTERAMERICANA DE DERECHOS HUMANOS COMISS\u00c3O INTERAMERICANA DE DIREITOS HUMANOS COMMISSION INTERAM\u00c9RICAINE DES DROITS DE LHOMME ORGANIZACI\u00d3N DE LOS ESTADOS AMERICANOS WASHINGTON DC. EEUU de febrero de Ref Caso No. Pueblos ind\u00edgenas Kuna de Madungand\u00ed y Ember\u00e1 de Bayano y sus miembros Panam\u00e1 Se\u00f1or Secretario Tengo el agrado de dirigirme a usted en nombre de la Comisi\u00f3n Interamericana de Derechos Humanos con el objeto de someter a la de ", - "values": [ - "Comisi\u00f3n Interamericana de Derechos Humanos" - ] - }, - { - "text": "INFORME No. CASO FONDO PUEBLOS IND\u00cdGENAS KUNA DE MADUNGANDI Y EMBERA DE BAYANO Y SUS MIEMBROS PANAM\u00c1 de noviembre de I. RESUMEN El de mayo de la Comisi\u00f3n Interamericana de Derechos Humanos en adelante la Comisi\u00f3n Interamericana la Comisi\u00f3n o la CIDH recibi\u00f3 una petici\u00f3n presentada por International Human Rights Law Clinic of the Washington College of Law el Centro de Asistencia Legal Popular CEALP la Asociaci\u00f3n Napguana y Emily Yozell en adelante los peticionarios en favor de los ", - "values": [ - "Comisi\u00f3n Interamericana de Derechos Humanos" - ] - }, - { - "text": "INTER AMERICAN COMMISSION ON HUMAN RIGHTS COMISION INTERAMERICANA DE DERECHOS HUMANOS COMISS\u00c3O INTERAMERICANA DE DIREITOS HUMANOS COMMISSION INTERAM\u00c9RICAINE DES DROITS DE LHOMME ORGANIZACI\u00d3N DE LOS ESTADOS AMERICANOS WASHINGTON DC. E E U U de octubre de Ref Caso No. Comunidad Gar\u00edfuna Punta Piedra Honduras Se\u00f1or Secretario Tengo el agrado de dirigirme a usted en nombre de la Comisi\u00f3n Interamericana de Derechos Humanos con el objeto de someter a la jurisdicci\u00f3n de la Corte de Derechos ", - "values": [ - "Comisi\u00f3n Interamericana de Derechos Humanos" - ] - }, - { - "text": "INFORME No. CASO FONDO COMUNIDAD GAR\u00cdFUNA TRIUNFO DE LA CRUZ Y SUS MIEMBROS HONDURAS de noviembre de I. RESUMEN El de octubre de la Comisi\u00f3n Interamericana de Derechos Humanos en adelante Comisi\u00f3n Interamericana Comisi\u00f3n o CIDH recibi\u00f3 una petici\u00f3n presentada por la Organizaci\u00f3n Fraternal Negra Hondure\u00f1a en adelante peticionaria u OFRANEH contra el Estado de Honduras en adelante Estado hondure\u00f1o Honduras o Estado por la violaci\u00f3n de los art\u00edculos y de la Convenci\u00f3n Americana sobre ", - "values": [ - "Comisi\u00f3n Interamericana de Derechos Humanos" - ] - }, - { - "text": "RESOLUCI\u00d3N DEL PRESIDENTE DE LA CORTE INTERAMERICANA DE DERECHOS HUMANOS DE DE ABRIL DE CASO VILLASE\u00d1OR Y OTROS VS GUATEMALA CONVOCATORIA A AUDIENCIA VISTO El escrito de sometimiento del caso y el Informe de Fondo de la Comisi\u00f3n Interamericana de Derechos Humanos en adelante la Comisi\u00f3n Interamericana o la Comisi\u00f3n el escrito de solicitudes argumentos y pruebas en adelante el escrito de solicitudes y argumentos de los representantes de las presuntas v\u00edctimas en adelante los representantes y", - "values": [ - "Corte Interamericana de Derechos Humanos" - ] - }, - { - "text": "RESOLUCI\u00d3N DEL PRESIDENTE DE LA CORTE INTERAMERICANA DE DERECHOS HUMANOS DE DE ABRIL DE CASO MUN\u00c1RRIZ ESCOBAR Y OTROS VS. PER\u00da VISTO El escrito de sometimiento del caso y el Informe de Fondo de la Comisi\u00f3n Interamericana de Derechos Humanos en adelante la Comisi\u00f3n Interamericana o la Comisi\u00f3n el escrito de solicitudes argumentos y pruebas en adelante el escrito de solicitudes y argumentos de los representantes de las presuntas v\u00edctimas en adelante los representantes el escrito de al del y", - "values": [ - "Corte Interamericana de Derechos Humanos" - ] - }, - { - "text": "RESOLUCI\u00d3N DE LA CORTE INTERAMERICANA DE DERECHOS HUMANOS DE DE ABRIL DE RECONSIDERACI\u00d3N DE CONVOCATORIA CASO ALVARADO ESPINOZA Y OTROS VS. MEXICO VISTO La Resoluci\u00f3n del Presidente en Ejercicio de la Corte Interamericana de Derechos Humanos en adelante la Corte o el Tribunal de de marzo de en adelante la Resoluci\u00f3n del Presidente mediante la cual inter alia orden\u00f3 la recepci\u00f3n de diversas declaraciones de presuntas v\u00edctimas testigos y peritos en audiencia y a trav\u00e9s de affid\u00e1vit rechaz\u00f3 ", - "values": [ - "Corte Interamericana de Derechos Humanos" - ] - }, - { - "text": "INTER AMERICAN COMMISSION ON HUMAN RIGHTS COMISION INTERAMERICANA DE DERECHOS HUMANOS COMISS\u00c3O INTERAMERICANA DE DIREITOS HUMANOS COMMISSION INTERAM\u00c9RICAINE DES DROITS DE LHOMME ORGANIZACI\u00d3N DE LOS ESTADOS AMERICANOS WASHINGTON DC. EEUU de enero de Ref Caso No. A J. Per\u00fa Se\u00f1or Secretario Tengo el agrado de dirigirme a usted en nombre de la Comisi\u00f3n Interamericana de Derechos Humanos con el objeto de someter a la jurisdicci\u00f3n de la Honorable Corte Interamericana de Derechos Humanos el ", - "values": [ - "Comisi\u00f3n Interamericana de Derechos Humanos" - ] - }, - { - "text": "INFORME No. CASO A FONDO J. PER\u00da de julio de I. RESUMEN El de junio de la Comisi\u00f3n Interamericana de Derechos Humanos en adelante la Comisi\u00f3n Interamericana la Comisi\u00f3n o la CIDH recibi\u00f3 una denuncia presentada por el se\u00f1or Curtis Francis Doebbler a favor de la se\u00f1ora J. en adelante la peticionaria la presunta v\u00edctima o la se\u00f1ora J alegando la violaci\u00f3n de varias disposiciones de la Convenci\u00f3n Americana sobre Derechos Humanos en adelante la Convenci\u00f3n Americana la Convenci\u00f3n o la CADH ", - "values": [ - "Comisi\u00f3n Interamericana de Derechos Humanos" - ] - }, - { - "text": "INTER AMERICAN COMMISSION ON HUMAN RIGHTS COMISION INTERAMERICANA DE DERECHOS HUMANOS COMISS\u00c3O INTERAMERICANA DE DIREITOS HUMANOS COMMISSION INTERAM\u00c9RICAINE DES DROITS DE LHOMME ORGANIZACI\u00d3N DE LOS ESTADOS AMERICANOS WASHINGTON DC. E E U U de mayo de Ref Caso No. Mar\u00eda Isabel V\u00e9liz Franco y otros Guatemala Se\u00f1or Secretario Tengo el agrado de dirigirme a usted en nombre de la Comisi\u00f3n Interamericana de Derechos Humanos con el objeto de someter a la jurisdicci\u00f3n de la Corte de Derechos ", - "values": [ - "Comisi\u00f3n Interamericana de Derechos Humanos" - ] - }, - { - "text": "INFORME No. CASO MAR\u00cdA ISABEL V\u00c9LIZ FRANCO Y OTROS FONDO GUATEMALA de noviembre de I. RESUMEN El de enero de la Comisi\u00f3n Interamericana de Derechos Humanos en lo sucesivo Comisi\u00f3n Interamericana Comisi\u00f3n o CIDH recibi\u00f3 una petici\u00f3n presentada por Rosa Elvira Franco Sandoval de V\u00e9liz madre de la presunta v\u00edctima el Centro por la Justicia y el Derecho internacional CEJIL y la Red de No Violencia Contra las Mujeres en Guatemala en lo sucesivo los peticionarios en la que se alega la del ", - "values": [ - "Comisi\u00f3n Interamericana de Derechos Humanos" - ] - }, - { - "text": "INTER AMERICAN COMMISSION ON HUMAN RIGHTS COMISION INTERAMERICANA DE DERECHOS HUMANOS COMISS\u00c3O INTERAMERICANA DE DIREITOS HUMANOS COMMISSION INTERAM\u00c9RICAINE DES DROITS DE LHOMME ORGANIZACI\u00d3N DE LOS ESTADOS AMERICANOS WASHINGTON DC. EEUU de marzo de Ref Caso No. Allan R. Brewer Car\u00edas Venezuela Se\u00f1or Secretario Tengo el agrado de dirigirme a usted en nombre de la Comisi\u00f3n Interamericana de Derechos Humanos con el objeto de someter a la jurisdicci\u00f3n de la Honorable Corte Interamericana ", - "values": [ - "Comisi\u00f3n Interamericana de Derechos Humanos" - ] - }, - { - "text": " INFORME No. CASO FONDO ALLAN R. BREWER CAR\u00cdAS VENEZUELA de noviembre de I. RESUMEN El de enero de la Comisi\u00f3n Interamericana de Derechos Humanos en adelante tambi\u00e9n la Comisi\u00f3n o la CIDH recibi\u00f3 una petici\u00f3n presentada por Pedro Nikken H\u00e9lio Bicudo Claudio Grossman Juan E. M\u00e9ndez Douglass Cassel y H\u00e9ctor Fa\u00fandez Ledesma en adelante los peticionarios en la cual se alega que la Rep\u00fablica Bolivariana de Venezuela en adelante el Estado es responsable por la persecuci\u00f3n pol\u00edtica del abogado ", - "values": [ - "Comisi\u00f3n Interamericana de Derechos Humanos" - ] - }, - { - "text": "INFORME No. CASO FONDO FAMILIA PACHECO TINEO BOLIVIA de octubre de I. RESUMEN El de abril de la Comisi\u00f3n Interamericana de Derechos Humanos en adelante la Comisi\u00f3n Interamericana la Comisi\u00f3n o la CIDH recibi\u00f3 una denuncia presentada por el se\u00f1or Rumaldo Juan Pacheco Osco en nombre suyo de su esposa Fredesvinda Tineo Godos y de los hijos de ambos Frida Edith Juana Guadalupe y Juan Ricardo Pacheco Tineo todos ni\u00f1os en adelante los peticionarios alegando la violaci\u00f3n de la Convenci\u00f3n sobre", - "values": [ - "Comisi\u00f3n Interamericana de Derechos Humanos" - ] - }, - { - "text": "INTER AMERICAN COMMISSION ON HUMAN RIGHTS COMISION INTERAMERICANA DE DERECHOS HUMANOS COMISS\u00c3O INTERAMERICANA DE DIREITOS HUMANOS COMMISSION INTERAM\u00c9RICAINE DES DROITS DE LHOMME ORGANIZACI\u00d3N DE LOS ESTADOS AMERICANOS WASHINGTON DC. EEUU de febrero de Ref Caso No. Familia Pacheco Tineo Bolivia Se\u00f1or Secretario Tengo el agrado de dirigirme a usted en nombre de la Comisi\u00f3n Interamericana de Derechos Humanos con el objeto de someter a la jurisdicci\u00f3n de la Honorable Corte Interamericana de", - "values": [ - "Comisi\u00f3n Interamericana de Derechos Humanos" - ] - }, - { - "text": "VOTO DISIDENTE DEL JUEZ EDUARDO VIO GROSSI RESOLUCI\u00d3N DE LA CORTE INTERAMERICANA DE DERECHOS HUMANOS DE DE FEBRERO DE MEDIDAS PROVISIONALES RESPECTO DEL PER\u00da CASO DURAND Y UGARTE VS. PER\u00da. INTRODUCCI\u00d3N. Objeto. Las razones por las que se emite el presente voto disidente a la Resoluci\u00f3n del ep\u00edgrafe se formulan teniendo muy presente la importancia y respeto que para una instancia como la Corte Interamericana de Derechos Humanos revisten y deben tener la independencia y la imparcialidad ", - "values": [ - "Corte Interamericana de Derechos Humanos" - ] - }, - { - "text": "RESOLUCI\u00d3N DE LA CORTE INTERAMERICANA DE DERECHOS HUMANOS DE DE FEBRERO DE MEDIDAS PROVISIONALES RESPECTO DEL PER\u00da CASO DURAND Y UGARTE VS. PER\u00da VISTO La Sentencia de fondo de de agosto de en adelante la Sentencia mediante la cual la Corte Interamericana de Derechos Humanos en adelante tambi\u00e9n la Corte Interamericana o el Tribunal declar\u00f3 responsable internacionalmente a la Rep\u00fablica del Per\u00fa en adelante el Estado o Per\u00fa por la violaci\u00f3n del derecho a la vida de los se\u00f1ores Nolberto y ", - "values": [ - "Corte Interamericana de Derechos Humanos" - ] - }, - { - "text": "RESOLUCI\u00d3N DE LA CORTE INTERAMERICANA DE DERECHOS HUMANOS DE DE FEBRERO DE CASO RUANO TORRES Y OTROS VS. EL SALVADOR SUPERVISI\u00d3N DE CUMPLIMIENTO DE SENTENCIA VISTO La Sentencia de fondo reparaciones y costas dictada por la Corte Interamericana de Derechos Humanos en adelante la Corte la Corte Interamericana o el Tribunal el de octubre de En dicha Sentencia la Corte tomando en cuenta el reconocimiento de responsabilidad internacional realizado por el Estado de El Salvador en adelante el o", - "values": [ - "Corte Interamericana de Derechos Humanos" - ] - }, - { - "text": "CORTE INTERAMERICANA DE DERECHOS HUMANOS CASO PUEBLO IND\u00cdGENA XUCURU Y SUS MIEMBROS VS. BRASIL SENTENCIA DE DE FEBRERO DE Excepciones Preliminares Fondo Reparaciones y Costas En el caso Pueblo Ind\u00edgena Xucuru y sus miembros la Corte Interamericana de Derechos Humanos en adelante la Corte Interamericana la Corte o el Tribunal integrada por los siguientes Jueces Eduardo Ferrer MacGregor Poisot Presidente Eduardo Vio Grossi Vicepresidente Humberto Antonio Sierra Porto Juez Elizabeth Odio ", - "values": [ - "Corte Interamericana de Derechos Humanos" - ] - }, - { - "text": "CORTE INTERAMERICANA DE DERECHOS HUMANOS CASO RAM\u00cdREZ ESCOBAR Y OTROS VS. GUATEMALA SENTENCIA DE DE MARZO DE Fondo Reparaciones y Costas En el caso Ram\u00edrez Escobar y otros la Corte Interamericana de Derechos Humanos en adelante la Corte Interamericana la Corte o este Tribunal integrada por los siguientes Jueces Eduardo Ferrer MacGregor Poisot Presidente Humberto Antonio Sierra Porto Juez Elizabeth Odio Benito Jueza Eugenio Ra\u00fal Zaffaroni Juez y L. Patricio Pazmi\u00f1o Freire Juez presentes adem\u00e1s", - "values": [ - "Corte Interamericana de Derechos Humanos" - ] - }, - { - "text": "CORTE INTERAMERICANA DE DERECHOS HUMANOS CASO VRP VPC Y OTROS VS. NICARAGUA SENTENCIA DE DE MARZO DE Excepciones Preliminares Fondo Reparaciones y Costas En el caso VRP VPC. y otros la Corte Interamericana de Derechos Humanos en adelante la Corte Interamericana la Corte o este Tribunal integrada por los siguientes jueces Eduardo Ferrer MacGregor Poisot Presidente Humberto Antonio Sierra Porto Juez Elizabeth Odio Benito Jueza Eugenio Ra\u00fal Zaffaroni Juez y L. Patricio Pazmi\u00f1o Freire Juez ", - "values": [ - "Corte Interamericana de Derechos Humanos" - ] - }, - { - "text": "INFORME No. CASO FONDO EDUARDO NICOL\u00c1S CRUZ S\u00c1NCHEZ Y OTROS PER\u00da de marzo de I. RESUMEN El de febrero de la Comisi\u00f3n Interamericana de Derechos Humanos en adelante la Comisi\u00f3n Interamericana la Comisi\u00f3n o la CIDH recibi\u00f3 una denuncia presentada por Juan Miguel Jugo Viera en representaci\u00f3n de la Asociaci\u00f3n Pro Derechos Humanos APRODEH Edgar Cruz Acu\u00f1a y Herma Luz Cueva Torres mediante la cual se aleg\u00f3 la responsabilidad del Estado del Per\u00fa en adelante Per\u00fa el Estado o el Estado peruano. ", - "values": [ - "Comisi\u00f3n Interamericana de Derechos Humanos" - ] - }, - { - "text": "INTER AMERICAN COMMISSION ON HUMAN RIGHTS COMISION INTERAMERICANA DE DERECHOS HUMANOS COMISS\u00c3O INTERAMERICANA DE DIREITOS HUMANOS COMMISSION INTERAM\u00c9RICAINE DES DROITS DE LHOMME ORGANIZACI\u00d3N DE LOS ESTADOS AMERICANOS WASHINGTON DC. E E U U de diciembre de Ref Caso No. Eduardo Nicol\u00e1s Cruz S\u00e1nchez y otros Per\u00fa Se\u00f1or Secretario Tengo el agrado de dirigirme a usted en nombre de la Comisi\u00f3n Interamericana de Derechos Humanos con el objeto de someter a la jurisdicci\u00f3n de la Corte de el ", - "values": [ - "Comisi\u00f3n Interamericana de Derechos Humanos" - ] - }, - { - "text": "INTER AMERICAN COMMISSION ON HUMAN RIGHTS COMISION INTERAMERICANA DE DERECHOS HUMANOS COMISS\u00c3O INTERAMERICANA DE DIREITOS HUMANOS COMMISSION INTERAM\u00c9RICAINE DES DROITS DE LHOMME ORGANIZACI\u00d3N DE LOS ESTADOS AMERICANOS WASHINGTON DC. E E U U de diciembre de Ref Caso No. Gladys Carol Espinoza Gonz\u00e1les Per\u00fa Se\u00f1or Secretario Tengo el agrado de dirigirme a usted en nombre de la Comisi\u00f3n Interamericana de Derechos Humanos con el objeto de someter a la jurisdicci\u00f3n de la Corte Interamericana ", - "values": [ - "Comisi\u00f3n Interamericana de Derechos Humanos" - ] - }, - { - "text": "INFORME No. CASO ADMISIBILIDAD Y FONDO GLADYS CAROL ESPINOZA GONZALES PER\u00da de marzo de I. RESUMEN El de mayo de la Comisi\u00f3n Interamericana de Derechos Humanos en adelante la Comisi\u00f3n Interamericana la Comisi\u00f3n o la CIDH recibi\u00f3 una denuncia presentada por la Asociaci\u00f3n Pro Derechos Humanos APRODEH la se\u00f1ora Teodora Gonzales Vda. de Espinoza y el Centro por la Justicia y el Derecho Internacional CEJIL en adelante los peticionarios en representaci\u00f3n de Gladys Carol Espinoza Gonzales en", - "values": [ - "Comisi\u00f3n Interamericana de Derechos Humanos" - ] - }, - { - "text": "INTER AMERICAN COMMISSION ON HUMAN RIGHTS COMISION INTERAMERICANA DE DERECHOS HUMANOS COMISS\u00c3O INTERAMERICANA DE DIREITOS HUMANOS COMMISSION INTERAM\u00c9RICAINE DES DROITS DE LHOMME ORGANIZACI\u00d3N DE LOS ESTADOS AMERICANOS WASHINGTON DC. EEUU de julio de Ref Caso No. Gretel Artavia Murillo y otros Fecundaci\u00f3n in Vitro Costa Rica Se\u00f1or Secretario Tengo el agrado de dirigirme a usted en nombre de la Comisi\u00f3n Interamericana de Derechos Humanos con el objeto de someter a la jurisdicci\u00f3n de la ", - "values": [ - "Comisi\u00f3n Interamericana de Derechos Humanos" - ] - }, - { - "text": "INFORME No. CASO FONDO GRETEL ARTAVIA MURILLO y OTROS FECUNDACI\u00d3N IN VITRO COSTA RICA de julio de I. RESUMEN El de enero de la Comisi\u00f3n Interamericana de Derechos Humanos en adelante la Comisi\u00f3n Interamericana la Comisi\u00f3n o la CIDH recibi\u00f3 una petici\u00f3n presentada por el Sr. Gerardo Trejos Salas en adelante el peticionario contra la Rep\u00fablica de Costa Rica en adelante el Estado Costa Rica el Estado costarricense o el Estado de Costa Rica en la que se alega su responsabilidad internacional", - "values": [ - "Comisi\u00f3n Interamericana de Derechos Humanos" - ] - }, - { - "text": "INTER AMERICAN COMMISSION ON HUMAN RIGHTS COMISION INTERAMERICANA DE DERECHOS HUMANOS COMISS\u00c3O INTERAMERICANA DE DIREITOS HUMANOS COMMISSION INTERAM\u00c9RICAINE DES DROITS DE LHOMME ORGANIZACI\u00d3N DE LOS ESTADOS AMERICANOS WASHINGTON DC. E E U U de julio de Ref Caso No. Marino L\u00f3pez y Otros Operaci\u00f3n G\u00e9nesis Colombia Se\u00f1or Secretario Tengo el agrado de dirigirme a usted en nombre de la Comisi\u00f3n Interamericana de Derechos Humanos con el objeto de someter a la jurisdicci\u00f3n de la Honorable ", - "values": [ - "Comisi\u00f3n Interamericana de Derechos Humanos" - ] - }, - { - "text": " INFORME No. CASO FONDO MARINO L\u00d3PEZ Y OTROS OPERACI\u00d3N G\u00c9NESIS COLOMBIA de marzo de I. RESUMEN El de junio de la Comisi\u00f3n Interamericana de Derechos Humanos en adelante la CIDH o la Comisi\u00f3n recibi\u00f3 una petici\u00f3n presentada por la Comisi\u00f3n Intereclesial de Justicia y Paz en adelante los peticionarios en la cual se alega que la Rep\u00fablica de Colombia en adelante el Estado o el Estado colombiano es responsable por las violaciones de derechos humanos cometidas en relaci\u00f3n a la Operaci\u00f3n el ", - "values": [ - "Comisi\u00f3n Interamericana de Derechos Humanos" - ] - }, - { - "text": "INTER AMERICAN COMMISSION ON HUMAN RIGHTS COMISION INTERAMERICANA DE DERECHOS HUMANOS COMISS\u00c3O INTERAMERICANA DE DIREITOS HUMANOS COMMISSION INTERAM\u00c9RICAINE DES DROITS DE LHOMME ORGANIZACI\u00d3N DE LOS ESTADOS AMERICANOS WASHINGTON DC. EEUU de julio de Ref Caso No. Masacre de Santo Domingo Colombia Se\u00f1or Secretario Tengo el agrado de dirigirme a usted en nombre de la Comisi\u00f3n Interamericana de Derechos Humanos con el objeto de someter a la jurisdicci\u00f3n de la Honorable Corte Interamericana ", - "values": [ - "Comisi\u00f3n Interamericana de Derechos Humanos" - ] - }, - { - "text": "INFORME N CASO FONDO MASACRE DE SANTO DOMINGO COLOMBIA de marzo de I. RESUMEN El de abril de la Comisi\u00f3n Interamericana de Derechos Humanos en adelante la Comisi\u00f3n o la CIDH recibi\u00f3 una petici\u00f3n presentada por la Comisi\u00f3n Interfranciscana de Justicia Paz y Reverencia con la Creaci\u00f3n el Comit\u00e9 Regional de Derechos Humanos Joel Sierra el Colectivo de Abogados Jos\u00e9 Alvear Restrepo Humanidad Vigente Corporaci\u00f3n Jur\u00eddica y el Center for International Human Rights of Northwestern University ", - "values": [ - "Comisi\u00f3n Interamericana de Derechos Humanos" - ] - }, - { - "text": "no text", - "values": [ - "Comisi\u00f3n Interamericana de Derechos Humanos" - ] - }, - { - "text": "no text", - "values": [ - "Comisi\u00f3n Interamericana de Derechos Humanos" - ] - }, - { - "text": "no text", - "values": [ - "Comisi\u00f3n Interamericana de Derechos Humanos" - ] - }, - { - "text": "INTER AMERICAN COMMISSION ON HUMAN RIGHTS COMISION INTERAMERICANA DE DERECHOS HUMANOS COMISS\u00c3O INTERAMERICANA DE DIREITOS HUMANOS COMMISSION INTERAM\u00c9RICAINE DES DROITS DE LHOMME ORGANIZACI\u00d3N DE LOS ESTADOS AMERICANOS WASHINGTON DC. EEUU de noviembre de Ref Caso No. Miguel Camba Campos y otros Vocales del Tribunal Constitucional Ecuador Se\u00f1or Secretario Tengo el agrado de dirigirme a usted en nombre de la Comisi\u00f3n Interamericana de Derechos Humanos con el objeto de someter a la de la ", - "values": [ - "Comisi\u00f3n Interamericana de Derechos Humanos" - ] - }, - { - "text": "INTER AMERICAN COMMISSION ON HUMAN RIGHTS COMISION INTERAMERICANA DE DERECHOS HUMANOS COMISS\u00c3O INTERAMERICANA DE DIREITOS HUMANOS COMMISSION INTERAM\u00c9RICAINE DES DROITS DE LHOMME ORGANIZACI\u00d3N DE LOS ESTADOS AMERICANOS WASHINGTON DC. EEUU de agosto de Ref Caso No. Hugo Quintana Coello y otros Corte Suprema de Justicia Ecuador Se\u00f1or Secretario Tengo el agrado de dirigirme a usted en nombre de la Comisi\u00f3n Interamericana de Derechos Humanos con el objeto de someter a la jurisdicci\u00f3n de la ", - "values": [ - "Comisi\u00f3n Interamericana de Derechos Humanos" - ] - }, - { - "text": "INTER AMERICAN COMMISSION ON HUMAN RIGHTS COMISION INTERAMERICANA DE DERECHOS HUMANOS COMISS\u00c3O INTERAMERICANA DE DIREITOS HUMANOS COMMISSION INTERAM\u00c9RICAINE DES DROITS DE LHOMME ORGANIZACI\u00d3N DE LOS ESTADOS AMERICANOS WASHINGTON DC. EEUU de febrero de Ref Caso No. Marco Bienvenido Palma Mendoza y otros Ecuador Se\u00f1or Secretario Tengo el agrado de dirigirme a usted en nombre de la Comisi\u00f3n Interamericana de Derechos Humanos con el objeto de someter a la jurisdicci\u00f3n de la Honorable Corte ", - "values": [ - "Comisi\u00f3n Interamericana de Derechos Humanos" - ] - }, - { - "text": " INFORME No. CASO ADMISIBILIDAD Y FONDO MARCO BIENVENIDO PALMA MENDOZA Y OTROS ECUADOR de octubre de I. RESUMEN El de septiembre de la Comisi\u00f3n Interamericana de Derechos Humanos en adelante la Comisi\u00f3n o la CIDH recibi\u00f3 una petici\u00f3n presentada por la Comisi\u00f3n Ecum\u00e9nica de Derechos Humanos CEDHU en adelante los peticionarios en la cual se alega la responsabilidad de la Rep\u00fablica de Ecuador en adelante el Estado o el Estado ecuatoriano por la falta de una debida diligencia en la y de ", - "values": [ - "Comisi\u00f3n Interamericana de Derechos Humanos" - ] - }, - { - "text": "INFORME No. CASO FONDO HUGO QUINTANA COELLO Y OTROS MAGISTRADOS DE LA CORTE SUPREMA DE JUSTICIA ECUADOR de marzo de I. RESUMEN El de diciembre de la Comisi\u00f3n Interamericana de Derechos Humanos en adelante la Comisi\u00f3n Interamericana la Comisi\u00f3n o la CIDH recibi\u00f3 una denuncia presentada por Hugo Quintana Coello y otros ex magistrados de la Corte Suprema de Justicia de Ecuador por la violaci\u00f3n de varias disposiciones de la Convenci\u00f3n Americana sobre Derechos Humanos en adelante la la o ", - "values": [ - "Comisi\u00f3n Interamericana de Derechos Humanos" - ] - }, - { - "text": "INTER AMERICAN COMMISSION ON HUMAN RIGHTS COMISION INTERAMERICANA DE DERECHOS HUMANOS COMISS\u00c3O INTERAMERICANA DE DIREITOS HUMANOS COMMISSION INTERAM\u00c9RICAINE DES DROITS DE LHOMME ORGANIZACI\u00d3N DE LOS ESTADOS AMERICANOS WASHINGTON DC. EEUU de diciembre de Ref Caso No. Carlos y Pablo Carlos M\u00e9moli Argentina Se\u00f1or Secretario Tengo el agrado de dirigirme a usted en nombre de la Comisi\u00f3n Interamericana de Derechos Humanos con el objeto de someter a la jurisdicci\u00f3n de la Honorable Corte de ", - "values": [ - "Comisi\u00f3n Interamericana de Derechos Humanos" - ] - }, - { - "text": "no text", - "values": [ - "Comisi\u00f3n Interamericana de Derechos Humanos" - ] - }, - { - "text": "INTER AMERICAN COMMISSION ON HUMAN RIGHTS COMISION INTERAMERICANA DE DERECHOS HUMANOS COMISS\u00c3O INTERAMERICANA DE DIREITOS HUMANOS COMMISSION INTERAM\u00c9RICAINE DES DROITS DE LHOMME ORGANIZACI\u00d3N DE LOS ESTADOS AMERICANOS WASHINGTON DC. E E U U de agosto de Ref Caso No. Jorge Omar Guti\u00e9rrez y familia Argentina Se\u00f1or Secretario Tengo el agrado de dirigirme a usted en nombre de la Comisi\u00f3n Interamericana de Derechos Humanos con el objeto de someter a la jurisdicci\u00f3n de la Corte Interamericana", - "values": [ - "Comisi\u00f3n Interamericana de Derechos Humanos" - ] - }, - { - "text": "INFORME No. CASO FONDO JORGE OMAR GUTI\u00c9RREZ Y FAMILIA ARGENTINA de marzo de I. RESUMEN El de mayo de la Comisi\u00f3n Interamericana de Derechos Humanos en adelante la Comisi\u00f3n Interamericana la Comisi\u00f3n o la CIDH recibi\u00f3 una petici\u00f3n presentada por el Centro de Estudios Legales y Sociales CELS que fue ampliada el de octubre del mismo a\u00f1o por el CELS el Centro por la Justicia y el Derecho Internacional CEJIL y los se\u00f1ores Nilda Maldonado y Francisco Guti\u00e9rrez todos ellos en adelante los en ", - "values": [ - "Comisi\u00f3n Interamericana de Derechos Humanos" - ] - }, - { - "text": "INTER AMERICAN COMMISSION ON HUMAN RIGHTS COMISION INTERAMERICANA DE DERECHOS HUMANOS COMISS\u00c3O INTERAMERICANA DE DIREITOS HUMANOS COMMISSION INTERAM\u00c9RICAINE DES DROITS DE LHOMME ORGANIZACI\u00d3N DE LOS ESTADOS AMERICANOS WASHINGTON DC. EEUU de junio de Ref Caso No. C\u00e9sar Alberto Mendoza y otros Prisi\u00f3n y reclusi\u00f3n perpetuas de adolescentes Argentina Se\u00f1or Secretario Tengo el agrado de dirigirme a usted en nombre de la Comisi\u00f3n Interamericana de Derechos Humanos con el objeto de someter a ", - "values": [ - "Comisi\u00f3n Interamericana de Derechos Humanos" - ] - }, - { - "text": "INFORME No. CASO C\u00c9SAR ALBERTO MENDOZA Y OTROS Prisi\u00f3n y reclusi\u00f3n perpetuas de adolescentes FONDO ARGENTINA de noviembre de I. RESUMEN La Comisi\u00f3n Interamericana de Derechos Humanos en adelante la Comisi\u00f3n Interamericana la Comisi\u00f3n o la CIDH abri\u00f3 a tr\u00e1mite una petici\u00f3n tras recibir una serie de denuncias presentadas entre el de abril de y el de diciembre de en favor de Guillermo Antonio \u00c1lvarez C\u00e9sar Alberto Mendoza Claudio David N\u00fa\u00f1ez Lucas Mat\u00edas Mendoza Sa\u00fal Cristian Rold\u00e1n Cajal", - "values": [ - "Comisi\u00f3n Interamericana de Derechos Humanos" - ] - }, - { - "text": "INTER AMERICAN COMMISSION ON HUMAN RIGHTS COMISION INTERAMERICANA DE DERECHOS HUMANOS COMISS\u00c3O INTERAMERICANA DE DIREITOS HUMANOS COMMISSION INTERAM\u00c9RICAINE DES DROITS DE LHOMME ORGANIZACI\u00d3N DE LOS ESTADOS AMERICANOS WASHINGTON DC. EEUU de abril de Ref Caso No. Oscar Alberto Mohamed Argentina Se\u00f1or Secretario Tengo el agrado de dirigirme a usted en nombre de la Comisi\u00f3n Interamericana de Derechos Humanos con el objeto de someter a la jurisdicci\u00f3n de la Honorable Corte Interamericana de", - "values": [ - "Comisi\u00f3n Interamericana de Derechos Humanos" - ] - }, - { - "text": " INFORME No. CASO OSCAR ALBERTO MOHAMED FONDO ARGENTINA de noviembre de I. RESUMEN El de marzo de la Comisi\u00f3n Interamericana de Derechos Humanos en adelante la Comisi\u00f3n Interamericana la Comisi\u00f3n o la CIDH recibi\u00f3 una denuncia presentada por Carlos Alberto Mohamed y el abogado Roque J. Mantione en adelante los peticionarios a la que se le asign\u00f3 el n\u00famero En la denuncia se aleg\u00f3 la responsabilidad internacional de la Rep\u00fablica Argentina en adelante el Estado argentino o el Estado por ", - "values": [ - "Comisi\u00f3n Interamericana de Derechos Humanos" - ] - }, - { - "text": "INTER AMERICAN COMMISSION ON HUMAN RIGHTS COMISION INTERAMERICANA DE DERECHOS HUMANOS COMISS\u00c3O INTERAMERICANA DE DIREITOS HUMANOS COMMISSION INTERAM\u00c9RICAINE DES DROITS DE LHOMME ORGANIZACI\u00d3N DE LOS ESTADOS AMERICANOS WASHINGTON DC. EEUU de marzo de Ref Caso No. Sebasti\u00e1n Claus Furl\u00e1n y familia Argentina Se\u00f1or Secretario Tengo el agrado de dirigirme a usted en nombre de la Comisi\u00f3n Interamericana de Derechos Humanos con el objeto de someter a la jurisdicci\u00f3n de la Honorable Corte de ", - "values": [ - "Comisi\u00f3n Interamericana de Derechos Humanos" - ] - }, - { - "text": "INFORME No. CASO FONDO SEBASTI\u00c1N CLAUS FURLAN Y FAMILIA ARGENTINA de octubre de II. RESUMEN El se\u00f1or Danilo Furlan en adelante el peticionario o Danilo Furlan present\u00f3 una petici\u00f3n en contra del Estado argentino en adelante el Estado el Estado argentino o Argentina en representaci\u00f3n de su hijo Sebasti\u00e1n Claus Furlan en adelante la presunta v\u00edctima o Sebasti\u00e1n. En la petici\u00f3n recibida en la oficina de la OEA en Argentina el de julio de se alega que el Estado viol\u00f3 los derechos humanos de ", - "values": [ - "Comisi\u00f3n Interamericana de Derechos Humanos" - ] - }, - { - "text": "no text", - "values": [ - "Comisi\u00f3n Interamericana de Derechos Humanos" - ] - }, - { - "text": "INFORME No. CASO FONDO CARLOS ANTONIO LUNA L\u00d3PEZ Y OTROS HONDURAS de julio de I. RESUMEN El de enero de la Comisi\u00f3n Interamericana de Derechos Humanos en adelante la Comisi\u00f3n Interamericana la Comisi\u00f3n o la CIDH recibi\u00f3 una petici\u00f3n presentada por el Equipo de Reflexi\u00f3n Investigaci\u00f3n y Comunicaci\u00f3n ERIC y por el Centro por la Justicia y el Derecho Internacional CEJIL en la cual se alega la responsabilidad internacional de la Rep\u00fablica de Honduras en adelante el Estado hondure\u00f1o Honduras ", - "values": [ - "Comisi\u00f3n Interamericana de Derechos Humanos" - ] - }, - { - "text": "INFORME No. CASO FONDO LEOPOLDO GARC\u00cdA LUCERO Y FAMILIA CHILE de marzo de I. RESUMEN La organizaci\u00f3n Seeking Reparation for Torture Survivors REDRESS en adelante los peticionarios present\u00f3 una denuncia ante la Comisi\u00f3n Interamericana de Derechos Humanos en adelante la Comisi\u00f3n la CIDH o la Comisi\u00f3n Interamericana en contra de la Rep\u00fablica de Chile en adelante el Estado el Estado chileno o Chile por la presunta violaci\u00f3n a los derechos establecidos en los art\u00edculos y de la Convenci\u00f3n ", - "values": [ - "Comisi\u00f3n Interamericana de Derechos Humanos" - ] - }, - { - "text": "INTER AMERICAN COMMISSION ON HUMAN RIGHTS COMISION INTERAMERICANA DE DERECHOS HUMANOS COMISS\u00c3O INTERAMERICANA DE DIREITOS HUMANOS COMMISSION INTERAM\u00c9RICAINE DES DROITS DE LHOMME ORGANIZACI\u00d3N DE LOS ESTADOS AMERICANOS WASHINGTON DC. EEUU de septiembre de Ref Caso No. Garc\u00eda Lucero y otros Chile Se\u00f1or Secretario Tengo el agrado de dirigirme a usted en nombre de la Comisi\u00f3n Interamericana de Derechos Humanos con el objeto de someter a la jurisdicci\u00f3n de la Honorable Corte Interamericana ", - "values": [ - "Comisi\u00f3n Interamericana de Derechos Humanos" - ] - }, - { - "text": "VOTO RAZONADO EN EL CASO DE LOS LONKOS DIRIGENTES Y ACTIVISTAS DEL PUEBLO INDIGENA MAPUCHE PAULO SERGIO PINHEIRO Con el acostumbrado respeto manifiesto que comparto el sentido y la orientaci\u00f3n del informe de fondo aprobado por la CIDH pero considero que es necesario hacer referencia expresa a un tema que se encuentra en la realidad chilena actual directamente asociado al de la aplicaci\u00f3n de la legislaci\u00f3n antiterrorista contra miembros del pueblo ind\u00edgena Mapuche como lo es el de la de los ", - "values": [ - "Comisi\u00f3n Interamericana de Derechos Humanos" - ] - }, - { - "text": "INTER AMERICAN COMMISSION ON HUMAN RIGHTS COMISION INTERAMERICANA DE DERECHOS HUMANOS COMISS\u00c3O INTERAMERICANA DE DIREITOS HUMANOS COMMISSION INTERAM\u00c9RICAINE DES DROITS DE LHOMME ORGANIZACI\u00d3N DE LOS ESTADOS AMERICANOS WASHINGTON DC. EEUU de agosto de Ref Caso No. Segundo Aniceto Nor\u00edn Catrim\u00e1n Juan Patricio Marileo Saravia V\u00edctor Ancalaf Llaupe y otros Lonkos dirigentes y activistas del pueblo ind\u00edgena Mapuche Chile Se\u00f1or Secretario Tengo el agrado de dirigirme a usted en nombre de la ", - "values": [ - "Comisi\u00f3n Interamericana de Derechos Humanos" - ] - }, - { - "text": "INFORME No. CASOS Y SEGUNDO ANICETO NORIN CATRIMAN JUAN PATRICIO MARILEO SARAVIA VICTOR ANCALAF LLAUPE Y OTROS FONDO CHILE de noviembre de I. RESUMEN El de agosto de el de abril de y el de mayo de la Comisi\u00f3n Interamericana de Derechos Humanos en adelante la Comisi\u00f3n Interamericana o la CIDH recibi\u00f3 por separado tres peticiones en contra del Estado de Chile en adelante el Estado Chile o el Estado chileno relativas a las condenas penales de una de serie autoridades tradicionales y ", - "values": [ - "Comisi\u00f3n Interamericana de Derechos Humanos" - ] - }, - { - "text": "INTER AMERICAN COMMISSION ON HUMAN RIGHTS COMISION INTERAMERICANA DE DERECHOS HUMANOS COMISS\u00c3O INTERAMERICANA DE DIREITOS HUMANOS COMMISSION INTERAM\u00c9RICAINE DES DROITS DE LHOMME ORGANIZACI\u00d3N DE LOS ESTADOS AMERICANOS WASHINGTON DC. EEUU de marzo de Ref Caso No. Rafael Arturo Pacheco Teruel y otros Muertes por incendio en el Centro Penal de San Pedro Sula Honduras Se\u00f1or Secretario Tengo el agrado de dirigirme a usted en nombre de la Comisi\u00f3n Interamericana de Derechos Humanos con el de", - "values": [ - "Comisi\u00f3n Interamericana de Derechos Humanos" - ] - }, - { - "text": " INFORME No. CASO FONDO RAFAEL ARTURO PACHECO TERUEL Y OTROS MUERTE POR INCENDIO EN EL CENTRO PENAL DE SAN PEDRO SULA HONDURAS de octubre de I. RESUMEN El de julio de la Comisi\u00f3n Interamericana de Derechos Humanos en adelante la Comisi\u00f3n Interamericana la Comisi\u00f3n o la CIDH recibi\u00f3 una denuncia presentada por la Pastoral Penitenciaria CARITAS Sampedrana y el Equipo de Reflexi\u00f3n Investigaci\u00f3n y Comunicaci\u00f3n ERIC en adelante los peticionarios contra el Estado de Honduras en adelante el o", - "values": [ - "Comisi\u00f3n Interamericana de Derechos Humanos" - ] - }, - { - "text": "INTER AMERICAN COMMISSION ON HUMAN RIGHTS COMISION INTERAMERICANA DE DERECHOS HUMANOS COMISS\u00c3O INTERAMERICANA DE DIREITOS HUMANOS COMMISSION INTERAM\u00c9RICAINE DES DROITS DE LHOMME ORGANIZACI\u00d3N DE LOS ESTADOS AMERICANOS WASHINGTON DC. EEUU de marzo de Ref Caso No. Masacres de El Mozote y lugares aleda\u00f1os El Salvador Se\u00f1or Secretario Tengo el agrado de dirigirme a usted en nombre de la Comisi\u00f3n Interamericana de Derechos Humanos con el objeto de someter a la jurisdicci\u00f3n de la Honorable ", - "values": [ - "Comisi\u00f3n Interamericana de Derechos Humanos" - ] - }, - { - "text": " INFORME No. CASO FONDO MASACRES DE EL MOZOTE Y LUGARES ALEDA\u00d1OS EL SALVADOR de noviembre de b RESUMEN El de octubre de la Comisi\u00f3n Interamericana de Derechos Humanos en adelante la Comisi\u00f3n Interamericana la Comisi\u00f3n o la CIDH recibi\u00f3 una denuncia presentada por la Oficina de Tutela Legal del Arzobispado de San Salvador en adelante los peticionarios por la violaci\u00f3n de varias disposiciones de la Convenci\u00f3n Americana sobre Derechos Humanos en adelante la Convenci\u00f3n Americana la o la ", - "values": [ - "Comisi\u00f3n Interamericana de Derechos Humanos" - ] - }, - { - "text": "INTER AMERICAN COMMISSION ON HUMAN RIGHTS COMISION INTERAMERICANA DE DERECHOS HUMANOS COMISS\u00c3O INTERAMERICANA DE DIREITOS HUMANOS COMMISSION INTERAM\u00c9RICAINE DES DROITS DE LHOMME ORGANIZACI\u00d3N DE LOS ESTADOS AMERICANOS WASHINGTON DC. EEUU de febrero de Ref Caso No. Joe Lu\u00eds Castillo Gonz\u00e1lez y otros Venezuela Se\u00f1or Secretario Tengo el agrado de dirigirme a usted en nombre de la Comisi\u00f3n Interamericana de Derechos Humanos con el objeto de someter a la jurisdicci\u00f3n de la Honorable Corte ", - "values": [ - "Comisi\u00f3n Interamericana de Derechos Humanos" - ] - }, - { - "text": " INFORME N\u00ba CASO FONDO JOE LUIS CASTILLO GONZ\u00c1LEZ Y OTROS VENEZUELA de octubre de I. RESUMEN El de marzo de la Comisi\u00f3n Interamericana de Derechos Humanos en adelante la Comisi\u00f3n o la CIDH recibi\u00f3 una petici\u00f3n presentada por la Vicar\u00eda Episcopal de Derechos Humanos de Caracas y el Centro por la Justicia y el Derecho Internacional CEJIL en adelante los peticionarios en la cual se alega la responsabilidad internacional de la Rep\u00fablica Bolivariana de Venezuela en adelante el Estado o el ", - "values": [ - "Comisi\u00f3n Interamericana de Derechos Humanos" - ] - }, - { - "text": "INTER AMERICAN COMMISSION ON HUMAN RIGHTS COMISION INTERAMERICANA DE DERECHOS HUMANOS COMISS\u00c3O INTERAMERICANA DE DIREITOS HUMANOS COMMISSION INTERAM\u00c9RICAINE DES DROITS DE LHOMME ORGANIZACI\u00d3N DE LOS ESTADOS AMERICANOS WASHINGTON DC. EEUU de febrero de Ref Caso No. Jos\u00e9 Miguel Gudiel \u00c1lvarez y otros Diario Militar Guatemala Se\u00f1or Secretario Tengo el agrado de dirigirme a usted en nombre de la Comisi\u00f3n Interamericana de Derechos Humanos con el objeto de someter a la jurisdicci\u00f3n de la ", - "values": [ - "Comisi\u00f3n Interamericana de Derechos Humanos" - ] - }, - { - "text": " INFORME No. CASO ADMISIBILIDAD Y FONDO JOS\u00c9 MIGUEL GUDIEL \u00c1LVAREZ Y OTROS DIARIO MILITAR GUATEMALA de octubre de I. RESUMEN El de diciembre de la Comisi\u00f3n Interamericana de Derechos Humanos en adelante la Comisi\u00f3n Interamericana Comisi\u00f3n o CIDH recibi\u00f3 una petici\u00f3n presentada por Makrina Gudiel \u00c1lvarez Laurenta Marina Sosa Calder\u00f3n Juan Francisco Barillas Barrientos Reyna de Jes\u00fas Escobar Rodr\u00edguez Renato Guzm\u00e1n Casta\u00f1eda Ana Dolores Monroy Peralta Sonia Guisela Calder\u00f3n Mar\u00eda del de", - "values": [ - "Comisi\u00f3n Interamericana de Derechos Humanos" - ] - }, - { - "text": "INTER AMERICAN COMMISSION ON HUMAN RIGHTS COMISION INTERAMERICANA DE DERECHOS HUMANOS COMISS\u00c3O INTERAMERICANA DE DIREITOS HUMANOS COMMISSION INTERAM\u00c9RICAINE DES DROITS DE LHOMME ORGANIZACI\u00d3N DE LOS ESTADOS AMERICANOS WASHINGTON DC. EEUU de febrero de Ref Caso No. Nadege Dorzema y otros Masacre de Guayub\u00edn Rep\u00fablica Dominicana Se\u00f1or Secretario Tengo el agrado de dirigirme a usted en nombre de la Comisi\u00f3n Interamericana de Derechos Humanos con el objeto de someter a la jurisdicci\u00f3n de la", - "values": [ - "Comisi\u00f3n Interamericana de Derechos Humanos" - ] - }, - { - "text": " INFORME No. CASO FONDO NADEGE DORZEMA Y OTROS o MASACRE DE GUAYUBIN REP\u00daBLICA DOMINICANA de noviembre de II. RESUMEN El de noviembre de la Comisi\u00f3n Interamericana de Derechos Humanos en adelante la Comisi\u00f3n Interamericana la Comisi\u00f3n o la CIDH recibi\u00f3 una denuncia presentada por el Grupo de Apoyo a los Repatriados y Refugiados representado por Cherubin Tragelus y por el Centro Cultural Dom\u00ednico Haitiano representado por Antonio Pol Emil mediante la cual se aleg\u00f3 la responsabilidad de la", - "values": [ - "Comisi\u00f3n Interamericana de Derechos Humanos" - ] - }, - { - "text": "INTER AMERICAN COMMISSION ON HUMAN RIGHTS COMISION INTERAMERICANA DE DERECHOS HUMANOS COMISS\u00c3O INTERAMERICANA DE DIREITOS HUMANOS COMMISSION INTERAM\u00c9RICAINE DES DROITS DE LHOMME ORGANIZACI\u00d3N DE LOS ESTADOS AMERICANOS WASHINGTON DC. EEUU de febrero de Ref Caso No. Edgar Fernando Garc\u00eda y otros Guatemala Se\u00f1or Secretario Tengo el agrado de dirigirme a usted en nombre de la Comisi\u00f3n Interamericana de Derechos Humanos con el objeto de someter a la jurisdicci\u00f3n de la Honorable Corte de ", - "values": [ - "Comisi\u00f3n Interamericana de Derechos Humanos" - ] - }, - { - "text": " INFORME No. FONDO CASO EDGAR FERNANDO GARCIA GUATEMALA de octubre de I. RESUMEN El de agosto de la Comisi\u00f3n Interamericana de Derechos Humanos en adelante Comisi\u00f3n Comisi\u00f3n Interamericana o CIDH recibi\u00f3 una petici\u00f3n presentada por el Grupo de Apoyo Mutuo GAM representado por Mario Alcides Polanco P\u00e9rez en adelante los peticionarios en contra de la Rep\u00fablica de Guatemala en adelante Estado Estado Guatemalteco o Guatemala por la presunta responsabilidad internacional en la desaparici\u00f3n ", - "values": [ - "Comisi\u00f3n Interamericana de Derechos Humanos" - ] - }, - { - "text": "RESOLUCI\u00d3N DEL PRESIDENTE DE LA CORTE INTERAMERICANA DE DERECHOS HUMANOS DE DE JUNIO DE CASO \u00c1LVAREZ RAMOS VS. VENEZUELA VISTO El escrito de sometimiento del caso y el Informe de Fondo de la Comisi\u00f3n Interamericana de Derechos Humanos en adelante la Comisi\u00f3n Interamericana o la Comisi\u00f3n el escrito de solicitudes argumentos y pruebas en adelante el escrito de solicitudes y argumentos de los representantes de la presunta v\u00edctima en adelante los representantes el escrito de contestaci\u00f3n al del", - "values": [ - "Corte Interamericana de Derechos Humanos" - ] - }, - { - "text": "RESOLUCI\u00d3N DE LA CORTE INTERAMERICANA DE DERECHOS HUMANOS DE DE MAYO DE CASO DEL CARACAZO VS. VENEZUELA SUPERVISI\u00d3N DE CUMPLIMIENTO DE SENTENCIA VISTO La Sentencia de fondo en adelante la Sentencia y de reparaciones y costas en adelante la Sentencia de reparaciones dictadas por la Corte Interamericana de Derechos Humanos en adelante la Corte Interamericana la Corte o el Tribunal respectivamente los d\u00edas el de noviembre de y de agosto de En este caso la Rep\u00fablica Bolivariana de Venezuela", - "values": [ - "Corte Interamericana de Derechos Humanos" - ] - }, - { - "text": "RESOLU\u00c7\u00c3O DA CORTE INTERAMERICANA DE DIREITOS HUMANOS DE DE MAIO DE RESTITUI\u00c7\u00c3O AO FUNDO DE ASSIST\u00caNCIA JUR\u00cdDICA \u00c0S V\u00cdTIMAS CASO FAVELA NOVA BRAS\u00cdLIA VS. BRASIL VISTO A Senten\u00e7a de exce\u00e7\u00f5es preliminares m\u00e9rito repara\u00e7\u00f5es e custas doravante denominada a Senten\u00e7a proferida pela Corte Interamericana de Direitos Humanos doravante denominada a Corte a Corte Interamericana ou o Tribunal em de fevereiro de A Corte declarou a responsabilidade internacional da Rep\u00fablica Federativa do Brasil o ", - "values": [ - "Corte Interamericana de Derechos Humanos" - ] - }, - { - "text": "CORTE INTERAMERICANA DE DERECHOS HUMANOS CASO HERZOG Y OTROS VS. BRASIL SENTENCIA DE DE MARZO DE Excepciones Preliminares Fondo Reparaciones y Costas En el caso Herzog y otros la Corte Interamericana de Derechos Humanos en adelante la Corte Interamericana la Corte o este Tribunal integrada por los siguientes Jueces Eduardo Ferrer MacGregor Poisot Presidente Eduardo Vio Grossi Vicepresidente Humberto Antonio Sierra Porto Juez Elizabeth Odio Benito Jueza Eugenio Ra\u00fal Zaffaroni Juez y L. ", - "values": [ - "Corte Interamericana de Derechos Humanos" - ] - }, - { - "text": "RESOLUCI\u00d3N DE LA CORTE INTERAMERICANA DE DERECHOS HUMANOS DE DE MAYO DE REINTEGRO AL FONDO DE ASISTENCIA LEGAL DE V\u00cdCTIMAS CASO ARG\u00dcELLES Y OTROS VS. ARGENTINA VISTO La Sentencia de excepciones preliminares fondo reparaciones y costas en adelante la Sentencia o el Fallo dictada por la Corte Interamericana de Derechos Humanos en adelante la Corte la Corte Interamericana o el Tribunal el de noviembre de La Corte declar\u00f3 la responsabilidad internacional de la Rep\u00fablica Argentina en adelante ", - "values": [ - "Corte Interamericana de Derechos Humanos" - ] - }, - { - "text": "RESOLUCI\u00d3N DE LA CORTE INTERAMERICANA DE DERECHOS HUMANOS DE DE MAYO DE CASO BUENO ALVES VS. ARGENTINA SUPERVISI\u00d3N DE CUMPLIMIENTO DE SENTENCIA VISTO La Sentencia de fondo reparaciones y costas en adelante la Sentencia dictada por la Corte Interamericana de Derechos Humanos en adelante la Corte Interamericana la Corte o el Tribunal el de mayo de La Corte tomando en cuenta el reconocimiento de responsabilidad internacional efectuado por la Rep\u00fablica de Argentina en adelante el Estado o ", - "values": [ - "Corte Interamericana de Derechos Humanos" - ] - }, - { - "text": "RESOLUCI\u00d3N DE LA CORTE INTERAMERICANA DE DERECHOS HUMANOS DE DE MAYO DE CASO CINCO PENSIONISTAS VS. PER\u00da SUPERVISI\u00d3N DE CUMPLIMIENTO DE SENTENCIA VISTOS La Sentencia de fondo reparaciones y costas en adelante la Sentencia emitida en el presente caso por la Corte Interamericana de Derechos Humanos en adelante la Corte Interamericana la Corte o el Tribunal el de febrero de mediante la cual la Corte declar\u00f3 que la Rep\u00fablica del Per\u00fa en adelante el Per\u00fa o el Estado viol\u00f3 los derechos a la y ", - "values": [ - "Corte Interamericana de Derechos Humanos" - ] - }, - { - "text": "RESOLUCI\u00d3N DE LA CORTE INTERAMERICANA DE DERECHOS HUMANOS DE DE MAYO DE MEDIDAS PROVISIONALES RESPECTO DEL PER\u00da CASO DURAND Y UGARTE VS. PER\u00da VISTO La Sentencia de fondo de de agosto de en adelante la Sentencia mediante la cual la Corte Interamericana de Derechos Humanos en adelante tambi\u00e9n la Corte Interamericana o el Tribunal declar\u00f3 responsable internacionalmente a la Rep\u00fablica del Per\u00fa en adelante el Estado o Per\u00fa por la violaci\u00f3n del derecho a la vida de los se\u00f1ores Nolberto Durand ", - "values": [ - "Corte Interamericana de Derechos Humanos" - ] - }, - { - "text": "RESOLUCI\u00d3N DE LA CORTE INTERAMERICANA DE DERECHOS HUMANOS DE DE MAYO DE CASO ZEGARRA MAR\u00cdN VS. PER\u00da SUPERVISI\u00d3N DE CUMPLIMIENTO DE SENTENCIA VISTO La Sentencia de excepciones preliminares fondo reparaciones y costas en adelante la Sentencia dictada por la Corte Interamericana de Derechos Humanos en adelante la Corte Interamericana la Corte o el Tribunal el de febrero de y la Sentencia de interpretaci\u00f3n de dicha Sentencia emitida el de febrero de El caso se refiri\u00f3 a la violaci\u00f3n del ", - "values": [ - "Corte Interamericana de Derechos Humanos" - ] - }, - { - "text": "RESOLUCI\u00d3N DE LA CORTE INTERAMERICANA DE DERECHOS HUMANOS DE DE MAYO DE CASO BARRIOS ALTOS Y CASO LA CANTUTA VS. PER\u00da SUPERVISI\u00d3N DE CUMPLIMIENTO DE SENTENCIA OBLIGACI\u00d3N DE INVESTIGAR JUZGAR Y DE SER EL CASO SANCIONAR VISTO La Sentencia de fondo y la Sentencia de fondo reparaciones y costas dictadas por la Corte Interamericana de Derechos Humanos en adelante la Corte Interamericana la Corte o el Tribunal en el caso Barrios Altos y el caso La Cantuta ambos contra la Rep\u00fablica del Per\u00fa en el ", - "values": [ - "Corte Interamericana de Derechos Humanos" - ] - }, - { - "text": "RESOLUCI\u00d3N DE LA CORTE INTERAMERICANA DE DERECHOS HUMANOS DE DE MAYO DE CASO MASACRES DE EL MOZOTE Y LUGARES ALEDA\u00d1OS VS. EL SALVADOR SUPERVISI\u00d3N DE CUMPLIMIENTO DE SENTENCIA VISTO La Sentencia de fondo reparaciones y costas en adelante la Sentencia dictada por la Corte Interamericana de Derechos Humanos en adelante la Corte Interamericana la Corte o el Tribunal el de octubre de El caso se refiri\u00f3 a las violaciones a derechos humanos perpetradas por la Fuerza Armada salvadore\u00f1a en las ", - "values": [ - "Corte Interamericana de Derechos Humanos" - ] - }, - { - "text": "VOTO CONCURRENTE DEL JUEZ HUMBERTO ANTONIO SIERRA PORTO A LA SENTENCIA DE DE MARZO DE DE LA CORTE INTERAMERICANA DE DERECHOS HUMANOS EN EL CASO DE POBLETE VILCHES Y OTROS VS. CHILE I. Introducci\u00f3n Con el acostumbrado respeto por las decisiones de la Corte Interamericana de Derechos Humanos en adelante tambi\u00e9n la Corte o el Tribunal me permito formular el presente voto concurrente. El voto se centra en el an\u00e1lisis de fondo que realiz\u00f3 la Corte acerca de la responsabilidad internacional del ", - "values": [ - "Corte Interamericana de Derechos Humanos" - ] - }, - { - "text": "CORTE INTERAMERICANA DE DERECHOS HUMANOS CASO POBLETE VILCHES Y OTROS VS. CHILE SENTENCIA DE MARZO DE Fondo Reparaciones y Costas En el caso Poblete Vilches y otros la Corte Interamericana de Derechos Humanos en adelante la Corte Interamericana la Corte o este Tribunal integrada por los siguientes jueces Eduardo Ferrer MacGregor Poisot Presidente Humberto Antonio Sierra Porto Juez Elizabeth Odio Benito Jueza Eugenio Ra\u00fal Zaffaroni Juez y L. Patricio Pazmi\u00f1o Freire Juez presente adem\u00e1s ", - "values": [ - "Corte Interamericana de Derechos Humanos" - ] - }, - { - "text": "INFORME N PETICI\u00d3N ADMISIBILIDAD RUMALDO JUAN PACHECO OSCO FRIDA PACHECO TINEO JUANA GUADALUPE Y JUAN RICARDO PACHECO TINEO BOLIVIA de octubre de I. RESUMEN El de abril de la Comisi\u00f3n Interamericana de Derechos Humanos en adelante la Comisi\u00f3n o la CIDH recibi\u00f3 una petici\u00f3n presentada por el Sr. Rumaldo Juan Pacheco Osco y la Sra. Fredesvinda Tineo Godos en adelante los peticionarios en la cual se alega la responsabilidad del Estado de Bolivia en adelante el Estado o el Estado boliviano ", - "values": [ - "Comisi\u00f3n Interamericana de Derechos Humanos" - ] - }, - { - "text": " INFORME No. CASO ADMISIBILIDAD Y FONDO CARLOS AUGUSTO RODR\u00cdGUEZ VERA Y OTROS PALACIO DE JUSTICIA COLOMBIA de octubre de I. RESUMEN En diciembre de la Comisi\u00f3n Interamericana de Derechos Humanos en adelante la Comisi\u00f3n o la CIDH recibi\u00f3 una petici\u00f3n presentada por Enrique Rodr\u00edguez Hern\u00e1ndez en adelante el peticionario en la cual se alega la responsabilidad de la Rep\u00fablica de Colombia en adelante el Estado o el Estado colombiano por la desaparici\u00f3n de Carlos Augusto Rodr\u00edguez Vera del ", - "values": [ - "Comisi\u00f3n Interamericana de Derechos Humanos" - ] - }, - { - "text": "INTER AMERICAN COMMISSION ON HUMAN RIGHTS COMISION INTERAMERICANA DE DERECHOS HUMANOS COMISS\u00c3O INTERAMERICANA DE DIREITOS HUMANOS COMMISSION INTERAM\u00c9RICAINE DES DROITS DE LHOMME ORGANIZACI\u00d3N DE LOS ESTADOS AMERICANOS WASHINGTON DC. E E U U de febrero de Ref Caso No. Carlos Augusto Rodr\u00edguez Vera y otros Palacio de Justicia Colombia Se\u00f1or Secretario Tengo el agrado de dirigirme a usted en nombre de la Comisi\u00f3n Interamericana de Derechos Humanos con el objeto de someter a la jurisdicci\u00f3n", - "values": [ - "Comisi\u00f3n Interamericana de Derechos Humanos" - ] - }, - { - "text": "INFORME N\u00ba CASO FONDO MELBA DEL CARMEN SUAREZ PERALTA ECUADOR de julio de I. RESUMEN El de febrero de la Comisi\u00f3n Interamericana de Derechos Humanos en adelante la Comisi\u00f3n o la CIDH recibi\u00f3 una petici\u00f3n presentada por Jorge Sosa Meza en adelante el peticionario en la cual aleg\u00f3 la responsabilidad de la Rep\u00fablica de Ecuador en adelante el Estado o Ecuador por la falta de juzgamiento de los profesionales de la salud que habr\u00edan incurrido en mala pr\u00e1ctica m\u00e9dica en perjuicio de Melba del ", - "values": [ - "Comisi\u00f3n Interamericana de Derechos Humanos" - ] - }, - { - "text": "INTER AMERICAN COMMISSION ON HUMAN RIGHTS COMISION INTERAMERICANA DE DERECHOS HUMANOS COMISS\u00c3O INTERAMERICANA DE DIREITOS HUMANOS COMMISSION INTERAM\u00c9RICAINE DES DROITS DE LHOMME ORGANIZACI\u00d3N DE LOS ESTADOS AMERICANOS WASHINGTON DC. EEUU de enero de Ref Caso No. Melba del Carmen Su\u00e1rez Peralta Ecuador Se\u00f1or Secretario Tengo el agrado de dirigirme a usted en nombre de la Comisi\u00f3n Interamericana de Derechos Humanos con el objeto de someter a la jurisdicci\u00f3n de la Honorable Corte de el ", - "values": [ - "Comisi\u00f3n Interamericana de Derechos Humanos" - ] - }, - { - "text": "INTER AMERICAN COMMISSION ON HUMAN RIGHTS COMISION INTERAMERICANA DE DERECHOS HUMANOS COMISS\u00c3O INTERAMERICANA DE DIREITOS HUMANOS COMMISSION INTERAM\u00c9RICAINE DES DROITS DE LHOMME ORGANIZACI\u00d3N DE LOS ESTADOS AMERICANOS WASHINGTON DC. EEUU de enero de Ref Caso No. Liakat Ali Alibux Surinam Se\u00f1or Secretario Tengo el agrado de dirigirme a usted en nombre de la Comisi\u00f3n Interamericana de Derechos Humanos con el objeto de someter a la jurisdicci\u00f3n de la Honorable Corte Interamericana de el ", - "values": [ - "Comisi\u00f3n Interamericana de Derechos Humanos" - ] - }, - { - "text": "INFORME No. CASO LIAKAT ALI ALIBUX SURINAM de julio de I. RESUMEN El de agosto de la Comisi\u00f3n Interamericana de Derechos Humanos en adelante la Comisi\u00f3n Interamericana o la CIDH recibi\u00f3 una petici\u00f3n presentada por el se\u00f1or Liakat Ali Alibux en adelante el peticionario o el se\u00f1or Alibux ex miembro del Consejo de Ministros del gobierno de la Rep\u00fablica de Surinam en adelante Surinam o el Estado. El peticionario se\u00f1ala que fue Ministro de Finanzas y Ministro de Recursos Naturales de Surinam", - "values": [ - "Comisi\u00f3n Interamericana de Derechos Humanos" - ] - }, - { - "text": "VOTO PARCIALMENTE DISIDENTE COMISIONADO Jos\u00e9 de Jes\u00fas Orozco Con pleno reconocimiento al alto profesionalismo de mis colegas sirva el presente voto para expresar los motivos de mi disenso en la conclusi\u00f3n de la mayor\u00eda del pleno de la Ilustre Comisi\u00f3n Interamericana de Derechos Humanos CIDH en el caso Liakat Ali Alibux exclusivamente en cuanto a la decisi\u00f3n de considerar violado al art\u00edculo \u00ba de la Convenci\u00f3n Americana en conformidad con lo que establecen los p\u00e1rrafos y de este informe de ", - "values": [ - "Comisi\u00f3n Interamericana de Derechos Humanos" - ] - }, - { - "text": "INFORME N\u00ba PETICI\u00d3N ADMISIBILIDAD LIAKAT ALI ALIBUX SURINAME de marzo de I. RESUMEN El de agosto de la Comisi\u00f3n Interamericana de Derechos Humanos la Comisi\u00f3n o la CIDH recibi\u00f3 una petici\u00f3n formulada por y emanada del Sr. Liakat Ali Alibux en lo sucesivo el peticionario nacional de la Rep\u00fablica de Suriname Suriname o el Estado y ex Ministro de Gabinete del Gobierno de ese pa\u00eds. El peticionario manifiesta haberse desempe\u00f1ado como Ministro de Finanzas y Ministro de Recursos Naturales y ", - "values": [ - "Comisi\u00f3n Interamericana de Derechos Humanos" - ] - }, - { - "text": "CORTE INTERAMERICANA DE DERECHOS HUMANOS CASO CARVAJAL CARVAJAL Y OTROS VS. COLOMBIA SENTENCIA DE DE MARZO DE Fondo Reparaciones y Costas En el Caso Carvajal Carvajal y Otros vs. Colombia la Corte Interamericana de Derechos Humanos en adelante la Corte Interamericana la Corte o el Tribunal integrada por los siguientes Jueces Eduardo Ferrer MacGregor Poisot Presidente Eduardo Vio Grossi Vicepresidente Elizabeth Odio Benito Jueza Eugenio Ra\u00fal Zaffaroni Juez y L. Patricio Pazmi\u00f1o Freire Juez ", - "values": [ - "Corte Interamericana de Derechos Humanos" - ] - }, - { - "text": " de junio de REF Caso N\u00ba Ra\u00fal Rolando Romero Feris Argentina Se\u00f1or Secretario Tengo el agrado de dirigirme a usted en nombre de la Comisi\u00f3n Interamericana de Derechos Humanos con el objeto de presentar ante la Honorable Corte Interamericana de Derechos Humanos el Caso N\u00ba Ra\u00fal Rolando Romero Feris respecto de la Rep\u00fablica de Argentina en adelante el Estado el Estado argentino o Argentina relacionado con la detenci\u00f3n ilegal y arbitraria en contra de Ra\u00fal Rolando Romero Feris en as\u00ed como por ", - "values": [ - "Comisi\u00f3n Interamericana de Derechos Humanos" - ] - }, - { - "text": "INFORME NO. PETICI\u00d3N RA\u00daL ROLANDO ROMERO FERIS ARGENTINA DE ENERO DE I. RESUMEN El de agosto de los abogados Mariano Cuneo Libarona Cristian Cuneo Libarona Jos\u00e9 Mar\u00eda Arrieta y Jorge Eduardo Alc\u00e1ntara quienes fueron posteriormente reemplazados por el abogado Luis Alberto Feris en adelante el peticionario presentaron una petici\u00f3n ante la Comisi\u00f3n Interamericana de Derechos Humanos en adelante la CIDH por la alegada responsabilidad internacional de la Rep\u00fablica de Argentina en adelante el ", - "values": [ - "Comisi\u00f3n Interamericana de Derechos Humanos" - ] - }, - { - "text": "INFORME No. CASO FONDO RA\u00daL ROLANDO ROMERO FERIS ARGENTINA DE JULIO DE I. RESUMEN El de agosto de la Comisi\u00f3n Interamericana de Derechos Humanos en adelante la Comisi\u00f3n la Comisi\u00f3n Interamericana o la CIDH recibi\u00f3 una petici\u00f3n presentada por Mariano Cuneo Libarona Cristian Cuneo Libarona Jos\u00e9 Mar\u00eda Arrieta y Jorge Eduardo Alc\u00e1ntara en adelante el peticionario. En dicha petici\u00f3n se aleg\u00f3 la responsabilidad internacional de la Rep\u00fablica de Argentina en adelante el Estado el Estado o por", - "values": [ - "Comisi\u00f3n Interamericana de Derechos Humanos" - ] - }, - { - "text": " de abril de REF Caso N\u00ba Mario Montesinos Mej\u00eda Ecuador Se\u00f1or Secretario Tengo el agrado de dirigirme a usted en nombre de la Comisi\u00f3n Interamericana de Derechos Humanos con el objeto de someter a la jurisdicci\u00f3n de la Honorable Corte Interamericana de Derechos Humanos el Caso N\u00ba Mario Montesinos Mej\u00eda respecto de la Rep\u00fablica del Ecuador en adelante el Estado el Estado ecuatoriano o Ecuador relacionado con la detenci\u00f3n ilegal y arbitraria de la v\u00edctima por parte de agentes policiales en ", - "values": [ - "Comisi\u00f3n Interamericana de Derechos Humanos" - ] - }, - { - "text": "INFORME No. CASO ADMISIBILIDAD Y FONDO MARIO MONTESINOS MEJ\u00cdA ECUADOR DE OCTUBRE DE I. RESUMEN El de agosto de la Comisi\u00f3n Interamericana de Derechos Humanos en adelante la Comisi\u00f3n o la CIDH recibi\u00f3 una petici\u00f3n presentada por Alejandro PonceVillac\u00eds en adelante la parte peticionaria en la cual se aleg\u00f3 la responsabilidad internacional por parte de la Rep\u00fablica del Ecuador en adelante el Estado el Estado ecuatoriano o Ecuador debido a la detenci\u00f3n ilegal y arbitraria de Mario Montesinos", - "values": [ - "Comisi\u00f3n Interamericana de Derechos Humanos" - ] - }, - { - "text": "INFORME No. PETICI\u00d3N ADMISIBILIDAD RAM\u00d3N ROSENDO ALARC\u00d3N ECUADOR de noviembre de I. RESUMEN El de abril de la Comisi\u00f3n Interamericana de Derechos Humanos en adelante la Comisi\u00f3n o la CIDH recibi\u00f3 una petici\u00f3n presentada por Jos\u00e9 Leonardo Obando Laaz en adelante el peticionario en la cual se alega la responsabilidad de la Rep\u00fablica del Ecuador por la supuesta detenci\u00f3n sin orden judicial de Ram\u00f3n Rosendo Alarc\u00f3n en adelante la presunta v\u00edctima en noviembre de y su permanencia en m\u00e1s ", - "values": [ - "Comisi\u00f3n Interamericana de Derechos Humanos" - ] - }, - { - "text": " de marzo de REF Caso N\u00ba Ram\u00f3n Rosendo Carranza Alarc\u00f3n Ecuador Se\u00f1or Secretario Tengo el agrado de dirigirme a usted en nombre de la Comisi\u00f3n Interamericana de Derechos Humanos con el objeto de someter a la jurisdicci\u00f3n de la Honorable Corte Interamericana de Derechos Humanos el Caso N\u00ba Ram\u00f3n Rosendo Carranza Alarc\u00f3n respecto de la Rep\u00fablica del Ecuador en adelante el Estado el Estado ecuatoriano o Ecuador relacionado con la detenci\u00f3n ilegal y arbitraria de Ram\u00f3n Rosendo Carranza Alarc\u00f3n ", - "values": [ - "Comisi\u00f3n Interamericana de Derechos Humanos" - ] - }, - { - "text": "INFORME No. CASO FONDO RAM\u00d3N ROSENDO CARRANZA ALARC\u00d3N ECUADOR DE MAYO DE I. RESUMEN El de abril de la Comisi\u00f3n Interamericana de Derechos Humanos en adelante la Comisi\u00f3n la Comisi\u00f3n Interamericana o la CIDH recibi\u00f3 una petici\u00f3n presentada por Jos\u00e9 Leonardo Obando Laaz en adelante el peticionario en el cual se aleg\u00f3 la responsabilidad de la Rep\u00fablica del Ecuador por la detenci\u00f3n ilegal y arbitraria de Ram\u00f3n Rosendo Carranza Alarc\u00f3n en noviembre de por parte de agentes p\u00fablicos as\u00ed como ", - "values": [ - "Comisi\u00f3n Interamericana de Derechos Humanos" - ] - }, - { - "text": "RESOLUCI\u00d3N DE LA CORTE INTERAMERICANA DE DERECHOS HUMANOS DE DE MAYO DE REINTEGRO AL FONDO DE ASISTENCIA LEGAL DE V\u00cdCTIMAS CASOS POLLO RIVERA Y OTROS Y LAGOS DEL CAMPO VS. PER\u00da VISTO Las Sentencias emitidas por la Corte Interamericana de Derechos Humanos en adelante la Corte la Corte Interamericana o el Tribunal el de octubre de en el caso Pollo Rivera y otros y el de agosto de en el caso Lagos del Campo en adelante los dos casos ambas contra la Rep\u00fablica del Per\u00fa en adelante el Estado o", - "values": [ - "Corte Interamericana de Derechos Humanos" - ] - }, - { - "text": "RESOLUCI\u00d3N DEL PRESIDENTE DE LA CORTE INTERAMERICANA DE DERECHOS HUMANOS DE DE JULIO DE CASO RICO VS. ARGENTINA CONVOCATORIA A AUDIENCIA VISTO El escrito de sometimiento del caso y el Informe de Fondo de la Comisi\u00f3n Interamericana de Derechos Humanos en adelante la Comisi\u00f3n Interamericana o la Comisi\u00f3n el escrito de solicitudes argumentos y pruebas en adelante el escrito de solicitudes y argumentos de los representantes de las presuntas v\u00edctimas en adelante los representantes y el escrito de", - "values": [ - "Corte Interamericana de Derechos Humanos" - ] - }, - { - "text": "RESOLUCI\u00d3N DEL PRESIDENTE DE LA CORTE INTERAMERICANA DE DERECHOS HUMANOS DE DE JULIO DE CASO MUELLE FLORES VS. PER\u00da VISTO El escrito de sometimiento del caso y el Informe de Fondo de la Comisi\u00f3n Interamericana de Derechos Humanos en adelante la Comisi\u00f3n Interamericana o la Comisi\u00f3n el escrito de solicitudes argumentos y pruebas en adelante el escrito de solicitudes y argumentos de las representantes en adelante las representantes el escrito de excepci\u00f3n preliminar y contestaci\u00f3n al del caso", - "values": [ - "Corte Interamericana de Derechos Humanos" - ] - }, - { - "text": "INFORME No. PETICI\u00d3N ADMISIBILIDAD TRABAJADORES DESPEDIDOS DE LA EMPRESA NACIONAL DE PUERTOS SA. ENAPU PER\u00da de julio de I. RESUMEN El de noviembre de la Comisi\u00f3n Interamericana de Derechos Humanos en adelante la Comisi\u00f3n o CIDH recibi\u00f3 una petici\u00f3n presentada por la Federaci\u00f3n Nacional de Trabajadores de la Empresa Nacional de Puertos SA. ENAPU en adelante los peticionarios a favor de trabajadores cesados en adelante las presuntas v\u00edctimas en contra de la Rep\u00fablica del Per\u00fa en Per\u00fa ", - "values": [ - "Comisi\u00f3n Interamericana de Derechos Humanos" - ] - }, - { - "text": "INFORME No. PETICI\u00d3N ADMISIBILIDAD TRABAJADORES DESPEDIDOS DEL MINISTERIO DE ECONOM\u00cdA Y FINANZAS MEF PER\u00da de julio de I. RESUMEN El de marzo de la Comisi\u00f3n Interamericana de Derechos Humanos en adelante la Comisi\u00f3n o CIDH recibi\u00f3 una petici\u00f3n presentada por Gloria Nila Amabelia Moreno Cueva y otros ex trabajadores del Ministerio de Econom\u00eda y Finanzas MEF en adelante los peticionarios o las presuntas v\u00edctimas en contra de la Rep\u00fablica del Per\u00fa en adelante Per\u00fa Estado peruano o Estado en", - "values": [ - "Comisi\u00f3n Interamericana de Derechos Humanos" - ] - }, - { - "text": "INFORME No. CASO ADMISIBILIDAD TRABAJADORES DESPEDIDOS DE PETR\u00d3LEOS DEL PER\u00da PETROPER\u00da ZONA NOROESTE TALARA PER\u00da de julio de I. RESUMEN El de febrero de la Comisi\u00f3n Interamericana de Derechos Humanos en adelante la Comisi\u00f3n o CIDH recibi\u00f3 una petici\u00f3n presentada por el Sindicato \u00danico de Trabajadores de Petr\u00f3leos del Per\u00fa Zona Noroeste Talara a favor de todos los trabajadores en contra de la Rep\u00fablica del Per\u00fa en adelante Per\u00fa Estado peruano o Estado Durante la tramitaci\u00f3n de la se ", - "values": [ - "Comisi\u00f3n Interamericana de Derechos Humanos" - ] - }, - { - "text": "RESOLUCI\u00d3N DE LA CORTE INTERAMERICANA DE DERECHOS HUMANOS DE DE MARZO DE SOLICITUD DE MEDIDAS PROVISIONALES RESPECTO DE M\u00c9XICO ASUNTO INTEGRANTES DE LA COMUNIDAD IND\u00cdGENA DE CHOR\u00c9ACHI VISTO El escrito de de marzo de y sus anexos enviados el d\u00eda de marzo mediante los cuales la Comisi\u00f3n Interamericana de Derechos Humanos en adelante la Comisi\u00f3n la Comisi\u00f3n Interamericana o la CIDH someti\u00f3 a la Corte Interamericana de Derechos Humanos en adelante la Corte Interamericana o la Corte una de ", - "values": [ - "Corte Interamericana de Derechos Humanos" - ] - }, - { - "text": "COMISI\u00d3N INTERAMERICANA DE DERECHOS HUMANOS RESOLUCI\u00d3N MEDIDA CAUTELAR No. Ampliaci\u00f3n de beneficiarios a favor de integrantes de la Comunidad Ind\u00edgena de Chor\u00e9achi respecto de M\u00e9xico de octubre de I. INTRODUCCI\u00d3N El de julio de la Comisi\u00f3n Interamericana de Derechos Humanos en adelante la Comisi\u00f3n Interamericana la Comisi\u00f3n o la CIDH recibi\u00f3 una solicitud de ampliaci\u00f3n de las medidas cautelares presentada por la Alianza Sierra Madre ASMAC y por el Centro de Derechos Humanos de las en ", - "values": [ - "Comisi\u00f3n Interamericana de Derechos Humanos" - ] - }, - { - "text": "no text", - "values": [ - "Comisi\u00f3n Interamericana de Derechos Humanos" - ] - }, - { - "text": "no text", - "values": [ - "Comisi\u00f3n Interamericana de Derechos Humanos" - ] - }, - { - "text": "no text", - "values": [ - "Comisi\u00f3n Interamericana de Derechos Humanos" - ] - }, - { - "text": "no text", - "values": [ - "Comisi\u00f3n Interamericana de Derechos Humanos" - ] - }, - { - "text": "COMISI\u00d3N INTERAMERICANA DE DERECHOS HUMANOS RESOLUCI\u00d3N MEDIDA CAUTELAR No. Asunto Instituto Penal Pl\u00e1cido de S\u00e1 Carvalho respecto de Brasil de julio de I. INTRODUCCI\u00d3N El de marzo de la Comisi\u00f3n Interamericana de Derechos Humanos en lo sucesivo la Comisi\u00f3n Interamericana la Comisi\u00f3n o la CIDH recibi\u00f3 una solicitud de medidas cautelares presentada por los Defensores P\u00fablicos del N\u00facleo do Sistema Penitenci\u00e1rio da Defensoria P\u00fablica do Estado do Rio de Janeiro en adelante los solicitantes ", - "values": [ - "Comisi\u00f3n Interamericana de Derechos Humanos" - ] - }, - { - "text": "COMISI\u00d3N INTERAMERICANA DE DERECHOS HUMANOS RESOLUCI\u00d3N MEDIDA CAUTELAR No. Asunto Personas Privadas de Libertad en el Complexo Penitenciario de Pedrinhas respecto de Brasil de diciembre de I. INTRODUCCION El de octubre de la Comisi\u00f3n Interamericana de Derechos Humanos en adelante la Comisi\u00f3n Interamericana la Comisi\u00f3n o la CIDH recibi\u00f3 una solicitud de medidas cautelares presentada por la Sociedad Mara\u00f1ense de Derechos Humanos y el Orden de los Abogados de Brasil en adelante los que la", - "values": [ - "Comisi\u00f3n Interamericana de Derechos Humanos" - ] - }, - { - "text": "RESOLUCI\u00d3N DEL PRESIDENTE DE LA CORTE INTERAMERICANA DE DERECHOS HUMANOS DE DE JULIO DE CASO AMRHEIN Y OTROS VS. COSTA RICA VISTO El escrito de sometimiento del caso y el Informe de Fondo de la Comisi\u00f3n Interamericana de Derechos Humanos en adelante la Comisi\u00f3n Interamericana o la Comisi\u00f3n los cuatro escritos de solicitudes argumentos y pruebas en adelante los escritos de solicitudes y argumentos de los tres intervinientes comunes el escrito de excepciones preliminares y de contestaci\u00f3n al", - "values": [ - "Corte Interamericana de Derechos Humanos" - ] - }, - { - "text": "VOTO INDIVIDUAL DEL JUEZ EDUARDO VIO GROSSI CORTE INTERAMERICANA DE DERECHOS HUMANOS CASO AMRHEIN Y OTROS VS. COSTA RICA SENTENCIA DE DE ABRIL DE Excepciones Preliminares Fondo Reparaciones y Costas Introducci\u00f3n. Conforme a lo dispuesto en la correspondiente norma aplicable en el presente voto individual relativo a la Sentencia del ep\u00edgrafe la que consta de Puntos Resolutivos se da cuenta de tan solo de los de ellos en que no se concuerda con lo decidido en el presente caso. Obviamente ", - "values": [ - "Corte Interamericana de Derechos Humanos" - ] - }, - { - "text": "CORTE INTERAMERICANA DE DERECHOS HUMANOS CASO AMRHEIN Y OTROS VS. COSTA RICA SENTENCIA DE DE ABRIL DE Excepciones Preliminares Fondo Reparaciones y Costas En el caso Amrhein y otros la Corte Interamericana de Derechos Humanos en adelante tambi\u00e9n la Interamericana la Corte o este Tribunal integrada por los siguientes jueces Corte Eduardo Ferrer MacGregor Poisot Presidente Eduardo Vio Grossi Vicepresidente Roberto F. Caldas Juez Humberto Antonio Sierra Porto Juez Eugenio Ra\u00fal Zaffaroni Juez y ", - "values": [ - "Corte Interamericana de Derechos Humanos" - ] - }, - { - "text": " de diciembre de REF Caso N\u00ba Juan Francisco Arrom Suhurt Anuncio Mart\u00ed M\u00e9ndez y familiares Paraguay Se\u00f1or Secretario Tengo el agrado de dirigirme a usted en nombre de la Comisi\u00f3n Interamericana de Derechos Humanos con el objeto de someter a la jurisdicci\u00f3n de la Honorable Corte Interamericana de Derechos Humanos el Caso N\u00ba Juan Francisco Arrom Suhurt Anuncio Mart\u00ed M\u00e9ndez y familiares respecto de la Rep\u00fablica de Paraguay en adelante el Estado el Estado paraguayo o Paraguay relacionado con la", - "values": [ - "Comisi\u00f3n Interamericana de Derechos Humanos" - ] - }, - { - "text": "INFORME No. PETICI\u00d3N ADMISIBILIDAD JUAN FRANCISCO ARROM SUHURT ANUNCIO MART\u00cd M\u00c9NDEZ V\u00cdCTOR ANTONIO COLM\u00c1N ORTEGA ANA ROSA SAMUDIO DE COLM\u00c1N JORGE SAMUDIO FERREIRA Y SUS FAMILIARES PARAGUAY de octubre de I. RESUMEN Las actuaciones materia de esta petici\u00f3n fueron iniciadas por la Comisi\u00f3n Interamericana de Derechos Humanos en lo sucesivo Comisi\u00f3n Interamericana la Comisi\u00f3n o CIDH tras recibir el de septiembre y el de diciembre de comunicaciones presentadas por Marina y Cristina Arrom en ", - "values": [ - "Comisi\u00f3n Interamericana de Derechos Humanos" - ] - }, - { - "text": "INFORME No. CASO FONDO JUAN FRANCISCO ARROM SUHURT ANUNCIO MART\u00cd M\u00c9NDEZ Y OTROS PARAGUAY DE SEPTIEMBRE DE I. RESUMEN El y de septiembre de la Comisi\u00f3n Interamericana de Derechos Humanos en adelante la Comisi\u00f3n Interamericana la Comisi\u00f3n o la CIDH recibi\u00f3 una petici\u00f3n presentada por Marina y Cristina Arrom Suhurt en adelante los peticionarios en la cual se alega la responsabilidad internacional de la Rep\u00fablica del Paraguay en adelante el Estado de Paraguay el Estado el Estado paraguayo o", - "values": [ - "Comisi\u00f3n Interamericana de Derechos Humanos" - ] - }, - { - "text": " de noviembre de Ref Caso No. Manuel Mart\u00ednez Coronado Guatemala Se\u00f1or Secretario Tengo el agrado de dirigirme a usted en nombre de la Comisi\u00f3n Interamericana de Derechos Humanos con el objeto de someter a la jurisdicci\u00f3n de la Honorable Corte Interamericana de Derechos Humanos el Caso N\u00ba Manuel Mart\u00ednez Coronado respecto de la Rep\u00fablica de Guatemala en adelante el Estado el Estado guatemalteco o Guatemala. El presente caso se relaciona con una serie de violaciones al debido proceso en el ", - "values": [ - "Comisi\u00f3n Interamericana de Derechos Humanos" - ] - }, - { - "text": "INFORME No. CASO ADMISIBILIDAD Y FONDO MANUEL MART\u00cdNEZ CORONADO GUATEMALA DE JULIO DE I. RESUMEN El de octubre de la Comisi\u00f3n Interamericana de Derechos Humanos en adelante la Comisi\u00f3n la Comisi\u00f3n Interamericana o la CIDH recibi\u00f3 una petici\u00f3n presentada por el Servicio P\u00fablico de Defensa Penal de Guatemala en adelante los peticionarios en nombre de Manuel Mart\u00ednez Coronado en adelante la presunta v\u00edctima en la cual se alega la responsabilidad de la Rep\u00fablica de Guatemala en adelante el ", - "values": [ - "Comisi\u00f3n Interamericana de Derechos Humanos" - ] - }, - { - "text": " de noviembre de Ref Caso No. Hugo Humberto Ruiz Fuentes Guatemala Se\u00f1or Secretario Tengo el agrado de dirigirme a usted en nombre de la Comisi\u00f3n Interamericana de Derechos Humanos con el objeto de someter a la jurisdicci\u00f3n de la Honorable Corte Interamericana de Derechos Humanos el Caso N\u00ba Hugo Humberto Ruiz Fuentes respecto de la Rep\u00fablica de Guatemala en adelante el Estado el Estado guatemalteco o Guatemala. El presente caso se relaciona con una serie de violaciones al debido proceso en", - "values": [ - "Comisi\u00f3n Interamericana de Derechos Humanos" - ] - }, - { - "text": "INFORME No. CASO FONDO HUGO HUMBERTO RUIZ FUENTES Y FAMILIA GUATEMALA DE JULIO DE El de enero de la Comisi\u00f3n recibi\u00f3 informaci\u00f3n por parte del Centro por la Justicia y el Derecho Internacional CEJIL el Instituto de Estudios Comparados en Ciencias Penales de Guatemala ICCPG y el Defensor P\u00fablico Reyes Ovidio Gir\u00f3n del Instituto de la Defensa P\u00fablica Penal de Guatemala en adelante los peticionarios en relaci\u00f3n con el proceso penal mediante el cual se conden\u00f3 a pena de muerte a Hugo Ruiz ", - "values": [ - "Comisi\u00f3n Interamericana de Derechos Humanos" - ] - }, - { - "text": "INFORME N\u00ba PETICI\u00d3N ADMISIBILIDAD HUGO HUMBERTO RUIZ FUENTES GUATEMALA de marzo de I. RESUMEN El de enero de la Comisi\u00f3n Interamericana de Derechos Humanos en adelante la Comisi\u00f3n Interamericana o la Comisi\u00f3n o la CIDH recibi\u00f3 informaci\u00f3n por parte del Centro por la Justicia y el Derecho Internacional CEJIL el Instituto de Estudios Comparados en Ciencias Penales de Guatemala ICCPG y el Defensor P\u00fablico Reyes Ovidio Gir\u00f3n del Instituto de la Defensa P\u00fablica Penal de Guatemala en adelante ", - "values": [ - "Comisi\u00f3n Interamericana de Derechos Humanos" - ] - }, - { - "text": "REF Caso N\u00ba Gustavo Petro Urrego Colombia de agosto de Se\u00f1or Secretario Tengo el agrado de dirigirme a usted en nombre de la Comisi\u00f3n Interamericana de Derechos Humanos con el objeto de presentar ante la Honorable Corte Interamericana de Derechos Humanos el caso N\u00ba Gustavo Petro Urrego respecto de la Rep\u00fablica de Colombia en adelante el Estado el Estado colombiano o Colombia relacionado con una serie de violaciones de derechos humanos cometidas en el marco del proceso disciplinario que ", - "values": [ - "Comisi\u00f3n Interamericana de Derechos Humanos" - ] - }, - { - "text": "INFORME N\u00ba CASO N\u00ba FONDO GUSTAVO FRANCISCO PETRO URREGO COLOMBIA DE OCTUBRE DE I. RESUMEN El de octubre de la Comisi\u00f3n Interamericana de Derechos Humanos en adelante la Comisi\u00f3n Interamericana la Comisi\u00f3n o la CIDH recibi\u00f3 una petici\u00f3n presentada por el Colectivo de Abogados Jos\u00e9 Alvear Restrepo CCAJAR y la Asociaci\u00f3n para la Promoci\u00f3n Social Alternativa MINGA en adelante la parte peticionaria en la cual se alega la responsabilidad internacional de la Rep\u00fablica de Colombia en adelante el", - "values": [ - "Comisi\u00f3n Interamericana de Derechos Humanos" - ] - }, - { - "text": "INFORME No. PETICI\u00d3N INFORME DE ADMISIBILIDAD GUSTAVO FRANCISCO PETRO URREGO COLOMBIA DE DICIEMBRE DE I. RESUMEN El de octubre de la Comisi\u00f3n Interamericana de Derechos Humanos en adelante la Comisi\u00f3n Interamericana la Comisi\u00f3n o la CIDH recibi\u00f3 una petici\u00f3n presentada por el Colectivo de Abogados Jos\u00e9 Alvear Restrepo CCAJAR y la Asociaci\u00f3n para la Promoci\u00f3n Social Alternativa MINGA en adelante los peticionarios contra Colombia en adelante Colombia o el Estado. La petici\u00f3n fue presentada", - "values": [ - "Comisi\u00f3n Interamericana de Derechos Humanos" - ] - }, - { - "text": " de febrero de REF Caso N\u00ba Comunidades Ind\u00edgenas Miembros de la Asociaci\u00f3n Lhaka Honhat Nuestra Tierra Argentina Se\u00f1or Secretario Tengo el agrado de dirigirme a usted en nombre de la Comisi\u00f3n Interamericana de Derechos Humanos con el objeto de someter a la jurisdicci\u00f3n de la Honorable Corte Interamericana de Derechos Humanos el Caso N\u00ba Comunidades ind\u00edgenas miembros de la Asociaci\u00f3n Lhaka Honhat Nuestra Tierra respecto de la Rep\u00fablica de Argentina en adelante el Estado el Estado argentino o", - "values": [ - "Comisi\u00f3n Interamericana de Derechos Humanos" - ] - }, - { - "text": " INFORME No. CASO COMUNIDADES INDIGENAS MIEMBROS DE LA ASOCIACION LHAKA HONHAT NUESTRA TIERRA FONDO ARGENTINA de enero de I. RESUMEN El de agosto de la Comisi\u00f3n Interamericana de Derechos Humanos en adelante la Comisi\u00f3n Interamericana o la CIDH recibi\u00f3 una petici\u00f3n en contra del Estado de Argentina en adelante el Estado o el Estado de Argentina relativa a la falta de garant\u00eda de los derechos territoriales de las comunidades ind\u00edgenas que habitan los Lotes Fiscales y del Departamento de", - "values": [ - "Comisi\u00f3n Interamericana de Derechos Humanos" - ] - }, - { - "text": "INFORME N PETICI\u00d3N ADMISIBILIDAD COMUNIDAD ABOR\u00cdGENES LHAKA HONHAT NUESTRA TIERRA ARGENTINA de octubre de I. RESUMEN El de agosto de la Asociaci\u00f3n Comunidades Abor\u00edgenes Lhaka Honhat en adelante los peticionarios o Asociaci\u00f3n Lhaka Honhat con el patrocinio del Centro de Estudios Legales y Sociales CELS y el Centro por la Justicia y el Derecho Internacional CEJIL presentaron una petici\u00f3n ante la Comisi\u00f3n Interamericana de Derechos Humanos en adelante la Comisi\u00f3n la Comisi\u00f3n Interamericana", - "values": [ - "Comisi\u00f3n Interamericana de Derechos Humanos" - ] - }, - { - "text": "INFORME N\u00ba CASO N\u00ba ADMISIBILIDAD Y FONDO MIGUEL \u00c1NGEL RODR\u00cdGUEZ REVOLORIO MIGUEL \u00c1NGEL L\u00d3PEZ CALO Y AN\u00cdBAL ARCHILA P\u00c9REZ GUATEMALA DE SEPTIEMBRE DE I. RESUMEN El de julio y de agosto de la Comisi\u00f3n Interamericana de Derechos Humanos en adelante la Comisi\u00f3n la Comisi\u00f3n Interamericana o la CIDH recibi\u00f3 una petici\u00f3n presentada por el Centra para la Acci\u00f3n Legal en Derechos Humanos en adelante los peticionarios en favor de Miguel \u00c1ngel Rodr\u00edguez Revolorio An\u00edbal Archila P\u00e9rez y Miguel \u00c1ngel", - "values": [ - "Comisi\u00f3n Interamericana de Derechos Humanos" - ] - }, - { - "text": " de enero de Ref Caso No. Miguel \u00c1ngel Rodr\u00edguez Revolorio Miguel \u00c1ngel L\u00f3pez Calo y An\u00edbal Archila P\u00e9rez Guatemala Se\u00f1or Secretario Tengo el agrado de dirigirme a usted en nombre de la Comisi\u00f3n Interamericana de Derechos Humanos con el objeto de someter a la jurisdicci\u00f3n de la Honorable Corte Interamericana de Derechos Humanos el Caso N\u00ba Miguel \u00c1ngel Rodr\u00edguez Revolorio Miguel \u00c1ngel L\u00f3pez Calo y An\u00edbal Archila P\u00e9rez respecto de la Rep\u00fablica de Guatemala en adelante el Estado el Estado o ", - "values": [ - "Comisi\u00f3n Interamericana de Derechos Humanos" - ] - }, - { - "text": "INFORME No. CASO FONDO NESTOR ROLANDO L\u00d3PEZ Y OTROS ARGENTINA de enero de I. RESUMEN El de abril de la Comisi\u00f3n Interamericana de Derechos Humanos en adelante la Comisi\u00f3n la Comisi\u00f3n Interamericana o la CIDH recibi\u00f3 una petici\u00f3n presentada por Gerardo Nicol\u00e1s Garc\u00eda Claudia Ram\u00edrez Marcelo Montero Flavia Piccinini Maximiliano S\u00e1nchez Milton Hern\u00e1n Kees Juan Manuel Kees Laura Marcela Serrano Alejandra Coria Oscar Su\u00e1rez Alejandra Marina Luna Carla Castiglioni y Julio Helisondo Jara en ", - "values": [ - "Comisi\u00f3n Interamericana de Derechos Humanos" - ] - }, - { - "text": " de enero de REF Caso N\u00ba N\u00e9stor Rolando L\u00f3pez y otros Argentina Se\u00f1or Secretario Tengo el agrado de dirigirme a usted en nombre de la Comisi\u00f3n Interamericana de Derechos Humanos con el objeto de presentar ante la Honorable Corte Interamericana de Derechos Humanos el Caso N\u00ba N\u00e9stor Rolando L\u00f3pez y otros respecto de la Rep\u00fablica de Argentina en adelante el Estado el Estado argentino o Argentina relacionado con la responsabilidad internacional por la violaci\u00f3n de los derechos a un trato humano", - "values": [ - "Comisi\u00f3n Interamericana de Derechos Humanos" - ] - }, - { - "text": "INFORME No. PETICI\u00d3N P ADMISIBILIDAD N\u00c9STOR ROLANDO L\u00d3PEZ Y OTROS ARGENTINA de enero de I. RESUMEN El de octubre de la Comisi\u00f3n Interamericana de Derechos Humanos en adelante la Comisi\u00f3n la CIDH o la Comisi\u00f3n Interamericana recibi\u00f3 una petici\u00f3n presentada por Gerardo Nicol\u00e1s Garc\u00eda Claudia Ram\u00edrez Marcelo Montero Flavia Piccinini Maximiliano S\u00e1nchez Milton Hern\u00e1n Kees Juan Manuel Kees Laura Marcela Serrano Alejandra Coria Oscar Su\u00e1rez Alejandra Marina Luna Carla Castiglioni y Julio Jara ", - "values": [ - "Comisi\u00f3n Interamericana de Derechos Humanos" - ] - }, - { - "text": " de marzo de REF Caso N\u00ba Oscar Ra\u00fal Gorigoitia Argentina Se\u00f1or Secretario Tengo el agrado de dirigirme a usted en nombre de la Comisi\u00f3n Interamericana de Derechos Humanos con el objeto de presentar ante la Honorable Corte Interamericana de Derechos Humanos el Caso N\u00ba Oscar Ra\u00fal Gorigoitia respecto de la Rep\u00fablica de Argentina en adelante el Estado el Estado argentino o Argentina relacionado con la inexistencia de un recurso ordinario que permita la revisi\u00f3n integral de la sentencia por el", - "values": [ - "Comisi\u00f3n Interamericana de Derechos Humanos" - ] - }, - { - "text": "INFORME N\u00ba CASO N\u00ba FONDO OSCAR RA\u00daL GORIGOITIA ARGENTINA DE SEPTIEMBRE DE I. RESUMEN El de enero de la Comisi\u00f3n Interamericana de Derechos Humanos en adelante la Comisi\u00f3n la Comisi\u00f3n Interamericana o la CIDH recibi\u00f3 una petici\u00f3n presentada por Carlos Varela \u00c1lvarez y Alejandro Acosta en adelante la parte peticionaria en la cual se aleg\u00f3 la responsabilidad de la Rep\u00fablica Argentina en adelante Estado argentino Argentina o el Estado por la inexistencia de un recurso ordinario que permita ", - "values": [ - "Comisi\u00f3n Interamericana de Derechos Humanos" - ] - }, - { - "text": "INFORME No. PETICI\u00d3N ADMISIBILIDAD POSADAS Y OTROS ARGENTINA de julio de I. RESUMEN El presente informe se refiere a las siguientes peticiones recibidas por la Comisi\u00f3n Interamericana de Derechos Humanos en lo sucesivo Comisi\u00f3n Interamericana Comisi\u00f3n o CIDH a favor de Marcelo Dar\u00edo Posadas Alberto Jos\u00e9 Ricciardi Alejandro Alcides S\u00e1nchez Carlos Eduardo Dom\u00ednguez Linares Carlos Osmar Barraza Carlos Rold\u00e1n y Oscar Franco C\u00e9sar Alberto Greco Christian Walter Mutuverria Enrique Luis Saccella", - "values": [ - "Comisi\u00f3n Interamericana de Derechos Humanos" - ] - }, - { - "text": " de febrero de REF Caso N\u00ba Jos\u00e9 Luis Hern\u00e1ndez Argentina Se\u00f1or Secretario Tengo el agrado de dirigirme a usted en nombre de la Comisi\u00f3n Interamericana de Derechos Humanos con el objeto de someter a la jurisdicci\u00f3n de la Honorable Corte Interamericana de Derechos Humanos el caso Jos\u00e9 Luis Hern\u00e1ndez respecto de la Rep\u00fablica de Argentina en adelante el Estado el Estado argentino o Argentina. El caso se relaciona con la falta de acceso a la salud de Jos\u00e9 Luis Hern\u00e1ndez quien contrajo meningitis", - "values": [ - "Comisi\u00f3n Interamericana de Derechos Humanos" - ] - }, - { - "text": "INFORME No. PETICI\u00d3N ADMISIBILIDAD JOS\u00c9 LUIS HERN\u00c1NDEZ ARGENTINA de julio de I. RESUMEN El de junio de la Comisi\u00f3n Interamericana de Derechos Humanos en lo sucesivo Comisi\u00f3n Interamericana Comisi\u00f3n o CIDH recibi\u00f3 una petici\u00f3n por parte de los abogados Ciro V. Annicchiarico Tom\u00e1s Ojea Quintana y Rodolfo Ojea Quintana en adelante los peticionarios a favor del se\u00f1or Jos\u00e9 Luis Hern\u00e1ndez y en contra de la Rep\u00fablica Argentina en lo sucesivo Argentina o el Estado. Los peticionarios alegan que ", - "values": [ - "Comisi\u00f3n Interamericana de Derechos Humanos" - ] - }, - { - "text": "INFORME No. CASO FONDO JOS\u00c9 LUIS HERN\u00c1NDEZ ARGENTINA DE SEPTIEMBRE DE I. RESUMEN El de junio de la Comisi\u00f3n Interamericana de Derechos Humanos en adelante la Comisi\u00f3n Interamericana la Comisi\u00f3n o la CIDH recibi\u00f3 una petici\u00f3n presentada por Ciro V. Annicchiarico Tom\u00e1s Ojea Quintana y Rodolfo Ojea Quintana en adelante la parte peticionaria a favor del se\u00f1or Jos\u00e9 Luis Hern\u00e1ndez alegando la responsabilidad internacional de la Rep\u00fablica Argentina en adelante El Estado argentino el Estado o ", - "values": [ - "Comisi\u00f3n Interamericana de Derechos Humanos" - ] - }, - { - "text": " de abril de Ref Caso Mirey Trueba Arciniega y otros M\u00e9xico Se\u00f1or Secretario Tengo el agrado de dirigirme a usted en nombre de la Comisi\u00f3n Interamericana de Derechos Humanos con el objeto de someter a la jurisdicci\u00f3n de la Honorable Corte Interamericana de Derechos Humanos el caso Mirey Trueba Arciniega y otros respecto de los Estados Unidos Mexicanos en adelante el Estado el Estado mexicano o M\u00e9xico. El caso se relaciona con la ejecuci\u00f3n extrajudicial del joven Mirey Trueba Arciniega el ", - "values": [ - "Comisi\u00f3n Interamericana de Derechos Humanos" - ] - }, - { - "text": "INFORME No. CASO INFORME DE FONDO MIREY TRUEBA ARCINIEGA Y OTROS M\u00c9XICO DE NOVIEMBRE DE I. RESUMEN El de agosto de la Comisi\u00f3n Interamericana de Derechos Humanos en adelante la Comisi\u00f3n Interamericana la Comisi\u00f3n o la CIDH recibi\u00f3 una petici\u00f3n presentada por la Comisi\u00f3n de Solidaridad y Defensa de los Derechos Humanos COSYDDHAC y el Centro por la Justicia y el Derecho Internacional CEJIL en adelante los peticionarios en la cual se aleg\u00f3 la responsabilidad internacional de M\u00e9xico en el ", - "values": [ - "Comisi\u00f3n Interamericana de Derechos Humanos" - ] - }, - { - "text": "INFORME N\u00ba PETICI\u00d3N ADMISIBILIDAD MIREY TRUEBA ARCINIEGA M\u00c9XICO de julio de I. RESUMEN El de agosto de la Comisi\u00f3n Interamericana de Derechos Humanos en adelante la Comisi\u00f3n o la Comisi\u00f3n Interamericana o la CIDH recibi\u00f3 una petici\u00f3n presentada por la Comisi\u00f3n de Solidaridad y Defensa de los Derechos Humanos COSYDDHAC y el Centro por la Justicia y el Derecho Internacional CEJIL en adelante los peticionarios en la cual se alega la responsabilidad internacional de los Estados Unidos en ", - "values": [ - "Comisi\u00f3n Interamericana de Derechos Humanos" - ] - }, - { - "text": " de abril de REF Caso N\u00ba Tirso Rom\u00e1n Valenzuela \u00c1vila y familiares Guatemala Se\u00f1or Secretario Tengo el agrado de dirigirme a usted en nombre de la Comisi\u00f3n Interamericana de Derechos Humanos con el objeto de someter a la jurisdicci\u00f3n de la Honorable Corte Interamericana de Derechos Humanos el Caso N\u00ba Tirso Rom\u00e1n Valenzuela \u00c1vila respecto de la Rep\u00fablica de Guatemala en adelante el Estado el Estado guatemalteco o Guatemala relacionado con una serie de violaciones al debido proceso cometidas ", - "values": [ - "Comisi\u00f3n Interamericana de Derechos Humanos" - ] - }, - { - "text": "CASO ADMISIBILIDAD Y FONDO TIRSO ROM\u00c1N VALENZUELA \u00c1VILA Y FAMILIARES GUATEMALA DE OCTUBRE DE I. RESUMEN El de octubre de la Comisi\u00f3n Interamericana de Derechos Humanos en adelante la Comisi\u00f3n la Comisi\u00f3n Interamericana o la CIDH recibi\u00f3 una petici\u00f3n presentada por el Instituto de la Defensa P\u00fablica Penal de Guatemala en adelante los peticionarios en la cual se alega la responsabilidad de la Rep\u00fablica de Guatemala en adelante Guatemala el Estado o el Estado guatemalteco por la violaci\u00f3n de", - "values": [ - "Comisi\u00f3n Interamericana de Derechos Humanos" - ] - }, - { - "text": "RESOLUCI\u00d3N DEL PRESIDENTE DE LA CORTE INTERAMERICANA DE DERECHOS HUMANOS DE DE SEPTIEMBRE DE FONDO DE ASISTENCIA LEGAL DE V\u00cdCTIMAS CASO D\u00cdAZ LORETO Y OTROS VS. VENEZUELA VISTO El escrito de de diciembre de y sus anexos recibidos el de enero de mediante los cuales la Comisi\u00f3n Interamericana de Derechos Humanos en adelante la Comisi\u00f3n Interamericana o la Comisi\u00f3n someti\u00f3 ante la Corte Interamericana de Derechos Humanos en adelante la Corte Interamericana la Corte o el Tribunal el presente ", - "values": [ - "Corte Interamericana de Derechos Humanos" - ] - }, - { - "text": "RESOLUCI\u00d3N DEL PRESIDENTE DE LA CORTE INTERAMERICANA DE DERECHOS HUMANOS DE DE SEPTIEMBRE DE FONDO DE ASISTENCIA LEGAL DE V\u00cdCTIMAS CASO ROSADIO VILLAVICENCIO VS. PER\u00da VISTO El escrito de de septiembre de y sus anexos mediante los cuales la Comisi\u00f3n Interamericana de Derechos Humanos en adelante la Comisi\u00f3n Interamericana o la Comisi\u00f3n someti\u00f3 ante la Corte Interamericana de Derechos Humanos en adelante la Corte Interamericana la Corte o el Tribunal el presente caso. El escrito de de de ", - "values": [ - "Corte Interamericana de Derechos Humanos" - ] - }, - { - "text": "RESOLUCI\u00d3N DEL PRESIDENTE DE LA CORTE INTERAMERICANA DE DERECHOS HUMANOS DE DE AGOSTO DE CASO \u00c1LVAREZ RAMOS VS. VENEZUELA VISTO La Resoluci\u00f3n del Presidente de la Corte Interamericana de Derechos Humanos en adelante la Corte o el Tribunal de de junio de en adelante Resoluci\u00f3n del Presidente a trav\u00e9s de la cual entre otros orden\u00f3 la recepci\u00f3n de diversas declaraciones de presuntas v\u00edctimas testigos y peritos en audiencia y a trav\u00e9s de affid\u00e1vit y convoc\u00f3 al Estado de Venezuela en adelante ", - "values": [ - "Corte Interamericana de Derechos Humanos" - ] - }, - { - "text": " de septiembre de REF Caso N\u00ba Jorge Rosadio Villavicencio Per\u00fa Se\u00f1or Secretario Tengo el agrado de dirigirme a usted en nombre de la Comisi\u00f3n Interamericana de Derechos Humanos con el objeto de someter a la jurisdicci\u00f3n de la Honorable Corte Interamericana de Derechos Humanos el Caso N\u00ba Jorge Rosadio Villavicencio respecto de la Rep\u00fablica de Per\u00fa en adelante el Estado el Estado peruano o Per\u00fa. El presente caso se relaciona con diversas violaciones al debido proceso que se cometieron en los ", - "values": [ - "Corte Interamericana de Derechos Humanos" - ] - }, - { - "text": "RESOLUCI\u00d3N DE LA CORTE INTERAMERICANA DE DERECHOS HUMANOS DE DE AGOSTO DE AMPLIACI\u00d3N DE MEDIDAS PROVISIONALES RESPECTO NICARAGUA ASUNTO POBLADORES DE LAS COMUNIDADES DEL PUEBLO IND\u00cdGENA MISKITU DE LA REGI\u00d3N COSTA CARIBE NORTE VISTO La Resoluci\u00f3n de la Corte Interamericana de Derechos Humanos en adelante tambi\u00e9n la Corte Interamericana la Corte o el Tribunal de de septiembre de mediante la cual orden\u00f3 al Estado de Nicaragua inter alia i erradicar la violencia y proteger la vida integridad ", - "values": [ - "Corte Interamericana de Derechos Humanos" - ] - }, - { - "text": "RESOLUCI\u00d3N DE LA CORTE INTERAMERICANA DE DERECHOS HUMANOS DE DE AGOSTO DE MEDIDAS PROVISIONALES RESPECTO DE LA REP\u00daBLICA BOLIVARIANA DE VENEZUELA ASUNTO LUISIANA R\u00cdOS Y OTROS VISTO La Resoluci\u00f3n dictada por la Corte Interamericana de Derechos Humanos en adelante la Corte o el Tribunal el de noviembre de mediante la cual orden\u00f3 a la Rep\u00fablica Bolivariana de Venezuela en adelante Estado o Venezuela a solicitud de la Comisi\u00f3n Interamericana de Derechos Humanos en adelante la Comisi\u00f3n o la ", - "values": [ - "Corte Interamericana de Derechos Humanos" - ] - }, - { - "text": "CORTE INTERAMERICANA DE DERECHOS HUMANOS CASO GUTI\u00c9RREZ HERN\u00c1NDEZ Y OTROS VS. GUATEMALA SENTENCIA DE DE AGOSTO DE Interpretaci\u00f3n de Sentencia de Excepciones Preliminares Fondo Reparaciones y Costas En el caso Guti\u00e9rrez Hern\u00e1ndez y otros Vs. Guatemala la Corte Interamericana de Derechos Humanos en adelante la Corte Interamericana la Corte o el Tribunal integrada por los siguientes Jueces Eduardo Ferrer MacGregor Poisot Presidente Humberto Antonio Sierra Porto Juez Elizabeth Odio Benito Jueza ", - "values": [ - "Corte Interamericana de Derechos Humanos" - ] - }, - { - "text": "RESOLUCI\u00d3N DEL PRESIDENTE DE LA CORTE INTERAMERICANA DE DERECHOS HUMANOS DE DE AGOSTO DE SOLICITUD DE MEDIDAS PROVISIONALES RESPECTO DE LA REP\u00daBLICA ARGENTINA CASO ROMERO FERIS VS. ARGENTINA VISTO El escrito de sometimiento del caso de de junio de mediante el cual la Comisi\u00f3n Interamericana de Derechos Humanos en adelante la Comisi\u00f3n Interamericana o la Comisi\u00f3n present\u00f3 a la Corte Interamericana de Derechos Humanos en adelante la Corte o el Tribunal el Caso Romero Feris Vs. Argentina. El", - "values": [ - "Corte Interamericana de Derechos Humanos" - ] - }, - { - "text": "RESOLUCI\u00d3N DEL PRESIDENTE DE LA CORTE INTERAMERICANA DE DERECHOS HUMANOS DE DE AGOSTO DE CASO COLINDRES SCHONENBERG VS. EL SALVADOR VISTO El escrito de sometimiento del caso y el Informe de Fondo de la Comisi\u00f3n Interamericana de Derechos Humanos en adelante la Comisi\u00f3n Interamericana o la Comisi\u00f3n el escrito de solicitudes argumentos y pruebas en adelante el escrito de solicitudes y argumentos de los representantes de la presunta v\u00edctima en adelante los representantes y el escrito de al ", - "values": [ - "Corte Interamericana de Derechos Humanos" - ] - }, - { - "text": "RESOLUCI\u00d3N DEL PRESIDENTE DE LA CORTE INTERAMERICANA DE DERECHOS HUMANOS DE DE AGOSTO DE CASO G\u00d3MEZ VIRULA Y OTROS VS. GUATEMALA CONVOCATORIA A AUDIENCIA VISTO El escrito de sometimiento del caso y el Informe de Admisibilidad y Fondo de la Comisi\u00f3n Interamericana de Derechos Humanos en adelante la Comisi\u00f3n Interamericana o la Comisi\u00f3n el escrito de solicitudes argumentos y pruebas en adelante el escrito de solicitudes y argumentos de los representantes de la presunta v\u00edctima en adelante los ", - "values": [ - "Corte Interamericana de Derechos Humanos" - ] - }, - { - "text": "RESOLUCI\u00d3N DE LA CORTE INTERAMERICANA DE DERECHOS HUMANOS DE DE MAYO DE REINTEGRO AL FONDO DE ASISTENCIA LEGAL DE V\u00cdCTIMAS CASOS POLLO RIVERA Y OTROS Y LAGOS DEL CAMPO VS. PER\u00da VISTO Las Sentencias emitidas por la Corte Interamericana de Derechos Humanos en adelante la Corte la Corte Interamericana o el Tribunal el de octubre de en el caso Pollo Rivera y otros y el de agosto de en el caso Lagos del Campo en adelante los dos casos ambas contra la Rep\u00fablica del Per\u00fa en adelante el Estado o", - "values": [ - "Corte Interamericana de Derechos Humanos" - ] - }, - { - "text": "CORTE INTERAMERICANA DE DERECHOS HUMANOS CASO COC MAX Y OTROS MASACRE DE XAM\u00c1N VS. GUATEMALA SENTENCIA DE DE AGOSTO DE Fondo Reparaciones y Costas En el caso Coc Max y otros Masacre de Xam\u00e1n vs. Guatemala la Corte Interamericana de Derechos Humanos en adelante tambi\u00e9n la Corte Interamericana la Corte o el Tribunal integrada por los siguientes Jueces Eduardo Ferrer MacGregor Poisot Presidente Humberto Antonio Sierra Porto Juez Elizabeth Odio Benito Jueza Eugenio Ra\u00fal Zaffaroni Juez y L. ", - "values": [ - "Corte Interamericana de Derechos Humanos" - ] - }, - { - "text": "CORTE INTERAMERICANA DE DERECHOS HUMANOS CASO MUN\u00c1RRIZ ESCOBAR Y OTROS VS. PER\u00da SENTENCIA DE DE AGOSTO DE Excepci\u00f3n Preliminar Fondo Reparaciones y Costas En el caso Mun\u00e1rriz Escobar y otros Vs. Per\u00fa la Corte Interamericana de Derechos Humanos en adelante la Corte Interamericana la Corte o este Tribunal integrada por los siguientes jueces Eduardo Ferrer MacGregor Poisot Presidente Humberto Antonio Sierra Porto Juez Elizabeth Odio Benito Jueza Eugenio Ra\u00fal Zaffaroni Juez y Patricio Pazmi\u00f1o ", - "values": [ - "Corte Interamericana de Derechos Humanos" - ] - }, - { - "text": "INFORME No. PETICI\u00d3N ADMISIBILIDAD JOS\u00c9 AGAPITO RUANO TORRES EL SALVADOR de octubre de I. RESUMEN El de diciembre de la Comisi\u00f3n Interamericana de Derechos Humanos en adelante la Comisi\u00f3n la Comisi\u00f3n Interamericana o la CIDH recibi\u00f3 una denuncia presentada por Pedro Torres H\u00e9rcules en adelante el peticionario en la cual se alega la responsabilidad internacional de la Rep\u00fablica de El Salvador en adelante el Estado El Salvador o el Estado salvadore\u00f1o por presuntas violaciones a las y ", - "values": [ - "Comisi\u00f3n Interamericana de Derechos Humanos" - ] - }, - { - "text": "RESOLUCI\u00d3N DEL PRESIDENTE DE LA CORTE INTERAMERICANA DE DERECHOS HUMANOS DE DE MARZO DE CASO IBSEN C\u00c1RDENAS E IBSEN PE\u00d1A Vs. BOLIVIA VISTOS El escrito de demanda presentado por la Comisi\u00f3n Interamericana de Derechos Humanos en adelante la Comisi\u00f3n Interamericana o la Comisi\u00f3n ante la Corte Interamericana de Derechos Humanos en adelante la Corte Interamericana la Corte o el Tribunal el de mayo de mediante el cual ofreci\u00f3 cinco declaraciones testimoniales y dos dict\u00e1menes periciales. De los ", - "values": [ - "Corte Interamericana de Derechos Humanos" - ] - }, - { - "text": "RESOLUCI\u00d3N DE LA CORTE INTERAMERICANA DE DERECHOS HUMANOS DE DE SEPTIEMBRE DE CASO GUTI\u00c9RREZ HERN\u00c1NDEZ Y OTROS VS. GUATEMALA SUPERVISI\u00d3N DE CUMPLIMIENTO DE SENTENCIA VISTO La Sentencia de excepciones preliminares fondo reparaciones y costas dictada por la Corte Interamericana de Derechos Humanos en adelante la Corte la Corte Interamericana o el Tribunal el de agosto de En dicha Sentencia la Corte declar\u00f3 la responsabilidad internacional del Estado de Guatemala en adelante el Estado o en", - "values": [ - "Corte Interamericana de Derechos Humanos" - ] - }, - { - "text": "RESOLUCI\u00d3N DE LA CORTE INTERAMERICANA DE DERECHOS HUMANOS DE DE SEPTIEMRE DE MEDIDAS PROVISIONALES RESPECTO DE EL SALVADOR ASUNTO MEL\u00c9NDEZ QUIJANO Y OTROS VISTO Las Resoluciones de la Corte Interamericana de Derechos Humanos en adelante tambi\u00e9n la Corte o el Tribunal emitidas los d\u00edas de marzo de de mayo de de noviembre de de febrero de de agosto de de octubre de y de abril y de junio de En esta \u00faltima la Corte resolvi\u00f3 inter alia Restablecer las medidas provisionales a favor", - "values": [ - "Corte Interamericana de Derechos Humanos" - ] - }, - { - "text": "VOTO CONCURRENTE DEL JUEZ EDUARDO VIO GROSSI CORTE INTERAMERICANA DE DERECHOS HUMANOS CASO TERRONES SILVA Y OTROS VS. PER\u00da SENTENCIA DE DE SEPTIEMBRE DE Excepciones Preliminares Fondo Reparaciones y Costas. Se expide el presente voto concurrente respecto a lo resuelto en la sentencia del ep\u00edgrafe en cuanto a la excepci\u00f3n del previo agotamiento de los recursos internos. Y se procede as\u00ed en m\u00e9rito de que si bien es cierto que la posici\u00f3n del suscrito expuesta en varios votos individuales es que", - "values": [ - "Corte Interamericana de Derechos Humanos" - ] - }, - { - "text": "CORTE INTERAMERICANA DE DERECHOS HUMANOS CASO CUSCUL PIVARAL Y OTROS VS. GUATEMALA SENTENCIA DE DE AGOSTO DE Excepci\u00f3n Preliminar Fondo Reparaciones y Costas En el Caso Cuscul Pivaral y otros Vs. Guatemala la Corte Interamericana de Derechos Humanos en adelante la Corte Interamericana la Corte o este Tribunal integrada por los siguientes Jueces y Jueza Eduardo Ferrer MacGregor Poisot Presidente Humberto Antonio Sierra Porto Juez Elizabeth Odio Benito Jueza Eugenio Ra\u00fal Zaffaroni Juez y ", - "values": [ - "Corte Interamericana de Derechos Humanos" - ] - }, - { - "text": "VOTO RAZONADO DEL JUEZ EDUARDO FERRER MACGREGOR POISOT CASO CUSCUL PIVARAL Y OTROS VS. GUATEMALA SENTENCIA DE DE AGOSTO DE Excepci\u00f3n Preliminar Fondo Reparaciones y Costas La Jueza Elizabeth Odio Benito y el Juez Patricio Pazmi\u00f1o Freire se adhirieron al presente Voto del Juez Eduardo Ferrer MacGregor Poisot. INTRODUCCI\u00d3N LA EXIGIBILIDAD DIRECTA DEL DERECHO A LA SALUD Y LA OBLIGACI\u00d3N DE PROGRESIVIDAD Y NO REGRESIVIDAD La sentencia en el caso Cuscul Pivaral y otros Vs. Guatemala en adelante la", - "values": [ - "Corte Interamericana de Derechos Humanos" - ] - }, - { - "text": "CORTE INTERAMERICANA DE DERECHOS HUMANOS CASO TERRONES SILVA Y OTROS VS. PER\u00da SENTENCIA DE DE SEPTIEMBRE DE Excepciones Preliminares Fondo Reparaciones y Costas En el caso Terrones Silva y Otros Vs. Per\u00fa la Corte Interamericana de Derechos Humanos en adelante la Corte Interamericana la Corte o este Tribunal integrada por los siguientes Jueces Eduardo Ferrer MacGregor Poisot Presidente Eduardo Vio Grossi Juez Vicepresidente Humberto Antonio Sierra Porto Juez Eugenio Ra\u00fal Zaffaroni Juez y ", - "values": [ - "Corte Interamericana de Derechos Humanos" - ] - }, - { - "text": "CORTE INTERAMERICANA DE DERECHOS HUMANOS CASO TRABAJADORES CESADOS DE PETROPER\u00da Y OTROS VS. PER\u00da SENTENCIA DE DE AGOSTO DE Interpretaci\u00f3n de la Sentencia de Excepciones Preliminares Fondo Reparaciones y Costas En el caso Trabajadores Cesados de Petroper\u00fa y otros Vs Per\u00fa la Corte Interamericana de Derechos Humanos en adelante la Corte Interamericana la Corte o el Tribunal integrada por los siguientes jueces Eduardo Ferrer MacGregor Poisot Presidente Humberto Antonio Sierra Porto Juez Odio ", - "values": [ - "Corte Interamericana de Derechos Humanos" - ] - }, - { - "text": "RESOLUCI\u00d3N DE LA CORTE INTERAMERICANA DE DERECHOS HUMANOS DE DE SEPTIEMBRE DE CASO TRABAJADORES CESADOS DE PETROPER\u00da Y OTROS VS. PER\u00da SUPERVISI\u00d3N DE CUMPLIMIENTO DE SENTENCIA VISTO La Sentencia de excepciones preliminares fondo reparaciones y costas dictada por la Corte Interamericana de Derechos Humanos en adelante la Corte la Corte Interamericana o el Tribunal el de noviembre de En dicha Sentencia la Corte declar\u00f3 la responsabilidad internacional del Estado del Per\u00fa en adelante el o ", - "values": [ - "Corte Interamericana de Derechos Humanos" - ] - }, - { - "text": " de agosto de REF Caso N\u00ba Azul Rojas Mar\u00edn y Otra Per\u00fa Se\u00f1or Secretario Tengo el agrado de dirigirme a usted en nombre de la Comisi\u00f3n Interamericana de Derechos Humanos con el objeto de someter a la jurisdicci\u00f3n de la Honorable Corte Interamericana de Derechos Humanos el Caso N\u00ba Azul Rojas Mar\u00edn y Otra respecto de la Rep\u00fablica de Per\u00fa en adelante el Estado el Estado peruano o Per\u00fa. El presente caso se relaciona con la privaci\u00f3n de libertad ilegal arbitraria y discriminatoria de Azul Rojas ", - "values": [ - "Comisi\u00f3n Interamericana de Derechos Humanos" - ] - }, - { - "text": "INFORME No. CASO FONDO AZUL ROJAS MAR\u00cdN Y OTRA PER\u00da de febrero de I. RESUMEN El de abril de la Comisi\u00f3n Interamericana de Derechos Humanos en adelante la Comisi\u00f3n Interamericana la Comisi\u00f3n o la CIDH recibi\u00f3 una petici\u00f3n presentada por la Coordinadora Nacional de Derechos Humanos el Centro de Promoci\u00f3n y Defensa de los Derechos Sexuales y Reproductivos PROMSEX y Redress Trust en adelante la parte peticionaria en la cual se alega la responsabilidad internacional de la Rep\u00fablica del Per\u00fa ", - "values": [ - "Comisi\u00f3n Interamericana de Derechos Humanos" - ] - }, - { - "text": "INFORME NO. PETICI\u00d3N ADMISIBILIDAD LUIS ALBERTO ROJAS MAR\u00cdN PER\u00da DE NOVIEMBRE DE I. RESUMEN El de abril de la Comisi\u00f3n Interamericana de Derechos Humanos en adelante tambi\u00e9n la Comisi\u00f3n Interamericana la Comisi\u00f3n o la CIDH recibi\u00f3 una petici\u00f3n presentada por la Coordinadora Nacional de Derechos Humanos el Centro de Promoci\u00f3n y Defensa de los Derechos Sexuales y Reproductivos PROMSEX y Redress Trust Seeking Reparations for Torture Survivors en adelante los peticionarios en representaci\u00f3n ", - "values": [ - "Comisi\u00f3n Interamericana de Derechos Humanos" - ] - }, - { - "text": "CORTE INTERAMERICANA DE DERECHOS HUMANOS CASO LAGOS DEL CAMPO VS. PER\u00da SENTENCIA DE DE NOVIEMBRE DE Interpretaci\u00f3n de Sentencia de Excepciones Preliminares Fondo Reparaciones y Costas En el caso Lagos del Campo Vs. Per\u00fa La Corte Interamericana de Derechos Humanos en adelante la Corte Interamericana la Corte o el Tribunal integrada por los siguientes jueces Eduardo Ferrer MacGregor Poisot Presidente Eduardo Vio Grossi Vicepresidente Elizabeth Odio Benito Jueza Eugenio Ra\u00fal Zaffaroni Juez y ", - "values": [ - "Corte Interamericana de Derechos Humanos" - ] - }, - { - "text": "CORTE INTERAMERICANA DE DERECHOS HUMANOS CASO CARVAJAL CARVAJAL Y OTROS VS. COLOMBIA SENTENCIA DE DE NOVIEMBRE DE Interpretaci\u00f3n de la Sentencia de Fondo Reparaciones y Costas En el caso Carvajal Carvajal y Otros Vs. Colombia la Corte Interamericana de Derechos Humanos en adelante la Corte Interamericana la Corte o el Tribunal integrada por los siguientes Jueces Eduardo Ferrer MacGregor Poisot Presidente Eduardo Vio Grossi Vicepresidente Elizabeth Odio Benito Jueza Eugenio Ra\u00fal Zaffaroni Juez", - "values": [ - "Corte Interamericana de Derechos Humanos" - ] - }, - { - "text": "CORTE INTERAMERICANA DE DERECHOS HUMANOS CASO L\u00d3PEZ SOTO Y OTROS VS. VENEZUELA SENTENCIA DE DE SEPTIEMBRE DE Fondo Reparaciones y Costas En el caso L\u00f3pez Soto y otros la Corte Interamericana de Derechos Humanos en adelante la Corte Interamericana la Corte o este Tribunal integrada por los siguientes jueces Eduardo Ferrer MacGregor Poisot Presidente Eduardo Vio Grossi Vicepresidente Humberto Antonio Sierra Porto Juez Eugenio Ra\u00fal Zaffaroni Juez y L. Patricio Pazmi\u00f1o Freire Juez presentes ", - "values": [ - "Corte Interamericana de Derechos Humanos" - ] - }, - { - "text": "RESOLUCI\u00d3N DE LA CORTE INTERAMERICANA DE DERECHOS HUMANOS DE DE SEPTIEMBRE DE CASO POLLO RIVERA Y OTROS Y CASO LAGOS DEL CAMPO VS. PER\u00da SUPERVISI\u00d3N DE CUMPLIMIENTO DE SENTENCIA VISTO Las Sentencias emitidas por la Corte Interamericana de Derechos Humanos en adelante la Corte Interamericana la Corte o el Tribunal el de octubre de en el caso Pollo Rivera y otros y el de agosto de en el caso Lagos del Campo en adelante los dos casos ambos contra la Rep\u00fablica del Per\u00fa en adelante el Estado o", - "values": [ - "Corte Interamericana de Derechos Humanos" - ] - }, - { - "text": "CORTE INTERAMERICANA DE DERECHOS HUMANOS CASO ESCALERAS MEJ\u00cdA Y OTROS VS. HONDURAS SENTENCIA DE DE SEPTIEMBRE DE En el Caso Escaleras Mej\u00eda y Otros la Corte Interamericana de Derechos Humanos en adelante la Corte Interamericana la Corte o el Tribunal integrada por los siguientes Jueces Eduardo Ferrer MacGregor Poisot Presidente Eduardo Vio Grossi Vicepresidente Humberto Antonio Sierra Porto Juez Eugenio Raul Zaffaroni Juez L. Patricio Pazmino Freire Juez y presentes adem\u00e1s Pablo Saavedra y ", - "values": [ - "Corte Interamericana de Derechos Humanos" - ] - }, - { - "text": " de octubre de REF Caso N\u00ba Juan Carlos Flores Bedregal y familia Bolivia Se\u00f1or Secretario Tengo el agrado de dirigirme a usted en nombre de la Comisi\u00f3n Interamericana de Derechos Humanos con el objeto de someter a la jurisdicci\u00f3n de la Honorable Corte Interamericana de Derechos Humanos el Caso N\u00ba Juan Carlos Flores Bedregal y familia respecto al Estado Plurinacional de Bolivia en adelante el Estado de Bolivia el Estado boliviano o Bolivia relacionado con la responsabilidad internacional del", - "values": [ - "Comisi\u00f3n Interamericana de Derechos Humanos" - ] - }, - { - "text": "INFORME No. CASO FONDO JUAN CARLOS FLORES BEDREGAL Y FAMILIARES BOLIVIA de mayo de I. RESUMEN El de junio de la Comisi\u00f3n Interamericana de Derechos Humanos en adelante la Comisi\u00f3n Interamericana la Comisi\u00f3n o la CIDH recibi\u00f3 una petici\u00f3n presentada por Olga Flores Bedregal en adelante la parte peticionaria en la cual se aleg\u00f3 la responsabilidad internacional del Estado Plurinacional de Bolivia en adelante el Estado boliviano el Estado o Bolivia por la desaparici\u00f3n forzada de su hermano ", - "values": [ - "Comisi\u00f3n Interamericana de Derechos Humanos" - ] - }, - { - "text": "INFORME No. PETICI\u00d3N ADMISIBILIDAD JUAN CARLOS FLORES BEDREGAL BOLIVIA de agosto de I. RESUMEN El de junio de la Comisi\u00f3n Interamericana de Derechos Humanos en adelante tambi\u00e9n la Comisi\u00f3n Interamericana la Comisi\u00f3n o la CIDH recibi\u00f3 una petici\u00f3n presentada por Olga Flores Bedregal en adelante tambi\u00e9n la peticionaria en representaci\u00f3n del se\u00f1or Juan Carlos Flores Bedregal en adelante tambi\u00e9n la presunta v\u00edctima o el se\u00f1or Flores Bedregal en la cual se alega la violaci\u00f3n por parte del ", - "values": [ - "Comisi\u00f3n Interamericana de Derechos Humanos" - ] - }, - { - "text": "INFORME N\u00ba ADMISIBILIDAD Y FONDO CASO EMPLEADOS DE LA F\u00c1BRICA DE FUEGOS EN SANTO ANT\u00d4NIO DE JESUS Y SUS FAMILIARES BRASIL de marzo de I. RESUMEN El de diciembre de la Comisi\u00f3n Interamericana de Derechos Humanos en adelante la Comisi\u00f3n Interamericana la Comisi\u00f3n o la CIDH recibi\u00f3 una denuncia presentada por el Centro de Justi\u00e7a Global Movimento de Dezembro Comiss\u00e3o de Direitos Humanos da Ordem dos Advogados do Brasil OAB Subse\u00e7\u00e3o de Salvador F\u00f3rum de Direitos Humanos de Santo Ant\u00f4nio ", - "values": [ - "Comisi\u00f3n Interamericana de Derechos Humanos" - ] - }, - { - "text": " de septiembre de REF Caso N\u00ba Empleados de la F\u00e1brica de Fuegos en Santo Antonio de Jes\u00fas y sus familiares Brasil Se\u00f1or Secretario Tengo el agrado de dirigirme a usted en nombre de la Comisi\u00f3n Interamericana de Derechos Humanos con el objeto de someter a la jurisdicci\u00f3n de la Honorable Corte Interamericana de Derechos Humanos el Caso N\u00ba Empleados de la F\u00e1brica de Fuegos en Santo Antonio de Jes\u00fas y sus familiares respecto de la Rep\u00fablica Federativa de Brasil en adelante el Estado el Estado ", - "values": [ - "Comisi\u00f3n Interamericana de Derechos Humanos" - ] - }, - { - "text": " de septiembre de REF Caso N\u00ba Julio C\u00e9sar Ram\u00f3n del Valle y Carlos Eduardo Dom\u00ednguez Linares Argentina Se\u00f1or Secretario Tengo el agrado de dirigirme a usted en nombre de la Comisi\u00f3n Interamericana de Derechos Humanos con el objeto de presentar ante la Honorable Corte Interamericana de Derechos Humanos el Caso N\u00ba Julio C\u00e9sar Ram\u00f3n Del Valle y Carlos Eduardo Dom\u00ednguez Linares respecto de la Rep\u00fablica de Argentina en adelante el Estado el Estado argentino o Argentina. En diciembre de la del", - "values": [ - "Comisi\u00f3n Interamericana de Derechos Humanos" - ] - }, - { - "text": "INFORME N\u00ba CASO FONDO JULIO C\u00c9SAR RAM\u00d3N DEL VALLE AMBROSIO Y CARLOS EDUARDO DOM\u00cdNGUEZ LINARES ARGENTINA DE SEPTIEMBRE DE I. RESUMEN El de julio y de octubre de Julio C\u00e9sar Ram\u00f3n Del Valle Ambrosio y Carlos Eduardo Dom\u00ednguez Linares presentaron respectivamente peticiones ante la Comisi\u00f3n Interamericana de Derechos Humanos en adelante la Comisi\u00f3n Interamericana la Comisi\u00f3n o la CIDH en las que se aleg\u00f3 la responsabilidad internacional de la Rep\u00fablica de Argentina en adelante Argentina el ", - "values": [ - "Comisi\u00f3n Interamericana de Derechos Humanos" - ] - }, - { - "text": " de julio de REF Caso N\u00ba Vicente Ariel Noguera y familia Paraguay Se\u00f1or Secretario Tengo el agrado de dirigirme a usted en nombre de la Comisi\u00f3n Interamericana de Derechos Humanos con el objeto de someter a la jurisdicci\u00f3n de la Honorable Corte Interamericana de Derechos Humanos el Caso N\u00ba Vicente Ariel Noguera y Familia respecto de la Rep\u00fablica de Paraguay en adelante el Estado el Estado paraguayo o Paraguay relacionado con la muerte de Vicente Ariel Noguera el de enero de recluta de ", - "values": [ - "Comisi\u00f3n Interamericana de Derechos Humanos" - ] - }, - { - "text": "INFORME No. CASO VICENTE ARIEL NOGUERA Y FAMILIA PARAGUAY DE FEBRERO DE I. RESUMEN El de octubre de la Comisi\u00f3n Interamericana de Derechos Humanos en adelante la Comisi\u00f3n Interamericana la Comisi\u00f3n o la CIDH recibi\u00f3 una petici\u00f3n presentada por Maria Noguera en adelante la parte peticionaria en la cual se alega la responsabilidad internacional de la Rep\u00fablica del Paraguay en adelante el Estado paraguayo el Estado o Paraguay por violaciones a los derechos humanos relacionadas con la muerte", - "values": [ - "Comisi\u00f3n Interamericana de Derechos Humanos" - ] - }, - { - "text": "INFORME No. CASO ADMISIBILIDAD VICENTE ARIEL NOGUERA PARAGUAY de marzo de I. RESUMEN El de octubre de la Comisi\u00f3n Interamericana de Derechos Humanos en adelante la Comisi\u00f3n Interamericana o la CIDH recibi\u00f3 una denuncia presentada por la se\u00f1ora Mar\u00eda Ramona Isabel Noguera Dom\u00ednguez a nombre propio y en representaci\u00f3n de la Asociaci\u00f3n de Familiares V\u00edctimas del Servicio Militar en adelante AFAVISEM o la peticionaria en la cual se alega responsabilidad internacional de la Rep\u00fablica de en ", - "values": [ - "Comisi\u00f3n Interamericana de Derechos Humanos" - ] - }, - { - "text": "CORTE INTERAMERICANA DE DERECHOS HUMANOS CASO MUJERES V\u00cdCTIMAS DE TORTURA SEXUAL EN ATENCO VS. M\u00c9XICO SENTENCIA DE DE NOVIEMBRE DE Excepci\u00f3n Preliminar Fondo Reparaciones y Costas En el caso Mujeres v\u00edctimas de tortura sexual en Atenco la Corte Interamericana de Derechos Humanos en adelante la Corte Interamericana la Corte o este Tribunal integrada por los siguientes Jueces Eduardo Vio Grossi Presidente en ejercicio Humberto Antonio Sierra Porto Juez Elizabeth Odio Benito Jueza Eugenio Ra\u00fal ", - "values": [ - "Corte Interamericana de Derechos Humanos" - ] - }, - { - "text": "CORTE INTERAMERICANA DE DERECHOS HUMANOS CASO ALVARADO ESPINOZA Y OTROS VS. M\u00c9XICO SENTENCIA DE DE NOVIEMBRE DE Fondo Reparaciones y Costas En el caso Alvarado Espinoza y otros la Corte Interamericana de Derechos Humanos en adelante la Corte Interamericana la Corte o este Tribunal integrada por los siguientes jueces Eduardo Vio Grossi Presidente en ejercicio Humberto Antonio Sierra Porto Juez Elizabeth Odio Benito Jueza Eugenio Ra\u00fal Zaffaroni Juez y L. Patricio Pazmi\u00f1o Freire Juez presente ", - "values": [ - "Corte Interamericana de Derechos Humanos" - ] - }, - { - "text": "RESOLUCI\u00d3N DEL PRESIDENTE DE LA CORTE INTERAMERICANA DE DERECHOS HUMANOS DE DE DICIEMBRE DE CASO JENKINS VS. ARGENTINA CONVOCATORIA A AUDIENCIA VISTO El escrito de sometimiento del caso y el Informe de Fondo de la Comisi\u00f3n Interamericana de Derechos Humanos en adelante la Comisi\u00f3n Interamericana o la Comisi\u00f3n el escrito de solicitudes argumentos y pruebas en adelante el escrito de solicitudes y argumentos de los representantes de la presunta v\u00edctima en adelante los representantes y el de ", - "values": [ - "Corte Interamericana de Derechos Humanos" - ] - }, - { - "text": "RESOLUCI\u00d3N DE LA CORTE INTERAMERICANA DE DERECHOS HUMANOS DE DE NOVIEMBRE DE CASO FORNER\u00d3N E HIJA VS. ARGENTINA SUPERVISI\u00d3N DE CUMPLIMIENTO DE SENTENCIA VISTO La Sentencia de fondo reparaciones y costas en adelante la Sentencia dictada por la Corte Interamericana de Derechos Humanos en adelante la Corte Interamericana la Corte o el Tribunal el de abril de La Corte declar\u00f3 la responsabilidad internacional de la Rep\u00fablica de Argentina en adelante Argentina o el Estado por la violaci\u00f3n de los", - "values": [ - "Corte Interamericana de Derechos Humanos" - ] - }, - { - "text": "RESOLUCI\u00d3N DEL PRESIDENTE DE LA CORTE INTERAMERICANA DE DERECHOS HUMANOS DE DE DICIEMBRE DE CASO ARROM SUHURT Y OTROS VS. PARAGUAY VISTO El escrito de sometimiento del caso y el Informe de Fondo de la Comisi\u00f3n Interamericana de Derechos Humanos en adelante la Comisi\u00f3n Interamericana o la Comisi\u00f3n el escrito de solicitudes argumentos y pruebas en adelante el escrito de solicitudes y argumentos del representante de las presuntas v\u00edctimas en adelante el representante el escrito de excepciones ", - "values": [ - "Corte Interamericana de Derechos Humanos" - ] - }, - { - "text": "RESOLUCI\u00d3N DEL PRESIDENTE DE LA CORTE INTERAMERICANA DE DERECHOS HUMANOS DE DE DICIEMBRE DE CASO D\u00cdAZ LORETO Y OTROS VS. VENEZUELA CONVOCATORIA A AUDIENCIA VISTO El escrito de sometimiento del caso y el Informe de Fondo de la Comisi\u00f3n Interamericana de Derechos Humanos en adelante la Comisi\u00f3n Interamericana o la Comisi\u00f3n el escrito de solicitudes argumentos y pruebas en adelante el escrito de solicitudes y argumentos de los representantes de las presuntas v\u00edctimas en adelante los y el de ", - "values": [ - "Corte Interamericana de Derechos Humanos" - ] - }, - { - "text": "RESOLUCI\u00d3N DEL PRESIDENTE DE LA CORTE INTERAMERICANA DE DERECHOS HUMANOS DE DE DICIEMBRE DE CASO PERRONE Y PRECKEL VS. ARGENTINA CONVOCATORIA A AUDIENCIA VISTO El escrito de sometimiento del caso y el Informe de Fondo de la Comisi\u00f3n Interamericana de Derechos Humanos en adelante la Comisi\u00f3n Interamericana o la Comisi\u00f3n el escrito de solicitudes argumentos y pruebas en adelante el escrito de solicitudes y argumentos o ESAP de los representantes de las presuntas v\u00edctimas en adelante los y el ", - "values": [ - "Corte Interamericana de Derechos Humanos" - ] - }, - { - "text": "RESOLUCI\u00d3N DE LA CORTE INTERAMERICANA DE DERECHOS HUMANOS DE DE NOVIEMBRE DE CASO FURLAN Y FAMILIARES VS. ARGENTINA SUPERVISI\u00d3N DE CUMPLIMIENTO DE SENTENCIA Y REINTEGRO AL FONDO DE ASISTENCIA LEGAL DE V\u00cdCTIMAS VISTO La Sentencia de excepciones preliminares fondo reparaciones y costas en adelante la Sentencia dictada por la Corte Interamericana de Derechos Humanos en adelante la Corte Interamericana la Corte o el Tribunal el de agosto de La Corte declar\u00f3 la responsabilidad internacional de ", - "values": [ - "Corte Interamericana de Derechos Humanos" - ] - }, - { - "text": "RESOLUCI\u00d3N DE LA CORTE INTERAMERICANA DE DERECHOS HUMANOS DE DE NOVIEMBRE DE CASO MASACRES DE EL MOZOTE Y LUGARES ALEDA\u00d1OS VS. EL SALVADOR SUPERVISI\u00d3N DE CUMPLIMIENTO DE SENTENCIA VISTO La Sentencia de fondo reparaciones y costas en adelante la Sentencia dictada por la Corte Interamericana de Derechos Humanos en adelante la Corte Interamericana la Corte o el Tribunal el de octubre de El caso se refiri\u00f3 a las violaciones a derechos humanos perpetradas por la Fuerza Armada salvadore\u00f1a en ", - "values": [ - "Corte Interamericana de Derechos Humanos" - ] - }, - { - "text": "RESOLUCI\u00d3N DE LA CORTE INTERAMERICANA DE DERECHOS HUMANOS DE DE NOVIEMBRE DE CASO BENAVIDES CEVALLOS VS. ECUADOR SUPERVISI\u00d3N DE CUMPLIMIENTO DE SENTENCIA VISTO La Sentencia de fondo reparaciones y costas en adelante la Sentencia dictada por la Corte Interamericana de Derechos Humanos en adelante la Corte Interamericana la Corte o el Tribunal el de junio de La Corte consider\u00f3 procedente el allanamiento de la Rep\u00fablica del Ecuador en adelante el Estado o Ecuador respecto a los hechos del ", - "values": [ - "Corte Interamericana de Derechos Humanos" - ] - }, - { - "text": "RESOLUCI\u00d3N DE LA CORTE INTERAMERICANA DE DERECHOS HUMANOS DE DE NOVIEMBRE DE CASO NOR\u00cdN CATRIM\u00c1N Y OTROS DIRIGENTES MIEMBROS Y ACTIVISTA DEL PUEBLO IND\u00cdGENA MAPUCHE VS. CHILE SUPERVISI\u00d3N DE CUMPLIMIENTO DE SENTENCIA VISTO La Sentencia de fondo reparaciones y costas en adelante la Sentencia o el Fallo dictada por la Corte Interamericana de Derechos Humanos en adelante la Corte Interamericana la Corte o el Tribunal el de mayo de La Corte declar\u00f3 la responsabilidad internacional de la de ", - "values": [ - "Corte Interamericana de Derechos Humanos" - ] - }, - { - "text": "RESOLUCI\u00d3N DE LA CORTE INTERAMERICANA DE DERECHOS HUMANOS DE DE NOVIEMBRE DE REINTEGRO AL FONDO DE ASISTENCIA LEGAL DE V\u00cdCTIMAS CASO POBLETE VILCHES Y OTROS VS. CHILE VISTO La Sentencia de fondo reparaciones y costas en adelante la Sentencia o el Fallo dictada por la Corte Interamericana de Derechos Humanos en adelante la Corte la Corte Interamericana o el Tribunal el de marzo de La Corte declar\u00f3 la responsabilidad internacional de la Rep\u00fablica de Chile en adelante el Estado o Chile por no", - "values": [ - "Corte Interamericana de Derechos Humanos" - ] - }, - { - "text": "RESOLUCI\u00d3N DEL PRESIDENTE DE LA CORTE INTERAMERICANA DE DERECHOS HUMANOS DE DE DICIEMBRE DE CASO ROSADIO VILLAVICENCIO VS. PER\u00da CONVOCATORIA A AUDIENCIA VISTO El escrito de sometimiento del caso y el Informe de Fondo de la Comisi\u00f3n Interamericana de Derechos Humanos en adelante la Comisi\u00f3n Interamericana o la Comisi\u00f3n el escrito de solicitudes argumentos y pruebas en adelante el escrito de solicitudes y argumentos de la representaci\u00f3n de la presunta v\u00edctima en adelante los representantes y ", - "values": [ - "Corte Interamericana de Derechos Humanos" - ] - }, - { - "text": "VOTO CONCURRENTE DEL JUEZ HUMBERTO ANTONIO SIERRA PORTO A LA SENTENCIA DE DE NOVIEMBRE DE DE LA CORTE INTERAMERICANA DE DERECHOS HUMANOS EN EL CASO DE \u00d3RDENES GUERRA Y OTROS VS CHILE Temas La Motivaci\u00f3n para inaplicar la prescripci\u00f3n de la acci\u00f3n civil de da\u00f1os en casos que involucren cr\u00edmenes de lesa humanidad. La utilizaci\u00f3n del principio de complementariedad o subsidiariedad en materia de reparaciones. El control de convencionalidad car\u00e1cter dial\u00f3gico y los inconvenientes de utilizarlo ", - "values": [ - "Corte Interamericana de Derechos Humanos" - ] - }, - { - "text": "CORTE INTERAMERICANA DE DERECHOS HUMANOS CASO \u00d3RDENES GUERRA Y OTROS VS. CHILE SENTENCIA DE DE NOVIEMBRE DE Fondo Reparaciones y Costas En el caso \u00d3rdenes Guerra y otros la Corte Interamericana de Derechos Humanos en adelante la Corte Interamericana la Corte o el Tribunal integrada por los siguientes Jueces Eduardo Ferrer MacGregor Poisot Presidente Humberto Antonio Sierra Porto Juez Elizabeth Odio Benito Jueza Eugenio Ra\u00fal Zaffaroni Juez y L. Patricio Pazmi\u00f1o Freire Juez presente adem\u00e1s ", - "values": [ - "Corte Interamericana de Derechos Humanos" - ] - }, - { - "text": "RESOLUCI\u00d3N DE LA CORTE INTERAMERICANA DE DERECHOS HUMANOS DE NOVIEMBRE DE CASO GARC\u00cdA CRUZ Y S\u00c1NCHEZ SILVESTRE VS. ESTADOS UNIDOS MEXICANOS SUPERVISI\u00d3N DE CUMPLIMIENTO DE SENTENCIA VISTO La Sentencia de fondo reparaciones y costas en adelante la Sentencia emitida por la Corte Interamericana de Derechos Humanos en adelante la Corte Interamericana la Corte o el Tribunal el de noviembre de La Corte homolog\u00f3 el Acuerdo de soluci\u00f3n amistosa y reconocimiento de responsabilidad del Estado por ", - "values": [ - "Corte Interamericana de Derechos Humanos" - ] - }, - { - "text": "CORTE INTERAMERICANA DE DERECHOS HUMANOS CASO TRUEBA ARCINIEGA Y OTROS VS. M\u00c9XICO SENTENCIA DE DE NOVIEMBRE DE En el Caso Trueba Arciniega y otros la Corte Interamericana de Derechos Humanos en adelante la Corte Interamericana la Corte o el Tribunal integrada por los siguientes Jueces Eduardo Vio Grossi Presidente en ejercicio Humberto Antonio Sierra Porto Juez Elizabeth Odio Benito Jueza Eugenio Raul Zaffaroni Juez L. Patricio Pazmino Freire Juez y presente adem\u00e1s Pablo Saavedra Alessandri ", - "values": [ - "Corte Interamericana de Derechos Humanos" - ] - }, - { - "text": "RESOLUCI\u00d3N DE LA CORTE INTERAMERICANA DE DERECHOS HUMANOS DE DE NOVIEMBRE DE CASO DUQUE VS. COLOMBIA SUPERVISI\u00d3N DE CUMPLIMIENTO DE SENTENCIA VISTO La Sentencia de excepciones preliminares fondo reparaciones y costas en adelante la Sentencia dictada por la Corte Interamericana de Derechos Humanos en adelante la Corte Interamericana la Corte o el Tribunal el de febrero de La Corte declar\u00f3 que la Rep\u00fablica de Colombia en adelante el Estado o Colombia era internacionalmente responsable de ", - "values": [ - "Corte Interamericana de Derechos Humanos" - ] - }, - { - "text": "RESOLUCI\u00d3N DE LA CORTE INTERAMERICANA DE DERECHOS HUMANOS DE DE NOVIEMBRE DE CASO MASACRE DE SANTO DOMINGO VS. COLOMBIA SUPERVISI\u00d3N DE CUMPLIMIENTO DE SENTENCIA VISTO La Sentencia de excepciones preliminares fondo y reparaciones en adelante la Sentencia dictada por la Corte Interamericana de Derechos Humanos en adelante la Corte Interamericana la Corte o el Tribunal el de noviembre de La Corte declar\u00f3 la responsabilidad internacional de la Rep\u00fablica de Colombia en adelante el Estado o ", - "values": [ - "Corte Interamericana de Derechos Humanos" - ] - }, - { - "text": "CORTE INTERAMERICANA DE DERECHOS HUMANOS CASO OMEARA CARRASCAL Y OTROS VS. COLOMBIA SENTENCIA DE NOVIEMBRE DE Fondo Reparaciones y Costas En el caso Omeara Carrascal y otros la Corte Interamericana de Derechos Humanos en adelante la Corte Interamericana la Corte o este Tribunal integrada por los siguientes Jueces Eduardo Ferrer MacGregor Poisot Presidente Eduardo Vio Grossi Juez Vicepresidente Elizabeth Odio Benito Jueza Eugenio Ra\u00fal Zaffaroni Juez y Patricio Pazmi\u00f1o Freire Juez. Presentes ", - "values": [ - "Corte Interamericana de Derechos Humanos" - ] - }, - { - "text": "CORTE INTERAMERICANA DE DERECHOS HUMANOS VILLAMIZAR DUR\u00c1N Y OTROS VS. COLOMBIA SENTENCIA DE DE NOVIEMBRE Excepci\u00f3n Preliminar Fondo Reparaciones y Costas En el Caso Villamizar Dur\u00e1n y Otros Vs. Colombia la Corte Interamericana de Derechos Humanos en adelante la Corte Interamericana la Corte o el Tribunal integrada por los siguientes Jueces Eduardo Ferrer MacGregor Poisot Presidente Eduardo Vio Grossi Vicepresidente Elizabeth Odio Benito Jueza Eugenio Ra\u00fal Zaffaroni Juez y L. Patricio Pazmi\u00f1o ", - "values": [ - "Corte Interamericana de Derechos Humanos" - ] - }, - { - "text": "CORTE INTERAMERICANA DE DERECHOS HUMANOS CASO VEREDA LA ESPERANZA VS. COLOMBIA SENTENCIA DE DE NOVIEMBRE DE Interpretaci\u00f3n de la Sentencia de Excepci\u00f3n Preliminar Fondo Reparaciones y Costas En el Caso Vereda La Esperanza Vs. Colombia la Corte Interamericana de Derechos Humanos en adelante la Corte Interamericana la Corte o el Tribunal integrada por los siguientes Jueces Eduardo Ferrer MacGregor Poisot Presidente Eduardo Vio Grossi Vicepresidente Elizabeth Odio Benito Juez Eugenio Ra\u00fal Juez", - "values": [ - "Corte Interamericana de Derechos Humanos" - ] - }, - { - "text": "CORTE INTERAMERICANA DE DERECHOS HUMANOS CASO ISAZA URIBE Y OTROS VS. COLOMBIA SENTENCIA DE DE NOVIEMBRE DE Fondo Reparaciones y Costas En el caso Isaza Uribe y otros la Corte Interamericana de Derechos Humanos en adelante la Corte Interamericana la Corte o el Tribunal integrada por los siguientes Jueces Eduardo Ferrer MacGregor Poisot Presidente Eduardo Vio Grossi Vicepresidente Elizabeth Odio Benito jueza Eugenio Ra\u00fal Zaffaroni juez y L. Patricio Pazmi\u00f1o Freire juez presentes adem\u00e1s Pablo ", - "values": [ - "Corte Interamericana de Derechos Humanos" - ] - }, - { - "text": "RESOLUCI\u00d3N DE LA CORTE INTERAMERICANA DE DERECHOS HUMANOS DE DE NOVIEMBRE DE REINTEGRO AL FONDO DE ASISTENCIA LEGAL DE V\u00cdCTIMAS CASO FAMILIA BARRIOS CASO UZC\u00c1TEGUI Y OTROS Y CASO HERMANOS LANDAETA MEJ\u00cdAS Y OTROS VS. VENEZUELA VISTO Las Sentencias dictadas por la Corte Interamericana de Derechos Humanos en adelante la Corte la Corte Interamericana o el Tribunal el de noviembre de de septiembre de y de agosto de en los siguientes tres casos contra la Rep\u00fablica Bolivariana de Venezuela ", - "values": [ - "Corte Interamericana de Derechos Humanos" - ] - }, - { - "text": "RESOLUCI\u00d3N DE LA CORTE INTERAMERICANA DE DERECHOS HUMANOS DE DE NOVIEMBRE DE CASO EL AMPARO VS. VENEZUELA SUPERVISI\u00d3N DE CUMPLIMIENTO DE SENTENCIA VISTO Las Sentencias de fondo y de reparaciones y costas dictadas por la Corte Interamericana de Derechos Humanos en adelante la Corte Interamericana la Corte o el Tribunal el de enero de y el de septiembre de respectivamente en el presente caso. En la Sentencia de fondo la Corte acept\u00f3 el reconocimiento de responsabilidad internacional de ", - "values": [ - "Corte Interamericana de Derechos Humanos" - ] - }, - { - "text": "RESOLUCI\u00d3N DE LA CORTE INTERAMERICANA DE DERECHOS HUMANOS DE DE NOVIEMBRE DE CASO B\u00c1MACA VEL\u00c1SQUEZ VS. GUATEMALA MEDIDAS PROVISIONALES VISTO Las Resoluciones del Presidente de la Corte Interamericana de Derechos Humanos en adelante tambi\u00e9n la Corte Interamericana la Corte o este Tribunal de de junio de de diciembre de de septiembre de y de noviembre de y las Resoluciones de la Corte de de agosto de de septiembre de de febrero y de noviembre de de marzo de de enero de y ", - "values": [ - "Corte Interamericana de Derechos Humanos" - ] - }, - { - "text": "VOTO CONCURRENTE DEL JUEZ EDUARDO VIO GROSSI RESOLUCI\u00d3N DE LA CORTE INTERAMERICANA DE DERECHOS HUMANOS DE DE NOVIEMBRE DE B\u00c1MACA VEL\u00c1SQUEZ VS. GUATEMALA MEDIDAS PROVISIONALES. El suscrito viene en reiterar esta vez respecto de la Resoluci\u00f3n indicada en el Ep\u00edgrafe su Voto Concurrente emitido con relaci\u00f3n a la Resoluci\u00f3n de la Corte Interamericana de Derechos Humanos de de Agosto de B\u00e1maca Vel\u00e1squez VS. Guatemala Medidas Provisionales. Eduardo Vio Grossi Juez Pablo Saavedra Alessandri ", - "values": [ - "Corte Interamericana de Derechos Humanos" - ] - }, - { - "text": "RESOLUCI\u00d3N DE LA CORTE INTERAMERICANA DE DERECHOS HUMANOS DE DE NOVIEMBRE DE CASO MIEMBROS DE LA ALDEA CHICHUPAC Y COMUNIDADES VECINAS DEL MUNICIPIO DE RABINAL VS. GUATEMALA SUPERVISI\u00d3N DE CUMPLIMIENTO DE SENTENCIA VISTO La Sentencia de excepciones preliminares fondo reparaciones y costas dictada por la Corte Interamericana de Derechos Humanos en adelante la Corte la Corte Interamericana o el Tribunal el de noviembre de En dicha Sentencia la Corte indic\u00f3 que no ten\u00eda competencia temporal ", - "values": [ - "Corte Interamericana de Derechos Humanos" - ] - }, - { - "text": "RESOLUCI\u00d3N DE LA CORTE INTERAMERICANA DE DERECHOS HUMANOS DE DE NOVIEMBRE DE CASO V\u00c9LIZ FRANCO Y OTROS VS. GUATEMALA SUPERVISI\u00d3N DE CUMPLIMIENTO DE SENTENCIA VISTO La Sentencia de excepciones preliminares fondo reparaciones y costas en adelante la Sentencia dictada por la Corte Interamericana de Derechos Humanos en adelante la Corte la Corte Interamericana o este Tribunal el de mayo de La Corte declar\u00f3 responsable internacionalmente a la Rep\u00fablica de Guatemala en adelante el Estado o ", - "values": [ - "Corte Interamericana de Derechos Humanos" - ] - }, - { - "text": "RESOLUCI\u00d3N DE LA CORTE INTERAMERICANA DE DERECHOS HUMANOS DE DE NOVIEMBRE DE MEDIDAS PROVISIONALES RESPECTO DE LA REP\u00daBLICA DE GUATEMALA ASUNTO DE LA FUNDACI\u00d3N DE ANTROPOLOG\u00cdA FORENSE DE GUATEMALA VISTO Las Resoluciones de la Corte Interamericana de Derechos Humanos en adelante la Corte Interamericana la Corte o el Tribunal de de julio de de noviembre de de enero de de febrero de y de noviembre de mediante las cuales se orden\u00f3 la adopci\u00f3n de medidas provisionales y el mantenimiento", - "values": [ - "Corte Interamericana de Derechos Humanos" - ] - }, - { - "text": "RESOLUCI\u00d3N DE LA CORTE INTERAMERICANA DE DERECHOS HUMANOS DE NOVIEMBRE DE CASO DE LA COMUNIDAD MOIWANA VS. SURINAM SUPERVISI\u00d3N DE CUMPLIMIENTO DE SENTENCIA VISTO La Sentencia de excepciones preliminares fondo reparaciones y costas en adelante la Sentencia dictada por la Corte Interamericana de Derechos Humanos en adelante la Corte la Corte Interamericana o el Tribunal el de junio de En dicho caso la Corte declar\u00f3 responsable internacionalmente a la Rep\u00fablica de Surinam en adelante el o ", - "values": [ - "Corte Interamericana de Derechos Humanos" - ] - }, - { - "text": "RESOLUCI\u00d3N DE LA CORTE INTERAMERICANA DE DERECHOS HUMANOS DE DE NOVIEMBRE DE MEDIDAS PROVISIONALES RESPECTO DE BRASIL ASUNTO DEL COMPLEJO PENITENCIARIO DE CURADO VISTO Las Resoluciones emitidas por la Corte Interamericana de Derechos Humanos en adelante la Corte Interamericana la Corte o el Tribunal el de mayo de el de octubre de el de noviembre de y el de noviembre de en las cuales entre otros requiri\u00f3 a la Rep\u00fablica Federativa de Brasil en adelante Brasil o el Estado que adoptara ", - "values": [ - "Corte Interamericana de Derechos Humanos" - ] - }, - { - "text": "RESOLUCI\u00d3N DE LA CORTE INTERAMERICANA DE DERECHOS HUMANOS DE NOVIEMBRE DE MEDIDAS PROVISIONALES RESPECTO DE BRASIL ASUNTO DEL INSTITUTO PENAL PL\u00c1CIDO DE S\u00c1 CARVALHO VISTO La Resoluci\u00f3n emitida por la Corte Interamericana de Derechos Humanos en adelante la Corte Interamericana la Corte o el Tribunal el de agosto de en la cual entre otros se requiri\u00f3 a la Rep\u00fablica Federativa de Brasil en adelante Brasil o el Estado adoptar de forma inmediata todas las medidas que fueran necesarias para la", - "values": [ - "Corte Interamericana de Derechos Humanos" - ] - }, - { - "text": "RESOLUCI\u00d3N DE LA CORTE INTERAMERICANA DE DERECHOS HUMANOS DE DE NOVIEMBRE DE CASO IV. VS. BOLIVIA SUPERVISI\u00d3N DE CUMPLIMIENTO DE SENTENCIA VISTO La Sentencia de excepciones preliminares fondo reparaciones y costas en adelante la Sentencia o el Fallo dictada por la Corte Interamericana de Derechos Humanos en adelante la Corte la Corte Interamericana o el Tribunal el de noviembre de Los hechos del caso se refieren a la esterilizaci\u00f3n no consentida realizada a la se\u00f1ora IV. en un hospital ", - "values": [ - "Corte Interamericana de Derechos Humanos" - ] - }, - { - "text": "RESOLUCI\u00d3N DE LA CORTE INTERAMERICANA DE DERECHOS HUMANOS DE DE NOVIEMBRE DE CASO WONG HO WING VS. PER\u00da SUPERVISI\u00d3N DE CUMPLIMIENTO DE SENTENCIA VISTO La Sentencia de excepci\u00f3n preliminar fondo reparaciones y costas en adelante la Sentencia dictada por la Corte Interamericana de Derechos Humanos en adelante la Corte la Corte Interamericana o el Tribunal el de junio de La Corte declar\u00f3 que no se hab\u00eda acreditado que para la fecha de emisi\u00f3n de la Sentencia existiera un riesgo real y a ", - "values": [ - "Corte Interamericana de Derechos Humanos" - ] - }, - { - "text": "RESOLUCI\u00d3N DE LA CORTE INTERAMERICANA DE DERECHOS HUMANOS DE DE NOVIEMBRE DE SOLICITUD DE MEDIDAS PROVISIONALES RESPECTO DE LA REP\u00daBLICA DEL PER\u00da CASO GALINDO C\u00c1RDENAS VISTOS La Sentencia del Caso Galindo C\u00e1rdenas y otros Vs. Per\u00fa de de octubre de dictada por la Corte Interamericana de Derechos Humanos en adelante tambi\u00e9n la Corte o este Tribunal sobre excepciones preliminares fondo reparaciones y costas y la Sentencia de Interpretaci\u00f3n del referido Fallo dictada el de noviembre de por ", - "values": [ - "Corte Interamericana de Derechos Humanos" - ] - }, - { - "text": "VOTO RAZONADO DEL JUEZ AA. CAN\u00c7ADO TRINDADE Mediante su presente Sentencia en Bulacio versus Argentina para cuya adopci\u00f3n he concurrido con mi voto la Corte Interamericana de Derechos Humanos se ha pronunciado sobre un caso que bien retrata las contingencias de la condici\u00f3n humana y la importancia de la realizaci\u00f3n de la justicia y de la garant\u00eda de norepetici\u00f3n de los hechos lesivos de los derechos humanos como medida de reparaci\u00f3n. Dada la relevancia de la materia tratada por la Corte me veo", - "values": [ - "Corte Interamericana de Derechos Humanos" - ] - }, - { - "text": "VOTO CONCURRENTE DEL JUEZ EDUARDO VIO GROSSI A LA RESOLUCI\u00d3N DE LA CORTE INTERAMERICANA DE DERECHOS HUMANOS DE DE JULIO DE CASO BUENO ALVES VS. ARGENTINA SUPERVISI\u00d3N DE CUMPLIMIENTO DE SENTENCIA Concurro con mi voto a la Resoluci\u00f3n de la Corte Interamericana de Derechos Humanos de de julio de Caso Bueno Alves Vs. Argentina Supervisi\u00f3n de Cumplimiento de Sentencia haciendo presente que la inadmisibilidad en autos de las decisiones de primera y segunda instancia emitidas en el orden interno ", - "values": [ - "Corte Interamericana de Derechos Humanos" - ] - }, - { - "text": "RESOLUCI\u00d3N DEL PRESIDENTE DE LA CORTE INTERAMERICANA DE DERECHOS HUMANOS DE DE ENERO DE CASO ARROM SUHURT Y OTROS VS. PARAGUAY VISTO El escrito de de diciembre de mediante el cual la Comisi\u00f3n Interamericana de Derechos Humanos en adelante la Comisi\u00f3n someti\u00f3 ante la Corte Interamericana de Derechos Humanos en adelante la Corte o el Tribunal el presente caso en contra de la Rep\u00fablica del Paraguay. La Resoluci\u00f3n del Presidente de la Corte Interamericana de Derechos Humanos en adelante el ", - "values": [ - "Corte Interamericana de Derechos Humanos" - ] - }, - { - "text": "RESOLUCI\u00d3N DE LA CORTE INTERAMERICANA DE DERECHOS HUMANOS DE DE ENERO DE CASO ARROM SUHURT Y OTROS VS. PARAGUAY VISTO La Resoluci\u00f3n del Presidente de la Corte Interamericana de Derechos Humanos en adelante el Presidente de de diciembre de en adelante la Resoluci\u00f3n del Presidente mediante la cual inter alia orden\u00f3 la recepci\u00f3n de diversas declaraciones en audiencia p\u00fablica y mediante affidavit y convoc\u00f3 a la Comisi\u00f3n Interamericana de Derechos Humanos en adelante tambi\u00e9n la Comisi\u00f3n al de ", - "values": [ - "Corte Interamericana de Derechos Humanos" - ] - }, - { - "text": "RESOLUCI\u00d3N DEL PRESIDENTE DE LA CORTE INTERAMERICANA DE DERECHOS HUMANOS DE DE FEBRERO DE CASO COMUNIDADES IND\u00cdGENAS MIEMBROS DE LA ASOCIACI\u00d3N LHAKA HONHAT VS. ARGENTINA CONVOCATORIA A AUDIENCIA VISTO El escrito de sometimiento del caso y el Informe de Fondo de la Comisi\u00f3n Interamericana de Derechos Humanos en adelante tambi\u00e9n la Comisi\u00f3n Interamericana o la Comisi\u00f3n el escrito de solicitudes argumentos y pruebas en adelante el escrito de solicitudes y argumentos de los representantes de las", - "values": [ - "Corte Interamericana de Derechos Humanos" - ] - }, - { - "text": "RESOLUCI\u00d3N DE LA CORTE INTERAMERICANA DE DERECHOS HUMANOS DE DE FEBRERO DE MEDIDAS PROVISIONALES CASO COC MAX Y OTROS VS. GUATEMALA VISTO La Resoluci\u00f3n de la Corte Interamericana de Derechos Humanos en adelante tambi\u00e9n la Corte o Tribunal de de febrero de en la que resolvi\u00f3 entre otros Requerir al Estado de Guatemala que adopte de manera inmediata las medidas de protecci\u00f3n que sean necesarias y efectivas para garantizar la vida e integridad personal de Efra\u00edn Grave Morente Maynor Estuardo", - "values": [ - "Corte Interamericana de Derechos Humanos" - ] - }, - { - "text": "RESOLUCI\u00d3N DE LA CORTE INTERAMERICANA DE DERECHOS HUMANOS DE DE FEBRERO DE SOLICITUD DE MEDIDAS PROVISIONALES CASO PETRO URREGO VS. COLOMBIA VISTO El escrito de sometimiento del caso de de agosto de mediante el cual la Comisi\u00f3n Interamericana de Derechos Humanos en adelante la Comisi\u00f3n Interamericana o la Comisi\u00f3n present\u00f3 a la Corte Interamericana de Derechos Humanos en adelante la Corte o el Tribunal el Caso Petro Urrego Vs. Colombia. El escrito de de noviembre de mediante el cual los", - "values": [ - "Corte Interamericana de Derechos Humanos" - ] - }, - { - "text": "RESOLUCI\u00d3N DE LA CORTE INTERAMERICANA DE DERECHOS HUMANOS DE DE MARZO DE CASO L\u00d3PEZ Y OTROS VS. ARGENTINA VISTO La Resoluci\u00f3n del Presidente de la Corte Interamericana de Derechos Humanos en adelante el Presidente de de febrero de en adelante la Resoluci\u00f3n del Presidente mediante la cual inter alia orden\u00f3 la recepci\u00f3n de diversas declaraciones testimoniales mediante afid\u00e1vit rechaz\u00f3 una declaraci\u00f3n pericial y convoc\u00f3 a la Comisi\u00f3n Interamericana de Derechos Humanos en adelante la Comisi\u00f3n ", - "values": [ - "Corte Interamericana de Derechos Humanos" - ] - }, - { - "text": "RESOLUCI\u00d3N DEL PRESIDENTE DE LA CORTE INTERAMERICANA DE DERECHOS HUMANOS DE FEBRERO DE CASO L\u00d3PEZ Y OTROS VS. ARGENTINA VISTO El escrito de sometimiento del caso y el Informe de Fondo de la Comisi\u00f3n Interamericana de Derechos Humanos en adelante la Comisi\u00f3n Interamericana o la Comisi\u00f3n el escrito de solicitudes argumentos y pruebas en adelante el escrito de solicitudes y argumentos de los representantes de las presuntas v\u00edctimas en adelante los representantes el escrito de contestaci\u00f3n al ", - "values": [ - "Corte Interamericana de Derechos Humanos" - ] - }, - { - "text": "RESOLUCI\u00d3N DEL PRESIDENTE DE LA CORTE INTERAMERICANA DE DERECHOS HUMANOS DE DE FEBRERO DE CASO GIR\u00d3N Y CASTILLO VS. GUATEMALA VISTO El escrito de sometimiento del caso y el Informe de Admisibilidad y Fondo de la Comisi\u00f3n Interamericana de Derechos Humanos en adelante la Comisi\u00f3n Interamericana o la Comisi\u00f3n el escrito de solicitudes argumentos y pruebas en adelante el escrito de solicitudes y argumentos de las representantes de las presuntas v\u00edctimas en adelante las representantes o las el ", - "values": [ - "Corte Interamericana de Derechos Humanos" - ] - }, - { - "text": "RESOLUCI\u00d3N DEL PRESIDENTE DE LA CORTE INTERAMERICANA DE DERECHOS HUMANOS DE DE FEBRERO DE CASO MART\u00cdNEZ CORONADO VS. GUATEMALA VISTO El escrito de sometimiento del caso y el Informe de Admisibilidad y Fondo de la Comisi\u00f3n Interamericana de Derechos Humanos en adelante la Comisi\u00f3n Interamericana o la Comisi\u00f3n el escrito de solicitudes argumentos y pruebas en adelante el escrito de solicitudes y argumentos de los representantes de la presuntas v\u00edctimas en adelante los representantes o los el ", - "values": [ - "Corte Interamericana de Derechos Humanos" - ] - }, - { - "text": "RESOLUCI\u00d3N DEL PRESIDENTE DE LA CORTE INTERAMERICANA DE DERECHOS HUMANOS DE DE FEBRERO DE CASO RODR\u00cdGUEZ REVOLORIO Y OTROS VS. GUATEMALA CONVOCATORIA A AUDIENCIA VISTO El escrito de sometimiento del caso y el Informe de Admisibilidad y Fondo de la Comisi\u00f3n Interamericana de Derechos Humanos en adelante la Comisi\u00f3n Interamericana o la Comisi\u00f3n el escrito de solicitudes argumentos y pruebas en adelante el escrito de solicitudes y argumentos de las representantes de las presuntas v\u00edctimas en ", - "values": [ - "Corte Interamericana de Derechos Humanos" - ] - }, - { - "text": "RESOLUCI\u00d3N DEL PRESIDENTE DE LA CORTE INTERAMERICANA DE DERECHOS HUMANOS DE DE FEBRERO DE CASO RU\u00cdZ FUENTES VS. GUATEMALA CONVOCATORIA A AUDIENCIA VISTO El escrito de sometimiento del caso y el Informe de Fondo de la Comisi\u00f3n Interamericana de Derechos Humanos en adelante la Comisi\u00f3n Interamericana o la Comisi\u00f3n el escrito de solicitudes argumentos y pruebas en adelante el escrito de solicitudes y argumentos de las representantes de las presuntas v\u00edctimas en adelante las representantes y el ", - "values": [ - "Corte Interamericana de Derechos Humanos" - ] - }, - { - "text": "RESOLUCI\u00d3N DE LA CORTE INTERAMERICANA DE DERECHOS HUMANOS DE DE FEBRERO DE CASO FERM\u00cdN RAM\u00cdREZ VS. GUATEMALA SUPERVISI\u00d3N DE CUMPLIMIENTO DE SENTENCIA VISTO La Sentencia de fondo reparaciones y costas en adelante la Sentencia dictada por la Corte Interamericana de Derechos Humanos en adelante la Corte Interamericana la Corte o el Tribunal el de junio de En dicho fallo la Corte encontr\u00f3 responsable internacionalmente al Estado de Guatemala en adelante el Estado o Guatemala por las a las ", - "values": [ - "Corte Interamericana de Derechos Humanos" - ] - }, - { - "text": "RESOLUCI\u00d3N DE LA CORTE INTERAMERICANA DE DERECHOS HUMANOS DE DE ENERO DE CASO RAXCAC\u00d3 REYES VS. GUATEMALA SUPERVISI\u00d3N DE CUMPLIMIENTO DE SENTENCIA VISTO La Sentencia de fondo reparaciones y costas en adelante la Sentencia dictada por la Corte Interamericana de Derechos Humanos en adelante la Corte Interamericana la Corte o el Tribunal el de septiembre de En dicho fallo la Corte encontr\u00f3 responsable internacionalmente al Estado de Guatemala en adelante el Estado o Guatemala por la condena a", - "values": [ - "Corte Interamericana de Derechos Humanos" - ] - }, - { - "text": "RESOLUCI\u00d3N DE LA CORTE INTERAMERICANA DE DERECHOS HUMANOS DE DE ENERO DE CASO DE LA CORTE SUPREMA DE JUSTICIA QUINTANA COELLO Y OTROS VS. ECUADOR SUPERVISI\u00d3N DE CUMPLIMIENTO DE SENTENCIA VISTOS La Sentencia de excepci\u00f3n preliminar fondo reparaciones y costas en adelante la Sentencia o el Fallo dictada por la Corte Interamericana de Derechos Humanos en adelante la Corte la Corte Interamericana o el Tribunal el de agosto de La Corte tomando en cuenta el reconocimiento parcial de efectuado ", - "values": [ - "Corte Interamericana de Derechos Humanos" - ] - }, - { - "text": "RESOLUCI\u00d3N DE LA CORTE INTERAMERICANA DE DERECHOS HUMANOS DE DE ENERO DE REINTEGRO AL FONDO DE ASISTENCIA LEGAL DE V\u00cdCTIMAS CASO TRABAJADORES CESADOS DE PETROPER\u00da Y OTROS VS. PER\u00da VISTO La Sentencia de excepciones preliminares fondo reparaciones y costas dictada por la Corte Interamericana de Derechos Humanos en adelante la Corte la Corte Interamericana o el Tribunal el de noviembre de En dicha Sentencia la Corte declar\u00f3 la responsabilidad internacional del Estado del Per\u00fa en adelante el ", - "values": [ - "Corte Interamericana de Derechos Humanos" - ] - }, - { - "text": "RESOLUCI\u00d3N DE LA CORTE INTERAMERICANA DE DERECHOS HUMANOS DE DE ENERO DE RECONSIDERACI\u00d3N DE CONVOCATORIA CASO PERRONE Y PRECKEL Vs. ARGENTINA VISTO La Resoluci\u00f3n del Presidente de la Corte Interamericana de Derechos Humanos en adelante la Corte o el Tribunal del de diciembre de en adelante la Resoluci\u00f3n del Presidente mediante la cual inter al\u00eda orden\u00f3 la recepci\u00f3n de un peritaje a trav\u00e9s de affid\u00e1vit y convoc\u00f3 al Estado Argentino en adelante el Estado o Argentina a los representantes y a", - "values": [ - "Corte Interamericana de Derechos Humanos" - ] - }, - { - "text": "RESOLUCI\u00d3N DE LA CORTE INTERAMERICANA DE DERECHOS HUMANOS DE DE ENERO DE CASO ARG\u00dcELLES Y OTROS VS. ARGENTINA SUPERVISI\u00d3N DE CUMPLIMIENTO DE SENTENCIA VISTO La Sentencia de excepciones preliminares fondo reparaciones y costas en adelante la Sentencia o el Fallo dictada por la Corte Interamericana de Derechos Humanos en adelante la Corte la Corte Interamericana o el Tribunal el de noviembre de La Corte declar\u00f3 la responsabilidad internacional de la Rep\u00fablica Argentina en adelante el Estado", - "values": [ - "Corte Interamericana de Derechos Humanos" - ] - }, - { - "text": "RESOLUCI\u00d3N DEL PRESIDENTE DE LA CORTE INTERAMERICANA DE DERECHOS HUMANOS DE DE FEBRERO DE CASO VALENZUELA \u00c1VILA VS. GUATEMALA CONVOCATORIA A AUDIENCIA VISTO El escrito de sometimiento del caso y el Informe de Admisibilidad y Fondo en adelante tambi\u00e9n Informe de Fondo de la Comisi\u00f3n Interamericana de Derechos Humanos en adelante la Comisi\u00f3n Interamericana o la Comisi\u00f3n el escrito de solicitudes argumentos y pruebas en adelante el escrito de solicitudes y argumentos de los representantes de la", - "values": [ - "Corte Interamericana de Derechos Humanos" - ] - }, - { - "text": "CORTE INTERAMERICANA DE DERECHOS HUMANOS CASO COLINDRES SCHONENBERG VS. EL SALVADOR SENTENCIA DE DE FEBRERO DE Fondo Reparaciones y Costas En el caso Colindres Schonenberg Vs. El Salvador la Corte Interamericana de Derechos Humanos en adelante la Corte Interamericana la Corte o este Tribunal integrada por los siguientes jueces Eduardo Ferrer MacGregor Poisot Presidente Eduardo Vio Grossi Vicepresidente Elizabeth Odio Benito Jueza Eugenio Ra\u00fal Zaffaroni Juez y Patricio Pazmi\u00f1o Freire Juez ", - "values": [ - "Corte Interamericana de Derechos Humanos" - ] - }, - { - "text": "RESOLUCI\u00d3N DE LA CORTE INTERAMERICANA DE DERECHOS HUMANOS DE DE MARZO DE MEDIDAS PROVISIONALES Y SUPERVISI\u00d3N DE CUMPLIMIENTO DE SENTENCIA CASO DE LOS MIEMBROS DE LA ALDEA CHICHUPAC Y COMUNIDADES VECINAS DEL MUNICIPIO DE RABINAL CASO MOLINA THEISSEN Y OTROS CASOS CONTRA GUATEMALA VISTO La Sentencia de excepciones preliminares fondo reparaciones y costas dictada por la Corte Interamericana de Derechos Humanos en adelante la Corte la Corte Interamericana o el Tribunal el de de noviembre de ", - "values": [ - "Corte Interamericana de Derechos Humanos" - ] - }, - { - "text": "VOTO PARCIALMENTE DISIDENTE DEL JUEZ EDUARDO VIO GROSSI RESOLUCI\u00d3N DE LA CORTE INTERAMERICANA DE DERECHOS HUMANOS DE DE MARZO DE MEDIDAS PROVISIONALES Y SUPERVISI\u00d3N DE CUMPLIMIENTO DE SENTENCIA CASO DE LOS MIEMBROS DE LA ALDEA CHICHUPAC Y COMUNIDADES DEL MUNICIPIO DE RABINAL CASO MOLINA THIESEN Y OTROS CASOS CONTRA GUATEMALA. INTRODUCCI\u00d3N. Se emite el presente voto parcialmente disidente respecto de la Resoluci\u00f3n del ep\u00edgrafe por discrepar respecto de lo decidido en su Punto Resolutivo N ", - "values": [ - "Corte Interamericana de Derechos Humanos" - ] - }, - { - "text": "VOTO CONCURRENTE DEL JUEZ HUMBERTO ANTONIO SIERRA PORTO A LA SENTENCIA DE DE FEBRERO DE DE LA CORTE INTERAMERICANA DE DERECHOS HUMANOS EN EL CASO VILLASE\u00d1OR VELARDE Y OTROS VS. GUATEMALA Formulo el presente voto concurrente resaltando el respeto a la decisi\u00f3n un\u00e1nime adoptada por la la Corte Interamericana de Derechos Humanos en adelante tambi\u00e9n la Corte o el Tribunal en el caso Villase\u00f1or Velarde y otros vs. Guatemala en adelante caso Villase\u00f1or. Lo hago adem\u00e1s como es evidente a partir de ", - "values": [ - "Corte Interamericana de Derechos Humanos" - ] - }, - { - "text": "CORTE INTERAMERICANA DE DERECHOS HUMANOS CASO VILLASE\u00d1OR VELARDE Y OTROS VS. GUATEMALA SENTENCIA DE DE FEBRERO DE Fondo Reparaciones y Costas En el caso Villase\u00f1or Velarde y otros Vs. Guatemala la Corte Interamericana de Derechos Humanos en adelante tambi\u00e9n la Corte Interamericana la Corte o el Tribunal integrada por los siguientes jueces Eduardo Ferrer MacGregor Poisot Presidente Eduardo Vio Grossi Vicepresidente Humberto Antonio Sierra Porto Juez Elizabeth Odio Benito Jueza Eugenio Ra\u00fal y", - "values": [ - "Corte Interamericana de Derechos Humanos" - ] - }, - { - "text": "VOTO DISIDENTE DEL JUEZ EDUARDO VIO GROSSI RESOLUCI\u00d3N DE LA CORTE INTERAMERICANA DE DERECHOS HUMANOS DE DE MARZO CASO MACK CHANG Y OTROS VS GUATEMALA MEDIDAS PROVISIONALES Se formula el presente voto disidente respecto de la Resoluci\u00f3n indicada en el r\u00f3tulo en m\u00e9rito de que ha precluido la facultad de la Corte Interamericana de Derechos Humanos de decretar la mantenci\u00f3n de medidas provisionales respecto o en el marco del referido caso sentenciado el de noviembre de Y se formula reiterando ", - "values": [ - "Corte Interamericana de Derechos Humanos" - ] - }, - { - "text": "CORTE INTERAMERICANA DE DERECHOS HUMANOS RESOLUCI\u00d3N DE LA CORTE INTERAMERICANA DE DERECHOS HUMANOS DE DE MARZO DE MEDIDAS PROVISIONALES RESPECTO DE GUATEMALA CASO MACK CHANG Y OTROS VISTO Las Resoluciones de la Corte Interamericana de Derechos Humanos en adelante tambi\u00e9n la Corte la Corte Interamericana o el Tribunal de de agosto de de febrero y de junio de de enero y de noviembre de de mayo de y de enero de En esta \u00faltima Resoluci\u00f3n la Corte requiri\u00f3 al Estado que mantenga y ", - "values": [ - "Corte Interamericana de Derechos Humanos" - ] - }, - { - "text": "RESOLUCI\u00d3N DEL PRESIDENTE DE LA CORTE INTERAMERICANA DE DERECHOS HUMANOS DE DE MARZO DE CASO ANCEJUBSUNAT Vs. PER\u00da CONVOCATORIA A AUDIENCIA VISTO El escrito de sometimiento del caso y el Informe de Fondo de la Comisi\u00f3n Interamericana de Derechos Humanos en adelante la Comisi\u00f3n Interamericana o la Comisi\u00f3n el escrito de solicitudes argumentos y pruebas en adelante el escrito de solicitudes y argumentos o ESAP de los representantes de las presuntas v\u00edctimas en adelante los representantes y el ", - "values": [ - "Corte Interamericana de Derechos Humanos" - ] - }, - { - "text": "RESOLUCI\u00d3N DEL PRESIDENTE DE LA CORTE INTERAMERICANA DE DERECHOS HUMANOS DE DE MARZO DE CASO GORIGOIT\u00cdA VS. ARGENTINA RESOLUCI\u00d3N DE CONVOCATORIA VISTO El escrito de sometimiento del caso y el Informe de Fondo de la Comisi\u00f3n Interamericana de Derechos Humanos en adelante la Comisi\u00f3n Interamericana o la Comisi\u00f3n el escrito de solicitudes argumentos y pruebas en adelante el escrito de solicitudes y argumentos de los representantes de la presunta v\u00edctima en adelante los representantes el escrito", - "values": [ - "Corte Interamericana de Derechos Humanos" - ] - }, - { - "text": "RESOLUCI\u00d3N DEL PRESIDENTE DE LA CORTE INTERAMERICANA DE DERECHOS HUMANOS DE DE MARZO DE CASO HERN\u00c1NDEZ VS. ARGENTINA CONVOCATORIA A AUDIENCIA VISTO El escrito de sometimiento del caso y el Informe de Fondo de la Comisi\u00f3n Interamericana de Derechos Humanos en adelante la Comisi\u00f3n Interamericana o la Comisi\u00f3n el escrito de solicitudes argumentos y pruebas en adelante el escrito de solicitudes y argumentos de los representantes de las presuntas v\u00edctimas en adelante los representantes el escrito", - "values": [ - "Corte Interamericana de Derechos Humanos" - ] - }, - { - "text": "RESOLUCI\u00d3N DEL PRESIDENTE DE LA CORTE INTERAMERICANA DE DERECHOS HUMANOS DE DE MARZO DE CASO ROMERO FERIS VS. ARGENTINA CONVOCATORIA A AUDIENCIA VISTO El escrito de sometimiento del caso y el Informe de Fondo de la Comisi\u00f3n Interamericana de Derechos Humanos en adelante la Comisi\u00f3n Interamericana o la Comisi\u00f3n el escrito de solicitudes argumentos y pruebas en adelante el escrito de solicitudes y argumentos del representante de la presunta v\u00edctima en adelante el representante y el escrito de ", - "values": [ - "Corte Interamericana de Derechos Humanos" - ] - }, - { - "text": "RESOLUCI\u00d3N DE LA CORTE INTERAMERICANA DE DERECHOS HUMANOS DE DE MARZO DE CASO MOLINA THEISSEN VS. GUATEMALA SUPERVISI\u00d3N DE CUMPLIMIENTO DE SENTENCIA VISTO Las Sentencias de fondo en adelante la Sentencia y de reparaciones y costas en adelante la Sentencia de reparaciones emitidas por la Corte Interamericana de Derechos Humanos en adelante la Corte Interamericana la Corte o el Tribunal el de mayo y de julio de Tomando en cuenta el reconocimiento de responsabilidad efectuado por la de en", - "values": [ - "Corte Interamericana de Derechos Humanos" - ] - }, - { - "text": "RESOLUCI\u00d3N DE LA CORTE INTERAMERICANA DE DERECHOS HUMANOS DE DE MARZO DE MEDIDAS PROVISIONALES RESPECTO DE M\u00c9XICO CASO FERN\u00c1NDEZ ORTEGA Y OTROS VISTOS Las Resoluciones de la Corte Interamericana de Derechos Humanos en adelante la Corte Interamericana la Corte o el Tribunal y de su Presidencia de y de abril y de diciembre de de de noviembre de de de febrero de de de febrero de y de de febrero de En esta \u00faltima la Corte resolvi\u00f3 inter alia Mantener las medidas provisionales a ", - "values": [ - "Corte Interamericana de Derechos Humanos" - ] - }, - { - "text": "RESOLUCI\u00d3N DE LA CORTE INTERAMERICANA DE DERECHOS HUMANOS DE DE MARZO DE MEDIDAS PROVISIONALES RESPECTO DE LA REP\u00daBLICA DE COLOMBIA ASUNTO MERY NARANJO Y OTROS VISTO Las Resoluciones dictadas por la Corte Interamericana de Derechos Humanos en adelante la Corte Interamericana la Corte o el Tribunal los d\u00edas de julio y de septiembre de de enero de de noviembre de de marzo de y de agosto de as\u00ed como la Sentencia sobre el Caso Yarce y otras Vs. Colombia emitida el de noviembre de En", - "values": [ - "Corte Interamericana de Derechos Humanos" - ] - }, - { - "text": "RESOLUCI\u00d3N DE LA CORTE INTERAMERICANA DE DERECHOS HUMANOS DE DE MARZO DE CASO DE LAS NI\u00d1AS YEAN Y BOSICO Y CASO DE PERSONAS DOMINICANAS Y HAITIANAS EXPULSADAS VS. REP\u00daBLICA DOMINICANA SUPERVISI\u00d3N DE CUMPLIMIENTO DE SENTENCIAS Y COMPETENCIA VISTO Las Sentencias emitidas por la Corte Interamericana de Derechos Humanos en adelante la Corte Interamericana la Corte o el Tribunal el de septiembre de en el caso de las Ni\u00f1as Yean y Bosico y el de agosto de en el caso de Personas dominicanas y ", - "values": [ - "Corte Interamericana de Derechos Humanos" - ] - }, - { - "text": "RESOLUCI\u00d3N DE LA CORTE INTERAMERICANA DE DERECHOS HUMANOS DE DE MARZO DE SOLICITUD RESPECTO DE PARAGUAY CASO ARROM SUHURT Y OTROS VISTO El escrito de de diciembre de mediante el cual la Comisi\u00f3n Interamericana de Derechos Humanos en adelante la Comisi\u00f3n someti\u00f3 ante la Corte Interamericana de Derechos Humanos en adelante la Corte o el Tribunal el Caso Arrom Suhurt y otros Vs. Paraguay. La Audiencia P\u00fablica celebrada el de febrero de durante el Per\u00edodo Ordinario de Sesiones en la sede ", - "values": [ - "Corte Interamericana de Derechos Humanos" - ] - }, - { - "text": " de febrero de REF Caso No. Paola del Rosario Guzm\u00e1n Albarrac\u00edn y familiares Ecuador Se\u00f1or Secretario Tengo el agrado de dirigirme a usted en nombre de la Comisi\u00f3n Interamericana de Derechos Humanos con el objeto de someter a la jurisdicci\u00f3n de la Honorable Corte Interamericana de Derechos Humanos el caso Paola del Rosario Guzm\u00e1n Albarrac\u00edn y familiares respecto del Estado de Ecuador en adelante el Estado el Estado ecuatoriano o Ecuador. El caso se relaciona con la responsabilidad del de ", - "values": [ - "Comisi\u00f3n Interamericana de Derechos Humanos" - ] - }, - { - "text": "INFORME No. ADMISIBILIDAD PETICI\u00d3N PAOLA DEL ROSARIO GUZM\u00c1N ALBARRAC\u00cdN Y FAMILIARES ECUADOR de octubre de I. RESUMEN El de octubre de la Comisi\u00f3n Interamericana de Derechos Humanos en adelante la Comisi\u00f3n Interamericana o la CIDH recibi\u00f3 una petici\u00f3n presentada por el Centro de Derechos Reproductivos y el Centro Ecuatoriano para la Promoci\u00f3n y Acci\u00f3n de la Mujer CEPAMGuayaquil en adelante los peticionarios en la cual se alega la responsabilidad internacional del Estado de Ecuador en el ", - "values": [ - "Comisi\u00f3n Interamericana de Derechos Humanos" - ] - }, - { - "text": "REPORT No. CASE MERITS PAOLA DEL ROSARIO GUZM\u00c1N ALBARRAC\u00cdN AND RELATIVES ECUADOR OCTOBER I. SUMMARY On October the InterAmerican Commission on Human Rights hereinafter the InterAmerican Commission the Commission or the IACHR received a petition submitted by the Center for Reproductive Rights and the Centro Ecuatoriano para la Promoci\u00f3n y Acci\u00f3n de la Mujer CEPAMGuayaquil hereinafter the petitioner alleging that the Republic of Ecuador hereinafter the Ecuadorian State the State or Ecuador", - "values": [ - "Comisi\u00f3n Interamericana de Derechos Humanos" - ] - }, - { - "text": " de noviembre de REF Caso N\u00ba Carlos Alberto Fern\u00e1ndez Prieto y Carlos Alejandro Tumbeiro Argentina Se\u00f1or Secretario Tengo el agrado de dirigirme a usted en nombre de la Comisi\u00f3n Interamericana de Derechos Humanos con el objeto de presentar ante la Honorable Corte Interamericana de Derechos Humanos el Caso No. Carlos Alberto Fern\u00e1ndez Prieto y Carlos Alejandro Tumbeiro respecto de la Rep\u00fablica de Argentina en adelante el Estado el Estado argentino o Argentina. El presente caso se relaciona ", - "values": [ - "Comisi\u00f3n Interamericana de Derechos Humanos" - ] - }, - { - "text": "INFORME No. CASO FONDO CARLOS ALBERTO FERN\u00c1NDEZ PRIETO Y CARLOS ALEJANDRO TUMBEIRO FONDO ARGENTINA DE OCTUBRE DE I. RESUMEN El de julio de y de marzo de la Comisi\u00f3n Interamericana de Derechos Humanos en adelante la Comisi\u00f3n la Comisi\u00f3n Interamericana o la CIDH recibi\u00f3 dos peticiones en las cuales se aleg\u00f3 la responsabilidad internacional de la Rep\u00fablica de Argentina en adelante el Estado el Estado de Argentina el Estado argentino o Argentina por las alegadas detenciones ilegales y en ", - "values": [ - "Comisi\u00f3n Interamericana de Derechos Humanos" - ] - }, - { - "text": "INFORME No. PETICI\u00d3N ADMISIBILIDAD CARLOS ALBERTO FERN\u00c1NDEZ PRIETO Y CARLOS ALEJANDRO TUMBEIRO ARGENTINA de marzo de I. RESUMEN El de julio de la Comisi\u00f3n Interamericana de Derechos Humanos en lo sucesivo Comisi\u00f3n Interamericana Comisi\u00f3n o CIDH recibi\u00f3 una petici\u00f3n por parte de Sandra E. Arroyo Salgado abogada de la Defensor\u00eda General de la Naci\u00f3n y m\u00e1s adelante como copeticionaria se present\u00f3 la abogada Patricia AG. Azzi Defensora P\u00fablica Oficial de Mar del Plata a favor del se\u00f1or ", - "values": [ - "Comisi\u00f3n Interamericana de Derechos Humanos" - ] - }, - { - "text": "RESOLUCI\u00d3N DE LA CORTE INTERAMERICANA DE DERECHOS HUMANOS DE DE MAYO DE CASO POBLETE VILCHES Y OTROS VS. CHILE SUPERVISI\u00d3N DE CUMPLIMIENTO DE SENTENCIA VISTO La Sentencia de fondo reparaciones y costas en adelante la Sentencia dictada por la Corte Interamericana de Derechos Humanos en adelante la Corte Interamericana la Corte o el Tribunal el de marzo de La Corte declar\u00f3 la responsabilidad internacional de la Rep\u00fablica de Chile en adelante el Estado o Chile por no garantizar al se\u00f1or ", - "values": [ - "Corte Interamericana de Derechos Humanos" - ] - }, - { - "text": "CORTE INTERAMERICANA DE DERECHOS HUMANOS CASO CUSCUL PIVARAL Y OTROS VS. GUATEMALA SENTENCIA DE DE MAYO DE Interpretaci\u00f3n de la Sentencia de Excepci\u00f3n Preliminar Fondo Reparaciones y Costas En el caso Cuscul Pivaral y otros Vs. Guatemala la Corte Interamericana de Derechos Humanos en adelante la Corte Interamericana la Corte o el Tribunal integrada por los siguientes jueces Eduardo Ferrer MacGregor Poisot Presidente Eduardo Vio Grossi Vicepresidente Humberto Antonio Sierra Porto Juez Odio ", - "values": [ - "Corte Interamericana de Derechos Humanos" - ] - }, - { - "text": "RESOLUCI\u00d3N DE LA CORTE INTERAMERICANA DE DERECHOS HUMANOS DE DE MARZO DE CASO CRUZ S\u00c1NCHEZ Y OTROS VS. PER\u00da SUPERVISI\u00d3N DE CUMPLIMIENTO DE SENTENCIA VISTO La Sentencia de excepciones preliminares fondo reparaciones y costas en adelante la Sentencia dictada por la Corte Interamericana de Derechos Humanos en adelante la Corte Interamericana la Corte o el Tribunal el de abril de La Corte tomando en consideraci\u00f3n el reconocimiento parcial de responsabilidad de la Rep\u00fablica del Per\u00fa en el o ", - "values": [ - "Corte Interamericana de Derechos Humanos" - ] - }, - { - "text": "RESOLUCI\u00d3N DE LA CORTE INTERAMERICANA DE DERECHOS HUMANOS DE DE MARZO DE CASO TARAZONA ARRIETA Y OTROS VS. PER\u00da SUPERVISI\u00d3N DE CUMPLIMIENTO DE SENTENCIA VISTO La Sentencia de excepci\u00f3n preliminar fondo reparaciones y costas en adelante la Sentencia dictada por la Corte Interamericana de Derechos Humanos en adelante la Corte Interamericana la Corte o el Tribunal el de octubre de La Corte declar\u00f3 la responsabilidad internacional de la Rep\u00fablica del Per\u00fa en adelante el Estado o el Per\u00fa por ", - "values": [ - "Corte Interamericana de Derechos Humanos" - ] - }, - { - "text": "RESOLUCI\u00d3N DE LA CORTE INTERAMERICANA DE DERECHOS HUMANOS DE MARZO DE CASO HERRERA ESPINOZA Y OTROS VS. ECUADOR SUPERVISI\u00d3N DE CUMPLIMIENTO DE SENTENCIA VISTO La Sentencia de excepciones preliminares fondo reparaciones y costas en adelante la Sentencia dictada por la Corte Interamericana de Derechos Humanos en adelante la Corte Interamericana la Corte o el Tribunal el de septiembre de La Corte declar\u00f3 la responsabilidad internacional de la Rep\u00fablica del Ecuador en adelante Ecuador o el ", - "values": [ - "Corte Interamericana de Derechos Humanos" - ] - }, - { - "text": "RESOLUCI\u00d3N DEL PRESIDENTE DE LA CORTE INTERAMERICANA DE DERECHOS HUMANOS DE DE MARZO DE CASO RUIZ FUENTES VS. GUATEMALA CASO MART\u00cdNEZ CORONADO VS. GUATEMALA CASO GIR\u00d3N Y OTRO VS GUATEMALA CASO VALENZUELA \u00c1VILA VS GUATEMALA CASO RODR\u00cdGUEZ REVOLORIO Y OTROS VS. GUATEMALA VISTO La Resoluci\u00f3n del Presidente de la Corte Interamericana de Derechos Humanos en adelante el Presidente de de febrero de mediante la cual inter alia orden\u00f3 la recepci\u00f3n de diversas declaraciones mediante afid\u00e1vit y a la", - "values": [ - "Corte Interamericana de Derechos Humanos" - ] - }, - { - "text": "RESOLUCI\u00d3N DE LA CORTE INTERAMERICANA DE DERECHOS HUMANOS DE DE MAYO DE SOLICITUD DE MEDIDAS PROVISIONALES RESPECTO DE PARAGUAY CASO ARROM SUHURT Y OTROS VISTO El escrito de de diciembre de mediante el cual la Comisi\u00f3n Interamericana de Derechos Humanos en adelante la Comisi\u00f3n someti\u00f3 ante la Corte Interamericana de Derechos Humanos en adelante la Corte o el Tribunal el Caso Arrom Suhurt y otros Vs. Paraguay. La Audiencia P\u00fablica celebrada el de febrero de durante el Per\u00edodo Ordinario ", - "values": [ - "Corte Interamericana de Derechos Humanos" - ] - }, - { - "text": "RESOLUCI\u00d3N DEL PRESIDENTE DE LA CORTE INTERAMERICANA DE DERECHOS HUMANOS DE DE MAYO DE ADOPCI\u00d3N DE MEDIDAS URGENTES ASUNTO DE DIECISIETE PERSONAS PRIVADAS DE LIBERTAD RESPECTO DE NICARAGUA VISTO El escrito de la Comisi\u00f3n Interamericana de Derechos Humanos en adelante la Comisi\u00f3n Interamericana o la Comisi\u00f3n de de mayo de y sus anexos mediante los cuales someti\u00f3 a la Corte Interamericana de Derechos Humanos en adelante la Corte Interamericana la Corte o el Tribunal una solicitud de medidas ", - "values": [ - "Corte Interamericana de Derechos Humanos" - ] - }, - { - "text": "COMISI\u00d3N INTERAMERICANA DE DERECHOS HUMANOS RESOLUCI\u00d3N Medidas cautelares y otras I. Bosco Ren\u00e9 Berm\u00fadez y otros respecto de Nicaragua Integrantes del movimiento estudiantil INTRODUCCI\u00d3N de mayo de Durante la visita de trabajo realizada por la Comisi\u00f3n Interamericana de Derechos Humanos en lo sucesivo la Comisi\u00f3n Interamericana la Comisi\u00f3n o la CIDH entre el al de mayo de recibi\u00f3 diversas solicitudes de medidas cautelares instando a que requiera al Estado de Nicaragua en adelante el ", - "values": [ - "Comisi\u00f3n Interamericana de Derechos Humanos" - ] - }, - { - "text": "COMISI\u00d3N INTERAMERICANA DE DERECHOS HUMANOS RESOLUCI\u00d3N Medidas cautelares No. y I. Cristhian Rodrigo Fajardo Caballero y otros respecto de Nicaragua INTRODUCCI\u00d3N de julio de Durante la visita de trabajo realizada por la Comisi\u00f3n Interamericana de Derechos Humanos en lo sucesivo la Comisi\u00f3n Interamericana la Comisi\u00f3n o la CIDH entre el al de mayo de recibi\u00f3 diversas solicitudes de medidas cautelares instando a que requiera al Estado de Nicaragua en adelante el Estado la protecci\u00f3n de", - "values": [ - "Comisi\u00f3n Interamericana de Derechos Humanos" - ] - }, - { - "text": "COMISI\u00d3N INTERAMERICANA DE DERECHOS HUMANOS RESOLUCI\u00d3N Medidas cautelares No. I. Edwin Jos\u00e9 Carcache D\u00e1vila respecto de Nicaragua INTRODUCCI\u00d3N de septiembre de Durante la visita de trabajo realizada por la Comisi\u00f3n Interamericana de Derechos Humanos en lo sucesivo la Comisi\u00f3n Interamericana la Comisi\u00f3n o la CIDH entre el al de mayo de recibi\u00f3 diversas solicitudes de medidas cautelares instando a que requiera al Estado de Nicaragua en adelante el Estado la protecci\u00f3n de la vida e de ", - "values": [ - "Comisi\u00f3n Interamericana de Derechos Humanos" - ] - }, - { - "text": "COMISI\u00d3N INTERAMERICANA DE DERECHOS HUMANOS RESOLUCI\u00d3N Medidas cautelares No. y Marco Antonio Carmona y otros respecto de Nicaragua I. INTRODUCCI\u00d3N Personas defensoras de derechos humanos de julio de Durante la visita de trabajo realizada por la Comisi\u00f3n Interamericana de Derechos Humanos en lo sucesivo la Comisi\u00f3n Interamericana la Comisi\u00f3n o la CIDH entre el al de mayo de recibi\u00f3 diversas solicitudes de medidas cautelares instando a que requiera al Estado de Nicaragua en adelante el ", - "values": [ - "Comisi\u00f3n Interamericana de Derechos Humanos" - ] - }, - { - "text": "COMISI\u00d3N INTERAMERICANA DE DERECHOS HUMANOS RESOLUCI\u00d3N Medidas cautelares No. I. Luc\u00eda Pineda Ubau y su n\u00facleo familiar respecto de Nicaragua Ampliaci\u00f3n INTRODUCCI\u00d3N de febrero de Durante la visita de trabajo realizada por la Comisi\u00f3n Interamericana de Derechos Humanos en lo sucesivo la Comisi\u00f3n Interamericana la Comisi\u00f3n o la CIDH entre el al de mayo de recibi\u00f3 diversas solicitudes de medidas cautelares instando a que requiera al Estado de Nicaragua en adelante el Estado la protecci\u00f3n ", - "values": [ - "Comisi\u00f3n Interamericana de Derechos Humanos" - ] - }, - { - "text": "COMISI\u00d3N INTERAMERICANA DE DERECHOS HUMANOS RESOLUCI\u00d3N Medidas cautelares No. Miguel Mora Barberena Leticia Gait\u00e1n Hern\u00e1ndez y sus n\u00facleos familiares respecto de Nicaragua Periodistas de Noticias I. INTRODUCCI\u00d3N de diciembre de Durante la visita de trabajo realizada por la Comisi\u00f3n Interamericana de Derechos Humanos en lo sucesivo la Comisi\u00f3n Interamericana la Comisi\u00f3n o la CIDH entre el al de mayo de recibi\u00f3 diversas solicitudes de medidas cautelares instando a que requiera al Estado ", - "values": [ - "Comisi\u00f3n Interamericana de Derechos Humanos" - ] - }, - { - "text": "COMISI\u00d3N INTERAMERICANA DE DERECHOS HUMANOS RESOLUCI\u00d3N Medidas cautelares No. I. M\u00f3nica L\u00f3pez Baltodano y su n\u00facleo familiar respecto de Nicaragua INTRODUCCI\u00d3N de septiembre de Durante la visita de trabajo realizada por la Comisi\u00f3n Interamericana de Derechos Humanos en lo sucesivo la Comisi\u00f3n Interamericana la Comisi\u00f3n o la CIDH entre el al de mayo de recibi\u00f3 diversas solicitudes de medidas cautelares instando a que requiera al Estado de Nicaragua en adelante el Estado la protecci\u00f3n de ", - "values": [ - "Comisi\u00f3n Interamericana de Derechos Humanos" - ] - }, - { - "text": "COMISI\u00d3N INTERAMERICANA DE DERECHOS HUMANOS RESOLUCI\u00d3N Medidas cautelares No. Amaya Eva Coppens Zamora y otras Privadas de Libertad en el Centro Penitenciario La Esperanza respecto de Nicaragua de noviembre de I. INTRODUCCI\u00d3N Durante la visita de trabajo realizada por la Comisi\u00f3n Interamericana de Derechos Humanos en lo sucesivo la Comisi\u00f3n Interamericana la Comisi\u00f3n o la CIDH entre el al de mayo de recibi\u00f3 diversas solicitudes de medidas cautelares instando a que requiera al Estado de ", - "values": [ - "Comisi\u00f3n Interamericana de Derechos Humanos" - ] - }, - { - "text": "COMISI\u00d3N INTERAMERICANA DE DERECHOS HUMANOS RESOLUCI\u00d3N Medidas cautelares No. Medardo Mairena Sequeira y Mario Lener Fonseca D\u00edaz respecto de Nicaragua Integrantes de la Alianza C\u00edvica por la Justicia y la Democracia y de la Mesa de Di\u00e1logo en representanci\u00f3n del Movimiento Campesino I. INTRODUCCI\u00d3N de octubre de Durante la visita de trabajo realizada por la Comisi\u00f3n Interamericana de Derechos Humanos en lo sucesivo la Comisi\u00f3n Interamericana la Comisi\u00f3n o la CIDH entre el al de mayo de ", - "values": [ - "Comisi\u00f3n Interamericana de Derechos Humanos" - ] - }, - { - "text": "RESOLUCI\u00d3N DE LA CORTE INTERAMERICANA DE DERECHOS HUMANOS DE DE MARZO DE SOLICITUD DE MEDIDAS PROVISIONALES RESPECTO DE LA REP\u00daBLICA DEL PER\u00da CASO MUELLE FLORES VISTOS El escrito de sometimiento del caso de de julio de mediante el cual la Comisi\u00f3n Interamericana de Derechos Humanos en adelante la Comisi\u00f3n Interamericana o la Comisi\u00f3n present\u00f3 a la Corte Interamericana de Derechos Humanos en adelante la Corte o el Tribunal el caso Muelle Flores Vs. Per\u00fa. La Comisi\u00f3n indic\u00f3 que el caso versa", - "values": [ - "Corte Interamericana de Derechos Humanos" - ] - }, - { - "text": "VOTO RAZONADO DEL JUEZ EDUARDO FERRER MACGREGOR POISOT CASO MUELLE FLORES VS. PER\u00da SENTENCIA DE DE MARZO DE Excepciones Preliminares Fondo Reparaciones y Costas INTRODUCCI\u00d3N EL DERECHO A LA SEGURIDAD SOCIAL COMO DERECHO AUT\u00d3NOMO Y JUSTICIABLE SU ESPECIAL IMPACTO EN LAS PERSONAS MAYORES La sentencia en el caso Muelle Flores Vs. Per\u00fa en adelante la Sentencia o Muelle Flores abona a la l\u00ednea jurisprudencial interamericana en materia de derechos econ\u00f3micos sociales culturales y ambientales en ", - "values": [ - "Corte Interamericana de Derechos Humanos" - ] - }, - { - "text": "VOTO PARCIALMENTE DISIDENTE DEL JUEZ HUMBERTO ANTONIO SIERRA PORTO CASO MUELLES FLORES VS. PER\u00da SENTENCIA DE DE MARZO DE Excepci\u00f3n Preliminar Fondo Reparaciones y Costas Con el reiterado respeto por las decisiones de la Corte Interamericana de Derechos Humanos en adelante tambi\u00e9n la Corte o el Tribunal me permito formular el presente voto parcialmente disidente. El voto se centra en el an\u00e1lisis de fondo que realiz\u00f3 la Corte acerca de la responsabilidad internacional del Estado en adelante el", - "values": [ - "Corte Interamericana de Derechos Humanos" - ] - }, - { - "text": "VOTO PARCIALMENTE DISIDENTE DEL JUEZ EDUARDO VIO GROSSI CORTE INTERAMERICANA DE DERECHOS HUMANOS CASO MUELLE FLORES VS. PER\u00da SENTENCIA DE DE MARZO DE Excepciones Preliminares Fondo Reparaciones y Costas. Se emite el presente voto parcialmente disidente respecto de la Sentencia del ep\u00edgrafe por discrepar respecto de lo decidido en sus Puntos Resolutivos N y en los que sobre la base de lo prescrito entre otras normas en el art\u00edculo de la Convenci\u00f3n Americana sobre Derechos Humanos ", - "values": [ - "Corte Interamericana de Derechos Humanos" - ] - }, - { - "text": "CORTE INTERAMERICANA DE DERECHOS HUMANOS CASO MUELLE FLORES VS. PER\u00da SENTENCIA DE DE MARZO DE Excepciones Preliminares Fondo Reparaciones y Costas En el caso Muelle Flores la Corte Interamericana de Derechos Humanos en adelante la Corte Interamericana la Corte o el Tribunal integrada por los siguientes jueces Eduardo Ferrer MacGregor Poisot Presidente Eduardo Vio Grossi Vicepresidente Humberto Antonio Sierra Porto Juez Elizabeth Odio Benito Jueza Eugenio Ra\u00fal Zaffaroni Juez y Patricio Juez", - "values": [ - "Corte Interamericana de Derechos Humanos" - ] - }, - { - "text": " de mayo de REF Caso N\u00ba Jimmy Guerrero Ram\u00f3n Molina y familiares Venezuela Se\u00f1or Secretario Tengo el agrado de dirigirme a usted en nombre de la Comisi\u00f3n Interamericana de Derechos Humanos con el objeto de someter a la jurisdicci\u00f3n de la Honorable Corte Interamericana de Derechos Humanos el Caso N\u00ba Jimmy Guerrero Ram\u00f3n Molina y familiares respecto de la Rep\u00fablica Bolivariana de Venezuela en adelante el Estado el Estado venezolano o Venezuela. El caso se relaciona con la responsabilidad del", - "values": [ - "Comisi\u00f3n Interamericana de Derechos Humanos" - ] - }, - { - "text": "INFORME No. PETICI\u00d3N ADMISIBILIDAD JIMMY RAFAEL GUERRERO MEL\u00c9NDEZ Y RAM\u00d3N ANTONIO MOLINA P\u00c9REZ Y FAMILIA VENEZUELA de febrero de I. RESUMEN El de marzo de la Comisi\u00f3n Interamericana de Derechos Humanos en adelante la Comisi\u00f3n recibi\u00f3 una petici\u00f3n presentada por Juan Carlos Guerrero y el Comit\u00e9 de Familiares de V\u00edctimas de los Sucesos de Febrero Marzo de COFAVIC en adelante los peticionarios en la cual se alega la responsabilidad de agentes de la Rep\u00fablica Bolivariana de Venezuela en ", - "values": [ - "Comisi\u00f3n Interamericana de Derechos Humanos" - ] - }, - { - "text": "INFORME No. CASO FONDO JIMMY GUERRERO RAM\u00d3N MOLINA P\u00c9REZ Y FAMILIARES VENEZUELA DE DICIEMBRE DE I. RESUMEN El de marzo de la Comisi\u00f3n Interamericana de Derechos Humanos en adelante la Comisi\u00f3n Interamericana la Comisi\u00f3n o la CIDH recibi\u00f3 una petici\u00f3n presentada por el Comit\u00e9 de Familiares de V\u00edctimas de los Sucesos de Febrero Marzo de COFAVIC y los se\u00f1ores Jean Carlos Guerrero y Carlos Ayala Corao en adelante la parte peticionaria en la cual se alega la responsabilidad internacional de", - "values": [ - "Comisi\u00f3n Interamericana de Derechos Humanos" - ] - }, - { - "text": " de abril de REF Caso N\u00ba Vicky Hern\u00e1ndez y familia Honduras Se\u00f1or Secretario Tengo el agrado de dirigirme a usted en nombre de la Comisi\u00f3n Interamericana de Derechos Humanos con el objeto de presentar ante la Honorable Corte Interamericana de Derechos Humanos el Caso N\u00ba Vicky Hern\u00e1ndez y familia respecto de la Rep\u00fablica de Honduras en adelante el Estado el Estado hondure\u00f1o o Honduras relacionado con la ejecuci\u00f3n extrajudicial de Vicky Hern\u00e1ndez mujer trans y defensora de derechos humanos ", - "values": [ - "Comisi\u00f3n Interamericana de Derechos Humanos" - ] - }, - { - "text": "REPORT No. CASE MERITS VICKY HERN\u00c1NDEZ AND FAMILY HONDURAS December I. SUMMARY On December the InterAmerican Commission on Human Rights hereinafter the InterAmerican Commission the Commission or the IACHR received a petition lodged by Red L\u00e9sbica CATTRACHAS a feminist lesbian organization in Honduras and Centro de Derechos Humanos de las Mujeres hereinafter the petitioners alleging the international responsibility of Honduras hereinafter the Honduran State the State or Honduras to the", - "values": [ - "Comisi\u00f3n Interamericana de Derechos Humanos" - ] - }, - { - "text": "INFORME No. PETICI\u00d3N INFORME DE ADMISIBILIDAD VICKY HERN\u00c1NDEZ Y FAMILIA HONDURAS DE DICIEMBRE DE I. RESUMEN El de diciembre de la Comisi\u00f3n Interamericana de Derechos Humanos en adelante la Comisi\u00f3n Interamericana la Comisi\u00f3n o la CIDH recibi\u00f3 una petici\u00f3n presentada por la Red L\u00e9sbica CATTRACHAS Organizaci\u00f3n L\u00e9sbica Feminista de Honduras el Centro de Derechos Humanos de las Mujeres CDM y Robert F. Kennedy Human Rights en adelante las peticionarias contra la Rep\u00fablica de Honduras en o ", - "values": [ - "Comisi\u00f3n Interamericana de Derechos Humanos" - ] - }, - { - "text": "INFORME No. PETICI\u00d3N ADMISIBILIDAD PATRICIO FERNANDO ROCHE AZA\u00d1A Y OTRO NICARAGUA de agosto de I. RESUMEN El de diciembre de la Comisi\u00f3n Interamericana de Derechos Humanos en adelante la Comisi\u00f3n Interamericana o la CIDH recibi\u00f3 una petici\u00f3n presentada por el se\u00f1or Patricio Barrera Tello el peticionario en representaci\u00f3n de los se\u00f1ores Pedro Bacilio Roche Aza\u00f1a y Patricio Fernando Roche Aza\u00f1a en adelante las presuntas v\u00edctimas mediante la cual asegur\u00f3 que el Estado de Nicaragua Nicaragua", - "values": [ - "Comisi\u00f3n Interamericana de Derechos Humanos" - ] - }, - { - "text": "INFORME No. CASO FONDO PEDRO BASILIO ROCHE AZA\u00d1A Y OTRO NICARAGUA DE OCTUBRE DE I. RESUMEN El de diciembre de la Comisi\u00f3n Interamericana de Derechos Humanos en adelante la Comisi\u00f3n Interamericana la Comisi\u00f3n o la CIDH recibi\u00f3 una petici\u00f3n presentada por el se\u00f1or Patricio Barrera Tello en representaci\u00f3n de los se\u00f1ores Pedro Bacilio Roche Aza\u00f1a y Patricio Fernando Roche Aza\u00f1a en adelante la parte peticionaria en la cual se alega la responsabilidad internacional del Estado de Nicaragua en ", - "values": [ - "Comisi\u00f3n Interamericana de Derechos Humanos" - ] - }, - { - "text": " de abril de REF Caso N\u00ba Pedro Bacilio Roche Aza\u00f1a y Otro Nicaragua Se\u00f1or Secretario Tengo el agrado de dirigirme a usted en nombre de la Comisi\u00f3n Interamericana de Derechos Humanos con el objeto de presentar a la jurisdicci\u00f3n de la Honorable Corte Interamericana de Derechos Humanos el Caso N\u00ba Pedro Bacilio Roche Aza\u00f1a y otro respecto de la Rep\u00fablica de Nicaragua en adelante el Estado el Estado nicarag\u00fcense o Nicaragua relacionado con la ejecuci\u00f3n extrajudicial de Pedro Bacilio Roche Aza\u00f1a ", - "values": [ - "Comisi\u00f3n Interamericana de Derechos Humanos" - ] - }, - { - "text": "INFORME No. PETICI\u00d3N ADMISIBILIDAD JOS\u00c9 DELF\u00cdN ACOSTA MART\u00cdNEZ Y FAMILIA ARGENTINA de julio de I. RESUMEN El de junio de la Comisi\u00f3n Interamericana de Derechos Humanos en adelante la Comisi\u00f3n o la CIDH recibi\u00f3 una petici\u00f3n presentada por la Comisi\u00f3n de Familiares de V\u00edctimas Indefensas de la Violencia Social COFAVI el Centro de Investigaciones Sociales y Asesor\u00edas Legales Populares CISALP y Paola Gabriela Canova en adelante los peticionarios en la cual alegan la responsabilidad de la de", - "values": [ - "Comisi\u00f3n Interamericana de Derechos Humanos" - ] - }, - { - "text": "NFORME No. CASO FONDO JOS\u00c9 DELF\u00cdN ACOSTA MARTINEZ ARGENTINA DE DICIEMBRE DE I. RESUMEN El de junio de la Comisi\u00f3n Interamericana de Derechos Humanos en adelante la Comisi\u00f3n Interamericana la Comisi\u00f3n o la CIDH recibi\u00f3 una petici\u00f3n presentada por la Comisi\u00f3n de familiares de v\u00edctimas indefensas de la violencia social COFAVI el Centro de Investigaciones Sociales y asesor\u00edas Legales Populares CISALP y Paola Gabriela Canova en adelante la parte peticionaria en la cual se alega la de la de", - "values": [ - "Comisi\u00f3n Interamericana de Derechos Humanos" - ] - }, - { - "text": " de abril de REF Caso N\u00ba Jos\u00e9 Delf\u00edn Acosta Mart\u00ednez y familiares Argentina Se\u00f1or Secretario Tengo el agrado de dirigirme a usted en nombre de la Comisi\u00f3n Interamericana de Derechos Humanos con el objeto de someter a la jurisdicci\u00f3n de la Honorable Corte Interamericana de Derechos Humanos el caso Jos\u00e9 Delf\u00edn Acosta Mart\u00ednez y familiares respecto de la Rep\u00fablica Argentina en adelante el Estado el Estado argentino o Argentina. El caso se relaciona con la responsabilidad internacional del de ", - "values": [ - "Comisi\u00f3n Interamericana de Derechos Humanos" - ] - }, - { - "text": "REPORT N\u00ba PETITION ADMISSIBILITY VICTORIO SPOLTORE ARGENTINA July I. SUMMARY This report addresses the admissibility of petition opened by the InterAmerican Commission on Human Rights hereinafter the Commission or IACHR in response to a complaint that was received on September from Mr. Victorio Spoltore against the Republic of Argentina hereinafter Argentina or the State. The petitioner alleges that the State has incurred international liability under the American Convention on Human ", - "values": [ - "Comisi\u00f3n Interamericana de Derechos Humanos" - ] - }, - { - "text": " de enero de REF Caso N\u00ba Victorio Spoltore Argentina Se\u00f1or Secretario Tengo el agrado de dirigirme a usted en nombre de la Comisi\u00f3n Interamericana de Derechos Humanos con el objeto de someter a la jurisdicci\u00f3n de la Honorable Corte Interamericana de Derechos Humanos el Caso N\u00ba Victorio Spoltore respecto de la Rep\u00fablica Argentina en adelante el Estado el Estado argentino o Argentina relacionado con la demora y denegaci\u00f3n de justicia de Victorio Spoltore en el contexto de un proceso laboral ", - "values": [ - "Comisi\u00f3n Interamericana de Derechos Humanos" - ] - }, - { - "text": "REPORT No. CASE REPORT ON THE MERITS VICTORIO SPOLTORE ARGENTINA JULY I. SUMMARY On September the InterAmerican Commission on Human Rights hereinafter the IACHR the Commission or the InterAmerican Commission received a petition lodged by Mr. Victorio Spoltore hereinafter the petitioner or the alleged victim in which he alleged the responsibility of the Republic of Argentina hereinafter the State Argentina or the Argentine State for violating the rights enshrined in the American on Human", - "values": [ - "Comisi\u00f3n Interamericana de Derechos Humanos" - ] - }, - { - "text": " de febrero de REF Caso N\u00ba Daniel Urrutia Laubreaux Chile Se\u00f1or Secretario Tengo el agrado de dirigirme a usted en nombre de la Comisi\u00f3n Interamericana de Derechos Humanos con el objeto de someter a la jurisdicci\u00f3n de la Honorable Corte Interamericana de Derechos Humanos el Caso N\u00ba Daniel Urrutia Laubreaux respecto de Chile en adelante el Estado el Estado chileno o Chile relacionado con una serie de violaciones de derechos humanos en el marco del proceso disciplinario que culmin\u00f3 con una ", - "values": [ - "Comisi\u00f3n Interamericana de Derechos Humanos" - ] - }, - { - "text": "INFORME No. CASO FONDO DANIEL URRUTIA LAUBREAUX CHILE DE FEBRERO DE I. RESUMEN El de diciembre de la Comisi\u00f3n Interamericana de Derechos Humanos en adelante la Comisi\u00f3n Interamericana la Comisi\u00f3n o la CIDH recibi\u00f3 una petici\u00f3n presentada por el Centro por la Justicia y el Derecho Internacional CEJIL y Daniel Urrutia Laubreaux en adelante la parte peticionaria en la cual se alega la responsabilidad internacional de Chile en adelante el Estado chileno el Estado o Chile en perjuicio de ", - "values": [ - "Comisi\u00f3n Interamericana de Derechos Humanos" - ] - }, - { - "text": "INFORME No. PETICI\u00d3N ADMISIBILIDAD DANIEL URRUTIA LABREAUX CHILE DE JULIO DE I. RESUMEN El de diciembre de la Comisi\u00f3n Interamericana de Derechos Humanos en adelante la Comisi\u00f3n Interamericana o la Comisi\u00f3n recibi\u00f3 una denuncia presentada por el Centro por la Justicia y el Derecho Internacional a trav\u00e9s de su representante la se\u00f1ora Liliana Tojo y el se\u00f1or Pedro E. D\u00edaz R en favor del se\u00f1or Daniel Urrutia Laubreaux en adelante Daniel Urrutia o la presunta v\u00edctima en contra de la de en", - "values": [ - "Comisi\u00f3n Interamericana de Derechos Humanos" - ] - }, - { - "text": "INFORME No. PETICI\u00d3N ADMISIBILIDAD ORLANDO OLIVARES Y OTROS MUERTES EN LA C\u00c1RCEL DE VISTA HERMOSA VENEZUELA de marzo de I. RESUMEN El de octubre de la Comisi\u00f3n Interamericana de Derechos Humanos en adelante la Comisi\u00f3n la CIDH o la Comisi\u00f3n Interamericana recibi\u00f3 una petici\u00f3n presentada por el Observatorio Venezolano de Prisiones en adelante los peticionarios en la cual se alega la responsabilidad de la Rep\u00fablica Bolivariana de Venezuela en adelante tambi\u00e9n el Estado por la ejecuci\u00f3n de", - "values": [ - "Comisi\u00f3n Interamericana de Derechos Humanos" - ] - }, - { - "text": " de abril de REF Caso N\u00ba Orlando Edgardo Olivares Mu\u00f1oz y Otros Muertes en la C\u00e1rcel de Vista Hermosa Rep\u00fablica Bolivariana de Venezuela Se\u00f1or Secretario Tengo el agrado de dirigirme a usted en nombre de la Comisi\u00f3n Interamericana de Derechos Humanos con el objeto de someter a la jurisdicci\u00f3n de la Honorable Corte Interamericana de Derechos Humanos el caso No. Orlando Edgardo Olivares Mu\u00f1oz y Otros Muertes en la C\u00e1rcel de Vista Hermosa respecto de la Rep\u00fablica Bolivariana de Venezuela en ", - "values": [ - "Comisi\u00f3n Interamericana de Derechos Humanos" - ] - }, - { - "text": "INFORME No. CASO FONDO ORLANDO EDGARDO OLIVARES MU\u00d1OZ Y OTROS MUERTES EN LA C\u00c1RCEL DE VISTA HERMOSA VENEZUELA DE OCTUBRE DE I. RESUMEN El de octubre de la Comisi\u00f3n Interamericana de Derechos Humanos en adelante la Comisi\u00f3n Interamericana la Comisi\u00f3n o la CIDH recibi\u00f3 una petici\u00f3n presentada por el Observatorio Venezolano de Prisiones en adelante la parte peticionaria en la cual se alega la responsabilidad internacional de la Rep\u00fablica Bolivariana de Venezuela en adelante el Estado el o", - "values": [ - "Comisi\u00f3n Interamericana de Derechos Humanos" - ] - }, - { - "text": "RESOLUCI\u00d3N DE LA CORTE INTERAMERICANA DE DERECHOS HUMANOS DE DE MAYO DE CASO COMUNIDAD IND\u00cdGENA SAWHOYAMAXA VS. PARAGUAY SUPERVISI\u00d3N DE CUMPLIMIENTO DE SENTENCIA VISTO La Sentencia de fondo reparaciones y costas emitida por la Corte Interamericana de Derechos Humanos en adelante la Corte la Corte Interamericana o el Tribunal el de marzo de La Corte determin\u00f3 que la Rep\u00fablica del Paraguay en adelante el Estado o Paraguay incurri\u00f3 en responsabilidad internacional por haber violado entre ", - "values": [ - "Corte Interamericana de Derechos Humanos" - ] - }, - { - "text": "RESOLUCI\u00d3N DE LA CORTE INTERAMERICANA DE DERECHOS HUMANOS DE DE MAYO DE CASO COMUNIDAD IND\u00cdGENA X\u00c1KMOK K\u00c1SEK VS. PARAGUAY SUPERVISI\u00d3N DE CUMPLIMIENTO DE SENTENCIA VISTO La Sentencia de fondo reparaciones y costas emitida por la Corte Interamericana de Derechos Humanos en adelante la Corte la Corte Interamericana o el Tribunal el de agosto de La Corte determin\u00f3 que la Rep\u00fablica del Paraguay en adelante el Estado o Paraguay incurri\u00f3 en responsabilidad internacional por haber violado entre ", - "values": [ - "Corte Interamericana de Derechos Humanos" - ] - }, - { - "text": "RESOLUCI\u00d3N DE LA CORTE INTERAMERICANA DE DERECHOS HUMANOS DE DE MAYO DE CASO GOIBUR\u00da Y OTROS VS. PARAGUAY SUPERVISI\u00d3N DE CUMPLIMIENTO DE SENTENCIA VISTO La Sentencia de fondo reparaciones y costas en adelante la Sentencia dictada por la Corte Interamericana de Derechos Humanos en adelante la Corte Interamericana la Corte o el Tribunal el de septiembre de En dicho fallo la Corte tom\u00f3 en cuenta el reconocimiento de responsabilidad internacional efectuado por la Rep\u00fablica del Paraguay en el ", - "values": [ - "Corte Interamericana de Derechos Humanos" - ] - }, - { - "text": "RESOLUCI\u00d3N DE LA CORTE INTERAMERICANA DE DERECHOS HUMANOS DE DE MAYO DE CASO COMUNIDAD IND\u00cdGENA YAKYE AXA VS. PARAGUAY SUPERVISI\u00d3N DE CUMPLIMIENTO DE SENTENCIA VISTO La Sentencia de fondo reparaciones y costas emitida por la Corte Interamericana de Derechos Humanos en adelante la Corte la Corte Interamericana o el Tribunal el de junio de La Corte determin\u00f3 que la Rep\u00fablica del Paraguay en adelante el Estado o Paraguay incurri\u00f3 en responsabilidad internacional por haber violado entre otros ", - "values": [ - "Corte Interamericana de Derechos Humanos" - ] - }, - { - "text": "RESOLUCI\u00d3N DEL PRESIDENTE DE LA CORTE INTERAMERICANA DE DERECHOS HUMANOS DE DE JULIO DE CASO ROJAS MAR\u00cdN Y OTRA VS. PER\u00da VISTO El escrito de sometimiento del caso y el Informe de Fondo de la Comisi\u00f3n Interamericana de Derechos Humanos en adelante la Comisi\u00f3n Interamericana o la Comisi\u00f3n el escrito de solicitudes argumentos y pruebas en adelante el escrito de solicitudes y argumentos de las representantes de las presuntas v\u00edctimas en adelante las representantes el escrito de excepciones y ", - "values": [ - "Corte Interamericana de Derechos Humanos" - ] - }, - { - "text": "RESOLUCI\u00d3N DEL PRESIDENTE DE LA CORTE INTERAMERICANA DE DERECHOS HUMANOS DE DE JUNIO DE CASO MONTESINOS MEJIA Vs. ECUADOR VISTO El escrito de sometimiento del caso y el Informe de Fondo de la Comisi\u00f3n Interamericana de Derechos Humanos en adelante la Comisi\u00f3n Interamericana o la Comisi\u00f3n el escrito de solicitudes argumentos y pruebas en adelante el escrito de solicitudes y argumentos del representante de la presunta v\u00edctima en adelante el representante el escrito de contestaci\u00f3n al del caso", - "values": [ - "Corte Interamericana de Derechos Humanos" - ] - }, - { - "text": "RESOLUCI\u00d3N DEL PRESIDENTE DE LA CORTE INTERAMERICANA DE DERECHOS HUMANOS DE DE JULIO DE CASO NOGUERA Y OTROS VS. PARAGUAY CONVOCATORIA A AUDIENCIA VISTO El escrito de sometimiento del caso y el Informe de Fondo de la Comisi\u00f3n Interamericana de Derechos Humanos en adelante la Comisi\u00f3n Interamericana o la Comisi\u00f3n el escrito de solicitudes argumentos y pruebas en adelante el escrito de solicitudes y argumentos de los representantes de las presuntas v\u00edctimas en adelante los representantes y el ", - "values": [ - "Corte Interamericana de Derechos Humanos" - ] - }, - { - "text": "CORTE INTERAMERICANA DE DERECHOS HUMANOS CASO L\u00d3PEZ SOTO Y OTROS VS. VENEZUELA SENTENCIA DE DE MAYO DE Interpretaci\u00f3n de la Sentencia de Fondo Reparaciones y Costas En el caso L\u00f3pez Soto y otros Vs. Venezuela la Corte Interamericana de Derechos Humanos en adelante la Corte Interamericana la Corte o el Tribunal integrada por los siguientes Jueces Eduardo Ferrer MacGregor Poisot Presidente Eduardo Vio Grossi Vicepresidente Humberto Antonio Sierra Porto Juez Elizabeth Odio Benito Jueza Eugenio ", - "values": [ - "Corte Interamericana de Derechos Humanos" - ] - }, - { - "text": "RESOLUCI\u00d3N DE LA CORTE INTERAMERICANA DE DERECHOS HUMANOS DE DE MAYO DE CASOS G\u00d3MEZ PALOMINO ANZUALDO CASTRO OSORIO RIVERA Y FAMILIARES Y TENORIO ROCA Y OTROS VS. PER\u00da SUPERVISI\u00d3N DE CUMPLIMIENTO DE SENTENCIA VISTO Las Sentencias de excepciones preliminares fondo reparaciones y costas emitidas por la Corte Interamericana de Derechos Humanos en adelante la Corte Interamericana la Corte o el Tribunal los d\u00edas de noviembre de de septiembre de de noviembre de y de junio de en adelante ", - "values": [ - "Corte Interamericana de Derechos Humanos" - ] - }, - { - "text": "CORTE INTERAMERICANA DE DERECHOS HUMANOS CASO ARROM SUHURT Y OTROS VS. PARAGUAY SENTENCIA DE DE MAYO DE Fondo En el caso Arrom Suhurt y otros Vs. Paraguay la Corte Interamericana de Derechos Humanos en adelante la Corte Interamericana la Corte o este Tribunal integrada por los siguientes jueces Eduardo Ferrer MacGregor Poisot Presidente Eduardo Vio Grossi Vicepresidente Humberto Antonio Sierra Porto Juez Elizabeth Odio Benito Jueza Patricio Pazmi\u00f1o Freire Juez y Ricardo P\u00e9rez Manrique Juez ", - "values": [ - "Corte Interamericana de Derechos Humanos" - ] - }, - { - "text": "RESOLUCI\u00d3N DEL PRESIDENTE DE LA CORTE INTERAMERICANA DE DERECHOS HUMANOS DE DE JULIO DE ADOPCI\u00d3N DE MEDIDAS URGENTES ASUNTO INTEGRANTES DEL CENTRO NICARAG\u00dcENSE DE DERECHOS HUMANOS CENIDH Y DE LA COMISI\u00d3N PERMANENTE DE DERECHOS HUMANOS CPDH RESPECTO DE NICARAGUA VISTO El escrito de la Comisi\u00f3n Interamericana de Derechos Humanos en adelante la Comisi\u00f3n Interamericana o la Comisi\u00f3n o CIDH de de junio de y sus anexos mediante los cuales someti\u00f3 a la Corte Interamericana de Derechos Humanos en ", - "values": [ - "Corte Interamericana de Derechos Humanos" - ] - }, - { - "text": "RESOLUCI\u00d3N DEL PRESIDENTE DE LA CORTE INTERAMERICANA DE DERECHOS HUMANOS DE DE MAYO DE MEDIDAS URGENTES Y SUPERVISI\u00d3N DE CUMPLIMIENTO DE SENTENCIA CASO MASACRES DE El MOZOTE Y LUGARES ALEDA\u00d1OS VS. EL SALVADOR VISTO La Sentencia de fondo reparaciones y costas en adelante la Sentencia dictada por la Corte Interamericana de Derechos Humanos en adelante la Corte Interamericana la Corte o el Tribunal el de octubre de El caso se refiri\u00f3 a las violaciones a derechos humanos perpetradas por la ", - "values": [ - "Corte Interamericana de Derechos Humanos" - ] - }, - { - "text": "CORTE INTERAMERICANA DE DERECHOS HUMANOS CASO MART\u00cdNEZ CORONADO VS. GUATEMALA SENTENCIA DE DE MAYO DE Fondo Reparaciones y Costas En el caso Mart\u00ednez Coronado la Corte Interamericana de Derechos Humanos en adelante la Corte Interamericana la Corte o este Tribunal integrada por los siguientes Jueces Eduardo Ferrer MacGregor Poisot Presidente Eduardo Vio Grossi Vicepresidente Humberto Antonio Sierra Porto Juez Elizabeth Odio Benito Jueza L. Patricio Pazmi\u00f1o Freire Juez y Ricardo P\u00e9rez Manrique", - "values": [ - "Corte Interamericana de Derechos Humanos" - ] - }, - { - "text": "RESOLUCI\u00d3N DEL PRESIDENTE DE LA CORTE INTERAMERICANA DE DERECHOS HUMANOS DE DE JULIO DE FONDO DE ASISTENCIA LEGAL DE V\u00cdCTIMAS CASO FLOR FREIRE VS. ECUADOR VISTO El escrito de de diciembre de y sus anexos mediante los cuales la Comisi\u00f3n Interamericana de Derechos Humanos en adelante la Comisi\u00f3n Interamericana o la Comisi\u00f3n someti\u00f3 ante la Corte Interamericana de Derechos Humanos en adelante la Corte Interamericana la Corte o el Tribunal el presente caso. El escrito de de febrero de el ", - "values": [ - "Corte Interamericana de Derechos Humanos" - ] - }, - { - "text": "RESOLUCI\u00d3N DEL PRESIDENTE DE LA CORTE INTERAMERICANA DE DERECHOS HUMANOS EN EJERCICIO PARA EL PRESENTE CASO DE DE DICIEMBRE DE CASO FLOR FREIRE VS. ECUADOR CONVOCATORIA A AUDIENCIA VISTO El escrito de sometimiento del caso y el Informe de Fondo de la Comisi\u00f3n Interamericana de Derechos Humanos en adelante la Comisi\u00f3n Interamericana o la Comisi\u00f3n el escrito de solicitudes argumentos y pruebas en adelante el escrito de solicitudes y argumentos del representante de la presunta v\u00edctima en el ", - "values": [ - "Corte Interamericana de Derechos Humanos" - ] - }, - { - "text": "CORTE INTERAMERICANA DE DERECHOS HUMANOS TARAZONA ARRIETA Y OTROS VS. PER\u00da SENTENCIA DE DE OCTUBRE DE Excepci\u00f3n Preliminar Fondo Reparaciones y Costas En el Caso Tarazona Arrieta y otros la Corte Interamericana de Derechos Humanos en adelante la Corte Interamericana la Corte o el Tribunal integrada por los siguientes Jueces Humberto Antonio Sierra Porto Presidente Roberto F. Caldas Vicepresidente Manuel E. Ventura Robles Juez Eduardo Vio Grossi Juez y Eduardo Ferrer MacGregor Poisot Juez ", - "values": [ - "Corte Interamericana de Derechos Humanos" - ] - }, - { - "text": "RESOLUCI\u00d3N DE LA CORTE INTERAMERICANA DE DERECHOS HUMANOS DE DE MAYO DE CASO COMUNIDAD GAR\u00cdFUNA TRIUNFO DE LA CRUZ Y SUS MIEMBROS VS. HONDURAS SUPERVISI\u00d3N DE CUMPLIMIENTO DE SENTENCIA VISTO La Sentencia de fondo reparaciones y costas en adelante la Sentencia dictada por la Corte Interamericana de Derechos Humanos en adelante la Corte Interamericana la Corte o el Tribunal el de octubre de La Corte declar\u00f3 la responsabilidad internacional de la Rep\u00fablica de Honduras en adelante el Estado u ", - "values": [ - "Corte Interamericana de Derechos Humanos" - ] - }, - { - "text": "RESOLUCI\u00d3N DE LA CORTE INTERAMERICANA DE DERECHOS HUMANOS DE DE MAYO DE CASO COMUNIDAD GAR\u00cdFUNA DE PUNTA PIEDRA Y SUS MIEMBROS VS. HONDURAS SUPERVISI\u00d3N DE CUMPLIMIENTO DE SENTENCIA VISTO La Sentencia de excepciones preliminares fondo reparaciones y costas en adelante la Sentencia dictada por la Corte Interamericana de Derechos Humanos en adelante la Corte Interamericana la Corte o el Tribunal el de octubre de La Corte declar\u00f3 la responsabilidad internacional de la Rep\u00fablica de Honduras en ", - "values": [ - "Corte Interamericana de Derechos Humanos" - ] - }, - { - "text": "RESOLUCI\u00d3N DE LA CORTE INTERAMERICANA DE DERECHOS HUMANOS DE DE MAYO DE CASO CANTORAL HUAMAN\u00cd Y GARC\u00cdA SANTA CRUZ VS. PER\u00da SUPERVISI\u00d3N DE CUMPLIMIENTO DE SENTENCIA VISTO La Sentencia de excepci\u00f3n preliminar fondo reparaciones y costas en adelante la Sentencia dictada por la Corte Interamericana de Derechos Humanos en adelante la Corte Interamericana la Corte o el Tribunal el de julio de La Corte tomando en consideraci\u00f3n el reconocimiento parcial de responsabilidad realizado por la del en", - "values": [ - "Corte Interamericana de Derechos Humanos" - ] - }, - { - "text": "RESOLUCI\u00d3N DEL PRESIDENTE DE LA CORTE INTERAMERICANA DE DERECHOS HUMANOS DE DE JULIO DE CASO CARRANZA ALARC\u00d3N VS. ECUADOR VISTO El escrito de sometimiento del caso y el Informe de Fondo de la Comisi\u00f3n Interamericana de Derechos Humanos en adelante la Comisi\u00f3n Interamericana o la Comisi\u00f3n el escrito de solicitudes argumentos y pruebas en adelante el escrito de solicitudes y argumentos o ESAP del representante de la presunta v\u00edctima en adelante el representante el escrito de excepciones y al", - "values": [ - "Corte Interamericana de Derechos Humanos" - ] - }, - { - "text": "RESOLUCI\u00d3N DE LA CORTE INTERAMERICANA DE DERECHOS HUMANOS DE DE AGOSTO DE CASO ROJAS MAR\u00cdN Y OTRA VS. PER\u00da VISTO La Resoluci\u00f3n del Presidente en adelante el Presidente de la Corte Interamericana de Derechos Humanos en adelante la Corte Interamericana la Corte o este Tribunal de de julio de en adelante la Resoluci\u00f3n en la cual entre otros resolvi\u00f3 Convocar al Estado de Per\u00fa a las representantes y a la Comisi\u00f3n Interamericana de Derechos Humanos a una audiencia p\u00fablica sobre las excepciones", - "values": [ - "Corte Interamericana de Derechos Humanos" - ] - }, - { - "text": "CORTE INTERAMERICANA DE DERECHOS HUMANOS CASO GORIGOIT\u00cdA VS. ARGENTINA SENTENCIA DE DE SEPTIEMBRE DE Excepci\u00f3n Preliminar Fondo Reparaciones y Costas En el caso Gorigoit\u00eda Vs. Argentina la Corte Interamericana de Derechos Humanos en adelante la Corte Interamericana la Corte o este Tribunal integrada por los siguientes jueces Eduardo Ferrer MacGregor Poisot Presidente Eduardo Vio Grossi Vice Presidente Humberto Antonio Sierra Porto Juez Elizabeth Odio Benito Jueza L. Patricio Pazmi\u00f1o Freire y", - "values": [ - "Corte Interamericana de Derechos Humanos" - ] - }, - { - "text": "RESOLUCI\u00d3N DE LA CORTE INTERAMERICANA DE DERECHOS HUMANOS DE DE SEPTIEMBRE DE SOLICITUD DE MEDIDAS PROVISIONALES Y SUPERVISI\u00d3N DE CUMPLIMIENTO DE SENTENCIA CASO MASACRES DE EL MOZOTE Y LUGARES ALEDA\u00d1OS VS. EL SALVADOR VISTO La Sentencia de fondo reparaciones y costas en adelante la Sentencia dictada por la Corte Interamericana de Derechos Humanos en adelante la Corte Interamericana la Corte o el Tribunal el de octubre de El caso se refiri\u00f3 a las violaciones a derechos humanos perpetradas ", - "values": [ - "Corte Interamericana de Derechos Humanos" - ] - }, - { - "text": "VOTO DISIDENTE DEL JUEZ EDUARDO VIO GROSSI RESOLUCI\u00d3N DE LA CORTE INTERAMERICANA DE DERECHOS HUMANOS DE DE SEPTIEMBRE DE SOLICITUD DE MEDIDAS PROVISIONALES Y SUPERVISI\u00d3N DE CUMPLIMIENTO DE SENTENCIA CASO MASACRES DE EL MOZOTE Y LUGARES ALEDA\u00d1OS VS. EL SALVADOR INTRODUCCI\u00d3N. Se formula el presente voto disidente respecto de la Resoluci\u00f3n se\u00f1alada en el r\u00f3tulo en m\u00e9rito de que se discrepa de lo que se expresa en su resolutivo n a saber que tomando en consideraci\u00f3n la informaci\u00f3n aportada con ", - "values": [ - "Corte Interamericana de Derechos Humanos" - ] - }, - { - "text": " de marzo de REF Caso N\u00ba Jos\u00e9 Gregorio Mota Abarullo y Otros Muertes en la C\u00e1rcel de San F\u00e9lix Rep\u00fablica Bolivariana de Venezuela Se\u00f1or Secretario Tengo el agrado de dirigirme a usted en nombre de la Comisi\u00f3n Interamericana de Derechos Humanos con el objeto de someter a la jurisdicci\u00f3n de la Honorable Corte Interamericana de Derechos Humanos el Caso N\u00ba Jos\u00e9 Gregorio Mota Abarullo y Otros Muertes en la C\u00e1rcel de San F\u00e9lix respecto de la Rep\u00fablica Bolivariana de Venezuela en adelante el de ", - "values": [ - "Comisi\u00f3n Interamericana de Derechos Humanos" - ] - }, - { - "text": "REPORT No. CASE MERITS JOS\u00c9 GREGORIO MOTA ABARULLO AND OTHERS DEATHS AT THE SAN F\u00c9LIX PRISON VENEZUELA OCTOBER I. SUMMARY On October the InterAmerican Commission on Human Rights hereinafter the InterAmerican Commission the Commission or the IACHR received a petition filed by the Observatorio Venezolano de Prisiones hereinafter the petitioners alleging the international responsibility of the Bolivarian Republic of Venezuela hereinafter the Venezuelan State the State or Venezuela to the ", - "values": [ - "Comisi\u00f3n Interamericana de Derechos Humanos" - ] - }, - { - "text": "INFORME No. PETICI\u00d3N ADMISIBILIDAD JOS\u00c9 GREGORIO MOTA ABARULLO Y OTROS MUERTES EN LA C\u00c1RCEL DE SAN F\u00c9LIX VENEZUELA de noviembre de I. RESUMEN El de octubre de la Comisi\u00f3n Interamericana de Derechos Humanos en adelante la Comisi\u00f3n la CIDH o la Comisi\u00f3n Interamericana recibi\u00f3 una petici\u00f3n presentada por el Observatorio Venezolano de Prisiones en adelante los peticionarios en la cual se alega la responsabilidad de la Rep\u00fablica Bolivariana de Venezuela en adelante el Estado por la muerte de ", - "values": [ - "Comisi\u00f3n Interamericana de Derechos Humanos" - ] - }, - { - "text": "RESOLU\u00c7\u00c3O DO PRESIDENTE DA CORTE INTERAMERICANA DE DIREITOS HUMANOS DE DE NOVEMBRO DE CASO DOS EMPREGADOS DA F\u00c1BRICA DE FOGOS DE SANTO ANT\u00d4NIO DE JESUS VS. BRASIL TENDO VISTO O escrito de apresenta\u00e7\u00e3o do caso e o Relat\u00f3rio de M\u00e9rito da Comiss\u00e3o Interamericana de Direitos Humanos doravante denominada Comiss\u00e3o Interamericana ou Comiss\u00e3o o escrito de solicita\u00e7\u00f5es argumentos e provas doravante denominado escrito de solicita\u00e7\u00f5es e argumentos dos representantes das supostas v\u00edtimas doravante o ", - "values": [ - "Corte Interamericana de Derechos Humanos" - ] - }, - { - "text": "RESOLUCI\u00d3N DE LA CORTE INTERAMERICANA DE DERECHOS HUMANOS DE DE NOVIEMBRE DE MEDIDAS PROVISIONALES RESPECTO DE M\u00c9XICO CASO FERN\u00c1NDEZ ORTEGA Y OTROS VISTOS Las Resoluciones de la Corte Interamericana de Derechos Humanos en adelante la Corte Interamericana la Corte o el Tribunal y de su Presidencia de y de abril y de diciembre de de de noviembre de de de febrero de de de febrero de de de febrero de y de de marzo de En esta \u00faltima la Corte resolvi\u00f3 inter alia Mantener las a ", - "values": [ - "Corte Interamericana de Derechos Humanos" - ] - }, - { - "text": "RESOLUCI\u00d3N DE LA CORTE INTERAMERICANA DE DERECHOS HUMANOS DE DE OCTUBRE DE REINTEGRO AL FONDO DE ASISTENCIA LEGAL DE V\u00cdCTIMAS CASO ALVARADO ESPINOZA Y OTROS VS. M\u00c9XICO VISTO La Sentencia de fondo reparaciones y costas dictada por la Corte Interamericana de Derechos Humanos en adelante la Corte la Corte Interamericana o el Tribunal el de noviembre de La Corte declar\u00f3 la responsabilidad internacional de los Estados Unidos Mexicanos en adelante el Estado o el Estado Mexicano o M\u00e9xico por la", - "values": [ - "Corte Interamericana de Derechos Humanos" - ] - }, - { - "text": "RESOLUCI\u00d3N DE LA CORTE INTERAMERICANA DE DERECHOS HUMANOS DE DE OCTUBRE DE REINTEGRO AL FONDO DE ASISTENCIA LEGAL DE V\u00cdCTIMAS CASO MUJERES V\u00cdCTIMAS DE TORTURA SEXUAL EN ATENCO VS. M\u00c9XICO VISTO La Sentencia de excepciones preliminares fondo reparaciones y costas dictada por la Corte Interamericana de Derechos Humanos en adelante la Corte la Corte Interamericana o el Tribunal el de noviembre de La Corte tomando en cuenta el reconocimiento parcial de responsabilidad internacional efectuado ", - "values": [ - "Corte Interamericana de Derechos Humanos" - ] - }, - { - "text": "RESOLU\u00c7\u00c3O DA CORTE INTERAMERICANA DE DIREITOS HUMANOS DE DE OUTUBRO DE MEDIDAS PROVIS\u00d3RIAS A RESPEITO DO BRASIL ASSUNTO DO COMPLEXO PENITENCI\u00c1RIO DE PEDRINHAS TENDO VISTO A resolu\u00e7\u00e3o emitida pela Corte Interamericana de Direitos Humanos doravante denominada Corte Interamericana Corte ou Tribunal em de novembro de na qual se solicitou \u00e0 Rep\u00fablica Federativa do Brasil doravante denominada Brasil ou Estado que adotasse de forma imediata todas as medidas necess\u00e1rias para proteger eficazmente a", - "values": [ - "Corte Interamericana de Derechos Humanos" - ] - }, - { - "text": "RESOLUCI\u00d3N DE LA CORTE INTERAMERICANA DE DERECHOS HUMANOS DE DE OCTUBRE DE ASUNTO DIECISIETE PERSONAS PRIVADAS DE LIBERTAD RESPECTO DE NICARAGUA VISTO La resoluci\u00f3n de medidas urgentes del Presidente de la Corte Interamericana de Derechos Humanos en adelante la Corte Interamericana la Corte o el Tribunal de de mayo de mediante la cual se requiri\u00f3 al Estado adoptar las medidas necesarias para proteger la salud vida e integridad personal de personas privadas de libertad en Nicaragua as\u00ed ", - "values": [ - "Corte Interamericana de Derechos Humanos" - ] - }, - { - "text": "RESOLUCI\u00d3N DE LA CORTE INTERAMERICANA DE DERECHOS HUMANOS DE DE OCTUBRE DE MEDIDAS PROVISIONALES RESPECTO DE NICARAGUA ASUNTO INTEGRANTES DEL CENTRO NICARAG\u00dcENSE DE DERECHOS HUMANOS CENIDH Y DE LA COMISI\u00d3N PERMANENTE DE DERECHOS HUMANOS CPDH VISTOS El escrito de la Comisi\u00f3n Interamericana de Derechos Humanos en adelante la Comisi\u00f3n Interamericana o la Comisi\u00f3n o CIDH de de junio de y sus anexos mediante los cuales someti\u00f3 a la Corte Interamericana de Derechos Humanos en adelante la Corte ", - "values": [ - "Corte Interamericana de Derechos Humanos" - ] - }, - { - "text": "RESOLUCI\u00d3N DE LA CORTE INTERAMERICANA DE DERECHOS HUMANOS DE DE OCTUBRE DE CASO AMRHEIN Y OTROS VS. COSTA RICA SUPERVISI\u00d3N DE CUMPLIMIENTO DE SENTENCIA Y REINTEGRO AL FONDO DE ASISTENCIA LEGAL DE V\u00cdCTIMAS VISTOS La Sentencia de excepciones preliminares fondo reparaciones y costas en adelante la Sentencia o el Fallo dictada por la Corte Interamericana de Derechos Humanos en adelante la Corte la Corte Interamericana o el Tribunal el de abril de La Corte declar\u00f3 la responsabilidad de la ", - "values": [ - "Corte Interamericana de Derechos Humanos" - ] - }, - { - "text": "RESOLUCI\u00d3N DE LA CORTE INTERAMERICANA DE DERECHOS HUMANOS DE DE OCTUBRE DE REINTEGRO AL FONDO DE ASISTENCIA LEGAL DE V\u00cdCTIMAS CASO MUN\u00c1RRIZ ESCOBAR Y OTROS VS. PER\u00da VISTO La Sentencia de excepci\u00f3n preliminar fondo reparaciones y costas dictada por la Corte Interamericana de Derechos Humanos en adelante la Corte la Corte Interamericana o el Tribunal el de agosto de En dicha Sentencia la Corte declar\u00f3 la responsabilidad internacional del Estado del Per\u00fa en adelante el Estado o Per\u00fa por la ", - "values": [ - "Corte Interamericana de Derechos Humanos" - ] - }, - { - "text": "RESOLUCI\u00d3N DE LA CORTE INTERAMERICANA DE DERECHOS HUMANOS DE DE OCTUBRE DE REINTEGRO AL FONDO DE ASISTENCIA LEGAL DE V\u00cdCTIMAS CASO TERRONES SILVA Y OTROS VS. PER\u00da VISTO La Sentencia de excepciones preliminares fondo reparaciones y costas dictada por la Corte Interamericana de Derechos Humanos en adelante la Corte la Corte Interamericana o el Tribunal el de septiembre de En dicha Sentencia la Corte declar\u00f3 la responsabilidad internacional del Estado del Per\u00fa en adelante el Estado o el Per\u00fa", - "values": [ - "Corte Interamericana de Derechos Humanos" - ] - }, - { - "text": "RESOLUCI\u00d3N DE LA CORTE INTERAMERICANA DE DERECHOS HUMANOS DE DE OCTUBRE DE CASO CARVAJAL CARVAJAL Y OTROS VS. COLOMBIA SUPERVISI\u00d3N DE CUMPLIMIENTO DE SENTENCIA VISTO La Sentencia de fondo reparaciones y costas en adelante la Sentencia dictada por la Corte Interamericana de Derechos Humanos en adelante la Corte Interamericana la Corte o el Tribunal el de marzo de El Tribunal declar\u00f3 la responsabilidad internacional de la Rep\u00fablica de Colombia en adelante Colombia o el Estado por la muerte ", - "values": [ - "Corte Interamericana de Derechos Humanos" - ] - }, - { - "text": "RESOLUCI\u00d3N DE LA CORTE INTERAMERICANA DE DERECHOS HUMANOS DE DE OCTUBRE DE CASO FLOR FREIRE VS. ECUADOR SUPERVISI\u00d3N DE CUMPLIMIENTO DE SENTENCIA VISTO El de agosto de la Corte Interamericana de Derechos Humanos en adelante la Corte Interamericana la Corte o este Tribunal dict\u00f3 la Sentencia mediante la cual declar\u00f3 responsable internacionalmente a la Rep\u00fablica del Ecuador en adelante el Estado o Ecuador por la separaci\u00f3n del se\u00f1or Homero Flor Freire como funcionario militar de la Fuerza ", - "values": [ - "Corte Interamericana de Derechos Humanos" - ] - }, - { - "text": "CORTE INTERAMERICANA DE DERECHOS HUMANOS CASO \u00c1LVAREZ RAMOS VS. VENEZUELA SENTENCIA DE DE AGOSTO DE Excepci\u00f3n Preliminar Fondo Reparaciones y Costas En el caso \u00c1lvarez Ramos la Corte Interamericana de Derechos Humanos en adelante la Corte Interamericana la Corte o este Tribunal integrada por los siguientes Jueces Eduardo Ferrer MacGregor Poisot Presidente Eduardo Vio Grossi Vicepresidente Humberto Antonio Sierra Porto Juez Elizabeth Odio Benito Jueza Eugenio Ra\u00fal Zaffaroni Juez L. Patricio ", - "values": [ - "Corte Interamericana de Derechos Humanos" - ] - }, - { - "text": "CORTE INTERAMERICANA DE DERECHOS HUMANOS CASO RICO VS. ARGENTINA SENTENCIA DE DE SEPTIEMBRE Excepci\u00f3n Preliminar y Fondo En el Caso Rico Vs. Argentina la Corte Interamericana de Derechos Humanos en adelante la Corte Interamericana la Corte o el Tribunal integrada por los siguientes Jueces Eduardo Ferrer MacGregor Poisot Presidente Eduardo Vio Grossi Vicepresidente Humberto Antonio Sierra Porto Juez Elizabeth Odio Benito Jueza y L. Patricio Pazmi\u00f1o Freire Juez presente adem\u00e1s Pablo Saavedra ", - "values": [ - "Corte Interamericana de Derechos Humanos" - ] - }, - { - "text": "CORTE INTERAMERICANA DE DERECHOS HUMANOS CASO PERRONE Y PRECKEL VS. ARGENTINA SENTENCIA DE DE OCTUBRE DE Excepciones PreliminaresFondo Reparaciones y Costas En el caso Perrone y Preckel la Corte Interamericana de Derechos Humanos en adelante la Corte Interamericana la Corte o este Tribunal integrada por los siguientes jueces Eduardo Ferrer MacGregor Poisot Presidente Eduardo Vio Grossi Vice Presidente Humberto Antonio Sierra Porto Juez Elizabeth Odio Benito Jueza L. Patricio Pazmi\u00f1o Freire y", - "values": [ - "Corte Interamericana de Derechos Humanos" - ] - }, - { - "text": "CORTE INTERAMERICANA DE DERECHOS HUMANOS CASO RUIZ FUENTES Y OTRA VS. GUATEMALA SENTENCIA DE DE OCTUBRE DE Excepci\u00f3n Preliminar Fondo Reparaciones y Costas En el caso Ruiz Fuentes y otra la Corte Interamericana de Derechos Humanos en adelante la Corte Interamericana la Corte o este Tribunal integrada por los siguientes jueces Eduardo Ferrer MacGregor Poisot Presidente Eduardo Vio Grossi Vicepresidente Humberto Antonio Sierra Porto Juez Elizabeth Odio Benito Jueza L. Patricio Pazmi\u00f1o Freire ", - "values": [ - "Corte Interamericana de Derechos Humanos" - ] - }, - { - "text": "CORTE INTERAMERICANA DE DERECHOS HUMANOS CASO GIR\u00d3N Y OTRO VS. GUATEMALA SENTENCIA DE DE OCTUBRE DE Excepci\u00f3n Preliminar Fondo Reparaciones y Costas En el caso Gir\u00f3n y otro Vs. Guatemala la Corte Interamericana de Derechos Humanos en adelante la Corte Interamericana la Corte o este Tribunal integrada por los siguientes Jueces Eduardo Ferrer MacGregor Poisot Presidente Eduardo Vio Grossi Vicepresidente Humberto Antonio Sierra Porto Juez Elizabeth Odio Benito Jueza Patricio Pazmi\u00f1o Freire Juez", - "values": [ - "Corte Interamericana de Derechos Humanos" - ] - }, - { - "text": "VOTO CONCURRENTE DEL JUEZ HUMBERTO ANTONIO SIERRA PORTO A LA RESOLUCI\u00d3N DE MEDIDAS PROVISIONALES Y SUPERVISI\u00d3N DE CUMPLIMIENTO DE SENTENCIA DE DE OCTUBRE DE DE LA CORTE INTERAMERICANA DE DERECHOS HUMANOS CASO DE LOS MIEMBROS DE LA ALDEA CHICHUPAC Y COMUNIDADES VECINAS DEL MUNICIPIO DE RABINAL CASO MOLINA THEISSEN Y OTROS CASOS CONTRA GUATEMALA Me permito formular el presente voto concurrente resaltando el respeto a la decisi\u00f3n un\u00e1nime adoptada por la Corte Interamericana de Derechos Humanos", - "values": [ - "Corte Interamericana de Derechos Humanos" - ] - }, - { - "text": "RESOLUCI\u00d3N DE LA CORTE INTERAMERICANA DE DERECHOS HUMANOS DE DE OCTUBRE DE CASO DE LOS MIEMBROS DE LA ALDEA CHICHUPAC Y COMUNIDADES VECINAS DEL MUNICIPIO DE RABINAL CASO MOLINA THEISSEN Y OTROS CASOS CONTRA GUATEMALA MEDIDAS PROVISIONALES Y SUPERVISI\u00d3N DE CUMPLIMIENTO DE SENTENCIA VISTO La Sentencia de excepciones preliminares fondo reparaciones y costas dictada por la Corte Interamericana de Derechos Humanos en adelante la Corte la Corte Interamericana o el Tribunal el de de noviembre de", - "values": [ - "Corte Interamericana de Derechos Humanos" - ] - }, - { - "text": "INFORME No. CASO FONDO YENINA ESTHER MARTINEZ ESQUIVIA COLOMBIA DE OCTUBRE DE I. RESUMEN El de diciembre de la Comisi\u00f3n Interamericana de Derechos Humanos en adelante la Comisi\u00f3n Interamericana la Comisi\u00f3n o la CIDH recibi\u00f3 una petici\u00f3n presentada por Yenina Esther Mart\u00ednez Esquivia en adelante la parte peticionaria en la cual alega la responsabilidad internacional de la Rep\u00fablica de Colombia en adelante el Estado colombiano el Estado o Colombia. La Comisi\u00f3n aprob\u00f3 el informe de No. ", - "values": [ - "Comisi\u00f3n Interamericana de Derechos Humanos" - ] - }, - { - "text": "INFORME No. PETICI\u00d3N ADMISIBILIDAD YENINA ESTHER MART\u00cdNEZ ESQUIVIA COLOMBIA de marzo de I. RESUMEN El de diciembre de la Comisi\u00f3n Interamericana de Derechos Humanos en adelante la Comisi\u00f3n recibi\u00f3 una petici\u00f3n presentada en nombre propio por Yenina Esther Mart\u00ednez Esquivia en adelante la peticionaria en la cual se alega la responsabilidad de la Rep\u00fablica de Colombia en adelante el Estado el Estado colombiano o Colombia por violar diversos derechos reconocidos por la Convenci\u00f3n Americana", - "values": [ - "Comisi\u00f3n Interamericana de Derechos Humanos" - ] - }, - { - "text": "REF Caso N\u00ba Yenina Esther Mart\u00ednez Esquivia Colombia de mayo de Se\u00f1or Secretario Tengo el agrado de dirigirme a usted en nombre de la Comisi\u00f3n Interamericana de Derechos Humanos con el objeto de someter a la jurisdicci\u00f3n de la Honorable Corte Interamericana de Derechos Humanos el Caso N\u00ba Yenina Esther Mart\u00ednez Esquivia respecto de la Rep\u00fablica de Colombia en adelante el Estado el Estado colombiano o Colombia. El caso se refiere a una serie de violaciones en el marco del proceso que con ", - "values": [ - "Comisi\u00f3n Interamericana de Derechos Humanos" - ] - }, - { - "text": "INFORME No. PETICI\u00d3N ADMISIBILIDAD RUFINO JORGE ALMEIDA ARGENTINA de julio de I. RESUMEN El de julio de Rufino Jorge Almeida Myriam Carsen y Octavio Carsen en adelante los peticionarios presentaron ante la Comisi\u00f3n Interamericana de Derechos Humanos en adelante la Comisi\u00f3n o la CIDH en la cual se alega la responsabilidad internacional de la Rep\u00fablica de Argentina en adelante el Estado o Argentina por la alegada discriminaci\u00f3n en el proceso seguido por reparaciones en el marco de la Ley ", - "values": [ - "Comisi\u00f3n Interamericana de Derechos Humanos" - ] - }, - { - "text": "INFORME No. CASO FONDO RUFINO JORGE ALMEIDA ARGENTINA DE DICIEMBRE DE I. RESUMEN El de julio de la Comisi\u00f3n Interamericana de Derechos Humanos en adelante la Comisi\u00f3n Interamericana la Comisi\u00f3n o la CIDH recibi\u00f3 una petici\u00f3n presentada por Rufino Jorge Almeida Myriam Carsen y Octavio Carsen en adelante la parte peticionaria en la cual se alega la responsabilidad internacional de la Rep\u00fablica de Argentina en adelante el Estado argentino el Estado o Argentina en perjuicio de Rufino Jorge ", - "values": [ - "Comisi\u00f3n Interamericana de Derechos Humanos" - ] - }, - { - "text": "REF Caso N\u00ba Rufino Jorge Almeida Argentina de agosto de Se\u00f1or Secretario Tengo el agrado de dirigirme a usted en nombre de la Comisi\u00f3n Interamericana de Derechos Humanos con el objeto de someter a la jurisdicci\u00f3n de la Honorable Corte Interamericana de Derechos Humanos el caso No. Rufino Jorge Almeida respecto de la Rep\u00fablica de Argentina en adelante el Estado el Estado argentino o Argentina relacionado con la responsabilidad internacional del Estado por la falta de indemnizaci\u00f3n del se\u00f1or", - "values": [ - "Comisi\u00f3n Interamericana de Derechos Humanos" - ] - }, - { - "text": " de julio de REF Caso N\u00ba Jineth Bedoya Lima y Otra Colombia Se\u00f1or Secretario Tengo el agrado de dirigirme a usted en nombre de la Comisi\u00f3n Interamericana de Derechos Humanos con el objeto de presentar ante la Honorable Corte Interamericana de Derechos Humanos el Caso N\u00ba Jineth Bedoya Lima y Otra respecto de la Rep\u00fablica de Colombia en adelante el Estado el Estado colombiano o Colombia relacionado con una serie de violaciones de derechos humanos derivadas del secuestro tortura y violaci\u00f3n ", - "values": [ - "Comisi\u00f3n Interamericana de Derechos Humanos" - ] - }, - { - "text": "REPORT No. CASE MERITS JINETH BEDOYA LIMA AND OTHER COLOMBIA DECEMBER I. SUMMARY On June the InterAmerican Commission on Human Rights hereinafter Commission InterAmerican Commission or IACHR received a petition filed by the Fundaci\u00f3n para la Libertad de Prensa hereinafter the petitioner alleging the international responsibility of the Republic of Colombia hereinafter the State or Colombia to the detriment of journalist Jineth Bedoya Lima and her mother Luz Nelly Lima. The Commission ", - "values": [ - "Comisi\u00f3n Interamericana de Derechos Humanos" - ] - }, - { - "text": "I. SUMMARY REPORT No. PETITION ADMISSIBILITY JINETH BEDOYA LIMA COLOMBIA July On June the InterAmerican Commission on Human Rights hereinafter the Commission the InterAmerican Commission or the IACHR received a petition filed by the Fundaci\u00f3n para la Libertad de Prensa hereinafter FLIPor the petitioner alleging that the Republic of Colombia hereinafter the State or Columbia is internationally responsible for the alleged violation of articles right to life right to personal integrity ", - "values": [ - "Comisi\u00f3n Interamericana de Derechos Humanos" - ] - }, - { - "text": "REPORT No. PETITION ADMISSIBILITY LUIS EDUARDO GUACHAL\u00c1 CHIMB\u00d3 ECUADOR November I. SUMMARY On March the InterAmerican Commission on Human Rights hereinafter the Commission the IACHR or the InterAmerican Commission received a petition presented by the Human Rights Clinic of the Pontifical Catholic University of Ecuador PUCE the Regional Foundation for Assistance in Human Rights INREDH and the Ecumenical Commission on Human Rights CEDHU hereinafter the petitioners which alleges that the ", - "values": [ - "Comisi\u00f3n Interamericana de Derechos Humanos" - ] - }, - { - "text": " de julio de REF Caso No. Luis Eduardo Guachal\u00e1 Chimb\u00f3 y familia Ecuador Se\u00f1or Secretario Tengo el agrado de dirigirme a usted en nombre de la Comisi\u00f3n Interamericana de Derechos Humanos con el objeto de presentar ante la Honorable Corte Interamericana de Derechos Humanos el Caso No. Luis Eduardo Guachal\u00e1 Chimb\u00f3 y familia respecto de la Rep\u00fablica de Ecuador en adelante el Estado el Estado ecuatoriano o Ecuador. El presente caso se relaciona con la desaparici\u00f3n de Luis Eduardo Guachal\u00e1 con", - "values": [ - "Comisi\u00f3n Interamericana de Derechos Humanos" - ] - }, - { - "text": "I. RESUMEN INFORME No. CASO FONDO LUIS EDUARDO GUACHAL\u00c1 CHIMB\u00d3 Y FAMILIA ECUADOR DE OCTUBRE DE El de marzo de la Comisi\u00f3n Interamericana de Derechos Humanos en adelante la Comisi\u00f3n la Comisi\u00f3n Interamericana o la CIDH recibi\u00f3 una petici\u00f3n presentada por la Cl\u00ednica de Derechos Humanos de la Pontificia Universidad Cat\u00f3lica del Ecuador la Fundaci\u00f3n Regional de Asesor\u00eda en Derechos Humanos y la Comisi\u00f3n Ecum\u00e9nica de Derechos Humanos en adelante los peticionarios. Los peticionarios alegaron ", - "values": [ - "Comisi\u00f3n Interamericana de Derechos Humanos" - ] - }, - { - "text": "CORTE INTERAMERICANA DE DERECHOS HUMANOS CASO G\u00d3MEZ VIRULA Y OTROS VS. GUATEMALA SENTENCIA DE DE NOVIEMBRE DE Excepci\u00f3n Preliminar Fondo Reparaciones y Costas En el caso G\u00f3mez Virula y otros Vs. Guatemala la Corte Interamericana de Derechos Humanos en adelante la Corte Interamericana la Corte o este Tribunal integrada por los siguientes jueces Eduardo Ferrer MacGregor Poisot Presidente Eduardo Vio Grossi Vicepresidente Humberto Antonio Sierra Porto Juez Elizabeth Odio Benito Jueza Eugenio ", - "values": [ - "Corte Interamericana de Derechos Humanos" - ] - }, - { - "text": "VOTO CONCURRENTE DEL JUEZ EDUARDO VIO GROSSI CORTE INTERAMERICANA DE DERECHOS HUMANOS CASO G\u00d3MEZ VIRULA Y OTROS VS. GUATEMALA SENTENCIA DE DE NOVIEMBRE DE Excepci\u00f3n Preliminar Fondo Reparaciones y Costas I. INTRODUCCI\u00d3N. Se emite el presente voto concurrente de la Sentencia del ep\u00edgrafe con el \u00fanico prop\u00f3sito la raz\u00f3n por la que vot\u00f3 favorablemente su Punto Resolutivo N relativo a la excepci\u00f3n interpuesta por la Rep\u00fablica de Guatemala referida al requisito del previo agotamiento de los ", - "values": [ - "Corte Interamericana de Derechos Humanos" - ] - }, - { - "text": "CORTE INTERAMERICANA DE DERECHOS HUMANOS CASO HERN\u00c1NDEZ VS. ARGENTINA SENTENCIA DE DE NOVIEMBRE DE Excepci\u00f3n Preliminar Fondo Reparaciones y Costas En el caso Hern\u00e1ndez Vs. Argentina la Corte Interamericana de Derechos Humanos en adelante la Corte Interamericana la Corte o este Tribunal integrada por los siguientes jueces Eduardo Ferrer MacGregor Poisot Presidente Eduardo Vio Grossi Vicepresidente Humberto Antonio Sierra Porto Juez Elizabeth Odio Benito Jueza L. Patricio Pazmi\u00f1o Freire Juez y", - "values": [ - "Corte Interamericana de Derechos Humanos" - ] - }, - { - "text": "VOTO RAZONADO DEL JUEZ EDUARDO FERRER MACGREGOR POISOT A LA SENTENCIA DE DE NOVIEMBRE DE DE LA CORTE INTERAMERICANA DE DERECHOS HUMANOS EN EL CASO HERN\u00c1NDEZ VS. ARGENTINA INTRODUCCI\u00d3N Hace poco m\u00e1s de dos a\u00f1os la Corte Interamericana de Derechos Humanos en adelante Corte IDH o Tribunal Interamericano consider\u00f3 oportuno brindar una visi\u00f3n integral a las violaciones de derechos humanos que se iban presentando. A partir de entonces y hasta el cierre de el Tribunal Interamericano ha aportado ", - "values": [ - "Corte Interamericana de Derechos Humanos" - ] - }, - { - "text": "VOTO PARCIALMENTE DISIDENTE DEL JUEZ PATRICIO PAZMI\u00d1O FREIRE A LA SENTENCIA DE DE NOVIEMBRE DE DE LA CORTE INTERAMERICANA DE DERECHOS HUMANOS EN EL CASO HERN\u00c1NDEZ VS. ARGENTINA I. Introducci\u00f3n La sentencia del caso Hern\u00e1ndez Vs. Argentina en general consolida la tesis adoptada por la Corte Interamericana de Derechos Humanos a partir del caso Lagos del Campo Vs. Per\u00fa en lo relativo a la justiciabilidad directa de los derechos econ\u00f3micos sociales culturales y ambientales DESCA a trav\u00e9s del ", - "values": [ - "Corte Interamericana de Derechos Humanos" - ] - }, - { - "text": "VOTO PARCIALMENTE DISIDENTE DEL JUEZ HUMBERTO ANTONIO SIERRA PORTO A LA SENTENCIA DE DE NOVIEMBRE DE DE LA CORTE INTERAMERICANA DE DERECHOS HUMANOS EN EL CASO HERN\u00c1NDEZ VS. ARGENTINA I. Introducci\u00f3n En el marco de mi usual respeto por las decisiones de la Corte Interamericana de Derechos Humanos en lo adelante la Corte o el Tribunal formulo el presente voto para reafirmar y profundizar sobre las diversas contradicciones e inconsistencias l\u00f3gicas y jur\u00eddicas de las que adolece la teor\u00eda de la", - "values": [ - "Corte Interamericana de Derechos Humanos" - ] - }, - { - "text": "VOTO PARCIALMENTE DISIDENTE DEL JUEZ EDUARDO VIO GROSSI A LA SENTENCIA DE DE NOVIEMBRE DE DE LA CORTE INTERAMERICANA DE DERECHOS HUMANOS EN EL CASO HERN\u00c1NDEZ VS. ARGENTINA I. INTRODUCCI\u00d3N Se emite el presente voto parcialmente disidente respecto de la Sentencia del ep\u00edgrafe por discrepar respecto de lo decidido en el Punto Resolutivo N en el que sobre la base de lo prescrito entre otros art\u00edculos en el de la Convenci\u00f3n Americana sobre Derechos Humanos declara que la Rep\u00fablica Argentina", - "values": [ - "Corte Interamericana de Derechos Humanos" - ] - }, - { - "text": "VOTO CONCURRENTE DEL JUEZ RICARDO C. P\u00c9REZ MANRIQUE A LA SENTENCIA DE DE NOVIEMBRE DE DE LA CORTE INTERAMERICANA DE DERECHOS HUMANOS EN EL CASO HERN\u00c1NDEZ VS. ARGENTINA I. Introducci\u00f3n En mi voto concurrente en el Caso de la Asociaci\u00f3n Nacional de Cesantes y Jubilados de la Superintendencia Nacional de Administraci\u00f3n Tributaria ANCEJUBSUNAT Vs. Per\u00fa en adelante Caso ANCEJUBSUNAT expres\u00e9 una primera reflexi\u00f3n respecto a la manera en que considero que la Corte Interamericana de Derechos Humanos", - "values": [ - "Corte Interamericana de Derechos Humanos" - ] - }, - { - "text": "CORTE INTERAMERICANA DE DERECHOS HUMANOS D\u00cdAZ LORETO Y OTROS VS. VENEZUELA SENTENCIA DE DE NOVIEMBRE Excepciones Preliminares Fondo Reparaciones y Costas En el Caso D\u00edaz Loreto y otros Vs. Venezuela la Corte Interamericana de Derechos Humanos en adelante la Corte Interamericana la Corte o el Tribunal integrada por los siguientes Jueces Eduardo Ferrer MacGregor Poisot Presidente Eduardo Vio Grossi Vicepresidente Humberto Antonio Sierra Porto Juez Elizabeth Odio Benito Jueza Eugenio Ra\u00fal Juez ", - "values": [ - "Corte Interamericana de Derechos Humanos" - ] - }, - { - "text": "VOTO CONCURRENTE DEL JUEZ EDUARDO RA\u00daL ZAFFARONI CASO D\u00cdAZ LORETO Y OTROS VS. VENEZUELA SENTENCIA DE DE NOVIEMBRE DE Excepciones Preliminares Fondo Reparaciones y Costas Entiendo que los hechos probados en estos autos configuran tambi\u00e9n una violaci\u00f3n por parte del Estado de Venezuela al art\u00edculo numerales y de la Convenci\u00f3n Americana CADH. La prohibici\u00f3n de restablecer la pena de muerte CADH no se puede limitar a que con posterioridad a su abolici\u00f3n se sancione una ley que la prevea y a ", - "values": [ - "Corte Interamericana de Derechos Humanos" - ] - }, - { - "text": "VOTO DISIDENTE DEL JUEZ EDUARDO VIO GROSSI CORTE INTERAMERICANA DE DERECHOS HUMANOS D\u00cdAZ LORETO Y OTROS VS. VENEZUELA SENTENCIA DE DE NOVIEMBRE Excepciones Preliminares Fondo Reparaciones y Costas I. INTRODUCCI\u00d3N. Se emite el presente voto disidente de la Sentencia del ep\u00edgrafe en raz\u00f3n de lo dispuesto en su Punto Resolutivo N relativo a la excepci\u00f3n interpuesta por la Rep\u00fablica Bolivariana de Venezuela referida al requisito del previo agotamiento de los recursos internos previsto en la ", - "values": [ - "Corte Interamericana de Derechos Humanos" - ] - }, - { - "text": "VOTO CONCURRENTE DEL JUEZ EDUARDO FERRER MACGREGOR POISOT Y DE LA JUEZA ELIZABETH ODIO BENITO CASO D\u00cdAZ LORETO Y OTROS VS. VENEZUELA SENTENCIA DE DE NOVIEMBRE DE Excepciones Preliminares Fondo Reparaciones y Costas INTRODUCCI\u00d3N Desde su primer caso contencioso la Corte Interamericana de Derechos Humanos en adelante Corte IDH o Tribunal Interamericano ha utilizado el contexto como un elemento fundamental para la valoraci\u00f3n de los hechos sometidos a su consideraci\u00f3n y eventualmente determinar ", - "values": [ - "Corte Interamericana de Derechos Humanos" - ] - }, - { - "text": "CORTE INTERAMERICANA DE DERECHOS HUMANOS CASO JENKINS VS. ARGENTINA SENTENCIA DE DE NOVIEMBRE DE Excepciones Preliminares Fondo Reparaciones y Costas En el caso Jenkins la Corte Interamericana de Derechos Humanos en adelante la Corte Interamericana la Corte o este Tribunal integrada por los siguientes jueces Eduardo Vio Grossi Presidente en ejercicio Humberto Antonio Sierra Porto Juez Elizabeth Odio Benito Jueza L. Patricio Pazmi\u00f1o Freire Juez y Ricardo P\u00e9rez Manrique Juez presente adem\u00e1s ", - "values": [ - "Corte Interamericana de Derechos Humanos" - ] - }, - { - "text": "CORTE INTERAMERICANA DE DERECHOS HUMANOS CASO ROSADIO VILLAVICENCIO VS. PER\u00da SENTENCIA DE DE OCTUBRE DE Excepciones Preliminares Fondo Reparaciones y Costas En el caso Rosadio Villavicencio la Corte Interamericana de Derechos Humanos en adelante la Corte Interamericana la Corte o el Tribunal integrada por los siguientes jueces Eduardo Ferrer MacGregor Poisot Presidente Eduardo Vio Grossi Vicepresidente Humberto Antonio Sierra Porto Juez Elizabeth Odio Benito Jueza Eugenio Ra\u00fal Zaffaroni Juez ", - "values": [ - "Corte Interamericana de Derechos Humanos" - ] - }, - { - "text": "RESOLUCI\u00d3N DEL PRESIDENTE DE LA CORTE INTERAMERICANA DE DERECHOS HUMANOS DE DE DICIEMBRE DE CASO URRUTIA LAUBREAUX VS. CHILE VISTO El escrito de sometimiento del caso y el Informe de Fondo de la Comisi\u00f3n Interamericana de Derechos Humanos en adelante la Comisi\u00f3n Interamericana o la Comisi\u00f3n el escrito de solicitudes argumentos y pruebas en adelante el escrito de solicitudes y argumentos de los representantes de la presunta v\u00edctima en adelante los representantes y el escrito de excepciones y", - "values": [ - "Corte Interamericana de Derechos Humanos" - ] - }, - { - "text": "RESOLUCI\u00d3N DEL PRESIDENTE DE LA CORTE INTERAMERICANA DE DERECHOS HUMANOS DE DE DICIEMBRE DE CASO SPOLTORE VS. ARGENTINA VISTO El escrito de sometimiento del caso y el Informe de Fondo de la Comisi\u00f3n Interamericana de Derechos Humanos en adelante la Comisi\u00f3n Interamericana o la Comisi\u00f3n el escrito de solicitudes argumentos y pruebas en adelante el escrito de solicitudes y argumentos de los representantes de la presunta v\u00edctima en adelante los representantes y el escrito de excepci\u00f3n y al ", - "values": [ - "Corte Interamericana de Derechos Humanos" - ] - }, - { - "text": "RESOLUCI\u00d3N DEL PRESIDENTE DE LA CORTE INTERAMERICANA DE DERECHOS HUMANOS DE DE DICIEMBRE DE CASO PETRO URREGO VS. COLOMBIA CONVOCATORIA A AUDIENCIA VISTO El escrito de sometimiento del caso y el Informe de Fondo de la Comisi\u00f3n Interamericana de Derechos Humanos en adelante la Comisi\u00f3n Interamericana o la Comisi\u00f3n el escrito de solicitudes argumentos y pruebas en adelante escrito de solicitudes y argumentos de los representantes de la presunta v\u00edctima en adelante los representantes el escrito", - "values": [ - "Corte Interamericana de Derechos Humanos" - ] - }, - { - "text": "RESOLUCI\u00d3N DEL PRESIDENTE DE LA CORTE INTERAMERICANA DE DERECHOS HUMANOS DE DE DICIEMBRE DE CASO GUZM\u00c1N ALBARRAC\u00cdN Y FAMILIARES VS. ECUADOR CONVOCATORIA A AUDIENCIA VISTO El escrito de sometimiento del caso y el Informe de Fondo de la Comisi\u00f3n Interamericana de Derechos Humanos en adelante la Comisi\u00f3n Interamericana o la Comisi\u00f3n el escrito de solicitudes argumentos y pruebas en adelante el escrito de solicitudes y argumentos de las representantes de las presuntas v\u00edctimas en adelante las y", - "values": [ - "Corte Interamericana de Derechos Humanos" - ] - }, - { - "text": "RESOLUCI\u00d3N DE LA CORTE INTERAMERICANA DE DERECHOS HUMANOS DE DE NOVIEMBRE DE SOLICITUD RESPECTO DE PARAGUAY ASUNTO CRISTINA ARROM SUHURT VISTO La Resoluci\u00f3n de la Corte Interamericana de Derechos Humanos en adelante la Corte o el Tribunal de de marzo en la cual se orden\u00f3 al Estado de Paraguay en adelante el Estado o Paraguay adoptar las medidas necesarias para que cesara el proceso penal iniciado a la se\u00f1ora Cristina Hayd\u00e9e Arrom Suhurt a causa de sus declaraciones ante la Corte El de ", - "values": [ - "Corte Interamericana de Derechos Humanos" - ] - }, - { - "text": "RESOLUCI\u00d3N DEL PRESIDENTE DE LA CORTE INTERAMERICANA DE DERECHOS HUMANOS DE DE DICIEMBRE DE CASO ROCHE AZA\u00d1A Y OTROS VS. NICARAGUA VISTO El escrito de sometimiento del caso y el Informe de Fondo de la Comisi\u00f3n Interamericana de Derechos Humanos en adelante la Comisi\u00f3n Interamericana o la Comisi\u00f3n el escrito de solicitudes argumentos y pruebas en adelante el escrito de solicitudes y argumentos del representante de las presuntas v\u00edctimas en adelante el representante el escrito de contestaci\u00f3n ", - "values": [ - "Corte Interamericana de Derechos Humanos" - ] - }, - { - "text": "RESOLUCI\u00d3N DE LA CORTE INTERAMERICANA DE DERECHOS HUMANOS DE DE NOVIEMBRE DE CASO YARCE Y OTRAS VS. COLOMBIA SUPERVISI\u00d3N DE CUMPLIMIENTO DE SENTENCIA VISTO La Sentencia de excepci\u00f3n preliminar fondo reparaciones y costas en adelante la Sentencia o el Fallo dictada por la Corte Interamericana de Derechos Humanos en adelante la Corte Interamericana la Corte o el Tribunal el de noviembre de La Corte declar\u00f3 la responsabilidad internacional de la Rep\u00fablica de Colombia en adelante Colombia o ", - "values": [ - "Corte Interamericana de Derechos Humanos" - ] - }, - { - "text": "RESOLUCI\u00d3N DE LA CORTE INTERAMERICANA DE DERECHOS HUMANOS DE DE NOVIEMBRE DE CASO GUTI\u00c9RREZ Y FAMILIA VS. ARGENTINA SUPERVISI\u00d3N DE CUMPLIMIENTO DE SENTENCIA VISTO La Sentencia de fondo reparaciones y costas en adelante la Sentencia o el Fallo dictada por la Corte Interamericana de Derechos Humanos en adelante la Corte Interamericana la Corte o el Tribunal el de noviembre de La Corte acept\u00f3 el reconocimiento de responsabilidad realizado por la Rep\u00fablica Argentina en adelante el Estado o ", - "values": [ - "Corte Interamericana de Derechos Humanos" - ] - }, - { - "text": "RESOLUCI\u00d3N DE LA CORTE INTERAMERICANA DE DERECHOS HUMANOS DE DE NOVIEMBRE DE CASO ISAZA URIBE Y OTROS VS. COLOMBIA SUPERVISI\u00d3N DE CUMPLIMIENTO DE SENTENCIA Y REINTEGRO AL FONDO DE ASISTENCIA LEGAL DE V\u00cdCTIMAS VISTO La Sentencia de fondo reparaciones y costas en adelante la Sentencia dictada por la Corte Interamericana de Derechos Humanos en adelante la Corte la Corte Interamericana o el Tribunal el de noviembre de En dicha Sentencia la Corte declar\u00f3 internacionalmente responsable al de ", - "values": [ - "Corte Interamericana de Derechos Humanos" - ] - }, - { - "text": "RESOLUCI\u00d3N DE LA CORTE INTERAMERICANA DE DERECHOS HUMANOS DE DE NOVIEMBRE DE CASO VILLAMIZAR DUR\u00c1N Y OTROS VS. COLOMBIA SUPERVISI\u00d3N DE CUMPLIMIENTO DE SENTENCIA Y REINTEGRO AL FONDO DE ASISTENCIA LEGAL DE V\u00cdCTIMAS VISTO La Sentencia de excepci\u00f3n preliminar fondo reparaciones y costas en adelante la Sentencia dictada por la Corte Interamericana de Derechos Humanos en adelante la Corte la Corte Interamericana o el Tribunal el de noviembre de En dicha Sentencia la Corte declar\u00f3 responsable ", - "values": [ - "Corte Interamericana de Derechos Humanos" - ] - }, - { - "text": "RESOLUCI\u00d3N DE LA CORTE INTERAMERICANA DE DERECHOS HUMANOS DE DE NOVIEMBRE DE CASO ACOSTA Y OTROS VS. NICARAGUA SUPERVISI\u00d3N DE CUMPLIMIENTO DE SENTENCIA VISTO La Sentencia de excepciones preliminares fondo reparaciones y costas dictada por la Corte Interamericana de Derechos Humanos en adelante la Corte Interamericana la Corte o el Tribunal el de marzo de La Corte declar\u00f3 la responsabilidad internacional de la Rep\u00fablica de Nicaragua en adelante el Estado o Nicaragua por la impunidad del ", - "values": [ - "Corte Interamericana de Derechos Humanos" - ] - }, - { - "text": "RESOLUCI\u00d3N DE LA CORTE INTERAMERICANA DE DERECHOS HUMANOS DE DE NOVIEMBRE DE CASO FLEURY Y OTROS VS. HAIT\u00cd SUPERVISI\u00d3N DE CUMPLIMIENTO DE SENTENCIA VISTO La Sentencia de fondo y reparaciones en adelante la Sentencia dictada por la Corte Interamericana de Derechos Humanos en adelante la Corte la Corte Interamericana o el Tribunal el de noviembre de La Corte declar\u00f3 responsable internacionalmente a la Rep\u00fablica de Hait\u00ed en adelante el Estado o Hait\u00ed entre otras por las violaciones en el a", - "values": [ - "Corte Interamericana de Derechos Humanos" - ] - }, - { - "text": "RESOLUCI\u00d3N DE LA CORTE INTERAMERICANA DE DERECHOS HUMANOS DE DE NOVIEMBRE DE CASO ARTAVIA MURILLO Y OTROS FECUNDACI\u00d3N IN VITRO Y CASO G\u00d3MEZ MURILLO Y OTROS VS. COSTA RICA SUPERVISI\u00d3N DE CUMPLIMIENTO DE SENTENCIAS VISTO La Sentencia de excepciones preliminares fondo reparaciones y costas en adelante la Sentencia emitida por la Corte Interamericana de Derechos Humanos en adelante la Corte Interamericana la Corte o el Tribunal el de noviembre de en el caso Artavia Murillo y otros Fecundaci\u00f3n ", - "values": [ - "Corte Interamericana de Derechos Humanos" - ] - }, - { - "text": "RESOLUCI\u00d3N DE LA CORTE INTERAMERICANA DE DERECHOS HUMANOS DE DE NOVIEMBRE DE CASO G\u00d3MEZ MURILLO Y OTROS VS. COSTA RICA SUPERVISI\u00d3N DE CUMPLIMIENTO DE SENTENCIA VISTO La Sentencia emitida en el presente caso por la Corte Interamericana de Derechos Humanos en adelante la Corte la Corte Interamericana o el Tribunal el de noviembre de En dicha Sentencia la Corte homolog\u00f3 el Acuerdo de arreglo amistoso suscrito entre el Estado de Costa Rica y la parte demandante en adelante el Acuerdo de o ", - "values": [ - "Corte Interamericana de Derechos Humanos" - ] - }, - { - "text": "RESOLUCI\u00d3N DE LA CORTE INTERAMERICANA DE DERECHOS HUMANOS DE DE NOVIEMBRE DE CASO PUEBLO IND\u00cdGENA XUCURU Y SUS MIEMBROS VS. BRASIL SUPERVISI\u00d3N DE CUMPLIMIENTO DE SENTENCIA VISTO La Sentencia de excepciones preliminares fondo reparaciones y costas en adelante la Sentencia o el Fallo dictada por la Corte Interamericana de Derechos Humanos en adelante la Corte Interamericana la Corte o el Tribunal el de febrero de La Corte declar\u00f3 la responsabilidad internacional de la Rep\u00fablica Federativa ", - "values": [ - "Corte Interamericana de Derechos Humanos" - ] - }, - { - "text": "RESOLUCI\u00d3N DE LA CORTE INTERAMERICANA DE DERECHOS HUMANOS DE DE OCTUBRE DE CASO FAVELA NOVA BRASILIA VS. BRASIL SUPERVISI\u00d3N DE CUMPLIMIENTO DE SENTENCIA VISTO La Sentencia de excepciones preliminares fondo reparaciones y costas en adelante la Sentencia o el Fallo dictada por la Corte Interamericana de Derechos Humanos en adelante la Corte Interamericana la Corte o el Tribunal el de febrero de La Corte declar\u00f3 la responsabilidad internacional de la Rep\u00fablica Federativa del Brasil en el o", - "values": [ - "Corte Interamericana de Derechos Humanos" - ] - }, - { - "text": "CORTE INTERAMERICANA DE DERECHOS HUMANOS ROMERO FERIS VS. ARGENTINA SENTENCIA DE DE OCTUBRE Fondo Reparaciones y Costas En el Caso Romero Feris Vs. Argentina la Corte Interamericana de Derechos Humanos en adelante la Corte Interamericana la Corte o el Tribunal integrada por los siguientes Jueces Eduardo Ferrer MacGregor Poisot Presidente Eduardo Vio Grossi Vicepresidente Humberto Antonio Sierra Porto Juez Elizabeth Odio Benito Jueza L. Patricio Pazmi\u00f1o Freire Juez y Ricardo P\u00e9rez Manrique ", - "values": [ - "Corte Interamericana de Derechos Humanos" - ] - }, - { - "text": "RESOLUCI\u00d3N DE LA CORTE INTERAMERICANA DE DERECHOS HUMANOS DE DE OCTUBRE DE CASO FORNER\u00d3N E HIJA VS. ARGENTINA SUPERVISI\u00d3N DE CUMPLIMIENTO DE SENTENCIA VISTO La Sentencia de fondo reparaciones y costas en adelante la Sentencia dictada por la Corte Interamericana de Derechos Humanos en adelante la Corte Interamericana la Corte o el Tribunal el de abril de La Corte declar\u00f3 la responsabilidad internacional de la Rep\u00fablica de Argentina en adelante Argentina o el Estado por la violaci\u00f3n de los ", - "values": [ - "Corte Interamericana de Derechos Humanos" - ] - }, - { - "text": "VOTO DISIDENTE DEL JUEZ EDUARDO VIO GROSSI CORTE INTERAMERICANA DE DERECHOS HUMANOS CASO L\u00d3PEZ Y OTROS VS. ARGENTINA SENTENCIA DE DE NOVIEMBRE DE Excepciones Preliminares Fondo Reparaciones y Costas I. INTRODUCCI\u00d3N. Se emite el presente voto disidente de la Sentencia del ep\u00edgrafe en raz\u00f3n de lo dispuesto en su Punto Resolutivo N relativo a la excepci\u00f3n interpuesta por la Rep\u00fablica Argentina referida al requisito del previo agotamiento de los recursos internos previsto en la Convenci\u00f3n ", - "values": [ - "Corte Interamericana de Derechos Humanos" - ] - }, - { - "text": "CORTE INTERAMERICANA DE DERECHOS HUMANOS CASO L\u00d3PEZ Y OTROS VS. ARGENTINA SENTENCIA DE DE NOVIEMBRE DE Excepciones Preliminares Fondo Reparaciones y Costas En el caso L\u00f3pez y otros la Corte Interamericana de Derechos Humanos en adelante la Corte Interamericana la Corte o este Tribunal integrada por los siguientes Jueces Eduardo Vio Grossi Presidente en ejercicio Humberto Antonio Sierra Porto Juez Elizabeth Odio Benito Jueza L. Patricio Pazmi\u00f1o Freire Juez y Ricardo P\u00e9rez Manrique Juez ", - "values": [ - "Corte Interamericana de Derechos Humanos" - ] - }, - { - "text": "RESOLUCI\u00d3N DE LA CORTE INTERAMERICANA DE DERECHOS HUMANOS DE DE NOVIEMBRE DE CASO COLINDRES SCHONENBERG VS. EL SALVADOR SUPERVISI\u00d3N DE CUMPLIMIENTO DE SENTENCIA VISTO La Sentencia de fondo reparaciones y costas en adelante la Sentencia o el Fallo dictada por la Corte Interamericana de Derechos Humanos en adelante la Corte Interamericana la Corte o el Tribunal el de febrero de La Corte declar\u00f3 la responsabilidad internacional de la Rep\u00fablica de El Salvador en adelante el Estado o El por ", - "values": [ - "Corte Interamericana de Derechos Humanos" - ] - }, - { - "text": "RESOLUCI\u00d3N DE LA CORTE INTERAMERICANA DE DERECHOS HUMANOS DE DE NOVIEMBRE DE CASO DUQUE VS. COLOMBIA SUPERVISI\u00d3N DE CUMPLIMIENTO DE SENTENCIA Y REINTEGRO AL FONDO DE ASISTENCIA LEGAL DE V\u00cdCTIMAS VISTO La Sentencia de excepciones preliminares fondo reparaciones y costas en adelante la Sentencia o el Fallo dictada por la Corte Interamericana de Derechos Humanos en adelante la Corte la Corte Interamericana o el Tribunal el de febrero de La Corte declar\u00f3 que la Rep\u00fablica de Colombia en el ", - "values": [ - "Corte Interamericana de Derechos Humanos" - ] - }, - { - "text": "RESOLUCI\u00d3N DE LA CORTE INTERAMERICANA DE DERECHOS HUMANOS DE DE NOVIEMBRE DE CASO CABALLERO DELGADO Y SANTANA VS. COLOMBIA SUPERVISI\u00d3N DE CUMPLIMIENTO DE SENTENCIA VISTO Las Sentencias de fondo en adelante la Sentencia y de reparaciones y costas en adelante la Sentencia de reparaciones emitidas por la Corte Interamericana de Derechos Humanos en adelante la Corte Interamericana la Corte o el Tribunal respectivamente el de diciembre de y el de enero de El Tribunal declar\u00f3 la de la de", - "values": [ - "Corte Interamericana de Derechos Humanos" - ] - }, - { - "text": "CORTE INTERAMERICANA DE DERECHOS HUMANOS CASO OMEARA CARRASCAL Y OTROS VS. COLOMBIA SENTENCIA DE DE OCTUBRE DE Interpretaci\u00f3n de la Sentencia de Fondo Reparaciones y Costas En el caso Omeara Carrascal y otros Vs. Colombia la Corte Interamericana de Derechos Humanos en adelante la Corte Interamericana la Corte o este Tribunal integrada por los siguientes Jueces Eduardo Ferrer MacGregor Poisot Presidente Eduardo Vio Grossi Vicepresidente Elizabeth Odio Benito Jueza Eugenio Ra\u00fal Zaffaroni Juez y", - "values": [ - "Corte Interamericana de Derechos Humanos" - ] - }, - { - "text": "RESOLUCI\u00d3N DE LA CORTE INTERAMERICANA DE DERECHOS HUMANOS DE NOVIEMBRE DE CASO D\u00cdAZ PE\u00d1A Y CASO UZC\u00c1TEGUI Y OTROS VS. VENEZUELA SUPERVISI\u00d3N DE CUMPLIMIENTO DE SENTENCIAS VISTO Las Sentencias emitidas por la Corte Interamericana de Derechos Humanos en adelante la Corte o el Tribunal el de junio de y el de septiembre de respectivamente en los siguientes dos casos contra la Rep\u00fablica Bolivariana de Venezuela en adelante el Estado o Venezuela i D\u00edaz Pe\u00f1a y ii Uzc\u00e1tegui y otros en adelante ", - "values": [ - "Corte Interamericana de Derechos Humanos" - ] - }, - { - "text": "RESOLUCI\u00d3N DE LA CORTE INTERAMERICANA DE DERECHOS HUMANOS DE DE NOVIEMBRE DE CASO NADEGE DORZEMA Y OTROS VS. REP\u00daBLICA DOMINICANA SUPERVISI\u00d3N DE CUMPLIMIENTO DE SENTENCIA VISTO La Sentencia de fondo reparaciones y costas emitida por la Corte Interamericana de Derechos Humanos en adelante la Corte Interamericana la Corte o el Tribunal el de octubre de La Corte determin\u00f3 que la Rep\u00fablica Dominicana en adelante el Estado o Rep\u00fablica Dominicana incurri\u00f3 en responsabilidad internacional por la", - "values": [ - "Corte Interamericana de Derechos Humanos" - ] - }, - { - "text": "RESOLUCI\u00d3N DE LA CORTE INTERAMERICANA DE DERECHOS HUMANOS DE DE NOVIEMBRE DE CASO GONZ\u00c1LEZ MEDINA Y FAMILIARES VS. REP\u00daBLICA DOMINICANA SUPERVISI\u00d3N DE CUMPLIMIENTO DE SENTENCIA VISTO La Sentencia de excepciones preliminares fondo reparaciones y costas emitida por la Corte Interamericana de Derechos Humanos en adelante la Corte Interamericana la Corte o el Tribunal el de febrero de La Corte determin\u00f3 que la Rep\u00fablica Dominicana en adelante el Estado o Rep\u00fablica Dominicana incurri\u00f3 en por", - "values": [ - "Corte Interamericana de Derechos Humanos" - ] - }, - { - "text": "RESOLUCI\u00d3N DE LA CORTE INTERAMERICANA DE DERECHOS HUMANOS DE DE NOVIEMBRE DE CASO GARC\u00cdA ASTO Y RAM\u00cdREZ ROJAS VS. PER\u00da SUPERVISI\u00d3N DE CUMPLIMIENTO DE SENTENCIA VISTO La Sentencia de excepci\u00f3n preliminar fondo reparaciones y costas en adelante la Sentencia dictada por la Corte Interamericana de Derechos Humanos en adelante la Corte Interamericana la Corte o el Tribunal el de noviembre de En dicho Fallo la Corte tom\u00f3 en cuenta el reconocimiento parcial de responsabilidad efectuado por la ", - "values": [ - "Corte Interamericana de Derechos Humanos" - ] - }, - { - "text": "VOTO CONCURRENTE DEL JUEZ RICARDO C P\u00c9REZ MANRIQUE A LA SENTENCIA DE DE NOVIEMBRE DE DE LA CORTE INTERAMERICANA DE DERECHOS HUMANOS EN EL CASO ASOCIACI\u00d3N NACIONAL DE CESANTES Y JUBILADOS DE LA SUPERINTENDENCIA NACIONAL DE ADMINISTRACI\u00d3N TRIBUTARIA ANCEJUBSUNAT VS. PER\u00da I. Introducci\u00f3n La justiciabilidad de los derechos econ\u00f3micos sociales culturales y ambientales en adelante DESCA en la Corte Interamericana de Derechos Humanos en adelante la Corte o el Tribunal es uno de los temas m\u00e1s y de", - "values": [ - "Corte Interamericana de Derechos Humanos" - ] - }, - { - "text": "VOTO DISIDENTE DEL JUEZ EDUARDO VIO GROSSI A LA SENTENCIA DE DE NOVIEMBRE DE DE LA CORTE INTERAMERICANA DE DERECHOS HUMANOS EN EL CASO ASOCIACI\u00d3N NACIONAL DE CESANTES Y JUBILADOS DE LA SUPERINTENDENCIA NACIONAL DE ADMINISTRACI\u00d3N TRIBUTARIA ANCEJUBSUNAT VS. PER\u00da I. INTRODUCCI\u00d3N Se emite el presente voto disidente de la Sentencia del ep\u00edgrafe en raz\u00f3n de lo dispuesto en su Punto Resolutivo N relativo a la excepci\u00f3n interpuesta por la Rep\u00fablica del Per\u00fa referida al requisito del previo de ", - "values": [ - "Corte Interamericana de Derechos Humanos" - ] - }, - { - "text": "VOTO PARCIALMENTE DISIDENTE DEL JUEZ HUMBERTO ANTONIO SIERRA PORTO A LA SENTENCIA DE DE NOVIEMBRE DE DE LA CORTE INTERAMERICANA DE DERECHOS HUMANOS EN EL CASO DE LA ASOCIACI\u00d3N NACIONAL DE CESANTES Y JUBILADOS DE LA SUPERINTENDENCIA NACIONAL DE ADMINISTRACI\u00d3N TRIBUTARIA ANCEJUBSUNAT VS. PER\u00da I. Introducci\u00f3n Con el acostumbrado respeto por las decisiones de la Corte Interamericana de Derechos Humanos en adelante la Corte o el Tribunal me permito formular el presente voto parcialmente disidente.", - "values": [ - "Corte Interamericana de Derechos Humanos" - ] - }, - { - "text": "CORTE INTERAMERICANA DE DERECHOS HUMANOS CASO ASOCIACI\u00d3N NACIONAL DE CESANTES Y JUBILADOS DE LA SUPERINTENDENCIA NACIONAL DE ADMINISTRACI\u00d3N TRIBUTARIA ANCEJUBSUNAT VS. PER\u00da SENTENCIA DE DE NOVIEMBRE DE Excepciones Preliminares Fondo Reparaciones y Costas En el caso ANCEJUBSUNAT Vs. Per\u00fa la Corte Interamericana de Derechos Humanos en adelante la Corte Interamericana la Corte o este Tribunal integrada por los siguientes jueces Eduardo Ferrer MacGregor Poisot Presidente Eduardo Vio Grossi ", - "values": [ - "Corte Interamericana de Derechos Humanos" - ] - }, - { - "text": "RESOLUCI\u00d3N DE LA CORTE INTERAMERICANA DE DERECHOS HUMANOS DE DE OCTUBRE DE SOLICITUD DE MEDIDAS PROVISIONALES Y SUPERVISI\u00d3N DE CUMPLIMIENTO DE SENTENCIA CASO CESTI HURTADO VS. PER\u00da VISTOS Las Sentencias de excepciones preliminares de de enero de de fondo de de septiembre de en adelante la Sentencia de fondo y de reparaciones y costas de de mayo de en adelante la Sentencia de reparaciones dictadas por la Corte Interamericana de Derechos Humanos en adelante la Corte Interamericana la", - "values": [ - "Corte Interamericana de Derechos Humanos" - ] - }, - { - "text": "VOTO CONCURRENTE DEL JUEZ HUMBERTO ANTONIO SIERRA PORTO A LA SENTENCIA DE DE OCTUBRE DE DE LA CORTE INTERAMERICANA DE DERECHOS HUMANOS EN EL CASO DE RODR\u00cdGUEZ REVOLORIO Y OTROS VS. GUATEMALA I. Introducci\u00f3n Con el acostumbrado respeto por las decisiones de la Corte Interamericana de Derechos Humanos en adelante la Corte o el Tribunal me permito formular el presente voto concurrente. El voto se relaciona con la discusi\u00f3n que existe en la Corte sobre el an\u00e1lisis de casos que involucren a los ", - "values": [ - "Corte Interamericana de Derechos Humanos" - ] - }, - { - "text": "CORTE INTERAMERICANA DE DERECHOS HUMANOS CASO RODR\u00cdGUEZ REVOLORIO Y OTROS VS. GUATEMALA SENTENCIA DE DE OCTUBRE DE Excepci\u00f3n Preliminar Fondo Reparaciones y Costas En el caso Rodr\u00edguez Revolorio y otros la Corte Interamericana de Derechos Humanos en adelante la Corte Interamericana la Corte o este Tribunal integrada por los siguientes jueces Eduardo Ferrer MacGregor Poisot Presidente Eduardo Vio Grossi Vicepresidente Humberto Antonio Sierra Porto Juez Elizabeth Odio Benito Jueza L. Patricio ", - "values": [ - "Corte Interamericana de Derechos Humanos" - ] - }, - { - "text": "CORTE INTERAMERICANA DE DERECHOS HUMANOS CASO VALENZUELA \u00c1VILA VS. GUATEMALA SENTENCIA DE DE OCTUBRE DE Fondo Reparaciones y Costas En el caso Valenzuela \u00c1vila Vs. Guatemala la Corte Interamericana de Derechos Humanos en adelante la Corte Interamericana la Corte o este Tribunal integrada por los siguientes Jueces Eduardo Ferrer MacGregor Poisot Presidente Eduardo Vio Grossi Juez Vicepresidente Humberto Antonio Sierra Porto Juez Elizabeth Odio Benito Jueza Patricio Pazmi\u00f1o Freire Juez y ", - "values": [ - "Corte Interamericana de Derechos Humanos" - ] - }, - { - "text": "RESOLUCI\u00d3N DE LA CORTE INTERAMERICANA DE DERECHOS HUMANOS DE DE OCTUBRE DE CASO CHINCHILLA SANDOVAL Y OTROS VS. GUATEMALA SUPERVISI\u00d3N DE CUMPLIMIENTO DE SENTENCIA VISTO La Sentencia de excepciones preliminares fondo reparaciones y costas en adelante la Sentencia o el Fallo emitida por la Corte Interamericana de Derechos Humanos en adelante la Corte Interamericana la Corte o el Tribunal el de febrero de La Corte declar\u00f3 responsable internacionalmente a la Rep\u00fablica de Guatemala en adelante", - "values": [ - "Corte Interamericana de Derechos Humanos" - ] - }, - { - "text": "RESOLUCI\u00d3N DE LA CORTE INTERAMERICANA DE DERECHOS HUMANOS DE DE OCTUBRE DE CASO GUDIEL \u00c1LVAREZ Y OTROS DIARIO MILITAR VS. GUATEMALA SUPERVISI\u00d3N DE CUMPLIMIENTO DE SENTENCIA VISTO La Sentencia de fondo reparaciones y costas en adelante la Sentencia dictada por la Corte Interamericana de Derechos Humanos en adelante la Corte Interamericana la Corte o el Tribunal el de noviembre de Tomando en cuenta el reconocimiento parcial de responsabilidad efectuado por la Rep\u00fablica de Guatemala en el ", - "values": [ - "Corte Interamericana de Derechos Humanos" - ] - }, - { - "text": "RESOLUCI\u00d3N DE LA CORTE INTERAMERICANA DE DERECHOS HUMANOS DE DE OCTUBRE DE CASO KAWAS FERN\u00c1NDEZ VS. HONDURAS SUPERVISI\u00d3N DE CUMPLIMIENTO DE SENTENCIA VISTO La Sentencia emitida por la Corte Interamericana de Derechos Humanos en adelante la Corte Interamericana la Corte o el Tribunal el de abril de en el caso Kawas Fern\u00e1ndez contra la Rep\u00fablica de Honduras en adelante el Estado u Honduras. En la referida Sentencia la Corte determin\u00f3 entre otras violaciones que el Estado era responsable de ", - "values": [ - "Corte Interamericana de Derechos Humanos" - ] - }, - { - "text": "VOTO CONCURRENTE DEL JUEZ AA. CAN\u00c7ADO TRINDADE Al votar a favor de la adopci\u00f3n de las presentes Medidas Provisionales de Protecci\u00f3n mediante las cuales la Corte Interamericana de Derechos Humanos ordena que se extienda protecci\u00f3n a todos los miembros de las Comunidades del Jiguamiand\u00f3 y del Curbarad\u00f3 en Colombia me veo en la obligaci\u00f3n de hacer referencia a mi Voto Concurrente en la Resoluci\u00f3n de Medidas Provisionales de Protecci\u00f3n adoptada anteriormente por esta Corte el d\u00eda de junio de en ", - "values": [ - "Corte Interamericana de Derechos Humanos" - ] - }, - { - "text": "VOTO DISIDENTE DEL JUEZ EDUARDO VIO GROSSI RESOLUCI\u00d3N DE LA CORTE INTERAMERICANA DE DERECHOS HUMANOS DE DE ENERO CASO MACK CHANG Y OTROS VS GUATEMALA SOLICITUD DE MEDIDAS PROVISIONALES Se emite el presente voto disidente respecto de la Resoluci\u00f3n indicada en el r\u00f3tulo en m\u00e9rito de que ha precluido la facultad de la Corte Interamericana de Derechos Humanos de decretar la mantenci\u00f3n de medidas provisionales respecto o en el marco del referido caso sentenciado el de noviembre de Y se formula ", - "values": [ - "Corte Interamericana de Derechos Humanos" - ] - }, - { - "text": "VOTO CONCURRENTE DEL JUEZ AA. CAN\u00c7ADO TRINDADE Al votar a favor de la adopci\u00f3n de las presentes Medidas Provisionales de Protecci\u00f3n mediante las cuales la Corte Interamericana de Derechos Humanos ordena que se extienda protecci\u00f3n a todas las personas privadas de libertad en las Penitenciar\u00edas de Mendoza en Argentina me veo en la obligaci\u00f3n de retomar la construcci\u00f3n conceptual en que he estado empe\u00f1ado en el seno de la Corte Interamericana de las obligaciones erga omnes de protecci\u00f3n bajo la ", - "values": [ - "Corte Interamericana de Derechos Humanos" - ] - }, - { - "text": "VOTO RAZONADO CONCURRENTE DE LOS JUECES ALIRIO ABREU BURELLI Y SERGIO GARC\u00cdA RAM\u00cdREZ Las medidas provisionales previstas en el art\u00edculo de la Convenci\u00f3n Americana constituyen una pieza fundamental para la efectiva tutela de los derechos humanos. Por ello la propia Convenci\u00f3n ha establecido la posibilidad de que la Corte adopte esas medidas no s\u00f3lo en un proceso que ante ella se desarrolla sino incluso en el caso de que la controversia no haya llegado a\u00fan a su conocimiento. La necesidad de ", - "values": [ - "Corte Interamericana de Derechos Humanos" - ] - }, - { - "text": "RESOLUCI\u00d3N DE LA PRESIDENTA DE LA CORTE INTERAMERICANA DE DERECHOS HUMANOS DE DE ENERO DE FONDO DE ASISTENCIA LEGAL DE V\u00cdCTIMAS CASO GUERRERO Y OTROS VS VENEZUELA VISTO El escrito de de mayo de y sus anexos recibidos el de mayo de mediante los cuales la Comisi\u00f3n Interamericana de Derechos Humanos en adelante la Comisi\u00f3n Interamericana o la Comisi\u00f3n someti\u00f3 ante la Corte Interamericana de Derechos Humanos en adelante la Corte Interamericana la Corte o el Tribunal el presente caso. El de", - "values": [ - "Corte Interamericana de Derechos Humanos" - ] - }, - { - "text": "RESOLUCI\u00d3N DE LA CORTE INTERAMERICANA DE DERECHOS HUMANOS DE DE ENERO DE CASO PETRO URREGO VS. COLOMBIA VISTO La Resoluci\u00f3n del Presidente de la Corte Interamericana de Derechos Humanos en adelante el Presidente de de diciembre de en adelante la Resoluci\u00f3n del Presidente mediante la cual inter alia orden\u00f3 la recepci\u00f3n de diversas declaraciones en audiencia p\u00fablica y mediante affidavit y convoc\u00f3 a la Comisi\u00f3n Interamericana de Derechos Humanos en adelante tambi\u00e9n la Comisi\u00f3n a los de la ", - "values": [ - "Corte Interamericana de Derechos Humanos" - ] - }, - { - "text": "RESOLUCI\u00d3N DEL PRESIDENTE DE LA CORTE INTERAMERICANA DE DERECHOS HUMANOS DE DE DICIEMBRE DE CASO PETRO URREGO VS. COLOMBIA CONVOCATORIA A AUDIENCIA VISTO El escrito de sometimiento del caso y el Informe de Fondo de la Comisi\u00f3n Interamericana de Derechos Humanos en adelante la Comisi\u00f3n Interamericana o la Comisi\u00f3n el escrito de solicitudes argumentos y pruebas en adelante escrito de solicitudes y argumentos de los representantes de la presunta v\u00edctima en adelante los representantes el escrito", - "values": [ - "Corte Interamericana de Derechos Humanos" - ] - }, - { - "text": "RESOLUCI\u00d3N DE LA PRESIDENTA DE LA CORTE INTERAMERICANA DE DERECHOS HUMANOS DE DE FEBRERO DE CASO FLORES BEDREGAL Y OTRAS VS. BOLIVIA CONVOCATORIA A AUDIENCIA P\u00daBLICA VISTO El escrito de sometimiento del caso y el Informe de Fondo de la Comisi\u00f3n Interamericana de Derechos Humanos en adelante la Comisi\u00f3n Interamericana o la Comisi\u00f3n el escrito de solicitudes argumentos y pruebas en adelante el escrito de solicitudes y argumentos de los representantes de las presuntas v\u00edctimas en adelante los ", - "values": [ - "Corte Interamericana de Derechos Humanos" - ] - }, - { - "text": "RESOLUCI\u00d3N DE LA PRESIDENTA DE LA CORTE INTERAMERICANA DE DERECHOS HUMANOS DE DE FEBRERO DE CASO FERNANDEZ PRIETO Y OTRO VS. ARGENTINA VISTO El escrito de sometimiento del caso y el Informe de Fondo de la Comisi\u00f3n Interamericana de Derechos Humanos en adelante la Comisi\u00f3n Interamericana o la Comisi\u00f3n el escrito de solicitudes argumentos y pruebas en adelante el escrito de solicitudes y argumentos de la representante de las presuntas v\u00edctimas en adelante la representante el escrito de al ", - "values": [ - "Corte Interamericana de Derechos Humanos" - ] - }, - { - "text": "RESOLUCI\u00d3N DE LA PRESIDENTA DE LA CORTE INTERAMERICANA DE DERECHOS HUMANOS DE DE FEBRERO DE CASO ACOSTA MART\u00cdNEZ VS. ARGENTINA VISTO El escrito de sometimiento del caso y el Informe de Fondo de la Comisi\u00f3n Interamericana de Derechos Humanos en adelante la Comisi\u00f3n Interamericana o la Comisi\u00f3n el escrito de solicitudes argumentos y pruebas en adelante el escrito de solicitudes y argumentos de los representantes de las presuntas v\u00edctimas en adelante los representantes el escrito de al del y", - "values": [ - "Corte Interamericana de Derechos Humanos" - ] - }, - { - "text": "RESOLUCI\u00d3N DE LA CORTE INTERAMERICANA DE DERECHOS HUMANOS DE DE FEBRERO DE AMPLIACI\u00d3N DE MEDIDAS PROVISIONALES RESPECTO DE NICARAGUA ASUNTO POBLADORES DE LAS COMUNIDADES DEL PUEBLO IND\u00cdGENA MISKITU DE LA REGI\u00d3N COSTA CARIBE NORTE VISTO La Resoluci\u00f3n de la Corte Interamericana de Derechos Humanos en adelante tambi\u00e9n la Corte Interamericana la Corte o el Tribunal de de septiembre de mediante la cual orden\u00f3 al Estado de Nicaragua inter alia i erradicar la violencia y proteger la vida y e ", - "values": [ - "Corte Interamericana de Derechos Humanos" - ] - }, - { - "text": "RESOLUCI\u00d3N DE LA CORTE INTERAMERICANA DE DERECHOS HUMANOS DE DE ENERO DE CASO GUZM\u00c1N ALBARRAC\u00cdN Y OTROS VS. ECUADOR VISTO La Resoluci\u00f3n del entonces Presidente en adelante el Presidente de la Corte Interamericana de Derechos Humanos en adelante la Corte Interamericana Corte o Tribunal de de diciembre de en adelante la Resoluci\u00f3n en la cual entre otros determin\u00f3 no admitir la declaraci\u00f3n pericial del se\u00f1or Jos\u00e9 Mario N\u00e1jera Ochoa ofrecida para ser rendida ante esta Corte y resolvi\u00f3 a la", - "values": [ - "Corte Interamericana de Derechos Humanos" - ] - }, - { - "text": " de diciembre de REF Caso N\u00ba Familia JulienGrisonas Argentina Se\u00f1or Secretario Tengo el agrado de dirigirme a usted en nombre de la Comisi\u00f3n Interamericana de Derechos Humanos con el objeto de someter a la jurisdicci\u00f3n de la Honorable Corte Interamericana de Derechos Humanos el caso No. Familia JulienGrisonas de la Rep\u00fablica Argentina en adelante el Estado el Estado argentino o Argentina relacionado con la responsabilidad internacional del Estado por la desaparici\u00f3n forzada de Mario Roger ", - "values": [ - "Comisi\u00f3n Interamericana de Derechos Humanos" - ] - }, - { - "text": "INFORME No. CASO ADMISIBILIDAD Y FONDO FAMILIA JULIEN GRISONAS ARGENTINA DE MAYO DE I. INTRODUCCI\u00d3N El de noviembre de la Comisi\u00f3n Interamericana de Derechos Humanos en adelante la Comisi\u00f3n Interamericana la Comisi\u00f3n o la CIDH recibi\u00f3 una petici\u00f3n presentada por Eduardo Marques Iraola en adelante la parte peticionaria o el se\u00f1or Marques Iraola en la cual se alega la responsabilidad internacional de la Rep\u00fablica Argentina en adelante el Estado argentino el Estado o Argentina en de y ", - "values": [ - "Comisi\u00f3n Interamericana de Derechos Humanos" - ] - }, - { - "text": "RESOLUCI\u00d3N DE LA PRESIDENTA DE LA CORTE INTERAMERICANA DE DERECHOS HUMANOS DE DE ABRIL DE ADOPCI\u00d3N DE MEDIDAS URGENTES AMPLIACI\u00d3N DE MEDIDAS PROVISIONALES RESPECTO DE COLOMBIA CASO COMERCIANTES VISTO La Sentencia de fondo reparaciones y costas dictada por la Corte Interamericana de Derechos Humanos en adelante la Corte Interamericana la Corte o el Tribunal el de julio de mediante la cual se declar\u00f3 que el Estado hab\u00eda violado los derechos a la libertad personal a la integridad personal y ", - "values": [ - "Corte Interamericana de Derechos Humanos" - ] - }, - { - "text": "RESOLUCI\u00d3N DE LA CORTE INTERAMERICANA DE DERECHOS HUMANOS DE DE MARZO DE CASO MANUEL CEPEDA VARGAS VS. COLOMBIA SUPERVISI\u00d3N DE CUMPLIMIENTO DE SENTENCIA VISTO La Sentencia de excepciones preliminares fondo reparaciones y costas en adelante la Sentencia dictada por la Corte Interamericana de Derechos Humanos en adelante la Corte Interamericana la Corte o el Tribunal el de mayo de La Corte acept\u00f3 el reconocimiento parcial de responsabilidad efectuado por la Rep\u00fablica de Colombia en adelante", - "values": [ - "Corte Interamericana de Derechos Humanos" - ] - }, - { - "text": "RESOLUCI\u00d3N DE LA CORTE INTERAMERICANA DE DERECHOS HUMANOS DE DE MARZO DE CASO DUQUE VS. COLOMBIA SUPERVISI\u00d3N DE CUMPLIMIENTO DE SENTENCIA VISTO La Sentencia de excepciones preliminares fondo reparaciones y costas en adelante la Sentencia o el Fallo dictada por la Corte Interamericana de Derechos Humanos en adelante la Corte la Corte Interamericana o el Tribunal el de febrero de La Corte declar\u00f3 que la Rep\u00fablica de Colombia en adelante el Estado o Colombia era internacionalmente responsable", - "values": [ - "Corte Interamericana de Derechos Humanos" - ] - }, - { - "text": "RESOLUCI\u00d3N DE LA CORTE INTERAMERICANA DE DERECHOS HUMANOS DE DE MARZO DE CASO VEREDA LA ESPERANZA VS. COLOMBIA SUPERVISI\u00d3N DE CUMPLIMIENTO DE SENTENCIA Y REINTEGRO AL FONDO DE ASISTENCIA LEGAL DE V\u00cdCTIMAS VISTO La Sentencia de excepci\u00f3n preliminar fondo reparaciones y costas en adelante la Sentencia dictada por la Corte Interamericana de Derechos Humanos en adelante la Corte la Corte Interamericana o el Tribunal el de agosto de En dicha Sentencia la Corte declar\u00f3 internacionalmente a la ", - "values": [ - "Corte Interamericana de Derechos Humanos" - ] - }, - { - "text": "RESOLUCI\u00d3N DE LA CORTE INTERAMERICANA DE DERECHOS HUMANOS DE DE MARZO DE CASO CANALES HUAPAYA Y OTROS VS. PER\u00da SUPERVISI\u00d3N DE CUMPLIMIENTO DE SENTENCIA VISTO La Sentencia de excepciones preliminares fondo reparaciones y costas en adelante la Sentencia o el Fallo emitida por la Corte Interamericana de Derechos Humanos en adelante la Corte Interamericana la Corte o el Tribunal el de junio de En dicha Sentencia la Corte declar\u00f3 internacionalmente responsable a la Rep\u00fablica del Per\u00fa en el o ", - "values": [ - "Corte Interamericana de Derechos Humanos" - ] - }, - { - "text": "RESOLUCI\u00d3N DE LA CORTE INTERAMERICANA DE DERECHOS HUMANOS DE DE MARZO DE CASO OSORIO RIVERA Y FAMILIARES VS. PER\u00da SUPERVISI\u00d3N DE CUMPLIMIENTO DE SENTENCIA VISTO La Sentencia de excepciones preliminares fondo reparaciones y costas en adelante la Sentencia dictada por la Corte Interamericana de Derechos Humanos en adelante la Corte Interamericana la Corte o el Tribunal el de noviembre de La Corte declar\u00f3 la responsabilidad internacional de la Rep\u00fablica del Per\u00fa en adelante el Estado o el ", - "values": [ - "Corte Interamericana de Derechos Humanos" - ] - }, - { - "text": "RESOLUCI\u00d3N DE LA CORTE INTERAMERICANA DE DERECHOS HUMANOS DE DE MARZO DE CASO MUELLE FLORES VS. PER\u00da SUPERVISI\u00d3N DE CUMPLIMIENTO DE SENTENCIA Y REINTEGRO AL FONDO DE ASISTENCIA LEGAL DE V\u00cdCTIMAS VISTO La Sentencia de excepciones preliminares fondo reparaciones y costas en adelante la Sentencia o el Fallo dictada por la Corte Interamericana de Derechos Humanos en adelante la Corte Interamericana la Corte o el Tribunal el de marzo de En dicha Sentencia la Corte declar\u00f3 internacionalmente a", - "values": [ - "Corte Interamericana de Derechos Humanos" - ] - }, - { - "text": "RESOLUCI\u00d3N DE LA CORTE INTERAMERICANA DE DERECHOS HUMANOS DE DE MARZO DE CASO FONTEVECCHIA Y DAMICO VS. ARGENTINA SUPERVISI\u00d3N DE CUMPLIMIENTO DE SENTENCIA VISTO La Sentencia de fondo reparaciones y costas en adelante la Sentencia o el Fallo dictada por la Corte Interamericana de Derechos Humanos en adelante la Corte la Corte Interamericana o el Tribunal el de noviembre de La Corte declar\u00f3 responsable internacionalmente a la Rep\u00fablica Argentina en adelante el Estado o Argentina por la del", - "values": [ - "Corte Interamericana de Derechos Humanos" - ] - }, - { - "text": "RESOLUCI\u00d3N DE LA CORTE INTERAMERICANA DE DERECHOS HUMANOS DE DE MARZO DE CASO BUENO ALVES VS. ARGENTINA SUPERVISI\u00d3N DE CUMPLIMIENTO DE SENTENCIA VISTO La Sentencia de fondo reparaciones y costas en adelante la Sentencia dictada por la Corte Interamericana de Derechos Humanos en adelante la Corte Interamericana la Corte o el Tribunal el de mayo de La Corte tomando en cuenta el reconocimiento de responsabilidad internacional efectuado por la Rep\u00fablica Argentina en adelante el Estado o de ", - "values": [ - "Corte Interamericana de Derechos Humanos" - ] - }, - { - "text": "VOTO RAZONADO DEL JUEZ EDUARDO FERRER MACGREGOR POISOT CASO COMUNIDADES IND\u00cdGENAS MIEMBROS DE LA ASOCIACI\u00d3N LHAKA HONHAT NUESTRA TIERRA VS. ARGENTINA SENTENCIA DE DE FEBRERO DE Fondo Reparaciones y Costas INTRODUCCI\u00d3N Han pasado casi veinte a\u00f1os desde que la Corte Interamericana de Derechos Humanos en adelante Corte IDH o Tribunal Interamericano decidi\u00f3 el primer caso en donde abord\u00f3 la propiedad colectiva ind\u00edgena e hizo alusi\u00f3n a la relaci\u00f3n especial que los pueblos y comunidades ind\u00edgenas", - "values": [ - "Corte Interamericana de Derechos Humanos" - ] - }, - { - "text": "VOTO CONCURRENTE JUEZ PATRICIO PAZMI\u00d1O FREIRE SENTENCIA DE DE FEBRERO DE CORTE INTERAMERICANA DE DERECHOS HUMANOS CASO COMUNIDADES IND\u00cdGENAS MIEMBROS DE LA ASOCIACI\u00d3N LHAKA HONHAT NUESTRA TIERRA VS. ARGENTINA PRIMERA. La sentencia del caso Comunidades Ind\u00edgenas Miembros De La Asociaci\u00f3n Lhaka Honhat Nuestra Tierra Vs. Argentina en adelante la Sentencia se inscribe dentro de la l\u00ednea jurisprudencial adoptada por la Corte Interamericana de Derechos Humanos en adelante Corte IDH desde el caso ", - "values": [ - "Corte Interamericana de Derechos Humanos" - ] - }, - { - "text": "VOTO PARCIALMENTE DISIDENTE DEL JUEZ HUMBERTO ANTONIO SIERRA PORTO CASO COMUNIDADES IND\u00cdGENAS MIEMBROS DE LA ASOCIACI\u00d3N LHAKA HONHAT NUESTRA TIERRA VS. ARGENTINA SENTENCIA DE DE FEBRERO DE Fondo Reparaciones y Costas Con el reiterado respeto por las decisiones de la Corte Interamericana de Derechos Humanos en adelante tambi\u00e9n la Corte o el Tribunal me permito formular el presente voto parcialmente disidente. El voto se centra en el an\u00e1lisis de fondo que realiz\u00f3 la Corte acerca de la del ", - "values": [ - "Corte Interamericana de Derechos Humanos" - ] - }, - { - "text": "VOTO PARCIALMENTE DISIDENTE DEL JUEZ RICARDO C. P\u00c9REZ MANRIQUE A LA SENTENCIA DE DE FEBRERO DE DE LA CORTE INTERAMERICANA DE DERECHOS HUMANOS EN EL CASO COMUNIDADES IND\u00cdGENAS MIEMBROS DE LA ASOCIACI\u00d3N LHAKA HONHAT NUESTRA TIERRA VS. ARGENTINA I. Introducci\u00f3n En mi voto concurrente en los casos de la Asociaci\u00f3n Nacional de Cesantes y Jubilados de la Superintendencia de Administraci\u00f3n Tributaria ANCEJUBSUNAT Vs. Per\u00fa y de Hern\u00e1ndez Vs. Argentina expres\u00e9 dos primeras reflexiones respecto a la ", - "values": [ - "Corte Interamericana de Derechos Humanos" - ] - }, - { - "text": "CORTE INTERAMERICANA DE DERECHOS HUMANOS CASO COMUNIDADES IND\u00cdGENAS MIEMBROS DE LA ASOCIACI\u00d3N LHAKA HONHAT NUESTRA TIERRA VS. ARGENTINA SENTENCIA DE DE FEBRERO DE Fondo Reparaciones y Costas En el caso Comunidades ind\u00edgenas miembros de la Asociaci\u00f3n Lhaka Honhat Nuestra Tierra Vs. Argentina la Corte Interamericana de Derechos Humanos en adelante tambi\u00e9n la Corte Interamericana la Corte o el Tribunal integrada por los siguientes Jueces Elizabeth Odio Benito Presidenta L. Patricio Pazmi\u00f1o ", - "values": [ - "Corte Interamericana de Derechos Humanos" - ] - }, - { - "text": "VOTO PARCIALMENTE DISIDENTE DEL JUEZ EDUARDO VIO GROSSI CORTE INTERAMERICANA DE DERECHOS HUMANOS CASO COMUNIDADES IND\u00cdGENAS MIEMBROS DE LA ASOCIACI\u00d3N LHAKA HONHAT NUESTRA TIERRA VS. ARGENTINA SENTENCIA DE DE FEBRERO DE Fondo Reparaciones y Costas I. INTRODUCCI\u00d3N. Se expide el presente voto parcialmente disidente con relaci\u00f3n a la Sentencia del r\u00f3tulo a los efectos de dar cuenta de las razones por las que se discrepa de lo dispuesto en los resolutivos Ns y de aquella los que sobre la base", - "values": [ - "Corte Interamericana de Derechos Humanos" - ] - }, - { - "text": "RESOLUCI\u00d3N DE LA CORTE INTERAMERICANA DE DERECHOS HUMANOS DE DE ENERO DE CASO SPOLTORE VS. ARGENTINA VISTO La Resoluci\u00f3n del Presidente en adelante el Presidente de la Corte Interamericana de Derechos Humanos en adelante la Corte Interamericana la Corte o este Tribunal de de diciembre de en adelante la Resoluci\u00f3n en la cual entre otros resolvi\u00f3 Requerir de conformidad con el principio de econom\u00eda procesal y de la facultad que le otorga el art\u00edculo del Reglamento de la Corte que las ", - "values": [ - "Corte Interamericana de Derechos Humanos" - ] - }, - { - "text": "RESOLUCI\u00d3N DE LA CORTE INTERAMERICANA DE DERECHOS HUMANOS DE DE MARZO DE CASO BOYCE Y OTROS VS. BARBADOS SUPERVISI\u00d3N DE CUMPLIMIENTO DE SENTENCIA Y REINTEGRO AL FONDO DE ASISTENCIA LEGAL DE V\u00cdCTIMAS VISTO La Sentencia de excepci\u00f3n preliminar fondo reparaciones y costas en adelante la Sentencia o el Fallo dictada por la Corte Interamericana de Derechos Humanos en adelante la Corte la Corte Interamericana o el Tribunal el de noviembre de La Corte declar\u00f3 la responsabilidad internacional del ", - "values": [ - "Corte Interamericana de Derechos Humanos" - ] - }, - { - "text": "RESOLUCI\u00d3N DE LA CORTE INTERAMERICANA DE DERECHOS HUMANOS DE DE MARZO DE CASO LIAKAT ALI ALIBUX VS. SURINAM SUPERVISI\u00d3N DE CUMPLIMIENTO DE SENTENCIA VISTO La Sentencia de excepciones preliminares fondo reparaciones y costas en adelante la Sentencia o el Fallo dictada por la Corte Interamericana de Derechos Humanos en adelante la Corte la Corte Interamericana o el Tribunal el de enero de La Corte declar\u00f3 la responsabilidad internacional de la Rep\u00fablica de Surinam en adelante el Estado o ", - "values": [ - "Corte Interamericana de Derechos Humanos" - ] - }, - { - "text": "RESOLUCI\u00d3N DE LA CORTE INTERAMERICANA DE DERECHOS HUMANOS DE DE MARZO DE CASO L\u00d3PEZ LONE Y OTROS VS. HONDURAS SUPERVISI\u00d3N DE CUMPLIMIENTO DE SENTENCIA VISTO La Sentencia de excepci\u00f3n preliminar fondo reparaciones y costas en adelante la Sentencia dictada por la Corte Interamericana de Derechos Humanos en adelante la Corte Interamericana la Corte o el Tribunal el de octubre de La Corte declar\u00f3 la responsabilidad internacional de la Rep\u00fablica de Honduras en adelante el Estado u Honduras ", - "values": [ - "Corte Interamericana de Derechos Humanos" - ] - }, - { - "text": "RESOLUCI\u00d3N DE LA PRESIDENTA DE LA CORTE INTERAMERICANA DE DERECHOS HUMANOS DE DE FEBRERO DE CASO OLIVARES MU\u00d1OZ Y OTROS VS. VENEZUELA CONVOCATORIA A AUDIENCIA VISTO El escrito de sometimiento del caso y el Informe de Fondo de la Comisi\u00f3n Interamericana de Derechos Humanos en adelante la Comisi\u00f3n Interamericana o la Comisi\u00f3n el escrito de solicitudes argumentos y pruebas en adelante escrito de solicitudes y argumentos de los representantes de las presuntas v\u00edctimas en adelante los el escrito", - "values": [ - "Corte Interamericana de Derechos Humanos" - ] - }, - { - "text": "VOTO CONCURRENTE DEL JUEZ EDUARDO VIO GROSSI CORTE INTERAMERICANA DE DERECHOS HUMANOS CASO CARRANZA ALARC\u00d3N VS. ECUADOR SENTENCIA DE DE FEBRERO DE Excepciones preliminares Fondo Reparaciones y Costas Se emite el presente voto concurrente con la Sentencia del ep\u00edgrafe a los efectos de indicar la raz\u00f3n por la que atendido lo expresado en otros de sus votos individuales sobre la materia el suscrito ha votado favorablemente el resolutivo N de aquella. Dicho motivo dice relaci\u00f3n con la resoluci\u00f3n ", - "values": [ - "Corte Interamericana de Derechos Humanos" - ] - }, - { - "text": "CORTE INTERAMERICANA DE DERECHOS HUMANOS CASO MONTESINOS MEJ\u00cdA VS. ECUADOR SENTENCIA DE DE ENERO DE Excepciones Preliminares Fondo Reparaciones y Costas En el caso Montesinos Mej\u00eda la Corte Interamericana de Derechos Humanos en adelante la Corte Interamericana la Corte o este Tribunal integrada por los siguientes Jueces Elizabeth Odio Benito Presidenta Eduardo Vio Grossi Juez Humberto Antonio Sierra Porto Juez Eduardo Ferrer MacGregor Poisot Juez Eugenio Ra\u00fal Zaffaroni Juez y Ricardo P\u00e9rez ", - "values": [ - "Corte Interamericana de Derechos Humanos" - ] - }, - { - "text": "RESOLUCI\u00d3N DE LA CORTE INTERAMERICANA DE DERECHOS HUMANOS DE DE MARZO DE SOLICITUD DE MEDIDAS PROVISIONALES RESPECTO DE LA REP\u00daBLICA DEL PER\u00da CASO CUYA LAVY Y OTROS VISTOS El escrito de de agosto de de sometimiento de la Comisi\u00f3n Interamericana de Derechos Humanos en adelante Comisi\u00f3n seg\u00fan el cual el presente caso se relaciona con una serie de violaciones a las garant\u00edas judiciales principio de legalidad y protecci\u00f3n judicial en el marco de un proceso de evaluaci\u00f3n y ratificaci\u00f3n de las ", - "values": [ - "Corte Interamericana de Derechos Humanos" - ] - }, - { - "text": "RESOLUCI\u00d3N DE LA CORTE INTERAMERICANA DE DERECHOS HUMANOS DE DE MARZO DE CASO URRUTIA LAUBREAUX VS. CHILE SOLICITUD DE MEDIDAS PROVISIONALES RESPECTO DE CHILE VISTO El escrito de de enero de y sus anexos mediante los cuales el representante de la presunta v\u00edctima en adelante el representante present\u00f3 a la Corte Interamericana de Derechos Humanos en adelante la Corte Interamericana la Corte o este Tribunal una solicitud de medidas provisionales de conformidad con los art\u00edculos de la ", - "values": [ - "Corte Interamericana de Derechos Humanos" - ] - }, - { - "text": "CORTE INTERAMERICANA DE DERECHOS HUMANOS CASO NOGUERA Y OTRA VS. PARAGUAY SENTENCIA DE DE MARZO DE Fondo Reparaciones y Costas En el Caso Noguera y otros Vs. Paraguay la Corte Interamericana de Derechos Humanos en adelante la Corte Interamericana la Corte o el Tribunal integrada por los siguientes Jueces Elizabeth Odio Benito Presidenta L. Patricio Pazmi\u00f1o Freire Vicepresidente Eduardo Ferrer MacGregor Poisot Juez Eugenio Ra\u00fal Zaffaroni Juez y Ricardo P\u00e9rez Manrique Juez presentes adem\u00e1s ", - "values": [ - "Corte Interamericana de Derechos Humanos" - ] - }, - { - "text": "CORTE INTERAMERICANA DE DERECHOS HUMANOS CASO CARRANZA ALARC\u00d3N VS. ECUADOR SENTENCIA DE DE FEBRERO DE Excepciones preliminares Fondo Reparaciones y Costas En el caso Carranza Alarc\u00f3n Vs. Ecuador la Corte Interamericana de Derechos Humanos en adelante la Corte Interamericana la Corte o este Tribunal integrada por los siguientes Jueces Elizabeth Odio Benito Presidenta Eduardo Vio Grossi Juez Humberto Antonio Sierra Porto Juez Eduardo Ferrer MacGregor Poisot Juez Eugenio Ra\u00fal Zaffaroni Juez y ", - "values": [ - "Corte Interamericana de Derechos Humanos" - ] - }, - { - "text": "RESOLUCI\u00d3N DE LA CORTE INTERAMERICANA DE DERECHOS HUMANOS DE DE MARZO DE CASO RAM\u00cdREZ ESCOBAR Y OTROS VS. GUATEMALA SUPERVISI\u00d3N DE CUMPLIMIENTO DE SENTENCIA Y REINTEGRO AL FONDO DE ASISTENCIA LEGAL DE V\u00cdCTIMAS VISTO La Sentencia de fondo reparaciones y costas en adelante la Sentencia dictada por la Corte Interamericana de Derechos Humanos en adelante la Corte Interamericana la Corte o el Tribunal el de marzo de En dicha Sentencia la Corte declar\u00f3 internacionalmente responsable a la de en", - "values": [ - "Corte Interamericana de Derechos Humanos" - ] - }, - { - "text": "CORTE INTERAMERICANA DE DERECHOS HUMANOS CASO AZUL ROJAS MAR\u00cdN Y OTRA VS. PER\u00da SENTENCIA DE DE MARZO DE Excepciones Preliminares Fondo Reparaciones y Costas En el caso Azul Rojas Mar\u00edn y otra Vs. Per\u00fa la Corte Interamericana de Derechos Humanos en adelante la Corte Interamericana la Corte o este Tribunal integrada por los siguientes jueces Elizabeth Odio Benito Presidenta L. Patricio Pazmi\u00f1o Freire Vicepresidente Humberto Antonio Sierra Porto Juez Eduardo Ferrer MacGregor Poisot Juez Eugenio ", - "values": [ - "Corte Interamericana de Derechos Humanos" - ] - }, - { - "text": "RESOLUCI\u00d3N DE LA CORTE INTERAMERICANA DE DERECHOS HUMANOS DE DE MARZO DE CASO DACOSTA CADOGAN VS. BARBADOS SUPERVISI\u00d3N DE CUMPLIMIENTO DE SENTENCIA Y REINTEGRO AL FONDO DE ASISTENCIA LEGAL DE V\u00cdCTIMAS VISTO La Sentencia de excepciones preliminares fondo reparaciones y costas en adelante la Sentencia o el Fallo dictada por la Corte Interamericana de Derechos Humanos en adelante la Corte la Corte Interamericana o el Tribunal el de septiembre de La Corte declar\u00f3 la responsabilidad del de", - "values": [ - "Corte Interamericana de Derechos Humanos" - ] - }, - { - "text": "INFORME No. PETICI\u00d3N INFORME DE ADMISIBILIDAD MANUELA Y FAMILIA EL SALVADOR DE MARZO DE I. DATOS DE LA PETICI\u00d3N Center for Reproductive Rights Colectiva de Mujeres para el Desarrollo Local y Agrupaci\u00f3n Ciudadana por la Despenalizaci\u00f3n del Aborto Terap\u00e9utico \u00c9tico y Eugen\u00e9sico Manuela y familia El Salvador Art\u00edculos y b c d e h y y y de la Convenci\u00f3n Americana sobre Derechos Humanos en adelante Convenci\u00f3n Americana o CADH art\u00edculos y de la Convenci\u00f3n Interamericana para ", - "values": [ - "Comisi\u00f3n Interamericana de Derechos Humanos" - ] - }, - { - "text": " de julio de REF Caso N\u00ba Masacre de la Aldea Los Josefinos Guatemala Se\u00f1or Secretario Tengo el agrado de dirigirme a usted en nombre de la Comisi\u00f3n Interamericana de Derechos Humanos en adelante la Comisi\u00f3n Interamericana la Comisi\u00f3n o la CIDH con el objeto de someter a la jurisdicci\u00f3n de la Honorable Corte Interamericana de Derechos Humanos en adelante la Corte Interamericana o la Corte el caso No. relativo a la Masacre de la Aldea Los Josefinos contra la Rep\u00fablica de Guatemala en adelante ", - "values": [ - "Comisi\u00f3n Interamericana de Derechos Humanos" - ] - }, - { - "text": "INFORME No. PETICI\u00d3N ADMISIBILIDAD MASACRE DE LA ALDEA LOS JOSEFINOS GUATEMALA DE MARZO DE I. RESUMEN La Comisi\u00f3n Interamericana de Derechos Humanos en adelante la Comisi\u00f3n o la CIDH recibi\u00f3 una petici\u00f3n presentada por la Asociaci\u00f3n Familiares de DetenidosDesaparecidos de Guatemala FAMDEGUA y el Centro por la Justicia y el Derecho Internacional CEJIL en adelante los peticionarios el de octubre de en la cual se alega la responsabilidad internacional del Estado de Guatemala en adelante o", - "values": [ - "Comisi\u00f3n Interamericana de Derechos Humanos" - ] - }, - { - "text": "INFORME No. CASO FONDO MASACRE DE LA ALDEA LOS JOSEFINOS GUATEMALA DE FEBRERO DE I. INTRODUCCI\u00d3N El de octubre de la Comisi\u00f3n Interamericana de Derechos Humanos en adelante la Comisi\u00f3n Interamericana la Comisi\u00f3n o la CIDH recibi\u00f3 una petici\u00f3n presentada por la Asociaci\u00f3n Familiares de DetenidosDesaparecidos de Guatemala FAMDEGUA y el Centro por la Justicia y el Derecho Internacional CEJIL ambos en adelante la parte peticionaria o los peticionarios en la cual se aleg\u00f3 la responsabilidad ", - "values": [ - "Comisi\u00f3n Interamericana de Derechos Humanos" - ] - }, - { - "text": "INFORME No. CASO FONDO ORLANDO EDGARDO OLIVARES MU\u00d1OZ Y OTROS MUERTES EN LA C\u00c1RCEL DE VISTA HERMOSA VENEZUELA DE OCTUBRE DE I. RESUMEN El de octubre de la Comisi\u00f3n Interamericana de Derechos Humanos en adelante la Comisi\u00f3n Interamericana la Comisi\u00f3n o la CIDH recibi\u00f3 una petici\u00f3n presentada por el Observatorio Venezolano de Prisiones en adelante la parte peticionaria en la cual se alega la responsabilidad internacional de la Rep\u00fablica Bolivariana de Venezuela en adelante el Estado el o", - "values": [ - "Corte Interamericana de Derechos Humanos" - ] - }, - { - "text": " de enero de Ref Caso No. Norka Moya Sol\u00eds Per\u00fa Se\u00f1or Secretario Tengo el agrado de dirigirme a usted en nombre de la Comisi\u00f3n Interamericana de Derechos Humanos con el objeto de someter a la jurisdicci\u00f3n de la Honorable Corte Interamericana de Derechos Humanos el Caso N\u00ba Norka Moya Sol\u00eds respecto de la Rep\u00fablica de Per\u00fa en adelante el Estado el Estado peruano o Per\u00fa. El presente caso se refiere a la violaci\u00f3n de varios derechos convencionales en el marco del proceso administrativo de que", - "values": [ - "Comisi\u00f3n Interamericana de Derechos Humanos" - ] - }, - { - "text": "INFORME No. PETICI\u00d3N INFORME DE ADMISIBILIDAD NORKA MOYA SOL\u00cdS PER\u00da DE AGOSTO DE I. RESUMEN El de marzo de la Comisi\u00f3n Interamericana de Derechos Humanos en adelante la Comisi\u00f3n Interamericana la Comisi\u00f3n o la CIDH recibi\u00f3 una petici\u00f3n presentada por Norka Moya Sol\u00eds en adelante la peticionaria o la presunta v\u00edctima contra la Rep\u00fablica de Per\u00fa en adelante Per\u00fa o el Estado por las alegadas violaciones cometidas por el Poder Judicial del Estado el cual la habr\u00eda alejado de su cargo como ", - "values": [ - "Comisi\u00f3n Interamericana de Derechos Humanos" - ] - }, - { - "text": "INFORME No. CASO FONDO NORKA MOYA SOLIS PER\u00da DE MAYO DE I. INTRODUCCI\u00d3N El de marzo del la Comisi\u00f3n Interamericana de Derechos Humanos en adelante la Comisi\u00f3n la Comisi\u00f3n Interamericana o la CIDH recibi\u00f3 una petici\u00f3n presentada por Norka Moya Sol\u00eds en adelante la parte peticionaria en la cual se alega la responsabilidad de la Rep\u00fablica del Per\u00fa en adelante el Estado el Estado peruano o Per\u00fa por la violaci\u00f3n de varios derechos consagrados en la Convenci\u00f3n Americana sobre Derechos Humanos ", - "values": [ - "Comisi\u00f3n Interamericana de Derechos Humanos" - ] - }, - { - "text": "RESOLUCI\u00d3N DEL PRESIDENTE DE LA CORTE INTERAMERICANA DE DERECHOS HUMANOS DE DE MARZO DE CASO COMUNIDAD IND\u00cdGENA X\u00c1MOK K\u00c1SEK VS. PARAGUAY VISTO El escrito de demanda presentado por la Comisi\u00f3n Interamericana de Derechos Humanos en adelante la Comisi\u00f3n Interamericana o la Comisi\u00f3n ante la Corte Interamericana de Derechos Humanos en adelante la Corte Interamericana la Corte o el Tribunal el de julio de en el que ofreci\u00f3 la declaraci\u00f3n de cuatro presuntas v\u00edctimas un testigo y dos peritos. ", - "values": [ - "Corte Interamericana de Derechos Humanos" - ] - }, - { - "text": "INFORME No. CASO FONDO MANUELA Y FAMILIA EL SALVADOR DE DICIEMBRE DE I. RESUMEN El de marzo de la Comisi\u00f3n Interamericana de Derechos Humanos en adelante la Comisi\u00f3n Interamericana la Comisi\u00f3n o la CIDH recibi\u00f3 una petici\u00f3n presentada por el Centro de Derechos Reproductivos la Colectiva de Mujeres para el Desarrollo Local y la Agrupaci\u00f3n Ciudadana por la Despenalizaci\u00f3n del Aborto Terap\u00e9utico \u00c9tico y Eugen\u00e9sico en adelante la parte peticionaria en la cual se alega la responsabilidad de ", - "values": [ - "Comisi\u00f3n Interamericana de Derechos Humanos" - ] - }, - { - "text": "RESOLUCI\u00d3N DE LA CORTE INTERAMERICANA DE DERECHOS HUMANOS DE DE JUNIO DE CASO VALLE JARAMILLO Y OTROS VS. COLOMBIA SUPERVISI\u00d3N DE CUMPLIMIENTO DE SENTENCIA VISTO La Sentencia de fondo reparaciones y costas en adelante la Sentencia o el Fallo emitida por la Corte Interamericana de Derechos Humanos en adelante la Corte Interamericana la Corte o el Tribunal el de noviembre de La Corte acept\u00f3 el reconocimiento parcial de responsabilidad internacional realizado por la Rep\u00fablica de Colombia en", - "values": [ - "Corte Interamericana de Derechos Humanos" - ] - }, - { - "text": "RESOLUCI\u00d3N DE LA CORTE INTERAMERICANA DE DERECHOS HUMANOS DE DE JUNIO DE MEDIDAS PROVISIONALES RESPECTO DE M\u00c9XICO ASUNTO INTEGRANTES DE LA COMUNIDAD IND\u00cdGENA DE CHOR\u00c9ACHI VISTO La Resoluci\u00f3n de la Corte Interamericana de Derechos Humanos en adelante tambi\u00e9n la Corte Interamericana la Corte o el Tribunal de de marzo de mediante la cual dispuso que los Estados Unidos Mexicanos en adelante el Estado el Estado mexicano o M\u00e9xico deb\u00eda continuar implementando las medidas de protecci\u00f3n que ya ", - "values": [ - "Corte Interamericana de Derechos Humanos" - ] - }, - { - "text": "RESOLUCI\u00d3N DE LA PRESIDENTA DE LA CORTE INTERAMERICANA DE DERECHOS HUMANOS DE DE JUNIO DE CASO MOTA ABARULLO Y OTROS VS. VENEZUELA VISTO El escrito de sometimiento del caso y el Informe de Fondo No. de la Comisi\u00f3n Interamericana de Derechos Humanos en adelante tambi\u00e9n la Comisi\u00f3n Interamericana o la Comisi\u00f3n el escrito de solicitudes argumentos y pruebas en adelante el escrito de solicitudes y argumentos de los representantes de las presuntas v\u00edctimas en adelante tambi\u00e9n los representantes ", - "values": [ - "Corte Interamericana de Derechos Humanos" - ] - }, - { - "text": "RESOLUCI\u00d3N DE LA PRESIDENTA DE LA CORTE INTERAMERICANA DE DERECHOS HUMANOS DE DE JUNIO DE CASO OLIVARES MU\u00d1OZ Y OTROS VS. VENEZUELA VISTO La Resoluci\u00f3n de la Presidenta en adelante tambi\u00e9n la Presidenta de la Corte Interamericana de Derechos Humanos en adelante tambi\u00e9n la Corte Interamericana la Corte o el Tribunal de de febrero de en la cual inter alia resolvi\u00f3 convocar a la Rep\u00fablica Bolivariana de Venezuela en adelante Venezuela o el Estado a los representantes de las presuntas v\u00edctimas", - "values": [ - "Corte Interamericana de Derechos Humanos" - ] - }, - { - "text": "RESOLUCI\u00d3N DE LA PRESIDENTA DE LA CORTE INTERAMERICANA DE DERECHOS HUMANOS DE DE MARZO DE CASO VALLE AMBROSIO Y OTRO VS. ARGENTINA VISTO El escrito de sometimiento del caso y el Informe de Fondo de la Comisi\u00f3n Interamericana de Derechos Humanos en adelante la Comisi\u00f3n Interamericana o la Comisi\u00f3n La nota de Secretaria de de mayo de por medio de la cual se declar\u00f3 inadmisible el Escrito de Solicitudes Argumentos y Pruebas de la representaci\u00f3n de las presuntas v\u00edctimas en tanto fue de F ", - "values": [ - "Corte Interamericana de Derechos Humanos" - ] - }, - { - "text": "RESOLUCI\u00d3N DE LA CORTE INTERAMERICANA DE DERECHOS HUMANOS DE DE JUNIO DE MEDIDAS PROVISIONALES RESPECTO DE GUATEMALA CASO MACK CHANG Y OTROS VISTO Las Resoluciones de la Corte Interamericana de Derechos Humanos en adelante tambi\u00e9n la Corte la Corte Interamericana o el Tribunal de de agosto de de febrero y de junio de de enero y de noviembre de de mayo de de enero de y de marzo de En esta \u00faltima Resoluci\u00f3n la Corte requiri\u00f3 a la Rep\u00fablica de Guatemala en adelante el Estado o ", - "values": [ - "Corte Interamericana de Derechos Humanos" - ] - }, - { - "text": "VOTO PARCIALMENTE DISIDENTE DEL JUEZ HUMBERTO ANTONIO SIERRA PORTO CASO CUSCUL PIVARAL Y OTROS VS. GUATEMALA SENTENCIA DE DE AGOSTO DE Excepci\u00f3n Preliminar Fondo Reparaciones y Costas Con el acostumbrado respeto por las decisiones de la Corte Interamericana de Derechos Humanos en adelante tambi\u00e9n la Corte o el Tribunal me permito formular el presente voto parcialmente disidente. El voto se centra en el an\u00e1lisis de fondo que realiz\u00f3 la Corte acerca de la responsabilidad internacional del en ", - "values": [ - "Corte Interamericana de Derechos Humanos" - ] - }, - { - "text": "RESOLUCI\u00d3N DE LA PRESIDENTA DE LA CORTE INTERAMERICANA DE DERECHOS HUMANOS DE DE MAYO DE ADOPCI\u00d3N DE MEDIDAS URGENTES CASO V\u00c9LEZ LOOR VS. PANAM\u00c1 VISTO La Sentencia de excepciones preliminares fondo reparaciones y costas en adelante la Sentencia dictada por la Corte Interamericana de Derechos Humanos en adelante la Corte Interamericana la Corte o el Tribunal el de noviembre de Los hechos del caso se relacionan con la retenci\u00f3n del se\u00f1or Jes\u00fas Tranquilino V\u00e9lez Loor de nacionalidad el de ", - "values": [ - "Corte Interamericana de Derechos Humanos" - ] - }, - { - "text": "RESOLUCI\u00d3N DEL PRESIDENTE DE LA CORTE INTERAMERICANA DE DERECHOS HUMANOS DE DE DICIEMBRE DE CASO L\u00d3PEZ LONE Y OTROS VS. HONDURAS VISTO El escrito de sometimiento del caso y el Informe de Fondo de la Comisi\u00f3n Interamericana de Derechos Humanos en adelante la Comisi\u00f3n Interamericana o la Comisi\u00f3n el escrito de solicitudes argumentos y pruebas en adelante el escrito de solicitudes y argumentos de los representantes de las presuntas v\u00edctimas en adelante los representantes y el escrito de al ", - "values": [ - "Corte Interamericana de Derechos Humanos" - ] - }, - { - "text": "RESOLUCI\u00d3N DEL PRESIDENTE DE LA CORTE INTERAMERICANA DE DERECHOS HUMANOS DE DE ABRIL DE CASO COMUNIDAD GAR\u00cdFUNA TRIUNFO DE LA CRUZ Y SUS MIEMBROS VS HONDURAS VISTO El escrito de sometimiento del caso presentado por la Comisi\u00f3n Interamericana de Derechos Humanos en adelante la Comisi\u00f3n Interamericana o la Comisi\u00f3n ante la Corte Interamericana de Derechos Humanos en adelante la Corte Interamericana la Corte o el Tribunal el de febrero de mediante el cual remiti\u00f3 el Informe de Fondo No. y ", - "values": [ - "Corte Interamericana de Derechos Humanos" - ] - }, - { - "text": "CORTE INTERAMERICANA DE DERECHOS HUMANOS CASO VALLE AMBROSIO Y OTRO VS. ARGENTINA SENTENCIA DE DE JULIO DE Fondo y Reparaciones En el caso Valle Ambrosio y otro Vs. Argentina la Corte Interamericana de Derechos Humanos en adelante la Corte Interamericana la Corte o este Tribunal integrada por los siguientes jueces Elizabeth Odio Benito Presidenta L. Patricio Pazmi\u00f1o Freire Vicepresidente Eduardo Vio Grossi Juez Humberto Antonio Sierra Porto Juez Eduardo Ferrer MacGregor Poisot Juez y Ricardo", - "values": [ - "Corte Interamericana de Derechos Humanos" - ] - }, - { - "text": "VOTO CONCURRENTE DEL JUEZ EUGENIO RA\u00daL ZAFFARONI CASO ROCHE AZA\u00d1A Y OTROS VS. NICARAGUA SENTENCIA DE DE JUNIO DE Fondo y Reparaciones Entiendo que en el presente caso corresponde recalcar que la responsabilidad internacional del Estado en cuanto a la violaci\u00f3n del Derecho Humano a la vida no surge del mero resultado de las acciones de sus agentes en la supuesta aplicaci\u00f3n de la fuerza de las armas de guerra suministradas por el propio Estado sino de la posterior y arbitraria impunidad de En ", - "values": [ - "Corte Interamericana de Derechos Humanos" - ] - }, - { - "text": "CASO ROCHE AZA\u00d1A Y OTROS VS. NICARAGUA SENTENCIA DE DE JUNIO DE Fondo y Reparaciones En el caso Roche Aza\u00f1a y otros Vs. Nicaragua la Corte Interamericana de Derechos Humanos en adelante la Corte Interamericana la Corte o este Tribunal integrada por los siguientes jueces Elizabeth Odio Benito Presidenta L. Patricio Pazmi\u00f1o Freire Vicepresidente Eduardo Vio Grossi Juez Humberto Antonio Sierra Porto Juez Eduardo Ferrer MacGregor Poisot Juez Eugenio Ra\u00fal Zaffaroni Juez y Ricardo P\u00e9rez Manrique ", - "values": [ - "Corte Interamericana de Derechos Humanos" - ] - }, - { - "text": "VOTO CONCURRENTE JUEZ L. PATRICIO PAZMI\u00d1O FREIRE CASO ROCHE AZA\u00d1A Y OTROS VS. NICARAGUA SENTENCIA DE DE JUNIO DE Fondo y Reparaciones I. Introducci\u00f3n La sentencia del caso Roche Aza\u00f1a y otros Vs Nicaragua consolida y desarrolla los est\u00e1ndares relativos a los deberes de los Estados de garantizar los derechos de las personas migrantes a un acceso equitativo y efectivo a la justicia. La sentencia aborda el derecho a las garant\u00edas judiciales y a la protecci\u00f3n judicial considerando la especial ", - "values": [ - "Corte Interamericana de Derechos Humanos" - ] - }, - { - "text": "RESOLUCI\u00d3N DE LA CORTE INTERAMERICANA DE DERECHOS HUMANOS DE JUNIO DE CASO VILLASE\u00d1OR VELARDE Y OTROS VS. GUATEMALA SUPERVISI\u00d3N DE CUMPLIMIENTO DE SENTENCIA Y REINTEGRO AL FONDO DE ASISTENCIA LEGAL DE V\u00cdCTIMAS VISTO La Sentencia de fondo reparaciones y costas en adelante la Sentencia o el Fallo dictada por la Corte Interamericana de Derechos Humanos en adelante la Corte Interamericana la Corte o el Tribunal el de febrero de En dicha Sentencia la Corte declar\u00f3 internacionalmente a la de ", - "values": [ - "Corte Interamericana de Derechos Humanos" - ] - }, - { - "text": "RESOLUCI\u00d3N DE LA PRESIDENTA DE LA CORTE INTERAMERICANA DE DERECHOS HUMANOS DE DE ABRIL DE ADOPCI\u00d3N DE MEDIDAS URGENTES CASO RUIZ FUENTES Y OTRA VS. GUATEMALA VISTO La Sentencia de excepci\u00f3n preliminar fondo reparaciones y costas en adelante la Sentencia dictada por la Corte Interamericana de Derechos Humanos en adelante la Corte Interamericana la Corte o el Tribunal el de octubre de En dicha Sentencia la Corte declar\u00f3 internacionalmente responsable a la Rep\u00fablica de Guatemala en adelante ", - "values": [ - "Corte Interamericana de Derechos Humanos" - ] - }, - { - "text": "VOTO DISIDENTE DEL JUEZ L. PATRICIO PAZMI\u00d1O FREIRE A LA RESOLUCI\u00d3N EMITIDA EL DE JULIO DE EN EL CASO DEL PENAL MIGUEL CASTRO CASTRO VS. PER\u00da En la Resoluci\u00f3n en cuesti\u00f3n mi decisi\u00f3n se aparta del criterio de mayor\u00eda que ha resuelto realizar en el marco de la supervisi\u00f3n de cumplimiento de la Sentencia una supervisi\u00f3n reforzada respecto de la medida de tratamiento m\u00e9dico y psicol\u00f3gico ordenada en el presente caso respecto de las cinco v\u00edctimas sobre las cuales versa la presente solicitud de ", - "values": [ - "Corte Interamericana de Derechos Humanos" - ] - }, - { - "text": "VOTO CONCURRENTE DEL JUEZ EDUARDO VIO GROSSI RESOLUCI\u00d3N DE LA CORTE INTERAMERICANA DE DERECHOS HUMANOS DE DE JULIO DE SOLICITUD DE MEDIDAS PROVISIONALES Y SUPERVISI\u00d3N DE CUMPLIMIENTO DE SENTENCIA CASO DEL PENAL MIGUEL CASTRO CASTRO VS. PER\u00da Se concurre a aprobar la Resoluci\u00f3n del t\u00edtulo en m\u00e9rito de que ella en definitiva dispuso realizar una supervisi\u00f3n reforzada respecto de la medida de tratamiento m\u00e9dico y psicol\u00f3gico ordenada en el presente caso respecto de las cinco v\u00edctimas sobre las ", - "values": [ - "Corte Interamericana de Derechos Humanos" - ] - }, - { - "text": "VOTO DISIDENTE DEL JUEZ EUGENIO RA\u00daL ZAFFARONI RESPECTO DE LA SOLICITUD DE MEDIDAS PROVISIONALES PRESENTADA EN EL CASO DEL PENAL MIGUEL CASTRO CASTRO VS. PER\u00da Disiento con el criterio de mayor\u00eda debido a que considero que la Corte debi\u00f3 ordenar medidas provisionales en los t\u00e9rminos de los art\u00edculos de la Convenci\u00f3n Americana y de su Reglamento a favor de las cinco v\u00edctimas para las cuales se plante\u00f3 la solicitud. Toda vez que estas cinco personas se encuentran ante una situaci\u00f3n de urgencia ", - "values": [ - "Corte Interamericana de Derechos Humanos" - ] - }, - { - "text": "RESOLUCI\u00d3N DE LA CORTE INTERAMERICANA DE DERECHOS HUMANOS DE DE JULIO DE SOLICITUD DE MEDIDAS PROVISIONALES Y SUPERVISI\u00d3N DE CUMPLIMIENTO DE SENTENCIA CASO DEL PENAL MIGUEL CASTRO CASTRO VS. PER\u00da VISTO La Sentencia de fondo reparaciones y costas en adelante la Sentencia emitida en el presente caso por la Corte Interamericana de Derechos Humanos en adelante la Corte Interamericana la Corte o el Tribunal el de noviembre de Tomando en cuenta el reconocimiento parcial de responsabilidad por", - "values": [ - "Corte Interamericana de Derechos Humanos" - ] - }, - { - "text": "RESOLUCI\u00d3N DE LA CORTE INTERAMERICANA DE DERECHOS HUMANOS DE DE JUNIO DE CASO HUILCA TECSE VS. PER\u00da SUPERVISI\u00d3N DE CUMPLIMIENTO DE SENTENCIA VISTO La Sentencia de fondo reparaciones y costas en adelante la Sentencia emitida por la Corte Interamericana de Derechos Humanos en adelante la Corte Interamericana la Corte o el Tribunal el de marzo de Tomando en consideraci\u00f3n el allanamiento efectuado por la Rep\u00fablica del Per\u00fa en adelante el Estado o el Per\u00fa el Tribunal declar\u00f3 la responsabilidad", - "values": [ - "Corte Interamericana de Derechos Humanos" - ] - }, - { - "text": "RESOLUCI\u00d3N DE LA PRESIDENTA DE LA CORTE INTERAMERICANA DE DERECHOS HUMANOS DE JULIO DE CASO MART\u00cdNEZ ESQUIVIA VS. COLOMBIA VISTO El escrito de sometimiento del caso y el Informe de Fondo de la Comisi\u00f3n Interamericana de Derechos Humanos en adelante la Comisi\u00f3n Interamericana o la Comisi\u00f3n el escrito de excepciones preliminares y de contestaci\u00f3n al sometimiento del caso en adelante escrito de contestaci\u00f3n de la Rep\u00fablica de Colombia en adelante Colombia o el Estado as\u00ed como los escritos de a", - "values": [ - "Corte Interamericana de Derechos Humanos" - ] - }, - { - "text": "VOTO DISIDENTE DEL JUEZ EDUARDO VIO GROSSI RESOLUCI\u00d3N DE LA CORTE INTERAMERICANA DE DERECHOS HUMANOS DE DE JUNIO DE MEDIDAS PROVISIONALES RESPECTO DE COLOMBIA CASO COMERCIANTES. I. INTRODUCCI\u00d3N. Se expide el presente voto disidente respecto de la Resoluci\u00f3n del t\u00edtulo que ha ratificado la Resoluci\u00f3n de Medidas Urgentes de la Presidenta de la Corte Interamericana de Derechos Humanos del de abril del a\u00f1o en curso Con el prop\u00f3sito de facilitar una mayor comprensi\u00f3n de esta divergencia ", - "values": [ - "Corte Interamericana de Derechos Humanos" - ] - }, - { - "text": "RESOLUCI\u00d3N DE LA CORTE INTERAMERICANA DE DERECHOS HUMANOS DE DE JUNIO DE MEDIDAS PROVISIONALES RESPECTO DE COLOMBIA CASO COMERCIANTES VISTO La Sentencia de fondo reparaciones y costas dictada por la Corte Interamericana de Derechos Humanos en adelante la Corte Interamericana la Corte o el Tribunal el de julio de mediante la cual se declar\u00f3 que la Rep\u00fablica de Colombia en adelante el Estado o Colombia hab\u00eda violado los derechos a la libertad personal a la integridad personal y a la vida ", - "values": [ - "Corte Interamericana de Derechos Humanos" - ] - }, - { - "text": "RESOLUCI\u00d3N DE LA CORTE INTERAMERICANA DE DERECHOS HUMANOS DE JUNIO DE CASO IV. VS. BOLIVIA SUPERVISI\u00d3N DE CUMPLIMIENTO DE SENTENCIA VISTO La Sentencia de excepciones preliminares fondo reparaciones y costas en adelante la Sentencia o el Fallo dictada por la Corte Interamericana de Derechos Humanos en adelante la Corte la Corte Interamericana o el Tribunal el de noviembre de Los hechos del caso se refieren a la esterilizaci\u00f3n no consentida o involuntaria realizada a la se\u00f1ora IV. en un ", - "values": [ - "Corte Interamericana de Derechos Humanos" - ] - }, - { - "text": "RESOLUCI\u00d3N DE LA PRESIDENTA DE LA CORTE INTERAMERICANA DE DERECHOS HUMANOS DE DE AGOSTO DE ADOPCI\u00d3N DE MEDIDAS URGENTES CASO COMUNIDADES GAR\u00cdFUNAS DE TRIUNFO DE LA CRUZ Y PUNTA PIEDRA VS. HONDURAS VISTO La Sentencia de excepciones preliminares fondo reparaciones y costas del caso Comunidad Gar\u00edfuna de Punta Piedra y sus miembros y la Sentencia de fondo reparaciones y costas del caso Comunidad Gar\u00edfuna Triunfo de la Cruz y sus miembros ambas dictadas por la Corte Interamericana de Derechos ", - "values": [ - "Corte Interamericana de Derechos Humanos" - ] - }, - { - "text": "RESOLUCI\u00d3N DE LA CORTE INTERAMERICANA DE DERECHOS HUMANOS DE DE MARZO DE CASO ROSENDO CANT\u00da Y OTRA VS. M\u00c9XICO SUPERVISI\u00d3N DE CUMPLIMIENTO DE SENTENCIA VISTO La Sentencia de excepci\u00f3n preliminar fondo reparaciones y costas emitida por la Corte Interamericana de Derechos Humanos en adelante la Corte Interamericana la Corte o el Tribunal el de agosto de en la que determin\u00f3 la responsabilidad internacional de los Estados Unidos Mexicanos en adelante Mexico o el Estado. La Corte estableci\u00f3 que", - "values": [ - "Corte Interamericana de Derechos Humanos" - ] - }, - { - "text": "RESOLUCI\u00d3N DE LA CORTE INTERAMERICANA DE DERECHOS HUMANOS DE DE JULIO DE ADOPCI\u00d3N DE MEDIDAS PROVISIONALES CASO V\u00c9LEZ LOOR VS. PANAM\u00c1 VISTO La Sentencia de excepciones preliminares fondo reparaciones y costas en adelante la Sentencia dictada por la Corte Interamericana de Derechos Humanos en adelante la Corte Interamericana la Corte o el Tribunal el de noviembre de Los hechos del caso se relacionan con la retenci\u00f3n del se\u00f1or Jes\u00fas Tranquilino V\u00e9lez Loor de nacionalidad ecuatoriana el de", - "values": [ - "Corte Interamericana de Derechos Humanos" - ] - }, - { - "text": "VOTO DISIDENTE DEL JUEZ EDUARDO VIO GROSSI RESOLUCI\u00d3N DE LA CORTE INTERAMERICANA DE DERECHOS HUMANOS DE DE JULIO DE ADOPCI\u00d3N DE MEDIDAS PROVISIONALES CASO V\u00c9LEZ LOOR VS. PANAM\u00c1 I. INTRODUCCI\u00d3N. Se expide el presente voto disidente respecto de la Resoluci\u00f3n del t\u00edtulo que ha ratificado la Resoluci\u00f3n de Medidas Urgentes de la Presidenta de la Corte Interamericana de Derechos Humanos del de mayo del a\u00f1o en curso Con el prop\u00f3sito de facilitar la exposici\u00f3n de esta divergencia las razones ", - "values": [ - "Corte Interamericana de Derechos Humanos" - ] - }, - { - "text": "VOTO CONCURRENTE Leoncio Patricio Pazmi\u00f1o Freire Juez II. LA DEMOCRACIA Y LOS DERECHOS HUMANOS. Art\u00edculo La democracia es indispensable para el ejercicio efectivo de las libertades fundamentales y los derechos humanos en su car\u00e1cter universal indivisible e interdependiente consagrados en las respectivas constituciones de los Estados y en los instrumentos interamericanos e internacionales de derechos humanos Carta Democr\u00e1tica Interamericana. Consideraciones de contexto. En un continente que no ", - "values": [ - "Corte Interamericana de Derechos Humanos" - ] - }, - { - "text": "RESOLUCI\u00d3N DE LA PRESIDENTA DE LA CORTE INTERAMERICANA DE DERECHOS HUMANOS DE JULIO DE CASO ALMEIDA VS. ARGENTINA VISTO El escrito de sometimiento del caso y el Informe de Fondo de la Comisi\u00f3n Interamericana de Derechos Humanos en adelante la Comisi\u00f3n Interamericana o la Comisi\u00f3n el escrito de solicitudes argumentos y pruebas en adelante el escrito de solicitudes y argumentos de los representantes de la presunta v\u00edctima en adelante los representantes el escrito de contestaci\u00f3n al del caso ", - "values": [ - "Corte Interamericana de Derechos Humanos" - ] - }, - { - "text": "RESOLUCI\u00d3N DE LA CORTE INTERAMERICANA DE DERECHOS HUMANOS DE DE JUNIO DE MEDIDAS PROVISIONALES RESPECTO DE M\u00c9XICO CASO FERN\u00c1NDEZ ORTEGA Y OTROS VISTOS Las Resoluciones de la Corte Interamericana de Derechos Humanos en adelante la Corte Interamericana la Corte o el Tribunal y de su Presidencia de y de abril y de diciembre de de noviembre de de mayo de de febrero de de febrero de de febrero de de marzo y de noviembre de En esta \u00faltima la Corte resolvi\u00f3 inter alia Mantener ", - "values": [ - "Corte Interamericana de Derechos Humanos" - ] - }, - { - "text": "RESOLUCI\u00d3N DE LA PRESIDENTA DE LA CORTE INTERAMERICANA DE DERECHOS HUMANOS DE DE AGOSTO DE CASO CASA NINA VS. PER\u00da VISTO El escrito de sometimiento del caso y el Informe de Fondo de la Comisi\u00f3n Interamericana de Derechos Humanos en adelante la Comisi\u00f3n Interamericana o la Comisi\u00f3n el escrito de solicitudes argumentos y pruebas en adelante escrito de solicitudes y argumentos de la presunta v\u00edctima y el escrito de excepciones preliminares y contestaci\u00f3n al sometimiento del caso e Informe de ", - "values": [ - "Corte Interamericana de Derechos Humanos" - ] - }, - { - "text": "RESOLUCI\u00d3N DE LA PRESIDENTA DE LA CORTE INTERAMERICANA DE DERECHOS HUMANOS DE DE SEPTIEMBRE DE CASO CORDERO BERNAL VS. PER\u00da VISTO El escrito de sometimiento del caso y el Informe de Fondo de la Comisi\u00f3n Interamericana de Derechos Humanos en adelante la Comisi\u00f3n Interamericana o la Comisi\u00f3n el escrito de solicitudes argumentos y pruebas en adelante el escrito de solicitudes y argumentos presentado por la presunta v\u00edctima el escrito de excepci\u00f3n preliminar y contestaci\u00f3n al sometimiento del ", - "values": [ - "Corte Interamericana de Derechos Humanos" - ] - }, - { - "text": "RESOLUCI\u00d3N DE LA CORTE INTERAMERICANA DE DERECHOS HUMANOS DE DE SEPTIEMBRE DE SOLICITUD DE MEDIDAS PROVISIONALES Y SUPERVISI\u00d3N DE CUMPLIMIENTO DE SENTENCIA CASO MOLINA THEISSEN VS. GUATEMALA VISTO Las Sentencias de fondo y de reparaciones y costas en adelante las Sentencias emitidas por la Corte Interamericana de Derechos Humanos en adelante la Corte Interamericana la Corte o el Tribunal el de mayo y de julio de En la Sentencia de fondo tomando en cuenta el reconocimiento de efectuado ", - "values": [ - "Corte Interamericana de Derechos Humanos" - ] - }, - { - "text": "VOTO CONCURRENTE DEL JUEZ EDUARDO VIO GROSSI RESOLUCI\u00d3N DE LA CORTE INTERAMERICANA DE DERECHOS HUMANOS DE DE SEPTIEMBRE DE SOLICITUD DE MEDIDAS PROVISIONALES Y SUPERVISI\u00d3N DE CUMPLIMIENTO DE SENTENCIA CASO MOLINA THEISSEN VS. GUATEMALA. Se emite el presente voto concurrente respecto de la Resoluci\u00f3n indicada en el t\u00edtulo en m\u00e9rito de que no obstante aprobar sus puntos resolutivos y en particular el primero no se comparte la consideraci\u00f3n consignada en su p\u00e1rrafo N Efectivamente a juicio ", - "values": [ - "Corte Interamericana de Derechos Humanos" - ] - }, - { - "text": "RESOLUCI\u00d3N DE LA CORTE INTERAMERICANA DE DERECHOS HUMANOS DE DE SEPTIEMBRE DE SOLICITUD DE MEDIDAS PROVISIONALES Y SUPERVISI\u00d3N DE CUMPLIMIENTO DE SENTENCIA CASO GALINDO C\u00c1RDENAS Y OTROS VS. PER\u00da VISTO La Sentencia sobre excepciones preliminares fondo reparaciones y costas en adelante la Sentencia emitida en el presente caso por la Corte Interamericana de Derechos Humanos en adelante tambi\u00e9n la Corte o el Tribunal el de octubre de La Corte determin\u00f3 que la Rep\u00fablica del Per\u00fa el Estado o ", - "values": [ - "Corte Interamericana de Derechos Humanos" - ] - }, - { - "text": "VOTO CONCURRENTE DEL JUEZ EDUARDO VIO GROSSI RESOLUCI\u00d3N DE LA CORTE INTERAMERICANA DE DERECHOS HUMANOS DE DE SEPTIEMBRE DE SOLICITUD DE MEDIDAS PROVISIONALES Y SUPERVISI\u00d3N DE CUMPLIMIENTO DE SENTENCIA CASO GALINDO C\u00c1RDENAS Y OTROS VS. PER\u00da Se emite el presente voto concurrente respecto de la Resoluci\u00f3n indicada en el t\u00edtulo en m\u00e9rito de que no obstante aprobar sus puntos resolutivos y en particular el primero no se comparte la consideraci\u00f3n consignada en su p\u00e1rrafo N de sus considerandos ", - "values": [ - "Corte Interamericana de Derechos Humanos" - ] - }, - { - "text": "VOTO CONCURRENTE DEL JUEZ EDUARDO VIO GROSSI RESOLUCI\u00d3N DE LA CORTE INTERAMERICANA DE DERECHOS HUMANOS DE DE SEPTIEMBRE DE SOLICITUD DE MEDIDAS PROVISIONALES Y SUPERVISI\u00d3N DE CUMPLIMIENTO DE SENTENCIAS CASO DE LA MASACRE DE PUEBLO BELLO CASO DE LAS MASACRES DE ITUANGO Y CASO VALLE JARAMILLO Y OTROS VS. COLOMBIA. Se emite el presente voto concurrente respecto de la Resoluci\u00f3n indicada en el t\u00edtulo en m\u00e9rito de que no obstante aprobar sus puntos resolutivos y en particular el primero no se la", - "values": [ - "Corte Interamericana de Derechos Humanos" - ] - }, - { - "text": "RESOLUCI\u00d3N DE LA CORTE INTERAMERICANA DE DERECHOS HUMANOS DE DE SEPTIEMBRE DE SOLICITUD DE MEDIDAS PROVISIONALES Y SUPERVISI\u00d3N DE CUMPLIMIENTO DE SENTENCIAS CASO DE LA MASACRE DE PUEBLO BELLO CASO DE LAS MASACRES DE ITUANGO Y CASO VALLE JARAMILLO Y OTROS VS. COLOMBIA VISTO Las Sentencias emitidas por la Corte Interamericana de Derechos Humanos en adelante la Corte Interamericana la Corte o el Tribunal el de enero de en el caso de la Masacre de Pueblo Bello el de julio de en el caso de ", - "values": [ - "Corte Interamericana de Derechos Humanos" - ] - }, - { - "text": "VOTO DISIDENTE DEL JUEZ EDUARDO VIO GROSSI RESOLUCI\u00d3N DE LA CORTE INTERAMERICANA DE DERECHOS HUMANOS DE DE SEPTIEMBRE DE MEDIDAS PROVISIONALES RESPECTO DE HONDURAS CASO COMUNIDADES GAR\u00cdFUNAS DE TRIUNFO DE LA CRUZ Y PUNTA PIEDRA. I. INTRODUCCI\u00d3N. Se expide el presente voto disidente respecto de la Resoluci\u00f3n del t\u00edtulo que ha ratificado la Resoluci\u00f3n de Medidas Urgentes de la Presidenta de la Corte Interamericana de Derechos Humanos del de agosto del a\u00f1o en curso En atenci\u00f3n a la de ", - "values": [ - "Corte Interamericana de Derechos Humanos" - ] - }, - { - "text": "RESOLUCI\u00d3N DE LA CORTE INTERAMERICANA DE DERECHOS HUMANOS DE DE SEPTIEMBRE DE MEDIDAS PROVISIONALES RESPECTO DE HONDURAS CASO COMUNIDADES GAR\u00cdFUNAS DE TRIUNFO DE LA CRUZ Y PUNTA PIEDRA VISTO La Sentencia de excepciones preliminares fondo reparaciones y costas del caso Comunidad Gar\u00edfuna de Punta Piedra y sus miembros y la Sentencia de fondo reparaciones y costas del caso Comunidad Gar\u00edfuna Triunfo de la Cruz y sus miembros ambas dictadas por la Corte Interamericana de Derechos Humanos en ", - "values": [ - "Corte Interamericana de Derechos Humanos" - ] - }, - { - "text": "RESOLUCI\u00d3N DE LA PRESIDENTA DE LA CORTE INTERAMERICANA DE DERECHOS HUMANOS DE DE SEPTIEMBRE DE CASO VICKY HERNANDEZ Y OTROS VS. HONDURAS CONVOCATORIA A AUDIENCIA VISTO El escrito de sometimiento del caso y el Informe de Fondo de la Comisi\u00f3n Interamericana de Derechos Humanos en adelante la Comisi\u00f3n Interamericana o la Comisi\u00f3n el escrito de solicitudes argumentos y pruebas en adelante el escrito de solicitudes y argumentos de los representantes de las presuntas v\u00edctimas en adelante los y el", - "values": [ - "Corte Interamericana de Derechos Humanos" - ] - }, - { - "text": "RESOLUCI\u00d3N DE LA CORTE INTERAMERICANA DE DERECHOS HUMANOS DE DE AGOSTO DE CASO MOTA ABARULLO Y OTROS VS. VENEZUELA VISTO La Resoluci\u00f3n de la Presidenta de la Corte Interamericana de Derechos Humanos de de junio de en adelante tambi\u00e9n la Resoluci\u00f3n o la Resoluci\u00f3n de de junio de en la cual entre otros determin\u00f3 en consulta con el Pleno de la Corte Interamericana de Derechos Humanos que no es necesario convocar a una audiencia p\u00fablica en este caso y resolvi\u00f3 inter alia Requerir por las ", - "values": [ - "Corte Interamericana de Derechos Humanos" - ] - }, - { - "text": "RESOLUCI\u00d3N DE LA CORTE INTERAMERICANA DE DERECHOS HUMANOS DE DE JULIO DE CASO OLIVARES MU\u00d1OZ Y OTROS VS. VENEZUELA VISTO La Resoluci\u00f3n de la Presidenta en adelante tambi\u00e9n la Presidenta de la Corte Interamericana de Derechos Humanos en adelante tambi\u00e9n la Corte Interamericana la Corte o el Tribunal de de junio de mediante la cual en virtud de que la situaci\u00f3n originada a causa de la pandemia por la propagaci\u00f3n del COVID conllevar\u00eda por razones de fuerza mayor impedimentos notorios e para", - "values": [ - "Corte Interamericana de Derechos Humanos" - ] - }, - { - "text": "RESOLUCI\u00d3N DE LA CORTE INTERAMERICANA DE DERECHOS HUMANOS DE JULIO DE CASO MART\u00cdNEZ ESQUIVIA VS. COLOMBIA VISTO La Resoluci\u00f3n de la Presidenta en adelante la Presidenta de la Corte Interamericana de Derechos Humanos en adelante la Corte Interamericana la Corte o este Tribunal de de julio de en adelante la Resoluci\u00f3n de la Presidenta en la cual entre otros resolvi\u00f3 Requerir por las razones expuestas en la presente Resoluci\u00f3n de conformidad con el principio de econom\u00eda procesal y de la ", - "values": [ - "Corte Interamericana de Derechos Humanos" - ] - }, - { - "text": "CORTE INTERAMERICANA DE DERECHOS HUMANOS CASO PETRO URREGO VS. COLOMBIA SENTENCIA DE DE JULIO DE Excepciones Preliminares Fondo Reparaciones y Costas En el caso Petro Urrego Vs. Colombia la Corte Interamericana de Derechos Humanos en adelante la Corte Interamericana la Corte o el Tribunal o este Tribunal integrada por los siguientes Jueces Elizabeth Odio Benito Presidenta Patricio Pazmi\u00f1o Freire Vicepresidente Eduardo Vio Grossi Juez Eduardo Ferrer MacGregor Poisot Juez Eugenio Ra\u00fal Juez y ", - "values": [ - "Corte Interamericana de Derechos Humanos" - ] - }, - { - "text": "VOTO PARCIALMENTE DISIDENTE JUEZ L. PATRICIO PAZMI\u00d1O FREIRE SENTENCIA DE DE JULIO DE CASO PETRO URREGO VS. COLOMBIA I. La violaci\u00f3n de los derechos pol\u00edticos y las garant\u00edas judiciales de Gustavo Petro Urrego En la Sentencia del caso Petro Urrego Vs. Colombia la Corte reiter\u00f3 la interpretaci\u00f3n establecida en el precedente L\u00f3pez Mendoza Vs. Venezuela respecto a los alcances del art\u00edculo de la Convenci\u00f3n Americana en el sentido de que la inhabilitaci\u00f3n de funcionarios p\u00fablicos democr\u00e1ticamente", - "values": [ - "Corte Interamericana de Derechos Humanos" - ] - }, - { - "text": "VOTO DISIDENTE EN CUANTO AL PUNTO DEL RESOLUTORIO DEL JUEZ EUGENIO RA\u00daL ZAFFARONI EN LA SENTENCIA DE DE JULIO DE DE LA CORTE INTERAMERICANA DE DERECHOS HUMANOS EN EL CASO PETRO VS. COLOMBIA Es de p\u00fablico y notorio que el se\u00f1or Petro es un pol\u00edtico incluso un candidato a la Presidencia de la Rep\u00fablica. Tambi\u00e9n que ha sido sometido a un proceso irregular al punto de ser revertida la decisi\u00f3n que interrumpi\u00f3 el cumplimiento de su mandato popular del propio Estado. No se trat\u00f3 en el caso de una ", - "values": [ - "Corte Interamericana de Derechos Humanos" - ] - }, - { - "text": "RESOLUCI\u00d3N DE LA CORTE INTERAMERICANA DE DERECHOS HUMANOS DE DE JULIO DE CASO \u00d3RDENES GUERRA Y OTROS VS. CHILE SUPERVISI\u00d3N DE CUMPLIMIENTO DE SENTENCIA VISTO La Sentencia de fondo reparaciones y costas en adelante la Sentencia emitida por la Corte Interamericana de Derechos Humanos en adelante la Corte Interamericana la Corte o el Tribunal el de noviembre de En dicha Sentencia tomando en cuenta el reconocimiento de responsabilidad efectuado por la Rep\u00fablica de Chile en adelante Chile o ", - "values": [ - "Corte Interamericana de Derechos Humanos" - ] - }, - { - "text": "RESOLUCI\u00d3N DE LA CORTE INTERAMERICANA DE DERECHOS HUMANOS DE DE JULIO DE CASO TORRES MILLACURA Y OTROS VS. ARGENTINA SUPERVISI\u00d3N DE CUMPLIMIENTO DE SENTENCIA Y REINTEGRO AL FONDO DE ASISTENCIA LEGAL DE V\u00cdCTIMAS VISTO La Sentencia de fondo reparaciones y costas en adelante la Sentencia dictada por la Corte Interamericana de Derechos Humanos en adelante la Corte Interamericana la Corte o el Tribunal el de agosto de La Corte acept\u00f3 el reconocimiento parcial de responsabilidad efectuado por ", - "values": [ - "Corte Interamericana de Derechos Humanos" - ] - }, - { - "text": "VOTO DISIDENTE DEL JUEZ RICARDO P\u00c9REZ MANRIQUE CASO SPOLTORE VS. ARGENTINA SENTENCIA DE DE JUNIO DE Excepci\u00f3n Preliminar Fondo Reparaciones y Costas INTRODUCCI\u00d3N Formulo el presente voto disidente en el caso Spoltore Vs. Argentina en adelante caso Spoltore por considerar que la Corte Interamericana de Derechos Humanos en adelante la Corte o el Tribunal Interamericano debi\u00f3 acoger la excepci\u00f3n preliminar de agotamiento de los recursos internos. Asimismo en cuanto al abordaje de las cuestiones", - "values": [ - "Corte Interamericana de Derechos Humanos" - ] - }, - { - "text": "VOTO CONCURRENTE DEL JUEZ L. PATRICIO PAZMI\u00d1O FREIRE CASO SPOLTORE VS. ARGENTINA SENTENCIA DE DE JUNIO DE Excepci\u00f3n Preliminar Fondo Reparaciones y Costas La Sentencia del caso Spoltore Vs. Argentina desarrolla y fortalece los est\u00e1ndares relativos a la relaci\u00f3n del derecho al acceso a la justicia y los derechos econ\u00f3micos sociales culturales y ambientales. En particular la Sentencia establece que los recursos judiciales que buscan proteger derechos econ\u00f3micos sociales culturales y deben ser", - "values": [ - "Corte Interamericana de Derechos Humanos" - ] - }, - { - "text": "VOTO RAZONADO DEL JUEZ EDUARDO FERRER MACGREGOR POISOT CASO SPOLTORE VS. ARGENTINA SENTENCIA DE DE JUNIO DE Excepci\u00f3n Preliminar Fondo Reparaciones y Costas I. INTRODUCCI\u00d3N Los alegatos estatales invocando la excepci\u00f3n preliminar por falta de agotamiento de recursos internos han estado presentes desde el primer caso contencioso resuelto por la Corte Interamericana de Derechos Humanos en adelante la Corte IDH o el Tribunal Interamericano. En efecto en la sentencia sobre excepciones del caso ", - "values": [ - "Corte Interamericana de Derechos Humanos" - ] - }, - { - "text": "VOTO DISIDENTE DEL JUEZ HUMBERTO ANTONIO SIERRA PORTO CASO SPOLTORE VS. ARGENTINA SENTENCIA DE DE JUNIO DE Excepci\u00f3n Preliminar Fondo Reparaciones y Costas Con el reiterado respeto por las decisiones de la Corte Interamericana de Derechos Humanos en adelante tambi\u00e9n la Corte o el Tribunal me permito formular el presente voto parcialmente disidente. En este voto explicar\u00e9 mi discrepancia respecto de la posici\u00f3n que ha adoptado la mayor\u00eda de rechazar la excepci\u00f3n preliminar presentada por el ", - "values": [ - "Corte Interamericana de Derechos Humanos" - ] - }, - { - "text": "VOTO DISIDENTE DEL JUEZ EDUARDO VIO GROSSI CASO SPOLTORE VS. ARGENTINA SENTENCIA DE DE JUNIO DE Excepci\u00f3n Preliminar Fondo Reparaciones y Costas Se emite el presente voto disidente con relaci\u00f3n a la Sentencia del t\u00edtulo por discrepar en lo principal de lo dispuesto en su Resolutivo N concerniente al cumplimiento del requisito del previo agotamiento de los recursos internos por las razones que ya se han expuesto en otros votos individuales del suscrito que se reiteran en lo que sean ", - "values": [ - "Corte Interamericana de Derechos Humanos" - ] - }, - { - "text": "CORTE INTERAMERICANA DE DERECHOS HUMANOS CASO SPOLTORE VS. ARGENTINA SENTENCIA DE DE JUNIO DE Excepci\u00f3n Preliminar Fondo Reparaciones y Costas En el caso Spoltore Vs. Argentina la Corte Interamericana de Derechos Humanos en adelante la Corte Interamericana la Corte o este Tribunal integrada por los siguientes jueces Elizabeth Odio Benito Presidenta L. Patricio Pazmi\u00f1o Freire Vicepresidente Eduardo Vio Grossi Juez Humberto Antonio Sierra Porto Juez Eduardo Ferrer MacGregor Poisot Juez y ", - "values": [ - "Corte Interamericana de Derechos Humanos" - ] - }, - { - "text": "RESOLUCI\u00d3N DE LA CORTE INTERAMERICANA DE DERECHOS HUMANOS DE DE JULIO DE MEDIDAS PROVISIONALES RESPECTO DE VENEZUELA ASUNTOS DE DETERMINADOS CENTROS PENITENCIARIOS DE VENEZUELA HUMBERTO PRADO MARIANELA S\u00c1NCHEZ ORTIZ Y FAMILIA VISTO Las Resoluciones de la Corte Interamericana de Derechos Humanos en adelante tambi\u00e9n la Corte Interamericana la Corte o el Tribunal de de noviembre de de julio de de septiembre de y de noviembre de En el marco de esta \u00faltima Resoluci\u00f3n la Corte resolvi\u00f3 ", - "values": [ - "Corte Interamericana de Derechos Humanos" - ] - }, - { - "text": "CORTE INTERAMERICANA DE DERECHOS HUMANOS CASO GUZM\u00c1N ALBARRAC\u00cdN Y OTRAS VS. ECUADOR SENTENCIA DE DE JUNIO DE Fondo Reparaciones y Costas En el caso Guzm\u00e1n Albarrac\u00edn y otras la Corte Interamericana de Derechos Humanos en adelante tambi\u00e9n la Corte Interamericana la Corte o el Tribunal integrada por los siguientes Jueces Elizabeth Odio Benito Presidenta Eduardo Vio Grossi Juez Humberto Antonio Sierra Porto Juez Eduardo Ferrer MacGregor Poisot Juez Eugenio Ra\u00fal Zaffaroni Juez y Ricardo P\u00e9rez ", - "values": [ - "Corte Interamericana de Derechos Humanos" - ] - }, - { - "text": "RESOLUCI\u00d3N DE LA CORTE INTERAMERICANA DE DERECHOS HUMANOS DE DE JUNIO DE CASO CABRERA GARC\u00cdA Y MONTIEL FLORES VS. M\u00c9XICO SUPERVISI\u00d3N DE CUMPLIMIENTO DE SENTENCIA VISTO La Sentencia de excepci\u00f3n preliminar fondo reparaciones y costas en adelante la Sentencia o el Fallo emitida por la Corte Interamericana de Derechos Humanos en adelante la Corte Interamericana la Corte o el Tribunal el de noviembre de en la que determin\u00f3 la responsabilidad internacional de los Estados Unidos Mexicanos en ", - "values": [ - "Corte Interamericana de Derechos Humanos" - ] - }, - { - "text": "VOTO CONCURRENTE DEL JUEZ EDUARDO VIO GROSSI RESOLUCI\u00d3N DE LA CORTE INTERAMERICANA DE DERECHOS HUMANOS DE DE JUNIO DE MEDIDAS PROVISIONALES RESPECTO DE M\u00c9XICO CASO FERN\u00c1NDEZ ORTEGA Y OTROS Se emite el presente voto concurrente de la Resoluci\u00f3n del ep\u00edgrafe reiterando as\u00ed lo expuesto en los expedidos por el suscrito el de febrero de y el de febrero de relativos al mismo asunto haciendo presente que si bien no est\u00e1 as\u00ed siguiendo estrictamente la posici\u00f3n que adopt\u00f3 en cuanto a otras sobre ", - "values": [ - "Corte Interamericana de Derechos Humanos" - ] - }, - { - "text": "RESOLUCI\u00d3N DE LA CORTE INTERAMERICANA DE DERECHOS HUMANOS DE JUNIO DE MEDIDAS PROVISIONALES CASO DURAND Y UGARTE VS. PER\u00da VISTO La Sentencia de fondo de de agosto de en adelante la Sentencia mediante la cual la Corte Interamericana de Derechos Humanos en adelante tambi\u00e9n la Corte Interamericana o el Tribunal declar\u00f3 responsable internacionalmente a la Rep\u00fablica del Per\u00fa en adelante el Estado o Per\u00fa por la violaci\u00f3n del derecho a la vida de los se\u00f1ores Nolberto Durand Ugarte y Gabriel ", - "values": [ - "Corte Interamericana de Derechos Humanos" - ] - }, - { - "text": "REF Caso N\u00ba Familiares de Digna Ochoa y Pl\u00e1cido M\u00e9xico de octubre de Se\u00f1or Secretario Tengo el agrado de dirigirme a usted en nombre de la Comisi\u00f3n Interamericana de Derechos Humanos con el objeto de someter a la jurisdicci\u00f3n de la Honorable Corte Interamericana de Derechos Humanos el Caso N\u00ba Familiares de Digna Ochoa y Pl\u00e1cido respecto de los Estados Unidos Mexicanos en adelante el Estado el Estado mexicano o M\u00e9xico. La Comisi\u00f3n estableci\u00f3 la existencia de un contexto de amenazas y en ", - "values": [ - "Comisi\u00f3n Interamericana de Derechos Humanos" - ] - }, - { - "text": "INTRODUCCI\u00d3N El de noviembre de la Comisi\u00f3n Interamericana de Derechos Humanos en adelante la Comisi\u00f3n Interamericana la Comisi\u00f3n o la CIDH recibi\u00f3 una petici\u00f3n presentada por la Red Nacional de Organismos Civiles de Derechos Humanos Todos los derechos para todos y el Centro por la Justicia y el Derecho Internacional CEJIL en adelante la parte peticionaria en la cual se aleg\u00f3 la responsabilidad internacional de los Estados Unidos Mexicanos en adelante el Estado mexicano el Estado o M\u00e9xico ", - "values": [ - "Comisi\u00f3n Interamericana de Derechos Humanos" - ] - }, - { - "text": "REF Caso N\u00ba Sandra Cecilia Pavez Pavez Chile de septiembre de Se\u00f1or Secretario Tengo el agrado de dirigirme a usted en nombre de la Comisi\u00f3n Interamericana de Derechos Humanos con el objeto de someter a la jurisdicci\u00f3n de la Honorable Corte Interamericana de Derechos Humanos el caso No. Sandra Cecilia Pavez Pavez respecto de la Rep\u00fablica de Chile en adelante el Estado el Estado chileno o Chile relacionado con la responsabilidad internacional del Estado por la inhabilitaci\u00f3n con base en la ", - "values": [ - "Comisi\u00f3n Interamericana de Derechos Humanos" - ] - }, - { - "text": "INFORME No. CASO FONDO SANDRA CECILIA PAVEZ PAVEZ CHILE de diciembre de I. RESUMEN El de octubre de la Comisi\u00f3n Interamericana de Derechos Humanos en adelante la Comisi\u00f3n Interamericana la Comisi\u00f3n o la CIDH recibi\u00f3 una petici\u00f3n presentada por Sandra Cecilia Pavez Pavez Rolando Paul Jim\u00e9nez P\u00e9rez representante legal del Movimiento de Integraci\u00f3n y Liberaci\u00f3n Homosexual MOVILH y Alfredo Morgado en adelante la parte peticionaria en la cual se alega la responsabilidad internacional de en", - "values": [ - "Comisi\u00f3n Interamericana de Derechos Humanos" - ] - }, - { - "text": "REF Caso N\u00ba Manuela y familia El Salvador de julio de Se\u00f1or Secretario Tengo el agrado de dirigirme a usted en nombre de la Comisi\u00f3n Interamericana de Derechos Humanos con el objeto de someter a la jurisdicci\u00f3n de la Honorable Corte Interamericana de Derechos Humanos el Caso N\u00ba Manuela y familia respecto de la Rep\u00fablica de El Salvador en adelante el Estado el Estado salvadore\u00f1o o El Salvador. El caso se refiere a una serie de violaciones en el marco del proceso penal que culmin\u00f3 con la ", - "values": [ - "Comisi\u00f3n Interamericana de Derechos Humanos" - ] - }, - { - "text": "INFORME N\u00ba PETICI\u00d3N ADMISIBILIDAD EXTRABAJADORES DEL ORGANISMO JUDICIAL GUATEMALA de octubre de I. RESUMEN El de septiembre de la Comisi\u00f3n Interamericana de Derechos Humanos en adelante la Comisi\u00f3n o la Comisi\u00f3n Interamericana recibi\u00f3 una petici\u00f3n presentada por el Centro para Acci\u00f3n Legal en Derechos Humanos CALDH en adelante los peticionarios en representaci\u00f3n de extrabajadores del Organismo Judicial. La petici\u00f3n se\u00f1ala que el Estado de Guatemala en adelante el Estado Guatemala o el ", - "values": [ - "Comisi\u00f3n Interamericana de Derechos Humanos" - ] - }, - { - "text": "I. INTRODUCCI\u00d3N El de septiembre de la Comisi\u00f3n Interamericana de Derechos Humanos en adelante la Comisi\u00f3n Interamericana la Comisi\u00f3n o la CIDH recibi\u00f3 una petici\u00f3n presentada por el Centro para Acci\u00f3n Legal en Derechos Humanos CALDH en adelante la parte peticionaria en la cual se alega la responsabilidad internacional de la Rep\u00fablica de Guatemala en adelante el Estado el Estado guatemalteco o Guatemala en perjuicio de ex trabajadores del Organismo Judicial por su supuesta destituci\u00f3n del ", - "values": [ - "Comisi\u00f3n Interamericana de Derechos Humanos" - ] - }, - { - "text": "INFORME No. PETICI\u00d3N ADMISIBILIDAD DIGNA OCHOA Y OTROS M\u00c9XICO de julio de I. RESUMEN La Comisi\u00f3n Interamericana de Derechos Humanos en adelante Comisi\u00f3n Comisi\u00f3n Interamericana o CIDH recibi\u00f3 el de noviembre de una petici\u00f3n presentada por el Centro por la Justicia y el Derecho Internacional CEJIL y la Red Nacional de Organismos Civiles de Derechos Humanos Todos los Derechos para Todos y Todas en la cual alegaron la violaci\u00f3n de varios derechos contenidos en la Convenci\u00f3n Americana sobre", - "values": [ - "Comisi\u00f3n Interamericana de Derechos Humanos" - ] - }, - { - "text": "INFORME No. PETICI\u00d3N ADMISIBILIDAD SANDRA CECILIA PAVEZ PAVEZ CHILE DE JULIO DE I. RESUMEN El de octubre de la Comisi\u00f3n Interamericana de Derechos Humanos en adelante tambi\u00e9n la Comisi\u00f3n Interamericana la Comisi\u00f3n o la CIDH recibi\u00f3 una petici\u00f3n presentada por Sandra Cecilia Pavez Pavez en adelante la presunta v\u00edctima por Rolando Paul Jim\u00e9nez P\u00e9rez representante legal del Movimiento de Integraci\u00f3n y Liberaci\u00f3n Homosexual MOVILH y por Alfredo Morgado en adelante tambi\u00e9n los peticionarios ", - "values": [ - "Comisi\u00f3n Interamericana de Derechos Humanos" - ] - }, - { - "text": "RESOLUCI\u00d3N DE LA PRESIDENTA DE LA CORTE INTERAMERICANA DE DERECHOS HUMANOS DE DE OCTUBRE DE CASO GRIJALVA BUENO VS. ECUADOR VISTO El escrito de sometimiento del caso y el Informe de Fondo No. de la Comisi\u00f3n Interamericana de Derechos Humanos en adelante tambi\u00e9n la Comisi\u00f3n Interamericana o la Comisi\u00f3n y el escrito de contestaci\u00f3n al sometimiento del caso en adelante escrito de contestaci\u00f3n de la Rep\u00fablica de Ecuador en adelante tambi\u00e9n Ecuador o el Estado y la documentaci\u00f3n anexa a esos ", - "values": [ - "Corte Interamericana de Derechos Humanos" - ] - }, - { - "text": "RESOLUCI\u00d3N DE LA PRESIDENTA DE LA CORTE INTERAMERICANA DE DERECHOS HUMANOS DE DE OCTUBRE DE CASO GUERRERO MOLINA Y OTROS VS. VENEZUELA VISTO El escrito de sometimiento del caso y el Informe de Fondo No. de la Comisi\u00f3n Interamericana de Derechos Humanos en adelante tambi\u00e9n la Comisi\u00f3n Interamericana o la Comisi\u00f3n el escrito de solicitudes argumentos y pruebas en adelante escrito de solicitudes y argumentos presentado por los representantes de las presuntas v\u00edctimas en adelante tambi\u00e9n los ", - "values": [ - "Corte Interamericana de Derechos Humanos" - ] - }, - { - "text": "RESOLUCI\u00d3N DE LA PRESIDENTA DE LA CORTE INTERAMERICANA DE DERECHOS HUMANOS DE DE OCTUBRE DE CASO GUACHAL\u00c1 CHIMB\u00d3 Y OTROS VS. ECUADOR VISTO El escrito de sometimiento del caso y el Informe de Fondo de la Comisi\u00f3n Interamericana de Derechos Humanos en adelante la Comisi\u00f3n Interamericana o la Comisi\u00f3n el escrito de solicitudes argumentos y pruebas en adelante el escrito de solicitudes y argumentos de los representantes de las presuntas v\u00edctimas en adelante los representantes y el escrito de al", - "values": [ - "Corte Interamericana de Derechos Humanos" - ] - }, - { - "text": "RESOLUCI\u00d3N DE LA CORTE INTERAMERICANA DE DERECHOS HUMANOS DE DE OCTUBRE DE CASO GALINDO C\u00c1RDENAS Y OTROS VS. PER\u00da SUPERVISI\u00d3N DE CUMPLIMIENTO DE SENTENCIA VISTO La Sentencia de excepciones preliminares fondo reparaciones y costas en adelante la Sentencia dictada por la Corte Interamericana de Derechos Humanos en adelante la Corte Interamericana la Corte o el Tribunal el de octubre de En la Sentencia se tuvo por probado que en octubre de el se\u00f1or Galindo fue privado de su libertad en el ", - "values": [ - "Corte Interamericana de Derechos Humanos" - ] - }, - { - "text": "CORTE INTERAMERICANA DE DERECHOS HUMANOS CASO ASOCIACI\u00d3N NACIONAL DE CESANTES Y JUBILADOS DE LA SUPERINTENDENCIA NACIONAL DE ADMINISTRACI\u00d3N TRIBUTARIA ANCEJUBSUNAT VS. PER\u00da SENTENCIA DE DE OCTUBRE DE Interpretaci\u00f3n de la Sentencia de Excepciones Preliminares Fondo Reparaciones y Costas En el caso ANCEJUBSUNAT Vs. Per\u00fa la Corte Interamericana de Derechos Humanos en adelante la Corte Interamericana la Corte o el Tribunal o este Tribunal integrada por los siguientes Jueces Patricio Pazmi\u00f1o ", - "values": [ - "Corte Interamericana de Derechos Humanos" - ] - }, - { - "text": "CORTE INTERAMERICANA DE DERECHOS HUMANOS RESOLUCI\u00d3N DE LA CORTE INTERAMERICANA DE DERECHOS HUMANOS DE DE OCTUBRE DE MEDIDAS PROVISIONALES RESPECTO DE LA REP\u00daBLICA DE COLOMBIA ASUNTO ALMANZA SU\u00c1REZ VISTO Las Resoluciones de la Presidencia de la Corte Interamericana de Derechos Humanos en el Asunto \u00c1lvarez y otros respecto de Colombia luego denominado Asunto Almanza Su\u00e1rez respecto de Colombia de de julio de agosto y de diciembre de de mayo y de agosto de y de julio de Las de la ", - "values": [ - "Corte Interamericana de Derechos Humanos" - ] - }, - { - "text": "RESOLUCI\u00d3N DE LA CORTE INTERAMERICANA DE DERECHOS HUMANOS DE DE SEPTIEMBRE DE SOLICITUD DE MEDIDAS PROVISIONALES Y SUPERVISI\u00d3N DE CUMPLIMIENTO DE SENTENCIA CASO RUIZ FUENTES Y OTRA VS. GUATEMALA VISTO La Sentencia de excepci\u00f3n preliminar fondo reparaciones y costas en adelante la Sentencia dictada por la Corte Interamericana de Derechos Humanos en adelante la Corte Interamericana la Corte o el Tribunal el de octubre de En dicha Sentencia la Corte declar\u00f3 internacionalmente responsable a ", - "values": [ - "Corte Interamericana de Derechos Humanos" - ] - }, - { - "text": "RESOLUCI\u00d3N DE LA CORTE INTERAMERICANA DE DERECHOS HUMANOS DE SEPTIEMBRE DE CASO LUNA L\u00d3PEZ Y OTROS VS. HONDURAS SUPERVISI\u00d3N DE CUMPLIMIENTO DE SENTENCIA VISTO La Sentencia de fondo reparaciones y costas en adelante la Sentencia o el Fallo dictada por la Corte Interamericana de Derechos Humanos en adelante la Corte Interamericana la Corte o el Tribunal el de octubre de en el caso Luna L\u00f3pez Vs. Honduras. En dicha Sentencia se estableci\u00f3 que el de mayo de el se\u00f1or Carlos Luna L\u00f3pez de ", - "values": [ - "Corte Interamericana de Derechos Humanos" - ] - }, - { - "text": "RESOLUCI\u00d3N DE LA CORTE INTERAMERICANA DE DERECHOS HUMANOS DE DE SEPTIEMBRE DE CASO VILLAMIZAR DUR\u00c1N Y OTROS VS. COLOMBIA SUPERVISI\u00d3N DE CUMPLIMIENTO DE SENTENCIA VISTO La Sentencia de excepci\u00f3n preliminar fondo reparaciones y costas en adelante la Sentencia dictada por la Corte Interamericana de Derechos Humanos en adelante la Corte la Corte Interamericana o el Tribunal el de noviembre de En dicha Sentencia la Corte declar\u00f3 internacionalmente responsable a la Rep\u00fablica de Colombia en el ", - "values": [ - "Corte Interamericana de Derechos Humanos" - ] - }, - { - "text": "RESOLUCI\u00d3N DE LA CORTE INTERAMERICANA DE DERECHOS HUMANOS DE DE SEPTIEMBRE DE CASO TENORIO ROCA Y OTROS VS. PER\u00da SUPERVISI\u00d3N DE CUMPLIMIENTO DE SENTENCIA VISTO La Sentencia de excepciones preliminares fondo reparaciones y costas en adelante la Sentencia dictada por la Corte Interamericana de Derechos Humanos en adelante la Corte Interamericana la Corte o el Tribunal el de junio de En dicha Sentencia la Corte declar\u00f3 la responsabilidad internacional de la Rep\u00fablica del Per\u00fa en adelante el ", - "values": [ - "Corte Interamericana de Derechos Humanos" - ] - }, - { - "text": "CORTE INTERAMERICANA DE DERECHOS HUMANOS CASO FERN\u00c1NDEZ PRIETO Y TUMBEIRO VS. ARGENTINA SENTENCIA DE DE SEPTIEMBRE DE Fondo y Reparaciones En el caso Fern\u00e1ndez Prieto y Tumbeiro Vs. Argentina la Corte Interamericana de Derechos Humanos en adelante la Corte Interamericana la Corte o este Tribunal integrada por los siguientes jueces Elizabeth Odio Benito Presidenta L. Patricio Pazmi\u00f1o Freire Vicepresidente Eduardo Vio Grossi Juez Humberto Antonio Sierra Porto Juez Eduardo Ferrer MacGregor Juez", - "values": [ - "Corte Interamericana de Derechos Humanos" - ] - }, - { - "text": "CORTE INTERAMERICANA DE DERECHOS HUMANOS CASO ACOSTA MART\u00cdNEZ Y OTROS VS. ARGENTINA SENTENCIA DE DE AGOSTO DE Fondo Reparaciones y Costas En el caso Acosta Mart\u00ednez y otros Vs. Argentina la Corte Interamericana de Derechos Humanos en adelante la Corte Interamericana la Corte o el Tribunal integrada por los siguientes jueces Elizabeth Odio Benito Presidenta Patricio Pazmi\u00f1o Freire Vicepresidente Eduardo Vio Grossi Juez Humberto Antonio Sierra Porto Juez Eduardo Ferrer MacGregor Poisot Juez y ", - "values": [ - "Corte Interamericana de Derechos Humanos" - ] - }, - { - "text": "RESOLUCI\u00d3N DE LA CORTE INTERAMERICANA DE DERECHOS HUMANOS DE DE JULIO DE CASO ZEGARRA MAR\u00cdN VS. PER\u00da SUPERVISI\u00d3N DE CUMPLIMIENTO DE SENTENCIA VISTO La Sentencia de excepciones preliminares fondo reparaciones y costas en adelante la Sentencia dictada por la Corte Interamericana de Derechos Humanos en adelante la Corte Interamericana la Corte o el Tribunal el de febrero de En dicha Sentencia la Corte declar\u00f3 internacionalmente responsable a la Rep\u00fablica del Per\u00fa en adelante el Estado o Per\u00fa", - "values": [ - "Corte Interamericana de Derechos Humanos" - ] - }, - { - "text": "RESOLUCI\u00d3N DE LA CORTE INTERAMERICANA DE DERECHOS HUMANOS DE DE JULIO DE CASO MUN\u00c1RRIZ ESCOBAR Y OTROS VS. PER\u00da SUPERVISI\u00d3N DE CUMPLIMIENTO DE SENTENCIA VISTO La Sentencia de excepci\u00f3n preliminar fondo reparaciones y costas en adelante la Sentencia dictada por la Corte Interamericana de Derechos Humanos en adelante la Corte Interamericana la Corte o el Tribunal el de agosto de La Corte declar\u00f3 la responsabilidad internacional de la Rep\u00fablica del Per\u00fa en adelante el Estado o el Per\u00fa por la ", - "values": [ - "Corte Interamericana de Derechos Humanos" - ] - }, - { - "text": "VOTO PARCIALMENTE DISIDENTE DEL JUEZ HUMBERTO ANTONIO SIERRA PORTO CASO EMPLEADOS DE LA F\u00c1BRICA DE FUEGOS EN SANTO ANT\u00d4NIO DE JESUS Y SUS FAMILIARES VS. BRASIL SENTENCIA DE DE JULIO DE Excepciones Preliminares Fondo Reparaciones y Costas Con el reiterado respeto por las decisiones de la Corte Interamericana de Derechos Humanos en adelante la Corte o el Tribunal y aunque comparto la mayor parte de las consideraciones que respaldan la Sentencia adoptada me permito formular el presente voto ", - "values": [ - "Corte Interamericana de Derechos Humanos" - ] - }, - { - "text": "VOTO RAZONADO DEL JUEZ EDUARDO FERRER MACGREGOR POISOT CASO EMPLEADOS DE LA F\u00c1BRICA DE FUEGOS EN SANTO ANT\u00d4NIO DE JESUS Y SUS FAMILIARES VS. BRASIL SENTENCIA DE DE JULIO DE Excepci\u00f3n Preliminar Fondo Reparaciones y Costas INTRODUCCI\u00d3N EMPRESA Y DERECHOS HUMANOS DERECHO AL TRABAJO POBREZA DISCRIMINACI\u00d3N ESTRUCTURAL INTERSECCIONAL E IGUALDAD MATERIAL Puede el Estado ser responsable internacionalmente por la violaci\u00f3n de derechos humanos ocasionada por actos cometidos por una empresa privada ", - "values": [ - "Corte Interamericana de Derechos Humanos" - ] - }, - { - "text": "VOTO CONCURRENTE JUEZ L. PATRICIO PAZMI\u00d1O FREIRE CASO EMPLEADOS DE LA F\u00c1BRICA DE FUEGOS EN SANTO ANT\u00d4NIO DE JESUS Y SUS FAMILIARES VS. BRASIL SENTENCIA DE DE JULIO DE I. Introducci\u00f3n La sentencia del caso Empleados de la F\u00e1brica de Fuegos en Santo Ant\u00f4nio de Jesus y sus Familiares Vs. Brasil en adelante la Sentencia reconoci\u00f3 la pobreza estructural en que viv\u00edan las v\u00edctimas fallecidas y las sobrevivientes de la explosi\u00f3n de la f\u00e1brica de fuegos artificiales ocurrida el de diciembre de ", - "values": [ - "Corte Interamericana de Derechos Humanos" - ] - }, - { - "text": "VOTO CONCURRENTE DEL JUEZ RICARDO C. P\u00c9REZ MANRIQUE CASO EMPLEADOS DE LA F\u00c1BRICA DE FUEGOS EN SANTO ANT\u00d4NIO DE JESUS Y SUS FAMILIARES VS. BRASIL SENTENCIA DE DE JULIO DE Excepciones Preliminares Fondo Reparaciones y Costas I. Introducci\u00f3n En la sentencia se declara entre otras la violaci\u00f3n de los art\u00edculos y de la Convenci\u00f3n Americana sobre Derechos Humanos en adelante la Convenci\u00f3n por haberse acreditado una situaci\u00f3n de discriminaci\u00f3n interseccional y estructural que vulner\u00f3 derechos ", - "values": [ - "Corte Interamericana de Derechos Humanos" - ] - }, - { - "text": "VOTO PARCIALMENTE DISIDENTE DEL JUEZ EDUARDO VIO GROSSI CORTE INTERAMERICANA DE DERECHOS HUMANOS CASO EMPLEADOS DE LA F\u00c1BRICA DE FUEGOS EN SANTO ANT\u00d4NIO DE JESUS Y SUS FAMILIARES VS. BRASIL SENTENCIA DE DE JULIO DE Excepciones Preliminares Fondo Reparaciones y Costas. I. INTRODUCCI\u00d3N. Se expide el presente voto parcialmente disidente con relaci\u00f3n a la Sentencia del r\u00f3tulo a los efectos de dar cuenta de las razones por las que se discrepa por de pronto de lo dispuesto en los Resolutivos N ", - "values": [ - "Corte Interamericana de Derechos Humanos" - ] - }, - { - "text": "CORTE INTERAMERICANA DE DERECHOS HUMANOS CASO EMPLEADOS DE LA F\u00c1BRICA DE FUEGOS EN SANTO ANT\u00d4NIO DE JESUS Y SUS FAMILIARES VS. BRASIL SENTENCIA DE DE JULIO DE Excepciones Preliminares Fondo Reparaciones y Costas En el Caso Empleados de la F\u00e1brica de Fuegos en Santo Ant\u00f4nio de Jesus y sus familiares Vs. Brasil la Corte Interamericana de Derechos Humanos en adelante la Corte Interamericana la Corte o este Tribunal integrada por los siguientes jueces Elizabeth Odio Benito Presidenta L. Patricio ", - "values": [ - "Corte Interamericana de Derechos Humanos" - ] - }, - { - "text": "INFORME No. CASO INFORME DE FONDO EMILIO PALACIO URRUTIA Y OTROS ECUADOR DE MARZO DE I. RESUMEN El de octubre de la Comisi\u00f3n Interamericana de Derechos Humanos en adelante la Comisi\u00f3n o la CIDH recibi\u00f3 una petici\u00f3n mediante la cual se alega la responsabilidad internacional de la Rep\u00fablica de Ecuador en adelante el Estado o Ecuador por la presunta violaci\u00f3n de los art\u00edculos libertad personal garant\u00edas judiciales libertad de pensamiento y expresi\u00f3n y propiedad privada de la Convenci\u00f3n ", - "values": [ - "Comisi\u00f3n Interamericana de Derechos Humanos" - ] - }, - { - "text": " de octubre de REF Caso N\u00ba Emilio Palacio Urrutia y otros Ecuador Se\u00f1or Secretario Tengo el agrado de dirigirme a usted en nombre de la Comisi\u00f3n Interamericana de Derechos Humanos con el objeto de presentar ante la Honorable Corte Interamericana de Derechos Humanos el caso N\u00ba Emilio Palacio Urrutia y otros respecto de la Rep\u00fablica del Ecuador en adelante el Estado el Estado ecuatoriano o Ecuador relacionado con una serie de violaciones de derechos humanos derivadas del proceso penal por el", - "values": [ - "Comisi\u00f3n Interamericana de Derechos Humanos" - ] - }, - { - "text": "INFORME No. PETICI\u00d3N ADMISIBILIDAD EMILIO PALACIO URRUTIA Y OTROS Diario El Universo ECUADOR DE OCTUBRE DE I. RESUMEN El de octubre de la Comisi\u00f3n Interamericana de Derechos Humanos en adelante la Comisi\u00f3n o la CIDH recibi\u00f3 una petici\u00f3n mediante la cual se alega la responsabilidad internacional de la Rep\u00fablica de Ecuador en adelante el Estado o Ecuador por la presunta violaci\u00f3n de los art\u00edculos libertad personal garant\u00edas judiciales libertad de pensamiento y expresi\u00f3n y propiedad de", - "values": [ - "Comisi\u00f3n Interamericana de Derechos Humanos" - ] - }, - { - "text": " de agosto de REF Caso N\u00ba Julio Casa Nina Per\u00fa Se\u00f1or Secretario Tengo el agrado de dirigirme a usted en nombre de la Comisi\u00f3n Interamericana de Derechos Humanos con el objeto de someter a la jurisdicci\u00f3n de la Honorable Corte Interamericana de Derechos Humanos el Caso N\u00ba Julio Casa Nina respecto de la Rep\u00fablica de Per\u00fa en adelante el Estado el Estado peruano o Per\u00fa. El presente caso se refiere a una serie de violaciones en el marco del proceso disciplinario que culmin\u00f3 con la separaci\u00f3n de ", - "values": [ - "Comisi\u00f3n Interamericana de Derechos Humanos" - ] - }, - { - "text": "INFORME No. PETICI\u00d3N INFORME DE ADMISIBILIDAD JULIO CASA NINA PER\u00da DE AGOSTO DE I. RESUMEN El de febrero de la Comisi\u00f3n Interamericana de Derechos Humanos en adelante la Comisi\u00f3n o la CIDH recibi\u00f3 una petici\u00f3n presentada por Julio Casa Nina en adelante tambi\u00e9n el peticionario o la presunta v\u00edctima en la cual se alega la violaci\u00f3n por parte de la Rep\u00fablica del Per\u00fa en adelante el Estado o el Estado peruano de los art\u00edculos garant\u00edas judiciales principio de legalidad y retroactividad ", - "values": [ - "Comisi\u00f3n Interamericana de Derechos Humanos" - ] - }, - { - "text": "INFORME No. CASO FONDO JULIO CASA NINA PER\u00da DE OCTUBRE DE I. RESUMEN El de febrero de la Comisi\u00f3n Interamericana de Derechos Humanos en adelante la Comisi\u00f3n Interamericana la Comisi\u00f3n o la CIDH recibi\u00f3 una petici\u00f3n presentada por Julio Casa Nina en adelante la parte peticionaria en la cual se alega la responsabilidad internacional de la Rep\u00fablica del Per\u00fa en adelante el Estado peruano el Estado o Per\u00fa en perjuicio de Julio Casa Nina. La Comisi\u00f3n aprob\u00f3 el informe de admisibilidad No. ", - "values": [ - "Comisi\u00f3n Interamericana de Derechos Humanos" - ] - }, - { - "text": " de agosto de REF Caso N\u00ba H\u00e9ctor Fidel Cordero Bernal y otros Per\u00fa Se\u00f1or Secretario Tengo el agrado de dirigirme a usted en nombre de la Comisi\u00f3n Interamericana de Derechos Humanos con el objeto de someter a la jurisdicci\u00f3n de la Honorable Corte Interamericana de Derechos Humanos el Caso N\u00ba H\u00e9ctor Fidel Cordero Bernal y otros respecto de la Rep\u00fablica de Per\u00fa en adelante el Estado el Estado peruano o Per\u00fa. El presente caso se refiere a una serie de violaciones en el marco del proceso que ", - "values": [ - "Comisi\u00f3n Interamericana de Derechos Humanos" - ] - }, - { - "text": "INFORME No. PETICI\u00d3N ADMISIBILIDAD H\u00c9CTOR FIDEL CORDERO BERNAL PER\u00da de julio de I. RESUMEN El de noviembre de la Comisi\u00f3n Interamericana de Derechos Humanos en adelante la Comisi\u00f3n Interamericana la Comisi\u00f3n o la CIDH recibi\u00f3 una petici\u00f3n presentada en nombre propio por H\u00e9ctor Fidel Cordero Bernal en adelante tambi\u00e9n el peticionario o la presunta v\u00edctima en la que se aleg\u00f3 la violaci\u00f3n por parte de la Rep\u00fablica del Per\u00fa en adelante Per\u00fa el Estado o el Estado peruano a derechos en la ", - "values": [ - "Comisi\u00f3n Interamericana de Derechos Humanos" - ] - }, - { - "text": "INFORME No. CASO FONDO H\u00c9CTOR FIDEL CORDERO BERNAL PER\u00da DE OCTUBRE DE I. RESUMEN El de noviembre de la Comisi\u00f3n Interamericana de Derechos Humanos en adelante la Comisi\u00f3n Interamericana la Comisi\u00f3n o la CIDH recibi\u00f3 una petici\u00f3n presentada por H\u00e9ctor Fidel Cordero Bernal en adelante la parte peticionaria en la cual alega la responsabilidad internacional de la Rep\u00fablica del Per\u00fa en adelante el Estado peruano el Estado o Per\u00fa en su perjuicio. La Comisi\u00f3n aprob\u00f3 el Informe de Admisibilidad", - "values": [ - "Comisi\u00f3n Interamericana de Derechos Humanos" - ] - }, - { - "text": "INFORME No. PETICI\u00d3N Y OTROS MAGISTRADOS NO RATIFICADOS POR EL CNM ADMISIBILIDAD PER\u00da DE MARZO DE I. RESUMEN El presente informe se refiere a peticiones presentadas entre los a\u00f1os y por jueces y fiscales en adelante tambi\u00e9n las presuntas v\u00edctimas que habr\u00edan sido cesados en sus cargos por el Consejo Nacional de la Magistratura del Per\u00fa en adelante CNM en el marco del proceso de evaluaci\u00f3n y ratificaci\u00f3n de jueces y fiscales que establece la Constituci\u00f3n. En l\u00edneas generales las que ", - "values": [ - "Comisi\u00f3n Interamericana de Derechos Humanos" - ] - }, - { - "text": " de agosto de REF Caso N\u00ba Jorge Luis Cuya Lavy y otros Per\u00fa Se\u00f1or Secretario Tengo el agrado de dirigirme a usted en nombre de la Comisi\u00f3n Interamericana de Derechos Humanos con el objeto de someter a la jurisdicci\u00f3n de la Honorable Corte Interamericana de Derechos Humanos el Caso N\u00ba Jorge Luis Cuya Lavy y otros respecto de la Rep\u00fablica de Per\u00fa en adelante el Estado el Estado peruano o Per\u00fa. El presente caso se relaciona con una serie de violaciones en el marco del proceso de evaluaci\u00f3n y ", - "values": [ - "Comisi\u00f3n Interamericana de Derechos Humanos" - ] - }, - { - "text": "INFORME No. CASO FONDO JORGE LUIS CUYA LAVY Y OTROS PERU DE DICIEMBRE DE I. RESUMEN Entre los a\u00f1os y la Comisi\u00f3n Interamericana de Derechos Humanos en adelante la Comisi\u00f3n Interamericana la Comisi\u00f3n o la CIDH recibi\u00f3 cuatro peticiones presentadas por Jorge Luis Cuya Lavy Jean Aubert D\u00edaz Alvarado Marta Silvana Rodr\u00edguez Ricse y Walter Antonio Valenzuela Cerna en adelante la parte peticionaria en las cuales alegan la responsabilidad internacional de la Rep\u00fablica del Per\u00fa en adelante el ", - "values": [ - "Comisi\u00f3n Interamericana de Derechos Humanos" - ] - }, - { - "text": " de julio de REF Caso N\u00ba Federaci\u00f3n Nacional de Trabajadores Mar\u00edtimos y Portuarios FEMAPOR Per\u00fa Se\u00f1or Secretario Tengo el agrado de dirigirme a usted en nombre de la Comisi\u00f3n Interamericana de Derechos Humanos con el objeto de someter a la jurisdicci\u00f3n de la Honorable Corte Interamericana de Derechos Humanos el Caso N\u00ba Federaci\u00f3n Nacional de Trabajadores Mar\u00edtimos y Portuarios FEMAPOR respecto de la Rep\u00fablica de Per\u00fa en adelante el Estado el Estado peruano o Per\u00fa. El presente caso se con", - "values": [ - "Comisi\u00f3n Interamericana de Derechos Humanos" - ] - }, - { - "text": "INFORME N\u00ba CASO FEDERACI\u00d3N NACIONAL DE TRABAJADORES MAR\u00cdTIMOS Y PORTUARIOS DEL PER\u00da FEMAPOR F\u00c9LIX CAMPOS CAIPO SERGIO VALDIVIA AYALA ASISCLO CHINAPRO FERN\u00c1NDEZ V\u00cdCTOR BRICE\u00d1O MIRANDA Y OTROS TRABAJADORES MAR\u00cdTIMOS Y FLUVIALES PER\u00da de octubre de I. RESUMEN El de noviembre de la Comisi\u00f3n Interamericana de Derechos Humanos en adelante Comisi\u00f3n Interamericana Comisi\u00f3n o CIDH recibi\u00f3 una petici\u00f3n presentada por la Federaci\u00f3n Nacional de Trabajadores Mar\u00edtimos y Portuarios del Per\u00fa FEMAPOR en", - "values": [ - "Comisi\u00f3n Interamericana de Derechos Humanos" - ] - }, - { - "text": "INFORME No. CASO FONDO FEMAPOR PER\u00da DE MAYO DE I. RESUMEN El de noviembre de la Comisi\u00f3n Interamericana de Derechos Humanos en adelante la Comisi\u00f3n Interamericana la Comisi\u00f3n o la CIDH recibi\u00f3 una petici\u00f3n presentada por la Federaci\u00f3n Nacional de Trabajadores Mar\u00edtimos y Portuarios del Per\u00fa en adelante la FEMAPOR en nombre de extrabajadores mar\u00edtimos y portuarios del Per\u00fa y sus familiares. La parte peticionaria aleg\u00f3 la responsabilidad internacional de la Rep\u00fablica del Per\u00fa en adelante", - "values": [ - "Comisi\u00f3n Interamericana de Derechos Humanos" - ] - }, - { - "text": " de julio de Ref Caso No. C\u00e9sar Gustavo Garz\u00f3n Guzm\u00e1n Ecuador Se\u00f1or Secretario Tengo el agrado de dirigirme a usted en nombre de la Comisi\u00f3n Interamericana de Derechos Humanos con el objeto de someter a la jurisdicci\u00f3n de la Honorable Corte Interamericana de Derechos Humanos el Caso N\u00ba C\u00e9sar Gustavo Garz\u00f3n Guzm\u00e1n y otros respecto de la Rep\u00fablica del Ecuador en adelante el Estado el Estado ecuatoriano o Ecuador. El presente caso se relaciona con la desaparici\u00f3n forzada de C\u00e9sar Gustavo el", - "values": [ - "Comisi\u00f3n Interamericana de Derechos Humanos" - ] - }, - { - "text": "INFORME No. PETICI\u00d3N ADMISIBILIDAD C\u00c9SAR GUSTAVO GARZ\u00d3N GUZM\u00c1N ECUADOR de julio de I. RESUMEN El de noviembre de la Comisi\u00f3n Interamericana de Derechos Humanos en adelante la Comisi\u00f3n recibi\u00f3 una petici\u00f3n presentada por la Comisi\u00f3n Ecum\u00e9nica de Derechos Humanos CEDHU en adelante los peticionarios en la cual se alega la responsabilidad de la Rep\u00fablica del Ecuador por la desaparici\u00f3n de C\u00e9sar Gustavo Garz\u00f3n Guzm\u00e1n el de noviembre de en la ciudad de Quito Rep\u00fablica del Ecuador y la falta ", - "values": [ - "Comisi\u00f3n Interamericana de Derechos Humanos" - ] - }, - { - "text": "INFORME No. CASO INFORME DE FONDO C\u00c9SAR GUSTAVO GARZ\u00d3N GUZM\u00c1N ECUADOR DE MARZO DE I. RESUMEN El de noviembre de la Comisi\u00f3n recibi\u00f3 una petici\u00f3n presentada por la Comisi\u00f3n Ecum\u00e9nica de Derechos Humanos CEDHU en adelante los peticionarios en la cual se aleg\u00f3 la responsabilidad internacional de la Rep\u00fablica de Ecuador en adelante el Estado de Ecuador el Estado ecuatoriano o Ecuador por la desaparici\u00f3n forzada de C\u00e9sar Gustavo Garz\u00f3n Guzm\u00e1n por parte de agentes estatales el de noviembre de", - "values": [ - "Comisi\u00f3n Interamericana de Derechos Humanos" - ] - }, - { - "text": " de julio de REF Caso No. Vicente An\u00edbal Grijalva Bueno Ecuador Se\u00f1or Secretario Tengo el agrado de dirigirme a usted en nombre de la Comisi\u00f3n Interamericana de Derechos Humanos con el objeto de someter a la jurisdicci\u00f3n de la Honorable Corte Interamericana de Derechos Humanos el Caso No. Vicente An\u00edbal Grijalva Bueno respecto de la Rep\u00fablica del Ecuador en adelante el Estado el Estado ecuatoriano o Ecuador. El presente caso se relaciona con la destituci\u00f3n arbitraria de Vicente An\u00edbal ", - "values": [ - "Comisi\u00f3n Interamericana de Derechos Humanos" - ] - }, - { - "text": "INFORME N\u00ba ADMISIBILIDAD PETICI\u00d3N VICENTE AN\u00cdBAL GRIJALVA BUENO ECUADOR de octubre de I. RESUMEN El de septiembre de la Comisi\u00f3n Interamericana de Derechos Humanos en adelante la Comisi\u00f3n recibi\u00f3 una denuncia presentada por el Dr. Francisco L\u00f3pez Berm\u00fadez Director de la Auditor\u00eda Democr\u00e1tica Andina una organizaci\u00f3n no gubernamental ecuatoriana a favor de Vicente An\u00edbal Grijalva Bueno en adelante el peticionario contra la Rep\u00fablica del Ecuador en adelante Ecuador o el Estado en la cual ", - "values": [ - "Comisi\u00f3n Interamericana de Derechos Humanos" - ] - }, - { - "text": "INFORME No. CASO FONDO VICENTE AN\u00cdBAL GRIJALVA BUENO ECUADOR DE DICIEMBRE DE I. RESUMEN El de septiembre de la Comisi\u00f3n Interamericana de Derechos Humanos en adelante la Comisi\u00f3n Interamericana la Comisi\u00f3n o la CIDH recibi\u00f3 una petici\u00f3n presentada por la Auditor\u00eda Democr\u00e1tica Andina en adelante la parte peticionaria en la cual se alega la responsabilidad internacional de la Rep\u00fablica del Ecuador en adelante el Estado ecuatoriano el Estado o Ecuador en perjuicio de Vicente An\u00edbal Grijalva", - "values": [ - "Comisi\u00f3n Interamericana de Derechos Humanos" - ] - }, - { - "text": " de julio de REF Caso N\u00ba Marcia Barbosa de Souza y sus familiares Brasil Se\u00f1or Secretario Tengo el agrado de dirigirme a usted en nombre de la Comisi\u00f3n Interamericana de Derechos Humanos con el objeto de someter a la jurisdicci\u00f3n de la Honorable Corte Interamericana de Derechos Humanos el Caso N\u00ba Marcia Barbosa de Souza y sus familiares respecto de la Rep\u00fablica Federativa de Brasil en adelante el Estado el Estado brasilero o Brasil. El caso se relaciona con la muerte de M\u00e1rcia Barbosa de ", - "values": [ - "Comisi\u00f3n Interamericana de Derechos Humanos" - ] - }, - { - "text": "INFORME N\u00ba PETICI\u00d3N ADMISIBILIDAD MARCIA BARBOSA DE SOUZA BRASIL de julio de I. RESUMEN El de marzo de la Comisi\u00f3n Interamericana de Derechos Humanos en adelante la Comisi\u00f3n o CIDH recibi\u00f3 una petici\u00f3n presentada por el Centro por la Justicia y el Derecho Internacional CEJIL el Movimiento Nacional de los Derechos Humanos MNDH Regional Nordeste en adelante los peticionarios siendo la informaci\u00f3n actualizada el de octubre de en la cual se alega la violaci\u00f3n por parte de la Rep\u00fablica ", - "values": [ - "Comisi\u00f3n Interamericana de Derechos Humanos" - ] - }, - { - "text": "RELAT\u00d3RIO N\u00ba CASO RELAT\u00d3RIO DE M\u00c9RITO M\u00c1RCIA BARBOSA DE SOUZA E FAMILIARES BRASIL DE FEVEREIRO DE I. INTRODU\u00c7\u00c3O Em de mar\u00e7o de a Comiss\u00e3o Interamericana de Direitos Humanos doravante Comiss\u00e3o Comiss\u00e3o Interamericana ou CIDH recebeu uma peti\u00e7\u00e3o apresentada pelo Centro pela Justi\u00e7a e o Direito Internacional CEJIL e o Movimento Nacional de Direitos Humanos MNDH Regional Nordeste doravante parte peticion\u00e1ria na qual se alega a responsabilidade internacional da Rep\u00fablica Federativa do Brasil", - "values": [ - "Comisi\u00f3n Interamericana de Derechos Humanos" - ] - }, - { - "text": " de agosto de REF Caso No. Olimpiades Gonz\u00e1lez y otros Venezuela Se\u00f1or Secretario Tengo el agrado de dirigirme a usted en nombre de la Comisi\u00f3n Interamericana de Derechos Humanos con el objeto de someter a la jurisdicci\u00f3n de la Honorable Corte Interamericana de Derechos Humanos el Caso No. Olimpiades Gonz\u00e1lez y otros respecto de la Rep\u00fablica Bolivariana de Venezuela en adelante en adelante el Estado venezolano el Estado o Venezuela. El presente caso se relaciona con la detenci\u00f3n ilegal y ", - "values": [ - "Comisi\u00f3n Interamericana de Derechos Humanos" - ] - }, - { - "text": "INFORME No. PETICI\u00d3N ADMISIBILIDAD MAR\u00cdA ANG\u00c9LICA GONZ\u00c1LES OLIMP\u00cdADES GONZ\u00c1LES Y FAMILIA VENEZUELA de octubre de I. RESUMEN El de enero de la Comisi\u00f3n Interamericana de Derechos Humanos en adelante la Comisi\u00f3n Interamericana o la Comisi\u00f3n recibi\u00f3 una denuncia presentada por Olimp\u00edades Gonz\u00e1les y Maria Ang\u00e9lica Gonz\u00e1les en adelante los peticionarios contra la Rep\u00fablica Bolivariana de Venezuela en adelante el Estado o Venezuela. En la petici\u00f3n se alega la falta de indemnizaci\u00f3n por la ", - "values": [ - "Comisi\u00f3n Interamericana de Derechos Humanos" - ] - }, - { - "text": "INFORME No. CASO FONDO OLIMPIADES GONZ\u00c1LEZ Y OTROS VENEZUELA DE OCTUBRE DE I. RESUMEN El de enero de la Comisi\u00f3n Interamericana de Derechos Humanos en adelante la Comisi\u00f3n Interamericana la Comisi\u00f3n o la CIDH recibi\u00f3 una petici\u00f3n presentada por Olimpiades Gonz\u00e1les y Mar\u00eda Ang\u00e9lica Gonz\u00e1les en adelante la parte peticionaria en la cual se alega la responsabilidad internacional de la Rep\u00fablica Bolivariana de Venezuela en adelante el Estado venezolano el Estado o Venezuela en perjuicio de ", - "values": [ - "Comisi\u00f3n Interamericana de Derechos Humanos" - ] - }, - { - "text": " de mayo de REF Caso N\u00ba Opario Lemoth Morris y Otros Buzos Miskito Honduras Se\u00f1or Secretario Tengo el agrado de dirigirme a usted en nombre de la Comisi\u00f3n Interamericana de Derechos Humanos con el objeto de presentar ante la Honorable Corte Interamericana de Derechos Humanos el Caso N\u00ba Opario Lemoth Morris y Otros Buzos Miskitos respecto de la Rep\u00fablica de Honduras en adelante el Estado el Estado hondure\u00f1o u Honduras. El presente caso se relaciona con la afectaci\u00f3n de m\u00faltiples derechos en ", - "values": [ - "Comisi\u00f3n Interamericana de Derechos Humanos" - ] - }, - { - "text": "INFORME No. PETICI\u00d3N ADMISIBILIDAD OPARIO LEMOTH MORRIS Y OTROS BUZOS MISKITOS HONDURAS de noviembre de I. RESUMEN El de noviembre de la Comisi\u00f3n Interamericana de Derechos Humanos en adelante la Comisi\u00f3n Interamericana la Comisi\u00f3n o la CIDH recibi\u00f3 una denuncia presentada por la Asociaci\u00f3n de Miskitos Hondure\u00f1os de Buzos Lisiados AMHBLI la Asociaci\u00f3n de Mujeres Miskitas Miskitu Indian Mairin Asla Takanka MIMAT y el Consejo de Ancianos Almuk Nani Asla Takanka respectivamente por Garc\u00eda", - "values": [ - "Comisi\u00f3n Interamericana de Derechos Humanos" - ] - }, - { - "text": "INFORME No. CASO INFORME DE FONDO OPARIO LEMOTH MORRIS Y OTROS BUZOS MISKITOS HONDURAS DE MAYO DE I. RESUMEN El de noviembre de la Comisi\u00f3n Interamericana de Derechos Humanos en adelante la Comisi\u00f3n o la CIDH recibi\u00f3 una petici\u00f3n presentada por Arqu\u00edmedes Garc\u00eda L\u00f3pez Cendela L\u00f3pez Milton y Bans L\u00f3pez Solaisa en adelante la parte peticionaria. Posteriormente se constituy\u00f3 el Centro por la Justicia y el Derecho Internacional CEJIL. En la petici\u00f3n se aleg\u00f3 la responsabilidad del Estado de ", - "values": [ - "Comisi\u00f3n Interamericana de Derechos Humanos" - ] - }, - { - "text": " de diciembre de REF Caso N\u00ba Profesores de Cha\u00f1aral y otras Municipalidades Chile Se\u00f1or Secretario Tengo el agrado de dirigirme a usted en nombre de la Comisi\u00f3n Interamericana de Derechos Humanos con el objeto de someter a la jurisdicci\u00f3n de la Honorable Corte Interamericana de Derechos Humanos el Caso N\u00ba Profesores de Cha\u00f1aral y otras Municipalidades respecto de la Rep\u00fablica de Chile en adelante el Estado el Estado chileno o Chile. El presente caso se relaciona con la vulneraci\u00f3n del a la", - "values": [ - "Comisi\u00f3n Interamericana de Derechos Humanos" - ] - }, - { - "text": "INFORME No. CASO FONDO PROFESORES DE CHA\u00d1ARAL Y OTRAS MUNICIPALIDADES CHILE DE FEBRERO DE I. INTRODUCCI\u00d3N El de noviembre de la Comisi\u00f3n Interamericana de Derechos Humanos en adelante la Comisi\u00f3n Interamericana la Comisi\u00f3n o la CIDH recibi\u00f3 una petici\u00f3n presentada por parte de dos estudios jur\u00eddicos EtcheberryRodr\u00edguez y Colombara Olmedo en adelante la parte peticionaria en comunicaciones de febrero de y diciembre de la parte peticionaria ampli\u00f3 su denuncia. En dichas comunicaciones", - "values": [ - "Comisi\u00f3n Interamericana de Derechos Humanos" - ] - }, - { - "text": "INFORME No. PETICI\u00d3N ADMISIBILIDAD PROFESORES DE CHA\u00d1ARAL CHILE de marzo de I. RESUMEN El presente informe se refiere a la admisibilidad de la petici\u00f3n abierta por la Comisi\u00f3n Interamericana de Derechos Humanos en lo sucesivo Comisi\u00f3n Interamericana Comisi\u00f3n o CIDH en virtud de la presentaci\u00f3n de una petici\u00f3n recibida el de noviembre de por parte de dos estudios jur\u00eddicos EtcheberryRodr\u00edguez y Colombara Olmedo a favor de profesores de la Municipalidad de Cha\u00f1aral en contra del Estado ", - "values": [ - "Comisi\u00f3n Interamericana de Derechos Humanos" - ] - }, - { - "text": " de septiembre de REF Caso N\u00ba Martina Rebeca Vera Rojas Chile Se\u00f1or Secretario Tengo el agrado de dirigirme a usted en nombre de la Comisi\u00f3n Interamericana de Derechos Humanos con el objeto de someter a la jurisdicci\u00f3n de la Honorable Corte Interamericana de Derechos Humanos el Caso N\u00ba Martina Rebeca Vera Rojas respecto de la Rep\u00fablica de Chile en adelante el Estado el Estado chileno o Chile. La Comisi\u00f3n encontr\u00f3 que el Estado permiti\u00f3 y judicialmente valid\u00f3 la decisi\u00f3n de la aseguradora de", - "values": [ - "Comisi\u00f3n Interamericana de Derechos Humanos" - ] - }, - { - "text": "INFORME No. CASO FONDO MARTINA REBECA VERA ROJAS CHILE DE OCTUBRE DE I. RESUMEN El de noviembre de la Comisi\u00f3n Interamericana de Derechos Humanos en adelante la Comisi\u00f3n Interamericana la Comisi\u00f3n o la CIDH recibi\u00f3 una petici\u00f3n presentada por Karinna Fern\u00e1ndez Neira Boris Paredes Bustos Carolina Andrea del Pilar Rojas Far\u00edas y Ramiro \u00c1lvaro Vera Luza en adelante la parte peticionaria en la cual se alega la responsabilidad internacional de la Rep\u00fablica de Chile en adelante el Estado el ", - "values": [ - "Comisi\u00f3n Interamericana de Derechos Humanos" - ] - }, - { - "text": "INFORME No. PETICI\u00d3N INFORME DE ADMISIBILIDAD MARTINA REBECA VERA ROJAS Y FAMILIA CHILE DE NOVIEMBRE DE I. RESUMEN El de noviembre de la Comisi\u00f3n Interamericana de Derechos Humanos en adelante la Comisi\u00f3n Interamericana la Comisi\u00f3n o la CIDH recibi\u00f3 una petici\u00f3n presentada por Karina Fern\u00e1ndez y Boris Paredes en adelante los peticionarios contra la Rep\u00fablica de Chile en adelante Chile o el Estado en representaci\u00f3n de la ni\u00f1a Martina Rebeca Vera Rojas de cinco a\u00f1os de edad en adelante la ", - "values": [ - "Comisi\u00f3n Interamericana de Derechos Humanos" - ] - }, - { - "text": " de septiembre de REF Caso Jorge Villarroel y otros Ecuador Se\u00f1or Secretario Tengo el agrado de dirigirme a usted en nombre de la Comisi\u00f3n Interamericana de Derechos Humanos con el objeto de someter a la jurisdicci\u00f3n de la Honorable Corte Interamericana de Derechos Humanos el Caso Jorge Villarroel y otros respecto de la Rep\u00fablica del Ecuador en adelante el Estado el Estado ecuatoriano o Ecuador relacionado con la detenci\u00f3n ilegal y arbitraria de los entonces oficiales de la Polic\u00eda Nacional", - "values": [ - "Comisi\u00f3n Interamericana de Derechos Humanos" - ] - }, - { - "text": "INFORME No. PETICI\u00d3N INFORME DE ADMISIBILIDAD JORGE VILLARROEL Y OTROS ECUADOR DE ENERO DE I. RESUMEN El de julio de la Comisi\u00f3n Interamericana de Derechos Humanos en adelante la Comisi\u00f3n o la CIDH recibi\u00f3 una petici\u00f3n a favor de los oficiales de la Polic\u00eda Nacional del Ecuador Jorge Villarroel Merino Mario Rommel Cevallos Moreno Jorge Coloma Gaybor Fernando L\u00f3pez Ortiz Am\u00edlcar Ascazubi Alb\u00e1n y Patricio Vinuesa P\u00e1nchez en adelante las presuntas v\u00edctimas en la cual alega la de la de en", - "values": [ - "Comisi\u00f3n Interamericana de Derechos Humanos" - ] - }, - { - "text": "INFORME No. CASO JORGE VILLARROEL Y OTROS FONDO ECUADOR DE OCTUBRE DE I. RESUMEN El de julio de la Comisi\u00f3n Interamericana de Derechos Humanos en adelante la Comisi\u00f3n Interamericana la Comisi\u00f3n o la CIDH recibi\u00f3 una petici\u00f3n presentada por la se\u00f1ora Mar\u00eda Paula Romo en adelante la parte peticionaria en la cual se alega la responsabilidad internacional de la Rep\u00fablica del Ecuador en adelante el Estado ecuatoriano el Estado o Ecuador en perjuicio de Jorge Villarroel Merino Mario Rommel ", - "values": [ - "Comisi\u00f3n Interamericana de Derechos Humanos" - ] - }, - { - "text": " de octubre de REF Caso N\u00ba Bonifacio Rios Avalos y Carlos Fern\u00e1ndez Gadea Paraguay Se\u00f1or Secretario Tengo el agrado de dirigirme a usted en nombre de la Comisi\u00f3n Interamericana de Derechos Humanos con el objeto de someter a la jurisdicci\u00f3n de la Honorable Corte Interamericana de Derechos Humanos el Caso N\u00ba Bonifacio R\u00edos Avalos y Carlos Fern\u00e1ndez Gadea respecto de la Rep\u00fablica de Paraguay en adelante el Estado el Estado paraguayo o Paraguay relacionado con una serie de violaciones en el de", - "values": [ - "Comisi\u00f3n Interamericana de Derechos Humanos" - ] - }, - { - "text": "I. INTRODUCCI\u00d3N El de noviembre de y de junio de la Comisi\u00f3n Interamericana de Derechos Humanos en adelante la Comisi\u00f3n Interamericana la Comisi\u00f3n o la CIDH recibi\u00f3 dos peticiones presentadas respectivamente por Carlos Fern\u00e1ndez Gadea y Bonifacio R\u00edos Avalos en adelante la parte peticionaria en las cuales se alega la responsabilidad internacional de la Rep\u00fablica del Paraguay en adelante el Estado paraguayo el Estado o Paraguay por una serie de supuestas violaciones cometidas en su en el ", - "values": [ - "Comisi\u00f3n Interamericana de Derechos Humanos" - ] - }, - { - "text": "INFORME No. PETICI\u00d3N ADMISIBILIDAD BONIFACIO R\u00cdOS AVALOS PARAGUAY de marzo de I. RESUMEN El presente informe se refiere a la admisibilidad de la petici\u00f3n Las actuaciones fueron iniciadas por la Comisi\u00f3n Interamericana de Derechos Humanos en lo sucesivo Comisi\u00f3n Interamericana Comisi\u00f3n o CIDH tras recibir una petici\u00f3n el de noviembre de presentada por Bonifacio R\u00edos \u00c1valos entonces Presidente de la Corte Suprema de Justicia de la Rep\u00fablica de Paraguay en adelante el peticionario contra ", - "values": [ - "Comisi\u00f3n Interamericana de Derechos Humanos" - ] - }, - { - "text": "INFORME No. PETICI\u00d3N ADMISIBILIDAD CARLOS FERN\u00c1NDEZ GADEA PARAGUAY de marzo de I. RESUMEN El presente informe se refiere a la admisibilidad de la petici\u00f3n Las actuaciones fueron iniciadas por la Comisi\u00f3n Interamericana de Derechos Humanos en lo sucesivo Comisi\u00f3n Interamericana Comisi\u00f3n o CIDH tras recibir una petici\u00f3n el de junio de presentada por Carlos Fern\u00e1ndez Gadea en adelante el peticionario con el patrocinio de Antonio Fern\u00e1ndez Gadea y Nicol\u00e1s Gaola Irun en relaci\u00f3n con el que", - "values": [ - "Comisi\u00f3n Interamericana de Derechos Humanos" - ] - }, - { - "text": " de febrero de Ref Caso No. Extrabajadores del Organismo Judicial Guatemala Se\u00f1or Secretario Tengo el agrado de dirigirme a usted en nombre de la Comisi\u00f3n Interamericana de Derechos Humanos con el objeto de someter a la jurisdicci\u00f3n de la Honorable Corte Interamericana de Derechos Humanos el Caso N\u00ba Ex trabajadores del Organismo Judicial respecto de la Rep\u00fablica de Guatemala en adelante el Estado el Estado guatemalteco o Guatemala. El presente caso se relaciona con la destituci\u00f3n de del ", - "values": [ - "Comisi\u00f3n Interamericana de Derechos Humanos" - ] - }, - { - "text": " de julio de REF Caso N\u00ba Brisa Liliana de \u00c1ngulo Lozada Bolivia Se\u00f1or Secretario Tengo el agrado de dirigirme a usted en nombre de la Comisi\u00f3n Interamericana de Derechos Humanos con el objeto de someter a la jurisdicci\u00f3n de la Honorable Corte Interamericana de Derechos Humanos el Caso No. Brisa Liliana de \u00c1ngulo Lozada respecto del Estado Plurinacional de Bolivia en adelante el Estado de Bolivia el Estado boliviano o Bolivia relacionado con la falta de protecci\u00f3n investigaci\u00f3n y sanci\u00f3n a ", - "values": [ - "Comisi\u00f3n Interamericana de Derechos Humanos" - ] - }, - { - "text": "INFORME No. CASO INFORME DE FONDO BRISA LILIANA DE ANGULO LOZADA BOLIVIA de septiembre de I. INTRODUCCI\u00d3N El de enero de la Comisi\u00f3n Interamericana de Derechos Humanos en adelante la Comisi\u00f3n Interamericana la Comisi\u00f3n o la CIDH recibi\u00f3 una petici\u00f3n presentada por Child and Family Advocacy Clinic de Rutgers University International Human Rights Law Clinic de American University La Oficina Jur\u00eddica para la Mujer y Maria Leonor Oviedo Bellott en adelante la parte peticionaria en la cual ", - "values": [ - "Comisi\u00f3n Interamericana de Derechos Humanos" - ] - }, - { - "text": "INFORME No. PETICI\u00d3N INFORME DE ADMISIBILIDAD BRISA LILIANA DE ANGULO BOLIVIA DE MARZO DE I. DATOS DE LA PETICI\u00d3N Child and Family Advocacy Clinic Hughes Hubbard Reed LLP Equality Now Oficina Jur\u00eddica para la Mujer y Maria Leonor Oviedo Bellott Brisa Liliana de Angulo Losada Bolivia Art\u00edculos integridad personal garant\u00edas judiciales protecci\u00f3n de la honra y dignidad derechos del ni\u00f1o igualdad ante la ley y protecci\u00f3n judicial de la Convenci\u00f3n Americana sobre Derechos Humanos y de ", - "values": [ - "Comisi\u00f3n Interamericana de Derechos Humanos" - ] - }, - { - "text": "REF Caso N\u00ba Carlos Baraona Bray Chile de agosto de Se\u00f1or Secretario Tengo el agrado de dirigirme a usted en nombre de la Comisi\u00f3n Interamericana de Derechos Humanos con el objeto de someter a la jurisdicci\u00f3n de la Honorable Corte Interamericana de Derechos Humanos el Caso Carlos Baraona Bray de la Rep\u00fablica de Chile en adelante el Estado el Estado chileno o Chile. El caso se refiere a la responsabilidad internacional del Estado por la violaci\u00f3n del derecho a la libertad de expresi\u00f3n por la", - "values": [ - "Comisi\u00f3n Interamericana de Derechos Humanos" - ] - }, - { - "text": "INFORME N\u00ba PETICI\u00d3N ADMISIBILIDAD CARLOS BARAONA BRAY CHILE de julio de I. RESUMEN El de marzo de la Comisi\u00f3n Interamericana de Derechos Humanos en adelante la Comisi\u00f3n Interamericana la Comisi\u00f3n o la CIDH recibi\u00f3 una petici\u00f3n presentada por la Cl\u00ednica de Inter\u00e9s P\u00fablico y Derechos Humanos de la Universidad Diego Portales en adelante la peticionaria en contra del Estado de Chile en adelante el Estado o el Estado chileno relacionada al proceso y sanci\u00f3n penal impuesta al se\u00f1or Carlos ", - "values": [ - "Comisi\u00f3n Interamericana de Derechos Humanos" - ] - }, - { - "text": "INFORME No. CASO FONDO CARLOS BARAONA BRAY CHILE de mayo de I. INTRODUCCI\u00d3N El de marzo de la Comisi\u00f3n Interamericana de Derechos Humanos en adelante la Comisi\u00f3n Interamericana la Comisi\u00f3n o la CIDH recibi\u00f3 una petici\u00f3n presentada por la Cl\u00ednica de Inter\u00e9s P\u00fablico y Derechos Humanos de la Universidad Diego Portales en nombre del se\u00f1or Carlos Baraona Bray en adelante la parte peticionaria en la cual se alega la responsabilidad internacional de la Rep\u00fablica de Chile en adelante el Estado ", - "values": [ - "Comisi\u00f3n Interamericana de Derechos Humanos" - ] - }, - { - "text": "INFORME No. CASO INFORME DE ADMISIBILIDAD Y FONDO CARLOS BENITES CABRERA Y OTROS TRABAJADORES CESADOS DEL CONGRESO DE LA REP\u00daBLICA PER\u00da de mayo de I. INTRODUCCI\u00d3N El de diciembre de la Comisi\u00f3n Interamericana de Derechos Humanos en adelante la Comisi\u00f3n Interamericana la Comisi\u00f3n o la CIDH recibi\u00f3 una petici\u00f3n presentada por Javier Mujica Petit en adelante la parte peticionaria en la cual se aleg\u00f3 la responsabilidad internacional de la Rep\u00fablica del Per\u00fa en adelante el Estado peruano el ", - "values": [ - "Comisi\u00f3n Interamericana de Derechos Humanos" - ] - }, - { - "text": " de julio de REF Caso N\u00ba Carlos Benites Cabrera y otros Per\u00fa Se\u00f1or Secretario Tengo el agrado de dirigirme a usted en nombre de la Comisi\u00f3n Interamericana de Derechos Humanos con el objeto de someter a la jurisdicci\u00f3n de la Honorable Corte Interamericana de Derechos Humanos el Caso No. Carlos Benites Cabrera y otros respecto de la Rep\u00fablica de Per\u00fa en adelante el Estado el Estado peruano o Per\u00fa relacionado con la responsabilidad internacional del Estado en perjuicio de trabajadores cesados", - "values": [ - "Comisi\u00f3n Interamericana de Derechos Humanos" - ] - }, - { - "text": " de agosto de REF Caso N\u00ba Herminio Deras Garc\u00eda y familia Honduras Se\u00f1or Secretario Tengo el agrado de dirigirme a usted en nombre de la Comisi\u00f3n Interamericana de Derechos Humanos con el objeto de someter a la jurisdicci\u00f3n de la Honorable Corte Interamericana de Derechos Humanos el Caso Herminio Deras Garc\u00eda y familia de la Rep\u00fablica de Honduras en adelante el Estado el Estado hondure\u00f1o u Honduras. El caso se refiere a la responsabilidad internacional del Estado por la ejecuci\u00f3n de Deras", - "values": [ - "Comisi\u00f3n Interamericana de Derechos Humanos" - ] - }, - { - "text": "INFORME No. PETICI\u00d3N ADMISIBILIDAD HERMINIO DERAS GARC\u00cdA Y OTROS HONDURAS de julio de I. RESUMEN El de febrero de la Comisi\u00f3n Interamericana de Derechos Humanos en adelante Comisi\u00f3n o CIDH recibi\u00f3 una petici\u00f3n presentada por Eustaquia Garc\u00eda Alvarado Otilia Flores Lorena Deras Herminio Deras Flores Alba Luz Deras Garc\u00eda Irma Isabel Deras Garc\u00eda Consuelo Deras Garc\u00eda y Luis Rolando Deras Garc\u00eda en adelante peticionarios en la cual se alega la responsabilidad de la Rep\u00fablica de Honduras en", - "values": [ - "Comisi\u00f3n Interamericana de Derechos Humanos" - ] - }, - { - "text": "INFORME No. CASO INFORME DE FONDO HERMINIO DERAS GARC\u00cdA Y FAMILIA HONDURAS I. INTRODUCCI\u00d3N El de febrero de la Comisi\u00f3n Interamericana de Derechos Humanos en adelante la Comisi\u00f3n Interamericana la Comisi\u00f3n o la CIDH recibi\u00f3 una petici\u00f3n presentada por Eustaquia Garc\u00eda Alvarado en adelante la parte peticionaria en la cual se alega la responsabilidad internacional de la Rep\u00fablica de Honduras en adelante el Estado de Honduras el Estado o Honduras por la alegada ejecuci\u00f3n extrajudicial de ", - "values": [ - "Comisi\u00f3n Interamericana de Derechos Humanos" - ] - }, - { - "text": " de agosto de REF Caso N\u00ba Comunidad Gar\u00edfuna de San Juan y sus Miembros Honduras Se\u00f1or Secretario Tengo el agrado de dirigirme a usted en nombre de la Comisi\u00f3n Interamericana de Derechos Humanos con el objeto de someter a la jurisdicci\u00f3n de la Honorable Corte Interamericana de Derechos Humanos el Caso Comunidad Gar\u00edfuna de San Juan y sus Miembros de la Rep\u00fablica de Honduras en adelante el Estado el Estado hondure\u00f1o u Honduras. El caso se refiere a la responsabilidad internacional del Estado", - "values": [ - "Comisi\u00f3n Interamericana de Derechos Humanos" - ] - }, - { - "text": "INFORME No. CASO INFORME DE FONDO COMUNIDAD GAR\u00cdFUNA DE SAN JUAN Y SUS MIEMBROS HONDURAS I. INTRODUCCI\u00d3N El de junio de la Comisi\u00f3n Interamericana de Derechos Humanos en adelante la Comisi\u00f3n la Comisi\u00f3n Interamericana o la CIDH recibi\u00f3 una solicitud de medidas cautelares presentada por la Organizaci\u00f3n Fraternal Negra Hondure\u00f1a en adelante la parte peticionaria u OFRANEH en favor de las Comunidades Gar\u00edfuna de San Juan y Tornab\u00e9 en la que se alegaba una situaci\u00f3n de riesgo urgente debido a ", - "values": [ - "Comisi\u00f3n Interamericana de Derechos Humanos" - ] - }, - { - "text": "INFORME No. PETICI\u00d3N ADMISIBILIDAD COMUNIDAD GAR\u00cdFUNA DE SAN JUAN Y SUS MIEMBROS HONDURAS DE JUNIO DE I. RESUMEN El de junio de la Comisi\u00f3n Interamericana de Derechos Humanos en adelante la Comisi\u00f3n la Comisi\u00f3n Interamericana o la CIDH recibi\u00f3 una solicitud de medidas cautelares presentada por la Organizaci\u00f3n Fraternal Negra Hondure\u00f1a en adelante la peticionaria u OFRANEH en favor de las Comunidades Gar\u00edfuna de San Juan y Tornab\u00e9 en la que se alegaba una situaci\u00f3n de riesgo urgente a ", - "values": [ - "Comisi\u00f3n Interamericana de Derechos Humanos" - ] - }, - { - "text": " de agosto de REF Caso N\u00ba Pedro Julio Movilla Galarcio y Familiares Colombia Se\u00f1or Secretario Tengo el agrado de dirigirme a usted en nombre de la Comisi\u00f3n Interamericana de Derechos Humanos con el objeto de someter a la jurisdicci\u00f3n de la Honorable Corte Interamericana de Derechos Humanos el caso No. Pedro Julio Movilla Galarcio y Familiares respecto de la Rep\u00fablica de Colombia en adelante el Estado el Estado colombiano o Colombia. El caso se relaciona con la responsabilidad internacional ", - "values": [ - "Comisi\u00f3n Interamericana de Derechos Humanos" - ] - }, - { - "text": "INFORME No. PETICI\u00d3N ADMISIBILIDAD PEDRO JULIO MOVILLA GALARCIO COLOMBIA de julio de I. RESUMEN El de junio de la CIDH en adelante la Comisi\u00f3n Interamericana o la CIDH recibi\u00f3 una petici\u00f3n presentada por la Corporaci\u00f3n Colectivo de Abogados Jos\u00e9 Alvear Restrepo en adelante los peticionarios en la cual se alega la violaci\u00f3n por parte de la Rep\u00fablica de Colombia en adelante el Estado o el Estado colombiano de los art\u00edculos reconocimiento de la personalidad jur\u00eddica derecho a la vida a ", - "values": [ - "Comisi\u00f3n Interamericana de Derechos Humanos" - ] - }, - { - "text": "INFORME No. CASO FONDO PEDRO JULIO MOVILLA GALARCIO Y FAMILIARES COLOMBIA DE DICIEMBRE DE I. RESUMEN El de junio de la Comisi\u00f3n Interamericana de Derechos Humanos en adelante la Comisi\u00f3n Interamericana la Comisi\u00f3n o la CIDH recibi\u00f3 una petici\u00f3n presentada por la Corporaci\u00f3n Colectivo de Abogados Jos\u00e9 Alvear Restrepo CCAJAR en adelante la parte peticionaria en la cual se alega la responsabilidad internacional de la Rep\u00fablica de Colombia en adelante el Estado colombiano el Estado o en de", - "values": [ - "Comisi\u00f3n Interamericana de Derechos Humanos" - ] - }, - { - "text": "INFORME No. CASO INFORME DE FONDO MIEMBROS DE LA CORPORACI\u00d3N COLECTIVO DE ABOGADOS JOS\u00c9 ALVEAR RESTREPO COLOMBIA de mayo de I. RESUMEN El de abril de la Comisi\u00f3n Interamericana de Derechos Humanos en adelante la Comisi\u00f3n la CIDH o la Comisi\u00f3n Interamericana recibi\u00f3 una petici\u00f3n presentada por la Corporaci\u00f3n Colectivo de Abogados Jos\u00e9 Alv\u00e9ar Restrepo CCAJAR y el Centro por la Justicia y el Derecho Internacional CEJIL en adelante los peticionarios en donde se aleg\u00f3 la responsabilidad de ", - "values": [ - "Comisi\u00f3n Interamericana de Derechos Humanos" - ] - }, - { - "text": " de julio de REF Caso N\u00ba Miembros de la Corporaci\u00f3n Colectivo de Abogados Jos\u00e9 Alvear Restrepo Colombia Se\u00f1or Secretario Tengo el agrado de dirigirme a usted en nombre de la Comisi\u00f3n Interamericana de Derechos Humanos con el objeto de someter a la jurisdicci\u00f3n de la Honorable Corte Interamericana de Derechos Humanos el Caso No. Miembros de la Corporaci\u00f3n Colectivo de Abogados Jos\u00e9 Alvear Restrepo CAJAR respecto de la Rep\u00fablica de Colombia en adelante el Estado el Estado colombiano o El ", - "values": [ - "Comisi\u00f3n Interamericana de Derechos Humanos" - ] - }, - { - "text": "INFORME N\u00ba PETICI\u00d3N MIEMBROS DE LA CORPORACI\u00d3N COLECTIVO DE ABOGADOS JOS\u00c9 ALV\u00c9AR RESTREPO ADMISIBILIDAD COLOMBIA de julio de I. RESUMEN El de abril de la Comisi\u00f3n Interamericana de Derechos Humanos en adelante la Comisi\u00f3n Interamericana o la CIDH recibi\u00f3 una denuncia presentada por la Corporaci\u00f3n Colectivo de Abogados Jos\u00e9 Alv\u00e9ar Restrepo en adelante el Colectivo de Abogados y el Centro por la Justicia y el Derecho Internacional CEJIL en adelante los peticionarios en la cual se alega la ", - "values": [ - "Comisi\u00f3n Interamericana de Derechos Humanos" - ] - }, - { - "text": "INFORME No. PETICI\u00d3N INFORME DE ADMISIBILIDAD COMUNIDAD MAYA QEQCHI AGUA CALIENTE GUATEMALA DE MARZO DE I. RESUMEN El de agosto de la Comisi\u00f3n Interamericana de Derechos Humanos en adelante la Comisi\u00f3n Interamericana la Comisi\u00f3n o la CIDH recibi\u00f3 una petici\u00f3n presentada por el Indian Law Resource Center la Comunidadad Maya Qeqch\u00ed Agua Caliente y Rodrigo Tot en adelante los peticionarios contra Guatemala en adelante Guatemala o el Estado. La petici\u00f3n fue presentada en representaci\u00f3n de la", - "values": [ - "Comisi\u00f3n Interamericana de Derechos Humanos" - ] - }, - { - "text": "INFORME No. CASO INFORME DE FONDO COMUNIDAD IND\u00cdGENA MAYA QEQCHI AGUA CALIENTE GUATEMALA de marzo de I. INTRODUCCI\u00d3N El de agosto de la Comisi\u00f3n Interamericana de Derechos Humanos en adelante la Comisi\u00f3n Interamericana la Comisi\u00f3n o la CIDH recibi\u00f3 una petici\u00f3n presentada por Indian Law Resource Center la Comunidad Maya Qeqchi Agua Caliente y Rodrigo Tot en adelante la parte peticionaria en la cual se alega la responsabilidad internacional de la Rep\u00fablica de Guatemala en adelante el el", - "values": [ - "Comisi\u00f3n Interamericana de Derechos Humanos" - ] - }, - { - "text": "REF Caso N\u00ba Comunidad Ind\u00edgena Maya Qeqchi Agua Caliente Guatemala de agosto de Se\u00f1or Secretario Tengo el agrado de dirigirme a usted en nombre de la Comisi\u00f3n Interamericana de Derechos Humanos con el objeto de someter a la jurisdicci\u00f3n de la Honorable Corte Interamericana de Derechos Humanos el Caso Comunidad Ind\u00edgena Maya Qeqchi Agua Caliente de la Rep\u00fablica de Guatemala en adelante el Estado el Estado guatemalteco o Guatemala. El caso se refiere a la responsabilidad internacional del ", - "values": [ - "Comisi\u00f3n Interamericana de Derechos Humanos" - ] - }, - { - "text": " de abril de Ref Caso No. Pueblos Ind\u00edgenas Maya Kaqchikel de Sumpango y otros Guatemala Se\u00f1or Secretario Tengo el agrado de dirigirme a usted en nombre de la Comisi\u00f3n Interamericana de Derechos Humanos con el objeto de someter a la jurisdicci\u00f3n de la Honorable Corte Interamericana de Derechos Humanos el Caso N\u00ba Pueblos Ind\u00edgenas Maya Kaqchikel de Sumpango y otros respecto de la Rep\u00fablica de Guatemala en adelante el Estado el Estado guatemalteco o Guatemala. El presente caso se refiere a la", - "values": [ - "Comisi\u00f3n Interamericana de Derechos Humanos" - ] - }, - { - "text": "INFORME No. PETICI\u00d3N INFORME DE ADMISIBILIDAD PUEBLOS IND\u00cdGENAS MAYA KAQCHIKUEL DE SUMPANGO Y OTROS GUATEMALA de mayo de I. DATOS DE LA PETICI\u00d3N Parte peticionaria Presunta v\u00edctima Estado denunciado Derechos invocados II. TR\u00c1MITE ANTE LA CIDH Presentaci\u00f3n de la petici\u00f3n Informaci\u00f3n adicional recibida durante la etapa de estudio Notificaci\u00f3n de la petici\u00f3n al Estado Primera respuesta del Estado III. Asociaci\u00f3n Sobrevivencia Cultural Asociaci\u00f3n Mujbabl yol Encuentro de Expresiones y Cultural ", - "values": [ - "Comisi\u00f3n Interamericana de Derechos Humanos" - ] - }, - { - "text": "INFORME No. CASO FONDO PUEBLOS IND\u00cdGENAS MAYA KAQCHIKEL DE SUMPANGO Y OTROS GUATEMALA de noviembre de I. INTRODUCCI\u00d3N El de septiembre de la Comisi\u00f3n Interamericana de Derechos Humanos en adelante la Comisi\u00f3n Interamericana la Comisi\u00f3n o la CIDH recibi\u00f3 una petici\u00f3n presentada por la Asociaci\u00f3n Sobrevivencia Cultural Asociaci\u00f3n Mujbabl Yol Encuentro de Expresiones y Cultural Survival Inc. en adelante la parte peticionaria o los peticionarios en la cual se alega la responsabilidad de la ", - "values": [ - "Comisi\u00f3n Interamericana de Derechos Humanos" - ] - }, - { - "text": "INFORME No. CASO INFORME DE FONDO HERMANOS CASIERRA Y FAMILIA ECUADOR de febrero de I. INTRODUCCI\u00d3N El de junio de la Comisi\u00f3n Interamericana de Derechos Humanos en adelante la Comisi\u00f3n Interamericana la Comisi\u00f3n o la CIDH recibi\u00f3 una petici\u00f3n presentada por Alejandro Ponce Villac\u00eds en adelante la parte peticionaria en la cual se alega la responsabilidad internacional de la Rep\u00fablica de Ecuador en adelante el Estado de Ecuador el Estado o Ecuador por la muerte de Luis Eduardo Casierra y", - "values": [ - "Comisi\u00f3n Interamericana de Derechos Humanos" - ] - }, - { - "text": " de junio de REF Caso N\u00ba Hermanos Casierra y familia Ecuador Se\u00f1or Secretario Tengo el agrado de dirigirme a usted en nombre de la Comisi\u00f3n Interamericana de Derechos Humanos con el objeto de someter a la jurisdicci\u00f3n de la Honorable Corte Interamericana de Derechos Humanos el Caso Hermanos Casierra y familia de la Rep\u00fablica de Ecuador en adelante el Estado el Estado ecuatoriano o Ecuador relacionado con la muerte de Luis Eduardo Casierra Qui\u00f1onez y las lesiones de Andr\u00e9s Alejandro Casierra", - "values": [ - "Comisi\u00f3n Interamericana de Derechos Humanos" - ] - }, - { - "text": "INFORME No. PETICI\u00d3N ADMISIBILIDAD LUIS EDUARDO Y ANDR\u00c9S ALEJANDRO CASIERRA QUI\u00d1ONEZ ECUADOR de marzo de I. RESUMEN El de junio de la Comisi\u00f3n Interamericana de Derechos Humanos en adelante la Comisi\u00f3n recibi\u00f3 una petici\u00f3n presentada por Alejandro Ponce Villac\u00eds en adelante el peticionario en la cual se alega la responsabilidad de la Rep\u00fablica de Ecuador por la muerte de Luis Eduardo Casierra Qui\u00f1\u00f3nez y las lesiones sufridas por Andr\u00e9s Casierra Qui\u00f1\u00f3nez en un ataque presuntamente por ", - "values": [ - "Comisi\u00f3n Interamericana de Derechos Humanos" - ] - }, - { - "text": "INFORME No. CASO INFORME DE FONDO GONZALO CORTEZ ESPINOZA ECUADOR de febrero de I. INTRODUCCI\u00d3N El de marzo de la Comisi\u00f3n Interamericana de Derechos Humanos en adelante la Comisi\u00f3n la Comisi\u00f3n Interamericana o la CIDH recibi\u00f3 una petici\u00f3n presentada por la Cl\u00ednica de Derechos Humanos de la Facultad de Jurisprudencia de la Pontificia Universidad de Ecuador en adelante la parte peticionaria en el cual se aleg\u00f3 la responsabilidad de la Rep\u00fablica del Ecuador en adelante Estado ecuatoriano o", - "values": [ - "Comisi\u00f3n Interamericana de Derechos Humanos" - ] - }, - { - "text": "INFORME No. PETICION ADMISIBILIDAD GONZALO ORLANDO CORTEZ ESPINOZA ECUADOR \u00ba de noviembre de I. RESUMEN La Comisi\u00f3n Interamericana de Derechos Humanos en adelante la Comisi\u00f3n recibi\u00f3 una petici\u00f3n el de marzo de presentada por la Cl\u00ednica de Derechos Humanos de la Facultad de Jurisprudencia de la Pontificia la Universidad Cat\u00f3lica de Ecuador en adelante los peticionarios en la cual se alega la responsabilidad de la Rep\u00fablica de Ecuador en adelante el Estado o Ecuador por la detenci\u00f3n ilegal", - "values": [ - "Comisi\u00f3n Interamericana de Derechos Humanos" - ] - }, - { - "text": " de junio de REF Caso N\u00ba Gonzalo Orlando Cortez Espinoza Ecuador Se\u00f1or Secretario Tengo el agrado de dirigirme a usted en nombre de la Comisi\u00f3n Interamericana de Derechos Humanos con el objeto de someter a la jurisdicci\u00f3n de la Honorable Corte Interamericana de Derechos Humanos el caso No. Gonzalo Orlando Cortez Espinoza de la Rep\u00fablica de Ecuador en adelante el Estado el Estado ecuatoriano o Ecuador relacionado con la ilegalidad y arbitrariedad de tres detenciones llevadas a cabo en contra", - "values": [ - "Comisi\u00f3n Interamericana de Derechos Humanos" - ] - }, - { - "text": "INFORME No. CASO INFORME DE FONDO DIANA MAIDANIK Y OTROS URUGUAY de noviembre de I. INTRODUCCI\u00d3N El de agosto de la Comisi\u00f3n Interamericana de Derechos Humanos en adelante la Comisi\u00f3n la Comisi\u00f3n Interamericana o la CIDH recibi\u00f3 una petici\u00f3n presentada por el Instituto de Estudios Legales y Sociales del Uruguay IELSUR en la cual se alega la responsabilidad internacional de la Rep\u00fablica Oriental del Uruguay en adelante el Estado el Estado uruguayo o Uruguay por la presunta desaparici\u00f3n ", - "values": [ - "Comisi\u00f3n Interamericana de Derechos Humanos" - ] - }, - { - "text": " de mayo de REF Caso N\u00ba Diana Maidanik y otros Uruguay Se\u00f1or Secretario Tengo el agrado de dirigirme a usted en nombre de la Comisi\u00f3n Interamericana de Derechos Humanos con el objeto de someter a la jurisdicci\u00f3n de la Honorable Corte Interamericana de Derechos Humanos el caso No. Diana Maidanik y otros de la Rep\u00fablica Oriental del Uruguay en adelante el Estado el Estado uruguayo o Uruguay relacionado con la responsabilidad internacional del Estado por las ejecuciones extrajudiciales de ", - "values": [ - "Comisi\u00f3n Interamericana de Derechos Humanos" - ] - }, - { - "text": "INFORME No. PETICI\u00d3N ADMISIBILIDAD DIANA MAIDANIC Y OTROS URUGUAY de noviembre de I. RESUMEN El de agosto de la Comisi\u00f3n Interamericana de Derechos Humanos en adelante la Comisi\u00f3n o la CIDH recibi\u00f3 una petici\u00f3n presentada por el Instituto de Estudios Legales y Sociales del Uruguay IELSUR en adelante el peticionario en la cual alega la responsabilidad de la Rep\u00fablica Oriental del Uruguay en adelante Uruguay o el Estado por la falta de investigaci\u00f3n y respuesta judicial efectiva respecto a", - "values": [ - "Comisi\u00f3n Interamericana de Derechos Humanos" - ] - }, - { - "text": "INFORME No. PETICI\u00d3N INFORME DE ADMISIBILIDAD BAPTISTE WILLER Y FR\u00c9DO GUIRANT HAITI de abril de I. RESUMEN El de abril de la Comisi\u00f3n Interamericana de Derechos Humanos en adelante la Comisi\u00f3n Interamericana o la CIDH recibi\u00f3 una petici\u00f3n presentada por Baptiste Willer en adelante el peticionario o el se\u00f1or Willer contra la Rep\u00fablica de Hait\u00ed en adelante Hait\u00ed o el Estado en nombre suyo y de su hermano Fr\u00e9do Guirant. El peticionario sostiene que fue v\u00edctima de una tentativa de homicidio", - "values": [ - "Comisi\u00f3n Interamericana de Derechos Humanos" - ] - }, - { - "text": "INFORME No. CASO INFORME DE FONDO BAPTISTE WILLER Y FAMILIARES HAITI de noviembre de I. INTRODUCCI\u00d3N El de abril de la Comisi\u00f3n Interamericana de Derechos Humanos la Comisi\u00f3n Interamericana la Comisi\u00f3n o la CIDH recibi\u00f3 una petici\u00f3n presentada por Baptiste Willer quien actualmente es asistido por African Canadian Legal Clinic la parte peticionaria en la cual se alega la responsabilidad internacional de la Rep\u00fablica de Hait\u00ed el Estado Hait\u00ed o el Estado haitiano por las amenazas y de que", - "values": [ - "Comisi\u00f3n Interamericana de Derechos Humanos" - ] - }, - { - "text": " de mayo de REF Caso N\u00ba Baptiste Willer y familiares Hait\u00ed Se\u00f1or Secretario Tengo el agrado de dirigirme a usted en nombre de la Comisi\u00f3n Interamericana de Derechos Humanos con el objeto de someter a la jurisdicci\u00f3n de la Honorable Corte Interamericana de Derechos Humanos el caso No. Baptiste Willer y familiares de la Rep\u00fablica de Hait\u00ed en adelante el Estado el Estado haitiano o Hait\u00ed relacionado con la responsabilidad internacional del Estado por la falta de protecci\u00f3n a los derechos del ", - "values": [ - "Comisi\u00f3n Interamericana de Derechos Humanos" - ] - }, - { - "text": " de agosto de REF Caso N\u00ba Ronald Moya Chac\u00f3n y Freddy Parrales Chaves Costa Rica Se\u00f1or Secretario Tengo el agrado de dirigirme a usted en nombre de la Comisi\u00f3n Interamericana de Derechos Humanos con el objeto de someter a la jurisdicci\u00f3n de la Honorable Corte Interamericana de Derechos Humanos el Caso Ronald Moya Chac\u00f3n y Freddy Parrales Chaves de la Rep\u00fablica de Costa Rica en adelante el Estado el Estado costarricense o Costa Rica relacionado con la imposici\u00f3n de una medida de ulterior en", - "values": [ - "Comisi\u00f3n Interamericana de Derechos Humanos" - ] - }, - { - "text": "INFORME No. PETICI\u00d3N INFORME DE ADMISIBILIDAD RONALD MOYA CHAC\u00d3N Y FREDDY PARRALES CHAVES COSTA RICA DE AGOSTO DE I. RESUMEN El de agosto de la Comisi\u00f3n Interamericana de Derechos Humanos en adelante la Comisi\u00f3n la Comisi\u00f3n Interamericana o la CIDH recibi\u00f3 una petici\u00f3n presentada por Pedro Nikken y Carlos Ayala Corao en adelante los peticionarios contra la Rep\u00fablica de Costa Rica en adelante el Estado o Costa Rica. Los peticionarios sostuvieron que el Estado es responsable de la del a ", - "values": [ - "Comisi\u00f3n Interamericana de Derechos Humanos" - ] - }, - { - "text": "INFORME No. CASO INFORME DE FONDO RONALD MOYA CHAC\u00d3N Y FREDDY PARRALES CHAVES COSTA RICA DE SEPTIEMBRE DE I. INTRODUCCI\u00d3N El de agosto de la Comisi\u00f3n Interamericana de Derechos Humanos en adelante la Comisi\u00f3n la Comisi\u00f3n Interamericana o la CIDH recibi\u00f3 una petici\u00f3n presentada por Pedro Nikken y Carlos Ayala Corao en adelante los peticionarios o la parte peticionaria en la cual se alega la responsabilidad internacional de la Rep\u00fablica de Costa Rica en adelante el Estado o Costa Rica en ", - "values": [ - "Comisi\u00f3n Interamericana de Derechos Humanos" - ] - }, - { - "text": "RESOLU\u00c7\u00c3O DO PRESIDENTE DA CORTE INTERAMERICANA DE DIREITOS HUMANOS DE DE MAR\u00c7O DE CASO GOMES LUND E OUTROS VS. BRASIL VISTO O escrito da demanda apresentado pela Comiss\u00e3o Interamericana de Direitos Humanos doravante a Comiss\u00e3o Interamericana ou a Comiss\u00e3o \u00e0 Corte Interamericana de Direitos Humanos doravante a Corte Interamericana a Corte ou o Tribunal em de mar\u00e7o de mediante a qual ofereceu tr\u00eas declara\u00e7\u00f5es testemunhais e quatro ditames periciais. Os tr\u00eas testemunhos oferecidos constituem", - "values": [ - "Corte Interamericana de Derechos Humanos" - ] - }, - { - "text": "VOTO CONCURRENTE DEL JUEZ EDUARDO VIO GROSSI RESOLUCI\u00d3N DE LA CORTE INTERAMERICANA DE DERECHOS HUMANOS DE DE NOVIEMBRE DE CASO ACEVEDO JARAMILLO Y OTROS VS. PER\u00da SOLICITUD DE MEDIDAS PROVISIONALES Y SUPERVISI\u00d3N DE CUMPLIMIENTO DE SENTENCIA Se expide el presente voto concurrente con la Resoluci\u00f3n del ep\u00edgrafe por las mismas razones esgrimidas en el tambi\u00e9n voto concurrente de fecha de septiembre de concerniente a la Resoluci\u00f3n de la Corte Interamericana de Derechos Humanos de esa fecha de ", - "values": [ - "Corte Interamericana de Derechos Humanos" - ] - }, - { - "text": "RESOLUCI\u00d3N DE LA CORTE INTERAMERICANA DE DERECHOS HUMANOS DE DE NOVIEMBRE DE CASO ACEVEDO JARAMILLO Y OTROS VS. PER\u00da SOLICITUD DE MEDIDAS PROVISIONALES Y SUPERVISI\u00d3N DE CUMPLIMIENTO DE SENTENCIA VISTO La Sentencia de excepciones preliminares fondo reparaciones y costas en adelante la Sentencia emitida por la Corte Interamericana de Derechos Humanos en adelante la Corte Interamericana la Corte o el Tribunal el de febrero de En la Sentencia la Corte declar\u00f3 que la Rep\u00fablica del Per\u00fa en el ", - "values": [ - "Corte Interamericana de Derechos Humanos" - ] - }, - { - "text": "CORTE INTERAMERICANA DE DERECHOS HUMANOS CASO ALMEIDA VS. ARGENTINA SENTENCIA DE DE NOVIEMBRE DE Fondo Reparaciones y Costas En el caso Almeida Vs. Argentina la Corte Interamericana de Derechos Humanos en adelante la Corte Interamericana la Corte o el Tribunal integrada por los siguientes jueces Elizabeth Odio Benito Presidenta Patricio Pazmi\u00f1o Freire Vicepresidente Humberto Antonio Sierra Porto Juez Eduardo Ferrer MacGregor Poisot Juez y Ricardo P\u00e9rez Manrique Juez presente adem\u00e1s Pablo ", - "values": [ - "Corte Interamericana de Derechos Humanos" - ] - }, - { - "text": "RESOLUCI\u00d3N DE LA PRESIDENTA DE LA CORTE INTERAMERICANA DE DERECHOS HUMANOS DE DE DICIEMBRE DE CASO AZUL ROJAS MAR\u00cdN Y OTRA VS. PER\u00da REINTEGRO AL FONDO DE ASISTENCIA LEGAL DE V\u00cdCTIMAS VISTO La Sentencia de excepciones preliminares fondo reparaciones y costas en adelante la Sentencia o el Fallo dictada por la Corte Interamericana de Derechos Humanos en adelante la Corte Interamericana la Corte o el Tribunal el de marzo de El escrito presentado por la Rep\u00fablica del Per\u00fa en adelante el Estado", - "values": [ - "Corte Interamericana de Derechos Humanos" - ] - }, - { - "text": "RESOLUCI\u00d3N DE LA PRESIDENTA DE LA CORTE INTERAMERICANA DE DERECHOS HUMANOS DE DE NOVIEMBRE DE CASO BARBOSA DE SOUZA Y OTROS VS. BRASIL CONVOCATORIA A AUDIENCIA VISTO El escrito de sometimiento del caso y el Informe de Fondo de la Comisi\u00f3n Interamericana de Derechos Humanos en adelante la Comisi\u00f3n Interamericana o la Comisi\u00f3n el escrito de solicitudes argumentos y pruebas en adelante el escrito de solicitudes y argumentos de los representantes de las presuntas v\u00edctimas en adelante los el de", - "values": [ - "Corte Interamericana de Derechos Humanos" - ] - }, - { - "text": "RESOLUCI\u00d3N DE LA CORTE INTERAMERICANA DE DERECHOS HUMANOS DE NOVIEMBRE DE CASO DEL CARACAZO VS. VENEZUELA SUPERVISI\u00d3N DE CUMPLIMIENTO DE SENTENCIA VISTO Las Sentencias de fondo en adelante la Sentencia y de reparaciones y costas en adelante la Sentencia de reparaciones dictadas por la Corte Interamericana de Derechos Humanos en adelante la Corte Interamericana la Corte o el Tribunal respectivamente los d\u00edas de noviembre de y de agosto de En este caso la Rep\u00fablica Bolivariana de en el", - "values": [ - "Corte Interamericana de Derechos Humanos" - ] - }, - { - "text": "VOTO CONCURRENTE Y PARCIALMENTE DISIDENTE DEL JUEZ HUMBERTO ANTONIO SIERRA PORTO CORTE INTERAMERICANA DE DERECHOS HUMANOS CASO CASA NINA VS. PER\u00da SENTENCIA DE DE NOVIEMBRE DE Excepciones Preliminares Fondo Reparaciones y Costas Con el acostumbrado respeto por las decisiones mayoritarias de la Corte Interamericana de Derechos Humanos en adelante la Corte o el Tribunal el presente voto tiene por objeto se\u00f1alar algunas discrepancias frente al an\u00e1lisis de fondo que realiz\u00f3 la Corte acerca de la ", - "values": [ - "Corte Interamericana de Derechos Humanos" - ] - }, - { - "text": "VOTO CONCURRENTE DEL JUEZ RICARDO C. P\u00c9REZ MANRIQUE CASO CASA NINA VS. PER\u00da SENTENCIA DE DE NOVIEMBRE DE Excepciones Preliminares Fondo Reparaciones y Costas I. Introducci\u00f3n En la sentencia se declara entre otras la violaci\u00f3n de los art\u00edculos c y de la Convenci\u00f3n Americana sobre Derechos Humanos en adelante la Convenci\u00f3n por la violaci\u00f3n de las garant\u00edas judiciales el derecho de permanecer en el cargo en condiciones de igualdad y el derecho al trabajo. El caso se relaciona con una serie ", - "values": [ - "Corte Interamericana de Derechos Humanos" - ] - }, - { - "text": "VOTO DISIDENTE DEL JUEZ EDUARDO VIO GROSSI CORTE INTERAMERICANA DE DERECHOS HUMANOS CASO CASA NINA VS. PER\u00da SENTENCIA DE DE NOVIEMBRE DE Excepciones preliminares Fondo Reparaciones y Costas. I. INTRODUCCI\u00d3N. Se expide el presente voto parcialmente disidente con relaci\u00f3n a la Sentencia del r\u00f3tulo a los efectos de dar cuenta de las razones por las que se discrepa de lo dispuesto en su Resolutivo N en el que sobre la base de lo prescrito en el art\u00edculo de la Convenci\u00f3n Americana sobre se ", - "values": [ - "Corte Interamericana de Derechos Humanos" - ] - }, - { - "text": "CORTE INTERAMERICANA DE DERECHOS HUMANOS CASO CASA NINA VS. PER\u00da SENTENCIA DE DE NOVIEMBRE DE Excepciones Preliminares Fondo Reparaciones y Costas En el caso Casa Nina Vs. Per\u00fa la Corte Interamericana de Derechos Humanos en adelante tambi\u00e9n Interamericana la Corte o el Tribunal integrada por los siguientes jueces la Corte Elizabeth Odio Benito Presidenta L. Patricio Pazmi\u00f1o Freire Vicepresidente Eduardo Vio Grossi Juez Humberto Antonio Sierra Porto Juez Eduardo Ferrer MacGregor Poisot Juez ", - "values": [ - "Corte Interamericana de Derechos Humanos" - ] - }, - { - "text": "RESOLUCI\u00d3N DE LA CORTE INTERAMERICANA DE DERECHOS HUMANOS DE NOVIEMBRE DE CASO FAMILIA BARRIOS VS. VENEZUELA SUPERVISI\u00d3N DE CUMPLIMIENTO DE SENTENCIA VISTO La Sentencia de fondo reparaciones y costas en adelante la Sentencia dictada por la Corte Interamericana de Derechos Humanos en adelante la Corte Interamericana la Corte o el Tribunal el de noviembre de El caso se refiere a la privaci\u00f3n de la vida de siete integrantes de la familia Barrios a partir del a\u00f1o en el estado de Aragua al ", - "values": [ - "Corte Interamericana de Derechos Humanos" - ] - }, - { - "text": "RESOLUCI\u00d3N DE LA CORTE INTERAMERICANA DE DERECHOS HUMANOS DE DE NOVIEMBRE DE CASO GRANIER Y OTROS RADIO CARACAS TELEVISI\u00d3N VS. VENEZUELA SUPERVISI\u00d3N DE CUMPLIMIENTO DE SENTENCIA VISTO La Sentencia de excepciones preliminares fondo reparaciones y costas en adelante la Sentencia emitida por la Corte Interamericana de Derechos Humanos en adelante la Corte o el Tribunal el de junio de La Corte declar\u00f3 la responsabilidad internacional de la Rep\u00fablica Bolivariana de Venezuela en adelante el o ", - "values": [ - "Corte Interamericana de Derechos Humanos" - ] - }, - { - "text": "RESOLUCI\u00d3N DE LA CORTE INTERAMERICANA DE DERECHOS HUMANOS DE DE NOVIEMBRE DE CASO GELMAN VS. URUGUAY SUPERVISI\u00d3N DE CUMPLIMIENTO DE SENTENCIA VISTO La Sentencia de fondo y reparaciones dictada por la Corte Interamericana de Derechos Humanos en adelante la Corte Interamericana la Corte o el Tribunal el de febrero de Tomando en cuenta el reconocimiento parcial de responsabilidad internacional efectuado por la Rep\u00fablica Oriental del Uruguay en adelante el Estado o Uruguay la Corte la declar\u00f3", - "values": [ - "Corte Interamericana de Derechos Humanos" - ] - }, - { - "text": "RESOLUCI\u00d3N DE LA PRESIDENTA DE LA CORTE INTERAMERICANA DE DERECHOS HUMANOS DE DE NOVIEMBRE DE CASO GARZ\u00d3N GUZM\u00c1N VS. ECUADOR VISTO El escrito de sometimiento del caso y el Informe de Fondo de la Comisi\u00f3n Interamericana de Derechos Humanos en adelante la Comisi\u00f3n Interamericana o la Comisi\u00f3n el escrito de solicitudes argumentos y pruebas en adelante el escrito de solicitudes y argumentos presentado por los representantes de las presuntas v\u00edctimas el escrito de excepci\u00f3n preliminar y al del", - "values": [ - "Corte Interamericana de Derechos Humanos" - ] - }, - { - "text": "RESOLUCI\u00d3N DE LA PRESIDENTA DE LA CORTE INTERAMERICANA DE DERECHOS HUMANOS DE DE DICIEMBRE DE CASO INTEGRANTES Y MILITANTES DE LA UNI\u00d3N PATRI\u00d3TICA VS. COLOMBIA CONVOCATORIA A LA AUDIENCIA P\u00daBLICA VISTO Los escritos de sometimiento del caso presentados por el Estado y por la Comisi\u00f3n Interamericana de Derechos Humanos en adelante la Comisi\u00f3n Interamericana o la Comisi\u00f3n el Informe de Fondo de la Comisi\u00f3n los escritos de solicitudes argumentos y pruebas en adelante los escritos de solicitudes ", - "values": [ - "Corte Interamericana de Derechos Humanos" - ] - }, - { - "text": "RESOLUCI\u00d3N DE LA PRESIDENTA DE LA CORTE INTERAMERICANA DE DERECHOS HUMANOS DE DE DICIEMBRE DE CASO LEMOTH MORRIS Y OTROS BUZOS MISKITOS VS. HONDURAS VISTO El escrito de sometimiento del caso y el Informe de Fondo de la Comisi\u00f3n Interamericana de Derechos Humanos en adelante la Comisi\u00f3n Interamericana o la Comisi\u00f3n el escrito de solicitudes argumentos y pruebas en adelante el escrito de solicitudes y argumentos de los representantes de las presuntas v\u00edctimas en adelante los representantes y ", - "values": [ - "Corte Interamericana de Derechos Humanos" - ] - }, - { - "text": "RESOLUCI\u00d3N DE LA PRESIDENTA DE LA CORTE INTERAMERICANA DE DERECHOS HUMANOS DE DE DICIEMBRE DE CASO MANUELA Y OTROS VS. EL SALVADOR VISTO El escrito de sometimiento del caso y el Informe de Fondo de la Comisi\u00f3n Interamericana de Derechos Humanos en adelante la Comisi\u00f3n Interamericana o la Comisi\u00f3n el escrito de solicitudes argumentos y pruebas en adelante el escrito de solicitudes y argumentos de los representantes de las presuntas v\u00edctimas en adelante los representantes y el escrito de al", - "values": [ - "Corte Interamericana de Derechos Humanos" - ] - }, - { - "text": "RESOLUCI\u00d3N DE LA CORTE INTERAMERICANA DE DERECHOS HUMANOS DE DE NOVIEMBRE DE CASO DE LA MASACRE DE PUEBLO BELLO VS. COLOMBIA SUPERVISI\u00d3N DE CUMPLIMIENTO DE SENTENCIA VISTO La Sentencia de fondo reparaciones y costas en adelante la Sentencia o el Fallo dictada por la Corte Interamericana de Derechos Humanos en adelante la Corte Interamericana la Corte o el Tribunal el de enero de La Corte declar\u00f3 la responsabilidad internacional de la Rep\u00fablica de Colombia en adelante Colombia o el Estado ", - "values": [ - "Corte Interamericana de Derechos Humanos" - ] - }, - { - "text": "RESOLUCI\u00d3N DE LA PRESIDENTA DE LA CORTE INTERAMERICANA DE DERECHOS HUMANOS DE DE DICIEMBRE DE CASO MASACRE DE LA ALDEA LOS JOSEFINOS VS. GUATEMALA VISTO El escrito de sometimiento del caso y el Informe de Fondo de la Comisi\u00f3n Interamericana de Derechos Humanos en adelante la Comisi\u00f3n Interamericana o la Comisi\u00f3n el escrito de solicitudes argumentos y pruebas en adelante el escrito de solicitudes y argumentos de los representantes de las presuntas v\u00edctimas en adelante los representantes el ", - "values": [ - "Corte Interamericana de Derechos Humanos" - ] - }, - { - "text": "VOTO RAZONADO DEL JUEZ EDUARDO FERRER MACGREGOR POISOT CASO MART\u00cdNEZ ESQUIVIA VS. COLOMBIA SENTENCIA DE DE OCTUBRE DE Excepciones preliminares Fondo y Reparaciones INTRODUCCI\u00d3N El caso Mart\u00ednez Esquivia Vs. Colombia en adelante la Sentencia constituye un aporte fundamental en la jurisprudencia interamericana en relaci\u00f3n con la independencia de funcionarias y funcionarios que se encargan de la impartici\u00f3n de justicia. En efecto es la primera vez que la Corte Interamericana de Derechos Humanos", - "values": [ - "Corte Interamericana de Derechos Humanos" - ] - }, - { - "text": "CORTE INTERAMERICANA DE DERECHOS HUMANOS CASO MART\u00cdNEZ ESQUIVIA VS. COLOMBIA SENTENCIA DE DE OCTUBRE DE Excepciones preliminares Fondo y Reparaciones En el caso Mart\u00ednez Esquivia Vs. Colombia la Corte Interamericana de Derechos Humanos en adelante la Corte Interamericana la Corte o el Tribunal integrada por los siguientes jueces Elizabeth Odio Benito Presidenta Patricio Pazmi\u00f1o Freire Vicepresidente Eduardo Vio Grossi Juez Eduardo Ferrer MacGregor Poisot Juez Eugenio Ra\u00fal Zaffaroni Juez y ", - "values": [ - "Corte Interamericana de Derechos Humanos" - ] - }, - { - "text": "RESOLUCI\u00d3N DE LA CORTE INTERAMERICANA DE DERECHOS HUMANOS DE DE NOVIEMBRE DE CASO MUJERES V\u00cdCTIMAS DE TORTURA SEXUAL EN ATENCO VS. M\u00c9XICO SUPERVISI\u00d3N DE CUMPLIMIENTO DE SENTENCIA VISTO La Sentencia de excepci\u00f3n preliminar fondo reparaciones y costas dictada por la Corte Interamericana de Derechos Humanos en adelante la Corte la Corte Interamericana o el Tribunal el de noviembre de La Corte tomando en cuenta el reconocimiento parcial de responsabilidad internacional efectuado por los en ", - "values": [ - "Corte Interamericana de Derechos Humanos" - ] - }, - { - "text": "RESOLUCI\u00d3N DE LA PRESIDENTA DE LA CORTE INTERAMERICANA DE DERECHOS HUMANOS DE DE DICIEMBRE DE CASO MONTESINOS MEJ\u00cdA VS. ECUADOR REINTEGRO AL FONDO DE ASISTENCIA LEGAL DE V\u00cdCTIMAS VISTO La Sentencia de excepciones preliminares fondo reparaciones y costas en adelante la Sentencia o el Fallo dictada por la Corte Interamericana de Derechos Humanos en adelante la Corte Interamericana la Corte o el Tribunal el de enero de La transferencia bancaria de de octubre de mediante la que Ecuador el ", - "values": [ - "Corte Interamericana de Derechos Humanos" - ] - }, - { - "text": "CORTE INTERAMERICANA DE DERECHOS HUMANOS CASO MOTA ABARULLO Y OTROS VS. VENEZUELA SENTENCIA DE DE NOVIEMBRE DE Fondo Reparaciones y Costas En el caso Mota Abarullo y otros Vs. Venezuela la Corte Interamericana de Derechos Humanos en adelante tambi\u00e9n Corte Interamericana Corte o Tribunal integrada por los siguientes jueces Elizabeth Odio Benito Presidenta L. Patricio Pazmi\u00f1o Freire Vicepresidente Eduardo Vio Grossi Juez Humberto Antonio Sierra Porto Juez Eduardo Ferrer MacGregor Poisot Juez ", - "values": [ - "Corte Interamericana de Derechos Humanos" - ] - }, - { - "text": "VOTO CONCURRENTE DEL JUEZ EDUARDO VIO GROSSI RESOLUCI\u00d3N DE LA CORTE INTERAMERICANA DE DERECHOS HUMANOS DE DE NOVIEMBRE DE SOLICITUD DE MEDIDAS PROVISIONALES Y SUPERVISI\u00d3N DE CUMPLIMIENTO DE SENTENCIA CASO MASACRES DE EL MOZOTE Y LUGARES ALEDA\u00d1OS VS. EL SALVADOR Se expide el presente voto concurrente con la Resoluci\u00f3n del ep\u00edgrafe por las mismas razones esgrimidas en el tambi\u00e9n voto concurrente de fecha de septiembre de concerniente a la Resoluci\u00f3n de la Corte Interamericana de Derechos de ", - "values": [ - "Corte Interamericana de Derechos Humanos" - ] - }, - { - "text": "RESOLUCI\u00d3N DE LA CORTE INTERAMERICANA DE DERECHOS HUMANOS DE DE NOVIEMBRE DE SOLICITUD DE MEDIDAS PROVISIONALES Y SUPERVISI\u00d3N DE CUMPLIMIENTO DE SENTENCIA CASO MASACRES DE EL MOZOTE Y LUGARES ALEDA\u00d1OS VS. EL SALVADOR VISTO La Sentencia de fondo reparaciones y costas en adelante la Sentencia dictada por la Corte Interamericana de Derechos Humanos en adelante la Corte Interamericana la Corte o el Tribunal el de octubre de El caso se refiri\u00f3 a las violaciones a derechos humanos perpetradas ", - "values": [ - "Corte Interamericana de Derechos Humanos" - ] - }, - { - "text": "CORTE INTERAMERICANA DE DERECHOS HUMANOS CASO OLIVARES MU\u00d1OZ Y OTROS VS. VENEZUELA SENTENCIA DE DE NOVIEMBRE DE Fondo Reparaciones y Costas En el caso Olivares Mu\u00f1oz y otros Vs. Venezuela la Corte Interamericana de Derechos Humanos en adelante tambi\u00e9n Interamericana la Corte o el Tribunal integrada por los siguientes jueces la Corte Elizabeth Odio Benito Presidenta L. Patricio Pazmi\u00f1o Freire Vicepresidente Eduardo Vio Grossi Juez Humberto Antonio Sierra Porto Juez Eduardo Ferrer MacGregor ", - "values": [ - "Corte Interamericana de Derechos Humanos" - ] - }, - { - "text": "RESOLUCI\u00d3N DE LA CORTE INTERAMERICANA DE DERECHOS HUMANOS DE DE NOVIEMBRE DE CASO PUEBLOS IND\u00cdGENAS KUNA DE MADUNGAND\u00cd Y EMBER\u00c1 DE BAYANO Y SUS MIEMBROS VS. PANAM\u00c1 SUPERVISI\u00d3N DE CUMPLIMIENTO DE SENTENCIA VISTOS La Sentencia de excepciones preliminares fondo reparaciones y costas en adelante la Sentencia dictada por la Corte Interamericana de Derechos Humanos en adelante la Corte la Corte Interamericana o el Tribunal el de octubre de mediante la cual declar\u00f3 responsable internacionalmente", - "values": [ - "Corte Interamericana de Derechos Humanos" - ] - }, - { - "text": "CORTE INTERAMERICANA DE DERECHOS HUMANOS CASO ROCHE AZA\u00d1A Y OTROS VS. NICARAGUA SENTENCIA DE DE NOVIEMBRE DE Interpretaci\u00f3n de la Sentencia de Fondo y Reparaciones En el caso Roche Aza\u00f1a y otros Vs. Nicaragua la Corte Interamericana de Derechos Humanos en adelante la Corte Interamericana la Corte o el Tribunal integrada por los siguientes Jueces Elizabeth Odio Benito Presidenta L. Patricio Pazmi\u00f1o Freire Vicepresidente Eduardo Vio Grossi Juez Humberto Antonio Sierra Porto Juez Eduardo Ferrer ", - "values": [ - "Corte Interamericana de Derechos Humanos" - ] - }, - { - "text": "RESOLUCI\u00d3N DE LA PRESIDENTA DE LA CORTE INTERAMERICANA DE DERECHOS HUMANOS DE DE DICIEMBRE DE CASO R\u00cdOS AVALOS Y OTRO VS. PARAGUAY VISTO El escrito de sometimiento del caso y el Informe de Fondo No. de la Comisi\u00f3n Interamericana de Derechos Humanos en adelante la Comisi\u00f3n Interamericana o la Comisi\u00f3n el escrito de solicitudes argumentos y pruebas en adelante escrito de solicitudes y argumentos de los representantes de las presuntas v\u00edctimas en adelante los representantes y el escrito de al", - "values": [ - "Corte Interamericana de Derechos Humanos" - ] - }, - { - "text": "CORTE INTERAMERICANA DE DERECHOS HUMANOS CASO ROSADIO VILLAVICENCIO VS. PER\u00da SENTENCIA DE DE OCTUBRE DE Interpretaci\u00f3n de la Sentencia de Excepciones Preliminares Fondo Reparaciones y Costas En el caso Rosadio Villavicencio Vs. Per\u00fa la Corte Interamericana de Derechos Humanos en adelante la Corte Interamericana la Corte o el Tribunal integrada por los siguientes Jueces L. Patricio Pazmi\u00f1o Freire Vicepresidente Eduardo Vio Grossi Vicepresidente Humberto Antonio Sierra Porto Juez Eduardo Ferrer", - "values": [ - "Corte Interamericana de Derechos Humanos" - ] - }, - { - "text": "RESOLUCI\u00d3N DE LA PRESIDENTA DE LA CORTE INTERAMERICANA DE DERECHOS HUMANOS DE DE DICIEMBRE DE CASO ROSADIO VILLAVICENCIO VS. PER\u00da REINTEGRO AL FONDO DE ASISTENCIA LEGAL DE V\u00cdCTIMAS VISTO La Sentencia de excepciones preliminares fondo reparaciones y costas en adelante la Sentencia o el Fallo dictada por la Corte Interamericana de Derechos Humanos en adelante la Corte Interamericana la Corte o el Tribunal el de octubre de La Sentencia de interpretaci\u00f3n emitida por la Corte el de octubre de", - "values": [ - "Corte Interamericana de Derechos Humanos" - ] - }, - { - "text": "RESOLUCI\u00d3N DE LA CORTE INTERAMERICANA DE DERECHOS HUMANOS DE DE NOVIEMBRE DE CASO TRABAJADORES CESADOS DE PETROPER\u00da Y OTROS VS. PER\u00da SUPERVISI\u00d3N DE CUMPLIMIENTO DE SENTENCIA VISTO La Sentencia de excepciones preliminares fondo reparaciones y costas dictada por la Corte Interamericana de Derechos Humanos en adelante la Corte Interamericana la Corte o el Tribunal el de noviembre de En dicha Sentencia la Corte declar\u00f3 la responsabilidad internacional del Estado del Per\u00fa en adelante el Estado", - "values": [ - "Corte Interamericana de Derechos Humanos" - ] - }, - { - "text": "RESOLUCI\u00d3N DE LA PRESIDENTA DE LA CORTE INTERAMERICANA DE DERECHOS HUMANOS DE DE DICIEMBRE DE CASO VERA ROJAS Y OTROS VS. CHILE VISTO El escrito de sometimiento del caso y el Informe de Fondo de la Comisi\u00f3n Interamericana de Derechos Humanos en adelante la Comisi\u00f3n Interamericana o la Comisi\u00f3n el escrito de solicitudes argumentos y pruebas en adelante el escrito de solicitudes y argumentos de los representantes de las presuntas v\u00edctimas en adelante los representantes el escrito de de y ", - "values": [ - "Corte Interamericana de Derechos Humanos" - ] - }, - { - "text": "RESOLUCI\u00d3N DE LA PRESIDENTA DE LA CORTE INTERAMERICANA DE DERECHOS HUMANOS DE DE DICIEMBRE DE CASO V\u00c1SQUEZ DURAND Y OTROS VS. ECUADOR REINTEGRO AL FONDO DE ASISTENCIA LEGAL DE V\u00cdCTIMAS VISTO La Sentencia de excepciones preliminares fondo reparaciones y costas en adelante la Sentencia o el Fallo dictada por la Corte Interamericana de Derechos Humanos en adelante la Corte Interamericana la Corte o el Tribunal el de febrero de Los informes presentados por el Estado entre mayo de y marzo de ", - "values": [ - "Corte Interamericana de Derechos Humanos" - ] - }, - { - "text": "RESOLUCI\u00d3N DE LA PRESIDENTA DE LA CORTE INTERAMERICANA DE DERECHOS HUMANOS DE DE DICIEMBRE DE CASO YARCE Y OTRAS VS. COLOMBIA REINTEGRO AL FONDO DE ASISTENCIA LEGAL DE V\u00cdCTIMAS VISTO La Sentencia de excepci\u00f3n preliminar fondo reparaciones y costas en adelante la Sentencia o el Fallo dictada por la Corte Interamericana de Derechos Humanos en adelante la Corte Interamericana la Corte o el Tribunal el de noviembre de La Resoluci\u00f3n emitida por la Corte el de noviembre de en relaci\u00f3n con la", - "values": [ - "Corte Interamericana de Derechos Humanos" - ] - }, - { - "text": "RESOLUCI\u00d3N DE LA PRESIDENTA DE LA CORTE INTERAMERICANA DE DERECHOS HUMANOS DE DE DICIEMBRE DE CASO VILLARROEL MERINO Y OTROS VS. ECUADOR VISTO El escrito de sometimiento del caso y el Informe de Fondo No. de la Comisi\u00f3n Interamericana de Derechos Humanos en adelante la Comisi\u00f3n Interamericana o la Comisi\u00f3n el escrito de solicitudes argumentos y pruebas en adelante el escrito de solicitudes y argumentos del representante de las presuntas v\u00edctimas en adelante el representante y el escrito de ", - "values": [ - "Corte Interamericana de Derechos Humanos" - ] - }, - { - "text": "CORTE INTERAMERICANA DE DERECHOS HUMANOS CASO COMUNIDADES IND\u00cdGENAS MIEMBROS DE LA ASOCIACI\u00d3N LHAKA HONHAT NUESTRA TIERRA VS. ARGENTINA SENTENCIA DE DE NOVIEMBRE DE Interpretaci\u00f3n de la Sentencia de Fondo Reparaciones y Costas En el caso Comunidades ind\u00edgenas miembros de la Asociaci\u00f3n Lhaka Honhat Nuestra Tierra Vs. Argentina la Corte Interamericana de Derechos Humanos en adelante la Corte Interamericana la Corte o el Tribunal integrada por los siguientes Jueces Elizabeth Odio Benito L. ", - "values": [ - "Corte Interamericana de Derechos Humanos" - ] - }, - { - "text": "RESOLUCI\u00d3N DE LA PRESIDENTA DE LA CORTE INTERAMERICANA DE DERECHOS HUMANOS DE DE DICIEMBRE DE CASO CUSCUL PIVARAL Y OTROS VS. GUATEMALA REINTEGRO AL FONDO DE ASISTENCIA LEGAL DE V\u00cdCTIMAS VISTO La Sentencia de excepci\u00f3n preliminar fondo reparaciones y costas en adelante la Sentencia o el Fallo dictada por la Corte Interamericana de Derechos Humanos en adelante la Corte Interamericana la Corte o el Tribunal el de agosto de La Sentencia de interpretaci\u00f3n emitida por la Corte el de mayo de ", - "values": [ - "Corte Interamericana de Derechos Humanos" - ] - }, - { - "text": "RESOLUCI\u00d3N DE LA CORTE INTERAMERICANA DE DERECHOS HUMANOS DE DE NOVIEMBRE DE CASO COLINDRES SCHONENBERG VS. EL SALVADOR SUPERVISI\u00d3N DE CUMPLIMIENTO DE SENTENCIA VISTO La Sentencia de fondo reparaciones y costas en adelante la Sentencia dictada por la Corte Interamericana de Derechos Humanos en adelante la Corte Interamericana la Corte o el Tribunal el de febrero de La Corte declar\u00f3 la responsabilidad internacional de la Rep\u00fablica de El Salvador en adelante el Estado o El Salvador por la ", - "values": [ - "Corte Interamericana de Derechos Humanos" - ] - }, - { - "text": "INFORME No. CASO ADMISIBILIDAD Y FONDO VICTOR HENRY MINA CUERO ECUADOR DE MAYO DE I. RESUMEN El de marzo de la Comisi\u00f3n Interamericana de Derechos Humanos en adelante la Comisi\u00f3n Interamericana la Comisi\u00f3n o la CIDH recibi\u00f3 una petici\u00f3n presentada por el se\u00f1or V\u00edctor Henry Mina Cuero en adelante la parte peticionaria en la cual se alega la responsabilidad internacional de la Rep\u00fablica del Ecuador en adelante el Estado de Ecuador el Estado o Ecuador en su propio perjuicio. El aleg\u00f3 una", - "values": [ - "Comisi\u00f3n Interamericana de Derechos Humanos" - ] - }, - { - "text": " de octubre de REF Caso N\u00ba V\u00edctor Henry Mina Cuero Ecuador Se\u00f1or Secretario Tengo el agrado de dirigirme a usted en nombre de la Comisi\u00f3n Interamericana de Derechos Humanos con el objeto de someter a la jurisdicci\u00f3n de la Honorable Corte Interamericana de Derechos Humanos el Caso V\u00edctor Henry Mina Cuero de la Rep\u00fablica de Ecuador en adelante el Estado el Estado ecuatoriano o Ecuador. El presente caso se refiere a la responsabilidad internacional del Estado por una serie de violaciones en el", - "values": [ - "Comisi\u00f3n Interamericana de Derechos Humanos" - ] - }, - { - "text": "INFORME No. CASO FONDO INTEGRANTES Y MILITANTES DE LA UNI\u00d3N PATRI\u00d3TICA COLOMBIA DE DICIEMBRE DE I. RESUMEN El de diciembre de la Comisi\u00f3n Interamericana de Derechos Humanos en adelante la Comisi\u00f3n Interamericana la Comisi\u00f3n o la CIDH recibi\u00f3 una petici\u00f3n presentada por la Corporaci\u00f3n para la Defensa y Promoci\u00f3n de los Derechos Humanos REINICIAR y la Comisi\u00f3n Colombiana de Juristas en adelante la parte peticionaria en la cual se alega la responsabilidad internacional de la Rep\u00fablica de ", - "values": [ - "Comisi\u00f3n Interamericana de Derechos Humanos" - ] - }, - { - "text": "REF Caso N\u00ba Integrantes y Militantes de la Uni\u00f3n Patri\u00f3tica Colombia de junio de Se\u00f1or Secretario Tengo el agrado de dirigirme a usted en nombre de la Comisi\u00f3n Interamericana de Derechos Humanos con el objeto de presentar ante la Honorable Corte Interamericana de Derechos Humanos el Caso N\u00ba Integrantes y Militantes de la Uni\u00f3n Patri\u00f3tica respecto de la Rep\u00fablica de Colombia en adelante el Estado el Estado colombiano o Colombia relacionado con las sucesivas y graves violaciones de derechos ", - "values": [ - "Comisi\u00f3n Interamericana de Derechos Humanos" - ] - }, - { - "text": "INFORME N\u00ba CASO Sobre Admisibilidad COLOMBIA de marzo de Los peticionarios en esta causa REINICIAR y la Comisi\u00f3n Colombiana de Juristas alegan que la Rep\u00fablica de Colombia el Estado o el Estado colombiano o Colombia es responsable de haber violado derechos consagrados en la Convenci\u00f3n Americana sobre Derechos Humanos la Convenci\u00f3n o la Convenci\u00f3n Americana en relaci\u00f3n con la persecuci\u00f3n de miembros del partido pol\u00edtico Uni\u00f3n Patri\u00f3tica. La Comisi\u00f3n Interamericana de Derechos Humanos la ", - "values": [ - "Comisi\u00f3n Interamericana de Derechos Humanos" - ] - }, - { - "text": "RESOLUCI\u00d3N DE LA CORTE INTERAMERICANA DE DERECHOS HUMANOS DE DE NOVIEMBRE DE MEDIDAS PROVISIONALES RESPECTO DE M\u00c9XICO ASUNTO CASTRO RODR\u00cdGUEZ VISTO Las resoluciones dictadas por la Corte Interamericana de Derechos Humanos en adelante la Corte Interamericana la Corte o el Tribunal el de febrero y de agosto de de junio de y de noviembre de mediante las cuales orden\u00f3 a los Estados Unidos Mexicanos en adelante el Estado el Estado mexicano o M\u00e9xico la adopci\u00f3n de medidas provisionales para", - "values": [ - "Corte Interamericana de Derechos Humanos" - ] - }, - { - "text": "VOTO CONCURRENTE DEL JUEZ EUGENIO RA\u00daL ZAFFARONI EN LA SENTENCIA DE DE AGOSTO DE DE LA CORTE INTERAMERICANA DE DERECHOS HUMANOS CASO URRUTIA LAUBREAUX VS. CHILE La sanci\u00f3n que se impuso al magistrado en este caso es reveladora del sentido corporativo que los jueces de cuerpos colegiados pretendieron asignar al Poder Judicial del que eran parte. Est\u00e1 dicho y no controvertido que en el escrito remitido por la v\u00edctima \u00e9sta criticaba el comportamiento del m\u00e1ximo tribunal en un per\u00edodo de de ", - "values": [ - "Corte Interamericana de Derechos Humanos" - ] - }, - { - "text": "RESOLUCI\u00d3N DE LA CORTE INTERAMERICANA DE DERECHOS HUMANOS DE DE NOVIEMBRE DE CASO VICKY HERNANDEZ Y OTROS VS. HONDURAS ADOPCI\u00d3N DE MEDIDAS PROVISIONALES VISTO El escrito de sometimiento del caso y el Informe de Fondo de la Comisi\u00f3n Interamericana de Derechos Humanos en adelante la Comisi\u00f3n Interamericana o la Comisi\u00f3n el escrito de solicitudes argumentos y pruebas en adelante el escrito de solicitudes y argumentos de las representantes de las presuntas v\u00edctimas en adelante las representantes", - "values": [ - "Corte Interamericana de Derechos Humanos" - ] - }, - { - "text": "VOTO CONCURRENTE DEL JUEZ L. PATRICIO PAZMI\u00d1O FREIRE CASO URRUTIA LAUBREAUX VS. CHILE SENTENCIA DE DE AGOSTO DE En la Sentencia del caso Urrutia Laubreaux vs. Chile la Corte desarroll\u00f3 y fortaleci\u00f3 los est\u00e1ndares relativos a la independencia judicial y en particular las garant\u00edas contra presiones internas y externas necesarias para asegurarla. Respecto a la independencia interna este Tribunal citando el Estatuto del Juez Iberoamericano se\u00f1al\u00f3 que el Estado debe asegurar que los jueces no se", - "values": [ - "Corte Interamericana de Derechos Humanos" - ] - }, - { - "text": "CORTE INTERAMERICANA DE DERECHOS HUMANOS CASO URRUTIA LAUBREAUX VS. CHILE SENTENCIA DE DE AGOSTO DE Excepciones Preliminares Fondo Reparaciones y Costas En el caso Urrutia Laubreaux Vs. Chile la Corte Interamericana de Derechos Humanos en adelante la Corte Interamericana la Corte o este Tribunal integrada por los siguientes jueces Elizabeth Odio Benito Presidenta L. Patricio Pazmi\u00f1o Freire Vicepresidente Humberto Antonio Sierra Porto Juez Eduardo Ferrer MacGregor Poisot Juez Eugenio Ra\u00fal y ", - "values": [ - "Corte Interamericana de Derechos Humanos" - ] - }, - { - "text": "RESOLUCI\u00d3N DE LA PRESIDENTA DE LA CORTE INTERAMERICANA DE DERECHOS HUMANOS DE DE FEBRERO DE CASO BEDOYA LIMA Y OTRA VS. COLOMBIA VISTO El escrito de sometimiento del caso y el Informe de Fondo de la Comisi\u00f3n Interamericana de Derechos Humanos en adelante la Comisi\u00f3n Interamericana o la Comisi\u00f3n el escrito de solicitudes argumentos y pruebas en adelante el escrito de solicitudes y argumentos de las representantes de las presuntas v\u00edctimas en adelante las representantes el escrito de al del ", - "values": [ - "Corte Interamericana de Derechos Humanos" - ] - }, - { - "text": "RESOLUCI\u00d3N DE LA PRESIDENTA DE LA CORTE INTERAMERICANA DE DERECHOS HUMANOS DE DE FEBRERO DE CASO MOYA SOL\u00cdS VS. PER\u00da VISTO El escrito de sometimiento del caso y el Informe de Fondo de la Comisi\u00f3n Interamericana de Derechos Humanos en adelante la Comisi\u00f3n Interamericana o la Comisi\u00f3n el escrito de solicitudes argumentos y pruebas en adelante el escrito de solicitudes y argumentos presentado por la presunta v\u00edctima el escrito de excepciones preliminares y contestaci\u00f3n al sometimiento del caso", - "values": [ - "Corte Interamericana de Derechos Humanos" - ] - }, - { - "text": "VOTO DISIDENTE DEL JUEZ EDUARDO VIO GROSSI RESOLUCI\u00d3N DE LA CORTE INTERAMERICANA DE DERECHOS HUMANOS DE DE FEBRERO DE CASO INTEGRANTES Y MILITANTES DE LA UNI\u00d3N PATRI\u00d3TICA VS. COLOMBIA. CONSIDERANDO PRIMERO Que las causales de recusaci\u00f3n de peritos previstas en el art\u00edculo del Reglamento de la Corte Interamericana de Derechos Humanos en adelante la Corte tienen por finalidad garantizar la imparcialidad de dichos auxiliares de justicia del \u00f3rgano jurisdiccional y por ende principalmente de ", - "values": [ - "Corte Interamericana de Derechos Humanos" - ] - }, - { - "text": "RESOLUCI\u00d3N DE LA CORTE INTERAMERICANA DE DERECHOS HUMANOS DE DE FEBRERO DE CASO INTEGRANTES Y MILITANTES DE LA UNI\u00d3N PATRI\u00d3TICA VS. COLOMBIA VISTO Los escritos de sometimiento del caso presentados por el Estado y por la Comisi\u00f3n Interamericana de Derechos Humanos en adelante la Comisi\u00f3n Interamericana o la Comisi\u00f3n el Informe de Fondo de la Comisi\u00f3n los escritos de solicitudes argumentos y pruebas en adelante los escritos de solicitudes y argumentos de los intervinientes comunes de las en", - "values": [ - "Corte Interamericana de Derechos Humanos" - ] - }, - { - "text": "RESOLUCI\u00d3N DE LA PRESIDENTA DE LA CORTE INTERAMERICANA DE DERECHOS HUMANOS DE DE ENERO DE CASO CUYA LAVY Y OTROS VS. PER\u00da CONVOCATORIA A AUDIENCIA VISTO El escrito de sometimiento del caso y el Informe de Fondo de la Comisi\u00f3n Interamericana de Derechos Humanos en adelante la Comisi\u00f3n Interamericana o la Comisi\u00f3n los cuatro escritos de solicitudes argumentos y pruebas en adelante los escritos de solicitudes y argumentos de las tres representaciones de las presuntas v\u00edctimas en adelante los o", - "values": [ - "Corte Interamericana de Derechos Humanos" - ] - }, - { - "text": "RESOLUCI\u00d3N DE LA CORTE INTERAMERICANA DE DERECHOS HUMANOS DE DE MARZO DE CASO BEDOYA LIMA Y OTRA VS. COLOMBIA ADOPCI\u00d3N DE MEDIDAS PROVISIONALES VISTO El escrito de sometimiento del caso y el Informe de Fondo de la Comisi\u00f3n Interamericana de Derechos Humanos en adelante la Comisi\u00f3n Interamericana o la Comisi\u00f3n el escrito de solicitudes argumentos y pruebas en adelante el escrito de solicitudes y argumentos de las representantes de las presuntas v\u00edctimas en adelante las representantes y el ", - "values": [ - "Corte Interamericana de Derechos Humanos" - ] - }, - { - "text": "RESOLUCI\u00d3N DE LA CORTE INTERAMERICANA DE DERECHOS HUMANOS DE DE MARZO DE CASO BEDOYA LIMA Y OTRA VS. COLOMBIA VISTO La intervenci\u00f3n realizada por el Agente del Estado de la Rep\u00fablica de Colombia en adelante el Estado o Colombia en la audiencia p\u00fablica el de marzo de por medio de la cual solicit\u00f3 la recusaci\u00f3n de la Presidenta y de todos los Jueces de la Corte presentes en la audiencia p\u00fablica a excepci\u00f3n del Juez Eduardo Vio Grossi alegando falta de garant\u00edas y objetividad en este proceso ", - "values": [ - "Corte Interamericana de Derechos Humanos" - ] - }, - { - "text": "RESOLUCI\u00d3N DE LA PRESIDENTA DE LA CORTE INTERAMERICANA DE DERECHOS HUMANOS DE DE MARZO DE CASO BEDOYA LIMA Y OTRA VS. COLOMBIA VISTO La Resoluci\u00f3n de la Presidenta de la Corte Interamericana de Derechos Humanos en adelante Corte Interamericana de de febrero de mediante la cual entre otras disposiciones acord\u00f3 convocar a la Rep\u00fablica de Colombia a las representantes y a la Comisi\u00f3n Interamericana de Derechos Humanos a una audiencia p\u00fablica sobre el fondo y las eventuales reparaciones y que", - "values": [ - "Corte Interamericana de Derechos Humanos" - ] - }, - { - "text": "VOTO DISIDENTE DEL JUEZ EDUARDO FERRER MACGREGOR POISOT CASO CORDERO BERNAL VS. PER\u00da SENTENCIA DE DE FEBRERO DE EXCEPCI\u00d3N PRELIMIMAR Y FONDO INTRODUCCI\u00d3N Con el mayor respeto disiento con lo decidido en esta Sentencia. Estimo que se perdi\u00f3 una oportunidad para reafirmar la jurisprudencia interamericana en materia de independencia judicial y explorar de manera detallada el grado de motivaci\u00f3n que se requiere en un proceso administrativo sancionador aplicado a juezas y jueces en el que se ", - "values": [ - "Corte Interamericana de Derechos Humanos" - ] - }, - { - "text": "VOTO DISIDENTE JUEZ L. PATRICIO PAZMI\u00d1O FREIRE CASO CORDERO BERNAL VS. PER\u00da SENTENCIA DE DE FEBRERO DE Con el respeto acostumbrado por las decisiones de la Corte me permito exponer las razones por las cuales me apart\u00e9 de la decisi\u00f3n mayoritaria en la que se resolvi\u00f3 que el Estado peruano no hab\u00eda violado los derechos reconocidos en los art\u00edculos c y de la Convenci\u00f3n Americana sobre Derechos Humanos en adelante la Convenci\u00f3n en perjuicio del se\u00f1or H\u00e9ctor Fidel Cordero Bernal. Si bien con", - "values": [ - "Corte Interamericana de Derechos Humanos" - ] - }, - { - "text": "RESOLUCI\u00d3N DE LA PRESIDENTA DE LA CORTE INTERAMERICANA DE DERECHOS HUMANOS DE DE ABRIL DE CASO GONZALEZ Y OTROS VS. VENEZUELA VISTO El escrito de sometimiento del caso y el Informe de Fondo de la Comisi\u00f3n Interamericana de Derechos Humanos en adelante tambi\u00e9n la Comisi\u00f3n Interamericana o la Comisi\u00f3n el escrito de solicitudes argumentos y pruebas en adelante el escrito de solicitudes y argumentos presentado por los representantes de las presuntas v\u00edctimas en adelante los representantes o los", - "values": [ - "Corte Interamericana de Derechos Humanos" - ] - }, - { - "text": "RESOLUCI\u00d3N DE LA PRESIDENTA DE LA CORTE INTERAMERICANA DE DERECHOS HUMANOS DE DE ABRIL DE CASO PALACIO URRUTIA Y OTROS VS. ECUADOR VISTO El escrito de sometimiento del caso y el Informe de Fondo de la Comisi\u00f3n Interamericana de Derechos Humanos en adelante la Comisi\u00f3n Interamericana o la Comisi\u00f3n el escrito de solicitudes argumentos y pruebas en adelante escrito de solicitudes y argumentos de los representantes de las presuntas v\u00edctimas en adelante los representantes y el escrito de al del", - "values": [ - "Corte Interamericana de Derechos Humanos" - ] - }, - { - "text": "RESOLUCI\u00d3N DE LA CORTE INTERAMERICANA DE DERECHOS HUMANOS DE DE ABRIL DE CASO JULIEN GRISONAS Y OTROS VS. ARGENTINA VISTO El escrito de sometimiento del caso y el Informe de Admisibilidad y Fondo No. de la Comisi\u00f3n Interamericana de Derechos Humanos en adelante la Comisi\u00f3n Interamericana o la Comisi\u00f3n el escrito de solicitudes argumentos y pruebas en adelante escrito de solicitudes y argumentos del representante de las presuntas v\u00edctimas en adelante el representante y el escrito de de y", - "values": [ - "Corte Interamericana de Derechos Humanos" - ] - }, - { - "text": "RESOLUCI\u00d3N DE LA PRESIDENTA DE LA CORTE INTERAMERICANA DE DERECHOS HUMANOS DE DE ABRIL DE CASO PUEBLOS IND\u00cdGENAS MAYA KAQCHIKEL DE SUMPANGO Y OTROS VS. GUATEMALA CONVOCATORIA A AUDIENCIA VISTO El escrito de sometimiento del caso y el Informe de Fondo de la Comisi\u00f3n Interamericana de Derechos Humanos en adelante la Comisi\u00f3n Interamericana o la Comisi\u00f3n el escrito de solicitudes argumentos y pruebas en adelante el escrito de solicitudes y argumentos de los representantes de las presuntas en ", - "values": [ - "Corte Interamericana de Derechos Humanos" - ] - }, - { - "text": "RESOLUCI\u00d3N DE LA PRESIDENTA DE LA CORTE INTERAMERICANA DE DERECHOS HUMANOS DE DE ABRIL DE CASO MAIDANIK Y OTROS VS. URUGUAY VISTO El escrito de sometimiento del caso y el Informe de Fondo de la Comisi\u00f3n Interamericana de Derechos Humanos en adelante tambi\u00e9n la Comisi\u00f3n Interamericana o la Comisi\u00f3n el escrito de solicitudes argumentos y pruebas en adelante el escrito de solicitudes y argumentos presentado por los representantes de las presuntas v\u00edctimas en adelante los representantes el de", - "values": [ - "Corte Interamericana de Derechos Humanos" - ] - }, - { - "text": "RESOLUCI\u00d3N DE LA PRESIDENTA DE LA CORTE INTERAMERICANA DE DERECHOS HUMANOS DE DE ABRIL DE CASO PROFESORES DE CHA\u00d1ARAL Y OTRAS MUNICIPALIDADES VS. CHILE VISTO El escrito de sometimiento del caso y el Informe de Fondo de la Comisi\u00f3n Interamericana de Derechos Humanos en adelante la Comisi\u00f3n Interamericana o la Comisi\u00f3n el escrito de solicitudes argumentos y pruebas en adelante el escrito de solicitudes y argumentos de los representantes de las presuntas v\u00edctimas en adelante los representantes ", - "values": [ - "Corte Interamericana de Derechos Humanos" - ] - }, - { - "text": "RESOLUCI\u00d3N DE LA PRESIDENTA DE LA CORTE INTERAMERICANA DE DERECHOS HUMANOS DE DE ABRIL DE MEDIDAS PROVISIONALES RESPECTO DE LA REP\u00daBLICA FEDERATIVA DE BRASIL ASUNTOS DE LA UNIDAD DE INTERNACI\u00d3N SOCIOEDUCATIVA DEL COMPLEJO PENITENCIARIO DE CURADO DEL COMPLEJO PENITENCIARIO DE PEDRINHAS Y DEL INSTITUTO PENAL PL\u00c1CIDO DE S\u00c1 CARVALHO VISTOS Las Resoluciones de la Corte Interamericana de Derechos Humanos en adelante la Corte la Corte Interamericana o el Tribunal en el Asunto de la Unidad de en ", - "values": [ - "Corte Interamericana de Derechos Humanos" - ] - }, - { - "text": "RESOLUCI\u00d3N DE LA CORTE INTERAMERICANA DE DERECHOS HUMANOS DE DE ENERO DE CASO ROSADIO VILLAVICENCIO VS. PER\u00da SUPERVISI\u00d3N DE CUMPLIMIENTO DE SENTENCIA VISTO La Sentencia de excepciones preliminares fondo reparaciones y costas en adelante la Sentencia o el Fallo dictada por la Corte Interamericana de Derechos Humanos en adelante la Corte Interamericana la Corte o el Tribunal el de octubre de En dicha Sentencia la Corte declar\u00f3 internacionalmente responsable a la Rep\u00fablica del Per\u00fa en el o ", - "values": [ - "Corte Interamericana de Derechos Humanos" - ] - }, - { - "text": "RESOLUCI\u00d3N DE LA CORTE INTERAMERICANA DE DERECHOS HUMANOS DE DE ENERO DE CASO ASOCIACI\u00d3N NACIONAL DE CESANTES Y JUBILADOS DE LA SUPERINTENDENCIA NACIONAL DE ADMINISTRACI\u00d3N TRIBUTARIA ANCEJUBSUNAT VS. PER\u00da SUPERVISI\u00d3N DE CUMPLIMIENTO DE SENTENCIA VISTO La Sentencia de excepciones preliminares fondo reparaciones y costas en adelante la Sentencia o el Fallo dictada por la Corte Interamericana de Derechos Humanos en adelante la Corte Interamericana la Corte o el Tribunal el de noviembre de En ", - "values": [ - "Corte Interamericana de Derechos Humanos" - ] - }, - { - "text": "RESOLUCI\u00d3N DE LA CORTE INTERAMERICANA DE DERECHOS HUMANOS DE DE ENERO DE CASO XIMENES LOPES VS. BRASIL SUPERVISI\u00d3N DE CUMPLIMIENTO DE SENTENCIA VISTO La Sentencia de fondo reparaciones y costas en adelante la Sentencia o el Fallo emitida por la Corte Interamericana de Derechos Humanos en adelante la Corte Interamericana la Corte o el Tribunal el de julio de Los hechos del caso ocurrieron cuando el se\u00f1or Dami\u00e3o Ximenes Lopes quien padec\u00eda de discapacidad mental fue internado el de de ", - "values": [ - "Corte Interamericana de Derechos Humanos" - ] - }, - { - "text": "RESOLUCI\u00d3N DE LA CORTE INTERAMERICANA DE DERECHOS HUMANOS DE DE MARZO DE CASO ACOSTA Y OTROS VS. NICARAGUA SUPERVISI\u00d3N DE CUMPLIMIENTO DE SENTENCIA VISTO La Sentencia de excepciones preliminares fondo reparaciones y costas dictada por la Corte Interamericana de Derechos Humanos en adelante la Corte Interamericana la Corte o el Tribunal el de marzo de La Corte declar\u00f3 la responsabilidad internacional de la Rep\u00fablica de Nicaragua en adelante el Estado o Nicaragua por la impunidad parcial ", - "values": [ - "Corte Interamericana de Derechos Humanos" - ] - }, - { - "text": "INFORME No. CASO INFORME DE FONDO SANTIAGO LEGUIZAM\u00d3N ZAV\u00c1N Y FAMILIA PARAGUAY DE JULIO DE I. INTRODUCCI\u00d3N El de enero de la Comisi\u00f3n Interamericana de Derechos Humanos en adelante la Comisi\u00f3n la Comisi\u00f3n Interamericana o la CIDH recibi\u00f3 una petici\u00f3n presentada por la Sociedad Interamericana de Prensa SIP en adelante los peticionarios o la parte peticionaria en la cual se alega la responsabilidad internacional de la Rep\u00fablica del Paraguay en adelante el Estado el Estado paraguayo o en ", - "values": [ - "Comisi\u00f3n Interamericana de Derechos Humanos" - ] - }, - { - "text": " de febrero de REF Caso N\u00ba Santiago Leguizam\u00f3n Zav\u00e1n y familia Paraguay Se\u00f1or Secretario Tengo el agrado de dirigirme a usted en nombre de la Comisi\u00f3n Interamericana de Derechos Humanos con el objeto de someter a la jurisdicci\u00f3n de la Honorable Corte Interamericana de Derechos Humanos el Caso N\u00ba Santiago Leguizam\u00f3n Zav\u00e1n y familia respecto de la Rep\u00fablica de Paraguay en adelante el Estado el Estado paraguayo o Paraguay. El presente caso se refiere a la muerte de Santiago Leguizam\u00f3n el de ", - "values": [ - "Comisi\u00f3n Interamericana de Derechos Humanos" - ] - }, - { - "text": "INFORME No. PETICI\u00d3N P ADMISIBILIDAD SANTIAGO LEGUIZAM\u00d3N ZAV\u00c1N Y FAMILIA PARAGUAY DE ABRIL DE I. RESUMEN El de enero de la Comisi\u00f3n Interamericana de Derechos Humanos en adelante la Comisi\u00f3n la Comisi\u00f3n Interamericana o la CIDH recibi\u00f3 una denuncia presentada por la Sociedad Interamericana de Prensa en adelante la peticionaria en la cual aleg\u00f3 la responsabilidad internacional del Estado de Paraguay en adelante el Estado o Paraguay o Estado paraguayo por presuntas violaciones de derechos ", - "values": [ - "Comisi\u00f3n Interamericana de Derechos Humanos" - ] - }, - { - "text": "REF Caso N\u00ba Antonio Tavares Pereira y otros Brasil de febrero de Se\u00f1or Secretario Tengo el agrado de dirigirme a usted en nombre de la Comisi\u00f3n Interamericana de Derechos Humanos con el objeto de someter a la jurisdicci\u00f3n de la Honorable Corte Interamericana de Derechos Humanos el Caso Antonio Tavares Pereira y otros de la Rep\u00fablica Federativa de Brasil en adelante el Estado de Brasil Estado brasile\u00f1o o Brasil. El presente caso se refiere a la responsabilidad del Estado brasile\u00f1o por el ", - "values": [ - "Comisi\u00f3n Interamericana de Derechos Humanos" - ] - }, - { - "text": "INFORME No. CASO INFORME DE FONDO ANTONIO TAVARES PEREIRA Y OTROS BRASIL de marzo de I. INTRODUCCI\u00d3N El de enero de la Comisi\u00f3n Interamericana de Derechos Humanos en adelante la Comisi\u00f3n Interamericana la Comisi\u00f3n o la CIDH recibi\u00f3 una petici\u00f3n en la cual se alega la responsabilidad internacional de la Rep\u00fablica Federativa de Brasil el Estado el Estado brasile\u00f1o o Brasil por el asesinato del trabajador rural Antonio Tavares Pereira as\u00ed como por las lesiones corporales sufridas por otros", - "values": [ - "Comisi\u00f3n Interamericana de Derechos Humanos" - ] - }, - { - "text": " de diciembre de REF Caso N\u00ba Gabriel Sales Pimenta Brasil Se\u00f1or Secretario Tengo el agrado de dirigirme a usted en nombre de la Comisi\u00f3n Interamericana de Derechos Humanos con el objeto de someter a la jurisdicci\u00f3n de la Honorable Corte Interamericana de Derechos Humanos el Caso Gabriel Sales Pimenta de la Rep\u00fablica Federativa de Brasil en adelante el Estado de Brasil o Brasil. El presente caso se refiere a la responsabilidad del Estado brasile\u00f1o por la situaci\u00f3n de impunidad en la que se ", - "values": [ - "Comisi\u00f3n Interamericana de Derechos Humanos" - ] - }, - { - "text": "INFORME No. CASO INFORME DE FONDO GABRIEL SALES PIMENTA BRASIL I. INTRODUCCI\u00d3N El de noviembre de la Comisi\u00f3n Interamericana de Derechos Humanos en adelante la Comisi\u00f3n Interamericana la Comisi\u00f3n o la CIDH recibi\u00f3 una petici\u00f3n en la cual se alega la responsabilidad internacional de la Rep\u00fablica Federativa de Brasil en adelante el Estado el Estado brasile\u00f1o o Brasil por el asesinato del defensor de derechos humanos Gabriel Sales Pimenta y por la impunidad que sigui\u00f3 a los hechos. Se alega ", - "values": [ - "Comisi\u00f3n Interamericana de Derechos Humanos" - ] - }, - { - "text": "INFORME No. PETICI\u00d3N ADMISIBILIDAD GABRIEL SALES PIMENTA BRASIL de octubre de I. RESUMEN El de noviembre de el Centro por la Justicia y el Derecho Internacional CEJIL y la Comiss\u00e3o Pastoral da Terra CPT en adelante los peticionarios presentaron una denuncia ante la Comisi\u00f3n Interamericana de Derechos Humanos en adelante la Comisi\u00f3n la Comisi\u00f3n Interamericana o la CIDH en contra de la Rep\u00fablica Federativa de Brasil en adelante el Estado o Brasil por la presunta violaci\u00f3n del derecho a la", - "values": [ - "Comisi\u00f3n Interamericana de Derechos Humanos" - ] - }, - { - "text": "INFORME No. PETICI\u00d3N ADMISIBILIDAD STEVEN EDWARD HENDRIX GUATEMALA de octubre de I. RESUMEN El de noviembre de el se\u00f1or Steven Edward Hendrix ciudadano estadounidense en adelante el peticionario yo la presunta v\u00edctima present\u00f3 una petici\u00f3n en nombre propio ante la Comisi\u00f3n Interamericana de Derechos Humanos en adelante la Comisi\u00f3n Comisi\u00f3n Interamericana o CIDH contra la Rep\u00fablica de Guatemala en adelante el Estado o Estado guatemalteco porque se le habr\u00eda impedido el ejercicio de la de", - "values": [ - "Comisi\u00f3n Interamericana de Derechos Humanos" - ] - }, - { - "text": "INFORME No. CASO INFORME DE FONDO Steven Edward Hendrix GUATEMALA I. INTRODUCCI\u00d3N El de noviembre de la Comisi\u00f3n Interamericana de Derechos Humanos en adelante la Comisi\u00f3n Interamericana la Comisi\u00f3n o la CIDH recibi\u00f3 una petici\u00f3n presentada por Steven Edward Hendrix en adelante la parte peticionaria en la cual se alega la responsabilidad internacional de la Rep\u00fablica de Guatemala en adelante el Estado guatemalteco el Estado o Guatemala por la violaci\u00f3n de varios derechos consagrados en la ", - "values": [ - "Comisi\u00f3n Interamericana de Derechos Humanos" - ] - }, - { - "text": "INFORME No. PETICI\u00d3N ADMISIBILIDAD MIEMBROS DEL SINDICATO \u00daNICO DE TRABAJADORES DE ECASA PER\u00da de febrero de I. RESUMEN El y de noviembre de la Comisi\u00f3n Interamericana de Derechos Humanos en adelante tambi\u00e9n la Comisi\u00f3n Interamericana la Comisi\u00f3n o la CIDH recibi\u00f3 una petici\u00f3n presentada por el se\u00f1or Jes\u00fas Mogoll\u00f3n Pablo \u00c1lvarez y el Sindicato \u00danico de Trabajadores de ECASA en adelante tambi\u00e9n el SUTECASA o los peticionarios a favor de los miembros del Sindicato \u00danico de Trabajadores de ", - "values": [ - "Comisi\u00f3n Interamericana de Derechos Humanos" - ] - }, - { - "text": " de noviembre de REF Caso N\u00ba Miembros del Sindicato \u00danico de Trabajadores de Ecasa SUTECASA Per\u00fa Se\u00f1or Secretario Tengo el agrado de dirigirme a usted en nombre de la Comisi\u00f3n Interamericana de Derechos Humanos con el objeto de someter a la jurisdicci\u00f3n de la Honorable Corte Interamericana de Derechos Humanos el Caso No. Miembros del Sindicato \u00danico de Trabajadores de Ecasa SUTECASA respecto de la Rep\u00fablica de Per\u00fa en adelante el Estado el Estado peruano o Per\u00fa relacionado con el de fallos", - "values": [ - "Comisi\u00f3n Interamericana de Derechos Humanos" - ] - }, - { - "text": "INFORME No. CASO FONDO INFORME DE FONDO MIEMBROS DEL SINDICATO UNICO DE TRABAJADORES DE ECASA SUTECASAPERU de julio de I. RESUMEN El y de noviembre de la Comisi\u00f3n Interamericana de Derechos Humanos en adelante tambi\u00e9n la Comisi\u00f3n Interamericana la Comisi\u00f3n o la CIDH recibi\u00f3 una petici\u00f3n presentada por el se\u00f1or Jes\u00fas Mogoll\u00f3n Pablo \u00c1lvarez y el Sindicato \u00danico de Trabajadores de ECASA en adelante tambi\u00e9n el SUTECASA o los peticionarios a favor de los miembros del Sindicato \u00danico de de ", - "values": [ - "Comisi\u00f3n Interamericana de Derechos Humanos" - ] - }, - { - "text": "INFORME No. CASO INFORME DE FONDO JOFFRE ANTONIO AROCA PALMA Y FAMILIA ECUADOR I. INTRODUCCI\u00d3N El de junio de la Comisi\u00f3n Interamericana de Derechos Humanos en adelante la Comisi\u00f3n Interamericana la Comisi\u00f3n o la CIDH recibi\u00f3 una petici\u00f3n presentada por Winston Joffre Aroca Melgar y Gabriel Palacios Verdesoto en adelante la parte peticionaria en la cual se alega la responsabilidad internacional de la Rep\u00fablica del Ecuador en adelante el Estado ecuatoriano el Estado o Ecuador por la ilegal", - "values": [ - "Comisi\u00f3n Interamericana de Derechos Humanos" - ] - }, - { - "text": "INFORME No. PETICI\u00d3N ADMISIBILIDAD JOFFRE ANTONIO AROCA PALMA ECUADOR de julio de I. RESUMEN El de junio de la Comisi\u00f3n Interamericana de Derechos Humanos en adelante la Comisi\u00f3n recibi\u00f3 una petici\u00f3n presentada por Winston Joffre Aroca Melgar y Gabriel Palacios Verdesoto en adelante los peticionarios en la cual se alega la responsabilidad de la Rep\u00fablica del Ecuador por la muerte de Joffre Antonio Aroca Palma el de febrero de en la ciudad de Guayaquil Rep\u00fablica del Ecuador. Los que ", - "values": [ - "Comisi\u00f3n Interamericana de Derechos Humanos" - ] - }, - { - "text": "Comisi\u00f3n Interamericana de Derechos Humanos REF Organizaci\u00f3n de los Estados Americanos de noviembre de Caso N Joffre Antonio Aroca Palma y familia Ecuador Se\u00f1or Secretario Tengo el agrado de dirigirme a usted en nombre de la Comisi\u00f3n Interamericana de Derechos Humanos con el objeto de someter a la jurisdicci\u00f3n de la Honorable Corte Interamericana de Derechos Humanos el Caso Joffre Antonio Aroca Palma y familia de la Rep\u00fablica de Ecuador en adelante el Estado el Estado ecuatoriano o Ecuador.", - "values": [ - "Comisi\u00f3n Interamericana de Derechos Humanos" - ] - }, - { - "text": "INFORME No. CASO INFORME DE FONDO PUEBLO IND\u00cdGENA UWA Y SUS MIEMBROS COLOMBIA I. INTRODUCCI\u00d3N El de abril de la Comisi\u00f3n Interamericana de Derechos Humanos en adelante la Comisi\u00f3n Interamericana la Comisi\u00f3n o la CIDH recibi\u00f3 una petici\u00f3n presentada por la Asociaci\u00f3n de Cabildos Mayores del Pueblo Uwa la Organizaci\u00f3n Nacional Ind\u00edgena de Colombia ONIC y la Coalition for Amazonian People and The Environment en adelante la parte peticionaria en la cual se alega la responsabilidad de en el", - "values": [ - "Comisi\u00f3n Interamericana de Derechos Humanos" - ] - }, - { - "text": "INFORME No. CASO INFORME DE ADMISIBILIDAD PUEBLO UWA COLOMBIA DE JULIO DE I. RESUMEN La Comisi\u00f3n Interamericana de Derechos Humanos en adelante Comisi\u00f3n Interamericana Comisi\u00f3n o CIDH recibi\u00f3 el de abril de una petici\u00f3n presentada por el pueblo Uwa y sus miembros en adelante presuntas v\u00edctimas representados por la Asociaci\u00f3n de Cabildos Mayores del pueblo Uwa la Organizaci\u00f3n Nacional Ind\u00edgena de Colombia y Coalition for Amazonian Peoples and Environment en adelante peticionarios en de ", - "values": [ - "Comisi\u00f3n Interamericana de Derechos Humanos" - ] - }, - { - "text": " de octubre de REF Caso N\u00ba Pueblo Ind\u00edgena Uwa y sus Miembros Colombia Se\u00f1or Secretario Tengo el agrado de dirigirme a usted en nombre de la Comisi\u00f3n Interamericana de Derechos Humanos con el objeto de someter a la jurisdicci\u00f3n de la Honorable Corte Interamericana de Derechos Humanos el caso No. Pueblo Ind\u00edgena Uwa y sus Miembros respecto de la Rep\u00fablica de Colombia en adelante el Estado el Estado colombiano o Colombia. El caso se relaciona con la responsabilidad internacional de Colombia ", - "values": [ - "Comisi\u00f3n Interamericana de Derechos Humanos" - ] - }, - { - "text": "INFORME No. CASO INFORME DE FONDO PUEBLOS IND\u00cdGENAS TAGAERI Y TAROMENANE EN AISLAMIENTO VOLUNTARIO ECUADOR I. INTRODUCCI\u00d3N El de mayo de la Comisi\u00f3n Interamericana de Derechos Humanos en adelante la Comisi\u00f3n Interamericana la Comisi\u00f3n o la CIDH recibi\u00f3 una petici\u00f3n presentada por Fernando Ponce Villac\u00eds Ra\u00fal Moscoso y Juan Guevara en adelante la parte peticionaria en la cual se alega la responsabilidad internacional de la Rep\u00fablica de Ecuador en adelante el Estado ecuatoriano el Estado o ", - "values": [ - "Comisi\u00f3n Interamericana de Derechos Humanos" - ] - }, - { - "text": " de septiembre de REF Caso N\u00ba Pueblos Ind\u00edgenas Tagaeri y Taromenane en aislamiento voluntario Ecuador Se\u00f1or Secretario Tengo el agrado de dirigirme a usted en nombre de la Comisi\u00f3n Interamericana de Derechos Humanos con el objeto de someter a la jurisdicci\u00f3n de la Honorable Corte Interamericana de Derechos Humanos el Caso Pueblos Ind\u00edgenas Tagaeri y Taromenane en aislamiento voluntario de la Rep\u00fablica de Ecuador en adelante el Estado el Estado ecuatoriano o Ecuador primer caso relativo a ", - "values": [ - "Comisi\u00f3n Interamericana de Derechos Humanos" - ] - }, - { - "text": "INFORME No. PETICI\u00d3N ADMISIBILIDAD PUEBLOS IND\u00cdGENAS EN AISLAMIENTO TAGAERI Y TAROMENANI ECUADOR DE NOVIEMBRE DE I. RESUMEN El de mayo de la Comisi\u00f3n Interamericana de Derechos Humanos en adelante Comisi\u00f3n Interamericana o Comisi\u00f3n recibi\u00f3 una petici\u00f3n presentada por Fernando Ponce Villac\u00eds Ra\u00fal Moscoso Juan Guevara y Patricio Asimbaya en adelante peticionarios en la cual se alega la responsabilidad internacional de la Rep\u00fablica de Ecuador en adelante Estado o el Estado ecuatoriano por ", - "values": [ - "Comisi\u00f3n Interamericana de Derechos Humanos" - ] - } -] \ No newline at end of file diff --git a/src/extractors/text_to_multi_option_extractor/labeled_data/cejil_mechanism/options.json b/src/extractors/text_to_multi_option_extractor/labeled_data/cejil_mechanism/options.json deleted file mode 100644 index 910d5a9..0000000 --- a/src/extractors/text_to_multi_option_extractor/labeled_data/cejil_mechanism/options.json +++ /dev/null @@ -1 +0,0 @@ -["Corte Interamericana de Derechos Humanos", "Comisi\u00f3n Interamericana de Derechos Humanos"] \ No newline at end of file diff --git a/src/extractors/text_to_multi_option_extractor/labeled_data/cejil_president/labels.json b/src/extractors/text_to_multi_option_extractor/labeled_data/cejil_president/labels.json deleted file mode 100644 index abbe45a..0000000 --- a/src/extractors/text_to_multi_option_extractor/labeled_data/cejil_president/labels.json +++ /dev/null @@ -1,165 +0,0 @@ -[ - { - "text": " 14. Disponer, de conformidad con el art\u00edculo 4 del Reglamento de la Corte sobre el Funcionamiento del Fondo de Asistencia Legal de V\u00edctimas, que la Secretar\u00eda del Tribunal abra un expediente de gastos, donde se documentar\u00e1 cada una de las erogaciones que se realicen con el 15. Disponer que la Secretar\u00eda de la Corte Interamericana notifique la presente Resoluci\u00f3n a la Comisi\u00f3n Interamericana de Derechos Humanos, al representante y a Paraguay. Resoluci\u00f3n del Presidente de la Corte Interamericana de Derechos Humanos. Caso Arrom Suhurt y otros Vs. Paraguay. Eduardo Ferrer Mac-Gregor Poisot Presidente Pablo Saavedra Alessandri Secretario Comun\u00edquese y ejec\u00fatese, Eduardo Ferrer Mac-Gregor Poisot Presidente Pablo Saavedra Alessandri Secretario", - "values": [ - "Eduardo Ferrer Mac-Gregor Poisot" - ] - }, - { - "text": " 1. 2. 3. Solicitar a los representantes de la v\u00edctima y a la Comisi\u00f3n Interamericana de Derechos Humanos que presenten observaciones al informe del Estado mencionado en el punto 4. Continuar supervisando los puntos pendientes de cumplimiento de la Sentencia sobre fondo, reparaciones y costas de 28 de noviembre de 2002. 5. Notificar la presente Resoluci\u00f3n al Estado, a la Comisi\u00f3n Interamericana de Derechos Humanos y a los representantes de las v\u00edctimas y sus familiares. 8 Sergio Garc\u00eda Ram\u00edrez Presidente Alirio Abreu Burelli Oliver Jackman Ant\u00f4nio A. Can\u00e7ado Trindade Manuel E. Ventura Robles Diego Garc\u00eda-Say\u00e1n Pablo Saavedra Alessandri Secretario Comun\u00edquese y ejec\u00fatese, Sergio Garc\u00eda Ram\u00edrez Presidente Pablo Saavedra Alessandri Secretario", - "values": [ - "Sergio Garc\u00eda Ram\u00edrez" - ] - }, - { - "text": " LA 1. Convocar a una audiencia p\u00fablica para el 30 de julio de 1991 a las 15:00 horas con el objeto de conocer los puntos de vista del Gobierno de Guatemala y de la Comisi\u00f3n sobre la solicitud de pr\u00f3rroga formulada por el 2 2. Conocer tambi\u00e9n, en dicha audiencia p\u00fablica, de las medidas que, en atenci\u00f3n a la resoluci\u00f3n del Presidente del 15 de julio del presente a\u00f1o, ha tomado el Gobierno de Guatemala. 3. Reservarse el derecho de convocar a una audiencia p\u00fablica para resolver la petici\u00f3n de la Comisi\u00f3n sobre medidas provisionales respecto de Guatemala. H\u00e9ctor Fix-Zamudio Presidente Orlando Tovar Tamayo Thomas Buergenthal Rafael Nieto Navia Policarpo Callejas Bonilla Sonia Picado Sotela Julio A. Barberis Manuel E. Ventura Robles Secretario", - "values": [ - "H\u00e9ctor Fix-Zamudio" - ] - }, - { - "text": " 32. A 33. A su vez, el fen\u00f3meno actual de la expansi\u00f3n de dichas personalidad y capacidad jur\u00eddicas internacionales 28 responde, como se desprende de recientes casos ante esta Corte atinentes a miembros de colectividades humanas, a una necesidad apremiante de la comunidad internacional de nuestros d\u00edas. En fin, el desarrollo doctrinal y Ant\u00f4nio Augusto Can\u00e7ado Trindade Juez Pablo Saavedra Alessandri Secretario 27 . Cf. A.A. Can\u00e7ado Trindade, \"Reply [- Assistance Humanitaire]\", 70 Annuaire de l'Institut de Droit International - Session de Bruges (2002-2003) n. 1, pp. 536-540. 28 . Cf. A.A. Can\u00e7ado Trindade, El Acceso Directo del Individuo a los Tribunales Internacionales de Derechos Humanos , Bilbao, Universidad de Deusto, 2001, pp. 9-104.", - "values": [ - "Sergio Garc\u00eda Ram\u00edrez" - ] - }, - { - "text": " 1. Apremiar al Gobierno de Honduras a que adopte sin dilaci\u00f3n cuantas medidas sean necesarias para prevenir nuevos atentados contra los derechos fundamentales de quienes han comparecido o han sido citados para comparecer ante esta Corte con motivo de los casos Vel\u00e1squez Rodr\u00edguez, Fair\u00e9n Garbi y Sol\u00eds Corrales y God\u00ednez Cruz, en escrupuloso cumplimiento de 2. Instar igualmente al Gobierno de Honduras para que extreme todos los medios a su alcance para investigar esos repudiables cr\u00edmenes, identificar a los culpables y aplicarles las sanciones previstas en el derecho interno hondure\u00f1o. Rafael Nieto Navia Presidente H\u00e9ctor Gros Espiell Rodolfo E. Piza E. Pedro Nikken H\u00e9ctor Fix-Zamudio Rigoberto Espinal Juez ad hoc Charles Moyer Secretario", - "values": [ - "Rafael Nieto Navia" - ] - }, - { - "text": "1. Desestima las excepciones preliminares opuestas por el Gobierno de Honduras, salvo la referente al no agotamiento de los recursos de jurisdicci\u00f3n interna que ordena por unanimidad, 2. Contin\u00faa con el conocimiento del presente caso. por unanimidad, 3. Reserva el pronunciamiento sobre costas para decidirlo con la cuesti\u00f3n de fondo. 19 Redactada en espa\u00f1ol e ingl\u00e9s, haciendo fe el texto en espa\u00f1ol. Le\u00edda en sesi\u00f3n p\u00fablica en la sede de la Corte en San Jos\u00e9, Costa Rica, el d\u00eda 26 de junio de 1987. Thomas Buergenthal Presidente Rafael Nieto Navia Rodolfo E. Piza E. Pedro Nikken H\u00e9ctor Fix-Zamudio H\u00e9ctor Gros Espiell Rigoberto Espinal Ir\u00edas Charles Moyer Secretario Comun\u00edquese y ejec\u00fatese Thomas Buergenthal Presidente Charles Moyer Secretario", - "values": [ - "Thomas Buergenthal" - ] - }, - { - "text": " 11. Informar \u00e0 Comiss\u00e3o Interamericana de Direitos Humanos, aos representantes das supostas v\u00edtimas e ao Estado do Brasil que contam com prazo at\u00e9 21 de junho de 2010, para apresentar suas alega\u00e7\u00f5es finais escritas sobre as exce\u00e7\u00f5es preliminares e eventuais m\u00e9rito, repara\u00e7\u00f5es e custas neste caso. Este prazo \u00e9 improrrog\u00e1vel e independente da remiss\u00e3o da c\u00f3pia da grava\u00e7\u00e3o da audi\u00eancia 12. Requerer \u00e0 Secretaria do Tribunal que notifique a presente Resolu\u00e7\u00e3o \u00e0 Comiss\u00e3o Interamericana de Direitos Humanos, aos representantes das supostas v\u00edtimas e ao Estado do Brasil. 20 Diego Garc\u00eda-Say\u00e1n Presidente Emilia Segares Rodr\u00edguez Secret\u00e1ria Adjunta Comunique-se e execute-se, Diego Garc\u00eda-Say\u00e1n Presidente Emilia Segares Rodr\u00edguez Secret\u00e1ria Adjunta", - "values": [ - "Diego Garc\u00eda-Say\u00e1n" - ] - }, - { - "text": "7. Disponer que la Secretar\u00eda de la Corte notifique la presente Resoluci\u00f3n al Estado, a los representantes de las v\u00edctimas y a la Comisi\u00f3n Interamericana de Derechos Corte IDH. Caso Granier y otros (Radio Caracas Televisi\u00f3n) Vs. Venezuela. Supervisi\u00f3n de cumplimiento de sentencia. Resoluci\u00f3n de la Corte Interamericana de Derechos Humanos de 18 de noviembre de 2020. Resoluci\u00f3n adoptada en San Jos\u00e9 de Costa Rica por medio de sesi\u00f3n virtual. Elizabeth Odio Benito Presidenta L. Patricio Pazmi\u00f1o Freire Humberto Antonio Sierra Porto Eduardo Ferrer Mac-Gregor Poisot Eugenio Ra\u00fal Zaffaroni Ricardo C. P\u00e9rez Manrique Pablo Saavedra Alessandri Secretario Comun\u00edquese y ejec\u00fatese, Elizabeth Odio Benito Presidenta Pablo Saavedra Alessandri Secretario 10", - "values": [ - "Elizabeth O. Benito" - ] - }, - { - "text": "18. Informar a los representantes, al Estado y a la Comisi\u00f3n Interamericana que cuentan con un plazo hasta el 15 de marzo de 2021 para presentar sus alegatos finales escritos y observaciones finales escritas, respectivamente, en relaci\u00f3n con las excepciones preliminares, eventuales fondo, y reparaciones y costas en el presente caso. Este plazo es improrrogable e independiente de la 19. Disponer que la Secretar\u00eda de la Corte Interamericana notifique la presente Resoluci\u00f3n a la Comisi\u00f3n Interamericana de Derechos Humanos, a los intervinientes comunes y al Estado de Colombia. Elizabeth Odio Benito Presidenta Pablo Saavedra Alessandri Secretario Comun\u00edquese y ejec\u00fatese, Elizabeth Odio Benito Presidenta Pablo Saavedra Alessandri Secretario -28-", - "values": [ - "Elizabeth O. Benito" - ] - }, - { - "text": " 18. 19. Requerir a los representantes que, a m\u00e1s tardar junto con sus alegatos 20. Disponer, de conformidad con el art\u00edculo 4 del Reglamento de la Corte sobre el Funcionamiento del Fondo de Asistencia Legal de V\u00edctimas, que la Secretar\u00eda del Tribunal abra un expediente de gastos, donde se documentar\u00e1 cada una de las erogaciones que se realicen con el Fondo de Asistencia Legal de V\u00edctimas. 21. Disponer que la Secretar\u00eda de la Corte Interamericana notifique la presente Resoluci\u00f3n a la Comisi\u00f3n Interamericana de Derechos Humanos, a los representantes y al Estado de Honduras. Elizabeth Odio Benito Presidenta Pablo Saavedra Alessandri Secretario Comun\u00edquese y ejec\u00fatese, Elizabeth Odio Benito Presidenta Pablo Saavedra Alessandri Secretario 12", - "values": [ - "Elizabeth O. Benito" - ] - }, - { - "text": " 8. Informar al representante, al Estado y a la Comisi\u00f3n Interamericana que, en los t\u00e9rminos del art\u00edculo 56 del Reglamento, cuentan con un plazo de un mes, contado a partir del d\u00eda en que, de conformidad con lo establecido en el 9. Disponer que la Secretar\u00eda de la Corte Interamericana de Derechos Humanos notifique la presente Resoluci\u00f3n a la Comisi\u00f3n Interamericana de Derechos Humanos, al representante de las presuntas v\u00edctimas y a la Rep\u00fablica de Ecuador. Resoluci\u00f3n de la Presidenta de la Corte Interamericana de Derechos Humanos. Caso Villarroel Merino y otros Vs. Ecuador. Elizabeth Odio Benito Presidenta Pablo Saavedra Alessandri Secretario Comun\u00edquese y ejec\u00fatese, Elizabeth Odio Benito Presidenta Pablo Saavedra Alessandri Secretario 5", - "values": [ - "Elizabeth O. Benito" - ] - }, - { - "text": " 58 V\u00e9anse los casos 59 V\u00e9anse los principios y directrices relativos al derecho a un juicio justo y a asistencia jur\u00eddica en \u00c1frica. Cfr. Caso Mart\u00ednez Esquivia Vs. Colombia. Excepciones preliminares, Fondo y Reparaciones , supra, p\u00e1rr 93. 60 V\u00e9anse las Directrices de las Naciones Unidos sobre la funci\u00f3n de los fiscales, as\u00ed como los criterios de la Relator\u00eda Especial de Naciones Unidas sobre la independencia de los magistrados y abogados. Cfr. Caso Mart\u00ednez Esquivia Vs. Colombia, supra, p\u00e1rrs. 89 y 90. 61 V\u00e9ase, entre otros elementos, la Declaraci\u00f3n de Burdeos, relativo al informe conjunto del Consejo Consultivo de Jueces Europeos y el Consejo Consultivo de Fiscales Europeos. Cfr. Caso Mart\u00ednez Esquivia Vs. Colombia, supra, p\u00e1rr. 91. 13", - "values": [ - "Elizabeth O. Benito" - ] - }, - { - "text": " 9. La Corte supervisar\u00e1 el cumplimiento \u00edntegro de esta Sentencia, en ejercicio de sus atribuciones y en Redactada en espa\u00f1ol en San Jos\u00e9, Costa Rica, el 17 de noviembre de 2020. Corte IDH. Caso Almeida Vs. Argentina. Fondo, Reparaciones y Costas. Sentencia de 17 de noviembre de 2020. Corte IDH. Caso Almeida Vs. Argentina. Fondo, Reparaciones y Costas. Sentencia de 17 de noviembre de 2020. Sentencia adoptada en San Jos\u00e9, Costa Rica por medio de sesi\u00f3n virtual. Elizabeth Odio Benito Presidenta L. Patricio Pazmi\u00f1o Freire Humberto Antonio Sierra Porto Eduardo Ferrer Mac-Gregor Poisot Ricardo C. P\u00e9rez Manrique Pablo Saavedra Alessandri Secretario Comun\u00edquese y ejec\u00fatese, Elizabeth Odio Benito Presidenta Pablo Saavedra Alessandri Secretario 25", - "values": [ - "Elizabeth O. Benito" - ] - }, - { - "text": "1. Declarar que la Rep\u00fablica del Ecuador ha cumplido con reintegrar al Fondo de Asistencia Legal de V\u00edctimas de la Corte Interamericana de Derechos Humanos la cantidad dispuesta en el punto resolutivo d\u00e9cimo cuarto y el p\u00e1rrafo 241 de la Sentencia. Sin perjuicio de ello, se exhorta al Estado que realice el pago de los intereses al Fondo de Asistencia Legal de V \u00ed ctimas de 2. Disponer que la Secretar\u00eda de la Corte Interamericana de Derechos Humanos notifique la presente Resoluci\u00f3n al Estado de Ecuador, a los representantes de las v\u00edctimas y a la Comisi\u00f3n Interamericana. -2- Elizabeth Odio Benito Presidenta Pablo Saavedra Alessandri Secretario Comun\u00edquese y ejec\u00fatese, Elizabeth Odio Benito Presidenta Pablo Saavedra Alessandri Secretario -3-", - "values": [ - "Elizabeth O. Benito" - ] - }, - { - "text": "20. In 21. Obiter dicta , it is necessary to recall the disastrous results of corporate and verticalized judiciaries in the face of the irruption of the totalitarian regimes in the inter- war years in Germany, Italy and France. Moreover, it should also be added that, even though this case relates to a rule applicable by the collegiate organs of the Judiciary itself, the prohibitions that it contains could not be tolerated even if the sanctions were imposed by an organ external to the Judiciary or belonging to the Judiciary but distinct from the collegiate 22. I add these considerations in concurrence with those expressed unanimously in this judgment. 23. This is my opinion. Eugenio Ra\u00fal Zaffaroni Judge Pablo Saavedra Alessandri Secretary 3", - "values": [ - "Elizabeth O. Benito" - ] - }, - { - "text": " VOTO CONCURRENTE DEL JUEZ EDUARDO VIO GROSSI RESOLUCI\u00d3N DE LA CORTE INTERAMERICANA DE DERECHOS HUMANOS DE 19 DE Se expide el presente voto concurrente con la Resoluci\u00f3n del ep\u00edgrafe, por las mismas razones esgrimidas en el tambi\u00e9n voto concurrente, de fecha 3 de septiembre de 2020, concerniente a la \u201cResoluci\u00f3n de la Corte Interamericana de Derechos Humanos\u201d, de esa fecha, \u201cSolicitud de Medidas Provisionales y Supervisi\u00f3n de Cumplimiento de Sentencia, Caso Galindo C\u00e1rdenas y Otros VS. Per\u00fa\u201d, argumentos que, por ende, se dan por reproducidos y que dicen relaci\u00f3n, en particular, con la situaci\u00f3n ahora se\u00f1alada en el p\u00e1rrafo N\u00b0 11 de los Considerandos de la Resoluci\u00f3n del r\u00f3tulo. Eduardo Vio Grossi Juez Pablo Saavedra Alessandri Secretario 1", - "values": [ - "Elizabeth O. Benito" - ] - }, - { - "text": " 11. Informar a los representantes, al Estado y a la Comisi\u00f3n Interamericana que, en los t\u00e9rminos del art\u00edculo 56 del Reglamento, cuentan con un plazo improrrogable hasta el 12 de abril de 2021 para presentar sus alegatos 12. Requerir al Estado que remita, a m\u00e1s tardar el 15 de febrero de 2021, los documentos solicitados por la Presidenta en el Considerando 25 de la presente Resoluci\u00f3n. 13. Disponer que la Secretar\u00eda de la Corte Interamericana notifique la presente Resoluci\u00f3n a la Comisi\u00f3n Interamericana de Derechos Humanos, a los representantes y al Estado de El Salvador. Elizabeth Odio Benito Presidenta Pablo Saavedra Alessandri Secretario Comun\u00edquese y ejec\u00fatese, Elizabeth Odio Benito Presidenta Pablo Saavedra Alessandri Secretario 11", - "values": [ - "Elizabeth O. Benito" - ] - }, - { - "text": " POR LA en el uso de las RESUELVE: 1. Declarar que el Estado de Guatemala ha cumplido con reintegrar al Fondo de Asistencia Legal de V\u00edctimas de la Corte Interamericana de Derechos Humanos la cantidad dispuesta en el punto resolutivo 16 y el p\u00e1rrafo 245 de la Sentencia de excepci\u00f3n preliminar, fondo, reparaciones y costas del caso Cuscul Pivaral y otros. 2. Disponer que la Secretar\u00eda de la Corte Interamericana de Derechos Humanos notifique la presente Resoluci\u00f3n al Estado de Guatemala, a las representantes de las v\u00edctimas y a la Comisi\u00f3n Interamericana de Derechos Humanos. Elizabeth Odio Benito Presidenta Pablo Saavedra Alessandri Secretario Comun\u00edquese y ejec\u00fatese, Elizabeth Odio Benito Presidenta Pablo Saavedra Alessandri Secretario -2-", - "values": [ - "Elizabeth O. Benito" - ] - }, - { - "text": " 2. Aclarar, por medio de 3. Disponer que la Secretar\u00eda de la Corte notifique la presente Sentencia de Interpretaci\u00f3n a la Rep\u00fablica Argentina, a los representantes de las v\u00edctimas y a la Comisi\u00f3n Interamericana de Derechos Humanos. 8 Corte IDH. Caso Comunidades ind\u00edgenas miembros de la Asociaci\u00f3n Lhaka Honhat (Nuestra Tierra) Vs. Argentina. Interpretaci\u00f3n de la Sentencia de Fondo, Reparaciones y Costas . Sentencia de 24 de noviembre de 2020. Elizabeth Odio Benito Presidenta L. Patricio Pazmi\u00f1o Freire Eduardo Vio Grossi Humberto Antonio Sierra Porto Eduardo Ferrer Mac-Gregor Poisot Ricardo C. P\u00e9rez Manrique Pablo Saavedra Alessandri Secretario Comun\u00edquese y ejec\u00fatese, Elizabeth Odio Benito Presidenta Pablo Saavedra Alessandri Secretario 9", - "values": [ - "Elizabeth O. Benito" - ] - }, - { - "text": "4. Archivar 5. Disponer que la Secretar\u00eda de la Corte notifique la presente Resoluci\u00f3n al Estado, a los representantes de la v\u00edctima y a la Comisi\u00f3n Interamericana de Derechos Humanos. Corte IDH. Caso Colindres Schonenberg Vs. El Salvador. Supervisi\u00f3n de Cumplimiento de Sentencia. Resoluci\u00f3n de la Corte Interamericana de Derechos Humanos de 18 de noviembre de 2020. Resoluci\u00f3n adoptada en San Jos\u00e9 de Costa Rica por medio de sesi\u00f3n virtual Elizabeth Odio Benito Presidenta L. Patricio Pazmi\u00f1o Freire Humberto Antonio Sierra Porto Eduardo Ferrer Mac-Gregor Poisot Eugenio Ra\u00fal Zaffaroni Ricardo C. P\u00e9rez Manrique Pablo Saavedra Alessandri Secretario Comun\u00edquese y ejec\u00fatese, Elizabeth Odio Benito Presidenta Pablo Saavedra Alessandri Secretario -4-", - "values": [ - "Elizabeth O. Benito" - ] - }, - { - "text": " Estado y de las representantes mencionados anteriormente 6. Que la Secretar\u00eda notifique la presente Resoluci\u00f3n al Estado, a la Comisi\u00f3n Interamericana de Derechos Humanos y a las representantes de la beneficiaria. 10 Corte IDH. Asunto Castro Rodr\u00edguez respecto de M\u00e9xico. Medidas Provisionales. Resoluci\u00f3n de la Corte Interamericana de Derechos Humanos de 18 de noviembre de 2020. Resoluci\u00f3n adoptada en San Jos\u00e9 de Costa Rica por medio de sesi\u00f3n virtual. Elizabeth Odio Benito Presidenta L. Patricio Pazmi\u00f1o Freire Eduardo Vio Grossi Humberto Antonio Sierra Porto Eugenio Ra\u00fal Zaffaroni Ricardo C. P\u00e9rez Manrique Pablo Saavedra Alessandri Secretario Comun\u00edquese y ejec\u00fatese, Elizabeth Odio Benito Presidenta Pablo Saavedra Alessandri Secretario 11", - "values": [ - "Elizabeth O. Benito" - ] - }, - { - "text": "LA en el uso de las atribuciones RESUELVE: 1. Declarar que el Estado del Per\u00fa ha cumplido con reintegrar al Fondo de Asistencia Legal de V\u00edctimas de la Corte Interamericana de Derechos Humanos la cantidad dispuesta en el punto resolutivo 23 y el p\u00e1rrafo 259 de la Sentencia de excepciones preliminares, fondo, reparaciones y costas del caso Rosadio Villavicencio. 2. Disponer que la Secretar\u00eda de la Corte Interamericana de Derechos Humanos notifique la presente Resoluci\u00f3n al Estado del Per\u00fa, a las representantes de la v\u00edctima y a la Comisi\u00f3n Interamericana de Derechos Humanos. Elizabeth Odio Benito Presidenta Pablo Saavedra Alessandri Secretario Comun\u00edquese y ejec\u00fatese, Elizabeth Odio Benito Presidenta Pablo Saavedra Alessandri Secretario -2-", - "values": [ - "Elizabeth O. Benito" - ] - }, - { - "text": "3. Desestimar por improcedente la solicitud de interpretaci\u00f3n de 4. Disponer que la Secretar\u00eda de la Corte notifique la presente Sentencia de Interpretaci\u00f3n al Estado de Per\u00fa, a la v\u00edctima y a la Comisi\u00f3n Interamericana de Derechos Humanos. Corte IDH. Caso Rosadio Villavicencio Vs. Per\u00fa. Interpretaci\u00f3n de la Sentencia de Excepciones Preliminares, Fondo, Reparaciones y Costas. Sentencia de 8 de octubre de 2020. L. Patricio Pazmi\u00f1o Freire Presidente en ejercicio Eduardo Vio Grossi Humberto Antonio Sierra Porto Eduardo Ferrer Mac-Gregor Poisot Eugenio Ra\u00fal Zaffaroni Ricardo C. P\u00e9rez Manrique Pablo Saavedra Alessandri Secretario Comun\u00edquese y ejec\u00fatese, 8 L. Patricio Pazmi\u00f1o Freire Presidente en ejercicio Pablo Saavedra Alessandri Secretario 9", - "values": [ - "L. Patricio Pazmi\u00f1o Freire" - ] - }, - { - "text": " 6. 7. 8. Disponer que la Secretar i\u0301 a de la Corte notifique la presente Resoluci \u00f3 n al Estado, a las representantes de las v i\u0301 ctimas y a la Comisi \u00f3 n Interamericana de -17- Corte IDH. Caso Mujeres V\u00edctimas de Tortura Sexual en Atenco Vs. M\u00e9xico. Supervisi\u00f3n de Cumplimiento de Sentencia. Resoluci\u00f3n de la Corte Interamericana de Derechos Humanos de 19 de noviembre de 2020. Resoluci\u00f3n adoptada en San Jos\u00e9 de Costa Rica por medio de sesi\u00f3n virtual. Elizabeth Odio Benito Presidenta L. Patricio Pazmi\u00f1o Freire Eduardo Vio Grossi Humberto Antonio Sierra Porto Eugenio Ra\u00fal Zaffaroni Ricardo C. P\u00e9rez Manrique Pablo Saavedra Alessandri Secretario Comun\u00edquese y ejec\u00fatese, Elizabeth Odio Benito Presidenta Pablo Saavedra Alessandri Secretario -18-", - "values": [ - "Elizabeth O. Benito" - ] - }, - { - "text": "6. Incorporar 7. Disponer que la Secretar\u00eda de la Corte notifique la presente Resoluci\u00f3n al Estado, a los representantes de las v\u00edctimas y a la Comisi\u00f3n Interamericana de Derechos Humanos. - 8- Corte IDH. Caso Del Caracazo Vs. Venezuela. Supervisi\u00f3n de Cumplimiento de Sentencia. Resoluci\u00f3n de la Corte Interamericana de Derechos Humanos de 18 de noviembre de 2020. Resoluci\u00f3n adoptada en San Jos\u00e9 de Costa Rica por medio de sesi\u00f3n virtual. Elizabeth Odio Benito Presidenta L. Patricio Pazmi\u00f1o Freire Humberto Antonio Sierra Porto Eduardo Ferrer Mac-Gregor Poisot Eugenio Ra\u00fal Zaffaroni Ricardo C. P\u00e9rez Manrique Pablo Saavedra Alessandri Secretario Comun\u00edquese y ejec\u00fatese, Elizabeth Odio Benito Presidenta Pablo Saavedra Alessandri Secretario - 9-", - "values": [ - "Elizabeth O. Benito" - ] - }, - { - "text": " 5. Disponer que la Secretar\u00eda ANEXOS Fotograf\u00eda No. 1 - 9 - Fotograf\u00eda No. 2 Fotograf\u00eda No. 3 Fotograf\u00eda No. 4 Fotograf\u00eda No. 5 - 10 - Corte IDH. Caso Pueblos Ind\u00edgenas Kuna de Madungand\u00ed y Ember\u00e1 de Bayano y sus Miembros Vs. Panam\u00e1. Supervisi\u00f3n de cumplimiento de sentencia. Resoluci\u00f3n de la Corte Interamericana de Derechos Humanos de 18 de noviembre de 2020. Resoluci\u00f3n adoptada en San Jos\u00e9 de Costa Rica por medio de sesi\u00f3n virtual. Elizabeth Odio Benito Presidenta L. Patricio Pazmi\u00f1o Freire Humberto Antonio Sierra Porto Eduardo Ferrer Mac-Gregor Poisot Eugenio Ra\u00fal Zaffaroni Ricardo C. P\u00e9rez Manrique Pablo Saavedra Alessandri Secretario Comun\u00edquese y ejec\u00fatese, Elizabeth Odio Benito Presidenta Pablo Saavedra Alessandri Secretario - 11 -", - "values": [ - "Elizabeth O. Benito" - ] - }, - { - "text": " 4. Adecuar el r\u00e9gimen de sanciones civiles en materia de libertad de expresi\u00f3n respecto de casos en que la persona ofendida sea un funcionario p\u00fablico o persona p\u00fablica, o particular que se haya involucrado voluntariamente en asuntos de 5. Divulgar el presente informe en el Poder Judicial de Chile. Aprobado por la Comisi\u00f3n Interamericana de Derechos Humanos en la ciudad de Kingston, Jamaica a los 4 d\u00edas del mes de mayo de 2019. Esmeralda E. Arosemena Bernal de Troiti\u00f1o Presidenta 27 Joel Hern\u00e1ndez Primer Vicepresidente Margarette May Macaulay Comisionada Luis Ernesto Vargas Silva Comisionado Francisco Jos\u00e9 Eguiguren Comisionado Fl\u00e1via Piovesan Comisionada Reg\u00edstrese y notif\u00edquese conforme a lo acordado. Paulo Abr\u00e3o Secretario Ejecutivo 28", - "values": [ - "Joel Hern\u00e1ndez", - "Esmeralda Test Arosemena Bernal de Troiti\u00f1o" - ] - } -] \ No newline at end of file diff --git a/src/extractors/text_to_multi_option_extractor/labeled_data/cejil_president/options.json b/src/extractors/text_to_multi_option_extractor/labeled_data/cejil_president/options.json deleted file mode 100644 index 2121349..0000000 --- a/src/extractors/text_to_multi_option_extractor/labeled_data/cejil_president/options.json +++ /dev/null @@ -1,12 +0,0 @@ -[ - "Thomas Buergenthal", - "Héctor Fix-Zamudio", - "Eduardo Ferrer Mac-Gregor Poisot", - "Joel Hernández", - "Sergio García Ramírez", - "Rafael Nieto Navia", - "Elizabeth O. Benito", - "L. Patricio Pazmiño Freire", - "Diego García-Sayán", - "Esmeralda Test Arosemena Bernal de Troitiño" -] \ No newline at end of file diff --git a/src/extractors/text_to_multi_option_extractor/labeled_data/cejil_secretary/labels.json b/src/extractors/text_to_multi_option_extractor/labeled_data/cejil_secretary/labels.json deleted file mode 100644 index 15fcab1..0000000 --- a/src/extractors/text_to_multi_option_extractor/labeled_data/cejil_secretary/labels.json +++ /dev/null @@ -1,383 +0,0 @@ -[ - { - "text": " 14. Disponer, de conformidad con el art\u00edculo 4 del Reglamento de la Corte sobre el Funcionamiento del Fondo de Asistencia Legal de V\u00edctimas, que la Secretar\u00eda del Tribunal abra un expediente de gastos, donde se documentar\u00e1 cada una de las erogaciones que se realicen con el 15. Disponer que la Secretar\u00eda de la Corte Interamericana notifique la presente Resoluci\u00f3n a la Comisi\u00f3n Interamericana de Derechos Humanos, al representante y a Paraguay. Resoluci\u00f3n del Presidente de la Corte Interamericana de Derechos Humanos. Caso Arrom Suhurt y otros Vs. Paraguay. Eduardo Ferrer Mac-Gregor Poisot Presidente Pablo Saavedra Alessandri Secretario Comun\u00edquese y ejec\u00fatese, Eduardo Ferrer Mac-Gregor Poisot Presidente Pablo Saavedra Alessandri Secretario", - "values": [ - "Pablo Saavedra Alessandri" - ] - }, - { - "text": " A person A person whose name will be informed shortly, who will refer to the International standards in matter of access to justice in cases of extrajudicial executions. Taking in count the high incidence of this type of The expert\u2019s CV will be included in the Merits Report 33/13. Finally, the petitioners expressed the victims\u2019 interest in the submission of the present case to the Inter-American Court and informed that the following shall be representatives of the victims: 4 Comisi\u00f3n Ecum\u00e9nica de Derechos Humanos xxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxx xxxxxxxxxxxxxxxxxxxxx Quito, Ecuador xxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxx xxxxxxxxxxxxxxxxxxxxxxxxx xxxxxxxxxxxxxxxxxxxx Signed in the original Elizabeth Abi-Mershed Deputy Executive Secretary", - "values": [ - "Elizabeth Abi-Mershed" - ] - }, - { - "text": " In The undersigned does not wish to conclude with this dissenting opinion without pointing out that the violence that existed in Venezuela during the occurrence of the facts analyzed in the case was deplorable; but it has been proven in the foregoing paragraphs that the domestic courts did not have the opportunity to try to find a solution to the conflict brought to the Court\u2019s Based on the foregoing, I feel I have the duty and obligation to dissent from the judgment and I hereby present my opinion with the utmost respect for those who have a different point of view. It is expressed, in this way, my reasoning to support my dissenting opinion in this case. Date ut-supra . Pier Paolo Pasceri Judge ad hoc Pablo Saavedra Alessandri Secretary", - "values": [ - "Pablo Saavedra Alessandri" - ] - }, - { - "text": " En virtud Perito/a cuyo nombre ser\u00e1 informado a la brevedad , los est\u00e1ndares internacionales en materia del principio de independencia judicial y sus implicaciones concretas en la \u201cgarant\u00eda contra presiones externas\u201d. El/la perito/a El CV del/la perito/a ofrecido/a ser\u00e1 incluido en los anexos al informe de admisibilidad y fondo. La Comisi\u00f3n pone en conocimiento de la Corte que la se\u00f1ora Mar\u00eda Eugenia Villase\u00f1or actualmente realiza su propia representaci\u00f3n. Sus datos de contacto son: 3 Mar\u00eda Eugenia Villase\u00f1or Velarde Xxxxxxxxxxxxxxxxxxxxxxxxx Xxxxxxxxxxxxxxxxxxxxxxxxxx xxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxx Aprovecho la oportunidad para saludar a usted muy atentamente, Firmado en el original Elizabeth Abi-Mershed Secretaria Ejecutiva Adjunta 4", - "values": [ - "Elizabeth Abi-Mershed" - ] - }, - { - "text": " 1. 2. 3. Solicitar a los representantes de la v\u00edctima y a la Comisi\u00f3n Interamericana de Derechos Humanos que presenten observaciones al informe del Estado mencionado en el punto 4. Continuar supervisando los puntos pendientes de cumplimiento de la Sentencia sobre fondo, reparaciones y costas de 28 de noviembre de 2002. 5. Notificar la presente Resoluci\u00f3n al Estado, a la Comisi\u00f3n Interamericana de Derechos Humanos y a los representantes de las v\u00edctimas y sus familiares. 8 Sergio Garc\u00eda Ram\u00edrez Presidente Alirio Abreu Burelli Oliver Jackman Ant\u00f4nio A. Can\u00e7ado Trindade Manuel E. Ventura Robles Diego Garc\u00eda-Say\u00e1n Pablo Saavedra Alessandri Secretario Comun\u00edquese y ejec\u00fatese, Sergio Garc\u00eda Ram\u00edrez Presidente Pablo Saavedra Alessandri Secretario", - "values": [ - "Pablo Saavedra Alessandri" - ] - }, - { - "text": " LA 1. Convocar a una audiencia p\u00fablica para el 30 de julio de 1991 a las 15:00 horas con el objeto de conocer los puntos de vista del Gobierno de Guatemala y de la Comisi\u00f3n sobre la solicitud de pr\u00f3rroga formulada por el 2 2. Conocer tambi\u00e9n, en dicha audiencia p\u00fablica, de las medidas que, en atenci\u00f3n a la resoluci\u00f3n del Presidente del 15 de julio del presente a\u00f1o, ha tomado el Gobierno de Guatemala. 3. Reservarse el derecho de convocar a una audiencia p\u00fablica para resolver la petici\u00f3n de la Comisi\u00f3n sobre medidas provisionales respecto de Guatemala. H\u00e9ctor Fix-Zamudio Presidente Orlando Tovar Tamayo Thomas Buergenthal Rafael Nieto Navia Policarpo Callejas Bonilla Sonia Picado Sotela Julio A. Barberis Manuel E. Ventura Robles Secretario", - "values": [ - "Manuel Ventura Robles" - ] - }, - { - "text": " 32. A 33. A su vez, el fen\u00f3meno actual de la expansi\u00f3n de dichas personalidad y capacidad jur\u00eddicas internacionales 28 responde, como se desprende de recientes casos ante esta Corte atinentes a miembros de colectividades humanas, a una necesidad apremiante de la comunidad internacional de nuestros d\u00edas. En fin, el desarrollo doctrinal y Ant\u00f4nio Augusto Can\u00e7ado Trindade Juez Pablo Saavedra Alessandri Secretario 27 . Cf. A.A. Can\u00e7ado Trindade, \"Reply [- Assistance Humanitaire]\", 70 Annuaire de l'Institut de Droit International - Session de Bruges (2002-2003) n. 1, pp. 536-540. 28 . Cf. A.A. Can\u00e7ado Trindade, El Acceso Directo del Individuo a los Tribunales Internacionales de Derechos Humanos , Bilbao, Universidad de Deusto, 2001, pp. 9-104.", - "values": [ - "Pablo Saavedra Alessandri" - ] - }, - { - "text": " 1. Apremiar al Gobierno de Honduras a que adopte sin dilaci\u00f3n cuantas medidas sean necesarias para prevenir nuevos atentados contra los derechos fundamentales de quienes han comparecido o han sido citados para comparecer ante esta Corte con motivo de los casos Vel\u00e1squez Rodr\u00edguez, Fair\u00e9n Garbi y Sol\u00eds Corrales y God\u00ednez Cruz, en escrupuloso cumplimiento de 2. Instar igualmente al Gobierno de Honduras para que extreme todos los medios a su alcance para investigar esos repudiables cr\u00edmenes, identificar a los culpables y aplicarles las sanciones previstas en el derecho interno hondure\u00f1o. Rafael Nieto Navia Presidente H\u00e9ctor Gros Espiell Rodolfo E. Piza E. Pedro Nikken H\u00e9ctor Fix-Zamudio Rigoberto Espinal Juez ad hoc Charles Moyer Secretario", - "values": [ - "Charles Moyer" - ] - }, - { - "text": "1. Desestima las excepciones preliminares opuestas por el Gobierno de Honduras, salvo la referente al no agotamiento de los recursos de jurisdicci\u00f3n interna que ordena por unanimidad, 2. Contin\u00faa con el conocimiento del presente caso. por unanimidad, 3. Reserva el pronunciamiento sobre costas para decidirlo con la cuesti\u00f3n de fondo. 19 Redactada en espa\u00f1ol e ingl\u00e9s, haciendo fe el texto en espa\u00f1ol. Le\u00edda en sesi\u00f3n p\u00fablica en la sede de la Corte en San Jos\u00e9, Costa Rica, el d\u00eda 26 de junio de 1987. Thomas Buergenthal Presidente Rafael Nieto Navia Rodolfo E. Piza E. Pedro Nikken H\u00e9ctor Fix-Zamudio H\u00e9ctor Gros Espiell Rigoberto Espinal Ir\u00edas Charles Moyer Secretario Comun\u00edquese y ejec\u00fatese Thomas Buergenthal Presidente Charles Moyer Secretario", - "values": [ - "Charles Moyer", - "Manuel Ventura", - "Edmundo Vargas Carre\u00f1o" - ] - }, - { - "text": " 11. Informar \u00e0 Comiss\u00e3o Interamericana de Direitos Humanos, aos representantes das supostas v\u00edtimas e ao Estado do Brasil que contam com prazo at\u00e9 21 de junho de 2010, para apresentar suas alega\u00e7\u00f5es finais escritas sobre as exce\u00e7\u00f5es preliminares e eventuais m\u00e9rito, repara\u00e7\u00f5es e custas neste caso. Este prazo \u00e9 improrrog\u00e1vel e independente da remiss\u00e3o da c\u00f3pia da grava\u00e7\u00e3o da audi\u00eancia 12. Requerer \u00e0 Secretaria do Tribunal que notifique a presente Resolu\u00e7\u00e3o \u00e0 Comiss\u00e3o Interamericana de Direitos Humanos, aos representantes das supostas v\u00edtimas e ao Estado do Brasil. 20 Diego Garc\u00eda-Say\u00e1n Presidente Emilia Segares Rodr\u00edguez Secret\u00e1ria Adjunta Comunique-se e execute-se, Diego Garc\u00eda-Say\u00e1n Presidente Emilia Segares Rodr\u00edguez Secret\u00e1ria Adjunta", - "values": [ - "Emilia Segares Rodr\u00edguez" - ] - }, - { - "text": "7. Disponer que la Secretar\u00eda de la Corte notifique la presente Resoluci\u00f3n al Estado, a los representantes de las v\u00edctimas y a la Comisi\u00f3n Interamericana de Derechos Corte IDH. Caso Granier y otros (Radio Caracas Televisi\u00f3n) Vs. Venezuela. Supervisi\u00f3n de cumplimiento de sentencia. Resoluci\u00f3n de la Corte Interamericana de Derechos Humanos de 18 de noviembre de 2020. Resoluci\u00f3n adoptada en San Jos\u00e9 de Costa Rica por medio de sesi\u00f3n virtual. Elizabeth Odio Benito Presidenta L. Patricio Pazmi\u00f1o Freire Humberto Antonio Sierra Porto Eduardo Ferrer Mac-Gregor Poisot Eugenio Ra\u00fal Zaffaroni Ricardo C. P\u00e9rez Manrique Pablo Saavedra Alessandri Secretario Comun\u00edquese y ejec\u00fatese, Elizabeth Odio Benito Presidenta Pablo Saavedra Alessandri Secretario 10", - "values": [ - "Pablo Saavedra Alessandri" - ] - }, - { - "text": " 5 6 2 9. En el presente caso, comparto plenamente la decisi\u00f3n adoptada, sin embargo, hago un respetuoso llamado para que la Corte Interamericana se mantenga atenta y expectante de procesos que llegan a su conocimiento y que en principio gozan de una apariencia de legalidad, pero que, al realizar un an\u00e1lisis conglobado del contexto, as\u00ed como de los diferentes elementos probatorios, evidencian clara motivaci\u00f3n y componentes censitarios que vulneran el principio de L. Patricio Pazmi\u00f1o Freire Juez Pablo Saavedra Alessandri Secretario 7 Voto parcialmente disidente del Juez L. Patricio Pazmi\u00f1o Freire en el Caso Petro Urrego Vs. Colombia. Excepciones Preliminares, Fondo, Reparaciones y Costas. Sentencia de 8 de julio de 2020. Serie C No. 406. 3", - "values": [ - "Pablo Saavedra Alessandri" - ] - }, - { - "text": "18. Informar a los representantes, al Estado y a la Comisi\u00f3n Interamericana que cuentan con un plazo hasta el 15 de marzo de 2021 para presentar sus alegatos finales escritos y observaciones finales escritas, respectivamente, en relaci\u00f3n con las excepciones preliminares, eventuales fondo, y reparaciones y costas en el presente caso. Este plazo es improrrogable e independiente de la 19. Disponer que la Secretar\u00eda de la Corte Interamericana notifique la presente Resoluci\u00f3n a la Comisi\u00f3n Interamericana de Derechos Humanos, a los intervinientes comunes y al Estado de Colombia. Elizabeth Odio Benito Presidenta Pablo Saavedra Alessandri Secretario Comun\u00edquese y ejec\u00fatese, Elizabeth Odio Benito Presidenta Pablo Saavedra Alessandri Secretario -28-", - "values": [ - "Pablo Saavedra Alessandri" - ] - }, - { - "text": "Perito/a, cuyo nombre ser\u00e1 informado a la brevedad , quien declarar\u00e1 sobre el alcance de las obligaciones de los Estados en materia de investigaci\u00f3n de ejecuciones extrajudiciales que hayan tenido como m\u00f3vil la actividad pol\u00edtica o sindical de la v\u00edctima. En particular, el/la perito/a se referir\u00e1 a la obligaci\u00f3n de esclarecer la totalidad de El CV del/a perito/a propuesto/a ser\u00e1 incluido en los anexos al Informe de Fondo No. 158/19. La Comisi\u00f3n pone en conocimiento de la Honorable Corte la siguiente informaci\u00f3n de quienes act\u00faan como parte peticionaria en el tr\u00e1mite ante la CIDH conforme a la informaci\u00f3n m\u00e1s reciente: 3 XXX Aprovecho la oportunidad para saludar a usted muy atentamente, Marisol Blanchard Secretaria Ejecutiva Adjunta Anexo 4", - "values": [ - "Marisol Blanchard" - ] - }, - { - "text": " 18. 19. Requerir a los representantes que, a m\u00e1s tardar junto con sus alegatos 20. Disponer, de conformidad con el art\u00edculo 4 del Reglamento de la Corte sobre el Funcionamiento del Fondo de Asistencia Legal de V\u00edctimas, que la Secretar\u00eda del Tribunal abra un expediente de gastos, donde se documentar\u00e1 cada una de las erogaciones que se realicen con el Fondo de Asistencia Legal de V\u00edctimas. 21. Disponer que la Secretar\u00eda de la Corte Interamericana notifique la presente Resoluci\u00f3n a la Comisi\u00f3n Interamericana de Derechos Humanos, a los representantes y al Estado de Honduras. Elizabeth Odio Benito Presidenta Pablo Saavedra Alessandri Secretario Comun\u00edquese y ejec\u00fatese, Elizabeth Odio Benito Presidenta Pablo Saavedra Alessandri Secretario 12", - "values": [ - "Pablo Saavedra Alessandri" - ] - }, - { - "text": " 8. Informar al representante, al Estado y a la Comisi\u00f3n Interamericana que, en los t\u00e9rminos del art\u00edculo 56 del Reglamento, cuentan con un plazo de un mes, contado a partir del d\u00eda en que, de conformidad con lo establecido en el 9. Disponer que la Secretar\u00eda de la Corte Interamericana de Derechos Humanos notifique la presente Resoluci\u00f3n a la Comisi\u00f3n Interamericana de Derechos Humanos, al representante de las presuntas v\u00edctimas y a la Rep\u00fablica de Ecuador. Resoluci\u00f3n de la Presidenta de la Corte Interamericana de Derechos Humanos. Caso Villarroel Merino y otros Vs. Ecuador. Elizabeth Odio Benito Presidenta Pablo Saavedra Alessandri Secretario Comun\u00edquese y ejec\u00fatese, Elizabeth Odio Benito Presidenta Pablo Saavedra Alessandri Secretario 5", - "values": [ - "Pablo Saavedra Alessandri" - ] - }, - { - "text": " En Perito/a, cuyo nombre ser\u00e1 informado a la brevedad , quien declarar\u00e1 sobre las obligaciones del Estado en materia de utilizaci\u00f3n de medidas resarcitorias civiles para sancionar el ejercicio de la libertad de expresi\u00f3n sobre asuntos de inter\u00e9s p\u00fablico, de acuerdo con los criterios de legalidad, necesidad y proporcionalidad. Por otra parte, El CV del/a perito/a propuesto/a ser\u00e1 incluido en los anexos al Informe de Fondo No. 148/19. La Comisi\u00f3n pone en conocimiento de la Honorable Corte la siguiente informaci\u00f3n de quienes act\u00faan como parte peticionaria en el tr\u00e1mite ante la CIDH conforme a la informaci\u00f3n m\u00e1s reciente: XXX Aprovecho la oportunidad para saludar a usted muy atentamente, Marisol Blanchard Secretaria Ejecutiva Adjunta Anexo 3", - "values": [ - "Marisol Blanchard" - ] - }, - { - "text": "VOTO CONCURRENTE DEL JUEZ EDUARDO VIO GROSSI RESOLUCI\u00d3N DE LA CORTE INTERAMERICANA DE DERECHOS HUMANOS DE 19 DE Se expide el presente voto concurrente con la Resoluci\u00f3n del ep\u00edgrafe, por las mismas razones esgrimidas en el tambi\u00e9n voto concurrente, de fecha 3 de septiembre de 2020, concerniente a la \u201cResoluci\u00f3n de la Corte Interamericana de Derechos Humanos\u201d, de esa fecha, \u201cSolicitud de Medidas Provisionales y Supervisi\u00f3n de Cumplimiento de Sentencia, Caso Galindo C\u00e1rdenas y Otros VS. Per\u00fa\u201d, argumentos que, por ende, se dan por reproducidos y que dicen relaci\u00f3n, en particular, con la situaci\u00f3n ahora se\u00f1alada en el p\u00e1rrafo N\u00b0 11 de los Considerandos de la Resoluci\u00f3n del r\u00f3tulo. Eduardo Vio Grossi Juez Pablo Saavedra Alessandri Secretario", - "values": [ - "Pablo Saavedra Alessandri" - ] - }, - { - "text": " 58 V\u00e9anse los casos 59 V\u00e9anse los principios y directrices relativos al derecho a un juicio justo y a asistencia jur\u00eddica en \u00c1frica. Cfr. Caso Mart\u00ednez Esquivia Vs. Colombia. Excepciones preliminares, Fondo y Reparaciones , supra, p\u00e1rr 93. 60 V\u00e9anse las Directrices de las Naciones Unidos sobre la funci\u00f3n de los fiscales, as\u00ed como los criterios de la Relator\u00eda Especial de Naciones Unidas sobre la independencia de los magistrados y abogados. Cfr. Caso Mart\u00ednez Esquivia Vs. Colombia, supra, p\u00e1rrs. 89 y 90. 61 V\u00e9ase, entre otros elementos, la Declaraci\u00f3n de Burdeos, relativo al informe conjunto del Consejo Consultivo de Jueces Europeos y el Consejo Consultivo de Fiscales Europeos. Cfr. Caso Mart\u00ednez Esquivia Vs. Colombia, supra, p\u00e1rr. 91. 13", - "values": [ - "Romina I. Sijniensky" - ] - }, - { - "text": " 9. La Corte supervisar\u00e1 el cumplimiento \u00edntegro de esta Sentencia, en ejercicio de sus atribuciones y en Redactada en espa\u00f1ol en San Jos\u00e9, Costa Rica, el 17 de noviembre de 2020. Corte IDH. Caso Almeida Vs. Argentina. Fondo, Reparaciones y Costas. Sentencia de 17 de noviembre de 2020. Corte IDH. Caso Almeida Vs. Argentina. Fondo, Reparaciones y Costas. Sentencia de 17 de noviembre de 2020. Sentencia adoptada en San Jos\u00e9, Costa Rica por medio de sesi\u00f3n virtual. Elizabeth Odio Benito Presidenta L. Patricio Pazmi\u00f1o Freire Humberto Antonio Sierra Porto Eduardo Ferrer Mac-Gregor Poisot Ricardo C. P\u00e9rez Manrique Pablo Saavedra Alessandri Secretario Comun\u00edquese y ejec\u00fatese, Elizabeth Odio Benito Presidenta Pablo Saavedra Alessandri Secretario 25", - "values": [ - "Pablo Saavedra Alessandri" - ] - }, - { - "text": "1. Declarar que la Rep\u00fablica del Ecuador ha cumplido con reintegrar al Fondo de Asistencia Legal de V\u00edctimas de la Corte Interamericana de Derechos Humanos la cantidad dispuesta en el punto resolutivo d\u00e9cimo cuarto y el p\u00e1rrafo 241 de la Sentencia. Sin perjuicio de ello, se exhorta al Estado que realice el pago de los intereses al Fondo de Asistencia Legal de V \u00ed ctimas de 2. Disponer que la Secretar\u00eda de la Corte Interamericana de Derechos Humanos notifique la presente Resoluci\u00f3n al Estado de Ecuador, a los representantes de las v\u00edctimas y a la Comisi\u00f3n Interamericana. -2- Elizabeth Odio Benito Presidenta Pablo Saavedra Alessandri Secretario Comun\u00edquese y ejec\u00fatese, Elizabeth Odio Benito Presidenta Pablo Saavedra Alessandri Secretario -3-", - "values": [ - "Pablo Saavedra Alessandri" - ] - }, - { - "text": " La Comisi\u00f3n pone en conocimiento de la Honorable Corte la siguiente Beth Stephens Child and Family Advocacy Clinic - Rutgers School of Law XXXXXXXXXXXXXXXXXXXXXXXXXXXX Mar\u00eda Leonor Oviedo Bellott XXXXXXXXXXXXXXXXXXXXXXXXXXX Julieta Monta\u00f1o XXXXXXXXXXXXXXXXXXXXXXXXX Julieta Monta\u00f1o XXXXXXXXXXXXXXXXXXXXXXXXX Shelby R. Quast / Tanya Sukhija Equality Now XXXXXXXXXXXXXXXXXXXXXXX Alyssa Johnson XXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXX Shayda Vance XXXXXXXXXXXXXXXXXXXXXXXXXXXXXXX Elizabeth C. Solander XXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXX Romina Canessa XXXXXXXXXXXXXXXXXXXXXXXXX B\u00e1rbara Jim\u00e9nez-Santiago XXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXX Aprovecho la oportunidad para saludar a usted muy atentamente, Marisol Blanchard Secretaria Ejecutiva Adjunta Anexo 4", - "values": [ - "Marisol Blanchard" - ] - }, - { - "text": "Perito/a Perito/a cuyo nombre ser\u00e1 informado a la brevedad, quien declarar\u00e1 sobre la noci\u00f3n de reparaci\u00f3n integral y sus diferentes componentes en casos de graves El CV de los peritos ofrecidos ser\u00e1 incluido en los anexos al Informe de Fondo N\u00ba 170/17. La Comisi\u00f3n pone en conocimiento de la Corte la siguiente informaci\u00f3n sobre quienes actuaron como peticionarios a lo largo del tr\u00e1mite del caso: Reiniciar xxxxxxxxxxxxxxxxxxxxx xxxxxxxxxxxxxxxxxxxxxxxx Derechos con Dignidad xxxxxxxxxxxxxxxxxxxxxxxxxx Representantes de Miguel \u00c1ngel D\u00edaz xxxxxxxxxxxxxxxxxxxx xxxxxxxxxxxxxxxxxxxxxxxxxxxx \u00c1lvaro Enrique G\u00f3mez Guevara xxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxx Aprovecho la oportunidad para saludar a usted muy atentamente, Paulo Abr\u00e3o Secretaria Ejecutivo 7", - "values": [ - "Paulo Abr\u00e3o" - ] - }, - { - "text": "20. In 21. Obiter dicta , it is necessary to recall the disastrous results of corporate and verticalized judiciaries in the face of the irruption of the totalitarian regimes in the inter- war years in Germany, Italy and France. Moreover, it should also be added that, even though this case relates to a rule applicable by the collegiate organs of the Judiciary itself, the prohibitions that it contains could not be tolerated even if the sanctions were imposed by an organ external to the Judiciary or belonging to the Judiciary but distinct from the collegiate 22. I add these considerations in concurrence with those expressed unanimously in this judgment. 23. This is my opinion. Eugenio Ra\u00fal Zaffaroni Judge Pablo Saavedra Alessandri Secretary 3", - "values": [ - "Romina I. Sijniensky", - "Pablo Saavedra Alessandri" - ] - }, - { - "text": "En virtud Perito/a, cuyo nombre ser\u00e1 informado a la brevedad , quien declarar\u00e1 sobre las obligaciones de los Estados respecto al derecho a la propiedad colectiva de los pueblos ind\u00edgenas sobre sus territorios ancestrales y el deber de protecci\u00f3n que emana del art\u00edculo 21 de la Convenci\u00f3n Americana. En particular, el/la perito/a se referir\u00e1 a la El CV del/a perito/a propuesto/a ser\u00e1 incluido en los anexos al Informe de Fondo No. 12/20. La Comisi\u00f3n pone en conocimiento de la Honorable Corte la siguiente informaci\u00f3n de quienes act\u00faan como parte peticionaria en el tr\u00e1mite ante la CIDH conforme a la informaci\u00f3n m\u00e1s reciente: XXX Aprovecho la oportunidad para saludar a usted muy atentamente, Marisol Blanchard Secretaria Ejecutiva Adjunta Anexo 4", - "values": [ - "Marisol Blanchard" - ] - }, - { - "text": "Adem\u00e1s En virtud de que estas cuestiones La Comisi\u00f3n pone en conocimiento de la Corte los siguientes datos de quien ha actuado como peticionario a lo largo del tr\u00e1mite interamericano: Sr. Sergio S. Valdivia Ayala Secretario General \u2013 FEMAPOR V\u00edctor J. Guerrero Cassuso Secretario de Organizaci\u00f3n \u2013 FEMAPOR Julio G. Rossi M\u00e9rida Secretario de Econom\u00eda - FEMAPOR Xxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxx Mar\u00eda Luisa Valdivia Abogada xxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxx Aprovecho la oportunidad para saludar a usted muy atentamente, Marisol Blanchard Jefa de Gabinete de la Secretar\u00eda Ejecutiva 1 Corte IDH. Caso ANCEJUB-SUNAT vs Per\u00fa . Convocatoria a Audiencia. Resoluci\u00f3n del Presidente de la Corte Interamericana de Derechos Humanos. Considerando No. 10. Anexo", - "values": [ - "Pablo Saavedra Alessandri", - "V\u00edctor Guerrero Cassuso", - "Marisol Blanchard", - "Julio Rossi M\u00e9rida", - "Sergio Valdivia Ayala" - ] - }, - { - "text": " VOTO CONCURRENTE DEL JUEZ EDUARDO VIO GROSSI RESOLUCI\u00d3N DE LA CORTE INTERAMERICANA DE DERECHOS HUMANOS DE 19 DE Se expide el presente voto concurrente con la Resoluci\u00f3n del ep\u00edgrafe, por las mismas razones esgrimidas en el tambi\u00e9n voto concurrente, de fecha 3 de septiembre de 2020, concerniente a la \u201cResoluci\u00f3n de la Corte Interamericana de Derechos Humanos\u201d, de esa fecha, \u201cSolicitud de Medidas Provisionales y Supervisi\u00f3n de Cumplimiento de Sentencia, Caso Galindo C\u00e1rdenas y Otros VS. Per\u00fa\u201d, argumentos que, por ende, se dan por reproducidos y que dicen relaci\u00f3n, en particular, con la situaci\u00f3n ahora se\u00f1alada en el p\u00e1rrafo N\u00b0 11 de los Considerandos de la Resoluci\u00f3n del r\u00f3tulo. Eduardo Vio Grossi Juez Pablo Saavedra Alessandri Secretario 1", - "values": [ - "Pablo Saavedra Alessandri" - ] - }, - { - "text": "VOTO CONCURRENTE DEL JUEZ EDUARDO VIO GROSSI, RESOLUCI\u00d3N DE LA CORTE INTERAMERICANA DE DERECHOS HUMANOS DE 19 DE Se expide el presente voto concurrente con la Resoluci\u00f3n del ep\u00edgrafe, por las mismas razones esgrimidas en el tambi\u00e9n voto concurrente, de fecha 3 de septiembre de 2020, concerniente a la \u201cResoluci\u00f3n de la Corte Interamericana de Derechos Humanos\u201d, de esa fecha, \u201cSolicitud de Medidas Provisionales y Supervisi\u00f3n de Cumplimiento de Sentencia, Caso Galindo C\u00e1rdenas y Otros VS. Per\u00fa\u201d, argumentos que, por ende, se dan por reproducidos y que dicen relaci\u00f3n, en particular, con la situaci\u00f3n ahora se\u00f1alada en el p\u00e1rrafo N\u00b0 13 de los Considerandos de la Resoluci\u00f3n del r\u00f3tulo. Eduardo Vio Grossi Juez Pablo Saavedra Alessandri Secretario", - "values": [ - "Pablo Saavedra Alessandri" - ] - }, - { - "text": "Estado Aprobado por la Comisi\u00f3n Interamericana de Derechos Humanos en la ciudad de Washington, D.C., a los 6 d\u00edas del mes de diciembre de 2017. (Firmado):, Francisco Jos\u00e9 Eguiguren, Presidente; Margarette May Macaulay, Primera Vicepresidenta; Esmeralda E. Arosemena Bernal de Troiti\u00f1o, Segunda Vicepresidenta; Jos\u00e9 de Jes\u00fas Orozco Henr\u00edquez, Paulo Vannuchi y James L. Cavallaro, Miembros de la La que suscribe, Elizabeth Abi-Mershed, en su car\u00e1cter de Secretaria Ejecutiva Adjunta de la Comisi\u00f3n Interamericana de Derechos Humanos, de conformidad con el art\u00edculo 49 del Reglamento de la Comisi\u00f3n, certifica que es copia fiel del original depositado en los archivos de la Secretar\u00eda de la CIDH. Elizabeth-Abi Mershed Secretaria Ejecutiva Adjunta 235", - "values": [ - "Elizabeth Abi-Mershed" - ] - }, - { - "text": "Las hojas de Igualmente, la Comisi\u00f3n se permite solicitar el traslado del peritaje de Christian Courtis, ofrecido por la CIDH en el caso Empleados de la F\u00e1brica de Fuegos en Santo Antonio de Jes\u00fas y sus familiares vs. Brasil, una vez sea rendido ante la Corte Interamericana. La Comisi\u00f3n pone en conocimiento de la Corte la siguiente informaci\u00f3n sobre quien actu\u00f3 como parte peticionaria a lo largo del tr\u00e1mite del caso: CEJIL Mesoam\u00e9rica xxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxx Asociaci\u00f3n Miskitos Hondure\u00f1os de Buzos Lisiados AMHBLI, Asociaci\u00f3n de Mujeres Misquitas - MIMAT y Almuk Nani Asla Takanka - Consejo de Ancianos Aprovecho la oportunidad para saludar a usted muy atentamente, Marisol Blanchard Jefa de Gabinete de la Secretar\u00eda Ejecutiva Anexo 4", - "values": [ - "Pablo Saavedra Alessandri", - "Marisol Blanchard" - ] - }, - { - "text": " 11. Informar a los representantes, al Estado y a la Comisi\u00f3n Interamericana que, en los t\u00e9rminos del art\u00edculo 56 del Reglamento, cuentan con un plazo improrrogable hasta el 12 de abril de 2021 para presentar sus alegatos 12. Requerir al Estado que remita, a m\u00e1s tardar el 15 de febrero de 2021, los documentos solicitados por la Presidenta en el Considerando 25 de la presente Resoluci\u00f3n. 13. Disponer que la Secretar\u00eda de la Corte Interamericana notifique la presente Resoluci\u00f3n a la Comisi\u00f3n Interamericana de Derechos Humanos, a los representantes y al Estado de El Salvador. Elizabeth Odio Benito Presidenta Pablo Saavedra Alessandri Secretario Comun\u00edquese y ejec\u00fatese, Elizabeth Odio Benito Presidenta Pablo Saavedra Alessandri Secretario 11", - "values": [ - "Pablo Saavedra Alessandri" - ] - }, - { - "text": " 2. 3. Aprobado por la Comisi\u00f3n El que suscribe, Paulo Abr\u00e3o, Secretario Ejecutivo, de conformidad con el art\u00edculo 49 del Reglamento de la Comisi\u00f3n, certifica que es copia fiel del original depositado en los archivos de la Secretar\u00eda de la CIDH. 102 CIDH. Demanda ante la Corte Interamericana de Derechos Humanos. Mar\u00eda Rever\u00f3n Trujillo. Venezuela. 9 de noviembre de 2007, p\u00e1rr. 56. 103 Corte IDH . Caso Furlan y Familiares vs. Argentina . Excepciones Preliminares, Fondo, Reparaciones y Costas. Sentencia de 31 de agosto de 2012. Serie C No. 246, p\u00e1rr. 209; y Caso Mej\u00eda Idrovo vs. Ecuador . Excepciones Preliminares, Fondo, Reparaciones y Costas. Sentencia de 5 de julio de 2011. Serie C No. 228, p\u00e1rr. 104. 21 Paulo Abr\u00e3o Secretario Ejecutivo 22", - "values": [ - "Paulo Abr\u00e3o" - ] - }, - { - "text": " POR LA en el uso de las RESUELVE: 1. Declarar que el Estado de Guatemala ha cumplido con reintegrar al Fondo de Asistencia Legal de V\u00edctimas de la Corte Interamericana de Derechos Humanos la cantidad dispuesta en el punto resolutivo 16 y el p\u00e1rrafo 245 de la Sentencia de excepci\u00f3n preliminar, fondo, reparaciones y costas del caso Cuscul Pivaral y otros. 2. Disponer que la Secretar\u00eda de la Corte Interamericana de Derechos Humanos notifique la presente Resoluci\u00f3n al Estado de Guatemala, a las representantes de las v\u00edctimas y a la Comisi\u00f3n Interamericana de Derechos Humanos. Elizabeth Odio Benito Presidenta Pablo Saavedra Alessandri Secretario Comun\u00edquese y ejec\u00fatese, Elizabeth Odio Benito Presidenta Pablo Saavedra Alessandri Secretario -2-", - "values": [ - "Pablo Saavedra Alessandri" - ] - }, - { - "text": "Perito/a cuyo nombre ser\u00e1 informado a la brevedad , quien declarar\u00e1 sobre las obligaciones internacionales de los Estados frente a actividades El CV del/la perito/a ofrecido/a ser\u00e1 incluido en los anexos al Informe de Fondo No. 57/19. La Comisi\u00f3n pone en conocimiento de la Corte los siguientes datos de quien ha actuado como peticionaria a lo largo del tr\u00e1mite interamericano: Corporaci\u00f3n Colectivo de Abogados Jos\u00e9 Alvear Restrepo - CAJAR XXXXXXXXXXXXXXXXXXXXXXXX XXXXXXXXXXXXXXXXXXXXXXXXXXXXXX XXXXXXXXXXXXXXXXXXXXXX Centro por la Justicia y el Derecho Internacional XXXXXXXXXXXXXXXXXXXXXXXXXXXXXX Rafael Barrios XXXXXXXXXXXXXXXXXXXXXXX Aprovecho la oportunidad para saludar a usted muy atentamente, Marisol Blanchard Secretaria Ejecutiva Adjunta", - "values": [ - "Pablo Saavedra Alessandri", - "Marisol Blanchard" - ] - }, - { - "text": "2. 3. Adoptar las medidas legislativas o de otra Aprobado por la Comisi\u00f3n Interamericana de Derechos Humanos en la ciudad de Santo Domingo, Rep\u00fablica Dominicana, a los 9 d\u00edas del mes de mayo de 2018. (Firmado): Margarette May Macaulay, Presidenta; Esmeralda E. Arosemena Bernal de Troiti\u00f1o, Primera Vicepresidenta; Luis Ernesto Vargas Silva, Segundo Vicepresidente; Joel Hern\u00e1ndez Garc\u00eda, Antonia Urrejola y Fl\u00e1via Piovesan, Miembros de la Comisi\u00f3n. El que suscribe, Paulo Abr\u00e3o, Secretario Ejecutivo de la Comisi\u00f3n Interamericana de Derechos Humanos, de conformidad con el art\u00edculo 49 del Reglamento de la Comisi\u00f3n, certifica que es copia fiel del original depositado en los archivos de la Secretar\u00eda de la CIDH. Paulo Abr\u00e3o Secretario Ejecutivo 21", - "values": [ - "Paulo Abr\u00e3o" - ] - }, - { - "text": " 2. Aclarar, por medio de 3. Disponer que la Secretar\u00eda de la Corte notifique la presente Sentencia de Interpretaci\u00f3n a la Rep\u00fablica Argentina, a los representantes de las v\u00edctimas y a la Comisi\u00f3n Interamericana de Derechos Humanos. 8 Corte IDH. Caso Comunidades ind\u00edgenas miembros de la Asociaci\u00f3n Lhaka Honhat (Nuestra Tierra) Vs. Argentina. Interpretaci\u00f3n de la Sentencia de Fondo, Reparaciones y Costas . Sentencia de 24 de noviembre de 2020. Elizabeth Odio Benito Presidenta L. Patricio Pazmi\u00f1o Freire Eduardo Vio Grossi Humberto Antonio Sierra Porto Eduardo Ferrer Mac-Gregor Poisot Ricardo C. P\u00e9rez Manrique Pablo Saavedra Alessandri Secretario Comun\u00edquese y ejec\u00fatese, Elizabeth Odio Benito Presidenta Pablo Saavedra Alessandri Secretario 9", - "values": [ - "Pablo Saavedra Alessandri" - ] - }, - { - "text": " discapacidad especialmente respecto de su alcance espec\u00edfico respecto del derecho a la salud y la seguridad social. En particular El CV del/la perito/a ofrecido/a ser\u00e1 incluido en los anexos al Informe de Fondo N\u00ba 107/18. La Comisi\u00f3n pone en conocimiento de la Corte la siguiente informaci\u00f3n sobre la representaci\u00f3n de la v\u00edctima: Ramiro \u00c1lvaro Vera Luza (padre) Carolina Andrea del Pilar Rojas Far\u00edas (madre) xxxxxxxxxxxxxxxxxxxxxxxxxx xxxxxxxxxxxxxxxxxxxxxxxxxx Magdalena Garc\u00e9s (abogada) Karinna Fern\u00e1ndez (abogada) xxxxxxxxxxxxxxxxxxxxxxxxxx xxxxxxxxxxxxxxxxxxxxxxxxxx Aprovecho la oportunidad para saludar a usted muy atentamente, Firmado en el original Marisol Blanchard Secretaria Ejecutiva Adjunta a.i. Sistema de Casos y Peticiones Anexo 4", - "values": [ - "Pablo Saavedra Alessandri", - "Marisol Blanchard" - ] - }, - { - "text": " 21. Obiter dicta , cabe recordar el desastroso resultado de poderes judiciales corporativos y verticalizados ante la irrupci\u00f3n de los totalitarismos de entreguerras en Alemania, Italia y Francia. En otro orden, tambi\u00e9n es bueno agregar que si bien en el caso se trata de una norma aplicable por los \u00f3rganos colegiados del propio Poder Judicial, las prohibiciones que contiene no podr\u00edan ser toleradas tampoco si las sanciones fuesen impuestas por un \u00f3rgano ajeno al Poder Judicial o propio de \u00e9ste pero diferente de las instancias colegiadas de jueces, como 3 22. Agrego estos fundamentos en concurrencia con los expresados por unanimidad en la presente sentencia. 23. As\u00ed lo voto. Eugenio Ra\u00fal Zaffaroni Juez Pablo Saavedra Alessandri Secretario 4", - "values": [ - "Pablo Saavedra Alessandri" - ] - }, - { - "text": " 58 V\u00e9anse los casos 59 V\u00e9anse los principios y directrices relativos al derecho a un juicio justo y a asistencia jur\u00eddica en \u00c1frica. Cfr. Caso Mart\u00ednez Esquivia Vs. Colombia. Excepciones preliminares, Fondo y Reparaciones , supra, p\u00e1rr 93. 60 V\u00e9anse las Directrices de las Naciones Unidos sobre la funci\u00f3n de los fiscales, as\u00ed como los criterios de la Relator\u00eda Especial de Naciones Unidas sobre la independencia de los magistrados y abogados. Cfr. Caso Mart\u00ednez Esquivia Vs. Colombia, supra, p\u00e1rrs. 89 y 90. 61 V\u00e9ase, entre otros elementos, la Declaraci\u00f3n de Burdeos, relativo al informe conjunto del Consejo Consultivo de Jueces Europeos y el Consejo Consultivo de Fiscales Europeos. Cfr. Caso Mart\u00ednez Esquivia Vs. Colombia, supra, p\u00e1rr. 91. 13", - "values": [ - "Romina I. Sijniensky" - ] - }, - { - "text": " En 3 Perito/a, cuyo nombre ser\u00e1 informado a la brevedad , quien declarar\u00e1 sobre el fen\u00f3meno de la criminalizaci\u00f3n del El CV del/a perito/a propuesto/a ser\u00e1 incluido en los anexos al Informe de Fondo No. 52/19. La Comisi\u00f3n pone en conocimiento de la Honorable Corte la siguiente informaci\u00f3n de quienes act\u00faan como parte peticionaria en el tr\u00e1mite ante la CIDH conforme a la informaci\u00f3n m\u00e1s reciente: Cl\u00ednica de Acciones de Inter\u00e9s P\u00fablico XXXXXXXXXXXXXXXXXXXXXXXX Cristian Riego Cl\u00ednica de Acciones de Inter\u00e9s P\u00fablico XXXXXXXXXXXXXXXXXXXXXX Mayra Feddersen, Nicolas Espejo y otros Universidad Diego Portales XXXXXXXXXXXXXXXXXXXXXXX Aprovecho la oportunidad para saludar a usted muy atentamente, Marisol Blanchard Secretaria Ejecutiva Adjunta Anexo 4", - "values": [ - "Pablo Saavedra Alessandri", - "Marisol Blanchard" - ] - }, - { - "text": "29. En el caso, el Sr. Casa Nina debi\u00f3 ejercer el cargo de fiscal sin la seguridad de la permanencia de sus funciones pese al car\u00e1cter de provisional de su nombramiento, lo Ricardo C. P\u00e9rez Manrique Juez Pablo Saavedra Alessandri Secretario 10 Directrices sobre la funci\u00f3n de los fiscales. Octavo Congreso de las Naciones Unidas sobre Prevenci\u00f3n del Delito y Tratamiento del Delincuente, celebrado en La Habana (Cuba), del 27 de agosto al 7 de septiembre de 1990, ONU Doc. A/CONF.144/28/Rev. 1 p. 189 (1990). https://www.ohchr.org/SP/ProfessionalInterest/Pages/RoleOfProsecutors.aspx 11 \"Principios b\u00e1sicos relativos a la independencia de la judicatura\" disponibles en https://www.ohchr.org/sp/professionalinterest/pages/independencejudiciary.aspx 7", - "values": [ - "Pablo Saavedra Alessandri" - ] - }, - { - "text": " El que suscribe, Paulo Abr\u00e3o, en su car\u00e1cter de Secretario Ejecutivo de la Comisi\u00f3n Interamericana de Derechos Humanos, de conformidad con el art\u00edculo 49 del Reglamento de la 28 Corte IDH. Caso Canales Huapaya y otros Vs. Per\u00fa. Excepciones Preliminares, Fondo, Reparaciones y Costas. Sentencia de 24 de junio de 2015. Serie C No. 296, p\u00e1rr. 149. 29 Corte IDH. Caso Canales Huapaya y otros Vs. Per\u00fa. Excepciones Preliminares, Fondo, Reparaciones y Costas. Sentencia de 24 de junio de 2015. Serie C No. 296, p\u00e1rr. 149. 30 Corte IDH. Caso Trabajadores Cesados de Petroper\u00fa y otros Vs. Per\u00fa. Excepciones Preliminares, Fondo, Reparaciones y Costas. Sentencia de 23 de noviembre de 2017. Serie C No. 344. P\u00e1rr. 209. 12 Paulo Abr\u00e3o Secretario Ejecutivo 13", - "values": [ - "Paulo Abr\u00e3o" - ] - }, - { - "text": " Perito/a cuyo nombre ser\u00e1 informado a la brevedad , la aplicaci\u00f3n de los est\u00e1ndares relativos a personas defensoras de derechos humanos y prohibici\u00f3n de represalias por el ejercicio de tal defensa mediante la libertad de expresi\u00f3n en el contexto de la denuncia p\u00fablica de violaciones de derechos humanos. El/la perito/a El CV del/la perito/a ofrecido/a ser\u00e1 incluido en los anexos al Informe de Fondo No. 152/18. La Comisi\u00f3n pone en conocimiento de la Corte la siguiente informaci\u00f3n sobre quien actu\u00f3 como parte peticionaria a lo largo del tr\u00e1mite del caso: Francisco L\u00f3pez Berm\u00fadez xxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxx Aprovecho la oportunidad para saludar a usted muy atentamente, Marisol Blanchard Jefa de Gabinete de la Secretar\u00eda Ejecutiva Anexo 3", - "values": [ - "Pablo Saavedra Alessandri", - "Marisol Blanchard" - ] - }, - { - "text": "4. Archivar 5. Disponer que la Secretar\u00eda de la Corte notifique la presente Resoluci\u00f3n al Estado, a los representantes de la v\u00edctima y a la Comisi\u00f3n Interamericana de Derechos Humanos. Corte IDH. Caso Colindres Schonenberg Vs. El Salvador. Supervisi\u00f3n de Cumplimiento de Sentencia. Resoluci\u00f3n de la Corte Interamericana de Derechos Humanos de 18 de noviembre de 2020. Resoluci\u00f3n adoptada en San Jos\u00e9 de Costa Rica por medio de sesi\u00f3n virtual Elizabeth Odio Benito Presidenta L. Patricio Pazmi\u00f1o Freire Humberto Antonio Sierra Porto Eduardo Ferrer Mac-Gregor Poisot Eugenio Ra\u00fal Zaffaroni Ricardo C. P\u00e9rez Manrique Pablo Saavedra Alessandri Secretario Comun\u00edquese y ejec\u00fatese, Elizabeth Odio Benito Presidenta Pablo Saavedra Alessandri Secretario -4-", - "values": [ - "Pablo Saavedra Alessandri" - ] - }, - { - "text": " Estado y de las representantes mencionados anteriormente 6. Que la Secretar\u00eda notifique la presente Resoluci\u00f3n al Estado, a la Comisi\u00f3n Interamericana de Derechos Humanos y a las representantes de la beneficiaria. 10 Corte IDH. Asunto Castro Rodr\u00edguez respecto de M\u00e9xico. Medidas Provisionales. Resoluci\u00f3n de la Corte Interamericana de Derechos Humanos de 18 de noviembre de 2020. Resoluci\u00f3n adoptada en San Jos\u00e9 de Costa Rica por medio de sesi\u00f3n virtual. Elizabeth Odio Benito Presidenta L. Patricio Pazmi\u00f1o Freire Eduardo Vio Grossi Humberto Antonio Sierra Porto Eugenio Ra\u00fal Zaffaroni Ricardo C. P\u00e9rez Manrique Pablo Saavedra Alessandri Secretario Comun\u00edquese y ejec\u00fatese, Elizabeth Odio Benito Presidenta Pablo Saavedra Alessandri Secretario 11", - "values": [ - "Pablo Saavedra Alessandri" - ] - }, - { - "text": "LA en el uso de las atribuciones RESUELVE: 1. Declarar que el Estado del Per\u00fa ha cumplido con reintegrar al Fondo de Asistencia Legal de V\u00edctimas de la Corte Interamericana de Derechos Humanos la cantidad dispuesta en el punto resolutivo 23 y el p\u00e1rrafo 259 de la Sentencia de excepciones preliminares, fondo, reparaciones y costas del caso Rosadio Villavicencio. 2. Disponer que la Secretar\u00eda de la Corte Interamericana de Derechos Humanos notifique la presente Resoluci\u00f3n al Estado del Per\u00fa, a las representantes de la v\u00edctima y a la Comisi\u00f3n Interamericana de Derechos Humanos. Elizabeth Odio Benito Presidenta Pablo Saavedra Alessandri Secretario Comun\u00edquese y ejec\u00fatese, Elizabeth Odio Benito Presidenta Pablo Saavedra Alessandri Secretario -2-", - "values": [ - "Pablo Saavedra Alessandri" - ] - }, - { - "text": "3. Desestimar por improcedente la solicitud de interpretaci\u00f3n de 4. Disponer que la Secretar\u00eda de la Corte notifique la presente Sentencia de Interpretaci\u00f3n al Estado de Per\u00fa, a la v\u00edctima y a la Comisi\u00f3n Interamericana de Derechos Humanos. Corte IDH. Caso Rosadio Villavicencio Vs. Per\u00fa. Interpretaci\u00f3n de la Sentencia de Excepciones Preliminares, Fondo, Reparaciones y Costas. Sentencia de 8 de octubre de 2020. L. Patricio Pazmi\u00f1o Freire Presidente en ejercicio Eduardo Vio Grossi Humberto Antonio Sierra Porto Eduardo Ferrer Mac-Gregor Poisot Eugenio Ra\u00fal Zaffaroni Ricardo C. P\u00e9rez Manrique Pablo Saavedra Alessandri Secretario Comun\u00edquese y ejec\u00fatese, 8 L. Patricio Pazmi\u00f1o Freire Presidente en ejercicio Pablo Saavedra Alessandri Secretario 9", - "values": [ - "Pablo Saavedra Alessandri" - ] - }, - { - "text": " Perita/o Perita/o cuyo nombre ser\u00e1 informado a la brevedad , quien declarar\u00e1 sobre las normas de inmunidad de altos funcionarios estatales y las salvaguardas que deben operar para asegurar que las mismas cumplan con la finalidad leg\u00edtima que persiguen, sin constituir un riesgo de impunidad de 3 El CV de los/as peritos/as ofrecidos/as ser\u00e1 incluido en los anexos al Informe de Fondo N\u00ba 10/19. La Comisi\u00f3n pone en conocimiento de la Corte la siguiente informaci\u00f3n sobre quienes actuaron como peticionarios a lo largo del tr\u00e1mite del caso: Centro pela Justi\u00e7a e o Direito Internacional Movimento Nacional de Direitos Humanos / Regional Nordeste Aprovecho la oportunidad para saludar a usted muy atentamente, Paulo Abr\u00e3o Secretario Ejecutivo Anexo 4", - "values": [ - "Paulo Abr\u00e3o" - ] - }, - { - "text": " Aprobado por la Comisi\u00f3n Interamericana de Derechos Humanos en la ciudad de Boulder, Colorado, a los 5 d\u00edas del mes de octubre de 2018. (Firmado): Margarette May Macaulay, La que suscribe, Marisol Blanchard, Jefa de Gabinete de la Secretar\u00eda Ejecutiva, de conformidad con el art\u00edculo 49 del Reglamento de la Comisi\u00f3n, certifica que es copia fiel del original depositado en los archivos de la Secretar\u00eda de la CIDH. Marisol Blanchard Jefa de Gabinete de la Secretar\u00eda Ejecutiva 120 CIDH, Informe No. 72/17, Caso 13.019. Fondo. Eduardo Rico. Argentina. 5 de julio de 2017, p\u00e1rr. 124; Corte IDH. Caso L\u00f3pez Lone y otros Vs. Honduras. Excepci\u00f3n Preliminar, Fondo, Reparaciones y Costas. Sentencia de 5 de octubre de 2015. Serie C No. 302, p\u00e1rr. 192. 22", - "values": [ - "Marisol Blanchard" - ] - }, - { - "text": " 6. 7. 8. Disponer que la Secretar i\u0301 a de la Corte notifique la presente Resoluci \u00f3 n al Estado, a las representantes de las v i\u0301 ctimas y a la Comisi \u00f3 n Interamericana de -17- Corte IDH. Caso Mujeres V\u00edctimas de Tortura Sexual en Atenco Vs. M\u00e9xico. Supervisi\u00f3n de Cumplimiento de Sentencia. Resoluci\u00f3n de la Corte Interamericana de Derechos Humanos de 19 de noviembre de 2020. Resoluci\u00f3n adoptada en San Jos\u00e9 de Costa Rica por medio de sesi\u00f3n virtual. Elizabeth Odio Benito Presidenta L. Patricio Pazmi\u00f1o Freire Eduardo Vio Grossi Humberto Antonio Sierra Porto Eugenio Ra\u00fal Zaffaroni Ricardo C. P\u00e9rez Manrique Pablo Saavedra Alessandri Secretario Comun\u00edquese y ejec\u00fatese, Elizabeth Odio Benito Presidenta Pablo Saavedra Alessandri Secretario -18-", - "values": [ - "Pablo Saavedra Alessandri" - ] - }, - { - "text": " Perito/a, cuyo nombre ser\u00e1 informado a la brevedad , quien declarar\u00e1 a partir de los deberes de investigar, sancionar y reparar las graves a violaciones a derechos humanos, sobre la prohibici\u00f3n de la aplicaci\u00f3n de leyes de amnist\u00eda u otras excluyentes de responsabilidad respecto de El CV del/a perito/a propuesto/a ser\u00e1 incluido en los anexos al Informe de Fondo No. 169/19. La Comisi\u00f3n pone en conocimiento de la Honorable Corte la siguiente informaci\u00f3n de quien act\u00faa como parte peticionaria en el tr\u00e1mite ante la CIDH conforme a la informaci\u00f3n m\u00e1s reciente: Instituto de Estudios Legales y Sociales del Uruguay (IELSUR) 3 Aprovecho la oportunidad para saludar a usted muy atentamente, Marisol Blanchard Vera Secretaria Ejecutiva Adjunta Anexo 4", - "values": [ - "Pablo Saavedra Alessandri", - "Marisol Blanchard" - ] - }, - { - "text": "2 En virtud de que estas cuestiones Perito/a cuyo nombre ser\u00e1 informado a la brevedad , quien declarar\u00e1 sobre los est\u00e1ndares internacionales en materia de detenci\u00f3n preventiva y, particularmente, las razones que la pueden sustentar y la exigencia de una revisi\u00f3n peri\u00f3dica de su procedencia. El/la perito/a podr\u00e1 ejemplificar con el caso concreto. El CV del/la perito/a ofrecido/a ser\u00e1 incluido en los anexos al Informe de Fondo No. 113/18. La Comisi\u00f3n pone en conocimiento de la Corte la siguiente informaci\u00f3n sobre quien ha actuado como parte peticionaria a lo largo del tr\u00e1mite del caso: Marcelo Due\u00f1as Veloz xxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxx Aprovecho la oportunidad para saludar a usted muy atentamente, Paulo Abr\u00e3o Secretario Ejecutivo Anexo 3", - "values": [ - "Paulo Abr\u00e3o" - ] - }, - { - "text": " En Perito/a, cuyo nombre ser\u00e1 informado a la brevedad , quien declarar\u00e1 sobre las obligaciones del Estado en materia de uso de la fuerza por parte de agentes estatales, en particular, en lo referente a los requisitos de finalidad leg\u00edtima, El CV del/a perito/a propuesto/a ser\u00e1 incluido en los anexos al Informe de Fondo No. 14/19. La Comisi\u00f3n pone en conocimiento de la Honorable Corte la siguiente informaci\u00f3n de quienes act\u00faan como parte peticionaria en el tr\u00e1mite ante la CIDH conforme a la informaci\u00f3n m\u00e1s reciente: Alejandro Ponce Villac\u00eds XXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXX Mateo Borrero XXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXX Aprovecho la oportunidad para saludar a usted muy atentamente, Marisol Blanchard Secretaria Ejecutiva Adjunta Anexo 3", - "values": [ - "Pablo Saavedra Alessandri", - "Marisol Blanchard" - ] - }, - { - "text": " 20 4. Dispor mecanismos de n\u00e3o repeti\u00e7\u00e3o que incluam: i) adequar o quadro normativo Aprovado pela Comiss\u00e3o Interamericana de Direitos Humanos na cidade de Sucre, Bol\u00edvia, em 12 de fevereiro de 2019. (Assinado): Esmeralda Arosemena Bernal de Troiti\u00f1o, Presidenta; Joel Hern\u00e1ndez Garc\u00eda, Primeiro Vice- Presidente; Antonia Urrejola, Segunda Vice-Presidenta; Margarette May Macaulay e Francisco Jos\u00e9 Eguiguren Praeli, Membros da Comiss\u00e3o. O abaixo assinado, Marisol Blanchard, Chefa de Gabinete da Secretaria Executiva da CIDH , em conformidade com o artigo 49 do Regulamento da Comiss\u00e3o, certifica que \u00e9 uma c\u00f3pia fiel do original depositado nos arquivos da Secretaria da CIDH. Marisol Blanchard Chefa de Gabinete da Secretaria Executiva da CIDH 21", - "values": [ - "Marisol Blanchard" - ] - }, - { - "text": "i) ii) mecanismos que garanticen la consulta previa, con la debida participaci\u00f3n de la Aprobado por la Comisi\u00f3n Interamericana de Derechos Humanos en la ciudad de Puerto Pr\u00edncipe, Haiti, a los 3 d\u00edas del mes de marzo de 2020. (Firmado): Joel Hern\u00e1ndez Garc\u00eda, Presidente; Antonia Urrejola Noguera, Primera Vicepresidenta; Fl\u00e1via Piovesan, Segunda Vicepresidenta; Margarette May Macaulay, Esmeralda Arosemena de Troiti\u00f1o y Julissa Mantilla Falc\u00f3n, Miembros de la Comisi\u00f3n. La que suscribe, Marisol Blanchard, Secretaria Ejecutiva Adjunta, de conformidad con el art\u00edculo 49 del Reglamento de la Comisi\u00f3n, certifica que es copia fiel del original depositado en los archivos de la Secretar\u00eda de la CIDH. Marisol Blanchard Secretaria Ejecutiva Adjunta 28", - "values": [ - "Marisol Blanchard" - ] - }, - { - "text": "6. Incorporar 7. Disponer que la Secretar\u00eda de la Corte notifique la presente Resoluci\u00f3n al Estado, a los representantes de las v\u00edctimas y a la Comisi\u00f3n Interamericana de Derechos Humanos. - 8- Corte IDH. Caso Del Caracazo Vs. Venezuela. Supervisi\u00f3n de Cumplimiento de Sentencia. Resoluci\u00f3n de la Corte Interamericana de Derechos Humanos de 18 de noviembre de 2020. Resoluci\u00f3n adoptada en San Jos\u00e9 de Costa Rica por medio de sesi\u00f3n virtual. Elizabeth Odio Benito Presidenta L. Patricio Pazmi\u00f1o Freire Humberto Antonio Sierra Porto Eduardo Ferrer Mac-Gregor Poisot Eugenio Ra\u00fal Zaffaroni Ricardo C. P\u00e9rez Manrique Pablo Saavedra Alessandri Secretario Comun\u00edquese y ejec\u00fatese, Elizabeth Odio Benito Presidenta Pablo Saavedra Alessandri Secretario - 9-", - "values": [ - "Pablo Saavedra Alessandri" - ] - }, - { - "text": " 5. Disponer que la Secretar\u00eda ANEXOS Fotograf\u00eda No. 1 - 9 - Fotograf\u00eda No. 2 Fotograf\u00eda No. 3 Fotograf\u00eda No. 4 Fotograf\u00eda No. 5 - 10 - Corte IDH. Caso Pueblos Ind\u00edgenas Kuna de Madungand\u00ed y Ember\u00e1 de Bayano y sus Miembros Vs. Panam\u00e1. Supervisi\u00f3n de cumplimiento de sentencia. Resoluci\u00f3n de la Corte Interamericana de Derechos Humanos de 18 de noviembre de 2020. Resoluci\u00f3n adoptada en San Jos\u00e9 de Costa Rica por medio de sesi\u00f3n virtual. Elizabeth Odio Benito Presidenta L. Patricio Pazmi\u00f1o Freire Humberto Antonio Sierra Porto Eduardo Ferrer Mac-Gregor Poisot Eugenio Ra\u00fal Zaffaroni Ricardo C. P\u00e9rez Manrique Pablo Saavedra Alessandri Secretario Comun\u00edquese y ejec\u00fatese, Elizabeth Odio Benito Presidenta Pablo Saavedra Alessandri Secretario - 11 -", - "values": [ - "Pablo Saavedra Alessandri" - ] - }, - { - "text": " 103. 104. Sobre este \u00faltimo particular, no est\u00e1 de m\u00e1s recordar que, en la pr\u00e1ctica y m\u00e1s all\u00e1 de cualquier consideraci\u00f3n te\u00f3rica, la funci\u00f3n de la Corte es, en definitiva, dictar fallos que restablezcan, lo m\u00e1s pronto posible, el respeto de los derechos humanos violados en un espec\u00edfico caso. No es tan seguro que ello se logre respecto de violaciones de esos derechos que no fueron consideradas en la Convenci\u00f3n como justiciables ante aquella ni tampoco cuando, m\u00e1s que procurar resolver el caso que le ha sido sometido, parecer\u00eda que la Eduardo Vio Grossi Juez Pablo Saavedra Alessandri Secretario 107 Adoptada en el Vig\u00e9simo Octavo Per\u00edodo Extraordinario de Sesiones de la Asamblea General de la OEA, 11 de septiembre de 2001, Lima, Per\u00fa. 27", - "values": [ - "Pablo Saavedra Alessandri" - ] - }, - { - "text": " 1. 2. Disponer las medidas de no Aprobado por la Comisi\u00f3n Interamericana de Derechos Humanos en la ciudad de Boulder, Colorado, a los 5 d\u00edas del mes de octubre de 2018. (Firmado): Margarette May Macaulay, Presidenta; Esmeralda Arosemena de Troiti\u00f1o, Primera Vicepresidenta; Francisco Jos\u00e9 Eguiguren Praeli; Joel Hern\u00e1ndez Garc\u00eda, Antonia Urrejola y Flavia Piovesan, Miembros de la Comisi\u00f3n. El que suscribe, Mario L\u00f3pez-Garelli, por autorizaci\u00f3n del Secretario Ejecutivo de la Comisi\u00f3n Interamericana de Derechos Humanos, de conformidad con el art\u00edculo 49 del Reglamento de la Comisi\u00f3n, certifica que es copia fiel del original depositado en los archivos de la Secretar\u00eda de la CIDH. Mario L\u00f3pez-Garelli Por autorizaci\u00f3n del Secretario Ejecutivo 24", - "values": [ - "Mario L\u00f3pez-Garelli" - ] - }, - { - "text": " 4. Adecuar el r\u00e9gimen de sanciones civiles en materia de libertad de expresi\u00f3n respecto de casos en que la persona ofendida sea un funcionario p\u00fablico o persona p\u00fablica, o particular que se haya involucrado voluntariamente en asuntos de 5. Divulgar el presente informe en el Poder Judicial de Chile. Aprobado por la Comisi\u00f3n Interamericana de Derechos Humanos en la ciudad de Kingston, Jamaica a los 4 d\u00edas del mes de mayo de 2019. Esmeralda E. Arosemena Bernal de Troiti\u00f1o Presidenta 27 Joel Hern\u00e1ndez Primer Vicepresidente Margarette May Macaulay Comisionada Luis Ernesto Vargas Silva Comisionado Francisco Jos\u00e9 Eguiguren Comisionado Fl\u00e1via Piovesan Comisionada Reg\u00edstrese y notif\u00edquese conforme a lo acordado. Paulo Abr\u00e3o Secretario Ejecutivo 28", - "values": [ - "Paulo Abr\u00e3o" - ] - }, - { - "text": " En En virtud de que estas cuestiones afectan de manera relevante el orden p\u00fablico interamericano, de conformidad con el art\u00edculo 35.1 f) del Reglamento de la Corte Interamericana, la Comisi\u00f3n se permite solicitar a la Honorable Corte que se La Comisi\u00f3n pone en conocimiento de la Honorable Corte la siguiente informaci\u00f3n de quien act\u00faa como parte peticionaria en el tr\u00e1mite ante la CIDH conforme a la informaci\u00f3n m\u00e1s reciente: Javier Mujica Petit XXXXXXXXXXXXXXXXXXXXXXXXX Jos\u00e9 Mart\u00edn Torres L\u00f3pez XXXXXXXXXXXXXXXXXXXXXXXXXXXXXX Marcelino Meneses Huayra XXXXXXXXXXXXXXXXXXXXXXX Yaneth Josefina Salcedo XXXXXXXXXXXXXXXXXXXXXXXXXX Aprovecho la oportunidad para saludar a usted muy atentamente, Marisol Blanchard Secretaria Ejecutiva Adjunta Anexo 3", - "values": [ - "Pablo Saavedra Alessandri", - "Marisol Blanchard" - ] - } -] \ No newline at end of file diff --git a/src/extractors/text_to_multi_option_extractor/labeled_data/cejil_secretary/options.json b/src/extractors/text_to_multi_option_extractor/labeled_data/cejil_secretary/options.json deleted file mode 100644 index 27c894c..0000000 --- a/src/extractors/text_to_multi_option_extractor/labeled_data/cejil_secretary/options.json +++ /dev/null @@ -1,16 +0,0 @@ -[ - "Elizabeth Abi-Mershed", - "Marisol Blanchard", - "Julio Rossi Mérida", - "Víctor Guerrero Cassuso", - "Paulo Abrão", - "Sergio Valdivia Ayala", - "Emilia Segares Rodríguez", - "Romina I. Sijniensky", - "Mario López-Garelli", - "Edmundo Vargas Carreño", - "Pablo Saavedra Alessandri", - "Manuel Ventura Robles", - "Charles Moyer", - "Manuel Ventura" -] \ No newline at end of file diff --git a/src/extractors/text_to_multi_option_extractor/labeled_data/cyrilla_keywords/labels.json b/src/extractors/text_to_multi_option_extractor/labeled_data/cyrilla_keywords/labels.json deleted file mode 100644 index 2a6cec0..0000000 --- a/src/extractors/text_to_multi_option_extractor/labeled_data/cyrilla_keywords/labels.json +++ /dev/null @@ -1,449 +0,0 @@ -[ - { - "text": " ONLINE SAFETY ACT A CT N O OF SECTIONS PART PRELIMINARY Short title and commencement Interpretation Objectives Application Act to bind the State PART ONLINE SAFETY COMMISSION Online Safety Commission Funding Functions of the Commission Powers of the Commission Disclosure of interest Commission to maintain confidentiality Protection from liability Complaints lodged with the Commission Investigation of complaints Commission may refuse to investigate Power of the Commission to delegate PART Who ", - "values": [ - "Freedom of Expression", - "Privacy" - ] - }, - { - "text": "Short title Interpretation Application to Crown Saving of Crown rights Part Powers of Authority Repealed A Powers of Authority B Repealed C Consultation D Guidelines Part Control of Telecommunications Issue of licences A Special licence conditions Last updated date Telecommunications Ordinance T Cap Telecommunications Ordinance Cap Contents Section Page Part Preliminary Control of import and export of radiocommunications transmitting apparatus Last updated date Telecommunications Ordinance T B ", - "values": [ - "Privacy", - "Telecommunication" - ] - }, - { - "text": "Hong Kong Bill of Rights Ordinance T Cap Hong Kong Bill of Rights Ordinance Cap Contents Section Page Part I Preliminary Short title Interpretation Effect on preexisting legislation Not adopted as the Laws of the HKSAR Public emergencies Remedies for contravention of Bill of Rights Binding effect of Ordinance Part II The Hong Kong Bill of Rights Hong Kong Bill of Rights Part III Exceptions and Savings Armed forces and persons detained in penal establishments Juveniles under detention Persons ", - "values": [ - "Freedom of Expression", - "Privacy" - ] - }, - { - "text": "The Secretary Ministry Of vs Cricket Association Of Bengal on February Supreme Court of India The Secretary Ministry Of vs Cricket Association Of Bengal on February Equivalent citations AIR SCC Author P Sawant Bench Sawant PB. PETITIONER THE SECRETARY MINISTRY OF INFORMATION BROADCASTING Vs. RESPONDENT CRICKET ASSOCIATION OF BENGAL ANR. DATE OF JUDGMENT BENCH SAWANT PB. BENCH SAWANT PB. MOHAN S J JEEVAN REDDY BP J CITATION AIR SCC JT SCALE ACT HEADNOTE JUDGMENT Leave granted. It will be Has an ", - "values": [ - "Freedom of Expression", - "Telecommunication" - ] - }, - { - "text": "IN THE SUPREME COURT OF INDIA CIVIL ORIGINAL JURISDICTION WRIT PETITION CIVIL NO OF IN THE MATTER OF Internet Freedom Foundation Another P ETITIONERS VERSUS Union of India Others R ESPONDENTS ALONG WITH IA No of An Application seeking exparte Interim Stay Directions VOLUME I P AGE N OS A S YNOPSIS L IST OF D ATES W RIT P ETITION A NNEXURE P TO P PAPERBOOK KINDLY SEE INSIDE FOR INDEX PRATEEK CHADDHA ADVOCATE FOR THE PETITIONERS any information generated transmitted received or stored in any The ", - "values": [ - "Telecommunication", - "Privacy" - ] - }, - { - "text": "CONTENTS Preamble Chapter I On the sovereignty Chapter II On the King Chapter III On the rights and duties of Khmer citizens Chapter IV On the political regime Chapter V On the economy Chapter VI On the education the culture and the social affairs Chapter VII On the National Assembly Chapter VIII new On the Senate Chapter IX new On the congress of the National Assembly and the Senate Chapter X new On the Royal Government Chapter XI new On the Judiciary Chapter XII new On the Chapter XVI new two", - "values": [ - "Freedom of Expression", - "Privacy" - ] - }, - { - "text": "NSRKM Royal Kram We Preahkaruna Preah Bath Samdech Preah Boromneath Norodom Sihamoni Samanphoum Cheatsasna Rakhatkhateya Khemrarothreas Puthinthrea Thoreamohaksat Khemreachnea Samohorpheas Kampuch Ekreachroathboranaksanteh Sopheakmongkulea Sereyvibolar Khemarasreypireas Preah Chao Krong Kampuchea Thipadey Having seen the Constitution of the Kingdom of Cambodia Having seen Royal Decree No NSRKT dated September on the Appointment of the Royal Government of Cambodia Having seen Royah Kram No NS ", - "values": [ - "Freedom of Expression", - "Telecommunication" - ] - }, - { - "text": "The Constitution of the Republic of the Philippines Of\ufb01cial Gazette of the Republic of the Philippines GOVPH HOME HTTPSWWWOFFICIALGAZETTEGOVPH PHILIPPINE CONSTITUTIONS HTTPSWWWOFFICIALGAZETTEGOVPHCONSTITUTIONS THE CONSTITUTION OF THE REPUBLIC OF THE PHILIPPINES The Constitution of the Republic of the Philippines PREAMBLE ARTICLE I National Territory ARTICLE II Declaration of Principles and State Policies ARTICLE III Bill of Rights ARTICLE IV Citizenship ARTICLE V Suffrage ARTICLE VI ARTICLE ", - "values": [ - "Freedom of Expression", - "Privacy" - ] - }, - { - "text": "WWWLIVELAWIN WPCNoL IN THE HIGH COURT OF KERALA AT ERNAKULAM PRESENT THE HONOURABLE SMT JUSTICE PVASHA THURSDAY THE TH DAY OF SEPTEMBER TH BHADRA WPCNo OF L PETITIONER FAHEEMA SHIRINRK AGED YEARS DOHAKSARRK RAYAROTH THAZHE KUNIYIL MADAPPALLI COLLEGE PO VADAKARA KOZHIKKODE DIST. BY ADVS SRILEGITH TKOTTAKKAL SMTSURYA BINOY SMTSNEHA VIJAYAN RESPONDENTS STATE OF KERALA REPRESENTED BY THE SECRETARY DEPARTMENT OF HIGHER EDUCATION SECRETARIAT THIRUVANANTHAPURAM PIN. UNIVERSITY OF CALICUT . UNIVERSITY.", - "values": [ - "Access to Information", - "Freedom of Expression" - ] - }, - { - "text": "The Constitution of the Republic of Indonesia As amended by the First Amendment of the Second Amendment of the Third Amendment of and the Fourth Amendment of Unofficial translation THE PREAMBLE TO THE CONSTITUTION Whereas independence is the inalienable right of all nations therefore all colonialism must be abolished in this world as it is not in conformity with humanity and justice And the moment of rejoicing has arrived in the struggle of the Indonesian independence movement to guide the. . ", - "values": [ - "Freedom of Expression", - "Privacy" - ] - }, - { - "text": " CURIA Documents InfoCuria Caselaw English en Home Search form List of results Documents Language of document English ECLIEUC JUDGMENT OF THE COURT Grand Chamber January Information society Obligations of providers of services Retention and disclosure of certain traffic data Obligation of disclosure Limits Protection of the confidentiality of electronic communications Compatibility with the protection of copyright and related rights Right to effective protection of intellectual property In v ", - "values": [ - "Intellectual Property", - "Privacy" - ] - }, - { - "text": " CURIA Documents InfoCuria Caselaw English en Home Search form List of results Documents Language of document English ECLIEUC JUDGMENT OF THE COURT Grand Chamber July Trade marks Internet Offer for sale on an online marketplace targeted at consumers in the European Union of trademarked goods intended by the proprietor for sale in third States Removal of the packaging of the goods Directive EEC Regulation EC No Liability of the onlinemarketplace operator Directive EC In Case C REFERENCE for a ", - "values": [ - "Intellectual Property", - "Privacy" - ] - }, - { - "text": "Fair Housing Council v Roommate Com LLC F d Court of Appeals th Circuit Google Scholar Fd FAIR HOUSING COUNCIL OF SAN FERNANDO VALLEY The Fair Housing Council of San Diego PlaintiffsAppellees v ROOMMATECOM LLC DefendantAppellant. Fair Housing Council of San Fernando Valley The Fair Housing Council of San Diego PlaintiffsAppellees v Roommatecom LLC DefendantAppellant. Fair Housing Council of San Fernando Valley The Fair Housing Council of San Diego PlaintiffsAppelleesCrossAppellants and Fair v. .", - "values": [ - "Privacy", - "Freedom of Expression" - ] - }, - { - "text": " CURIA Documents InfoCuria Caselaw English en Home Search form List of results Documents Language of document English ECLIEUC JUDGMENT OF THE COURT Third Chamber February Information society Copyright Internet Hosting service provider Processing of information stored on an online social networking platform Introducing a system for filtering that information in order to prevent files being made available which infringe copyright No general obligation to monitor stored information In Case C v ", - "values": [ - "Intellectual Property", - "Privacy", - "Freedom of Expression" - ] - }, - { - "text": "GR No Today is Monday February Custom Search Constitution Statutes Executive Issuances Judicial Issuances Other Issuances Jurisprudence International Legal Resources AUSL Exclus Disini v The Secretary of Justice GR No February Decision Abad J Concurring and Dissenting Opinion Sereno J Concurring and Dissenting Opinion Carpio J Dissenting and Concurring Opinion Leonen J Separate Concurring Opinion Brion J Republic of the Philippines SUPREME COURT Manila EN BANC GR No February JOSE JESUS M. THE. ", - "values": [ - "Privacy", - "Freedom of Expression" - ] - }, - { - "text": "Case mjJMF Document Filed Page of UNITED STATES DISTRICT COURT FOR THE DISTRICT OF COLUMBIA IN THE MATTER OF THE SEARCH OF INFORMATION ASSOCIATED WITH Magistrate Case No REDACTEDMACCOM THAT IS STORED AT PREMISES CONTROLLED BY APPLE INC MEMORANDUM OPINION The government challenges an order by Magistrate Judge John M Facciola denying its second application for a search warrant under of the Stored Communications Act USC. The magistrate judge denied the governments application on the ground that ", - "values": [ - "Access to Information", - "Privacy" - ] - }, - { - "text": "Case ID DktEntry Page of FOR PUBLICATION UNITED STATES COURT OF APPEALS FOR THE NINTH CIRCUIT C INDY L EE G ARCIA PlaintiffAppellant v G OOGLE I NC a Delaware Corporation Y OU T UBE LLC a California limited liability company N AKOULA B ASSELEY N AKOULA an individual AKA Sam Bacile M ARK B ASSELEY Y OUSSEF A BANOB B ASSELEY N AKOULA M ATTHEW N EKOLA A HMED H AMDY A MAL N ADA D ANIEL K C ARESMAN K RITBAG D IFRAT S OBHI B USHRA R OBERT B ACILY N ICOLA B ACILY T HOMAS J T ANAS E RWIN S ALAMEH Y ", - "values": [ - "Intellectual Property", - "Freedom of Expression" - ] - }, - { - "text": "Government Gazette Staatskoerant R E P U B L I C O F S O U T H A F R I CA R E P U B L I E K VA N S U I D A F R I K A No Regulation Gazette Regulasiekoerant Vol March Maart No ISSN NB The Government Printing Works will not be held responsible for the quality of Hard Copies or Electronic Files submitted for publication purposes AIDS HELPLINE Prevention is the cure No GOVERNMENT GAZETTE MARCH G overnment n otices G oewermentskennisGewinGs Page No Gazette No No Contents IMPORTANT NOTICE T he G. n o.", - "values": [ - "Telecommunication", - "Privacy" - ] - }, - { - "text": "LAWS OF BRUNEI CHAPTER COMPUTER MISUSE ACT S REVISED EDITION BLRO LAWS OF BRUNEI Computer Misuse p CAP Ed BLRO LAWS OF BRUNEI REVISED EDITION CHAPTER COMPUTER MISUSE ACT ARRANGEMENT OF SECTIONS Section PART I PRELIMINARY Citation. Interpretation. PART II OFFENCES Unauthorised access to computer material. Access with intent to commit or facilitate commission of offence. Unauthorised modification of computer material. Unauthorised use or interception of computer service. Unauthorised obstruction.", - "values": [ - "Freedom of Expression", - "Privacy" - ] - }, - { - "text": "Law on the Media No NA dated July httpwwwlaoservicesportalgovlaindexphprsitedisplaylegalid Official Website Lao Services Portal Register indexphprsiteregister Login indexphprsiteFlogin Home indexphp Search Legal Documents indexphprsiteFsearchlegal View Legal Document Title Law on the Media No NA dated July Type Ministerial Instructions Responsible Agency Ministry of Information Culture and Tourism Issuing Date Click here to see the measures contained in this document Contents Chapter IGeneral ", - "values": [ - "Freedom of Expression", - "Access to Information" - ] - }, - { - "text": "THE STATUTES OF THE REPUBLIC OF SINGAPORE BROADCASTING ACT CHAPTER Original Enactment of REVISED EDITION st August Prepared and Published by THE LAW REVISION COMMISSION UNDER THE AUTHORITY OF THE REVISED EDITION OF THE LAWS ACT CHAPTER Informal Consolidation version in force from Informal Consolidation version in force from Ed. CHAPTER Broadcasting Act ARRANGEMENT OF SECTIONS PART I PRELIMINARY Section Short title Interpretation PART II PROVISIONS RELATING TO AUTHORITY Directions by Minister ", - "values": [ - "Freedom of Expression", - "Telecommunication" - ] - }, - { - "text": "FEDERAL REPUBLIC OF NIGERIA NATIONAL INFORMATION AND COMMUNICATION TECHNOLOGY ICT FINAL DRAFT POLICY By Ministry Of Communication Technology August Executive summary ICT has been acknowledged to be one of the most critical tools underpinning socio economic development in the st century Its global importance has led to numerous countries transforming their ICT sectors to lend support to other critical sectors in terms of efficiency productivity and transparency thus aiding job creation. Nigeria.", - "values": [ - "Access to Information", - "Telecommunication" - ] - }, - { - "text": "SOMALI REPUBLIC THE TRANSITIONAL FEDERAL GOVERNMENT MINISTRY OF INFORMATION Somali Media Law The Media Law Art Definition of the Media Its objectives The media is the system through which information knowledge speeches data and ideas could be disseminated to the society while utilizing visual auditory and printed devices Such as newspapers radios televisions press agencies websites speeches films hand drawings books and any other printed material exhibited openly to the pubic. b Promoting c. .", - "values": [ - "Intellectual Property", - "Access to Information" - ] - }, - { - "text": "COMMUNICATIONS COMMISSION OF KENYA DISPUTE BETWEEN ESSAR TELECOM KENYA LIMITED AND AIR TOUCH CONNECTIONS LIMITED INTERCONNECTION DETERMINATION NO OF INTRODUCTION This Determination is made under the Kenya Communications Act and as amended hereinafter referred to as the Act and the Kenya Communications Regulations hereinafter referred to as the Regulations. This Determination shall be known as the Determination No of on the Disconnection of E link number allocated to Airtouch Connections. . . .", - "values": [ - "Access to Information", - "Telecommunication" - ] - }, - { - "text": "Geoffrey Andare v Attorney General others eKLR REPUBLIC OF KENYA IN THE HIGH COURT OF KENYA AT NAIROBI MILIMANI LAW COURTS CONSTITUTIONAL AND HUMAN RIGHTS DIVISION PETITION NO OF BETWEEN GEOFFREY ANDARE PETITIONER VERSUS THE HON ATTORNEY GENERAL ST RESPONDENT DIRECTOR OF PUBLIC PROSECUTIONS ND RESPONDENT AND ARTICLE EAST AFRICA INTERESTED PARTY JUDGMENT In his petition dated th April the petitioner challenges the constitutionality of section of the Kenya Information and Communication Act Cap A ", - "values": [ - "Freedom of Expression", - "Telecommunication" - ] - }, - { - "text": "REPUBLIC OF KENYA IN THE HIGH COURT OF KENYA AT NAIROBI MILIMANI LAW COURTS CONSTITUTIONAL AND HUMAN RIGHTS DIVISION PETITION NO OF BETWEEN ROYAL MEDIA SERVICES LTD PETITIONER AND THE HON ATTORNEY GENERAL ST RESPONDENT THE MINISTER OF INFORMATION AND BROADCASTING ND RESPONDENT THE COMMUNICATION COMMISSION OF KENYA RD RESPONDENT RULING NO On Sunday rd February I directed that the parties appear before me today th February for further orders and or directions The rd respondent the. According to. ", - "values": [ - "Access to Information", - "Telecommunication" - ] - }, - { - "text": "Ruling on Internet Service Providers dispute on services offered by Telkom Kenya Limited th August Background A dispute was lodged with the Communications Commission of Kenya hereinafter referred to as the Commission by representatives of Internet Service providers hereinafter referred to as ISPs on th June citing issues concerning the following products offered by Telkom Kenya Limited Asymmetrical Digital subscriber line hereinafter referred to as ADSL Analogue Private Wire hereinafter Dialup .", - "values": [ - "Access to Information", - "Telecommunication" - ] - }, - { - "text": "SAB International ta Sabmark International v Laugh It Off Promotions All SA C Division Cape of Good Hope Provincial Division Date March Case No Before Cleaver J Sourced by CWebster and ADMaher Summarised by MTNaidoo Editors Summary Cases Referred to Judgment. Intellectual property Patents Trade marks Infringement of Trade Marks Act of Section c Antidilution provision Reputation or unique identity of the trade is blurred or diluted Trade mark is eroded by its use in relation to. Intellectual. .", - "values": [ - "Intellectual Property", - "Freedom of Expression" - ] - }, - { - "text": "THE INDEPENDENT BROADCASTING AUTHORITY ACT Act Proclaimed by Proclamation No of wef st January ARRANGEMENT OF SECTIONS Section PART I PRELIMINARY Short title Interpretation PART II THE AUTHORITY Establishment of Authority Objects of Authority Powers of Authority Constitution of Authority Disqualification Meetings of Authority Term of office Remuneration Director Appointment of staff PART III FINANCE General Fund Revenue and expenditure Raising of loans Auditor Annual report PART IV LICENSING ", - "values": [ - "Access to Information", - "Intellectual Property" - ] - }, - { - "text": "SOMALI REPUBLIC THE TRANSITIONAL FEDERAL GOVERNMENT MINISTRY OF INFORMATION Somali Media Law The Media Law Art Definition of the Media Its objectives The media is the system through which information knowledge speeches data and ideas could be disseminated to the society while utilizing visual auditory and printed devices Such as newspapers radios televisions press agencies websites speeches films hand drawings books and any other printed material exhibited openly to the pubic. b Promoting c. .", - "values": [ - "Access to Information", - "Freedom of Expression" - ] - }, - { - "text": "THE CONSTITUTION OF SIERRA LEONE Act No of ARRANGEMENT OF SECTIONS C HAPTER I THE REPUBLIC OF SIERRA LEONE Declaration of Republic Public Seal The National Flag and National Anthem C HAPTER II FUNDAMENTAL PRINCIPLES OF STATE POLICY Fundamental Obligations of Government Government and the People Political Objectives Economic Objectives Social Objectives Educational Objectives Foreign Policy Objectives Obligations of the Mass Media Enhancement of National Culture Duties of the Citizen Fundamental", - "values": [ - "Access to Information", - "Freedom of Expression", - "Intellectual Property", - "Privacy" - ] - }, - { - "text": "PDF generated Apr constituteprojectorg Egypts Constitution of Translated by International IDEA Prepared for distribution on constituteprojectorg with content generously provided by International IDEA This document has been recompiled and reformatted using texts collected in International IDEAs ConstitutionNet. constituteprojectorg PDF generated Apr Table of contents Preamble Chapter One The State Article Nature of the Republic Article Islam Principles of Islamic Sharia Article Christian and ", - "values": [ - "Access to Information", - "Freedom of Expression", - "Intellectual Property", - "Privacy" - ] - }, - { - "text": "THE DATA PROTECTION ACT Act Proclaimed by Proclamation No of wef Sections and of Part I Sections b c e g h i and j and of Part II Proclaimed by Proclamation No of wef th February. SECTIONS a d AND f TO AND TO OF THE DATA PROTECTION ACT assent ANEROOD JUGNAUTH President of the Republic th June ARRANGEMENT OF SECTIONS Section PART I PRELIMINARY Short title Interpretation Application of Act PART II DATA PROTECTION OFFICE Data Protection Office Functions of Commissioner Confidentiality and oath ", - "values": [ - "Access to Information", - "Privacy" - ] - }, - { - "text": "National Communications Authority Act Act ARRANGEMENT OF SECTIONS S e ction s Natio n al Communications Authorit y Establishment of the National Communications Authority Object of the Authority Functions of the Authority Powers of the Authority Regulatory and best practice of the Authority Governing body of the Authority Liability of members Tenure of office of members of the Board Meetings of the Board Disclosure of interest Declaration of registrable interests Establishment of committees ", - "values": [ - "Access to Information", - "Telecommunication" - ] - }, - { - "text": "PROCLAMATION NO COMMUNICATIONS PROCLAMATION Part One General Provisions Short Title This Proclamation may be cited as the Communication Proclamation No. Definitions In this Proclamation unless the context otherwise requires a broadcasting or broadcast means the transmission of voice music visual images and the like by radio waves by cable intended to be received directly by the general public b broadcasting receiver equipment shall mean apparat which receive radio broadcasting and c d e f g h i", - "values": [ - "Access to Information", - "Telecommunication" - ] - }, - { - "text": "Act Access to Information Act ACTS SUPPLEMENT No th July ACTS SUPPLEMENT To The Uganda Gazette No Volume XCVIII dated th July Printed by UPPC Entebbe by Order of the Government Act Access to Information Act THE ACCESS TO INFORMATION ACT. ARRANGEMENT OF SECTIONS. Section P ART I P RELIMINARY. Short title and commencement. Application Purpose of Act Interpretation. P ART II A CCESS TO R ECORDS AND I NFORMATION. Right of access Access to information and records Manual of functions and index. . .", - "values": [ - "Access to Information", - "Telecommunication" - ] - }, - { - "text": "COMMUNICATIONS COMMISSION OF KENYA DETERMINATION ON RETAIL AND INTERCONNECTION RATES AMONG THE FIXED AND MOBILE TELECOMMUNICATIONS NETWORKS IN KENYA INTERCONNECTION DETERMINATION NO OF INTRODUCTION This Determination is made under the Kenya Communications Act of hereinafter referred to as the Act and the Kenya Communications Regulations hereinafter referred to as Regulations. This Determination shall be known as the Determination No of on Cost based Interconnection Rates for Fixed and Mobile. ", - "values": [ - "Access to Information", - "Telecommunication" - ] - }, - { - "text": "REPUBLIC OF KENYA NATIONAL INFORMATION COMMUNICATIONS TECHNOLOGY ICT POLICY BY MINISTRY OF INFORMATION COMMUNICATIONS JANUARY TABLE OF CONTENTS VISION AND MISSION STATEMENTS INTRODUCTION BACKGROUND STATUS OF ICT IN KENYA THE POLICY AND REGULATORY FRAMEWORK CHALLENGES OF ICT IN NATIONAL DEVELOPMENT INTRODUCTION POLICY LEGAL AND REGULATORY FRAMEWORK ICT INFRASTRUCTURE HUMAN RESOURCE DEVELOPMENT ELECTRONIC LEARNING UNIVERSAL ACCESS PUBLICPRIVATE PARTNERSHIPS PPP ELECTRONIC GOVERNMENT ELECTRONIC ", - "values": [ - "Access to Information", - "Telecommunication" - ] - }, - { - "text": "LAWS OF KENYA T he K enya I nformaTIon a nd C ommunICaTIons a CT C hapter a Revised Edition Published by the National Council for Law Reporting with the Authority of the Attorney General wwwkenyalaworg CAP A Kenya Information and Communications Rev CHAPTER A THE KENYA INFORMATION AND COMMUNICATIONS ACT ARRANGEMENT OF SECTIONS P art IP relImInary Section Short title and commencement Interpretation. P art IIC ommunICatIons C ommIssIon of K enya Establishment of Commission Headquarters. Object. P .", - "values": [ - "Access to Information", - "Telecommunication" - ] - }, - { - "text": "IN EXERCISE of the powers conferred by section P of the Kenya Information and Communications Act the Minister for Information and Communications in consultation with the Communications Commission of Kenya makes the following Regulations THE KENYA INFORMATION AND COMMUNICATIONS UNIVERSAL ACCESS AND SERVICE REGULATIONS Citation. These Regulations shall be cited as the Kenya Information and Communications Universal Access and Service Regulations. Interpretation. In these Regulations unless the ", - "values": [ - "Access to Information", - "Telecommunication" - ] - }, - { - "text": "Law No of Pertaining to the Protection of Intellectual Property Rights The Peoples Assembly has passed the following law and it is hereby promulgated Article One The protection of intellectual property rights shall be governed by the attached law. Article Two The following laws shall hereby be repealed A Law of pertaining to Trademarks and Commercial Data. B Law of pertaining to Patents of Invention and Industrial Drawings and Designs with the exception of the provisions of patents of C Law of.", - "values": [ - "Intellectual Property" - ] - }, - { - "text": "Legislation Opinion Department Date Law No Law on Securing the Right to Information Access Article This Law shall be nominated Law on Securing the Right to Information Access and come into force as of the date it is published in the Official Gazette. Article Unless the context otherwise so requires the following words and sentences wherever mentioned in the present Law shall have the meanings attributed thereto below Information any oral or written data written copied recorded or. Classified. .", - "values": [ - "Access to Information" - ] - }, - { - "text": "TELECOMMUNICATIONS REGULATORY COMMISSION JORDAN TELECOMMUNICATIONS LAW NO OF Law No of has been amended by virtue of the Amending Law No of The original law was issued in the Official Gazette No dated. CONTENTS ROYAL DECREE CHAPTER I Definitions CHAPTER II Tasks of the Ministry CHAPTER III The Telecommunications Regulatory Commission CHAPTER IV Licensing of Telecommunications Network CHAPTER V Frequency Management and Licensing CHAPTER VI Renewal Amendment Cancellation of Licenses CHAPTER VII", - "values": [ - "Telecommunication" - ] - }, - { - "text": "UNOFFICAL TRANSLATION Telecommunications Regulatory Act Amendments Page of CHAPTER ONE Definitions and General Rules Article In the application of this Act the following terms and expressions shall have the meanings assigned to each of them unless the text otherwise requires The Minister Minister of Transport and Communications The Authority Telecommunications Regulatory Authority described in the Act Repeated The Council The Authority Board Repeated Chairman The Telecommunications Regulatory ", - "values": [ - "Telecommunication" - ] - }, - { - "text": "LAW ON INDUSTRIAL PROPERTY RIGHTS Royal Decree Promulgating the Law on Industrial Property Rights We Qaboos bin Said Sultan of Oman After perusal of the Basic Law of the State promulgated by Royal Decree the law on Trade Marks data and Secrets and Protection against illegal competition promulgated by Royal Decree the law on Industrial fees and specimens promulgated by Royal Decree the law on the protection of geographical data indices promulgated by Royal Decree the law on the protection of the", - "values": [ - "Intellectual Property" - ] - }, - { - "text": "LAW OF COPYRIGHTS AND NEIGHBORING RIGHT Royal Decree Promulgating the Law of Copyrights and Neighboring Rights We Qaboos bin Said Sultan of Oman After perusal of the Basic Law of the State promulgated by Royal Decree The Financial Law promulgated by the Royal Decree no The Judiciary Authority Law promulgated by the Royal Decree no The Public Prosecution Law promulgated by the Royal Decree no The Law of Penal Procedures promulgated by the Royal Decree no The Law of Copyrights and Neighboring And", - "values": [ - "Intellectual Property" - ] - }, - { - "text": "REGULATIONS UNDER THE LAW ON INDUSTRIAL PROPERTY RIGHTS AND THEIR ENFORCEMENT FOR THE SULTANATE OF OMAN Article Definition In these Regulations unless the context otherwise requires Act The Act on Industrial Property Rights and their Enforcement promulgation by the Royal Decree No. Regulations The regulation under the Act on Industrial Property Rights and their enforcement Sultanate The Sultanate Of Oman. Ministry The Ministry Of Commerce and Industry. Minister The Minister Of Commerce and. . .", - "values": [ - "Intellectual Property" - ] - }, - { - "text": "This is an unofficial translation of the Resolution and is provided here for information purposes only Reliance may only be placed upon the official Arabic version of the Resolution. Resolution No issuing Regulations on Protection of the Confidentiality and Privacy of Beneficiary Data Pursuant to the Telecommunications Regulatory Act issued by the Royal Decree No and The Executive Regulations issued by Resolution No and The approval of the Telecommunications Regulatory Authority at its meeting ", - "values": [ - "Privacy" - ] - }, - { - "text": "Decision No Rules for importing exporting reexporting and usage of Encryption Systems and Equipment Pursuant to the Telecommunications Regulatory Act issued by the Royal Decree No and The Executive Regulation of the Act referred to issued by the Ministerial Decision No and The approval of the Authority dated and Based on the exigencies of the public interest It is resolved Article The annexed rules shall be enforced in importing exporting re exporting and usage of encryption systems and. . . ", - "values": [ - "Privacy" - ] - }, - { - "text": "ALGERIA Copyright Law Law no of Copyright and Neighbouring Rights Law Order Act No dated Jumada I corresponding to July related to Copyrights and Neighboring Rights. By virtue of the Constitution especially Articles and therein In accordance with Order Act No dated Safar corresponding to June which includes the Civil Procedures Law as amended and supplemented In accordance with Order No dated Safar corresponding to June which includes the Penal Procedures Law as amended and supplemented In In ", - "values": [ - "Intellectual Property" - ] - }, - { - "text": "Dahir No of Kaada February enacting Law No on Copyright and Related Rights PRAISE BE TO GOD ALONE Grand Seal of His Majesty Mohammed VI May it be known by the present may God raise and strengthen its content That our Sherifian Majesty Considering the Constitution particularly Articles and HAS DECIDED THE FOLLOWING Law No on Copyright and Related Rights as adopted by the House of Counselors and the House of Representatives is enacted and shall be published in the Official Gazette following. Done.", - "values": [ - "Intellectual Property" - ] - }, - { - "text": "The Syrian Telecommunication Law Issued by Law No of Table of Content Chapter General Provisions and Definitions Article Purpose of Regulation of the Telecommunication Sector Article Definitions Chapter Two The Ministry Article Functions of the Ministry Chapter Three The Telecommunications Regulatory Authority Article Establishing the Authority Article The Authoritys Functions and Powers Article The Authoritys Structure Article The Board of Commissioners Article Board Membership Termination or ", - "values": [ - "Telecommunication" - ] - }, - { - "text": "FEDERAL LAW NO Issued on Corresponding to Jamadi El Thani H. ON TELECOMMUNICATIONS APPARATUS AND WIRELESS COMMUNICATIONS Amended by Federal Law No dated and Federal Law No dated We Zayed Bin Sultan Al Nahyan President of the United Arab Emirates State After perusing Law no of on the Jurisdiction of Ministries and Powers of the Ministers Acting upon the proposition of the Minister of Communications the approval of the Council of Ministers and the Federal National Council and the rati\ufb01cation of ", - "values": [ - "Telecommunication" - ] - }, - { - "text": "Federal law No Issued on Corresponding to Rabi al Akhar H. ON COPYRIGHTS AND RELATED RIGHTS Abrogating Federal law no dated Amended by Federal Law no dated We Zayed Ben Sultan Al Nahyan President of the United Arab Emirates Pursuant to the perusal of the Constitution and Federal Law no of regarding the jurisdictions of the Ministries and the competences of the Ministers and the amending laws thereof and Federal Law no of regarding Printings and Publications and Federal Law no of regarding the ", - "values": [ - "Intellectual Property" - ] - }, - { - "text": "FEDERAL LAW NO Issued on Corresponding to Rabi al Thani H. CONCERNING TRADEMARKS Amended by Federal Law no dated and Federal Law no dated. We Zayed Bin Sultan Al Nahyan President of the United Arab Emirates State Pursuant to the perusal of the provisional Constitution and Federal Law no of regarding the jurisdictions of the Ministries and the competences of the Ministers and the amending laws thereof and Federal Law no of regarding the Repression of Fraud and Swindling in Commercial Federal Law", - "values": [ - "Intellectual Property" - ] - }, - { - "text": "Ministerial Decision No Issued on Corresponding to Shaaban H. ON THE IMPLEMENTING REGULATION OF FEDERAL LAW NO OF ON TRADEMARKS Amended by Ministerial Decision no dated The Minister of Economy and Trade Pursuant to the perusal of the Federal Law no of regarding the jurisdictions of the Ministries and the competences of the Ministers and the amending laws thereof and The Federal Law no of on Trademarks and Acting upon the proposal of the Undersecretary Has decided TITLE ONE DEFINITIONS Article .", - "values": [ - "Intellectual Property" - ] - }, - { - "text": "Regulatory Policy Registration Requirements for Mobile Consumers Version Document Date September Telecommunications Regulatory Authority TRA PO Box Abu Dhabi United Arab Emirates UAE wwwtragovae Version Control \u0627 \u0631\u0627 \u0627 \u0631 \u0631\u0627 \u0627 \u0644\u0648 \u0627 \u0631\u0627 \u0627 De\ufb01nitions The terms words and phrases used in this Regulatory Policy shall have the same meaning as are ascribed to them in the Telecommunications Law unless this Regulatory Policy expressly provides for otherwise or the context in which those terms words and .", - "values": [ - "Telecommunication" - ] - }, - { - "text": "FEDERAL DECREE LAW NO Issued on Corresponding to Ramadan H. ON ORGANIZING THE TELECOMMUNICATIONS SECTOR Amended by Federal Law No dated Federal Law No dated We Zayed Bin Sultan Al Nahyan President of the United Arab Emirates States Pursuant the perusal of the Constitution and Federal Law No of On the Jurisdiction of Ministries and the Powers of Ministers and its amending laws and Federal Law No of On Wireless Communications and Apparatus and its amending laws and Federal Law No of On the State ", - "values": [ - "Telecommunication" - ] - }, - { - "text": "Regulatory Policy Voice Over Internet Protocol Version issue date decembre Revision Control Purpose and Scope The advent of new transmission technologies that make use of the Internet have and are having a profound impact on the development of Telecommunication Services and Telecommunication Networks One group of such technologies is often referred to as VoIP However the term VoIP is often used in different ways by different commentators for different purposes Sometimes it is used to refer to a.", - "values": [ - "Telecommunication" - ] - }, - { - "text": "Regulations Private Mobile Radio PMR Service Version issue date decembre Article De\ufb01nitions In applying these Regulations the following terms shall have the following meanings unless the context requires otherwise whereas any term unde\ufb01ned in the following shall be de\ufb01ned in line with the Federal Law by Decree No of as amended its Executive Order and Radiocommunications Policy Applicant means any Person who has applied for a License or an Authorization in accordance with the Telecom Law or. . .", - "values": [ - "Telecommunication" - ] - }, - { - "text": "REGULATION NO OF THE SUPREME COMMITTEE SUPERVISING THE TELECOMMUNICATIONS NETWORK Issued on Corresponding to Shaaaban H. EMBODYING THE IMPLEMENTATION REGULATION OF THE FEDERAL DECREE LAW NO REGULATING THE TELECOMMUNICATIONS SECTOR Amended by Regulation No dated and Regulation No dated The Supreme Committee Supervising the Telecommunications Sector Pursuant to the perusal of the Federal Decree Law No of regulating the Telecommunications Sector and The Federal Decree No of forming the Supreme ", - "values": [ - "Telecommunication" - ] - }, - { - "text": "Law No of Promulgating the Law Regulation of Trademarks in the GCC Countries Number of Articles Table of Content Issuance Articles Part Definitions Part Procedures Chapter one Registration Procedures of Trademarks Chapter Two The Term of Trademark Protection Chapter Three Cancellation of Trademark Registrat Chapter Four The Transfer of Ownership Lien and Part Licensing Contracts Part Collective Trademarks Control Trademarks Part Rights Enforcement Part Sanctions Part Final Provisions We Tamim ", - "values": [ - "Intellectual Property" - ] - }, - { - "text": "Law No of on the Protection of Copyright and Neighbouring Rights Number of Articles Table of Content Part Definitions Part Jurisdiction and Provisions of Protection Part Authors Financial and Moral Rights Chapter One Financial Rights Chapter Two Moral Rights Part Duration of Protection Part Restrictions on Copyright and Neighbouring Rights Part Provisions relating to a Work following the Death of an Author Part Provisions Related to Certain Works Part Neighbouring Rights Chapter One Rights of ", - "values": [ - "Intellectual Property" - ] - }, - { - "text": "Republican Decree on Law of Pertaining to Wired and Wireless Telecommunications as amended Article Definitions Article The State is the only agency represented by the Ministry of Communications MC currently referred to as Ministry of Telecommunications and Information Technology which is entitled to establish operate and maintain wired and wireless telecommunication centers on the territory of the Republic of Yemen and between it and other states It is also entitled to authorize the. Article a", - "values": [ - "Telecommunication" - ] - }, - { - "text": "LAW FOR THE YEAR REGARDING THE RIGHT OF ACCESS TO INFORMATION In the name of the people President of the republic After reviewing the constitution of the Yemeni Republic And after the approval of the house of representatives We issued the following law PART I Chapter I Nomenclature and Definitions ARTICLE This law is called the law of the right of access to information. ARTICLE For the purposes of this law the following words and phrases shall have the meanings assigned to them unless the. . . .", - "values": [ - "Access to Information" - ] - }, - { - "text": "Telecom Act Issued under the Council of Ministers resolution No dated H corresponding to Approved pursuant to the Royal Decree No M dated H corresponding to This English language text is not an official translation and is provided for information purposes only It confers no rights and impose no obligation separate from those from those conferred or imposed by the original Arabic text formally adopted and published In the event of any discrepancies between the English translation and the Arabic.", - "values": [ - "Telecommunication" - ] - }, - { - "text": "Copyright Law Royal Decree No M Rajab Page Article Definitions The following terms wherever used in this Law shall have the meanings following them unless the context requires otherwise. Work Any literary scientific or artistic work. Joint Work A work composed by two or more natural or corporate persons whether the contribution of each is separable or not. Collective Work The work collectively composed by a group at the instruction of a person natural or corporate who undertakes its. Audio Work", - "values": [ - "Intellectual Property" - ] - } -] \ No newline at end of file diff --git a/src/extractors/text_to_multi_option_extractor/labeled_data/cyrilla_keywords/options.json b/src/extractors/text_to_multi_option_extractor/labeled_data/cyrilla_keywords/options.json deleted file mode 100644 index ed17235..0000000 --- a/src/extractors/text_to_multi_option_extractor/labeled_data/cyrilla_keywords/options.json +++ /dev/null @@ -1,7 +0,0 @@ -[ - "Intellectual Property", - "Freedom of Expression", - "Telecommunication", - "Access to Information", - "Privacy" -] \ No newline at end of file diff --git a/src/extractors/text_to_multi_option_extractor/labeled_data/d4la_document_type/labels.json b/src/extractors/text_to_multi_option_extractor/labeled_data/d4la_document_type/labels.json deleted file mode 100644 index f8e7b26..0000000 --- a/src/extractors/text_to_multi_option_extractor/labeled_data/d4la_document_type/labels.json +++ /dev/null @@ -1,710 +0,0 @@ -[ - { - "text": "Ye fove ecoaeee RAL EIGIT RALEIGH was first introduced in the walletpack as a premiumprice cigarette per Mfvs industry in New York in the fall of Advertising was limited and sales were negligible Any possible chances of success were probably kilted by the depression and the brand did nothing until switched to the conventional cup package and reduced to the general industry price of in March In September the use of coupons good for playing cards was begun Sales for were million RALEIGH did not.", - "values": [ - "Budget" - ] - }, - { - "text": "THE S NATIONA BANK Wet COUN OFFICE OMG TON oC ms THE TOBACCO INSTITUTE cuecxno cnecx oate AMOUNT STREET NORTHWEST WASHINGTON DC Deoeeee PAY IN DOLLARS TO THE ORDEROF Seven Hundred Forty Four and no Dollars PARKING SERVICES INTERNATIONAL PO BOX CAROL STREAM IL eosS OS bewOBebIUS eM DETACH BEFORE DEPOSITING NO OTHER RECEIPT REQUIRED THE TOBACCO INSTITUTE STREET NORTHWEST WASHINGTON DC VENDOH NUMBER CHECK DATE CHECK NUMBER INVOICE DATE INVOICE NO DESCRIPTION INVOICE AMOUNT NET AMOUNT j THE TOBACCO", - "values": [ - "Budget" - ] - }, - { - "text": "HARLEYDAVIDSON a th o aI o od wm eee trace ntneeenn agen seoeninnninecr een coo wevneaan ncn eens", - "values": [ - "Budget" - ] - }, - { - "text": "REPORT OF LOBSYIST EMPLOYER Government Code Section FORM oR REPORT OF PERSON SPENDING OR MORE TO INFLUENCE LEGISLATIVE OR ADMINISTRATIVE ACTION Government Code Section REPORT COVERS PERIOD FROM THROUGH CUMULATIVE PERICO FOR OFFICIAL USE ONLY Type or Print in Ink For information required to be provided to you pursuant to the Information Practices Act of see Information Manuai on Lobbying Discioeure Provisions of the Political Reform Act B AME TITUTE BUSINESS ADDRESS AND STREET am ACA SB O If. A", - "values": [ - "Budget" - ] - }, - { - "text": "DRAFT May Watson for Supervisor Wilshire Boulevard Los Angeles CA Dear Committee Members On behalf of The Tobacco Institute I am pleased to enclose herewith our contribution to your campaign The Tobacco Institute recognizes that good citizenship includes involvement in the political process and giving support to candidates who give full and careful consideration to all sides of an issue. Accordingly after consultation with our local legislative counsel Christina Rose we are delighted to offer. ", - "values": [ - "Budget" - ] - }, - { - "text": "POLITICAL CAMPAIGN CONTRIBUTION REQUEST Date August State or Local State RECIPIENT INFORMATION Name Bill Lockyer Individual Candidate or Fundraising Organization Address PO Box Hayward CA Current Office and District Senate Aspired office and District same Party D Leadership Position committees Judiciary C Appropriations Elections Reapportionment Governmental Organization Industrial Relations Revenue Taxation Toxics Public Safety Management Note chairmanships CONTRIBUTION INFORMATION Amount ", - "values": [ - "Budget" - ] - }, - { - "text": "CALIFORNIA POLITICAL CONTRIBUTIONS FOR YEAR Reporting Periods End b owt March September March September May October June December CUMULATIVEDATE COPY DATE CONTROL AMOUNT SENT TO MADE NUMBER PAYEE Last Name InitAMOUNT TO DATE DEN JAlquist A p jAyala R h BeverlyR BoatwrightD po a Carpenter P po Craven W so so Deddeh W Dills R fpoolittle J tporan J soosan GreeneB son tyonnson R p Lockyer B soo havavaa Maddy XK soo hy TCAL", - "values": [ - "Budget" - ] - }, - { - "text": "By MRAD Veridor Check pm Vender Name Date Type Description TOBACCO INDUSTRY LABOR PAY PAY PAY Check Check Check Check Check Check Check Check Check Check Check Check Check Check Check check Check Run Run Run Run Run Run Run Run TOBACCO INSTITUTE Check Register by Vendor Page Void Date Check Amount Discount Taken CK Amt CK Amt CK Amt CK Amt CK Amt cK Amt CK Amt CK Amt Ck amt CK Amt CK Amt CK Amt CK Amt CK Amt o n Amt Grand Totals fo By CTL ue T", - "values": [ - "Budget" - ] - }, - { - "text": "re ww RIGGS SECURITY TRANSACTION TRUST DEPARTMENT ADVICE ACCOUNT NUMBER ACCOUNT NAME DATE THE TOBACCO INSTITUTE AGENCY WE QUANTITYPAR SECURITY DESCRIPTION SOLD RIMCO MONUNENT US TREAS MONEY MKT FD UNIT PRICE TRADE DATE SETTLEMENT DAT BROKER GAOSS PRINCIPAL SEC FEE TRANSFER TAX BROKER COMM NET PRINCIPAL ACCRUED INTEREST MAL TO THE TOBACCO INSTITUTE CO MICHELE RADELL EYE STREET N W FEB yy WASHINGTON DC ia Ek oe ard ae at THE TIME OF EXECUTION WILL BE FURNISHED UPON WRITTEN REQUEST y T", - "values": [ - "Budget" - ] - }, - { - "text": "THE TOBACCO INSTITUTE STATE ACTIVITIES CONTRIBUTIONHONORARIUM REQUEST Honorarium Soc Sec Contribution xX CHECK ONE DATE RECIPIENT INFORMATION State Washington Incumbent YN Party DRO R IndividualGroup I Name Holland Bruce J Address rd Place SE Address CitySTZIPRenton Washington Title Representative Salutation Dear Representative Holland RUNNING FOR CHECK NO MORE THAN ONE IN EACH COLUMN LOCAL LEGISLATURE X UPPER STATE K EXECUTIVE LOWER TNWL", - "values": [ - "Budget" - ] - }, - { - "text": "Original Message Merlo Elien Sent Wednesday April AM To Ryan Thomas M Desel Paula Pfeil Michael Krigbaum Stephen Cc Barrington Y Subject RE ALF to return Truth ads to the air okay can we do that this morning as i think we should get this prepared even if we dont ultimately run it which i hope we will i think we have to get started quickly EecGl sec", - "values": [ - "Email" - ] - }, - { - "text": " scene Original Message From Janet Patton SMTPjpattonlheraldleadercom Sent Wednesday March AM To robinhulseypmusacom Subject kentucky bill Heres the text and where it stands now i understand it is coming up for discussion tomorrow so any help you can give would be greatly appreciated thanks janet", - "values": [ - "Email" - ] - }, - { - "text": "Baigley Annemarie From Balgley Annemarie Sent Tuesday August PM To Gentile Melissa Bily Lynn Ce Herndon Colleen B Subject RE NAGS Exhibit Top to Top Fitures Meeting arrZresd Ill be there after my staff mig lets out at am tomorrow Let me know if this is okay just need to sit in on the NACS portion of the mtg. See you then. Annemarie Balgley Youth Smoking Prevention", - "values": [ - "Email" - ] - }, - { - "text": "sonal Original Message Fernandez Henry L Sent Tuesday October PM To DiSabato Michelle Cc Barbeau Michelle Balgley Annemarie Pagan David Subject RE FW GIFTS Henry L Fernandez EdD youth Smoking Prevention Programs VOLPET Wow Those are long hoursPM foo much In one day If you have done it before finelets go with it. Ann Marie will coordinate training schedules from our end we need to inform our colleagues ASAP on the date and get back to Michelle if it is a problem thanks", - "values": [ - "Email" - ] - }, - { - "text": "EricDOstern pmusacom To MarinaAraoznycbmcom cc Subject FW Bad link on YSP site PM ALZLZ", - "values": [ - "Email" - ] - }, - { - "text": "KarenChaikin pmusacom To JamieDroginnycbmcom cc Subject RE FSF Results AM Thanks Any idea when shell have it KC Youth Smoking Prevention VSSELSZ", - "values": [ - "Email" - ] - }, - { - "text": "JohnHoelPMMCcom on PM To Sonia FoisAttyDCArnoldAndPorterAPORTER cc HOILEILSC Subject Contraband Please also send me all information regarding domestic and international smuggling and contraband Thanks. The information in this email and in any attachments may contain confidential information and is intended solely for the attention and use of the named addressees it must not be disclosed to any person without authorization Ifyou are not the intended recipient or a person responsible for", - "values": [ - "Email" - ] - }, - { - "text": " Merlo Ellen From Merfo Effen Sent Tuesday November AM To Farlow Kimberlie J Pfeil Michael E McCormick Brendan J Hanson Terry D Tovar David Benner Kevin P PM USA Hines Fred S Subject RE Heads Up John Blackwell someone needs to explain ie oscar that the name of the company he works for is still prnusa that our long history of the best tobacco company in the us and worldwide for that matter remains in tact he does nat work for altria he is a stockholder in the aliria group he continues to.", - "values": [ - "Email" - ] - }, - { - "text": "From LORI L SCHIPPER Ischipperprodigy net Sent Monday April PM To ThomasMRyanpmusacom Subject Re sourcecheck for Tul article Many thanks Tom No questions. Original Message From ThomasMRyanpmusacom To Ischipperprodigynet Sent Monday April PM Subject RE sourcecheck for TJI article Lori Here are some suggestions for accuracyflow Please give me a call if you have any question or if you want to discuss this Tom Ryan y A manufacturers response Tom Ryan manager of media programs witn Philip company ", - "values": [ - "Email" - ] - }, - { - "text": "Thanks. From jbresslerlortobcocom mailtojbress Sent Wednesday October AM To twinfreyharrisiwebershandwickcom Subject Newsletter copy lortobcocom The document copydoc is just fine No changes needed. Thave made some minor cdits to Popkins picce as noted within the attached document. See attached file Popkinreviseddoc ", - "values": [ - "Email" - ] - }, - { - "text": "THE Ik STAMFORD FORUM AT eos PO BOX AMERICAN stameoxp connrcricur ossosz ADVERTISING AND COnPANY SELLING AUTHORIZATION DO NOT MAKE ANY COMMITMENT OF AUTHORIZE ANY EXPENCITURE OF ANY KIND FOR ACCOUNT OF THI COMPANY UNTIL EXECUTIVE APPROVAL HAS BEEM OSTAINED HEREON BE GUIDED BY PPM IN COMPLETING THIS FOREL ORIGINATOR Marketing Department PROJECT CODE DATE BRANDXS PROJECT DESCRIPTION Montclair Direct Mail Offensive Acknowladgenent octoher December COVERAGE PERIOD THRU MEMOjontclair", - "values": [ - "Form" - ] - }, - { - "text": "National Smokers Alliance FacsimileCover Sheet N Union Street Alexandria VA Pages including this cover page Comments Ellen Merlo Philip Morris Tor Company Phone Fax From Company Phone Date Liese Mosher for David McCloud . November GESSPEESO", - "values": [ - "Form" - ] - }, - { - "text": "MANUSCRIPT REVIEW BOARD INFORMATION SHEET fe MANUSCRIPT TITLE EFFECT OF CIGARETTE SMOKING ON RESIDENTIAL NO LEVELS yp B W Good G Vileins W R Harvey D A Clabo Jr and A L Lewis PROPOSED FOR PUBLICATION G OR PRESENTATION AUTHORS WHEREWHEN presentation Internat Sym on Indoor Air Pollution Health Energy tenservation AmherstMA Publication Environment Internat or Environmental Health x Technology Oct MANAGEMENT APPROVAL DATE aug REVISED PAGES Froures TABLES ABSTRACT i Two living room bedroom kitchen. .", - "values": [ - "Form" - ] - }, - { - "text": "oe INBIFO Institut far biologische Forschung K\u00e9in OKW tt come tannins enemas te a Feb NDAMWO QATWM UBERPRUFUNG VON P DURCH QA BLATTNR von TITEL Mutagenicity of the Mainstream Smoke Condensate of the Research Cigarettes XDEYL XDE YM XDEYN and XDEYO in the Salmonella Typhimurium Strains TA and TA PT PRUFZEITPUNKT Feb UBERPRUFTER PARAMETER BEANSTANDUNG Intermediate Report Date of Assay falsch RohdatenOrdner Vermischung von Rohdaten und eigenen Notizen die willkiirlich veranderte Daten enthalten", - "values": [ - "Form" - ] - }, - { - "text": "MV COVINGTON BURLING Pennsylvania Avenue NW Leconfield House P Box tenia Wivas England Washington DC Tel O Fax Fax Numbers or Fax Operator Brussels Office Avenue des Arts Brussels Belgium Tel Q Please Call If There Are Transmission Problems Fax This facsimile transmission is intended only for tho addressee shown below It may contain information that is privileged confidential or otherwise protected from disclosure Any review dissemination or use of this transmission or its contents by. DATE", - "values": [ - "Form" - ] - }, - { - "text": "BECS FROM TYLER COOPER ALCOR ID TYLER COOPER ALCORN CHURCH STREET PO BOX NEW HAVEN CONNECTICUT FAX TH FLOOR HARTFORD CONNECTICUT STAMFORD CONNECTICUT FAX NUMBER FAX NUMBER TELECOPIER COVER SHEET TO FAX NUMBER DAVID GOLUB ESQUIRE FROM BEN A SOLNIT NO OF PAGES INCLUDING COVER seer ta DATE DECEMBER TIME MESSAGE David J enclose the joint motion for case management order number one that we discussed earlier today on the telephone Please look and let me know if it looks okay to you If possible. Any .", - "values": [ - "Form" - ] - }, - { - "text": "HT ofa SENT BY PM WACHTELL LIPTON WACHTELL LIPTON ROSEN KATZ Telephone West Snd Street New York New York Facsimile FACSIMILE TRANSMITTAL CEH frye NEL TO Jom MULDERIG FROM NORMAN REDLICH ggC symm COMPANY philip Morris DATE June FAX NO TIME MAIN NO NO OF PAGES i including this page Uf you do not receive all the pages please telephone immediately. MESSAGE ZSL THE INFORMATION CONTAINED IN THIS FACSIMILE TRANSMITTAL IS INTENDED ONLY FOR THE PERSONAL AND CONFIDENTIAL USE OF THE DESIGNATED RECIPIENT. .", - "values": [ - "Form" - ] - }, - { - "text": "ii QAM Research Center PQ Box ro oe Richmond Virginia Philip Morris USA Volos Fax Ter Kan Houghton From Marian Z DeBardeleben Fax Pagos Phone Date August Re Meeting with Mulderig ce OUrgent UH ForReview UPieave Comment CPisaseReply Pease Recycle Comments Attached are the bullat points that vould like you to discuss with John on Monday Ken Jim Sehardi has reviewed and approved them as wel will be anxlous ta leam the outcome of your meeting Thank you. t ES", - "values": [ - "Form" - ] - }, - { - "text": "USA PHILIP MORRIS USA MEDIA DEPARTMENT PARK AVENUE NEW YORK CITY PHONE FAX To Fred Wilhelm Pres Leonard Outdoor Fax From Stephen Piskor Date APRIL Total Pages with cover Comments This facsimile transmission andor the documents accompanying it may contain confidential information belonging to the sender The information is intended only for the use of the addressea or entity named above If you are not the intended recipient you are hereby notified that any disclosure copying distribution. ", - "values": [ - "Form" - ] - }, - { - "text": "test cove SUBMITTER Chacles eer CRN AUaAUN Gaes She lar ANALYTICAL REQUEST SHEET SUBMITTER cove D NF DATE Hunt LOCATION puone SAMPLE DESCRIPTION IDENTIFICATION ee pH Nicotine Water Glycerin Propylene Glycol CLHN Oxygen Menthol TEG Nicotine COMPONENTS CHEMICAL TYPE Moisture oven Ash g z mgunit ngunit mgunit ugunit z mgunit ngunit OR MMO TELLTALE cs Sen pase eee AFtee Dr AEROSOL TOBACCO TYPE t MEEHOD UNITS i METHOD UNITS WIPM ngcig Nicotine zt Nicotine ngcig Total Nitrogen t Water Glycerin", - "values": [ - "Form" - ] - }, - { - "text": "C KMG International Inc ao METCHUM RACCEGE GROVE PUBLIC REL O GATERAY CONTER PITESBURGHy PAs BROW WILLIAMSON TOBACRG CORP MATL REMITTARCE Ta Pe Ge SGR FG KM G INTERBATIONSL INC LG vist WELL STREET GATEWAY CENTER LOUISVILLE K PITTSBURGH PA ATTS Re BRADLEY Le BROECKER ATTS TREASURY GEPSRTMEMT HANADES MARKETING ACTIVITIES DUNS Nth GN FSUS OST cueNt J no invoice pare cue bare GOR aFTL PONGRG OS BF EL MARKETING SPEAKERS PROGRAN BR SERVICES ao at ng i yana", - "values": [ - "Invoice" - ] - }, - { - "text": "sme BROWN WILLIAMSON TOBACCO CORPORATION Requisif for Advertising Material andor Sales a Ne TO GENERAL accouNTina OEP u Tiaigar prolminary aroduchor eq asted by us oa returned Fareeh SPECIFICATIONS DESCRIFTI Rolls KOOL Super Lights Tape Code Rolls VICEROY RICH Lighta Tape code RESTEANG OSOS PACKING ae Qne Roll Per case wx TK Pressure Sensitive fEADLINE HERO DATE eyline Furaished by bsi BARTONS MARR a agit ETON nd By few Balance to FEM Wharehouce Supplier pls furc As Bho", - "values": [ - "Invoice" - ] - }, - { - "text": "fo wOOTH LIPTON Lipron PaRK AVENUE New Yorx NY aia PLaza CABLE BOOTHTON December NYS Association of Tobacco Candy Distributors Inc. East rd Street New York N Y Attention Mr George Elicofon FOR PROFESSIONAL SERVICES RENDERED For the Month of November In the Matter of SNY Association of Tobacco Candy Distributors Re Save More Market vs Chu AIBiegens time A Prussins time J Olsen Assoc R Cohen Assoc Disbursements Duplicating Messenger service Mealstransportation Vydec word process Lexis Research ", - "values": [ - "Invoice" - ] - }, - { - "text": "Clarion Invoice Remit To Clarion Marketing and Communications Clarion Marketing and Communications Pemberwick Road Box Greenwich Connecticut Detroit MI FAX December Mr James C Bogie Product Manager Bull Durham The American Tobacco Company The Stamford Forum PO Box Stamford CT Invoice Job DAMM But DRA PED Bull Durham Trial Mailing Database List PullProgramming zw Produce Tria Mailing Profile Report List Pull records M MergePurge records M Ink Jet Program Processing As per ATCo authorization ", - "values": [ - "Invoice" - ] - }, - { - "text": "Mail Check to ORIGINAL NVO i CE AMERICAN BUSINESS LISTS NUMBER Bate FLO BOX OMAHA NE GOOSIBLMIUGD Your Customer Representative SUSAN ANDERSEN SOLO TO SHIP TO ELEISCHMAN HILLARD INC N HROADWAY ST LOUIS MO ATIN CHARLENE MEADOWS PRONE NO GATE SHIPPED SHIP VIA TUSTOMERFO NO TERMS SPR NEXT DAY ATR AMER EXPRESS MEDIA SEGMENT PRODUCT FFICE CODE cOoCODE SALES FXX CON F Ot O DESCRIPTION AMOUNT RECORDS RECORDS WITH CONTACT NAMES ONE TAFE AT SUIFRING we ING ZCI TOTAL AMOUNT RECELVED AMEX QUTH S Pa See ", - "values": [ - "Invoice" - ] - }, - { - "text": "Sa aad LINDEN NJ. Outdoor POSTER ADVERTISING E ELIZABETH AVENUE AREA CODE Tel Service throughout the U S A PO BOX LINDEN NEW JERSEY L J page OUR OROER wo ADV Contract Lorillard Media Services Fifth Avenue New York New York YOUR REOQUIBITION NO PURCHASER. OUR BUSINESS ES TO ADVERTISE YOUR BUSINESS Locations Less vil ple NEWPORT GREEN ROCHESTER NEW YORK MARKET LIFT Poster advertising service for monthDECEMBER OO Wyo eg TR SERVING NATIONAL REGIONAL AND LOCAL ACCOUNTS", - "values": [ - "Invoice" - ] - }, - { - "text": "HAZLETON LABORATORIES AMERICA INC. NICHOLSON LANE SUITE GDO KENSINGTON MAYLAND INVOICE NO HAZLETON LABORATORIES AMERICA NC PO BOX RICHMOND VA USA USE THIS NUMBER FOR CHECK REMITTANCE AND CORRESPONDENCE BILLED TO DATE PLEASE SEND PAYMENT TO DR J D HECK LORILLARD RESEARCH CENTER ENGLISH STREET PO BOX GREENSBORO NC SPONSOR REFERENCE DATE OF AUTHORIZATION mn IDENTIFICATION PURCHASE ORDER NO D e e HLA REFERENCE PROJECT AUTHORIZATION NO COST CENTER PROJECT NUMBER SERVICES RENDERED SALMONELLA FINAL ", - "values": [ - "Invoice" - ] - }, - { - "text": "TTEMIZED BILLING STATEMENT NUMBER BILL TO Dr Thomas A Vollmith Lorillard Tobacco Compariy English Street PO Box Greensboro NC CUSTOMER ACQOUNT NUMBER PRODUCT NUMBER PURCHASE ORDER NUMBER AND DATE A Amended June BOLLING PHASE Due upon acceptance of the final report advanced billed AMOUNT STUDY DESCRIPTION STUDY PRICE OF INVOICE I Week Subchronic Inhalation Toxicity Study of Reference Cigarette Smoke in Rats AMENDED BILLING SCHEDULE Upon Initiation of Study we Wa at the End of Each of the InLife.", - "values": [ - "Invoice" - ] - }, - { - "text": "Page BusmessWirre Nae oo zcz BSMG WORLDWIDECHICAGO ACCOUNTS PAYABLE N ST CLAIRE SUITE f SARAH TREGO of SERTTRESO BSMG WORLDWIDECHICAGO PO Box Los Angeles CA Fax ACCOUNTS FOR NCTEENHIP TeenHLP Helps Parents With Scholarship for Kids Who Dont Smoke How will you pay for your kids education as Analyst Wire at No Charge URL Hyperlink no charge Nationa Extra story length words TOTAL MK Wy x viwoone ALS we caren OO DAL UTP aRORIVE sage Gh MAR ER go MAR unee AMOUNT COB NewstreamcomYour online", - "values": [ - "Invoice" - ] - }, - { - "text": "FORM PO M NEW YORK December. P LORILLARD COMPANY WEST th STREET To CAMPBELL BRUMBAUGH FREE GRAVES Broad St New York N I y Experimental research on KENT Cigarettes j during October For details see Ps file in Secretarys office i i i i OcLL", - "values": [ - "Invoice" - ] - }, - { - "text": "PRPORATION Be OWILLIAM SON TORACEO Wid We Dll Street ID Base SH Lanainr tes Revturkay W May eg HE ge Mr Tom Graham ae ML aes ao was Dear Tom Attached is an updated ligt of Nielsen redemption amber for VICEROY meds coupons This includes aur lates additionsthree chrect mail coupons being designed by ZNIL for a Donnelley siraulated coop Sincerely a Michael McCue MMald Attachment ec K G Kelly E A Willets UT C Broach u Smoot ivin n Marra Bates Wyatt Williame PKG THE DOCS MEN BLENG", - "values": [ - "Letter" - ] - }, - { - "text": "eN January Mr Peter Cohen Norman Craig Kumme Dear Pete Attached is the approved copy of the dsrecorded script for the Silva THINS radio commercial which we are presently running in San Francisco ATSTFRL. This approved copy is for your file Sincerely Us J ONeill Product Manager", - "values": [ - "Letter" - ] - }, - { - "text": "HUNTON WILLIAMS RIVERFRONT PLazs East TOWER NEW YORK NEW YORK ATLANTA GEORGA NORFOLK VIRGINIA BRUSSELS BELGIUM CHARLOTTE NORTH CAROLINA East Byrp STREET RALEIGH NORTH CAROLINA HONG KONG WARSAW POLAND KNOXVILLE TENNESSEE RICHMOND VIRGINIA WASHINGTON MCLEAN VIRGINIA TELEPHONE Fite No Lonniz D NUNLEY IIE FACSIMILE BO DIRECT DIAL No uy ce October eu John J Mulderig Esq Philip Morris Companies Inc Park Avenue New York NY ABC Copying Dear John Here is the confidentiality letter agreement with", - "values": [ - "Letter" - ] - }, - { - "text": "COUNCIL FOR TOBACCO RESEARCH USA INC Third Aveaue New York NY Date erie To JAN Mr John Speer Controller Marine Biological Laboratory Woods Hole MA Grant No Grantee Robert E PalazzoPhD Check Amount For Second Half Payment Activation Date of Current Grant File Copy", - "values": [ - "Letter" - ] - }, - { - "text": "Viid WILLIAM ESTY COMPANY ADVERTISING EAST STREET NEW YORKN o JOHN D ROTHENRERGER JR VICE PRES DONT October Mr J T Winebrenner Marketing Department R J Reynolds Yobacco Company WinstonSalem North Carolina Dear John Attached is a copy of the AfricanAmerican Day Parade Journal in which the Salem Garner ad appears on Page indicated. You will note that the ad contains two errors regarding the Warning Statement and the TN numbers. he warning statement is not printed on a white background. The TEN. .", - "values": [ - "Letter" - ] - }, - { - "text": "CONFIDENTIAL RJReynoids Topacco Company WinstonSalem N C ROR March Mr Michael Amoroso Michael Amoroso Inc. Madison Avenue New York N Y Dear Mike This is to verify in writing our recent telephone conversations regarding the Cigarette Segmentation Study. You are authorized to proceed with the field work for Phase III of the Study as follows My record of your current cost estimates is shown in Exhibit I The field work is based on interviews at each for a total of If after pretesting the. Exhibit. .", - "values": [ - "Letter" - ] - }, - { - "text": "INTEROFFICE MEMORANDUM SUBJECT Purchase of Mass Spectrometer DATE November TO Mr Dave Idol FROM Don deBethizy An AR is in progress to receive approval for the purchase of an Hewlett Packard Model mass spectrometer This instrument will be used in product development for NPT and for a basic research project to be initiated in that will evaluate and identify nicotine metabolites in blood tissue and urine We expect that it will take approximately months to year to set up and validate this. This. . ", - "values": [ - "Letter" - ] - }, - { - "text": "FROM COUINGTOK BURLING Poot Leconfield House Pennsylvania Avenue NW Canna Street P Box London WIYAS England Washington DC Tel OL Fax Fax Numbers or Fax Operator Brussels Office Avenue dee Arts Brussels Belgium Tal O Please Call If There Are Transmission Problems Pax COVINGTON BURLING This facsimile transmission is intended only for the addresses shown below It may contain information that is privileged confidential or otherwise protected from disclosure Any review dissemination or use of. FROM ", - "values": [ - "Letter" - ] - }, - { - "text": "Sew LongHaymesCarrLINTAS MEMORANDUM To Patti Ittermann RJ Reynolg Tobacco From Susan Kendall Date May Salem Preferred IntroductionChicago Wall A potential third wall see attached has been identified for Salem Preferred in Chicago This high by wide wall is located on Division and State in the popular Rush Street area. The space cost is approximately M per month If a month contract started in July the approximate month cost in would be M the approximate month cost in would be M As this location .", - "values": [ - "Letter" - ] - }, - { - "text": "ABELMAN FRAYNE REZAC Attorneys at Law Third Avenue New York NY Telephone Cable LAWABEL New York International Telex Telecopier Ronald S Goldbrenner Esq. Counsel Lorillard Division Loews Theatres Inc Dear Sirs TRADEMARK FILING REPORT Date August We are pleased to report the filing of the application to register the following trademark Trademark Country Number Date Classes Loews Theatres Inc BISTRO Label Colombia August Applicant We shall continue to keep you informed of developments. kl Very", - "values": [ - "Letter" - ] - }, - { - "text": "FROM SUBJECT ML REYNOLDS BROWN WILLIAMSON TOZACCO CORPORATION INTERNAL CORRESPONDENCE R OP J R EAMMERSMITH DR J N JEWELL E F EEPOINGER ped pate APRIL wate RECYCLIN This is my understanding of water recycling lobacco is raised to an elevated moisture held there for hours and dried to making moigture If you will provide me with detaila I will initiate work to evaluate the effect of this treatmerc on cigarette carbon monoxide nies delive TzT", - "values": [ - "Memo" - ] - }, - { - "text": "TO ce FROM DATE SUBJECT K LaGRECA T STOVER P Stebbins JM Colemen A G FORSYTHE January VICEROY SUPPORT PLANS VICEROY is currently in the process of selecting a new line advertising campaign It is our estimate that the campaign will be in the marketplace late in the Second Quarter or early in the Third Quarter. We do not plan to finalize promotion plans for the last half of until we have the campaign so as to maximize the synergy between the advertising end promotion Currently we will utilize M.", - "values": [ - "Memo" - ] - }, - { - "text": "Hho Srnerican Sebeceo Compouny QIVISION OF AMERICAN BRANOS INC Penk Boone Dare York Y JOOF April Memorandum to Mr D Jackman F W Free Dear Dave Budgets Attached are separate schedules showing advertising budget allocations for the following brands handled through your agency CARLTON Filter and Menthol mm Cup and Box CARLTON s Filter and Menthol The attachments cancel and supersede the similar schedules previously furnished cordially J R Costello Marketing controller Attachments ec Mr J A", - "values": [ - "Memo" - ] - }, - { - "text": "Fm een ee ee alae ne MS ye C Acs y hap ve THE TOBACCO INSTITUTE INC fA Bact Sak i K STREET NORTHWEST tk WASHINGTON DC SO October i INFORMATIONAL MEMORANDUM TO Messrs Anderson Blalock Bowling Brayman Bresnahan Dowdell Frye Provost Hardy Holtzman Shinn Stevens Stinnette Wade and Zahn William Kloepfer gr. LF Attached is Mr Kornegays letter to members of Congress reciting the lamentable history of the smoking dogs Also attached is the news release about the lietter which we will distribute on Le. ", - "values": [ - "Memo" - ] - }, - { - "text": "PHILIP MORRIS USA INTEROFFICE CORRESPONDENCE RICHMOND VIRGINIA Tot Mr W Kuhn Date December From M A Manzelli Subject atrostp Update I INTRODUCTION In when the Entomological Laboratory was in the formative stage one of its proposed objectives was as follows To develop a chemical treatment for the control of the cigarette beetle a major pest of stored tobacco It was understood at that time that any insect growth control agent developed for this purpose would have to meet these qualifications A . .", - "values": [ - "Memo" - ] - }, - { - "text": "ek we pee x wT Rae PHILIP MORRIS INCORPORATED INTEROFFICE CORRESPONDENCE TO FROM SUBJECT pas PARK AVENUE NEW YORK NY Jerome Walters pat December Phyllis Cowart RECORD CARTON UPDATE Per Cecilias conversation with Rosa we have updated the attached records maintained at CARLSTADT QRSA andor IRON MOUNTAIN Vital Records to reflect your name as owner of these records Please note the previous owner was J Garcia Also indicate in writing if any of these recordscan be destroyed Please. a ere B DET l. rs", - "values": [ - "Memo" - ] - }, - { - "text": "epee etn emer nsetpctin reat en ey een eye ey te ee ene pers ee ern CE iprnnne t m a Sinlard MEMORANDUM December TO Mr M Raiser FROM N P Ruffalo INTRODUCTION TRUE FILTER s AND TRUE FILTER MENTHOL s CIGARETTES SUBJECT This is to advise that effective Thursday January the Sales Department will introduce and commence releasing to customers two new products which will be identified as TRUE Filter s and TRUE Filter Menthol s in the following areas TEXAS NEW MEXICO MONTANA IDAHO ALASKA WASHINGTON ", - "values": [ - "Memo" - ] - }, - { - "text": "MARDENKANE INC An oe TO A SadovnickB Magid A ye of FROM Zish Molbegott piel Sieofes pha DATE July Pattee Ons O RE Gasoline Check Proposal MardenKane has designed a promotion event with all tne attributes necessary to ensure a success. THE OFFER Money to the consumer for the purchase of gasoline MardenKane through contacts with virtually every major gasoline company has worked out a system whereby gasoline stations will accept a Lorillard produced GASOLINE CHECK as part payment towards. THE The.", - "values": [ - "Memo" - ] - }, - { - "text": "Lirllard MEMORANDUM March TO R B Spell P J McCann SS barEnioe FROM kK A Sparrow SUBJECT Meetings Kent Promotion Plan The attached promotion plan was presented to M Orlowsky on February. Marty was not happy with the attached as he felt it was not strong enough Martys goal is to effect a percent increase in Kent volume He has asked for ideas regarding merchandising promotion advertising class of trade issues etc to reach a percent increase. A meeting will be held Thursday from am noon in the", - "values": [ - "Memo" - ] - }, - { - "text": "optllard MEMORANDUM October To Vv Lindsley FROM T Smith RE KENT INTERNATIONAL SHIPMENTS OF BACKGROUND represents the highest volume shipping day for Kent International since The days M units is far above the M unit daily average KI is currently running for October daily average excludes shipments. Per your request to investigate tr shipments of the following was determined e Finast Inc in division Cleveland E took the following force out cases of KI MM box cases of KI MM box The product is to. .", - "values": [ - "Memo" - ] - }, - { - "text": "LONDON JULY UPA group of British scientists who have spent nearly two years experimenting with the effects of nicotine on mice re ported today that their tests have failed to show any definite link be tween smoking and lung cancer. The scientists were commissioned to report on the effects of smoking on certain types of cancer by the British Institute of Cancer Research. Their findings were reported at yesterdays Annual Meeting of the British Empire Cancer Campaign. The report said exhaustive. .", - "values": [ - "News Article" - ] - }, - { - "text": "Daily Telegraph December IMPS REJECT CURE ON CIGARETTE COUPONS ere NING PUBLIC SMOKING WAE DAILY TELEGRAPH REPORTER FINHERE was no valid reason to discontinue cigarette coupon schemes Mr Jolin Partrid aa chairman of the Imperial Tobacco Co said in London yesterday Lo do so would be an unjustifiable interference with market ing freedom and consumers choice Mr Partridge was commenting on a Commons cledate on lung cancer deaths during which Mr Robinson Minister of Health Commons DebateP DEATIL IN ", - "values": [ - "News Article" - ] - }, - { - "text": "PL TEWTS ogee feo To The Editor CS oT et age ES oe RT Re Ls from driving far above the legal speed limit than from all the above health risks. A A Taly Wall Street Journal editorial by David Stipp titled Prevention May be Costlier than a Cure He enumerated the median cost of a a year of life saved by various interventions Childhood immunizations and prenatal care save money On the other hand we spend on flu shots to prolong one iife by one year. We also wonder why our health care costs have. . .", - "values": [ - "News Article" - ] - }, - { - "text": "United States Tobacco Co files suit against FDA GREENWICH ConnBUSINESS WIREAug United States Tobacco Co. USTC filed suit today in US District Court for the Middle District of Tennessee seeking a judicial declaration that the Food and Drug Administration FDA and its commission\u00e9r Dr David Kessler lack jurisdiction to regulate smokeless tobacco products. Joining the suit as plaintiffs are Conwood Co LP and the Eastern Dark Fired Tobacco Growers Association. The company believes that the White. a.", - "values": [ - "News Article" - ] - }, - { - "text": " January Lawyers Full Employment Act sent to Legislature Californiastyled Prop law sought by interest group A Californiastyled Proposition proposal was recently certified by Secretary of State Bob Taft and forwarded on to the Statehouse for consideration by the Legislature for possible enactment into Taw. The bill which would be economically burdensome to business and unnecessarily disturbing to consumers has been referred to as the lawyers full employment act by Statehouse insiders due to. . .", - "values": [ - "News Article" - ] - }, - { - "text": "DER TAGESSPIEGEL BERLIN OCT PAGE Uncertified translation How the Tobacco Lobby Influences Federal Authorities Concealed Funding of Congresses Agreement with Bonn Justin Westhoff A causal relationship between passive smoking and lung cancer has not been proven This is one of the most central results of a meeting which has been organised this week by the RobertKochInstitute in Berlin an official agency of the Federal Health Ministry in Bonn Some of the handpicked experts from all over the. . The ", - "values": [ - "News Article" - ] - }, - { - "text": "an eee acs cu vert uer rey P Adviesbureau F ollander en Van der Mey Public Relations Public Affairs De strijd van een rookgoeroe door WIM MELJ EUCHATEL ae moeten on der het mom van wetenschap geen fabela ophangen zegt dr Helmut Gaisch Gehuld in een blauwe walm van sigarenrook veogt de di recteur van het onderzoeka centrum van Philip Morria in het Zwiteerse Neuchatel de vioer aan met enkele weten echappelijke onderzoeken Zelfverzekerd hekelt de ket tingrokende wetenschapper het alaafden worden. ", - "values": [ - "News Article" - ] - }, - { - "text": "NYE tfsep Ue Patriotic Theme Popular With the onset ef war pa triotic ads are quickly gaining popularity Recently the Boe Con ST SST oe NPRDEPPPPEPPPPFEPPPPEPH PPPOE LPLE ws wae og OT EE evade ect a AS compatiy we wanted a staterpent that OR ee g ae rape LER ETER f Ba ie ce IGHTEZS re weg veinatinore ote findine if Hard aw em a so a", - "values": [ - "News Article" - ] - }, - { - "text": "ELI CUTTER MEDIA PLAN PLANNING CONSIDERATIONS MARKETING OBJECTIVES GENERATE HIGH LEVELS OF BRAND AWARENESS RANGE AMONG TARGET AUDIENCE TO STIMULATE BRAND INTEREST TRIAL AND ACCEPTANCE FACILITATE PEER GROUP ACCEPTANCE OF EL CUTTER BY CREATING PERCEPTION OF AN ESTABLISHED MAINSTREAM BRAND SIMILAR TO MARLBORO ", - "values": [ - "Presentation" - ] - }, - { - "text": "Vv INinois Manufacturers Association For more than a century manufacturers have enthusiastically supported and respected the Dlinois Manufacturers Association IMA as their voice in the legislative and regulatory arena The IMA represents over member companies collectively employing hundreds of thousands of Ilinois workers In the City of Chicago alone the IMA represents the interests of approximately manufacturers of which more than have fewer than employees. The IMA is dedicated to saving. In ", - "values": [ - "Presentation" - ] - }, - { - "text": "ART PROGRAM Objective Develop Subjectively Acceptable Products with a Significant Reduction in Nicotine Delivery. e Project ART mg Tar mg NicotineinSmoke e Project HalfNic mg Tar mg NicotineinSmoke iavvl a glen wreeh Cho KS HOF U ck ov s o WN a Gen ee Ue ow Cry shen Yqry CET bhents SG CL Porka ME We pg wk nA WAAR We ETESOTEZOz", - "values": [ - "Presentation" - ] - }, - { - "text": "r pet Och os tat way FINN INCORPORATED t pong ale or bet Bae FOR IMMEDIATE RELEASE is a convenient method for everything one needs to Know from credit card numbers to important dates in One compact book the Virginia Slims Personal Organ r Well it just has to be here has rolled off the tongue ef countless frustrated people as they rummage through their important papers colletion Within its pagea the Virginia Slime Personal Organizer makes it possible to find the answers u ip rr he sof nit The ", - "values": [ - "Presentation" - ] - }, - { - "text": "Floor men Today I rise to announce that I have urged Secretary Rubin and IRS Commissioner to investigate the fundraising practices of the socalled Campaign for TobaccoFree Kids I was appalled to learn recently that coalition which appears to be comprised primarily of taxexempt organizations including c charitable organizations has been the this soliciting contributions for their lobbying efforts in support of FDA regulation of tobacco under false pretenses What they are doing Mr Speaker is. J .", - "values": [ - "Presentation" - ] - }, - { - "text": "Bad estos x Meder June For more information call PHILIP MORRIS STATEMENT ON FLORIDA MEDICAID RULING Because there seems to be some confusion about the Florida Courts decision Philip Morris Incorporated is issuing the following statement Philip Morris Incorporated applauds the ruling last Friday of Leon County Circuit Court Judge Steinmeyer in Associated Industries of Florida v AHCA No Leon Cty Cir Ct Judge Steinmeyer held that the amendments to the Florida ThirdParty Liability Act. Judge AHCA. ", - "values": [ - "Presentation" - ] - }, - { - "text": "Save Lives Not Tobacco The Coalition for Accountability NEWS RELEASE CONTACT Sandra Willett Jackson Flee FOR IMMEDIATE RELEASE April PUBLIC HEALTH CONSUMER GROUPS TELL MCCAIN COMMERCE TOBACCO BILL FAR TO GENEROUS TO BIG TOBACCO WASHINGTON DCSave Lives Not Tobacco The Coatition for Accountability the national coalition of more than public health and consumer groups opposing any special legal protection for the tobacco industry today delivered to Senator John McCain RAZ organizational The McCain .", - "values": [ - "Presentation" - ] - }, - { - "text": "FOR IMMEDIATE RELEASE CONTACT DAVID TOVAR PHILIP MORRIS USA OTHER TOBACCO COMPANIES ASK APPEALS COURT TO OVERTURN ENGLE VERDICT MIAMI November Philip Morris USA and the nations other major tobacco companies filed their opening brief appealing the plaintiffs verdicts in the Engle class action case The brief was filed with Floridas Third District Court of Appeal the states intermediate appellate court In the brief the companies made numerous arguments attacking the class certification the many. .", - "values": [ - "Presentation" - ] - }, - { - "text": "FOR IMMEDIATE RELEASE Draft Only Contact Sarah Trego stregowebershandwickcom ATLANTA TEEN EARNS TO KEEP PEERS AWAY FROM SMOKING feenHLP Grant Program Helps High School Student Launch Local Youth Smoking Prevention Lffort GREENSBORO NC March XX Fourteenyearold Kentavious Robinson feels strongly that kids should not smokeso strongly that she wants reach out and encourage younger kids in the community not to light up Thanks to a grant from the TeenHTP. Grant Program Kentavious will partner with .", - "values": [ - "Presentation" - ] - }, - { - "text": "Dec Via Fax DEC BISPH LLM MDC Lisa Knapp Page eat uF Baz FOR IMMEDIATE RELEASE CONTACT Scott Williams Monday December pager Steve Duchesne MASSACHUSETTS CIGARETTE TESTING LAW HIGHLIGHTS NEED FOR NATIONAL UNIFORM STANDARD The following statement was released today by Philip Morris Incorporated RJ. Reynolds Tebaceo Company Brown Williamzon Tobsceo Corporation and Lariflard Tobacco Campany at the companies submitted the results of nicotine tests required under the new Massachusetts cigarette . The", - "values": [ - "Presentation" - ] - }, - { - "text": "PETER TEMPLE Research Director of Hoare Govett Ltd Stockbrokers Heron House High Holborn London WCV PB Member of the London Stock Exchange Associate member of the Society of Investment Analysts. Born Married Educated Career to Address Hobbies date rd December Bradford West Yorkshira. Lynn daughter of Mr Mrs A L Gardner then of Lytham St Annes Lancashire One son one daughter Moseley Hall Grammar School Cheadle Cheshire and University of Wales Graduatad with Honours in Economics Awarded Eames . .", - "values": [ - "Resume" - ] - }, - { - "text": "R PELI oe Pp Al TA Name Gate of Birth Title Education PRESENT EMPLOYMENT Hazleton UK July June REDACTED MATERIAL HUK Study no TENNANT Karen Ann n\u00e9e Bremner REDACTED. Scientist and Study Oirecter Oepartment of Biopharmaceutical Analysis Sc Hons in Applied Chemistry Coventry Lanchester Polytechnic Scientist and Study Director Department of Siopharmaceutica Analysis formerly Bioanalytical. Responsibilities as fior Study Directon role below Since September responsible for Special Methods group . . ", - "values": [ - "Resume" - ] - }, - { - "text": "BEVERIDGE DIAMOND PC. JAMES B SLAUGHTER Profile James B Slaughter is a principal in Beveridge Diamond PCs Washington DC office practicing in civil and criminal litigation. Mr Slaughter joined Beveridge Diamond PC in after three years as an Assistant and Senior Assistant Public Defender in Fairfax County Virginia He tried numerous felony jury trials and argued cases before the Virginia Supreme Court and Virginia Court of Appeals Prior to joining the Public Defenders Office Mr Slaughter. . Toxic.", - "values": [ - "Resume" - ] - }, - { - "text": "Ronald J Lukas Item APPENDIX a BIOGRAPHICAL SKETCHES Principal Investigator Ronald J Lukas Education Institution and Location Degree Year Conferred Field of Study State Univ New York Gollege BS Physics Cortland NY Columbia University New York NY Physics SUNY Downstate Medical Center PhD Biophysics Brooklyn NY Research andor Professional Experience partial list Laboratory Assistant Deans List Wilson Danforth National Fellowship Nominee Dept of Physics and First Annual Distinguished Young ", - "values": [ - "Resume" - ] - }, - { - "text": "Curriculum Vitae Name Qihong Xu Birthdate Birthplace Qingdao PR China Sex Female Education BSc Biology Qingdao Oceanography University Qingdao PR China MSc Developmental Biology Institute of Oceanology Academia Sinica Beijing PR China PhD Pharmaceutical Sciences University of Tokyo Japan Professional Experience Assistant Department of Biology Beijing Normal University PR China Lecturer Department of Biology Beijing Normal University PR China Publications Xu Q Wu S Distribution of tropomyosin. .", - "values": [ - "Resume" - ] - }, - { - "text": "BIOGRAPHICAL SKETCH Give the following information for all new key personnel consultants and collaborators. Copy this page for each person NAME POSITION TITLE Benvenuto Pernis Professor of Microbiology EDUCATION Begin with baccalaureate or other initial professional education such as nursing and include postdoctoral training YEAR INSTITUTION AND LOCATION DEGREE CONFERRED FIELD OF STUDY University of Milan MD Immunology RESeAReH ANDIOR PROFESSIONAL EXPERIENCE Concluding with present position. ", - "values": [ - "Resume" - ] - }, - { - "text": "BIOGRAPHICAL SKETCH JoEllen Welsh EDUCATION Rutgers University New Brunswick NJ BA Biological Sciences Cornell University Ithaca NY PhD Nutritional Biochemistry Cornell University Ithaca NY Postdoc University of Ottawa Ottawa Ontario Postdoc RESEARCH AND PROFESSIONAL EXPERIENCE Postdoctoral Research Associate Division of Nutritional Sciences Cornell Univ Ithaca NY Assistant Professor Foods and Nutrition Mount Saint Vincent Univ Halifax NS Canada Postdoctoral Research SELECTED PUBLICATIONS Welsh.", - "values": [ - "Resume" - ] - }, - { - "text": "w FF PRINCIFAL INVESTIGATOR PROGRAM DIR BIOGRAPHICAL SKETCH Give the following information tor the key personnet and consultants iistec on pace Begs witn the Principe Investigaior Prasram Director Photocopy this page for each person Hawrot Edward NAME POSITION TITLE BIRTHDATE Ma bas e Edward Hawrot Professor of Medical Science EDUSETION Beort with baccaiaureaie tes Y INSTITUTIO FO LOCETION DEGREE CONFERRE Univ of Detroit Detroit Michigan AB Honors Chemistry Harvard University Wilson PT. Wilson.", - "values": [ - "Resume" - ] - }, - { - "text": "Research Associate Merouane Bencherif Education Institution and Location Degree Year Conferred Field of Study Aix en Provence France and BS Mathematics Algiers Algeria and Physics Institute of Medical Sciences Premed Premedical Algiers Algeria Medical School University of MD Medicine Algiers Algiers Algeria University of Texas TOEFL GRE English Austin Texas University of Virginia PhD Biophysics Charlottesville VA Research andor Professional Experience Member of a medical team from the Algerian.", - "values": [ - "Resume" - ] - }, - { - "text": "Research Associate Merouane Bencheriff Education Institution and Location Degree Year Conferred Field of Study Aix en Provence France and BS Mathematics Algiers Algeria and Physics Institute of Medical Sciences Premed Premedical Algiers Algeria Medical School University of MD Medicine Algiers Algiers Algeria University of Texas TOEFL GRE English Austin Texas University of Virginia PhD Biophysics Charlottesville VA Research andor Professional Experience Member of a medical team from the Algerian.", - "values": [ - "Resume" - ] - }, - { - "text": "tae tee Inhalation Bioassay hemistryWalton Horizontal sm eof Rodents tase Machine for Inhalation Exposur sito Cigarette Smoke aa Michael R Guerin James R Stok and Robert W Holmberg woe Recent Advances in the Chemical Composition of Tobacco and sium New Orleans aig Bye Cop sty totes oie ae ay Ins Jack H Moneyhun f o we sega SERN vee bee VER Peli Age d smoke aerosol so that M N a stream of constantly replenishe genesis have suffered from the lack of a convenlently available rebreathing the same ", - "values": [ - "Scientific Publication" - ] - }, - { - "text": "THE BANDWAGONS OF MEDICINE HKE LAWRENCE COHEN and HENR ROTHSCHILD Although medical progress has been extraordinan its path has often been directed by the overwhelming acceptance of unproved but popular ideasthe bandwagons of medicine Some of these ideas eventuallhs prove valid and their uncritical acceptance is belatedh justified More often however they are disproved and abandoned or repluced by another bandwagon A new idea can frequently help overcome stagna tion and inertia but. How do ideas.", - "values": [ - "Scientific Publication" - ] - }, - { - "text": "SACC Vol No September cu Ackn owledged p C Cohen Microbubble Dynamics Visualized in the Intact Capillary Circulation STEVEN B FEINSTEIN MD PRAVIN M SHAH MD FACC RICHARD J BING MD FACC SAMUEL MEERBAUM PuD FACC ELIOT CORDAY MD FACC BINGLO CHANG MD GREGORY SANTILLAN PHD YOZO FUNBAYASHI MD Los Angeles California The potential for the use of contrast echocardiography to study myocardial perfusion has generated efforts to develop standardized echo contrast agents The two methods used in this. . The .", - "values": [ - "Scientific Publication" - ] - }, - { - "text": "Reprinted from Journal of Medicinal Chemistry Copyright by the American Chemical Seciety and reprinted by permission of the copyright owner. Irreversible Inactivation of Macrophage and Brain Nitric Oxide Synthase by LNGMethylarginine Requires NADPHDependent Hydroxylation Le Paul L Feldman Glaxo Inc Research Institute Moore Drive Research Triangle Park North Carolina Owen W Griffith Department of Biochemistry Medical College of Wisconsin Milwaukee Wisconsin Hui Hong and Dennis J Stuehrt Case ", - "values": [ - "Scientific Publication" - ] - }, - { - "text": "Pharmacogenetics Symposium proceedings The pharmacogenetics of chemical carcinogenesis Jeffrey R Idle Martin Armstrong Alan V Boddy Carol Boustead Suzanne Cholerton Jane Cooper Ann K Daly Janice Ellis Wendy Gregory Hakam Hadidit Constance H\u00e9fer John Holt Julian Leathart Nigel McCracken Sophia C Monkman John E Painter Heather Taber Dianne Walker and Murray Yule Pharmacogenetics Research Unit Department of Pharmacological Sciences Medical School University of Newcastle Received July and accepted", - "values": [ - "Scientific Publication" - ] - }, - { - "text": "Por A in NordrheinWestfalen uber Jah re laBe auffallige zeitliche Trends er kennen wie zum Beispiel die iiber prozentige Zunahme des Mund RachenKarzinoms bei Maanern Die Meldepflicht fir Krebserkran kungen ist notwendig Zur Zeit gibt es ein saarlandisches Krebsregister und das nationale Krebsregister der ehemaligen DDR Nur bei ausrei chender Qualitat der Datenquellen k\u00e9nnen Risikofaktoren erkannt undi eine raumliche Differenzierung vor genommen werden Professor Dr med Ye um Verteilen am RICHT ", - "values": [ - "Scientific Publication" - ] - }, - { - "text": "Proc Natl Acad Sci USA Vol pp June Cell Biology Characterization of a member of the immunoglobulin gene superfamily that possibly represents an additional class of growth factor receptor proteintyrosine kinase YauHue CHou AND MICHAEL J HAYMAN Department of Microbiology Health Science Center State University of New York at Stony Brook Stony Brook NY Communicated by Peter K Vogt March received for review January ABSTRACT We have screened cDNA libraries prepared from embryonic chicken tissues to. ", - "values": [ - "Scientific Publication" - ] - }, - { - "text": "INFECTION aND MMUNITY May p Val No Murine Respiratory Mycoplasmosis in F and LEW Rats Evolution of Lesions and Lung Lymphoid Cell Populations JERRY K DAVIS RANDALL B THORP PHILLIP A MADDOX MARY B BROWN anv GAIL H. CASSELL Departments of Microbiology and Comparative Medicine Schoots of Medicine and Dentistry Universiry of Alabama in Birmingham Birmingham Alabama Received July Accepted January By comparison of two rat strains LEW and F which are known to differ in susceptibility to. Murine suits ", - "values": [ - "Scientific Publication" - ] - }, - { - "text": "Homeotic gene Antennapedia mRNA contains noncoding sequences that confer translational initiation by internal ribosome binding SooKyung OH Matthew P Scott and Peter Sarnow Department of Biochemistry Biophysics and Genetics Department of Microbiology and Immunology University of Colorado Health Sciences Center Denver Colorado USA Departments of Developmental Biology and Genetics Stanford University School of Medicine Stanford California USA The Antennapedia Antp homeotic gene of Drosophila. Key.", - "values": [ - "Scientific Publication" - ] - }, - { - "text": "re FROM Fragrance raw materials monographs ISOAMYL ALCOHOL Synonyms Tsopenty alcohol methylbutanol. Structure CHyCHCHCHCHOH. iLabiatze FM if Description and physical properties Merck Index. Occurrence Constitutes the major portion of fusel oil It has been identified as an ester among the constituents of Roman camomile oil and in the oils of French peppermint Java citronefla Reunion geranium tea Teucrium chamaedrys Eucalyptus amigdatina Achillea ageratum Artemisia camphoruta and. In rabbits . .", - "values": [ - "Scientific Publication" - ] - }, - { - "text": "BORRISTON LABORATORIES INC. ACUTE CARDIOVASCULAR AND RESPIRATORY EFFECTS TEST WITH IN BEAGLE DOGS Borriston Project No FINAL REPORT Submitted to LORILLARD English Street P Box Greensboro NC Submitted by BORRISTON LABORATORIES INC February Beech Place Temple Hills Maryland", - "values": [ - "Scientific Report" - ] - }, - { - "text": "PROGRAM TITLE BL PROCESSPRODUCT DEVELOPMENT OBJECTIVE To simplify and improve BL processing To improve the physical properties of the product. PROGRAM APPROACH AND TIMING A Evaluate additive reduction in RCB to increase CV Istnd Qtr. B Supply technical assistance for burley stem washing rdth Qtr process modification. C Evaluate the elimination of feedstock grinding to improve nd Qtr tensile strength of RCB. eRESD TLOY", - "values": [ - "Scientific Report" - ] - }, - { - "text": "BLENDED FLAVOR ACCEPTANCH Quantity Produced FG OLK Tnrspeetor Expiration Daten Flash Point None Supervison FLAVOR RG LITS Lab Pull Production oda been fiound to be suitable Date beLbPPeOe DN Code Descrip PLM. DM Code PMID Compounder CHARLY No Containers Comments Date Produced Datie Inspected Specific Gravity Deg Vr The material identified aboce has been sampled and feted for use by Philip Moris.", - "values": [ - "Scientific Report" - ] - }, - { - "text": "ls ee Ae aes ae a sgt ee a ae x PROJECT TITLE SAVOURY PERIOD COVERED JULY AUGUST WRITTEN BY GhisteP PAG The purpose of project SAVOURY is to prepare flavours which when pyrolizedi with sheet or tobacco give Burley type flavour characteristics EVALUATION OF FLAVOURS The following flavours are currently being evaluated for the following objectives LTR sprayed with flavour should give the same flavour characteristics as an Italian Burley treated in the Burley line. Greek Burley tobacco not. . . .", - "values": [ - "Scientific Report" - ] - }, - { - "text": "JAN S PM GA OVC SMOKING P GBDPA SmokingPhysical Testing system Page of Special Smoking Summary Specl Information Date Brand Information CA STD MERTT ULTIMA BOX Submitter ID Originator CROWE Teats Requested FIC TRE PRT POR FRM LSE I BO CKS UNEQUIL A MBRIT ULTIMA BOX PACKS UNEQUIL NEW BRAND START UP B MERIT ULTIMA BOX EQUI NEW BRAND START UP C MERIT ULTIMA BOX NEW BRAND START UP JA MERIT ULTIMA BOX NEW BRAND START UP Special ID Target Tar mgCigarette Nicotina mgCigarette OPM mgCigarette", - "values": [ - "Scientific Report" - ] - }, - { - "text": "RESEARCH AND DEVELOPMENT SERVICE REQUEST AND DATA SHEET Request Code Sample Code Project Code D DBDN PSS Submitter C MOOGALIAN Date Submitted Date Completed Comments MUL CONFIGURATION Smoke Butt Length mm FTC Tar mgcigt TPM mgcigt Nicotine mgcigt Water mgcigt PuffsCigt. Cigarette Total RTD mm of H Static Burn Time min Filter RTD mm of H Tipping Paper Lengthmm Ventilation Filler Total Alkaloids DWB Expanded Tob Wt of Tob g V Oven Volatiles Soluble Ammonia", - "values": [ - "Scientific Report" - ] - }, - { - "text": "f INBIFO Institut flr biologische Forschung K\u00e9ln Pp WGORPE Apr SEITE NOTIZ ZUM BESUCH VON PROF DR SCHNEIDER AM APR Teilnehmer ProfDr Schneider TAM WGO UHA KHO TME WRE ERO FTE Vorstellung des geplanten Auswertungsverfahrens fiir Standard AmesTests mit Zigarettenkondensat gewichtete lineare Regression observed variance weights Regression pro Substanz und Testtag Vergleich zweier Substanzen Substanzen sind verschieden wenn sie an beiden Testtagen statistisch signifikant verschieden sind gewichtete.", - "values": [ - "Scientific Report" - ] - }, - { - "text": " HAZLETON LABORATORIES AMERICA INC. SPONSOR Lorillard DATE April MATERIAL A SUBJECT FINAL REPORT Day Single Dose Subacute Toxicity Study Project No Page is being submitted as a correction page for incorporation into the subject report dated November. Study Director Dut BAVID G SEROTA PhD. Diplomate American Board of Toxicology Life Sciences Division oS N N wy oS Oo wet Oy", - "values": [ - "Scientific Report" - ] - }, - { - "text": "RESEARCH AND DEVELOPMENT PROJECT STATUS REPORT DATE JANES PROJECT ND PROJECT NAMEs FLAVOR COMPOUNDING PROJECT DESCRIPTION To establish an ongoing inhouse program of flavor compounding in order to gain expertise and thereby develop viquely different flavors which will give this company a cbepetitive edge in the aarket place via improved andor unique product HOURS WAGES OVERHEAD OTHER TOTAL CUMULATIVE MONTH BUDGET ACTUAL BUDGET ACTUAL BUDGET ACTUAL BUDGET ACTUAL BUDEET ACTUAL BUDGET ACTUAL PH. a", - "values": [ - "Scientific Report" - ] - }, - { - "text": "LS bok July CARAWAY OIL BACKGROUND Synonyms Oil of Caraway Oils Carum Carvi CAS Number FEMA Number CoE Number Caraway oil is a volatile oil distilled from the dried ripe fruit of Carum carvi L It is a colorless to pale yellow liquid having the characteristic odor and taste of caraway Food Chemi cals Codes The main constituent of caraway oil is carvone Opdyke Caraway oil has been in public use since the s It is found in soap creams lotions and perfumes at a usual range of. TOBACCO USES Caraway .", - "values": [ - "Scientific Report" - ] - }, - { - "text": "Y BROWN WILLIAMSON TOBACCO CORPORATION j DEVELOPMENT CENTER WORK REQUEST UR ROT LIE eT eT mee oe SOT recone DATE January REQUESTED BY L E Gravelysme PROJECT NO B COPIES R P Newton L Richards Dorothy Frank PURPOSE ss MARKETINGRESEARCHSAMPLEPREPARATIONMETHODOLOGY DESCRIPTION test outline andor special instructions Please have the Sample Group prepare the following experimental cigarettes for consumer testing Cartons Current VICEROY Rich Lts KS Without logo Cartons Cartons Current VICEROY Rich Lts", - "values": [ - "Specification" - ] - }, - { - "text": "lite TECHNICAL SPECIFICATIONS ay for eo HEADBOX for PHILIP MORRIS USA PARK by CRS SIRRINE ENGINEERS INC Midlothian Tnpk Suite Rictmond Virginia CRSS PROJECT NO X toy alone od wes", - "values": [ - "Specification" - ] - }, - { - "text": "Sete e RICHMOND MARL LIGHTS s Effective Date Xtober Pc FILTER SPEC TEICATION FOR MARLBORO LIGHTS S FILTER a For a mm Circumference Cicarette eS Na pe Le Filter Rod Up mm Length i Plug Haker KDFAF Tow PM Material Code AEAST BCEL Additives None Plasticizer Pz ClIx of Dry Weight PM Material Code A gms mm Rods KDF Plug Wrap Dexter Mli mm x m PM Material Code A Glue Lines Two Type Polymer X PM Material Code A OK QA APPROVED EQUA KDF Lap Adhesive Eastman A Hotmelt PM Material Code A OR QA APPROVED .", - "values": [ - "Specification" - ] - }, - { - "text": "PMMSDS H JeTsBAKER INCe RED SCHOOL cance PHILLIPSBURG NJ qn he MATERIAL SAFETY DATA SHEET reo HOUR EMERGENCY TELEPHONE CHEMTREC NATIONAL RESPONSE CENTER Z OCTADECYL BONDED SILICA GEL COLUMN PAGE EFFECTIVE TSSUED JeTeBAKER INCes RED SCHOOL LANE PHILLIPSBURG NJ PRODUCT NAME OCTADECYL BONDED SILICA GEL COLUMN COMMON SYNONYMS NA CHEMICAL FAMILY CHROMATOGRAPHY PRODUCTS FORMULA NSA FORMULA WTe NA CAS NOs NA NIOSHRTECS NOes NA PRODUCT USE LABORATORY REAGENT PRODUCT CODES BAKER SAFTDATA SYSTEM UseSs", - "values": [ - "Specification" - ] - }, - { - "text": " LOUISVILLE EFFECTIVE LATES MERIT ULTRA LTS MEN SP FCO PROLUCT CONE CIGARETTE SPECIFICATION SO CIGARETIEDESCRIETIVE CIGARETTE LENGTH HM CIGARETTE CIRCUMFERENCE KK FILTER LENGTH MM TIPPING LENGTH HM FACK MOISTURE Wd TOTAL RaTslh IN H TILUTION TARGET TIPPING PAPER MM X N CORKWHITE BB LASER PERF U RB W MM X M CORKWHITE B LASER PERF TIFPING ADHESIVE NATIONAL A t FINDLEY A GLUE ROLLER DRAWING NO SEE ENGINEERING FOR LATEST REVISION NUMBER EWMAN DATES FERATIONS SERVICES PREPARED BY AFPROVEL BY", - "values": [ - "Specification" - ] - }, - { - "text": "STOCKTON STREET BASIC WEIGHT SPECIFICATION TOBACCO ROD LENGTH TIPPING LENGTH CIGARETTE PAPER WIDTH CIRCUMFERENCE CALCULATED VOLUME CALCULATED DENSITY PACK Q LOOSE ENDS FIRMNESS TARGET RANGE RANGE FILLER WEIGHT CALCULATED WEIGHT PAPER AND ADHESIVE ROD WEIGHT TIPPING AND ADHESIVE TOTAL LESS PLUG EFFECTIVE DATE STANDARD PRODUCTION PHYSICAL PARAMETERS PARLIAMENT REGULAR C LIGHTS CHARCOAL SP BRAND CODE CSTD MM MM MM MM CUBIC MM CGMSCC TARGETS x WW GMS MM FROM TO MM CONE WEEK N FROM TO KM APPRDVED BY", - "values": [ - "Specification" - ] - }, - { - "text": "xe PECIFICATION LOUISVILLE EFFECTIVE DATE VIRGINIA SLIMS LIGHTS MEN FTB USA DOMESTIC GRAPHICS STANDARD PRODUCTION BRAND CODE CSTDCUS USA DOMESTIC GRAPHICS SEE COMMENTS BELOW FOR OTHER BRANDSCODES APPLICABLE TO THIS SPECIFICATION APPLIES TO EXPORT FORMULAS O GLUE ROLLER TIPPING INFORMATION TIPPING ADHESIVE SEAM ADHESIVE STD FILLER PACK OV CIGARETTE PAPER MM FTC TAR MGCIGT MH MM MM MM M OH FRESH MENTHOL NGCIGT CIGARETTE LENGTH TOBACCO ROD CIRCUM TOBACCO ROD LENGTH FILTER LENGTH a TIPPING LENGTH .", - "values": [ - "Specification" - ] - }, - { - "text": "LOUISVILLE FINISHED FILTER ROD DESCRIPTIVE EFFECTIVE DATE x VIRGINIA SLIMS ULTRA LIGHTS REGULAR FTB STANDARD PRODUCTION x BRAND CODE STD SEE COMMENTS BELOW FOR OTHER BRANDSCODES APPLICABLE TO THIS SPECIFICATION MACHINE TYPE FILTER ROD LENGTH FILTER CIRCUMFERENCE NUMBER UP PLUG LENGTH ROD RTD PLUG RTD FILTER ROD PLASTICIZER APPLICATION PERCENT APPLICATION WEIGHT FILTER TOW DENIER PER FILAMENT TOTAL DENIER CROSS SECTION PLUG WRAP ANCHOR ADHESIVE KDF t MM MM CLASER g uM MM H CTOTAL t MM X M SAP ", - "values": [ - "Specification" - ] - }, - { - "text": "oEthylphenol Analytical information detailed Lo Smoke VW Green Cured C NonLeaf ee Itemizes Gooo Quantitative all figures Structural Formula Mol Weight es Types of Tobacco all details Chem Groups ToxPharm Inform and other Notes Qualitative only Quoteints or Semiquant Mol Form Cy Hho O M P Derivatives categories use reverse side List all answerable information Z s B P Nas RJR CLASS NO PAMPHLET XI Me pe Celanese Fibers Co Fibers Tech Cent Charlotte N C U S THE CHARACTERIZATION Reference Allen R .", - "values": [ - "Specification" - ] - }, - { - "text": "te Lhiamibhef fF eee aly infgirmation detailed Smoke IZ Green Cured NonLeaf yO Itemize ntitative all figurer Qualitative only Quotients or semicuant ructural Formula Mol Form CoH Ny Mol Weight MP BP q U Chem Groups Derivatives es of Tobaceo all details oo PENTANF PUFPED vs FREON PUFFED TOBACCO Pham Inf and other notes. oe a eo rence. OE NRF wo ee ote neenge TPF Se et ey SURE RTOLE SAI SG ne anc egies PIRES toe one UT epgeenss cpp Reference RDR Dube Michael F Charles W Miller Charles R h SNS", - "values": [ - "Specification" - ] - } -] \ No newline at end of file diff --git a/src/extractors/text_to_multi_option_extractor/labeled_data/d4la_document_type/options.json b/src/extractors/text_to_multi_option_extractor/labeled_data/d4la_document_type/options.json deleted file mode 100644 index e08cadc..0000000 --- a/src/extractors/text_to_multi_option_extractor/labeled_data/d4la_document_type/options.json +++ /dev/null @@ -1,14 +0,0 @@ -[ - "Budget", - "Email", - "Form", - "Invoice", - "Letter", - "Memo", - "News Article", - "Presentation", - "Resume", - "Scientific Publication", - "Scientific Report", - "Specification" -] \ No newline at end of file diff --git a/src/extractors/text_to_multi_option_extractor/labeled_data/issues/labels.json b/src/extractors/text_to_multi_option_extractor/labeled_data/issues/labels.json deleted file mode 100644 index d34d578..0000000 --- a/src/extractors/text_to_multi_option_extractor/labeled_data/issues/labels.json +++ /dev/null @@ -1,408864 +0,0 @@ -[ - { - "text": "Implement a system of administration of juvenile justice that fully integrates in its legislation, policies and practices the provisions and principles of the Convention on the Rights of the Child (CRC) (in particular articles 37, 39 and 49) as well as the United Nations Standard Minimum Rules for the Administration of Juvenile Justice (Beijing Rules), United Nations Guidelines for the Prevention of Juvenile Delinquency (The Riyadh Guidelines), United Nations Rules for the Protection of Juveniles Deprived of their Liberty and the Vienna Guidelines for Action on Children in the Criminal Justice System ", - "values": [ - "International instruments", - "Justice", - "Rights of the Child" - ] - }, - { - "text": "Ratify the ICCPR and ensure full implementation of all provisions", - "values": [ - "CP rights - general", - "International instruments" - ] - }, - { - "text": "Adopt legislation, fill vacancies and provide adequate resources to ensure that institutions such as the judiciary, which play a vital role in protecting and implementing human rights, are independent and effective", - "values": [ - "Justice" - ] - }, - { - "text": "Consider releasing those people imprisoned or detained because of their conscientious objection to military service, and consider removing the corresponding charges from their criminal record", - "values": [ - "Freedom of religion and belief" - ] - }, - { - "text": "Continue to promote measures to eradicate violence against women, including domestic violence, and expand support services and psychological support for victims, taking especially into account the vulnerability of migrant women", - "values": [ - "Migrants", - "Women's rights" - ] - }, - { - "text": "Ratify the Rome Statute on the International Criminal Court and the ICRMW", - "values": [ - "International instruments", - "Justice", - "Labour", - "Migrants" - ] - }, - { - "text": "Promptly, impartially and thoroughly investigate all reports of acts of torture and ill-treatment, and torture and forced disappearance perpetrated by agents of the State, ensuring that the military criminal justice system does not carry out these investigations, and take further efforts to ensure that those who report acts of torture or ill-treatment are protected from intimidation and reprisals and to implement the recommendations of the Committee against Torture made in this regard.", - "values": [ - "Enforced disappearances", - "Human rights violations by state agents", - "Torture and other CID treatment", - "Treaty bodies" - ] - }, - { - "text": "Put an end to abusive recourse to trials in camera, and authorize international observers to attend trials", - "values": [ - "Justice" - ] - }, - { - "text": "Continue implementation of the National Plan of Action, including social programs that aim at carrying out information and education activities with regard to people with disabilities and their social protection according to the relevant Convention which the country has ratified", - "values": [ - "Disabilities", - "International instruments", - "Right to education" - ] - }, - { - "text": "Amend its press law to define the exceptions to article 24 of its Constitution in specific terms that do not infringe upon the internationally guaranteed rights of free speech and a free press", - "values": [ - "Freedom of association and peaceful assembly", - "Freedom of opinion and expression" - ] - }, - { - "text": "[Ratify] The Optional Protocol to the Convention on the Elimination of All Forms of Discrimination against Women, as well as the three Optional Protocols to the Convention on the Rights of the Child", - "values": [ - "International instruments", - "Rights of the Child", - "Women's rights" - ] - }, - { - "text": "Ratify the Optional Protocols of the Convention of the Rights of the Child, raise the age of criminal responsibility to 18 years, ensure the adequate separation of children and adults in penitentiaries and jails, and ensure due legal representation for children and persons under 18 years of age within the judicial system", - "values": [ - "Detention", - "International instruments", - "Justice", - "Rights of the Child" - ] - }, - { - "text": "Reduce to the minimum possible administrative detention of migrants, asylum-seekers and refugees, and only use it in exceptional cases ", - "values": [ - "Asylum-seekers - refugees", - "Detention", - "Migrants" - ] - }, - { - "text": "Effectively implement measures to harmonize norms of citizenship for foreign spouses to bring these norms in line with the CEDAW in the shortest time possible. ", - "values": [ - "International instruments", - "Statelessness and the right to nationality", - "Women's rights" - ] - }, - { - "text": "Continue efforts with a hope of establishing a national human rights institution in line with the Paris Principles", - "values": [ - "National Human Rights Institution" - ] - }, - { - "text": "Incorporate structural reforms that allow the separation of powers, establishing conditions for an independent judiciary, a multiparty political system and a National Assembly that reflects the interests of citizens at national, regional and local levels ", - "values": [ - "Freedom of association and peaceful assembly", - "Justice" - ] - }, - { - "text": "Consider the establishment of an office of the Ombudsman for Children's Rights devoted purely to the protection of the rights of the child", - "values": [ - "National Human Rights Institution", - "Rights of the Child" - ] - }, - { - "text": "Work to adhere to the protocols to those conventions that it has already signed", - "values": [ - "International instruments" - ] - }, - { - "text": "Enact legislation on domestic violence in all provinces", - "values": [ - "Rights of the Child", - "Women's rights" - ] - }, - { - "text": "Continue cooperation with the international community for better access to food, water and sanitation for the population of Benin, given the country's limited resources", - "values": [ - "Right to food", - "Right to health", - "Right to water and sanitation" - ] - }, - { - "text": "Strengthen the role of the National Commission for Human Rights to enable it to discharge its mandate effectively and independently in accordance with the Paris Principles", - "values": [ - "National Human Rights Institution" - ] - }, - { - "text": "Consider the ratification of all core international human rights instruments ", - "values": [ - "International instruments" - ] - }, - { - "text": "Go beyond recognizing equality of women in its legislation to ensure that this equality is de facto recognized.", - "values": [ - "Women's rights" - ] - }, - { - "text": "Sign and ratify the Convention on the Reduction of Statelessness ", - "values": [ - "International instruments", - "Statelessness and the right to nationality" - ] - }, - { - "text": "Enforce the legislation on trafficking, implement the action plan to combat human trafficking, investigate, prosecute and punish traffickers ", - "values": [ - "Trafficking" - ] - }, - { - "text": "Recommended that an amendment be made to the legal system so that crimes of sexual violence and sexual abuse are made punishable, and those responsible for such crimes do not enjoy impunity.", - "values": [ - "Impunity", - "Women's rights" - ] - }, - { - "text": "Prohibit by law all kinds of violence against children including corporal punishment in all settings", - "values": [ - "Rights of the Child", - "Torture and other CID treatment" - ] - }, - { - "text": "Step up its efforts to prevent and combat trafficking in persons and protect and assist trafficked victims", - "values": [ - "Trafficking" - ] - }, - { - "text": "Continue efforts aimed at improving the administration of the justice system and the situation of persons deprived of their liberty ", - "values": [ - "Detention", - "Justice" - ] - }, - { - "text": "Carry out immediate investigations into all allegations of torture committed during the regime of Ben Ali, and ensure that victims and their families are entitled to rehabilitation and compensation ", - "values": [ - "Torture and other CID treatment" - ] - }, - { - "text": "Strengthen its efforts to ensure that the necessary capacity is provided to make sure that pre-trial detention is dealt with according to international standards ", - "values": [ - "Detention" - ] - }, - { - "text": "Adopt measures aiming at combating effectively the trafficking of persons and the exploitation of women and children", - "values": [ - "Rights of the Child", - "Trafficking", - "Women's rights" - ] - }, - { - "text": "Recognize the right to safe drinking water and sanitation ", - "values": [ - "Right to water and sanitation" - ] - }, - { - "text": "Resolve alleged discrimination in the restitution of property with regard to certain minority religious groups", - "values": [ - "Freedom of religion and belief", - "Minorities" - ] - }, - { - "text": "Increase efforts to convict and punish trafficking offenders, with sufficiently stringent penalties, under existing legislation and complete and enact draft legislation prohibiting the forced labour and forced prostitution of adults ", - "values": [ - "Labour", - "Trafficking" - ] - }, - { - "text": "Consider developing a national policy of protection of human rights defenders which could focus on a national system for protection of witnesses and human rights defenders.", - "values": [ - "Human rights defenders" - ] - }, - { - "text": "Become a State party of the Convention on the Rights of Persons with Disabilities ", - "values": [ - "Disabilities", - "International instruments" - ] - }, - { - "text": "Combat, in law and in practice, discrimination based on sexual orientation", - "values": [ - "Sexual Orientation and Gender Identity" - ] - }, - { - "text": "Intensify efforts to engage with development partners to support policies and programs that would advance the socio-economic rights of its people", - "values": [ - "ESC rights - general", - "Technical assistance and cooperation" - ] - }, - { - "text": "Adopt at the earliest a draft law aimed at abolishing the death penalty, in line with the spirit of articles 11 and 12 of its new Constitution, repeal the provisions of its 1961 Criminal code, which provides for the application of the death penalty and ratify the Second Optional Protocol to the International Covenant on Civil and Political Rights which prohibits the death penalty under all circumstances ", - "values": [ - "Death penalty", - "International instruments" - ] - }, - { - "text": "Immediately introduce a moratorium on executions with a view to abolishing the death penalty", - "values": [ - "Death penalty" - ] - }, - { - "text": "Continue to strengthen efforts taken by the police to combat hate crime based on ethnicity and ensure effective handling of such cases", - "values": [ - "Racial discrimination" - ] - }, - { - "text": "Ratify the UNESCO Convention Against Discrimination in Education ", - "values": [ - "International instruments", - "Right to education" - ] - }, - { - "text": "Implement the programme to combat violence against women and ensure that victims have access to health care and legal assistance ", - "values": [ - "Women's rights" - ] - }, - { - "text": "Persevere in its efforts to prevent and combat xenophobia, in particular on the Internet ", - "values": [ - "Racial discrimination" - ] - }, - { - "text": "Encourage an informed debate among the population on the topic of the death penalty and promote its de jure abolition", - "values": [ - "Death penalty" - ] - }, - { - "text": "Manifest publicly and energetic to its security forces and intelligence services that extrajudicial executions would not be tolerated and that also make the necessary efforts to eradicate this practice, including the prosecution of those responsible", - "values": [ - "Extrajudicial executions", - "Human rights violations by state agents" - ] - }, - { - "text": "Ratify core international human rights conventions, in particular CAT and ICCPR-OP 2", - "values": [ - "Death penalty", - "International instruments", - "Torture and other CID treatment" - ] - }, - { - "text": "Create a national human rights institution in conformity with the Paris Principles", - "values": [ - "National Human Rights Institution" - ] - }, - { - "text": "Adopt policies necessary for the protection of victims of discrimination based on religion, language and ethnic origin", - "values": [ - "Freedom of religion and belief", - "Racial discrimination" - ] - }, - { - "text": "Continue its successful social policy, adopting actions that increase the provision of social services and giving priority to the most disadvantaged ", - "values": [ - "ESC rights - general" - ] - }, - { - "text": "Abolish the practice of using the judicial system to silence critics of the Government, reinforce the independence of the judiciary by increasing institutional and material support for the justice system and end the provisional nature of judicial appointments ", - "values": [ - "Justice" - ] - }, - { - "text": "Continue giving priority to the funding for education so as to attain inclusive education for all Peruvian children", - "values": [ - "Right to education", - "Rights of the Child" - ] - }, - { - "text": "Prioritize the setting-up of the Independent Police Complaint Board, building on best practices of the Complaints, Discipline and Internal Investigations Department", - "values": [ - "Justice" - ] - }, - { - "text": "Do everything possible, in the territories under its jurisdiction, to protect human rights defenders, trade unions workers and journalists, and take necessary political measures to protect them and respect their human rights.", - "values": [ - "Freedom of the press", - "Human rights defenders", - "Labour" - ] - }, - { - "text": "Intensify executive and legislative efforts to eliminate the practice of female genital mutilation ", - "values": [ - "Rights of the Child", - "Torture and other CID treatment", - "Women's rights" - ] - }, - { - "text": "Ratify the Council of Europe Convention on Prevention and Combating Violence against Women and Domestic Violence", - "values": [ - "International instruments", - "Rights of the Child", - "Women's rights" - ] - }, - { - "text": "Expedite its efforts towards the enactment of the gender equality legislation and set up appropriate mechanisms for its implementation", - "values": [ - "Women's rights" - ] - }, - { - "text": "Conduct an assessment of the national policies on the rights of children and to identify the areas where immediate action may be taken ", - "values": [ - "Rights of the Child" - ] - }, - { - "text": "Take necessary measures for the prevention of such deeds as reported warrantless arrests, torture, extrajudicial killings and other misconduct and ensure swift and fair investigations on alleged misconduct by law enforcement authorities ", - "values": [ - "Detention", - "Extrajudicial executions", - "Human rights violations by state agents", - "Torture and other CID treatment" - ] - }, - { - "text": "Ensure that the Constitution and legislation include clear provisions on states of emergency, so as to ensure that none of the rights protected under article 4 of ICCPR are suspended in such circumstances, and that the requirements of such suspension are compatible with the above-mentioned Covenant", - "values": [ - "CP rights - general", - "International instruments" - ] - }, - { - "text": "Ratify the Second Optional Protocol to the International Covenant on Civil and Political Rights, aiming at the abolition of the death penalty, and render its legal practices consistent therewith", - "values": [ - "Death penalty", - "International instruments" - ] - }, - { - "text": "Secure the necessary resources for the effective implementation of the law against abuse of women, in particular through the strengthening of the special police force to combat gender-based violence (FELCV) so that it can fulfil its mandate", - "values": [ - "Women's rights" - ] - }, - { - "text": "Continue addressing effectively the socio-economic inequalities affecting the Maori.", - "values": [ - "Indigenous peoples" - ] - }, - { - "text": "Accede to the Optional Protocol to CAT", - "values": [ - "Detention", - "International instruments", - "Torture and other CID treatment" - ] - }, - { - "text": "Take measures necessary to define and criminalize torture in the forthcoming Criminal Code", - "values": [ - "Torture and other CID treatment" - ] - }, - { - "text": "Promote the linguistic plurality through education", - "values": [ - "Right to education" - ] - }, - { - "text": "Do everything in its power to continue to live up to its well-deserved reputation, particularly by working actively to combat xenophobic, racist, anti-Semitic and Islamophobic acts which are tending to increase in the country", - "values": [ - "Freedom of religion and belief", - "Racial discrimination" - ] - }, - { - "text": "Consider the possibility of acceding to the International Convention on the Protection of the Rights of All Migrant Workers and Members of their Families (ICRMW)", - "values": [ - "International instruments", - "Labour", - "Migrants" - ] - }, - { - "text": "Further intensify the fight against corruption, especially the corruption of State officials ", - "values": [ - "Corruption" - ] - }, - { - "text": "Take further steps in order to fully abolish the death penalty and modify the Criminal Code so no crime can be punished by the capital punishment", - "values": [ - "Death penalty" - ] - }, - { - "text": "Ratify the second Optional Protocol to the International Covenant on Civil and Political Rights", - "values": [ - "Death penalty", - "International instruments" - ] - }, - { - "text": "Continue its efforts to improve the protection of human rights, especially by eliminating discrimination based on sex, race, caste and religion", - "values": [ - "Freedom of religion and belief", - "Minorities", - "Racial discrimination" - ] - }, - { - "text": "Promote equal participation in political and public affairs as a key means of overcoming the current political and humanitarian crisis", - "values": [ - "Freedom of association and peaceful assembly" - ] - }, - { - "text": "Take further necessary measures in fighting extremism ", - "values": [ - "Other" - ] - }, - { - "text": "Examine possible ways to make the bureaucratic process required when terminating a pregnancy as quick as possible, and maximize its efforts to make sure that the process is conducted in a professional way ", - "values": [ - "Women's rights" - ] - }, - { - "text": "Consider ratifying the CPED as foreseen in the National Human Rights Action Plan, and accelerate the ratification of the ICRMW and the implementation of its provisions ", - "values": [ - "Enforced disappearances", - "International instruments", - "Labour", - "Migrants" - ] - }, - { - "text": "Consider adopting a national strategy to fight against all forms of violence against women", - "values": [ - "Women's rights" - ] - }, - { - "text": "Improve the conditions of detainees and address prison overcrowding", - "values": [ - "Detention" - ] - }, - { - "text": "Adopt all necessary measures to incriminate violence against women and to conduct a resolute penal policy to combat this scourge. ", - "values": [ - "Women's rights" - ] - }, - { - "text": "Work with civil society organizations to assist and redress women affected by domestic violence ", - "values": [ - "Women's rights" - ] - }, - { - "text": "Consider reviewing strategies aimed at the protection of children with a view to developing a comprehensive plan for the care of children and aligning them with the provisions of the CRC and all applicable international human rights instruments to which the Congo is a party.", - "values": [ - "International instruments", - "Rights of the Child" - ] - }, - { - "text": "Continue the cooperation with the international human rights protection system by extending an open standing invitation to the Human Rights Council Special Procedures", - "values": [ - "Special procedures" - ] - }, - { - "text": "Withdraw its reservations to the Convention on the Elimination of all Forms of Discrimination against Women", - "values": [ - "International instruments", - "Women's rights" - ] - }, - { - "text": "Adopt legislative and other necessary measures, including awareness-raising campaigns, against harmful traditional practices and stereotypes. ", - "values": [ - "Human rights education and training", - "Torture and other CID treatment" - ] - }, - { - "text": "Mainstream tackling racism throughout its departments and in its policy-making.", - "values": [ - "Racial discrimination" - ] - }, - { - "text": "Guinea-Bissau sought to fulfill the commitments made in this regard with the publication of the said laws allowing detainees female to be in separate cells with the male.", - "values": [ - "Detention", - "Women's rights" - ] - }, - { - "text": "Amend all laws and practices to ensure that no person under the age of 18 at the time of the crime can be sentenced to death", - "values": [ - "Death penalty", - "Rights of the Child" - ] - }, - { - "text": "Consider adopting a unified and modern personal status law that is compatible with all legal and procedural requirements", - "values": [ - "General" - ] - }, - { - "text": "Take firm action to eliminate corruption and impunity in the judicial, security and executive branches", - "values": [ - "Corruption", - "Impunity" - ] - }, - { - "text": "Continue its efforts to integrate, without delay, the Palipehutu-FNL into the defence and security forces, as well as in the various executive, administrative and diplomatic areas.", - "values": [ - "Public security" - ] - }, - { - "text": "Further foster its measures in relation to migrant women and foreign adopted children that are exposed to domestic violence ", - "values": [ - "Migrants", - "Rights of the Child", - "Women's rights" - ] - }, - { - "text": "Implement existing Law 91-1992 on Italian citizenship in a manner that preserves the rights of all children born in Italy", - "values": [ - "Rights of the Child", - "Statelessness and the right to nationality" - ] - }, - { - "text": "Take all measures necessary for the protection of human rights defenders and the free exercise of their activities, and prosecute those responsible for acts of harassment or violence against them", - "values": [ - "Human rights defenders" - ] - }, - { - "text": "Continue the reform of the Criminal Code in relation to the prosecution of journalists.", - "values": [ - "Freedom of the press" - ] - }, - { - "text": "Guarantee the right to family reunification of migrants held in detention and continue with the efforts to protect the human rights of migrant persons, particularly their economic, social and cultural rights", - "values": [ - "Detention", - "ESC rights - general", - "Migrants" - ] - }, - { - "text": "Take all the necessary measures and, as a first step, introduce a moratorium with a view to abolish the death penalty and adhere to the General Assembly resolutions in this regard", - "values": [ - "Death penalty" - ] - }, - { - "text": "Continue to improve the education system ", - "values": [ - "Right to education" - ] - }, - { - "text": "Take measures, together with her international partners, to increase shelter capacity for asylum-seekers and unaccompanied children", - "values": [ - "Asylum-seekers - refugees", - "Rights of the Child", - "Technical assistance and cooperation" - ] - }, - { - "text": "Continue facing the attempts of external interference in the country's internal affairs and continue exercising fully its sovereignty and right to self-determination ", - "values": [ - "Other" - ] - }, - { - "text": "Equal treatment for all media and prompt investigations of reported violations against the rights of press and speech", - "values": [ - "Freedom of opinion and expression", - "Freedom of the press" - ] - }, - { - "text": "Take necessary measures to avoid any use of detention of asylum seekers during the process of determining their refugee status ", - "values": [ - "Asylum-seekers - refugees", - "Detention" - ] - }, - { - "text": "Strengthen efforts to combat extreme poverty", - "values": [ - "Poverty" - ] - }, - { - "text": "Put forward its best efforts to eliminate all forms of discrimination against women, including early forced marriage of girls and unequal rights to marriage, divorce, inheritance and child custody", - "values": [ - "Rights of the Child", - "Women's rights" - ] - }, - { - "text": "Move towards the ratification of the Second Optional Protocol to the International Covenant on Civil and Political Rights", - "values": [ - "Death penalty", - "International instruments" - ] - }, - { - "text": "Give further consideration to enacting legislation and formulating national action plans with concrete goals: to prevent the economic exploitation of and hazardous work by children, and to combat drug abuse, human trafficking and the sexual exploitation of women and children ", - "values": [ - "Rights of the Child", - "Trafficking", - "Women's rights" - ] - }, - { - "text": "Strengthen the capacity of the National Commission for the Promotion of Equality with regards to the follow up, investigation, and monitoring of cases of racial discrimination and violence, and initiate the corresponding legal actions, in order to combat impunity", - "values": [ - "Impunity", - "National Human Rights Institution", - "Racial discrimination" - ] - }, - { - "text": "Continue to reinforce its jurisdiction in relation to the human rights of consumers in general and more particularly as applicable to the tourism sector.", - "values": [ - "General" - ] - }, - { - "text": "Adopt and implement, in the short term, the project of a constitutional amendment on the Charter on Rights and Freedoms, bearing in mind the extensive legislative work that has been carried out in this regard ", - "values": [ - "Other" - ] - }, - { - "text": "Ensure that nobody can be detained without trial and revise relevant laws (ISA, CLTPA, MSA, UPA) accordingly ", - "values": [ - "Detention" - ] - }, - { - "text": "Improve conditions for proper functioning of independent media, in particular national TV channels, in order to provide more space for expressing diverse views and opinions ", - "values": [ - "Freedom of the press" - ] - }, - { - "text": "Continue programs of human rights training for law enforcement officials, in the field of torture and ill treatment, in line with the already established practice ", - "values": [ - "Human rights education and training", - "Torture and other CID treatment" - ] - }, - { - "text": "Continue increasing efforts to combat terrorism", - "values": [ - "Public security" - ] - }, - { - "text": "Adopt measures to ensure that people can change their legally recognized gender without sex-reassignment surgery", - "values": [ - "Sexual Orientation and Gender Identity" - ] - }, - { - "text": "Take further measures to prohibit all forms of violence against children and women", - "values": [ - "Rights of the Child", - "Women's rights" - ] - }, - { - "text": "Ensure effective implementation of the measures or strategies established to counter and prevent trafficking in persons, including by intensifying efforts to prosecute perpetrators and providing adequate protection to trafficking victims, especially women and children", - "values": [ - "Rights of the Child", - "Trafficking", - "Women's rights" - ] - }, - { - "text": "Consider ratifying the Optional Protocol to the Convention on the Elimination of All Forms of Discrimination against Women (CEDAW).", - "values": [ - "International instruments", - "Women's rights" - ] - }, - { - "text": "Continue to ensure, through an ongoing campaign or strategy, access to food and to education for all children, including children with disabilities, children who live on the street, orphans and children living in rural areas", - "values": [ - "Disabilities", - "Right to education", - "Right to food", - "Rights of the Child" - ] - }, - { - "text": "Withdraw its reservation to the article 6 of the Convention on the Rights of the Child", - "values": [ - "International instruments", - "Rights of the Child" - ] - }, - { - "text": "Continue its excellent programs and social policies with the aim of further increasing the quality of life of its people, particularly the most vulnerable sectors of the population", - "values": [ - "ESC rights - general" - ] - }, - { - "text": "Continue its endeavour to promote and protect the human rights of children and women ", - "values": [ - "Rights of the Child", - "Women's rights" - ] - }, - { - "text": "Implement effective measures and allocate adequate resources to ensure respect for international standards in prisons, especially with regard to food, health care and the hygiene of detainees", - "values": [ - "Detention" - ] - }, - { - "text": "Ratify the Convention on Preventing and Combating Violence against Women and Domestic Violence (the Istanbul Convention)", - "values": [ - "International instruments", - "Rights of the Child", - "Women's rights" - ] - }, - { - "text": "Develop its legislation in order to meet the basic development needs of the country in its transitional period.", - "values": [ - "Development" - ] - }, - { - "text": "Continue with the measures aimed at improving the protection and integration of persons with disabilities", - "values": [ - "Disabilities" - ] - }, - { - "text": "Investigate all cases of extrajudicial executions, torture and other cruel, inhuman and degrading ill-treatments committed by security forces and prosecute those responsible, with special attention to those crimes committed against human rights defenders ", - "values": [ - "Extrajudicial executions", - "Human rights defenders", - "Human rights violations by state agents", - "Torture and other CID treatment" - ] - }, - { - "text": "Continue its efforts to ensure equal access to education throughout its territory for all, without distinction as to sex or social origins", - "values": [ - "Right to education" - ] - }, - { - "text": "Provide vaccination to all segments of society, especially women and children, in order to reduce mortality rates and raise life expectancy ", - "values": [ - "Right to health", - "Rights of the Child", - "Women's rights" - ] - }, - { - "text": "Ensure that the law enforcement agencies fully observe the legal mechanism and comply with human rights principles, such as the right of the accused and suspects, in the course of carrying out their duties.", - "values": [ - "Justice" - ] - }, - { - "text": "Ratify at the earliest the International Convention for the Protection of All Persons from Enforced Disappearance and fully recognize the competence of the Committee on Enforced Disappearances, as provided for in articles 31 and 32 of the Convention ", - "values": [ - "Enforced disappearances", - "International instruments" - ] - }, - { - "text": "Protect freedom of assembly and association by revising the Protest Law, eliminating all interference with the registration and work of NGOs and guaranteeing their right to seek and receive funding, and halting the ultimatum for unregistered NGOs", - "values": [ - "Civil society", - "Freedom of association and peaceful assembly" - ] - }, - { - "text": "Continue efforts to protect and promote the rights of the child ", - "values": [ - "Rights of the Child" - ] - }, - { - "text": "That the Department of Gender Affairs ensure that its programmes to combat domestic and sexual violence include measures that target violence perpetrated against men and boys", - "values": [ - "Rights of the Child", - "Women's rights" - ] - }, - { - "text": "Step up its efforts in ensuring free universal healthcare services for all ", - "values": [ - "Right to health" - ] - }, - { - "text": "Invite the international community to provide Ethiopia with requested technical assistance with a view to developing the capacities of federal and regional human rights institutions ", - "values": [ - "Technical assistance and cooperation" - ] - }, - { - "text": "Continue efforts by the Government to ensure the enjoyment of economic, social and cultural rights, especially medical care and education, despite the difficulties and challenges identified in its national report ", - "values": [ - "ESC rights - general", - "Right to education", - "Right to health" - ] - }, - { - "text": "Study the possibility of the ratification of the Optional Protocol to the Convention against Torture", - "values": [ - "Detention", - "International instruments", - "Torture and other CID treatment" - ] - }, - { - "text": "Review the Code of Criminal Procedure as regards the use of force by law enforcement officials, in particular section 46", - "values": [ - "Human rights violations by state agents" - ] - }, - { - "text": "Adopt the necessary political and legislative measures to establish a specific framework to protect against discrimination on the grounds of sexual orientation and repeal all laws which criminalize homosexual practice, and implement public awareness-raising campaign on this matter", - "values": [ - "Human rights education and training", - "Sexual Orientation and Gender Identity" - ] - }, - { - "text": "Develop its national human rights institution to fully adapt it to the Paris Principles, with a legal mandate which is clear and as broad as possible, and with sufficient financial resources ", - "values": [ - "National Human Rights Institution" - ] - }, - { - "text": "Pursue the fight against the impunity of the perpetrators of sexual violence against women and young girls ", - "values": [ - "Impunity", - "Rights of the Child", - "Women's rights" - ] - }, - { - "text": "Implement comprehensive measures to eliminate violence against women and sexual abuse of children", - "values": [ - "Rights of the Child", - "Women's rights" - ] - }, - { - "text": "That equality between women and men in the workplace becomes effective in the near future", - "values": [ - "Women's rights" - ] - }, - { - "text": "Continue its efforts in strengthening the capacities of the Commission of Human Rights by providing it with financial and human resources and expand those efforts through cooperation with the regional organisations and the United Nations Institutions", - "values": [ - "National Human Rights Institution", - "Technical assistance and cooperation" - ] - }, - { - "text": "Strengthen protection of women's rights, particularly by adopting legal measures to prohibit gender-based and domestic violence against women and girls", - "values": [ - "Rights of the Child", - "Women's rights" - ] - }, - { - "text": "Explicitly criminalize corporal punishment of children ", - "values": [ - "Rights of the Child", - "Torture and other CID treatment" - ] - }, - { - "text": "Examine the possibility of decriminalizing apostasy and blasphemy ", - "values": [ - "Freedom of religion and belief" - ] - }, - { - "text": "Continue active measures and initiatives to minimize the gender gap", - "values": [ - "Women's rights" - ] - }, - { - "text": "Ensure that the relatives of victims of enforced disappearances, their representatives, and those who report enforced disappearances will not be subject to attacks and persecution", - "values": [ - "Enforced disappearances" - ] - }, - { - "text": "Implement without delay alternative measures to deprivation of liberty in law and in practice, ensuring that detention is only applied as a last resort, especially to accompanied, unaccompanied and separated children", - "values": [ - "Detention", - "Rights of the Child" - ] - }, - { - "text": "Guarantee, within the framework of the Constitutional reform, both individual and collective rights, under the principles of equality, taking into account its international human rights obligations", - "values": [ - "General" - ] - }, - { - "text": "Continue to improve the protection and assistance to victims, as well as to raise public awareness on the risks of trafficking.", - "values": [ - "Trafficking" - ] - }, - { - "text": "Ensure the implementation of its obligations under international humanitarian law", - "values": [ - "International humanitarian law" - ] - }, - { - "text": "Strengthen and boost the experience it already has in reforming the educational system by promoting a human rights culture through its integration into school curriculums, particularly in rural areas.", - "values": [ - "Human rights education and training" - ] - }, - { - "text": "Work on policies and strategies to enhance awareness on gender issues ", - "values": [ - "Human rights education and training", - "Women's rights" - ] - }, - { - "text": "Intensify the work aimed at the ratification of the Council of Europe Framework Convention for the Protection of National Minorities, signed by Belgium in 2002", - "values": [ - "International instruments", - "Minorities" - ] - }, - { - "text": "Consider the possibility of ratifying the International Convention on the Protection of the Rights of All Migrant Workers and Members of Their Families", - "values": [ - "International instruments", - "Labour", - "Migrants" - ] - }, - { - "text": "Adhere to human rights conventions to which Guinea is not yet a party ", - "values": [ - "International instruments" - ] - }, - { - "text": "Review and amend its national legislation that discriminates against women, and challenge the social acceptability of violence against women and practices harmful to women and girls, such as female genital mutilation and early and forced marriage", - "values": [ - "Rights of the Child", - "Torture and other CID treatment", - "Women's rights" - ] - }, - { - "text": "Continue addressing domestic violence through education, awareness campaigns, victims\u2019 services and the effective application of the law against perpetrators, as well as by considering elevating the national council of women to a full ministry", - "values": [ - "Human rights education and training", - "Rights of the Child", - "Women's rights" - ] - }, - { - "text": "Decriminalize defamation, and continue national measures to promote the independence of the media ", - "values": [ - "Freedom of opinion and expression", - "Freedom of the press" - ] - }, - { - "text": "That the Parliament, the Government and all political parties take concrete steps to create a more enabling environment for Albanian women to advance in political and public positions ", - "values": [ - "Women's rights" - ] - }, - { - "text": "Put in place effective mechanisms to identify, report, and monitor sexual and gender-based violence", - "values": [ - "Rights of the Child", - "Women's rights" - ] - }, - { - "text": "Lift administrative restrictions on NGOs and peaceful demonstrators, refrain from imposing charges on peaceful demonstrators, refrain from acts leading to the closure of NGOs or the suspension of their peaceful activities, and instead promote a meaningful political dialogue that allows and embraces diverging views, including those of human rights defenders, NGOs, journalists, political activists and others ", - "values": [ - "Civil society", - "Freedom of association and peaceful assembly", - "Freedom of opinion and expression", - "Freedom of the press", - "Human rights defenders" - ] - }, - { - "text": "Sign the Optional Protocol to the Convention on the Rights of the Child on Communication Procedure ", - "values": [ - "International instruments", - "Rights of the Child" - ] - }, - { - "text": "Pursue efforts with regional and international communities in seeking financial and technical assistance to report on and implement ratified treaties, and for UPR follow-up ", - "values": [ - "Technical assistance and cooperation", - "Treaty bodies", - "UPR process" - ] - }, - { - "text": "Continue to uphold the core values that are in the Tongan constitutional and customary history, in its work to ensure full compliance with human rights and fundamental freedoms for all Tongans.", - "values": [ - "General" - ] - }, - { - "text": "Continue the efforts to provide the needed health services coverage as well as intensify efforts for the prevention and control of HIV-AIDS ", - "values": [ - "HIV - Aids" - ] - }, - { - "text": "Review the Law on Public Associations and all relevant policies in order to eliminate inappropriate restrictions on the right to freedom of association and ensure that all civil society organizations, including those with foreign funding, can work free from undue administrative obstacles or harassment ", - "values": [ - "Civil society", - "Freedom of association and peaceful assembly" - ] - }, - { - "text": "Continue to strengthen its human rights framework, including through giving full implementation to existing institutional and legal protections", - "values": [ - "General" - ] - }, - { - "text": "Allow the Working Group on Arbitrary Detention to visit the country and to be guaranteed access to all places of detention ", - "values": [ - "Detention", - "Special procedures" - ] - }, - { - "text": "Continue efforts to eradicate and address cases of violence against women ", - "values": [ - "Women's rights" - ] - }, - { - "text": "Ratify the Optional Protocol to the Convention against Torture (OP-CAT)", - "values": [ - "Detention", - "International instruments", - "Torture and other CID treatment" - ] - }, - { - "text": "Investigate allegations concerning the deaths of people arrested during the peaceful demonstration in February 2009", - "values": [ - "Extrajudicial executions", - "Freedom of association and peaceful assembly" - ] - }, - { - "text": "Devise and implement policies to facilitate access to justice and support for victims of violence against women, including human trafficking", - "values": [ - "Trafficking", - "Women's rights" - ] - }, - { - "text": "Formulate a national action plan to develop specific initiatives with regard to persons with disabilities ", - "values": [ - "Disabilities" - ] - }, - { - "text": "Establish a moratorium on the death penalty with a view to its final abolition", - "values": [ - "Death penalty" - ] - }, - { - "text": "El Salvador was committed to protecting the rights of Salvadorans who had migrated. In that sense the delegation considered as a great achievement the adoption, in 2011, of the Special Law on the Protection and Development of Salvadoran Migrants and Their Families. ", - "values": [ - "Migrants" - ] - }, - { - "text": "Modify the regulations of the Family Code which are discriminatory against girls and women, regarding guardianship of minors, inheritance, divorce, polygamy and rejection", - "values": [ - "Justice", - "Rights of the Child", - "Women's rights" - ] - }, - { - "text": "Conclude the process of ratification of the Optional Protocol to CEDAW and to OP-CRC-SC and consider ratifying the optional protocols to CAT, the International Covenant on Economic, Social and Cultural Rights (CESC) and CED ", - "values": [ - "International instruments" - ] - }, - { - "text": "Establish immediately an official moratorium on executions with a view to abolishing the death penalty", - "values": [ - "Death penalty" - ] - }, - { - "text": "Effectively fight against the practice of forced child labour, including by considering taking specific administrative and penal actions towards those officials who, in their respective provinces, incentivize or facilitate the labour of children in cotton fields.", - "values": [ - "Labour", - "Rights of the Child" - ] - }, - { - "text": "Strengthen the protection of rights and interests of women and children and other vulnerable groups", - "values": [ - "Rights of the Child", - "Women's rights" - ] - }, - { - "text": "Strengthen efforts to fulfill its obligations under the Convention for the Elimination of All Forms of Discrimination against Women and the Convention on the Rights of the Child to protect its most vulnerable populations, including women and children, notably in times of crisis", - "values": [ - "International instruments", - "Rights of the Child", - "Women's rights" - ] - }, - { - "text": "Continue its efforts in the area of human rights training, particularly for staff of penitentiary establishments", - "values": [ - "Detention", - "Human rights education and training" - ] - }, - { - "text": "Guarantee the protection of all internally displaced persons regardless of their ethnic origin", - "values": [ - "Internally displaced persons", - "Minorities" - ] - }, - { - "text": "Improve the birth registration system, as previously recommended", - "values": [ - "Rights of the Child", - "Statelessness and the right to nationality", - "UPR process" - ] - }, - { - "text": "Strengthen agreed efforts and the consolidation of existing acquis on the integration of Roma People,particularly relating to budget and coordination of the various programmes established by the authorities", - "values": [ - "Minorities" - ] - }, - { - "text": "Consider the possibility of ratifying the International Convention for the Protection of All Persons from Enforced Disappearance, and of accepting the competence of the relevant Committee", - "values": [ - "Enforced disappearances", - "International instruments" - ] - }, - { - "text": "Include in its debates, within the framework of the legislative review process, indigenous participation as a democratizing principle for civic participation at all levels, municipal, legislative and executive ", - "values": [ - "Indigenous peoples" - ] - }, - { - "text": "Unconditionally lift its measures of economic embargoes and sanctions unilaterally and coercively imposed upon other countries, as these measures are inflicting severe and negative impact on the human rights of the peoples ", - "values": [ - "Other" - ] - }, - { - "text": "Conclude all necessary decisions at the appropriate levels for setting up an independent and effective appointment system for the judiciary.", - "values": [ - "Justice" - ] - }, - { - "text": "Pursue aggressively its efforts to achieve its goals stated in the Vision 2020, through effective international cooperation and technical assistance ", - "values": [ - "Technical assistance and cooperation" - ] - }, - { - "text": "Take steps to ratify and implement CAT", - "values": [ - "International instruments", - "Torture and other CID treatment" - ] - }, - { - "text": "Withdraw its reservations to the CRC concerning detained and asylum seeking children ", - "values": [ - "Asylum-seekers - refugees", - "International instruments", - "Rights of the Child" - ] - }, - { - "text": "Ensure that human rights are afforded full legal and constitutional protection in Fiji", - "values": [ - "Justice" - ] - }, - { - "text": "Continue to improve the national legislation and practice in the field of the independence of the judiciary", - "values": [ - "Justice" - ] - }, - { - "text": "Issue a standing invitation to Special Procedures and seek technical assistance through the OHCHR to submit outstanding reports on the implementation of human rights treaties", - "values": [ - "Special procedures", - "Technical assistance and cooperation", - "Treaty bodies" - ] - }, - { - "text": "Continue efforts to combat human trafficking through the establishment of an effective national policy to address it", - "values": [ - "Trafficking" - ] - }, - { - "text": "Analyze United Nations treaty bodies recommendations in consultation with representatives of the civil society, including indigenous people, and implement them or publicly report on the reasons why it considers no implementation is more appropriate", - "values": [ - "Indigenous peoples", - "Treaty bodies" - ] - }, - { - "text": "Fully implement the National Strategy on Gender Equality and Against Gender-Based and Domestic Violence and build up the capacity of the police force to deal with such cases, including through additional training programs to help police identify and assist survivors of domestic violence", - "values": [ - "Women's rights" - ] - }, - { - "text": "Grant to the National Centre for the Prevention of Torture the necessary financial resources to ensure its functioning and independence in accordance with OPCAT", - "values": [ - "Detention", - "International instruments", - "Torture and other CID treatment" - ] - }, - { - "text": "Draft and adopt a comprehensive national plan of action to address the worst forms of child labour ", - "values": [ - "Labour", - "Rights of the Child" - ] - }, - { - "text": "Improve the conditions in prisons and review the extraordinarily long period of investigation (up to 18 months) as well as the limited access to visit prisoners, as previously recommended", - "values": [ - "Detention" - ] - }, - { - "text": "Reform the Criminal Code and the Code of Criminal Procedure in order to bring them in line with international standards, and improve all aspects of conditions of detention ", - "values": [ - "Detention" - ] - }, - { - "text": "Consider the accession to the Second Optional Protocol to the ICCPR, aiming at the abolition of the death penalty", - "values": [ - "Death penalty", - "International instruments" - ] - }, - { - "text": "Consider establishing a national human rights institution ", - "values": [ - "National Human Rights Institution" - ] - }, - { - "text": "End the practice of incarcerating, mistreating, and applying travel bans against individuals on the basis of their political or religious beliefs", - "values": [ - "Freedom of opinion and expression", - "Freedom of religion and belief" - ] - }, - { - "text": "Amend the Constitution in order to abolish the death penalty", - "values": [ - "Death penalty" - ] - }, - { - "text": "Take urgent action to release all prisoners who have been detained for exercising freedom of expression", - "values": [ - "Freedom of opinion and expression" - ] - }, - { - "text": "Continue extending its international commitments and consider ratification of the International Covenant on Civil and Political Rights ", - "values": [ - "CP rights - general", - "International instruments" - ] - }, - { - "text": "Adopt and promote human trafficking legislation that focuses on the sexual exploitation of women and girls and provides full support to victims, and which factors in the role of cantons", - "values": [ - "Rights of the Child", - "Trafficking", - "Women's rights" - ] - }, - { - "text": "Seek funds for the implementation of the plan of action and road map for children associated with armed groups and forces, particularly in providing reintegration assistance and education and training geared towards longer-term durable solution for them", - "values": [ - "International humanitarian law", - "Rights of the Child" - ] - }, - { - "text": "Adopt a national action plan pursuant to the United Nations guidance on multinational corporations to guard against human rights violations", - "values": [ - "Business and human rights" - ] - }, - { - "text": "Consider acceding to the Convention against Torture ", - "values": [ - "International instruments", - "Torture and other CID treatment" - ] - }, - { - "text": "Facilitate the integration of refugees by combating stereotypes", - "values": [ - "Asylum-seekers - refugees", - "Racial discrimination" - ] - }, - { - "text": "Exert all efforts to redress discriminatory treatment imposed on ethnic minorities, including ethnic Koreans", - "values": [ - "Minorities", - "Racial discrimination" - ] - }, - { - "text": "Adopt a specific law against discrimination consistent with article 1 of the Convention on the Elimination of All Forms of Discrimination against Women ", - "values": [ - "International instruments", - "Women's rights" - ] - }, - { - "text": "Abolish relevant articles of the criminal code which effectively serve as defamation provisions ", - "values": [ - "Freedom of opinion and expression" - ] - }, - { - "text": "Amend legislation to remove restrictions on freedom of expression, which has a major impact on human rights defenders, journalists and members of the political opposition", - "values": [ - "Freedom of association and peaceful assembly", - "Freedom of opinion and expression", - "Freedom of the press", - "Human rights defenders" - ] - }, - { - "text": "Redouble its efforts to ensure that its citizens fully enjoy the highest attainable standards of physical and mental health possible, including through international cooperation", - "values": [ - "Right to health", - "Technical assistance and cooperation" - ] - }, - { - "text": "Redouble efforts in combating domestic violence and violence against women, including through ensuring effective implementation of the National Strategy of Protection against Family Violence 2011-2016", - "values": [ - "Rights of the Child", - "Women's rights" - ] - }, - { - "text": "Strengthen its national human rights mechanism, including by ensuring its adherence to the Paris Principles", - "values": [ - "National Human Rights Institution" - ] - }, - { - "text": "Strengthen protection of women and children, ethnic minorities, migrants, persons with disabilities, older persons and other vulnerable groups", - "values": [ - "Disabilities", - "Migrants", - "Minorities", - "Rights of the Child", - "Women's rights" - ] - }, - { - "text": "Ensure that all children between 4 and 18 years of age have access to education without gender discrimination, in accordance with Article 2 of the Constitution of Niger as well as Articles 2 and 28 of the Convention on the Rights of the Child", - "values": [ - "International instruments", - "Right to education", - "Rights of the Child", - "Women's rights" - ] - }, - { - "text": "Continue cooperation with United Nations mechanisms for the promotion and protection of human rights", - "values": [ - "Technical assistance and cooperation" - ] - }, - { - "text": "Guarantee the full recognition of sexual and reproductive rights", - "values": [ - "Right to health", - "Rights of the Child", - "Women's rights" - ] - }, - { - "text": "Continue its efforts to ratify the following conventions: CPED and OP-CAT ", - "values": [ - "Detention", - "Enforced disappearances", - "International instruments", - "Torture and other CID treatment" - ] - }, - { - "text": "Make every effort to stop violence and the forced recruitment and use of minors as combatants", - "values": [ - "International humanitarian law", - "Rights of the Child" - ] - }, - { - "text": "Create an agency for the protection of children with the help of partners such as UNICEF.", - "values": [ - "Rights of the Child" - ] - }, - { - "text": "Refrain from reintroducing the death penalty, in accordance with its international obligations, in particular those under the Second Optional Protocol to the International Covenant on Civil and Political Rights, aimed at the abolition of the death penalty", - "values": [ - "Death penalty", - "International instruments" - ] - }, - { - "text": "Undertake a comprehensive review of the child protection system, social assistance and family policies to ensure coordinated and efficient services", - "values": [ - "Rights of the Child" - ] - }, - { - "text": "Accede to the Second Optional Protocol to the International Covenant on Civil and Political Rights, aimed at abolishing the death penalty ", - "values": [ - "Death penalty", - "International instruments" - ] - }, - { - "text": "Take measures to eliminate discriminatory practices and cultural barriers that prevent women's access to senior and decision-making positions, and take temporary measures (quotas) to guarantee their equal representation in Parliament and Government", - "values": [ - "Women's rights" - ] - }, - { - "text": "Intensify efforts in its fight against violence against women and amend laws that may be obstacles to this fight", - "values": [ - "Women's rights" - ] - }, - { - "text": "Continue applying the 2012 directive on land concessions ", - "values": [ - "Right to land" - ] - }, - { - "text": "Take policies and legal measures to ensure equality between men and women ", - "values": [ - "Women's rights" - ] - }, - { - "text": "Further strengthen its social programs and policies in favour of its people, with a special emphasis on economic, social and cultural rights, for which the international solidarity is indispensable ", - "values": [ - "ESC rights - general" - ] - }, - { - "text": "Adopt measures to ensure the issuance of birth certificates to newborn refugees ", - "values": [ - "Asylum-seekers - refugees", - "Rights of the Child" - ] - }, - { - "text": "Allow journalists and human rights defenders to work in a safe environment, notably by prosecuting all those responsible for intimidating or making threats against them ", - "values": [ - "Freedom of the press", - "Human rights defenders" - ] - }, - { - "text": "Ensure that persons with disabilities have appropriate access to facilities and services, including education, information, and public transportation ", - "values": [ - "Disabilities" - ] - }, - { - "text": "Strengthen cooperation with the Office of the United Nations High Commissioner for Refugees in order to adopt legal and administrative measures to guarantee respect of the principle of non-refoulement and to ratify the 1951 Convention relating to the Status of Refugees", - "values": [ - "Asylum-seekers - refugees", - "Technical assistance and cooperation" - ] - }, - { - "text": "Take steps to meet the minimum standards for the treatment of prisoners", - "values": [ - "Detention" - ] - }, - { - "text": "Guarantee the right to freedom of expression, opinion, conscience and religion or belief as well as the right to peaceful assembly and the right to freedom of association ", - "values": [ - "Freedom of association and peaceful assembly", - "Freedom of opinion and expression", - "Freedom of religion and belief" - ] - }, - { - "text": "Incorporate into its national legislation most of the international legal human rights instruments that the Gambia has acceded to", - "values": [ - "International instruments" - ] - }, - { - "text": "Continue to strengthen its efforts aimed at economic development, with particular emphasis on improvement of social infrastructure for service provision", - "values": [ - "Development" - ] - }, - { - "text": "Take concrete measures aiming at fostering a genuine human rights culture with due regard to national and regional particularities as well as historical, cultural and religious backgrounds", - "values": [ - "Other" - ] - }, - { - "text": "Ensure protection of migrants and minority groups, in particular of those of Asian origin, from all forms of racial stereotyping and derogatory treatment, including in line with the recommendation of CERD to develop a comprehensive legislative framework for addressing the problem of incitement to racial hatred on the Internet ", - "values": [ - "Migrants", - "Minorities", - "Racial discrimination", - "Treaty bodies" - ] - }, - { - "text": "Concretize equal pay of women and men as soon as possible ", - "values": [ - "Women's rights" - ] - }, - { - "text": "Continue efforts to ensure proper application and implementation of legal texts relevant to protection of women and children in particular and family rights in general", - "values": [ - "Justice", - "Rights of the Child", - "Women's rights" - ] - }, - { - "text": "Eliminate the use of corporal punishment as criminal punishment", - "values": [ - "Torture and other CID treatment" - ] - }, - { - "text": "Enlist the support of the international community to resolve the internal and cross-border conflicts that continue to undermine its national security. ", - "values": [ - "Technical assistance and cooperation" - ] - }, - { - "text": "Meet challenges, particularly high poverty and illiteracy, with the technical and financial assistance of the international community.", - "values": [ - "Poverty", - "Right to education", - "Technical assistance and cooperation" - ] - }, - { - "text": "Revise its legislation to prohibit and sanction corporal punishment imposed on children at home and in schools and step up its efforts on raising awareness about the negative effects of this practice", - "values": [ - "Rights of the Child", - "Torture and other CID treatment" - ] - }, - { - "text": "Continue to promote awareness of diversity and multiculturalism at all levels of education.", - "values": [ - "Right to education" - ] - }, - { - "text": "Intensify efforts to provide assistance for child victims of trafficking ", - "values": [ - "Rights of the Child", - "Trafficking" - ] - }, - { - "text": "Focus more efforts on combating violence against women and provide authorities with more training in this regard.", - "values": [ - "Women's rights" - ] - }, - { - "text": "Evaluate the internal guidelines and criteria with regards to risk assessment in the countries of origin of asylum-seekers and ensure a continuous flow of information and education on these internal guidelines ", - "values": [ - "Asylum-seekers - refugees" - ] - }, - { - "text": "Undertake a process of revising its penal code by aiming to amend article 567 criminalizing relationships between persons of the same sex", - "values": [ - "Sexual Orientation and Gender Identity" - ] - }, - { - "text": "Consider ratification of the Convention against Torture and its Optional Protocol", - "values": [ - "Detention", - "International instruments", - "Torture and other CID treatment" - ] - }, - { - "text": "Continue its efforts towards implementation of the inclusive education policies it has developed", - "values": [ - "Right to education" - ] - }, - { - "text": "Combat organized crimes, terrorism, drug trafficking with the technical assistance of the international community.", - "values": [ - "Public security", - "Technical assistance and cooperation" - ] - }, - { - "text": "Strengthen the mechanisms to protect victims of gender-based violence ", - "values": [ - "Women's rights" - ] - }, - { - "text": "Implement effective and comprehensive reform of the penitentiary system ", - "values": [ - "Detention" - ] - }, - { - "text": "Consider ratifying the Convention against Torture and Other Cruel, Inhuman or Degrading Treatment or Punishment and its Optional Protocol", - "values": [ - "Detention", - "International instruments", - "Torture and other CID treatment" - ] - }, - { - "text": "Continue to strengthen cooperation with the High Commissioner for Refugees as well as donors and non-governmental organizations in order to provide necessary humanitarian aid and fundamental rights' protection to the displaced people hosted by the Kingdom of Thailand ", - "values": [ - "Civil society", - "Internally displaced persons" - ] - }, - { - "text": "Strengthen its cooperation with the international community and accelerate the establishment of democracy and the rule of law", - "values": [ - "Justice", - "Technical assistance and cooperation" - ] - }, - { - "text": "Establish a commission of inquiry with national and international members to examine all allegations of violations against women in various regions of the country", - "values": [ - "Women's rights" - ] - }, - { - "text": "Continue to make concerted efforts to protect the rights of overseas migrant workers", - "values": [ - "Labour", - "Migrants" - ] - }, - { - "text": "Ratify the open-door policy towards internati onal human rights monitoring mechanisms ", - "values": [ - "Treaty bodies" - ] - }, - { - "text": "Remove its reservations to the Convention on the Elimination of All Forms of Discrimination against Women and sign its Optional Protocol", - "values": [ - "International instruments", - "Women's rights" - ] - }, - { - "text": "Guarantee freedom of expression without any kind of discrimination, complying with the obligation of due diligence in the protection of individuals against abuses of non-State actors and ensuring that the civil defamation law is not used with the aim of preventing legitimate criticism ", - "values": [ - "Freedom of opinion and expression" - ] - }, - { - "text": "Abolish the life sentence for minors, in conformity with the Convention on the Rights of the Child", - "values": [ - "International instruments", - "Rights of the Child" - ] - }, - { - "text": "Strengthen programmes to promote and protect the human rights of vulnerable groups, such as women and children in rural areas, and persons with disabilities ", - "values": [ - "Disabilities", - "Rights of the Child", - "Women's rights" - ] - }, - { - "text": "Ratify the Council of Europe Convention on the Protection of Children against Sexual Exploitation and Sexual Abuse", - "values": [ - "International instruments", - "Rights of the Child" - ] - }, - { - "text": "Release the parliamentarians from the opposition who have been imprisoned and take the necessary legal measures to ensure freedom of expression, in the media and on the internet", - "values": [ - "Detention", - "Freedom of opinion and expression", - "Freedom of the press" - ] - }, - { - "text": "Adopt political and legislative measures to establish a specific framework for the protection against discrimination based on sexual preferences accompanied with the elimination of penal provisions that criminalize consensual relations between adults from the same gender, and the implementation of public awareness campaigns in this matter ", - "values": [ - "Human rights education and training", - "Sexual Orientation and Gender Identity" - ] - }, - { - "text": "Recognize people of African descent as an ethnic group and promote their rights", - "values": [ - "Minorities" - ] - }, - { - "text": "Take further steps for the protection of physical and sexual integrity of children, including by actively preventing the recruitment and use of children in armed conflict and ensuring their effective rehabilitation in accordance with the best interests of the child", - "values": [ - "International humanitarian law", - "Rights of the Child" - ] - }, - { - "text": "Fully respect international human rights law and international humanitarian law, in particular the Fourth Geneva Convention on the Protection of Civilian Persons in Time of War, in the OPT", - "values": [ - "International humanitarian law", - "International instruments" - ] - }, - { - "text": "Investigate all ill-treatment and other wrongdoing by law enforcement officials and bring the perpetrators to justice ", - "values": [ - "Human rights violations by state agents" - ] - }, - { - "text": "Punish those responsible for torture, drone killings, use of lethal force against African Americans and compensate the victims", - "values": [ - "Counter-terrorism", - "Extrajudicial executions", - "Minorities", - "Torture and other CID treatment" - ] - }, - { - "text": "Address the issue of impunity in certain cases and for certain parts of Thai society, not least by strengthening the independence of the Office of Prosecutor and the independence of the judiciary", - "values": [ - "Impunity", - "Justice" - ] - }, - { - "text": "To formulate strategies and intensify campaigns to raise awareness among community leaders", - "values": [ - "Human rights education and training" - ] - }, - { - "text": "Accede to the Second Optional Protocol to the International Covenant on Civil and Political Rights, aimed at abolishing the death penalty, and take the necessary steps to remove the death penalty from Sudan's justice system ", - "values": [ - "Death penalty", - "International instruments" - ] - }, - { - "text": "In line with the Government's commitment to protecting fundamental freedoms of its citizens, review its legislation and practices in order to guarantee the free exercise of the right to assembly and freedom of expression, without any limitations other than those permitted by international law", - "values": [ - "Freedom of association and peaceful assembly", - "Freedom of opinion and expression" - ] - }, - { - "text": "Consider incorporating human rights programmes in the Panamanian system of education", - "values": [ - "Human rights education and training" - ] - }, - { - "text": "Ratify the main human rights instruments to which it is not yet a party", - "values": [ - "International instruments" - ] - }, - { - "text": "Take further steps to address discrimination against minority and vulnerable groups including reviewing issues surrounding the terms indigene-indigenous and taking action to discourage politicians from using religious, ethnic or settler indigene division for political ends", - "values": [ - "Indigenous peoples", - "Minorities", - "Racial discrimination" - ] - }, - { - "text": "Ratify CPED ", - "values": [ - "Enforced disappearances", - "International instruments" - ] - }, - { - "text": "Urgently address, the anomaly - accepted by the Government - regarding citizenship status for residents of non-African descent ", - "values": [ - "Minorities" - ] - }, - { - "text": "Intensify its response to the spread of HIV infection by implementing the new National HIV and AIDS Strategic Plan", - "values": [ - "HIV - Aids" - ] - }, - { - "text": "Ratify CED, OP-CRC-AC and CRPD", - "values": [ - "Disabilities", - "Enforced disappearances", - "International humanitarian law", - "International instruments", - "Rights of the Child" - ] - }, - { - "text": "Accelerate its efforts towards the implementation of the National Human Rights Action Plan 2013-2017", - "values": [ - "General" - ] - }, - { - "text": "Continue to provide, improve and enhance human rights education and training programmes, including the holding of workshops and seminars for the judiciary, law enforcement personnel and lawyers", - "values": [ - "Human rights education and training" - ] - }, - { - "text": "Thailand will enhance human rights protection for migrant workers and will redouble its efforts to prevent human trafficking, especially through enhancing the labour inspection system", - "values": [ - "Labour", - "Migrants", - "Trafficking" - ] - }, - { - "text": "Carry out an evaluation into the obstacles victims of gender-based violence experience in accessing effective protection, justice and reparation and the causes which prevent them from filing a complaint", - "values": [ - "Women's rights" - ] - }, - { - "text": "Continue to promote gender equity and the empowerment of women in all decision-making processes and in the design of public policies.", - "values": [ - "Women's rights" - ] - }, - { - "text": "Strengthen its collaboration with national and international civil society actors, notably by giving general accreditation to the major international human rights organizations.", - "values": [ - "Civil society" - ] - }, - { - "text": "Ratify the International Convention for the Protection of all Persons from Enforced Disappearance CED", - "values": [ - "Enforced disappearances", - "International instruments" - ] - }, - { - "text": "Ratify the Second Optional Protocol to the International Covenant on Civil and Political Rights, aiming at abolition of the death penalty", - "values": [ - "Death penalty", - "International instruments" - ] - }, - { - "text": "Take further measures to protect human rights and the environment in mining areas", - "values": [ - "Environment" - ] - }, - { - "text": "Harmonize federal and state laws with international human rights instruments, in order to ensure their effective implementation, at federal and state levels ", - "values": [ - "International instruments" - ] - }, - { - "text": "Redouble efforts to save mother and child by pursuing the education of young girls, increasing the preparation of birth assistants and accelerating the development of public health structures, especially in rural areas ", - "values": [ - "Right to education", - "Right to health", - "Rights of the Child", - "Women's rights" - ] - }, - { - "text": "Decriminalize sexual relations between consenting adults of the same sex and put an end to prejudices and social stigmatization of homosexuality", - "values": [ - "Sexual Orientation and Gender Identity" - ] - }, - { - "text": "Reconsider establishing a local OHCHR presence with monitoring capacities. ", - "values": [ - "Technical assistance and cooperation" - ] - }, - { - "text": "Inform the Council on the measures to make the provision prohibiting corporal punishment in all settings widely respected in the country ", - "values": [ - "Torture and other CID treatment" - ] - }, - { - "text": "Consider the possibility of ratifying ILO Convention No.169", - "values": [ - "Indigenous peoples", - "International instruments" - ] - }, - { - "text": "Request assistance from the United Nations specialized agencies, specifically the World Health Organization, to provide financial and technical support as necessary to consolidate measures for the reduction of maternal and child mortality and improve children's access to health care.", - "values": [ - "Right to health", - "Rights of the Child", - "Technical assistance and cooperation" - ] - }, - { - "text": "Continue adopting practical measures for the implementation of protection of children, and the eradication of violence and abuse, particularly in homes, in schools and in other institutions involved in the care and protection of children ", - "values": [ - "Rights of the Child" - ] - }, - { - "text": "Continue its commitment to international human rights obligations and standards and ensure that the new bill of rights is drafted through broad-based consultations and embraces no less protection of human rights", - "values": [ - "Other" - ] - }, - { - "text": "Adopt legal reforms and policy measures to guarantee the prohibition of all forms of violence against children, including corporal punishment both in the private and the public sphere", - "values": [ - "Rights of the Child", - "Torture and other CID treatment" - ] - }, - { - "text": "Consider becoming a party to other related human rights instruments, such as the Optional Protocol to the Convention on the Rights of the Child on a communications procedure", - "values": [ - "International instruments", - "Rights of the Child" - ] - }, - { - "text": "Consider, as a priority, the implementation of an effective moratorium on the imposition and execution of the death penalty, and consider the abolition of the death penalty in its domestic legislation", - "values": [ - "Death penalty" - ] - }, - { - "text": "Ratify, without limiting reservations, the Convention on the Elimination of All Forms of\nDiscrimination against Women and its Optional Protocol", - "values": [ - "International instruments", - "Women's rights" - ] - }, - { - "text": "Strengthen transitional justice by establishing the hybrid court and a truth and reconciliation commission", - "values": [ - "Justice" - ] - }, - { - "text": "Continue to implement measures to ensure gender equality, including women belonging to minorities", - "values": [ - "Minorities", - "Women's rights" - ] - }, - { - "text": "Continue to develop the institutional framework with respect to the promotion and protection of human rights", - "values": [ - "General" - ] - }, - { - "text": "Conduct impartial and independent investigations into acts of violence committed against human rights defenders, to bring those responsible to justice and fully guarantee freedom of expression ", - "values": [ - "Freedom of opinion and expression", - "Human rights defenders" - ] - }, - { - "text": "Increase representation of women in decision-making bodies", - "values": [ - "Women's rights" - ] - }, - { - "text": "Combat social stigmatization, hate speech, discrimination and violence motivated by sexual orientation or gender identity", - "values": [ - "Sexual Orientation and Gender Identity" - ] - }, - { - "text": "Continue to apply existing legislation and adopt measures to eradicate female genital mutilation ", - "values": [ - "Rights of the Child", - "Torture and other CID treatment", - "Women's rights" - ] - }, - { - "text": "Accelerate the process for adopting the law for equality between men and women ", - "values": [ - "Women's rights" - ] - }, - { - "text": "Take effective legal measures to eliminate all forms of discrimination and violence against women and children, in particular those who belong to ethnic and religious minorities including Muslims who still face multiple forms of discrimination with respect to education, health, employment and social and political participation ", - "values": [ - "Freedom of religion and belief", - "Minorities", - "Racial discrimination", - "Rights of the Child", - "Women's rights" - ] - }, - { - "text": "Take the necessary steps to pursue the signature, ratification and implementation of major international human rights instruments and, as a first priority, sign ICCPR and ICESCR, with a view to early ratification ", - "values": [ - "CP rights - general", - "ESC rights - general", - "International instruments" - ] - }, - { - "text": "Consider ratifying the Second Optional Protocol to the International Covenant on Civil and Political Rights", - "values": [ - "Death penalty", - "International instruments" - ] - }, - { - "text": "Continue efforts to establish a national human rights institution in accordance with the Paris Principles", - "values": [ - "National Human Rights Institution" - ] - }, - { - "text": "Develop a national plan of action to combat trafficking in human beings ", - "values": [ - "Trafficking" - ] - }, - { - "text": "Adopt measures to prevent discrimination and violence based on sexual orientation and gender identity, both by State officials and non-State actors, and allow the change of gender markers on government-issued documentation", - "values": [ - "Sexual Orientation and Gender Identity" - ] - }, - { - "text": "Continue promoting access to education and the design of public policies aimed at increasing education coverage for girls living in rural areas, in particular indigenous and Afro-Ecuadorian girls", - "values": [ - "Indigenous peoples", - "Minorities", - "Right to education", - "Women's rights" - ] - }, - { - "text": "Take measures to ensure the prompt release of persons detained for exercising their freedom of expression or as a result of their political views ", - "values": [ - "Detention", - "Freedom of opinion and expression" - ] - }, - { - "text": "Ensure that the relatively new law on the role of the office of the prosecutor is properly, uniformly and consistently implemented throughout the county ", - "values": [ - "Justice" - ] - }, - { - "text": "Strengthen efforts to combat discrimination against persons with disabilities and take specific measures to increase employment opportunities for them", - "values": [ - "Disabilities" - ] - }, - { - "text": "Take measures to adopt specific legislation to prohibit violence and discrimination against women in conformity with the Convention on the Elimination of All Forms of Discrimination against Women", - "values": [ - "International instruments", - "Women's rights" - ] - }, - { - "text": "Amend articles 70 and 71 of the Penal Code with a view to not criminalizing sexual relations between consenting adults of the same sex, ensure the right to association of lesbian, gay, bisexual and transgender people (LGBTs) and facilitate the registration and activities of NGOs specialized in issues of sexual orientation and gender identity", - "values": [ - "Sexual Orientation and Gender Identity" - ] - }, - { - "text": "Take additional measures to ensure the full enjoyment of the right to education by children with an immigrant background and eliminate discrimination in access to education for them ", - "values": [ - "Migrants", - "Right to education", - "Rights of the Child" - ] - }, - { - "text": "Introduce national measures to reduce school segregation and actively promote participation in society through education among the Roma community ", - "values": [ - "Minorities", - "Right to education" - ] - }, - { - "text": "Sign and ratify the International Convention for the Protection of All Persons from Enforced Disappearance CED. ", - "values": [ - "Enforced disappearances", - "International instruments" - ] - }, - { - "text": "Ensure the effective implementation of legislation to combat domestic violence", - "values": [ - "Rights of the Child", - "Women's rights" - ] - }, - { - "text": "Continue efforts towards the ratification of the International Convention for the Protection of All Persons from Enforced Disappearance as well as for those main international human rights instruments, to which the country is not yet party ", - "values": [ - "Enforced disappearances", - "International instruments" - ] - }, - { - "text": "Continue efforts to introduce a criminal justice process for youth in Vanuatu, which improves the outcomes for offenders, victims and their families ", - "values": [ - "Justice", - "Rights of the Child" - ] - }, - { - "text": "Give a strong response to hate speech, including in offline and online media, as well as systematically denounce expression of intolerance by opinion leaders in the country", - "values": [ - "Racial discrimination" - ] - }, - { - "text": "Increase its efforts, to fight effectively against trafficking in human beings, in particular sex tourism involving children and to adopt the draft law on the protection of domestic workers ", - "values": [ - "Labour", - "Rights of the Child", - "Trafficking" - ] - }, - { - "text": "Intensification of inspections of workers' housing and of checks on its suitability in terms of security, health, habitability and compliance with the applicable laws and decrees.", - "values": [ - "Labour", - "Right to housing" - ] - }, - { - "text": "Continue consideration of the establishment of a national human rights institution compliant with the Paris Principles", - "values": [ - "National Human Rights Institution" - ] - }, - { - "text": "Continue to pursue successful education programmes for all with an emphasis on the most vulnerable segments of its population", - "values": [ - "Right to education" - ] - }, - { - "text": "Abolish legally the death penalty and ratify the Second Optional Protocol to the International Covenant on Civil and Political Rights", - "values": [ - "Death penalty", - "International instruments" - ] - }, - { - "text": "Ensure that disarmament, demobilization, repatriation, resettlement and reintegration for rebel groups remains a high priority in operations against FDLR and the Lord's Resistance Army. ", - "values": [ - "Public security" - ] - }, - { - "text": "Continue its efforts to ensure the enrolment of all segments of society in education", - "values": [ - "Right to education" - ] - }, - { - "text": "Strengthen and consolidate efforts to counter discriminatory practices and violence against women", - "values": [ - "Women's rights" - ] - }, - { - "text": "Consider ratifying the Convention on the Rights of the Child, the Convention against Torture and the International Convention on the Protection of the Rights of all Migrant Workers and Members of Their Families", - "values": [ - "International instruments", - "Labour", - "Migrants", - "Rights of the Child", - "Torture and other CID treatment" - ] - }, - { - "text": "Recommended that Israel immediately cease work on the construction of the wall being built in the Occupied Palestinian Territories, and begins dismantling it.", - "values": [ - "Freedom of movement" - ] - }, - { - "text": "Continue carrying out its sound public policies for the eradication of extreme poverty and hunger which have had concrete results and the recognition from UNDP and FAO, and, also, have allowed achieving the first Millennium Development Goal", - "values": [ - "Poverty", - "Right to food" - ] - }, - { - "text": "Continue its efforts to see through its reform agenda, as stipulated in its new Constitution.", - "values": [ - "General" - ] - }, - { - "text": "Fully implement the Convention on the Rights of Persons with Disabilities and in this regard designate a focal point as coordination mechanism based on appropriate consultation with DPOs", - "values": [ - "Disabilities", - "International instruments" - ] - }, - { - "text": "That inclusive and longer-term measures be taken with respect to linguistic policy, education and participation in decision-making for minorities ", - "values": [ - "Minorities" - ] - }, - { - "text": "Continue the consolidation of its worthy programmes in health, leading towards universal quality health care for the whole population", - "values": [ - "Right to health" - ] - }, - { - "text": "Intensify its efforts to provide protection to asylum-seekers and refugees, including through the timely provision of documentation as to their legal status and rights ", - "values": [ - "Asylum-seekers - refugees" - ] - }, - { - "text": "Continue the implementation of the national Action Plan for Human Rights, and finalize the draft national policy framework on human rights", - "values": [ - "General" - ] - }, - { - "text": "Take concrete steps to enhance women's awareness of their rights and guarantee and increase women's public and political participation ", - "values": [ - "Women's rights" - ] - }, - { - "text": "Continue efforts to increase the human rights culture in its society through the training and capacity-building of law enforcement and the judicial system in the field of human rights ", - "values": [ - "Human rights education and training" - ] - }, - { - "text": "Adopt specific legislation punishing violence against children, including the prohibition of corporal punishment - move forward in taking the measures necessary for the registration of the highest possible number of births - support educational policies aimed at enabling girls to continue their education and eliminating stereotypes regarding gender roles - initiate awareness-raising programmes, particularly in rural areas, in order to change the tendency to value child labour more than education, and encourage access for minority children to education in their mother tongue", - "values": [ - "Human rights education and training", - "Minorities", - "Right to education", - "Rights of the Child", - "Torture and other CID treatment", - "Women's rights" - ] - }, - { - "text": "Elaborate a timeframe for visits by the UN Special Procedures who have requested to visit Algeria, and extend invitations accordingly", - "values": [ - "Special procedures" - ] - }, - { - "text": "Legal procedures have been instituted with a view to enacting a new law on private sector employment to replace the current legislation and to introduce a statutory minimum wage, which will be subject to regular review, and also to restructure the labour market in order to balance the freedom to change jobs with the protection of employers' interests. ", - "values": [ - "Labour" - ] - }, - { - "text": "Pursue efforts to counter discrimination in whatever form, in particular towards the most vulnerable sectors of the population in the follow-up to the Durban Conference and the recommendations of the Committee on the Elimination of Racial Discrimination.", - "values": [ - "International instruments", - "Racial discrimination", - "Treaty bodies" - ] - }, - { - "text": "Establish an independent mechanism for the investigation of allegations of torture by police officers in order to ensure that police detention remains subject to rigid time limits and judicial review by a court", - "values": [ - "Human rights violations by state agents", - "Torture and other CID treatment" - ] - }, - { - "text": "Adopt legislation on appointments that would ensure the independence of the Human Rights Commission", - "values": [ - "National Human Rights Institution" - ] - }, - { - "text": "Continue to adopt and implement effective measures to fight violence against women", - "values": [ - "Women's rights" - ] - }, - { - "text": "Give an opportunity to newspapers whose permits have been rejected to appeal the decision to a third party ", - "values": [ - "Freedom of the press" - ] - }, - { - "text": "Redouble efforts in its refusal of religious intolerance and xenophobia", - "values": [ - "Freedom of religion and belief", - "Racial discrimination" - ] - }, - { - "text": "Find possibilities to strengthen the oversight of governmental and law enforcement agencies in the field of trafficking in human beings ", - "values": [ - "Trafficking" - ] - }, - { - "text": "Take concrete and immediate steps to improve the human rights situation in the country, inter alia, by engaging with international human rights bodies and mechanisms in a sustained way, including by granting access to the country as well as taking on board recommendations of such bodies and mechanisms for further consideration, dialogue and implementation", - "values": [ - "Special procedures", - "Treaty bodies", - "UPR process" - ] - }, - { - "text": "Consider establishing the national human rights institution in accordance with the Paris Principles", - "values": [ - "National Human Rights Institution" - ] - }, - { - "text": "Strengthen the legal framework for the protection and non-discrimination of lesbian, gay, bisexual, transgender and intersex people", - "values": [ - "Sexual Orientation and Gender Identity" - ] - }, - { - "text": "Extend a standing invitation to Special Procedures ", - "values": [ - "Special procedures" - ] - }, - { - "text": "Guarantee all citizens the right to take part in the conduct of public affairs, in particular as regards policy making on land distribution and use", - "values": [ - "CP rights - general", - "Right to land" - ] - }, - { - "text": "Strengthen the National Strategic Plan for the Reduction of Maternal Mortality 2012-2016 and the National Plan for the Prevention of Adolescent Pregnancy ", - "values": [ - "Right to health", - "Women's rights" - ] - }, - { - "text": "Provide protection to the family as the natural and fundamental unit of the society", - "values": [ - "Other" - ] - }, - { - "text": "Establish an independent police complaint mechanism to ensure the prompt, impartial, independent and efficient investigation of cases of alleged illtreatment or excessive use of force by the police ", - "values": [ - "Human rights violations by state agents" - ] - }, - { - "text": "Increase its efforts to safeguard women and children from domestic violence and to protect persons with disabilities", - "values": [ - "Disabilities", - "Rights of the Child", - "Women's rights" - ] - }, - { - "text": "Consider accession to international human rights instruments that it is not yet a party to, including the International Covenant on Civil and Political Rights and the International Convention on the Protection of the Rights of All Migrant Workers and Members of Their Families", - "values": [ - "CP rights - general", - "International instruments", - "Labour", - "Migrants" - ] - }, - { - "text": "Increase effectiveness of the plan of action to improve the judicial system to combat corruption more effectively", - "values": [ - "Corruption" - ] - }, - { - "text": "Continue to strengthen institutional mechanisms to address violence against women and children and to further ongoing efforts in the field of combating human trafficking", - "values": [ - "Rights of the Child", - "Trafficking", - "Women's rights" - ] - }, - { - "text": "Undertake measures to ensure the right to education to Senegalese children who cannot follow the regular curriculum ", - "values": [ - "Right to education", - "Rights of the Child" - ] - }, - { - "text": "Urgently establish a moratorium on the use of the death penalty", - "values": [ - "Death penalty" - ] - }, - { - "text": "Continue to work towards clearing its backlog of periodic reports to the treaty bodies", - "values": [ - "Treaty bodies" - ] - }, - { - "text": "Effectively investigate and prosecute crimes and violations against journalists and human rights defenders, and ensure that those responsible are punished", - "values": [ - "Freedom of the press", - "Human rights defenders" - ] - }, - { - "text": "Continue strengthening its programmes aimed at the achievement of social cohesion and tolerance", - "values": [ - "Other" - ] - }, - { - "text": "Make urgent efforts to ensure humane conditions for detainment in prisons. ", - "values": [ - "Detention" - ] - }, - { - "text": "Continue the reforms of the penitentiary system and improve the conditions at penitentiary institutions.", - "values": [ - "Detention" - ] - }, - { - "text": "Continue the efforts to fight poverty and promote the equal distribution of wealth ", - "values": [ - "Poverty" - ] - }, - { - "text": "Conduct appropriate public awareness campaigns with a view to eliminating prejudices and to promote understanding and tolerance towards immigrants ", - "values": [ - "Human rights education and training", - "Migrants" - ] - }, - { - "text": "Step up efforts to combat violence against women by strictly enforcing relevant laws and improve victim support mechanisms", - "values": [ - "Women's rights" - ] - }, - { - "text": "Continue its effective measures to fight poverty, in particular through the pursuance of its Interim National Development Framework towards the attainment of the ideals under the country's Vision 20-20, and also to meet the Millennium Development Goals targets ", - "values": [ - "Development", - "Poverty" - ] - }, - { - "text": "Continue strengthening the mandate of the Human Rights Defender's office and extend its work to regions not yet covered by the institution as well as fully and without delay implementing the recommendations put forward by the Human Rights Defender", - "values": [ - "National Human Rights Institution" - ] - }, - { - "text": "Continue its efforts to combat corruption, social and economic inequalities ", - "values": [ - "Corruption", - "Development" - ] - }, - { - "text": "Continue to step up efforts to combat the trafficking in human beings, and in particular to establish criminal liability for the production and dissemination of materials advocating the trafficking in children, child prostitution and child pornography", - "values": [ - "Rights of the Child", - "Trafficking" - ] - }, - { - "text": "Give priority to resolving conflicts related to land tenure ", - "values": [ - "Right to land" - ] - }, - { - "text": "Establish a participatory and inclusive mechanism with civil society to follow up on the universal periodic review recommendations", - "values": [ - "Civil society", - "UPR process" - ] - }, - { - "text": "Strengthen the efforts aimed at the full integration of the Roma population and other minorities ", - "values": [ - "Minorities" - ] - }, - { - "text": "Follow-up on the recommendations by CEDAW and HRC with regard to discrimination against women introduce measures to eliminate cultural practices that discriminate against women", - "values": [ - "Treaty bodies", - "Women's rights" - ] - }, - { - "text": "Explore with the Ministries of Education at the state levels the incorporation of more content in school curricula on the longstanding historical contribution of the Roma and Sinti communities to German society and culture", - "values": [ - "Minorities", - "Right to education" - ] - }, - { - "text": "Continue efforts to combat corruption", - "values": [ - "Corruption" - ] - }, - { - "text": "Continue to work towards abolition of the death penalty and consider adopting an immediate de facto moratorium ", - "values": [ - "Death penalty" - ] - }, - { - "text": "Step up efforts to reduce the HIV/AIDS rate in the country", - "values": [ - "HIV - Aids" - ] - }, - { - "text": "Further improve prison conditions, with a special focus on tackling overcrowding", - "values": [ - "Detention" - ] - }, - { - "text": "Incorporate in its national law the crime of torture corresponding to the definition of torture in article 1 of the Convention against Torture", - "values": [ - "International instruments", - "Torture and other CID treatment" - ] - }, - { - "text": "Adjust existing laws governing non-governmental organizations to adapt them to international human rights laws and standards", - "values": [ - "International instruments" - ] - }, - { - "text": "Take concrete measures to implement the Domestic Violence Prevention Act", - "values": [ - "Rights of the Child", - "Women's rights" - ] - }, - { - "text": "Facilitate birth registration and provide easy registration procedures for indigenous children and children of African descent ", - "values": [ - "Indigenous peoples", - "Minorities", - "Rights of the Child", - "Statelessness and the right to nationality" - ] - }, - { - "text": "Abolish article 230 of the Criminal Code that criminalizes homosexuality", - "values": [ - "Sexual Orientation and Gender Identity" - ] - }, - { - "text": "Further its efforts to fight terrorism and protect human rights at the same time, especially the support to the conclusion of a comprehensive international treaty to combat terrorism ", - "values": [ - "Counter-terrorism" - ] - }, - { - "text": "Ratify promptly the Optional Protocol to ICESCR and the Optional Protocol to CRPD", - "values": [ - "Disabilities", - "ESC rights - general", - "International instruments" - ] - }, - { - "text": "Preserve the right to life and do not bring back the use of the death penalty as proposed in the death penalty bill", - "values": [ - "Death penalty" - ] - }, - { - "text": "You cannot have inclusive development without peace, given the terrorism situation we call upon the Nigerian government to continue with all efforts to deal with domestic insecurity in the country", - "values": [ - "Public security" - ] - }, - { - "text": "Identify fields in which improvement can still be made, and compare Panama's experiences with those of other United Nations Members ", - "values": [ - "General" - ] - }, - { - "text": "Strengthen the capacity of the National Human Rights Committee in the area of impartial monitoring, investigation, and reception of allegations of torture or ill-treatment ", - "values": [ - "National Human Rights Institution", - "Torture and other CID treatment" - ] - }, - { - "text": "Provide, in accordance with its obligations under international human rights law instruments, effective protection for the family as the fundamental and natural unit of society", - "values": [ - "International instruments" - ] - }, - { - "text": "Bring national legislation on torture and other ill-treatment in line with international human rights standards and make any such act a criminal offence ", - "values": [ - "International instruments", - "Torture and other CID treatment" - ] - }, - { - "text": "Ensure that national legislation is in line with international human rights standards", - "values": [ - "International instruments" - ] - }, - { - "text": "Step up efforts to prevent violence against children", - "values": [ - "Rights of the Child" - ] - }, - { - "text": "Integrate the refugees into society as a matter of necessity through combatting stereotypes that inflame hatred feelings towards them in the society", - "values": [ - "Asylum-seekers - refugees" - ] - }, - { - "text": "Redouble efforts to stem the development of racism and xenophobia", - "values": [ - "Racial discrimination" - ] - }, - { - "text": "Review all laws and practices that discriminate on the basis of gender and bring them into line with international law and standards and take steps to further improve the protection of women who are subjected to violence, including by amending the Criminal Code to ensure the criminalization of marital rape", - "values": [ - "Women's rights" - ] - }, - { - "text": "Take the gender perspective into consideration in the design of future policies and programmes", - "values": [ - "Women's rights" - ] - }, - { - "text": "Establish mechanisms that will offer the victims of rape appropriate and adequate support and provide them with redress ", - "values": [ - "Women's rights" - ] - }, - { - "text": "Continue efforts to combat human trafficking and rehabilitate its victims", - "values": [ - "Trafficking" - ] - }, - { - "text": "Develop a financing mechanism for the health system that is designed to help the underprivileged ", - "values": [ - "Right to health" - ] - }, - { - "text": "Adopt clear, appropriate measures to improve the rights of children to education", - "values": [ - "Right to education", - "Rights of the Child" - ] - }, - { - "text": "Further improve its human rights situation, including by ensuring civil and political rights such as freedom of expression and political activities", - "values": [ - "CP rights - general", - "Freedom of association and peaceful assembly", - "Freedom of opinion and expression" - ] - }, - { - "text": "Take steps towards a full abolition of the death penalty and to commute existing death sentences to life imprisonment terms", - "values": [ - "Death penalty" - ] - }, - { - "text": "Continue efforts to ensure the submission of national reports to the treaty bodies ", - "values": [ - "Treaty bodies" - ] - }, - { - "text": "Undertake immediate steps to establish an independent police complaints mechanism with a mandate to investigate all allegations of serious human rights violations by law enforcement officials in cases such as sexual violence in custody ", - "values": [ - "Human rights violations by state agents" - ] - }, - { - "text": "Investigate the alleged cases of torture and other human rights abuses committed by police, military and security personnel and put an end to the climate of impunity", - "values": [ - "Human rights violations by state agents", - "Impunity", - "Torture and other CID treatment" - ] - }, - { - "text": "Exert further efforts towards the realization of economic, social and cultural rights, including through strengthening its social protection measures", - "values": [ - "ESC rights - general" - ] - }, - { - "text": "Ensure the equal treatment of women and girls in law and practice", - "values": [ - "Rights of the Child", - "Women's rights" - ] - }, - { - "text": "Establish a mechanism for the protection of human rights defenders", - "values": [ - "Human rights defenders" - ] - }, - { - "text": "Step up and accelerate the process of reform of the judicial and penitentiary systems to ensure access to justice regardless of economic status, gender, social origin or political position", - "values": [ - "Detention", - "Justice" - ] - }, - { - "text": "Consider introducing re-socialization programmes to ensure prisoners' reintegration into the community on release and to reduce the risk of their re-offending. ", - "values": [ - "Detention" - ] - }, - { - "text": "Strengthen human rights and health care education", - "values": [ - "Right to health" - ] - }, - { - "text": "Continue efforts to lay the foundations for stability and development at all levels, particularly with regard to the promotion and protection of human rights", - "values": [ - "General" - ] - }, - { - "text": "Amend the Protection of Life During Pregnancy Act 2013 that the women interests and health are better protected, especially in instances where the pregnancy resulted from rape or incest, or in cases of severe foetal impairment", - "values": [ - "Women's rights" - ] - }, - { - "text": "Take further steps to ensure a better protection of human rights of refugees, asylum seekers, migrants and internally displaced persons", - "values": [ - "Asylum-seekers - refugees", - "Internally displaced persons", - "Migrants" - ] - }, - { - "text": "Ratify the Statute of the International Criminal Court", - "values": [ - "International instruments", - "Justice" - ] - }, - { - "text": "Take further steps toward the improvement of its human rights situation ", - "values": [ - "General" - ] - }, - { - "text": "Continue to strengthen its cooperation with the special procedures of the Human Rights Council by responding positively to the pending visit requests and eventually consider extending a standing invitation to all the special procedures mandate holders", - "values": [ - "Special procedures" - ] - }, - { - "text": "Continue efforts to combat racism, racial discrimination and related forms of intolerance motivated by gender, age, nationality, language, religion, beliefs, opinions, political activity, trade union activity, kinship, health status, disability, sexual orientation or other personal characteristics, paying special attention to the structural elements of discrimination that may affect the effective exercise of the rights to health, education, decent work and participation in decision-making", - "values": [ - "Disabilities", - "Right to education", - "Right to health", - "Sexual Orientation and Gender Identity" - ] - }, - { - "text": "Step up efforts to protect the human rights and improve the lives of children, including orphans and children with disabilities, through, inter alia, reviewing related policies and increasing in the budget allocation for specific programmes for vulnerable groups ", - "values": [ - "Rights of the Child" - ] - }, - { - "text": "Côte d'Ivoire intends to honour its commitment to submit periodic reports to the treaty bodies. For this purpose, it will transmit a formal request for technical assistance to strengthen the capacity of national officials responsible for preparing reports for the treaty bodies.", - "values": [ - "Technical assistance and cooperation", - "Treaty bodies" - ] - }, - { - "text": "Continue to give increased attention to the gender gap between girls and boys in their advancement at all levels of education.", - "values": [ - "Right to education", - "Rights of the Child", - "Women's rights" - ] - }, - { - "text": "Amend the National Security Act of 2010 to abolish the criminal immunity enjoyed by security officers", - "values": [ - "Human rights violations by state agents" - ] - }, - { - "text": "Develop a coherent country-wide anti-corruption strategy and monitor its implementation.", - "values": [ - "Corruption" - ] - }, - { - "text": "Conduct comprehensive public awareness campaigns and enhance the investigation and prosecution of violent crimes perpetrated on grounds of ethnicity, nationality, religion, sexual orientation or gender identity ", - "values": [ - "Freedom of religion and belief", - "Minorities", - "Racial discrimination", - "Sexual Orientation and Gender Identity" - ] - }, - { - "text": "Elaborate a comprehensive strategy to address trafficking, particularly of women and children ", - "values": [ - "Rights of the Child", - "Trafficking", - "Women's rights" - ] - }, - { - "text": "Consider intensifying its efforts in the actual implementation of programmes aimed at the realization of women rights and improving gender equality", - "values": [ - "Women's rights" - ] - }, - { - "text": "Withdraw reservations to ICCPR and CRC", - "values": [ - "CP rights - general", - "International instruments", - "Rights of the Child" - ] - }, - { - "text": "Consolidate and strengthen its national human rights infrastructure ", - "values": [ - "General" - ] - }, - { - "text": "That Lesotho takes steps to continue working on its national nutrition policy", - "values": [ - "Right to food" - ] - }, - { - "text": "Increase efforts in the process of reconciling internal legislation with Convention on the Elimination of All Forms of Discrimination against Women norms through the inclusion of a specific definition of the discrimination against women, consistent with Article 1 of the Convention", - "values": [ - "International instruments", - "Women's rights" - ] - }, - { - "text": "Make further efforts to ensure human rights for women and develop effective mechanisms for the monitoring, investigation and punishment of offenders in cases of violence against women", - "values": [ - "Women's rights" - ] - }, - { - "text": "Become a party to the ICESCR", - "values": [ - "ESC rights - general", - "International instruments" - ] - }, - { - "text": "Remove any legal and other difficulties that restrict the effectiveness and independence of the work of international non-governmental organizations ", - "values": [ - "Civil society" - ] - }, - { - "text": "Protect human rights defenders and journalists against harassment and attacks and to fully ensure freedom of assembly ", - "values": [ - "Freedom of association and peaceful assembly", - "Freedom of the press", - "Human rights defenders" - ] - }, - { - "text": "Integrate and apply the Guiding Principles on Business and Human Rights to all its relevant policies including licensing extractive business", - "values": [ - "Business and human rights" - ] - }, - { - "text": "Repeal sections 76, 77 and 79 of the Offences against the Person Act, which criminalize same-sex male intercourse ", - "values": [ - "Sexual Orientation and Gender Identity" - ] - }, - { - "text": "Make the Ending Child Marriage Unit operational within the Ministry of Gender, Children and Social Protection", - "values": [ - "Rights of the Child" - ] - }, - { - "text": "Consider revisiting the provisions of Law No. 1/1974 on marriage, which, among others, distinguishes inheritance rights between sons and daughters in the same family", - "values": [ - "Women's rights" - ] - }, - { - "text": "Fully resource the Office for Combating Corruption to ensure it is able to investigate and prosecute these crimes", - "values": [ - "Corruption" - ] - }, - { - "text": "Strengthen measures to prevent the disproportionate use of force by the police through the incorporation of representatives of ethnic minorities in the security forces and to punish such acts ", - "values": [ - "Human rights violations by state agents", - "Minorities" - ] - }, - { - "text": "Consider becoming a party to the 1967 Protocol to the United Nations Convention relating to the Status of Refugees, adopt asylum legislation, sign a memorandum of understanding with the United Nations High Commissioner for Refugees - UNHCR -, formalizing the presence of UNHCR in the Libyan Arab Jamahiriya and allowing UNHCR greater access to detained asylumseekers and migrants ", - "values": [ - "Asylum-seekers - refugees", - "International instruments", - "Migrants" - ] - }, - { - "text": "Strengthen the prevention of HIV/AIDS, sexual and reproductive health and sexual diversity ", - "values": [ - "HIV - Aids", - "Right to health", - "Sexual Orientation and Gender Identity" - ] - }, - { - "text": "Promulgation of a penal code that clearly defines criminal offences and the establishment of a moratorium on executions of persons having committed crimes under the age of 18", - "values": [ - "Death penalty", - "Rights of the Child" - ] - }, - { - "text": "Take appropriate measures to implement the recommendations of the Committee on the Rights of the Child, including through education and awareness-raising campaigns", - "values": [ - "Human rights education and training", - "Treaty bodies" - ] - }, - { - "text": "Continue its efforts to protect and promote human rights in compliance with international standards ", - "values": [ - "General", - "International instruments" - ] - }, - { - "text": "Recommended the decriminalization of consensual same-sex activity between adults and the adoption of measures to promote tolerance in this regard.", - "values": [ - "Sexual Orientation and Gender Identity" - ] - }, - { - "text": "Conduct public campaigns to promote cultural diversity and tolerance and establish a governmental monitoring mechanism for such crimes", - "values": [ - "Human rights education and training", - "Minorities" - ] - }, - { - "text": "Establish a moratorium on the use of the death penalty at the federal and state level as a first step towards abolition ", - "values": [ - "Death penalty" - ] - }, - { - "text": "Continue implementing the legislation on the protection of the rights of indigenous peoples and their lands, as well as the anti-discrimination laws, especially with regard to religion and physical conditions such as albinism", - "values": [ - "Freedom of religion and belief", - "Indigenous peoples", - "Minorities", - "Racial discrimination", - "Right to land" - ] - }, - { - "text": "Continue to strengthen its national human rights mechanisms, including through finalizing the process aimed at ensuring the conformity of the national human rights institution with the Paris Principles", - "values": [ - "National Human Rights Institution" - ] - }, - { - "text": "Continue to take steps to fully implement the Law on Protection from Discrimination in relation to discrimination based on sexual orientation and gender identity ", - "values": [ - "Sexual Orientation and Gender Identity" - ] - }, - { - "text": "Include information on the implementation of the treaties in its overseas territories in its national reports to treaty bodies on a regular basis.", - "values": [ - "International instruments", - "Treaty bodies" - ] - }, - { - "text": "Continue efforts to ratify the OP-CAT and CPED, as well as the main international human rights instruments to which the country is not yet a party", - "values": [ - "Detention", - "Enforced disappearances", - "International instruments", - "Torture and other CID treatment" - ] - }, - { - "text": "Continue improving the quality of primary and secondary education", - "values": [ - "Right to education" - ] - }, - { - "text": "Examine and revise the recently adopted Law on Societies and to remove the government approval requirement in the work of NGOs and take steps to ensure that these changes are put into practice in the interest of encouraging broad participation in Jordanian civil society ", - "values": [ - "Civil society" - ] - }, - { - "text": "Continue efforts aiming at ratifying the International Convention for the Protection of All Persons from Enforced Disappearance ", - "values": [ - "Enforced disappearances", - "International instruments" - ] - }, - { - "text": "Release political detainees, cease arbitrary detentions and take other measures to ensure that those arrested and detained are given the right to a fair trial, in keeping with Madagascar's obligations under the International Covenant on Civil and Political Rights", - "values": [ - "Detention", - "International instruments", - "Justice" - ] - }, - { - "text": "Continue its efforts to promote and protect human rights in collaboration with the Human Rights Council and OHCHR, on the basis of the needs identified by Azerbaijan", - "values": [ - "Technical assistance and cooperation" - ] - }, - { - "text": "Ensure the full enjoyment by all children of the rights recognized in the Convention on the Rights of the Child, particularly with regard to access to education and health services", - "values": [ - "International instruments", - "Rights of the Child" - ] - }, - { - "text": "Encourage the establishment of a national human rights institution compliant with the Paris Principles.", - "values": [ - "National Human Rights Institution" - ] - }, - { - "text": "Put an end to discrimination and incitement to hatred vis-a-vis the adherents of the Baha'i faith", - "values": [ - "Freedom of religion and belief", - "Minorities" - ] - }, - { - "text": "Provide access to adequate housing, with a focus on assistance to low-income families ", - "values": [ - "Right to housing" - ] - }, - { - "text": "Establish a national institution to promote and protect human rights ", - "values": [ - "National Human Rights Institution" - ] - }, - { - "text": "Repeal provisions criminalizing consensual same-sex sexual conduct in order to bring the penal code in line with international human rights obligations", - "values": [ - "International instruments", - "Sexual Orientation and Gender Identity" - ] - }, - { - "text": "Provide to Colombian refugees the opportunity to present their request for reparation at the moment of their voluntary repatriation, if it is the case, so that they can benefit from the Victims and Land Restitution Law", - "values": [ - "Asylum-seekers - refugees", - "Justice", - "Right to land" - ] - }, - { - "text": "With support from the UNODC and other relevant international organizations continues to strengthen its capacity to combat human trafficking and provide support for the victims of trafficking ", - "values": [ - "Trafficking" - ] - }, - { - "text": "Strengthen efforts to prevent and combat all forms of discrimination, including by amending relevant legislation and launching awareness-raising campaigns", - "values": [ - "Other" - ] - }, - { - "text": "Adopt and implement efficiently a comprehensive legislation on combating violence against women", - "values": [ - "Women's rights" - ] - }, - { - "text": "Introduce the post of the national ombudsman for the rights of the child with a view to the effective promotion and protection of children's rights", - "values": [ - "National Human Rights Institution", - "Rights of the Child" - ] - }, - { - "text": "Continue strengthening measures to ensure free birth registration of all children at birth, as well as to identify all children who have not been registered or have not obtained an identity document", - "values": [ - "Rights of the Child", - "Statelessness and the right to nationality" - ] - }, - { - "text": "Take immediate steps to change attitudes towards children with albinism and ensure protection of their human rights", - "values": [ - "Human rights education and training", - "Minorities", - "Rights of the Child" - ] - }, - { - "text": "Enact legislation to prohibit FGM. ", - "values": [ - "Rights of the Child", - "Torture and other CID treatment", - "Women's rights" - ] - }, - { - "text": "Take measures to improve the legal and social situation of the illegal residents, in particular by granting them residency, issuing them personal documents, and enabling them access to the public health and education system ", - "values": [ - "Migrants", - "Right to education" - ] - }, - { - "text": "Intensify ongoing sensitization activities, carried out together with members of civil society, towards the reduction, or even the eradication in the future, of female genital mutilation ", - "values": [ - "Civil society", - "Human rights education and training", - "Rights of the Child", - "Torture and other CID treatment", - "Women's rights" - ] - }, - { - "text": "Continue implementing its national youth development programme as one of the means to alleviate poverty in the country", - "values": [ - "Development", - "Poverty" - ] - }, - { - "text": "Ratify the Rome Statute of the International Criminal Court and cooperate with this court", - "values": [ - "International instruments", - "Justice" - ] - }, - { - "text": "Provide sufficient resources for poverty alleviation programmes", - "values": [ - "Poverty" - ] - }, - { - "text": "Fill the vacancies in the Supreme Court (Cour de Cassation), as those justices have the authority to make the legal system more efficient", - "values": [ - "Justice" - ] - }, - { - "text": "Continue its laudable approach in the area of providing development assistance and supporting infrastructure projects for developing and least developed countries through the Kuwaiti fund for economic development ", - "values": [ - "Development" - ] - }, - { - "text": "Strengthen standing efforts aiming at the realization of the right to development especially through sharing experiences and best practices with other developing countries ", - "values": [ - "Development" - ] - }, - { - "text": "Put an end to executions and adopt a moratorium on the death penalty", - "values": [ - "Death penalty" - ] - }, - { - "text": "Intensify its efforts to raise public awareness on the rights of persons with disabilities", - "values": [ - "Disabilities", - "Human rights education and training" - ] - }, - { - "text": "Ensure full implementation of all election monitoring report recommendations of the Organization for Security and Co-operation in Europe Office for Democratic Institutions and Human Rights", - "values": [ - "Elections" - ] - }, - { - "text": "Take firm measures against discrimination in all forms and in particular that against foreign women", - "values": [ - "Women's rights" - ] - }, - { - "text": "Establish a moratorium on the death penalty", - "values": [ - "Death penalty" - ] - }, - { - "text": "Grant independent national and international monitoring organizations full access to all detention facilities ", - "values": [ - "Detention" - ] - }, - { - "text": "Commit to the ratification of the CRPD promptly ", - "values": [ - "Disabilities", - "International instruments" - ] - }, - { - "text": "Step up efforts to address the issue of prison overcrowding", - "values": [ - "Detention" - ] - }, - { - "text": "Take special measures aimed at accelerating gender equality in all areas where women are underrepresented or disadvantaged", - "values": [ - "Women's rights" - ] - }, - { - "text": "Further improve life conditions and the prevention of ill-treatment of detainees in State penitentiaries in compliance with international standards", - "values": [ - "Detention", - "Torture and other CID treatment" - ] - }, - { - "text": "Consider including in future censuses a question on national ethnicity, so as to determine the different ethnic groups living in Slovenia", - "values": [ - "Minorities" - ] - }, - { - "text": "Continue efforts to ensure protection of human rights for inclusive development and to reduce the level of poverty, particularly in rural areas and among the vulnerable strata of the population", - "values": [ - "Development", - "Poverty" - ] - }, - { - "text": "Continue the fight against trafficking in human beings by implementing a comprehensive program to combat these practices and support the victims", - "values": [ - "Trafficking" - ] - }, - { - "text": "Complete the work towards the ratification of the core international human rights treaties, firstly ICCPR and ICESCR within the period of the next review", - "values": [ - "CP rights - general", - "ESC rights - general", - "International instruments", - "UPR process" - ] - }, - { - "text": "Enhance conducive environment for civil societies to work in the promotion and protection of human rights", - "values": [ - "Civil society" - ] - }, - { - "text": "Improve equal access to the legal aid system, in particular for poor and marginalized groups", - "values": [ - "Justice", - "Poverty" - ] - }, - { - "text": "Put into effect a more comprehensive approach to protect women and girls from any form of violence, especially by increasing measures aimed at preventing abuses and assisting victims", - "values": [ - "Rights of the Child", - "Women's rights" - ] - }, - { - "text": "Strengthen the fight against discrimination based on sexual orientation or gender identity", - "values": [ - "Sexual Orientation and Gender Identity" - ] - }, - { - "text": "Continue to develop strategies to promote public awareness of the issue of trafficking in persons", - "values": [ - "Trafficking" - ] - }, - { - "text": "Establish practical measures to resolve the issue of Roma children being placed into special schools for disabled children, without clearly defined selection criteria or effective independent complaint mechanisms for parents.", - "values": [ - "Minorities", - "Rights of the Child" - ] - }, - { - "text": "Abolish the death penalty, despite obstacles", - "values": [ - "Death penalty" - ] - }, - { - "text": "Enhance job opportunities at home for the population susceptible to human trafficking, especially those from disadvantaged background who seek employment overseas", - "values": [ - "Trafficking" - ] - }, - { - "text": "Apply measures aimed at increasing the number of health professionals and ensure that they receive high-quality training ", - "values": [ - "Right to health" - ] - }, - { - "text": "Reform the legal system so as to entrench accountability of the military and the security apparatus, to end impunity for human rights violations committed by the members of these institutions and provide compensation to the victims", - "values": [ - "Human rights violations by state agents", - "Impunity", - "Justice" - ] - }, - { - "text": "Sign and ratify the first Optional Protocol to the International Covenant on Civil and Political Rights ICCPR, the International Covenant on Social, Economic and Cultural Rights ICESCR and the Convention on the Elimination of All Forms of Discrimination against Women CEDAW", - "values": [ - "CP rights - general", - "ESC rights - general", - "International instruments", - "Women's rights" - ] - }, - { - "text": "Continue the progress achieved and continue expanding the realization of the right to education for all sectors of society and the dissemination of the human rights culture through educational curricula.", - "values": [ - "Human rights education and training", - "Right to education" - ] - }, - { - "text": "Improve the reception conditions, health care, access to water and sanitation, adequate housing and food, for refugees, Make sure that refugees are not repatriated in case that their lives are in danger in their country of origin, and promote, through public policies, their total integration into the society out of the refugees camps", - "values": [ - "Asylum-seekers - refugees", - "Right to water and sanitation" - ] - }, - { - "text": "Provide adequate assistance and protection to women who were victims of violence", - "values": [ - "Women's rights" - ] - }, - { - "text": "Become a party to and implement CRPD ", - "values": [ - "Disabilities", - "International instruments" - ] - }, - { - "text": "Bring its legislation into conformity with its commitment to equality and non-discrimination, by prohibiting discrimination based on sexual orientation or gender identity ", - "values": [ - "Sexual Orientation and Gender Identity" - ] - }, - { - "text": "Ratify the Optional Protocol to the Convention against Torture, signed in 2006", - "values": [ - "International instruments", - "Torture and other CID treatment", - "Treaty bodies" - ] - }, - { - "text": "Continue the current practice of granting clemency and commuting death sentences, and establish a moratorium on the death penalty with a view to its final abolition", - "values": [ - "Death penalty" - ] - }, - { - "text": "Prosecute, directly or through the international justice system, all the perpetrators of serious violations of human rights", - "values": [ - "Justice" - ] - }, - { - "text": "Ensure that no disadvantage shall result for citizens from the exercise of their right to identify themselves with any ethnic group ", - "values": [ - "Minorities" - ] - }, - { - "text": "Send a clear signal that no human rights violations committed by members of the army will be tolerated, and take specific measures in order to bring to justice those responsible, without exceptions and regardless of their rank ", - "values": [ - "Human rights violations by state agents" - ] - }, - { - "text": "Take immediate action to align all domestic laws and pending legislation with the Convention on the Elimination of All Forms of Discrimination against Women, adopt without further delay the Bill on Sexual Offences and Domestic violence and, take all necessary measures to abolish traditional practices that are harmful to women and girls ", - "values": [ - "International instruments", - "Rights of the Child", - "Women's rights" - ] - }, - { - "text": "Ratify the ILO Indigenous and Tribal Peoples Convention, 1989 (No. 169) and ILO Convention No. 189 ", - "values": [ - "Indigenous peoples", - "International instruments", - "Labour" - ] - }, - { - "text": "Report regularly to relevant mechanisms of the HRC on the remittances sent by those migrant workers to their families back home in various countries of the world, in order to estimate the contribution of such remittances to the promotion of economic and social rights in developing education, housing and health in these countries ", - "values": [ - "Labour", - "Migrants", - "UPR process" - ] - }, - { - "text": "Include racist motivation of crimes as an aggravating circumstance in the Criminal Code and make more effective the investigation and prosecution of hate speech and violence, including against persons based on their sexual orientation or gender identity", - "values": [ - "Racial discrimination", - "Sexual Orientation and Gender Identity" - ] - }, - { - "text": "Strengthen the application of the rights enshrined in the International Covenant on Economic, Social and Cultural Rights, with special attention to children, women, persons with disabilities, the elderly and families with limited resources ", - "values": [ - "ESC rights - general", - "International instruments", - "Rights of the Child", - "Women's rights" - ] - }, - { - "text": "Enhance and strengthen its measures, policies and institutional coordination in the implementation of the law on trafficking in persons, especially that of women and children, in order to prevent and punish this international crime", - "values": [ - "Rights of the Child", - "Trafficking", - "Women's rights" - ] - }, - { - "text": "Allocate additional financial and human resources to policies and programmes aimed at combating violence against women and girls", - "values": [ - "Rights of the Child", - "Women's rights" - ] - }, - { - "text": "Strengthen efforts to raise awareness about violence against women and children", - "values": [ - "Human rights education and training", - "Rights of the Child", - "Women's rights" - ] - }, - { - "text": "Continue legislative efforts to combat public incitement to racial discrimination and particularly against persons speaking other languages", - "values": [ - "Minorities", - "Racial discrimination" - ] - }, - { - "text": "Take steps to ratify the core human rights conventions, in particular the International Covenant on Civil and Political Rights ", - "values": [ - "CP rights - general", - "International instruments" - ] - }, - { - "text": "Recommended implementing the commitments and obligations of the ICESCR.", - "values": [ - "ESC rights - general", - "International instruments" - ] - }, - { - "text": "Ratify the International Convention on the Protection of the Rights of All Migrant Workers and the Members of Their Families, the 1951 Convention relating to the Status of Refugees and the 1967 Protocol thereto, among other conventions that it has not yet ratified", - "values": [ - "Asylum-seekers - refugees", - "International instruments", - "Labour", - "Migrants" - ] - }, - { - "text": "Criminalize trafficking in children and sexual exploitation of children, in line with international standards.", - "values": [ - "Rights of the Child", - "Trafficking" - ] - }, - { - "text": "Widening the social welfare domain and make it available to its beneficiaries", - "values": [ - "ESC rights - general" - ] - }, - { - "text": "Prepare an appropriate normative framework for mental health institutions and social care facilities, ensuring that it prohibits the nonconsensual use of coercive practices such as psychiatric medication or electroconvulsive therapy", - "values": [ - "Disabilities", - "Right to health" - ] - }, - { - "text": "Prohibit poligamy", - "values": [ - "Women's rights" - ] - }, - { - "text": "Seek development assistance from development partners and United Nations specialized agencies in order to find solutions to identified challenges hampering the enjoyment of human rights and the achievement of the Millennium Development Goals", - "values": [ - "Development", - "Technical assistance and cooperation" - ] - }, - { - "text": "Continue to implement the National Strategy for the Integration of Roma Communities and ensure that it is appropriately and responsibly funded ", - "values": [ - "Minorities" - ] - }, - { - "text": "Considers conducting a broader public education and awareness campaign with the aim of overcoming the negative preconceptions against foreign nationals and immigrants among the Swiss population", - "values": [ - "Asylum-seekers - refugees", - "Human rights education and training", - "Migrants" - ] - }, - { - "text": "Enhance capacity-building in its pro-poor and results-based development planning policy and programmes", - "values": [ - "Development", - "Poverty" - ] - }, - { - "text": "Take all necessary measures to promote access to clean drinking water for all", - "values": [ - "Right to water and sanitation" - ] - }, - { - "text": "Continue paying special attention to the situation of women migrant workers", - "values": [ - "Labour", - "Migrants", - "Women's rights" - ] - }, - { - "text": "Consider introducing a new bill to the Parliament, taking into full consideration of the suggestions of the Select Committee, and take further actions towards the ratification of Convention against Torture and Other Cruel, Inhuman or Degrading Treatment or Punishment ", - "values": [ - "International instruments", - "Torture and other CID treatment" - ] - }, - { - "text": "Ensure that journalists, opinion makers, members of the opposition and human rights defenders can express their criticisms and opinions freely and peacefully, and put an end to acts of harassment against opponents of the coup d'etat and against judges, in view of the separation of powers", - "values": [ - "Freedom of association and peaceful assembly", - "Freedom of opinion and expression", - "Freedom of the press", - "Human rights defenders", - "Justice" - ] - }, - { - "text": "Establish a body to coordinate government efforts to combat trafficking in persons and the worst forms of child labour", - "values": [ - "Labour", - "Rights of the Child", - "Trafficking" - ] - }, - { - "text": "Undertake further steps to eradicate child prostitution and child labour", - "values": [ - "Labour", - "Rights of the Child" - ] - }, - { - "text": "Intensify actions and adopt broad measures to combat violence against women, children, young people and lesbian, gay, bisexual and transgender persons", - "values": [ - "Rights of the Child", - "Sexual Orientation and Gender Identity", - "Women's rights" - ] - }, - { - "text": "Continue its policy aimed at combating illiteracy among girls and women ", - "values": [ - "Right to education", - "Rights of the Child", - "Women's rights" - ] - }, - { - "text": "Make the Internet widely available and accessible to the general public, given the recent technological arrangements with country's partners, in recognition of the Internet as a major driving force in accelerating development in its various forms and as an important tool for exercising human rights, particular with regards to the right to freedom of expression as well as freedom of information ", - "values": [ - "Freedom of opinion and expression" - ] - }, - { - "text": "Continue and even accelerate its law review process and ensure that all gender and other discriminatory provisions in the legislation are repealed ", - "values": [ - "Other" - ] - }, - { - "text": "Re-establish its police unit specialized to combat human trafficking and sexual exploitation", - "values": [ - "Trafficking" - ] - }, - { - "text": "Better disseminate good practices, namely to disseminate the broad implementation of human rights public policies based on the collaboration between the State and civil society", - "values": [ - "Civil society" - ] - }, - { - "text": "Implement the recommendation of CERD to realize the economic, social and cultural rights of aboriginal people ", - "values": [ - "ESC rights - general", - "Indigenous peoples", - "International instruments" - ] - }, - { - "text": "Amend the Penal Code to ensure that lesbian, gay, bisexual, transgender and intersex persons are fully protected against discrimination, hate speech and hate crimes based on sexual orientation and gender identity", - "values": [ - "Sexual Orientation and Gender Identity" - ] - }, - { - "text": "Continue the implementation of immunization and health information programs", - "values": [ - "Right to health" - ] - }, - { - "text": "Ratify ICCPR-OP 2", - "values": [ - "Death penalty", - "International instruments" - ] - }, - { - "text": "Take the necessary legal or administrative measures to ensure that migratory status does not depend on conjugal relations in cases in which gender violence is reported ", - "values": [ - "Migrants", - "Women's rights" - ] - }, - { - "text": "Ensure that the rights of children are protected by codifying the provisions of the Convention on the Rights of the Child in the national legislation and ratifying the Optional Protocol to the Convention on the Rights of the Child on the involvement of children in armed conflict and the Optional Protocol to the Convention on the Rights of the Child on the sale of children, child prostitution and child pornography", - "values": [ - "International humanitarian law", - "International instruments", - "Trafficking" - ] - }, - { - "text": "Implement a specific strategy of birth registration for indigenous communities based on the respect of their culture", - "values": [ - "Indigenous peoples", - "Rights of the Child", - "Statelessness and the right to nationality" - ] - }, - { - "text": "Amend internal legislation so as to prohibit domestic violence and sexual harassment against women and children and ensure that women have equality before the law", - "values": [ - "Rights of the Child", - "Women's rights" - ] - }, - { - "text": "Consider eliminating from the national legislation all provisions restricting freedom of thought, conscience and religion", - "values": [ - "Freedom of religion and belief" - ] - }, - { - "text": "Improve training of security forces with regard to combating sexual violence against women and girls and ensure accountability of perpetrators ", - "values": [ - "Rights of the Child", - "Women's rights" - ] - }, - { - "text": "Continue to improve the quality of education in rural and mountainous areas, and consider increasing the subsidy allocated to education in those areas ", - "values": [ - "Right to education" - ] - }, - { - "text": "Continue its efforts to further strengthen the capacity of social service providers and civil servants working on cases involving children, including through continued human rights education and training ", - "values": [ - "Human rights education and training", - "Rights of the Child" - ] - }, - { - "text": "Investigate thoroughly and sanction accordingly violence against LGBTs, including gay rights activists ", - "values": [ - "Sexual Orientation and Gender Identity" - ] - }, - { - "text": "Continue to develop measures to improve the situation in prisons and the training of prison officials", - "values": [ - "Detention", - "Human rights education and training" - ] - }, - { - "text": "Take all necessary steps to work towards diminishing threats and violence against human rights defenders, especially women and journalists, and to implement an effective mechanism to protect them from these threats", - "values": [ - "Freedom of the press", - "Human rights defenders", - "Women's rights" - ] - }, - { - "text": "Accede to and fully align its national legislation with the Rome Statute of the International Criminal Court and accede to the Agreement on the Privileges and Immunities of the Court", - "values": [ - "International instruments", - "Justice" - ] - }, - { - "text": "Take steps to investigate all allegations of enforced disappearance and to prevent and prosecute cases of torture and illegal detention", - "values": [ - "Detention", - "Enforced disappearances", - "Torture and other CID treatment" - ] - }, - { - "text": "Consider relinquishing the use of electric taser weapons by the police ", - "values": [ - "Human rights violations by state agents" - ] - }, - { - "text": "Develop and implement a comprehensive national action plan to prevent and eliminate child, early and forced marriages", - "values": [ - "Rights of the Child", - "Women's rights" - ] - }, - { - "text": "Continue implementing the necessary economic measures to eradicate poverty, allowing all the Nepalese population a life with dignity ", - "values": [ - "Poverty" - ] - }, - { - "text": "Redouble efforts on ensuring gender equality and take measures to prevent gender discrimination", - "values": [ - "Women's rights" - ] - }, - { - "text": "Allocate adequate resources to the National Human Rights Commission", - "values": [ - "National Human Rights Institution" - ] - }, - { - "text": "Take actions aimed at raising the level of the Ombudsman's Office to that of a National Human Rights Institution in line with the Paris Principles, in order to guarantee its autonomy when discharging its functions", - "values": [ - "National Human Rights Institution" - ] - }, - { - "text": "Carefully consider whether the right balance is struck when the main street of Vilnius is made available for annual marches by neo-Nazis on Independence Day, whilst vulnerable groups like the LGBT society are refused to use the same venue, and are referred to less attractive locations", - "values": [ - "Freedom of association and peaceful assembly", - "Sexual Orientation and Gender Identity" - ] - }, - { - "text": "Do everything to eradicate the phenomenon of illegal trafficking of migrants, trafficking of human beings and especially the phenomenon of child trafficking and prostitution ", - "values": [ - "Migrants", - "Rights of the Child", - "Trafficking" - ] - }, - { - "text": "Ratify the United Nations Educational, Scientific and Cultural Organization (UNESCO) Convention against Discrimination in Education", - "values": [ - "International instruments", - "Right to education" - ] - }, - { - "text": "Encourage enhanced cooperation with human rights bodies and all relevant stakeholders in the pursuit of a society oriented towards the attainment of internationally recognized human rights goals.", - "values": [ - "General" - ] - }, - { - "text": "Review current policies and develop, together with the private sector, a code of practice on HIV in the workplace, taking into account the international standards of the World Health Organization and the conventions and recommendations adopted by the International Labour Organization", - "values": [ - "HIV - Aids" - ] - }, - { - "text": "Intensify its fight against trafficking, including by addressing the root causes of the problem such as gender-based poverty ", - "values": [ - "Poverty", - "Trafficking", - "Women's rights" - ] - }, - { - "text": "Ratify the Rome Statute and ensure that it is fully implemented in national legislation ", - "values": [ - "International instruments", - "Justice" - ] - }, - { - "text": "Take steps aimed at reducing overcrowding in detentions centres and to improve detention conditions", - "values": [ - "Detention" - ] - }, - { - "text": "Ensure detention conditions for irregular migrants are in conformity with EU human rights standards ", - "values": [ - "Detention" - ] - }, - { - "text": "Take further steps to combat human trafficking", - "values": [ - "Trafficking" - ] - }, - { - "text": "Continue in its efforts to integrate human rights within school curricula ", - "values": [ - "Human rights education and training" - ] - }, - { - "text": "Further professionalize the armed forces, including by regular and increased payment of wages. ", - "values": [ - "Other" - ] - }, - { - "text": "Make efforts to address victims of human trafficking ", - "values": [ - "Trafficking" - ] - }, - { - "text": "Strengthen human rights education programmes at the national and local levels aimed at eradicating racism and xenophobia ", - "values": [ - "Human rights education and training", - "Racial discrimination" - ] - }, - { - "text": "To promote and protect mass media pluralism by including in relevant legislation the principle of incompatibility of holding elected or government office with ownership and control of the mass media", - "values": [ - "Freedom of the press" - ] - }, - { - "text": "Consider the ratification of the International Convention for the Protection of All Persons from Enforced Disappearance", - "values": [ - "Enforced disappearances", - "International instruments" - ] - }, - { - "text": "Step up the fight against racism, xenophobia and hate speech and adopt measures to promote poverty reduction, social inclusion and social assistance", - "values": [ - "Poverty", - "Racial discrimination" - ] - }, - { - "text": "Accede to the International Convention on the Protection of the Rights of All Migrants Workers and Members of Their Families (ICRMW)", - "values": [ - "International instruments", - "Labour", - "Migrants" - ] - }, - { - "text": "Continue to promote sustainable development of the health sector, prioritizing the partnership with the national community in delivering health services to all citizens ", - "values": [ - "Right to health" - ] - }, - { - "text": "Continue to ensure universal access to quality education for all and to maintain if not improve its healthcare system to the continued benefit of its people ", - "values": [ - "Right to education", - "Right to health" - ] - }, - { - "text": "Consider acceding to the International Convention on the Protection of the Rights of All Migrant Workers and their Families ", - "values": [ - "International instruments", - "Labour", - "Migrants" - ] - }, - { - "text": "Improve its cooperation with the United Nations treaty bodies by making it a priority to submit its future reports on time ", - "values": [ - "Treaty bodies" - ] - }, - { - "text": "Redouble its efforts to eliminate child labour, and protect children who are vulnerable, especially children living and working in the streets ", - "values": [ - "Labour", - "Rights of the Child" - ] - }, - { - "text": "Reviewing the laws on immigration in Britain in order to comply with the Convention on the Rights of the Child", - "values": [ - "International instruments", - "Rights of the Child" - ] - }, - { - "text": "Continue to implement and strengthen its Poverty Alleviation Strategy and other programmes for poverty reduction, in order to build upon progress achieved thus far, and to bridge any existing regional and gender disparities", - "values": [ - "Poverty" - ] - }, - { - "text": "Continue to strengthen national human rights instruments and mechanisms", - "values": [ - "General" - ] - }, - { - "text": "Take urgent and robust action to implement the law of 2006 and recent national strategies against sexual violence by investing more resources in prevention and training, law enforcement and assistance to the victims of sexual violence. ", - "values": [ - "Rights of the Child", - "Women's rights" - ] - }, - { - "text": "Take effective legislative measures to achieve gender parity in accordance with the Convention on the Elimination of All Forms of Discrimination against Women.", - "values": [ - "International instruments", - "Women's rights" - ] - }, - { - "text": "Extend a standing invitation to the United Nations Special Rapporteurs and normalize its relations and cooperation with United Nations Human Rights mechanisms", - "values": [ - "Special procedures", - "Treaty bodies" - ] - }, - { - "text": "Continue efforts in the fight against discrimination in all areas, paying special attention to vulnerable groups", - "values": [ - "Other" - ] - }, - { - "text": "Take measures to guarantee and protect freedom of expression in conformity with international standards", - "values": [ - "Freedom of opinion and expression" - ] - }, - { - "text": "Protect the rights to freedom of expression and assembly and ensure all abuses allegedly committed by police are transparently investigated ", - "values": [ - "Freedom of association and peaceful assembly", - "Freedom of opinion and expression", - "Human rights violations by state agents" - ] - }, - { - "text": "Consider the adoption of a de jure moratorium on executions, as a first step towards the abolition of the death penalty ", - "values": [ - "Death penalty" - ] - }, - { - "text": "In the framework of reinforcing its pioneering policies to promote women's rights, continue its efforts aimed at prohibiting early marriages of girls, taking into account that women represent half the population.", - "values": [ - "Rights of the Child", - "Women's rights" - ] - }, - { - "text": "Seek the provision of the requested technical capacity-building assistance to overcome identified challenges", - "values": [ - "Technical assistance and cooperation" - ] - }, - { - "text": "Take the necessary measures to prevent high numbers of disappearances and extrajudicial killings related to police actions, in particular with regard to children", - "values": [ - "Extrajudicial executions", - "Human rights violations by state agents", - "Rights of the Child", - "Torture and other CID treatment" - ] - }, - { - "text": "Continue to intensify development aid programmes with the objective of reaching 0.7 per cent of GDP as established by the United Nations", - "values": [ - "Development" - ] - }, - { - "text": "Ratify the Conventions on refugees and stateless persons", - "values": [ - "Asylum-seekers - refugees", - "International instruments", - "Statelessness and the right to nationality" - ] - }, - { - "text": "Combat discrimination against children from minority groups, and children with disabilities ", - "values": [ - "Disabilities", - "Indigenous peoples", - "Minorities", - "Racial discrimination", - "Rights of the Child" - ] - }, - { - "text": "We are committed to providing formerly incarcerated people with fair opportunities to rejoin their communities and become productive, law-abiding citizens. To this end, the Attorney General has called upon elected officials across the country to enact reforms to restore the voting rights of all who have served their terms in prison or jail, completed their parole or probation, and paid their fines.", - "values": [ - "Detention", - "Justice" - ] - }, - { - "text": "Recognize all existing religious minorities in the territory of the Islamic Republic of Iran and respect the human rights of their members", - "values": [ - "Freedom of religion and belief", - "Minorities" - ] - }, - { - "text": "Further strengthen the Legal Aid Department of the Ministry of Justice and establish relevant mechanisms for coordination of its activities with other entities working in the area of providing legal assistance", - "values": [ - "Justice" - ] - }, - { - "text": "Continue to strengthen the enabling environment for the protection and promotion of human rights ", - "values": [ - "General" - ] - }, - { - "text": "Ratify and implement the Convention against Torture and Other Cruel, Inhuman or Degrading Treatment or Punishment, as well as its Optional Protocol", - "values": [ - "Detention", - "International instruments", - "Torture and other CID treatment" - ] - }, - { - "text": "Consider ratifying the International Covenant on Civil and Political Rights and its Optional Protocols", - "values": [ - "CP rights - general", - "Death penalty", - "International instruments" - ] - }, - { - "text": "Consider ratifying the ICCPR and the ICESCR", - "values": [ - "CP rights - general", - "ESC rights - general", - "International instruments" - ] - }, - { - "text": "Enhance programs and initiatives to broaden health care coverage of mothers and children", - "values": [ - "Right to health", - "Rights of the Child", - "Women's rights" - ] - }, - { - "text": "Examine recent restrictive legislation on NGOs with a view to prevent that legitimate demonstrations and protests by civil society can be taken to Court or criminalized under the penal definition of "terrorism" or "sabotage" ", - "values": [ - "Civil society", - "Counter-terrorism", - "Freedom of association and peaceful assembly" - ] - }, - { - "text": "Strengthen efforts aimed at combating and punishing trafficking in persons, particularly children and women, for labour and sexual exploitation", - "values": [ - "Labour", - "Rights of the Child", - "Trafficking", - "Women's rights" - ] - }, - { - "text": "Reconsider its decision to continue imposing criminal sanctions against irregular migration ", - "values": [ - "Migrants" - ] - }, - { - "text": "Strengthen the criminal justice system to ensure easy and fair accessibility to all citizens ", - "values": [ - "Justice" - ] - }, - { - "text": "Sign and ratify the International Covenant on Economic, Social and Cultural Rights and its Optional Protocol ", - "values": [ - "ESC rights - general", - "International instruments" - ] - }, - { - "text": "While recognizing the considerable progress made by Tunisia in the field of women's rights and gender equality, recommends the consideration of the withdrawal of reservations to CEDAW.", - "values": [ - "International instruments", - "Statelessness and the right to nationality", - "Women's rights" - ] - }, - { - "text": "Make the law on NGOs more flexible, in particular by abolishing the annual registration requirement ", - "values": [ - "Civil society" - ] - }, - { - "text": "In line with the recommendations of the CEDAW and CRC Committees, accelerate efforts in promulgating national action plans for the advancement of women and the elimination of all forms of discrimination against women, including violence against women, and finalize and adopt a national action plan on violence and abuse against children", - "values": [ - "Rights of the Child", - "Treaty bodies", - "Women's rights" - ] - }, - { - "text": "Take additional measures to promote a better representation of women in politics and economy", - "values": [ - "Women's rights" - ] - }, - { - "text": "Continue to improve its education system and ensure access to quality education for all", - "values": [ - "Right to education" - ] - }, - { - "text": "Adopt measures to guarantee the right to life, safety of human rights defenders and journalists, including for those defending indigenous communities from land grabbing", - "values": [ - "Freedom of the press", - "Human rights defenders", - "Indigenous peoples", - "Right to land" - ] - }, - { - "text": "Continue to make progress in the implementation of the National Plan to Generate Decent Work, with a view to achieving the employment goals by 2015", - "values": [ - "Labour" - ] - }, - { - "text": "Ratify the International Covenant on Civil and Political Rights and the Optional Protocol thereto, the International Convention on the Elimination of All Forms of Racial Discrimination, the Optional Protocol to the International Covenant on Economic, Social and Cultural Rights, the Convention against Torture and Other Cruel, Inhuman or Degrading Treatment or Punishment and the Optional Protocol thereto, and the two Optional Protocols to the Convention on the Rights of the Child - sign and ratify the International Convention for the Protection of All Persons from Enforced Disappearance, the Convention on the Rights of Persons with Disabilities and the Optional Protocol thereto", - "values": [ - "International instruments" - ] - }, - { - "text": "Consider developing a comprehensive plan for the training of the judiciary, as well as a structured remuneration package that addresses conditions of service. ", - "values": [ - "Human rights education and training", - "Justice" - ] - }, - { - "text": "Ensure that nobody is penalized for exercising their rights to peaceful assembly and freedom of expression, investigate all allegations of acts of intimidation, threats and attacks and ensure that the perpetrators are brought to justice", - "values": [ - "Freedom of association and peaceful assembly", - "Freedom of opinion and expression" - ] - }, - { - "text": "Succeed with greater pace in land reform in the cast away areas by pursuing public policies targeted at improving the life of African descendants and minorities.", - "values": [ - "Minorities", - "Right to land" - ] - }, - { - "text": "Ratify core international human rights treaties, namely the International Covenant on Civil and Political Rights and the International Covenant on Economic, Social and Cultural Rights and their Optional Protocols, as well as the International Convention for the Protection of All Persons from Enforced Disappearance", - "values": [ - "CP rights - general", - "Death penalty", - "ESC rights - general", - "Enforced disappearances", - "International instruments" - ] - }, - { - "text": "Effectively disseminate and implement the United Nations declaration on human rights defenders, including through removing onerous registration and reporting requirements and procedures under which local non-governmental organizations must seek approval from and regularly report to the Interior Ministry, as well as provide that ministry with advance notification of any funding from abroad", - "values": [ - "Civil society", - "Human rights defenders", - "International instruments" - ] - }, - { - "text": "Continue efforts to abolish the death penalty and ratify the Second Optional Protocol to the International Covenant on Civil and Political Rights, aiming at the abolition of the death penalty", - "values": [ - "Death penalty", - "International instruments" - ] - }, - { - "text": "Take measures to avoid human rights abuses by the armed forces and national police personnel during conflicts, including by complying with international norms on the use of lethal force, ensuring that enforcement personnel receive relevant training, and by investigating acts of violence in a timely manner", - "values": [ - "Human rights violations by state agents" - ] - }, - { - "text": "Ratify, as a matter of priority, the International Covenant on Civil and Political Rights and the International Covenant on Economic, Social and Cultural Rights", - "values": [ - "CP rights - general", - "ESC rights - general", - "International instruments" - ] - }, - { - "text": "Undertake more effective measures to ensure the accessibility of crucial public services, such as education and healthcare, to the general population, particularly those living in rural areas ", - "values": [ - "Right to education", - "Right to health" - ] - }, - { - "text": "Appoint a prison ombudsperson to deploy to local prisons to respond to prisoners' complaints", - "values": [ - "Detention" - ] - }, - { - "text": "Incorporate into the new plans the need for a unified register of cases of violence against women, and to increase efforts to combat that scourge and impunity for those who commit such acts, and in particular to consider criminalizing the crime of femicide", - "values": [ - "Impunity", - "Women's rights" - ] - }, - { - "text": "Continue efforts aimed at the protection of children from violence ", - "values": [ - "Rights of the Child" - ] - }, - { - "text": "Conduct independent, impartial and transparent investigations into all human rights allegations, such as those raised by the Human Rights Committee and Special Rapporteur mandate holders, with a view towards ensuring against impunity ", - "values": [ - "Impunity", - "Special procedures", - "Treaty bodies" - ] - }, - { - "text": "Consider ratifying CRPD and the Optional Protocol thereto which would result in a higher level of cooperation with international human rights mechanisms, ensuring better safeguards for the rights of people with disabilities", - "values": [ - "Disabilities", - "International instruments" - ] - }, - { - "text": "Continue to pursue social policies in keeping with family values and not be intimidated by suggestions on social norms that are controversial, non-universal and specific to certain societies ", - "values": [ - "Other" - ] - }, - { - "text": "Continue to boost its well-established education policies which guarantee a quality education system for all", - "values": [ - "Right to education" - ] - }, - { - "text": "Consider, with the support of the international community, the establishment of a national human rights institution \n", - "values": [ - "National Human Rights Institution", - "Technical assistance and cooperation" - ] - }, - { - "text": "Intensify efforts to combat all forms of violence against women and girls", - "values": [ - "Rights of the Child", - "Women's rights" - ] - }, - { - "text": "Adopt necessary measures to combat and eliminate all forms of discrimination and violence against women and girls, and, in this regard, review the work of the Department of Gender Affairs and proceed with relevant reforms ", - "values": [ - "Rights of the Child", - "Women's rights" - ] - }, - { - "text": "Address the socioeconomic issues facing Roma, including through effective implementation and adequate resourcing of the Action Plan for the Support of the Roma People for 2011-2015, as recommended by CERD", - "values": [ - "Minorities", - "Treaty bodies" - ] - }, - { - "text": "Put into effect the request for a visit by the Special Rapporteur on the Human Rights of Migrants ", - "values": [ - "Migrants", - "Special procedures" - ] - }, - { - "text": "Remove the death penalty from its criminal statutes and ratify ICCPR-OP-2 ", - "values": [ - "Death penalty", - "International instruments" - ] - }, - { - "text": "Enable the Office of the Human Rights Commissioner to receive and deal with complaints of victims of discrimination", - "values": [ - "Technical assistance and cooperation" - ] - }, - { - "text": "Effectively cooperate with the Special Rapporteur on the promotion and protection of the right to freedom of opinion and expression", - "values": [ - "Freedom of opinion and expression", - "Special procedures" - ] - }, - { - "text": "Ratify the Optional Protocol to the ICCPR, aiming at abolishing the death penalty and proceed with abolishing the death penalty for all crimes ", - "values": [ - "Death penalty", - "International instruments" - ] - }, - { - "text": "Establish in law a minimum age for marital consent to put an end to early marriages of young girls ", - "values": [ - "Rights of the Child", - "Women's rights" - ] - }, - { - "text": "Cooperate with the Special Rapporteur, in particular to allow him immediate and unrestricted access to the country, camps of ordinary prisoners and political prisoners, and implement the recommendations of the COI", - "values": [ - "Detention", - "Freedom of opinion and expression", - "Special procedures" - ] - }, - { - "text": "Implement effectively its legislation and policies against hate speech and hate crimes with particular focus on the human rights protection of Roma, Jews, lesbian, gay, bisexual, transgender and intersex persons and other vulnerable groups and other vulnerable groups", - "values": [ - "Freedom of religion and belief", - "Minorities", - "Racial discrimination", - "Sexual Orientation and Gender Identity" - ] - }, - { - "text": "Ratify the International Convention on the Protection of the Rights of All Migrant Workers and Members of their Families (ICRMW).", - "values": [ - "International instruments", - "Labour", - "Migrants" - ] - }, - { - "text": "Speed up the finalization and implementation of the National Gender Policy", - "values": [ - "Women's rights" - ] - }, - { - "text": "Establish urgently procedures-mechanisms at the central and local levels to ensure the health and safety of all children in institutions, including a child ombudsman at the national or regional level", - "values": [ - "National Human Rights Institution", - "Rights of the Child" - ] - }, - { - "text": "Further increase its efforts to combat human trafficking ", - "values": [ - "Trafficking" - ] - }, - { - "text": "Continue to seek ways to overcome the challenges and constraints identified regarding vulnerable groups, especially the increase of women representation in elective bodies ", - "values": [ - "Women's rights" - ] - }, - { - "text": "Promote access to basic and secondary education and health care for all children and adolescents, without having these services depend on the possession of a valid birth certificate ", - "values": [ - "Rights of the Child" - ] - }, - { - "text": "Take measures towards adopting specific legislation prohibiting domestic violence and spousal rape", - "values": [ - "Rights of the Child", - "Women's rights" - ] - }, - { - "text": "Further promote prisoners' well-being and communication, particularly of those non-Spanish speaking, to equally gain access to relevant rights such as medical treatment and occupational courses ", - "values": [ - "Detention" - ] - }, - { - "text": "Establish a coordinated general strategy on gender issues in all public institutions", - "values": [ - "Women's rights" - ] - }, - { - "text": "Sign and ratify the Optional Protocol to the Convention against Torture ", - "values": [ - "Detention", - "International instruments", - "Torture and other CID treatment" - ] - }, - { - "text": "In line with the recommendation of the Committee on the Elimination of Racial Discrimination, continue strengthening its efforts to limit manifestations of racism and xenophobia ", - "values": [ - "Racial discrimination", - "Treaty bodies" - ] - }, - { - "text": "Continue taking measures to prevent discrimination, intimidation and reprisals in accordance with international human rights standards, through more efficient implementation of relevant legislation ", - "values": [ - "International instruments" - ] - }, - { - "text": "Take all necessary measures to incorporate human rights and gender education in school curricula to help promote human rights awareness in Suriname", - "values": [ - "Human rights education and training", - "Women's rights" - ] - }, - { - "text": "Institute further administrative measures to secure the equitable representation and participation of women in governance", - "values": [ - "Women's rights" - ] - }, - { - "text": "Take concrete steps to ensure prompt, adequate, and transparent investigation of killings, intimidations and other abuses of persons from the lesbian, gay, bisexual and transgender community", - "values": [ - "Extrajudicial executions", - "Sexual Orientation and Gender Identity" - ] - }, - { - "text": "Continue strengthening the capacity of the National Commission for Combating Trafficking in Human Beings", - "values": [ - "Trafficking" - ] - }, - { - "text": "Positively consider visit requests from mandate holders, in particular the request from the Special Rapporteur on the human rights situation in the country", - "values": [ - "Special procedures" - ] - }, - { - "text": "Favourably consider ratification of all core international human rights instruments", - "values": [ - "International instruments" - ] - }, - { - "text": "Continue its efforts to achieve social development and, in line with its national plan 2013-2018, as highlighted in the 4th Chapter in the Report", - "values": [ - "Development", - "ESC rights - general" - ] - }, - { - "text": "Withdraw all reservations and declarations on the international instruments to which it is a party that undermine its obligations or the purpose of the treaty", - "values": [ - "International instruments" - ] - }, - { - "text": "Make concrete the initiatives for the establishment of the office of the undersecretary for human rights and the formulation of the national plan for human rights ", - "values": [ - "General" - ] - }, - { - "text": "Strengthen measures aimed at improving equal opportunities in the employment area, especially for foreigners ", - "values": [ - "Development", - "Migrants" - ] - }, - { - "text": "Continue efforts to promote maternal health and the further participation of women in public life. ", - "values": [ - "Women's rights" - ] - }, - { - "text": "Continue with its plans and policies to ensure that economic improvements benefit socially all the population", - "values": [ - "Development" - ] - }, - { - "text": "Implement the national legislation against trafficking in persons to curb the high incidence of trafficking in the country", - "values": [ - "Trafficking" - ] - }, - { - "text": "Continue efforts to facilitate and promote indigenous peoples\u2019 access to education, sanitation, property and public positions", - "values": [ - "Indigenous peoples", - "Right to education", - "Right to water and sanitation" - ] - }, - { - "text": "To take additional measures to improve the situation in prisons, including for juveniles ", - "values": [ - "Detention", - "Rights of the Child" - ] - }, - { - "text": "Strengthen measures to prevent racist violence, hate crimes and discrimination against foreigners, especially Muslims, Roma and the people of African origin ", - "values": [ - "Freedom of religion and belief", - "Minorities", - "Racial discrimination" - ] - }, - { - "text": "Repeal the Public Emergency Regulations and to establish conditions allowing for freedom of expression, assembly and democratic dialogue, including by ensuring protection from harassment and freedom for political activists and human rights defenders", - "values": [ - "Freedom of association and peaceful assembly", - "Freedom of opinion and expression", - "Human rights defenders" - ] - }, - { - "text": "Ensure implementation of the country's National Drug and Control Master Plan in order to address the high prevalence of drug consumption", - "values": [ - "Public security" - ] - }, - { - "text": "Strengthen its cooperation with civil society and undertake a review of its involvement in the provision of core social services for children", - "values": [ - "Civil society", - "Rights of the Child" - ] - }, - { - "text": "Consider ratifying the Convention against Torture and the Second Optional Protocol to the International Covenant on Civil and Political Rights", - "values": [ - "Death penalty", - "International instruments", - "Torture and other CID treatment" - ] - }, - { - "text": "Guarantee the right by all residents in the country to adequate housing, food, health and education, with the aim of decreasing poverty, which affects 48 millions of people in the country", - "values": [ - "Poverty", - "Right to education", - "Right to food", - "Right to health", - "Right to housing" - ] - }, - { - "text": "Develop promptly the implementation guidelines for the Gender Equality Act to ensure its effectiveness", - "values": [ - "Women's rights" - ] - }, - { - "text": "Continue applying a gender perspective in its national policies ", - "values": [ - "Women's rights" - ] - }, - { - "text": "Eliminate all other forms of disparity in the treatment of heterosexual and same-sex couples, in order to ensure full equality and non-discrimination", - "values": [ - "Sexual Orientation and Gender Identity" - ] - }, - { - "text": "Ratify, as soon as possible, major international human rights instruments already signed ", - "values": [ - "International instruments" - ] - }, - { - "text": "Develop and implement a national human rights plan with clear, specific measurable goals to ensure the civil, political, social and economic rights of all citizens", - "values": [ - "CP rights - general", - "ESC rights - general" - ] - }, - { - "text": "Finalize implementation of the unimplemented UPR recommendations from the first cycle review", - "values": [ - "UPR process" - ] - }, - { - "text": "Develop and strengthen financially the state-sponsored legal aid framework, so that lawyers avoid cases of evictions from social housing", - "values": [ - "Right to housing" - ] - }, - { - "text": "Review its national legislation and bring into conformity with the Convention on the Rights of the Child and the Convention on the Elimination of all Forms of Discrimination against Women ", - "values": [ - "International instruments", - "Rights of the Child", - "Women's rights" - ] - }, - { - "text": "Comply with its obligation under international law to guarantee that human rights defenders, journalists and activists can carry out their work independently and free from attacks, harassment or intimidation", - "values": [ - "Freedom of the press", - "Human rights defenders" - ] - }, - { - "text": "Ensure that all complaints and reports of torture and other ill- treatment are investigated thoroughly by an independent agency, and that those responsible are held to account. Such investigations should be conducted by personnel who are competent, impartial and independent of the alleged perpetrators and the agency they serve", - "values": [ - "Torture and other CID treatment" - ] - }, - { - "text": "Give priority to combating corruption and incompetence in the judiciary, and provide sufficient human and material resources for the administration of justice ", - "values": [ - "Corruption" - ] - }, - { - "text": "As in the case of over 11,000 ex-combatants already rehabilitated and reintegrated into their communities, the remaining number of persons undergoing programmes for the rehabilitation of ex-combatants will be reintegrated with their communities upon completion of the rehabilitation process. Ancillary support services will be provided to ex-combatants to facilitate their reintegration", - "values": [ - "Justice" - ] - }, - { - "text": "Fully investigate the alleged cases of arrest and deportation of journalists and filmmakers depicting the problems of the Mapuche people.", - "values": [ - "Freedom of the press", - "Indigenous peoples" - ] - }, - { - "text": "Define racial violence as an offence ", - "values": [ - "Racial discrimination" - ] - }, - { - "text": "Solve remaining cases of human rights violations and create an independent committee to receive claims against the police that were referred to by the Special Rapporteur on Human Rights Defenders ", - "values": [ - "Human rights defenders", - "Special procedures" - ] - }, - { - "text": "Take urgent measures to accelerate judicial investigations and punish the perpetrators of the human rights violations described in the report of the Truth Commission", - "values": [ - "Justice" - ] - }, - { - "text": "Apply a moratorium on the death penalty and make efforts to eliminate capital punishment in the judicial system", - "values": [ - "Death penalty" - ] - }, - { - "text": "Create a legislative framework for the protection of human rights defenders", - "values": [ - "Human rights defenders" - ] - }, - { - "text": "Ratify the two optional protocols to CRC, ICRMW and the Convention relating to the Status of Stateless Persons ", - "values": [ - "International instruments", - "Labour", - "Migrants", - "Rights of the Child", - "Statelessness and the right to nationality" - ] - }, - { - "text": "Allow unfettered regular access of the ICRC to detention and prison facilities ", - "values": [ - "Detention" - ] - }, - { - "text": "Prohibit sentences of corporal punishment for children and life imprisonment of children under the age of 14, under all systems of justice and without exception, to ensure full compliance with international standards", - "values": [ - "Detention", - "Justice", - "Rights of the Child", - "Torture and other CID treatment" - ] - }, - { - "text": "Pull efforts to work on the poverty reduction strategy and promote sustainable development", - "values": [ - "Development", - "Poverty" - ] - }, - { - "text": "Invite and set dates for visits by the Special Rapporteurs on the situation of human rights defenders, on the rights to freedom of peaceful assembly and of association, and on the promotion and protection of the right to freedom of opinion and expression", - "values": [ - "Freedom of association and peaceful assembly", - "Freedom of opinion and expression", - "Human rights defenders", - "Special procedures" - ] - }, - { - "text": "Take appropriate measures to protect and promote the rights of disadvantaged groups", - "values": [ - "Minorities" - ] - }, - { - "text": "Urgently release all remaining political prisoners ", - "values": [ - "Detention", - "Freedom of opinion and expression" - ] - }, - { - "text": "Consider ratifying the Convention on the Elimination of All Forms of Discrimination against Women, the Optional Protocol thereto and the Convention on the Protection of the Rights of All Migrants and the Members of Their Families", - "values": [ - "International instruments", - "Labour", - "Migrants", - "Women's rights" - ] - }, - { - "text": "Enact legislation to prohibit, prevent and sanction child labour in all service sectors", - "values": [ - "Labour", - "Rights of the Child" - ] - }, - { - "text": "Undertake further activities to improve the socio-economic integration of those who have returned refugees and internally displaced persons", - "values": [ - "Asylum-seekers - refugees", - "Internally displaced persons" - ] - }, - { - "text": "Intensify the work related to inter-ethnic reconciliation, with special attention to the integration of ethnic minorities into public service and law enforcement bodies", - "values": [ - "Minorities" - ] - }, - { - "text": "Extend existing legislation to protect the rights of the lesbian, gay, bisexual, transgender and intersex community, including the recognition of same sex couples and anti-discrimination employment laws", - "values": [ - "Labour", - "Sexual Orientation and Gender Identity" - ] - }, - { - "text": "Amend the legal status of same-sex partnerships to ensure full equality in the eyes of the law", - "values": [ - "Sexual Orientation and Gender Identity" - ] - }, - { - "text": "Accelerate the implementation of alternative measures to detention through the adoption of legal and policy measures outlined in articles 88, 89 and 102 of the Penal Code, and ensure that children and adolescents in detention facilities are separated from adults, in accordance with Mozambique's obligations under the Convention on the Rights of the Child", - "values": [ - "Detention", - "International instruments", - "Rights of the Child" - ] - }, - { - "text": "Continue its efforts to eradicate child labour in cooperation with UNICEF and relevant international organizations", - "values": [ - "Labour", - "Rights of the Child", - "Technical assistance and cooperation" - ] - }, - { - "text": "Consider ratifying ILO Convention 100 on equal remuneration for men and women for work of equal value, and ILO Convention 111 on discrimination in employment and occupation", - "values": [ - "International instruments", - "Labour", - "Women's rights" - ] - }, - { - "text": "Continue the fruitful cooperation with United Nations mechanisms on human rights as well as the process of ratification of international instruments that Chad has not yet acceded to", - "values": [ - "International instruments", - "Special procedures", - "Treaty bodies", - "UPR process" - ] - }, - { - "text": "Amend existing law by incorporating sexual offences against children, including forced sexual relations and sexual exploitation ", - "values": [ - "Rights of the Child" - ] - }, - { - "text": "Allow civil society organizations to complement government programmes in preventing violence and harmful practices against women and girls and also amend the Charities and Societies Proclamation to ensure that restrictions on freedom of association are removed, including restrictions on potential sources of funding for civil society ", - "values": [ - "Civil society", - "Freedom of association and peaceful assembly", - "Rights of the Child", - "Women's rights" - ] - }, - { - "text": "Consider, when possible, to gradually increase financial resources allocated to the budget of the Afghanistan Independent Human Rights Commission.", - "values": [ - "National Human Rights Institution" - ] - }, - { - "text": "Undertake further and concerted efforts, including changes in legislation and administrative procedures, to strengthen the effectiveness and independence of the judiciary", - "values": [ - "Justice" - ] - }, - { - "text": "Ratify the Optional Protocol to the Convention against Torture and Other Cruel, Inhuman or Degrading Treatment or Punishment to establish a national preventive mechanism that provides for regular visits to all places of detention", - "values": [ - "Detention", - "International instruments", - "Torture and other CID treatment" - ] - }, - { - "text": "Adopt legislation and promote measures to prevent discrimination based on race, disability", - "values": [ - "Disabilities", - "Racial discrimination" - ] - }, - { - "text": "Ratify the African Union Convention for the Protection and Assistance of Internally Displaced Persons in Africa (the Kampala Convention)", - "values": [ - "Internally displaced persons", - "International instruments" - ] - }, - { - "text": "Take legislative and enforcement measures to eliminate all forms of violence against women, including to withdraw Egypt's reservations to the Convention on the Elimination of All Forms of Discrimination against Women", - "values": [ - "International instruments", - "Women's rights" - ] - }, - { - "text": "Continue to adopt programmes that provide basic services to children, including health care, housing and education", - "values": [ - "Right to education", - "Right to health", - "Right to housing", - "Rights of the Child" - ] - }, - { - "text": "Strengthen national mechanisms to allow children's access to education and health services, specifically in rural areas", - "values": [ - "Right to education", - "Right to health", - "Rights of the Child" - ] - }, - { - "text": "Combat and address the worst forms of child labour by punishing offenders and by conducting research on the prevalence of child labour", - "values": [ - "Labour", - "Rights of the Child" - ] - }, - { - "text": "Amend the Constitution in keeping with the recent ruling by the European Court of Human Rights to recognize the equality of all citizens and prevent discrimination against minorities", - "values": [ - "Minorities" - ] - }, - { - "text": "Develop a national strategy for human rights education in the school system, in accordance with the Plan of Action of the World Programme for Human Rights Education, with the full participation of all stakeholders", - "values": [ - "Human rights education and training" - ] - }, - { - "text": "Ratification and implementation of international human rights treaties, in particular the International Convention for the Protection of All Persons from Enforced Disappearance", - "values": [ - "Enforced disappearances", - "International instruments" - ] - }, - { - "text": "Continue to adopt measures and programmes to eliminate discrimination against women, especially in the workplace ", - "values": [ - "Women's rights" - ] - }, - { - "text": "Implement targeted training for law enforcement officials on responding to cases of domestic violence, and ensure that all allegations are fully investigated", - "values": [ - "Rights of the Child", - "Women's rights" - ] - }, - { - "text": "Ratify OP-CAT, to establish a national mechanism to visit all places of detention ", - "values": [ - "Detention", - "International instruments", - "Torture and other CID treatment" - ] - }, - { - "text": "Take the necessary measures to ensure that the National Health Insurance Scheme is financially sustainable for the promotion of basic health care", - "values": [ - "Right to health" - ] - }, - { - "text": "Deepen its commitment with the International Criminal Court through the adaptation of its national legislation to the Rome Statute", - "values": [ - "International instruments", - "Justice" - ] - }, - { - "text": "Continue to implement in a comprehensive manner economic and social development to further improve the living standards of its people and reduce poverty and illiteracy ", - "values": [ - "Development", - "Poverty", - "Right to education" - ] - }, - { - "text": "Continue to raise awareness of human rights among all groups, particularly the younger generations, through education, training and media communications", - "values": [ - "Human rights education and training" - ] - }, - { - "text": "Revise the legal age for criminal responsibility ", - "values": [ - "Justice", - "Rights of the Child" - ] - }, - { - "text": "Step up efforts to overcome social scourges, including the consumption of drugs ", - "values": [ - "Public security" - ] - }, - { - "text": "Enact a law on comprehensive protection of the rights of the child and of adolescents, which guarantees greater stability in the promotion and protection of these rights", - "values": [ - "Rights of the Child" - ] - }, - { - "text": "Enhance laws that encourage freedom of expression", - "values": [ - "Freedom of opinion and expression" - ] - }, - { - "text": "Invite the Special Rapporteur on minority issues to visit the country with a view to examine the "ways and means of overcoming existing obstacles to the full and effective realization of their rights" in accordance with her mandate", - "values": [ - "Minorities", - "Special procedures" - ] - }, - { - "text": "Strengthen protection of migrants and asylum seekers transiting through Cap Verde ", - "values": [ - "Asylum-seekers - refugees", - "Migrants" - ] - }, - { - "text": "Improve detention conditions of detainees, in particular minors", - "values": [ - "Detention", - "Rights of the Child" - ] - }, - { - "text": "Enhance its system for the protection of children by consideration of the establishment of a national Ombudsperson for Children ", - "values": [ - "National Human Rights Institution", - "Rights of the Child" - ] - }, - { - "text": "Take the necessary steps to ensure that its citizens fully enjoy the rights and freedoms awarded to them by the Iranian Constitution, with special emphasis on the right to freedom of expression, the right to political activity and the right to assemble", - "values": [ - "Freedom of association and peaceful assembly", - "Freedom of opinion and expression" - ] - }, - { - "text": "Promote legislative measures, as well as all other types of measures, to promote gender equality and the prevention of violence against women and girls", - "values": [ - "Rights of the Child", - "Women's rights" - ] - }, - { - "text": "Thailand will issue a standing invitation to all the special procedures of the Human Rights Council", - "values": [ - "Special procedures" - ] - }, - { - "text": "Consider the practicability of enacting legislation prohibiting FGM.", - "values": [ - "Rights of the Child", - "Torture and other CID treatment", - "Women's rights" - ] - }, - { - "text": "Adopt laws to combat ritual crimes, punish appropriately the instigators and perpetrators of such offences, and put in place a comprehensive strategy to eliminate them", - "values": [ - "Other" - ] - }, - { - "text": "Repeal corporal punishment and the death penalty from its penal system ", - "values": [ - "Death penalty", - "Torture and other CID treatment" - ] - }, - { - "text": "Provide adequate resources and training, including to law enforcement officials, to ensure effective institutions that comply with human rights norms and standards", - "values": [ - "Human rights education and training" - ] - }, - { - "text": "Continue to provide, in accordance with its obligations under international human rights law, the widest possible protection and support for the family, as the natural and fundamental unit of society", - "values": [ - "Other" - ] - }, - { - "text": "Consider launching a holistic national plan to prevent and deal with economic recession impact and ensure job creation, public services and social welfare in favour of the people of Barbados without any discrimination", - "values": [ - "Development" - ] - }, - { - "text": "Take steps to ratify the Convention against Torture and Other Cruel, Inhuman or Degrading Treatment or Punishment", - "values": [ - "International instruments", - "Torture and other CID treatment" - ] - }, - { - "text": "Toughen liability for sexual crimes, rape and child abuse and enhance the training of those working for the protection of children's rights ", - "values": [ - "Rights of the Child", - "Women's rights" - ] - }, - { - "text": "Consider the ratification of the OP-CAT", - "values": [ - "Detention", - "International instruments", - "Torture and other CID treatment" - ] - }, - { - "text": "Allocate sufficient funding and make available adequate human resources for the implementation of the Roma Integration Strategy 2015-2020 and the Inclusive Education Action Plan for 2016-2018", - "values": [ - "Minorities", - "Right to education" - ] - }, - { - "text": "Ensure the freedom of religious minorities, in particular Muslims, in exercising their religious practices, and respect their right to choose the language of their own, used in their religious scripts, and also respect their right to financial supports and services provided by their brothers of faith from other countries", - "values": [ - "Freedom of religion and belief", - "Minorities" - ] - }, - { - "text": "Cooperate with, inter alia, UNESCO and UNICEF to improve the education sector ", - "values": [ - "Right to education" - ] - }, - { - "text": "Urgently investigate cases of arbitrary arrest and detention, including those which may constitute enforced disappearances ", - "values": [ - "Detention", - "Enforced disappearances" - ] - }, - { - "text": "Ensure protection of victims of trafficking in human beings, in particular children, by providing assistance and social reintegration services, and by advancing cooperation with countries of origin and transit", - "values": [ - "Rights of the Child", - "Trafficking" - ] - }, - { - "text": "Consolidate the progress made towards reaching the Sustainable Development Goals, and continue efforts towards inclusive socioeconomic development programmes with a focus on poverty eradication", - "values": [ - "Development", - "Poverty" - ] - }, - { - "text": "Continue its efforts in providing the necessary care for persons with disabilities, including children with disabilities", - "values": [ - "Disabilities", - "Rights of the Child" - ] - }, - { - "text": "Investigate all reports of violence against religious minorities and bring those responsible to justice", - "values": [ - "Freedom of religion and belief", - "Minorities" - ] - }, - { - "text": "Call upon OHCHR to provide technical assistance to Dominica for the establishment of a national human rights institution, which is an essential building block for the progress of human rights, as previously recommended by Maldives during the first cycle", - "values": [ - "National Human Rights Institution", - "Technical assistance and cooperation", - "UPR process" - ] - }, - { - "text": "Exert more efforts towards strengthening the rights of the child through the adoption of a national policy for children", - "values": [ - "Rights of the Child" - ] - }, - { - "text": "Improve and extend the Anti-Trafficking in Persons Task Force to cover every part of the country", - "values": [ - "Trafficking" - ] - }, - { - "text": "Bring its legislation in line with international standards by removing the relevant sections that criminalize consensual same-sex conduct from the Criminal Law (Offences) Act", - "values": [ - "Sexual Orientation and Gender Identity" - ] - }, - { - "text": "Take measures to ensure non-discrimination in law and in practice against ethnic and religious minorities, including arbitrary detention and exclusion from higher education and government employment, as well as governmental interference in private employment against persons belonging to the Baha'i community", - "values": [ - "Detention", - "Freedom of religion and belief", - "Minorities", - "Racial discrimination", - "Right to education" - ] - }, - { - "text": "Continue the national dialogue to find a peaceful political solution to the crisis", - "values": [ - "Other" - ] - }, - { - "text": "Continue efforts to amend the Criminal Code in order to prohibit the trafficking and sale of children for all purposes and to extend criminal liability to legal persons, and fully implement those amendments", - "values": [ - "Rights of the Child", - "Trafficking" - ] - }, - { - "text": "Devise a practical national strategy to spread a human rights culture so as to guarantee the protection of these rights in the long term ", - "values": [ - "General" - ] - }, - { - "text": "Give priority to the elimination of poverty and strive to reduce unemployment and to improve people\u2019s living standards", - "values": [ - "Development", - "Poverty" - ] - }, - { - "text": "Continue efforts to promote the rights of women and combat violence against them", - "values": [ - "Women's rights" - ] - }, - { - "text": "Extend a standing invitation to all thematic special procedures ", - "values": [ - "Special procedures" - ] - }, - { - "text": "Ensure that all births are registered and facilitate access to birth registration services including by reducing its cost ", - "values": [ - "Rights of the Child", - "Statelessness and the right to nationality" - ] - }, - { - "text": "Protect freedom of religion or belief of all people living in the country", - "values": [ - "Freedom of religion and belief" - ] - }, - { - "text": "Thoroughly review the national legislation on migration and asylum", - "values": [ - "Asylum-seekers - refugees", - "Migrants" - ] - }, - { - "text": "Accede to other international human rights instruments to which it is not yet party in order to strengthen its national provisions to ensure human rights specifically with regards to persons with disabilities", - "values": [ - "Disabilities", - "International instruments" - ] - }, - { - "text": "Establish mechanisms for monitoring the employment of domestic workers", - "values": [ - "Labour" - ] - }, - { - "text": "Continue the ongoing efforts to combat human trafficking and strengthen measures to protect victims of trafficking", - "values": [ - "Trafficking" - ] - }, - { - "text": "Step up cooperation with the international community, improve its public health care system and raise its capacity in preventing and addressing large scale public health events such as Ebola outbreaks", - "values": [ - "Right to health", - "Technical assistance and cooperation" - ] - }, - { - "text": "Brief the Human Rights Council in their UPR mid-term review report on the lessons learnt of the National Action Plan on Fundamental and Human Rights, including on the effectiveness of the established indicators ", - "values": [ - "UPR process" - ] - }, - { - "text": "Employ legislative mechanisms to secure gender equality and the legal protection of women from discrimination", - "values": [ - "Women's rights" - ] - }, - { - "text": "Continue its efforts to protect and promote the enjoyment of human rights of the older persons", - "values": [ - "Other" - ] - }, - { - "text": "Adopt legislation to prevent and combat violence against women and domestic violence", - "values": [ - "Women's rights" - ] - }, - { - "text": "National capacities to implement the Trilingual Policy (2012 to 2020) and the National Policy Framework for Social Integration will be enhanced to support the achievement of the specified targets including implementation of the official languages policy in 72 bilingual administrative divisions by 2015", - "values": [ - "Other" - ] - }, - { - "text": "Take further steps to ensure a safe and enabling environment for all human rights defenders, including those representing the lesbian, gay, bisexual and transgender community and adat communities", - "values": [ - "Human rights defenders", - "Sexual Orientation and Gender Identity" - ] - }, - { - "text": "Revise the compliance of relevant existing laws, in particular articles 25 and 111 of the Penal Code, with international standards of freedom of expression and protect human rights defenders, journalists and bloggers against persecution and harassment", - "values": [ - "Freedom of opinion and expression", - "Freedom of the press", - "Human rights defenders" - ] - }, - { - "text": "Continue to improve its legislation in order to provide equal protection for boys and girls against sexual abuse and exploitation", - "values": [ - "Rights of the Child" - ] - }, - { - "text": "Strengthen and accelerate mechanisms aiming at eradicating the harmful practice of female genital mutilation", - "values": [ - "Rights of the Child", - "Torture and other CID treatment", - "Women's rights" - ] - }, - { - "text": "Despite the constraints faced as a Small Island Developing State, Barbados is committed to a human rights based approach to development, to the principles of good governance, the rule of law and ensuring that its people have the highest levels of civil, political, economic, social and cultural rights", - "values": [ - "CP rights - general", - "Development", - "ESC rights - general", - "Justice" - ] - }, - { - "text": "Guarantee the right to freedom of expression, association and peaceful assembly of journalists, activists, human rights defenders and those who take part in demonstrations", - "values": [ - "Freedom of association and peaceful assembly", - "Freedom of opinion and expression", - "Freedom of the press", - "Human rights defenders" - ] - }, - { - "text": "Re-examine the proposal to revise law 017/PR/2010 relating to the press regime in Chad in order to amend or withdraw the provisions which could infringe on freedom of expression and freedom of the press", - "values": [ - "Freedom of opinion and expression", - "Freedom of the press" - ] - }, - { - "text": "Adopt and implement without delay a Children's Code incorporating the provisions of international human rights treaties, in particular the United Nations Convention on the Rights of the Child, ILO Convention No. 182 on the Worst Forms of Child Labour, and ILO Convention No. 138 on the Minimum Age for Admission to Employment ", - "values": [ - "International instruments", - "Labour", - "Rights of the Child" - ] - }, - { - "text": "Place a particular focus on the education and employability of Roma women in integration policies, since women and children are the most vulnerable groups within the Roma community", - "values": [ - "Labour", - "Minorities", - "Right to education", - "Rights of the Child", - "Women's rights" - ] - }, - { - "text": "Adopt a policy of taking an explicit and published decision on instituting a federal investigation and prosecution in all cases involving violence against human rights defenders ", - "values": [ - "Human rights defenders" - ] - }, - { - "text": "Amend article 112 of Thailand's Criminal Code to remove prison terms for offences stemming from the legitimate exercise of the right to freedom of opinion and expression and ensure that the prohibited acts are unambiguous and that sanctions are proportionate to the act committed", - "values": [ - "Freedom of opinion and expression" - ] - }, - { - "text": "Enact legislation prohibiting discrimination against LGBTI persons, including removing laws criminalising same sex activity", - "values": [ - "Sexual Orientation and Gender Identity" - ] - }, - { - "text": "Strengthen its efforts to develop and support educational programmes and technical training for marginalized youth in the country ", - "values": [ - "Right to education", - "Rights of the Child" - ] - }, - { - "text": "Intensify efforts to reduce wage inequality on the basis of gender", - "values": [ - "Women's rights" - ] - }, - { - "text": "Continue its efforts on health, the social service system and education in order to help the vulnerable and disabled, particularly women and children ", - "values": [ - "Disabilities", - "ESC rights - general", - "Right to education", - "Right to health", - "Rights of the Child", - "Women's rights" - ] - }, - { - "text": "Establish a registration system to license independent nongovernmental organizations consistent with the right to freedom of association ", - "values": [ - "Civil society", - "Freedom of association and peaceful assembly" - ] - }, - { - "text": "Ratify the fundamental International Labour Organization Forced Labour Convention, 1930 (No.29) and Minimum Age Convention, 1973 (No.138)", - "values": [ - "International instruments", - "Labour" - ] - }, - { - "text": "Consider issuing a standing invitation to all Special Procedures mandate-holders ", - "values": [ - "Special procedures" - ] - }, - { - "text": "Formulate a national strategy to promote gender equality so as to advance the status of women, combat violence and eliminate discrimination against women", - "values": [ - "Women's rights" - ] - }, - { - "text": "Step up efforts aimed at increasing the employment of women in the formal sector, including ensuring equal pay to women in the labour market", - "values": [ - "Labour", - "Women's rights" - ] - }, - { - "text": "Intensify its efforts to ensure that national prison rules and policies are in line with the revised United Nations Standard Minimum Rules for the Treatment of Prisoners or the Nelson Mandela Rules", - "values": [ - "Detention", - "International instruments" - ] - }, - { - "text": "Strengthen the role and effectiveness of the Ministry of Human Rights and the National Commission for Human Rights, in accordance with international human rights standards", - "values": [ - "National Human Rights Institution" - ] - }, - { - "text": "Fulfil the recommendation, elaborated on in paragraph 2 of the OHCHR summary, made by the Council of Europe Commissioner for Human Rights, who in 2007 called upon Poland to enact a comprehensive body of anti-discrimination legislation and to set up a body to combat discrimination.", - "values": [ - "Other" - ] - }, - { - "text": "Recommended revising the recently proposed amendment to the Press and Publication Law to reflect article 19 of the International Covenant on Civil and Political Rights.", - "values": [ - "Freedom of the press", - "International instruments" - ] - }, - { - "text": "Investigate allegations of torture in the context of counter-terrorism measures, give publicity to the findings, bring perpetrators to justice and provide reparation to the victims ", - "values": [ - "Counter-terrorism", - "Justice", - "Torture and other CID treatment" - ] - }, - { - "text": "Establish a legal moratorium on the application of death penalty with a view to its definitive abolishment and meanwhile carry out awareness campaigns in order for society to be aware of the ineffectiveness of capital punishment and of its lack of connection with the increase or reduction of crime", - "values": [ - "Death penalty", - "Human rights education and training" - ] - }, - { - "text": "Continue to enhance efforts to protect the human rights of migrants", - "values": [ - "Migrants" - ] - }, - { - "text": "Adopt clear by-laws and regulations to the new Media Law clarifying the general clauses for the benefit of the journalists instead of further reducing the space of free media", - "values": [ - "Freedom of the press" - ] - }, - { - "text": "Develop a comprehensive national strategy to prevent and address all forms of violence against children with a view to strengthen measures to encourage child victims to report instances of violence, abuse and neglect", - "values": [ - "Rights of the Child" - ] - }, - { - "text": "Take urgent measures to transform the decision to abolish the death penalty into law as soon as possible.", - "values": [ - "Death penalty" - ] - }, - { - "text": "Repeal all criminal provisions dealing with freedom of expression and freedom of assembly to comply with international human rights standards", - "values": [ - "Freedom of association and peaceful assembly", - "Freedom of opinion and expression", - "International instruments" - ] - }, - { - "text": "Continue fighting against slave labour, in particular in the textile sector", - "values": [ - "Labour" - ] - }, - { - "text": "Establish an effective and inclusive process to follow up on the implementation of recommendations emerging from the universal periodic review ", - "values": [ - "UPR process" - ] - }, - { - "text": "Continue its current efforts to reinforce the mandate and capacities of the National Human Rights Commission and the anti-corruption commission, particularly in the field of promotion and protection of women's rights", - "values": [ - "Corruption", - "National Human Rights Institution", - "Women's rights" - ] - }, - { - "text": "Sign and ratify OP-ICESCR, which was recommended by the Spanish delegation in the first cycle", - "values": [ - "ESC rights - general", - "International instruments", - "UPR process" - ] - }, - { - "text": "Adopting legislation on alternative measures to imprisonment for the administration of justice for juveniles", - "values": [ - "Detention", - "Rights of the Child" - ] - }, - { - "text": "Clear the backlog in responses to thematic questionnaires of the Human Rights Council Special Procedures", - "values": [ - "Special procedures" - ] - }, - { - "text": "Introduce a moratorium on the use of the death penalty and work towards its abolition, including by ratifying the Second Optional Protocol to the International Covenant on Civil and Political Rights", - "values": [ - "Death penalty", - "International instruments" - ] - }, - { - "text": "Ensure protection of the right of peaceful assembly and release all persons arrested in this connection, e.g., Ms. Tashi Tao and Ms. Dhungtso in Kardze County", - "values": [ - "Detention", - "Freedom of association and peaceful assembly" - ] - }, - { - "text": "Develop comprehensive national strategies to address homelessness and poverty", - "values": [ - "Poverty", - "Right to housing" - ] - }, - { - "text": "Foster a better understanding of the needs of young people and establish guidelines for their development", - "values": [ - "Other" - ] - }, - { - "text": "Ensure effective implementation of the United Nations Rules for the Treatment of Women Prisoners and Non-custodial Measures for Women Offenders (the Bangkok Rules) and the United Nations Standard Minimum Rules for the Treatment of Prisoners (the Nelson Mandela Rules), particularly by promoting the capacity-building for prison personnel", - "values": [ - "Detention", - "International instruments", - "Women's rights" - ] - }, - { - "text": "Consider the establishment of an independent national human rights institution in conformity with the Paris Principles ", - "values": [ - "National Human Rights Institution" - ] - }, - { - "text": "Incorporate the provisions of the Convention against Torture into domestic laws, and implement the recommendations of the Committee against Torture following the inquiry mission to Lebanon", - "values": [ - "International instruments", - "Torture and other CID treatment", - "Treaty bodies" - ] - }, - { - "text": "Review its legislation and practices to guarantee the free exercise of the right to freedom of assembly and freedom of expression, with any limitations other than those under international law ", - "values": [ - "Freedom of association and peaceful assembly", - "Freedom of opinion and expression" - ] - }, - { - "text": "Ensure equal rights for all individuals, regardless of sexual orientation ", - "values": [ - "Sexual Orientation and Gender Identity" - ] - }, - { - "text": "Continue implementing programmes and measures aimed at guaranteeing educational and quality health-care services to all the population ", - "values": [ - "Right to education", - "Right to health" - ] - }, - { - "text": "Put in place sound policies to ensure a safer environment for children, and implement a more effective system for addressing cases of violence against children", - "values": [ - "Rights of the Child" - ] - }, - { - "text": "Examine the possibility of ratifying the core human rights treaties to which the country is not yet a party and raising its reservations on those which it has ratified ", - "values": [ - "International instruments" - ] - }, - { - "text": "Amend article 375 of the Penal Code, dealing with the crime of rape, in order to remove the exception for sexual intercourse by a man with his wife ", - "values": [ - "Women's rights" - ] - }, - { - "text": "Advance in the elimination of all forms of discrimination and violence based on sexual orientation or gender identity, particularly abolishing all regulations of the Penal Code that support those discriminations and reinforce legislative and judicial protections against such abuses", - "values": [ - "Sexual Orientation and Gender Identity" - ] - }, - { - "text": "Investigate thoroughly, promptly and impartially all allegations of intimidation and violence against journalists and human rights defenders and bring the perpetrators to justice ", - "values": [ - "Freedom of the press", - "Human rights defenders" - ] - }, - { - "text": "Greece pledges to continue to pursue policies and initiatives in all critical fields of human rights protection, in cooperation with national human rights institutions and civil society, taking into account the outcome of the UPR process, as well as the recommendations of relevant monitoring mechanisms, in order to ensure full, equal and effective realization of all human rights.", - "values": [ - "Civil society", - "National Human Rights Institution", - "UPR process" - ] - }, - { - "text": "Set out specific plans with measurable targets in the area of human rights and social policies", - "values": [ - "General" - ] - }, - { - "text": "Continue addressing the issues of sexual exploitation of women and girls", - "values": [ - "Rights of the Child", - "Women's rights" - ] - }, - { - "text": "Amend its legislation to protect freedom of expression, including freedom of the press", - "values": [ - "Freedom of opinion and expression", - "Freedom of the press" - ] - }, - { - "text": "Implement the provision of the resolution on human rights defenders adopted by the Human Rights Council at its thirteenth session, on the establishment of a focal point for the protection of human rights defenders within the national administration", - "values": [ - "Human rights defenders" - ] - }, - { - "text": "Extend an open and permanent invitation to the United Nations human rights special procedures mandate holders - ", - "values": [ - "Special procedures" - ] - }, - { - "text": "Immediately comply with its obligations under international law and abolish the use of illegal weapons", - "values": [ - "International humanitarian law" - ] - }, - { - "text": "Adopt a comprehensive policy for the protection of children that provides, in particular, strengthening the combat against child labour and trafficking", - "values": [ - "Labour", - "Rights of the Child", - "Trafficking" - ] - }, - { - "text": "Take all necessary measures to complete the process of establishing a national human rights institution in accordance with the Paris Principles", - "values": [ - "National Human Rights Institution" - ] - }, - { - "text": "Establish a moratorium on the use of the death penalty, as a first step towards the complete abolition of this practice, and initiate a broad public debate on the death penalty with a view to its final abolition", - "values": [ - "Death penalty" - ] - }, - { - "text": "Take all necessary measures to ensure that the law on freedom of assembly is not applied in an unduly strict manner by the local authorities.", - "values": [ - "Freedom of association and peaceful assembly" - ] - }, - { - "text": "Provide adequate accommodation for refugees and asylum seekers and their children, away from unhealthy locations such as near airports", - "values": [ - "Asylum-seekers - refugees", - "Right to housing", - "Rights of the Child" - ] - }, - { - "text": "Continue to try to ameliorate prison conditions", - "values": [ - "Detention" - ] - }, - { - "text": "Continue the reforms undertaken with a view to improve the life conditions of detainees ", - "values": [ - "Detention" - ] - }, - { - "text": "Continue its efforts in the reduction of poverty and to envisage the sharing of best practices with interested countries", - "values": [ - "Poverty" - ] - }, - { - "text": "Dismantle the separation wall.", - "values": [ - "Freedom of movement" - ] - }, - { - "text": "Continue its efforts to improve the situation of migrant workers and members of their families", - "values": [ - "Labour", - "Migrants" - ] - }, - { - "text": "Introduce thorough and impartial investigation of allegations of torture and other ill-treatment in detention and ensure that alleged perpetrators are brought to justice", - "values": [ - "Detention", - "Human rights violations by state agents", - "Torture and other CID treatment" - ] - }, - { - "text": "Ensure due process and accountability in the administration of justice, and hold perpetrators of any ill-treatment of prisoners to account", - "values": [ - "Detention", - "Human rights violations by state agents", - "Justice", - "Torture and other CID treatment" - ] - }, - { - "text": "Strengthen the role of its national mechanisms and institutions for the promotion and protection of human rights in the country", - "values": [ - "General" - ] - }, - { - "text": "Allow access to humanitarian aid to all groups who need it, including internally displaced persons in Rakhine State and other affected areas", - "values": [ - "Internally displaced persons" - ] - }, - { - "text": "Consider ratifying the International Convention for the Protection of All Persons from Enforced Disappearance and the Convention on the Prevention and Punishment of the Crime of Genocide", - "values": [ - "Enforced disappearances", - "International instruments", - "Justice" - ] - }, - { - "text": "Adopt legislation and measures to prevent violence against women and children, including through the strengthening of its monitoring mechanism", - "values": [ - "Rights of the Child", - "Women's rights" - ] - }, - { - "text": "Ensure adoption of measures for social integration of refugees and asylum seekers that are fully in line with international standards", - "values": [ - "Asylum-seekers - refugees" - ] - }, - { - "text": "Ensure that the perpetrators of all terrorist attacks are brought to justice", - "values": [ - "Public security" - ] - }, - { - "text": "Ban organizations that encourage and incite racial discrimination", - "values": [ - "Racial discrimination" - ] - }, - { - "text": "Continue efforts aimed at combating trafficking of human beings ", - "values": [ - "Trafficking" - ] - }, - { - "text": "Take the necessary measures to guarantee the proper functioning of a juvenile justice system including, inter alia, by treating minors in a manner appropriate to their age ", - "values": [ - "Justice", - "Rights of the Child" - ] - }, - { - "text": "Expedite the domestic legal procedures required for early ratification of the International Covenant on Economic, Social and Cultural Rights", - "values": [ - "ESC rights - general", - "International instruments" - ] - }, - { - "text": "Continue efforts in providing full access to health services for the general population", - "values": [ - "Right to health" - ] - }, - { - "text": "Accelerate the process for the building of a mosque in Votanikos, Athens, without further delay ", - "values": [ - "Freedom of religion and belief" - ] - }, - { - "text": "Implement a national programme to support minors, to reduce the flows of migration", - "values": [ - "Migrants", - "Rights of the Child" - ] - }, - { - "text": "Take further steps to restore security with due consideration to the rule of law and human rights", - "values": [ - "Justice", - "Public security" - ] - }, - { - "text": "Raise the minimum age of marriage to 18 for both boys and girls", - "values": [ - "Rights of the Child" - ] - }, - { - "text": "Continue efforts to harmonize its normative framework with international human rights norms to which the country has acceded, particularly those concerning the rights of the child ", - "values": [ - "International instruments", - "Rights of the Child" - ] - }, - { - "text": "Continue to focus on the overall improvement in the quality of education provided, particularly in rural areas ", - "values": [ - "Right to education" - ] - }, - { - "text": "Intensify efforts to ensure gender equality and eliminate gender- based violence, including sexual violence and harmful traditional practices", - "values": [ - "Torture and other CID treatment", - "Women's rights" - ] - }, - { - "text": "Elaborate additional measures to increase awareness of human rights culture", - "values": [ - "Human rights education and training" - ] - }, - { - "text": "Further develop national programmes with a focus on providing access to health services to people living under the poverty line ", - "values": [ - "Poverty", - "Right to health" - ] - }, - { - "text": "Continue the implementation of the necessary affirmative measures to achieve gender parity ", - "values": [ - "Women's rights" - ] - }, - { - "text": "Adopt concrete measures to tackle structural inequalities, occupational segregation, the gender pay gap, and to ensure equal opportunities for women in all spheres of life", - "values": [ - "Women's rights" - ] - }, - { - "text": "Strengthen its effort to combat and prevent discrimination faced by the Roma and ensure their full participation in the creation of mechanisms and adoption of measures to this end", - "values": [ - "Minorities" - ] - }, - { - "text": "Continue reform of the criminal justice system, including ensuring that all detainees are either charged with recognizable criminal offences and tried in accordance with international standards for fair trial, or immediately released ", - "values": [ - "Detention", - "Justice" - ] - }, - { - "text": "Intensify efforts and allocate resources for measures aimed at eradicating female genital mutilation, as a matter of priority ", - "values": [ - "Rights of the Child", - "Torture and other CID treatment", - "Women's rights" - ] - }, - { - "text": "Continue to strengthen its efforts regarded as fundamental in assessing the impact of its economic activities on the environment", - "values": [ - "Environment" - ] - }, - { - "text": "Further strengthen existing mechanisms aimed at safeguarding the rights of women, especially with regard to protection against violence", - "values": [ - "Women's rights" - ] - }, - { - "text": "Intensify efforts to integrate persons with special needs in schools", - "values": [ - "Disabilities", - "Right to education" - ] - }, - { - "text": "Continue efforts to establish and consolidate national institutions and mechanisms for the promotion and protection of human rights", - "values": [ - "National Human Rights Institution" - ] - }, - { - "text": "Sign the Second Optional Protocol to ICCPR", - "values": [ - "Death penalty", - "International instruments" - ] - }, - { - "text": "Ensure further equality by allowing same-sex couples the right to marriage according to international standards", - "values": [ - "Sexual Orientation and Gender Identity" - ] - }, - { - "text": "Take measures to bridge the wage gap between women and men ", - "values": [ - "Women's rights" - ] - }, - { - "text": "Consider the explicit prohibition of all practices of corporal punishment of children.", - "values": [ - "Rights of the Child", - "Torture and other CID treatment" - ] - }, - { - "text": "Establish as soon as possible a moratorium on the application of the death penalty, in view of its abolition ", - "values": [ - "Death penalty" - ] - }, - { - "text": "Ratify the Convention for the Protection of All Persons from Enforced Disappearance, signed in 2007", - "values": [ - "Enforced disappearances", - "International instruments" - ] - }, - { - "text": "Appropriately investigate excessive use of force by security forces, publically release findings, and prosecute those identified as being responsible", - "values": [ - "Human rights violations by state agents" - ] - }, - { - "text": "Promote and develop laws to combat all forms of discrimination, racism and xenophobia", - "values": [ - "Racial discrimination" - ] - }, - { - "text": "Derogate legislation that criminalizes same-sex activities between consenting adults and adopt measures to combat incitement to hatred for reasons of sexual orientation or gender identity, and allow the registration of NGOs that defend matters of sexual orientation and gender identity without discrimination ", - "values": [ - "Civil society", - "Sexual Orientation and Gender Identity" - ] - }, - { - "text": "Ensure that human rights are afforded full legal protection ", - "values": [ - "Justice" - ] - }, - { - "text": "Provide persons born to Singaporean mothers before 15 May 2004 an opportunity to acquire Singaporean nationality", - "values": [ - "Statelessness and the right to nationality" - ] - }, - { - "text": "Further strengthen its activities undertaken to combat discrimination, in particular with regard to children with disabilities, children with HIV/AIDS and San children", - "values": [ - "Disabilities", - "HIV - Aids", - "Rights of the Child" - ] - }, - { - "text": "Strengthen the respect for human rights throughout the country especially in the area of health and education for everyone", - "values": [ - "Right to health", - "Rights of the Child" - ] - }, - { - "text": "Continue to work within the frame of the Gender National Policy 2011-2021, in a standing national campaign to fight against discrimination and violence against women ", - "values": [ - "Women's rights" - ] - }, - { - "text": "Consider establishing a, or strengthening the existing, national mechanism responsible for coordination, implementation, reporting and follow-up, in line with the good practices identified by OHCHR in its study/guide concerning national mechanisms for reporting and follow-up", - "values": [ - "National Human Rights Institution", - "Treaty bodies", - "UPR process" - ] - }, - { - "text": "Develop further and implement policies and legislation aimed at gender equality and the empowerment of women, including combating all forms of gender-related violence ", - "values": [ - "Women's rights" - ] - }, - { - "text": "Redouble efforts to implement the National Action Plan to set up social institutions in order to create further opportunities of work for persons with disabilities to improve standards of employment and integrate them in the labour market", - "values": [ - "Development", - "Disabilities", - "Labour" - ] - }, - { - "text": "In the coming years, the Government will focus on the policies to improve access by disadvantaged groups to social security and considers developing insurance for agriculture.", - "values": [ - "ESC rights - general" - ] - }, - { - "text": "Continue efforts aimed at enhancing the realization of the right to education and improving its quality", - "values": [ - "Right to education" - ] - }, - { - "text": "Create a conducive environment for independent civil society to conduct civic and voter education, monitor elections and organize election debates, by lifting all undue restrictions on activities and funding of NGOs ", - "values": [ - "Civil society", - "Elections", - "Freedom of association and peaceful assembly" - ] - }, - { - "text": "Strengthen the application of the domestic violence bill and the abolition of the Marital Power Act.", - "values": [ - "Women's rights" - ] - }, - { - "text": "Step up efforts to combat human trafficking and strengthen the protection of victims", - "values": [ - "Justice", - "Trafficking" - ] - }, - { - "text": "Abstain from political interference in judicial proceedings", - "values": [ - "Justice" - ] - }, - { - "text": "Amend Section 44 of the Non-Governmental Organizations Act, 2016, to ensure its compliance with the national constitutional requirement that every criminal offence be well defined and adopt NGO Act regulations to enable and protect the rights to freedom of expression, peaceful assembly and association, both online and offline", - "values": [ - "Civil society", - "Freedom of association and peaceful assembly", - "Freedom of opinion and expression" - ] - }, - { - "text": "Take advantage of the cooperation that the international community, particularly the Human Rights Council, can offer in order to pursue the consolidation of its national institutions, an indispensable step for the promotion and protection of human rights on the ground", - "values": [ - "Technical assistance and cooperation" - ] - }, - { - "text": "Actively promote awareness of the 2005 Labour Code and establish an accessible complaint mechanism, such as a free phone-service, to which migrant workers can confidentially report instances of abuse and exploitation as well as seek assistance ", - "values": [ - "Labour", - "Migrants" - ] - }, - { - "text": "Strictly uphold and respect the international law prohibiting refoulement", - "values": [ - "Asylum-seekers - refugees" - ] - }, - { - "text": "Adopt and implement legislation prohibiting discrimination on the basis of sexual orientation and gender identity, including by decriminalizing consensual same-sex sexual conduct", - "values": [ - "Sexual Orientation and Gender Identity" - ] - }, - { - "text": "Enhance the scope and effectiveness of measures to combat and prevent racism so as to effectively guarantee all rights of migrants and minorities ", - "values": [ - "Migrants", - "Minorities", - "Racial discrimination" - ] - }, - { - "text": "Take measures to end the practice of impunity for human rights crimes committed by general infantrymen stationed in the country", - "values": [ - "Human rights violations by state agents", - "Impunity" - ] - }, - { - "text": "Continue to increase investments in education to improve the enrolment rate ", - "values": [ - "Right to education" - ] - }, - { - "text": "Promote the inclusion in the Constitution and national legislation of the definition of discrimination against women, as well as the principle of equality between men and women ", - "values": [ - "Women's rights" - ] - }, - { - "text": "Allow the International Committee of the Red Cross (ICRC) to visit places of detention and to visit prisoners of war from Djibouti ", - "values": [ - "Detention" - ] - }, - { - "text": "Put in place an effective mechanism for addressing the reported multiple forms of discrimination against indigenous women in Nepal", - "values": [ - "Indigenous peoples", - "Racial discrimination", - "Women's rights" - ] - }, - { - "text": "Strengthen the national legal framework to protect children from all forms of violence", - "values": [ - "Rights of the Child" - ] - }, - { - "text": "Take concrete steps to further reduce overcrowding of prisons, including through the increased application of alternative sentencing for juvenile offenders ", - "values": [ - "Detention", - "Rights of the Child" - ] - }, - { - "text": "Consider signing and ratifying the OP-CAT ", - "values": [ - "Detention", - "International instruments", - "Torture and other CID treatment" - ] - }, - { - "text": "Repeal Law No. 71 of 1972 and relevant articles of the Penal Code that criminalize free association, and ensure that individuals seeking to establish associations are spared from any harassment or prosecution ", - "values": [ - "Freedom of association and peaceful assembly" - ] - }, - { - "text": "Facilitate access to justice for all citizens by establishing an effective justice support system", - "values": [ - "Justice" - ] - }, - { - "text": "Continue its review efforts with a view to ratifying the International Convention on the Protection of the Rights of All Migrant Workers and Members of Their Families in the future", - "values": [ - "International instruments", - "Labour", - "Migrants" - ] - }, - { - "text": "Introduce an immediate formal moratorium on the death penalty as a first step towards its abolition, while commuting the existing sentences to life imprisonment terms", - "values": [ - "Death penalty" - ] - }, - { - "text": "Maintain the moratorium on capital executions and to consider the full abolition of the death penalty", - "values": [ - "Death penalty" - ] - }, - { - "text": "Request technical assistance and cooperation, as deemed appropriate, from the international community, including the relevant United Nations and specialized agencies, with a view to ensuring the promotion and protection of the full spectrum of the human rights of its people ", - "values": [ - "Technical assistance and cooperation" - ] - }, - { - "text": "Take all necessary measures to protect the rights of all migrant workers especially the means for redress", - "values": [ - "Labour", - "Migrants" - ] - }, - { - "text": "Continue its efforts to establish a legal framework to protect human rights by ratifying core instruments, especially the International Covenant on Civil and Political Rights ", - "values": [ - "CP rights - general", - "International instruments" - ] - }, - { - "text": "Actively seek to address these concerns and review the use of administrative detention, which denies people their rights to liberty, due process and fair trial.", - "values": [ - "Detention" - ] - }, - { - "text": "Ensure all the procedural guarantees and the right to a fair trial for all persons indicted of committing a crime, including the right to defence and access to a lawyer", - "values": [ - "Justice" - ] - }, - { - "text": "Continue its policies and initiatives aimed at the promotion of dialogue, cooperation and tolerance between different cultures and religions of the national minorities of Iran", - "values": [ - "Freedom of religion and belief", - "Minorities" - ] - }, - { - "text": "Establish an accredited national human rights institution in accordance with the Paris Principles", - "values": [ - "National Human Rights Institution" - ] - }, - { - "text": "Refrain from passing discriminatory legislation that are based on bias against foreigners and refugees", - "values": [ - "Asylum-seekers - refugees", - "Migrants", - "Racial discrimination" - ] - }, - { - "text": "Encourage the authorities to strengthen educational policies in order to provide for full school enrolment of all children ", - "values": [ - "Right to education", - "Rights of the Child" - ] - }, - { - "text": "Strengthen efforts to improve the protection of human rights across the country, capacity-building of local authorities and empowerment of communities, in particular women and girls, ensuring the involvement of the civil society, both urban and rural and across the country, in the follow-up to the review report", - "values": [ - "Civil society", - "Rights of the Child", - "UPR process", - "Women's rights" - ] - }, - { - "text": "Make further efforts to implement the national strategy on reproductive health and set standards for maternal health ", - "values": [ - "Right to health", - "Rights of the Child", - "Women's rights" - ] - }, - { - "text": "Ratify the Convention for the Protection of All Persons from Enforced Disappearance", - "values": [ - "Enforced disappearances", - "International instruments" - ] - }, - { - "text": "Take measures in order that the Constitution and other national legislation contain proper provisions that clearly establish the principle of equal treatment and non-discrimination on the grounds of race, colour, ethnic origin, nationality, language or religion", - "values": [ - "Freedom of religion and belief", - "Minorities", - "Racial discrimination" - ] - }, - { - "text": "Continue to strengthen its domestic legal system and enforcement measures to secure a safe living environment for its people", - "values": [ - "Environment" - ] - }, - { - "text": "Adopt specific measures to combat discrimination against Roma", - "values": [ - "Minorities", - "Racial discrimination" - ] - }, - { - "text": "Continue to promote policies and programmes providing access to education for all, as well as on literacy", - "values": [ - "Right to education" - ] - }, - { - "text": "Accelerate and deepen investigations of complaints of torture and other ill-treatment", - "values": [ - "Torture and other CID treatment" - ] - }, - { - "text": "Provide food, water and health support not only in the direct aftermath of natural disasters, but also in the reconstruction phase, with special consideration given for women and children and other particularly vulnerable groups", - "values": [ - "Right to food", - "Right to health", - "Right to water and sanitation", - "Rights of the Child", - "Women's rights" - ] - }, - { - "text": "Repeal or revise discriminatory provisions in the legislation, including the four recently adopted laws on the protection of race and religion, and in this regard, adopt an action plan to promote, through concrete activities, tolerance and peaceful inter-faith and inter-ethnic co-existence in Myanmar", - "values": [ - "Freedom of religion and belief", - "Minorities", - "Racial discrimination" - ] - }, - { - "text": "Launch a reform of the Code of Military Justice, so that the military cannot claim jurisdiction over human rights violations' cases", - "values": [ - "Justice" - ] - }, - { - "text": "Continue efforts to disseminate and raise awareness of human rights through their integration in school and university curricula and in training programmes targeting the public sector and civil society institutions", - "values": [ - "Human rights education and training" - ] - }, - { - "text": "Continue to combat government corruption and support the independent investigation of the alleged extrajudicial killings of 27 people by members of the Peruvian National Police", - "values": [ - "Corruption", - "Extrajudicial executions", - "Human rights violations by state agents" - ] - }, - { - "text": "Enhance initiatives on the programme to bolster a sense of national unity", - "values": [ - "Other" - ] - }, - { - "text": "Strengthen its efforts to fully integrate the Roma into society and to combat discrimination against them, so they can enjoy their economic, social and cultural rights, especially in education, employment and housing ", - "values": [ - "Minorities", - "Racial discrimination" - ] - }, - { - "text": "Adopt a comprehensive national action plan against racism and adopt clear measures to combat effectively racially motivated violence", - "values": [ - "Racial discrimination" - ] - }, - { - "text": "Fulfil its commitment to equality and non-discrimination by repealing all legal provisions that criminalize sexual activity between consenting adults and investigate all cases of discrimination based on sexual orientation and gender identity ", - "values": [ - "Sexual Orientation and Gender Identity" - ] - }, - { - "text": "Set a date for ratifying the Optional Protocol to the Convention on the Elimination of All Forms of Discrimination against Women ", - "values": [ - "International instruments", - "Women's rights" - ] - }, - { - "text": "Strengthen measures aimed at the protection of religious minorities, in accordance with articles 13 and 14 of its Constitution", - "values": [ - "Freedom of religion and belief", - "Minorities" - ] - }, - { - "text": "Promote gender equality and adopt legislation to protect vulnerable groups ", - "values": [ - "Women's rights" - ] - }, - { - "text": "Continue to strengthen its institutional framework so that its society can continue to enjoy their rights and to fully participate in the democracy that prevails in Jordan today", - "values": [ - "General" - ] - }, - { - "text": "Ensure the exercise of the freedom of expression, assembly, association, and the right to participate in public and political life.", - "values": [ - "Freedom of association and peaceful assembly", - "Freedom of opinion and expression" - ] - }, - { - "text": "Work towards additional efforts to promote economic and social rights, to enhance in particular the right to work, education, health and housing", - "values": [ - "ESC rights - general", - "Labour", - "Right to education", - "Right to health", - "Right to housing" - ] - }, - { - "text": "Strengthen its child protection systems at local level, investigate and prosecute cases of child labour and child abuse", - "values": [ - "Labour", - "Rights of the Child" - ] - }, - { - "text": "Ratify the International Convention on the Rights of Migrant Workers and Members of their Families, to supplement the rights of this vulnerable category ", - "values": [ - "International instruments", - "Labour", - "Migrants" - ] - }, - { - "text": "Cooperate with the United Nations and other international and regional mechanisms in order to ensure that the legal and administrative measures taken to combat terrorism respect the enjoyment of human rights and fundamental freedoms ", - "values": [ - "Counter-terrorism", - "Technical assistance and cooperation" - ] - }, - { - "text": "Revise its criminal legislation, including juvenile justice legislation, so as to reduce the use and length of pre-trial detention for persons under 18, and increase the age of criminal responsibility in accordance with the Convention on the Rights of the Child ", - "values": [ - "Detention", - "International instruments", - "Rights of the Child" - ] - }, - { - "text": "Take action at all levels to address the interlinked root causes of preventable mortality and morbidity of children under 5 and consider applying the "Technical guidance on the application of a human rights-based approach to the implementation of policies and programmes to reduce and eliminate preventable mortality and morbidity of children under 5 years of age", A/HRC/27/31", - "values": [ - "Right to health", - "Rights of the Child" - ] - }, - { - "text": "Ensure that the 1999 Penal Code and 2003 Criminal Procedures Code, and their implementation are consistent with its international human rights obligations ", - "values": [ - "International instruments", - "Justice" - ] - }, - { - "text": "Take the necessary steps towards the establishment of a national human rights institution, in accordance with the Paris Principles ", - "values": [ - "National Human Rights Institution" - ] - }, - { - "text": "Strengthen measures of prevention and fight against phenomena affecting the rights of the children, particularly child labour and violence against children ", - "values": [ - "Labour", - "Rights of the Child" - ] - }, - { - "text": "Incorporate into the Criminal Code an outright ban on the activities of organizations which promote racial discrimination", - "values": [ - "Racial discrimination" - ] - }, - { - "text": "Continue the fight against impunity, especially regarding violence against women, children, human rights defenders, journalists and all other vulnerable groups", - "values": [ - "Freedom of the press", - "Human rights defenders", - "Impunity", - "Rights of the Child", - "Women's rights" - ] - }, - { - "text": "Pursue ongoing cooperation with human rights mechanisms", - "values": [ - "Special procedures", - "Technical assistance and cooperation", - "Treaty bodies", - "UPR process" - ] - }, - { - "text": "Strengthen policies to guarantee the rights of migrants and refugees, under the principle of non-discrimination and non-refoulement ", - "values": [ - "Asylum-seekers - refugees", - "Migrants" - ] - }, - { - "text": "Investigate allegations of torture and ill-treatment against persons in places of detention and bring those responsible to justice", - "values": [ - "Detention", - "Torture and other CID treatment" - ] - }, - { - "text": "Strengthen its policy on the rights of the child, with attention to the Guidelines for the Alternative Care of Children", - "values": [ - "Rights of the Child" - ] - }, - { - "text": "adopt comprehensive plans of action to achieve gender equality and to fight violence against women", - "values": [ - "Women's rights" - ] - }, - { - "text": "Adopt flexible measures of birth registration, with the objective of reducing the significant number of children without civil registration", - "values": [ - "Rights of the Child", - "Statelessness and the right to nationality" - ] - }, - { - "text": "Continue its efforts to improve access to education for all, including by providing adequate resources", - "values": [ - "Right to education" - ] - }, - { - "text": "Uphold Brunei's long-lasting moratorium on the death penalty ", - "values": [ - "Death penalty" - ] - }, - { - "text": "Continue efforts to eliminate human trafficking and promote the protection of victims", - "values": [ - "Trafficking" - ] - }, - { - "text": "Implement policies oriented to the development of remote communities and ensure the full enjoyment of economic, social and cultural rights of indigenous peoples interested in remaining in their land of origin", - "values": [ - "Development", - "ESC rights - general", - "Indigenous peoples", - "Right to land" - ] - }, - { - "text": "Ensure the right to health, and an adequate standard of living for the First Nations, Metis and Inuit ", - "values": [ - "Indigenous peoples", - "Right to health" - ] - }, - { - "text": "Ratify all core human rights treaties to which it is not yet a party, including the International Convention on the Elimination of All Forms of Racial Discrimination, the International Covenant on Civil and Political Rights, the International Covenant on Economic, Social and Cultural Rights, and the Convention against Torture", - "values": [ - "CP rights - general", - "ESC rights - general", - "International instruments", - "Racial discrimination", - "Torture and other CID treatment" - ] - }, - { - "text": "Take the necessary measures to expedite the work of the High Judicial Council", - "values": [ - "Justice" - ] - }, - { - "text": "Re-establish, peacefully and without further delay, the constitutional order in the country, engaging in a genuine dialogue with all ethnic communities, through free and fair democratic elections as the only means for the Government's legitimacy, the return of the rule of law and respect for human rights. The underlying issues that have led to Fiji's political instability should be duly addressed", - "values": [ - "Elections", - "Justice", - "Minorities" - ] - }, - { - "text": "Authorize the defendant to immediately have access to a lawyer and limit the detention period without charges to a maximum of 48 hours, as a step towards abolishing this system", - "values": [ - "Detention" - ] - }, - { - "text": "Ratify the ILO Convention 189 on Decent Work for Domestic Workers", - "values": [ - "International instruments", - "Labour" - ] - }, - { - "text": "Conduct awareness-raising programmes to increase women\u2019s legal literacy", - "values": [ - "Human rights education and training", - "Women's rights" - ] - }, - { - "text": "Take further efforts to raise awareness of and increase access to health service facilities and medical assistance and to make family planning information available to women and girls, including in rural areas, taking into account in this regard, among others, the recommendations of the Committee on the Elimination of Discrimination against Women", - "values": [ - "Right to health", - "Rights of the Child", - "Treaty bodies", - "Women's rights" - ] - }, - { - "text": "Seek assistance from the international community to take efforts to provide technical assistance and training necessary to build capacities in the areas of legislative work, the judiciary, security, education, and care for IDPs and persons with disabilities ", - "values": [ - "Disabilities", - "Internally displaced persons", - "Justice", - "Public security", - "Right to education", - "Technical assistance and cooperation" - ] - }, - { - "text": "Amend the Personal Status Law and Penal Code to guarantee equal rights for women and provide guarantees that domestic violence will be effectively prosecuted", - "values": [ - "Women's rights" - ] - }, - { - "text": "Increase efforts to eliminate child poverty and bring domestic legislation in line with the Convention on the Rights of the Child", - "values": [ - "International instruments", - "Rights of the Child" - ] - }, - { - "text": "Continue strengthening legal mechanisms for the protection of the rights of children", - "values": [ - "Rights of the Child" - ] - }, - { - "text": "Continue fighting harmful traditional practices, including female genital mutilation", - "values": [ - "Rights of the Child", - "Torture and other CID treatment", - "Women's rights" - ] - }, - { - "text": "Establish a moratorium on capital executions with a view to abolishing the death penalty and to repeal all legislation that allows for the application of corporal punishment", - "values": [ - "Death penalty", - "Torture and other CID treatment" - ] - }, - { - "text": "Continue its efforts in protecting the rights of disadvantaged children and redouble its efforts towards achieving the Millennium Development Goals", - "values": [ - "Development", - "Rights of the Child" - ] - }, - { - "text": "Strengthen Government measures to eradicate forced labour, especially to prevent either child or enforced labour in the specific sectors of fishing and canning companies, as well as to ensure that employers violating labour rights are duly prosecuted", - "values": [ - "Labour", - "Rights of the Child" - ] - }, - { - "text": "Consider the possibility of acceding to the Palermo Protocol to Prevent, Suppress and Punish Trafficking in Persons, Especially Women and Children, supplementing the United Nations Convention against Transnational Organized Crime ", - "values": [ - "International instruments", - "Trafficking" - ] - }, - { - "text": "Consider ratifying the Rome Statute of the International Criminal Court (ICC)", - "values": [ - "International instruments", - "Justice" - ] - }, - { - "text": "Continue the current efforts to ensure that all children, without discrimination, enjoy the right to education", - "values": [ - "Right to education", - "Rights of the Child" - ] - }, - { - "text": "Grant jurisdiction to its civil courts over the human rights violations committed by members of armed forces when performing law enforcement functions", - "values": [ - "Human rights violations by state agents" - ] - }, - { - "text": "Consider improving services at the Children's Houses further, including by providing shelter for all children below 18 years of age, enhancing training programmes for professionals working with and protecting children, and expediting cases within the 14-day statutory deadline ", - "values": [ - "Rights of the Child" - ] - }, - { - "text": "Continue strengthening training for public sector employees in the field of human rights", - "values": [ - "Human rights education and training" - ] - }, - { - "text": "Undertake legislative reforms, and review especially of the 1984 Family Code, to withdraw/to allow it to withdraw all its reservations to the CEDAW ", - "values": [ - "International instruments", - "Women's rights" - ] - }, - { - "text": "Continue efforts to promote and protect human rights with all possible technical assistance by the international community and OHCHR.", - "values": [ - "Technical assistance and cooperation" - ] - }, - { - "text": "Withdraw reservations made to the Convention on the Elimination of All Forms of Discrimination against Women (CEDAW)", - "values": [ - "International instruments", - "Women's rights" - ] - }, - { - "text": "Separate children in conflict with the law from adults in police and detention facilities and place them in a child-sensitive environment", - "values": [ - "Detention", - "Rights of the Child" - ] - }, - { - "text": "Take measures to reduce infant mortality rates", - "values": [ - "Rights of the Child" - ] - }, - { - "text": "Ratify the 1954 Convention relating to the Status of Stateless Persons and the 1961 Convention on the Reduction of Statelessness", - "values": [ - "International instruments", - "Statelessness and the right to nationality" - ] - }, - { - "text": "Submit periodic reports, which have suffered some delays, to treaty bodies, and seek technical assistance from the OHCHR in this regard if deemed necessary", - "values": [ - "Technical assistance and cooperation", - "Treaty bodies" - ] - }, - { - "text": "Amend its Constitution so as to expand the prohibited grounds of discrimination to include not only gender, but also sexual orientation, disability, health status and economic status ", - "values": [ - "Disabilities", - "Poverty", - "Sexual Orientation and Gender Identity", - "Women's rights" - ] - }, - { - "text": "Ratify the Optional Protocol to the International Covenant on Economic, Social and Cultural Rights and accept its mechanisms of inquiry and communications", - "values": [ - "ESC rights - general", - "International instruments" - ] - }, - { - "text": "Sign and ratify the United Nations Convention against Corruption ", - "values": [ - "Corruption", - "International instruments" - ] - }, - { - "text": "Continue its efforts for human rights education and training at all levels including for government functionaries ", - "values": [ - "Human rights education and training" - ] - }, - { - "text": "Establish a national institution for the promotion and protection of human rights in conformity with the Paris Principles ", - "values": [ - "National Human Rights Institution" - ] - }, - { - "text": "Set up its national human rights institution in accordance with the Paris Principles", - "values": [ - "National Human Rights Institution" - ] - }, - { - "text": "Maximize its efforts to resolve the cases of statelessness, in coordination with UNHCR and with the support, among others, of the United Nations and Inter-American multilateral systems, strengthening a national civil registration system, so as to ensure that all the inhabitants of the Dominican Republic enjoy their rights ", - "values": [ - "Statelessness and the right to nationality", - "Technical assistance and cooperation" - ] - }, - { - "text": "Implement the recommendation of the Committee on the Rights of the Child to improve support for street children, in particular shelter, nutrition, health care and educational opportunities", - "values": [ - "Rights of the Child", - "Treaty bodies" - ] - }, - { - "text": "Reduce the length of prison sentences for non-violent crimes.", - "values": [ - "Justice" - ] - }, - { - "text": "Continue with implementation of the National Plan to Reduce Violence Against Women and their Children with a particular focus on support services and resources available to women living in more remote areas, and women from culturally and linguistically diverse backgrounds", - "values": [ - "Minorities", - "Rights of the Child", - "Women's rights" - ] - }, - { - "text": "Approval of the Convention on the Rights of Persons with Disabilities and its Optional Protocol", - "values": [ - "Disabilities", - "International instruments" - ] - }, - { - "text": "Submit its 10 overdue reports to the United Nations treaty bodies", - "values": [ - "Treaty bodies" - ] - }, - { - "text": "Take appropriate measures to secure the independence of the judiciary, including by amending the regulatory framework providing for such independence", - "values": [ - "Justice" - ] - }, - { - "text": "Ensure that existing legal and constitutional provisions protecting human rights in particular freedom of expression, association and assembly are fully implemented nationwide, repeal discriminatory local by-laws contrary to the Constitution of Indonesia, prioritize progress on equality and non-discrimination, including in relation to lesbian, gay, bisexual and transgender persons, take action to prevent extremist groups from harassing, intimidating or persecuting religious and other minorities, and provide human rights training to officials in the legal and judicial system", - "values": [ - "Freedom of association and peaceful assembly", - "Freedom of opinion and expression", - "Freedom of religion and belief", - "Justice", - "Minorities", - "Sexual Orientation and Gender Identity" - ] - }, - { - "text": "Repeal laws criminalizing consensual sexual conduct between same-sex adults", - "values": [ - "Sexual Orientation and Gender Identity" - ] - }, - { - "text": "Continue the current efforts to increase the representation of women in senior positions, including in Parliament and the Government ", - "values": [ - "Women's rights" - ] - }, - { - "text": "Put in place measures to improve the infrastructure of educational institutions as well as increase the access of children to education", - "values": [ - "Right to education", - "Rights of the Child" - ] - }, - { - "text": "Continue addressing income inequality in the development policy of the country", - "values": [ - "Development" - ] - }, - { - "text": "Continue the procedure of ratifying the International Convention on the Protection of the Rights of All Migrant Workers and Members of Their Families", - "values": [ - "International instruments", - "Labour", - "Migrants" - ] - }, - { - "text": "Put an end to the detention and trials of writers solely for the practice of their right to freedom of expression", - "values": [ - "Freedom of opinion and expression" - ] - }, - { - "text": "Promptly ratify the International Covenant on Civil and Political Rights", - "values": [ - "CP rights - general", - "International instruments" - ] - }, - { - "text": "Ensure equal and unhindered access to health care for the Roma.", - "values": [ - "Minorities" - ] - }, - { - "text": "Develop actions that improve the living conditions of asylum seekers and prevent discrimination on the grounds of nationality or country of origin", - "values": [ - "Asylum-seekers - refugees", - "Racial discrimination" - ] - }, - { - "text": "Strengthen law enforcement by ensuring that clear instructions are given to police forces to always act in compliance with international human rights law", - "values": [ - "International instruments", - "Justice" - ] - }, - { - "text": "Take measures to ensure the safety of those who raise a critical voice towards the army or drug trafficking activities in the country. Officials investigating drug trafficking should be protected from pressure and threats from organized crime ", - "values": [ - "Public security" - ] - }, - { - "text": "Ratify the Convention of the Rights of Persons with Disabilities.", - "values": [ - "Disabilities", - "International instruments" - ] - }, - { - "text": "Intensify measures to promote human rights and consolidate peace in the country through dialogue and mechanisms of reconciliation ", - "values": [ - "Other" - ] - }, - { - "text": "Improve the prison conditions and solve the problem of overcrowding", - "values": [ - "Detention" - ] - }, - { - "text": "Provide with financial resources the Office of the Ombudsman created last year", - "values": [ - "National Human Rights Institution" - ] - }, - { - "text": "Accede to international human rights conventions not yet acceded to ", - "values": [ - "International instruments" - ] - }, - { - "text": "Advance in the promotion of gender equality and equity and study the necessary legislative reforms to follow international standards such as CEDAW", - "values": [ - "International instruments", - "Women's rights" - ] - }, - { - "text": "Ratify the Convention No. 169 of the ILO concerning indigenous and tribal peoples in independent countries", - "values": [ - "Indigenous peoples", - "International instruments" - ] - }, - { - "text": "Take all the possible anti-corruption measures.", - "values": [ - "Corruption" - ] - }, - { - "text": "Speed up the plans to improve the situation in prisons, including the prompt construction of a new special prison in Abidjan for women and juveniles to provide for their separation from serious criminals ", - "values": [ - "Detention" - ] - }, - { - "text": "Develop a clear implementation and monitoring plan for the Bonded Labour System (Abolition) Act, 1992, the Bonded Labour System (Abolition) Rules, 1995 and the National Policy and Plan of Action for the Abolition of Bonded Labour, 2001", - "values": [ - "Labour" - ] - }, - { - "text": "Allow free exercise of the work of independent human rights organizations ", - "values": [ - "Civil society" - ] - }, - { - "text": "Finalize arrangements for the visit by the delegation from OHCHR", - "values": [ - "Technical assistance and cooperation" - ] - }, - { - "text": "Develop specialized programmes and services aimed particularly at the rehabilitation and reintegration of children victims of human trafficking", - "values": [ - "Rights of the Child", - "Trafficking" - ] - }, - { - "text": "Accelerate legislative process to establish a national human rights institution in line with the Paris Principles, availing itself of the support and assistance of the Office of the High Commissioner for Human Rights ", - "values": [ - "National Human Rights Institution", - "Technical assistance and cooperation" - ] - }, - { - "text": "Continue applying programs and measures aimed at guaranteeing universal access to quality education and health services to the population ", - "values": [ - "Right to education", - "Right to health" - ] - }, - { - "text": "Stepping up action to eliminate discrimination against women, violence against women and the practice of female genital mutilation", - "values": [ - "Rights of the Child", - "Torture and other CID treatment", - "Women's rights" - ] - }, - { - "text": "Take appropriate measure to ensure that the basic civil and political rights of Roma are being assured and that birth registration is available and accessible for all children without discrimination ", - "values": [ - "Civil society", - "Minorities", - "Rights of the Child", - "Statelessness and the right to nationality" - ] - }, - { - "text": "Adopt policies and programmes to strengthen the rights of children and adolescents in the field of education, training and health", - "values": [ - "Right to education", - "Right to health", - "Rights of the Child" - ] - }, - { - "text": "Conduct thorough and independent investigations in cases of human rights violations and ensure victims' access to justice", - "values": [ - "Justice" - ] - }, - { - "text": "Continue current efforts to protect and promote women workers' rights", - "values": [ - "Women's rights" - ] - }, - { - "text": "Ensure respect for freedom of expression, in particular with regard to journalists, associations and non-governmental organizations defending fundamental rights, including the rights of lesbian, gay, bisexual, transgender and intersex persons", - "values": [ - "Civil society", - "Freedom of opinion and expression", - "Freedom of the press", - "Sexual Orientation and Gender Identity" - ] - }, - { - "text": "Withdraw the reservations to articles 11,13,15 and 16 of the Convention on the Elimination of All Forms of Discrimination against Women.", - "values": [ - "International instruments", - "Women's rights" - ] - }, - { - "text": "Increase awareness-raising campaigns on women's rights and the negative effects of gender-based violence", - "values": [ - "Human rights education and training", - "Women's rights" - ] - }, - { - "text": "Strengthen implementation of the National Agricultural Policy to ensure access to food and address malnutrition", - "values": [ - "Right to food" - ] - }, - { - "text": "Seek enhanced international support for economic development and reconstruction of infrastructure destroyed due to the conflict and the devastating earthquakes", - "values": [ - "Development", - "Technical assistance and cooperation" - ] - }, - { - "text": "Increase its efforts to improve the living standards of its population and particularly the access to health care, education, work and safe drinking water", - "values": [ - "Labour", - "Right to education", - "Right to health", - "Right to water and sanitation" - ] - }, - { - "text": "Take further measures to promote equal representation of men and women in decision-making positions", - "values": [ - "Women's rights" - ] - }, - { - "text": "Continue the policy of free and compulsory education through cooperation with and assistance from the international community ", - "values": [ - "Right to education", - "Technical assistance and cooperation" - ] - }, - { - "text": "Investigate the causes of human trafficking and compile statistical data on the subject in order to find the most effective means to combat this phenomenon ", - "values": [ - "Trafficking" - ] - }, - { - "text": "Accede to the Rome Statute of the International Criminal Court and ensure its incorporation into domestic law, as accepted in the previous universal periodic review", - "values": [ - "International instruments", - "Justice", - "UPR process" - ] - }, - { - "text": "Continue to pursue social policies upholding the institution of family unit in line with the traditional family values and socioeconomic aspirations of its people", - "values": [ - "Other" - ] - }, - { - "text": "Build on the media transparency law by taking measures to reduce widespread self-censorship and unbalanced reporting ", - "values": [ - "Freedom of the press" - ] - }, - { - "text": "Ensure that opposition parties and civil society organizations are permitted to participate freely in the political process, without fear of retribution", - "values": [ - "Civil society" - ] - }, - { - "text": "Continue its efforts to fight against violence against women and girls, in particular female genital mutilation, and adopt legislation criminalizing this harmful practice", - "values": [ - "Rights of the Child", - "Torture and other CID treatment", - "Women's rights" - ] - }, - { - "text": "To continue to promote and protect the fundamental freedoms and human rights of all its citizens", - "values": [ - "General" - ] - }, - { - "text": "Consider further cooperation with the international human rights monitoring mechanisms, including the treaty bodies and special procedures of the Human Rights Council ", - "values": [ - "Special procedures", - "Treaty bodies", - "UPR process" - ] - }, - { - "text": "Ratify the Convention on the Rights of the Child", - "values": [ - "International instruments", - "Rights of the Child" - ] - }, - { - "text": "Ensure that the freedoms of assembly and expression are upheld and respect the 2003 Supreme Court ruling stating that these freedoms are fundamental", - "values": [ - "Freedom of association and peaceful assembly", - "Freedom of opinion and expression" - ] - }, - { - "text": "Take concrete steps to improve access to legal representation and justice for vulnerable groups, through affordable legal aid schemes", - "values": [ - "Justice" - ] - }, - { - "text": "Improve the access for persons with disabilities to education and health care, with particular focus on children ", - "values": [ - "Disabilities", - "Right to education", - "Right to health", - "Rights of the Child" - ] - }, - { - "text": "Adopt and effectively implement measures to prevent and eliminate domestic violence against women.", - "values": [ - "Rights of the Child", - "Women's rights" - ] - }, - { - "text": "Reinforce measures for the protection of human rights defenders ", - "values": [ - "Human rights defenders" - ] - }, - { - "text": "Reflect on ways and means to address the obstacles and challenges that still affect Jamaican society, in particular the high rate of violent crime and worsening security problems and the country's extreme vulnerability to natural disasters and global economic instability, within a framework of close cooperation with the international community ", - "values": [ - "Public security" - ] - }, - { - "text": "Adopt legislation concerning indigenous people based on international standards", - "values": [ - "Indigenous peoples" - ] - }, - { - "text": "Enact laws and promote public policies to fight violence against women, including through the criminalization of violence and sexual attacks", - "values": [ - "Women's rights" - ] - }, - { - "text": "Ratify or sign, as relevant, the International Convention for the Protection of All Persons from Enforced Disappearance CED, with a view to being consistent with its practice on this matter ", - "values": [ - "Enforced disappearances", - "International instruments" - ] - }, - { - "text": "In line with the suggestions of the Council of Europe, improve efforts to provide adequate opportunities for children belonging to minorities to learn their mother tongue and to study in their mother tongue in schools ", - "values": [ - "ESC rights - general", - "Minorities", - "Rights of the Child" - ] - }, - { - "text": "Consider ratifying the Organization of African Unity Convention Governing Specific Aspects of Refugee Problems in Africa, the International Convention for the Protection of All Persons from Enforced Disappearance, the Convention for the Elimination of Mercenaries in Africa, and the Optional Protocol to the Convention against Torture and Other Cruel, Inhuman or Degrading Treatment or Punishment", - "values": [ - "Asylum-seekers - refugees", - "Detention", - "Enforced disappearances", - "International instruments", - "Torture and other CID treatment" - ] - }, - { - "text": "Finalize the ratification process for the five instruments it has signed", - "values": [ - "International instruments" - ] - }, - { - "text": "Implement the programmes recommended by the World Health Organization WHO with a view to improving the medical assistance provided to women and children", - "values": [ - "Right to health" - ] - }, - { - "text": "Ensure that the Penal Code is effectively enforced, perpetrators of slavery are duly prosecuted, and that the victims are granted due compensation and rehabilitation ", - "values": [ - "Justice" - ] - }, - { - "text": "Ratify the International Convention on the Elimination of All Forms of Racial Discrimination, International Covenant on Economic, Social and Cultural Rights, International Covenant on Civil and Political Rights and its Second Optional Protocol, aiming at the abolition of the death penalty", - "values": [ - "CP rights - general", - "Death penalty", - "ESC rights - general", - "International instruments", - "Racial discrimination" - ] - }, - { - "text": "Continue to work for taking the necessary steps to achieve universal primary education by 2015 ", - "values": [ - "Right to education" - ] - }, - { - "text": "Step up its efforts to improve gender empowerment and women\u2019s rights nationally and continue to contribute at regional and global levels", - "values": [ - "Women's rights" - ] - }, - { - "text": "In cooperation with UNESCO and relevant UN agencies continues to enhance its education system and improve access to quality education by all", - "values": [ - "Right to education", - "Technical assistance and cooperation" - ] - }, - { - "text": "Take all appropriate steps to ensure the implementation of the Council on Women's Participation, created by Organic Law 3-2007, in view of the important role played by non-governmental organizations and other civil society organizations in the promotion of women's human rights and gender equality, as recommended by CEDAW ", - "values": [ - "Civil society", - "Treaty bodies", - "Women's rights" - ] - }, - { - "text": "Establish appropriate solutions to combat poverty and ensure sustainable development", - "values": [ - "Development", - "Poverty" - ] - }, - { - "text": "Establish appropriate mechanisms to encourage the reporting of racist incidents and crimes", - "values": [ - "Racial discrimination" - ] - }, - { - "text": "Take steps to prevent attacks against immigrants and hate speech ", - "values": [ - "Migrants", - "Racial discrimination" - ] - }, - { - "text": "Fully implement the National Human Rights Action Plan, working together with civil society, and to ensure that the Plan is enshrined in law and has appropriate budgetary support", - "values": [ - "Civil society" - ] - }, - { - "text": "Ratify the Convention on the Prevention and Punishment of the Crime of Genocide.", - "values": [ - "International instruments", - "Justice" - ] - }, - { - "text": "Continue its programmes for improving the social inclusion of children and youth with disabilities ", - "values": [ - "Disabilities", - "Rights of the Child" - ] - }, - { - "text": "Review the current deportation practices for migrants in Ceuta and Melilla ", - "values": [ - "Migrants" - ] - }, - { - "text": "Abolish the death penalty in national legislation by adopting law No. 5100 on the final abolition of the death penalty", - "values": [ - "Death penalty" - ] - }, - { - "text": "Amend its legislation so as to include an explicit provision on prohibition of discrimination based on gender and a specific provision on the definition of direct and indirect discrimination", - "values": [ - "Women's rights" - ] - }, - { - "text": "Consider extending and implement a standing invitation to all special procedures", - "values": [ - "Special procedures" - ] - }, - { - "text": "Consider ratifying the Convention on the Political Rights of Women.", - "values": [ - "International instruments", - "Women's rights" - ] - }, - { - "text": "Ratify the remaining international human rights instruments, in particular the Optional Protocol to the Convention on Torture and Other Cruel, Inhuman or Degrading Treatment or Punishment and the Convention on the Rights of Persons with Disabilities", - "values": [ - "Detention", - "Disabilities", - "International instruments", - "Torture and other CID treatment" - ] - }, - { - "text": "Ratify, among other international instruments, the International Convention on the Protection of the Rights of All Migrant Workers and Members of Their Families, the Convention relating to the Status of Stateless Persons and the Convention on the Reduction of Statelessness, and continue its efforts to legalize the situation of persons with "undetermined nationality", guaranteeing their right to nationality", - "values": [ - "International instruments", - "Labour", - "Migrants", - "Statelessness and the right to nationality" - ] - }, - { - "text": "Pursue inclusion policies to promote participation of social movements and organizations in designing public human rights policies", - "values": [ - "Civil society", - "Freedom of association and peaceful assembly" - ] - }, - { - "text": "Work towards the elimination of early, forced and child marriages, in particular taking steps to further limit the circumstances in which those under 18 years of age can marry", - "values": [ - "Rights of the Child", - "Women's rights" - ] - }, - { - "text": "Accelerate and strengthen its efforts to elaborate laws and policies to deal with female genital mutilation practices.", - "values": [ - "Rights of the Child", - "Torture and other CID treatment", - "Women's rights" - ] - }, - { - "text": "Take further measures to protect the human rights of migrants ", - "values": [ - "Migrants" - ] - }, - { - "text": "Continue to codify all legislation related to human rights, with a view to transforming it into one national system", - "values": [ - "General" - ] - }, - { - "text": "Adopt measures for the prevention of sexual abuse and provide facilities for the care, recovery and reintegration for child victims of violence", - "values": [ - "Rights of the Child", - "Women's rights" - ] - }, - { - "text": "Continue systematically its efforts regarding the rights of indigenous peoples", - "values": [ - "Indigenous peoples" - ] - }, - { - "text": "Include a provision in its Penal Code criminalizing marital rape", - "values": [ - "Women's rights" - ] - }, - { - "text": "Continue progress in the eradication of poverty, with the application of its sound social policies to improve the quality of life of its people, especially those most in need, with the necessary support of international cooperation", - "values": [ - "Poverty", - "Technical assistance and cooperation" - ] - }, - { - "text": "Accede to the International Convention on the Elimination of All Forms of Racial Discrimination, to the two optional protocols to the International Covenant on Civil and Political Rights, with particular reference to the abolition of the death penalty in all circumstances", - "values": [ - "CP rights - general", - "Death penalty", - "International instruments", - "Racial discrimination" - ] - }, - { - "text": "Adopt measures to prohibit and prevent discrimination based on disability ", - "values": [ - "Disabilities" - ] - }, - { - "text": "Accede to the International Convention on the Protection of the Rights of All Migrant Workers and Members of their Families (ICRMW). ", - "values": [ - "International instruments", - "Labour", - "Migrants" - ] - }, - { - "text": "In parallel with its ongoing work on land titling, undertake an urgent review of economic land concessions before the current moratorium on economic land concessions is lifted ", - "values": [ - "Right to land" - ] - }, - { - "text": "Ensure that every household enjoys the right to safe drinking water and sanitation", - "values": [ - "Right to water and sanitation" - ] - }, - { - "text": "Ensure access to joint and inclusive quality education, with special attention towards the Roma minority, persons with disabilities and LGBT issues", - "values": [ - "Disabilities", - "Minorities", - "Right to education", - "Sexual Orientation and Gender Identity" - ] - }, - { - "text": "Seek to incorporate human rights considerations in accordance with Kyrgyzstan's international obligations in any reform process it plans to carry out ", - "values": [ - "General" - ] - }, - { - "text": "Upon ratification, implement the Optional Protocol to the Convention against Torture and Other Cruel, Inhuman or Degrading Treatment or Punishment", - "values": [ - "International instruments", - "Torture and other CID treatment", - "Treaty bodies" - ] - }, - { - "text": "Effectively implement its obligation to ensure freedom of religion in accordance with the ICCPR ", - "values": [ - "Freedom of religion and belief", - "International instruments" - ] - }, - { - "text": "Continue efforts to create the appropriate conditions for the integration of migrants and to improve their living and working conditions", - "values": [ - "Migrants" - ] - }, - { - "text": "Eliminate criminalization of homosexual relations as well as the elimination of all discriminatory practice towards LGBT persons", - "values": [ - "Sexual Orientation and Gender Identity" - ] - }, - { - "text": "Sign and ratify the International Convention for the Protection of All Persons from Enforced Disappearance, as well as the Optional Protocol to the Convention against Torture and other Cruel, Inhuman or Degrading Treatment or Punishment ", - "values": [ - "Detention", - "Enforced disappearances", - "International instruments", - "Torture and other CID treatment" - ] - }, - { - "text": "Amend Armenia's Criminal Code to ensure it is consistent with the definition in the Convention against Torture and Other Cruel, Inhuman or Degrading Treatment or Punishment, particularly the inclusion of acts committed by public officials", - "values": [ - "Human rights violations by state agents", - "International instruments", - "Torture and other CID treatment" - ] - }, - { - "text": "Pursue its efforts to combat racism, racial discrimination, xenophobia and related intolerance", - "values": [ - "Racial discrimination" - ] - }, - { - "text": "Place special emphasis on addressing the socio-economic disadvantages of the Roma, particularly in the areas of employment, education, housing and access to health services. egregation in school should be eliminated through both incentives and sufficient penalty in case of violation ", - "values": [ - "Minorities" - ] - }, - { - "text": "Continue combating violence against women", - "values": [ - "Women's rights" - ] - }, - { - "text": "Ratify the Convention on the Rights of the Child (CRC) and its Optional Protocol on the involvement of children in armed conflict and endorse the Paris Commitments to protect children from unlawful recruitment or use by armed forces or armed groups ", - "values": [ - "International humanitarian law", - "International instruments", - "Rights of the Child" - ] - }, - { - "text": "Continue strengthening the application of the Anti-Terrorism Proclamation, providing education in human rights for those charged with enforcing the law ", - "values": [ - "Human rights education and training", - "Public security" - ] - }, - { - "text": "Continue cooperation with United Nations human rights mechanisms and treaty bodies", - "values": [ - "Special procedures", - "Treaty bodies", - "UPR process" - ] - }, - { - "text": "Take the necessary measures to eliminate all discriminatory treatment towards persons with disabilities including the ratification of OP- CERD", - "values": [ - "International instruments", - "Racial discrimination" - ] - }, - { - "text": "Give human rights groups full access to detention facilities", - "values": [ - "Detention" - ] - }, - { - "text": "Halt the detention of immigrant families and children, seek alternatives to detention and end use of detention for reason of deterrence", - "values": [ - "Detention", - "Migrants", - "Rights of the Child" - ] - }, - { - "text": "Hold the referendum on the Constitution", - "values": [ - "General" - ] - }, - { - "text": "Ratify outstanding core international human rights instruments, and accede to the Rome Statute of the International Criminal Court ", - "values": [ - "International instruments", - "Justice" - ] - }, - { - "text": "End the occupation of all Palestinian and Arab territories occupied, including Jerusalem and withdraw from all the territories since 5 June 1967.", - "values": [ - "Right to land" - ] - }, - { - "text": "Analyse the possibility of issuing an open invitation so that the special procedures of the Human Rights Council can visit the country", - "values": [ - "Special procedures" - ] - }, - { - "text": "Declare a moratorium on executions in line with the General Assembly resolutions 62-149 and 63-168", - "values": [ - "Death penalty" - ] - }, - { - "text": "Expedite the ratification process of the Optional Protocol to the Convention against Torture in order to allow for the early establishment of a National Preventive Mechanism", - "values": [ - "Detention", - "International instruments", - "Torture and other CID treatment" - ] - }, - { - "text": "The Government of Somalia reiterated its commitment to engaging proactively with civil society and encouraged civil society to continue to work with the Government to support the national agenda for change.", - "values": [ - "Civil society" - ] - }, - { - "text": "Continue its efforts to eliminate all forms of discrimination, notably against lesbian, gay, bisexual, transgender and intersex persons and against women in the labour market", - "values": [ - "Labour", - "Sexual Orientation and Gender Identity", - "Women's rights" - ] - }, - { - "text": "Formulate a comprehensive anti-discrimination act that prohibits all forms of discrimination, including those based on race, gender, nationality, etc.", - "values": [ - "Racial discrimination", - "Women's rights" - ] - }, - { - "text": "Apply a comprehensive sexual and reproductive health and rights approach to guarantee access of all sex workers, as well as their clients and clients' spouses and partners, to adequate health services and sexual education ", - "values": [ - "Right to health", - "Rights of the Child", - "Women's rights" - ] - }, - { - "text": "Redouble efforts to protect and improve the rights of disabled children", - "values": [ - "Disabilities", - "Rights of the Child" - ] - }, - { - "text": "Continue the efforts to promote women's equality and empowerment, with emphasis on promoting enhanced economic opportunities for women and equality in the workplace", - "values": [ - "Women's rights" - ] - }, - { - "text": "Reform the law authorizing the punishment of children, in conformity with international standards", - "values": [ - "Rights of the Child", - "Torture and other CID treatment" - ] - }, - { - "text": "Implement laws and policies that protect and promote the civil, political, social and economic rights of migrants, Roma people, refugees and asylum seekers, especially the rights to health, to education and to work ", - "values": [ - "Asylum-seekers - refugees", - "Labour", - "Migrants", - "Minorities", - "Right to education", - "Right to health" - ] - }, - { - "text": "Continue and strengthen its efforts in addressing domestic violence in particular in raising the awareness of the population through information campaigns and by enhancing the system of criminal prosecutions", - "values": [ - "Human rights education and training", - "Rights of the Child", - "Women's rights" - ] - }, - { - "text": "Consolidate the mechanisms to protect women against all forms of violence ", - "values": [ - "Women's rights" - ] - }, - { - "text": "Modify the criminal code to harmonize its provisions with those of the International Convention on the Elimination of All Forms of Racial Discrimination", - "values": [ - "International instruments", - "Racial discrimination" - ] - }, - { - "text": "Prohibit female genital mutilation and take further steps to prevent and address the occurrence of female genital mutilation.", - "values": [ - "Rights of the Child", - "Torture and other CID treatment", - "Women's rights" - ] - }, - { - "text": "Take steps to more effectively prevent and prosecute cases of violence against women, including domestic violence, and to ensure the effective implementation and enforcement of existing legislation in this regard", - "values": [ - "Rights of the Child", - "Women's rights" - ] - }, - { - "text": "Consider an early ratification of the Rome Statute of the International Criminal court, including accession to the Agreement on the Privileges and Immunities of the Court", - "values": [ - "International instruments", - "Justice" - ] - }, - { - "text": "Implement a national plan of action that would strengthen the participation of women in the decision-making level of politics", - "values": [ - "Women's rights" - ] - }, - { - "text": "Proceed with the enactment of legislation effectively implementing the Optional Protocol to the Convention against Torture and Other Cruel, Inhuman or Degrading Treatment or Punishment at both state and federal level and adopt measures to adhere to the UN Nelson Mandela Rules", - "values": [ - "International instruments", - "Torture and other CID treatment", - "Treaty bodies" - ] - }, - { - "text": "Take further measures to adopt legislation ensuring the implementation of the Convention on the Rights of the Child, in particular in the area violence prevention and sexual exploitation of children and ensure girls are protected from sexual abuse.", - "values": [ - "International instruments", - "Rights of the Child", - "Women's rights" - ] - }, - { - "text": "Increase efforts to ensure that all children born in Paraguay can have their birth registered", - "values": [ - "Rights of the Child", - "Statelessness and the right to nationality" - ] - }, - { - "text": "Implement the UNDRIP", - "values": [ - "Indigenous peoples", - "International instruments" - ] - }, - { - "text": "Implement Security Council resolutions 1325 (2000) and 2122 (2013) on women and peace and security, and fully cooperate with the Office of the United Nations High Commissioner for Human Rights and the fact-finding mission appointed by the Human Rights Council", - "values": [ - "Technical assistance and cooperation", - "Women's rights" - ] - }, - { - "text": "Continue to ensure that programmes, services and support for HIV-prevention will reach the general population ", - "values": [ - "HIV - Aids" - ] - }, - { - "text": "Take all appropriate measures to ensure an effective implementation of the prohibition of female genital mutilation, especially in terms of prevention, sensitization, control and legal sanctions ", - "values": [ - "Rights of the Child", - "Torture and other CID treatment", - "Women's rights" - ] - }, - { - "text": "Simplify the registration process for civil society organizations", - "values": [ - "Civil society", - "Freedom of association and peaceful assembly" - ] - }, - { - "text": "Prioritize the creation of school facilities in remote areas and implement a functioning system of data collection on children living in districts bordering neighbouring countries ", - "values": [ - "Right to education", - "Rights of the Child" - ] - }, - { - "text": "Accelerate efforts to accede to the ICRMW, and provide the Council with an update on its implementation at the next UPR reporting cycle", - "values": [ - "International instruments", - "Labour", - "Migrants", - "UPR process" - ] - }, - { - "text": "Carry out legislative measures that permit the efficient registration, not subject to administrative discretion, of civil organizations, including political parties and unions ", - "values": [ - "Civil society", - "Freedom of association and peaceful assembly" - ] - }, - { - "text": "Undertake necessary measures to strengthen the independence of the Human Rights Commission, including by amending the 2005 Human Rights Commission Act with a view to aligning it with the Paris Principles", - "values": [ - "National Human Rights Institution" - ] - }, - { - "text": "Ensure effective implementation of the Declaration on the Rights of Indigenous People, including in the Northern Territory, and provide adequate support to the National Congress of Australia's First Peoples to enable it to address the needs of indigenous people", - "values": [ - "Indigenous peoples", - "International instruments" - ] - }, - { - "text": "Continue to provide protection to the family as the natural and fundamental unit of the society", - "values": [ - "Other" - ] - }, - { - "text": "Effectively enforce existing legislation in order to prevent and prohibit the practice of early marriages", - "values": [ - "Rights of the Child", - "Women's rights" - ] - }, - { - "text": "Review all relevant existing and prepared legislation, including the Penal Code, with a view to ensuring its compliance with international human rights law, namely with protection of privacy and prohibition of discrimination", - "values": [ - "International instruments", - "Justice", - "Privacy" - ] - }, - { - "text": "Restart its full participation with the Human Rights Council, including all its mechanisms and OHCHR", - "values": [ - "Special procedures", - "Technical assistance and cooperation", - "UPR process" - ] - }, - { - "text": "Respect the provisions of the Constitution on human rights in its amendments to the Public Benefit Organizations Act and amendments to media laws", - "values": [ - "Freedom of association and peaceful assembly", - "Freedom of the press" - ] - }, - { - "text": "Enable full and unimpeded humanitarian access to all besieged and hard-to-reach areas and that all parties to the conflict take constructive actions", - "values": [ - "Other" - ] - }, - { - "text": "Ratify the Optional Protocol to the Convention against Torture and Other Cruel, Inhuman or Degrading Treatment or Punishment and align its national laws with international standards regarding the prohibition of torture", - "values": [ - "Detention", - "International instruments", - "Torture and other CID treatment" - ] - }, - { - "text": "Make every effort to ensure that those responsible for crimes against children, and in particularly concerning the recruitment of child soldiers, are brought to justice as soon as possible", - "values": [ - "International humanitarian law", - "Rights of the Child" - ] - }, - { - "text": "Avoid maintaining special criminal courts in its penal legislation", - "values": [ - "Justice" - ] - }, - { - "text": "Consider expanding application of the Custody Hearings Programme and make it feasible before all State Courts", - "values": [ - "Detention" - ] - }, - { - "text": "Consider additional measures to ensure that the interests of children are properly taken into account in provisions for asylum seeking families, since they are especially impacted by long delays and uncertainty", - "values": [ - "Asylum-seekers - refugees", - "Rights of the Child" - ] - }, - { - "text": "Pursue it fruitful collaboration with international mechanisms for the protection and promotion of human rights to continually improve the human rights situation on its territory ", - "values": [ - "Technical assistance and cooperation" - ] - }, - { - "text": "Establish as soon as possible a moratorium on the death penalty with a view to its complete abolition ", - "values": [ - "Death penalty" - ] - }, - { - "text": "Take effective measures to thoroughly investigate all allegations of ill- treatment of detainees, of abuse of force by police and military forces and of attacks against journalists and human rights defenders, so to ensure that all those responsible are brought to justice", - "values": [ - "Detention", - "Freedom of the press", - "Human rights defenders", - "Human rights violations by state agents", - "Torture and other CID treatment" - ] - }, - { - "text": "Sign and ratify OP-CAT in the near future ", - "values": [ - "Detention", - "International instruments", - "Torture and other CID treatment" - ] - }, - { - "text": "Take definitive measures to end child marriages", - "values": [ - "Rights of the Child" - ] - }, - { - "text": "Take all necessary measures to guarantee that LGBT individuals do not face persecution based on sexual orientation or gender identity, including by decriminalizing same-sex practices in the country", - "values": [ - "Sexual Orientation and Gender Identity" - ] - }, - { - "text": "Follow the recommendations of the Special Rapporteur on contemporary forms of slavery to abolish all remaining forms of slavery or slavery-related practices, and provide victims of such practices with the possibility to initiate criminal proceedings and obtain compensation", - "values": [ - "Special procedures" - ] - }, - { - "text": "Reform fully the prison system and in particular ensure that it respects as soon as possible the UN Standard Minimum Rules for the Treatment of Prisoners ", - "values": [ - "Detention" - ] - }, - { - "text": "Establish a moratorium on executions of those sentenced to the death penalty and move forward in the legal review to reach its abolition", - "values": [ - "Death penalty" - ] - }, - { - "text": "Continue its efforts in the field of combating and eliminating discrimination on the grounds of sexual orientation and gender identity, inter alia, by implementing comprehensive legislative reform that guarantees equal protection from discrimination on all grounds", - "values": [ - "Sexual Orientation and Gender Identity" - ] - }, - { - "text": "Continue to strengthen its measures aimed at the promotion and protection of the human rights of its minorities", - "values": [ - "Minorities" - ] - }, - { - "text": "Ensure that those suspected of being responsible for crimes under international law in Darfur are investigated and prosecuted before independent and impartial courts, without resort to the death penalty ", - "values": [ - "Death penalty", - "Justice" - ] - }, - { - "text": "Continue efforts for the finalization of National Human Rights Plan", - "values": [ - "General" - ] - }, - { - "text": "Strengthen efforts to enact the existing legislation on child labour", - "values": [ - "Labour", - "Rights of the Child" - ] - }, - { - "text": "While commending South African authorities for the policies adopted in the field of public health and the measures taken to fight HIV-AIDS, recommended to South Africa to increase its measures to eliminate the discriminatory barriers to access health services for people living with HIV-AIDS. ", - "values": [ - "HIV - Aids" - ] - }, - { - "text": "Consider taking steps towards the abolition of the death penalty", - "values": [ - "Death penalty" - ] - }, - { - "text": "Allocate greater resources to combat sexual violence and to prosecute perpetrators", - "values": [ - "Rights of the Child", - "Women's rights" - ] - }, - { - "text": "Take steps to increase the number of women in decision-making positions ", - "values": [ - "Women's rights" - ] - }, - { - "text": "Amend the Civil Code to raise the minimum age for marriage for both women and men to 18 years according to international standards.", - "values": [ - "Rights of the Child" - ] - }, - { - "text": "Raise the minimum age of criminal responsibility above 8", - "values": [ - "Justice", - "Rights of the Child" - ] - }, - { - "text": "Implement the recommendations of the report of the Parliamentary Assembly of the Council of Europe on disappeared persons in Belarus, and ratify the International Convention for the Protection of All Persons from Enforced Disappearance ", - "values": [ - "Enforced disappearances", - "International instruments" - ] - }, - { - "text": "Continue to develop the national health sector, with special focus on access to health for poorer segments of the population", - "values": [ - "Poverty", - "Right to health" - ] - }, - { - "text": "Repeal or reform thoroughly the so-called blasphemy law", - "values": [ - "Freedom of opinion and expression" - ] - }, - { - "text": "Organize public-awareness campaigns regarding HIV/AIDS through the media, and include awareness-raising campaigns in school curricula ", - "values": [ - "HIV - Aids", - "Human rights education and training" - ] - }, - { - "text": "Thoroughly investigate attacks on persons living with albinism and ensure that perpetrators of violations committed against them are brought to justice", - "values": [ - "Minorities" - ] - }, - { - "text": "Establish a national group to follow-up the implementation of CEDAW recommendations", - "values": [ - "Treaty bodies", - "Women's rights" - ] - }, - { - "text": "Accept a follow-up visit by the Special Rapporteur on the independence of judges and lawyers and accept the outstanding request of a visit by the Special Rapporteur on the situation of human rights defenders", - "values": [ - "Human rights defenders", - "Justice", - "Special procedures" - ] - }, - { - "text": "will consider ratification of the ICRMW after having completed a study of its legal implications", - "values": [ - "International instruments", - "Labour", - "Migrants" - ] - }, - { - "text": "Continue ensuring free and universal access to public health ", - "values": [ - "Right to health" - ] - }, - { - "text": "Continue its strategic plan adopted in 2005 for eliminating social and economic disparities in order to reduce poverty, in particular in isolated regions", - "values": [ - "Poverty" - ] - }, - { - "text": "Protect civil society actors, including human rights organizations, against any harassment or persecution, including arbitrary arrest or enforced disappearance, and improve the legal framework so that it encourages and facilitates the operation of non-governmental organizations", - "values": [ - "Civil society", - "Detention", - "Enforced disappearances", - "Human rights defenders" - ] - }, - { - "text": "Take concrete measures to ensure that institutions are adequately scrutinized with respect to quality standards of care and the possibility of redressing abuse and violations in order to increase the efficiency of the child protection system", - "values": [ - "Rights of the Child" - ] - }, - { - "text": "Implement further policies to ensure gender equality throughout society and the promotion of the rights of women and children", - "values": [ - "Rights of the Child", - "Women's rights" - ] - }, - { - "text": "Permit peaceful protests to occur throughout the country, including in Baku city centre, and fully investigate the allegations of harassment of legal professionals representing peaceful demonstrators ", - "values": [ - "Freedom of association and peaceful assembly", - "Justice" - ] - }, - { - "text": "Prevent and punish all forms of violence against women, including the criminalization of marital rape and domestic violence", - "values": [ - "Rights of the Child", - "Women's rights" - ] - }, - { - "text": "Establish a national mechanism for the prevention of torture as set out in the Optional Protocol to the Convention against Torture", - "values": [ - "Detention", - "International instruments", - "Torture and other CID treatment", - "Treaty bodies" - ] - }, - { - "text": "Incorporate anti-discrimination provisions in its Constitution, especially relating to race, ethnicity or religion, to ensure the necessary protection for persons who would be mostly affected by those discriminatory practices ", - "values": [ - "Freedom of religion and belief", - "Racial discrimination" - ] - }, - { - "text": "Enhance its efforts to prevent racially motivated acts of violence against Muslims and other minorities and to punish the perpetrators of such crimes ", - "values": [ - "Freedom of religion and belief", - "Minorities", - "Racial discrimination" - ] - }, - { - "text": "Ratify OP-CRC-AC", - "values": [ - "International humanitarian law", - "International instruments", - "Rights of the Child" - ] - }, - { - "text": "Fully implement the constitutional provisions for the protection of the rights of the child in line with international standards, also in order to further reduce the practices of child, early and forced marriage", - "values": [ - "Rights of the Child", - "Women's rights" - ] - }, - { - "text": "Set up a Truth and Reconciliation Commission and a Commission of Inquiry on Disappearances which are fully in accordance with international standards ", - "values": [ - "Justice" - ] - }, - { - "text": "Consider adopting specific laws on combating violence against women, both at home and in the work place", - "values": [ - "Women's rights" - ] - }, - { - "text": "Continue to take all necessary steps to combat corruption, ensure judicial independence and promote a fair and transparent legal system for all Slovak citizens ", - "values": [ - "Corruption", - "Justice" - ] - }, - { - "text": "Consider establishing a national human rights institution in accordance with the Paris Principles, which should strengthen the human rights infrastructure in Kazakhstan", - "values": [ - "National Human Rights Institution" - ] - }, - { - "text": "Adopt further law amendments to abolish the State Security Court or, at a minimum, ensure that civilians are not tried for crimes not listed under the jurisdiction of the court and either release political activists in detention or try their cases in civilian courts", - "values": [ - "Justice" - ] - }, - { - "text": "Give greater importance to the recommendations made by the Committee of the ILO Experts as regards the combat of slavery labour ", - "values": [ - "International instruments", - "Labour" - ] - }, - { - "text": "Put continue working on its capacity-building programme for good governance", - "values": [ - "Justice" - ] - }, - { - "text": "Continue its policy of promoting and protecting the rights of indigenous peoples by consolidating it with further measures to ensure the full exercise of the rights of all components of Namibian society while respecting its traditions and identity ", - "values": [ - "Indigenous peoples" - ] - }, - { - "text": "Ratify and implement CRPD", - "values": [ - "Disabilities", - "International instruments" - ] - }, - { - "text": "Take measures to give adequate enforcement to Law No. 20.507, such as developing a standard operating procedure to identify victims of trafficking ", - "values": [ - "Trafficking" - ] - }, - { - "text": "Implement effective and coordinated measures to prevent violence against women, especially against young women and girls, and ensure that perpetrators of violence are brought to justice", - "values": [ - "Rights of the Child", - "Women's rights" - ] - }, - { - "text": "Increase efforts in the war on drugs at all levels", - "values": [ - "Public security" - ] - }, - { - "text": "Launch a broad public awareness and education campaign among the population and authorities in order to ensure effectiveness of the new legislative framework prohibiting child marriage at less than 18 years of age", - "values": [ - "Human rights education and training", - "Rights of the Child" - ] - }, - { - "text": "Ensure adequate training of police in order to increase their capability to deal with domestic violence cases, and take further steps to raise public awareness of domestic violence as a criminal offence ", - "values": [ - "Human rights education and training", - "Rights of the Child", - "Women's rights" - ] - }, - { - "text": "Adopt and implement an action plan to end impunity and reinforce its judicial system", - "values": [ - "Impunity", - "Justice" - ] - }, - { - "text": "Prohibit and appropriately sanction corporal punishment", - "values": [ - "Torture and other CID treatment" - ] - }, - { - "text": "Reform the penitentiary system in order to lessen prison overcrowding and ensure the necessary sanitary conditions for inmates, enhance access to medical services and reduce to a minimum and investigate harsh treatment or abuse of authority by prison personnel ", - "values": [ - "Detention", - "Human rights violations by state agents", - "Right to health", - "Torture and other CID treatment" - ] - }, - { - "text": "Strengthen efforts to protect, in particular, children with disabilities against any form of discrimination, including by envisaging awareness-raising campaigns.", - "values": [ - "Disabilities", - "Human rights education and training", - "Rights of the Child" - ] - }, - { - "text": "Strengthen efforts to eliminate discrimination against women", - "values": [ - "Women's rights" - ] - }, - { - "text": "Seek to harmonize the human rights norms in the four countries of the Kingdom according to the international standards", - "values": [ - "General" - ] - }, - { - "text": "Consider ways of improving the authorities' response to hate crimes based on sexual orientation or gender identity", - "values": [ - "Sexual Orientation and Gender Identity" - ] - }, - { - "text": "Continue to improve the access to education, health care and medicine", - "values": [ - "Right to education", - "Right to health" - ] - }, - { - "text": "Consider the ratification of the Framework Convention on Tobacco Control", - "values": [ - "International instruments", - "Right to health" - ] - }, - { - "text": "Extend a standing invitation to all Special Procedures", - "values": [ - "Special procedures" - ] - }, - { - "text": "Consider ratifying the Rome Statute of the International Criminal Court, including its Agreement on the Privileges and Immunities", - "values": [ - "International instruments", - "Justice" - ] - }, - { - "text": "Inform Foreign Missions regularly of efforts to ensure compliance with consular notification and access for foreign nationals in United States custody at all levels of law enforcement", - "values": [ - "Other" - ] - }, - { - "text": "Consider the ratification of the Rome Statute of the International Criminal Court", - "values": [ - "International instruments", - "Justice" - ] - }, - { - "text": "Extend an open and permanent invitation to all United Nations special procedures in addition to the existing cooperation ", - "values": [ - "Special procedures" - ] - }, - { - "text": "Implement the employment priority strategy and ensure equal employment opportunities to urban and rural residents", - "values": [ - "Development" - ] - }, - { - "text": "Review its domestic legislation to bring it into full conformity with all human rights conventions to which it is a party, especially CEDAW and the Convention on the Rights of the Child and to implement specific recommendations made by the Committee on the Elimination of Discrimination against Women in this regard.", - "values": [ - "International instruments", - "Treaty bodies", - "Women's rights" - ] - }, - { - "text": "Adopt measures aimed at strengthening the work of the Council of National Minorities so as to address the situation of particularly vulnerable racial and ethnic groups ", - "values": [ - "Minorities" - ] - }, - { - "text": "Further develop its sound social policies in order to increase the quality of life of its people, particularly in the neediest areas ", - "values": [ - "ESC rights - general" - ] - }, - { - "text": "Implement its recently enacted National Action Plan on Women, Peace and Security, and in the ongoing conflict with ISIL, take measures to promote the protection of women, including those held captive by ISIL", - "values": [ - "Women's rights" - ] - }, - { - "text": "Ensure the speedy passage and enactment of the Domestic Violence Bill through Parliament as a matter of urgency", - "values": [ - "Rights of the Child", - "Women's rights" - ] - }, - { - "text": "Ratify the International Convention on the Protection of the Rights of All Migrant Workers and their Families ", - "values": [ - "International instruments", - "Labour", - "Migrants" - ] - }, - { - "text": "End prosecutions under articles 156 and 156a of the Criminal Code for exercising freedom of religion and expression", - "values": [ - "Freedom of opinion and expression", - "Freedom of religion and belief" - ] - }, - { - "text": "Continue efforts to alleviate discrimination and support inclusion efforts for members of minority groups", - "values": [ - "Minorities", - "Racial discrimination" - ] - }, - { - "text": "Comply with the request to visit by the Working Group on Enforced or Involuntary Disappearances.", - "values": [ - "Enforced disappearances" - ] - }, - { - "text": "Continue strengthening its successful social programs in favour of its people", - "values": [ - "ESC rights - general" - ] - }, - { - "text": "Determine the whereabouts of children whose fate is unknown", - "values": [ - "Rights of the Child" - ] - }, - { - "text": "Ensure the effective implementation of the Family Peace Act to address the issue of domestic violence", - "values": [ - "Rights of the Child", - "Women's rights" - ] - }, - { - "text": "Continue reforms for further liberalization and humanization of judicial-legal system ", - "values": [ - "Justice" - ] - }, - { - "text": "Pursue its efforts to combat poverty and continue applying measures to mitigate the impact of the economic and financial crisis on Yemeni people and share its pioneering experience in this regard with other concerned States.", - "values": [ - "Poverty" - ] - }, - { - "text": "Continue to combat racism and discrimination and adopt effective national legislation in this regard ", - "values": [ - "Racial discrimination" - ] - }, - { - "text": "Materialize the prearranged visit with the Special Rapporteur on the question of Torture", - "values": [ - "Special procedures", - "Torture and other CID treatment" - ] - }, - { - "text": "Continue and strengthen measures to fight against malnutrition, both chronic and acute", - "values": [ - "Right to food" - ] - }, - { - "text": "Strengthen efforts to prevent and punish the crimes of child prostitution, pedophilia and child pornography ", - "values": [ - "Rights of the Child" - ] - }, - { - "text": "Continue positive efforts towards implementation of relevant legislation pertaining to, among others, the prohibition of certain cultural practices adjudged as harmful ", - "values": [ - "ESC rights - general", - "Torture and other CID treatment" - ] - }, - { - "text": "Continue its efforts aiming at providing adequate housing to all its citizens", - "values": [ - "Right to housing" - ] - }, - { - "text": "Step up its efforts to complete the reform of its judicial system, and if necessary to request technical assistance from the Office of the High Commissioner for Human Rights in this regard", - "values": [ - "Justice", - "Technical assistance and cooperation" - ] - }, - { - "text": "Call for technical assistance for capacity-building to fulfil international treaty reporting obligations", - "values": [ - "Technical assistance and cooperation", - "Treaty bodies" - ] - }, - { - "text": "Encourage the ratification of CPED", - "values": [ - "Enforced disappearances", - "International instruments" - ] - }, - { - "text": "Move to abolish the death penalty, accede to the Second Optional Protocol to the International Covenant on Civil and Political Rights", - "values": [ - "Death penalty", - "International instruments" - ] - }, - { - "text": "Establish without delay a moratorium on the application of the death penalty with a view to its definitive abolition", - "values": [ - "Death penalty" - ] - }, - { - "text": "Continue efforts to ensure equality of rights and opportunities between women and men in all spheres of society, through legal recognition, the implementation of special measures and the elimination of disparities in opportunities between women and men", - "values": [ - "Women's rights" - ] - }, - { - "text": "Recommended further strengthening cooperation through open invitations to Special Procedures", - "values": [ - "Special procedures" - ] - }, - { - "text": "Fully align the Internet law with international and European standards", - "values": [ - "Freedom of opinion and expression" - ] - }, - { - "text": "Review its respective Decree of 2016 related to protection of human rights defenders in order to ensure wider participation of civil society and enhanced protection of human rights defenders and their families", - "values": [ - "Human rights defenders" - ] - }, - { - "text": "Consider the possibility of ratifying the Optional Protocol to the Convention against Torture and Other Cruel, Inhuman or Degrading Treatment or Punishment", - "values": [ - "International instruments", - "Torture and other CID treatment", - "Treaty bodies" - ] - }, - { - "text": "Ratify CRPD, CAT, CPED and ICRMW ", - "values": [ - "Disabilities", - "Enforced disappearances", - "International instruments", - "Labour", - "Migrants", - "Torture and other CID treatment" - ] - }, - { - "text": "Guarantee the effective exercise of freedom of expression, assembly and association, by reforming its legislation, notably so as not to hamper the legitimate work of non-governmental organizations and human rights defenders", - "values": [ - "Civil society", - "Freedom of association and peaceful assembly", - "Freedom of opinion and expression", - "Human rights defenders" - ] - }, - { - "text": "Take promptly effective measures to safeguard the human rights of refugees and asylum seekers in Papua New Guinea and end indefinite mandatory detention of asylum seekers", - "values": [ - "Asylum-seekers - refugees", - "Detention" - ] - }, - { - "text": "Undertake awareness-raising campaigns to sensitize law enforcement officials and the judiciary on violence against women and girls, within the framework of the new Law 348, the Comprehensive Act on guaranteeing a life free of violence for women", - "values": [ - "Rights of the Child", - "Women's rights" - ] - }, - { - "text": "Continue its efforts to combat corruption, including through a framework of legislative and administrative reforms", - "values": [ - "Corruption" - ] - }, - { - "text": "Pursue the efforts towards reconciliation and the strengthening of national unity, and to address post-conflict concerns such as the return and resettlement of internally displaced people, and the social rehabilitation and reintegration of former combatants", - "values": [ - "Internally displaced persons", - "Justice" - ] - }, - { - "text": "Continue to implement strategies to reduce poverty and to improve and promote education \n\n", - "values": [ - "Poverty", - "Right to education" - ] - }, - { - "text": "Advance significantly in the submission of overdue reports to different Treaty Bodies, as well as sign and ratify the Optional Protocol to the International Covenant on Economic, Social and Cultural Rights - the Optional Protocol to the Convention on the Elimination of All Forms of Discrimination against Women - the two Optional Protocols to the Convention on the Rights of the Child - the International Convention for the Protection of All Persons from Enforced Disappearance - and the Optional Protocol to the Convention against Torture and Other Cruel, Inhuman or Degrading Treatment or Punishment \n", - "values": [ - "International instruments", - "Treaty bodies" - ] - }, - { - "text": "Continue its efforts in favour of the rights of foreign workers, in particular, by ensuring that employers properly comply with national legislation and by continuing its cooperation with countries of origin of these foreign workers ", - "values": [ - "Labour", - "Migrants" - ] - }, - { - "text": "Consider debating and adopting the framework of the law on the right to food", - "values": [ - "Right to food" - ] - }, - { - "text": "Create an NHRI in conformity with the Paris Principles ", - "values": [ - "National Human Rights Institution" - ] - }, - { - "text": "Exert more concrete efforts to fully realize the right to life, liberty and security of the person, as well as respect for the rule of law in national institutions", - "values": [ - "Justice", - "Other" - ] - }, - { - "text": "Guarantee journalists and media personnel safety and security", - "values": [ - "Freedom of the press" - ] - }, - { - "text": "Ensure the diligent investigation of allegations of excessive use of force by its own security and militia", - "values": [ - "Human rights violations by state agents" - ] - }, - { - "text": "Pass a decree that recognizes to the Truth for Reconciliation Commission of Thailand the power to gather information from any public or private entity as well as to call all kinds of witnesses", - "values": [ - "Justice" - ] - }, - { - "text": "Pursue and strengthen its efforts to improve the situation of minorities, in particular of Roma, and allocate sufficient resources for an effective implementation of the National Roma Integration Strategy", - "values": [ - "Minorities" - ] - }, - { - "text": "Take necessary measures to guarantee all children immediate registration at birth by simplifying administrative procedures, while increasing awareness-raising activities on the subject", - "values": [ - "Rights of the Child", - "Statelessness and the right to nationality" - ] - }, - { - "text": "Ensure the realization, without discrimination, of the right to education for all", - "values": [ - "Right to education" - ] - }, - { - "text": "Continue efforts to implement recommendations 151 and 152 from the previous universal periodic review on the gender pay gap and women\u2019s participation in decision-making processes", - "values": [ - "Women's rights" - ] - }, - { - "text": "Consider establishing a moratorium on death penalty.", - "values": [ - "Death penalty" - ] - }, - { - "text": "Adopt legal measures to punish domestic violence ", - "values": [ - "Rights of the Child", - "Women's rights" - ] - }, - { - "text": "Develop its normative basis in the area of the protection of fundamental rights and freedoms", - "values": [ - "General" - ] - }, - { - "text": "Respect the right to life and stop killing its own people", - "values": [ - "General" - ] - }, - { - "text": "Guarantee respect of freedom of opinion and expression, by safeguarding the security of journalists and the independence of the media", - "values": [ - "Freedom of opinion and expression", - "Freedom of the press" - ] - }, - { - "text": "Consider conducting studies on domestic violence, maltreatment and abuse within the family as well as intimidation at schools, in accordance with the recommendations made by the Committee on the Rights of the Child", - "values": [ - "Rights of the Child", - "Treaty bodies" - ] - }, - { - "text": "Hold free and fair elections as soon as possible ", - "values": [ - "Elections" - ] - }, - { - "text": "Implement the national plan of action to promote gender equality and strategies to address gender-based violence ", - "values": [ - "Women's rights" - ] - }, - { - "text": "Continue its efforts in favour of persons with disabilities, by meeting their specific needs, particularly in education and health", - "values": [ - "Disabilities", - "Right to education", - "Right to health" - ] - }, - { - "text": "Cooperate with the United Nations Special Rapporteur on the situation of human rights in the country", - "values": [ - "Special procedures" - ] - }, - { - "text": "Continue implementing measures aimed at improving the coverage and quality of education services, particularly in remote areas ", - "values": [ - "Right to education" - ] - }, - { - "text": "Develop a national action plan for FARDC in accordance with United Nations Security Council resolution 1612 2005, working closely with the United Nations task force on monitoring and reporting, and prioritize the reintegration of children associated with armed groups, with a focus on family tracing and reunification, the provision of psychosocial support as well as education and vocational training", - "values": [ - "Rights of the Child" - ] - }, - { - "text": "Implement the comprehensive national programme on human rights protection efficiently and within the envisaged time ", - "values": [ - "General" - ] - }, - { - "text": "Continue its efforts in the field of human trafficking and most importantly facilitate access to justice for the victims ", - "values": [ - "Trafficking" - ] - }, - { - "text": "Further strengthen and provide all the appropriate means (financial and institutional) for the national organizations for defence of human rights so that they can pursue and achieve their objectives ", - "values": [ - "General" - ] - }, - { - "text": "The Parliament to dismiss the proposed Anti-homosexuality Bill 2009 ", - "values": [ - "Sexual Orientation and Gender Identity" - ] - }, - { - "text": "Strengthen further ongoing efforts and steps aimed at reducing poverty and ensuring economic and social rights, particularly the right to food, for its people", - "values": [ - "ESC rights - general", - "Poverty", - "Right to food" - ] - }, - { - "text": "Retain the Overseas Domestic Worker visa as a measure to safeguard against abuses of migrant workers ", - "values": [ - "Labour", - "Migrants" - ] - }, - { - "text": "Improve its cooperation with the United Nations Treaty Bodies by submitting overdue reports as a matter of priority", - "values": [ - "Treaty bodies" - ] - }, - { - "text": "Speed up the adjustment of national legislation to the Convention on the Rights of the Child, both at State and autonomous regions levels", - "values": [ - "International instruments", - "Rights of the Child" - ] - }, - { - "text": "Consider imposing adequate sanctions on parents who fail to send their children to school.", - "values": [ - "Rights of the Child" - ] - }, - { - "text": "Take further steps to improve the conditions of vulnerable categories of its population, in particular children in poverty, who face food insecurity and mistreatments, and disabled people, who are still victims of stigmatization and discrimination", - "values": [ - "Disabilities", - "Poverty", - "Right to food", - "Rights of the Child" - ] - }, - { - "text": "Take steps to combat racial discrimination encountered by children belonging to certain minorities and adopt legislation to combat discrimination experienced by children living with disabilities since there is no specific legislation in this area ", - "values": [ - "Minorities", - "Racial discrimination", - "Rights of the Child" - ] - }, - { - "text": "Attention be paid to CERD's observation to strengthen the legislative framework in the area of non-discrimination with a special attention to gender equality, ethnic minority, indigenous people and migrants regardless of their minority status ", - "values": [ - "Indigenous peoples", - "Migrants", - "Minorities", - "Racial discrimination", - "Treaty bodies", - "Women's rights" - ] - }, - { - "text": "Develop a draft law guaranteeing the protection of human rights defenders.", - "values": [ - "Human rights defenders" - ] - }, - { - "text": "Refrain from preventing or hindering the restoration of Islamic holy shrines by the Waqf", - "values": [ - "Freedom of religion and belief" - ] - }, - { - "text": "Become party to the remaining United Nations human rights instruments, in particular the International Convention on the Protection of the Rights of All Migrant Workers and Members of Their Families", - "values": [ - "International instruments", - "Labour", - "Migrants" - ] - }, - { - "text": "Ratify the OP-CAT and recognize the competence of CAT to examine individual complaints", - "values": [ - "Detention", - "International instruments", - "Torture and other CID treatment", - "Treaty bodies" - ] - }, - { - "text": "Pursue the implementation of the regional refugee housing programme in municipalities", - "values": [ - "Asylum-seekers - refugees", - "Right to housing" - ] - }, - { - "text": "Establish a moratorium on the use of the death penalty with a view to its permanent abolition", - "values": [ - "Death penalty" - ] - }, - { - "text": "Continue its efforts to reach the international standard of 0.7% of the GDP devoted to official development assistance", - "values": [ - "Development" - ] - }, - { - "text": "Continue the policy of eliminating inequalities between men and women", - "values": [ - "Women's rights" - ] - }, - { - "text": "Continue to generate employment opportunities and train people forself-employment ", - "values": [ - "Development" - ] - }, - { - "text": "Ensure that any legislative modification, such as the enactment of the Bill of Rights, maintains the level of protection that the current Human Rights Act guarantees", - "values": [ - "General" - ] - }, - { - "text": "Implement a comprehensive plan of action envisaged to protect the rights and improve the life conditions of women and children pertaining to ethnic minorities", - "values": [ - "Minorities", - "Rights of the Child", - "Women's rights" - ] - }, - { - "text": "Introduce alternative measures to pre-trial detention for minors wherever possible, and develop clear rules for the treatment of minors in police custody and monitor their effective implementation in practice", - "values": [ - "Detention", - "Rights of the Child" - ] - }, - { - "text": "Strengthen the implementation of policies to permit teenaged mothers to return to formal education and sit exams after giving birth, aimed at breaking cycles of poverty, teenage pregnancy and domestic abuse", - "values": [ - "Poverty", - "Right to education", - "Rights of the Child", - "Women's rights" - ] - }, - { - "text": "Investigate and hold accountable police and security officers who attacked human rights defenders, journalists and civilians during the 2011 post-election period ", - "values": [ - "Freedom of the press", - "Human rights defenders", - "Human rights violations by state agents" - ] - }, - { - "text": "Make efforts to design and adopt policies and programmes to raise awareness concerning the ill-treatment and abuse of children", - "values": [ - "Human rights education and training", - "Rights of the Child", - "Torture and other CID treatment" - ] - }, - { - "text": "Bring the age of criminal responsibility of minors to 12 years", - "values": [ - "Justice", - "Rights of the Child" - ] - }, - { - "text": "Abolish corporal punishment, and cruel, inhuman, and degrading treatment in general, and public floggings, eye-gouging, flogging of school children, and amputation of limbs in particular", - "values": [ - "Rights of the Child", - "Torture and other CID treatment" - ] - }, - { - "text": "Develop further and implement policies and legislation aimed at gender equality, particularly with regard to acquisition of nationality and to sexual or domestic violence ", - "values": [ - "Women's rights" - ] - }, - { - "text": "Progressively reduce the number of offences liable to death penalty and consider subsequent measures towards its complete abolition ", - "values": [ - "Death penalty" - ] - }, - { - "text": "Implement the Strategic Plan for the prevention, detection, and repression regarding violence against women, and ensure that relevant departments have adequate resources to implement the Plan ", - "values": [ - "Women's rights" - ] - }, - { - "text": "Continue national efforts in granting humanitarian aid to the Syrian refugees with the support of the international community", - "values": [ - "Asylum-seekers - refugees", - "Technical assistance and cooperation" - ] - }, - { - "text": "Fiji is committed to ratifying/acceding to all international human rights instruments within 10 years and states that the ratification of optional protocols will be the prerogative of the Fijian Parliament.", - "values": [ - "International instruments" - ] - }, - { - "text": "Strengthen the technical capabilities of the judicial and legal institutions ", - "values": [ - "Justice" - ] - }, - { - "text": "Continue applying strategies to reduce criminality, address sexual abuse and child trafficking, and protect civilians from criminals.", - "values": [ - "Public security", - "Rights of the Child", - "Trafficking" - ] - }, - { - "text": "Ratify without reservations the Optional Protocol to the CEDAW", - "values": [ - "International instruments", - "Women's rights" - ] - }, - { - "text": "Prevent more effectively racially motivated or xenophobic offences, investigate those cases and prosecute the perpetrators ", - "values": [ - "Racial discrimination" - ] - }, - { - "text": "Fulfil the Government aim of limiting the use of capital punishment promptly by reducing the scope of crimes subject to the death penalty.", - "values": [ - "Death penalty" - ] - }, - { - "text": "Intensify its efforts to cooperate with the international community to alleviate the repercussions of the crisis on Syrian citizens", - "values": [ - "Technical assistance and cooperation" - ] - }, - { - "text": "Consider ratifying the ILO Convention No. 189 concerning Decent Work for Domestic Workers", - "values": [ - "International instruments", - "Labour" - ] - }, - { - "text": "Favourably consider ratification the Convention on the Rights of Persons with Disabilities as soon as possible ", - "values": [ - "Disabilities", - "International instruments" - ] - }, - { - "text": "Reform the judicial system to provide rehabilitation to youth offenders and implement the Juvenile Justice and Welfare Act", - "values": [ - "Justice", - "Rights of the Child" - ] - }, - { - "text": "Establish a national human rights institution accredited by the International Coordinating Committee ", - "values": [ - "National Human Rights Institution" - ] - }, - { - "text": "Strengthen legislative, policy and institutional measures to prevent, combat and punish human trafficking, and ensure that victims are identified, aware of their rights, and referred to appropriate services", - "values": [ - "Trafficking" - ] - }, - { - "text": "Cooperate with the human rights mechanisms in particular the Special Rapporteur on the situation of human rights in Eritrea ", - "values": [ - "Special procedures" - ] - }, - { - "text": "Approve the roadmap on the reduction of emissions resulting from deforestation and forest degradation, on the role of conservation and sustainable forest management and on the reinforcement of forest carbon stocks", - "values": [ - "Environment" - ] - }, - { - "text": "Ensure that the laws concerning non-governmental organizations do not impose undue obstacles for their functioning ", - "values": [ - "Civil society" - ] - }, - { - "text": "Consider the possibility of ensuring free and compulsory education, at least at the primary level", - "values": [ - "Right to education" - ] - }, - { - "text": "Ensure effective and systematic application of the principle of prior consultation with indigenous peoples, inter alia in its conservation efforts, including by providing specific regulatory or legislative framework", - "values": [ - "Indigenous peoples" - ] - }, - { - "text": "End the use of harassment, detention, arrest, and extralegal measures such as enforced disappearance to control and silence human rights activists as well as their family members and friends", - "values": [ - "Detention", - "Enforced disappearances", - "Human rights defenders" - ] - }, - { - "text": "Fully align its national legislation with the Rome Statute of the International Criminal Court and ratify the Agreement on Privileges and Immunities of the Court", - "values": [ - "International instruments", - "Justice" - ] - }, - { - "text": "Create new school structures in the more distant villages and improve the transport system ", - "values": [ - "Right to education" - ] - }, - { - "text": "Take suitable action to address discriminatory practices in the engagement with national minorities and, in particular, the double discrimination faced by women from such minority groups", - "values": [ - "Minorities", - "Racial discrimination", - "Women's rights" - ] - }, - { - "text": "Continue to work towards creating an environment of mutual trust so that the achievements and the investments made by the Government and people of the Bolivarian Republic of Venezuela will not be lost", - "values": [ - "General" - ] - }, - { - "text": "Provide better training to police when dealings with girls victims of sexual violence", - "values": [ - "Human rights education and training", - "Rights of the Child", - "Women's rights" - ] - }, - { - "text": "Ensure the integration and effective implementation of strategies on poverty alleviation, social security, gender equality and the protection of child rights", - "values": [ - "ESC rights - general", - "Rights of the Child", - "Women's rights" - ] - }, - { - "text": "Strengthen the law on domestic violence through the development of campaigns to reduce physical, verbal and psychological aggression within the family, the establishment of mechanisms to prevent violence and protect women and children in a situation of abuse and to criminalize sexual abuse as a criminal offence ", - "values": [ - "Rights of the Child", - "Women's rights" - ] - }, - { - "text": "Give concrete shape to the project for the creation of a High Council for human rights and freedoms that has been submitted to the President, so that respect for human rights will be guaranteed in the constitutional reform ", - "values": [ - "Other" - ] - }, - { - "text": "Continue to implement the legislation on domestic violence and ensure training of law enforcement officials to identify all forms of domestic violence", - "values": [ - "Rights of the Child", - "Women's rights" - ] - }, - { - "text": "Take every necessary measure to ensure that no children under the age of 18 are recruited into armed forces, releasing unconditionally all children previously recruited ", - "values": [ - "Rights of the Child" - ] - }, - { - "text": "Study the possibility of creating a national system for the follow-up of international recommendations on human rights", - "values": [ - "Special procedures", - "Treaty bodies", - "UPR process" - ] - }, - { - "text": "Remove norms, including at the constitutional level, that may be deemed as an exemption from the prohibition of discrimination, and take practical measures for its implementation", - "values": [ - "Other" - ] - }, - { - "text": "Intensify the fight against impunity.", - "values": [ - "Impunity" - ] - }, - { - "text": "Ratify the two Optional Protocols to the Convention on the Rights of the Child", - "values": [ - "International instruments", - "Rights of the Child" - ] - }, - { - "text": "Adopt immediate measures, including reviewing legislation and developing comprehensive strategies to eradicate trafficking in children, sexual exploitation and involvement of adolescents in prostitution ", - "values": [ - "Rights of the Child", - "Trafficking" - ] - }, - { - "text": "Accelerate the adoption process of the Law on the Prevention and Punishment of Torture and Enforced Disappearances", - "values": [ - "Enforced disappearances", - "Torture and other CID treatment" - ] - }, - { - "text": "The Maldives is committed to eliminate the menace of human trafficking in the Maldives. The Maldives ratified its first legislations criminalizing trafficking in persons in 2013. The Government is working closely with international partners such as the International Organisation for Migration to implement policies and measures as well as in providing adequate trainings and awareness campaigns on the issue of trafficking. It is with this commitment that the Parliament accelerated in passing the Protocol to prevent, Suppress and Punish Trafficking in Persons, Especially Women and Children from Parliament in April this year. The Government is hopeful to complete the process of acceding to the Protocol in due course.", - "values": [ - "International instruments", - "Trafficking" - ] - }, - { - "text": "Share with other countries its experiences in poverty reduction and agricultural development, education and health care.", - "values": [ - "Poverty", - "Right to education", - "Right to health" - ] - }, - { - "text": "Assess in terms of the fight against HIV/AIDS and Malaria its assistance needs and request such assistance particularly from the World Health Organisation", - "values": [ - "HIV - Aids", - "Right to health", - "Technical assistance and cooperation" - ] - }, - { - "text": "Amend the citizenship law to enable women to transfer nationality to their children without restriction and on an equal basis with men", - "values": [ - "Women's rights" - ] - }, - { - "text": "Ensure that all girls and women are accepted as students, independent of their status as engaged, married or pregnant ", - "values": [ - "Right to education", - "Rights of the Child", - "Women's rights" - ] - }, - { - "text": "Introduce appropriate legislative measures criminalizing all forms of violence against women ", - "values": [ - "Women's rights" - ] - }, - { - "text": "Call on the international community to provide the much-needed technical and technological know-how and finances to Mauritius in support of its efforts to attain full enjoyment of civil and political rights as well as economic, social and cultural rights for its population", - "values": [ - "Technical assistance and cooperation" - ] - }, - { - "text": "Take effective measures to raise women\u2019s status, combat violence against women and eliminate discrimination against women", - "values": [ - "Women's rights" - ] - }, - { - "text": "Speed up the international legal cooperation mechanisms in the judicial bodies and the Prosecutor Office, to ensure due process, specifically in cases where the person concerned is protected by an asylum decision or refugee status", - "values": [ - "Asylum-seekers - refugees", - "Justice" - ] - }, - { - "text": "Conduct thorough and impartial investigations into all allegations of killing, torture and physical abuse, and bring to justice anyone suspected of having committed excessive use of force, torture or other human rights violations ", - "values": [ - "Extrajudicial executions", - "Torture and other CID treatment" - ] - }, - { - "text": "Continue to work to strengthen national human rights and democratic institutions ", - "values": [ - "General" - ] - }, - { - "text": "Consider ratifying OP-CAT", - "values": [ - "Detention", - "International instruments", - "Torture and other CID treatment" - ] - }, - { - "text": "Take measures to address the increase in racist and xenophobic violence, including the provision of courses and training on discrimination for law enforcement personnel, judicial authorities and health professionals", - "values": [ - "Human rights education and training", - "Racial discrimination" - ] - }, - { - "text": "Adopt and ratify ICRMW", - "values": [ - "International instruments", - "Labour", - "Migrants" - ] - }, - { - "text": "Continue its efforts to ensure greater promotion of the rights of women in particular those of girls in the areas of education and health care.", - "values": [ - "Right to education", - "Right to health", - "Rights of the Child", - "Women's rights" - ] - }, - { - "text": "Include in the school system at all levels, appropriate measures in the field of human rights education, in accordance with the Plan of Action of the World Programme for Human Rights Education, including appropriate training of law enforcement officials", - "values": [ - "Human rights education and training" - ] - }, - { - "text": "Constantly monitor the implementation of the national plan for the eradication of gender-based violence against children adolescents and women, in order to ensure the proper investigation, prosecution and punishment of the persons responsible for acts of violence against women", - "values": [ - "Rights of the Child", - "Women's rights" - ] - }, - { - "text": "Launch media campaigns to raise awareness of human rights", - "values": [ - "Human rights education and training" - ] - }, - { - "text": "Intensify its efforts to combat racial hatred and racially-motivated violence by allowing the introduction of public action for the victims", - "values": [ - "Racial discrimination" - ] - }, - { - "text": "Speed up the process of ratification of the Optional Protocol to the Convention on the Elimination of All Forms of Discrimination against Women and the Optional Protocol to the Convention against Torture", - "values": [ - "Detention", - "International instruments", - "Torture and other CID treatment", - "Women's rights" - ] - }, - { - "text": "Strengthen the asylum procedures by, among others, improving legal assistance for asylum-seekers, expediting the procedures, and responding to specific needs of asylum-seekers who are children, women and the elderly ", - "values": [ - "Asylum-seekers - refugees", - "Rights of the Child", - "Women's rights" - ] - }, - { - "text": "Ensure that the freedom of association is guaranteed in accordance with the provisions of article 22 of International Covenant on Civil and Political Rights ICCPR ", - "values": [ - "Freedom of association and peaceful assembly", - "International instruments" - ] - }, - { - "text": "Strengthen cooperation with treaty bodies and the special procedures of the Human Rights Council", - "values": [ - "Special procedures", - "Treaty bodies" - ] - }, - { - "text": "Ratify the Optional Protocol to the Convention against Torture and Other Cruel, Inhuman or Degrading Treatment or Punishment.", - "values": [ - "Detention", - "International instruments", - "Torture and other CID treatment" - ] - }, - { - "text": "Bring all perpetrators of violence against journalists and human rights defenders to justice and ensure that journalists and human rights activists are able to pursue their activities, including by expressing criticism of government policies, without intimidation and harassment ", - "values": [ - "Freedom of the press", - "Human rights defenders" - ] - }, - { - "text": "Establish a national mechanism to monitor and assess the negative effects of unilateral coercive measures on the enjoyment of human rights of the Syrian people", - "values": [ - "Other" - ] - }, - { - "text": "Implement relevant legislation for the full exercise of the right to freedom of expression, peaceful assembly and association", - "values": [ - "Freedom of association and peaceful assembly", - "Freedom of opinion and expression" - ] - }, - { - "text": "Take steps to effectively guarantee the right to education", - "values": [ - "Right to education" - ] - }, - { - "text": "Redouble efforts to put in place an independent, impartial and effective administration of justice", - "values": [ - "Justice" - ] - }, - { - "text": "Ensure full financial and political support for the Human Rights Defenders and Journalists Protection Mechanism, including by allocating to it necessary resources as well as trained and qualified staff", - "values": [ - "Freedom of the press", - "Human rights defenders" - ] - }, - { - "text": "Ensure that its housing policy is drafted and implemented in accordance with international human rights standards, including access to an effective remedy and adequate compensation, and that the necessary assistance is provided to all evicted persons", - "values": [ - "International instruments", - "Right to housing" - ] - }, - { - "text": "Continue its efforts to overcome discrimination based on gender, race, descent and nationality ", - "values": [ - "Minorities", - "Racial discrimination", - "Women's rights" - ] - }, - { - "text": "Consider withdrawing reservations to core international human rights instruments, in particular ICCPR, ICERD and CRC ", - "values": [ - "CP rights - general", - "International instruments", - "Racial discrimination", - "Rights of the Child" - ] - }, - { - "text": "Step up efforts to ensure complementarity and adequate resources for its human rights monitoring and protection of infrastructure", - "values": [ - "General" - ] - }, - { - "text": "Strengthen national policies for the promotion and protection of migrants", - "values": [ - "Migrants" - ] - }, - { - "text": "Repeal all provisions that may lead to discrimination on the grounds of sexual orientation or gender identity and respect fundamental freedoms of all the citizens", - "values": [ - "Sexual Orientation and Gender Identity" - ] - }, - { - "text": "Allocate adequate financial means and put proper legal foundations in place in order to ensure that the concerns expressed by the National Mechanism for the Prevention of Torture are addressed", - "values": [ - "Detention", - "Torture and other CID treatment" - ] - }, - { - "text": "Give full effect to the United Nations Declaration on the Rights of Indigenous Peoples (UNDRIP) ", - "values": [ - "Indigenous peoples", - "International instruments" - ] - }, - { - "text": "Step up efforts to complete the process to establish a national human rights institution in accordance with the Paris Principles", - "values": [ - "National Human Rights Institution" - ] - }, - { - "text": "Take steps to ensure the legal recognition of all religions and grant each religious minority the possibility of legal registration with a specific ministerial office as a legal public entity", - "values": [ - "Freedom of religion and belief", - "Minorities" - ] - }, - { - "text": "Ensure, in line with the recommendation of the Committee on the Rights of Child, the implementation in practice the prohibition of corporal punishment in schools ", - "values": [ - "Rights of the Child", - "Torture and other CID treatment", - "Treaty bodies" - ] - }, - { - "text": "Implement effectively the legislation on violence against women to combat misogynous stereotypes, discrimination and violence whose victims are women", - "values": [ - "Women's rights" - ] - }, - { - "text": "Devote increasing attention to the struggle against violence against women, especially through the implementation of social measures in this field", - "values": [ - "Women's rights" - ] - }, - { - "text": "Reform its punitive anti-abortion laws", - "values": [ - "Right to health", - "Women's rights" - ] - }, - { - "text": "Guarantee the rights of refugees and migrants and make substantive progress in fighting and preventing xenophobic violence", - "values": [ - "Asylum-seekers - refugees", - "Migrants", - "Racial discrimination" - ] - }, - { - "text": "Continue advancing the protection of workers from third countries in Cyprus, including all victims of trafficking and exploitation in the legal aid programme and ensuring the provision of adequate funding for this ", - "values": [ - "Labour", - "Migrants", - "Trafficking" - ] - }, - { - "text": "Seize this opportunity to do its utmost to safeguard the fundamental rights of all citizens, regardless of gender and ethnicity, in all of its territory, in line with the Universal Declaration of Human Rights, the International Covenants on Human Rights and other relevant human rights instruments ", - "values": [ - "International instruments" - ] - }, - { - "text": "Establish a national body to develop and coordinate services to address the rights of children and child protection issues and ensure full implementation of the Convention on the Rights of the Child", - "values": [ - "International instruments", - "Rights of the Child" - ] - }, - { - "text": "Elaborate a National Plan of Action against racism and xenophobia ", - "values": [ - "Racial discrimination" - ] - }, - { - "text": "Continue to reinforce measures to ensure that detained children get the necessary treatment and assistance", - "values": [ - "Detention", - "Rights of the Child" - ] - }, - { - "text": "Sign and ratify the Convention against Torture and Other Cruel, Inhuman or Degrading Treatment or Punishment and its Optional Protocol Optional Protocol to the International Covenant on Civil and Political Rights Second Optional Protocol to the Covenant on Civil and Political Rights Optional Protocol to the Convention on the Elimination of Discrimination against Women Optional Protocol of the Covenant on Economic, Social and Cultural Rights Convention on the Rights of Persons with Disabilities and its Optional Protocol\n", - "values": [ - "International instruments" - ] - }, - { - "text": "Prioritize respect of the cultural diversity of Roma and integrate it into social policies of the Czech Republic", - "values": [ - "Minorities" - ] - }, - { - "text": "Advance policies for the participation of girls beyond the primary school level and promote strategies and actions to eliminate child early and forced marriage, including moletry", - "values": [ - "Rights of the Child", - "Women's rights" - ] - }, - { - "text": "Take better consideration of the wishes of the child in pursuit of his/her education after the basic school cycle", - "values": [ - "Right to education", - "Rights of the Child" - ] - }, - { - "text": "Adopt and implement the Domestic Violence Bill", - "values": [ - "Rights of the Child", - "Women's rights" - ] - }, - { - "text": "Strengthen measures to prevent, combat and sanction inequality, discrimination and racially motivated violence ", - "values": [ - "Racial discrimination" - ] - }, - { - "text": "Expedite the submission of national reports to the human rights treaty bodies, including to the Committee on the Rights of the Child, the Committee on the Elimination of Discrimination against Women, the Committee against Torture and the Committee on the Rights of Persons with Disabilities", - "values": [ - "Disabilities", - "International instruments", - "Rights of the Child", - "Torture and other CID treatment", - "Treaty bodies", - "Women's rights" - ] - }, - { - "text": "Continue efforts to improve the conditions of those in detention facilities, including prisons, and actively address the issue of prison overcrowding, with a view to ensuring that detention facilities in Rwanda meet international standards", - "values": [ - "Detention" - ] - }, - { - "text": "Maintain its positive efforts to improve the juvenile justice system in conformity with the Convention on the Rights of the Child and the United Nations Standard Minimum Rules for the Administration of Juvenile Justice ", - "values": [ - "International instruments", - "Justice", - "Rights of the Child" - ] - }, - { - "text": "Ratify CAT without undue delay ", - "values": [ - "International instruments", - "Torture and other CID treatment" - ] - }, - { - "text": "Take immediate steps to repeal laws which criminalize and/or restrict freedom of expression and of the media, in particular the Sedition and Subversive Activities Act (1938), the Proscribed Publications Act (1968) and provisions of the Suppression of Terrorism Act (2008)", - "values": [ - "Counter-terrorism", - "Freedom of opinion and expression", - "Freedom of the press" - ] - }, - { - "text": "Implement the 2011-2014 action plan for children and the Strategy for combating violence against children 2012-2015, provide sufficient resources for the Strategy, enact a comprehensive national law on the rights of the child, ensure effective means of reporting violence against children and provide material and psychological assistance to victims of such violence", - "values": [ - "Rights of the Child" - ] - }, - { - "text": "Continue and intensify public awareness campaigns against harmful traditional practices ", - "values": [ - "Human rights education and training", - "Torture and other CID treatment" - ] - }, - { - "text": "Mobilize national and international stakeholders for the continued implementation of its National Human Rights Roadmap", - "values": [ - "General" - ] - }, - { - "text": "Step up efforts to continue to meet the basic needs of the poor and other vulnerable groups.", - "values": [ - "Poverty" - ] - }, - { - "text": "Adopt specific measures to combat discrimination against children with disabilities in accessing an inclusive education", - "values": [ - "Disabilities", - "Right to education", - "Rights of the Child" - ] - }, - { - "text": "Promote the access of persons placed in migration detention centres to free legal aid", - "values": [ - "Detention", - "Justice", - "Migrants" - ] - }, - { - "text": "Establish an official moratorium on executions with a view to the definitive elimination of the death penalty from the legislation", - "values": [ - "Death penalty" - ] - }, - { - "text": "Ensure the availability and quality of health services", - "values": [ - "Right to health" - ] - }, - { - "text": "Carry out education and awareness-raising programs on the human rights of lesbian, gay, bisexual, transgender and intersex persons", - "values": [ - "Sexual Orientation and Gender Identity" - ] - }, - { - "text": "Implement all possible efforts to combat ill-treatment against foreign workers and to offer, through the Labour Code, adequate protection to all workers in Jordan", - "values": [ - "Labour" - ] - }, - { - "text": "Adopt further measures to fully ensure the right to education of children accompanying rural workers migrating to urban areas", - "values": [ - "Labour", - "Migrants", - "Right to education", - "Rights of the Child" - ] - }, - { - "text": "Adopt specific legislation to ensure equality of women in family, social, economic and political spheres", - "values": [ - "Women's rights" - ] - }, - { - "text": "Strengthen the process for ensuring independent and timely investigation mechanisms to address and eliminate corruption, and provide for and facilitate increased accountability and transparency in this process", - "values": [ - "Corruption" - ] - }, - { - "text": "Continue moving forward with the adoption of effective measures that promote tolerance and respect for foreigners and members of national, racial and ethnic minorities ", - "values": [ - "Asylum-seekers - refugees", - "Migrants", - "Minorities" - ] - }, - { - "text": "Ensure that all hate crimes against lesbian, gay, bisexual, transgender and intersex persons are thoroughly investigated and prosecuted and seek to reduce hate by integrating human rights education into school curricula", - "values": [ - "Sexual Orientation and Gender Identity" - ] - }, - { - "text": "Adopt specific legislation on domestic violence.", - "values": [ - "Rights of the Child", - "Women's rights" - ] - }, - { - "text": "Conclude the development of a national strategy for combating the trafficking in persons and their illicit movement", - "values": [ - "Trafficking" - ] - }, - { - "text": "Continue its efforts towards implementing and enforcing the Haitian Strategy for Development", - "values": [ - "Development" - ] - }, - { - "text": "Strengthen measures to prevent recruitment of children in the armed forces ", - "values": [ - "Rights of the Child" - ] - }, - { - "text": "Eliminate the practice of requiring boys and girls to work in the educational institutions where they are enrolled ", - "values": [ - "Labour", - "Rights of the Child" - ] - }, - { - "text": "Guarantee the rights of persons with disabilities and aim to integrate them in development programmes to ensure their effective participation in society ", - "values": [ - "Disabilities" - ] - }, - { - "text": "Improve the registration of children with a view to ensuring that the statelessness of children is prevented", - "values": [ - "Rights of the Child", - "Statelessness and the right to nationality" - ] - }, - { - "text": "Ratify and implement the Convention against Torture and Other Cruel, Inhuman or Degrading Treatment of Punishment and its Optional Protocol ", - "values": [ - "Detention", - "International instruments", - "Torture and other CID treatment" - ] - }, - { - "text": "Cooperate with the mandate holders of special procedures and treaty bodies", - "values": [ - "Special procedures", - "Treaty bodies" - ] - }, - { - "text": "Ratify the CAT ", - "values": [ - "International instruments", - "Torture and other CID treatment" - ] - }, - { - "text": "Carry out free and fair elections consistent with the expectations of the international election monitoring community", - "values": [ - "Elections" - ] - }, - { - "text": "Heed the call of CEDAW to promote shared parental and caring responsibilities of women and men", - "values": [ - "International instruments", - "Women's rights" - ] - }, - { - "text": "Consider the possibility of ratifying CAT, CED, and ICRMW ", - "values": [ - "Enforced disappearances", - "International instruments", - "Labour", - "Migrants", - "Torture and other CID treatment" - ] - }, - { - "text": "Ensure access to comprehensive human rights training for all prison staff ", - "values": [ - "Detention", - "Human rights education and training" - ] - }, - { - "text": "Improve detention conditions by providing food, water and sanitary installations as well as by reducing prison overcrowding ", - "values": [ - "Detention" - ] - }, - { - "text": "Continue its efforts towards early ratification of the main international human rights treaties, including the International Covenant on Civil and Political Rights and the International Covenant on Economic, Social and Cultural Rights", - "values": [ - "CP rights - general", - "ESC rights - general", - "International instruments" - ] - }, - { - "text": "Consider officially establishing a moratorium on executions with a view to abolishing death penalty ", - "values": [ - "Death penalty" - ] - }, - { - "text": "Consider the possibility of incorporating progressively into its domestic legislation the provisions set out in the international instruments mentioned in paragraphs 73.4, 73.5, 73.6, 73.8, 75.7, 75.11 and 75.18, once it has proceeded to their ratification ", - "values": [ - "International instruments" - ] - }, - { - "text": "Ensure achieving more development in executing cases analysis programmes regarding child rights cases and cooperation with the civil society", - "values": [ - "Civil society", - "Rights of the Child" - ] - }, - { - "text": "Continue and strengthen efforts to prevent torture and ill-treatment in detention facilities and ensure that all allegations of torture are promptly, thoroughly and independently investigated", - "values": [ - "Detention", - "Torture and other CID treatment" - ] - }, - { - "text": "Take measures to address the persistence of preventive detention in police centres and the high risk of ill-treatment", - "values": [ - "Detention", - "Torture and other CID treatment" - ] - }, - { - "text": "Continue the cooperation with OHCHR including on identifying and developing programs for capacity- building and technical assistance", - "values": [ - "Technical assistance and cooperation" - ] - }, - { - "text": "Guarantee availability and quality of health services, in particular in rural and remote areas", - "values": [ - "Right to health" - ] - }, - { - "text": "Adopt a comprehensive law on racial discrimination, with an adequate definition of racial discrimination, in accordance with the International Convention on the Elimination of All Forms of Racial Discrimination", - "values": [ - "International instruments", - "Racial discrimination" - ] - }, - { - "text": "Promote good governance and transparency at the national and atoll administration levels, strengthen public and private sector accountability, and develop a human rights policy and management framework, including annual reporting on their social, environmental and economic impact, with appropriate monitoring and evaluation", - "values": [ - "Business and human rights", - "Corruption" - ] - }, - { - "text": "Step up its efforts to protect civil society space within the country", - "values": [ - "Civil society" - ] - }, - { - "text": "Engage civil society in the UPR follow-up process ", - "values": [ - "Civil society", - "UPR process" - ] - }, - { - "text": "Develop implementation guidelines and to provide necessary budgetary support for the full realization of the Equality Act of 2013, in order to empower women", - "values": [ - "Women's rights" - ] - }, - { - "text": "In accordance with the conclusions adopted by the Committee on the Rights of the Child in 2006, increase measures to stop child labour and to promote social reintegration of child and adolescent victims of exploitation.", - "values": [ - "Labour", - "Rights of the Child", - "Treaty bodies" - ] - }, - { - "text": "Maintain actions aimed at improving the public health system of the country, including in the area of HIV/AIDS", - "values": [ - "HIV - Aids", - "Right to health" - ] - }, - { - "text": "Increase its efforts to address existing gaps in the legislation, including and especially with regard to discrimination against women ", - "values": [ - "Women's rights" - ] - }, - { - "text": "Further promote the country's economic recovery, through reducing poverty and considerably improving infrastructure in service delivery", - "values": [ - "Development", - "Poverty" - ] - }, - { - "text": "Take measure to ensure the independence of the judiciary, including by means of eradicating the system of presidential decisions on the appointment of judges", - "values": [ - "Justice" - ] - }, - { - "text": "Continue its efforts to improve access to justice for all Ukrainians", - "values": [ - "Justice" - ] - }, - { - "text": "Adopt effective measures in order to combat sexual exploitation of children", - "values": [ - "Rights of the Child" - ] - }, - { - "text": "Federal and State Governments, in consultation with civil society, broaden and intensify existing human rights training in schools as well as the routine training of police, security, prison and health personnel, and set up a monitoring and evaluation mechanism to assess progress ", - "values": [ - "Civil society", - "Human rights education and training" - ] - }, - { - "text": "Conduct an analysis of the discriminatory treatments that may be affecting foreigners, especially in the field of employment, and consider amending its legislation in accordance with the result of this study ", - "values": [ - "Labour", - "Migrants", - "Racial discrimination" - ] - }, - { - "text": "Furthermore, based on the model of Sweden, Romanian authorities are preparing a reflection process for the launch of a comprehensive National Plan of Action (NPA) for Human Rights, which will be reviewed annually. Within the framework of this process, which has also been discussed with the Commissioner for Human Rights of the Council of Europe, a conference will be convened this year, at which the authorities and the main stakeholders from the civil society will discuss the guidelines for the Action Plan", - "values": [ - "Civil society" - ] - }, - { - "text": "Protect space for dissent, including by decriminalizing libel and minimizing fines against media outlets", - "values": [ - "Freedom of opinion and expression", - "Freedom of the press" - ] - }, - { - "text": "Continue strengthening efforts to combat discriminatory attitudes towards children with disabilities and promote their participation in all aspects of social and cultural life ", - "values": [ - "Disabilities", - "Rights of the Child" - ] - }, - { - "text": "Implement effective measures to prevent and reduce infant and neonatal mortality in the context of the 2016-2020 Roadmap", - "values": [ - "Right to health", - "Rights of the Child" - ] - }, - { - "text": "Adopt measures to ensure access for minority groups, especially children, to education in their mother tongue ", - "values": [ - "Minorities", - "Right to education", - "Rights of the Child" - ] - }, - { - "text": "Continue its efforts to train the judiciary and law enforcement bodies in the field of human rights as well as its activities to increase the awareness of its population on this subject ", - "values": [ - "Human rights education and training" - ] - }, - { - "text": "Adopt a legislative framework that protects effectively activists in the civil society against all types of reprisals, in particular journalists and human rights defenders", - "values": [ - "Civil society", - "Freedom of the press", - "Human rights defenders" - ] - }, - { - "text": "Take increased measures to protect and provide redress to women at risk of or subjected to gender-based violence.", - "values": [ - "Women's rights" - ] - }, - { - "text": "Intensify efforts to ensure gender equality and eliminate gender- based violence", - "values": [ - "Women's rights" - ] - }, - { - "text": "Seek from the international community and the relevant United Nations agencies the technical and financial assistance needed to help the Government to overcome challenges and the constraints listed in paragraphs 98 to 107 of the national report.", - "values": [ - "Technical assistance and cooperation" - ] - }, - { - "text": "Continue social measures to improve the well-being of those in most need, especially the elderly ", - "values": [ - "Other" - ] - }, - { - "text": "Protect and promote the right of Ethiopians to practise their religious faith or beliefs, including by enhancing the dialogue between different faith communities to address interreligious tensions ", - "values": [ - "Freedom of religion and belief" - ] - }, - { - "text": "Review its criminal legislation in order to incorporate a definition of torture in accordance with the Convention against Torture and Other Cruel, Inhuman or Degrading Treatment or Punishment", - "values": [ - "International instruments", - "Torture and other CID treatment" - ] - }, - { - "text": "Ensure the speedy adoption of the law on protection of human rights defenders by the Parliament and its immediate and effective implementation ", - "values": [ - "Human rights defenders" - ] - }, - { - "text": "Consider its accession to the Convention on the Protection of the Rights of All Migrant Workers and Members of their Families", - "values": [ - "International instruments", - "Labour", - "Migrants" - ] - }, - { - "text": "Reconsider the possibility of lifting reservations to the CRC ", - "values": [ - "International instruments", - "Rights of the Child" - ] - }, - { - "text": "Review its legal and administrative measures with a view to ensuring the dignity and better living conditions of the vulnerable groups, including women and children ", - "values": [ - "Rights of the Child", - "Women's rights" - ] - }, - { - "text": "Extend an invitation to the Special Rapporteur on freedom of opinion and expression and the Special Rapporteur on the right of peaceful assembly and of association to visit Djibouti ", - "values": [ - "Freedom of association and peaceful assembly", - "Freedom of opinion and expression", - "Special procedures" - ] - }, - { - "text": "Slovakia will continue to play an active role in the field of the rights of the child at regional and universal level. As one of the initiators of the elaboration and adoption of the Optional Protocol to the Convention on the Rights of the Child on a Communications Procedure, we will encourage its broad ratification by Member States", - "values": [ - "International instruments", - "Rights of the Child" - ] - }, - { - "text": "Take further measures to improve access to justice for citizens", - "values": [ - "Justice" - ] - }, - { - "text": "Protect ethnic and religious minorities in the country and provide effective reparations when their rights are undermined", - "values": [ - "Freedom of religion and belief", - "Minorities" - ] - }, - { - "text": "Continue to strengthen all its anti-corruption institutions", - "values": [ - "Corruption" - ] - }, - { - "text": "Develop comprehensive policies and programmes on gender-based violence, including training of security forces, prosecutors and judges in order to properly deal with those cases", - "values": [ - "Human rights education and training", - "Women's rights" - ] - }, - { - "text": "Publicly denounce gender-based violence and ensure the effective prosecution of those responsible for such violence, including members of the armed forces and security forces ", - "values": [ - "Human rights violations by state agents", - "Women's rights" - ] - }, - { - "text": "Ratify the international human rights instruments to which Indiais not a State party yet", - "values": [ - "International instruments" - ] - }, - { - "text": "Promote education by adopting additional policies to improve the enrolment of children in basic education, as well as combat discrimination in that field", - "values": [ - "Right to education", - "Rights of the Child" - ] - }, - { - "text": "Establish a mechanism to review the legislation to combat terrorism to guarantee, to the same extent, due protection to human rights and fundamental freedoms ", - "values": [ - "Counter-terrorism" - ] - }, - { - "text": "Continue to take measures to combat intolerance based on ethnic origin, in particular against the Roma community ", - "values": [ - "Minorities", - "Racial discrimination" - ] - }, - { - "text": "Present a standing invitation to United Nations special rapporteurs, including the Special Rapporteur on the promotion and protection of the right to freedom of opinion and expression and the Special Rapporteur on torture and other cruel, inhuman or degrading treatment or punishment, to visit Zambia", - "values": [ - "Freedom of opinion and expression", - "Special procedures", - "Torture and other CID treatment" - ] - }, - { - "text": "Step up its efforts to guarantee freedom of expression as well as the safety of journalists in the country ", - "values": [ - "Freedom of opinion and expression", - "Freedom of the press" - ] - }, - { - "text": "Promote the fair justice principles consistent with international standards, especially by reviewing the legislation and implementation of pretrial detention ", - "values": [ - "Detention" - ] - }, - { - "text": "Combat human trafficking and forced prostitution in particular of children ", - "values": [ - "Rights of the Child", - "Trafficking" - ] - }, - { - "text": "Take the necessary legislative steps to establish a Commission for Truth, a Judicial Mechanism and an Office for Reparations as specified in resolution 30/1", - "values": [ - "Justice" - ] - }, - { - "text": "Accede to the Rome Statute creating the International Criminal Court", - "values": [ - "International instruments", - "Justice" - ] - }, - { - "text": "Collaborate regularly with the treaty bodies by submitting reports which will allow them to monitor the implementation of treaties", - "values": [ - "Treaty bodies" - ] - }, - { - "text": "Bring its national legislation in line with its international obligations", - "values": [ - "General" - ] - }, - { - "text": "Establish a moratorium on the use of the death penalty, with a view to its legal and practical abolition", - "values": [ - "Death penalty" - ] - }, - { - "text": "Continue the process to ratify and implement into domestic law the several international human rights instruments that still wait for this formal acceptance ", - "values": [ - "International instruments" - ] - }, - { - "text": "Ensure the protection of women against sexual violence and ensure the implementation of the "Women, Peace and Security" resolutions of the Security Council, in particular regarding their effective participation in the transitional process", - "values": [ - "Women's rights" - ] - }, - { - "text": "Seek the technical assistance of the international community in order to address challenges in the field of human rights", - "values": [ - "Technical assistance and cooperation" - ] - }, - { - "text": "Submit its periodic reports as soon as possible and establish mechanisms for the implementation of recommendations with the participation of civil society.", - "values": [ - "Civil society", - "Treaty bodies" - ] - }, - { - "text": "Continue carrying out its sound public policies for literacy and use of technological education, recognized and awarded by UNESCO, which benefit especially low economic income populations", - "values": [ - "Right to education" - ] - }, - { - "text": "Take additional concrete steps to combat societal discrimination on the basis of race, sexual orientation, disability or gender identification", - "values": [ - "Disabilities", - "Racial discrimination", - "Sexual Orientation and Gender Identity" - ] - }, - { - "text": "Ratify a certain number of human rights treaties such as the Optional Protocol to the International Covenant on Economic, Social and Cultural Rights", - "values": [ - "ESC rights - general", - "International instruments" - ] - }, - { - "text": "Continue efforts to ensure the implementation of the Millennium Development Goals, in particular by ensuring universal primary education and combating illiteracy, which would guarantee that the population enjoys its social and economic rights", - "values": [ - "Development", - "Right to education" - ] - }, - { - "text": "Proceed to extradite former Bolivian authorities that are legally accused of crimes against humanity, in order to be brought to trial in their country of origin ", - "values": [ - "Justice" - ] - }, - { - "text": "Continue its efforts to consolidate the principles of human rights and public freedoms", - "values": [ - "General" - ] - }, - { - "text": "Closely follow guidelines in the relevant General Assembly resolutions in its endeavours to prevent and combat violence against women and children", - "values": [ - "Rights of the Child", - "Women's rights" - ] - }, - { - "text": "Accelerate efforts towards combating human trafficking, particularly by protecting and rehabilitating victims", - "values": [ - "Trafficking" - ] - }, - { - "text": "Enhance the implementation of the existing laws, policies and mechanisms relating to human rights, enshrined in the second National Human Rights Plan of Action for the period 2009-2013 ", - "values": [ - "General" - ] - }, - { - "text": "Bring military justice into conformity with international standards to ensure the right to a fair trial ", - "values": [ - "Justice" - ] - }, - { - "text": "Ensure that foreigners from third countries are protected from racial discrimination, and encourage high-ranking State officials and politicians to take a clear position against racism and xenophobia", - "values": [ - "Migrants", - "Racial discrimination" - ] - }, - { - "text": "Ratify the Optional Protocol to the Convention against Torture and establish a national preventive mechanism", - "values": [ - "Detention", - "International instruments", - "Torture and other CID treatment", - "Treaty bodies" - ] - }, - { - "text": "Continue to strengthen its human rights institutions and develop further measures to ensure the effective implementation of their mandates ", - "values": [ - "General" - ] - }, - { - "text": "Strengthen its efforts to protect the basic rights of inmates in vulnerable situations and ensure that inmates have access to and knowledge of the proper complaint mechanisms ", - "values": [ - "Detention" - ] - }, - { - "text": "Adopt without delay a uniform Family Code that fully complies with the provisions of CEDAW.", - "values": [ - "International instruments", - "Women's rights" - ] - }, - { - "text": "Redouble its efforts in the comprehensive implementation of the National Plan of Action for Inclusive Education", - "values": [ - "Right to education" - ] - }, - { - "text": "Implement as quickly as possible recommendations drawn up by BICI ", - "values": [ - "Justice" - ] - }, - { - "text": "Pursue efforts to re-establish the A status of the Norwegian Centre for Human Rights, guaranteeing its full independence ", - "values": [ - "National Human Rights Institution" - ] - }, - { - "text": "Put in place a national strategy in the area of public security ", - "values": [ - "Public security" - ] - }, - { - "text": "Continue efforts on the legislative front to combat incitement to hatred, violence and racial discrimination on the grounds of nationality, ethnicity, language, colour, religion or any other grounds, and address different existing challenges and concerns in this regard", - "values": [ - "Freedom of religion and belief", - "Minorities", - "Racial discrimination" - ] - }, - { - "text": "Continue its efforts to implement the national plan on anti-trafficking and the Zimbabwe Agenda for Sustainable Socioeconomic Transformation 2013-2018", - "values": [ - "Development", - "Trafficking" - ] - }, - { - "text": "Strengthen measures to reinvigorate the national economy, including allowing more people-to-people contact through engagement in economic and commercial activities, including tourism", - "values": [ - "Development" - ] - }, - { - "text": "Implement the 2014 recommendation of the Committee on the Rights of Persons with Disabilities to ensure that all medical treatments are provided with free and informed consent and that no one is confined against his will in medical facilities on the basis of actual or perceived disability", - "values": [ - "Disabilities", - "Right to health", - "Treaty bodies" - ] - }, - { - "text": "Establish training programmes for judges focusing on Saudi Arabia's international human rights obligations", - "values": [ - "International instruments", - "Justice" - ] - }, - { - "text": "Continue its efforts to further improve the quality of education and health services", - "values": [ - "Right to education", - "Right to health" - ] - }, - { - "text": "Continue to work to protect the rights of the child ", - "values": [ - "Rights of the Child" - ] - }, - { - "text": "Include human rights education in all curricula and school systems", - "values": [ - "Human rights education and training" - ] - }, - { - "text": "That high-ranking State officials publicly express the recognition of the importance of the role played by human rights defenders, in order to support and protect the legitimate work of human rights defenders and trade union workers.", - "values": [ - "Human rights defenders", - "Labour" - ] - }, - { - "text": "Accede to the Optional Protocol to the Convention against Torture and Other Cruel, Inhuman or Degrading Treatment or Punishment, and establish a national preventive mechanism accordingly ", - "values": [ - "Detention", - "International instruments", - "Torture and other CID treatment" - ] - }, - { - "text": "Duly cooperate with the special procedures of the Human Rights Council and issue a standing invitation to all special procedures ", - "values": [ - "Special procedures" - ] - }, - { - "text": "Continue its efforts towards national reconciliation", - "values": [ - "Justice" - ] - }, - { - "text": "Ensure that, if the amended law decriminalizing libel is adopted, it is implemented in a way that protects freedom of expression", - "values": [ - "Freedom of opinion and expression" - ] - }, - { - "text": "Address the issue of children in immigration detention in a comprehensive manner ", - "values": [ - "Detention", - "Migrants", - "Rights of the Child" - ] - }, - { - "text": "Continue its efforts to establish a legal framework to protect human rights by ratifying core instruments, especially the International Convention on the Elimination of All Forms of Racial Discrimination ", - "values": [ - "International instruments", - "Racial discrimination" - ] - }, - { - "text": "Become a party to the international human rights legal instruments, to which Malaysia has not yet acceded", - "values": [ - "International instruments" - ] - }, - { - "text": "Allow media to take their watchdog role in society.", - "values": [ - "Freedom of the press" - ] - }, - { - "text": "Consider issuing a standing invitation to the United Nations human rights special procedures", - "values": [ - "Special procedures" - ] - }, - { - "text": "Carry out an independent and credible investigation on the allegations of violations of human rights and international humanitarian law", - "values": [ - "International humanitarian law" - ] - }, - { - "text": "Continue with the implementation of national policies against gender-based violence", - "values": [ - "Women's rights" - ] - }, - { - "text": "Ensure indigenous peoples adequate consultation as well as full participation in all legislative or administrative measures affecting them", - "values": [ - "Indigenous peoples" - ] - }, - { - "text": "Take all necessary measures to ensure that employment of children does not interfere with their right to education.", - "values": [ - "Labour", - "Right to education", - "Rights of the Child" - ] - }, - { - "text": "Allow and facilitate immediate, unimpeded and sustained humanitarian access to all parts of the country", - "values": [ - "Other" - ] - }, - { - "text": "Continue its efforts to protect internally displaced persons ", - "values": [ - "Internally displaced persons" - ] - }, - { - "text": "Continue further efforts to improve the educational and health systems in the country", - "values": [ - "Right to education", - "Right to health" - ] - }, - { - "text": "Accede to the Optional Protocol to the Convention on the Elimination of All Forms of Discrimination against Women.", - "values": [ - "International instruments", - "Women's rights" - ] - }, - { - "text": "Ensure that the national human rights commission is given financial autonomy as well as independence for its mandate, immunity and designation of its members, according to the Paris Principles", - "values": [ - "National Human Rights Institution" - ] - }, - { - "text": "Consider ratifying the International Convention on the Protection of the Rights of all Migrant Workers and Members of their Families ", - "values": [ - "International instruments", - "Labour", - "Migrants" - ] - }, - { - "text": "Strengthen the protection and assistance provided to victims in the national action plan against domestic and sexual violence, including measures to encourage complaints, and access to justice, legal advice, medical and psychological attention", - "values": [ - "Rights of the Child", - "Women's rights" - ] - }, - { - "text": "Implement an independent and transparent complaints mechanism to deal with reports of prisoner ill-treatment", - "values": [ - "Detention" - ] - }, - { - "text": "Amend any articles of the Personal Status Law that breach Afghanistan's international obligations or its Constitutional protection of the equal rights of men and women", - "values": [ - "Women's rights" - ] - }, - { - "text": "Pay particular attention to the protection of the most vulnerable sectors of the society, including the Roma.", - "values": [ - "Minorities" - ] - }, - { - "text": "Strengthen human rights education provided to the police, prison staff and the military", - "values": [ - "Human rights education and training" - ] - }, - { - "text": "Include sexual orientation as grounds for protection against hate speech", - "values": [ - "Sexual Orientation and Gender Identity" - ] - }, - { - "text": "Continue applying the social economic strategies and development plans of the country in order to achieve the Millennium Development Goals between now and 2015 ", - "values": [ - "Development" - ] - }, - { - "text": "Seek to expand its targeted measures to reduce discrimination against persons of African descent and indigenous peoples ", - "values": [ - "Indigenous peoples", - "Minorities", - "Racial discrimination" - ] - }, - { - "text": "Work towards fostering the independence of the Judiciary and reducing the number of people in pretrial detention without substantiated charges", - "values": [ - "Detention", - "Justice" - ] - }, - { - "text": "Implement effectively the instrument of pretrial detention on exceptional basis", - "values": [ - "Detention" - ] - }, - { - "text": "Continue its efforts to protect the rights of migrant workers ", - "values": [ - "Labour", - "Migrants" - ] - }, - { - "text": "Continue efforts in implementation of the country's Plans of Action in particular those relating to the safeguard of the economic, social and cultural rights of the people, including those of the most vulnerable ones and disadvantaged groups", - "values": [ - "ESC rights - general" - ] - }, - { - "text": "Further strengthen policies and measures to combat discrimination and violence against women, in particular by considering specific legislation on domestic violence ", - "values": [ - "Women's rights" - ] - }, - { - "text": "Continue efforts to overcome abductions and domestic violence involving women and children ", - "values": [ - "Rights of the Child", - "Women's rights" - ] - }, - { - "text": "Continue its efforts in supporting education and providing equal opportunities to boys and girls in the rural and urban areas ", - "values": [ - "Right to education", - "Rights of the Child" - ] - }, - { - "text": "Continue efforts to guarantee the right to food for the Senegalese people, consider requesting technical assistance from OHCHR on the right to food ", - "values": [ - "Right to food", - "Technical assistance and cooperation" - ] - }, - { - "text": "Ensure that all allegations of torture and ill-treatment, as well as mass rapes, and sexual and gender-bases violence are promptly, independently and thoroughly investigated and to take all the necessary measures to bring perpetrators to justice", - "values": [ - "Torture and other CID treatment", - "Women's rights" - ] - }, - { - "text": "Immediately allow unrestricted humanitarian access to all areas, particularly those defined by the United Nations as besieged and hard to reach, on the basis of needs identified by the United Nations and its implementing partners", - "values": [ - "Other" - ] - }, - { - "text": "Develop and implement plans to reduce physical and cost barriers to accessing HIV-related health services in rural areas ", - "values": [ - "HIV - Aids" - ] - }, - { - "text": "Review its resident registration system to safeguard the right to privacy and limit the uses registration numbers to those strictly necessary for the provision of public services", - "values": [ - "Privacy" - ] - }, - { - "text": "Consider withdrawing reservations to the Convention on the Elimination of All Forms of Discrimination against Women and to adopt and implement specific legislation to prevent and counter violence against women, including domestic violence, and to create an institutional framework dedicated to receiving complaints, to ensuring the effective protection of women who suffered or are at the risk of suffering from violence and to provide compensation and accountability against perpetrators", - "values": [ - "International instruments", - "Women's rights" - ] - }, - { - "text": "Adopt further measures to facilitate effective access of the so-called "erased" to permanent residency and citizenship", - "values": [ - "Other" - ] - }, - { - "text": "Adopt proactive measures to eliminate discriminatory stereotypes about migrant workers and their families, in political discourse as well as in the media, as recommended by the CMW", - "values": [ - "Labour", - "Migrants", - "Treaty bodies" - ] - }, - { - "text": "Continue its efforts to consolidate its national human rights institutional architecture ", - "values": [ - "National Human Rights Institution" - ] - }, - { - "text": "Enact legislation ensuring the right to freedom of religion or belief for all religious groups and take effective measures to prevent the abuse of blasphemy legislation and the use of violence against religious minorities", - "values": [ - "Freedom of opinion and expression", - "Freedom of religion and belief", - "Minorities" - ] - }, - { - "text": "Complete the national process aimed at abolishing the death penalty and ratify the Second Optional Protocol to International Covenant on Civil and Political Rights, aiming at the abolition of the death penalty ", - "values": [ - "Death penalty", - "International instruments" - ] - }, - { - "text": "Sign and ratify the Convention against Torture and Other Cruel, Inhuman or Degrading Treatment or Punishment and its Optional Protocol ", - "values": [ - "Detention", - "International instruments", - "Torture and other CID treatment" - ] - }, - { - "text": "Intensify efforts to build the capacity of law enforcement authorities on the basic rights of citizens ", - "values": [ - "Human rights education and training" - ] - }, - { - "text": "Accelerate the process of ratification of the international instruments listed in the national report", - "values": [ - "International instruments" - ] - }, - { - "text": "Persevere in the implementation of its commitment to strengthen various existing programs to eradicate poverty and ensure universal access to public services, despite constraints in the areas of health, education, housing, nutrition and other areas related to human rights and to seek the support of the international community to implement projects in these areas ", - "values": [ - "Poverty", - "Right to education", - "Right to food", - "Right to health", - "Right to housing", - "Technical assistance and cooperation" - ] - }, - { - "text": "Ensure continuous progress in its efforts to combat trafficking, including through the full implementation of the trafficking in persons act as well as awareness-raising campaigns ", - "values": [ - "Human rights education and training", - "Trafficking" - ] - }, - { - "text": "Step up efforts to ratify the Optional Protocol to the Convention against Torture", - "values": [ - "Detention", - "International instruments", - "Torture and other CID treatment" - ] - }, - { - "text": "Continue its efforts on initiatives aimed at enhancing economic growth and improving the living standards in the country ", - "values": [ - "Development" - ] - }, - { - "text": "Enact appropriate legislation against the sale and trafficking of children", - "values": [ - "Rights of the Child", - "Trafficking" - ] - }, - { - "text": "Take action to ensure the Supreme National Commission for Accountability and Justice is independent and operates towards the goal of free and fair elections with participation of all parties", - "values": [ - "Elections", - "Justice" - ] - }, - { - "text": "Continue efforts aimed at reinforcing the progress achieved with regard to gender equality, including in the areas of education and health, in line with the country\u2019s obligations and commitments", - "values": [ - "Right to education", - "Right to health", - "Women's rights" - ] - }, - { - "text": "Review the legislative framework to re-assure the full implementation of the freedom of speech", - "values": [ - "Freedom of opinion and expression" - ] - }, - { - "text": "Reply in a timely manner to all thematic special procedure communications", - "values": [ - "Special procedures" - ] - }, - { - "text": "Heed the call by the Committee on the Rights of the Child to regularize the status of children of same-sex couples and ensure their protection against discrimination", - "values": [ - "Sexual Orientation and Gender Identity", - "Treaty bodies" - ] - }, - { - "text": "Establish a separate centralised mechanism for the preparation of national human rights reports", - "values": [ - "Treaty bodies" - ] - }, - { - "text": "Designate an official body for a comprehensive review and recommendations in view to promote an informed debate on the reform of the death penalty", - "values": [ - "Death penalty" - ] - }, - { - "text": "Take additional measures to fight against dropping out of school, particularly among boys ", - "values": [ - "Right to education" - ] - }, - { - "text": "Finalize the set-up of the Human Rights Commission and ensure its functioning in accordance with the Paris Principles", - "values": [ - "National Human Rights Institution" - ] - }, - { - "text": "Continue to strengthen the provision of health-care services to its people, particularly women and children", - "values": [ - "Right to health", - "Rights of the Child", - "Women's rights" - ] - }, - { - "text": "Make further efforts to eradicate illiteracy for all, including through, inter alia, sufficient budget allocation", - "values": [ - "Right to education" - ] - }, - { - "text": "Accept the visit request of the Special Rapporteur on freedom of religion or belief, and consider extending a standing invitation to all special procedures mandate holders of the Human Rights Council ", - "values": [ - "Freedom of religion and belief", - "Special procedures" - ] - }, - { - "text": "Support efforts to create safe places for women who have been victims of gender-based violence", - "values": [ - "Women's rights" - ] - }, - { - "text": "Consider becoming a party to ICCPR", - "values": [ - "CP rights - general", - "International instruments" - ] - }, - { - "text": "Consider ratifying OP-CAT and take the necessary measures at the national level in order to do so", - "values": [ - "Detention", - "International instruments", - "Torture and other CID treatment" - ] - }, - { - "text": "Take all necessary measures in order to abolish de jure the death penalty", - "values": [ - "Death penalty" - ] - }, - { - "text": "Enhance the efforts aimed at monitoring the accomplishment of the human rights obligations relating to the enjoyment of a safe, clean, healthy, and sustainable environment, particularly with regard to air quality and industrial pollution ", - "values": [ - "Environment" - ] - }, - { - "text": "Provide the necessary resources to the Defensoría de los Habitantes, which constitutes the national prevention mechanism provided for under OPCAT, so that it can fully implement its mandate ", - "values": [ - "Detention", - "International instruments", - "National Human Rights Institution", - "Torture and other CID treatment" - ] - }, - { - "text": "Adopt and implement appropriate measures, enabling an effective functioning of public security forces subject to civilian control", - "values": [ - "Public security" - ] - }, - { - "text": "Ensure equal rights for women in the area of employment ", - "values": [ - "Women's rights" - ] - }, - { - "text": "Redouble efforts to integrate the Pygmy population in the mainstream society, particularly in the area of educational development and provision of other basic amenities.", - "values": [ - "Minorities", - "Right to education" - ] - }, - { - "text": "Intensify its efforts in raising awareness within communities and providing additional training for the police and the judiciary to ensure that victims of sexual and gender-based violence receive adequate medical support and legal aid", - "values": [ - "Human rights education and training", - "Women's rights" - ] - }, - { - "text": "Continue taking steps aiming to achieve further economic empowerment of women ", - "values": [ - "Women's rights" - ] - }, - { - "text": "Take legal and practical steps to protect women and children from domestic violence, for example by prohibiting corporal punishment of children in all settings, including the home", - "values": [ - "Rights of the Child", - "Torture and other CID treatment", - "Women's rights" - ] - }, - { - "text": "Undertake more efforts to effectively combat the human trafficking phenomenon ", - "values": [ - "Trafficking" - ] - }, - { - "text": "Strengthen the capacities and expand the role of the Equality Ombudsman to cover the whole range of human rights, with a view to its possible assumption of the role of a national human rights institution, in accordance with the Paris Principles ", - "values": [ - "National Human Rights Institution" - ] - }, - { - "text": "Foster strong coordination among the Ministries of Health, Justice and Interior through a formal mechanism to combat gender-based violence and ensure judicial, law enforcement, and other officials are properly trained on all forms of gender-based violence and discrimination", - "values": [ - "Women's rights" - ] - }, - { - "text": "Take the necessary steps to amend the Code on Persons and the Family, the law governing inheritance, matrimonial regimes and bequests and the Criminal Code in order to bring them into conformity with the principle of non-discrimination as set out in the Convention on the Elimination of All Forms of Discrimination against Women.", - "values": [ - "International instruments", - "Women's rights" - ] - }, - { - "text": "Acknowledge the right of refugees to return to their homes, according to the Fourth Geneva Convention", - "values": [ - "Asylum-seekers - refugees", - "International humanitarian law", - "International instruments" - ] - }, - { - "text": "Implement the recommendations of treaty bodies and take concrete measures to increase the representation of national minorities in the Government and administrative bodies", - "values": [ - "Minorities", - "Treaty bodies" - ] - }, - { - "text": "Strengthen measures to effectively prevent the violence against journalists and human rights defenders and impunity", - "values": [ - "Freedom of the press", - "Human rights defenders", - "Impunity" - ] - }, - { - "text": "Consider additional steps to ensure that any potential changes in court fees are proportionate and affordable, and that they do not prejudice access to the legal system ", - "values": [ - "Justice" - ] - }, - { - "text": "Consider signing the SADC Protocol on Gender and Development", - "values": [ - "Women's rights" - ] - }, - { - "text": "Select the Ombudsman without delay and in line with the Paris Principles ", - "values": [ - "National Human Rights Institution" - ] - }, - { - "text": "Ensure that the Criminal Code is applied in a non-discriminatory manner, in full compliance with articles 2, 17 and 26 of the International Covenant on Civil and Political Rights, as interpreted by the Human Rights Committee", - "values": [ - "International instruments", - "Sexual Orientation and Gender Identity", - "Treaty bodies" - ] - }, - { - "text": "Take steps to improve the conditions in the closed centres for aliens ", - "values": [ - "Asylum-seekers - refugees", - "Detention" - ] - }, - { - "text": "Continue its efforts to further strengthen its human rights infrastructure", - "values": [ - "General" - ] - }, - { - "text": "Guarantee the Independence of the judiciary and continue the fight against corruption ", - "values": [ - "Corruption", - "Justice" - ] - }, - { - "text": "Combat crimes committed against human rights defenders through prompt, impartial and transparent investigations", - "values": [ - "Human rights defenders" - ] - }, - { - "text": "Ratify the Convention against Torture and its Optional Protocol to and set up a National Preventive Mechanism accordingly ", - "values": [ - "Detention", - "International instruments", - "Torture and other CID treatment" - ] - }, - { - "text": "Strengthen the action taken by the national council for the promotion and protection of human rights, in particular through its commissions throughout the territory", - "values": [ - "National Human Rights Institution" - ] - }, - { - "text": "Expedite implementation of the National action plan against child labour exploitation", - "values": [ - "Labour", - "Rights of the Child" - ] - }, - { - "text": "Amend the nationality law to allow women equal rights to men in passing their nationality to their children", - "values": [ - "Women's rights" - ] - }, - { - "text": "Adopt a comprehensive policy to avert the trafficking of children, in particular the disappearance of adolescent girls from refugee camps, and to protect them against exploitation, and especially child labour", - "values": [ - "Asylum-seekers - refugees", - "Labour", - "Rights of the Child", - "Trafficking", - "Women's rights" - ] - }, - { - "text": "Step up efforts to eradicate female genital mutilation (FGM), known as "excisions", which is a most common practice rooted in the Malian tradition", - "values": [ - "Rights of the Child", - "Torture and other CID treatment", - "Women's rights" - ] - }, - { - "text": "Continue to appropriately implement all changes promised to its people and strengthen the dialogue mechanisms with civil society", - "values": [ - "Civil society" - ] - }, - { - "text": "Release immediately former President Nasheed, in light of the lack of a fair trial", - "values": [ - "Justice" - ] - }, - { - "text": "Continue efforts to address gaps in social service delivery and education programmes and to address societal discrimination against indigenous persons and individuals belonging to ethnic minority groups ", - "values": [ - "ESC rights - general", - "Indigenous peoples", - "Minorities", - "Racial discrimination", - "Right to education" - ] - }, - { - "text": "Ratify and implement ICCPR and ICESCR as soon as possible ", - "values": [ - "CP rights - general", - "ESC rights - general", - "International instruments" - ] - }, - { - "text": "Extend the protection of the Labour Code to domestic workers", - "values": [ - "Labour" - ] - }, - { - "text": "Consider strengthening legislative protection from racial discrimination and discrimination based on sexual orientation", - "values": [ - "Racial discrimination", - "Sexual Orientation and Gender Identity" - ] - }, - { - "text": "Maintain the moratorium on the application of the death penalty with a view to its definitive abolition", - "values": [ - "Death penalty" - ] - }, - { - "text": "Ensure that regulations pertaining to the right to privacy are in line with the principles of legality, necessity and proportionality.", - "values": [ - "Privacy" - ] - }, - { - "text": "Establish a moratorium on the death penalty, in accordance with the resolutions of the General Assembly", - "values": [ - "Death penalty" - ] - }, - { - "text": "Fulfil international obligations under the International Covenant on Civil and Political Rights and the Vienna Convention on Consular Relations, including consular access for foreign nationals without discriminations", - "values": [ - "International instruments", - "Migrants" - ] - }, - { - "text": "Guinea acknowledges that there are serious difficulties in launching the national reconciliation process. However, consultations on how to proceed have begun nationwide. The Government is committed to pursuing its efforts to ensure that the process comes to a successful conclusion", - "values": [ - "Justice" - ] - }, - { - "text": "Ratify the International Convention on the Protection of the Rights of All Migrant Workers and Members of Their Families and promptly implement it", - "values": [ - "International instruments", - "Labour", - "Migrants" - ] - }, - { - "text": "Strengthen its efforts to train law enforcement officials to effectively work against trafficking of persons ", - "values": [ - "Human rights education and training", - "Trafficking" - ] - }, - { - "text": "Continue to raise efforts pointed at eradicating poverty, and ensure strict implementation of the National Human Development Plan 2013-2017 ", - "values": [ - "Poverty" - ] - }, - { - "text": "Take all measures necessary to put the public policy and the National Action Plan on Human Rights into practice ", - "values": [ - "General" - ] - }, - { - "text": "Redouble its efforts to prevent any form of discrimination", - "values": [ - "Other" - ] - }, - { - "text": "Consider initiating a strategy for comprehensive legal framework on prevention of gender-based discrimination and improving the role of women in society", - "values": [ - "Women's rights" - ] - }, - { - "text": "Immediately close the Nauru and Manus Island detention centres", - "values": [ - "Asylum-seekers - refugees", - "Detention" - ] - }, - { - "text": "Take measures, such as impartial vetting, to ensure that persons under the age of 18 are not recruited by Transitional Federal Government's security forces ", - "values": [ - "Rights of the Child" - ] - }, - { - "text": "Recommended making a humanitarian gesture by liberating prisoners for political and religious offenses who are in serious health condition", - "values": [ - "Detention", - "Freedom of opinion and expression", - "Freedom of religion and belief" - ] - }, - { - "text": "Further enhance the institutional and financial capacities of the Ethiopian Human Rights Commission to effectively carry out its mandate vis-à-vis the affected communities, especially its working relations with the Oromo, Ogaden, Gambella and Somali communities ", - "values": [ - "Minorities", - "National Human Rights Institution" - ] - }, - { - "text": "Re-establish a moratorium on the death penalty as a first step towards complete abolishment of this practice and accession to the Second Optional Protocol to the ICCPR", - "values": [ - "Death penalty", - "International instruments" - ] - }, - { - "text": "Grant equal citizenship rights to men and women", - "values": [ - "Women's rights" - ] - }, - { - "text": "Continue and strengthen efforts to eliminate acts of torture", - "values": [ - "Torture and other CID treatment" - ] - }, - { - "text": "Ensure the protection of defenders of the rights of lesbian, gay, bisexual and transgender persons, and take measures to ensure that lesbian, gay, bisexual and transgender persons can fully and freely exercise their rights without fear of attack or reprisal ", - "values": [ - "Human rights defenders", - "Sexual Orientation and Gender Identity" - ] - }, - { - "text": "Adopt a whistleblower law so that those who identify corruption are protected from prosecution or harassment.", - "values": [ - "Corruption" - ] - }, - { - "text": "Continue to actively prevent discrimination of minorities through enacting comprehensive anti-discrimination legislation, including a prohibition on discrimination on grounds of ethnicity, religion, sexual orientation and gender identity", - "values": [ - "Freedom of religion and belief", - "Minorities", - "Racial discrimination", - "Sexual Orientation and Gender Identity" - ] - }, - { - "text": "Work for the establishment of an independent human rights commission.", - "values": [ - "National Human Rights Institution" - ] - }, - { - "text": "Adopt and resource the national strategic plan of action to eliminate gender-based violence", - "values": [ - "Women's rights" - ] - }, - { - "text": "Enact comprehensive equality legislation that will provide effective remedies and address discrimination on all grounds", - "values": [ - "Other" - ] - }, - { - "text": "Step up efforts to promote sexual education, particularly oriented towards adolescents paying special attention to the prevention of early pregnancy and to the control of sexually transmitted diseases and HIV/AIDS, as previously recommended", - "values": [ - "HIV - Aids", - "Right to health", - "UPR process" - ] - }, - { - "text": "Reform the National Intelligence and Security Service in accordance with the Comprehensive Peace Agreement, particularly the broad powers of arrest and detention ", - "values": [ - "Detention", - "Public security" - ] - }, - { - "text": "Bahrain undertakes to begin implementing the articles and provisions of the Act on trafficking in persons.", - "values": [ - "Trafficking" - ] - }, - { - "text": "Continue building and strengthening national democratic mechanisms including the judicial institutions, and put in place all necessary institutional mechanisms for protecting the vulnerable population from all kinds of abuses ", - "values": [ - "Justice" - ] - }, - { - "text": "Maintain effectively the de facto moratorium on the death penalty", - "values": [ - "Death penalty" - ] - }, - { - "text": "Increase prompt access to birth registration and public awareness for the same", - "values": [ - "Human rights education and training", - "Rights of the Child", - "Statelessness and the right to nationality" - ] - }, - { - "text": "The international community to support Kenya through a programme to build capacities and strengthen institutions for the promotion and protection of human rights ", - "values": [ - "Technical assistance and cooperation" - ] - }, - { - "text": "Implement the Additional Protocol to the United Nations Convention on Organized Transnational Crime to prevent, prosecute and punish human trafficking, particularly the trafficking of women and children", - "values": [ - "International instruments", - "Trafficking" - ] - }, - { - "text": "Ensure the guarantee of freedom of expression and opinion and the prevention of child labour in its legislation", - "values": [ - "Freedom of opinion and expression", - "Labour", - "Rights of the Child" - ] - }, - { - "text": "Amend administrative and other regulations and practices in order to implement the constitutional provisions regarding freedom of the press and clarify the law on defamation and its application so as to ensure freedom of opinion and expression", - "values": [ - "Freedom of opinion and expression", - "Freedom of the press" - ] - }, - { - "text": "Establish a de jure moratorium on the death penalty that could ultimately lead to its suppression from legislation", - "values": [ - "Death penalty" - ] - }, - { - "text": "Improve the level of participation of women in the decision-making process ", - "values": [ - "Women's rights" - ] - }, - { - "text": "Improve the relevant laws to further combat racial discrimination and hate speech in order to protect effectively the rights of non-citizens residing in Latvia and minority groups", - "values": [ - "Freedom of opinion and expression", - "Minorities", - "Racial discrimination", - "Statelessness and the right to nationality" - ] - }, - { - "text": "Investigate and punish attacks and threats against journalists ", - "values": [ - "Freedom of the press" - ] - }, - { - "text": "Pursue its efforts for balanced development that bridges the gap between the rural and urban areas, with special attention to the realization of MDGs on health", - "values": [ - "Development", - "Right to health" - ] - }, - { - "text": "Undertake extensive action in order to demilitarize the police force and to grant responsibility for public security to the appropriate institutions", - "values": [ - "Public security" - ] - }, - { - "text": "Promote measures aimed at preventing child labour and violence against children, in compliance with the ILO conventions and the other relevant international instruments", - "values": [ - "International instruments", - "Labour", - "Rights of the Child" - ] - }, - { - "text": "In line with the recommendations of the Committee on the Rights of the Child, consider the possibility of increasing the age of criminal responsibility in line with accepted international standards", - "values": [ - "Rights of the Child", - "Treaty bodies" - ] - }, - { - "text": "Become party to the Optional Protocol to the Convention on the Rights of the Child CRC on the sale of children, child prostitution and child pornography", - "values": [ - "International instruments", - "Rights of the Child", - "Trafficking" - ] - }, - { - "text": "Accede to the ICCPR and bring national legislation in compliance with relevant provisions of this Covenant", - "values": [ - "CP rights - general", - "International instruments" - ] - }, - { - "text": "Ratify and implement the Convention on the Rights of Persons with Disabilities (CRPD)", - "values": [ - "Disabilities", - "International instruments" - ] - }, - { - "text": "Address over-crowding in prisons, and continue to address the special needs of women prisoners ", - "values": [ - "Detention", - "Women's rights" - ] - }, - { - "text": "Continue its efforts to implement the Law on Execution of Sanctions.", - "values": [ - "Justice" - ] - }, - { - "text": "Ensure religious freedom, freedom of worship and non- discrimination against persons of different religions", - "values": [ - "Freedom of religion and belief", - "Racial discrimination" - ] - }, - { - "text": "Continue cooperation with all mechanisms of the Human Rights Council ", - "values": [ - "Special procedures", - "Technical assistance and cooperation", - "UPR process" - ] - }, - { - "text": "Adopt further measures to reduce maternal morbidity and infant mortality ", - "values": [ - "Right to health", - "Rights of the Child", - "Women's rights" - ] - }, - { - "text": "Establish programmes for combating prejudice against ethnic minorities", - "values": [ - "Minorities", - "Racial discrimination" - ] - }, - { - "text": "Repeal article 230 of the Criminal Code, which criminalizes same-sex relations between consenting adults and discontinue the practice of forced anal exams to prove homosexual behaviour", - "values": [ - "Sexual Orientation and Gender Identity", - "Torture and other CID treatment" - ] - }, - { - "text": "Germany remained fully committed to effectively combating all instances of racism, racial discrimination and related phenomena.", - "values": [ - "Racial discrimination" - ] - }, - { - "text": "Strengthen mechanisms to prevent the trafficking in boys and girls and provide the support needed for victims of trafficking to be reintegrated into society", - "values": [ - "Rights of the Child", - "Trafficking" - ] - }, - { - "text": "Implement the reforms already made by the Pahor Government to improve efficiencies in the Slovenian judicial system", - "values": [ - "Justice" - ] - }, - { - "text": "Share its experiences, expertise, and good practices in the promotion and protection of the right to health, including initiatives in place with regard to public health and health tourism", - "values": [ - "Right to health" - ] - }, - { - "text": "[Enact legislation to explicitly prohibit corporal punishment of children] In all settings", - "values": [ - "Rights of the Child" - ] - }, - { - "text": "Ensure unhindered access to legal representation by persons detained in detention camps", - "values": [ - "Detention" - ] - }, - { - "text": "Amend the Penal Code in order to repeal the right of a husband to punish his wife and the right of parents or custodians to punish their minor children by means of physical violence or coercion ", - "values": [ - "Rights of the Child", - "Women's rights" - ] - }, - { - "text": "Ensure operation of the national preventive mechanism, particularly by allowing the National Human Rights Commission unhindered access to all detention facilities", - "values": [ - "Detention", - "National Human Rights Institution", - "Torture and other CID treatment" - ] - }, - { - "text": "Give human rights defenders legitimacy and recognition through supportive statements and ensure that they are protected in accordance with the United Nations Declaration on the Right and Responsibility of Individuals, Groups and Organs of Society to Promote and Protect Universally Recognized Human Rights and Fundamental Freedoms.", - "values": [ - "Human rights defenders", - "International instruments" - ] - }, - { - "text": "Adopt legislation on quotas requiring political parties to include a minimum proportion of women among their candidates ", - "values": [ - "Women's rights" - ] - }, - { - "text": "Pursue its efforts in order to complement its commitments towards the promotion and protection of human rights by ratifying the relevant international instruments and, in particular, the 1960 UNESCO Convention Against Discrimination in Education ", - "values": [ - "International instruments", - "Right to education" - ] - }, - { - "text": "Take the measures necessary to end covert gender discrimination, including domestic violence", - "values": [ - "Women's rights" - ] - }, - { - "text": "Consider acceding to OP-CAT", - "values": [ - "Detention", - "International instruments", - "Torture and other CID treatment" - ] - }, - { - "text": "Seek to strengthen achievements in realizing the right to education, in particular with respect to free primary education and its obligation towards girls and boys ", - "values": [ - "Right to education" - ] - }, - { - "text": "Develop specific legislation on disability matters", - "values": [ - "Disabilities" - ] - }, - { - "text": "Portugal is committed to fully fulfilling its national obligations in the field of human rights and to further improving its national mechanisms to monitor progress in this field.", - "values": [ - "General" - ] - }, - { - "text": "Continue its policy against racism and all forms of discrimination particularly in favour of indigenous peoples", - "values": [ - "Indigenous peoples", - "Racial discrimination" - ] - }, - { - "text": "Develop a clear timeline and benchmarks for the full implementation of its commitments in Human Rights Council resolution 30/1", - "values": [ - "Justice" - ] - }, - { - "text": "Continue to work with other partners to reform its justice system through training programmes", - "values": [ - "Justice" - ] - }, - { - "text": "End impunity for crimes of sexual violence, establish effective mechanisms to prevent sexual violence, and ensure that victims have access to appropriate health care, in line with Security Council resolutions 1325 2000 and 1820 2008 and the Government's international obligations at large. ", - "values": [ - "Impunity", - "Rights of the Child", - "Women's rights" - ] - }, - { - "text": "Accede to the Convention for the Protection of the Rights of Migrant Workers and Members of Their Families", - "values": [ - "International instruments", - "Labour", - "Migrants" - ] - }, - { - "text": "Proceed with the ratification of Additional Protocols I and II of the Geneva Conventions of 1949, of the Convention on the Rights of the Child, of CEDAW as well as the Optional Protocol to the Convention against Torture", - "values": [ - "Detention", - "International humanitarian law", - "International instruments", - "Rights of the Child", - "Torture and other CID treatment" - ] - }, - { - "text": "Take measures to strengthen the freedom and independence of the media, particularly electronic media, and consider removing the registration requirement for independent Internet sites", - "values": [ - "Freedom of the press" - ] - }, - { - "text": "Consider the possibility of ratifying the Optional Protocol to the International Covenant on Economic, Social and Cultural Rights ", - "values": [ - "ESC rights - general", - "International instruments" - ] - }, - { - "text": "Eradicate the death sentence once and for all from its legal system ", - "values": [ - "Death penalty" - ] - }, - { - "text": "Continue developing inclusive policies to enable the Roma population to enjoy the same rights and opportunities as other persons, with due regard to their participation in its design and implementation", - "values": [ - "Minorities" - ] - }, - { - "text": "Take steps to harmonize her nationality laws in order to provide women with the right to pass on their rights of nationality to children born abroad, on an equal basis with men", - "values": [ - "Women's rights" - ] - }, - { - "text": "Investigate, prosecute and punish systematically all cases of sexual violence against girls and women, organize awareness-raising campaigns on the subject of sexual violence and put in place a national hotline", - "values": [ - "Human rights education and training", - "Rights of the Child", - "Women's rights" - ] - }, - { - "text": "Scale up and expand youth-friendly and gender-sensitive programmes on comprehensive sexuality education and sexual reproductive health and rights", - "values": [ - "Right to health", - "Women's rights" - ] - }, - { - "text": "Ratify other core international human rights treaties, particularly the International Covenant on Civil and Political Rights, the International Covenant on Economic, Social and Cultural Rights, the International Convention on the Elimination of All Forms of Racial Discrimination, the Convention against Torture, and the Optional Protocol to the Convention on the Elimination of All Forms of Discrimination against Women", - "values": [ - "CP rights - general", - "ESC rights - general", - "International instruments", - "Racial discrimination", - "Torture and other CID treatment", - "Women's rights" - ] - }, - { - "text": "Fight Islamophobia and support its Muslim citizens, by enabling them to practise their religion", - "values": [ - "Freedom of religion and belief", - "Minorities", - "Racial discrimination" - ] - }, - { - "text": "Look into the possibility of prioritizing the rights of the child directly, as a stand-alone issue, not just as a horizontal consideration in its human rights policies", - "values": [ - "Rights of the Child" - ] - }, - { - "text": "Fulfil its obligations, including under the Convention on the Prohibition of the Development, Production, Stockpiling and Use of Chemical Weapons and on Their Destruction and international humanitarian law, and cease all deliberate, indiscriminate and disproportionate attacks against civilians", - "values": [ - "International humanitarian law" - ] - }, - { - "text": "Further explore better ways to address the devolvement of hitherto less developed regions ", - "values": [ - "Development" - ] - }, - { - "text": "Finalize the investigation of all human rights cases in Papua", - "values": [ - "Justice" - ] - }, - { - "text": "Strengthen the access to primary education for all segments, particularly women ", - "values": [ - "Right to education", - "Women's rights" - ] - }, - { - "text": "Intensify its efforts to protect children from early and forced marriages", - "values": [ - "Rights of the Child", - "Women's rights" - ] - }, - { - "text": "Withdraw its reservation to Article 2 of CEDAW and accede to the Optional Protocol to CEDAW ", - "values": [ - "International instruments", - "Women's rights" - ] - }, - { - "text": "Adopt national legislation implementing the Rome Statute", - "values": [ - "International instruments", - "Justice" - ] - }, - { - "text": "Redouble its efforts towards reaching a political settlement to the crisis in the Syrian Arab Republic through comprehensive dialogue with all parties", - "values": [ - "Other" - ] - }, - { - "text": "Take the necessary measures to ensure that human rights defenders and civil society actors can carry out their legitimate work in a safe environment without threats and harassment by State and non-State actors", - "values": [ - "Civil society", - "Human rights defenders" - ] - }, - { - "text": "Develop, in cooperation with all relevant national institutions, a comprehensive national human rights plan and a national human rights education plan ", - "values": [ - "Human rights education and training" - ] - }, - { - "text": "Make more widely available to the world its experience in combining a strong state with ethnic regional autonomy", - "values": [ - "Minorities" - ] - }, - { - "text": "Submit its overdue report to the Human Rights Committee", - "values": [ - "Treaty bodies" - ] - }, - { - "text": "Ensure that national security is pursued in a broad-based and inclusive manner and in full compliance with the Constitution and international human rights obligations", - "values": [ - "Counter-terrorism", - "International instruments" - ] - }, - { - "text": "Establish a special mechanism responsible for independent child rights monitoring", - "values": [ - "Rights of the Child" - ] - }, - { - "text": "Urgently take measures to grant legal status to over 100,000 stateless persons and ensure their protection under the labour law", - "values": [ - "Statelessness and the right to nationality" - ] - }, - { - "text": "Continue the efforts in the area of human rights training for the judiciary and police staff", - "values": [ - "Human rights education and training" - ] - }, - { - "text": "Improve the overall conditions of prisons and detention facilities and adopt relevant measures to tackle the problems such as the overcrowding and unsatisfactory state of some prisons ", - "values": [ - "Detention" - ] - }, - { - "text": "Sign and-or ratify the Optional Protocol to ICESR, ICRMW, the Optional Protocol to CRPD, and the International Convention for the Protection of All Persons from Enforced Disappearance ", - "values": [ - "Disabilities", - "ESC rights - general", - "Enforced disappearances", - "International instruments", - "Labour", - "Migrants" - ] - }, - { - "text": "Review its criminal law framework with a view to incorporate the crime of torture in accordance with its international obligations ", - "values": [ - "Torture and other CID treatment" - ] - }, - { - "text": "Redouble efforts to promote the full exercise of the right to information and freedom of expression and promote, likewise, the independence and pluralism of the media ", - "values": [ - "Freedom of opinion and expression", - "Freedom of the press" - ] - }, - { - "text": "Eliminate the reported contradictions in the constitutional framework and discriminatory provisions therein against women", - "values": [ - "Women's rights" - ] - }, - { - "text": "Further educate and train the appropriate professional groups to raise awareness among the vulnerable groups and establish cooperation with additional institutions and organizations, namely as regards worker exploitation", - "values": [ - "Labour" - ] - }, - { - "text": "Continue the formulation and implementation of the national human rights action plan", - "values": [ - "General" - ] - }, - { - "text": "Consider the abolition of the death penalty in its legal system", - "values": [ - "Death penalty" - ] - }, - { - "text": "Abolish the death penalty, and sign and ratify the Second Optional Protocol to the International Covenant on Civil and Political Rights, aiming at the abolition of the death penalty (ICCPR)", - "values": [ - "Death penalty", - "International instruments" - ] - }, - { - "text": "Continue promoting the prompt adoption of a law against all forms of discrimination, in accordance with its international human rights commitments ", - "values": [ - "International instruments" - ] - }, - { - "text": "Continue to promote and protect the enjoyment of fundamental freedoms and rights of its citizens in the areas of education, health, rights of women and children, and persons with disabilities", - "values": [ - "Disabilities", - "Right to education", - "Right to health", - "Rights of the Child", - "Women's rights" - ] - }, - { - "text": "Fully implement the 2006 law on sexual violence and monitor the application of this law in order to ensure that impunity for sexual violence is addressed, including in the security forces", - "values": [ - "Human rights violations by state agents", - "Impunity", - "Rights of the Child", - "Women's rights" - ] - }, - { - "text": "Take steps, including allocating adequate resources, to strengthen the capacity and independence of the judiciary to improve the fair and timely administration of justice", - "values": [ - "Justice" - ] - }, - { - "text": "Strengthen the public authorities in charge of protecting women and children, through adequate financial resources, and further strengthen the awareness-raising campaigns on the prohibition of female genital mutilation and the trokosi practice, which is a ritual form of servitude", - "values": [ - "Human rights education and training", - "Rights of the Child", - "Torture and other CID treatment", - "Women's rights" - ] - }, - { - "text": "Continue actions to ensure that children in the most disadvantaged areas enjoy the same benefits in education and health enjoyed in urban areas ", - "values": [ - "Right to education", - "Right to health", - "Rights of the Child" - ] - }, - { - "text": "Promptly ratify and implement the Optional Protocol to CAT", - "values": [ - "Detention", - "International instruments", - "Torture and other CID treatment" - ] - }, - { - "text": "Establish a Constitutional Commission to conduct a comprehensive review of the 2013 Constitution and carry out national consultations to ensure that the Constitution is reflective of the will of the people", - "values": [ - "Other" - ] - }, - { - "text": "Increase efforts to ensure the independence of the judiciary and strengthen the capacity of law enforcement and judicial organs. ", - "values": [ - "Justice" - ] - }, - { - "text": "Continue to work in favor of the vulnerable groups, in particular children and women, taking into account the international obligations already contracted ", - "values": [ - "Rights of the Child", - "Women's rights" - ] - }, - { - "text": "Pay due attention to commensurate responsibility in protecting the rights of others and respect for others, while promoting and protecting freedom of expression and opinion ", - "values": [ - "Freedom of opinion and expression" - ] - }, - { - "text": "Promote the establishment of a Truth and Reconciliation Commission, in conformity with the Arusha Agreement and United Nations Security Council resolutions 1606 and 2027, guaranteeing the fight against impunity for crimes for which there is no statute of limitation ", - "values": [ - "Impunity", - "Justice" - ] - }, - { - "text": "Continue, with international support and cooperation, efforts to ensure basic necessities of its people, particularly in terms of food, clothing, shelter and education", - "values": [ - "Right to education", - "Right to food", - "Right to housing" - ] - }, - { - "text": "Adapt internal legislation to international standards regarding national human rights institutions, including the Paris Principles", - "values": [ - "National Human Rights Institution" - ] - }, - { - "text": "Strengthen the Criminal Code and structures established to fight against violence and discrimination against women, in particular the Office of the Gender Equality and Equal Treatment Commissioner", - "values": [ - "Women's rights" - ] - }, - { - "text": "Enact legislation on violence against women, including domestic violence", - "values": [ - "Women's rights" - ] - }, - { - "text": "Prioritize the protection of the right to life of Cubans in the fight against disasters and share its experiences with the countries of the region ", - "values": [ - "Environment" - ] - }, - { - "text": "Set up a national institution in line with the Paris Principles and ensure a climate that is favourable to the activities of human rights defenders, journalists and other civil society actors", - "values": [ - "Civil society", - "Freedom of the press", - "Human rights defenders", - "National Human Rights Institution" - ] - }, - { - "text": "Prepare and submit, with the assistance of OHCHR, if required, all overdue reports to the Committee on the Elimination of Discrimination against Women, the Committee on the Rights of the Child and Committee on the Elimination of Racial Discrimination", - "values": [ - "Racial discrimination", - "Rights of the Child", - "Technical assistance and cooperation", - "Treaty bodies", - "Women's rights" - ] - }, - { - "text": "Continue its efforts to establish a national human rights institution, in line with the Paris Principles and with the full participation of civil society", - "values": [ - "Civil society", - "National Human Rights Institution" - ] - }, - { - "text": "Continue to give priority attention to the protection of the rights of the child", - "values": [ - "Rights of the Child" - ] - }, - { - "text": "Continue to promote pluralism", - "values": [ - "Other" - ] - }, - { - "text": "Consider ratifying the Second Optional Protocol to ICCPR and continue its efforts to increase national awareness in order to secure the abolition of the death penalty", - "values": [ - "Death penalty", - "International instruments" - ] - }, - { - "text": "Positively consider adopting a de jure moratorium on executions with a view to abolishing the death penalty ", - "values": [ - "Death penalty" - ] - }, - { - "text": "Share with developing countries and LDCs its experiences in the health field", - "values": [ - "Right to health" - ] - }, - { - "text": "Extend an open invitation to all the mechanisms and Special proceduress of the Human Rights Council ", - "values": [ - "Special procedures" - ] - }, - { - "text": "Establish a national programme on human rights that fully brings in the rights provided for in the international instruments to which Austria is a State party ", - "values": [ - "General" - ] - }, - { - "text": "Consider ratifying ICRMW and harmonizing domestic legislation with international norms ", - "values": [ - "International instruments", - "Labour", - "Migrants" - ] - }, - { - "text": "Continue efforts aimed at promoting awareness of the culture of human rights in the Gambian society", - "values": [ - "Human rights education and training" - ] - }, - { - "text": "Accede to the Convention on the Rights of Persons with Disabilities ", - "values": [ - "Disabilities", - "International instruments" - ] - }, - { - "text": "Take effective measures to allow independent non-governmental organizations to register and work freely.", - "values": [ - "Civil society" - ] - }, - { - "text": "Consolidate the concepts of human rights through students' activities and exhibitions organized by Omani Universities", - "values": [ - "Human rights education and training" - ] - }, - { - "text": "Cooperate fully with the Special Rapporteur on the situation of human rights in the Democratic People's Republic of Korea and other United Nations human rights mechanisms and grant them unrestricted access to the country", - "values": [ - "Special procedures" - ] - }, - { - "text": "Fully respect the right to choose and express religious beliefs freely, including for members of both recognized and unrecognized religious minorities ", - "values": [ - "Freedom of religion and belief", - "Minorities" - ] - }, - { - "text": "Take the necessary steps, including a prompt and thorough investigation into human rights violations and abuse cases committed in the country", - "values": [ - "Justice" - ] - }, - { - "text": "Continue to prevent and eradicate human trafficking as part of the Bali Process on People Smuggling, Trafficking in Persons and Related Transnational Crime", - "values": [ - "Trafficking" - ] - }, - { - "text": "Implement awareness raising programmes and provide support to women victims of violence as well as adopt a national plan which guarantees access to reproductive health services", - "values": [ - "Human rights education and training", - "Right to health", - "Women's rights" - ] - }, - { - "text": "Withdraw the reservation to article 18 of the International Covenant on Civil and Political Rights", - "values": [ - "Freedom of religion and belief", - "International instruments" - ] - }, - { - "text": "Ensure that all parties to the conflict prepare, in the framework of Security Council resolution 1612 2005, action plans to identify, release and ensure reintegration of all child soldiers, to prevent further recruitment and to address all other grave violations against children", - "values": [ - "International humanitarian law", - "Rights of the Child" - ] - }, - { - "text": "Continue working on closing the gaps that still exist between the rights enjoyed by same-sex couples, compared with couples of opposite sexes", - "values": [ - "Sexual Orientation and Gender Identity" - ] - }, - { - "text": "Consider prioritizing the stated objective of developing a comprehensive national action plan for human rights", - "values": [ - "General" - ] - }, - { - "text": "Focus its attention more on the serious issues of combating impunity. investigate human rights violations systematically and prosecute and punish those responsible for such violations, without exception.", - "values": [ - "Impunity" - ] - }, - { - "text": "Include sexual orientation as a prohibited ground of discrimination in its Constitution Reform process", - "values": [ - "Sexual Orientation and Gender Identity" - ] - }, - { - "text": "Strengthen efforts in fighting against corruption, which negatively affects the enjoyment of human rights by everyone.", - "values": [ - "Corruption" - ] - }, - { - "text": "Take effective measures to prevent possible acts of mistreatment ", - "values": [ - "Torture and other CID treatment" - ] - }, - { - "text": "Fully guarantee freedom of expression and free access to information and protect journalists against threats and attacks", - "values": [ - "Freedom of opinion and expression", - "Freedom of the press" - ] - }, - { - "text": "Continue efforts aimed at the progressive realization of economic, social and cultural rights ", - "values": [ - "ESC rights - general" - ] - }, - { - "text": "Initiate a prison reform plan to improve the deteriorating conditions in United Kingdom prisons, including addressing the increase in homicides and assaults", - "values": [ - "Detention" - ] - }, - { - "text": "Ensure effective implementation of the Libreville Peace Agreement, and put an end to the prevailing insecurity and violence in the country", - "values": [ - "Public security" - ] - }, - { - "text": "That the youth guarantee scheme is implemented without discrimination and sufficient budget allocated for its effective implementation", - "values": [ - "Other" - ] - }, - { - "text": "Accede to the Arms Trade Treaty", - "values": [ - "International instruments", - "Public security" - ] - }, - { - "text": "Take necessary measures for the improvement of the conditions of prisons and places of detention", - "values": [ - "Detention" - ] - }, - { - "text": "Grant the right to full citizenship to Muslim Rohingya in Rakhine State and allow them to decide their ethnic belonging", - "values": [ - "Freedom of religion and belief", - "Minorities", - "Statelessness and the right to nationality" - ] - }, - { - "text": "Take measures in law and in practice to decrease child marriage, most notably among girls", - "values": [ - "Rights of the Child", - "Women's rights" - ] - }, - { - "text": "Continue the implementation of the measures to effectively protect minorities", - "values": [ - "Minorities" - ] - }, - { - "text": "Intensify efforts in eliminating all forms of discrimination against ethnic minorities and in this regard seriously implement the national legal and policy framework on anti-discrimination", - "values": [ - "Minorities", - "Racial discrimination" - ] - }, - { - "text": "Revise and amend when necessary national legislation to ensure nondiscrimination against persons with disabilities in employment and take every effort to increase employment opportunities for persons with disabilities ", - "values": [ - "Disabilities" - ] - }, - { - "text": "Reinforce further the rights of internally displaced persons in law and in practice", - "values": [ - "Internally displaced persons" - ] - }, - { - "text": "Establish mechanisms to increase the population's access to government information ", - "values": [ - "Freedom of opinion and expression" - ] - }, - { - "text": "Sign and ratify the Optional Protocol to the Convention against Torture and Other Cruel, Inhuman or Degrading Treatment or Punishment, and establish a national preventive mechanism ", - "values": [ - "Detention", - "International instruments", - "Torture and other CID treatment" - ] - }, - { - "text": "Ensure that all parties responsible for the post-election crimes of 2010 be brought to justice regardless of their political affiliation", - "values": [ - "Justice" - ] - }, - { - "text": "Introduce amendments to criminal law to expand the list of prosecutable signs of discrimination", - "values": [ - "Other" - ] - }, - { - "text": "Continue to implement the National Strategy to Combat Trafficking in Persons ", - "values": [ - "Trafficking" - ] - }, - { - "text": "Strengthen efforts to prevent violence against women ", - "values": [ - "Women's rights" - ] - }, - { - "text": "Continue to strengthen the basic rights and non-discrimination of the Roma and Travellers", - "values": [ - "Minorities", - "Racial discrimination" - ] - }, - { - "text": "Actively facilitate the ethno-cultural development in Russia ", - "values": [ - "ESC rights - general" - ] - }, - { - "text": "Take, through capacity-building and technical assistance from the international community, the necessary measures to restore and strengthen national institutions essential to the administration of justice, the rule of law, including the judiciary, the office of the prosecutor, and the police", - "values": [ - "Justice", - "Technical assistance and cooperation" - ] - }, - { - "text": "Ratify the third optional protocol to the Convention on the Rights of the Child on a communications procedure as it reinforces and complements national and regional mechanisms", - "values": [ - "International instruments", - "Rights of the Child" - ] - }, - { - "text": "Adopt comprehensive national legislation such as the new Broadcasting Code in order to ensure media pluralism and protect independent media", - "values": [ - "Freedom of the press" - ] - }, - { - "text": "Ensure that religious, ethnic and sexual minorities are able to exercise their rights and freedoms, as guaranteed by the Iranian Constitution", - "values": [ - "Freedom of religion and belief", - "Minorities", - "Sexual Orientation and Gender Identity" - ] - }, - { - "text": "Continue its efforts, if necessary, in cooperation with United Nations agencies, namely UNICEF to combat the recruitment of children into military forces and to reintegrate children released from the army into normal life.", - "values": [ - "Rights of the Child" - ] - }, - { - "text": "Accomplish the Human Rights Goals", - "values": [ - "General" - ] - }, - { - "text": "Continue to include in its social policies anti-discrimination measures and programmes in favour of indigenous peoples, ethnic minorities, persons with disabilities, persons with HIV-AIDS and persons facing discrimination based on their sexual orientation", - "values": [ - "Disabilities", - "HIV - Aids", - "Indigenous peoples", - "Minorities", - "Racial discrimination", - "Sexual Orientation and Gender Identity" - ] - }, - { - "text": "Continue implementing socio-economic development strategies and plans designed to reduce poverty ", - "values": [ - "Development", - "Poverty" - ] - }, - { - "text": "Use international good practices as specific benchmarks for progress to improve the situation of the media community, as proposed by the media freedom representative of the Organization for Security and Cooperation in Europe, Dunja Mijatovic", - "values": [ - "Freedom of the press" - ] - }, - { - "text": "Take effective measures to increase women's participation in public and political life as well as in the labour market, in particular considering temporary special measures such as statutory quotas or incentives", - "values": [ - "Women's rights" - ] - }, - { - "text": "Enhance efforts to fight all forms of discrimination against women and domestic violence, including by adopting new legislation to this effect and ensuring its effective implementation", - "values": [ - "Women's rights" - ] - }, - { - "text": "Prohibit expressly all forms of corporal punishment of children and promote positive and non-violent forms of discipline.", - "values": [ - "Rights of the Child", - "Torture and other CID treatment" - ] - }, - { - "text": "Guarantee a safe, free and independent environment for journalists and ensure that all cases of attacks against them are investigated by independent and impartial bodies ", - "values": [ - "Freedom of the press" - ] - }, - { - "text": "Ensure that all detainees are afforded all fundamental safeguards from the outset of their detention, including the right to have prompt access to a lawyer and an independent medical examination and to notify a relative", - "values": [ - "Detention" - ] - }, - { - "text": "Investigate cases of violence and threats against journalists and human rights defenders, in order to bring the perpetrators to justice", - "values": [ - "Freedom of the press", - "Human rights defenders" - ] - }, - { - "text": "Guarantee the right to freedom of peaceful assembly and association in line with the with the International Covenant on Civil and Political Rights and amend existing legislation that is in violation of it ", - "values": [ - "Freedom of association and peaceful assembly", - "International instruments" - ] - }, - { - "text": "Establish transitional justice mechanisms to deal with human rights violations that were committed in the past, based on the results of a broad national consultation ", - "values": [ - "Justice" - ] - }, - { - "text": "Sign and ratify CAT and OP-CAT", - "values": [ - "Detention", - "International instruments", - "Torture and other CID treatment" - ] - }, - { - "text": "Guarantee access to the North and the East of the country to international and local humanitarian organizations specialized on family tracing and reunification programs", - "values": [ - "Freedom of movement" - ] - }, - { - "text": "Strengthen its appropriate and long-term measures against all forms of discrimination, intolerance and trafficking in persons, especially those targeting vulnerable groups", - "values": [ - "Trafficking" - ] - }, - { - "text": "Continue to adopt the legislative measures and protection policies necessary to ensure education for the Amazigh and Saharawi populations at all levels, as well as the full enjoyment of their rights to demonstrate and participate in the cultural life of the country, preserving their traditions and identity", - "values": [ - "ESC rights - general", - "Indigenous peoples", - "Right to education" - ] - }, - { - "text": "Take effective actions to ensure that women are fully protected from discrimination and violence, including by criminalizing domestic violence against women, adopt legal measures to guarantee full gender equality, and consider withdrawing reservations to the Convention on the Elimination of All Forms of Discrimination against Women ", - "values": [ - "International instruments", - "Women's rights" - ] - }, - { - "text": "Ensure concrete implementation of international human rights standards at all levels through the adoption of policies, laws and other measures at the federal and state levels and through regular consultations with key stakeholders, including states, civil society organizations and others", - "values": [ - "Civil society", - "International instruments" - ] - }, - { - "text": "Ensure that the security forces act in accordance with human rights laws and international norms on the use of force, and investigate allegations of abuse committed by them", - "values": [ - "Human rights violations by state agents", - "International instruments", - "Public security" - ] - }, - { - "text": "Protect human rights defenders and journalists by promptly investigating complaints of harassment and holding perpetrators accountable ", - "values": [ - "Freedom of the press", - "Human rights defenders" - ] - }, - { - "text": "Continue cooperation with the Special Procedures of the Council on the basis of its national priorities ", - "values": [ - "Special procedures" - ] - }, - { - "text": "Continue fighting discrimination against persons with disabilities ", - "values": [ - "Disabilities" - ] - }, - { - "text": "Strengthen necessary policies to respect and promote women's rights and their role in various fields, given that women are key partners in the development process ", - "values": [ - "Women's rights" - ] - }, - { - "text": "Guinea acknowledges that it is experiencing difficulties in protecting and supporting victims and witnesses. However, it remains committed to setting up an effective and consistent mechanism to this end.", - "values": [ - "Justice" - ] - }, - { - "text": "Speed up the finalization of its national policy on ending violence against women and girls", - "values": [ - "Rights of the Child", - "Women's rights" - ] - }, - { - "text": "Ratify CRPD, CPED and OP-CAT ", - "values": [ - "Detention", - "Disabilities", - "Enforced disappearances", - "International instruments", - "Torture and other CID treatment" - ] - }, - { - "text": "Extend the standing invitation to all thematic special procedures", - "values": [ - "Special procedures" - ] - }, - { - "text": "Further strengthen its educational system to guarantee unrestricted access to education for every member of the population ", - "values": [ - "Right to education" - ] - }, - { - "text": "Take immediate measures to investigate cases of brutal torture and killings of girls and women, especially elderly women, accused of witchcraft, and to prosecute and punish perpetrators ", - "values": [ - "Rights of the Child", - "Torture and other CID treatment", - "Women's rights" - ] - }, - { - "text": "Increase the number of investigations, intensify the investigative work and improve the efficiency of judicial procedures before national courts in the case of crimes committed during the war of the 1990s and strengthen efforts to determine the fate of all missing persons in Croatia", - "values": [ - "Justice" - ] - }, - { - "text": "Provide the National Action Child Protection Committee (NACPC) with sufficient authority and resources to effectively implement and coordinate comprehensive, coherent and consistent child rights policies ", - "values": [ - "Rights of the Child" - ] - }, - { - "text": "Include sexual orientation and gender identity in the national legislation on discrimination, and establish policies and initiatives to address discrimination against LGBTI persons", - "values": [ - "Sexual Orientation and Gender Identity" - ] - }, - { - "text": "Bring its national legislation fully in line with the Rome Statute and to ratify the Agreement on Privileges and Immunities", - "values": [ - "International instruments", - "Justice" - ] - }, - { - "text": "Continue efforts and endeavours to improve the overall human rights protection situation in the country", - "values": [ - "General" - ] - }, - { - "text": "Review the definition of rape so that the lack of consent has a central place in this criminal conduct", - "values": [ - "Women's rights" - ] - }, - { - "text": "Ratify the Optional Protocol to the Convention against Torture without further delay, as previously recommended", - "values": [ - "Detention", - "International instruments", - "Torture and other CID treatment", - "UPR process" - ] - }, - { - "text": "Work toward eliminating any loopholes in national legislation that might undermine the protection of women\u2019s rights and the principle of gender equality, including on domestic violence and marital rape", - "values": [ - "Rights of the Child", - "Women's rights" - ] - }, - { - "text": "Take further concrete steps to move quickly towards the abolition of the death penalty", - "values": [ - "Death penalty" - ] - }, - { - "text": "Continue ensuring the prosecution of cases of hate crimes", - "values": [ - "Racial discrimination" - ] - }, - { - "text": "Ratify the Optional Protocol to the Convention on the Rights of the Child on the sale of children", - "values": [ - "International instruments", - "Rights of the Child", - "Trafficking" - ] - }, - { - "text": "Consider strengthening its policy and relevant legislation, as well as allocating adequate resources, to further promote gender equality and women's participation in public life ", - "values": [ - "Women's rights" - ] - }, - { - "text": "Accede to the Optional Protocol to the International Covenant on Civil and Political Rights, the Second Optional Protocol to the International Covenant on Civil and Political Rights, aiming at the abolition of the death penalty, the Optional Protocol to the Convention against Torture and Other Cruel, Inhuman or Degrading Treatment or Punishment, and the Optional Protocol to the Convention on the Rights of the Child on the sale of children, child prostitution and child pornography", - "values": [ - "International instruments" - ] - }, - { - "text": "Repeal legislation criminalizing consensual sexual conduct between same-sex adults", - "values": [ - "Sexual Orientation and Gender Identity" - ] - }, - { - "text": "Discard efforts to narrow down and legally entrench a restrictive definition of family based exclusively on heterosexual marriage that could be considered discriminatory, an inclusive concept of partnership, also for same sex couples, would be a positive step", - "values": [ - "Sexual Orientation and Gender Identity" - ] - }, - { - "text": "Repeal or amend all provisions in domestic laws which provide for caning for administrative offences involving immigration law ", - "values": [ - "Migrants" - ] - }, - { - "text": "Expedite the adoption of the Prevention and Combating of Hate Crime and Hate Speech Bill, ensuring a strong legal framework against such crimes", - "values": [ - "Racial discrimination" - ] - }, - { - "text": "Take further measures to eliminate violence and discrimination against women, including by criminalizing sexual harassment ", - "values": [ - "Women's rights" - ] - }, - { - "text": "Expedite the ratification of the International Convention on the Protection of All Persons from Enforced Disappearance signed in 2012 signed in 2012", - "values": [ - "Enforced disappearances", - "International instruments" - ] - }, - { - "text": "Raise awareness as to the issue of female genital mutilation (FGM) and adopt adequate legislation prohibiting the practice of FGM and continue to implement effective programmes to sensitize the population about the harmful effects caused by this practice", - "values": [ - "Human rights education and training", - "Rights of the Child", - "Torture and other CID treatment", - "Women's rights" - ] - }, - { - "text": "Ensure that the envisaged law protecting domestic workers will be adopted as soon as possible", - "values": [ - "Labour" - ] - }, - { - "text": "Take into particular consideration the vulnerable situation of migrants and refugees in the country, in particular women and children", - "values": [ - "Asylum-seekers - refugees", - "Migrants", - "Rights of the Child", - "Women's rights" - ] - }, - { - "text": "Continue to fight against FGM ", - "values": [ - "Rights of the Child", - "Torture and other CID treatment", - "Women's rights" - ] - }, - { - "text": "Ensure access to justice for victims of sexual violence by ensuring the effective implementation of laws protecting women", - "values": [ - "Women's rights" - ] - }, - { - "text": "Enact legislation which specifically defines and criminalizes torture and stipulates effective measures to prevent and punish any violations", - "values": [ - "Torture and other CID treatment" - ] - }, - { - "text": "Take additional measures to reduce prisons' overcrowding and improve access to medical treatment and food ", - "values": [ - "Detention" - ] - }, - { - "text": "Ratify the Optional Protocols to the International Covenant on Civil and Political Rights, to the Convention on the Elimination of All Forms of Discrimination against Women and to the Convention on the Rights of Persons with Disabilities", - "values": [ - "CP rights - general", - "Disabilities", - "International instruments", - "Women's rights" - ] - }, - { - "text": "Adopt the draft law on the prevention and elimination of violence against women ", - "values": [ - "Women's rights" - ] - }, - { - "text": "Ensure the prompt and independent investigation of all alleged violations against human rights defenders", - "values": [ - "Human rights defenders" - ] - }, - { - "text": "Intensify efforts to achieve further gains in the areas of poverty reduction, especially focusing on providing necessary resources to realize the right to adequate housing and improving the living conditions of the people in rural areas", - "values": [ - "Poverty", - "Right to housing" - ] - }, - { - "text": "Abolish the death penalty and sign and ratify both Optional Protocols to the ICCPR ", - "values": [ - "CP rights - general", - "Death penalty", - "International instruments" - ] - }, - { - "text": "Increase the capacity of the Police Complaints Authority to undertake prompt and impartial investigations of police abuse so the PCA can transfer cases to the justice system for prosecution as warranted", - "values": [ - "Human rights violations by state agents", - "Justice" - ] - }, - { - "text": "Continue the efforts to reinforce the human rights institutions and the harmonization of the national legislation with the human rights conventions, to which the country is a party", - "values": [ - "International instruments" - ] - }, - { - "text": "Continue and strengthen policies to combat all forms of discrimination, with special attention to discrimination against women, and establish a legal framework to combat domestic violence ", - "values": [ - "Women's rights" - ] - }, - { - "text": "Improve the efficiency of the implementation of the Gender Equality Act, to pay special attention to domestic violence against women and adopt the necessary legislation in order to prevent violence and protect victims", - "values": [ - "Women's rights" - ] - }, - { - "text": "Broaden the mandate of its equality bodies and increase their human and financial resources", - "values": [ - "Other" - ] - }, - { - "text": "Collaborate with the treaty bodies by submitting regularly reports on human rights situation ", - "values": [ - "Treaty bodies" - ] - }, - { - "text": "Take more effective steps in strengthening gender equality and women empowerment in the country and in ensuring a plan of comprehensive development of children ", - "values": [ - "Rights of the Child", - "Women's rights" - ] - }, - { - "text": "Continue its efforts to further eliminate barriers to the full and effective participation in mainstream society of disabled persons, including children, in particular with regard to education, independent living, accessibility to multimedia and full participation in political and public life", - "values": [ - "Disabilities", - "Rights of the Child" - ] - }, - { - "text": "Guarantee that both women and men are equally paid for their services ", - "values": [ - "Women's rights" - ] - }, - { - "text": "Strengthen policies and seek international cooperation to ensure the rights of internally displaced people, including measures for their return or resettlement ", - "values": [ - "Internally displaced persons", - "Technical assistance and cooperation" - ] - }, - { - "text": "Take steps to protect the rights and regularize the citizenship status of all individuals, including those who formerly held temporary identification cards", - "values": [ - "Statelessness and the right to nationality" - ] - }, - { - "text": "Consider setting up an independent human rights commission in line with the Paris Principles ", - "values": [ - "National Human Rights Institution" - ] - }, - { - "text": "Continue human rights education for police and security forces aiming at better protection and preservation of human rights principles", - "values": [ - "Human rights education and training" - ] - }, - { - "text": "Grant the request made by the Special Rapporteur on torture in 2005 and 2007 to visit the country ", - "values": [ - "Special procedures", - "Torture and other CID treatment" - ] - }, - { - "text": "Study the possibility to establish new measures aimed at eliminating any discriminatory treatment towards ethnic minorities", - "values": [ - "Minorities" - ] - }, - { - "text": "Take effective measures to guarantee people's economic and social rights, lower female unemployment rate, and improve the living conditions of the poor ", - "values": [ - "Development", - "ESC rights - general", - "Poverty", - "Women's rights" - ] - }, - { - "text": "Continue to implement the existing policy and programmes to eradicate poverty", - "values": [ - "Poverty" - ] - }, - { - "text": "Take preventive and punitive measures against instigation of religious hatred", - "values": [ - "Freedom of religion and belief" - ] - }, - { - "text": "Reinforce the measures to fight against the sexist stereotypes affecting women in particular, and stress the promotion of equal opportunity, namely through the full implementation of the laws on gender equality and equal treatment", - "values": [ - "Women's rights" - ] - }, - { - "text": "Eliminate discrimination of and violence against religious minorities including by bringing national legislation such as the "Laws on Protection of Race and Religion" and the 1982 citizenship act in accordance with international human rights obligations, and establish an effective birth registration system guaranteeing universal access to education and other government services", - "values": [ - "Freedom of religion and belief", - "Minorities", - "Racial discrimination", - "Right to education", - "Statelessness and the right to nationality" - ] - }, - { - "text": "Promote the creation of an adequate environment for the full enjoyment of freedom of association, including the creation of labour unions and organizations independent from government, and initiate a review of the relevant provisions to ensure that the restrictions on freedom of association are only those provided for in the Covenant on Civil and Political Rights ", - "values": [ - "Freedom of association and peaceful assembly", - "International instruments", - "Labour" - ] - }, - { - "text": "Shed full light on the serious human rights violations committed during the armed conflict and during the 2007 elections by the police and the security forces and incorporate into domestic law the provisions of the Rome Statute of the International Criminal Court ", - "values": [ - "Elections", - "Human rights education and training", - "International instruments", - "Justice" - ] - }, - { - "text": "Take measures to strengthen the monitoring mechanisms to combat child labour and the economic exploitation of minors ", - "values": [ - "Labour", - "Rights of the Child" - ] - }, - { - "text": "Cooperate with the United Nations special procedures, especially by responding positively to mandate holders' requests for visits ", - "values": [ - "Special procedures" - ] - }, - { - "text": "New Zealand is committed to increasing Maori participation in the police force.", - "values": [ - "Indigenous peoples" - ] - }, - { - "text": "Take legislative and practical steps to guarantee that LGBTI persons can enjoy all human rights without discrimination", - "values": [ - "Sexual Orientation and Gender Identity" - ] - }, - { - "text": "Adopt further measures to ensure universal access to health and education and other welfare for rural communities, minority regions, disadvantaged families and the internal migrant population", - "values": [ - "Migrants", - "Minorities", - "Right to education", - "Right to health" - ] - }, - { - "text": "Ensure that the proposed new Bill of Rights to replace the Human Rights Act, if adopted, does not remove or weaken any human rights protection granted under the current Act", - "values": [ - "General" - ] - }, - { - "text": "Ensure implementation of impartial and independent investigations and criminal proceedings in accordance with existing law, including for cases as the Marina Cue events in Curuguaty of June 2012 in order to clarify allegations and bring perpetrators to justice", - "values": [ - "Justice" - ] - }, - { - "text": "Harmonize national laws with the international regulations on the rights of women and children", - "values": [ - "Rights of the Child", - "Women's rights" - ] - }, - { - "text": "Consider expediting the ratification of the core human rights treaties, including the Convention on the Rights of Persons with Disabilities", - "values": [ - "Disabilities", - "International instruments" - ] - }, - { - "text": "Sign and ratify the Convention against Torture, the International Convention for the Protection of All Persons from Enforced Disappearance, the International Convention on the Elimination of All Forms of Racial Discrimination", - "values": [ - "Enforced disappearances", - "International instruments", - "Racial discrimination", - "Torture and other CID treatment" - ] - }, - { - "text": "Strengthen measures to eradicate female genital mutilation and child marriage", - "values": [ - "Rights of the Child", - "Torture and other CID treatment", - "Women's rights" - ] - }, - { - "text": "Review the national action plan against trafficking, strengthening coordination between the Confederation, cantons and civil society to ensure a harmonized, robust and victim-oriented response", - "values": [ - "Civil society", - "Trafficking" - ] - }, - { - "text": "Ensure that national legislation conforms to international human rights standards on non-discrimination, particularly concerning sexual orientation and gender identity, gender and racial discrimination", - "values": [ - "International instruments", - "Sexual Orientation and Gender Identity" - ] - }, - { - "text": "Consider the abolition of the death penalty", - "values": [ - "Death penalty" - ] - }, - { - "text": "Continue enhancing the right to education and provide training services and professional development to the teachers", - "values": [ - "Right to education" - ] - }, - { - "text": "Continue its efforts to achieve equitable socio-economic development and to further address poverty alleviation through its overarching objective according to its current policies and action plan ", - "values": [ - "ESC rights - general", - "Poverty" - ] - }, - { - "text": "Continue its efforts to combat all forms of discrimination and promote equality", - "values": [ - "General" - ] - }, - { - "text": "Continue its reform of the system to protect children and enhance the social services for its population through the New Generation programme ", - "values": [ - "ESC rights - general", - "Rights of the Child" - ] - }, - { - "text": "Eliminate all forms of discrimination against women, in particular discrimination against divorced women and widows, so that they can participate in the economic and political life of their country", - "values": [ - "Women's rights" - ] - }, - { - "text": "Continue its efforts aimed at reducing overpopulation in prisons and at combating unhealthy conditions in detention, and in this regard, provide necessary financial resources to the penitentiary service", - "values": [ - "Detention" - ] - }, - { - "text": "Re-establish a moratorium on executions with a view to abolishing the death penalty ", - "values": [ - "Death penalty" - ] - }, - { - "text": "Ensure due process and full enforcement of laws to avoid extrajudicial, summary or arbitrary killings and arbitrary detentions, including adopting all necessary measures, including legal and judicial measures, in order to bring an end to impunity and to prevent the recurrence of such activities", - "values": [ - "Detention", - "Extrajudicial executions", - "Impunity" - ] - }, - { - "text": "Encourage racial, ethnic and religious tolerance, especially among young people ", - "values": [ - "Freedom of religion and belief", - "Minorities", - "Racial discrimination" - ] - }, - { - "text": "Ratify the Convention on the Rights of the Child and the International Covenant on Economic, Social and Cultural Rights", - "values": [ - "ESC rights - general", - "International instruments", - "Rights of the Child" - ] - }, - { - "text": "Ratify the Optional Protocol to Convention against Torture and Other Cruel, Inhuman or Degrading Treatment of Punishment", - "values": [ - "Detention", - "International instruments", - "Torture and other CID treatment" - ] - }, - { - "text": "Bahrain will examine the possibility of issuing an annual or a periodic national report on the human rights situation on the ground.", - "values": [ - "General" - ] - }, - { - "text": "Take measures to reduce overcrowding in prisons", - "values": [ - "Detention" - ] - }, - { - "text": "Ensure the effective implementation of the new laws related to human rights protection, in particular the mechanism of prevention and sanctioning of brutal acts committed by the police", - "values": [ - "Human rights violations by state agents" - ] - }, - { - "text": "Redouble efforts to fight all forms of discrimination and racism, including hate speech and xenophobia", - "values": [ - "Racial discrimination" - ] - }, - { - "text": "Adopt the necessary measures to ensure the investigation and prosecution of violations of the right to life and physical integrity, in light of human rights and international humanitarian law standards ", - "values": [ - "International humanitarian law", - "International instruments" - ] - }, - { - "text": "Take effective measures to protect all girls and women from all forms of violence and ill treatment, to carry out investigations and to ensure those responsible are punished", - "values": [ - "Rights of the Child", - "Women's rights" - ] - }, - { - "text": "Continue the public security and judicial reforms and ensure their implementation", - "values": [ - "Justice", - "Public security" - ] - }, - { - "text": "Continue its measures in ensuring the promotion and protection of family and family values from social, health and security threats", - "values": [ - "Other" - ] - }, - { - "text": "Continue to give priority attention to the protection of women and children from domestic violence, including by implementing and closely monitoring the impact of the Domestic Violence Prevention Act ", - "values": [ - "Rights of the Child", - "Women's rights" - ] - }, - { - "text": "Finalise and publish at an early date and then swiftly implement its National Human Rights Action Plan for 2009-2010", - "values": [ - "General" - ] - }, - { - "text": "Combat all forms of discrimination, including based on sexual orientation or sexual identity", - "values": [ - "Sexual Orientation and Gender Identity" - ] - }, - { - "text": "Bring promptly all detainees before a judge ", - "values": [ - "Justice" - ] - }, - { - "text": "Remove the obstacles which still exist in the exercise of the right to health, especially regional differences, to allow all people to enjoy quality in health services, which are freely provided in the country", - "values": [ - "Right to health" - ] - }, - { - "text": "Strengthen the role of the family in order to protect children from drugs and sexual exploitation, and reduce juvenile delinquency ", - "values": [ - "Rights of the Child" - ] - }, - { - "text": "Ratify the Convention for the Protection of All Persons against Enforced Disappearance, the Convention on the Rights of Persons with Disabilities and the Optional Protocol to the Convention against Torture and Other Cruel, Inhuman or Degrading or Punishment.", - "values": [ - "Detention", - "Disabilities", - "Enforced disappearances", - "International instruments", - "Torture and other CID treatment" - ] - }, - { - "text": "Ensure relevant agencies have sufficient resources and staff to enforce existing domestic violence laws", - "values": [ - "Rights of the Child", - "Women's rights" - ] - }, - { - "text": "Continue to deep the existing policy on democratization of access to higher-education and implement measures envisaged to strengthening the autonomy of universities, through the active participation of the university community's member ", - "values": [ - "Right to education" - ] - }, - { - "text": "Reinforce efforts to promote ethnic and religious tolerance between the different communities in the country through education and public-awareness campaigns.", - "values": [ - "Freedom of religion and belief", - "Human rights education and training", - "Minorities" - ] - }, - { - "text": "Establish a national human rights institution in conformity with the Paris Principles ", - "values": [ - "National Human Rights Institution" - ] - }, - { - "text": "Restore confidence in its legal system by ensuring the clear and unambiguous division of powers, including the indisputable independence of its judicial processes and judges", - "values": [ - "Justice" - ] - }, - { - "text": "Conduct thorough and impartial investigation into all allegations of discrimination against women ", - "values": [ - "Women's rights" - ] - }, - { - "text": "Strengthen respect for human rights within the security forces while vigorously investigating and prosecuting alleged human rights abuses, in order to restore the people's faith in both the judiciary and law enforcement ", - "values": [ - "Justice" - ] - }, - { - "text": "Ratify the OP-CAT and to take policy measures to prevent torture and ill treatment ", - "values": [ - "Detention", - "International instruments", - "Torture and other CID treatment" - ] - }, - { - "text": "Continue enforcing appropriate measures, such as the National Plan of Action for the Prevention and Eradication of Violence against Women and Children or the awareness campaign "Say No to Violence", to eliminate effectively violence against women, in particular domestic violence", - "values": [ - "Rights of the Child", - "Women's rights" - ] - }, - { - "text": "Adopt measures to combat stereotypes that place women and girls at a disadvantage and further promote equality between men and women", - "values": [ - "Rights of the Child", - "Women's rights" - ] - }, - { - "text": "Step up efforts to put an end to discriminatory practices, such as FGM, and criminalize marital rape and domestic violence ", - "values": [ - "Rights of the Child", - "Torture and other CID treatment", - "Women's rights" - ] - }, - { - "text": "Take legislative measures to guarantee in the law universal access to primary and secondary schooling for all children without discrimination ", - "values": [ - "Right to education", - "Rights of the Child" - ] - }, - { - "text": "Adopt a law against the placement of children in domesticity that are victims of several abuses", - "values": [ - "Labour", - "Rights of the Child" - ] - }, - { - "text": "Prohibit all corporal punishment of children in all settings, including in the home", - "values": [ - "Rights of the Child", - "Torture and other CID treatment" - ] - }, - { - "text": "Place the responsibility for all unaccompanied minor asylum seekers up to the age of 18 years with the Child Welfare Services ", - "values": [ - "Asylum-seekers - refugees", - "Rights of the Child" - ] - }, - { - "text": "Review the Gender Equality Bill and remove exceptions therein which would allow for discrimination against women, consistent with CEDAW ", - "values": [ - "International instruments", - "Women's rights" - ] - }, - { - "text": "Reform the association law 12-06 of 2012 to provide a clear and unambiguous legal foundation for the work of civil society organizations, including with regard to cooperation with international partners", - "values": [ - "Civil society", - "Freedom of association and peaceful assembly" - ] - }, - { - "text": "Further strengthen the promotion of the rights of women and girls ", - "values": [ - "Rights of the Child", - "Women's rights" - ] - }, - { - "text": "In the framework of the reform of the penal code and the penal procedure code, conform to the totality of the provisions of the Convention against Torture ", - "values": [ - "International instruments", - "Torture and other CID treatment" - ] - }, - { - "text": "Invite the new Special Rapporteur on the rights to freedom of peaceful assembly and of association to visit the country ", - "values": [ - "Freedom of association and peaceful assembly", - "Special procedures" - ] - }, - { - "text": "Consolidate its efforts towards gender equality", - "values": [ - "Women's rights" - ] - }, - { - "text": "Train professionals in the area of judicial affairs so as to enable them to perform their role effectively", - "values": [ - "Justice" - ] - }, - { - "text": "Continue strengthening its social programmes to improve the living conditions of its people, particularly the most excluded, with the cooperation and technical assistance that is requested by the country", - "values": [ - "ESC rights - general", - "Technical assistance and cooperation" - ] - }, - { - "text": "Accelerate the ratification of the United Nations Convention against Corruption, by speeding up the necessary reforms of the Criminal Code to make it compatible with this Convention ", - "values": [ - "Corruption", - "International instruments" - ] - }, - { - "text": "Take concrete steps to effectively increase the protection of the rights of pastoralists", - "values": [ - "Right to land" - ] - }, - { - "text": "Further enhance the status of women, fight against violence against women, and eliminate harmful practices against women at an early date ", - "values": [ - "Torture and other CID treatment", - "Women's rights" - ] - }, - { - "text": "Abolish legal provisions allowing for reduced sentences for so-called honor crimes and undertake an awareness-raising campaign", - "values": [ - "Human rights education and training", - "Rights of the Child", - "Women's rights" - ] - }, - { - "text": "Promote societal dialogue aimed at developing religious discourse supportive of the values of tolerance, social cohesion and mutual understanding", - "values": [ - "Freedom of religion and belief" - ] - }, - { - "text": "Continue with its policies of gender equality and equity mechanism in all areas ", - "values": [ - "Women's rights" - ] - }, - { - "text": "Ensure that gender-based violence is reported, duly investigated and prosecuted", - "values": [ - "Women's rights" - ] - }, - { - "text": "Continue its efforts for the development of a comprehensive national action plan for human rights", - "values": [ - "General" - ] - }, - { - "text": "Strengthen measures to ensure the investigation and punishment of hate speech against minority groups, including those made by members of some political parties and groups", - "values": [ - "Minorities", - "Racial discrimination" - ] - }, - { - "text": "Actively support programmes strengthening religious freedom and tolerance especially in the run-up to the elections in 2013", - "values": [ - "Freedom of religion and belief" - ] - }, - { - "text": "In consultation with civil society, develop and pass legislation that decriminalizes consensual same-sex sexual conduct", - "values": [ - "Civil society", - "Sexual Orientation and Gender Identity" - ] - }, - { - "text": "Set a minimum age for criminal responsibility, as well as special procedures for minor offenders", - "values": [ - "Justice", - "Rights of the Child" - ] - }, - { - "text": "Prop up efforts for social inclusion of the Roma population", - "values": [ - "Minorities" - ] - }, - { - "text": "Conduct awareness-raising campaigns concerning equality between men and women ", - "values": [ - "Human rights education and training", - "Women's rights" - ] - }, - { - "text": "Adopt an anti-terrorism law compliant with international standards", - "values": [ - "Counter-terrorism" - ] - }, - { - "text": "Decriminalize homosexuality and respect the fundamental rights of LGBT persons", - "values": [ - "Sexual Orientation and Gender Identity" - ] - }, - { - "text": "Strengthen the social policies aimed at integrating minorities into the labour market", - "values": [ - "Labour", - "Minorities" - ] - }, - { - "text": "Consider widening the criminal legislation, not only criminalizing cases of femicide, but also all cases of violence against women", - "values": [ - "Women's rights" - ] - }, - { - "text": "Consider ratifying the International Convention for the Protection of All Persons from Enforced Disappearance, as well as the main international instruments in the field of human rights to which it is not yet a party", - "values": [ - "Enforced disappearances", - "International instruments" - ] - }, - { - "text": "Engage in a dissemination and popularization campaign of major international human rights instruments in the whole national territory ", - "values": [ - "International instruments" - ] - }, - { - "text": "Investigate all reports of assaults on and harassment of human rights defenders and bring to justice those responsible.", - "values": [ - "Human rights defenders" - ] - }, - { - "text": "Revoke all laws that allow corporal punishment of children", - "values": [ - "Rights of the Child", - "Torture and other CID treatment" - ] - }, - { - "text": "Redouble efforts to achieve a greater participation of women in remunerated employment, which goes beyond the area of teaching or the education sector, and that includes leadership positions in both the public and private spheres", - "values": [ - "Women's rights" - ] - }, - { - "text": "Double investments in agriculture to protect sources of water, replenishing farmers with seeds, improving exports, vaccinating livestock and poultry, and encouraging a more nutritious and diverse diet", - "values": [ - "Right to food", - "Right to water and sanitation" - ] - }, - { - "text": "Support initiatives and strategies to combat discrimination and promote the inclusion of vulnerable persons", - "values": [ - "Racial discrimination" - ] - }, - { - "text": "Become a party to the Optional Protocol to the Convention against Torture", - "values": [ - "Detention", - "International instruments", - "Torture and other CID treatment" - ] - }, - { - "text": "Establish more specialized juvenile courts to dispense justice ", - "values": [ - "Justice", - "Rights of the Child" - ] - }, - { - "text": "Consider formulating a National Human Rights Action Plan", - "values": [ - "General" - ] - }, - { - "text": "Adopt the national action plan on children", - "values": [ - "Rights of the Child" - ] - }, - { - "text": "Further strengthening of the judiciary by investigating all allegations of human rights violations by law enforcement officers and the police ", - "values": [ - "Human rights violations by state agents" - ] - }, - { - "text": "Finalize the process of ratification of the Optional Protocol to the Convention on the Rights of Persons with Disabilities", - "values": [ - "Disabilities", - "International instruments" - ] - }, - { - "text": "Ensure the inclusion and consultation of Roma while designing, implementing and evaluating policies, programmes or initiatives that might affect their rights", - "values": [ - "Minorities" - ] - }, - { - "text": "Accomplish progressively human rights goals as set forth in Human Rights Council resolution 9-12.", - "values": [ - "General" - ] - }, - { - "text": "Review its reservations to the Convention on the Elimination of All Forms of Discrimination against Women with a view to withdrawing them, especially the reservation to the right of a child to obtain Qatari nationality from a Qatari women married to a foreign man", - "values": [ - "International instruments", - "Statelessness and the right to nationality", - "Women's rights" - ] - }, - { - "text": "Establish a national institution for the advancement of women in accordance with the provisions of the Beijing Platform for Action", - "values": [ - "Women's rights" - ] - }, - { - "text": "Build tolerance and intercultural understanding, and develop a national action plan on racism", - "values": [ - "Racial discrimination" - ] - }, - { - "text": "Strengthen efforts to address the phenomenon of alcoholism and drug addiction of children and youth, and in this regard, strengthen health-related awareness-raising programmes", - "values": [ - "Right to health", - "Rights of the Child" - ] - }, - { - "text": "Take steps for the comprehensive prohibition of corporal punishment, including when exercising parental rights ", - "values": [ - "Rights of the Child", - "Torture and other CID treatment" - ] - }, - { - "text": "Continue to give greater impetus to a policy to prevent, combat and eradicate torture, including improvement of the definition of torture in accordance with article 1 of CAT", - "values": [ - "International instruments", - "Torture and other CID treatment" - ] - }, - { - "text": "Implement measures to improve enforcement of laws criminalizing rape and domestic violence, including by thoroughly investigating and prosecuting all acts of violence against women, and by providing training to law enforcement officials", - "values": [ - "Human rights education and training", - "Rights of the Child", - "Women's rights" - ] - }, - { - "text": "Continue strengthening measures against racism, xenophobia and Islamophobia, as well as discrimination against migrants", - "values": [ - "Freedom of religion and belief", - "Migrants", - "Racial discrimination" - ] - }, - { - "text": "Continue the actions taken to further advance in achieving gender equality and the empowerment of women", - "values": [ - "Women's rights" - ] - }, - { - "text": "Take the necessary measures to increase women's access to health care facilities and medical assistance by trained personnel, in particular in rural areas, in order to reduce the incidence of maternal and infant mortality and to enhance the life expectancy of women ", - "values": [ - "Right to health", - "Rights of the Child", - "Women's rights" - ] - }, - { - "text": "Abolish the death penalty for all crimes and commute all death sentences into custodial sentences", - "values": [ - "Death penalty" - ] - }, - { - "text": "Continue efforts to achieve full universal health coverage, including for non-nationals, as part of the National Health Strategy ", - "values": [ - "Right to health" - ] - }, - { - "text": "Take concrete steps with a view to ensuring the implementation of the strategy for gender and the national plan for persons with disabilities", - "values": [ - "Disabilities", - "Women's rights" - ] - }, - { - "text": "Strictly apply all legal and disciplinary means to sanction corruption, conflict of interest and organized crime, and accelerate the implementation of the action plan to implement the National Anti-Corruption Strategy", - "values": [ - "Corruption", - "Public security" - ] - }, - { - "text": "Adopt a comprehensive law to fight violence against women ", - "values": [ - "Women's rights" - ] - }, - { - "text": "Consider ratification of the Convention on the Rights of the Child, the Convention on the Elimination of All forms of Discrimination against Women, as well as the other core international human rights treaties that the United States is not a party to", - "values": [ - "International instruments", - "Rights of the Child", - "Women's rights" - ] - }, - { - "text": "Take the necessary measures to prohibit the use of ill-treatment", - "values": [ - "Torture and other CID treatment" - ] - }, - { - "text": "Paying due attention to preventing and combating trafficking in women and children, strengthening education and information on the elimination of discrimination against the victims of trafficking and job and income generation for them, finding solution to the issues of child labour, street children and violence against children, close cooperation with other countries, especially in the region, on combating trafficking in women and children and transnational crime,", - "values": [ - "Labour", - "Right to education", - "Rights of the Child", - "Trafficking", - "Women's rights" - ] - }, - { - "text": "Enforce the 2013 Family Safety Act, especially ensuring the full prohibition of sexual harassment and spousal rape", - "values": [ - "Women's rights" - ] - }, - { - "text": "Continue to strengthen the national preventive mechanism ", - "values": [ - "Other" - ] - }, - { - "text": "Take appropriate measures to ensure the lives and security of journalists and human rights defenders ", - "values": [ - "Freedom of the press", - "Human rights defenders" - ] - }, - { - "text": "Proceed to systematically assess the impact of austerity measures on the most vulnerable social groups, especially children", - "values": [ - "Rights of the Child" - ] - }, - { - "text": "Continue with the legal and legislative reforms at the national level to strengthen and protect human rights in accordance with international standards and in harmony with the cultural values of the people of the United Arab Emirates", - "values": [ - "Other" - ] - }, - { - "text": "Pursue efforts to ensure gender equality and combat violence against women and children", - "values": [ - "Rights of the Child", - "Women's rights" - ] - }, - { - "text": "Continue human rights education for police and security forces to ensure better protection and maintenance of human rights standards", - "values": [ - "Human rights education and training" - ] - }, - { - "text": "Redouble efforts to combat racial discrimination, xenophobia and related intolerance", - "values": [ - "Racial discrimination" - ] - }, - { - "text": "Continue efforts in following up and monitoring any discrimination based on sex, race or any other form", - "values": [ - "Racial discrimination", - "Sexual Orientation and Gender Identity", - "Women's rights" - ] - }, - { - "text": "Ensure that an independent body is established to investigate reports of detained children's exposure to torture and to cruel, inhuman or degrading treatment", - "values": [ - "Detention", - "Rights of the Child", - "Torture and other CID treatment" - ] - }, - { - "text": "Create an independent national human rights institution in accordance with the Paris Principles ", - "values": [ - "National Human Rights Institution" - ] - }, - { - "text": "Extend standing invitations to the Special Rapporteur on the independence of judges and lawyers and the Special Rapporteur on extrajudicial, summary or arbitrary executions, to adopt necessary measures aimed at establishing the Truth and Reconciliation Commission ", - "values": [ - "Extrajudicial executions", - "Justice", - "Special procedures" - ] - }, - { - "text": "Harmonize the Law on the Prohibition of Discrimination with the laws and provisions at entity, district and municipal levels and increase general awareness of the law", - "values": [ - "Other" - ] - }, - { - "text": "Adopt a law to combat human trafficking, sexual exploitation, as well as to ensure victim rehabilitation", - "values": [ - "Trafficking" - ] - }, - { - "text": "Take urgent measures to adopt legislation sanctioning discrimination and incitement to violence on the grounds of sexual orientation, and investigate and sanction cases of violence against lesbian, gay, bisexual, transgender, intersex and queer persons", - "values": [ - "Sexual Orientation and Gender Identity" - ] - }, - { - "text": "Prioritize action on the recommendations of different treaty bodies, in particular the Committee on the Elimination of Discrimination against Women, the Committee on the Rights of the Child and the Committee against Torture.", - "values": [ - "Rights of the Child", - "Torture and other CID treatment", - "Treaty bodies", - "Women's rights" - ] - }, - { - "text": "Become a party to the Convention against Torture ", - "values": [ - "International instruments", - "Torture and other CID treatment" - ] - }, - { - "text": "Establish a moratorium on executions, with a view to abolishing the death penalty ", - "values": [ - "Death penalty" - ] - }, - { - "text": "Adopt further legal and practical measures to counter race-based hatred and crime, support social integration and harmony and provide equal opportunities for minority groups and migrants so as to ensure their dignity, decent work, education, health care and social welfare", - "values": [ - "Migrants", - "Minorities", - "Racial discrimination" - ] - }, - { - "text": "Establish a programme to effectively abolish the death penalty in its criminal law", - "values": [ - "Death penalty" - ] - }, - { - "text": "Sign the CAT and its Optional Protocol (OPCAT), in order to provide a further disincentive against torture by the security forces and police", - "values": [ - "Detention", - "International instruments", - "Torture and other CID treatment" - ] - }, - { - "text": "Establish standard operating procedures for the identification of victims of human trafficking", - "values": [ - "Trafficking" - ] - }, - { - "text": "Take specific measures to combat harmful practices in law and in practice, bearing in mind the recommendations of the Committee on the Rights of the Child", - "values": [ - "Rights of the Child", - "Torture and other CID treatment", - "Treaty bodies" - ] - }, - { - "text": "Establish a strong and independent national human rights institution in conformity with the Paris Principles", - "values": [ - "National Human Rights Institution" - ] - }, - { - "text": "Take adequate measures to effectively address violence against foreign, minority and indigenous women by prosecuting and sanctioning all forms of violence, and ensuring that victims have access to immediate means of redress and protection", - "values": [ - "Indigenous peoples", - "Migrants", - "Minorities", - "Women's rights" - ] - }, - { - "text": "Continue its efforts to put a halt to all negative cultural practices and stereotypes that discriminate against women ", - "values": [ - "Women's rights" - ] - }, - { - "text": "Take all necessary measures to end all forms of discrimination still existing in Saint Kitts and Nevis and analyse the possibility of creating a specific law on discrimination based on disability, language, sexual orientation, gender identity or social status", - "values": [ - "Disabilities", - "Minorities", - "Racial discrimination", - "Sexual Orientation and Gender Identity" - ] - }, - { - "text": "Take prompt action to implement the Family Protection Act, and consider initiatives to raise community awareness of that Act ", - "values": [ - "Human rights education and training", - "Rights of the Child", - "Women's rights" - ] - }, - { - "text": "Mexico is committed to strengthening the international human rights system and the UPR as part of its foreign policy, and that the President had recently reiterated its commitment with the UPR recommendations", - "values": [ - "UPR process" - ] - }, - { - "text": "Take more steps in sensitizing the local population on human rights instruments", - "values": [ - "Human rights education and training" - ] - }, - { - "text": "The accession to the Convention on the Status of Refugees and its Additional Protocol of 1967", - "values": [ - "Asylum-seekers - refugees", - "International instruments" - ] - }, - { - "text": "Continue efforts to promote education and combat illiteracy, particularly among rural women.", - "values": [ - "Right to education", - "Women's rights" - ] - }, - { - "text": "Fully cooperate with the special procedures mandate-holders", - "values": [ - "Special procedures" - ] - }, - { - "text": "Carry out the adoption of the action plan for the prevention of all forms of violence, with a view to strengthening the framework for the protection of all victims, in particular those belonging to vulnerable groups", - "values": [ - "Minorities" - ] - }, - { - "text": "Continue efforts to raise public awareness of human rights and effectively combat racism, racial discrimination and intolerance ", - "values": [ - "Human rights education and training", - "Racial discrimination" - ] - }, - { - "text": "We are fully committed to the UPR process and the important role it plays in improving human rights across the world. We will engage civil society organisations in deciding which recommendations to accept, therefore ensuring a strategy for implementation which has buy in and is deliverable against the backdrop of reduced resources in both the statutory and voluntary sectors", - "values": [ - "Civil society", - "UPR process" - ] - }, - { - "text": "Guarantee equality between men and women through an exhaustive review of national legislation", - "values": [ - "Women's rights" - ] - }, - { - "text": "Support the work of the Truth and Reconciliation Commission, in particular to achieve the enjoyment of women and child rights and the implementation of its recommendations", - "values": [ - "Justice", - "Rights of the Child", - "Women's rights" - ] - }, - { - "text": "Continue programmes to fight HIV/AIDS", - "values": [ - "HIV - Aids" - ] - }, - { - "text": "Estonia is currently not able to fully endorse the recommendation [79.14] to pay special attention to acts of violence against homosexuals. Estonia is committed to taking measures to enhance the level of public awareness and protection of the rights of lesbian, gay, bisexual and transgender persons.", - "values": [ - "Enforced disappearances", - "Justice", - "Rights of the Child", - "Sexual Orientation and Gender Identity", - "Torture and other CID treatment" - ] - }, - { - "text": "Ensure the effective participation of national minorities in public life, in decision-making processes and in executive and judicial institutions at all levels of governance ", - "values": [ - "Minorities" - ] - }, - { - "text": "Intensify measures to improve prison conditions by reducing pretrial detention, guaranteeing fair trial and ensuring access to health and sanitary facilities in order to protect the human rights of all persons in detention", - "values": [ - "Detention" - ] - }, - { - "text": "Adopt further measures in order to ensure the participation of persons belonging to national minorities in the decision-making process", - "values": [ - "Minorities" - ] - }, - { - "text": "Take necessary measures regarding discrimination against women, refugees, migrants and women from ethnic groups, and to guarantee the integration of all women victims of trafficking", - "values": [ - "Asylum-seekers - refugees", - "Migrants", - "Racial discrimination", - "Trafficking", - "Women's rights" - ] - }, - { - "text": "Provide the Jordanian National Centre for Human Rights and other relevant institutions with adequate human, technical and financial resources so that they can properly fulfil their mandate", - "values": [ - "National Human Rights Institution" - ] - }, - { - "text": "Recognize the justiciability of social, economic and cultural rights, in accordance with the Optional Protocol to ICESCR", - "values": [ - "ESC rights - general", - "International instruments" - ] - }, - { - "text": "Review domestic legislation with a view to implementing the provisions of the Convention on the Elimination of All Forms of Discrimination against Women in the national law", - "values": [ - "International instruments", - "Women's rights" - ] - }, - { - "text": "Ratify other important international human rights instruments, such as the Optional Protocol to CRPD", - "values": [ - "Disabilities", - "International instruments" - ] - }, - { - "text": "Urgently conduct thorough and impartial investigation into all allegations of excessive force and abuse by law enforcement officials and bring to justice anyone suspected of having committed excessive use of force, torture or other human rights violations ", - "values": [ - "Human rights violations by state agents", - "Torture and other CID treatment" - ] - }, - { - "text": "Take into account the human rights dimensions of human trafficking, in particular the need to protect and provide assistance to victims, in the drafting of legislation to combat human trafficking", - "values": [ - "Trafficking" - ] - }, - { - "text": "Continue working to achieve a greater women's leadership in agricultural cooperatives ", - "values": [ - "Women's rights" - ] - }, - { - "text": "Investigate and hold to account persons involved in cases of enforced disappearance, arbitrary detention and acts of corruption or extortion associated therewith, and communicate the findings of such investigations to the victims' families", - "values": [ - "Corruption", - "Detention", - "Enforced disappearances" - ] - }, - { - "text": "Redouble efforts to ensure that girls and boys have an education with equal opportunities in terms of professional career, as well as to eliminate the difference in the remuneration of men and women ", - "values": [ - "Women's rights" - ] - }, - { - "text": "Continue to establish cooperation with international human rights mechanisms and consider extending a standing invitation to all special procedures mandate holders of the Human Rights Council ", - "values": [ - "Special procedures" - ] - }, - { - "text": "Find effective ways of realizing the rights of individuals belonging to ethnic, religious and linguistic minorities.", - "values": [ - "Minorities" - ] - }, - { - "text": "Repeal the provisions of the media and anti-terrorism legislation that infringe on the protection accorded to freedom of expression by provisions in article 29 of its Constitution and on Ethiopia's human rights obligations ", - "values": [ - "Counter-terrorism", - "Freedom of opinion and expression" - ] - }, - { - "text": "Eliminate, in law and practice, all forms of discrimination against persons belonging to religious, ethnic, linguistic and other minorities, as well as against lesbian, gay, bisexual and transgender persons", - "values": [ - "Freedom of religion and belief", - "Minorities", - "Racial discrimination", - "Sexual Orientation and Gender Identity" - ] - }, - { - "text": "Review the Charter in line with the recommendations of the Human Rights Committee to make sure that those who violated human rights be judged and prosecuted according to international standards, and to make sure that those who criticized the Government are not subjected to criminal prosecution", - "values": [ - "Freedom of opinion and expression", - "Treaty bodies" - ] - }, - { - "text": "Respect its obligations under international law as a State party to the Second Optional Protocol to the International Covenant on Civil and Political Rights, aiming at the abolition of the death penalty", - "values": [ - "Death penalty", - "International instruments" - ] - }, - { - "text": "Issue a standing invitation to the special procedures of the Human Rights Council ", - "values": [ - "Special procedures" - ] - }, - { - "text": "Give priority to ensure independent, impartial and effective investigations into violations of women's rights", - "values": [ - "Women's rights" - ] - }, - { - "text": "Consider becoming party to the International Convention for the Protection of All Persons from Enforced Disappearance", - "values": [ - "Enforced disappearances", - "International instruments" - ] - }, - { - "text": "Continue to consider ratification of more international human rights instruments", - "values": [ - "International instruments" - ] - }, - { - "text": "Investigate and prosecute in courts the perpetrators of selective killings through the use of drones, which has cost the lives of innocent civilians outside the United States", - "values": [ - "Counter-terrorism", - "Extrajudicial executions" - ] - }, - { - "text": "Give equal access to education, health care and other social services regardless of having birth certificates or not, to all children", - "values": [ - "Right to education", - "Right to health", - "Rights of the Child", - "Statelessness and the right to nationality" - ] - }, - { - "text": "Step up its efforts towards ratifying the International Convention on the Protection of the Rights of All Migrant Workers and Members of Their Families", - "values": [ - "International instruments", - "Labour", - "Migrants" - ] - }, - { - "text": "Take appropriate measures for the immediate completion of the registration of citizens, in particular children under the age of 4, who have not had their birth registration carried out", - "values": [ - "Rights of the Child", - "Statelessness and the right to nationality" - ] - }, - { - "text": "Continue promoting women's rights in order to encourage their participation in decision-making processes", - "values": [ - "Women's rights" - ] - }, - { - "text": "Continue efforts aimed at the improvement of the situation of women and their empowerment ", - "values": [ - "Women's rights" - ] - }, - { - "text": "Continue the fruitful cooperation with the UN human rights mechanisms and the process of ratification of the international instruments to which Congo is not yet a party", - "values": [ - "International instruments", - "Special procedures", - "Treaty bodies", - "UPR process" - ] - }, - { - "text": "Carry out campaigns of awareness and promotion of social change in relation to non-discrimination on the grounds of sexual orientation aimed, inter alia, to avoid homophobic aggression", - "values": [ - "Sexual Orientation and Gender Identity" - ] - }, - { - "text": "Strengthen the systems of legal assistance and psycho-social protection so that they are adapted to the particular needs of minors and prevent them from becoming again victims of domestic violence ", - "values": [ - "Rights of the Child" - ] - }, - { - "text": "Invest more on a workable programme that would ensure the smooth coordination and implementation of their own initiatives and the different recommendations by treaty bodies", - "values": [ - "Treaty bodies" - ] - }, - { - "text": "Repeal all provisions allowing for the death penalty and consider ratifying ICCPR and its Second Optional Protocol ", - "values": [ - "Death penalty", - "International instruments" - ] - }, - { - "text": "Take all necessary measures to ensure the full respect of sexual and reproductive rights", - "values": [ - "Right to health", - "Women's rights" - ] - }, - { - "text": "Adopt and apply a comprehensive anti-discrimination law", - "values": [ - "Other" - ] - }, - { - "text": "Reinforce efforts to eliminate trafficking and abuse of children including the conduct of efficient awareness-raising campaigns", - "values": [ - "Human rights education and training", - "Rights of the Child", - "Trafficking" - ] - }, - { - "text": "Continue to adopt effective measures to assist victims of trafficking in human beings", - "values": [ - "Trafficking" - ] - }, - { - "text": "Combat intimidation and pressure practices against journalists and human rights defenders", - "values": [ - "Freedom of the press", - "Human rights defenders" - ] - }, - { - "text": "Continue to review and refine the relevant legislations, policies and programmes to accord the elderly with more protection, services and opportunities to allow them to age with dignity and continue contributing to society where they can", - "values": [ - "Other" - ] - }, - { - "text": "Intensify efforts to address illegal trafficking in persons and drugs", - "values": [ - "Public security", - "Trafficking" - ] - }, - { - "text": "Always protect the rights of children", - "values": [ - "Rights of the Child" - ] - }, - { - "text": "Fully abolish the death penalty, which has been under a de facto moratorium for 20 years", - "values": [ - "Death penalty" - ] - }, - { - "text": "Ratify the Convention relating to the Status of Refugees and the Convention relating to the Status of Stateless Persons ", - "values": [ - "Asylum-seekers - refugees", - "International instruments", - "Statelessness and the right to nationality" - ] - }, - { - "text": "Increase the initiatives to guarantee access for all to drinking water and sanitation ", - "values": [ - "Right to water and sanitation" - ] - }, - { - "text": "Continue the efforts undertaken for the ratification of international human rights instruments and for the harmonization of the national legislation", - "values": [ - "International instruments" - ] - }, - { - "text": "Formally abolish the death penalty, with a view to ratifying the Second Optional Protocol to the International Covenant on Civil and Political Rights", - "values": [ - "Death penalty", - "International instruments" - ] - }, - { - "text": "Review its legislation and practices, ensuring that they comply fully with the principle of non-refoulement, and to ensure the accountability of persons responsible for any violation thereto", - "values": [ - "Asylum-seekers - refugees" - ] - }, - { - "text": "Continue to address the issue of unaccompanied children arriving in Spanish territories and to consider implementing, as appropriate, the recommendations of UNHCR, human rights treaty bodies and special procedures ", - "values": [ - "Rights of the Child", - "Special procedures", - "Treaty bodies" - ] - }, - { - "text": "Provide the national human rights institution with sufficient resources to carry out its mandate effectively and independently, including the promotion and protection of economic, social and cultural rights", - "values": [ - "ESC rights - general", - "National Human Rights Institution" - ] - }, - { - "text": "Develop an administration of justice policy that would address principles of access to justice and public interest education, and take reform measures to address corruption, in particular within the judicial system ", - "values": [ - "Corruption", - "Justice" - ] - }, - { - "text": "Ensure prevention of discrimination against women", - "values": [ - "Women's rights" - ] - }, - { - "text": "Consider establishing a moratorium on the death penalty with a view to its abolishment", - "values": [ - "Death penalty" - ] - }, - { - "text": "Adapt the surveys conducted by the Swiss Federal Statistical Office in order to include transgender people and reflect the findings in the following universal periodic review cycle", - "values": [ - "Sexual Orientation and Gender Identity", - "UPR process" - ] - }, - { - "text": "Further ensure that all victims of torture and ill-treatment - whether still in United States custody or not - obtain redress and have an enforceable right to fair and adequate compensation and as full rehabilitation as possible, including medical and psychological assistance", - "values": [ - "Detention", - "Torture and other CID treatment" - ] - }, - { - "text": "Implement the recommendations of the Human Rights Committee, namely to establish an independent national human rights institution with a broad mandate for human rights protection in conformity with the Paris Principles", - "values": [ - "National Human Rights Institution" - ] - }, - { - "text": "Take measures to further ensure the independence and freedom of the media", - "values": [ - "Freedom of the press" - ] - }, - { - "text": "Take measures to guarantee effective access to reparation for women victims of gender-based violence", - "values": [ - "Women's rights" - ] - }, - { - "text": "Continue stepping up efforts in the area of combating trafficking in human beings, including continuing the practice of implementing national plans of actions and other strategies in this area ", - "values": [ - "Trafficking" - ] - }, - { - "text": "Further increase initiatives for the promotion of the right to education, especially for vulnerable children", - "values": [ - "Right to education", - "Rights of the Child" - ] - }, - { - "text": "Continue developing its juvenile justice system in terms of both legislation and practice. In particular, ensure that there are adequately trained professionals and adequate infrastructure and that deprivation of liberty is only used as a measure of last resort in the case of under-aged persons.", - "values": [ - "Justice", - "Rights of the Child" - ] - }, - { - "text": "Implement policies to ensure the promotion of the rights of women and children, specifically in combating domestic violence ", - "values": [ - "Rights of the Child", - "Women's rights" - ] - }, - { - "text": "Continue efforts to promote freedom of expression and information by protecting journalists", - "values": [ - "Freedom of opinion and expression", - "Freedom of the press" - ] - }, - { - "text": "Fully align the institutional and operational framework of the national Human Rights Commission to be in line with the Paris Principles", - "values": [ - "National Human Rights Institution" - ] - }, - { - "text": "Take all adequate measures to promptly eliminate all forms of violence against women and children, including abuse and neglect of children", - "values": [ - "Rights of the Child", - "Women's rights" - ] - }, - { - "text": "With the support of the international community, continue to fight HIV-AIDS.", - "values": [ - "HIV - Aids", - "Technical assistance and cooperation" - ] - }, - { - "text": "Renew its focus on technical and vocational training through its proposed Skill Development Programme for the youth", - "values": [ - "Right to education" - ] - }, - { - "text": "Take action at all levels to address the interlinked root causes of preventable mortality and morbidity of children under 5 and consider applying the technical guidance on the application of a human rights-based approach to the implementation of policies and programmes to reduce and eliminate preventable mortality and morbidity of children under 5 years of age (A/HRC/27/31)", - "values": [ - "Right to health", - "Rights of the Child" - ] - }, - { - "text": "Raise awareness of the Anti-Discrimination Act among law enforcement and judicial officials", - "values": [ - "Human rights education and training" - ] - }, - { - "text": "Take steps to more effectively foster the integration into Montenegrin society of particular vulnerable groups, through addressing discrimination in areas such as education and employment", - "values": [ - "Labour", - "Racial discrimination", - "Right to education" - ] - }, - { - "text": "Establish an independent Human Rights Commission to identify and denounce human rights violations", - "values": [ - "National Human Rights Institution" - ] - }, - { - "text": "Consider putting a moratorium on capital punishment with the view to its ultimate abolishment", - "values": [ - "Death penalty" - ] - }, - { - "text": "Implement sustainable public policies to prevent torture and prosecute and punish perpetrators, train and sensitize the armed forces and the police, define the crime of torture in domestic legislation", - "values": [ - "Human rights education and training", - "Torture and other CID treatment" - ] - }, - { - "text": "Increase efforts to investigate and prosecute those responsible for threats or violence against human rights defenders, trade unionists, community leaders and journalists ", - "values": [ - "Freedom of the press", - "Human rights defenders", - "Labour" - ] - }, - { - "text": "An increase in resources for nationwide anti-trafficking awareness programmes, including law enforcement training", - "values": [ - "Trafficking" - ] - }, - { - "text": "Continue her efforts and measures in investing in education for all as a means to guarantee the gender equality and to foster the human rights culture in the society", - "values": [ - "Human rights education and training", - "Right to education", - "Women's rights" - ] - }, - { - "text": "Sign the International Convention for the Protection of All Persons from Enforced Disappearance ", - "values": [ - "Enforced disappearances", - "International instruments" - ] - }, - { - "text": "Continue to promote and protect the rights of children and women ", - "values": [ - "Rights of the Child", - "Women's rights" - ] - }, - { - "text": "Ensure, in practice, the non-discrimination and respect of the rights of persons belonging to minorities, be they ethnic, cultural or religious, in particular the Bedouin and the Arab", - "values": [ - "Freedom of religion and belief", - "Minorities", - "Racial discrimination" - ] - }, - { - "text": "Continue its 2003 programme aimed at combating poverty, in order to guarantee social peace and fight against exclusion, particularly in rural areas", - "values": [ - "Poverty" - ] - }, - { - "text": "The delegation acknowledged the challenges they have faced in the realm of human rights with a view to dealing with them in a comprehensive manner and said that the Government remained committed to vigorously protecting and promoting the human rights of its people as well as fulfilling all its international human rights obligations.", - "values": [ - "International instruments" - ] - }, - { - "text": "Continue providing and expanding human rights education and training for all relevant Government authorities to build capacities of officials, and ensure effective implementation of human rights-related laws.", - "values": [ - "Human rights education and training" - ] - }, - { - "text": "Ratify the Rome Statute of the International Criminal Court and fully align its legislation with all obligations under the Rome Statute, including incorporating the definition of crimes and general principles of the Statute, as well as adopting provisions enabling cooperation with the Court ", - "values": [ - "International instruments", - "Justice" - ] - }, - { - "text": "Request the assistance of United Nations bodies in the area of regulating migration flows, in order to set up techniques to support and facilitate the return and reintegration in dignity and security of Angolan displaced persons and refugees", - "values": [ - "Asylum-seekers - refugees", - "Internally displaced persons", - "Migrants" - ] - }, - { - "text": "Continue strengthening its efforts in ensuring the well-being of children, particularly those living in foster care, so that they could enjoy living in a healthy family environment", - "values": [ - "Rights of the Child" - ] - }, - { - "text": "Accede to the international instruments to which Saint Lucia is not a party, submit overdue reports to the corresponding treaty bodies, and strengthen its cooperation with OHCHR for the institutional development of the human rights protection system ", - "values": [ - "International instruments", - "Technical assistance and cooperation", - "Treaty bodies" - ] - }, - { - "text": "Enact regulations to the 2013 law establishing a referral mechanism for victims of trafficking to enable them to apply for asylum, where appropriate", - "values": [ - "Asylum-seekers - refugees", - "Trafficking" - ] - }, - { - "text": "Continue ensuring systematic human rights awareness-raising and training for all personnel working in the legal and justice system, including police, public defenders, lawyers and judges ", - "values": [ - "Human rights education and training" - ] - }, - { - "text": "Continue the implementation of the National Referral Protocol on Gender-based Violence and the National Plan of Action on Gender-based Violence (2012) all across the country", - "values": [ - "Rights of the Child", - "Women's rights" - ] - }, - { - "text": "Invite the Special Rapporteur on torture to make an official visit to the country.", - "values": [ - "Special procedures", - "Torture and other CID treatment" - ] - }, - { - "text": "Further tackle the problem of street children and child labour, as well as discrimination against indigenous children.", - "values": [ - "Rights of the Child" - ] - }, - { - "text": "Provide access to clean and modern energy to all its people and develop climate-friendly green cities", - "values": [ - "Environment" - ] - }, - { - "text": "Improve access to health care for all and in this regard, provide adequate resources to its health care system, including by providing necessary training to improve its health services", - "values": [ - "Right to health" - ] - }, - { - "text": "Establish, wherever necessary, independent and credible commissions of inquiry on war crimes and crimes against humanity ", - "values": [ - "Justice" - ] - }, - { - "text": "Create jobs in order to reduce unemployment amongst its youth", - "values": [ - "Development" - ] - }, - { - "text": "With regard to the comments and recommendations made during the review, including with regard to the scope of Bhutan's international human rights commitments, the strengthening of support for civil society organizations, measures to combat domestic violence and trafficking, and complex humanitarian issues, Bhutan expressed its commitment to addressing these issues.", - "values": [ - "Civil society", - "Rights of the Child", - "Trafficking", - "Women's rights" - ] - }, - { - "text": "Consider ratifying the International Convention on the Protection of the Rights of All Migrant Workers and Members of Their Families and the Optional Protocol to the Convention on the Rights of the Child on a communications procedure", - "values": [ - "International instruments", - "Labour", - "Migrants", - "Rights of the Child" - ] - }, - { - "text": "Continue to take the necessary measures to combat all forms of gender inequality", - "values": [ - "Women's rights" - ] - }, - { - "text": "Ratify the main human rights treaties and investigate the possibility of the establishment of a national human rights institute, if necessary with assistance from the UN and UN member states ", - "values": [ - "International instruments", - "Technical assistance and cooperation" - ] - }, - { - "text": "Revise the 2011 law in order to guarantee freedom of opinion and expression, as well as freedom of association and peaceful assembly", - "values": [ - "Freedom of association and peaceful assembly", - "Freedom of opinion and expression" - ] - }, - { - "text": "Stop attempts to revise the outcomes of the Second World War, the prosecution of anti-fascist veterans and glorification of the Nazi accomplices", - "values": [ - "Other" - ] - }, - { - "text": "Take legal and practical measures to ensure the safety of human rights defenders", - "values": [ - "Human rights defenders" - ] - }, - { - "text": "Continue to implement the measures outlined in its 2014 action plan against labour market discrimination", - "values": [ - "Labour" - ] - }, - { - "text": "Fully comply with the principles and rights enshrined in the Universal Declaration of Human Rights, the two international covenants, the CRC and CEDAW, to which it is a party ", - "values": [ - "International instruments", - "Rights of the Child", - "Women's rights" - ] - }, - { - "text": "Refrain from legislative initiatives which may criminalize homosexual relations between consenting adults", - "values": [ - "Sexual Orientation and Gender Identity" - ] - }, - { - "text": "Further reinforce its legislation to combat internal and cross-border trafficking in persons, by revising the Criminal Code to adequately sanction the perpetrators of trafficking and exploitation of the victims of trafficking ", - "values": [ - "Trafficking" - ] - }, - { - "text": "Notwithstanding these achievements, the Government recognises the enormous challenges that the country face, and remains committed in advancing the rights and welfare of the people, with a particular focus on reducing inequality, empowering youth, and furthering socio-economic progress. The Maldives is highly prone to the unique posed by its small size, geographic dispersion, and climate change. These challenges remain significant hindrances in the country's progress towards full consolidation of democracy, a progress that is often punctuated by structural deficiencies, lack of capacity, and technical expertise", - "values": [ - "Development" - ] - }, - { - "text": "Further strengthen the foundation of family and avoid resorting to measures and legislation which endanger the very foundation of family in society ", - "values": [ - "Other" - ] - }, - { - "text": "Ratify the Rome Statute of the International Criminal Court and its Agreement on Privileges and Immunities", - "values": [ - "International instruments", - "Justice" - ] - }, - { - "text": "Continue to protect and promote the rights of persons with disabilities", - "values": [ - "Disabilities" - ] - }, - { - "text": "Intensify its efforts to ratify the Optional Protocol to the Convention against Torture, including by holding multi-stakeholder consultations on a possible national preventive mechanism model most suitable for South Africa", - "values": [ - "Detention", - "International instruments", - "Torture and other CID treatment", - "Treaty bodies" - ] - }, - { - "text": "Spare no effort to complete as soon as possible the ratification process for the international human rights instruments listed in pages 23 and 24 of the national report in its French version \n", - "values": [ - "International instruments" - ] - }, - { - "text": "Continue its acceleration of the poverty alleviation strategies with a view to allowing the economic emancipation of the poorer communities, including women and other vulnerable groups.", - "values": [ - "Poverty", - "Women's rights" - ] - }, - { - "text": "Take steps to place higher priority on the prosecution of violence and discrimination against women, transgender and transsexual people, as well as access to justice for victims of these crimes", - "values": [ - "Justice", - "Sexual Orientation and Gender Identity", - "Women's rights" - ] - }, - { - "text": "Fully implement the National Human Rights Action Plan for the period from 2009 to 2012", - "values": [ - "General" - ] - }, - { - "text": "Adopt legislation to recognize and regulate the rights of indigenous populations ", - "values": [ - "Indigenous peoples" - ] - }, - { - "text": "Continue to promote access to education", - "values": [ - "Right to education" - ] - }, - { - "text": "Commute without delay all death sentences to terms of imprisonment, and ratify and implement into its national legislation ICCPR and its Second Optional Protocol, aiming at the abolition of the death penalty ", - "values": [ - "Death penalty", - "International instruments" - ] - }, - { - "text": "Continue its efforts to further enhance the exercise and enjoyment of civil and political rights, including the rights to freedom of peaceful assembly in the country", - "values": [ - "CP rights - general", - "Freedom of association and peaceful assembly" - ] - }, - { - "text": "Enact comprehensive anti-discrimination legislation to effectively protect the human rights of persons belonging to indigenous minorities and Afro-Honduran peoples and of lesbian, gay, bisexual and transgender persons, in particular with regard to violence against such persons and their access to the labour market", - "values": [ - "Indigenous peoples", - "Labour", - "Minorities", - "Sexual Orientation and Gender Identity" - ] - }, - { - "text": "Guarantee that the legal and institutional framework ensures that children in conflict with the law be dealt with in a manner that conforms to international standards ", - "values": [ - "Rights of the Child" - ] - }, - { - "text": "Meet obligatory reporting requirements for the conventions to which Nauru is a party and extend invitations to relevant working groups and special rapporteurs to visit Nauru", - "values": [ - "International instruments", - "Special procedures" - ] - }, - { - "text": "Provide human rights training on an on-going basis for the disciplined forces", - "values": [ - "Human rights education and training" - ] - }, - { - "text": "Extend the jurisdiction of civil courts in cases involving violations of human rights by the military", - "values": [ - "Justice" - ] - }, - { - "text": "Continue pursuing policy measures towards media plurality and independence ", - "values": [ - "Freedom of the press" - ] - }, - { - "text": "Guarantee the respect for human rights and international humanitarian law by the defence and security forces, particularly as regards their treatment of prisoners ", - "values": [ - "Detention", - "International humanitarian law", - "International instruments" - ] - }, - { - "text": "Finalize and implement the road map "free from child labour by 2020 and from its worst forms by 2015" in the near future ", - "values": [ - "Labour", - "Rights of the Child" - ] - }, - { - "text": "Respect at least minimum standards, as long as it maintains death penalty", - "values": [ - "Death penalty" - ] - }, - { - "text": "State a precise calendar for ratification and adoption of the necessary measures for the ratification of the ICCPR", - "values": [ - "CP rights - general", - "International instruments" - ] - }, - { - "text": "Continue its efforts to remedy the wage gap between men and women", - "values": [ - "Women's rights" - ] - }, - { - "text": "Fully align its national legislation with the Rome Statute of the International Criminal Court, to ratify the Kampala amendments to the Rome Statute on the crime of aggression and to accede to the Agreement on the Privileges and Immunities of the International Criminal Court", - "values": [ - "International instruments", - "Justice" - ] - }, - { - "text": "Provide effective protection to lawyers, human rights defenders and journalists in order to guarantee a safe environment for the development of their work", - "values": [ - "Freedom of the press", - "Human rights defenders" - ] - }, - { - "text": "Ensure that all complaints of human rights violations by the security forces are subject to immediate, accurate and independent investigations ", - "values": [ - "Human rights violations by state agents" - ] - }, - { - "text": "Make additional efforts to ensure that domestic law is brought into line with the provisions of CEDAW, particularly concerning marriage, divorce, inheritance, ensuring equality of rights for both spouses and the adoption of comprehensive measures to combat all forms of violence against women and girls, and the adoption of laws on domestic violence and all forms of sexual abuse ", - "values": [ - "International instruments", - "Rights of the Child", - "Women's rights" - ] - }, - { - "text": "Double its efforts in addressing the persistent gender discrimination", - "values": [ - "Women's rights" - ] - }, - { - "text": "Take measures to guarantee effective access for women victims of gender-based violence to justice, reparation and to rehabilitation ", - "values": [ - "Women's rights" - ] - }, - { - "text": "Seek the assistance of the Office of the United Nations High Commissioner for Human Rights to facilitate Grenada's request for technical assistance so that it may better fulfil its reporting obligations under the respective human rights instruments to which it is a party ", - "values": [ - "Technical assistance and cooperation", - "Treaty bodies" - ] - }, - { - "text": "Address the root causes of corruption as a matter of priority", - "values": [ - "Corruption", - "Justice" - ] - }, - { - "text": "Develop an action plan to address disparities in socio-economic indicators between persons belonging to indigenous communities and non indigenous persons", - "values": [ - "Indigenous peoples" - ] - }, - { - "text": "Take immediate action to cease the practice of torture in detention facilities, and investigate and prosecute allegations of torture", - "values": [ - "Detention", - "Torture and other CID treatment" - ] - }, - { - "text": "Issue a standing invitation to all Human Rights Council thematic special procedures, and facilitate requested visits and respond promptly and substantially to the communications transmitted to Fiji by the special procedures mandate holders", - "values": [ - "Special procedures" - ] - }, - { - "text": "Develop an integrated national plan of gender equality that criminalizes FGM and take practical measures to eradicate it, requesting the necessary assistance ", - "values": [ - "Rights of the Child", - "Technical assistance and cooperation", - "Torture and other CID treatment", - "Women's rights" - ] - }, - { - "text": "Incorporate the prohibition of torture into its legislation ", - "values": [ - "Torture and other CID treatment" - ] - }, - { - "text": "Work towards ratifying the Convention [Elimination of All Forms of Racial Discrimination], which it signed in 2015 ", - "values": [ - "International instruments", - "Racial discrimination" - ] - }, - { - "text": "Establish a National Institution for Human Rights in accordance with the Paris Principles", - "values": [ - "National Human Rights Institution" - ] - }, - { - "text": "Continue efforts towards improving literacy and reducing poverty through education and skills enhancement programs under the National Development Plan to 2030", - "values": [ - "Poverty", - "Right to education" - ] - }, - { - "text": "Ensure and protect the full independence and impartiality of the judiciary and guarantee that it can carry out its judicial functions without any form of pressure or interference", - "values": [ - "Justice" - ] - }, - { - "text": "Introduce a complete abolition of the death penalty through legal reform", - "values": [ - "Death penalty" - ] - }, - { - "text": "Take effective measures to address the needs of women belonging to minorities, such as Roma women, in order to eliminate all forms of discrimination against them", - "values": [ - "Minorities", - "Racial discrimination", - "Women's rights" - ] - }, - { - "text": "Embark on public sensitization programmes and adopt anti-discrimination legislation to address all forms of racism, racial discrimination, xenophobia and related intolerance", - "values": [ - "Racial discrimination" - ] - }, - { - "text": "Establish a mechanism to monitor the implementation of recommendations of international human rights mechanisms", - "values": [ - "Special procedures", - "Treaty bodies", - "UPR process" - ] - }, - { - "text": "Continue to enhance the capacity building of its national human rights institutions with the support of the international community.", - "values": [ - "National Human Rights Institution", - "Technical assistance and cooperation" - ] - }, - { - "text": "Continue to encourage the training of athletes with disabilities and to further promote their participation in international sporting events ", - "values": [ - "Disabilities" - ] - }, - { - "text": "Continue its fight against poverty and in particular against malnutrition in rural areas and, to that end, identify its needs in terms of technical and financial assistance, and consider requesting the aid of United Nations agencies and programmes competent in this area ", - "values": [ - "Poverty", - "Right to food", - "Technical assistance and cooperation" - ] - }, - { - "text": "Continue efforts to raise public awareness of human rights, in particular the child rights", - "values": [ - "Human rights education and training", - "Rights of the Child" - ] - }, - { - "text": "Decriminalise homosexuality and combat all forms of discrimination and abuse against LGBTI persons", - "values": [ - "Sexual Orientation and Gender Identity" - ] - }, - { - "text": "Ensure that migrants and their families enjoy equal access to education and health care", - "values": [ - "Migrants", - "Right to education", - "Right to health" - ] - }, - { - "text": "Abrogate the penal provisions envisaging recourse to corporal punishment ", - "values": [ - "Torture and other CID treatment" - ] - }, - { - "text": "Ensure the full implementation of ILO Conventions 182 and 138, and that it stop the practice of sending school-age children to participate in the harvesting of cotton.", - "values": [ - "International instruments", - "Labour", - "Rights of the Child" - ] - }, - { - "text": "Ensure that girls and women have equal access to education at all levels, and ensure the retention of girls in school ", - "values": [ - "Right to education", - "Rights of the Child", - "Women's rights" - ] - }, - { - "text": "Continue the process of bringing national legislation into line with international standards ", - "values": [ - "International instruments" - ] - }, - { - "text": "Improve the quality of primary health care, especially in rural areas ", - "values": [ - "Right to health" - ] - }, - { - "text": "Strengthen the protection of the rights of persons with disabilities", - "values": [ - "Disabilities" - ] - }, - { - "text": "Reform the marital partnership (regimen patrimonial de sociedad conyugal) to ensure compliance with its acquired international obligations", - "values": [ - "Women's rights" - ] - }, - { - "text": "Expedite the process of amending Article 57 of the Code of Military Justice to ensure that human rights violations committed by armed forces against civilians are tried in civilian courts", - "values": [ - "Human rights violations by state agents", - "Justice" - ] - }, - { - "text": "Step up efforts to improve the conditions of detention", - "values": [ - "Detention" - ] - }, - { - "text": "Take all necessary measures to put an end to the system known as "two schools under the same roof" and eliminate ethnic segregation in the school system", - "values": [ - "Minorities", - "Racial discrimination", - "Right to education" - ] - }, - { - "text": "Take measures to improve women representation in decision-making positions in the public sector, including considering the adoption of temporary special measures to accelerate this objective", - "values": [ - "Women's rights" - ] - }, - { - "text": "Continue to enhance its positive policies and programmes for trafficked victims and refugees", - "values": [ - "Asylum-seekers - refugees", - "Trafficking" - ] - }, - { - "text": "Apply comprehensively the practice of implementing human rights monitoring at the national level through direct communication with the population", - "values": [ - "General" - ] - }, - { - "text": "Pursue its efforts in the field of reducing poverty and promoting access to food ", - "values": [ - "Poverty", - "Right to food" - ] - }, - { - "text": "Take the necessary measures and adopt the laws that are needed to allow better protection of children's rights ", - "values": [ - "Rights of the Child" - ] - }, - { - "text": "Submit the initial report to the Committee on the Rights of the Child, ratify the CRC Optional Protocols and complete the accession to the two International Covenants on Civil and Political Rights and CAT", - "values": [ - "CP rights - general", - "ESC rights - general", - "International instruments", - "Rights of the Child", - "Torture and other CID treatment", - "Treaty bodies" - ] - }, - { - "text": "Consolidate the progress already made in the fight against human trafficking by guaranteeing the prosecution and punishment of the perpetrators and the protection and rehabilitation of victims", - "values": [ - "Trafficking" - ] - }, - { - "text": "Develop with UNHCR an administrative framework to distinguish refugees and asylum seekers from irregular migrants and apply international standards for the treatment of foreign nationals", - "values": [ - "Asylum-seekers - refugees" - ] - }, - { - "text": "Ratify the Convention on the Rights of Persons with Disabilities CRPD, OP-CAT and the Rome Statute ", - "values": [ - "Detention", - "Disabilities", - "International instruments", - "Justice", - "Torture and other CID treatment" - ] - }, - { - "text": "Renew the death penalty moratorium and consider abolishing capital punishment", - "values": [ - "Death penalty" - ] - }, - { - "text": "Step up efforts to eliminate gender inequity and implement the national strategy on ending child marriages", - "values": [ - "Rights of the Child", - "Women's rights" - ] - }, - { - "text": "Continue the efforts to reduce maternal and child mortality ", - "values": [ - "Right to health", - "Rights of the Child", - "Women's rights" - ] - }, - { - "text": "Continue its positive efforts to consolidate the areas of health and education especially for disabled children ", - "values": [ - "Disabilities", - "Right to health", - "Rights of the Child" - ] - }, - { - "text": "Address traditional practices that are against human rights, inter alia female genital mutilation, through more concerted efforts, involving local levels ", - "values": [ - "Rights of the Child", - "Torture and other CID treatment", - "Women's rights" - ] - }, - { - "text": "Adopt comprehensive and integral legislation to eliminate discrimination and all forms of violence against women and to promote their advancement in all areas, including the economic area", - "values": [ - "Women's rights" - ] - }, - { - "text": "Adopt a national plan against human trafficking and provide assistance to all victims of trafficking regardless of the form of exploitation", - "values": [ - "Trafficking" - ] - }, - { - "text": "Envisage adhering to international human rights instruments by giving priority to ICESCR and ICCPR, and seek, if needed, technical assistance to this end ", - "values": [ - "CP rights - general", - "ESC rights - general", - "International instruments", - "Technical assistance and cooperation" - ] - }, - { - "text": "Increase investment in education infrastructure and promote the educational level in rural areas", - "values": [ - "Right to education" - ] - }, - { - "text": "Put an end to cases of torture and ill-treatment in prisons and police stations.", - "values": [ - "Detention", - "Torture and other CID treatment" - ] - }, - { - "text": "Guarantee ICRC unconditional and unrestricted access to local and central authorities as well as detention centres in the Lao People's Democratic Republic ", - "values": [ - "Detention" - ] - }, - { - "text": "Enact the Legal Education and Legal Practitioners Amendment Bill and the Legal Aid Bill currently pending before Parliament ", - "values": [ - "Right to education" - ] - }, - { - "text": "Continue and intensify its efforts on behalf of children and women generally, to ensure their safety in the domestic environment and to remove any obstacles to their education, development and access to equal opportunities", - "values": [ - "Rights of the Child", - "Women's rights" - ] - }, - { - "text": "To continue efforts to sensitize actors to the need to respect women's rights", - "values": [ - "Women's rights" - ] - }, - { - "text": "Ratify the Convention on the Elimination of All Forms of Discrimination against Women and deepen efforts to eliminate discriminatory legal provisions that limit the rights of women", - "values": [ - "International instruments", - "Women's rights" - ] - }, - { - "text": "Accelerate the establishment of the national human rights institution and to ensure is conformity with the Paris Principles", - "values": [ - "National Human Rights Institution" - ] - }, - { - "text": "Introduce into national legislation the abolition of the death penalty and accede to the Second Optional Protocol to the International Covenant on Civil and Political Rights, aiming at the abolition of the death penalty", - "values": [ - "Death penalty", - "International instruments" - ] - }, - { - "text": "Abide only by internationally agreed principles of international law. in this regard, capital punishment does not fall within such agreed norms, the imposition of capital punishment is the prerogative of individual States.", - "values": [ - "Death penalty" - ] - }, - { - "text": "Continue to push forward economic and social development and prioritize eradication of poverty and to further improve the living standards of the people", - "values": [ - "Development", - "Poverty" - ] - }, - { - "text": "Adopt a comprehensive strategy aimed at preventing and eliminating all forms of violence against women", - "values": [ - "Women's rights" - ] - }, - { - "text": "Encourage the visit of the Special Rapporteur on trafficking in persons, specially women and children, within the framework of the open and permanent invitation extended to special procedures", - "values": [ - "Rights of the Child", - "Special procedures", - "Trafficking", - "Women's rights" - ] - }, - { - "text": "Take immediate and transparent action to stop the use of torture and other ill-treatment of all detainees, including forced hard labour and denial of food quotas ", - "values": [ - "Detention", - "Labour", - "Right to food", - "Torture and other CID treatment" - ] - }, - { - "text": "Become party to OP-CAT and establish an official national preventive mechanism ", - "values": [ - "Detention", - "International instruments", - "Torture and other CID treatment" - ] - }, - { - "text": "Provide sufficient resources and establish mechanisms for monitoring and assessing the implementation of its action plans on children\u2019s rights", - "values": [ - "Rights of the Child" - ] - }, - { - "text": "Strengthen its development policies in rural areas, with special emphasis on the access of children and persons with disabilities to services ", - "values": [ - "Disabilities", - "Rights of the Child" - ] - }, - { - "text": "Sustain its dialogue with indigenous groups affected by the intensified state's mining activities in the North and to reach an agreement that is acceptable for both sides ", - "values": [ - "Business and human rights", - "Environment", - "Indigenous peoples" - ] - }, - { - "text": "Continue efforts to strengthen the legal framework, including by realizing its commitment to ratify CEDAW and CAT", - "values": [ - "International instruments", - "Torture and other CID treatment", - "Women's rights" - ] - }, - { - "text": "Ratify the Optional Protocol to the International Covenant on Economic, Social and Cultural Rights in order to increase the possibilities for complaints and investigation by the Committee on Economic, Social and Cultural Rights, and thereby bringing such protection system at the same level of the existing one with regard to civil and political rights ", - "values": [ - "ESC rights - general", - "International instruments", - "Treaty bodies" - ] - }, - { - "text": "Better protect women and girls against all forms of violence, including domestic violence ", - "values": [ - "Rights of the Child", - "Women's rights" - ] - }, - { - "text": "Improve prison conditions", - "values": [ - "Detention" - ] - }, - { - "text": "Consider ratifying the Rome Statute", - "values": [ - "International instruments", - "Justice" - ] - }, - { - "text": "Investigate and prosecute State actors and individuals perpetrating violence against LGBTI persons", - "values": [ - "Sexual Orientation and Gender Identity" - ] - }, - { - "text": "Address all acts of religious intolerance and discrimination ", - "values": [ - "Freedom of religion and belief", - "Racial discrimination" - ] - }, - { - "text": "Reform the juvenile justice system in conformity with the international standards and increase the protection of children involved in penal proceedings", - "values": [ - "Justice", - "Rights of the Child" - ] - }, - { - "text": "Ratify the International Convention on the Elimination of All Forms of Racial Discrimination ", - "values": [ - "International instruments", - "Racial discrimination" - ] - }, - { - "text": "Implement the law on the establishment of a National Human Rights Commission ", - "values": [ - "National Human Rights Institution" - ] - }, - { - "text": "Continue its good cooperation with civil society organizations and United Nations agencies, especially UNICEF, for the full registration of children at birth", - "values": [ - "Civil society", - "Rights of the Child", - "Statelessness and the right to nationality" - ] - }, - { - "text": "Renounce the execution of persons who were minors at the time of the crime, in accordance with its commitments under CRC", - "values": [ - "Death penalty", - "International instruments", - "Rights of the Child" - ] - }, - { - "text": "Share its experience in combating corruption with the countries that have the same interest", - "values": [ - "Corruption" - ] - }, - { - "text": "Adopt and implement a comprehensive anti-discrimination law that would prohibit and sanction any direct or indirect form of discrimination based on age, race, gender, religion, sexual orientation, ethnic origin or nationality", - "values": [ - "Freedom of religion and belief", - "Minorities", - "Racial discrimination", - "Sexual Orientation and Gender Identity", - "Women's rights" - ] - }, - { - "text": "Take action to promote and increase the opportunities for public and open debates on death penalty", - "values": [ - "Death penalty" - ] - }, - { - "text": "Engage the civil society in the UPR follow-up process", - "values": [ - "Civil society", - "UPR process" - ] - }, - { - "text": "As a follow-up to the recommendation in paragraph 122.38 from the second cycle, amend discriminatory laws and vigilantly counter discrimination against marginalized groups, including women and girls and ethnic and religious minorities, and provide a safe and just environment for all citizens in Pakistan", - "values": [ - "Freedom of religion and belief", - "Minorities", - "Racial discrimination", - "Rights of the Child", - "Women's rights" - ] - }, - { - "text": "Step up efforts to combat poverty, especially in rural areas and disadvantaged and marginalized regions, and allocate sufficient funding for this purpose, and ensure that economic, social and cultural rights are fully addressed in all anti-poverty measures ", - "values": [ - "ESC rights - general", - "Poverty" - ] - }, - { - "text": "Increase funding and political support for government human rights institutions and programmes, including the Presidential Commission on Human Rights, the Human Rights Ombudsman\u2019s Office and the National Reparations Programme", - "values": [ - "National Human Rights Institution" - ] - }, - { - "text": "Share its experiences and best practices in building a robust and efficient healthcare system, as implemented in its country through universal and free coverage for all, which includes access to medicine and the advances in Cuban scientific research, with other countries aspiring to have similar health architecture", - "values": [ - "Right to health" - ] - }, - { - "text": "Continue the process of accession to international human rights instruments and improvement of the national human rights legislation, especially in the context of priorities identified in the comprehensive plan of development known as Qatar National Vision 2030", - "values": [ - "International instruments" - ] - }, - { - "text": "End State-sponsored discrimination based on the "songbun" system, as well as pervasive discrimination against women", - "values": [ - "Justice", - "Women's rights" - ] - }, - { - "text": "Ensure proper implementation of policies directed towards combating violence against women, including the recommendations made by the Committee on the Elimination of Discrimination against Women regarding sexual violence", - "values": [ - "International instruments", - "Treaty bodies", - "Women's rights" - ] - }, - { - "text": "Study the possibility of becoming a party to ICCPR as well as ICESCR, as these two international conventions are really cornerstones of the whole human rights system ", - "values": [ - "CP rights - general", - "ESC rights - general", - "International instruments" - ] - }, - { - "text": "Design and implement a national plan against trafficking in persons that would include a national coordinating body ", - "values": [ - "Trafficking" - ] - }, - { - "text": "Exercise restraint using anti-terrorism legislation in legal procedures against journalists and ensure the proportionality of measures that limit access to the internet", - "values": [ - "Counter-terrorism", - "Freedom of the press" - ] - }, - { - "text": "Step up efforts towards the prevention of discrimination against refugees and asylum seekers by repealing recent laws and methods perpetuating those practices", - "values": [ - "Asylum-seekers - refugees", - "Racial discrimination" - ] - }, - { - "text": "Continue adopting and implementing robust measures to better address domestic violence, and develop programmes to assist the victims of domestic violence and programmes to assist the victims of domestic violence", - "values": [ - "Rights of the Child", - "Women's rights" - ] - }, - { - "text": "Adopt and enforce laws against domestic violence, and remove mitigating factors from the punishment of "honour-crimes" against women", - "values": [ - "Rights of the Child", - "Women's rights" - ] - }, - { - "text": "Prevent violence against Roma women and girls, including harassment and abuse at school, and address the gaps in their formal education", - "values": [ - "Minorities", - "Right to education", - "Rights of the Child", - "Women's rights" - ] - }, - { - "text": "Disseminate information and raise awareness about the Arab Peace Initiative, launched by the King of Saudi Arabia ", - "values": [ - "Other" - ] - }, - { - "text": "Continue to cooperate with the Human Rights Council", - "values": [ - "Special procedures", - "UPR process" - ] - }, - { - "text": "Continue strengthening the mechanisms to supervise the observance of human rights of the inmates, with the aim of preventing ill-treatment, and handle all complaints of torture and other ill-treatment in a timely manner ", - "values": [ - "Detention", - "Torture and other CID treatment" - ] - }, - { - "text": "Abolish the death penalty as a punishment under criminal law", - "values": [ - "Death penalty" - ] - }, - { - "text": "Continue its efforts in combatting violence against women and girls, in particular the problems of female genital mutilation", - "values": [ - "Rights of the Child", - "Torture and other CID treatment", - "Women's rights" - ] - }, - { - "text": "Continue to strengthen its [Nigeria's] human rights institutions and develop further measures to ensure the effective implementation of their mandate", - "values": [ - "General" - ] - }, - { - "text": "Extend invitations to the thematic special procedures particularly to those that have requested to visit the country as well as the Working Group on Arbitrary Detention.", - "values": [ - "Detention", - "Special procedures" - ] - }, - { - "text": "Adopt relevant measures for legislative and criminal justice improvements in relation to concerns expressed by the Committee on the Rights of the Child in relation to limitations on freedom of expression and assembly of students. ", - "values": [ - "Freedom of association and peaceful assembly", - "Freedom of opinion and expression", - "Right to education", - "Treaty bodies" - ] - }, - { - "text": "Amend its national legislation to be in conformity with the provisions of the Convention on the Elimination of All Forms of Discrimination against Women, including when revising the Bill of Rights and the Political Parties Bill, in order to protect and promote women\u2019s rights and gender equality", - "values": [ - "International instruments", - "Women's rights" - ] - }, - { - "text": "Ensure a prompt, complete and effective implementation of the action plan to bring the recruitment of child soldiers to an end", - "values": [ - "International humanitarian law", - "Rights of the Child" - ] - }, - { - "text": "Become a party to CRPD as soon as it completes the work necessary for ratifying the Convention, which is currently being undertaken by the National Committee led by the Department of Community Development ", - "values": [ - "Disabilities", - "International instruments" - ] - }, - { - "text": "Toughen its efforts to prevent religion and hate crimes as it is evident that the crimes are on the increase", - "values": [ - "Freedom of religion and belief", - "Racial discrimination" - ] - }, - { - "text": "Pay particular attention to the access to education for all children, especially children from ethnic or religious minorities and children with disabilities ", - "values": [ - "Disabilities", - "Freedom of religion and belief", - "Minorities", - "Right to education", - "Rights of the Child" - ] - }, - { - "text": "Implement the Convention on the Rights of the Child through the 2012 General Education Act, to enable all children to join school", - "values": [ - "International instruments", - "Right to education", - "Rights of the Child" - ] - }, - { - "text": "Bring rules on broadcasting in compliance with relevant provisions of ICCPR, releasing persons held in prisons for their political views and adopt safeguards against arbitrary or politically motivated detention and trials including through ensuring full independence and transparency of judiciary", - "values": [ - "Detention", - "Freedom of the press", - "International instruments", - "Justice" - ] - }, - { - "text": "Strengthen the system of development councils in order to improve the participation of the indigenous population in public management", - "values": [ - "Indigenous peoples" - ] - }, - { - "text": "Ensure that no one is discriminated against on any grounds, including on the grounds of sexual orientation and gender identity", - "values": [ - "Sexual Orientation and Gender Identity" - ] - }, - { - "text": "Strengthen the efforts to prevent domestic violence, protect its victims and punish the perpetrators, including by removing articles 109 and 252 of the Penal Code ", - "values": [ - "Justice", - "Rights of the Child", - "Women's rights" - ] - }, - { - "text": "Conduct a review of the Criminal Code to incorporate provisions on sexual violence, in line with international standards", - "values": [ - "Women's rights" - ] - }, - { - "text": "Re-establish a moratorium on executions in line with General Assembly resolutions and with a view to abolishing the death penalty completely ", - "values": [ - "Death penalty" - ] - }, - { - "text": "Enact and implement outstanding bills and policies to fulfil its obligations under international human rights instruments to which it is a party ", - "values": [ - "International instruments" - ] - }, - { - "text": "Sign and ratify the Convention on the Rights of Persons with Disabilities and the Optional Protocol to ICESCR", - "values": [ - "Disabilities", - "ESC rights - general", - "International instruments" - ] - }, - { - "text": "Adopt the national strategy for the overall implementation of the CRC and establish a mechanism for coordinated follow-up", - "values": [ - "International instruments", - "Rights of the Child" - ] - }, - { - "text": "Step up its efforts in the promotion and protection of the rights of persons with disabilities in accordance with its obligation under the Convention on the Rights of Persons with Disabilities, including on the education of children with disabilities ", - "values": [ - "Disabilities", - "International instruments", - "Rights of the Child", - "Treaty bodies" - ] - }, - { - "text": "Establish an effective and inclusive process to follow-up on the universal periodic review recommendations", - "values": [ - "UPR process" - ] - }, - { - "text": "Include in the Criminal Code and Military Penal Code the definition of torture established in the Convention against Torture and Other Cruel, Inhuman or Degrading Treatment or Punishment", - "values": [ - "International instruments", - "Torture and other CID treatment" - ] - }, - { - "text": "Develop and implement a set of measures aimed at promoting peaceful coexistence between all groups of the population and at combating marginalization that may target individuals or communities, including ethnic and religious minorities", - "values": [ - "Minorities", - "Racial discrimination" - ] - }, - { - "text": "Ratify the Convention on the Rights of Persons with Disabilities and its Optional Protocol, and promote the awareness of the society and institutions on the right to equality and non-discrimination of persons with disabilities in all areas of life", - "values": [ - "Disabilities", - "International instruments" - ] - }, - { - "text": "Enhance efforts to create a safe environment for human rights defenders and journalists", - "values": [ - "Freedom of the press", - "Human rights defenders" - ] - }, - { - "text": "Offer regular and continuous training programmes to police officers as well as judicial and state officials in compliance with international human rights standards, and ensure swift conduct of trials and due process in criminal cases", - "values": [ - "Human rights education and training", - "Justice" - ] - }, - { - "text": "Complete the process of establishment of a new national human rights action plan", - "values": [ - "General" - ] - }, - { - "text": "Advance in the elimination of all forms of gender discrimination and gender violence, particularly strengthening the coordinated multisectoral implementation and application of the Sexual Offences Act, adopted in Guyana in 2010", - "values": [ - "Women's rights" - ] - }, - { - "text": "Lift the age of criminal responsibility", - "values": [ - "Justice", - "Rights of the Child" - ] - }, - { - "text": "Adopt domestic legislation on refugees in conformity with international standards in this field", - "values": [ - "Asylum-seekers - refugees" - ] - }, - { - "text": "Review legislation and its application, and commit resources to training for police and prosecutors in order to eliminate the widespread impunity for domestic violence", - "values": [ - "Human rights education and training", - "Impunity", - "Rights of the Child", - "Women's rights" - ] - }, - { - "text": "Allocate the necessary human, technical and financial resources for the strengthening of the office of the ombudsman", - "values": [ - "Other" - ] - }, - { - "text": "Adopt more effective measures to ensure that all children in the Republic of Moldova enjoy all rights, without discrimination, in accordance with Article 2 of CRC", - "values": [ - "International instruments", - "Rights of the Child" - ] - }, - { - "text": "Consider modifying its criminal legislation so that the offence of human trafficking could specifically target trafficking for the purpose of sexual exploitation", - "values": [ - "Trafficking" - ] - }, - { - "text": "Continue with its efforts to avoid excessive use of force by law enforcement officials, in particular related to the policing of demonstrations and crowd control", - "values": [ - "Freedom of association and peaceful assembly", - "Human rights violations by state agents" - ] - }, - { - "text": "Continue pursuing measures and policy aimed at ensuring the rights of ethnic minorities' learning, writing and the development of their own languages according to the relevant laws", - "values": [ - "ESC rights - general", - "Minorities" - ] - }, - { - "text": "Duly implement and follow-up on the National Health Strategic Plan, above all its HIV related provisions, with a view to fighting new infections, discrimination and lethality", - "values": [ - "HIV - Aids" - ] - }, - { - "text": "Provide social services on health and access to education to children belonging to the most vulnerable groups", - "values": [ - "Right to education", - "Right to health", - "Rights of the Child" - ] - }, - { - "text": "Implement the strategic action plan on human trafficking as well as to strengthen services for trafficking victims", - "values": [ - "Trafficking" - ] - }, - { - "text": "Take the necessary measures to improve the security of journalists and human rights defenders, and carry out independent and credible investigations into the murders of seven journalists and threats against several others that occurred in 2010, and bring to justice the perpetrators of those condemnable acts", - "values": [ - "Extrajudicial executions", - "Freedom of the press", - "Human rights defenders" - ] - }, - { - "text": "Strengthen and promote freedom of expression, particularly that of the press", - "values": [ - "Freedom of opinion and expression", - "Freedom of the press" - ] - }, - { - "text": "Continue to adopt gender-responsive policies and programmes to cultivate a conducive environment for women's development and empowerment", - "values": [ - "Women's rights" - ] - }, - { - "text": "Consider ratifying the Convention on the Elimination of All Forms of Discrimination against Women and to ensure women equal inheritance rights", - "values": [ - "International instruments", - "Women's rights" - ] - }, - { - "text": "Effective implementation of the Magna Carta of Women in all fields, inter alia, labour relations, access to justice and health care, including aspects of sexual and reproductive health, and sexual violence", - "values": [ - "Women's rights" - ] - }, - { - "text": "Include human rights courses in the in-service training of public and law enforcement officials", - "values": [ - "Human rights education and training" - ] - }, - { - "text": "Stop all forms of harassment and intimidation of human rights defenders and effectively implement measures aimed at preventing violence and crimes against them", - "values": [ - "Human rights defenders" - ] - }, - { - "text": "Strengthen the powers of the inspection of the jurisdictions and the services of the High Council of the Judiciary", - "values": [ - "Justice" - ] - }, - { - "text": "Consider stepping up measures to comprehensively address the problem of violence against women, including by increasing public awareness campaigns to sensitize the community on the issue.", - "values": [ - "Human rights education and training", - "Women's rights" - ] - }, - { - "text": "Become a party to the Rome Statute of the International Criminal Court ", - "values": [ - "International instruments", - "Justice" - ] - }, - { - "text": "Further strengthen the law enforcement and judicial system in the effort to address impunity and prevent the incidence of trafficking and domestic violence as well as the sexual abuse of women and girls ", - "values": [ - "Impunity", - "Rights of the Child", - "Trafficking", - "Women's rights" - ] - }, - { - "text": "Ensure that all allegations of torture and inhuman or degrading treatment are investigated promptly and that perpetrators are brought to justice ", - "values": [ - "Torture and other CID treatment" - ] - }, - { - "text": "Sign and ratify as quickly as possible the International Convention for the Protection of All Persons from Enforced Disappearance ", - "values": [ - "Enforced disappearances", - "International instruments" - ] - }, - { - "text": "Consider teaching of minority languages in public schools", - "values": [ - "Minorities", - "Right to education" - ] - }, - { - "text": "Lastly, the delegation confirmed that the Democratic Republic of the Congo was committed to pursuing its efforts in cooperation with the entire international community", - "values": [ - "Other" - ] - }, - { - "text": "That the National Assembly adopts the draft law to abolish the death penalty ", - "values": [ - "Death penalty" - ] - }, - { - "text": "Consider undertaking a national debate with a view to assessing the possibility of establishing a moratorium on the application of the death penalty", - "values": [ - "Death penalty" - ] - }, - { - "text": "Consider ratifying core universal human rights instruments, in particular the Convention against Torture and Other Cruel, Inhuman or Degrading Treatment or Punishment, and the Convention on the Elimination of All Forms of Discrimination against Women ", - "values": [ - "International instruments", - "Torture and other CID treatment", - "Women's rights" - ] - }, - { - "text": "Continue to implement effective crime prevention measures to ensure safety and social order in its society ", - "values": [ - "Public security" - ] - }, - { - "text": "Harmonize traditional and legal regulations regarding the protection of women as well as the elimination of all exceptions based in traditional practices, to the principle of non-discrimination of article 23 of the Constitution", - "values": [ - "Women's rights" - ] - }, - { - "text": "Make efforts to eliminate regional disparities in access to safe drinking water, especially between urban and rural areas ", - "values": [ - "Right to water and sanitation" - ] - }, - { - "text": "Take necessary steps to improve expertise of Brunei Darussalam's obligations in ensuring effective implementation of human rights instruments to which it is a party", - "values": [ - "International instruments" - ] - }, - { - "text": "Work with the media and civil society organizations in changing attitudes and combat discrimination against women ", - "values": [ - "Civil society", - "Women's rights" - ] - }, - { - "text": "Continue its efforts aimed at upgrading and developing human resources according to the needs of the health system", - "values": [ - "Right to health" - ] - }, - { - "text": "Continue to strengthen its system to promote and protect human rights paying special attention to the social protection of the population", - "values": [ - "ESC rights - general" - ] - }, - { - "text": "Revise the Armed Forces (Special Powers) Act to bring it into compliance with the obligations under the International Covenant on Civil and Political Rights, with a view to fighting impunity", - "values": [ - "CP rights - general", - "Impunity", - "International instruments" - ] - }, - { - "text": "Explore further ways and means aimed at improving and enhancing the welfare and protection of victims of child abuse", - "values": [ - "Rights of the Child" - ] - }, - { - "text": "Ratify the remaining core human rights and other relevant international treaties, in particular the 1951 Geneva Convention relating to the Status of Refugees and its Protocol ", - "values": [ - "Asylum-seekers - refugees", - "International instruments" - ] - }, - { - "text": "End the practice of executing children and bring the law and judicial practices into line with fair trial guarantees in international standards", - "values": [ - "Death penalty", - "Justice", - "Rights of the Child" - ] - }, - { - "text": "Establish an effective and inclusive process to follow-up to the recommendations emerging from the universal periodic review ", - "values": [ - "UPR process" - ] - }, - { - "text": "Consider signing and ratifying the Optional Protocol to the Convention on the Elimination of All Forms of Discrimination against Women", - "values": [ - "International instruments", - "Women's rights" - ] - }, - { - "text": "Expand the programme adopted in 2008 to eliminate the remnants of slavery, so that it covers the whole territory of Mauritania", - "values": [ - "Other" - ] - }, - { - "text": "Continue strengthening the work of the National Human Rights Council, with the active participation of civil society", - "values": [ - "National Human Rights Institution" - ] - }, - { - "text": "Publicly order its security forces and all militia and forces affiliated with it not to commit unlawful attacks, including targeting civilians ", - "values": [ - "International humanitarian law" - ] - }, - { - "text": "Take additional steps to ensure that national laws and regulations are fully aligned with international standards, with a view to safeguarding freedom of expression and the right to peaceful assembly", - "values": [ - "Freedom of association and peaceful assembly", - "Freedom of opinion and expression" - ] - }, - { - "text": "Accept visits from and provide full cooperation to the special procedures of the Human Rights Council, in order for them to fulfil their mandates and pursuant to commitments of the Government", - "values": [ - "Special procedures" - ] - }, - { - "text": "Ratify the Rome Statute of the International Criminal Court, signed on 1 October 1999, to implement it in national law ", - "values": [ - "International instruments", - "Justice" - ] - }, - { - "text": "Expedite the adoption of a national action plan on food security and nutrition", - "values": [ - "Right to food" - ] - }, - { - "text": "Amend the abortion law to allow for safe abortion in cases of rape, incest or when the health and life of the pregnant woman is at risk", - "values": [ - "Right to health", - "Women's rights" - ] - }, - { - "text": "Strengthen the legal framework to combat discrimination on the basis of sexual orientation", - "values": [ - "Sexual Orientation and Gender Identity" - ] - }, - { - "text": "Step up efforts to combat human trafficking including consider the possibility of developing a specific law and a national plan of action, as well as extend an invitation to the Special rapporteur on trafficking in persons, especially in women and children ", - "values": [ - "Rights of the Child", - "Special procedures", - "Trafficking", - "Women's rights" - ] - }, - { - "text": "Consider abolishing death penalty ", - "values": [ - "Death penalty" - ] - }, - { - "text": "Ratify the Optional Protocol to the Convention on the Rights of the Child on the Involvement of Children in Armed Conflict", - "values": [ - "International humanitarian law", - "International instruments", - "Rights of the Child" - ] - }, - { - "text": "Guarantee the effective delivery of humanitarian assistance to civilians and the protection of humanitarian actors, with full respect for international humanitarian law, while stepping up cooperation with the UNMISS Human Rights Division, in particular concerning the implementation of the cessation-of-hostilities agreement of January 2014", - "values": [ - "International humanitarian law" - ] - }, - { - "text": "Preparation and adoption of the National Action Plan for the Promotion and Protection of Human Rights by 2010", - "values": [ - "General" - ] - }, - { - "text": "Take measures to reduce widespread child labour", - "values": [ - "Labour", - "Rights of the Child" - ] - }, - { - "text": "Improve the text of the draft law for victims in order to include victims of state agents, in keeping with United Nations recommendations.", - "values": [ - "Justice" - ] - }, - { - "text": "Step up its efforts to provide free primary education to ensure the right to education of all children", - "values": [ - "Right to education" - ] - }, - { - "text": "Abide by the principle of non-refoulement and take steps to ensure that refugees/asylum seekers are not returned", - "values": [ - "Asylum-seekers - refugees" - ] - }, - { - "text": "Prohibit and prevent torture in all its forms, particularly of children, and end alleged human rights violations committed by security forces and armed groups", - "values": [ - "Human rights violations by state agents", - "Rights of the Child", - "Torture and other CID treatment" - ] - }, - { - "text": "Continue to ensure proper representation of social development goals in public decisions ", - "values": [ - "Other" - ] - }, - { - "text": "Strengthen policies aimed at the protection of children and the prevention of domestic violence", - "values": [ - "Rights of the Child", - "Women's rights" - ] - }, - { - "text": "Fully cooperate with the United Nations human rights mechanisms, including in particular the Commission of Inquiry mandated by the Human Rights Council", - "values": [ - "Special procedures", - "Technical assistance and cooperation", - "Treaty bodies", - "UPR process" - ] - }, - { - "text": "Continue its support and assistance to the provincial and territorial governments in improving the response of law enforcement and justice system to cases of violence against women and children in Aboriginal communities ", - "values": [ - "Indigenous peoples", - "Rights of the Child", - "Women's rights" - ] - }, - { - "text": "Prepare and implement an action plan for the establishment of an effective OPCAT-compliant National Preventative Mechanism, with access to the necessary resources for it to adequately fulfil its mandate", - "values": [ - "Detention", - "International instruments", - "Torture and other CID treatment" - ] - }, - { - "text": "Take further steps to improve the enforcement of anti-trafficking laws", - "values": [ - "Trafficking" - ] - }, - { - "text": "Further develop and strengthen its programs and services to promote the rehabilitation of victims of trafficking ", - "values": [ - "Trafficking" - ] - }, - { - "text": "Call upon relevant United Nations agencies and organizations, in particular UNICEF, to provide technical assistance to build its capacity to promote gender equality, make women more autonomous, protect children in the country and set up effective institutional mechanisms for birth registration", - "values": [ - "Statelessness and the right to nationality", - "Technical assistance and cooperation", - "Women's rights" - ] - }, - { - "text": "With regard to upcoming general elections and in accordance with the recent judgment of the European Court of Human Rights, to ensure that all citizens, without distinction as to their ethnic origin, are able to present themselves to the High Chamber of Parliament and the Presidency of the State", - "values": [ - "Elections" - ] - }, - { - "text": "Intensify poverty alleviation and promote economic and social development so as to improve people's living standards ", - "values": [ - "Development", - "ESC rights - general", - "Poverty" - ] - }, - { - "text": "In line with the vigorous actions already undertaken, endow EHRC with a mandate in compliance with the Paris Principles ", - "values": [ - "National Human Rights Institution" - ] - }, - { - "text": "Find for all persons still detained in the Guantanamo Bay detention center a solution in line with the United States obligations regarding the foundations of international and human rights law, in particular with the International Covenant on Civil and Political Rights ", - "values": [ - "Detention", - "International instruments" - ] - }, - { - "text": "Continue to strengthen social policies and programmes targeted to the more needy sectors of the population, to improve their quality of life and ability to enter the labour market ", - "values": [ - "ESC rights - general", - "Labour" - ] - }, - { - "text": "Continue action in order to ensure the full exercise of human rights by the senior citizens of the country ", - "values": [ - "Other" - ] - }, - { - "text": "Take appropriate measures in order to investigate and punish any act of discrimination or violence against lesbian, gay, bisexual, transgender, intersex and questioning persons", - "values": [ - "Sexual Orientation and Gender Identity" - ] - }, - { - "text": "Strengthen its efforts to achieve the Millennium Development Goals targets in the areas of maternal and child mortality and the environment by end of 2015, which is currently lacking behind", - "values": [ - "Environment", - "Right to health", - "Rights of the Child", - "Women's rights" - ] - }, - { - "text": "Continue implementing policies and programmes aimed at combating poverty ", - "values": [ - "Poverty" - ] - }, - { - "text": "Conclude the process of ratification of the International Convention for the Protection of All Persons from Enforced Disappearance", - "values": [ - "Enforced disappearances", - "International instruments" - ] - }, - { - "text": "Continue to reform its judicial and legal system in keeping with the provisions of the recently adopted Constitution", - "values": [ - "Justice" - ] - }, - { - "text": "Repeal all legal provisions that discriminate against women", - "values": [ - "Women's rights" - ] - }, - { - "text": "Grant access to all prisons in the country to the International Committee of Red Cross and ensure the safety of its delegates during the visits ", - "values": [ - "Detention" - ] - }, - { - "text": "Pursue with resolve the implementation of different measures aimed at reforming and strengthening the existing judicial system.", - "values": [ - "Justice" - ] - }, - { - "text": "To this end, it plans to move ahead in making human rights a cross-cutting concern in the activity of all national institutions by incorporating it in national development plans and by allocating adequate funds for this purpose. Similarly, efforts will be made to establish human rights indicators that make it possible to collect readily compared institutional information and to evaluate improvements in effective protection. At the same time, work is under way to establish an inter-institutional human rights commission that would take an active part in drawing up national reports for the treaty bodies and the universal periodic review mechanism. The commission would also be responsible for disseminating, and ensuring implementation of, the recommendations of these bodies and other human rights mechanisms.", - "values": [ - "Treaty bodies", - "UPR process" - ] - }, - { - "text": "Ensure non-selective prosecutions on its territory and a fair trial for persons being prosecuted, in conformity with the standards as under article 14 of the ICCPR, including the right to appeal laid down in paragraph 5 ", - "values": [ - "International instruments", - "Justice" - ] - }, - { - "text": "Prohibit sentencing of juvenile offenders under the age of 18 without the possibility of parole at the federal and state level ", - "values": [ - "Justice", - "Rights of the Child" - ] - }, - { - "text": "Continue its efforts to develop provisions and mechanisms to ensure the protection of women from violence, and allow them to enjoy fundamental rights and freedoms ", - "values": [ - "Women's rights" - ] - }, - { - "text": "Conduct an independent inquiry into all suspected cases of enforced disappearances of human rights defenders and hold accountable those responsible", - "values": [ - "Enforced disappearances", - "Human rights defenders" - ] - }, - { - "text": "Extend invitations to the special rapporteurs on torture and on the independence of judges and lawyers", - "values": [ - "Justice", - "Special procedures", - "Torture and other CID treatment" - ] - }, - { - "text": "Continue its efforts aiming to ensure full equality between all citizens and to combat discrimination, including discrimination against persons belonging to minorities, especially with regard to employment, education, health, and access to justice ", - "values": [ - "Minorities", - "Racial discrimination" - ] - }, - { - "text": "Decriminalize defamation as recommended by the United Nations Educational, Scientific and Cultural Organization ", - "values": [ - "Freedom of opinion and expression" - ] - }, - { - "text": "Make effort to put an end to the attacks by all armed groups against unarmed civilians in the Central African Republic", - "values": [ - "Public security" - ] - }, - { - "text": "Ratify promptly CPED ", - "values": [ - "Enforced disappearances", - "International instruments" - ] - }, - { - "text": "In line with the CERD recommendations, take resolute action to counter any tendency, especially from politicians, to target, stigmatize, stereotype or profile people on the basis of race, colour, descent and national or ethnic origin, or to use racist propaganda in politics ", - "values": [ - "Freedom of religion and belief", - "Racial discrimination", - "Treaty bodies" - ] - }, - { - "text": "Intensify its efforts to favour support and material assistance to the most marginalized families and the most underprivileged families to effectively guarantee the rights of children through a sufficient standard of living and the right to education inter alia.", - "values": [ - "Poverty", - "Right to education", - "Rights of the Child" - ] - }, - { - "text": "Pursue the objective of peace in Darfur in promoting especially the rights of the minorities", - "values": [ - "Minorities" - ] - }, - { - "text": "Implement the decision of the Supreme Court of 2007 that requires the State to criminalize enforced disappearances and sign and ratify the CED ", - "values": [ - "Enforced disappearances", - "International instruments" - ] - }, - { - "text": "Bring its legislation into conformity with its commitment to equality and non-discrimination, by repealing all legal provisions that criminalize sexual activity between consenting adults ", - "values": [ - "Sexual Orientation and Gender Identity" - ] - }, - { - "text": "Continue its efforts to build reconciliation among different sectors in the society, based on the principles of democracy and the rule of law", - "values": [ - "Justice" - ] - }, - { - "text": "Ensure strict observance of code of conduct by law enforcement officials ", - "values": [ - "Human rights violations by state agents" - ] - }, - { - "text": "In compliance with the provisions of the International Convention on the Elimination of All Forms of Racial Discrimination, establish actions aimed at promoting equality within the population so as to put an end to the existing discrimination and so that the national legislation is enforced ", - "values": [ - "International instruments", - "Racial discrimination" - ] - }, - { - "text": "Continue to exert all efforts for a peaceful resolution to the serious political tension, which is the source of a multitude of humanitarian and social concerns", - "values": [ - "Other" - ] - }, - { - "text": "Incorporate the human rights conventions into national law", - "values": [ - "International instruments" - ] - }, - { - "text": "Take concrete steps to ensure that women of Turkmenistan know their rights as set forth in the Optional Protocol to CEDAW ", - "values": [ - "International instruments", - "Women's rights" - ] - }, - { - "text": "Take concrete measures to fulfil its obligations under the Convention against Torture and to accept the request of the Special Rapporteur on extrajudicial, summary or arbitrary executions to visit the country", - "values": [ - "Extrajudicial executions", - "Special procedures", - "Torture and other CID treatment" - ] - }, - { - "text": "Continue working towards the harmonization of its national legislation with those rights contained in international human rights treaties to which Papua New Guinea is a State party ", - "values": [ - "International instruments" - ] - }, - { - "text": "Take all necessary measures to combat violence against children and ratify the Optional Protocols to the Convention on the Rights of the Child", - "values": [ - "International humanitarian law", - "International instruments", - "Labour", - "Rights of the Child", - "Trafficking" - ] - }, - { - "text": "Consider the adoption of legislation to enhance the verification of the records for all fire arms transfers and the revision of the laws that stipulate self-defence without limitations", - "values": [ - "Public security" - ] - }, - { - "text": "Take the appropriate measures to give response to the concerns raised by the civil society ", - "values": [ - "Civil society" - ] - }, - { - "text": "Investigate and prosecute all allegations of extrajudicial, summary or arbitrary killings and bring the perpetrators to justice in accordance with international standards.", - "values": [ - "Extrajudicial executions" - ] - }, - { - "text": "Spare no effort to expedite the guarantee of the rights of the child at the constitutional level ", - "values": [ - "Rights of the Child" - ] - }, - { - "text": "Robustly support and uphold the universal principle of freedom of expression, recognizing that such freedom is essential to a fully functioning democracy", - "values": [ - "Freedom of opinion and expression" - ] - }, - { - "text": "Adopt a law on human trafficking that criminalizes all forms of trafficking and that provides the corresponding sanctions and comprehensive assistance to victims", - "values": [ - "Trafficking" - ] - }, - { - "text": "Accelerate steps towards finalizing the legal framework for the establishment of a national human rights institution in line with the Paris Principles ", - "values": [ - "National Human Rights Institution" - ] - }, - { - "text": "Ensure justice and reparation for victims of the effects of environmental degradation and adopt an environmental standard for the pollutant emissions of foundries ", - "values": [ - "Environment" - ] - }, - { - "text": "Continue to increase its inputs into health and strengthen HIV/AIDS control so as to reduce the incidents of HIV/AIDS", - "values": [ - "HIV - Aids", - "Right to health" - ] - }, - { - "text": "Complete the ratification process for human rights treaties that it has signed, including the International Covenant on Economic, Social and Cultural Rights (ICESCR) and the Optional Protocol to the Convention against Torture (OP-CAT) ", - "values": [ - "Detention", - "ESC rights - general", - "International instruments", - "Torture and other CID treatment" - ] - }, - { - "text": "Adopt, as early as possible, a comprehensive law against the trafficking in human beings and to adopt the measures necessary to prevent and combat that scourge", - "values": [ - "Trafficking" - ] - }, - { - "text": "Ensure the immediate release of illegally detained persons", - "values": [ - "Detention" - ] - }, - { - "text": "Scale up the implementation of inclusive education policies, paying special attention to vulnerable groups", - "values": [ - "Right to education" - ] - }, - { - "text": "Continue the investigation and prosecution of the persons responsible for killing innocent young men said to have been guerrilla fighters.", - "values": [ - "Extrajudicial executions" - ] - }, - { - "text": "Ensure that child victims of offences under OP-CRC-SC are provided with assistance, including social reintegration and physical and psychological recovery ", - "values": [ - "International instruments", - "Rights of the Child", - "Trafficking" - ] - }, - { - "text": "Consider implementing the recommendations of UNHCR with respect to refugees and IDPs ", - "values": [ - "Asylum-seekers - refugees", - "Internally displaced persons" - ] - }, - { - "text": "Continue to strengthen its efforts to fight against trafficking in persons and to ensure protection of its victims", - "values": [ - "Trafficking" - ] - }, - { - "text": "Conduct a review of the effectiveness of its legislation relevant to trafficking in human beings and implement reforms where necessary to strengthen the protection of the rights of victims of trafficking", - "values": [ - "Trafficking" - ] - }, - { - "text": "Continue its efforts in combating trafficking as well as in the rehabilitation of victims of trafficking ", - "values": [ - "Trafficking" - ] - }, - { - "text": "Strengthen the state of law and good governance, with more focus on capacity building for federal and local public officers for better law enforcement and human rights promotion and protection", - "values": [ - "Justice" - ] - }, - { - "text": "Continue to seek assistance from the international community in line with its national plan", - "values": [ - "Technical assistance and cooperation" - ] - }, - { - "text": "Ratify Optional Protocol to the Convention on the Rights of Persons with Disabilities as soon as possible", - "values": [ - "Disabilities", - "International instruments" - ] - }, - { - "text": "Continue its efforts to promote gender equality and women's empowerment", - "values": [ - "Women's rights" - ] - }, - { - "text": "Make the necessary constitutional changes to ratify the Rome Statute", - "values": [ - "International instruments", - "Justice" - ] - }, - { - "text": "Continue efforts to strengthen necessary measures for the protection of the rights of the elderly ", - "values": [ - "Other" - ] - }, - { - "text": "Amend the Criminal Code and the Organic Code of Military Justice, eliminating the crimes of contempt and vilification ", - "values": [ - "Other" - ] - }, - { - "text": "Fully respect the human rights of foreigners, regardless of their migratory status ", - "values": [ - "Migrants" - ] - }, - { - "text": "Ratify, in particular, CAT", - "values": [ - "International instruments", - "Torture and other CID treatment" - ] - }, - { - "text": "Elaborate national legislation for the protection of child rights and create national mechanisms to monitor implementation ", - "values": [ - "Rights of the Child" - ] - }, - { - "text": "Continue improving national legislation in order to ensure equality between women and men on the basis of the principle of non-discrimination", - "values": [ - "Women's rights" - ] - }, - { - "text": "Continue to strengthen measures in the fight against corruption, extortion and fraud", - "values": [ - "Corruption" - ] - }, - { - "text": "Adopt a law on gender identity allowing legal recognition in the national register of persons in accordance with their sexual orientation and image of the persons concerned", - "values": [ - "Sexual Orientation and Gender Identity" - ] - }, - { - "text": "Ratify ICCPR-OP2 aiming at the abolition of the death penalty and take measures for its abolition", - "values": [ - "Death penalty", - "International instruments" - ] - }, - { - "text": "Consider ratifying ICCPR, ICESCR as well as the ICRMW", - "values": [ - "CP rights - general", - "ESC rights - general", - "International instruments", - "Labour", - "Migrants" - ] - }, - { - "text": "Increase its efforts to carry out public-awareness campaigns on the negative effects of violence against children, especially corporal punishment", - "values": [ - "Human rights education and training", - "Rights of the Child", - "Torture and other CID treatment" - ] - }, - { - "text": "Encourage diversity and tolerance of other faiths and beliefs in the education system by monitoring incidents of discrimination on the basis of belief", - "values": [ - "Freedom of religion and belief", - "Right to education" - ] - }, - { - "text": "Accede to the international treaties on human rights and ratify the first Optional Protocol to ICCPR", - "values": [ - "CP rights - general", - "International instruments" - ] - }, - { - "text": "Continue to seek technical assistance in drafting legislation in the field of children's rights ", - "values": [ - "Rights of the Child", - "Technical assistance and cooperation" - ] - }, - { - "text": "Continue its efforts to promote access to health services, including in local communities", - "values": [ - "Right to health" - ] - }, - { - "text": "Continue taking effective policy and other measures to build a fair and inclusive society", - "values": [ - "General" - ] - }, - { - "text": "Develop and implement comprehensive multisectoral strategies on child exploitation and abuse", - "values": [ - "Rights of the Child" - ] - }, - { - "text": "Continue to provide humanitarian and development assistance to poor countries to help these countries to bear the humanitarian burden and to promote human rights", - "values": [ - "Development" - ] - }, - { - "text": "Take steps to increase the minimum age of marriage from 16 to 18 years", - "values": [ - "Rights of the Child", - "Women's rights" - ] - }, - { - "text": "Amend the criminal code by incorporating the category of racist remarks to clearly define direct and indirect discrimination and recognize that racial, religious, national or ethnic grounds constitute an aggravating circumstance", - "values": [ - "Freedom of religion and belief", - "Minorities", - "Racial discrimination" - ] - }, - { - "text": "Explicitly incorporate the approach based on gender rights and sensitivity, the Public Policy for Coexistence and Elimination of Racism and Racial Discrimination and the Plan for its implementation so that, in line with the 2030 Agenda, no one is left behind", - "values": [ - "Racial discrimination", - "Women's rights" - ] - }, - { - "text": "Confirm in deed the status of a standing invitation to the special procedures, in particular, issue an invitation for thematic visits of the special rapporteur on torture, working group on arbitrary detention and the working group on disappearances ", - "values": [ - "Detention", - "Enforced disappearances", - "Special procedures", - "Torture and other CID treatment" - ] - }, - { - "text": "Unconditionally release all remaining political prisoners and allow them to reintegrate fully into their communities without prejudice", - "values": [ - "Detention", - "Freedom of opinion and expression" - ] - }, - { - "text": "Become a party to the Optional Protocol to the International Covenant on Economic, Social and Cultural Rights ", - "values": [ - "ESC rights - general", - "International instruments" - ] - }, - { - "text": "Revisit the legal framework governing the civil society sector, particularly with a view to reducing bureaucratic restrictions to freedom of association and the registration of national and foreign organizations", - "values": [ - "Civil society", - "Freedom of association and peaceful assembly" - ] - }, - { - "text": "Adopt and implement the Child Protection Bill, preventing children from becoming victims of child abuse and publicly raising awareness for their rights", - "values": [ - "Rights of the Child" - ] - }, - { - "text": "Ratify the ICCPR and ICESCR", - "values": [ - "CP rights - general", - "ESC rights - general", - "International instruments" - ] - }, - { - "text": "Consider the possibility of establishing a national human rights institution in accordance with the Paris Principles", - "values": [ - "National Human Rights Institution" - ] - }, - { - "text": "Continue its efforts aimed at the adoption of legislative measures to enhance equality and combat the discrimination suffered by Portuguese citizens of African descent ", - "values": [ - "Minorities", - "Racial discrimination" - ] - }, - { - "text": "Undertake socio-economic development programs that focus on education, job creation and poverty eradication under the National Economic and Social Development Plan 2013-2025", - "values": [ - "Development", - "ESC rights - general", - "Poverty" - ] - }, - { - "text": "Guarantee the right to freedom of association by the establishment of an open political space allowing all citizens to exercise this right without interference", - "values": [ - "Freedom of association and peaceful assembly" - ] - }, - { - "text": "Amend article 140 of the Constitution", - "values": [ - "Death penalty" - ] - }, - { - "text": "Create a national human rights institution", - "values": [ - "National Human Rights Institution" - ] - }, - { - "text": "In collaboration with the international community, intensify efforts to combat trafficking of persons, particularly children", - "values": [ - "Rights of the Child", - "Trafficking" - ] - }, - { - "text": "Take effective measures to ensure full independence of the Judicial Council, and the independence of the judiciary", - "values": [ - "Justice" - ] - }, - { - "text": "Steadily implement the National Strategy for the Advancement of Women ", - "values": [ - "Women's rights" - ] - }, - { - "text": "Provide children with disabilities greater access to facilities, as well as to public transportation and public buildings, as recommended by the Committee on the Rights of the Child, and in keeping with the Government's existing thrust", - "values": [ - "Disabilities", - "Rights of the Child", - "Treaty bodies" - ] - }, - { - "text": "Continue its work to strengthen the rule of law and its efforts within the peace process between the Government and the FARC ", - "values": [ - "International humanitarian law", - "Justice" - ] - }, - { - "text": "Revise its legislation on abortion with a view to authorizing it at least in cases where pregnancy is the result of rape and-or an incestuous relationship, or where the fact of carrying the pregnancy to term puts the life or health of the woman in danger", - "values": [ - "Rights of the Child", - "Women's rights" - ] - }, - { - "text": "Ensure that all relevant international conventions and protocols are respected, and that migrants, particularly children, have access to basic services and are housed in suitable conditions", - "values": [ - "International instruments", - "Migrants", - "Rights of the Child" - ] - }, - { - "text": "Speed up its efforts to effectively combat criminal networks ", - "values": [ - "Public security" - ] - }, - { - "text": "Continue strengthening on-going measures aimed at improving the living conditions of the whole population of the country ", - "values": [ - "General" - ] - }, - { - "text": "Continue its efforts in promoting the right to education so as to ensure access to education for all its young citizens ", - "values": [ - "Right to education" - ] - }, - { - "text": "Supplement their international commitments by making it a priority to accede to the ICCPR and ICESCR", - "values": [ - "CP rights - general", - "ESC rights - general", - "International instruments" - ] - }, - { - "text": "Review the report of the High Commissioner on sexual orientation and gender identity and give consideration to implementing its recommendations ", - "values": [ - "Sexual Orientation and Gender Identity" - ] - }, - { - "text": "Sign and ratify, at the earliest opportunity, the Convention on the Rights of Persons with Disabilities and the Optional Protocol thereto.", - "values": [ - "Disabilities", - "International instruments" - ] - }, - { - "text": "Continue reforms to improve conditions of detention and make increased use of non-custodial measures as suggested by treaty bodies ", - "values": [ - "Detention", - "Treaty bodies" - ] - }, - { - "text": "Cooperate with the Special Procedures and accept requests currently pending by the Special Rapporteurs to carry out country visits", - "values": [ - "Special procedures" - ] - }, - { - "text": "Take concrete steps towards accession to the International Convention on the Protection of the Rights of All Migrant Workers and Members of Their Families and ILO Convention No. 189", - "values": [ - "International instruments", - "Labour", - "Migrants" - ] - }, - { - "text": "Continue its cooperation and dialogue with the relevant international organisations with the aim to address the socio-economic needs of its people ", - "values": [ - "ESC rights - general", - "Technical assistance and cooperation" - ] - }, - { - "text": "Make the declaration regarding Article 22 of the Convention against Torture to recognize the competence of the Committee against Torture to receive individual communications", - "values": [ - "International instruments", - "Torture and other CID treatment", - "Treaty bodies" - ] - }, - { - "text": "Formally abolish the death penalty and accede to the Second Optional Protocol to the International Covenant on Civil and Political Rights", - "values": [ - "Death penalty", - "International instruments" - ] - }, - { - "text": "Grant all the necessary resources for the establishment of the judicial units specialized on legal provisions related to violence against women", - "values": [ - "Justice", - "Women's rights" - ] - }, - { - "text": "Accelerate the process of ratification of the Optional Protocol to the Convention on the Elimination of All Forms of Discrimination against Women, the Optional Protocol to the Convention against Torture and other Cruel, Inhuman and Degrading Treatment or Punishment, and the Second Optional Protocol to the International Covenant on Civil and Political Rights ", - "values": [ - "Death penalty", - "Detention", - "International instruments", - "Torture and other CID treatment", - "Women's rights" - ] - }, - { - "text": "Expedite the adoption of the Children's Protection and Welfare Bill ", - "values": [ - "Rights of the Child" - ] - }, - { - "text": "Continue to improve the measures so that adequate access to health care and rehabilitation services needed are in place for detained psychiatric patients", - "values": [ - "Detention", - "Disabilities", - "Right to health" - ] - }, - { - "text": "Enact those pending bills that are aimed at empowering women, including the women's Reservation Bill and the amendments to Panchayati Raj Act ", - "values": [ - "Women's rights" - ] - }, - { - "text": "Increase its efforts to implement the recommendations of the treaty bodies on equality and non-discrimination", - "values": [ - "Treaty bodies" - ] - }, - { - "text": "Consider ratifying the Second Optional Protocol to the International Covenant on Civil and Political Rights (ICCPR-OP2) and take steps towards a "de jure" abolition of the death penalty ", - "values": [ - "Death penalty", - "International instruments" - ] - }, - { - "text": "Reinforce the fight against exploitation of minors, particularly sexual exploitation, through the effective implementation of national and international legal provisions and through maximal use of the National Plan to Combat Commercial Sexual Exploitation ", - "values": [ - "Labour", - "Rights of the Child" - ] - }, - { - "text": "Investigate all allegations of violation of human rights and humanitarian law in a prompt, transparent and impartial manner ", - "values": [ - "International humanitarian law" - ] - }, - { - "text": "Review possible discriminatory laws from its legislation, with a view to guaranteeing the effective promotion and protection of the rights of vulnerable groups, such as women and children.", - "values": [ - "Rights of the Child", - "Women's rights" - ] - }, - { - "text": "Pursue its efforts within the Human Rights Council on the issue of climate change and human rights", - "values": [ - "Environment" - ] - }, - { - "text": "Enhance participation of and consultation with indigenous peoples and communities on public policies affecting them, including with regard to national resource exploitation and territorial claims, taking into account relevant provisions of the United Nations Declaration on the Rights of Indigenous Peoples", - "values": [ - "Indigenous peoples", - "International instruments", - "Right to land" - ] - }, - { - "text": "Remove the restrictions on freedom of assembly, repeal article 10 of the Law on Freedom of Assembly and ensure that the laws and regulations on demonstrations are in conformity with Kazakhstan's international human rights obligations on freedom of assembly", - "values": [ - "Freedom of association and peaceful assembly", - "International instruments" - ] - }, - { - "text": "Adopt all measures with a view to full compliance of national policy with its obligations under CEDAW ", - "values": [ - "International instruments", - "Women's rights" - ] - }, - { - "text": "Adopt the measures necessary to guarantee freedom of religion", - "values": [ - "Freedom of religion and belief" - ] - }, - { - "text": "Make efforts to minimize overcrowding, improve sanitation and separation of juveniles from adults in prisons", - "values": [ - "Detention", - "Rights of the Child" - ] - }, - { - "text": "Pursuing policies and programs in the education of citizenship and human rights as best practices", - "values": [ - "Human rights education and training" - ] - }, - { - "text": "Continue and strengthen the efforts of the Government to ensure that law enforcement officials and prison guards do not use excessive force or mistreat inmates, by conducting thorough investigations into all such allegations and ensuring that perpetrators are brought to justice ", - "values": [ - "Human rights violations by state agents" - ] - }, - { - "text": "Provide all families of all abducted persons with full information on their fate and whereabouts and allow the abductees and their descendants to return immediately to their countries of origin", - "values": [ - "Enforced disappearances" - ] - }, - { - "text": "Implement the July 2014 national anti-trafficking action plan and enact implementing regulations for the 2011 anti-trafficking act, including by making the changes necessary to ensure that trafficking cases are prosecuted in the magistrate courts, not just the high court", - "values": [ - "Trafficking" - ] - }, - { - "text": "Ratify the Rome Statute of the International Criminal Court and to fully align its legislation with all the obligations under the Rome Statute including incorporating the Rome Statute definition of crimes and general principles, as well as adopting provisions enabling cooperation with the Court", - "values": [ - "International instruments", - "Justice" - ] - }, - { - "text": "Hold security forces accountable for human rights violations and establish a system for human rights monitoring and to promote accountability for gross violations of human rights", - "values": [ - "Human rights violations by state agents" - ] - }, - { - "text": "Consider abolishing, or institute a de facto moratorium, regarding the use of death penalty", - "values": [ - "Death penalty" - ] - }, - { - "text": "Accede to the 1951 Convention relating to the Status of Refugees", - "values": [ - "Asylum-seekers - refugees", - "International instruments" - ] - }, - { - "text": "Take prompt effective measures to uphold a total prohibition against torture ", - "values": [ - "Torture and other CID treatment" - ] - }, - { - "text": "Continue to combat poverty with appropriate and targeted international assistance, in particular that provided by competent United Nations agencies and programmes ", - "values": [ - "Poverty", - "Technical assistance and cooperation" - ] - }, - { - "text": "Develop comprehensive policy instruments based on the Yogyakarta Principles to combat discrimination against sexual minorities ", - "values": [ - "Minorities", - "Sexual Orientation and Gender Identity" - ] - }, - { - "text": "Take necessary measures to ensure that all children are registered at birth ", - "values": [ - "Rights of the Child" - ] - }, - { - "text": "Establish special procedures for juvenile justice ", - "values": [ - "Justice", - "Rights of the Child" - ] - }, - { - "text": "Continue adopting policies and measures to promote dialogue and tolerance among religions", - "values": [ - "Freedom of religion and belief" - ] - }, - { - "text": "Take further concrete measures to improve the dangerous situation for street children", - "values": [ - "Rights of the Child" - ] - }, - { - "text": "Strengthen the protection and promotion of women's rights through appropriate legislative and policy measures and by addressing discriminatory social and cultural attitudes and practices", - "values": [ - "Women's rights" - ] - }, - { - "text": "Ensure the full enjoyment of human rights for those hoping to find a better life in Italy, especially by strengthening structures to guarantee the rights of migrants", - "values": [ - "Migrants" - ] - }, - { - "text": "Continue its efforts in economic, social and cultural rights to further build upon the progress it has already made.", - "values": [ - "ESC rights - general" - ] - }, - { - "text": "Guarantee the poorest people access to legal aid", - "values": [ - "Justice", - "Poverty" - ] - }, - { - "text": "Facilitate an early visit by the High Commissioner for Human Rights", - "values": [ - "Technical assistance and cooperation" - ] - }, - { - "text": "Adopt all necessary measures to eradicate the persistent practice of female genital mutilation, including through awareness-raising campaigns, in cooperation with civil society organizations ", - "values": [ - "Civil society", - "Human rights education and training", - "Rights of the Child", - "Torture and other CID treatment", - "Women's rights" - ] - }, - { - "text": "Ensure the independence and impartiality of the judiciary and guarantee due process of law ", - "values": [ - "Justice" - ] - }, - { - "text": "Speed up the process of ratification of the ICCPR-OP2", - "values": [ - "Death penalty", - "International instruments" - ] - }, - { - "text": "Effectively investigate and prosecute crimes and violations against human rights defenders, and ensure that those responsible are punished.", - "values": [ - "Human rights defenders" - ] - }, - { - "text": "Issue a standing invitation to the human rights special procedures", - "values": [ - "Special procedures" - ] - }, - { - "text": "Strengthen the efforts towards upgrading the facilities and capacity for quality education for all children, including special education, and improve the access to education for children living in remote areas", - "values": [ - "Right to education", - "Rights of the Child" - ] - }, - { - "text": "Create a comprehensive policy on the rights of the child ", - "values": [ - "Rights of the Child" - ] - }, - { - "text": "Continue to promote women's rights and integrate the gender dimension in the economic and social development programmes", - "values": [ - "Development", - "ESC rights - general", - "Women's rights" - ] - }, - { - "text": "Take concrete steps to promote pluralism of the media and their independent work, including the exercise of their watchdog function", - "values": [ - "Freedom of the press" - ] - }, - { - "text": "Continue its efforts in the area of combating female genital mutilation, inter alia, through the implementation of programmes sensitizing the population about its harmful effects ", - "values": [ - "Human rights education and training", - "Rights of the Child", - "Torture and other CID treatment", - "Women's rights" - ] - }, - { - "text": "Ratify the European Charter for Regional or Minority Languages ", - "values": [ - "International instruments", - "Minorities" - ] - }, - { - "text": "Immediately release all imprisoned journalists, prisoners of conscience and human rights defenders", - "values": [ - "Detention", - "Freedom of religion and belief", - "Freedom of the press", - "Human rights defenders" - ] - }, - { - "text": "Ensure full implementation of the right to education of persons belonging to national minorities in particular to refrain from closing schools with minority language of instruction, to provide necessary funding for these schools, also to fully finance publication of textbooks in national minorities languages ", - "values": [ - "Minorities", - "Right to education" - ] - }, - { - "text": "Ratify the Optional Protocol to the International Covenant on Economic, Social and Cultural Rights, the Optional Protocol to the Convention on the Elimination of All Forms of Discrimination against Women and the Optional Protocol to the Convention on the Rights of the Child on a communications procedure ", - "values": [ - "ESC rights - general", - "International instruments", - "Rights of the Child", - "Women's rights" - ] - }, - { - "text": "Establish a fully independent oversight body to receive and investigate complaints of police misconduct and reports of human rights violations. Such a body would ensure that all complaints of excessive use of force by the security forces are subject to immediate, thorough and independent investigation and, if state agents are charged with misconduct, that their cases are brought to trial in an expeditious manner and in line with international standards", - "values": [ - "Human rights violations by state agents" - ] - }, - { - "text": "Abolish capital punishment and, as a first step on that road, introduce as soon as practicable a moratorium on the execution of death sentences ", - "values": [ - "Death penalty" - ] - }, - { - "text": "Take further measures to ensure the full protection of the freedom of religion or belief for religious minorities ", - "values": [ - "Freedom of religion and belief", - "Minorities" - ] - }, - { - "text": "Continue the efforts to implement the National Anti-Discrimination Plan 2008-2013 ", - "values": [ - "General" - ] - }, - { - "text": "Consider ratifying the International Convention on the Protection of the Rights of All Migrant Workers and Members of Their Families", - "values": [ - "International instruments", - "Labour", - "Migrants" - ] - }, - { - "text": "Establish a comprehensive witness protection scheme for cases involving war crimes, with sufficient safeguards including a identity protection system and psychological support", - "values": [ - "Justice" - ] - }, - { - "text": "Address trafficking in persons, and in particular sexual exploitation of children that results from this trafficking", - "values": [ - "Rights of the Child", - "Trafficking" - ] - }, - { - "text": "Institute mechanisms for the effective guarantee of the human rights of all its citizens, including awareness-raising activities ", - "values": [ - "Human rights education and training" - ] - }, - { - "text": "Continue efforts to ratify the International Convention for the Protection of All Persons from Enforced Disappearance ", - "values": [ - "Enforced disappearances", - "International instruments" - ] - }, - { - "text": "Intensify the programs on combatting HIV/AIDS", - "values": [ - "HIV - Aids" - ] - }, - { - "text": "Abolish the death penalty ", - "values": [ - "Death penalty" - ] - }, - { - "text": "Consider enactment of a national legislation on food and nutrition security", - "values": [ - "Right to food" - ] - }, - { - "text": "Improve public access to information on legal and policy measures taken by the Government in the field of human rights", - "values": [ - "Other" - ] - }, - { - "text": "Provide better police protection to judges, investigators and witnesses.", - "values": [ - "Justice" - ] - }, - { - "text": "Consider the possibility of adopting legislation which will promote gender equality, and to consider the adoption of legislation to provide equality of rights and opportunities.", - "values": [ - "Women's rights" - ] - }, - { - "text": "Banish any forms of racism, discrimination and xenophobia in political discourse, media and social life", - "values": [ - "Racial discrimination" - ] - }, - { - "text": "Take the necessary steps to strengthen the legal framework surrounding elections so as to ensure that future elections are free and fair, thereby allowing Cambodian citizens to have a say in the decisions that affect their lives and to elect the officials who reflect and respond effectively to their needs ", - "values": [ - "Elections" - ] - }, - { - "text": "Consider ratifying the Convention on the Rights of Persons with Disabilities and the International Convention on the Protection of the Rights of All Migrant Workers and Members of Their Families", - "values": [ - "Disabilities", - "International instruments", - "Labour", - "Migrants" - ] - }, - { - "text": "Ensure the full enjoyment of the right to freedom of expression in line with country's international commitments ", - "values": [ - "Freedom of opinion and expression" - ] - }, - { - "text": "Treat all detainees humanely and immediately release all prisoners detained without charge or trial or opportunity for appeal ", - "values": [ - "Detention" - ] - }, - { - "text": "Abolish all forms of child labour, including bonded labor and take measures to ensure that no person under 18 years of age is allowed to perform hazardous work, in accordance with the ILO Convention No. 138 ", - "values": [ - "International instruments", - "Labour", - "Rights of the Child" - ] - }, - { - "text": "Adopt measures to prevent incidents of violence on the grounds of sexual orientation", - "values": [ - "Sexual Orientation and Gender Identity" - ] - }, - { - "text": "Continue to respect international humanitarian law and international law in general", - "values": [ - "International humanitarian law" - ] - }, - { - "text": "Initiate the accession procedure to the Optional Protocol to the Convention against Torture", - "values": [ - "Detention", - "International instruments", - "Torture and other CID treatment" - ] - }, - { - "text": "Further promote gender equality by implementing the Convention on the Elimination of All Forms of Discrimination against Women in terms of access to employment", - "values": [ - "International instruments", - "Women's rights" - ] - }, - { - "text": "Improve the situation of inclusion of some minority ethnic groups, in particular the Roma, who are frequently facing a situation of lack of protection.", - "values": [ - "Minorities" - ] - }, - { - "text": "Consider enacting a comprehensive law against all forms of discrimination and adopt an action plan for its implementation", - "values": [ - "Other" - ] - }, - { - "text": "Continue to strengthen the programmes of social protection being implemented in order to provide the best possible welfare and quality of life for its people, especially for those most in need", - "values": [ - "ESC rights - general" - ] - }, - { - "text": "Consider incorporating gender equality in all its policies", - "values": [ - "Women's rights" - ] - }, - { - "text": "Take all necessary measures in order to provide a fair and independent judiciary system, which respect the rights of the defence", - "values": [ - "Justice" - ] - }, - { - "text": "That legislation on the ban of corporal punishment in the exercise of parental rights be approved ", - "values": [ - "Rights of the Child", - "Torture and other CID treatment" - ] - }, - { - "text": "Step up efforts to prevent violence against women and domestic violence", - "values": [ - "Rights of the Child", - "Women's rights" - ] - }, - { - "text": "Share its positive experience and best practices with other countries regarding the high level of ethnic and religious tolerance in Brunei Darussalam ", - "values": [ - "Freedom of religion and belief" - ] - }, - { - "text": "Ratify the ICCPR, which was signed by China in 1998", - "values": [ - "CP rights - general", - "International instruments" - ] - }, - { - "text": "Undertake all necessary measures to prevent unlawful treatment by law enforcement bodies, in particular against foreigners and German citizens of foreign origin ", - "values": [ - "Human rights violations by state agents", - "Migrants", - "Minorities" - ] - }, - { - "text": "Continue its endeavours to implement the national human rights plan", - "values": [ - "General" - ] - }, - { - "text": "Continue its efforts to improve health care, education and care provided for persons with disabilities", - "values": [ - "Disabilities", - "Right to education", - "Right to health" - ] - }, - { - "text": "Completely abolish the death penalty and, to that end, to ratify as soon as possible the Second Optional Protocol to the International Covenant on Civil and Political Rights, as provided for in the 2009-2012 National Human Rights Plan", - "values": [ - "Death penalty", - "International instruments" - ] - }, - { - "text": "Continue to engage with civil society groups and demonstrate that challenges presented by relationships between its federal, provincial and territorial governments do not present unnecessary obstacle to ensuring implementation of its international human rights obligations", - "values": [ - "Civil society", - "International instruments" - ] - }, - { - "text": "Forbid corporal punishment of children ", - "values": [ - "Rights of the Child", - "Torture and other CID treatment" - ] - }, - { - "text": "Take strong measures in addressing the concern raised by the Committee on the CRC on the lack of prevention of child sexual exploitation ", - "values": [ - "Rights of the Child", - "Treaty bodies" - ] - }, - { - "text": "Establish a moratorium on executions with a view to abolishing death penalty entirely, especially with regard to juvenile offenders ", - "values": [ - "Death penalty", - "Rights of the Child" - ] - }, - { - "text": "Ensure that all persons, including human rights defenders and members of civil society, can exercise their legitimate activities without fear of reprisals in conformity with international law and standards ", - "values": [ - "Civil society", - "Human rights defenders", - "International instruments" - ] - }, - { - "text": "Continue its efforts to guarantee the right to the truth for victims and families of serious human rights violations and for all Brazilian society, ensuring proper functioning of the Truth Commission ", - "values": [ - "Justice" - ] - }, - { - "text": "Implement the Supreme Court's decision without undue delay and in accordance with the primacy of the human rights of those detained, as guaranteed under the Constitution of Papua New Guinea", - "values": [ - "Detention" - ] - }, - { - "text": "Develop further the united register for cases regarding domestic violence against women to create a full body of statistics regarding gender based violence throughout the entire country", - "values": [ - "Women's rights" - ] - }, - { - "text": "Increase efforts to promote awareness on the social level through continuing campaigns that aim at combating all types of discrimination linked to negative cultural norms while protecting the cultural identity of the society", - "values": [ - "Human rights education and training" - ] - }, - { - "text": "Progress in the implementation of the laws against domestic violence by establishing, in the short term, the centres to support women against sexual abuse, harassment and domestic violence provided for in the new law", - "values": [ - "Rights of the Child", - "Women's rights" - ] - }, - { - "text": "Continue its efforts in the area of protection of the environment and natural resources by effectively implementing Law 42/2014", - "values": [ - "Environment" - ] - }, - { - "text": "The Government is committed to structured, organised and regular engagement with civil society to discuss follow-up to 2nd cycle UPR recommendations.", - "values": [ - "Justice", - "UPR process" - ] - }, - { - "text": "Continue the harmonization of legal frameworks in line with Constitutional texts", - "values": [ - "Justice" - ] - }, - { - "text": "Adopt effective measures to ensure that representatives of NGOs work freely in the country and guarantee that journalists and human rights defenders enjoy the freedoms of expression, assembly and association ", - "values": [ - "Civil society", - "Freedom of association and peaceful assembly", - "Freedom of opinion and expression", - "Freedom of the press", - "Human rights defenders" - ] - }, - { - "text": "Take all appropriate measures to improve the situation of women's rights on the ground and retain in the draft Constitution currently under discussion both the provision on equality before the law regardless of sex and the provision prohibiting any law, culture, custom or tradition that undermine the dignity, welfare, interests or status of women.", - "values": [ - "Women's rights" - ] - }, - { - "text": "Take more efforts to eliminate discrimination against women ", - "values": [ - "Women's rights" - ] - }, - { - "text": "Continue to implement its commitments on the promotion of human rights", - "values": [ - "General" - ] - }, - { - "text": "Pursue, within the context of paragraph 1(d) of Human Rights Council resolution 9-12, the achievement of its MDGs in the areas of health and education through national plans of action", - "values": [ - "Right to education", - "Right to health" - ] - }, - { - "text": "Continue to apply its socio-economic development plans and strategies", - "values": [ - "Development" - ] - }, - { - "text": "Recommended abolishing or reforming the current hukou residency system to ensure that all citizens are ensured basic access to education, health care and other relevant social welfare systems on an equitable basis and in line with the principles of non-discrimination", - "values": [ - "Right to education", - "Right to health" - ] - }, - { - "text": "Swiftly implement the provisions in the new Criminal Code, aiming at the elimination of the practice of female genital mutilation", - "values": [ - "Rights of the Child", - "Torture and other CID treatment", - "Women's rights" - ] - }, - { - "text": "Further promote the respect of human rights by executing public awareness campaigns on issues such as equal treatment between women and men, combating child labour, human trafficking and domestic violence", - "values": [ - "Human rights education and training", - "Labour", - "Rights of the Child", - "Trafficking", - "Women's rights" - ] - }, - { - "text": "Provide effective guarantees for the full exercise of freedom of expression and information recognized in the Constitution and in international instruments ratified by the Bolivarian Republic of Venezuela", - "values": [ - "Freedom of opinion and expression" - ] - }, - { - "text": "Maintain and strengthen the institutional independence of the Ombudsman and the National Human Rights Commission", - "values": [ - "National Human Rights Institution" - ] - }, - { - "text": "Share the experiences of the special tool for gender equality, the - equality mark -, with other countries", - "values": [ - "Women's rights" - ] - }, - { - "text": "Establish a fully independent national human rights institution, in accordance with the Paris Principles", - "values": [ - "National Human Rights Institution" - ] - }, - { - "text": "Reinforce the independence and the capacity of the Irish Human Rights Commission to fulfil its mandate effectively in accordance with the Paris Principles by endowing it with adequate and sufficient resources ", - "values": [ - "National Human Rights Institution" - ] - }, - { - "text": "Strengthen access to the rights to education of infants, without discrimination, including the improvement of educational infrastructure, with a particular emphasis on the infant population in rural areas, and children and adolescents living on the streets. Implement human rights education and training programmes aimed at combating discrimination based on ethnicity", - "values": [ - "Human rights education and training", - "Minorities", - "Racial discrimination", - "Right to education", - "Rights of the Child" - ] - }, - { - "text": "Ensure full respect for the human rights of migrants", - "values": [ - "Migrants" - ] - }, - { - "text": "Continue its accession to international human rights treaties ", - "values": [ - "International instruments" - ] - }, - { - "text": "Fully implement the national action plan to prevent and eradicate violence against women and to assist victims, of which France welcomes the adoption", - "values": [ - "Women's rights" - ] - }, - { - "text": "Take necessary measures to expand the provisions of the Criminal Code on hate speech in order to include grounds which go beyond hatred based on race, religion or origin of the individual, integrating such factors as language, colour, sex, mental or physical disability, sexual orientation or other similar grounds ", - "values": [ - "Disabilities", - "Freedom of religion and belief", - "Minorities", - "Racial discrimination", - "Sexual Orientation and Gender Identity", - "Women's rights" - ] - }, - { - "text": "Boost its activities to combat discrimination against migrant workers", - "values": [ - "Labour", - "Migrants", - "Racial discrimination" - ] - }, - { - "text": "Give further impetus to the reforms towards the rule of law, human rights and integrated economic development, thereby increasing national security, stability and welfare ", - "values": [ - "Development", - "Justice", - "Public security" - ] - }, - { - "text": "Review the legislation on the press offences of libel and defamation with a view to ensuring full protection and realization of the freedom of expression", - "values": [ - "Freedom of opinion and expression", - "Freedom of the press" - ] - }, - { - "text": "Reinforce the strategy and the National plan of action concerning internally displaced persons ", - "values": [ - "Internally displaced persons" - ] - }, - { - "text": "Continue to review all counter-terrorism legislation and ensure that it complies with the highest human rights standards.", - "values": [ - "Counter-terrorism" - ] - }, - { - "text": "Ensure the rights of indigenous peoples and local forest dependent peoples in law and practice, in particular regarding their rights to traditional lands, territories and resources ", - "values": [ - "Indigenous peoples", - "Right to land" - ] - }, - { - "text": "Increase efforts in order especially to protect victims of human trafficking", - "values": [ - "Trafficking" - ] - }, - { - "text": "Ratify the CAT and OP-CAT", - "values": [ - "Detention", - "International instruments", - "Torture and other CID treatment" - ] - }, - { - "text": "Strengthen its efforts in the areas of Education with the view of increasing school enrolment rate ", - "values": [ - "Right to education" - ] - }, - { - "text": "Ratify the Optional Protocol to the Convention against Torture and Other Cruel, Inhuman or Degrading Treatment or Punishment, in order to establish a national preventive mechanism", - "values": [ - "Detention", - "International instruments", - "Torture and other CID treatment", - "Treaty bodies" - ] - }, - { - "text": "Continue its efforts to achieve the Millennium Development Goals ", - "values": [ - "Development" - ] - }, - { - "text": "Strengthen its efforts to deal with human trafficking offences through studying international best practice and developing domestic legislation in conformity with international standards, establishing as appropriate institutions and agencies and strengthening cooperation with international organizations and bodies", - "values": [ - "Trafficking" - ] - }, - { - "text": "Ensure accountability for the systematic and widespread violations and abuses of human rights and violations of international humanitarian law that are being committed on a large scale throughout the Syrian Arab Republic by all parties, some of which may amount to crimes against humanity", - "values": [ - "Human rights violations by state agents", - "International humanitarian law" - ] - }, - { - "text": "Ensure that refugees and asylum-seekers are dealt with as defined under international law and standards ", - "values": [ - "Asylum-seekers - refugees" - ] - }, - { - "text": "Bring the Civil Code into full conformity with its international obligations and commitments, including the Convention on the Elimination of All Forms of Discrimination Against Women, to ensure that civil partnerships and de facto non-traditional or non-Catholic marriages are recognized by the Civil Code and that women have equal rights as men in matters of inheritance and landownership", - "values": [ - "International instruments", - "Women's rights" - ] - }, - { - "text": "Continue to take action towards a comprehensive gender equality strategy", - "values": [ - "Women's rights" - ] - }, - { - "text": "Ensure the protection of the human rights of journalists and human rights defenders and guarantee that perpetrators of violations against human rights defenders be brought to justice", - "values": [ - "Freedom of the press", - "Human rights defenders" - ] - }, - { - "text": "Ensure that all reports of domestic violence are thoroughly investigated and that the perpetrators are brought to justice ", - "values": [ - "Rights of the Child", - "Women's rights" - ] - }, - { - "text": "Continue to pay particular attention to children, incorporating into social programs measures to eradicate all forms of violence against girls, boys and adolescents", - "values": [ - "Rights of the Child", - "Women's rights" - ] - }, - { - "text": "Improve the social and economic situation of women especially in rural areas, in order to make them less vulnerable to traffickers", - "values": [ - "Trafficking", - "Women's rights" - ] - }, - { - "text": "Provide judicial remedies through the national human rights institution for migrants who have been discriminated against in the labour market because of their origin, religion, nationality or ethnicity, and strengthen structural measures to combat stereotypes during selection and recruitment processes", - "values": [ - "Labour", - "Migrants", - "Racial discrimination" - ] - }, - { - "text": "Align domestic legislation on detention with international standards and, in particular, to ratify CAT", - "values": [ - "Detention", - "International instruments", - "Torture and other CID treatment" - ] - }, - { - "text": "Consider ratifying the ICPPED", - "values": [ - "Enforced disappearances", - "International instruments" - ] - }, - { - "text": "Allow human rights organisations full access to detention centres", - "values": [ - "Civil society", - "Detention" - ] - }, - { - "text": "Increase the protection of victims of sexual violence by providing them with the necessary support to facilitate their psychological and physical rehabilitation ", - "values": [ - "Rights of the Child", - "Women's rights" - ] - }, - { - "text": "Put an end to direct and indirect restrictions on freedom of expression and adopt appropriate measures, including legislative measures, to prevent intimidation of journalists ", - "values": [ - "Freedom of opinion and expression", - "Freedom of the press" - ] - }, - { - "text": "Continue strengthening the existing mechanisms in the fight against trafficking in persons, particularly of women and children ", - "values": [ - "Rights of the Child", - "Trafficking", - "Women's rights" - ] - }, - { - "text": "Allow voluntary repatriation of ethnic Nepali Bhutanese refugees to Bhutan ", - "values": [ - "Asylum-seekers - refugees" - ] - }, - { - "text": "Take the necessary steps in order to increase the availability of social housing and emergency housing support and to adopt appropriate measures to solve the long-term needs", - "values": [ - "Right to housing" - ] - }, - { - "text": "Further pursue programmes for the reform of the justice system, and the police and security services, with a view to concretizing its will to better protect the human rights of its citizens in the country. ", - "values": [ - "Justice" - ] - }, - { - "text": "Continue in its endeavour to establish a broad-based, sustainable and participatory development framework to reach the disadvantaged groups of society ", - "values": [ - "Development" - ] - }, - { - "text": "Consider becoming a member of the International Labour Organization (ILO) and ratifying the core ILO conventions ", - "values": [ - "International instruments", - "Labour" - ] - }, - { - "text": "Accede to the ICERD ", - "values": [ - "International instruments", - "Racial discrimination" - ] - }, - { - "text": "Continue to improve access to healthcare and raise awareness of reproductive health for women, children, youth, as well as migrants and asylum seekers in order to decrease maternal, child and infant mortality", - "values": [ - "Asylum-seekers - refugees", - "Migrants", - "Right to health", - "Rights of the Child", - "Women's rights" - ] - }, - { - "text": "Implement a national strategy to promote interreligious and intercultural dialogue and tolerance", - "values": [ - "Freedom of religion and belief" - ] - }, - { - "text": "Pursue its efforts to implement the plan of action for combatting child labour", - "values": [ - "Labour", - "Rights of the Child" - ] - }, - { - "text": "Consider positively the request of the Special Rapporteur on the question of torture to visit the country as a matter of priority.", - "values": [ - "Special procedures", - "Torture and other CID treatment" - ] - }, - { - "text": "Take effective measures to dissuade child marriage and to protect the fundamental rights of the children ", - "values": [ - "Rights of the Child" - ] - }, - { - "text": "Enact legislation prohibiting female genital mutilation", - "values": [ - "Rights of the Child", - "Torture and other CID treatment", - "Women's rights" - ] - }, - { - "text": "In addition to initiatives undertaken by the Government for the elimination of torture and other cruel, inhuman or degrading treatment, bring national legislation into line with the Convention against Torture, particularly with respect to the proper definition of the crime of torture ", - "values": [ - "International instruments", - "Torture and other CID treatment" - ] - }, - { - "text": "Maintain the de facto moratorium on the death penalty with a view to achieving its abolition, and ratify the Second Optional Protocol to ICCPR ", - "values": [ - "Death penalty", - "International instruments" - ] - }, - { - "text": "Establish an independent national human rights institution in accordance with the Paris Principles which complements the role of civil society organizations", - "values": [ - "Civil society", - "National Human Rights Institution" - ] - }, - { - "text": "Make efforts to eliminate extrajudicial killings and enforced disappearances, and intensify efforts to carry out prosecutions for such crimes", - "values": [ - "Enforced disappearances", - "Extrajudicial executions" - ] - }, - { - "text": "Give priority to the formulation and implementation of the envisaged National Action Plan for the Prevention of Violence against women and the Punishment of Aggressors", - "values": [ - "Women's rights" - ] - }, - { - "text": "Ratify the Rome Statute of the ICC and accede to the Agreement on Privileges and Immunities of the ICC ", - "values": [ - "International instruments", - "Justice" - ] - }, - { - "text": "Continue the efforts to protect the rights of persons affected by HIV/AIDS", - "values": [ - "HIV - Aids" - ] - }, - { - "text": "Complete by making the amendment to the proposed amendment to the nationality law that guarantees the Bahraini nationality for children from a Bahraini mother and a non-Bahraini father law ", - "values": [ - "Women's rights" - ] - }, - { - "text": "Continue efforts to fight discrimination against women, aiming to change deep-rooted behaviours and attitudes.", - "values": [ - "Women's rights" - ] - }, - { - "text": "Penitentiary rehabilitation: designing a model for social insertion and a model for an infrastructure compliant with human rights standards, building of seven new penitentiary centres based on the model of social insertion", - "values": [ - "Detention" - ] - }, - { - "text": "Continue efforts regarding the fight against racism, racial discrimination, xenophobia and associated intolerance", - "values": [ - "Racial discrimination" - ] - }, - { - "text": "Promote the rights of persons with disabilities on the ground, despite the difficulties", - "values": [ - "Disabilities" - ] - }, - { - "text": "Ensure a prompt and independent investigation regarding the loss of lives resulting from the violence in April this year, for the purpose of justice and confidence-building in Kyrgyzstan ", - "values": [ - "Justice" - ] - }, - { - "text": "Promote efforts to consolidate the rule of law", - "values": [ - "Justice" - ] - }, - { - "text": "Implement measures to combat racial stereotyping and discriminatory attitudes against migrants, including through awareness-raising campaigns and by enforcement of legislation against racial discrimination in all fields of public life ", - "values": [ - "Human rights education and training", - "Migrants", - "Racial discrimination" - ] - }, - { - "text": "Create a favourable environment for the activities of human rights defenders, journalists and other actors of civil society", - "values": [ - "Civil society", - "Freedom of the press", - "Human rights defenders" - ] - }, - { - "text": "Accede to and ratify the International Convention for the Protection of All Persons from Enforced Disappearance", - "values": [ - "Enforced disappearances", - "International instruments" - ] - }, - { - "text": "Adopt a national plan of action focusing on persons with disabilities", - "values": [ - "Disabilities" - ] - }, - { - "text": "Strengthen its efforts to combat racial discrimination, especially in the judicial system ", - "values": [ - "Justice", - "Racial discrimination" - ] - }, - { - "text": "Continue to focus on and dedicate programmes to inclusive education for all, also with regard to ending segregation of Roma children", - "values": [ - "Minorities", - "Racial discrimination", - "Right to education", - "Rights of the Child" - ] - }, - { - "text": "Ensure that the Ministries of Labour, Social Affairs and Equal Opportunity take further steps to eliminate the worst forms of child labour, that they address the informal sector in these measures, and that they receive adequate training to detect and prevent unlawful child labour, improve the\nquality of and increase the number of workplace inspections in both formal and informal sectors, and work with the courts to effectively prosecute perpetrators \n", - "values": [ - "Labour", - "Rights of the Child" - ] - }, - { - "text": "Adopt comprehensive measures to combat paedophilia and the increase of child prostitution", - "values": [ - "Rights of the Child" - ] - }, - { - "text": "Enact specific legislation which prohibits and punishes racial discrimination ", - "values": [ - "Racial discrimination" - ] - }, - { - "text": "Review the regional resettlement arrangement with a view to ending or reforming the offshore processing and offshore detention of asylum seekers, and to release asylum seekers from detention while their claims are being processed, priority being given to releasing children and families as soon as possible, and, in the interim, to provide adequate safeguards for the detainees in detention, including providing reasonable standards of security and hygiene", - "values": [ - "Asylum-seekers - refugees", - "Detention", - "Migrants", - "Rights of the Child" - ] - }, - { - "text": "Intensify its efforts towards the realization of economic, social and cultural rights, including in relation to the right to health", - "values": [ - "ESC rights - general", - "Right to health" - ] - }, - { - "text": "Take specific measures in order to address the dis-functioning of the judicial system and the lack of internal and external monitoring of the police", - "values": [ - "Justice" - ] - }, - { - "text": "End discrimination on the basis of sexual orientation", - "values": [ - "Sexual Orientation and Gender Identity" - ] - }, - { - "text": "Rapidly complete the alignment of national legislation with the provisions of the Rome Statute of the International Criminal Court ", - "values": [ - "International instruments", - "Justice" - ] - }, - { - "text": "End impunity for human rights violations, taking forward the recommendations of the Special Rapporteur, by investigating, prosecuting and punishing those responsible with the assistance of the United Nations ", - "values": [ - "Impunity", - "Special procedures", - "Technical assistance and cooperation" - ] - }, - { - "text": "Consider ending the practice of indefinite national service and begin a process of phased demobilization for those who have served for more than the statutory 18 months ", - "values": [ - "Other" - ] - }, - { - "text": "Establish a broad based media information campaign on the rights of migrants in Arabic and in the languages of main groups of migrants ", - "values": [ - "Migrants" - ] - }, - { - "text": "Foster internal analysis on the recently adopted law on asylum and its compatibility with international human rights law.", - "values": [ - "Asylum-seekers - refugees", - "International instruments" - ] - }, - { - "text": "Strengthen its efforts to fully implement legislation on violence against women and children and prosecution and convictions of perpetrators and to ensure that all programmes, projects and measures to combat violence against women also reach Roma women ", - "values": [ - "Minorities", - "Rights of the Child", - "Women's rights" - ] - }, - { - "text": "Adopt the draft National Strategy and Action Plan on Violence against Children", - "values": [ - "Rights of the Child" - ] - }, - { - "text": "End all settlement activities in the Occupied Palestinian Territories, in particular in and around occupied Jerusalem", - "values": [ - "Right to land" - ] - }, - { - "text": "Continue its persistent efforts to promote mechanisms for the protection of the rights of children, particularly children with disabilities, and to secure their rights, and continue the implementation of programmes for children ", - "values": [ - "Disabilities", - "Rights of the Child" - ] - }, - { - "text": "Expedite the necessary legislative reforms and set a concrete timeline towards ratification of the Convention on the Rights of Persons with Disabilities", - "values": [ - "Disabilities", - "International instruments" - ] - }, - { - "text": "Develop specific measures to educate society and enforce existing legislation addressing the practice of ukuthwala and other customary practices leading to forced and child marriages", - "values": [ - "Rights of the Child" - ] - }, - { - "text": "Enhance efforts to ensure the safety and the rights of children", - "values": [ - "Rights of the Child" - ] - }, - { - "text": "Publish all information about the imposition and use of the death penalty, including information on executions carried out.", - "values": [ - "Death penalty" - ] - }, - { - "text": "Provide adequate capacity-building programmes for judges, prosecutors and law enforcement officials to better implement laws criminalizing violence against women and better assist and protect women victims of violence", - "values": [ - "Women's rights" - ] - }, - { - "text": "Continue the efforts and successes achieved by Government institutions in raising human rights awareness among its civil servants, and enhance the level of judicial and legal training studies within the framework of international treaties ", - "values": [ - "Human rights education and training" - ] - }, - { - "text": "Establish a national human rights institution fully compliant with the Paris Principles", - "values": [ - "National Human Rights Institution" - ] - }, - { - "text": "Intensify greatly the numerous measures taken in this sector of human rights education", - "values": [ - "Human rights education and training" - ] - }, - { - "text": "Establish a national mechanism for the advancement of women in accordance with the 2030 Agenda for Sustainable Development", - "values": [ - "Development", - "Women's rights" - ] - }, - { - "text": "Belize remained committed to fulfilling its international human rights treaty obligations and to ensuring that the human rights and fundamental freedoms enshrined in its Constitution are guaranteed to every citizen. The Government would continue to work to strengthen its specialized human rights institutions, including the National Women's Commission, the National Committee for Families and Children, the National Council on Aging, and the National AIDS Commission, as well as the Office of the Ombudsman and legal aid office.", - "values": [ - "HIV - Aids", - "International instruments", - "National Human Rights Institution", - "Rights of the Child", - "Women's rights" - ] - }, - { - "text": "Pursue further reforms in the education sector to improve the availability, accessibility, affordability and quality of education for all", - "values": [ - "Right to education" - ] - }, - { - "text": "Continue its efforts for the development and the wellbeing of its population, particularly through education and training which even some of our countries also benefit from ", - "values": [ - "Right to education" - ] - }, - { - "text": "Continue efforts to combat and eliminate all forms of discrimination against women", - "values": [ - "Women's rights" - ] - }, - { - "text": "Respect the independence of the judiciary", - "values": [ - "Justice" - ] - }, - { - "text": "Take measures aimed at eliminating all forms of discrimination against women and girls, and to protect their rights, especially to education at all levels, and to receive medical care during all their stages of life, including during pregnancy ", - "values": [ - "Right to education", - "Right to health", - "Rights of the Child", - "Women's rights" - ] - }, - { - "text": "Consider ratifying the Convention on the Protection of the Rights of All Migrant Workers and Members of their Families", - "values": [ - "International instruments", - "Labour", - "Migrants" - ] - }, - { - "text": "Consider the ratification of ICRMW ", - "values": [ - "International instruments", - "Labour", - "Migrants" - ] - }, - { - "text": "Effectively provide for the application of laws prohibiting wage discrimination for equal work between men and women", - "values": [ - "Women's rights" - ] - }, - { - "text": "Continue the judicial reforms, in particular the implementation of the 2012-2016 framework of transformation of the judicial system", - "values": [ - "Justice" - ] - }, - { - "text": "Take all necessary legal steps to abolish the death penalty and, in the meantime, reintroduce a de facto moratorium", - "values": [ - "Death penalty" - ] - }, - { - "text": "Address the exclusion of persons with disabilities at the family and community levels through public education and through targeted and concrete measures, in consultation with organizations of persons with disabilities", - "values": [ - "Disabilities", - "Human rights education and training" - ] - }, - { - "text": "Nepal expresses its commitments to continue its holistic and comprehensive approach to the promotion and protection of human rights and to put in practice a rights-based approach to development of all sectors. Nepal remains committed to engage the civil society and stakeholders in the promotion and protection of human rights.", - "values": [ - "Development" - ] - }, - { - "text": "Raise the minimum age of criminal responsibility in accordance with acceptable international standards and abolish the mandatory imposition of life imprisonment for offences committed by children under the age of 18", - "values": [ - "Detention", - "Rights of the Child" - ] - }, - { - "text": "Ratify the Second Optional Protocol to the ICCPR aiming at the abolition of the death penalty", - "values": [ - "Death penalty", - "International instruments" - ] - }, - { - "text": "Ensure greater accountability and transparency of police and security forces, including by publishing the results of investigations by the Independent Policing Oversight Authority", - "values": [ - "Human rights violations by state agents" - ] - }, - { - "text": "Investigate and prosecute all persons responsible for harmful practices against children, following the adoption of the new Children\u2019s Code", - "values": [ - "Rights of the Child", - "Torture and other CID treatment" - ] - }, - { - "text": "Intensify efforts to strengthen the fight against female genital mutilation", - "values": [ - "Rights of the Child", - "Torture and other CID treatment", - "Women's rights" - ] - }, - { - "text": "Introduce legislation to satisfy its commitments on equality and non-discrimination, including as it pertains to same sex relations", - "values": [ - "Sexual Orientation and Gender Identity" - ] - }, - { - "text": "Include the content of the Convention against Torture in its legislation.", - "values": [ - "International instruments", - "Torture and other CID treatment" - ] - }, - { - "text": "Provide the most efficient means possible of protection for victims of discrimination, including by improving and broadening the mandate of the Ombudsman so that it also covers combating discrimination", - "values": [ - "National Human Rights Institution" - ] - }, - { - "text": "Reduce immigration detention and promote alternatives to such detention", - "values": [ - "Detention", - "Migrants" - ] - }, - { - "text": "Share with the international community its experiences in national development and poverty reduction", - "values": [ - "Development", - "Poverty" - ] - }, - { - "text": "Continue updating curricular content and methods", - "values": [ - "Right to education" - ] - }, - { - "text": "Harmonise its national legislation regarding freedom of expression with the International Covenant on Civil and Political Rights, and ensure the independence of the Regulations Commission of Communications", - "values": [ - "Freedom of opinion and expression", - "International instruments" - ] - }, - { - "text": "Take all necessary actions to protect and improve the situation of children", - "values": [ - "Rights of the Child" - ] - }, - { - "text": "Provide training on human rights and freedom of the press to the police and armed forces in order to prevent any deterioration in this field ", - "values": [ - "Freedom of the press", - "Human rights education and training" - ] - }, - { - "text": "Fully implement its constitutional provision on freedom of expression and establish a freedom of information law in accordance with international standards", - "values": [ - "Freedom of opinion and expression" - ] - }, - { - "text": "Ensure that the authorities, especially the police, protect communities and groups threatened by violence and discrimination, and that the Roma can fully enjoy their human rights without intimidation or discrimination", - "values": [ - "Minorities", - "Racial discrimination" - ] - }, - { - "text": "will examine the possible implementation of the United Nations Rules for the Treatment of Women Prisoners and Non-Custodial Measures for Women Offenders, otherwise known as the "Bangkok Rules"", - "values": [ - "Detention", - "Women's rights" - ] - }, - { - "text": "Renew its efforts to combat all forms of trafficking of children, and formulate a policy of child protection to ensure a better system for safeguarding children's rights ", - "values": [ - "Rights of the Child", - "Trafficking" - ] - }, - { - "text": "Adopt further measures to ensure the full enjoyment of rights of persons with disabilities, particularly in education and access to services ", - "values": [ - "Disabilities", - "Right to education" - ] - }, - { - "text": "Study the possibility of intensifying measures aiming at eliminating all discriminatory treatment on the basis of sexual orientation or gender identity", - "values": [ - "Sexual Orientation and Gender Identity" - ] - }, - { - "text": "Continue to build on progress made in gender equality", - "values": [ - "Women's rights" - ] - }, - { - "text": "Ratify the Convention on the Rights of Persons with Disabilities (CRPD) and its Optional Protocol.", - "values": [ - "Disabilities", - "International instruments" - ] - }, - { - "text": "Take steps to move towards increased renewable energy production, in-line with their pledges on Climate Action", - "values": [ - "Environment" - ] - }, - { - "text": "Redouble efforts to further reduce the income gap between the Afro-Brazilians, especially Afro-Brazilian women, and the general population", - "values": [ - "Minorities", - "Racial discrimination", - "Women's rights" - ] - }, - { - "text": "Take concrete steps to improve the objectivity and independence of the criminal justice system by incorporating the recommendations of the Venice Commission, implementing the judgments of the European Court of Human Rights, and addressing concerns about selective justice", - "values": [ - "Justice" - ] - }, - { - "text": "Consider ratifying the ICCPR-OP2 on abolition of death penalty", - "values": [ - "Death penalty", - "International instruments" - ] - }, - { - "text": "Consolidate its national gender policy that promotes women rights and their participation in the development of their society", - "values": [ - "Women's rights" - ] - }, - { - "text": "Take more effective measures to address discrimination and other problems related to racial and ethnic relations including by developing and implementing appropriate policy and programmes with a view to improving and strengthening relations between races and cultures ", - "values": [ - "Racial discrimination" - ] - }, - { - "text": "Modify its new law on associations, by lifting the limits on their establishment, their functioning and their financing, so as to bring this law in conformity with its obligations and in order to ensure that civil society can function freely ", - "values": [ - "Civil society", - "Freedom of association and peaceful assembly" - ] - }, - { - "text": "Further its national efforts to eradicate trafficking in persons, especially women and children", - "values": [ - "Rights of the Child", - "Trafficking", - "Women's rights" - ] - }, - { - "text": "Develop a comprehensive national strategy with a view to prevent and address all forms of violence against children", - "values": [ - "Rights of the Child" - ] - }, - { - "text": "Ratify the Second Optional Protocol to ICCPR and definitively abolish the death penalty.", - "values": [ - "Death penalty", - "International instruments" - ] - }, - { - "text": "Direct officials to cease anti-Semitic commentary and condemn any such statements ", - "values": [ - "Racial discrimination" - ] - }, - { - "text": "Take necessary measures in order to ratify core international human rights instruments, such as the Rome Statue of the International Criminal Court and the Optional Protocol to the Convention on the Elimination of All Forms of Discrimination against Women ", - "values": [ - "International instruments", - "Justice", - "Women's rights" - ] - }, - { - "text": "Take all necessary steps, in accordance with its commitments, to ensure the swift adoption of a law that prohibits and penalizes all forms of gender-based violence, including domestic and sexual violence, and ensure that victims of such violence have access to legal remedies and benefit from support and assistance to ensure their rehabilitation and reintegration into society", - "values": [ - "Women's rights" - ] - }, - { - "text": "Improve training and administrative instructions for police and local authorities to ensure that the right to peaceful assembly is universally respected, including in the provinces of Papua and West Papua", - "values": [ - "Freedom of association and peaceful assembly", - "Human rights education and training" - ] - }, - { - "text": "Ensure that the legislation on fighting terrorism complies with international standards of protection of human rights and fundamental freedoms and attend to the recommendations of the Human Rights Committee and the Committee against Torture with regard to the non-derogable character of some rights and the inadmissibility of torture", - "values": [ - "International instruments", - "Torture and other CID treatment", - "Treaty bodies" - ] - }, - { - "text": "Apply a national development policy which incorporates the Sustainable Development Goals, the creation of an enabling environment for economic growth and improved services for the most marginalized communities", - "values": [ - "Development" - ] - }, - { - "text": "Work with the Special Rapporteur on freedom of religion to ensure that its international human rights obligations under article 18 of ICCPR are fully implemented ", - "values": [ - "Freedom of religion and belief", - "International instruments", - "Special procedures" - ] - }, - { - "text": "Thoroughly and transparently investigate and prosecute all alleged incidents of pressure in the form of harassment and lawsuits of journalists, editors and human rights defenders ", - "values": [ - "Freedom of the press", - "Human rights defenders" - ] - }, - { - "text": "Put an end to the practice of secret detention", - "values": [ - "Counter-terrorism", - "Detention" - ] - }, - { - "text": "Efforts will be continued to find appropriate solutions for persons who are illegal residents and to grant Kuwaiti nationality to those entitled to it.", - "values": [ - "Migrants" - ] - }, - { - "text": "Promptly ratify the Optional Protocol to the Convention on the Rights of the Child on the sale of children, child prostitution and child pornography", - "values": [ - "International instruments", - "Rights of the Child", - "Trafficking" - ] - }, - { - "text": "Bearing in mind the protective and advanced nature of the legislation against discrimination, intensify measures intended to protect free sexual orientation and sexual identity through specific educational initiatives and awareness-raising for all society, to facilitate documentation for transsexual people in line with their identity and to guarantee access to public services without discrimination ", - "values": [ - "Human rights education and training", - "Sexual Orientation and Gender Identity" - ] - }, - { - "text": "Consider acceding to the Convention on the Rights of Persons with Disabilities", - "values": [ - "Disabilities", - "International instruments" - ] - }, - { - "text": "Maintain its efforts to continue ensuring respect for freedom of religion and belief for all Cubans, including the right to choose one's belief at one's own discretion or not to profess any religion of any sort", - "values": [ - "Freedom of religion and belief" - ] - }, - { - "text": "Continue the implementation of the recommendations made by the Committee on the Elimination of Racial Discrimination (CERD) ", - "values": [ - "Racial discrimination", - "Treaty bodies" - ] - }, - { - "text": "Consider decriminalizing same-sex relations between consenting adults, with a view to ensuring the rights to privacy and non-discrimination ", - "values": [ - "Privacy", - "Sexual Orientation and Gender Identity" - ] - }, - { - "text": "Facilitate the access and integration of children with disabilities in public schools", - "values": [ - "Disabilities", - "Right to education", - "Rights of the Child" - ] - }, - { - "text": "Adopt efficient measures to stop child labour, especially in cases in which children work in a hazardous environment", - "values": [ - "Labour", - "Rights of the Child" - ] - }, - { - "text": "Continue enforcing measures to reduce violence against women ", - "values": [ - "Women's rights" - ] - }, - { - "text": "Continue to do all that is necessary to end statelessness, especially for those living in areas that have experienced armed conflict before peace", - "values": [ - "Statelessness and the right to nationality" - ] - }, - { - "text": "Strengthen the National Office against Racial Discrimination in terms of its capacity to provide assistance to victims and raise awareness", - "values": [ - "Racial discrimination" - ] - }, - { - "text": "Issue a standing invitation to the Special Procedures mandate holders of the Human Rights Council ", - "values": [ - "Special procedures" - ] - }, - { - "text": "Respect and protect the right of all groups and individuals to participate in legitimate political activities", - "values": [ - "Freedom of association and peaceful assembly" - ] - }, - { - "text": "Put an end to recruitment and use of child soldiers, especially on border areas, not consider them as deserters, and consider ratifying the Optional Protocol to CRC on the involvement of children in armed conflict ", - "values": [ - "International humanitarian law", - "International instruments", - "Rights of the Child" - ] - }, - { - "text": "Take the necessary steps to prevent the recruitment of girls and boys by the army and other armed forces, and put in place a mechanism for the disarmament, demobilization and reintegration of girls and boys who have been involved in the armed conflict", - "values": [ - "International humanitarian law", - "Rights of the Child" - ] - }, - { - "text": "Continue its efforts in the field of women participation in high level positions of decision-making and in all areas of society ", - "values": [ - "Women's rights" - ] - }, - { - "text": "Lift its ban over censored websites and revoke the newly-adopted law whick introduced an even stricter media censorship", - "values": [ - "Freedom of opinion and expression", - "Freedom of the press" - ] - }, - { - "text": "Continue to reinforce efforts to promote the rights of vulnerable groups such as women and children, especially orphaned and disabled children and child victims of trafficking and sexual exploitation", - "values": [ - "Rights of the Child", - "Trafficking", - "Women's rights" - ] - }, - { - "text": "Ensure that the equal right of women and girls to education is carried out in practice, and take steps to guarantee equal pay for equal work ", - "values": [ - "Right to education", - "Women's rights" - ] - }, - { - "text": "Proceed with a revision of national legislation to make the equality between men and women a reality", - "values": [ - "Women's rights" - ] - }, - { - "text": "Protect persons with mental disabilities and refer to justice those responsible for violations against them in psychiatric hospitals", - "values": [ - "Disabilities", - "Right to health" - ] - }, - { - "text": "Ensure that the new Media Law is in line with international standards", - "values": [ - "Freedom of the press" - ] - }, - { - "text": "Strengthen national and local initiatives aimed at protecting and promoting the universal human rights of all migrants and members of their families ", - "values": [ - "Migrants" - ] - }, - { - "text": "Continue to combat all forms of discrimination and racism in sports ", - "values": [ - "Racial discrimination" - ] - }, - { - "text": "Ensure effective and practical implementation of the Law on Domestic Violence and the law on the protection of children's comprehensive development", - "values": [ - "Rights of the Child", - "Women's rights" - ] - }, - { - "text": "Consider ratifying the International Covenant on Economic, Social and Cultural Rights, the Optional Protocol to the Convention against Torture, and the 1951 Refugee Convention and the 1967 Protocol thereto ", - "values": [ - "Asylum-seekers - refugees", - "Detention", - "ESC rights - general", - "International instruments", - "Torture and other CID treatment" - ] - }, - { - "text": "Amend discriminatory provisions based on sexual orientation or gender identity, in particular with regard to equality of access to services and public office", - "values": [ - "Sexual Orientation and Gender Identity" - ] - }, - { - "text": "Study the possibility of developing and adopting in the near future a national action plan on the rights of the child ", - "values": [ - "Rights of the Child" - ] - }, - { - "text": "Continue the actions aimed at fighting trafficking in persons", - "values": [ - "Trafficking" - ] - }, - { - "text": "Issue and implement standing invitation to special procedures mandate-holders.", - "values": [ - "Special procedures" - ] - }, - { - "text": "Formulate and implement a national action plan against racism and xenophobia, with ample participation on the part of civil society and input from the Spanish observatory on racism and xenophobia ", - "values": [ - "Civil society", - "Racial discrimination" - ] - }, - { - "text": "Ratify the Convention relating to the status of stateless persons and the Convention relating to the reduction of statelessness ", - "values": [ - "International instruments", - "Statelessness and the right to nationality" - ] - }, - { - "text": "Expand efforts to combat human trafficking and account for other forms of trafficking, such as labour exploitation and forced begging", - "values": [ - "Labour", - "Trafficking" - ] - }, - { - "text": "Provide sufficient resources for gender-sensitive training of law enforcement officers and of the judiciary to improve the investigation and prevention of violence against women", - "values": [ - "Human rights education and training", - "Women's rights" - ] - }, - { - "text": "Continue to strengthen the national legislative framework in favour of the most vulnerable groups such as women, children, and disabled", - "values": [ - "Disabilities", - "Rights of the Child", - "Women's rights" - ] - }, - { - "text": "Adopt further appropriate measures in order to improve the quality of education for the pupils belonging to national minorities, especially for those learning in lesser used languages ", - "values": [ - "Minorities", - "Right to education" - ] - }, - { - "text": "Adopt appropriate measures to disseminate widely and ensure full observance of the Declaration on Human Rights Defenders. The Declaration, as well as all other human rights standards, should in particular be made available to schools and institutions of higher education ", - "values": [ - "Human rights defenders" - ] - }, - { - "text": "Adopt measures so that traditional stereotypes referring to the roles of men and women in society and family can be overcome ", - "values": [ - "Women's rights" - ] - }, - { - "text": "Strengthen its legal framework, institutions and instruments aimed at guaranteeing that those responsible for crimes of extrajudicial executions are subjected to fair procedure and, if convicted, punished ", - "values": [ - "Extrajudicial executions" - ] - }, - { - "text": "Adopt and implement appropriate, efficient measures to combat child prostitution and pornography, including the ratification of the Optional Protocol to CRC on the sale of children, child prostitution and child pornography ", - "values": [ - "International instruments", - "Rights of the Child", - "Trafficking" - ] - }, - { - "text": "Accede to the UNESCO Convention against Discrimination in Education", - "values": [ - "International instruments", - "Right to education" - ] - }, - { - "text": "Adopt measures to restrict the recruitment of children in the conflict and to ensure their demobilization and integration into society. Pursue and punish all those responsible for violations of the human rights of children, in particular for killings and mutilations", - "values": [ - "International humanitarian law", - "Rights of the Child" - ] - }, - { - "text": "Enact legislation that will effectively protect women from exclusion and violence", - "values": [ - "Women's rights" - ] - }, - { - "text": "Increase its efforts to enable the people of Mozambique to benefit from clean, high-quality drinking water as well as sanitation infrastructure ", - "values": [ - "Right to water and sanitation" - ] - }, - { - "text": "Continue the efforts towards improving the quality of education to ensure that every child has access to primary education, as well as to promote gender equality in education", - "values": [ - "Right to education", - "Rights of the Child", - "Women's rights" - ] - }, - { - "text": "Step up its employment stimulation measures and enhance access of the poor to basic services, including sanitation, health and education", - "values": [ - "Right to education", - "Right to health", - "Right to water and sanitation" - ] - }, - { - "text": "Repeal any law limiting the right to free expression in the media", - "values": [ - "Freedom of opinion and expression", - "Freedom of the press" - ] - }, - { - "text": "Establish measure to effectively address discrimination and violence against women and girls", - "values": [ - "Rights of the Child", - "Women's rights" - ] - }, - { - "text": "The establishment of the human rights governance, promotion and protection institutions provided for in the Constitution.", - "values": [ - "National Human Rights Institution" - ] - }, - { - "text": "Adopt a comprehensive national plan to combat all forms of violence against women ", - "values": [ - "Women's rights" - ] - }, - { - "text": "Intensify efforts to promote women's rights and fight violence and discrimination against women ", - "values": [ - "Women's rights" - ] - }, - { - "text": "Fully cooperate with the competent humanitarian bodies in order to secure the protection of internally displaced children ", - "values": [ - "Internally displaced persons", - "Rights of the Child" - ] - }, - { - "text": "Step up efforts directed towards the improvement of conditions and treatments of asylum-seekers and refugees", - "values": [ - "Asylum-seekers - refugees" - ] - }, - { - "text": "Ensure full compliance with all obligations assumed under the International Covenant on Civil and Political Rights as well as under all other international human rights treaties to which it is a Party and revise domestic legislation that may still be incompatible with these obligations.", - "values": [ - "CP rights - general", - "International instruments" - ] - }, - { - "text": "Continue its efforts to raise public awareness and to include human rights education in the school curricula", - "values": [ - "Human rights education and training" - ] - }, - { - "text": "Continue the improvement of the detention system ", - "values": [ - "Detention" - ] - }, - { - "text": "Take action, through the appropriate procedures, to ensure that the Anti-Terrorist Law does not undermine the rights of indigenous peoples and include those rights in the legal and administrative structure of the country ", - "values": [ - "Counter-terrorism", - "Indigenous peoples" - ] - }, - { - "text": "Pass and implement legislation to address violence against women", - "values": [ - "Women's rights" - ] - }, - { - "text": "Grant independent international observers access to detention facilities upon reasonable advance notice, as well as the right to speak with inmates in private, in order to monitor compliance with international obligations regarding treatment of prisoners", - "values": [ - "Detention" - ] - }, - { - "text": "Reduce the high rate of maternal mortality", - "values": [ - "Right to health", - "Women's rights" - ] - }, - { - "text": "Cyprus is committed to completing the process of ratification in the near future, including the Optional Protocol to the Convention on the Rights of the Child on the involvement of children in armed conflict (OP-CRC-AC).", - "values": [ - "International humanitarian law", - "International instruments", - "Rights of the Child" - ] - }, - { - "text": "Initiate a comprehensive process of legislative reform in order to guarantee equality between men and women as well as to define and prohibit discrimination on the basis of sex and gender in the public and private spheres", - "values": [ - "Sexual Orientation and Gender Identity" - ] - }, - { - "text": "Continue with judicial reform, improving the capacity of the penal system to combat impunity", - "values": [ - "Detention", - "Impunity", - "Justice" - ] - }, - { - "text": "Strengthen legislative and administrative measures on discrimination and violence against women", - "values": [ - "Women's rights" - ] - }, - { - "text": "Step up its efforts in order to prevent gender-based violence, punish perpetrators and provide the victims with adequate remedies, inter alia by enhancing the resources devoted to the Ministry of Women and establishing the Units for the Integrated Assistance for Victims in all provinces ", - "values": [ - "Women's rights" - ] - }, - { - "text": "Make it easier for displaced persons in Lebanon, and their children, to obtain legal status in order to prevent any violation of fundamental rights recognised in treaties to which Lebanon is party, and develop a legal framework defining and protecting the rights and freedoms of those individuals", - "values": [ - "Internally displaced persons", - "International instruments", - "Rights of the Child" - ] - }, - { - "text": "Ratify and implement the second Optional Protocol of the International Covenant on Civil and Political Rights, aiming at the abolition of the death penalty ", - "values": [ - "Death penalty", - "International instruments" - ] - }, - { - "text": "Take further measures to bring to justice all perpetrators of abuse in order to eradicate impunity for those who commit human rights violations", - "values": [ - "Impunity" - ] - }, - { - "text": "Take all necessary steps to address the evil of xenophobia through legislation and greater public awareness programmes ", - "values": [ - "Human rights education and training", - "Racial discrimination" - ] - }, - { - "text": "Establishing a national human rights institution for the promotion and protection of human rights in accordance with the Paris Principles", - "values": [ - "National Human Rights Institution" - ] - }, - { - "text": "Establish a NHRI in accordance with the Paris Principles.", - "values": [ - "National Human Rights Institution" - ] - }, - { - "text": "Continue to seek technical assistance to address the specific problem of the disproportionately negative impact of climate change on women and children ", - "values": [ - "Environment", - "Rights of the Child", - "Women's rights" - ] - }, - { - "text": "Ratify the OP-CEDAW.", - "values": [ - "International instruments", - "Women's rights" - ] - }, - { - "text": "Take measures to guarantee the exercise of the right to freedom of association and peaceful assembly and to promote and facilitate the activities of NGOs", - "values": [ - "Civil society", - "Freedom of association and peaceful assembly", - "Freedom of opinion and expression" - ] - }, - { - "text": "Step up the implementation of existing legislation against sexual exploitation of children and adolescents in the country, as well as in its territorial waters, including through raising public awareness on how to prevent and fight this unacceptable practice", - "values": [ - "Human rights education and training", - "Rights of the Child" - ] - }, - { - "text": "Take measures to ensure the effective protection of the right to freedom of expression and information, as well as the independence of the media, and release all human rights defenders, journalists, and religious and political dissidents detained for the peaceful expression of their opinion ", - "values": [ - "Freedom of opinion and expression", - "Freedom of religion and belief", - "Freedom of the press", - "Human rights defenders" - ] - }, - { - "text": "Review any adopted or proposed counter-terrorism legislation, policies or programmes to provide adequate safeguards against human rights violations and minimize any possible stigmatizing effect such measures might have on certain segments of the population", - "values": [ - "Counter-terrorism" - ] - }, - { - "text": "Continue efforts to protect fundamental freedoms and human rights and to protect citizens ", - "values": [ - "General" - ] - }, - { - "text": "Establish an independent national human rights institution in conformity with the Paris Principles to deal with all human rights matters, including the rights of the child ", - "values": [ - "National Human Rights Institution", - "Rights of the Child" - ] - }, - { - "text": "Accede to the international treaties on human rights and ratify OPCRC-AC and OP-CRC-SC", - "values": [ - "International humanitarian law", - "International instruments", - "Rights of the Child", - "Trafficking" - ] - }, - { - "text": "Consider enacting a law against racial discrimination and continue efforts to put an end to racism and hate speech", - "values": [ - "Racial discrimination" - ] - }, - { - "text": "Consider undertaking necessary steps leading to ratification of the parent-umbrella United Nations Convention on the Rights of the Child and CEDAW respectively", - "values": [ - "International instruments", - "Rights of the Child", - "Women's rights" - ] - }, - { - "text": "Evaluate the impact of recent changes made to policies and legislation, which seem to restrict the international protection regime for asylum seekers and refugees, and ensure that all persons in need of international protection receive fair treatment and that refugees\u2019 rights to reunification are respected", - "values": [ - "Asylum-seekers - refugees" - ] - }, - { - "text": "Improve the effectiveness and accessibility of domestic remedies against racial discrimination", - "values": [ - "Racial discrimination" - ] - }, - { - "text": "Step up the efforts to combat discrimination against women at all levels", - "values": [ - "Women's rights" - ] - }, - { - "text": "Endeavour to protect the security and rights of persons belonging to minorities, to bring to justice individuals and organizations that violate their rights and to ensure fair and proportional representation of all minorities in security apparatuses, governance and decision-making bodies at regional and federal levels", - "values": [ - "Minorities" - ] - }, - { - "text": "Establish and effectively apply the legal provisions authorizing abortion, in cases when pregnancies are due to rape or incest, or when it is established that the foetus is not viable, or when the life or the health of the mothers is at risk", - "values": [ - "Right to health", - "Rights of the Child", - "Women's rights" - ] - }, - { - "text": "Conduct environmental impact studies when granting mining concessions and promote prior consultation and transparency measures during these concessions", - "values": [ - "Business and human rights", - "Environment" - ] - }, - { - "text": "Ratify ICESCR and the International Convention for the Protection of All Persons Against Enforced Disappearance (CED) ", - "values": [ - "ESC rights - general", - "Enforced disappearances", - "International instruments" - ] - }, - { - "text": "Take appropriate measures to consider and implement the recommendations of the Special Rapporteur on the situation of human rights in Belarus", - "values": [ - "Special procedures" - ] - }, - { - "text": "Accelerate on-going efforts to ensure access to clean and safe water, and to healthcare, countrywide", - "values": [ - "Right to health", - "Right to water and sanitation" - ] - }, - { - "text": "Ratify the Convention against Torture and other Cruel, Inhuman or Degrading Treatment or Punishment", - "values": [ - "International instruments", - "Torture and other CID treatment" - ] - }, - { - "text": "Ensure that all allegations of torture are effectively and impartially investigated and ensure that perpetrators are punished accordingly ", - "values": [ - "Torture and other CID treatment" - ] - }, - { - "text": "Put an end to kidnapping and enforced disappearance of persons, whatever their country of origin ", - "values": [ - "Enforced disappearances" - ] - }, - { - "text": "Take more effective measures to combat racism, racial discrimination and xenophobia against minority groups in the country, in particular the Muslims ", - "values": [ - "Freedom of religion and belief", - "Migrants", - "Minorities", - "Racial discrimination" - ] - }, - { - "text": "Bring before a court all persons who are detained under an administrative detention order and have them properly charged with a crime in accordance with international standards", - "values": [ - "Detention" - ] - }, - { - "text": "Lift discriminatory provisions against women in its domestic law, particularly in the Civil and Penal Code and in the Education Act", - "values": [ - "Women's rights" - ] - }, - { - "text": "Consider introducing incentives for better political participation of minorities and immigrants with a view to upholding their integration into society", - "values": [ - "Migrants", - "Minorities" - ] - }, - { - "text": "Consider taking the necessary steps to ratify or accede to the outstanding main international human rights instruments and treaties", - "values": [ - "International instruments" - ] - }, - { - "text": "Step up efforts to prevent and combat trafficking in persons, in particular women and children", - "values": [ - "Rights of the Child", - "Trafficking", - "Women's rights" - ] - }, - { - "text": "Adopt a moratorium on the death penalty and put an end to public executions ", - "values": [ - "Death penalty" - ] - }, - { - "text": "Continue efforts in combating discrimination against persons belonging to a Russian-speaking minority", - "values": [ - "Minorities", - "Racial discrimination" - ] - }, - { - "text": "Strengthen normative standards and measures aimed at eliminating domestic violence perpetrated against women", - "values": [ - "Rights of the Child", - "Women's rights" - ] - }, - { - "text": "Take concrete measures ensuring the freedom of expression, independence of the media, protection of journalists, and adopt legislative and other measures to prevent censorship", - "values": [ - "Freedom of opinion and expression", - "Freedom of the press" - ] - }, - { - "text": "Facilitate and ensure registration of all children born in Albania ", - "values": [ - "Rights of the Child" - ] - }, - { - "text": "Pay particular attention to indigenous Pygmy peoples, in order to guarantee their access to land and natural resources ", - "values": [ - "Environment", - "Indigenous peoples", - "Right to land" - ] - }, - { - "text": "Ensure that everyone including human rights defenders can peacefully exercise their right to freedom of expression in conformity with obligations under the ICCPR.", - "values": [ - "Freedom of opinion and expression", - "Human rights defenders", - "International instruments" - ] - }, - { - "text": "Become party to the Optional Protocols to the International Covenant on Civil and Political Rights ", - "values": [ - "CP rights - general", - "Death penalty", - "International instruments" - ] - }, - { - "text": "Continue to increase and consolidate social programmes aimed at combating poverty and social exclusion", - "values": [ - "Poverty" - ] - }, - { - "text": "Continue to implement measures and programmes to promote and protect the rights of children, in particular the right to education and the right to health ", - "values": [ - "Right to education", - "Right to health", - "Rights of the Child" - ] - }, - { - "text": "Make proportional use of force during protests and proceed to the immediate release of political prisoners", - "values": [ - "Detention", - "Freedom of association and peaceful assembly", - "Freedom of opinion and expression" - ] - }, - { - "text": "Implement the legislation and policies to address all forms of discrimination and disability", - "values": [ - "Disabilities" - ] - }, - { - "text": "Continue its measures to protect the rights of persons with disabilities", - "values": [ - "Disabilities" - ] - }, - { - "text": "Consolidate economic initiatives aimed at empowering its people, especially those who were underprivileged under the Apartheid system ", - "values": [ - "Development" - ] - }, - { - "text": "Adopt measures to eliminate domestic violence, rape and sexual harassment, ensuring the safety of victims and the timely response to complaints, as well as access to free legal assistance", - "values": [ - "Rights of the Child", - "Women's rights" - ] - }, - { - "text": "Ensure that all people in Bosnia Herzegovina including returnees, people with disabilities or Roma, have access to public services, including health care and education without discrimination", - "values": [ - "Disabilities", - "Minorities", - "Right to education", - "Right to health" - ] - }, - { - "text": "Establish a gender quota system to increase women representation in the National Assembly", - "values": [ - "Women's rights" - ] - }, - { - "text": "Increase support for the Commission for Equality and Against Racial Discrimination ", - "values": [ - "Racial discrimination" - ] - }, - { - "text": "Establish a separate and independent institution for safeguarding children rights ", - "values": [ - "Rights of the Child" - ] - }, - { - "text": "Adopt all necessary measures to remove the restrictions which prevent the full enjoyment of the right to freedom of expression and association and to amend the "Suppression of Terrorism Act" of 2008 and other relevant legislation in line with international standards", - "values": [ - "Counter-terrorism", - "Freedom of association and peaceful assembly", - "Freedom of opinion and expression" - ] - }, - { - "text": "Strengthen efforts in implementing the regulatory media policy to ensure access to information and freedom of opinion and expression, including through capacity-building of relevant parties", - "values": [ - "Freedom of opinion and expression", - "Freedom of the press" - ] - }, - { - "text": "Withdraw its reservations on the Convention on the Elimination of all Forms of Discrimination against Women and incorporate all the provisions of that Convention into national law", - "values": [ - "International instruments", - "Women's rights" - ] - }, - { - "text": "Take effective measures to protect all children against torture, cruel, inhuman and degrading treatment as well as investigating and punishing those responsible ", - "values": [ - "Rights of the Child", - "Torture and other CID treatment" - ] - }, - { - "text": "Continue to fight poverty with the support and cooperation of the international community ", - "values": [ - "Poverty", - "Technical assistance and cooperation" - ] - }, - { - "text": "Circulate and implement the United Nations Rules for the Treatment of Women Prisoners and Non-custodial Measures for Women Offenders (the Bangkok Rules), as part of its development of the correctional facility and seek appropriate assistance from OHCHR and the United Nations Office on Drugs and Crime for the implementation ", - "values": [ - "Detention", - "Technical assistance and cooperation", - "Women's rights" - ] - }, - { - "text": "Increase its effort in promoting women's empowerment and capacity building through public awareness, education and skill training ", - "values": [ - "Human rights education and training", - "Women's rights" - ] - }, - { - "text": "Reinforce the measures to combat FGM.", - "values": [ - "Rights of the Child", - "Torture and other CID treatment", - "Women's rights" - ] - }, - { - "text": "Continue with the design and implementation of programmes fighting poverty and extreme poverty with a human rights approach to overcome structural inequality ", - "values": [ - "Poverty" - ] - }, - { - "text": "Continue giving special priority to the care of street children", - "values": [ - "Rights of the Child" - ] - }, - { - "text": "Make the most of the programmes of assistance available, especially at the level of the United Nations system, for the achievement of the national priorities defined in terms of human rights ", - "values": [ - "General" - ] - }, - { - "text": "Continue to work in favour of women's rights, including the fight against early marriages, respecting the rights of widows, and eradicating female genital mutilation and respecting sexual and reproductive rights", - "values": [ - "Right to health", - "Rights of the Child", - "Torture and other CID treatment", - "Women's rights" - ] - }, - { - "text": "Ensure the availability of safe abortions, at a minimum, in cases where the life or health of the pregnant woman or girl is at risk, and in cases where the pregnancy is the result of rape", - "values": [ - "Rights of the Child", - "Women's rights" - ] - }, - { - "text": "Conduct a full review of the Anti-Terrorism Proclamation, amending the law as necessary to ensure that it strengthens the rule of law and is applied apolitically and in full compliance with Ethiopia's international human rights obligations ", - "values": [ - "Counter-terrorism", - "International instruments" - ] - }, - { - "text": "Continue its efforts to promote gender equality, equal treatment and non-discrimination", - "values": [ - "Women's rights" - ] - }, - { - "text": "Facilitate the adoption of the new Code of Criminal Procedure that includes the notification of charges, the right to be assisted by counsel, compulsory medical examination and notification of family members, with a view to strengthening the rights of those in police custody", - "values": [ - "Justice" - ] - }, - { - "text": "Redouble efforts and pursue activities aimed at ensuring respect for environmental legislation ", - "values": [ - "Environment" - ] - }, - { - "text": "Intensify efforts to address discrimination on the basis of sexual orientation or gender identity, and investigate and prosecute crimes against lesbian, gay, bisexual and transgender (LGBT) community members ", - "values": [ - "Sexual Orientation and Gender Identity" - ] - }, - { - "text": "Continue to promote its ambitious goals in education and improve the ratio of women in leading positions in the country.", - "values": [ - "Right to education", - "Women's rights" - ] - }, - { - "text": "Provide regular updates to the Human Rights Council on the implementation of the recommendations adopted during the review ", - "values": [ - "UPR process" - ] - }, - { - "text": "Fully align its national legislation with the Rome Statute of the International Criminal Court, including incorporating provisions to cooperate promptly and fully with the International Criminal Court, and investigate and prosecute genocide, crimes against humanity and war crimes effectively, and also accede to the Agreement on Privileges and Immunities of the International Criminal Court ", - "values": [ - "International instruments", - "Justice" - ] - }, - { - "text": "Increase the minimum age of marriage which is 15 for girls and 16 for boys to an age which is in line with international standards", - "values": [ - "Rights of the Child" - ] - }, - { - "text": "Strengthen the judiciary and guarantee its independence.", - "values": [ - "Justice" - ] - }, - { - "text": "Implement policies which guarantee better protection for asylum seekers and refugees", - "values": [ - "Asylum-seekers - refugees" - ] - }, - { - "text": "Redouble its efforts on HIV/AIDS response, particularly on prevention strategies and to take steps to address discrimination against persons living with HIV/AIDS", - "values": [ - "HIV - Aids" - ] - }, - { - "text": "Continue efforts to combat discrimination", - "values": [ - "Other" - ] - }, - { - "text": "Continue to take effective measures to combat all forms of discrimination, including racial superiority and hatred, and to eliminate gender stereotypes", - "values": [ - "Racial discrimination", - "Women's rights" - ] - }, - { - "text": "Ratify the Rome Statute of ICC and the Agreement on the Privileges and Immunities of ICC and to fully align its national legislation with all the obligations under the Statute ", - "values": [ - "International instruments", - "Justice" - ] - }, - { - "text": "Take necessary measures to ensure effective implementation of laws guaranteeing free registration of births nationwide, including by educating families and communities on the importance of birth registration in order to contribute, among other things, to eliminating the practice of early and forced marriage and increase access to education, health care and other public services", - "values": [ - "Rights of the Child", - "Statelessness and the right to nationality", - "Women's rights" - ] - }, - { - "text": "Favourably consider ratifying the core international human rights treaties within a reasonable period of time and participating more fully with international human rights mechanisms, especially special procedures of the Human Rights Council", - "values": [ - "International instruments", - "Special procedures", - "Treaty bodies", - "UPR process" - ] - }, - { - "text": "Consider establishing an independent mechanism for monitoring children's rights and providing necessary financial resources for its functioning", - "values": [ - "Rights of the Child" - ] - }, - { - "text": "Continue the efforts towards improving the human rights conditions in Congo, especially through integrating human rights into the educational system in order to raise the awareness about human rights", - "values": [ - "Human rights education and training" - ] - }, - { - "text": "Finalize the process of ratification of the Rome Statute of the International Criminal Court", - "values": [ - "International instruments", - "Justice" - ] - }, - { - "text": "Favourably consider embarking on fundamental reforms to the judiciary to ensure its independence, impartiality and transparency with a view to strengthening democracy and the rule of law in the country", - "values": [ - "Justice" - ] - }, - { - "text": "Ensure that security forces and non-State actors responsible for human rights abuses, including human rights violations in 2011, are investigated and, where appropriate, prosecuted, and ratify the Rome State of the International Criminal Court ", - "values": [ - "Human rights violations by state agents", - "International instruments", - "Justice" - ] - }, - { - "text": "Provide girls who are minors with a mandatory psycho-social consultation before any termination of pregnancy", - "values": [ - "Right to health", - "Rights of the Child", - "Women's rights" - ] - }, - { - "text": "Continue its efforts for the promotion and protection of gender equality", - "values": [ - "Women's rights" - ] - }, - { - "text": "Take all necessary measures for the capacity building of the NHRC, the respect of its independence and autonomy as well as the implementation of its recommendations ", - "values": [ - "National Human Rights Institution" - ] - }, - { - "text": "Adopt the Affirmative Action Bill without further delay", - "values": [ - "Women's rights" - ] - }, - { - "text": "Accelerate the process of reform of the Ombudsman for Human Rights in order to comply with the Paris Principles", - "values": [ - "National Human Rights Institution" - ] - }, - { - "text": "Ensure that detention of civilians, especially children, is carried out in accordance with international law and standards and without any discrimination paying particular attention to the recommendations of the CRC", - "values": [ - "Detention", - "Rights of the Child", - "Treaty bodies" - ] - }, - { - "text": "Take steps to ensure that the freedoms of expression and association are fully respected as called for by the 16th Special Session of the Human Rights Council", - "values": [ - "Freedom of association and peaceful assembly", - "Freedom of opinion and expression" - ] - }, - { - "text": "Accelerate the adoption and full implementation at the federal, state and local levels of the Gender and Equal Opportunities Bill, and the Violence against Persons Prohibition Bill, in compliance with CEDAW provisions", - "values": [ - "International instruments", - "Women's rights" - ] - }, - { - "text": "Prevent the destruction of places of worship and cemeteries", - "values": [ - "Freedom of religion and belief" - ] - }, - { - "text": "Work on overcoming the obstacles related to economic problems and the scarcity of resources through cooperation with the international community and the United Nations so as to ensure the promotion and protection of human rights", - "values": [ - "General" - ] - }, - { - "text": "Ratify international human rights instruments, to which the country is not yet a party", - "values": [ - "International instruments" - ] - }, - { - "text": "Continue to combat all forms of discrimination still faced by women, notably those remaining in the Personal Statute Law in the areas of inheritance and child custody ", - "values": [ - "Women's rights" - ] - }, - { - "text": "Reinforce measures to prevent child sex tourism and to combat child pornography on the Internet", - "values": [ - "Rights of the Child" - ] - }, - { - "text": "Map out to what extent media owners seek to influence journalists and adopt appropriate measures to prevent the mixing of private interests with journalism.", - "values": [ - "Freedom of the press" - ] - }, - { - "text": "Review and amend all legislation and regulations relevant to birth registration and nationality to ensure their full conformity with the Convention on the Rights of the Child", - "values": [ - "International instruments", - "Rights of the Child", - "Statelessness and the right to nationality" - ] - }, - { - "text": "Take additional measures to combat intolerance, negative stereotyping and stigmatization, as well as discrimination, incitement to violence and violence against persons based on religion or belief, in line with Human Rights Council resolution 16/21", - "values": [ - "Freedom of religion and belief" - ] - }, - { - "text": "Develop a long-term plan to keep health personnel skilled and establish permanent training on this matter", - "values": [ - "Right to health" - ] - }, - { - "text": "Maintain the efforts for the effective protection of the rights of internally displaced persons, with special attention to women, children and persons with special needs", - "values": [ - "Internally displaced persons", - "Rights of the Child", - "Women's rights" - ] - }, - { - "text": "Consider inviting the United Nations to a workshop on follow-up to the UPR.", - "values": [ - "UPR process" - ] - }, - { - "text": "Further its endeavours with regard to the smooth and productive activities of the Inter-Racial and Religious Confidence Circles Steering Committees, and continue its efforts to strengthen social harmony in the country", - "values": [ - "Freedom of religion and belief" - ] - }, - { - "text": "Continue its efforts to promote education and training in human rights", - "values": [ - "Human rights education and training" - ] - }, - { - "text": "Recommended the legislative sanctioning of marital rape", - "values": [ - "Rights of the Child", - "Women's rights" - ] - }, - { - "text": "Address violence and hate speech against religious minorities", - "values": [ - "Freedom of religion and belief", - "Minorities", - "Racial discrimination" - ] - }, - { - "text": "Ensure that the provisions and the application of the Sharia Penal Code Order remain in strict compliance with human rights law, which includes the ban of any inhuman or degrading treatment or punishment ", - "values": [ - "International instruments", - "Torture and other CID treatment" - ] - }, - { - "text": "Give necessary attention to the safety of migrants and international staff deployed in the reception centres on the Greek islands", - "values": [ - "Migrants" - ] - }, - { - "text": "Adopt appropriate measures to ensure safety and protection of human rights defenders and take all necessary steps to ensure prosecution of all those responsible for violation of their rights", - "values": [ - "Human rights defenders" - ] - }, - { - "text": "Accelerate the enactment of the law on violence against women and the adoption of the international definition of gender-based violence", - "values": [ - "Women's rights" - ] - }, - { - "text": "Engage the civil society in the UPR follow-up process ", - "values": [ - "Civil society", - "UPR process" - ] - }, - { - "text": "Ensure the proper functioning of the juvenile justice system in compliance with international standards and to guarantee that minors are always heard in the presence of a legal representative ", - "values": [ - "Justice", - "Rights of the Child" - ] - }, - { - "text": "Include the study of human rights in the curriculum of the various stages of free education provided in state institutions", - "values": [ - "Human rights education and training" - ] - }, - { - "text": "Ratify the Convention against Torture in a timely fashion ", - "values": [ - "International instruments", - "Torture and other CID treatment" - ] - }, - { - "text": "Implement public awareness campaigns on discrimination based on sexual preference ", - "values": [ - "Human rights education and training", - "Sexual Orientation and Gender Identity" - ] - }, - { - "text": "Intensify efforts to eliminate, to a large extent, all possible forms of violence against children and institute comprehensive policies that guarantee the rights of children, including children with disabilities, irrespective of gender", - "values": [ - "Disabilities", - "Rights of the Child" - ] - }, - { - "text": "Ensure access of all children to free birth registration", - "values": [ - "Rights of the Child", - "Statelessness and the right to nationality" - ] - }, - { - "text": "Introduce less restrictive and transparent regulations on the registration of political parties and public association ", - "values": [ - "Freedom of association and peaceful assembly" - ] - }, - { - "text": "Ratify the first optional protocol to ICCPR", - "values": [ - "CP rights - general", - "International instruments" - ] - }, - { - "text": "Intensify efforts to combat violence against women and domestic violence and ratify the Council of Europe Convention on Preventing and Combating Violence against Women and Domestic Violence [Istanbul Convention]", - "values": [ - "International instruments", - "Rights of the Child", - "Women's rights" - ] - }, - { - "text": "Submit all pending reports to the respective United Nations treaty bodies, namely, the Committee on Economic, Social and Cultural Rights, the Human Rights Committee and the Committee on the Rights of the Child", - "values": [ - "CP rights - general", - "ESC rights - general", - "Rights of the Child", - "Treaty bodies" - ] - }, - { - "text": "Continue exerting further efforts to improve access of victims of trafficking and sexual violence to complaints mechanisms and protection services", - "values": [ - "Trafficking" - ] - }, - { - "text": "Further the implementation of a comprehensive child protection system by investing more efforts in empowering the Council for the Rights of the Child and strengthening the role of the Deputy Ombudsman for the Rights of the Child", - "values": [ - "National Human Rights Institution", - "Rights of the Child" - ] - }, - { - "text": "Ensure that the best interests of the child are fully considered when deciding on asylum cases", - "values": [ - "Asylum-seekers - refugees", - "Rights of the Child" - ] - }, - { - "text": "Continue strengthening its successful social policies in favour of the most vulnerable sectors of its people, with the assistance and cooperation of the international community required by the country", - "values": [ - "Technical assistance and cooperation" - ] - }, - { - "text": "Continue reform and further training to ensure the end of ill-treatment during police detention ", - "values": [ - "Detention", - "Human rights education and training", - "Human rights violations by state agents", - "Torture and other CID treatment" - ] - }, - { - "text": "Continue efforts to combat discrimination through strengthening of national mechanisms ", - "values": [ - "Other" - ] - }, - { - "text": "Further pursue policies and programmes which aim to improve the quality of social services, including health services and education ", - "values": [ - "Right to education", - "Right to health" - ] - }, - { - "text": "Ratify the other international conventions on human rights to which it is not a party, in particular the convention relating to the rights of migrant workers and members of their families", - "values": [ - "International instruments", - "Labour", - "Migrants" - ] - }, - { - "text": "The RMI is a party to the Convention on the Rights of the Child (CRC) and the Convention on the Elimination of all Forms of Discrimination Against Women (CEDAW). The Women in Development Office and the Child Rights Office have been set up under the Ministry of Internal Affairs to implement the provisions of both conventions and ensure the fulfillment of RMI's obligation. The RMI submitted its initial country report as well as its 2nd Periodic Report to the UN Committee on the Rights of the Child, but has yet to do so with respect to CEDAW. Although the RMI has ratified only 2 of the core human rights conventions, it is envisaged that the RMI will be in a better position to ratify other conventions. The fact of the matter is, however, that due to capacity and resource constraints, full implementation of the 2 human rights conventions ratified thus far has been difficult already. In the same token, it should be noted that where the construction of a written law is open to more than one interpretation, an interpretation which is consistent with the RMI's international obligations will be preferred. The goal to ratify other human rights conventions remains nevertheless.", - "values": [ - "International instruments", - "Rights of the Child", - "Treaty bodies", - "Women's rights" - ] - }, - { - "text": "Commit to the principle of non-intervention in the internal affairs of other States as it is related to the achievement of social, economic, cultural and political development of all States", - "values": [ - "ESC rights - general" - ] - }, - { - "text": "Continue taking measures to eradicate gender discrimination and to promote effective equality and the overcoming of traditional stereotypes, for instance through awareness raising campaigns or programs at the education field", - "values": [ - "Human rights education and training", - "Women's rights" - ] - }, - { - "text": "Build up, in cooperation with relevant United Nations bodies, an efficient and independent judiciary ", - "values": [ - "Justice", - "Technical assistance and cooperation" - ] - }, - { - "text": "Improve the situation of minorities in the country", - "values": [ - "Minorities" - ] - }, - { - "text": "Increase the job quota for people with disabilities", - "values": [ - "Disabilities", - "Labour" - ] - }, - { - "text": "Effectively implement its female genital mutilation ban while giving young girls proper information about this prohibition", - "values": [ - "Rights of the Child", - "Torture and other CID treatment", - "Women's rights" - ] - }, - { - "text": "Continue the effective implementation of the national plan of action for prevention, assistance and eradication of violence against women 2017-2019", - "values": [ - "Women's rights" - ] - }, - { - "text": "A policy that takes account of Gabon's treaty-related commitments and the effective application of its laws. ", - "values": [ - "International instruments" - ] - }, - { - "text": "Put an end, de jure and de facto, to the practice of corporal punishments in traditional judicial systems", - "values": [ - "Torture and other CID treatment" - ] - }, - { - "text": "Consider ratification of the Rome Statute of the International Criminal Court (ICC)", - "values": [ - "International instruments", - "Justice" - ] - }, - { - "text": "Continue the comprehensive reforms that Yemen committed to in the areas of building strong and effective institutions, strengthening the rule of law and promoting human rights ", - "values": [ - "Justice" - ] - }, - { - "text": "Continue consolidating women\u2019s determined participation in public affairs", - "values": [ - "Women's rights" - ] - }, - { - "text": "Take steps to ensure that the right to peaceful assembly is not hindered", - "values": [ - "Freedom of association and peaceful assembly" - ] - }, - { - "text": "Strengthen further already existing anti-discriminatory measures and laws", - "values": [ - "Other" - ] - }, - { - "text": "Intensify the efforts in the investigation of pending allegations of serious human rights and international humanitarian law violations by all parties in the armed conflict", - "values": [ - "International humanitarian law", - "International instruments" - ] - }, - { - "text": "Implement reforms to ensure everyone has a right to the enjoyment of the highest attainable standard of health in Poland ", - "values": [ - "Right to health" - ] - }, - { - "text": "Extend invitations to the thematic special procedures particularly to those that have requested to visit the country.", - "values": [ - "Special procedures" - ] - }, - { - "text": "Continue working on the harmonization of its legislative domestic framework with the international human rights instruments to which it is a party", - "values": [ - "International instruments" - ] - }, - { - "text": "Ratify-accede-adhere the International Convention on the Protection of the Rights of All Migrant Workers and Members of their Families. ", - "values": [ - "International instruments", - "Labour", - "Migrants" - ] - }, - { - "text": "Take measures to prevent violence against women and girls, particularly by the development of a strategy for protection and social reintegration in order to reduce child trafficking and sexual abuse", - "values": [ - "Rights of the Child", - "Trafficking", - "Women's rights" - ] - }, - { - "text": "Continue to prioritize its work with the ILO on a Joint Action Plan on Child Soldiers to progress the implementation of Resolution 1612", - "values": [ - "International humanitarian law", - "Rights of the Child" - ] - }, - { - "text": "Ratify the ICERD, ICCPR, ICESCR and CAT", - "values": [ - "CP rights - general", - "ESC rights - general", - "International instruments", - "Racial discrimination", - "Torture and other CID treatment" - ] - }, - { - "text": "Continue efforts to bring its system of security certificates concerning immigration into compliance with international human rights standards", - "values": [ - "International instruments", - "Migrants" - ] - }, - { - "text": "Ensure equal rights and opportunities for children of immigrants, Roma and indigenous people, investigate allegations of bullying ethnic minority children in schools and take effective measures to protect them against prejudice, violence and stigmatization ", - "values": [ - "Indigenous peoples", - "Minorities", - "Racial discrimination", - "Right to education", - "Rights of the Child" - ] - }, - { - "text": "Take legislative action to ensure every person's right to freely choose one's religion in line with the Indian Constitution and effectively and swiftly prosecute acts of violence against religious minorities ", - "values": [ - "Freedom of religion and belief", - "Minorities" - ] - }, - { - "text": "Continue implementing the recommendations of the LLRC report and the report of the Panel of Expert in accordance with the Human Rights Council Resolution 19/2", - "values": [ - "Justice" - ] - }, - { - "text": "Ratify and fully align its national legislation with the Rome Statute of ICC", - "values": [ - "International instruments", - "Justice" - ] - }, - { - "text": "Strengthen mechanisms to guarantee independence and impartiality of the judiciary and law enforcement institutions by implementing precise rules on judicial appointments and police oversight", - "values": [ - "Justice" - ] - }, - { - "text": "Fully incorporate the Convention on the Elimination of Discrimination against Women into its domestic system", - "values": [ - "International instruments", - "Women's rights" - ] - }, - { - "text": "Ensure the rights of migrants and ethnic and religious minorities", - "values": [ - "Migrants", - "Minorities" - ] - }, - { - "text": "Ensure free movement of all citizens and refrain from punishing those who return or are involuntarily returned to the Democratic People's Republic of Korea from abroad", - "values": [ - "Freedom of movement" - ] - }, - { - "text": "Take measures to further promote the right to education, including by ensuring that school facilities and well-trained teachers are adequately present throughout the country", - "values": [ - "Right to education" - ] - }, - { - "text": "Strengthen measures against acts of racism and discrimination experienced in recent years on German soil ", - "values": [ - "Racial discrimination" - ] - }, - { - "text": "Formalize abolition of the death penalty by signing the Second Optional Protocol to the International Covenant on Civil and Political Rights", - "values": [ - "Death penalty", - "International instruments" - ] - }, - { - "text": "Consider instituting an action plan that defines measures to prevent and combat discrimination on different grounds in all levels of governance in the country", - "values": [ - "Other" - ] - }, - { - "text": "Continue its cooperation with the international community to provide voluntary assistance to disaster relief appeals", - "values": [ - "Technical assistance and cooperation" - ] - }, - { - "text": "Strengthen measures to confront the origins of violence and crime in its combat against organized crime and adopt a restorative justice approach for young people", - "values": [ - "Justice", - "Public security" - ] - }, - { - "text": "Strengthen the Ombudsman's capacity to investigate and act on allegations of discriminations in all its forms", - "values": [ - "Other" - ] - }, - { - "text": "Take appropriate steps to ratify various international treaties including the Second Optional Protocol to the International Covenant on Civil and Political Rights, aiming at the abolition of the death penalty (ICCPR-OP-2) and OP-CEDAW", - "values": [ - "Death penalty", - "International instruments", - "Women's rights" - ] - }, - { - "text": "Provide the National Human Rights Council with the necessary resources to enhance its independence to effectively carry out its functions", - "values": [ - "National Human Rights Institution" - ] - }, - { - "text": "Continue and intensify measures to improve gender equality in the country", - "values": [ - "Women's rights" - ] - }, - { - "text": "Intensify its efforts to ensure that all children are registered at birth, particularly in rural areas", - "values": [ - "Rights of the Child" - ] - }, - { - "text": "Continue to strengthen its efforts to ensure equality in marriage ", - "values": [ - "Women's rights" - ] - }, - { - "text": "Enhance the contacts and communication between Aboriginal and Torres Strait Islander communities and representatives of the law enforcement officials and enhance the training of those officials with respect to cultural specificities of the above communities ", - "values": [ - "Human rights education and training", - "Indigenous peoples" - ] - }, - { - "text": "Complete and implement effectively the national human rights action plan", - "values": [ - "General" - ] - }, - { - "text": "Review the treatment of all detainees ensuring that the human rights, safety and security of individuals in government custody are fully respected", - "values": [ - "Detention" - ] - }, - { - "text": "Ratify the ICPPED and adopt implementing legislation, as well as mechanisms to independently investigate and identify perpetrators of those crimes", - "values": [ - "Enforced disappearances", - "International instruments" - ] - }, - { - "text": "Ensure the rights of religious minorities, to enhance access to education in the language of minorities, to withdraw the reservation to article 27 of ICCPR regarding minorities and to ratify the Council of Europe Framework Convention for the Protection of National Minorities", - "values": [ - "Freedom of religion and belief", - "Minorities", - "Right to education" - ] - }, - { - "text": "Promote human rights education", - "values": [ - "Human rights education and training" - ] - }, - { - "text": "Sign the Second Optional Protocol to the International Covenant on Civil and Political Rights.", - "values": [ - "CP rights - general", - "International instruments" - ] - }, - { - "text": "Strive to move forward its reform programme in order to restore democracy as soon as possible", - "values": [ - "General" - ] - }, - { - "text": "Ratify OP-CAT and grant the International Committee of the Red Cross (ICRC) and other independent observers immediate, full and genuine access to all detention facilities ", - "values": [ - "Detention", - "International instruments", - "Torture and other CID treatment" - ] - }, - { - "text": "Take further measures to reduce the problem of gender inequality and strengthen the position of women within society ", - "values": [ - "Women's rights" - ] - }, - { - "text": "Consider raising (from 7 years old) the minimum age of criminal responsibility ", - "values": [ - "Justice", - "Rights of the Child" - ] - }, - { - "text": "Intensify its efforts to combat trafficking in persons and eliminate violence against persons ", - "values": [ - "Trafficking" - ] - }, - { - "text": "Withdraw its reservations to the Convention on the Rights of Persons with Disabilities (CRPD)", - "values": [ - "Disabilities", - "International instruments" - ] - }, - { - "text": "Take measures to ensure that all legislation is in full compliance with international human rights obligations", - "values": [ - "International instruments" - ] - }, - { - "text": "Make subject to review in civilian courts all convictions and sentences rendered by the National Security Courts ", - "values": [ - "Justice" - ] - }, - { - "text": "Promptly investigate and prosecute perpetrators of threats, extortion, and attacks on human rights defenders, vulnerable individuals, unionists, and potential beneficiaries of the Victims' Law ", - "values": [ - "Human rights defenders", - "Labour" - ] - }, - { - "text": "Give particular attention to training judges and police officers and improve care structures for children, with a view to improve its system of protection of children and justice for minors, and with this objective request support from the international community in general and technical assistance from OHCHR in particular.", - "values": [ - "Human rights education and training", - "Rights of the Child", - "Technical assistance and cooperation" - ] - }, - { - "text": "Adopt further measures to ensure birth registration of all children ", - "values": [ - "Rights of the Child", - "Statelessness and the right to nationality" - ] - }, - { - "text": "Investigate all cases of xenophobic violence and attacks against migrants, including any law enforcement involvement in those crimes", - "values": [ - "Human rights violations by state agents", - "Migrants", - "Racial discrimination" - ] - }, - { - "text": "Sign and ratify OP-CAT ", - "values": [ - "Detention", - "International instruments", - "Torture and other CID treatment" - ] - }, - { - "text": "As further gesture of its commitment, consider ratifying the International Convention on the Rights of Migrant Workers and Members of Their Families", - "values": [ - "International instruments", - "Labour", - "Migrants" - ] - }, - { - "text": "Ratify and implement CAT ", - "values": [ - "International instruments", - "Torture and other CID treatment" - ] - }, - { - "text": "Abolish the death penalty as soon as possible ", - "values": [ - "Death penalty" - ] - }, - { - "text": "Repeal the provisions of the Penal Code that criminalize sex between consenting people of the same sex and incitement to sexual relations between consenting people of the same sex", - "values": [ - "Sexual Orientation and Gender Identity" - ] - }, - { - "text": "Continue to harmonise its domestic laws with the international human rights conventions to which it is party, in line with democratic principles and fundamental freedoms and equality ", - "values": [ - "International instruments" - ] - }, - { - "text": "Bring labour law into full compliance with international labour standards, including the freedom of association", - "values": [ - "Freedom of association and peaceful assembly", - "Labour" - ] - }, - { - "text": "Conduct a thorough and credible investigation into all and any unresolved cases of disappearances of civil society workers in the Lao People's Democratic Republic ", - "values": [ - "Enforced disappearances", - "Human rights defenders" - ] - }, - { - "text": "Continue its efforts in combating trafficking in persons and protect the victims thereof within the framework of implementing its own national legislation and within the country's international commitments", - "values": [ - "Trafficking" - ] - }, - { - "text": "Immediately introduce a moratorium on executions and abolish the death penalty and ratify the Second Optional Protocol to the ICCPR", - "values": [ - "Death penalty", - "International instruments" - ] - }, - { - "text": "Continue its efforts to implement the outcomes from the political dialogue in 2017", - "values": [ - "General" - ] - }, - { - "text": "Continue to strengthen the protection of the rights of women and improve the social status of women in accordance with relevant international treaties ", - "values": [ - "International instruments", - "Women's rights" - ] - }, - { - "text": "Cooperate fully with ILO to end forced and child labour including in the military", - "values": [ - "Labour", - "Rights of the Child" - ] - }, - { - "text": "Consider ratifying the ICRMW ", - "values": [ - "International instruments", - "Labour", - "Migrants" - ] - }, - { - "text": "Continue efforts to combating customary practices which tolerate gender-based violence and discrimination against women", - "values": [ - "Women's rights" - ] - }, - { - "text": "Increase efforts to improve the quality and capacity of the judicial system", - "values": [ - "Justice" - ] - }, - { - "text": "Introduce amendments to its domestic legislation and administrative regulations aimed at eradicating all forms of discrimination against women, children, persons with disabilities and, in general, all groups in vulnerable situations ", - "values": [ - "Disabilities", - "Rights of the Child", - "Women's rights" - ] - }, - { - "text": "Renew the Memorandum of Understanding in order to intensify technical assistance and advisory services in the field of human rights", - "values": [ - "Technical assistance and cooperation" - ] - }, - { - "text": "Consider aligning its legislation with the provisions of article 18 of the International Covenant on Civil and Political Rights.", - "values": [ - "CP rights - general", - "International instruments" - ] - }, - { - "text": "Continue the empowerment of women and given them a bigger role in society", - "values": [ - "Women's rights" - ] - }, - { - "text": "Continue efforts to finalize the draft national action plan to combat racism, racial discrimination, xenophobia and related intolerance", - "values": [ - "Racial discrimination" - ] - }, - { - "text": "Continue providing support in the area of education, and improve quality and ensure equal opportunities in attaining this right, particularly for those children with special needs", - "values": [ - "Disabilities", - "Right to education", - "Rights of the Child" - ] - }, - { - "text": "Pass and implement legislation aimed specifically at eliminating all forms of child labour ", - "values": [ - "Labour", - "Rights of the Child" - ] - }, - { - "text": "Take measures aimed at establishing a national human rights institution with a broad mandate that promotes and protects human rights in accordance with the Paris Principles", - "values": [ - "National Human Rights Institution" - ] - }, - { - "text": "Continue to pay attention and provide the necessary services to priority groups in order to promote them and offer them the opportunity to participate effectively in the construction of a better future for the Iraqi people", - "values": [ - "Other" - ] - }, - { - "text": "Develop a permanent resettlement approach for internally displaced persons", - "values": [ - "Internally displaced persons" - ] - }, - { - "text": "Sign and ratify the Optional Protocol of the Convention against Torture and other cruel, inhuman or degrading treatment ", - "values": [ - "Detention", - "International instruments", - "Torture and other CID treatment" - ] - }, - { - "text": "Continue acceding to the core international human rights instruments", - "values": [ - "International instruments" - ] - }, - { - "text": "Invite women and other marginalized sectors to participate in other government consultative bodies ", - "values": [ - "Women's rights" - ] - }, - { - "text": "Ensure that the current budget cuts do not result in stifling the activities of human rights bodies", - "values": [ - "General" - ] - }, - { - "text": "Publish the statistics of the total number of executions since the introduction of its revision to allow measurement of the decline in numbers", - "values": [ - "Death penalty" - ] - }, - { - "text": "Continue its work towards the development of a National Disability Policy and a Child Labour Policy", - "values": [ - "Disabilities", - "Labour", - "Rights of the Child" - ] - }, - { - "text": "That the Ministry of Labour accelerate passing the executive decrees of the Labour Law to facilitate access to employment for Palestinians and open the prospect of work in all professional fields", - "values": [ - "Labour" - ] - }, - { - "text": "Consider acceding to core international human rights instruments", - "values": [ - "International instruments" - ] - }, - { - "text": "Comply with its international obligations, in particular the Fourth Geneva Convention, and comply with the resolutions on human rights of the United Nations", - "values": [ - "International humanitarian law", - "International instruments" - ] - }, - { - "text": "China is committed to keeping the channel open for people to express grievances and make complaints. It prohibits restriction of normal acts of petition in any forms, and would never allow suppression of petitioners or establishment of any forms of "black jails".", - "values": [ - "Detention", - "Freedom of opinion and expression" - ] - }, - { - "text": "Take all the necessary measures to criminalize violence against women and girls and adopt a committed and determined criminal policy to fight against this surge ", - "values": [ - "Rights of the Child", - "Women's rights" - ] - }, - { - "text": "Amend all laws which perpetuate discrimination against and marginalization of women.", - "values": [ - "Women's rights" - ] - }, - { - "text": "Further align its legislation and practice with the provisions of the Convention against Torture", - "values": [ - "International instruments", - "Torture and other CID treatment" - ] - }, - { - "text": "Strengthen its measures to prevent, suppress and eliminate discrimination against women and to combat domestic violence.", - "values": [ - "Rights of the Child", - "Women's rights" - ] - }, - { - "text": "Strengthen data collection and maintain disaggregated data to better understand the scale and severity of hate crimes towards women, immigrants, religious minorities, persons with disabilities, and children ", - "values": [ - "Disabilities", - "Freedom of religion and belief", - "Migrants", - "Minorities", - "Rights of the Child", - "Women's rights" - ] - }, - { - "text": "Continue to be persistent in rejecting any attempt to impose foreign values over Jordanian social principles", - "values": [ - "Other" - ] - }, - { - "text": "Try to minimize the negative consequences of drug-related crimes on human rights", - "values": [ - "Public security" - ] - }, - { - "text": "Step up measures to combat discriminatory acts and hate speech against certain minority groups, emphasizing prevention and follow-up", - "values": [ - "Minorities", - "Racial discrimination" - ] - }, - { - "text": "Carry out in-depth investigations of actions of some politicians during their electoral campaigns and statements that incite hatred", - "values": [ - "Racial discrimination" - ] - }, - { - "text": "Continue the efforts in view of the realization of the 2011-2013 programme on combatting human trafficking", - "values": [ - "Trafficking" - ] - }, - { - "text": "Ensure that the review of the press law follows the international standards on this subject, particularly with respect of the protection of journalists. ", - "values": [ - "Freedom of the press" - ] - }, - { - "text": "Protect and guarantee freedoms of expression and association in order to enable human rights defenders, NGOs and other civil society actors to be able to conduct their activities without fear of being endangered or harassed", - "values": [ - "Civil society", - "Freedom of association and peaceful assembly", - "Freedom of opinion and expression", - "Human rights defenders" - ] - }, - { - "text": "Abolish all discriminatory laws against women with regard to family and marriage.", - "values": [ - "Women's rights" - ] - }, - { - "text": "Strengthen the mechanisms of legal and social protection of children against violence, particularly sexual, of which they are victims ", - "values": [ - "Rights of the Child" - ] - }, - { - "text": "Review and amend its migration policy and legislation according to international human rights standards that seek to eliminate discriminatory policies ", - "values": [ - "International instruments", - "Migrants" - ] - }, - { - "text": "Take a policy in order to guarantee effective application of the law on real estate ownership and overcome the customs which make it impossible for women to inherit land", - "values": [ - "Women's rights" - ] - }, - { - "text": "Strengthen the effectiveness and the independence of the mechanisms to supervise the observance of human rights of inmates and persons under police custody with the aim of preventing ill-treatment ", - "values": [ - "Detention", - "Human rights violations by state agents", - "Torture and other CID treatment" - ] - }, - { - "text": "Eliminate provisions that favour discriminatory practices against persons based on their sexual orientation and gender identity", - "values": [ - "Sexual Orientation and Gender Identity" - ] - }, - { - "text": "Develop and adopt a plan of action for the promotion of gender equality ", - "values": [ - "Women's rights" - ] - }, - { - "text": "Continue promoting the rights of women and their inclusion in decision making processes", - "values": [ - "Women's rights" - ] - }, - { - "text": "Promote economic development, in a sustainable manner, to improve the quality of life of its population", - "values": [ - "Development" - ] - }, - { - "text": "Promote and strengthen international humanitarian cooperation and assistance so as to provide for programmes and mechanisms to contribute to the elimination of threats and limitations to human rights of refugee and displaced persons", - "values": [ - "Asylum-seekers - refugees", - "Internally displaced persons" - ] - }, - { - "text": "Take necessary measures to eliminate discriminatory practices in the labour market with respect to women", - "values": [ - "Labour", - "Women's rights" - ] - }, - { - "text": "Establish a monitoring mechanism to effectively ensure the protection of the rights of children\nin alternative care, including in monasteries ", - "values": [ - "Rights of the Child" - ] - }, - { - "text": "Step up the cooperation with the special procedures of the Human Rights Council and eventually consider extending a standing invitation to all special procedures mandate holders of the Human Rights Council", - "values": [ - "Special procedures" - ] - }, - { - "text": "Adopt the measures necessary to give full effect in the domestic legal order to the recommendations made by the Committee on Economic, Social and Cultural Rights", - "values": [ - "ESC rights - general", - "Treaty bodies" - ] - }, - { - "text": "Ensure that rural women participate in the decision-making process and have equal access to health services at the primary care level", - "values": [ - "Right to health", - "Women's rights" - ] - }, - { - "text": "Continue to take measures to promote and protect the rights of migrant workers even in situation of crisis", - "values": [ - "Labour", - "Migrants" - ] - }, - { - "text": "Redouble its efforts in combating contemporary forms of racism, racial discrimination, xenophobia and related intolerance including criminalizing hate speech, and all forms of incitement to hatred and violence", - "values": [ - "Racial discrimination" - ] - }, - { - "text": "Ratify the 1961 Convention on the Reduction of Statelessness, and take appropriate steps to ensure that the human rights of refugees and asylum seekers are fully respected, including with regard to access to health care and social welfare services", - "values": [ - "Asylum-seekers - refugees", - "ESC rights - general", - "International instruments", - "Right to health", - "Statelessness and the right to nationality" - ] - }, - { - "text": "Consider the possibility of signing and-or ratifying OP-CESCR ", - "values": [ - "ESC rights - general", - "International instruments" - ] - }, - { - "text": "Adopt specific legislation to combat domestic violence, provide protection for its victims, and swiftly prosecute perpetrators of such violence ", - "values": [ - "Rights of the Child", - "Women's rights" - ] - }, - { - "text": "Strengthen measures aimed at reducing serious inequalities in access to health, education and employment, which still exist despite the adoption of the Equality Act ", - "values": [ - "Development", - "Right to education", - "Right to health" - ] - }, - { - "text": "A greater use of alternative measures to detention facilities and penalties ", - "values": [ - "Detention" - ] - }, - { - "text": "Abolish incommunicado detention", - "values": [ - "Detention" - ] - }, - { - "text": "Ratify the International Convention for the Protection of All Persons from Enforced Disappearance, the Optional Protocol to the International Covenant on Economic, Social and Cultural Rights and the Statute of the International Criminal Court ", - "values": [ - "ESC rights - general", - "Enforced disappearances", - "International instruments", - "Justice" - ] - }, - { - "text": "Build or designate detention facilities for unaccompanied minors seeking immigration protection separate from adult facilities", - "values": [ - "Detention", - "Migrants", - "Rights of the Child" - ] - }, - { - "text": "Pursue its education programmes with a human rights approach", - "values": [ - "Human rights education and training" - ] - }, - { - "text": "Allow the Human Rights Council Special Rapporteur on the situation of human rights in Eritrea to visit the country without further delay and fully cooperate with her ", - "values": [ - "Special procedures" - ] - }, - { - "text": "Allocate additional funds to the National Human Rights Commission so that it can fulfil its mandate effectively", - "values": [ - "National Human Rights Institution" - ] - }, - { - "text": "Continue to adopt legal and administrative measures to combat corruption", - "values": [ - "Corruption" - ] - }, - { - "text": "Increase the necessary efforts to guarantee the inclusion of persons with disabilities in society, with special attention to access to education", - "values": [ - "Disabilities", - "Right to education" - ] - }, - { - "text": "Urgently take legal, statutory and administrative measures against child labour", - "values": [ - "Labour", - "Rights of the Child" - ] - }, - { - "text": "Adopt measures enabling more women's political representation", - "values": [ - "Women's rights" - ] - }, - { - "text": "Revise its legislation to bring it into line with the requirements of the Rome Statue, so that, for example, statutes of limitations are not applicable to crimes against humanity, ensuring that all persons regardless of their position or rank are liable to prosecution as well as including responsibility of superior officers for crimes against humanity and war crimes committed with their knowledge ", - "values": [ - "International instruments", - "Justice" - ] - }, - { - "text": "Spare no effort to expedite the eradication of the practice of female genital mutilation, availing itself of all existing measures at its disposal, such as criminal law, policies and awareness raising campaigns, among others ", - "values": [ - "Human rights education and training", - "Rights of the Child", - "Torture and other CID treatment", - "Women's rights" - ] - }, - { - "text": "Intensify efforts to conform the National Human Rights Commission to the Paris Principles and foresee it accreditation by the ICC ", - "values": [ - "National Human Rights Institution" - ] - }, - { - "text": "Further address the human rights challenges and continue its efforts in strengthening national mechanisms, particularly in the field of gender equality and non-discrimination and in the area of preventing and combating human trafficking and protecting the victims thereof", - "values": [ - "Trafficking", - "Women's rights" - ] - }, - { - "text": "Resolve the discriminatory provisions against women in relation to HIV prevention ", - "values": [ - "HIV - Aids", - "Women's rights" - ] - }, - { - "text": "Fully implement the reform of the residential care system for children, focusing especially on re-integration of children with disabilities", - "values": [ - "Disabilities", - "Right to health", - "Rights of the Child" - ] - }, - { - "text": "Ensure that the planned counter-extremism bill is in compliance with international law and does not single out certain organizations on the stereotypical assumption, based on general characteristics such as religion and the predominant race of the membership of the organization", - "values": [ - "Freedom of religion and belief", - "Racial discrimination" - ] - }, - { - "text": "Remove all reference to the death penalty in the Penal Code and commute all death sentences into alternative sentences", - "values": [ - "Death penalty" - ] - }, - { - "text": "Continue implementing the second national human rights action plan ", - "values": [ - "General" - ] - }, - { - "text": "Proceed to the ratification of International Convention for the Protection of All Persons from Enforced Disappearance as soon as possible and fully recognize the competence of the Committee on Enforced Disappearance, as provided for in articles 31 and 32 of the Convention ", - "values": [ - "Enforced disappearances", - "International instruments" - ] - }, - { - "text": "Enact specific legislation to put in place comprehensive measures to prevent and address violence against women and girls, and provide adequate assistance and protection to the victims ", - "values": [ - "Rights of the Child", - "Women's rights" - ] - }, - { - "text": "As long as the death penalty is not abolished and continues to be carried out, respect minimum standards in this regard, and in particular ensure that the death penalty is applied only for the most serious criminal offences ", - "values": [ - "Death penalty" - ] - }, - { - "text": "Put an end to the practice of torture, inhumane and degrading treatment in detention facilities and sexual violence, especially against women and children", - "values": [ - "Detention", - "Rights of the Child", - "Torture and other CID treatment", - "Women's rights" - ] - }, - { - "text": "Ratify the Convention against Torture, and Other Cruel, Inhuman and Degrading Treatment or Punishment", - "values": [ - "International instruments", - "Torture and other CID treatment" - ] - }, - { - "text": "Continue to enhance its efforts to take into account the needs of children, and to continue to take the measures necessary to guarantee children's rights in the field of social protection and education", - "values": [ - "Rights of the Child" - ] - }, - { - "text": "Recommended that appropriate technical and financial assistance be provided to Mali in the field of women literacy and in the struggle against the phenomenon of children living and working in the street. ", - "values": [ - "Right to education", - "Rights of the Child", - "Technical assistance and cooperation", - "Women's rights" - ] - }, - { - "text": "Harmonize the Austrian legislation on combating all forms of discrimination with international instruments in this area", - "values": [ - "International instruments" - ] - }, - { - "text": "Disseminate and implement the plan to achieve MDGs 4 and 5, approved by the Ministry of Health, on the basis of the right to health for mother and child ", - "values": [ - "Right to health", - "Rights of the Child", - "Women's rights" - ] - }, - { - "text": "Amend provisions of the Penal Code, the law on media, the law on Internet and all other legislation that criminalizes the exercise of fundamental rights in order to align Lao's legislation with international standards in this sphere", - "values": [ - "Freedom of the press" - ] - }, - { - "text": "Continue efforts in favour of the rights of women and children and adopt all necessary measures to efficiently combat domestic violence ", - "values": [ - "Rights of the Child", - "Women's rights" - ] - }, - { - "text": "Strengthen the institutions in the field of women's rights and organize training, sensitization and awareness-raising activities on the matter", - "values": [ - "Human rights education and training", - "Women's rights" - ] - }, - { - "text": "Effectively implement international labour standards with regard to children.", - "values": [ - "Labour", - "Rights of the Child" - ] - }, - { - "text": "Continue to seek support from the international community in the form of financial or technical assistance in accordance with its national priorities ", - "values": [ - "Technical assistance and cooperation" - ] - }, - { - "text": "Ratify the International Convention on Protection of All Persons from Enforced Disappearance", - "values": [ - "Enforced disappearances", - "International instruments" - ] - }, - { - "text": "Incorporate into domestic legislation the treaties that Kiribati has ratified", - "values": [ - "International instruments" - ] - }, - { - "text": "Ensure victims of sexual and gender-based violence have access to social and legal support, and that perpetrators of sexual and gender-based violence are brought to justice", - "values": [ - "Women's rights" - ] - }, - { - "text": "Intensify efforts to reform the judicial system, including the juvenile justice system", - "values": [ - "Justice", - "Rights of the Child" - ] - }, - { - "text": "Create an independent Human Rights Institution in accordance with the Paris Principles ", - "values": [ - "National Human Rights Institution" - ] - }, - { - "text": "Incorporate human rights and the needs for their implementation and funding in its National Development Strategy", - "values": [ - "Development" - ] - }, - { - "text": "Improve enforcement and coordination of national legislation and policies on the trafficking of persons, especially women and children, and to raise the awareness on this issue amongst the public", - "values": [ - "Human rights education and training", - "Rights of the Child", - "Trafficking", - "Women's rights" - ] - }, - { - "text": "Take further measures to enhance the national system for health care ", - "values": [ - "Right to health" - ] - }, - { - "text": "Make efforts to improve cooperation with human rights mechanisms and special procedures by extending to them a standing invitation", - "values": [ - "Special procedures", - "Technical assistance and cooperation", - "Treaty bodies", - "UPR process" - ] - }, - { - "text": "Take effective steps to ensure the implementation of the 2013 media reform legislation, including the independence of the Rwanda Media Commission, review legal provisions unduly restricting freedom of expression and the press and ensure that journalists are not harassed or intimidated", - "values": [ - "Freedom of opinion and expression", - "Freedom of the press" - ] - }, - { - "text": "Ensure that Azerbaijani media regulations uphold diversity among media outlets, as per international standards and best practices", - "values": [ - "Freedom of the press" - ] - }, - { - "text": "Continue to provide the enabling environment for the institutions responsible for the promotion and protection of human rights and particularly by establishing a national human rights institution", - "values": [ - "National Human Rights Institution" - ] - }, - { - "text": "Adopt national uniform legislation prohibiting, except where there is a serious threat to life or health, the sterilisation of children and of adults with disability, in the absence of prior, fully informed and free consent", - "values": [ - "Disabilities", - "Torture and other CID treatment" - ] - }, - { - "text": "Enact without delay the 2013 Access to Information Bill and Data Protection Bill", - "values": [ - "Freedom of opinion and expression" - ] - }, - { - "text": "Ensure the registration of all newly born children so as to continue reducing the number of adult non-citizens", - "values": [ - "Statelessness and the right to nationality" - ] - }, - { - "text": "Take concrete measures to eliminate all discrimination against women, improve women representation in leadership positions, and protect women against all forms of violence", - "values": [ - "Women's rights" - ] - }, - { - "text": "Strengthen efforts to safeguard the rights of women migrant workers", - "values": [ - "Labour", - "Migrants", - "Women's rights" - ] - }, - { - "text": "Adopt comprehensive legislation to counter discrimination, and take steps to ensure that equality enshrined in such legislation or in existing law is achieved in practice", - "values": [ - "Other" - ] - }, - { - "text": "Establish a national institution for the monitoring of children and the collection and analysis of the data concerning children", - "values": [ - "National Human Rights Institution", - "Rights of the Child" - ] - }, - { - "text": "Address hate crimes against lesbian, gay, bisexual, transgender and intersex persons", - "values": [ - "Sexual Orientation and Gender Identity" - ] - }, - { - "text": "Create and maintain a safe and enabling environment suitable for civil society and human rights defenders", - "values": [ - "Civil society", - "Human rights defenders" - ] - }, - { - "text": "Take all necessary measures to guarantee, in all circumstances, the full respect of the rights to freedom of expression and of media as essential elements to an active and flourishing civil society", - "values": [ - "Civil society", - "Freedom of opinion and expression", - "Freedom of the press" - ] - }, - { - "text": "Allocate adequate resources to implement its policies and programmes aimed at ensuring that equality between men and women are realized in practice", - "values": [ - "Women's rights" - ] - }, - { - "text": "Introduce stronger measures to protect indigenous peoples and AfroColombians from attacks by armed groups and take measures to guarantee their rights", - "values": [ - "Indigenous peoples", - "Minorities" - ] - }, - { - "text": "Take additional measures to reduce poverty, by establishing plans and programmes to improve living conditions of the whole population ", - "values": [ - "Poverty" - ] - }, - { - "text": "Raise the minimum age for marriage to 18 years and improve maternal and neonatal health services, especially in rural areas and among indigenous people ", - "values": [ - "Indigenous peoples", - "Right to health", - "Rights of the Child", - "Women's rights" - ] - }, - { - "text": "Continue efforts in connection with the integration of disabled children in formal education as far as possible, in accordance with an inclusive educational approach", - "values": [ - "Disabilities", - "Right to education", - "Rights of the Child" - ] - }, - { - "text": "Favourably consider the establishment of a moratorium on the application of the death penalty. ", - "values": [ - "Death penalty" - ] - }, - { - "text": "Enhance efforts to fight all forms of discrimination against women by ensuring effective implementation of the existing legislation, by implementing a policy of equal work for equal pay and by developing a comprehensive national strategy to facilitate equal access of girls and women to all levels and fields of education", - "values": [ - "Right to education", - "Rights of the Child", - "Women's rights" - ] - }, - { - "text": "Amend the Constitution to provide guarantee for freedom of religion in Myanmar, in line with Article 18 of the Universal Declaration of Human Rights", - "values": [ - "Freedom of religion and belief", - "International instruments" - ] - }, - { - "text": "Consider acceding to the International Convention on the Protection of the Rights of All Migrant Workers and Members of Their Families ", - "values": [ - "International instruments", - "Labour", - "Migrants" - ] - }, - { - "text": "Continue applying programmes and measures aimed at ensuring universal access of its population to its excellent educational and health services and maintain the highest possible quality of these services ", - "values": [ - "Right to education", - "Right to health" - ] - }, - { - "text": "Pay particular attention to polygamy in a future global action plan to combat violence against women and children", - "values": [ - "Rights of the Child", - "Women's rights" - ] - }, - { - "text": "Enforce a legal framework enabling media to operate freely and independently", - "values": [ - "Freedom of the press" - ] - }, - { - "text": "Adopt further measures to provide victims of war crimes with effective remedies, including improved access to and affordability of health services and the establishment of psycho-social support centres", - "values": [ - "Justice", - "Right to health" - ] - }, - { - "text": "Envisage the gradual ratification of other main international human rights instruments, first of all the two International Covenants, on Civil and Political Rights and on Economic, Social and Cultural Rights, and the International Convention on the Elimination of All Forms of Racial Discrimination ", - "values": [ - "CP rights - general", - "ESC rights - general", - "International instruments", - "Racial discrimination" - ] - }, - { - "text": "Continue efforts aimed at promoting the rights of children, in particular children belonging to indigenous groups and children with disabilities and HIV/AIDS", - "values": [ - "Disabilities", - "HIV - Aids", - "Indigenous peoples", - "Rights of the Child" - ] - }, - { - "text": "Elevate the status of the national machinery for the advancement of women, strengthen its mandate, provide the necessary human and financial resources to endow it with sufficient authority and decision-making power for coordinating effectively the Government's work to promote gender equality", - "values": [ - "Women's rights" - ] - }, - { - "text": "Strengthen the implementation of the National Action Plan to end gender-based violence, in cooperation with civil society organizations and other interested parties, and ensure better access to health care and social services for victims, in particular rural women ", - "values": [ - "Civil society", - "Women's rights" - ] - }, - { - "text": "Pursue measures, in law and in practice, that address the wage gap in the private sector and unequal access to managerial posts, with women in a disadvantaged situation", - "values": [ - "Women's rights" - ] - }, - { - "text": "Accept the pending request and facilitate the visit of the UN Special Rapporteur on freedom of religion or belief ", - "values": [ - "Freedom of religion and belief", - "Special procedures" - ] - }, - { - "text": "Promote gender equality, including equal remuneration for men and women for equal work ", - "values": [ - "Women's rights" - ] - }, - { - "text": "Consider the possibility of acceding to the International Convention on the Protection of the Rights of All Migrant Workers and Members of Their Families", - "values": [ - "International instruments", - "Labour", - "Migrants" - ] - }, - { - "text": "Consider ratifying the Optional Protocol to the International Covenant on Economic Social and Cultural Rights ", - "values": [ - "ESC rights - general", - "International instruments" - ] - }, - { - "text": "Guarantee the enjoyment of economic, social and cultural rights, particularly health, education and adequate housing ", - "values": [ - "Right to education", - "Right to health", - "Right to housing" - ] - }, - { - "text": "Further strengthen existing efforts to integrate human rights in national development policies, strategies and plans ", - "values": [ - "General" - ] - }, - { - "text": "Continue to remove any impediments that could hamper Qatari women's full participation in society", - "values": [ - "Women's rights" - ] - }, - { - "text": "Facilitate the return of refugees and internally displaced persons", - "values": [ - "Asylum-seekers - refugees", - "Internally displaced persons" - ] - }, - { - "text": "Ratify the Optional Protocol to the Convention against Torture and establish a national preventive mechanism accordingly", - "values": [ - "Detention", - "International instruments", - "Torture and other CID treatment" - ] - }, - { - "text": "Such a legal framework [establishing a National Human Rights Institution] will provide for the prosecution of human rights violations in national courts", - "values": [ - "National Human Rights Institution" - ] - }, - { - "text": "Proceed to further actions in order to provide a safe working environment for journalists in the country", - "values": [ - "Freedom of the press" - ] - }, - { - "text": "Consider providing sanctions against organizations that promote racial discrimination, and characterizing as criminal any act that promotes and incites racial discrimination", - "values": [ - "Racial discrimination" - ] - }, - { - "text": "Continue efforts to combat human trafficking both through the introduction of relevant legislation as through national and state programs and plans for its implementation", - "values": [ - "Trafficking" - ] - }, - { - "text": "Intensify efforts to prevent and eradicate chronic malnutrition, especially among children living in rural and remote areas", - "values": [ - "Right to food", - "Rights of the Child" - ] - }, - { - "text": "Make greater efforts to implement the national Action Plan for Human Rights and the national policy framework on human rights", - "values": [ - "General" - ] - }, - { - "text": "Enact adequate legal measures to prohibit incitement to racial hatred and to fight against racism, xenophobia and Islamophobia", - "values": [ - "Freedom of religion and belief", - "Racial discrimination" - ] - }, - { - "text": "Adopt effective measures to protect human rights in executing counter-terrorism policy", - "values": [ - "Counter-terrorism" - ] - }, - { - "text": "Continue cooperative engagement with its regional and international partners to ensure adequate resources for implementing policies and programmes on human rights ", - "values": [ - "Technical assistance and cooperation" - ] - }, - { - "text": "Successfully implement its plan of action for the period 2008-2012, which was adopted by the Government with a view to the implementation of the Convention on the Rights of Persons with Disabilities ", - "values": [ - "Disabilities", - "International instruments" - ] - }, - { - "text": "Establish an independent national human rights institution in accordance with the Paris Principles ", - "values": [ - "National Human Rights Institution" - ] - }, - { - "text": "Reinforce its efforts to eradicate harmful customs and practices that are discriminatory against women", - "values": [ - "Torture and other CID treatment", - "Women's rights" - ] - }, - { - "text": "Carry out public awareness campaigns on the negative consequences of the ill-treatment of children to promote positive and non- violent forms of discipline in schools and at home as alternative measures to these punishments", - "values": [ - "Right to education", - "Rights of the Child", - "Torture and other CID treatment" - ] - }, - { - "text": "Continue its efforts to further improve the situation on trafficking in persons and to enhance protection and support for the victims of trafficking ", - "values": [ - "Trafficking" - ] - }, - { - "text": "Extend an open and permanent invitation to the United Nations human rights special procedures mandate holders ", - "values": [ - "Special procedures" - ] - }, - { - "text": "Adopt legal and administrative measures aimed at guaranteeing the principle of non-refoulement, in order to prevent extradition or return of asylum seekers and migrants who are at risk of being subject to torture or illtreatment", - "values": [ - "Asylum-seekers - refugees", - "Migrants", - "Torture and other CID treatment" - ] - }, - { - "text": "Prevent discrimination and violence against vulnerable and marginalized groups", - "values": [ - "Minorities" - ] - }, - { - "text": "Continue its efforts to establish an independent national human rights institution", - "values": [ - "National Human Rights Institution" - ] - }, - { - "text": "Guarantee the effective follow-up to as well as the implementation of the recommendations by the Commission for Reception, Truth and Reconciliation and the Commission of Truth and Friendship ", - "values": [ - "Justice" - ] - }, - { - "text": "Consider adopting specific laws or repealing existing legislation to combat violence against women ", - "values": [ - "Women's rights" - ] - }, - { - "text": "Meet international standards in ensuring adequate living conditions for inmates", - "values": [ - "Detention" - ] - }, - { - "text": "Review the existing legislation that prohibited the wearing of religious symbols by public school teachers", - "values": [ - "Freedom of religion and belief", - "Right to education" - ] - }, - { - "text": "Take steps to legally ensure equal rights of children born of incestuous relationships or born out of wedlock, according to Article 378 of the Civil Code", - "values": [ - "Rights of the Child" - ] - }, - { - "text": "Take further measures to protect the rights of women in the family and society and ensure their equality in all areas ", - "values": [ - "Women's rights" - ] - }, - { - "text": "Conduct a thorough inventory of laws and regulations to bring to light those that are not in accordance with the right to equality and-or CRPD ", - "values": [ - "Disabilities" - ] - }, - { - "text": "Prevent discrimination in all cases without taking consideration of grounds such as religious beliefs or national security", - "values": [ - "Freedom of religion and belief", - "Racial discrimination" - ] - }, - { - "text": "Adopt criminal laws explicitly prohibiting FGM and excisions and provide appropriate penalties ", - "values": [ - "Rights of the Child", - "Torture and other CID treatment", - "Women's rights" - ] - }, - { - "text": "Respect and guarantee the right to freedom of expression, association and peaceful assembly of journalists, civil society activists, human rights defenders and demonstrators, as well as speedily and effectively investigating threats against them and ensuring that perpetrators are tried", - "values": [ - "Civil society", - "Freedom of association and peaceful assembly", - "Freedom of opinion and expression", - "Freedom of the press", - "Human rights defenders" - ] - }, - { - "text": "Continue the implementation of measures aimed at eradicating poverty and illiteracy", - "values": [ - "Poverty", - "Right to education" - ] - }, - { - "text": "Undertake measures enabling unrestricted access and use of the Internet to all citizens and undertake measures to guarantee the freedom of opinion and expression to everyone, as well as the freedom of press and media in the country ", - "values": [ - "Freedom of opinion and expression", - "Freedom of the press" - ] - }, - { - "text": "Continue to raise awareness among the population on the impact of climate change", - "values": [ - "Environment" - ] - }, - { - "text": "Stop the practice of public executions and declare and implement an immediate moratorium on the imposition and execution of the death penalty, followed by concrete steps towards the complete abolition of the death penalty ", - "values": [ - "Death penalty" - ] - }, - { - "text": "Harmonize federal and state laws with international human rights instruments, and equal protection and guarantees, at federal and state levels", - "values": [ - "International instruments" - ] - }, - { - "text": "Pursue efforts to combat violence against women, notably by intensifying awareness-raising campaigns about respect for women's rights", - "values": [ - "Human rights education and training", - "Women's rights" - ] - }, - { - "text": "Ensure the swift, transparent and effective prosecution of violence against journalists ", - "values": [ - "Freedom of the press" - ] - }, - { - "text": "Take appropriate measures to facilitate family reunification of migrant workers and members of their families", - "values": [ - "Labour", - "Migrants" - ] - }, - { - "text": "Accelerate the adoption of the draft law on narcotics, which exempts from criminal prosecution any consumer requiring medical follow-up", - "values": [ - "Right to health" - ] - }, - { - "text": "Ratify immediately the Convention on the Rights of Persons with Disabilities, and establish the planned national council on disability after, rather than prior to, ratification to ensure a speedy ratification process", - "values": [ - "Disabilities", - "International instruments" - ] - }, - { - "text": "Fully implement the National Roadmap to Combat the Vestiges of Slavery", - "values": [ - "Other" - ] - }, - { - "text": "Install a moratorium on the death penalty as a first step towards its total abolition", - "values": [ - "Death penalty" - ] - }, - { - "text": "Take all necessary measures to abolish in practice cases of early and forced child marriages ", - "values": [ - "Rights of the Child" - ] - }, - { - "text": "Promote strategies for the mitigation of climate change and disseminate those through school programs", - "values": [ - "Environment" - ] - }, - { - "text": "Progressively realize the right to health to the maximum of its available resources by ensuring the equal and non-discriminatory access of all persons, including women and children to quality and low-cost community health care and the respect of this right by everybody, including "traditional leaders" and other stakeholders", - "values": [ - "Right to health", - "Rights of the Child", - "Women's rights" - ] - }, - { - "text": "Develop a comprehensive strategy to strengthen social cohesion and respect for racial, religious, tribal and ethnic diversity, to strengthen the national peace plan", - "values": [ - "Freedom of religion and belief", - "Minorities", - "Racial discrimination" - ] - }, - { - "text": "Accelerate the process of reviewing the law on witchcraft", - "values": [ - "Rights of the Child", - "Women's rights" - ] - }, - { - "text": "To consider ratifying the ICESCR and its Optional Protocols ", - "values": [ - "ESC rights - general", - "International instruments" - ] - }, - { - "text": "Review domestic legislation with a view to decriminalizing homosexual relations and prohibiting all forms of discrimination, in compliance with Malawi's international commitments. Release immediately and unconditionally all persons currently deprived of their liberty only for this reason ", - "values": [ - "Detention", - "Sexual Orientation and Gender Identity" - ] - }, - { - "text": "Ensure in particular access by Roma to education, housing, healthcare.", - "values": [ - "Minorities" - ] - }, - { - "text": "Ratify the main international human rights instruments, including ICCPR, ICESCR, ICERD, and CAT. Also sign and ratify OP-ICESCR, OPCAT, OP-CRC-AC, OP-CRC-SC, CED, CRPD and its Optional Protocol (OPCRPD)", - "values": [ - "International instruments" - ] - }, - { - "text": "Guarantee freedom of expression and information through the independence and pluralism of the media and guarantee freedom of association ", - "values": [ - "Freedom of association and peaceful assembly", - "Freedom of opinion and expression", - "Freedom of the press" - ] - }, - { - "text": "Consider the formulation of a national action plan or inter-agency mechanism to combat trafficking in persons and provide assistance to victims, bearing in mind the need to integrate a human rights-based approach.", - "values": [ - "Trafficking" - ] - }, - { - "text": "Ratify CED and accept the competence of the treaty body as provided for in articles 31 and 32", - "values": [ - "Enforced disappearances", - "International instruments" - ] - }, - { - "text": "Consider the creation of a national human rights institution or Office of the Ombudsperson, in conformity with the Paris Principles", - "values": [ - "National Human Rights Institution" - ] - }, - { - "text": "Ratify and effectively implement international human rights treaties, including ICCPR and its Optional Protocols, ICESCR, CAT, and the Optional Protocols to the CRC ", - "values": [ - "CP rights - general", - "Death penalty", - "ESC rights - general", - "International instruments", - "Rights of the Child", - "Torture and other CID treatment" - ] - }, - { - "text": "Undertake practical steps to put an end to corporal punishment of children in all settings", - "values": [ - "Rights of the Child" - ] - }, - { - "text": "Continue its efforts in a systematic way to ensure the eradication of hunger and extreme poverty ", - "values": [ - "Poverty", - "Right to food" - ] - }, - { - "text": "Rectification of the underrepresentation of women in public services as well as the decision-making positions in the private sector", - "values": [ - "Women's rights" - ] - }, - { - "text": "Finalize the procedures aiming at the establishment of an independent national human rights commission.", - "values": [ - "National Human Rights Institution" - ] - }, - { - "text": "Continue its efforts to ensure the protection and promotion of the right to safe drinking water and sanitation ", - "values": [ - "Right to water and sanitation" - ] - }, - { - "text": "Continue efforts to combat human trafficking and to protect victims of such crimes, especially women and children", - "values": [ - "Rights of the Child", - "Trafficking", - "Women's rights" - ] - }, - { - "text": "Respond to the constant calls of the international community for the immediate and unconditional release of all prisoners of conscience, currently estimated at more than 2,100, and a full restoration of their political rights ", - "values": [ - "Detention", - "Freedom of opinion and expression" - ] - }, - { - "text": "Continue to invest in education in order to reduce the illiteracy rate further, especially among girls and young women", - "values": [ - "Right to education", - "Women's rights" - ] - }, - { - "text": "Continue to improve and implement its strategy on poverty reduction and further improve its people's living standards", - "values": [ - "Poverty" - ] - }, - { - "text": "Continue to develop and implement successful climate change mitigation and adaptation policies and practices", - "values": [ - "Environment" - ] - }, - { - "text": "Designate a central high-level agency responsible for implementing the National Action Plan on Gender-based Violence and ensure adequate budget is allocated to seriously tackle widespread and intergenerational rates of child abuse and violence against women", - "values": [ - "Rights of the Child", - "Women's rights" - ] - }, - { - "text": "That Ghana's Criminal Code be amended to decriminalize sexual activity between consenting adults.", - "values": [ - "Sexual Orientation and Gender Identity" - ] - }, - { - "text": "Adopt legislation and promote measures to prevent discrimination based on sexual orientation and gender identity", - "values": [ - "Sexual Orientation and Gender Identity" - ] - }, - { - "text": "Increase efforts to further prevent cases of kidnapping, forced disappearances and extrajudicial killings. ensure that all perpetrators are brought to justice. and enhance its capacity in the areas of crime investigations, the judiciary and the NHRC, with the assistance of the international community.", - "values": [ - "Enforced disappearances", - "Extrajudicial executions", - "Technical assistance and cooperation" - ] - }, - { - "text": "Take measures to improve the situation of children who are still living in institutions", - "values": [ - "Rights of the Child" - ] - }, - { - "text": "Take proactive measures to promote women's participation in the local elections planned for\nin 2010 ", - "values": [ - "Women's rights" - ] - }, - { - "text": "Promote a public discussion on women's rights and encourage influential men- whether elders, clerics, politicians or others - to participate in this discussion and raise awareness, especially amongst boys, of the importance of seeing women and girls as equal and respected partners in society.", - "values": [ - "Women's rights" - ] - }, - { - "text": "Include access to justice and remedy, as well as psychological support and occupational training, for victims of trafficking to help them regain their lives and reintegrate back into society ", - "values": [ - "Justice", - "Trafficking" - ] - }, - { - "text": "Promote and protect the right to freedom of opinion and expression, in accordance with what is stated in article 19 of the Universal Declaration of Human Rights ", - "values": [ - "Freedom of opinion and expression", - "International instruments" - ] - }, - { - "text": "Return to constitutional rule, to restore a democratic form of Government, to reinstate an independent judiciary, to repeal the Public Emergency Regulations and to reinstate the full independence of the Human Rights Commission", - "values": [ - "Justice", - "National Human Rights Institution" - ] - }, - { - "text": "Intensify efforts to bring the Office of the Ombudsman into compliance with the Paris Principles", - "values": [ - "National Human Rights Institution" - ] - }, - { - "text": "Engage the civil society in the follow-up implementation process of the universal periodic review recommendations", - "values": [ - "Civil society", - "UPR process" - ] - }, - { - "text": "Revise the Penal Code to make all new laws conform with international human rights standards", - "values": [ - "International instruments" - ] - }, - { - "text": "Ratify the International Labour Organization (ILO) Freedom of Association and Protection of the Right to Organise Convention, 1948 (No. 87) and finalize the domestic procedures to accede to the International Convention on the Protection of the Rights of All Migrant Workers and Members of Their Families", - "values": [ - "Freedom of association and peaceful assembly", - "International instruments", - "Labour", - "Migrants" - ] - }, - { - "text": "Ensure that its military justice system is fully compliant with international human rights law, and that all allegations of human rights abuses by military personnel are investigated promptly and effectively", - "values": [ - "Human rights violations by state agents", - "International instruments", - "Justice" - ] - }, - { - "text": "Devote attention to transitional justice and national reconciliation as an approach used to contain disputes and prevent their recurrence ", - "values": [ - "Justice" - ] - }, - { - "text": "Consider extending an open invitation to the Human Rights Council special procedures", - "values": [ - "Special procedures" - ] - }, - { - "text": "Ratify the ICCPR as soon as possible and bring its legislation into line with its provisions", - "values": [ - "CP rights - general", - "International instruments" - ] - }, - { - "text": "Implement effectively the Green Scheme, the San Development, Land distribution, the Mass Housing Programme, Water Supply and Sanitation, Safe drinking water, and Equipment Aid Scheme to SMEs", - "values": [ - "Development", - "Environment", - "Right to housing", - "Right to land", - "Right to water and sanitation" - ] - }, - { - "text": "Finalize the draft strategy and action plan to combat corruption and effectively prosecute the perpetrators of corruption acts", - "values": [ - "Corruption" - ] - }, - { - "text": "Continue its work to eliminate discrimination against women and children among indigenous peoples", - "values": [ - "Indigenous peoples", - "Rights of the Child", - "Women's rights" - ] - }, - { - "text": "Maximize, through consultation mechanisms, the participation of indigenous peoples in the determination of the public policies that affect them ", - "values": [ - "Indigenous peoples" - ] - }, - { - "text": "Guarantee due process of law in all judicial proceedings", - "values": [ - "Justice" - ] - }, - { - "text": "Establish and enforce laws and policies that criminalize and help prevent child, early and forced marriages", - "values": [ - "Rights of the Child", - "Women's rights" - ] - }, - { - "text": "Continue its efforts to spread the culture of human rights across the school curriculum and public awareness campaigns", - "values": [ - "Human rights education and training" - ] - }, - { - "text": "Sign the OP-ICESCR ", - "values": [ - "ESC rights - general", - "International instruments" - ] - }, - { - "text": "Revise the Penal Code and the legislative framework in accordance with the Rome Statute of the International Criminal Court and other international obligations of Timor-Leste", - "values": [ - "International instruments", - "Justice" - ] - }, - { - "text": "Take steps to review the Personal and Family Code by taking measures to eliminate all forms of gender discrimination and promote and protect women's and children's rights ", - "values": [ - "Rights of the Child", - "Women's rights" - ] - }, - { - "text": "Adopt public policies to achieve the full political and economic participation of women in Panamanian society", - "values": [ - "Women's rights" - ] - }, - { - "text": "Establish as soon as possible an Independent Police Board and undertake an information campaign to inform the public that such a body has been created and to outline its role and functions ", - "values": [ - "Justice" - ] - }, - { - "text": "End jurisdiction of military courts over civilians and review all rules of criminal procedure so that they fully comply with international standards of fair trial, and provide full support for the bill aimed at ensuring this compliance. ", - "values": [ - "Justice" - ] - }, - { - "text": "Continue efforts to combat discrimination and promote the right to education and the rights of women", - "values": [ - "Right to education", - "Women's rights" - ] - }, - { - "text": "Withdraw its reservations to the Convention on the Rights of the Child", - "values": [ - "International instruments", - "Rights of the Child" - ] - }, - { - "text": "Design and implement awareness-raising campaigns on the benefits of access to health services to prevent curable diseases", - "values": [ - "Right to health" - ] - }, - { - "text": "Develop and implement a comprehensive national strategy to address all forms of violence against women and children", - "values": [ - "Rights of the Child", - "Women's rights" - ] - }, - { - "text": "Continue its efforts to combat terrorism financing and de-legitimize income generated through criminal means ", - "values": [ - "Counter-terrorism", - "Public security" - ] - }, - { - "text": "Simplify the registration procedure for political parties and other public associations and foundations", - "values": [ - "Freedom of association and peaceful assembly" - ] - }, - { - "text": "Review reservations to ICCPR and CRC with a view to withdrawing or limiting them ", - "values": [ - "CP rights - general", - "International instruments", - "Rights of the Child" - ] - }, - { - "text": "Enhance its work on human rights education and training to its people", - "values": [ - "Human rights education and training" - ] - }, - { - "text": "Prepare and intensify appropriate legislative measures to address questions relating to sexual abuse and sexual exploitation and child prostitution ", - "values": [ - "Rights of the Child" - ] - }, - { - "text": "Promote inter-religious dialogue and other educational measures to increase the understanding and tolerance in society among all religious communities", - "values": [ - "Freedom of religion and belief" - ] - }, - { - "text": "Create conditions for the most vulnerable to have access to basic education and health services", - "values": [ - "Right to education", - "Right to health" - ] - }, - { - "text": "Continue actions to safeguard the physical and mental integrity of women, in accordance with the continuing awareness-raising campaign on the legal framework for substantial equality initiated in 2012", - "values": [ - "Human rights education and training", - "Women's rights" - ] - }, - { - "text": "Criminalize conjugal violence and adopt a comprehensive strategy to prevent and fight against gender-based violence", - "values": [ - "Women's rights" - ] - }, - { - "text": "Examine the possibility of introducing a formal moratorium on the death penalty ", - "values": [ - "Death penalty" - ] - }, - { - "text": "To present, during the first half of 2012, the pending national reports to the treaty bodies and under human rights conventions", - "values": [ - "Treaty bodies" - ] - }, - { - "text": "Recalling General Assembly resolution 62-149, establish a moratorium on executions with a view to abolishing the death penalty", - "values": [ - "Death penalty" - ] - }, - { - "text": "Consider ratifying the Second Optional Protocol to the International Covenant on Civil and Political Rights, aiming at the abolition of the death penalty and commit current death sentences to life imprisonment as far as possible", - "values": [ - "Death penalty", - "International instruments" - ] - }, - { - "text": "Accede to the Rome Statute of the International Criminal Court, and cooperate fully with it", - "values": [ - "International instruments", - "Justice" - ] - }, - { - "text": "Act in conformity with United Nations resolutions and the norms of international law and to resume full cooperation with the United Nations Human Rights Council", - "values": [ - "Special procedures", - "UPR process" - ] - }, - { - "text": "End, investigate independently and prosecute promptly cases of sexual violence against civilians, as well as of assaults on and harassment of journalists and civil society activists", - "values": [ - "Civil society", - "Freedom of the press", - "Rights of the Child", - "Women's rights" - ] - }, - { - "text": "Continue to ensure better protection of human rights through the implementation of laws and action plans recently adopted, which could effectively protect its citizens, particularly, those who are the most vulnerable ", - "values": [ - "General" - ] - }, - { - "text": "Recommended that specific measures be adopted by the Government to safeguard the promotion and protection of the human rights of IDPs.", - "values": [ - "Internally displaced persons" - ] - }, - { - "text": "Ensure equal rights for minority citizens such as the Roma, particularly the right to vote ", - "values": [ - "Elections", - "Minorities" - ] - }, - { - "text": "Continue to intensify efforts to fight against violence faced by persons with albinism", - "values": [ - "Minorities" - ] - }, - { - "text": "Consider its commitment in line with paragraph 101 of the Durban Declaration when addressing questions with respect to legislation and studies on colonialism and the slave trade, in particular with respect to overseas territories.", - "values": [ - "Racial discrimination" - ] - }, - { - "text": "Take all appropriate measures to prohibit and punish all forms of sexual violence against women and girls by the different armed groups", - "values": [ - "Public security", - "Rights of the Child", - "Women's rights" - ] - }, - { - "text": "Continue to combat gender-based violence", - "values": [ - "Women's rights" - ] - }, - { - "text": "Continue and deepen efforts already under way to promote full enjoyment of the right to health for all \n\n", - "values": [ - "General" - ] - }, - { - "text": "Consider an early ratification of the third Optional Protocol to CRC on a communication procedure", - "values": [ - "International instruments", - "Rights of the Child" - ] - }, - { - "text": "Facilitate the issuance of visas and accreditations without restriction to representatives of international organizations defending human rights and to foreign journalists", - "values": [ - "Freedom of the press", - "Human rights defenders" - ] - }, - { - "text": "Provide equal access to education by the people", - "values": [ - "Right to education" - ] - }, - { - "text": "Take the necessary measures to take into account gender aspects at all levels of the educational system, including teachers' training ", - "values": [ - "Right to education", - "Women's rights" - ] - }, - { - "text": "Include a specific prohibition of discrimination based on sexual orientation and gender identity in line with international standards in the anti-discrimination legislation and take appropriate measures to end impunity for violence and intimidation of the LGBT community ", - "values": [ - "Sexual Orientation and Gender Identity" - ] - }, - { - "text": "Strengthen the means of action of the training centre for judicial professions created in 2010", - "values": [ - "Human rights education and training", - "Justice" - ] - }, - { - "text": "Ensure that allegations of torture and other ill-treatment are investigated promptly and effectively and that the perpetrators of these acts are prosecuted and punished according to the standards required by international norms", - "values": [ - "Torture and other CID treatment" - ] - }, - { - "text": "Prevent and punish all forms of violence against women and girls, and consolidate a higher representation of women in management and decision making positions", - "values": [ - "Rights of the Child", - "Women's rights" - ] - }, - { - "text": "Endeavour to enshrine in its legislation the good current practice of not placing unaccompanied minors in detention ", - "values": [ - "Detention", - "Rights of the Child" - ] - }, - { - "text": "Laws enacted, especially the amendment of the Personal Status Law and the law against domestic violence, be in line with Iraq's existing international obligations", - "values": [ - "Rights of the Child", - "Women's rights" - ] - }, - { - "text": "Make matrimonial legislation compatible with international instruments with a clear schedule so that family legislation can be replaced together with the abolition of the ban on advertising for contraceptives.", - "values": [ - "Women's rights" - ] - }, - { - "text": "Cease all steps to reintroduce the death penalty, which would be contrary to its obligations under the Optional Protocol to the International Covenant on Civil and Political Rights, urgently accept a visit from the Special Rapporteur on extrajudicial, summary or arbitrary executions, without preconditions or limitations, fully investigate and prosecute all cases of extrajudicial killings and enforced disappearances, take immediate steps to combat torture in the criminal justice system, including torture in police stations to extract confessions, and fully respect international human rights law in its efforts to combat the trade in and use of illegal drugs", - "values": [ - "Death penalty", - "Enforced disappearances", - "Extrajudicial executions", - "International instruments", - "Special procedures", - "Torture and other CID treatment" - ] - }, - { - "text": "Bahrain commits to working to implement the visions of the National Consensus Dialogue. ", - "values": [ - "Other" - ] - }, - { - "text": "Increase access to sexual and reproductive health services for vulnerable groups, including sexual minorities, by raising the health budget to 15 per cent in line with the Abuja Declaration on Roll Back Malaria in Africa", - "values": [ - "Minorities", - "Right to health", - "Sexual Orientation and Gender Identity" - ] - }, - { - "text": "Establish an independent body with the mandate to conduct investigations into any acts of torture and the ill-treatment of all persons in detention", - "values": [ - "Detention", - "Torture and other CID treatment" - ] - }, - { - "text": "Continue to bring its legislation into compliance with the Constitution as well as with ratified international instruments", - "values": [ - "International instruments", - "Justice" - ] - }, - { - "text": "Protect the interest of migrants and minority groups, including the Asian and Pacific people, from all forms of racial stereotyping and derogatory treatment.", - "values": [ - "Migrants", - "Minorities" - ] - }, - { - "text": "Implement the recommendations made by the Organization for Security and Co-operation in Europe (OSCE) Office for Democratic Institutions and Human Rights after the 2011 parliamentary and 2012 presidential elections", - "values": [ - "Elections" - ] - }, - { - "text": "Consider devising and implementing a national strategy for human rights education which would cover both the formal educational sector and a wider public for enhancing human rights awareness", - "values": [ - "Human rights education and training" - ] - }, - { - "text": "Continue efforts in the direction of the positive improvements in women and children's rights, especially measures taken to combat domestic violence", - "values": [ - "Rights of the Child", - "Women's rights" - ] - }, - { - "text": "Keep on its national efforts aimed at ensuring the empowerment of women", - "values": [ - "Women's rights" - ] - }, - { - "text": "Ratify the International Convention for the Protection of All Persons from Enforced Disappearance as early as possible", - "values": [ - "Enforced disappearances", - "International instruments" - ] - }, - { - "text": "Prioritise the adequate resourcing and staffing of the Ombudsman's Office, ensure that State institutions, including the National Police, collaborate fully with the Office and consider a public campaign to demonstrate to Dominican citizens how this institution can help protect and guarantee their human rights ", - "values": [ - "National Human Rights Institution" - ] - }, - { - "text": "Implement the National Development Plan including the revised Sector Plan for Education that has budget allocations ensuring priority to free and qualitative education for all", - "values": [ - "Development", - "Right to education" - ] - }, - { - "text": "Strengthen the National Commission for the Promotion of Equality.", - "values": [ - "Other" - ] - }, - { - "text": "Accelerate the discussions regarding the bill to make basic education compulsory and free, currently under consideration", - "values": [ - "Right to education" - ] - }, - { - "text": "Take necessary measures to ensure the right of a child to life and development without discrimination of any kind", - "values": [ - "Rights of the Child" - ] - }, - { - "text": "Consider ratifying or acceding to: ICRMW, CED", - "values": [ - "International instruments", - "Labour", - "Migrants", - "Racial discrimination" - ] - }, - { - "text": "Continue the efforts to prevent and combat all forms of racial discrimination and xenophobia, and continue to provide the full support to implement the national action plan against racism 2012-2014 ", - "values": [ - "Racial discrimination" - ] - }, - { - "text": "Adopt specific measures to rectify labour standards violations as a follow-up to inspections conducted on the Technical Intern Training Programme", - "values": [ - "Labour" - ] - }, - { - "text": "In light of the current lack of normative legislation to support the consistent development and implementation of the country's human rights programme, continue to call for technical assistance and advice on best practices from the international community ", - "values": [ - "Technical assistance and cooperation" - ] - }, - { - "text": "Integrate into the new Constitution the Personal Statute Law, in order to uphold women's rights ", - "values": [ - "Women's rights" - ] - }, - { - "text": "Adopt and publish a plan by 2015 to highlight measures the Government will take to improve gender equality in France, including by enforcing existing anti-discrimination legislation more effectively", - "values": [ - "Women's rights" - ] - }, - { - "text": "Ensure the explicit inclusion in the national legislation of the prohibition of all forms of corporal punishment of minors, whether in the home, childcare facilities, schools and education centres in general", - "values": [ - "Rights of the Child", - "Torture and other CID treatment" - ] - }, - { - "text": "Decriminalize same-sex sexual activity between consenting adults and adopt measures to promote tolerance in this regard, which would also facilitate more effective educational programmes for the prevention of HIV-AIDS.", - "values": [ - "HIV - Aids", - "Sexual Orientation and Gender Identity" - ] - }, - { - "text": "Redouble its efforts with a focus on trafficking for the purpose of labour exploitation and special focus on trafficking in children ", - "values": [ - "Rights of the Child", - "Trafficking" - ] - }, - { - "text": "Further action to ensure that court services are available in all regions, and that fees associated with court action are not prohibitive", - "values": [ - "Justice" - ] - }, - { - "text": "Consider signing and ratifying the Rome Statute of the International Criminal Court ", - "values": [ - "International instruments", - "Justice" - ] - }, - { - "text": "Continue its efforts in the promotion and protection of women's and children's rights", - "values": [ - "Rights of the Child", - "Women's rights" - ] - }, - { - "text": "Continue to move forward its poverty reduction strategy and protect the rights of vulnerable groups so as to achieve sustainable economic and social development ", - "values": [ - "Development", - "Poverty" - ] - }, - { - "text": "Continue addressing the issue of violence against women ", - "values": [ - "Women's rights" - ] - }, - { - "text": "Continue efforts to reduce unemployment rates, including strengthening vocational training programmes", - "values": [ - "Labour" - ] - }, - { - "text": "Respond to the numerous requests for visits issued by the special procedures and extend a standing invitation to the special procedures as soon as possible", - "values": [ - "Special procedures" - ] - }, - { - "text": "Promote forms of discrimination and non-violent discipline as an alternative to corporal punishment, taking into consideration general comment No. 8 (2006) of the Committee on the Rights of the Child on the protection of children from corporal punishment and other cruel or degrading forms of punishment", - "values": [ - "Rights of the Child", - "Torture and other CID treatment", - "Treaty bodies" - ] - }, - { - "text": "Make efforts to achieve respect for all fundamental rights and freedoms of the entire population, especially women and children, and take all necessary measures to ensure the fight against impunity for the perpetrators of crimes, acts of violence and all human rights violations", - "values": [ - "Rights of the Child", - "Women's rights" - ] - }, - { - "text": "Pursue its efforts to strengthen the Human Rights and Administrative Justice Commission, in particular by ensuring adequate financing and guaranteeing its efficiency", - "values": [ - "Justice" - ] - }, - { - "text": "Move towards establishing gender equality offices in all cantons to enable coordination at the Federal Level", - "values": [ - "Women's rights" - ] - }, - { - "text": "Ratify the Convention on the Status of Refugees and its Optional Protocol", - "values": [ - "Asylum-seekers - refugees", - "International instruments" - ] - }, - { - "text": "Recommended upholding the rights of workers to freedom of association, to organise, and to collective bargaining by recognizing these rights in domestic law and by signing on to relevant ILO Conventions.", - "values": [ - "Freedom of association and peaceful assembly", - "International instruments", - "Labour" - ] - }, - { - "text": "Proceed with the abolition of the death penalty", - "values": [ - "Death penalty" - ] - }, - { - "text": "Enact legislation on domestic violence to protect the rights of women as a matter of priority ", - "values": [ - "Women's rights" - ] - }, - { - "text": "Intensify its efforts to ensure the establishment of the housing strategy 2012-2027", - "values": [ - "Right to housing" - ] - }, - { - "text": "Ensure that a robust law protecting human rights defenders, journalists and justice officials is adopted and effectively implemented and that its impact is regularly assessed", - "values": [ - "Freedom of the press", - "Human rights defenders", - "Justice" - ] - }, - { - "text": "Undertake targeted outreach activities to ensure that interested "noncitizens" are informed and encouraged to apply for naturalization, and provide free state language training when necessary", - "values": [ - "Statelessness and the right to nationality" - ] - }, - { - "text": "Exchange with other States its successful experience in the field of rehabilitation of surrenders, suspected and/or imprisoned persons for terrorism", - "values": [ - "Justice" - ] - }, - { - "text": "Continue efforts regarding access to the right to health", - "values": [ - "Right to health" - ] - }, - { - "text": "Guarantee in law the right to representation for defendants and carry out the necessary actions to implement it in practice", - "values": [ - "Justice" - ] - }, - { - "text": "Raise awareness and promote tolerance and diversity in society and to ensure that violent acts, discrimination and hate speech are systematically investigated and the alleged perpetrators prosecuted", - "values": [ - "Human rights education and training", - "Racial discrimination" - ] - }, - { - "text": "Further strengthen CHRAJ for its compliance with the Paris Principles", - "values": [ - "National Human Rights Institution" - ] - }, - { - "text": "Engage further with the Human Rights Council and its mechanisms and consider positively the pending requests for visits by mandate holder and extend an open invitation to all special procedures of the HRC", - "values": [ - "Special procedures", - "UPR process" - ] - }, - { - "text": "Cooperate fully and effectively with independent human rights monitoring bodies, including United Nations treaty bodies ", - "values": [ - "Special procedures", - "Treaty bodies", - "UPR process" - ] - }, - { - "text": "Endeavour to improve on the institutions of health care delivery in order to facilitate accessible health services for its citizens, especially women and children ", - "values": [ - "Right to health", - "Rights of the Child", - "Women's rights" - ] - }, - { - "text": "Review respective legislation to eliminate the requirement of prior judicial authorization for therapeutic abortion and abortion in cases of rape and incest", - "values": [ - "Women's rights" - ] - }, - { - "text": "Continue strengthening effective job creation programmes to combat poverty and social inequality ", - "values": [ - "Poverty" - ] - }, - { - "text": "Address the root causes of poverty, unemployment and lack of education, particularly those affecting children and juveniles, which would help to combat violence and organized crime - which, not infrequently, are the consequences of disappointment and the hopeless future of unemployed young people - as well as to prevent migration and the involvement of persons in drug trafficking and human trafficking", - "values": [ - "Migrants", - "Rights of the Child", - "Trafficking" - ] - }, - { - "text": "Sign and ratify CAT ", - "values": [ - "International instruments", - "Torture and other CID treatment" - ] - }, - { - "text": "Continue to strengthen measures to promote the economic empowerment of women particularly in the time of the financial crisis", - "values": [ - "Women's rights" - ] - }, - { - "text": "Accede to the International Convention for the Protection of All Persons from Enforced Disappearance", - "values": [ - "Enforced disappearances", - "International instruments" - ] - }, - { - "text": "Commit to actions that strengthen the capacity of the Afghan Independent Human Rights Commission (AIHRC) including providing adequate funding and reviewing the Law on the Structure, Duties and Mandate of the AIHRC to ensure its alignment with Paris Principles ", - "values": [ - "National Human Rights Institution" - ] - }, - { - "text": "Take the necessary steps to ensure that all detainees are afforded a fair trial within a reasonable period", - "values": [ - "Detention" - ] - }, - { - "text": "Ensure that victims of domestic violence have access to adequate assistance, including legal and psychological counselling, medical help and shelter ", - "values": [ - "Rights of the Child", - "Women's rights" - ] - }, - { - "text": "Strengthen and adequately fund the Ombudsman in conformity with the principles relating to the status of national institutions for the promotion and protection of human rights (the Paris Principles)", - "values": [ - "National Human Rights Institution" - ] - }, - { - "text": "Continue the successful policy on the development of human potential ", - "values": [ - "General" - ] - }, - { - "text": "Intensify efforts in the field of ethnic diversity, including by strengthening the inclusive and multicultural education system ", - "values": [ - "Minorities", - "Right to education" - ] - }, - { - "text": "Continue its efforts to vigorously prevent, combat and prosecute violent hate crimes ", - "values": [ - "Other", - "Racial discrimination" - ] - }, - { - "text": "Sign and ratify ICCPR ", - "values": [ - "CP rights - general", - "International instruments" - ] - }, - { - "text": "Continue the result-orientated policy in the field of the fight against infectious diseases, primarily tuberculosis and HIV/AIDS", - "values": [ - "HIV - Aids" - ] - }, - { - "text": "Ratify the Convention on the Rights of the Child and the Convention on the Rights of Persons with Disabilities", - "values": [ - "Disabilities", - "International instruments", - "Rights of the Child" - ] - }, - { - "text": "Amend the Citizenship Law to ensure that all persons born in Romania obtain a nationality, otherwise they would be stateless, regardless of the status of the parents ", - "values": [ - "Statelessness and the right to nationality" - ] - }, - { - "text": "Intensify its efforts against harmful traditional practices and in favour of living conditions in prisons and psychiatric hospitals", - "values": [ - "Detention", - "Torture and other CID treatment" - ] - }, - { - "text": "Follow up its Constitutional Court decision that urges the legislative power to reform the legislation concerning access of indigenous people to radio frequencies to promote, develop and diffuse their languages, traditions and other cultural expression and reform the law on radio communication in order to guarantee the proper and free functioning of local radios", - "values": [ - "Freedom of opinion and expression", - "Indigenous peoples" - ] - }, - { - "text": "Adopt adequate measures for the protection and promotion of religious freedom, in order to ensure effective freedom of worship for all religious communities.", - "values": [ - "Freedom of religion and belief" - ] - }, - { - "text": "Review, with a human rights approach, the legal framework for the promotion of investment so that provisions favour industries which respect human rights and the environment", - "values": [ - "Business and human rights", - "Environment" - ] - }, - { - "text": "Sign and ratify CAT-OP.", - "values": [ - "International instruments", - "Torture and other CID treatment" - ] - }, - { - "text": "Take to ensure the establishment of a body such as the National Human Rights Committee", - "values": [ - "National Human Rights Institution" - ] - }, - { - "text": "Take steps to an early ratification of the ICCPR", - "values": [ - "CP rights - general", - "International instruments" - ] - }, - { - "text": "Intensify its efforts to combat xenophobia, islamophobia and refugee hatred, and take the necessary measures to condemn hate speech", - "values": [ - "Asylum-seekers - refugees", - "Racial discrimination" - ] - }, - { - "text": "Guarantee access to primary and secondary education to all children, including migrant children and asylum seekers ", - "values": [ - "Asylum-seekers - refugees", - "Migrants", - "Right to education", - "Rights of the Child" - ] - }, - { - "text": "Have a programme of education and training in human rights as a prerequisite for anyone wishing to join the armed forces ", - "values": [ - "Human rights education and training" - ] - }, - { - "text": "Continue its efforts to promote gender equality by ensuring that women and men in Bangladesh enjoy equal rights in all life of the country ", - "values": [ - "Women's rights" - ] - }, - { - "text": "Continue its efforts in the fight against hunger, in order to achieve food security and ensure that all people, at all times, have physical, social and economic access to sufficient, safe and nutritious food that meets their dietary needs and food preferences for an active and healthy life", - "values": [ - "Right to food" - ] - }, - { - "text": "Reduce the use of security laws that limit public discussion about multi-party democracy or criticism of the Government, including by bringing security and propaganda laws into compliance with ICCPR.", - "values": [ - "CP rights - general", - "International instruments" - ] - }, - { - "text": "Continue and enlarge social security networks for the poor, vulnerable and other disadvantaged groups, improving their well-being and their participation in social associations and social groups", - "values": [ - "Poverty" - ] - }, - { - "text": "Continue its efforts to protect and promote women's rights, including giving due considerations to the applications of quota system in all State bodies as put forwarded by the National Conference for Women ", - "values": [ - "Women's rights" - ] - }, - { - "text": "Implement the recommendations of the Council and recommendations of the special procedures, particularly the Special Rapporteur on the situation of human rights in the Palestinian territories occupied since 1967 and the Special Committee on Israeli Practices in the Occupied Palestinian Territories.", - "values": [ - "Special procedures" - ] - }, - { - "text": "If Brunei continues to use the death penalty, it should meet at least the minimum international standards on death penalty (ECOSOC resolution 1984/50) and the relevant provisions of the International Covenant on Civil and Political Rights (articles 6 and 14) and the Convention on the Rights of the Child (article 37) ", - "values": [ - "Death penalty", - "International instruments" - ] - }, - { - "text": "Overcome the challenges and constraints in the free primary education programme, particularly the social factors that limit enrolment for primary education and shortage of appropriately qualified teachers", - "values": [ - "Right to education" - ] - }, - { - "text": "Ensure that Local Preventive Mechanisms are created by encouraging states to do so as envisaged by the national law on torture and expand the application of custody hearings to the entire country as set by Resolution 213 of the National Council of Justice", - "values": [ - "Justice", - "Torture and other CID treatment" - ] - }, - { - "text": "Authorize independent entities, such as journalists and local, national and international organizations, to travel freely in all areas of the detention centre for migrants with the aim to monitor the conditions of detention", - "values": [ - "Civil society", - "Detention", - "Freedom of the press", - "Migrants" - ] - }, - { - "text": "Further develop policies to ensure full enjoyment of rights and equality to lesbian, gay, bisexual, transgender and intersex persons", - "values": [ - "Sexual Orientation and Gender Identity" - ] - }, - { - "text": "Take measures to reduce unemployment, especially among young people, and promote their integration into the social and political life of the country, with the goal of maintaining and enhancing its stability and security", - "values": [ - "Development" - ] - }, - { - "text": "Strengthen the independence of the judiciary, put an end to extrajudicial executions and arbitrary detentions, and strengthen the penitentiary authority", - "values": [ - "Detention", - "Extrajudicial executions", - "Justice" - ] - }, - { - "text": "Continue efforts towards bringing national laws related to women and children in line with its obligations under international human rights law", - "values": [ - "International instruments", - "Rights of the Child", - "Women's rights" - ] - }, - { - "text": "Stop the offshore processing of asylum requests", - "values": [ - "Asylum-seekers - refugees" - ] - }, - { - "text": "Ensure the mechanism for handling allegations of ill-treatment by law enforcement officials of members of marginalised groups, such as migrants, asylum-seekers and Roma, is made operational as soon as possible, and that its investigations are carried out in a prompt, thorough and impartial manner", - "values": [ - "Asylum-seekers - refugees", - "Migrants", - "Minorities", - "Torture and other CID treatment" - ] - }, - { - "text": "Respond positively to the request to visit the country made by the Special Rapporteur on freedom of religion in 2008.", - "values": [ - "Freedom of religion and belief", - "Special procedures" - ] - }, - { - "text": "Enhance the protection of the rights of the child", - "values": [ - "Rights of the Child" - ] - }, - { - "text": "Continue to ensure better protection of the rights of all citizens through implementing an anti-discrimination law which could effectively protect different social groups, particularly the most vulnerable ", - "values": [ - "Other" - ] - }, - { - "text": "Continue implementing OP-CAT, through its national law passed to this effect ", - "values": [ - "Detention", - "International instruments", - "Torture and other CID treatment" - ] - }, - { - "text": "Repeal all discriminatory provisions in the personal status code and ensure equality of rights between men and women", - "values": [ - "Women's rights" - ] - }, - { - "text": "Accept the outstanding requests for visits from the Special proceduress and respond to the communications sent by OHCHR which are awaiting replies ", - "values": [ - "Special procedures" - ] - }, - { - "text": "Ratify the Convention on the Rights of Persons with Disabilities, and in so doing, ensure adequate education for children with mental and physical disabilities", - "values": [ - "Disabilities", - "International instruments", - "Right to education", - "Rights of the Child" - ] - }, - { - "text": "Ensure that the human rights of all Gambian citizens are respected, regardless of sexual orientation or gender identity, by repealing discriminatory laws that are inconsistent with international human rights principles", - "values": [ - "Sexual Orientation and Gender Identity" - ] - }, - { - "text": "Ratify the 1954 Convention relating to the Status of Stateless Persons, the 1961 Convention on the Reduction of Statelessness and the Council of Europe Convention on Preventing and Combating Violence against Women and Domestic Violence", - "values": [ - "International instruments", - "Statelessness and the right to nationality", - "Women's rights" - ] - }, - { - "text": "Reconsider all its policies in relation to refugees and asylum seekers so that they are not deprived from their fundamental and social rights, in particular to ensure that children and unaccompanied minors are not detained or placed in adult detention centres", - "values": [ - "Asylum-seekers - refugees", - "Detention", - "ESC rights - general" - ] - }, - { - "text": "Fulfil all the commitments made on transitional justice, including through the creation of an accountability mechanism which is credible, victim-centric and supported by international practitioners and through full operationalization of independent and impartial work of the recently established Office of Missing Persons", - "values": [ - "Justice" - ] - }, - { - "text": "Revise its legislation on freedom of the press in order to bring it into line with international standards", - "values": [ - "Freedom of the press" - ] - }, - { - "text": "Continue its efforts of raising awareness on human rights issues among its population", - "values": [ - "Human rights education and training" - ] - }, - { - "text": "Ratify the International Convention on the Protection of the Rights of All Migrant Workers and Members of Their Families Convention on Migrant Workers", - "values": [ - "International instruments", - "Labour", - "Migrants" - ] - }, - { - "text": "Continue its efforts to implement the Paris Agreement on climate change, including through multilateral cooperation", - "values": [ - "Environment" - ] - }, - { - "text": "Ensure that all girls, Dalit children and children belonging to ethnic minorities have equal access to quality education ", - "values": [ - "Minorities", - "Right to education", - "Rights of the Child", - "Women's rights" - ] - }, - { - "text": "Ensure implementation of legislation and other measures protecting the rights of persons with disabilities by, inter alia, allocating adequate funding for projects aiming at establishing a barrier-free living environment, and guaranteeing for children with disabilities equal access to education in mainstream schools", - "values": [ - "Disabilities", - "Right to education", - "Rights of the Child" - ] - }, - { - "text": "Step up efforts to eradicate child abuse and domestic violence through the effective implementation of national strategies ", - "values": [ - "Rights of the Child", - "Women's rights" - ] - }, - { - "text": "Continue to protect, through legal and administrative acts, freedom of expression and freedom of the press, as well as access to information ", - "values": [ - "Freedom of opinion and expression", - "Freedom of the press" - ] - }, - { - "text": "Pursue its efforts to combat administrative and financial corruption.", - "values": [ - "Corruption" - ] - }, - { - "text": "Take further steps to address ethnic profiling in practice ", - "values": [ - "Racial discrimination" - ] - }, - { - "text": "Prohibit incitement to hatred and undertake thorough investigations into incitement to hatred and racism in the media and bring perpetrators to justice", - "values": [ - "Racial discrimination" - ] - }, - { - "text": "Consider intensifying its efforts for human rights education across the spectrum of the Mexican establishment and organisations for a proper dissemination and implementation of the bold measures announced in its National Report", - "values": [ - "Human rights education and training" - ] - }, - { - "text": "Continue building on ongoing efforts by fostering open discussions in communities still engaging in female genital mutilation practice ", - "values": [ - "Rights of the Child", - "Torture and other CID treatment", - "Women's rights" - ] - }, - { - "text": "Raise the minimum age of criminal responsibility", - "values": [ - "Justice", - "Rights of the Child" - ] - }, - { - "text": "Take the necessary steps to ensure, in the context of accelerated integration, that all child soldiers are released from the Congolese army", - "values": [ - "International humanitarian law", - "Rights of the Child" - ] - }, - { - "text": "Take all necessary measures for the realization of effective compulsory and free-of-cost primary education for all ", - "values": [ - "Right to education" - ] - }, - { - "text": "Dedicate sufficient resources to processes for granting land titles and recognition of land rights for Indigenous peoples, including support for an official comprehensive database of Indigenous territories", - "values": [ - "Indigenous peoples", - "Right to land" - ] - }, - { - "text": "Ratify the optional protocols to the Convention on the Elimination of All Forms of Discrimination against Women and the Convention against Torture and Other Cruel, Inhuman or Degrading Treatment or Punishment ", - "values": [ - "Detention", - "International instruments", - "Torture and other CID treatment", - "Women's rights" - ] - }, - { - "text": "Continue positive measures and actions on behalf of children's rights ", - "values": [ - "Rights of the Child" - ] - }, - { - "text": "Ratify and fully align its national legislation with the Rome Statute of the ICC, and accede to the Agreement on Privileges and Immunities of the Court", - "values": [ - "International instruments", - "Justice" - ] - }, - { - "text": "Repeal the legislation which requires the transfer of pregnant girls to night-time schools and take action to ensure that pregnant students do not face restrictions in their access to education", - "values": [ - "Right to education", - "Rights of the Child", - "Women's rights" - ] - }, - { - "text": "Strengthen the national human rights institution of Bahrain and ensure its full compliance with the Paris Principles", - "values": [ - "National Human Rights Institution" - ] - }, - { - "text": "Take steps to ensure the acceptance and the general public knowledge of the existing law on anti-discrimination and to increase the practical use of the law", - "values": [ - "Other" - ] - }, - { - "text": "Strengthen efforts on the full and effective implementation of the United Nations human rights conventions that the country acceded to", - "values": [ - "International instruments" - ] - }, - { - "text": "Take immediate measures in order to comply fully with the Optional Protocol to the Convention on the Rights of the Child on the involvement of children in armed conflict.", - "values": [ - "International humanitarian law", - "International instruments", - "Rights of the Child" - ] - }, - { - "text": "Take appropriate measures to strengthen the fight against discriminatory practices and violence against women", - "values": [ - "Women's rights" - ] - }, - { - "text": "Address particularly the question of inequality in access to education, as a core aspect of the realization of the right to education ", - "values": [ - "Right to education" - ] - }, - { - "text": "Apply the existing legal dispositions on the combating of discrimination and continue the fight on the trafficking on human beings ", - "values": [ - "Trafficking" - ] - }, - { - "text": "Pay special attention to combating domestic and sexual violence, by implementing a new national action plan and ensure that it reinforces the provision of services to women and girl victims of sexual violence", - "values": [ - "Rights of the Child", - "Women's rights" - ] - }, - { - "text": "Establish an independent human rights commission in accordance with the Paris Principles", - "values": [ - "National Human Rights Institution" - ] - }, - { - "text": "Continue to advance and gradually improve the quality of education provided, as part of the wide programme adopted by Ethiopia to this end ", - "values": [ - "Right to education" - ] - }, - { - "text": "Adopt, in the near future, the proposed laws on domestic violence and sexual offences, thereby prohibiting practices that legalize violence against women", - "values": [ - "Women's rights" - ] - }, - { - "text": "Ensure more effective protection of children and better promotion of their well-being in every dimension, particularly with respect to trafficking and sexual exploitation, excisions, early marriages and forced labour", - "values": [ - "Labour", - "Rights of the Child", - "Torture and other CID treatment", - "Trafficking", - "Women's rights" - ] - }, - { - "text": "Maintain, during the implementation phase of the recommendations made during the meeting of this Working Group, the inclusive approach adopted during the preparatory phase of the national report", - "values": [ - "UPR process" - ] - }, - { - "text": "Sign and ratify OP-CAT as recommended by Spain in 2010", - "values": [ - "Detention", - "International instruments", - "Torture and other CID treatment" - ] - }, - { - "text": "Take measures to bring about a change in attitudes, with a view to eliminating stereotypes associated with traditional gender roles in the family and in society ", - "values": [ - "Women's rights" - ] - }, - { - "text": "Examine the possibility of strengthening measures to eliminate all discriminatory treatment related to sexual orientation or gender identity", - "values": [ - "Sexual Orientation and Gender Identity" - ] - }, - { - "text": "Cooperate with the investigations and comply with the recommendations of the International Criminal Court in line with the Security Council", - "values": [ - "International instruments", - "Justice" - ] - }, - { - "text": "Adopt an anti-discrimination law that would ensure equal treatment and non-discrimination on any grounds, including sexual orientation and gender identity.", - "values": [ - "Sexual Orientation and Gender Identity" - ] - }, - { - "text": "Continue implementing the national end child marriage project and promote awareness of the negative consequences of child marriage and teenage pregnancy", - "values": [ - "Rights of the Child", - "Women's rights" - ] - }, - { - "text": "Move forward, at the earliest possible opportunity, with the adoption of the draft Water Act to establish a legal framework and put in place water resources and sanitation infrastructure, including adequate collection, storage and distribution mechanisms to alleviate the challenges of scarcity and to ensure that all its citizen's right to safe drinking water and sanitation are safeguarded ", - "values": [ - "Right to water and sanitation" - ] - }, - { - "text": "Continue its efforts to overcome its domestic challenges and constraints with a view to improving the human rights situation in the country", - "values": [ - "General" - ] - }, - { - "text": "Take further activities to improve the situation of women and to secure children's rights", - "values": [ - "Rights of the Child", - "Women's rights" - ] - }, - { - "text": "Establish a moratorium aimed at abolishing the death penalty", - "values": [ - "Death penalty" - ] - }, - { - "text": "Further build the necessary capacity for the relevant stakeholders, including government agencies, national human rights institutions and legislative as well as judicative branches, through inter alia, international cooperation on technical and capacity building programmes", - "values": [ - "National Human Rights Institution", - "Technical assistance and cooperation" - ] - }, - { - "text": "Put further effort and attention into the prevention of violence against children, expressly prohibit corporal punishment by law in all settings, eliminate the worst forms of child labour and prevent children from living in the street", - "values": [ - "Labour", - "Rights of the Child", - "Torture and other CID treatment" - ] - }, - { - "text": "Make greater effort to ensure that victims of human rights violations, most often women and children, are allowed to exercise their right to seek redress in the formal judicial system, and to prevent any practices that fall short of international human rights standards ", - "values": [ - "International instruments", - "Justice", - "Rights of the Child", - "Women's rights" - ] - }, - { - "text": "Foster and safeguard the family, based upon the stable relationship between a man and a woman, as the natural and fundamental unit of society ", - "values": [ - "Other" - ] - }, - { - "text": "Continue the de facto moratorium on executions with a view to abolishing the death penalty and, in this respect, commute all death sentences into terms of imprisonment ", - "values": [ - "Death penalty" - ] - }, - { - "text": "Take steps towards the abolition of the death penalty and, during the process to abolish it, remove mandatory death sentences and release basic information about the death penalty, including the number of people sentenced to death and awaiting execution on death row ", - "values": [ - "Death penalty" - ] - }, - { - "text": "Call upon the international community to pay attention to the difficulties associated with the\npresent stage of development in Bhutan and provide the needed assistance to it to strengthen the\ncapacity of its national mechanisms responsible for preparing periodic reports for treaty bodies and to\ntrain its law enforcement officials, judges and police officers in the area of human rights ", - "values": [ - "Human rights education and training", - "Technical assistance and cooperation", - "Treaty bodies" - ] - }, - { - "text": "That the ongoing constitutional reform should provide for the comprehensive promotion and protection of all human rights, with particular emphasis on the rights of women and children ", - "values": [ - "Rights of the Child", - "Women's rights" - ] - }, - { - "text": "Undertake the Law's implementation by all relevant authorities, at the federal, state and municipal levels, including in the prevention and eradication of violence against women, as well as care for victims", - "values": [ - "Women's rights" - ] - }, - { - "text": "Sign the Second Optional Protocol to the International Convention on Civil and Political Rights, aiming at the abolition of the death penalty, as a step towards accelerating the approval of the new draft Penal Code and the draft Criminal Procedure Code that would include the abolition of the death penalty ", - "values": [ - "Death penalty", - "International instruments" - ] - }, - { - "text": "Monitor the implementation of Act 779 and provide instruction on the dynamics of violence against women to all persons participating in the mediation processes envisaged under the Act, in order to ensure the full protection of the rights of women ", - "values": [ - "Women's rights" - ] - }, - { - "text": "Repeal article 158 of its Criminal Code and ensure that all acts of sexual violence against women and girls are properly investigated and perpetrators are punished", - "values": [ - "Rights of the Child", - "Women's rights" - ] - }, - { - "text": "Make every effort to preserve the climate of peace achieved by the Comprehensive Peace Agreement during the six years of transition ", - "values": [ - "Other" - ] - }, - { - "text": "Pursue its efforts to root out any cases of violations of women's rights and domestic violence", - "values": [ - "Rights of the Child", - "Women's rights" - ] - }, - { - "text": "Continue its positive work to combat racial discrimination and related intolerance ", - "values": [ - "Racial discrimination" - ] - }, - { - "text": "Consider the complete abolition of capital punishment in its internal legislation.", - "values": [ - "Death penalty" - ] - }, - { - "text": "Step up its efforts towards advancing the specific courses of action taken in its struggle against discrimination such as programmes to fight poverty and social exclusion, the Strategy for Roma Integration up to 2020 and the endorsement of the Committee for the Rights of LGBTI persons, and launch campaigns to promote tolerance and respect for diversity aimed at all segments of society ", - "values": [ - "Human rights education and training", - "Minorities", - "Poverty", - "Racial discrimination", - "Sexual Orientation and Gender Identity" - ] - }, - { - "text": "Define torture in its Criminal Procedure Code in accordance with the CAT standards", - "values": [ - "International instruments", - "Torture and other CID treatment" - ] - }, - { - "text": "Increase efforts to effectively prevent trafficking in human beings for purposes of sexual exploitation and forced labour, including child prostitution ", - "values": [ - "Labour", - "Rights of the Child", - "Trafficking" - ] - }, - { - "text": "Take all necessary measures to protect rights of migrant workers, especially those regarding means of remedies", - "values": [ - "Labour", - "Migrants" - ] - }, - { - "text": "Implement the recommendations contained in the 2010 OHCHR report on "Investigating allegations of extra-judicial killings in the Terai", inter alia: (a) fully investigate all allegations of the use of extra-judicial killings in the context of the current Special Security Plan, as well as past and future security operations, (b) establish external oversight mechanisms, such as an independent police complaints commission or special investigative unit to investigate and prosecute crimes allegedly committed by State actors, (c) adopt measures to support and protect witnesses as well as victims and their family members.", - "values": [ - "Extrajudicial executions", - "Human rights violations by state agents", - "Justice" - ] - }, - { - "text": "Continue improving the protection of national minorities in Slovakia, such as through institutional and legislative developments ", - "values": [ - "Minorities" - ] - }, - { - "text": "Join CRPD in order to protect persons with disabilities in Angola", - "values": [ - "Disabilities", - "International instruments" - ] - }, - { - "text": "Human rights training for public civil servants, generating continuous training processes for public officials and officials in the area of justice", - "values": [ - "Human rights education and training", - "Justice" - ] - }, - { - "text": "Continue to successfully promote human rights by reinforcing and increasing the capacity of the Office of the Ombudsman", - "values": [ - "National Human Rights Institution" - ] - }, - { - "text": "Continue its programme for equal access to education for women and rural populations", - "values": [ - "Right to education", - "Women's rights" - ] - }, - { - "text": "Continue its efforts in order to promote human rights and public liberties", - "values": [ - "General" - ] - }, - { - "text": "Thoroughly investigate allegations of excessive use of force by police officers, and in this vein, ensure that law enforcement officials have the appropriate human rights training", - "values": [ - "Human rights education and training", - "Human rights violations by state agents" - ] - }, - { - "text": "Adopt the Prevention and Prohibition of Torture Regulation to make the Prevention and Prohibition of Torture Act operational", - "values": [ - "International instruments", - "Torture and other CID treatment" - ] - }, - { - "text": "Confirm its commitment to equality and non-discrimination by explicitly prohibiting any discrimination on grounds of sexual orientation and gender identity ", - "values": [ - "Sexual Orientation and Gender Identity" - ] - }, - { - "text": "Take the necessary steps to ensure that all operations of intelligence agencies are monitored by an independent oversight mechanism", - "values": [ - "Privacy" - ] - }, - { - "text": "Pursue the adoption of legislative and administrative measures to promote the social integration of children in conflict with the law, in particular the implementation of a crime policy that takes account of the best interests of the child, effective use of alternative measures to pretrial detention and the strengthening of a special juvenile jurisdiction", - "values": [ - "Detention", - "Justice", - "Rights of the Child" - ] - }, - { - "text": "Enhance cooperation at the regional and international levels with relevant stakeholders with a view to achieving relevant Millennium Development Goals, related to poverty eradication, nutrition, sanitation and environmental sustainability ", - "values": [ - "Development", - "Environment", - "Poverty", - "Right to food", - "Right to health", - "Right to water and sanitation" - ] - }, - { - "text": "Redress housing shortage by adopting a national strategy and a plan of action", - "values": [ - "Right to housing" - ] - }, - { - "text": "Take the measures necessary to fully respect the right to freedom of opinion and expression, including by introducing a law to allow independent media and enable journalists to exercise their profession freely ", - "values": [ - "Freedom of opinion and expression", - "Freedom of the press" - ] - }, - { - "text": "Establish coordinated disaster risk management strategies and action plan", - "values": [ - "Environment" - ] - }, - { - "text": "Adopt necessary legislative measures to halt impunity, with effective punishment of sexual violence and of recruitment of children into armed conflict", - "values": [ - "Impunity", - "International humanitarian law", - "Rights of the Child", - "Women's rights" - ] - }, - { - "text": "Repeal legislation, in particular article 489 of the Criminal Code, criminalizing consensual sexual conduct between same-sex adults", - "values": [ - "Sexual Orientation and Gender Identity" - ] - }, - { - "text": "Ratify the ILO Prevention of Major Industrial Accidents Convention, 1993 No. 174", - "values": [ - "International instruments", - "Labour" - ] - }, - { - "text": "Continue with the efforts to fight against discrimination suffered by children, especially girls with disabilities", - "values": [ - "Disabilities", - "Rights of the Child", - "Women's rights" - ] - }, - { - "text": "Develop human rights education and training to members of the police, military, prison and detention staff and judiciary in order to include specific focus on the protection of the rights of women, children and persons of minority ethnicity or sexual orientation and gender identity", - "values": [ - "Human rights education and training", - "Minorities", - "Rights of the Child", - "Sexual Orientation and Gender Identity", - "Women's rights" - ] - }, - { - "text": "Continue its cooperation with the United Nations and other international organizations to strengthen human rights ", - "values": [ - "Technical assistance and cooperation" - ] - }, - { - "text": "Promptly and impartially investigate all allegations of torture, and prosecute those responsible for ordering, carrying out or acquiescing in torture or ill-treatment", - "values": [ - "Torture and other CID treatment" - ] - }, - { - "text": "Continue its efforts for the promotion and protection of human rights, particularly in the area of building a more robust national human rights architecture and overcoming the capacity constraints emanating from the lack of resources and technical expertise", - "values": [ - "General" - ] - }, - { - "text": "Consider passing legislation on family law containing clear and non-discriminatory provisions on marriage, divorce, inheritance and child custody ", - "values": [ - "Women's rights" - ] - }, - { - "text": "Further strengthen law enforcement and judicial system in the effort to address impunity and prevent the incidence of violence as well as sexual abuse of women and girls", - "values": [ - "Impunity", - "Justice", - "Rights of the Child", - "Women's rights" - ] - }, - { - "text": "Continue to work and coordinate with countries in the region to strengthen the regional framework to deal with irregular migration and human trafficking in a comprehensive and sustainable manner, bearing in mind international human rights and humanitarian principles ", - "values": [ - "Trafficking" - ] - }, - { - "text": "Respect all the historical and human rights of the Palestinians", - "values": [ - "Other" - ] - }, - { - "text": "Take further measures to strengthen the legislative framework on female genital mutilation, whilst also ensuring effective implementation, monitoring and investigation", - "values": [ - "Rights of the Child", - "Torture and other CID treatment", - "Women's rights" - ] - }, - { - "text": "Consider the possibility of ratifying the Rome Statute and fully align its national legislation with the obligations under that instrument, including by incorporating provisions to investigate and prosecute genocide, crimes against humanity and war crimes by the national courts ", - "values": [ - "International instruments", - "Justice" - ] - }, - { - "text": "Undertake steps to guarantee that trials take place within a reasonable period of time, and that special measures be taken to address the backlog of criminal cases ", - "values": [ - "Justice" - ] - }, - { - "text": "Ratify the Optional Protocol to the Convention on the Rights of the Child on the involvement of children in armed conflict, signed in 2005, without reservation, and incorporate it into domestic law", - "values": [ - "International humanitarian law", - "International instruments", - "Rights of the Child" - ] - }, - { - "text": "Promote the effective access to basic social services for the indigenous minority including San and Himba on an equal footing with the rest of the society, as well as rapid adoption and effective implementation of the "White Paper on Indigenous Rights" drafted by the Ombudsman Office", - "values": [ - "Indigenous peoples", - "National Human Rights Institution" - ] - }, - { - "text": "Work through the United Nations mechanism in progressive development of the third generation of human rights, particularly the value of international solidarity", - "values": [ - "Other" - ] - }, - { - "text": "Adopt a policy of prevention and public awareness, in addition to the work done by NGOs and the Vanuatu Women's Centre ", - "values": [ - "Civil society", - "Human rights education and training", - "Women's rights" - ] - }, - { - "text": "Continue to take effective measures to promote gender equality and to combat violence against women", - "values": [ - "Women's rights" - ] - }, - { - "text": "Explore the possibility of establishing an independent national human rights institution in conformity with the Paris Principles", - "values": [ - "National Human Rights Institution" - ] - }, - { - "text": "Seek technical assistance from the United Nations Children's Fund (UNICEF), the International Labour Organization and other relevant organizations in order to combat the spread of diseases, such as HIV/AIDS and malaria, and to allocate more financial resources to decrease the high rates of maternal and infant mortality ", - "values": [ - "HIV - Aids", - "Right to health", - "Rights of the Child", - "Technical assistance and cooperation", - "Women's rights" - ] - }, - { - "text": "Carry out a review of the Family Code and amend the relevant provisions to ensure equality between men and women with regard to marriage, divorce and inheritance ", - "values": [ - "Women's rights" - ] - }, - { - "text": "Promote further comprehensive protection of the rights of children", - "values": [ - "Rights of the Child" - ] - }, - { - "text": "Redouble its efforts in the area of poverty eradication, including by allocating adequate human and financial resources and providing support and material assistance to the most marginalised and disadvantage groups in the country ", - "values": [ - "Poverty" - ] - }, - { - "text": "Continue adopting measures to strength intercultural education and human rights education ", - "values": [ - "Human rights education and training", - "Right to education" - ] - }, - { - "text": "Bring the penal system of the country in accordance with the international standards, in particular to cancel the current mechanism of preventive detention and to strengthen the control over the behaviour of law enforcement agencies to stop the torture and ill-treatment", - "values": [ - "Detention", - "Human rights violations by state agents", - "Torture and other CID treatment" - ] - }, - { - "text": "Adopt all necessary measures to ensure the right to life and protect individuals.", - "values": [ - "Other" - ] - }, - { - "text": "Strengthen national mechanisms for the protection of the rights of socially vulnerable groups of the population, including women, children and persons with disabilities", - "values": [ - "Disabilities", - "Minorities", - "Rights of the Child", - "Women's rights" - ] - }, - { - "text": "Intensify the efforts already undertaken to better ensure the right to adequate housing, especially for vulnerable groups and low income families", - "values": [ - "Right to housing" - ] - }, - { - "text": "Continue to adopt necessary measures to strengthen social and cultural rights", - "values": [ - "ESC rights - general" - ] - }, - { - "text": "Make further efforts to protect and promote the human rights of indigenous people, including the taking of measures to address the issue of poverty among them", - "values": [ - "Indigenous peoples", - "Poverty" - ] - }, - { - "text": "Ensure the full independence of the judiciary ", - "values": [ - "Justice" - ] - }, - { - "text": "Continue enhancing women\u2019s economic empowerment, particularly in the arrangements of income-generating activities", - "values": [ - "Women's rights" - ] - }, - { - "text": "Respond to questionnaires of special procedure mandate holders ", - "values": [ - "Special procedures" - ] - }, - { - "text": "Continue and strengthen efforts to consult with indigenous peoples on decisions that directly or indirectly affect their way of life", - "values": [ - "Indigenous peoples" - ] - }, - { - "text": "Consider the possibility of acceding to the International Convention on the Protection of the Rights of All Migrant Workers and Members of Their Families ", - "values": [ - "International instruments", - "Labour", - "Migrants" - ] - }, - { - "text": "That Lesotho ensures the effective implementation of its human trafficking legislation", - "values": [ - "Trafficking" - ] - }, - { - "text": "Implement constitutional reform prohibiting the death penalty and in the meantime a moratorium for an indefinite period be adopted in line with international and African trends ", - "values": [ - "Death penalty" - ] - }, - { - "text": "Continue strengthening efforts to ratify CED ", - "values": [ - "Enforced disappearances", - "International instruments" - ] - }, - { - "text": "Step up efforts in implementing the current national priorities, including the policy for youth and women advancement, Education Strategic Plan, Climate Change Adaptation Program and the National Sustainable Development Strategy ", - "values": [ - "Development", - "Environment", - "Right to education", - "Women's rights" - ] - }, - { - "text": "Strengthen the work of the National Human Rights Commission, particularly in fighting against arbitrary detention ", - "values": [ - "National Human Rights Institution" - ] - }, - { - "text": "Continue to strengthen its national migration policy, bearing in mind important pillars like protection, integration, non-discrimination and non-refoulement", - "values": [ - "Migrants", - "Racial discrimination" - ] - }, - { - "text": "Adopt comprehensive legislation to fight all forms of discrimination, in particular against women", - "values": [ - "Women's rights" - ] - }, - { - "text": "Ensure that all human rights of indigenous persons are promoted and respected, inter alia by ensuring the participation of concerned groups in the decision-making processes that affect their human rights and by ensuring that the application of the Counter-Terrorism Law does not undermine the human rights of indigenous as well as other persons ", - "values": [ - "Counter-terrorism", - "Indigenous peoples" - ] - }, - { - "text": "Strengthen effective and transparent measures to prevent and punish all forms of discrimination against minorities. Along the same lines, strengthen the measures to ensure better representation of national minorities in legislative and executive governmental bodies", - "values": [ - "Minorities" - ] - }, - { - "text": "Carry out measures so that, especially when treating with migrants and other vulnerable persons, all actions that are taken are respectful of the guarantees and protections established under international human rights instruments", - "values": [ - "International instruments", - "Migrants" - ] - }, - { - "text": "Ratify the Convention for the Protection of All Persons Against Enforced Disappearances ", - "values": [ - "Enforced disappearances", - "International instruments" - ] - }, - { - "text": "Continue the work to build-up the capacity in the area of human rights protection, including through strengthening the national human rights institution", - "values": [ - "National Human Rights Institution" - ] - }, - { - "text": "Continue its reforms to improve policies and programs towards promotion and protection of all human rights", - "values": [ - "General" - ] - }, - { - "text": "Continue with its commendable efforts to promote and protect human rights and freedoms ", - "values": [ - "General" - ] - }, - { - "text": "Increase all kinds of measures aimed at establishing a national human rights institution, in compliance with the Paris Principles, with the assistance of the Office of the United Nations High Commissioner for Human Rights ", - "values": [ - "National Human Rights Institution", - "Technical assistance and cooperation" - ] - }, - { - "text": "Introduce policies oriented towards a better inclusion of all persons with disabilities in all areas of society, in particular children", - "values": [ - "Disabilities", - "Rights of the Child" - ] - }, - { - "text": "Continue taking measures to further promote and guarantee the right to education in the country, and particularly to increase school attendance among young people ", - "values": [ - "Right to education" - ] - }, - { - "text": "Decriminalize defamation and place it within the civil code in accordance with international standards, and adopt a freedom of information law in line with international standards", - "values": [ - "Freedom of opinion and expression" - ] - }, - { - "text": "Continue its efforts to reduce the maternal and child mortality rates, in particular by taking preventive measures, conducting vaccination campaigns, as well as formulating a comprehensive plans and strategy in health sectors", - "values": [ - "Right to health", - "Rights of the Child", - "Women's rights" - ] - }, - { - "text": "In line with the Government's commitment to the rights of persons with disabilities, adhere to the principles set out in the Convention on the Rights of Persons with Disabilities ", - "values": [ - "Disabilities", - "International instruments" - ] - }, - { - "text": "Ensure that people living with HIV-AIDS, especially children, can fully enjoy their human rights through, among others, equitable access to basic services and education.", - "values": [ - "HIV - Aids", - "Rights of the Child" - ] - }, - { - "text": "Take effective measures to prevent sex tourism, and combat the sale and trafficking and sexual exploitation of children ", - "values": [ - "Rights of the Child", - "Trafficking" - ] - }, - { - "text": "Eliminate capital punishment and corporal punishment", - "values": [ - "Death penalty", - "Torture and other CID treatment" - ] - }, - { - "text": "Investigate all allegations of torture and ill-treatment, including against persons detained for reasons linked to the conflict, in accordance with its international obligations", - "values": [ - "Detention", - "Impunity", - "International instruments", - "Torture and other CID treatment" - ] - }, - { - "text": "Adopt legislation to combat discrimination, racism, extremism and xenophobia", - "values": [ - "Racial discrimination" - ] - }, - { - "text": "Consider ratifying the 1951 Convention relating to the Status of Refugees and its 1967 Protocol", - "values": [ - "Asylum-seekers - refugees", - "International instruments" - ] - }, - { - "text": "Make additional efforts to work with refugees and migrants", - "values": [ - "Asylum-seekers - refugees", - "Migrants" - ] - }, - { - "text": "Ensure that sexual orientation, gender identity and expression are included as prohibited grounds for discrimination in the legislation, and take steps towards the legal recognition of the identity of transgender persons", - "values": [ - "Sexual Orientation and Gender Identity" - ] - }, - { - "text": "Assess the additional measures required to eradicate domestic violence as a serious problem in Norway by developing and maintaining a comprehensive database containing information on the victims and perpetrators of domestic violence ", - "values": [ - "Rights of the Child", - "Women's rights" - ] - }, - { - "text": "Take steps to strengthen legal aid programmes and speed up the scheduling of trial dates and provide for better living conditions in both prisons and detention centres ", - "values": [ - "Detention", - "Justice" - ] - }, - { - "text": "Enact legislation ensuring freedom of religion and belief for all religious groups and consider abolishing the so-called blasphemy laws", - "values": [ - "Freedom of opinion and expression", - "Freedom of religion and belief" - ] - }, - { - "text": "Continue its humanitarian role and its role in development ", - "values": [ - "Development" - ] - }, - { - "text": "Redouble efforts aimed at combating violence against women and children, especially those with disabilities", - "values": [ - "Disabilities", - "Rights of the Child", - "Women's rights" - ] - }, - { - "text": "Conduct a wide awareness-raising campaign to sensitize society to issues of gender equality", - "values": [ - "Human rights education and training", - "Women's rights" - ] - }, - { - "text": "Review its legislation so that it provides legal support for collective bargaining and the right to strike", - "values": [ - "Freedom of association and peaceful assembly", - "Labour" - ] - }, - { - "text": "Take measures to combat domestic violence, particularly against women", - "values": [ - "Rights of the Child", - "Women's rights" - ] - }, - { - "text": "Continue its constant support to the human rights issues and provide support to the humanitarian efforts", - "values": [ - "General" - ] - }, - { - "text": "Take steps to promote a just and equitable solution through renewed negotiations with affected members of the Central Kalahari Game Reserve communities and respect the economic, social and cultural rights of minorities living or formerly living on the Reserve.", - "values": [ - "Minorities" - ] - }, - { - "text": "Strengthen policies and programmes to address violence against women and combat child prostitution", - "values": [ - "Rights of the Child", - "Trafficking", - "Women's rights" - ] - }, - { - "text": "Continue strengthening the capacity of Government institutions on human rights and to implement the strategies and plans, especially on child labour", - "values": [ - "Labour", - "Rights of the Child" - ] - }, - { - "text": "Strengthen measures to enhance access to education ", - "values": [ - "Right to education" - ] - }, - { - "text": "Give direct constitutional recognition to the rights enshrined in the International Covenant on Economic, Social and Cultural Rights and to guarantee the enforceability by courts", - "values": [ - "ESC rights - general", - "International instruments" - ] - }, - { - "text": "Establish a NHRI in accordance with the Paris Principles promptly.", - "values": [ - "National Human Rights Institution" - ] - }, - { - "text": "Remove all obstacles to the registration and freedom of operation of all political parties and NGOs ", - "values": [ - "Civil society", - "Freedom of association and peaceful assembly" - ] - }, - { - "text": "Stop using chemical weapons as documented by the relevant United Nations organs", - "values": [ - "International humanitarian law" - ] - }, - { - "text": "Fully cooperate with relevant United Nations treaty bodies by implementing their recommendations pertaining to ending racism, racial discrimination, xenophobia and related intolerance ", - "values": [ - "Racial discrimination", - "Treaty bodies" - ] - }, - { - "text": "Adopt and fully implement the Welfare and Development Plan 2016-2023, in accordance with the commitment set out in paragraph 143 of its national report", - "values": [ - "Development" - ] - }, - { - "text": "Take legal and administrative measures to ensure the right to freedom of expression in accordance with international obligations", - "values": [ - "Freedom of opinion and expression" - ] - }, - { - "text": "Raise awareness of children's right to participation in the family and community", - "values": [ - "Human rights education and training", - "Rights of the Child" - ] - }, - { - "text": "Approve in the shortest period of time the new law regarding indigenous peoples with the aim of safeguarding minority rights, specifically those of the Pygmies", - "values": [ - "Indigenous peoples", - "Minorities" - ] - }, - { - "text": "Continue to address the issue of child labour and exploitation and to finalize the draft of the National Action Programme ", - "values": [ - "Labour", - "Rights of the Child" - ] - }, - { - "text": "Promote the adoption of the necessary measures to abolish the death penalty in their judicial system", - "values": [ - "Death penalty" - ] - }, - { - "text": "Allocate the resources necessary to the Office of the Human Rights Commissioner", - "values": [ - "Technical assistance and cooperation" - ] - }, - { - "text": "Follow up on initiatives for establishing an independent national human rights institution to advance its human rights agenda and proceed with this task in conformity with the Paris Principles", - "values": [ - "National Human Rights Institution" - ] - }, - { - "text": "Continue with ongoing efforts to combat violence and crimes against children", - "values": [ - "Rights of the Child" - ] - }, - { - "text": "Adopt measures, including disciplinary measures, in order to raise the awareness of professionals of the education system, in particular teachers, on their obligation of abstaining from resorting to corporal punishment ", - "values": [ - "Right to education", - "Rights of the Child", - "Torture and other CID treatment" - ] - }, - { - "text": "Continue the dialogue and substantive cooperation with human rights non-governmental organizations, in particular those involved in protecting human rights defenders", - "values": [ - "Civil society", - "Human rights defenders" - ] - }, - { - "text": "Establish adequate services and opportunities for children with disabilities", - "values": [ - "Disabilities", - "Rights of the Child" - ] - }, - { - "text": "Include sexual orientation and gender identity and expression among the prohibited grounds of discrimination", - "values": [ - "Sexual Orientation and Gender Identity" - ] - }, - { - "text": "Take measures to ensure consistency and equality across individual States in recognizing same-sex relationships ", - "values": [ - "Sexual Orientation and Gender Identity" - ] - }, - { - "text": "Ensure specific human rights training and education for judicial staff and prison officers and ensure their full accountability for any violation.", - "values": [ - "Human rights education and training" - ] - }, - { - "text": "Place a moratorium on the use of the death penalty ", - "values": [ - "Death penalty" - ] - }, - { - "text": "Prevent and promptly, thoroughly and impartially investigate, prosecute and punish human trafficking and provide adequate protection and means of redress to the victims", - "values": [ - "Trafficking" - ] - }, - { - "text": "Accede to ILO Convention No.169 concerning Indigenous and Tribal Peoples in Independent Countries.", - "values": [ - "Indigenous peoples", - "International instruments" - ] - }, - { - "text": "Continue its efforts in the provision of social care for children at risk and poor families", - "values": [ - "Poverty", - "Rights of the Child" - ] - }, - { - "text": "Continue its efforts to ensure effective protection of minors and women against sexual exploitation ", - "values": [ - "Rights of the Child", - "Women's rights" - ] - }, - { - "text": "Continue prevention, protection and assistance for the victims of trafficking", - "values": [ - "Trafficking" - ] - }, - { - "text": "Continue its efforts on further eradicating poverty and empowering women", - "values": [ - "Poverty", - "Women's rights" - ] - }, - { - "text": "Strengthen the use of existing legal and administrative provisions which guarantee sexual and reproductive health, with the goal of better protecting the rights of women, including the prevention of maternal mortality", - "values": [ - "Right to health", - "Women's rights" - ] - }, - { - "text": "Strengthen the protection safeguards, in particular the control mechanisms that allow the detection of cases of migrants with special needs for international protection ", - "values": [ - "Migrants" - ] - }, - { - "text": "Fulfil its obligations in the field of human rights and step up its efforts with respect to the rights of people from vulnerable groups, including persons in detention, women and children.", - "values": [ - "Detention", - "Rights of the Child", - "Women's rights" - ] - }, - { - "text": "Open legal partnership models to all, regardless of their sexual orientation or gender identity", - "values": [ - "Sexual Orientation and Gender Identity" - ] - }, - { - "text": "Ratify the Second Optional Protocol to the International Covenant on Civil and Political Rights (ICCPR-OP 2) ", - "values": [ - "Death penalty", - "International instruments" - ] - }, - { - "text": "Work with the Greenland authorities to withdraw the territorial reservation for Greenland to the Optional Protocol to the Convention on the Rights of the Child on the sale of children, child prostitution and child pornography", - "values": [ - "International instruments", - "Rights of the Child", - "Trafficking" - ] - }, - { - "text": "Undertake measures to combat racial discrimination, including adoption of a National Action Plan to Combat Racial Discrimination as recommended by the Committee on the Elimination of Racial Discrimination", - "values": [ - "Racial discrimination", - "Treaty bodies" - ] - }, - { - "text": "Extend a standing invitation to all mandate holders of Special Procedures", - "values": [ - "Special procedures" - ] - }, - { - "text": "Ensure that the right of conscientious objection to military service is upheld, and clarify the grounds for acceptance or rejection of such claims ", - "values": [ - "Freedom of religion and belief" - ] - }, - { - "text": "Carry out all necessary efforts to continue to align national law with provisions of the Convention on the Elimination of All Forms of Discrimination against Women and of the Convention on the Rights of the Child", - "values": [ - "International instruments", - "Rights of the Child", - "Women's rights" - ] - }, - { - "text": "Ensure adequate budget allocation to the prevention of sexual and gender-based violence", - "values": [ - "Women's rights" - ] - }, - { - "text": "Consider the possibility of withdrawing its reservation to article 30 of the Convention on the Rights of the Child in line with the principles of the French Constitution, especially after the 2008 reform", - "values": [ - "International instruments", - "Rights of the Child" - ] - }, - { - "text": "Following concerns expressed by the Committee against Torture, investigate reported cases of physical ill-treatment by the police and ensure the rooting out of such unlawful practices ", - "values": [ - "Human rights violations by state agents", - "Treaty bodies" - ] - }, - { - "text": "Provide the Ombudsman with the necessary financial resources, with a view to preserving its "A" status of accreditation", - "values": [ - "National Human Rights Institution" - ] - }, - { - "text": "Adopt legislation to prohibit all forms of corporal punishment in the private sphere", - "values": [ - "Rights of the Child", - "Torture and other CID treatment" - ] - }, - { - "text": "Review and amend the Foreign Contribution (Regulation) Act, which may restrict the access of NGOs to foreign financial assistance and lead to their arbitrary shut-down", - "values": [ - "Civil society" - ] - }, - { - "text": "Ratify the Optional Protocol to the Convention against Torture as soon as possible ", - "values": [ - "Detention", - "International instruments", - "Torture and other CID treatment" - ] - }, - { - "text": "Conduct thorough investigations of alleged hate crimes against lesbian, gay, bisexual, transgender and intersex persons, Roma and refugees", - "values": [ - "Asylum-seekers - refugees", - "Minorities", - "Racial discrimination", - "Sexual Orientation and Gender Identity" - ] - }, - { - "text": "Improve its prison environment as part of a wider effort to protect and promote the human rights of prisoners", - "values": [ - "Detention" - ] - }, - { - "text": "Adopt further measures to provide police, prison and judicial staff with human rights training with specific focus on protection of human rights of women, children, ethnic or national minorities as well as of persons of minority sexual orientation or gender identity and strengthen the accountability of such personnel for their proper conduct, particularly when dealing with cases of hate crimes ", - "values": [ - "Human rights education and training", - "Minorities", - "Rights of the Child", - "Sexual Orientation and Gender Identity", - "Women's rights" - ] - }, - { - "text": "Continue implementing the Legal Sector Master Plan on the Development of the Rule of Law to improve its legal framework and institutional mechanisms", - "values": [ - "Justice" - ] - }, - { - "text": "Step up its efforts to comprehensively address this trend (the trend that political and public figures including media made discriminatory and discriminatory speech against Muslims), not only from the freedom of expression perspective but also from socio-cultural point of view ", - "values": [ - "Freedom of religion and belief", - "Racial discrimination" - ] - }, - { - "text": "Decriminalize irregular migration", - "values": [ - "Migrants" - ] - }, - { - "text": "Continue to implement its effective measures to redress poverty, in particular through its newly established Social Reform Council ", - "values": [ - "Poverty" - ] - }, - { - "text": "Reinforce its cooperation with treaty bodies and special procedures", - "values": [ - "Special procedures", - "Treaty bodies" - ] - }, - { - "text": "Consider strengthening efforts to combat violence against women, including domestic violence and trafficking in women and children, by, inter alia, ensuring the full implementation of related laws and legislation ", - "values": [ - "Trafficking", - "Women's rights" - ] - }, - { - "text": "Guarantee education for children in conflict with the law", - "values": [ - "Right to education", - "Rights of the Child" - ] - }, - { - "text": "Continue its efforts towards socioeconomic development and poverty eradication", - "values": [ - "Development", - "Poverty" - ] - }, - { - "text": "Withdraw its deposited interpretation of Article 4 of the ICERD, and include within the updated national plan enhanced accountability measures on combating the religious and ethnic incitement and hate speech, particularly with respect to elections and media", - "values": [ - "Freedom of religion and belief", - "International instruments", - "Racial discrimination" - ] - }, - { - "text": "Intensify its efforts to ensure full and effective implementation of the Law on Elimination of Violence against Women and implement United Nations Security Council resolutions on Women, Peace and Security ", - "values": [ - "Women's rights" - ] - }, - { - "text": "Ensure effective enforcement of human rights-related laws in all its territory and at all administrative and judiciary levels.", - "values": [ - "Justice" - ] - }, - { - "text": "Carry out a prompt, independent and impartial investigation aimed at determining the fate or whereabouts of Sombath Somphone", - "values": [ - "Enforced disappearances" - ] - }, - { - "text": "Continue its efforts to provide training and capacity building in the area of human rights for police officers and members of the judiciary and prosecution as well as journalists", - "values": [ - "Human rights education and training" - ] - }, - { - "text": "Respect and protect the human rights and the fundamental freedoms of all persons without any form of discrimination ", - "values": [ - "Other" - ] - }, - { - "text": "Remove any rule authorizing corporal punishment and incorporate effective sanctions for such practices, as well as carry out general awareness-raising campaigns against ill-treatment of children that emphasize the peaceful resolution of violent relationships", - "values": [ - "Human rights education and training", - "Rights of the Child", - "Torture and other CID treatment" - ] - }, - { - "text": "Implement the Media Law in line with all obligations under international human rights law", - "values": [ - "Freedom of the press", - "International instruments" - ] - }, - { - "text": "Adopt a long-term and comprehensive framework to tackle discrimination, racism and xenophobia, focusing both on prevention and on combating human rights violations", - "values": [ - "Racial discrimination" - ] - }, - { - "text": "Adopt appropriate and concrete measures to prevent the disadvantageous and unequal status of women and girls", - "values": [ - "Rights of the Child", - "Women's rights" - ] - }, - { - "text": "Reconsider current local legislation on freedom of religion, that uses vague or broad terminology and discriminatory provisions, and impedes the possibility for conversion of faith for those who wish to do so ", - "values": [ - "Freedom of religion and belief" - ] - }, - { - "text": "Steps up its efforts to prevent harmful practices carried out on children", - "values": [ - "Rights of the Child" - ] - }, - { - "text": "Continue with its commitment to fight terrorism, together with other countries in the region", - "values": [ - "Public security" - ] - }, - { - "text": "Continue to give priority to implementing the Truth, Reception and Reconciliation Commission and Commission of Truth and Friendship recommendations regarding victims' rights to justice, truth and reparations", - "values": [ - "Justice" - ] - }, - { - "text": "Establish a moratorium on the death penalty, in accordance with General Assembly resolution 62-149.", - "values": [ - "Death penalty" - ] - }, - { - "text": "Continue its efforts to promote human rights, above all the education of children and the provision of health services for children ", - "values": [ - "Right to education", - "Right to health", - "Rights of the Child" - ] - }, - { - "text": "Safeguard the rights of refugees and asylum-seeker", - "values": [ - "Asylum-seekers - refugees" - ] - }, - { - "text": "Ensure the right to freedom of expression, in particular through ensuring plurality and independence of the media as well as protection of media outlets critical to the Government from harassment and attacks", - "values": [ - "Freedom of opinion and expression", - "Freedom of the press" - ] - }, - { - "text": "Further address the gender disparity in school enrolment rates at the tertiary level ", - "values": [ - "Right to education", - "Women's rights" - ] - }, - { - "text": "Continue to scale up its efforts to empower women, mainly rural women ", - "values": [ - "Women's rights" - ] - }, - { - "text": "Strengthen its institutional framework, including by establishing a national human rights institution according to the Paris Principles ", - "values": [ - "National Human Rights Institution" - ] - }, - { - "text": "Take all necessary measures to consolidate the system of protection of human rights of all persons prior to, during and in the aftermath of emergency situations", - "values": [ - "Environment" - ] - }, - { - "text": "Continue cooperating with Special Procedures and accept in particular requests for visits from Special Rapporteurs ", - "values": [ - "Special procedures" - ] - }, - { - "text": "Share, with States that request it, the experiences of the National Human Rights System, the comprehensive monitoring system for international recommendations on human rights (SISREDH) and the monitoring mechanism of the universal periodic review, in the framework of international cooperation. ", - "values": [ - "Special procedures", - "Treaty bodies", - "UPR process" - ] - }, - { - "text": "Ratify the 1961 Convention on the Reduction of Statelessness and establish safeguards to guarantee birth registration to all children born in the country who would otherwise be stateless", - "values": [ - "International instruments", - "Rights of the Child", - "Statelessness and the right to nationality" - ] - }, - { - "text": "Take all appropriate measures, including adequate resource allocation, to strengthen indigenous children's equal access to education, including, when possible, education in their own language", - "values": [ - "Indigenous peoples", - "Right to education", - "Rights of the Child" - ] - }, - { - "text": "Continue moving towards establishing a comprehensive unity Government through the Libyan Political Dialogue currently led by the United Nations", - "values": [ - "Other" - ] - }, - { - "text": "Develop a basic education curriculum imparting quality education in rural areas, promoting gender equality, non-discrimination based on sexual orientation and addressing problems in the community education systems", - "values": [ - "Right to education", - "Sexual Orientation and Gender Identity", - "Women's rights" - ] - }, - { - "text": "Expedite the implementation of the Public Policy for Coexistence and Elimination of Racism and Racial Discrimination", - "values": [ - "Racial discrimination" - ] - }, - { - "text": "Take action so as to cooperate with the Special Rapporteurs of the United Nations ", - "values": [ - "Special procedures" - ] - }, - { - "text": "Ensure compulsory and free of all costs primary education for all children ", - "values": [ - "Right to education", - "Rights of the Child" - ] - }, - { - "text": "Launch a campaign for the birth registration of children and adults living on the streets and for those belonging to ethnic minorities to facilitate the obtaining of identification documents", - "values": [ - "Minorities", - "Rights of the Child", - "Statelessness and the right to nationality" - ] - }, - { - "text": "Provide effective protection of LGBT persons from discrimination", - "values": [ - "Sexual Orientation and Gender Identity" - ] - }, - { - "text": "Abrogate de jure and de facto discrimination against women, by amending or repealing national legislation that discriminates against women, such as the Nationality Act, the Personal Status Act, the Civil Code and the Private Sector Employment Act, and implement measures to penalize violence against women and girls in all forms, including domestic violence and marital rape \n", - "values": [ - "Rights of the Child", - "Statelessness and the right to nationality", - "Women's rights" - ] - }, - { - "text": "Sign and ratify the International Covenant on Economic, Social and Cultural Rights (ICESCR) ", - "values": [ - "ESC rights - general", - "International instruments" - ] - }, - { - "text": "Ensure the systematic functioning of all mechanisms for the delivery of financial and other forms of assistance to those in need which have been established within the framework of the National Social Assistance Programme", - "values": [ - "ESC rights - general" - ] - }, - { - "text": "Bring its legislation into conformity with its commitment to equality and non-discrimination and its international human rights obligations, by repealing all provisions which may be applied to criminalize sexual activity between consenting adults ", - "values": [ - "Sexual Orientation and Gender Identity" - ] - }, - { - "text": "Make more efforts to, pass additional legislation and carry out awareness-raising and counselling to eliminate the consequences of racial discrimination in all its forms ", - "values": [ - "Human rights education and training", - "Racial discrimination" - ] - }, - { - "text": "Provide international humanitarian organisations with immediate, free and unimpeded access to all populations in need, including those held in labour camps or political prison camps", - "values": [ - "Detention" - ] - }, - { - "text": "Take urgent steps to reduce and eliminate domestic and sexual violence against women, including measures to raise awareness of women's legal rights in consultation with civil society groups, and ensuring fair and expeditious trials of domestic and sexual violence cases", - "values": [ - "Human rights education and training", - "Justice", - "Women's rights" - ] - }, - { - "text": "Reduce the permissible length of administrative detention of asylum seekers, especially children", - "values": [ - "Asylum-seekers - refugees", - "Rights of the Child" - ] - }, - { - "text": "Continue its extensive reforms with a view to addressing institutional shortcomings and weaknesses, and develop an integrated agenda of human rights and public security as well as the development agenda towards poverty and illiteracy eradication.", - "values": [ - "Poverty", - "Public security", - "Right to education" - ] - }, - { - "text": "Consider further measures to improve and encourage women's participation in society, and ensure that such measures include benchmarks with timetables or increased quotas and that their implementation is closely monitored ", - "values": [ - "Women's rights" - ] - }, - { - "text": "Enhance its initiatives and programmes to further instil a sense of national unity and pride among its people", - "values": [ - "Other" - ] - }, - { - "text": "Continue the reform of the judicial system to guarantee and strengthen the independence of the judiciary, and to ensure a higher degree in solving cases and in the implementation of judicial decisions. Especially convenient would be the establishment of a training plan in the area of human rights for its application among officials of the Judiciary ", - "values": [ - "Justice" - ] - }, - { - "text": "Expressly prohibit the dissemination of ideas based on racial incitement and discrimination, giving full effect to article 4 of ICERD", - "values": [ - "International instruments", - "Racial discrimination" - ] - }, - { - "text": "Step up efforts to strengthen public education, awareness programmes and skill training, particularly aimed at increasing the awareness of human rights in Qatar", - "values": [ - "Human rights education and training", - "Right to education" - ] - }, - { - "text": "Carry out a prompt implementation of the judicial reform to ensure that complaints in cases of torture, in strict conformity with international human rights standards and adequately involve civil society in this process", - "values": [ - "Civil society", - "International instruments", - "Justice", - "Torture and other CID treatment" - ] - }, - { - "text": "Follow-up and implement effectively the recommendations of the Special Representative of the Secretary-General on Sexual Violence in Conflict ", - "values": [ - "International humanitarian law", - "Rights of the Child", - "Special procedures", - "Women's rights" - ] - }, - { - "text": "Take measures to improve detention conditions of migrant- children and ban legally the practice of detaining those children ", - "values": [ - "Detention", - "Migrants", - "Rights of the Child" - ] - }, - { - "text": "Ratify the Optional Protocol to the Convention against Torture and other Cruel, Inhuman or Degrading Treatment ", - "values": [ - "Detention", - "International instruments", - "Torture and other CID treatment" - ] - }, - { - "text": "Address in particular high school dropout among students belonging to ethnic minorities ", - "values": [ - "Minorities", - "Right to education" - ] - }, - { - "text": "Strengthen national mechanisms and efforts in combating human trafficking", - "values": [ - "Trafficking" - ] - }, - { - "text": "Exert concrete efforts to eliminate all forms of discrimination and violence against women", - "values": [ - "Women's rights" - ] - }, - { - "text": "Ratify ILO Convention No. 169 on indigenous peoples ", - "values": [ - "Indigenous peoples", - "International instruments" - ] - }, - { - "text": "Expedite the process to ratify important international instruments relevant for the advancement of human rights in Zambia, including the Optional Protocol to the Convention on the Rights of Persons with Disabilities, the Optional Protocol to the Convention on the Elimination of All Forms of Discrimination against Women and the two Optional Protocols to the Convention on the Rights of the Child", - "values": [ - "Disabilities", - "International instruments", - "Rights of the Child", - "Women's rights" - ] - }, - { - "text": "Continue to improve policies and programmes to advance the status of women and girls, and to protect children ", - "values": [ - "Rights of the Child", - "Women's rights" - ] - }, - { - "text": "Ratify the Rome Statute of the International Criminal Court ", - "values": [ - "International instruments", - "Justice" - ] - }, - { - "text": "Thoroughly accept legal state responsibility for and take sincere measures to address its past crimes against humanity, including sexual slavery", - "values": [ - "Justice" - ] - }, - { - "text": "Share best practices with other countries regarding female genital mutilation and continue efforts to fully eradicate it.", - "values": [ - "Rights of the Child", - "Torture and other CID treatment", - "Women's rights" - ] - }, - { - "text": "Harmonize the provisions of its domestic law on the punishment and prevention of human trafficking with the international instruments ratified by Grenada ", - "values": [ - "International instruments", - "Trafficking" - ] - }, - { - "text": "Ensure that the visit by the Working Group on Arbitrary Detention, which has been agreed upon in principle, is also given priority and that it takes place in the near future ", - "values": [ - "Detention", - "Special procedures" - ] - }, - { - "text": "Intensify efforts to effectively implement the measures adopted to combat trafficking in human beings, in particular in terms of victim protection ", - "values": [ - "Trafficking" - ] - }, - { - "text": "Continue to work with the Special Rapporteur on the rights of indigenous persons", - "values": [ - "Indigenous peoples", - "Special procedures" - ] - }, - { - "text": "Immediately end all and prevent further violations of international human rights law and international humanitarian law committed by members of the armed forces and allied militias", - "values": [ - "Human rights violations by state agents", - "International humanitarian law" - ] - }, - { - "text": "Ensure that the freedom of speech of civil society organizations and special interest groups is promoted and respected across Indonesia so that they can, within the legal framework, voice their views and concerns, even on issues that can be sensitive", - "values": [ - "Civil society", - "Freedom of opinion and expression" - ] - }, - { - "text": "Prohibit any practice of forced early marriage of young girls, including tourist or temporary marriages, female genital mutilation, and parent-supported trafficking of children through, inter alia, the adoption and subsequent implementation of the Safe Motherhood Law, recently brought before Parliament, without delay, as recommended by the CEDAW Committee", - "values": [ - "Rights of the Child", - "Torture and other CID treatment", - "Trafficking", - "Treaty bodies", - "Women's rights" - ] - }, - { - "text": "Strengthen the measures Ecuador has taken to address the needs of indigenous peoples", - "values": [ - "Indigenous peoples" - ] - }, - { - "text": "Collect and generate disaggregated data on actual manifestations of racism and discrimination ", - "values": [ - "Racial discrimination" - ] - }, - { - "text": "Expedite the adoption of the Child Protection Code", - "values": [ - "Rights of the Child" - ] - }, - { - "text": "Accede to the Second Optional Protocol to the International Covenant on Civil and Political Rights and the Optional Protocol to the Convention against Torture and Other Cruel, Inhuman or Degrading Treatment or Punishment", - "values": [ - "Death penalty", - "International instruments", - "Torture and other CID treatment", - "Treaty bodies" - ] - }, - { - "text": "Adopt effective measures to ensure access of all categories of citizens to treatment and prevention of HIV", - "values": [ - "HIV - Aids", - "Right to health" - ] - }, - { - "text": "Continue its efforts to better promote and protect the rights of persons in custody in places of pretrial detention and in prisons", - "values": [ - "Detention", - "Justice" - ] - }, - { - "text": "Strengthen the measures to eliminate all discriminatory treatment based on sexual orientation or gender identity", - "values": [ - "Sexual Orientation and Gender Identity" - ] - }, - { - "text": "Consider ratifying the Optional Protocol to the Convention against Torture and ensure effective implementation of national mechanisms in the area of identification and prevention of torture", - "values": [ - "Detention", - "International instruments", - "Torture and other CID treatment" - ] - }, - { - "text": "Improve national legislation to ensure equality between men and women based on the non-discrimination principle ", - "values": [ - "Women's rights" - ] - }, - { - "text": "Consider ratifying the 1990 International Convention on the Protection of the Rights of All Migrant Workers and Members of Their Families", - "values": [ - "International instruments", - "Labour", - "Migrants" - ] - }, - { - "text": "Continue to fight poverty with the support of the international community \n\n", - "values": [ - "Poverty", - "Technical assistance and cooperation" - ] - }, - { - "text": "Strengthen the Government's efforts to improve the quality of education", - "values": [ - "Right to education" - ] - }, - { - "text": "Ratify the 1951 Convention relating to the Status of Refugees and its Optional Protocol of 1967, and accede to the 1954 Convention relating to the Status of Stateless Persons and the 1961 Convention on the Reduction of Statelessness ", - "values": [ - "Asylum-seekers - refugees", - "International instruments", - "Statelessness and the right to nationality" - ] - }, - { - "text": "Continue strengthening measures to ensure education for all, including expanding the infrastructure of the educational system in the whole territory of the country", - "values": [ - "Right to education" - ] - }, - { - "text": "Implement legislation that codifies the protection guaranteed in the 1954 Convention relating to the Status of Stateless Persons in national legislation", - "values": [ - "International instruments", - "Statelessness and the right to nationality" - ] - }, - { - "text": "Provide, as soon as possible, documents to persons of Haitian origin living in the Dominican Republic to regularize their status and thus avoid deportations, in coordination with the International Organization for Migration ", - "values": [ - "Migrants" - ] - }, - { - "text": "Respect and defend life from conception to natural death, based on amendments of state constitutions, promoting a similar protection at federal and local levels", - "values": [ - "Other" - ] - }, - { - "text": "Establish an official moratorium on executions with a view to abolishing the death penalty, commute all death sentences to terms of imprisonment and ensure rigorous compliance in all death penalty cases with international standards for trials", - "values": [ - "Death penalty" - ] - }, - { - "text": "Extend a standing invitation to special procedures, respond positively to their requests to visit the country and cooperate fully, promptly and substantively with all mandate holders", - "values": [ - "Special procedures" - ] - }, - { - "text": "Consider the establishment of an independent national human rights institution in conformity with the Paris Principles", - "values": [ - "National Human Rights Institution" - ] - }, - { - "text": "Strengthen measures concerning people with disabilities", - "values": [ - "Disabilities" - ] - }, - { - "text": "Protect the economic, social and cultural rights of Amazigh minorities", - "values": [ - "ESC rights - general", - "Indigenous peoples", - "Minorities" - ] - }, - { - "text": "Develop strategies to better manage the migratory flows of political and economic refugees who unfortunately overwhelm Morocco's capacity and resources ", - "values": [ - "Asylum-seekers - refugees" - ] - }, - { - "text": "Strengthen its educational strategies to ensure that all children enrol in school and receive basic education", - "values": [ - "Right to education", - "Rights of the Child" - ] - }, - { - "text": "Ensure the right of assembly and the right to freedom of expression, in accordance with international human rights standards, and to withdraw the Public Emergency Regulation", - "values": [ - "Freedom of association and peaceful assembly", - "Freedom of opinion and expression", - "International instruments" - ] - }, - { - "text": "Make the necessary legal, policy and practice-related changes to enable the ratification of the Council of Europe Convention on Preventing and Combating Violence against Women and Domestic Violence (Istanbul Convention) and dedicate sufficient resources to central, devolved and local authorities to ensure its effective implementation", - "values": [ - "International instruments", - "Women's rights" - ] - }, - { - "text": "Fully implement its obligations under international law, including international human rights law and international humanitarian law, in particular the 1949 Fourth Geneva Convention, relating to the treatment of non-combatants", - "values": [ - "International humanitarian law", - "International instruments" - ] - }, - { - "text": "Look into the possibility of acceding to those conventions to which it is not yet party ", - "values": [ - "International instruments" - ] - }, - { - "text": "Amend its Criminal Code, specifically to make the racial motivation of a crime an aggravating circumstance and to allow for enhanced punishment to combat the occurrence of such acts", - "values": [ - "Racial discrimination" - ] - }, - { - "text": "Combat more effectively corruption and adopt necessary legal measures", - "values": [ - "Corruption" - ] - }, - { - "text": "Establish a formal moratorium on the death penalty with a view to ratifying the Second Optional Protocol to ICCPR, aiming at the abolition of the death penalty", - "values": [ - "Death penalty", - "International instruments" - ] - }, - { - "text": "Allocate additional resources to improving the country's health infrastructures, while ensuring that ongoing health reforms take into account the rights of women and children", - "values": [ - "Right to health", - "Rights of the Child", - "Women's rights" - ] - }, - { - "text": "Continue with efforts to implement necessary measures with a view to end long-term involuntary homelessness", - "values": [ - "Poverty", - "Right to housing" - ] - }, - { - "text": "Fight all forms of racism, xenophobia and anti-Semitism and ensure that tolerance and intercultural understanding are promoted and conveyed to the public, including by political figures, and develop, in close consultation with national minority representatives, a comprehensive strategy for the promotion of social cohesion with respect for diversity", - "values": [ - "Freedom of religion and belief", - "Racial discrimination" - ] - }, - { - "text": "Protect the right to religious belief of all persons in Australia", - "values": [ - "Freedom of religion and belief" - ] - }, - { - "text": "Continue its successful efforts in the field of human right education and training ", - "values": [ - "Human rights education and training" - ] - }, - { - "text": "Provide human rights education to all citizens and provide human rights training to judges, prosecutors and lawyers and law enforcement officials ", - "values": [ - "Human rights education and training", - "Justice" - ] - }, - { - "text": "Recommended continued reform towards the eventual abolition of the death penalty, including greater transparency around its use", - "values": [ - "Death penalty" - ] - }, - { - "text": "Continue to work on raising the training of human resources and teachers to facilitate access to education for pupils with special needs ", - "values": [ - "Disabilities", - "Right to education", - "Rights of the Child" - ] - }, - { - "text": "Take all measures necessary to ensure the protection of religious minorities, including implementing the recommendations on adequate housing put forward by the Special Rapporteur after his visit in 2006", - "values": [ - "Minorities", - "Right to housing", - "Special procedures" - ] - }, - { - "text": "Continue with its efforts to strengthen the enforcement of law on violence against women and protect the rights of women", - "values": [ - "Women's rights" - ] - }, - { - "text": "Consider seeking technical assistance to improve its capabilities to combat domestic violence and the abuse of children ", - "values": [ - "Rights of the Child", - "Technical assistance and cooperation", - "Women's rights" - ] - }, - { - "text": "Present the remaining reports to treaty bodies without delay, and make every effort to avoid such delays in the future ", - "values": [ - "Treaty bodies" - ] - }, - { - "text": "Ratify the Rome Statute of the International Criminal Court, signed in 1999, and apply it in the national legislation", - "values": [ - "International instruments", - "Justice" - ] - }, - { - "text": "Widen the scope of international obligations through ratification of international treaties such as the International Convention on the Protection of the Rights of All Migrant Workers and Members of Their Families", - "values": [ - "International instruments", - "Labour", - "Migrants" - ] - }, - { - "text": "Amend and clearly redefine provisions in the Charities and Societies Proclamation and the Anti-Terrorism Proclamation in order to lift restrictions on the rights to freedom of association and freedom of expression ", - "values": [ - "Civil society", - "Counter-terrorism", - "Freedom of association and peaceful assembly", - "Freedom of opinion and expression" - ] - }, - { - "text": "Expand cooperation with the special procedures, including with the Special Rapporteur on torture and other cruel, inhuman or degrading treatment and punishment, and the Special Rapporteur on violence against women, its causes and consequences ", - "values": [ - "Special procedures", - "Torture and other CID treatment", - "Women's rights" - ] - }, - { - "text": "Implement greater measures to guarantee in an effective manner the legal safeguards for all detained migrants, improve the detention and living conditions of migrants, in particular by modernizing detention centres", - "values": [ - "Detention", - "Migrants" - ] - }, - { - "text": "Implement legal sanctions against those who commit human rights abuses in the security forces, in addition to administrative sanctions such as dismissal.", - "values": [ - "Human rights violations by state agents" - ] - }, - { - "text": "Continue efforts to ensure that the Roma, Albanian and other minorities have access to suitable and affordable housing, employment, education and health care, and that special attention be paid to promoting the integration of these populations in all areas of social life, without discrimination.", - "values": [ - "Minorities" - ] - }, - { - "text": "Ensure regular consultation with civil society in the follow-up to the UPR recommendations.", - "values": [ - "Civil society", - "UPR process" - ] - }, - { - "text": "Enhance public accountability for the judiciary by limiting political interference, increasing transparency in judicial processes, and ensuring all judicial staff hiring is merit-based", - "values": [ - "Justice" - ] - }, - { - "text": "Continue to vigorously pursue policies designed to enhance social security and welfare of its citizens to ensure a meaningful reduction in the number of people living on incomes below the absolute poverty threshold ", - "values": [ - "Development", - "Poverty" - ] - }, - { - "text": "Step up its legislative and policy measures, awareness campaigns and implementation of the 2025 Time Bound Programme on the elimination of child labour ", - "values": [ - "Human rights education and training", - "Labour", - "Rights of the Child" - ] - }, - { - "text": "Redouble efforts to combat trafficking in persons, especially women and children ", - "values": [ - "Rights of the Child", - "Trafficking", - "Women's rights" - ] - }, - { - "text": "Ensure the elaboration, in full transparency, of a new constitution guaranteeing the rights and freedoms of each individual, and to lift the state of emergency to allow the re-establishment of civil and political rights", - "values": [ - "CP rights - general", - "Public security" - ] - }, - { - "text": "Put in place an adequate health education programme and ensure effective access to health advisory services, notably for matters related to sexuality and sexual and reproductive rights", - "values": [ - "Right to health", - "Rights of the Child", - "Sexual Orientation and Gender Identity", - "Women's rights" - ] - }, - { - "text": "Continue its efforts to tackle extrajudicial killings and enforced disappearance to strengthen the rule of law and respect for human rights", - "values": [ - "Enforced disappearances", - "Extrajudicial executions" - ] - }, - { - "text": "Take action to improve both the legal framework and the overall climate in which the media operate, in order to safeguard freedom of expression and independence of the media ", - "values": [ - "Freedom of opinion and expression", - "Freedom of the press" - ] - }, - { - "text": "Pass legislation that promotes further political participation of women in public elections positions", - "values": [ - "Elections", - "Women's rights" - ] - }, - { - "text": "Continue practical steps already taken to disseminate a culture of human rights in education institutions, utilizing the media for this purpose", - "values": [ - "Human rights education and training" - ] - }, - { - "text": "Continue its combat against child trafficking from any origin and use of child labour in all forms, especially in auto industry, and to strengthen its measures for rehabilitation and education for the child victims of trafficking", - "values": [ - "Business and human rights", - "Rights of the Child", - "Trafficking" - ] - }, - { - "text": "Strengthen the National Women's Institute through greater prominence and adequate resources ", - "values": [ - "Women's rights" - ] - }, - { - "text": "Fully implement the ideals of the new Constitution, including the initiation of Constitutional Court proceedings", - "values": [ - "Justice" - ] - }, - { - "text": "Continue intensifying the efforts on the protection of children's rights and interests", - "values": [ - "Rights of the Child" - ] - }, - { - "text": "Take steps to foster a pluralistic media environment, this should include fully implementing reform as stipulated in the GPA and liberalise airwaves and allow for private ownership of radio and TV stations ", - "values": [ - "Freedom of the press" - ] - }, - { - "text": "Further strengthen the steps taken in regard to trafficking, particularly in reference to women and children", - "values": [ - "Rights of the Child", - "Trafficking", - "Women's rights" - ] - }, - { - "text": "Introduce a comprehensive job creation programme particularly targeting young people ", - "values": [ - "Development" - ] - }, - { - "text": "Conduct a comprehensive review of the conformity of internal law with the provisions of the Convention on the Rights of the Child.", - "values": [ - "International instruments", - "Rights of the Child" - ] - }, - { - "text": "Implement an awareness-raising campaign for parents aimed at increasing the school enrolment rate of girls", - "values": [ - "Right to education", - "Rights of the Child", - "Women's rights" - ] - }, - { - "text": "Adopt measures to fight overcrowding in places of detention, by, for example, more frequently applying alternative sentences to the deprivation of liberty ", - "values": [ - "Detention" - ] - }, - { - "text": "Continue to take steps to submit reports to treaty bodies ", - "values": [ - "Treaty bodies" - ] - }, - { - "text": "Adopt comprehensive anti-discrimination legislation in line with international and European standards", - "values": [ - "Other" - ] - }, - { - "text": "Consider alternatives to the detention of migrants, particularly children", - "values": [ - "Migrants", - "Rights of the Child" - ] - }, - { - "text": "Implement legislation prohibiting corporal punishment of children in the home and conduct awareness-raising campaigns on the harmful effect of corporal punishment and on the use of alternative and non-violent forms of discipline in a manner consistent with the child's dignity ", - "values": [ - "Human rights education and training", - "Rights of the Child", - "Torture and other CID treatment" - ] - }, - { - "text": "Ensure compliance with the rights of children and women, in prohibiting in particular corporal punishment and in implementing a plan of action against domestic violence ", - "values": [ - "Rights of the Child", - "Torture and other CID treatment", - "Women's rights" - ] - }, - { - "text": "Conduct an in-depth revision of all legislation in order to fully guarantee the application of the principle of non-discrimination in domestic legislation", - "values": [ - "Other" - ] - }, - { - "text": "Ensure that the security forces comply with international human rights law to ensure no extrajudicial executions, torture, ill treatment, rape and other grave human rights violations ", - "values": [ - "Extrajudicial executions", - "Human rights violations by state agents", - "International instruments", - "Torture and other CID treatment", - "Women's rights" - ] - }, - { - "text": "Develop a legal framework to fight against the phenomenon of early marriage", - "values": [ - "Rights of the Child" - ] - }, - { - "text": "Ratify CAT and its Optional Protocol ", - "values": [ - "Detention", - "International instruments", - "Torture and other CID treatment" - ] - }, - { - "text": "Amend article 732 of the Commercial Law that restricts the possibility of persons with disabilities to obtain life insurance", - "values": [ - "Disabilities" - ] - }, - { - "text": "Establish a mechanism for the implementation of the law on domestic violence and its associate Programme 2014-2023", - "values": [ - "Rights of the Child", - "Women's rights" - ] - }, - { - "text": "Redouble its efforts against human trafficking and adopt a specific action plan for the protection and compensation of victims", - "values": [ - "Trafficking" - ] - }, - { - "text": "Complete the review of its legislative project on the abolition of the penalty of banishment and promptly follow-up on the results of this review", - "values": [ - "Justice" - ] - }, - { - "text": "Continue consolidating the educational system in line with the needs of their population, to make progress towards delivering social well-being and encouraged Nigeria to continue on this path with the support and cooperation of the international community", - "values": [ - "Right to education", - "Technical assistance and cooperation" - ] - }, - { - "text": "Improve cooperation with United Nations human rights mechanisms ", - "values": [ - "Special procedures", - "Treaty bodies", - "UPR process" - ] - }, - { - "text": "Ratify the Optional Protocol to the International Covenant on Economic, Social and Cultural Rights and the Optional Protocol to the Convention on the Rights of the Child on a communications procedure", - "values": [ - "ESC rights - general", - "Rights of the Child" - ] - }, - { - "text": "Withdraw the Jaafari law on personal status issues, passed by the Council of Ministers in February 2014, which would legalize child, early and forced marriage and violate the human rights of women and children", - "values": [ - "Rights of the Child", - "Women's rights" - ] - }, - { - "text": "Ensure that LGBT persons in Serbia can exercise their human rights freely and in security, including fundamental freedoms such as the freedom of expression and the freedom of assembly and association", - "values": [ - "Freedom of association and peaceful assembly", - "Freedom of opinion and expression", - "Sexual Orientation and Gender Identity" - ] - }, - { - "text": "Strengthen its policies and programmes aimed at combating discrimination, xenophobia, racism and intolerance ", - "values": [ - "Racial discrimination" - ] - }, - { - "text": "Approve and implement the Water Bill as a matter of urgency, particularly for rural and suburban communities", - "values": [ - "Right to water and sanitation" - ] - }, - { - "text": "Continue efforts to improve conditions for girls, particularly with respect to the quality of nutrition, health care and education, and to their civil rights, including equitable heritable rights", - "values": [ - "CP rights - general", - "Right to education", - "Right to food", - "Right to health", - "Rights of the Child", - "Women's rights" - ] - }, - { - "text": "Contribute to the social integration of the rural populations by actively engaging them in all spheres of activity", - "values": [ - "Development" - ] - }, - { - "text": "Put an end to the practice of indefinite national service and take measures, in consultation with its partners, to put an end to migration and human trafficking affecting thousands of Eritreans, including children ", - "values": [ - "Migrants", - "Rights of the Child", - "Trafficking" - ] - }, - { - "text": "Ensure effective coordination between the activities of the expert council of ethnic policy and the action plan for the implementation of the national strategy for human rights with a view to ensuring non-discrimination", - "values": [ - "Other" - ] - }, - { - "text": "Develop a professional management approach within prisons as recommended by the Council of Europe's Committee for the Prevention of Torture ", - "values": [ - "Torture and other CID treatment" - ] - }, - { - "text": "New Zealand is committed to continued action to address racism, racial discrimination, xenophobia and related intolerance.", - "values": [ - "Racial discrimination" - ] - }, - { - "text": "Consider abolishing the death penalty and eliminate mandatory death penalty sentences", - "values": [ - "Death penalty" - ] - }, - { - "text": "Strengthen its efforts in poverty alleviation in order to continue reducing the number of persons living in poverty", - "values": [ - "Poverty" - ] - }, - { - "text": "Inform the Council about results achieved and lessons learnt in their mid-term UPR Report on the "Living Without Limits" plan", - "values": [ - "Disabilities", - "UPR process" - ] - }, - { - "text": "Guarantee for everyone effective protection against all discrimination based on sexual orientation or gender identity, and to publicly condemn all acts of violence connected with such discrimination and prosecute those responsible", - "values": [ - "Sexual Orientation and Gender Identity" - ] - }, - { - "text": "Take steps to enhance access to counselling and related services for victims of domestic and sexual violence, including by ensuring that adequate resources are made available ", - "values": [ - "Rights of the Child", - "Women's rights" - ] - }, - { - "text": "Strengthen its efforts to reduce extreme poverty, exclusion and marginalization", - "values": [ - "Poverty" - ] - }, - { - "text": "Ensure effective implementation of the recently adopted legislation aimed at protecting children from abuse and sexual exploitation", - "values": [ - "Rights of the Child" - ] - }, - { - "text": "Increase its efforts to raise public awareness of the fundamental rights of women and children", - "values": [ - "Human rights education and training", - "Rights of the Child", - "Women's rights" - ] - }, - { - "text": "Put an end to the economic financial and commercial embargo against Cuba and Sudan ", - "values": [ - "Other" - ] - }, - { - "text": "Maintain the priority given to women and children ", - "values": [ - "Rights of the Child", - "Women's rights" - ] - }, - { - "text": "Review and reform all policies, laws and practices that restrict women's rights to equal employment, property and credit, as well as access to medical care and related services", - "values": [ - "Women's rights" - ] - }, - { - "text": "Continue strengthening policies to promote gender equality and empowerment of women", - "values": [ - "Women's rights" - ] - }, - { - "text": "Guarantee that all complaints regarding human rights violations and other abuses committed by the police, armed forces or members of private security companies are subject to, in a brief period of time, independent and exhaustive investigations, and that those responsible for such violations are brought to justice and that the victims have access to reparations", - "values": [ - "Human rights violations by state agents" - ] - }, - { - "text": "Take measures to prevent and eliminate racism, racial discrimination, xenophobia and others", - "values": [ - "Racial discrimination" - ] - }, - { - "text": "Adopt legislative measures for an effective implementation of the Rome Statute", - "values": [ - "International instruments", - "Justice" - ] - }, - { - "text": "Strengthen its policies on protection of minors against child labour and sexual exploitation ", - "values": [ - "Rights of the Child" - ] - }, - { - "text": "Continue harmonizing its national laws with its obligations under international human rights law, with a view to giving priority in this regard to the International Convention on the Elimination of Racial Discrimination ", - "values": [ - "International instruments", - "Racial discrimination" - ] - }, - { - "text": "Ensure that the rights of human rights defenders are respected, in line with the recommendations accepted by Cambodia during the first UPR cycle ", - "values": [ - "Human rights defenders", - "UPR process" - ] - }, - { - "text": "Ensure that all individuals are afforded due process of law, informed of charges brought against them, and given a timely and transparent trial", - "values": [ - "Justice" - ] - }, - { - "text": "Bring legislation governing the rights of the child into line with relevant international instruments and provide the office of the Commissioner for the Protection of Children's Rights with the support needed for it to assume its role of preservation and protection of children's rights ", - "values": [ - "Rights of the Child" - ] - }, - { - "text": "Ratify the Optional Protocol to the Convention on the Rights of the Child (CRC) on the involvement of children in armed conflict.", - "values": [ - "International humanitarian law", - "International instruments", - "Rights of the Child" - ] - }, - { - "text": "Spearhead public policies, procedures and guidelines with a focus on the comprehensive protection of women from violence ", - "values": [ - "Women's rights" - ] - }, - { - "text": "Cooperate with all the United Nations human rights mechanisms and engage with OHCHR", - "values": [ - "Special procedures", - "Technical assistance and cooperation", - "Treaty bodies", - "UPR process" - ] - }, - { - "text": "Persevere in fighting corruption, in educating its people and especially its children, and in further empowering its womenfolk for greater participation in all sectors.", - "values": [ - "Corruption", - "Rights of the Child" - ] - }, - { - "text": "Improve engagement with civil society groups, including youth and women's associations, to boost human rights ", - "values": [ - "Civil society", - "Women's rights" - ] - }, - { - "text": "Continue guaranteeing free and universal access to public health", - "values": [ - "Right to health" - ] - }, - { - "text": "Continue strengthening practical measures to bring about effective implementation of the Children's Act", - "values": [ - "Rights of the Child" - ] - }, - { - "text": "Enact comprehensive legislation which prohibits discrimination on all grounds to ensure the full enjoyment of all human rights by every member of society ", - "values": [ - "Other" - ] - }, - { - "text": "Take measures to adopt a human rights action plan and ensure its full implementation", - "values": [ - "General" - ] - }, - { - "text": "Guarantee full freedom of expression, including for journalists conducting inquiries on sensitive issues, such as organized crime", - "values": [ - "Freedom of opinion and expression", - "Freedom of the press" - ] - }, - { - "text": "Further guarantee the rights of persons with disabilities and expand their participation in public affairs", - "values": [ - "Disabilities" - ] - }, - { - "text": "Take the measures necessary to bolster the independence of the National Audiovisual Commission as a regulatory body for the media ", - "values": [ - "Freedom of the press" - ] - }, - { - "text": "Ensure the National Observatory of Places of Deprivation of Liberty a capability to fulfil its mandate by making the institution independent from the Ministry of Justice and by providing it with a sufficient budget", - "values": [ - "Detention" - ] - }, - { - "text": "Adopt legislation that defines gender-based violence as a crime, and offer assistance to victims", - "values": [ - "Rights of the Child", - "Women's rights" - ] - }, - { - "text": "Address expeditiously the reported recruitment of child soldiers by the rebel groups in accordance with international human rights standards ", - "values": [ - "International humanitarian law", - "International instruments", - "Rights of the Child" - ] - }, - { - "text": "That the family, as defined in the Constitution, remains the genuine expression of national culture ", - "values": [ - "Other" - ] - }, - { - "text": "Strengthen legislation protecting women from violence, and amend its Penal Code to ensure that honour crimes are treated on par with other serious violent crimes and are investigated and prosecuted", - "values": [ - "Rights of the Child", - "Women's rights" - ] - }, - { - "text": "Make every effort to guarantee the human rights of asylum seekers, bearing in mind international obligations", - "values": [ - "Asylum-seekers - refugees" - ] - }, - { - "text": "Take further measures, including legislative, in order to expand rights and opportunities of women and promote gender equality ", - "values": [ - "Women's rights" - ] - }, - { - "text": "Continue policies aimed at multiplying and deepening, with inter alia the support of the international cooperation, actions to combat and bring an end to of all forms of gender violence, female genital mutilation and all practices that result either discriminatory or violating women's human rights ", - "values": [ - "Rights of the Child", - "Technical assistance and cooperation", - "Torture and other CID treatment", - "Women's rights" - ] - }, - { - "text": "Continue to focus on developing its economy, escalating employment, increasing efforts on poverty reduction, and improving the living standards of its people", - "values": [ - "Development", - "Poverty" - ] - }, - { - "text": "Strengthen actions to combat human trafficking, with an emphasis on prevention and protection measures that address the particular vulnerability of children to trafficking", - "values": [ - "Rights of the Child", - "Trafficking" - ] - }, - { - "text": "Substantially re-consider the punishment related to religious offences", - "values": [ - "Freedom of opinion and expression" - ] - }, - { - "text": "Ensure procedures governing the registration of civil society organizations, including those advocating for the Saharawi people\u2019s right to self-determination", - "values": [ - "Civil society" - ] - }, - { - "text": "Take appropriate measures to ensure that the framework protocol for the protection of migrant children is consistent with international standards and that it is effectively implemented and monitored", - "values": [ - "Migrants", - "Rights of the Child" - ] - }, - { - "text": "Continue efforts towards gender equality and equity", - "values": [ - "Women's rights" - ] - }, - { - "text": "Intensify efforts to boost the status of women and eliminate all forms of violence against them", - "values": [ - "Women's rights" - ] - }, - { - "text": "Continue to improve the national healthcare system and ensure access to quality healthcare for all ", - "values": [ - "Right to health" - ] - }, - { - "text": "Continue to provide health care services, focusing particularly on maternal and child health in the remote and rural areas ", - "values": [ - "Right to health", - "Rights of the Child", - "Women's rights" - ] - }, - { - "text": "Continue efforts to set up the National Human Rights Institution", - "values": [ - "National Human Rights Institution" - ] - }, - { - "text": "Put in place measures to ensure full respect for the right to freedom of opinion and expression, and create a more amenable climate for investigative journalism ", - "values": [ - "Freedom of opinion and expression", - "Freedom of the press" - ] - }, - { - "text": "Put in place a concrete national strategy containing effective measures aimed at strengthening the independent functioning of the judiciary", - "values": [ - "Justice" - ] - }, - { - "text": "Ensure thorough investigations of all allegations of extrajudicial killings and use of excessive force by the police", - "values": [ - "Extrajudicial executions", - "Human rights violations by state agents" - ] - }, - { - "text": "Speed up the process to establish an independent and credible national human rights institution in accordance with the Paris Principles ", - "values": [ - "National Human Rights Institution" - ] - }, - { - "text": "Continue to promote women's rights, and specifically, to promote women's access to national decision-making bodies", - "values": [ - "Women's rights" - ] - }, - { - "text": "Strengthen the Police Complaints Authority's capacity ", - "values": [ - "Justice" - ] - }, - { - "text": "Provide, together with NGOs, safe places and assistance to victims of sexual violence ", - "values": [ - "Civil society", - "Rights of the Child", - "Women's rights" - ] - }, - { - "text": "Step up efforts aimed at ending and discouraging vigilantism in politics in order to protect participation and freedom of expression in public life", - "values": [ - "Freedom of opinion and expression" - ] - }, - { - "text": "Ratify the OP-CAT", - "values": [ - "Detention", - "International instruments", - "Torture and other CID treatment" - ] - }, - { - "text": "Amend its Islamic Penal Code law on Offences against the National and International Security of the Country to define national security and associated breaches in specific terms that do not infringe upon the internationally guaranteed rights of free speech and assembly", - "values": [ - "Freedom of association and peaceful assembly", - "Freedom of opinion and expression" - ] - }, - { - "text": "Continue to strengthen the measures to guarantee children access to free birth registration", - "values": [ - "Rights of the Child", - "Statelessness and the right to nationality" - ] - }, - { - "text": "Continue harmonizing its domestic legislation in conformity with the Convention on the Rights of the Child, introduce legislation to prevent and end all forms of corporal punishment, and adopt effective measures for preventing children under the age of 18 from being involved in hazardous work", - "values": [ - "International instruments", - "Rights of the Child", - "Torture and other CID treatment" - ] - }, - { - "text": "Increase funding for education and enforce compulsory schooling for all children", - "values": [ - "Right to education", - "Rights of the Child" - ] - }, - { - "text": "Denounce publicly at the highest levels of Government anti-Semitic and other hate speech and acts, and support tolerance awareness-raising and training efforts", - "values": [ - "Freedom of religion and belief", - "Human rights education and training", - "Racial discrimination" - ] - }, - { - "text": "Go ahead with its intention to examine the ratification of some international human rights instruments, in particular ICCPR and ICESCR ", - "values": [ - "CP rights - general", - "ESC rights - general", - "International instruments" - ] - }, - { - "text": "Expedite the legislative process related to the draft national action plan to combat racism, racial discrimination, xenophobia and related intolerance", - "values": [ - "Racial discrimination" - ] - }, - { - "text": "Continue to strengthen its cooperation with regional and international partners to pursue development programs to promote the socio-economic rights of its people", - "values": [ - "ESC rights - general" - ] - }, - { - "text": "Continue its work on meeting its objectives in the field of development as set out in the Millennium Declaration ", - "values": [ - "Development" - ] - }, - { - "text": "Take appropriate measures to ensure gender equality and non-discrimination of women in all spheres, particularly the presence of women in the democratic process and the eradication of gender discrimination in the labour market", - "values": [ - "Women's rights" - ] - }, - { - "text": "Continue to undertake efforts to narrow the income gap within its society and improve good governance in pursuit of a comprehensive socioeconomic advancement", - "values": [ - "Development", - "ESC rights - general" - ] - }, - { - "text": "Strengthen the independence of the justice system in order to prevent political interference in prosecutions and trials", - "values": [ - "Justice" - ] - }, - { - "text": "Strengthen measures to ensure equality of rights for indigenous peoples, including the right to health, education and adequate housing", - "values": [ - "Indigenous peoples", - "Right to education", - "Right to health", - "Right to housing" - ] - }, - { - "text": "Further its endeavours with a view of positively affecting the participation of women in the field of economy, education and health", - "values": [ - "Women's rights" - ] - }, - { - "text": "Allocate appropriate financial and human resources to effectively implement its National Development Plan on poverty eradication and access to education", - "values": [ - "Poverty", - "Right to education" - ] - }, - { - "text": "Take necessary measures to ensure that sufficient up-to-date data on the worst forms of child labour would be made available", - "values": [ - "Labour", - "Rights of the Child" - ] - }, - { - "text": "Consider, as a party to the ICESCR, making the legal adaptations required to ensuring that economic, social and cultural rights are considered as individual and enforceable rights, with the same status as all other human rights, and not mere State goals or aspirations", - "values": [ - "ESC rights - general", - "International instruments" - ] - }, - { - "text": "Catch up with the accumulated delays in submitting reports to treaty bodies and, to do so, request appropriate assistance from the OHCHR ", - "values": [ - "Technical assistance and cooperation", - "Treaty bodies" - ] - }, - { - "text": "Continue its efforts and initiatives to reform the judicial system", - "values": [ - "Justice" - ] - }, - { - "text": "Formalize the statelessness determination procedure and ensure the procedure is fair, effective and accessible to all persons in Switzerland regardless of their legal status, ensure that the definition of \u201cstatelessness person\u201c is fully consistent with the definition provided in the 1954 Convention relating to the Status of Stateless Persons", - "values": [ - "Statelessness and the right to nationality" - ] - }, - { - "text": "Request international assistance in order to combat scourges such as malaria, tuberculosis and HIV/AIDS ", - "values": [ - "HIV - Aids", - "Right to health", - "Technical assistance and cooperation" - ] - }, - { - "text": "Fully outlaw marriage before the age of 18 without exception in accordance with its international obligations", - "values": [ - "Rights of the Child" - ] - }, - { - "text": "Looking to the 2012 elections and within the context of the exploitation of Sierra Leone's natural resources, bring to the forefront a consensual approach and permanently bear in mind respect for human rights, in order to reinforce national reconciliation ", - "values": [ - "Elections", - "Environment", - "Justice" - ] - }, - { - "text": "Establish a National Human Rights Institution in conformity with the Paris Principles ", - "values": [ - "National Human Rights Institution" - ] - }, - { - "text": "Turkey's commitment to expanding the scope of fundamental rights and freedoms as well as upholding democracy and the rule of law continued unabated. ", - "values": [ - "Justice" - ] - }, - { - "text": "Pass legislation to criminalize violence against women", - "values": [ - "Women's rights" - ] - }, - { - "text": "Allocate sufficient financial and human resources for the implementation of the new system of public security and criminal justice, including adequate dissemination of information for users as well as the respective training of judges and lawyers", - "values": [ - "Justice", - "Public security" - ] - }, - { - "text": "Make further efforts to update and amend the laws on migration to bring them into line with international standards", - "values": [ - "Migrants" - ] - }, - { - "text": "Consider establishing mechanisms aimed at early identification, referral, assistance and support for victims of trafficking", - "values": [ - "Trafficking" - ] - }, - { - "text": "Review current immigration policies so to improve the rights of refugees and asylum seekers", - "values": [ - "Asylum-seekers - refugees" - ] - }, - { - "text": "Ensure the right to health of persons living with HIV/AIDS, through the strengthening of inter-institutional coordination, the establishment of programs to make available essential medicines, as well as strategies to address the increased rate of infection by HIV and new infections among adolescents and young women", - "values": [ - "HIV - Aids", - "Women's rights" - ] - }, - { - "text": "Continue its efforts to implement the accepted recommendations from the first review", - "values": [ - "UPR process" - ] - }, - { - "text": "Ratify the Protocol to Prevent, Suppress and Punish Trafficking in Persons, particularly Women and Children ", - "values": [ - "International instruments", - "Trafficking" - ] - }, - { - "text": "Continuously seek international support in terms of technical and financial assistance in order to increase capacity-building and to develop programmes and policies aimed at promoting the enjoyment of human rights to all citizens in key areas, such as health and education ", - "values": [ - "Right to education", - "Right to health", - "Technical assistance and cooperation" - ] - }, - { - "text": "Repeal laws that criminalize a person's sexuality", - "values": [ - "Sexual Orientation and Gender Identity" - ] - }, - { - "text": "Multiply efforts to expand the coverage of education and expand services to include the disabled", - "values": [ - "Right to education" - ] - }, - { - "text": "Implement the Rome Statute of the International Criminal Court in law and practice", - "values": [ - "International instruments", - "Justice" - ] - }, - { - "text": "Fully implement the equal opportunities policy with the aim of ensuring gender equality", - "values": [ - "Women's rights" - ] - }, - { - "text": "Consider taking measures for the implementation of its international commitments in the area of the rights of persons with disabilities, and in particular to address the issue of accessibility ", - "values": [ - "Disabilities" - ] - }, - { - "text": "Release as soon as possible all individuals, including human rights defenders, having been imprisoned solely due to the exercise of their fundamental rights of expression and assembly", - "values": [ - "Detention", - "Freedom of association and peaceful assembly", - "Freedom of opinion and expression", - "Human rights defenders" - ] - }, - { - "text": "Strengthen training and awareness-raising of the main social actors on international human rights standards", - "values": [ - "Human rights education and training", - "International instruments" - ] - }, - { - "text": "Submit its backlog of outstanding reports to the concerned treaty bodies", - "values": [ - "Treaty bodies" - ] - }, - { - "text": "Take further measures to protect and promote women's rights, particularly in the fields of female employment, education, health and legal capacity", - "values": [ - "Women's rights" - ] - }, - { - "text": "Create a safe, favourable environment for human rights defenders: a framework where human rights can be defended without fearing reprisals or intimidation in line with the international obligations of the Republic of Moldova, in particular as a State party to the International Covenant on Civil and Political Rights", - "values": [ - "Human rights defenders", - "International instruments" - ] - }, - { - "text": "Continue the improvements in the field of education and consider ratifying the Convention against Discrimination in Education ", - "values": [ - "International instruments", - "Right to education" - ] - }, - { - "text": "Accept the visit request by the Special Rapporteur on extreme poverty and human rights, in particular with a view to creating necessary institutional capacities to strengthen cooperation with the bodies of the international system for the human rights protection", - "values": [ - "Poverty", - "Special procedures" - ] - }, - { - "text": "Consider issuing a standing invitation to special procedures ", - "values": [ - "Special procedures" - ] - }, - { - "text": "Take concrete steps to align the prohibition of discrimination with the prohibition contained in the Convention on the Elimination of all forms of Discrimination against Women.", - "values": [ - "International instruments", - "Women's rights" - ] - }, - { - "text": "Adopt comprehensive measures to address violence against women and enact legislation to ensure that such violence, including sexual abuse, constitutes a criminal offence.", - "values": [ - "Women's rights" - ] - }, - { - "text": "Prioritize implementation of the Child Justice Strategy and the National Diversion Guidelines for children in the criminal justice system", - "values": [ - "Justice", - "Rights of the Child" - ] - }, - { - "text": "Ensure that migrants in detention, subject to a process of expulsion are entitled to counsel, a fair trial and fully understand their rights, even in their own language ", - "values": [ - "Detention", - "Justice", - "Migrants" - ] - }, - { - "text": "Fully implement the National Plan of Action for Inclusive Education and eliminate practices that lead to the continued segregation of Roma children at school, redouble efforts to remedy all shortcomings faced by Roma children in the field of education", - "values": [ - "Minorities", - "Right to education", - "Rights of the Child" - ] - }, - { - "text": "Immediately appoint a President of the Court of Cassation and proceed with the reform of the justice system", - "values": [ - "Justice" - ] - }, - { - "text": "Strengthen the implementation of programmes aiming at the rehabilitation of victims of trafficking in persons, including providing advice, shelter and legal aid and rehabilitation services", - "values": [ - "Trafficking" - ] - }, - { - "text": "Ensure the strengthening of institutional and operational capacities of the Judiciary", - "values": [ - "Justice" - ] - }, - { - "text": "Step up efforts, particularly in the educational system, by taking additional measures to put an end to the phenomena of some students being absent from school during the elementary and secondary level, in order to reach the desired goals in this friendly country", - "values": [ - "Right to education" - ] - }, - { - "text": "Develop and implement efficient policies for child victims of abuse, neglect and trafficking, including ensuring redress and victims' reintegration ", - "values": [ - "Rights of the Child", - "Trafficking" - ] - }, - { - "text": "Create a permanent national protection group responsible for addressing displacements caused by climate change or natural disasters", - "values": [ - "Environment" - ] - }, - { - "text": "Speed up the adoption of the Child Welfare and Protection Bill, in order to achieve compatibility of domestic legislation, policy and practice with international standards, for the benefit of children", - "values": [ - "Rights of the Child" - ] - }, - { - "text": "Continue in its efforts to tackle manifestation of racism and xenophobia including a review of the respective law to ensure that full and equal rights are guaranteed to all", - "values": [ - "Racial discrimination" - ] - }, - { - "text": "Continue the efforts to become part of all the main international human rights instruments and cooperate with the special procedures of the Human Rights Council as well as with treaty bodies ", - "values": [ - "International instruments", - "Special procedures", - "Treaty bodies" - ] - }, - { - "text": "Address effectively the issue of murders and harassment of journalists, media workers and professionals, by eliminating the prevalence of impunity and establishing effective prosecution acts", - "values": [ - "Freedom of the press", - "Impunity" - ] - }, - { - "text": "Adopt concrete measures to implement the national strategic plan to eliminate gender-based violence, as announced in 2013", - "values": [ - "Women's rights" - ] - }, - { - "text": "Ensure effective implementation of the Anti-Gender-Based Violence Act with particular focus on victims' access to justice", - "values": [ - "Women's rights" - ] - }, - { - "text": "Establish a mechanism for improving coordination and strengthening various institutions dealing with violence against women", - "values": [ - "Women's rights" - ] - }, - { - "text": "Strengthen its efforts aimed at enhancing women\u2019s representation in politics and the economy", - "values": [ - "Women's rights" - ] - }, - { - "text": "Enact a religious freedom act expressly excluding the application of sharia to non-Muslims and decriminalizing apostasy which is considered a crime under the Penal Code (1991) ", - "values": [ - "Freedom of religion and belief" - ] - }, - { - "text": "Abolish the kafala system which restricts rights of foreign workers and their access to redress mechanisms and make them vulnerable to various forms of abuse", - "values": [ - "Labour", - "Migrants" - ] - }, - { - "text": "Take the necessary measures to effectively regulate the acquisition, possession and use of firearms by civilians, in order to protect the human rights of all persons", - "values": [ - "Public security" - ] - }, - { - "text": "Adopt legislation for the protection of the environment and establish a joint private-public partnership to reduce the environmental impact of tourism on livelihoods and the rights to housing, safe drinking water, health and an adequate standard of life for its inhabitants", - "values": [ - "Environment", - "Right to health", - "Right to housing", - "Right to water and sanitation" - ] - }, - { - "text": "Draw up a national plan of action for human rights as recommended by the National Forum on Human Rights held in March 2010", - "values": [ - "General" - ] - }, - { - "text": "Adopt measures to ensure that women can acquire, transfer, change or preserve their nationality and transfer it to their children born abroad, such that these children could be recognised by law through birth registration", - "values": [ - "Rights of the Child", - "Statelessness and the right to nationality", - "Women's rights" - ] - }, - { - "text": "Intensify its efforts to combat domestic violence by effectively implementing its laws, particularly the Family Protection Act (2013), improving access to justice, provinding adequate support for victimes and raising awareness of women's rights", - "values": [ - "Human rights education and training", - "Rights of the Child", - "Women's rights" - ] - }, - { - "text": "Take steps to ensure the acceptance and general public knowledge of the existing measures for the legal protection of children, in particular with regard to children with disabilities", - "values": [ - "Disabilities", - "Rights of the Child" - ] - }, - { - "text": "Adopt a law on the rights and the status of national minorities, sign the European Charter for Regional or Minority Languages, as well as ratify Protocol no. 12 of the European Convention for the Protection of Human Rights and Fundamental Freedoms ", - "values": [ - "Minorities" - ] - }, - { - "text": "Establish a formal moratorium on the death penalty and work towards its abolition ", - "values": [ - "Death penalty" - ] - }, - { - "text": "Commit itself to the protection of the rights of all persons regardless of their sexual orientation or gender identity in anti-discrimination and equal opportunity legislation and bodies ", - "values": [ - "Sexual Orientation and Gender Identity" - ] - }, - { - "text": "Repeal any legal provision that criminalizes consensual relations between adults of the same sex and combat the discrimination against LGBT persons through awareness-raising and education campaigns to begin at school ", - "values": [ - "Human rights education and training", - "Sexual Orientation and Gender Identity" - ] - }, - { - "text": "Consider ratifying the International Convention on the Protection of the Rights of all Migrant Workers and Members of their Families as well as ILO Convention No. 189", - "values": [ - "International instruments", - "Labour", - "Migrants" - ] - }, - { - "text": "Develop legislation to protect all children from the worst forms of child labour, including commercial sexual exploitation", - "values": [ - "Labour", - "Rights of the Child" - ] - }, - { - "text": "Investigate cases of killings related to children born with disabilities and bring to justice those responsible for such crimes", - "values": [ - "Disabilities", - "Rights of the Child" - ] - }, - { - "text": "Conduct an awareness-raising campaign to ban violence against women ", - "values": [ - "Human rights education and training", - "Women's rights" - ] - }, - { - "text": "Continue to push forward its human rights cause in the light of its national conditions, especially by giving priority to economic development, poverty alleviation and protection of the rights of vulnerable groups ", - "values": [ - "Development", - "Poverty" - ] - }, - { - "text": "Further strengthen measures to prevent and combat discrimination and investigate allegations of hate crimes", - "values": [ - "Racial discrimination" - ] - }, - { - "text": "Ratify the Convention on the protection of all persons against enforced and involuntary disappearances.", - "values": [ - "Enforced disappearances", - "International instruments" - ] - }, - { - "text": "Consider ratifying other key international human rights treaties, including the International Covenant on Economic, Social and Cultural Rights, the International Convention on the Elimination of All Forms of Racial Discrimination, and the Convention against Torture and Other Cruel, Inhuman or Degrading Treatment or Punishment, as well as Optional Protocols to the Convention against Torture ", - "values": [ - "Detention", - "ESC rights - general", - "International instruments", - "Racial discrimination", - "Torture and other CID treatment" - ] - }, - { - "text": "Adopt additional measures and programmes to prevent child labour", - "values": [ - "Labour", - "Rights of the Child" - ] - }, - { - "text": "Review its labour and migration laws to accommodate the demands for cheap, low or semi-skilled labour and thereby provide for safe migration options", - "values": [ - "Labour", - "Migrants" - ] - }, - { - "text": "Further strengthen awareness-raising and information programs to promote the rights of the child and consider developing a comprehensive national child protection mechanism and action plan", - "values": [ - "Human rights education and training", - "Rights of the Child" - ] - }, - { - "text": "Explicitly criminalize female genital mutilation and cutting in the domestic laws of Sierra Leone to achieve further progress in eliminating this harmful practice", - "values": [ - "Rights of the Child", - "Torture and other CID treatment", - "Women's rights" - ] - }, - { - "text": "Improve prisons and detention facilities, particularly in police establishments ", - "values": [ - "Detention" - ] - }, - { - "text": "Not carry out public execution and work towards the abolition of the death penalty, considering as a first measure the imposition of a moratorium", - "values": [ - "Death penalty" - ] - }, - { - "text": "Ensure that allegations of violence, torture, inhuman and degrading treatment of LGBT persons, by government and non-government actors, are investigated promptly and efficiently and that perpetrators are brought to justice", - "values": [ - "Sexual Orientation and Gender Identity", - "Torture and other CID treatment" - ] - }, - { - "text": "Ratify the Optional Protocol to the Convention against Torture as rapidly as possible and establish a national preventive mechanism in accordance with it", - "values": [ - "Detention", - "International instruments", - "Torture and other CID treatment" - ] - }, - { - "text": "Consider ratifying the human rights treaties, to which Singapore is not yet a party, especially the International Covenants ", - "values": [ - "International instruments" - ] - }, - { - "text": "Take concrete and practical normative and institutional measures to guarantee the rights of Afro-Panamanians ", - "values": [ - "Minorities" - ] - }, - { - "text": "Allow independent investigations into the death of Deyda Hydara and the disappearance of Chief Ebrima Manneh, including publication of findings", - "values": [ - "Enforced disappearances" - ] - }, - { - "text": "Ratify the United Nations Protocol to Prevent, Suppress and Punish Trafficking in Persons, Especially Women and Children ", - "values": [ - "International instruments", - "Rights of the Child", - "Trafficking", - "Women's rights" - ] - }, - { - "text": "Increase efforts to abolish child labour, also by conducting systematic labour inspections", - "values": [ - "Labour", - "Rights of the Child" - ] - }, - { - "text": "Continue its engagement with various institutions to promote and protect human rights in the regional and international fora ", - "values": [ - "Other" - ] - }, - { - "text": "Grant protection and allow journalists, as well as the general public, to exercise their freedom of speech", - "values": [ - "Freedom of opinion and expression", - "Freedom of the press" - ] - }, - { - "text": "Develop an action plan ensuring that Internet laws comply with Cambodia's commitment to guarantee freedom of expression and information, so as to ensure free access to electronic media, liberalize electronic media ownership rules and allow national bloggers, journalists, other Internet users and NGOs to play a full and active role in promoting and protecting human rights ", - "values": [ - "Civil society", - "Freedom of opinion and expression", - "Freedom of the press" - ] - }, - { - "text": "Improve the effectiveness of the administration of justice", - "values": [ - "Justice" - ] - }, - { - "text": "Ensure that the right to hold peaceful, open and public demonstrations is freely available to all individuals without undue restrictions", - "values": [ - "Freedom of association and peaceful assembly" - ] - }, - { - "text": "Continue its efforts to prevent and eradicate all manifestations of racism and xenophobia and to improve policing responses to violence against non-nationals", - "values": [ - "Racial discrimination" - ] - }, - { - "text": "Further strengthen efforts to combat discrimination in education", - "values": [ - "Right to education" - ] - }, - { - "text": "Address a standing invitation to the Special Procedures of the Human Rights Council", - "values": [ - "Special procedures" - ] - }, - { - "text": "Bring criminal legislation, in particular Articles 8 and 176 of the Criminal Code, in conformity with international standards governing freedom of expression ", - "values": [ - "Freedom of opinion and expression" - ] - }, - { - "text": "Ensure the participation of all stakeholders, particularly women, youth and vulnerable groups, in the country's economic development, so as to foster an inclusive long-term economic growth and well-being for all", - "values": [ - "Development", - "Rights of the Child", - "Women's rights" - ] - }, - { - "text": "Remove the reservations from the CEDAW, incompatible with the principle of equality between men and women and ratify the optional protocol to CEDAW", - "values": [ - "International instruments", - "Women's rights" - ] - }, - { - "text": "Ensure that the wages of men and women are equal when doing the same work", - "values": [ - "Women's rights" - ] - }, - { - "text": "Continue the efforts to implement the judicial sector reform", - "values": [ - "Justice" - ] - }, - { - "text": "Adopt effective measures to combat sexual and gender-based violence, ensuring victims\u2019 access to justice and to reception and reparation services", - "values": [ - "Justice", - "Women's rights" - ] - }, - { - "text": "Condemn the use of torture and other ill treatment and ensure the prompt, impartial and comprehensive investigation of all complaints involving the torture of any person subjected to any form of arrest, detention or imprisonment ", - "values": [ - "Torture and other CID treatment" - ] - }, - { - "text": "Take further measures aiming at women's empowerment ", - "values": [ - "Women's rights" - ] - }, - { - "text": "Prohibit in all circumstances the detention of migrants who are still minors", - "values": [ - "Detention", - "Migrants", - "Rights of the Child" - ] - }, - { - "text": "Step up efforts to eliminate violence and discrimination against women ", - "values": [ - "Women's rights" - ] - }, - { - "text": "Continue implementing its national plans and programmes to reach poverty eradication goals", - "values": [ - "Poverty" - ] - }, - { - "text": "Repeal all legal provisions that discriminate against persons on the grounds of their sexual orientation, including those in the Sexual Offences Act and in the Criminal Code", - "values": [ - "Sexual Orientation and Gender Identity" - ] - }, - { - "text": "Speed up the process of reviewing and aligning the laws with the Constitution", - "values": [ - "General" - ] - }, - { - "text": "Ratify OP-CAT without further delay ", - "values": [ - "Detention", - "International instruments", - "Torture and other CID treatment" - ] - }, - { - "text": "Provide adequate financial and human resources to support the Treaty Working Group", - "values": [ - "Other" - ] - }, - { - "text": "Accede to the Convention on the Rights of Persons with Disabilities and the Optional Protocol thereto.", - "values": [ - "Disabilities", - "International instruments" - ] - }, - { - "text": "Strengthen its commitment for implementing all its programs and policies in the social sector", - "values": [ - "General" - ] - }, - { - "text": "Decriminalize defamation and to ensure that the restriction of the right to freedom of expression, also the freedom of peaceful assembly and association, are consistent with international human rights standards", - "values": [ - "Freedom of association and peaceful assembly", - "Freedom of opinion and expression", - "International instruments" - ] - }, - { - "text": "Continue implementing and promoting the programme for special social assistance and other social poverty-reduction programmes ", - "values": [ - "Poverty" - ] - }, - { - "text": "Engage to resolutely and impartially investigate - and if necessary prosecute - the authors of violations of all human rights, in particular the members of the security services, in order to guarantee a better combat against impunity ", - "values": [ - "Human rights violations by state agents", - "Impunity" - ] - }, - { - "text": "Abolish the death penalty and ratify the Second Optional Protocol to the International Covenant on Civil and Political Rights, aiming at the abolition of the death penalty", - "values": [ - "Death penalty", - "International instruments" - ] - }, - { - "text": "Review legislation that is discriminatory to lesbian, gay, bisexual, transgender and intersex persons and arbitrarily interferes with the right to privacy, as it encourages stigmatisation of such person", - "values": [ - "Sexual Orientation and Gender Identity" - ] - }, - { - "text": "End the prosecution of journalists under the Criminal Code for peacefully exercising their right to freedom of opinion and expression and for ensuring the right to information", - "values": [ - "Freedom of opinion and expression", - "Freedom of the press" - ] - }, - { - "text": "Develop a comprehensive deinstitutionalization plan for people with disabilities that aims to support their life in their communities, and ensure inclusive education for people with disabilities", - "values": [ - "Disabilities", - "Right to education" - ] - }, - { - "text": "Continue its poverty reduction efforts as a means of laying the groundwork for the further enhancement of the human rights of its people.", - "values": [ - "Poverty" - ] - }, - { - "text": "Continue to implement policies that promote gender equality and provide women with opportunities to play an active role in social, economic and political spheres", - "values": [ - "Women's rights" - ] - }, - { - "text": "Continue to seek aid from OHCHR as well as other international donors ", - "values": [ - "Technical assistance and cooperation" - ] - }, - { - "text": "Conduct targeted/focused policy of social support to the population in need, especially children", - "values": [ - "Rights of the Child" - ] - }, - { - "text": "Continue its ongoing efforts to further increase the attendance of girls in secondary and higher education and the participation of women in professional and political spheres", - "values": [ - "Right to education", - "Rights of the Child", - "Women's rights" - ] - }, - { - "text": "Combat clandestine practices of female genital mutilations", - "values": [ - "Rights of the Child", - "Torture and other CID treatment", - "Women's rights" - ] - }, - { - "text": "Continue adopting a positive perspective towards the accession to international human rights treaties that the Comoros has not yet acceded to", - "values": [ - "International instruments" - ] - }, - { - "text": "Further fulfil the internationally taken obligations as well as join new human rights international instruments", - "values": [ - "International instruments" - ] - }, - { - "text": "Draw up a comprehensive programme to combat trafficking in persons ", - "values": [ - "Trafficking" - ] - }, - { - "text": "Exchange expertise on the best practices on providing health care for all", - "values": [ - "Right to health" - ] - }, - { - "text": "Consider ratifying the Optional Protocol to the CAT in the near future ", - "values": [ - "Detention", - "International instruments", - "Torture and other CID treatment" - ] - }, - { - "text": "Expedite the amendment of previous legislation that is not in line with the amended Constitution of 7 February 2016 and its human rights guarantees", - "values": [ - "International instruments" - ] - }, - { - "text": "Address the limitations for children born out of wedlock in accessing Austrian nationality and ensure non-discrimination", - "values": [ - "Rights of the Child", - "Statelessness and the right to nationality" - ] - }, - { - "text": "Step up efforts to draft and implement a comprehensive human rights action plan that will serve as a framework for the implementation of its human rights policies and programs", - "values": [ - "General" - ] - }, - { - "text": "Review its Nationality Law in order to ensure that an Omani mother has the right to confer the Omani citizenship to her children without discrimination", - "values": [ - "Rights of the Child", - "Statelessness and the right to nationality", - "Women's rights" - ] - }, - { - "text": "Accede to ICERD ", - "values": [ - "International instruments", - "Racial discrimination" - ] - }, - { - "text": "Work more closely with the human rights mechanisms in seeking practical solutions to the various elements that have the power to seriously threaten peace and stability ", - "values": [ - "Special procedures", - "Treaty bodies" - ] - }, - { - "text": "Ratify the Optional Protocol to the Convention against Torture, promote strict adherence to the prohibition of torture, inhuman or degrading treatment or punishment and prosecute violations thereof", - "values": [ - "Detention", - "International instruments", - "Torture and other CID treatment" - ] - }, - { - "text": "Strengthen practical efforts to eliminate torture", - "values": [ - "Torture and other CID treatment" - ] - }, - { - "text": "Extend a standing invitation to all thematic Special Procedures ", - "values": [ - "Special procedures" - ] - }, - { - "text": "Continue implementing policies for combating discrimination and hate speech", - "values": [ - "Racial discrimination" - ] - }, - { - "text": "Continue its efforts for the protection of the rights of foreign workers, and enhance their safety and welfare through institutional arrangements", - "values": [ - "Migrants" - ] - }, - { - "text": "Continue to place emphasis on poverty alleviation and eradication, on women's empowerment and children's rights", - "values": [ - "Poverty", - "Rights of the Child", - "Women's rights" - ] - }, - { - "text": "Lesotho will continue to declare zero tolerance to corruption and take concrete steps to eliminate it such as further strengthening the DCEO and the Financial Intelligence Unit which will assist law enforcement agencies in the investigation of money laundering, corruption and fraud.", - "values": [ - "Corruption" - ] - }, - { - "text": "Ratify CED at the earliest", - "values": [ - "Enforced disappearances", - "International instruments" - ] - }, - { - "text": "With the participation of indigenous persons, communities and their respective organizations, adopt a legal framework that ensures respect for the principles in the United Nations Declaration on the Rights of Indigenous Peoples", - "values": [ - "Indigenous peoples", - "International instruments" - ] - }, - { - "text": "As a transitional measure, implement a moratorium on the application of the death penalty ", - "values": [ - "Death penalty" - ] - }, - { - "text": "Include a definition of torture in the Penal Code", - "values": [ - "Torture and other CID treatment" - ] - }, - { - "text": "Complete the ratification of the Convention on the Rights of Persons with Disabilities (CRPD) ", - "values": [ - "Disabilities", - "International instruments" - ] - }, - { - "text": "Implement more effectively the legal framework prohibiting child labour", - "values": [ - "Labour", - "Rights of the Child" - ] - }, - { - "text": "Prohibit the participation of minors in military service and accept the practice of conscientious objection ", - "values": [ - "Freedom of religion and belief", - "International humanitarian law", - "Rights of the Child" - ] - }, - { - "text": "Strengthen existing policies and programmes aimed at eradicating child prostitution", - "values": [ - "Rights of the Child" - ] - }, - { - "text": "Review its national legislation in order to strengthen media pluralism, provide for the safety of journalists and human rights defenders and facilitate the functioning of NGOs so that these important actors can pursue their activities freely without undue interference, attacks or intimidation", - "values": [ - "Civil society", - "Freedom of the press", - "Human rights defenders" - ] - }, - { - "text": "Pursue cooperation with international partners and ensure efficient allocation of resources in its endeavour to enhance human rights ", - "values": [ - "Technical assistance and cooperation" - ] - }, - { - "text": "Continue making efforts to advance in meeting its commitments under the international instruments to which the State is a Party ", - "values": [ - "International instruments" - ] - }, - { - "text": "Continue its positive resolve in the education sector in line with its National Education Master Plan for 2010 to 2019 ", - "values": [ - "Right to education" - ] - }, - { - "text": "Envisage softening legislation towards decriminalisation of abortion, especially in cases of rape", - "values": [ - "Women's rights" - ] - }, - { - "text": "Sign and ratify ICCPR-OP1, ICCPR-OP2, OP-ICESCR and OP- CAT", - "values": [ - "CP rights - general", - "Death penalty", - "ESC rights - general", - "International instruments", - "Torture and other CID treatment" - ] - }, - { - "text": "Ratify OP-CRC-SC, OP-CAT, CRPD and its Optional Protocol, CED, and OP-ICESCR ", - "values": [ - "Detention", - "ESC rights - general", - "Enforced disappearances", - "International instruments", - "Rights of the Child", - "Torture and other CID treatment" - ] - }, - { - "text": "Renew the national plan of action against racism or elaborate a new one, always in collaboration with civil society", - "values": [ - "Civil society", - "Racial discrimination" - ] - }, - { - "text": "Adopt effective measures to combat extremism and prevent all forms of discrimination, racism, xenophobia and other forms of intolerance, including amending its legislation so as to forbid and prevent activities of extremist organizations ", - "values": [ - "Racial discrimination" - ] - }, - { - "text": "Improve both formal and informal dialogue and public consultation between the Government and civil society, including on proposed legislation with an impact on human rights", - "values": [ - "Civil society" - ] - }, - { - "text": "Take measures to considerably reduce the number of stunted children and out-of-school children, and end child labour by developing indicators and a timeline for the implementation of the recent legislation against child labour", - "values": [ - "Labour", - "Right to education", - "Rights of the Child" - ] - }, - { - "text": "Pursue efforts to combat the HIV/AIDS pandemic, particularly by the implementation of a national strategic plan to fight against this pandemic", - "values": [ - "HIV - Aids" - ] - }, - { - "text": "Implement measures to ensure more effective legal procedures and speedier resolution of legal cases", - "values": [ - "Justice" - ] - }, - { - "text": "Ensure that the Government of the United Kingdom takes all necessary steps to prevent all kinds of discrimination directed at minorities in the community namely the Roma community", - "values": [ - "Minorities" - ] - }, - { - "text": "Give high priority to the adoption of practical measures for the full implementation of texts governing the media in Chad so that journalists can fully exercise their profession.", - "values": [ - "Freedom of the press" - ] - }, - { - "text": "Take additional steps, including legislative steps, to eradicate discrimination against migrant workers, members of their families as well as representatives of religious and national minorities ", - "values": [ - "Freedom of religion and belief", - "Labour", - "Migrants", - "Minorities", - "Racial discrimination" - ] - }, - { - "text": "Take the necessary measures to ensure that Japanese companies take into consideration the respect of human rights in their activities abroad", - "values": [ - "Business and human rights" - ] - }, - { - "text": "Enact legislation to ensure effective protection against all crimes committed against persons or against their property because of their sexual orientation or gender identity", - "values": [ - "Sexual Orientation and Gender Identity" - ] - }, - { - "text": "Continue strengthening successful social policies that promote access to education and health of the people, particularly for women and children", - "values": [ - "Minorities", - "Right to education", - "Rights of the Child", - "Women's rights" - ] - }, - { - "text": "Request technical assistance from relevant United Nations agencies and programmes and conclude partnerships with other interested countries to improve the health system, combat diseases, improve maternal health and reduce child mortality rates.", - "values": [ - "Right to health", - "Technical assistance and cooperation" - ] - }, - { - "text": "Intensify efforts to eradicate poverty, particularly among the Orang Asli in Peninsular Malaysia and the natives of Sabah and Sarawak", - "values": [ - "Indigenous peoples", - "Poverty" - ] - }, - { - "text": "Address the gender pay gap for work of equal value", - "values": [ - "Women's rights" - ] - }, - { - "text": "Implement necessary measures to reduce the relative high drop-out rate in primary schools", - "values": [ - "Right to education", - "Rights of the Child" - ] - }, - { - "text": "Continue its efforts to investigate racially motivated crimes and to bring perpetrators to justice so that members of vulnerable groups can live in safety and dignity ", - "values": [ - "Racial discrimination" - ] - }, - { - "text": "Acceded to the First Optional Protocol to the International Covenant on Civil and Political Rights and the Optional Protocol to the Convention on the Elimination of All Forms of Discrimination against Women and the Optional Protocol to the Convention against Torture ", - "values": [ - "CP rights - general", - "Detention", - "International instruments", - "Torture and other CID treatment", - "Women's rights" - ] - }, - { - "text": "Consider acceding to covenants on human rights such as the Convention on the Rights of the Child, the Convention against Torture and Other Cruel, Inhuman or Degrading Treatment or Punishment, and the International Convention on the Elimination of All Forms of Racial Discrimination", - "values": [ - "International instruments", - "Racial discrimination", - "Rights of the Child", - "Torture and other CID treatment" - ] - }, - { - "text": "Continue reforms to consolidate the rule of law and the national mechanisms for protection of human rights", - "values": [ - "Justice" - ] - }, - { - "text": "Continue efforts aimed at ensuring all the rights of children and adolescents, girls in particular, in the area of freedom of expression and opinion, as well as addressing the special needs of children with disabilities, indigenous children, migrant children and other children in vulnerable situations ", - "values": [ - "Disabilities", - "Freedom of opinion and expression", - "Indigenous peoples", - "Migrants", - "Rights of the Child", - "Women's rights" - ] - }, - { - "text": "Review and amend the relevant legislation and practice in order to strengthen the independence of justice, ensure merit-based appointment of judges and protect their work against political interference", - "values": [ - "Justice" - ] - }, - { - "text": "Consider ratifying the ILO Convention No. 87 concerning Freedom of Association and Protection of the Right to Organise ", - "values": [ - "Freedom of association and peaceful assembly", - "International instruments" - ] - }, - { - "text": "Cease without any delay deliberate and indiscriminate attacks against civilians, as well as the targeting of hospitals and schools, including through the use of barrel bombs and chemical weapons", - "values": [ - "International humanitarian law" - ] - }, - { - "text": "Develop a specific legal framework defining and protecting rights and freedoms of refugees and amend the 1962 Law on Entry and Exit with a view to de-penalise the illegal entry or presence of asylum-seekers and refugees registered by UNHCR", - "values": [ - "Asylum-seekers - refugees" - ] - }, - { - "text": "Adopt measures ensuring effective national birth registration, including through programmes of mobile registration units and registration of those without documentation.", - "values": [ - "Rights of the Child", - "Statelessness and the right to nationality" - ] - }, - { - "text": "Protect effectively the rights of refugees and migrants and adopt concrete measures to combat and prevent xenophobic violence", - "values": [ - "Migrants", - "Racial discrimination" - ] - }, - { - "text": "Modify the 2012 law regulating NGOs to harmonize it with its human rights obligations", - "values": [ - "Civil society", - "Freedom of association and peaceful assembly" - ] - }, - { - "text": "Consider appropriate, effective measures to provide for a better promotion and protection of the freedom of religion or belief ", - "values": [ - "Freedom of religion and belief" - ] - }, - { - "text": "Strengthen efforts to reduce maternal and child mortality", - "values": [ - "Right to health", - "Rights of the Child", - "Women's rights" - ] - }, - { - "text": "Continue its existing fruitful cooperation with the system of United Nations human rights mechanisms ", - "values": [ - "Special procedures", - "Treaty bodies", - "UPR process" - ] - }, - { - "text": "Ensure that LGBT persons are not discriminated against and, as an immediate step, to amend the provisions of the penal code criminalizing consensual sexual activity among persons of the same sex and to ensure that no one is punished for such activity under Sharia law", - "values": [ - "Sexual Orientation and Gender Identity" - ] - }, - { - "text": "Consider lifting the reservations made to articles 17 to 19 (on wage-earning employment, self-employment and liberal professions) of the 1951 Convention relating to the Status of Refugees ", - "values": [ - "Asylum-seekers - refugees", - "International instruments", - "Labour" - ] - }, - { - "text": "Take additional steps to guarantee equal access for women to appropriate health services, especially sexual and reproductive health services, and ratify the Optional Protocol to the Convention on the Elimination of All Forms of Discrimination against Women", - "values": [ - "International instruments", - "Right to health", - "Women's rights" - ] - }, - { - "text": "Strengthen its efforts to build reconciliation among the social strata in the society, based on the principles of democracy and the rule of law", - "values": [ - "Justice" - ] - }, - { - "text": "Investigate and bring to justice alleged perpetrators of all cases of torture and use of excessive force by security forces", - "values": [ - "Human rights violations by state agents", - "Torture and other CID treatment" - ] - }, - { - "text": "Continue its efforts for the advancement of women, with an emphasis on curbing violence against women ", - "values": [ - "Women's rights" - ] - }, - { - "text": "Adopt the necessary measures to ensure easy and effective access to free birth registration", - "values": [ - "Rights of the Child", - "Statelessness and the right to nationality" - ] - }, - { - "text": "Surrender Saif al-Islam Qadhafi to face charges against humanity in accordance with the Court's Appeals Chamber decision of May 2014 ", - "values": [ - "Justice" - ] - }, - { - "text": "Consider ratifying-acceding to the International Covenant on Economic, Social and Cultural Rights.", - "values": [ - "ESC rights - general", - "International instruments" - ] - }, - { - "text": "Criminalize acts of torture in the penal code and set up a national preventive mechanism in line with the Optional Protocol to the Convention against Torture", - "values": [ - "Detention", - "International instruments", - "Torture and other CID treatment" - ] - }, - { - "text": "Strengthen further the criminal justice system", - "values": [ - "Justice" - ] - }, - { - "text": "Investigate carefully each case of immigrants' incarceration ", - "values": [ - "Justice", - "Migrants" - ] - }, - { - "text": "Take necessary steps to combat manifestation of neo-Nazi, right-wing extremist and xenophobic incidents directed against members of minority groups ", - "values": [ - "Minorities", - "Racial discrimination" - ] - }, - { - "text": "Keep on efforts, both on legal and procedural grounds, to ensure full respect and protection for the rights of persons with disabilities, including access to education and providing resources in that regard ", - "values": [ - "Disabilities", - "Right to education" - ] - }, - { - "text": "Recommended including the right to organize, bargain collectively and strike in the law, extend the labour law to cover all groups, including domestic employees and farm labourers, make this law known to the public through awareness campaigns.", - "values": [ - "Labour" - ] - }, - { - "text": "Adopt positive measures to enable people with disabilities and national minorities to have access to education, health services and an adequate standard of living", - "values": [ - "Disabilities", - "Minorities", - "Right to education", - "Right to health", - "Right to housing" - ] - }, - { - "text": "Review conditions in prison and detention facilities, in particular where juveniles are concerned and allow access to detention facilities to civil society organizations.", - "values": [ - "Detention" - ] - }, - { - "text": "Withdraw the reservations to CEDAW", - "values": [ - "International instruments", - "Women's rights" - ] - }, - { - "text": "Review periodically its reservations to the ICCPR, as recommended by the Human Rights Committee in its general comment 24 ", - "values": [ - "CP rights - general", - "International instruments", - "Treaty bodies" - ] - }, - { - "text": "Carry out impartial investigations into all allegations of enforced disappearances perpetrated by law enforcement officers", - "values": [ - "Enforced disappearances", - "Human rights violations by state agents" - ] - }, - { - "text": "Take all necessary measures to ratify the Rome Statute of the International Criminal Court", - "values": [ - "International instruments", - "Justice" - ] - }, - { - "text": "Give importance and continue to provide human rights training for government officials at all levels, law enforcement personnel, police, the judiciary, including judges and lawyers", - "values": [ - "Human rights education and training" - ] - }, - { - "text": "Step up its implementation of best practices on gender equality and empowerment of women and continue the programmes that are successfully being carried out in the area of gender equality and access of women to decision-making positions.", - "values": [ - "Women's rights" - ] - }, - { - "text": "Ensure equal access to education for vulnerable people, including women, children and persons with disabilities", - "values": [ - "Disabilities", - "Right to education", - "Rights of the Child", - "Women's rights" - ] - }, - { - "text": "Strengthen the right to a fair trial, inter alia through the consequent implementation of relevant European Union standards", - "values": [ - "Justice" - ] - }, - { - "text": "Consider incorporating the United Nations Rules for the Treatment of Women Prisoners and Non-Custodial Measures for Women Offenders, otherwise known as the "Bangkok Rules", as part of its programme to enhance the conditions of detainees in Her Majesty's Prison ", - "values": [ - "Detention", - "Women's rights" - ] - }, - { - "text": "Continue its efforts to combat all forms of discrimination particularly religious discrimination and protecting of religious minority groups", - "values": [ - "Freedom of religion and belief", - "Minorities", - "Racial discrimination" - ] - }, - { - "text": "Pursue its efforts to further empower women and enhance their condition and participation in political life.", - "values": [ - "Women's rights" - ] - }, - { - "text": "Seek the necessary international assistance, upon identification of its national priorities, to be better able to fulfil its obligations in the area of the promotion and protection of human rights ", - "values": [ - "Technical assistance and cooperation" - ] - }, - { - "text": "Adopt a comprehensive plan on the rights of the child that fight trafficking, labour exploitation, sexual abuse and physical violence", - "values": [ - "Labour", - "Rights of the Child", - "Trafficking" - ] - }, - { - "text": "Repeal legislation criminalizing women and girls for having an abortion, as well as healthcare providers performing such services, and take measures to allow legal and safe abortions at least in cases of rape or incest, in cases where the life or health of the mother is at risk, or where the foetus is diagnosed with grave health deficiencies", - "values": [ - "Right to health", - "Rights of the Child", - "Women's rights" - ] - }, - { - "text": "Repeal provisions of the legislation regulating NGOs that require the registration of organizations receiving financial support from outside sources as "foreign agents" ", - "values": [ - "Civil society", - "Freedom of association and peaceful assembly" - ] - }, - { - "text": "Continue efforts to increase women's representation in decision- making positions on an equal footing with men", - "values": [ - "Women's rights" - ] - }, - { - "text": "Continue to prioritize and facilitate funding access for prospective and eligible students from poor and low-income families to pursue higher education", - "values": [ - "Poverty", - "Right to education" - ] - }, - { - "text": "Carry out prompt, credible and impartial investigations of all alleged extrajudicial killings and other excessive use of force by law enforcement officials resulting in death and bring all perpetrators to justice in compliance with international standards for fair trials ", - "values": [ - "Extrajudicial executions", - "Human rights violations by state agents" - ] - }, - { - "text": "Complete its international commitments to protect and promote human rights by acceding to the relevant international instruments, in particular to the Convention against Torture and Other Cruel, Inhuman or Degrading Treatment or Punishment and the Optional Protocol to the Convention on the Elimination of All Forms of Discrimination against Women ", - "values": [ - "International instruments", - "Torture and other CID treatment", - "Women's rights" - ] - }, - { - "text": "Promptly ratify the International Convention on the Protection of the Rights of All Migrant Workers and Members of Their Families and the ILO Indigenous and Tribal Peoples Convention, 1989 (No. 169)", - "values": [ - "Indigenous peoples", - "International instruments", - "Labour", - "Migrants" - ] - }, - { - "text": "Persist with its noteworthy efforts to combat trafficking through national and international collaboration ", - "values": [ - "Trafficking" - ] - }, - { - "text": "That all journalists remaining in detention on the basis of misuse of criminal libel or defamation trials be released", - "values": [ - "Detention", - "Freedom of opinion and expression", - "Freedom of the press" - ] - }, - { - "text": "Consider alternatives to the detention of irregular migrants and asylum- seekers, limit the length of detentions, ensure access to legal and health assistance and uphold its obligations under the Vienna Convention on Consular Relations ", - "values": [ - "Asylum-seekers - refugees", - "Detention" - ] - }, - { - "text": "Attach more attention to job creation, especially addressing youth unemployment ", - "values": [ - "Development" - ] - }, - { - "text": "Amend the Law on Foreigners to include an explicit limit to administrative detention", - "values": [ - "Detention" - ] - }, - { - "text": "Continue efforts to promote the education of children and to develop training and higher institutions ", - "values": [ - "Right to education", - "Rights of the Child" - ] - }, - { - "text": "Continue efforts to combat the various forms of discrimination and strive for the respect of the rights of minority ethnic groups", - "values": [ - "Minorities", - "Racial discrimination" - ] - }, - { - "text": "Consider amending legislation, which limit Palestinian refugees from owning property, considering the suffering of our people there and facilitate their lives and meet their human needs, with emphasis on the right to return as one of the basic rights to the Palestinian refugees", - "values": [ - "Asylum-seekers - refugees", - "Freedom of movement", - "Right to land" - ] - }, - { - "text": "With support from UNESCO and ILO, continue to strengthen its education system and vocational training especially for youth", - "values": [ - "Right to education", - "Technical assistance and cooperation" - ] - }, - { - "text": "Eliminate the application of military jurisdiction to civilians.", - "values": [ - "Justice" - ] - }, - { - "text": "Consider additional measures to guarantee the security of humanitarian aid organizations so they may undertake their work without risks ", - "values": [ - "Other" - ] - }, - { - "text": "Implement educational programs aimed at raising awareness of the past genocides and of prevention of this crime", - "values": [ - "Justice" - ] - }, - { - "text": "Consider a moratorium on the death penalty with a view to abolishing it", - "values": [ - "Death penalty" - ] - }, - { - "text": "Fully cooperate with all human rights mechanisms, including accession to CAT, as well as access to the territory for the Special Rapporteur on torture ", - "values": [ - "International instruments", - "Special procedures", - "Torture and other CID treatment" - ] - }, - { - "text": "Increase efforts to address the question of sexual violence of children, in particular in rural areas, develop effective data collection with regard to sexual and physical abuse of children and ensure that adequate report, policing and juridical measures are in place.", - "values": [ - "Rights of the Child" - ] - }, - { - "text": "Take every possible measure to ensure the protection of the civilian population, in particular vulnerable groups, such as children, women and IDP's.", - "values": [ - "Internally displaced persons", - "International humanitarian law", - "Rights of the Child", - "Women's rights" - ] - }, - { - "text": "Take effective measures to accelerate the consolidation of property rights as an aspect of ensuring gender equality ", - "values": [ - "Women's rights" - ] - }, - { - "text": "Strengthen the justice system, safeguarding the independence of judges and magistrates and ensure access by all people (including Batwas and asylum seekers) to justice without discrimination", - "values": [ - "Asylum-seekers - refugees", - "Indigenous peoples", - "Justice", - "Racial discrimination" - ] - }, - { - "text": "Strengthen the national system of investigating complaints of child abuse and neglect, eliminate violence against children, and establish policies to protect children from all forms of violence ", - "values": [ - "Rights of the Child" - ] - }, - { - "text": "Consider introducing civic and human rights education in primary and secondary school curricula", - "values": [ - "Human rights education and training" - ] - }, - { - "text": "Adopt and implement specific legislation on racism, racial discrimination, xenophobia and related intolerance, with particular emphasis on the protection of migrant workers and their families", - "values": [ - "Labour", - "Migrants", - "Racial discrimination" - ] - }, - { - "text": "Adopt the measures necessary to ensure that the issuance of work and residence permits does not depend entirely on employers, so that victims of exploitation are not prevented from obtaining justice ", - "values": [ - "Labour", - "Migrants" - ] - }, - { - "text": "Increase access to affordable contraceptive methods throughout the country, include comprehensive sexuality education in school curricula, and provide adequate and effective sexual and reproductive health services, including to adolescents", - "values": [ - "Right to health", - "Rights of the Child", - "Women's rights" - ] - }, - { - "text": "Undertake a review of detention conditions for asylum-seekers to ensure they are fully in line with international and European standards ", - "values": [ - "Asylum-seekers - refugees" - ] - }, - { - "text": "Take further measures to prevent torture including acceding to the Optional Protocol to CAT and establishing a national preventive mechanism accordingly", - "values": [ - "Detention", - "International instruments", - "Torture and other CID treatment" - ] - }, - { - "text": "Continue to support the programmes aimed at enhancing human rights education and training, and consider integrating this subject into primary education ", - "values": [ - "Human rights education and training" - ] - }, - { - "text": "Enforce laws which further ensure the integration and socioeconomic participation of Afro-Panamanians and other people of African descent", - "values": [ - "ESC rights - general", - "Minorities" - ] - }, - { - "text": "Adopt measures with a view to combating discrimination and intolerance from which the LGBT population suffers ", - "values": [ - "Sexual Orientation and Gender Identity" - ] - }, - { - "text": "Repeal legislation criminalizing consensual same-sex relations between adults", - "values": [ - "Sexual Orientation and Gender Identity" - ] - }, - { - "text": "Ratify the two optional protocols to the ICCPR ", - "values": [ - "CP rights - general", - "Death penalty", - "International instruments" - ] - }, - { - "text": "Ensure that the judiciary has the necessary independence from the executive branch, limiting the attributions of the latter to the appointment of judges, in particular to the Supreme Court.", - "values": [ - "Justice" - ] - }, - { - "text": "Eliminate provisions on polygamy", - "values": [ - "Women's rights" - ] - }, - { - "text": "Reiterates the recommendation for Poland to consider ratifying the International Convention on the Protection of the Rights of all Migrant Workers and Members of their Families ", - "values": [ - "International instruments", - "Labour", - "Migrants" - ] - }, - { - "text": "Continue its talks with all the parties involved in the process of the elaboration and implementation of the plan of relocation of the persons displaced following the seism in order to avoid forced evictions", - "values": [ - "Internally displaced persons" - ] - }, - { - "text": "Take concrete measures to protect the rights and promote the development of indigenous peoples while ensuring their full participation in the decision-making and implementation of policies that affect them ", - "values": [ - "Indigenous peoples" - ] - }, - { - "text": "Ensure the independence and impartiality of the judiciary", - "values": [ - "Justice" - ] - }, - { - "text": "Take effective measures to address gender inequality, combat domestic violence and sexual exploitation, and effectively protect women\u2019s and children\u2019s rights", - "values": [ - "Rights of the Child", - "Women's rights" - ] - }, - { - "text": "Take concrete measures to prevent cases of violence against women, including the implementation of awareness-raising campaigns on the rights of women and girls", - "values": [ - "Human rights education and training", - "Rights of the Child", - "Women's rights" - ] - }, - { - "text": "Create ideal conditions for the Ombudsman and the High Commissioners for Consultative Governance and National Solidarity to operate", - "values": [ - "National Human Rights Institution" - ] - }, - { - "text": "Continue to adopt measures in order to ensure the creation of a comprehensive anti-discrimination framework", - "values": [ - "Racial discrimination" - ] - }, - { - "text": "Take specific and additional measures aimed at strengthening its national unity and internal domestic security and fostering cooperation in order to disseminate the culture of social peaceful coherence and guarantee freedom of expression that ensures social justice among all components of society", - "values": [ - "Freedom of opinion and expression" - ] - }, - { - "text": "Amend the age of sexual consent from 12 to 16 years", - "values": [ - "Rights of the Child" - ] - }, - { - "text": "Accelerate the efforts to establish a national human rights institution in full compliance with the Paris Principles", - "values": [ - "National Human Rights Institution" - ] - }, - { - "text": "Reduce the gaps between the genders to ensure gender equality in the area of education", - "values": [ - "Right to education", - "Women's rights" - ] - }, - { - "text": "Strengthen its efforts to enforce the Prevention of Trafficking in Persons Act", - "values": [ - "Trafficking" - ] - }, - { - "text": "Ratify the Kampala amendments to the Rome Statute of the International Criminal Court, if possible with a view to contributing to the activation of the jurisdiction of the International Criminal Court, over the crime of aggression at the beginning of 2017", - "values": [ - "International instruments", - "Justice" - ] - }, - { - "text": "Consider ratifying the International Convention for the Protection of All Persons from Enforced Disappearance, the Optional Protocol to the Convention on the Elimination of All Forms of Discrimination against Women and the Convention against Discrimination in Education", - "values": [ - "Enforced disappearances", - "International instruments", - "Right to education", - "Women's rights" - ] - }, - { - "text": "Extend a standing invitation to all special procedures of the Human Rights Council to promote and strengthen legislation and public policies on human rights", - "values": [ - "Special procedures" - ] - }, - { - "text": "Ban child corporal punishment, notably within the penal and the educational system ", - "values": [ - "Rights of the Child", - "Torture and other CID treatment" - ] - }, - { - "text": "Strengthen the impartiality of the Judicial Service Commission and ensure the independence of the judiciary", - "values": [ - "Justice" - ] - }, - { - "text": "Strengthen and seek further assistance from the international community to support its efforts towards development and in effectively implementing the recommendations arising from the UPR", - "values": [ - "Development", - "Technical assistance and cooperation", - "UPR process" - ] - }, - { - "text": "Address the situation of children living or working on the street and juvenile offenders - intensify measures to criminalize and sanction cases involving the sale of children, child prostitution and child pornography - and initiate reforms of the juvenile justice system in line with international standards ", - "values": [ - "Justice", - "Rights of the Child", - "Trafficking" - ] - }, - { - "text": "Establish an inclusive process to follow up on the recommendations of the Working Group ", - "values": [ - "UPR process" - ] - }, - { - "text": "Continue to support the Saharawi people so that they can exercise their right to self-determination ", - "values": [ - "Other" - ] - }, - { - "text": "Investigate and criminalize cases of xenophobic and stigmatizing discourses expressed by public officials and politicians", - "values": [ - "Racial discrimination" - ] - }, - { - "text": "Pursue and intensify initiatives in the area of housing", - "values": [ - "Right to housing" - ] - }, - { - "text": "Give continuity to the strengthening of the national human rights institutions and related mechanisms", - "values": [ - "National Human Rights Institution" - ] - }, - { - "text": "Further promote access to remedy for victims of human rights violations", - "values": [ - "Justice" - ] - }, - { - "text": "Pass legislation guaranteeing the right of religious minorities to build and maintain places of worship", - "values": [ - "Freedom of religion and belief", - "Minorities" - ] - }, - { - "text": "Continue with all its endeavours to ensure further success in the implementation of the recently established relevant programmes/policies on human rights, especially the efforts in the continued implementation of the social agenda of minorities", - "values": [ - "Minorities" - ] - }, - { - "text": "Increase its efforts to contribute to the disarmament, demobilization and reintegration of children involved in armed conflict.", - "values": [ - "International humanitarian law", - "Rights of the Child" - ] - }, - { - "text": "Make additional efforts in eradicating illiteracy", - "values": [ - "Right to education" - ] - }, - { - "text": "Guarantee freedom of religion or belief and the rights of persons belonging to national minorities and hold to account the perpetrators of violence and threats against religious minorities", - "values": [ - "Freedom of religion and belief", - "Minorities" - ] - }, - { - "text": "Undertake all necessary steps to ensure just and timely settlement of the property claims of displaced persons of Bulgarian identity from Eastern Thrace in conformity with the United Nations principles on Housing and Property Restitution for Refugees and Displaced Persons and the instruments of the Council of Europe related to the redress for loss of housing, land and property of refugees and displaced persons ", - "values": [ - "Asylum-seekers - refugees", - "Internally displaced persons" - ] - }, - { - "text": "Fully implement the adopted Gender Equality Act", - "values": [ - "Women's rights" - ] - }, - { - "text": "Continue towards ensuring that adequate instruments are put in place, enabling the involvement of Ethiopian citizens in the promotion and protection of human rights ", - "values": [ - "General" - ] - }, - { - "text": "Implementing plans to develop human resources and the health-care delivery system and further reforming the management of health facilities.", - "values": [ - "Right to health" - ] - }, - { - "text": "Continue to combat transnational crime, strengthening the cooperation in this area, in particular with States in the region", - "values": [ - "Justice" - ] - }, - { - "text": "Systematically register all religious and customary marriages", - "values": [ - "Other" - ] - }, - { - "text": "Take all appropriate measures to promote tolerance, intercultural dialogue and respect for diversity in the society", - "values": [ - "Minorities" - ] - }, - { - "text": "Review the new legislation on child labour and consider developing a national plan to reduce child labour", - "values": [ - "Labour", - "Rights of the Child" - ] - }, - { - "text": "Consider changing legislation to expressly prohibit all forms of corporal punishment in all settings (at home, in schools and in other institutions) and conduct awareness-raising efforts to change the public's attitude to corporal punishment.", - "values": [ - "Human rights education and training", - "Rights of the Child", - "Torture and other CID treatment" - ] - }, - { - "text": "Proceed with child protection legislative reform ", - "values": [ - "Rights of the Child" - ] - }, - { - "text": "Grant access to the United Nations Rapporteurs on torture and on the independence of judges and lawyers, and facilitate their visits", - "values": [ - "Justice", - "Special procedures", - "Torture and other CID treatment" - ] - }, - { - "text": "Continue efforts to adopt and implement the legislative framework to prevent, punish and eliminate all forms of discrimination, with special attention to gender equality and discrimination based on sexual orientation and disability", - "values": [ - "Disabilities", - "Sexual Orientation and Gender Identity", - "Women's rights" - ] - }, - { - "text": "Put effective measures in place in order to increase the number of women at all levels of the decision-making process", - "values": [ - "Women's rights" - ] - }, - { - "text": "Adopt comprehensive measures against discrimination towards children and repeal all legislation that discriminates against children born out of wedlock. Promote awareness campaigns and education programs about the human rights of all boys, girls and adolescents, particularly in relation to the acquisition of nationality, inheritance rights and the right to identity", - "values": [ - "Human rights education and training", - "Rights of the Child" - ] - }, - { - "text": "Take all measures to implement the Family Protection Act of 2008 and train the police specifically to receive complaints from women on violence perpetrated against them by their partners or spouses ", - "values": [ - "Rights of the Child", - "Women's rights" - ] - }, - { - "text": "Consider formulating legislation on eliminating violence against women, including domestic violence ", - "values": [ - "Women's rights" - ] - }, - { - "text": "Study the possibility of becoming a party to the following international instruments: the Convention against Torture and Other Cruel, Inhuman or Degrading Treatment or Punishment (CAT)", - "values": [ - "International instruments", - "Torture and other CID treatment" - ] - }, - { - "text": "Increase the level of its contribution of official development assistance to reach at least the threshold of 0.7 percent of GNP", - "values": [ - "Development" - ] - }, - { - "text": "Bridge the gap in economic and social development between rural and urban areas and among regions", - "values": [ - "Development" - ] - }, - { - "text": "Take legal measures to alleviate the difficulties faced by members of minority groups, including Muslims, Roma and African people as well as the enjoyment of their economic, social and cultural rights", - "values": [ - "ESC rights - general", - "Freedom of religion and belief", - "Minorities" - ] - }, - { - "text": "Take measures to ensure that the police respond to and investigate complaints regarding violence against women and that the perpetrators are prosecuted and punished, and collect data on the number of prosecutions and convictions, including at the provincial level", - "values": [ - "Women's rights" - ] - }, - { - "text": "Take the necessary measures to submit overdue reports to treaty bodies", - "values": [ - "Treaty bodies" - ] - }, - { - "text": "Guarantee universal basic education, in accordance with the international human rights treaties it has ratified, and ensure that primary education is compulsory and free for all ", - "values": [ - "International instruments", - "Right to education" - ] - }, - { - "text": "Continue the good work in the area of addressing the problem of human trafficking", - "values": [ - "Trafficking" - ] - }, - { - "text": "Continue to ensure the full implementation of the National Action Plan on Disability and strengthen coherence across laws and policies to ensure that persons with disabilities are able to lead fulfilling and productive lives", - "values": [ - "Disabilities" - ] - }, - { - "text": "Maintain its de facto moratorium on the use of the death penalty with a view towards its total abolition, including through the ongoing process of reform of the Criminal Code", - "values": [ - "Death penalty" - ] - }, - { - "text": "Increase efforts to promote and protect the cultural rights of the Lao people to preserve the national culture and the cultures and languages of ethnic groups in the Lao People's Democratic Republic ", - "values": [ - "ESC rights - general", - "Minorities" - ] - }, - { - "text": "Take further measures to ensure that the police and justice system deals diligently with gender-based violence and that the country promotes better training for police officers in responding to victims of sexual violence ", - "values": [ - "Human rights education and training", - "Women's rights" - ] - }, - { - "text": "Take further measures for ensuring proper protection of rights of migrants, including migrant workers", - "values": [ - "Labour", - "Migrants" - ] - }, - { - "text": "Expand programmes for the promotion of employment, and food assistance activities for vulnerable populations in the framework of the fight against poverty and social inequality ", - "values": [ - "Development", - "Poverty", - "Right to food" - ] - }, - { - "text": "Take immediate actions to restore peace and the respect of human rights and fundamental freedoms ", - "values": [ - "General" - ] - }, - { - "text": "Take sufficient measures to ensure the impartiality and transparency of the judicial system, allocating sufficient funds to ensuring its effective functioning", - "values": [ - "Justice" - ] - }, - { - "text": "In line with the recommendations of the Committee on Economic, Social and Cultural Rights, revoke the condition which requires a minority group to have lived in the county at least one hundred years in order to be considered a national minority ", - "values": [ - "Minorities", - "Treaty bodies" - ] - }, - { - "text": "Ensure that minority groups are not disproportionally affected by the financial and economic crisis.", - "values": [ - "Minorities" - ] - }, - { - "text": "Accelerate fulfilment of its voluntary commitments as a member of the Council, especially by increasing resources to ensure social security and welfare of its citizens as well as the rights of vulnerable groups", - "values": [ - "ESC rights - general" - ] - }, - { - "text": "Ensure access to justice by all, including by repealing laws on mandatory sentencing", - "values": [ - "Justice" - ] - }, - { - "text": "Accede to the fundamental international instruments on human rights, in particular the International Covenant on Civil and Political Rights, the International Covenant on Economic, Social and Cultural Rights and the Convention against Torture", - "values": [ - "CP rights - general", - "ESC rights - general", - "International instruments", - "Torture and other CID treatment" - ] - }, - { - "text": "Bring its legislation into conformity with its international human rights obligations by repealing laws that criminalize sexual activity between consenting adults of the same sex", - "values": [ - "International instruments", - "Sexual Orientation and Gender Identity" - ] - }, - { - "text": "Invite the Special Rapporteur on Torture in order to examine the situation in all of Iraq's detention facilities and formulate recommendations for appropriate reform", - "values": [ - "Detention", - "Special procedures", - "Torture and other CID treatment" - ] - }, - { - "text": "Refrain from undertaking actions beyond its borders that contribute to violations and abuses of human rights, including through immediate termination of any relevant form of political, military, logistical or financial support in this regard", - "values": [ - "Public security" - ] - }, - { - "text": "Further ensure on its territory harmonized legislation on domestic violence and continue strengthening the referral mechanisms in order to provide protection to victims of domestic violence", - "values": [ - "Rights of the Child", - "Women's rights" - ] - }, - { - "text": "Continue placing poverty alleviation as one of its priority tasks and promote sustainable economic and social development", - "values": [ - "Development", - "Poverty" - ] - }, - { - "text": "Facilitating access for undocumented immigrants and their children to health care under that Act", - "values": [ - "Migrants", - "Right to health", - "Rights of the Child" - ] - }, - { - "text": "Increase oversight of labour recruitment agencies licensed in Lesotho, and accelerate legal reforms to combat the worst forms of child labour", - "values": [ - "Business and human rights", - "Labour", - "Rights of the Child" - ] - }, - { - "text": "Continue its efforts aimed at the development of policies and programmes for poverty alleviation and eradication, with special emphasis on vulnerable groups, including people with disabilities and women and children, and mainstream a gender perspective into all relevant policies and programmes being developed ", - "values": [ - "Disabilities", - "Poverty", - "Rights of the Child", - "Women's rights" - ] - }, - { - "text": "Strengthen the efforts to ensure the protection and dignity of Syrian refugees, especially with regard to health care, access to education and protection of children, women, the elderly and persons with disabilities in situation of risk", - "values": [ - "Asylum-seekers - refugees", - "Disabilities", - "Right to education", - "Right to health", - "Rights of the Child", - "Women's rights" - ] - }, - { - "text": "Ratify the Convention relating to the Status of Stateless Persons", - "values": [ - "International instruments", - "Statelessness and the right to nationality" - ] - }, - { - "text": "Continue the process towards a speedy implementation of the Family Safety Bill, currently being considered, which will render effective the relevant provisions of the Convention on the Elimination of all Forms of Discrimination against Women and the Convention on the Rights of the Child relating to domestic violence issues ", - "values": [ - "Rights of the Child", - "Women's rights" - ] - }, - { - "text": "Take further measures to eradicate discrimination against women, as prescribed by Article 3 of the International Covenant on Civil and Political Rights, by considering the withdrawal of its reservation to Article 9 of the Convention on the Elimination of All Forms of Discrimination against Women and allowing women to pass on citizenship to their children in the same manner as men", - "values": [ - "International instruments", - "Statelessness and the right to nationality", - "Women's rights" - ] - }, - { - "text": "Submit promptly all due reports to international treaty bodies ", - "values": [ - "Treaty bodies" - ] - }, - { - "text": "Ensure that all those involved in the reception process for migrants have the training, time and ability to identify persons who want to apply for asylum. Anyone claiming to be an unaccompanied minor should benefit, without exception, from the specific protections guaranteed under Italian law, pending a properly conducted age determination", - "values": [ - "Asylum-seekers - refugees", - "Migrants", - "Rights of the Child" - ] - }, - { - "text": "Enhance implementation of the constitutional provisions on freedom of expression", - "values": [ - "Freedom of opinion and expression" - ] - }, - { - "text": "Eliminate overcrowding in prisons and improve conditions in its penitentiary system in line with the United Nations Standard Minimum Rules for the Treatment of Prisoners", - "values": [ - "Detention" - ] - }, - { - "text": "Ensure that the revocation of the resident permits of married women who are victims of domestic violence is subject to a review and done only after a full evaluation of the impact on those women and their children.", - "values": [ - "Rights of the Child", - "Women's rights" - ] - }, - { - "text": "Preserve its positive record on combating trafficking and modern slavery by fully implementing activities envisaged in its second National Plan to Fight Human Trafficking", - "values": [ - "Trafficking" - ] - }, - { - "text": "Ratify or accede to all core international human rights instruments such as ICCPR, ICESCR and CAT", - "values": [ - "CP rights - general", - "ESC rights - general", - "International instruments", - "Torture and other CID treatment" - ] - }, - { - "text": "Adopt all possible measures to prevent and explicitly prohibit in its legal order the recruitment of children and their participation in armed actions and terrorist activities", - "values": [ - "Rights of the Child" - ] - }, - { - "text": "Sign and ratify the Second Optional Protocol to the ICCPR", - "values": [ - "Death penalty", - "International instruments" - ] - }, - { - "text": "Put a special emphasis on respecting the principle of the separation of powers, and stop any interference by members of the executive or legislative branches with the operation of the judiciary ", - "values": [ - "Justice" - ] - }, - { - "text": "Consider abolishing the death penalty in the context of the moratorium ", - "values": [ - "Death penalty" - ] - }, - { - "text": "Ratify the Council of Europe Convention on Action against Trafficking in Human Beings", - "values": [ - "Trafficking" - ] - }, - { - "text": "Bring the Printing Presses and Publication Act (1948) the Official Secrets Act (1972) and the Sedition Act (1948) in line with international human rights standards and enable all citizens to exercise fully the rights of opinion and expression", - "values": [ - "Freedom of opinion and expression", - "Freedom of the press", - "International instruments" - ] - }, - { - "text": "Eradicate persistent discrimination against and segregation of Roma children who are forced to attend schools for children with mental disabilities", - "values": [ - "Disabilities", - "Minorities", - "Racial discrimination", - "Right to education", - "Rights of the Child" - ] - }, - { - "text": "Increase efforts to end discrimination and violence against religious minorities and prosecute those involved in incitement to religious hatred and violence", - "values": [ - "Freedom of religion and belief", - "Minorities", - "Racial discrimination" - ] - }, - { - "text": "Effectively investigate, prosecute and punish all hate crimes and take effective measures to combat hate speech in the media and on the internet, including by prosecuting the perpetrators regardless of their official status", - "values": [ - "Racial discrimination" - ] - }, - { - "text": "Fully respect the rights of children, without any discrimination, and give necessary prerogatives to the ombudsman working in this area", - "values": [ - "National Human Rights Institution", - "Rights of the Child" - ] - }, - { - "text": "Draft a comprehensive law on children to incorporate in Slovenian domestic law all the provisions of the Convention on the Rights of the Child", - "values": [ - "International instruments", - "Rights of the Child" - ] - }, - { - "text": "Provide, in the fight against AIDS, support and access to medicines to all people in need ", - "values": [ - "HIV - Aids" - ] - }, - { - "text": "Provide adequate resources for the full implementation of the several national action plans on human rights promotion and protection ", - "values": [ - "General" - ] - }, - { - "text": "Harmonize the Law on Public Assembly with international standards ", - "values": [ - "Freedom of association and peaceful assembly" - ] - }, - { - "text": "Ratify Additional Protocols I and II to the Geneva Conventions of 12 August 1949", - "values": [ - "International humanitarian law", - "International instruments" - ] - }, - { - "text": "Comply with commitments enshrined in the Durban Declaration and Plan of Action, particularly as regards the prevention and punishment of discrimination against the population of Kurdish origin ", - "values": [ - "Minorities", - "Racial discrimination" - ] - }, - { - "text": "Finalize and take necessary steps to access to the Convention on the Rights of Persons with Disabilities ", - "values": [ - "Disabilities", - "International instruments" - ] - }, - { - "text": "Take concrete action to reduce the gender gap in decision-making positions and ensure equal remuneration for men and women for work of equal value", - "values": [ - "Women's rights" - ] - }, - { - "text": "Pursue its efforts in the in the field of education in order to fulfil the Millennium Development Goals and consolidate the national plan of education for all ", - "values": [ - "Development", - "Right to education" - ] - }, - { - "text": "Adopt measures to ensure that the Truth Commission enjoys absolute legitimacy and transparency in the election of its members, full independence to efficiently carry out its mandate, and clarity with respect to the scope of its mandate, so that it meets it objective, which is to know the truth regarding the serious human rights violations committed", - "values": [ - "Justice" - ] - }, - { - "text": "Consider redrafting its media law to align it with the needs of media development and media freedom", - "values": [ - "Freedom of the press" - ] - }, - { - "text": "Intensify efforts to promote and protect the rights of the child ", - "values": [ - "Rights of the Child" - ] - }, - { - "text": "Establish an effective and independent mechanism to investigate all allegations of torture promptly, independently and thoroughly", - "values": [ - "Torture and other CID treatment" - ] - }, - { - "text": "Continue to improve the supply of portable water, especially in the rural areas, with the support of the international community", - "values": [ - "Right to water and sanitation", - "Technical assistance and cooperation" - ] - }, - { - "text": "Give strict orders to security forces not to make mistakes by qualifying as terrorists those who in reality are human rights defenders and members of nongovernmental organisations.", - "values": [ - "Civil society", - "Human rights defenders" - ] - }, - { - "text": "Consider acceding to human rights instruments to which it is not yet party, particularly the Optional Protocol to the Convention against Torture and Other Cruel, Inhuman or Degrading Treatment or Punishment ", - "values": [ - "Detention", - "International instruments", - "Torture and other CID treatment" - ] - }, - { - "text": "Develop a national strategy for human rights education in the school system in accordance with the Plan of Action 2005-2009 of the World Programme for Human Rights Education, including the review and revision of curricula and textbooks, the training of teachers and the practice of human rights in the school community.", - "values": [ - "Human rights education and training" - ] - }, - { - "text": "Carry-out an awareness raising campaign against domestic and gender based violence, and, in specific terms, against offences against women for reasons of honor", - "values": [ - "Human rights education and training", - "Women's rights" - ] - }, - { - "text": "Respect the deadlines for submitting reports to various treaty bodies of the United Nations.", - "values": [ - "Treaty bodies" - ] - }, - { - "text": "Continue its efforts to eradicate poverty through the implementation of the tools developed in the framework of the national strategic policy", - "values": [ - "Poverty" - ] - }, - { - "text": "Consider strengthening measures aimed at the protection and integration of persons with disabilities, especially children with disabilities", - "values": [ - "Disabilities", - "Rights of the Child" - ] - }, - { - "text": "Take legal and administrative measures to improve the treatment of asylum seekers in order to establish safeguards against their arbitrary detention", - "values": [ - "Asylum-seekers - refugees", - "Detention" - ] - }, - { - "text": "Provide criminal liability for torture in line with article 1 of the Convention against Torture", - "values": [ - "International instruments", - "Torture and other CID treatment" - ] - }, - { - "text": "Repeal all provisions that criminalize consensual same sex relationships between adults or discriminate against homosexuals ", - "values": [ - "Sexual Orientation and Gender Identity" - ] - }, - { - "text": "Establish a universal birth registration system to ensure that all children have access to birth registration immediately after birth, regardless of the status of their parents", - "values": [ - "Rights of the Child", - "Statelessness and the right to nationality" - ] - }, - { - "text": "Adopt a national human rights action plan", - "values": [ - "General" - ] - }, - { - "text": "Include sexual orientation and gender identity specifically in antidiscrimination legislation, and consider using the Yogyakarta Principles on the Application of International Human Rights Law in relation to Sexual Orientation and Gender Identity ", - "values": [ - "International instruments", - "Sexual Orientation and Gender Identity" - ] - }, - { - "text": "Eliminate the legal provision that states that the age limit of marriage could be lowered to 13 years old in cases where children were sexually abused and could consequently marry the perpetrators", - "values": [ - "Rights of the Child" - ] - }, - { - "text": "Continue efforts to ensure access to basic education and equal opportunities ", - "values": [ - "Right to education" - ] - }, - { - "text": "Continue efforts aimed at promoting rights of children, women, persons with disabilities", - "values": [ - "Disabilities", - "Rights of the Child", - "Women's rights" - ] - }, - { - "text": "Continue to attach priority in the area of international cooperation to combating poverty, to mother and child health, to education and to combating pandemics", - "values": [ - "Poverty", - "Right to health", - "Rights of the Child", - "Technical assistance and cooperation", - "Women's rights" - ] - }, - { - "text": "Take all necessary measures to prevent and prosecute hate crimes, especially all forms of violence and harassment related to sexual orientation and gender identity", - "values": [ - "Racial discrimination", - "Sexual Orientation and Gender Identity" - ] - }, - { - "text": "Accede to and fully align the national legislation with the Rome Statute of the International Criminal Court, including by incorporating provisions to cooperate promptly and fully with the Court in investigations and prosecutions, and accede to the Agreement on Privileges and Immunities of the Court", - "values": [ - "International instruments", - "Justice" - ] - }, - { - "text": "Investigate reports that Burundian refugees have been recruited from camps in Rwanda into armed groups, and ensure that the civilian nature of refugee camps is fully respected", - "values": [ - "Asylum-seekers - refugees", - "International humanitarian law" - ] - }, - { - "text": "Continue to enhance measures combating the social and cultural causes of gender-based violence, by promoting awareness-raising campaigns, especially, in the education sector ", - "values": [ - "Human rights education and training", - "Women's rights" - ] - }, - { - "text": "Establish programmes and plans to combat trafficking in persons ", - "values": [ - "Trafficking" - ] - }, - { - "text": "Provide updated information regarding the judicial status of cases of murdered journalists for the report of the Director-General of the United Nations Educational, Scientific and Cultural Organization on the safety of journalists and the danger of impunity", - "values": [ - "Freedom of the press", - "Impunity" - ] - }, - { - "text": "Establish a timetable for reform of the system of sponsorship-based employment ", - "values": [ - "Labour", - "Migrants" - ] - }, - { - "text": "Continue efforts to promote access to justice, with a view to ensuring legal protection in the enjoyment of human rights by all citizens on an equal basis ", - "values": [ - "Justice" - ] - }, - { - "text": "Undertake the process of consultations with civil society stakeholders and the National Commission for Human Rights in the follow-up to the UPR review ", - "values": [ - "Civil society", - "National Human Rights Institution", - "UPR process" - ] - }, - { - "text": "Establish an independent electoral commission, allowing for open participation of political parties and objective certification of election results", - "values": [ - "CP rights - general" - ] - }, - { - "text": "Take further measures to put an end to violence against women", - "values": [ - "Women's rights" - ] - }, - { - "text": "Undertake all necessary efforts to allow for both parents to be able to act responsibly for the upbringing and development of the child", - "values": [ - "Rights of the Child" - ] - }, - { - "text": "Bridge the wage gap between men and women ", - "values": [ - "Women's rights" - ] - }, - { - "text": "Take further measures to implement the Anti-Discrimination Law, including through awareness raising activities ", - "values": [ - "Human rights education and training" - ] - }, - { - "text": "Continue to address the specific needs of children of migrants, refugees and asylum seekers and unaccompanied minors", - "values": [ - "Asylum-seekers - refugees", - "Migrants", - "Rights of the Child" - ] - }, - { - "text": "Consider ratification/accession to the Rome Statute of the ICC, to implement it fully at the national level and consider accession to the Agreement on Privileges and Immunities of the ICC", - "values": [ - "International instruments", - "Justice" - ] - }, - { - "text": "Continue with its efforts to further accelerate its holistic and multifaceted approach to promoting and protecting human rights and freedoms ", - "values": [ - "General" - ] - }, - { - "text": "Advance in the effective implementation of the human rights to water and sanitation, by increasing public water infrastructures", - "values": [ - "Right to water and sanitation" - ] - }, - { - "text": "Take further steps for the establishment of a human rights institution functioning in accordance with the Paris Principles", - "values": [ - "National Human Rights Institution" - ] - }, - { - "text": "Strengthen its judicial arsenal by adhering to international human rights conventions to which it is not yet a party, in particular CAT, CED and OP1-ICCPR ", - "values": [ - "CP rights - general", - "Enforced disappearances", - "International instruments", - "Torture and other CID treatment" - ] - }, - { - "text": "Continue its positive efforts to further reduce extreme poverty by redistributing wealth among the most needy through appropriate welfare benefits", - "values": [ - "Poverty" - ] - }, - { - "text": "Issue a standing invitation to the special procedures", - "values": [ - "Special procedures" - ] - }, - { - "text": "Consider alternatives to the detention of asylum seekers.", - "values": [ - "Asylum-seekers - refugees" - ] - }, - { - "text": "Provide the families of those abducted with full information on their fate and whereabouts", - "values": [ - "Enforced disappearances" - ] - }, - { - "text": "Continue to uphold the State policies aimed at promoting and protecting women's rights in line with its 2014 Constitution", - "values": [ - "Women's rights" - ] - }, - { - "text": "Consider ratifying the ICCPR", - "values": [ - "CP rights - general", - "International instruments" - ] - }, - { - "text": "Define the trafficking in human beings as a criminal offence", - "values": [ - "Trafficking" - ] - }, - { - "text": "Seek the support of the international community to accompany the implementation of its commitments vis-à-vis all components of society", - "values": [ - "Technical assistance and cooperation" - ] - }, - { - "text": "Establish a national human rights institution accredited by the International Coordinating Committee of National Institutions for the Promotion and Protection of Human Rights.", - "values": [ - "National Human Rights Institution" - ] - }, - { - "text": "Bring an end to the illegal construction of Jewish settlements and the transfer of Jewish populations to the OPT without delay", - "values": [ - "Other" - ] - }, - { - "text": "Strengthen the witness protection programme", - "values": [ - "Justice" - ] - }, - { - "text": "Repeal all provisions that criminalize same-sex activities between consenting adults ", - "values": [ - "Sexual Orientation and Gender Identity" - ] - }, - { - "text": "Seriously consider an immediate moratorium on executions to allow a comprehensive public debate on this issue to take place", - "values": [ - "Death penalty" - ] - }, - { - "text": "Consider extending a standing invitation to the mandate holders of all special procedures of the Human Rights Council, as the Republic of Korea previously recommended in the first UPR", - "values": [ - "Special procedures", - "UPR process" - ] - }, - { - "text": "Ensure that the National Human Rights Institution is fully compliant with the Paris Principles ", - "values": [ - "National Human Rights Institution" - ] - }, - { - "text": "Continue its efforts to improve legislation concerning violence against women, in line with international standards, addressing the dimensions of prevention, protection and assistance, and repealing discriminatory provisions related to custody, marriage, inheritance and transfer of nationality", - "values": [ - "Statelessness and the right to nationality", - "Women's rights" - ] - }, - { - "text": "Further open its doors to cooperation with human rights and humanitarian organizations, including by extending an open invitation to Special Procedures and allow ICRC to have access to prisons and visit prisoners ", - "values": [ - "Detention", - "Special procedures" - ] - }, - { - "text": "Consistent with article 87 of the Labour Code, proceed with the creation of a distinctive equality mark that encourages enterprises to promote a policy of equal pay for men and women", - "values": [ - "Labour", - "Women's rights" - ] - }, - { - "text": "Cooperate with human rights protection mechanisms", - "values": [ - "General" - ] - }, - { - "text": "Fully implement the Prohibition of Female Genital Mutilation Act 2011", - "values": [ - "Rights of the Child", - "Torture and other CID treatment", - "Women's rights" - ] - }, - { - "text": "Ensure women's adequate representation in high-level policy and decision making institutions", - "values": [ - "Women's rights" - ] - }, - { - "text": "Adopt a comprehensive law to combat all forms of violence against women, including domestic violence and marital rape", - "values": [ - "Rights of the Child", - "Women's rights" - ] - }, - { - "text": "Consider recognizing the competence of the Committee on Enforced Disappearances to receive and study communications", - "values": [ - "Enforced disappearances", - "Treaty bodies" - ] - }, - { - "text": "Repeal all laws that discriminate against women ", - "values": [ - "Women's rights" - ] - }, - { - "text": "Enhance gender mainstreaming activities with a focus to increase women's participation in decision-making and address the gender pay gap", - "values": [ - "Women's rights" - ] - }, - { - "text": "Employ methods that adjust to international norms, including human rights norms, to combat the consumption of illegal drugs", - "values": [ - "Other" - ] - }, - { - "text": "Protect the rights of older persons and persons with disability to ensure their access to the labour market", - "values": [ - "Disabilities", - "Labour" - ] - }, - { - "text": "Continue taking measures to eliminate human trafficking ", - "values": [ - "Trafficking" - ] - }, - { - "text": "Take further efforts to ensure that all women enjoy their right to sexual and reproductive health, and to increase access to health services, particularly in rural areas, in order to reduce the incidence of maternal mortality, especially among young, rural and indigenous women", - "values": [ - "Right to health", - "Women's rights" - ] - }, - { - "text": "Establish a National Human Rights Institution in line with the Paris Principles ", - "values": [ - "National Human Rights Institution" - ] - }, - { - "text": "Continue to implement the harmonization and consolidation of antidiscriminatory laws and to move forward with the promulgation of laws protecting persons against discrimination on the grounds of sexual orientation or gender", - "values": [ - "Sexual Orientation and Gender Identity" - ] - }, - { - "text": "Revise the blasphemy laws so that they cannot be abused against religious minorities", - "values": [ - "Freedom of opinion and expression", - "Freedom of religion and belief", - "Minorities" - ] - }, - { - "text": "To pursue its efforts to accede to international instruments, in particular human rights instruments", - "values": [ - "International instruments" - ] - }, - { - "text": "Continue its positive work in combating racial discrimination and related intolerance", - "values": [ - "Racial discrimination" - ] - }, - { - "text": "Strengthen administrative measures to ensure the participation of a large number of women in political life", - "values": [ - "Women's rights" - ] - }, - { - "text": "Take steps to ensure universal enrolment in primary school for both boys and girls and to increase attendance of secondary schools, as well as to ensure the integration of human rights into school curricula at all levels", - "values": [ - "Human rights education and training", - "Right to education", - "Rights of the Child" - ] - }, - { - "text": "Reform the judicial system to establish an independent judicial power in accordance with international standards, and ensure the existence of the rule of law and justice ", - "values": [ - "Justice" - ] - }, - { - "text": "Immediately open humanitarian access and unconditionally permit access for the Commission of Inquiry", - "values": [ - "Other" - ] - }, - { - "text": "Ratify the Convention against Torture and Other Cruel, Inhuman or Degrading Treatment or Punishment and the Optional Protocol thereto - ratify the First and Second Optional Protocols to the International Covenant on Civil and Political Rights and the International Convention for the Protection of All Persons from Enforced Disappearance ", - "values": [ - "CP rights - general", - "Detention", - "Enforced disappearances", - "International instruments", - "Torture and other CID treatment" - ] - }, - { - "text": "Continue with efforts to strengthen the rights of the child and protect them even further, in particular, the necessary resources should be earmarked so as to protect the weakest segments of the population, above all the disabled persons, and assistance should be requested from UNICEF in that regard.", - "values": [ - "Disabilities", - "Rights of the Child" - ] - }, - { - "text": "Guarantee respect of the principles of proportionality and necessity in all cases of use of force in conformity with the Basic Principles on the Use of Force and Firearms by Law Enforcement Officials", - "values": [ - "Public security" - ] - }, - { - "text": "Adopt a comprehensive legal framework on the rights of the children aiming also at completely outlawing the violence against children", - "values": [ - "Rights of the Child" - ] - }, - { - "text": "Accelerate the establishment of an independent national human rights institution with a broad mandate and adequate human and financial resources, in accordance with the Paris Principles", - "values": [ - "National Human Rights Institution" - ] - }, - { - "text": "Publish official statistics on the application of the death penalty, guarantee the right to a fair defence, and introduce a procedure for pardon petitions with a view to a moratorium on execution", - "values": [ - "Death penalty" - ] - }, - { - "text": "Strengthen the implementation of the recommendations of the International Commission on Access to Justice and Victims Assistance, and of those observations made by the Convention on the Elimination of All Forms of Discrimination against Women", - "values": [ - "International instruments", - "Justice" - ] - }, - { - "text": "Move forward the ratification of the Convention against Torture and Other Cruel, Inhuman or Degrading Treatment or Punishment", - "values": [ - "International instruments", - "Torture and other CID treatment" - ] - }, - { - "text": "Increase the participation of women in decision-making institutions ", - "values": [ - "Women's rights" - ] - }, - { - "text": "Continue ongoing efforts to reduce the rates of maternal mortality", - "values": [ - "Right to health", - "Women's rights" - ] - }, - { - "text": "Provide adequate funding and adopting the necessary measures for the effective implementation of the ICRPD that Guatemala had ratified in 2009", - "values": [ - "Disabilities", - "International instruments" - ] - }, - { - "text": "Hold regular meetings of agreed institutional mechanisms to address issues pertaining to migrant workers and ensure dialogue under such arrangements ", - "values": [ - "Labour", - "Migrants" - ] - }, - { - "text": "Continue making efforts in the field of training and education in human rights for law enforcement agencies", - "values": [ - "Human rights education and training" - ] - }, - { - "text": "Promote gender equality and further combat violence against women", - "values": [ - "Women's rights" - ] - }, - { - "text": "Strengthen the capacity of the office of the Ombudsman", - "values": [ - "National Human Rights Institution" - ] - }, - { - "text": "Continue to create employment opportunities and promote the development of income generating activities to uplift the poor", - "values": [ - "Development", - "Poverty" - ] - }, - { - "text": "Ensure, as a minimum, that women can access lawful abortion by creating clear, legally binding regulations for the implementation of the 1993 Family Planning Act ", - "values": [ - "Women's rights" - ] - }, - { - "text": "Continue the necessary legal and institutional steps to reform the National Human Rights Commission so that it meets the Paris Principles", - "values": [ - "National Human Rights Institution" - ] - }, - { - "text": "Ensure that freedom of expression and freedom of the press are fully respected at all times", - "values": [ - "Freedom of opinion and expression", - "Freedom of the press" - ] - }, - { - "text": "Double its efforts in promoting understanding and tolerance among people of different faiths and ethnic backgrounds", - "values": [ - "Freedom of religion and belief", - "Minorities" - ] - }, - { - "text": "Sustain initiatives taken to enhance universal health care including reducing maternal and child mortality", - "values": [ - "Right to health", - "Rights of the Child", - "Women's rights" - ] - }, - { - "text": "Raise the minimum age of criminal responsibility and establish detention facilities exclusive for minors, separate from those for adults", - "values": [ - "Detention", - "Justice", - "Rights of the Child" - ] - }, - { - "text": "Promote, through policies and legal norms, the accountability of the police and administrative authorities resorting to the use of force during peaceful demonstrations ", - "values": [ - "Freedom of association and peaceful assembly", - "Human rights violations by state agents" - ] - }, - { - "text": "Continue to cooperate in a sustained manner with the Special Procedures and the OHCHR field office in order to guarantee universal human rights standards to its people ", - "values": [ - "Special procedures", - "Treaty bodies" - ] - }, - { - "text": "Implement all constitutional provisions and international obligations relating to the right to life, liberty and security of person, including by unconditionally releasing all prisoners held for their political or religious beliefs ", - "values": [ - "Detention", - "Freedom of opinion and expression", - "Freedom of religion and belief" - ] - }, - { - "text": "Introduce necessary measures to ensure full respect of human rights for all, including for Lesbian, Gay, Bisexual and Transgender people, by reviewing the Law on the Protection of Minors against the Detrimental Effect of Public Information", - "values": [ - "Sexual Orientation and Gender Identity" - ] - }, - { - "text": "Continue reinforcing its efforts by supporting the most vulnerable and less privileged children to complete their studies", - "values": [ - "Right to education", - "Rights of the Child" - ] - }, - { - "text": "Establish a de jure moratorium on the death penalty and a commutation of all capital sentences with a view to its future abolition", - "values": [ - "Death penalty" - ] - }, - { - "text": "Accede or ratify the following international instruments: the Optional Protocol to the Convention against Torture and Other Cruel, Inhuman or Degrading Treatment or Punishment and the Rome Statute of the International Criminal Court ", - "values": [ - "Detention", - "International instruments", - "Justice", - "Torture and other CID treatment" - ] - }, - { - "text": "Approve and implement the national action plan to combat racial discrimination developed in 2013", - "values": [ - "Racial discrimination" - ] - }, - { - "text": "Promote the rights of the Armenian minority in line with the recommendations of the Committee on the Elimination of Racial Discrimination, the Human Rights Committee and the Special Rapporteur on freedom of religion or belief, as well as Council of Europe Advisory Committee of the Framework Convention for the Protection of National Minorities with close consultations with representatives of the Armenian community and the Armenian Apostolic Church ", - "values": [ - "Minorities", - "Treaty bodies" - ] - }, - { - "text": "Expand the power of the Public Defender of Rights to enable it to comply with the principles of national human rights institutions according to the Paris Principles", - "values": [ - "National Human Rights Institution" - ] - }, - { - "text": "Accede to OP-ICESCR and CED ", - "values": [ - "ESC rights - general", - "Enforced disappearances", - "International instruments" - ] - }, - { - "text": "Increase transparency through the provision of public access to information about financial and other material interests of government ministers ", - "values": [ - "Corruption" - ] - }, - { - "text": "Continue its efforts to strengthen the judiciary in the field of human rights and improve access to justice", - "values": [ - "Justice" - ] - }, - { - "text": "Integrate human rights in the educational system at various levels", - "values": [ - "Human rights education and training" - ] - }, - { - "text": "Step up efforts to ensure the full respect of freedom of religion and worship, including by reviewing provisions of the Penal Code related to the freedom of religion, in order to eliminate all forms of discrimination based on religion or belief.", - "values": [ - "Freedom of religion and belief" - ] - }, - { - "text": "Like other European countries, set a statutory time limit for immigration detention and ensure that children are not subjected to such detention", - "values": [ - "Detention", - "Migrants" - ] - }, - { - "text": "Reform the family code to remove remaining discriminations against women", - "values": [ - "Women's rights" - ] - }, - { - "text": "Accelerate steps to introduce a national preventive mechanism against torture and ensure that the definition of torture in national law aligns with the Convention against Torture", - "values": [ - "International instruments", - "Torture and other CID treatment" - ] - }, - { - "text": "Continue developing awareness-raising measures in educational policies in fighting gender-based violence in order to tackle the deeply rooted stereotypes vis-a-vis women ", - "values": [ - "Human rights education and training", - "Women's rights" - ] - }, - { - "text": "Fight effectively gender-based violence and traditional practices which are discriminating against women", - "values": [ - "Women's rights" - ] - }, - { - "text": "Give consideration to improving its domestic legislation and existing programs aimed at increasing access to education ", - "values": [ - "Right to education" - ] - }, - { - "text": "Continue efforts to improve the situation of prisoners, in particular in pretrial detention, by, inter alia, increasing the minimum space attributed to each prisoner, allocating necessary financial means, increasing custodial staff and ensuring necessary medical treatment", - "values": [ - "Detention", - "Right to health" - ] - }, - { - "text": "Exert efforts to improve prison conditions", - "values": [ - "Detention" - ] - }, - { - "text": "Continue efforts in ensuring that National Human Rights Commission be strengthened to be in line with the Paris Principles ", - "values": [ - "National Human Rights Institution" - ] - }, - { - "text": "Continue taking the necessary steps to set up a national human rights institution in line with the Paris Principles", - "values": [ - "National Human Rights Institution" - ] - }, - { - "text": "Seek international assistance in the area of systematic training of law enforcement officials on their responsibility to protect human rights ", - "values": [ - "Human rights education and training", - "Technical assistance and cooperation" - ] - }, - { - "text": "Provide all the requirements needed to implement the national Family Cohesion and Empowerment of Women Strategy ", - "values": [ - "Women's rights" - ] - }, - { - "text": "Continue combating terrorism resolutely to ensure the Iraqi people to enjoy the rights in safety", - "values": [ - "Public security" - ] - }, - { - "text": "Consider the possibility of developing a complex of measures aimed at combating hate speech", - "values": [ - "Racial discrimination" - ] - }, - { - "text": "Continue its efforts to put in place improved solutions and legislation aimed at eliminating all forms of discrimination against women", - "values": [ - "Women's rights" - ] - }, - { - "text": "Continue its efforts to reach quickly the international target of 0.7 per cent ODA", - "values": [ - "Development" - ] - }, - { - "text": "Strengthen coordination and follow-up to the implementation of the universal periodic review recommendations", - "values": [ - "UPR process" - ] - }, - { - "text": "Ensure the implementation of measures aimed at combating violence against women", - "values": [ - "Women's rights" - ] - }, - { - "text": "Strengthen services aimed at protecting women, children and other marginalized or vulnerable groups ", - "values": [ - "Rights of the Child", - "Women's rights" - ] - }, - { - "text": "Improve the quality of maternity services in urban and rural areas, increase the proportion of children born in hospitals and reduce the child mortality rate", - "values": [ - "Right to health", - "Rights of the Child", - "Women's rights" - ] - }, - { - "text": "Find a durable and equitable solution to the problems faced by the Bedouin communities, particularly in the area of possession of land", - "values": [ - "Minorities", - "Right to land" - ] - }, - { - "text": "Take specific targeted measures to eliminate violence against women and girls, including the establishment of a coordinating body", - "values": [ - "Rights of the Child", - "Women's rights" - ] - }, - { - "text": "Ratify the ICCPR without further delays and integrate all provisions into domestic legislation", - "values": [ - "CP rights - general", - "International instruments" - ] - }, - { - "text": "Complete as soon as possible the process of accession to Convention against Torture and Other Cruel, Inhuman or Degrading Treatment or Punishment and the International Convention for the Protection of All Persons from Enforced Disappearance ", - "values": [ - "Enforced disappearances", - "International instruments", - "Torture and other CID treatment" - ] - }, - { - "text": "Take steps to implement the national integration strategy to ensure the participation of minorities in Georgia's cultural, social and economic life", - "values": [ - "ESC rights - general", - "Minorities" - ] - }, - { - "text": "Bring its legislation into conformity with international human rights obligations, by repealing all provisions which may discriminate against lesbian, gay, bisexual and transgender persons ", - "values": [ - "Sexual Orientation and Gender Identity" - ] - }, - { - "text": "Request technical assistance from the various United Nations bodies, responsible in particular for the protection of children's rights and of persons with disabilities so that in order to ensure the effectiveness of the rights of these vulnerable persons", - "values": [ - "Disabilities", - "Rights of the Child", - "Technical assistance and cooperation" - ] - }, - { - "text": "Consider ratifying those international human rights instruments it had not yet ratified, including the International Convention on the Protection of the Rights of All Migrant Workers and Members of Their Families", - "values": [ - "International instruments", - "Labour", - "Migrants" - ] - }, - { - "text": "Reinforce efforts to settle territorial claims and improve the mechanism of conflict resolution", - "values": [ - "Other" - ] - }, - { - "text": "Introduce legislation to protect against discrimination based on sexual orientation, gender identity and intersex status", - "values": [ - "Sexual Orientation and Gender Identity" - ] - }, - { - "text": "Revise the single parent family support law and introduce legislation to ensure that all children are automatically and legally registered immediately after birth, regardless of parents' legal status and origin", - "values": [ - "Rights of the Child" - ] - }, - { - "text": "Take all appropriate ways and means to further develop and strengthen a culture of human rights, create more human rights capacity-building and promote human rights education and public awareness-raising with a view to better promoting and protecting of all human rights.", - "values": [ - "Human rights education and training" - ] - }, - { - "text": "Intensify collective efforts to ensure that scheduled elections are conducted as smoothly as possible, in spite of ongoing recovery efforts utilizing its renowned resilience", - "values": [ - "Elections" - ] - }, - { - "text": "Further promote the rights of women, children and indigenous peoples", - "values": [ - "Indigenous peoples", - "Rights of the Child", - "Women's rights" - ] - }, - { - "text": "Take all necessary steps to implement the outstanding elements of the peace agreement and to complete the electoral process as quickly as possible ", - "values": [ - "Other" - ] - }, - { - "text": "Complete investigations about civil and criminal implications concerning the release of the film Fitna and initiate prosecution of the author in accordance with Dutch law.", - "values": [ - "Freedom of opinion and expression", - "Freedom of religion and belief" - ] - }, - { - "text": "Focus in its transitional justice strategy on reconciliation, truth, justice and reparation, and take the measures which it deems appropriate to ensure that the violations of the past will not be repeated ", - "values": [ - "Justice" - ] - }, - { - "text": "Incorporate in its legislation a specific offence criminalizing and punishing acts of racist violence ", - "values": [ - "Racial discrimination" - ] - }, - { - "text": "Protect rights of indigenous peoples in water and safe environment especially when granting extracting concessions", - "values": [ - "Indigenous peoples", - "Right to water and sanitation" - ] - }, - { - "text": "Pay attention to the impact of climate change on the country's human rights situation and fully address this impact with the support of the international community", - "values": [ - "Environment", - "Technical assistance and cooperation" - ] - }, - { - "text": "Strengthen the institutional capacities of EHRC as well as the Office of the Ombudsman ", - "values": [ - "National Human Rights Institution" - ] - }, - { - "text": "Take the necessary measures to prevent the excessive use of force by security forces and investigate all cases in which such excessive use of force has led to death, as well as bring to justice and punish appropriately all perpetrators of extrajudicial executions ", - "values": [ - "Extrajudicial executions", - "Human rights violations by state agents" - ] - }, - { - "text": "Review and repeal discriminatory provisions against women in its domestic legislation", - "values": [ - "Women's rights" - ] - }, - { - "text": "Consider establishing national human rights institution", - "values": [ - "National Human Rights Institution" - ] - }, - { - "text": "Undertake in an effective manner the necessary amendments to fully incorporate the Convention on the Elimination of All Forms of Discrimination against Women (CEDAW) into the domestic legal system as soon as possible ", - "values": [ - "International instruments", - "Women's rights" - ] - }, - { - "text": "Guarantee freedom of religion or belief by considering the decriminalization of blasphemy, and adopt measures to protect the rights of persons belonging to religious minorities", - "values": [ - "Freedom of opinion and expression", - "Freedom of religion and belief", - "Minorities" - ] - }, - { - "text": "Take measures to ensure the rights of peaceful assembly, freedom of expression and freedom of assembly, especially in the context of peaceful protests", - "values": [ - "Freedom of association and peaceful assembly", - "Freedom of opinion and expression" - ] - }, - { - "text": "Adopt measures and establish a formal platform to guarantee and protect the rights of indigenous peoples", - "values": [ - "Indigenous peoples" - ] - }, - { - "text": "In conclusion, the Islamic Republic of Iran wishes to reiterate its firm commitment to continue constructive cooperation with the United Nations human rights machineries, in particular with the Human Rights Council and the UPR mechanism. ", - "values": [ - "Special procedures", - "Treaty bodies", - "UPR process" - ] - }, - { - "text": "Allow ICRC unimpeded access to the 2,200 political prisoners ", - "values": [ - "Detention", - "Freedom of opinion and expression" - ] - }, - { - "text": "Immediately halt mandatory detention of asylum seeker children", - "values": [ - "Asylum-seekers - refugees", - "Rights of the Child" - ] - }, - { - "text": "Consider the early ratification of the optional protocols to the Convention against Torture, the International Covenant on Economic, Social and Cultural Rights and the Convention on the Elimination of All Forms of Discrimination against Women", - "values": [ - "Detention", - "ESC rights - general", - "International instruments", - "Torture and other CID treatment", - "Women's rights" - ] - }, - { - "text": "Poland will reinforce actions to implement equal treatment of women and men. A national programme for gender equality for the years 2009-2013 will be prepared, and the draft, on which consultations will be held with social partners and NGO representatives, covers the following areas of action: 1/ Equal economic independence of women and men, including equality in the labour market 2/ Reconciliation of family life and career 3/ Participation in political life and decision-making 4/ Equality in the area of health care 5/ Eradication of all forms of gender-driven violence 6/ Eradication of gender stereotypes, including in schoolbooks and school curricula 7/ Promotion of gender equality in external relations and development policy The action plan for gender equality will reinforce the achievements of the Beijing Platform for Action and relevant international conventions, such as the Convention on the Elimination of All Forms of Discrimination against Women. In 2008-2013, the Ministry of Labour and Social Policy will carry out two projects involving research, training and promotion. The first one will be devoted to the reconciliation of career and family roles of women and men, and the second will be on the socio-economic activation of women at local and regional levels. In accordance with the draft law on equal treatment, the minister responsible for family matters and equal treatment, using data and analyses from independent research and in conjunction with other relevant bodies, will prepare a national programme against discrimination. The programme will determine adequate measures to: 1/ Raise social awareness of the root causes and effects of discrimination 2/ Counteract violations of the principle of equal treatment 3/ Establish cooperation with relevant social partners involved in implementing equal treatment", - "values": [ - "Civil society", - "Human rights education and training", - "International instruments", - "Women's rights" - ] - }, - { - "text": "Continue to respect and promote the human rights of vulnerable groups, including the Roma communities.", - "values": [ - "Minorities" - ] - }, - { - "text": "Continue the measures to reinforce access to education", - "values": [ - "Right to education" - ] - }, - { - "text": "Introduce as a crime domestic and intrafamily violence and take the necessary measures to ensure the training of relevant authorities ", - "values": [ - "Rights of the Child", - "Women's rights" - ] - }, - { - "text": "Promptly accede to the Trafficking in Persons Protocol to the United Nations Convention against Transnational Organized Crime", - "values": [ - "International instruments", - "Trafficking" - ] - }, - { - "text": "Proceed with the implementation of the programme entitled \u201cPrevention of Domestic Violence and Violence on the Grounds of Gender\u201c", - "values": [ - "Rights of the Child", - "Women's rights" - ] - }, - { - "text": "Move quickly to establish its new National Human Rights Institution in full compliance with the Paris Principles ", - "values": [ - "National Human Rights Institution" - ] - }, - { - "text": "Prohibit and eliminate corporal punishment of children, as this is a key obligation under the Convention on the Rights of the Child and other international human rights instruments", - "values": [ - "International instruments", - "Rights of the Child", - "Torture and other CID treatment" - ] - }, - { - "text": "Full dissemination of the NHRAP and the strengthening of governmental agencies at national, provincial and local level to guarantee its full implementation", - "values": [ - "General" - ] - }, - { - "text": "Enact comprehensive anti-discrimination legislation prohibiting discrimination on all grounds", - "values": [ - "Other" - ] - }, - { - "text": "Speedily abolish the death penalty ", - "values": [ - "Death penalty" - ] - }, - { - "text": "Bring the legal provision on freedom of association and assembly fully into line with international human rights standards and ensure that non-governmental human rights organizations can operate legally in Algerian society", - "values": [ - "Civil society", - "Freedom of association and peaceful assembly", - "International instruments" - ] - }, - { - "text": "Maintain its commitment to improve the quality of education to ensure the full enjoyment of the right to education ", - "values": [ - "Right to education" - ] - }, - { - "text": "Take all the necessary measures to effectively eliminate and prevent all forms of exploitations and abuse of children, including through prosecution of those involved in such acts ", - "values": [ - "Rights of the Child" - ] - }, - { - "text": "Further adopt policies and legislation to combat discrimination and violence against women, particularly domestic and sexual violence ", - "values": [ - "Women's rights" - ] - }, - { - "text": "Review all reservations to the Convention on the Elimination of All Forms of Discrimination against Women, including the one related to article 9.2, with a view to withdrawing them", - "values": [ - "International instruments", - "Women's rights" - ] - }, - { - "text": "Proceed to the abolition of current legislation criminalizing sexual relations between persons of the same sex ", - "values": [ - "Sexual Orientation and Gender Identity" - ] - }, - { - "text": "Continue its efforts to combat child labour through the effective implementation of the domestic workers labour and employment conditions act", - "values": [ - "Labour", - "Rights of the Child" - ] - }, - { - "text": "Take measures to address cases of detention whose length goes beyond the limit established by the European Union return directive", - "values": [ - "Detention" - ] - }, - { - "text": "Adopt the necessary measures to reduce statelessness", - "values": [ - "Statelessness and the right to nationality" - ] - }, - { - "text": "Completely abolish the death penalty and sign and accede to the Second Optional Protocol to ICCPR ", - "values": [ - "Death penalty", - "International instruments" - ] - }, - { - "text": "Respect the right to freedom of assembly as well as to carry out investigations into excessive use of force by security forces against peaceful protesters", - "values": [ - "Freedom of association and peaceful assembly", - "Human rights violations by state agents" - ] - }, - { - "text": "Extend a standing invitation to United Nations human rights special procedures so they can visit the country and assist the Government with its human rights reforms ", - "values": [ - "Special procedures" - ] - }, - { - "text": "Continue with the commendable efforts to strengthen the legal and institutional framework for the promotion and protection of human rights and to reduce poverty and promote social equality", - "values": [ - "Development", - "Poverty" - ] - }, - { - "text": "Consider de-criminalizing same-sex relations", - "values": [ - "Sexual Orientation and Gender Identity" - ] - }, - { - "text": "Level the maximum sentence of 90 days for administrative detention to that of 60 days for criminal detention", - "values": [ - "Detention" - ] - }, - { - "text": "Consider the possibility of acceding to and/or ratifying International Labour Organization Convention No. 169 (1989) concerning Indigenous and Tribal Peoples in Independent Countries ", - "values": [ - "Indigenous peoples", - "International instruments" - ] - }, - { - "text": "Continue the efforts to achieve the Millennium Development Goals", - "values": [ - "Development" - ] - }, - { - "text": "Move forward on reform similar to that of the police of the judicial system, which has to this point proved inadequate to handle the cases of those suspected of involvement in the violence ", - "values": [ - "Justice" - ] - }, - { - "text": "Expand the programme to boost birth registration to cover more outlying areas", - "values": [ - "Rights of the Child", - "Statelessness and the right to nationality" - ] - }, - { - "text": "Develop and implement the policies that promote the rights of the child and accede to the Optional Protocols to the Convention on the Rights of the Child on the involvement of children in armed conflict and on the sale of children, child prostitution and child pornography", - "values": [ - "International humanitarian law", - "International instruments", - "Rights of the Child", - "Trafficking" - ] - }, - { - "text": "Provide for free, compulsory education, accessible to all, with particular care paid to disabled children by allocating sufficient financial and human resources to the education system ", - "values": [ - "Disabilities", - "Right to education" - ] - }, - { - "text": "Stop the prosecution and persecution of people for the practice of their religion or belief including Catholics, other Christians, Tibetans, Uyghurs, and Falun Gong, and set a date for the visit of the Special Rapporteur on Freedom of Religion or Belief", - "values": [ - "Freedom of religion and belief", - "Minorities", - "Special procedures" - ] - }, - { - "text": "Continue to promote inclusive education for children with disabilities", - "values": [ - "Disabilities", - "Right to education", - "Rights of the Child" - ] - }, - { - "text": "Agree to a visit by the Special Rapporteur on torture to investigate these practices and allegations of systematic violence in detention facilities", - "values": [ - "Detention", - "Special procedures", - "Torture and other CID treatment" - ] - }, - { - "text": "Carry out the necessary measures to eliminate the barriers that impede the birth registration of all persons born in South African territory, including migrants and refugees ", - "values": [ - "Asylum-seekers - refugees", - "Migrants", - "Statelessness and the right to nationality" - ] - }, - { - "text": "Take necessary measures to ensure that legal provisions do not create disproportionate restrictions to exercise freedom of assembly and expression ", - "values": [ - "Freedom of association and peaceful assembly", - "Freedom of opinion and expression" - ] - }, - { - "text": "Ratify ILO Convention No. 169 and incorporate it into its national norms ", - "values": [ - "Indigenous peoples", - "International instruments" - ] - }, - { - "text": "Further pursue its efforts for the empowerment of women", - "values": [ - "Women's rights" - ] - }, - { - "text": "Maintain and continue actions aimed at decreasing and eliminating violence, ill-treatment, sexual exploitation and trafficking in persons and at the same time provide appropriate care and protection to victims and prosecute those responsible", - "values": [ - "Torture and other CID treatment", - "Trafficking" - ] - }, - { - "text": "Cease its practice of interceptions and "push-backs" in its borders", - "values": [ - "Asylum-seekers - refugees" - ] - }, - { - "text": "Continue to adopt measures to combat poverty ", - "values": [ - "Poverty" - ] - }, - { - "text": "Implement new measures to ensure victims of rape seek redress, and modify the law to ensure the penalties for rape are more severe", - "values": [ - "Justice", - "Women's rights" - ] - }, - { - "text": "Continue actions to improve compliance with the human right to water, under the framework of General Assembly resolution 64/292", - "values": [ - "Right to water and sanitation" - ] - }, - { - "text": "Conduct impartial, public and thorough investigation of cases of possible involvement of Sweden in the unlawful detention, transportation, interrogation and torture by officers of the CIA of the USA of suspects of terrorism", - "values": [ - "Counter-terrorism", - "Detention", - "Torture and other CID treatment" - ] - }, - { - "text": "Establish policies and procedures that protect the human rights and security of all Nigerians including LGBT persons, their families and associates", - "values": [ - "Sexual Orientation and Gender Identity" - ] - }, - { - "text": "Respect obligations under ICCPR by freeing persons currently under administrative detention and by putting an end to arbitrary detention and torture ", - "values": [ - "Detention", - "International instruments", - "Torture and other CID treatment" - ] - }, - { - "text": "End forced conversions and marriages of minorities, including Hindu, Sikh and Christian women, and prosecute all cases", - "values": [ - "Freedom of religion and belief", - "Women's rights" - ] - }, - { - "text": "Provide effective protection and complaint mechanisms to persons with disabilities living in specialized centres ", - "values": [ - "Disabilities" - ] - }, - { - "text": "Consider withdrawing the remaining reservations to international human rights instruments to which it is a party (namely to the CRC, ICCPR, OP-CRC-SC, CEDAW)", - "values": [ - "CP rights - general", - "International instruments", - "Rights of the Child", - "Trafficking", - "Women's rights" - ] - }, - { - "text": "Continue the restoration of the prisons' infrastructure, particularly in the context of the Master Plan for Investment in the System of Prisons ", - "values": [ - "Detention" - ] - }, - { - "text": "Ensure the effective functioning of the National Human Rights Commission in accordance with the Paris Principles, in particular by providing the Commission with required and adequate levels of funding as well as sufficient autonomy", - "values": [ - "National Human Rights Institution" - ] - }, - { - "text": "Guarantee the right to freedom of opinion and expression in all its territory, as well as active participation of society and media in public affairs", - "values": [ - "Freedom of opinion and expression" - ] - }, - { - "text": "Put in place programmes to fight against poverty and job insecurity, through strengthening the economic empowerment of women", - "values": [ - "Labour", - "Poverty", - "Women's rights" - ] - }, - { - "text": "Intensify efforts to detect, prevent and combat trafficking in children for sexual and other types of exploitation", - "values": [ - "Rights of the Child", - "Trafficking" - ] - }, - { - "text": "Publicly speak out on reported cases of intimidation and violence - including murder - of trade unionists, the staff of non-governmental organizations and journalists and to ensure effective investigations and accountability for perpetrators", - "values": [ - "Civil society", - "Labour" - ] - }, - { - "text": "Take swift action to further enhance equality legislation, particularly in the area of partnership and cohabitation, as proposed by the current Maltese Government", - "values": [ - "Other" - ] - }, - { - "text": "Consider the adoption of the specific legislation prohibiting all forms of corporal punishment of children", - "values": [ - "Rights of the Child", - "Torture and other CID treatment" - ] - }, - { - "text": "Implement a moratorium on executions", - "values": [ - "Death penalty" - ] - }, - { - "text": "Adopt specific measures to promote the development of inclusive education for persons with disabilities", - "values": [ - "Disabilities", - "Right to education" - ] - }, - { - "text": "Take steps towards the abolition of the death penalty, while commuting the existing sentences to life imprisonment terms", - "values": [ - "Death penalty" - ] - }, - { - "text": "Adopt inclusive legislation for people with disabilities", - "values": [ - "Disabilities" - ] - }, - { - "text": "Step up its efforts in promoting and protecting human rights of migrant workers in the country", - "values": [ - "Labour", - "Migrants" - ] - }, - { - "text": "Pursue its efforts in the implementation of the recommendations made by the United Nations human rights mechanisms, especially recommendations accepted in the framework of the universal periodic review process", - "values": [ - "Special procedures", - "Treaty bodies", - "UPR process" - ] - }, - { - "text": "Protect the Bedouin citizens from discrimination and ensure their rights to property, housing and public service on an equal basis with others", - "values": [ - "Minorities", - "Racial discrimination", - "Right to housing" - ] - }, - { - "text": "Continue implementing socio-economic development strategies and plans in the country, in particular to reduce poverty ", - "values": [ - "Development", - "Poverty" - ] - }, - { - "text": "Amend the Charities and Societies Proclamation so that all NGOs can operate freely without restrictions stemming from the structure of their funding ", - "values": [ - "Civil society", - "Freedom of association and peaceful assembly" - ] - }, - { - "text": "Take all the necessary measures to guarantee that LGBT individuals do not face persecution of any kind", - "values": [ - "Sexual Orientation and Gender Identity" - ] - }, - { - "text": "Raise further the minimum age for criminal responsibility", - "values": [ - "Justice", - "Rights of the Child" - ] - }, - { - "text": "Amend the legislation to penalize hate crimes and crimes of intolerance based on discrimination, especially in cases of race, sexual orientation, gender identity or expression", - "values": [ - "Racial discrimination", - "Sexual Orientation and Gender Identity" - ] - }, - { - "text": "Ratify the Rome Statute of the International Criminal Court and implement it in its national legislation", - "values": [ - "International instruments", - "Justice" - ] - }, - { - "text": "Continue strengthening the comprehensive initiatives on education in favour of migrants, ethnic minorities, women and children, in particular those from Roma communities", - "values": [ - "Migrants", - "Minorities", - "Right to education", - "Rights of the Child", - "Women's rights" - ] - }, - { - "text": "Take steps to ensure that the Truth and Reconciliation Commission and the Commission on Disappearances function in accordance with international standards, and bring the perpetrators of serious human rights violations to justice", - "values": [ - "Enforced disappearances", - "Justice" - ] - }, - { - "text": "Take every useful measure to investigate human rights violations committed by the police, in particular extrajudicial killings, in order to bring to justice the perpetrators of such acts and ensure the effective protection of human rights defenders and witnesses ", - "values": [ - "Human rights defenders", - "Human rights violations by state agents" - ] - }, - { - "text": "Reach out to the parents of Roma children to make sure that they fully understand the importance of education and, in this effort, use school assistants with a Roma background", - "values": [ - "Minorities", - "Right to education" - ] - }, - { - "text": "Take all necessary measures to ensure the social and economic rights of internally displaced persons and refugees, including by adopting specific anti-discrimination policies.", - "values": [ - "Asylum-seekers - refugees", - "Internally displaced persons" - ] - }, - { - "text": "Intensify its efforts to ensure that Indigenous Peoples and the Afro- Peruvian community fully enjoy economic, social and cultural rights, as enshrined in the Universal Declaration on Human Rights", - "values": [ - "ESC rights - general", - "Indigenous peoples", - "International instruments", - "Minorities" - ] - }, - { - "text": "Focus on mitigating income inequalities, providing equal opportunities in education and employment, and improving social security and health services for all segments of the population ", - "values": [ - "Development", - "Right to education", - "Right to health" - ] - }, - { - "text": "Continue its efforts to establish effective consultation processes with indigenous communities with respect to any project that may affect the land or livelihoods of indigenous peoples", - "values": [ - "Environment", - "Indigenous peoples", - "Right to land" - ] - }, - { - "text": "Continue to take targeted action to eliminate the socio-economic disparities that persist among its population, including those affecting Maori, Pacific, Asian and other groups.", - "values": [ - "ESC rights - general", - "Indigenous peoples", - "Minorities" - ] - }, - { - "text": "Create mechanisms for preventing and fighting against all forms of exploitation, abuse and violence against children", - "values": [ - "Rights of the Child" - ] - }, - { - "text": "Specifically envisage including the offence of torture in the penal and military codes ", - "values": [ - "Torture and other CID treatment" - ] - }, - { - "text": "Continue with its efforts to bring incarceration facilities into line with international standards, especially regarding overcrowding, cell sanitation and the separation of young prisoners", - "values": [ - "Detention" - ] - }, - { - "text": "Pay further attention to women's rights and gender equality issues at the policy making level ", - "values": [ - "Women's rights" - ] - }, - { - "text": "Take additional measures to ensure that all children have access to primary and secondary education", - "values": [ - "Right to education", - "Rights of the Child" - ] - }, - { - "text": "Allow national and international human rights organisations the space to undertake their non-violent advocacy, campaigning, reporting and investigative work and that the Government of Ecuador engage constructively with human rights defenders in seeking solutions to address Ecuador's human rights challenges ", - "values": [ - "Civil society", - "Human rights defenders" - ] - }, - { - "text": "Continue to reform the prison system and look further into ways of reforming the Penal Code to ensure adequate prison conditions and treatment of prisoners according to international standards.", - "values": [ - "Detention" - ] - }, - { - "text": "Implement the plan of action to eliminate the worst forms of child labour", - "values": [ - "Labour", - "Rights of the Child" - ] - }, - { - "text": "Consider the recommendation of the special rapporteur on violence against women who expressed concern that the violence has resulted in the form of a culture of impunity", - "values": [ - "Impunity", - "Special procedures", - "Women's rights" - ] - }, - { - "text": "Bring into line the definition of minor in all legal domains, especially the penal, and prohibit life sentences and corporal punishment for crimes committed by minors ", - "values": [ - "Justice", - "Rights of the Child", - "Torture and other CID treatment" - ] - }, - { - "text": "Establish more shelters for women victims of violence ", - "values": [ - "Women's rights" - ] - }, - { - "text": "Implement the law on violence against women swiftly", - "values": [ - "Women's rights" - ] - }, - { - "text": "Further guarantee citizens' right to express themselves, to vote and to be elected", - "values": [ - "Elections", - "Freedom of opinion and expression" - ] - }, - { - "text": "Continue its advocacy for keeping global warming at or below 1.5 degrees Celsius above the pre-industrial level", - "values": [ - "Environment" - ] - }, - { - "text": "Take measures to ensure the protection of all women from rape and sexual violence, including female genital mutilation.", - "values": [ - "Torture and other CID treatment", - "Women's rights" - ] - }, - { - "text": "Speedily implement the new Criminal Code, declaring sexual violence a crime, while guaranteeing the impartiality of investigation and questioning.", - "values": [ - "Women's rights" - ] - }, - { - "text": "Give due consideration to the cultural and religious sensitivities of newly arrived foreigners and migrants when designing social integration policies and programmes ", - "values": [ - "Migrants" - ] - }, - { - "text": "Consider raising the minimum age of criminal responsibility ", - "values": [ - "Justice", - "Rights of the Child" - ] - }, - { - "text": "Continue efforts to fight against female genital mutilation", - "values": [ - "Rights of the Child", - "Torture and other CID treatment", - "Women's rights" - ] - }, - { - "text": "Provide training services and professional development to all teachers", - "values": [ - "Right to education" - ] - }, - { - "text": "Ensure that the Austrian Ombudsman functions with full independence and in conformity with the Paris Principles", - "values": [ - "National Human Rights Institution" - ] - }, - { - "text": "Reduce overcrowding in prisons by enlarging existing facilities or building new ones and-or making more use of alternative penalties ", - "values": [ - "Detention" - ] - }, - { - "text": "Continue to improve its treatment of prisoners in keeping with the United Nations Standard Minimum Rules for the Treatment of Prisoners", - "values": [ - "Detention" - ] - }, - { - "text": "Continue to improve domestic legislation in order to guarantee the right of detainees to a fair trial", - "values": [ - "Detention" - ] - }, - { - "text": "Expedite the process of signing and ratifying the Optional Protocol to the International Covenant on Economic, Social and Cultural Rights ", - "values": [ - "ESC rights - general", - "International instruments" - ] - }, - { - "text": "Engage civil society in the follow-up implementation process of the universal periodic review recommendations", - "values": [ - "Civil society", - "UPR process" - ] - }, - { - "text": "Remove, in law and in practice, restrictions on the rights of workers to strike, as recommended by the Committee on Economic, Social and Cultural Rights ", - "values": [ - "Freedom of association and peaceful assembly", - "Labour", - "Treaty bodies" - ] - }, - { - "text": "Invite the Special Rapporteur on the human rights of migrants, the Special Rapporteur on torture, the Special Rapporteur on human trafficking, and the Special Rapporteur on the sale of children, child prostitution and child pornography ", - "values": [ - "Migrants", - "Rights of the Child", - "Special procedures", - "Torture and other CID treatment", - "Trafficking" - ] - }, - { - "text": "Continue to collect specific data and maintain efforts to standardize reporting and data collection concerning victims of domestic violence, including through the creation of a website and a database", - "values": [ - "Rights of the Child", - "Women's rights" - ] - }, - { - "text": "Continue supporting human rights education at all level of the education system through the appropriate measures and content ", - "values": [ - "Human rights education and training" - ] - }, - { - "text": "Implement the resolution 16/18 on combatting intolerance, negative stereotyping and stigmatization of, and discrimination, incitement to violence, and violence against persons based on religion or belief", - "values": [ - "Freedom of religion and belief", - "Racial discrimination" - ] - }, - { - "text": "Cease immediately the demolition and destruction of public and private Palestinian properties which constitute a violation of article 53 of the Fourth Geneva Convention and articles 46, 53 and 55 of the Hague Regulations", - "values": [ - "International humanitarian law", - "Right to housing" - ] - }, - { - "text": "Take measures to eliminate cases of discrimination against certain groups in society", - "values": [ - "Minorities", - "Racial discrimination" - ] - }, - { - "text": "Improve prison conditions in all detention centres by developing and implementing a strategy to end the current overcrowding in prisons, as accepted in the 2011 review by, inter alia, restricting the use of pre-trial detention, developing alternative forms of punishment, as well as ensuring access to sufficient food and drinkable water, adequate sanitary facilities and medical treatment", - "values": [ - "Detention" - ] - }, - { - "text": "Extend and expand comprehensive programmes to deliver sexual and reproductive health services to women and girls, particularly those who are more vulnerable, such as rural women ", - "values": [ - "Right to health", - "Rights of the Child", - "Women's rights" - ] - }, - { - "text": "Take all necessary measures to significantly increase the enrolment rates and decrease the dropout rates of girls at all levels of education, by the end of the third universal periodic review cycle", - "values": [ - "Right to education", - "Women's rights" - ] - }, - { - "text": "Prosecute perpetrators of hate crimes and xenophobic acts and prevent misuse of information and communications technologies for this purpose", - "values": [ - "Racial discrimination" - ] - }, - { - "text": "Do not renew the Citizenship and Entry into Israel Law after its expiration in July 2009 and re-examine its scope with a view to respecting the obligation of non-discrimination.", - "values": [ - "Freedom of movement" - ] - }, - { - "text": "Review its asylum procedures to increase the efficiency of the asylum granting processes and ensure the protection of unaccompanied migrant children", - "values": [ - "Asylum-seekers - refugees", - "Migrants", - "Rights of the Child" - ] - }, - { - "text": "Give more attention to asylum-seekers and unaccompanied minors in cases of family reunion ", - "values": [ - "Asylum-seekers - refugees", - "Rights of the Child" - ] - }, - { - "text": "Evaluate the access of the various categories of Roma to education, jobs and social protection.", - "values": [ - "Minorities" - ] - }, - { - "text": "Consider ratifying the Optional Protocol to the Convention on the Rights of Persons with Disabilities (OP-CRPD) ", - "values": [ - "Disabilities", - "International instruments" - ] - }, - { - "text": "Consider partnership in the Extractive Industries Transparency Initiative, including an open dialogue with civil society", - "values": [ - "Business and human rights", - "Civil society" - ] - }, - { - "text": "Ensure that laws are fully and consistently enforced to provide adequate protections for members of religious minorities, scheduled castes, tribes and other vulnerable populations", - "values": [ - "Freedom of religion and belief", - "Minorities" - ] - }, - { - "text": "Participate more actively in the international programmes of technical assistance and capacity-building in the field of human rights ", - "values": [ - "Human rights education and training" - ] - }, - { - "text": "Ensure the realization of the right to education to all children in Cambodia, including to the children of Vietnamese origin, and sign and ratify the Optional Protocols to ICESCR and to the Convention on the Rights of the Child on a communications procedure ", - "values": [ - "ESC rights - general", - "International instruments", - "Minorities", - "Rights of the Child" - ] - }, - { - "text": "Make additional efforts to combat child labour and guarantee children the enjoyment of the rights that are guaranteed to them in accordance with international standards", - "values": [ - "Labour", - "Rights of the Child" - ] - }, - { - "text": "Amend regulations related to arrest and detention by the Jamaica Constabulary Force, so that they clearly define the rights of detainees, strengthen judicial oversight of arrests, and provide specific remedies for breach of duty", - "values": [ - "Detention" - ] - }, - { - "text": "Pursue its efforts in favour of gays, lesbians and transsexuals ", - "values": [ - "Sexual Orientation and Gender Identity" - ] - }, - { - "text": "Strengthen measures to address violence against women, including sexual violence, provide help for its victims and hold accountable its perpetrators, while also ensuring effective implementation of the laws prohibiting female genital mutilation at the State level and adopting legislation prohibiting the FGM completely throughout the country ", - "values": [ - "Rights of the Child", - "Torture and other CID treatment", - "Women's rights" - ] - }, - { - "text": "Continue its efforts to further promote human rights", - "values": [ - "General" - ] - }, - { - "text": "Make the education of children a State priority and provide all children with the educational opportunities to rebuild schools and protect them", - "values": [ - "Right to education", - "Rights of the Child" - ] - }, - { - "text": "Criminalize trafficking in persons, and guarantee the protection and rehabilitation of the victims of trafficking", - "values": [ - "Trafficking" - ] - }, - { - "text": "Ensure the protection of the right of women to have access to abortions and for women (and couples) to decide freely and responsibly the number, spacing and timing of their children", - "values": [ - "Women's rights" - ] - }, - { - "text": "Step up efforts to guarantee national food production and promote urban and family agriculture to achieve food sovereignty", - "values": [ - "Right to food" - ] - }, - { - "text": "Accede to the OP-CAT and the ICESCR ", - "values": [ - "Detention", - "ESC rights - general", - "International instruments", - "Torture and other CID treatment" - ] - }, - { - "text": "Accelerate the implementation of the Strategy for People with Disabilities for the period 2017-2030 to strengthen the task force on the support system for people with disabilities, their families and caretakers", - "values": [ - "Disabilities" - ] - }, - { - "text": "Comply with existing laws on detention and implement further legislation to regulate "transit" and "rehabilitation" centres", - "values": [ - "Detention" - ] - }, - { - "text": "Train police, first responders, justice system and social services officials to respect and fully protect all human rights of every Ghanaian, including those who are lesbian, gay, bisexual and transgender", - "values": [ - "Human rights education and training", - "Sexual Orientation and Gender Identity" - ] - }, - { - "text": "Consider becoming a party to the ICRMW", - "values": [ - "International instruments", - "Labour", - "Migrants" - ] - }, - { - "text": "Continue to implement its national equity and gender strategy", - "values": [ - "Women's rights" - ] - }, - { - "text": "Ensure that leaders of all political parties, religious believers, civil society activists and journalists can peacefully exercise their right to freedom of expression in conformity with the ICCPR to which Turkmenistan is a party ", - "values": [ - "Civil society", - "Freedom of association and peaceful assembly", - "Freedom of opinion and expression", - "Freedom of religion and belief", - "Freedom of the press", - "International instruments" - ] - }, - { - "text": "Continue implementing public policies that allow the enjoyment of human rights of the people of Gabon", - "values": [ - "General" - ] - }, - { - "text": "Take necessary measures to ensure quality education by providing sufficient training for teachers, ensuring the presence of quality school materials, books and appropriate infrastructure in all schools and available to all children, especially the most vulnerable children", - "values": [ - "Right to education", - "Rights of the Child" - ] - }, - { - "text": "Continue to promote among Australians a comprehensive campaign of tolerance and non-discrimination", - "values": [ - "Human rights education and training" - ] - }, - { - "text": "Accede to the 1954 Convention relating to the Status of Stateless Persons as well as the 1961 Convention on the Reduction of Statelessness", - "values": [ - "International instruments", - "Statelessness and the right to nationality" - ] - }, - { - "text": "Strengthen the role and mandate of the Ethiopian Human Rights Commission ", - "values": [ - "National Human Rights Institution" - ] - }, - { - "text": "Consider the appropriateness of taking measures to have the National Human Rights Commission accredited by the International Coordinating Committee of National Institutions for the Promotion and Protection of Human Rights.", - "values": [ - "National Human Rights Institution" - ] - }, - { - "text": "Consider establishing an independent national human rights institution in conformity with the Paris Principles and set up an independent human rights structure to receive human rights complaints from individuals", - "values": [ - "National Human Rights Institution" - ] - }, - { - "text": "Redouble its efforts to enforce its legal provisions prohibiting harmful and discriminatory practices that violate the rights of women and girls", - "values": [ - "Rights of the Child", - "Women's rights" - ] - }, - { - "text": "Prevent and eradicate child labour through a national strategy ", - "values": [ - "Labour", - "Rights of the Child" - ] - }, - { - "text": "Make the necessary constitutional changes in order to ratify the Rome Statute of the International Criminal Court, signed in January 2001 ", - "values": [ - "International instruments", - "Justice" - ] - }, - { - "text": "Continue its efforts to prevent domestic violence, notably by reinforcing the legal framework and increasing the protection of victims and the prosecution of reported cases", - "values": [ - "Rights of the Child", - "Women's rights" - ] - }, - { - "text": "Continue efforts to eradicate child labour within the framework of protection and promotion of the rights of the child", - "values": [ - "Labour", - "Rights of the Child" - ] - }, - { - "text": "Continue with efforts for the protection of Indonesian migrants outside the country and of migrants in their territory", - "values": [ - "Migrants" - ] - }, - { - "text": "Take measures to further improve enforcement of existing laws criminalizing rape and domestic violence, including by thoroughly investigating and prosecuting all acts of violence against women, and providing targeted training and capacity-building to law enforcement officials", - "values": [ - "Human rights education and training", - "Women's rights" - ] - }, - { - "text": "Continue its efforts for further progressing in promoting economic and social rights of its people", - "values": [ - "ESC rights - general" - ] - }, - { - "text": "Continue with the efforts carried out to combat criminal acts motivated by racial or religious hatred as well as their incitement", - "values": [ - "Freedom of religion and belief", - "Racial discrimination" - ] - }, - { - "text": "Adopt a national action plan to end child sexual exploitation", - "values": [ - "Rights of the Child" - ] - }, - { - "text": "Systematically continue its efforts in the area of rights of indigenous peoples", - "values": [ - "Indigenous peoples" - ] - }, - { - "text": "Ratify the Optional Protocol to the Convention on the Rights of the Child (CRC) on a communications procedure ", - "values": [ - "International instruments", - "Rights of the Child" - ] - }, - { - "text": "Prohibit corporal punishment, including in the family, in line with the recent recommendation of the Committee on the Rights of the Child.", - "values": [ - "Rights of the Child", - "Torture and other CID treatment", - "Treaty bodies" - ] - }, - { - "text": "Continue its efforts to promote all universally agreed human rights and fundamental freedoms, and continue to resist attempts to enforce any values or standards beyond the universally agreed ones.", - "values": [ - "Other" - ] - }, - { - "text": "Take immediate measures to ensure the autonomy of the judiciary vis-a-vis the executive ", - "values": [ - "Justice" - ] - }, - { - "text": "Extend a specific invitation to the United Nations Special Rapporteur on the situation of human rights defenders", - "values": [ - "Human rights defenders", - "Special procedures" - ] - }, - { - "text": "Strengthen prevention and awareness-raising programmes to address xenophobia and violent extremism at the national and subregional levels", - "values": [ - "Human rights education and training", - "Racial discrimination" - ] - }, - { - "text": "Establish independent children's courts and review the role and functioning of the Child Protection Committees in order to enhance their effectiveness", - "values": [ - "Justice", - "Rights of the Child" - ] - }, - { - "text": "Protect the right to property of the land of the indigenous and traditional peasant communities to prevent the dispossession of land suitable for agriculture in the present context of economic and social development ", - "values": [ - "Indigenous peoples", - "Right to land" - ] - }, - { - "text": "Reform legislation in the area of the right to freedom of conscience and religion ", - "values": [ - "Freedom of religion and belief" - ] - }, - { - "text": "Become a party to the three Optional Protocols to the Convention on the Rights of the Child", - "values": [ - "International humanitarian law", - "International instruments", - "Labour", - "Rights of the Child", - "Trafficking" - ] - }, - { - "text": "Build the capacity for officers whose work concerns protection of the rights of vulnerable groups, especially children and persons with disabilities ", - "values": [ - "Disabilities", - "Rights of the Child" - ] - }, - { - "text": "Eliminate legal sanctions against consensual sexual acts between adults in private ", - "values": [ - "Sexual Orientation and Gender Identity" - ] - }, - { - "text": "Continue promoting education for all, in particular for persons with special needs", - "values": [ - "Disabilities", - "Right to education" - ] - }, - { - "text": "Withdraw its reservation to article 27 of ICCPR on minority rights, and ratify the Council of Europe Framework Convention for the Protection of National Minorities ", - "values": [ - "International instruments", - "Minorities" - ] - }, - { - "text": "Enhance both federal and regional measures to promote equal pay for equal work and to facilitate women's return to their career paths after childbirth ", - "values": [ - "Women's rights" - ] - }, - { - "text": "Seek assistance, as appropriate, to support ongoing efforts to preserve its tangible and intangible cultural heritage", - "values": [ - "ESC rights - general" - ] - }, - { - "text": "Take urgent steps to prevent and punish violence against women in all its manifestations", - "values": [ - "Women's rights" - ] - }, - { - "text": "Consider non-custodial measures for offenders, particularly for women, as a means of reducing overcrowding in prisons and the pressure on reintegration efforts.", - "values": [ - "Detention", - "Women's rights" - ] - }, - { - "text": "Continue efforts to establish a national human rights institution in accordance with the Paris Principles ", - "values": [ - "National Human Rights Institution" - ] - }, - { - "text": "Fully involve civil society and other relevant stakeholders in the expeditious establishment of a human rights institution based on the Paris Principles and ensure its functional and financial independence", - "values": [ - "Civil society", - "National Human Rights Institution" - ] - }, - { - "text": "Continue its efforts to improve legislation and policies and to create institutional mechanisms to combat all forms of discrimination.", - "values": [ - "Other" - ] - }, - { - "text": "Hold accountable those who commit religiously motivated acts of violence", - "values": [ - "Public security" - ] - }, - { - "text": "The establishment of an international round table to discuss the interrelation between security and fundamental freedoms.", - "values": [ - "Counter-terrorism" - ] - }, - { - "text": "Put forward more efforts to protect victims of Ebola and seek solutions for the human rights concerns arising from discrimination and stigmatization of patients, victims, survivors and health workers", - "values": [ - "Right to health" - ] - }, - { - "text": "Strengthen efforts to finalize and present pending reports to corresponding treaty bodies and consider extending a standing invitation to the thematic special procedures as part of its comprehensive cooperation with the international system for the protection and promotion of human rights", - "values": [ - "Special procedures", - "Treaty bodies" - ] - }, - { - "text": "Bahrain is committed to establishing a national human rights institution at the earliest opportunity, bearing in mind the relevant United Nations resolutions and, in particular, the Paris Principles. In fact, in November 2007, the Cabinet issued a decision on the establishment of a national human rights institution. Once the institution has been established, it is expected to design a national action plan for the promotion and protection of human rights in the Kingdom.", - "values": [ - "National Human Rights Institution" - ] - }, - { - "text": "Speed up ratification of core human rights treaties that it has signed, but not ratified yet ", - "values": [ - "International instruments" - ] - }, - { - "text": "Facilitate access to health services for all the population in the Thai territory", - "values": [ - "Right to health" - ] - }, - { - "text": "Encourage the devolved government of Northern Ireland to align its legal framework on sexual and reproductive health and rights, and its reproductive health services, with the rest of the United Kingdom", - "values": [ - "Right to health", - "Women's rights" - ] - }, - { - "text": "Redouble efforts to protect children, migrants and internally displaced persons", - "values": [ - "Internally displaced persons", - "Migrants", - "Rights of the Child" - ] - }, - { - "text": "Continue to exert efforts to ratify major international human rights instruments, particularly including the Convention on the Elimination of All forms of Discrimination against Women and the Convention on the Rights of the Child", - "values": [ - "International instruments", - "Rights of the Child", - "Women's rights" - ] - }, - { - "text": "Consider adopting national legislative measures to ensure gender equality, as stipulated in its Constitution, and to combat and eliminate violence against women ", - "values": [ - "Women's rights" - ] - }, - { - "text": "Consider acceding to the Convention on the Rights of Persons with Disabilities, and devise national policies and legislation to protect the rights of persons with disabilities ", - "values": [ - "Disabilities", - "International instruments" - ] - }, - { - "text": "Continue the enhancement of dialogue between different religions and civilizations, based on the principle of peaceful coexistence and a culture of moderation and tolerance ", - "values": [ - "Freedom of religion and belief" - ] - }, - { - "text": "Continue to fervently implement the "Human Rights Action Plan" ", - "values": [ - "General" - ] - }, - { - "text": "Allow, without restrictions, unhindered access to the country for neutral observers and humanitarian actors", - "values": [ - "Other" - ] - }, - { - "text": "Ensure full adherence to its international human rights obligations in its overseas counter-terrorism operations and set up comprehensive legislative and implementation frameworks for the identification, investigation, prosecution, and punishment of perpetrators of various human rights violations ", - "values": [ - "Counter-terrorism" - ] - }, - { - "text": "Implement a plan of action to promote and protect human rights, in cooperation with civil society and the Ombudsman's Office", - "values": [ - "Civil society", - "National Human Rights Institution" - ] - }, - { - "text": "Ease legislative and administration restrictions on the registration and operation of independent media with a view to provide for plurality of information", - "values": [ - "Freedom of the press" - ] - }, - { - "text": "Take concrete actions in implementing the Law and the 2020 National Strategy on Youth, especially by matching the planned measures with appropriate funding", - "values": [ - "Other" - ] - }, - { - "text": "Strengthen the enforcement of equality provisions with respect to women in employment laws ", - "values": [ - "Women's rights" - ] - }, - { - "text": "Rapidly incorporate the adopted legislative amendments in order that its asylum system will be fully in conformity with regional and international norms in the field of human rights ", - "values": [ - "Asylum-seekers - refugees", - "International instruments" - ] - }, - { - "text": "Take all feasible measures to protect children from recruitment by State-allied and non-State armed groups, including contributing information, analysis and recommendations to the United Nations and other stakeholders to support and strengthen their efforts to ensure that international standards are upheld ", - "values": [ - "Rights of the Child" - ] - }, - { - "text": "Consider the ratification of the Second Optional Protocol to the International Covenant on Civil and Political Rights, aiming at the abolition of the death penalty", - "values": [ - "Death penalty", - "International instruments" - ] - }, - { - "text": "Implement fully the recommendations of the Committee on the Elimination of Discrimination against Women, including by increasing efforts to improve the provision of sexual and reproductive health services so as to reduce maternal morbidity and prevent teenage pregnancies ", - "values": [ - "Right to health", - "Rights of the Child", - "Treaty bodies", - "Women's rights" - ] - }, - { - "text": "Amend the Criminal Code with a view to fully abolish the death penalty", - "values": [ - "Death penalty", - "International instruments" - ] - }, - { - "text": "Further strengthen the commitment of Indonesia to strengthen the human rights dimension in business activities and continue its leading role in this regard", - "values": [ - "Business and human rights" - ] - }, - { - "text": "Explicitly prohibit all corporal punishment of children in all settings, including in the home, and repeal the power to "correct" in the Family Code and the Civil Code", - "values": [ - "Rights of the Child", - "Torture and other CID treatment" - ] - }, - { - "text": "Investigate in an exhaustive manner all alleged cases of torture and ill-treatment, bring to justice the perpetrators and ensure moral and material support to the victims ", - "values": [ - "Torture and other CID treatment" - ] - }, - { - "text": "Implementation of all recommendations of international committees concerning the promotion of human rights in practice", - "values": [ - "Treaty bodies" - ] - }, - { - "text": "Further the process of ensuring free secondary education in order to guarantee access to education for all young persons ", - "values": [ - "Right to education" - ] - }, - { - "text": "Strengthen the independent status of ombudspersons and provide the necessary resources for their effective functioning", - "values": [ - "National Human Rights Institution" - ] - }, - { - "text": "Continue its efforts to combat violence against women and children at the national level, as previously recommended", - "values": [ - "Rights of the Child", - "UPR process", - "Women's rights" - ] - }, - { - "text": "Take visible policy and other measures to ensure the freedom of religion and belief and address the alarming trend of racism, racial discrimination, xenophobia and related intolerance including mob violence committed, incited and advocated by right-wing parties and affiliated extremist organizations against minorities, particularly Muslims, Christians, Sikhs and Dalits", - "values": [ - "Freedom of religion and belief", - "Minorities", - "Racial discrimination" - ] - }, - { - "text": "Strengthen anti-discrimination laws with regard to a better protection of LGBT persons and persons with disabilities ", - "values": [ - "Disabilities", - "Sexual Orientation and Gender Identity" - ] - }, - { - "text": "Continue its national reconciliation efforts ", - "values": [ - "General" - ] - }, - { - "text": "Strengthen the national bodies responsible for ensuring the protection of persons with disability against all forms of violations that they may be subjected to and promote their full integration into society", - "values": [ - "Disabilities" - ] - }, - { - "text": "Collaborate with civil society, regional and global organisations to protect the rights of Nepalese migrant workers abroad", - "values": [ - "Civil society", - "Labour", - "Migrants" - ] - }, - { - "text": "Make urgent strides towards decreasing domestic violence by ensuring that laws, policies and practices in relation to domestic violence are in line with Timor-Leste's obligations under the Convention on the Elimination of All Forms of Discrimination against Women, and ensure law enforcement officials receive training to implement these laws", - "values": [ - "Human rights education and training", - "International instruments", - "Rights of the Child", - "Women's rights" - ] - }, - { - "text": "Tackle incidences of domestic violence and femicide through a multi-pronged approach, including effective legal measures and social awareness programmes", - "values": [ - "Women's rights" - ] - }, - { - "text": "Take the necessary measures to ensure that the justice system effectively combats impunity, and analyse the feasibility of establishing an international commission against impunity on the model of the International Commission against Impunity in Guatemala", - "values": [ - "Impunity", - "Justice" - ] - }, - { - "text": "Incorporate CAT into domestic law and investigate and prosecute those suspected of torture and other cruel, inhuman or degrading treatment", - "values": [ - "International instruments", - "Torture and other CID treatment" - ] - }, - { - "text": "Immediately ratify the International Convention on the Protection of All Persons from Enforced Disappearance", - "values": [ - "Enforced disappearances", - "International instruments" - ] - }, - { - "text": "Ensure that racist and xenophobic incidents are effectively prosecuted ", - "values": [ - "Racial discrimination" - ] - }, - { - "text": "Provide more opportunities to women in the labour market", - "values": [ - "Women's rights" - ] - }, - { - "text": "Continue to prioritize policy aimed at promoting equality and repairing social distortions and disparities ", - "values": [ - "Other" - ] - }, - { - "text": "End impunity for personnel in uniform. ", - "values": [ - "Human rights violations by state agents", - "Impunity" - ] - }, - { - "text": "Provide concrete legal measures against hate speech and incitement", - "values": [ - "Racial discrimination" - ] - }, - { - "text": "Ratify ICESCR and its Optional Protocol, the first Optional Protocol to the International Covenant of Civil and Political Rights, CEDAW, the Convention on the Rights of the Child, the Optional Protocol to the Convention against Torture, the Convention on the Rights of Persons with Disabilities, the Convention for the Protection of All Persons from Enforced Disappearance ", - "values": [ - "International instruments" - ] - }, - { - "text": "Take new measures to continue to reinforce human rights education and training", - "values": [ - "Human rights education and training" - ] - }, - { - "text": "Continue its efforts aimed at enhancing gender equality and improving the means to protect the rights of national minorities", - "values": [ - "Minorities", - "Women's rights" - ] - }, - { - "text": "Abolish death penalty", - "values": [ - "Death penalty" - ] - }, - { - "text": "Thorough reform of the judiciary to ensure compliance with due process and fair trial standards, including independence and impartiality", - "values": [ - "Justice" - ] - }, - { - "text": "Consider setting up a national human rights institution in line with the Paris Principles ", - "values": [ - "National Human Rights Institution" - ] - }, - { - "text": "Complete promptly the establishment of the office of the undersecretary for human rights and the elaboration of a national plan on human rights ", - "values": [ - "General" - ] - }, - { - "text": "Enhance equal access to social services for all people, paying special attention to the needs of vulnerable communities living in remote regions ", - "values": [ - "ESC rights - general" - ] - }, - { - "text": "Mali is ready to consider the recommendations made by the International Coordinating Committee of National Human Rights Institutions with a view to obtaining A status accreditation", - "values": [ - "National Human Rights Institution" - ] - }, - { - "text": "Enable the people of Western Sahara to exercise their right to self-determination through a democratic referendum", - "values": [ - "CP rights - general" - ] - }, - { - "text": "Expand activities to promote access to quality education for all children, in particular ensuring that children whose first language is different from the language of instruction are not at a disadvantage", - "values": [ - "Rights of the Child", - "Women's rights" - ] - }, - { - "text": "Ensure the implementation of the relevant laws to protect people and the environment, by requiring phosphate companies to work with the Government and support its efforts aimed at local and regional development, through, inter alia, building schools and dispensaries and providing water and sanitation to those affected", - "values": [ - "Business and human rights", - "Environment", - "Right to education", - "Right to water and sanitation" - ] - }, - { - "text": "Revise the status of children born of foreign parents in accordance with relevant international standards ", - "values": [ - "Migrants", - "Rights of the Child" - ] - }, - { - "text": "Ban executions of juvenile offenders, while at the same time providing for alternative punishments in line with the new Iranian Penal Code", - "values": [ - "Death penalty", - "Rights of the Child" - ] - }, - { - "text": "Scale up efforts in the fight against all types of gender-based violence and adopt continuous and permanent education and awareness-raising policies in this area ", - "values": [ - "Human rights education and training", - "Women's rights" - ] - }, - { - "text": "Investigate cases of violence against women, particularly honor crimes, take measures to ensure that the perpetrators are brought to justice and provide measures of redress to women victims", - "values": [ - "Women's rights" - ] - }, - { - "text": "Stop and prevent violations and abuses of children's rights, including by actively preventing and combating the recruitment and use of children in hostilities by parties to the conflict", - "values": [ - "International humanitarian law", - "Rights of the Child" - ] - }, - { - "text": "Protect children from all types of abuses by ensuring rigorous implementation and monitoring of existing frameworks to capture all threats to all children", - "values": [ - "Rights of the Child" - ] - }, - { - "text": "Adopt the necessary legislative measures to ensure the integration of the gender perspective in all public policies at all levels of government, and prohibit and punish discrimination based on gender", - "values": [ - "Women's rights" - ] - }, - { - "text": "Strengthen efforts to guarantee the rights of children, and particularly those of children with disabilities, observing at all moments the best interests of the child", - "values": [ - "Disabilities", - "Rights of the Child" - ] - }, - { - "text": "Continue the campaign carried out by the Government to raise population's awareness on domestic violence ", - "values": [ - "Human rights education and training", - "Rights of the Child", - "Women's rights" - ] - }, - { - "text": "Respect the principles and purposes of the Charter of the United Nations", - "values": [ - "General", - "International instruments" - ] - }, - { - "text": "Consider the prompt implementation of the recommendations contained in the report of the Special Rapporteur on torture and other cruel, inhuman or degrading treatment or punishment A-HRC-10-44-Add.1 and the report of the Working Group on Arbitrary Detention A-HRC-7-4-Add.3 ", - "values": [ - "Detention", - "Special procedures", - "Torture and other CID treatment" - ] - }, - { - "text": "Ratify the Optional Protocol to Convention against Torture and Other Cruel, Inhuman or Degrading Treatment or Punishment and establish a national preventive mechanism providing for periodic visits to all places of detention", - "values": [ - "Detention", - "International instruments", - "Torture and other CID treatment" - ] - }, - { - "text": "Reinforce efforts to improve the standard of living of all Liberians", - "values": [ - "Development" - ] - }, - { - "text": "Improve the living conditions and infrastructure of detention facilities in the country ", - "values": [ - "Development" - ] - }, - { - "text": "Enter into other commitments considered necessary for the promotion, protection and enforcement of human rights in the country ", - "values": [ - "General" - ] - }, - { - "text": "Adopt legislation that recognizes homophobic and transphobic motivation as an aggravating circumstance in the Criminal Law ", - "values": [ - "Sexual Orientation and Gender Identity" - ] - }, - { - "text": "Undertake profound legal reforms in accordance with international law, legalize and support free market activities that provide citizens with a livelihood, and release all prisoners detained for exercising private economic activities", - "values": [ - "Detention", - "ESC rights - general", - "Justice" - ] - }, - { - "text": "Create a mechanism for the prevention of torture that complies with the requirements established by the Optional Protocol to the Convention against Torture, giving special emphasis to the independence of this mechanism ", - "values": [ - "Detention", - "International instruments", - "Torture and other CID treatment" - ] - }, - { - "text": "Harmonize a child's protection legislation to international standards ", - "values": [ - "Rights of the Child" - ] - }, - { - "text": "Continue to implement the necessary measures to achieve sustainable management of its natural resources, in line with the respect for environmental rights and the rights of indigenous peoples", - "values": [ - "Environment", - "Indigenous peoples" - ] - }, - { - "text": "Put in place, with the support of UNICEF, permanent structures against the exploitation of children as cattle herders.", - "values": [ - "Rights of the Child" - ] - }, - { - "text": "Take effective measures to ensure that all women have access to adequate health facilities ", - "values": [ - "Right to health", - "Women's rights" - ] - }, - { - "text": "Repeal the Special Law on the Marriage of Buddhist Women and the Law on Religious Conversion and review and amend the Law on Birth Control and the Law on Monogamy to conform them to international human rights norms and standards", - "values": [ - "Freedom of religion and belief", - "International instruments", - "Women's rights" - ] - }, - { - "text": "Ratify the Convention on the Rights of Persons with Disabilities CRPD and sign and ratify the Optional Protocol to CPRD ", - "values": [ - "Disabilities", - "International instruments" - ] - }, - { - "text": "Put a complete moratorium on the use of the death penalty and, short of such a decision, prohibit the death penalty for juvenile offenders and abandon the practice of public executions", - "values": [ - "Death penalty", - "Rights of the Child" - ] - }, - { - "text": "Continue implementing the plan to fight corruption", - "values": [ - "Corruption" - ] - }, - { - "text": "Ensure in practice better access of every detainee to lawyers, family members.", - "values": [ - "Detention" - ] - }, - { - "text": "Finalize the process for the ratification of CEDAW and take all the necessary steps to implement the provisions of the Convention ", - "values": [ - "International instruments", - "Women's rights" - ] - }, - { - "text": "Ensure the effective investigation of all cases of femicide, as well as punishment for those who commit that crime, and to adopt additional measures to combat that phenomenon", - "values": [ - "Women's rights" - ] - }, - { - "text": "Ensure that women enjoy equal access to the labour market and equal pay for work of equal value ", - "values": [ - "Women's rights" - ] - }, - { - "text": "Further legislative and policy measures aimed at ensuring gender equality and combating violence against women and girls ", - "values": [ - "Rights of the Child", - "Women's rights" - ] - }, - { - "text": "Establish a truly independent mechanism to investigate complaints of police violence and provide it with the necessary financial and administrative resources to make it effective and transparent to prosecute the perpetrators and compensate victims", - "values": [ - "Human rights violations by state agents", - "Justice" - ] - }, - { - "text": "Ratify the Optional Protocol to the International Covenant on Economic, Social and Cultural Rights.", - "values": [ - "ESC rights - general", - "International instruments" - ] - }, - { - "text": "Take measures to ensure full compliance with the CAT and other international standards regarding the treatment of detainees.", - "values": [ - "Detention", - "International instruments" - ] - }, - { - "text": "Immediately and unconditionally release all prisoners of conscience", - "values": [ - "Detention", - "Freedom of religion and belief" - ] - }, - { - "text": "Continue its efforts for the operationalization of the National Human Rights Commission", - "values": [ - "National Human Rights Institution" - ] - }, - { - "text": "Keep all places of detention under systematic review.", - "values": [ - "Detention" - ] - }, - { - "text": "Consider making the declaration provided for in Article 14 of the Convention on the Elimination of All Forms of Racial Discrimination ", - "values": [ - "International instruments", - "Racial discrimination" - ] - }, - { - "text": "Continue efforts to establish efficient and transparent public services in line with relevant United Nations resolutions", - "values": [ - "Other" - ] - }, - { - "text": "Undertake specific legal reforms for the promotion of non- discrimination and gender equality", - "values": [ - "Women's rights" - ] - }, - { - "text": "Ensure access to safe and quality education for children ", - "values": [ - "Right to education", - "Rights of the Child" - ] - }, - { - "text": "Ensure that human rights defenders can exercise their rights without interference and ensure the effective establishment of the NHRC", - "values": [ - "Human rights defenders", - "National Human Rights Institution" - ] - }, - { - "text": "Widen the definition of rape in its Penal Code to include any sexual relations without the woman's consent, and remove the exception for marital rape ", - "values": [ - "Women's rights" - ] - }, - { - "text": "Amend domestic legislation to conform to the principles of Convention of the Rights of the Child.", - "values": [ - "International instruments", - "Rights of the Child" - ] - }, - { - "text": "End the unjust incarceration of political prisoners, including Leonard Peltier and Mumia Abu-Jamal ", - "values": [ - "Detention", - "Freedom of opinion and expression" - ] - }, - { - "text": "Adhere to the principles of the main human rights treaties and favourably consider ratifying them within a reasonably short period of time ", - "values": [ - "International instruments" - ] - }, - { - "text": "Submit its first periodic report without further delay and ensure full implementation of CEDAW and other international human rights conventions to which Afghanistan is a party.", - "values": [ - "International instruments", - "Treaty bodies", - "Women's rights" - ] - }, - { - "text": "Ratify the Optional Protocol to the Convention against Torture and establish a national preventive mechanism in accordance with the Optional Protocol", - "values": [ - "Detention", - "International instruments", - "Torture and other CID treatment" - ] - }, - { - "text": "Argentina undertakes to participate in an international campaign to promote the ratification of the Optional Protocol to the International Covenant on Economic, Social and Cultural Rights", - "values": [ - "ESC rights - general", - "International instruments" - ] - }, - { - "text": "Ratify the 1951 Convention relating to the Status of Refugees and its 1967 Protocol", - "values": [ - "Asylum-seekers - refugees", - "International instruments" - ] - }, - { - "text": "Develop and operationalize a comprehensive strategy on preventing maternal, neonatal and child mortality", - "values": [ - "Right to health", - "Rights of the Child", - "Women's rights" - ] - }, - { - "text": "Continue consultations with civil society in the follow-up to the review ", - "values": [ - "Civil society", - "UPR process" - ] - }, - { - "text": "Improve access to justice, including due process and redress, for victims of sexual violence in the military, this would include removing from the chain of command the decision about whether to prosecute cases of alleged assault", - "values": [ - "Women's rights" - ] - }, - { - "text": "Further improve access to the legal aid through the established centres in all provinces by providing them with necessary financing and qualified human resources", - "values": [ - "Justice" - ] - }, - { - "text": "Give enough resources for the good operation of the National Commission on Human Rights", - "values": [ - "National Human Rights Institution" - ] - }, - { - "text": "Pursue measures for the protection of children, in particular children living in the streets and domestic worker children", - "values": [ - "Labour", - "Rights of the Child" - ] - }, - { - "text": "Work towards completing the process already underway for accession to major international instruments of human rights.", - "values": [ - "International instruments" - ] - }, - { - "text": "Put an end to criminal prosecutions against human rights defenders", - "values": [ - "Human rights defenders" - ] - }, - { - "text": "Continue the momentum to reduce incidences of HIV/AIDS by public education and campaigns", - "values": [ - "HIV - Aids" - ] - }, - { - "text": "Ensure that all Maoist army personnel disqualified as minors have unhindered access to the rehabilitation packages and ensure that children are not exposed to or forced to participate in violent activities by political parties ", - "values": [ - "Rights of the Child" - ] - }, - { - "text": "Complete the process of establishing a National Human Rights Commission in accordance with the Paris Principles and fill the Ombudsman post established by law", - "values": [ - "National Human Rights Institution" - ] - }, - { - "text": "Intensify the fight against the so called ritual crimes", - "values": [ - "Other" - ] - }, - { - "text": "Take all necessary steps to ensure freedom of the media and duly address all cases of restrictions on the media", - "values": [ - "Freedom of the press" - ] - }, - { - "text": "Amend the National Security Law, in particular its article 7, to ensure that it is not used arbitrarily or to harass and restrict the rights to freedom of expression, opinion and association, and release all individuals unjustly charged and sentenced to prison terms solely for the legitimate exercise of their rights to freedom of expression and association", - "values": [ - "Freedom of association and peaceful assembly", - "Freedom of opinion and expression" - ] - }, - { - "text": "Continue its efforts in improving health conditions of the people with a view to further reducing maternal and infant mortality, including through awareness-raising", - "values": [ - "Right to health", - "Rights of the Child", - "Women's rights" - ] - }, - { - "text": "Provide the National Human Rights Commission with all the necessary resources to make it fully compliant with the Paris Principles (A Status) ", - "values": [ - "National Human Rights Institution" - ] - }, - { - "text": "Create a fully functioning Sexual Assault Referral Centre within Mount St John's Medical Centre in order to provide a comprehensive response to the victims of sexual violence and raise the standard of care provided to victims", - "values": [ - "Women's rights" - ] - }, - { - "text": "Accelerate the legal reform process in order to ensure that all discriminatory provisions in the legislation are abolished ", - "values": [ - "Justice" - ] - }, - { - "text": "Consider amending the Declaration of Citizens' Rights to expressly include such grounds as race, colour, language, nationality and national or ethnic origin, which are currently subsumed under the notion of personal status", - "values": [ - "Justice" - ] - }, - { - "text": "Effectively fight against torture and ill-treatment, especially in places of detention, ensuring that these acts are the subject of independent investigations and appropriate legal prosecutions, and that the use of preventive detention is exceptional and strictly regulated ", - "values": [ - "Detention", - "Torture and other CID treatment" - ] - }, - { - "text": "Strengthen the legal framework for the protection of children, as well as guaranteeing the rights of delinquent minors", - "values": [ - "Rights of the Child" - ] - }, - { - "text": "Ensure the effective implementation of the National Plan of Action against Human Trafficking", - "values": [ - "Trafficking" - ] - }, - { - "text": "In line with requests by CEDAW and the CRC, review the situation of children born out of wedlock who do not enjoy nationality, inheritance and birth registration rights", - "values": [ - "Rights of the Child", - "Statelessness and the right to nationality", - "Treaty bodies" - ] - }, - { - "text": "Seek the support of the OHCHR in its efforts to improve national capacity on treaty reporting, including through exploring the possibility of producing a common core Document, if it so wishes.", - "values": [ - "Technical assistance and cooperation", - "Treaty bodies" - ] - }, - { - "text": "Adopt provisions to address the phenomenon of school dropouts particularly among Roma children and children living in rural areas, especially girls.", - "values": [ - "Minorities", - "Right to education", - "Rights of the Child" - ] - }, - { - "text": "Take additional measures to effectively combat violence against women and promote the participation of women in political life and their insertion in the professional life", - "values": [ - "Women's rights" - ] - }, - { - "text": "Take all necessary measures to provide adequate protection to journalists and human rights defenders, in particular regarding enforced disappearances and extrajudicial killings", - "values": [ - "Enforced disappearances", - "Extrajudicial executions", - "Human rights defenders" - ] - }, - { - "text": "Allow freedom of movement of its citizens within and across the border and end the punishment of those expelled or returned from abroad, including refugees and asylum-seekers ", - "values": [ - "Asylum-seekers - refugees", - "Freedom of movement" - ] - }, - { - "text": "Take measures to improve the enforcement of existing laws criminalizing rape and domestic violence, including by providing targeted training and capacity-building for law enforcement officials ", - "values": [ - "Rights of the Child", - "Women's rights" - ] - }, - { - "text": "With a view to fostering equality in law and practice, repeal all discriminatory legislation with regard to marriage, divorce and inheritance ", - "values": [ - "Women's rights" - ] - }, - { - "text": "Modify the military code in order to eliminate capital punishment for all crimes", - "values": [ - "Death penalty" - ] - }, - { - "text": "Amend domestic legislation, in keeping with its international commitments, to include the concept of torture", - "values": [ - "Torture and other CID treatment" - ] - }, - { - "text": "Facilitate a visit of the Special Rapporteur on the independence of judges and lawyers prior to the third review of Fiji under the UPR", - "values": [ - "Justice", - "Special procedures", - "UPR process" - ] - }, - { - "text": "Decriminalize consensual sex relations between adults of the same sex and strengthen legislation punishing all forms of discrimination, including on the grounds of sexual orientation and gender identity", - "values": [ - "Sexual Orientation and Gender Identity" - ] - }, - { - "text": "Consider ratifying the Optional Protocols to the CRC.", - "values": [ - "International instruments", - "Rights of the Child" - ] - }, - { - "text": "Further progress in combating all forms of discrimination, including against LGBT persons, through the introduction and implementation of appropriate legislation, policy and practice", - "values": [ - "Sexual Orientation and Gender Identity" - ] - }, - { - "text": "Take the legislative and policy measures to prevent and fight against violence and fight against discrimination based on sexual orientation or gender identity", - "values": [ - "Sexual Orientation and Gender Identity" - ] - }, - { - "text": "Strengthen human rights teaching in school programmes", - "values": [ - "Human rights education and training" - ] - }, - { - "text": "Continue with the efforts to investigate and punish all those responsible for the acts of violence that occurred in 2013 and 2014, ensuring access to justice and effective judicial protection for victims", - "values": [ - "Justice" - ] - }, - { - "text": "Ensure that primary education is free and compulsory and prioritize the accessibility of secondary education, making it progressively free in accordance with the new Universal Plan on Basic Education ", - "values": [ - "Right to education" - ] - }, - { - "text": "Develop, in compliance with CRPD, a legal framework that ensures an environment without barriers or obstacles, and includes access to goods and services", - "values": [ - "Disabilities", - "International instruments" - ] - }, - { - "text": "Become party to the International Covenant on Civil and Political Rights and the two Optional Protocols thereto - the International Convention on the Elimination of All Forms of Racial Discrimination - the Convention against Torture and the Optional Protocol thereto - the Optional Protocols to theConvention on the Rights of the Child - the Convention on the Rights of Persons with Disabilities and the Optional Protocol thereto - and the International Convention for the Protection of All Persons from Enforced Disappearance ", - "values": [ - "International instruments" - ] - }, - { - "text": "Resolve the question of the commemoration of the memory of the Roma who died during the Second World War in the Nazi camp in the village of Lety", - "values": [ - "Other" - ] - }, - { - "text": "Do not reintroduce the death penalty, consistent with the Philippines\u2019 obligations as a State party to the Second Optional Protocol to the International Covenant on Civil and Political Rights", - "values": [ - "Death penalty", - "International instruments" - ] - }, - { - "text": "Intensify efforts to draft a constitution which would be in full compliance with the international standards of human rights protection", - "values": [ - "Other" - ] - }, - { - "text": "Consider signing the third optional protocol to the Convention on the Rights of the Child providing for a procedure on the presentation of communications", - "values": [ - "International instruments", - "Rights of the Child" - ] - }, - { - "text": "Continue to expand the coverage of the National Health Insurance and Social Protection Fund to include more disadvantaged persons and those previously without coverage, in accordance with its national plan", - "values": [ - "Right to health" - ] - }, - { - "text": "Engage further efforts in protection of public health, namely to undertake systematic review of the health situation and to take all necessary measures in order to prevent and combat transmissible diseases, including cholera", - "values": [ - "Right to health" - ] - }, - { - "text": "Ensure that public hospitals and other health-care facilities and services are both affordable and accessible, in particular making provision for child maternal health services and for the prevention and treatment of preventable diseases", - "values": [ - "Right to health" - ] - }, - { - "text": "Adhere to the International Convention on the Protection of the Rights of All Migrant Workers and Members of Their Families ", - "values": [ - "International instruments", - "Labour", - "Migrants" - ] - }, - { - "text": "Maintain the strategies of holistic health and provisions of health care, with special emphasis on vulnerable groups, despite the budget cuts due to the economic crisis ", - "values": [ - "Minorities", - "Right to health" - ] - }, - { - "text": "Implement necessary measures to ensure adequate labour conditions and to combat human trafficking ", - "values": [ - "Labour", - "Trafficking" - ] - }, - { - "text": "Combat racist stereotypes and incitement to hatred by intensifying efforts to promote tolerance ", - "values": [ - "Racial discrimination" - ] - }, - { - "text": "Remove from the Penal Code (arts. 218, 220, 221, 227) any references to marital relations between victim and perpetrator of offences, in order to ensure that there is no impunity in cases of marital rape ", - "values": [ - "Impunity", - "Women's rights" - ] - }, - { - "text": "Encourage efforts undertaken by the Government to increase the involvement of the Civil Society in the public sphere ", - "values": [ - "Civil society" - ] - }, - { - "text": "Continue initiatives aimed at improving the quality of life through diversification of the economy", - "values": [ - "Development" - ] - }, - { - "text": "Continue efforts to increase training on human rights for members of the police and defence forces", - "values": [ - "Human rights education and training" - ] - }, - { - "text": "Continue its efforts to promote economic, cultural and social rights ", - "values": [ - "ESC rights - general" - ] - }, - { - "text": "Undertake key electoral reforms to: improve the integrity of the voter registration system and voter list, ensure that all candidates have equal access to the media, and ensure that the National Election Committee retains full independence ", - "values": [ - "Elections" - ] - }, - { - "text": "Revise the status of the National Human Rights Institution with a view to ensure its full compliance with the Paris Principles ", - "values": [ - "National Human Rights Institution" - ] - }, - { - "text": "Strengthen measures to implement the law on the protection and well-being of children, particularly in rural areas, so as to prevent children having to work in the fields or in home in order to meet their needs and those of their families", - "values": [ - "Labour", - "Rights of the Child" - ] - }, - { - "text": "Submit overdue reports to Treaty Bodies", - "values": [ - "Treaty bodies" - ] - }, - { - "text": "Complete swiftly the discussions within the legislative body on the revised draft of the Criminal Code", - "values": [ - "Justice" - ] - }, - { - "text": "Implement and strengthen policies and laws to protect and promote the rights of persons with disabilities and ensure that these mechanisms enjoy a human rights based approach consistent with the CRPD and in consultation with civil society ", - "values": [ - "Civil society", - "Disabilities", - "International instruments" - ] - }, - { - "text": "Reimpose the moratorium on the use of the death penalty", - "values": [ - "Death penalty" - ] - }, - { - "text": "Adopt the existing draft law on combating violence against women to incorporate the criminalization of marital rape, incest, and sexual harassment", - "values": [ - "Women's rights" - ] - }, - { - "text": "Intensify efforts for the security of human rights defenders and reinforce cooperation with all stakeholders, in particular, the states and military police ", - "values": [ - "Human rights defenders" - ] - }, - { - "text": "Continue its efforts aimed at protecting and promoting human rights and fundamental freedoms and, in this regard, adopt all necessary measures to ensure better harmonization between its national legislation and the international instruments to which Malta is a party.", - "values": [ - "International instruments" - ] - }, - { - "text": "Cooperate closely with UNICEF and OHCHR in the protection of the rights of children", - "values": [ - "Rights of the Child" - ] - }, - { - "text": "Cooperate with the special procedures of the United Nations in issuing a standing invitation and facilitating their visits ", - "values": [ - "Special procedures" - ] - }, - { - "text": "Present its report to CEDAW without further delay.", - "values": [ - "Treaty bodies", - "Women's rights" - ] - }, - { - "text": "Consider developing, in the context of the promotion of gender equality, human rights indicators, as suggested by OHCHR as an instrument that allows for a more precise and coherent evaluation of national human rights policies", - "values": [ - "Women's rights" - ] - }, - { - "text": "Strengthen efforts to ensure better participation of women at all spheres of public life and especially at political level ", - "values": [ - "Women's rights" - ] - }, - { - "text": "Ratify the International Covenant on Civil and Political Rights and continue to raise public awareness about international human rights law and the legal avenues available for defending those rights", - "values": [ - "CP rights - general", - "Human rights education and training", - "International instruments" - ] - }, - { - "text": "Maintain and expand those existing initiatives to fight against trafficking in children and child labour, and protect children from sexual exploitation and other forms of modern slavery, especially by enhancing services of registration at birth", - "values": [ - "Labour", - "Rights of the Child", - "Trafficking" - ] - }, - { - "text": "Strengthen efforts to combat illiteracy", - "values": [ - "Right to education" - ] - }, - { - "text": "Pursuing the process to abolishing the death penalty", - "values": [ - "Death penalty" - ] - }, - { - "text": "Continue to engage with the United Nations special procedures and in particular positively respond to the invitation requests by the Special Rapporteur on the situation of human rights defenders and the Special Rapporteur on extrajudicial, summary or arbitrary executions ", - "values": [ - "Extrajudicial executions", - "Human rights defenders", - "Special procedures" - ] - }, - { - "text": "Continue to cooperate with other countries in health", - "values": [ - "Right to health" - ] - }, - { - "text": "Ensure ongoing cooperation with the special rapporteur for Myanmar of the Human Rights Council and with other Special Procedures", - "values": [ - "Special procedures" - ] - }, - { - "text": "In accordance with the compromise expressed by the Minister, carry out a process of revision of the justice system, in order to ensure, in legislation as well as in practice, its full independence, the elimination of impunity and due diligence in the conduct of investigations, especially those regarding human rights violations", - "values": [ - "Impunity", - "Justice" - ] - }, - { - "text": "Continue implementing the 2013-2017 National Development Plan", - "values": [ - "Development" - ] - }, - { - "text": "Ensure equality of access to education, housing and employment especially of the Roma people", - "values": [ - "Development", - "Minorities", - "Right to education", - "Right to housing" - ] - }, - { - "text": "Ensure women's access to quality sexual education as well as to condoms and other means necessary for the practice of an informed and responsible sexual health ", - "values": [ - "Right to health", - "Rights of the Child", - "Women's rights" - ] - }, - { - "text": "The Ministry of Health in partnership with Ministry of Gender, Labour and Social Development mainstream disability in their awareness raising campaigns with a view to eliminate negative attitudes towards persons with disabilities in health centres ", - "values": [ - "Disabilities", - "Human rights education and training", - "Right to health" - ] - }, - { - "text": "Ensure that all trials observe international standards for fair trial, and that the Government responds to concerns by defence lawyers and non-governmental organizations regarding trials against human rights defenders ", - "values": [ - "Civil society", - "Human rights defenders", - "Justice" - ] - }, - { - "text": "Put an end to threats, attacks and deaths of journalists by allowing for comprehensive and impartial investigations", - "values": [ - "Freedom of the press" - ] - }, - { - "text": "Fulfil the obligations assumed as a State party to the Second Optional Protocol to the International Covenant on Civil and Political Rights, aimed at the abolition of the death penalty, and oppose any attempt to reinstate capital punishment", - "values": [ - "Death penalty", - "International instruments" - ] - }, - { - "text": "Pay further attention to the penitentiary policy of the country and increase public spending on prisons", - "values": [ - "Detention" - ] - }, - { - "text": "Consider ratifying the two remaining Optional Protocols to CRC to further ensure children's rights ", - "values": [ - "International instruments", - "Rights of the Child" - ] - }, - { - "text": "Consider providing regular training on the importance of ensuring both accountability for gender-based violence and victim's access to justice, especially for law enforcement and judicial officers, including prosecutors", - "values": [ - "Human rights education and training", - "Women's rights" - ] - }, - { - "text": "Adopt the necessary measures to guarantee easy and effective access to free birth registration", - "values": [ - "Rights of the Child", - "Statelessness and the right to nationality" - ] - }, - { - "text": "Further adopt policies and legislation to combat discrimination and violence against women and children, particularly domestic and sexual violence ", - "values": [ - "Rights of the Child", - "Women's rights" - ] - }, - { - "text": "Accelerate the procedure to accede to the Hague Convention", - "values": [ - "International instruments", - "Rights of the Child" - ] - }, - { - "text": "Continue intensifying its efforts and measures to consolidate the rule of law and the national human rights protection mechanisms", - "values": [ - "Justice" - ] - }, - { - "text": "Establish a moratorium on executions in view of abolishing the death penalty", - "values": [ - "Death penalty" - ] - }, - { - "text": "Abolish the death penalty by means of law and ratify the Second Optional Protocol to the International Covenant on Civil and Political Rights ", - "values": [ - "Death penalty", - "International instruments" - ] - }, - { - "text": "Strengthen domestic efforts to tackle modern slavery of children and rural workers, including through ratification of the ILO Protocol of 2014 to the Forced Labour Convention, 1930", - "values": [ - "International instruments", - "Labour", - "Rights of the Child" - ] - }, - { - "text": "Extend an open and standing invitation to special procedures of the Human Rights Council ", - "values": [ - "Special procedures" - ] - }, - { - "text": "Implement fully the obligations to ensure unhampered enjoyment of human rights by all persons with disabilities ", - "values": [ - "Disabilities" - ] - }, - { - "text": "Establish an independent national human rights institution, consistent with the Paris Principles", - "values": [ - "National Human Rights Institution" - ] - }, - { - "text": "Make better use of the Commission's work as a contribution to improving the rule of law.", - "values": [ - "Justice" - ] - }, - { - "text": "Adopt a concrete plan and measures leading to the abolition of segregated settings and achievement of better education outcomes for children from Romani communities ", - "values": [ - "Minorities", - "Right to education", - "Rights of the Child" - ] - }, - { - "text": "Put emphasis on suicide prevention and support to these people and their families, taking into account the despair generated by such act", - "values": [ - "Other" - ] - }, - { - "text": "Establish an effective and inclusive process to follow up on the periodic review recommendations ", - "values": [ - "UPR process" - ] - }, - { - "text": "Continue to ensure the implementation of ratified human rights treaties", - "values": [ - "International instruments" - ] - }, - { - "text": "Take measures to ensure compulsory and free primary and quality education for all", - "values": [ - "Right to education" - ] - }, - { - "text": "Fully cooperate with the Special Rapporteur on the situation of human rights in the Palestinian territories occupied since 1967 ", - "values": [ - "Special procedures" - ] - }, - { - "text": "Recognize the right to conscientious objection to military service and reinstate the alternative civilian national service ", - "values": [ - "Freedom of religion and belief" - ] - }, - { - "text": "Recognize the centrality of human rights and the rule of law in its approach to improving public security", - "values": [ - "Public security" - ] - }, - { - "text": "Strengthen its efforts to close the gaps in the infant and maternal mortality rates", - "values": [ - "Right to health", - "Rights of the Child", - "Women's rights" - ] - }, - { - "text": "Extend a standing invitation to the Special Procedures of the United Nations and strengthen cooperation with the treaty bodies", - "values": [ - "Special procedures", - "Treaty bodies" - ] - }, - { - "text": "Put an end to the practice of ethnic profiling which is ineffective and counter-productive", - "values": [ - "Racial discrimination" - ] - }, - { - "text": "Ensure that law enforcement officers receive training on human rights norms and standards", - "values": [ - "Human rights education and training" - ] - }, - { - "text": "Pursue efforts to address child labour in line with its international obligations", - "values": [ - "Labour", - "Rights of the Child" - ] - }, - { - "text": "Continue the efforts in providing free education and health care and combating female genital mutilation and HIV-AIDS ", - "values": [ - "HIV - Aids", - "Right to education", - "Right to health", - "Rights of the Child", - "Torture and other CID treatment", - "Women's rights" - ] - }, - { - "text": "Continue undertaking efforts to address the issue of violence against children and particularly, with regard to sexual exploitation against girls ", - "values": [ - "Rights of the Child", - "Women's rights" - ] - }, - { - "text": "Take concrete actions in the elaboration of regulatory laws of the constitutional reform to ensure that victim's rights are guaranteed, that military courts have a restrictive and exceptional scope, and that alleged human rights crimes, such as extrajudicial killings, in no case will be addressed by military courts ", - "values": [ - "Extrajudicial executions", - "Justice" - ] - }, - { - "text": "Maintain the abolition of death penalty in line with its obligations under the Second Optional Protocol to the International Covenant on Civil and Political Rights", - "values": [ - "Death penalty", - "International instruments" - ] - }, - { - "text": "Intensively pursue current national priorities and strategies, with effective measures focusing on the rights to health, education, gender equality, social protection and women's participation in employment and sociopolitical progress", - "values": [ - "ESC rights - general", - "Right to education", - "Right to health", - "Women's rights" - ] - }, - { - "text": "Abolish prison terms for incitement to discrimination regarding sex, origin, language, religion or belief, and for acts damaging to an individual's honour", - "values": [ - "Freedom of religion and belief", - "Racial discrimination", - "Sexual Orientation and Gender Identity" - ] - }, - { - "text": "Amend national legislation to abolish the death penalty so it is completely prohibited, and sign and ratify the Second Optional Protocol to the International Covenant on Civil and Political Rights ", - "values": [ - "Death penalty", - "International instruments" - ] - }, - { - "text": "Consider the adoption of a legal framework to address violence against women ", - "values": [ - "Women's rights" - ] - }, - { - "text": "Enhance national efforts to combat discrimination, xenophobia and racism, in particular the discriminatory practices against migrants and people of African descent", - "values": [ - "Migrants", - "Minorities", - "Racial discrimination" - ] - }, - { - "text": "Eliminate completely all legal and political provisions which discriminate on the basis of civil status of women and violate sexual and reproductive rights ", - "values": [ - "Right to health", - "Women's rights" - ] - }, - { - "text": "Further promote awareness-raising campaigns and educational programmes in order to put an end to social rejection and stigmatization faced by unmarried pregnant women and girls", - "values": [ - "Human rights education and training", - "Women's rights" - ] - }, - { - "text": "Extend an open invitation to all special procedures of the Human Rights Council", - "values": [ - "Special procedures" - ] - }, - { - "text": "Put an end to the military attacks against the civilian population, the practice of targeted killings, and the torture and ill treatment of Palestinian prisoners", - "values": [ - "Detention", - "Extrajudicial executions", - "International humanitarian law", - "Torture and other CID treatment" - ] - }, - { - "text": "Ensure full enjoyment of freedom and equality of religion and worship in the country", - "values": [ - "Freedom of religion and belief" - ] - }, - { - "text": "Adopt and implement comprehensive anti-discrimination legislation which prohibits discrimination on all grounds, including on the basis of race, ethnicity, sexual orientation and gender identity", - "values": [ - "Minorities", - "Racial discrimination", - "Sexual Orientation and Gender Identity" - ] - }, - { - "text": "Continue improving the quality of public education with the aim of maintaining the excellent level of education by which the different stages of education have been ", - "values": [ - "Right to education" - ] - }, - { - "text": "Take measures that ensure that children of ethnic minorities can remain within the school system. In this regard, it is suggested that these measures are implemented at the level of local governments with an important number of Roma or Hungarian population residing there and that adequate follow-up of the progress is carried out in this regard ", - "values": [ - "Minorities", - "Right to education", - "Rights of the Child" - ] - }, - { - "text": "Continue conducting actions with a view to eradicating child labour in the country", - "values": [ - "Labour", - "Rights of the Child" - ] - }, - { - "text": "Criminalize torture and other inhuman or degrading treatment or punishment in the Penal Code ", - "values": [ - "Torture and other CID treatment" - ] - }, - { - "text": "Take appropriate measures to combat all forms of violence against women", - "values": [ - "Women's rights" - ] - }, - { - "text": "Provide adequate and stable funding for legal, psychological and medical assistance and shelter for victims of domestic violence", - "values": [ - "Right to health", - "Rights of the Child", - "Women's rights" - ] - }, - { - "text": "Amend the Penal and Criminal Code to abolish generic crimes such as "activities against the State or society" ", - "values": [ - "Justice" - ] - }, - { - "text": "Work to advance the legal and policy framework on evictions, expropriations and resettlements and to ensure that those resettled have access to the necessary facilities and support ", - "values": [ - "Right to housing" - ] - }, - { - "text": "Put an end to immunity from prosecution for spouses within marriage in order to effectively combat impunity ", - "values": [ - "Impunity", - "Women's rights" - ] - }, - { - "text": "Strengthen the institutional and legal human rights framework, in order to ensure effective and impartial investigations into all reports of extrajudicial killings, enforced disappearances, torture, other ill-treatment and sexual violence against women and children and to bring those responsible to justice", - "values": [ - "Enforced disappearances", - "Extrajudicial executions", - "Rights of the Child", - "Torture and other CID treatment", - "Women's rights" - ] - }, - { - "text": "Adopt measures to ensure the effective implementation of legislative guarantees and programmes for the protection of witnesses and victims.", - "values": [ - "Justice" - ] - }, - { - "text": "Take measures to fully ensure the rights of migrants who arrive in the country", - "values": [ - "Migrants" - ] - }, - { - "text": "Consider ratifying the ICESCR", - "values": [ - "ESC rights - general", - "International instruments" - ] - }, - { - "text": "Further increase the efforts to combat trafficking in persons", - "values": [ - "Trafficking" - ] - }, - { - "text": "Continue in its endeavours in consistently addressing the issues affecting indigenous peoples", - "values": [ - "Indigenous peoples" - ] - }, - { - "text": "Comply fully with the international human rights obligations to which it is bound", - "values": [ - "International instruments" - ] - }, - { - "text": "Ratify the Convention against Torture and the International Convention for the Protection of All Persons from Enforced disappearance", - "values": [ - "Enforced disappearances", - "International instruments", - "Torture and other CID treatment" - ] - }, - { - "text": "Adhere to the Convention against Torture and its Optional Protocol and to the International Convention for the Protection of All Persons from Enforced Disappearance", - "values": [ - "Detention", - "Enforced disappearances", - "International instruments", - "Torture and other CID treatment" - ] - }, - { - "text": "Ratify the Convention on the Non-Applicability of Statutory Limitations to War Crimes and Crimes against Humanity", - "values": [ - "International instruments", - "Justice" - ] - }, - { - "text": "Fulfil its first cycle commitment to strengthen the independence and impartiality of its national Human Rights Commission", - "values": [ - "National Human Rights Institution" - ] - }, - { - "text": "Continue to ensure access to education for all, especially children of scheduled castes and tribes", - "values": [ - "Minorities", - "Right to education" - ] - }, - { - "text": "Consider ratifying the Rome Statute of the International Criminal Court", - "values": [ - "International instruments", - "Justice" - ] - }, - { - "text": "Safeguard the democratic nature of Lebanon, as prescribed by Article 25 of the International Covenant on Civil and Political Rights, by carrying out local elections as planned, without delay, as well as by urgently facilitating the appointment of a president and the holding of a parliamentary election", - "values": [ - "Elections", - "International instruments" - ] - }, - { - "text": "Give continuity to strengthening of national human rights mechanisms", - "values": [ - "General" - ] - }, - { - "text": "Enact specific legislation that prohibits discrimination against persons based on sexual orientation", - "values": [ - "Sexual Orientation and Gender Identity" - ] - }, - { - "text": "End the arrests and public defamation of the Ahmadi community for practicing their religion", - "values": [ - "Freedom of religion and belief", - "Minorities" - ] - }, - { - "text": "Tackle the subject of torture in a comprehensive way, including by fighting impunity and providing for compensation of victims", - "values": [ - "Impunity", - "Torture and other CID treatment" - ] - }, - { - "text": "Design and implement programmes to ensure the respect for and protection of the rights of women and children, in particular the rehabilitation of women, children and families affected by conflict ", - "values": [ - "Rights of the Child", - "Women's rights" - ] - }, - { - "text": "Ensure all juvenile offenders are housed separately from adult prisoners in Correctional Facilities", - "values": [ - "Detention", - "Rights of the Child" - ] - }, - { - "text": "Protect the rights of ethnic minority groups, including Tibetans, Uighurs, and Mongolians, in accordance with China's Constitution and international human rights commitments ", - "values": [ - "International instruments", - "Minorities" - ] - }, - { - "text": "Equip the government committee established to consider accession to the International Covenant on Economic, Social and Cultural Rights with adequate power and resources to accelerate the process and reach a practical outcome ", - "values": [ - "ESC rights - general", - "International instruments" - ] - }, - { - "text": "Redouble efforts in the field of primary, secondary and tertiary prevention of HIV-AIDS in order to drastically reduce its prevalence, especially among women and children ", - "values": [ - "HIV - Aids", - "Rights of the Child", - "Women's rights" - ] - }, - { - "text": "Continue its efforts to expand the coverage of and access to basic health services ", - "values": [ - "Right to health" - ] - }, - { - "text": "Continue the promotion and the protection of human rights, particularly for women, children and vulnerable groups in the society", - "values": [ - "Minorities", - "Rights of the Child", - "Women's rights" - ] - }, - { - "text": "Intensify measures and initiatives to support persons with disabilities", - "values": [ - "Disabilities" - ] - }, - { - "text": "Continue its efforts in the promotion and dissemination of best practices in the sphere of intercultural dialogue ", - "values": [ - "Freedom of religion and belief", - "Minorities" - ] - }, - { - "text": "Continue its efforts to ensure the full implementation of the Persons with Disabilities Act 2010", - "values": [ - "Disabilities" - ] - }, - { - "text": "Continue legislative and practical efforts to improve living conditions in prison and detention facilities, in particular with regard to reducing overcrowding and ensuring access to health care and education", - "values": [ - "Detention" - ] - }, - { - "text": "Enhance protection of rights of women and children, in particular those in the most vulnerable situations ", - "values": [ - "Rights of the Child", - "Women's rights" - ] - }, - { - "text": "Ratify the core international human rights instruments such as ICESCR", - "values": [ - "ESC rights - general", - "International instruments" - ] - }, - { - "text": "Extend a standing invitation to special procedures ", - "values": [ - "Special procedures" - ] - }, - { - "text": "Consider conducting a campaign to promote awareness of the Child and Adolescent Protection Act of 2009 and of the mechanisms for access to justice for children and adolescents", - "values": [ - "Human rights education and training", - "Justice", - "Rights of the Child" - ] - }, - { - "text": "Continue the measures to promote women rights, including the advancement of women's empowerment ", - "values": [ - "Women's rights" - ] - }, - { - "text": "Cooperate fully with the Working Group on Enforced and Involuntary Disappearances ", - "values": [ - "Enforced disappearances", - "Special procedures" - ] - }, - { - "text": "Extend an open and standing invitation to all the Special Procedures", - "values": [ - "Special procedures" - ] - }, - { - "text": "Increase efforts to protect women from violence and discrimination, in particular in areas affected by the earthquakes", - "values": [ - "Women's rights" - ] - }, - { - "text": "Work towards a moratorium on executions with the view to abolishing the death penalty, in conformity with General Assembly resolution 62-149, adopted on 18 December 2007 ", - "values": [ - "Death penalty" - ] - }, - { - "text": "Improve, as a matter of urgency, conditions in prisons and detention centres, in particular inmates' access to food, medical care and overcrowding", - "values": [ - "Detention" - ] - }, - { - "text": "Fully implement the recommendations of the OHCHR field office in Colombia as a means to contribute to the improvement of the human rights situation on the ground.", - "values": [ - "Technical assistance and cooperation" - ] - }, - { - "text": "Prevent all forms of violence against women and girls, particularly sexual abuse and domestic violence, including by adopting a law to prevent, punish and eradicate violence against women", - "values": [ - "Rights of the Child", - "Women's rights" - ] - }, - { - "text": "Decriminalize consensual adult same-sex activity by amending article 14 and repealing article 16 of the Sexual Offences Act ", - "values": [ - "Sexual Orientation and Gender Identity" - ] - }, - { - "text": "Allocate adequate budget to fully implement its plan of action for the protection and promotion of the rights of women", - "values": [ - "Women's rights" - ] - }, - { - "text": "Demonstrate its commitment to coordinating with civil society, including NGOs, academics, and research institutions, as it develops and implements domestic human rights policy.", - "values": [ - "Civil society" - ] - }, - { - "text": "Involve all stakeholders, including civil society in the implementation of the National Action Plan, in order to ensure its success", - "values": [ - "Civil society" - ] - }, - { - "text": "Implement the anti-slavery law without delay and prosecute perpetrators", - "values": [ - "Other" - ] - }, - { - "text": "Recommended ensuring that men and women enjoy the same rights with respect to marriage, including the selection of spouse, dissolution of the marriage, child custody and inheritance.", - "values": [ - "Women's rights" - ] - }, - { - "text": "Investigate allegations of human rights abuses by all parties in the southern border provinces of Thailand", - "values": [ - "Other" - ] - }, - { - "text": "Take all necessary measures to ensure the full enjoyment of human rights by women and girls, including by way of properly and promptly investigating and prosecuting cases of gender-based and sexual violence", - "values": [ - "Rights of the Child", - "Women's rights" - ] - }, - { - "text": "Intensify its efforts to addressing the issues of education, poverty and health", - "values": [ - "Poverty", - "Right to education", - "Right to health" - ] - }, - { - "text": "Establish formal procedures to proactively identify trafficking victims among vulnerable populations and refer them to protective services", - "values": [ - "Trafficking" - ] - }, - { - "text": "Repeal the Decree 3/2015 of the National Council for Peace and Order, and ensure that all civilians have the right to a fair trial and are brought before civilian courts", - "values": [ - "Justice" - ] - }, - { - "text": "Continue efforts to provide appropriate assistance to victims of human trafficking and utilize the OHCHR recommended Principles and Guidelines on Human Rights and Human Trafficking as a reference ", - "values": [ - "Trafficking" - ] - }, - { - "text": "Take steps to ratify the International Covenant on Civil and Political Rights and the International Convention on the Elimination of All Forms of Racial Discrimination", - "values": [ - "CP rights - general", - "International instruments", - "Racial discrimination" - ] - }, - { - "text": "Consider withdrawal of reservations with respect to the International Covenant on Economic, Social and Cultural Rights with regard to the Netherlands Antilles.", - "values": [ - "ESC rights - general", - "International instruments" - ] - }, - { - "text": "Restore the moratorium on the death penalty", - "values": [ - "Death penalty" - ] - }, - { - "text": "Give priority to and allocate resources for implementing current national strategies, programmes and measures, with more focus on addressing the challenges and disparities in employment, education and health care, especially for vulnerable groups of women, children, migrants and the elderly ", - "values": [ - "Development", - "Migrants", - "Right to education", - "Right to health", - "Rights of the Child", - "Women's rights" - ] - }, - { - "text": "Step up its recent efforts and ratify the core human rights treaties and other main relevant international instruments ", - "values": [ - "International instruments" - ] - }, - { - "text": "Adopt officially General Assembly resolution 62-149 on a moratorium on the death penalty and ratify the second optional protocol to ICCPR, as important steps towards abolishing capital punishment", - "values": [ - "Death penalty", - "International instruments" - ] - }, - { - "text": "Take into account as appropriate the rights and needs of persons requiring international protection when resolving the issue on granting them asylum in Bulgaria", - "values": [ - "Asylum-seekers - refugees" - ] - }, - { - "text": "Adopt a law aimed at promoting access to education and health services for all children with disabilities", - "values": [ - "Disabilities", - "Right to education", - "Right to health", - "Rights of the Child" - ] - }, - { - "text": "Continue efforts in ensuring gender equality in all the spheres of the society, including making efforts to narrow the gender pay gap", - "values": [ - "Women's rights" - ] - }, - { - "text": "Strengthen the institutional capacity of the National Council to Combat Trafficking in Persons", - "values": [ - "Trafficking" - ] - }, - { - "text": "Implement without delay the proposals for improved procedures and modalities as regards its asylum policy and to review its detention policy and that such review include how to ensure that children are not detained pending age determination", - "values": [ - "Asylum-seekers - refugees", - "Detention", - "Rights of the Child" - ] - }, - { - "text": "Continue efforts in the field of human rights education and training", - "values": [ - "Human rights education and training" - ] - }, - { - "text": "Explicitly recognize the legitimacy of the work carried out by human rights defenders, publicly support their work and provide protection for them", - "values": [ - "Human rights defenders" - ] - }, - { - "text": "Continue addressing the special needs of women in their strategy for the promotion and protection of human rights of its people ", - "values": [ - "Women's rights" - ] - }, - { - "text": "Ensure the independence of judges from the executive in Burundi, by applying objective admission criteria within an impartial selection process and ensuring adequate funding for the judicial system ", - "values": [ - "Justice" - ] - }, - { - "text": "Ratify all three optional protocols to the Convention on the Rights of the Child", - "values": [ - "International instruments", - "Rights of the Child" - ] - }, - { - "text": "Make a plan for the submission of all overdue reports to treaty bodies ", - "values": [ - "Treaty bodies" - ] - }, - { - "text": "Undertake further measures to ensure freedom of the press based on decriminalization of press offences and respect for the rights of the press", - "values": [ - "Freedom of the press" - ] - }, - { - "text": "Formally establish a moratorium on the application of the death penalty as a step towards full abolition of it", - "values": [ - "Death penalty" - ] - }, - { - "text": "Continue its good momentum in its initiative to improve the quality of human life through its strive towards a green economy ", - "values": [ - "Development", - "Environment" - ] - }, - { - "text": "Collect and generate disaggregated data on actual manifestations of racism and discrimination with a view to evaluating the situation regarding different racial, ethnic and minority groups ", - "values": [ - "Minorities", - "Racial discrimination" - ] - }, - { - "text": "Increase the involvement of local authorities in the National Strategy on Roma and equip the Strategy with adequate financial means and evaluation mechanisms ", - "values": [ - "Minorities" - ] - }, - { - "text": "Take necessary steps to establish a credible national human rights institution in accordance with the Paris Principles", - "values": [ - "National Human Rights Institution" - ] - }, - { - "text": "Take immediate and concerted actions to fully investigate and prosecute all reports of extrajudicial killings, including re-examination of investigations disposed of before the CARICOM Implementation Agency for Crime and Security report, in order to hold the perpetrators accountable, and establish mechanisms for fully independent oversight of the police service", - "values": [ - "Extrajudicial executions", - "Human rights violations by state agents" - ] - }, - { - "text": "Abolish the practice of caged beds in all health-care and social care facilities.", - "values": [ - "Torture and other CID treatment" - ] - }, - { - "text": "Consider acceding to the Convention against Torture", - "values": [ - "International instruments", - "Torture and other CID treatment" - ] - }, - { - "text": "Continue efforts to integrate Roma children into the education system ", - "values": [ - "Minorities", - "Right to education", - "Rights of the Child" - ] - }, - { - "text": "Implement existing laws to prosecute sexual and gender-based violence, in particular female genital mutilation as well as domestic violence, and to address legal gaps and other deficiencies in measures to combat sexual and gender-based violence effectively", - "values": [ - "Rights of the Child", - "Torture and other CID treatment", - "Women's rights" - ] - }, - { - "text": "Ratify the Second Optional Protocol to the International Covenant on Civil and Political Rights without reservations", - "values": [ - "Death penalty", - "International instruments" - ] - }, - { - "text": "Implement the commitment to abolish the current mandatory death sentence system, as well as to commute all death sentences to terms of imprisonment before the next UPR review ", - "values": [ - "Death penalty", - "UPR process" - ] - }, - { - "text": "Implement the Law on Gender Equality and the gender action plan and ensure their adequate resourcing", - "values": [ - "Women's rights" - ] - }, - { - "text": "Protect the rights of indigenous peoples, peasants and other persons working in rural areas", - "values": [ - "Indigenous peoples" - ] - }, - { - "text": "Implement the National Action Plan to reduce violence against women and their children, including through an independent supervision mechanism that involves civil society organizations and take into account the specific situation of indigenous women and migrants ", - "values": [ - "Civil society", - "Indigenous peoples", - "Migrants", - "Rights of the Child", - "Women's rights" - ] - }, - { - "text": "Strengthen its programmes and adopt further measures in the field of HIV/AIDS ", - "values": [ - "HIV - Aids" - ] - }, - { - "text": "Make efforts to take into account the need to integrate indigenous and Afro-Honduran peoples into the labour market", - "values": [ - "Indigenous peoples", - "Labour", - "Minorities" - ] - }, - { - "text": "Ratify the international human rights instruments that had been signed but not yet ratified", - "values": [ - "International instruments" - ] - }, - { - "text": "Strengthen the measures and norms necessary for the full implementation of the Law on the Protection of the Family, explicitly sanctioning the corporal punishment of children", - "values": [ - "Rights of the Child", - "Torture and other CID treatment", - "Women's rights" - ] - }, - { - "text": "Make efforts aimed at preparing further National reports for future UPR cycles well in advance", - "values": [ - "UPR process" - ] - }, - { - "text": "Designate a national mechanism for the prevention of torture and other cruel, inhuman or degrading treatment or punishment", - "values": [ - "Torture and other CID treatment" - ] - }, - { - "text": "Continue to adopt measures in order to ensure the protection of the rights of the child", - "values": [ - "Rights of the Child" - ] - }, - { - "text": "Prohibit corporal punishment as a form of sentence as well prohibit corporal punishment in all other settings ", - "values": [ - "Torture and other CID treatment" - ] - }, - { - "text": "Take all measures needed to ensure that those operations being carried out to tackle terrorism and restore Mali's sovereignty over its whole territory are undertaken with a strict respect of the international humanitarian law while making sure that full protection is extended to the civilian population", - "values": [ - "Counter-terrorism", - "International humanitarian law" - ] - }, - { - "text": "Respect the due process and human rights of persons deprived of liberty, especially those who find themselves in that condition due to the complex political situation", - "values": [ - "Detention" - ] - }, - { - "text": "Carry out further efforts to combat human trafficking", - "values": [ - "Trafficking" - ] - }, - { - "text": "Consider taking appropriate action at the legislative level in order to ensure protection from all forms of discrimination", - "values": [ - "Other" - ] - }, - { - "text": "Extend the accession by Curaçao and Sint Maarten to the 1951 Convention relating to the Status of Refugees and its 1967 Protocol", - "values": [ - "Asylum-seekers - refugees", - "International instruments" - ] - }, - { - "text": "Further develop measures to fight anti-Semitism and Holocaust denial, including in the field of education", - "values": [ - "Freedom of religion and belief", - "Racial discrimination" - ] - }, - { - "text": "Take necessary measures against discrimination based on ethnic and religious origin and language in employment and prosecute such cases", - "values": [ - "Freedom of religion and belief", - "Labour", - "Racial discrimination" - ] - }, - { - "text": "Bring its legislation in conformity with international law, by decriminalizing consensual same-sex relations between adults and by prohibiting all discrimination based on sexual orientation and gender identity", - "values": [ - "Sexual Orientation and Gender Identity" - ] - }, - { - "text": "Remove, in the process of legal and constitutional reform, any legal distinction between children born in and outside of marriage, amend its law to ensure that no person may be sentenced to the death penalty for a crime alleged to have been committed as a child, and prohibit corporal punishment in school and care settings as well as in detention", - "values": [ - "Death penalty", - "Detention", - "Rights of the Child", - "Torture and other CID treatment" - ] - }, - { - "text": "Take all necessary steps to strengthen the freedom of expression", - "values": [ - "Freedom of opinion and expression" - ] - }, - { - "text": "Enact and implement legislation that unambiguously prohibits all corporal punishment in the home ", - "values": [ - "Rights of the Child", - "Torture and other CID treatment" - ] - }, - { - "text": "Undertake effective actions to continue the fight against violence regarding women and children in the family setting", - "values": [ - "Rights of the Child", - "Women's rights" - ] - }, - { - "text": "Bring prison conditions in line with article 10 of ICCPR and the Standard Minimum Rules for the Treatment of Prisoners.", - "values": [ - "Detention", - "International instruments" - ] - }, - { - "text": "Adopt a strategic plan which includes elements of prevention, investigation and punishment of acts of violence as well as redress for victims, awareness raising and training for law enforcement staff", - "values": [ - "Human rights education and training", - "Justice" - ] - }, - { - "text": "Establish normative frameworks to help domesticate the human rights instruments it has ratified", - "values": [ - "International instruments" - ] - }, - { - "text": "Continue to promote the rights of women, with a focus on obtaining demonstrable results as regards, in particular, access to health services and to the labour market", - "values": [ - "Women's rights" - ] - }, - { - "text": "Continue to undertake measures to promote and enhance the rights of women", - "values": [ - "Women's rights" - ] - }, - { - "text": "Strengthen the mandate of the Provedor de Justiça and ensure it functions in accordance with the Paris Principles", - "values": [ - "National Human Rights Institution" - ] - }, - { - "text": "Review the kafala system in order to comply with international standards ", - "values": [ - "Labour", - "Migrants" - ] - }, - { - "text": "Strengthen the human rights training curriculum provided in the Police Science Academy (ACIPOL) and define an ethics code and appropriate inspection mechanisms for the security forces ", - "values": [ - "Human rights education and training" - ] - }, - { - "text": "Strengthen measures to combat the negative effect of the economic activities of companies on the environment and biodiversity", - "values": [ - "Business and human rights", - "Environment" - ] - }, - { - "text": "Design a comprehensive strategy with a gender and human rights perspective to assist the population that are living in situations of poverty and extreme poverty", - "values": [ - "Poverty", - "Women's rights" - ] - }, - { - "text": "Ensure better protection of the rights of the child", - "values": [ - "Rights of the Child" - ] - }, - { - "text": "Take greater measures to ensure the safety of all its people, including directly targeted groups such as human rights defenders, community leaders, journalists and trade unionists.", - "values": [ - "Freedom of the press", - "Human rights defenders", - "Labour" - ] - }, - { - "text": "Proceed to implement, as soon as possible and effectively, the national strategy regarding war crimes, and to formulate and adopt a national strategy regarding transitional justice", - "values": [ - "Justice" - ] - }, - { - "text": "Raise the legal age of marriage for women and men to 18 years", - "values": [ - "Rights of the Child", - "Women's rights" - ] - }, - { - "text": "Guarantee freedom of expression", - "values": [ - "Freedom of opinion and expression" - ] - }, - { - "text": "Continue with its efforts for the establishment of independent national human rights institution in accordance with the Paris Principles ", - "values": [ - "National Human Rights Institution" - ] - }, - { - "text": "Consolidate the policy gains into legal reforms on issues such as treatment of same-sex relations and access to information", - "values": [ - "Sexual Orientation and Gender Identity" - ] - }, - { - "text": "Ratify the Kampala amendments to the Rome Statute of the International Criminal Court ", - "values": [ - "International instruments", - "Justice" - ] - }, - { - "text": "Amend the 1993 Amnesty Law, which grants full amnesty to members of armed and security forces, and fight against impunity of perpetrators of acts of torture, as recommended in 2013 by the Committee against Torture", - "values": [ - "Human rights violations by state agents", - "Impunity", - "Torture and other CID treatment", - "Treaty bodies" - ] - }, - { - "text": "Take supplementary actions to advance comprehensive education, to further promote inclusive education in all its aspects", - "values": [ - "Right to education" - ] - }, - { - "text": "Create a system of collection of statistical data on cases of gender- based violence, accompanied by a study analysing the causes why many such cases are not denounced", - "values": [ - "Women's rights" - ] - }, - { - "text": "Continue implementing the National Strategy on Children and Young People's participation in Decision-making 2015-2020", - "values": [ - "Rights of the Child" - ] - }, - { - "text": "Adopt the law on child marriages", - "values": [ - "Rights of the Child" - ] - }, - { - "text": "Establish a national human rights institution that is compliant with the Paris Principles ", - "values": [ - "National Human Rights Institution" - ] - }, - { - "text": "Heed the recommendation of the Human Rights Committee to redouble efforts to prevent and eliminate all manifestations of racism and xenophobia, as well as to improve the policing action in its response to violence against non-citizens", - "values": [ - "Racial discrimination" - ] - }, - { - "text": "Continue to promote a greater focus on combatting gender-based violence ", - "values": [ - "Rights of the Child", - "Women's rights" - ] - }, - { - "text": "Intensify its efforts to combat violence against women by criminalizing and implementing comprehensive laws prohibiting sexual and gender-based violence and female genital mutilation, and by providing the necessary support to victims of sexual and gender-based violence ", - "values": [ - "Rights of the Child", - "Torture and other CID treatment", - "Women's rights" - ] - }, - { - "text": "Give more priority to returnee communities for economic development initiatives, so that returnees are given easier access to social welfare systems and to take effective measures to recognize their years of work and their right to a pension", - "values": [ - "Asylum-seekers - refugees" - ] - }, - { - "text": "Ratify CAT as soon as possible and fully implement it without delay", - "values": [ - "International instruments", - "Torture and other CID treatment" - ] - }, - { - "text": "Increase access to contraceptive methods for all women as required by CESCR ", - "values": [ - "International instruments", - "Women's rights" - ] - }, - { - "text": "Enhance freedom of expression, association and assembly ", - "values": [ - "Freedom of association and peaceful assembly", - "Freedom of opinion and expression" - ] - }, - { - "text": "Strengthen the role and capacity of the Office of the Ombudsman and the Human Rights Commission", - "values": [ - "National Human Rights Institution" - ] - }, - { - "text": "Adopt measures to eliminate corporal punishment ", - "values": [ - "Torture and other CID treatment" - ] - }, - { - "text": "Facilitate the access of children belonging to the most vulnerable groups to health services and education", - "values": [ - "Right to education", - "Right to health", - "Rights of the Child" - ] - }, - { - "text": "Take appropriate action to guarantee freedom of expression, association and assembly - including by allowing independent media, political parties and civil society groups to operate ", - "values": [ - "Civil society", - "Freedom of association and peaceful assembly", - "Freedom of opinion and expression", - "Freedom of the press" - ] - }, - { - "text": "Rapidly complete the process of considering ratifying OP-CAT", - "values": [ - "Detention", - "International instruments", - "Torture and other CID treatment" - ] - }, - { - "text": "Grant citizenship to all those who live on a permanent basis in the territory of Estonia and wish to become a citizen, grant, as a mater of urgency, the right to citizenship to all children born in Estonia of so-called non-citizens, without exception, lift the prohibition on access of membership in political parties to so-called non-citizens who have permanent residency in the country and are citizens of countries which are not members of the European Union, as well as provide non-citizens the passive right to vote in municipal elections ", - "values": [ - "Migrants", - "Statelessness and the right to nationality" - ] - }, - { - "text": "Strengthen cooperation with the special procedures of the Human Rights Council by extending a standing invitation to all the special procedures mandate holders", - "values": [ - "Special procedures" - ] - }, - { - "text": "Establish the necessary conditions to provide access for the most vulnerable population to basic education and relaunch its policy to encourage the enrolment of girls in schools", - "values": [ - "Right to education", - "Rights of the Child", - "Women's rights" - ] - }, - { - "text": "Amend the Criminal Procedure Code, 1960 (Act 30) to introduce an alternative sentencing policy", - "values": [ - "Justice" - ] - }, - { - "text": "Consider lifting its reservations in respect of article 10 2 b and 3 of ICCPR ", - "values": [ - "Detention" - ] - }, - { - "text": "Step up its efforts to establish its national human rights institution that is compliant with the Paris Principles ", - "values": [ - "National Human Rights Institution" - ] - }, - { - "text": "Fully align the national legislation with all obligations under the Rome Statute of the ICC, including incorporating the Statute's definition of crimes and general principles, as well as adopting provisions enabling cooperation with the ICC ", - "values": [ - "International instruments", - "Justice" - ] - }, - { - "text": "Make the de facto moratorium into a permanent one with a view to abolishing the death penalty ", - "values": [ - "Death penalty" - ] - }, - { - "text": "Adopt measures to address all forms of discrimination - such as against women or religious minorities - including support to public debates, awareness-raising campaigns and steps towards the revision of discriminatory provisions in the legislation", - "values": [ - "Freedom of religion and belief", - "Human rights education and training", - "Minorities", - "Racial discrimination", - "Women's rights" - ] - }, - { - "text": "Pursue the recommendations outlined in the 2015 State of Human Rights Report, particularly those relating to women, children, people with disabilities and prisoners", - "values": [ - "Detention", - "Disabilities", - "Rights of the Child", - "Women's rights" - ] - }, - { - "text": "Further enhance the freedom of expression, especially of journalists and social media users", - "values": [ - "Freedom of opinion and expression", - "Freedom of the press" - ] - }, - { - "text": "Explicitly prohibit any form of corporal punishment in the family and continue developing awareness-raising campaigns and education for parents and for the public in general ", - "values": [ - "Human rights education and training", - "Rights of the Child", - "Torture and other CID treatment" - ] - }, - { - "text": "Augment their efforts to reduce poverty and to provide enhanced access of safe potable water particularly in rural communities", - "values": [ - "Poverty", - "Right to water and sanitation" - ] - }, - { - "text": "Pursue the measures which have been taken on judicial reform to support the activity of the Extraordinary Chambers and continue cooperation with the Special Rapporteur ", - "values": [ - "Justice", - "Special procedures" - ] - }, - { - "text": "Fully cooperate with OHCHR as well as special procedures", - "values": [ - "Special procedures", - "Technical assistance and cooperation" - ] - }, - { - "text": "Include sexual orientation and gender identity in the hate speech provisions of the national Criminal Code, and adopt appropriate legal measures making sexual orientation and gender identity as possible discrimination grounds in any context ", - "values": [ - "Sexual Orientation and Gender Identity" - ] - }, - { - "text": "Amend the criminal code in order to ensure that the definition of war crimes of sexual violence is in accordance with international standards and to implement the National War Crimes Strategy", - "values": [ - "International humanitarian law", - "Justice", - "Rights of the Child", - "Women's rights" - ] - }, - { - "text": "Consider establishing a system which guarantees all children, regardless of the parents\u2019 nationality and status, the right to birth registration", - "values": [ - "Rights of the Child", - "Statelessness and the right to nationality" - ] - }, - { - "text": "Intensify efforts to conclude the submission of overdue reports to the various treaty bodies ", - "values": [ - "Treaty bodies" - ] - }, - { - "text": "Strengthen efforts in implementing the rights and obligations towards the empowerment of women found in the Convention on the Elimination of All Forms of Discrimination against Women", - "values": [ - "International instruments", - "Women's rights" - ] - }, - { - "text": "Address gender and regional disparities regarding the right to education", - "values": [ - "Right to education", - "Women's rights" - ] - }, - { - "text": "Share its experiences and best practices with other countries in establishing national legislation and mechanisms and pursuing international cooperation to curb human trafficking.", - "values": [ - "Trafficking" - ] - }, - { - "text": "Uphold its international obligations and not reinstate the capital punishment", - "values": [ - "Death penalty", - "International instruments" - ] - }, - { - "text": "Decriminalize defamation, reform the legislation regulating the press in order to ensure more freedom for journalists and writers ", - "values": [ - "Freedom of opinion and expression", - "Freedom of the press" - ] - }, - { - "text": "Recognize the right to Kuwaiti nationality of those persons who have been left stateless due to the nationality law in 1959, and provide for the same enjoyment of their human rights as to other citizens", - "values": [ - "Statelessness and the right to nationality" - ] - }, - { - "text": "Adopt and enact legislation that prohibits all forms of human trafficking", - "values": [ - "Trafficking" - ] - }, - { - "text": "As part of national reconstruction and the reinforcement of the rule of law, ratify and implement the International Covenant on Civil and Political Rights ICCPR ", - "values": [ - "CP rights - general", - "International instruments", - "Justice" - ] - }, - { - "text": "Further fulfil the internationally taken human rights obligations as well as integrate them into the national legislation ", - "values": [ - "International instruments" - ] - }, - { - "text": "Not detain, persecute or prosecute returned migrants and asylum seekers and allow the international community, especially the Office of the United Nations High Commissioner for Refugees, access to returnees ", - "values": [ - "Asylum-seekers - refugees", - "Migrants" - ] - }, - { - "text": "Decriminalise defamation and place it under the civil code in accordance with international human rights standards", - "values": [ - "Freedom of opinion and expression", - "International instruments" - ] - }, - { - "text": "Consider introducing forms of administration of justice that respect the traditional justice systems of indigenous people, seeking differentiated access to justice", - "values": [ - "Indigenous peoples", - "Justice" - ] - }, - { - "text": "Continue its efforts to combat all forms of discrimination ", - "values": [ - "Other" - ] - }, - { - "text": "Increase its efforts and take concrete policy measures in order to promote tolerance and non-discrimination of lesbian, gay, bisexual, transsexual and transgender persons ", - "values": [ - "Sexual Orientation and Gender Identity" - ] - }, - { - "text": "Facilitate the process of immigration's regularization for those persons who have resided in the country for an extended period and allow the registration of their children born in Malaysia", - "values": [ - "Migrants", - "Rights of the Child" - ] - }, - { - "text": "Publish a communications plan that states how the Government intends to increase the Ombudsman's office capacity (resources, staff and legal powers) and how it intends to increase public awareness about their rights and their recourse to the Ombudsman if their rights are denied ", - "values": [ - "National Human Rights Institution" - ] - }, - { - "text": "Review and align the legislation with freedom of religion and belief and freedom of expression, as stipulated in the ICCPR", - "values": [ - "Freedom of opinion and expression", - "Freedom of religion and belief", - "International instruments" - ] - }, - { - "text": "Continue the Public Security and the Criminal Justice System reforms and ensure that it is being implemented quickly to ensure that human rights violations by the security forces are systematically investigated, perpetrators are brought to justice and victims are compensated", - "values": [ - "Justice" - ] - }, - { - "text": "Prioritize measures to minimize and end pay differentials between men and women ", - "values": [ - "Women's rights" - ] - }, - { - "text": "Continue efforts to investigate human rights violations committed during the military dictatorship and provide victims and their families with the corresponding reparations ", - "values": [ - "Justice" - ] - }, - { - "text": "Fully align its national legislation with all obligations arising out of the Rome Statute of the International Criminal Court ", - "values": [ - "International instruments", - "Justice" - ] - }, - { - "text": "Set clear time frames in regard to the ratification of the Optional Protocol to CAT and the Optional Protocol to CRC on the involvement of children in armed conflict, and that the Human Rights Council be informed accordingly. ", - "values": [ - "Detention", - "International humanitarian law", - "International instruments", - "Rights of the Child", - "Torture and other CID treatment" - ] - }, - { - "text": "Take action with a view to bringing to an end the ratification procedures for the Rome Statute of the ICC", - "values": [ - "International instruments", - "Justice" - ] - }, - { - "text": "Take all necessary measures to effectively strengthen the combat against domestic violence and sexual violence against women ", - "values": [ - "Rights of the Child", - "Women's rights" - ] - }, - { - "text": "Ensure implementation of the national programme of family violence prevention (2009-2014) and prevent all forms of violence against women and children, including domestic violence ", - "values": [ - "Rights of the Child", - "Women's rights" - ] - }, - { - "text": "Increase efforts to strengthen the merit-based recruitment of judges, inter alia, by effectively implementing the new Law on Courts requiring all newly appointed first-instance judges to have graduated from the Academy for Judges and Prosecutors two-year training programme", - "values": [ - "Justice" - ] - }, - { - "text": "Promulgate as soon as possible a law to establish an effective national preventive mechanism against torture", - "values": [ - "Detention", - "Torture and other CID treatment" - ] - }, - { - "text": "Continue its policies aimed at promoting dialogue among religions and civilizations, at both the national and international levels", - "values": [ - "Freedom of religion and belief" - ] - }, - { - "text": "Continue strengthening protective measures and legal rights for women and children, including by giving women equal status to men in matters of divorce, inheritance and child custody ", - "values": [ - "Rights of the Child", - "Women's rights" - ] - }, - { - "text": "Strengthen the inclusive approach in the implementation of the national policy for the promotion and protection of Human Rights ", - "values": [ - "General" - ] - }, - { - "text": "Step up efforts to combat and sanction effectively all forms of discrimination and intolerance, as well as to take additional measures to provide a more adequate response and the required support to the educational needs of the minorities ", - "values": [ - "Minorities", - "Racial discrimination" - ] - }, - { - "text": "Bring its national legislation into conformity with its commitment to equality and non-discrimination, by repealing the provision in the Penal Code to criminalize sexual relations between consenting adults of the same sex", - "values": [ - "Sexual Orientation and Gender Identity" - ] - }, - { - "text": "Continue efforts to improve standards of living, ensure broad access to quality education and health services", - "values": [ - "Right to education", - "Right to health" - ] - }, - { - "text": "Continue efforts to combat poverty", - "values": [ - "Poverty" - ] - }, - { - "text": "Ensure the effective holding of prior, free and informed consultations with indigenous groups on policies that affect their way of life or culture", - "values": [ - "Indigenous peoples" - ] - }, - { - "text": "Typify torture as a specific crime, with all the elements of the definition of article 1 of the Convention against Torture and Other Cruel, Inhuman or Degrading Treatment or Punishment, take measures to prevent police brutality, particularly against migrants, asylum seekers and foreigners, and adopt an effective and independent mechanism to address such complaints", - "values": [ - "Asylum-seekers - refugees", - "Human rights violations by state agents", - "Migrants", - "Torture and other CID treatment" - ] - }, - { - "text": "By the end of 2014, adopt and implement the recommendations on electoral reform of the Special Rapporteur on Cambodia ", - "values": [ - "Elections", - "Special procedures" - ] - }, - { - "text": "Establish a moratorium on executions with a view to the rapid abolition of the death penalty, and in the immediate future, respect minimum international standards, including the right to a fair trial, the limitation of the death penalty to the most serious crimes, as well as the non application of the death penalty to minors, pregnant women and persons suffering from mental diseases ", - "values": [ - "Death penalty" - ] - }, - { - "text": "Intensify the implementation of measures that allow the elimination of all forms of discrimination against women ", - "values": [ - "Women's rights" - ] - }, - { - "text": "Pursue efforts to improve women's access to education and health services and strengthen their role in local development planning", - "values": [ - "Women's rights" - ] - }, - { - "text": "Bring all provisions concerning racial discrimination into full compliance with the International Convention on the Elimination of All Forms of Racial Discrimination", - "values": [ - "International instruments", - "Racial discrimination" - ] - }, - { - "text": "Ratify the major international instruments, including the ICCPR and the ICESCR", - "values": [ - "CP rights - general", - "ESC rights - general", - "International instruments" - ] - }, - { - "text": "Take legislative measures to ensure that children older than 14 years of age are effectively protected from sexual exploitation and adopt the amendment bill to the General Penal Code, which would extend the statute of limitations in respect of sexual abuse cases against children ", - "values": [ - "Rights of the Child" - ] - }, - { - "text": "Reinforce policies that favour access to education in rural areas", - "values": [ - "Right to education" - ] - }, - { - "text": "Raise social awareness on the importance of women's rights", - "values": [ - "Women's rights" - ] - }, - { - "text": "Fully align the national legislation with all obligations arising out of the Rome Statute of the International Criminal Court (ICC)", - "values": [ - "International instruments", - "Justice" - ] - }, - { - "text": "Sign and ratify CED at the earliest ", - "values": [ - "Enforced disappearances", - "International instruments" - ] - }, - { - "text": "Continue its effort to protect the rights and interests of foreign workers", - "values": [ - "Migrants" - ] - }, - { - "text": "Institute a moratorium on the application of the death penalty with a view to abolition", - "values": [ - "Death penalty" - ] - }, - { - "text": "Continue efforts to combat different forms of discrimination and ensure respect for the rights of ethnic minorities ", - "values": [ - "Minorities", - "Racial discrimination" - ] - }, - { - "text": "Continue efforts to improve access to public services for persons with disabilities, including the electoral process ", - "values": [ - "Disabilities", - "Elections" - ] - }, - { - "text": "Make further efforts to strengthen the legal framework in the areas of security and law enforcement as well as ensure that the judiciary is guided by international human rights law with a particular focus on the importance of an impartial and independent judicial system", - "values": [ - "Justice" - ] - }, - { - "text": "Take the necessary measures in order to stop human rights abuses against journalists and human rights defenders, conduct impartial, effective and thorough investigations, publish the results of these investigations and ensure that such violations do not remain unpunished", - "values": [ - "Freedom of the press", - "Human rights defenders" - ] - }, - { - "text": "Consider taking substantial measures, such as requesting capacity-building assistance, to advance the understanding of human rights and criminal investigation ability of police personnel", - "values": [ - "Justice", - "Technical assistance and cooperation" - ] - }, - { - "text": "Continue its efforts to improve the situation of children in detention as recommended by the Committee against Torture and the Committee on the Rights of the Child. ", - "values": [ - "Detention", - "Rights of the Child", - "Treaty bodies" - ] - }, - { - "text": "Continue its efforts to ensure sustainable development and attainment of the goals set out in the Millennium Declaration ", - "values": [ - "Development" - ] - }, - { - "text": "Continue moving forward in the empowerment of women, and in particular ensure that the salary gap between men and women is overcome ", - "values": [ - "Women's rights" - ] - }, - { - "text": "Prevent violence against women by proper enforcement of laws and ensure prosecution and punishment of the real offenders through proper investigation and judicial process ", - "values": [ - "Women's rights" - ] - }, - { - "text": "Take further steps to harmonize national legislation with the Optional Protocol to the Convention on the Rights of the Child on a communications procedure and the Council of Europe Convention on the Protection of Children against Sexual Exploitation and Sexual Abuse", - "values": [ - "International instruments", - "Rights of the Child" - ] - }, - { - "text": "Take further steps in order to protect the right to family reunifications for refugees, giving emphasis to child rights", - "values": [ - "Asylum-seekers - refugees", - "Rights of the Child" - ] - }, - { - "text": "Ratify CED and fully recognize the competence of the Committee on Enforced Disappearances ", - "values": [ - "Enforced disappearances", - "International instruments" - ] - }, - { - "text": "Continue its efforts in order to strengthen its legislation relating to human trafficking and the assistance mechanisms for these victims, as well as to guarantee the proper investigation, trial and punishment of these conducts in light of international standards ", - "values": [ - "Trafficking" - ] - }, - { - "text": "Allocate the resources necessary for the full implementation of the Zero Tolerance Campaign against Gender Based Violence", - "values": [ - "Human rights education and training", - "Women's rights" - ] - }, - { - "text": "Consider issuing a standing invitation to all Special Procedures mandate holders", - "values": [ - "Special procedures" - ] - }, - { - "text": "Further strengthen the existing mechanisms on the promotion and protection of the rights of persons with disabilities", - "values": [ - "Disabilities" - ] - }, - { - "text": "Improve detention conditions so that they are favourable to the respect of dignity of prisoners ", - "values": [ - "Detention" - ] - }, - { - "text": "Increase the efficiency of tribunals against agreed targets, including through education and employment of qualified judicial personnel", - "values": [ - "Justice" - ] - }, - { - "text": "Continue to increase its social programmes which are essential for the eradication of poverty and social marginalization ", - "values": [ - "Poverty" - ] - }, - { - "text": "Examine the possibility of expanding the scope of application and the target population of the "Bolsa Familia" programme aimed at reducing poverty and redouble its efforts to reduce social inequalities ", - "values": [ - "Poverty" - ] - }, - { - "text": "Take measures to ensure that children are housed in separate facilities from adults in cases of detention", - "values": [ - "Detention", - "Rights of the Child" - ] - }, - { - "text": "Accede to CAT-OP and establish its national preventive mechanism accordingly, which would also facilitate a better and more effective fight against secret detention, prolonged detention without trial and cases of torture by prison officers.", - "values": [ - "Detention", - "International instruments", - "Torture and other CID treatment" - ] - }, - { - "text": "Adopt a law for the protection of national minorities, in particular in the area of ensuring teaching of and instruction in their mother tongue", - "values": [ - "Minorities", - "Right to education" - ] - }, - { - "text": "Ensure that its legislation allows for processes of consultations in all actions affecting indigenous peoples ", - "values": [ - "Indigenous peoples" - ] - }, - { - "text": "Explore further steps with a view to strengthening domestic measures to combat human trafficking and child labour", - "values": [ - "Labour", - "Rights of the Child", - "Trafficking" - ] - }, - { - "text": "Intensify efforts to implement all measures for preventing and addressing all forms of violence against children, particularly in institutions", - "values": [ - "Rights of the Child" - ] - }, - { - "text": "Repeal as soon as possible the provisions in the Penal Code and particularly articles 13 and 16 of the law on sexual offences of 1986, penalizing sexual relations between consenting individuals of the same sex", - "values": [ - "Sexual Orientation and Gender Identity" - ] - }, - { - "text": "Enhance efforts to ensure effective implementation of international commitments and existing legislation to prevent and combat all forms of violence against women and girls, including sexual abuse and child early and forced marriage. Adopt measures to support victims of sexual abuse and bring perpetrators to justice", - "values": [ - "Rights of the Child", - "Torture and other CID treatment", - "Women's rights" - ] - }, - { - "text": "Ratify the International Convention for the Protection of all Persons from Enforced Disappearance", - "values": [ - "Enforced disappearances", - "International instruments" - ] - }, - { - "text": "Take concrete steps to reduce violence targeting foreigners and investigate, prosecute and punish perpetrators of violent attacks", - "values": [ - "Migrants" - ] - }, - { - "text": "Continue the process of legislative review to promote and protect all human rights", - "values": [ - "General" - ] - }, - { - "text": "Take more effective measures to combat contemporary forms of racism, racial discrimination, xenophobia and related intolerance against minority groups in the country, in particular prejudice against Muslims", - "values": [ - "Freedom of religion and belief", - "Minorities", - "Racial discrimination" - ] - }, - { - "text": "Accelerate the efforts to finalize the adoption of the special system for alimony loans", - "values": [ - "Other" - ] - }, - { - "text": "Take all the necessary measures to ensure that journalists are not subject to violence and reprisals for their work", - "values": [ - "Freedom of the press" - ] - }, - { - "text": "Strengthen the implementation of the Jordanian National Plan of Action for Children 2004-2013", - "values": [ - "Rights of the Child" - ] - }, - { - "text": "Extend and consolidate into a national action plan its measures to combat racism and xenophobia ", - "values": [ - "Racial discrimination" - ] - }, - { - "text": "Continue to strengthen the implementation of laws and policies on freedom of expression and assembly", - "values": [ - "Freedom of association and peaceful assembly", - "Freedom of opinion and expression" - ] - }, - { - "text": "Continue to allocate budgetary priority to public education", - "values": [ - "Right to education" - ] - }, - { - "text": "Take appropriate measures to end de facto and de jure discrimination against all minority groups ", - "values": [ - "Minorities" - ] - }, - { - "text": "Along with the Special Procedures, investigate allegations of the systematic use of torture by British soldiers vis-à-vis detainees outside the country, and inform the results of these investigations to the UN human rights mechanisms, including the Human Rights Committee, Human Rights Council and its mechanisms ", - "values": [ - "Detention", - "Human rights violations by state agents", - "Special procedures", - "Torture and other CID treatment", - "Treaty bodies", - "UPR process" - ] - }, - { - "text": "Develop and implement specific laws, policies and mechanisms that recognize and protect the work of civil society, human rights defenders and journalists", - "values": [ - "Civil society", - "Freedom of the press", - "Human rights defenders" - ] - }, - { - "text": "Develop a comprehensive plan encompassing all camps in order to address the problem of internally displaced persons ", - "values": [ - "Internally displaced persons" - ] - }, - { - "text": "Introduce a complete integration policy for this specific group (referring to Travellers who continue to suffer from discrimination)", - "values": [ - "Minorities", - "Racial discrimination" - ] - }, - { - "text": "Keep encouraging interreligious and inter-ethnic dialogue so that Ethiopia's pluralism of traditions and cultures remains an enriching and valued dimension of the country ", - "values": [ - "Freedom of religion and belief", - "Minorities" - ] - }, - { - "text": "Consider ratifying the Convention on the Protection of the Rights of All Migrant Workers and Members of Their Families ", - "values": [ - "International instruments", - "Labour", - "Migrants" - ] - }, - { - "text": "Intensify efforts to investigate and prosecute those responsible for the recently reported crimes committed against journalists", - "values": [ - "Freedom of the press" - ] - }, - { - "text": "Prioritize education for all ", - "values": [ - "Right to education" - ] - }, - { - "text": "Continue its efforts to ensure the right to food for the citizens", - "values": [ - "Right to food" - ] - }, - { - "text": "Reinforce dialogue in the context of the 13 August 2007 agreements with a view to ensure they are effectively implemented.", - "values": [ - "Elections" - ] - }, - { - "text": "Take all necessary measures to put an end to discrimination against gays, lesbians and transsexuals ", - "values": [ - "Sexual Orientation and Gender Identity" - ] - }, - { - "text": "Pay careful attention to the calls made by the High Commissioner to ensure adequate protection of political opponents, human rights defenders and others who face threats for their work, as well as to seek, through constructive dialogue, solutions that respect the rule of law and constitutional guarantees to all Venezuelans to exercise their fundamental rights", - "values": [ - "Freedom of association and peaceful assembly", - "Human rights defenders" - ] - }, - { - "text": "Continue efforts aimed at the elimination of harmful practices and stereotypes that discriminate against women", - "values": [ - "Women's rights" - ] - }, - { - "text": "Enact legislation to address domestic violence", - "values": [ - "Rights of the Child", - "Women's rights" - ] - }, - { - "text": "Ratify outstanding core human rights instruments, including the ICCPR", - "values": [ - "CP rights - general", - "International instruments" - ] - }, - { - "text": "Ensure that all children living in detention are accorded special protection, including the nutrition, health and educational services necessary for their proper development", - "values": [ - "Detention", - "Rights of the Child" - ] - }, - { - "text": "Continue efforts to improve conditions of detention and abolish the death penalty, with a view to commuting all death sentences", - "values": [ - "Death penalty", - "Detention" - ] - }, - { - "text": "Remove discriminatory media guidelines to provide a more balanced representation of lesbian, gay, bisexual, transgender and intersex persons", - "values": [ - "Sexual Orientation and Gender Identity" - ] - }, - { - "text": "Take measures for the economic growth to be proportional to different parts of the country and to benefit all including in particular minorities", - "values": [ - "Development", - "Minorities" - ] - }, - { - "text": "Ratify/accede to the Rome Statute and implement it fully at the national level, and accede to the Agreement on Privileges and Immunities of the Court ", - "values": [ - "International instruments", - "Justice" - ] - }, - { - "text": "Decriminalize defamation in order to make it a civil offence", - "values": [ - "Freedom of opinion and expression" - ] - }, - { - "text": "Continue its efforts to include human rights issues in the training programmes for military personnel and security personnel", - "values": [ - "Human rights education and training" - ] - }, - { - "text": "Strengthen human rights education with a view of enhancing human rights awareness", - "values": [ - "Human rights education and training" - ] - }, - { - "text": "Take further steps to improve the system of children's rights protection", - "values": [ - "Rights of the Child" - ] - }, - { - "text": "Cooperate with international and regional human rights bodies to improve the situation of freedom of expression and human rights generally in the Gambia", - "values": [ - "Freedom of opinion and expression", - "Technical assistance and cooperation" - ] - }, - { - "text": "Take immediate measures towards the protection and re-settlement of IDPs", - "values": [ - "Internally displaced persons" - ] - }, - { - "text": "Bring the nationality legislation into compliance with the provisions of the 1961 Convention on the Reduction of Statelessness and the Convention on the Rights of the Child", - "values": [ - "International instruments", - "Rights of the Child", - "Statelessness and the right to nationality" - ] - }, - { - "text": "Consider the possibility of implementing free primary education.", - "values": [ - "Right to education" - ] - }, - { - "text": "Introduce a moratorium on the use of the death penalty, with a view to its abolition.", - "values": [ - "Death penalty" - ] - }, - { - "text": "Continue the work to bringing the national legislation in line with the international commitments", - "values": [ - "General" - ] - }, - { - "text": "Continue to strengthen democratic institutions with a clear separation of powers ahead of the coming election cycle", - "values": [ - "Elections" - ] - }, - { - "text": "Continue its efforts with regard to universal primary education and abolishing school fees, including the promotion of the Nine-Year Basic Education programme ", - "values": [ - "Right to education" - ] - }, - { - "text": "Redouble efforts to strengthen its national human rights institution, in accordance with the Paris Principles", - "values": [ - "National Human Rights Institution" - ] - }, - { - "text": "Intensify media campaigns to strengthen efforts aimed at eliminating stereotyped images of men and women in the family and society ", - "values": [ - "Women's rights" - ] - }, - { - "text": "Impose an official moratorium on the death penalty and replace the death penalty with a sentence that is fair and proportionate and respects international human rights standards", - "values": [ - "Death penalty", - "International instruments" - ] - }, - { - "text": "Keep up the fight against human trafficking, illegal recruitment and labour exploitation, including the exploitation of domestic workers, especially of women ", - "values": [ - "Labour", - "Trafficking", - "Women's rights" - ] - }, - { - "text": "Continue working on a national policy and legislation that can guarantee greater equality of opportunity between men and women", - "values": [ - "Women's rights" - ] - }, - { - "text": "Increase the number of women in political and public life in both national and local government bodies and address gender stereotypes that perpetrate discrimination against women ", - "values": [ - "Women's rights" - ] - }, - { - "text": "Continue implementing social programmes to promote equity-based development of the country ", - "values": [ - "Development" - ] - }, - { - "text": "With the support and cooperation of the international community, continue to fight poverty, particularly extreme poverty.", - "values": [ - "Poverty", - "Technical assistance and cooperation" - ] - }, - { - "text": "Adopt measures to address the problems of exploitation and domestic trafficking of children and ensure that all cases of trafficking are subject to proper investigation", - "values": [ - "Rights of the Child", - "Trafficking" - ] - }, - { - "text": "Take measures to combat rules, practices and stereotypes that cause discrimination and violence against lesbian, gay, bisexual and transgender persons, particularly those that are an attack against their dignity and self-determination with respect to their sexual orientation", - "values": [ - "Sexual Orientation and Gender Identity" - ] - }, - { - "text": "Further strengthen efforts towards birth registration for all, with a view to encouraging access to relevant procedures", - "values": [ - "Rights of the Child", - "Statelessness and the right to nationality" - ] - }, - { - "text": "Continue to intensify the national efforts to control the borders and fight against the networks of human trafficking, to fight the activities of terrorist groups in the border areas, and to continue its effective cooperation with neighbouring countries in this field ", - "values": [ - "Technical assistance and cooperation", - "Trafficking" - ] - }, - { - "text": "Continue applying the strategies and plans for the socio-economic development of the country", - "values": [ - "Development" - ] - }, - { - "text": "Favourably consider becoming a party to OP-CEDAW", - "values": [ - "International instruments", - "Women's rights" - ] - }, - { - "text": "Increase the support for the presence of women in the workplace with active policies for the promotion of employment and reconciliation measures that allow for this", - "values": [ - "Labour", - "Women's rights" - ] - }, - { - "text": "Extend a standing invitation to all special procedures of the Council.", - "values": [ - "Special procedures" - ] - }, - { - "text": "Put an end to the widespread use of torture and other cruel, inhuman or degrading treatment as well as to arbitrary and extrajudicial executions ", - "values": [ - "Extrajudicial executions", - "Torture and other CID treatment" - ] - }, - { - "text": "Take measures to withdraw the reservation to article 18 of the International Covenant on Civil and Political Rights", - "values": [ - "Freedom of religion and belief", - "International instruments" - ] - }, - { - "text": "Establish a human rights institution accredited by the International Coordinating Committee ", - "values": [ - "National Human Rights Institution" - ] - }, - { - "text": "Investigate cases of violence against children in closed institutions and prosecute perpetrators", - "values": [ - "Rights of the Child" - ] - }, - { - "text": "Undertake a comprehensive review of its domestic legislation to bring it into line with the international conventions to which it is a party, in order to eradicate any form of discrimination", - "values": [ - "International instruments", - "Racial discrimination" - ] - }, - { - "text": "Take steps to ensure the independence and impartiality of judges and prosecutors, under all circumstances and in all cases, including by remedying the provisional status of the majority of judges and prosecutors", - "values": [ - "Justice" - ] - }, - { - "text": "Take all necessary measures to ensure the improvement of socio-economic conditions of refugees and internally displaced persons.", - "values": [ - "Asylum-seekers - refugees", - "Internally displaced persons" - ] - }, - { - "text": "Consider the establishment of a national human rights institution in accordance with the Paris Principles", - "values": [ - "National Human Rights Institution" - ] - }, - { - "text": "With regard to the international human rights treaties: Consideration of withdrawal of its reservations to Article 5 of the CRC Optional Protocol on the Sale of Children, Child Prostitution and Child Pornography, consideration of accession to a number of ILO Conventions and the Convention against Torture, ratification of the Convention on the Rights of Persons with Disabilities, the Convention against Transnational Organized Crime and the Protocol to Prevent, Suppress and Punish Trafficking in Persons, especially Women and Children", - "values": [ - "International instruments" - ] - }, - { - "text": "Ratify the ICCPR", - "values": [ - "CP rights - general", - "International instruments" - ] - }, - { - "text": "Accede to ICCPR, ICERD and CAT ", - "values": [ - "CP rights - general", - "International instruments", - "Racial discrimination", - "Torture and other CID treatment" - ] - }, - { - "text": "Raise the minimum age of criminal responsibility to an age in accordance with CRC ", - "values": [ - "International instruments", - "Rights of the Child" - ] - }, - { - "text": "Take additional measures to promote equality of access to employment", - "values": [ - "Labour" - ] - }, - { - "text": "Deploy further efforts to prevent and punish grave forms of violence against women, in particular when they result in widespread rape", - "values": [ - "Women's rights" - ] - }, - { - "text": "Take specific measures to eliminate discrimination based on ethnicity in the labour market and education sector", - "values": [ - "Racial discrimination" - ] - }, - { - "text": "Continue to develop and implement a framework that holds companies, particularly those in the extractive sector, accountable for the human rights violations and the environmental degradation caused by their operations", - "values": [ - "Business and human rights", - "Environment" - ] - }, - { - "text": "Take measures against arbitrary or illegal interferences in private life and correspondence", - "values": [ - "Privacy" - ] - }, - { - "text": "Ensure the consistent implementation of Law n° 17 of 2010 and protect journalists from arbitrary arrests on the grounds of defamation offenses", - "values": [ - "Detention", - "Freedom of opinion and expression", - "Freedom of the press" - ] - }, - { - "text": "Place the Council of Justice as a full independent body outside of the control of the executive ", - "values": [ - "Justice" - ] - }, - { - "text": "Pass legislation explicitly defining and prohibiting sexual harassment in the public and private sectors, with protections against retaliation for those who report", - "values": [ - "Women's rights" - ] - }, - { - "text": "Investigate all complaints of harassment and persecution against human rights defenders and non-governmental organizations, and sanction those responsible ", - "values": [ - "Civil society", - "Human rights defenders" - ] - }, - { - "text": "Thoroughly investigate human rights violations perpetrated by all sides after the 2010 presidential elections and fully cooperate with the ICC's investigations ", - "values": [ - "Elections" - ] - }, - { - "text": "Facilitate the visits of the Special Rapporteur on Adequate Housing and on Health, as well as requests for visits by others, including the Special Rapporteur on Freedom of Expression ", - "values": [ - "Freedom of opinion and expression", - "Right to health", - "Right to housing", - "Special procedures" - ] - }, - { - "text": "Continue promoting efforts to support the youth, particularly in the area of education and employment, and set up programmes and suitable mechanisms to encourage their effective participation in the society ", - "values": [ - "Development", - "Right to education" - ] - }, - { - "text": "Consider ratifying the ILO Convention 189 on Decent Work for Domestic Workers ", - "values": [ - "International instruments", - "Labour" - ] - }, - { - "text": "Ensure that the new Constitution fully guarantees, without discrimination, the respect of all human rights enshrined in the international instruments to which Tunisia is a party ", - "values": [ - "International instruments" - ] - }, - { - "text": "Intensify measures aiming at realization of the rights of the child and prevention of violence against children ", - "values": [ - "Rights of the Child" - ] - }, - { - "text": "Consider ratifying the main international human rights instruments not yet ratified", - "values": [ - "International instruments" - ] - }, - { - "text": "Apply alternatives to detention of irregular migrants, in particular for families and children", - "values": [ - "Detention", - "Minorities", - "Rights of the Child" - ] - }, - { - "text": "Fight against trafficking in human beings", - "values": [ - "Trafficking" - ] - }, - { - "text": "Ratify and implement effectively the Optional Protocol to the Convention against Torture and Other Cruel, Inhuman or Degrading Treatment or Punishment (OP-CAT)", - "values": [ - "Detention", - "International instruments", - "Torture and other CID treatment" - ] - }, - { - "text": "End the practice of forced evictions against the Roma population, by amending existing laws and enacting new ones aimed at the protection of this vulnerable group from forced evictions ", - "values": [ - "Minorities", - "Right to housing" - ] - }, - { - "text": "Release all political prisoners including Valery Pal, Gulgeldy Annaniazov, Annakurban Amankylchev, Sapardurdy Khajiev and Mukhetkuli Aymuradov, and account for those prisoners whose fate is unknown", - "values": [ - "Detention", - "Freedom of opinion and expression" - ] - }, - { - "text": "Keep monitoring the application of the 2008 Surveillance Act to prevent interference with the right to privacy and to implement reforms to comply with its obligations under EU law as set out in the International Principles on the Application of Human Rights to Communications Surveillance", - "values": [ - "Privacy" - ] - }, - { - "text": "Accede to and fully align its national legislation with the Rome Statute of the ICC", - "values": [ - "International instruments", - "Justice" - ] - }, - { - "text": "Sign and ratify the Optional Protocol to the Convention on the Rights of Persons with Disabilities ", - "values": [ - "Disabilities", - "International instruments" - ] - }, - { - "text": "Include concrete measures to effectively reduce social and regional inequalities in the context of the next Poverty Reduction Programme (PARP) ", - "values": [ - "Poverty" - ] - }, - { - "text": "Adopt additional measures to provide security staff and penal and judicial personnel with training on human rights, particularly concerning priority areas ", - "values": [ - "Human rights education and training" - ] - }, - { - "text": "Ensure proper representation of minorities in the labour market as per the ratio of minorities.", - "values": [ - "Labour", - "Minorities" - ] - }, - { - "text": "Strengthen the legislation and the national action plan to fight trafficking in persons, in order to end the sexual exploitation of children ", - "values": [ - "Rights of the Child", - "Trafficking" - ] - }, - { - "text": "Continue to work with the international community to address human rights issues set out in the twenty-first UNAMI Interim Human Rights report of 19 August 2014", - "values": [ - "Technical assistance and cooperation" - ] - }, - { - "text": "Consider ratifying the Amendments to the Rome Statute of the International Criminal Court adopted in Kampala, Uganda in 2010", - "values": [ - "International instruments", - "Justice" - ] - }, - { - "text": "Carry out an effective and independent investigation into allegations of torture and ill-treatment as promptly as possible, with a view to bringing to justice those responsible for such acts ", - "values": [ - "Torture and other CID treatment" - ] - }, - { - "text": "Take further steps to ensure equality with respect to all aspects of employment and occupation", - "values": [ - "Labour", - "Women's rights" - ] - }, - { - "text": "Share its experience in the fight against terrorism. ", - "values": [ - "Public security" - ] - }, - { - "text": "That official, individualized documents be presented to human rights defenders whose bans are lifted", - "values": [ - "Human rights defenders" - ] - }, - { - "text": "Pass legislation which qualifies domestic violence and spousal rape as crimes", - "values": [ - "Justice", - "Women's rights" - ] - }, - { - "text": "Consider ratifying major human rights instruments, in particular the International Covenant on Civil and Political Rights and the International Covenant on Economic, Social and Cultural Rights, with a view to strengthen its commitment in promoting and protecting human rights of its citizen", - "values": [ - "CP rights - general", - "ESC rights - general", - "International instruments" - ] - }, - { - "text": "Increase efforts to prosecute offenders of human trafficking, identify and protect trafficking victims, and make efforts to prevent trafficking crimes ", - "values": [ - "Trafficking" - ] - }, - { - "text": "Poland will continue to combat and counteract racism, xenophobia, anti-Semitism and hate crimes. Although these phenomena are not common in Poland, the Government is nevertheless determined to implement a wide catalogue of preventive measures of an institutional, legal and educational nature. Poland will continue implementing and evaluating its Programme for the Roma community, the National Programme against Racial Discrimination, Xenophobia and Related Intolerance 2004-2009, and the law enforcement officer programme for combating hate crimes. Moreover, the existing network of Human Rights Advisers attached to the Police Commander-in-Chief and Voivodship Police Commanders-in-Chief will conduct ongoing monitoring of incidents, trends and crimes related to discrimination and misconduct of law enforcement authorities. They will also make analyses and elaborate proposals on the improvement of the quality and methods of the work of the law enforcement. It is also planned to create the institution of Human Rights Advisers attached to the Border Guard", - "values": [ - "Minorities", - "Racial discrimination" - ] - }, - { - "text": "Abolish corporal punishment in all settings, and strengthen child protection systems in full compliance with international human rights obligations, including through the implementation of national child protection programmes by December 2018 ", - "values": [ - "International instruments", - "Rights of the Child", - "Torture and other CID treatment" - ] - }, - { - "text": "Expedite work on the formulation and implementation of the national plan of action for vulnerable children, which aims at benefitting 1.8 million vulnerable children in Malawi", - "values": [ - "Rights of the Child" - ] - }, - { - "text": "Address corruption and further strengthen the independence of judges in order to improve public confidence in the judicial system", - "values": [ - "Justice" - ] - }, - { - "text": "Continue to commit itself to implementing a poverty reduction strategy and improving maternal and infant care", - "values": [ - "Poverty", - "Right to health", - "Rights of the Child", - "Women's rights" - ] - }, - { - "text": "Promote and advance policies that focus on the alleviation of poverty and the advancement of its entire people, irrespective of race, colour or ethnicity ", - "values": [ - "Poverty" - ] - }, - { - "text": "Take appropriate measures to prevent sexual violence against children and make more efforts to effectively prosecute the sexual exploitation of children", - "values": [ - "Rights of the Child" - ] - }, - { - "text": "Ensure proper and effective investigation of all crimes against women, including those with an "honour" element", - "values": [ - "Women's rights" - ] - }, - { - "text": "Strengthen its efforts to combat human trafficking and provide support services to victims, particularly for women and children and Roma people ", - "values": [ - "Minorities", - "Rights of the Child", - "Trafficking", - "Women's rights" - ] - }, - { - "text": "Withdraw reservations made upon the ratification of the CRPD ", - "values": [ - "Disabilities", - "International instruments" - ] - }, - { - "text": "Take further steps to ensure more participation of Sri Lankan Muslims in the reconciliation process and national efforts of economic, social, and cultural integration", - "values": [ - "ESC rights - general", - "Freedom of religion and belief", - "Minorities" - ] - }, - { - "text": "Adopt legal provisions to define cases of enforced disappearance as a criminal offence in the national law, fully investigate cases of enforced disappearance and bring to justice those responsible", - "values": [ - "Enforced disappearances" - ] - }, - { - "text": "Strengthen all necessary measures to effectively prohibit and prevent incitement to hatred and racist propaganda, particularly on the Internet, including by ensuring awareness of the problem at the federal and Länder levels", - "values": [ - "Human rights education and training", - "Racial discrimination" - ] - }, - { - "text": "Promptly create the independent national human rights institution in accordance with the Paris Principles and provide it with the necessary budget and resources ", - "values": [ - "National Human Rights Institution" - ] - }, - { - "text": "Continue efforts to ensure that all children enrol in elementary school and to consider the necessary measures to reach out to children deprived of an education", - "values": [ - "Right to education", - "Rights of the Child" - ] - }, - { - "text": "Abolish the death penalty for those under 18", - "values": [ - "Death penalty", - "Rights of the Child" - ] - }, - { - "text": "Avoid the intimidation and harassment of human rights defenders, journalists and civil society organizations, lifting the restrictions imposed on them and allowing them to freely exercise their rights to freedom of expression, association and assembly", - "values": [ - "Civil society", - "Freedom of association and peaceful assembly", - "Freedom of opinion and expression", - "Freedom of the press", - "Human rights defenders" - ] - }, - { - "text": "Accredit the Ombudsman to ensure its conformity with the Paris Principles ", - "values": [ - "National Human Rights Institution" - ] - }, - { - "text": "Continue its national efforts, with the support and assistance of the international community, in the promotion and protection of human rights particularly in the realization of economic, social and cultural rights of the people of Guinea", - "values": [ - "ESC rights - general", - "Technical assistance and cooperation" - ] - }, - { - "text": "Investigate and prosecute members of the security forces implicated in recent serious human rights violations, in accordance with international fair trial standards", - "values": [ - "Human rights violations by state agents", - "Justice" - ] - }, - { - "text": "Step up efforts aimed at capacity-building and increasing awareness of human rights in Yemen.", - "values": [ - "Human rights education and training" - ] - }, - { - "text": "Extend the \u201cWomen Living without Violence\u201c programme, with particular attention to women and girls living in the countryside and to women and girls of Afro-Brazilian descent", - "values": [ - "Minorities", - "Women's rights" - ] - }, - { - "text": "Undertake comprehensive reporting and statistical analysis of the scale and character of violence against women and children to determine if Norway's Action Plan to Combat Domestic Violence 2008-2011 is curbing the severity of the phenomenon ", - "values": [ - "Rights of the Child", - "Women's rights" - ] - }, - { - "text": "Consider withdrawing its reservations to articles 17, 29 and 30 of the Convention on the Rights of the Child", - "values": [ - "International instruments", - "Rights of the Child" - ] - }, - { - "text": "Continue its efforts to develop a national policy for human rights and to finalize the establishment of an independent national human rights institution in accordance with the Paris Principles", - "values": [ - "National Human Rights Institution" - ] - }, - { - "text": "Consider ratifying other key treaties, particularly the International Covenant on Civil and Political Rights and the International Covenant on Economic, Social and Cultural Rights.", - "values": [ - "CP rights - general", - "ESC rights - general", - "International instruments" - ] - }, - { - "text": "Continue to implement the policies aimed at guaranteeing the best interests of children and adolescents, and to consider the establishment of a children's ombudsman in that context", - "values": [ - "National Human Rights Institution", - "Rights of the Child" - ] - }, - { - "text": "Decriminalize same-sex relationships between consenting adults", - "values": [ - "Sexual Orientation and Gender Identity" - ] - }, - { - "text": "Take deterrent measures to combat discrimination against women, girls and religious minorities and work towards eliminating poverty among those groups", - "values": [ - "Freedom of religion and belief", - "Minorities", - "Poverty", - "Rights of the Child" - ] - }, - { - "text": "Encourage putting in place a broader social safety net designed to cover all segments of society, notably persons working in the informal sectors as well as vulnerable persons", - "values": [ - "ESC rights - general" - ] - }, - { - "text": "Continue to strengthen measures to effectively reduce discrimination and all forms of violence against women", - "values": [ - "Women's rights" - ] - }, - { - "text": "Carry on with measures to ensure the effective and impartial enforcement of the laws and to end impunity in cases of domestic violence ", - "values": [ - "Impunity", - "Rights of the Child", - "Women's rights" - ] - }, - { - "text": "Establish a systematic consultation and follow-up mechanism with civil society and non-governmental organizations on the implementation of recommendations formulated in the framework of the universal periodic review", - "values": [ - "Civil society", - "UPR process" - ] - }, - { - "text": "Invest adequate financial and manpower resources to improve its prison conditions, to the level required by its human rights obligations ", - "values": [ - "Detention" - ] - }, - { - "text": "Ratify-accede to the Rome Statute of the ICC ", - "values": [ - "International instruments", - "Justice" - ] - }, - { - "text": "Develop and implement policy to address child mortality, malnutrition, health, education and access to sanitation, of indigenous people", - "values": [ - "Indigenous peoples", - "Right to education", - "Right to food", - "Right to health", - "Right to water and sanitation", - "Rights of the Child" - ] - }, - { - "text": "Adopt appropriate measures to abolish the death penalty", - "values": [ - "Death penalty" - ] - }, - { - "text": "Continue its measures in the prevention and repression of violence against women through effective implementation of the existing domestic legislation and awareness-raising campaigns and programmes", - "values": [ - "Human rights education and training", - "Women's rights" - ] - }, - { - "text": "Take measures towards ensuring the equal and full enjoyment of human rights of women and to combat ethnic discrimination ", - "values": [ - "Racial discrimination", - "Women's rights" - ] - }, - { - "text": "Continue its efforts for the full implementation of international human rights instruments to which it is a party.", - "values": [ - "International instruments" - ] - }, - { - "text": "That the engagement with NGOs and civil society should be continued during the implementation of the second cycle accepted recommendations where appropriate ", - "values": [ - "Civil society", - "UPR process" - ] - }, - { - "text": "Publicly condemn hate crimes and hate speech, and ensure the investigation, prosecution and punishment of discrimination or violence motivated by the victim\u2019s national, ethnic or religious identity", - "values": [ - "Freedom of religion and belief", - "Racial discrimination" - ] - }, - { - "text": "Incorporate international human rights instruments to which it is party into its legal system, as recommended by the various treaty monitoring bodies ", - "values": [ - "International instruments", - "Treaty bodies" - ] - }, - { - "text": "Consider ratification of the Second Optional Protocol to the International Covenant on Civil and Political Rights with a view to abolish the death penalty", - "values": [ - "Death penalty", - "International instruments" - ] - }, - { - "text": "Continue to combat racist and xenophobic attitudes ", - "values": [ - "Racial discrimination" - ] - }, - { - "text": "Address concerns regarding the promotion and protection of human rights expressed by the Human Rights Council in its resolutions ", - "values": [ - "General" - ] - }, - { - "text": "Further implement concrete measures and policies to combat trafficking of children and child labour in the country", - "values": [ - "Labour", - "Rights of the Child", - "Trafficking" - ] - }, - { - "text": "Establish a moratorium on the death penalty and take measures towards its definitive abolition", - "values": [ - "Death penalty" - ] - }, - { - "text": "Carry out education and awareness raising campaigns to inform parents and other actors of non-violent methods of disciplining and educating children (and the right of children to protection) ", - "values": [ - "Rights of the Child", - "Torture and other CID treatment" - ] - }, - { - "text": "Continue to improve the laws dealing with freedom of expression, in particular freedom of the Internet, the media, elections and political parties, and bringing them into full compliance with international standards", - "values": [ - "Elections", - "Freedom of association and peaceful assembly", - "Freedom of opinion and expression", - "Freedom of the press" - ] - }, - { - "text": "Protect the natural family and marriage, formed by a husband and a wife, as a basic cell of society as it provides the best conditions for raising children ", - "values": [ - "Other" - ] - }, - { - "text": "Recommended ensuring that any reformed prison or compulsory care system meets international human rights standards", - "values": [ - "Detention", - "International instruments" - ] - }, - { - "text": "In the area of penitentiary reform, continue making efforts to implement the new social rehabilitation system, to build new prisons as well as to train the security and penitentiary personnel working in the prison centres, which would result in the well-fare of persons deprived of their liberty ", - "values": [ - "Detention" - ] - }, - { - "text": "Strengthen the status of women, protect motherhood and provide support to the family, which is the nucleus of society ", - "values": [ - "Women's rights" - ] - }, - { - "text": "Consider granting the right to work, to asylum seekers who have been in the country for more than six months ", - "values": [ - "Asylum-seekers - refugees", - "Labour" - ] - }, - { - "text": "Provide human rights training to judges, police officers, prison guards and all law enforcement officers ", - "values": [ - "Human rights education and training" - ] - }, - { - "text": "Strengthen efforts aimed at achieving the Sustainable Development Goals", - "values": [ - "Development" - ] - }, - { - "text": "Ratify the Council of Europe Convention on Preventing and Combating Violence against Women and Domestic Violence, also known as the Istanbul Convention, which it signed on 8 September 2011", - "values": [ - "International instruments", - "Women's rights" - ] - }, - { - "text": "Take additional measures for the protection of women and children", - "values": [ - "Rights of the Child", - "Women's rights" - ] - }, - { - "text": "Identify the factors of racial disparity in the use of the death penalty and develop strategies to end possible discriminatory practices", - "values": [ - "Death penalty", - "Racial discrimination" - ] - }, - { - "text": "Take all necessary measures for the protection of journalists and human rights defenders, in particular through the prosecution of the authors of intimidation or violence against them, and by ensuring the independence of their actions ", - "values": [ - "Freedom of the press", - "Human rights defenders" - ] - }, - { - "text": "Reconsider the need to maintain the current state of emergency, given its implications for human rights, with a view to lifting it as soon as possible, and to ensure that as long as it is still in force, all human rights and fundamental freedoms that cannot be derogated under international law are respected", - "values": [ - "Justice" - ] - }, - { - "text": "Continue to prioritize safeguarding media freedom", - "values": [ - "Freedom of the press" - ] - }, - { - "text": "Continue pursuing efficient educational policies to ensure a better future for its children", - "values": [ - "Right to education" - ] - }, - { - "text": "Implement the regulations recently adopted with regard to property rights, and ensure that they are fully implemented by the competent judicial bodies ", - "values": [ - "Right to housing" - ] - }, - { - "text": "Introduce a moratorium on executions with a view to fully abolishing the death penalty", - "values": [ - "Death penalty" - ] - }, - { - "text": "Address the issue of gender-based violence in a comprehensive manner", - "values": [ - "Women's rights" - ] - }, - { - "text": "Examine the possibility of ratifying OP-CAT and the Rome Statute", - "values": [ - "Detention", - "International instruments", - "Justice", - "Torture and other CID treatment" - ] - }, - { - "text": "Accelerate the progress of the Third National Action Plan for Human Rights, with the full participation of all stakeholders", - "values": [ - "General" - ] - }, - { - "text": "Continue its successful policy in combating trafficking in human beings at the national level and to play a leading role at the international level on this matter.", - "values": [ - "Trafficking" - ] - }, - { - "text": "Adopt a new set of criteria for defining disability in accordance with international standards ", - "values": [ - "Disabilities" - ] - }, - { - "text": "Enact comprehensive legislation that fully guarantees the application of the principle of non-discrimination and ensure the full enjoyment of all human rights by every member of society", - "values": [ - "Other" - ] - }, - { - "text": "Adopt a clear and comprehensive definition of racial discrimination, in full compliance with CERD recommendations", - "values": [ - "Racial discrimination", - "Treaty bodies" - ] - }, - { - "text": "Take measures to address stereotypical attitudes towards the Roma community and to promote access to education, health and employment for the Roma community", - "values": [ - "Minorities" - ] - }, - { - "text": "That any changes in legislation uphold fundamental freedoms and ensure non-discrimination, including on the basis of religion or sexual orientation", - "values": [ - "Freedom of religion and belief", - "Racial discrimination", - "Sexual Orientation and Gender Identity" - ] - }, - { - "text": "Continue to apply measures to guarantee the implementation of CRPD", - "values": [ - "Disabilities", - "International instruments" - ] - }, - { - "text": "Continue efforts to improve quality education and ensure access to education in all areas of the country ", - "values": [ - "Right to education" - ] - }, - { - "text": "Incorporate the Guiding Principles on Business and Human Rights into the National Human Rights Plan in order to grant adequate protection of workers", - "values": [ - "Business and human rights" - ] - }, - { - "text": "Take necessary measures to avoid the stigmatization of migrants and minorities, and to ensure that they are not subject to any practice of racism, racial discrimination, xenophobia and other forms of related intolerance ", - "values": [ - "Migrants", - "Minorities", - "Racial discrimination" - ] - }, - { - "text": "Enhance efforts to protect the rights of the child and establish a system of juvenile justice in compliance with international standards", - "values": [ - "Justice", - "Rights of the Child" - ] - }, - { - "text": "Establish without delay a national mechanism to prevent torture, such as provided for by the OP-CAT ", - "values": [ - "Detention", - "International instruments", - "Torture and other CID treatment" - ] - }, - { - "text": "Ensure that policies, legislation, regulations and enforcement measures effectively serve to prevent and address the heightened risk of business involvement in abuses in conflict situations, which includes situations of foreign occupation", - "values": [ - "Business and human rights" - ] - }, - { - "text": "That the minority communities be included in the process of constitution-making and the formulation of the Electoral Code, in order to take into account their wishes and aspirations ", - "values": [ - "Elections", - "Minorities" - ] - }, - { - "text": "Adopt and implement public policies to protect peoples with disabilities and guarantee their equal access to decent housing, employment and health ", - "values": [ - "Disabilities" - ] - }, - { - "text": "Allow political parties and the media to operate freely - ensure an impartial review of irregularities and formal electoral complaints stemming from the November 29 elections - and establish a representative independent body to review the country's election framework and ensure the legitimacy of the democratic process ", - "values": [ - "Elections", - "Freedom of association and peaceful assembly", - "Freedom of the press" - ] - }, - { - "text": "Take the necessary measures to protect freedom of expression and press freedom, including through the Internet ", - "values": [ - "Freedom of opinion and expression", - "Freedom of the press" - ] - }, - { - "text": "Maintain the respect for the independence of Uruguay's National Human Rights Institution and Ombudsman's Office during the reporting process ", - "values": [ - "National Human Rights Institution" - ] - }, - { - "text": "Continue to further promote women's participation in all aspects of public life and especially in political life", - "values": [ - "Women's rights" - ] - }, - { - "text": "Continue with the efforts of introducing freedom of information through ordinary legislation as a matter of priority ", - "values": [ - "Freedom of opinion and expression" - ] - }, - { - "text": "Take measures towards complete abolition of the death penalty ", - "values": [ - "Death penalty" - ] - }, - { - "text": "Implement the provisions of the previously accepted recommendation to increase official development assistance to 0.7 per cent of its national income", - "values": [ - "Development" - ] - }, - { - "text": "Consider ratifying International Convention on the Protection of the Rights of All Migrant Workers and Their Families", - "values": [ - "International instruments", - "Labour", - "Migrants" - ] - }, - { - "text": "Continue to ensure the full implementation of legislation on the eradication of the harmful practice of female genital mutilation", - "values": [ - "Rights of the Child", - "Torture and other CID treatment", - "Women's rights" - ] - }, - { - "text": "Dismantle the system of male guardianship and allow women to freely travel, work, study, marry and access health care and other public services", - "values": [ - "Women's rights" - ] - }, - { - "text": "Take additional measures to reduce the gender wage gap and further improve the integration of women in employment through measures such as the creation of more childcare facilities and educational facilities for working mothers ", - "values": [ - "Women's rights" - ] - }, - { - "text": "Take measures to ensure free and compulsory primary education", - "values": [ - "Right to education" - ] - }, - { - "text": "Undertake new actions to put an end to violence against women and girls and do its utmost to eliminate discriminatory practices ", - "values": [ - "Rights of the Child", - "Women's rights" - ] - }, - { - "text": "Continue to put more resources in education to reduce overcrowding in classrooms ", - "values": [ - "Right to education" - ] - }, - { - "text": "Continue to reinforce its efforts towards attaining quality education at all levels", - "values": [ - "Right to education" - ] - }, - { - "text": "Develop a programme to effectively improve the situation of persons in deprivation of liberty, including measures that would lead to a reduction of the mortality rates among prisoners", - "values": [ - "Detention" - ] - }, - { - "text": "Ensure that allegations of arbitrary arrest, detention and torture are investigated promptly and thoroughly with suspected perpetrators brought to justice", - "values": [ - "Detention", - "Torture and other CID treatment" - ] - }, - { - "text": "Continue efforts to implement the national legislation against the smuggling of migrants, human trafficking and the protection of victims ", - "values": [ - "Migrants", - "Trafficking" - ] - }, - { - "text": "Better protect human rights defenders, in particular in rural areas, and foster dialogue between the Government and human rights organizations, using if necessary the mediation of the local OHCHR office.", - "values": [ - "Human rights defenders" - ] - }, - { - "text": "Deploy necessary human, legal and financial measures in order to effectively implement the recommendations issued by the United Nations treaty bodies", - "values": [ - "Treaty bodies" - ] - }, - { - "text": "Allow visits of ICRC to address issues regarding humanitarian assistance, internally displaced persons and persons deprived of their freedom ", - "values": [ - "Freedom of movement", - "Internally displaced persons" - ] - }, - { - "text": "Strengthen the capacity and improve the effectiveness of the national Ombudsman, ensuring full adherence to the Paris Principles", - "values": [ - "National Human Rights Institution" - ] - }, - { - "text": "Continue its efforts in strengthening moderation and religious tolerance, particularly through the education sector", - "values": [ - "Freedom of religion and belief" - ] - }, - { - "text": "Continue to be on track to achieve the Millennium Development Goals", - "values": [ - "Development" - ] - }, - { - "text": "Adopt a legal definition of discrimination against women according to the Convention on the Elimination of All Forms of Discrimination against Women", - "values": [ - "International instruments", - "Women's rights" - ] - }, - { - "text": "Protect and guarantee respect for freedom of information and expression, particularly for journalists, bloggers and human rights defenders, and undertake a review of legislation governing the press to ensure its compliance with international standards ", - "values": [ - "Freedom of opinion and expression", - "Freedom of the press", - "Human rights defenders" - ] - }, - { - "text": "Reduce the high rate of maternal mortality and improve access to maternal health information and services", - "values": [ - "Right to health", - "Women's rights" - ] - }, - { - "text": "Ratify the 1961 Convention on the Reduction of Statelessness ", - "values": [ - "International instruments", - "Statelessness and the right to nationality" - ] - }, - { - "text": "Officially abolish the death penalty still contained in the Penal Code of 2010 and to accede to the Second Optional Protocol to the ICCPR", - "values": [ - "Death penalty", - "International instruments" - ] - }, - { - "text": "Analyse the possibility of creating a follow-up system to the international recommendations", - "values": [ - "Special procedures", - "Treaty bodies", - "UPR process" - ] - }, - { - "text": "Put the law on polygamy in effect.", - "values": [ - "Women's rights" - ] - }, - { - "text": "Adopt plans and programmes to eliminate torture and other forms of inhumane treatment and such education should be provided to prison authorities and wardens", - "values": [ - "Detention", - "Torture and other CID treatment" - ] - }, - { - "text": "Ensure an enabling environment for the activities of human rights defenders, journalists and other stakeholders of civil society", - "values": [ - "Civil society", - "Freedom of the press", - "Human rights defenders" - ] - }, - { - "text": "Meet regularly with civil society organizations involved in human rights activities as partners in the promotion of these rights.", - "values": [ - "Civil society" - ] - }, - { - "text": "Share with other Member States its experiences and best practices in achieving almost all targets of the Millennium Development Goals and eradicating extreme poverty ", - "values": [ - "Development", - "Poverty" - ] - }, - { - "text": "Consider ratification of those international instruments to which it is not yet a party ", - "values": [ - "International instruments" - ] - }, - { - "text": "Continue its efforts to ratify the Convention against Torture", - "values": [ - "International instruments", - "Torture and other CID treatment" - ] - }, - { - "text": "Promote citizen and community participation in poverty alleviation programs currently being developed", - "values": [ - "Poverty" - ] - }, - { - "text": "Put an end to harmful practices such as early and forced marriage and genital mutilation, in line with the 2030 Agenda for Sustainable Development", - "values": [ - "Rights of the Child", - "Torture and other CID treatment", - "Women's rights" - ] - }, - { - "text": "Approve the plan of action 2011-2013 against torture and ill-treatment in the context of comprehensive measures to combat torture", - "values": [ - "Torture and other CID treatment" - ] - }, - { - "text": "Further address all forms of gender-based violence, including the issue of incorporating the definition of gender-based violence in the National Programme for the Prevention of Domestic Violence and Provision of Assistance to Victims for 2014-2020", - "values": [ - "Rights of the Child", - "Women's rights" - ] - }, - { - "text": "Continue to work with UNAMI and the international community to address human rights recommendations set out in the 1 January - 30 June 2009 UNAMI Human Rights report", - "values": [ - "Other" - ] - }, - { - "text": "Consider intensifying its efforts towards the improvement of its legislature, in accordance with its own priorities and national capabilities, while taking into consideration pertinent international human rights obligations", - "values": [ - "International instruments", - "Justice" - ] - }, - { - "text": "Amend the Law on Public Association to ensure consistency with international human rights norms", - "values": [ - "Freedom of association and peaceful assembly", - "International instruments" - ] - }, - { - "text": "Find a solution to improve the treatment of refugees in transit zones at airports and in migrant camps", - "values": [ - "Asylum-seekers - refugees" - ] - }, - { - "text": "Continue to prioritise investigation and prosecution of cases where persons with albinism are the victims", - "values": [ - "Minorities" - ] - }, - { - "text": "Thoroughly investigate all instances of the persecution of lawyers, members of the judiciary, human rights defenders, and journalists, for legitimate activities in the defence of human rights as well as lift restrictions within national legislation or practice that limit NGO registration and activity", - "values": [ - "Civil society", - "Freedom of association and peaceful assembly", - "Freedom of the press", - "Human rights defenders", - "Justice" - ] - }, - { - "text": "Ratify CRPD, CRPD-OP and CED as soon as possible", - "values": [ - "Disabilities", - "Enforced disappearances", - "International instruments" - ] - }, - { - "text": "Address the problem of low participation of women in the political life and in the decision-making bodies, in particular through the consideration of affirmative measures ", - "values": [ - "Women's rights" - ] - }, - { - "text": "Pursue its efforts towards the establishment of a stable political environment and the implementation of the provisions of the Ouagadougou Agreement ", - "values": [ - "Public security" - ] - }, - { - "text": "Ban organizations that incite hatred, racism, racial discrimination and xenophobia", - "values": [ - "Racial discrimination" - ] - }, - { - "text": "Continue its work in the health area in support of its entire population ", - "values": [ - "Right to health" - ] - }, - { - "text": "Release or bring before a court all persons detained without a charge and respect international standards in the treatment of detainees ", - "values": [ - "Detention" - ] - }, - { - "text": "Take measures to strengthen human rights education and sensitisation", - "values": [ - "Human rights education and training" - ] - }, - { - "text": "Withdraw reservations to Articles 2 and 16 (1) (c) of CEDAW", - "values": [ - "International instruments", - "Women's rights" - ] - }, - { - "text": "Make public the findings and implement the recommendations of the Subcommittee on Prevention of Torture and Other Cruel, Inhuman or Degrading Treatment or Punishment arising from its visit to the country in 2015", - "values": [ - "International instruments", - "Torture and other CID treatment" - ] - }, - { - "text": "Take measures to raise awareness of the police, other authorities, and the general public about gender-based violence against women and girls, as well as women's rights ", - "values": [ - "Human rights education and training", - "Rights of the Child", - "Women's rights" - ] - }, - { - "text": "Continue enhancing the legal protection of freedom of religion and belief, aiming at gradually allowing the public practice of all faiths and beliefs", - "values": [ - "Freedom of religion and belief" - ] - }, - { - "text": "Criminalize the recruitment and participation of children in armed forces and non-State armed groups", - "values": [ - "International humanitarian law", - "Rights of the Child" - ] - }, - { - "text": "Consider declaring an official moratorium on executions and organize a referendum on the death penalty, following the approval by Cabinet granting its abolition in 2014", - "values": [ - "Death penalty" - ] - }, - { - "text": "Re-establish a moratorium to executions, with a view to the final abolition of the death penalty, and ratify the Second Optional Protocol to ICCPR ", - "values": [ - "Death penalty", - "International instruments" - ] - }, - { - "text": "Ratify the Convention against Torture and Other Cruel, Inhuman or Degrading Treatment or Punishment and its Optional Protocol", - "values": [ - "Detention", - "International instruments", - "Torture and other CID treatment" - ] - }, - { - "text": "Further the efforts of some local governments and private firms to eliminate discrimination based on sexual orientation and gender identity, including by extending at the national level formal recognition of same-sex partnerships", - "values": [ - "Sexual Orientation and Gender Identity" - ] - }, - { - "text": "Implement measures to prevent violence, persecution and discrimination on the basis of religion and, in particular, prevent the misuse of the blasphemy laws by requiring all cases to undergo prior judicial review before charges may proceed", - "values": [ - "Freedom of opinion and expression", - "Freedom of religion and belief", - "Racial discrimination" - ] - }, - { - "text": "Adopt a national gender equality policy which would consolidate the variety of pending plans and policies on the subject", - "values": [ - "Women's rights" - ] - }, - { - "text": "Recognize explicitly the legitimacy of the work of human rights defenders and ensure for them a safe environment without fear of intimidation or reprisals, investigate threats or attacks against them and bring those responsible to justice", - "values": [ - "Human rights defenders" - ] - }, - { - "text": "Keep on its effort on health services policy and promoting the employment of youth", - "values": [ - "Development", - "Right to health", - "Rights of the Child" - ] - }, - { - "text": "Submit the reports due to treaty bodies and communicate its needs in terms of technical assistance for this purpose to the competent organs of the United Nations ", - "values": [ - "Technical assistance and cooperation", - "Treaty bodies" - ] - }, - { - "text": "Continue to create conducive environment for the enjoyment of freedom of religion and belief including through introduction of further measures for promoting equal rights and social harmony among followers of different religions", - "values": [ - "Freedom of religion and belief" - ] - }, - { - "text": "Ensure registration at birth of all children, including non-Khmer citizens born in Cambodia", - "values": [ - "Rights of the Child", - "Statelessness and the right to nationality" - ] - }, - { - "text": "Ensure strict compliance with legal provisions pertaining to the minimum age for marriage, and also prevent and investigate cases of forced marriage, bringing perpetrators to justice and guaranteeing assistance to victims", - "values": [ - "Rights of the Child", - "Women's rights" - ] - }, - { - "text": "Complete the procedures related to the establishment of the independent regulatory authority for the broadcast media", - "values": [ - "Freedom of the press" - ] - }, - { - "text": "Continue efforts to guarantee the rights of children, including the ratification and implementation of the optional protocols to the Convention on the Rights of the Child, which Liberia has signed", - "values": [ - "International humanitarian law", - "International instruments", - "Labour", - "Rights of the Child", - "Trafficking" - ] - }, - { - "text": "Intensify programmes aimed at eradicating poverty and improving socio-economic indicators", - "values": [ - "Poverty" - ] - }, - { - "text": "Demonstrate its commitment to freedom of expression, including by members of the press, by allowing the United Nations unfettered access to complete its investigation of the death of journalist Deyda Hydara in 2004 and the disappearance of journalist Ebrima Manneh in 2006", - "values": [ - "Enforced disappearances", - "Extrajudicial executions", - "Freedom of opinion and expression", - "Freedom of the press" - ] - }, - { - "text": "Continue its efforts to improve the conditions of detention and consider the possibility of adopting alternative measures to detention in order to reduce overcrowding in prisons", - "values": [ - "Detention" - ] - }, - { - "text": "Provide possibilities for the teaching of minorities languages ", - "values": [ - "Minorities", - "Right to education" - ] - }, - { - "text": "Establish, within a clear time frame, an independent national human rights institution, in accordance with the Paris Principles and ensure that its mandate covers women\u2019s rights and gender equality", - "values": [ - "National Human Rights Institution", - "Women's rights" - ] - }, - { - "text": "Raise the age of criminal responsibility to 18 years as recommended by the Committee on the Rights of the Child", - "values": [ - "Justice", - "Rights of the Child", - "Treaty bodies" - ] - }, - { - "text": "Mozambique also renews its commitment and desire to improve the mechanisms for the electoral participation of citizens and political parties, spreading knowledge of human rights in general, which are the basis of its constitution, through the strengthening of state institutions and encouraging the participation of civil society (NGOs, media, etc), as a means of promoting and protecting human rights ", - "values": [ - "Civil society", - "Elections", - "Freedom of the press" - ] - }, - { - "text": "Continue efforts to combat violence against women while promoting gender equality, including carrying out awareness-raising programmes to raise the consciousness of public opinion", - "values": [ - "Human rights education and training", - "Women's rights" - ] - }, - { - "text": "Issue a standing invitation to all United Nations human rights special procedures", - "values": [ - "Special procedures" - ] - }, - { - "text": "Ratify pending core international human rights instruments, notably the Convention against Torture and Other Cruel, Inhuman or Degrading Treatment or Punishment, and the International Convention on the Elimination of All Forms of Racial Discrimination, as well as the Rome Statute of the International Criminal Court, including accession to the Agreement on\nPrivileges and Immunities \n", - "values": [ - "International instruments", - "Justice", - "Racial discrimination", - "Torture and other CID treatment" - ] - }, - { - "text": "Put an end to recruitment and use of child soldiers", - "values": [ - "International humanitarian law", - "Rights of the Child" - ] - }, - { - "text": "Step up all sorts of measures to end the recruitment and use of children under 18, free those children currently recruited and fully cooperate with the agencies in the field in the demobilization and reintegration of child soldiers", - "values": [ - "International humanitarian law", - "Rights of the Child" - ] - }, - { - "text": "Consider the possibility of expressing its consent to be bound by the ICRMW", - "values": [ - "International instruments", - "Labour", - "Migrants" - ] - }, - { - "text": "Bring juvenile justice into conformity with the Convention on the Rights of the Child", - "values": [ - "International instruments", - "Justice", - "Rights of the Child" - ] - }, - { - "text": "Adhere to the Optional Protocol to the Convention against Torture and Other Cruel, Inhuman or Degrading Treatment or Punishment, at the earliest", - "values": [ - "Detention", - "International instruments", - "Torture and other CID treatment" - ] - }, - { - "text": "Further continue the existing cooperation with the United Nations human rights mechanisms ", - "values": [ - "Special procedures", - "Treaty bodies", - "UPR process" - ] - }, - { - "text": "Strengthen efforts to ensure that children and adolescents throughout the country enjoy equal access to social rights", - "values": [ - "ESC rights - general", - "Rights of the Child" - ] - }, - { - "text": "Increase awareness regarding disability rights, and make all appropriate accommodations for disabled voters ", - "values": [ - "Disabilities", - "Human rights education and training" - ] - }, - { - "text": "Update the national action plan and initiate further concrete measures to stimulate tolerance and prevent discrimination and xenophobia, and especially taking into account the situation of the Roma and the Sinti", - "values": [ - "Minorities", - "Racial discrimination" - ] - }, - { - "text": "Continue to promote the rights of women in their choice of marriage and their equality of treatment independently of caste and tribe or other considerations ", - "values": [ - "Women's rights" - ] - }, - { - "text": "Continue its efforts to conform the Senegalese Committee for Human Rights to the Paris Principles", - "values": [ - "National Human Rights Institution" - ] - }, - { - "text": "Continue with the ratification of international treaties as they deem appropriate", - "values": [ - "International instruments" - ] - }, - { - "text": "Continue to reinforce the measures of fight against xenophobia, racism and intolerance with regard to migrants and asylum seekers", - "values": [ - "Asylum-seekers - refugees", - "Migrants", - "Racial discrimination" - ] - }, - { - "text": "As pledged in the national report, envisage signing and ratifying the Convention on the Reduction of Statelessness and the International Convention for the protection of All Persons From Enforced Disappearance ", - "values": [ - "Enforced disappearances", - "International instruments", - "Statelessness and the right to nationality" - ] - }, - { - "text": "Address gender inequality, protect the rights of women, improve their social status and effectively combat violence against women", - "values": [ - "Women's rights" - ] - }, - { - "text": "Restore, as soon as possible, the constitutional order by organizing elections", - "values": [ - "Elections" - ] - }, - { - "text": "Create a national mechanism to prevent torture in conformity with OPCAT", - "values": [ - "Detention", - "International instruments", - "Torture and other CID treatment" - ] - }, - { - "text": "Continue efforts to strengthen human rights education in school curricula ", - "values": [ - "Human rights education and training" - ] - }, - { - "text": "Take into serious consideration the possibility to introduce a de facto moratorium on the death penalty with a view to its abolition", - "values": [ - "Death penalty" - ] - }, - { - "text": "Adopt targeted policies to promote the effective equality of people of African descent", - "values": [ - "Minorities" - ] - }, - { - "text": "Continue to ensure strong legislative protection for children, including by increasing the minimum age of marriage to 18", - "values": [ - "Rights of the Child" - ] - }, - { - "text": "Take immediate and all necessary steps to modernize its data and communication processes within its judicial branch ", - "values": [ - "Justice" - ] - }, - { - "text": "Adopt measures to end prosecution of peaceful protesters ", - "values": [ - "Freedom of association and peaceful assembly" - ] - }, - { - "text": "Continue its positive engagement with neighbouring countries in combating trafficking in persons and explore further ways and means aimed at improving and enhancing protection of victims of domestic violence", - "values": [ - "Rights of the Child", - "Trafficking", - "Women's rights" - ] - }, - { - "text": "Take all necessary measures, including legislative and administrative, to prohibit and eliminate all discriminatory treatment based on sexual orientation ", - "values": [ - "Sexual Orientation and Gender Identity" - ] - }, - { - "text": "Consider new measures to increase respect for the rights of persons with disabilities and continue to strengthen its efforts to ratify the Convention on the Rights of Persons with Disabilities ", - "values": [ - "Disabilities", - "International instruments" - ] - }, - { - "text": "Ratify the core international human rights instruments", - "values": [ - "International instruments" - ] - }, - { - "text": "Accede to/ratify OP-CAT ", - "values": [ - "Detention", - "International instruments", - "Torture and other CID treatment" - ] - }, - { - "text": "Abolish definitively the death penalty and ratify the Second Optional Protocol to the International Covenant on Civil and Political Rights ", - "values": [ - "Death penalty", - "International instruments" - ] - }, - { - "text": "Continue addressing irregular migration as a matter of priority, reinforcing further its efforts, such as the recently adopted National Action Plan for Migration Management ", - "values": [ - "Migrants" - ] - }, - { - "text": "Request cooperation and technical assistance from the international community, including from relevant international bodies, with a view to strengthening national capacities to ratify and implement international conventions to which it is not yet a party, as well as submit pending reports to the human rights treaty bodies ", - "values": [ - "Technical assistance and cooperation", - "Treaty bodies" - ] - }, - { - "text": "Take actions to lessen the economic and social effects which have been the outcome of the Ebola epidemic", - "values": [ - "ESC rights - general", - "Right to health" - ] - }, - { - "text": "Strengthen the capacity of law enforcement personnel ", - "values": [ - "Justice" - ] - }, - { - "text": "Adopt measures to ensure universal access to sexual health and reproductive rights pursuant to the Beijing Declaration and Platform for Action", - "values": [ - "Right to health" - ] - }, - { - "text": "Continue efforts aimed at the promotion and protection of human rights.", - "values": [ - "General" - ] - }, - { - "text": "Speed up its efforts to ensure the functioning of the Commission in accordance with the Paris Principles on national human rights institutions ", - "values": [ - "National Human Rights Institution" - ] - }, - { - "text": "Strengthen its efforts to improve the detention conditions of migrants and asylum seekers, including by refraining from excessive use of force, ill-treatment, and prolongation of detention periods, and also to adopt a comprehensive integration strategy for their early stage integration", - "values": [ - "Asylum-seekers - refugees", - "Detention", - "Migrants", - "Torture and other CID treatment" - ] - }, - { - "text": "Publicly denounce extrajudicial killings and other abuses in the anti-drug campaign", - "values": [ - "Extrajudicial executions" - ] - }, - { - "text": "Establish formally a moratorium on the application of the death penalty, as a first step towards its definitive abolition", - "values": [ - "Death penalty" - ] - }, - { - "text": "End the trial of civilians in military courts and ensure that all civilians are tried before civilian courts and are granted the right to fair trial and to bail", - "values": [ - "Justice" - ] - }, - { - "text": "Strengthen support to children with disabilities ", - "values": [ - "Disabilities", - "Rights of the Child" - ] - }, - { - "text": "Enhance substantially its cooperation with treaty bodies and special procedures mandate holders ", - "values": [ - "Special procedures", - "Treaty bodies" - ] - }, - { - "text": "Enact and enforce laws and implement programmes directed specifically at combating discrimination and promoting the rights of indigenous peoples", - "values": [ - "Indigenous peoples" - ] - }, - { - "text": "Sign and ratify the Optional Protocol to the International Covenant on Economic, Social and Cultural Rights as well as the International Convention for the Protection of All Persons from Enforced Disappearance", - "values": [ - "ESC rights - general", - "Enforced disappearances", - "International instruments" - ] - }, - { - "text": "Continue awareness-raising campaigns to combat and eradicate Female Genital Mutilation and other traditional practices harmful against women and girls ", - "values": [ - "Human rights education and training", - "Rights of the Child", - "Torture and other CID treatment", - "Women's rights" - ] - }, - { - "text": "Sign the Optional Protocol to the Convention on the Elimination of All Forms of Discrimination against Women, thus ensuring effective protection of women against the different types of violence exercised towards them", - "values": [ - "International instruments", - "Women's rights" - ] - }, - { - "text": "Widen the scope of international obligations through ratification of international treaties such as the Optional Protocol to the Convention against Torture and the International Convention on the Protection of All Persons from Enforced Disappearance", - "values": [ - "Detention", - "Enforced disappearances", - "International instruments", - "Torture and other CID treatment" - ] - }, - { - "text": "Continue and further step up efforts with regard to the promotion of human rights education", - "values": [ - "Human rights education and training" - ] - }, - { - "text": "Pursue effectively its recently adopted Plan of Action for Justice Reform, inter alia by allocating the necessary resources for its prompt and full implementation", - "values": [ - "Justice" - ] - }, - { - "text": "Combat all forms of trafficking in children", - "values": [ - "Rights of the Child", - "Trafficking" - ] - }, - { - "text": "Ratify the Convention against Torture and the Second Optional Protocol to the International Covenant on Civil and Political Rights", - "values": [ - "Death penalty", - "International instruments", - "Torture and other CID treatment" - ] - }, - { - "text": "Take further measures to combat discrimination in the labour market and combat in particular discrimination based on ethnic origin and discrimination targeting transgender people ", - "values": [ - "Labour", - "Racial discrimination", - "Sexual Orientation and Gender Identity" - ] - }, - { - "text": "Accede to the Convention against Torture.", - "values": [ - "International instruments", - "Torture and other CID treatment" - ] - }, - { - "text": "Eliminate abuse of psychiatric committal", - "values": [ - "Freedom of movement" - ] - }, - { - "text": "Consider adopting a holistic approach in order to enable the totality of IDPs to sustain themselves and have access to employment, education and health care ", - "values": [ - "Internally displaced persons" - ] - }, - { - "text": "Ensure that provisions in the revised Constitution guarantee the equal rights of women as well as their right to acquire, retain and transfer citizenship", - "values": [ - "Statelessness and the right to nationality", - "Women's rights" - ] - }, - { - "text": "Take further steps to protect human rights defenders, including those working in relation to the rights of indigenous, including through ensuring impartial, thorough and effective investigations into all attacks, harassment and intimidation against human rights defenders and prosecution of all alleged perpetrators of such offences, and further, fully implement the national programme to protect human rights defenders through the adoption of a specific legal framework, allocation of a budget and the setting up of multi-disciplinary teams to implement it", - "values": [ - "Human rights defenders", - "Indigenous peoples" - ] - }, - { - "text": "Consider measures to enhance work place safety in private sector, in particular in the garments sector ", - "values": [ - "Labour" - ] - }, - { - "text": "Enact legislation abolishing the death penalty as foreseen in the national human rights action plan and in any case review its imposition for offences related to drug trafficking", - "values": [ - "Death penalty" - ] - }, - { - "text": "Effectively implement the Act on Women's Right to a Life Free from Violence", - "values": [ - "Women's rights" - ] - }, - { - "text": "Continue to address legal and procedural limitations which obstruct the effective prosecution of crime and corruption cases", - "values": [ - "Corruption", - "Justice" - ] - }, - { - "text": "Establish a formal moratorium on the use of the death penalty with a view to ratifying the Second Optional Protocol to the International Covenant on Civil and Political Rights ", - "values": [ - "Death penalty", - "International instruments" - ] - }, - { - "text": "Strengthen mechanisms aimed at combating discrimination, racism and xenophobia, and persevere in the adoption of measures to promote tolerance and respect of foreigners and members of national, racial and ethnic minorities ", - "values": [ - "Minorities", - "Racial discrimination" - ] - }, - { - "text": "Revise its regulation and administrative practices in order to protect the human rights of female domestic migrant workers, in particular when their work permits are linked to the employer and they have been victims of human trafficking and work exploitation", - "values": [ - "Migrants", - "Women's rights" - ] - }, - { - "text": "Strengthen independence and transparency of the judiciary and step up efforts to fight impunity by, inter alia, establishing a merit system of selecting and appointing judges and preventing political and other interference in their work, including arbitrary dismissals", - "values": [ - "Impunity", - "Justice" - ] - }, - { - "text": "Implement a comprehensive disarmament policy and strengthen the judicial system to reduce levels of impunity ", - "values": [ - "Impunity", - "Justice" - ] - }, - { - "text": "Widen the scope of international obligations through ratification of international treaties such as the Optional Protocol to the Convention on the Rights of the Child on a communications procedure", - "values": [ - "International instruments", - "Rights of the Child" - ] - }, - { - "text": "Desist from extrajudicial killings such as drone strikes and ensure accountability for civilian loss of life resulting from extraterritorial counter terrorism operations", - "values": [ - "Counter-terrorism", - "Extrajudicial executions" - ] - }, - { - "text": "End impunity through a thorough, independent inquiry into all human rights violations allegations, as previously recommended, including by giving access to the Commission of Inquiry", - "values": [ - "Impunity" - ] - }, - { - "text": "Implement its comprehensive health promotion policy and its policy framework for the elimination of discrimination against women", - "values": [ - "Right to health", - "Women's rights" - ] - }, - { - "text": "Amend the Criminal Code to abolish provisions allowing a perpetrator of sexual violence to escape prosecution by marrying the victim or allowing the prosecution, trial or execution of the sentence to be dropped when the victim retracts the complaint and explicitly criminalize marital rape", - "values": [ - "Women's rights" - ] - }, - { - "text": "Establish a Council for Persons with Disabilities in Bosnia and Herzegovina", - "values": [ - "Disabilities" - ] - }, - { - "text": "Meet its reporting obligations under the CRC ", - "values": [ - "Rights of the Child", - "Treaty bodies" - ] - }, - { - "text": "Continue cooperation with international mechanisms concerning human rights", - "values": [ - "General" - ] - }, - { - "text": "Effectively investigate the cases concerning attacks against journalists, opposition members and human rights defenders ", - "values": [ - "Freedom of association and peaceful assembly", - "Freedom of the press", - "Human rights defenders" - ] - }, - { - "text": "Enact laws and design plans and strategies in the area of combating racism, racial discrimination, and racial profiling and investigate relevant cases to ensure provision of reparations to victims ", - "values": [ - "Racial discrimination" - ] - }, - { - "text": "Increase investment in universal, mandatory and free education by giving priority to measures to eradicate discrimination and exclusion that affect girls, children with disabilities, Dalits and marginalized persons", - "values": [ - "Disabilities", - "Minorities", - "Right to education" - ] - }, - { - "text": "Put an end to inequalities between men and women, including with respect to access to property.", - "values": [ - "Women's rights" - ] - }, - { - "text": "Continue implementing ongoing socio-economic development projects and programmes, in particular those aimed at combating poverty", - "values": [ - "Development", - "Poverty" - ] - }, - { - "text": "Strengthen the implementation of relevant policies, such as the Plan to Prevent and Eradicate Child Labour and the empowerment of its National Commission for the Elimination of Child Labour, in particular with regard to the ILO Convention No. 182 concerning the Prohibition and Immediate Action for the Elimination of the Worst Forms of Child Labour, to address the phenomenon of child labour ", - "values": [ - "International instruments", - "Labour", - "Rights of the Child" - ] - }, - { - "text": "Pursue the cooperation with the Independent Expert on the situation of Human Rights in Haiti, who plays an important role, in particular in calling for the attention of the international community on the situation in the field and therefore contributing to the supply of technical assistance ", - "values": [ - "Special procedures", - "Technical assistance and cooperation" - ] - }, - { - "text": "Take effective actions to curb over-sexualization of women in media ", - "values": [ - "Women's rights" - ] - }, - { - "text": "Adopt legal measures to prohibit, sanction and effectively prevent the practice of female genital mutilation ", - "values": [ - "Rights of the Child", - "Torture and other CID treatment", - "Women's rights" - ] - }, - { - "text": "Intensify efforts to guarantee universal access to health services, information and education on health and sexual and reproductive rights, particularly for adolescents", - "values": [ - "Right to health", - "Rights of the Child", - "Women's rights" - ] - }, - { - "text": "Ratify the Convention on the Reduction of Statelessness and sign and ratify the Convention relating to the Status of Stateless Persons ", - "values": [ - "International instruments", - "Statelessness and the right to nationality" - ] - }, - { - "text": "Continue increasing and consolidating the successful social programmes developed to date, essential in the fight to reduce poverty and social exclusion, on the basis of a fair distribution of wealth that will enable the realization of the highest possible welfare for its people ", - "values": [ - "Poverty" - ] - }, - { - "text": "Provide adequate protection to all categories of workers and their families, including self-employed workers through the social security regime.", - "values": [ - "Labour" - ] - }, - { - "text": "Allocate more resources to improve the conditions of prisons around the country and in French overseas territories and provide additional training to prison staff ", - "values": [ - "Detention" - ] - }, - { - "text": "Develop a national strategy on slavery, including ways to reinforce and expand public awareness-raising campaigns against traditional and modern forms of slavery ", - "values": [ - "Human rights education and training" - ] - }, - { - "text": "Revise its laws to establish a broadly applicable anti-discrimination law which also effectively criminalizes hate speech", - "values": [ - "Racial discrimination" - ] - }, - { - "text": "Protect the freedom of assembly, enshrined in the Constitution, by modifying the protest law to allow public assemblies through a simple notification process", - "values": [ - "Freedom of association and peaceful assembly" - ] - }, - { - "text": "Ratify the seven core international human rights instruments including the Convention against Torture and Other Cruel, Inhuman or Degrading Treatment or Punishment, the International Covenant on Civil and Political Rights, the International Convention on the Elimination of All Forms of Racial Discrimination and the International Covenant on Economic, Social and Cultural Rights and their Optional Protocols", - "values": [ - "International instruments" - ] - }, - { - "text": "Ratify the International Covenant on Economic, Social and Cultural Rights and the International Covenant on Civil and Political Rights ", - "values": [ - "CP rights - general", - "ESC rights - general", - "International instruments" - ] - }, - { - "text": "Improve the child anti-trafficking public campaign and put in place measures to protect victims of trafficking and put in place the necessary legal and psychosocial assistance and societal reintegration", - "values": [ - "Human rights education and training", - "Rights of the Child", - "Trafficking" - ] - }, - { - "text": "Continue consolidating its successful plans for the reduction of poverty, extreme poverty and its combat against social exclusion ", - "values": [ - "Poverty" - ] - }, - { - "text": "Continue implementing decisive measures to prevent and eliminate cases of sexual exploitation of women and children", - "values": [ - "Rights of the Child", - "Women's rights" - ] - }, - { - "text": "Continue to take the necessary steps to achieve the total abolition of the death penalty", - "values": [ - "Death penalty" - ] - }, - { - "text": "Continue to take comprehensive measures to effectively fight against human trafficking and stamp out the associated phenomenon of contemporary forms of slavery", - "values": [ - "Trafficking" - ] - }, - { - "text": "Continue efforts to address the remaining gaps in migrant workers' rights protection", - "values": [ - "Labour", - "Migrants" - ] - }, - { - "text": "Take swift and efficient action to mitigate the adverse effects of the rising cost of housing in Male through various measures, such as social benefits or microfinance schemes, in order to enhance the enjoyment of the right to adequate housing ", - "values": [ - "Right to housing" - ] - }, - { - "text": "Adopt the necessary legislation to explicitly prohibit violence against children, including corporal punishment ", - "values": [ - "Rights of the Child", - "Torture and other CID treatment" - ] - }, - { - "text": "Consider the adoption of specific legislation on racism, racial discrimination, xenophobia and related intolerance ", - "values": [ - "Racial discrimination" - ] - }, - { - "text": "Redouble its efforts and ratify the International Convention on the Protection of the Rights of All Migrant Workers and Members of Their Families the Convention Relating to the Status of Stateless Persons of 1954 and the 1961 Convention to Reduce Statelessness", - "values": [ - "International instruments", - "Labour", - "Migrants", - "Statelessness and the right to nationality" - ] - }, - { - "text": "Thailand will promote the right to education for disadvantaged and marginalized children so that these children are able to access education for all on an equal basis with others", - "values": [ - "Right to education", - "Rights of the Child" - ] - }, - { - "text": "Amend the Women's Bill as well as laws related to marriage, divorce and inheritance to comply with its obligations under the Convention on the Elimination of Discrimination Against Women", - "values": [ - "International instruments", - "Women's rights" - ] - }, - { - "text": "Continue to implement the programmes and policies enunciated in the National Human Rights Plan", - "values": [ - "General" - ] - }, - { - "text": "Continue implementing the current policies to reduce poverty ", - "values": [ - "Poverty" - ] - }, - { - "text": "Allocate adequate funding to strengthen the State level Human Rights Ombudsman and allow early implementation of Venice Commission recommendations", - "values": [ - "National Human Rights Institution" - ] - }, - { - "text": "Strengthen safeguards for the exercise of freedom of expression and adopt legislation to protect media diversity.", - "values": [ - "Freedom of opinion and expression", - "Freedom of the press" - ] - }, - { - "text": "Adopt a comprehensive national framework to prevent trafficking in women and girls, and allow victims of trafficking to access a fair trial", - "values": [ - "Trafficking", - "Women's rights" - ] - }, - { - "text": "Address discrimination against children on the basis of their ethnic origin or economic situation", - "values": [ - "Racial discrimination", - "Rights of the Child" - ] - }, - { - "text": "Ratify the Convention against Torture, ICERD and ICCPR", - "values": [ - "CP rights - general", - "International instruments", - "Racial discrimination", - "Torture and other CID treatment" - ] - }, - { - "text": "Strengthen actions against harmful cultural practices", - "values": [ - "Torture and other CID treatment" - ] - }, - { - "text": "Ensure that primary education is entirely free, given the high number of children who do not attend school", - "values": [ - "Right to education", - "Rights of the Child" - ] - }, - { - "text": "Take further measures and accede to the Hague Convention on the Protection of Children and Co-operation in Respect of Intercountry Adoption ", - "values": [ - "International instruments", - "Rights of the Child" - ] - }, - { - "text": "Ensure that all pretrial detainees are brought before a judge without delay and expedite the cases of persons held under the Comprehensive Dangerous Drugs Act", - "values": [ - "Justice" - ] - }, - { - "text": "Modernize and update the criminal system in particular to increase penalties for cases of sexual abuse of minors, as the numbers of such cases are alarming", - "values": [ - "Justice" - ] - }, - { - "text": "Take all necessary measures to guarantee dignified conditions of detention, corresponding to the level of development of the country.", - "values": [ - "Detention" - ] - }, - { - "text": "Consider the possibility of ratifying the Convention on the Rights of Persons with Disabilities and, meanwhile, pursue efforts aimed at promoting the rights of persons with disabilities and their access to public places ", - "values": [ - "Disabilities", - "International instruments" - ] - }, - { - "text": "Continue support the work of the National Human Rights Commission in line with the Paris Principles", - "values": [ - "National Human Rights Institution" - ] - }, - { - "text": "Continue to share at the international level its national practices of its Second National Action Plan Human Trafficking ", - "values": [ - "Trafficking" - ] - }, - { - "text": "Adopt and implement reforms aimed at facilitating credible and responsible criminal investigations that respect human rights and at eliminating judicial corruption in order to ensure that persons suspected of breaking the law are apprehended, tried and sentenced in an efficient, accountable and transparent manner", - "values": [ - "Corruption", - "Justice" - ] - }, - { - "text": "Continue its efforts in the area of gender equality to eradicate traditional patriarchal stereotypes and gender inequality", - "values": [ - "Women's rights" - ] - }, - { - "text": "Ratify the international human rights instruments to which it is not yet a party", - "values": [ - "International instruments" - ] - }, - { - "text": "Ratify the Rome Statute of ICC, the Conventions regarding stateless persons and OP-CAT ", - "values": [ - "Detention", - "International instruments", - "Justice", - "Statelessness and the right to nationality", - "Torture and other CID treatment" - ] - }, - { - "text": "Include a gender perspective and a rights-based approach in the implementation of its Rent Act (right to adequate housing) with the goal of overcoming gender-based inequalities.", - "values": [ - "Right to housing", - "Women's rights" - ] - }, - { - "text": "Adopt programmes and specific measures to ensure the protection of economic, social and cultural rights of all components of society.", - "values": [ - "ESC rights - general" - ] - }, - { - "text": "Implement a comprehensive strategy to combat the discrimination against women, Amerindian children and also children with disabilities", - "values": [ - "Disabilities", - "Rights of the Child", - "Women's rights" - ] - }, - { - "text": "Make further efforts to prevent all forms of violence against women and girls, in particular sexual abuse and domestic violence, by adopting a comprehensive law to prevent violence against women as well as provide assistance and recovery for victims", - "values": [ - "Rights of the Child", - "Women's rights" - ] - }, - { - "text": "Take effective measures to bring conditions of detention in line with international standards by reducing overcrowding, improving the situation of juveniles and women in prison and promoting non-custodial measures", - "values": [ - "Detention", - "Rights of the Child", - "Women's rights" - ] - }, - { - "text": "Ratify the Rome Statute of the ICC and take steps to fully align the national legislation with all obligations under the Rome Statute, including by adopting provisions aimed at thorough and expeditious cooperation with the ICC ", - "values": [ - "International instruments", - "Justice" - ] - }, - { - "text": "Take additional measures to strengthen the fight against torture and other ill-treatment, and the fight against impunity, by ensuring that all complaints of torture are subject to an impartial and effective investigation", - "values": [ - "Impunity", - "Torture and other CID treatment" - ] - }, - { - "text": "Reintroduce immediately a moratorium on executions with a view to abolishing the death penalty", - "values": [ - "Death penalty" - ] - }, - { - "text": "Address the serious problem with land mines", - "values": [ - "International humanitarian law" - ] - }, - { - "text": "Give priority and pay special attention to the problems faced by different minority groups, in particular their student communities.", - "values": [ - "Minorities" - ] - }, - { - "text": "Take all appropriate actions in order to become a party to the Convention against Torture", - "values": [ - "International instruments", - "Torture and other CID treatment" - ] - }, - { - "text": "Ratify the Rome Statute of ICC and fully align legislation with all the obligations under the Rome Statute ", - "values": [ - "International instruments", - "Justice" - ] - }, - { - "text": "Italy remains fully committed to promoting effective measures for the social integration of regular migrants.", - "values": [ - "Migrants" - ] - }, - { - "text": "Continue implementing sound public policies to eradicate extreme poverty and hunger as acknowledged by specialized United Nations agencies", - "values": [ - "Poverty", - "Right to food" - ] - }, - { - "text": "Apply the 1997 Constitution, approve a law on political parties and hold democratic elections ", - "values": [ - "Elections", - "Freedom of association and peaceful assembly" - ] - }, - { - "text": "Strengthen the mandate of the National Office against Racial Discrimination", - "values": [ - "Racial discrimination" - ] - }, - { - "text": "Take the commitment to stop State funding of organizations or political parties that advocate racism", - "values": [ - "Racial discrimination" - ] - }, - { - "text": "Continue its efforts to speed up the implementation of the National Human Rights Roadmap and the related Action Plan", - "values": [ - "General" - ] - }, - { - "text": "Guarantee freedom of assembly and association in line with ICCPR", - "values": [ - "Freedom of association and peaceful assembly", - "International instruments" - ] - }, - { - "text": "Continue efforts to achieve gender equality ", - "values": [ - "Women's rights" - ] - }, - { - "text": "Expedite ratification of the Convention against Torture and its Optional Protocol", - "values": [ - "Detention", - "International instruments", - "Torture and other CID treatment" - ] - }, - { - "text": "Continue the revision of legislation on domestic violence which is currently debated in Parliament", - "values": [ - "Rights of the Child", - "Women's rights" - ] - }, - { - "text": "Do not house all prisoners together, but rather separate them on the basis of the nature and severity of their crime ", - "values": [ - "Detention" - ] - }, - { - "text": "Ensure that the non-discrimination against women is reflected in the provisions of domestic law, including in the context of the current process of the constitutional reform", - "values": [ - "Women's rights" - ] - }, - { - "text": "Ensure that in its application of preventive body searches, all relevant human rights are adequately protected, in particular the right to privacy and physical integrity and the prohibition of discrimination on the basis of race and religion ", - "values": [ - "Freedom of religion and belief", - "Privacy", - "Racial discrimination" - ] - }, - { - "text": "Review the functioning of the penitentiary system in order to ensure that it complies with international standards, including through the prevention and punishment of torture and other cruel or inhuman treatment", - "values": [ - "Detention" - ] - }, - { - "text": "Continue strengthening the Dominican social security system and the implementation of the Comprehensive Law for the national development strategy until 2030, which was issued on January 25, 2012 ", - "values": [ - "ESC rights - general" - ] - }, - { - "text": "Respect all its national and international obligations regarding forcibly displaced persons", - "values": [ - "Internally displaced persons" - ] - }, - { - "text": "Adopt legislative measures on gender equality", - "values": [ - "Women's rights" - ] - }, - { - "text": "Without delay, carry out an in-depth inquiry into past and present allegations of torture as well as all allegations of excessive and illegal use of force and bring those responsible to justice ", - "values": [ - "Human rights violations by state agents", - "Torture and other CID treatment" - ] - }, - { - "text": "Continue the efforts to fight against all forms of discrimination and to respect the rights of religious minorities ", - "values": [ - "Freedom of religion and belief", - "Minorities", - "Racial discrimination" - ] - }, - { - "text": "Recommended that the Criminal Code be amended to decriminalize same-sex activity between consenting adults.", - "values": [ - "Sexual Orientation and Gender Identity" - ] - }, - { - "text": "Consider establishing an independent National Human Rights Institution, in full compliance with the Paris Principles", - "values": [ - "National Human Rights Institution" - ] - }, - { - "text": "Adopt a national plan of action against sexual exploitation of children and against child labour. Raise the minimum age of criminal responsibility to internationally accepted standards and ensure that juvenile justice protection is accorded to all children up to the age of 18 years ", - "values": [ - "Justice", - "Labour", - "Rights of the Child" - ] - }, - { - "text": "Carry out a country-wide Roma needs assessment and health status study in consultation with Roma, Roma organizations, and health professionals, as the first step to defining a new national plan of action for ensuring that Roma have access to the highest attainable standard of health", - "values": [ - "Minorities", - "Right to health" - ] - }, - { - "text": "Consider reviewing and withdrawing reservations to ICCPR and other core human rights instruments, particularly where such reservations work to undermine the commitment to non-discrimination included in these treaties ", - "values": [ - "CP rights - general", - "International instruments" - ] - }, - { - "text": "After the signature of OPCAT last September, the Government had the intention of ratifying it in the near future. In addition, the Cabinet was positively considering the possibility of adhering to the Convention relating to the Status of Stateless Persons and the International Convention for the Protection of All Persons from Enforced Disappearance. The Government was also prepared to consider adhering to the ILO Convention No. 169, on indigenous and tribal peoples", - "values": [ - "Detention", - "Enforced disappearances", - "Indigenous peoples", - "International instruments", - "Statelessness and the right to nationality", - "Torture and other CID treatment" - ] - }, - { - "text": "Continue its efforts to promote human rights education and training at all levels of education, including capacity building for persons in charge of enforcing current human rights laws, policies and measures ", - "values": [ - "Human rights education and training" - ] - }, - { - "text": "The delegation expressed that the Government committed itself to intensifying its efforts to communicate, to the Jamaican public, the variety of options available to them to seek redress for alleged violations of their rights. ", - "values": [ - "Justice" - ] - }, - { - "text": "Ratify the ILO Convention 169", - "values": [ - "Indigenous peoples", - "International instruments" - ] - }, - { - "text": "Establish a formal moratorium on the death penalty and in particular cease all planned executions of juvenile offenders and prohibit the imposition of the death penalty for crimes committed by minors", - "values": [ - "Death penalty", - "Rights of the Child" - ] - }, - { - "text": "Ensure free, universal birth registration and provide all children born in the territory, particularly those born in indigenous communities, with a birth certificate", - "values": [ - "Indigenous peoples", - "Rights of the Child", - "Statelessness and the right to nationality" - ] - }, - { - "text": "Review the legislation on the minimum ages for criminal responsibility and for employment ", - "values": [ - "Justice", - "Labour", - "Rights of the Child" - ] - }, - { - "text": "Consider sharing with other countries in need its best practices on promotion and protection of human rights ", - "values": [ - "General" - ] - }, - { - "text": "Create the conditions that allow the Human Rights Ombudsperson to acquire A status according to the Paris Principles, by enlarging its mandate to receive allegations of torture and abuse and by providing it with the necessary resources to enable it to fulfil its functions", - "values": [ - "National Human Rights Institution", - "Torture and other CID treatment" - ] - }, - { - "text": "Ratify the 1954 Convention relating to the Status of Stateless Persons and the 1961 Convention on the Reduction of Statelessness ", - "values": [ - "International instruments", - "Statelessness and the right to nationality" - ] - }, - { - "text": "Promptly undertake measures to address allegations relating to instances of involuntary disappearances, arbitrary arrests, the routine use of torture, violence against women and girls, lack of judicial independence, impunity granted to the members of intelligence agencies, persecution of human rights defenders, and restriction of freedoms of expression and assembly, and carry out fundamental reforms of its laws, policies and practices with a view to improving the current dire human rights situation and preventing its recurrence", - "values": [ - "General" - ] - }, - { - "text": "Malaysia remains committed to providing quality and affordable education to its people. The Government continues to allocate a significant portion of its annual budget to education and education-related activities.", - "values": [ - "Right to education" - ] - }, - { - "text": "Pursue efforts to improve chances for persons with disabilities to have access to health care", - "values": [ - "Disabilities", - "Right to health" - ] - }, - { - "text": "Expressly prohibit in legislation racial discrimination and organisations inciting racial discrimination", - "values": [ - "Racial discrimination" - ] - }, - { - "text": "Continue efforts in order to increase participation of women in political, public and professional spheres ", - "values": [ - "Women's rights" - ] - }, - { - "text": "Operationalize/enforce legal mechanisms on ensuring gender equality", - "values": [ - "Women's rights" - ] - }, - { - "text": "Continue to strengthen protections for domestic violence survivors, and extend an invitation to the Special Rapporteur on violence against women, its causes and consequences to visit Mongolia", - "values": [ - "Rights of the Child", - "Special procedures", - "Women's rights" - ] - }, - { - "text": "Redouble its efforts to promote and protect women's rights, including dealing with the widespread violence against women", - "values": [ - "Women's rights" - ] - }, - { - "text": "Take steps to limit the application and length of pretrial detention", - "values": [ - "Detention" - ] - }, - { - "text": "Continue and intensify efforts for further promotion of economic, social and cultural rights, including the right to development for better realization of the Millennium Development Goals", - "values": [ - "Development", - "ESC rights - general" - ] - }, - { - "text": "Pursue the policy of national reconciliation and promotion of the rule of law ", - "values": [ - "Justice" - ] - }, - { - "text": "Respect religious and cultural rights of the Palestinian people in the Occupied Palestinian Territories, including Jerusalem, in accordance with Council resolution 6-19.", - "values": [ - "Freedom of religion and belief" - ] - }, - { - "text": "Take concrete measures to address the wage-gap based on gender inequality in order to ensure that women and men receive equal pay for work of equal value ", - "values": [ - "Women's rights" - ] - }, - { - "text": "Redouble its efforts to uphold the independence of the judiciary", - "values": [ - "Justice" - ] - }, - { - "text": "Ratify the ICCPR, ICESCR, OP-CAT and OP-CEDAW, and sign the third Optional Protocol to CRC on a communications procedure", - "values": [ - "International instruments" - ] - }, - { - "text": "Accede to OP-CAT and establish its national preventive mechanism accordingly", - "values": [ - "Detention", - "International instruments", - "Torture and other CID treatment" - ] - }, - { - "text": "Strive to take the following steps in order to implement the international human rights conventions to which it is a party: - a - the adoption of a single written constitution, and - b - an amendment to the penal code to include provisions on the prohibition of the use of torture ", - "values": [ - "International instruments", - "Torture and other CID treatment" - ] - }, - { - "text": "Step up its efforts to align its domestic legal framework with international and regional human rights conventions to which it is a party", - "values": [ - "International instruments" - ] - }, - { - "text": "Continue to strengthen police-community relations with a view to reduce tension in the community", - "values": [ - "Minorities" - ] - }, - { - "text": "Provide the necessary financial and human resources to strengthen the implementation of policies and programmes for the empowerment of women in social and public life", - "values": [ - "Women's rights" - ] - }, - { - "text": "Take concrete measures to prevent children from becoming stateless and guarantee universal access to free primary education, irrespective of citizenship and immigration status", - "values": [ - "Migrants", - "Right to education", - "Rights of the Child", - "Statelessness and the right to nationality" - ] - }, - { - "text": "Close, as soon as possible, the detention centre at Guantanamo Bay and put an end to the indefinite detention of persons considered as enemy combatants", - "values": [ - "Counter-terrorism", - "Detention" - ] - }, - { - "text": "Cease imprisoning conscientious objectors and consider granting them the right to serve instead with a civilian body independent of the military", - "values": [ - "Freedom of religion and belief" - ] - }, - { - "text": "Establish a moratorium on executions with a view to removing the death penalty from its criminal statutes and ratifying the Second Optional Protocol to the International Covenant on Civil and Political Rights ", - "values": [ - "Death penalty", - "International instruments" - ] - }, - { - "text": "Promulgate draft law 2817, approved by the Philippine Senate in July 2011, which defines and sanctions enforced disappearances ", - "values": [ - "Enforced disappearances" - ] - }, - { - "text": "Ensure the effective and full implementation of the law adopted in 2006 to fight domestic violence ", - "values": [ - "Rights of the Child", - "Women's rights" - ] - }, - { - "text": "Continue efforts aiming at enforcing and protecting women's rights, and support social empowerment for them", - "values": [ - "Women's rights" - ] - }, - { - "text": "Building on the ratification of the Convention on the Rights of Persons with Disabilities, continue its efforts in order to improve their standard of living", - "values": [ - "Disabilities", - "International instruments" - ] - }, - { - "text": "Accede to the Second Optional Protocol to the International Covenant on Civil and Political Rights.", - "values": [ - "Death penalty", - "International instruments" - ] - }, - { - "text": "Criminalize marital rape and adopt further measures to ensure wide accessibility and public knowledge of support available to victims of domestic violence so that they are able to protect themselves, initiate effective and fast investigations leading to punishment of perpetrators", - "values": [ - "Rights of the Child", - "Women's rights" - ] - }, - { - "text": "Further strengthen its policies and programmes aimed at combating discrimination and intolerance and ensure that incidents are subject to prompt and independent investigation and effective prosecution ", - "values": [ - "Other" - ] - }, - { - "text": "Support the action of the Ministry of Human Rights and Civil Liberties and take the necessary measures to ensure that the independent national human rights institution is in conformity with the Paris Principles", - "values": [ - "National Human Rights Institution" - ] - }, - { - "text": "Consider the establishment of a national commission for women to facilitate a holistic consideration at the national level of issues related to women.", - "values": [ - "Women's rights" - ] - }, - { - "text": "Analyse the causes of the perceived impunity of perpetrators of violence against women and allocate funds and personnel to overcome these causes", - "values": [ - "Impunity", - "Women's rights" - ] - }, - { - "text": "Redouble its efforts in the field of education and health ", - "values": [ - "Right to education", - "Right to health" - ] - }, - { - "text": "Step up efforts to enforce anti-trafficking legislation", - "values": [ - "Trafficking" - ] - }, - { - "text": "Undertake, as recommended by the Committee on the Rights of the Child, a comprehensive review of existing legislation from a rights-based perspective, to ensure its conformity with the principles and provisions of CRC ", - "values": [ - "International instruments", - "Treaty bodies" - ] - }, - { - "text": "Continue to resist attempts to enforce any values or standards beyond the universally agreed human rights norms.", - "values": [ - "Other" - ] - }, - { - "text": "Continue legal and legislative reforms and develop means to implement and monitor them ", - "values": [ - "General" - ] - }, - { - "text": "End the occupation of all Palestinian and Arab territories occupied since 1967, including Jerusalem and occupied Syrian Golan, and recognize and respect the right of the Palestinian people to self-determination and their right to establish an independent sovereign Palestinian State with Jerusalem as its capital.", - "values": [ - "Right to land" - ] - }, - { - "text": "Strengthen efforts to fight against poverty", - "values": [ - "Poverty" - ] - }, - { - "text": "Increase the awareness-raising campaign on the rights of women and children, involving journalists and media professionals as one of its focus groups ", - "values": [ - "Freedom of the press", - "Human rights education and training", - "Rights of the Child", - "Women's rights" - ] - }, - { - "text": "Ensure that all legal documents, including legislation and draft legislation, are available in both Tetum and Portuguese", - "values": [ - "Justice" - ] - }, - { - "text": "Continue to expand plans and measures to eliminate all forms of physical, sexual and gender-based violence in the country", - "values": [ - "Women's rights" - ] - }, - { - "text": "Strengthen efforts to ensure adequate legal counselling for all persons charged for violations of the lèse-majesté legislation and the 2007 Computer Crimes Act ", - "values": [ - "Freedom of opinion and expression" - ] - }, - { - "text": "Repeal all provisions in domestic law allowing for the death penalty, and to establish an official moratorium on executions with a view to abolishing the death penalty", - "values": [ - "Death penalty" - ] - }, - { - "text": "Continue to investigate acts of threats and aggression against human rights defenders and journalists and bring to justice those perpetrators ", - "values": [ - "Freedom of the press", - "Human rights defenders" - ] - }, - { - "text": "Enhance its efforts to strengthen women's participation in politics and public service", - "values": [ - "Women's rights" - ] - }, - { - "text": "Take into account the comments of CRC and CEDAW in order to ensure better harmonisation of the national legislation with conventions and to allow women and children to fully enjoy their rights", - "values": [ - "Rights of the Child", - "Treaty bodies", - "Women's rights" - ] - }, - { - "text": "Continue its efforts to achieve equitable socio-economic development, address poverty alleviation through its overarching objective according to its current policies and Action Plans with the support by the international community in order to meet the targets of MDGs", - "values": [ - "Development", - "Poverty" - ] - }, - { - "text": "Strengthen its efforts to ensure full equality between men and women and bring legislation in line with the recommendations of the Committee on the Elimination of Discrimination against Women, as well as human rights obligations and other international standards.", - "values": [ - "Treaty bodies", - "Women's rights" - ] - }, - { - "text": "Continue its effort to combat domestic violence and promote gender equality", - "values": [ - "Rights of the Child", - "Women's rights" - ] - }, - { - "text": "Permit members of all religious groups to practice their beliefs freely and allow members of other religious minorities to import scriptures, proselytize, establish new places of worship and instruct their believers, in line with the right to freedom of religion ", - "values": [ - "Freedom of religion and belief", - "Minorities" - ] - }, - { - "text": "Continue to eliminate racial discrimination, and put racial violence as criminal offence, with a view to protecting all the rights of minorities including newly arrived immigrants and better integrating into the society ", - "values": [ - "Migrants", - "Minorities", - "Racial discrimination" - ] - }, - { - "text": "Improve conditions in hospitals in order to ensure the provision of appropriate health-care services ", - "values": [ - "Right to health" - ] - }, - { - "text": "Provide all appropriate human and material resources to implement the National Action Plan that the Armenian Government adopted in February 2014 in order to achieve the rights of the vulnerable groups in the specified areas in the mentioned plan", - "values": [ - "Minorities" - ] - }, - { - "text": "Continue to implement programmes and measures to improve the enjoyment of the rights to education and health ", - "values": [ - "Right to education", - "Right to health" - ] - }, - { - "text": "Ensure the full incorporation of CRC into its domestic legislation ", - "values": [ - "International instruments", - "Rights of the Child" - ] - }, - { - "text": "Ratify the Optional Protocol to the Convention Against Torture (OP- CAT), put in place the national mechanism of prevention of torture as set out in that instrument, abrogate the provisions of 2008 law on the repression of terrorism, which could allow the use of torture by the police", - "values": [ - "Counter-terrorism", - "Detention", - "International instruments", - "Torture and other CID treatment" - ] - }, - { - "text": "Establish the International Commission for Investigation of Murders of Journalists and make sure the Commission will have a mandate appropriate to investigate the alleged case of murder of journalists", - "values": [ - "Freedom of the press", - "Justice" - ] - }, - { - "text": "Intensify its efforts to address trafficking ", - "values": [ - "Trafficking" - ] - }, - { - "text": "Set up temporary shelters to ensure safety for victims of trafficking and provide medical care, rehabilitation, return and reintegration programme ", - "values": [ - "Right to health", - "Trafficking" - ] - }, - { - "text": "Intensify cooperation with the Independent Electoral Commission to set a definitive date for holding presidential elections and to ensure that the registry of voters and the identification of the population is carried out in an adequate and reliable manner ", - "values": [ - "Elections" - ] - }, - { - "text": "Amend the penal code and the press law to remove criminal penalties for alleged libel and insult offences, as accepted by Bahrain during its last universal periodic review", - "values": [ - "Justice", - "UPR process" - ] - }, - { - "text": "Introduce practical measures, such as alternative means, to shorten periods of imprisonment", - "values": [ - "Detention" - ] - }, - { - "text": "Make more efforts to raise awareness among the public in general, and in particular, by the law enforcement bodies, that domestic violence must be dealt with as a serious public crime ", - "values": [ - "Human rights education and training", - "Rights of the Child", - "Women's rights" - ] - }, - { - "text": "Achieve further progress in the advancement of the role of Kuwaiti women in the public sphere\n", - "values": [ - "Women's rights" - ] - }, - { - "text": "Systematically prosecute all perpetrators of slavery and slavery-like practices in line with the provisions set out in the Criminal Code ", - "values": [ - "Other" - ] - }, - { - "text": "Take all necessary measures to ensure the protection of the rights of the child", - "values": [ - "Rights of the Child" - ] - }, - { - "text": "Pursue efforts aimed at strengthening the protection of all people from racial discrimination and by improving the existing draft pieces of legislation and passing them into law", - "values": [ - "Racial discrimination" - ] - }, - { - "text": "Continue to implement strategies and plans for the socio-economic development of the country, including in the environmental area", - "values": [ - "Development", - "Environment" - ] - }, - { - "text": "Intensify efforts to prevent and tackle any act aimed at reducing or impeding the full enjoyment of the freedom of religion for any individual", - "values": [ - "Freedom of religion and belief" - ] - }, - { - "text": "Provide a sustainable solution to tackling impunity by ensuring that the International Commission Against Impunity in Guatemala and the Guatemalan government agree an exit strategy that leaves behind a properly resourced and staffed justice mechanism with sole responsibility for tackling impunity", - "values": [ - "Impunity", - "Justice" - ] - }, - { - "text": "Change its laws to modify the definition of juveniles to ensure that all persons under 18 years old are provided with protection and guarantees ", - "values": [ - "Rights of the Child" - ] - }, - { - "text": "Establish technical assistance programmes to train civil servants in a pragmatic human rights focused approach", - "values": [ - "Human rights education and training" - ] - }, - { - "text": "Fully cooperate with the International Criminal Court and its investigations, as well as ensure an independent and reliable witness protection programme ", - "values": [ - "Justice" - ] - }, - { - "text": "The revision and amendment of relevant legislation, in particular Decree 32 of 2006, in order to bring it into full compliance with Bahrain's human rights obligations under the ICCPR ", - "values": [ - "Freedom of association and peaceful assembly", - "International instruments" - ] - }, - { - "text": "Redouble efforts to improve prison conditions, significantly reduce prison overcrowding and ensure that minors are separated from adults and that remand prisoners are separated from convicted prisoners, and women are separated from men", - "values": [ - "Detention", - "Rights of the Child", - "Women's rights" - ] - }, - { - "text": "Free political prisoners and prisoners of conscience who may still remain after previous release exercises", - "values": [ - "Detention", - "Freedom of opinion and expression" - ] - }, - { - "text": "Add a provision to the Marriage and Family Relations Act prohibiting other forms of the demeaning treatment of children, such as psychological violence", - "values": [ - "Rights of the Child" - ] - }, - { - "text": "Requested more information on reforms with respect to forced marriage, particularly on providing assistance to victims of forced marriage.", - "values": [ - "Rights of the Child", - "Women's rights" - ] - }, - { - "text": "Sign the OP-CAT", - "values": [ - "Detention", - "International instruments", - "Torture and other CID treatment" - ] - }, - { - "text": "Undertake criminal justice reforms in line with international standards to ensure prompt investigations and trials for alleged perpetrators of human trafficking and to address extrajudicial killings and sexual violence against women and children", - "values": [ - "Extrajudicial executions", - "Justice", - "Rights of the Child", - "Trafficking", - "Women's rights" - ] - }, - { - "text": "Encourages the reinforcement of freedom of expression and assembly in particular through the revision of article 51 of the Press Code. ", - "values": [ - "Freedom of association and peaceful assembly", - "Freedom of opinion and expression", - "Freedom of the press" - ] - }, - { - "text": "Further pursue efforts aimed at promoting the protection of the rights of migrant workers and share its pioneering experience in international forums ", - "values": [ - "Labour", - "Migrants" - ] - }, - { - "text": "Enact the Prevention and Combating of Trafficking in Persons Bill as soon as possible ", - "values": [ - "Trafficking" - ] - }, - { - "text": "Ensure effective implementation of the law on the protection of women against domestic violence", - "values": [ - "Rights of the Child", - "Women's rights" - ] - }, - { - "text": "Ratifiy the second Optional Protocol to ICCPR to abolish the death penalty. until this happens it commends the reduced number of crimes to which this penalty is applicable and hopes that this will be done in accordance with international standards and in full transparency.", - "values": [ - "Death penalty", - "International instruments" - ] - }, - { - "text": "Withdraw its interpretative declaration to article 1 of the Optional Protocol to the Convention on the Rights of the Child on the involvement of children in armed conflict and unconditionally forbid children from taking part in hostilities", - "values": [ - "International humanitarian law", - "International instruments", - "Rights of the Child" - ] - }, - { - "text": "Ensure the full applicability and incorporation in the domestic legal system of the CEDAW", - "values": [ - "International instruments", - "Women's rights" - ] - }, - { - "text": "Ensure changes to its criminal and civil codes, decriminalize slander and libel, and protect media freedoms and the freedom of expression, including for NGOs", - "values": [ - "Civil society", - "Freedom of opinion and expression", - "Freedom of the press" - ] - }, - { - "text": "Uphold a consistent and robust protection of religious freedom, including religious speech and conscientious objection, and provide for accommodation of religious views and actions regarding social issues", - "values": [ - "Freedom of religion and belief" - ] - }, - { - "text": "Continue raising the awareness of the population through human rights education programmes ", - "values": [ - "Human rights education and training" - ] - }, - { - "text": "In order to foster a further dialogue between religions, to develop an educational and awareness program focusing on the different religions in the country", - "values": [ - "Freedom of religion and belief" - ] - }, - { - "text": "Prioritise measures to significantly reduce gender-based violence including violence against women and girls", - "values": [ - "Rights of the Child", - "Women's rights" - ] - }, - { - "text": "Develop a migration policy, taking into account the international human rights standards in this respect ", - "values": [ - "International instruments", - "Migrants" - ] - }, - { - "text": "Finalize the ratification of the Convention on the Rights of Persons with Disabilities ", - "values": [ - "Disabilities", - "International instruments" - ] - }, - { - "text": "Continue to prioritize policies and programmes aimed at ensuring sustainable growth of the education sector", - "values": [ - "Right to education" - ] - }, - { - "text": "Advance in the promotion of the status of women in society in order to achieve full equality in rights between women and men in all matters", - "values": [ - "Women's rights" - ] - }, - { - "text": "Sign and ratify the CAT, the Convention on the Rights of Persons with Disabilities and the Convention for the Protection of All Persons from Enforced Disappearance ", - "values": [ - "Disabilities", - "Enforced disappearances", - "International instruments", - "Torture and other CID treatment" - ] - }, - { - "text": "Complete quickly the National Health Plan 2021, which was prepared in 2005 and is currently undergoing reform, to enable the full enjoyment of the highest possible level of health for the citizens of Honduras", - "values": [ - "Right to health" - ] - }, - { - "text": "Continue to engage fully with civil society groups in the follow-up and implementation of this review", - "values": [ - "Civil society", - "UPR process" - ] - }, - { - "text": "Reform judicial system, so that the Moldavan courts and prosecution offices fulfill expectations pertaining to independence from political authorities, incorruptibility, length of procedures, and decent wages for law enforcement personnel", - "values": [ - "Corruption", - "Justice" - ] - }, - { - "text": "Pursue its efforts to fight against impunity for serious human rights violations committed during the internal armed conflict", - "values": [ - "Impunity" - ] - }, - { - "text": "Invite the Special Rapporteur on torture and other cruel, inhuman or degrading treatment or punishment as well as the Special Rapporteur on the independence of judges and lawyers, the Special Rapporteur on the right of everyone to the enjoyment of the highest attainable standard of physical and mental health and the Special Rapporteur on extreme poverty and human rights", - "values": [ - "Justice", - "Poverty", - "Right to health", - "Special procedures", - "Torture and other CID treatment" - ] - }, - { - "text": "Take measures for the promotion and protection of the rights of migrants and their families", - "values": [ - "Migrants" - ] - }, - { - "text": "Take all the measures necessary, in particular by reinforcing the current structures, to play a leadership role to prevent and combat violence against women and children, including sexual abuses, especially in the displacement camps", - "values": [ - "Internally displaced persons", - "Rights of the Child", - "Women's rights" - ] - }, - { - "text": "Address the problem regarding the confiscation of places of worship and related properties of religious minorities ", - "values": [ - "Freedom of religion and belief", - "Minorities" - ] - }, - { - "text": "Consider ratification of the Second Optional Protocol to the International Covenant on Civil and Political Rights, aiming at the abolition of the death penalty, and introduce a de facto moratorium on the imposition of the death penalty with the view to total abolishment", - "values": [ - "Death penalty", - "International instruments" - ] - }, - { - "text": "Continue to strengthen the rights of persons with disabilities particularly by facilitating their access to public buildings and facilities", - "values": [ - "Disabilities" - ] - }, - { - "text": "Ensure effective protection of the rights of foreigners residing in the country, and actively promote anti-discrimination policies, including in law enforcement practices", - "values": [ - "Racial discrimination" - ] - }, - { - "text": "Continue efforts aimed at combating human trafficking, protecting victims of trafficking and improving the conditions of shelters ", - "values": [ - "Trafficking" - ] - }, - { - "text": "Establish a moratorium on executions with a view to the definitive abolition of the death\npenalty", - "values": [ - "Death penalty" - ] - }, - { - "text": "Ensure the allocation of sufficient resources for the implementation of the food security policy", - "values": [ - "Right to food" - ] - }, - { - "text": "With the assistance of the international community, strengthen its human and institutional capacity in education and health.", - "values": [ - "Right to education", - "Right to health", - "Technical assistance and cooperation" - ] - }, - { - "text": "Examine the possibility to accede to the International Covenant on Economic, Social and Cultural Rights ", - "values": [ - "ESC rights - general", - "International instruments" - ] - }, - { - "text": "Implement fully the recommendations of the Committee on the Elimination of Discrimination against Women, including by repealing discriminatory provisions in the family law ", - "values": [ - "Treaty bodies", - "Women's rights" - ] - }, - { - "text": "Take further measures to protect human health in the context of ensuring effective ways of sustainable development", - "values": [ - "Development", - "Right to health" - ] - }, - { - "text": "Continue applying measures to combat trafficking in human beings, covering areas such as prevention, investigation, prosecution and punishment of perpetrators ", - "values": [ - "Trafficking" - ] - }, - { - "text": "End the practice of prohibiting pregnant girls in Sierra Leone from attending schools and taking exams, as required under article 2 and 28 of the Convention on the Rights of the Child", - "values": [ - "International instruments", - "Right to education", - "Right to health", - "Rights of the Child", - "Women's rights" - ] - }, - { - "text": "A national moratorium on the death penalty is introduced with a view to completely abolish the penalty ", - "values": [ - "Death penalty" - ] - }, - { - "text": "Initiate awareness programmes to educate citizens on existing and new legislation", - "values": [ - "Human rights education and training" - ] - }, - { - "text": "Sign and ratify CAT, establish judicial oversight over all prison facilities and take immediate action with a view to the elimination of all forms of torture by the security forces and prison personnel ", - "values": [ - "Detention", - "Human rights violations by state agents", - "International instruments", - "Torture and other CID treatment" - ] - }, - { - "text": "Continue cooperating with treaty monitoring bodies regarding follow-up and implementation of its treaty obligations", - "values": [ - "Treaty bodies" - ] - }, - { - "text": "Build on the Domestic Violence Prevention and Protection Act and the National Gender Policy to implement more concrete programmes and policies to combat violence against women and children, and to promote the full and equitable participation by women in society", - "values": [ - "Rights of the Child", - "Women's rights" - ] - }, - { - "text": "Consolidation of the Higher Committee on Human Rights and Fundamental Freedoms, in line with the Paris Principles, by giving it legislative status, reinforcing its administrative and financial autonomy, expanding its prerogatives - self-referral, impromptu visits to prisons, individual appeals, and developing its means of action to stand against all forms of rights violation", - "values": [ - "National Human Rights Institution" - ] - }, - { - "text": "Continue strengthening the operational efficiency of various human rights institutions", - "values": [ - "National Human Rights Institution" - ] - }, - { - "text": "Continue its efforts to fully ensure economic and social rights for all vulnerable groups, including immigrants and persons with disabilities", - "values": [ - "Disabilities", - "ESC rights - general", - "Migrants" - ] - }, - { - "text": "Present overdue reports to the Committee on the Elimination of Discrimination against Women", - "values": [ - "Treaty bodies", - "Women's rights" - ] - }, - { - "text": "Restore the independence and mandate of the NHRC in line with the Paris Principles ", - "values": [ - "National Human Rights Institution" - ] - }, - { - "text": "Continue to provide the police, prison and judicial personnel with practically oriented human rights training and education.", - "values": [ - "Human rights education and training" - ] - }, - { - "text": "Facilitate the registration and work of civil society organizations, including those defending human rights and fighting discrimination on all grounds, so that they can operate without harassment, undue restrictions and administrative obstacles", - "values": [ - "Civil society", - "Freedom of association and peaceful assembly", - "Human rights defenders" - ] - }, - { - "text": "Continue the implementation of the Vision 2030 strategy, the Kazi\nKwa Vijana programme and the Constituency Development Fund, and seek the technical and financial assistance that it will require to that end \n", - "values": [ - "Development", - "Technical assistance and cooperation" - ] - }, - { - "text": "Create an effective juvenile system, and continue to reform its justice system", - "values": [ - "Justice", - "Rights of the Child" - ] - }, - { - "text": "Take further steps to ensure accountability for perpetrators of trafficking in persons", - "values": [ - "Trafficking" - ] - }, - { - "text": "Strengthen the National Disaster Management Authority in the country", - "values": [ - "Environment" - ] - }, - { - "text": "Accede to Second Optional Protocol to ICCPR, aiming at the abolition of the death penalty", - "values": [ - "Death penalty", - "International instruments" - ] - }, - { - "text": "Take all necessary measures to ensure separation of powers and due independence of the judiciary to secure the right to free and fair judicial processes ", - "values": [ - "Justice" - ] - }, - { - "text": "Accelerate the adoption of laws aimed at the constitutional recognition of indigenous peoples ", - "values": [ - "Indigenous peoples" - ] - }, - { - "text": "Consider amending the existing legislation to ensure that all children born in Zimbabwe, regardless of their parents' origin, are issued with birth certificates and ensure the paternity rights of children born out of wedlock", - "values": [ - "Rights of the Child", - "Statelessness and the right to nationality" - ] - }, - { - "text": "Foster equal and unconditional access for all inhabitants of the country to health care and education ", - "values": [ - "Right to education", - "Right to health" - ] - }, - { - "text": "Adopt all necessary measures to ensure freedom of expression and to prevent any interference with press freedoms.", - "values": [ - "Freedom of opinion and expression", - "Freedom of the press" - ] - }, - { - "text": "Reduce the number of crimes punishable by death by December 2014 ", - "values": [ - "Death penalty" - ] - }, - { - "text": "Take all necessary measures to ensure the full realization of the mandate of the Ombudsman's Office", - "values": [ - "National Human Rights Institution" - ] - }, - { - "text": "Ratify and fully implement all core human rights treaties, including the International Covenant on Civil and Political Rights and the Convention against Torture, as previously recommended", - "values": [ - "CP rights - general", - "International instruments", - "Torture and other CID treatment", - "UPR process" - ] - }, - { - "text": "Ratify the international human rights instruments, particularly the International Covenant on Economic, Social and Cultural Rights ", - "values": [ - "ESC rights - general", - "International instruments" - ] - }, - { - "text": "Continue its commendable efforts with a view to improving access to education for its citizens", - "values": [ - "Right to education" - ] - }, - { - "text": "Raise the minimum age of criminal responsibility to bring it into conformity with international standards and provide children under 18 years with due protection from juvenile justice system ", - "values": [ - "Justice", - "Rights of the Child" - ] - }, - { - "text": "Ensure the effective implementation, including by ensuring disaggregated data, effective public policies and necessary resource allocation, of the national plan of action for prevention, assistance and eradication of violence against women 2017-2019", - "values": [ - "Women's rights" - ] - }, - { - "text": "Invite the Special Rapporteur on extrajudicial, summary or arbitrary executions", - "values": [ - "Extrajudicial executions", - "Special procedures" - ] - }, - { - "text": "Consider strengthening the capacity of the ministries responsible for developing a sustainable mining strategy ", - "values": [ - "Other" - ] - }, - { - "text": "Extend an open, permanent invitation to international human rights mechanisms.", - "values": [ - "Special procedures" - ] - }, - { - "text": "Reinforce the steps taken to reduce unemployment and raise living standards by providing more access to economic-based training and literacy courses ", - "values": [ - "Development" - ] - }, - { - "text": "Withdraw all reservations to OP-CAT ", - "values": [ - "Detention", - "International instruments", - "Torture and other CID treatment" - ] - }, - { - "text": "Maintain and strengthen the economic and social model freely chosen by the Cuban people, and continue to advance in the full participation of the people in public affairs", - "values": [ - "ESC rights - general" - ] - }, - { - "text": "Intensify strategies aimed at respecting life from conception to its natural death", - "values": [ - "Other" - ] - }, - { - "text": "Ratify the International Convention for the Protection of All Persons from Enforced Disappearance.", - "values": [ - "Enforced disappearances", - "International instruments" - ] - }, - { - "text": "Ratify the Convention of the Rights of Persons with Disabilities without reservations.", - "values": [ - "Disabilities", - "International instruments" - ] - }, - { - "text": "Plan to ratify the International Convention on the Elimination of All Forms of Racial Discrimination", - "values": [ - "International instruments", - "Racial discrimination" - ] - }, - { - "text": "Get the reporting schedule with treaty bodies back on track", - "values": [ - "Treaty bodies" - ] - }, - { - "text": "Pay attention to the rehabilitation of prisoners", - "values": [ - "Detention" - ] - }, - { - "text": "Explicitly prohibit corporal punishment in all settings by law", - "values": [ - "Torture and other CID treatment" - ] - }, - { - "text": "Place high priority on the introduction of comprehensive measures to address all forms of violence against women and children, including redress and protection of the victims.", - "values": [ - "Rights of the Child", - "Women's rights" - ] - }, - { - "text": "Ratify or accede to the main instruments on human rights, in particular the International Covenant on Civil and Political Rights ", - "values": [ - "CP rights - general", - "International instruments" - ] - }, - { - "text": "Ratify the Minimum Age Convention, 1973 (No. 138) and the Worst Forms of Child Labour Convention, 1999 (No. 182) of the International Labour Organization", - "values": [ - "International instruments", - "Labour", - "Rights of the Child" - ] - }, - { - "text": "Ratify ILO Conventions Nos. 169 and 189 ", - "values": [ - "Indigenous peoples", - "International instruments", - "Labour" - ] - }, - { - "text": "Increase efforts to combat the stigma associated with boys and girls with disabilities and review the family planning policy with the aim of combatting the deep causes of abandonment of boys and girls with disabilities as well as to provide sufficient community services and assistance in rural regions", - "values": [ - "Disabilities", - "Rights of the Child" - ] - }, - { - "text": "Put more financial resources to eradicate poverty, especially in rural areas", - "values": [ - "Poverty" - ] - }, - { - "text": "Pursue the implementation of the concept of Scientific Outlook on Development perspectives to ensure comprehensive, coordinated and lasting development and to continue building a harmonious society marked by democracy, primacy of the law, equity and justice", - "values": [ - "Development" - ] - }, - { - "text": "Pursue the establishment of national health insurance system which will contribute to improving the quality of primary basic health care for all ", - "values": [ - "Right to health" - ] - }, - { - "text": "Lift the military blockade imposed on the Gaza Strip and guarantee access to goods and persons without restrictions", - "values": [ - "Freedom of movement" - ] - }, - { - "text": "Further intensify efforts to harmonize the method of data collection by relevant agencies involved in the fight against domestic violence.", - "values": [ - "Rights of the Child", - "Women's rights" - ] - }, - { - "text": "Establish a national human rights institution in accordance with the Paris Principles, to promote and protect fundamental rights and guarantees", - "values": [ - "National Human Rights Institution" - ] - }, - { - "text": "Promote awareness-raising programmes on the importance of education of children.", - "values": [ - "Human rights education and training", - "Rights of the Child" - ] - }, - { - "text": "Continue to deepen the actions for the protection and promotion of the rights of the Roma", - "values": [ - "Minorities" - ] - }, - { - "text": "Ensure that any physical and moral harm against journalists or human rights defenders is subjected to an investigation and that those responsible are duly prosecuted ", - "values": [ - "Freedom of the press", - "Human rights defenders" - ] - }, - { - "text": "Bring its legislation into line with the new Constitution to ensure the full exercise of freedom of expression, association and assembly", - "values": [ - "Freedom of association and peaceful assembly", - "Freedom of opinion and expression" - ] - }, - { - "text": "Take necessary measures to eradicate difficulties facing persons with disabilities in exercising their rights and improve their access to public places, services and social security benefits", - "values": [ - "Disabilities" - ] - }, - { - "text": "Facilitate the filing of complaints by victims of sexual violence by assigning women (officers) to police stations and subsidize medical certificates attesting to such violence", - "values": [ - "Rights of the Child", - "Women's rights" - ] - }, - { - "text": "Continue government efforts to fully realize the right to development ", - "values": [ - "Development" - ] - }, - { - "text": "Increase measures to combat racial violence and incitement.", - "values": [ - "Racial discrimination" - ] - }, - { - "text": "Continue its efforts to build more classrooms under the Intermediate Strategy for Education and Literacy (SIPEA) programme ", - "values": [ - "Right to education" - ] - }, - { - "text": "Bahrain is fully committed to supporting non-governmental organizations through legal and other instruments so as to develop a constructive dialogue with these organizations and other stakeholders.", - "values": [ - "Civil society" - ] - }, - { - "text": "Take necessary measures to promote tolerance, intercultural dialogue and respect for diversity", - "values": [ - "Freedom of religion and belief", - "Minorities" - ] - }, - { - "text": "Strengthen the promotion of the right to education and health in disadvantaged areas ", - "values": [ - "Right to education", - "Right to health" - ] - }, - { - "text": "Consider taking initial steps towards the ratification of other international human rights instruments that it is not yet a party to", - "values": [ - "International instruments" - ] - }, - { - "text": "Take extensive and timely steps to ensure the independence of the media free from intimidation and suppression, including through proper implementation of the media law passed in the fall of 2008. ", - "values": [ - "Freedom of the press" - ] - }, - { - "text": "Effectively combat child prostitution and sexual exploitation of children for commercial ends", - "values": [ - "Rights of the Child", - "Trafficking" - ] - }, - { - "text": "Continue ongoing efforts, both nationally and in its bilateral dialogue with Serbia, to ensure the return of refugees and displaced Croatians of Serbian origin to their homes and the recovery of all their rights, especially with regard to their property, pensions and social rights, thereby ensuring a comprehensive solution to a problem that affects both Croatians of Serbian origin and Serbs of Croatian origin", - "values": [ - "Asylum-seekers - refugees" - ] - }, - { - "text": "Speed up the process of ratification of OP-CRC-AC ", - "values": [ - "International humanitarian law", - "International instruments", - "Rights of the Child" - ] - }, - { - "text": "Immediately release all Palestinian, Syrian and other Arab prisoners and detainees", - "values": [ - "Detention" - ] - }, - { - "text": "Respect minimum standards relating to the death penalty as long as it the latter is effectively applied", - "values": [ - "Death penalty" - ] - }, - { - "text": "Repeal all orders of the National Council for Peace and Order that are inconsistent with its international human rights obligations", - "values": [ - "Freedom of association and peaceful assembly", - "International instruments" - ] - }, - { - "text": "Continue its efforts to combat terrorism and exert every possible effort to protect and promote human rights, in spite of all existing obstacles and threats, keeping away from external and regional interference that contributes to undermining the security and stability in Iraq", - "values": [ - "Public security" - ] - }, - { - "text": "Seek the assistance of the international community, the United Nations and its specialized agencies to provide the country with the needed support in confronting challenges towards ensuring the promotion and protection of human rights and the attainment of its Millennium Development Goals ", - "values": [ - "Development", - "Technical assistance and cooperation" - ] - }, - { - "text": "Include a gender perspective in the follow-up of its UPR process in a systematic manner.", - "values": [ - "UPR process", - "Women's rights" - ] - }, - { - "text": "Take concrete steps and ensure that all necessary resources are provided to government agencies in order to increase the efficiency of a child protection system", - "values": [ - "Rights of the Child" - ] - }, - { - "text": "Ratify the following international human rights instruments: the second Optional Protocol to the International Covenant on Civil and Political Rights - OP-CAT - the two Optional Protocols to CRC - CRPD and its Optional Protocol and the Rome Statute ", - "values": [ - "International instruments" - ] - }, - { - "text": "Bahrain is determined to strengthen its capacities in order to ensure: Follow-up to the concluding observations of the human rights treaty bodies. ", - "values": [ - "Treaty bodies" - ] - }, - { - "text": "Continue to advance in the recognition of the differences, and the respect for the rights, of vulnerable groups, bearing in mind the duty to ensure equality among all people, paying special attention to the poorest provinces and the systemic inequalities that may exist between rural and urban areas", - "values": [ - "ESC rights - general", - "Poverty" - ] - }, - { - "text": "Further improve the birth registration system and support it by awareness-raising activities, in order to boost the registration numbers", - "values": [ - "Rights of the Child", - "Statelessness and the right to nationality" - ] - }, - { - "text": "Enact legislation and adopt measures to ensure that businesses and their branches operating in Switzerland are accountable for any violations of human rights or damage to the environment around the world", - "values": [ - "Business and human rights" - ] - }, - { - "text": "Establish mechanisms to ensure that investigations of allegations of grave human rights violations are conducted in a comprehensive, independent and impartial manner to expedite sanction and redress procedures", - "values": [ - "Justice" - ] - }, - { - "text": "Turkey reiterated its commitment to provide a mid-term report in two years time.", - "values": [ - "UPR process" - ] - }, - { - "text": "Adopt labour laws and social security norms in accordance with international protection standards, criminalize sexual abuse, and adequately regulate child labour", - "values": [ - "Labour", - "Rights of the Child", - "Women's rights" - ] - }, - { - "text": "Continue efforts to promote good governance, political dialogue and actions in favour of peace", - "values": [ - "General" - ] - }, - { - "text": "Establish a system of juvenile justice to guarantee protection of the rights of the child in this situation ", - "values": [ - "Justice", - "Rights of the Child" - ] - }, - { - "text": "Further promote the fight against human trafficking through the specialized official authority", - "values": [ - "Trafficking" - ] - }, - { - "text": "Ratify CRPD ", - "values": [ - "General" - ] - }, - { - "text": "Implement without delay and with the assistance of international cooperation, a broad strategy which complies with the Convention on the Elimination of All Forms of Discrimination against Women, aimed at modifying or eliminating practices and cultural stereotypes that are harmful and discriminate against women ", - "values": [ - "International instruments", - "Technical assistance and cooperation", - "Torture and other CID treatment", - "Women's rights" - ] - }, - { - "text": "Continue strengthening the efforts in promoting and protecting non-racial discriminatory policy and specifically also ensure that Aboriginal children have access to birth registration", - "values": [ - "Indigenous peoples", - "Racial discrimination", - "Rights of the Child", - "Statelessness and the right to nationality" - ] - }, - { - "text": "Consider the ratification of the International Convention on the Elimination of All Forms of Racial Discrimination.", - "values": [ - "International instruments", - "Racial discrimination" - ] - }, - { - "text": "Reintroduce the moratorium and abolish capital punishment", - "values": [ - "Death penalty" - ] - }, - { - "text": "Establish a system for monitoring international recommendations", - "values": [ - "Special procedures", - "Treaty bodies", - "UPR process" - ] - }, - { - "text": "Ensure the integration of human rights into all school curriculums, and train law enforcement officers in human rights ", - "values": [ - "Human rights education and training" - ] - }, - { - "text": "Ensure sufficient funds to effectively lower the pregnancies in adolescents, also by launching awareness-raising activities ", - "values": [ - "Human rights education and training" - ] - }, - { - "text": "Continue to apply its strategies and plans, work towards the adoption of comprehensive anti-discrimination legislation, and include penalties appropriate for the seriousness of the offence", - "values": [ - "Other" - ] - }, - { - "text": "Continue to improve prison conditions, enhancing measures already adopted to avoid overcrowding, malnutrition and poor sanitation, and end the abusive use of pretrial detention", - "values": [ - "Detention", - "Right to food", - "Right to water and sanitation" - ] - }, - { - "text": "Expand the human rights education campaign to law enforcement officers, especially on the rights of women, children, the elderly and minorities ", - "values": [ - "Human rights education and training", - "Minorities", - "Rights of the Child", - "Women's rights" - ] - }, - { - "text": "Revise legislation to allow abortion in cases of pregnancy resulting from rape or incest and in cases where continuation of the pregnancy would put the health or life of the woman or girl at risk", - "values": [ - "Rights of the Child", - "Women's rights" - ] - }, - { - "text": "Take holistic measures to protect the rights of persons with disabilities, the elderly and other vulnerable groups", - "values": [ - "Disabilities" - ] - }, - { - "text": "Prevent any kind of political or other pressures against the independence of the judiciary system and bodies ", - "values": [ - "Justice" - ] - }, - { - "text": "Ratify, in particular, ICESCR", - "values": [ - "ESC rights - general", - "International instruments" - ] - }, - { - "text": "Ensure that the freedoms of expression and peaceful assembly are respected in conformity with international standards and that members of political parties, journalists and human rights activists are able to exercise their activities and to criticize the Government without being subject to intimidation, reprisals or harassment", - "values": [ - "Freedom of association and peaceful assembly", - "Freedom of opinion and expression", - "Freedom of the press", - "Human rights defenders" - ] - }, - { - "text": "Further enhance the operational effectiveness of the national human rights institutions in accordance with their mandates through the provision of adequate human and financial resources", - "values": [ - "National Human Rights Institution" - ] - }, - { - "text": "Finalize and enact legislation to criminalize all forms of human trafficking, as defined in international law, with sufficiently stringent penalties", - "values": [ - "Trafficking" - ] - }, - { - "text": "Continue to promote free-of-charge school enrolment ", - "values": [ - "Right to education" - ] - }, - { - "text": "Sensitize police officers and law enforcement officials and take measures to effectively prosecute sexual and domestic violence ", - "values": [ - "Human rights education and training", - "Rights of the Child", - "Women's rights" - ] - }, - { - "text": "Continue raising public awareness to combat discrimination, particularly those stemming from Islamophobia and fears of terrorism", - "values": [ - "Freedom of religion and belief", - "Human rights education and training", - "Racial discrimination" - ] - }, - { - "text": "Accede to the Optional Protocol to the Convention on the Rights of the Child on a communications procedure", - "values": [ - "International instruments", - "Rights of the Child" - ] - }, - { - "text": "Strengthen its legal framework and mechanism for the promotion and protection of human rights", - "values": [ - "General" - ] - }, - { - "text": "Continue to give serious consideration to ratification of the International Convention on the Elimination of All Forms of Racial Discrimination", - "values": [ - "International instruments", - "Racial discrimination" - ] - }, - { - "text": "Remove the ban on wearing the hijab in schools and universities, and the prohibition on teachers under the age of 50 wearing beards", - "values": [ - "Freedom of religion and belief" - ] - }, - { - "text": "Strengthen efforts to enable girls from rural areas to enroll in schools and other educational institutions", - "values": [ - "Right to education", - "Rights of the Child", - "Women's rights" - ] - }, - { - "text": "Undertake efforts as set out in the Sustainable Development Goals, especially those related to poverty, education, health, housing and water and sanitation", - "values": [ - "Development", - "Poverty", - "Right to education", - "Right to health", - "Right to housing", - "Right to water and sanitation" - ] - }, - { - "text": "Continue pursuing appropriate, efficient, inclusive educational policies to provide for free and compulsory education to all segments of its society, including marginalized, disadvantaged - and thus most vulnerable - groups ", - "values": [ - "Right to education" - ] - }, - { - "text": "Introduce a moratorium on capital executions, with a view to abolish the death penalty", - "values": [ - "Death penalty" - ] - }, - { - "text": "Strengthen efforts to promote women's participation in public life, particularly at the higher corporate levels", - "values": [ - "Women's rights" - ] - }, - { - "text": "Continue, while working with concerned parties, its comprehensive national strategy to improve the health situation, in particular to promote women's health during pregnancy and post natal care", - "values": [ - "Right to health", - "Women's rights" - ] - }, - { - "text": "Avoid the criminalization of migrants and ensure the end of police brutality, through human rights training and awareness-raising campaigns, especially to eliminate stereotypes and guarantee that the incidents of excessive use of force be investigated and the perpetrators prosecuted ", - "values": [ - "Human rights education and training", - "Human rights violations by state agents", - "Migrants" - ] - }, - { - "text": "Reinforce constitutional protections against discrimination to include sex, disability, sexual orientation and gender identity as prohibited grounds for discrimination ", - "values": [ - "Disabilities", - "Sexual Orientation and Gender Identity", - "Women's rights" - ] - }, - { - "text": "Continue to promote the equal representation of women in political and public life", - "values": [ - "Women's rights" - ] - }, - { - "text": "Make the necessary constitutional changes to end discrimination against minorities in exercising their right to full political participation", - "values": [ - "Minorities", - "Racial discrimination" - ] - }, - { - "text": "Adopt the necessary measures to ensure the reduction of overcrowding and the improvement of prison conditions", - "values": [ - "Detention" - ] - }, - { - "text": "Continue to integrate national procedures with acceptable international human rights mechanisms", - "values": [ - "International instruments" - ] - }, - { - "text": "Make the necessary efforts so that judicial proceedings do not suffer undue delay, and implement a system that prevents people of different sex being detained in the same facilities, and sometimes even mixed with minors ", - "values": [ - "Detention", - "Justice" - ] - }, - { - "text": "Step up efforts to achieve equality and eliminate discrimination against women, afro-descendants and indigenous, and improve their access to education, housing, health and employment ", - "values": [ - "Indigenous peoples", - "Minorities", - "Women's rights" - ] - }, - { - "text": "Ensure that contested children in a marital dispute have the possibility of maintaining effective contact with the foreign parent living abroad ", - "values": [ - "Rights of the Child" - ] - }, - { - "text": "Continue its efforts to improve the quality of the education system and to expand access to education for all children and adolescents, in particular for those belonging to indigenous peoples", - "values": [ - "Indigenous peoples", - "Right to education", - "Rights of the Child" - ] - }, - { - "text": "Develop a professional code of conduct for judges, and actively support the establishment of an independent bar association ", - "values": [ - "Justice" - ] - }, - { - "text": "Continue to address gender-based violence", - "values": [ - "Women's rights" - ] - }, - { - "text": "Consider setting up a global action plan to combat violence against women and children, with particular attention to forced marriages, and the growing phenomenon of street children ", - "values": [ - "Rights of the Child", - "Women's rights" - ] - }, - { - "text": "Establish a periodical review process of Costa Rica's laws and practices so as to eradicate all forms of discrimination against women, both de facto and de jure, in accordance with its internationally acquired commitments ", - "values": [ - "Women's rights" - ] - }, - { - "text": "Establish the national committee for the prevention of torture as soon as possible by providing it with all the human, financial and material resources to function effectively, including through the appointment of independent and qualified members", - "values": [ - "Detention", - "Torture and other CID treatment" - ] - }, - { - "text": "Accelerate the drafting, adoption and implementation of laws to determine the age of marriage so as to do away with underage marriage ", - "values": [ - "Rights of the Child" - ] - }, - { - "text": "Cease all violations of international humanitarian and human rights law, including indiscriminate attacks on medical workers and facilities, schools, civilian infrastructure and the civilian population", - "values": [ - "International humanitarian law" - ] - }, - { - "text": "Adopt measures to assure to all persons with disabilities access to educational and vocational training programmes, in consultation with these persons and their representatives ", - "values": [ - "Disabilities", - "Right to education" - ] - }, - { - "text": "Continue its efforts to fight against unemployment and prioritize adequate housing and access to water", - "values": [ - "Development", - "Right to housing", - "Right to water and sanitation" - ] - }, - { - "text": "Establish conventions that will guarantee the non-violation of migrants' rights", - "values": [ - "Migrants" - ] - }, - { - "text": "Ratify the Rome Statute and fully align its national legislation with all obligations under the Rome Statute", - "values": [ - "International instruments", - "Justice" - ] - }, - { - "text": "Continue to take measures to prevent child trafficking, sexual exploitation and sale of children, child prostitution and child pornography", - "values": [ - "Rights of the Child", - "Trafficking" - ] - }, - { - "text": "Decriminalize same sex relations including in the Sexual Offences Act", - "values": [ - "Sexual Orientation and Gender Identity" - ] - }, - { - "text": "Reform laws, rules and codes of conduct that regulate police action to bring them in line with international human rights standards ", - "values": [ - "International instruments", - "Justice" - ] - }, - { - "text": "Continue its efforts to promote and protect the rights of children and of persons with disabilities", - "values": [ - "Disabilities", - "Rights of the Child" - ] - }, - { - "text": "Cooperate with countries of destination in order to return illegal refugees and migrants to their countries of origin ", - "values": [ - "Asylum-seekers - refugees", - "Migrants" - ] - }, - { - "text": "Take the necessary measures to guarantee the proper functioning of a juvenile justice system, including, inter alia, by treating minors in a manner appropriate to their age, and abolish all corporal punishment of children in all settings", - "values": [ - "Justice", - "Rights of the Child", - "Torture and other CID treatment" - ] - }, - { - "text": "Ensure the responsible repatriation of foreign victims of trafficking ", - "values": [ - "Trafficking" - ] - }, - { - "text": "Continue policies and programs to improve the quality of basic social services provided to citizens, such as health care and education ", - "values": [ - "Right to education", - "Right to health" - ] - }, - { - "text": "Support social integration of women in all spheres of life", - "values": [ - "Women's rights" - ] - }, - { - "text": "Take concrete measures to repeal laws and practices that are discriminatory toward women, including in respect of property, land ownership and marriage", - "values": [ - "Women's rights" - ] - }, - { - "text": "Amend the law so that it allows women married to foreigners to pass on their Jordanian nationality to their children and thus allow these children access to basic education and health services", - "values": [ - "Right to education", - "Right to health", - "Rights of the Child", - "Women's rights" - ] - }, - { - "text": "Ensure that prompt, thorough and impartial investigations are carried out into all deaths in custody as well as all allegations of torture and illtreatment", - "values": [ - "Detention", - "Extrajudicial executions", - "Torture and other CID treatment" - ] - }, - { - "text": "Further strengthen measures aimed at combating all forms of discrimination against women", - "values": [ - "Women's rights" - ] - }, - { - "text": "Abolish the death penalty, considering the existence of the de facto moratorium", - "values": [ - "Death penalty" - ] - }, - { - "text": "Amend the social welfare act and other laws which deny persons with disabilities their right to work or which allow their placement in institutions without their consent", - "values": [ - "Disabilities" - ] - }, - { - "text": "Review prison regulations to prohibit the reduction of diet as a form of punishment ", - "values": [ - "Detention" - ] - }, - { - "text": "Strengthen measures aimed at fighting against discrimination, racism and xenophobia in the country, especially concerning migrants and asylum seekers", - "values": [ - "Asylum-seekers - refugees", - "Migrants", - "Racial discrimination" - ] - }, - { - "text": "Take measures against xenophobia and Islamophobia. Improve the implementation of the existing legal framework for combating racism", - "values": [ - "Freedom of religion and belief", - "Racial discrimination" - ] - }, - { - "text": "Set up programs and plans to enhance training and raise awareness among the workers in the area of combating human trafficking", - "values": [ - "Human rights education and training", - "Labour", - "Trafficking" - ] - }, - { - "text": "Continue developing the institutional framework with respect to the promotion and protection of human rights ", - "values": [ - "General" - ] - }, - { - "text": "Establish a minimum age for employment in compliance with international norms ", - "values": [ - "Labour" - ] - }, - { - "text": "Continue with its efforts to ensure that children have access to education and health care especially in rural areas", - "values": [ - "Right to education", - "Right to health", - "Rights of the Child" - ] - }, - { - "text": "Implement a full moratorium with a view to early and total abolition of the death penalty ", - "values": [ - "Death penalty" - ] - }, - { - "text": "Continue to fine-tune its development agenda and by doing so, continue to effectively promote and protect human rights as well as economic, social and cultural rights in the country", - "values": [ - "ESC rights - general" - ] - }, - { - "text": "Sign the Council of Europe Convention on preventing and combating violence against women and domestic violence ", - "values": [ - "Rights of the Child", - "Women's rights" - ] - }, - { - "text": "Accelerate the improvement of the judicial, police and prison systems in line with international human rights standards ", - "values": [ - "Detention", - "International instruments", - "Justice" - ] - }, - { - "text": "Take resolute measures to condemn hate speech, racial discrimination, xenophobia and intolerance against all minority groups, migrants and asylum seekers", - "values": [ - "Asylum-seekers - refugees", - "Migrants", - "Minorities", - "Racial discrimination" - ] - }, - { - "text": "Take measures to ensure the right to freedom of expression and peaceful assembly for human rights defenders, independent journalists and civil society activists and effectively combat intimidation and harassment against them ", - "values": [ - "Civil society", - "Freedom of association and peaceful assembly", - "Freedom of opinion and expression", - "Freedom of the press", - "Human rights defenders" - ] - }, - { - "text": "Request OHCHR support to conduct awareness-raising programmes and training for those working in the human rights field and provision of technical assistance to promote human rights.", - "values": [ - "Human rights education and training", - "Technical assistance and cooperation" - ] - }, - { - "text": "Approve laws and implement programmes that ensure the elimination of gender inequality, in particular access to dignified working conditions, credit, land ownership and basic social services ", - "values": [ - "Women's rights" - ] - }, - { - "text": "Consider signing and ratifying ICESCR and ICCPR", - "values": [ - "CP rights - general", - "ESC rights - general", - "International instruments" - ] - }, - { - "text": "Continue efforts to combat all forms of racial discrimination making it possible for all persons to enjoy economic and social rights", - "values": [ - "ESC rights - general", - "Racial discrimination" - ] - }, - { - "text": "Establish effective measures to prevent mistreatment in detention centres and prisons, for example, through human rights training programmes for members of the police", - "values": [ - "Detention", - "Human rights education and training" - ] - }, - { - "text": "Take the necessary measures, including the reinforcement of the legal framework, to combat violence against women and early marriages", - "values": [ - "Rights of the Child", - "Women's rights" - ] - }, - { - "text": "Continue strengthening its social protection programme that is already implementing, in order to provide for even greater well-being quality for its people", - "values": [ - "ESC rights - general" - ] - }, - { - "text": "Conduct an investigation on allegations of excessive use of force against suspects and prisoners, and establish training programmes to prevent such incidents from recurring", - "values": [ - "Detention", - "Human rights education and training" - ] - }, - { - "text": "Formulate programmes for the effective implementation of the National Action Plan for Democracy and Human Rights ", - "values": [ - "General" - ] - }, - { - "text": "Strengthen the SAFENET referral system for women who are victims of violence, establish shelters for women in all provinces of the Solomon Islands, and ensure that they are accessible without discrimination, including to women with disabilities", - "values": [ - "Disabilities", - "Women's rights" - ] - }, - { - "text": "Continue its efforts to allocate sufficient pedagogical resources to support the right to education of the indigenous peoples of Norway ", - "values": [ - "Indigenous peoples", - "Right to education" - ] - }, - { - "text": "Adopt and implement firmly all necessary measures to improve and ensure respect of the rights of people belonging to minorities", - "values": [ - "Minorities" - ] - }, - { - "text": "Adopt and implement the draft Act on the protection of rights of persons with disabilities in line with the Convention on the Rights of Persons with Disabilities ", - "values": [ - "Disabilities", - "International instruments" - ] - }, - { - "text": "Demobilize, within the guerrilla and the paramilitaries, children combatants who have been forcibly recruited.", - "values": [ - "Rights of the Child" - ] - }, - { - "text": "Continue to promote programmes for access to education for all, in particular in primary education ", - "values": [ - "Right to education" - ] - }, - { - "text": "Continue implementing the recommendations arising from the national consultation on quality education", - "values": [ - "Right to education" - ] - }, - { - "text": "Remove the paragraph prescribing the death penalty as legal punishment by law", - "values": [ - "Death penalty" - ] - }, - { - "text": "Continue its constructive engagement with the Human Rights Council to enhance its capacity to improve the human rights situation in the country, especially in strengthening the administration of justice ", - "values": [ - "Justice" - ] - }, - { - "text": "Strengthen, through community action committees, awareness among the population in order to combat the slow change mentality vis-à-vis harmful practice ", - "values": [ - "Human rights education and training", - "Torture and other CID treatment" - ] - }, - { - "text": "Continue promoting tolerance towards persons of different ethnic origins", - "values": [ - "Minorities" - ] - }, - { - "text": "Provide demobilized children with assistance and penalize those responsible for their recruitment ", - "values": [ - "International humanitarian law", - "Rights of the Child" - ] - }, - { - "text": "Spare no effort to promote the holistic development of its children and youths, in particular those from the most vulnerable families to enhance social mobility and to break the vicious intergenerational cycle of poverty", - "values": [ - "Poverty", - "Rights of the Child" - ] - }, - { - "text": "Strictly enforce relevant regulations including the Employment of Foreign Manpower Act and the Passport Act, which prohibit employers to hold on to passports, travel documents and work permits of their foreign workers ", - "values": [ - "Labour", - "Migrants" - ] - }, - { - "text": "Continue to prioritize delivery of basic social services, such as primary education and health, giving particular attention to increasing access, improving infrastructure and curbing discriminatory practices, including in rural areas", - "values": [ - "Right to education", - "Right to health" - ] - }, - { - "text": "Stick to its present course, which is directed towards the improvement of all as well as to the effective promotion and protection of human rights", - "values": [ - "General" - ] - }, - { - "text": "Increase funding to the health sector to the levels committed to in the Abuja Declaration and particularly increase the general health infrastructure, the patient to medical staff ratio and improve health-care access for women from poor and/or rural backgrounds", - "values": [ - "Right to health", - "Women's rights" - ] - }, - { - "text": "Take steps to ratify and implement CRPD", - "values": [ - "Disabilities", - "International instruments" - ] - }, - { - "text": "Develop and implement a national action plan for human rights in order to framework a systematic and comprehensive approach to the promotion and protection of human rights ", - "values": [ - "General" - ] - }, - { - "text": "Consider accession to the main regional and international human rights instruments ", - "values": [ - "International instruments" - ] - }, - { - "text": "End the practice of forced detention of dissenters in the so-called "reeducation camps" and investigate all allegations of torture and ill-treatment therein", - "values": [ - "Detention", - "Torture and other CID treatment" - ] - }, - { - "text": "Provide space for civil society organizations in line with international standards and best practices, and in this respect, release from prison those human rights defenders who called for the full abolition of slavery", - "values": [ - "Civil society", - "Detention", - "Human rights defenders" - ] - }, - { - "text": "Harmonize Law 293 on domestic violence to ensure it is in line with the Convention on the Elimination of All Forms of Discrimination against Women, and allocate human, institutional and financial resources for its proper implementation", - "values": [ - "International instruments", - "Rights of the Child", - "Women's rights" - ] - }, - { - "text": "That no effort be spared for the improvement of the current status and living conditions of the Crimean Tatars along with the other minorities", - "values": [ - "Minorities" - ] - }, - { - "text": "Take further measures to combat racist manifestations, in particular against Roma people ", - "values": [ - "Minorities", - "Racial discrimination" - ] - }, - { - "text": "Take all necessary measures to put in place a national human rights institution in conformity with the Paris Principles", - "values": [ - "National Human Rights Institution" - ] - }, - { - "text": "Reinforce and widen the scope of laudable initiatives such as the rationalization by the National Institute of Statistics of investment on social issues such as health infrastructure, access to water and sanitation, and curbing HIV/AIDS", - "values": [ - "HIV - Aids", - "Right to health", - "Right to water and sanitation" - ] - }, - { - "text": "Set up a national strategy to combat all forms of slavery", - "values": [ - "Other" - ] - }, - { - "text": "Put an end to the death penalty", - "values": [ - "Death penalty" - ] - }, - { - "text": "Draft a plan to combat violence against women, and establish reliable indicators in this field", - "values": [ - "Women's rights" - ] - }, - { - "text": "Improve governance and enjoyment of human rights through improved budgetary accountability and work to combat corruption, including by extending the transparency principles of the Extractive Industries Transparency Initiative to its budgetary process ", - "values": [ - "Business and human rights", - "Corruption" - ] - }, - { - "text": "Fight impunity and hold all officers and persons acting on behalf of the authorities accountable for all acts of torture and harassment of civilians ", - "values": [ - "Human rights violations by state agents", - "Impunity", - "Torture and other CID treatment" - ] - }, - { - "text": "Design and implement a series of measures to combat discriminatory stereotypes, including stereotypes based on gender", - "values": [ - "Women's rights" - ] - }, - { - "text": "Continue to take measures for extending the population's access to the health system as well as develop the social protection system ", - "values": [ - "Right to health" - ] - }, - { - "text": "Prohibit and prosecute hate speech and discriminatory practices that incite violence towards minorities, and especially clearly endorse non-discrimination and the right of all individuals in Rakhine State to equal protection under the law", - "values": [ - "Minorities", - "Racial discrimination" - ] - }, - { - "text": "Ratify the Optional Protocol of the CRPD, as well as the OP-CESCR ", - "values": [ - "Disabilities", - "ESC rights - general", - "International instruments" - ] - }, - { - "text": "Guarantee full implementation of all European Court of Human Rights rulings within an adequate time frame", - "values": [ - "Other" - ] - }, - { - "text": "Continue efforts to implement the existing strategies and action plans to combat trafficking in human beings and to establish channels and mechanisms for international cooperation in this field", - "values": [ - "Technical assistance and cooperation", - "Trafficking" - ] - }, - { - "text": "Create conditions favourable to inter-ethnic tolerance in Cambodia for the democratic future of the country ", - "values": [ - "Minorities" - ] - }, - { - "text": "Continue their efforts in enhancing the role of persons with disabilities in society ", - "values": [ - "Disabilities" - ] - }, - { - "text": "Improve the conditions in pretrial detention facilities", - "values": [ - "Detention" - ] - }, - { - "text": "Ratify the OP-ICESCR ", - "values": [ - "ESC rights - general", - "International instruments" - ] - }, - { - "text": "Review its policy with respect to the ratification of ILO Convention No. 111", - "values": [ - "International instruments", - "Labour" - ] - }, - { - "text": "Strengthen measures for the development of effective mechanisms to help combat impunity, including strengthening of the judiciary.", - "values": [ - "Impunity", - "Justice" - ] - }, - { - "text": "Redouble its efforts to enforce the relevant legislation such as the Combating of Rape Act to eliminate all forms of gender-based violence, and continue the ongoing efforts to address the root causes and contributing factors of the violence", - "values": [ - "Women's rights" - ] - }, - { - "text": "Withdraw any reference in identity documents which would allow for the identification of children born outside of wedlock and repeal all discriminatory provisions regarding such children, in particular in the Family Code", - "values": [ - "Rights of the Child" - ] - }, - { - "text": "Expedite the operationalization of the National Policy and Action Plan on Human Rights for more concrete action in this regard", - "values": [ - "General" - ] - }, - { - "text": "Comply with international humanitarian law provisions, in particular with the IV Geneva Convention", - "values": [ - "International humanitarian law", - "International instruments" - ] - }, - { - "text": "Recommended that the National Plan of Action provide specific benchmarks within a given timeframe", - "values": [ - "General" - ] - }, - { - "text": "Harmonize its national legislation with the Rome Statute of the International Criminal Court, and accelerate the process to approve the draft law to adhere to the Second Optional Protocol to the International Covenant on Civil and Political Rights, and thus eliminate the death penalty", - "values": [ - "Death penalty", - "International instruments", - "Justice" - ] - }, - { - "text": "Adopt legislative measures to bring the age of criminal responsibility into conformity with international standards ", - "values": [ - "Justice", - "Rights of the Child" - ] - }, - { - "text": "Further strengthen efforts to prevent and combat trafficking in persons and the sexual exploitation of children ", - "values": [ - "Rights of the Child", - "Trafficking" - ] - }, - { - "text": "Ensure equal access of all candidates to the media, avoid manipulation of voters and foster a culture of dialogue amongst all political parties ", - "values": [ - "Elections", - "Freedom of association and peaceful assembly" - ] - }, - { - "text": "Ensure access to justice for vulnerable groups, especially women and children, whom have been victimized by violence and abuse", - "values": [ - "Rights of the Child", - "Women's rights" - ] - }, - { - "text": "End the practice of governmental appointment of editors and senior managers to all media outlets in the country to foster a more independent media.", - "values": [ - "Freedom of the press" - ] - }, - { - "text": "Ensure respect for the human rights of Bolivians who go to and return from Chilean territory, especially in situations that can lead to arbitrary detention, on the understanding that every person has the right to move freely, in particular the right to leave and return to his/her country ", - "values": [ - "Detention", - "Freedom of movement", - "Migrants" - ] - }, - { - "text": "Endorse a closer cooperation with national and international human rights institutions, and work for the full and effective participation of young people and youth-led organizations at all levels (from local to international) ", - "values": [ - "National Human Rights Institution" - ] - }, - { - "text": "Ratify the Optional Protocol to CRC on the involvement of children in armed conflict", - "values": [ - "International humanitarian law", - "International instruments", - "Rights of the Child" - ] - }, - { - "text": "Implement the Sorcery and Witchcraft Accusation National Action Plan without delay", - "values": [ - "Rights of the Child", - "Women's rights" - ] - }, - { - "text": "Improve efforts to address human trafficking by strengthening procedures for identifying victims of trafficking", - "values": [ - "Trafficking" - ] - }, - { - "text": "Effectively apply resolution 1325 of the Security Council concerning women's participation in decision-making", - "values": [ - "Women's rights" - ] - }, - { - "text": "Take measures to allocate to the National Human Rights Commission the necessary human and financial resources to fulfil its mandate", - "values": [ - "National Human Rights Institution" - ] - }, - { - "text": "Continue efforts to counter violence against women and to promote equality between women and men, including by conducting awareness-raising programmes for the public on the subject", - "values": [ - "Human rights education and training", - "Women's rights" - ] - }, - { - "text": "Amend the Criminal Code to provide that crimes motivated by discrimination on the grounds of sexual orientation or gender identity are investigated and prosecuted as hate crimes", - "values": [ - "Sexual Orientation and Gender Identity" - ] - }, - { - "text": "Participate more actively in the international programs of technical assistance and capacity-building in the field of human rights ", - "values": [ - "Technical assistance and cooperation" - ] - }, - { - "text": "Ensure that all allegations of violent acts perpetrated by security forces or penitentiary personnel be the subject of a prompt, independent and effective investigation to avoid impunity ", - "values": [ - "Detention", - "Human rights violations by state agents", - "Impunity" - ] - }, - { - "text": "Criminalize torture in its penal code and ratify OP-CAT ", - "values": [ - "Detention", - "International instruments", - "Torture and other CID treatment" - ] - }, - { - "text": "Continue its efforts to ensure the rule of law in its national development ", - "values": [ - "Justice" - ] - }, - { - "text": "Provide a mid-term update on the implementation of the recommendations of this UPR", - "values": [ - "UPR process" - ] - }, - { - "text": "Consider ratifying the Palermo Protocol to Prevent, Suppress and Punish Trafficking in Persons, Especially Women and Children", - "values": [ - "International instruments", - "Rights of the Child", - "Trafficking", - "Women's rights" - ] - }, - { - "text": "Continue its efforts in combatting discrimination of women, particularly in its public policies for immigrant women and refugee women as well as those belonging to minorities, which CEDAW pointed out may be subject to multiple forms of discrimination in respect of education, heath, employment and social and political participation ", - "values": [ - "Asylum-seekers - refugees", - "Migrants", - "Minorities", - "Racial discrimination", - "Treaty bodies", - "Women's rights" - ] - }, - { - "text": "Continue with the implementation of the National Strategic Plan for the Advancement of Women", - "values": [ - "Women's rights" - ] - }, - { - "text": "Step up efforts to expedite the judicial reform process to ensure guaranteed access to justice and the provision of timely, efficient, effective and high-quality services for the people of Ecuador ", - "values": [ - "Justice" - ] - }, - { - "text": "Take measures to ensure that laws that require publishers to print responses to any statement of fact that impinges on the honour and reputation of a person or legal entity do not become subject to abuse by the authorities or different interest groups.", - "values": [ - "Freedom of the press" - ] - }, - { - "text": "Hasten the submission of the juvenile justice bill, aimed at establishing a juvenile justice and welfare system in the country", - "values": [ - "Justice", - "Rights of the Child" - ] - }, - { - "text": "Adopt appropriate measures to disseminate widely and ensure full observance of the Declaration of Human Rights Defenders ", - "values": [ - "Human rights defenders" - ] - }, - { - "text": "Develop a strong institutional framework that will help to combat racism and create an atmosphere of racial tolerance in Russian society ", - "values": [ - "Racial discrimination" - ] - }, - { - "text": "Further strengthen the social security system and effectively protect the rights of vulnerable groups", - "values": [ - "ESC rights - general" - ] - }, - { - "text": "Ensure that discrimination based on sexual orientation and gender identity are specifically included in the Anti-Discrimination Act and related programmes", - "values": [ - "Sexual Orientation and Gender Identity" - ] - }, - { - "text": "Continue its efforts with the view of the prompt approval of the legislation in the area of the protection of the rights of the child ", - "values": [ - "Rights of the Child" - ] - }, - { - "text": "Investigate and bring to justice all perpetrators of human rights violations at the earliest", - "values": [ - "Justice" - ] - }, - { - "text": "Adopt and implement effective laws to prevent, suppress and eliminate discrimination against women and to combat domestic violence.", - "values": [ - "Women's rights" - ] - }, - { - "text": "Continue working to promote gender equality in the country ", - "values": [ - "Women's rights" - ] - }, - { - "text": "Proceed to the signature and ratification of the main international human rights instruments that has not already signed and ratified, including the Optional Protocol to the Convention on the Rights of the Child on the participation of children in armed conflict and the Optional Protocol to the Convention on the Rights of the Child on the sale of children, child prostitution and child pornography, whose signature and ratification was itself accepted in the previous review", - "values": [ - "International humanitarian law", - "International instruments", - "Rights of the Child", - "Trafficking", - "UPR process" - ] - }, - { - "text": "Improve further the situation of children, boys and girls alike, through the necessary review of laws and regulations ", - "values": [ - "Rights of the Child" - ] - }, - { - "text": "Extend for all access to the rights to healthcare, social security, and minimum wage without ethnic distinction or linguistic barriers", - "values": [ - "ESC rights - general", - "Labour", - "Minorities", - "Right to health" - ] - }, - { - "text": "Increase the access of children to information and education about sexual and reproductive health and rights, including in schools, as well as access to sexual reproductive health services", - "values": [ - "Right to health", - "Rights of the Child" - ] - }, - { - "text": "Ratify the Second Optional Protocol to ICCPR as soon as possible", - "values": [ - "Death penalty", - "International instruments" - ] - }, - { - "text": "Intensify efforts to address factors contributing to women being disproportionately affected by poverty, especially single mothers and women of old age, including by ensuring adequate social protection and safeguards, providing opportunities for additional income generation and improving child care facilities", - "values": [ - "Poverty", - "Women's rights" - ] - }, - { - "text": "Strengthen efforts to ensure better participation of women at the political level ", - "values": [ - "Women's rights" - ] - }, - { - "text": "Continue its programme to improve social and living conditions in rural areas ", - "values": [ - "Development" - ] - }, - { - "text": "Sign the 1951 Convention relating to the Status of Refugees and its 1967 Protocol", - "values": [ - "Asylum-seekers - refugees", - "International instruments" - ] - }, - { - "text": "Consider ratifying the remaining United Nations core treaties, in particular the International Covenant on Civil and Political Rights and the International Covenant on Economic, Social and Cultural Rights, and conclude the ratification of the two Optional Protocols to the Convention on the Rights of the Child", - "values": [ - "CP rights - general", - "ESC rights - general", - "International instruments", - "Rights of the Child" - ] - }, - { - "text": "Speed up the process to promote more participation of women in public offices", - "values": [ - "Women's rights" - ] - }, - { - "text": "Chad was committed to stepping up its efforts and allocating all available resources to ensure that the promotion and protection of human rights were an absolute priority for the Government.", - "values": [ - "General" - ] - }, - { - "text": "Pay particular attention to the rights of the child, especially in combating trafficking and exploitation", - "values": [ - "Rights of the Child", - "Trafficking" - ] - }, - { - "text": "Revise the Press Code so that it would be in conformity with the international standards and take necessary measures to effectively apply the principles of freedom stipulated in the Constitution ", - "values": [ - "Freedom of the press" - ] - }, - { - "text": "Pay special attention to racially motivated crimes and strengthen its efforts to address them ", - "values": [ - "Racial discrimination" - ] - }, - { - "text": "Establish a special section with sufficient powers and resources within the Ombudsperson's office, or task a deputy with addressing child issues exclusively", - "values": [ - "National Human Rights Institution", - "Rights of the Child" - ] - }, - { - "text": "Establish a timeline to present anti-discrimination legislation to the National Assembly, and repeal article 92 (6) of the Military Criminal Act to end restrictions on consensual same sex relations", - "values": [ - "Sexual Orientation and Gender Identity" - ] - }, - { - "text": "Ensure a gender perspective in all fields and stimulate women's participation in public life, while putting emphasis on the situation in local and rural communities.", - "values": [ - "Women's rights" - ] - }, - { - "text": "Allocate resources equitably and implement food security policies, including through sustainable agricultural practices and reduced State restrictions on the cultivation and trade of foodstuffs ", - "values": [ - "Right to food" - ] - }, - { - "text": "Review existing laws and policies and repeal or amend where necessary to ensure their compatibility with the right to freedom of religion or belief, in line with Indonesia's Constitution and its international obligations ", - "values": [ - "Freedom of religion and belief" - ] - }, - { - "text": "Continue developing adequate measures to guarantee in law and practice the equality of women, particularly their right to education, and fight effectively discrimination against women and gender violence", - "values": [ - "Right to education", - "Women's rights" - ] - }, - { - "text": "Consider establishing an official moratorium on the use of death penalty with a view to abolishing it, as provided by General Assembly resolutions 62-149 and 63-168", - "values": [ - "Death penalty" - ] - }, - { - "text": "Develop an awareness campaign to address traditional beliefs that are harmful to the rights of children, especially their right to life.", - "values": [ - "Human rights education and training", - "Other", - "Rights of the Child" - ] - }, - { - "text": "Promote a safe and favourable environment that allows individuals and groups to exercise the freedoms of expression, association and peaceful assembly and put an end to harassment, intimidation, arbitrary arrests and physical attacks, particularly in the context of peaceful demonstrations ", - "values": [ - "Detention", - "Freedom of association and peaceful assembly", - "Freedom of opinion and expression" - ] - }, - { - "text": "Ratify the Optional Protocol to CAT and the Optional Protocol to ICESCR", - "values": [ - "Detention", - "ESC rights - general", - "International instruments", - "Torture and other CID treatment" - ] - }, - { - "text": "Remove the statute of limitations for the crime of torture", - "values": [ - "Torture and other CID treatment" - ] - }, - { - "text": "Continue its efforts to cooperate with the Special Rapporteur on the situation of human rights defenders, to ensure that all allegations of improper use of criminal laws against journalists and dissenting voices, including human rights defenders, are investigated in an effective, impartial and prompt manner", - "values": [ - "Freedom of opinion and expression", - "Freedom of the press", - "Human rights defenders", - "Special procedures" - ] - }, - { - "text": "In line with the recommendations of the Human Rights Committee with regards to discrimination against women, take measures to ensure that national laws, customary laws and some aspects of Sharia law be interpreted and implemented in accordance with the principle of what most favors the individual", - "values": [ - "Treaty bodies", - "Women's rights" - ] - }, - { - "text": "Ensure that the establishment of an expert group on abortion matters will lead to a coherent legal framework including the provision of adequate services", - "values": [ - "Women's rights" - ] - }, - { - "text": "Take effective measures to end the practice of early, forced and child marriage, including by setting a minimum marriage age of 18 years for both genders ", - "values": [ - "Rights of the Child", - "Women's rights" - ] - }, - { - "text": "In line with the rules 83-85 of the United Nations Standard Minimum Rules for the Treatment of Prisoners, "the Nelson Mandela rules", to create an external, independent inspection body that has access to all categories of prisoners in all places of detention that are under the Ministry of Justice", - "values": [ - "Detention" - ] - }, - { - "text": "Take measures to ensure equitable access of indigenous children, migrant children and those living in rural areas to education and health services and improve their standard of living ", - "values": [ - "Rights of the Child" - ] - }, - { - "text": "Abolish de jure the death penalty and ratify ICCPR-OP 2 ", - "values": [ - "Death penalty", - "International instruments" - ] - }, - { - "text": "Enact the child rights bill", - "values": [ - "Rights of the Child" - ] - }, - { - "text": "Become party to and implement the International Covenant on Economic, Social and Cultural Rights and the First Optional Protocol to the International Covenant on Civil and Political Rights as soon as possible", - "values": [ - "CP rights - general", - "ESC rights - general", - "International instruments" - ] - }, - { - "text": "Continue to consolidate its national education system, according to the needs of its people with the aim of advancing development and social well-being so that the international community may offer the technical assistance and cooperation which the country needs", - "values": [ - "Development", - "ESC rights - general", - "Technical assistance and cooperation" - ] - }, - { - "text": "Comprehensively improve the effectiveness of measures to protect the rights of the child", - "values": [ - "Rights of the Child" - ] - }, - { - "text": "Strengthen the capacities of its reporting system in order to tackle its backlog in reporting to treaty bodies", - "values": [ - "Treaty bodies" - ] - }, - { - "text": "Improve the situation of women and continue efforts to combat violence against women", - "values": [ - "Women's rights" - ] - }, - { - "text": "Consider the possibility of expressing its consent to ratify the Convention against Torture and Other Cruel, Inhuman or Degrading Treatment or Punishment", - "values": [ - "International instruments", - "Torture and other CID treatment" - ] - }, - { - "text": "Step up legal protection to Malagasy women to protect against violence, including by making marital rape a criminal offence", - "values": [ - "Women's rights" - ] - }, - { - "text": "Amend the Child Labour Act to ban child labour, and to sign and ratify ILO Conventions 138 concerning Minimum Age for Admission to Employment and 182 concerning the prohibition and immediate action for the elimination of the worst forms of child labour and elaborate a timeline for the ratification of these instruments ", - "values": [ - "International instruments", - "Labour", - "Rights of the Child" - ] - }, - { - "text": "Promote human rights education and training, particularly among such administrators of justice as police officers, judges and prosecutors", - "values": [ - "Human rights education and training" - ] - }, - { - "text": "Develop a comprehensive and coordinated national strategy to combat all forms of violence against women and girls, as recommended in 2008 by the Committee on the Elimination of Discrimination against Women ", - "values": [ - "Rights of the Child", - "Treaty bodies", - "Women's rights" - ] - }, - { - "text": "Review all laws with the aim at eliminating all discriminatory norms against women.", - "values": [ - "Women's rights" - ] - }, - { - "text": "Continue increasing educational enrollment at all its levels ", - "values": [ - "Right to education" - ] - }, - { - "text": "Continue its efforts to promote and protect human rights, in particular the economic, social and cultural rights of its citizens with the support and assistance of the international community ", - "values": [ - "ESC rights - general", - "Technical assistance and cooperation" - ] - }, - { - "text": "Ensure the regular training for judges, prosecutors, the representatives of the police and other law enforcement agencies on human rights, non-discrimination and the legally binding nature of international law", - "values": [ - "Human rights education and training" - ] - }, - { - "text": "Strengthen efforts to ensure eradication of child labour by introducing penalties for violating the provisions on employing children and young persons", - "values": [ - "Labour", - "Rights of the Child" - ] - }, - { - "text": "Prohibit all forms of discrimination and violence against women ", - "values": [ - "Women's rights" - ] - }, - { - "text": "Ensure that the Gender Identity Law that is currently before Congress is adopted and implemented", - "values": [ - "Sexual Orientation and Gender Identity" - ] - }, - { - "text": "Take more resolute action to combat hate speech and incitement to hatred, including in the media, against members of religious and ethnic minorities", - "values": [ - "Freedom of religion and belief", - "Minorities", - "Racial discrimination" - ] - }, - { - "text": "Ensure the precedence of provisions of international human rights treaties over national laws in cases of conflict", - "values": [ - "International instruments" - ] - }, - { - "text": "Include all migrants irrespective of their status within the national plans and programmes to integrate and ensure their human rights", - "values": [ - "Migrants" - ] - }, - { - "text": "Improve conditions in detention and prison facilities, including by increasing living space and improving access to healthcare services for detainees", - "values": [ - "Detention", - "Right to health" - ] - }, - { - "text": "Ratify CAT ", - "values": [ - "International instruments", - "Torture and other CID treatment" - ] - }, - { - "text": "Adopt in the period 2015-2020 the Act establishing the National Care System", - "values": [ - "Right to health" - ] - }, - { - "text": "Adopt effective measures to further strengthen the system for enforcement of the rights and the interests of children.", - "values": [ - "Rights of the Child" - ] - }, - { - "text": "Introduce additional measures to reduce the practice of detaining individuals solely for immigration purposes and consider using alternatives when possible", - "values": [ - "Detention", - "Migrants" - ] - }, - { - "text": "Continue efforts to improve the literacy rate among women", - "values": [ - "Right to education", - "Women's rights" - ] - }, - { - "text": "Bridge the gaps left by the amended law on registered Palestinian Refugees, such as allowing Palestinian refugees to extract temporary work permits", - "values": [ - "Asylum-seekers - refugees", - "Labour" - ] - }, - { - "text": "Pursue efforts to counter trafficking in women and children ", - "values": [ - "Rights of the Child", - "Trafficking", - "Women's rights" - ] - }, - { - "text": "Consider the abolition of the death penalty ", - "values": [ - "Death penalty" - ] - }, - { - "text": "Finalize the procedure to ratify the International Convention for the Protection of All Persons from Enforced Disappearance", - "values": [ - "Enforced disappearances", - "International instruments" - ] - }, - { - "text": "Take further efforts against the trafficking of children and eliminate child labour by enforcing compulsory education", - "values": [ - "Labour", - "Rights of the Child", - "Trafficking" - ] - }, - { - "text": "Continue further efforts to foster the principle of tolerance among various segments of the Iraqi society", - "values": [ - "Other" - ] - }, - { - "text": "Strengthen further the effective implementation of the National Plan of Action against Trafficking in Human Beings, in line with suggestions made by CEDAW ", - "values": [ - "Trafficking", - "Treaty bodies" - ] - }, - { - "text": "Cooperate fully with the United Nations human rights mechanisms", - "values": [ - "Special procedures", - "Treaty bodies", - "UPR process" - ] - }, - { - "text": "Take the necessary steps to address concerns over the rights of vulnerable groups, including internally displaced persons, refugees and migrants, and carry forward measures to integrate them effectively into the broader social and political systems", - "values": [ - "Asylum-seekers - refugees", - "Internally displaced persons", - "Migrants" - ] - }, - { - "text": "Implement the report of the National Inquiry Commission and the commitments taken to fight against impunity, by prosecuting the presumed perpetrators of human rights abuses during the post-electoral crisis regardless of their political affiliation", - "values": [ - "Impunity", - "Justice" - ] - }, - { - "text": "Take appropriate measures to bring domestic legislation in line with international human rights standards", - "values": [ - "International instruments" - ] - }, - { - "text": "Consider establishing an independent national human rights institution in accordance with the Paris Principles, as suggested by the Committee on Economic, Social and Cultural Rights and the Committee on the Elimination of Racial Discrimination.", - "values": [ - "National Human Rights Institution", - "Treaty bodies" - ] - }, - { - "text": "Build institutional capacity for effectiveness in the prevention of and response to gender-based violence", - "values": [ - "Women's rights" - ] - }, - { - "text": "Ensure that the procedures for the registration of civil society organizations are transparent, non-discriminatory and expeditious", - "values": [ - "Civil society" - ] - }, - { - "text": "Ratify the Optional Protocol to the Convention on the Rights of the Child on the involvement of children in armed conflict and the Optional Protocol to the Convention on the Rights of the Child on the sale of children, child prostitution and child pornography", - "values": [ - "International humanitarian law", - "International instruments", - "Labour", - "Rights of the Child", - "Trafficking" - ] - }, - { - "text": "Carry out information campaigns to prevent racist and xenophobic acts ", - "values": [ - "Racial discrimination" - ] - }, - { - "text": "Continue the promotion of education in the field of human rights and dissemination of knowledge among the public about the international human rights standards", - "values": [ - "Human rights education and training", - "International instruments" - ] - }, - { - "text": "Strengthen human rights education, specifically in order to address effectively the phenomenon of gender-based and caste-based discrimination.", - "values": [ - "Human rights education and training", - "Minorities", - "Women's rights" - ] - }, - { - "text": "Ratify the Optional Protocols to the CRC ", - "values": [ - "International instruments", - "Rights of the Child" - ] - }, - { - "text": "Undertake measures to enhance the participation of women in legislative, judicial and executive bodies ", - "values": [ - "Women's rights" - ] - }, - { - "text": "Ban FGM by amending the penal code and implement a total elimination of such practice ", - "values": [ - "Rights of the Child", - "Torture and other CID treatment", - "Women's rights" - ] - }, - { - "text": "Repeal all relevant provisions in the legislation that are contrary to the country's international obligations with regards to the respect, protection and promotion of the right to freedom of expression ", - "values": [ - "Freedom of opinion and expression" - ] - }, - { - "text": "Expedite the legislative process to bring the juvenile justice system in line with the standards of the Convention on the Rights of the Child, and additionally strengthen training programmes for police officers and the judiciary ", - "values": [ - "Human rights education and training", - "International instruments", - "Justice", - "Rights of the Child" - ] - }, - { - "text": "Adopt and implement appropriate measures to humanize its penitentiary system in accordance with international standards ", - "values": [ - "Detention" - ] - }, - { - "text": "Continue to give political attention, commitment and concrete action on the issue of combating any discriminatory practices against the Roma minority", - "values": [ - "Minorities" - ] - }, - { - "text": "Accelerate the entry into force of the amendments to the Swiss Law on Asylum concerning judicial assistance", - "values": [ - "Asylum-seekers - refugees" - ] - }, - { - "text": "Emphasize the measures addressed to reduce poverty and inequality ", - "values": [ - "Poverty" - ] - }, - { - "text": "Implement public awareness campaigns to promote tolerance and respect for cultural diversity", - "values": [ - "Human rights education and training" - ] - }, - { - "text": "Further empowerment of the Legislation Department of the Ministry of Justice in the area of specialized human resources, professional staff and other necessary facilities ", - "values": [ - "Justice" - ] - }, - { - "text": "Address the root cause of illegal drugs through development", - "values": [ - "Development" - ] - }, - { - "text": "Ensure the integration and effective implementation of strategies on drop-out rate reduction, child labour elimination and poverty alleviation ", - "values": [ - "Labour", - "Poverty", - "Right to education", - "Rights of the Child" - ] - }, - { - "text": "Consider the issue of introducing a moratorium for capital punishment", - "values": [ - "Death penalty" - ] - }, - { - "text": "Ratify the Arms Trade Treaty", - "values": [ - "International instruments" - ] - }, - { - "text": "Consider drawing up and implementing a national human rights programme that addresses comprehensively issues such as public safety and violence, taking into account all social actors", - "values": [ - "Public security" - ] - }, - { - "text": "Continue its cooperation with the international community in solving humanitarian issues of mutual concern ", - "values": [ - "Other" - ] - }, - { - "text": "Make every effort to eliminate domestic violence, with special attention to enacting and implementing a comprehensive legal framework addressing all forms of violence against women, sharing the international communities' concerns on the lack of laws specifically prohibiting violence against women and girls within the family ", - "values": [ - "Rights of the Child", - "Women's rights" - ] - }, - { - "text": "Take all necessary legislative and policy measures to ensure that persons with disabilities have appropriate employment opportunities and children with disabilities have access to quality education", - "values": [ - "Disabilities", - "Labour", - "Right to education", - "Rights of the Child" - ] - }, - { - "text": "Introduce legislation to prohibit corporal punishment of children in all settings ", - "values": [ - "Rights of the Child", - "Torture and other CID treatment" - ] - }, - { - "text": "Continue its civilized choice aimed at strengthening dialogue among religions and spreading the values of moderation and tolerance", - "values": [ - "Freedom of religion and belief" - ] - }, - { - "text": "Accelerate the development of a national human rights action plan", - "values": [ - "General" - ] - }, - { - "text": "Prevent discrimination or trafficking of migrant workers, establish warning mechanism and complaints mechanisms in case of violations and carry out awareness campaigns on their rights", - "values": [ - "Human rights education and training", - "Labour", - "Migrants", - "Trafficking" - ] - }, - { - "text": "Continue to make efforts to implement National Child Protection Strategy", - "values": [ - "Rights of the Child" - ] - }, - { - "text": "Take practical steps to address the problems of street children and take effective measures to eliminate prohibited child labour ", - "values": [ - "Labour", - "Rights of the Child" - ] - }, - { - "text": "Continue to intensify efforts to ratify the International Convention for the Protection of all Persons against Enforced Disappearance ", - "values": [ - "Enforced disappearances", - "International instruments" - ] - }, - { - "text": "Make efforts to enhance security in the schools in order to increase the participation of children in the education system", - "values": [ - "Right to education", - "Rights of the Child" - ] - }, - { - "text": "Take immediate steps to restore race as a ground of discrimination in compliance with ICERD, and the European Union Racial Equality Directive", - "values": [ - "International instruments", - "Racial discrimination" - ] - }, - { - "text": "Speed up the process to conform its National Human Rights Institution to the Paris Principles ", - "values": [ - "National Human Rights Institution" - ] - }, - { - "text": "Continue cooperation with the United Nations system", - "values": [ - "Technical assistance and cooperation" - ] - }, - { - "text": "Pursue its policy of reform towards a fully independent judicial system", - "values": [ - "Justice" - ] - }, - { - "text": "Increase focus on supervisory and control mechanisms in the labour market. Develop a wider scope of protection against discrimination and more tools to address the rights of persons who are subject to human trafficking", - "values": [ - "Labour", - "Trafficking" - ] - }, - { - "text": "Strengthen the enforcement of the Anti-Discrimination Act and the implementation of the Roma Integration Strategy with a view to achieving concrete and measurable progress in fighting all kinds of discrimination in society", - "values": [ - "Minorities", - "Racial discrimination" - ] - }, - { - "text": "Strengthen programmes to fight poverty ", - "values": [ - "Poverty" - ] - }, - { - "text": "Take all necessary steps to accelerate the enforcement of the law regarding the acceptance and integration of foreigners ", - "values": [ - "Migrants" - ] - }, - { - "text": "Take all the necessary measures to prevent and combat violence, including violence against women, by establishing a coordinating body for programmes and institutions created to address violence against women", - "values": [ - "Women's rights" - ] - }, - { - "text": "Adopt the additional necessary measures to ensure the full enjoyment of human rights by the vulnerable groups which are subjected to discrimination, such as lesbian, gay, bisexual, transgender and intersex persons, including the investigation and punishment of cases of discrimination, as well as the abrogation of norms that criminalize and stigmatize", - "values": [ - "Sexual Orientation and Gender Identity" - ] - }, - { - "text": "Ensure that senior State officials refrain from public statements degrading to women and inconsistent with the Turkish constitution and Islamic values", - "values": [ - "Women's rights" - ] - }, - { - "text": "Continue implementing measures to safeguard the rights of women, children and other marginalized and vulnerable segments of society", - "values": [ - "Rights of the Child", - "Women's rights" - ] - }, - { - "text": "Immediately cease its interference in the judiciary, and to ensure that judges are appointed and dismissed by means of an open and transparent process", - "values": [ - "Justice" - ] - }, - { - "text": "Strengthen poverty reduction and access to education and health services programmes ", - "values": [ - "Poverty", - "Right to education", - "Right to health" - ] - }, - { - "text": "Accede to the 1954 Convention relating to the Status of Stateless Persons and the 1961 Convention on the reduction of statelessness ", - "values": [ - "International instruments", - "Statelessness and the right to nationality" - ] - }, - { - "text": "Take steps to ensure greater independence of the judiciary, including through the establishment of a constitutional court and ombudsman system.", - "values": [ - "Justice" - ] - }, - { - "text": "Combat discrimination and harassment with regard to girls in schools", - "values": [ - "Right to education", - "Rights of the Child", - "Women's rights" - ] - }, - { - "text": "Further strengthen mechanisms fostering prosecution of all perpetrators of gender-based violence", - "values": [ - "Women's rights" - ] - }, - { - "text": "Establish an independent national human rights commission.", - "values": [ - "National Human Rights Institution" - ] - }, - { - "text": "Consider intensifying efforts to achieve further gains in the areas of poverty reduction the right to adequate housing the right to health, water and basic sanitation and the right to education for all sectors of society", - "values": [ - "Poverty", - "Right to education", - "Right to health", - "Right to housing", - "Right to water and sanitation" - ] - }, - { - "text": "Take comprehensive measures to improve the level of public security in the country and to combat terrorism and extremism", - "values": [ - "Public security" - ] - }, - { - "text": "Continue efforts to enable all households, schools and health centres to have access to safe drinking water and sanitation", - "values": [ - "Right to water and sanitation" - ] - }, - { - "text": "Strengthen the mandate, functions and resources of the Ombudsman's office in accordance with the Paris Principles, particularly by endowing it with means to act and investigate, and apply for its accreditation with the International Coordinating Committee of National Institutions for the Promotion and Protection of Human Rights ", - "values": [ - "National Human Rights Institution" - ] - }, - { - "text": "Eliminate the mandatory character of caning as a first step with a view to abolishing this practice altogether", - "values": [ - "Torture and other CID treatment" - ] - }, - { - "text": "Consider and address the issue of reportedly high number of children and adolescents in juvenile detention centres by applying child-friendly justice standards and encouraging the use of alternative sanctions and reintegration programmes ", - "values": [ - "Detention", - "Justice", - "Rights of the Child" - ] - }, - { - "text": "Speed up the reforms on the legislation for citizenship for children of Bahraini mother and non-Bahraini father", - "values": [ - "Women's rights" - ] - }, - { - "text": "Consider the possibility of introducing amendments to the legislation relating to combating domestic violence", - "values": [ - "Rights of the Child", - "Women's rights" - ] - }, - { - "text": "Raise the awareness of the security forces with regard to the national law applicable to the rights of asylum seekers and refugees", - "values": [ - "Asylum-seekers - refugees", - "Human rights education and training" - ] - }, - { - "text": "Enact the legislation to ensure the Right to Information and bring it in line with international human rights standards", - "values": [ - "Freedom of opinion and expression", - "International instruments" - ] - }, - { - "text": "Remove all policies targeting Rohingyas in Rakhine State, especially those that violate fundamental human rights, particularly those restricting freedom of travel, marriage, education, freedom of worship, two child policy applied only to them, denial of basic healthcare, and illegal construction of Buddhist settlements on their land, arbitrary taxes and exploitation", - "values": [ - "Freedom of religion and belief", - "Minorities", - "Racial discrimination" - ] - }, - { - "text": "Continue prioritizing the promotion of the right to education for all ", - "values": [ - "Right to education" - ] - }, - { - "text": "Continue the current policy vis-a-vis Somali refugees, based on solidarity and the protection of fundamental human rights ", - "values": [ - "Asylum-seekers - refugees" - ] - }, - { - "text": "Strengthen ongoing efforts related to all forms of discrimination against women and girls, including by effectively implementing and enforcing existing legislation in order to address stereotypes", - "values": [ - "Rights of the Child", - "Women's rights" - ] - }, - { - "text": "Continue adopting measures that contribute to the protection and social inclusion of persons with disabilities, particularly as regards the provision of social services", - "values": [ - "Disabilities" - ] - }, - { - "text": "Investigate violations and attacks against journalists in order to ensure the necessary judicial stability for a functioning media", - "values": [ - "Freedom of the press" - ] - }, - { - "text": "Consolidate access to information and culture for all people ", - "values": [ - "Freedom of opinion and expression" - ] - }, - { - "text": "Issue a standing invitation to all the Special Procedures of the Human Rights Council", - "values": [ - "Special procedures" - ] - }, - { - "text": "Adopt measures to address the commission of any criminal acts or violence directed towards people based on their actual or perceived race, national or ethnic origin, language, colour, religion, sex, age, mental or physical disability, sexual orientation, or any other similar factor ", - "values": [ - "Disabilities", - "Freedom of religion and belief", - "Minorities", - "Racial discrimination", - "Sexual Orientation and Gender Identity", - "Women's rights" - ] - }, - { - "text": "Ratify the Second Optional Protocol to the International Covenant on Civil and Political Rights with a view to abolishing the death penalty", - "values": [ - "Death penalty", - "International instruments" - ] - }, - { - "text": "Further strengthen the National Independent Human Rights Commission through provision of required resources ", - "values": [ - "National Human Rights Institution" - ] - }, - { - "text": "Implement awareness-raising activities on the provisions of the Family Code and strengthen the judicial structure designed to assure respect for the Code in order to build on progress to be made with the adoption of the Code, and seek the support and assistance of the international community.", - "values": [ - "Human rights education and training", - "Rights of the Child", - "Technical assistance and cooperation", - "Women's rights" - ] - }, - { - "text": "Efforts will be made to further the recent achievements in clearing the backlog in reporting under the relevant human rights treaties to which Sri Lanka is a State Party, to ensure timely reporting and follow-up", - "values": [ - "Treaty bodies" - ] - }, - { - "text": "Issue a standing invitation to Special Rapporteurs ", - "values": [ - "Special procedures" - ] - }, - { - "text": "Control and stop domestic violence levels, especially towards women and children, through the creation of national protection institutions and revise the reservations to the Convention on the Elimination of All Forms of Discrimination against Women, especially those regarding age of marriage and abolish the practice of domestic violence ", - "values": [ - "International instruments", - "Rights of the Child", - "Women's rights" - ] - }, - { - "text": "Adopt legal measures to criminalize violence against women", - "values": [ - "Women's rights" - ] - }, - { - "text": "Continue to consider greater interaction with international human rights mechanisms", - "values": [ - "General" - ] - }, - { - "text": "Continue to prepare reports in order to enhance and promote the human rights situation ", - "values": [ - "General" - ] - }, - { - "text": "Increase the representation of women within the State and local administration", - "values": [ - "Women's rights" - ] - }, - { - "text": "Lift the state of emergency that has been in effect since 1981 and replace the Emergency Law with a counterterrorism law that guarantees civil liberties", - "values": [ - "Counter-terrorism" - ] - }, - { - "text": "Elaborate and enact the anti-trafficking legislation in line with international norms and standards", - "values": [ - "Trafficking" - ] - }, - { - "text": "Establish a centralized national human rights institution which is in line with the Paris Principles", - "values": [ - "National Human Rights Institution" - ] - }, - { - "text": "Develop the legal framework imposing a prior authorization regime, in order to allow the emergence of a modern civil society", - "values": [ - "Civil society" - ] - }, - { - "text": "Continue its efforts aimed at protecting aid workers and relief convoys and take measures against banditry acts ", - "values": [ - "Public security" - ] - }, - { - "text": "Focus further on preventing religious intolerance, by strengthening measures to prevent and combat Islamophobia while implementing the circular on Flemish citizenship and integration policy", - "values": [ - "Freedom of religion and belief", - "Racial discrimination" - ] - }, - { - "text": "Make additional efforts to support the economic and social programmes which it has adopted as part of its national obligations under the International Covenant on Economic, Social and Cultural Rights and general human rights principles ", - "values": [ - "ESC rights - general", - "International instruments" - ] - }, - { - "text": "Recognize the competence of the Committee established under the Convention for the Protection of All Persons from Enforced Disappearance ", - "values": [ - "Enforced disappearances", - "International instruments", - "Treaty bodies" - ] - }, - { - "text": "Take additional measures to ensure a safe and enabling environment for human rights defenders without fear of reprisals, intimidation, violence or discrimination", - "values": [ - "Human rights defenders" - ] - }, - { - "text": "Continue its cooperation and interaction with the Council and its mechanisms and reinforce its achievements in the area of human rights ", - "values": [ - "Special procedures", - "Technical assistance and cooperation", - "UPR process" - ] - }, - { - "text": "Consider ratifying CRPD ", - "values": [ - "Disabilities", - "International instruments" - ] - }, - { - "text": "Ratify the Convention on the Non-Applicability of Statutory Limitations to War Crimes and Crimes against Humanity", - "values": [ - "International humanitarian law", - "International instruments", - "Justice" - ] - }, - { - "text": "Step up its efforts to adequately address the issues of gender inequality and gender-based violence through appropriate and concrete institutional, structural, cultural and awareness-raising measures ", - "values": [ - "Human rights education and training", - "Women's rights" - ] - }, - { - "text": "Consider increasing the funding of the National Preventive Mechanism, in order to support its work and the detention monitoring activities", - "values": [ - "Detention", - "Torture and other CID treatment" - ] - }, - { - "text": "Improve detention conditions and respect for judicial guarantees for inmates, fighting against torture and inhuman and degrading treatment in detention centers in line with commitments taken during the May 2008 UPR session", - "values": [ - "Detention", - "Torture and other CID treatment", - "UPR process" - ] - }, - { - "text": "Establish a moratorium on executions with a view to abolishing the death penalty", - "values": [ - "Death penalty" - ] - }, - { - "text": "Condemn acts of violence and human rights violations committed against persons because of their sexual orientation or gender identity and ensure adequate protection for human rights defenders who work on the rights of LGBT persons ", - "values": [ - "Sexual Orientation and Gender Identity" - ] - }, - { - "text": "Consider establishing an independent national human rights institution ", - "values": [ - "National Human Rights Institution" - ] - }, - { - "text": "Develop a national plan of action aimed at fostering a culture of human rights and at raising public awareness of human rights among the society", - "values": [ - "Human rights education and training" - ] - }, - { - "text": "Continue increasing the enrolment rate of children in primary schools and achieve equal gender opportunities, particularly in setting up policies that strengthen the rights of girls in education and provide education to all those who have been deprived (vulnerable groups), and improve the quality of the public education system ", - "values": [ - "Right to education", - "Rights of the Child", - "Women's rights" - ] - }, - { - "text": "Take steps towards ensuring that all remaining obstacles to the work of human rights defenders are quickly removed so that they can operate in an open and secure environment.", - "values": [ - "Human rights defenders" - ] - }, - { - "text": "Join the large number of States that have adopted a moratorium on executions or abolished the death penalty.", - "values": [ - "Death penalty" - ] - }, - { - "text": "Provide its police force with training to ensure respect for the right to freedom of religion", - "values": [ - "Freedom of religion and belief", - "Human rights education and training" - ] - }, - { - "text": "Strengthen measures to protect displaced persons and include them in public social development policies", - "values": [ - "Internally displaced persons" - ] - }, - { - "text": "Review conditions in all detention and prison facilities so that they comply with the Standards Minimum Rules for the Treatment of Prisoners.", - "values": [ - "Detention" - ] - }, - { - "text": "Strengthen its cooperation with national and international nongovernmental organizations in providing assistance to internally displaced persons", - "values": [ - "Internally displaced persons" - ] - }, - { - "text": "Enact a provincial legislation on domestic violence as well as an increased number of support structures for women on the provincial level", - "values": [ - "Rights of the Child", - "Women's rights" - ] - }, - { - "text": "Introduce legislation that allows for partial or segmented transfer of the legal capacity of a disabled person ", - "values": [ - "Disabilities" - ] - }, - { - "text": "Strengthen efforts to guarantee equal opportunities in the labour market, in particular for women from minority groups.", - "values": [ - "Labour", - "Minorities", - "Women's rights" - ] - }, - { - "text": "Ensure the compliance of the Senegalese Human Rights Committee with the Paris Principles", - "values": [ - "National Human Rights Institution" - ] - }, - { - "text": "Take swift and immediate measures to protect and promote human rights, especially the rights of large sectors of people displaced from areas affected by armed conflict, in accordance with international humanitarian law and international human rights law ", - "values": [ - "Internally displaced persons", - "International humanitarian law" - ] - }, - { - "text": "Speed up, with the cooperation of the Office of the High Commissioner and donor countries, the legal process to establish a national human rights institution in conformity with the Paris Principles, with material and human resources that guarantee its independence and good functioning", - "values": [ - "National Human Rights Institution", - "Technical assistance and cooperation" - ] - }, - { - "text": "End all indiscriminate bombings of residential areas, hospitals and all other civilian targets with immediate effect", - "values": [ - "International humanitarian law" - ] - }, - { - "text": "Issue a standing invitation to Special Procedures mandate holders", - "values": [ - "Special procedures" - ] - }, - { - "text": "Enforce legislation that criminalizes child trafficking, through investigation and prosecution of trafficking offenses, reconvene the Inter-Ministerial Steering Committee on Trafficking, and allocate specific funds to the committee for implementation of a national action plan", - "values": [ - "Rights of the Child", - "Trafficking" - ] - }, - { - "text": "Ensure the independence and impartiality of the judiciary, and independent and impartial investigations of all allegations of human rights violations ", - "values": [ - "Justice" - ] - }, - { - "text": "Increase women representation in Government to the 30 per cent guaranteed by the Constitution", - "values": [ - "Women's rights" - ] - }, - { - "text": "Intensify efforts to safeguard the rights of women and eliminate discriminatory practices against them ", - "values": [ - "Women's rights" - ] - }, - { - "text": "Extend its interdepartmental approach on domestic violence also towards forms of violence outside the family, for example gender-related violence and violence against LGBT people ", - "values": [ - "Sexual Orientation and Gender Identity", - "Women's rights" - ] - }, - { - "text": "Step up its efforts to accelerate the ratification, among others, of ICESCR as well as its Optional Protocol (OP-ICESCR), ICCPR and its first Optional Protocol (ICCPR-OP 1), CAT and its Optional Protocol (OP-CAT), CRC and its Optional Protocols (OP-CRC-AC and OP-CRC-SC), and the Optional Protocol to CEDAW (OP-CEDAW) ", - "values": [ - "International instruments" - ] - }, - { - "text": "Resolve fully the problem of the identification documents of the Palestinian refugees and modify legislative provisions and policies that have discriminatory consequences on the Palestinian population as compared to other non-citizens", - "values": [ - "Asylum-seekers - refugees" - ] - }, - { - "text": "Further intensify its efforts in the training of the State's authorities and the public in general regarding international human rights standards ", - "values": [ - "Human rights education and training", - "International instruments" - ] - }, - { - "text": "Undertake measures to improve the legislative base with the aim of increasing the effectiveness of institutions providing guardianship to unaccompanied children", - "values": [ - "Rights of the Child" - ] - }, - { - "text": "Incorporate into domestic legislation the provisions of the Convention on the Elimination of All Forms of Discrimination against Women and of the Convention on the Rights of the Child ", - "values": [ - "International instruments", - "Rights of the Child", - "Women's rights" - ] - }, - { - "text": "Recognize at the moment of ratification the CED's competence to receive and review communications from individuals, who allege that they are victims of violations in conformity with article 31 of the CED ", - "values": [ - "Enforced disappearances", - "International instruments" - ] - }, - { - "text": "Increase cooperation with the United Nations treaty bodies, including issuing a standing invitation, and permit the SR on the situation of human rights in Belarus to visit the country", - "values": [ - "Special procedures", - "Treaty bodies" - ] - }, - { - "text": "Ratify, without reservations, the Optional Protocol to ICESCR and the Convention Relating to the Status of Refugees, as well as its 1967 Protocol", - "values": [ - "Asylum-seekers - refugees", - "ESC rights - general", - "International instruments" - ] - }, - { - "text": "Take additional tangible steps to protect children, in particular to address their critical nutritional and health-care needs", - "values": [ - "Right to food", - "Right to health", - "Rights of the Child" - ] - }, - { - "text": "Implement strict judicial measures to fight impunity, including the investigation and prosecution of racial hatred and related violence through criminal legal proceedings and other measures ", - "values": [ - "Impunity", - "Racial discrimination" - ] - }, - { - "text": "Increase its provision of scholarships to students to study medicine and intensity efforts to optimize facilities and human resource utilization, focusing on efficient health system models ", - "values": [ - "Right to education", - "Right to health" - ] - }, - { - "text": "Make efforts to ensure that all Iraqis, including religious minorities, can participate in elections that are safe, fair and free of intimidation and violence", - "values": [ - "Elections", - "Minorities" - ] - }, - { - "text": "Enhance efforts to concretely recognize equal rights to all Iranian citizens, irrespective of their religious affiliation, including the rights to promote their religion, to change religion, to complete university studies and to be hired as civil servants or members of the armed forces", - "values": [ - "Freedom of religion and belief", - "Right to education" - ] - }, - { - "text": "Speed up its efforts to reduce poverty and unemployment in the country and seek broader international cooperation to deal with the threats posed by climate change ", - "values": [ - "Development", - "Environment", - "Poverty" - ] - }, - { - "text": "Consider ratifying those international human rights instruments to which the State is not yet a party ", - "values": [ - "International instruments" - ] - }, - { - "text": "Establish an independent body to safeguard the independence of the judiciary and to supervise the appointment, promotion and regulation of members of the profession", - "values": [ - "Justice" - ] - }, - { - "text": "Conduct a census of the population with disabilities so as to identify the types of disabilities involved, causes, potential levels of intervention including medical care and rehabilitation, education requirements, food and adequate housing appropriate to disabilities, technical aids and prosthesis, among others", - "values": [ - "Disabilities" - ] - }, - { - "text": "Take additional measures to achieve gender equality, including specific measures to eliminate gender discrimination and gender-based violence", - "values": [ - "Women's rights" - ] - }, - { - "text": "That those imprisoned, suspected of holding dissenting opinions, including human rights defenders, civil society activists and journalists, should be unconditionally released ", - "values": [ - "Civil society", - "Detention", - "Freedom of opinion and expression", - "Freedom of the press", - "Human rights defenders" - ] - }, - { - "text": "Establish an effective mechanism to identify victims of trafficking in human beings", - "values": [ - "Trafficking" - ] - }, - { - "text": "Strengthen measures aiming to make effective the rights of the Child from an integral perspective and based on the Convention on the Rights of the Child, particularly on issue of eradication of child labour, violence and sexual abuses and street children conditions", - "values": [ - "International instruments", - "Rights of the Child" - ] - }, - { - "text": "Ensure that asylum-seekers and irregular migrants are treated according to Greece's human rights obligations and strengthen all efforts to implement the national action plan on asylum reform and migration management ", - "values": [ - "Asylum-seekers - refugees", - "Migrants" - ] - }, - { - "text": "Additional measures to level educational opportunities will be introduced. Poland will spare no effort to enable preschool-age children to enjoy their rights, among others through the creation of amenable conditions for developing various forms of preschool education, particularly in rural areas. The planned strategy for the development of education in rural areas for 2007-2013 will be attuned to the Government Programme for the development of education in rural areas in the years 2008-2013. The strategic aim of the programme is to upgrade the quality and level of education in rural areas. Implementation of the measures facilitating access for children from rural areas and small towns to quality education will continue until 2013", - "values": [ - "Right to education", - "Rights of the Child" - ] - }, - { - "text": "Take effective measures, assigning adequate resources, to ensure respect for international standards, notably concerning the food, health and sanitation of persons deprived of their liberty, and accept the assistance and cooperation of international actors such as the ICRC", - "values": [ - "Right to food", - "Right to health", - "Right to water and sanitation", - "Technical assistance and cooperation" - ] - }, - { - "text": "All parties of the Central African Republic continue to improve the security environment, maintain the social stability, and create conditions for political transition and reconstruction that people of the Central African Republic can enjoy all human rights", - "values": [ - "Justice", - "Public security" - ] - }, - { - "text": "Continue policies aimed at fighting extreme poverty, as well as those aimed at achieving food security and infrastructure development ", - "values": [ - "Development", - "Poverty", - "Right to food" - ] - }, - { - "text": "Ratify the Convention on Migrant Workers and Members of Their Families", - "values": [ - "International instruments", - "Labour", - "Migrants" - ] - }, - { - "text": "Become a party to ILO conventions ", - "values": [ - "International instruments", - "Labour" - ] - }, - { - "text": "Enhance its implementation of laws to protect women's rights", - "values": [ - "Women's rights" - ] - }, - { - "text": "Consider the possibility of extending an open standing invitation for all human rights mechanisms", - "values": [ - "Special procedures" - ] - }, - { - "text": "Cooperate with and seek the support of the international community in devising its plans and strategies and in the area of capacity-building to be able to implement them", - "values": [ - "Technical assistance and cooperation" - ] - }, - { - "text": "Extend an open and standing invitation to all special procedures of the Human Rights Council ", - "values": [ - "Special procedures" - ] - }, - { - "text": "Continue to focus and work on the promotion and protection of women's rights in all fields", - "values": [ - "Women's rights" - ] - }, - { - "text": "Include human rights education in school curricula", - "values": [ - "Human rights education and training" - ] - }, - { - "text": "Mental health services in schools should benefit from sufficient resources and qualified staff in order to deal with problems affecting in particular adolescents, such as suicidal thoughts and nutritional or addictive problems ", - "values": [ - "Right to education", - "Right to health" - ] - }, - { - "text": "Strengthen the Police Complaints Authority and the Directorate on Corruption and Economic Offences - increase training for law enforcement officers - and increase the capacity of Lesotho's police force and other public agencies to gather data and share that data with the international community so that improvements can be tracked ", - "values": [ - "Corruption" - ] - }, - { - "text": "Fight against discrimination based on the origin, gender and sexual orientation, by continuing its efforts in the implementation of the existing instruments", - "values": [ - "Sexual Orientation and Gender Identity" - ] - }, - { - "text": "Put in place a separate system of juvenile justice which will provide for the creation of separate detention facilities for children and adults ", - "values": [ - "Justice", - "Rights of the Child" - ] - }, - { - "text": "Continue to implement measures to protect and promote women's rights ", - "values": [ - "Women's rights" - ] - }, - { - "text": "Increase efforts to implement the National Plan to Combat Trafficking in Persons and the National Agenda on Equality for Human Mobility", - "values": [ - "Trafficking" - ] - }, - { - "text": "Conduct a comprehensive review of existing legislation, and harmonize law and customary practices in all four states with international standards ", - "values": [ - "Other" - ] - }, - { - "text": "Provide "non-citizens" with equal access to employment, education, health care, and social welfare, as well as take into account their interests in the conclusion of international treaties and agreements", - "values": [ - "ESC rights - general", - "International instruments", - "Labour", - "Right to education", - "Right to health", - "Statelessness and the right to nationality" - ] - }, - { - "text": "Ensure that the Ministry of Women, the Ministry of Health, the Office of the Prosecutor General and other institutions with a role in preventing and addressing cases of gender-based violence are adequately resourced ", - "values": [ - "Women's rights" - ] - }, - { - "text": "Ratify the Convention against Torture and its Optional Protocol ", - "values": [ - "Detention", - "International instruments", - "Torture and other CID treatment" - ] - }, - { - "text": "Continue its efforts towards protecting the rights of women and children", - "values": [ - "Rights of the Child", - "Women's rights" - ] - }, - { - "text": "Accelerate the implementation of the 2008 constitutional criminal justice reforms to enhance transparency and provide procedural rights for accused persons", - "values": [ - "Justice" - ] - }, - { - "text": "Consider including in its criminal legislation the delinquent conducts provided for in relevant paragraphs of article 4 of the International Convention on the Elimination of All Forms of Racial Discrimination ICERD, in line with the recommendations of the Committee on the Elimination of Racial Discrimination ", - "values": [ - "International instruments", - "Racial discrimination", - "Treaty bodies" - ] - }, - { - "text": "Establish, before the next universal periodic review, a national preventive mechanism in accordance with the Optional Protocol to the Convention against Torture", - "values": [ - "International instruments", - "Torture and other CID treatment", - "UPR process" - ] - }, - { - "text": "Continue efforts in land matters, including through the effective and transparent implementation of measures of land allocation ", - "values": [ - "Right to land" - ] - }, - { - "text": "Ensure that all women and girls have access to sexual and reproductive health services", - "values": [ - "Right to health", - "Rights of the Child", - "Women's rights" - ] - }, - { - "text": "Continue the path along national reconciliation.", - "values": [ - "Justice" - ] - }, - { - "text": "Realize the right to adequate housing by ensuring the right of post- war returnees to recover privately owned housing, regardless of their ethnic background, and by improving housing conditions in returnee communities", - "values": [ - "Right to housing" - ] - }, - { - "text": "Implement and further strengthen the right to organize freely, bargain collectively and strike ", - "values": [ - "Freedom of association and peaceful assembly", - "Labour" - ] - }, - { - "text": "Reinforce policies for the integration of minority groups, particularly Roma, in line with CERD recommendations", - "values": [ - "Minorities", - "Treaty bodies" - ] - }, - { - "text": "Promote the adoption, on a priority basis, of the draft bill for the prevention and elimination of all forms of discrimination and to consider favourably the criminalization of racial discrimination, in keeping with recommendations made by the Committee on the Elimination of Racial Discrimination and other international mechanisms", - "values": [ - "Racial discrimination", - "Treaty bodies" - ] - }, - { - "text": "Ensure the inclusion of all parts of the society in the drafting of laws", - "values": [ - "Justice" - ] - }, - { - "text": "Strengthen the various monitoring mechanisms established for effective enforcement of the new legislations and action plans, in particular those targeting the inclusion of the most marginalized segments of the population", - "values": [ - "General" - ] - }, - { - "text": "In relation to Law No. 90-07 on freedom of expression, it recommended the drafting of a follow-up report with a view to further strengthening domestic laws on freedom of expression. ", - "values": [ - "Freedom of opinion and expression" - ] - }, - { - "text": "Establish centres supporting women and girl victims of gender violence", - "values": [ - "Rights of the Child", - "Women's rights" - ] - }, - { - "text": "Ensure the effective implementation of policies and operations aimed at dismantling trafficking networks and smuggling of migrants", - "values": [ - "Migrants", - "Trafficking" - ] - }, - { - "text": "Continue constructive cooperation with United Nations human rights mechanisms", - "values": [ - "Special procedures", - "Technical assistance and cooperation", - "Treaty bodies", - "UPR process" - ] - }, - { - "text": "Protect women from sexual violence and abuse", - "values": [ - "Women's rights" - ] - }, - { - "text": "Continue efforts to address hate crimes and racially motivated attacks against ethnic and religious minorities, including racial profiling by law enforcement personnel", - "values": [ - "Freedom of religion and belief", - "Human rights violations by state agents", - "Minorities", - "Racial discrimination" - ] - }, - { - "text": "Uruguay indicated that it had started to comply with its own voluntary commitments made during the Working Group session, including the submission of five reports to various treaty monitoring bodies - the Committee on Migrant Workers, the Committee against Torture and the Committee on the Elimination of Racial Discrimination - and on the two Optional Protocols to the Convention on the Rights of the Child.", - "values": [ - "Treaty bodies", - "UPR process" - ] - }, - { - "text": "Adopt measures to ensure freedom of the press ", - "values": [ - "Freedom of the press" - ] - }, - { - "text": "Accede to OP-CAT", - "values": [ - "Detention", - "International instruments", - "Torture and other CID treatment" - ] - }, - { - "text": "Revise its education policy that further entrenches discrimination on the basis of sexual orientation", - "values": [ - "Sexual Orientation and Gender Identity" - ] - }, - { - "text": "Adopt measures to improve the access for international and national humanitarian organizations to detention centres ", - "values": [ - "Detention" - ] - }, - { - "text": "Implement the recommendations made in 2015 by the Committee on the Elimination of Discrimination against Women", - "values": [ - "Treaty bodies", - "Women's rights" - ] - }, - { - "text": "Introduce a limit for the time a child can be held in detention, pretrial", - "values": [ - "Detention", - "Rights of the Child" - ] - }, - { - "text": "Continue to prioritise policies aimed at promoting equality, ensuring the reduction of poverty and strengthening the promotion and protection of human rights for all", - "values": [ - "Poverty" - ] - }, - { - "text": "Follow-up on the Supreme Court's ruling for a new legal framework permitting diversity in the media.", - "values": [ - "Freedom of the press" - ] - }, - { - "text": "Continue promoting the role of national institutions for the protection of human rights by supporting the activities of the regional committees of the National Human Rights Council in various regions, in particular in the cities of Laayoune and Dakhla in the southern provinces", - "values": [ - "National Human Rights Institution" - ] - }, - { - "text": "Maintain and further build upon its HIV/AIDS preventive, care and treatment programmes ", - "values": [ - "HIV - Aids" - ] - }, - { - "text": "Continue efforts to promote and protect the rights of migrants", - "values": [ - "Migrants" - ] - }, - { - "text": "Put in place institutional guarantees to ensure that its human rights commitments are protected against popular initiatives that may violate these commitments", - "values": [ - "Other" - ] - }, - { - "text": "Issue an invitation to the Special Rapporteur on freedom of religion or belief ", - "values": [ - "Freedom of religion and belief", - "Special procedures" - ] - }, - { - "text": "Continue measures to improve the well-being and human rights protection of migrant workers, including domestic workers", - "values": [ - "Labour", - "Migrants" - ] - }, - { - "text": "Commute the sentences of persons sentenced to death and establish a moratorium on executions", - "values": [ - "Death penalty" - ] - }, - { - "text": "Take appropriate measures to prosecute perpetrators of acts of torture", - "values": [ - "Torture and other CID treatment" - ] - }, - { - "text": "Evaluate the possibility of abrogating the death penalty from its legal regime", - "values": [ - "Death penalty" - ] - }, - { - "text": "Take additional measures aimed at eliminating all forms of discrimination against women and at strengthening their situation and participation in all State institutions ", - "values": [ - "Women's rights" - ] - }, - { - "text": "Undertake further measures to ensure the protection of journalists", - "values": [ - "Freedom of the press" - ] - }, - { - "text": "Continue its constructive efforts in the field of human rights education, including its active cooperation with the key international organizations towards this end", - "values": [ - "Human rights education and training" - ] - }, - { - "text": "Step up its efforts to guarantee the right to education to all children and take effective measures to substantially increase the rate of attendance, particularly of the female population, in schools.", - "values": [ - "Right to education", - "Rights of the Child" - ] - }, - { - "text": "Further enhance the human rights training programmes for law enforcement officials and other relevant stakeholders ", - "values": [ - "Human rights education and training" - ] - }, - { - "text": "Ratify the International Convention on the Elimination of All Forms of Racial Discrimination, the Optional Protocol to the Convention on the Elimination of All Forms of Discrimination against Women and the Optional Protocol to the Convention on the Rights of the Child on the sale of children, child prostitution and child pornography", - "values": [ - "International instruments", - "Racial discrimination", - "Rights of the Child", - "Trafficking", - "Women's rights" - ] - }, - { - "text": "Internationalize the "Milagro" operation to restore vision to people with ophthalmological diseases", - "values": [ - "Right to health" - ] - }, - { - "text": "Pass and implement a comprehensive law banning all corporal punishment against children", - "values": [ - "Rights of the Child", - "Torture and other CID treatment" - ] - }, - { - "text": "Establish an official moratorium on the use of the death penalty, with a view to its abolition", - "values": [ - "Death penalty" - ] - }, - { - "text": "Issue a standing invitation to all mandate holders under the special procedures", - "values": [ - "Special procedures" - ] - }, - { - "text": "Establish without delay a national prevention mechanism against torture, allowing non-governmental organizations and the Human Rights Commission of Uganda to have access to detention centres", - "values": [ - "Civil society", - "Detention", - "National Human Rights Institution", - "Torture and other CID treatment" - ] - }, - { - "text": "Introduce a national moratorium on the death penalty aiming at complete abolition and take all necessary measures to ensure that the death penalty complies with minimum standards under international law. Exempt persons with mental illness from execution. Commit to ensuring that the origin of drugs being used is made public", - "values": [ - "Death penalty" - ] - }, - { - "text": "Strengthen further the capacity within the public institutions to enable the effective implementation of the trilingual policy", - "values": [ - "Other" - ] - }, - { - "text": "Enact a national gender policy and augment the capacity for gender analysis within government ministries, departments and agencies that coordinate policy development", - "values": [ - "Women's rights" - ] - }, - { - "text": "Develop a national human rights action plan, and further promote the development of human rights in the country", - "values": [ - "General" - ] - }, - { - "text": "Strengthen efforts to carry out prompt, impartial and effective investigations into all forms of violence against women and to bring those responsible to justice", - "values": [ - "Women's rights" - ] - }, - { - "text": "Take steps to create a national human rights institution in accordance with the Paris Principles", - "values": [ - "National Human Rights Institution" - ] - }, - { - "text": "Make further efforts to combat any forms of discrimination against women", - "values": [ - "Women's rights" - ] - }, - { - "text": "Approve the budgetary funds needed to assume the obligations under the Council of Europe Convention on Prevention and Combating Violence against Women and Domestic Violence, and therefore proceed to its ratification", - "values": [ - "International instruments", - "Rights of the Child", - "Women's rights" - ] - }, - { - "text": "Ensure that Libyan mothers are able to pass their nationality to their children, regardless of the nationality of the child's father, and ensure access to birth registration for all children born in Libya", - "values": [ - "Statelessness and the right to nationality", - "Women's rights" - ] - }, - { - "text": "Ratify the Optional Protocol to the Convention against Torture, as also recommended by the Qatari National Human Rights Committee ", - "values": [ - "Detention", - "International instruments", - "National Human Rights Institution", - "Torture and other CID treatment" - ] - }, - { - "text": "Intensify efforts of international cooperation to improve its institutional legal framework.", - "values": [ - "Justice", - "Technical assistance and cooperation" - ] - }, - { - "text": "Amend the legal status of same-sex partnerships to enable the right to adopt and have children ", - "values": [ - "Sexual Orientation and Gender Identity" - ] - }, - { - "text": "Maintain the commitment to ensure that people with disabilities fully enjoy all their rights", - "values": [ - "Disabilities" - ] - }, - { - "text": "Comply with the provisions of the international conventions it has freely ratified, in particular those relating to women, children and the prohibition of torture", - "values": [ - "International instruments", - "Rights of the Child", - "Torture and other CID treatment", - "Women's rights" - ] - }, - { - "text": "Fully ensure the safety and economic and social rights of migrant workers, in particular in irregular situations", - "values": [ - "ESC rights - general", - "Migrants" - ] - }, - { - "text": "Adopt comprehensive anti-discrimination legislation effectively fighting and preventing discrimination on all grounds, including ethnicity, religion, gender and sexual orientation", - "values": [ - "Freedom of religion and belief", - "Minorities", - "Racial discrimination", - "Sexual Orientation and Gender Identity" - ] - }, - { - "text": "Develop a draft reform of the criminal code with a special emphasis on human rights in accordance with international standards ", - "values": [ - "Justice" - ] - }, - { - "text": "Continue incorporating the gender perspective in programmes and development plans with positive measures to the effective promotion and protection of women's' rights ", - "values": [ - "Women's rights" - ] - }, - { - "text": "Continue reviewing their legislations and promote women's rights concerning education, employment, health care and housing ", - "values": [ - "Labour", - "Right to education", - "Right to health", - "Right to housing", - "Women's rights" - ] - }, - { - "text": "Continue increasing efforts aimed at combating trafficking in human beings at the national as well as at the international level, including through coordination and cooperation with interested governments, international organisations and NGOs", - "values": [ - "Civil society", - "Trafficking" - ] - }, - { - "text": "Develop a policy to protect human rights defenders ", - "values": [ - "Human rights defenders" - ] - }, - { - "text": "Take steps to incorporate provisions on gender equality and discrimination against women in the Constitution or national legislation", - "values": [ - "Women's rights" - ] - }, - { - "text": "Continue the successful and important practice of accession to the core international human rights instruments ", - "values": [ - "International instruments" - ] - }, - { - "text": "Adopt a list of hazardous work activities prohibited for children, and better enforce existing laws to fully protect children from the worst forms of child labour and all forms of sexual exploitation", - "values": [ - "Labour", - "Rights of the Child" - ] - }, - { - "text": "Continue efforts to consolidate national reconciliation as a lasting response to the aftermath of the armed conflict", - "values": [ - "Justice" - ] - }, - { - "text": "Continue to provide equal access to education by all national races, including minorities in the country", - "values": [ - "Minorities", - "Right to education" - ] - }, - { - "text": "Recommends that Saint Lucia Requests technical assistance from the OHCHR and the international community and urges the Office and the international community to facilitate such request and to support the country's overall development goals and aspirations ", - "values": [ - "Development", - "Technical assistance and cooperation" - ] - }, - { - "text": "End the practice of imposing punishment on returnees ", - "values": [ - "Justice" - ] - }, - { - "text": "Institutionalize a consultation mechanism with indigenous community assemblies in order to include them in any decision-making that might affect their rights and interests ", - "values": [ - "Indigenous peoples" - ] - }, - { - "text": "Introduce adequate measures with a view to promoting cohesion of all ethnic groups.", - "values": [ - "Minorities" - ] - }, - { - "text": "Take measures for the effective registration of all children born in the country without discrimination and remove all references to ethnic origin in identity documents", - "values": [ - "Racial discrimination", - "Rights of the Child", - "Statelessness and the right to nationality" - ] - }, - { - "text": "Consider allocating an adequate budget for the agencies responsible for investigating human trafficking and for taking care of victims", - "values": [ - "Trafficking" - ] - }, - { - "text": "Decriminalize consensual same-sex sexual acts", - "values": [ - "Sexual Orientation and Gender Identity" - ] - }, - { - "text": "Take steps to eradicate female illiteracy among rural and indigenous women and implement equal education opportunities for rural and indigenous girls ", - "values": [ - "Indigenous peoples", - "Right to education", - "Rights of the Child", - "Women's rights" - ] - }, - { - "text": "Not detain children with unrelated adults", - "values": [ - "Detention", - "Rights of the Child" - ] - }, - { - "text": "Establish, as soon as possible, through the allocation of a budget line and the appointment of its members, the Independent High Commission as a complementary body to the Human Rights Commission of the Council of Representatives", - "values": [ - "National Human Rights Institution" - ] - }, - { - "text": "Work closely with its citizens, especially the indigenous population, in order to promote environmental protection ", - "values": [ - "Environment", - "Indigenous peoples" - ] - }, - { - "text": "Provide and improve training programmes on human rights for the judiciary, law enforcement personnel and lawyers.", - "values": [ - "Human rights education and training" - ] - }, - { - "text": "Implement training programs on human rights to further increase awareness of civil servants, including law enforcement and justice system personnel", - "values": [ - "Human rights education and training" - ] - }, - { - "text": "Improve assistance to vulnerable groups, in particular persons facing mental illness", - "values": [ - "Right to health" - ] - }, - { - "text": "Redouble efforts to ensure that children were not employed in situations that could be detrimental to their health, development or well-being", - "values": [ - "Rights of the Child" - ] - }, - { - "text": "Decriminalise same-sex activities in accordance with international human rights standards", - "values": [ - "International instruments", - "Sexual Orientation and Gender Identity" - ] - }, - { - "text": "Adopt measures to ensure open and free campaign before the 2015 presidential elections, grant the opposition representatives access to all State controlled media, and promote work of all journalists", - "values": [ - "Elections", - "Freedom of the press" - ] - }, - { - "text": "Take measures to provide for the representation of ethnic minorities in the government organs, organs and committees established in the new constitutions, and elected bodies, such as parliament", - "values": [ - "Minorities" - ] - }, - { - "text": "Consider the establishment of an office of the ombudsman for children's rights, devoted purely to the protection of the rights of children", - "values": [ - "National Human Rights Institution", - "Rights of the Child" - ] - }, - { - "text": "Develop plans to promote human development programmes in the State of Kuwait", - "values": [ - "Development" - ] - }, - { - "text": "Continue to raise awareness on the needs of the Roma population, in particular children, and establish an adequate system that provides for their social and educational inclusion, including by allocating sufficient resources", - "values": [ - "Minorities", - "Right to education", - "Rights of the Child" - ] - }, - { - "text": "Accede to the Convention on the Rights of Persons with Disabilities, especially because this country [Botswana] already applies the provisions of this Convention in practice, as demonstrated by its commitment to submit a voluntary report", - "values": [ - "Disabilities", - "International instruments" - ] - }, - { - "text": "Continue its efforts to reduce the number of children without parental care, including by advancing the ongoing initiatives to address this issue ", - "values": [ - "Rights of the Child" - ] - }, - { - "text": "Encourage a deep nationwide dialogue on the death penalty, open to all stakeholders and views", - "values": [ - "Death penalty" - ] - }, - { - "text": "Increase efforts to protect the rights of vulnerable groups, particularly women and children", - "values": [ - "Rights of the Child", - "Women's rights" - ] - }, - { - "text": "Continue its efforts to empower women economically, politically and socially, and to take all necessary measures to eliminate all forms of discrimination against women", - "values": [ - "Women's rights" - ] - }, - { - "text": "Consider becoming party to the Optional Protocols to the CRC ", - "values": [ - "International instruments", - "Rights of the Child" - ] - }, - { - "text": "Build capacities and comply with international commitments ", - "values": [ - "General" - ] - }, - { - "text": "Step up efforts towards the expansion of the mandate of and the provision of adequate resource to the national human rights institution", - "values": [ - "National Human Rights Institution" - ] - }, - { - "text": "Ratify the International Convention for the Protection of All Persons from Enforced Disappearance and harmonize the convention with the national legislation", - "values": [ - "Enforced disappearances", - "International instruments" - ] - }, - { - "text": "Simplify the issuance of permissions for holding assemblies ", - "values": [ - "Freedom of association and peaceful assembly" - ] - }, - { - "text": "Become party to the Optional Protocol to the Convention on the Elimination of All Forms of Discrimination against Women", - "values": [ - "International instruments", - "Women's rights" - ] - }, - { - "text": "Continue efforts with regard steps and measures taking to enhance economic and social rights that we value greatly ", - "values": [ - "ESC rights - general" - ] - }, - { - "text": "Reinforce ongoing measures for the promotion of freedom of expression, freedom of association and freedom of the press", - "values": [ - "Freedom of association and peaceful assembly", - "Freedom of opinion and expression", - "Freedom of the press" - ] - }, - { - "text": "Consider the possibility of establishing a national human rights institution ", - "values": [ - "National Human Rights Institution" - ] - }, - { - "text": "Continue efforts to prevent and combat all forms of violence against women, and bring the perpetrators to justice, while ensuring women's equal access to justice and improving support services, including for indigenous women", - "values": [ - "Indigenous peoples", - "Women's rights" - ] - }, - { - "text": "Take measures to work towards improving the living conditions for refugees and asylum seekers", - "values": [ - "Asylum-seekers - refugees" - ] - }, - { - "text": "Take effective measures to combat cases of blood feuds and follow up those measures ", - "values": [ - "Public security" - ] - }, - { - "text": "Strengthen the human rights approach in policies to fight against terrorism", - "values": [ - "Counter-terrorism" - ] - }, - { - "text": "Ensure access to adequate shelter, psychosocial, legal, and health care services for survivors of domestic violence, including in rural areas", - "values": [ - "Rights of the Child", - "Women's rights" - ] - }, - { - "text": "Take additional measures to combat trafficking in persons, in particular women and children and impose appropriate sanctions against perpetrators", - "values": [ - "Rights of the Child", - "Trafficking", - "Women's rights" - ] - }, - { - "text": "Ensure that the Office of the Ombudsman is brought into line with the Paris Principles", - "values": [ - "National Human Rights Institution" - ] - }, - { - "text": "Ensure that all citizens can take part in political life without discrimination ", - "values": [ - "CP rights - general" - ] - }, - { - "text": "Take measures necessary to protect the rights of children deprived of a family environment and strengthen support to biological families to prevent out-of-home placements", - "values": [ - "Rights of the Child" - ] - }, - { - "text": "Continue implementing and strengthening social inclusiveness, equality and non-discriminatory public practices, among which "Brazil without Poverty" ", - "values": [ - "Poverty" - ] - }, - { - "text": "Withdraw the criminal laws sanctioning homosexuality and take action to combat violence based on sexual orientation and gender identity", - "values": [ - "Sexual Orientation and Gender Identity" - ] - }, - { - "text": "Enhance efforts to fight all forms of discrimination against women and gender-based violence", - "values": [ - "Women's rights" - ] - }, - { - "text": "Continue to strive to protect the rights of minorities", - "values": [ - "Minorities" - ] - }, - { - "text": "Continue the efforts to improve and develop health care infrastructure in remote areas in order to enable people for better health-care services", - "values": [ - "Right to health" - ] - }, - { - "text": "Continue its efforts on the promotion and protection of human rights and main freedoms ", - "values": [ - "General" - ] - }, - { - "text": "Continue to take steps in order to ensure the full equality between men and women and to combat all forms of discrimination against women", - "values": [ - "Women's rights" - ] - }, - { - "text": "Prevent any initiative contrary to General Comment 34 of the Committee of Human Rights", - "values": [ - "Freedom of opinion and expression", - "Treaty bodies" - ] - }, - { - "text": "Abolish officially the death penalty in the country", - "values": [ - "Death penalty" - ] - }, - { - "text": "Adhere fully to the relevant provisions of the International Convention for the Protection of the Rights of All Migrant Workers and Members of Their Families, in particular articles 76 and 77", - "values": [ - "International instruments", - "Labour", - "Migrants" - ] - }, - { - "text": "Open impartial and independent investigations into claims of torture and ill-treatment and bring perpetrators to justice", - "values": [ - "Torture and other CID treatment" - ] - }, - { - "text": "End acts of repression against persons belonging to ethnic or religious minorities, particularly the Baha'i, and to respect their rights", - "values": [ - "Freedom of religion and belief", - "Minorities" - ] - }, - { - "text": "Undertake prompt, effective and impartial investigations into allegations of crimes under international law and human rights violations, in particular sexual and gender-based violence", - "values": [ - "International humanitarian law", - "Rights of the Child", - "Women's rights" - ] - }, - { - "text": "Continue efforts to reduce corruption and increase accountability", - "values": [ - "Corruption" - ] - }, - { - "text": "Continue efforts to put an end to all negative cultural practices and stereotypes that discriminate against women", - "values": [ - "Women's rights" - ] - }, - { - "text": "Decriminalize defamation and make it a civil offence in accordance with international standards", - "values": [ - "Freedom of opinion and expression" - ] - }, - { - "text": "Review the relevant legal provisions to ensure that all offences committed against human rights by military forces may also be submitted to civil courts", - "values": [ - "Human rights violations by state agents", - "Justice" - ] - }, - { - "text": "Strengthen efforts to implement the 2008 law on education and the reduction of school dropout rates of children of African descent and indigenous origin ", - "values": [ - "Indigenous peoples", - "Minorities", - "Right to education", - "Rights of the Child" - ] - }, - { - "text": "Capacitate and allocate resources to the Uganda Human Rights Commission in a sustainable manner", - "values": [ - "National Human Rights Institution" - ] - }, - { - "text": "Continue its efforts to eliminate torture, accede to the Optional Protocol to the Convention against Torture and other Cruel, Inhuman or Degrading Treatment or Punishment and establish its national preventive mechanism accordingly ", - "values": [ - "Detention", - "International instruments", - "Torture and other CID treatment" - ] - }, - { - "text": "Increase efforts to establish a national human rights institution NHRI in line with the Paris Principles", - "values": [ - "National Human Rights Institution" - ] - }, - { - "text": "Take the necessary steps to reduce discriminatory practices and violence against women.", - "values": [ - "Women's rights" - ] - }, - { - "text": "Revise the national legislation with a view to guarantee that all persons are registered at birth, independently of their migrant condition or the nationality of their parents", - "values": [ - "Rights of the Child" - ] - }, - { - "text": "Continue to work with bilateral, regional and international partners to address trafficking in persons", - "values": [ - "Trafficking" - ] - }, - { - "text": "Accede to the International Covenant on Civil and Political Rights and its protocols", - "values": [ - "Civil society", - "Death penalty", - "International instruments" - ] - }, - { - "text": "To develop and implement a national action plan on human rights issues", - "values": [ - "General" - ] - }, - { - "text": "Repeal articles 13 and 16 of the Law on Sexual Offences of 1986, penalizing sexual relations between consenting individuals of the same sex. Despite the fact that laws criminalizing same sex activity are not enforced, a formal withdrawal of the law is highly recommended", - "values": [ - "Sexual Orientation and Gender Identity" - ] - }, - { - "text": "Develop and implement a national action plan for human rights in order to framework a systematic approach to the promotion and protection of human rights", - "values": [ - "General" - ] - }, - { - "text": "Persist in its efforts in order to redress remaining gender inequalities, in particular with regard to the employment of women in the private sector ", - "values": [ - "Women's rights" - ] - }, - { - "text": "Continue work aimed at increasing the participation of women in the political life of the country", - "values": [ - "Women's rights" - ] - }, - { - "text": "Increase efforts and resources to reduce the gap between indigenous people and other Panamanians in terms of access to health, education and economic development", - "values": [ - "Development", - "Indigenous peoples", - "Right to education", - "Right to health" - ] - }, - { - "text": "Consider working with the new OHCHR Regional Office in Dakar to develop a common-core document to simplify and streamline treaty body reporting procedures", - "values": [ - "Technical assistance and cooperation", - "Treaty bodies" - ] - }, - { - "text": "Continue its efforts to provide the necessary assistance for vulnerable groups, particularly persons with disabilities", - "values": [ - "Disabilities" - ] - }, - { - "text": "Intensify efforts to raise public awareness to end all forms of discrimination by providing human rights education and training for government agencies, media and the public and implementing campaigns to combat gender stereotypes and violence", - "values": [ - "Human rights education and training" - ] - }, - { - "text": "Ensure freedoms of expression, association and peaceful demonstration, in accordance with the Rwandan Constitution and international law with a view to the electoral cycle", - "values": [ - "Elections", - "Freedom of association and peaceful assembly", - "Freedom of opinion and expression" - ] - }, - { - "text": "Investigate cases of domestic violence and sexual abuse at schools and sanction the perpetrators", - "values": [ - "Rights of the Child", - "Women's rights" - ] - }, - { - "text": "Extend a standing invitation to all special procedures ", - "values": [ - "Special procedures" - ] - }, - { - "text": "Accede to the 1954 Convention relating to the Status of Stateless Persons, and the 1961 Convention on the Reduction of Statelessness ", - "values": [ - "International instruments", - "Statelessness and the right to nationality" - ] - }, - { - "text": "Continue efforts to address the issue of IDPs with a view to finding a durable solution", - "values": [ - "Internally displaced persons" - ] - }, - { - "text": "In the coming years, the Government will focus on dealing with child mortality rate, especially the newborns, increasing the effectiveness of vaccination, National Nutrition Program, National Program on Reproductive Health and the National Program on HIV/AIDS.", - "values": [ - "HIV - Aids", - "Right to health", - "Rights of the Child" - ] - }, - { - "text": "Take effective measures to protect the right to freedom of religion or belief", - "values": [ - "Freedom of religion and belief" - ] - }, - { - "text": "Continue to use the platform of All-China Federation of Trade Unions to safeguard the rights of employees to get employed, paid and social security", - "values": [ - "ESC rights - general", - "Labour" - ] - }, - { - "text": "Ratify the Optional Protocol [OP-CSC-SC]", - "values": [ - "International instruments", - "Rights of the Child", - "Trafficking" - ] - }, - { - "text": "Continue to promote and protect economic, social and cultural rights of its people, with greater emphasis on economic development ", - "values": [ - "Development", - "ESC rights - general" - ] - }, - { - "text": "Restrict the use of the death penalty to crimes that meet the threshold of \u201cmost serious crimes\u201c under international law", - "values": [ - "Death penalty" - ] - }, - { - "text": "Systematically continue the positive efforts undertaken regarding the rights of indigenous peoples", - "values": [ - "Indigenous peoples" - ] - }, - { - "text": "Ensure that states' legislation is consistent with the amended Sex Discrimination Act 1984", - "values": [ - "Sexual Orientation and Gender Identity" - ] - }, - { - "text": "Extend an open standing invitation to the special procedures of the Human Rights Council", - "values": [ - "Special procedures" - ] - }, - { - "text": "Accelerate programs aimed at job creation, particularly for young people", - "values": [ - "Development" - ] - }, - { - "text": "Ensure urgently, through stable and systematic funding, continued functioning of the two bilingual Slovenian-Hungarian schools in Gornji Senik/Felsöszölnök and Stevanovic/Apátistvánfalva ", - "values": [ - "Minorities", - "Right to education" - ] - }, - { - "text": "Continue the process of ratifying OP-CAT ", - "values": [ - "Detention", - "International instruments", - "Torture and other CID treatment" - ] - }, - { - "text": "Set up an independent Commission for children and women", - "values": [ - "Rights of the Child", - "Women's rights" - ] - }, - { - "text": "Improve, with more in-depth efforts, the conditions of young gays and lesbians who live outside large cities and for those who live in multicultural communities\n", - "values": [ - "Sexual Orientation and Gender Identity" - ] - }, - { - "text": "Become party to the Convention on the Prevention and Punishment of the Crime of Genocide", - "values": [ - "International instruments", - "Justice" - ] - }, - { - "text": "Strengthen laws in the area of the right to education", - "values": [ - "Right to education" - ] - }, - { - "text": "Continue strengthening the legislation and measures for an appropriate exercise of freedom of expression, and ensure that the civil defamation law is not used to avoid political criticism", - "values": [ - "Freedom of opinion and expression" - ] - }, - { - "text": "Ensure the full enjoyment of the political, civil, economic and social rights of "erased" people, including health, social security, education and employment, by regulating the status of the remaining "erased" persons and providing adequate reparation to those affected", - "values": [ - "CP rights - general", - "ESC rights - general" - ] - }, - { - "text": "As announced in its statement, Chile has decided to extend an open invitation to all special procedures of the Human Rights Council", - "values": [ - "Special procedures" - ] - }, - { - "text": "Mitigate the lack of qualified and experienced healthcare professionals by putting in place a national training strategy in the medical and paramedical branches", - "values": [ - "Right to health" - ] - }, - { - "text": "Ensure that all reports of violence are thoroughly investigated and that the perpetrators are brought to justice ", - "values": [ - "Justice" - ] - }, - { - "text": "Prevent the recruitment and the use of children in armed forces and armed groups", - "values": [ - "International humanitarian law", - "Rights of the Child" - ] - }, - { - "text": "Pursue development and health policies that respond to the needs of the Iranian people", - "values": [ - "Right to health" - ] - }, - { - "text": "Continue the implementation of the National Action Plan of Education for All, with a view to improving the quality of the system of 11 years of compulsory, free, universal education, increasing progressively the necessary resources allocated for this purpose \n\n", - "values": [ - "Right to education" - ] - }, - { - "text": "Efficiently combat international trafficking in young women and prosecute the authors of such crimes", - "values": [ - "Trafficking", - "Women's rights" - ] - }, - { - "text": "Continue its efforts to strengthen the framework for the protection and promotion of human rights", - "values": [ - "General" - ] - }, - { - "text": "Continue to reform its domestic child protection system in order to end institutional residential care and move towards a community based model", - "values": [ - "Rights of the Child" - ] - }, - { - "text": "Continue its cooperation with the United Nations human rights mechanisms to protect and promote these rights", - "values": [ - "Technical assistance and cooperation" - ] - }, - { - "text": "Recommended to Poland that laws on press offences be liberalized.", - "values": [ - "Freedom of the press" - ] - }, - { - "text": "Improve the efficiency of existing mechanisms for compensating victims of domestic violence.", - "values": [ - "Rights of the Child", - "Women's rights" - ] - }, - { - "text": "Live up to the highest standards of international law by repealing or amending the criminal defamation clauses in its Penal Code", - "values": [ - "Freedom of opinion and expression" - ] - }, - { - "text": "Consider signing-ratifying the remaining international human rights instruments, including ICERD and ICRMW ", - "values": [ - "International instruments", - "Labour", - "Migrants", - "Racial discrimination" - ] - }, - { - "text": "Recognize victims of trafficking, often young people, as such and provide them with protection and assistance", - "values": [ - "Trafficking" - ] - }, - { - "text": "Continue the efforts to combat all forms of hatred and discrimination, and strengthen mechanisms of accountability in this regard", - "values": [ - "Racial discrimination" - ] - }, - { - "text": "Further strengthen measures to prevent and combat discrimination and to investigate allegations of hate crimes", - "values": [ - "Racial discrimination" - ] - }, - { - "text": "Contribute to an atmosphere supportive of a free and vibrant civil society, including by ensuring positive public communication and enhanced police capacity to provide protection and conduct investigations", - "values": [ - "Civil society" - ] - }, - { - "text": "Accede to the Second Optional Protocol to the International Covenant on Civil and Political Rights, which abolishes capital punishment under any circumstances ", - "values": [ - "Death penalty", - "International instruments" - ] - }, - { - "text": "Take all the necessary measures in order to protect human rights defenders against threats and attacks, and ensure that the perpetrators of such acts are brought to justice ", - "values": [ - "Human rights defenders" - ] - }, - { - "text": "Organize training and seminars on human rights for law enforcement authorities in charge of combating terrorism.", - "values": [ - "Counter-terrorism", - "Human rights education and training" - ] - }, - { - "text": "Continue with measures to remove discrimination and segregation of Romani pupils, including by ensuring effective implementation of its National Action Plan for Inclusive Education", - "values": [ - "Minorities", - "Right to education" - ] - }, - { - "text": "Declare an official moratorium on executions and ratify the Second Optional Protocol to the International Covenant on Civil and Political Rights, aiming at the abolition of the death penalty ", - "values": [ - "Death penalty", - "International instruments" - ] - }, - { - "text": "Monitor the implementation and impact of reforms to end the segregation of Roma children in the education system, and ensure that discriminatory attitudes and treatment of children by teachers and other staff are properly addressed", - "values": [ - "Minorities", - "Racial discrimination", - "Right to education", - "Rights of the Child" - ] - }, - { - "text": "Continue efforts to decrease female dropout rates from school by implementing more measures", - "values": [ - "Right to education", - "Women's rights" - ] - }, - { - "text": "Criminalize the dissemination of theories of racial superiority or inferiority and prohibit organizations which promote and incite racial discrimination ", - "values": [ - "Racial discrimination" - ] - }, - { - "text": "Adhere to international legal instruments to which it is not yet a party, particularly the Second Optional Protocol to the International Covenant on Civil and Political Rights, aiming at the abolition of the death penalty", - "values": [ - "Death penalty", - "International instruments" - ] - }, - { - "text": "Noting the possible crimes against humanity, including sexual violence against women and girls, committed during the events starting on 28 September 2009, and recognizing that Guinea has ratified the Rome Statute of the International Criminal Court, bring to justice those responsible for those violations and combat impunity for those events ", - "values": [ - "Impunity", - "International instruments", - "Justice", - "Rights of the Child", - "Women's rights" - ] - }, - { - "text": "Consider further strengthening policies and laws to put in place an effective and holistic system towards combating violence against women and ensuring justice for victims", - "values": [ - "Women's rights" - ] - }, - { - "text": "Continue its ongoing efforts to implement the Economic Development Strategy aimed at achieving social and economic reforms and improving the living conditions of the population ", - "values": [ - "Development", - "ESC rights - general" - ] - }, - { - "text": "Institute mechanisms to enhance procedural guarantees for the detention of detainees.", - "values": [ - "Detention" - ] - }, - { - "text": "Continue the efforts to host migrants and asylum seekers in order to ensure their integration", - "values": [ - "Asylum-seekers - refugees", - "Migrants" - ] - }, - { - "text": "Criminalise all acts of torture as set forth in the Convention against Torture and adopt punishments in line with the gravity of the crime", - "values": [ - "International instruments", - "Torture and other CID treatment" - ] - }, - { - "text": "Increase its collaboration with regional and hemispheric partners to address high levels of violence and organised crime", - "values": [ - "Public security", - "Technical assistance and cooperation" - ] - }, - { - "text": "Introduce specific legislation providing for the adoption and implementation of temporary special measures to accelerate de facto gender equality ", - "values": [ - "Women's rights" - ] - }, - { - "text": "Continue cooperation with treaty monitoring bodies and United Nations special rapporteurs ", - "values": [ - "Special procedures", - "Treaty bodies" - ] - }, - { - "text": "Release immediately and rehabilitate all those human rights defenders, journalists, other civil society representatives, imprisoned without credible criminal charges ", - "values": [ - "Civil society", - "Detention", - "Freedom of the press", - "Human rights defenders" - ] - }, - { - "text": "Advance in the establishment of a human rights institution in accordance with the Paris Principles", - "values": [ - "National Human Rights Institution" - ] - }, - { - "text": "Continue its efforts to effectively combat human trafficking, also through raising public awareness ", - "values": [ - "Human rights education and training", - "Trafficking" - ] - }, - { - "text": "Expedite the adoption and implementation of laws to counter all forms of violence against women and girls, including marital rape and female genital mutilation", - "values": [ - "Rights of the Child", - "Torture and other CID treatment", - "Women's rights" - ] - }, - { - "text": "Move and speed up the amendment of the criminal code to punish sexual violence, and to adopt a comprehensive law to punish violence against women and children", - "values": [ - "Rights of the Child", - "Women's rights" - ] - }, - { - "text": "Accede to the Optional Protocol to the Convention on the Elimination of All Forms of Discrimination against Women and the Optional Protocol to the Convention against Torture and other Cruel, Inhuman or Degrading Treatment or Punishment ", - "values": [ - "Detention", - "International instruments", - "Torture and other CID treatment", - "Women's rights" - ] - }, - { - "text": "Pass a comprehensive anti-trafficking law applicable in the Federated States of Micronesia, and promptly ratify the Protocol to Prevent, Suppress and Punish Trafficking in Persons, Especially Women and Children, supplementing the Convention against Transnational Organized Crime", - "values": [ - "International instruments", - "Trafficking" - ] - }, - { - "text": "Take steps to eradicate child labour such as finalizing the National Child Labour Policy and implementing the plan of action to eliminate the worst forms of child labour", - "values": [ - "Labour", - "Rights of the Child" - ] - }, - { - "text": "Combat all forms of discrimination in the areas of employment, salary, health and education against, in particular, persons belonging to marginalized populations ", - "values": [ - "Labour", - "Right to education", - "Right to health" - ] - }, - { - "text": "Establish a national human rights institution to provide national coherence to the efforts of promotion and protection of human rights", - "values": [ - "National Human Rights Institution" - ] - }, - { - "text": "Criminalize acts of violence against children accused of witchcraft and organize a national campaign of awareness-raising on this issue", - "values": [ - "Human rights education and training", - "Rights of the Child", - "Women's rights" - ] - }, - { - "text": "Sustain and promote the family, based on the stable relationship between a man and a woman, as the natural and fundamental unit of society ", - "values": [ - "Other" - ] - }, - { - "text": "Take necessary measures to combat child prostitution and ensure that those children have access to adequate services for their recovery and social reintegration ", - "values": [ - "Rights of the Child" - ] - }, - { - "text": "Strengthen its efforts for the protection of the rights of the indigenous population. Create a specific national mechanism to address any complaint by the indigenous population in relation to the use of its traditional land, and ensuring the participation of indigenous groups and their representatives ", - "values": [ - "Indigenous peoples", - "Right to land" - ] - }, - { - "text": "Enact specific laws and policies recognizing and protecting the work of human rights defenders and enabling safe and unhindered access to international human rights mechanisms", - "values": [ - "Human rights defenders", - "Special procedures", - "Treaty bodies", - "UPR process" - ] - }, - { - "text": "Strengthen its policies of promotion and protection of the rights of women through public policies that foster gender equality in the country", - "values": [ - "Women's rights" - ] - }, - { - "text": "Implement policies to meet the relevant 2030 Sustainable Development Goals so that all communities, regions and states can benefit from Myanmar's economic growth and it can graduate from Least Developed Country Status soonest", - "values": [ - "Development" - ] - }, - { - "text": "Intensify efforts to cooperate with the international human rights system by signing and ratifying the Optional Protocol to the International Covenant on Economic, Social and Cultural Rights - the Optional Protocol to the Covenant on Civil and Political Rights - the Optional Protocol to the\nConvention on the Elimination of All Forms of Discrimination against Women - the Convention against Torture and Other Cruel, Inhuman or Degrading Treatment or Punishment and the Optional Protocol thereto - the two Optional Protocols to the Convention on the Rights of the Child - and the Convention on the Rights of Persons with Disabilities and the Optional Protocol thereto - and ratify the International Convention for the Protection of All Persons from Enforced Disappearance \n", - "values": [ - "International instruments" - ] - }, - { - "text": "Respond as soon as possible to the pending request for the visit of the independent expert on the issue of foreign debt, in line with the standing invitation to the special procedures it had extended in 2009 ", - "values": [ - "Special procedures" - ] - }, - { - "text": "Continue ongoing efforts aimed at enhancing the participation and consultations of indigenous peoples on public policies that affect them, fully implementing the United Nations Declaration on the Rights of Indigenous Peoples and the ILO Convention No. 169 concerning Indigenous and Tribal Peoples in Independent Countries", - "values": [ - "Indigenous peoples", - "International instruments" - ] - }, - { - "text": "Allocate according to its capacity, adequate human and other resources in order to strengthen the combat on human trafficking", - "values": [ - "Trafficking" - ] - }, - { - "text": "Include children from birth and not only after 45 days of life in the national early childhood plan", - "values": [ - "Rights of the Child" - ] - }, - { - "text": "Speed up the approval of the bill for the reform of the Criminal Code and Code of Criminal Procedure, with a view to criminalizing acts of torture and conferring on victims compulsory State-assistance, which should allow proper redress, including adequate compensation for victims of torture, or other cruel, inhuman or degrading treatment or punishment.", - "values": [ - "Justice", - "Torture and other CID treatment" - ] - }, - { - "text": "Sign and ratify the Optional Protocol to the International Covenant on Economic, Social and Cultural Rights and the Second Optional Protocol to the International Covenant on Civil and Political Rights, aiming at the abolition of the death penalty", - "values": [ - "Death penalty", - "ESC rights - general", - "International instruments" - ] - }, - { - "text": "Prohibit explicitly corporal punishment in the home and family", - "values": [ - "Rights of the Child", - "Torture and other CID treatment" - ] - }, - { - "text": "Ensure the access to education, including to primary education, particularly for the most vulnerable children", - "values": [ - "Right to education", - "Rights of the Child" - ] - }, - { - "text": "Ratify the Optional Protocols to the Convention on the Rights of the Child", - "values": [ - "International instruments", - "Rights of the Child" - ] - }, - { - "text": "Adopt legislation to implement the Convention on the Rights of Persons with Disabilities ", - "values": [ - "Disabilities", - "International instruments" - ] - }, - { - "text": "Establish an effective and inclusive process with civil society to follow up on universal periodic review recommendations", - "values": [ - "Civil society", - "UPR process" - ] - }, - { - "text": "Adopt safeguards to ensure freedom of expression ", - "values": [ - "Freedom of opinion and expression" - ] - }, - { - "text": "Continue to defend the institution of the family, based on the union of a man and a woman, and to keep providing assistance to those most vulnerable to human rights violations, particularly women, children and the elderly", - "values": [ - "Rights of the Child", - "Women's rights" - ] - }, - { - "text": "Strengthen its policies to provide care and support for children infected or affected by HIV/AIDS, particularly those orphaned", - "values": [ - "HIV - Aids", - "Rights of the Child" - ] - }, - { - "text": "Adopt the necessary measures to guarantee the access of migrant workers to justice in civil, criminal and labour courts, as well as to assistance and consular protection ", - "values": [ - "Labour", - "Migrants" - ] - }, - { - "text": "Adapt its legislation to ensure greater security for women and children ", - "values": [ - "Rights of the Child", - "Women's rights" - ] - }, - { - "text": "Continue its efforts to promote access by persons with disabilities to the labor market by strengthening the system of job reserve for persons with disabilities", - "values": [ - "Disabilities", - "Labour" - ] - }, - { - "text": "Repeal all provisions that may be applied to criminalize sexual activity between consenting adults, and which are contrary to its commitment to equality and non-discrimination", - "values": [ - "Sexual Orientation and Gender Identity" - ] - }, - { - "text": "Modify its legislation to include discrimination based on sexual orientation and gender identity in the list of offences", - "values": [ - "Sexual Orientation and Gender Identity" - ] - }, - { - "text": "Ensure all reports of human rights violations, including those against religious minorities and homosexuals, are investigated and prosecuted", - "values": [ - "Freedom of religion and belief", - "Minorities", - "Sexual Orientation and Gender Identity" - ] - }, - { - "text": "Elimination from the Penal Code of standards which allow for discrimination against people on the grounds of their sexual orientation", - "values": [ - "Sexual Orientation and Gender Identity" - ] - }, - { - "text": "Urgently provide essential and indispensable food and medical supplies to besieged areas and facilitate the arrival of unrestricted humanitarian aid and assistance, in particular to the areas most affected by the conflict", - "values": [ - "Other" - ] - }, - { - "text": "Continue the implementation of policies pertaining to national minorities such as the Sami and the Roma with a view to improving their living conditions", - "values": [ - "Indigenous peoples", - "Minorities" - ] - }, - { - "text": "Enact laws setting principles on law, rights and obligations that govern family reunification", - "values": [ - "Other" - ] - }, - { - "text": "Accede to the Rome Statute of the International Criminal Court and amend its national legislation to ensure that it is in line with the Rome Statute, including incorporating relevant provisions in order to comply with the Court", - "values": [ - "International instruments", - "Justice" - ] - }, - { - "text": "Amend the personal status laws in line with CEDAW, to ensure that women are treated in the same way as men in issues related to child custody, inheritance and divorce", - "values": [ - "Detention", - "International instruments", - "Women's rights" - ] - }, - { - "text": "The adoption of a moratorium on the death penalty with a view to abolishing capital punishment in national legislation ", - "values": [ - "Death penalty" - ] - }, - { - "text": "Ensure that impartial, independent investigations are undertaken into allegations of human rights violations by security forces, including torture and other cruel, inhumane or degrading treatment, and that the findings of those investigations be made public ", - "values": [ - "Human rights violations by state agents", - "Torture and other CID treatment" - ] - }, - { - "text": "Continue to develop programmes to increase physical accessibility for persons with disabilities and foster their labour inclusion, and in this framework make a specific effort regarding childhood ", - "values": [ - "Disabilities", - "Labour", - "Rights of the Child" - ] - }, - { - "text": "Implement a zero-tolerance policy on sexual and gender-based violence and ensure the prosecution of all perpetrators of violence against women, rehabilitation and support for victims of violence", - "values": [ - "Women's rights" - ] - }, - { - "text": "Reinforce measures to protect victims of trafficking, with due regard to the special situation of child victims, regardless of whether they have agreed to participate in judicial proceedings ", - "values": [ - "Rights of the Child", - "Trafficking" - ] - }, - { - "text": "Ensure all human rights violations, including assassination of journalists and human rights defenders, are investigated and the perpetrators brought to justice", - "values": [ - "Extrajudicial executions", - "Freedom of the press", - "Human rights defenders" - ] - }, - { - "text": "Ratify the International Convention on the Protection of the Rights of All Migrant Workers and Members of Their Families and revise the national laws and regulations to ensure full protection against forced labour for all categories of workers, and ensure effective oversight of labour conditions", - "values": [ - "International instruments", - "Labour", - "Migrants" - ] - }, - { - "text": "Comprehensively implement programmes to provide fair access, in line with international standards, to promote girls' education at all levels, and to eradicate the causes of school dropout, and continue efforts in this regard, including through speeding up the adoption of the draft policy on girls' education ", - "values": [ - "Right to education", - "Rights of the Child" - ] - }, - { - "text": "Take the measures necessary to improve the level of representation of women", - "values": [ - "Women's rights" - ] - }, - { - "text": "Fight domestic violence and discrimination against women by improving gender awareness in strategic sectors ", - "values": [ - "Women's rights" - ] - }, - { - "text": "Take urgent measures to protect women and girls against discrimination and gender disparities, in particular by ensuring their access to education", - "values": [ - "Right to education", - "Rights of the Child", - "Women's rights" - ] - }, - { - "text": "Introduce legislation to implement the European Court of Human Rights judgement in the A, B and C versus Ireland case", - "values": [ - "Women's rights" - ] - }, - { - "text": "Continue efforts for the promotion and protection of the rights of migrants, refugees and internally displaced persons, as well as persons with disabilities. ", - "values": [ - "Asylum-seekers - refugees", - "Disabilities", - "Migrants" - ] - }, - { - "text": "Finalize the ratification of the Convention on the Rights of Persons with Disabilities", - "values": [ - "Disabilities", - "International instruments" - ] - }, - { - "text": "Take measures to guarantee full protection of children's human rights by rehabilitating the ex-combatants and eliminating and reducing, among others, child trafficking, child sexual abuse and violence against children", - "values": [ - "Rights of the Child", - "Trafficking" - ] - }, - { - "text": "Swiftly finalize the ratification of CRPD and its Optional Protocol ", - "values": [ - "Disabilities", - "International instruments" - ] - }, - { - "text": "Conduct the reforms to the Civil Code to eradicate discrimination against widows or divorced women ", - "values": [ - "Women's rights" - ] - }, - { - "text": "Establish the necessary mechanisms to put an end to violence against women and children", - "values": [ - "Rights of the Child", - "Women's rights" - ] - }, - { - "text": "Continue its reform process with all possible financial and technical assistance from the international community and relevant agencies for the political, economic and social uplift of its citizens, in particular women.", - "values": [ - "Technical assistance and cooperation", - "Women's rights" - ] - }, - { - "text": "Ratify the International Covenant on Economic, Social and Cultural Rights without reservations", - "values": [ - "ESC rights - general", - "International instruments" - ] - }, - { - "text": "Strengthen its protection programme against sexual and sexist violence, with a focus on the availability, accessibility and quality of protection measures, and ensure the full enjoyment of sexual and reproductive rights", - "values": [ - "Right to health", - "Women's rights" - ] - }, - { - "text": "Develop a comprehensive strategy and action plan to prevent violence against women, as well as establish an effective institutional mechanism to coordinate, monitor and assess the effectiveness of the measures taken, so that all forms of violence are systematically and duly investigated and perpetrators are effectively prosecuted and punished ", - "values": [ - "Women's rights" - ] - }, - { - "text": "Establish an effective system to address and prevent violence against women ", - "values": [ - "Women's rights" - ] - }, - { - "text": "Remove the requirement in the law on sponsorship for foreign nationals to obtain the permission of their current employer before moving jobs or leaving the country, and ensure that the rights of migrant workers are protected ", - "values": [ - "Labour", - "Migrants" - ] - }, - { - "text": "Consider raising the minimum age of criminal responsibility", - "values": [ - "Justice", - "Rights of the Child" - ] - }, - { - "text": "Ratify the Optional Protocols to CRC, on involvement of children in armed conflict", - "values": [ - "International humanitarian law", - "International instruments", - "Rights of the Child" - ] - }, - { - "text": "Apply a moratorium on death penalty as a first step towards its effective abolition", - "values": [ - "Death penalty" - ] - }, - { - "text": "Speed up the ratification procedure of the African Union Convention for the Protection and Assistance of Internally Displaced Persons in Africa (Kampala Convention)", - "values": [ - "Internally displaced persons", - "International instruments" - ] - }, - { - "text": "Establish a mechanism for the enforcement of protective and restrictive orders relating to domestic violence, to ensure their effectiveness and prevent recurring offences, inter alia, through establishing specialized police units on gender-based violence and domestic violence", - "values": [ - "Rights of the Child", - "Women's rights" - ] - }, - { - "text": "Adopt immediate and positive measures to combat all forms of discrimination, xenophobia and related intolerance against the Sinti and Roma communities, regarding their access to housing, education, employment and healthcare ", - "values": [ - "Development", - "Minorities", - "Racial discrimination", - "Right to education", - "Right to health", - "Right to housing" - ] - }, - { - "text": "Implement and strengthen measures to protect the rights of the child, including by preventing and combating the recruitment of child soldiers and trafficking in children", - "values": [ - "International humanitarian law", - "Rights of the Child", - "Trafficking" - ] - }, - { - "text": "Fully implement and strengthen the legislative framework to fight against domestic violence, sexual aggressions and rape, including marital rape", - "values": [ - "Rights of the Child", - "Women's rights" - ] - }, - { - "text": "Continue efforts to achieve the national strategic goals for sustainable development (2015-2020)", - "values": [ - "Development" - ] - }, - { - "text": "Strengthen its Centre for Human Rights through increased funding and personnel, and specially by ensuring its compliance with the Paris Principles", - "values": [ - "National Human Rights Institution" - ] - }, - { - "text": "Further improve national institutions and human rights infrastructure, including the harmonization of domestic legislation and the legal system with the international and European Union instruments on persons with disabilities, the rights of the child, the prevention of domestic violence and trafficking in persons ", - "values": [ - "Disabilities", - "International instruments", - "Rights of the Child", - "Trafficking", - "Women's rights" - ] - }, - { - "text": "Establish a national human rights institution in cooperation with and with the assistance of the international community ", - "values": [ - "National Human Rights Institution" - ] - }, - { - "text": "Put in practice concrete programs for awareness raising against discrimination for gender identity and sexual orientation, guarantee the respect for privacy ", - "values": [ - "Human rights education and training", - "Privacy", - "Sexual Orientation and Gender Identity" - ] - }, - { - "text": "Abolish harmful customary practices against young girls in line with its commitments under the Convention on the Elimination of All Forms of Discrimination against Women", - "values": [ - "Rights of the Child", - "Treaty bodies", - "Women's rights" - ] - }, - { - "text": "Comply with the legislation prohibiting the forced military recruitment of children ", - "values": [ - "Rights of the Child" - ] - }, - { - "text": "Increase the budget of and strengthen the National Office against Racial Discrimination", - "values": [ - "Racial discrimination" - ] - }, - { - "text": "Ensure the abolition of all forms of early and forced marriage, including through increasing the minimum age of marriage to 18 for girls", - "values": [ - "Rights of the Child", - "Women's rights" - ] - }, - { - "text": "Guarantee the exercise of freedom of expression, association and peaceful assembly, including for the political opposition, journalists and civil society ", - "values": [ - "Civil society", - "Freedom of association and peaceful assembly", - "Freedom of opinion and expression", - "Freedom of the press" - ] - }, - { - "text": "Continue carrying out the principles contained in CAT, with a specific focus on the elimination of arbitrary detention, especially of minors, and of violence occurring at the hands of law enforcement personnel", - "values": [ - "Detention", - "Human rights violations by state agents", - "International instruments", - "Rights of the Child", - "Torture and other CID treatment" - ] - }, - { - "text": "Provide the Commission of Inquiry with full cooperation", - "values": [ - "Technical assistance and cooperation" - ] - }, - { - "text": "Ireland was committed to reviewing family law and the law on domestic violence", - "values": [ - "Rights of the Child", - "Women's rights" - ] - }, - { - "text": "Continue the practice of implementing the programmes aimed at further advancing the improved social welfare of the population, in particular the vulnerable ones ", - "values": [ - "Development" - ] - }, - { - "text": "The delegation welcomed positive comments regarding Kazakhstan's achievements in gender policy and reaffirmed Kazakhstan's commitment to implement its obligations under the Convention on the Elimination of All Forms of Discrimination against Women and other relevant international polices.", - "values": [ - "International instruments", - "Women's rights" - ] - }, - { - "text": "Establish an effective national policy for combating trafficking in persons and establish appropriate mechanisms for the protection of its victims", - "values": [ - "Trafficking" - ] - }, - { - "text": "Take the necessary measures to resolve the problem of prison overcrowding", - "values": [ - "Detention" - ] - }, - { - "text": "Continue its efforts in safeguarding and protecting the rights of migrant workers", - "values": [ - "Labour", - "Migrants" - ] - }, - { - "text": "Enhance effectiveness of its legal, executive judiciary and law enforcements reforms, in line with international human rights standards", - "values": [ - "International instruments", - "Justice" - ] - }, - { - "text": "Develop a specific action plan for people with disabilities at the national level and establish advisory councils in harmony with federal policies and the federated entities", - "values": [ - "Disabilities" - ] - }, - { - "text": "Ratify more human rights instruments, especially the Convention on the Rights of Persons with Disabilities ", - "values": [ - "Disabilities", - "International instruments" - ] - }, - { - "text": "Take all necessary measures to allow victims to have access to effective remedies and reparation, and provide training to judges, magistrates and police authorities in order to apply the pertinent legislation in conformity with the Convention ", - "values": [ - "Justice", - "Torture and other CID treatment" - ] - }, - { - "text": "Sign and ratify the Optional Protocol to the Convention against Torture and Other Cruel, Inhuman or Degrading Treatment or Punishment and establish an independent national mechanism to monitor places of deprivation of liberty ", - "values": [ - "Detention", - "International instruments", - "Torture and other CID treatment" - ] - }, - { - "text": "Continue taking serious consideration on the ratification of the International Convention on the Rights of All Migrant Workers and Members of Their Families and the ILO Domestic Workers Convention, 2011 (No. 189)", - "values": [ - "International instruments", - "Labour", - "Migrants" - ] - }, - { - "text": "Particularly promote realization of the right to development, as an inalienable right, and support ongoing efforts to further develop the concept and its operationalization", - "values": [ - "Development" - ] - }, - { - "text": "Re-establish the moratorium on the use of the death penalty with a view to its abolition, particularly when the alleged perpetrators are minors or belong to minorities", - "values": [ - "Death penalty", - "Minorities", - "Rights of the Child" - ] - }, - { - "text": "Further encourage and facilitate the representation of women in parliament, in the judiciary and in diplomatic missions abroad", - "values": [ - "Women's rights" - ] - }, - { - "text": "Reject the adoption of legislative proposals that would restrict the enjoyment of fundamental rights by lesbian, gay, bisexual, transgender and intersex persons", - "values": [ - "Sexual Orientation and Gender Identity" - ] - }, - { - "text": "Further promote measures for the advancement of women and address traditional stereotype attitudes which limit their self-development", - "values": [ - "Women's rights" - ] - }, - { - "text": "Allow international humanitarian organizations, including UNHCR and the diplomatic community, unfettered access to Hmong returnees, and further ensure that the Hmong people repatriated from Thailand are treated in accordance with international law, including the 158 eligible for third-country resettlement ", - "values": [ - "Asylum-seekers - refugees", - "Indigenous peoples", - "International instruments" - ] - }, - { - "text": "Take steps to implement a comprehensive legal framework addressing all forms of violence against women and children ", - "values": [ - "Rights of the Child", - "Women's rights" - ] - }, - { - "text": "Ensure that all allegations of arbitrary detention, torture and enforced disappearance are impartially and effectively investigated by an independent body", - "values": [ - "Detention", - "Enforced disappearances" - ] - }, - { - "text": "Establish a national agency aimed at preventing sexual and gender-based violence and at ensuring access to justice for these victims ", - "values": [ - "Rights of the Child", - "Women's rights" - ] - }, - { - "text": "Continue pursuing appropriate, sensitized polices such as the National Strategy on Resolving the Issue of Refugees and Internally Displaced Persons for the period 2011-2014 to address the situation of such persons in a durable, sustainable manner ", - "values": [ - "Asylum-seekers - refugees", - "Internally displaced persons" - ] - }, - { - "text": "Continue its ongoing efforts to fight corruption and to enhance the transparent and efficient nature of the State Agency for Public Services and Social Innovations (ASAN) ", - "values": [ - "Corruption" - ] - }, - { - "text": "Adopt a national action plan for child rights in the juvenile justice system ", - "values": [ - "Justice", - "Rights of the Child" - ] - }, - { - "text": "Continue its efforts to alleviate violence against women, by establishing courts specialized in women's issues and family violence ", - "values": [ - "Women's rights" - ] - }, - { - "text": "Take legislative measures to explicitly prohibit all forms of discrimination, in particular against children with disabilities, girls and children belonging to the San communities, and to effectively protect children accused of witchcraft", - "values": [ - "Disabilities", - "Minorities", - "Rights of the Child", - "Women's rights" - ] - }, - { - "text": "Continue its commitment to the promotion and protection of human rights through its thematic strategies of good governance, combating corruption, eradicating poverty and improving health conditions in the country", - "values": [ - "Corruption", - "Justice", - "Poverty", - "Right to health" - ] - }, - { - "text": "Promote efforts to abolish the death penalty ", - "values": [ - "Death penalty" - ] - }, - { - "text": "Take concrete measures to protect women, who remain marginalized, discriminated against and at the high risk of being subjected to violence", - "values": [ - "Women's rights" - ] - }, - { - "text": "Continue efforts to ensure a larger and more inclusive protection for foreign workers ", - "values": [ - "Migrants" - ] - }, - { - "text": "Strengthen the rule of law by establishing an independent complaints commission capable of investigating and prosecuting complaints against the security forces", - "values": [ - "Human rights violations by state agents", - "Justice" - ] - }, - { - "text": "Invigorate measures to safeguard the freedoms of press, speech, and broad participation from various sectors in political and public life", - "values": [ - "Freedom of opinion and expression", - "Freedom of the press" - ] - }, - { - "text": "Continue cooperating with the Office of the United Nations High Commissioner for Human Rights to strengthen human rights education within the judiciary, and the military and security forces", - "values": [ - "Human rights education and training", - "Justice", - "Technical assistance and cooperation" - ] - }, - { - "text": "Protect persons with albinism from violence, abduction, discrimination and stigmatization", - "values": [ - "Minorities" - ] - }, - { - "text": "Draft, support the passage of, and implement comprehensive antitrafficking legislation in line with the UN Palermo Protocol", - "values": [ - "International instruments", - "Trafficking" - ] - }, - { - "text": "Keep the systematic and coordinated work with the "National Commission for Drug Control and Prevention" and continue developing the "Help Line" services for the prevention of drug use and for sexual education with a gender perspective ", - "values": [ - "Public security", - "Right to health", - "Women's rights" - ] - }, - { - "text": "Ratify the Rome Statue of the International Criminal Court and the Agreement on the Privileges and Immunities of the International Criminal Court ", - "values": [ - "International instruments", - "Justice" - ] - }, - { - "text": "Ensure that all religious communities are treated without discrimination.", - "values": [ - "Freedom of religion and belief" - ] - }, - { - "text": "Take measures to ensure greater representation in Parliament for women ", - "values": [ - "Women's rights" - ] - }, - { - "text": "Step up efforts to implement the Convention on the Rights of the Child, particularly in the areas of juvenile justice, trafficking of children and child labor ", - "values": [ - "International instruments", - "Rights of the Child" - ] - }, - { - "text": "Ratify the Optional Protocol to the Convention on the Rights of the Child on the sale of children, child prostitution and child pornography and the Optional Protocol to the Convention on the Rights of the Child on the involvement of children in armed conflict", - "values": [ - "International humanitarian law", - "International instruments", - "Rights of the Child", - "Trafficking" - ] - }, - { - "text": "Introduce an inclusive process involving all relevant stakeholders in developing the national human rights plan of action", - "values": [ - "General" - ] - }, - { - "text": "Implement concrete measures consistent with the Covenant on Civil and Political Rights, to ensure the participation of indigenous peoples in the decisions affecting their natural environment, measures of subsistence, culture and spiritual practices ", - "values": [ - "Indigenous peoples", - "International instruments" - ] - }, - { - "text": "Establish a modern Juvenile Justice System to consolidate the protection of the rights of children ", - "values": [ - "Justice", - "Rights of the Child" - ] - }, - { - "text": "Continue efforts to strengthen reporting capacity to the UN human rights treaty bodies ", - "values": [ - "Treaty bodies" - ] - }, - { - "text": "Strengthen human rights cooperation and constructive dialogue, including those through the ASEAN Human Rights Commission and with the relevant United Nations human rights bodies and mechanisms ", - "values": [ - "Special procedures", - "Technical assistance and cooperation", - "Treaty bodies", - "UPR process" - ] - }, - { - "text": "Ratify the Second Optional Protocol to the International Covenant on Civil and Political Rights and abolish the death penalty", - "values": [ - "Death penalty", - "International instruments" - ] - }, - { - "text": "Carry on with ensuring the reduction of HIV prevalence in Zambia", - "values": [ - "HIV - Aids" - ] - }, - { - "text": "Continue to implement the United Nations Convention against Corruption to prevent and punish corruption.", - "values": [ - "Corruption" - ] - }, - { - "text": "Put an end to the disproportionate use of force by the police against all citizens, in particular, Afro-Canadians", - "values": [ - "Human rights violations by state agents", - "Minorities", - "Racial discrimination" - ] - }, - { - "text": "Enhance efforts to improve the rate of birth registration among indigenous peoples and other vulnerable groups", - "values": [ - "Indigenous peoples", - "Rights of the Child", - "Statelessness and the right to nationality" - ] - }, - { - "text": "Provide information concerning the whereabouts of detainees, to their families and legal defenders and to provide access to them", - "values": [ - "Detention" - ] - }, - { - "text": "Strengthen its policies to protect the rights of migrants and minority groups and ensure the integration of those groups into Norwegian society ", - "values": [ - "Migrants", - "Minorities" - ] - }, - { - "text": "Ensure punishment for perpetrators of all violence against women and also thoroughly investigate and punish members and leaders of illegal jirgas for their calls to violence against women.", - "values": [ - "Women's rights" - ] - }, - { - "text": "Take all necessary measures to prevent and avert illegal treatment by law enforcement authorities", - "values": [ - "Human rights violations by state agents", - "Torture and other CID treatment" - ] - }, - { - "text": "Enable unfettered and continue access of ICRC to detention facilities following the encouraging agreement reached in March 2008.", - "values": [ - "Detention" - ] - }, - { - "text": "Continue on its path of cooperation with the special procedures of the Human Rights Council and other relevant regional mechanisms", - "values": [ - "Special procedures", - "UPR process" - ] - }, - { - "text": "Ensure that community activists and indigenous leaders can exercise their right to peaceful assembly and protest and that anti-terrorist legislation is not misused to inappropriately censure such activities ", - "values": [ - "Counter-terrorism", - "Freedom of association and peaceful assembly", - "Indigenous peoples" - ] - }, - { - "text": "Invite the Special Rapporteur and/or an international humanitarian organization recognized for its independence to visit "reform institutions" and other correctional and penitentiary institutions to assess/evaluate detention conditions with a view to proposing measures to improve these conditions so that they meet international norms and standards", - "values": [ - "Detention", - "Special procedures" - ] - }, - { - "text": "Eliminate the death penalty for crimes that cannot be considered as most serious crimes such as the economic ones", - "values": [ - "Death penalty" - ] - }, - { - "text": "Having studied all the background information, recommended that a national programme to combat overcrowding in prisons be developed in order to bring Polish places of detention into line with international standards.", - "values": [ - "Detention" - ] - }, - { - "text": "Re-evaluate mechanisms at the federal, state and tribal levels, to address the disproportionate impact on immigrant women", - "values": [ - "Migrants", - "Women's rights" - ] - }, - { - "text": "Intensify measures in comprehensively addressing the problem of human trafficking and violence against women, including by, among others, implementing social, educational and legal safeguards, public awareness campaigns to sensitize the community and to continue building law enforcement capabilities and capacities", - "values": [ - "Human rights education and training", - "Trafficking", - "Women's rights" - ] - }, - { - "text": "Incorporate the recommendations from treaty monitoring bodies and from the special procedures regarding the administration of justice within the Sectorial Plan for Plural Justice 2013-2025", - "values": [ - "Justice", - "Special procedures", - "Treaty bodies" - ] - }, - { - "text": "Effectively investigate and prosecute attacks against journalists and introduce into domestic laws strong legislation prohibiting these practices and imposing criminal penalties ", - "values": [ - "Freedom of the press" - ] - }, - { - "text": "Ratify the International Convention for the Protection of All Persons from Enforced Disappearance, as recommended and accepted by the country in the first cycle", - "values": [ - "Enforced disappearances", - "International instruments", - "UPR process" - ] - }, - { - "text": "Undertake a global revision of its national legislation in order to harmonize it with human rights instruments to which Tanzania is party, with a view to guaranteeing gender equality", - "values": [ - "International instruments", - "Women's rights" - ] - }, - { - "text": "Strengthen its commitment in favor of the abolition of the death penalty by ratifying the Second Optional Protocol to the International Covenant on Civil and Political Rights", - "values": [ - "Death penalty", - "International instruments" - ] - }, - { - "text": "Follow-up dynamically on its policies of combating prison overpopulation, in particular through the development of new facilities", - "values": [ - "Detention" - ] - }, - { - "text": "Further strengthening national efforts to eliminate all forms of violence against women, including FGM, and taking all the necessary measures to enable women to participate in public and private life on an equal footing with men ", - "values": [ - "Torture and other CID treatment", - "Women's rights" - ] - }, - { - "text": "Eliminate all forms of discrimination, particularly against children in vulnerable situations", - "values": [ - "Rights of the Child" - ] - }, - { - "text": "Proceed to a formal and effective abolishment of death penalty through the ratification of the 2nd Optional Protocol to the ICCPR", - "values": [ - "Death penalty", - "International instruments" - ] - }, - { - "text": "Ratify the International Convention on the Protection of the Rights of All Migrant Workers and Members of Their Families and ILO Convention No. 189", - "values": [ - "International instruments", - "Labour", - "Migrants" - ] - }, - { - "text": "Reinforce its efforts even further and call upon the international community and specially OHCHR to assist Djibouti by providing technical assistance for the implementation of recommendations from treaty bodies", - "values": [ - "Technical assistance and cooperation", - "Treaty bodies" - ] - }, - { - "text": "Develop a national strategy aimed at eliminating poverty and homelessness", - "values": [ - "Poverty", - "Right to housing" - ] - }, - { - "text": "Set up a genuine policy on protection and promotion of women\u2019s rights", - "values": [ - "Women's rights" - ] - }, - { - "text": "Take comprehensive action in order to achieve full equality for women, and to especially repeal section 15(4) of the Constitution and to review customary law in order to eliminate discriminatory elements such as an inheritance rule providing for male-only inheritance of the family home", - "values": [ - "Women's rights" - ] - }, - { - "text": "Continue efforts in the area of human rights education and training", - "values": [ - "Human rights education and training" - ] - }, - { - "text": "Ratify the human rights instruments to which it is not yet a party", - "values": [ - "International instruments" - ] - }, - { - "text": "Increase investments aimed at closing the quality gap between education in urban and rural, remote areas or those with ethnic minorities, as well as investments aimed at increasing education on the content of the Universal Declaration of Human Rights and core international human rights instruments ", - "values": [ - "Human rights education and training", - "International instruments", - "Minorities" - ] - }, - { - "text": "Establish a national human rights institution in accordance with the Paris Principles, and take measures to provide the necessary resources for its good functioning", - "values": [ - "National Human Rights Institution" - ] - }, - { - "text": "Ensure the protection of women's human rights by reducing and eliminating human trafficking, sexual violence and exploitation, domestic violence, maternal mortality, and female genital mutilation", - "values": [ - "Rights of the Child", - "Torture and other CID treatment", - "Trafficking", - "Women's rights" - ] - }, - { - "text": "Ratify core international human rights instruments, in particular the Rome Statute of the International Criminal Court, the International Convention on the Protection of the Rights of All Migrant Workers and Members of Their Families and the Optional Protocol to the Convention against Torture", - "values": [ - "Detention", - "International instruments", - "Justice", - "Labour", - "Migrants", - "Torture and other CID treatment" - ] - }, - { - "text": "Continue supporting dialogue and international efforts to move towards a political solution, which is the exclusive responsibility of the Syrian people in their own right to self-determination without any foreign interference", - "values": [ - "Other" - ] - }, - { - "text": "Intensify the policy and measures in the promotion of human rights for vulnerable groups, including the fight against racial discrimination and against trafficking and sexual exploitation of children ", - "values": [ - "Racial discrimination", - "Rights of the Child", - "Trafficking" - ] - }, - { - "text": "Make available better support networks to protect women victims ", - "values": [ - "Women's rights" - ] - }, - { - "text": "Since Zambia has one of the highest birth rates in the world, develop and implement a comprehensive strategy on population and education policies, in line with and respecting economic, social and cultural rights", - "values": [ - "ESC rights - general" - ] - }, - { - "text": "Continue its efforts to complete the accession to the relevant instruments such as the International Convention on the Protection of the Rights of All Migrant Workers and Members of Their Families", - "values": [ - "International instruments", - "Labour", - "Migrants" - ] - }, - { - "text": "Better disseminate the Declaration on Human Rights Defenders and ensure its full observance", - "values": [ - "Human rights defenders", - "International instruments" - ] - }, - { - "text": "Continue efforts to curb discriminatory and harmful practices towards women as well as existing high rate of maternal mortality", - "values": [ - "Right to health", - "Torture and other CID treatment", - "Women's rights" - ] - }, - { - "text": "Intensify its efforts aimed at modifying or eliminating the negative cultural practices and stereotypes which are the source of certain forms of discrimination against women", - "values": [ - "Women's rights" - ] - }, - { - "text": "Further strengthen the measures to combat human trafficking ", - "values": [ - "Trafficking" - ] - }, - { - "text": "Continue its efforts, through the United National Framework Convention on Climate Change and other forums, to remind the international community, especially developed countries and other major emitting states, of their obligations to protect and promote human rights in Nauru by reducing greenhouse gas emissions to safe levels ", - "values": [ - "Environment" - ] - }, - { - "text": "Ratify the Palermo Convention (Convention against Transnational Organized Crime) as well as its Protocol on the Trafficking in Persons", - "values": [ - "International instruments", - "Trafficking" - ] - }, - { - "text": "Consider the adoption of appropriate policies to additionally promote gender equality in public affairs and to enforce strict sanctions against all kinds of discrimination and abuse of women's rights", - "values": [ - "Women's rights" - ] - }, - { - "text": "Ensure that confessions obtained through torture have no value and that the new reform of the Code of Criminal Procedure is effectively carried out with respect to access to counsel and family and limits on the custody period ", - "values": [ - "Detention", - "Justice", - "Torture and other CID treatment" - ] - }, - { - "text": "Initiate adequate reforms in the health sector ", - "values": [ - "Right to health" - ] - }, - { - "text": "Continue to take measures to secure the rule of law, including by establishing a criminal justice system that gives due consideration to human rights ", - "values": [ - "Justice" - ] - }, - { - "text": "Continue with its efforts to safeguard the rights of migrants, and provide adequate funding for migrant integration policies", - "values": [ - "Migrants" - ] - }, - { - "text": "Develop and support programmes directed towards the training and education of marginalized youth ", - "values": [ - "Right to education", - "Rights of the Child" - ] - }, - { - "text": "Strengthen the independence and effectiveness of the judiciary and adopt all necessary measures to consolidate recent efforts in the fight against impunity", - "values": [ - "Impunity", - "Justice" - ] - }, - { - "text": "In the area of the rights of migrants, follow-up to programmes and the national plan for the human development of migrants and the promotion and protection of migrants and their families", - "values": [ - "Migrants" - ] - }, - { - "text": "Repeal all provisions that criminalize same sex relations, including in particular article 16 of the Sexual Offences Act", - "values": [ - "Sexual Orientation and Gender Identity" - ] - }, - { - "text": "Continue strengthening its sound social plans and programs in favour of its people ", - "values": [ - "Right to education", - "Right to food", - "Right to health" - ] - }, - { - "text": "Take necessary measures to implement the National Plan to Combat Torture", - "values": [ - "Torture and other CID treatment" - ] - }, - { - "text": "Establish procedures and allocate resources to identify victims of trafficking in persons and provide appropriate services for them", - "values": [ - "Trafficking" - ] - }, - { - "text": "Further improve the conditions of prisons to make them more conducive to the rehabilitation of inmates as per the comment of EHRC ", - "values": [ - "Detention", - "National Human Rights Institution" - ] - }, - { - "text": "Enhance the implementation of the Law on Ensuring Equality by strengthening the mandate of the Equality Council, including by allowing it to issue binding recommendations and to sanction discrimination, as well as by increasing awareness-raising through education", - "values": [ - "Human rights education and training" - ] - }, - { - "text": "Take the necessary measures to ensure the independence of the International Crimes Tribunal, Bangladesh (ICT-BD), respecting the rights of all of the accused to a trial with full guarantees ", - "values": [ - "Justice" - ] - }, - { - "text": "Reform the laws, regulations and codes of conduct that regulate the functioning of the police to bring them into line with international human rights standards ", - "values": [ - "International instruments", - "Justice" - ] - }, - { - "text": "Prohibit and criminalize the corporal punishment of children", - "values": [ - "Rights of the Child" - ] - }, - { - "text": "Promotion of human rights within the national police, modification of the document on criminal police record, creation of a human rights and anti-corruption unit within the National Police, reform of the manual on procedures for the handling of children", - "values": [ - "Corruption", - "Human rights education and training", - "Rights of the Child" - ] - }, - { - "text": "Prosecute all cases of racial violence and discrimination", - "values": [ - "Racial discrimination" - ] - }, - { - "text": "Study the possibility of ratifying or adhering to the International Convention for the Protection of All Persons from Enforced Disappearance, the Optional Protocol to the Convention against Torture and the International Convention on the Protection of the Rights of All Migrant Workers and Members of Their Families", - "values": [ - "Detention", - "Enforced disappearances", - "International instruments", - "Labour", - "Migrants", - "Torture and other CID treatment" - ] - }, - { - "text": "Strengthen measures to ensure the human rights of migrants and their families", - "values": [ - "Migrants" - ] - }, - { - "text": "Continue the judicial reform with a view to improving the access to justice by promoting a better territorial coverage and upgrading the penitentiary administration ", - "values": [ - "Detention", - "Justice" - ] - }, - { - "text": "Ensure and guarantee non-discriminatory access to health services, education, justice and employment for all persons, irrespective of their actual or perceived sexual orientation or gender identity", - "values": [ - "Justice", - "Labour", - "Right to education", - "Right to health", - "Sexual Orientation and Gender Identity" - ] - }, - { - "text": "Ratify ICESCR ", - "values": [ - "ESC rights - general", - "International instruments" - ] - }, - { - "text": "Step up efforts to ensure access to quality education for all children, including those from minority groups and rural areas", - "values": [ - "Right to education" - ] - }, - { - "text": "Take further measures in order to lower or abolish education fees at the University level as well as granting scholarships in order to alleviate the financial burdens further", - "values": [ - "Right to education" - ] - }, - { - "text": "Consider implementing, with the assistance of OHCHR, a training and awareness raising programme on international human rights and humanitarian law for members of the security forces, law enforcement officials and judicial officials.", - "values": [ - "Human rights education and training", - "International humanitarian law", - "International instruments", - "Technical assistance and cooperation" - ] - }, - { - "text": "Expand the successful pretrial diversion programme for juvenile offenders from the existing five provinces to 10", - "values": [ - "Detention", - "Rights of the Child" - ] - }, - { - "text": "Accede to the OPCAT, improve its national implementation of the CAT, establish an independent and effective complaints procedure for victims of torture and review its compliance with the principle of non-refoulement", - "values": [ - "Detention", - "International instruments", - "Torture and other CID treatment" - ] - }, - { - "text": "Encourage the Ministry of Gender, Children and Social Protection to end the practice and harmful effects of child marriage and related cultural practices", - "values": [ - "Rights of the Child", - "Torture and other CID treatment", - "Women's rights" - ] - }, - { - "text": "Introduce further measures to sustain and reinforce progress made in poverty reduction", - "values": [ - "Poverty" - ] - }, - { - "text": "Improve conditions in Belgium's prisons, including in relation to overcrowding ", - "values": [ - "Detention" - ] - }, - { - "text": "Continue progress towards equality between women and men, increasing and strengthening the representation of women in politics, economics, academia and the judiciary. This also implies effective equality before the law, including inheritance rights, equal access to justice, equality in the effective exercise of their rights to education and health, and equal remuneration and access to credit and other financial services", - "values": [ - "Right to education", - "Right to health", - "Women's rights" - ] - }, - { - "text": "Complete, without delay, the ratification of the Convention against Torture and Other Cruel, Inhuman or Degrading Treatment or Punishment", - "values": [ - "International instruments", - "Torture and other CID treatment" - ] - }, - { - "text": "Prohibiting corporal punishment in all settings, including in the home ", - "values": [ - "Rights of the Child", - "Torture and other CID treatment" - ] - }, - { - "text": "Ratify the Optional Protocol to the Convention on the Rights of the Child", - "values": [ - "International instruments", - "Rights of the Child" - ] - }, - { - "text": "Continue actions for the implementation of the objectives/targets of the Qatar National Vision 2030, which plans the evolution, in practice, of the economic, social, cultural, human and environmental development of the State during the next few years ", - "values": [ - "ESC rights - general" - ] - }, - { - "text": "Finalize the fifth and sixth due reports to the Committee on the Elimination of Discrimination against Women, without further delay ", - "values": [ - "Treaty bodies" - ] - }, - { - "text": "Reinforce its measures in the new National Strategy to Combat Poverty so that disadvantaged and marginalized individuals and groups would benefit", - "values": [ - "Poverty" - ] - }, - { - "text": "Ensure access to effective asylum procedures in line with international law and that migration policies respect the principle of non-refoulement and European Union legislation", - "values": [ - "Asylum-seekers - refugees", - "Migrants" - ] - }, - { - "text": "Further promote protection of victims of human trafficking, including measures of more effective investigations and prosecution of perpetrators", - "values": [ - "Trafficking" - ] - }, - { - "text": "Extend a standing invitation to all special procedures", - "values": [ - "Special procedures" - ] - }, - { - "text": "Review the kafala system, and study possible alternatives in managing foreign labour, with a view to strengthening protection for domestic workers, including from violence and abuse, and to provide effective avenues for redress", - "values": [ - "Labour", - "Migrants" - ] - }, - { - "text": "Continue to strengthen national institutions responsible for human rights", - "values": [ - "National Human Rights Institution" - ] - }, - { - "text": "Reform its Penal Code to criminalize FGM and approach all this process in an integral manner", - "values": [ - "Rights of the Child", - "Torture and other CID treatment", - "Women's rights" - ] - }, - { - "text": "Continue to implement measures to reduce the high rate of displaced people", - "values": [ - "Internally displaced persons" - ] - }, - { - "text": "Enact as soon as possible the statute of the Human Rights Commission to make it operational", - "values": [ - "National Human Rights Institution" - ] - }, - { - "text": "That the provisional Government ensure full respect for the rule of law and human rights and, in this regard, abide by all of Kyrgyzstan's international obligations and commitments ", - "values": [ - "Justice" - ] - }, - { - "text": "Steps will be taken to create a children's court to settle family disputes.", - "values": [ - "Justice", - "Rights of the Child" - ] - }, - { - "text": "Work closely with the international community in the humanitarian response to the ongoing drought and to ensure that humanitarian aid is distributed in a non-political, non-discriminatory manner", - "values": [ - "Technical assistance and cooperation" - ] - }, - { - "text": "Establish a human rights commission in compliance with the Paris Principles", - "values": [ - "National Human Rights Institution" - ] - }, - { - "text": "Publish a list of all those killed in 1996 at Abu Selim prison, and provide their families with death certificates stating the place, date and exact circumstances of death ", - "values": [ - "Detention", - "Extrajudicial executions", - "Human rights violations by state agents" - ] - }, - { - "text": "Continue efforts to make education more accessible through a compulsory primary education policy ", - "values": [ - "Right to education" - ] - }, - { - "text": "Ratify the Second Optional Protocol to the International Covenant on Civil and Political Rights, amend the Constitution to abolish any constitutional provisions that provide for death penalty, provides civic education at all levels of the society on the need of abolishing the death penalty and commute the death sentences of current prisoners awaiting execution ", - "values": [ - "Death penalty", - "International instruments" - ] - }, - { - "text": "Move on speedily to the ratification and/or application of human rights instruments, particularly the Convention on the Elimination of All Forms of Discrimination against Women", - "values": [ - "International instruments", - "Women's rights" - ] - }, - { - "text": "Sign and ratify ICCPR, ICESCR, CAT and their Optional Protocols as well as the Optional Protocols to CEDAW, CPRD and CED ", - "values": [ - "International instruments" - ] - }, - { - "text": "Revise criteria for enrolment into special schools thus avoiding the enrolment of Roma children in special schools without due recommendation of education and psychology professionals", - "values": [ - "Minorities", - "Right to education", - "Rights of the Child" - ] - }, - { - "text": "Provide international humanitarian organisations and human rights monitors access to the camps and their surviving victims", - "values": [ - "Detention" - ] - }, - { - "text": "Increase the resources aimed at improving the conditions of prisons, especially in relation to health conditions and the separation of prisoners according to the type of crime committed and level of risk", - "values": [ - "Detention", - "Right to health" - ] - }, - { - "text": "Continue efforts to find solutions to improve the situation of IDPs and refugees ", - "values": [ - "Asylum-seekers - refugees", - "Internally displaced persons" - ] - }, - { - "text": "Adopt appropriate measures to guarantee equal access to education without any discrimination to pave the way to the country's economic and social development in a sustainable manner", - "values": [ - "Development", - "Right to education" - ] - }, - { - "text": "Sign the International Convention on the Protection of the Rights of All Migrant Workers and Members of Their Families (ICRMW) ", - "values": [ - "International instruments", - "Labour", - "Migrants" - ] - }, - { - "text": "Combat further terrorist groups which are destabilizing the country and are using it as logistical base for organizing many forms of trafficking and terrorist acts", - "values": [ - "Public security" - ] - }, - { - "text": "Consider the adoption of a comprehensive law and an action plan to combat violence against women ", - "values": [ - "Women's rights" - ] - }, - { - "text": "Adopt a multiannual action plan to implement the National Policy on Human Rights, and the recommendations of the Human Rights Council, with an effective monitoring structure ", - "values": [ - "General" - ] - }, - { - "text": "Take measures to further develop the culture of human rights in order to enhance the efficiency of human rights promotion and protection ", - "values": [ - "Human rights education and training" - ] - }, - { - "text": "Bring legislation in line with article 19 of ICCPR by doing away with censorship and penalties against organs of the press and ensuring that journalists may safely exercise their functions", - "values": [ - "Freedom of the press", - "International instruments" - ] - }, - { - "text": "Strengthen efforts to ensure that all newborn children are officially registered.", - "values": [ - "Rights of the Child" - ] - }, - { - "text": "Consider the possibility of enhancing the necessary measures for the protection and integration of the LGBT population ", - "values": [ - "Sexual Orientation and Gender Identity" - ] - }, - { - "text": "Implement support services and ensure non-discrimination against the lesbian, gay, bisexual, transgender and intersex community", - "values": [ - "Sexual Orientation and Gender Identity" - ] - }, - { - "text": "Continue its reform and humanization of the prison system, and to strengthen training programmes for prison administration staff in various categories", - "values": [ - "Detention" - ] - }, - { - "text": "Implement the recommendations of the Special Rapporteur on the rights to freedom of peaceful assembly and of association", - "values": [ - "Freedom of association and peaceful assembly", - "Special procedures" - ] - }, - { - "text": "Continue to implement policies to ensure full protection of civilians, particularly children, in zones of armed conflict", - "values": [ - "International humanitarian law", - "Rights of the Child" - ] - }, - { - "text": "Protect the children and families of migrants and refugees, and accede to the ICRMW ", - "values": [ - "Asylum-seekers - refugees", - "International instruments", - "Labour", - "Migrants", - "Rights of the Child" - ] - }, - { - "text": "Lift the reservation made to article 28, paragraph 1 (a), of the Convention on the Rights of the Child", - "values": [ - "International instruments", - "Rights of the Child" - ] - }, - { - "text": "Take actions to avoid the further recruitment of child soldiers, and ensure the reintegration of all ex-child soldiers to avoid future re-recruitment ", - "values": [ - "International humanitarian law", - "Rights of the Child" - ] - }, - { - "text": "The Government of Guatemala recognizes that there are challenges and obstacles that need to be overcome for the recommendations made by the Human Rights Council in the framework of the universal periodic review to be fully implemented and therefore reiterates its commitment to continue taking action and measures to enhance the promotion and protection of human rights in Guatemala.", - "values": [ - "UPR process" - ] - }, - { - "text": "Sign and ratify the Convention against Torture and Other Cruel, Inhuman or Degrading Treatment or Punishment and the Optional Protocol thereto, as well as the Convention for the Protection of all Persons against Enforced Disappearance.", - "values": [ - "Detention", - "Enforced disappearances", - "International instruments", - "Torture and other CID treatment" - ] - }, - { - "text": "Maintain its important humanitarian effort in cooperation with the international community and particularly the Office of the United Nations High Commissioner for Refugees in full respect of international refugee law", - "values": [ - "Asylum-seekers - refugees", - "Technical assistance and cooperation" - ] - }, - { - "text": "Establish an independent, non-partisan and Angolan-led human rights commission in the country", - "values": [ - "National Human Rights Institution" - ] - }, - { - "text": "Vigorously pursue efforts to promulgate a national law guaranteeing better protection for children, and that the general principle of the best interest for the child, as contained in article 3 of the Convention, is fully reflected in that law.", - "values": [ - "International instruments", - "Rights of the Child" - ] - }, - { - "text": "Increase its efforts to ensure the right to the highest attainable standard of health also to sex workers by ensuring them access to health care and services and comprehensive sexuality education", - "values": [ - "Right to health" - ] - }, - { - "text": "China pledged to honour the commitments made to the world, taking into consideration its actual situation and the people's will and to continue to participate in the review process in a responsible way.", - "values": [ - "UPR process" - ] - }, - { - "text": "Establish and promote culturally sensitive initiatives to provide services for minority groups such as Roma and Sami and for migrants and refugees", - "values": [ - "Asylum-seekers - refugees", - "Indigenous peoples", - "Migrants", - "Minorities" - ] - }, - { - "text": "Address unemployment among young people ", - "values": [ - "Development" - ] - }, - { - "text": "Strengthen training on human rights for non-governmental organizations", - "values": [ - "Civil society", - "Human rights education and training" - ] - }, - { - "text": "Take the measures necessary to accelerate the unification of the three national human rights institutions, which should have been completed at the end of 2006, in order to help avoid fragmented policies and administrative structures that hinder the fulfillment of human rights", - "values": [ - "National Human Rights Institution" - ] - }, - { - "text": "Prohibit child labour in family enterprises and extend the list of dangerous activities in line with the recommendations of the Committee on the Rights of the Child", - "values": [ - "International instruments", - "Labour", - "Rights of the Child", - "Treaty bodies" - ] - }, - { - "text": "End the prosecution of civilians in military courts, transfer all cases of civilians facing proceedings before military courts to civilian courts, order a retrial in civilian courts for all civilians convicted of an offence in military courts, and amend the martial law and the Military Court Act to prohibit the prosecution of civilians in military courts", - "values": [ - "Justice" - ] - }, - { - "text": "Ensure that all allegations of ill-treatment are subject to an effective, independent and impartial investigation ", - "values": [ - "Torture and other CID treatment" - ] - }, - { - "text": "Continue efforts to reduce the number of non-citizens", - "values": [ - "Statelessness and the right to nationality" - ] - }, - { - "text": "Continue to enhance the education system and to support literacy programmes in Iraq", - "values": [ - "Right to education" - ] - }, - { - "text": "Strengthen the ongoing legislative processes regarding the equality between men and women", - "values": [ - "Women's rights" - ] - }, - { - "text": "Devise a national action plan to address the structural roots of violence, raise awareness, and ensure effective access to justice, redress and protection for indigenous women ", - "values": [ - "Indigenous peoples", - "Women's rights" - ] - }, - { - "text": "Favourably consider ratifying the International Covenant on Civil and Political Rights, International Covenant on Economic, Social and Cultural Rights and the Convention on the Rights of Persons with Disabilities in order to improve compliance with human rights international norms and standards", - "values": [ - "CP rights - general", - "Disabilities", - "ESC rights - general", - "International instruments" - ] - }, - { - "text": "Abandon the practice of arbitrary detention of journalists and decriminalize defamation", - "values": [ - "Detention", - "Freedom of opinion and expression", - "Freedom of the press" - ] - }, - { - "text": "Adopt the draft bill on the criminal code, which includes and sanctions gender-based violence ", - "values": [ - "Women's rights" - ] - }, - { - "text": "Adopt effective measures to improve the socioeconomic status of indigenous women and children as well as of those of African descent ", - "values": [ - "Indigenous peoples", - "Minorities", - "Rights of the Child", - "Women's rights" - ] - }, - { - "text": "Criminalize marital rape and domestic violence and sufficiently staff and equip gender desks in police stations to ensure the proper reporting and investigation of incidences of violence", - "values": [ - "Rights of the Child", - "Women's rights" - ] - }, - { - "text": "Enhance efforts to further promote economic and social rights, as well as the rights of vulnerable groups, including women, children and people with disabilities", - "values": [ - "Disabilities", - "ESC rights - general", - "Rights of the Child", - "Women's rights" - ] - }, - { - "text": "Continue to take action to guarantee equal access to basic quality education for all children in the country, including children of migrants", - "values": [ - "Migrants", - "Right to education", - "Rights of the Child" - ] - }, - { - "text": "Continue efforts to promote women's rights and the right to health, particularly that of children, through enhancing international cooperation in these fields", - "values": [ - "Right to health", - "Rights of the Child", - "Women's rights" - ] - }, - { - "text": "Speed up the legislative procedures to adopt the new legislation on de facto unions, ensuring that its provisions fully respect the principle of non-discrimination and equality between women and men ", - "values": [ - "Women's rights" - ] - }, - { - "text": "Establish a specialized police unit for investigating hate crimes, closely collaborating with the LGBT community and organizations in order to create a trusting relationship", - "values": [ - "Sexual Orientation and Gender Identity" - ] - }, - { - "text": "Establish measures in order to provide for equality of rights and opportunities between women and men and the elimination of discrimination against women, including through legal reforms - and devote priority attention to effectively eliminating all forms of violence against women, especially domestic violence, inter alia, by establishing a national mechanism for the advancement of women, and to addressing the issue of violence against women ", - "values": [ - "Women's rights" - ] - }, - { - "text": "Ensure sufficient resources for the effective implementation of the law on trafficking of persons", - "values": [ - "Trafficking" - ] - }, - { - "text": "Take steps towards improving access to health, especially access to maternal health and to adequate obstetric delivery services so as to reduce maternal and child mortality", - "values": [ - "Right to health", - "Rights of the Child", - "Women's rights" - ] - }, - { - "text": "Expedite the ratification of the International Labour Organization Domestic Workers Convention, 2011 (No. 189)", - "values": [ - "International instruments", - "Labour" - ] - }, - { - "text": "Continue its activities to serve a better understanding between all people and religions", - "values": [ - "Freedom of religion and belief" - ] - }, - { - "text": "Devise a national strategy for the reinsertion of former detainees and to prevent recidivism", - "values": [ - "Detention" - ] - }, - { - "text": "Guyana voluntarily commits to continue its consideration of the abolition of the death penalty and to report its findings to the UNHRC in 2 years.", - "values": [ - "Death penalty" - ] - }, - { - "text": "Continue developing policies to guarantee and affirm the rights of migrant women", - "values": [ - "Migrants", - "Women's rights" - ] - }, - { - "text": "Consider introducing anti-discriminatory legislation and establish a specialized body to combat racism and discrimination which could form part of a body with wider objectives in the field of human rights generally", - "values": [ - "Racial discrimination" - ] - }, - { - "text": "Step up efforts to accomplish the National Plan of Action for the Promotion and Protection of human rights (2013-2017)", - "values": [ - "General" - ] - }, - { - "text": "Continue efforts to combat all forms of human trafficking, and to intensify efforts to bring perpetrators to justice", - "values": [ - "Trafficking" - ] - }, - { - "text": "Fully implement the Domestic Violence Act", - "values": [ - "Rights of the Child", - "Women's rights" - ] - }, - { - "text": "Continue with efforts to harmonize reforms and consolidate institutions in respect of democratic principles and human rights despite the constraints that a developing country is always facing, and with the support of OHCHR and the international community ", - "values": [ - "Technical assistance and cooperation" - ] - }, - { - "text": "Share their best practices in the field of education of children with disabilities", - "values": [ - "Disabilities", - "Right to education", - "Rights of the Child" - ] - }, - { - "text": "Continue efforts to improve labour relations system through the development of social dialogue between the Government and the organizations of employers and workers", - "values": [ - "Labour" - ] - }, - { - "text": "Introduce a system of mandatory appeal in cases where the death penalty has been handed down", - "values": [ - "Death penalty" - ] - }, - { - "text": "Repeal the Prevention of Terrorism Act and enforce an immediate moratorium on its use, ensure that the draft Counter-Terrorism Act is compliant with international human rights standards", - "values": [ - "Counter-terrorism" - ] - }, - { - "text": "Intensify efforts in consolidating the right of education to further raise the level of compulsory education as consolidations as the advance it has made in the human capital formation", - "values": [ - "Right to education" - ] - }, - { - "text": "Promote equality between men and women in the labour market, including, inter alia, equal pay for equal work and the support of domestic care and tasks", - "values": [ - "Women's rights" - ] - }, - { - "text": "Strengthen the national programme for the protection of human rights defenders, in particular its funding and human resources", - "values": [ - "Human rights defenders" - ] - }, - { - "text": "Take further measures to promote women's economic empowerment and their participation in political life and decision-making ", - "values": [ - "Women's rights" - ] - }, - { - "text": "Implement further policies to ensure gender equality throughout society and strengthen the promotion and protection of human rights ", - "values": [ - "General" - ] - }, - { - "text": "Establish a national birth registration system to register all births in Korea irrespective of the nationality of parents", - "values": [ - "Rights of the Child", - "Statelessness and the right to nationality" - ] - }, - { - "text": "Subscribe to the Optional Protocol to ICESCR", - "values": [ - "ESC rights - general", - "International instruments" - ] - }, - { - "text": "Take all steps necessary to ensure that Palestinian children in military custody receive the same level of care and have the same rights as provided by Israeli criminal law to youth offenders", - "values": [ - "Detention", - "Justice", - "Rights of the Child" - ] - }, - { - "text": "Continue efforts to combat poverty and provide assistance to families with limited income", - "values": [ - "Poverty" - ] - }, - { - "text": "Pursue the adoption of a general anti-discrimination act and aim at its adoption as soon as possible.", - "values": [ - "Racial discrimination" - ] - }, - { - "text": "Ratify the Convention of the Council of Europe on the Protection of Children against Sexual Exploitation and Sexual Abuse", - "values": [ - "International instruments", - "Rights of the Child" - ] - }, - { - "text": "Continue the Government's efforts in providing the necessary training to the law enforcement officials in the area of human rights", - "values": [ - "Human rights education and training" - ] - }, - { - "text": "Continue efforts towards promotion of human rights education and awareness-raising in the country, inter alia, through inclusion of human rights and international humanitarian law in the syllabi of schools and universities", - "values": [ - "Human rights education and training", - "International humanitarian law" - ] - }, - { - "text": "Continue enhancing the school infrastructure for indigenous communities in order to guarantee an increase in intercultural and bilingual education centres", - "values": [ - "Indigenous peoples", - "Right to education" - ] - }, - { - "text": "Accelerate the process of harmonizing its national legislation with the provisions of the international instruments, to which it is a party", - "values": [ - "International instruments" - ] - }, - { - "text": "Develop institutional mechanisms for the social integration of released persons by strengthening the National Foundation for the Welfare of Prisoners and ex-Prisoners", - "values": [ - "Detention" - ] - }, - { - "text": "Further adopt and implement policies and measures aimed at preventing and punishing discrimination and violence against women, including sexual violence ", - "values": [ - "Women's rights" - ] - }, - { - "text": "Continue to refine its domestic legislative, institutional and administrative structures to strengthen its work in the field in human rights", - "values": [ - "General" - ] - }, - { - "text": "Ensure that during the rebuilding process the needs for accessibility of persons with disabilities are taken into account pursuant current international rules and best practices ", - "values": [ - "Disabilities" - ] - }, - { - "text": "Ratify the Rome Statute establishing ICC", - "values": [ - "International instruments", - "Justice" - ] - }, - { - "text": "Increase efforts to combat the trafficking in human beings, including through the development of international cooperation with interested Governments, international organizations and non-governmental organizations", - "values": [ - "Civil society", - "Trafficking" - ] - }, - { - "text": "Establish a national human rights institution in accordance with the Paris Principles, as recommended by the Committee on the Rights of the Child, that is adequately resourced, child-sensitive and able to provide remedies in a timely manner.", - "values": [ - "National Human Rights Institution", - "Rights of the Child", - "Treaty bodies" - ] - }, - { - "text": "Maintain the institution of the family and marriage as a conjugal union between a man and a woman based on free consent ", - "values": [ - "Other" - ] - }, - { - "text": "Ensure the safety of children in particular through taking steps to protect them from taking part in armed conflicts ", - "values": [ - "International humanitarian law", - "Rights of the Child" - ] - }, - { - "text": "Submit its two overdue reports to the Committee on the Elimination of Racial Discrimination", - "values": [ - "Racial discrimination", - "Treaty bodies" - ] - }, - { - "text": "Promote greater participation and empowerment of young people in decision-making processes that contribute to the development of the country", - "values": [ - "Other" - ] - }, - { - "text": "Harmonize the procedure for transmitting Bhutanese nationality in order to allow women to transmit Bhutanese nationality to their children on the same terms as men ", - "values": [ - "Women's rights" - ] - }, - { - "text": "Provide unhindered access to humanitarian assistance to both its population and foreign nationals", - "values": [ - "Other" - ] - }, - { - "text": "Continue to implement policies for socioeconomic development of its people under the Sustainable Development Goals", - "values": [ - "Development", - "ESC rights - general" - ] - }, - { - "text": "Continue to enhance its efforts to protect women, children and other vulnerable groups against discrimination and violence", - "values": [ - "Rights of the Child", - "Women's rights" - ] - }, - { - "text": "Continue to fully cooperate with the Independent Expert on the situation of human rights in Sudan ", - "values": [ - "Special procedures" - ] - }, - { - "text": "Continue to take steps to implement stronger accountability mechanisms and ensure the independence of investigations into allegations of human rights abuses when they occur", - "values": [ - "Justice" - ] - }, - { - "text": "Consider the adoption of legislative measures to criminalize specifically gender violence", - "values": [ - "Women's rights" - ] - }, - { - "text": "Allegations of torture be effectively and independently investigated at earliest in view of prosecuting the authors of these offences", - "values": [ - "Torture and other CID treatment" - ] - }, - { - "text": "Amend its legislation to ensure that Palestinians in Lebanon have the right to inherit and register property, including the right to own land, as previously recommended", - "values": [ - "Right to land", - "UPR process" - ] - }, - { - "text": "Continue to collaborate with neighboring countries to seek ways of providing assistance to children at risk", - "values": [ - "Rights of the Child" - ] - }, - { - "text": "Take further steps to address discrimination and attacks against women.", - "values": [ - "Women's rights" - ] - }, - { - "text": "Uphold the principle of non-refoulement regarding refugees and asylum seekers, and protect the human rights of all migrants, irrespective of their immigration status ", - "values": [ - "Asylum-seekers - refugees", - "Migrants" - ] - }, - { - "text": "Fully implement the National Food Security Strategy", - "values": [ - "Right to food" - ] - }, - { - "text": "Establish an authority that will investigate and recommend action against abuses by law enforcers as a way to curb corruption, violations and protect the integrity of the security forces", - "values": [ - "Corruption", - "Human rights violations by state agents" - ] - }, - { - "text": "Continue the deliberation among relevant institutions and stakeholders with a view to ratify the International Convention on the Protection of the Rights of All Migrant Workers and Members of Their Families and to expand discussions with representatives from the state parties to the Convention in the region", - "values": [ - "International instruments", - "Labour", - "Migrants" - ] - }, - { - "text": "Make additional efforts to ensure that tribunals, prisons and the police comply with international human rights standards", - "values": [ - "Detention", - "International instruments", - "Justice" - ] - }, - { - "text": "Make further changes to the legislation on sponsorship to protect the rights of migrants, and to abolish the requirement that employers give consent before exit permits are issued for foreign employees", - "values": [ - "Migrants" - ] - }, - { - "text": "Speed up the approval of the Child Code and ensure that this instrument covers all the provisions of the Convention on the Rights of the Child ", - "values": [ - "International instruments", - "Rights of the Child" - ] - }, - { - "text": "Improve the availability of and access to information about mental health programmes and services which are based on respect for human rights, including for adolescents", - "values": [ - "Right to health", - "Rights of the Child" - ] - }, - { - "text": "Promote tolerance and further protect minorities and vulnerable groups", - "values": [ - "Minorities" - ] - }, - { - "text": "Acknowledge its responsibility for the issue of "comfort women" used during World War II, and take steps to restore the dignity of victims and compensate them adequately", - "values": [ - "Women's rights" - ] - }, - { - "text": "Consider ratification of the Optional Protocol to the Convention on the Elimination of Discrimination against Women, the International Convention on the Protection of the Rights of All Migrant Workers and Members of Their Families and the Convention on the Rights of Persons with Disabilities and its Optional Protocol.", - "values": [ - "Disabilities", - "International instruments", - "Labour", - "Migrants", - "Women's rights" - ] - }, - { - "text": "Accurate statistical information relating to socio-economic conditions of the people will be gathered and collated to better enable identification of social and economic rights issues and their resolution", - "values": [ - "ESC rights - general" - ] - }, - { - "text": "Work out and implement all those necessary measures, including legislative revisions, aiming at tackling discrimination and stereotypes against women, in particular those conducive to abuses and violence ", - "values": [ - "Women's rights" - ] - }, - { - "text": "Continue relevant campaigns to eliminate old customs undermining the status of girls and construct roads in rural areas connecting schools with residential centres ", - "values": [ - "Human rights education and training", - "Rights of the Child", - "Women's rights" - ] - }, - { - "text": "Implement those recommendations accepted under the UPR exercise", - "values": [ - "UPR process" - ] - }, - { - "text": "Strengthen the integration of migrants through increased dialogue at the local level ", - "values": [ - "Migrants" - ] - }, - { - "text": "Work through the United Nations process to finalize a political agreement as soon as possible and immediately begin the process of restoring rule of law and establishing necessary conditions and institutions for protecting human rights", - "values": [ - "Justice" - ] - }, - { - "text": "Grant the request of families of victims to get information on the names and places of detention of detained persons", - "values": [ - "Detention" - ] - }, - { - "text": "Ensure that the review of counter-terrorism legislation take account of, and that the relevant legislation be amended in full compliance with, Denmark's human rights obligations", - "values": [ - "Counter-terrorism" - ] - }, - { - "text": "Continue efforts to prevent and combat the sexual exploitation of children ", - "values": [ - "Rights of the Child" - ] - }, - { - "text": "Continue on the path towards development and democracy ", - "values": [ - "Development" - ] - }, - { - "text": "Strengthen cooperation with the international community and organizations including the United Nations in building capacity and technical cooperation in crucial areas such as poverty eradication, increase access to sanitation, education, combating drug abuse and illegal drug trafficking", - "values": [ - "Poverty", - "Right to education", - "Right to water and sanitation", - "Technical assistance and cooperation" - ] - }, - { - "text": "Strengthen policies and programmes to combat chronic malnutrition and ensure food security", - "values": [ - "Right to food" - ] - }, - { - "text": "Extend an open invitation to special procedures ", - "values": [ - "Special procedures" - ] - }, - { - "text": "Ensure that racially motivated attacks committed against minorities are systematically investigated, prosecuted and punished according to law.", - "values": [ - "Minorities", - "Racial discrimination" - ] - }, - { - "text": "Establish a timetable for signature and ratification of the International Convention for the Protection of All Persons from Enforced Disappearance, and for full recognition of the competence of the Committee on Enforced Disappearance ", - "values": [ - "Enforced disappearances", - "International instruments", - "Treaty bodies" - ] - }, - { - "text": "Strengthen policies aimed at reducing poverty", - "values": [ - "Poverty" - ] - }, - { - "text": "Take measures to protect rights activists and remove any impediments to the work of political opposition parties, human rights groups, and other independent civil society organizations", - "values": [ - "Civil society", - "Freedom of association and peaceful assembly", - "Human rights defenders" - ] - }, - { - "text": "Pass legislation prohibiting discrimination, including comprehensive prohibitions against discrimination on the grounds of sexual orientation and gender identity", - "values": [ - "Sexual Orientation and Gender Identity" - ] - }, - { - "text": "Further carry out public-awareness campaigns on human rights, in particular with respect to the empowerment of women rights ", - "values": [ - "Human rights education and training", - "Women's rights" - ] - }, - { - "text": "Adopt standards of protection contained in CRPD with a view to accelerate its accession ", - "values": [ - "Disabilities", - "International instruments" - ] - }, - { - "text": "Abolish the death penalty, at least for juvenile perpetrators", - "values": [ - "Death penalty", - "Rights of the Child" - ] - }, - { - "text": "Develop a sustainable mechanism to protect its population against food insecurity, through prevention strategies and the implementation of social programmes", - "values": [ - "Right to food" - ] - }, - { - "text": "Revise laws on public assemblies according to the recommendations by the Venice Commission ", - "values": [ - "Freedom of association and peaceful assembly" - ] - }, - { - "text": "Continue to improve the knowledge of human rights among its population, especially by promoting education and awareness-raising activities on the matter ", - "values": [ - "Human rights education and training" - ] - }, - { - "text": "Fully cooperate with the International Criminal Court and fully align its national legislation with the obligations and definitions of crimes and principles contained in the Rome Statute and ratify the Kampala amendments to the Rome Statute", - "values": [ - "International instruments", - "Justice" - ] - }, - { - "text": "Abolish the death penalty in all states of the Union", - "values": [ - "Death penalty" - ] - }, - { - "text": "Continue its efforts to extend welfare services and assistance to all persons with disabilities", - "values": [ - "Disabilities" - ] - }, - { - "text": "Investigate reports and allegations of arbitrary arrest, unlawful detention and forced disappearance of opposition political figures and members of civil society, and prosecute perpetrators", - "values": [ - "Civil society", - "Detention", - "Enforced disappearances" - ] - }, - { - "text": "Kindly consider the possibility of speeding up the internal procedures necessary for the entry into force of the bilateral Agreement between Ukraine and the Republic of Moldova on the rights of national minorities, signed in Chisinau on 17 December 2009 ", - "values": [ - "Minorities" - ] - }, - { - "text": "Continue its progress in the field of human rights education through increasing further international and regional cooperation ", - "values": [ - "Human rights education and training" - ] - }, - { - "text": "Call for the support from the international community for the efforts aimed at combating the AIDS pandemic by ensuring its capacity-building ", - "values": [ - "HIV - Aids", - "Technical assistance and cooperation" - ] - }, - { - "text": "Bring the policy on detention of asylum-seekers into compliance with conclusion 7 (e) of the conclusions on international protection of refugees, which recommends that expulsion measures should not include detention unless for national security reasons or public order", - "values": [ - "Asylum-seekers - refugees", - "International instruments" - ] - }, - { - "text": "Adopt and implement anti-trafficking legislation", - "values": [ - "Trafficking" - ] - }, - { - "text": "Provide for arrangements for same-sex couples to enjoy some of the rights and obligations enjoyed by non-same-sex couples.", - "values": [ - "Sexual Orientation and Gender Identity" - ] - }, - { - "text": "Move further ahead in drafting and implementing a national action plan to address the issue of the sale of children, child prostitution and child pornography", - "values": [ - "Rights of the Child", - "Trafficking" - ] - }, - { - "text": "Intensify efforts to combat all forms of child labour by strengthening the labour inspectorate to ensure effective implementation of child labour laws, both in formal and informal sectors ", - "values": [ - "Labour", - "Rights of the Child" - ] - }, - { - "text": "Abolish requirements for the registration of religious groups from the existing Administrative Code, in accordance with the laws adopted in 2005 on the elimination of extremism and the strengthening national security, and to review the provisions of the Law on Freedom of Religion and Religious Associations in order to effectively guarantee freedom of belief and a nondiscriminatory legal system for the registration of religious entities", - "values": [ - "Freedom of religion and belief" - ] - }, - { - "text": "Prohibit racist organizations, in accordance with its international obligations ", - "values": [ - "Racial discrimination" - ] - }, - { - "text": "Intensify its efforts aimed at providing access of all children to free and compulsory primary education ", - "values": [ - "Right to education", - "Rights of the Child" - ] - }, - { - "text": "Ensure the effective functioning of the National Human Rights Commission of Nepal, including a representative approach to appointments", - "values": [ - "National Human Rights Institution" - ] - }, - { - "text": "Take on board the opinions of the Office for Democratic Institutions and Human Rights of the Organization of Security and Cooperation in Europe and the Venice Commission of the Council of Europe in the organization of the constitutional referendum and parliamentary elections ", - "values": [ - "Elections" - ] - }, - { - "text": "Further improve training given to health professionals on interculturalism ", - "values": [ - "Minorities", - "Right to health" - ] - }, - { - "text": "Adopt appropriate measures to widely disseminate and ensure full observance of the Declaration on Human Rights Defenders", - "values": [ - "Human rights defenders", - "International instruments" - ] - }, - { - "text": "Continue the efforts and cooperation in combatting trafficking in persons in regional frameworks along with the share of the country's positive experience in this field", - "values": [ - "Trafficking" - ] - }, - { - "text": "Repeal or at least narrow the restrictions on public discourse on the issue of ethnicity, language, race, religion and politically sensitive issues in order to ensure the full enjoyment of freedom of expression and freedom of peaceful assembly and association ", - "values": [ - "Freedom of association and peaceful assembly", - "Freedom of opinion and expression" - ] - }, - { - "text": "Continue its efforts to develop a national human rights action plan", - "values": [ - "General" - ] - }, - { - "text": "Adopt legislation, strategies, national action plans and initiatives and establish committees on human rights ", - "values": [ - "General" - ] - }, - { - "text": "Guarantee the protection and humanitarian assistance to displaced persons due to the internal conflict, in particular women and children, within the framework of international human rights and humanitarian law", - "values": [ - "Internally displaced persons", - "International humanitarian law", - "International instruments", - "Rights of the Child", - "Women's rights" - ] - }, - { - "text": "Accede to the Convention on the Prevention and Punishment of the Crime of Genocide", - "values": [ - "International humanitarian law", - "International instruments", - "Justice" - ] - }, - { - "text": "Take all necessary steps to ensure that relevant Romanian legislation is in conformity with its international undertakings.", - "values": [ - "International instruments" - ] - }, - { - "text": "Promote broader access to education for all children", - "values": [ - "Right to education", - "Rights of the Child" - ] - }, - { - "text": "Seek technical cooperation at the international level in order to respond in a timely manner to the challenge of providing a healthy and safe environment for its citizens ", - "values": [ - "Environment", - "Technical assistance and cooperation" - ] - }, - { - "text": "(1) Speeding up the process of establishing the truth. (2) Speeding up the identification of human remains so that they can be handed over to family members. (3) Inquiring into and investigating crimes committed by demobilized individuals against women and children (sexual violence and recruitment of children especially). (4) Promoting the National Reparation Programme. (5) Expanding the Victim and Witness Protection Programme. (6) Giving more publicity to victims' rights and taking steps which will include promoting the activities that the National Reparation and Reconciliation Commission has been carrying out. (7) Getting the regional property restitution committees into operation. (8) Completing the historical commemorative document which the Act has assigned the National Reparation and Reconciliation Commission to produce.", - "values": [ - "Justice", - "Rights of the Child", - "Women's rights" - ] - }, - { - "text": "Ensure universal suffrage for all adults of voting age, regardless of ethnicity", - "values": [ - "Elections", - "Minorities" - ] - }, - { - "text": "Continue efforts to guarantee the fullest possible enjoyment of economic, social and cultural rights, so that it can continue to make headway towards ensuring the fulfilment of the Millennium Development Goals", - "values": [ - "ESC rights - general" - ] - }, - { - "text": "Fully commit to the United Nations Support Mission in Libya- facilitated dialogue process, take urgent measures to promote and protect human rights, and restore the rule of law", - "values": [ - "Justice" - ] - }, - { - "text": "Accelerate the process towards the ratification of the Domestic Workers Convention, 2011 (No. 189)", - "values": [ - "International instruments", - "Labour" - ] - }, - { - "text": "Continue with measures to guarantee the birth registration of children, with no discrimination against migrant children, and continue strengthening the legal framework for the procedures of acquisition of nationality ", - "values": [ - "Migrants", - "Racial discrimination", - "Rights of the Child", - "Statelessness and the right to nationality" - ] - }, - { - "text": "The Italian Government was also committed to gender equality and to preventing and eliminating discrimination based directly or indirectly on sex, racial or ethnic origin, religion or belief, age or gender identity.", - "values": [ - "Freedom of religion and belief", - "Minorities", - "Racial discrimination", - "Women's rights" - ] - }, - { - "text": "Step up existing cooperation with international bodies in respect of the human right to water and sanitation, in particular with the United Nations Environment Programme and with the Special Rapporteur on the human right to safe drinking water and sanitation", - "values": [ - "Right to water and sanitation", - "Special procedures" - ] - }, - { - "text": "Continue to strengthen its legislation and implementation regarding discrimination and violence against women and to pursue its efforts to promote gender equality, address violence against women, including domestic violence and provide support to the victims of gender-based violence", - "values": [ - "Women's rights" - ] - }, - { - "text": "Continue measures for the protection of the rights of vulnerable groups of the population, particularly women, children, persons with disabilities and elderly persons ", - "values": [ - "Disabilities", - "Rights of the Child", - "Women's rights" - ] - }, - { - "text": "Expedite implementation of the reform of the judicial system and intensify within the system a culture of systematic respect of human rights ", - "values": [ - "Justice" - ] - }, - { - "text": "Sign and ratify the ICRMW ", - "values": [ - "International instruments", - "Labour", - "Migrants" - ] - }, - { - "text": "Continue efforts to implement the comprehensive national strategy against human trafficking adopted under Act No. 621 of 2016", - "values": [ - "Trafficking" - ] - }, - { - "text": "Continue to strengthen the role of national human rights protection mechanisms", - "values": [ - "General" - ] - }, - { - "text": "Take further measures to ensure the effective implementation of measures to fulfil the human right to education ", - "values": [ - "Right to education" - ] - }, - { - "text": "Continue implementing measures that make prevail the best interest of the child when the time comes for decision making ", - "values": [ - "Rights of the Child" - ] - }, - { - "text": "Consider adopting legislative measures to facilitate access of women in rural areas to land ownership, to ensure that poverty reduction and income generating strategies include provisions relating to rural women, and to ensure access by rural women and girls to education ", - "values": [ - "Poverty", - "Right to education", - "Right to land", - "Rights of the Child", - "Women's rights" - ] - }, - { - "text": "Extend a permanent and open invitation to the special procedures of the Human Rights Council", - "values": [ - "Special procedures" - ] - }, - { - "text": "Continue its efforts to bring provincial and municipal regulations on trafficking into line with national and international standards", - "values": [ - "Trafficking" - ] - }, - { - "text": "Encourage the efforts displayed to combat terrorism", - "values": [ - "Public security" - ] - }, - { - "text": "Strengthen policies aimed at protecting the work of human rights defenders", - "values": [ - "Human rights defenders" - ] - }, - { - "text": "Improve the education of persons belonging to minority groups", - "values": [ - "Minorities", - "Right to education" - ] - }, - { - "text": "Continue its efforts to incorporate and harmonize its internal national legislation with the main international human rights instruments in the most expeditious way", - "values": [ - "International instruments" - ] - }, - { - "text": "Continue to raise awareness regarding the criminal nature of domestic violence and bring those responsible before the courts", - "values": [ - "Human rights education and training", - "Rights of the Child", - "Women's rights" - ] - }, - { - "text": "Establish a high-level platform for the monitoring and promotion of women's rights and gender equality, and to ensure that a gender perspective is mainstreamed in policy- and decision-making", - "values": [ - "Women's rights" - ] - }, - { - "text": "Pursue efforts carried out by the Gambian Government in the framework of the national policy for gender equality and promotion of women for the period 2010 to 2020", - "values": [ - "Women's rights" - ] - }, - { - "text": "Improve the situation of the Roma population, particularly as concerns housing", - "values": [ - "Minorities", - "Right to housing" - ] - }, - { - "text": "Ensure that the judiciary system respects the principle of independence from the executive branch, as well as the rule of law", - "values": [ - "Justice" - ] - }, - { - "text": "Provide the National Human Rights Commission with sufficient financial resources to carry out its activities more effectively", - "values": [ - "National Human Rights Institution" - ] - }, - { - "text": "Consider as soon as possible, compiling statistical data on sexual offences against children and putting in place a registry of persons convicted of such offences", - "values": [ - "Rights of the Child" - ] - }, - { - "text": "Continue advancing in the promotion and protection of women's rights, with the consolidation of all institutional mechanisms and the application of the laws being launched", - "values": [ - "Women's rights" - ] - }, - { - "text": "Establish a moratorium on the application of the death penalty, with a view to abolishing capital punishment before the next universal periodic review session", - "values": [ - "Death penalty" - ] - }, - { - "text": "Continue to ensure inclusive education for children and persons with disabilities, as education would allow them to fully participate in society and open the opportunity of employment", - "values": [ - "Development", - "Disabilities", - "Right to education", - "Rights of the Child" - ] - }, - { - "text": "Ensure equal remuneration to men and women", - "values": [ - "Women's rights" - ] - }, - { - "text": "Implement the Convention on the Rights of Disabilities and the Optional Protocol thereto", - "values": [ - "Disabilities", - "International instruments" - ] - }, - { - "text": "Take further measures to ensure the full enjoyment of human rights of ethnic minorities, migrants, Muslims and people of African origin", - "values": [ - "Freedom of religion and belief", - "Migrants", - "Minorities", - "Racial discrimination" - ] - }, - { - "text": "Continue its commendable efforts for the total eradication of FGM ", - "values": [ - "Rights of the Child", - "Torture and other CID treatment", - "Women's rights" - ] - }, - { - "text": "Consider the accession of the International Convention on the Protection of the Rights of All Migrant Workers and Members of Their Families to strengthen further its national legal framework", - "values": [ - "International instruments", - "Labour", - "Migrants" - ] - }, - { - "text": "Continue its engagement with the human rights mechanisms of the United Nations for the protection and promotion of human rights", - "values": [ - "Special procedures", - "Treaty bodies", - "UPR process" - ] - }, - { - "text": "Strengthen its efforts to implement the Convention on the Rights of Persons with Disabilities by amending the Constitution to prohibit discrimination against persons with disabilities and support the role of disabled persons' organizations.", - "values": [ - "Disabilities", - "International instruments" - ] - }, - { - "text": "Carry out awareness-raising campaigns to promote the birth registration of all children, particularly those living in poverty, and adopt necessary measures to guarantee effective access to free birth registrations for new-borns", - "values": [ - "Poverty", - "Rights of the Child", - "Statelessness and the right to nationality" - ] - }, - { - "text": "Step up its efforts in pursuing the ratification of other relevant international human rights instruments", - "values": [ - "International instruments" - ] - }, - { - "text": "Establish mechanisms for the evaluation and follow-up of the implementation of human rights public policies and programmes, in particular those referred to the fight against discrimination in all its forms and on any grounds, taking into account the recommendations from the universal periodic review and other human rights mechanisms", - "values": [ - "UPR process" - ] - }, - { - "text": "Ensure freedom of expression and take steps to end threats and attacks against journalists and human rights defenders, including lesbian, gay, bisexual, transgender and intersex defenders", - "values": [ - "Freedom of the press", - "Human rights defenders", - "Sexual Orientation and Gender Identity" - ] - }, - { - "text": "Continue to address allegations of excessive use of force by the police ", - "values": [ - "Human rights violations by state agents" - ] - }, - { - "text": "Fully guarantee the independence of the judiciary in conformity with relevant international norms", - "values": [ - "Justice" - ] - }, - { - "text": "Totally ban female genital mutilation as opposed to the age limit of 18 age and criminalize the practice", - "values": [ - "Rights of the Child", - "Torture and other CID treatment", - "Women's rights" - ] - }, - { - "text": "Strengthen efforts regarding the effective measures on the registration of all children born in Myanmar without any discrimination", - "values": [ - "Racial discrimination", - "Rights of the Child" - ] - }, - { - "text": "Continue to strengthen the relevant public policies on the promotion and protection of human rights, particularly the rights of children, migrants and asylum seekers and persons with disabilities", - "values": [ - "Asylum-seekers - refugees", - "Disabilities", - "Migrants", - "Rights of the Child" - ] - }, - { - "text": "Take adequate measures to fight trafficking in women and girls for the purpose of sexual exploitation as well as domestic violence against women.", - "values": [ - "Rights of the Child", - "Trafficking", - "Women's rights" - ] - }, - { - "text": "Ensuring prompt and impartial investigations of allegations of ill-treatment, in accordance with its obligations under the Convention against Torture", - "values": [ - "International instruments", - "Torture and other CID treatment" - ] - }, - { - "text": "Adopt a new action plan on gender equality to ensure continuity, as the previous plan expired in 2014", - "values": [ - "Women's rights" - ] - }, - { - "text": "Implement public education and awareness programmes on issues related to sexual orientation and gender equality and provide training to law enforcement, judicial and other relevant authorities with the same objective ", - "values": [ - "Human rights education and training", - "Sexual Orientation and Gender Identity" - ] - }, - { - "text": "Ratify the International Covenant on Civil and Political Rights and its Optional Protocols and the International Covenant on Economic, Social and Cultural Rights and its Optional Protocol", - "values": [ - "CP rights - general", - "Death penalty", - "ESC rights - general", - "International instruments" - ] - }, - { - "text": "Canada commits to enhancing information sharing with Canadians about its international human rights treaty-adherence process and the status of the review of treaties under consideration for possible signature/ratification.", - "values": [ - "International instruments" - ] - }, - { - "text": "Develop a clear implementation and monitoring plan for all national and provincial legislation on bonded labour", - "values": [ - "Labour" - ] - }, - { - "text": "Increase its funding to actors engaged in combating violence and sexual abuse of women", - "values": [ - "Women's rights" - ] - }, - { - "text": "Continue measures aimed at strengthening national mechanism for monitoring places of detention ", - "values": [ - "Detention" - ] - }, - { - "text": "Further strengthen the commitment to the peace and reconciliation process, also in order to guarantee a more effective protection of human rights and respect for the rule of law", - "values": [ - "Justice" - ] - }, - { - "text": "Strengthen its efforts to reform its penal system, including seeking alternatives to pre-trial detention and ensuring that its system of juvenile detention is in line with its human rights obligations ", - "values": [ - "Detention", - "Justice", - "Rights of the Child" - ] - }, - { - "text": "Introduce national legislation that criminalizes all forms of torture and ill treatment, that Lebanon prosecutes perpetrators of torture, and imposes judicial sentences that correspond to the gravity of torture crimes committed", - "values": [ - "Torture and other CID treatment" - ] - }, - { - "text": "Ratify or accede to, as appropriate, to the Optional Protocol to the Convention against Torture and the International Convention for the Protection of All Persons from Enforced Disappearance", - "values": [ - "Detention", - "Enforced disappearances", - "International instruments", - "Torture and other CID treatment" - ] - }, - { - "text": "Adopt, as soon as possible, legislation clearly prohibiting female genital mutilation ", - "values": [ - "Rights of the Child", - "Torture and other CID treatment", - "Women's rights" - ] - }, - { - "text": "Share experience and efforts on religious harmony", - "values": [ - "Freedom of religion and belief" - ] - }, - { - "text": "Takes all necessary measures to ensure the effective implementation of the national human rights policy and action plan", - "values": [ - "General" - ] - }, - { - "text": "Consider the possibility of extending a standing invitation to the human rights special procedures and facilitating an institutional channel to give an answer to their communications ", - "values": [ - "Special procedures" - ] - }, - { - "text": "Adopt further national strategies for eradication of poverty and improvement of livelihoods for citizens ", - "values": [ - "Poverty" - ] - }, - { - "text": "Take a rights-based approach to adaptation to climate change ", - "values": [ - "Environment" - ] - }, - { - "text": "Continue the normative progress made in the area of environment and the strengthening of related bodies", - "values": [ - "Environment" - ] - }, - { - "text": "Follow up efforts made to protect children from violence ", - "values": [ - "Rights of the Child" - ] - }, - { - "text": "Ratify the African Union Convention for the Protection and Assistance of Internally Displaced Persons in Africa (Kampala Convention) ", - "values": [ - "Internally displaced persons", - "International instruments" - ] - }, - { - "text": "Reconsider the legislation on NGOs that receive foreign funding in conformity with the international human rights standards and in light of the resolution on human rights defenders, as approved by the Human Rights Council at its 22th session ", - "values": [ - "Civil society", - "Freedom of association and peaceful assembly", - "Human rights defenders", - "International instruments" - ] - }, - { - "text": "Continue its efforts to establish programmes and promulgate domestic laws aimed at combating all contemporary forms of racism, racial discrimination, xenophobia, linguistic discrimination and related forms of intolerance ", - "values": [ - "Racial discrimination" - ] - }, - { - "text": "Establish a more effective mechanism of dialogue with human rights defenders in the area of sexual minorities ", - "values": [ - "Human rights defenders", - "Minorities" - ] - }, - { - "text": "Consider abolishing article 377 of the Penal Code, which criminalizes sexuality against the order of nature", - "values": [ - "Sexual Orientation and Gender Identity" - ] - }, - { - "text": "Continue and further strengthen measures to fight against acts of corruption and embezzlement of public funds", - "values": [ - "Corruption" - ] - }, - { - "text": "Become a State party of the International Convention for the Protection of All Persons from Enforced Disappearances ", - "values": [ - "Enforced disappearances", - "International instruments" - ] - }, - { - "text": "Step up social measures to deal with children who are not attending school and promote their rights", - "values": [ - "Right to education", - "Rights of the Child" - ] - }, - { - "text": "Decriminalize same-sex conduct by repealing Sections 365 and 365A of the Penal Code", - "values": [ - "Sexual Orientation and Gender Identity" - ] - }, - { - "text": "Take actions to achieve universal birth registration ", - "values": [ - "Rights of the Child", - "Statelessness and the right to nationality" - ] - }, - { - "text": "Increase efforts to gather data on child abuse with the aim of supporting policy formulation process", - "values": [ - "Rights of the Child" - ] - }, - { - "text": "Repeal laws that provide for the criminalization of LGBT persons, in accordance of the principle of non-discrimination", - "values": [ - "Sexual Orientation and Gender Identity" - ] - }, - { - "text": "Continue its efforts to protect the rights of the child and reduce child poverty and violence ", - "values": [ - "Poverty", - "Rights of the Child" - ] - }, - { - "text": "Meet the provision of technical facilities as laid down requirements of the Convention on the Rights of Persons with Disabilities", - "values": [ - "Disabilities", - "International instruments" - ] - }, - { - "text": "Ratify the International Convention for the Protection of All Persons from Enforced Disappearance (ICPPED)", - "values": [ - "Enforced disappearances", - "International instruments" - ] - }, - { - "text": "Review current legislation and amend as necessary all discriminatory provisions against women and lift all reservations to the Convention on the Elimination of All Forms of Discrimination against Women", - "values": [ - "International instruments", - "Women's rights" - ] - }, - { - "text": "Establish national human rights institution, in accordance with the Paris Principles", - "values": [ - "National Human Rights Institution" - ] - }, - { - "text": "Continue implementing programmes and measures for the rights of persons with disabilities ", - "values": [ - "Disabilities" - ] - }, - { - "text": "Continue the strengthening of the national human rights institutions and mechanisms", - "values": [ - "National Human Rights Institution" - ] - }, - { - "text": "Ensure that only the juvenile justice system deals with cases of children under 18 years ", - "values": [ - "Justice", - "Rights of the Child" - ] - }, - { - "text": "Take the necessary steps to include the Human Rights Ombudsman under Group A of the Paris Principles relating to the status of national human rights institutions", - "values": [ - "National Human Rights Institution" - ] - }, - { - "text": "Ensure the best interests of indigenous people in carrying out large scale national development projects ", - "values": [ - "Indigenous peoples" - ] - }, - { - "text": "Seek to demonstrate that challenges presented by relationships between its federal, provincial and territorial governments do not present unnecessary obstacles to the fulfilment of treaty obligations.", - "values": [ - "International instruments" - ] - }, - { - "text": "Amend the legislation to ensure that perpetrators of domestic violence are punished, while the State improves the victim support system", - "values": [ - "Rights of the Child", - "Women's rights" - ] - }, - { - "text": "Continue with positive work to ensure the progress of the rights of children and their full well-being", - "values": [ - "Rights of the Child" - ] - }, - { - "text": "Continue to further ensure rights of women and girls", - "values": [ - "Rights of the Child", - "Women's rights" - ] - }, - { - "text": "Further extend education and publicity programmes to all regions in order to inform women, and particularly women with disabilities, of the availability of the protection orders, counselling services and education under the new law ", - "values": [ - "Disabilities", - "Human rights education and training", - "Women's rights" - ] - }, - { - "text": "Take steps to increase the participation of girls in the education system ", - "values": [ - "Right to education", - "Rights of the Child", - "Women's rights" - ] - }, - { - "text": "Continue its efforts to enhance respect for human rights and rule of law in its security sector through education and institutional reforms ", - "values": [ - "Human rights education and training" - ] - }, - { - "text": "Reinforce efforts for women and girls subjected to trafficking", - "values": [ - "Rights of the Child", - "Trafficking", - "Women's rights" - ] - }, - { - "text": "Adopt and implement a national plan of action to prevent and combat child labour ", - "values": [ - "Labour", - "Rights of the Child" - ] - }, - { - "text": "Ratify the Convention against Torture and Other Cruel, Inhuman or Degrading Treatment or Punishment and its Optional Protocol and the International Convention on the Rights of All Migrant Workers and Members of their Families", - "values": [ - "Detention", - "International instruments", - "Labour", - "Migrants", - "Torture and other CID treatment" - ] - }, - { - "text": "Work on improving the physical access for persons with disabilities", - "values": [ - "Disabilities" - ] - }, - { - "text": "Sign the two Optional Protocols to the Convention on the Rights of the Child ", - "values": [ - "International instruments", - "Rights of the Child" - ] - }, - { - "text": "Increase further the education budget to allow for the establishment of intercultural bi-lingual schools in all three educational cycles and the roll-out of remedial academic programs", - "values": [ - "Right to education" - ] - }, - { - "text": "Strengthen its efforts, in particular by prosecuting such practice and by promoting gender equality in general, in order to effectively eliminate female genital mutilation and cutting ", - "values": [ - "Rights of the Child", - "Torture and other CID treatment", - "Women's rights" - ] - }, - { - "text": "Law enforcement agencies will increase the number of training courses and workshops that they run on the protection and promotion of human rights.", - "values": [ - "Human rights education and training" - ] - }, - { - "text": "Implement the commitment to rebuild the Shi'a places of worship destroyed ", - "values": [ - "Freedom of religion and belief" - ] - }, - { - "text": "Ensures full respect for the right to freedom of expression and media freedom by preventing all harassment and undue detention of journalists and civil society activists", - "values": [ - "Civil society", - "Freedom of opinion and expression", - "Freedom of the press" - ] - }, - { - "text": "Ratify ICRMW", - "values": [ - "International instruments", - "Migrants", - "Minorities" - ] - }, - { - "text": "Expand anti-trafficking measures from the large towns to the rural neighbourhoods and highly populated Roma communities so as to protect the most vulnerable groups of society", - "values": [ - "Minorities", - "Trafficking" - ] - }, - { - "text": "Promulgate more laws and regulations on economic, social and cultural rights, to improve the legal framework concerning the exercise of human rights", - "values": [ - "ESC rights - general" - ] - }, - { - "text": "Ensure primary education to all children and improve its quality", - "values": [ - "Right to education", - "Rights of the Child" - ] - }, - { - "text": "Boost the investigative capacity of the National Independent Human Rights Commission and ensure full participation by civil society in its work", - "values": [ - "National Human Rights Institution" - ] - }, - { - "text": "Review the national law adopted in June 2008 re-establishing the death penalty for the crimes consisted in making armed robbery, terrorism and hijacking", - "values": [ - "Death penalty" - ] - }, - { - "text": "Criminalize torture and enforced disappearances in line with international standards ", - "values": [ - "Enforced disappearances", - "Torture and other CID treatment" - ] - }, - { - "text": "Bring its legislation in line with the principle of gender equality, and that the government effectively enforces the laws already in place, especially those pertaining to domestic violence and rape", - "values": [ - "Rights of the Child", - "Women's rights" - ] - }, - { - "text": "Pursue appropriate measures to effectively prevent torture and illtreatment, ensuring that all alleged cases of torture are credibly and independently investigated and prosecuted, providing due redress to victims ", - "values": [ - "Torture and other CID treatment" - ] - }, - { - "text": "Continue with initiatives envisaged to the implementation of plans and social development programmes, including those intended for early childhood care in the fields of health and education as tools to overcome poverty and extreme poverty", - "values": [ - "Development", - "Poverty", - "Right to education", - "Right to health", - "Rights of the Child" - ] - }, - { - "text": "Ratify the Optional Protocol to the Convention on the Elimination of All Forms of Discrimination against Women, and strengthen institutional capacity at the national and island levels to implement gender equality policies and programs ", - "values": [ - "International instruments", - "Women's rights" - ] - }, - { - "text": "Address the concerns expressed by two treaty bodies relating to minority rights and also labour rights, made by the Human Rights Committee and the Committee on Economic, Social and Cultural Rights", - "values": [ - "Labour", - "Minorities", - "Treaty bodies" - ] - }, - { - "text": "Continue its achievements in the area of human rights and to take them into account as an encouraging factor for the promotion and protection of human rights.", - "values": [ - "General" - ] - }, - { - "text": "Implement electoral reform, as recommended by the Special Rapporteur on Cambodia, in order to prevent future recurrences of these issues ", - "values": [ - "Elections", - "Special procedures" - ] - }, - { - "text": "On the issue of privatization of prison management, keep in mind the need to ensure the humane treatment of prisoners.", - "values": [ - "Detention" - ] - }, - { - "text": "Abolish the death penalty in Republika Srpska", - "values": [ - "Death penalty" - ] - }, - { - "text": "Establish a regulatory framework for mining companies present on the territory in order to ensure that their activities do not harm the immediate environment", - "values": [ - "Business and human rights", - "Environment" - ] - }, - { - "text": "Ensure that the trial of the Yarran is conducted in a fair and transparent manner, consistent with Iranian law, natural justice and due legal process", - "values": [ - "Justice" - ] - }, - { - "text": "Develop a comprehensive national strategy to prevent and address all forms of violence against and ill-treatment of children", - "values": [ - "Rights of the Child", - "Torture and other CID treatment" - ] - }, - { - "text": "Establish an interministerial committee responsible for the implementation of its international human rights obligations, inter alia for implementing UPR recommendations and drafting overdue reports to the United Nations human rights treaty bodies", - "values": [ - "International instruments", - "Treaty bodies", - "UPR process" - ] - }, - { - "text": "Set priorities and provide adequate resources for enhancing the protection and promotion of the rights to education, health care and social welfare, especially those of vulnerable groups such as women, children, ethnic minorities, migrants and people with difficulties ", - "values": [ - "Migrants", - "Minorities", - "Right to education", - "Right to health", - "Rights of the Child", - "Women's rights" - ] - }, - { - "text": "Bring its Human Rights Ombudsman's Office into compliance with the Paris Principles, including by providing it with adequate financial and human resources", - "values": [ - "National Human Rights Institution" - ] - }, - { - "text": "Respect and ensure the rights set forth in CRC of each child without discrimination of any kind ", - "values": [ - "International instruments", - "Rights of the Child" - ] - }, - { - "text": "Implement a ban on racist organizations, in line with international obligations ", - "values": [ - "International instruments", - "Racial discrimination" - ] - }, - { - "text": "Continue to work towards full equality between men and women, building on its historical credits, as the first country in the world to give women the right to vote in national elections ", - "values": [ - "Women's rights" - ] - }, - { - "text": "Ensure the relevant constitutional provisions relating to freedom of the press are properly implemented and adhered to and that a free press, freedom of speech and assembly are allowed to thrive without undue interference ", - "values": [ - "Freedom of association and peaceful assembly", - "Freedom of opinion and expression", - "Freedom of the press" - ] - }, - { - "text": "Give full and effective implementation to the national campaign to reduce violence against children and women in order to further reduce the occurrence of rape and domestic violence, sexual harassment, child abuse including in educational institutions and child marriage", - "values": [ - "Rights of the Child", - "Women's rights" - ] - }, - { - "text": "End politically motivated prosecutions ", - "values": [ - "Justice" - ] - }, - { - "text": "Strengthen the work of the Bureau as well as to continue the effort to establish a National Human Rights Commission in Japan", - "values": [ - "National Human Rights Institution" - ] - }, - { - "text": "Enhance international cooperation programmes aimed at promoting gender equality and combating trafficking in women and children ", - "values": [ - "Rights of the Child", - "Trafficking", - "Women's rights" - ] - }, - { - "text": "Ratify the ICCPR without any further delays", - "values": [ - "CP rights - general", - "International instruments" - ] - }, - { - "text": "Review the Law on the Protection of Minors against the Detrimental Effect of Public Information in order to remove all possibilities that this law may be applied in such a way to stigmatize or discriminate against Lesbian, Gay, Bisexual and Transgender people or to breach their rights to freedom of assembly or expression ", - "values": [ - "Freedom of association and peaceful assembly", - "Freedom of opinion and expression", - "Rights of the Child", - "Sexual Orientation and Gender Identity" - ] - }, - { - "text": "Set up hosting and reintegration structures for HIV-AIDS orphans.", - "values": [ - "HIV - Aids" - ] - }, - { - "text": "Consider adopting a more targeted programme to address the reported high suicide rate, especially among the youth, through, inter alia, the revitalised National Mental Health Plan", - "values": [ - "Right to health" - ] - }, - { - "text": "Conduct such specific awareness-raising campaigns which can help to sensitize the general Ivorian public regarding the rights of LGBTI persons", - "values": [ - "Human rights education and training", - "Sexual Orientation and Gender Identity" - ] - }, - { - "text": "Accelerate the ratification of the Rome Statute of the International Criminal Court", - "values": [ - "International instruments", - "Justice" - ] - }, - { - "text": "Provide training for law enforcement officials dealing with violence against women and ensure the effective protection of victims", - "values": [ - "Women's rights" - ] - }, - { - "text": "Strengthen the National Committee on Persons with Disabilities, fully ensuring its operations through the development of its norms and provision of adequate financial resources, adopt a national strategy to eliminate de facto discrimination against persons with disabilities based on an appropriate statistics system ", - "values": [ - "Disabilities" - ] - }, - { - "text": "Adopt legislation that allows children of Bahraini mothers and non-Bahraini fathers to obtain Bahraini nationality ", - "values": [ - "Women's rights" - ] - }, - { - "text": "Respond positively to the special procedures requesting a visit to the country", - "values": [ - "Special procedures" - ] - }, - { - "text": "Ratify the Rome Statute of the International Criminal Court and fully align its national legislation with all obligations under the Rome Statute", - "values": [ - "International instruments", - "Justice" - ] - }, - { - "text": "Establish a de jure moratorium on executions and take necessary measures with a view to abolishing death penalty", - "values": [ - "Death penalty" - ] - }, - { - "text": "Further continue the existing cooperation with United Nations human rights mechanisms", - "values": [ - "Special procedures", - "Treaty bodies", - "UPR process" - ] - }, - { - "text": "Reinforce the harm reduction measures targeting drug users in order to avoid adverse health effects, including increased HIV infections and hepatitis", - "values": [ - "HIV - Aids", - "Right to health" - ] - }, - { - "text": "Continue to increase access to safe and sustainable drinking water in rural areas and to improve sanitation coverage, especially for women and girls", - "values": [ - "Right to water and sanitation", - "Women's rights" - ] - }, - { - "text": "Extend Government funding to schools for persons with disabilities ", - "values": [ - "Disabilities", - "Right to education" - ] - }, - { - "text": "Continue to increase public awareness of the harm of narcotic drugs", - "values": [ - "Public security" - ] - }, - { - "text": "Take the necessary measures to eradicate discrimination against girls in the education system", - "values": [ - "Right to education", - "Rights of the Child", - "Women's rights" - ] - }, - { - "text": "Adopt comprehensive national legislation that allows for compliance with and implementation of its international obligations concerning migrants, asylum seekers, refugees and stateless persons", - "values": [ - "Asylum-seekers - refugees", - "International instruments", - "Migrants", - "Statelessness and the right to nationality" - ] - }, - { - "text": "Adhere to ICRMW ", - "values": [ - "International instruments", - "Labour", - "Migrants" - ] - }, - { - "text": "Intensify its efforts to eliminate discrimination against migrant, black, Muslim and other minority women, who still face multiple forms of discrimination ", - "values": [ - "Freedom of religion and belief", - "Migrants", - "Minorities", - "Racial discrimination", - "Women's rights" - ] - }, - { - "text": "Establish an independent body responsible for investigating possible police abuses ", - "values": [ - "Human rights violations by state agents" - ] - }, - { - "text": "Consider ratifying international instruments to which it is not a party to in order to strengthen its legal arsenal on human rights, particularly the ICRMW and the ILO Convention 189 on decent work for domestic workers ", - "values": [ - "International instruments", - "Labour", - "Migrants" - ] - }, - { - "text": "Take appropriate measures to effectively implement the Strategy for Health (2011-2015) and some other programmes on health ", - "values": [ - "Right to health" - ] - }, - { - "text": "Take measures to ensure the increased freedom of expression of journalists and media workers ", - "values": [ - "Freedom of opinion and expression", - "Freedom of the press" - ] - }, - { - "text": "Increase the age of criminal responsibility from 12 to 16 years and arrange that convicted minors aged between 16 and 18 years complete their sentences segregated from the adult prison population", - "values": [ - "Detention", - "Justice", - "Rights of the Child" - ] - }, - { - "text": "Consider developing programmes that work to conclusively eliminate violence against women and children", - "values": [ - "Rights of the Child", - "Women's rights" - ] - }, - { - "text": "Develop and implement effective policies to address the crisis in the health sector and shortages of food, and make those policies publicly known", - "values": [ - "Right to food", - "Right to health" - ] - }, - { - "text": "Continue implementing its National strategy in favour of children with particular attention to children victims of landmines as well as to pursue its efforts in preventing the involvement of children in armed conflicts ", - "values": [ - "International humanitarian law", - "Rights of the Child" - ] - }, - { - "text": "Ratify international instruments signed by Madagascar, particularly the International Convention for the Protection of All Persons from Enforced Disappearance, and transpose its provisions to national legislation", - "values": [ - "Enforced disappearances", - "International instruments" - ] - }, - { - "text": "Consider developing a comprehensive action plan to operationalize the recently adopted Child Code and to address concerns related to the care and protection of children - in this regard, give due consideration to the recently adopted Guidelines for the Alternative Care of Children. ", - "values": [ - "Rights of the Child" - ] - }, - { - "text": "Withdraw its reservations to Article 40 of CRC ", - "values": [ - "International instruments", - "Women's rights" - ] - }, - { - "text": "Continue efforts to promote equality between women and men, by encouraging a balanced representation in decision-making positions, equality in the labour market and in entrepreneurship, including equal pay, among other aspects", - "values": [ - "Women's rights" - ] - }, - { - "text": "Consider the establishment of a National Human Rights Institution, in conformity with the Paris Principles", - "values": [ - "National Human Rights Institution" - ] - }, - { - "text": "Take all necessary measures to address domestic violence and sexual harassment as well as social discrimination against women, in accordance with the Convention on the Elimination of All Forms of Discrimination against Women", - "values": [ - "International instruments", - "Rights of the Child", - "Women's rights" - ] - }, - { - "text": "Redouble efforts to improve the conditions of the detention facilities, with particular consideration for women and children, and expedite trials", - "values": [ - "Detention", - "Justice", - "Rights of the Child", - "Women's rights" - ] - }, - { - "text": "Step up its efforts to ensure that human rights defenders are protected and allowed to conduct their work without hindrance, intimidation or harassment both at the national and local level ", - "values": [ - "Human rights defenders" - ] - }, - { - "text": "Continue the full implementation of its plan of action to combat violence perpetrated by men against women, violence and oppression in the name of honour, and violence in relations between people of the same sex ", - "values": [ - "Rights of the Child", - "Women's rights" - ] - }, - { - "text": "Revise its legislation on abortion, including its Constitution, to provide for additional exceptions in cases of rape, incest or serious risks to the health of the mother, building on the recommendation from the Human Rights Committee", - "values": [ - "Treaty bodies", - "Women's rights" - ] - }, - { - "text": "Work towards addressing statelessness and protecting the rights of stateless persons", - "values": [ - "Statelessness and the right to nationality" - ] - }, - { - "text": "Take all necessary measures to ensure that detention conditions fully meet international human rights standards, in accordance with Bulgaria's international obligations", - "values": [ - "Detention", - "International instruments" - ] - }, - { - "text": "Continue efforts to provide protection for children living in difficult circumstances, such as poor children and street children", - "values": [ - "Poverty", - "Rights of the Child" - ] - }, - { - "text": "Continue efforts towards the universalization of birth registration in a progressive manner and the consolidation of the right to an identity by prioritizing minorities", - "values": [ - "Minorities", - "Rights of the Child", - "Statelessness and the right to nationality" - ] - }, - { - "text": "Take further measures to address the problems faced in the areas of employment, education and housing by persons with immigrant background ", - "values": [ - "Migrants" - ] - }, - { - "text": "Abrogate article 80 of Criminal Code pertaining to the infringement to the safety of State, which restricts the right to freedom of expression ", - "values": [ - "Freedom of opinion and expression" - ] - }, - { - "text": "Continue and step up its Government\u2019s laudable efforts towards implementation of anti-discrimination laws, in order to fight all kinds of intolerance and inequality, especially on the grounds of sexual orientation and gender identity", - "values": [ - "Sexual Orientation and Gender Identity" - ] - }, - { - "text": "Consider accession to the major international human rights instruments which it is not yet a party to, including ICESCR and ICCPR, and the two optional protocols thereto", - "values": [ - "CP rights - general", - "Death penalty", - "ESC rights - general", - "International instruments" - ] - }, - { - "text": "Establish mechanisms for meaningful participation of civil society at the federal and regional level in the process of implementing and monitoring the NHRAP ", - "values": [ - "Civil society" - ] - }, - { - "text": "Sign the first Optional Protocol to the International Covenant on Civil and Political Rights", - "values": [ - "CP rights - general", - "International instruments" - ] - }, - { - "text": "Make its best efforts to ensure that the migrant workers and their families, in particular their children, enjoy an adequate livelihood, housing, health care and education", - "values": [ - "Labour", - "Migrants", - "Right to education", - "Right to health", - "Right to housing", - "Rights of the Child" - ] - }, - { - "text": "Ensure that the NHRC functions in line with the Paris Principles ", - "values": [ - "National Human Rights Institution" - ] - }, - { - "text": "Commute all death penalties, progressively reduce the number of crimes that can be punished with the death penalty and eventually adopt measures for the complete abolition of the death penalty including accession to the Second Optional Protocol to the International Covenant on Civil and Political Rights", - "values": [ - "Death penalty", - "International instruments" - ] - }, - { - "text": "Establish a national human rights institution in full compliance with the Paris Principles ", - "values": [ - "National Human Rights Institution" - ] - }, - { - "text": "Ensure impartial and thorough investigations of all allegations of human rights violations carried out by members of its military and security forces, both within its territory and in areas where it exercises effective controls ", - "values": [ - "Human rights violations by state agents" - ] - }, - { - "text": "Intensify efforts to improve funding and capacity building for the National Human Rights Commission", - "values": [ - "National Human Rights Institution" - ] - }, - { - "text": "Continue the current efforts to overcome the difficulties in meeting all the MDGs and in guaranteeing harmonious development for the population of Cape Verde ", - "values": [ - "Development" - ] - }, - { - "text": "Adhere to the principles of the ICRMW and give positive consideration to its eventual ratification", - "values": [ - "International instruments", - "Labour", - "Migrants" - ] - }, - { - "text": "Encourage enacting legislation that protects and promotes the rights of the indigenous peoples", - "values": [ - "Indigenous peoples" - ] - }, - { - "text": "Take the necessary measures to ensure that children and minors in rehabilitation centres and youth centres are not in any way submitted to torture or ill-treatment, in conformity with the provisions of the Convention on the Rights of the Child ", - "values": [ - "Detention", - "International instruments", - "Justice", - "Rights of the Child", - "Torture and other CID treatment" - ] - }, - { - "text": "Continue efforts to safeguard the dignity and protect the interests of migrant workers, including through requisite institutional and legislative measures", - "values": [ - "Labour", - "Migrants" - ] - }, - { - "text": "Accede to Additional Protocol II of the 1949 Geneva Conventions", - "values": [ - "International humanitarian law", - "International instruments" - ] - }, - { - "text": "Join more human rights treaties and their Optional Protocols, especially the International Covenant on Civil and Political Rights and the International Covenant on Economic, Social and Cultural Rights", - "values": [ - "CP rights - general", - "ESC rights - general", - "International instruments" - ] - }, - { - "text": "Lift secrecy on figures and statistics concerning death penalty. restrict its application to the most serious crimes according to international minimum standards. and to consider the establishment of a moratorium on the use of death penalty with a view to its abolition", - "values": [ - "Death penalty" - ] - }, - { - "text": "Encourage the establishment of non-governmental human rights organizations ", - "values": [ - "Civil society" - ] - }, - { - "text": "Guarantee the freedom of assembly and work with organizers to ensure that peaceful protests and demonstrations are allowed to take place within central Baku", - "values": [ - "Freedom of association and peaceful assembly" - ] - }, - { - "text": "Take measures aimed at fair and adequate representation of all minority groups in all public bodies, including the judiciary and human rights coordination bodies at the country level ", - "values": [ - "Minorities" - ] - }, - { - "text": "Conduct thorough investigation of cases of the use of torture and other forms of cruel treatment, in particular cases of violence against women in the penitentiary system ", - "values": [ - "Detention", - "Torture and other CID treatment", - "Women's rights" - ] - }, - { - "text": "Continue the legislative review with a view to ensuring equality between women and men in law and practice in all areas of life", - "values": [ - "Women's rights" - ] - }, - { - "text": "Further ensure political representation of the three religious minority groups and promote their stronger involvement in the planning and implementation of various projects providing financial assistance for their educational and cultural needs ", - "values": [ - "Minorities" - ] - }, - { - "text": "Accede to the Optional Protocol to the Convention against Torture and other Cruel, Inhuman or Degrading Treatment or Punishment, and incorporate its principles into domestic law ", - "values": [ - "Detention", - "International instruments", - "Torture and other CID treatment" - ] - }, - { - "text": "Consider extending a standing invitation to the special procedures of the Human Rights Council ", - "values": [ - "Special procedures" - ] - }, - { - "text": "Step up efforts in seeking assistance towards the establishment of a national human rights institution that is in line with the Paris Principles", - "values": [ - "National Human Rights Institution" - ] - }, - { - "text": "Elaborate comprehensive measures in order to guarantee the right to education for children of migrants and of national minorities", - "values": [ - "Migrants", - "Minorities", - "Right to education", - "Rights of the Child" - ] - }, - { - "text": "Continue the actions to protect street children and provide them with food, health, education and housing basic services", - "values": [ - "Right to education", - "Right to food", - "Right to health", - "Right to housing", - "Rights of the Child" - ] - }, - { - "text": "Continue its positive approach in improving the socio-economic conditions of women, including intensifying support for women political aspirants through its Women Political Trust Fund", - "values": [ - "Women's rights" - ] - }, - { - "text": "Continue its efforts to combat violence against women, such as domestic violence and forced marriages, and promote gender equality, by fully implementing relevant legislation, conducting awareness-raising programmes for the population and bringing to justice the perpetrators of these violence", - "values": [ - "Human rights education and training", - "Women's rights" - ] - }, - { - "text": "Identify the causes of the high level of domestic violence and sexual abuse for the purpose of having a more precise diagnosis, which would make it possible to take the necessary and adequate measures for their eradication ", - "values": [ - "Rights of the Child", - "Women's rights" - ] - }, - { - "text": "Take steps to guarantee a fair and timely trial to all defendants, reduce the use of preventive detention, and adopt measures to restructure the prison system, starting with the realization of those contained in paragraphs 58 and 59 of the National Report ", - "values": [ - "Detention", - "Justice" - ] - }, - { - "text": "Accelerate the process of establishing the national preventive mechanism on torture", - "values": [ - "Detention", - "Torture and other CID treatment" - ] - }, - { - "text": "Ensure that the judicial and law enforcement system is not abused to harass individuals for expressing their political or religious views", - "values": [ - "Freedom of opinion and expression", - "Freedom of religion and belief" - ] - }, - { - "text": "Amend its Criminal Code to abolish the criminalization of homosexual acts to conform to the provisions of the ICCPR, particularly articles 2 and 26, and the provisions of the African Charter of Human Rights and Peoples' Rights", - "values": [ - "International instruments", - "Sexual Orientation and Gender Identity" - ] - }, - { - "text": "Implement fully the law on access to information and take effective measures to protect journalists and investigate all reported incidents of intimidation aimed at silencing journalists", - "values": [ - "Freedom of opinion and expression", - "Freedom of the press" - ] - }, - { - "text": "Take effective measures to eliminate widespread sexual misuse and harassment against women and girls, including on the Internet and via mobile phones ", - "values": [ - "Rights of the Child", - "Women's rights" - ] - }, - { - "text": "Strengthen its laws to effectively combat FGM", - "values": [ - "Rights of the Child", - "Torture and other CID treatment", - "Women's rights" - ] - }, - { - "text": "Effectively investigate all reported cases of harassment of members of the Roma by the police forces.", - "values": [ - "Human rights violations by state agents", - "Minorities" - ] - }, - { - "text": "Take appropriate legislative and practical measures to prevent racial bias in the criminal justice system ", - "values": [ - "Justice", - "Racial discrimination" - ] - }, - { - "text": "Ratify Optional Protocols 1 and 2 to ICCPR ", - "values": [ - "CP rights - general", - "Death penalty", - "International instruments" - ] - }, - { - "text": "Increase efforts to see through its commitments set out in the national report, especially with regard to campaigning against poverty and ignorance, and reinforce the legitimate rights of specific social groups in the country.", - "values": [ - "Poverty" - ] - }, - { - "text": "Intensify programmes of human rights education with a view to fight racist prejudices and to start such programmes already at school level ", - "values": [ - "Human rights education and training", - "Racial discrimination" - ] - }, - { - "text": "Reconsider decrees and guidelines that are overly burdensome on domestic and international civil society organizations through lengthy and opaque registration requirements, taxation and other means", - "values": [ - "Civil society", - "Freedom of association and peaceful assembly" - ] - }, - { - "text": "Establish legal equality between men and women with a view to abolishing any discrimination and all violence, including domestic violence suffered by women and girls, and legally ban FGM.", - "values": [ - "Rights of the Child", - "Torture and other CID treatment", - "Women's rights" - ] - }, - { - "text": "Maintain its commitment to striking a balance between the opening up of its economy and minimizing the adverse impacts on the most vulnerable and disadvantaged groups in the society.", - "values": [ - "Other" - ] - }, - { - "text": "Effect the National Policy on refugee and Asylum Seekers matters the Cabinet approved in 2014", - "values": [ - "Asylum-seekers - refugees" - ] - }, - { - "text": "Take all necessary measures to protect freedom of expression, including by ensuring that journalists and members of the political opposition are able to express their views without fear of intimidation, and by investigating and bringing to justice those responsible for violence directed at journalists", - "values": [ - "Freedom of association and peaceful assembly", - "Freedom of opinion and expression", - "Freedom of the press" - ] - }, - { - "text": "Consult with Aboriginal and Torres Strait Islander people, and take into consideration the guidelines proposed by the Australian Human Rights Commission before considering suspension of the Racial Discrimination Act for any future intervention affecting the Aboriginal and Torres Strait Islander people", - "values": [ - "Indigenous peoples", - "Racial discrimination" - ] - }, - { - "text": "Reinforce its efforts to tackle impunity and corruption nationwide via the creation of a federal anti-corruption institution with the ability to prosecute, and through the allocation of adequate resources to investigate and prosecute crimes against women and children", - "values": [ - "Corruption", - "Impunity", - "Rights of the Child", - "Women's rights" - ] - }, - { - "text": "Conduct investigations into the acts of intimidation or aggression towards journalists who criticize the Government, and guarantee that any restriction to the exercise of their profession is compatible with the provisions of ICCPR ", - "values": [ - "Freedom of opinion and expression", - "Freedom of the press", - "International instruments" - ] - }, - { - "text": "Ensure that prisoners or detainees are treated with dignity and humanity, with due consideration for the Standard Minimum Rules for the Treatment of Prisoners ", - "values": [ - "Detention" - ] - }, - { - "text": "Step up its efforts to combat domestic violence, including in preventive and awareness-raising measures and assistance for victims of domestic violence ", - "values": [ - "Human rights education and training", - "Rights of the Child", - "Women's rights" - ] - }, - { - "text": "Sign and ratify ICRMW", - "values": [ - "International instruments", - "Labour", - "Migrants" - ] - }, - { - "text": "Take steps to address discrimination based on sexual orientation and gender identity, including revising the Gender Identity Disorder Law", - "values": [ - "Sexual Orientation and Gender Identity" - ] - }, - { - "text": "Accelerate the process for the adoption of the third national action plan on human rights in close cooperation with civil society", - "values": [ - "General" - ] - }, - { - "text": "Seek technical assistance from the international community in developing a National Human Rights Strategy and Action Plan", - "values": [ - "Technical assistance and cooperation" - ] - }, - { - "text": "Continue strengthening human rights culture and capacity-building ", - "values": [ - "Human rights education and training" - ] - }, - { - "text": "While commending the Government for the measures already taken in combating violence against women, recommended that steps continue to be taken to follow up on the recommendations of the Human Rights Committee and CEDAW", - "values": [ - "Treaty bodies", - "Women's rights" - ] - }, - { - "text": "Strengthen ongoing programmes aimed at the achievement of universal secondary education", - "values": [ - "Right to education" - ] - }, - { - "text": "Guarantee freedom of religion and worship, also by fighting all forms of discrimination against people belonging to religions minorities ", - "values": [ - "Freedom of religion and belief", - "Minorities" - ] - }, - { - "text": "Ratify the Convention on the Rights of the Child, the Convention on the Elimination of All forms of Discrimination against Women, the Convention on the Rights of Persons with Disabilities and the Rome Statute of the International Criminal Court, as previously recommended", - "values": [ - "Disabilities", - "International instruments", - "Justice", - "Rights of the Child", - "UPR process", - "Women's rights" - ] - }, - { - "text": "Continue the constitutional review process in full transparency and clarity on the primacy of the International Covenant on Civil and Political Rights over domestic law", - "values": [ - "CP rights - general", - "International instruments" - ] - }, - { - "text": "Ensure the enforcement of the legal framework for the prosecution of human traffickers and appropriate assistance for victims of trafficking in human beings ", - "values": [ - "Trafficking" - ] - }, - { - "text": "Continue its efforts aimed at realizing the right to work for all with a specific focus on young people", - "values": [ - "Development" - ] - }, - { - "text": "Continue to review the laws on the National Human Rights Commission ", - "values": [ - "National Human Rights Institution" - ] - }, - { - "text": "Continue to protect the population against climate change by pursuing the efforts undertaken under the framework of the United Nations Framework Convention on Climate Change", - "values": [ - "Environment" - ] - }, - { - "text": "Repeal the Sedition Act and sustain previous reforms in the human rights field", - "values": [ - "Freedom of opinion and expression" - ] - }, - { - "text": "Combat discrimination based on nationality, ethnicity or religion", - "values": [ - "Freedom of religion and belief", - "Minorities", - "Racial discrimination" - ] - }, - { - "text": "Regularly fulfil its reporting obligations to the treaty bodies of the human rights treaties to which it is a party ", - "values": [ - "Treaty bodies" - ] - }, - { - "text": "Take effective steps to implement its legislative measures and policies on discrimination and segregation of Roma people", - "values": [ - "Minorities", - "Racial discrimination" - ] - }, - { - "text": "Speed up implementation of policies and measures for promotion and protection of the basic social and economic rights, where major challenges would be disease control, illiteracy eradication, poverty reduction and food security ", - "values": [ - "ESC rights - general", - "Poverty", - "Right to education", - "Right to food", - "Right to health" - ] - }, - { - "text": "Enhance efforts to promote the presentation of women at all levels ", - "values": [ - "Women's rights" - ] - }, - { - "text": "Establish an open, consultative process for drafting and ratifying a new constitution, under which new elections would be held at the end of the transitional period", - "values": [ - "Elections" - ] - }, - { - "text": "Adopt measures to ensure the payment of compensations to victims of forced sterilization", - "values": [ - "Torture and other CID treatment" - ] - }, - { - "text": "Strengthen its efforts to promote and protect human rights in Iraq", - "values": [ - "General" - ] - }, - { - "text": "Dismantle special terrorist zones, safe havens and sanctuaries, and take verifiable actions, including on terror financing", - "values": [ - "Public security" - ] - }, - { - "text": "Conclude the revision of the Statute of the National Human Rights Commission to bring it in line with the Paris Principles, also in compliance with the Lisbon Declaration and Protocol of May 2013, which creates the Network of NHRIs of the Portuguese Speaking Countries", - "values": [ - "National Human Rights Institution" - ] - }, - { - "text": "Undertake measures ensuring rights of ethnicities and national minorities to use its native languages in practice ", - "values": [ - "Minorities" - ] - }, - { - "text": "Guarantee women effective access to justice in cases of harassment and sexual and domestic violence", - "values": [ - "Women's rights" - ] - }, - { - "text": "Ratify and implement the International Convention on the Protection of the Rights of All Migrant Workers and Members of Their Families ", - "values": [ - "International instruments", - "Labour", - "Migrants" - ] - }, - { - "text": "Adopt legislative or other measures and awareness-raising campaigns to combat and prevent discrimination and societal stigma, in particular against persons with disabilities and persons affected by HIV/AIDS ", - "values": [ - "Disabilities", - "HIV - Aids", - "Human rights education and training" - ] - }, - { - "text": "Intensify efforts to counter violence against women and children", - "values": [ - "Rights of the Child", - "Women's rights" - ] - }, - { - "text": "Put an end to forced evictions, notably by improving the application of the land law of 2001, ensuring a better verification of land titles and guaranteeing strengthened protection of the population affected by the expropriations, which implies in particular prior consultations, a search for alternative solutions to expropriations, offers of re-housing and appropriate compensation of evicted persons ", - "values": [ - "Right to housing", - "Right to land" - ] - }, - { - "text": "Review legislation and repeal provisions under which up to life imprisonment can be imposed for tarnishing the country's reputation or undermining confidence in it abroad ", - "values": [ - "Freedom of opinion and expression" - ] - }, - { - "text": "Institute an official moratorium on the passing of death sentences and on executions", - "values": [ - "Death penalty" - ] - }, - { - "text": "Take steps to improve detention conditions of prisoners and strengthen independent control mechanisms. Special emphasis should be on the identification of alternative approaches to imprisonment as well as on the societal reintegration of prisoners ", - "values": [ - "Detention" - ] - }, - { - "text": "Consider the ratification of the Optional Protocol to the Convention against Torture", - "values": [ - "Detention", - "International instruments", - "Torture and other CID treatment" - ] - }, - { - "text": "Commit itself to raising awareness about the UPR recommendations and include interested non-governmental organizations in discussions on how to best implement recommendations.", - "values": [ - "Civil society", - "UPR process" - ] - }, - { - "text": "Step up efforts to strengthen public education, awareness programme and skill training, particularly aimed at increasing awareness on human rights in Bahrain ", - "values": [ - "Human rights education and training", - "Right to education" - ] - }, - { - "text": "Take serious steps to eradicate poverty, especially in rural areas, and improve living standards", - "values": [ - "Poverty" - ] - }, - { - "text": "Put a special emphasis on gender equality, the effectiveness protection of children and the protection of victims of albinism", - "values": [ - "Minorities", - "Rights of the Child", - "Women's rights" - ] - }, - { - "text": "Undertake measures to ensure that domestic courts are put in a position to apply the principles stemming from the European Convention on Human Rights", - "values": [ - "Justice" - ] - }, - { - "text": "Develop and implement a National Action Plan for human rights, in order to framework a systematic approach to the promotion and the protection of human rights in the country", - "values": [ - "General" - ] - }, - { - "text": "Implement programmes to create jobs to ensure the realization of the right to work", - "values": [ - "Labour" - ] - }, - { - "text": "Continue promoting education and awareness-raising programmes on human rights for officers of the judiciary ", - "values": [ - "Human rights education and training" - ] - }, - { - "text": "Continue to mobilize internal resources and capacity while strengthening cooperation with partners and United Nations agencies to address poverty challenges ", - "values": [ - "Poverty" - ] - }, - { - "text": "Establish an independent and impartial judiciary system", - "values": [ - "Justice" - ] - }, - { - "text": "Continue its action to eradicate the practice of female genital mutilation ", - "values": [ - "Rights of the Child", - "Torture and other CID treatment", - "Women's rights" - ] - }, - { - "text": "Continue efforts to improve the status of women and promote gender equality at all levels, thereby enhancing women\u2019s contribution to the development process", - "values": [ - "Development", - "Women's rights" - ] - }, - { - "text": "Ratify all the international instruments on human rights", - "values": [ - "International instruments" - ] - }, - { - "text": "Guarantee without any discrimination to all disadvantaged groups of the population, including the Roma, access to adequate housing ", - "values": [ - "Minorities", - "Right to housing" - ] - }, - { - "text": "Further increase its efforts to combat sexual exploitation of children, child pornography and prostitution, and provide assistance to victims of sexual exploitation", - "values": [ - "Rights of the Child", - "Trafficking" - ] - }, - { - "text": "Draw up an effective and appropriate policy framework and institutional mechanism to fight hunger, food insecurity and inequality in income distribution", - "values": [ - "Right to food" - ] - }, - { - "text": "Immediately lift the on-going regime of military closures imposed on the occupied Gaza Strip and guarantee unrestricted access of goods and individuals in and out of the Gaza Strip", - "values": [ - "Freedom of movement" - ] - }, - { - "text": "Strengthen efforts in the field of equitable justice through the Philippine development plan", - "values": [ - "Development" - ] - }, - { - "text": "Plan and take concrete measures in the mid-term period with the objective of reducing pre-trial time for remand prisoners and reduce the overall number of prisoners awaiting trial rather than serving sentences", - "values": [ - "Detention" - ] - }, - { - "text": "On gender-based violence: establish accessible reporting mechanisms and strengthen investigation and enforcement capacity", - "values": [ - "Women's rights" - ] - }, - { - "text": "Gradual consideration be given, with the assistance of OHCHR, to the ratification of some human rights treaties, in particular the International Convention on the Elimination of All Forms of Discrimination against Women ", - "values": [ - "International instruments", - "Technical assistance and cooperation", - "Women's rights" - ] - }, - { - "text": "Establish a de jure moratorium on the use of death penalty as a step towards its abolition ", - "values": [ - "Death penalty" - ] - }, - { - "text": "Continue working with the aim to eradicate all forms of violence against women ", - "values": [ - "Women's rights" - ] - }, - { - "text": "Continue its efforts to enact laws addressing domestic violence, especially against women ", - "values": [ - "Rights of the Child", - "Women's rights" - ] - }, - { - "text": "A public policy that covers and takes account of indigenous peoples (Pygmies) at the institutional level", - "values": [ - "Indigenous peoples" - ] - }, - { - "text": "Strengthen measures allowing indigenous communities to have access to education ", - "values": [ - "Indigenous peoples", - "Right to education" - ] - }, - { - "text": "Develop measures for social protection, including through the adoption of a system of health coverage", - "values": [ - "Right to health" - ] - }, - { - "text": "Investigate and prosecute attacks and threats against journalists", - "values": [ - "Freedom of the press" - ] - }, - { - "text": "Criminalize domestic violence", - "values": [ - "Rights of the Child", - "Women's rights" - ] - }, - { - "text": "Continue its efforts to provide a swift and effective government response to violence against women and girls, including by strengthening the role of the national women\u2019s council, by providing it with adequate budgetary and human resources for implementing, monitoring and evaluating the national plan of action for prevention, assistance and eradication of violence against women 2017-2019", - "values": [ - "Rights of the Child", - "Women's rights" - ] - }, - { - "text": "Adopt without delay a comprehensive Anti-discrimination Act that prohibits all forms of discrimination, including race, gender, sexual orientation and gender identity", - "values": [ - "Racial discrimination", - "Sexual Orientation and Gender Identity", - "Women's rights" - ] - }, - { - "text": "Continue to promote socioeconomic development so as to improve people\u2019s living standards", - "values": [ - "Development" - ] - }, - { - "text": "Implement the national strategy for the prevention, assistance and eradication of violence against women 2017-2019, and ensure continuation of this work beyond 2019", - "values": [ - "Women's rights" - ] - }, - { - "text": "Allow all detainees access to lawyers immediately after their detention and bring them before a judge no later than 48 hours, and provide information about the whereabouts of disappeared persons", - "values": [ - "Detention", - "Enforced disappearances" - ] - }, - { - "text": "Ensure its security personnel undergo due human rights and humanitarian law training programmes to prevent extrajudicial killings, use of torture and other ill treatment ", - "values": [ - "Extrajudicial executions", - "Human rights education and training", - "Torture and other CID treatment" - ] - }, - { - "text": "Put an end to corporal punishment in schools and in the home, and to revise article 1.10 of the Criminal Code.", - "values": [ - "Rights of the Child", - "Torture and other CID treatment" - ] - }, - { - "text": "Extend the protection afforded by labour law to the entire range of domestic workers ", - "values": [ - "Labour" - ] - }, - { - "text": "Step up measures to overcome the problem of housing shortage in the country ", - "values": [ - "Right to housing" - ] - }, - { - "text": "Establish a human rights institution", - "values": [ - "National Human Rights Institution" - ] - }, - { - "text": "Continue its efforts to complete the accession to the relevant instruments such as the Convention against Torture and Other Cruel, Inhuman or Degrading Treatment or Punishment", - "values": [ - "International instruments", - "Torture and other CID treatment" - ] - }, - { - "text": "Apply Act No. 6/2006 preventing and punishing torture and prosecute those who are suspected of involvement in this type of crime, including members of security forces ", - "values": [ - "Human rights violations by state agents", - "Torture and other CID treatment" - ] - }, - { - "text": "Continue concerted efforts at the international level for the prevention of the crime of genocide", - "values": [ - "Justice" - ] - }, - { - "text": "Strengthen its efforts in the fight against impunity ", - "values": [ - "Impunity" - ] - }, - { - "text": "Criminalize all forms of sexual abuse of girls under 18 years of age, including marital rape and \u201chonour crimes\u201c", - "values": [ - "Rights of the Child", - "Women's rights" - ] - }, - { - "text": "Lift restrictions on the rights to freedom of expression and association, including restrictions on the media that are not in accordance with ICCPR, and show greater tolerance for Cubans who express opposing views peacefully", - "values": [ - "Freedom of association and peaceful assembly", - "Freedom of opinion and expression", - "Freedom of the press", - "International instruments" - ] - }, - { - "text": "Strengthen the existing mechanisms for combating corruption ", - "values": [ - "Corruption" - ] - }, - { - "text": "To establish an inter-ministerial technical committee to provide technical back-up to the Cabinet subcommittee", - "values": [ - "Other" - ] - }, - { - "text": "Pursue on-going efforts to ensure the adoption, in the near future, of a list identifying types of hazardous work prohibited to persons under the age of 18 years", - "values": [ - "Labour", - "Rights of the Child" - ] - }, - { - "text": "Strengthen the fight against ritual crimes above all ritual murders", - "values": [ - "Other" - ] - }, - { - "text": "Continue efforts to ratify the CED ", - "values": [ - "Enforced disappearances", - "International instruments" - ] - }, - { - "text": "Expand its efforts to establish and implement a sustainable and uniform system to assist in data retention, direct aid and assistance to victims in trafficking", - "values": [ - "Trafficking" - ] - }, - { - "text": "Take measures to prevent child, early and forced marriages, including through educational and advocacy campaigns to enforce existing legislation", - "values": [ - "Human rights education and training", - "Rights of the Child", - "Women's rights" - ] - }, - { - "text": "Combat gender inequality and discriminatory practices in the areas of work, the family, social roles and personal integrity, by combating practices such as female genital mutilation and gavage", - "values": [ - "Rights of the Child", - "Torture and other CID treatment", - "Women's rights" - ] - }, - { - "text": "Take the necessary steps to improve the situation of internally displaced persons in order to protect their most basic human rights ", - "values": [ - "Internally displaced persons" - ] - }, - { - "text": "Deepen actions to ensure effective implementation of the legislation on the protection of women, especially against all harmful practice or negative stereotyping", - "values": [ - "Torture and other CID treatment", - "Women's rights" - ] - }, - { - "text": "Accede to the ICCPR and take necessary measures to ensure its full implementation in the national legislation", - "values": [ - "CP rights - general", - "International instruments" - ] - }, - { - "text": "Take immediate steps to adopt and implement policies and measures to combat racism, racial discrimination, xenophobia, Islamophobia and related intolerances", - "values": [ - "Racial discrimination" - ] - }, - { - "text": "Lift the ban on the importation of religious teaching materials and scriptures in order to enhance and protect freedom of religion and worship ", - "values": [ - "Freedom of religion and belief" - ] - }, - { - "text": "Submit its second periodic national report to the Committee on Economic, Social and Cultural Rights, which has been due since 2006", - "values": [ - "ESC rights - general", - "Treaty bodies" - ] - }, - { - "text": "Progress in the process of ratification of the International Covenant on Civil and Political Rights, the Convention on the Rights of Persons with Disabilities and the Optional Protocol to the Convention on the Rights of the Child signed in 2011", - "values": [ - "CP rights - general", - "Disabilities", - "International instruments", - "Rights of the Child" - ] - }, - { - "text": "Ratify the Second Optional Protocol to the International Covenant on Civil and Political Rights, aiming at abolition of the death penalty ", - "values": [ - "Death penalty", - "International instruments" - ] - }, - { - "text": "Provide adequate resources for the full implementation of domestic laws that prohibit harmful traditional practices against women", - "values": [ - "Torture and other CID treatment", - "Women's rights" - ] - }, - { - "text": "Proceed to ratify the International Convention for the Protection of All Persons from Enforced Disappearance", - "values": [ - "Enforced disappearances", - "International instruments" - ] - }, - { - "text": "Continue efforts to strengthen the implementation of legislation on violence against women", - "values": [ - "Women's rights" - ] - }, - { - "text": "Continue efforts regarding measures taken and legislation adopted for the effective application of the new constitutional provisions", - "values": [ - "Justice" - ] - }, - { - "text": "Consider opening a small Permanent Mission in Geneva, using the facilities provided by the newly-opened Commonwealth Small States Office ", - "values": [ - "Other" - ] - }, - { - "text": "Submit to Parliament law on the protection of women from violence, which was announced during the UPR in 2008 ", - "values": [ - "UPR process", - "Women's rights" - ] - }, - { - "text": "Upgrade the status of the Human Rights Commission of Maldives to - A - status according to the Paris Principles by fully ensuring its independence, including with regard to budgetary allocations ", - "values": [ - "National Human Rights Institution" - ] - }, - { - "text": "The delegation affirmed the commitment of the Government to uphold the human rights of all Basotho.", - "values": [ - "General" - ] - }, - { - "text": "Consider exploring possible ways and means to further facilitate accessto and provision of humanitarian aid and other forms of assistance to the IDP population, with a view to normalizing their living situation ", - "values": [ - "Internally displaced persons" - ] - }, - { - "text": "Establish a mechanism guaranteeing the correct identification of victims of the trafficking in persons and provide them with adequate and comprehensive support, especially in the case of minors ", - "values": [ - "Rights of the Child", - "Trafficking" - ] - }, - { - "text": "Continue to implement strategies and plans and to increase women\u2019s participation in decision-making positions in the public sector", - "values": [ - "Women's rights" - ] - }, - { - "text": "Ensure that federal and state authorities work more efficiently together to produce statistics and regular human rights reports ", - "values": [ - "Other" - ] - }, - { - "text": "Promptly ratify CAT and sign its Optional Protocol ", - "values": [ - "Detention", - "International instruments", - "Torture and other CID treatment" - ] - }, - { - "text": "Review and revise existing laws to ensure that they are nondiscriminatory, in accordance with international standards ", - "values": [ - "Justice" - ] - }, - { - "text": "Consider ratifying the four core ILO conventions related to freedom of association, the right to organize trade unions and collective bargaining, and on the prohibition of forced and compulsory labour", - "values": [ - "Freedom of association and peaceful assembly", - "International instruments", - "Labour" - ] - }, - { - "text": "Redouble its efforts for the protection of the rights of women, and adopt a comprehensive law on violence against women, so that all acts of domestic violence are investigated and their perpetrators are prosecuted ", - "values": [ - "Women's rights" - ] - }, - { - "text": "Monitor the implementation of the anti-terrorism law in order to identify any act of repression which affects freedom of association and expression and possible cases of arbitrary detention. In addition, develop activities necessary to eliminate any excesses by the authorities in its application", - "values": [ - "Counter-terrorism", - "Detention", - "Freedom of association and peaceful assembly", - "Freedom of opinion and expression", - "Human rights violations by state agents" - ] - }, - { - "text": "Completely stop deportation of undocumented migrant children enrolled in schools and their detention after deportation orders", - "values": [ - "Detention", - "Migrants", - "Rights of the Child" - ] - }, - { - "text": "Continue efforts in favour of women in rural areas.", - "values": [ - "Women's rights" - ] - }, - { - "text": "Continue to focus on the issue of education to ensure inclusive, high-quality, accessible education for all", - "values": [ - "Right to education" - ] - }, - { - "text": "The Government is committed to addressing this overrepresentation [of Maori in the prison population] through the "Drivers of Crime" initiative. Priority areas for action include: increasing at-risk communities' uptake of maternity and early parenting support, addressing conduct and behaviour issues through education and health services, reducing harm from alcohol, and improving access to interventions for offenders to reduce reoffending and escalation.", - "values": [ - "Detention", - "Indigenous peoples" - ] - }, - { - "text": "Continue promoting initiatives in defence of international solidarity ", - "values": [ - "Other" - ] - }, - { - "text": "Sign and ratify ICRMW ", - "values": [ - "International instruments", - "Labour", - "Migrants" - ] - }, - { - "text": "Continue its efforts to combat violence against women and girls", - "values": [ - "Women's rights" - ] - }, - { - "text": "Continue to pursue its policy of eliminating corruption through, among others, the National Integrity Strategy adopted in 2012 ", - "values": [ - "Corruption" - ] - }, - { - "text": "Revise the amendment to the Law on Information and Communication Networks to prevent the application of criminal legislation concerning defamation from being extended to any Internet content, and to strengthen freedom of expression and of the press with regard to political issues", - "values": [ - "Freedom of opinion and expression", - "Freedom of the press" - ] - }, - { - "text": "Legislation was before Parliament to outlaw the practice of female genital mutilation", - "values": [ - "Rights of the Child", - "Torture and other CID treatment", - "Women's rights" - ] - }, - { - "text": "While expressing concern at the Security Surveillance Law, which restricts freedoms of former political prisoners and of prisoners of conscience to adopt measures to address the situation ", - "values": [ - "Detention", - "Freedom of opinion and expression", - "Freedom of religion and belief" - ] - }, - { - "text": "Strengthen awareness-raising and implementation of the national Action Plan for Human Rights", - "values": [ - "Human rights education and training" - ] - }, - { - "text": "Implement and support the particular government programmes of social integration and community activation", - "values": [ - "General" - ] - }, - { - "text": "Conduct effective awareness raising activities to combat torture", - "values": [ - "Torture and other CID treatment" - ] - }, - { - "text": "Withdraw the reservations to articles 10 (1), 37 (c) and 40 (2) of the Convention on the Rights of the Child", - "values": [ - "International instruments", - "Rights of the Child" - ] - }, - { - "text": "Develop, in partnership with indigenous communities, a national strategy to implement the United Nations Declaration on the Rights of Indigenous Peoples", - "values": [ - "Indigenous peoples", - "International instruments" - ] - }, - { - "text": "Ensure full participation of women in the monitoring mechanisms of the Law on Development and Protection of Women adopted in 2004 and carry out dissemination campaign among the whole population of the country, particularly in rural areas", - "values": [ - "Women's rights" - ] - }, - { - "text": "Continue its efforts aimed at strengthening and protecting human rights", - "values": [ - "General" - ] - }, - { - "text": "Take concrete measures to comply with its reporting obligations under the relevant human rights treaties in a timely manner.", - "values": [ - "Treaty bodies" - ] - }, - { - "text": "Strengthen the infrastructure and institutional arrangements for training on human rights ", - "values": [ - "Human rights education and training" - ] - }, - { - "text": "Take all necessary measures to achieve the objective of free primary education", - "values": [ - "Right to education" - ] - }, - { - "text": "Continue its efforts to eradicate acts of racism and other forms of discrimination", - "values": [ - "Racial discrimination" - ] - }, - { - "text": "Expedite the ratification of the Rome Statute of the International Criminal Court", - "values": [ - "International instruments", - "Justice" - ] - }, - { - "text": "Continue to improve policies and programmes towards strengthening the capacities of its national institutions and public decision-making authorities and to improve the legislative and judicial environment, as well as the overall human rights infrastructure ", - "values": [ - "Justice" - ] - }, - { - "text": "Request United Nations technical assistance in the preparation of national reports on the implementation of international human rights treaties ", - "values": [ - "International instruments", - "Technical assistance and cooperation" - ] - }, - { - "text": "Pursue efforts to combat human trafficking and adopt a law to prevent this phenomenon and protect victims as soon as possible", - "values": [ - "Trafficking" - ] - }, - { - "text": "Provide children with child-sensitive mechanisms for lodging complaints in case they are victims of violence and sexual exploitation ", - "values": [ - "Rights of the Child" - ] - }, - { - "text": "Adopt measures to ensure the effective access of victims to remedy, including reparation and compensation ", - "values": [ - "Justice" - ] - }, - { - "text": "Continue with the efforts aiming at the ratification of the International Convention for the Protection of All Persons from Enforced Disappearance as well as the ratification of the main international human rights instruments to which Fiji is not yet a party to", - "values": [ - "Enforced disappearances", - "International instruments" - ] - }, - { - "text": "Continue to follow up on the implementation of conclusions and recommendations which resulted from the last visit of the Working Group on Arbitrary Detention, in 2009, and consider proposing a new mission by the referred special procedure", - "values": [ - "Detention", - "Special procedures" - ] - }, - { - "text": "Re-establish the rule of law in the whole territory, by monitoring the army, the police, the gendarmerie and the customs in the exercise of their functions", - "values": [ - "Justice" - ] - }, - { - "text": "Extend an open invitation to the special procedures of the United Nations", - "values": [ - "Special procedures" - ] - }, - { - "text": "Abolish the death penalty in law and ratify the Second Optional Protocol to the International Covenant on Civil and Political Rights", - "values": [ - "Death penalty", - "International instruments" - ] - }, - { - "text": "Extend an open and permanent invitation to the United Nations human rights special procedures mandate-holders ", - "values": [ - "Special procedures" - ] - }, - { - "text": "Ratify the Convention on the Rights of Migrant Workers and Their Family Members.", - "values": [ - "International instruments", - "Labour", - "Migrants" - ] - }, - { - "text": "Establish a policy for gender promotion to ensure the improved representation of women in decision-making bodies ", - "values": [ - "Women's rights" - ] - }, - { - "text": "Ratify the International Covenant on Civil and Political Rights and the International Covenant on Economic, Social and Cultural Rights, the Rome Statute, the International Convention for the Protection of All Persons from Enforced Disappearance, the Optional Protocol to the Convention against Torture and the Convention on the Prevention and Punishment of the Crime of Genocide ", - "values": [ - "CP rights - general", - "ESC rights - general", - "Enforced disappearances", - "International instruments", - "Justice", - "Torture and other CID treatment" - ] - }, - { - "text": "Carry out concrete actions, including those of an administrative or budgetary nature, to consolidate effective communication channels with civil society and to promote the development of education programmes", - "values": [ - "Civil society", - "Right to education" - ] - }, - { - "text": "Adopt the National Action Plan on Human Rights in the coming period", - "values": [ - "General" - ] - }, - { - "text": "Decisively take issue with human rights violations and war crimes of the past decades with a view to bringing the perpetrators to justice ", - "values": [ - "Justice" - ] - }, - { - "text": "Realize effectively the plans to overcome poverty and achieve sustainable development", - "values": [ - "Poverty" - ] - }, - { - "text": "Put in place the transitional institutions foreseen in the Maputo Agreement, and to hold credible elections leading to the restoration of democracy and the rule of law", - "values": [ - "Elections", - "Justice" - ] - }, - { - "text": "Ratify the United Nations Convention on the Rights of Persons with Disabilities by the next UPR review", - "values": [ - "Disabilities", - "International instruments", - "UPR process" - ] - }, - { - "text": "Submission of periodic reports to various treaty bodies", - "values": [ - "Treaty bodies" - ] - }, - { - "text": "Continue to strengthen its domestic legal framework and implement its international human rights obligations ", - "values": [ - "International instruments" - ] - }, - { - "text": "Establish a mechanism for monitoring the legality of arrests and detentions", - "values": [ - "Detention" - ] - }, - { - "text": "Continue making progress in the implementation of the Indigenous Advancement Strategy to promote better opportunities in the areas of education, health and employment for indigenous communities", - "values": [ - "Indigenous peoples", - "Labour", - "Right to education", - "Right to health" - ] - }, - { - "text": "Continue strengthening the institutions and preventive policies relating to gender issues and discrimination against women ", - "values": [ - "Women's rights" - ] - }, - { - "text": "Facilitate effective monitoring in addition to reporting violations against children in armed conflict by the United Nations country team ", - "values": [ - "International humanitarian law", - "Rights of the Child" - ] - }, - { - "text": "Take urgent steps to facilitate the work of human rights defenders and civil society, including through guaranteeing freedom of expression and the media and protection of all persons from intimidation, threats, attacks or reprisals for seeking to cooperate with the United Nations, and through allowing unimpeded humanitarian access to conflict affected populations, with appropriate protection to humanitarian actors ", - "values": [ - "Civil society", - "Freedom of opinion and expression", - "Freedom of the press", - "Human rights defenders" - ] - }, - { - "text": "Ensure that racially motivated violence and other hate crimes are fully and effectively investigated and that those responsible are prosecuted under the laws providing for sanctions which reflect the gravity of the human rights abuses ", - "values": [ - "Racial discrimination" - ] - }, - { - "text": "Adopt concrete measures to ensure access to employment for persons with disabilities and to promote the principle of inclusive education throughout the national education system", - "values": [ - "Disabilities", - "Labour", - "Right to education" - ] - }, - { - "text": "Adopt a law on all forms of violence and discrimination against women", - "values": [ - "Women's rights" - ] - }, - { - "text": "Adopt legislation prohibiting FGM", - "values": [ - "Rights of the Child", - "Torture and other CID treatment", - "Women's rights" - ] - }, - { - "text": "Begin the accreditation process, as the Paris Principles play an important role in the promotion and protection of international human rights standards at the national level ", - "values": [ - "International instruments", - "National Human Rights Institution" - ] - }, - { - "text": "Pursue its efforts to bring national legislation into line with international human rights standards and take this element into account when adopting a law on the rights of children ", - "values": [ - "International instruments", - "Rights of the Child" - ] - }, - { - "text": "Redouble efforts in order to guarantee the respect of the human rights of migrants, including persons under irregular situation", - "values": [ - "Migrants" - ] - }, - { - "text": "Continue to implement the human rights plans and training programs for the judiciary and the police ", - "values": [ - "Human rights education and training" - ] - }, - { - "text": "Step up its efforts to prevent arbitrary detentions, and to investigate all cases involving arbitrary arrest, detention and torture and bring to justice those responsible", - "values": [ - "Detention", - "Torture and other CID treatment" - ] - }, - { - "text": "Strengthen the capacity of the judiciary at all levels and accelerate legal reforms, especially in the field of judicial treatment of high-level corruption as per the objective stated in the European Commission report of 27 June 2007 under the Cooperation and Verification Mechanism.", - "values": [ - "Corruption", - "Justice" - ] - }, - { - "text": "Ensure that the provisions of the 2009 Charities and Societies Proclamation are in compliance with international human rights standards, including the freedom of expression and assembly ", - "values": [ - "Civil society", - "Freedom of association and peaceful assembly", - "Freedom of opinion and expression", - "International instruments" - ] - }, - { - "text": "Adopt all measures, as a matter of priority, to eliminate female genital mutilation", - "values": [ - "Rights of the Child", - "Torture and other CID treatment", - "Women's rights" - ] - }, - { - "text": "Recognize conscientious objection as a right, guaranteeing an alternative community service to the military service of a truly civilian character, and free all conscientious objectors currently imprisoned", - "values": [ - "Freedom of religion and belief" - ] - }, - { - "text": "Continue its efforts in combating trafficking in human beings and providing psychological, social and legal assistance to victims", - "values": [ - "Trafficking" - ] - }, - { - "text": "Repeal its current legislation that criminalizes the termination of pregnancies in all circumstances, including in cases of rape, incest and situations where the life of the mother is at risk", - "values": [ - "Women's rights" - ] - }, - { - "text": "Adopt and implement a national plan in accordance with the Durban Declaration and Programme of Action", - "values": [ - "Racial discrimination" - ] - }, - { - "text": "Take the necessary steps to strengthen its fight against discriminatory practices and violence against women.", - "values": [ - "Women's rights" - ] - }, - { - "text": "Pursue the strengthening of its cooperation with treaty bodies, step up its efforts in domesticating international human rights legal instruments by supporting its request to strengthen capacities in the areas which it has set out", - "values": [ - "International instruments", - "Treaty bodies" - ] - }, - { - "text": "Continue the process of enacting new laws that will ensure that the rights and freedoms granted under its amended constitution can be fully enjoyed by its people", - "values": [ - "General" - ] - }, - { - "text": "Consider ratifying the Optional Protocol to CAT. ", - "values": [ - "Detention", - "International instruments", - "Torture and other CID treatment" - ] - }, - { - "text": "Undertake continued action including legislation to address the marginalization of women, children and other vulnerable groups from socio-economic and political spheres ", - "values": [ - "Rights of the Child", - "Women's rights" - ] - }, - { - "text": "Strengthen measures for the rehabilitation and social integration of women and girls victims of trafficking ", - "values": [ - "Rights of the Child", - "Trafficking", - "Women's rights" - ] - }, - { - "text": "Intensify the implementation of its pro-poor policies, projects and programmes ", - "values": [ - "Poverty" - ] - }, - { - "text": "Improve coordination on trafficking, the monitoring of the implementation of anti-trafficking legislation, ensure the rights of victims are protected, including the right to redress and economic and social support", - "values": [ - "ESC rights - general", - "Trafficking" - ] - }, - { - "text": "Promote efforts to ensure that the right to freedom of expression can be fully exercised and that all violations against human rights defenders and journalists are effectively investigated and prosecuted ", - "values": [ - "Freedom of opinion and expression", - "Freedom of the press", - "Human rights defenders" - ] - }, - { - "text": "Support and develop educational programs and institutions for national minorities", - "values": [ - "Minorities", - "Right to education" - ] - }, - { - "text": "Continue its efforts in the prevention and fight against racism, racial discrimination, xenophobia and related intolerance ", - "values": [ - "Racial discrimination" - ] - }, - { - "text": "Take concrete steps aimed at increasing the minimum marriage age for girls from 16 to 18", - "values": [ - "Rights of the Child", - "Women's rights" - ] - }, - { - "text": "Continue its efforts to eliminate violence against women in line with the relevant recommendations of the Committee on the Elimination of Discrimination against Women ", - "values": [ - "Treaty bodies", - "Women's rights" - ] - }, - { - "text": "Sign and ratify the Optional Protocol to ICESCR ", - "values": [ - "ESC rights - general", - "International instruments" - ] - }, - { - "text": "Strengthen the policy of promotion of children's rights and the implementation of the Guidelines for the Alternative Care of Children, according to Human Rights Council resolution 11-7 and L.50 of the sixty-fourth session of the United Nations General Assembly ", - "values": [ - "Rights of the Child" - ] - }, - { - "text": "Take further steps toward the abolition of the death penalty in law", - "values": [ - "Death penalty" - ] - }, - { - "text": "Adopt and implement efficient measures to protect all children from sexual exploitation, including the ratification of OP-CRC-SC ", - "values": [ - "International instruments", - "Rights of the Child", - "Trafficking" - ] - }, - { - "text": "Adopt an anti-discrimination law with adequate and corresponding penal provisions to protect victims", - "values": [ - "Other" - ] - }, - { - "text": "Reform the law on radio communication in order to guarantee the proper and free functioning of local radios.", - "values": [ - "Freedom of the press" - ] - }, - { - "text": "Continue its efforts in ensuring that the housing conditions of workers to be continuously inspected and monitored ", - "values": [ - "Labour", - "Right to housing" - ] - }, - { - "text": "Join the International Convention for the Protection of All Persons from Enforced Disappearance ", - "values": [ - "Enforced disappearances", - "International instruments" - ] - }, - { - "text": "Withdraw its reservations on Article 21(a) of the Convention on the Rights of the Child ", - "values": [ - "International instruments", - "Rights of the Child" - ] - }, - { - "text": "Take all necessary measures to provide equal access to all public services for all members of minority groups in the country", - "values": [ - "Minorities" - ] - }, - { - "text": "Establish a moratorium on executions, with a view to abolishing the death penalty, as established by the relevant resolutions of the UN General Assembly", - "values": [ - "Death penalty" - ] - }, - { - "text": "Continue its efforts and successful measures to ensure full access to education and health care for all its citizens, especially disadvantaged groups", - "values": [ - "Right to education", - "Right to health" - ] - }, - { - "text": "Step up measures to strengthen the work of local human rights institutions, including the National Commission for Human Rights, the National Commission on the Status of Women and the National Commission for Minorities", - "values": [ - "Minorities", - "National Human Rights Institution", - "Women's rights" - ] - }, - { - "text": "Continue to make every effort to promote economic and social development, further increase the level of social security and better promote people's livelihood ", - "values": [ - "Development", - "ESC rights - general" - ] - }, - { - "text": "Intensify youth programs and create more employment opportunities for youths", - "values": [ - "Development" - ] - }, - { - "text": "Respect the principle of non-refoulement", - "values": [ - "Asylum-seekers - refugees" - ] - }, - { - "text": "Adopt additional measures to eliminate violence against women and children and ensure gender equality in society", - "values": [ - "Rights of the Child", - "Women's rights" - ] - }, - { - "text": "Ratify the Optional Protocol to the Convention against Torture and ensure that all officials strictly observe the detention regulations defined by Malagasy law as well as the Standard Minimum Rules for the Treatment of Prisoners, in accordance with international human rights standards", - "values": [ - "Detention", - "International instruments", - "Torture and other CID treatment" - ] - }, - { - "text": "The aims pursued under the 2013-2017 development strategy include cutting down pretrial detention, improving child welfare services, strengthening penalties for infringing the rights of women, children and minorities, and improving conditions of imprisonment.", - "values": [ - "Detention", - "Minorities", - "Rights of the Child", - "Women's rights" - ] - }, - { - "text": "Continue to take legislative and administrative measures to improve the rights of BATWAS people", - "values": [ - "Indigenous peoples" - ] - }, - { - "text": "Ratify the Council of Europe Convention on Preventing and Combating Violence against Women and Domestic Violence (the Istanbul Convention)", - "values": [ - "International instruments", - "Rights of the Child", - "Women's rights" - ] - }, - { - "text": "Prohibit explicitly corporal punishment at school, at home, as well as in any public establishment attended by children", - "values": [ - "Rights of the Child", - "Torture and other CID treatment" - ] - }, - { - "text": "Adopt legislation protecting women with mental disabilities from forced sterilization", - "values": [ - "Disabilities", - "Torture and other CID treatment", - "Women's rights" - ] - }, - { - "text": "Consider launching awareness-raising campaigns on the empowerment of women in public and political life", - "values": [ - "Women's rights" - ] - }, - { - "text": "Continue its efforts to eradicate poverty and social inequality", - "values": [ - "Poverty" - ] - }, - { - "text": "Raise the minimum age of marriage to eighteen for women", - "values": [ - "Women's rights" - ] - }, - { - "text": "Continue its efforts to further strengthen the foundations of the family and its associated values among society", - "values": [ - "Other" - ] - }, - { - "text": "Earmark additional financial resources to health services and reduce the financial burden faced by vulnerable groups in accessing medical care", - "values": [ - "Right to health" - ] - }, - { - "text": "Accept the jurisdiction of the Committee related to the International Convention for the Protection of All Persons from Enforced Disappearance.", - "values": [ - "Enforced disappearances", - "International instruments" - ] - }, - { - "text": "Develop policy and legislation in the area of protection of the rights of persons with disabilities", - "values": [ - "Disabilities" - ] - }, - { - "text": "Ensure that the procedures governing registration of civil society organizations, including organizations advocating for the Saharawi people's right to self-determination, are in conformity with international standards ", - "values": [ - "Civil society" - ] - }, - { - "text": "Promote the measures and reforms to consolidate the rule of law and national human rights protection mechanisms ", - "values": [ - "Justice" - ] - }, - { - "text": "Take measures to address concerns of reports that certain communities feel targeted, profiled and harassed by Canada's national security legislation and build confidence among such communities ", - "values": [ - "Human rights violations by state agents", - "Minorities", - "Racial discrimination" - ] - }, - { - "text": "Develop and carry out the whole range of measures for the practical implementation of provisions of the Convention on the Rights of the Child and its two Optional Protocols ", - "values": [ - "International instruments", - "Rights of the Child" - ] - }, - { - "text": "Continue stepping up its efforts in tackling discrimination and inequality for all its citizens ", - "values": [ - "Other" - ] - }, - { - "text": "Put in place a comprehensive national human rights action plan, in cooperation with civil society", - "values": [ - "Civil society" - ] - }, - { - "text": "Establish a national commission on human rights to coordinate, provide capacity development and assist with strengthening human rights implementation throughout the country", - "values": [ - "National Human Rights Institution" - ] - }, - { - "text": "Continue the ongoing procedures aimed at creating a national commission of human rights in conformity with the Paris Principles", - "values": [ - "National Human Rights Institution" - ] - }, - { - "text": "Give high priority to reforming discriminatory legislation in order to adopt as soon as possible the draft family code, taking into account the recommendations made by CEDAW.", - "values": [ - "Treaty bodies", - "Women's rights" - ] - }, - { - "text": "Hold accountable security forces who commit human rights violations, including those involving child soldier recruitment and sexual violence", - "values": [ - "Human rights violations by state agents", - "International humanitarian law", - "Rights of the Child", - "Women's rights" - ] - }, - { - "text": "Enhance policies and measures to protect social vulnerable groups, especially women, children and elderly persons", - "values": [ - "Rights of the Child", - "Women's rights" - ] - }, - { - "text": "Enhance the capacity of domestic courts and witness protection mechanisms so as to improve the efficiency in domestic war crimes prosecutions", - "values": [ - "Justice" - ] - }, - { - "text": "Reconsider the legality of prostitution given its impact on the realization of a whole range of rights.", - "values": [ - "Women's rights" - ] - }, - { - "text": "Consider acceding to the ICRMW ", - "values": [ - "International instruments", - "Labour", - "Migrants" - ] - }, - { - "text": "Promptly ratify the Optional Protocol to the Convention on the Rights of the Child on the involvement of children in armed conflict", - "values": [ - "International humanitarian law", - "International instruments", - "Rights of the Child" - ] - }, - { - "text": "Eliminate child marriages and adopt 18 as a minimum age for marriage for both sexes ", - "values": [ - "Rights of the Child" - ] - }, - { - "text": "Take concrete measures to ensure gender equality in political life, including through the establishment of a quota system for Parliament and Ministries", - "values": [ - "Women's rights" - ] - }, - { - "text": "Continue to promote South American and Caribbean integration through the development of technologies of communication and information ", - "values": [ - "Other" - ] - }, - { - "text": "Continue efforts to meet the challenges in the legal and institutional framework ", - "values": [ - "General" - ] - }, - { - "text": "Amend national legislation to align it with international human rights instruments to which Sudan is party", - "values": [ - "International instruments" - ] - }, - { - "text": "Develop a comprehensive national strategy for addressing violence against Aboriginal women in a timely manner and in collaboration with relevant stakeholders such as Aboriginal women's organizations ", - "values": [ - "Indigenous peoples", - "Rights of the Child", - "Women's rights" - ] - }, - { - "text": "Continue its efforts, through the UNFCCC and other forums, to remind the international community, especially developed countries and other major emitting States, of their obligations to protect and promote human rights in Nepal by reducing greenhouse gas emissions to safe levels ", - "values": [ - "Environment" - ] - }, - { - "text": "Step up its investment in education, healthcare, employment in order to promote economic and social sustainable development ", - "values": [ - "Development", - "Right to education", - "Right to health" - ] - }, - { - "text": "Take steps to improve prison conditions, including overcrowding and the lack of social rehabilitation measures", - "values": [ - "Detention" - ] - }, - { - "text": "Strengthen the labour inspectorate", - "values": [ - "Labour" - ] - }, - { - "text": "Increase level of ODA", - "values": [ - "Development" - ] - }, - { - "text": "Ensure a rigorous implementation of its legislation in the main sectors that have an impact on the enjoyment of human rights such as education, health, rights of women and children, environment and access to justice", - "values": [ - "Environment", - "Justice", - "Right to education", - "Right to health", - "Rights of the Child", - "Women's rights" - ] - }, - { - "text": "Consider withdrawing the reservations to articles 14, 20 and 21 of the Convention on the Rights of the Child", - "values": [ - "International instruments", - "Rights of the Child" - ] - }, - { - "text": "Continue its efforts to improve the representation of women in politics and also to ensure the best possible equality in the labour market ", - "values": [ - "Women's rights" - ] - }, - { - "text": "Redouble its efforts to fight against violence against women and adopt a law on sexual and sexist violence and ensure its implementation", - "values": [ - "Women's rights" - ] - }, - { - "text": "Continue to give more attention to boys, girls and women in public policies, especially in the area of education", - "values": [ - "Right to education", - "Rights of the Child", - "Women's rights" - ] - }, - { - "text": "Ratify CRC-OP-SC in order to pay special attention to the protection of children ", - "values": [ - "International instruments", - "Rights of the Child" - ] - }, - { - "text": "Enact comprehensive anti-discrimination legislation and ensure that there are adequate means of redress ", - "values": [ - "Other" - ] - }, - { - "text": "Continue with initiatives to promote women's rights, particularly in connection with equal pay and the disbursement of retirement pensions ", - "values": [ - "Women's rights" - ] - }, - { - "text": "Invite a tripartite ILO mission to monitor the situation during the cotton harvest with regard to its compliance with labour Conventions to which Uzbekistan is party ", - "values": [ - "International instruments", - "Labour" - ] - }, - { - "text": "Argentina will promote the adoption by the Human Rights Council of a declaration on the right to truth and memory.", - "values": [ - "Justice" - ] - }, - { - "text": "Take all necessary measures to accelerate the adoption and implementation of the Marriage Bill (2015) to help end child marriage in Zambia", - "values": [ - "Rights of the Child" - ] - }, - { - "text": "Take measures towards modifying those social, cultural and traditional attitudes that are permissive of violence against women ", - "values": [ - "Women's rights" - ] - }, - { - "text": "Repeal or amend the package of four laws on race and religion - the Religious Conversion bill, the Buddhist Women's Special Marriage bill, the Monogamy bill and the Population Control and Healthcare bill - to ensure respect for the human rights of women and ethnic and religious minority communities, and consistency with international human rights obligations and standards", - "values": [ - "Freedom of religion and belief", - "International instruments", - "Minorities", - "Racial discrimination", - "Women's rights" - ] - }, - { - "text": "Ensure that transnational corporations and other business enterprises operating in or managed from its territory are legally accountable for human rights abuses and violations", - "values": [ - "Business and human rights" - ] - }, - { - "text": "Encouraged sharing with other developing countries its education development, especially in formulating plans to ensure that students, regardless of their location and background, have access to education", - "values": [ - "Right to education" - ] - }, - { - "text": "Continue its efforts to promote the empowerment of women and to combat violence against women, in line with the recommendations of the Verma Committee", - "values": [ - "Women's rights" - ] - }, - { - "text": "Ensure human rights training for State security forces in order to enhance their capacity to protect human rights", - "values": [ - "Human rights education and training" - ] - }, - { - "text": "Ensure the right to equal protection under the law by criminalizing marital rape through the removal of the exception in Section 375 of the Penal Code", - "values": [ - "Rights of the Child", - "Women's rights" - ] - }, - { - "text": "Expedite the process of finalization of the National Action Plan on the Rights of the Child", - "values": [ - "Rights of the Child" - ] - }, - { - "text": "Undertake a comprehensive reform of the judicial system, including the establishment of a credible system of accountability for security force abuses", - "values": [ - "Human rights violations by state agents", - "Justice" - ] - }, - { - "text": "Take measures to ensure policy and institutional coherence with a view to addressing the situation of the Roma minority in a comprehensive manner. ", - "values": [ - "Minorities" - ] - }, - { - "text": "Share the experiences acquired in the area of business and human rights, especially on remediation and reparation, through its constructive and substantive participation in the intergovernmental working group established by resolution 26/9 of the Human Rights Council", - "values": [ - "Business and human rights" - ] - }, - { - "text": "Criminalize female genital mutilation ", - "values": [ - "Rights of the Child", - "Torture and other CID treatment", - "Women's rights" - ] - }, - { - "text": "Consider ratifying the International Convention on the Protection of the Rights of All Migrant Workers and Members of Their Families and hold national consultations in this regard ", - "values": [ - "International instruments", - "Labour", - "Migrants" - ] - }, - { - "text": "Continue consultations towards this end [adoption a National Human Rights Action Plan] with stakeholders", - "values": [ - "Civil society" - ] - }, - { - "text": "Strengthen national capacities to improve cooperation between the different interstate agencies", - "values": [ - "Other" - ] - }, - { - "text": "Further strengthen the National Human Rights Commission and the national commission to combat gender-based violence, and the capacities needed to secure advancement in the human rights field, particularly in the area of women's and children's rights ", - "values": [ - "National Human Rights Institution", - "Rights of the Child", - "Women's rights" - ] - }, - { - "text": "Enact measures to stop violence against women in the framework of the national strategy for gender equality and against domestic violence ", - "values": [ - "Women's rights" - ] - }, - { - "text": "Implement the 2008 recommendation of the Human Rights Committee to repeal section 146 of the Criminal Code, which criminalizes sexual relations between consenting adults of the same sex ", - "values": [ - "Sexual Orientation and Gender Identity", - "Treaty bodies" - ] - }, - { - "text": "Put in place and adequately fund mechanisms for the collection and analysis of disaggregated data on maternal mortality and morbidity and domestic violence in order to better understand prevailing trends and assess the effectiveness of measures in place ", - "values": [ - "Right to health", - "Rights of the Child", - "Women's rights" - ] - }, - { - "text": "Share its best practices and strategies on reduction of maternal mortality rates", - "values": [ - "Right to health", - "Women's rights" - ] - }, - { - "text": "Prohibit female genital mutilation.", - "values": [ - "Rights of the Child", - "Torture and other CID treatment", - "Women's rights" - ] - }, - { - "text": "Introduce a de jure moratorium on the execution of the death penalty, for as long as that penalty is not abolished", - "values": [ - "Death penalty" - ] - }, - { - "text": "Continue to undertake actions whose objective is to reduce discriminatory behaviour against women", - "values": [ - "Women's rights" - ] - }, - { - "text": "Carry out specific legislative reform to strengthen measures against discrimination on the basis of gender and ethnicity", - "values": [ - "Racial discrimination", - "Sexual Orientation and Gender Identity" - ] - }, - { - "text": "Adopt effective measures to ensure freedom of expression and the protection of journalists, as well as of opposition and critics of the Government", - "values": [ - "Freedom of opinion and expression", - "Freedom of the press" - ] - }, - { - "text": "Strengthen migration policies, based on the respect of the human rights of all migrants ", - "values": [ - "Migrants" - ] - }, - { - "text": "Continue its intense efforts to undertake all necessary measures to ensure fair and equal treatment of all persons, without regard to sex, race, religion, colour, creed, sexual orientation, gender identity or disability, and encourage further steps in this regard ", - "values": [ - "Other" - ] - }, - { - "text": "Take concrete steps to strengthen the protection of victims of domestic violence, ensuring that complaints of domestic violence are properly registered and investigated by the police, and that perpetrators are prosecuted and convicted ", - "values": [ - "Rights of the Child", - "Women's rights" - ] - }, - { - "text": "Continue preserving social harmony, as a diverse cultural and linguistic nation, to build a fair and inclusive society", - "values": [ - "General" - ] - }, - { - "text": "Continue its efforts in strengthening policies and measures to promote and protect the human rights of its people, in particular those of vulnerable groups such as women, children, poor people, and migrants", - "values": [ - "Migrants", - "Poverty", - "Rights of the Child", - "Women's rights" - ] - }, - { - "text": "Decriminalize consensual same-sex conduct, starting with the repeal of laws governing unnatural offences and indecent practices, and investigate and prosecute cases of discrimination, intimidation and attacks on lesbian, gay, bisexual, transgender and intersex persons and organizations", - "values": [ - "Sexual Orientation and Gender Identity" - ] - }, - { - "text": "The Government will engage with civil society organizations and representatives in connection with the implementation of the National Plan of Action for the Promotion and Protection of Human Rights (NHRAP - 2012 to 2016)", - "values": [ - "Civil society" - ] - }, - { - "text": "Continue its efforts to strengthen the rule of law by preventing human rights violations and impunity by law enforcing agencies ", - "values": [ - "Human rights violations by state agents", - "Impunity", - "Justice" - ] - }, - { - "text": "Redouble its efforts to combat public manifestation of hate speech and intolerance", - "values": [ - "Racial discrimination" - ] - }, - { - "text": "Continue strengthening its successful social programmes in the fight against poverty", - "values": [ - "Poverty" - ] - }, - { - "text": "Strengthen efforts to protect the rights of migrants by combating racial stereotypes and discriminatory attitudes, including through awareness-raising campaigns and by enforcing legislation against racial discrimination in all areas of public life ", - "values": [ - "Human rights education and training", - "Racial discrimination" - ] - }, - { - "text": "Step up efforts to protect freedom of religion and promote inter- religious dialogue as a tool to foster tolerance and peaceful-coexistence", - "values": [ - "Freedom of religion and belief" - ] - }, - { - "text": "Promote the establishment of pluralistic, free and independent media and ensure the protection of and respect for the independence of the press and freedom of opinion and expression of journalists", - "values": [ - "Freedom of the press" - ] - }, - { - "text": "Take all necessary measures to address the backlog in the submission of reports to treaty bodies", - "values": [ - "Treaty bodies" - ] - }, - { - "text": "With a view to integrating and expanding existing human rights databases to ensure continuous monitoring and transparency of government actions, Brazil undertook and maintains before the UN Human Rights Council, the voluntary commitment to implement a National System of Human Rights Indicators in coordination with public agencies, international organizations, and civil society. ", - "values": [ - "Civil society" - ] - }, - { - "text": "Ratify ICRMW, taking into account national consultations held in this connection ", - "values": [ - "International instruments", - "Labour", - "Migrants" - ] - }, - { - "text": "Continue to take measures to allow the improvement of the education system and universal access to a quality education ", - "values": [ - "Right to education" - ] - }, - { - "text": "Further incorporate all the ratified international legal instruments into domestic law", - "values": [ - "General" - ] - }, - { - "text": "Adopt legislation to explicitly prohibit all forms of corporal punishment everywhere, launch awareness-raising campaigns on the negative impact of corporal punishment in children, and provide training to teachers, parents, community leaders and penitentiary institutions officers ", - "values": [ - "Human rights education and training", - "Rights of the Child", - "Torture and other CID treatment" - ] - }, - { - "text": "Enact legislation that declares illegal and prohibits any organisation which promotes or incites racism and racial discrimination", - "values": [ - "Freedom of religion and belief", - "Racial discrimination" - ] - }, - { - "text": "Ensure that birth registration is free and compulsory in practice and guarantee that children without a birth certificate are not deprived of access to education, health care and other social services, in line with the recommendation of the Committee on the Rights of the Child", - "values": [ - "Right to education", - "Right to health", - "Rights of the Child", - "Statelessness and the right to nationality", - "Treaty bodies" - ] - }, - { - "text": "Intensify its engagement with the international community to exchange best practices and cooperation on law enforcement supervision and training with a view to contributing to its judicial reform processes on the basis of equality and mutual respect", - "values": [ - "Justice" - ] - }, - { - "text": "Take effective measures to eradicate discrimination against women and expediently ensure the equal treatment of women in law and practice, in accordance with its international obligations under CEDAW ", - "values": [ - "International instruments", - "Women's rights" - ] - }, - { - "text": "Accede to the ILO Domestic Workers Convention, 2011 (No. 189)", - "values": [ - "International instruments", - "Labour" - ] - }, - { - "text": "Evaluate the possibility to incorporate the principle of non- refoulement into the refugees law", - "values": [ - "Asylum-seekers - refugees" - ] - }, - { - "text": "Ensure access and right to education, especially among children and youth and to provide free and compulsory primary education for all children", - "values": [ - "Right to education", - "Rights of the Child" - ] - }, - { - "text": "Take concrete measures to curb incitement to hatred, violence and discrimination through the enactment of legislation, as well as policies and programmes that promote tolerance and intercultural, interracial and interreligious understanding", - "values": [ - "Freedom of religion and belief", - "Racial discrimination" - ] - }, - { - "text": "Expeditiously enact a new NGO law in line with the new Constitution which will grant legal personality to NGOs upon notification", - "values": [ - "Civil society", - "Freedom of association and peaceful assembly" - ] - }, - { - "text": "Reinforce measures to ensure that women are no longer subjected to forced marriage. This could be supported by developing and implementing comprehensive educational measures on the provisions of the Persons and Family Code and on other relevant laws.", - "values": [ - "Rights of the Child", - "Women's rights" - ] - }, - { - "text": "Complete the harmonization of domestic legislation with the provisions of the Rome Statute, and consider the possibility of ratifying the Optional Protocol to the Convention against Torture and Other Cruel, Inhuman or Degrading Treatment of Punishment", - "values": [ - "Detention", - "International instruments", - "Justice", - "Torture and other CID treatment" - ] - }, - { - "text": "Urgent implementation of measures to improve the reporting rate of gender based violence, where the NGO Gender links estimates only 1 in 24 incidents were currently reported, and to increase the prosecution of perpetrators ", - "values": [ - "Civil society", - "Women's rights" - ] - }, - { - "text": "Accede to the International Covenant on Civil and Political Rights", - "values": [ - "CP rights - general", - "International instruments" - ] - }, - { - "text": "Take further efforts in advancing the protection of the rights of the child at national and subnational levels", - "values": [ - "Rights of the Child" - ] - }, - { - "text": "Present the initial report on the implementation of the International Covenant on Economic, Social and Cultural Rights, as a matter of priority", - "values": [ - "ESC rights - general", - "International instruments" - ] - }, - { - "text": "Ratify the International Convention on the Protection of the Rights of All Migrant Workers and Members of Their Families as a fundamental step towards the protection of human rights ", - "values": [ - "International instruments", - "Labour", - "Migrants" - ] - }, - { - "text": "Continue efforts at protecting all members of society from discrimination, harassment and violence, regardless of their sexual orientation", - "values": [ - "Sexual Orientation and Gender Identity" - ] - }, - { - "text": "Continue to consolidate the national development plan on the eradication of poverty", - "values": [ - "Poverty" - ] - }, - { - "text": "Prohibit specifically and by law all corporal punishment of children at home, care institutions, penitentiary centres and any other settings, in conformity with article 19 of CRC", - "values": [ - "Detention", - "International instruments", - "Rights of the Child", - "Torture and other CID treatment" - ] - }, - { - "text": "Implement Law 6-2006 to ensure that all allegations of torture are properly investigated and those responsible are held accountable ", - "values": [ - "Torture and other CID treatment" - ] - }, - { - "text": "Amend the 2007 law on the rights of the child for a uniform and increased minimum age for work, and ensure, through dissuasive or repressive measures, notably within the framework of a law on human trafficking, that arduous work similar to the worst forms of exploitation is not given to this vulnerable category of people ", - "values": [ - "Labour", - "Rights of the Child", - "Trafficking" - ] - }, - { - "text": "Decriminalize same-sex relations and review national legislation with a view to promoting equality and preventing discrimination of any kind", - "values": [ - "Sexual Orientation and Gender Identity" - ] - }, - { - "text": "Adopt and ratify the Optional Protocol to the Convention on the Rights of the Child on the involvement of children in armed conflict", - "values": [ - "International humanitarian law", - "International instruments", - "Rights of the Child" - ] - }, - { - "text": "Monitor the environmental impact of the oil industry on human rights of people in the Niger Delta, taking in the relevant and suitable measures", - "values": [ - "Business and human rights", - "Environment" - ] - }, - { - "text": "Continue its efforts to promote the rights of the child and work towards the elimination of the use of corporal punishment in school", - "values": [ - "Rights of the Child", - "Torture and other CID treatment" - ] - }, - { - "text": "Increase resources and capacity towards full implementation of measures taken to fight corruption in the public and private sectors", - "values": [ - "Corruption" - ] - }, - { - "text": "Increase its efforts to fight impunity for war crimes, in particular sexual violence, by, inter alia, including a definition of sexual violence in the criminal code", - "values": [ - "Impunity", - "Rights of the Child", - "Women's rights" - ] - }, - { - "text": "Increase education institutions and health services in rural areas, and seek international cooperation to this end ", - "values": [ - "Right to education", - "Right to health", - "Technical assistance and cooperation" - ] - }, - { - "text": "Withdraw its reservation to the International Covenant on Civil and Political Rights", - "values": [ - "CP rights - general", - "International instruments" - ] - }, - { - "text": "Amend its Criminal Code to cover various forms of sexual violence, including marital rape and domestic violence, and enforce all legislation concerning women and girls", - "values": [ - "Rights of the Child", - "Women's rights" - ] - }, - { - "text": "Implement policies and plans aimed at improving maternal and child health, and ensure equitable access to health services to effectively address maternal and infant mortality", - "values": [ - "Right to health", - "Rights of the Child", - "Women's rights" - ] - }, - { - "text": "Ensure that transitional justice mechanisms and reparations programmes fully integrate gender concerns and that justice for gender-based crimes during the conflict is realized.", - "values": [ - "Justice", - "Women's rights" - ] - }, - { - "text": "Start developing a National Action Plan on Human Rights as well as a National Action Plan against Racism, Racial Discrimination, Xenophobia and other related intolerances ", - "values": [ - "Racial discrimination" - ] - }, - { - "text": "Establish a moratorium on the death penalty as a first step towards complete abolition ", - "values": [ - "Death penalty" - ] - }, - { - "text": "Strengthen the comprehensive development of the judicial system concerning the juvenile courts", - "values": [ - "Justice", - "Rights of the Child" - ] - }, - { - "text": "Step up efforts to accelerate the ratification of, among others, the Rome Statute of the International Criminal Court ", - "values": [ - "International instruments", - "Justice" - ] - }, - { - "text": "Effectively implement the anti-trafficking law and provide resources and training for government officials", - "values": [ - "Human rights education and training", - "Trafficking" - ] - }, - { - "text": "Continue its efforts to combat impunity for the serious violations of human rights that had been committed", - "values": [ - "Impunity" - ] - }, - { - "text": "Engage in a dialogue to repeal laws which criminalize consensual adult same sex relations", - "values": [ - "Sexual Orientation and Gender Identity" - ] - }, - { - "text": "Continue its efforts to protect child rights, in particular in its attempt to completely eradicate child labour", - "values": [ - "Labour", - "Rights of the Child" - ] - }, - { - "text": "Ensure security and protection of all journalists and media institutions, and that legislation complies with international standards on free speech", - "values": [ - "Freedom of opinion and expression", - "Freedom of the press" - ] - }, - { - "text": "Continue to enhance its efforts to disseminate a culture of human rights at all levels, in particular in the educational institutions ", - "values": [ - "Human rights education and training" - ] - }, - { - "text": "Seek technical and financial assistance from the international community to implement the recommendations from the periodic review ", - "values": [ - "Technical assistance and cooperation", - "UPR process" - ] - }, - { - "text": "Abandon the plan to reintroduce the death penalty, which would be against the international commitments of the country", - "values": [ - "Death penalty" - ] - }, - { - "text": "Implement the Optional Protocol to the Convention on the Rights of the Child on the sale of children, child prostitution and child pornography, and to incorporate it into the criminal justice system", - "values": [ - "International instruments", - "Rights of the Child", - "Trafficking" - ] - }, - { - "text": "Engage in technical cooperation with the international human rights mechanisms with a view to the revival of the Government institutions in Somalia ", - "values": [ - "Technical assistance and cooperation" - ] - }, - { - "text": "Reform the penitentiary system with the aim of ensuring humane conditions for detained persons in line with international standards ", - "values": [ - "Detention" - ] - }, - { - "text": "Accelerate the ratification of CRPD.", - "values": [ - "Disabilities", - "International instruments" - ] - }, - { - "text": "Continue the national programme for the modernization of the judicial system ", - "values": [ - "Justice" - ] - }, - { - "text": "Continue to implement measures within the framework of the presidential decree that set the framework for addressing the situation of unaccompanied minors ", - "values": [ - "Rights of the Child" - ] - }, - { - "text": "Eradicate stereotypes and widespread abuse of Roma ", - "values": [ - "Minorities", - "Racial discrimination" - ] - }, - { - "text": "Intensify efforts to prevent trafficking in human beings, including cross-border trafficking in women for sexual and other exploitative purposes, and increase the number of prosecutions in this respect ", - "values": [ - "Trafficking", - "Women's rights" - ] - }, - { - "text": "Introduce amendments to the code on the penitentiaries to guarantee that the families of condemned persons have the opportunity to say goodbye and bury the corpses in accordance with international standards", - "values": [ - "Detention" - ] - }, - { - "text": "Encouraged to accede to the remaining core human rights instruments to which it is yet to become a party, especially CED ", - "values": [ - "Enforced disappearances", - "International instruments" - ] - }, - { - "text": "Redouble its efforts in establishing a national human rights institution in accordance with the Paris Principles ", - "values": [ - "National Human Rights Institution" - ] - }, - { - "text": "Review the practices concerning the removal of children from their families by the Child Welfare Service, in the light of the best interest of the child and take necessary measures to maintain the special bond of the child with his/her cultural, ethnic and religious identity, after removal from the family", - "values": [ - "Rights of the Child" - ] - }, - { - "text": "Take steps to fully implement the 2007 Domestic Violence Act, inter alia by ensuring that effective and prompt investigations are carried out for any allegations of domestic violence and female genital mutilation, and that those responsible are brought to justice", - "values": [ - "Rights of the Child", - "Torture and other CID treatment", - "Women's rights" - ] - }, - { - "text": "Ensure continued emphasis on children's rights and welfare in Bulgaria's budget policy and consider increasing budget allocations for the implementation of the CRC, including in the areas of health, education and family support", - "values": [ - "International instruments", - "Rights of the Child" - ] - }, - { - "text": "Take appropriate measures to ensure the effective enjoyment of the right to freedom of expression, peaceful assembly and association, particularly in the case of national, ethnic and religious minorities ", - "values": [ - "Freedom of association and peaceful assembly", - "Freedom of opinion and expression", - "Freedom of religion and belief", - "Minorities" - ] - }, - { - "text": "Take steps to implement treaty body recommendations", - "values": [ - "Treaty bodies" - ] - }, - { - "text": "Continue intensifying the measures to reduce early pregnancy, strengthening training on sexual and reproductive rights", - "values": [ - "Detention", - "Enforced disappearances", - "International instruments", - "Torture and other CID treatment" - ] - }, - { - "text": "Take steps in order to enhance and promote gender equality in all walks of life", - "values": [ - "Women's rights" - ] - }, - { - "text": "Ratify the Protocol to Prevent, Suppress and Punish Trafficking in Persons, Especially Women and Children, supplementing the United Nations Convention against Transnational Organized Crime Palermo Protocol", - "values": [ - "International instruments", - "Trafficking" - ] - }, - { - "text": "Ensure that independent, transparent, appropriate and effective investigations are carried out regarding the allegations and reports of human rights violations since June 2009 and, depending on the results thereof, bring to justice the perpetrators of those acts in processes that could be defined as fair trials according to international standards", - "values": [ - "Justice" - ] - }, - { - "text": "Adopt effective measures to combat the culture of violence and impunity and to establish an independent and adequately resourced national preventive mechanism according to OP-CAT requirements ", - "values": [ - "Detention", - "Impunity", - "International instruments", - "Torture and other CID treatment" - ] - }, - { - "text": "Continue to spread human rights awareness throughout the country and include it in the national curriculum ", - "values": [ - "Human rights education and training" - ] - }, - { - "text": "Continue taking the necessary measures to promote the rights of children and women ", - "values": [ - "Rights of the Child", - "Women's rights" - ] - }, - { - "text": "Step up efforts to ensure human rights education and training for all ", - "values": [ - "Human rights education and training" - ] - }, - { - "text": "Take additional measures to address all forms of violence against women and girls, including women and girls with disabilities", - "values": [ - "Disabilities", - "Rights of the Child", - "Women's rights" - ] - }, - { - "text": "Take all appropriate measures to end discrimination and harassment against persons belonging to ethnic and religious minorities", - "values": [ - "Freedom of religion and belief", - "Minorities", - "Racial discrimination" - ] - }, - { - "text": "Implement the recommendations of the Committee on the Rights of the Child", - "values": [ - "Rights of the Child", - "Treaty bodies" - ] - }, - { - "text": "Refrain from preventing or hindering the restoration of Islamic holy shrines by the Waqf.", - "values": [ - "Freedom of religion and belief" - ] - }, - { - "text": "Take full and effective advantage of technical assistance provided by the international community in the field of training and capacity building of national institutions for the promotion and protection of human rights", - "values": [ - "Technical assistance and cooperation" - ] - }, - { - "text": "Refrain from imposing the death penalty, corporal punishment and life imprisonment for crimes committed by persons under the age of 18", - "values": [ - "Death penalty", - "Rights of the Child", - "Torture and other CID treatment" - ] - }, - { - "text": "Consider becoming a member of the International Labour Organization ILO and ratifying ILO Convention 138 on minimum age and ILO Convention 182 on the worst forms of child labour ", - "values": [ - "International instruments", - "Labour", - "Rights of the Child" - ] - }, - { - "text": "Move towards swift implementation of its National Gender Policy as a positive step towards the goal of eliminating gender-based violence", - "values": [ - "Women's rights" - ] - }, - { - "text": "Ratify the Optional Protocol to CAT", - "values": [ - "Detention", - "Torture and other CID treatment" - ] - }, - { - "text": "Take all measures necessary to fully implement the CRC ", - "values": [ - "International instruments", - "Rights of the Child" - ] - }, - { - "text": "Abolish the death penalty and modify the penitentiary regulations to strictly limit solitary confinement", - "values": [ - "Detention" - ] - }, - { - "text": "Continue to mitigate and address issues concerning the worst forms of child labour and provide appropriate rehabilitation for the victims", - "values": [ - "Labour", - "Rights of the Child" - ] - }, - { - "text": "Continue efforts to fight all forms of discrimination against foreigners and to combat hate speech in the media by intensifying awareness campaigns and spreading a culture of dialogue and acceptance of the other", - "values": [ - "Human rights education and training", - "Racial discrimination" - ] - }, - { - "text": "Undertake all necessary measures to guarantee the freedom of religion of all religious orientations, in particular the Copts, including the right to practice religion in public", - "values": [ - "Freedom of religion and belief" - ] - }, - { - "text": "Abide by its commitments made through the ratification of international instruments ", - "values": [ - "International instruments" - ] - }, - { - "text": "Establish a national commission on human rights", - "values": [ - "National Human Rights Institution" - ] - }, - { - "text": "Establish a comprehensive framework on juvenile justice which is in conformity with international standards", - "values": [ - "Justice", - "Rights of the Child" - ] - }, - { - "text": "Ratify the Optional Protocols to the Convention on the Elimination of All Forms of Discrimination against Women and the Convention against Torture", - "values": [ - "Detention", - "International instruments", - "Torture and other CID treatment", - "Women's rights" - ] - }, - { - "text": "Decriminalize consensual same-sex sexual relations, de-legalize discrimination against lesbian, gay, bisexual and transgender persons and discourage harassment and violence against them", - "values": [ - "Sexual Orientation and Gender Identity" - ] - }, - { - "text": "Allow the National Human Rights Commission to function in an independent manner in full compliance with the Paris Principles", - "values": [ - "National Human Rights Institution" - ] - }, - { - "text": "Undertake a comprehensive study on the feasibility and relevance of establishing a national human rights institution in conformity with the Paris Principles ", - "values": [ - "National Human Rights Institution" - ] - }, - { - "text": "Continue expanding the legal framework for the promotion and protection of human rights through the ratification of the Convention against Torture and Other Cruel, Inhuman or Degrading Treatment or Punishment and the International Convention for the Protection of All Persons from Enforced Disappearance as well as to consider taking steps towards the abolishment of death penalty", - "values": [ - "Death penalty", - "Enforced disappearances", - "International instruments", - "Torture and other CID treatment" - ] - }, - { - "text": "Step up efforts to facilitate the participation of women in political and public affairs and to combat stereotypes regarding the role of women", - "values": [ - "Women's rights" - ] - }, - { - "text": "Include full implementation of freedom of opinion, freedom of assembly and association among the priorities of the national programme of action in the field of human rights, that Uzbekistan intends to elaborate ", - "values": [ - "Freedom of association and peaceful assembly", - "Freedom of opinion and expression" - ] - }, - { - "text": "Apply the definition of a child as a person under 18 also in the Palestinian territories, in line with article 1 of the Convention on the Rights of the Child.", - "values": [ - "International instruments", - "Rights of the Child" - ] - }, - { - "text": "Allocate adequate personnel and financial resources so that the Strategy for the Protection from Domestic Violence and the Law on Juvenile Justice System can properly ensure the protection of the rights of child and women, filling those gaps that still hinder the prevention of domestic violence and other abuses, as well as the fair prosecution of their perpetrators", - "values": [ - "Justice", - "Rights of the Child", - "Women's rights" - ] - }, - { - "text": "Consider extending a standing invitation to the special procedures mandate holders", - "values": [ - "Special procedures" - ] - }, - { - "text": "Continue its steps to further promote and protect the rights of the child, including addressing child abuse and sexual exploitation of children", - "values": [ - "Rights of the Child" - ] - }, - { - "text": "Further promote good governance ", - "values": [ - "Justice" - ] - }, - { - "text": "Act on its commitment to set up a national agency to combat sexual violence and ensure access to justice and compensation for victims of sexual violence. ", - "values": [ - "Rights of the Child", - "Women's rights" - ] - }, - { - "text": "Immediately and unconditionally release all political prisoners and allow ICRC unrestricted access to the remaining prisoners ", - "values": [ - "Detention", - "Freedom of opinion and expression" - ] - }, - { - "text": "Strengthen the protection of hospitals and school infrastructure in conflict zones", - "values": [ - "International humanitarian law" - ] - }, - { - "text": "Ratify the International Convention for the Protection of All Persons from Enforced Disappearance and adapt its national legislation to international standards in this regard", - "values": [ - "Enforced disappearances", - "International instruments" - ] - }, - { - "text": "Maintain the moratorium on executions with a view to abolishing the death penalty", - "values": [ - "Death penalty" - ] - }, - { - "text": "Continue the efforts to end poverty", - "values": [ - "Poverty" - ] - }, - { - "text": "Strengthen the capacities and competencies of educational institutions in terms of providing services and rehabilitation to them, especially primary schools ", - "values": [ - "Right to education" - ] - }, - { - "text": "Address extant indigenous land claims, and ensure an end to discrimination against rural and indigenous communities", - "values": [ - "Freedom of opinion and expression", - "Indigenous peoples", - "Right to land" - ] - }, - { - "text": "Guarantee that the decree of necessity and urgency that limits the procedural guarantees in deportation proceedings does not restrict the human rights of migrant population", - "values": [ - "Migrants" - ] - }, - { - "text": "Eliminate the pay gap between men and women", - "values": [ - "Women's rights" - ] - }, - { - "text": "Adopt further measures to ensure that any act of threat or reprisal against human rights defenders is effectively investigated, prosecuted and punished", - "values": [ - "Human rights defenders" - ] - }, - { - "text": "Act to combat the trafficking in persons, especially women and children ", - "values": [ - "Rights of the Child", - "Trafficking", - "Women's rights" - ] - }, - { - "text": "Implement meaningful electoral reform to ensure the transparency and independence of the Electoral Commission and its adherence to democratic principles, and prevent the misuse of State resources for campaign financing", - "values": [ - "Elections" - ] - }, - { - "text": "Ratify the Optional Protocol to the Convention on the Elimination of All Forms of Discrimination against Women to better fight against discrimination against women and to ensure greater protection of such group", - "values": [ - "International instruments", - "Women's rights" - ] - }, - { - "text": "Provide a framework for prohibiting use of child labour by the Finnish companies engaged with businesses abroad and multinational companies headquartered in Finland ", - "values": [ - "Business and human rights", - "Labour", - "Rights of the Child" - ] - }, - { - "text": "Ratify the Migrant Workers Convention with a view to better harmonizing national legislation with international norms ", - "values": [ - "International instruments", - "Labour", - "Migrants" - ] - }, - { - "text": "Raise awareness of anti-discriminations laws, including the Anti-Discrimination Act and relevant complaint mechanisms, among law enforcement and judicial officials with a view to improving protection of victims", - "values": [ - "Human rights education and training" - ] - }, - { - "text": "Consider ratifying OP-CAT, as well", - "values": [ - "Detention", - "International instruments", - "Torture and other CID treatment" - ] - }, - { - "text": "Set up its efforts for the effective implementation of those mechanisms allowing for the application of the Domestic Violence Prevention and Protection Act", - "values": [ - "Rights of the Child", - "Women's rights" - ] - }, - { - "text": "Ensure that the rights of children with disabilities are respected, and take into account, inter alia, the recommendations of the Committee on the Rights of the Child ", - "values": [ - "Disabilities", - "Rights of the Child", - "Treaty bodies" - ] - }, - { - "text": "Strengthen measures to combat and prevent torture and other cruel and degrading treatments", - "values": [ - "Torture and other CID treatment" - ] - }, - { - "text": "Consider ratification of the Convention on the Prevention and Punishment of the Crime of Genocide ", - "values": [ - "International instruments", - "Justice" - ] - }, - { - "text": "Ramp up efforts to address the challenges faced by persons with disabilities, particularly children", - "values": [ - "Disabilities", - "Rights of the Child" - ] - }, - { - "text": "Ensure that all reported human rights violations are investigated and that those responsible for such violations, including police officials and personnel within the security forces, are prosecuted and punished.", - "values": [ - "Human rights violations by state agents" - ] - }, - { - "text": "Ensure prior consultations with indigenous communities in accordance with ILO Convention No.169", - "values": [ - "Indigenous peoples", - "International instruments" - ] - }, - { - "text": "Take measures to prevent domestic violence, ensure equal rights and equal political participation of women, and take all the necessary steps to effectively implement the Act on the Prohibition of Female Genital Mutilation adopted in 2010", - "values": [ - "Rights of the Child", - "Torture and other CID treatment", - "Women's rights" - ] - }, - { - "text": "Continue allocating adequate funding for education to increase the number of schools and teachers, improve the quality of teaching and school infrastructure and ensure equal access of girls to all levels of education ", - "values": [ - "Right to education" - ] - }, - { - "text": "Continue taking measures to ensure access to basic services such as water, housing and health for the population in vulnerable situation ", - "values": [ - "Right to health", - "Right to housing", - "Right to water and sanitation" - ] - }, - { - "text": "Continue with its public policies contained in the report, in the area of the right to health, including drafting policies which would allow for full access to health care services by persons with disabilities", - "values": [ - "Disabilities", - "Right to health" - ] - }, - { - "text": "Continue to implement its national policies and programmes regarding poverty reduction, with coordinated and robust international cooperation and assistance", - "values": [ - "Poverty", - "Technical assistance and cooperation" - ] - }, - { - "text": "Embark on a policy to combat domestic violence against women, in particular by ensuring the protection of victims and enabling their access to justice ", - "values": [ - "Women's rights" - ] - }, - { - "text": "Increase cooperation with the Turkish Cypriot community with the aim of further promoting the rights of all individuals in Cyprus ", - "values": [ - "Other" - ] - }, - { - "text": "Ensure the safety of journalists against violence and harassment", - "values": [ - "Freedom of the press" - ] - }, - { - "text": "Carry out prompt, thorough and impartial investigations into cases of arbitrary arrest and detention and ensure that all police officers found responsible for human rights violations are subjected to disciplinary and criminal proceedings as appropriate, in line with accepted recommendations", - "values": [ - "Detention", - "Human rights violations by state agents" - ] - }, - { - "text": "Intensify its efforts to ensure the full and unhindered exercise of the freedom of expression, particularly in the context of freedom of the press and the media", - "values": [ - "Freedom of opinion and expression", - "Freedom of the press" - ] - }, - { - "text": "Strengthen the independence, effectiveness and resources of the Truth for Reconciliation Commission", - "values": [ - "Justice" - ] - }, - { - "text": "Fully implement the rulings of the Inter-American Court on Human Rights regarding indigenous land claims by the Yakye Axa and Sawhoyamaxa indigenous communities quickly and effectively", - "values": [ - "Indigenous peoples" - ] - }, - { - "text": "Ensure that the right to participation of all persons promoting and protecting human rights is guaranteed ", - "values": [ - "Human rights defenders" - ] - }, - { - "text": "Continue the efforts for the equal guarantee of the right to free medical assistance for children, with special attention to those from disadvantaged environments", - "values": [ - "Right to health", - "Rights of the Child" - ] - }, - { - "text": "Redouble its efforts to meet Millennium Development Goal 1 to eradicate extreme hunger and poverty ", - "values": [ - "Poverty", - "Right to food" - ] - }, - { - "text": "Consider acceding to the Optional Protocol to International Covenant on Civil and Political Rights", - "values": [ - "CP rights - general", - "International instruments" - ] - }, - { - "text": "Continue efforts to combat discrimination and intolerance, in particular with regard to migrant workers", - "values": [ - "Labour", - "Migrants", - "Racial discrimination" - ] - }, - { - "text": "Act firmly to eliminate all forms of human rights violations committed by members of the police force, including harassment and excessive use of violence. ", - "values": [ - "Human rights violations by state agents" - ] - }, - { - "text": "Continue efforts of outreach to women and girls on opportunities in traditionally male occupations and trades", - "values": [ - "Rights of the Child", - "Women's rights" - ] - }, - { - "text": "Intensify investigations of trafficking crimes in high tourism sectors and other areas with prostitution, aggressively prosecute traffickers", - "values": [ - "Trafficking" - ] - }, - { - "text": "Intensify the process of translating its commitments into progress on democratization, the broadening of political space and the protection of human rights defenders", - "values": [ - "Human rights defenders" - ] - }, - { - "text": "Thailand will amend its laws to be more in alignment with international human rights instruments, which includes ensuring that criminal laws are aligned with the Convention against Torture and the Convention for the Protection of All Persons from Enforced Disappearance and improving the laws to better protect women and children", - "values": [ - "Enforced disappearances", - "International instruments", - "Rights of the Child", - "Torture and other CID treatment", - "Women's rights" - ] - }, - { - "text": "Strengthen the regulatory and institutional framework to ensure implementation of the Zero Tolerance Policy on Torture, as well as enhancing capacity-building on the prevention of torture", - "values": [ - "Torture and other CID treatment" - ] - }, - { - "text": "Pursue and strengthen current efforts to address allegations and reports of discriminatory treatment of migrant workers, especially those related to female domestic workers.", - "values": [ - "Labour", - "Migrants", - "Women's rights" - ] - }, - { - "text": "Enact legislation providing for the status determination and protection of asylum seekers, refugees and stateless persons and revise national immigration laws and procedures to distinguish such persons from those termed irregular migrants", - "values": [ - "Asylum-seekers - refugees", - "Statelessness and the right to nationality" - ] - }, - { - "text": "Respect the de facto moratorium on the death penalty which had been in place since 2004 ", - "values": [ - "Death penalty" - ] - }, - { - "text": "Raise the minimum age of criminal responsibility currently fixed at 12 years, in compliance with its international obligations ", - "values": [ - "Justice", - "Rights of the Child" - ] - }, - { - "text": "Take immediate steps, including if necessary by requesting appropriate technical assistance to establish an independent national human rights institution in accordance with the Paris Principles", - "values": [ - "National Human Rights Institution", - "Technical assistance and cooperation" - ] - }, - { - "text": "Make a long-term plan for the step-by-step ratification of or accession to all core international human rights instruments ", - "values": [ - "International instruments" - ] - }, - { - "text": "Expand and share with other countries the experiences in research on vaccines for diseases affecting the world population, especially in developing countries ", - "values": [ - "Right to health" - ] - }, - { - "text": "Continue its efforts to bridge the gaps in the field of education, in remote areas", - "values": [ - "Right to education" - ] - }, - { - "text": "Adopt a specific law to combat violence and discrimination against women which includes the prohibition of forced marriage as well as marital rape ", - "values": [ - "Rights of the Child", - "Women's rights" - ] - }, - { - "text": "Take adequate measures to prevent trafficking in women and children and to strengthen the protection of victims of human trafficking", - "values": [ - "Rights of the Child", - "Trafficking", - "Women's rights" - ] - }, - { - "text": "Cooperate actively with the international community and international financial institutions in the implementation framework for development cooperation programmes, in order to fully implement the protection and promotion of human rights ", - "values": [ - "Development", - "Other" - ] - }, - { - "text": "Continue to efforts to reduce poverty through adopting a national strategy to eliminate poverty", - "values": [ - "Poverty" - ] - }, - { - "text": "Continue to consider signing and ratifying the Optional Protocol to the Convention against Torture, acceding to the Convention for the Protection of All Persons from Enforced Disappearance, and signing the Rome Statute of the International Criminal Court and to implement it by national law", - "values": [ - "Detention", - "Enforced disappearances", - "International instruments", - "Justice", - "Torture and other CID treatment" - ] - }, - { - "text": "Strengthen the human rights framework to ensure religious freedoms", - "values": [ - "Freedom of religion and belief" - ] - }, - { - "text": "Develop a national strategy to implement obligations under the Convention on the Elimination of All Forms of Discrimination against Women", - "values": [ - "International instruments", - "Women's rights" - ] - }, - { - "text": "Introduce comprehensive and continuous public education, awareness-raising and social mobilization programmes on the harmful effects of corporal punishment", - "values": [ - "Human rights education and training", - "Rights of the Child", - "Torture and other CID treatment" - ] - }, - { - "text": "Ratify CRC-OP-SC which has already been signed by Jamaica ", - "values": [ - "International instruments", - "Rights of the Child" - ] - }, - { - "text": "Health - We are committed to eliminating health disparities and promoting health, and we actively enforce federal civil rights laws to help ensure that all people have equal access to health care and social service programs. In 2011, the Department of Health and Human Services launched the United States' first plan to specifically address persistent racial and ethnic health disparities. By law, all persons in the United States, including persons without valid immigration status, are entitled to emergency health services.", - "values": [ - "Right to health" - ] - }, - { - "text": "Strengthen human rights training of public sector employees ", - "values": [ - "Human rights education and training" - ] - }, - { - "text": "Continue its efforts to eliminate all traditional and modern forms of slavery, including forced child labour", - "values": [ - "Labour", - "Rights of the Child" - ] - }, - { - "text": "Reform the Penal Code with a provision encompassing the definition and criminalization of all forms of sexual violence, including rape", - "values": [ - "Women's rights" - ] - }, - { - "text": "Take concrete measures to end violence against women by implementing the National Action Plan to end sexual violence and by investigating and prosecuting alleged violations, including when perpetrated by military and security personnel, in accordance with international law", - "values": [ - "Human rights violations by state agents", - "International humanitarian law", - "Women's rights" - ] - }, - { - "text": "Strengthen its labour laws, and improve living and working conditions of foreign workers \n", - "values": [ - "Labour" - ] - }, - { - "text": "Adopt a specific law to prevent and combat the sexual exploitation of children ", - "values": [ - "Rights of the Child" - ] - }, - { - "text": "Consider the possibility of acceding to ICRMW ", - "values": [ - "International instruments", - "Labour", - "Migrants" - ] - }, - { - "text": "Provide the Gender Equality Commissioner with sufficient resources to enable the institution to fulfil its mandate effectively and independently", - "values": [ - "Women's rights" - ] - }, - { - "text": "Take concrete steps to implement the National Action Plan against racism and accelerate its efforts at combating all racially motivated crimes", - "values": [ - "Racial discrimination" - ] - }, - { - "text": "Increase the number and frequency of labour inspections, particularly in the primary sector, with adequately trained inspectors and without prior notifications, in line with Kazakhstan's international obligations", - "values": [ - "Labour" - ] - }, - { - "text": "Ensure a full and effective enactment of the provisions of the new law on domestic violence against women and in this regard conduct awareness-raising campaigns on violence against women", - "values": [ - "Human rights education and training", - "Justice", - "Women's rights" - ] - }, - { - "text": "Continue the efforts to promote interreligious dialogue and share its experience and good practices with other countries", - "values": [ - "Freedom of religion and belief" - ] - }, - { - "text": "Align its legislation and practices with international standards on freedom of expression, particularly regarding the restrictions imposed to freedom of expression in article 26 of the Constitution", - "values": [ - "Freedom of opinion and expression" - ] - }, - { - "text": "Step up its efforts to eradicate negative practices and stereotypes that lead to discrimination against women", - "values": [ - "Women's rights" - ] - }, - { - "text": "Ensure the immediate release of all children in the context of negotiations with armed groups and facilitate the preparation of concrete and time-bound action plans to halt the recruitment of children by armed groups and Government forces", - "values": [ - "Internally displaced persons", - "Rights of the Child" - ] - }, - { - "text": "Guarantee protection and access to justice for women who are victims of violence", - "values": [ - "Women's rights" - ] - }, - { - "text": "Continue to take the measures necessary to reduce discrimination against women, in particular on the job market and in national political life, where women are underrepresented, particularly through support for the efforts of the National Council for Women.", - "values": [ - "Women's rights" - ] - }, - { - "text": "Repeal all laws that discriminate against women and girls and ensure conformity with international standards", - "values": [ - "Rights of the Child", - "Women's rights" - ] - }, - { - "text": "Consider the ratification of ICRMW and the Protocol to prevent, suppress and punish trafficking in persons, especially women and children ", - "values": [ - "International instruments", - "Labour", - "Migrants", - "Rights of the Child", - "Trafficking", - "Women's rights" - ] - }, - { - "text": "Adopt appropriate legislation to guarantee the rights of disabled persons and provide them with the best care without discrimination", - "values": [ - "Disabilities" - ] - }, - { - "text": "Consistently apply the rulings of the Court by converting all death sentences into life in prison after more than three years on death row ", - "values": [ - "Death penalty" - ] - }, - { - "text": "Continue its efforts to guarantee the separation of minors from adults in detention facilities ", - "values": [ - "Detention", - "Rights of the Child" - ] - }, - { - "text": "Take action to facilitate greater participation by citizens and civil society in helping to implement human rights action plans", - "values": [ - "Civil society" - ] - }, - { - "text": "Continue human rights education and awareness-raising programmes undertaken by governmental and non-governmental organizations to disseminate a culture of human rights ", - "values": [ - "Civil society", - "Human rights education and training" - ] - }, - { - "text": "Enact legislation to recognize civil partnership and amend the Criminal Code to explicitly prohibit incitement to hatred, violence or discrimination against persons on the basis of sexual orientation or gender identity ", - "values": [ - "Sexual Orientation and Gender Identity" - ] - }, - { - "text": "That the implementation of the new law on the protection of human rights defenders, journalists, social communicators and justice officials is allocated sufficient resources and without it being necessary to resort to civil society contributions", - "values": [ - "Civil society", - "Freedom of the press", - "Human rights defenders", - "Justice" - ] - }, - { - "text": "Accede to the Rome Statute of the International Criminal Court and implement it fully at the national level, and accede to the Agreement on Privileges and Immunities of the Court ", - "values": [ - "International instruments", - "Justice" - ] - }, - { - "text": "Step up efforts to change the stereotype and traditional perception of Roma by the majority population, including through conducting more awareness and sensitization programmes.", - "values": [ - "Human rights education and training", - "Minorities" - ] - }, - { - "text": "Deepen the national dialogue to establish an accountability mechanism for human rights violations committed in the past", - "values": [ - "Justice" - ] - }, - { - "text": "Pursue, even consolidate policies and programmes facilitating access to health-care services for vulnerable persons ", - "values": [ - "Right to health" - ] - }, - { - "text": "Improve its cooperation with the United Nations treaty bodies by agreeing on timelines for submitting overdue reports to the Committee on the Elimination of Racial Discrimination and Committee on Economic, Social and Cultural Rights and, if need be, identify needs for assistance to that end ", - "values": [ - "ESC rights - general", - "Racial discrimination", - "Technical assistance and cooperation", - "Treaty bodies" - ] - }, - { - "text": "Promptly ratify and implement the Optional Protocol to CEDAW", - "values": [ - "International instruments", - "Women's rights" - ] - }, - { - "text": "Share with other countries, especially developing countries, its experience in the area of justiciability of economic and social rights.", - "values": [ - "ESC rights - general" - ] - }, - { - "text": "View positively the reconsideration of the denunciation of the Optional Protocol to ICCPR ", - "values": [ - "CP rights - general", - "International instruments" - ] - }, - { - "text": "Request necessary technical and financial assistance from the international community, in particular United Nations organs and programmes, to continue to take care of refugees and internally displaced persons ", - "values": [ - "Asylum-seekers - refugees", - "Internally displaced persons", - "Technical assistance and cooperation" - ] - }, - { - "text": "Ratify step by step the outstanding core international instruments, namely the Second Optional Protocol to the International Covenant on Civil and Political Rights, the Optional Protocol to the Convention against Torture and other Cruel, Inhuman or Degrading Treatment or Punishment, the , the Optional Protocol to the Convention on the Elimination of All Forms of Discrimination against Women ", - "values": [ - "Death penalty", - "Detention", - "International instruments", - "Torture and other CID treatment", - "Women's rights" - ] - }, - { - "text": "Continue the positive experience of incorporating international human rights standards into the national education system", - "values": [ - "General" - ] - }, - { - "text": "Empower by statute the Zimbabwe Human Rights Commission to enable it to act in accordance with the Paris Principles and provide it with adequate resources to function effectively ", - "values": [ - "National Human Rights Institution" - ] - }, - { - "text": "Take appropriate measures aimed at increasing the number of women in decision-making positions as well as address the issue of a persisting wage gap between men and women ", - "values": [ - "Women's rights" - ] - }, - { - "text": "Derogate article 230 of the Criminal Code", - "values": [ - "General", - "Sexual Orientation and Gender Identity" - ] - }, - { - "text": "Sign and ratify the Convention against Torture and Other Cruel, Inhuman or Degrading Treatment or Punishment and ratify the International Convention for the Protection of All Persons from Enforced Disappearance ", - "values": [ - "Enforced disappearances", - "International instruments", - "Torture and other CID treatment" - ] - }, - { - "text": "While noting the important progress made since 1999 in overcoming a legacy of military dictatorship with respect to reports of extrajudicial executions by the police, to ensure that all members of the security forces and the police operate within the law", - "values": [ - "Extrajudicial executions", - "Human rights violations by state agents" - ] - }, - { - "text": "Consider the possibility of furthering the measures to eliminate all discriminatory treatment on the grounds of sexual orientation", - "values": [ - "Sexual Orientation and Gender Identity" - ] - }, - { - "text": "Continue the programme aimed at modernizing its judicial system with the assistance of international bodies and to take measures to improve access to justice for all segments of the population", - "values": [ - "Justice", - "Technical assistance and cooperation" - ] - }, - { - "text": "Take appropriate measures for a better integration of indigenous women within society ", - "values": [ - "Indigenous peoples", - "Women's rights" - ] - }, - { - "text": "Streamline and fine-tune policies to improve indigenous people's rights.", - "values": [ - "Indigenous peoples" - ] - }, - { - "text": "Immediately put a stop to caning as a form of punishment and repeal all laws providing for this punishment ", - "values": [ - "Torture and other CID treatment" - ] - }, - { - "text": "Implement the recommendations of its Constitutional Reform Committee and establish separate legislation to prohibit discrimination on the basis of sexual orientation", - "values": [ - "Sexual Orientation and Gender Identity" - ] - }, - { - "text": "Pursue reforms aimed at further protecting the judiciary from undue political interference and ensuring open, transparent and fair trial processes ", - "values": [ - "Justice" - ] - }, - { - "text": "Consider the timely ratification of the Convention on Enforced Disappearance.", - "values": [ - "Enforced disappearances", - "International instruments" - ] - }, - { - "text": "Strengthen efforts to establish a system of juvenile justice in compliance with international standards, and take specific measures to protect the rights of children and persons in detention or in prison ", - "values": [ - "Detention", - "Rights of the Child" - ] - }, - { - "text": "Implement measures to give effect to the existing legislation on the elimination of discrimination, particularly in the area of gender and ethnic minorities and eradicate all forms of violence due to discrimination", - "values": [ - "Minorities", - "Racial discrimination", - "Women's rights" - ] - }, - { - "text": "Strengthen efforts to prevent and combat all forms of discrimination and violence against women and ensure that women victims of violence receive appropriate help and perpetrators are brought to justice", - "values": [ - "Women's rights" - ] - }, - { - "text": "Bring in humanitarian assistance, including food and medical supplies, to all civilians in need, without discrimination", - "values": [ - "Other" - ] - }, - { - "text": "End collective punishment of families, especially against children ", - "values": [ - "Rights of the Child" - ] - }, - { - "text": "Develop affirmative programmes to uplift the living standards of women and ensure their presence in decision-making positions", - "values": [ - "Women's rights" - ] - }, - { - "text": "Continue applying the country's strategies and socio-economic development plans, in particular those aimed at reducing poverty ", - "values": [ - "Development", - "Poverty" - ] - }, - { - "text": "Look for means to improve the remuneration system for judges to offer better guarantees of independence ", - "values": [ - "Justice" - ] - }, - { - "text": "Continue to improve its national health-care system and ensure access to quality health care ", - "values": [ - "Right to health" - ] - }, - { - "text": "Abolish the use of incommunicado detention and torture", - "values": [ - "Detention", - "Torture and other CID treatment" - ] - }, - { - "text": "Ratify in due course instruments such as the International Convention on the Protection of the Rights of All Migrant Workers and Members of their Families, the Convention on the Rights of the Child and the International Covenant on Economic, Social and Cultural Rights", - "values": [ - "ESC rights - general", - "International instruments", - "Labour", - "Migrants", - "Rights of the Child" - ] - }, - { - "text": "Continue to ensure that adequate human and financial resources are allocated to implement laws and policies that address inequality between men and women", - "values": [ - "Women's rights" - ] - }, - { - "text": "Continue making progress on the fight against poverty, with the appropriate social policies for its people, in particular for those most in need, with the cooperation and technical assistance that the country requires ", - "values": [ - "Poverty", - "Technical assistance and cooperation" - ] - }, - { - "text": "Establish and implement policies and initiatives to address discrimination on the grounds of sexual orientation or gender identity", - "values": [ - "Sexual Orientation and Gender Identity" - ] - }, - { - "text": "Adopt measures to implement the legal principle of natural judge, so that civilians can be tried in ordinary courts", - "values": [ - "Justice" - ] - }, - { - "text": "Strengthen legislation to prohibit torture and ill-treatment as well strengthen legislation against human trafficking", - "values": [ - "Torture and other CID treatment", - "Trafficking" - ] - }, - { - "text": "Further strengthen measures to improve public access to the justice system and ensure the independence of the judicial system by, inter alia, providing sufficient means, and report on the results of these measures in the next review report.", - "values": [ - "Justice" - ] - }, - { - "text": "Pass legislation implementing the Rome Statute of the International Criminal Court into domestic law ", - "values": [ - "International instruments", - "Justice" - ] - }, - { - "text": "Strengthen policies to protect children, vulnerable groups and the disadvantaged ", - "values": [ - "Rights of the Child" - ] - }, - { - "text": "To ensure the development, by the National Human Rights Council, of a plan to follow up on the recommendations made by international human rights mechanisms, including those resulting from the universal periodic review", - "values": [ - "Special procedures", - "Treaty bodies", - "UPR process" - ] - }, - { - "text": "Ratify the International Covenant on Civil and Political Rights", - "values": [ - "CP rights - general", - "International instruments" - ] - }, - { - "text": "Make an impact assessment of any negative consequences of budgetary adjustments with regard to universal access to health and education, particularly their impact on vulnerable groups such as migrants, women, people with disabilities, the elderly and children", - "values": [ - "Disabilities", - "Migrants", - "Right to education", - "Right to health", - "Rights of the Child", - "Women's rights" - ] - }, - { - "text": "Raise the age of criminal responsibility, which is currently set at 8 years", - "values": [ - "Justice", - "Rights of the Child" - ] - }, - { - "text": "Continue efforts to combat terrorism", - "values": [ - "Public security" - ] - }, - { - "text": "Take further steps towards protecting human rights of migrant workers, refugees and their dependants, including through signature and ratification of the 1951 United Nations Convention relating to the Status of Refugees", - "values": [ - "Asylum-seekers - refugees", - "International instruments", - "Labour", - "Migrants" - ] - }, - { - "text": "Take further action to improve prison conditions, especially to account for the specific needs of women and children in detention ", - "values": [ - "Detention", - "Rights of the Child", - "Women's rights" - ] - }, - { - "text": "Take necessary measures to actively combat violence against women and promote gender equality, in particular by reforming discriminatory legislation against women", - "values": [ - "Women's rights" - ] - }, - { - "text": "Continue its positive measures in advancing the rights of its minority groups, including Muslims, through the allocation of sufficient funding", - "values": [ - "Freedom of religion and belief", - "Minorities" - ] - }, - { - "text": "Complete the accession to the International Covenant on Economic, Social and Cultural Rights and to ICERD ", - "values": [ - "ESC rights - general", - "International instruments", - "Racial discrimination" - ] - }, - { - "text": "Continue taking steps towards the ratification of the international human rights conventions to which Palau is a signatory, in particular the International Covenant on Civil and Political Rights, the International Convention on the Elimination of All Forms of Racial Discrimination, the International Covenant on Economic, Social and Cultural Rights, the Convention on the Elimination of All Forms of Discrimination against Women and the Convention against Torture and Other Cruel, Inhuman or Degrading Treatment or Punishment", - "values": [ - "CP rights - general", - "ESC rights - general", - "International instruments", - "Racial discrimination", - "Torture and other CID treatment", - "Women's rights" - ] - }, - { - "text": "Establish a national institution for human rights in accordance with the Paris Principles, seeking international technical cooperation if necessary ", - "values": [ - "National Human Rights Institution", - "Technical assistance and cooperation" - ] - }, - { - "text": "To put in place everything to combat child exploitation notably to follow up on the recommendations made by the Independent Expert on this subject", - "values": [ - "Labour", - "Rights of the Child", - "Special procedures" - ] - }, - { - "text": "Urgently take effective measures to reduce the duration of preventive detention", - "values": [ - "Detention" - ] - }, - { - "text": "Strengthen the nationwide health system and infrastructure to improve people's access to health care and add impetus to achieving the health-related Millennium Development Goals, with the support and assistance of the international community.", - "values": [ - "Right to health", - "Technical assistance and cooperation" - ] - }, - { - "text": "Enhance cooperation with the Human Rights Council by issuing a standing invitation to special procedures and accepting all visits requested by mandate holders ", - "values": [ - "Special procedures", - "Technical assistance and cooperation" - ] - }, - { - "text": "Ratify, without making any reservation, the Agreement on the Privileges and Immunities of the International Criminal Court", - "values": [ - "International instruments", - "Justice" - ] - }, - { - "text": "Adopt the concept of discrimination in line with CEDAW for the definition of fundamental rights related to gender equality ", - "values": [ - "International instruments", - "Women's rights" - ] - }, - { - "text": "Ensure adequate protection of LGBT people, not only through police forces on the streets, but legally via anti-discrimination law", - "values": [ - "Sexual Orientation and Gender Identity" - ] - }, - { - "text": "Strengthen measures to reduce unemployment and underemployment of youth", - "values": [ - "Development" - ] - }, - { - "text": "Take steps to increase efforts to ensure the rights of individuals to decide freely and responsibly the number, spacing and timing of their children and to have the information and means to do so, and the right to the highest attainable standard of sexual and reproductive health", - "values": [ - "Right to health", - "Rights of the Child", - "Women's rights" - ] - }, - { - "text": "Actively draw upon the assistance of the international community in the anti-terrorism process and in overcoming its negative consequences.", - "values": [ - "Counter-terrorism", - "Technical assistance and cooperation" - ] - }, - { - "text": "Enact comprehensive prison and related judicial reform to ensure that conditions of detention are in conformity with United Nations Standard Minimum Rules for the Treatment of Prisoners, including but not limited to: addressing overcrowding and sanitary issues in prisons, providing sufficient resources for rehabilitation and reintegration of prisoners, and relieving the judicial backlog that has contributed to the detention of over 2,000 people in remand awaiting a trial, many who have been in custody for several years", - "values": [ - "Detention", - "Justice" - ] - }, - { - "text": "Review the Code of Military Justice in order to align it more closely with international human rights obligations", - "values": [ - "International instruments", - "Justice" - ] - }, - { - "text": "Work to ensure that its legislation conforms with international human rights laws, and seek the assistance of the international community where necessary ", - "values": [ - "International instruments", - "Technical assistance and cooperation" - ] - }, - { - "text": "Step up its efforts to provide adequate health facilities and comprehensive education for all", - "values": [ - "Right to education", - "Right to health" - ] - }, - { - "text": "Increase its efforts in the field of discrimination on grounds of sexual orientation and gender identity, inter alia, by review of national legislation and administration with a view to eliminate discrimination against LGBTI people with regard to family and parental rights and the right to security and integrity of the person ", - "values": [ - "Sexual Orientation and Gender Identity" - ] - }, - { - "text": "Protect North Korean refugees in accordance with international law, honouring the principle of non-refoulement", - "values": [ - "Asylum-seekers - refugees" - ] - }, - { - "text": "Ratify CERD ", - "values": [ - "International instruments", - "Racial discrimination" - ] - }, - { - "text": "The Government undertook the commitment to submit all reports due to the human rights mechanisms within the next 24 months", - "values": [ - "Treaty bodies" - ] - }, - { - "text": "Strengthen efforts to improve the living conditions in detention centres.", - "values": [ - "Detention" - ] - }, - { - "text": "Consider ratifying the Optional Protocols to the Convention on the Rights of the Child", - "values": [ - "International humanitarian law", - "International instruments", - "Labour", - "Rights of the Child", - "Trafficking" - ] - }, - { - "text": "Take into account accessibility for persons with disabilities in the reconstruction process ", - "values": [ - "Disabilities" - ] - }, - { - "text": "Develop further and implement measures to deal with the large backlog of cases in courts.", - "values": [ - "Justice" - ] - }, - { - "text": "Amend the Criminal Code to ensure respect of the right to freedom of expression and establish guidelines for criminal defamation prosecution to ensure the exercise of the right to freedom of expression without fear of intimidation or harassment", - "values": [ - "Freedom of opinion and expression" - ] - }, - { - "text": "Enforce anti-discrimination legislation, taking special measures to foster the integration of national and ethnic minorities into society", - "values": [ - "Minorities", - "Racial discrimination" - ] - }, - { - "text": "Strengthen and further improve the existing measures and strategies and undertake, where necessary, actions to correct the inequalities that still exist between the various communities. ", - "values": [ - "Poverty" - ] - }, - { - "text": "Take adequate measures to guarantee the protection of isolated indigenous peoples, including the respect for intangible zones", - "values": [ - "Indigenous peoples" - ] - }, - { - "text": "Repeal all legislative provisions which criminalize sexual activity between consenting adults of the same sex ", - "values": [ - "Sexual Orientation and Gender Identity" - ] - }, - { - "text": "Ratify the Convention on Enforced Disappearances.", - "values": [ - "Enforced disappearances", - "International instruments" - ] - }, - { - "text": "End the practice of executing juvenile offenders and of public executions, including through stoning", - "values": [ - "Death penalty", - "Rights of the Child" - ] - }, - { - "text": "Take forward and complete, with political stakeholders, the electoral process as a matter of urgency", - "values": [ - "Elections" - ] - }, - { - "text": "Establish independent machinery which can document, investigate and process cases of rape, and facilitate the end of impunity", - "values": [ - "Impunity", - "Rights of the Child", - "Women's rights" - ] - }, - { - "text": "Take concrete measures to eliminate child labour and child sex tourism", - "values": [ - "Labour", - "Rights of the Child", - "Trafficking" - ] - }, - { - "text": "Pursue its plans to integrate human rights across the curricula of primary and secondary schools", - "values": [ - "Human rights education and training" - ] - }, - { - "text": "Take legal measures to adopt a comprehensive law on child rights and fully bring in line the legislation with the Convention, as well as adopt and implement a national plan of action for children to address inequalities in income and living", - "values": [ - "Rights of the Child" - ] - }, - { - "text": "Take appropriate measures to combat nationalist extremism as effectively as possible", - "values": [ - "Racial discrimination" - ] - }, - { - "text": "Take appropriate measures to introduce a law on equality of treatment taking particularly into account the interests of lesbian, gay, bisexual, transgender and intersex minorities, persons with disabilities, women and other vulnerable groups", - "values": [ - "Sexual Orientation and Gender Identity" - ] - }, - { - "text": "Croatia expressed its commitment to make all recommendations more visible and to the comprehensive UPR exercise, although it can certainly be improved.", - "values": [ - "UPR process" - ] - }, - { - "text": "Consider establishing an independent national human rights institution in accordance with the Paris Principles to further improve coordination in the human rights sphere at the national level", - "values": [ - "National Human Rights Institution" - ] - }, - { - "text": "Advance the process of establishing an independent national human rights institution in a pragmatic manner and in consultation with all relevant actors ", - "values": [ - "National Human Rights Institution" - ] - }, - { - "text": "Continue its efforts in strengthening the mechanisms for the effective incorporation of international human rights obligations and standards into its domestic legislation ", - "values": [ - "International instruments" - ] - }, - { - "text": "Ensure that foreign nationals residing in Luxembourg fully enjoy social benefits like other citizens of Luxembourg do ", - "values": [ - "Migrants" - ] - }, - { - "text": "Take any proper measure in order to keep national legislation fully in line with international standards and obligations", - "values": [ - "General" - ] - }, - { - "text": "Continue to realign its national procedures to combat drug trafficking with international standards", - "values": [ - "Other" - ] - }, - { - "text": "Consider ratifying the Convention on the Rights of Persons with Disabilities at the earliest opportunity ", - "values": [ - "Disabilities", - "International instruments" - ] - }, - { - "text": "Urgently review its criminal justice system, in particular to criminalise torture and prohibit the use in courts of evidence obtained in violation of the International Covenant on Civil and Political Rights, abolish corporal punishment in the penal system, abolish the crime of apostasy, implement the recently signed Action Plan to prevent recruitment of children to the national security forces, and address the impunity of police, armed and national security forces by amending the National Security Act 2010 to conform with the International Covenant on Civil and Political Rights and through ratification of the Statute of the International Criminal Court ", - "values": [ - "General" - ] - }, - { - "text": "Investigate all pending reports of enforced or involuntary disappearances and punish the perpetrators of these crimes", - "values": [ - "Enforced disappearances" - ] - }, - { - "text": "Adhere to the American Convention on Human Rights", - "values": [ - "International instruments" - ] - }, - { - "text": "Take all necessary measures to protect the rights of migrant workers and members of their families, particularly by ensuring their access to justice", - "values": [ - "Labour", - "Migrants" - ] - }, - { - "text": "Deepen studies on gender perspective and prevent against any kind of discrimination in the media ", - "values": [ - "Women's rights" - ] - }, - { - "text": "Improve health-care infrastructure in general to enable access to health care for all and especially access to emergency obstetric care, midwife training and resources devoted to maternal health", - "values": [ - "Right to health", - "Women's rights" - ] - }, - { - "text": "Intensify its efforts to combat, in particular, the worst forms of child labour in line with Philippine's obligations under the ILO Convention No. 182 on the Prohibition and Immediate Action for the Elimination of the Worst Forms of Child Labour as well as No. 138 on Minimum Age for Admission to Employment ", - "values": [ - "International instruments", - "Labour", - "Rights of the Child" - ] - }, - { - "text": "Continue to raise awareness of the needs of the Roma population, including children, and establish an adequate system that provides for their social and educational inclusion", - "values": [ - "Minorities", - "Rights of the Child" - ] - }, - { - "text": "Consider as a crime all acts of violence, regardless of the harm that they cause, in addition to specifically punishing violence based on sexual orientation or gender identity", - "values": [ - "Sexual Orientation and Gender Identity" - ] - }, - { - "text": "Continue to implement the strategic plan 2010-2014 to increase health coverage for the most vulnerable groups of the population ", - "values": [ - "Right to health" - ] - }, - { - "text": "Create a system of juvenile justice that includes the establishment of a children's ombudsman ", - "values": [ - "Justice", - "National Human Rights Institution", - "Rights of the Child" - ] - }, - { - "text": "Take all necessary measures to protect journalists, particularly by prosecuting perpetrators of violence or intimidations against them", - "values": [ - "Freedom of the press" - ] - }, - { - "text": "Reinforce the broad range of safeguards in favour of the most vulnerable groups such as persons with disabilities and the homeless to allow them the full enjoyment of their rights and dignity", - "values": [ - "Disabilities", - "Right to housing" - ] - }, - { - "text": "Adopt legislation for the implementation of the Rome Statute of the International Criminal Court ", - "values": [ - "International instruments", - "Justice" - ] - }, - { - "text": "Further promote national efforts in countering human trafficking ", - "values": [ - "Trafficking" - ] - }, - { - "text": "Ratify CED and the other major human rights instruments it has not yet ratified ", - "values": [ - "Enforced disappearances", - "International instruments" - ] - }, - { - "text": "Follow the recommendations of the Special Rapporteur on contemporary forms of slavery and implement the 2014 roadmap of the Government to eradicate slavery", - "values": [ - "Special procedures" - ] - }, - { - "text": "Ensure that detained persons are treated humanely and given access to legal counsel and all allegations of torture in detention are properly investigated", - "values": [ - "Detention", - "Torture and other CID treatment" - ] - }, - { - "text": "Systematically pursue current initiatives to change harmful practices against women and children, in particular female genital mutilation and early marriage", - "values": [ - "Rights of the Child", - "Torture and other CID treatment", - "Women's rights" - ] - }, - { - "text": "Take immediate steps to implement the new Constitution's provision that international human rights are to be fully respected, including press freedom, freedom of expression, assembly and association ", - "values": [ - "Freedom of association and peaceful assembly", - "Freedom of opinion and expression", - "Freedom of the press" - ] - }, - { - "text": "Advance in the implementation of the national action plan for the prevention, assistance and eradication of violence against women with the objective to continue strengthening actions aimed at combating violence against women and reducing the number of deaths of women caused by such violence", - "values": [ - "Women's rights" - ] - }, - { - "text": "Ratify all other international instruments it agreed to ratify during its first UPR review ", - "values": [ - "International instruments", - "UPR process" - ] - }, - { - "text": "Maintain a relation of cooperation with the universal system of promotion and protection of human rights", - "values": [ - "General" - ] - }, - { - "text": "Ratify the other core human rights treaties, including the International Covenant on Civil and Political Rights, without delay ", - "values": [ - "CP rights - general", - "International instruments" - ] - }, - { - "text": "Consider ways to depoliticize ethnicity and promote policies of inclusion", - "values": [ - "Minorities" - ] - }, - { - "text": "Immediately dismantle all political prison camps, release all political prisoners, and institute protections against arbitrary detention that guarantee due process and fair trial", - "values": [ - "Detention", - "Freedom of opinion and expression", - "Justice" - ] - }, - { - "text": "Strengthen education in the field of human rights", - "values": [ - "Human rights education and training" - ] - }, - { - "text": "Continue to raise awareness about human rights, and to strengthen national efforts to protect them, with due respect for cultural specificities and Islam", - "values": [ - "Human rights education and training" - ] - }, - { - "text": "Accelerate efforts with the Joint Senate Committees on Justice, National Defence and Legislative Studies regarding the early adoption of the reform to bring the criminal offence of enforced disappearance in conformity with standards established by the International Convention on the matter, in accordance with paragraph 86 of the Report", - "values": [ - "Enforced disappearances", - "International instruments", - "Justice" - ] - }, - { - "text": "Invite the Special Rapporteur on adequate housing to assist, as part of the effort to ensure a dignified standard of living, in the process of creating or reforming legislation and policies to bring them into conformity with international standards", - "values": [ - "Right to housing", - "Special procedures" - ] - }, - { - "text": "Strengthen efforts to prevent and combat all forms of discrimination and violence against women and children by means of reinforcing the relevant legal framework, running awareness campaigns and ensuring that perpetrators are brought to justice and victims receive appropriate help", - "values": [ - "Human rights education and training", - "Rights of the Child", - "Women's rights" - ] - }, - { - "text": "Introduce an effective system towards the elimination of female genital mutilation (FGM) and develop governmental policy in this regard ", - "values": [ - "Rights of the Child", - "Torture and other CID treatment", - "Women's rights" - ] - }, - { - "text": "Put in place adequate channels for the reporting of child abuse, with a view to criminal persecution, and to provide physical and psychological assistance for the victims of such violence", - "values": [ - "Rights of the Child" - ] - }, - { - "text": "Create a Truth and Reconciliation Commission in order to address the root causes of politically motivated violence", - "values": [ - "Justice" - ] - }, - { - "text": "Take the necessary steps, including legislative measures, to prevent and eradicate violence against women", - "values": [ - "Women's rights" - ] - }, - { - "text": "Continue combating human trafficking", - "values": [ - "Trafficking" - ] - }, - { - "text": "Continue its efforts to promote human rights in the economic, social and cultural fields", - "values": [ - "ESC rights - general" - ] - }, - { - "text": "Fulfil its obligation under article 12 of the ICCPR by allowing the Lao Hmong refugees who have received third-country invitations to migrate to these countries if they wish to do so, and provide the means for them to do so ", - "values": [ - "Asylum-seekers - refugees", - "Indigenous peoples", - "International instruments" - ] - }, - { - "text": "Reduce all forms of violence against women and children", - "values": [ - "Rights of the Child", - "Women's rights" - ] - }, - { - "text": "Take measures to ensure that children are fully protected from corporal punishment and other forms of violence or exploitation", - "values": [ - "Rights of the Child", - "Torture and other CID treatment" - ] - }, - { - "text": "Reduce the duration of police custody and pre-trial detention, particularly in cases of solitary confinement ", - "values": [ - "Detention" - ] - }, - { - "text": "Continue its cooperation with the Office of the United Nations High Commissioner for Human Rights, in particular with a view to implementing accepted recommendations made during the universal periodic review\n", - "values": [ - "UPR process" - ] - }, - { - "text": "Effectively cooperate with the Special Rapporteur on the situation of human rights defenders", - "values": [ - "Human rights defenders", - "Special procedures" - ] - }, - { - "text": "Ratify the 1954 Convention on the Status of Stateless Persons", - "values": [ - "International instruments", - "Statelessness and the right to nationality" - ] - }, - { - "text": "Continue the reform of the land tenure system to meet the national objectives of poverty reduction, food security and environmental protection ", - "values": [ - "Environment", - "Poverty", - "Right to food", - "Right to land" - ] - }, - { - "text": "Continue to take steps to improve the integration of different groups, in particular in the education process, and report on results at the next round of the universal periodic review.", - "values": [ - "Right to education", - "UPR process" - ] - }, - { - "text": "Improve access to affordable healthcare for all through the effective implementation of its policies and directives", - "values": [ - "Right to health" - ] - }, - { - "text": "Continue to protect the rights of migrants living in its territory", - "values": [ - "Migrants" - ] - }, - { - "text": "Adopt necessary practical measures to ensure equal access of girls to education at all levels and step up efforts to decrease illiteracy rate of women", - "values": [ - "Right to education", - "Rights of the Child", - "Women's rights" - ] - }, - { - "text": "Work with the Special Rapporteur on human rights defenders to ensure that their law governing NGOs guarantees effective implementation of the declaration on human rights defenders ", - "values": [ - "Civil society", - "Freedom of association and peaceful assembly", - "Human rights defenders", - "Special procedures" - ] - }, - { - "text": "Accede to the United Nations Convention on the Status of Refugees and the 1967 Protocol as well as to the 1954 Convention on the Status of Stateless Persons", - "values": [ - "Asylum-seekers - refugees", - "International instruments", - "Statelessness and the right to nationality" - ] - }, - { - "text": "Complete the reform of the judiciary", - "values": [ - "Justice" - ] - }, - { - "text": "Adopt legislation for fighting discrimination, in particular discrimination against women, and include mechanisms for effective protection and access to legal remedies", - "values": [ - "Women's rights" - ] - }, - { - "text": "Consolidate the gender equality in the professional field by applying the principle "equal pay for equal work" in the pay system, to reduce wage gaps linked to gender, which consequently leads to differences on retirement pensions between men and women", - "values": [ - "Women's rights" - ] - }, - { - "text": "Ensure that the processing of personal data be conducted in compliance with national and international standards and obligations, and that any violations be investigated and redress provided to victims", - "values": [ - "Privacy" - ] - }, - { - "text": "Continue to pursue its measures to curb incitement to violence, brutality and child pornography ", - "values": [ - "Rights of the Child" - ] - }, - { - "text": "Establish a mechanism for comprehensive assistance for and protection of human rights defenders, including indigenous civil society activists, and include them in its design", - "values": [ - "Human rights defenders", - "Indigenous peoples" - ] - }, - { - "text": "Protect victims of trafficking in persons by allocating additional resources and services in all cantons, and prosecute and punish perpetrators according to the severity of their crime", - "values": [ - "Trafficking" - ] - }, - { - "text": "Continue with security sector reform to ensure appropriate training and oversight mechanisms are in place", - "values": [ - "Public security" - ] - }, - { - "text": "Continue to develop measures for the development of national legislation in accordance with international instruments in the field of human rights ", - "values": [ - "International instruments" - ] - }, - { - "text": "Intensify its efforts in addressing the issues of education, poverty and health", - "values": [ - "Poverty", - "Right to education", - "Right to health" - ] - }, - { - "text": "Effectively fight impunity by investigating all cases of extrajudicial killings and enforced disappearances committed by the police, the armed forces or non-State actors and bring all perpetrators to justice", - "values": [ - "Enforced disappearances", - "Extrajudicial executions", - "Human rights violations by state agents", - "Impunity" - ] - }, - { - "text": "Continue to implement the recommendations made by the Committee on the Elimination of Discrimination against Women and on a regular basis submit the relevant reports for its consideration.", - "values": [ - "Treaty bodies", - "Women's rights" - ] - }, - { - "text": "Maintain its commitment in trying to meet human rights challenges it is facing and to ensure that the human rights of its citizens are fully protected.", - "values": [ - "General" - ] - }, - { - "text": "Introduce educational or training programmes that promote the integration of sexual minorities with a view to preventing discrimination on the basis of sexuality", - "values": [ - "Sexual Orientation and Gender Identity" - ] - }, - { - "text": "Strengthen measures to counter the use of racial discrimination and Islamophobia discourse in politics and in the media", - "values": [ - "Freedom of religion and belief", - "Racial discrimination" - ] - }, - { - "text": "Continue to improve implementation of the Human Rights Defenders and Journalists Protection Act and the national protection mechanism at the federal and state level", - "values": [ - "Freedom of the press", - "Human rights defenders" - ] - }, - { - "text": "Amend its laws to prohibit corporal punishment of children in all settings and circumstances, and take further steps to eradicate child labour and guarantee the right to education of all children", - "values": [ - "Labour", - "Right to education", - "Rights of the Child", - "Torture and other CID treatment" - ] - }, - { - "text": "Review the Penal Code articles 112 (lese-majesty), 326 (defamation), and 328 (slander) as well as 14 and 15 of the 2007 Computer Crimes Act, and align them to the human rights international obligations ", - "values": [ - "Freedom of opinion and expression", - "International instruments" - ] - }, - { - "text": "Bring the provisions of its domestic laws into compliance with the international obligations laid down in the human rights instruments it has ratified", - "values": [ - "International instruments" - ] - }, - { - "text": "Implement measures to punish traffickers and prevent child prostitution and forced marriage", - "values": [ - "Rights of the Child", - "Trafficking", - "Women's rights" - ] - }, - { - "text": "Increase and consolidate the level of public awareness of the law and of mechanisms that are available to enforce human rights, particularly among women and young girls ", - "values": [ - "Rights of the Child", - "Women's rights" - ] - }, - { - "text": "Guarantee free access to the media.", - "values": [ - "Freedom of the press" - ] - }, - { - "text": "Further progress in the implementation of the National Literacy Programs "Yes I can" and "Yes I can continue"", - "values": [ - "Right to education" - ] - }, - { - "text": "Establish an official moratorium on executions with the view to abolishing the death penalty", - "values": [ - "Death penalty" - ] - }, - { - "text": "Sign and ratify the Optional Protocol to the Covenant on Economic, Social and Cultural Rights", - "values": [ - "ESC rights - general", - "International instruments" - ] - }, - { - "text": "Implement the national strategy to prevent and respond to gender based violence", - "values": [ - "Women's rights" - ] - }, - { - "text": "Introduce mandatory human rights training for police agencies, and implement an evidence-based policing programme, to reduce deaths from police action by 10 per cent over the universal periodic review cycle", - "values": [ - "Human rights education and training", - "UPR process" - ] - }, - { - "text": "Promote greater and effective use of the media to promote the rights of children ", - "values": [ - "Rights of the Child" - ] - }, - { - "text": "Establish a moratorium on executions on the entire American territory, with a view to a definitive abolition of the death penalty ", - "values": [ - "Death penalty" - ] - }, - { - "text": "Raise the level of official development assistance to achieve the United Nations target of 0.7 percent of gross domestic product", - "values": [ - "Development" - ] - }, - { - "text": "Increase efforts to investigate, prosecute and convict trafficking offenders under article 133 of the Penal Code", - "values": [ - "Trafficking" - ] - }, - { - "text": "Strengthen measures to eradicate economic exploitation of children and to amend the national Labour Code to bring it into conformity with International Labour Organization Convention No. 182 concerning the Prohibition and Immediate Action for the Elimination of the Worst Forms of Child Labour", - "values": [ - "International instruments", - "Labour", - "Rights of the Child" - ] - }, - { - "text": "Continue its forward movement on the Declaration of the Rights of Indigenous Peoples ", - "values": [ - "Indigenous peoples", - "International instruments" - ] - }, - { - "text": "Work closely with the Council of Europe on judicial reform and support a system of court monitoring based on civil society participation", - "values": [ - "Civil society", - "Justice" - ] - }, - { - "text": "Increase the awareness campaign for the Government programmes ", - "values": [ - "Other" - ] - }, - { - "text": "Treat acts of torture by law enforcement officials according to the seriousness of their offence in line with previous recommendations of the Human Rights Committee ", - "values": [ - "Human rights violations by state agents", - "Torture and other CID treatment", - "Treaty bodies" - ] - }, - { - "text": "Invite the National Human Rights Commission to monitor the elections ", - "values": [ - "Elections", - "National Human Rights Institution" - ] - }, - { - "text": "Ratify the CPED and make, at the moment of ratification, the declarations provided for on articles 31 and 32 ", - "values": [ - "Enforced disappearances", - "International instruments" - ] - }, - { - "text": "Follow up on the recommendation by the Committee on the Elimination of Discrimination\nagainst Women to introduce specific legislation and raise public awareness in order to close the\ngender gap, particularly in rural areas ", - "values": [ - "Human rights education and training", - "Treaty bodies", - "Women's rights" - ] - }, - { - "text": "Strengthen public policies allowing for the elimination of forced and early marriage, levirate marriage and other harmful practices threatening the rights of women ", - "values": [ - "Rights of the Child", - "Women's rights" - ] - }, - { - "text": "An effective implementation of the combating of the domestic violence act to reduce gender-based violence", - "values": [ - "Rights of the Child", - "Women's rights" - ] - }, - { - "text": "Accelerate the conclusion of investigations regarding applications on the conduct of elections by the Election Commission and other relevant authorities", - "values": [ - "Elections" - ] - }, - { - "text": "Accept the ad hoc jurisdiction of the International Criminal Court and ratify the Rome Statute", - "values": [ - "International instruments", - "Justice" - ] - }, - { - "text": "Redouble efforts made to prevent and support victims of domestic violence, in particular children and women ", - "values": [ - "Rights of the Child", - "Women's rights" - ] - }, - { - "text": "Establish, at the earliest, an action plan aimed at preventing racist assaults, so as to allow members of vulnerable groups to live in security and dignity ", - "values": [ - "Racial discrimination" - ] - }, - { - "text": "Allow journalists to freely exercise their profession and grant international media access to its territory", - "values": [ - "Freedom of the press" - ] - }, - { - "text": "Accept the establishment of a permanent rights component in the United Nations Mission for the Referendum in Western Sahara, given the continuing need for independent and impartial monitoring of the human rights situation in the place, as previously recommended", - "values": [ - "Other" - ] - }, - { - "text": "Fast-track the process to make the national institution for the protection of human rights fully compatible with the Paris Principles", - "values": [ - "National Human Rights Institution" - ] - }, - { - "text": "Take legislative action and effectively prosecute the incitement of hatred and acts of violence against all religious minorities ", - "values": [ - "Freedom of religion and belief", - "Minorities" - ] - }, - { - "text": "Continue improving the health and education systems ", - "values": [ - "Right to education", - "Right to health" - ] - }, - { - "text": "Continue taking appropriate measures to protect the most vulnerable children, particularly girls, children with disabilities and children living in rural areas and to ensure effective protection of children especially against sexual abuse, trafficking and child labour ", - "values": [ - "Disabilities", - "Labour", - "Rights of the Child", - "Trafficking", - "Women's rights" - ] - }, - { - "text": "Adopt further measures to fight discrimination and promote, including through awareness-raising campaigns, the realization of human rights by all persons belonging to minorities, including foreigners, refugees, persons with disabilities and persons of minority sexual orientation or gender identity.", - "values": [ - "Asylum-seekers - refugees", - "Disabilities", - "Human rights education and training", - "Minorities", - "Sexual Orientation and Gender Identity" - ] - }, - { - "text": "Ratify the Optional Protocol to the Convention against Torture, as previously recommended", - "values": [ - "Detention", - "International instruments", - "Torture and other CID treatment", - "UPR process" - ] - }, - { - "text": "Abolish definitely the death penalty as a culmination to the de facto moratorium which has been in place since 1997", - "values": [ - "Death penalty" - ] - }, - { - "text": "Strengthen the measures to improve the representation, education and protection of Travellers ", - "values": [ - "Minorities", - "Right to education" - ] - }, - { - "text": "Intensify efforts to eliminate all forms of discrimination against women, among other measures, to promote their empowerment and participation in public life", - "values": [ - "Women's rights" - ] - }, - { - "text": "Strengthen the measures undertaken to combat domestic violence in general and violence against children in particular", - "values": [ - "Rights of the Child", - "Women's rights" - ] - }, - { - "text": "Facilitate the access to asylum procedures in order to guarantee an international protection to asylum seekers ", - "values": [ - "Asylum-seekers - refugees" - ] - }, - { - "text": "Continue initiatives aimed at strengthening economic, social and cultural rights, contributing to sustainable development and transition to more developed economy", - "values": [ - "Development", - "ESC rights - general" - ] - }, - { - "text": "Remove reservations to the International Covenant on Civil and Political Rights, ICESCR, and the Optional Protocol to CRC on the sale of children and child pornography in order to ensure full implementation of these key international instruments", - "values": [ - "CP rights - general", - "ESC rights - general", - "International instruments", - "Rights of the Child", - "Trafficking" - ] - }, - { - "text": "Address the situation in its prisons and detention facilities particularly in relation to their exposure to frequent strikes of the prison guard personnel ", - "values": [ - "Detention" - ] - }, - { - "text": "Adopt legislation and public policies which effectively prevent discrimination based on sexual orientation and gender identity", - "values": [ - "Sexual Orientation and Gender Identity" - ] - }, - { - "text": "Consider availing itself of offers for technical assistance to facilitate its submission of reports to the relevant treaty bodies ", - "values": [ - "Technical assistance and cooperation", - "Treaty bodies" - ] - }, - { - "text": "Continue to adopt measures that would further promote and protect the rights of the child", - "values": [ - "Rights of the Child" - ] - }, - { - "text": "Accede to the International Covenant on Civil and Political Rights as a priority ", - "values": [ - "CP rights - general", - "International instruments" - ] - }, - { - "text": "Increase the ODA to 0.7 per cent of the GNI, as agreed internationally, to strengthen the developing countries against poverty and to achieve development", - "values": [ - "Development" - ] - }, - { - "text": "Assess the compatibility of its policies and laws with its international obligations including all core principles of human rights to which Hungary is a party", - "values": [ - "International instruments" - ] - }, - { - "text": "Amend the Penal Code to decriminalize homosexual activity between consenting adults. ", - "values": [ - "Sexual Orientation and Gender Identity" - ] - }, - { - "text": "Sustain the initiatives to promote gender parity", - "values": [ - "Women's rights" - ] - }, - { - "text": "Ensure the proper work of the Joint Monitoring Committee and Union Peace Dialogue Joint Committee", - "values": [ - "Justice" - ] - }, - { - "text": "Fulfil obligations to the human rights mechanisms, including submission of outstanding reports and approving pending visits of Special Rapporteurs", - "values": [ - "Special procedures", - "Treaty bodies", - "UPR process" - ] - }, - { - "text": "Respond positively to requests from Special Procedures on the right to food, human rights defenders, adequate housing, health, extrajudicial executions and toxic waste to visit China", - "values": [ - "Special procedures" - ] - }, - { - "text": "Effectively enforce the national law criminalising those who organize begging and trafficking of children and establish a high level focal point responsible to coordinate child protection efforts", - "values": [ - "Labour", - "Rights of the Child", - "Trafficking" - ] - }, - { - "text": "Ensure that victims of human trafficking are not detained but instead granted proper protection, as well as expand the reflection period while making it entirely unconditional ", - "values": [ - "Trafficking" - ] - }, - { - "text": "Prioritize legislation and domestic policies aimed at eliminating domestic violence and protecting women's rights and gender equality, particularly in relation to property, family and employment ", - "values": [ - "Rights of the Child", - "Women's rights" - ] - }, - { - "text": "Step up efforts in the fight against trafficking in human beings, including the full implementation of the recommendations from the Special Rapporteur on trafficking, after her visit to Gabon in May 2012", - "values": [ - "Special procedures", - "Trafficking" - ] - }, - { - "text": "Make more vigorous efforts to combat violence against children and child trafficking and strengthen cooperation with the United Nations in protecting the rights of the child", - "values": [ - "Rights of the Child", - "Technical assistance and cooperation", - "Trafficking" - ] - }, - { - "text": "Implement outstanding legislative reforms to prevent violence against children and child abuse in accordance with its obligations under the Convention on the Rights of the Child ", - "values": [ - "International instruments", - "Rights of the Child" - ] - }, - { - "text": "Take all the necessary measures to restore the State authority", - "values": [ - "Public security" - ] - }, - { - "text": "Launch awareness-raising campaigns to address harmful traditional practices that adversely affect the implementation of its human rights commitments", - "values": [ - "Human rights education and training", - "Torture and other CID treatment" - ] - }, - { - "text": "Continue its efforts to strengthen the judiciary in the field of human rights and improve access to justice as a priority of its national policy", - "values": [ - "Justice" - ] - }, - { - "text": "Ratify the Optional Protocol to the Convention on the Elimination of All Forms of Discrimination against Women.", - "values": [ - "International instruments", - "Women's rights" - ] - }, - { - "text": "Strengthen measures against the practice of female genital mutilation", - "values": [ - "Rights of the Child", - "Torture and other CID treatment", - "Women's rights" - ] - }, - { - "text": "Prevent and treat diseases and popularize knowledge in the prevention and treatment of chronic diseases", - "values": [ - "Right to health" - ] - }, - { - "text": "Liberia remains committed to protecting all with in its border from politically motivated disappearances.", - "values": [ - "Enforced disappearances" - ] - }, - { - "text": "Continue efforts to eradicate violence against women ", - "values": [ - "Women's rights" - ] - }, - { - "text": "Make a contribution to the promotion and advancement of human rights, working through regional human rights mechanisms by way of its membership of the League of Arab States and the African Union. ", - "values": [ - "General" - ] - }, - { - "text": "Continue with the reform of the judicial system by improving case-handling in the courts and the execution of judicial decisions in order to boost public confidence in the administration of justice ", - "values": [ - "Justice" - ] - }, - { - "text": "Keep its commitment and continue to work with partners nationally, regionally and internationally to implement its action plan to promote women's rights and combat violence against women", - "values": [ - "Women's rights" - ] - }, - { - "text": "Effectively strengthen its human rights institutional framework and further promote concrete programmes to raise awareness of human rights.", - "values": [ - "Human rights education and training" - ] - }, - { - "text": "Consider ways by which participation of women in political life be further increased, both in terms of absolute numbers but also in terms of quality of participation", - "values": [ - "Women's rights" - ] - }, - { - "text": "Study the possibility of consolidating the national health system, including through public-private partnerships", - "values": [ - "Right to health" - ] - }, - { - "text": "Further develop educational services and programmes for the training of persons with disabilities in partnership with relevant institutions", - "values": [ - "Disabilities", - "Right to education" - ] - }, - { - "text": "Undertake awareness-raising campaigns to change the mindset regarding persons belonging to ethnic minorities, and remedy the lack of a legislative framework designed to guarantee non-discrimination ", - "values": [ - "Human rights education and training", - "Minorities", - "Racial discrimination" - ] - }, - { - "text": "Adopt comprehensive legislation concerning domestic violence ", - "values": [ - "Rights of the Child", - "Women's rights" - ] - }, - { - "text": "Cooperate actively with international mechanisms in order to implement human rights at all levels of society. ", - "values": [ - "International instruments" - ] - }, - { - "text": "It has asked the Human Rights Council for technical assistance to help it run human rights training courses and workshops for law enforcement personnel and members of the Prosecution Service and the judiciary.", - "values": [ - "Human rights education and training", - "Justice", - "Technical assistance and cooperation" - ] - }, - { - "text": "Continue its efforts to provide protection and care for its elderly population and other vulnerable groups", - "values": [ - "Minorities" - ] - }, - { - "text": "Investigate sexual violence in conflict", - "values": [ - "Women's rights" - ] - }, - { - "text": "Take the necessary measures to ensure freedom of expression and association of everyone and, specifically simplify the registration procedure for public associations, including nongovernmental organizations, political parties and trade unions - remove the prohibition against any activity by non-registered associations - and abolish article 193-1 of the Constitution, which criminalizes the carrying out of an activity within such a non-registered organization ", - "values": [ - "Civil society", - "Freedom of association and peaceful assembly", - "Freedom of opinion and expression", - "Labour" - ] - }, - { - "text": "Address the concerns of UNICEF that discrimination persists in the law relating to marriage as regards the minimum legal age of marriage, which is 15 for girls and 16 for boys, these ages are too low in both cases, according to UNICEF ", - "values": [ - "Rights of the Child" - ] - }, - { - "text": "Ratify the Rome Statute of the ICC in order to finalise the accession to this instrument signed in 2000", - "values": [ - "International instruments", - "Justice" - ] - }, - { - "text": "Repeal the Armed Forces (Special Powers) Act and the Public Safety Act and take credible actions to end the prevailing culture of impunity in \u201cIndian-Occupied Kashmir\u201c", - "values": [ - "Impunity", - "Public security" - ] - }, - { - "text": "Ratify core international human rights instruments, such as the International Convention on the Elimination of All Forms of Racial Discrimination ICERD, ICESCR, ICCPR and CAT, within the context of Council resolution 9-12", - "values": [ - "CP rights - general", - "ESC rights - general", - "International instruments", - "Racial discrimination", - "Torture and other CID treatment" - ] - }, - { - "text": "Take further steps to overcome the obstacles faced by persons with disabilities in accessing the labour market, including through positive action measures", - "values": [ - "Disabilities", - "Labour" - ] - }, - { - "text": "Study the possibility of harmonizing the domestic legislation with recently ratified international conventions and protocols ", - "values": [ - "International instruments" - ] - }, - { - "text": "Devote special attention to protecting and promoting the rights of women and children in the processes of developing and implementing national policy", - "values": [ - "Rights of the Child", - "Women's rights" - ] - }, - { - "text": "Conclude as soon as possible the ratification of CRPD as well as OPCRC-AC", - "values": [ - "Disabilities", - "International instruments", - "Rights of the Child" - ] - }, - { - "text": "Bring domestic legislation into conformity with CEDAW", - "values": [ - "International instruments", - "Statelessness and the right to nationality", - "Women's rights" - ] - }, - { - "text": "Repeal or modify the Penal Code relating to national security particularly Articles 79, 88 and 258, in order to prevent those articles from being applied in an arbitrary manner to impede freedom of opinion and expression, including on the Internet ", - "values": [ - "Freedom of opinion and expression" - ] - }, - { - "text": "Immediately stop executions and abolish the death penalty", - "values": [ - "Death penalty" - ] - }, - { - "text": "Implement the recommendations in the report of the COI", - "values": [ - "Justice" - ] - }, - { - "text": "Strengthen measures to combat domestic and sexual violence against women", - "values": [ - "Rights of the Child", - "Women's rights" - ] - }, - { - "text": "Take further steps to eliminate torture and other forms of ill treatment, and ensure an effective and impartial judicial system", - "values": [ - "Justice", - "Torture and other CID treatment" - ] - }, - { - "text": "Keep on the current efforts to improve conditions of detention including limiting the over crowdedness of prisons ", - "values": [ - "Detention" - ] - }, - { - "text": "Continue to take measures to support the rule of law and ensure that justice is brought to Darfur", - "values": [ - "Justice" - ] - }, - { - "text": "Canada remains strongly committed to the rights of indigenous peoples. The rights of Aboriginal people in Canada are protected by the Canadian Constitution and other domestic laws, and Canada is committed to making progress on issues of particular concern to Aboriginal people in Canada.", - "values": [ - "Indigenous peoples" - ] - }, - { - "text": "Pursue a robust policy aimed at promoting and protecting the rights of indigenous people", - "values": [ - "Indigenous peoples" - ] - }, - { - "text": "End the prosecution of mentally-ill persons and minors", - "values": [ - "Disabilities", - "Justice", - "Rights of the Child" - ] - }, - { - "text": "Strengthen relevant provisions for the promotion of women's rights, notably for their participation in political life", - "values": [ - "Women's rights" - ] - }, - { - "text": "Repeal all provisions in the Penal Code and other laws and regulations criminalizing defamation, libel and slander, and ensure that any restrictions on freedom of expression are in line with the International Covenant on Civil and Political Rights", - "values": [ - "Freedom of opinion and expression", - "International instruments" - ] - }, - { - "text": "Consider the possibility of acceding to the Second Optional Protocol to ICCPR", - "values": [ - "Death penalty", - "International instruments" - ] - }, - { - "text": "Continue its efforts to ensure a better integration of foreigners in the Swiss society", - "values": [ - "Asylum-seekers - refugees", - "Migrants" - ] - }, - { - "text": "Further consolidate achievements in domains such as legislative and judicial reform, education, health care and gender equality, and continue to put more priorities and national resources on other important fields of job creation and social security, with greater focus on improving the overall conditions of vulnerable groups of children, women, youth and persons with disabilities", - "values": [ - "Disabilities", - "Justice", - "Right to education", - "Right to health", - "Rights of the Child", - "Women's rights" - ] - }, - { - "text": "Strictly implement its international obligations on addressing the impunity of perpetrators of torture, notably article 4 of the Convention against Torture and Other Cruel, Inhuman or Degrading Treatment or Punishment", - "values": [ - "Impunity", - "International instruments", - "Torture and other CID treatment" - ] - }, - { - "text": "Ratify the Optional Protocol to the Convention against Torture and establish an effective mechanism for investigation of allegations of torture in line with the Manual on the Effective Investigation and Documentation of Torture and Other Cruel, Inhuman or Degrading Treatment or Punishment", - "values": [ - "Detention", - "International instruments", - "Torture and other CID treatment" - ] - }, - { - "text": "Apply promptly and in a non-discriminatory manner the Plan for the Regularization of Foreigners and consider, for these effects, the recommendations of the Inter-American Commission on Human Rights following its visit to the country on December 6, 2013, stating that the process, as a whole, be made in accordance with its international human rights obligations ", - "values": [ - "International instruments", - "Migrants" - ] - }, - { - "text": "Strengthen measures to protect and provide assistance to victims of trafficking in persons, with special emphasis on children victims", - "values": [ - "Rights of the Child", - "Trafficking" - ] - }, - { - "text": "Strengthen its ongoing Public Education Programme on Human Rights", - "values": [ - "Human rights education and training" - ] - }, - { - "text": "Promote a legal framework providing legal certainty for the protection of the rights of indigenous peoples", - "values": [ - "Indigenous peoples" - ] - }, - { - "text": "Ratify ICRMW ", - "values": [ - "International instruments", - "Labour", - "Migrants" - ] - }, - { - "text": "Strengthen the dialogue with the African Union and the United Nations with a view to adopting strategies for the protection of human rights", - "values": [ - "Technical assistance and cooperation" - ] - }, - { - "text": "Allow for the functioning of non-Muslim religious communities, especially the ones that are already recognized as minorities, without undue constraints, in line with the European Convention on Human Rights and the case law of the European Court of Human Rights ", - "values": [ - "Freedom of religion and belief", - "Minorities" - ] - }, - { - "text": "Introduce a de jure moratorium on executions until the government abolishes the death penalty ", - "values": [ - "Death penalty" - ] - }, - { - "text": "Continue to take serious measures to promote inter-religious and intercultural dialogue in the country and to prevent the reoccurrence of irresponsible acts which perpetuate religious hatred and intolerance ", - "values": [ - "Freedom of religion and belief", - "Minorities", - "Racial discrimination" - ] - }, - { - "text": "Take measures that address the root causes of the very worrisome increase in crime rates over the past years ", - "values": [ - "Public security" - ] - }, - { - "text": "Officially and publicly condemn all acts of torture and ill-treatment so that they do not remain unpunished, resorting to civilian and not to military justice", - "values": [ - "Justice", - "Torture and other CID treatment" - ] - }, - { - "text": "Continue its efforts to meet the development challenges in such areas as vocational training, improving natural disaster management and protection of vulnerable groups, achieve sustainable development and enhance the State's capacities to protect rights and fundamental freedoms of all Vietnamese citizens. share the five lessons included in its national report with developing countries", - "values": [ - "Environment", - "General" - ] - }, - { - "text": "Strengthen independent procedures for prison inspection, reduce overcrowding in places of detention, separate minors from adults in prisons and detentions facilities, and bring the juvenile justice system into line with internationally recognized standards", - "values": [ - "Detention" - ] - }, - { - "text": "Clearly prohibit torture and ill-treatment along with effective enforcement of relevant legislations ", - "values": [ - "Torture and other CID treatment" - ] - }, - { - "text": "Take concrete measures to address the issue of self-censorship among Moldovan journalists", - "values": [ - "Freedom of opinion and expression", - "Freedom of the press" - ] - }, - { - "text": "Ensure that the implementation of programs supported by loans from the International Monetary Fund and the World Bank should not be carried out at the expense of basic social sectors such as education and health, nor should it exclude the marginalized vulnerable groups such as children, women and people with disabilities ", - "values": [ - "Development", - "Disabilities", - "Right to education", - "Right to health", - "Rights of the Child", - "Women's rights" - ] - }, - { - "text": "Continue to strengthen the rights of indigenous peoples, placing priority on the adoption of a law to prevent and eliminate all forms of discrimination and criminalizing such offences", - "values": [ - "Indigenous peoples" - ] - }, - { - "text": "Step up efforts to establish a mechanism to monitor measures to help address and ameliorate the conditions of women and children", - "values": [ - "Rights of the Child", - "Women's rights" - ] - }, - { - "text": "Provide comprehensive disability protection, with particular attention to the rights of children, while avoiding medical and political practices that affect the freedom and dignity of persons with disabilities", - "values": [ - "Disabilities", - "Rights of the Child" - ] - }, - { - "text": "Amend legislation in order to decriminalize abortion under certain circumstances, such as pregnancies that are the result of rape", - "values": [ - "Rights of the Child", - "Women's rights" - ] - }, - { - "text": "Explicitly prohibit corporal punishment in family and school ", - "values": [ - "Rights of the Child", - "Torture and other CID treatment" - ] - }, - { - "text": "Consider implementing the recommendations of human rights treaty bodies and special procedures concerning indigenous people ", - "values": [ - "Indigenous peoples", - "Special procedures", - "Treaty bodies" - ] - }, - { - "text": "Develop a comprehensive national policy and strategic plans to create jobs and provide equal opportunities ", - "values": [ - "Development" - ] - }, - { - "text": "Continue paying attention to the prevention and eradication of human trafficking", - "values": [ - "Trafficking" - ] - }, - { - "text": "Work towards ending all forms of discrimination by passing the current Congressional Bill outlawing discrimination and ensuring all existing legislation is in conformity with the Bill's objectives ", - "values": [ - "Other" - ] - }, - { - "text": "Speed up efforts to ratify the Optional Protocol to the Convention against Torture and Other Cruel, Inhuman or Degrading Treatment or Punishment", - "values": [ - "Detention", - "International instruments", - "Torture and other CID treatment" - ] - }, - { - "text": "Study the possibility of signing and ratifying the following international instruments: ICCPR, ICESCR, CAT and the International Convention for the Protection of All Persons from Enforced Disappearance (CED) ", - "values": [ - "CP rights - general", - "ESC rights - general", - "Enforced disappearances", - "International instruments", - "Torture and other CID treatment" - ] - }, - { - "text": "Take the steps necessary to formalize the moratorium on death penalty with a view to subsequently abolish the death penalty and adhere to the resolutions of the General Assembly in this regard.", - "values": [ - "Death penalty" - ] - }, - { - "text": "Develop a national human rights action plan ", - "values": [ - "General" - ] - }, - { - "text": "Ratify the Council of Europe Convention on the Protection of Children against Sexual Exploitation and Sexual Abuse, signed by Norway on 25 October 2007 ", - "values": [ - "International instruments", - "Rights of the Child" - ] - }, - { - "text": "Provide access to free, quality health-care services for all children", - "values": [ - "Right to health", - "Rights of the Child" - ] - }, - { - "text": "Take the necessary measures to ban the practice of corporal punishment within the family.", - "values": [ - "Rights of the Child", - "Torture and other CID treatment" - ] - }, - { - "text": "Continues its efforts to address violence against women and to speed up efforts to enact the Gender Equality Bill", - "values": [ - "Women's rights" - ] - }, - { - "text": "Continue its efforts to change the perception of the general public and government officials, vis-à-vis minorities ", - "values": [ - "Minorities" - ] - }, - { - "text": "Become a party to the Convention on the Rights of Persons with Disabilities", - "values": [ - "Disabilities", - "International instruments" - ] - }, - { - "text": "Increase the total number of Public Defenders and to secure a constant presence of Public Defenders in all detention institutions", - "values": [ - "Detention" - ] - }, - { - "text": "Fully implement the framework for the reform of the justice system established in the September 2010 report by the Special Rapporteur on the situation of human rights in Cambodia ", - "values": [ - "Justice", - "Special procedures" - ] - }, - { - "text": "Recommended establishing a moratorium on executions and seriously consider abolition of the death penalty.", - "values": [ - "Death penalty" - ] - }, - { - "text": "Consider the possibility of re-examining areas of its legislation that have led to restrict political freedom and freedom of expression, arbitrary arrests, detention, executions and torture, as part of wider effort to strengthen the rule of law", - "values": [ - "Detention", - "Freedom of opinion and expression", - "Justice", - "Torture and other CID treatment" - ] - }, - { - "text": "Safeguard the rights of victims of human trafficking consistent with its human rights obligations ", - "values": [ - "Trafficking" - ] - }, - { - "text": "Continue its efforts to eradicate traditional harmful practices, such as child, forced and early marriage and other forms of gender violence, including female genital mutilation and those based on superstition, such as fear of \u201cwitchcraft\u201c", - "values": [ - "Rights of the Child", - "Torture and other CID treatment", - "Women's rights" - ] - }, - { - "text": "Conduct in-depth examinations into how race-related issues are affecting law enforcement and the administration of justice", - "values": [ - "Justice", - "Racial discrimination" - ] - }, - { - "text": "Continue the increased cooperation with the National Human Rights Commission and study ways to strengthen this institution, its status and functions", - "values": [ - "National Human Rights Institution" - ] - }, - { - "text": "Fully ensure the protection of cultural, educational, religious and linguistic rights of all the communities and minorities living in Ukraine, welcoming in this regard the submission of the recent Law on education to the Venice Commission for an expert opinion, which should be fully taken into account", - "values": [ - "ESC rights - general", - "Freedom of religion and belief", - "Minorities", - "Right to education" - ] - }, - { - "text": "Take steps to prevent incidents of discrimination and violence against women ", - "values": [ - "Women's rights" - ] - }, - { - "text": "Put in place the necessary legislation to eliminate gender-based violence ", - "values": [ - "Women's rights" - ] - }, - { - "text": "Ensure unconditional access to primary, secondary and tertiary education for all groups of society, irrespective of their socioeconomic situation, ethnic background or gender", - "values": [ - "Right to education" - ] - }, - { - "text": "Redouble efforts aimed at stopping the recruitment and use of children in armed conflict", - "values": [ - "International humanitarian law", - "Rights of the Child" - ] - }, - { - "text": "Continue to take appropriate steps and allocate sufficient resources to socioeconomic rights for vulnerable groups", - "values": [ - "ESC rights - general" - ] - }, - { - "text": "Continue to strengthen measures to reform the judicial system, in line with applicable international standards ", - "values": [ - "Justice" - ] - }, - { - "text": "Abrogate the provisions criminalizing sexual relations between consenting adults of the same sex ", - "values": [ - "Sexual Orientation and Gender Identity" - ] - }, - { - "text": "Extend a moratorium on the death penalty, make public the number of sentences and executions carried out, and consider the ratification of the Second Optional Protocol to the International Covenant on Civil and Political Rights ", - "values": [ - "Death penalty", - "International instruments" - ] - }, - { - "text": "Strengthen measures to protect the human rights of non-citizens and migrant workers to prevent their exploitation and discrimination", - "values": [ - "Labour", - "Migrants" - ] - }, - { - "text": "Accelerate, if possible, the process of ratification of the International Convention for the Protection of All Persons from Enforced Disappearance, scheduled, in principle, for 2014", - "values": [ - "Enforced disappearances", - "International instruments" - ] - }, - { - "text": "Ensure the rights of indigenous peoples, in particular the rights to traditional lands, territories and resources, and their right to be consulted ", - "values": [ - "Indigenous peoples", - "Right to land" - ] - }, - { - "text": "Establish a moratorium on the use of the death penalty", - "values": [ - "Death penalty" - ] - }, - { - "text": "Continue its literacy campaign in cooperation with the United Nations Children's Fund (UNICEF)", - "values": [ - "Right to education", - "Rights of the Child", - "Technical assistance and cooperation" - ] - }, - { - "text": "Consider the ratification of the Convention against Torture", - "values": [ - "International instruments", - "Torture and other CID treatment" - ] - }, - { - "text": "Strengthen the national framework for the reduction of all forms of discrimination, especially against persons with albinism", - "values": [ - "Minorities" - ] - }, - { - "text": "Call on the international community to increase its support to allow the implementation of noble objectives Nigeria has set regarding human rights", - "values": [ - "Technical assistance and cooperation" - ] - }, - { - "text": "Ensure that any decision obliging a foreigner to leave the country is in accordance with international standards and under no circumstances should a person needing international protection be expelled, in accordance with the Convention Relating to the Status of Refugees, the Convention against Torture and Other Cruel, Inhuman or Degrading Treatment or Punishment and the International Covenant on Civil and Political Rights, to all of which Denmark is a party ", - "values": [ - "Asylum-seekers - refugees", - "International instruments" - ] - }, - { - "text": "Make changes to the Constitution Amendment Act of 2010 to fully guarantee freedom of religion or belief ", - "values": [ - "Freedom of religion and belief" - ] - }, - { - "text": "Issue a standing invitation to all United Nations Special Procedures and ratify OP-CAT and establish its national preventive mechanism accordingly ", - "values": [ - "Detention", - "International instruments", - "Special procedures", - "Torture and other CID treatment" - ] - }, - { - "text": "Continue consolidating peace and strengthening a human rights-based culture", - "values": [ - "Human rights education and training" - ] - }, - { - "text": "Strengthen the laws on the protection of the rights of women with a view to effectively address violence against women, including sexual violence and female genital mutilation", - "values": [ - "Rights of the Child", - "Torture and other CID treatment", - "Women's rights" - ] - }, - { - "text": "Take measures to improve the procedure of appointment, transfer and promotion of judges in order to provide transparency in the judicial system and that the selection of judges is based on merit and not on the discretion of the Supreme Council of Magistracy", - "values": [ - "Justice" - ] - }, - { - "text": "Pursue its efforts aimed at improving the living conditions of persons with disabilities", - "values": [ - "Disabilities" - ] - }, - { - "text": "Issue a standing invitation to all special procedures of the United Nations Human Rights Council ", - "values": [ - "Special procedures" - ] - }, - { - "text": "Accede to the Optional Protocol to the Convention against Torture (OPCAT)", - "values": [ - "Detention", - "International instruments", - "Torture and other CID treatment" - ] - }, - { - "text": "Actively seek to address concerns on the use of administrative detention, to review it, and ensure that current detainees have access to legal representation and to the courts", - "values": [ - "Detention" - ] - }, - { - "text": "Take steps to ensure civil and political rights are upheld, including freedom of expression and freedom from arbitrary arrest and detention ", - "values": [ - "Detention", - "Freedom of opinion and expression" - ] - }, - { - "text": "Undertake a study on the sexual exploitation of children and adopt a national plan of action against sexual exploitation of children ", - "values": [ - "Rights of the Child" - ] - }, - { - "text": "Issue standing invitations to all Special Procedures of the Council", - "values": [ - "Special procedures" - ] - }, - { - "text": "Extend an open invitation to the special procedures of the Human Rights Council and allow them to visit the country", - "values": [ - "Special procedures" - ] - }, - { - "text": "Immediately live up to its commitment to end the use of child soldiers and minors in armed conflicts", - "values": [ - "International humanitarian law", - "Rights of the Child" - ] - }, - { - "text": "Continue to take measures to eradicate poverty and to ensure better access to education and health care ", - "values": [ - "Poverty", - "Right to education", - "Right to health" - ] - }, - { - "text": "Amends all local laws and regulations that discriminate against women and marginalized groups", - "values": [ - "Minorities", - "Women's rights" - ] - }, - { - "text": "Take measures to promote and protect the human rights of women, namely, measures to prevent, to inform and to fight against discrimination and violence against them", - "values": [ - "Women's rights" - ] - }, - { - "text": "Punish and prevent trafficking in children for the purpose of forced labour ", - "values": [ - "Labour", - "Rights of the Child", - "Trafficking" - ] - }, - { - "text": "Adopt legislative and administrative measures that would give greater coverage to the protection of the rights of refugees, asylum seekers and stateless persons", - "values": [ - "Asylum-seekers - refugees", - "Statelessness and the right to nationality" - ] - }, - { - "text": "Ensure the effective implementation of the national strategy on maternal and child mortality, including through addressing root causes of under-5 mortality, such as poverty, undernutrition, harmful practices, and lack of access to safe drinking water, health-care services and education", - "values": [ - "Right to health", - "Rights of the Child", - "Women's rights" - ] - }, - { - "text": "Accede to the OP-CEDAW, to further strengthen its commitment to the equality and protection of women", - "values": [ - "International instruments", - "Women's rights" - ] - }, - { - "text": "Redouble efforts to ensure the enjoyment of human rights of all migrants, ensuring decent and fair treatment regardless of their immigration status", - "values": [ - "Migrants" - ] - }, - { - "text": "Continue the efforts at improving the access to water and sanitation ", - "values": [ - "Right to water and sanitation" - ] - }, - { - "text": "Further reform the institutional framework, including in the area of the electoral process and the mass media, in order to fully ensure the democratic process in the country", - "values": [ - "Elections" - ] - }, - { - "text": "Involve civil society, including human rights non-governmental organizations, in the follow-up to this review", - "values": [ - "Civil society", - "UPR process" - ] - }, - { - "text": "Implement fully the Family Protection Act from 2013, to ensure that police and prosecutors treat gender-based violence, including within the family, as criminal matters, and to adopt a comprehensive national action plan to combat sexual and gender-based violence, including raising general awareness through education and training, develop official and credible statistics, and ensuring access to justice for victims ", - "values": [ - "Human rights education and training", - "Women's rights" - ] - }, - { - "text": "Continue to engage in a national dialogue with a view to promoting respect for diversity and tolerance.", - "values": [ - "General" - ] - }, - { - "text": "Accept the pending visit request of the Special Rapporteur on the human rights of migrants, which is pending since 2006", - "values": [ - "Migrants", - "Special procedures" - ] - }, - { - "text": "Continue implementing strategies and socio-economic development plans to advance in the realization of the Millennium goals by 2015", - "values": [ - "Development" - ] - }, - { - "text": "That the law enforcement authorities put an end to stop and search practices based on religious and ethnic profiling ", - "values": [ - "Freedom of religion and belief", - "Racial discrimination" - ] - }, - { - "text": "Step up measures to safeguard the rights of the child, including by preventing discrimination against children of disadvantaged or vulnerable groups, and by stronger implementation of child labour laws and the revised 2012-2015 National Action Plan on Children's Rights", - "values": [ - "Labour", - "Rights of the Child" - ] - }, - { - "text": "Take all the necessary measures to ensure that the National Commission for Human Rights is in line with the Paris Principles", - "values": [ - "National Human Rights Institution" - ] - }, - { - "text": "Prioritize the implementation of a formal education programme for incarcerated men, women and youth, with appropriate support from the private sector and civil society", - "values": [ - "Civil society", - "Detention", - "Right to education", - "Women's rights" - ] - }, - { - "text": "Publicize the statistics on executions", - "values": [ - "Death penalty" - ] - }, - { - "text": "Ensure that the reforms of the jurisdiction of military tribunals provide that civilian cases are not heard by military tribunals, in accordance with international human rights standards", - "values": [ - "International instruments", - "Justice" - ] - }, - { - "text": "Continue its efforts to promote economic, social and cultural rights and intensify national and anti-poverty programmes ", - "values": [ - "ESC rights - general", - "Poverty" - ] - }, - { - "text": "Redouble its efforts to address racially motivated hate crimes by ensuring that all such incidents are thoroughly investigated and that perpetrators are brought to justice, and to continue to raise awareness of its people on this issue ", - "values": [ - "Racial discrimination" - ] - }, - { - "text": "Become a party the Optional Protocol to the Convention against Torture (OPCAT)", - "values": [ - "Detention", - "International instruments", - "Torture and other CID treatment" - ] - }, - { - "text": "Take other legislative measures to declare illegal organizations that incite racial discrimination", - "values": [ - "Racial discrimination" - ] - }, - { - "text": "Undertake reforms of the judicial system to ensure that the procedures are in conformity with international standards for an equitable judgment (article 14 of the International Covenant on Civil and Political Rights)", - "values": [ - "International instruments", - "Justice" - ] - }, - { - "text": "Review its national laws and practices to end the detention of all migrant children", - "values": [ - "Detention", - "Migrants", - "Rights of the Child" - ] - }, - { - "text": "Prevent hate speech on the Internet and intensify the fight against hate crime through the implementation of the National Action Plan on Fundamental and Human Rights and other measures", - "values": [ - "Racial discrimination" - ] - }, - { - "text": "Allocate substantial funds for addressing the situation of the internally displaced persons and refugees to internal organizations and NGOs", - "values": [ - "Asylum-seekers - refugees", - "Civil society", - "Internally displaced persons" - ] - }, - { - "text": "Respect its obligation not to return intercepted migrants in international waters in conformity with international law and norms", - "values": [ - "Migrants" - ] - }, - { - "text": "Ratify the OP-CRPD", - "values": [ - "Disabilities", - "International instruments" - ] - }, - { - "text": "Take practical steps to implement fully the Convention on the Rights of Persons with Disabilities at both the federal and state levels to ensure that persons with disabilities enjoy equal rights and opportunities in Papua New Guinea, including by creating a database to guide policy planning and provision of services ", - "values": [ - "Disabilities", - "International instruments" - ] - }, - { - "text": "Maintain the legal effects, scope and effectiveness of the Human Rights Act in the adoption of new legislation", - "values": [ - "General" - ] - }, - { - "text": "Continue cooperation and dialogue between the Government and non-governmental organizations ", - "values": [ - "Civil society" - ] - }, - { - "text": "Ensure media plurality and independence, and take into account the opinions received from the Organization for Security and Cooperation in Europe and the Council of Europe, as well as from civil society, when adopting a new audiovisual code", - "values": [ - "Civil society", - "Freedom of the press" - ] - }, - { - "text": "Ensure that the national human rights institutions and the national preventative mechanism comply with the Paris Principles", - "values": [ - "Detention", - "National Human Rights Institution" - ] - }, - { - "text": "Further protect women's rights and combat violence against women", - "values": [ - "Women's rights" - ] - }, - { - "text": "With regard to conventions and protocols, the Government was committed to make every possible effort to complete the following steps in the next three months: (a) To ratify the Convention on the Rights of Persons with Disabilities, (b) To accede to the Protocol to Prevent, Suppress and Punish Trafficking in Persons, Especially Women and Children, supplementing the United Nations Convention against Transnational Organized Crime, (c) To ratify the International Convention for the Protection of All Persons from Enforced Disappearance, (d) To ratify the International Convention on the Elimination of All Forms of Racial Discrimination, (e) To accede to the Optional Protocol to the Convention on the Elimination of All Forms of Discrimination against Women, (f) To ratify the Convention against Torture and Other Cruel, Inhuman or Degrading Treatment or Punishment and the Optional Protocol thereto.", - "values": [ - "International instruments" - ] - }, - { - "text": "Strengthen cooperation with human rights mechanisms and engage with OHCHR, and avail itself of the Office's expertise, in order to demonstrate transparency and to adopt measures to better ensure the full enjoyment of human rights and fundamental freedoms for all", - "values": [ - "Technical assistance and cooperation" - ] - }, - { - "text": "Grant sufficient means and resources to the National Human Rights Commission", - "values": [ - "National Human Rights Institution" - ] - }, - { - "text": "Improve the situation of asylum seekers and guarantee their rights to an adequate standard of living and remedy their housing conditions", - "values": [ - "Asylum-seekers - refugees", - "Right to housing" - ] - }, - { - "text": "Provide an update at its mid-term review on the number of detention centres in the country containing separate facilities for juvenile offenders", - "values": [ - "Detention", - "Rights of the Child", - "UPR process" - ] - }, - { - "text": "Continue promoting Human rights education and trainingat all educational levels", - "values": [ - "Human rights education and training" - ] - }, - { - "text": "Adopt a more rigorous, systematic and transparent inquiry policy for the investigation of allegations of use of excessive force by its internal security forces, and that the members of its forces that are condemned for violating the rights of the citizens be systematically held accountable for their actions", - "values": [ - "Human rights violations by state agents" - ] - }, - { - "text": "Ratify ILO Convention No. 189 (2011) concerning decent work for domestic workers and adapt its national legislation accordingly ", - "values": [ - "International instruments", - "Labour" - ] - }, - { - "text": "Follow the approach it took for economic, social and cultural rights with respect to civil and political rights, including freedom of religion or belief and the right to a fair trial", - "values": [ - "Freedom of religion and belief", - "Justice" - ] - }, - { - "text": "Ensure that the rights of migrants and refugees, especially children, are guaranteed", - "values": [ - "Asylum-seekers - refugees", - "Migrants", - "Rights of the Child" - ] - }, - { - "text": "Guarantee that all national and international NGOs operating in Ethiopia can do so freely and without fear of harassment, intimidation or arbitrary arrest ", - "values": [ - "Civil society" - ] - }, - { - "text": "Continue to seriously improve the situation of children.", - "values": [ - "Rights of the Child" - ] - }, - { - "text": "Lift the reservation to article 22 of ICERD as well as the two declarations on the implementation and the territorial applicability of the convention ", - "values": [ - "International instruments", - "Racial discrimination" - ] - }, - { - "text": "Pursue efforts to take the necessary measures to ensure the full implementation of the Rome Statute, the CRPD and the Optional Protocol to CEDAW in its national legislation ", - "values": [ - "Disabilities", - "International instruments", - "Justice", - "Women's rights" - ] - }, - { - "text": "Reform national legislation with the aim of improving the protection of children and women from violence and above all domestic violence ", - "values": [ - "Rights of the Child", - "Women's rights" - ] - }, - { - "text": "Raise the minimum age of criminal responsibility and prohibit sentences of corporal punishment and life imprisonment for children under the age of 18 ", - "values": [ - "Justice", - "Rights of the Child", - "Torture and other CID treatment" - ] - }, - { - "text": "Adopt measures to condemn racist rhetoric and hate speech, and apply specific measures on the integration and inclusion of migrants aimed at the population at large", - "values": [ - "Migrants" - ] - }, - { - "text": "Release all people in administrative detention for political reasons including bishops, priests, artists, reporters, dissidents, people working to advance human rights, and their family members, and eliminate extra-judicial measures like forced disappearances", - "values": [ - "Detention", - "Enforced disappearances", - "Freedom of opinion and expression", - "Freedom of religion and belief", - "Freedom of the press", - "Human rights defenders" - ] - }, - { - "text": "Decriminalize homosexuality and, as a first step, declare a moratorium on the application of penalties ", - "values": [ - "Sexual Orientation and Gender Identity" - ] - }, - { - "text": "Continue implementing legislation to address the multiple forms of discrimination on the basis of disability", - "values": [ - "Disabilities" - ] - }, - { - "text": "Strengthen the independent federal-level judicial and legislative oversight of surveillance activities of all digital communications with the aim of ensuring that the right of privacy is fully upheld, especially with regard to individuals outside the territorial borders of the United States", - "values": [ - "Privacy" - ] - }, - { - "text": "Implement the recommendations of the Committee on the Elimination of Discrimination against Women from 2006 to bring article 7 of the Constitution and section 10 of the Citizenship Act in line with article 9 of the Convention on the Elimination of All Forms of Discrimination against Women (CEDAW)", - "values": [ - "International instruments", - "Treaty bodies", - "Women's rights" - ] - }, - { - "text": "Consider taking all necessary steps to introduce a de jure moratorium of capital executions with a view to fully abolish the death penalty", - "values": [ - "Death penalty" - ] - }, - { - "text": "Continue efforts to address discrimination against women and combat gender-based violence", - "values": [ - "Women's rights" - ] - }, - { - "text": "Continue its efforts to promote the rights of workers and to reduce the rate of unemployment among Liberian young people, particularly through the revision of the draft proposed labour law called - Decent Work -", - "values": [ - "Development", - "Labour" - ] - }, - { - "text": "Further expand its school feeding programme and integrate it with local agricultural production ", - "values": [ - "Right to food" - ] - }, - { - "text": "Allow access to its territory to the Commission of Inquiry and cooperate fully with the Commission", - "values": [ - "Technical assistance and cooperation" - ] - }, - { - "text": "Implement mechanisms to follow up UPR recommendations in order to verify the implementation and impact of policies and measures adopted to promote equality of rights and non-discrimination for all citizens, in particular the measures aimed at vulnerable groups such as women, children, ethnic minorities, the LGBTI community and persons in the situation of disability ", - "values": [ - "Minorities", - "Racial discrimination", - "Rights of the Child", - "Sexual Orientation and Gender Identity", - "UPR process", - "Women's rights" - ] - }, - { - "text": "Continue to strengthen national human rights mechanisms ", - "values": [ - "General" - ] - }, - { - "text": "Amend the Law on discriminatory acts to recognize sexual orientation and gender identity as prohibited grounds for discrimination before its next review under the universal periodic review", - "values": [ - "Sexual Orientation and Gender Identity" - ] - }, - { - "text": "Abolish all legal inequalities between registered same-sex partnership and marriage", - "values": [ - "Sexual Orientation and Gender Identity" - ] - }, - { - "text": "Strengthen the promotion of activities generating income for women ", - "values": [ - "Women's rights" - ] - }, - { - "text": "Consider ratifying OPCAT in the near future ", - "values": [ - "Detention", - "International instruments", - "Torture and other CID treatment" - ] - }, - { - "text": "Take further steps to mitigate the impact of the economic crisis and the austerity measures on social and economic rights of the most vulnerable groups of the society", - "values": [ - "Development", - "ESC rights - general" - ] - }, - { - "text": "Continue to take action towards a comprehensive gender equality strategy ", - "values": [ - "Women's rights" - ] - }, - { - "text": "Establish an independent committee responsible for appointing judges", - "values": [ - "Justice" - ] - }, - { - "text": "Devise policies aimed at quelling racist platforms which incite hatred and discrimination within political parties and circles ", - "values": [ - "Racial discrimination" - ] - }, - { - "text": "Ensure that all private security companies are registered and that their activities are properly monitored", - "values": [ - "Public security" - ] - }, - { - "text": "Protect the rights of the child more effectively, particularly during counter-terrorism activities, and by desisting from issuing death sentences and executing juveniles", - "values": [ - "Counter-terrorism", - "Death penalty", - "Rights of the Child" - ] - }, - { - "text": "Ratify the Second Optional Protocol to the International Covenant on Civil and Political Rights, to eliminate the death penalty in national legislation", - "values": [ - "Death penalty", - "International instruments" - ] - }, - { - "text": "Take the necessary measures to guarantee the rights of women, investigate and punish those responsible for these violations, provide assistance to victims and raise awareness about patriarchal attitudes and deeply entrenched stereotypes", - "values": [ - "Women's rights" - ] - }, - { - "text": "Strengthen human rights training programmes for the different categories of police staff and ensure that all cases of excessive use of force are promptly investigated", - "values": [ - "Human rights education and training", - "Human rights violations by state agents" - ] - }, - { - "text": "Reactivate the dialogue on migration with the North African States, namely Libya, Tunisia, Algeria, Morocco and Egypt", - "values": [ - "Migrants" - ] - }, - { - "text": "Remove the restrictions on the capacity of journalists to freely criticize the Government without fearing reprisals by updating the law on communication of 1990, and the Special Commission on Audio-Visual Communication", - "values": [ - "Freedom of the press" - ] - }, - { - "text": "Repeal the provision preventing Moroccan women from transmitting nationality to their foreign husband", - "values": [ - "Women's rights" - ] - }, - { - "text": "Allow for the free and unimpeded access of human rights observers, humanitarian organizations, medical teams and ambulances to affected areas", - "values": [ - "Other" - ] - }, - { - "text": "Extend an open and standing invitation to Special Rapporteurs and Representatives with a view to making progress in the fulfilment of human rights commitments made", - "values": [ - "Special procedures" - ] - }, - { - "text": "Review the effectiveness of government mechanisms intended to support the achievement of gender equality", - "values": [ - "Women's rights" - ] - }, - { - "text": "Ratify the OP-CRC-AC and OP-CRC-SC ", - "values": [ - "International humanitarian law", - "International instruments", - "Rights of the Child", - "Trafficking" - ] - }, - { - "text": "Continue with its efforts to ratify the International Convention for the Protection of All Persons from Enforced Disappearance", - "values": [ - "Enforced disappearances", - "International instruments" - ] - }, - { - "text": "Uphold the educational concept for minors sentenced to youth custody and maintain separate detention facilities for minors ", - "values": [ - "Detention", - "Rights of the Child" - ] - }, - { - "text": "Take all necessary measures to abrogate in its legislation the provisions allowing the application of death penalty ", - "values": [ - "Death penalty" - ] - }, - { - "text": "Review and strengthen current policies and initiatives to combat societal discrimination against members of racial, religious and ethnic minority groups", - "values": [ - "Freedom of religion and belief", - "Racial discrimination" - ] - }, - { - "text": "Ensure effective implementation and monitoring of the Responsible Parenthood and Reproductive Health Act, in line with international obligations regarding sexual and reproductive health and rights, by increasing access to modern contraceptives", - "values": [ - "International instruments", - "Right to health", - "Women's rights" - ] - }, - { - "text": "Continue efforts aiming at establishing the independent national human rights institution", - "values": [ - "National Human Rights Institution" - ] - }, - { - "text": "Accede to the Optional Protocol to the Convention against Torture", - "values": [ - "Detention", - "International instruments", - "Torture and other CID treatment" - ] - }, - { - "text": "Explore the possibility of strengthening the institutional and operational capacity of the Office of the Ombudsman by allocating human and financial resources ", - "values": [ - "National Human Rights Institution" - ] - }, - { - "text": "Increase the number of female police officers and consider placing them in decision-making positions", - "values": [ - "Women's rights" - ] - }, - { - "text": "Continue its efforts of adhering to international legal instruments in the field of human rights, inter alia, to the Optional Protocol to the Convention against Torture and Other Cruel, Inhuman or Degrading Treatment or Punishment", - "values": [ - "Detention", - "International instruments", - "Torture and other CID treatment" - ] - }, - { - "text": "Systematically and continuously integrate a gender perspective in the follow-up process to the Universal Periodic Review.", - "values": [ - "UPR process", - "Women's rights" - ] - }, - { - "text": "Consider the establishment of budgetary allotments to improve the conditions of the prison population", - "values": [ - "Detention" - ] - }, - { - "text": "Strengthen Malawi's cooperation with the international community, in particular specialized agencies and programmes of the United Nations system, with a view to building capacity and obtaining technical assistance in crucial areas such as poverty eradication, education, health care and social security ", - "values": [ - "Poverty", - "Right to education", - "Right to health", - "Technical assistance and cooperation" - ] - }, - { - "text": "Strengthen and implement the effective protection and full integration into society, of migrants, refugees, asylum seekers and minorities, including the commitments of the New York Declaration for Refugees and Migrants", - "values": [ - "Asylum-seekers - refugees", - "Migrants", - "Minorities" - ] - }, - { - "text": "Improve the investigation of cases of violence against human rights defenders and journalists and publicly acknowledge the importance of human rights defenders in achieving a pluralistic and democratic society", - "values": [ - "Freedom of the press", - "Human rights defenders" - ] - }, - { - "text": "Take adequate steps to lift restrictions on freedom of expression and adopt a framework for the protection of journalists from persecution, intimidation and harassment", - "values": [ - "Freedom of opinion and expression", - "Freedom of the press" - ] - }, - { - "text": "Ratify the Optional Protocol to the International Covenant on Economic, Social and Cultural Rights as well as the Optional Protocol to the Convention on the Rights of the Child on a communications procedure", - "values": [ - "ESC rights - general", - "International instruments", - "Rights of the Child" - ] - }, - { - "text": "Fully protect the legitimate rights and interests of ethnic minorities, women, children, the elderly and disabled persons", - "values": [ - "Disabilities", - "Minorities", - "Rights of the Child", - "Women's rights" - ] - }, - { - "text": "Ensure timely registration of all births ", - "values": [ - "Rights of the Child", - "Statelessness and the right to nationality" - ] - }, - { - "text": "Adopt further measures to reduce the gender pay gap in all sectors of the economy ", - "values": [ - "Women's rights" - ] - }, - { - "text": "Continue and strengthen its efforts towards enforcing the law on female genital mutilation ", - "values": [ - "Rights of the Child", - "Torture and other CID treatment", - "Women's rights" - ] - }, - { - "text": "Integrate specialized and holistic rehabilitation services into the public health system ", - "values": [ - "Right to health" - ] - }, - { - "text": "Bring the Australian juvenile justice system in conformity with international standards, including removing minors from the adult justice system and ensuring their rehabilitation", - "values": [ - "Justice", - "Rights of the Child" - ] - }, - { - "text": "Conduct timely and impartial investigations into the killings of Somali civil society actors and journalists and ensures that threats of violence against these individuals are investigated, and, where there is credible evidence of threats, take the necessary measures to ensure their personal security", - "values": [ - "Extrajudicial executions", - "Freedom of the press", - "Human rights defenders" - ] - }, - { - "text": "Consider formally abolishing the death penalty ", - "values": [ - "Death penalty" - ] - }, - { - "text": "Continue its efforts to ensure a treatment of detainees that is in accordance with international norms and standards", - "values": [ - "Detention" - ] - }, - { - "text": "Adopt a comprehensive strategy which is grounded in human rights principles, in particular non-discrimination and equality, to combat malnutrition and further reduce the mortality rates of children under five ", - "values": [ - "Right to food", - "Right to health", - "Rights of the Child" - ] - }, - { - "text": "Consider sharing its experience and best practices with other developing countries in achieving the MDGs, particularly in areas of primary education, gender equality and reduction of child mortality", - "values": [ - "Development", - "Right to education", - "Rights of the Child", - "Women's rights" - ] - }, - { - "text": "Take steps to ensure that prisoners under the age of 18 are housed separately from the general prison population ", - "values": [ - "Detention", - "Rights of the Child" - ] - }, - { - "text": "Re-evaluate the ratification of the Convention for the Protection of All Persons from Enforced Disappearance ", - "values": [ - "Enforced disappearances", - "International instruments" - ] - }, - { - "text": "Reinforce measures to prevent and combat gender-based violence, particularly in the fight against human trafficking, and with special emphasis on the prevention of the sexual exploitation of children and girls", - "values": [ - "Rights of the Child", - "Trafficking", - "Women's rights" - ] - }, - { - "text": "Exert more efforts to combat or to counter violence against women and girls", - "values": [ - "Rights of the Child", - "Women's rights" - ] - }, - { - "text": "Undertake a transparent and inclusive process with civil society in the implementation of universal periodic review recommendations", - "values": [ - "Civil society", - "UPR process" - ] - }, - { - "text": "Develop public awareness and education programs that advance tolerance on the grounds of sexual orientation and gender identity", - "values": [ - "Human rights education and training", - "Sexual Orientation and Gender Identity" - ] - }, - { - "text": "Introduce human rights education as a mandatory part of teachers' training ", - "values": [ - "Human rights education and training" - ] - }, - { - "text": "Combat discrimination against single mothers and their children", - "values": [ - "Rights of the Child", - "Women's rights" - ] - }, - { - "text": "Revoke any decree that prevents the courts from considering the legality of Government actions, and to abide by future judicial decisions", - "values": [ - "Justice" - ] - }, - { - "text": "Consider enacting a specific law for HIV-AIDS related cases", - "values": [ - "HIV - Aids" - ] - }, - { - "text": "Improve the living conditions for prisoners", - "values": [ - "Detention" - ] - }, - { - "text": "Take measures to complete the reforms in the judicial system and in the defence and security sectors", - "values": [ - "Justice", - "Public security" - ] - }, - { - "text": "Further develop and expand human rights awareness-raising programmes in the country ", - "values": [ - "Human rights education and training" - ] - }, - { - "text": "Take further steps towards the establishment of the OHCHR country office in Myanmar", - "values": [ - "Technical assistance and cooperation" - ] - }, - { - "text": "Analyse the possibility of creating a national follow-up system to international recommendations", - "values": [ - "Special procedures", - "Treaty bodies", - "UPR process" - ] - }, - { - "text": "Continue to prioritize the investigation and prosecution of serious international crimes regardless of political affiliation and cooperate with the International Criminal Court in this regard", - "values": [ - "International instruments", - "Justice" - ] - }, - { - "text": "Take all measures to ensure that indigenous children can fully exercise their rights and establish support programmes for migrant children", - "values": [ - "Indigenous peoples", - "Migrants", - "Rights of the Child" - ] - }, - { - "text": "Poland pledges to further improve the situation of disabled persons. Due to its limited effectiveness, a review of the current system of vocational and social rehabilitation and employment of disabled persons, particularly with regard to vocational ctivation, will be carried out", - "values": [ - "Disabilities" - ] - }, - { - "text": "Ensure the administration of justice is fully consistent with international human rights standards and seek international technical assistance", - "values": [ - "International instruments", - "Justice", - "Technical assistance and cooperation" - ] - }, - { - "text": "Further accelerate efforts aimed at promoting the rights of women and children, in particular those with disabilities", - "values": [ - "Disabilities", - "Rights of the Child", - "Women's rights" - ] - }, - { - "text": "Comply with international instruments, in order to promote the development of friendly relations between nations, guaranteeing the right of an ample right of transit in the ports of the Pacific, ensuring the universal and effective respect for human rights and fundamental freedoms within and beyond its borders ", - "values": [ - "International instruments" - ] - }, - { - "text": "Address torture and implement safeguards to prevent torture and extrajudicial executions.", - "values": [ - "Extrajudicial executions", - "Torture and other CID treatment" - ] - }, - { - "text": "Ensure that all migrant children, irrespective of their migration status, have access to education and healthcare services in the exact same terms as Australian children do", - "values": [ - "Migrants", - "Right to education", - "Right to health", - "Rights of the Child" - ] - }, - { - "text": "Continue its focus on domestic and gender-based violence and ensure the effective implementation of the national action plan in this regard", - "values": [ - "Rights of the Child", - "Women's rights" - ] - }, - { - "text": "Ensure due implementation of measures aimed at addressing persistent domestic violence, including marital rape", - "values": [ - "Rights of the Child", - "Women's rights" - ] - }, - { - "text": "Strengthen legislation to prevent the unlawful from undermining other people's interests in the name of human rights defenders", - "values": [ - "Other" - ] - }, - { - "text": "Continue implementing the strategies and plans for socioeconomic development of the country to make progress towards achieving the Millennium Development Goals from now to 2015 ", - "values": [ - "Development" - ] - }, - { - "text": "Strengthen inter-religious dialogue and take measures to promote reconciliation among concerned groups", - "values": [ - "Freedom of religion and belief" - ] - }, - { - "text": "Maintain the separation of powers so that all branches of government respect the constitutional authority of each other branch", - "values": [ - "Other" - ] - }, - { - "text": "That any austerity measures adopted by the Government should be minimal, temporary, proportional, non-discriminatory, and take into account the needs of the poorest and most disadvantaged citizens", - "values": [ - "Development", - "Poverty" - ] - }, - { - "text": "Maintain efforts to implement the information system for the follow up of international human rights recommendations", - "values": [ - "Special procedures", - "Treaty bodies", - "UPR process" - ] - }, - { - "text": "Provide greater resources to ensure universal access to drinking water and sanitation, particularly in rural areas", - "values": [ - "Right to water and sanitation" - ] - }, - { - "text": "Take all possible measures to ensure the full protection of the right to freedom of opinion and expression.", - "values": [ - "Freedom of opinion and expression" - ] - }, - { - "text": "Sign and ratify the Optional Protocol to the Convention on the Elimination of All Forms of Discrimination against Women, establishing a communication mechanism in order to strengthen the tools in the fight against violence and discrimination against women", - "values": [ - "International instruments", - "Women's rights" - ] - }, - { - "text": "Strengthen the protection of minors by providing separate places of detention for adults and minors, by supporting the activities of social organisations to combat child forced labour and by ensuring basic education for all ", - "values": [ - "Detention", - "Labour", - "Right to education", - "Rights of the Child" - ] - }, - { - "text": "Accomplish the human rights goals set by resolution 9-12 of the Human Rights Council. ", - "values": [ - "General" - ] - }, - { - "text": "Intensify efforts to improve the situation of students with an immigrant background in order to increase enrolment and to avoid drop-outs", - "values": [ - "Migrants", - "Right to education" - ] - }, - { - "text": "Improve access to justice for women, indigenous peoples and migrants", - "values": [ - "Indigenous peoples", - "Justice", - "Migrants", - "Women's rights" - ] - }, - { - "text": "Ensure that its indigenous communities, as far as possible, benefit fully from the provision of public services and that their land rights are legally recognized, including via implementation of the 2008 decision of the Inter-American Court of Human Rights ", - "values": [ - "Indigenous peoples", - "Right to land" - ] - }, - { - "text": "Continue awareness-raising campaigns on violence against women and girls and ensure that perpetrators of such crimes are brought to justice", - "values": [ - "Human rights education and training", - "Rights of the Child", - "Women's rights" - ] - }, - { - "text": "Take further measures to guarantee the right to freedom of expression, the right of peaceful assembly, and the right to freedom of association ", - "values": [ - "Freedom of association and peaceful assembly", - "Freedom of opinion and expression" - ] - }, - { - "text": "Review its mandatory detention regime of asylum-seekers, limiting detention to the shortest time reasonably necessary ", - "values": [ - "Asylum-seekers - refugees", - "Detention" - ] - }, - { - "text": "Adopt legal and administrative measures necessary to make effective the investigation and sanction of cases of discriminatory police practices and the use of excessive force by security forces, along with the carrying out of awareness-raising campaigns", - "values": [ - "Human rights education and training", - "Human rights violations by state agents" - ] - }, - { - "text": "Speed up the process of the establishment of a national human rights institution in conformity with Paris Principles", - "values": [ - "National Human Rights Institution" - ] - }, - { - "text": "Continue efforts to implement legislation that takes into account the needs of boys and girls in general, including equal access to universal primary education, as well as, in particular, that of boys and girls with disabilities ", - "values": [ - "Disabilities", - "Right to education", - "Rights of the Child" - ] - }, - { - "text": "Continue its efforts for the preservation and sustainability of the environment ", - "values": [ - "Environment" - ] - }, - { - "text": "Intensify efforts to prevent, combat and prosecute hate speech violating article 20 of ICCPR", - "values": [ - "Freedom of opinion and expression", - "International instruments", - "Racial discrimination" - ] - }, - { - "text": "Take steps, particularly in Papua, to increase protection for human rights defenders against stigmatization, intimidation and attacks and to ensure respect for freedom of expression and peaceful protest, including through a review of regulations that can be used to restrict political expression, in particular article 106 and 110 of the criminal code, and the release of those detained solely for peaceful political activities ", - "values": [ - "Freedom of association and peaceful assembly", - "Freedom of opinion and expression", - "Human rights defenders" - ] - }, - { - "text": "Adopt national legislation prohibiting the use of sterilization of adults without their consent, and of children", - "values": [ - "Disabilities", - "Rights of the Child", - "Torture and other CID treatment" - ] - }, - { - "text": "Continue its efforts in improving human rights in the country, especially education of girls", - "values": [ - "Right to education", - "Rights of the Child", - "Women's rights" - ] - }, - { - "text": "Extend an open and permanent invitation to all special procedures", - "values": [ - "Special procedures" - ] - }, - { - "text": "Adopt further measures to fight impunity for human rights violations, including by law enforcement officials", - "values": [ - "Human rights violations by state agents", - "Impunity" - ] - }, - { - "text": "Sign and ratify the Agreement on the Privileges and Immunities of the Court ", - "values": [ - "International instruments", - "Justice" - ] - }, - { - "text": "Eliminate all forms of discrimination against girls, and ensure gender mainstreaming in all anti-discrimination policies and programmes ", - "values": [ - "Rights of the Child", - "Women's rights" - ] - }, - { - "text": "Continue efforts to foster economic growth and to enhance employment opportunities ", - "values": [ - "Development" - ] - }, - { - "text": "Implement measures to improve conditions in French prisons, including by allocating greater resources to rehabilitation of detainees, improving prisoners' access to medical treatment and instituting preventive measures to lower suicide rates ", - "values": [ - "Detention", - "Right to health" - ] - }, - { - "text": "Ensure satisfactory asylum procedures for all migrants and asylum-seekers rescued at sea", - "values": [ - "Asylum-seekers - refugees" - ] - }, - { - "text": "Consider the possibility of ratifying CED and recognize the competenceof the relevant Committee", - "values": [ - "Enforced disappearances", - "International instruments" - ] - }, - { - "text": "Submit all overdue reports to the treaty bodies", - "values": [ - "Treaty bodies" - ] - }, - { - "text": "Support and protect the family as a fundamental and natural unit of society ", - "values": [ - "Other" - ] - }, - { - "text": "Revise its national legislation and bring it in compliance with its international human rights obligations", - "values": [ - "International instruments" - ] - }, - { - "text": "Strengthen capacity-building measures for workers in the media and the press also through efforts of the international community ", - "values": [ - "Freedom of the press", - "Technical assistance and cooperation" - ] - }, - { - "text": "Amend the Peaceful Assembly Act to allow the full enjoyment of the freedom of association, expression and peaceful assembly, by removing limitations or restrictions on movement, location or participation", - "values": [ - "Freedom of association and peaceful assembly", - "Freedom of opinion and expression" - ] - }, - { - "text": "Move towards the formal and final legal abolition of the death penalty.", - "values": [ - "Death penalty" - ] - }, - { - "text": "The Government of Chad is committed to continuing to sign or ratify international norms while at the same time ensuring that those it has already ratified may be incorporated into domestic law.", - "values": [ - "International instruments" - ] - }, - { - "text": "Ensure prompt, thorough and impartial investigations into allegations of torture and ill-treatment ", - "values": [ - "Torture and other CID treatment" - ] - }, - { - "text": "Withdraw all reservations to the International Covenant on Civil and Political Rights ", - "values": [ - "CP rights - general", - "International instruments" - ] - }, - { - "text": "Ensure the highest standards for the protection of indigenous peoples in order to eliminate the remaining structural inequalities that continue to have an adverse impact on indigenous peoples", - "values": [ - "Indigenous peoples" - ] - }, - { - "text": "Expand the Housing for All scheme to realize the right to adequate housing for vulnerable people and eliminate homelessness by 2030", - "values": [ - "Right to housing" - ] - }, - { - "text": "Adopt legislation to address all forms of violence against women and modify existing laws that discriminate against women and girls ", - "values": [ - "Rights of the Child", - "Women's rights" - ] - }, - { - "text": "As a mechanism to avoid the rise of intolerance, discrimination or xenophobia, adopt effective measures to fight and punish every form of intolerance, discrimination, xenophobia, and racism against persons of certain descent, specially refugees, asylum-seekers, and migrants, regardless of their status ", - "values": [ - "Asylum-seekers - refugees", - "Migrants", - "Racial discrimination" - ] - }, - { - "text": "Maintain actions and policies that address the situation of its indigenous peoples", - "values": [ - "Indigenous peoples" - ] - }, - { - "text": "Reinforce its policies to provide asylum seekers and refugees access to education services that are available nationally", - "values": [ - "Asylum-seekers - refugees", - "Right to education" - ] - }, - { - "text": "Continue to prioritize gender equality and consider the incorporation of international best practices in policies and legislation relating to the employment of women and combating violence against women", - "values": [ - "Women's rights" - ] - }, - { - "text": "Continue efforts to host refugees and migrants", - "values": [ - "Asylum-seekers - refugees", - "Migrants" - ] - }, - { - "text": "Continue its efforts to ensure that all cases of child sexual abuse are reported before the justice, as well as the offer of complaint procedures that are effective, easily accessible and of a confidential nature for the victims", - "values": [ - "Rights of the Child" - ] - }, - { - "text": "Intensify its efforts to eliminate the gender wage gap and promote women\u2019s representation in political and economic affairs", - "values": [ - "Women's rights" - ] - }, - { - "text": "Adjust its legal framework to international human rights standards, in particular with regard to persons with disabilities, migrants, asylum seekers, refugees, women and children", - "values": [ - "Asylum-seekers - refugees", - "Disabilities", - "International instruments", - "Migrants", - "Rights of the Child", - "Women's rights" - ] - }, - { - "text": "Take measures to improve the situation in the detention centres for illegal migrants", - "values": [ - "Migrants" - ] - }, - { - "text": "Amend the law establishing the National Human Rights Commission, particularly as far as a pluralist and independent representation is concerned, with the objectives of bringing it into line with the Paris Principles and seeking accreditation by the International Coordinating Committee", - "values": [ - "National Human Rights Institution" - ] - }, - { - "text": "Sign and ratify the Optional Protocol of the International Covenant on Economic, Social and Cultural Rights", - "values": [ - "ESC rights - general", - "International instruments" - ] - }, - { - "text": "Eliminate the backlog of reports to the human rights treaty bodies and the responses to thematic questionnaires of HRC special procedures ", - "values": [ - "Special procedures", - "Treaty bodies" - ] - }, - { - "text": "Ensure birth registration of all children to facilitate the access to social services", - "values": [ - "ESC rights - general", - "Rights of the Child", - "Statelessness and the right to nationality" - ] - }, - { - "text": "Take concrete measures to raise public awareness and further develop legislation to combat domestic violence, especially against women and children, including through the adoption of legislation that prohibits all corporal punishment of children in any setting", - "values": [ - "Human rights education and training", - "Rights of the Child", - "Torture and other CID treatment", - "Women's rights" - ] - }, - { - "text": "Consider establishing a formal moratorium on executions of those sentenced to death", - "values": [ - "Death penalty" - ] - }, - { - "text": "Take effective measures to investigate all allegations of serious human rights violations and abuses committed by law enforcement officials and private security guards ", - "values": [ - "Human rights violations by state agents" - ] - }, - { - "text": "Prioritize universal basic education for the benefit of all Sierra Leonean children", - "values": [ - "Right to education", - "Rights of the Child" - ] - }, - { - "text": "Further strengthen the law enforcement and judicial system in the effort to address impunity, and to prevent the incidence of trafficking and domestic violence, as well as the sexual abuse of women and girls", - "values": [ - "Impunity", - "Justice", - "Rights of the Child", - "Trafficking", - "Women's rights" - ] - }, - { - "text": "Intensify efforts to prevent discrimination against ethnic groups and promote equality, as well as prevent and combat discrimination against persons from immigrant backgrounds ", - "values": [ - "Migrants", - "Racial discrimination" - ] - }, - { - "text": "Develop a national human rights plan ", - "values": [ - "General" - ] - }, - { - "text": "Continue active cooperation with human rights mechanisms", - "values": [ - "General" - ] - }, - { - "text": "Bring the 2009 Press and Publications Act and all other relevant legislation in line with international and constitutional obligations to protect the right to freedom of expression", - "values": [ - "Freedom of opinion and expression", - "Freedom of the press" - ] - }, - { - "text": "Reinforce its national policy for gender equity and equality", - "values": [ - "Women's rights" - ] - }, - { - "text": "Work constructively with all religious communities to address undue constraints on designated places of worship, training of clergy, and lack of legal personality ", - "values": [ - "Freedom of religion and belief" - ] - }, - { - "text": "Protect people with albinism", - "values": [ - "Minorities" - ] - }, - { - "text": "Continue to implement the necessary measures to ensure indigenous children access to quality education", - "values": [ - "Indigenous peoples", - "Right to education", - "Rights of the Child" - ] - }, - { - "text": "Revive initiatives for minorities for developing measures to remove the restrictions on the use of languages other than Turkish in political and public life", - "values": [ - "Minorities" - ] - }, - { - "text": "Continue to raise awareness on harmful cultural norms and traditional practices as well as human rights education in primary school system", - "values": [ - "Human rights education and training" - ] - }, - { - "text": "Continue to combat discrimination suffered by the children of marginalized and vulnerable groups and eradicate gender-based stereotypes. Along these lines, ensure the continuation of the Strategic Education Plan 2009-2013, to offer the same opportunities to all children and youth regardless of race, colour, sex, language, belief, religion, political beliefs, circumstances of birth and social conditions", - "values": [ - "Right to education", - "Rights of the Child", - "Women's rights" - ] - }, - { - "text": "Act in accordance with the standards included in the UN International Declaration on Human Rights Defenders in 1998 and cooperate seriously with human rights organizations, particularly through in-depth discussion of their reports and recommendations in the follow-up of this universal periodic review", - "values": [ - "Civil society", - "Human rights defenders", - "International instruments", - "UPR process" - ] - }, - { - "text": "Continue multiplying measures that guarantee the full protection of the human rights of foreigners in South Africa ", - "values": [ - "Migrants" - ] - }, - { - "text": "Take effective and quick measures to combat hate speech, Islamophobia, racial aggressive acts that are on the increase in the society, and commit to addressing the long-term consequences", - "values": [ - "Freedom of religion and belief", - "Racial discrimination" - ] - }, - { - "text": "Take all necessary steps to ensure that torture and other inhumane and degrading treatment of civilians does not occur ", - "values": [ - "Torture and other CID treatment" - ] - }, - { - "text": "Implement the recommendations contained in the latest report by the human rights monitoring mission in Ukraine of September 2017, notably to develop a national mechanism to make available to civilian victims of the conflict adequate, effective, prompt and appropriate remedies, including reparation", - "values": [ - "Justice" - ] - }, - { - "text": "Expedite the establishment and operationalization of the National Institute for Human Rights which fully complies with the Paris Principles ", - "values": [ - "National Human Rights Institution" - ] - }, - { - "text": "Approve the licence applications for all non-governmental associations seeking registration in accordance with the law, including organizations advocating for members of minority populations", - "values": [ - "Civil society", - "Minorities" - ] - }, - { - "text": "Guarantee access to justice, due process and fair reparation mechanisms without any discrimination, in compliance with international human rights law", - "values": [ - "Justice" - ] - }, - { - "text": "Enhance engagement in the region with regional and inter-regional partners to help build capacities in countering trafficking in persons, especially women and children ", - "values": [ - "Rights of the Child", - "Trafficking", - "Women's rights" - ] - }, - { - "text": "Assess the recommendation made by the Committee on the Rights of the Child with regard to seeking technical assistance from the United Nations, in order to implement the recommendations of the study on violence against children and the establishment of a juvenile justice system", - "values": [ - "Justice", - "Rights of the Child", - "Technical assistance and cooperation", - "Treaty bodies" - ] - }, - { - "text": "Step up efforts to reduce impunity for human rights violations ", - "values": [ - "Impunity" - ] - }, - { - "text": "Take all the necessary measures to ensure that all persons, including journalists, opposition leaders and political opponents and human rights defenders can freely exercise their rights to freedom of expression, association and peaceful assembly without fear of arrest, detention, intimidation or harassment", - "values": [ - "Detention", - "Freedom of association and peaceful assembly", - "Freedom of opinion and expression", - "Freedom of the press", - "Human rights defenders" - ] - }, - { - "text": "Ensure more fully the rights of persons with disabilities, as well as the rights of women and of children", - "values": [ - "Disabilities", - "Rights of the Child", - "Women's rights" - ] - }, - { - "text": "Establish strategies across all sectors, in particular health, education and justice, to identify and remedy structural discrimination ", - "values": [ - "Justice", - "Right to education", - "Right to health" - ] - }, - { - "text": "Consider ratifying the Convention on the Prevention and Punishment of the Crime of Genocide ", - "values": [ - "International instruments", - "Justice" - ] - }, - { - "text": "Define unambiguously the circumstances under which therapeutic abortion is allowed ", - "values": [ - "Women's rights" - ] - }, - { - "text": "Develop programme for sharing of its experiences in addressing the right to development with African countries in the context of the Forum on China-Africa cooperation", - "values": [ - "Development" - ] - }, - { - "text": "Adopt legislative measures to check trafficking in women and girls", - "values": [ - "Rights of the Child", - "Trafficking", - "Women's rights" - ] - }, - { - "text": "Continue to implement policies, and ensure that adequate resources are allocated, to support the integration and active participation of all persons with disabilities in Gabonese society", - "values": [ - "Disabilities" - ] - }, - { - "text": "Adopt, as soon as possible, a bill against all forms of discrimination ", - "values": [ - "Other" - ] - }, - { - "text": "Fully implement the Sexual Offences Amendment Act 2013", - "values": [ - "Rights of the Child", - "Women's rights" - ] - }, - { - "text": "Increase the level of protection of minors, particularly those who find themselves in a situation of lack of protection and outside of the compulsory schooling system.", - "values": [ - "Rights of the Child" - ] - }, - { - "text": "Soften the very strict requirements for citizenship, and to ensure nondiscrimination, particularly with regard to children who have one parent who lacks San Marino citizenship", - "values": [ - "CP rights - general", - "Statelessness and the right to nationality" - ] - }, - { - "text": "Consider adhering to the Second Optional Protocol to the International Covenant on Civil and Political Rights, aiming at the abolition of the death penalty, and abolish the death penalty", - "values": [ - "Death penalty", - "International instruments" - ] - }, - { - "text": "Sign and ratify the Optional Protocol to ICESCR (OP-ICESCR). Intensify efforts with a view to the prompt ratification of CED ", - "values": [ - "ESC rights - general", - "Enforced disappearances", - "International instruments" - ] - }, - { - "text": "Accelerate the process of the establishment of a national human rights institution in accordance with the Paris", - "values": [ - "National Human Rights Institution" - ] - }, - { - "text": "Adopt practical and legislative measures to ensure impartial and effective investigation of cases of ill-treatment by law enforcement bodies ", - "values": [ - "Human rights violations by state agents", - "Torture and other CID treatment" - ] - }, - { - "text": "Better develop the promotion aspect of integration to enhance genuine respect for diversity and knowledge of different cultures and traditions, as outlined by the European Commission against Racism and Intolerance.", - "values": [ - "Racial discrimination" - ] - }, - { - "text": "Review the current maternity health care policies and introduce the necessary changes to ensure pregnant women's access to medical facilities throughout the country ", - "values": [ - "Right to health", - "Women's rights" - ] - }, - { - "text": "Comply with the recommendations of the independent expert on allowing all political parties to carry out their political activities without undue restrictions.", - "values": [ - "Freedom of association and peaceful assembly" - ] - }, - { - "text": "Intensify its efforts in terms of prevention, sanction and eradication of all forms of violence against women ", - "values": [ - "Women's rights" - ] - }, - { - "text": "Ensure that the Spanish legal framework concerning migrants, refugees and asylum seekers, with particular attention to the autonomous cities of Ceuta and Melilla, complies with its international human rights obligations, including with regard to procedural safeguards", - "values": [ - "Asylum-seekers - refugees", - "International instruments", - "Migrants" - ] - }, - { - "text": "Establish a monitoring mechanism against torture and all other forms of ill-treatment and to allow the conduction of periodic visits in all places of detention", - "values": [ - "Detention", - "Torture and other CID treatment" - ] - }, - { - "text": "Implement in national norms, the commitments made when ratifying the ICESCR and the CERD through the implementation of the recommendations which have come out of their respective Committees", - "values": [ - "ESC rights - general", - "International instruments", - "Racial discrimination", - "Treaty bodies" - ] - }, - { - "text": "Continue its efforts to foster an environment that harmonizes the exercise of rights by its citizens with preserving the security and integrity of the country, as well as efforts to maintain public order and protect public and private property ", - "values": [ - "Public security" - ] - }, - { - "text": "That the Government of South Sudan and all parties to the conflict immediately end the gross violations of human rights and serious violations of international humanitarian law, including targeted attacks on civilians, rape and sexual and gender-based violence, and arbitrary detention and abduction, and commit to and implement a political solution to the conflict", - "values": [ - "Detention", - "Enforced disappearances", - "International humanitarian law", - "Rights of the Child", - "Women's rights" - ] - }, - { - "text": "Consider the establishment of quotas to ensure a gender-balanced representation in business administrative councils", - "values": [ - "Women's rights" - ] - }, - { - "text": "Consider allowing the registration and operation of political parties, introducing greater political freedoms through free, fair, transparent democratic elections ", - "values": [ - "Elections", - "Freedom of association and peaceful assembly" - ] - }, - { - "text": "Ratify ICCPR, ICESCR and CAT ", - "values": [ - "CP rights - general", - "ESC rights - general", - "International instruments", - "Torture and other CID treatment" - ] - }, - { - "text": "Sign and ratify the Optional Protocol to the Convention on the Rights of Persons with Disabilities", - "values": [ - "Disabilities", - "International instruments" - ] - }, - { - "text": "Prevent and combat xenophobic statements and acts targeting migrants, asylum seekers and refugees", - "values": [ - "Asylum-seekers - refugees", - "Migrants" - ] - }, - { - "text": "Strengthen its institutional capacity for investigation of cases of human trafficking and prosecution of perpetrators ", - "values": [ - "Trafficking" - ] - }, - { - "text": "Speed up the adoption of the new Criminal Code", - "values": [ - "Justice" - ] - }, - { - "text": "Take the necessary measures to ensure that all detainees have equal conditions regarding access to a lawyer from the outset of their detention, regardless of the nature of the alleged offense", - "values": [ - "Detention" - ] - }, - { - "text": "Withdraw all remaining reservations to CRC and CEDAW ", - "values": [ - "International instruments", - "Rights of the Child", - "Women's rights" - ] - }, - { - "text": "Take further measures to combat bridal kidnappings and child, early and forced marriage", - "values": [ - "Rights of the Child", - "Women's rights" - ] - }, - { - "text": "Take additional measures required to combat racial, ethnic and religious discrimination ", - "values": [ - "Freedom of religion and belief", - "Racial discrimination" - ] - }, - { - "text": "To organize a consultation to elaborate a national action plan to follow up on Vienna Declaration and Programme of Action adopted by the World Conference on Human Rights and of the Durban Declaration and Programme of Action adopted by the World Conference against Racism, Racial Discrimination, Xenophobia and Related Intolerance", - "values": [ - "Racial discrimination" - ] - }, - { - "text": "Ratify the Second Optional Protocol to the International Covenant on Civil and Political Rights (ICCPR), aiming at the abolition of the death penalty", - "values": [ - "Death penalty", - "International instruments" - ] - }, - { - "text": "Continue to strengthen the national dialogue through an inclusive and collaborative process", - "values": [ - "General" - ] - }, - { - "text": "Reinstate a moratorium on executions with a view of abolishing the death penalty", - "values": [ - "Death penalty" - ] - }, - { - "text": "Speed up the establishment of the National Independent Commission for Human Rights which includes the establishment of a permanent national committee to prevent torture, in accordance with the Optional Protocol to the Convention against Torture", - "values": [ - "Detention", - "International instruments", - "National Human Rights Institution", - "Torture and other CID treatment" - ] - }, - { - "text": "Continue to promote dialogue with all States, on the basis of mutual respect, sovereign equality, self-determination and the right to choose their own political, economic and social system ", - "values": [ - "Other" - ] - }, - { - "text": "Consider ratifying the International Convention on the Protection of the Rights of All Migrant Workers and Members of Their Families and ILO Domestic Workers Convention, 2011 (No. 189)", - "values": [ - "International instruments", - "Labour", - "Migrants" - ] - }, - { - "text": "Criminalize torture and establish an independent monitoring system of detention places", - "values": [ - "Detention", - "Torture and other CID treatment" - ] - }, - { - "text": "Continue civil society consultation in its follow up and implementation of the UPR outcome", - "values": [ - "Civil society", - "UPR process" - ] - }, - { - "text": "Further enhance the capacity of the National Commission on the Rights of the Child", - "values": [ - "Rights of the Child" - ] - }, - { - "text": "Impose a moratorium on executions with a view to abolishing the death penalty nationwide ", - "values": [ - "Death penalty" - ] - }, - { - "text": "Sign and ratify at the earliest the Rome Statute of the International Criminal Court", - "values": [ - "International instruments", - "Justice" - ] - }, - { - "text": "Continue the efforts aimed at stepping up participation and consultation with indigenous peoples on public policies that affect them", - "values": [ - "Indigenous peoples" - ] - }, - { - "text": "Combat gender-based discrimination and implement the UN Security Council resolution 1325 and related resolutions on women, peace and security", - "values": [ - "Women's rights" - ] - }, - { - "text": "Institute outreach by police and law enforcement to LGBT persons and communities to increase reporting of hate crimes ", - "values": [ - "Sexual Orientation and Gender Identity" - ] - }, - { - "text": "Close the Guantanamo prison and release all detainees still held in Guantanamo, unless they are to be charged and tried without further delay", - "values": [ - "Detention" - ] - }, - { - "text": "Stop illegal practices targeting memorials and sacred religious places of national and religious minorities", - "values": [ - "Freedom of religion and belief", - "Minorities" - ] - }, - { - "text": "Promote equal socio-economic as well as educational opportunities for all both in law and in fact, regardless of their ethnicity, race, religion, national origin, gender or disability ", - "values": [ - "ESC rights - general" - ] - }, - { - "text": "Put to an early referendum all recommendations of the Constitutional Review Commission approved by the Government that require changes to the Constitution, including the removal of the death penalty", - "values": [ - "Death penalty" - ] - }, - { - "text": "Ratify the Optional Protocol on the Convention Against Torture (OPCAT)", - "values": [ - "Detention", - "International instruments", - "Torture and other CID treatment" - ] - }, - { - "text": "Enhance the training and oversight of police to ensure compliance with domestic and international standards and human rights norms ", - "values": [ - "International instruments" - ] - }, - { - "text": "Put an end to the practice of capita punishment, and declare a moratorium on the death penalty as soon as possible with a view to its abolition ", - "values": [ - "Death penalty" - ] - }, - { - "text": "Accelerate its programme to eliminate discrimination against women ", - "values": [ - "Women's rights" - ] - }, - { - "text": "Investigate the alleged harassment of human rights defenders and prosecute offenders", - "values": [ - "Human rights defenders" - ] - }, - { - "text": "Continue to be engaged in open and inclusive public debates on ensuring the most effective domestic implementation of international and regional human rights standards, with full account of universally guaranteed rights and freedoms", - "values": [ - "General" - ] - }, - { - "text": "Undertake a comprehensive review and revision of all discriminatory legislation in order to achieve compliance with its obligations under CEDAW.", - "values": [ - "International instruments", - "Women's rights" - ] - }, - { - "text": "Ensure protection against all forms of discrimination by incorporating in its laws, the principle of equality in accordance with CEDAW, ICERD and CRPD ", - "values": [ - "Disabilities", - "International instruments", - "Racial discrimination", - "Women's rights" - ] - }, - { - "text": "Give special attention to cases of possible discrimination for reason of sexual identity or orientation, and ensure that cases of violence against such persons are appropriately investigated and prosecuted", - "values": [ - "Sexual Orientation and Gender Identity" - ] - }, - { - "text": "Continue to allocate appropriate budget and resources to address challenges such as trafficking in persons, sexual exploitation of children and extreme poverty in rural areas and establish a targeted timeframe for implementing related plans and programs", - "values": [ - "Poverty", - "Rights of the Child", - "Trafficking" - ] - }, - { - "text": "Improve living conditions in prisons in particular in Guantanamo", - "values": [ - "Detention" - ] - }, - { - "text": "Issue a standing invitation to all Special Procedures of the Human Rights Council ", - "values": [ - "Special procedures" - ] - }, - { - "text": "Establish a formal moratorium on executions with a view to abolishing the death penalty ", - "values": [ - "Death penalty" - ] - }, - { - "text": "Address the question of children in domesticity by strengthening the measures already adopted to prevent, combat and eliminate this problematic in line with the international commitments taken by the country", - "values": [ - "Labour", - "Rights of the Child" - ] - }, - { - "text": "Implement, inter alia, the recommendations of the CRC on the national system to protect Aboriginal children", - "values": [ - "Indigenous peoples", - "Rights of the Child", - "Treaty bodies" - ] - }, - { - "text": "Continue its national efforts, with the support and assistance of the international community, in the promotion and protection of human rights particularly in the realization of economic, social and cultural rights of the people of Gabon", - "values": [ - "ESC rights - general", - "Technical assistance and cooperation" - ] - }, - { - "text": "Take comprehensive measures to combat paedophilia and the rise in child prostitution ", - "values": [ - "Rights of the Child" - ] - }, - { - "text": "Take measures to prevent children from being economically exploited by adopting legislation and policies to address child labour in both the formal and informal sectors", - "values": [ - "Labour", - "Rights of the Child" - ] - }, - { - "text": "Swiftly establish a national preventive mechanism in accordance with the Optional Protocol to the Convention against Torture and Other Cruel, Inhuman or Degrading Treatment or Punishment ratified in 2004 and speed up the process of incorporation of provisions of other ratified international human rights instruments into national legislation", - "values": [ - "Detention", - "International instruments", - "Torture and other CID treatment" - ] - }, - { - "text": "Ratify the 1954 Convention relating to the Status of Stateless Persons as well as the 1961 Convention on the Reduction of Statelessness ", - "values": [ - "International instruments", - "Statelessness and the right to nationality" - ] - }, - { - "text": "Step up its efforts to bring its ODA up to the international commitment of 0.7% of GDP", - "values": [ - "Development" - ] - }, - { - "text": "Amend article 4 of the Constitution to abolish the death penalty", - "values": [ - "Death penalty" - ] - }, - { - "text": "Continue cooperation with civil society organizations in the follow-up to the present review", - "values": [ - "Civil society", - "UPR process" - ] - }, - { - "text": "Ratify the Optional Protocols to the Convention on the Rights of the Child on the involvement of children in armed conflict and on the sale of children, child prostitution and child pornography", - "values": [ - "International humanitarian law", - "International instruments", - "Labour", - "Rights of the Child", - "Trafficking" - ] - }, - { - "text": "Adopt legislation prohibiting FGM and other discriminatory cultural practices", - "values": [ - "Rights of the Child", - "Torture and other CID treatment", - "Women's rights" - ] - }, - { - "text": "Continue adopting measures to combat discrimination and protect the rights of ethnic minorities, particularly Roma", - "values": [ - "Minorities", - "Racial discrimination" - ] - }, - { - "text": "Take specific steps to strengthen the institution of the family, including raising awareness among the youth of traditional understanding of the family and its social values ", - "values": [ - "Other" - ] - }, - { - "text": "Undertake an ambitious reform of the judicial system, which should be conducted in line with all applicable international standards, notably the principle of the separation of powers, and which should be endowed with the necessary resources for its implementation ", - "values": [ - "Justice" - ] - }, - { - "text": "Continue to take steps to ensure the well-being and protection of migrants and their rights.", - "values": [ - "Migrants" - ] - }, - { - "text": "Further improve human rights records in the country ", - "values": [ - "General" - ] - }, - { - "text": "Continue to promote the status of woman and to empower them", - "values": [ - "Women's rights" - ] - }, - { - "text": "Continue to work to eliminate all forms of stigmatization or discrimination based on sexual orientation or gender identity", - "values": [ - "Sexual Orientation and Gender Identity" - ] - }, - { - "text": "Provide follow-up to the expanded strategic framework for national action against HIV/AIDS", - "values": [ - "HIV - Aids" - ] - }, - { - "text": "Withdraw reservations, denunciations, and interpretations of the Covenant on Civil and Political Rights, the International Convention on the Elimination of All Forms of Racial Discrimination and the Convention against Torture, that undermine their compliance", - "values": [ - "CP rights - general", - "International instruments", - "Racial discrimination", - "Torture and other CID treatment" - ] - }, - { - "text": "Take concrete measures to fight all forms of violence against women, including by ratifying the Council of Europe Convention on Prevention and Combating Violence against Women and Domestic Violence", - "values": [ - "International instruments", - "Rights of the Child", - "Women's rights" - ] - }, - { - "text": "Identify, protect and support victims of trafficking and forced labour", - "values": [ - "Labour", - "Trafficking" - ] - }, - { - "text": "More actively enforce its law prohibiting female genital mutilation", - "values": [ - "Rights of the Child", - "Torture and other CID treatment", - "Women's rights" - ] - }, - { - "text": "Develop government programmes and strategies to prevent, investigate and punish human rights violations against women, in particular lesbian women, according to existing laws ratified by the State", - "values": [ - "Sexual Orientation and Gender Identity", - "Women's rights" - ] - }, - { - "text": "Conduct thorough, impartial, and timely investigations into all allegations of police and judicial misconduct of corruption ", - "values": [ - "Corruption" - ] - }, - { - "text": "Stop sexual violence against women and investigate all reported cases", - "values": [ - "Women's rights" - ] - }, - { - "text": "Take further strong measures to prevent trafficking and exploitation of women and children ", - "values": [ - "Rights of the Child", - "Trafficking", - "Women's rights" - ] - }, - { - "text": "Consider amending the Constitution to allow women to convey their citizenship to their children and foreign spouses on an equal basis with men", - "values": [ - "Rights of the Child", - "Statelessness and the right to nationality", - "Women's rights" - ] - }, - { - "text": "Ensure the protection of human rights defenders in accordance with the United Nations Declaration on Human Rights Defenders", - "values": [ - "Human rights defenders", - "International instruments" - ] - }, - { - "text": "Guarantee the effective exercise of the human right to assembly, in particular with respect to crowd control, formulate clear instructions compatible with human rights standards for the use of firearms, provide training for the police on conduct compatible with human rights, prohibit the use of violence by unofficial or plain clothes security forces and ensure all persons detained have timely access to their families and to legal counsel ", - "values": [ - "Detention", - "Freedom of association and peaceful assembly", - "Human rights education and training", - "Human rights violations by state agents" - ] - }, - { - "text": "Continue the efforts made to combat discrimination against minorities ", - "values": [ - "Minorities", - "Racial discrimination" - ] - }, - { - "text": "Issue a standing invitation to all Council special procedures ", - "values": [ - "Special procedures" - ] - }, - { - "text": "Become a State party to the International Covenant on Economic, Social and Cultural Rights", - "values": [ - "ESC rights - general", - "International instruments" - ] - }, - { - "text": "Ratify those international instruments on human rights to which Senegal is not yet part", - "values": [ - "International instruments" - ] - }, - { - "text": "Provide effective guarantee for the rights of Roma in the fields of education, employment and housing", - "values": [ - "Labour", - "Minorities", - "Right to education", - "Right to housing" - ] - }, - { - "text": "Allocate more resources to fight trafficking in human beings and support victims of trafficking and sexual exploitation", - "values": [ - "Trafficking" - ] - }, - { - "text": "Strengthen policies to promote education and address educational gender imbalances.", - "values": [ - "Right to education", - "Women's rights" - ] - }, - { - "text": "Accede to the remaining core international human rights instruments such as ICCPR, CAT and CEDAW ", - "values": [ - "CP rights - general", - "International instruments", - "Torture and other CID treatment", - "Women's rights" - ] - }, - { - "text": "Continue pursuing society integration policies aimed at uniting the country's inhabitants in areas such as State-language learning, promotion of cultural identity and cultural interaction, with particular attention to Latvia's "non-citizens" who represent around 15 per cent of the population ", - "values": [ - "Minorities" - ] - }, - { - "text": "Take effective measures to address the inequality in the status of court interpretation of minority languages", - "values": [ - "Minorities" - ] - }, - { - "text": "Further intensify efforts to ensure equal access to quality education, and expand primary education to children in their mother tongue ", - "values": [ - "Right to education", - "Rights of the Child" - ] - }, - { - "text": "Enhance efforts to promote understanding of the Sharia Penal Code through awareness programmes and other relevant activities ", - "values": [ - "Justice" - ] - }, - { - "text": "Implement measures to improve sanitation conditions and prevent overcrowding in administrative detention centres, especially those under the authority of migration authorities ", - "values": [ - "Detention", - "Migrants", - "Right to water and sanitation" - ] - }, - { - "text": "Continue and improve its policies with a view to the progressive elimination of economic, social, cultural barriers, in particular discrimination factors against women in the family and in society ", - "values": [ - "ESC rights - general", - "Women's rights" - ] - }, - { - "text": "Continue to seek even better coordination among all the stakeholders with a view to overcoming possible problems in adopting human rights legislation", - "values": [ - "General" - ] - }, - { - "text": "Continue socioeconomic reforms to better the lives of its people, in particular by investing in education", - "values": [ - "Right to education" - ] - }, - { - "text": "Continue applying socio-economic development strategies and plans in the country, in particular those geared towards combating poverty ", - "values": [ - "Development", - "Poverty" - ] - }, - { - "text": "Respect the privacy of individuals outside the United States in the context of digital communications and data", - "values": [ - "Privacy" - ] - }, - { - "text": "Explore possibilities to further strengthen the competence, role and mandate of the human rights protection offices", - "values": [ - "Other" - ] - }, - { - "text": "Take further measures aimed at consolidating its achievements with regard to expanding education to disadvantaged areas, by according special attention to the rights of the girl child, especially in nomadic communities", - "values": [ - "Right to education", - "Rights of the Child", - "Women's rights" - ] - }, - { - "text": "Ratify, without reservation, the Second Optional Protocol to the International Covenant on Civil and Political Rights and take the necessary measures so as to commute the sentences of those under the death penalty", - "values": [ - "Death penalty", - "International instruments" - ] - }, - { - "text": "With reference to the recently expressed concern by the Economic and Social Council about the presence of the berm, continue to implement the demining programme along the berm and compensate victims", - "values": [ - "International humanitarian law" - ] - }, - { - "text": "Continue to address the root causes of human trafficking and provide the relevant training to law enforcement officials and judges to ensure that the perpetrators of this heinous crime do not go unpunished", - "values": [ - "Human rights education and training", - "Trafficking" - ] - }, - { - "text": "Sign and ratify the Convention on the Rights of the Persons with Disabilities", - "values": [ - "Disabilities", - "International instruments" - ] - }, - { - "text": "Strengthen the Ombudsman's capacity to investigate and act on allegations of discrimination in all its forms ", - "values": [ - "National Human Rights Institution" - ] - }, - { - "text": "Keep striving to eradicate unchecked criminality, corruption and gang activity, which produce devastating human rights violations, especially those acts of violence and murder, by focusing on education, proper employment and transparency in law enforcement", - "values": [ - "Corruption", - "Development", - "Justice", - "Public security", - "Right to education" - ] - }, - { - "text": "Continue to strengthen its cooperation with civil society organizations in promoting and protecting human rights in areas such as the administration of justice, education, public health, migrant workers and gender equality", - "values": [ - "Civil society" - ] - }, - { - "text": "Step up efforts to reduce poverty by allocating additional resources to individuals and groups of vulnerable populations ", - "values": [ - "Poverty" - ] - }, - { - "text": "Consider revising its legislation to ensure the promotion and protection of the rights of persons with disabilities, especially the law relating to legal capacity and accommodation of persons with mental disabilities in institutions", - "values": [ - "Disabilities" - ] - }, - { - "text": "Adopt a comprehensive law against discrimination containing provisions that specifically prohibit racism and racial discrimination, qualify as a crime punishable by law, the dissemination of ideas based on racial supremacy or inferiority, and prohibit organizations that promote or incite racial discrimination ", - "values": [ - "Racial discrimination" - ] - }, - { - "text": "Take measures to significantly improve prison conditions such as overcrowding, substandard sanitation and poor health facilities ", - "values": [ - "Detention", - "Right to water and sanitation" - ] - }, - { - "text": "Punish perpetrators of hate speech and incitement to discrimination in accordance with the law", - "values": [ - "Racial discrimination" - ] - }, - { - "text": "Further develop concrete measures or steps to expand the representation of women in Government and Parliament as well as to other decision-making positions, as appropriate", - "values": [ - "Women's rights" - ] - }, - { - "text": "Carry out all obligations arising from the Geneva Convention of 1951 on the status of refugees and the principle of non-refoulement, and to guarantee that individuals benefit from a fair and equitable trial before being returned to countries in which risks of torture, ill treatment and other serious human rights violations exist", - "values": [ - "Asylum-seekers - refugees", - "International instruments", - "Justice", - "Torture and other CID treatment" - ] - }, - { - "text": "Abolish provisions in its domestic legislation that authorize the corporal punishment of children in all places, in particular in detention facilities and in schools", - "values": [ - "Rights of the Child", - "Torture and other CID treatment" - ] - }, - { - "text": "That a new law should ensure the right to freedom of expression, assembly and association, in accordance with international human rights law.", - "values": [ - "Freedom of association and peaceful assembly", - "Freedom of opinion and expression", - "International instruments" - ] - }, - { - "text": "Ratify and implement all major international human rights treaties", - "values": [ - "International instruments" - ] - }, - { - "text": "Effectively combat discrimination against women in law and in practice", - "values": [ - "Women's rights" - ] - }, - { - "text": "Take several measures in the area of the administration of justice to accelerate the reform of the judicial system, to fight against abuses of preventive detention, and to draft and transmit the report expected since 2005 by the Committee against Torture", - "values": [ - "Justice", - "Treaty bodies" - ] - }, - { - "text": "Accede to the Second Optional Protocol to ICCPR, aiming at the abolition of the death penalty, and take all necessary steps to remove the death penalty from Saint Kitts and Nevis law ", - "values": [ - "Death penalty", - "International instruments" - ] - }, - { - "text": "Repeal the provisions of the Migration Act 1958 relating to the mandatory detention", - "values": [ - "Asylum-seekers - refugees", - "Detention" - ] - }, - { - "text": "Further enhance measures aimed at protecting the human rights of children, women and other vulnerable groups ", - "values": [ - "Rights of the Child", - "Women's rights" - ] - }, - { - "text": "Continue the policy of expanding opportunities in the existing legislation and mechanisms of influence of civil society in decision-making process ", - "values": [ - "Civil society" - ] - }, - { - "text": "Adopt a comprehensive global policy on children as well as a law and an action plan to implement this policy", - "values": [ - "Rights of the Child" - ] - }, - { - "text": "Collect statistics on racist and discriminatory incidents, and develop a national plan of action against racism and xenophobia, with an emphasis on social awareness ", - "values": [ - "Racial discrimination" - ] - }, - { - "text": "Share experience and good practices with all other countries in the areas of development and protection of human rights ", - "values": [ - "General" - ] - }, - { - "text": "Take the necessary political, legislative, judicial and administrative steps to redress most urgently the unacceptable humanitarian situation created by the Constitutional Court ruling ", - "values": [ - "Justice" - ] - }, - { - "text": "Ensure full and effective implementation of the existing legislation and policies combating violence against women and adopt effective measures to reduce violence and impunity", - "values": [ - "Impunity", - "Women's rights" - ] - }, - { - "text": "Continue collaboration with the international institutions to combat the Ebola virus", - "values": [ - "Right to health" - ] - }, - { - "text": "Develop a national plan of action that provides a road map to ensure that international human rights commitments are reflected in domestic legislation ", - "values": [ - "International instruments" - ] - }, - { - "text": "Adopt a legislative and regulatory framework to facilitate the creation and registration of NGOs and associations which guarantee their free activity ", - "values": [ - "Civil society", - "Freedom of association and peaceful assembly" - ] - }, - { - "text": "Continue its efforts to fight against poverty and illiteracy", - "values": [ - "Poverty", - "Right to education" - ] - }, - { - "text": "Remove all provisions from laws that allow corporal punishment and explicitly prohibit corporal punishment by law in the family, schools and other institutions ", - "values": [ - "Rights of the Child", - "Torture and other CID treatment" - ] - }, - { - "text": "Continue to develop a national strategy, through the national authority to combat human trafficking, and, as part of that strategy, to ratify the Protocol of 2014 to the Forced Labour Convention, 1930", - "values": [ - "International instruments", - "Labour", - "Trafficking" - ] - }, - { - "text": "Provide additional resources to the National Commission for Refugees in order to facilitate their reintegration and better organize their legal protection", - "values": [ - "Asylum-seekers - refugees" - ] - }, - { - "text": "Pursue the necessary procedure to accede to the Convention against Torture [1984]", - "values": [ - "International instruments", - "Torture and other CID treatment" - ] - }, - { - "text": "Allocate the necessary resources for the implementation of the National Plan of Action against racism and anti-Semitism", - "values": [ - "Racial discrimination" - ] - }, - { - "text": "Continue to take steps to put an end to practices of bride-kidnapping and early marriage", - "values": [ - "Rights of the Child", - "Women's rights" - ] - }, - { - "text": "Extend a standing invitation to all Human Rights Council mandate holders", - "values": [ - "Special procedures" - ] - }, - { - "text": "Continue to promote and protect the rights of women and children ", - "values": [ - "Rights of the Child", - "Women's rights" - ] - }, - { - "text": "Take action to eradicate violence and discrimination against women and lesbian, gay, bisexual, transgender and intersex persons, primarily in educational institutions", - "values": [ - "Sexual Orientation and Gender Identity", - "Women's rights" - ] - }, - { - "text": "Ratify the Second Optional Protocol to ICCPR, aiming at the abolition of the death penalty and to consider the repeal of provisions allowing for the death penalty", - "values": [ - "Death penalty", - "International instruments" - ] - }, - { - "text": "Continue to cooperate in a generous way with developing countries ", - "values": [ - "Other" - ] - }, - { - "text": "Continue implementing measures to improve gender equality in the country and to eliminate discrimination against women", - "values": [ - "Women's rights" - ] - }, - { - "text": "Establish a moratorium on the application of the death penalty and consider ratifying the Second Optional Protocol to the International Covenant on Civil and Political Rights", - "values": [ - "Death penalty", - "International instruments" - ] - }, - { - "text": "Study the possibility of establishing a national human rights institution accredited by the International Coordinating Committee of National Institutions for the Promotion and Protection of Human Rights.", - "values": [ - "National Human Rights Institution" - ] - }, - { - "text": "Continue its efforts on reducing the unemployment rate, eliminating poverty and emphasizing the protection and promotion of people's economic, social and cultural rights", - "values": [ - "Development", - "ESC rights - general", - "Poverty" - ] - }, - { - "text": "Strengthen policies on the elimination of inequalities in the access to employment on the grounds of gender or racial origin", - "values": [ - "Labour", - "Racial discrimination", - "Sexual Orientation and Gender Identity" - ] - }, - { - "text": "Adopt further measures to ensure gender equality in the society, including through the accession to and effective implementation of relevant international and regional treaties", - "values": [ - "International instruments", - "Women's rights" - ] - }, - { - "text": "Include accurate Holocaust information in all public school lesson plans ", - "values": [ - "Other" - ] - }, - { - "text": "Continue to provide protection for the victims of trafficking in persons and to strengthen its national laws and to foster cooperation with regional and international organizations in the field of combating trafficking in persons", - "values": [ - "Trafficking" - ] - }, - { - "text": "Continue with efforts to provide more protection to domestic workers and improve their living conditions", - "values": [ - "Labour" - ] - }, - { - "text": "Ensure in law and judicial practice, the proportionality of sentences for defamation or expression offences", - "values": [ - "Freedom of opinion and expression", - "Justice" - ] - }, - { - "text": "Take necessary measures to allow access to religious services, as well as to education and the media in Romanian language to all persons requesting this all over its territory", - "values": [ - "Freedom of religion and belief" - ] - }, - { - "text": "Continue the process of developing human rights indicators", - "values": [ - "Other" - ] - }, - { - "text": "Take steps to combat discrimination of LGBTI people in legislation and practice, including decriminalisation of sexual activities between consenting adults of the same sex", - "values": [ - "Sexual Orientation and Gender Identity" - ] - }, - { - "text": "Adjust the regulatory and legal framework to comply with international human rights standards in order to guarantee freedom of religion ", - "values": [ - "Freedom of religion and belief", - "International instruments" - ] - }, - { - "text": "Uphold the implementation of the Anti-Discrimination Law ", - "values": [ - "Other" - ] - }, - { - "text": "Continue to facilitate education for all with due regard to girls' education and nondiscriminatory access and ensuring its quality ", - "values": [ - "Right to education", - "Rights of the Child" - ] - }, - { - "text": "Ensure that the relationship between the executive and the judiciary is based on mutual trust and respect for non-interference in their respective prerogatives and functions", - "values": [ - "Justice" - ] - }, - { - "text": "Ensure the strict enforcement of the laws prohibiting early marriage", - "values": [ - "Rights of the Child" - ] - }, - { - "text": "Adopt adequate measures to protect freedom of religion or belief with a view to ensuring for all the full enjoyment of the right to practice one's religion ", - "values": [ - "Freedom of religion and belief" - ] - }, - { - "text": "Remove the death penalty from its criminal statutes and ratify the Second Optional Protocol to the International Covenant on Civil and Political Rights", - "values": [ - "Death penalty", - "International instruments" - ] - }, - { - "text": "Ensure fully safety and security of migrant workers and their families", - "values": [ - "Labour", - "Migrants" - ] - }, - { - "text": "Carry out new awareness-raising programmes within the Ministry of Women on violence against women, with short-term objectives and tangible indicators, and providing information about the fact that such actions are to be punished \n", - "values": [ - "Human rights education and training", - "Women's rights" - ] - }, - { - "text": "Take further steps to ensure universal enrolment of children of compulsory school age", - "values": [ - "Right to education" - ] - }, - { - "text": "Establish and implement strategies to achieve all MDGs by 2015, especially goals related to the rights of women and children ", - "values": [ - "Development", - "Rights of the Child", - "Women's rights" - ] - }, - { - "text": "Strengthen the efforts to ensure equal labour opportunities for women", - "values": [ - "Women's rights" - ] - }, - { - "text": "Accept, ratify or accede to African Charter on Democracy, Elections and Governance", - "values": [ - "Elections", - "International instruments" - ] - }, - { - "text": "Consider extending an open and standing invitation to the special procedures", - "values": [ - "Special procedures" - ] - }, - { - "text": "Respond favourably to the request of special procedures mandate holders to enter the country and cooperate with special procedures and other human rights mechanisms\n\n", - "values": [ - "Special procedures", - "Treaty bodies" - ] - }, - { - "text": "Take measures to improve cooperation and coordination of activities among bodies at all levels which have a role to play in the promotion and protection of human rights", - "values": [ - "General" - ] - }, - { - "text": "Extend a standing invitation to the Human Rights Council special procedures", - "values": [ - "Special procedures" - ] - }, - { - "text": "Ratify the Rome Statute of the International Criminal Court and align its national legislation ", - "values": [ - "International instruments", - "Justice" - ] - }, - { - "text": "Ratify the Convention against Torture and its Optional Protocol and incorporate it into domestic law, in line with the new Constitution", - "values": [ - "Detention", - "International instruments", - "Torture and other CID treatment" - ] - }, - { - "text": "Ratify the Convention on the Prevention and Punishment of the Crime of Genocide and the two Optional Protocols to the Convention on the Rights of the Child within the context of the Human Rights Council resolution 9-12, entitled Human Rights Goals", - "values": [ - "International instruments", - "Justice", - "Rights of the Child" - ] - }, - { - "text": "Recommended the implementation of a national strategy to combat the issue of trafficking in girls and women for sexual exploitation.", - "values": [ - "Rights of the Child", - "Trafficking", - "Women's rights" - ] - }, - { - "text": "Put in place structures to ensure that Government and Parliamentary decision-making processes are transparent and that public legislative hearings take place ", - "values": [ - "Other" - ] - }, - { - "text": "Adopt laws recognizing and regulating the right to conscientious objections and ensure that the civilian alternative to military service has no punitive or discriminatory effects", - "values": [ - "Freedom of religion and belief" - ] - }, - { - "text": "Finalize the study and consideration to become a State Party to the Convention on the Rights of Persons with Disabilities , provide adequate social protection for persons with grave disabilities, and improve opportunities for socioeconomic advancement of persons with disabilities", - "values": [ - "Disabilities", - "International instruments" - ] - }, - { - "text": "Encourage it to sign and ratify ICERD and OP-CRC-AC ", - "values": [ - "International humanitarian law", - "International instruments", - "Racial discrimination", - "Rights of the Child" - ] - }, - { - "text": "Ensure training for law enforcement and security forces in relation to human rights standards in management of peaceful assemblies, ensure all allegations of excessive use of force and arbitrary detention are investigated and that perpetrators are prosecuted", - "values": [ - "Detention", - "Freedom of association and peaceful assembly", - "Human rights education and training" - ] - }, - { - "text": "Ensure that freedom of association and the right to peaceful assembly are respected and protected, to include promoting better implementation of the Public Order Act", - "values": [ - "Freedom of association and peaceful assembly" - ] - }, - { - "text": "Increase State funding for shelter services for victims of violence and especially minorities and vulnerable groups", - "values": [ - "Minorities" - ] - }, - { - "text": "Implement further measures to support victims of domestic violence ", - "values": [ - "Rights of the Child", - "Women's rights" - ] - }, - { - "text": "Take the necessary measures to put an end to discrimination against those who are HIV-positive and those suffering from albinism", - "values": [ - "HIV - Aids", - "Minorities" - ] - }, - { - "text": "Properly investigate all attacks against human rights defenders and prosecute their perpetrators", - "values": [ - "Human rights defenders" - ] - }, - { - "text": "Continue with the strategy of combating terrorism in order to protect human rights", - "values": [ - "Counter-terrorism" - ] - }, - { - "text": "Continue to support the national dialogue facilitation mechanism promoted by UNASUR, in which three former presidents and a representative of the Holy See participate", - "values": [ - "Technical assistance and cooperation" - ] - }, - { - "text": "Continue efforts to achieve the country's poverty alleviation goals ", - "values": [ - "Poverty" - ] - }, - { - "text": "Monitor and verify the effectiveness of, and steadily implement, measures such as quota programmes in the areas of education and employment, special police and special courts for effective implementation of the Protection of Civil Rights Act and the Scheduled Caste and Scheduled Tribes Act, and the work of the National Commission for Scheduled Castes ", - "values": [ - "Indigenous peoples", - "Minorities", - "Racial discrimination" - ] - }, - { - "text": "Engage with the ethnic groups, in an ongoing and systematic basis, to ensure their rights to equality and non-discrimination are guaranteed", - "values": [ - "Racial discrimination" - ] - }, - { - "text": "Share its experiences, best practices and information with and assist the international community in tackling challenges in the area of the right to education, taking into account positive results brought to all Cuban citizens in spite of obstacles faced by the country, including the creation of conditions for free education at all levels", - "values": [ - "Right to education" - ] - }, - { - "text": "Take supplementary measures to support access of minority children to education by helping them maintain and develop their traditions and languages.", - "values": [ - "Minorities" - ] - }, - { - "text": "Explicitly recognise the right to peaceful assembly by redrafting the Law on Meetings and Demonstrations to remove provisions that criminalise peaceful participation in demonstrations", - "values": [ - "Freedom of association and peaceful assembly" - ] - }, - { - "text": "Speed up the adoption of the permanent Constitution of Sudan", - "values": [ - "General" - ] - }, - { - "text": "Establish an official moratorium on executions, with a view to abolishing the death penalty", - "values": [ - "Death penalty" - ] - }, - { - "text": "Continue progress to deliver the objectives set through its National Plan for Economic and Social Development by 2020", - "values": [ - "Development" - ] - }, - { - "text": "At the national level, Portugal also renews its pledge to continue to improve its national machinery and mechanisms to monitor implementation of international obligations, Treaty bodies' recommendations, and the outcome of this review. The strengthening of civil society participation and NGO interaction in these processes will also be actively pursued.", - "values": [ - "Civil society", - "International instruments", - "Treaty bodies", - "UPR process" - ] - }, - { - "text": "Abolish all forms of administrative detention, including Re-Education through Labour", - "values": [ - "Detention" - ] - }, - { - "text": "Take practical and legislative measures, including in the Constitution, in order to eliminate incitement to violence and repetition of attacks against freedom of religion and religious cult", - "values": [ - "Freedom of religion and belief" - ] - }, - { - "text": "Engage non-governmental organizations on the lesbian, gay, bisexual, transgender and intersex task team and update and implement the national lesbian, gay, bisexual, transgender and intersex strategy", - "values": [ - "Sexual Orientation and Gender Identity" - ] - }, - { - "text": "Ensure effective and systematic separation in prisons of minors from other detainees in order to respect the rights of the child ", - "values": [ - "Detention", - "Rights of the Child" - ] - }, - { - "text": "Continue its efforts to empower women and underprivileged segments of the society ", - "values": [ - "Women's rights" - ] - }, - { - "text": "Ensure that its strategies for addressing domestic violence are effectively implemented, monitored and sustained", - "values": [ - "Rights of the Child", - "Women's rights" - ] - }, - { - "text": "Establish promptly a NHRI in full compliance with the Paris Principles (A Status)", - "values": [ - "National Human Rights Institution" - ] - }, - { - "text": "Continue efforts to establish an independent institution for the promotion and protection of human rights and fundamental freedoms, as well as an independent national body for the promotion of the rights of the child", - "values": [ - "National Human Rights Institution", - "Rights of the Child" - ] - }, - { - "text": "Strengthen efforts to achieve full equality in the enjoyment of all human rights by women, including by elaborating and implementing strategies to encourage greater participation by women in Turkey's political and economic life ", - "values": [ - "Women's rights" - ] - }, - { - "text": "Continue making efforts to ensure active participation of women in the country's governance ", - "values": [ - "Women's rights" - ] - }, - { - "text": "Establish a separate independent anti-corruption court to further strengthen the independence of the judiciary and the rule of law", - "values": [ - "Corruption", - "Justice" - ] - }, - { - "text": "Take all necessary measures to abolish corporal punishment for children at all institutions, including alternative care settings", - "values": [ - "Rights of the Child", - "Torture and other CID treatment" - ] - }, - { - "text": "Take the steps necessary to ensure that all the victims of the conflict, including internally displaced persons, can receive appropriate assistance in order to prevent a further worsening of their human rights situation, as well as to create favourable conditions for the return of internally displaced persons to their places of origin", - "values": [ - "Internally displaced persons", - "Justice" - ] - }, - { - "text": "End the practice of secret detention and guarantee that due legal process is followed, in line with international standards", - "values": [ - "Detention" - ] - }, - { - "text": "Make efforts to ensure the participation of women in public affairs especially in Village Committees", - "values": [ - "Women's rights" - ] - }, - { - "text": "Take the measures necessary to combat violence against women", - "values": [ - "Women's rights" - ] - }, - { - "text": "Consider abolishing the mandatory imposition of life imprisonment for offences committed by children under the age of 18", - "values": [ - "Detention", - "Rights of the Child" - ] - }, - { - "text": "Consider abolition of the death penalty in the near future ", - "values": [ - "Death penalty" - ] - }, - { - "text": "The measures taken for protection of the rights of the disabled will be further strengthened in keeping with international standards. Disabled ex-combatants will be provided with artificial limbs, monthly financial support and a self-employment grant to enable economic and social reintegration", - "values": [ - "Disabilities", - "Justice" - ] - }, - { - "text": "Improve access to education by all people, particularly children in the interior of the country", - "values": [ - "Right to education", - "Rights of the Child" - ] - }, - { - "text": "Carry out measures to reduce overcrowding in prisons", - "values": [ - "Detention" - ] - }, - { - "text": "New Zealand is committed to identifying and addressing gaps in information to better understand the causes of inequality.", - "values": [ - "Other" - ] - }, - { - "text": "Ensure comprehensive human rights training for its law enforcement personnel with a view to prevent any excessive use of force and to investigate, prosecute and punish the perpetrators of such human rights violations, in accordance with international standards ", - "values": [ - "Human rights education and training", - "Human rights violations by state agents" - ] - }, - { - "text": "Extend the mandate of the Federal Anti-Discrimination Agency with adequate resources, as part of strengthening the anti-discrimination structures ", - "values": [ - "Racial discrimination" - ] - }, - { - "text": "Take into consideration the provisions of HRC resolution A/HRC/RES/13/27 relating to sport and racism, when preparing and organizing the 2014 football World Cup and the 2016 Olympic Games, in order to promote understanding, tolerance and peace and strengthen the efforts in the struggle against racism, racial discrimination, xenophobia and related intolerance ", - "values": [ - "Racial discrimination" - ] - }, - { - "text": "Strengthen measures to address corruption ", - "values": [ - "Corruption" - ] - }, - { - "text": "Take further measures to combat racial discrimination, xenophobia and other forms of intolerance", - "values": [ - "Racial discrimination" - ] - }, - { - "text": "Ratify the Second Optional Protocol to the International Covenant on Civil and Political Rights already signed by Argentina, aiming at the abolition of the death penalty.", - "values": [ - "Death penalty", - "International instruments" - ] - }, - { - "text": "Remove its remaining reservations to CEDAW", - "values": [ - "International instruments", - "Women's rights" - ] - }, - { - "text": "Ratify the Rome Statue of the International Criminal Court", - "values": [ - "International instruments", - "Justice" - ] - }, - { - "text": "Step up efforts to abolish the practice of racial profiling and arbitrary arrest by the police and security forces", - "values": [ - "Human rights violations by state agents", - "Racial discrimination" - ] - }, - { - "text": "Continue efforts to ensure equal access to education for women and girls, and advocate for broader participation of women in the labour force", - "values": [ - "Labour", - "Right to education", - "Rights of the Child", - "Women's rights" - ] - }, - { - "text": "Sign and ratify the Optional Protocol to the Convention against Torture, as well as the Optional Protocol to the Convention on the Elimination of All Forms of Discrimination against Women", - "values": [ - "Detention", - "International instruments", - "Torture and other CID treatment", - "Women's rights" - ] - }, - { - "text": "Continue giving priorities to human rights education and awareness- raising in the Government's plans, strategies and programmes, and to enhance the participation of civil society and private sector, as appropriate, as a complementary driving force in this regard", - "values": [ - "Civil society", - "Human rights education and training" - ] - }, - { - "text": "Continue reforming the judiciary system", - "values": [ - "Justice" - ] - }, - { - "text": "Pursue strategies fighting against poverty and social inequalities ", - "values": [ - "Poverty" - ] - }, - { - "text": "Continue dialogue among faith groups to strengthen and consolidate the spirit of co-existence", - "values": [ - "Freedom of religion and belief" - ] - }, - { - "text": "Ensure that prisoners with disabilities have access to health care and rehabilitation on the basis of informed consent ", - "values": [ - "Detention", - "Disabilities" - ] - }, - { - "text": "Abolish capital punishment, establish a moratorium on all pending executions and commute all death sentences to prison sentences", - "values": [ - "Death penalty" - ] - }, - { - "text": "Stop the revocation of permanent residency status of Palestinians in East Jerusalem and provide adequate resources for the development of services and infrastructure, including the creation of new schools ", - "values": [ - "Freedom of movement", - "Right to education" - ] - }, - { - "text": "Take measures to abolish the death penalty ", - "values": [ - "Death penalty" - ] - }, - { - "text": "Continue improving Human rights education and trainingfor enforcement agencies, public officials, and prison guards", - "values": [ - "Human rights education and training" - ] - }, - { - "text": "Improve the prosecution and prevention of domestic violence and ensure that victims of domestic violence have access to shelters and other support services", - "values": [ - "Rights of the Child", - "Women's rights" - ] - }, - { - "text": "Promote inclusive education for persons with disabilities and reduce progressively the special schools", - "values": [ - "Disabilities", - "Right to education" - ] - }, - { - "text": "Continue engaging members of the international donor community in capacity-building in the field of economic and social rights ", - "values": [ - "ESC rights - general" - ] - }, - { - "text": "Reinforce government control over the activities and personnel of private military and/or security companies, in order to strengthen the rule of law and respect for human rights by all relevant actors", - "values": [ - "Public security" - ] - }, - { - "text": "Sign and ratify the regional and international instruments to which the State is not yet a party", - "values": [ - "International instruments" - ] - }, - { - "text": "Ensure freedom of religion in the legislation and in practice and promote tolerance through awareness-raising campaigns and free access to information ", - "values": [ - "Freedom of religion and belief", - "Human rights education and training" - ] - }, - { - "text": "Adopt a professional code of conduct for judges and prosecutors", - "values": [ - "Justice" - ] - }, - { - "text": "Continue to strengthen the empowerment of women in all areas of public life", - "values": [ - "Women's rights" - ] - }, - { - "text": "Implement its legislation to prevent violence against women and adopt a strategy to properly tackle the unequal status of women ", - "values": [ - "Women's rights" - ] - }, - { - "text": "Become a party to the optional protocols to ICCPR and CEDAW", - "values": [ - "CP rights - general", - "Death penalty", - "International instruments", - "Women's rights" - ] - }, - { - "text": "Take measures to address discrimination against persons belonging to the Batwa minority and improve their socioeconomic situation by ensuring their active participation in all decisions which affect them ", - "values": [ - "Development", - "Indigenous peoples" - ] - }, - { - "text": "Establish a mechanism making mandatory independent visits to all places where persons may be deprived of their liberty, including all military or national security facilities", - "values": [ - "Detention" - ] - }, - { - "text": "Complete the process of creating an autonomous and independent national human rights institution, in conformity with the Paris Principles", - "values": [ - "National Human Rights Institution" - ] - }, - { - "text": "Sign and ratify the Convention on the Rights of Persons with Disabilities and the Optional Protocol thereto - and the International Convention for the Protection of All Persons from Enforced Disappearance ", - "values": [ - "Disabilities", - "Enforced disappearances", - "International instruments" - ] - }, - { - "text": "Adopt all necessary measures, including legislative measures, in order to apply a policy on migrants with a human rights perspective, in particular with regard to the detention of migrants, especially women and children ", - "values": [ - "Detention", - "Migrants", - "Rights of the Child", - "Women's rights" - ] - }, - { - "text": "Consider adoption of the comprehensive national plan of action to achieve gender equality", - "values": [ - "Women's rights" - ] - }, - { - "text": "With the support and cooperation of the international community, seek to build up its capacities to effectively respond to natural disasters and adapt to the challenges brought about by climate change.", - "values": [ - "Environment", - "Technical assistance and cooperation" - ] - }, - { - "text": "Inscribe the legal definition of discrimination in Chinese laws as a means to enhance Chinese efforts in this regard", - "values": [ - "Other" - ] - }, - { - "text": "Re-examine recent legislation that limits dissemination of certain information via the Internet, including through social media", - "values": [ - "Freedom of opinion and expression" - ] - }, - { - "text": "Adopt measures to hold juvenile and adult offenders separately", - "values": [ - "Detention", - "Rights of the Child" - ] - }, - { - "text": "Continue to bring about the strengthening of the structures for human rights protection in accordance with international standards ", - "values": [ - "General" - ] - }, - { - "text": "Establish a national human rights institution in compliance with the Paris Principles without delay", - "values": [ - "National Human Rights Institution" - ] - }, - { - "text": "Develop more equitable strategies to achieve gender equality on the basis of the assessment or examination of the different needs, constraints, opportunities and priorities of men and women", - "values": [ - "Women's rights" - ] - }, - { - "text": "Declare, as soon as possible, a moratorium on executions, with a view to definitively abolishing the death penalty ", - "values": [ - "Death penalty" - ] - }, - { - "text": "Prohibit child labour in contravention of ILO Convention No. 138 on Minimum Age and promote an information policy for those concerned families ", - "values": [ - "International instruments", - "Labour", - "Rights of the Child" - ] - }, - { - "text": "Protect land rights for indigenous communities", - "values": [ - "Indigenous peoples", - "Right to land" - ] - }, - { - "text": "Take steps to ensure that employment standards for domestic workers are fully implemented and respected ", - "values": [ - "Labour" - ] - }, - { - "text": "Launch the process to design and implement the National Action Plan on business and human rights in accordance with the United Nations Guiding Principles on Business and Human Rights", - "values": [ - "Business and human rights" - ] - }, - { - "text": "Adopt the necessary measures to respect and protect human rights defenders ", - "values": [ - "Human rights defenders" - ] - }, - { - "text": "Strengthen the adoption of necessary measures to implement a national programme aimed at eliminating violence against children ", - "values": [ - "Rights of the Child" - ] - }, - { - "text": "Ratify the Second Optional Protocol to the International Convention on Civil and Political Rights ", - "values": [ - "Death penalty", - "International instruments" - ] - }, - { - "text": "Enact legislation that guarantees that all children are registered at birth and are provided with appropriate birth certificates ", - "values": [ - "Rights of the Child" - ] - }, - { - "text": "Consider total elimination of the death penalty from the normative system including all norms of the Military Justice Code that still provide for it in certain cases.", - "values": [ - "Death penalty" - ] - }, - { - "text": "Ensure health care for women and improve reproductive health care services", - "values": [ - "Right to health", - "Women's rights" - ] - }, - { - "text": "Continue public consultations with NGOs and civil society in the follow-up to the UPR", - "values": [ - "Civil society", - "UPR process" - ] - }, - { - "text": "Take adequate measures to ensure full compatibility of national legislation with the provisions and principles of the Convention on the Rights of the Child and its Optional Protocols", - "values": [ - "International humanitarian law", - "International instruments", - "Labour", - "Rights of the Child", - "Trafficking" - ] - }, - { - "text": "Adopt effective measures to ensure the full realization of the right to freedom of expression for all persons.", - "values": [ - "Freedom of opinion and expression" - ] - }, - { - "text": "Intensify the public awareness campaign against FGM and adopt, and implement, legislation prohibiting and criminalizing FGM", - "values": [ - "Human rights education and training", - "Rights of the Child", - "Torture and other CID treatment", - "Women's rights" - ] - }, - { - "text": "Adopt as soon as possible the Law on preventing and combating discrimination", - "values": [ - "Other" - ] - }, - { - "text": "Further intensify efforts in fighting HIV/AIDS", - "values": [ - "HIV - Aids" - ] - }, - { - "text": "Abolish life imprisonment without the possibility of parole for non-violent offenses", - "values": [ - "Detention" - ] - }, - { - "text": "Fully implement the laws to combat discrimination against women, and strengthen effectiveness in combating domestic and sexual violence against women ", - "values": [ - "Women's rights" - ] - }, - { - "text": "Continue its admirable international efforts to tackle global warming, including by reminding developed countries and other major emitting States of their obligation to help promote and protect human rights in Saint Lucia by reducing greenhouse gas emissions to safe levels ", - "values": [ - "Environment" - ] - }, - { - "text": "Continue providing human rights training within the municipalities and in schools providing general education", - "values": [ - "Human rights education and training" - ] - }, - { - "text": "Adopt in its Penal Code the definition of torture in article 1 (1) of the United Nations Convention against Torture", - "values": [ - "International instruments", - "Torture and other CID treatment" - ] - }, - { - "text": "Raise the age of criminal responsibility in line with international standards", - "values": [ - "Justice", - "Rights of the Child" - ] - }, - { - "text": "Consider ratification of the third Optional Protocol to the CRC on a communication procedure ", - "values": [ - "International instruments", - "Rights of the Child" - ] - }, - { - "text": "Continue to implement effective policies to ensure full access to health services for its people", - "values": [ - "Right to health" - ] - }, - { - "text": "Mongolia is committed to strengthen its efforts to investigate all allegations of torture and police brutality. National legislation in force prohibits an arbitrary detention of persons by law enforcement officials as such action has to be approved by the judge. Thus, the recommendation is unacceptable.", - "values": [ - "Human rights violations by state agents", - "Torture and other CID treatment" - ] - }, - { - "text": "Simplify requirements for official approval of religious practices in order to allow more individuals to exercise their freedom of religion and belief and to better respect the religious rights of minorities", - "values": [ - "Freedom of religion and belief", - "Minorities" - ] - }, - { - "text": "Redouble the capacity-building efforts for all the security forces, aiming at avoiding practices of racial bias, or, directed, among others, against vulnerable minorities such as lesbian, gay, bisexual, transgender and intersex persons", - "values": [ - "Sexual Orientation and Gender Identity" - ] - }, - { - "text": "Continue the implementation of its Strategy to combat poverty to achieve the MDGs ", - "values": [ - "Poverty" - ] - }, - { - "text": "Resist calls to further liberalize abortion and instead implement laws aimed at protecting the right to life of the unborn, and recognize that life starts at conception", - "values": [ - "Women's rights" - ] - }, - { - "text": "Take all the necessary measures to effectively implement the law against domestic violence", - "values": [ - "Rights of the Child", - "Women's rights" - ] - }, - { - "text": "Take relevant steps aimed at abolishing the death penalty ", - "values": [ - "Death penalty" - ] - }, - { - "text": "End discrimination against same-sex couples in Northern Ireland by bringing the relevant law into line with other parts of the United Kingdom", - "values": [ - "Sexual Orientation and Gender Identity" - ] - }, - { - "text": "Continue and pursue its efforts to enable children to complete their education and protect them from exploitation, and adopt environmentally sustainable development", - "values": [ - "Development", - "Environment", - "Labour", - "Right to education", - "Rights of the Child" - ] - }, - { - "text": "Review its national legislation and practice so that they comply with the principle of non-refoulement.", - "values": [ - "Asylum-seekers - refugees" - ] - }, - { - "text": "Condemn all acts of intimidation of, or violence against, members of religious minorities, and bring all perpetrators to justice without delay", - "values": [ - "Freedom of religion and belief", - "Minorities", - "Racial discrimination" - ] - }, - { - "text": "Ensure that the provisions of the Convention on the Rights of Persons with Disabilities (CRPD) are duly implemented", - "values": [ - "Disabilities", - "International instruments" - ] - }, - { - "text": "Respond to all recommendations set out in the report of the Ombudsman relating to the protection of the interests of minors having behavioural problems and in difficult social situations - pay more specific attention to the rights of such minors to have appropriate educational and medical support - and effectively implement an internal common regulation and an efficient inspection system in centres to prevent and combat abuse ", - "values": [ - "National Human Rights Institution", - "Rights of the Child" - ] - }, - { - "text": "Establish national mechanisms to monitor and stop incitement to hatred, acts of racism and Islamophobia", - "values": [ - "Freedom of religion and belief", - "Racial discrimination" - ] - }, - { - "text": "Implement a national plan of action that would abolish discrimination against women, which is fostered by gender inequality", - "values": [ - "Women's rights" - ] - }, - { - "text": "Continue its legislative reforms to address discriminatory cultural practices, including FGM, in line with CEDAW recommendations", - "values": [ - "Rights of the Child", - "Torture and other CID treatment", - "Treaty bodies", - "Women's rights" - ] - }, - { - "text": "Enact without delay legislation for the protection of children, such as prohibition of corporal punishment under any circumstances, and to swiftly work towards the ratification of the human rights instruments to which São Tomé and Príncipe has earlier committed itself, namely the International Covenant on Civil and Political Rights, the International Covenant on Economic, Social and Cultural Rights, the International Convention on the Elimination of All Forms of Racial Discrimination, the Convention against Torture, and the Rome Statute of the International Criminal Court", - "values": [ - "International instruments", - "Rights of the Child", - "Torture and other CID treatment" - ] - }, - { - "text": "Strengthen efforts to protect asylum-seekers and refugees", - "values": [ - "Asylum-seekers - refugees" - ] - }, - { - "text": "Ratify the Kampala amendments to the Rome Statute, if possible with a view to contributing to the activation of the jurisdiction of the International Criminal Court over the crime of aggression at the beginning of 2017 ", - "values": [ - "International instruments", - "Justice" - ] - }, - { - "text": "Establish a national mechanism for the prevention of torture, in line with the Optional Protocol to the Convention against Torture", - "values": [ - "Detention", - "International instruments", - "Torture and other CID treatment" - ] - }, - { - "text": "Prioritize the use of alternative measures to detention of migrants and ensure that the detention of vulnerable persons is avoided", - "values": [ - "Detention", - "Migrants" - ] - }, - { - "text": "Decriminalize consensual sexual relations between same-sex adults and strength efforts to combat discrimination against those persons, while respecting their rights to association and representation in civil society", - "values": [ - "Civil society", - "Freedom of association and peaceful assembly", - "Sexual Orientation and Gender Identity" - ] - }, - { - "text": "Consider repealing the blasphemy laws, or at least amending them, to protect persons from eventual abuses or false accusations and to moderate the penalties", - "values": [ - "Freedom of opinion and expression", - "Freedom of religion and belief" - ] - }, - { - "text": "Continue efforts to consolidate and deepen the judicial reform process so as to improve the quality of the civil service and facilitate access to justice ", - "values": [ - "Justice" - ] - }, - { - "text": "Remove the criminal immunity of members of the police, armed forces and national security forces, as enshrined within the National Security Act of 2010 ", - "values": [ - "Human rights violations by state agents" - ] - }, - { - "text": "Strengthen its efforts in HIV/Aids prevention and treatment and reduce child and maternal mortality rates ", - "values": [ - "HIV - Aids", - "Right to health", - "Rights of the Child", - "Women's rights" - ] - }, - { - "text": "Review corruption in the healthcare system and implement measures to ensure that all persons have access to adequate healthcare without discrimination", - "values": [ - "Corruption", - "Right to health" - ] - }, - { - "text": "Engage members of the international donor community and seek technical assistance and capacity-building to address the problem of poverty and poor human development performance.", - "values": [ - "Poverty", - "Technical assistance and cooperation" - ] - }, - { - "text": "Instil a transparent, human rights-based approach related to the treatment of asylum seekers following their arrival, including the cessation of transfers to third countries", - "values": [ - "Asylum-seekers - refugees" - ] - }, - { - "text": "Adopt norms and procedures to ensure the implementation of the principle of non-refoulement as established by the 1951 Convention relating to the Status of Refugees", - "values": [ - "Asylum-seekers - refugees", - "International instruments" - ] - }, - { - "text": "Continue to further regulate the work of domestic workers", - "values": [ - "Labour" - ] - }, - { - "text": "Take positive measures to protect and enhance the rights of LGBT persons and facilitate their integration into society ", - "values": [ - "Sexual Orientation and Gender Identity" - ] - }, - { - "text": "Step up the efforts aimed at the adoption of the new 10-year National Programme on Strengthening Child Development and Protection ", - "values": [ - "Rights of the Child" - ] - }, - { - "text": "Step up efforts to promote racial equality and social inclusion in the education system in Northern Ireland", - "values": [ - "Racial discrimination", - "Right to education" - ] - }, - { - "text": "Take adequate measures to combat acts of racism and xenophobia against non-nationals", - "values": [ - "Racial discrimination" - ] - }, - { - "text": "Further enhance human rights education", - "values": [ - "Human rights education and training" - ] - }, - { - "text": "Prohibit torture and other ill-treatment, in national legislation and in practice in line with its obligations under CAT, ensuring that all allegations of torture or other ill-treatment are independently, promptly and thoroughly investigated, and perpetrators are brought to justice in accordance to international fair trial standards ", - "values": [ - "International instruments", - "Torture and other CID treatment" - ] - }, - { - "text": "Amend the existing Child Labour Act to include child labour in the informal sector within the purview of the law", - "values": [ - "Labour", - "Rights of the Child" - ] - }, - { - "text": "Adopt a more effective and stringent good governance policy ", - "values": [ - "Justice" - ] - }, - { - "text": "Take all necessary measures to lift all existing barriers in the enjoyment of the rights of persons with disabilities, with particular attention to their right to live independently, to have access to adequate health care services and to be integrated in the community", - "values": [ - "Disabilities", - "Right to health" - ] - }, - { - "text": "Concentrate attention on domestic violence", - "values": [ - "Rights of the Child", - "Women's rights" - ] - }, - { - "text": "Provide the national mechanism for the promotion of gender equality of adequate human and financial resources to enable it to effectively fulfil its mandate", - "values": [ - "Women's rights" - ] - }, - { - "text": "Ratify the Optional Protocol to CEDAW and withdraw reservations to article 2 (f) and (g) of CEDAW ", - "values": [ - "International instruments", - "Women's rights" - ] - }, - { - "text": "Accelerate the progress to ratify the International Convention for the Protection of All Persons from Enforced Disappearance", - "values": [ - "Enforced disappearances", - "International instruments" - ] - }, - { - "text": "Ensure full compliance with its international obligations regarding the right of asylum seekers and refugees by expediting the processing of applications by asylum seekers at the various processing centres", - "values": [ - "Asylum-seekers - refugees" - ] - }, - { - "text": "Continue its efforts to ensure the civil and political rights of women", - "values": [ - "Women's rights" - ] - }, - { - "text": "Undertake the necessary efforts to submit the corresponding periodic report to the Committee on the Elimination of Discrimination against Women, indicating specifically if the Penal Code of Dominica provides for the definition of any type of violence against women as a criminal offence", - "values": [ - "Treaty bodies", - "Women's rights" - ] - }, - { - "text": "Further strengthen comprehensive measures addressing all forms of violence against women and girls", - "values": [ - "Rights of the Child", - "Women's rights" - ] - }, - { - "text": "Ratify OP-CAT, enact and implement laws and administrative measures to combat torture and make a declaration recognizing CAT's competence to receive communications", - "values": [ - "Detention", - "International instruments", - "Torture and other CID treatment" - ] - }, - { - "text": "Senegal aims to increase vaccination coverage from 80 to 90 per cent by introducing new vaccines against two of the three main causes of child mortality, pneumonia and rotavirus.", - "values": [ - "Right to health", - "Rights of the Child" - ] - }, - { - "text": "Ensure that all military actions are in conformity with international law, that the alleged grave violations are thoroughly and impartially investigated and that those responsible are brought to justice", - "values": [ - "Justice" - ] - }, - { - "text": "Establish an independent NHRI with a solid mandate and in accordance with the Paris Principles", - "values": [ - "National Human Rights Institution" - ] - }, - { - "text": "Promote awareness of officers charged with law enforcement on matters related to human rights values and principles", - "values": [ - "Human rights education and training" - ] - }, - { - "text": "Continue to strengthen legal and policy frameworks on the promotion and protection of women\u2019s rights and on achieving gender equality", - "values": [ - "Women's rights" - ] - }, - { - "text": "Maintain its international leadership in the promotion of the rights to solidarity, peace, development, a democratic and equitable international order, a healthy environment and the self-determination of peoples", - "values": [ - "Development", - "Environment" - ] - }, - { - "text": "Become a State party to the Rome Statute of the International Criminal Court", - "values": [ - "International instruments", - "Justice" - ] - }, - { - "text": "Ratify the Convention on the Protection of the Rights of All Migrant Workers and Members of Their Families", - "values": [ - "International instruments", - "Labour", - "Migrants" - ] - }, - { - "text": "Pay more attention to solving the issue of under-representation of women, which subsists in many areas of society, including in decision-making.", - "values": [ - "Women's rights" - ] - }, - { - "text": "Abolish the "arraigo penal" at the federal and state level as it is contrary to international human rights standards ", - "values": [ - "International instruments", - "Justice" - ] - }, - { - "text": "Implement all recommendations put forward by the Special Rapporteur on the rights of indigenous people following his visit to Kenya in 2007, as well as ratify ILO Convention No. 169 ", - "values": [ - "Indigenous peoples", - "International instruments", - "Special procedures" - ] - }, - { - "text": "Follow up government action to empower women and combat female stereotypes ", - "values": [ - "Women's rights" - ] - }, - { - "text": "Pursue efforts to combat structural racism and prosecute perpetrators of racist acts ", - "values": [ - "Racial discrimination" - ] - }, - { - "text": "Further strengthen its efforts towards socioeconomic development and poverty eradication", - "values": [ - "Development", - "Poverty" - ] - }, - { - "text": "Consider ratifying the International Covenant on Civil and Political Rights and its Optional Protocols, the Optional Protocol to the International Covenant on Economic, Social and Cultural Rights and the Optional Protocol to the Convention against Torture and Other Cruel, Inhuman or Degrading Treatment or Punishment", - "values": [ - "Death penalty", - "Detention", - "ESC rights - general", - "International instruments", - "Torture and other CID treatment" - ] - }, - { - "text": "Continue working on the design and implementation of programmes to promote the rights of specific groups, such as the project entitled - Policy and plan to fully integrate the Afro-Panamanian population - ", - "values": [ - "Minorities" - ] - }, - { - "text": "Implement fully and without delay the 2010 anti-discrimination law, by integrating provisions covering discrimination based on sexual orientation", - "values": [ - "Sexual Orientation and Gender Identity" - ] - }, - { - "text": "Abolish now the death penalty for all crimes and ratify the Second Optional Protocol to the International Covenant on Civil and Political Rights", - "values": [ - "Death penalty", - "International instruments" - ] - }, - { - "text": "Continue its efforts to eradicate poverty and inequality", - "values": [ - "Poverty" - ] - }, - { - "text": "Finalize the National Action Plan on Gender-based Violence and allocate sufficient resources to it to ensure its implementation", - "values": [ - "Women's rights" - ] - }, - { - "text": "Continue to accelerate the momentum of the political, socio-economic and administrative reform to further fulfil socio-economic needs of the people", - "values": [ - "ESC rights - general" - ] - }, - { - "text": "Put in place a strategic plan aimed at strengthening the promotion and respect of the rights of women and vulnerable persons", - "values": [ - "Women's rights" - ] - }, - { - "text": "Carry on a dialogue with Nepal to find acceptable solutions for the remaining Bhutanese refugees of Nepali origin in Nepalese refugee camps ", - "values": [ - "Asylum-seekers - refugees" - ] - }, - { - "text": "Ratify the Optional Protocol to the Convention on the Rights of the Child on the involvement of children in armed conflict, and harmonize national legislation in conformity with the provisions of OP-CRC-AC", - "values": [ - "International humanitarian law", - "International instruments", - "Rights of the Child" - ] - }, - { - "text": "Establish a strategy to combat discriminatory stereotypes", - "values": [ - "Other" - ] - }, - { - "text": "Ratify the Optional Protocol to the International Covenant on Economic, Social and Cultural Rights and Protocol 12 of the European Convention on Human Rights ", - "values": [ - "ESC rights - general", - "International instruments" - ] - }, - { - "text": "Continue and strengthen measures to prevent and repress offences and violence against women and girls, including through early childhood education, awareness-raising and enhancing effective mechanisms of reparation", - "values": [ - "Human rights education and training", - "Rights of the Child", - "Women's rights" - ] - }, - { - "text": "The Government is committed to end the exploitation of workers in the Maldives. This commitment was further demonstrated by the ratification of the Anti-Human Trafficking Act in 2013", - "values": [ - "Labour", - "Trafficking" - ] - }, - { - "text": "Further strengthen efforts to ensure equal participation of men and women in elected office", - "values": [ - "Women's rights" - ] - }, - { - "text": "Establish a legal framework in order to help women and men develop knowledge to enable them to decide freely and responsibly on matters related to their sexuality, including their sexual and reproductive health ", - "values": [ - "Right to health", - "Women's rights" - ] - }, - { - "text": "Continue to engage in the full implementation of judicial decisions concerning the family, and exerting efforts to resolve family-related disputes", - "values": [ - "Justice" - ] - }, - { - "text": "Ratify and fully align its national legislation with all obligations under the Rome Statue of International Criminal Court, including incorporating the Statue definition of crimes and general principles, as well as adopting provisions enabling cooperation with the Court, and to accede to the Agreement on Privileges and Immunities of the Court", - "values": [ - "International instruments", - "Justice" - ] - }, - { - "text": "Bring an immediate end to harassment and intimidation of independent journalists and media institutions and amend the legislation that restricts press freedom and freedom of expression", - "values": [ - "Freedom of opinion and expression", - "Freedom of the press" - ] - }, - { - "text": "Adopt measures providing for independent and effective investigation and prosecution of all cases of alleged ill-treatment of persons in detention facilities as well as for remedies for victims", - "values": [ - "Detention", - "Torture and other CID treatment" - ] - }, - { - "text": "Continue to take measures to ensure an effective compliance with the legislations regarding the most vulnerable groups of the population ", - "values": [ - "Minorities" - ] - }, - { - "text": "Take further steps to improve the integration into society of persons belonging to different ethnic and religious groups, including Muslims", - "values": [ - "Freedom of religion and belief", - "Minorities" - ] - }, - { - "text": "Introduce human rights education and training to members of the police and prison and detention staff, and ensure their accountability for human rights violations ", - "values": [ - "Detention", - "Human rights education and training" - ] - }, - { - "text": "Take effective measures to combat violence against women and also the trafficking in persons", - "values": [ - "Trafficking", - "Women's rights" - ] - }, - { - "text": "Improve domestic legislation to fight discrimination against women", - "values": [ - "Women's rights" - ] - }, - { - "text": "Reinforce legislation and adopt effective measures to prevent, combat and punish human trafficking ", - "values": [ - "Trafficking" - ] - }, - { - "text": "Continue providing health care programmes to HIV/AIDS patients and work towards preventing its spread in the society ", - "values": [ - "HIV - Aids" - ] - }, - { - "text": "Enact legislation to provide for freedom of information requests", - "values": [ - "Freedom of opinion and expression" - ] - }, - { - "text": "Strengthen social inclusion measures, in particular for persons with physical disabilities", - "values": [ - "Disabilities" - ] - }, - { - "text": "Take steps to prevent discrimination against women belonging to disadvantaged groups as well as institute measures to decrease dropout rates among Sinti and Roma girls", - "values": [ - "Minorities", - "Racial discrimination", - "Right to education", - "Rights of the Child", - "Women's rights" - ] - }, - { - "text": "Take measures to prohibit targeting, profiling and harassment of Muslims ", - "values": [ - "Freedom of religion and belief", - "Minorities", - "Racial discrimination" - ] - }, - { - "text": "Consider recognizing the competence of the Committee on Enforced Disappearances to receive and examine communications from or on behalf of victims and other State parties, regarding violations of the International Convention for the Protection of All Persons from Forced Disappearance's (CPED) provisions", - "values": [ - "Enforced disappearances", - "International instruments", - "Treaty bodies" - ] - }, - { - "text": "Continue its efforts to fight against hate crimes, hate speech and incitement to hatred, including in political discourse, to prosecute members of racist or xenophobic extremist groups, and to combat racial prejudice and racial discrimination in the media ", - "values": [ - "Racial discrimination" - ] - }, - { - "text": "Consider the structure and function of the national human rights commission in accordance with the Paris Principles.", - "values": [ - "National Human Rights Institution" - ] - }, - { - "text": "Establish an immediate moratorium on the use of the death penalty and commute all current death sentences", - "values": [ - "Death penalty" - ] - }, - { - "text": "Continue its efforts to intensify the fight against all forms of corruption ", - "values": [ - "Corruption" - ] - }, - { - "text": "Continue its efforts to eliminate discrimination against and empower marginalized and vulnerable groups particularly by ensuring effective implementation of relevant laws and measures through proper and active coordination among line ministries, national and state governments, by extending disaggregated data to caste, gender, religion, status and region, and by increasing sensitization and reducing discriminatory attitudes among law enforcement officers through human rights education and training ", - "values": [ - "Human rights education and training", - "Human rights violations by state agents" - ] - }, - { - "text": "Ratify, before the next universal periodic review cycle, the Optional Protocol to the Convention on the Rights of the Child on a communications procedure", - "values": [ - "International instruments", - "Rights of the Child", - "UPR process" - ] - }, - { - "text": "Move forward with the proposal to amend the Equal Treatment Act to harmonise existing legislation, especially when it comes to providing equal protection on all discrimination grounds ", - "values": [ - "Other" - ] - }, - { - "text": "Continue strengthening its programmes of employment creation, food and assistance to the most vulnerable in the fight against poverty and social inequality", - "values": [ - "Development", - "Poverty", - "Right to food" - ] - }, - { - "text": "Sign and ratify OP-CEDAW ", - "values": [ - "International instruments", - "Women's rights" - ] - }, - { - "text": "Accede to international instruments relating to statelessness and to the assistance and protection of displaced persons in Africa ", - "values": [ - "Internally displaced persons", - "International instruments", - "Statelessness and the right to nationality" - ] - }, - { - "text": "Strengthen work to improve the scope of the right to education, in particular for children and adolescents", - "values": [ - "Right to education", - "Rights of the Child" - ] - }, - { - "text": "Adopt specific legislation to grant gender equality", - "values": [ - "Women's rights" - ] - }, - { - "text": "Continue its good practices such as compensation for victims of human trafficking and the establishment of institutions such as the international training centre on human trafficking and migration ", - "values": [ - "Human rights education and training", - "Trafficking" - ] - }, - { - "text": "Ensure that all measures and policies affecting Roma communities are designed, implemented, monitored and evaluated with their full participation ", - "values": [ - "Minorities" - ] - }, - { - "text": "Invite the Special Rapporteur on the independence of judges and lawyers ", - "values": [ - "Justice", - "Special procedures" - ] - }, - { - "text": "Fully align its national legislation with the Rome Statute of the International Criminal Court, to accede to the Rome Statute and the Agreement on Privileges and Immunities of the International Criminal Court", - "values": [ - "International instruments", - "Justice" - ] - }, - { - "text": "Enhance effectiveness of the judiciary, inter alia in terms of the length of pre-trial detention", - "values": [ - "Detention", - "Justice" - ] - }, - { - "text": "Adopt decisions such as the executive decision on the Saint Alexander Nevsky Cathedral on the restitution of property confiscated from the Muslim denomination and all others, so as to demonstrate the non-discriminatory character of the executive", - "values": [ - "Freedom of religion and belief", - "Minorities" - ] - }, - { - "text": "Continue its efforts to eradicate gender-based violence and to ensure the advancement of women in decision-making positions in all sectors", - "values": [ - "Women's rights" - ] - }, - { - "text": "Strengthen its efforts to advance organic and procedural reform of military justice with the aim of eliminating the use of the death penalty in all hypotheses comprised in the Code of Military Justice ", - "values": [ - "Death penalty", - "Justice" - ] - }, - { - "text": "Keep working on awareness measures, including in schools, to combat discriminatory attitudes based on sexual orientation", - "values": [ - "Sexual Orientation and Gender Identity" - ] - }, - { - "text": "Provide for free, independent media in accordance with the Libyan Arab Jamahiriya's international obligations ", - "values": [ - "Freedom of the press" - ] - }, - { - "text": "Ensure that all the initiatives taken in the field of reconciliation comply with international standards on human rights, beginning with a comprehensive fight against impunity ", - "values": [ - "Impunity" - ] - }, - { - "text": "Continue to consolidate the process to further strengthen the country's democratization and the Rule of Law", - "values": [ - "Justice" - ] - }, - { - "text": "Ensure an impartial and comprehensive investigation of all reported cases of human rights violations and bring the perpetrators to justice", - "values": [ - "General" - ] - }, - { - "text": "Introduce the legislative measures and policies necessary to ensure the protection and promotion of the rights of boys and girls, including explicit prohibition of corporal punishment both in public and private spheres, as previously recommended", - "values": [ - "Rights of the Child", - "Torture and other CID treatment", - "UPR process" - ] - }, - { - "text": "Decriminalize same-sex sexual relations between consenting adults by repealing section 104 (1) (b) of the Criminal Code and introduce comprehensive anti-discrimination legislation to provide equal protection against discrimination for all persons and on all grounds", - "values": [ - "Sexual Orientation and Gender Identity" - ] - }, - { - "text": "Expedite the procedures for the establishment of the National Human Rights Commission and the appointment of its members as soon as possible ", - "values": [ - "National Human Rights Institution" - ] - }, - { - "text": "Intensify the dialogue with religious leaders in order to erase all remaining restrictions on religions by law", - "values": [ - "Freedom of religion and belief" - ] - }, - { - "text": "Ratify the International Convention for the Protection of All Persons from Enforced Disappearance, the Convention on the Reduction of Statelessness and the Protocol to Prevent, Suppress and Punish Trafficking in Persons, Especially Women and Children, supplementing the United Nations Convention against Transnational Organized Crime", - "values": [ - "Enforced disappearances", - "International instruments", - "Rights of the Child", - "Statelessness and the right to nationality", - "Trafficking", - "Women's rights" - ] - }, - { - "text": "Grant the right to family reunification to all refugees", - "values": [ - "Asylum-seekers - refugees" - ] - }, - { - "text": "Release all political prisoners ", - "values": [ - "Detention", - "Freedom of opinion and expression" - ] - }, - { - "text": "Continue to strengthen good governance at all levels to enhance service delivery", - "values": [ - "Other" - ] - }, - { - "text": "Promote and protect all human rights for all", - "values": [ - "General" - ] - }, - { - "text": "Continue to further strengthen efforts for the empowerment of women ", - "values": [ - "Women's rights" - ] - }, - { - "text": "Establish a formal moratorium on the use of the death penalty with a view to ratifying ICCPR-OP 2", - "values": [ - "Death penalty", - "International instruments" - ] - }, - { - "text": "Evaluate its 2006-2009 national plan of action against trafficking of women and children to determine which actions were effective and should be continued in the future ", - "values": [ - "Rights of the Child", - "Trafficking", - "Women's rights" - ] - }, - { - "text": "Continue its policies on improving the rights of the child", - "values": [ - "Rights of the Child" - ] - }, - { - "text": "Continue its efforts in fighting against trafficking in persons, especially women and children ", - "values": [ - "Rights of the Child", - "Trafficking", - "Women's rights" - ] - }, - { - "text": "Although Lesotho has not been able to meet most of the MDGs, she will redouble her efforts to achieve the goals and in the post 2015 period, she will mobilize more development partners and exert decisive leadership to attain National Vision 2020 as the MDGs bear a close relationship to the 7 pillars of the Vision 2020.", - "values": [ - "Development" - ] - }, - { - "text": "Explore the expansion of health and safety regulations to cover non- medical practitioners and conduct regular monitoring of their activities ", - "values": [ - "Right to health" - ] - }, - { - "text": "Ratify the Second Optional Protocol to the International Covenant on Civil and Political Rights, aiming at the abolition of the death penalty with the ultimate aim of abolishing the death penalty in all circumstances", - "values": [ - "Death penalty", - "International instruments" - ] - }, - { - "text": "Ensure comprehensive and universal access to health services for citizens and non-citizens alike, including migrant workers, refugees, asylum seekers, indigenous peoples", - "values": [ - "Asylum-seekers - refugees", - "Indigenous peoples", - "Labour", - "Migrants", - "Right to health" - ] - }, - { - "text": "Sign and ratify ICESCR as soon as possible as well as CRPD ", - "values": [ - "Disabilities", - "ESC rights - general", - "International instruments" - ] - }, - { - "text": "Improve media policy and regulations in order to ensure freedom of the press and of expression and to facilitate a more diverse media market ", - "values": [ - "Freedom of opinion and expression", - "Freedom of the press" - ] - }, - { - "text": "Strengthen the accountability and prosecution of law enforcement officers who commit abuses against lesbian, gay, bisexual and transgender persons and ethnic minorities", - "values": [ - "Human rights violations by state agents", - "Minorities", - "Racial discrimination", - "Sexual Orientation and Gender Identity" - ] - }, - { - "text": "Consider the possibility of acceding to and/or ratifying the Optional Protocol to the Convention on the Elimination of All Forms of Discrimination against Women ", - "values": [ - "International instruments", - "Women's rights" - ] - }, - { - "text": "Establish its national human rights institution to be fully adapted to the Paris Principles, with a broad and clear legal mandate and sufficient financial resources ", - "values": [ - "National Human Rights Institution" - ] - }, - { - "text": "Halt selective assassinations committed by contractors, and the privatization of conflicts with the use of private military companies", - "values": [ - "Extrajudicial executions", - "International humanitarian law", - "Public security" - ] - }, - { - "text": "Fully address recommendations and issues of concern raised by the Committee on the Rights of the Child with regard to child abuses and allocation of economic resources ", - "values": [ - "Rights of the Child", - "Treaty bodies" - ] - }, - { - "text": "Work to ensure the independence of the judiciary", - "values": [ - "Justice" - ] - }, - { - "text": "Incorporate into its domestic law norms protecting all children, including indigenous children, in line with the Convention on the Rights of the Child ", - "values": [ - "Indigenous peoples", - "International instruments", - "Rights of the Child" - ] - }, - { - "text": "Strengthen the social protection system and step up protection of the rights of the elderly", - "values": [ - "ESC rights - general" - ] - }, - { - "text": "Effectively investigate violations against human rights defenders, including journalists and women rights activists and bring to justice those responsible for such violations ", - "values": [ - "Freedom of the press", - "Human rights defenders" - ] - }, - { - "text": "Establish within the new law civil remedies, including comprehensive protection orders that are part of the Code of Civil Procedure, instead of being integrated into the Criminal Code", - "values": [ - "Other" - ] - }, - { - "text": "Continue to take measures for the increased protection of the rights of migrant workers ", - "values": [ - "Labour", - "Migrants" - ] - }, - { - "text": "Release immediately all political prisoners and ensure their full rehabilitation", - "values": [ - "Detention", - "Freedom of opinion and expression" - ] - }, - { - "text": "Increase enforcement of its occupational and safety laws ", - "values": [ - "Public security" - ] - }, - { - "text": "Undertake a health-care reform that guarantees universal access and integrated health-care services, and create adolescent-friendly health-care clinics ", - "values": [ - "Right to health" - ] - }, - { - "text": "End the detention of political activists and release all political prisoners without delay", - "values": [ - "Detention", - "Freedom of opinion and expression" - ] - }, - { - "text": "Consider ratifying the International Labour Organization (ILO) Domestic Workers Convention, 2011 (No. 189)", - "values": [ - "International instruments", - "Labour" - ] - }, - { - "text": "Take all necessary measures to ensure effective access to justice to victims of gender violence", - "values": [ - "Women's rights" - ] - }, - { - "text": "Accede to the various international conventions to which Gambia is not yet party to", - "values": [ - "International instruments" - ] - }, - { - "text": "Examine the possibility of ratifying the ICRMW ", - "values": [ - "International instruments", - "Labour", - "Migrants" - ] - }, - { - "text": "Recommended the development of a national strategy for human rights education in the school system at all levels, in accordance with the Plan of Action 2005-2009 of the World Programme for Human Rights Education, including the review and revision of curricula and textbooks, the training of teachers and the practice of human rights in the school community.", - "values": [ - "Human rights education and training" - ] - }, - { - "text": "Consider the possibility of adopting a de jure moratorium on executions, with a view to abolishing the death penalty ", - "values": [ - "Death penalty" - ] - }, - { - "text": "Maintain the current legislation, which respects the human person at all stages of his or her life", - "values": [ - "Other" - ] - }, - { - "text": "Take measures to ensure women's rights are protected through implementing existing laws such as the Early Marriage Act and the Dowry Act", - "values": [ - "Rights of the Child", - "Women's rights" - ] - }, - { - "text": "Consider the possibility of acceding to the main universal human rights treaties to which Samoa is not a party, including the International Convention on the Elimination of All Forms of Racial Discrimination, the International Covenant on Economic, Social and Cultural Rights and the Convention on the Rights of Persons with Disabilities, by seeking, if need be, technical assistance from OHCHR", - "values": [ - "Disabilities", - "ESC rights - general", - "International instruments", - "Racial discrimination", - "Technical assistance and cooperation" - ] - }, - { - "text": "Increase the efforts to ensure that detention conditions fully meets international human rights standards", - "values": [ - "Detention", - "International instruments" - ] - }, - { - "text": "Abolish the death penalty for all crimes and accede to the Second Optional Protocol to the ICCPR", - "values": [ - "Death penalty", - "International instruments" - ] - }, - { - "text": "Take effective measures to prevent manifestations of intolerance on the grounds of nationality and race", - "values": [ - "Racial discrimination" - ] - }, - { - "text": "Improve the conditions in administrative detention centres and ensure that the open centres meet adequate standards of living at all times", - "values": [ - "Detention" - ] - }, - { - "text": "Revise provisions for slander and insult in the Criminal Code so that the provisions are not used to unduly restrict journalistic activity and considerably shorten the time span given to Government institutions for imparting information to the public ", - "values": [ - "Freedom of opinion and expression", - "Freedom of the press" - ] - }, - { - "text": "Ensure that the police and National Bureau of Investigation pursue serious rights violations allegedly committed by military and police personnel", - "values": [ - "Human rights violations by state agents" - ] - }, - { - "text": "Establish an independent national human rights commission in compliance with the Paris Principles with a strong mandate.", - "values": [ - "National Human Rights Institution" - ] - }, - { - "text": "Address illiteracy as a priority.", - "values": [ - "Right to education" - ] - }, - { - "text": "Continue to expand its programmes of social justice in promoting economic, social and cultural rights, in particular health programmes where Cuba also commits itself to continue and deepen the extent of its cooperation.", - "values": [ - "ESC rights - general", - "Right to health" - ] - }, - { - "text": "Adopt a law on reparation and compensation for victims of torture during the war", - "values": [ - "Justice", - "Torture and other CID treatment" - ] - }, - { - "text": "Ensure that the Public Order management bill currently discussed is fully in line with international human rights standards", - "values": [ - "International instruments", - "Public security" - ] - }, - { - "text": "Amend the economic aid law and the property law so that they in no circumstances discriminate against women ", - "values": [ - "Women's rights" - ] - }, - { - "text": "Continue to encourage the immediate registration of newly born children, and introduce mechanisms to ensure that the absence of a parent does not prevent the registration of the child concerned", - "values": [ - "Rights of the Child", - "Statelessness and the right to nationality" - ] - }, - { - "text": "Take the necessary steps to ensure the speedy creation of a Commission for Truth, a Judicial Mechanism and an Office for Reparations pursuant to the Human Rights Council resolution 30/1", - "values": [ - "Justice" - ] - }, - { - "text": "Take the measures necessary for the amendment of the law on children in accordance with the Convention on the Rights of Persons with Disabilities", - "values": [ - "Disabilities", - "International instruments" - ] - }, - { - "text": "Consider extending a standing invitation to human rights special procedures.", - "values": [ - "Special procedures" - ] - }, - { - "text": "Ensure the prompt and impartial investigation of any excessive use of force in policing the border operations, including by the military", - "values": [ - "Human rights violations by state agents" - ] - }, - { - "text": "In the area of persons with different sexual orientation, implementation of a national system to guarantee equality and non-discrimination", - "values": [ - "Sexual Orientation and Gender Identity" - ] - }, - { - "text": "Increase its efforts for more attention to child issues", - "values": [ - "Rights of the Child" - ] - }, - { - "text": "Enact legislation to prohibit female genital mutilation and conduct awareness-raising programmes in this regard, particularly for parents, women and girls", - "values": [ - "Rights of the Child", - "Torture and other CID treatment", - "Women's rights" - ] - }, - { - "text": "Continue efforts for the empowerment of women, children and the underprivileged sections of the society ", - "values": [ - "Rights of the Child", - "Women's rights" - ] - }, - { - "text": "Adopt a comprehensive national human rights plan of action", - "values": [ - "General" - ] - }, - { - "text": "Consider consolidating the gains on human rights promotion and protection through the public awareness programme ", - "values": [ - "Human rights education and training" - ] - }, - { - "text": "Continue its efforts aimed at improving access of the population to primary health services and care", - "values": [ - "Right to health" - ] - }, - { - "text": "Ensure no one is subject to criminal processes for exercising rights to peaceful assembly and of association, nor subject to violence, harassment, persecution, intimidation or reprisals", - "values": [ - "Freedom of association and peaceful assembly" - ] - }, - { - "text": "Pursue national efforts to align the national legislation with the new Constitution", - "values": [ - "General" - ] - }, - { - "text": "Increase access to justice for sectors of the population, especially for those who live in rural areas", - "values": [ - "Justice" - ] - }, - { - "text": "Take measures to diversify its economy with a view to reducing its dependence on the export of primary products. ", - "values": [ - "Development" - ] - }, - { - "text": "Observe the right of individuals to consular access", - "values": [ - "Other" - ] - }, - { - "text": "Intensify, as a matter of priority, efforts to effectively implement the standards of protection set out in CEDAW", - "values": [ - "International instruments", - "Women's rights" - ] - }, - { - "text": "Continue the efforts for the improvement of the access to education as an important factor in the process of democratization ", - "values": [ - "Right to education" - ] - }, - { - "text": "Take steps to effectively end the practice of torture by the security forces and in places of detention and vigorously prosecute the perpetrators of such acts ", - "values": [ - "Human rights violations by state agents", - "Torture and other CID treatment" - ] - }, - { - "text": "Continue to pursue measures designed to reduce the number of children who are not enrolled in school", - "values": [ - "Right to education", - "Rights of the Child" - ] - }, - { - "text": "Take steps to ensure the active participation of civil society in the area of prevention, awareness-raising and education on existing laws and policies ", - "values": [ - "Civil society", - "Human rights education and training" - ] - }, - { - "text": "Promptly address the impact of the conflict on civilians' access to food, including through concrete steps in technical assistance and capacity building, as requested in the national report", - "values": [ - "Right to food", - "Technical assistance and cooperation" - ] - }, - { - "text": "The Government is unequivocally committed to making Gabon a political and social space where its people can build a common future, regardless of their different backgrounds and beliefs, against a background of respect for human rights", - "values": [ - "General" - ] - }, - { - "text": "Continue strengthening national human rights institutions and mechanisms", - "values": [ - "General" - ] - }, - { - "text": "Expedite the implementation of the second five-year National Development Plan", - "values": [ - "Development" - ] - }, - { - "text": "Put in place measures to combat all forms of racial discrimination", - "values": [ - "Racial discrimination" - ] - }, - { - "text": "Take additional measures to fight discrimination against homosexuals and persons living with HIV-AIDS.", - "values": [ - "HIV - Aids", - "Sexual Orientation and Gender Identity" - ] - }, - { - "text": "Strengthen their efforts to ensure that the treatment of prisoners is in line with international standards", - "values": [ - "Detention" - ] - }, - { - "text": "Ensure adequate cooperation between anti-discrimination organisations operating on the State level, and that adequate resources and independence of action be ensured for the Federal Anti-Discrimination Office for it to be able to effectively implement its mandate", - "values": [ - "Other" - ] - }, - { - "text": "Promote the rights of persons with disabilities with the aim to ensuring their social integration ", - "values": [ - "Disabilities" - ] - }, - { - "text": "Increase the representation of women at the decision-making bodies", - "values": [ - "Women's rights" - ] - }, - { - "text": "Further develop policies related to inclusion of people with disabilities, especially regarding inclusive education", - "values": [ - "Disabilities", - "Right to education" - ] - }, - { - "text": "Increase measures to strengthen women's rights and combat stereotypes that can interfere with the enjoyment of women's fundamental rights ", - "values": [ - "Women's rights" - ] - }, - { - "text": "Take measures to eliminate discrimination against women, especially on the issues of violence, land rights, right to work, right to education and other forms of gender inequality", - "values": [ - "Women's rights" - ] - }, - { - "text": "Continue considering adhering to the International Convention for the Protection of All Persons from Enforced Disappearance and recognizing the competence of its supervisory body, as previously recommended", - "values": [ - "Enforced disappearances", - "International instruments", - "UPR process" - ] - }, - { - "text": "Take more vigorous public action against all forms of child trafficking for sexual exploitation, labour or other purposes", - "values": [ - "Labour", - "Rights of the Child", - "Trafficking" - ] - }, - { - "text": "Maintain constructive cooperation with the treaty bodies of the United Nations human rights instruments to which the Democratic People's Republic of Korea is a State party", - "values": [ - "International instruments", - "Treaty bodies" - ] - }, - { - "text": "Publish and implement a plan to protect rights to freedom of assembly and expression ensuring the police have adequate powers to ensure the safety of those present and that any crimes committed in connection will be thoroughly and transparently investigated", - "values": [ - "Freedom of association and peaceful assembly", - "Freedom of opinion and expression" - ] - }, - { - "text": "Accelerate the Constitutional Review Process", - "values": [ - "General" - ] - }, - { - "text": "Devote attention to the education of children and take measures to reduce the rate of dropouts from school ", - "values": [ - "Right to education", - "Rights of the Child" - ] - }, - { - "text": "Consider ratification of the Protocol to the African Charter on Human and Peoples' Rights on the Rights of Women in Africa", - "values": [ - "International instruments", - "Women's rights" - ] - }, - { - "text": "Strengthen the guarantees for access to drinking water and sanitation for the entire population, especially for indigenous populations and the most remote areas ", - "values": [ - "Indigenous peoples", - "Right to water and sanitation" - ] - }, - { - "text": "Adopt necessary measures in order that shared possessions are divided equally, regardless of each spouse's individual contribution, and incorporate in the family law new necessary legal provisions to compensate for the fact that women undertake more non-remunerative work", - "values": [ - "Women's rights" - ] - }, - { - "text": "Address overcrowding in the immigration detention facility by increasing the capacity of the existing facility or by making additional facilities available to ensure proper treatment of those detained ", - "values": [ - "Detention", - "Migrants" - ] - }, - { - "text": "Further fulfil the international obligations as well as join new human rights international instruments ", - "values": [ - "International instruments" - ] - }, - { - "text": "Share its progressive experience in the promotion of peace and interethnic harmony ", - "values": [ - "Minorities" - ] - }, - { - "text": "Consider more comprehensive measures that go beyond the 15 integrated justice services referred to in the national report", - "values": [ - "Justice" - ] - }, - { - "text": "Ensure all allegations of excessive use of force or other security force abuses are investigated in a prompt, effective and independent manner", - "values": [ - "Human rights violations by state agents" - ] - }, - { - "text": "Update the national action plan for the implementation of the rights of the child, drafted in 2012", - "values": [ - "Rights of the Child" - ] - }, - { - "text": "Strengthen awareness-raising plans and programmes on violence against women, including training programmes aimed at increasing sensitivity towards victims and their vulnerabilities", - "values": [ - "Human rights education and training", - "Women's rights" - ] - }, - { - "text": "Continue with its efforts to ratify the International Convention on the Protection of the Rights of All Migrant Workers and their Families", - "values": [ - "International instruments", - "Labour", - "Migrants" - ] - }, - { - "text": "Fully incorporate in the Constitution or other national legislation the principle of equality between men and women ", - "values": [ - "Women's rights" - ] - }, - { - "text": "Enact legislation to combat domestic violence and sexual violence and to ban female genital mutilation", - "values": [ - "Rights of the Child", - "Torture and other CID treatment", - "Women's rights" - ] - }, - { - "text": "Address the problems of street children by providing them state protection and vocational training", - "values": [ - "Rights of the Child" - ] - }, - { - "text": "Continue the implementation of the appropriate legal and policy frameworks for the effective combating of trafficking in persons", - "values": [ - "Trafficking" - ] - }, - { - "text": "Continue to take measures that allow the improvement of the health and education systems of its population ", - "values": [ - "Right to education", - "Right to health" - ] - }, - { - "text": "Ensure that its NHRI accords in full with the Paris Principles ", - "values": [ - "National Human Rights Institution" - ] - }, - { - "text": "Provide the necessary support, including adequate shelter, to all victims of domestic violence", - "values": [ - "Rights of the Child", - "Women's rights" - ] - }, - { - "text": "Continue to promote economic and social development, and to improve educational and medical infrastructure, so that the people can equally enjoy the benefits of development ", - "values": [ - "Development", - "Right to education", - "Right to health" - ] - }, - { - "text": "Accede to and implement the 1954 Convention relating to the Status of Stateless Persons, the 1961 Convention on the Reduction of Statelessness, the 1951 Convention relating to the Status of Refugees and article 7 of the Convention on the Rights of the Child to end statelessness and guarantee nationality for affected children", - "values": [ - "Asylum-seekers - refugees", - "International instruments", - "Rights of the Child", - "Statelessness and the right to nationality" - ] - }, - { - "text": "Maintain constructive and cooperative dialogue in the field of human rights ", - "values": [ - "Technical assistance and cooperation" - ] - }, - { - "text": "Sign and ratify the third optional protocol to the CRC on a communication procedures", - "values": [ - "International instruments", - "Rights of the Child" - ] - }, - { - "text": "Ensure the security of migrants in conformity with international conventions", - "values": [ - "International instruments", - "Migrants" - ] - }, - { - "text": "Consider the ratification of the Rome Statue", - "values": [ - "International instruments", - "Justice" - ] - }, - { - "text": "Ratify ICRMW and accede to the Optional Protocol to the Convention on the Rights of the Child on a communications procedure", - "values": [ - "International instruments", - "Labour", - "Migrants", - "Rights of the Child" - ] - }, - { - "text": "Finland is committed to more effective and systematic monitoring of the implementation of human rights. As part of this commitment, the newly established Network for fundamental and human rights, composed of contact persons representing all Ministries, will monitor the implementation of the National Human Rights Action Plan and prepare the Government Report on Human Rights Policy. The Network will analyse the situation of fundamental and human rights in Finland, including the implementation of Finland's human rights obligations and commitments, and the associated periodic reporting. The Network will also review UPR recommendations, Finland has several good practices in the sphere of cooperation with civil society and other stakeholders on human rights. The Network will provide an opportunity for further development of these partnership models.", - "values": [ - "Civil society", - "International instruments", - "UPR process" - ] - }, - { - "text": "Set up a mechanism to fight more effectively discrimination against women, prevent and punish sexual and gender-based violence, ban female genital mutilation and other harmful traditional practices and effectively enforce the ban while stepping up the fight against these practices through public-awareness campaigns", - "values": [ - "Human rights education and training", - "Torture and other CID treatment", - "Women's rights" - ] - }, - { - "text": "Call upon the international community in implementing and disseminating human rights instruments through technical assistance and capacity-building programmes ", - "values": [ - "International instruments" - ] - }, - { - "text": "Effectively counter all forms of racism, xenophobia and intolerance ", - "values": [ - "Racial discrimination" - ] - }, - { - "text": "Establish an intra-state reporting mechanism on violence against women and provide its victims with appropriate services", - "values": [ - "Women's rights" - ] - }, - { - "text": "Consider alternative measures to the detention of migrants that will be less restrictive of the human rights of the individuals concerned", - "values": [ - "Migrants" - ] - }, - { - "text": "Enact legislative provisions prohibiting corporal punishment of girls and boys in the home and schools ", - "values": [ - "Rights of the Child", - "Torture and other CID treatment" - ] - }, - { - "text": "Revise any national legislation that may be in conflict with international obligations, and strengthen efforts to ensure that any assaults against persons regardless of their religious affiliation are investigated, and that those responsible for such assaults are brought to justice ", - "values": [ - "Freedom of religion and belief" - ] - }, - { - "text": "Ensure freedom of expression and assembly and that human rights defenders are respected and protected ", - "values": [ - "Freedom of association and peaceful assembly", - "Human rights defenders" - ] - }, - { - "text": "Undertake the necessary reforms to guarantee defendants a fair trial within a reasonable time, and reduce the use of remand", - "values": [ - "Justice" - ] - }, - { - "text": "Increase efforts to improve access to education in rural areas", - "values": [ - "Right to education" - ] - }, - { - "text": "Take appropriate measures aimed at full access to an improved water source for the population ", - "values": [ - "Right to water and sanitation" - ] - }, - { - "text": "Continue its fruitful endeavours in advancing the use of internet services ", - "values": [ - "Freedom of opinion and expression" - ] - }, - { - "text": "Study the possibility of strengthening the measures to fight discrimination, in order to eradicate the trend and/or the dissemination of stereotypes that lead to discrimination on the grounds of sexual orientation ", - "values": [ - "Sexual Orientation and Gender Identity" - ] - }, - { - "text": "Continue its efforts to implement the Framework for Climate Change and Disaster Risk Reduction, including through appropriate international cooperation that enhance the resilience and adaptability of Nauru", - "values": [ - "Environment", - "Technical assistance and cooperation" - ] - }, - { - "text": "Continue its efforts aimed at combating domestic violence", - "values": [ - "Rights of the Child", - "Women's rights" - ] - }, - { - "text": "Accelerate the ratification process of CAT", - "values": [ - "International instruments", - "Torture and other CID treatment" - ] - }, - { - "text": "Moreover, the Fijian Prime Minister in his address at the High Level Session of the 28th Session of the UNHRC announced Fiji's commitment to accede to UNCAT.", - "values": [ - "International instruments", - "Torture and other CID treatment" - ] - }, - { - "text": "Further improve conditions for the protection of the rights of national minorities", - "values": [ - "Minorities" - ] - }, - { - "text": "Include measures to further strengthen the independence of the judiciary in the constitutional review currently under consideration", - "values": [ - "Justice" - ] - }, - { - "text": "Prohibit discrimination on gender, disability, ethnicity and socioeconomic grounds, and adopt a comprehensive strategy to eliminate all forms of discrimination", - "values": [ - "Disabilities", - "Minorities", - "Racial discrimination", - "Women's rights" - ] - }, - { - "text": "The State does, however, recognize that there are still challenges to meet. It has undertaken to expand national prison capacity by 24,331 places by building ten new prison complexes. It is also designing and introducing new means of restricting liberty such as electronic tagging as an alternative to a [prison] sentence, and the urban farming programme, which is intended to train inmates to provide enough food for themselves and their families when they are freed.", - "values": [ - "Detention" - ] - }, - { - "text": "All levels of Government in Bosnia and Herzegovina consider providing equal access to sexual and reproductive health education and services, including affordable modern methods of contraception", - "values": [ - "Right to health", - "Rights of the Child", - "Women's rights" - ] - }, - { - "text": "Ensure the full and continued implementation of the various legislations put in place to safeguard the human rights and fundamental freedoms of all persons", - "values": [ - "General" - ] - }, - { - "text": "Continue to review all counter-terrorism legislation and ensure that it complies with the highest human rights standards ", - "values": [ - "Counter-terrorism" - ] - }, - { - "text": "Adopt an anti- discrimination law to replace the law that was suspended in May 2008", - "values": [ - "Other" - ] - }, - { - "text": "Ensure that the implementation of the national action plan for gender equality continues to be fully ensured by all sectors of the Government", - "values": [ - "Women's rights" - ] - }, - { - "text": "Continue current positive steps to promote equality and non-discrimination in the national minorities in the country.", - "values": [ - "Minorities" - ] - }, - { - "text": "Adopt the Prevention of Communal and Targeted Violence Bill addressing issues such as accountability of civil servants, standards of compensation for victims and elements of command responsibilities", - "values": [ - "Justice" - ] - }, - { - "text": "Complete the process of the development of a national human rights plan that is geared to take into account the implementation of the 2030 Agenda", - "values": [ - "General" - ] - }, - { - "text": "Continue its efforts to ensure adequate housing, access to health care and education as means to ensure a quality standard of living for its people ", - "values": [ - "Right to education", - "Right to health", - "Right to housing" - ] - }, - { - "text": "Issue an open invitation to the United Nations special procedures", - "values": [ - "Special procedures" - ] - }, - { - "text": "Adopt a comprehensive integration strategy for refugees, ensuring effective integration measures and increasing social support for refugees during the integration process", - "values": [ - "Asylum-seekers - refugees" - ] - }, - { - "text": "Establish a mechanism to create an effective system for the protection of children", - "values": [ - "Rights of the Child" - ] - }, - { - "text": "Revoke the Fiji Human Rights Commission Decree, to lift restrictions on investigations and to take other measures to ensure that the National Human Rights Commission can operate in accordance with the Paris Principles", - "values": [ - "National Human Rights Institution" - ] - }, - { - "text": "Grant unfettered access to humanitarian assistance, including in besieged and hard-to-reach areas", - "values": [ - "Other" - ] - }, - { - "text": "Take stronger measures to combat domestic violence and protect its victims", - "values": [ - "Rights of the Child", - "Women's rights" - ] - }, - { - "text": "Take all necessary measures to prevent extrajudicial executions and torture by security forces by providing targeted training and capacity-building to law enforcement officials and military members", - "values": [ - "Extrajudicial executions", - "Human rights violations by state agents", - "Torture and other CID treatment" - ] - }, - { - "text": "Pay attention to the trafficking in women and children for sexual and other exploitative, purposes, preventing and combating such trafficking, also by means of including in the Human Trafficking Act a definition of trafficking, and ensure that trafficked women and girls have access to quality medical care, counselling and shelter", - "values": [ - "Right to health", - "Right to housing", - "Rights of the Child", - "Trafficking", - "Women's rights" - ] - }, - { - "text": "Take steps to ensure that the access of persons with disabilities to education is not limited to vocational fields but covers wider educational areas", - "values": [ - "Disabilities", - "Right to education" - ] - }, - { - "text": "Adopt the human rights action plan elaborated recently", - "values": [ - "General" - ] - }, - { - "text": "Continue to be committed to economic and social development, reduce the development gap between rural and urban areas, better protect people's right to health and right to development ", - "values": [ - "Development", - "Right to health" - ] - }, - { - "text": "Implement fully its National Strategy for the Elimination of Violence against Women (2013-2016)", - "values": [ - "Women's rights" - ] - }, - { - "text": "Ensure that all detainees are tried without undue delay or freed if no accusation is presented", - "values": [ - "Detention" - ] - }, - { - "text": "Expedite the implementation of the accepted recommendations from the first UPR cycle, including the ratification of the Convention against Torture and Other Cruel, Inhuman or Degrading Treatment or Punishment and ILO Convention No. 182 concerning the Prohibition and Immediate Action for the Elimination of the Worst Forms of Child Labour ", - "values": [ - "International instruments", - "Labour", - "Rights of the Child", - "Torture and other CID treatment", - "UPR process" - ] - }, - { - "text": "Take the necessary steps to combat and eradicate forced labour", - "values": [ - "Labour" - ] - }, - { - "text": "Accelerate the adoption of the pending bills, particularly those related to fight against the phenomenon of money laundering and terrorism in order to establish an appropriate legal framework for combating terrorism", - "values": [ - "Corruption", - "Counter-terrorism" - ] - }, - { - "text": "Continue to seek the necessary technical and capacity-building assistance to effectively implement key national priorities and international human rights obligations", - "values": [ - "International instruments", - "Technical assistance and cooperation" - ] - }, - { - "text": "Continue its policy of judicial and penitentiary legislative reform notably in order to strengthen its capacity in the administration of justice and to increase transparency and access to justice for all Ivorians, without discrimination based on resources ", - "values": [ - "Justice" - ] - }, - { - "text": "Continue efforts to reduce non-attendance and the dropout rate from the educational system", - "values": [ - "Right to education" - ] - }, - { - "text": "Facilitate the access of ethnic minority group children to education for instance by allowing them to attend school in their traditional dress or by providing them with free school uniforms", - "values": [ - "Minorities", - "Right to education", - "Rights of the Child" - ] - }, - { - "text": "Complete its accession and to speedily ratify the International Covenant on Civil and Political Rights and the International Covenant on Economic, Social and Cultural Rights.", - "values": [ - "CP rights - general", - "ESC rights - general", - "International instruments" - ] - }, - { - "text": "Try to respond in a timely manner to the questionnaires sent by the special procedures.", - "values": [ - "Special procedures" - ] - }, - { - "text": "Adopt effective measures to ensure that there is total respect for the total prohibition of torture in line with the Convention against Torture", - "values": [ - "International instruments", - "Torture and other CID treatment" - ] - }, - { - "text": "Ratify the Optional Protocol on the Convention Against Torture (OPCAT) as soon as possible", - "values": [ - "Detention", - "International instruments", - "Torture and other CID treatment" - ] - }, - { - "text": "Take measures to effectively implement the provisions of the Convention on the Elimination of all Forms of Discrimination against Women and the Convention on the Rights of the Child, with special attention placed on the principle of non-discrimination", - "values": [ - "International instruments", - "Rights of the Child", - "Women's rights" - ] - }, - { - "text": "Pay more attention to solve the problem of birth registration of illegal migrants ", - "values": [ - "Migrants", - "Statelessness and the right to nationality" - ] - }, - { - "text": "Increase human and financial resources allocated to the new antidiscrimination body, within the Ombudsman's Office, in order to ensure effective functioning of this institution, as well as further strengthening the financial and human resources of the national machinery for women's rights ", - "values": [ - "National Human Rights Institution", - "Women's rights" - ] - }, - { - "text": "Ensure the effective enforcement of laws by which any party or organization that encourages or incites racial discrimination is declared illegal", - "values": [ - "Racial discrimination" - ] - }, - { - "text": "Strengthen efforts to broaden access to education, in general, and to secondary and higher education in particular", - "values": [ - "Right to education" - ] - }, - { - "text": "Implement immediately all United Nations resolutions, particularly those of the Human Rights Council", - "values": [ - "Other" - ] - }, - { - "text": "Sustain its efforts with regard to the resettlement of internally displaced persons, and ensure their access to basic human rights and social services ", - "values": [ - "Internally displaced persons" - ] - }, - { - "text": "Continue efforts to prevent and sanction violence against women", - "values": [ - "Women's rights" - ] - }, - { - "text": "Accept a visit from the United Nations High Commissioner for Human Rights or a United Nations special rapporteur to identify steps to strengthen human rights institutions", - "values": [ - "National Human Rights Institution", - "Special procedures" - ] - }, - { - "text": "Establish an office of the children's ombudsman", - "values": [ - "National Human Rights Institution", - "Rights of the Child" - ] - }, - { - "text": "Ensure that all civilians are tried before civilian courts and are granted the right to fair trial, in line with Thailand's obligations under the International Covenant on Civil and Political Rights", - "values": [ - "International instruments", - "Justice" - ] - }, - { - "text": "Continue its efforts to consolidate relations amongst the different ethnic groups in Russia ", - "values": [ - "Minorities" - ] - }, - { - "text": "Enact measures regarding the civil registration of children at birth in order to fight the possible traffic in human beings", - "values": [ - "Rights of the Child", - "Statelessness and the right to nationality", - "Trafficking" - ] - }, - { - "text": "In conformity with the third Action Plan on Human Rights, continue to consider ratifying the Rome Statute, OP-CAT and CPED ", - "values": [ - "Detention", - "Enforced disappearances", - "International instruments", - "Justice", - "Torture and other CID treatment" - ] - }, - { - "text": "Ratify the international human rights treaties to which the country is not yet a party, including the Convention against Torture and its Optional Protocol, and the International Convention for the Protection of All Persons from Enforced Disappearance", - "values": [ - "Detention", - "Enforced disappearances", - "International instruments", - "Torture and other CID treatment" - ] - }, - { - "text": "Undertake greater efforts to ensure a more pluralist media environment", - "values": [ - "Freedom of the press" - ] - }, - { - "text": "Promote public policies to prevent early pregnancy and ensure access to education and to sexual and reproductive health and rights", - "values": [ - "Right to health", - "Women's rights" - ] - }, - { - "text": "Include human rights education in the school curriculum and the necessary assistance and capacity-building be provided to Lesotho in this regard", - "values": [ - "Human rights education and training" - ] - }, - { - "text": "Ensure the establishment and implementation of proactive and effective approaches to combating and penalizing human trafficking in the country \n\n", - "values": [ - "Trafficking" - ] - }, - { - "text": "Continue the process to ratify CEDAW and adhere to the other human rights fundamental instruments, such as the Statute of Rome of the International Criminal Court, the Convention on the Rights of the Child, the Optional Protocol to the Convention against Torture and the International Convention for the Protection of all Persons against Enforced Disappearance ", - "values": [ - "International instruments" - ] - }, - { - "text": "Adopt an inter-federal plan to combat racism, racial discrimination, xenophobia and related intolerance", - "values": [ - "Racial discrimination" - ] - }, - { - "text": "Ratify the ILO Domestic Workers Convention, 2011 (No. 189)", - "values": [ - "International instruments", - "Labour" - ] - }, - { - "text": "Develop an appropriate mechanism to mandate the collection, disaggregation and standardisation of data such as social data, crime statistics and other criminal justice indicators ", - "values": [ - "Justice" - ] - }, - { - "text": "Ratify ILO Convention No. 189", - "values": [ - "International instruments", - "Labour" - ] - }, - { - "text": "Renewed cooperation with ICRC, including allowing it access to all places of detention", - "values": [ - "Detention", - "International instruments" - ] - }, - { - "text": "Accede to the International Covenant on Economic, Social and Cultural Rights", - "values": [ - "ESC rights - general", - "International instruments" - ] - }, - { - "text": "Continue implementing the 2016-2019 national human rights plan", - "values": [ - "General" - ] - }, - { - "text": "Continue cooperation with civil society in capacity-building and further improve people's lives", - "values": [ - "Civil society" - ] - }, - { - "text": "Strengthen its implementation of the laws to protect women and girls from rape and other forms of sexual violence and sexual exploitation and hold accountable those responsible for such crimes ", - "values": [ - "Rights of the Child", - "Women's rights" - ] - }, - { - "text": "Ensure that all crimes committed with a discriminatory motive are fully and effectively investigated and prosecuted", - "values": [ - "Other" - ] - }, - { - "text": "Continue to adopt measures aiming at the protection of children", - "values": [ - "Rights of the Child" - ] - }, - { - "text": "Continue promoting a dialogue and national reconciliation to achieve peace and move towards the development of country", - "values": [ - "Justice" - ] - }, - { - "text": "Continue to take further steps to strengthen its education system, particularly through the initiatives outlined in its Strategic Plan ", - "values": [ - "Right to education" - ] - }, - { - "text": "Consider the introduction of alternative punishment for minor crimes, to alleviate overcrowding", - "values": [ - "Detention" - ] - }, - { - "text": "Commit to abide by international humanitarian law and international law", - "values": [ - "International humanitarian law" - ] - }, - { - "text": "Continue with enlightened initiatives such as the Yes I Can literacy programme in diverse national, regional, and local realities, a programme aimed at implementing the right to education, broaden the scope of its cooperation in sharing and replicating its home-grown methods of combating illiteracy", - "values": [ - "Right to education" - ] - }, - { - "text": "Continue its efforts to strengthen the role of women in society and to include women in an effective manner in the development process, supporting women to enable them to participate in economic activities in the country", - "values": [ - "Women's rights" - ] - }, - { - "text": "Consider including in its next universal periodic review report information on measures it has taken to analyse potential risk factors that could lead to atrocities, including by utilizing the United Nations Framework of Analysis for Atrocity Crimes: A Tool for Prevention, and on any assistance it has given to other States to prevent atrocity crimes", - "values": [ - "Justice", - "UPR process" - ] - }, - { - "text": "Harmonize national legislation with international conventions so as to ensure that its citizens enjoy the human rights set out in such legislation and those conventions, and give international conventions precedence over national legislation ", - "values": [ - "International instruments" - ] - }, - { - "text": "Strengthen human rights training for NGOs and help them to carry out their work professionally and objectively", - "values": [ - "Civil society", - "Human rights education and training" - ] - }, - { - "text": "Advance in the eradication of forced and early marriages involving boys or girls", - "values": [ - "Rights of the Child", - "Women's rights" - ] - }, - { - "text": "Harmonize the definition of torture in their national legislation with the internationally accepted definition as outlined in the Convention against Torture", - "values": [ - "International instruments", - "Torture and other CID treatment" - ] - }, - { - "text": "Raise the level of human rights awareness among members of society", - "values": [ - "Human rights education and training" - ] - }, - { - "text": "Ratify CAT and OP-CAT", - "values": [ - "Detention", - "International instruments", - "Torture and other CID treatment" - ] - }, - { - "text": "Complete the already-initiated process of the ratification of the ICRMW ", - "values": [ - "International instruments", - "Labour", - "Migrants" - ] - }, - { - "text": "Significantly increase its commitment to fight impunity, specifically that it a suspend, investigate and prosecute as appropriate FARDC soldiers who have been identified as perpetrators of serious human rights abuses or crimes, including the FARDC's 213th Brigade, as well as the five members of the FARDC who were credibly accused of serious human rights abuses by MONUC and United Nations Security Council over the past year - and b establish an effective screening mechanism to vet the past human rights records of officers, particularly for important posts in the military. ", - "values": [ - "Human rights violations by state agents", - "Impunity" - ] - }, - { - "text": "Ensure prosecution for trafficking and protection for victims of human trafficking in criminal proceedings, and adequate support for victims through recovery and counselling measures and improve the social and economic situation of women, in particular in rural areas, so as to eliminate their vulnerability to traffickers as recommended by CESCR and CEDAW, respectively ", - "values": [ - "Trafficking", - "Treaty bodies", - "Women's rights" - ] - }, - { - "text": "Ratify CEDAW", - "values": [ - "International instruments", - "Women's rights" - ] - }, - { - "text": "Step up efforts towards a more inclusive education system, especially by focusing on special education needs", - "values": [ - "Disabilities", - "Right to education" - ] - }, - { - "text": "Take necessary actions to implement the commitment to extend a standing invitation to special procedures of the Human Rights Council.", - "values": [ - "Special procedures" - ] - }, - { - "text": "Exhort further efforts in order to fight child exploitation in dangerous work and work more seriously through the promulgation of laws to combat this dangerous phenomenon", - "values": [ - "Labour", - "Rights of the Child" - ] - }, - { - "text": "Ensure that legislation, policy and practice are in accordance with international human rights norms and standards ", - "values": [ - "International instruments" - ] - }, - { - "text": "Continue strengthening the role of the Inter-Religious Council in order to deepen the ethical values and fight against the moral corruption so that extreme and radical ideologies are eradicated from the society", - "values": [ - "Freedom of religion and belief" - ] - }, - { - "text": "Make efforts to increase awareness about violence against women and to work proactively to use both judicial and law enforcement tools to reduce such incidences ", - "values": [ - "Women's rights" - ] - }, - { - "text": "Ratify the Convention against Torture and Other Cruel, Inhuman or Degrading Treatment or Punishment and incorporate its provisions into domestic law ", - "values": [ - "International instruments", - "Torture and other CID treatment" - ] - }, - { - "text": "Adopt the implementing decrees of the ordinance on pastoralism, guaranteeing the protection of land rights", - "values": [ - "Right to land" - ] - }, - { - "text": "Put an end to extrajudicial killings, including those related to the war on drugs, enforced disappearances, illegal arrests and detention, torture, harassment and other human rights violations", - "values": [ - "Detention", - "Enforced disappearances", - "Extrajudicial executions", - "Torture and other CID treatment" - ] - }, - { - "text": "Provide assistance to children in preventive detention who do not benefit from any family support", - "values": [ - "Detention", - "Rights of the Child" - ] - }, - { - "text": "Promote the laws on freedom of the press and of expression", - "values": [ - "Freedom of opinion and expression", - "Freedom of the press" - ] - }, - { - "text": "Implement the Family Protection Act and finalize the Family and Sexual Violence Strategy without delay", - "values": [ - "Women's rights" - ] - }, - { - "text": "Continue with its commitment to improve the judicial system and the prisons", - "values": [ - "Detention", - "Justice" - ] - }, - { - "text": "Promote and implement programmes and policies to improve the situation of minorities and to support them at the linguistic, cultural and social levels", - "values": [ - "Minorities" - ] - }, - { - "text": "Enhance its efforts on Anti-trafficking in persons measures", - "values": [ - "Trafficking" - ] - }, - { - "text": "In light of the recent report by the Council of Europe's Committee for the Prevention of Torture, continue investments in prison and detention facilities, with a particular focus on improving material conditions for suspects held in police establishments and pre-detention centres ", - "values": [ - "Detention", - "Torture and other CID treatment" - ] - }, - { - "text": "Put an end to enforced disappearances and torture in all places of deprivation of liberty, as well as extrajudicial executions", - "values": [ - "Detention", - "Enforced disappearances", - "Extrajudicial executions", - "Torture and other CID treatment" - ] - }, - { - "text": "Step up its efforts in the field of vocational training for its youth as a way to lower the unemployment rate and to promote comprehensive economic and social development", - "values": [ - "Development" - ] - }, - { - "text": "Bring its laws in line with the Convention on the Rights of the Child", - "values": [ - "International instruments", - "Rights of the Child" - ] - }, - { - "text": "Consider prioritizing the restoration of the rule of law in the country through, inter alia, the adoption of measures aimed at combating impunity ", - "values": [ - "Impunity", - "Justice" - ] - }, - { - "text": "Take appropriate measures to better protect vulnerable groups such as older persons, women and children", - "values": [ - "Rights of the Child", - "Women's rights" - ] - }, - { - "text": "With regard to children, take necessary measures to improve the birth registry system, following the recommendation of the CRC in not identifying any ethnic or religious group in official documents which could allow discriminatory treatment, to avoid statelessness, to ban corporal punishment in families and schools and other institutions, by organizing educational campaigns, and start reforms in the juvenile justice system, following the Convention and the international standards by increasing the age of criminal responsibility ", - "values": [ - "International instruments", - "Rights of the Child", - "Statelessness and the right to nationality", - "Torture and other CID treatment", - "Treaty bodies" - ] - }, - { - "text": "Withdraw the reservations to the three only core conventions on human rights ratified by Malaysia", - "values": [ - "International instruments" - ] - }, - { - "text": "Recognize its legal responsibility for the issue of the so-called "comfort women" and take appropriate measures acceptable to the victims, as recommended by the relevant international community", - "values": [ - "Women's rights" - ] - }, - { - "text": "Abolish the death penalty in law and ratify the Second Optional Protocol to the International Covenant on Civil and Political rights", - "values": [ - "Death penalty", - "International instruments" - ] - }, - { - "text": "Vote for the General Assembly resolution on the Moratorium on the use of the death penalty, ratify the according conventions and abolish the death penalty", - "values": [ - "Death penalty", - "International instruments" - ] - }, - { - "text": "Integrate human rights education and training in the various levels of schooling", - "values": [ - "Human rights education and training" - ] - }, - { - "text": "Take measures to promote a safe and enabling environment for journalists to perform their work independently and without undue interference ", - "values": [ - "Freedom of the press" - ] - }, - { - "text": "Establish an independent unit to examine allegations of torture in order to provide reparation to victims of torture and to fight against impunity", - "values": [ - "Impunity", - "Torture and other CID treatment" - ] - }, - { - "text": "Take effective steps to reduce the high maternal mortality rate", - "values": [ - "Right to health", - "Women's rights" - ] - }, - { - "text": "Implement the law which provides criminal penalties for official corruption effectively", - "values": [ - "Corruption", - "Human rights violations by state agents" - ] - }, - { - "text": "Include in the Penal Code the crime of torture, in line with article 1 of CAT", - "values": [ - "International instruments", - "Torture and other CID treatment" - ] - }, - { - "text": "Ratify the third Optional Protocol to the Convention on the Rights of the Child , which establishes a complaints mechanism", - "values": [ - "International instruments", - "Rights of the Child" - ] - }, - { - "text": "Reduce the number of offences punishable by the death penalty.", - "values": [ - "Death penalty" - ] - }, - { - "text": "Consider opening, with international donor support, a small permanent mission in Geneva, using the facilities provided by the newly opened Commonwealth Small Island States office ", - "values": [ - "Technical assistance and cooperation" - ] - }, - { - "text": "Abolish the death penalty by adopting, promptly, the draft law on the abolition of the death penalty, and ratify the Second Optional Protocol to the ICCPR ", - "values": [ - "Death penalty", - "International instruments" - ] - }, - { - "text": "Implement the calls by, inter alia, the Human Rights Committee and the Committee on the Rights of the Child to establish a human rights institution in accordance with the Paris Principles as soon as possible.", - "values": [ - "National Human Rights Institution", - "Treaty bodies" - ] - }, - { - "text": "Adopt a comprehensive national human rights action plan and implement the national action plan on the protection of women against violence 2014-2016", - "values": [ - "Women's rights" - ] - }, - { - "text": "Release the thousands of Syrians unlawfully detained, especially women and children", - "values": [ - "Detention", - "Rights of the Child", - "Women's rights" - ] - }, - { - "text": "Continue to fight tuberculosis and other endemic diseases in order to promote the right to health of the citizens of the Central African Republic", - "values": [ - "Right to health" - ] - }, - { - "text": "Consider ratification of or accession to the International Convention on the Protection of the Rights of All Migrant Workers and Members of Their Families and the International Convention for the Protection of All Persons from Enforced Disappearance", - "values": [ - "Enforced disappearances", - "International instruments", - "Labour", - "Migrants" - ] - }, - { - "text": "Without delay, meet its stated intent of establishing an independent national human rights institution in accordance with the Paris Principles ", - "values": [ - "National Human Rights Institution" - ] - }, - { - "text": "Continue its efforts in fighting acts of sexual violence, including the establishment of mechanisms for the identification, reporting and monitoring of such cases", - "values": [ - "Rights of the Child", - "Women's rights" - ] - }, - { - "text": "Consider the possibility of acceding to and/or ratifying the International Covenant on Economic, Social and Cultural Rights and its Optional Protocol ", - "values": [ - "ESC rights - general", - "International instruments" - ] - }, - { - "text": "Strengthen measures conducive to responding to the recommendations made by the Secretary-General in 2007, directed to the prevention and elimination of all types of violence, especially sexual violence, against women and girls ", - "values": [ - "Rights of the Child", - "Women's rights" - ] - }, - { - "text": "Sign and ratify the CPED and recognize the competence of its Committee ", - "values": [ - "Enforced disappearances", - "International instruments", - "Treaty bodies" - ] - }, - { - "text": "Fully abide by its commitment to the European Union relocation scheme, put an end to the practice of issuing expulsion orders prior to registering asylum applications and fully comply with the principle of non-refoulement", - "values": [ - "Asylum-seekers - refugees", - "International instruments" - ] - }, - { - "text": "Envisage acceding to the Convention against Torture ", - "values": [ - "International instruments", - "Torture and other CID treatment" - ] - }, - { - "text": "Amend the Children (Amendment) Act in line with the Convention on the Rights of Persons with Disabilities, aiming at mainstreaming the rights of children with disabilities across all programmes, and provide the necessary resources for their protection", - "values": [ - "Disabilities", - "International instruments", - "Rights of the Child" - ] - }, - { - "text": "Abolish the death penalty and ensure that fair trial guarantees are properly implemented", - "values": [ - "Death penalty" - ] - }, - { - "text": "Continue to submit reports to treaty bodies pursuant to conventions which the country has ratified", - "values": [ - "Treaty bodies" - ] - }, - { - "text": "Develop a comprehensive strategy to eliminate gender stereotypes and promote gender equality", - "values": [ - "Women's rights" - ] - }, - { - "text": "Increase the level of its contribution of official development assistance (ODA) to attain 0.7 per cent of gross national income ", - "values": [ - "Development" - ] - }, - { - "text": "will actively examine the possibility of establishing a National Human Rights Institution in keeping with the Paris Principles in connection with the National Action Plan on Human Rights that is being prepared", - "values": [ - "National Human Rights Institution" - ] - }, - { - "text": "Accelerate the finalization of the action plan by the Council for Counteracting Racial Discrimination, Xenophobia and Related Intolerance with a view to ensure a well-planned and coordinated approach in combating acts of racism and xenophobia ", - "values": [ - "Racial discrimination" - ] - }, - { - "text": "Continue efforts with a view to adopting a comprehensive antidiscrimination legislation as part of its ongoing human rights reforms ", - "values": [ - "General" - ] - }, - { - "text": "Strengthen and expand policies, protections and programs addressing gender-based violence and sexual exploitation of children, provide targeted training to law enforcement, and ensure survivors are protected and have access to medical and legal services", - "values": [ - "Rights of the Child", - "Women's rights" - ] - }, - { - "text": "Review its absolute criminalization of abortion and initiate open discussions in the field of sexual and reproductive health in order to amend the respective legislation, so that abortion is no longer a criminal offence", - "values": [ - "Women's rights" - ] - }, - { - "text": "Continue implementing programmes aimed at protecting the rights of the child ", - "values": [ - "Rights of the Child" - ] - }, - { - "text": "With regard to the fight against corruption, the Ministry of Justice, the Independent Anti-Corruption Office and the Committee for the Safeguard of Integrity had signed an agreement on 29 August 2014 to update their 10-year joint action plan. The three signatories had pledged to implement the action plan and increase efforts to combat corruption.", - "values": [ - "Corruption" - ] - }, - { - "text": "Engage civil society in the follow-up implementation process of the UPR recommendations", - "values": [ - "UPR process" - ] - }, - { - "text": "Step up efforts to fight against torture and ill-treatment by signing the Optional Protocol to the Convention against Torture and other Cruel, Inhuman or Degrading Treatment or Punishment and establishing an independent national mechanism of prevention with sufficient resources ", - "values": [ - "Detention", - "International instruments", - "Torture and other CID treatment" - ] - }, - { - "text": "Adopt a set of legislative and administrative measures aimed at ensuring prohibition of the use by state and local authorities of modern technology for excessive and unjustified intervention in citizens' private life ", - "values": [ - "Other" - ] - }, - { - "text": "Establish a monitoring system to ensure the return, rehabilitation and reintegration of internally displaced persons ", - "values": [ - "Internally displaced persons" - ] - }, - { - "text": "Continue to ensure the effective implementation of its legislation and policies to prevent and combat human trafficking", - "values": [ - "Trafficking" - ] - }, - { - "text": "Sign and ratify the Optional Protocol to the ICESCR and the Optional Protocol to the Convention on the Rights of the Child on a communications procedure", - "values": [ - "ESC rights - general", - "International instruments", - "Rights of the Child" - ] - }, - { - "text": "Make further efforts to combat racial discrimination and xenophobia, and to promote racial and religious harmony ", - "values": [ - "Racial discrimination" - ] - }, - { - "text": "Strengthen its efforts to address the discrepancies in access to education between girls and boys, as well as the high drop-out rates from schools", - "values": [ - "Right to education", - "Rights of the Child" - ] - }, - { - "text": "Take stronger measures to professionalize the police force by demanding accountability and retraining key personnel, including seeking the assistance of international law enforcement experts", - "values": [ - "Justice" - ] - }, - { - "text": "Consider accepting the Kampala Amendments to the Rome Statute of the International Criminal Court on the crime of aggression", - "values": [ - "International instruments", - "Justice" - ] - }, - { - "text": "Agree to a moratorium on the death penalty as a first step toward ultimate abolition", - "values": [ - "Death penalty" - ] - }, - { - "text": "Continue its efforts towards ratification of the Optional Protocol to the Convention on the Rights of Persons with Disabilities ", - "values": [ - "Disabilities", - "International instruments" - ] - }, - { - "text": "Develop indicators and a timeline for the implementation of the recent legislation on women\u2019s rights and ratify the Optional Protocol to the Convention on the Elimination of All Forms of Discrimination against Women", - "values": [ - "International instruments", - "Women's rights" - ] - }, - { - "text": "Continue the efforts to strengthen human rights protection in penitentiary establishments", - "values": [ - "Detention" - ] - }, - { - "text": "Expedite operationalization of an independent human rights institution in accordance with the Paris Principles ", - "values": [ - "National Human Rights Institution" - ] - }, - { - "text": "Take additional measures to protect children from corporal punishment and sexual crimes", - "values": [ - "Rights of the Child", - "Torture and other CID treatment" - ] - }, - { - "text": "Continue its efforts to eliminate discrimination on political, economic, social and ethnic grounds, in line with the Constitution, in order to achieve equality among all citizens", - "values": [ - "ESC rights - general" - ] - }, - { - "text": "Strengthen the measures to combat violence against women as well as support the victims and survivors of such violence", - "values": [ - "Women's rights" - ] - }, - { - "text": "End the harassment of those who are critical of government policies and drop any politically motivated charges against them", - "values": [ - "Freedom of opinion and expression", - "Human rights violations by state agents" - ] - }, - { - "text": "Study the possibility of ratifying the International Convention on the Protection of the Rights of All Migrant Workers and Members of Their Families (ICRMW), the Second Optional Protocol to the International Covenant on Civil and Political Rights, (ICCPR-OP2) aiming at the abolition of the death penalty, the Optional Protocol to Convention against Torture and Other Cruel, Inhuman or Degrading Treatment or Punishment (OP-CAT)", - "values": [ - "Death penalty", - "Detention", - "International instruments", - "Labour", - "Migrants", - "Torture and other CID treatment" - ] - }, - { - "text": "Consider taking appropriate measures to eliminate racial discrimination and recognize Africans and people of African descent as part of the Dominican society ", - "values": [ - "Minorities", - "Racial discrimination" - ] - }, - { - "text": "Ratify ICESCR and sign its Optional Protocol allowing the right of individual petition ", - "values": [ - "ESC rights - general", - "International instruments" - ] - }, - { - "text": "Ensure that international standards on nationality and statelessness continue to be fully applied in the country to all individuals without discrimination ", - "values": [ - "Statelessness and the right to nationality" - ] - }, - { - "text": "Undertake steps to strengthen mechanisms to prevent child labour ", - "values": [ - "Labour", - "Rights of the Child" - ] - }, - { - "text": "Involve civil society, including human rights non-governmental organizations, in the follow-up to this review, especially in addressing gender discrimination and domestic violence ", - "values": [ - "Civil society", - "Rights of the Child", - "UPR process", - "Women's rights" - ] - }, - { - "text": "Accede to ICESCR", - "values": [ - "ESC rights - general", - "International instruments" - ] - }, - { - "text": "(1) Boosting information systems and consolidated, interconnected data bases on such crimes: here Colombia considers that international technical assistance is important. (2) Inclining towards proper investigations and trials of all perpetrators. (3) Consolidating a policy of offering comprehensive care to victims and their families. (4) Giving the Office of the Public Procurator a greater role in disciplinary investigations of police and army personnel. (5) Buttressing the Commission on the Search for Missing Persons and increasing its capacity to follow up on forced disappearances and formulate policy proposals. (6) Initiating the ratification by Congress of the International Convention for the Protection of All Persons from Enforced Disappearance.", - "values": [ - "Enforced disappearances", - "International instruments", - "Justice", - "Technical assistance and cooperation" - ] - }, - { - "text": "Take effective measures to combat child poverty ", - "values": [ - "Poverty", - "Rights of the Child" - ] - }, - { - "text": "Continue taking measures to eradicate generalized discriminatory practices against women, including stereotypes regarding the roles and responsibilities of women and men in the family and society", - "values": [ - "Women's rights" - ] - }, - { - "text": "Prevent racial, discriminatory and xenophobic crimes and provide effective remedies to the victims", - "values": [ - "Racial discrimination" - ] - }, - { - "text": "Adopt measures to guarantee equality before the law for women ", - "values": [ - "Women's rights" - ] - }, - { - "text": "Intensify its efforts to fight against discrimination against Roma people by tackling the root causes of this problem.", - "values": [ - "Minorities" - ] - }, - { - "text": "Take necessary measures to improve prison conditions.", - "values": [ - "Detention" - ] - }, - { - "text": "Continue taking comprehensive and effective measures with a view to eradicating all forms of race-centred crimes ", - "values": [ - "Racial discrimination" - ] - }, - { - "text": "Implement measures to encourage women to undertake legal training and facilitate their entry into the judiciary ", - "values": [ - "Women's rights" - ] - }, - { - "text": "Apply a dignified and human treatment that respects the universal principles of human rights for people in situation of human mobility, whether migrants or refugees, with special emphasis on strengthening and implementing policies to address trafficking of persons from a holistic approach, particularly regarding women, children and other vulnerable groups, as well as to combat all forms of discrimination, with measures including complaint an denunciation mechanisms for victims that enable them to achieve reparations.", - "values": [ - "Asylum-seekers - refugees", - "Migrants", - "Racial discrimination", - "Rights of the Child", - "Trafficking", - "Women's rights" - ] - }, - { - "text": "Speed up the process of an alternative penal system and ensure that this system includes treatment of juvenile delinquency in line with the Convention on the Rights of the Child and the comments of the Committee on the Rights of the Child", - "values": [ - "International instruments", - "Rights of the Child", - "Treaty bodies" - ] - }, - { - "text": "Provide more targeted social policies to help disadvantaged families, and in particular their children, so as to boost social mobility", - "values": [ - "Development", - "Rights of the Child" - ] - }, - { - "text": "Give proper follow-up to the resolution which forbids the forced evictions of persons, and defend the rights of the displaced and indigenous people", - "values": [ - "Indigenous peoples", - "Internally displaced persons", - "Right to housing" - ] - }, - { - "text": "Develop a specific programme to try and punish traffickers of women and children ", - "values": [ - "Rights of the Child", - "Trafficking", - "Women's rights" - ] - }, - { - "text": "Indonesia is commended for enabling a vibrant civil society, including with respect to those engaged in defending human rights, and is encouraged to support and protect their work, including at the provincial and local level as well as in regions with special autonomy", - "values": [ - "Other" - ] - }, - { - "text": "Continue the dialogue and positive measures to foster national reconciliation and social cohesion", - "values": [ - "Justice" - ] - }, - { - "text": "Fully enforce the 2013 Family Protection Act, which criminalizes domestic and sexual violence and gives the police the power to arrest and prosecute perpetrators, as a matter of priority", - "values": [ - "Rights of the Child", - "Women's rights" - ] - }, - { - "text": "Ratify, at the earliest possible date, the Optional Protocol to the Convention against Torture and Other Cruel, Inhuman or Degrading Treatment or Punishment and establish preventive mechanism accordingly", - "values": [ - "Detention", - "International instruments", - "Torture and other CID treatment" - ] - }, - { - "text": "Adopt a general strategy to eliminate gender stereotypes", - "values": [ - "Women's rights" - ] - }, - { - "text": "Conduct public awareness campaigns to promote tolerance and the principles of equality and non-discrimination including on the basis of sexual orientation and gender identity", - "values": [ - "Human rights education and training", - "Sexual Orientation and Gender Identity" - ] - }, - { - "text": "Improve access to education for persons with disabilities", - "values": [ - "Disabilities", - "Right to education" - ] - }, - { - "text": "Support interfaith dialogue as a means to enhance mutual understanding, peace and tolerance among different religious, ethnic and linguistic communities ", - "values": [ - "Freedom of religion and belief" - ] - }, - { - "text": "Increase its efforts to raise awareness of a woman's entitlement to request the transfer of a case from a customary court to a common law court, as recommended by CEDAW in 2010", - "values": [ - "Treaty bodies", - "Women's rights" - ] - }, - { - "text": "Intensify its poverty reduction measures including through extending its entrepreneurial scheme to cover all vulnerable groups nationally", - "values": [ - "Poverty" - ] - }, - { - "text": "Take further measures in order to ensure the effective implementation of the international human rights instruments and to enhance the coordination between the different institutional levels involved", - "values": [ - "International instruments" - ] - }, - { - "text": "Accede to the remaining major international human rights instruments - ICCPR, ICESCR, and CAT ", - "values": [ - "CP rights - general", - "ESC rights - general", - "International instruments", - "Torture and other CID treatment" - ] - }, - { - "text": "Ratify the already signed International Convention for the Protection of All Persons from Enforced Disappearance", - "values": [ - "Enforced disappearances", - "International instruments" - ] - }, - { - "text": "Establish a national human rights institution in conformity with the Paris Principles before the end of 2015", - "values": [ - "National Human Rights Institution" - ] - }, - { - "text": "Sign and ratify CAT", - "values": [ - "International instruments", - "Torture and other CID treatment" - ] - }, - { - "text": "Implement swiftly and without preconditions the verdict of the ECOWAS Court of 10 June 2014 on the need for a thorough investigation into the disappearances of journalists Manneh and Hydara", - "values": [ - "Enforced disappearances", - "Freedom of the press" - ] - }, - { - "text": "Sign and ratify the Second Optional Protocol to the International Covenant on Civil and Political Rights, with a view to finally and entirely abolishing the death penalty", - "values": [ - "Death penalty", - "International instruments" - ] - }, - { - "text": "Facilitate the establishment of an OHCHR office in the State, which would be able to operate throughout the country with a full promotion and protection mandate", - "values": [ - "Technical assistance and cooperation" - ] - }, - { - "text": "Continue to take steps to provide inclusive and quality education for all", - "values": [ - "Right to education" - ] - }, - { - "text": "Criminalize torture in its legislation and establish a national preventive mechanism for torture", - "values": [ - "Detention", - "Torture and other CID treatment" - ] - }, - { - "text": "Explicitly prohibit all forms of corporal punishment of children", - "values": [ - "Rights of the Child", - "Torture and other CID treatment" - ] - }, - { - "text": "Work on implementing the women and peace and security agenda to ensure effective participation of women in all spheres", - "values": [ - "Women's rights" - ] - }, - { - "text": "Continue promoting the right to development", - "values": [ - "Development" - ] - }, - { - "text": "Continue its efforts to improve the national education system and to include human rights education in the school curricula", - "values": [ - "Human rights education and training", - "Right to education" - ] - }, - { - "text": "Make further efforts toward adoption of a comprehensive anti- discrimination law, concerning, in particular, institutive actions to tackle the issue of violence against women", - "values": [ - "Women's rights" - ] - }, - { - "text": "Recommended that in line with ICCPR, Congo repeals article 331 of the Penal Code that criminalizes same sex practices between consenting adults, also with a view to more effective HIV-AIDS prevention and treatment of vulnerable sectors of the Congolese population.", - "values": [ - "HIV - Aids", - "International instruments", - "Sexual Orientation and Gender Identity" - ] - }, - { - "text": "Improve the sanitary situation in the northern provinces where the majority of indigenous people live, in accordance with the cultural characteristics of that group of Argentinian society", - "values": [ - "Indigenous peoples", - "Right to water and sanitation" - ] - }, - { - "text": "In preparing for the elections, take concrete measures to ensure that the rights of freedom of opinion, expression and assembly are respected by everybody, including the security forces ", - "values": [ - "Elections", - "Freedom of association and peaceful assembly", - "Freedom of opinion and expression", - "Freedom of the press" - ] - }, - { - "text": "Reconsider ratifying the International Convention for the Protection of All Persons from Enforced Disappearance", - "values": [ - "Enforced disappearances", - "International instruments" - ] - }, - { - "text": "Allow undocumented migrants to protect their rights and to file complaints irrespective of immigration status", - "values": [ - "Migrants" - ] - }, - { - "text": "Further consolidate on important fields of rules of law, gender equality, and social welfare to better overall conditions for vulnerable groups such as women, children and youth", - "values": [ - "Justice", - "Rights of the Child", - "Women's rights" - ] - }, - { - "text": "Promote intercultural and interreligious dialogue and cooperation, as a way of strengthening its non-discrimination programmes and supporting its awareness-raising campaigns against discrimination", - "values": [ - "Freedom of religion and belief", - "Human rights education and training", - "Racial discrimination" - ] - }, - { - "text": "Decriminalize abortion in all circumstances and ensure that women and girls can access safe and legal abortion, and guarantee access to medical services for survivors of sexual violence", - "values": [ - "Right to health", - "Rights of the Child", - "Women's rights" - ] - }, - { - "text": "Adopt all measures necessary to ensure equality between women and men in all areas relevant to the Convention on the Elimination of All Forms of Discrimination against Women.", - "values": [ - "International instruments", - "Women's rights" - ] - }, - { - "text": "Consider allocating the Office of the Ombudsman with sufficient human and financial resources to allow it to be fully operational ", - "values": [ - "National Human Rights Institution" - ] - }, - { - "text": "Strengthen the legal protection of individuals belonging to groups in the most vulnerable situations: persons living with albinism, lesbian, gay, bisexual, transgender and intersex persons, elderly women, pastoralist and hunter-gatherers/community with specific needs, and people with disabilities, in comprehensive anti-discrimination legislation", - "values": [ - "Disabilities", - "Indigenous peoples", - "Minorities", - "Sexual Orientation and Gender Identity", - "Women's rights" - ] - }, - { - "text": "Continue applying programmes and measures to improve the enjoyment of the right to education, the right to health and the right to food ", - "values": [ - "Right to education", - "Right to food", - "Right to health" - ] - }, - { - "text": "Allow exceptions to the Charities and Societies Proclamation to better enable NGOs, including those working on human rights, to receive funding and to operate effectively ", - "values": [ - "Civil society" - ] - }, - { - "text": "Continue to apply strategies and plans aimed at reducing poverty and achieving the socio-economic development of the country ", - "values": [ - "Development", - "Poverty" - ] - }, - { - "text": "Undertake all efforts to create legislation against human trafficking and the smuggling of migrants for purposes of sexual exploitation and forced labour, in line with the United Nations Convention against Transnational Organized Crime and the Protocols thereto, and as pledged in the national report ", - "values": [ - "International instruments", - "Trafficking" - ] - }, - { - "text": "Make its procedures and decisions more transparent, and limit recourse to the law on State secrecy for corruption crimes, thus allowing monitoring bodies' independence and access in order to ensure that sanctions are fully applied ", - "values": [ - "Corruption" - ] - }, - { - "text": "Improve its regularity in submitting reports to Treaty Bodies ", - "values": [ - "Treaty bodies" - ] - }, - { - "text": "Step up its fight against gender-based discrimination and violence, uproot its social acceptability and increase efforts for the protection of its victims and redress for violations of their rights, as well as efforts on accountability of perpetrators", - "values": [ - "Women's rights" - ] - }, - { - "text": "Strengthen the legislation in order to criminalize all forms of corporal punishment of children in all circumstances", - "values": [ - "Rights of the Child", - "Torture and other CID treatment" - ] - }, - { - "text": "Make further efforts to achieve equal and universal access to education", - "values": [ - "Right to education" - ] - }, - { - "text": "Take measures advocated by the Human Rights Committee to bring to an end restrictions to freedom of expression and opinion and to end, notably, restrictions on the creation of private media at the same time.", - "values": [ - "Freedom of opinion and expression", - "Freedom of the press", - "Treaty bodies" - ] - }, - { - "text": "A speedy conclusion to these cases (of human rights violations against peaceful protestors), such as the ongoing case of Abdulhadi AlKhawaja", - "values": [ - "Freedom of association and peaceful assembly", - "Human rights defenders" - ] - }, - { - "text": "Sign the Second Optional Protocol to ICCPR ", - "values": [ - "Death penalty", - "International instruments" - ] - }, - { - "text": "Adopt active measures to enable better integration of the Kalinago population and to close the relative gap they confront", - "values": [ - "Indigenous peoples" - ] - }, - { - "text": "Guarantee completion of ongoing investigations into abuse committed against civilian populations during the civil war", - "values": [ - "Impunity" - ] - }, - { - "text": "Adopt measures to prevent, penalize and eliminate all forms of violence against women, including stoning, rape, marital rape, sexual violence of all kinds in the framework of armed conflict, domestic violence, forced marriage and FGM ", - "values": [ - "Rights of the Child", - "Torture and other CID treatment", - "Women's rights" - ] - }, - { - "text": "Facilitate full access of international and local humanitarian organisations to prisons and speed up judicial reforms, including the construction of new prisons", - "values": [ - "Detention", - "Justice" - ] - }, - { - "text": "Take further steps to implement the national programme of family violence prevention", - "values": [ - "Rights of the Child", - "Women's rights" - ] - }, - { - "text": "Accede and adapt its national legislation to the Rome Statute of the International Criminal Court", - "values": [ - "International instruments", - "Justice" - ] - }, - { - "text": "While expressing appreciation for the efforts undertaken in order to combat Ebola, we urge the Government of Sierra Leone to continue undertaking its efforts aimed at combating this disease and strengthen the health infrastructure and the management of the public health system", - "values": [ - "Right to health" - ] - }, - { - "text": "Sign and ratify the International Convention for the Protection of All Persons against Enforced Disappearance. ", - "values": [ - "Enforced disappearances", - "International instruments" - ] - }, - { - "text": "Continue to take all possible measures to improve access to quality education without gender discrimination ", - "values": [ - "Right to education", - "Women's rights" - ] - }, - { - "text": "Eliminate all forms of de facto discrimination against children belonging to economically disadvantaged families ", - "values": [ - "Rights of the Child" - ] - }, - { - "text": "Reinforce strategies to achieve poverty reduction targets.", - "values": [ - "Poverty" - ] - }, - { - "text": "Intensify efforts to improve efficiency of the judiciary, by implementing legal and organizational measures to prevent undue court delays and reduce the backlog before the courts, improving physical infrastructure and computerization of courts, and the continuation of the rationalization of municipal and misdemeanour courts ", - "values": [ - "Justice" - ] - }, - { - "text": "Continue to expedite means and ways to accede to the International Convention on the Protection of the Rights of All Migrant Workers and Their Families ", - "values": [ - "International instruments", - "Labour", - "Migrants" - ] - }, - { - "text": "Namibia commits herself to promote peace and international cooperation.", - "values": [ - "Other" - ] - }, - { - "text": "Consider ratifying new international human rights instruments which would assist in strengthening its legal and institutional framework for the promotion and protection of human rights ", - "values": [ - "International instruments" - ] - }, - { - "text": "Take effective measures to eliminate all forms of discrimination against women, beginning with harmful cultural practices", - "values": [ - "Torture and other CID treatment", - "Women's rights" - ] - }, - { - "text": "Continue to allocate more budget in health sectors", - "values": [ - "Right to health" - ] - }, - { - "text": "Ratify the OP-CRC-AC", - "values": [ - "International humanitarian law", - "International instruments", - "Rights of the Child" - ] - }, - { - "text": "Continue efforts to expand the coverage of and access to health services", - "values": [ - "Right to health" - ] - }, - { - "text": "Put an end to all forms of torture and other cruel, inhuman or degrading treatment or punishment, give families the right to visit detainees in places of detention wherever they are.", - "values": [ - "Detention", - "Torture and other CID treatment" - ] - }, - { - "text": "Ensure that no one is arrested for exercising his or her right to freedom of expression, association and peaceful assembly", - "values": [ - "Freedom of association and peaceful assembly", - "Freedom of opinion and expression" - ] - }, - { - "text": "Harmonize legal measures and policies in order to guarantee rights of victims of domestic violence in accordance with international standards, for instance, by amending the Criminal Procedure Law that would expand the term 'family member' in the criminal offence of domestic violence to include a former spouse or partner ", - "values": [ - "Rights of the Child", - "Women's rights" - ] - }, - { - "text": "Promote understanding, tolerance and friendship among the peoples of the world ", - "values": [ - "Other" - ] - }, - { - "text": "Implement consistently the legislation to combat discrimination of girls and women as well as policies ", - "values": [ - "Rights of the Child", - "Women's rights" - ] - }, - { - "text": "Ensure the promotion of good governance through transparent conduct of public affairs ", - "values": [ - "Justice" - ] - }, - { - "text": "Take the necessary measures in terms of the criminal law to punish acts of all forms of violence against women and girls", - "values": [ - "Rights of the Child", - "Women's rights" - ] - }, - { - "text": "Undertake a thorough investigation, consistent with international practices and standards, into the disappearance of Sombath Somphone", - "values": [ - "Enforced disappearances" - ] - }, - { - "text": "Amend all discriminatory provisions and administrative regulations relating to family, marriage and divorce", - "values": [ - "Women's rights" - ] - }, - { - "text": "Amend the Penal Code and the Criminal Code to eliminate mitigated sentences for rapists who marry their victims for so-called "honour crimes"", - "values": [ - "Rights of the Child", - "Women's rights" - ] - }, - { - "text": "Increase the protection of female domestic workers through amending systems and procedures", - "values": [ - "Labour", - "Women's rights" - ] - }, - { - "text": "Ensure that the legislation includes a consultation process with indigenous peoples in all actions concerning them ", - "values": [ - "Indigenous peoples" - ] - }, - { - "text": "Take additional steps aimed at addressing the high rate of child marriage, including by fully implementing the national strategy aimed at reducing child marriage by 2021", - "values": [ - "Rights of the Child" - ] - }, - { - "text": "Accelerate the process of putting into practice its National Action Plan for the promotion and protection of human rights launched in 2011, and its Action Plan for the implementation of the recommendations of the Commission of Inquiry and Reconciliation adopted in July 2012, and fully cooperate with the UN mechanisms in order to rapidly turn the page on the atrocities of the civil war", - "values": [ - "Justice" - ] - }, - { - "text": "Continue implementing legislation prohibiting all forms of discrimination ", - "values": [ - "Other" - ] - }, - { - "text": "Redouble efforts to promote the condition of women", - "values": [ - "Women's rights" - ] - }, - { - "text": "In conformity with article 77 of the ICRMW, recognize the competence of the Committee to receive and consider communications which allege violations of individual rights recognized by this Convention ", - "values": [ - "International instruments", - "Labour", - "Migrants", - "Treaty bodies" - ] - }, - { - "text": "Further strengthen the judicial institutions and take measures to reduce the number of pending cases", - "values": [ - "Justice" - ] - }, - { - "text": "Complete the review of the Ohrid Framework Agreement and implement its recommendations by mid-2014", - "values": [ - "Justice" - ] - }, - { - "text": "Implement awareness-raising campaigns to educate individuals and traditional authorities on the violation of rights by harmful and discriminatory customary laws and practices, in particular on the need to ensure that these do not violate the rights of women and children", - "values": [ - "Human rights education and training", - "Rights of the Child", - "Women's rights" - ] - }, - { - "text": "Better ensure respect for the human rights of lesbian, gay, bisexual, transgender and intersex persons, who are sometimes victims of discrimination or even of hate crimes", - "values": [ - "Sexual Orientation and Gender Identity" - ] - }, - { - "text": "Remedy the difficulties in terms of access to health care for asylum seekers created by the fact that they do not have the social security number required for identification and support ", - "values": [ - "Asylum-seekers - refugees", - "Right to health" - ] - }, - { - "text": "Consider the possibility of adopting a separate law combating trafficking in persons", - "values": [ - "Trafficking" - ] - }, - { - "text": "Define and deploy the necessary resources, particularly human, legislative and financial resources, in order to effectively implement the Lesotho Government's ambitious policy in the field of economic and social rights, particularly with respect to health care and education", - "values": [ - "ESC rights - general", - "Right to education", - "Right to health" - ] - }, - { - "text": "Commute without delay all existing death sentences and ratify Second Optional Protocol to the ICCPR ", - "values": [ - "Death penalty", - "International instruments" - ] - }, - { - "text": "Consider adopting a comprehensive strategy for the integration of people of different ethnic origin or religion.", - "values": [ - "Minorities" - ] - }, - { - "text": "Amend article 41(2) of the Constitution on the role and status of women in order to render its provisions gender-equal ", - "values": [ - "Women's rights" - ] - }, - { - "text": "Review national laws to prohibit the detention of minors", - "values": [ - "Detention", - "Rights of the Child" - ] - }, - { - "text": "Continue to fulfil its international obligations and commitments it has made in the field of human rights taking into account the country's development and its historical, cultural and religious background", - "values": [ - "International instruments" - ] - }, - { - "text": "Rapidly ratify and implement the Optional Protocol to CEDAW", - "values": [ - "International instruments", - "Women's rights" - ] - }, - { - "text": "Ensure respect for the principle of non- refoulement with respect to asylum seekers and refugees, avoid a premature move to close camps on the Western border while conditions for voluntary, safe and dignified return do not exist, and meet the protection needs of vulnerable peoples, such as the Rohingya, in accordance with international law ", - "values": [ - "Asylum-seekers - refugees" - ] - }, - { - "text": "Continue taking the necessary measures to ensure universal primary education and to combat illiteracy in the country", - "values": [ - "Right to education" - ] - }, - { - "text": "Repeal the provision of the Civil Code that designates the husband as the administrator of marital property", - "values": [ - "Women's rights" - ] - }, - { - "text": "Investigate all cases of xenophobia violence and attacks against migrants, including the involvement of law enforcement officers in such crimes", - "values": [ - "Human rights violations by state agents", - "Migrants", - "Racial discrimination" - ] - }, - { - "text": "Explicitly prohibit by law and criminalize the use of children in hostilities by armed forces and the recruitment and use of children in hostilities by non-State armed groups ", - "values": [ - "Rights of the Child" - ] - }, - { - "text": "Take measures to ensure the unhindered exercise of freedom of expression and freedom of assembly ", - "values": [ - "Freedom of association and peaceful assembly", - "Freedom of opinion and expression" - ] - }, - { - "text": "Make further efforts to increase access of young people and women to the labour market", - "values": [ - "Labour", - "Women's rights" - ] - }, - { - "text": "Give attention to the protection of the rights of women and children, including through the adoption of the necessary legislative measures ", - "values": [ - "Rights of the Child", - "Women's rights" - ] - }, - { - "text": "Recommended further steps to eliminate racial discrimination and to promote freedom of religion and belief.", - "values": [ - "Freedom of religion and belief", - "Racial discrimination" - ] - }, - { - "text": "Continue its good efforts to address violence against women and domestic violence, in particular through the ratification of the Council of Europe Convention on Preventing and Combating Violence against Women and Domestic Violence", - "values": [ - "Women's rights" - ] - }, - { - "text": "Extend a standing invitation to all special procedures and respond positively to pending requests for visits ", - "values": [ - "Special procedures" - ] - }, - { - "text": "Prioritize public education and information as well as capacity building of state institutions as part of efforts to strengthen implementation of national human rights legislation", - "values": [ - "Right to education" - ] - }, - { - "text": "Complete the drafting of a law against discrimination and provide for its enactment as soon as possible", - "values": [ - "Other" - ] - }, - { - "text": "Rigorously apply the legislation against gender violence and sexual violence, especially against girls and boys ", - "values": [ - "Rights of the Child", - "Women's rights" - ] - }, - { - "text": "Implement measures to guarantee the rights to adequate food, clean water and sanitation, in order to prevent the spread of diseases among the population, paying special attention to refugee camps", - "values": [ - "Asylum-seekers - refugees", - "Right to food", - "Right to health", - "Right to water and sanitation" - ] - }, - { - "text": "Adopt measures for providing protection to women and girls with albinism, including by effectively investigating all instances of violence against them, and by prosecuting and punishing the perpetrators appropriately", - "values": [ - "Minorities", - "Rights of the Child", - "Women's rights" - ] - }, - { - "text": "Take measures to ensure that Government and security officials implicated in human rights abuses relating to extrajudicial and arbitrary detention and the possible use of torture are investigated, prosecuted and punished", - "values": [ - "Detention", - "Extrajudicial executions", - "Human rights violations by state agents", - "Torture and other CID treatment" - ] - }, - { - "text": "Ensure the implementation of laws protecting women from violence, including sexual violence and sexual harassment ", - "values": [ - "Women's rights" - ] - }, - { - "text": "Continue the efforts aimed at combating trafficking in persons, particularly women and children, in the framework of enforcing national legislation and the international conventions that South Africa has ratified", - "values": [ - "Rights of the Child", - "Trafficking", - "Women's rights" - ] - }, - { - "text": "Continue its efforts aimed at combating all forms of discrimination", - "values": [ - "Racial discrimination" - ] - }, - { - "text": "Adopt a strategy and an action plan at the federal level on gender equality to promote policies at the cantonal level to combat discrimination against women in the public and private spheres and put an end to all forms of violence, in line with the 2030 Agenda for Sustainable Development", - "values": [ - "Women's rights" - ] - }, - { - "text": "Ratify the Rome Statute of the International Criminal Court and implement it fully at national level and accede to the Agreement on Privileges and Immunities of the Court", - "values": [ - "International instruments", - "Justice" - ] - }, - { - "text": "Sign and/or ratify the International Covenant on Economic Social and Cultural Rights and also ratify its Optional Protocol, the International Convention on the Protection of the Rights of All Migrant Workers and Members of Their Families and the International Convention for the Protection of All Persons from Enforced Disappearance", - "values": [ - "ESC rights - general", - "Enforced disappearances", - "International instruments", - "Labour", - "Migrants" - ] - }, - { - "text": "Review the extent and scope of laws governing secret surveillance and moderate the powers and discretion conferred on authorities in this regard", - "values": [ - "Privacy" - ] - }, - { - "text": "Make additional efforts in work with refugees and migrants", - "values": [ - "Asylum-seekers - refugees", - "Migrants" - ] - }, - { - "text": "Take measures to readjust its domestic laws to align them with the international human rights conventions it has acceded to", - "values": [ - "International instruments" - ] - }, - { - "text": "Continue its efforts, already very significant, to provide free schooling for all school-aged children, which will mean that there would be a gradual reduction of illiteracy", - "values": [ - "Right to education" - ] - }, - { - "text": "Strengthen mechanisms to prohibit discrimination against vulnerable groups, including persons with albinism, and ensure non-discrimination on applications for accreditation by civil society organizations, including organizations such as LGBT Association of Mozambique", - "values": [ - "Civil society", - "Freedom of association and peaceful assembly", - "Sexual Orientation and Gender Identity" - ] - }, - { - "text": "Strengthen efforts to restrict any outbreaks of racism and xenophobia, particularly manifestations of racism and discrimination on the Internet, as recommended by CERD.", - "values": [ - "Racial discrimination", - "Treaty bodies" - ] - }, - { - "text": "Consider positively the request for a visit by the Special Rapporteur on the promotion and protection of the right to freedom of opinion and expression and eventually extend a standing invitation to all special procedures of the Human rights Council", - "values": [ - "Freedom of opinion and expression", - "Special procedures" - ] - }, - { - "text": "Improve intra-state mechanisms for the implementation of international obligations in the area of human rights", - "values": [ - "International instruments" - ] - }, - { - "text": "Continue to take measures to eradicate the use of torture and other forms of ill-treatment, including through training and education of law enforcement authorities", - "values": [ - "Human rights education and training", - "Torture and other CID treatment" - ] - }, - { - "text": "Continue to prioritize the rehabilitation and reintegration of former child soldiers", - "values": [ - "International humanitarian law", - "Rights of the Child" - ] - }, - { - "text": "Incorporate the Rome Statute into national law", - "values": [ - "International instruments", - "Justice" - ] - }, - { - "text": "Strengthen legislation to combat sexual offences against children and women", - "values": [ - "Rights of the Child", - "Women's rights" - ] - }, - { - "text": "Further develop measures to fully guarantee freedom of expression, particularly the protection of the integrity of persons working in the media in the exercise of that right ", - "values": [ - "Freedom of opinion and expression", - "Freedom of the press" - ] - }, - { - "text": "Adopt all possible measures to reduce maternal and child mortality and to facilitate the access of women and adolescents to sexual and reproductive health services", - "values": [ - "Right to health", - "Rights of the Child", - "Women's rights" - ] - }, - { - "text": "Enhance the rights of women regarding civic participation ", - "values": [ - "Women's rights" - ] - }, - { - "text": "Reduce maternal, child and infant morbidity and mortality by promoting effective assistance measures during pregnancy and at the moment of birth", - "values": [ - "Right to health", - "Rights of the Child", - "Women's rights" - ] - }, - { - "text": "Lift the restrictions that hinder free expression and ensure that human rights defenders and independent journalists are not victims of intimidations or arbitrary prosecutions and detentions ", - "values": [ - "Detention", - "Freedom of opinion and expression", - "Freedom of the press", - "Human rights defenders" - ] - }, - { - "text": "Continue adapting legislation against terrorism to international standards, in particular with regard to the definition of terrorism offences and the right to a fair trial ", - "values": [ - "Counter-terrorism", - "Justice" - ] - }, - { - "text": "End politically motivated prosecutions of individuals it deems opposition, and take steps to strengthen the rule of law, including respecting minimum guarantees as laid out in the International Covenant on Civil and Political Rights, equal protection of the law, and judicial independence ", - "values": [ - "Freedom of association and peaceful assembly", - "International instruments", - "Justice" - ] - }, - { - "text": "Proceed with the early ratification of the International Covenant on Civil and Political Rights and the International Covenant on Economic, Social and Cultural Rights", - "values": [ - "CP rights - general", - "ESC rights - general", - "International instruments" - ] - }, - { - "text": "Specifically abolish the death penalty and ratify the Second Optional Protocol to the International Covenant on Civil and Political Rights, aiming at the abolition of the death penalty", - "values": [ - "Death penalty", - "International instruments" - ] - }, - { - "text": "Continue its efforts to further improve the situation of children in specialized institutions", - "values": [ - "Rights of the Child" - ] - }, - { - "text": "Further strengthen the capacities of the Office of the Human Rights Defender and enhance its cooperation with civil society, in order to enable better protection of human rights in Armenia ", - "values": [ - "Civil society", - "Human rights defenders" - ] - }, - { - "text": "Provide effective protection to migrant workers and address the issue of the exploitation of migrant workers", - "values": [ - "Labour", - "Migrants" - ] - }, - { - "text": "Study the possibility to become a party to the Convention on the Protection of the Rights of All Migrant Workers and Members of Their Families ", - "values": [ - "International instruments", - "Labour", - "Migrants" - ] - }, - { - "text": "Take timely and efficient measures to ensure that the national legal framework properly incorporates international standards and conventions, ratified by Afghanistan, pertaining to women's rights, for example CEDAW.", - "values": [ - "International instruments", - "Women's rights" - ] - }, - { - "text": "Continue efforts towards national reconciliation", - "values": [ - "Justice" - ] - }, - { - "text": "Adopt a systematic approach to prevent mother-to-child transmission of HIV ", - "values": [ - "HIV - Aids" - ] - }, - { - "text": "Involve indigenous communities in any decision related to the management of their ancestral territories ", - "values": [ - "Indigenous peoples", - "Right to land" - ] - }, - { - "text": "Increase the efforts in the field of civil protection in the transition period", - "values": [ - "International humanitarian law" - ] - }, - { - "text": "Make vigorous efforts to work with the Orthodox Church on the issue of property returns, including for it to abide by judicial rulings.", - "values": [ - "Right to land" - ] - }, - { - "text": "Find long-term solutions to avoid situations where asylum-seekers, especially women and children, have to live in degrading conditions ", - "values": [ - "Asylum-seekers - refugees", - "Rights of the Child", - "Women's rights" - ] - }, - { - "text": "Allow abortion, especially in cases where the pregnancy involves a risk to the life or health of the pregnant women, or is the result of rape or incest", - "values": [ - "Right to health", - "Women's rights" - ] - }, - { - "text": "Make an assessment, by the end of 2016, of the actions undertaken in the framework of the various strategic plans on the protection of women and children", - "values": [ - "Rights of the Child", - "Women's rights" - ] - }, - { - "text": "Continue to improve access to basic services, such as health and education, with the full support and cooperation of the international community ", - "values": [ - "Right to education", - "Right to health", - "Technical assistance and cooperation" - ] - }, - { - "text": "Pursue its commitment to ensure fully the respect of human rights of persons with disabilities, namely that these persons enjoy an adequate standard of living, including in rural areas", - "values": [ - "Disabilities" - ] - }, - { - "text": "Permit journalists, NGOs and human rights experts to enter Equatorial Guinea and carry out their work without hindrance or risk of retaliation against those they meet ", - "values": [ - "Civil society", - "Freedom of the press", - "Human rights defenders" - ] - }, - { - "text": "Continue its efforts to cut its lag in presenting its reports to the treaty bodies as part of its priority programme and ask OHCHR to provide the necessary technical assistance, in particular through the training of officials to ensure that the Government is autonomous in this area in the future", - "values": [ - "Technical assistance and cooperation", - "Treaty bodies" - ] - }, - { - "text": "Establish a National Human Rights Institution in accordance with the Paris Principles, as recommended previously", - "values": [ - "National Human Rights Institution", - "UPR process" - ] - }, - { - "text": "Consider the ratification of the Optional Protocol to the Convention on the Rights of Child on the sale of children, child prostitution and child pornography (OP-SCR) ", - "values": [ - "International instruments", - "Rights of the Child", - "Trafficking" - ] - }, - { - "text": "Strengthen anti-discrimination laws, and their implementation, to enhance tolerance and promote inclusiveness in Turkey ", - "values": [ - "Racial discrimination" - ] - }, - { - "text": "That the draft child rights law forbid corporal punishment of children in all settings ", - "values": [ - "Rights of the Child", - "Torture and other CID treatment" - ] - }, - { - "text": "Continue providing financial support to low-income families", - "values": [ - "Poverty" - ] - }, - { - "text": "Establish a moratorium on the death penalty as a first step in acceding to the Second Optional Protocol to ICCPR", - "values": [ - "Death penalty", - "International instruments" - ] - }, - { - "text": "Facilitate shortly the visit of the Special Rapporteur on the situation of human rights defenders", - "values": [ - "Human rights defenders", - "Special procedures" - ] - }, - { - "text": "Take further measures to prevent hate crimes, hate speech and discrimination", - "values": [ - "Racial discrimination" - ] - }, - { - "text": "Cooperate fully with the special procedures and respond positively to the outstanding requests for visits by mandate-holders ", - "values": [ - "Special procedures" - ] - }, - { - "text": "Ratify the 1951 Convention relating to the Status of Refugees and its 1967 Protocol, as previously recommended", - "values": [ - "Asylum-seekers - refugees", - "International instruments", - "UPR process" - ] - }, - { - "text": "Further strengthen the capacities of the CHRAJ by increasing its funding and resources.", - "values": [ - "National Human Rights Institution" - ] - }, - { - "text": "Enact legislation to grant Lebanese nationality to the spouses and children of Lebanese women", - "values": [ - "Women's rights" - ] - }, - { - "text": "Strengthen national efforts to combat discrimination, xenophobia and racism, in particular discriminatory practices against indigenous people, migrants, refugees and people of African descent", - "values": [ - "Asylum-seekers - refugees", - "Indigenous peoples", - "Migrants", - "Minorities", - "Racial discrimination" - ] - }, - { - "text": "Continue enhancing and developing policies for the social integration of migrants", - "values": [ - "Migrants" - ] - }, - { - "text": "Significantly improve the implementation of protective measures contained in labour laws, in particular by increasing the number of labour inspectors ", - "values": [ - "Labour" - ] - }, - { - "text": "Enact further measures to ensure adequate provision of mental health care.", - "values": [ - "Right to health" - ] - }, - { - "text": "Work with the Special Rapporteur on Freedom of Expression on reviewing the lèse-majesté and Computer Crimes laws to ensure that they cannot be exploited ", - "values": [ - "Freedom of opinion and expression", - "Special procedures" - ] - }, - { - "text": "Take appropriate measures to stop sex tourism involving children and to punish traffickers ", - "values": [ - "Rights of the Child", - "Trafficking" - ] - }, - { - "text": "Take specific measures to ensure the full implementation of legislation on violence against women and of the national plan of action for the prevention of domestic violence and sexual violence", - "values": [ - "Women's rights" - ] - }, - { - "text": "Enhance policy for the protection of children's rights and strengthen mechanisms currently in place and promote and protect the rights of children ", - "values": [ - "Rights of the Child" - ] - }, - { - "text": "Establish an independent National Human Rights Institution which conforms to the Paris Principles, either by strengthening the existing Ombudsman's Office or through the creation of a new body ", - "values": [ - "National Human Rights Institution" - ] - }, - { - "text": "Step-up measures to effectively combat racism and xenophobia while inculcating respect, tolerance and intercultural understanding, especially in schools", - "values": [ - "Human rights education and training", - "Racial discrimination" - ] - }, - { - "text": "Discontinue criminal proceedings against Palestinian children in military courts and ensure that children are not detained", - "values": [ - "Detention", - "Justice", - "Rights of the Child" - ] - }, - { - "text": "Ensure that attacks on migrants, Roma and other ethnic minorities are thoroughly investigated and those responsible are brought to justice", - "values": [ - "Migrants", - "Minorities" - ] - }, - { - "text": "Redouble its efforts for the ratification process of the International Covenant on Economic, Social and Cultural Rights and the International Covenant on Civil and Political Rights", - "values": [ - "CP rights - general", - "ESC rights - general", - "International instruments" - ] - }, - { - "text": "Continue its efforts to promote and protect the rights of women and children in accordance with the obligations of the CEDAW and the CRC ", - "values": [ - "International instruments", - "Rights of the Child", - "Women's rights" - ] - }, - { - "text": "Enhance efforts to eliminate discrimination against Afghan women and to promote leadership and equal participation in political, peace and reconciliation processes ", - "values": [ - "Women's rights" - ] - }, - { - "text": "Ensure comprehensive training and education for all security forces and prison staff in human rights and international humanitarian law, and adopt legal and other necessary measures to ensure their full accountability for any violations of these norms.", - "values": [ - "Human rights education and training", - "International instruments" - ] - }, - { - "text": "Continue measures aimed at enhancing the capacity of the national human rights mechanism ", - "values": [ - "National Human Rights Institution" - ] - }, - { - "text": "Consider ways to further ensure the independence of the judiciary, such as vesting the High Council of Judges and Prosecutors in the Constitution", - "values": [ - "Justice" - ] - }, - { - "text": "Strengthen efforts to address violence against women and protection for victims ", - "values": [ - "Women's rights" - ] - }, - { - "text": "Accord the utmost importance, in the formulation of the new Constitution, to the promotion and protection of human rights and fundamental freedoms", - "values": [ - "General" - ] - }, - { - "text": "Reform the penitentiary system with a view to ensuring humane conditions in detention, in line with the international standards ", - "values": [ - "Detention" - ] - }, - { - "text": "Extend a standing invitation to special procedures", - "values": [ - "Special procedures" - ] - }, - { - "text": "Safeguard full and unhampered enjoyment of freedom of expression ", - "values": [ - "Freedom of opinion and expression" - ] - }, - { - "text": "Develop and implement education and awareness-raising campaigns to promote diversity and respect, while condemning racism and xenophobia", - "values": [ - "Human rights education and training", - "Racial discrimination" - ] - }, - { - "text": "Enhance parliamentary representation of women in accordance with the new Constitution", - "values": [ - "Women's rights" - ] - }, - { - "text": "Deepen the respect about principles of proportionality and necessity for armed forces and police", - "values": [ - "Human rights violations by state agents" - ] - }, - { - "text": "Ensure the development of a human rights-based migration policy which guarantees respect of the rights of all migrants ", - "values": [ - "Migrants" - ] - }, - { - "text": "Strengthen the provisions of the Criminal Code on gender-based violence", - "values": [ - "Women's rights" - ] - }, - { - "text": "Confer nationality to all stateless minor children, regardless of age or the condition or nationality of their parents", - "values": [ - "Rights of the Child", - "Statelessness and the right to nationality", - "Women's rights" - ] - }, - { - "text": "Take necessary measures to establish a national human rights institution in accordance with the Paris Principles.", - "values": [ - "National Human Rights Institution" - ] - }, - { - "text": "Continue its national efforts, with the support and assistance of the international community, in the promotion and protection of human rights particularly in the realization of economic, social and cultural rights of its people", - "values": [ - "ESC rights - general", - "Technical assistance and cooperation" - ] - }, - { - "text": "Disseminate widely the recommendations which will be made to Mauritius at the conclusion of this review", - "values": [ - "UPR process" - ] - }, - { - "text": "Review the amendments to the Criminal Code in the area of "false information", in order to guarantee respect for freedom of the media and freedom of expression", - "values": [ - "Freedom of opinion and expression", - "Freedom of the press" - ] - }, - { - "text": "Include defenders of human rights of persons with disabilities in the decision-making process on education policies", - "values": [ - "Disabilities", - "Human rights defenders", - "Right to education" - ] - }, - { - "text": "Continue efforts to collect and generate disaggregated data on actual manifestations of racism and discrimination with a view to evaluating the situation regarding racial, ethnic and minority groups in Norway ", - "values": [ - "Minorities", - "Racial discrimination" - ] - }, - { - "text": "Continue to promote human rights education and training at all educational levels, disseminating international human rights instruments and national legislation to law enforcement officers to continue increasing their awareness of their role in protecting people's rights, particularly those of vulnerable and marginalised groups ", - "values": [ - "Human rights education and training", - "International instruments" - ] - }, - { - "text": "Commute the sentences of persons sentenced to death and establish a moratorium on executions towards the abolition of the death penalty", - "values": [ - "Death penalty" - ] - }, - { - "text": "Consider accession to the ILO Forced Labour Convention.", - "values": [ - "International instruments", - "Labour" - ] - }, - { - "text": "Continue efforts to increase the participation of women in elected assemblies", - "values": [ - "Women's rights" - ] - }, - { - "text": "Continue to give importance to ensure economic development, including infrastructure, in remote rural areas.", - "values": [ - "Development" - ] - }, - { - "text": "Implement a human rights training programme and the necessary legal reforms to avoid the practice of female genital mutilation", - "values": [ - "Human rights education and training", - "Rights of the Child", - "Torture and other CID treatment", - "Women's rights" - ] - }, - { - "text": "Undertake consistent efforts to counter racism and promote social and religious cohesion.", - "values": [ - "Freedom of religion and belief", - "Racial discrimination" - ] - }, - { - "text": "Continue with the improvement of conditions in all prisons and detention facilities to ensure compliance with international standards, including the United Nations Standard Minimum Rules for the Treatment of Prisoners", - "values": [ - "Detention" - ] - }, - { - "text": "Ensure that laws on freedom of expression and freedom of the press are applied in conformity with international standards", - "values": [ - "Freedom of opinion and expression", - "Freedom of the press" - ] - }, - { - "text": "Reinforce policies to protect the fundamental rights of internally displaced persons", - "values": [ - "Internally displaced persons" - ] - }, - { - "text": "Consider drawing up legislation to raise the legal age of marriage to 18 years", - "values": [ - "Women's rights" - ] - }, - { - "text": "Ratify the United Nations Educational, Cultural and Scientific Organization (UNESCO) Convention against Discrimination in Education", - "values": [ - "International instruments", - "Right to education" - ] - }, - { - "text": "Take measures to reduce the number of homicides, address the level of impunity and stop the abuses by the security forces", - "values": [ - "Human rights violations by state agents", - "Impunity", - "Public security" - ] - }, - { - "text": "Repeal regulations permitting trials by ordeal and amend the Penal Code to criminalize the organization of such trials", - "values": [ - "Justice" - ] - }, - { - "text": "Withdraw all criminal charges brought against human rights defenders and political opponents under laws such as the Suppression of Terrorism Act of 2008 and other security legislation, and ensure that proposed amendments to these acts bring them in conformity with international human rights standards ", - "values": [ - "Counter-terrorism", - "Freedom of association and peaceful assembly", - "Human rights defenders", - "International instruments" - ] - }, - { - "text": "Continue investing in necessary infrastructures, which contribute to improve access to education for all ", - "values": [ - "Right to education" - ] - }, - { - "text": "Repeal laws and Penal Code provisions prohibiting and punishing consenting sexual relations between adults of the same sex", - "values": [ - "Sexual Orientation and Gender Identity" - ] - }, - { - "text": "Continue to provide access to education to children", - "values": [ - "Right to education", - "Rights of the Child" - ] - }, - { - "text": "Continue to carry out efforts to reduce the incidence of poverty and lessen income and educational inequalities", - "values": [ - "Poverty" - ] - }, - { - "text": "Continue to take steps to ensure that the National Human Rights Institution is in conformity with the Paris Principles", - "values": [ - "National Human Rights Institution" - ] - }, - { - "text": "Expand access to education by offering free public primary education", - "values": [ - "Right to education" - ] - }, - { - "text": "Continue legislative and judicial reforms with a view to ensuring the accessibility of legal services in the hinterlands", - "values": [ - "Justice" - ] - }, - { - "text": "Continue efforts to improve and protect the rights of women and children by implementing recommendations made by the United Nations mechanisms and its related special procedures ", - "values": [ - "Rights of the Child", - "Special procedures", - "Women's rights" - ] - }, - { - "text": "Review its legislation in order to ensure that victims of human rights abuses by business enterprises have access to effective complaint and redress mechanisms", - "values": [ - "Business and human rights" - ] - }, - { - "text": "Enact laws to establish a national preventive mechanism in accordance with the Optional Protocol to the Convention against Torture", - "values": [ - "Detention", - "International instruments", - "Torture and other CID treatment", - "Treaty bodies" - ] - }, - { - "text": "Continue advancing in the organisation and extension of the education and health systems ", - "values": [ - "Right to education", - "Right to health" - ] - }, - { - "text": "Include a definition of torture in its Criminal Code incorporating all elements contained in Article 1 of CAT", - "values": [ - "International instruments", - "Torture and other CID treatment" - ] - }, - { - "text": "Intensify its efforts to pass a law on associations", - "values": [ - "Freedom of association and peaceful assembly" - ] - }, - { - "text": "Consider positively acceding to ICRMW, as recommended by the Committee on the Elimination of Racial Discrimination, the Committee on Economic, Social and Cultural Rights and the Committee on the Elimination of Discrimination against Women ", - "values": [ - "International instruments", - "Labour", - "Migrants", - "Treaty bodies" - ] - }, - { - "text": "Further efforts towards addressing the challenge of maternal and child mortality ", - "values": [ - "Right to health", - "Rights of the Child", - "Women's rights" - ] - }, - { - "text": "Do its utmost to combat racially motivated crimes and to ensure that human rights education is provided to any perpetrators of such offences ", - "values": [ - "Human rights education and training", - "Racial discrimination" - ] - }, - { - "text": "Continue to step up efforts to guarantee that all births of children are registered, especially in rural areas", - "values": [ - "Rights of the Child", - "Statelessness and the right to nationality" - ] - }, - { - "text": "Continue to make every effort to ensure that its national legislation is in line with international instruments ", - "values": [ - "International instruments" - ] - }, - { - "text": "Continue safeguarding the well-being and rights of migrant workers in Singapore and reach out to migrant workers to ensure that they understand their employment rights and responsibilities", - "values": [ - "Labour", - "Migrants" - ] - }, - { - "text": "Ratify the Convention relating to the Status of Refugees of 1951 and its 1967 Protocol", - "values": [ - "Asylum-seekers - refugees", - "International instruments" - ] - }, - { - "text": "Review laws and policies with a view to raising the standard of living of marginalized and vulnerable groups, preventing them from languishing in poverty", - "values": [ - "Poverty" - ] - }, - { - "text": "Share best practices of tackling the situation of the Roma and Traveller people through the EU Framework for National Roma Integration Strategies adopted in 2011 ", - "values": [ - "Minorities" - ] - }, - { - "text": "Strengthen the judicial mechanisms designed to prosecute and punish perpetrators of trafficking in persons, especially in women and children, reinforcing reparation measures and reintegration services for victims ", - "values": [ - "Rights of the Child", - "Trafficking", - "Women's rights" - ] - }, - { - "text": "Study the possibility of withdrawing its reservations to the Convention on the Elimination of All Forms of Discrimination against Women with regard to equality, particularly those based on nationality, and the celebration of civil acts and marriages.", - "values": [ - "International instruments", - "Statelessness and the right to nationality", - "Women's rights" - ] - }, - { - "text": "Promote non-violent methods of child-rearing and education and ensure that the law prohibiting corporal punishment is enforced", - "values": [ - "Rights of the Child", - "Torture and other CID treatment" - ] - }, - { - "text": "Take measures to combat the problem of domestic violence and for those responsible of such acts be brought before the justice system for their acts ", - "values": [ - "Women's rights" - ] - }, - { - "text": "Revise its Criminal Code so as to eliminate the mandatory death sentence", - "values": [ - "Death penalty" - ] - }, - { - "text": "Continue pursuing its efforts in upholding respect for human rights and the well-being and development of its people through education, in line with its Education Policy Framework 2004-2019", - "values": [ - "Right to education" - ] - }, - { - "text": "Undertake appropriate measures in the education sphere to further focus on the effective integration and development of disadvantaged children", - "values": [ - "Right to education", - "Rights of the Child" - ] - }, - { - "text": "Continue work in order to ensure universal free primary education and broadened access to education and health care", - "values": [ - "Right to education", - "Right to health" - ] - }, - { - "text": "Review its practice of imposing capital and corporal punishment and prohibit any form of corporal punishment ", - "values": [ - "Death penalty", - "Torture and other CID treatment" - ] - }, - { - "text": "Repeal provisions of the Marriage and Family Relations Act that are not compliant with the Convention on the Rights of the Child", - "values": [ - "International instruments", - "Rights of the Child" - ] - }, - { - "text": "Conduct the constitutional reform necessary for the abolition of the death penalty", - "values": [ - "Death penalty" - ] - }, - { - "text": "Ensure that all forms of violence against women and girls, including domestic violence and all forms of sexual abuse, are criminalized ", - "values": [ - "Rights of the Child", - "Women's rights" - ] - }, - { - "text": "Continue the Constitutional reforms to guarantee the fundamental rights of the entire population, and move forward in the implementation of the reforms as planned in the National Human Rights Plan", - "values": [ - "General" - ] - }, - { - "text": "Take measures to further develop the health-care system, especially in rural areas", - "values": [ - "Right to health" - ] - }, - { - "text": "Continue to revise the Protection of State Information Bill so that it fully respects international human rights law, in particular the right to freedom of opinion and expression", - "values": [ - "Freedom of opinion and expression" - ] - }, - { - "text": "Clearly prohibit all forms of corporal, cruel or degrading punishment in all contexts and promote non-violent forms of education and discipline", - "values": [ - "Rights of the Child", - "Torture and other CID treatment" - ] - }, - { - "text": "Adopt specific legislation on violence against women, including criminal and civil provisions necessary to address domestic violence and sexual harassment against women and girls", - "values": [ - "Rights of the Child", - "Women's rights" - ] - }, - { - "text": "Continue harmonization of the national legislation with international standards in the field of human rights.", - "values": [ - "International instruments" - ] - }, - { - "text": "Continue to ensure the equality of all its citizens, in particular the minorities, through fair legislative and regulatory means", - "values": [ - "Minorities" - ] - }, - { - "text": "Participate in the Human Rights Council and its mechanisms with a view to preserve the universality of the universal periodic review", - "values": [ - "Special procedures", - "UPR process" - ] - }, - { - "text": "Improve legislation in order to better implement the provisions of the Convention for the Elimination of All Forms of Discrimination against Women ", - "values": [ - "International instruments", - "Women's rights" - ] - }, - { - "text": "Enhance cooperation with the United Nations special procedures.", - "values": [ - "Special procedures" - ] - }, - { - "text": "Revise the Criminal Code to include offences of incitement to violence and discrimination, public insults of a racist nature and public expressions with a racist aim", - "values": [ - "Racial discrimination" - ] - }, - { - "text": "Review the benefits of the basic pension scheme for older persons with a view to ensuring that older persons have enough to cover their living costs, in full consultation with their representatives", - "values": [ - "Other" - ] - }, - { - "text": "Promote the creation of a database regarding persons with disabilities, with the objective of guiding relevant policies to make their rights effective ", - "values": [ - "Disabilities" - ] - }, - { - "text": "Explore possible ways and means to further diversify major economic activities with a view to widening the national income base in order to create an enabling environment to better promote and protect human rights in the country ", - "values": [ - "Development" - ] - }, - { - "text": "Pursue efforts to harmonize its national legislation with its international obligations", - "values": [ - "Other" - ] - }, - { - "text": "Redouble efforts to protect the rights of members of minority religious, ethnic and social groups and particularly focus on protecting members of the LGBT community from both official and societal discrimination ", - "values": [ - "Freedom of religion and belief", - "Minorities", - "Racial discrimination", - "Sexual Orientation and Gender Identity" - ] - }, - { - "text": "Step up its efforts so as to further reduce the rate of early pregnancy", - "values": [ - "Rights of the Child" - ] - }, - { - "text": "Widely publish the outcome of this universal periodic review and to make regular and inclusive consultation with civil society an integral part of the follow-up to the universal periodic review and also of the preparation of the next national report to the universal periodic review", - "values": [ - "Civil society", - "UPR process" - ] - }, - { - "text": "Adopt comprehensive measures to combat the growth of child prostitution ", - "values": [ - "Rights of the Child" - ] - }, - { - "text": "Increase its efforts to prevent domestic violence, particularly against women, and ensure that sufficient shelters are available to women victims of domestic violence and their children", - "values": [ - "Rights of the Child", - "Women's rights" - ] - }, - { - "text": "Continue to resist attempts to enforce any values or standards beyond the universally agreed base, through the exercise of its sovereign right to implement its laws and legislation in conformity with those values and standards.", - "values": [ - "Other" - ] - }, - { - "text": "Adopt practical measures to ensure the right to peaceful assembly guaranteeing the proportionality in the use of force by security forces", - "values": [ - "Freedom of association and peaceful assembly", - "Human rights violations by state agents" - ] - }, - { - "text": "Continue its efforts to implement the national strategy of November 2009 to combat sexual violence and fulfil its action plan, which includes the fight against impunity, the protection of victims and security sector reform", - "values": [ - "Impunity", - "Rights of the Child", - "Women's rights" - ] - }, - { - "text": "The delegation emphasized the commitment of the Libyan Government to work on the implementation of all accepted recommendations and called for the establishment of a genuine partnership with all international organizations and civil society organizations that were interested in the realization and promotion of human rights and rule of law in Libya.", - "values": [ - "Civil society", - "Technical assistance and cooperation", - "UPR process" - ] - }, - { - "text": "Carry out judicial procedures in accordance with the norms that protect individual rights, particularly the right to effective judicial protection and due process", - "values": [ - "Justice" - ] - }, - { - "text": "Address those situations (in protecting children's rights) that still raise concern, such as the lack of criminalization for the possession of pornographic material regarding children", - "values": [ - "Rights of the Child" - ] - }, - { - "text": "Strengthen the institutional and legal framework to combat violence against children, in particular sexual violence", - "values": [ - "Rights of the Child" - ] - }, - { - "text": "Adopt legislative and other measures, including awareness-raising campaigns, to discontinue the existence of harmful traditions and practices undermining the equal enjoyment of human rights by women. in particular to adopt and implement legislation prohibiting and criminalizing FGM as well as domestic and other forms of violence against women.", - "values": [ - "Human rights education and training", - "Rights of the Child", - "Torture and other CID treatment", - "Women's rights" - ] - }, - { - "text": "Improve the protection of refugees, migrants and asylum seekers and improve their living conditions and access to social security and guarantee other human rights", - "values": [ - "Asylum-seekers - refugees", - "Migrants" - ] - }, - { - "text": "Address the continued challenge of poverty, particularly among vulnerable groups, such as women and children who are non-citizens", - "values": [ - "Poverty", - "Rights of the Child", - "Women's rights" - ] - }, - { - "text": "Ratify the Optional Protocol to CAT and, in line with its provisions, establish an independent national institution which will operate as the national preventive mechanism for the prevention of torture ", - "values": [ - "Detention", - "International instruments", - "Torture and other CID treatment" - ] - }, - { - "text": "Continue efforts at the federal and state levels aimed at overcoming racial discrimination, especially through the implementation of the Priority Enforcement Programme to guard against racial profiling of immigrants and other forms of racial discrimination", - "values": [ - "Migrants", - "Racial discrimination" - ] - }, - { - "text": "Continue adopting the necessary measures to eliminate wage discrimination at work between men and women ", - "values": [ - "Women's rights" - ] - }, - { - "text": "Continued humanitarian support for refugees from the Horn of Africa and provision of all humanitarian welfare requirements within the limits of available means", - "values": [ - "Asylum-seekers - refugees" - ] - }, - { - "text": "Adhere to and adapt its national legislation with the Rome Statute", - "values": [ - "International instruments", - "Justice" - ] - }, - { - "text": "Implement the guarantee established in Article 46 of the Constitution, regarding freedom of belief and freedom of religious practice, in order to prevent in practice discriminations which affect this guarantee", - "values": [ - "Freedom of religion and belief" - ] - }, - { - "text": "Regarding measures related to sexual exploitation of minors, Kazakhstan specified an ongoing commitment to improve legislation and strengthen provisions, and cited an increase to the age of criminal liability", - "values": [ - "Rights of the Child" - ] - }, - { - "text": "Develop a national plan of action to implement the Guiding Principles on Business and Human Rights", - "values": [ - "Business and human rights" - ] - }, - { - "text": "Ensure that the provisions of CEDAW are reflected in the new draft constitution by, inter alia, retaining the removal of article 23", - "values": [ - "International instruments", - "Women's rights" - ] - }, - { - "text": "Provide adequate financial resources to the South African Human Rights Commission to enable it to carry out its work", - "values": [ - "National Human Rights Institution" - ] - }, - { - "text": "Continue implementing the SIDERECHOS computer platform, an important tool for the monitoring, follow-up and implementation of the recommendations of the universal periodic review", - "values": [ - "UPR process" - ] - }, - { - "text": "Continue the implementation of actions included in the national Development Plan in order to achieve a greater social protection and gender equality", - "values": [ - "ESC rights - general", - "Women's rights" - ] - }, - { - "text": "Ratify the Optional Protocol to the Convention against Torture and Other Cruel, Inhuman or Degrading Treatment or Punishment and sign the International Convention for the Protection of All Persons from Enforced Disappearance", - "values": [ - "Detention", - "Enforced disappearances", - "International instruments", - "Torture and other CID treatment" - ] - }, - { - "text": "Adopt the necessary legislation, and prohibit any kind of violence against children, including corporal punishment ", - "values": [ - "Rights of the Child", - "Torture and other CID treatment" - ] - }, - { - "text": "Establish a formal moratorium on the death penalty and ratify the Second Optional Protocol to the International Covenant on Civil and Political Rights, with a view to abolishing capital punishment both in practice and in law", - "values": [ - "Death penalty", - "International instruments" - ] - }, - { - "text": "Withdraw its remaining reservations to the Convention on the Elimination of All Forms of Discrimination against Women", - "values": [ - "International instruments", - "Women's rights" - ] - }, - { - "text": "Intensify efforts to investigate cases of violence and intimidation against journalists and ensure that perpetrators are held to account ", - "values": [ - "Freedom of the press" - ] - }, - { - "text": "Pursue plans to develop civil rights and citizens' political engagement, drawing inter alia on traditions of grassroots consultation in Brunei Darussalam, with a clearer timetable for development of the Legislative Council, leading to the creation of a more effective mechanism for executive accountability ", - "values": [ - "CP rights - general" - ] - }, - { - "text": "Consider a comprehensive approach and specific programs to combat racist attacks and discrimination, especially with regard to the vulnerable position of migrants", - "values": [ - "Migrants", - "Racial discrimination" - ] - }, - { - "text": "Take effective action to end gender-based discrimination, to ensure full protection of women's right, including by ending harmful practices such as female genital mutilation (FGM), and to criminalize domestic violence, including sexual abuse and martial rape ", - "values": [ - "Rights of the Child", - "Torture and other CID treatment", - "Women's rights" - ] - }, - { - "text": "Sign and ratify CAT, and ratify the International Convention for the Protection of All Persons from Enforced Disappearance (ICPPED)", - "values": [ - "Enforced disappearances", - "International instruments", - "Torture and other CID treatment" - ] - }, - { - "text": "Continue effective implementation of the national plan on Gender equality to raise the awareness in order to eliminate discrimination and prejudice", - "values": [ - "Women's rights" - ] - }, - { - "text": "Continue implementing current projects and socio-economic development programmes for the promotion and protection of human rights ", - "values": [ - "Development" - ] - }, - { - "text": "Ratify the main international human rights instruments, in particular the Optional Protocol to the Convention against Torture and other Cruel, Inhuman or Degrading Treatment or Punishment and the Rome Statute of the International Criminal Court", - "values": [ - "Detention", - "International instruments", - "Justice", - "Torture and other CID treatment" - ] - }, - { - "text": "Adopt special measures in the context of the international financial crisis in order to guarantee job opportunities in rural areas", - "values": [ - "Development" - ] - }, - { - "text": "Continue efforts to spread a culture of human rights in Qatar", - "values": [ - "Human rights education and training" - ] - }, - { - "text": "Consider ratifying the International Convention on the Protection of the Rights of All Migrant Workers and Members of their Families", - "values": [ - "International instruments", - "Labour", - "Migrants" - ] - }, - { - "text": "Step up efforts to combat killings of people with albinism, particularly children, including through strengthening laws and awareness-raising campaigns on rights of people with albinism", - "values": [ - "Human rights education and training", - "Minorities" - ] - }, - { - "text": "Strengthen the protection of the rights of children, particularly those in vulnerable situations, and ensure perpetrators of sexual violence and child labour are held to account", - "values": [ - "Labour", - "Rights of the Child" - ] - }, - { - "text": "Adopt a Child Code full in conformity with the Convention on the Rights of the Child", - "values": [ - "International instruments", - "Rights of the Child" - ] - }, - { - "text": "Adopt all necessary measures so that minorities can effectively enjoy all their rights.", - "values": [ - "Minorities" - ] - }, - { - "text": "Ensure the effective investigation of alleged attacks against human rights defenders.", - "values": [ - "Human rights defenders" - ] - }, - { - "text": "Foster the presentation of a new bill against all forms of discrimination", - "values": [ - "Other" - ] - }, - { - "text": "Ratify the International Convention for the Protection of All Persons from Enforced Disappearance (CED), signed by Monaco in 2007.", - "values": [ - "Enforced disappearances", - "International instruments" - ] - }, - { - "text": "Strengthen its efforts to combat hunger and poverty in the country", - "values": [ - "Poverty", - "Right to food" - ] - }, - { - "text": "Offer programmes for education and training in human rights for law enforcement officials, the army, the police and prison services in order to prevent human rights violations, especially torture and mistreatment", - "values": [ - "Human rights education and training", - "Human rights violations by state agents", - "Torture and other CID treatment" - ] - }, - { - "text": "Continue, in line with the international obligations, to provide support to the family as the natural and fundamental unit of society, including by adopting, when necessary, relevant legal measures at the national level", - "values": [ - "Other" - ] - }, - { - "text": "Take the necessary measures in order for the Ministry of Women to have adequate resources to strengthen the policies for women victims of domestic violence ", - "values": [ - "Women's rights" - ] - }, - { - "text": "Reintroduce the moratorium on the death penalty for all cases as a first step towards its full abolition", - "values": [ - "Death penalty" - ] - }, - { - "text": "Introduce a separate system of juvenile justice, with particular emphasis on rehabilitation and reintegration activities, stop the application of isolation measures on juveniles and ensure that the minimum age of fourteen for criminal liability in domestic and international law is respected without exceptions", - "values": [ - "Justice", - "Rights of the Child" - ] - }, - { - "text": "Assess benefits and social support for single, unwed mothers, to ensure that the current system does not foster multi-generational social exclusion", - "values": [ - "Women's rights" - ] - }, - { - "text": "Continue implementing the Strategic National Plan for the development of health for the period 2010-2015", - "values": [ - "Right to health" - ] - }, - { - "text": "Continue allocating adequate funds for welfare programmes providing support to persons with disabilities", - "values": [ - "Disabilities" - ] - }, - { - "text": "Continue with its efforts to increase the number of persons with disabilities employed in the public service", - "values": [ - "Disabilities", - "Labour" - ] - }, - { - "text": "Strengthen the role and capacity to act of the Child Protection Unit with the support and assistance of the international community in order to allow it to fully fulfil its mission", - "values": [ - "Rights of the Child", - "Technical assistance and cooperation" - ] - }, - { - "text": "Continue to cooperate with the Commission on Human Rights in South Sudan", - "values": [ - "Technical assistance and cooperation" - ] - }, - { - "text": "Increase efforts to ensure the school enrolment of all children at the primary and secondary levels", - "values": [ - "Right to education", - "Rights of the Child" - ] - }, - { - "text": "Take measures to ensure the effective implementation and enforcement of existing legislation, with a view to reducing structural disadvantages that hamper the effective realization of substantive gender equality, in line with the recommendation by the Committee on the Elimination of Discrimination against Women", - "values": [ - "Treaty bodies", - "Women's rights" - ] - }, - { - "text": "Establish a monitoring mechanism to prevent abuse, guarantee decent working conditions and wage payments", - "values": [ - "Labour" - ] - }, - { - "text": "Fully implement the European Commission's 2013 recommendations related to the reform of public administration and the efficiency of the judicial system ", - "values": [ - "Justice" - ] - }, - { - "text": "Continue promoting and protecting the rights of children", - "values": [ - "Rights of the Child" - ] - }, - { - "text": "Allow, before its next review, unhindered access to the country by all special procedures of the Human Rights Council who request a visit", - "values": [ - "Special procedures" - ] - }, - { - "text": "Strengthen capacities of its law enforcement agencies in order to meet the challenges of society connected with crimes and incidents which could arise as a result of traditional mentalities.", - "values": [ - "Justice" - ] - }, - { - "text": "Pursue and enhance its contributions to the dialogue among civilizations", - "values": [ - "Other" - ] - }, - { - "text": "Establish mobile courts especially in the rural areas", - "values": [ - "Justice" - ] - }, - { - "text": "Take urgent measures in order that asylum-seeking children are not deprived of their liberty", - "values": [ - "Asylum-seekers - refugees", - "Rights of the Child" - ] - }, - { - "text": "Raise the age of criminal responsibility to 12 years, and prohibit corporal punishment as a sentence of the courts for all persons, but especially those under 18 years old at the time of the offence", - "values": [ - "Rights of the Child", - "Torture and other CID treatment" - ] - }, - { - "text": "Pay particular attention to the process of judicial and legal reform by strengthening the legal framework", - "values": [ - "Justice" - ] - }, - { - "text": "Implement stronger complaints and prosecution mechanisms for survivors of domestic violence, and improved services, including the provision of more shelters", - "values": [ - "Rights of the Child", - "Women's rights" - ] - }, - { - "text": "Repeal legal provisions penalising sexual relations between consenting adults of the same sex, in order to respect the principles of equality and non-discrimination among all persons", - "values": [ - "Sexual Orientation and Gender Identity" - ] - }, - { - "text": "Share its experience regarding the establishment of the independent national mechanism for the prevention of torture which may be used as a good practice in preventing torture", - "values": [ - "Detention", - "Torture and other CID treatment" - ] - }, - { - "text": "Comply with its binding legal obligation to protect citizens, desist from using illegal arms and adopt the necessary measures so that, in line with the report of the Commission of Inquiry, the indiscriminate and disproportionate attacks on the civilian population cease immediately", - "values": [ - "International humanitarian law" - ] - }, - { - "text": "Amend article 126 of the Penal Code to bring into line with the UN Convention against Torture", - "values": [ - "International instruments", - "Torture and other CID treatment" - ] - }, - { - "text": "Adhere to and adapt its national legislation to the Arms Trade Treaty", - "values": [ - "International instruments", - "Public security" - ] - }, - { - "text": "Sign and ratify the new Optional Protocol to the Convention on the Rights of the Child on a communications procedure ", - "values": [ - "International instruments", - "Rights of the Child" - ] - }, - { - "text": "Increase cooperation with relevant United Nations treaty bodies, in particular by submitting its periodic report to the Human Rights Committee overdue since 2010", - "values": [ - "CP rights - general", - "Treaty bodies" - ] - }, - { - "text": "Take necessary measures to reduce child marriage, particularly the prohibition of forced marriage of girls", - "values": [ - "Rights of the Child", - "Women's rights" - ] - }, - { - "text": "Strengthen efforts to improve the literacy rate of girls and women ", - "values": [ - "Rights of the Child", - "Women's rights" - ] - }, - { - "text": "Facilitate visits requested by the Special Rapporteurs on adequate housing, freedom of opinion and expression, and independence of judges and lawyers, and to cooperate with the United Nations country team in improving the implementation of obligations", - "values": [ - "Freedom of opinion and expression", - "Justice", - "Right to housing", - "Special procedures" - ] - }, - { - "text": "Further improve access to all levels of education, including in the rural interior", - "values": [ - "Right to education" - ] - }, - { - "text": "Amend the Law of Criminal Procedure in order to avoid the cases of indefinite extension of the preliminary investigation ", - "values": [ - "Detention" - ] - }, - { - "text": "Adopt concrete measures to address violence against women, including by criminalizing marital rape and increasing public awareness of the problem, with a particular focus on religious and community leaders", - "values": [ - "Human rights education and training", - "Rights of the Child", - "Women's rights" - ] - }, - { - "text": "Abolish all legislation resulting in discrimination, prosecution and punishment of people based on their sexual orientation or gender identity", - "values": [ - "Sexual Orientation and Gender Identity" - ] - }, - { - "text": "Continue efforts towards ratification of international conventions", - "values": [ - "International instruments" - ] - }, - { - "text": "Provide the Bureau of Gender Affairs with sufficient human and financial resources to enable it to contribute efficiently to the promotion and protection of the rights of women.", - "values": [ - "Women's rights" - ] - }, - { - "text": "Continue its work to safeguard full respect of human rights for, and non-discrimination of, the Roma population in Greece, in line with Greece's international obligations, and in doing so fully and effectively implement adopted strategies at all levels", - "values": [ - "Minorities", - "Racial discrimination" - ] - }, - { - "text": "Seek from the Office of the High Commissioner for Human Rights, the human rights protection system in general and the international community, technical and financial assistance that it deems necessary for carrying forward measures and programmes to eradicate domestic and sexual violence", - "values": [ - "Rights of the Child", - "Technical assistance and cooperation", - "Women's rights" - ] - }, - { - "text": "Continue to strengthen the family and family values ", - "values": [ - "Other" - ] - }, - { - "text": "Investigate all allegations of torture and start prosecuting all individuals found responsible", - "values": [ - "Torture and other CID treatment" - ] - }, - { - "text": "Fully implement the recommendations of the Consultative Task Force on Reconciliation, including to repeal the Prevention of Terrorism Act and replace it with international best practice legislation", - "values": [ - "Counter-terrorism", - "Justice" - ] - }, - { - "text": "Ratify CRC and ensure from the beginning that all measures to be adopted for children incorporate its provisions ", - "values": [ - "International instruments", - "Rights of the Child" - ] - }, - { - "text": "Ratify the Optional Protocol to the Convention against Torture, in order to permit the Subcommittee for Prevention to conduct visits to places of detention, including reclusion centres for migrants and asylum-seekers, as well as those with the populations originating in national minorities in order to help the Government improve conditions in these centres", - "values": [ - "Asylum-seekers - refugees", - "Detention", - "International instruments", - "Migrants", - "Minorities", - "Torture and other CID treatment" - ] - }, - { - "text": "Guarantee the safety and security of human rights defenders, and to ensure that all crimes against them are fully and independently investigated", - "values": [ - "Human rights defenders" - ] - }, - { - "text": "Enable civil society to meet peacefully and organise in freedom and safety", - "values": [ - "Freedom of association and peaceful assembly" - ] - }, - { - "text": "Decriminalize religious proselytism and religious freedom ", - "values": [ - "Freedom of religion and belief" - ] - }, - { - "text": "Continue pursuing appropriate, efficient policies in combating acts of extremism and xenophobia such as the Strategy for Combating Extremism or the Crime and Extremism Prevention Programme "Dawn"", - "values": [ - "Racial discrimination" - ] - }, - { - "text": "Fully capacitate and support the National Women\u2019s Council to better protect and promote the rights of women", - "values": [ - "Women's rights" - ] - }, - { - "text": "Continue to take measures to guarantee the rights of victims of the crime of trafficking, especially in the area of physical and psychological care ", - "values": [ - "Trafficking" - ] - }, - { - "text": "Focus more efforts on combating child prostitution and pornography and in aiding its victims in accordance with the recommendations of the Committee on the Rights of the Child.", - "values": [ - "Rights of the Child", - "Treaty bodies" - ] - }, - { - "text": "Consider ratifying Protocol No. 12 to the Convention for the Protection of Human Rights and Fundamental Freedoms (European Convention on Human Rights), and the Council of Europe Convention on Preventing and Combating Violence against Women and Domestic Violence ", - "values": [ - "International instruments", - "Women's rights" - ] - }, - { - "text": "Enhance social protection to ensure the delivery of food assistance and address malnutrition", - "values": [ - "Right to food" - ] - }, - { - "text": "Consider acceding to the core international human rights instruments ", - "values": [ - "International instruments" - ] - }, - { - "text": "Take measures to expedite the enactment of the adoption bill and the child care and protection bill by Parliament", - "values": [ - "Rights of the Child" - ] - }, - { - "text": "Fully implement without further delay the provisions of the national action plan on gender equality and domestic violence ", - "values": [ - "Rights of the Child", - "Women's rights" - ] - }, - { - "text": "End forced labour", - "values": [ - "Labour" - ] - }, - { - "text": "Bring domestic legislation in line with international norms in the fight against corruption", - "values": [ - "Corruption" - ] - }, - { - "text": "Continue in the path towards the building of socialism, under the principles of solidarity and justice, making headway in the strengthening of participatory and proactive democracy, as a genuine mechanism to ensure citizen participation in public affairs, which has led to better conditions for the promotion and protection of human rights for the Cuban people", - "values": [ - "General" - ] - }, - { - "text": "Establish a moratorium on executions with a view to abolishing the death penalty as provided by UN General Assembly Resolutions ", - "values": [ - "Death penalty" - ] - }, - { - "text": "Provide proper assistance for the increasing number of unaccompanied minor refugees during their initial reception in Austria", - "values": [ - "Asylum-seekers - refugees", - "Rights of the Child" - ] - }, - { - "text": "Implement the 2008 recommendations by the CEDAW Committee, in particular by abolishing the system of male guardianship over women and enacting comprehensive and effective regulations on gender discrimination", - "values": [ - "Treaty bodies", - "Women's rights" - ] - }, - { - "text": "Ratify CRPD at the earliest opportunity and seek relevant support from the international community and relevant UN agencies, including the OHCHR, for the ratification process ", - "values": [ - "Disabilities", - "International instruments", - "Technical assistance and cooperation" - ] - }, - { - "text": "Continue the introduction of advanced programmes for ensuring fundamental rights, especially for vulnerable groups", - "values": [ - "General" - ] - }, - { - "text": "Continue to actively implement strategies and programmes for protection and social support of vulnerable groups", - "values": [ - "ESC rights - general" - ] - }, - { - "text": "Fully cooperate with the Special Rapporteur on the situation of human rights in Eritrea and respond without further delay to the longstanding request to visit the country", - "values": [ - "Special procedures" - ] - }, - { - "text": "Share its best practices within poverty reduction and the promotion of social equality at the bilateral and multilateral level ", - "values": [ - "Poverty" - ] - }, - { - "text": "Take appropriate measures to avoid the excessive use of force by security officers", - "values": [ - "Human rights violations by state agents" - ] - }, - { - "text": "Further intensify its efforts to raise the living standards of persons with disabilities, in particular to support their right to social inclusion and self-reliance", - "values": [ - "Disabilities" - ] - }, - { - "text": "Take appropriate measures to combat school dropout", - "values": [ - "Right to education" - ] - }, - { - "text": "Further strengthen the justice system, including adopting a specific law to criminalize sexual tourism ", - "values": [ - "Justice" - ] - }, - { - "text": "Continue implementing programmes and measures to enhance the enjoyment of the right to education and the right to health ", - "values": [ - "Right to education", - "Right to health" - ] - }, - { - "text": "Establish Government plans as a follow-up to the recommendations of the Committee on the Elimination of Discrimination against Women to promote greater representation by women in all areas, particularly at work, without discrimination of any kind, as well as to prevent and eradicate domestic violence and all forms of violence against women and girls. Such plans should contemplate establishing institutional mechanisms for monitoring and assessing the effectiveness of all measures", - "values": [ - "Treaty bodies", - "Women's rights" - ] - }, - { - "text": "Issue a standing invitation to the Special Rapporteurs and Working Groups of the United Nations human rights system", - "values": [ - "Special procedures" - ] - }, - { - "text": "Expedite the adoption of the law to combat violence against women", - "values": [ - "Women's rights" - ] - }, - { - "text": "Carry out appropriate and comprehensive measures to combat gender based violence and discrimination against vulnerable groups", - "values": [ - "Women's rights" - ] - }, - { - "text": "Provide universal access to safe and comprehensive sexual and reproductive health services and examine the link between gender-based violence and sexual and reproductive rights ", - "values": [ - "Right to health", - "Women's rights" - ] - }, - { - "text": "Continue to work on its human development plan and include cooperation and technical assistance strategies to use and integrate the outcome of the universal periodic review ", - "values": [ - "Technical assistance and cooperation", - "UPR process" - ] - }, - { - "text": "Take necessary measures to hand in its national reports to CERD on time", - "values": [ - "Racial discrimination", - "Treaty bodies" - ] - }, - { - "text": "Ratify at the earliest the Second Optional Protocol to International Covenant on Civil and Political Rights as well as Protocol No. 13 to the European Convention on Human Rights concerning the abolition of the death penalty ", - "values": [ - "Death penalty", - "International instruments" - ] - }, - { - "text": "Establish a national mechanism for implementation of OP-CAT, including through securing Senate approval in 2012", - "values": [ - "Detention", - "International instruments", - "Torture and other CID treatment" - ] - }, - { - "text": "Amend laws that permit the compulsory acquisition of land by private businesses so that the expropriation is only permitted in the cases of necessary, proportionate and narrowly construed public interest, with strong procedural safeguards", - "values": [ - "Business and human rights", - "Right to land" - ] - }, - { - "text": "Be more regular in submitting reports to treaty bodies and call, if necessary, for technical assistance in this field", - "values": [ - "Technical assistance and cooperation", - "Treaty bodies" - ] - }, - { - "text": "Seek the assistance of the international community in its efforts to expand and strengthen its legal and judicial sectors ", - "values": [ - "Justice", - "Technical assistance and cooperation" - ] - }, - { - "text": "Continue efforts to combat trafficking in persons and investigate, prosecute and punish the persons and groups involved", - "values": [ - "Trafficking" - ] - }, - { - "text": "Continue to adopt policies in order to achieve full gender parity.", - "values": [ - "Women's rights" - ] - }, - { - "text": "Further strengthen the policies and adopt measures for guaranteeing women the access to reproductive health products and services", - "values": [ - "Right to health", - "Women's rights" - ] - }, - { - "text": "Facilitate and enhance the dialogue process among all relevant stakeholders in the Syrian Arab Republic in order to find a lasting, peaceful solution and to immediately end any form of violence and destruction of civil and public facilities", - "values": [ - "Other" - ] - }, - { - "text": "Consider issuing a standing invitation to all special procedures", - "values": [ - "Special procedures" - ] - }, - { - "text": "Free all remaining prisoners of conscience and put an end to practices that fuel arbitrary arrests", - "values": [ - "Detention", - "Freedom of opinion and expression" - ] - }, - { - "text": "Continue to actively cooperate with relevant countries, international agencies and stakeholders in implementing human rights capacity-building and technical assistance programmes.", - "values": [ - "Technical assistance and cooperation" - ] - }, - { - "text": "Take immediate action to ensure all cases are reviewed by a court in accordance with fair procedures and that the rights of detainees, particularly the right to a fair trial and family visitations, are upheld.", - "values": [ - "Detention", - "Justice" - ] - }, - { - "text": "Promote the strengthening of the legal framework for the protection of children and adolescents with disabilities", - "values": [ - "Disabilities", - "Rights of the Child" - ] - }, - { - "text": "Further strengthen its actions to ensure that the economic and social rights of vulnerable persons are protected, especially Maori, people with Pacific background and people with disabilities, and ensure that special attention is given to these persons with a view to including them fully in society.", - "values": [ - "Disabilities", - "ESC rights - general", - "Indigenous peoples" - ] - }, - { - "text": "Consider ratifying the outstanding international human rights instruments and further update their national laws to be in line with those treaties", - "values": [ - "International instruments" - ] - }, - { - "text": "Request the international community to provide assistance", - "values": [ - "Technical assistance and cooperation" - ] - }, - { - "text": "Abide by international human rights law pertaining to migrants, including with regard to detention", - "values": [ - "Detention", - "International instruments", - "Migrants" - ] - }, - { - "text": "Continue its positive efforts in the promotion and protection of human rights, including, with the support of developed countries, through its commitment to allocate 0.7 per cent of GDP to ODA.", - "values": [ - "Development" - ] - }, - { - "text": "Ensure the effective implementations of the Penal Enforcement Code and the Code of Criminal Procedure which contains some progressive dispositions regarding the welfare of detainees and prisoners", - "values": [ - "Detention" - ] - }, - { - "text": "Take further measures to guarantee freedom of expression, including by effectively investigating threats and attacks on media and journalists ", - "values": [ - "Freedom of opinion and expression", - "Freedom of the press" - ] - }, - { - "text": "Take more active steps to eradicate all forms of discrimination against women", - "values": [ - "Women's rights" - ] - }, - { - "text": "Review the legislation on the minimum age for criminal responsibility with the purpose of bringing it into full conformity with the Convention on the Rights of the Child.", - "values": [ - "International instruments", - "Rights of the Child" - ] - }, - { - "text": "Ensure the independence of the Human Rights Commission, the Election Commission and the Office of the Auditor General", - "values": [ - "National Human Rights Institution" - ] - }, - { - "text": "Ensure that the fundamental rights to freedom of expression, association and assembly will be guaranteed in the future Constitution, in line with Tunisia's international obligations ", - "values": [ - "Freedom of association and peaceful assembly", - "Freedom of opinion and expression" - ] - }, - { - "text": "Modify the penal provisions that provide for the application of the death penalty with a view to a total prohibition and ratify ICCPR-OP2, aiming at the abolition of the death penalty", - "values": [ - "Death penalty", - "International instruments" - ] - }, - { - "text": "Publicly denounce all violence based on sexual orientation or gender identity and adopt effective measures to raise public awareness concerning the constitutional protection of LGBT individuals ", - "values": [ - "Sexual Orientation and Gender Identity" - ] - }, - { - "text": "Accede to the Rome Statute of the International Criminal Court and fully harmonize its national legislation to comply with it", - "values": [ - "International instruments", - "Justice" - ] - }, - { - "text": "End restrictions on the right to freedom of expression and related rights, as well as on movement", - "values": [ - "Freedom of movement", - "Freedom of opinion and expression" - ] - }, - { - "text": "Continue efforts to address hate speech against refugees and migrants", - "values": [ - "Asylum-seekers - refugees", - "Migrants", - "Racial discrimination" - ] - }, - { - "text": "Establish a relationship of constant cooperation with the United Nations human rights mechanisms", - "values": [ - "Special procedures", - "Treaty bodies", - "UPR process" - ] - }, - { - "text": "Introduce a moratorium on executions with a view to abolish the death penalty ", - "values": [ - "Death penalty" - ] - }, - { - "text": "Establish a national human rights institution according to the Paris Principles", - "values": [ - "National Human Rights Institution" - ] - }, - { - "text": "Respect its commitments to an effective judicial review of the administrative decisions of the Office of Youth (Jugendamt) ", - "values": [ - "Other" - ] - }, - { - "text": "Ensure that the new bill for the press and electronic media complies with international norms and continues its efforts to ensure respect for the right to freedom of expression and the right to peaceful assembly and association", - "values": [ - "Freedom of association and peaceful assembly", - "Freedom of opinion and expression", - "Freedom of the press" - ] - }, - { - "text": "Fully implement the Domestic Violence Act.", - "values": [ - "Rights of the Child", - "Women's rights" - ] - }, - { - "text": "Protect the rights of immigrants and take active measures to protect the rights of foreign workers, and promote harmony among all ethnic groups ", - "values": [ - "Labour", - "Migrants" - ] - }, - { - "text": "Continue the efforts to strengthening the capacity building of national institutions in field of human rights promotion and protection", - "values": [ - "General" - ] - }, - { - "text": "Support the international moratorium on death penalty executions with a view to abolition, and end the imposition of the mandatory death penalty ", - "values": [ - "Death penalty" - ] - }, - { - "text": "Implement measures to mitigate the environmental impact of the exploitation of oil and gas and oil spills in the territories of indigenous peoples, on their communities and give further attention to environmental degradation", - "values": [ - "Environment", - "Indigenous peoples" - ] - }, - { - "text": "Incorporate the education of human rights in its school curricula in order to raise human rights awareness among the people ", - "values": [ - "Human rights education and training" - ] - }, - { - "text": "Guarantee respect for the rights of the opposition, in particular freedom of assembly and demonstration, the freedom of the press and the media, by making the necessary corrections to the Constitution, the electoral commission, the status of the parties, as well as to the legal framework on the maintenance of public order", - "values": [ - "Freedom of association and peaceful assembly", - "Freedom of the press" - ] - }, - { - "text": "Take further concrete steps to reduce the use of coercion in the treatment and detention of persons with mental health issues or intellectual disabilities, including by improving the monitoring of mental health care institutions and developing voluntary alternatives to coercive interventions", - "values": [ - "Detention", - "Disabilities", - "Right to health" - ] - }, - { - "text": "Work with the media and other stakeholders to ensure that all organs of the State understand and appreciate the constitutional guarantees of freedoms of press and assembly ", - "values": [ - "Freedom of association and peaceful assembly", - "Freedom of the press" - ] - }, - { - "text": "Strengthen the governance of natural resources to ensure, amongst others, their sustainable utilization", - "values": [ - "Development" - ] - }, - { - "text": "With regard to consensual same sex activity between adults, take measures to promote tolerance and allow effective educational programmes on HIV-AIDS prevention.", - "values": [ - "HIV - Aids", - "Sexual Orientation and Gender Identity" - ] - }, - { - "text": "Ensure that the right of freedom of opinion is respected, including by reviewing Art 112 of the Penal Code, and ensure a safe environment that promotes the rights of all people to freely associate and assemble without hindrances", - "values": [ - "Freedom of association and peaceful assembly", - "Freedom of opinion and expression" - ] - }, - { - "text": "Continue to drive forward the Programme on Access of the Population to Identity, with a focus on women and children, in particular in the jungle area, through measures such as free National Identity Document (DNI) for the vulnerable population, and continue enabling them to travel to obtain DNIs", - "values": [ - "Rights of the Child", - "Women's rights" - ] - }, - { - "text": "Promote political dialogue with all sectors of society, including civil society, with a view to enhancing the contribution of these sectors to the development process ", - "values": [ - "Civil society", - "Development" - ] - }, - { - "text": "Consider ratifying the International Convention on the Protection of the Rights of All Migrant Workers and Members of Their Families (ICRMW)", - "values": [ - "International instruments", - "Labour", - "Migrants" - ] - }, - { - "text": "Explore additional legislative and policy measures to prevent trafficking of children for sexual purposes", - "values": [ - "Rights of the Child", - "Trafficking" - ] - }, - { - "text": "Continue to address the promotion and protection of the rights of persons with disabilities by reducing stigma and discrimination against them in the society", - "values": [ - "Disabilities" - ] - }, - { - "text": "Take concrete steps to implement fundamental safeguards in police custody, and prohibit the use of police stations as places for long-term detention", - "values": [ - "Detention" - ] - }, - { - "text": "Continue ensuring that cases where police officers are accused of failing to protect peaceful protestors are promptly and fully investigated, and those responsible are brought to justice ", - "values": [ - "Freedom of association and peaceful assembly", - "Human rights violations by state agents" - ] - }, - { - "text": "Continue to promote the rights of national minorities through a legal framework", - "values": [ - "Minorities" - ] - }, - { - "text": "Ensure, within the mandate of the Department for the Rights of Children and Adolescents of the Ombudsman, that children's rights complaints mechanisms are easily accessible and child-sensitive ", - "values": [ - "Rights of the Child" - ] - }, - { - "text": "Continue Government efforts to guarantee the exercise of power by, with, and for the people of Viet Nam ", - "values": [ - "General" - ] - }, - { - "text": "Invest in the human and financial resources of the secretariat of the Working Group and the national coordinator dealing with trafficking in human beings so that they can effectively carry out the full range of tasks within their mandate", - "values": [ - "Trafficking" - ] - }, - { - "text": "Consider with high priority strengthening and broadening the human capacity of the National Disaster Risk Management Office and of the Climate Change Unit before its next universal periodic review", - "values": [ - "Environment", - "UPR process" - ] - }, - { - "text": "Implement legislation criminalizing sexual harassment in the workplace, and set up mechanisms to monitor the implementation of this legislation", - "values": [ - "Women's rights" - ] - }, - { - "text": "Strengthen measures to combat violence against children, particularly with regard to the prevention of early and forced child marriages and child trafficking and in particular through awareness-raising campaigns among families", - "values": [ - "Human rights education and training", - "Rights of the Child", - "Trafficking" - ] - }, - { - "text": "In the light of the moratorium on the application of the death penalty, take appropriate measures with a view to its abolition", - "values": [ - "Death penalty" - ] - }, - { - "text": "Undertake measures to ensure that all children are registered immediately after birth, as a crucial step for children to benefit formally from the social protection system ", - "values": [ - "Rights of the Child" - ] - }, - { - "text": "Investigate allegations of racially motivated incidents against members of minority groups and take punitive and remedial action", - "values": [ - "Minorities", - "Racial discrimination" - ] - }, - { - "text": "Consider revisiting the penal code, which allows those who are guilty of rape to escape punishment if they marry the victim", - "values": [ - "Justice", - "Women's rights" - ] - }, - { - "text": "Issue a standing invitation to all special procedure mandate holders and facilitate without delay a visit by the Special Rapporteur on torture, as well as all other pending visit requests from special procedure mandate holders", - "values": [ - "Special procedures", - "Torture and other CID treatment" - ] - }, - { - "text": "Consider signing and ratifying the Convention against Torture and Other Cruel, Inhuman or Degrading Treatment or Punishment", - "values": [ - "International instruments", - "Torture and other CID treatment" - ] - }, - { - "text": "Bahrain welcomes a visit by the High Commissioner for Human Rights.", - "values": [ - "Technical assistance and cooperation" - ] - }, - { - "text": "Take further measures to reduce school dropout rates ", - "values": [ - "Right to education" - ] - }, - { - "text": "Enact laws and measures necessary to complement the Government's efforts concerning migration", - "values": [ - "Migrants" - ] - }, - { - "text": "Adopt measures preventing reprisals against individuals and groups cooperating with international human rights mechanisms and ensure impartial investigations into all allegations of reprisal and accountability for reprisals", - "values": [ - "Human rights defenders", - "International instruments" - ] - }, - { - "text": "Continue its efforts in combating poverty, and in improving the levels of education and health of its people ", - "values": [ - "Right to education", - "Right to health" - ] - }, - { - "text": "Continue the eradication of the practice of female genital mutilation (FGM) and enforce the present legislation to combat rape and other forms of violence against women, including against female refugees and internally displaced persons", - "values": [ - "Asylum-seekers - refugees", - "Internally displaced persons", - "Rights of the Child", - "Torture and other CID treatment", - "Women's rights" - ] - }, - { - "text": "Enhance the capacity and the independence of the national human rights institution in order to make it more effective and operational ", - "values": [ - "National Human Rights Institution" - ] - }, - { - "text": "Ensure respect for the rights of indigenous children or children living in rural or remote areas, adopt the necessary measures to ensure respect for the rights of girls, boys and adolescents living in the streets or in situations of vulnerability", - "values": [ - "Indigenous peoples", - "Rights of the Child" - ] - }, - { - "text": "Combat piracy by enacting a legislation prohibiting ransoms to pirates for releasing hostages", - "values": [ - "Public security" - ] - }, - { - "text": "Hasten the establishment of an independent national human rights institution with the support of and in cooperation with the international community ", - "values": [ - "National Human Rights Institution", - "Technical assistance and cooperation" - ] - }, - { - "text": "Continue to implement programmes in the area of education, health and social empowerment and integration of vulnerable groups, especially women, children and the disabled, through the established national mechanisms as well as with the relevant NGOs and international organizations", - "values": [ - "Civil society", - "Disabilities", - "Right to education", - "Right to health", - "Rights of the Child", - "Women's rights" - ] - }, - { - "text": "Share, through international cooperation, its successful experiences in programs and projects of social benefit ", - "values": [ - "Other" - ] - }, - { - "text": "Improve the treatment of migrants, asylum-seekers and refugees ", - "values": [ - "Asylum-seekers - refugees", - "Migrants" - ] - }, - { - "text": "Pass legislation to address sexual and gender based violence and ensure its full application, among others by providing the required budgetary allocations for legal and psychological assistance to victims ", - "values": [ - "Women's rights" - ] - }, - { - "text": "Take all necessary measures to ensure a safe working environment for journalists and media workers", - "values": [ - "Freedom of the press" - ] - }, - { - "text": "Respect its international and national legal obligations in the field of the protection of the rights of asylum seekers and migrant workers ", - "values": [ - "Asylum-seekers - refugees", - "Labour", - "Migrants" - ] - }, - { - "text": "Introduce targeted strategies and labour market reforms to promote women\u2019s increased participation in formal sector employment, including by alleviating barriers to such participation", - "values": [ - "Labour", - "Women's rights" - ] - }, - { - "text": "Ensure universal, compulsory and free education, carrying out on a priority basis measures aimed at eradicating discrimination, particularly discrimination that affects girls, marginal groups and persons with disabilities", - "values": [ - "Disabilities", - "Right to education", - "Rights of the Child", - "Women's rights" - ] - }, - { - "text": "Encourage school attendance of girls and remove all obstacles to their access to education including the citizenship requirement beyond the ninth grade", - "values": [ - "Minorities", - "Right to education", - "Rights of the Child", - "Women's rights" - ] - }, - { - "text": "Adopt national legislation prohibiting all domestic violence and discrimination in law and in fact against women and girls ", - "values": [ - "Rights of the Child", - "Women's rights" - ] - }, - { - "text": "Implement a legal system which improves the human rights of peasants and other persons working in rural areas ", - "values": [ - "Other" - ] - }, - { - "text": "Ratify the Convention on the Protection of the Rights of Migrant Workers and Members of Their Families", - "values": [ - "International instruments", - "Labour", - "Migrants" - ] - }, - { - "text": "Adopt more effective anti-trafficking measures and further evaluate measures already in use to limit human exploitation, including efforts to protect victims and to prosecute offenders of human trafficking ", - "values": [ - "Trafficking" - ] - }, - { - "text": "Re-strengthen the guarantees of independence of the High Media Council and clarify its mandate so as to distinguish protection of freedom of the press from its functions as media regulator ", - "values": [ - "Freedom of the press" - ] - }, - { - "text": "Intensify efforts to fight against discrimination and intolerance, and against racist and xenophobic political discourse", - "values": [ - "Racial discrimination" - ] - }, - { - "text": "Continue to implement its poverty reduction strategy paper as a framework for dialogue and reference for all questions regarding national development policies.", - "values": [ - "Poverty" - ] - }, - { - "text": "Adopt legislative and other measures to ensure that detainees are not questioned without the presence of a lawyer and that they have prompt and unhindered access to legal counsel", - "values": [ - "Detention", - "Justice" - ] - }, - { - "text": "Adopt comprehensive legislation on violence against women and domestic violence as criminal offences, investigate reports of domestic violence and prosecute perpetrators", - "values": [ - "Rights of the Child", - "Women's rights" - ] - }, - { - "text": "Consider prohibiting corporal punishment against children and ensure that it is explicitly prohibited in all schools and educational institutions, and all other institutions and forms of alternative care", - "values": [ - "Rights of the Child" - ] - }, - { - "text": "Ratify the Optional Protocol to CRPD", - "values": [ - "Disabilities", - "International instruments" - ] - }, - { - "text": "Launch government programmes to raise the awareness of women about their constitutionally guaranteed rights", - "values": [ - "Human rights education and training", - "Women's rights" - ] - }, - { - "text": "Ensure access to health care and effective health coverage for all individuals without discrimination", - "values": [ - "Right to health" - ] - }, - { - "text": "Improve the quality of education and increase access to education ", - "values": [ - "Right to education" - ] - }, - { - "text": "Establish a moratorium on the death penalty with a view to considering its subsequent abolition", - "values": [ - "Death penalty" - ] - }, - { - "text": "Undertake measures to tackle racial discrimination and to combat more resolutely all forms of racism", - "values": [ - "Racial discrimination" - ] - }, - { - "text": "Given that Russian is the mother tongue of a significant proportion of Ukraine's population, to consider assigning the Russian language the status of second national language.", - "values": [ - "Minorities" - ] - }, - { - "text": "Accept the request of the Special Rapporteur on torture and the Special Rapporteur on the rights to freedom of peaceful assembly and of association", - "values": [ - "Freedom of association and peaceful assembly", - "Special procedures", - "Torture and other CID treatment" - ] - }, - { - "text": "Ratify the Optional Protocol to the International Covenant on Economic, Social and Cultural Rights ", - "values": [ - "ESC rights - general", - "International instruments" - ] - }, - { - "text": "Ensure the effective implementation of the national plan of action for prevention, assistance and eradication of violence against women", - "values": [ - "Women's rights" - ] - }, - { - "text": "Continue to prioritize poverty reduction in protection and promotion of economic, social and cultural rights of its people, strengthen the construction of its health system, increase the coverage of service level of the medical care, and put further attention to combating AIDS", - "values": [ - "ESC rights - general", - "HIV - Aids", - "Right to health" - ] - }, - { - "text": "Take measures to guarantee full and effective recognition of sexual and reproductive rights, in particular through the decriminalization of the voluntary interruption of pregnancy ", - "values": [ - "Right to health", - "Rights of the Child", - "Women's rights" - ] - }, - { - "text": "The United States is fully committed to ensuring that individuals it detains in any armed conflict are treated humanely. All U.S. military detention operations conducted in connection with armed conflict, including at Guantanamo Bay, are carried out in accordance with U.S. law, international humanitarian law including Common Article 3 of the Geneva Conventions of 1949, and other international laws, including the Convention Against Torture, as applicable.", - "values": [ - "Detention", - "International humanitarian law" - ] - }, - { - "text": "Take concrete measures to humanize the judicial system and to improve conditions of detention in prisons ", - "values": [ - "Detention", - "Justice" - ] - }, - { - "text": "Adopt specific legislation in the area of equality between men and women, a law on the fight against domestic violence and a global strategy aimed at eliminating cultural practices and discriminatory stereotypes against women", - "values": [ - "Women's rights" - ] - }, - { - "text": "Explicitly include sexual orientation and gender identity as protected grounds under the principle of non-discrimination in relevant legislation and programmes, and to apply the Yogyakarta principles with regard to human rights and sexual orientation and gender identity", - "values": [ - "Sexual Orientation and Gender Identity" - ] - }, - { - "text": "Establish a moratorium with a view to abolishing the death penalty", - "values": [ - "Death penalty" - ] - }, - { - "text": "Sign and ratify the human rights instruments already accepted in the previous review ", - "values": [ - "International instruments", - "UPR process" - ] - }, - { - "text": "Continue to implement strategies and socio-economic development plans in order to advance in the realization of the Millennium Development Goals by 2015 ", - "values": [ - "Development" - ] - }, - { - "text": "Strengthen measures to prevent violence against foreigners. These include comprehensive education and awareness programmes regarding xenophobia and the rights of migrants, including refugees and asylum seekers, as well as programmes that promote inclusion", - "values": [ - "Asylum-seekers - refugees", - "Human rights education and training", - "Migrants", - "Racial discrimination" - ] - }, - { - "text": "Further promote women's rights through increased participation in political, socio-economic and administrative decision making processes", - "values": [ - "Women's rights" - ] - }, - { - "text": "Allow and support safe and timely access to all those in need of assistance in areas under the control of the Government ", - "values": [ - "Other" - ] - }, - { - "text": "Ensure thorough implementation of the anti-discrimination legislation in order to prevent and combat the discrimination based on any criteria, notably racial and ethnic", - "values": [ - "Minorities", - "Racial discrimination" - ] - }, - { - "text": "Undertake an awareness-raising campaign against sexual violence ", - "values": [ - "Human rights education and training", - "Rights of the Child", - "Women's rights" - ] - }, - { - "text": "While the RMI does have offices established to oversee the fulfillment of RMI's obligations to the CRC and CEDAW, there is no body or office specifically established to comprehensively address human rights. It is hoped, however, that with technical and financial assistance from the international community, such a national human rights institution will be established, or, alternatively, the establishment of a regional human rights office. Such an office would enhance RMI's public awareness and training efforts with respect to human rights. Until such an office is realized, the Government and Non-Governmental Organizations have conducted various awareness programs on human rights, but only on specific thematic areas such as health, youth, and women issues. Despite being limited, it is important that these programs continue to assure awareness of at least these issues. For the consultations on this Report, although people were aware of their rights, they did not fully understand what those were and role the Government played in ensuring the protection and promotion of those rights. More to the point, there is more awareness on land rights than other rights.", - "values": [ - "Civil society", - "Human rights education and training", - "International instruments", - "National Human Rights Institution", - "Right to land", - "Technical assistance and cooperation" - ] - }, - { - "text": "Cooperate closely with the United Nations High Commissioner for Refugees with regard to the status of refugees and asylum seekers", - "values": [ - "Asylum-seekers - refugees" - ] - }, - { - "text": "Release all those found to be unduly or arbitrarily detained", - "values": [ - "Detention" - ] - }, - { - "text": "Continue, as it has done, to ensure respect for the human rights of all migrants.", - "values": [ - "Migrants" - ] - }, - { - "text": "Adopt all necessary measures to eradicate the recruitment of children by armed groups", - "values": [ - "Rights of the Child" - ] - }, - { - "text": "Ratify the Second Optional Protocol to International Covenant on Civil and Political Rights, aiming at the abolition of the death penalty ", - "values": [ - "Death penalty", - "International instruments" - ] - }, - { - "text": "Take steps to improve prison conditions", - "values": [ - "Detention" - ] - }, - { - "text": "Strengthen programmes and plans to eradicate effectively child labour in the short term", - "values": [ - "Labour", - "Rights of the Child" - ] - }, - { - "text": "Stop the impunity enjoyed by perpetrators of human rights violations against civil society activists, NGOs and human rights defenders and incorporate the United Nations Declaration on Human Rights Defenders in national legislation ", - "values": [ - "Civil society", - "Human rights defenders", - "Impunity", - "International instruments" - ] - }, - { - "text": "Ensure the effective implementation of the Act of 2010 on female genital mutilation", - "values": [ - "Rights of the Child", - "Torture and other CID treatment", - "Women's rights" - ] - }, - { - "text": "Ecuador will promote and disseminate human rights internally, harmonize their domestic legislation vis-à-vis international law, and many other areas. ", - "values": [ - "Human rights education and training" - ] - }, - { - "text": "Promote the economic and social integration of Roma individuals and respect for their rights by ensuring that due consideration is given in all policymaking processes to the impact on Roma of proposed legislation", - "values": [ - "Minorities" - ] - }, - { - "text": "Continue and increase efforts to eradicate female genital mutilation (FGM) throughout the country, bring perpetrators to justice and ensure adequate punishment, and adopt measures to prohibit traditional matrimonial practices, including forced marriages which are particularly harmful to children ", - "values": [ - "Rights of the Child", - "Torture and other CID treatment", - "Women's rights" - ] - }, - { - "text": "Review Criminal Code provisions regarding freedom of expression, in conformity with article 19 of the International Covenant on Civil and Political Rights", - "values": [ - "CP rights - general", - "Freedom of opinion and expression", - "International instruments" - ] - }, - { - "text": "Accede to international human rights instruments", - "values": [ - "International instruments" - ] - }, - { - "text": "Revisions to the National Security Act, which allows for civil and criminal immunity for security forces in relation to serious human rights violations and abuses committed in their official capacity, and those responsible for serious human rights violations and abuses be held to account ", - "values": [ - "Human rights violations by state agents" - ] - }, - { - "text": "Ensure full and effective consultation of indigenous peoples on economic and development policies and projects affecting them", - "values": [ - "Indigenous peoples" - ] - }, - { - "text": "Continue to work to improve mobility and accessibility for persons with disabilities, in line with existing Lithuanian and EU regulations, and the Convention on the Rights of Persons with Disabilities", - "values": [ - "Disabilities", - "International instruments" - ] - }, - { - "text": "Consider ratifying the United Nations Educational, Scientific and Cultural Organization Convention against Discrimination in Education", - "values": [ - "International instruments", - "Right to education" - ] - }, - { - "text": "Take all possible actions to eliminate all forms of violence against women and amend all Laws that discriminate against women ", - "values": [ - "Women's rights" - ] - }, - { - "text": "Investigate promptly cases of sexual and gender-based violence and ensure that perpetrators are brought to justice", - "values": [ - "Rights of the Child", - "Women's rights" - ] - }, - { - "text": "Introduce limitations to the practice of administrative detention in conformity with international law and to desist from its multiple extensions, and eventually ending them", - "values": [ - "Detention" - ] - }, - { - "text": "Work to ensure that all government agencies and relevant stakeholders are fully aware of the National Action Plan for human rights and effectively implement it for the benefit of all people, especially the most vulnerable groups in the society", - "values": [ - "General" - ] - }, - { - "text": "Continue its efforts to provide educational facilities for students with special educational needs", - "values": [ - "Right to education" - ] - }, - { - "text": "Implement the recently adopted Children\u2019s Code and prosecute all crimes and offences against children, including child marriage, sexual exploitation, female genital mutilation and trafficking in children", - "values": [ - "Rights of the Child", - "Torture and other CID treatment", - "Trafficking", - "Women's rights" - ] - }, - { - "text": "Fulfil its intention to develop and adopt a national programme for 2010-2013 to counter the trafficking in persons, and actively cooperate in the international arena on that issue ", - "values": [ - "Trafficking" - ] - }, - { - "text": "Continue applying the measures adopted with a view to achieving the proposed goals relating to education", - "values": [ - "Right to education" - ] - }, - { - "text": "Ensure the concrete implementation of the report of the Lessons Learnt and Reconciliation Commission and the National Strategy as envisaged by the Plan of Action", - "values": [ - "Justice" - ] - }, - { - "text": "Consider the ratification of the Minamata Convention and update article 4.1.23 of the Law on Minerals of Mongolia, which applies to small-scale mining, to secure mining rights to small-scale miners and formalize their operation as soon as possible", - "values": [ - "Business and human rights", - "International instruments" - ] - }, - { - "text": "Develop and implement a comprehensive national strategy to fight the worst forms of corporal punishment of children", - "values": [ - "Rights of the Child", - "Torture and other CID treatment" - ] - }, - { - "text": "Adjust its definition of torture to the definition of CAT and carry out legislative reforms to adjust the penalties to the seriousness of the crime of torture and in order not to apply the statute of limitations to torture", - "values": [ - "International instruments", - "Torture and other CID treatment" - ] - }, - { - "text": "Redouble efforts to enforce laws criminalizing gender-biased violence, such as the recently adopted laws against rape and \u201chonour\u201c crimes", - "values": [ - "Women's rights" - ] - }, - { - "text": "Aligning traditional laws and procedures with principles that protect particularly the balance of socio-economic rights of men and women both in the family and in the society, as well as the rights of the child", - "values": [ - "ESC rights - general", - "Rights of the Child", - "Women's rights" - ] - }, - { - "text": "Continue taking measures in favour of development and to reduce the level of poverty", - "values": [ - "Development", - "Poverty" - ] - }, - { - "text": "Further progress to overcome the causes of extreme poverty, a major factor in the cases of juvenile delinquency and human trafficking, especially of the young by a firm implementation of the 2013 national policy on trafficking in persons", - "values": [ - "Poverty", - "Rights of the Child", - "Trafficking" - ] - }, - { - "text": "Take effective measures to counter the incitement to discrimination and violence in the media", - "values": [ - "Racial discrimination" - ] - }, - { - "text": "Costa Rica will ratify the International Convention for the Protection of All Persons from Enforced Disappearance.", - "values": [ - "Enforced disappearances", - "International instruments" - ] - }, - { - "text": "Reinforce measures designed to prevent all forms of torture and inhuman or degrading treatment, including appropriate human rights training of the law enforcement personnel, while ensuring full accountability of perpetrators as well as redress and rehabilitation to victims", - "values": [ - "Human rights education and training", - "Torture and other CID treatment" - ] - }, - { - "text": "Continue with its efforts to combat corruption", - "values": [ - "Corruption" - ] - }, - { - "text": "Provide the Independent National Commission on Human Rights with adequate resources to assist it in discharging its core mandate", - "values": [ - "National Human Rights Institution" - ] - }, - { - "text": "Adhere to the principles under the 1951 Convention relating to the Status of Refugees and its Protocol of 1967 with a view to their ratification", - "values": [ - "Asylum-seekers - refugees", - "International instruments" - ] - }, - { - "text": "Continue to address the concerns of human rights treaty bodies, special procedures and UNHCR in respect of immigrant, refugee and minority women in the area of equality and non-discrimination, and consider implementing, as appropriate, their recommendations ", - "values": [ - "Asylum-seekers - refugees", - "Migrants", - "Minorities", - "Special procedures", - "Treaty bodies", - "Women's rights" - ] - }, - { - "text": "Continue its efforts to combat torture and ill-treatment", - "values": [ - "Torture and other CID treatment" - ] - }, - { - "text": "Grant them [asylum-seekers and migrant children] access to education through integration into mainstream public schools", - "values": [ - "Asylum-seekers - refugees", - "Migrants", - "Right to education", - "Rights of the Child" - ] - }, - { - "text": "Consider developing programmes to reduce school dropout, increasing investment in educational infrastructure, and promoting effective programmes to address low school attendance ", - "values": [ - "Right to education" - ] - }, - { - "text": "Take promptly all the necessary measures to put an end to all the human rights violations in Marange region ", - "values": [ - "General" - ] - }, - { - "text": "Ratify international human rights instruments to which Colombia is not yet a party ", - "values": [ - "International instruments" - ] - }, - { - "text": "Pursue its efforts aimed at improving the standard of living of its population, taking into consideration the equitable distribution of the fruit of those efforts among all segments and groups in society and among various regions ", - "values": [ - "Development" - ] - }, - { - "text": "Enable the Committee on Missing Persons in Cyprus to continue working on the exhumation, identification and return of human remains ", - "values": [ - "Other" - ] - }, - { - "text": "Respect and protect freedom of expression online and offline, and freedom of assembly and association, including by lifting obstacles regarding the registration and work of NGOs, and by acceding to the first Optional Protocol to the International Covenant on Civil and Political Rights", - "values": [ - "Civil society", - "Freedom of association and peaceful assembly", - "Freedom of opinion and expression", - "International instruments" - ] - }, - { - "text": "Step up the fight against false job offers and sign agreements with countries where Cambodian women are hired", - "values": [ - "Women's rights" - ] - }, - { - "text": "Ensure that all allegations of torture and ill-treatment are investigated by an independent mechanism, and that alleged perpetrators are effectively prosecuted", - "values": [ - "Torture and other CID treatment" - ] - }, - { - "text": "Maintain and strengthen its political support and financial cooperation for the operations of the Office of the United Nations High Commissioner for Refugees, for the implementation of social projects in favour of Colombian refugees ", - "values": [ - "Asylum-seekers - refugees", - "Technical assistance and cooperation" - ] - }, - { - "text": "Strengthen measures aimed at poverty eradication ", - "values": [ - "Poverty" - ] - }, - { - "text": "Consider strengthening programmes to fight and prevent HIV-AIDS, with special attention to women and children", - "values": [ - "HIV - Aids", - "Rights of the Child", - "Women's rights" - ] - }, - { - "text": "Review the Anti-Slavery Act explicitly to provide for victims' representation, protection and support", - "values": [ - "Other" - ] - }, - { - "text": "Delimit child and early marriage by amending and unifying legislation, in particular, the Civil Code, to define the accepted age of marriage as 18", - "values": [ - "Rights of the Child", - "Women's rights" - ] - }, - { - "text": "Consider the ratification of the main international human rights instruments already signed by Mozambique, such as the Rome Statute and CED ", - "values": [ - "Enforced disappearances", - "International instruments", - "Justice" - ] - }, - { - "text": "Strengthen the public health system to ensure better access to primary care for all, especially through universal health coverage", - "values": [ - "Right to health" - ] - }, - { - "text": "Continue to combat gender stereotypes by promoting equal representation of men and women in public office", - "values": [ - "Women's rights" - ] - }, - { - "text": "Enhance the efforts for capacity building for police and law enforcement officers ", - "values": [ - "Justice" - ] - }, - { - "text": "Ensure that Inuit children can retain their identity and use their own language", - "values": [ - "Indigenous peoples", - "Rights of the Child" - ] - }, - { - "text": "Take all the necessary measures to fight against femicide and the lynching and killings of persons based on their sexual orientation.", - "values": [ - "Sexual Orientation and Gender Identity", - "Women's rights" - ] - }, - { - "text": "Introduce in the Penal Code a definition of torture that incorporates all the elements provided for in CAT", - "values": [ - "International instruments", - "Torture and other CID treatment" - ] - }, - { - "text": "Take measures to enhance women's participation in public and political decision-making", - "values": [ - "Women's rights" - ] - }, - { - "text": "Develop its legislation with a view to effectively protecting the rights of LGBT persons, and discourage the development of discriminatory ideologies in the country through information and human rights education ", - "values": [ - "Human rights education and training", - "Sexual Orientation and Gender Identity" - ] - }, - { - "text": "Consider the possibility of establishing a national system for monitoring international recommendations", - "values": [ - "Special procedures", - "Treaty bodies", - "UPR process" - ] - }, - { - "text": "Strengthen legislation to combat incitement to hate and discrimination on the grounds of ethnicity, culture, religion or nationality, particularly when it comes in political statements or from public officials", - "values": [ - "Freedom of religion and belief", - "Minorities", - "Racial discrimination" - ] - }, - { - "text": "Complete the process of adaptation and compliance of the Benin Commission of Human Rights with the international standards", - "values": [ - "National Human Rights Institution" - ] - }, - { - "text": "Finalize its ratification of the Convention on the Rights of Persons with Disabilities, and actively address the needs of persons with disabilities especially in remote areas of the country", - "values": [ - "Disabilities", - "International instruments" - ] - }, - { - "text": "Initiate a process of consultations with civil society to study how to reform the 2015 law on public associations to favour freedom of association, in line with international human rights norms", - "values": [ - "Civil society", - "Freedom of association and peaceful assembly", - "International instruments" - ] - }, - { - "text": "Promptly approve legislation establishing an NHRI in full compliance with the Paris Principles", - "values": [ - "National Human Rights Institution" - ] - }, - { - "text": "Share, with the Sudan and other least developing and developing countries its best practice of social safety nets and empowerment", - "values": [ - "Other" - ] - }, - { - "text": "Recommended that cases of rape and other forms of sexual violence be adequately investigated and to brought perpetrators to justice in accordance with international standards concerning the administration of justice", - "values": [ - "Rights of the Child", - "Women's rights" - ] - }, - { - "text": "Work with relevant NGOs to create programmes to educate law enforcement officials, judges etc. on domestic violence as a serious issue that should be remedied through the legal system and not kept hidden in the domestic sphere ", - "values": [ - "Civil society", - "Human rights education and training", - "Rights of the Child", - "Women's rights" - ] - }, - { - "text": "Continue its reparation programmes in implementation of the recommendations of the National Truth and Reconciliation Commission", - "values": [ - "Justice" - ] - }, - { - "text": "Adjust its national laws to the international obligations undertaken", - "values": [ - "General" - ] - }, - { - "text": "Take urgent and immediate steps to address the plight of migrants, asylum seekers, refugees and trafficked human beings in Libya, ensuring full respect for their human rights, including preventing violence against women and violence targeting members of religious communities", - "values": [ - "Asylum-seekers - refugees", - "Freedom of religion and belief", - "Migrants", - "Trafficking", - "Women's rights" - ] - }, - { - "text": "Continue implementation of national priorities and measures aimed at settling issues related to the promotion and protection of human rights in accordance with its legislation and international obligations", - "values": [ - "General" - ] - }, - { - "text": "Make efforts to actively combat homophobic, anti-Semitic and anti- Roma rhetoric, including by ensuring law enforcement and judicial authorities are made aware of guidelines on identifying and investigating racially motivated crime ", - "values": [ - "Minorities", - "Racial discrimination" - ] - }, - { - "text": "Share its best practices in the field of education for children with disabilities", - "values": [ - "Disabilities", - "Right to education", - "Rights of the Child" - ] - }, - { - "text": "Provide adequate resources for the effective prosecution of cases of sexual violence", - "values": [ - "Rights of the Child", - "Women's rights" - ] - }, - { - "text": "Take measures to put an end to police abuses, including the merciless killing of coloured people, and all racial discrimination", - "values": [ - "Extrajudicial executions", - "Human rights violations by state agents", - "Minorities", - "Racial discrimination" - ] - }, - { - "text": "Abolish the defamation law and ensure protection and promotion of the rights to freedom of expression and peaceful assembly and association through legislative reform and policy changes ", - "values": [ - "Freedom of association and peaceful assembly", - "Freedom of opinion and expression" - ] - }, - { - "text": "Protect journalists and human rights defenders and ensure that they can operate freely and without fear of reprisal", - "values": [ - "Freedom of the press", - "Human rights defenders" - ] - }, - { - "text": "Intensify the programmes to combat child labour ", - "values": [ - "Labour", - "Rights of the Child" - ] - }, - { - "text": "Address further the fundamental structural problem of social inequality and unequal access to opportunities and services of the poor and marginalized to enable the people to enjoy their rights as indicated in the reform programme and policies ", - "values": [ - "Poverty" - ] - }, - { - "text": "Adopt appropriate measures to eradicate gender-based violence, particularly domestic violence.", - "values": [ - "Women's rights" - ] - }, - { - "text": "Indonesia is encouraged to identify its capacity building needs related to the Universal Periodic Review follow-up and seek regional and international cooperation in this regard, including through integration of the Universal Periodic Review recommendations, as appropriate, into its national development strategy and into its dialogue with relevant stakeholders through existing mechanisms. Such capacity-building needs could pertain, inter alia, to issues such as harmonization of local laws with national and international standards or to strengthening national human rights institutions", - "values": [ - "Civil society", - "National Human Rights Institution", - "Technical assistance and cooperation", - "UPR process" - ] - }, - { - "text": "Ratify the six core international human rights instruments, including the Convention against Torture, the International Convention for the Protection of All Persons from Enforced Disappearance, the International Convention on the Protection of the Rights of All Migrant Workers and Members of Their Families and the International Covenant on Economic, Social and Cultural Rights", - "values": [ - "ESC rights - general", - "Enforced disappearances", - "International instruments", - "Labour", - "Migrants", - "Torture and other CID treatment" - ] - }, - { - "text": "Take measures to eliminate discrimination against women, especially domestic violence ", - "values": [ - "Women's rights" - ] - }, - { - "text": "Ensure that all allegations of torture are promptly and impartially investigated and that victims obtain redress in accordance with Libya's international obligations under the Convention against Torture", - "values": [ - "International instruments", - "Torture and other CID treatment" - ] - }, - { - "text": "Continue strengthening universal birth registration services in the country, ensuring that they are free and accessible to all", - "values": [ - "Rights of the Child", - "Statelessness and the right to nationality" - ] - }, - { - "text": "Investigate all cases of torture and bring perpetrators to justice ", - "values": [ - "Torture and other CID treatment" - ] - }, - { - "text": "Extend a standing invitation to all mandate holders", - "values": [ - "Special procedures" - ] - }, - { - "text": "Establish legislative mechanisms prohibiting all forms of discrimination based on ethnic grounds", - "values": [ - "Racial discrimination" - ] - }, - { - "text": "Prevent the introduction of new laws that would go against media pluralism and freedom", - "values": [ - "Freedom of the press" - ] - }, - { - "text": "Continue to promote its successful social policies in favour of its people, with special attention to the most vulnerable sectors", - "values": [ - "Minorities" - ] - }, - { - "text": "Continue the implementation of the National Action Plan for Children 2006-2016", - "values": [ - "Rights of the Child" - ] - }, - { - "text": "Cooperate with the human rights system by accepting to receive the missions of the Human Rights Council as established by its resolutions", - "values": [ - "Special procedures" - ] - }, - { - "text": "Direct all programmes aimed at improving the status of women, and enhance their participation in all areas of society ", - "values": [ - "Women's rights" - ] - }, - { - "text": "Ensure that children with disabilities have access to health care and combat the stigmatization of and prejudice against children with disabilities", - "values": [ - "Disabilities", - "Right to health", - "Rights of the Child" - ] - }, - { - "text": "Promote gender equality and to safeguard the rights of women ", - "values": [ - "Women's rights" - ] - }, - { - "text": "Consolidate the legal framework of human rights protection through ratifying the International Covenant on Economic, Social and Cultural Rights, the International Convention for the Protection of All Persons from Enforced Disappearance and the First Optional Protocol to the International Covenant on Civil and Political Rights", - "values": [ - "CP rights - general", - "ESC rights - general", - "Enforced disappearances", - "International instruments" - ] - }, - { - "text": "Complete the draft national action plan for the promotion and protection of human rights and the draft national action plan on violence against women ", - "values": [ - "Women's rights" - ] - }, - { - "text": "Further consolidate an environment suitable for the work of human rights defenders", - "values": [ - "Human rights defenders" - ] - }, - { - "text": "Effectively implement the National Integration Strategy for Individuals Granted International Protection in Bulgaria(2014-2020) with particular focus on the needs of children", - "values": [ - "Asylum-seekers - refugees", - "Rights of the Child" - ] - }, - { - "text": "Fully incorporate the Convention on the Elimination of All Forms of Discrimination against Women into its domestic legal system", - "values": [ - "International instruments", - "Women's rights" - ] - }, - { - "text": "Step up efforts to prevent organised crime networks", - "values": [ - "Public security" - ] - }, - { - "text": "Keep on its effective measures for further promotion and protection of the right of child ", - "values": [ - "Rights of the Child" - ] - }, - { - "text": "Provide law enforcement officials more information on international human rights instruments", - "values": [ - "Human rights education and training", - "International instruments" - ] - }, - { - "text": "Conclude the ongoing consultations concerning the Disability Bill to be adopted at the nearest time possible", - "values": [ - "Disabilities" - ] - }, - { - "text": "Increase continued efforts to eliminate violence against women and children in the country ", - "values": [ - "Rights of the Child", - "Women's rights" - ] - }, - { - "text": "Provide a legislative framework for the eradication of child labour in accordance with its human rights obligations", - "values": [ - "Labour", - "Rights of the Child" - ] - }, - { - "text": "Amend the legislation to explicitly prohibit corporal punishment in families, schools and institutions, to conduct awareness-raising campaigns on this issue and to ensure that the existing legislation related to children fully reflects the principles and provisions contained in CRC ", - "values": [ - "Human rights education and training", - "International instruments", - "Rights of the Child", - "Torture and other CID treatment" - ] - }, - { - "text": "Share its experience on human rights education with countries requesting such need", - "values": [ - "Human rights education and training" - ] - }, - { - "text": "The stigmatization of certain ethnic or social groups remained a matter of serious concern for the central Government and local authorities and the country was strongly committed to eradicating racist and xenophobic attitudes within society.", - "values": [ - "Minorities", - "Racial discrimination" - ] - }, - { - "text": "Adopt national legislation to fully implement the ILO Convention No. 169 on indigenous and tribal peoples. Particular focus should be put on the indigenous peoples' right to be consulted at all levels of decision-making, in policy, legislative, administrative and development processes affecting them", - "values": [ - "Indigenous peoples", - "International instruments" - ] - }, - { - "text": "Prosecute human rights violations committed by members of the security service and to take measures that the judiciary can work independently without being hindered by persons related to organized crime or the security sector and others", - "values": [ - "Human rights violations by state agents", - "Justice" - ] - }, - { - "text": "Continue the rapid and comprehensive implementation of the road map on the end of recruiting children by armed forced, adopted in May 2013", - "values": [ - "International humanitarian law", - "Rights of the Child" - ] - }, - { - "text": "Ensure access to justice and full reparation for victims and survivors ", - "values": [ - "Justice" - ] - }, - { - "text": "Ensure every detainee has the right to regularly see visitors and has permanent access to legal counsel and effective complaint mechanisms", - "values": [ - "Detention" - ] - }, - { - "text": "Introduce measures to improve the conditions of Travellers in the society and introduce a comprehensive system for the monitoring of racist incidents ", - "values": [ - "Migrants", - "Racial discrimination" - ] - }, - { - "text": "Continue to invest in education, not only to maintain the high level of literacy, but also to educate the population in such a way that citizens can articulate and organize their age-old traditions with the requirements of modern urban society, and to train itself to prevent the emergence of new forms of poverty ", - "values": [ - "Right to education" - ] - }, - { - "text": "Ensure the full realization of the rights of migrants on its territory by enacting legislation and providing training to concerned officials", - "values": [ - "Migrants" - ] - }, - { - "text": "Revise Malaysia's legislative framework in order to ensure freedom of religion or belief for all", - "values": [ - "Freedom of religion and belief" - ] - }, - { - "text": "Continue its efforts to mitigate the negative results of the economic crisis and the austerity measures that primarily affect the most disadvantaged groups of the population", - "values": [ - "Development", - "ESC rights - general" - ] - }, - { - "text": "That the Nigeria's President and National Assembly not approve the Same Gender Marriage Bill and eliminate all existing legislation that discriminates based on gender and sexual orientation", - "values": [ - "Sexual Orientation and Gender Identity" - ] - }, - { - "text": "Continue working to improve its treatment of migrants and refugees in a transparent manner, and with full respect for human rights, especially those of women and children", - "values": [ - "Asylum-seekers - refugees", - "Migrants", - "Rights of the Child", - "Women's rights" - ] - }, - { - "text": "Continue its cooperation with Treaty Bodies by submitting all its overdue reports, namely the initial reports on the Convention on the Rights of the Child and the Convention on the Elimination of All Forms of Discrimination against Women", - "values": [ - "Rights of the Child", - "Treaty bodies", - "Women's rights" - ] - }, - { - "text": "Become party to the Optional Protocol to CRC on a communication procedures to further ensue the rights of children victims", - "values": [ - "International instruments", - "Rights of the Child" - ] - }, - { - "text": "Ensure an effective implementation of its National Policy and Action Plan on Human Rights in order to further promote and protect human rights of its population", - "values": [ - "General" - ] - }, - { - "text": "Amend article 14 of the Computer Crimes Act to ensure it cannot be used to prosecute cases of alleged defamation", - "values": [ - "Freedom of opinion and expression" - ] - }, - { - "text": "Advance in the application of legislative measures aiming at the prohibition of discrimination in education, in particular in the rural areas, with a view to promoting gender equality ", - "values": [ - "Right to education", - "Women's rights" - ] - }, - { - "text": "Continue its efforts to combat contemporary forms of slavery, including trafficking and exploitation of persons, and provide support and protection to victims, paying particular attention to more vulnerable groups", - "values": [ - "Trafficking" - ] - }, - { - "text": "Redouble its efforts in combating stereotypes on the role of women through facilitating the participation of women in political and public affairs and sensitizing its population on women's rights", - "values": [ - "Women's rights" - ] - }, - { - "text": "Complete the process of ratifying international human rights instruments which have not yet been ratified, including CPED and the two Protocols to CRC ", - "values": [ - "Enforced disappearances", - "International instruments", - "Rights of the Child" - ] - }, - { - "text": "Ensure that the courts effectively apply penalties to those responsible for rape with a focus on police and State officials", - "values": [ - "Rights of the Child", - "Women's rights" - ] - }, - { - "text": "Continue the debate in view of the abolishment of the death penalty ", - "values": [ - "Death penalty" - ] - }, - { - "text": "Follow up on the recommendations addressed to it by the treaty bodies and special procedures ", - "values": [ - "Special procedures", - "Treaty bodies" - ] - }, - { - "text": "That the Government and FARDC, in cooperation with the United Nations country-level task force, swiftly formulate an action plan to identify, release and ensure the reintegration of all child soldiers, as requested by Security Council resolutions", - "values": [ - "International humanitarian law", - "Rights of the Child" - ] - }, - { - "text": "Adopt a comprehensive law to protect the environment\n\n", - "values": [ - "Environment" - ] - }, - { - "text": "Take the necessary steps towards the establishment of a national human rights institution or a similar regional body in accordance with the Paris Principles", - "values": [ - "National Human Rights Institution" - ] - }, - { - "text": "Expedite judicial processes so that cases stay within the statute of limitations, and improve conditions in penitentiary facilities ", - "values": [ - "Detention" - ] - }, - { - "text": "Reconcile policies related to ethnic Hungarians abroad with neighbouring countries primary responsibility for minority protection ", - "values": [ - "Minorities" - ] - }, - { - "text": "Ensure the implementation of law 99-05, which prohibits Female Genital Mutilation (FGM) to prevent and eradicate this practice", - "values": [ - "Rights of the Child", - "Torture and other CID treatment", - "Women's rights" - ] - }, - { - "text": "Continue with the reform process and ratify a number of its outstanding international instruments to provide full enjoyment of all human rights to its people ", - "values": [ - "International instruments" - ] - }, - { - "text": "Promote measures aimed at protection and support of the institute of family ", - "values": [ - "Other" - ] - }, - { - "text": "Strengthen human rights education plans oriented towards women's rights, rights of the child and freedom of religion", - "values": [ - "Freedom of religion and belief", - "Human rights education and training", - "Rights of the Child", - "Women's rights" - ] - }, - { - "text": "Make progress in implementing the initiatives to prevent sexual and gender violence, especially among the displaced population, which have been developed by the Ministry of Gender and Women's Rights", - "values": [ - "Internally displaced persons", - "Women's rights" - ] - }, - { - "text": "Continue taking the necessary measures to keep girls in schools, and guarantee that they continue their official and higher education", - "values": [ - "Right to education", - "Rights of the Child", - "Women's rights" - ] - }, - { - "text": "Ratify the Rome Statute and take necessary measures to ensure its full implementation ", - "values": [ - "International instruments", - "Justice" - ] - }, - { - "text": "Align its Penal Code with international norms with a view to integrating judicial guarantees against torture, such as the right to a lawyer in all phases of a criminal procedure, including in police detention", - "values": [ - "Detention", - "Justice", - "Torture and other CID treatment" - ] - }, - { - "text": "Continue to take measures to combat racism, violence and hatred and to fully respect the human rights of migrants and refugees", - "values": [ - "Asylum-seekers - refugees", - "Racial discrimination" - ] - }, - { - "text": "Review the law which prohibits the wearing of clothing denoting religious affiliation in schools.", - "values": [ - "Freedom of religion and belief", - "Right to education" - ] - }, - { - "text": "Positively consider the visit requested by the special rapporteur on summary executions", - "values": [ - "Extrajudicial executions", - "Special procedures" - ] - }, - { - "text": "The Government was strongly committed to upholding and ensuring human rights for its people, the delegation took careful note of the comments made during the UPR session, and Kiribati would continue to work hard in meeting its human rights obligations.", - "values": [ - "General" - ] - }, - { - "text": "Deploy further efforts in order to prevent and punish violence against women and abuses, in particular those related to domestic violence", - "values": [ - "Women's rights" - ] - }, - { - "text": "Codify its criminal law to bring it into line with international law and standards, and ensure it is applied effectively by an independent and impartial judiciary", - "values": [ - "Justice" - ] - }, - { - "text": "Build mechanisms which would enable provision of adequate humanitarian assistance to the large number of internally displaced persons", - "values": [ - "Internally displaced persons" - ] - }, - { - "text": "Take the necessary steps to improve access to education at all levels", - "values": [ - "Right to education" - ] - }, - { - "text": "Take strong measures to prevent human rights violations and abuses by its own security forces and conduct investigations on alleged human rights violations by the security forces since March of 2012", - "values": [ - "Human rights violations by state agents" - ] - }, - { - "text": "Continue its policies in the field of international cooperation in order to assist the efforts made by other countries to fulfil the right to development", - "values": [ - "Development" - ] - }, - { - "text": "Ensure adequate funding for the public education system and improve the availability, accessibility and quality of general education in rural areas", - "values": [ - "Right to education" - ] - }, - { - "text": "Continue efforts to improve the situation of women", - "values": [ - "Women's rights" - ] - }, - { - "text": "Fully cooperate with the special procedures mandate holders, in particular the Special Rapporteur on the situation of human rights in Eritrea ", - "values": [ - "Special procedures" - ] - }, - { - "text": "Guarantee freedom of expression by protecting journalists, bloggers and media professionals from arbitrary arrest and detention and from censorship, including by amending those provisions in the Criminal Code and the draft media law that are inconsistent with international standards of freedom of expression ", - "values": [ - "Detention", - "Freedom of opinion and expression", - "Freedom of the press" - ] - }, - { - "text": "Implement the national action plan against the recruitment of children into armed forces", - "values": [ - "International humanitarian law", - "Rights of the Child" - ] - }, - { - "text": "Conduct a study concerning how the education of disabled students can be implemented through mainstream educational settings ", - "values": [ - "Disabilities", - "Right to education" - ] - }, - { - "text": "Strengthen the legislative framework and ensure its effective enforcement in eliminating all forms of discrimination against women", - "values": [ - "Women's rights" - ] - }, - { - "text": "Adopt comprehensive legislation on discrimination", - "values": [ - "Other" - ] - }, - { - "text": "Ratify the Optional Protocol to the ICESCR, as recommended previously ", - "values": [ - "ESC rights - general", - "International instruments", - "UPR process" - ] - }, - { - "text": "Allocate resources to promote universal access to HIV prevention and treatment in state and NGO-run health-diagnostic facilities without fear of stigma and discrimination", - "values": [ - "HIV - Aids" - ] - }, - { - "text": "Bring its domestic legislation relating to the protection of the rights of children, especially in cases of child prostitution, child pornography, and child victims of trafficking, in line with its obligations under the CRC ", - "values": [ - "International instruments", - "Rights of the Child", - "Trafficking" - ] - }, - { - "text": "Strengthen the resources given to the Office of Women's Affairs and consider the possibility of complying with the recommendations of UNHCR and CEDAW, concerning the abolition of the legal provisions that prevent the transmission of nationality to Bahamian women", - "values": [ - "Treaty bodies", - "Women's rights" - ] - }, - { - "text": "Improve its processes for considering the recommendations of the Provedoria for Human Rights and Justice, and respond to them without delay ", - "values": [ - "National Human Rights Institution" - ] - }, - { - "text": "Step up the implementation of programmes aimed at reducing illiteracy, as part of the achievement of the Millennium Development Goals", - "values": [ - "Right to education" - ] - }, - { - "text": "Comply with recommendation No. 1737 of 17 March 2006 of the Parliamentary Assembly of the Council of Europe, which calls for the ratification of the International Convention on the Protection of the Rights of All Migrant Workers and Members of Their Families", - "values": [ - "International instruments", - "Labour", - "Migrants" - ] - }, - { - "text": "Ensure the establishment and independence of a national human rights institution in compliance with the Paris Principles ", - "values": [ - "National Human Rights Institution" - ] - }, - { - "text": "Harmonize the national legislation with the Convention on the Rights of the Child and article 16.2 of the Convention on the Elimination of All Forms of Discrimination against Women by passing a legislative amendment to raise the minimum age of consent to marriage for girls to 18 years", - "values": [ - "International instruments", - "Rights of the Child", - "Women's rights" - ] - }, - { - "text": "Continue the efforts to improve universal access to education", - "values": [ - "Right to education" - ] - }, - { - "text": "Continue to cooperate with the African Union and the United Nations mechanisms established to assist with the resolution of the situation in Somalia ", - "values": [ - "Other" - ] - }, - { - "text": "Give special considerations to juvenile offenders, such as to prohibit the use of solitary confinement against persons under 18 and separate juvenile offenders from adult offenders", - "values": [ - "Detention", - "Rights of the Child" - ] - }, - { - "text": "Continue ongoing efforts to timely submit due national reports to the treaty monitoring bodies", - "values": [ - "Treaty bodies" - ] - }, - { - "text": "Continue implementing programmes and plans aimed at improving services linked to drinking water and sanitation", - "values": [ - "Right to water and sanitation" - ] - }, - { - "text": "Consider abolishing de jure the death penalty", - "values": [ - "Death penalty" - ] - }, - { - "text": "Strengthen efforts for national reconciliation in Somalia ", - "values": [ - "Justice" - ] - }, - { - "text": "Review all legislation related to children to harmonize it with the CRC", - "values": [ - "International instruments", - "Rights of the Child" - ] - }, - { - "text": "Expand as much as possible the ratification of the whole set of international human rights instruments recommended during the 2010 UPR and not yet ratified", - "values": [ - "International instruments", - "UPR process" - ] - }, - { - "text": "Take comprehensive measures in combatting trafficking in persons including by the accession to the Palermo Protocol and by extending an invitation to the Special Rapporteur on trafficking in persons, especially women and children", - "values": [ - "International instruments", - "Rights of the Child", - "Special procedures", - "Trafficking", - "Women's rights" - ] - }, - { - "text": "Sign and ratify OP-ICESCR as soon as possible, allowing individual complaints of alleged violations of these rights to be heard by the Committee on Economic, Social and Cultural Rights", - "values": [ - "ESC rights - general", - "International instruments" - ] - }, - { - "text": "Guarantee effective protection of children's rights, including access to education and protection from child labour", - "values": [ - "Labour", - "Rights of the Child" - ] - }, - { - "text": "Change Article 319 of the Penal Code and start a national dialogue on the acceptance of homosexuality", - "values": [ - "Sexual Orientation and Gender Identity" - ] - }, - { - "text": "Consider extending a standing invitation to all special procedures of the Human Rights Council. ", - "values": [ - "Special procedures" - ] - }, - { - "text": "Establish appropriate coordination mechanisms that can ensure an effective multisectoral response to cases of sexual and domestic violence", - "values": [ - "Rights of the Child", - "Women's rights" - ] - }, - { - "text": "Provide adequate protection to indigenous peoples and ensure that their right to possess land is respected.", - "values": [ - "Indigenous peoples", - "Right to land" - ] - }, - { - "text": "Consider signing and progressively ratifying international human rights instruments to which the country is not yet a party, especially the Optional Protocol to the Convention on the Rights of the Child", - "values": [ - "International instruments", - "Rights of the Child" - ] - }, - { - "text": "Ensure that clear targets and indicators are developed with civil society in the next Growth and Development Strategy to protect and monitor human rights, particularly the rights of women and girls ", - "values": [ - "Civil society", - "Rights of the Child", - "Women's rights" - ] - }, - { - "text": "Continue to support in international forums the right to self-determination and independence of peoples ", - "values": [ - "Other" - ] - }, - { - "text": "Take the necessary measures for the proper civil registration of migrant children and birth registration of children of migrants", - "values": [ - "Migrants", - "Rights of the Child", - "Statelessness and the right to nationality" - ] - }, - { - "text": "Continue efforts to ensure better access of the population to drinking water and sanitation", - "values": [ - "Right to water and sanitation" - ] - }, - { - "text": "Further measures aimed at achieving effective gender equality", - "values": [ - "Women's rights" - ] - }, - { - "text": "Study the possibility of acceding to the International Convention on the Protection of the Rights of All Migrant Workers and Members of Their Families (ICRMW)", - "values": [ - "International instruments", - "Labour", - "Migrants" - ] - }, - { - "text": "Apply homogenous human rights standards in the different territories that form the kingdom of the Netherlands, especially in the Antilles, as recommended by CESCR in 2010 ", - "values": [ - "Treaty bodies" - ] - }, - { - "text": "Sign and ratify the International Convention for the Protection of All Persons from Enforced Disappearance and recognize the competence of the Committee on Enforced Disappearances in conformity with articles 31 and 32 of the Convention", - "values": [ - "Enforced disappearances", - "International instruments", - "Treaty bodies" - ] - }, - { - "text": "Immediately and unconditionally release all political prisoners and ensure that all trial proceedings conform to international fair trial standards, including the right to a fair and public trial by a competent, independent and impartial tribunal, access to legal counsel of one's choosing, the presumption of innocence, and the opportunity to appeal through a process of judicial review ", - "values": [ - "Detention", - "Freedom of opinion and expression", - "Justice" - ] - }, - { - "text": "Continue to promote dialogue among different religions ", - "values": [ - "Freedom of religion and belief" - ] - }, - { - "text": "Thoroughly investigate all forms of human rights violations particularly of those who were arrested in the course of police operations.", - "values": [ - "Justice" - ] - }, - { - "text": "Make more strenuous effort to address the issue of violence against women, including through intensifying its awareness-raising and strengthening prevention efforts and measures", - "values": [ - "Women's rights" - ] - }, - { - "text": "Take necessary measures to increase the percentage of women in decision making positions in private and corporate sectors", - "values": [ - "Women's rights" - ] - }, - { - "text": "Establish specialized juvenile courts and provide training to enforcement and judicial officers working on juvenile cases on international standards and guidelines on juvenile justice ", - "values": [ - "Justice", - "Rights of the Child" - ] - }, - { - "text": "Amend the definition of discrimination in the Constitution in such a way that it covers discrimination based on descent and abolish those laws that permit discrimination on the basis of ethnicity, language and culture.", - "values": [ - "Racial discrimination" - ] - }, - { - "text": "Take measures to ensure the dignity of detainees and their rights to life, liberty and physical and mental integrity", - "values": [ - "Detention", - "Right to health" - ] - }, - { - "text": "Finalize its reform of the Penal Code as rapidly as possible, and improve conditions of detention, in particular combating prison overcrowding ", - "values": [ - "Detention" - ] - }, - { - "text": "Fully implement its action plan to improve the living conditions of minorities, especially Roma ", - "values": [ - "Minorities" - ] - }, - { - "text": "Guarantee the full enjoyment of the rights on natives of America in line with the United Nations Declaration on the Rights of Indigenous Peoples ", - "values": [ - "Indigenous peoples", - "International instruments" - ] - }, - { - "text": "Consider opening a small permanent mission in Geneva, using facilities provided by the newly opened Commonwealth Small States Office ", - "values": [ - "Other" - ] - }, - { - "text": "Continue to consolidate the positive societal policies in favour of vulnerable sectors, particularly children and adolescents", - "values": [ - "Rights of the Child" - ] - }, - { - "text": "Sign and ratify the Convention on the Rights of Persons with Disabilities and its Optional Protocol ", - "values": [ - "Disabilities", - "International instruments" - ] - }, - { - "text": "Set up a monitoring system to ensure the rights of migrants and members of their families, especially rights to housing, employment and education ", - "values": [ - "Migrants" - ] - }, - { - "text": "Pay particular attention to children belonging to vulnerable groups, including children with disabilities and from minority communities ", - "values": [ - "Disabilities", - "Minorities", - "Rights of the Child" - ] - }, - { - "text": "Effectively implement the Palermo Protocol, as well as other laws on human trafficking", - "values": [ - "Trafficking" - ] - }, - { - "text": "We are committed to equality of opportunity in education and to helping students succeed in school, careers, and life. To help increase educational excellence, support innovation and improvement, and address continuing challenges, ED has dedicated well over $1 billion to early childhood education, and also has launched a number of other programs and initiatives, including the Excellent Educators for All Initiative in July 2014, which directs states to submit plans in 2015 to help ensure that poor and minority children have equal access to experienced, qualified teachers. Also in 2014, we issued guidance to states, school districts, and schools to help ensure that students have equal access to educational resources, and launched the Performance Partnership Pilots program to test innovative, outcome-focused strategies for achieving significant improvements in educational, employment, and other key outcomes for disconnected youth.", - "values": [ - "Right to education" - ] - }, - { - "text": "Build a national commission for human rights and a human rights office in the country, and provide human rights education programmes and awareness-raising activities, calling upon the international community to consider technical assistance and financial support.", - "values": [ - "Human rights education and training", - "National Human Rights Institution", - "Technical assistance and cooperation" - ] - }, - { - "text": "Ratify ICCPR-OP2, aiming at the abolition of the death penalty", - "values": [ - "Death penalty", - "International instruments" - ] - }, - { - "text": "Consider the early ratification of CEDAW ", - "values": [ - "International instruments", - "Women's rights" - ] - }, - { - "text": "Strengthen the capacities of the National Commission on Human Rights and make it in conformity with the Paris Principles", - "values": [ - "National Human Rights Institution" - ] - }, - { - "text": "Strengthen its programmes aimed at the promotion of the right to health ", - "values": [ - "Right to health" - ] - }, - { - "text": "Maintain addressing the emerging situation of refugee influx and migratory pressures while continuing to ensure the necessary respect for human rights", - "values": [ - "Asylum-seekers - refugees" - ] - }, - { - "text": "Continue practical efforts to bridge gaps between the Roma community and the rest of society, including by implementing legislation and practical measures to eliminate discrimination against Romani individuals, ensuring the police protect Roma communities threatened with violence and discrimination, and ensuring equal access to education, employment, housing, health and social care for all", - "values": [ - "Labour", - "Minorities", - "Racial discrimination", - "Right to education", - "Right to health", - "Right to housing" - ] - }, - { - "text": "Consider further increase in state expenditures on the health sector with a view to meeting the demand for medical supplies, including essential drugs", - "values": [ - "Right to health" - ] - }, - { - "text": "Take all necessary measures to ensure equal access to health and education ", - "values": [ - "Right to education", - "Right to health" - ] - }, - { - "text": "Reinforce the protection of human rights defenders and free those who are still detained in their capacity as human rights defenders.", - "values": [ - "Human rights defenders" - ] - }, - { - "text": "Follow-up the recommendations made by the Committee on the Elimination of Racial Discrimination, the Committee on Economic, Social and Cultural Rights, the Committee on the Elimination of Discrimination against Women and the special procedures that visited in September 2006, in the areas of equality and non-discrimination, paying particular attention to women and ethnic, national and religious minorities, the elimination of any distinction, exclusion or preferential treatment among groups of population in all the territories under State jurisdiction, particularly in the areas of access to justice, employment, education, health services, property rights, housing rights, family reunification, freedom of expression, belief and religion", - "values": [ - "Freedom of religion and belief", - "Minorities", - "Special procedures", - "Treaty bodies", - "Women's rights" - ] - }, - { - "text": "Fight efficiently against rape and domestic violence", - "values": [ - "Rights of the Child", - "Women's rights" - ] - }, - { - "text": "Ratify CRPD as soon as possible to ensure that there is equal treatment for persons with disabilities pursuant to the new Constitution, as recommended previously", - "values": [ - "Disabilities", - "International instruments", - "UPR process" - ] - }, - { - "text": "That police and gendarmerie receive adequate training in crowd control and the use of force and firearms in line with international standards", - "values": [ - "Freedom of association and peaceful assembly", - "Human rights education and training" - ] - }, - { - "text": "Pursue reforms of the Judiciary as well as its efforts to guarantee and facilitate access to justice for all its citizens ", - "values": [ - "Justice" - ] - }, - { - "text": "Issue an early invitation to the Special Rapporteur on the Freedom of Expression ", - "values": [ - "Freedom of opinion and expression", - "Special procedures" - ] - }, - { - "text": "Bring the 2004 Law No 2 on persons with special needs into line with the Convention on the Rights of Persons with Disabilities", - "values": [ - "Disabilities", - "International instruments" - ] - }, - { - "text": "Continuously carry forward its State policy of ensuring harmonization of inter-ethnic and interreligious relations, and share its excellent practices with other countries", - "values": [ - "Freedom of religion and belief", - "Minorities" - ] - }, - { - "text": "Speed up the process of ratification of the Second Optional Protocol to the International Covenant on Civil and Political Rights, aiming at the abolition of the death penalty ", - "values": [ - "Death penalty", - "International instruments" - ] - }, - { - "text": "Improve the programmes for human rights training, in particular those designed for judges and law enforcement agents", - "values": [ - "Human rights education and training" - ] - }, - { - "text": "Implement measures that ensure equality of rights and non discrimination, especially on the grounds of gender, sexual orientation or gender identity", - "values": [ - "Sexual Orientation and Gender Identity", - "Women's rights" - ] - }, - { - "text": "Sign and ratify remaining core international human rights instruments", - "values": [ - "International instruments" - ] - }, - { - "text": "Take concrete steps to increase the protection of women, ensuring that, complaints of domestic violence are properly registered and investigated by the police, and that perpetrators are prosecuted and convicted", - "values": [ - "Women's rights" - ] - }, - { - "text": "Consider adopting a moratorium on the use of the death penalty .", - "values": [ - "Death penalty" - ] - }, - { - "text": "Continue its well-recommended practice to train specialists to work with persons with disabilities", - "values": [ - "Disabilities" - ] - }, - { - "text": "Extend work standard regulations - especially those regarding health and safety - to all resident workers, regardless of citizenship ", - "values": [ - "Labour" - ] - }, - { - "text": "Define the crime of domestic violence and sexual harassment in the legislation ", - "values": [ - "Rights of the Child", - "Women's rights" - ] - }, - { - "text": "Combat impunity of perpetrators of torture and ill-treatment, particularly in cases of excessive use of force by the police", - "values": [ - "Human rights violations by state agents", - "Impunity", - "Torture and other CID treatment" - ] - }, - { - "text": "Pursue the actions in favour of the elderly and persons with disabilities", - "values": [ - "Disabilities" - ] - }, - { - "text": "Take the necessary measures in order to eliminate all discriminatory treatment of Bahraini women married to non-Bahrainis ", - "values": [ - "Women's rights" - ] - }, - { - "text": "Continue to make efforts to ensure women's participation in political life and in decision making", - "values": [ - "Women's rights" - ] - }, - { - "text": "Encourage the ratification of the International Convention for the Protection of All Persons from Enforced Disappearance, as well as the ratification of Optional Protocol to the Convention on the Rights of the Child on a communications procedure", - "values": [ - "Enforced disappearances", - "International instruments", - "Rights of the Child" - ] - }, - { - "text": "Continue to consult, and expand its dialogue with, civil society organizations working in the area of human rights protection, particularly in combating racial discrimination", - "values": [ - "Civil society", - "Racial discrimination" - ] - }, - { - "text": "Consider implementing, as appropriate, the recommendations of UNHCR, human rights treaty bodies and special procedures with respect to asylum-seekers, immigrants and irregular immigrants, especially children ", - "values": [ - "Asylum-seekers - refugees", - "Migrants", - "Rights of the Child", - "Special procedures", - "Treaty bodies" - ] - }, - { - "text": "Revise the penal code in order to guarantee the freedom of expression and protect journalists from violence and harassment", - "values": [ - "Freedom of opinion and expression", - "Freedom of the press" - ] - }, - { - "text": "Continue its efforts to implement domestic policies to further promote gender equality and strengthen the protection of women against discrimination and violence ", - "values": [ - "Women's rights" - ] - }, - { - "text": "Establish a national human rights institution compliant with the Paris Principles", - "values": [ - "National Human Rights Institution" - ] - }, - { - "text": "Continue the international cooperation with the United Nations human rights machinery ", - "values": [ - "Special procedures", - "Treaty bodies", - "UPR process" - ] - }, - { - "text": "Fast-track the enactment of its Domestic Violence Act, criminalize female genital mutilation, enforce laws that protect children from sexual abuse and exploitation, and prosecute and punish complicit officials", - "values": [ - "Human rights violations by state agents", - "Rights of the Child", - "Torture and other CID treatment", - "Women's rights" - ] - }, - { - "text": "Implement measures to decrease the wage gap between men and women ", - "values": [ - "Women's rights" - ] - }, - { - "text": "Ensure that Executive Order No. 12 pertaining to the Responsible Parenthood and Reproductive Health Act is fully implemented in order to meet the needs for modern family planning and to secure universal access to sexual and reproductive health and rights", - "values": [ - "Right to health", - "Women's rights" - ] - }, - { - "text": "Introduce criminal liability for trafficking in children, in particular with the purpose of adoption and sale of organs of children", - "values": [ - "Rights of the Child", - "Trafficking" - ] - }, - { - "text": "Appoint independent and qualified members to its national preventive mechanism to enable it to function in accordance with the objectives of the Optional Protocol to the Convention against Torture", - "values": [ - "Detention", - "International instruments", - "Torture and other CID treatment" - ] - }, - { - "text": "Continue to combat all forms of discrimination in education in particular by adopting specific measures aimed at combating remaining gender-related inequalities ", - "values": [ - "Right to education", - "Women's rights" - ] - }, - { - "text": "Fully implement the National Plan of Action on Child Labour ", - "values": [ - "Labour", - "Rights of the Child" - ] - }, - { - "text": "Pay attention to the provision of security and protection of schools and teachers from all attacks", - "values": [ - "Right to education" - ] - }, - { - "text": "Take the necessary steps to make the anti-discrimination services available in all municipalities and widely inform the public of their availability", - "values": [ - "Human rights education and training" - ] - }, - { - "text": "Ratify the Migrant Workers Convention ", - "values": [ - "International instruments", - "Labour", - "Migrants" - ] - }, - { - "text": "Continue to take all necessary measures to enhance the effectiveness of the protection of children, in particular in cases of sexual violence against children", - "values": [ - "Rights of the Child" - ] - }, - { - "text": "Continue active efforts to de-politicize human rights in the United Nations system, and create conditions for consideration of human rights on basis of equality, mutual respect and dialogue.", - "values": [ - "Other" - ] - }, - { - "text": "Guarantee free and unrestricted access to the Internet", - "values": [ - "Freedom of opinion and expression" - ] - }, - { - "text": "Ratify the first Optional Protocol to the International Covenant on Civil and Political Rights", - "values": [ - "CP rights - general", - "International instruments" - ] - }, - { - "text": "Abolish the system of re-education through labour ", - "values": [ - "Detention" - ] - }, - { - "text": "Continue to consolidate the process to further strengthen the country's democratization and the Rule of Law, with special focus on human rights", - "values": [ - "Justice" - ] - }, - { - "text": "Eliminate unjustified restrictions on the right to religious freedom and stop persecution of individuals for their peaceful religious activity ", - "values": [ - "Freedom of religion and belief" - ] - }, - { - "text": "Take further appropriate and effective measures to eliminate discrimination against Roma and ensure in particular their access to education, housing, healthcare and employment without discrimination, and gives a follow up to the recommendations of the United Nations human rights bodies in this regard.", - "values": [ - "Minorities", - "Treaty bodies" - ] - }, - { - "text": "Review the compliance of its anti-terrorism legislation allowing for incommunicado detention with international human rights standards and consider abolishing the incommunicado regime", - "values": [ - "Counter-terrorism", - "Detention", - "International instruments" - ] - }, - { - "text": "Take effective measures to prohibit any manifestations of discrimination and racism ", - "values": [ - "Racial discrimination" - ] - }, - { - "text": "Continue efforts to guarantee better implementation of education plans particularly in rural areas", - "values": [ - "Right to education" - ] - }, - { - "text": "Continue the campaign for raising awareness of anti-discrimination laws and relevant complaint mechanisms", - "values": [ - "Human rights education and training" - ] - }, - { - "text": "Sustaining its efforts to provide protection and support of the family ", - "values": [ - "Other" - ] - }, - { - "text": "Continue to strengthen its social policies and programmes in order to improve the quality of life of the people, particularly the most excluded sectors", - "values": [ - "ESC rights - general" - ] - }, - { - "text": "Further enhance institutions and infrastructure for human rights, policies and measures toward enhancing the social inclusion, gender equality and non-discrimination, favourable conditions for vulnerable groups of women, children, indigenous people, migrants and refugees", - "values": [ - "Asylum-seekers - refugees", - "Indigenous peoples", - "Migrants", - "Rights of the Child", - "Women's rights" - ] - }, - { - "text": "Review the broad reservations to CRC and to CEDAW ", - "values": [ - "International instruments", - "Rights of the Child", - "Women's rights" - ] - }, - { - "text": "Ratify the remaining core human rights treaties, such as CERD as well as the Convention relating to the Status of Stateless Persons and the Convention on the Reduction of Statelessness ", - "values": [ - "International instruments", - "Racial discrimination", - "Statelessness and the right to nationality" - ] - }, - { - "text": "While paying special tribute to the pioneering role of Brazil in developing bio fuels based on non-edible agricultural products, scale up this experience and preserve the right to food.", - "values": [ - "Right to food" - ] - }, - { - "text": "The delegation highlighted that there was the political will in Benin to ensure that human rights prevailed, and that the country was committed to continuing with the major reforms initiated in respect of the promotion and protection of human rights.", - "values": [ - "General" - ] - }, - { - "text": "Reinforce the capacities of professionals in the identification, referral and protection of victims of gender-based violence and provide legal and medical support to victims", - "values": [ - "Women's rights" - ] - }, - { - "text": "Adopt a new action plan to fully implement the equal pay standard to eradicate the gender pay gap for work", - "values": [ - "Women's rights" - ] - }, - { - "text": "Ensure the full realization of freedom of association and freedom of expression and revise all legislation excessively restricting the work of civil society, including the envisaged so-called "foreign agents" law stigmatizing and crippling the work of NGOs", - "values": [ - "Civil society", - "Freedom of association and peaceful assembly", - "Freedom of opinion and expression" - ] - }, - { - "text": "Take effective measures to ensure protecting children's rights in conformity with its international obligations ", - "values": [ - "Rights of the Child" - ] - }, - { - "text": "Further enforce the implementation of a comprehensive child protection system, especially for those suffering from violence, forced labour and sexual exploitation ", - "values": [ - "Labour", - "Rights of the Child" - ] - }, - { - "text": "Adopt measures in the legislative and political spheres, including appropriate budget allocation, to guarantee, prevent and eradicate discrimination on religious grounds, ethnic composition, gender or sexual orientation ", - "values": [ - "Freedom of religion and belief", - "Minorities", - "Racial discrimination", - "Sexual Orientation and Gender Identity" - ] - }, - { - "text": "Review the de facto ban on peaceful public demonstrations, the use of anti-defamation laws, and the registration process for civil society and associations, to ensure that such laws, as adopted and enforced, are consistent with international human rights guarantees of the rights to freedom of expression, freedom of peaceful assembly, freedom of association ", - "values": [ - "Civil society", - "Freedom of association and peaceful assembly", - "Freedom of opinion and expression", - "International instruments" - ] - }, - { - "text": "Repeal all provisions of law criminalising sexual activity between consenting adults", - "values": [ - "Sexual Orientation and Gender Identity" - ] - }, - { - "text": "Immediately end the mandatory detention of migrant children and ensure that the best interests of the children are respected", - "values": [ - "Detention", - "Migrants", - "Rights of the Child" - ] - }, - { - "text": "Continue disseminating information and materials to the public on HIV prevention ", - "values": [ - "HIV - Aids" - ] - }, - { - "text": "Abolish corporal punishments such as lashes and amputation ", - "values": [ - "Torture and other CID treatment" - ] - }, - { - "text": "Take measures aimed at achieving inclusive education for persons with disabilities, mainly children with disabilities ", - "values": [ - "Disabilities", - "Right to education", - "Rights of the Child" - ] - }, - { - "text": "Strengthen internal mechanisms for the implementation of OP-CAT", - "values": [ - "Detention", - "International instruments", - "Torture and other CID treatment" - ] - }, - { - "text": "Do and act in light of its national reality in order to guarantee unity, peace, stability in Myanmar and in the region ", - "values": [ - "General" - ] - }, - { - "text": "Improve conditions in detention facilities and prisons so that they meet international standards", - "values": [ - "Detention" - ] - }, - { - "text": "Continue working to create a national human rights institution in accordance with the Paris Principles", - "values": [ - "National Human Rights Institution" - ] - }, - { - "text": "Withdraw reservations and declarations made on the occasion of accession to the Convention on the Rights of the Child and gradually incorporate its provisions into domestic law", - "values": [ - "International instruments", - "Rights of the Child", - "Trafficking" - ] - }, - { - "text": "Strengthen the Minor's Protection Unit", - "values": [ - "Rights of the Child" - ] - }, - { - "text": "Intensify the reform of the judicial system, in particular the plan of access to justice and its independence and impartiality", - "values": [ - "Justice" - ] - }, - { - "text": "In line with recommendations of the Committee in the Rights of the Child, enhance efforts to find a prompt solution for either the return or resettlement of people living in refugee camps, with particular attention to children and women and reunification of families", - "values": [ - "Asylum-seekers - refugees", - "Rights of the Child", - "Treaty bodies", - "Women's rights" - ] - }, - { - "text": "Continue to prioritize poverty alleviation in its efforts to raise the living standards of its people", - "values": [ - "Poverty" - ] - }, - { - "text": "Increase human rights training and awareness-raising programmes for prosecution and judicial officers and the media", - "values": [ - "Human rights education and training" - ] - }, - { - "text": "Enhance the capacity of the Haitian National Police to respect and protect human rights through specialized training ", - "values": [ - "Human rights education and training" - ] - }, - { - "text": "Continue to strengthen and improve the Bolsa Família programme in the context of the fight against hunger and poverty", - "values": [ - "Poverty" - ] - }, - { - "text": "Spare no efforts and resources to provide girls and adolescents of reproductive health and social services to address the problem of teenage pregnancies", - "values": [ - "Right to health", - "Rights of the Child", - "Women's rights" - ] - }, - { - "text": "Abolish the system of reeducation through labour and black jails", - "values": [ - "Detention" - ] - }, - { - "text": "Continue its efforts in combating narcotics and psychotropic agents, and work towards protecting youths from them ", - "values": [ - "Other" - ] - }, - { - "text": "Intensify the efforts to raise awareness among women and girls about their rights under the Convention on the Elimination of All Forms of Discrimination against Women and on the individual communication procedures contemplated in its Optional Protocol", - "values": [ - "International instruments", - "Rights of the Child", - "Women's rights" - ] - }, - { - "text": "Further the development of its interaction with the system of special rapporteurs, including through responding to their communications ", - "values": [ - "Special procedures" - ] - }, - { - "text": "Refrain from arbitrary arrest and detention, and enforce existing Criminal Procedure Code provisions to limit pre-trial detention, in compliance with ICCPR obligations", - "values": [ - "Detention", - "International instruments" - ] - }, - { - "text": "Guarantee access to health care for vulnerable social groups and populations in rural and remote zones ", - "values": [ - "Right to health" - ] - }, - { - "text": "Take necessary steps to prevent any actions that may lead to the stigmatization of migrants, asylum-seekers and ethnic or religious groups living in Germany in the context of political discourse, and address its role as a country of immigration by explicitly acknowledging the positive contribution of immigrants to German society", - "values": [ - "Asylum-seekers - refugees", - "Migrants", - "Minorities" - ] - }, - { - "text": "Strengthen the national gender equity and equality policy", - "values": [ - "Women's rights" - ] - }, - { - "text": "Ensure the equal rights of people by legally recognizing same-sex marriage", - "values": [ - "Sexual Orientation and Gender Identity" - ] - }, - { - "text": "Introduce legislation that recognizes the diversity of forms of families and that provides same sex couples with the same rights and social security as couples of the opposite sex ", - "values": [ - "Sexual Orientation and Gender Identity" - ] - }, - { - "text": "Sign, ratify and incorporate into national legislation key human rights treaties, such as ICCPR-OP 1, OP-CAT and CED ", - "values": [ - "CP rights - general", - "Detention", - "Enforced disappearances", - "International instruments", - "Torture and other CID treatment" - ] - }, - { - "text": "Continue the scaled up efforts in all parts of the country to address and contain HIV/AIDS which has been one of the leading causes of morbidity and mortality", - "values": [ - "HIV - Aids", - "Right to health" - ] - }, - { - "text": "Consider the possibility of ratifying other core human rights instruments ", - "values": [ - "International instruments" - ] - }, - { - "text": "Enhance promotion and protection of the rights of the child, including measures against sexual and labour exploitation", - "values": [ - "Labour", - "Rights of the Child" - ] - }, - { - "text": "Take further steps to achieve gender equality through ensuring equal opportunity in the workplace", - "values": [ - "Women's rights" - ] - }, - { - "text": "Take the necessary measures to protect children from early marriage, trafficking and infanticide", - "values": [ - "Rights of the Child", - "Trafficking" - ] - }, - { - "text": "Integrate a human rights based approach in the presidential commission for the reform of the police, establish an independent governance mechanism to investigate violations of human rights and ensure access to justice for victims ", - "values": [ - "Human rights violations by state agents" - ] - }, - { - "text": "Immediately close the prison in Guantanamo and cease the illegal detention of terrorism suspects at its military bases abroad", - "values": [ - "Detention" - ] - }, - { - "text": "Continue its efforts to build capacity in the field of gender-based violence within the police and other authorities and that the United Nations Security Council resolution 1325 agenda is included in such capacity-building efforts ", - "values": [ - "Women's rights" - ] - }, - { - "text": "Adopt additional measures, including legal measures aimed at protecting and promoting the right to education for all", - "values": [ - "Right to education" - ] - }, - { - "text": "Continue to strengthen the capacity of domestic institutions to combat sexual and gender-based violence, including through cooperation with the international community", - "values": [ - "Rights of the Child", - "Technical assistance and cooperation", - "Women's rights" - ] - }, - { - "text": "Attain the voluntary human rights goals approved by the Human Rights Council.", - "values": [ - "General" - ] - }, - { - "text": "Take more resolute action to prevent, and punish perpetrators, of racially motivated acts and propaganda that targeted ethnic minorities and foreigners", - "values": [ - "Minorities", - "Racial discrimination" - ] - }, - { - "text": "Implement the National Strategy for the Social Safety Net in order to achieve an effective delivery of social services to citizens so they can live with dignity", - "values": [ - "ESC rights - general" - ] - }, - { - "text": "Extend an open and standing invitation to special procedures mandates holders", - "values": [ - "Special procedures" - ] - }, - { - "text": "Adopt necessary measures to secure full respect for freedom of the media.", - "values": [ - "Freedom of the press" - ] - }, - { - "text": "Vigorously pursue reforms towards redressing gender inequalities in secondary schools", - "values": [ - "Right to education", - "Women's rights" - ] - }, - { - "text": "Accelerate its efforts with a view to creating an independent national human rights institution in line with the Paris Principles", - "values": [ - "National Human Rights Institution" - ] - }, - { - "text": "Take measures to guarantee access to health care for all, and strengthen the public sector, which suffers from difficulties in operating as well as from strong territorial inequalities", - "values": [ - "Right to health" - ] - }, - { - "text": "Continue efforts for the appropriate representation of national minorities in public and judicial authorities", - "values": [ - "Minorities" - ] - }, - { - "text": "Make sure that adequate information on family planning and the regulation of fertility is publicly available ", - "values": [ - "Right to health" - ] - }, - { - "text": "Continue to take practical measures to ensure the effective participation of women in economic, social and political fields ", - "values": [ - "Women's rights" - ] - }, - { - "text": "Amend the Civil Registration Act empowering the registers and the Garda (police) to intervene against sham marriages and to amend the criminal law to criminalize the organizers and facilitators of sham marriages", - "values": [ - "Other" - ] - }, - { - "text": "Undertake thorough consultations with persons with disabilities, representatives and labour organisations, and civil society prior to entering any reservation to article 27 of the Convention on the Rights of Persons with Disabilities upon ratification, with respect to reasonable accommodation", - "values": [ - "Civil society", - "Disabilities", - "International instruments", - "Right to housing" - ] - }, - { - "text": "Continue to consider ratification of ICRMW", - "values": [ - "International instruments", - "Labour", - "Migrants" - ] - }, - { - "text": "Put in place a strategy to ensure that the rights of women are upheld by the justice system in line with Vanuatu's obligations under CEDAW.", - "values": [ - "Women's rights" - ] - }, - { - "text": "Adopt an effective strategy to combat domestic violence and ensure that women's shelters are made available to ensure the security of victims of domestic violence ", - "values": [ - "Women's rights" - ] - }, - { - "text": "Ratify all the core international human rights treaties to which the country is not yet a party, including the International Covenant on Civil and Political Rights, the International Covenant on Economic, Social and Cultural Rights , the International Convention on the Elimination of All Forms of Racial Discrimination, the Convention against Torture and Other Cruel, Inhuman or Degrading Treatment or Punishment as well as the International Convention for the Protection of All Persons from Enforced Disappearance", - "values": [ - "CP rights - general", - "ESC rights - general", - "Enforced disappearances", - "International instruments", - "Racial discrimination", - "Torture and other CID treatment" - ] - }, - { - "text": "Ensure that crimes and violations against human rights defenders, journalists and members of the opposition are effectively investigated and prosecuted, and that those responsible are brought to justice ", - "values": [ - "Freedom of association and peaceful assembly", - "Freedom of the press", - "Human rights defenders" - ] - }, - { - "text": "GoB is committed to fully integrating persons with disabilities into society and to provide for their care. The commitment has also included a pledge to increase public awareness of their rights and needs and to ensure that persons with disabilities are treated as equal citizens.", - "values": [ - "Disabilities", - "Human rights education and training" - ] - }, - { - "text": "Use the revision of the Criminal Procedure and Criminal Codes to tackle the question of the death penalty.", - "values": [ - "Death penalty" - ] - }, - { - "text": "Continue to strengthen national legislation to combat domestic violence", - "values": [ - "Rights of the Child", - "Women's rights" - ] - }, - { - "text": "Further address the issue of eliminating violence against women and children", - "values": [ - "Rights of the Child", - "Women's rights" - ] - }, - { - "text": "Provide competencies and budget to the recently established institutions for the defence and guarantee of human rights", - "values": [ - "National Human Rights Institution" - ] - }, - { - "text": "Continue to carry out comprehensive reviews and studies on its existing legislation and level of preparedness, moving towards accession to international human rights instruments as it deems appropriate in the context of its institutional and legal framework, resources and national priorities", - "values": [ - "International instruments" - ] - }, - { - "text": "Repeal provisions in national law, notably sections 56 and 57 of the Offences against Persons Act, which criminalize sexual relations between consenting adults of the same sex ", - "values": [ - "Sexual Orientation and Gender Identity" - ] - }, - { - "text": "Enact legislation to criminalize trafficking of persons, and put in place procedures to deal with those people vulnerable to exploitation and trafficking ", - "values": [ - "Trafficking" - ] - }, - { - "text": "Refrain from the refoulement of asylum-seekers ", - "values": [ - "Asylum-seekers - refugees" - ] - }, - { - "text": "Exert further efforts in addressing the negative impacts of the unilateral coercive measures on the enjoyment of human rights in the Sudan", - "values": [ - "Other" - ] - }, - { - "text": "Address shortcomings in the judicial process, in particular the length of pre-trial detention, humanitarian access to prisoners, financing, independence from the Executive, and corruption", - "values": [ - "Corruption", - "Detention", - "Justice" - ] - }, - { - "text": "Withdraw its reservations to Convention on the Elimination of All Forms of Discrimination against Women and consider signing and ratifying its Optional Protocol", - "values": [ - "International instruments", - "Women's rights" - ] - }, - { - "text": "Pursue the implementation of legislative reforms", - "values": [ - "Justice" - ] - }, - { - "text": "Increase its efforts to eradicate any types of stereotypes against women ", - "values": [ - "Women's rights" - ] - }, - { - "text": "Amend the Proclamation for the Registration and Regulation of Charities and Societies so as to bring it into conformity with international human rights standards ", - "values": [ - "Civil society", - "Freedom of association and peaceful assembly", - "International instruments" - ] - }, - { - "text": "Strengthen its legal and institutional framework by ratifying CAT and its Optional Protocol, CPED and the Rome Statute ", - "values": [ - "Detention", - "Enforced disappearances", - "International instruments", - "Justice", - "Torture and other CID treatment" - ] - }, - { - "text": "Envisage the possibility of adhering to CRPD, which offers an important frame of reference in the area of promotion and protection of the rights of persons with disabilities, without underestimating the cost of implementing the related norms ", - "values": [ - "Disabilities", - "International instruments" - ] - }, - { - "text": "Amend its legislation to guarantee that freedom of expression on the Internet cannot be limited by the arbitrary decision of authorities", - "values": [ - "Freedom of opinion and expression" - ] - }, - { - "text": "Continue its process towards the ratification of ICRMW ", - "values": [ - "International instruments", - "Labour", - "Migrants" - ] - }, - { - "text": "Continue the enlargement and going into depth of the quality of the national health system, if possible, earmarking more financial resources of the total national budget and through the training of specialised personnel", - "values": [ - "Right to health" - ] - }, - { - "text": "Accede to ICCPR-OP2 with the view to abolish the death penalty ", - "values": [ - "Death penalty", - "International instruments" - ] - }, - { - "text": "Partner with States and organizations which have experience working with children affected by armed conflict to develop programmes designed to their need for rehabilitation and integration", - "values": [ - "International humanitarian law", - "Rights of the Child" - ] - }, - { - "text": "Repeal amendments to Act 779 and urgently address the high levels of violence against women and girls ", - "values": [ - "Rights of the Child", - "Women's rights" - ] - }, - { - "text": "Reform the judiciary so it can operate free from direct influence, oversight, pressure or interference of the executive branch of the Government", - "values": [ - "Justice" - ] - }, - { - "text": "Take effective measures to implement the National Strategy for the protection and promotion of children's rights (2008-2013) ", - "values": [ - "Rights of the Child" - ] - }, - { - "text": "Continue taking efforts aimed at combating the unemployment phenomenon", - "values": [ - "Development" - ] - }, - { - "text": "Deepen measures so that unaccompanied children and asylum-seeking family groups are not deprived of liberty", - "values": [ - "Asylum-seekers - refugees", - "Detention", - "Rights of the Child" - ] - }, - { - "text": "Ensure that any crimes against minority and vulnerable individuals and communities are effectively and promptly investigated, and address any alleged discriminatory motive behind these crimes", - "values": [ - "Minorities", - "Racial discrimination" - ] - }, - { - "text": "Provide women with equal access to education and employment opportunities, and give priority attention to women-led households in the Government's poverty-alleviation and food security programs", - "values": [ - "Labour", - "Poverty", - "Right to education", - "Right to food", - "Women's rights" - ] - }, - { - "text": "Continue the reduction of maternal and infant mortality rates, and continue with the national plan for the development of children and youth", - "values": [ - "Right to health", - "Rights of the Child", - "Women's rights" - ] - }, - { - "text": "Ensure that economic, social and cultural rights be enjoyed on an equal footing in national legislation", - "values": [ - "ESC rights - general" - ] - }, - { - "text": "Continue efforts to strengthen the prevention of and fight against female genital mutilation", - "values": [ - "Rights of the Child", - "Torture and other CID treatment", - "Women's rights" - ] - }, - { - "text": "Provide all those arrested with early access to legal representation", - "values": [ - "Detention" - ] - }, - { - "text": "Fully implement the Law 6-2006 on the prevention and punishment of torture, immediately investigate complaints of torture and ill-treatment, and initiate appropriate penal procedures against those responsible ", - "values": [ - "Torture and other CID treatment" - ] - }, - { - "text": "Step up efforts to diversify its economy, including in the areas of agriculture, fisheries, manufacturing and construction", - "values": [ - "Development" - ] - }, - { - "text": "Ensure the immediate and unconditional release of all children recruited and used by armed groups, in particular through the immediate issuance of clear orders on all levels, and to take all measures required to prevent any future recruitment, and to ensure that child victims of armed conflict have access to adequate care, counselling and assistance with recovery and reintegration into their communities", - "values": [ - "International humanitarian law", - "Rights of the Child" - ] - }, - { - "text": "Develop programmes and activities concerning training and capacity building of employees and others of vocational workers who work with children in the field of child sexual exploitation for commercial purposes", - "values": [ - "Labour", - "Rights of the Child" - ] - }, - { - "text": "Strengthen efforts to improve education, training and capacity-building in human rights fields", - "values": [ - "Human rights education and training" - ] - }, - { - "text": "Guarantee freedom of religion and belief to all groups and minorities, including in relevant legislation, without discrimination", - "values": [ - "Freedom of religion and belief", - "Minorities" - ] - }, - { - "text": "Continue to fully cooperate with the Independent Expert on the situation of human rights in Sudan, including with respect to the implementation of recommendations ", - "values": [ - "Special procedures" - ] - }, - { - "text": "Amend the current Act on the Legal Recognition of the Gender of Transsexuals by abolishing the need for sterilization or infertility as a requirement for a person\u2019s legal recognition of their gender identity", - "values": [ - "Sexual Orientation and Gender Identity" - ] - }, - { - "text": "Consolidate and enhance its progress achieved for the promotion of civil and political rights, notably in the areas of freedom of expression, freedom of the media and the dissemination of a human rights culture", - "values": [ - "CP rights - general", - "Freedom of opinion and expression", - "Freedom of the press", - "Human rights education and training" - ] - }, - { - "text": "Expedite the creation of an independent national human rights institution in line with the Paris Principles", - "values": [ - "National Human Rights Institution" - ] - }, - { - "text": "Continue its positive measures for the protection of the dignity of the individual, freedom of thought, conscience and religion ", - "values": [ - "Freedom of opinion and expression", - "Freedom of religion and belief" - ] - }, - { - "text": "Expedite action on the ratification process of the Optional Protocol to the Convention against Torture", - "values": [ - "Detention", - "International instruments", - "Torture and other CID treatment" - ] - }, - { - "text": "Continue, with the support of the international community, to do everything to protect its population against all forms of human rights violations committed by illegal armed groups.", - "values": [ - "International humanitarian law" - ] - }, - { - "text": "Strengthen the institutional capacities to provide support for asylum seekers and migrants in full respect of their human rights", - "values": [ - "Asylum-seekers - refugees", - "Migrants" - ] - }, - { - "text": "Continue to prioritize eradicating poverty and further improving people's living standards ", - "values": [ - "Poverty" - ] - }, - { - "text": "Establish a legal framework for the comprehensive protection of the rights of migrants, in particular the rights of migrant children or children of migrant parents ", - "values": [ - "Migrants", - "Rights of the Child" - ] - }, - { - "text": "Incorporate strategies for human rights education and training, focused in particular on the armed forces", - "values": [ - "Human rights education and training" - ] - }, - { - "text": "Strengthen its preventative measures in the areas of rape and domestic violence, looking more deeply into the statistical data to better understand the causes, developing effective policies and targeted prevention campaigns, education and awareness-raising among young people and adopting measures that are geared to changing the models and patterns that result in stereotyping of women ", - "values": [ - "Human rights education and training", - "Rights of the Child", - "Women's rights" - ] - }, - { - "text": "Elaborate a plan and create national mechanisms to combat violence against women in Darfur ", - "values": [ - "Women's rights" - ] - }, - { - "text": "Fight impunity ", - "values": [ - "Impunity" - ] - }, - { - "text": "Adopt measures to combat violence and discrimination against women and indigenous communities", - "values": [ - "Indigenous peoples", - "Racial discrimination", - "Women's rights" - ] - }, - { - "text": "Pursue the reforms in the penitentiary system with a view to ending overpopulation in prisons ", - "values": [ - "Detention" - ] - }, - { - "text": "Strengthen the mechanism to fight against poverty, especially encouraging programmes aimed at child malnutrition", - "values": [ - "Poverty", - "Right to food", - "Rights of the Child" - ] - }, - { - "text": "Review legislation on abortion, as advocated by various treaty bodies, to which Malta is party, Consider creating exceptions to the general prohibition of abortion, including for medical reasons or in cases of pregnancy resulting from rape or incest, Remove repressive provisions for women who have recourse to abortion", - "values": [ - "Treaty bodies", - "Women's rights" - ] - }, - { - "text": "Continue to contribute to the strengthening of the system of United Nations human rights on the basis of dialogue, non-politicization and cooperation", - "values": [ - "Special procedures", - "Treaty bodies", - "UPR process" - ] - }, - { - "text": "Ratify OP-CAT and take necessary measures to ensure its full implementation ", - "values": [ - "Detention", - "International instruments", - "Torture and other CID treatment" - ] - }, - { - "text": "Intensify efforts to further raise public awareness and education on human rights and further strengthen capacity-building for human rights institutions and law enforcement mechanisms ", - "values": [ - "Human rights education and training" - ] - }, - { - "text": "Reinforce the National Committee for the Protection of the Child to enhance its ability to protect the rights of the child, especially street children", - "values": [ - "Rights of the Child" - ] - }, - { - "text": "Strengthen institutional guarantees for the legitimate rights and interests of news agencies and journalists", - "values": [ - "Freedom of the press" - ] - }, - { - "text": "Allow the Afghanistan Independent Human Rights Commission to safely operate and carry out its mandate in an independent and effective manner ", - "values": [ - "National Human Rights Institution" - ] - }, - { - "text": "Consider taking legislative, policy and educational measures, including awareness-raising measures, to overcome the stigmatisation of the poorest children, including girls and children with disabilities, and to ensure that those children have equal access to high quality education", - "values": [ - "Disabilities", - "Poverty", - "Right to education", - "Rights of the Child", - "Women's rights" - ] - }, - { - "text": "With regard to Recommendations 70.23 to 70.35 all of which related to the abolition of the death penalty, the delegation emphasized that public opinion in Guyana strongly favoured the retention of the death penalty. Guyana noted these recommendations and voluntarily committed to continue to consider and consult on the abolition of the death penalty and to report to the Human Rights Council in two years. With this in mind, Guyana has tabled an amendment to the Criminal Law (Offences) Act which provides for varied sentences for different categories of murder including life imprisonment and lesser sentences of imprisonment, as well as access to parole. This bill will be debated in the National Assembly in October 2010.", - "values": [ - "Death penalty" - ] - }, - { - "text": "Step up efforts to improve regular cooperation with treaty bodies, lift reservations to CEDAW and consider ratifying outstanding human rights instruments, including OP-CAT, OP-CRC-AC and ICCPR-OP2 ", - "values": [ - "Death penalty", - "International instruments", - "Rights of the Child", - "Torture and other CID treatment", - "Treaty bodies", - "Women's rights" - ] - }, - { - "text": "Develop a national data collection system in the area of the fight against child poverty", - "values": [ - "Poverty", - "Rights of the Child" - ] - }, - { - "text": "Consult NGOs in the follow-up of the UPR outcome, in order to achieve the practical application and implementation of the recommendations", - "values": [ - "Civil society", - "UPR process" - ] - }, - { - "text": "Develop and implement a National Action Plan for Human Rights to further ensure systematic and comprehensive approach for the promotion and protection of human rights, with the full engagement of the civil society", - "values": [ - "Civil society" - ] - }, - { - "text": "Work towards the compliance of pretrial detention (remand) procedures, which includes children, with international law standards and national regulations", - "values": [ - "Detention", - "Rights of the Child" - ] - }, - { - "text": "Ensure that all allegation of human rights violations during and after the February - March 2011 protests by the security forces are independently, promptly and thoroughly investigated, bringing perpetrators to justice and providing victims with due redress and rehabilitation ", - "values": [ - "Human rights violations by state agents" - ] - }, - { - "text": "Adopt a comprehensive national work-plan to combat racial discrimination ", - "values": [ - "Racial discrimination" - ] - }, - { - "text": "Ratify OP-CAT ", - "values": [ - "Detention", - "International instruments", - "Torture and other CID treatment" - ] - }, - { - "text": "Review its legislation to ensure that any limitations on the right to freedom of expression, both online and off-line, are in full compliance with article 19 of ICCPR, in particular by providing for a defence of truth in all defamation cases ", - "values": [ - "Freedom of opinion and expression", - "International instruments" - ] - }, - { - "text": "Ensure an equitable distribution of resources between rural and urban areas", - "values": [ - "Other" - ] - }, - { - "text": "Assign the human, technical and financial resources necessary for the proper functioning of the Office of the Commissioner for Children and for the sexual and reproductive health care of women and girls", - "values": [ - "Right to health", - "Rights of the Child", - "Women's rights" - ] - }, - { - "text": "Implement legal reforms and measures necessary to eliminate all forms of discrimination against women, particularly regarding the age of marriage and the possibility of keeping the maiden's name", - "values": [ - "Women's rights" - ] - }, - { - "text": "Take steps to bring the criminal and criminal procedure systems in line with international standards, including through the adoption of a penal code that clearly defines the relevant offences and corresponding penalties", - "values": [ - "Justice" - ] - }, - { - "text": "Increase funding to provide human rights advocates with adequate protection ", - "values": [ - "Human rights defenders" - ] - }, - { - "text": "Reform legislation to remove the requirement of infertility or sterilization as a condition for the legal recognition of gender reassignment", - "values": [ - "Sexual Orientation and Gender Identity" - ] - }, - { - "text": "Pay particular attention to the process of judicial-legal reforms by strengthening the legislative framework", - "values": [ - "Justice" - ] - }, - { - "text": "Modify domestic law with a view to abolishing the mandatory death penalty and, during this process, establish a general moratorium on already existing death sentences", - "values": [ - "Death penalty" - ] - }, - { - "text": "Step up efforts for the protection of children subject to recruitment into armed forces, including through the adoption of adequate legislation on the matter", - "values": [ - "Indigenous peoples", - "Rights of the Child" - ] - }, - { - "text": "Reinforce safeguards for judicial independence and for the objectivity and impartiality of prosecutors ", - "values": [ - "Justice" - ] - }, - { - "text": "Conduct national awareness campaigns to eradicate the discrimination against single mothers, in law and in practice", - "values": [ - "Women's rights" - ] - }, - { - "text": "Revise the Public Gathering Law (32/2006), so that peaceful demonstrations can be held as established by the International Covenant on Civil and Political Rights ", - "values": [ - "Freedom of association and peaceful assembly", - "International instruments" - ] - }, - { - "text": "Adopt a complex strategy to combat the poverty in the rural regions and implement measures to expand the access of the population in those regions to drinking water and sanitation", - "values": [ - "Poverty", - "Right to water and sanitation" - ] - }, - { - "text": "Take effective measures to guarantee the human rights and fundamental freedoms of the people of Fiji", - "values": [ - "General" - ] - }, - { - "text": "Continue its active engagement with the human rights mechanisms of UN for the protection and promotion of human rights", - "values": [ - "Special procedures", - "Treaty bodies", - "UPR process" - ] - }, - { - "text": "Withdraw legislation that criminalizes homosexuality between consenting adults and to prosecute violence directed against persons because of their sexual orientation", - "values": [ - "Sexual Orientation and Gender Identity" - ] - }, - { - "text": "Take the necessary steps to implement the "Agenda for Prosperity" in an effective and timely manner", - "values": [ - "Development", - "Poverty" - ] - }, - { - "text": "Continue to carry out the policy aimed at improving the judicial system, reforming law enforcement bodies and decreasing the level of crime and corruption", - "values": [ - "Corruption", - "Justice" - ] - }, - { - "text": "Continue its efforts in the health sector to implement the 2020 Government vision, in order to reach the goal of free health care for all Malawians ", - "values": [ - "Right to health" - ] - }, - { - "text": "Implement the Convention on Rights of Persons with Disabilities to stamp out social stigma, fears and misconceptions affecting persons with disabilities, especially the most vulnerable ones, especially the children and the women", - "values": [ - "Disabilities", - "International instruments", - "Rights of the Child", - "Women's rights" - ] - }, - { - "text": "Equalize the age of consent for opposite and same-sex conduct, and adopt legislative and other measures to explicitly prohibit discrimination on the basis of sexual orientation and gender identity ", - "values": [ - "Sexual Orientation and Gender Identity" - ] - }, - { - "text": "Take necessary measures to ensure that women, girls and boys are prevented from being trafficked, sexually exploited or sold for prostitution ", - "values": [ - "Rights of the Child", - "Trafficking", - "Women's rights" - ] - }, - { - "text": "Provide constitutional and legal protection for children against all forms of violence at home and at school", - "values": [ - "Rights of the Child", - "Torture and other CID treatment" - ] - }, - { - "text": "Strengthen actions aimed at ending child, early and forced marriage", - "values": [ - "Rights of the Child", - "Women's rights" - ] - }, - { - "text": "Take further action regarding oversight of and training for security forces in human rights, including to address violence related to hatred against foreigners, and make sure security forces carrying out law enforcement duties comply with United Nations standards", - "values": [ - "Human rights education and training" - ] - }, - { - "text": "Ensure that suspected abusive employers of migrant workers can be duly prosecuted", - "values": [ - "Labour", - "Migrants" - ] - }, - { - "text": "Ensure implementation of the Gender Budgeting Scheme in all states and union territories", - "values": [ - "Women's rights" - ] - }, - { - "text": "Improve the system of the separation of constitutional powers and make sure that each power respects the mandate of the others", - "values": [ - "Justice" - ] - }, - { - "text": "Continue in its efforts to prevent, punish and eradicate forced labour, labour exploitation, including the issue of trafficking in persons, particularly for women and children who are involved in cases of sex tourism and pornography", - "values": [ - "Labour", - "Rights of the Child", - "Trafficking", - "Women's rights" - ] - }, - { - "text": "Continue the existing efforts in order to provide better health services to all", - "values": [ - "Right to health" - ] - }, - { - "text": "Intensify efforts to combat violence against women and to increase their participation in the labour market.", - "values": [ - "Labour", - "Women's rights" - ] - }, - { - "text": "Improve the work of the National Human Rights Commission with a view to conform it to the Paris Principles, and to reinforce its legal framework to better fight against discrimination", - "values": [ - "National Human Rights Institution" - ] - }, - { - "text": "Establish a national institution for the protection of human rights in conformity with the Paris Principles", - "values": [ - "National Human Rights Institution" - ] - }, - { - "text": "Continue to strengthen its cooperation with the special procedures of the Human Rights Council by responding positively to the pending visit requests", - "values": [ - "Special procedures" - ] - }, - { - "text": "Continue promoting its effective social policies to increase the standard of living of its people, particularly in the neediest areas", - "values": [ - "ESC rights - general" - ] - }, - { - "text": "Investigate all complaints made against the Police Force, including alleged unprofessional conduct, beatings and assaults, and to introduce electronic recording of interviews ", - "values": [ - "Human rights violations by state agents", - "Torture and other CID treatment" - ] - }, - { - "text": "Amend the Civil Code and Family Registration Law in accordance with Japan's international human rights obligations and in this regard make particular efforts to address the concluding observations of CEDAW", - "values": [ - "Treaty bodies", - "Women's rights" - ] - }, - { - "text": "Take urgent measures to establish a formal moratorium on executions of persons sentenced to death", - "values": [ - "Death penalty" - ] - }, - { - "text": "Promote the development of third generation rights, in particular the value of international solidarity ", - "values": [ - "Other" - ] - }, - { - "text": "Consider taking measures to implement its international commitments pertaining to the rights of persons with disabilities and, in particular, take appropriate measures to address the issue of accessibility ", - "values": [ - "Disabilities" - ] - }, - { - "text": "Continue its efforts for the establishment of the national human rights institution", - "values": [ - "National Human Rights Institution" - ] - }, - { - "text": "Continue to promote gender equality and the involvement of women in public services", - "values": [ - "Women's rights" - ] - }, - { - "text": "Continue the search for appropriate solutions to the challenges outlined in the report and with which citizens are faced with regard to the full enjoyment of basic political, economic, social and cultural rights", - "values": [ - "CP rights - general", - "ESC rights - general" - ] - }, - { - "text": "Provide access to drinking water for each Sudanese ", - "values": [ - "Right to water and sanitation" - ] - }, - { - "text": "Take immediate measures to end the systematic, widespread and gross human rights violations described in the report of the COI - including violations of the freedoms of thought, expression and religion, multiple forms of discrimination, violations of the freedom of movement and residence, violations of the right to food, arbitrary detention, torture and executions, and abductions and enforced disappearances from other countries", - "values": [ - "Justice" - ] - }, - { - "text": "Create the proper legal framework that gives the Special Prosecutor for Crimes Against Journalists sufficient jurisdiction to investigate and indict perpetrators with greater independence", - "values": [ - "Freedom of the press", - "Justice" - ] - }, - { - "text": "Continue the efforts to tackle unemployment in urban areas ", - "values": [ - "Labour" - ] - }, - { - "text": "Ensure that minors have access to education in a safe environment in line with its obligations under the Convention on the Rights of the Child and other international human rights instruments", - "values": [ - "International instruments", - "Right to education", - "Rights of the Child" - ] - }, - { - "text": "Adopt a law that combats discrimination comprehensively and guarantees effective protection and equal opportunities for all people", - "values": [ - "Other" - ] - }, - { - "text": "Provide the necessary resources to address the extreme poverty and marginalization faced by Roma", - "values": [ - "Minorities", - "Poverty" - ] - }, - { - "text": "Establish a National Compensation Tribunal, as recommended in the "Bringing Them Home" report, to provide compensation to Aboriginal and Torres Strait Islander people that are negatively affected by the assimilation policy, particularly as it applies to children unfairly removed from their families and the parents of those children ", - "values": [ - "Indigenous peoples", - "Justice" - ] - }, - { - "text": "Step up the pace of communication with treaty bodies, further promote women's rights, the right to health, particularly in rural areas ", - "values": [ - "Right to health", - "Treaty bodies", - "Women's rights" - ] - }, - { - "text": "May develop a programme aimed at increasing the legal competence of the employees of correctional institutions so that they can effectively address issues pertaining to the early release of convicted persons", - "values": [ - "Detention" - ] - }, - { - "text": "Commute all death sentences into prison sentences ", - "values": [ - "Death penalty" - ] - }, - { - "text": "Ratify as soon as possible the International Convention on the Protection of All Persons from Enforced Disappearance.", - "values": [ - "Enforced disappearances", - "International instruments" - ] - }, - { - "text": "Take necessary steps to ratify or accede to major international human rights instruments which are still outstanding ", - "values": [ - "International instruments" - ] - }, - { - "text": "Incorporate the provisions of those instruments (ICCPR, ICESCR and CAT as well as to the Optional Protocol to CEDAW) into domestic law ", - "values": [ - "CP rights - general", - "ESC rights - general", - "International instruments", - "Torture and other CID treatment", - "Women's rights" - ] - }, - { - "text": "Continue its efforts in fighting discrimination based on ethnicity, gender and sexual orientation", - "values": [ - "Racial discrimination", - "Sexual Orientation and Gender Identity" - ] - }, - { - "text": "Ensure that the Criminal Code is brought into line with the Second Optional Protocol of the ICCPR in respect of the abolition of the death penalty", - "values": [ - "Death penalty", - "International instruments" - ] - }, - { - "text": "Fully align its national legislation with the Rome Statute of the International Criminal Court (ICC) and the Kampala Amendments, including by incorporating provisions to cooperate promptly and fully with the ICC and to investigate and prosecute genocide, crimes against humanity and war crimes effectively before its national courts ", - "values": [ - "International instruments", - "Justice" - ] - }, - { - "text": "Consider ratifying the Convention on the Rights of Persons with Disabilities and its Optional Protocol ", - "values": [ - "Disabilities", - "International instruments" - ] - }, - { - "text": "Adopt the draft law on an independent national human rights institution in accordance with the Paris Principles, as soon as possible", - "values": [ - "National Human Rights Institution" - ] - }, - { - "text": "The United States is fully committed to ensuring that the individuals it detains in any armed conflict are treated humanely in all circumstances, consistent with applicable United States treaty obligations, its domestic law and policy", - "values": [ - "Detention", - "International humanitarian law" - ] - }, - { - "text": "Ensure the full implementation of all recommendations from the Bahrain Independent Commission of Inquiry", - "values": [ - "Justice" - ] - }, - { - "text": "Carry on relentlessly with more effective measures in further bolstering the implementation of sharia law in the country ", - "values": [ - "Justice" - ] - }, - { - "text": "Improve conditions in all prisons and detention centres to comply with its international standards", - "values": [ - "Detention" - ] - }, - { - "text": "Continue strengthening its efforts to facilitate the participation of women in political and public affairs", - "values": [ - "Women's rights" - ] - }, - { - "text": "Promote awareness-raising campaigns and human rights education programmes particularly directed to law enforcement officials and educators that address the problematic of sexual violence against women ", - "values": [ - "Human rights education and training", - "Women's rights" - ] - }, - { - "text": "Consider an early ratification of the third Optional Protocol to the CRC on a communication procedure ", - "values": [ - "International instruments", - "Rights of the Child" - ] - }, - { - "text": "Continue to take more measures to promote gender equality and protect women and children's rights in practice ", - "values": [ - "Rights of the Child", - "Women's rights" - ] - }, - { - "text": "Promptly ratify the International Covenant on Economic, Social and Cultural Rights", - "values": [ - "ESC rights - general", - "International instruments" - ] - }, - { - "text": "The Republic of Liberia is committed to protecting and promoting the rights of vulnerable groups including, but not limited to, women, children, the elderly, refugees, persons with disabilities, persons living with HIV/AIDS, and LGBTI persons. The Agenda for Transformation and the National Human Rights Action Plan both make provisions for the protection of vulnerable groups as an area of national priority. The Government has also established and supported a number of ministries and agencies dedicated to addressing the interests of vulnerable groups, including the Ministry of Gender, Children, and Social Protection, the Liberian Refugee, Repatriation, and Resettlement Commission (LRRRC), the National Commission on Disabilities, and the National AIDS Commission (NAC).", - "values": [ - "General" - ] - }, - { - "text": "Explore options to accede to the Rome Statute of the ICC", - "values": [ - "International instruments", - "Justice" - ] - }, - { - "text": "Ratify the 1954 Convention relating to the Status of Stateless Persons", - "values": [ - "International instruments", - "Statelessness and the right to nationality" - ] - }, - { - "text": "Continue to combat trafficking in human beings and smuggling of migrants", - "values": [ - "Migrants", - "Trafficking" - ] - }, - { - "text": "Adopt a national policy on children with disabilities and ensure access to education and health services for all children with disabilities", - "values": [ - "Disabilities", - "Right to education", - "Right to health", - "Rights of the Child" - ] - }, - { - "text": "Continue to pursue its commitment to dialogue on all issues and with all States, on the basis of mutual respect, sovereign equality, self-determination and recognition of the right of every people to choose their own political, economic and social system ", - "values": [ - "Other" - ] - }, - { - "text": "Facilitate the access of women to sexual and reproductive health services ", - "values": [ - "Right to health", - "Women's rights" - ] - }, - { - "text": "Strengthen its safeguards against torture, including through the improvement of conditions in prisons and detention facilities and the establishment of a complaint mechanism for victims of torture ", - "values": [ - "Detention", - "Torture and other CID treatment" - ] - }, - { - "text": "Continue to implement measures to give free legal assistance in case of gender-based violence", - "values": [ - "Women's rights" - ] - }, - { - "text": "Adopt special legislation to prevent and combat violence against women and girls and to prosecute and punish the perpetrators ", - "values": [ - "Rights of the Child", - "Women's rights" - ] - }, - { - "text": "Take steps to organize education and awareness campaigns, training programs and educational facilities to change behaviour and public attitudes, towards gender equality and mainstreaming, as well as to strengthen women's and children's rights in the country ", - "values": [ - "Human rights education and training", - "Rights of the Child", - "Women's rights" - ] - }, - { - "text": "Encourage freedom of expression and the press, including by amending the penal code to remove all criminal penalties for alleged libel offences", - "values": [ - "Freedom of opinion and expression", - "Freedom of the press" - ] - }, - { - "text": "Ratify the ICCPR and CAT ", - "values": [ - "CP rights - general", - "International instruments", - "Torture and other CID treatment" - ] - }, - { - "text": "Engage members of the international community and international organizations for capacity-building support and technical assistance, particularly in the areas of economy, employment opportunity, human resources development and poverty alleviation ", - "values": [ - "Development", - "Poverty", - "Technical assistance and cooperation" - ] - }, - { - "text": "Investigate all cases of human rights violations and abuses and prosecute those responsible without exceptions and immunity", - "values": [ - "Impunity" - ] - }, - { - "text": "Continue efforts in promoting and nurturing a vibrant civil society.", - "values": [ - "Civil society" - ] - }, - { - "text": "To the government of the Republic of Srpska effectively investigate and prosecute violations against human rights defenders", - "values": [ - "Human rights defenders" - ] - }, - { - "text": "Increase efforts to promote human rights culture in society", - "values": [ - "Human rights education and training" - ] - }, - { - "text": "Strengthen inter-ministerial coordination in law enforcement activities of agencies and implementation of measures to protect human rights and fundamental freedoms.", - "values": [ - "General" - ] - }, - { - "text": "Continue to improve the social security system", - "values": [ - "ESC rights - general" - ] - }, - { - "text": "Redouble efforts to combat forced labour and sexual trafficking", - "values": [ - "Labour", - "Rights of the Child", - "Trafficking", - "Women's rights" - ] - }, - { - "text": "Accede to other fundamental international instruments, particularly the International Convention on the Elimination of All Forms of Racial Discrimination and the Convention against Torture and Other Cruel, Inhuman or Degrading Treatment or Punishment ", - "values": [ - "International instruments", - "Racial discrimination", - "Torture and other CID treatment" - ] - }, - { - "text": "Continue its efforts to guarantee the rights of education to children with disabilities in order to facilitate their integration in the society", - "values": [ - "Disabilities", - "Right to education", - "Rights of the Child" - ] - }, - { - "text": "Guarantee freedom of thought, conscience and religion to all individuals by ensuring the basic rights to freedom of assembly and association", - "values": [ - "Freedom of association and peaceful assembly", - "Freedom of religion and belief" - ] - }, - { - "text": "Follow up on the repeated calls to ratify the Convention on the Protection of the Rights of All Migrant Workers and Members of Their Families ", - "values": [ - "International instruments", - "Labour", - "Migrants" - ] - }, - { - "text": "Repeal provisions of the legislation that can be used to criminalize the right to freedom of expression ", - "values": [ - "Freedom of opinion and expression" - ] - }, - { - "text": "Take steps to guarantee the enjoyment of freedom of expression and freedom to demonstrate ", - "values": [ - "Freedom of association and peaceful assembly", - "Freedom of opinion and expression" - ] - }, - { - "text": "Conduct, jointly with the Special Procedures of the Human Rights Council, comprehensive and transparent investigations in respect to reported involvement of Czech authorities in secret programmes of CIA on arbitrary detention and secret displacement/transfer of suspects", - "values": [ - "Counter-terrorism", - "Detention", - "Special procedures" - ] - }, - { - "text": "Intensify its efforts to protect individuals from racism, xenophobia and hate crimes by encouraging reporting and ensuring proper recording of hate crimes as well as ensuring that bias movements are fully taken into account in the investigation, prosecution and sentencing of offences. All victims of hate crimes must have access to justice", - "values": [ - "Racial discrimination" - ] - }, - { - "text": "Improve the health services", - "values": [ - "Right to health" - ] - }, - { - "text": "Tunisia's commitment to objectively and constructively contribute, at the level of examination and follow-up to its report, to promoting the UPR mechanism's modalities and objectives, as contained in General Assembly resolution 60/251, which includes "ensuring universality, objectivity and non-selectivity in the consideration of human rights issues" and making sure that "the promotion and protection of human rights [are] based on the principles of cooperation and genuine dialogue". ", - "values": [ - "UPR process" - ] - }, - { - "text": "Improve the mechanisms for the reception of refugees and asylum seekers, ensuring that they are offered psychological and legal assistance, help with languages as well as the opportunity to access employment which corresponds to their professional skills ", - "values": [ - "Asylum-seekers - refugees" - ] - }, - { - "text": "Expeditiously open crossing points and checkpoints.", - "values": [ - "Freedom of movement" - ] - }, - { - "text": "Enhance efforts to address Islamophobia, racial discrimination and intolerance including towards Roma, religious minorities and immigrants, as well as other related intolerance", - "values": [ - "Freedom of religion and belief", - "Migrants", - "Minorities", - "Racial discrimination" - ] - }, - { - "text": "HIV and AIDS poses a threat to Lesotho's development thus Lesotho will reduce incidence of HIV by at least 15 percent and increase coverage for anti-retroviral treatment (ART) to at least 80 percent of the population by 2017.", - "values": [ - "HIV - Aids" - ] - }, - { - "text": "End all Israeli arbitrary practices such as administrative detention of Palestinians, forced exile, and sanctions", - "values": [ - "Detention" - ] - }, - { - "text": "Allocate more funds for the promotion and protection of the rights of persons with disabilities, particularly in the areas of employment, education and housing, and provide these persons with the necessary training to improve their employability and independence ", - "values": [ - "Disabilities", - "Labour", - "Right to education", - "Right to housing" - ] - }, - { - "text": "Continue efforts to ensure the proper functioning and full independence of the Commission on Human Rights, in accordance with the Paris Principles", - "values": [ - "National Human Rights Institution" - ] - }, - { - "text": "Continue promoting the participation and empowerment of women in the decision-making process and combat discrimination against their role in the family and society", - "values": [ - "Women's rights" - ] - }, - { - "text": "Ensure adequate funding and manpower for the Human Rights Commission of Sri Lanka", - "values": [ - "National Human Rights Institution" - ] - }, - { - "text": "Guarantee its continued compliance with its domestic and international obligations on the legal prohibition of the death penalty ", - "values": [ - "Death penalty" - ] - }, - { - "text": "Consider ratifying the Optional Protocol to CAT as soon as possible.", - "values": [ - "Detention", - "International instruments", - "Torture and other CID treatment" - ] - }, - { - "text": "Take steps to ensure that all child labour is ended", - "values": [ - "Labour", - "Rights of the Child" - ] - }, - { - "text": "Increase efforts to prevent any abuse against people in police custody and improve the living conditions of detainees", - "values": [ - "Detention", - "Human rights violations by state agents" - ] - }, - { - "text": "Extend standing invitations to the Special Rapporteur on the situation of human rights defenders and other United Nations Special Rapporteurs on human rights issues, in particular those who have made visit requests ", - "values": [ - "Human rights defenders", - "Special procedures" - ] - }, - { - "text": "Continue strengthening the partnership between the Government and the Maori to reach a just, fair and sustainable settlement to historical claims made in the framework of the Treaty of Waitangi ", - "values": [ - "Indigenous peoples" - ] - }, - { - "text": "Continue efforts to develop legal skills through training of judges", - "values": [ - "Justice" - ] - }, - { - "text": "Carry out independent investigations into possible cases of torture as well as reprisals related to cooperation with international human rights bodies", - "values": [ - "Torture and other CID treatment", - "Treaty bodies" - ] - }, - { - "text": "Make effective the Paris Principles, notably those relating to the establishment of a national human rights commission ", - "values": [ - "National Human Rights Institution" - ] - }, - { - "text": "Amend the law on mass media to ensure it does not unduly restrict freedom of expression, in line with recommendations made by the OSCE Representative on Freedom of the Media", - "values": [ - "Freedom of opinion and expression", - "Freedom of the press" - ] - }, - { - "text": "Take all the necessary steps to ensure gender equality and equity for women in all spheres", - "values": [ - "Women's rights" - ] - }, - { - "text": "Ratify the International Convention for the Protection of All Persons from Enforced Disappearance and integrate it into national norms", - "values": [ - "Enforced disappearances", - "International instruments" - ] - }, - { - "text": "Consider taking on board the recommendation of the Special Rapporteur on adequate housing, specifically to extend and enhance the national homelessness programme and the Residential Rehabilitation Assistance Programme", - "values": [ - "Right to housing", - "Special procedures" - ] - }, - { - "text": "Take all necessary steps to ensure the protection of human rights defenders, including journalists, against any violence, retaliation, or adverse discrimination as a consequence of their legitimate exercise of the rights according to the Declaration on Human Rights Defenders", - "values": [ - "Freedom of the press", - "Human rights defenders", - "International instruments" - ] - }, - { - "text": "Ensure high transparency and oversight by civil society over detention conditions and in the treatment of migrants and asylum seekers", - "values": [ - "Asylum-seekers - refugees", - "Detention", - "Migrants" - ] - }, - { - "text": "Address shortcomings identified by international election monitors and ensure that the election and campaigning ahead of them, including the access of candidates to the media, are transparent, free and fair ", - "values": [ - "Elections" - ] - }, - { - "text": "Introduce a law on freedom of information in compliance with international standards", - "values": [ - "Freedom of opinion and expression" - ] - }, - { - "text": "Continue to strengthen its efforts to safeguard and advance the rights of its children ", - "values": [ - "Rights of the Child" - ] - }, - { - "text": "Take appropriate steps, with the help of the international community, to ensure for the Liberian people an adequate standard of living, and the rights to food, health and education", - "values": [ - "Right to education", - "Right to food", - "Right to health" - ] - }, - { - "text": "Take the necessary measures to eliminate female genital mutilation, early marriage and the worst forms of child labour", - "values": [ - "Rights of the Child", - "Torture and other CID treatment", - "Women's rights" - ] - }, - { - "text": "Continue efforts to combat violence against women and to eradicate negative traditions.", - "values": [ - "Women's rights" - ] - }, - { - "text": "Continue to strengthen its successful educational policy, with a view to achieving full school inclusion for all sectors of the country and, in this way, advance towards achieving the greatest social welfare of its people ", - "values": [ - "Right to education" - ] - }, - { - "text": "Agree to the visit of the Special Rapporteur on the promotion and protection of the right to freedom of opinion and expression", - "values": [ - "Freedom of opinion and expression", - "Special procedures" - ] - }, - { - "text": "Take concrete steps to ratify the Convention on the Rights of Persons with Disabilities and effectively implement policies and programmes to ensure the full enjoyment of all related rights", - "values": [ - "Disabilities", - "International instruments" - ] - }, - { - "text": "Continue its positive efforts aimed at raising the status of women in the society, protecting maternity and supporting the family ", - "values": [ - "Women's rights" - ] - }, - { - "text": "Undertake further efforts to eliminate gender discrimination in the labour market and guarantee equal pay for equal work", - "values": [ - "Women's rights" - ] - }, - { - "text": "Consider fostering policies on combating child trafficking and define the crimes of the sale of children and child pornography ", - "values": [ - "Rights of the Child", - "Trafficking" - ] - }, - { - "text": "Ratify the International Convention for the Protection of All Persons from Enforced Disappearance (CED), the Rome Statute of the International Criminal Court (ICC), sign and ratify OP-CAT and establish a national independent mechanism to inspect detention centres ", - "values": [ - "Detention", - "Enforced disappearances", - "International instruments", - "Justice", - "Torture and other CID treatment" - ] - }, - { - "text": "Take further measures to increase the capacity of penitentiary institutions and better promote the prisoners' rights, among others, the right to food and the right to safe water and sanitation ", - "values": [ - "Detention", - "Right to water and sanitation" - ] - }, - { - "text": "Strengthen the national mechanisms for the advancement of women so that a gender perspective is reflected, in a cross-cutting manner, as a priority issue in policies and sectoral programmes", - "values": [ - "Women's rights" - ] - }, - { - "text": "Make adequate labour conditions and decent work an important criterion for granting building contracts and permits and actively improve the enforcement of labour laws, including by applying penalties to and blacklisting contractors who violate the relevant laws and decrees ", - "values": [ - "Labour" - ] - }, - { - "text": "Consider strengthening programmes to fight and prevent HIV-AIDS, with special attention to women and children.", - "values": [ - "HIV - Aids", - "Rights of the Child", - "Women's rights" - ] - }, - { - "text": "Increase efforts to prevent and combat all forms of abuse of children and adopt preventive measures and provide protection and services for their recover", - "values": [ - "Rights of the Child" - ] - }, - { - "text": "Ratify the UNESCO Convention against discrimination in Education", - "values": [ - "International instruments", - "Right to education" - ] - }, - { - "text": "Strengthen the national framework to combat human trafficking and ensure adequate support and protection to victims of trafficking", - "values": [ - "Trafficking" - ] - }, - { - "text": "Put an end to indiscriminate attacks on civilians, ensure the protection of hospitals and medical staff and allow the passage of humanitarian relief", - "values": [ - "International humanitarian law" - ] - }, - { - "text": "Incorporate in the Zimbabwe's Draft National Policy on Domestic Water Supply and Sanitation the principles of the human rights framework created by the Special Rapporteur on the human right to safe drinking water and sanitation ", - "values": [ - "Right to water and sanitation", - "Special procedures" - ] - }, - { - "text": "Continue the policies developed to combat the actions of economic aggression against the Venezuelan people, and guarantee its human rights, in particular those of the most vulnerable groups", - "values": [ - "Other" - ] - }, - { - "text": "Poland will strengthen measures to reduce domestic violence. It indicated that current solutions need to be adjusted in light of the insufficient social awareness of the threats domestic violence poses to individuals, families and society as a whole, as well as insufficient assistance to victims of violence. An annual evaluation of the implementation of the National Programme to Counter Domestic Violence for 2006-2016 will constitute the basis for its adjustment to actual needs. Eradication of violence from the family environment can first and foremost be achieved through the implementation of programmes promoting positive methods of childrearing and partnership in the family, some of which are carried out in collaboration with the European Union and the Council of Europe. In 2008 the law against domestic violence and the National Programme to Counter Domestic Violence will be amended, resulting in: 1/ A complete ban on corporal punishment, and financial support for the implementation of projects against domestic violence at municipal level within the framework of the National Programme to Counter Domestic Violence 2/ The introduction of a warrant obliging the perpetrator to leave the house immediately after an incident of violence is reported by the victimThe introduction of cost-free forensic medical examinations", - "values": [ - "Rights of the Child", - "Torture and other CID treatment", - "Women's rights" - ] - }, - { - "text": "Adhere to international standards regarding fair trials, and address allegations of abuse of detainees, including juveniles", - "values": [ - "Detention", - "Justice", - "Rights of the Child" - ] - }, - { - "text": "Continue, in cooperation with the relevant international organizations, to implement its commitments as listed in paragraph 42 of its national report with regard to the worrying issue of the use of anti-personnel landmines by illegal armed groups.", - "values": [ - "International humanitarian law" - ] - }, - { - "text": "Sign the Optional Protocol to the International Covenant of Economic, Social and Cultural Rights (OP-ICESCR)", - "values": [ - "ESC rights - general", - "International instruments" - ] - }, - { - "text": "Adopt further measures, including in the field of education, to reinforce the protection and promotion of religious freedom, particularly in order to ensure the effective freedom of worship of religious minorities ", - "values": [ - "Freedom of religion and belief", - "Minorities" - ] - }, - { - "text": "Ensure prompt and impartial investigations into accusations and complaints of violence, intimidation, harassment and surveillance of human rights defenders", - "values": [ - "Human rights defenders" - ] - }, - { - "text": "Continue its efforts to combat all forms of discrimination against women, to fight violence against them and to enhance their presence in higher decision-making positions", - "values": [ - "Women's rights" - ] - }, - { - "text": "Amend the Peaceful Assembly Act to guarantee the right to peaceful assembly and facilitate the visit by the Special Rapporteur on the rights to freedom of peaceful assembly and of association", - "values": [ - "Freedom of association and peaceful assembly", - "Special procedures" - ] - }, - { - "text": "Raise the age of criminal responsibility to 12 or above", - "values": [ - "Justice", - "Rights of the Child" - ] - }, - { - "text": "The Government of Kenya has committed itself to ensuring the right to adequate housing through a number of policies, legislative and programmatic interventions.", - "values": [ - "Right to housing" - ] - }, - { - "text": "Ratify ICCPR-OP 2 to abolish death penalty ", - "values": [ - "Death penalty", - "International instruments" - ] - }, - { - "text": "Consider increasing the minimum age of marriage, especially for girls", - "values": [ - "Rights of the Child", - "Women's rights" - ] - }, - { - "text": "Continue its efforts to strengthen the role of independent bodies for human rights", - "values": [ - "National Human Rights Institution" - ] - }, - { - "text": "Adopt a comprehensive specific law on gender equality and gender violence", - "values": [ - "Women's rights" - ] - }, - { - "text": "Work with the Organization for Economic Cooperation and Development on implementation of recommendations to address concerns about the limits that the media law places on freedom of expression.", - "values": [ - "Freedom of opinion and expression", - "Freedom of the press" - ] - }, - { - "text": "Abolish or reform the restrictive law on sponsorship, which drives potential labour exploitation and human trafficking, strengthen enforcement of the labour law, continue to increase awareness of human rights of migrant workers, and expand legal protections ", - "values": [ - "Human rights education and training", - "Labour", - "Migrants", - "Trafficking" - ] - }, - { - "text": "Do more to provide updated and precise statistics on crimes such as assaults on albinos and extra-judicial killings of elderly women, and that murder of elderly women based on accusations of witchcraft is defined as a specific category in police reports ", - "values": [ - "Disabilities", - "Extrajudicial executions", - "Rights of the Child", - "Women's rights" - ] - }, - { - "text": "Continue to draft development strategies, which Tajikistan intends to do in order to improve the standard of living", - "values": [ - "General" - ] - }, - { - "text": "Consider ratifying the fundamental International Labour Organization conventions", - "values": [ - "International instruments", - "Labour" - ] - }, - { - "text": "Monitor the effective implementation of laws preventing violence against women", - "values": [ - "Women's rights" - ] - }, - { - "text": "Envisage the inclusion of the UPR outcome in the National Human Rights Plan", - "values": [ - "UPR process" - ] - }, - { - "text": "Adhere to the International Convention on the Protection of the Rights of All Migrants Workers and Members of their Families.", - "values": [ - "International instruments", - "Labour", - "Migrants" - ] - }, - { - "text": "Strengthen measures to combat family and domestic violence, particularly on access to justice and the necessary support to victims", - "values": [ - "Rights of the Child", - "Women's rights" - ] - }, - { - "text": "Make sexual harassment illegal ", - "values": [ - "Women's rights" - ] - }, - { - "text": "Review legislation on abortion and ensure that women have access to legal abortion health services, especially in cases where their life or health is at risk", - "values": [ - "Women's rights" - ] - }, - { - "text": "Establish, where appropriate, specialized services required for children and women who have been trafficked or sold for sexual exploitation", - "values": [ - "Rights of the Child", - "Trafficking", - "Women's rights" - ] - }, - { - "text": "Clarify its interpretation of the Helms Amendment in order to be able to provide safe abortion for rape survivors", - "values": [ - "Women's rights" - ] - }, - { - "text": "Take measures aimed at the further strengthening of national human rights institutions and continue its policy of aligning national legislation with international obligations", - "values": [ - "General" - ] - }, - { - "text": "Take more effective measures to address cultural practices that foster discrimination against women", - "values": [ - "Women's rights" - ] - }, - { - "text": "Take steps to increase overseas development assistance to 0.7 per cent of gross domestic product", - "values": [ - "Development" - ] - }, - { - "text": "Pursue its efforts aiming at preventing and combating gender-based violence, particularly by providing training, awareness campaigns and assistance to victims ", - "values": [ - "Human rights education and training", - "Rights of the Child", - "Women's rights" - ] - }, - { - "text": "Repeal all provisions that criminalize same-sex conduct", - "values": [ - "Sexual Orientation and Gender Identity" - ] - }, - { - "text": "Strengthen policies aimed at achieving economic, social and cultural rights, in particularly in the areas of health and education ", - "values": [ - "ESC rights - general", - "Right to education", - "Right to health" - ] - }, - { - "text": "Maintain efforts to protect the rights of vulnerable groups, considering their specific needs and capabilities, through the empowerment of their rights, and fair reparation mechanisms", - "values": [ - "Minorities" - ] - }, - { - "text": "Harmonize legislation that discriminated against women with the Constitution and the Convention on the Elimination of All Forms of Discrimination against Women", - "values": [ - "International instruments", - "Women's rights" - ] - }, - { - "text": "Ratify OP-CAT and, although not a human rights instrument per se, the Rome Statute of the International Criminal Court (ICC)", - "values": [ - "Detention", - "International instruments", - "Justice", - "Torture and other CID treatment" - ] - }, - { - "text": "Continue developing cooperation with the human rights machinery of the United Nations", - "values": [ - "Special procedures", - "Treaty bodies", - "UPR process" - ] - }, - { - "text": "Increase its efforts to submit as soon as possible its periodic reports to the Committee Against Torture, the Human Rights Committee and the Committee for the Elimination of Discrimination against Woman", - "values": [ - "CP rights - general", - "Torture and other CID treatment", - "Treaty bodies", - "Women's rights" - ] - }, - { - "text": "Fulfil its commitments under ratified fundamental human rights instruments", - "values": [ - "International instruments" - ] - }, - { - "text": "Adopt without delay a uniform Family Code that fully complies with the provisions of CEDAW ", - "values": [ - "International instruments", - "Women's rights" - ] - }, - { - "text": "Implement legislative measures to increase the percentage of women in decision-making and popular election positions", - "values": [ - "Women's rights" - ] - }, - { - "text": "Take the necessary measures to eliminate child labour, especially forced begging", - "values": [ - "Labour", - "Rights of the Child" - ] - }, - { - "text": "Integrate special needs education for people with disabilities for 2013 to 2015 under the National Sustainable Development Plan - Action Plan 2015", - "values": [ - "Development", - "Disabilities", - "Right to education" - ] - }, - { - "text": "Consolidate the implementation of the 2020 programme in the framework of justice reform", - "values": [ - "Justice" - ] - }, - { - "text": "Consider the implementation of the reform of the juvenile justice system as a matter of priority", - "values": [ - "Justice", - "Rights of the Child" - ] - }, - { - "text": "Fully implement Article 2 of the Universal Declaration of Human Rights, which provides that Everyone is entitled to all the rights and freedoms set forth in this Declaration, without distinction of any kind, such as race, colour, sex, language, religion, political or other opinion, national or social origin, property, birth or other status, and to recognize that sex also includes sexual orientation", - "values": [ - "International instruments", - "Sexual Orientation and Gender Identity" - ] - }, - { - "text": "Continue taking strong measures to combat human trafficking and the sexual exploitation and abuse of migrant women and children, including by fully implementing the Human Trafficking Act of 2014, training law enforcement officials and ensuring adequate protection for victims of human trafficking", - "values": [ - "Human rights education and training", - "Migrants", - "Rights of the Child", - "Trafficking", - "Women's rights" - ] - }, - { - "text": "Adjust the new abortion law protocol to give women the right to abort in cases of incest and rape based on the police report only", - "values": [ - "Women's rights" - ] - }, - { - "text": "Enhance the protection of freedom of expression and thought, including, dissenting political opinions, and ensure free access to information for all, inter alia through the Internet ", - "values": [ - "Freedom of opinion and expression" - ] - }, - { - "text": "Continue its efforts to improve the reception conditions of asylumseekers, including the provision of free legal aid, in particular to those who apply for asylum at the border, and those in detention ", - "values": [ - "Asylum-seekers - refugees" - ] - }, - { - "text": "Take further steps to eliminate harmful practices, and to abolish child, early and forced marriages", - "values": [ - "Rights of the Child", - "Torture and other CID treatment", - "Women's rights" - ] - }, - { - "text": "Continue to prioritize and implement policies and legislation to address violence against women and the protection of the human rights of children", - "values": [ - "Rights of the Child", - "Women's rights" - ] - }, - { - "text": "Redouble its efforts to combat more effectively and to eradicate trafficking and violence against children", - "values": [ - "Rights of the Child", - "Trafficking" - ] - }, - { - "text": "Seek technical assistance from OHCHR and UNICEF, among others, on juvenile justice as recommended by the Committee on the Rights of the Child ", - "values": [ - "Rights of the Child", - "Technical assistance and cooperation", - "Treaty bodies" - ] - }, - { - "text": "Build state capacity to develop policy and programmatic responses to address the needs of people living with HIV", - "values": [ - "HIV - Aids" - ] - }, - { - "text": "Take all necessary measures to ensure that allegations of human rights violations brought to the knowledge of the authorities are systematically subjected to inquiries and punished where appropriate.", - "values": [ - "Justice" - ] - }, - { - "text": "Consider the possibility of establishing a national human rights institution accredited by the International Coordinating Committee of National Institutions for the Promotion and Protection of Human Rights ", - "values": [ - "National Human Rights Institution" - ] - }, - { - "text": "Continue its efforts to ensure school attendance and for the provision of housing, food and health services to vulnerable children ", - "values": [ - "Right to education", - "Right to food", - "Right to health", - "Rights of the Child" - ] - }, - { - "text": "Review its legislation and public policies in order to safeguard the exercise of freedom of expression as well as to decriminalize defamation, libel and slander. ", - "values": [ - "Freedom of opinion and expression" - ] - }, - { - "text": "Enhance efforts to increase the educational infrastructure in the poorest provinces", - "values": [ - "Right to education" - ] - }, - { - "text": "That a long-term sustainable policy approach be adopted to respond to crises such as climate change and food security", - "values": [ - "Environment", - "Right to food" - ] - }, - { - "text": "Strengthen the capacity of the National Human Rights Commission by allocating sufficient resources for its activities", - "values": [ - "National Human Rights Institution" - ] - }, - { - "text": "To adopt effective measures to combat violence against women and prevent their occupational segregation", - "values": [ - "Women's rights" - ] - }, - { - "text": "Continue strengthening efforts to combat racism, intolerance and hate crimes", - "values": [ - "Racial discrimination" - ] - }, - { - "text": "Continue implementing measures to eradicate all forms of discrimination, including against people with other origins", - "values": [ - "Racial discrimination" - ] - }, - { - "text": "Ensure full implementation of laws prohibiting corporal punishment in all settings, including through campaigns to raise awareness among adults and children, as well as the promotion of positive and non-violent forms of discipline that do not affect the upbringing of children", - "values": [ - "Human rights education and training", - "Rights of the Child", - "Torture and other CID treatment" - ] - }, - { - "text": "Continue improving the conditions of detention centres and ensure that juvenile offenders do not share spaces of detention with adult offenders ", - "values": [ - "Detention", - "Rights of the Child" - ] - }, - { - "text": "Cooperation with the Human Rights Council in establishing a national mechanism to implement, over the next four years, the recommendations resulting from the universal periodic review", - "values": [ - "UPR process" - ] - }, - { - "text": "Adopt legislation that explicitly prohibits corporal punishment, and continue awareness raising campaigns on the negative effects of corporal punishment", - "values": [ - "Human rights education and training", - "Torture and other CID treatment" - ] - }, - { - "text": "Find a formula to solve the gaps in the Justice and Peace Law and allow for a legal response to the situation of legal limbo that many thousands of ex-members of AUC find themselves in while awaiting trial.", - "values": [ - "Justice" - ] - }, - { - "text": "Review existing legislation in order to enhance the exercise of the freedom of assembly and of the press", - "values": [ - "Freedom of association and peaceful assembly", - "Freedom of the press" - ] - }, - { - "text": "Ratify the International Covenant on Civil and Political Rights and its first Optional Protocol allowing individual complaints", - "values": [ - "CP rights - general", - "International instruments" - ] - }, - { - "text": "Enact legislation to achieve the prohibition of corporal punishment of children in all settings, including in the home and in schools as a matter of priority ", - "values": [ - "Rights of the Child", - "Torture and other CID treatment" - ] - }, - { - "text": "Improve the health-care system and specifically provide further measures on infrastructure and resources to maternal health, including midwife training, with a focus on health care for mothers and babies through pregnancy and childbirth", - "values": [ - "Right to health", - "Rights of the Child", - "Women's rights" - ] - }, - { - "text": "Give stronger emphasis to securing the identification, release and reintegration of all child soldiers and the prevention of further recruitment", - "values": [ - "International humanitarian law", - "Rights of the Child" - ] - }, - { - "text": "Establish dialogues to engage in cooperation that will allow for the application of best practices and plans to reduce unemployment, underemployment and informal work, and strengthen the policies for the generation of employment and youth employment", - "values": [ - "Development" - ] - }, - { - "text": "Continue its endeavours towards better serving its people by securing a higher standard of human rights", - "values": [ - "General" - ] - }, - { - "text": "Bring existing regional and draft federal-level legislation related to homosexuality into conformity with its commitment to the principles of non-discrimination and take steps to ensure that the rights of all minorities, including gays and lesbians, are protected and respected", - "values": [ - "Minorities", - "Racial discrimination", - "Sexual Orientation and Gender Identity" - ] - }, - { - "text": "Consider the ratification of the International Convention on the Protection of the Rights of All Migrant Workers and Members of Their Families (ICRMW)", - "values": [ - "International instruments", - "Labour", - "Migrants" - ] - }, - { - "text": "Reply favourably and without delay to the requests of United Nations human rights experts and mechanisms to visit Algeria", - "values": [ - "International instruments", - "Special procedures" - ] - }, - { - "text": "Develop and implement a strategy to monitor, investigate, and prosecute hate crimes, giving the Public Defender relevant powers and resources to take action against instigators of hate crime", - "values": [ - "Racial discrimination" - ] - }, - { - "text": "Continue the work which has been started on the improvement of the conditions of detention in the penitentiary system and the integration of former prisoners into society", - "values": [ - "Detention" - ] - }, - { - "text": "Adopt additional measures that tend to develop a comprehensive strategy that tends to address the needs of IDPs and provide sustainable solutions", - "values": [ - "Internally displaced persons" - ] - }, - { - "text": "Use a gender sensitive approach in all poverty alleviation programmes ", - "values": [ - "Poverty", - "Women's rights" - ] - }, - { - "text": "Ensure the independent functioning and decision-making of the Constitutional Court free from any political interference as a fundamental pillar of democracy, rule of law and human rights protection", - "values": [ - "Justice" - ] - }, - { - "text": "Allow due legal processes and judicial review by high courts and the Supreme Court for cases tried by military courts", - "values": [ - "Justice" - ] - }, - { - "text": "Take measures to request, without delay, the Armed Forces, security forces and other governmental bodies to cooperate fully with official investigations on human rights abuses in any part of the national territory, as an integral part of the necessary establishment of a culture of responsibility on human rights among public authorities and state agents", - "values": [ - "Human rights violations by state agents" - ] - }, - { - "text": "Consider ratifying OP-CAT ", - "values": [ - "Detention", - "International instruments", - "Torture and other CID treatment" - ] - }, - { - "text": "Withdraw its reservations to CEDAW ", - "values": [ - "International instruments", - "Women's rights" - ] - }, - { - "text": "Improve the protection of women and children by ensuring that protection services are enhanced and enshrined in law, that victims are provided with more information on access to such support and medical care, and that legislation regarding women's health and therapeutic abortion are revised", - "values": [ - "Rights of the Child", - "Women's rights" - ] - }, - { - "text": "Continue in its efforts to help persons with disabilities and integrate them into society as real partners", - "values": [ - "Disabilities" - ] - }, - { - "text": "Allocate sufficient resources to promote the rights of persons with disabilities", - "values": [ - "Disabilities" - ] - }, - { - "text": "Adopt comprehensive policies to combat sexual harassment, especially against children and adolescents, including those in street situations or living in placement institutions", - "values": [ - "Poverty", - "Rights of the Child" - ] - }, - { - "text": "Increase its efforts to combat violence against women and children ", - "values": [ - "Rights of the Child", - "Women's rights" - ] - }, - { - "text": "Identify the root causes of ethnic disparities concerning especially those sentenced to capital punishment in order to find ways for eliminate ethnic discrimination in the criminal justice system", - "values": [ - "Death penalty", - "Minorities" - ] - }, - { - "text": "Consider the ratification of those international instruments of human rights of which it is not a party yet", - "values": [ - "International instruments" - ] - }, - { - "text": "Accelerate the steps undertaken to make the national institution for the protection of human rights established in 1998 fully compatible with the Paris Principles and provide it with the necessary resources empowering it to fulfil its mandate ", - "values": [ - "National Human Rights Institution" - ] - }, - { - "text": "Ratify the Second Optional Protocol to International Covenant on Civil and Political Rights, aiming at the abolition of the death penalty", - "values": [ - "Death penalty", - "International instruments" - ] - }, - { - "text": "Follow up on the appreciated initiative of the Kingdom of Bahrain for the creation of the Arab Court for human rights, as reflected in the commitment of Bahrain in the promotion and protection of human rights ", - "values": [ - "Other" - ] - }, - { - "text": "Strengthen the provisions of legal aid services in all regions and ensure enhanced awareness of key CEDAW provisions by the judiciary", - "values": [ - "International instruments", - "Justice", - "Women's rights" - ] - }, - { - "text": "Further strengthen locally based, members-driven and funded civil society groups in the country", - "values": [ - "Civil society" - ] - }, - { - "text": "Take measures to effectively address the high dropout rates from school, especially of girls in primary education ", - "values": [ - "Right to education", - "Rights of the Child", - "Women's rights" - ] - }, - { - "text": "Take concrete steps to harmonize its national legislation with the Convention on the Rights of Persons with Disabilities and to ratify its Optional Protocol", - "values": [ - "Disabilities", - "International instruments" - ] - }, - { - "text": "Establish a moratorium on all executions and, eventually, abolish the death penalty ", - "values": [ - "Death penalty" - ] - }, - { - "text": "Intensify efforts against organized crime, including terrorism, and impunity of perpetrators", - "values": [ - "Impunity", - "Public security" - ] - }, - { - "text": "Conduct an impartial investigation of all cases of ill-treatment and excessive use of force by law enforcement officials, including on racial grounds", - "values": [ - "Human rights violations by state agents", - "Racial discrimination", - "Torture and other CID treatment" - ] - }, - { - "text": "End all construction in the Occupied Palestinian Territories and the destruction of natural and agricultural resources of the Palestinian people.", - "values": [ - "Right to land" - ] - }, - { - "text": "Continue to assist and protect minorities, vulnerable groups and persons displaced due to natural disasters or conflicts", - "values": [ - "Internally displaced persons", - "Minorities" - ] - }, - { - "text": "Continue its efforts to guarantee social protection for persons with disabilities and their full integration into society", - "values": [ - "Disabilities" - ] - }, - { - "text": "Develop and implement, in cooperation with local customary authorities, a strategy to eliminate discriminatory traditional practices against women, including in respect of access to and ownership of land ", - "values": [ - "Right to land", - "Women's rights" - ] - }, - { - "text": "Increase resources to prisons to improve conditions, to the police to develop specialties in forensics and evidence collection, and the Department of Public Prosecutions to hasten the speed of trial procedures", - "values": [ - "Detention", - "Justice" - ] - }, - { - "text": "Cooperate at the regional level to find a solution to the very serious problem of the growing number of unaccompanied minors from El Salvador that immigrate to other countries of the region", - "values": [ - "Rights of the Child" - ] - }, - { - "text": "Ratify ICRMW in line with the recommendations made by CRC, CERD and CESCR ", - "values": [ - "International instruments", - "Labour", - "Migrants", - "Treaty bodies" - ] - }, - { - "text": "Consider signing and ratifying the Rome Statute of the International Criminal Court as soon as possible.", - "values": [ - "International instruments", - "Justice" - ] - }, - { - "text": "Continue its efforts to accede to or ratify more human rights treaties and their Optional Protocols", - "values": [ - "International instruments" - ] - }, - { - "text": "Amend the Newspaper Act of 1958 to ensure that it respects and protects the right to freedom of expression in accordance with international standards ", - "values": [ - "Freedom of opinion and expression" - ] - }, - { - "text": "Continue its efforts to combat domestic violence, sexual harassment and exploitation of women, in particular adolescents, women heads of households without a partner and girls with children", - "values": [ - "Rights of the Child", - "Women's rights" - ] - }, - { - "text": "Continue to eradicate poverty and improve in particular the standard of living of rural populations", - "values": [ - "Poverty" - ] - }, - { - "text": "Take measures to fight all types of inflammatory speech or incitement to hatred against ethnic and religious minorities and ensure that perpetrators of such crimes are prosecuted and receive adequate convictions and penalties", - "values": [ - "Freedom of religion and belief", - "Minorities", - "Racial discrimination" - ] - }, - { - "text": "Continue its efforts to improve access to health-care services", - "values": [ - "Right to health" - ] - }, - { - "text": "Design and implement measures to ensure access to education and medical services in the area of sexual and reproductive health that are appropriate for each age group", - "values": [ - "Right to education", - "Right to health" - ] - }, - { - "text": "Consider the creation of a separate institution of Ombudsman for children's rights, as previously recommended by the Committee on the Rights of the Child and the Danish National Council for Children ", - "values": [ - "National Human Rights Institution", - "Rights of the Child", - "Treaty bodies" - ] - }, - { - "text": "Continue implementing measures for the reduction and alleviation of poverty", - "values": [ - "Poverty" - ] - }, - { - "text": "[Adopt legislation against discrimination] Including discrimination based on sexual orientation and gender identity and amend provisions with a tendency to maintain discrimination related to gender", - "values": [ - "Sexual Orientation and Gender Identity" - ] - }, - { - "text": "Guarantee freedom of the press and therefore to refrain from implementing more restrictive legal measures and policies", - "values": [ - "Freedom of the press" - ] - }, - { - "text": "Consider ratifying the International Convention for the Protection of All Persons from Enforced Disappearance (CPED), signed in 2007 ", - "values": [ - "Enforced disappearances", - "International instruments" - ] - }, - { - "text": "Continue with the training of law enforcement officials, based on the request for technical cooperation contained in paragraph 152 of the national report.", - "values": [ - "Human rights education and training" - ] - }, - { - "text": "Address the issue of inadequate water supply in the country urgently, including by providing appropriate temporary measures to communities in rural and urban areas in finding alternative means of water supply", - "values": [ - "Right to water and sanitation" - ] - }, - { - "text": "Guarantee the human rights of citizens under the new Constitutions and establish effective mechanisms to ensure these are respected, including through the establishment of a national human rights institution in line with the Paris Principles", - "values": [ - "National Human Rights Institution" - ] - }, - { - "text": "Develop advocacy campaigns to raise the level of awareness of the rights of women ", - "values": [ - "Human rights education and training", - "Women's rights" - ] - }, - { - "text": "Conduct nation-wide educational campaigns about gender roles and the value of women and girls", - "values": [ - "Rights of the Child", - "Women's rights" - ] - }, - { - "text": "Take measures in order to fully guarantee the rights of children, in particular with reference to the treatment of juveniles in the judicial system, and to prevent and combat the involvement of children in armed conflicts, their trafficking and their exploitation in the prostitution and pornography industry", - "values": [ - "International humanitarian law", - "Rights of the Child", - "Trafficking" - ] - }, - { - "text": "Criminalize homophobic hate speech in the public discourse", - "values": [ - "Sexual Orientation and Gender Identity" - ] - }, - { - "text": "Reduce the number of crimes subject to death penalty and eliminate the compulsory application of the death penalty", - "values": [ - "Death penalty" - ] - }, - { - "text": "Review its legislation to complete the abolition of imprisonment penalties for publication offences", - "values": [ - "Justice" - ] - }, - { - "text": "Ensure equal access to education, social security, health care and economic opportunities for women, including Muslim women and women entering early marriages ", - "values": [ - "Minorities", - "Rights of the Child", - "Women's rights" - ] - }, - { - "text": "Ratify the Second Optional Protocol to ICCPR, aiming at the abolition of the death penalty (ICCPR-OP)", - "values": [ - "Death penalty", - "International instruments" - ] - }, - { - "text": "Continue prioritizing the reform of justice, under the principle of separation of powers ", - "values": [ - "Justice" - ] - }, - { - "text": "Establish torture as a criminal offence in accordance with article 1 of the Convention against Torture and Other Cruel, Inhuman or Degrading Treatment or Punishment, and stipulate that obeying orders of superiors can not justify it.", - "values": [ - "International instruments", - "Torture and other CID treatment" - ] - }, - { - "text": "Use all possible means to improve prison conditions, especially for minors and implement legislation to minimize detention time prior to trial", - "values": [ - "Detention", - "Rights of the Child" - ] - }, - { - "text": "Continue to improve legislative mechanisms in the area of human rights", - "values": [ - "General" - ] - }, - { - "text": "Reinforce and improve the education system, reducing the disparity between urban and rural areas, with special attention to children with disabilities", - "values": [ - "Disabilities", - "Right to education", - "Rights of the Child" - ] - }, - { - "text": "Intensify efforts to improve the delivery of health services", - "values": [ - "Right to health" - ] - }, - { - "text": "Consider signing and ratifying the Convention against Torture and Other Cruel, Inhuman or Degrading Treatment or Punishment", - "values": [ - "International instruments", - "Torture and other CID treatment" - ] - }, - { - "text": "Ensure that all LGBT persons fully and equally enjoy their human rights, in conformity with Gambia's international obligations, and as an immediate step, to repeal the provisions in the Criminal Code that criminalize sexual activity among persons of the same sex", - "values": [ - "Sexual Orientation and Gender Identity" - ] - }, - { - "text": "Reintroduce a moratorium on executions with a view to the abolition of capital punishment ", - "values": [ - "Death penalty" - ] - }, - { - "text": "Ensure that the restriction of some right, such as the right to vote for people with disabilities, is carried out with all the due guarantees and in line with the provisions of the Convention ", - "values": [ - "Disabilities", - "Elections", - "International instruments" - ] - }, - { - "text": "Continue to consolidate socio-economic measures to minimize the gap between rural and urban areas", - "values": [ - "ESC rights - general" - ] - }, - { - "text": "Modify its criminal code in order to establish a definition on torture and harshness of sentences according to the Convention on Torture.", - "values": [ - "International instruments", - "Torture and other CID treatment" - ] - }, - { - "text": "Decriminalize defamation and make the necessary amendments in this regard, in line with Inter-American and international standards ", - "values": [ - "Freedom of opinion and expression" - ] - }, - { - "text": "Take legislative and administrative measures to better protect unaccompanied migrant children", - "values": [ - "Migrants", - "Rights of the Child" - ] - }, - { - "text": "Follow up so as to complete its Health Master Plan 2012-2016", - "values": [ - "Right to health" - ] - }, - { - "text": "Proceed to the establishment of a moratorium on the application of the death penalty as a first step to its definitive abolition ", - "values": [ - "Death penalty" - ] - }, - { - "text": "Increase training in international human rights law for the judiciary and measures to strengthen its independence", - "values": [ - "Human rights education and training", - "International instruments", - "Justice" - ] - }, - { - "text": "Consider ratifying ICCPR-OP2, aiming at the abolition of the death penalty", - "values": [ - "Death penalty", - "International instruments" - ] - }, - { - "text": "Better protect the rights of foreign workers who are non-European Union citizens", - "values": [ - "Migrants" - ] - }, - { - "text": "Ensure non-discrimination on the basis of sexual orientation and gender identity ", - "values": [ - "Sexual Orientation and Gender Identity" - ] - }, - { - "text": "Improve social policies to combat social inequalities and poverty, in particular youth unemployment", - "values": [ - "Development", - "Elections", - "Poverty" - ] - }, - { - "text": "Respect and protect the right to freedom of expression online and offline and bring its national legislation fully in line with international standards, including by decriminalizing defamation, and to develop self-regulatory mechanisms of the media", - "values": [ - "Freedom of opinion and expression", - "Freedom of the press" - ] - }, - { - "text": "Develop a national plan against racism ", - "values": [ - "Racial discrimination" - ] - }, - { - "text": "Issue and implement a standing invitation to all special procedures", - "values": [ - "Special procedures" - ] - }, - { - "text": "Ensure the effective respect of international human rights standards for persons deprived of liberty by allocating the necessary resources", - "values": [ - "International instruments" - ] - }, - { - "text": "Issue clear, public orders and take clear steps to ensure that its security forces (and militias under its purview) comply with international human rights law and with international humanitarian law, including the principles of distinction and proportionality ", - "values": [ - "International humanitarian law", - "International instruments" - ] - }, - { - "text": "Promote implementation of the Fourth National Plan on Empowerment of Persons with Disabilities 2012-2016", - "values": [ - "Disabilities" - ] - }, - { - "text": "Take action to ensure that Cambodian legislation enables all political parties, labour unions and other civil society groups to exercise their rights to freedom of expression, association and peaceful assembly, and that peaceful demonstrations can occur safely and without fear of intimidation or excessive use of force on the part of the Cambodian authorities ", - "values": [ - "Civil society", - "Freedom of association and peaceful assembly", - "Freedom of opinion and expression", - "Human rights violations by state agents", - "Labour" - ] - }, - { - "text": "Intensify efforts to cooperate with United Nations human rights mechanisms, particularly with treaty bodies, by presenting periodic reports and pay due attention to the observations made by such bodies", - "values": [ - "Special procedures", - "Treaty bodies", - "UPR process" - ] - }, - { - "text": "Consider the ratification of the International Covenant on Economic, Social and Cultural Right", - "values": [ - "ESC rights - general", - "International instruments" - ] - }, - { - "text": "Take all necessary measures to ensure equal, legal and fair treatment of minorities, including Roma", - "values": [ - "Minorities" - ] - }, - { - "text": "Take concrete actions to implement recommendations made by the Committee against Torture in 2009, by the Committee on the Rights of the Child in 2007 and by the Human Rights Committee in 2006 concerning the violent killing of juveniles, emphasizing in particular effective investigations, so as to arrest and punish all material and intellectual perpetrators of such killings, as well as raise awareness about the mistreatment of children", - "values": [ - "Extrajudicial executions", - "Rights of the Child", - "Treaty bodies" - ] - }, - { - "text": "Intensify efforts aimed at realizing further progress in the process of strengthening economic, social and cultural rights, and in particular the rights of children and persons with disabilities ", - "values": [ - "Disabilities", - "ESC rights - general", - "Rights of the Child" - ] - }, - { - "text": "Continue making legislative and concrete efforts to promote human rights", - "values": [ - "General" - ] - }, - { - "text": "Improve the investigative capacity of police and enhance judicial action on trafficking to allow for more prosecutions of trafficking offenders, particularly perpetrators of internal child trafficking ", - "values": [ - "Rights of the Child", - "Trafficking" - ] - }, - { - "text": "Consider ratifying International Labour Organization Convention 189 concerning decent work for domestic workers", - "values": [ - "International instruments", - "Labour" - ] - }, - { - "text": "Investigate and prosecute those who committed human rights violations on both sides of the conflict ", - "values": [ - "General" - ] - }, - { - "text": "Consolidate the normative framework that regulates the activity and competences of the (Equality) Council", - "values": [ - "Other" - ] - }, - { - "text": "Ensure that legislation relating to the Internet and other new communication technologies respects international human rights obligations", - "values": [ - "Freedom of opinion and expression", - "International instruments" - ] - }, - { - "text": "Ratify the International Convention for the Protection of All Persons from Enforced Disappearance as an expression of its commitment to addressing this issue", - "values": [ - "Enforced disappearances", - "International instruments" - ] - }, - { - "text": "Make further progress in implementing the National Human Rights Action Plan with the full engagement of multi stakeholders, including civil society ", - "values": [ - "Civil society" - ] - }, - { - "text": "Combat all forms of discrimination against refugee children, asylum seekers and undocumented migrants", - "values": [ - "Asylum-seekers - refugees", - "Migrants", - "Racial discrimination", - "Rights of the Child" - ] - }, - { - "text": "Plan to re-establish the National AIDS Commission so as to effectively support programmes and policies to combat HIV/AIDS", - "values": [ - "HIV - Aids" - ] - }, - { - "text": "Promote the role of independent non-governmental organizations and take effective measures to ensure the full realization of the rights to freedom of expression, including on internet, assembly and association ", - "values": [ - "Civil society", - "Freedom of association and peaceful assembly", - "Freedom of opinion and expression" - ] - }, - { - "text": "Step up the efforts to combat discrimination against women at all levels, including by reinforcing the institutional mechanisms and establishing planning instruments for ensuring equality ", - "values": [ - "Women's rights" - ] - }, - { - "text": "In light of the recommendation of the Committee on the Rights of the Child, act on combating discrimination by targeting situations of discrimination and vulnerability affecting children belonging to all minorities", - "values": [ - "International instruments", - "Minorities", - "Rights of the Child" - ] - }, - { - "text": "Continue ongoing efforts and adopt effective measures and policies to stop and prevent sexual violence against women and girls, as recommended previously in 2009 ", - "values": [ - "Rights of the Child", - "UPR process", - "Women's rights" - ] - }, - { - "text": "Ensure independent and effective investigation and prosecution of all cases of alleged human rights violations by law enforcement officials", - "values": [ - "Human rights violations by state agents" - ] - }, - { - "text": "Amend the concerned legislation to establish an immediate moratorium on the death penalty with a view of abolishing the capital punishment entirely in line with the United Nations General Assembly resolutions 62-149 and 63-168 as well as the second Optional Protocol to ICCPR and transfer the existing death sentences to imprisonment terms", - "values": [ - "Death penalty", - "International instruments" - ] - }, - { - "text": "Accede to and domesticate the conventions relating to the status of stateless persons and the reduction of statelessness in order to grant nationality to children who would otherwise remain stateless", - "values": [ - "Asylum-seekers - refugees", - "International instruments", - "Rights of the Child", - "Statelessness and the right to nationality" - ] - }, - { - "text": "Continue its efforts to improve the situation of the Roma population ", - "values": [ - "Minorities" - ] - }, - { - "text": "Take immediate measures to introduce a formal moratorium on executions and take concrete steps toward the total abolition of the death penalty", - "values": [ - "Death penalty" - ] - }, - { - "text": "Strengthen its efforts to improve maternal health and acts to effectively balance the skewed sex-ratio among children, including by combating female foeticide ", - "values": [ - "Rights of the Child", - "Women's rights" - ] - }, - { - "text": "Ensure the implementation of existing laws guaranteeing non- discrimination ", - "values": [ - "Other" - ] - }, - { - "text": "Continue its engagement by ratifying other international instruments, in particular the International Convention on the Elimination of All Forms of Racial Discrimination", - "values": [ - "International instruments", - "Racial discrimination" - ] - }, - { - "text": "Intensify its efforts to promote and protect the human rights of specific groups within society, such as women, children, disabled persons and the elderly, with a view to empowering them and alleviating their vulnerability ", - "values": [ - "Disabilities", - "Rights of the Child", - "Women's rights" - ] - }, - { - "text": "Use comparative studies to address the challenges posed by the investigation of international law crimes committed during the Civil War and the Franco regime, in line with the recommendations of the Special Rapporteur on the promotion of truth, justice, reparation and guarantees of non-recurrence", - "values": [ - "Justice", - "Special procedures" - ] - }, - { - "text": "Strengthen its technical cooperation with relevant agencies and stakeholders in order to prevent the adverse impact of climate change on its promotion and protection of human rights ", - "values": [ - "Environment", - "Technical assistance and cooperation" - ] - }, - { - "text": "Declare a moratorium on the death penalty and accede to the Second Optional Protocol to the ICCPR", - "values": [ - "Death penalty", - "International instruments" - ] - }, - { - "text": "Continue the reforms in the security sector, inter alia to avoid future torture and ill-treatment of demonstrators and detainees in conformity with international human rights standards ", - "values": [ - "Detention", - "International instruments", - "Torture and other CID treatment" - ] - }, - { - "text": "Provide for a full system of universal birth registration including immediate registration upon birth regardless of the parent's nationality or status in the country", - "values": [ - "Rights of the Child", - "Statelessness and the right to nationality" - ] - }, - { - "text": "Repeal the death penalty and ratify the Second Optional Protocol to International Covenant on Civil and Political Rights, aiming at the abolition of the death penalty", - "values": [ - "Death penalty", - "International instruments" - ] - }, - { - "text": "Continue its efforts to meet the needs of the elderly and improve the quality of their life regarding housing and transport ", - "values": [ - "Other" - ] - }, - { - "text": "Strengthen measures towards the integration of children with disabilities into formal education mechanisms", - "values": [ - "Disabilities", - "Right to education", - "Rights of the Child" - ] - }, - { - "text": "Decriminalize consenting relationships between adults of the same sex and adopt measures against violence and hate speech against lesbian, gay, bisexual, transgender or intersex persons and associations", - "values": [ - "Sexual Orientation and Gender Identity" - ] - }, - { - "text": "Continue its efforts aiming at increasing women's participation in political and public life ", - "values": [ - "Women's rights" - ] - }, - { - "text": "Consider the reestablishment of the Council for the Prevention of Racial Discrimination, Xenophobia and Related Intolerance", - "values": [ - "National Human Rights Institution", - "Racial discrimination" - ] - }, - { - "text": "Consider positively inviting the Special Rapporteur on the promotion and protection of human rights while countering terrorism ", - "values": [ - "Counter-terrorism", - "Special procedures" - ] - }, - { - "text": "Accede to CAT, the Optional Protocol thereto and the Optional Protocol to CRPD ", - "values": [ - "Detention", - "Disabilities", - "International instruments", - "Torture and other CID treatment" - ] - }, - { - "text": "Decriminalize same-sex consensual relationships and adopt all necessary measures to combat discrimination and violence based on sexual orientation or gender identity, and guarantee access of lesbian, gay, bisexual, transgender and intersex people to health services", - "values": [ - "Right to health", - "Sexual Orientation and Gender Identity" - ] - }, - { - "text": "Accede to the Palermo Protocol", - "values": [ - "International instruments", - "Trafficking" - ] - }, - { - "text": "Further encourage the dialogue with the secessionists with a view to ending the situation, which endangers the rights and fundamental freedom of all citizens of the Republic of Moldova recognized by the Constitution of 29 July 1994 ", - "values": [ - "Other" - ] - }, - { - "text": "Establish an independent national human rights institution in conformity with the Paris Principles\n", - "values": [ - "National Human Rights Institution" - ] - }, - { - "text": "Consider withdrawing reservations to article 18 of the International Covenant on Civil and Political Rights", - "values": [ - "Freedom of religion and belief", - "International instruments" - ] - }, - { - "text": "Improve the conditions of detention for those held on remand and for convicted persons ", - "values": [ - "Detention" - ] - }, - { - "text": "Continue promoting the participation of women in public affairs and socio-economic activities", - "values": [ - "Women's rights" - ] - }, - { - "text": "Continue with measures aimed at protecting and respecting civil and political rights", - "values": [ - "CP rights - general" - ] - }, - { - "text": "Re-establish a moratorium on the death penalty with the aim of abolishing it", - "values": [ - "Death penalty" - ] - }, - { - "text": "Intensify efforts to ratify Optional Protocol to the Convention against Torture to further foster the rights of liberty-deprived persons", - "values": [ - "Detention", - "International instruments", - "Torture and other CID treatment" - ] - }, - { - "text": "Guarantee the cooperation and responsiveness of financial institutions with regard to requests for the recovery of funds of illicit origin ", - "values": [ - "Other" - ] - }, - { - "text": "Repeal the provisions that criminalize consensual homosexual relations, notably those contained in the Sexual Offences Act and establish policies to combat discrimination, prejudice and violence based on sexual orientation or gender identity ", - "values": [ - "Sexual Orientation and Gender Identity" - ] - }, - { - "text": "Incorporate the Convention on the Elimination of all forms of Discrimination Against Women in its domestic law", - "values": [ - "International instruments", - "Women's rights" - ] - }, - { - "text": "Give tangible form to its wish to refurbish the National Human Rights Commission.", - "values": [ - "National Human Rights Institution" - ] - }, - { - "text": "Complete the reform of the judicial system.", - "values": [ - "Justice" - ] - }, - { - "text": "Take steps necessary to advance equal education and employment opportunities for women and girls and eliminate the worst forms of child labour", - "values": [ - "Labour", - "Right to education", - "Rights of the Child", - "Women's rights" - ] - }, - { - "text": "Authorise the launching of an independent international inquiry on the allegations on the violations of human rights in the Somali region since 2007, and bring those responsible to justice ", - "values": [ - "Justice" - ] - }, - { - "text": "Put an end to all forms of discrimination against women, both in law and in practice", - "values": [ - "Women's rights" - ] - }, - { - "text": "Allow access by humanitarian personnel to vulnerable populations in need of assistance and cooperate fully with the United Nations humanitarian organizations", - "values": [ - "Technical assistance and cooperation" - ] - }, - { - "text": "Further empower the socioeconomic development of the regions inhabited by the Amazigh peoples", - "values": [ - "Indigenous peoples", - "Minorities" - ] - }, - { - "text": "Repeal or amend legislation that discriminates against disabled person and children, with a focus on eradicating the practice of killing newborn children with disabilities, preventing violence at the hands of family members and society in general, and ensuring equal access to all public transportation and buildings ", - "values": [ - "Disabilities", - "Rights of the Child" - ] - }, - { - "text": "Strengthen cooperation with the treaty bodies by requesting the necessary technical assistance to this end", - "values": [ - "Technical assistance and cooperation", - "Treaty bodies" - ] - }, - { - "text": "Ratify the International Covenant on Economic, Social and Cultural Rights, the International Convention on the Elimination of All Forms of Racial Discrimination and the Convention against Torture and Other Cruel, Inhuman or Degrading Treatment or Punishment ", - "values": [ - "ESC rights - general", - "International instruments", - "Racial discrimination", - "Torture and other CID treatment" - ] - }, - { - "text": "Take measures towards respecting fully the principle of non-refoulement when it comes to a foreigner\u2019s refugee status", - "values": [ - "Asylum-seekers - refugees" - ] - }, - { - "text": "Positively consider adopting specific legislation on domestic violence, especially violence against women, with a view to ensuring synergy with the implementation of the national action plan 2015-2019 for combating genderbased violence", - "values": [ - "Rights of the Child", - "Women's rights" - ] - }, - { - "text": "Make the necessary legislative amendments to allow all children born in Lebanon to be entitled to the legal recognition through their birth registration", - "values": [ - "Rights of the Child", - "Statelessness and the right to nationality" - ] - }, - { - "text": "Strengthen the judicial system through financial support and effective anti-corruption measures", - "values": [ - "Corruption", - "Justice" - ] - }, - { - "text": "Adopt a specific policy to prevent and combat the increase in racist hate speech and crimes motivated by racial prejudice, the summary, extrajudicial or arbitrary executions to which the population in the midst of the armed conflicts is exposed, and sexual offences in the country", - "values": [ - "Extrajudicial executions", - "Racial discrimination" - ] - }, - { - "text": "Ratify the Optional Protocol to ICESCR, first Optional Protocol to ICCPR, Optional Protocol to CEDAW and the two Optional Protocols to CRC", - "values": [ - "CP rights - general", - "ESC rights - general", - "International instruments", - "Rights of the Child", - "Women's rights" - ] - }, - { - "text": "Consider amending a piece of legislation in Netherlands law to allow for the separation of juveniles from adults in correctional centres", - "values": [ - "Detention", - "Rights of the Child" - ] - }, - { - "text": "Consider ratification of the third protocol to the Convention on the Rights of the Child, thereby establishing a procedure for the presentation of communications", - "values": [ - "International instruments", - "Rights of the Child" - ] - }, - { - "text": "Take concrete steps to investigate the allegations, including legal action, and to prevent reoccurrence of the coercive sterilization of Roma women and compensate victims.", - "values": [ - "Minorities", - "Torture and other CID treatment", - "Women's rights" - ] - }, - { - "text": "Continue to take all efforts necessary to implement the recommendations of United Nations special procedures who have visited the country, and request international assistance to that end, if deemed necessary ", - "values": [ - "Special procedures", - "Technical assistance and cooperation" - ] - }, - { - "text": "Ensure that cases of violence against women are investigated, perpetrators prosecuted and victims awarded reparation", - "values": [ - "Women's rights" - ] - }, - { - "text": "Continue to further improve the already existing solid institutional framework regarding the protection of human rights and fundamental freedoms, and share best practices in this field ", - "values": [ - "General" - ] - }, - { - "text": "Continue to fulfil its obligations under the international human rights instruments", - "values": [ - "International instruments" - ] - }, - { - "text": "Establish an independent body for the promotion and protection of human rights in conformity with the Paris Principles.", - "values": [ - "National Human Rights Institution" - ] - }, - { - "text": "Implement effective measures to tackle child labour ", - "values": [ - "Labour", - "Rights of the Child" - ] - }, - { - "text": "Consider developing human rights indicators, as suggested by OHCHR, as an instrument that allows for a more precise and coherent evaluation of national human rights policies", - "values": [ - "Other" - ] - }, - { - "text": "Further improve measures aimed at combating human trafficking, including victim assistance", - "values": [ - "Trafficking" - ] - }, - { - "text": "Implement measures to protect detainees from torture, cruel, inhuman or degrading treatment and ensure that all cases of persons detained are brought to the attention of the judiciary without delay. ", - "values": [ - "Detention", - "Torture and other CID treatment" - ] - }, - { - "text": "Strengthen the mandate of the Ombudsperson and equip it to function in full conformity with the Paris Principles", - "values": [ - "National Human Rights Institution" - ] - }, - { - "text": "Carry out more efforts to combat all kinds of discrimination and violence against women", - "values": [ - "Women's rights" - ] - }, - { - "text": "Support the establishment of human rights units within more ministries ", - "values": [ - "Other" - ] - }, - { - "text": "Ensure that civil society representatives are accorded full and active participation in follow-up activities to the universal periodic review", - "values": [ - "Civil society", - "UPR process" - ] - }, - { - "text": "Continue to develop the health system through the strengthening of the right to enjoy health for all segments of the society", - "values": [ - "Right to health" - ] - }, - { - "text": "Consider the possibility of accession to CRPD", - "values": [ - "Disabilities", - "International instruments" - ] - }, - { - "text": "Take the necessary measures to ensure equal access for all to basic social services", - "values": [ - "ESC rights - general" - ] - }, - { - "text": "Continue its efforts to strengthen human rights, particularly within the framework of the family ", - "values": [ - "General" - ] - }, - { - "text": "Adopt promptly the bill that brings the definitions of torture and enforced disappearances in line with the human rights international instruments ", - "values": [ - "Enforced disappearances", - "International instruments", - "Torture and other CID treatment" - ] - }, - { - "text": "Implement all necessary measures in order to ensure that its national human rights body is in full compliance with the Paris Principles", - "values": [ - "National Human Rights Institution" - ] - }, - { - "text": "Incorporate international human rights instruments into domestic law, including the United Nations Convention against Torture and Other Cruel, Inhuman or Degrading Treatment or Punishment ", - "values": [ - "International instruments", - "Torture and other CID treatment" - ] - }, - { - "text": "Continue its endeavours to increase the quality and availability of education at all levels", - "values": [ - "Right to education" - ] - }, - { - "text": "Continue to extend and strengthen the system of primary healthcare and improve the quality of such services, with particular attention to indigenous women and peoples", - "values": [ - "Indigenous peoples", - "Right to health", - "Women's rights" - ] - }, - { - "text": "Raise, through education, the level of awareness and knowledge about human rights of the population, with a focus on the most vulnerable social groups, to ensure their full enjoyment of all human rights, in particular economic and social rights ", - "values": [ - "ESC rights - general", - "Human rights education and training" - ] - }, - { - "text": "Spare no effort in continuing to urge the prevention of acts of revenge and investigate abuses committed by its own combatants", - "values": [ - "International humanitarian law", - "Justice" - ] - }, - { - "text": "Expedite the preparatory work to establish a national human rights institution and an ombudsman, and provide the country with such institutions ", - "values": [ - "National Human Rights Institution" - ] - }, - { - "text": "Provide the national human rights institution with the necessary means for it to be in compliance with the Paris Principles", - "values": [ - "National Human Rights Institution" - ] - }, - { - "text": "Establish gender equality and implement measures to prevent violence against women", - "values": [ - "Women's rights" - ] - }, - { - "text": "Assist pregnant teenagers and teenage mothers to continue their education and guarantee the enjoyment of their fundamental rights", - "values": [ - "Right to education", - "Women's rights" - ] - }, - { - "text": "Implement the 2011 recommendations by European Union election observers concerning the equal political participation such as to increase number of women candidates to the National Assembly", - "values": [ - "Elections", - "Women's rights" - ] - }, - { - "text": "To examine the possibility of withdrawing or modifying reservations made by the Government to article 14, paragraph 2 (c) of the Convention on the Elimination of All Forms of Discrimination against Women", - "values": [ - "International instruments", - "Women's rights" - ] - }, - { - "text": "Continue to improve infrastructure and public services, especially medical and educational facilities in the rural areas", - "values": [ - "Right to education", - "Right to health" - ] - }, - { - "text": "Enact legislation establishing a clear definition of discrimination against women", - "values": [ - "Women's rights" - ] - }, - { - "text": "Continue efforts to implement the national strategy for combating terrorism and violent extremism", - "values": [ - "Counter-terrorism" - ] - }, - { - "text": "Prioritize actions to reduce and eradicate torture and ill-treatment and that allegations of torture and ill-treatment of convicted prisoners and detainees be investigated in a timely, transparent and independent fashion", - "values": [ - "Detention", - "Torture and other CID treatment" - ] - }, - { - "text": "Continue with efforts aimed at promoting truth, justice, memory and reparation for the serious human rights violations committed between 1974 and 1999 ", - "values": [ - "Justice" - ] - }, - { - "text": "Ratify CAT as soon as possible ", - "values": [ - "International instruments", - "Torture and other CID treatment" - ] - }, - { - "text": "Take the necessary steps to ensure that persons with disabilities have adequate means to participate in politics, especially in the electoral process", - "values": [ - "Detention", - "Elections" - ] - }, - { - "text": "Examine positively the ratification of the Convention on the Civil Aspects of International Child Abduction", - "values": [ - "International instruments", - "Rights of the Child" - ] - }, - { - "text": "Ratify the optional protocol to the Convention against Torture and other cruel, inhumane or degrading treatment or punishment ", - "values": [ - "Detention", - "International instruments", - "Torture and other CID treatment" - ] - }, - { - "text": "Sign and ratify the United Nations Convention on the Rights of Persons with Disabilities as soon as possible.", - "values": [ - "Disabilities", - "International instruments" - ] - }, - { - "text": "End the use of attitude adjustment sessions and the establishment of training camps", - "values": [ - "Detention", - "Justice" - ] - }, - { - "text": "Continue efforts in social and health insurance to the benefit of children with disabilities", - "values": [ - "Disabilities", - "Right to health", - "Rights of the Child" - ] - }, - { - "text": "Take urgent measures to repeal norms and regulations that discriminate against women and lesbian, gay, bisexual and transgender persons, as well as to investigate and punish perpetrators of acts of discrimination and violence against them", - "values": [ - "Sexual Orientation and Gender Identity", - "Women's rights" - ] - }, - { - "text": "Continue human rights education programmes, including in relation to the prevention of genocide and crimes against humanity through the studies of those crimes committed in the past", - "values": [ - "Human rights education and training", - "Justice" - ] - }, - { - "text": "Increase the efficiency and the systematic implementation of the law on the development of mining resources, in the field of employment, housing, social development and protection of the environment", - "values": [ - "Development", - "Environment", - "Justice", - "Right to housing" - ] - }, - { - "text": "Consider setting up an independent national human rights institution to oversee and monitor human rights situations in the country and to promote public awareness on the promotion and protection of human rights", - "values": [ - "National Human Rights Institution" - ] - }, - { - "text": "Scale up awareness-raising of new policies and legislation at the grass-roots level", - "values": [ - "Human rights education and training" - ] - }, - { - "text": "Seek the technical advice of the United Nations High Commissioner for Refugees to identify and prevent statelessness, and protect stateless persons, to address the challenges created by the ruling of the Constitutional Court ", - "values": [ - "Statelessness and the right to nationality", - "Technical assistance and cooperation" - ] - }, - { - "text": "Continue with the constitution making process, which should be transparent and include consultations with civil society", - "values": [ - "Civil society" - ] - }, - { - "text": "Transmit to the Committee on the Elimination of Racial Discrimination its overdue national reports, in order to share its experience in this domain.", - "values": [ - "Racial discrimination", - "Treaty bodies" - ] - }, - { - "text": "Accelerate the implementation of legislation prohibiting the worst forms of child labour", - "values": [ - "Labour", - "Rights of the Child" - ] - }, - { - "text": "Redouble its efforts in implementing poverty alleviation projects and promoting the development of impoverished areas", - "values": [ - "Poverty" - ] - }, - { - "text": "Ratify the Hague Convention on Protection of Children and Cooperation in respect of Intercountry Adoption", - "values": [ - "International instruments", - "Rights of the Child" - ] - }, - { - "text": "Continue to avail itself of bilateral and international partnerships, including with various United Nations Funds, Programmes and Specialized Agencies, in areas which prove beneficial to the country", - "values": [ - "Technical assistance and cooperation" - ] - }, - { - "text": "Conduct a thorough review of criminal justice procedures in order to identify measures to reduce the length of detention without trial", - "values": [ - "Detention" - ] - }, - { - "text": "Continue to implement the national strategy for the total elimination of FGM and all forms of excision ", - "values": [ - "Rights of the Child", - "Torture and other CID treatment", - "Women's rights" - ] - }, - { - "text": "A Witness and Victim Protection Bill will be introduced in Parliament shortly and measures will be taken to implement the legislation including the establishment of the necessary institutions.", - "values": [ - "Justice" - ] - }, - { - "text": "Uphold the right to freedom of expression, including journalists and human rights defenders, in particular taking steps to ensure that defamation charges are not used to undermine the right to freedom of expression", - "values": [ - "Freedom of opinion and expression", - "Freedom of the press", - "Human rights defenders" - ] - }, - { - "text": "Adopt appropriate measures with a view to integrating women more in economic activities and guarantee them the right to equal treatment and equal pay for work of equal value", - "values": [ - "Women's rights" - ] - }, - { - "text": "Take further measures to fully and effectively implement the law that detail enforcement and redress mechanisms for women and children facing domestic violence", - "values": [ - "Rights of the Child", - "Women's rights" - ] - }, - { - "text": "Continue its efforts to promote women\u2019s rights by increasing the representation of women in both the public and private sectors", - "values": [ - "Women's rights" - ] - }, - { - "text": "Take measures to improve the situation of widows and girl orphans, including by ensuring protection of inheritance through enforcement of legislative provisions.", - "values": [ - "Rights of the Child", - "Women's rights" - ] - }, - { - "text": "Put in place a comprehensive political strategy and develop specific legislation aimed at eliminating violence and discrimination against women, in accordance with the Convention on the Eliminations of All Forms of Discrimination against Women", - "values": [ - "International instruments", - "Women's rights" - ] - }, - { - "text": "Continue to take measures to guarantee the right that its people have to enjoy a sustainable environment", - "values": [ - "Environment" - ] - }, - { - "text": "Take all necessary measures to ensure that girls are protected against any discrimination and violence in schools, and that pregnant teenagers enjoy equal access to education", - "values": [ - "Right to education", - "Rights of the Child", - "Women's rights" - ] - }, - { - "text": "Develop and implement public awareness campaigns and education programmes to promote diversity and inclusion, while combating racism and xenophobia", - "values": [ - "Human rights education and training", - "Racial discrimination" - ] - }, - { - "text": "Continue strengthening access to education, in particular, to orphans, children with disabilities and children of missing parents", - "values": [ - "Disabilities", - "Right to education", - "Rights of the Child" - ] - }, - { - "text": "Continue to improve the living conditions of Roma people", - "values": [ - "Minorities" - ] - }, - { - "text": "Establish a mechanism for monitoring public policies that protect the rights of persons with disabilities, especially in the areas of education, health and employment", - "values": [ - "Disabilities", - "Labour", - "Right to education", - "Right to health" - ] - }, - { - "text": "Disseminate a culture of human rights and strengthen its national efforts to protect human rights, while respecting its cultural specificities and the Islamic Shari'a ", - "values": [ - "Human rights education and training" - ] - }, - { - "text": "Undertake a comprehensive legal and cultural awareness-raising campaign on sexual and gender-based violence including issues such as rape, forced marriage, female genital mutilation and domestic violence", - "values": [ - "Human rights education and training", - "Rights of the Child", - "Torture and other CID treatment", - "Women's rights" - ] - }, - { - "text": "Improve detention conditions in their prisons, especially when it comes to prisons for women ", - "values": [ - "Detention", - "Women's rights" - ] - }, - { - "text": "Enact legislation on domestic violence as a matter of priority and increase access to justice for victims of\nsuch violations", - "values": [ - "Rights of the Child", - "Women's rights" - ] - }, - { - "text": "Continue efforts in the submission of periodic reports, including by utilizing the potential offered by international cooperation and technical assistance ", - "values": [ - "Technical assistance and cooperation", - "Treaty bodies" - ] - }, - { - "text": "Ensure that the new Constitution fully guarantees the right to freedom of religion or belief and the right to equality and non-discrimination in line with international standards ", - "values": [ - "Freedom of religion and belief" - ] - }, - { - "text": "Ratify the Rome Statute of the International Criminal Court, the International Covenant on Economic, Social and Cultural Rights and its Optional Protocol, as well as the First Optional Protocol to the International Covenant on Civil and Political Rights", - "values": [ - "CP rights - general", - "ESC rights - general", - "International instruments", - "Justice" - ] - }, - { - "text": "Continue to prioritize efforts to prevent and tackle violence against women, and work with relevant stakeholders to strengthen the national victim support system", - "values": [ - "Women's rights" - ] - }, - { - "text": "Continue to move forward in the execution of projects aimed at protecting women, specifically indigenous women", - "values": [ - "Indigenous peoples", - "Women's rights" - ] - }, - { - "text": "Effectively implement the Standard Operational Procedures on the prevention and management of Gender-Based Violence, including through adequate funding", - "values": [ - "Rights of the Child", - "Women's rights" - ] - }, - { - "text": "Review their national laws and policies in order to ensure that all surveillance of digital communications is consistent with its international human rights obligations and is conducted on the basis of a legal framework which is publicly accessible, clear, precise, comprehensive and non- discriminatory", - "values": [ - "Freedom of opinion and expression", - "International instruments", - "Privacy" - ] - }, - { - "text": "Ensure that access to HIV treatment is accessible to all who need it without any discrimination", - "values": [ - "HIV - Aids" - ] - }, - { - "text": "Reduce entry visa fees for foreign journalists", - "values": [ - "Freedom of the press" - ] - }, - { - "text": "Ensure access of migrants to consular assistance ", - "values": [ - "Migrants" - ] - }, - { - "text": "Improve its implementation of the Constitutional Court ruling regarding the use of the Slovenian language in Carinthia province ", - "values": [ - "Minorities" - ] - }, - { - "text": "Take measures to develop an integral plan of action to combat trafficking and the sexual exploitation of women and girls, including through medical and psychological assistance to victims of these crimes", - "values": [ - "Rights of the Child", - "Trafficking", - "Women's rights" - ] - }, - { - "text": "Consider the measures eventually leading to the abolishment of capital punishment in the country", - "values": [ - "Death penalty" - ] - }, - { - "text": "Continue their great efforts to put an end to all practices likely to interfere with the peaceful coexistence among the different groups of the multi-ethnic society of Australia ", - "values": [ - "Minorities" - ] - }, - { - "text": "Take action to bring other remaining armed groups, who are not among 8 major ethnic groups that recently signed the National Ceasefire Agreement, into an inclusive peace process", - "values": [ - "International humanitarian law" - ] - }, - { - "text": "Ratify the core international human rights instruments including the International Convention on the Protection of the Rights of All Migrant Workers and Members of Their Families", - "values": [ - "International instruments", - "Labour", - "Migrants" - ] - }, - { - "text": "Allocate adequate resources for the implementation of its National Action Plan on Human Rights", - "values": [ - "General" - ] - }, - { - "text": "Enforce existing criminal laws including ensuring that perpetrators of gender-based violence and bride kidnapping and abductions are brought to justice", - "values": [ - "Rights of the Child", - "Women's rights" - ] - }, - { - "text": "Work on strengthening international cooperation in the field of human rights ", - "values": [ - "Technical assistance and cooperation" - ] - }, - { - "text": "Continue to pay attention to the protection of political rights and civil freedoms ", - "values": [ - "CP rights - general" - ] - }, - { - "text": "Take further steps to promote greater media freedom, including by ensuring that the Rwanda Media Commission becomes a more independent self-regulatory body", - "values": [ - "Freedom of the press" - ] - }, - { - "text": "Include children\u2019s participation in formal consultative processes that require citizens\u2019 contributions", - "values": [ - "Rights of the Child" - ] - }, - { - "text": "Continue strengthening the social protection programmes adopted for persons with disabilities ", - "values": [ - "Disabilities" - ] - }, - { - "text": "Implement recommendations of the 2011 international election observation missions with special emphasis on the enhancement of equal participation of women in political life", - "values": [ - "Elections", - "Women's rights" - ] - }, - { - "text": "Seek technical and financial assistance by the international community in order to contribute to further promotion of economic, social and cultural rights, including the right to development for better realization of the Millennium Development Goals", - "values": [ - "Development", - "ESC rights - general", - "Technical assistance and cooperation" - ] - }, - { - "text": "Continue efforts in the field of legislative and institutional developments ", - "values": [ - "General" - ] - }, - { - "text": "Continue actions for the promotion and protection of the human rights of peasants and other persons working in the rural areas ", - "values": [ - "Other" - ] - }, - { - "text": "Mainstream human rights and transitional justice issues into any future national reconciliation negotiations.", - "values": [ - "Justice" - ] - }, - { - "text": "Provide specific training aimed at the protection of human rights in particular of women, children and persons of minority ethnicity, sexual orientation or gender identity to all law enforcement and judicial officials.", - "values": [ - "Human rights education and training", - "Minorities", - "Rights of the Child", - "Sexual Orientation and Gender Identity", - "Women's rights" - ] - }, - { - "text": "Study the possibility to decriminalize relationships between consenting adults of the same sex ", - "values": [ - "Sexual Orientation and Gender Identity" - ] - }, - { - "text": "Consider potential areas of expansion for the National Council on Social Issues to enable it to further promote respect for fundamental rights and freedoms for all Brunei Darussalam Darussalam's citizens ", - "values": [ - "General" - ] - }, - { - "text": "Step up efforts for the protection of schools with a view to ensuring that education may continue", - "values": [ - "Right to education" - ] - }, - { - "text": "Extend a standing invitation to special procedure mandate holders", - "values": [ - "Special procedures" - ] - }, - { - "text": "Continue efforts to improve all political as well as economic, social and cultural rights in conformity with the universally agreed human rights standards and norms.", - "values": [ - "CP rights - general", - "ESC rights - general" - ] - }, - { - "text": "Invite NGOs working on press freedom to a constructive dialogue on how Mexico can stop the violence against journalists and ensure press freedom", - "values": [ - "Civil society", - "Freedom of the press" - ] - }, - { - "text": "Continue its efforts to protect persons with disabilities against violence, exploitation and abuse", - "values": [ - "Disabilities" - ] - }, - { - "text": "Implement the recommendations of the UN Panel of Experts on accountability, bringing all those allegedly responsible for violations of international human rights law and international humanitarian law to justice in compliance with international standards", - "values": [ - "International humanitarian law", - "International instruments", - "Justice" - ] - }, - { - "text": "Speed up the process for bringing the National Human Rights Commission in line with the Paris Principles", - "values": [ - "National Human Rights Institution" - ] - }, - { - "text": "Step up efforts to stop and to prevent that parties to the conflict continue to recruit children. ", - "values": [ - "Rights of the Child" - ] - }, - { - "text": "Fully implement national legislation on trafficking and address root causes of trafficking", - "values": [ - "Trafficking" - ] - }, - { - "text": "Continue working closely with the Independent Expert on the situation of human rights in Haiti ", - "values": [ - "Special procedures" - ] - }, - { - "text": "Take all necessary measures to prevent torture and other cruel, inhuman and degrading treatment or punishment.", - "values": [ - "Torture and other CID treatment" - ] - }, - { - "text": "Reinforce its actions with further measures to promote the systematic integration of gender approach in the public policies and to provide relevant statistics on this aspect", - "values": [ - "Women's rights" - ] - }, - { - "text": "Ensure that the National Human Rights Commission with the sufficient resources to be able to acquit itself of its mandate, fully respecting the Paris Principles", - "values": [ - "National Human Rights Institution" - ] - }, - { - "text": "Continue to implement policies to protect women against violence and promote gender equality", - "values": [ - "Women's rights" - ] - }, - { - "text": "Ireland was also committed to ratification of the Aarhus Convention", - "values": [ - "Freedom of opinion and expression", - "International instruments" - ] - }, - { - "text": "End and prohibit torture ", - "values": [ - "Torture and other CID treatment" - ] - }, - { - "text": "Take all necessary measures to ensure the effective implementation of the Criminal Code, which sanctions the crime of femicide", - "values": [ - "Women's rights" - ] - }, - { - "text": "Fight against all forms of discrimination and abuse of migrant workers, particularly women", - "values": [ - "Labour", - "Migrants", - "Women's rights" - ] - }, - { - "text": "Adopt and implement policies for combating discrimination and violence against women, especially domestic and sexual violence ", - "values": [ - "Women's rights" - ] - }, - { - "text": "Continue to provide and improve programmes on human rights for the judiciary, law enforcement personnel and lawyers ", - "values": [ - "Human rights education and training", - "Justice" - ] - }, - { - "text": "Continue the process of bringing its national legislation in line with international standards", - "values": [ - "General" - ] - }, - { - "text": "Adapt recruitment guidelines of the police and security forces in order to guarantee the proportional representation of ethnic minorities and an increased representation of women", - "values": [ - "Minorities", - "Women's rights" - ] - }, - { - "text": "Seek the support of the international community in its post-conflict reconstruction phase, including capacity-building and training and institution building in the area of promotion and protection of human rights. ", - "values": [ - "Human rights education and training", - "Technical assistance and cooperation" - ] - }, - { - "text": "Establish a system for the management of complaints of torture and ill-treatment by police and security forces to ensure that such acts, committed against civilians or prisoners, are effectively investigated and sanctioned", - "values": [ - "Human rights violations by state agents", - "Torture and other CID treatment" - ] - }, - { - "text": "Ratify the International Convention on the Protection of the Rights of All Migrant Workers and Members of Their Families", - "values": [ - "International instruments", - "Labour", - "Migrants" - ] - }, - { - "text": "Ratify international instruments to which Viet Nam is not yet a party ", - "values": [ - "International instruments" - ] - }, - { - "text": "Monitor the incidence of and combat xenophobia, and promote intercultural understanding and tolerance ", - "values": [ - "Racial discrimination" - ] - }, - { - "text": "Continue efforts in the field of judicial and penitentiary reforms", - "values": [ - "Detention", - "Justice" - ] - }, - { - "text": "Step up efforts to ensure that the country's immigration laws and regulations are in line with its international human rights obligations ", - "values": [ - "International instruments", - "Migrants" - ] - }, - { - "text": "Bring legislation and law enforcement practice on migrants and asylum-seekers in conformity with human rights international norms and standards", - "values": [ - "Asylum-seekers - refugees", - "International instruments", - "Migrants" - ] - }, - { - "text": "Amend its Citizenship Act to avoid discrimination on the basis of sex and mitigates discrimination of women in employment and reduce existing wage gaps ", - "values": [ - "Women's rights" - ] - }, - { - "text": "Ratify the Optional Protocol to the Convention on the Rights of the Child on the sale of children, child prostitution and child pornography and the Convention on the Rights of Persons with Disabilities ", - "values": [ - "Disabilities", - "International instruments", - "Labour", - "Rights of the Child", - "Trafficking" - ] - }, - { - "text": "Ratify the 1954 Convention relating to the Status of Stateless Persons as well as the 1961 Convention on the Reduction of Statelessness", - "values": [ - "International instruments", - "Statelessness and the right to nationality" - ] - }, - { - "text": "Consider ratifying the human rights treaties it has not yet ratified", - "values": [ - "International instruments" - ] - }, - { - "text": "Adopt reforms allowing women the transmission of citizenship as a measure in favour of gender equality and the reduction of cases of statelessness ", - "values": [ - "Statelessness and the right to nationality", - "Women's rights" - ] - }, - { - "text": "Consider ratifying ILO Convention No. 189 ", - "values": [ - "International instruments", - "Labour" - ] - }, - { - "text": "Continue to prioritise education in its development plans, and to invest sufficient resources to education as a means of helping its citizens achieve their aspirations", - "values": [ - "Development", - "Right to education" - ] - }, - { - "text": "Restrain detention of asylum seekers to exceptional cases, always seeking the judicial review of these detentions, in accordance with human rights international law", - "values": [ - "Asylum-seekers - refugees", - "Detention" - ] - }, - { - "text": "On the recommendations relating to the gender equality and the fight against violence against women, the delegation stated that the Government was committed to continue its social and institutional reforms so that women were protected against all forms of violence.", - "values": [ - "Women's rights" - ] - }, - { - "text": "Further focus its national spending on improving health and education services and increasing the availability of social housing ", - "values": [ - "Right to education", - "Right to health", - "Right to housing" - ] - }, - { - "text": "Fight female genital mutilation and early marriage", - "values": [ - "Rights of the Child", - "Torture and other CID treatment", - "Women's rights" - ] - }, - { - "text": "Further increase efforts to reduce infections and to combat discrimination against persons infected with HIV/AIDS", - "values": [ - "HIV - Aids" - ] - }, - { - "text": "Protect the rights of indigenous peoples, peasants and other people working in rural areas", - "values": [ - "Indigenous peoples" - ] - }, - { - "text": "Adopt a comprehensive legislative framework concerning violence against women that includes a definition of rape in line with international standards and criminalize marital rape", - "values": [ - "Women's rights" - ] - }, - { - "text": "Enact legislation that clearly defines discrimination against women and provides for effective remedies ", - "values": [ - "Women's rights" - ] - }, - { - "text": "Adopt laws and promote programmes aimed at eliminating gender inequality, especially as regards access to opportunities and remuneration for men and women ", - "values": [ - "Women's rights" - ] - }, - { - "text": "Facilitate complaints from victims of gender-based violence and their access to justice, prosecute and punish the perpetrators and protect the victims", - "values": [ - "Women's rights" - ] - }, - { - "text": "Ensure that the National Human Rights Commission operates in line with the Paris Principles", - "values": [ - "National Human Rights Institution" - ] - }, - { - "text": "Amend the Press and Publication Act by repealing provisions that curtail journalists' rights and prescribe excessive penalties ", - "values": [ - "Freedom of the press" - ] - }, - { - "text": "Continue its efforts to bring about the prompt ratification of the Convention against Torture and Other Cruel, Inhuman or Degrading Treatment or Punishment and its Optional Protocol", - "values": [ - "Detention", - "International instruments", - "Torture and other CID treatment" - ] - }, - { - "text": "Uphold the inherent right to life by ensuring the right to liberty and security of the human person and by abolishing the death penalty", - "values": [ - "Death penalty" - ] - }, - { - "text": "That the proposed National Gender Policy should incorporate gender mainstreaming policies in all aspects of Federated States of Micronesia domestic law and policy", - "values": [ - "Women's rights" - ] - }, - { - "text": "Fully implement its commitments under Human Rights Council resolution 30/1", - "values": [ - "Justice" - ] - }, - { - "text": "Take measures to adequately protect human rights defenders, to ensure proper investigation into alleged attacks and to prosecute those found responsible", - "values": [ - "Human rights defenders" - ] - }, - { - "text": "Increase efforts to reduce infant, neonatal and maternal mortality, through systematic prevention and treatment mechanisms and accessible maternal and infant health-care services", - "values": [ - "Right to health", - "Rights of the Child", - "Women's rights" - ] - }, - { - "text": "Ensure that training of all military and security personnel does include a human rights component and that respect and protection of human rights during service is ensured and monitored", - "values": [ - "Human rights education and training" - ] - }, - { - "text": "Ratify International Labour Organization (ILO) fundamental conventions and in particular the Indigenous and Tribal Peoples Convention No. 169.", - "values": [ - "Indigenous peoples", - "International instruments", - "Labour" - ] - }, - { - "text": "Consolidate further and exchange its experiences in programmes aimed at specialized care for young people, taking into account their interests and socioeconomic situation, all of which helps young people to develop their full potential", - "values": [ - "Rights of the Child" - ] - }, - { - "text": "Intensify cooperation with the Council of Europe, in particular the Venice Commission, in properly implementing freedom of association and assembly ", - "values": [ - "Freedom of association and peaceful assembly" - ] - }, - { - "text": "Germany is committed to the absolute prohibition of torture and other cruel, inhumane or degrading treatment or punishment.", - "values": [ - "Torture and other CID treatment" - ] - }, - { - "text": "Consider the possibility to ratify the Optional Protocol to national Covenant on Civil and Political Rights ", - "values": [ - "CP rights - general", - "International instruments" - ] - }, - { - "text": "Adopt a moratorium on the death penalty with a view to abolishing it as the final goal ", - "values": [ - "Death penalty" - ] - }, - { - "text": "Increase its efforts to combat racial discrimination against Muslims and foster dialogue with Muslim communities", - "values": [ - "Freedom of religion and belief", - "Minorities", - "Racial discrimination" - ] - }, - { - "text": "Continue enhancing its efforts on strengthening women's rights through its National Strategy for the Advancement of Women 2013-2017", - "values": [ - "Women's rights" - ] - }, - { - "text": "Adopt a national action plan on Security Council resolution 1325 on women peace and security", - "values": [ - "Women's rights" - ] - }, - { - "text": "Establish a national human rights institution in conformity with the Paris Principles ", - "values": [ - "National Human Rights Institution" - ] - }, - { - "text": "Ratify the ICESCR, CEDAW, CRC the CRPD, the Additional Protocol I and II - 1977 -, to the Geneva Conventions, the ICC Statute, as well as the 1st and 2nd Protocol to the Hague Convention 1954", - "values": [ - "International humanitarian law", - "International instruments" - ] - }, - { - "text": "Abolish the death penalty and consider withdrawing reservations submitted by Tunisia to the Second Optional Protocol to the International Covenant on Civil and Political Rights as announced by the Government", - "values": [ - "Death penalty", - "International instruments" - ] - }, - { - "text": "Enact the prohibition of female genital mutilation, and strengthen its awareness-raising and educational efforts to eliminate that practice and its underlying cultural justifications ", - "values": [ - "Human rights education and training", - "Rights of the Child", - "Torture and other CID treatment", - "Women's rights" - ] - }, - { - "text": "Ratify the Second Optional Protocol to ICCPR and implement its provisions in national legislation through the abolition of the death penalty ", - "values": [ - "Death penalty", - "International instruments" - ] - }, - { - "text": "Take action to encourage pregnant and-or married girls and women to continue their education ", - "values": [ - "Rights of the Child", - "Women's rights" - ] - }, - { - "text": "Develop the culture of human rights on the basis of awareness- raising work and educational program", - "values": [ - "Human rights education and training" - ] - }, - { - "text": "Take more steps to expand free education to cover all grades in secondary schools", - "values": [ - "Right to education" - ] - }, - { - "text": "Take immediate steps to implement all decisions of the Constitutional Court concerning bilingual topography and Slovenian as an official language in the province of Carinthia ", - "values": [ - "Minorities" - ] - }, - { - "text": "Immediately ensure the right of return to all Palestinian refugees in line with international law and relevant resolutions, in particular resolution 194", - "values": [ - "Asylum-seekers - refugees" - ] - }, - { - "text": "Raise awareness campaign about rights of migrants and against racial discrimination ", - "values": [ - "Human rights education and training", - "Migrants", - "Racial discrimination" - ] - }, - { - "text": "Consider the possibility of ratifying the Convention against Torture and Other Cruel, Inhuman or Degrading Treatment or Punishment and its Optional Protocol", - "values": [ - "Detention", - "International instruments", - "Torture and other CID treatment" - ] - }, - { - "text": "Address the structural causes of poverty faced by the most economically vulnerable communities, in particular regarding chronic malnutrition", - "values": [ - "Poverty", - "Right to food" - ] - }, - { - "text": "Continue to promote the empowerment of women, particularly their employment and participation in politics and the decision-making process ", - "values": [ - "Women's rights" - ] - }, - { - "text": "Extend standing invitation to all special procedures mandate holders", - "values": [ - "Special procedures" - ] - }, - { - "text": "Consider measures in order to prevail the situation of the high level domestic violence ", - "values": [ - "Rights of the Child", - "Women's rights" - ] - }, - { - "text": "Fully implement the World Programme for Human Rights Education and develop a national action plan in this field, including activities of human rights training for all public officials and law enforcement agents ", - "values": [ - "Human rights education and training", - "Right to education" - ] - }, - { - "text": "Diligently work towards achieving its noble target to ensure free primary and secondary education schooling", - "values": [ - "Right to education" - ] - }, - { - "text": "Define expectations from relevant United Nations organizations and agencies with regards to technical and financial assistance and to solicit, therefore, the necessary international assistance to overcome material and infrastructural constraints mentioned in its national report", - "values": [ - "Technical assistance and cooperation" - ] - }, - { - "text": "Strengthen the capacity of the law enforcement agencies to combat the phenomenon of human trafficking", - "values": [ - "Trafficking" - ] - }, - { - "text": "Make sure prisoners and detainees have access at all times to their rights and descriptions of proper treatment, including those laid down in the Standard Minimum Rules and the Body of Principles for the Protection of Detainees and make sure that they have access to effective procedures to realize these rights ", - "values": [ - "Detention" - ] - }, - { - "text": "Alleviate barriers pertaining to the process of applying for family reunifications", - "values": [ - "Migrants" - ] - }, - { - "text": "Strengthen training and education programmes on human rights for law enforcement officials", - "values": [ - "Human rights education and training" - ] - }, - { - "text": "Establish necessary mechanisms to eradicate extrajudicial, summary and arbitrary executions by bringing perpetrators to justice and intensifying efforts to eradicate the use of torture and inhuman and degrading treatment", - "values": [ - "Extrajudicial executions", - "Torture and other CID treatment" - ] - }, - { - "text": "Take all necessary measures to eliminate discrimination against women and girls, particularly in relation to marriage, land ownership and inheritance rights", - "values": [ - "Right to land", - "Rights of the Child", - "Women's rights" - ] - }, - { - "text": "Take steps in order to alleviate the scale of overcrowding in prisons and improve the conditions of those detained", - "values": [ - "Detention" - ] - }, - { - "text": "Investigate the cases of domestic violence that continue to be reported and ensure perpetrators are punished", - "values": [ - "Rights of the Child", - "Women's rights" - ] - }, - { - "text": "Introduce and enforce legislation prohibiting corporal punishment of children in all settings, including in the family, schools and all places of deprivation of liberty", - "values": [ - "Detention", - "Rights of the Child", - "Torture and other CID treatment" - ] - }, - { - "text": "Request the Sub-committee on the Prevention of Torture to publicly release the report of its September 2011 visit", - "values": [ - "Torture and other CID treatment", - "Treaty bodies" - ] - }, - { - "text": "Increase the number of women in management posts and in decision-making processes and envisage establishing full legislative provisions to promote and protect the rights of women \n\n", - "values": [ - "Women's rights" - ] - }, - { - "text": "Take measures with a view to ending discrimination against women and children", - "values": [ - "Rights of the Child", - "Women's rights" - ] - }, - { - "text": "Pay particular attention to the vulnerable situation of migrants, especially women in an irregular situation ", - "values": [ - "Migrants", - "Women's rights" - ] - }, - { - "text": "Facilitate social inclusion of women to prevent violence against women and children as well as discrimination based on sex and social status, by improving domestic mechanisms and the adoption of legislative measures for the social integration of women", - "values": [ - "Rights of the Child", - "Women's rights" - ] - }, - { - "text": "Intensify efforts to put an end to the male guardianship system over women, modify negative stereotypes and cultural practices that discriminate against women and carry out the necessary legislative changes, including to make it possible for women to drive vehicles", - "values": [ - "Women's rights" - ] - }, - { - "text": "Continue to implement programmes and measures intended to guarantee the right to health and the right to education", - "values": [ - "Right to education", - "Right to health" - ] - }, - { - "text": "Continue efforts as to ensure that MDG1 can be achieved for 2015, so that its population be able to fully enjoy the rights inherent to a decent and respectable life", - "values": [ - "Development" - ] - }, - { - "text": "Reduce maternal, child and infant morbidity and mortality by promoting effective assistance measures during pregnancy and at the moment of birth ", - "values": [ - "Right to health", - "Rights of the Child", - "Women's rights" - ] - }, - { - "text": "Take steps to decriminalize homosexuality and promote respect for the principles of equality and non-discrimination against lesbian, gay, bisexual, transgender and intersex persons", - "values": [ - "Sexual Orientation and Gender Identity" - ] - }, - { - "text": "With the support from the international community, make efforts to integrate a human rights approach in public policies and establish a credible data collection centre", - "values": [ - "Technical assistance and cooperation" - ] - }, - { - "text": "Adopt the necessary measures to put an end to the practice of interception and return of asylum seekers, in conformity with international refugee law and international human rights law", - "values": [ - "Asylum-seekers - refugees", - "International instruments" - ] - }, - { - "text": "Continue the efforts already deployed to strengthen democratic institutions and to re-establish constitutional order delivered by the strengthening of the Rule of Law and of the judicial system as well as by providing for increased protection for women and children", - "values": [ - "Justice", - "Rights of the Child", - "Women's rights" - ] - }, - { - "text": "Continue its efforts to prevent, punish and eradicate all forms of violence against women as well overcoming stereotypes which provoke genderbased discrimination ", - "values": [ - "Women's rights" - ] - }, - { - "text": "Take appropriate steps with a view to releasing all imprisoned conscientious objectors without delay ", - "values": [ - "Freedom of religion and belief" - ] - }, - { - "text": "Secure the effective functioning of its national preventive mechanism in accordance with OP-CAT ", - "values": [ - "Detention", - "International instruments", - "Torture and other CID treatment" - ] - }, - { - "text": "Become a party to the Optional Protocol to CEDAW.", - "values": [ - "International instruments", - "Women's rights" - ] - }, - { - "text": "Further pursue its efforts to promote sustainable economic and social development and further strengthen social security so that its people can enjoy all human rights", - "values": [ - "Development", - "ESC rights - general" - ] - }, - { - "text": "Increase its efforts to prevent acts of discrimination against migrants.", - "values": [ - "Migrants", - "Racial discrimination" - ] - }, - { - "text": "Consider extending an open and standing invitation to the special procedures of the United Nations, which may contribute to interactive cooperation with the system ", - "values": [ - "Special procedures" - ] - }, - { - "text": "End impunity for the perpetrators of violence related to the 2007 elections", - "values": [ - "Elections" - ] - }, - { - "text": "Introduce a permanent de facto and de jure moratorium on death penalties with a view to adopting a law abolishing the death penalty, and commute without delay all death sentences to terms of imprisonment", - "values": [ - "Death penalty" - ] - }, - { - "text": "Implement specific legislation to protect women against sexual and gender-based violence and ensure that Nigerian women benefit from full equality before the law", - "values": [ - "Women's rights" - ] - }, - { - "text": "Amend legislation to remove all provisions granting security forces or Government officials immunity from prosecution for criminal acts", - "values": [ - "Human rights violations by state agents", - "Justice" - ] - }, - { - "text": "Amend the Anti-Terrorism Proclamation with a view to bringing this Proclamation into conformity with international human rights standards and narrow the definition of terrorism used ", - "values": [ - "Counter-terrorism", - "International instruments" - ] - }, - { - "text": "Continue to implement policy measures to ensure that quality healthcare is accessible to all, particularly women and children", - "values": [ - "Right to health", - "Rights of the Child", - "Women's rights" - ] - }, - { - "text": "Take all necessary measures to abolish the death penalty and ratify, the Second Optional Protocol to the ICCPR ", - "values": [ - "Death penalty", - "International instruments" - ] - }, - { - "text": "Intensify programs to combat unemployment and poverty ", - "values": [ - "Development", - "Poverty" - ] - }, - { - "text": "Pursue its efforts in the field of promoting gender equality so that the rights of women are a reality in our Muslim world ", - "values": [ - "Women's rights" - ] - }, - { - "text": "Consider releasing, on humanitarian grounds, inmates whose detention puts at risk their health and life", - "values": [ - "Detention" - ] - }, - { - "text": "Continue harmonizing its national legislation in line with commitments assumed at the international level", - "values": [ - "Disabilities" - ] - }, - { - "text": "Improve the situation of the Beduns by considering the possibility of acceding to the Convention on refugees and its protocol, as well as to the conventions dealing with statelessness ", - "values": [ - "Asylum-seekers - refugees", - "International instruments", - "Statelessness and the right to nationality" - ] - }, - { - "text": "Guarantee the proper functioning of the National Human Rights Commission and its independence in conformity with the Paris principles", - "values": [ - "National Human Rights Institution" - ] - }, - { - "text": "Bring its domestic legislation fully into line with international human rights instruments", - "values": [ - "International instruments" - ] - }, - { - "text": "Promote respect for human rights of all discriminated groups on grounds of gender, sexual orientation, disability or ethnicity", - "values": [ - "Disabilities", - "Minorities", - "Racial discrimination", - "Sexual Orientation and Gender Identity", - "Women's rights" - ] - }, - { - "text": "Modify the criminal codes to clearly address hate speech and racial and religious incitement in the context of election campaigns ", - "values": [ - "Freedom of religion and belief", - "Racial discrimination" - ] - }, - { - "text": "Continue to implement National Human Rights Road Framework", - "values": [ - "General" - ] - }, - { - "text": "Strengthen its good governance and reform process of its judicial system and national mechanism for human rights, with more focus on employment, social welfare, education and health care, especially for families in rural areas and vulnerable groups of women, children and persons with difficulties", - "values": [ - "Justice" - ] - }, - { - "text": "Establish a National Children's Commissioner to monitor compliance with CRC ", - "values": [ - "International instruments", - "Rights of the Child" - ] - }, - { - "text": "Submit its report to the Committee on the Elimination of Racial Discrimination as soon as possible.", - "values": [ - "Racial discrimination", - "Treaty bodies" - ] - }, - { - "text": "Establish a moratorium on the use of the death penalty with a view to abolishing capital punishment for all crimes", - "values": [ - "Death penalty" - ] - }, - { - "text": "Ensure the independent and objective investigation of all cases of police arbitrariness, including murders, torture, arbitrary, detention, use of military equipment and seizure of property", - "values": [ - "Detention", - "Extrajudicial executions", - "Human rights violations by state agents", - "Torture and other CID treatment" - ] - }, - { - "text": "End intimidation, threats and physical attacks on journalists and promote open reporting and commentary on issues of public concern", - "values": [ - "Freedom of the press" - ] - }, - { - "text": "Amend the penal code and domestic abuse laws to prohibit all forms of domestic abuse, not just abuse deemed habitual or excessive", - "values": [ - "Rights of the Child", - "Torture and other CID treatment", - "Women's rights" - ] - }, - { - "text": "Continue its efforts to improve the quality of health services for mothers and children, including the education of pregnant women and mothers with a view to decreasing maternal and neonatal mortality rates, and to seek the assistance of the international community with a view to providing better health services to the people ", - "values": [ - "Right to health", - "Rights of the Child", - "Technical assistance and cooperation", - "Women's rights" - ] - }, - { - "text": "Ensure the issuance of legal documents for stateless persons while working on a systemic resolution of statelessness in the country in accordance with international standards", - "values": [ - "Statelessness and the right to nationality" - ] - }, - { - "text": "Continue efforts to enhance the capacities of institutions working with persons with disabilities, including educational and health institutions ", - "values": [ - "Disabilities" - ] - }, - { - "text": "Ensure the effective implementation of the 4th Basic Plan for Gender Equality with particular focus on the \u201cReformation of \u201cmen-oriented working styles\u201c for women\u2019s empowerment\u201c", - "values": [ - "Women's rights" - ] - }, - { - "text": "Continue its efforts in addressing the welfare of foreign workers", - "values": [ - "Labour", - "Migrants" - ] - }, - { - "text": "Continue negotiations to reach agreement on pending issues such as border and natural\nresources", - "values": [ - "Other" - ] - }, - { - "text": "Take appropriate measures and further actions to combat trafficking in women and children and impose appropriate punishment for it on perpetrators ", - "values": [ - "Rights of the Child", - "Trafficking", - "Women's rights" - ] - }, - { - "text": "Prioritize national consultations to establish transitional justice mechanisms to ensure that reconciliation and justice address allegations of the most serious crimes, including war crimes, crimes against humanity and genocide.", - "values": [ - "Justice" - ] - }, - { - "text": "Fully align its national legislation with the Rome Statute of the International Criminal Court and continue full cooperation with the International Criminal Court in its preliminary investigation of the crimes committed on 28 September 2009 and its aftermath", - "values": [ - "International instruments", - "Justice" - ] - }, - { - "text": "Consider eliminating differences in schooling between cities and rural areas, between girls and boys and among minorities", - "values": [ - "Minorities", - "Right to education", - "Rights of the Child" - ] - }, - { - "text": "Seek the support of the international community on capacity building and technical assistance in promotion and protection of human rights ", - "values": [ - "Technical assistance and cooperation" - ] - }, - { - "text": "Consider applying for an "A" status accreditation of the National Human Rights Institution", - "values": [ - "National Human Rights Institution" - ] - }, - { - "text": "Continue strengthening the positive measures taken to combat the crime of trafficking in persons and particularly those measures concerning the protection of child victims", - "values": [ - "Rights of the Child", - "Trafficking" - ] - }, - { - "text": "Adopt further measures to ensure the incorporation of its international human right obligations into national legislation.", - "values": [ - "International instruments" - ] - }, - { - "text": "Step up efforts to ensure a safe environment for education and to work on implementing a model plan for human rights education, which aims to integrate human rights in the educational system at various levels", - "values": [ - "Human rights education and training", - "Right to education" - ] - }, - { - "text": "Begin an independent investigation of all cases of arbitrary detention denounced due to UK's implication in the program of secret detention led by the United States ", - "values": [ - "Detention" - ] - }, - { - "text": "Investigate acts of brutality by law enforcement personnel ", - "values": [ - "Human rights violations by state agents" - ] - }, - { - "text": "Consider making primary education compulsory, in accordance with article 28 of the Convention on the Rights of the Child", - "values": [ - "International instruments", - "Right to education", - "Rights of the Child" - ] - }, - { - "text": "Continue its measures to tackle the problem of violence against women, including domestic violence and to address gender equality in all spheres of life ", - "values": [ - "Women's rights" - ] - }, - { - "text": "Provide assistance, reintegration programs and skills training for victims of human trafficking to allow their reintegration into society", - "values": [ - "Trafficking" - ] - }, - { - "text": "Reinforce its efforts, such as the drafted National Action Plan for Reducing Crime, to eliminate the phenomenon of bullying and violence at schools ", - "values": [ - "Public security" - ] - }, - { - "text": "Promote and support the participation of women in decision-making at all levels", - "values": [ - "Women's rights" - ] - }, - { - "text": "Develop a national action plan to implement the United Nations Guiding Principles on Business and Human Rights, including specific actions to strengthen the implementation of ILO convention No. 169", - "values": [ - "Business and human rights", - "Indigenous peoples", - "International instruments" - ] - }, - { - "text": "Ensure that legislative reforms do not infringe the independence of the judiciary", - "values": [ - "Justice" - ] - }, - { - "text": "Establish a universal birth registration system that includes children of refugees and asylum seekers", - "values": [ - "Asylum-seekers - refugees", - "Rights of the Child", - "Statelessness and the right to nationality" - ] - }, - { - "text": "Take effective measures to ensure equal access of women to the labour market and to narrow and ultimately close the wage gap between men and women", - "values": [ - "Women's rights" - ] - }, - { - "text": "Include human rights education in the draft new education policy", - "values": [ - "Human rights education and training" - ] - }, - { - "text": "Ensure the existence of scientific, intellectual, legal, social and economic programmes to raise awareness about the risk of terrorism at all levels", - "values": [ - "Public security" - ] - }, - { - "text": "Adopt a moratorium on the use of the death penalty and ratify the Second Optional Protocol to ICCPR with a view to fully abolishing capital punishment ", - "values": [ - "Death penalty", - "International instruments" - ] - }, - { - "text": "Ratify or sign, as relevant, the Optional Protocol to the International Covenant on Economic, Social and Cultural Rights with a view to being consistent with its practice on this matter ", - "values": [ - "ESC rights - general", - "International instruments" - ] - }, - { - "text": "Promote and disseminate the United Nations declaration on human rights defenders and adopt national legislation for its effective implementation, investigate threats, attacks and intimidations against human rights defenders and ensure their protection", - "values": [ - "Human rights defenders", - "International instruments" - ] - }, - { - "text": "Consider ratifying the Convention on the Elimination of All Forms of Discrimination against Women", - "values": [ - "International instruments", - "Women's rights" - ] - }, - { - "text": "Prohibit, prevent and punish the use of lethal force in carrying out immigration control activities ", - "values": [ - "Human rights violations by state agents", - "Migrants" - ] - }, - { - "text": "Expressly prohibit the corporal punishment of children in all settings, including the home, penal institutions, schools and day-care centres and also take steps to explicitly repeal the right "to administer proper punishment" in the Children's Act", - "values": [ - "Rights of the Child", - "Torture and other CID treatment" - ] - }, - { - "text": "Continue working on establishing human rights institutions in accordance with the Paris Principles", - "values": [ - "National Human Rights Institution" - ] - }, - { - "text": "Ensure that measures are taken to accelerate the sustainable return of refugees and internally displaced persons to their places of origin, by improving their reception conditions", - "values": [ - "Asylum-seekers - refugees", - "Internally displaced persons" - ] - }, - { - "text": "Continue to implement programmes for the protection of women's rights, in particular pregnant women, with a view to significantly reducing the maternal and infant mortality rates and the malnutrition rate", - "values": [ - "Right to health", - "Women's rights" - ] - }, - { - "text": "Introduce measures to ensure and promote the freedom and security of reporters and human rights defenders, including revoking the criminal liability of journalists for libel and slander, and refrain from endorsing measures that limit the activity of independent civil society ", - "values": [ - "Civil society", - "Freedom of the press", - "Human rights defenders" - ] - }, - { - "text": "Continue its efforts to preserve freedom of religion and belief and to ensure respect for all religions under the umbrella of law ", - "values": [ - "Freedom of religion and belief" - ] - }, - { - "text": "Establish an institutional mechanism to fight discrimination and violence against women and children", - "values": [ - "Rights of the Child", - "Women's rights" - ] - }, - { - "text": "Seek to remove the obstacles faced by victims trying to access justice ", - "values": [ - "Justice" - ] - }, - { - "text": "Guarantee that its laws and policies are in conformity with the Convention on the Elimination of All Forms of Discrimination against Women, and take measures to combat practices that perpetuate discrimination against women and their marginalization, particularly with regard to their inheritance and citizenship, and adopt specific legislation properly penalizing domestic violence and promoting the participation of women in political life ", - "values": [ - "International instruments", - "Statelessness and the right to nationality", - "Women's rights" - ] - }, - { - "text": "Ensure that civilian officials or military personnel implicated in providing support to foreign or Congolese armed groups responsible for crimes against humanity are suspended from their positions, investigated and appropriately prosecuted", - "values": [ - "Human rights violations by state agents", - "International humanitarian law" - ] - }, - { - "text": "Continue its efforts to train law enforcement personnel on human rights protection ", - "values": [ - "Human rights education and training" - ] - }, - { - "text": "Ensure effective implementation of the provisions set out in the Convention on the Rights of Persons with Disabilities", - "values": [ - "Disabilities", - "International instruments" - ] - }, - { - "text": "Continue its efforts to halt the brain drain to foreign countries ", - "values": [ - "Other" - ] - }, - { - "text": "Sustain its policy that recognizes the family, based on the stable relationship between a man and a woman, as the natural and fundamental unit of society", - "values": [ - "Other" - ] - }, - { - "text": "Adopt specified standards for accommodation of unaccompanied children and establish additional conditions for the appointment of a guardian for them ", - "values": [ - "Rights of the Child" - ] - }, - { - "text": "Consider acceding to the 1954 Convention relating to the Status of Stateless Persons, and the 1961 Convention on the Reduction of Statelessness", - "values": [ - "International instruments", - "Statelessness and the right to nationality" - ] - }, - { - "text": "Modify the criminal codes with a view to harmonizing them and bringing them into conformity with international criminal law obligations and commitments in the sphere of proceedings against perpetrators of international crimes, in particular war crimes involving sexual violence", - "values": [ - "Justice", - "Women's rights" - ] - }, - { - "text": "Uphold its commitment to and obligations under the Rome Statute of the International Criminal Court", - "values": [ - "International instruments", - "Justice" - ] - }, - { - "text": "Ratify the Rome Statute of the International Criminal Court and accede to the Agreement on the Privileges and Immunities of the ICC ", - "values": [ - "International instruments", - "Justice" - ] - }, - { - "text": "Reconsider seriously its policy towards the use of pre-trial detention, and ensure that this policy is effectively implemented and enforced ", - "values": [ - "Detention" - ] - }, - { - "text": "Take comprehensive measures to ensure that the alleged war crimes and other human rights violations committed during the internal conflict are investigated and prosecuted, with the aim of ending impunity", - "values": [ - "Impunity", - "Justice" - ] - }, - { - "text": "Join the moratorium established by General Assembly Resolution 62-149, as a preliminary step toward abolishing capital punishment", - "values": [ - "Death penalty" - ] - }, - { - "text": "Immediately release all journalists detained for their professional activities, both those arrested recently and those jailed earlier, such as Mr. Nega and Ms. Alemu ", - "values": [ - "Freedom of the press" - ] - }, - { - "text": "Pursuant to the commitments it made in the declaration supporting its candidacy for the Human Rights Council, Mauritania has pledged to work for the promotion and protection of human rights internationally, in conjunction with the Arab and African countries, and nationally.", - "values": [ - "General" - ] - }, - { - "text": "Ensure equal access to education for all children", - "values": [ - "Right to education", - "Rights of the Child" - ] - }, - { - "text": "Redouble its efforts to further protect children from trafficking", - "values": [ - "Rights of the Child", - "Trafficking" - ] - }, - { - "text": "Take positive steps to ensure that everyone, including human right defenders, independent journalists and NGOs, can peacefully exercise their right of the freedom of expression ", - "values": [ - "Civil society", - "Freedom of opinion and expression", - "Freedom of the press", - "Human rights defenders" - ] - }, - { - "text": "Pay further efforts to elaborate on the education of minority languages and cultures", - "values": [ - "Minorities" - ] - }, - { - "text": "Respect, protect and promote freedom of expression of journalists, in particular with regard to the well-established international human rights principle that public officials should tolerate more, rather than less, criticism than private individuals", - "values": [ - "Freedom of opinion and expression", - "Freedom of the press" - ] - }, - { - "text": "Continue to improve the rule of law and undertake further measures to enhance the capacity of its law enforcement agencies ", - "values": [ - "Justice" - ] - }, - { - "text": "Share its experiences and good practices with regard to the right to health, in particular the primary, maternal and child care programs as well as HIV-AIDS control programs. and in view of the growing aging population", - "values": [ - "HIV - Aids", - "Right to health", - "Rights of the Child", - "Women's rights" - ] - }, - { - "text": "Continue its current momentum and efforts on democracy, good governance, legislative reform and capacity building for national human rights mechanisms, with more focus on employment for youth, education, health care, social welfare and preparedness and resilience in response to climate change ", - "values": [ - "Development", - "ESC rights - general", - "Environment", - "Justice", - "Right to education", - "Right to health" - ] - }, - { - "text": "Formally remove the death penalty from the statutes ", - "values": [ - "Death penalty" - ] - }, - { - "text": "Ensure strict criminalization of female genital mutilation and carrying out awareness-raising to eradicate its acceptability among the public ", - "values": [ - "Human rights education and training", - "Rights of the Child", - "Torture and other CID treatment", - "Women's rights" - ] - }, - { - "text": "Take steps to further ensure freedom of speech and freedom of access to information both online and offline", - "values": [ - "Freedom of opinion and expression" - ] - }, - { - "text": "Accelerate the progress of consultations and ensure that the national human rights institution functions in accordance with the Paris Principles", - "values": [ - "National Human Rights Institution" - ] - }, - { - "text": "Continue to strengthen accountability in the security sector, in particular, regarding use of excessive force and abuse of authority by the police and the military ", - "values": [ - "Human rights violations by state agents" - ] - }, - { - "text": "Adopt a long-term national plan with local communities and civil society, in order to decrease the traditional practice of slavery among certain ethnic groups, avoid its continuity in future generations and eradicate it definitely", - "values": [ - "Civil society", - "Minorities" - ] - }, - { - "text": "Establish anti-discrimination laws and regulations to ensure that lesbian, gay, bisexual and transgender persons enjoy equal treatment, including at schools and in the workplace", - "values": [ - "Sexual Orientation and Gender Identity" - ] - }, - { - "text": "Continue efforts to provide better protection for the children, including reviewing its juvenile justice system ", - "values": [ - "Justice", - "Rights of the Child" - ] - }, - { - "text": "Create public campaigns to combat social discrimination against those who suffer with HIV ", - "values": [ - "HIV - Aids", - "Human rights education and training" - ] - }, - { - "text": "Accede to the International Convention on the Protection of the Rights of All Migrant Workers and Members of Their Families and stop the practice of arresting immigrants for unspecified periods", - "values": [ - "International instruments", - "Labour", - "Migrants" - ] - }, - { - "text": "Implement measures adopted to educate foreign workers, in their native languages, of their rights and responsibilities and avenues for assistance ", - "values": [ - "Migrants" - ] - }, - { - "text": "Consider ratifying core international human rights treaties and their optional protocols, which have not yet been ratified", - "values": [ - "International instruments" - ] - }, - { - "text": "Ensure the signing and ratifying of the CAT", - "values": [ - "International instruments", - "Torture and other CID treatment" - ] - }, - { - "text": "Strengthen plans and programmes for crime prevention and rehabilitation ", - "values": [ - "Justice" - ] - }, - { - "text": "Ensure that primary education attains the constitutionally guaranteed universal compulsory status", - "values": [ - "Right to education" - ] - }, - { - "text": "Ensure that the justice sector reform strategy for 2015-2020 is further implemented to improve access to justice, strengthen independence and eliminate corruption", - "values": [ - "Corruption", - "Justice" - ] - }, - { - "text": "Ensure that all acts of torture are crimes according to national legislation, and that the definition used complies with that set out in article 1 of CAT", - "values": [ - "International instruments", - "Torture and other CID treatment" - ] - }, - { - "text": "Submit overdue reports to the relevant treaty bodies", - "values": [ - "Treaty bodies" - ] - }, - { - "text": "Strengthen its policies focused on vulnerable groups such as children, women, older people and its fight against any form of discrimination and violation of their human rights ", - "values": [ - "Rights of the Child", - "Women's rights" - ] - }, - { - "text": "Fully implement its international obligations to ensure the protection of human rights defenders and other civil society actors while exercising their human rights, including the freedom of expression, association and assembly, and remove all restrictions in law and practice which infringe on their work. The Government of the Lao People's Democratic Republic should establish without delay a new independent commission to undertake an impartial and thorough investigation into the enforced disappearance of Sombath Somphone", - "values": [ - "Civil society", - "Enforced disappearances", - "Freedom of association and peaceful assembly", - "Freedom of opinion and expression", - "Human rights defenders" - ] - }, - { - "text": "Implement effective strategies which address child trafficking, and thoroughly investigate all cases of disappearance of child refugees", - "values": [ - "Asylum-seekers - refugees", - "Enforced disappearances", - "Rights of the Child", - "Trafficking" - ] - }, - { - "text": "Ensure independent access for UNHCR and other international humanitarian agencies to all Lao Hmong returnees from Thailand to Lao, including in Phonekham, and assess their well-being ", - "values": [ - "Asylum-seekers - refugees", - "Indigenous peoples" - ] - }, - { - "text": "Extend an open and standing invitation to all the special procedures", - "values": [ - "Special procedures" - ] - }, - { - "text": "Supplement its legislation in matters of human rights protection and promotion by ratifying other international instruments, in particular the CPED and the OP-ICESCR ", - "values": [ - "ESC rights - general", - "Enforced disappearances", - "International instruments" - ] - }, - { - "text": "Prohibit discrimination, in a comprehensive manner, including on the basis of sexual orientation and gender identity, in all areas and sectors, in particular taking into account access to education, health, social protection and housing", - "values": [ - "Right to education", - "Right to health", - "Right to housing", - "Sexual Orientation and Gender Identity" - ] - }, - { - "text": "Introduce and implement a law prohibiting all child, early and forced marriages, including the introduction of a legal minimum age of majority for marriage, and other measures to safeguard and enforce women's rights relating to marriage, choices and free and full consent", - "values": [ - "Rights of the Child", - "Women's rights" - ] - }, - { - "text": "Investigate with due diligence any complaints filed by journalists and human rights defenders for harassment or repression based on their work or activity, and bring to justice and punish perpetrators, if any ", - "values": [ - "Freedom of the press", - "Human rights defenders" - ] - }, - { - "text": "Accelerate the process of accession and then ratify the International Convention on the Protection of the Rights of All Migrant Workers and Members of Their Families ", - "values": [ - "International instruments", - "Labour", - "Migrants" - ] - }, - { - "text": "Continue its efforts in the area of human rights, particularly in providing elementary education for all, and combat illiteracy", - "values": [ - "Right to education" - ] - }, - { - "text": "Implement the National Action Plan for Gender Equality, in particular on the enhancement and awareness of the gender equality in different fields such as education, public life, employment and health", - "values": [ - "Women's rights" - ] - }, - { - "text": "Ratify the Optional Protocols to ICCPR, ICESCR and CAT as well as the 1954 Convention relating to the Status of Stateless Persons, the 1961 Convention on the Reduction of Statelessness", - "values": [ - "International instruments" - ] - }, - { - "text": "Consider ratification of the Convention against Torture", - "values": [ - "International instruments", - "Torture and other CID treatment" - ] - }, - { - "text": "Accept requests for visits from special procedures so that they can take place as soon as possible", - "values": [ - "Special procedures" - ] - }, - { - "text": "Strengthen the independence and professionalism of the judiciary and adopt a system of transparent appointment and removal of judges", - "values": [ - "Justice" - ] - }, - { - "text": "Address the causes of the high number of acquittals in sexual violence cases against women", - "values": [ - "Women's rights" - ] - }, - { - "text": "Take the necessary measures to adapt its asylum system to the new requirements of international protection", - "values": [ - "Asylum-seekers - refugees" - ] - }, - { - "text": "Take effective measures to prevent violence against women and prevent discrimination in employment on the grounds of gender ", - "values": [ - "Women's rights" - ] - }, - { - "text": "Strengthen efforts with regard to timely reporting to United Nations human rights treaty bodies, and especially submit its second report to the Human Rights Committee as soon as possible.", - "values": [ - "Treaty bodies" - ] - }, - { - "text": "Work with the Office of the High Commissioner for Human Rights to prepare a Common Core Document that would alleviate its treaty-reporting burden ", - "values": [ - "Treaty bodies" - ] - }, - { - "text": "Repeal the provisions allowing for corporal punishment in public schools and strengthen national legislation to protect children against all forms of violence or ill-treatment", - "values": [ - "Rights of the Child", - "Torture and other CID treatment" - ] - }, - { - "text": "Initiate an awareness-raising campaign for the society at large to ensure a more generalized tolerance.", - "values": [ - "Human rights education and training" - ] - }, - { - "text": "Carry out, in consultation with the communities concerned, a comprehensive assessment of the effectiveness of actions and strategies aimed at improving socio-economic conditions of indigenous peoples and if necessary correct these actions ", - "values": [ - "Indigenous peoples" - ] - }, - { - "text": "Stay strongly committed to the topic and further discussion leading to an amendment of the Constitution prohibiting discrimination based on sex and gender.", - "values": [ - "Women's rights" - ] - }, - { - "text": "Ratify the Optional Protocol to the Convention against Torture and Other Cruel, Inhuman or Degrading Treatment or Punishment, the Optional Protocol to the Convention on the Elimination of All Forms of Discrimination against Women, the Optional Protocol to the International Covenant on Economic, Social and Cultural Rights and the Optional Protocol to the Convention on the Rights of the Child on a communications procedure", - "values": [ - "ESC rights - general", - "International instruments", - "Rights of the Child", - "Torture and other CID treatment", - "Treaty bodies", - "Women's rights" - ] - }, - { - "text": "Continue its efforts in the implementation of the United Nations Convention against Transnational Organized Crime and the Palermo Protocol to Prevent, Suppress and Punish Trafficking in Persons, Especially Women and Children domestically in an appropriate manner", - "values": [ - "International instruments", - "Rights of the Child", - "Trafficking", - "Women's rights" - ] - }, - { - "text": "Continue to protect vulnerable groups, particularly children and women", - "values": [ - "Rights of the Child", - "Women's rights" - ] - }, - { - "text": "Ensure that the Action Plan on ending the recruitment and use of children signed in 2012 is fully implemented", - "values": [ - "International humanitarian law", - "Rights of the Child" - ] - }, - { - "text": "Improve education materials used in schools for people with special needs in order to ensure their full integration into society, economically and socially ", - "values": [ - "Right to education" - ] - }, - { - "text": "Take the necessary steps to prohibit employers from withholding their foreign workers' passports, travel documents, and work permits as well as to improve access to comprehensive and affordable health services", - "values": [ - "Labour", - "Migrants", - "Right to health" - ] - }, - { - "text": "Take steps to facilitate equal access to the labour market, including by increasing women's ability to continue as full-time employees following child birth ", - "values": [ - "Labour", - "Women's rights" - ] - }, - { - "text": "Review its Poverty Reduction Programmes with a view to addressing the root causes of poverty and the adoption of effective ways of dealing with the social challenges", - "values": [ - "Poverty" - ] - }, - { - "text": "Adopt laws prohibiting female genital mutilation and take focused measures to ensure that such practices are dropped as a result of broader awareness-raising campaigns.", - "values": [ - "Human rights education and training", - "Rights of the Child", - "Torture and other CID treatment", - "Women's rights" - ] - }, - { - "text": "Continue to take measures to strengthen the institutional and legal framework for the protection of human rights", - "values": [ - "General" - ] - }, - { - "text": "Ratify the Optional Protocol to the Convention on the Rights of the Child on the sale of children, child prostitution and child pornography", - "values": [ - "International instruments", - "Rights of the Child", - "Trafficking" - ] - }, - { - "text": "Encourage the participation of public and private sectors and non-governmental organizations in the efforts towards poverty eradication, among other by creating more employment opportunities and providing human resources skills and training", - "values": [ - "Civil society", - "Poverty" - ] - }, - { - "text": "Facilitate the implementation of the recommendations of the LLRC Action Plan and provide necessary funds for its implementation", - "values": [ - "Justice" - ] - }, - { - "text": "Enhance efforts to ensure that all children have access to free, compulsory and quality primary education", - "values": [ - "Right to education", - "Rights of the Child" - ] - }, - { - "text": "Continue legislative review and reform to address any instances of discrimination against women in national law", - "values": [ - "Women's rights" - ] - }, - { - "text": "Continue its efforts in improving protection of women's rights", - "values": [ - "Women's rights" - ] - }, - { - "text": "Investigate the Central Intelligence Agency torture crimes, which stirred up indignation and denunciation among people, to disclose all information and to allow investigation by international community in this regard", - "values": [ - "Human rights violations by state agents", - "Torture and other CID treatment" - ] - }, - { - "text": "Continue implementation of the National Operational Framework for HIV and AIDS for the period 2012-2016 and the National Strategic Operational Plan for HIV/AIDS 2011-2016 ", - "values": [ - "HIV - Aids" - ] - }, - { - "text": "Accelerate the process of elaboration of the national plan of action against racial discrimination", - "values": [ - "Racial discrimination" - ] - }, - { - "text": "Reform the Criminal Code to define rape as a sexual violation, irrespective of the degree of violence used or threatened by the perpetrator", - "values": [ - "Women's rights" - ] - }, - { - "text": "Continue to work on the formation of a national mechanism for women`s empowerment ", - "values": [ - "Women's rights" - ] - }, - { - "text": "Speed up the procedure under way for accession to the convention on the Prevention and Punishment of the Crime of Genocide", - "values": [ - "International instruments", - "Justice" - ] - }, - { - "text": "Continue taking measures to improve the education system and universal access to quality education", - "values": [ - "Right to education" - ] - }, - { - "text": "Strengthen its national efforts in promoting human rights education and training ", - "values": [ - "Human rights education and training" - ] - }, - { - "text": "Improve facilities dedicated to pregnancy and maternity in prisons, in line with the Bangkok Rules", - "values": [ - "Detention", - "Women's rights" - ] - }, - { - "text": "Ratify the Optional Protocol to the International Covenant on Economic, Social and Cultural Rights and accept its investigation and inter-State communication procedures", - "values": [ - "ESC rights - general", - "International instruments" - ] - }, - { - "text": "Conduct public awareness initiatives to change peoples' attitudes to corporal punishment", - "values": [ - "Human rights education and training", - "Torture and other CID treatment" - ] - }, - { - "text": "Strengthen the ban on the initiation of women with the view to totally eliminating the practice of female genital mutilation in the country", - "values": [ - "Rights of the Child", - "Torture and other CID treatment", - "Women's rights" - ] - }, - { - "text": "Continue to improve its domestic system to protect women against violence and promote gender equality ", - "values": [ - "Women's rights" - ] - }, - { - "text": "Ratify the third Optional Protocol to the Convention on the Rights of the Child on a communications procedure, fully implement the Children's Protection and Welfare Act, and ensure effective law enforcement", - "values": [ - "Rights of the Child" - ] - }, - { - "text": "Ratify the optional protocols to ICESCR and ICCPR and the optional protocols to CEDAW and the one concerning children in armed conflict, signed in 2007", - "values": [ - "CP rights - general", - "ESC rights - general", - "International humanitarian law", - "International instruments", - "Rights of the Child", - "Women's rights" - ] - }, - { - "text": "Take effective legislative measures for special protection and integration mechanisms for victims of slave labour ", - "values": [ - "Labour" - ] - }, - { - "text": "Ratify the Indigenous and Tribal Peoples Convention, 1989 (No. 169) of the International Labour Organization", - "values": [ - "Indigenous peoples", - "International instruments", - "Labour" - ] - }, - { - "text": "Strengthen its policies and laws against domestic violence towards women", - "values": [ - "Women's rights" - ] - }, - { - "text": "Hold responsible alleged perpetrators of forced evictions and pollution of drinking water in the area around the big mines ", - "values": [ - "Right to land", - "Right to water and sanitation" - ] - }, - { - "text": "Ensure that laws, policies and programmes aimed at protecting the human rights of women, elderly persons, persons with disabilities and indigenous peoples are effectively implemented", - "values": [ - "Disabilities", - "Indigenous peoples", - "Women's rights" - ] - }, - { - "text": "Carry out systematic campaigns to combat racist and xenophobic stereotypes, including those against non-citizens", - "values": [ - "Racial discrimination", - "Statelessness and the right to nationality" - ] - }, - { - "text": "Take additional measures aimed at protecting and promoting women's rights in education, health and work sectors, as well as the legal capacity for women", - "values": [ - "Women's rights" - ] - }, - { - "text": "Continue to strengthen the functions of the Office of the Attorney-General and the Ministry for Legal Affairs, with a view to harmonizing national and international obligations in the field of human rights.", - "values": [ - "International instruments", - "Justice" - ] - }, - { - "text": "Engage actively in the fight against domestic violence, amend its legislation and adopt relevant measures to tackle the problem of domestic violence ", - "values": [ - "Rights of the Child", - "Women's rights" - ] - }, - { - "text": "Take more effective measures and procedures to reduce poverty and equality in income ", - "values": [ - "Poverty", - "Women's rights" - ] - }, - { - "text": "Adopt specific legal measures to better protect aliens and racial and ethnic groups against discrimination ", - "values": [ - "Racial discrimination" - ] - }, - { - "text": "Take steps to ensure that free health care can be perpetually made accessible to vulnerable populations enabling them to enjoy high health coverage", - "values": [ - "Right to health" - ] - }, - { - "text": "Make utmost efforts to protect women with disabilities and indigenous women from all forms of violence and discrimination", - "values": [ - "Disabilities", - "Indigenous peoples", - "Racial discrimination", - "Women's rights" - ] - }, - { - "text": "Extend a standing and open invitation to the special procedures of the Human Rights Council", - "values": [ - "Special procedures" - ] - }, - { - "text": "Consider taking measures to increase the access of low-income children to education", - "values": [ - "Right to education", - "Rights of the Child" - ] - }, - { - "text": "Improve the development of education by increasing school enrolment and improving the quality of education", - "values": [ - "Right to education" - ] - }, - { - "text": "A public policy that considers children to be important to development at all levels", - "values": [ - "Rights of the Child" - ] - }, - { - "text": "Extend a standing invitation to special procedures, as previously recommended", - "values": [ - "Special procedures", - "UPR process" - ] - }, - { - "text": "Guarantee free access to media without any discrimination to all institutions which require specific accreditation", - "values": [ - "Freedom of the press" - ] - }, - { - "text": "Continue its work to improve its potential in the human rights field, particularly by strengthening national human rights institutions and completing the process for the elaboration of the Philippine human rights action plan", - "values": [ - "National Human Rights Institution" - ] - }, - { - "text": "Further promote equal access to justice for all, especially by providing more legal aid to the poor and marginalized", - "values": [ - "Justice", - "Poverty" - ] - }, - { - "text": "Continue to address income inequality and share its experiences with other developing countries in the area of poverty eradication, in particular its eKasih programme", - "values": [ - "Poverty" - ] - }, - { - "text": "Consider accession to ICCPR, ICESCR, CAT and other core human rights treaties\n\n", - "values": [ - "CP rights - general", - "ESC rights - general", - "International instruments", - "Torture and other CID treatment" - ] - }, - { - "text": "Guarantee the protection of refugees in conformity with the obligations of the 1951 Convention relating to the Status of Refugees", - "values": [ - "Asylum-seekers - refugees", - "International instruments" - ] - }, - { - "text": "Consider the possibility of the abolition of the death penalty in its statutes", - "values": [ - "Death penalty" - ] - }, - { - "text": "Conduct a thorough, prompt and impartial investigation on the assassinations of journalists and human rights defenders including those as referred to in paragraphs 18, 21, 24 and 58 of the report, and bring the perpetrators to justice", - "values": [ - "Freedom of the press", - "Human rights defenders" - ] - }, - { - "text": "Enhance measures to effectively and comprehensively combat racism, discrimination and xenophobia, including by addressing the problems faced by migrants, especially migrant workers, and ensuring integration of migrants in the local community and labour market", - "values": [ - "Labour", - "Migrants", - "Racial discrimination" - ] - }, - { - "text": "Swiftly accede to the Second Optional Protocol of the International Covenant on Civil and Political Rights ", - "values": [ - "Death penalty", - "International instruments" - ] - }, - { - "text": "Guarantee the complete prohibition of torture in all prisons under its control ", - "values": [ - "Detention", - "Torture and other CID treatment" - ] - }, - { - "text": "Continue to fight anti-Semitism, and to oppose any attempt to relativize or rehabilitate anti-Semite policies in past and present", - "values": [ - "Freedom of religion and belief", - "Racial discrimination" - ] - }, - { - "text": "Provide, with the support of the international community, the various initial and periodic reports", - "values": [ - "Technical assistance and cooperation", - "Treaty bodies" - ] - }, - { - "text": "Guarantee that people of the lesbian, gay, bisexual, transgender and intersex communities have effective access to health services, including treatment for HIV/AIDS", - "values": [ - "HIV - Aids", - "Right to health", - "Sexual Orientation and Gender Identity" - ] - }, - { - "text": "Investigate all acts of discrimination against the Dalit community", - "values": [ - "Minorities", - "Racial discrimination" - ] - }, - { - "text": "Prioritize access to reproductive health education and contraceptives for adolescent girls, also without parental consent ", - "values": [ - "Right to health", - "Rights of the Child", - "Women's rights" - ] - }, - { - "text": "Create regulations and public policies in favour of sexual and reproductive rights, especially those of women and indigenous population", - "values": [ - "Indigenous peoples", - "Right to health", - "Women's rights" - ] - }, - { - "text": "Take effective measures to prevent forced or early marriage, in particular with a view to ending rape, sexual exploitation and forced conversions of scheduled caste girls", - "values": [ - "Rights of the Child", - "Women's rights" - ] - }, - { - "text": "With the support of the international community, continue to fight poverty and meet the Millennium Development Goals and those of Vision 2016.", - "values": [ - "Development", - "Poverty" - ] - }, - { - "text": "Redouble efforts to prevent sexual violence in the military and ensure effective prosecution of offenders and redress for victims", - "values": [ - "Human rights violations by state agents", - "Women's rights" - ] - }, - { - "text": "Consider the possibility of establishing a strategy for affirmative actions for the population in situation of poverty", - "values": [ - "Poverty" - ] - }, - { - "text": "Establish an effective and inclusive process to follow up on UPR recommendations", - "values": [ - "UPR process" - ] - }, - { - "text": "Ratify the convention to combat discrimination in the area of education", - "values": [ - "International instruments", - "Right to education" - ] - }, - { - "text": "Ratify fundamental international human rights instruments in order to create a proper national framework of action to promote and protect human rights ", - "values": [ - "International instruments" - ] - }, - { - "text": "Speed up the process of ratification of CAT as one of the important steps in its commitment to the observance of human rights", - "values": [ - "International instruments", - "Torture and other CID treatment" - ] - }, - { - "text": "Conduct effective investigation on the case of murder of Hrant Dink, Editor-in-Chief of the Turkish language Armenian weekly "Agos"", - "values": [ - "Extrajudicial executions" - ] - }, - { - "text": "Take all necessary measures to eliminate all forms of discrimination against children born outside of wedlock with regards to entitlement to maintenance and inheritance", - "values": [ - "Rights of the Child" - ] - }, - { - "text": "Provide national, regional and international support to the promotion and universal realization of the human right to potable water and sanitation, in accordance with the recommendations made by the Council in its different resolutions on this matter", - "values": [ - "Right to water and sanitation" - ] - }, - { - "text": "Strengthen the implementation of the National Plan of Action 2012- 2016 on Eliminating the Intolerable Forms of Child Labour and to consider follow-up mechanisms", - "values": [ - "Labour", - "Rights of the Child" - ] - }, - { - "text": "Fully and effectively implement the recommendations by the Special Rapporteur on the rights to freedom of peaceful assembly and of association, following his mission to Oman in September 2014", - "values": [ - "Freedom of association and peaceful assembly", - "Special procedures" - ] - }, - { - "text": "Establish a moratorium on the use of the death penalty with a view to abolition, and in the meantime, immediately stop imposing the death penalty on anyone under the age of 18, bring the law and judicial practices in line with international fair trial guarantees and reduce the number of crimes which carry the death penalty as sanction", - "values": [ - "Death penalty", - "Rights of the Child" - ] - }, - { - "text": "Unequivocally condemn all incitement to violence or hatred and ensure that provisions for addressing agitation against a national or ethnic group are clearly stipulated under Austrian law ", - "values": [ - "Minorities", - "Racial discrimination" - ] - }, - { - "text": "Continue its efforts towards achieving the right to food and food security ", - "values": [ - "Right to food" - ] - }, - { - "text": "Continue measures aimed at maintaining the national legislation consistent with international human rights instruments ", - "values": [ - "International instruments" - ] - }, - { - "text": "Extend a standing invitation to all United Nations Human Rights Council special procedures mandate holders ", - "values": [ - "Special procedures" - ] - }, - { - "text": "Ensure speedy ratification of CRPD, and take steps to ensure full conformity with the principles of the Convention without delay", - "values": [ - "Disabilities", - "International instruments" - ] - }, - { - "text": "Promote and uphold freedom of the media and the right to freedom of expression and to ensure that legislation and State practice are brought in line with article 19 of the International Covenant on Civil and Political Rights", - "values": [ - "Freedom of opinion and expression", - "Freedom of the press", - "International instruments" - ] - }, - { - "text": "Review its national legislation to ensure full alignment with the Rome Statute of the ICC and ratify the Kampala amendments to the Rome Statute", - "values": [ - "International instruments", - "Justice" - ] - }, - { - "text": "Consider the possibility of establishing a national system to follow up international recommendations", - "values": [ - "Special procedures", - "Treaty bodies", - "UPR process" - ] - }, - { - "text": "Move towards ratifying the Optional Protocol to the Convention against Torture and Other Cruel, Inhuman or Degrading Treatment or Punishment", - "values": [ - "International instruments", - "Torture and other CID treatment", - "Treaty bodies" - ] - }, - { - "text": "Adopt more efficient measures to prevent domestic violence and all other forms of violence against and abuse of women and children ", - "values": [ - "Rights of the Child", - "Women's rights" - ] - }, - { - "text": "Exert further efforts to submit the periodic reports to the treaty bodies", - "values": [ - "Treaty bodies" - ] - }, - { - "text": "Extradite Luis Posada Carriles and other terrorists sought by the Bolivarian Republic of Venezuela", - "values": [ - "Public security" - ] - }, - { - "text": "Review the law establishing the Truth and Reconciliation Commission so as it is in line with international standards and do not establish an amnesty for crimes under international law ", - "values": [ - "Justice" - ] - }, - { - "text": "Ratify OP-CRC-SC ", - "values": [ - "International instruments", - "Rights of the Child", - "Trafficking" - ] - }, - { - "text": "Ratify the Rome Statute of the ICC ", - "values": [ - "International instruments", - "Justice" - ] - }, - { - "text": "Implement actions with a comprehensive and preventive approach in relation to children in conflict with the law through alternative justice measures of deprivation of freedom, taking into account different programmes for children in conflict with the law", - "values": [ - "Rights of the Child" - ] - }, - { - "text": "Decriminalize same-sex sexual conduct between consenting adults in the Offenses Against the Person Act and enact legislation to prevent discrimination against lesbian, gay, bisexual, transgender and intersex persons", - "values": [ - "Sexual Orientation and Gender Identity" - ] - }, - { - "text": "Investigate the deaths in government custody ", - "values": [ - "Extrajudicial executions" - ] - }, - { - "text": "Consider ratification of the Rome Statute of the International Criminal Court", - "values": [ - "International instruments", - "Justice" - ] - }, - { - "text": "Combat all forms of racism by adopting a national action plan against racism", - "values": [ - "Racial discrimination" - ] - }, - { - "text": "Take concrete measures to combat violence against women and children as well as expedite the adoption of the draft law on domestic violence that would allow victims to file complaints and seek protection", - "values": [ - "Rights of the Child", - "Women's rights" - ] - }, - { - "text": "Improve health care and reduce infant and young child mortality", - "values": [ - "Right to health", - "Rights of the Child" - ] - }, - { - "text": "Take all necessary steps to address the concerns expressed by civil society in the Slovakian national report through necessary policy and implementation reforms.", - "values": [ - "Civil society" - ] - }, - { - "text": "Adhere to the following international instruments: the Second Optional Protocol to the International Covenant on Civil and Political Rights, the International Convention on the Protection of the Rights of All Migrant Workers and Members of Their Families, the Optional Protocol to the Convention on the Rights of the Child on the involvement of children in armed conflict, the Optional Protocol to the Convention on the Rights of Persons with Disabilities, and the International Convention for the Protection of All Persons from Enforced Disappearance ", - "values": [ - "International humanitarian law", - "International instruments" - ] - }, - { - "text": "Montenegro committed itself to making an active contribution to universal fight for human rights: working with other members and stakeholders on further development of the Human Rights Council, and the mechanisms of the Universal Periodical Review, actively promoting and protecting human rights through implementation of norms on human rights and by providing adequate response to any violation of these rights, working within the Human Rights Council to enable rapid reaction in case of crisis, finding new ways to promote effective coordination and engagement of the United Nations system in the area of human rights, strengthening cooperation between member-states, United Nations agencies, and other international and regional organizations, national institutions for protection of human rights and civil society, supporting and promoting international cooperation and dialogue in order to improve numerous programs on human rights, gender equality, protection of children, democracy, good governance, and the rule of law.", - "values": [ - "General" - ] - }, - { - "text": "Facilitate visits by all special procedures mandate holders outstanding since 2005, and extend an invitation to the Secretary-General so that he may investigate the post-election violence and independently assess the human rights situation", - "values": [ - "Special procedures" - ] - }, - { - "text": "Continue to protect the institution of the natural family ", - "values": [ - "Other" - ] - }, - { - "text": "Take measures to reduce the high rate of maternal mortality and improve access to maternal health information and services, including ante-natal, delivery and post-natal care", - "values": [ - "Right to health", - "Women's rights" - ] - }, - { - "text": "Consider ratifying the Rome Statute of the International Criminal Court and fully align its legislation with all obligations under the Rome Statute, including incorporating the Rome Statute definition of crimes and general principles, as well as adopting provisions enabling cooperation with the Court ", - "values": [ - "International instruments", - "Justice" - ] - }, - { - "text": "Reform laws related to discrimination and violence against women and lesbian, gay, bisexual, transgender and intersex persons, including by repealing provisions which may be used to criminalize consensual, same-sex sexual activity between adults, and establishing a law criminalizing domestic violence ", - "values": [ - "Sexual Orientation and Gender Identity", - "Women's rights" - ] - }, - { - "text": "Consider signing and ratifying the International Convention on the Rights of All Migrant Workers and Members of Their Families ", - "values": [ - "International instruments", - "Labour", - "Migrants" - ] - }, - { - "text": "Strengthen the full implementation of legislation on corporal punishment of children, including through awareness raising, education programmes, and appropriate complaints mechanisms ", - "values": [ - "Human rights education and training", - "Rights of the Child", - "Torture and other CID treatment" - ] - }, - { - "text": "Explicitly task the department of Climate Change and Energy to examine the human rights implications of climate change, particularly as it relates to the State's ability to realize socioeconomic rights", - "values": [ - "ESC rights - general", - "Environment" - ] - }, - { - "text": "Ensure balanced treatment of all religions and grant the same status to all religious marriages ", - "values": [ - "Women's rights" - ] - }, - { - "text": "Ratify CRC and CEDAW ", - "values": [ - "International instruments", - "Rights of the Child", - "Women's rights" - ] - }, - { - "text": "Pursue the implementation of the State programme on further modernization of the law enforcement system", - "values": [ - "Justice" - ] - }, - { - "text": "Intensify and focus efforts on the promotion of initiatives likely to promote national reconciliation as well as a return to and the consolidation of peace and security in the country ", - "values": [ - "Justice" - ] - }, - { - "text": "Provide systematic training on women\u2019s rights to all law enforcement personnel, medical staff and judicial officials", - "values": [ - "Human rights education and training", - "Women's rights" - ] - }, - { - "text": "Strengthen the measures aimed at guaranteeing gender equality, in particular with regard to the transfer of Kiribati nationality to the children of Kiribati women born abroad, in compliance with article 9, paragraph 2, of the Convention on the Elimination of All Forms of Discrimination against Women", - "values": [ - "International instruments", - "Women's rights" - ] - }, - { - "text": "Strengthen measures to protect and promote the rights of foreign workers ", - "values": [ - "Labour", - "Migrants" - ] - }, - { - "text": "Saudi Arabia affirmed its commitment to protecting the rights of the child, not only in its capacity as a party to the Convention on the Rights of the Child and the two Optional Protocols thereto, but also in fulfilment of its obligations derived from the provisions of Islamic sharia which seek to ensure the best interests of the child in all circumstances.", - "values": [ - "International instruments", - "Rights of the Child" - ] - }, - { - "text": "Establish a separate ombudsperson particularly dedicated to the rights of children", - "values": [ - "National Human Rights Institution", - "Rights of the Child" - ] - }, - { - "text": "Modify promptly the law on transexuality to facilitate registration of a change of gender on official documents, without requiring transsexuals to divorce, in line with the decision of the Constitutional Court", - "values": [ - "Sexual Orientation and Gender Identity" - ] - }, - { - "text": "Undertake more effective measures to ensure the accessibility of crucial public services such as education, health care and social benefits to the population living in rural areas, in particular rural women and children", - "values": [ - "Right to education", - "Right to health", - "Rights of the Child", - "Women's rights" - ] - }, - { - "text": "Establish a fast track system for reviewing cases of prolonged preventive detention in order to reduce as soon as possible the prisons' population and improve the health and food situation of the population incarcerated", - "values": [ - "Detention" - ] - }, - { - "text": "Ensure that the amended press law complies with ICCPR and that the legal framework allows the existence of privately owned media.", - "values": [ - "Freedom of the press", - "International instruments" - ] - }, - { - "text": "Strengthen its efforts to increase shelter options for internally displaced persons", - "values": [ - "Internally displaced persons" - ] - }, - { - "text": "Accede to the Rome Statute of the International Criminal Court and implement it in the national legislation, including by incorporating provisions on prompt and full cooperation with the Court", - "values": [ - "International instruments", - "Justice" - ] - }, - { - "text": "Progressively remove restrictions that prevent Palestinian children from having access to basic services, including schools and health care.", - "values": [ - "Freedom of movement", - "Rights of the Child" - ] - }, - { - "text": "Continue to promote gender equality and increase representation of women in public services", - "values": [ - "Women's rights" - ] - }, - { - "text": "Ratify the Domestic Workers Convention, 2011 (No. 189), of the International Labour Organization", - "values": [ - "International instruments", - "Labour" - ] - }, - { - "text": "Continue to closely monitor the hate crime and discrimination cases, following the implementation by the United Kingdom Government of the newly launched Hate Crime Action Plan of 2016", - "values": [ - "Racial discrimination" - ] - }, - { - "text": "Promote judicial independence and strengthen the rule of law by ensuring that key institutions such as the Constitutional Tribunal and the Supreme Court operate in a free, fair and transparent manner and serve as an effective and independent check on the executive and legislative branches", - "values": [ - "Justice" - ] - }, - { - "text": "Enhance and implement domestic laws to further promote and protect the civil and political rights of the Eritrean people ", - "values": [ - "CP rights - general" - ] - }, - { - "text": "Act on the promise made by the President in 2004 to reform the press law and to eliminate prison terms for press offences ", - "values": [ - "Freedom of the press" - ] - }, - { - "text": "Continue efforts to protect the rights of vulnerable groups of the population, and in particular, in materializing the planned draft legislation regarding children and persons with disabilities ", - "values": [ - "Disabilities", - "Rights of the Child" - ] - }, - { - "text": "In its implementation of Constitution article 69, ensure compliance with its obligations under the International Covenant on Civil and Political Rights (ICCPR) ", - "values": [ - "CP rights - general", - "International instruments" - ] - }, - { - "text": "Restore full citizenship of the Rohingya living in Myanmar, ensure and protect their basic human rights, and engage constructively in the region on this issue", - "values": [ - "Freedom of religion and belief", - "Minorities", - "Statelessness and the right to nationality" - ] - }, - { - "text": "Complete the Convention's [Elimination of All Forms of Racial Discrimination] ratification process ", - "values": [ - "International instruments", - "Racial discrimination" - ] - }, - { - "text": "Continue efforts aimed at strengthening the roles, functions and capacities of national institutions and mechanisms responsible for the promotion and protection of human rights and fundamental freedoms, including the sharia legal system", - "values": [ - "General" - ] - }, - { - "text": "Adopt and implement fair and transparent measures for the sustainable return of members of the Serb minority ", - "values": [ - "Minorities" - ] - }, - { - "text": "Investigate all cases of the use of excessive force against protestors by the security forces and hold accountable those responsible for the incidents, stop the practice of military trials of civilians", - "values": [ - "Freedom of association and peaceful assembly", - "Human rights violations by state agents", - "Justice" - ] - }, - { - "text": "Put in place measures that are in line with the international standards, especially the ILO Conventions No. 138 (1973) concerning Minimum Age for Admission to Employment and No. 182 (1999) concerning the Worst Forms of Child Labour", - "values": [ - "International instruments", - "Labour", - "Rights of the Child" - ] - }, - { - "text": "Adopt measures to impose sanctions that are sufficiently effective and dissuasive on employers who discriminate against trade union activity ", - "values": [ - "Labour" - ] - }, - { - "text": "Remove the legal requirement which prevents non-Muslims from being appointed as members of the Human Rights Commission", - "values": [ - "Freedom of religion and belief", - "National Human Rights Institution", - "Racial discrimination" - ] - }, - { - "text": "Consider identifying priority sectors where Maldives faces a lack of trained and qualified professionals and seek technical and capacity-building assistance from the international community", - "values": [ - "Technical assistance and cooperation" - ] - }, - { - "text": "Continue promoting the repeal of prevailing discriminatory provisions against women and girls, especially those in the Civil and Criminal Codes", - "values": [ - "Rights of the Child", - "Women's rights" - ] - }, - { - "text": "Recommended follow-up to the recommendations of the Committee on the Elimination of Racial Discrimination and to ensure that the rights of migrants are respected, particularly by law enforcement officials. ", - "values": [ - "Migrants", - "Treaty bodies" - ] - }, - { - "text": "Sri Lanka will continue its active and constructive dialogue and cooperation with the Office of the High Commissioner for Human Rights to strengthen national mechanisms in all aspects.", - "values": [ - "Technical assistance and cooperation" - ] - }, - { - "text": "Adopt a comprehensive national plan for human rights as a comprehensive document that includes effective measures for all human rights issues", - "values": [ - "General" - ] - }, - { - "text": "Do more to ensure that the hard-fought freedom of expression is guaranteed by the government and protected under Iraqi laws and Iraqi courts", - "values": [ - "Freedom of opinion and expression" - ] - }, - { - "text": "Adopt laws and policies protecting human rights defenders and journalists, involve civil society in this process as well make available sufficient funding for implementation", - "values": [ - "Civil society", - "Freedom of the press", - "Human rights defenders" - ] - }, - { - "text": "Review the effectiveness of its current legal framework on nondiscrimination with a view to initiating a harmonization process, as recommended by the Committee on the Elimination of Racial Discrimination ", - "values": [ - "Racial discrimination", - "Treaty bodies" - ] - }, - { - "text": "Strengthen mechanisms for preventing and eliminating xenophobic discourse in all spheres of life", - "values": [ - "Racial discrimination" - ] - }, - { - "text": "Consider the possibility of acceding to some of the international conventions to which the Sultanate of Oman is not yet a party, with due regard to its religious and cultural specificities and the needs of Omani society", - "values": [ - "International instruments" - ] - }, - { - "text": "Take additional efforts in preserving inter-ethnic and interconfessional harmony in the country ", - "values": [ - "Freedom of religion and belief", - "Minorities" - ] - }, - { - "text": "Continue implementing national policies related to persons with disabilities", - "values": [ - "Disabilities" - ] - }, - { - "text": "Take effective steps to end discrimination against Roma in health", - "values": [ - "Minorities", - "Racial discrimination", - "Right to health" - ] - }, - { - "text": "Promote gender equality in law and in practice, particularly through education and public awareness", - "values": [ - "Human rights education and training", - "Women's rights" - ] - }, - { - "text": "Ratify the 1989 ILO Convention No. 169 on indigenous and tribal peoples ", - "values": [ - "Indigenous peoples", - "International instruments" - ] - }, - { - "text": "Ensure speedy passage of the bills on the establishment of a NHRI and Office of the Ombudsman. ", - "values": [ - "National Human Rights Institution" - ] - }, - { - "text": "Step up its efforts to counter manifestations of racism, xenophobia, racial and religious intolerance", - "values": [ - "Freedom of religion and belief", - "Racial discrimination" - ] - }, - { - "text": "Continue to open channels of cooperation with the United Nations human rights mechanisms and with the States, particularly in the area of education, ratification and implementation of international treaties, and the fight against impunity", - "values": [ - "Impunity", - "International instruments", - "Right to education", - "Special procedures", - "Treaty bodies", - "UPR process" - ] - }, - { - "text": "Ensure fair and proper legal action in relation to those investigated and prosecuted, including impartial trials and reasonable sentences, as well as detention standards that meet international norms ", - "values": [ - "Justice" - ] - }, - { - "text": "Accelerate the adoption of a bill on preventing and combating discrimination ", - "values": [ - "Other" - ] - }, - { - "text": "Enhance bilateral cooperation with other countries in the field of human rights especially through dialogue and technical assistance", - "values": [ - "Technical assistance and cooperation" - ] - }, - { - "text": "Seize the opportunity of the Criminal Code of Nauru to decriminalize homosexual relations between consenting adults", - "values": [ - "Sexual Orientation and Gender Identity" - ] - }, - { - "text": "Take the necessary steps to fully implement provisions of its Basic Law, which guarantees the independence of the judicial system, including by ensuring a complete separation between the executive and the public ministry ", - "values": [ - "Justice" - ] - }, - { - "text": "Improve prison conditions, particularly addressing overcrowding and violence, including in prisons for women", - "values": [ - "Detention", - "Women's rights" - ] - }, - { - "text": "Increase its efforts in favour of indigenous populations to ensure the satisfaction of their basic needs water, health, education and to combat social exclusion affecting them ", - "values": [ - "Indigenous peoples" - ] - }, - { - "text": "Improve prison conditions and detention facilities", - "values": [ - "Detention" - ] - }, - { - "text": "Decriminalise homosexuality and ensure non-discrimination on the basis of sexual orientation and gender identity", - "values": [ - "Sexual Orientation and Gender Identity" - ] - }, - { - "text": "Consolidate efforts made to ensure access to education for all citizens without discrimination", - "values": [ - "Right to education" - ] - }, - { - "text": "Enact the Women\u2019s Reservation Bill providing for the reservation of seats for women in the parliament and legislative assemblies, in order to enhance the political participation of women", - "values": [ - "Women's rights" - ] - }, - { - "text": "Encourage more participation of indigenous peoples through the elaboration of a law that regulates their right to prior consultations", - "values": [ - "Indigenous peoples" - ] - }, - { - "text": "Strengthen its efforts to eliminate wage gap between men and women in the labour market", - "values": [ - "Women's rights" - ] - }, - { - "text": "Take measures to ratify ILO Conventions 111 and 189 and to amend the labour legislation so that it also apply to foreign domestic workers and ensure that such workers are entitled to adequate wages, decent working conditions, benefits and access to complaint and redress mechanisms", - "values": [ - "International instruments", - "Labour" - ] - }, - { - "text": "Provide all enforcement officials with proper sensitivity training in relation to sexual orientation, gender identity and HIV-AIDS ", - "values": [ - "HIV - Aids", - "Sexual Orientation and Gender Identity" - ] - }, - { - "text": "Take further measures to ensure the full protection of children from all forms of violence ", - "values": [ - "Rights of the Child" - ] - }, - { - "text": "Ensure the protection of the rights of those sentenced to death, by guaranteeing among other things the suspensive effect of any appeal request or claim to review the trial", - "values": [ - "Death penalty" - ] - }, - { - "text": "Strengthen the legislation and effective measures in order to better protect vulnerable groups, in particular women and children, and eradicate the customary practices that are harmful to them", - "values": [ - "Rights of the Child", - "Torture and other CID treatment", - "Women's rights" - ] - }, - { - "text": "Redouble efforts to facilitate access to urgent obstetrical care", - "values": [ - "Right to health", - "Women's rights" - ] - }, - { - "text": "Strengthen the actions aimed at fighting criminal organizations, drug trafficking and human trafficking ", - "values": [ - "Public security", - "Trafficking" - ] - }, - { - "text": "Secure equal rights for boys and girls in the education system and put in place targeted measures to reduce the high dropout rates of girls from high schools", - "values": [ - "Right to education", - "Rights of the Child", - "Women's rights" - ] - }, - { - "text": "Allow independent monitors to access all Eritrean detention facilities and ensure that international standards of law in the treatment of prisoners are respected in Eritrea ", - "values": [ - "Detention" - ] - }, - { - "text": "Recognize the right to conscientious objection, ensuring that conscientious objectors are not subjected to reprisals ", - "values": [ - "Freedom of religion and belief" - ] - }, - { - "text": "Step up its efforts to eradicate domestic violence and sexual abuse within the framework of comprehensive policies to combat gender violence and to protect children's rights ", - "values": [ - "Rights of the Child", - "Women's rights" - ] - }, - { - "text": "With a view to abolishing it [death penalty]", - "values": [ - "Death penalty" - ] - }, - { - "text": "Take effective measures aimed at reinforcing the capacities and the independence of the justice system, and to facilitate visits by the Special Rapporteur on the independence of judges and lawyers", - "values": [ - "Justice", - "Special procedures" - ] - }, - { - "text": "Pursue measures to eradicate poverty through the implementation of comprehensive public policies with a human rights-based approach", - "values": [ - "Poverty" - ] - }, - { - "text": "Strengthen its legal framework and mechanism for promoting and protecting the human rights of its population", - "values": [ - "General" - ] - }, - { - "text": "Pursue dialogue and cooperation among all stakeholders, including with a view to ensuring that the Constitution provisions are in line with international standards related to democracy and human rights ", - "values": [ - "General", - "International instruments" - ] - }, - { - "text": "Take further measures to improve citizens' access to justice", - "values": [ - "Justice" - ] - }, - { - "text": "Step up efforts to protect the environment", - "values": [ - "Environment" - ] - }, - { - "text": "Strengthen its national policy for gender equity and equality", - "values": [ - "Women's rights" - ] - }, - { - "text": "Continue efforts for the full implementation of the Anti-Human Trafficking Act, in order to identify child victims of trafficking and provide legal assistance to them", - "values": [ - "Rights of the Child", - "Trafficking" - ] - }, - { - "text": "Further ensure indigenous groups are able to express their views, have access to relevant political and decision-making processes and are provided with the support necessary to meaningfully engage on issues that affect them.", - "values": [ - "Indigenous peoples" - ] - }, - { - "text": "Ensure birth registration for all children born in Malta", - "values": [ - "Rights of the Child", - "Statelessness and the right to nationality" - ] - }, - { - "text": "Complete the process of ratification of relevant international instruments ", - "values": [ - "International instruments" - ] - }, - { - "text": "Strengthen health-care facilities and enhance access to reproductive health services, especially for adolescents and youth, unmarried women and marginalized and excluded populations such as persons with disabilities", - "values": [ - "Disabilities", - "Right to health", - "Women's rights" - ] - }, - { - "text": "Take further measures to ensure effective implementation of CEDAW at the federal, provincial and territorial levels, giving particular attention to the Aboriginal women and girls", - "values": [ - "Indigenous peoples", - "International instruments", - "Rights of the Child", - "Women's rights" - ] - }, - { - "text": "Take efficient measures to combat any manifestation of discrimination, racism, xenophobia and intolerance in society, including by adopting and implementing a comprehensive national plan of action", - "values": [ - "Racial discrimination" - ] - }, - { - "text": "Organize, as a matter of urgency, inclusive national political consultations to reinstate democracy and rule of law ", - "values": [ - "Justice" - ] - }, - { - "text": "Amend its laws, including the Bill of Rights, to protect against discrimination on the basis of sex and to prohibit violence against women, including domestic violence ", - "values": [ - "Women's rights" - ] - }, - { - "text": "Disseminate information on available domestic, inter alia, legal remedies against acts of racial discrimination, as well as facilitate the access of victims to such remedies ", - "values": [ - "Racial discrimination" - ] - }, - { - "text": "Continue to improve the promotion and protection of the rights of indigenous peoples, in particular the respect of their cultural and linguistic diversity, and further think about programmes and policies for indigenous peoples, particularly focusing on women and children ", - "values": [ - "Indigenous peoples", - "Rights of the Child", - "Women's rights" - ] - }, - { - "text": "Request advice and input from the OHCHR on creating an independent commission to investigate human rights violations that ensures perpetrators are held to account for their actions ", - "values": [ - "Justice" - ] - }, - { - "text": "Finalize the ratification process of the Council of Europe's Convention on Preventing and Combating Violence against Women and Domestic Violence ", - "values": [ - "International instruments", - "Rights of the Child", - "Women's rights" - ] - }, - { - "text": "Ensure that the new Constitution establishes the right to freedom of thought, conscience, religion and belief, as well as the freedom to practise a religion or conviction, except to the extent at which it is necessary to protect the fundamental rights and freedoms of others ", - "values": [ - "Freedom of religion and belief" - ] - }, - { - "text": "Adopt and implement necessary measures, including its national programme of action of the social partners for the eradication of the worst forms of child labour, with a view to eliminating this phenomenon ", - "values": [ - "Rights of the Child" - ] - }, - { - "text": "Take appropriate measures to ensure that hate crime and violence, and racist and xenophobic acts are investigated, and that perpetrators are prosecuted", - "values": [ - "Racial discrimination" - ] - }, - { - "text": "Intensify efforts to address the disadvantages faced by minority groups with regard to employment and remuneration based on language proficiency", - "values": [ - "Labour", - "Minorities" - ] - }, - { - "text": "Redouble efforts to prevent, combat and punish violence against women and children and to fight effectively against traditional practices harmful to women, particularly in rural areas ", - "values": [ - "Rights of the Child", - "Torture and other CID treatment", - "Women's rights" - ] - }, - { - "text": "Ratify the International Convention on the Protection of the Rights of All Migrant Workers and Members of Their Families, which the Comoros signed in 2000 ", - "values": [ - "International instruments", - "Labour", - "Migrants" - ] - }, - { - "text": "Speed up the process of the ratification of the ICCPR", - "values": [ - "CP rights - general", - "International instruments" - ] - }, - { - "text": "Enshrine equality before the law for all persons within the Jordanian jurisdiction, including the amendment of the Personal Status Act to address discrimination against women in relation to inheritance, the right to work, divorce and guardianship", - "values": [ - "Women's rights" - ] - }, - { - "text": "Ensure the effective implementation of the legal framework on child abuse and exploitation and, when necessary, address the related weaknesses", - "values": [ - "Rights of the Child" - ] - }, - { - "text": "Prepare, through its National Committee for the Drafting of Human Rights Reports, the outstanding initial and subsequent periodic reports to the Committee on Economic, Social and Cultural Rights.", - "values": [ - "ESC rights - general", - "Treaty bodies" - ] - }, - { - "text": "Implement all recommendations of the Commission of Inquiry, while fully cooperating with the Commission and allowing it access into the Syrian Arab Republic", - "values": [ - "Technical assistance and cooperation" - ] - }, - { - "text": "Ratify the Optional Protocols to the International Covenant on Civil and Political Rights", - "values": [ - "CP rights - general", - "Death penalty", - "International instruments" - ] - }, - { - "text": "Establish federal legislation criminalizing violence against women in all four states", - "values": [ - "Women's rights" - ] - }, - { - "text": "Strongly regulate the issue of the civil registration in order to grant legal personality to all human beings on its territory", - "values": [ - "Rights of the Child" - ] - }, - { - "text": "Ratify the Optional Protocol to the Convention against Torture and Other Cruel, Inhuman, or Degrading Treatment or Punishment ", - "values": [ - "Detention", - "International instruments", - "Torture and other CID treatment" - ] - }, - { - "text": "Consider ratifying the ILO Domestic Workers Convention, 2011 No. 189", - "values": [ - "International instruments", - "Labour" - ] - }, - { - "text": "Adopt measures to combat discrimination and promote equal economic and social opportunities for disadvantaged and marginalized individuals and groups ", - "values": [ - "ESC rights - general" - ] - }, - { - "text": "Protect religious freedom by allowing individuals to practise their religion freely, and provide religious organizations equal opportunities to obtain legal status ", - "values": [ - "Freedom of religion and belief" - ] - }, - { - "text": "Establish a holistic strategy to strengthen social cohesion and to respect religious diversity", - "values": [ - "Freedom of religion and belief" - ] - }, - { - "text": "Adopt a comprehensive approach to address violence against women and girls and to take effective measures to protect them", - "values": [ - "Rights of the Child", - "Women's rights" - ] - }, - { - "text": "Continue to enhance its judicial system and ensure respect for the rule of law ", - "values": [ - "Justice" - ] - }, - { - "text": "Grant permission and access to aid agencies to provide humanitarian assistance to Rohingya and others in the Bangladesh-Burma border region ", - "values": [ - "Freedom of religion and belief", - "Minorities" - ] - }, - { - "text": "That all the newborn children born in Chile should have the right to Chilean nationality with a legal framework for their protection", - "values": [ - "Rights of the Child" - ] - }, - { - "text": "Ratify the CPED", - "values": [ - "Enforced disappearances", - "International instruments" - ] - }, - { - "text": "Spare no efforts to constantly evaluate the enforcement of the immigration federal legislation, with a vision of promoting and protecting human rights", - "values": [ - "Migrants" - ] - }, - { - "text": "Ensure effective implementation of the proposed National Plan of Action for the promotion and protection of human rights ", - "values": [ - "General" - ] - }, - { - "text": "Enact legislation to ensure that imprisonment is used only as a last resort when sentencing all juvenile offenders, ensure that they are held separately from adult offenders, and provide systematic resource realization support to them ", - "values": [ - "Detention", - "Justice", - "Rights of the Child" - ] - }, - { - "text": "Speed up the process to adopt the Development Plan for Children and Families 2011-2020 ", - "values": [ - "Rights of the Child" - ] - }, - { - "text": "Consider regulating articles 3 [a] and 4 of ILO Convention 182, by passing legislation listing prohibited occupations for minors under 18", - "values": [ - "International instruments", - "Labour", - "Rights of the Child" - ] - }, - { - "text": "Continue to take steps, in particular within the Action Plan, to combat and prevent violence and to ensure that victims have access to means of protection, that acts of domestic violence are effectively investigated and that perpetrators are brought to justice ", - "values": [ - "Rights of the Child", - "Women's rights" - ] - }, - { - "text": "Decriminalize sexual relations between consenting adults of the same sex, and repeal any law discriminating against LGBT people ", - "values": [ - "Sexual Orientation and Gender Identity" - ] - }, - { - "text": "Ratify the International Convention for the Protection of All Persons from Enforced Disappearance and the Convention on the Rights of Persons with Disabilities", - "values": [ - "Disabilities", - "Enforced disappearances", - "International instruments" - ] - }, - { - "text": "Prioritize the need to become party to the Convention against Torture and Other Cruel, Inhuman or Degrading Treatment or Punishment", - "values": [ - "International instruments", - "Torture and other CID treatment" - ] - }, - { - "text": "Ensure effective implementation of the new National Strategy to prevent and eradicate early marriages", - "values": [ - "Rights of the Child" - ] - }, - { - "text": "Take more effective measures to prevent sexual exploitation of children, including through criminalizing the production and distribution of pornographic or erotic images including children, and prosecute Danish citizens who abused children abroad ", - "values": [ - "Rights of the Child" - ] - }, - { - "text": "Propose specific initiatives and policies aimed at combating all manifestations of racial and ethnic intolerance and respect the Agreement on the Resolution of the Conflict in the Republic of South Sudan", - "values": [ - "Minorities", - "Racial discrimination" - ] - }, - { - "text": "Renew the agreement with ICRC to allow visits to places of detention ", - "values": [ - "Detention", - "International instruments" - ] - }, - { - "text": "Strengthen efforts to work with OHCHR and Regional Offices to fulfil its obligations on international human right treaties, particularly on the elaboration of the common-core document to treaty body reporting ", - "values": [ - "International instruments", - "Technical assistance and cooperation", - "Treaty bodies" - ] - }, - { - "text": "Revise article 534 of the Penal Code so that its scope is clearly defined and that it does not discriminate against persons on the basis of their sexual orientation and gender identity", - "values": [ - "Sexual Orientation and Gender Identity" - ] - }, - { - "text": "Decriminalize defamation and place it under the Civil Code in accordance with international standards", - "values": [ - "Freedom of opinion and expression" - ] - }, - { - "text": "Adopt comprehensive anti-discrimination legislation to provide protections for and to promote the rights of lesbian, gay, bisexual, transgender and intersex persons", - "values": [ - "Sexual Orientation and Gender Identity" - ] - }, - { - "text": "Continue working towards the establishment of a national human rights institution in accordance with the Paris Principles", - "values": [ - "National Human Rights Institution" - ] - }, - { - "text": "Adopt measures to end discrimination and violence based on sexual orientation and gender identity, actual or perceived, in compliance with its human rights obligations", - "values": [ - "Sexual Orientation and Gender Identity" - ] - }, - { - "text": "Continue working to harmonize its normative framework with obligations of international instruments recently adhered to", - "values": [ - "International instruments" - ] - }, - { - "text": "Issue a standing invitation to special procedures, as previously recommended", - "values": [ - "Special procedures" - ] - }, - { - "text": "Continue efforts undertaken to ensure ratification of CPED, as well as the main international human rights instruments, to which the country is not yet a party ", - "values": [ - "Enforced disappearances", - "International instruments" - ] - }, - { - "text": "In assistance with its Development Partners, continue its fight against poverty", - "values": [ - "Poverty", - "Technical assistance and cooperation" - ] - }, - { - "text": "Consider signature and ratification of the Optional Protocol to the Convention on the Elimination of All Forms of Discrimination Against Women. ", - "values": [ - "International instruments", - "Women's rights" - ] - }, - { - "text": "Continue its active participation within the Open Government Partnership Initiative, the main objective of which is to ensure open, transparent and accountable governance", - "values": [ - "Justice" - ] - }, - { - "text": "Continue implementing the plan endorsed by the government in November 2014 aiming to help families and individuals living in conditions of extreme poverty", - "values": [ - "Poverty" - ] - }, - { - "text": "Promote initiatives such as legislation for preventing domestic violence and marital rape", - "values": [ - "Rights of the Child", - "Women's rights" - ] - }, - { - "text": "Intensify its efforts to ensure that human rights are fully respected in the fight against terrorism.", - "values": [ - "Counter-terrorism" - ] - }, - { - "text": "Ensure systematic access to education for all asylum-seeking children", - "values": [ - "Asylum-seekers - refugees", - "Right to education", - "Rights of the Child" - ] - }, - { - "text": "Further efforts to foster intercultural dialogue, tolerance and understanding among the different communities and groups living in Bosnia and Herzegovina", - "values": [ - "Freedom of religion and belief", - "Human rights education and training", - "Minorities" - ] - }, - { - "text": "Strengthen the fight against xenophobia on social networks and the Internet", - "values": [ - "Racial discrimination" - ] - }, - { - "text": "Implement the cessation of hostilities agreement to achieve a full, comprehensive ceasefire which will provide the grounds for improving human rights", - "values": [ - "Other" - ] - }, - { - "text": "Allocate the necessary resources to fulfil the mandate of the Ombudsman, and ensure compliance of this institution with the Paris Principles", - "values": [ - "National Human Rights Institution" - ] - }, - { - "text": "Ratify the core international human rights instruments, in particular the Convention on the Rights of the Child and the Convention on the Elimination of All forms of Discrimination against Women", - "values": [ - "International instruments", - "Rights of the Child", - "Women's rights" - ] - }, - { - "text": "Prioritize the implementation of the recent legal reforms to eliminate discriminatory provisions against women in compliance with CEDAW ", - "values": [ - "International instruments", - "Women's rights" - ] - }, - { - "text": "Continue to fully investigate all alleged cases of ill-treatment by the police, including during student demonstrations ", - "values": [ - "Freedom of association and peaceful assembly", - "Human rights violations by state agents", - "Torture and other CID treatment" - ] - }, - { - "text": "Continue its efforts to accede to the Rome Statute establishing the International Criminal Court", - "values": [ - "International instruments", - "Justice" - ] - }, - { - "text": "Continue its efforts in eliminating violence against women and girls to provide a safe living environment for them", - "values": [ - "Rights of the Child", - "Women's rights" - ] - }, - { - "text": "Intensify awareness-raising campaigns aimed at changing existing prejudices and stereotypes against ethnic minority groups", - "values": [ - "Human rights education and training", - "Minorities", - "Racial discrimination" - ] - }, - { - "text": "Immediately take all necessary measures to ensure access to humanitarian assistance and to protect civilians, including humanitarian workers, human rights defenders, and media workers, from attack", - "values": [ - "Freedom of the press", - "Human rights defenders", - "International humanitarian law" - ] - }, - { - "text": "Submit its overdue reports on the International Convention on the Elimination of All Forms of Racial Discrimination and the Convention on the Elimination of All Forms of Discrimination against Women", - "values": [ - "Racial discrimination", - "Treaty bodies", - "Women's rights" - ] - }, - { - "text": "Promote further engagement with international human rights mechanisms, including in seeking technical assistance from the Office of the UN Commissioner for Human Rights", - "values": [ - "International instruments", - "Technical assistance and cooperation" - ] - }, - { - "text": "Give high priority to the introduction of comprehensive and holistic measures to address all forms of violence against women and to protect its victims.", - "values": [ - "Women's rights" - ] - }, - { - "text": "Consider the possibility of ratifying the International Covenant in order to ensure that it is enforceable as soon as possible", - "values": [ - "CP rights - general", - "International instruments" - ] - }, - { - "text": "Revise or make amendments to existing legislation and adopt all other necessary measures in order to fight all forms of incitement and agitation to hatred and violence", - "values": [ - "Other" - ] - }, - { - "text": "Give full effect to recommendations 38 and 39 of the Committee on the Elimination of Racial Discrimination regarding racially motivated offences ", - "values": [ - "Racial discrimination", - "Treaty bodies" - ] - }, - { - "text": "Strengthen provisions related to the protection of women in the domestic life, particularly pursuing awareness raising campaigns on sexual violence and violence within the family, and allow the victims to be cared in an optimum manner", - "values": [ - "Human rights education and training", - "Women's rights" - ] - }, - { - "text": "Continue efforts to combat human trafficking and ensure that special attention is given to vulnerable groups when applying the law adopted in this regard", - "values": [ - "Trafficking" - ] - }, - { - "text": "Take measures to overcome the difficulty of access to birth registration procedures, particularly for children of African descent, indigenous children and children living in rural and border areas ", - "values": [ - "Indigenous peoples", - "Minorities", - "Rights of the Child", - "Statelessness and the right to nationality" - ] - }, - { - "text": "Ensure that the trials of seven Baha'is are fair and transparent and conducted in accordance with international standards, and that Iran amend all legislation that discriminates against minority groups", - "values": [ - "Freedom of opinion and expression", - "Justice", - "Minorities" - ] - }, - { - "text": "Pursue and enhance efforts to combat human trafficking as well as raising awareness as to the threat posed by this scourge and protect its victims", - "values": [ - "Trafficking" - ] - }, - { - "text": "Strengthen policies to prevent school dropout", - "values": [ - "Right to education" - ] - }, - { - "text": "Sign and ratify the Optional Protocols to ICCPR, ICESCR and CAT and the International Convention for the Protection of All Persons from Enforced Disappearance ", - "values": [ - "CP rights - general", - "Detention", - "ESC rights - general", - "Enforced disappearances", - "International instruments", - "Torture and other CID treatment" - ] - }, - { - "text": "Recommended the adoption of a legal moratorium on the use of the death penalty with a view to abolishing capital punishment in Ghana's national legislation.", - "values": [ - "Death penalty" - ] - }, - { - "text": "Strengthen its cooperation with the special procedures of the Human Rights Council by responding positively to the pending visit requests and eventually consider extending a standing invitation to all the special procedure mandate holders ", - "values": [ - "Special procedures" - ] - }, - { - "text": "Continue efforts to combat the trafficking of persons, in particular of women and children, with the prosecution of perpetrators", - "values": [ - "Rights of the Child", - "Trafficking", - "Women's rights" - ] - }, - { - "text": "Continue judicial reform, including through the implementation of framework programme for judicial reform 2012-2016, as well as the creation of the Judges and Magistrates Vetting Board, and by reforming the police and penitentiary system", - "values": [ - "Justice" - ] - }, - { - "text": "Request greater efforts by OHCHR to further assist capacity-constrained small States in the Caribbean, in such a manner as to address the challenges faced by Dominica in harmonizing and integrating its international obligations with national legislation, as well as the increased reporting obligations attendant upon those obligations", - "values": [ - "Technical assistance and cooperation", - "Treaty bodies" - ] - }, - { - "text": "Ensure the effective investigation and sanctioning of all cases of violence against religious minorities ", - "values": [ - "Freedom of religion and belief", - "Minorities" - ] - }, - { - "text": "Take further measures to combat maternal mortality and, among others, give specific follow-up to the recommendation of the Committee on the Rights of the Child concerning availability of free medical assistance to pregnant women.", - "values": [ - "Right to health", - "Treaty bodies", - "Women's rights" - ] - }, - { - "text": "Develop a comprehensive and inclusive strategy to deal with the past, based on the rights of victims and the obligations of States, namely justice, reparation and guarantees of non-repetition", - "values": [ - "Justice" - ] - }, - { - "text": "Decriminalize defamation to ensure that journalists are able to practise in a free and safe environment, investigate all attacks on journalists", - "values": [ - "Freedom of the press" - ] - }, - { - "text": "Accelerate the enactment of the Sri Lanka Employment Migration Authority Act on the protection of migrant workers and their families in line with the International Convention on the Protection of the Rights of All Migrant Workers and Members of Their Families", - "values": [ - "International instruments", - "Labour", - "Migrants" - ] - }, - { - "text": "Continue working to eliminate gender stereotypes and conduct awareness-raising campaigns at the national level in order to combat it", - "values": [ - "Human rights education and training", - "Women's rights" - ] - }, - { - "text": "Combat impunity by ensuring prompt, thorough and transparent investigations of all violations against human rights defenders, and the prosecution of perpetrators", - "values": [ - "Human rights defenders" - ] - }, - { - "text": "Take measures to facilitate greater participation and representation of women in public offices", - "values": [ - "Women's rights" - ] - }, - { - "text": "Provide the National Council for Reparations with financial and other resources.", - "values": [ - "Justice" - ] - }, - { - "text": "Consider additional awareness-raising campaigns concerning domestic violence cases ", - "values": [ - "Human rights education and training", - "Rights of the Child", - "Women's rights" - ] - }, - { - "text": "Continue to promote programmes related to the strengthening of respect for human rights", - "values": [ - "General" - ] - }, - { - "text": "Strengthen national legislation criminalizing violence against women in order to remove the existing loopholes that leave room for perpetrators to escape punishment", - "values": [ - "Justice", - "Women's rights" - ] - }, - { - "text": "Study the possibility of ratifying the International Convention for the Protection of All Persons from Enforced Disappearance ", - "values": [ - "Enforced disappearances", - "International instruments" - ] - }, - { - "text": "Take proper legal and administrative measures and adopt the national plan of action to ensure full observance of rights of indigenous peoples.", - "values": [ - "Indigenous peoples" - ] - }, - { - "text": "Ratify the Convention on the Reduction of Statelessness", - "values": [ - "International instruments", - "Statelessness and the right to nationality" - ] - }, - { - "text": "Continue investing the necessary resources in social programmes ", - "values": [ - "Other" - ] - }, - { - "text": "Promptly take concrete and legal measures to address impunity for sexual and gender-based violence, including when committed by members of the armed forces", - "values": [ - "Human rights violations by state agents", - "Impunity", - "Rights of the Child", - "Women's rights" - ] - }, - { - "text": "Improve measures to prevent and combat the sale of children, children exploited in the labour market and child victims of commercial sexual exploitation, including prostitution and pornography", - "values": [ - "Labour", - "Rights of the Child", - "Trafficking" - ] - }, - { - "text": "Improve data compilation methods as well as statistics and strengthen the Central Statistics Office", - "values": [ - "Other" - ] - }, - { - "text": "Adopt measures with a view to reducing inequalities between men and women regarding labour conditions, especially remuneration gaps", - "values": [ - "Women's rights" - ] - }, - { - "text": "Continue measures to protect and promote social rights ", - "values": [ - "ESC rights - general" - ] - }, - { - "text": "Review existing conditions of the Carmichael Road Detention Centre with input from independent observers to bring conditions up to international standards and investigate allegations of physical abuse by detention officers", - "values": [ - "Detention", - "Human rights violations by state agents" - ] - }, - { - "text": "Improve measures to protect applicants, particularly those from rural areas, in order to strengthen the land restitution process ", - "values": [ - "Right to land" - ] - }, - { - "text": "Adopt and implement all necessary measures to register the birth of children, particularly children belonging to minorities, who are born in remote areas of the country and guarantee the issuance of birth certificates and other documents", - "values": [ - "Minorities", - "Rights of the Child", - "Statelessness and the right to nationality" - ] - }, - { - "text": "Continue to effectively address domestic violence, ensuring to victims operational access to means of protection and reinforcing prosecution of perpetrators ", - "values": [ - "Rights of the Child", - "Women's rights" - ] - }, - { - "text": "Refrain from restricting access to and banning from websites and withdraw the Order of 5 November 2011 with requires news sites to be registered", - "values": [ - "Freedom of opinion and expression" - ] - }, - { - "text": "Continue exercising its sovereign right of adopting national legislation and the penal code, including the application of the death penalty", - "values": [ - "Death penalty" - ] - }, - { - "text": "Adopt measures to combat and punish acts of violence against women, as well as to ensure the inclusion of women in different areas of society", - "values": [ - "Women's rights" - ] - }, - { - "text": "Step up efforts towards ensuring freedom of expression and the protection of journalists, and seek the assistance, as required, of special procedures, OHCHR and the United Nations Educational, Scientific and Cultural Organization, in order to achieve that end", - "values": [ - "Freedom of opinion and expression", - "Freedom of the press", - "Special procedures", - "Technical assistance and cooperation" - ] - }, - { - "text": "Take effective measures to guarantee the freedom of expression and the media through amending existing laws and practices, including its State Secrets Law, and to release all human rights defenders and journalists", - "values": [ - "Freedom of opinion and expression", - "Freedom of the press", - "Human rights defenders" - ] - }, - { - "text": "Accede to CAT in a timely manner as recommended by the Committee on the Elimination of Discrimination against Women in 2007.", - "values": [ - "Treaty bodies", - "Women's rights" - ] - }, - { - "text": "Ensure that their laws and policies are consistent with CEDAW and ICERD by revising or revoking laws and regulations which prohibit religious symbols or clothing for teachers and civil servants which are deemed contravene to freedom of religion and expression", - "values": [ - "Freedom of opinion and expression", - "Freedom of religion and belief", - "International instruments" - ] - }, - { - "text": "Ratify and implement the Convention on the Rights of Persons with Disabilities ", - "values": [ - "Disabilities", - "International instruments" - ] - }, - { - "text": "Review the laws and measures about marriage, especially of people belonging to minorities", - "values": [ - "Minorities" - ] - }, - { - "text": "Put an equal emphasis on the implementation of the Ministry of the Interior's protection programme to defend human rights defenders in the field, bearing in mind the joint statement of the Special Representative of the Secretary-General on the situation of human rights defenders with other special rapporteurs who expressed concerns about the situation and called for appropriate measures to be taken by Colombia.", - "values": [ - "Human rights defenders", - "Special procedures" - ] - }, - { - "text": "Ensure that the establishment of a national human rights institutions be in conformity with the Paris Principles ", - "values": [ - "National Human Rights Institution" - ] - }, - { - "text": "Continue to reinforce the implementation of public policies regarding persons with disabilities", - "values": [ - "Disabilities" - ] - }, - { - "text": "Enhance access to primary health care and education for people in the South, with an aim to achieve universal access for all ", - "values": [ - "Right to education", - "Right to health" - ] - }, - { - "text": "Make efforts to fully align its national legislation with all obligations under the Rome Statute ", - "values": [ - "International instruments", - "Justice" - ] - }, - { - "text": "Take concrete steps towards the abolition of the death penalty, including the imposition of an immediate moratorium on its use", - "values": [ - "Death penalty" - ] - }, - { - "text": "Promote the local integration of refugees, asylum seekers, and humanitarian status holders by extending multi-cultural programmes to them", - "values": [ - "Asylum-seekers - refugees" - ] - }, - { - "text": "Undertake awareness-raising campaigns and programmes to promote tolerance and to address violence against lesbian, gay, bisexual, transgender and intersex persons", - "values": [ - "Human rights education and training", - "Sexual Orientation and Gender Identity" - ] - }, - { - "text": "Repeal the Access to Information and Protection of Privacy Act and the Public Order and Security Act, and license independent broadcasters ", - "values": [ - "Freedom of opinion and expression", - "Freedom of the press", - "Privacy" - ] - }, - { - "text": "Provide an adequate budget for emergency centres for women victims of violence so they can carry out their mandate", - "values": [ - "Women's rights" - ] - }, - { - "text": "Pursue defending the sovereignty and the territorial integrity of the country without foreign interferences", - "values": [ - "Other" - ] - }, - { - "text": "Adopt measures that ensure compliance with the Law on Reproductive Health, by promoting the provision of education allowances in areas with high rates of forced and early marriages", - "values": [ - "Right to health", - "Rights of the Child", - "Women's rights" - ] - }, - { - "text": "Call upon the competent authorities to ensure the right of access to a lawyer by detained persons", - "values": [ - "Detention" - ] - }, - { - "text": "Adhere to the recommendation by CEDAW to closely monitor the effective implementation of the new legal framework in the Employment Act and Labour Code, provide anti-discrimination provisions for the advancement of women and minorities and ensure that the private sector fully abides by anti-discrimination laws.", - "values": [ - "Labour", - "Minorities", - "Treaty bodies", - "Women's rights" - ] - }, - { - "text": "Put in place a moratorium on convictions for same-sex relationships and, over time, decriminalize homosexuality in order to fully apply the principle of equality and non-discrimination among all persons ", - "values": [ - "Sexual Orientation and Gender Identity" - ] - }, - { - "text": "Promptly bring its domestic legislation and Constitution in line with international standards and remove restrictions on fundamental freedoms, including freedom of expression, freedom of peaceful assembly and association, freedom of the press and religious freedom", - "values": [ - "Freedom of association and peaceful assembly", - "Freedom of opinion and expression", - "Freedom of religion and belief", - "Freedom of the press" - ] - }, - { - "text": "Pursue and scale up the implementation of inclusive education policies", - "values": [ - "Right to education" - ] - }, - { - "text": "Consider establishing national human rights institutions in compliance with the Paris Principles ", - "values": [ - "National Human Rights Institution" - ] - }, - { - "text": "Follow the Yogyakarta principles as a guide to assist policy development.", - "values": [ - "Sexual Orientation and Gender Identity" - ] - }, - { - "text": "Bring civil law and customary law into conformity with the Convention on the Elimination of All Forms of Discrimination against Women, and to implement measures to put an end to polygamy", - "values": [ - "International instruments", - "Women's rights" - ] - }, - { - "text": "Ensure that the Constitution is aligned with international human rights standards, thus contributing to political efforts aimed at fully restoring unity, peace, and security throughout Libya", - "values": [ - "International instruments", - "Public security" - ] - }, - { - "text": "Give priority to the recommendations made by the Special Rapporteur on the human rights of migrants", - "values": [ - "Migrants", - "Special procedures" - ] - }, - { - "text": "Continue to develop the rule of law, including the independence of the judiciary and the impartiality of court processes, in order to bring legislation and practices further into line with the principles of the international legal system", - "values": [ - "Justice" - ] - }, - { - "text": "Continue to provide assistance and care for children and ensure that they have access to education and health ", - "values": [ - "Rights of the Child" - ] - }, - { - "text": "Promote the establishment of a legal framework in accordance with international human rights obligations that would allow the development of pluralistic, free and independent media, and free access to information, including to foreign media ", - "values": [ - "Freedom of the press", - "International instruments" - ] - }, - { - "text": "Continue ongoing efforts aimed at the adoption of the law for the protection of human rights defenders, journalists, social communicators and justice officials", - "values": [ - "Freedom of the press", - "Human rights defenders", - "Justice" - ] - }, - { - "text": "Continue its efforts to increase the percentage of women in decisionmaking positions", - "values": [ - "Women's rights" - ] - }, - { - "text": "Establish special procedures for the review and, where appropriate, annulment of adoptions or placements that originated in an enforced disappearance, in accordance with the best interests of the child and, if the child is capable of forming their own views, recognize their right to be heard", - "values": [ - "Enforced disappearances", - "Rights of the Child" - ] - }, - { - "text": "Take all appropriate measures to eliminate all forms of discriminations against women, in particular with respect to property, the sharing and inheritance of land and access to education, the labour market and political life.", - "values": [ - "Women's rights" - ] - }, - { - "text": "Introduce measures that will prevent discrimination against Roma and make further efforts to combat all forms of intolerance and racism", - "values": [ - "Minorities", - "Racial discrimination" - ] - }, - { - "text": "Continue promoting democracy in the country and gender equity in political parties", - "values": [ - "Women's rights" - ] - }, - { - "text": "Submit regularly its reports to the treaty bodies of the conventions it is party to, like the Committee on the Rights of the Child and the Committee on the Elimination of Racial Discrimination.", - "values": [ - "Racial discrimination", - "Rights of the Child", - "Treaty bodies" - ] - }, - { - "text": "Begin the implementation of specific and comprehensive anti-discrimination laws.", - "values": [ - "Other" - ] - }, - { - "text": "Not to maintain the death penalty in its legislation since the last execution dates from 1983", - "values": [ - "Death penalty" - ] - }, - { - "text": "Continue its efforts to fight climate challenges with the support of the international community ", - "values": [ - "Environment", - "Technical assistance and cooperation" - ] - }, - { - "text": "Consider abolishing the death penalty or establish an official moratorium on its use", - "values": [ - "Death penalty" - ] - }, - { - "text": "Ensure that the new ten-year plan between the Ministry of Justice and the Anti-Corruption Office fully addresses corruption practices in all branches of the judiciary, civil service and armed forces", - "values": [ - "Corruption", - "Justice" - ] - }, - { - "text": "Consider the establishment of a national human rights institution based on the good practices of other countries", - "values": [ - "National Human Rights Institution" - ] - }, - { - "text": "Pursue its programmes to develop former conflict zones in order to bring afflicted communities at par with those living in other provinces of the country.", - "values": [ - "Development" - ] - }, - { - "text": "Implement further policies to ensure gender equality throughout society, and strengthen the promotion and protection of the rights of women ", - "values": [ - "Women's rights" - ] - }, - { - "text": "Expand the scope of protection of children against crimes committed online", - "values": [ - "Rights of the Child" - ] - }, - { - "text": "Ratify OP-CAT, as well as OP-CRC-AC ", - "values": [ - "Detention", - "International humanitarian law", - "International instruments", - "Rights of the Child", - "Torture and other CID treatment" - ] - }, - { - "text": "Ensure the political and social-economic rights of minority groups in Niger Delta, and that consultations in this regard are undertaken with these minority groups", - "values": [ - "Minorities" - ] - }, - { - "text": "Accelerate finalization of the necessary amendments to the legislative measures to ensure the accreditation of the Ombudsman's Office with an "A" status in line with Paris Principles", - "values": [ - "National Human Rights Institution" - ] - }, - { - "text": "Strengthen its protection efforts to face the dangers of natural disasters and encourage the international community to provide the necessary assistance", - "values": [ - "Environment", - "Technical assistance and cooperation" - ] - }, - { - "text": "Pay priority attention to gender equality and discrimination against women, as well as on the grounds of race and ethnicity, and ensure the application of the principles and provisions of the International Convention on the Elimination of All Forms of Racial Discrimination in the domestic legislation of the country", - "values": [ - "Racial discrimination", - "Women's rights" - ] - }, - { - "text": "Strengthen efforts to combat human trafficking", - "values": [ - "Trafficking" - ] - }, - { - "text": "Ratify as soon as possible the main international human rights instruments to which it is not yet a party", - "values": [ - "International instruments" - ] - }, - { - "text": "Increase the provision of resources for education establishments in remote and rural areas, as well as regions inhabited by ethnic minorities", - "values": [ - "Minorities", - "Right to education" - ] - }, - { - "text": "Establish a specific mechanism to monitor Islamophobia and adopt effective measures to combat this evil phenomenon among political parties and extreme right-wing organizations ", - "values": [ - "Freedom of religion and belief", - "Racial discrimination" - ] - }, - { - "text": "Take all necessary actions to eliminate the practices enabling perpetrators of rape to escape a criminal conviction by marrying their young victims and safeguard the rights of rape victims ", - "values": [ - "Women's rights" - ] - }, - { - "text": "Condemn all statements of a racist nature and increase awareness-raising, particularly directed at youth, of the unacceptability of racism", - "values": [ - "Human rights education and training", - "Racial discrimination" - ] - }, - { - "text": "Ensure that legislation to counter torture goes beyond just police forces and instead covers all public bodies, and that it includes mechanisms for giving reparations to victims", - "values": [ - "Torture and other CID treatment" - ] - }, - { - "text": "Ensure that the Commissioner for Information of Public Importance be given greater access to information so that he may fully determine whether such information should be withheld from access to the public", - "values": [ - "Freedom of opinion and expression" - ] - }, - { - "text": "Ensure that credible allegations of police misconduct are investigated through an independent mechanism", - "values": [ - "Human rights violations by state agents", - "Justice" - ] - }, - { - "text": "Continue efforts aimed at implementing existing national policies and plans to further strengthen health and education systems", - "values": [ - "Right to education", - "Right to health" - ] - }, - { - "text": "Continue its commendable efforts to promote understanding between nationals and foreign residents, as well as its efforts in the area of education in ethnic and religious tolerance", - "values": [ - "Freedom of religion and belief", - "Human rights education and training", - "Migrants", - "Minorities" - ] - }, - { - "text": "Decriminalize abortion and ensure that safe and legal abortion services are available for those women and girls whose pregnancy is a result of rape or whose lives or health are put at risk", - "values": [ - "Women's rights" - ] - }, - { - "text": "Take further steps to protect children, including by implementing the 2014 Child Protection Act and finalizing the ratification of the Convention on the Rights of the Child, taking steps to ratify its Optional Protocol on the involvement of children in armed conflict, and by implementing the 2012 action plans to prevent the recruitment and use of child soldiers by the Somali National Army and allied militias", - "values": [ - "International humanitarian law", - "International instruments", - "Rights of the Child" - ] - }, - { - "text": "Argentina undertakes to promote initiatives in the Human Rights Council, among other forums, that seek to increase the protection afforded migrants and to spearhead discussions on the development and implementation of public policies on the subject", - "values": [ - "Migrants" - ] - }, - { - "text": "Take further steps fully to understand the causes of inequality faced by indigenous people and to minimize their effects ", - "values": [ - "Indigenous peoples" - ] - }, - { - "text": "Extend a standing invitation to all special procedures and accept all the visits of Special Rapporteurs", - "values": [ - "Special procedures" - ] - }, - { - "text": "Step up its efforts to protect all citizens from violence and discrimination, including lesbian, gay, bisexual and transgender persons", - "values": [ - "Sexual Orientation and Gender Identity" - ] - }, - { - "text": "Rapidly create a national preventive mechanism against torture ", - "values": [ - "Detention", - "Torture and other CID treatment" - ] - }, - { - "text": "Take measures aimed at increasing the representation of minority groups in the public and private spheres", - "values": [ - "Minorities" - ] - }, - { - "text": "Continue to strengthen its efforts to provide for better legal protection for vulnerable groups and to guarantee their rights on the ground.", - "values": [ - "Minorities" - ] - }, - { - "text": "Develop official statistics that record cases of domestic violence, femicide, abuse, sexual abuse and sexual exploitation, the latter especially of children and adolescents, and facilitate access to justice for victims and the prosecution of the perpetrators ", - "values": [ - "Rights of the Child", - "Women's rights" - ] - }, - { - "text": "Ratify the Convention against Torture and other Cruel, Inhuman or Degrading Treatment or Punishment, as well as its Optional Protocol ", - "values": [ - "Detention", - "International instruments", - "Torture and other CID treatment" - ] - }, - { - "text": "Continue implementing its project aimed at eliminating child trafficking and child labour in fishing communities", - "values": [ - "Labour", - "Rights of the Child", - "Trafficking" - ] - }, - { - "text": "Address the recommendation made in 2009 by the then Independent Expert on Extreme Poverty and Human Rights, regarding the major efforts to be undertaken to incorporate and coordinate social programmes with a cultural approach and a gender perspective ", - "values": [ - "Poverty", - "Special procedures" - ] - }, - { - "text": "Consider amending the Immigration Control Act to introduce a maximum period of detention pending deportation", - "values": [ - "Asylum-seekers - refugees", - "Detention", - "Migrants" - ] - }, - { - "text": "Take steps to improve the status of religious minorities and ensure protection for religious communities from persecution ", - "values": [ - "Freedom of religion and belief", - "Minorities" - ] - }, - { - "text": "Consider to continue addressing allegations of discriminatory treatment, including on the grounds of ethnicity, by law enforcement officials", - "values": [ - "Human rights violations by state agents" - ] - }, - { - "text": "Continue addressing the situation of displaced and internally displaced persons in a durable, sustainable manner, such as through the Strategy for Permanent Resolution of the Problems of displaced and internally displaced persons ", - "values": [ - "Internally displaced persons" - ] - }, - { - "text": "Simplify, harmonize and reinforce the current legal norms on equality in favour of those most vulnerable", - "values": [ - "Other" - ] - }, - { - "text": "Ensure, protect and fulfil the right to an adequate standard of living, including the rights to adequate food on a non-discriminatory basis", - "values": [ - "Right to food" - ] - }, - { - "text": "Increase efforts to identify and provide assistance to victims of human trafficking and implement and provide adequate financing for the national strategy to combat human trafficking", - "values": [ - "Trafficking" - ] - }, - { - "text": "Intensify efforts aimed at accelerating the elimination of discrimination against women and promoting gender equality, including through the development of the proposed national database on gender-based violence", - "values": [ - "Women's rights" - ] - }, - { - "text": "Further strengthen its efforts to promote the right to education, including by implementing an affordable education programme for all ", - "values": [ - "Right to education" - ] - }, - { - "text": "Remove restrictions on freedom of information and expression that are not in accordance with international human rights law - established by law, and deemed necessary and proportionate", - "values": [ - "Freedom of opinion and expression", - "International instruments" - ] - }, - { - "text": "Bilateral and other engagement to combat the phenomenon of human smuggling and trafficking in persons will be enhanced to curb these activities in keeping with applicable standards", - "values": [ - "Trafficking" - ] - }, - { - "text": "Lift the economic, financial and commercial blockade against Cuba, which affects the enjoyment of the human rights of more than 11 million people ", - "values": [ - "Other" - ] - }, - { - "text": "Raise the minimum age of criminal responsibility to comply with international standards", - "values": [ - "Justice", - "Rights of the Child" - ] - }, - { - "text": "Amend the relevant legislation to bring the definition of torture in line with the Convention against Torture ", - "values": [ - "International instruments", - "Torture and other CID treatment" - ] - }, - { - "text": "Compile information on the violence against children within the family.", - "values": [ - "Rights of the Child" - ] - }, - { - "text": "Continue to suspend capital punishment by putting in place, as a first step, a de jure moratorium against executions and eventually abolishing the death penalty ", - "values": [ - "Death penalty" - ] - }, - { - "text": "Proceed swiftly with the ratification of the CRPD ", - "values": [ - "Disabilities", - "International instruments" - ] - }, - { - "text": "Step up its excellent cooperation with civil society and to ensure that this helps further to protect human rights", - "values": [ - "Civil society" - ] - }, - { - "text": "Continue efforts to end discrimination and violence against women by taking all necessary measures to guarantee equal and effective access to justice for women and to ensure access to all levels of education", - "values": [ - "Right to education", - "Women's rights" - ] - }, - { - "text": "Implement the legal provisions and, where necessary, adopt legal reforms to guarantee family reunification of foreigners who have settled in Denmark, particularly family members of refugees, in accordance with the 1951 Convention Relating to the Status of Refugees and its 1967 Protocol, as well as the 1954 Convention Relating to the status of Stateless Persons and the 1961 Convention on the Reduction of Statelessness ", - "values": [ - "Asylum-seekers - refugees", - "International instruments", - "Migrants", - "Statelessness and the right to nationality" - ] - }, - { - "text": "Amend its laws with a view to prohibiting discrimination on the basis of sex, sexual orientation and gender identity", - "values": [ - "Sexual Orientation and Gender Identity", - "Women's rights" - ] - }, - { - "text": "Fight effectively against all forms of discrimination against women, older people and people with albinism", - "values": [ - "Minorities", - "Women's rights" - ] - }, - { - "text": "Continue its efforts aimed at abolishing the use of the death penalty and continue with the application of the moratorium declared in 2004 ", - "values": [ - "Death penalty" - ] - }, - { - "text": "Recommended that the National Commission for Reparation and Reconciliation and the Working Group on Historical Memory intensify their work to fully clarify past crimes and give voice to victims.", - "values": [ - "Justice" - ] - }, - { - "text": "Facilitate training for members of the law enforcement agencies to effectively combat all forms of violence and sexual exploitation of children. ", - "values": [ - "Rights of the Child" - ] - }, - { - "text": "Take the necessary measures to ensure that its new Constitution is consistent with the human rights instruments to which Libya is a party", - "values": [ - "International instruments" - ] - }, - { - "text": "Continue efforts to combat discrimination and respect minority rights ", - "values": [ - "Minorities", - "Racial discrimination" - ] - }, - { - "text": "Invest in the education sector, particularly in rural areas", - "values": [ - "Right to education" - ] - }, - { - "text": "Take measures which promote the independence of the judiciary in law and practice ", - "values": [ - "Justice" - ] - }, - { - "text": "To disseminate, in a forum with wide participation among Government agencies and social movements, the results of the National Census of Population and Housing 2011 in order to inform of the situation and number of individuals and families of African descent, allowing the collection of data and information related to this group, to implement and adopt public policies to provide the necessary assistance and support required by this population within the geographical space of Venezuela", - "values": [ - "Minorities" - ] - }, - { - "text": "Reinforce measures to combat human trafficking", - "values": [ - "Trafficking" - ] - }, - { - "text": "Continue to increase development aid to reach the target of 0.7% GDP as this will increase the ability of aid recipients to achieve the right to development and protect and promote human rights", - "values": [ - "Development" - ] - }, - { - "text": "Ensure the application, in line with international human rights provisions, of articles 3 of the new Constitution that guarantees freedom of worship for all ", - "values": [ - "Freedom of religion and belief", - "International instruments" - ] - }, - { - "text": "Harmonize the work of charitable organizations with the International Convention for the Suppression of the Financing of Terrorism ", - "values": [ - "Civil society", - "Public security" - ] - }, - { - "text": "Prevent military recruitment of children and foster the rights of the child as provided for in the Convention on the Rights of the Child.", - "values": [ - "International instruments", - "Rights of the Child" - ] - }, - { - "text": "Pass the new criminal procedure code, which is being studied by the technical working group", - "values": [ - "Justice" - ] - }, - { - "text": "Duly investigate the crimes of hate and discrimination, among them, the most recent acts committed against the lesbian, gay, bisexual, transgender and intersex community", - "values": [ - "Sexual Orientation and Gender Identity" - ] - }, - { - "text": "Continue to implement policies and programmes aimed at fulfilling the interests of the disabled", - "values": [ - "Disabilities" - ] - }, - { - "text": "Consider formalizing the de facto moratorium on the death penalty", - "values": [ - "Death penalty" - ] - }, - { - "text": "Ensure that human rights are explicitly protected in domestic law, including by reinstating the 1997 Constitution and immediately restoring the judges, magistrates and other judicial officers removed by President Iloilo on 10 April 2009", - "values": [ - "Justice" - ] - }, - { - "text": "Respect the rules of fair procedure in accordance with its obligations under the international law and release immediately all persons detained without any valid reason ", - "values": [ - "Detention" - ] - }, - { - "text": "Apply in an efficient manner the legislation that prohibits female genital mutilation", - "values": [ - "Rights of the Child", - "Torture and other CID treatment", - "Women's rights" - ] - }, - { - "text": "Address the issue of domestic violence, gender gap in tertiary education and women's participation in politics. ", - "values": [ - "Women's rights" - ] - }, - { - "text": "Harmonize its legislation in accordance with the Convention on Preventing and Combating Violence against Women and Domestic Violence (the Istanbul Convention) without delay ", - "values": [ - "International instruments", - "Rights of the Child", - "Women's rights" - ] - }, - { - "text": "Strengthen efforts deployed to prevent natural disasters", - "values": [ - "Environment" - ] - }, - { - "text": "Ensure that the refugee flows across its territory continue to be managed in accordance with the obligations of Greece in respect of human rights", - "values": [ - "Asylum-seekers - refugees" - ] - }, - { - "text": "Undertake effective measures to protect children, particularly those belonging to religious minorities", - "values": [ - "Freedom of religion and belief", - "Minorities", - "Rights of the Child" - ] - }, - { - "text": "Continue to amend its national legislation in line with the international human rights instruments", - "values": [ - "International instruments" - ] - }, - { - "text": "Prohibit and criminalize acts of domestic violence", - "values": [ - "Rights of the Child", - "Women's rights" - ] - }, - { - "text": "Pursue the strengthening of the capacity-building of country's qualified specialists and managers working in the human rights field", - "values": [ - "Human rights education and training" - ] - }, - { - "text": "Immediately and unconditionally release all those arbitrarily detained ", - "values": [ - "Detention" - ] - }, - { - "text": "Consider establishing a national mechanism for the elaboration of reports and the follow-up to recommendations", - "values": [ - "Treaty bodies", - "UPR process" - ] - }, - { - "text": "Bring an end to segregation of Roma children in the field of education ", - "values": [ - "Minorities", - "Right to education", - "Rights of the Child" - ] - }, - { - "text": "Consider incorporating basic human rights principles and guarantees for fundamental freedom on its new constitution", - "values": [ - "General" - ] - }, - { - "text": "Withdraw the reservations to Article 20 of the Convention against Torture and Other Cruel, Inhuman or Degrading Treatment or Punishment and consider ratifying the Optional Protocol to this Convention", - "values": [ - "Detention", - "International instruments", - "Torture and other CID treatment" - ] - }, - { - "text": "Step up its efforts to quickly complete the process to implement transitional justice mechanisms and to put an end to impunity of perpetrators of extrajudicial executions or political executions ", - "values": [ - "Extrajudicial executions", - "Impunity", - "Justice" - ] - }, - { - "text": "Consider signing and ratifying the International Convention for the Protection of All Persons from Enforced Disappearance", - "values": [ - "Enforced disappearances", - "International instruments", - "Treaty bodies" - ] - }, - { - "text": "Make progress towards the protection of LGBTI people, by creating the conditions allowing them to access to basic services in the fields of health, work and religious activities, and in addition by eliminating definitely from the Criminal Code sodomy as a crime", - "values": [ - "Sexual Orientation and Gender Identity" - ] - }, - { - "text": "Take all necessary measures to fully align its legislation with the Rome Statute and particularly to allow full cooperation with the International Criminal Court", - "values": [ - "International instruments", - "Justice" - ] - }, - { - "text": "Abolish definitively death penalty ", - "values": [ - "Death penalty" - ] - }, - { - "text": "Take measures to ensure that deportations are conducted in compliance with existing international obligations, and that immigration and law enforcement officials receive the necessary training to ensure the human rights of deportees are respected ", - "values": [ - "Human rights education and training", - "Migrants" - ] - }, - { - "text": "Accelerate the formulation of the Labour Migration Policy and consider ratifying the International Convention on the Protection of the Rights of All Migrant Workers and Members of Their Families", - "values": [ - "International instruments", - "Labour", - "Migrants" - ] - }, - { - "text": "Adopt a comprehensive social security system and the HIV Bill ", - "values": [ - "HIV - Aids" - ] - }, - { - "text": "Continue its favourable policies aiming at the full enjoyment of the cultural, economic and social rights, especially for vulnerable groups, including women, children, the elderly, the minorities and persons with difficulties ", - "values": [ - "ESC rights - general", - "Minorities", - "Rights of the Child", - "Women's rights" - ] - }, - { - "text": "Accelerate the process of aligning its national legislation with the provisions of the Rome Statute", - "values": [ - "International instruments", - "Justice" - ] - }, - { - "text": "Develop mechanisms for full and fair reparations for victims of slavery, including compensation and rehabilitation ", - "values": [ - "Justice" - ] - }, - { - "text": "Develop public awareness campaigns to combat manifestations of discrimination and racism, including xenophobia, homophobia , anti-Semitism, and other forms of intolerance in order to further protect and strengthen the rights of members of minority groups, including Lesbian, Gay, Bisexual, and Transgender individuals and the Roma community", - "values": [ - "Human rights education and training", - "Minorities", - "Racial discrimination", - "Sexual Orientation and Gender Identity" - ] - }, - { - "text": "Review surveillance legislation with a view to effectively protecting the right to privacy", - "values": [ - "Privacy" - ] - }, - { - "text": "Continue to improve the legal system, so that it reflects the will expressed through the reform of 2012, in order to further ensure the protection of human rights", - "values": [ - "Justice" - ] - }, - { - "text": "Double its efforts in its fight against sexual violence against women and girls ", - "values": [ - "Rights of the Child", - "Women's rights" - ] - }, - { - "text": "Establish a formal moratorium on the death penalty and ratify the Second Optional Protocol to the International Covenant on Civil and Political Rights, with a view to abolishing death penalty both in practice and in law", - "values": [ - "Death penalty", - "International instruments" - ] - }, - { - "text": "Ratify ICCPR", - "values": [ - "CP rights - general", - "International instruments" - ] - }, - { - "text": "Amend or revoke legislation, such as the "Anti-Terror Law" and the "Law on Meetings and Demonstrations", ensuring their provisions cannot be misused", - "values": [ - "Counter-terrorism" - ] - }, - { - "text": "Accelerate efforts to ratify the International Convention for the Protection of All Persons from Enforced Disappearance", - "values": [ - "Enforced disappearances", - "International instruments" - ] - }, - { - "text": "Ensure inclusive education, taking all the measures required to end cases of segregation of children belonging to ethnic minorities in schools", - "values": [ - "Minorities", - "Right to education", - "Rights of the Child" - ] - }, - { - "text": "Take appropriate legislative and public policy measures with a view of continuing the promotion of the rights of Afro-Panamanians and the fight against racism and xenophobia", - "values": [ - "Minorities", - "Racial discrimination" - ] - }, - { - "text": "Ratify the International Convention for the Protection of All Persons from Enforced Disappearance ", - "values": [ - "Enforced disappearances", - "International instruments" - ] - }, - { - "text": "Address discrimination and prejudice against leprosy in line with the Principles and Guidelines for the Elimination of Discrimination against Persons Affected by Leprosy and Their Family Members and the relevant General Assembly resolution ", - "values": [ - "Right to health" - ] - }, - { - "text": "Fully implement the national integration strategy adopted earlier in the year", - "values": [ - "Asylum-seekers - refugees" - ] - }, - { - "text": "Take measures to lower the number of pre-trial detainees through more liberal bail provisions, especially for those accused of less serious crimes", - "values": [ - "Detention" - ] - }, - { - "text": "Consider issuing a standing invitation to United Nations human rights special procedures ", - "values": [ - "Special procedures" - ] - }, - { - "text": "Continue its efforts in promoting and protecting the rights of persons with disabilities with particular attention to the specific needs of women and children with disabilities, especially by increasing awareness of their rights to prevent social discrimination and providing equal access to adequate social and health services", - "values": [ - "Disabilities", - "ESC rights - general", - "Right to health", - "Rights of the Child", - "Women's rights" - ] - }, - { - "text": "Expedite the adoption of the asylum bill which is pending before the National Assembly", - "values": [ - "Asylum-seekers - refugees" - ] - }, - { - "text": "Provide for persons belonging to the Slovenian minority all guaranteed rights", - "values": [ - "Minorities" - ] - }, - { - "text": "Enhance its efforts to eradicate violence against women and to improve the status of women in society", - "values": [ - "Women's rights" - ] - }, - { - "text": "Urgently eliminate the practice of forced sterilization of women with disabilities", - "values": [ - "Torture and other CID treatment", - "Women's rights" - ] - }, - { - "text": "Align fully its national legislation with the Rome Statute of the International Criminal Court, in particular by incorporating provisions to cooperate promptly and fully with the Court", - "values": [ - "International instruments", - "Justice" - ] - }, - { - "text": "End arbitrary detention, torture and ill-treatment, including violence committed by the police and the armed forces, fight effectively against the impunity of the perpetrators of such acts", - "values": [ - "Detention", - "Human rights violations by state agents", - "Impunity", - "Torture and other CID treatment" - ] - }, - { - "text": "Speed up the realization of equality in the exercise of human rights by disadvantaged groups", - "values": [ - "Minorities" - ] - }, - { - "text": "Establish a national policy to address the rights of persons with disabilities", - "values": [ - "Disabilities" - ] - }, - { - "text": "Continue to promote the social inclusion and rights of its LGBT community and that the country's experience in this regard is actively shared with countries in the region and globally ", - "values": [ - "Sexual Orientation and Gender Identity" - ] - }, - { - "text": "Review legislation concerning family law and laws relating to the authority of guardians over women, and to amend or repeal laws that discriminate against women", - "values": [ - "Women's rights" - ] - }, - { - "text": "Consider an early ratification of the Third Optional Protocol to the Convention on the Rights of the Child on a communication procedure", - "values": [ - "International instruments", - "Rights of the Child" - ] - }, - { - "text": "Become a State party to the following international instruments: OPCAT, OP-CRPD", - "values": [ - "Detention", - "Disabilities", - "International instruments", - "Torture and other CID treatment" - ] - }, - { - "text": "Continue with the development of programmes for the reintegration of victims of gender-based violence, the provision of psychosocial support and public awareness", - "values": [ - "Human rights education and training", - "Women's rights" - ] - }, - { - "text": "Adopt legislative measures to criminalize and prosecute gender violence at public instances, as well as establish shelters for women victims of violence and train staff involved into investigations of those cases ", - "values": [ - "Women's rights" - ] - }, - { - "text": "Continue to pursue commendable efforts to combat HIV and AIDS, and share experiences, particularly regarding the involvement of youth in programmes designed to fight this scourge ", - "values": [ - "HIV - Aids", - "Rights of the Child" - ] - }, - { - "text": "Work towards improving people's basic rights such as the right to food and the right to the highest attainable standard of health", - "values": [ - "Right to health", - "Right to water and sanitation" - ] - }, - { - "text": "Ensure that the legislative changes, if adopted, keep the same level of human rights protection as provided by the Human Rights Act, as advised by the High Commissioner for Human Rights and the United Nations treaty bodies", - "values": [ - "General", - "Treaty bodies" - ] - }, - { - "text": "Develop and implement a plan of action to protect the safety and human rights of community activists and members of social organizations", - "values": [ - "Civil society" - ] - }, - { - "text": "Continue efforts to combat violence against women", - "values": [ - "Women's rights" - ] - }, - { - "text": "Implement as soon as possible Decree laws 115 and 116 and establish promptly a high independent authority for media and communication ", - "values": [ - "Freedom of the press" - ] - }, - { - "text": "Extend the criminalization of female genital mutilation to all those practices that are harmful to women's physical and psychological health ", - "values": [ - "Rights of the Child", - "Torture and other CID treatment", - "Women's rights" - ] - }, - { - "text": "Consider ratifying the ICCPR and establishing a National Human Rights Institution", - "values": [ - "CP rights - general", - "International instruments", - "National Human Rights Institution" - ] - }, - { - "text": "Maintain its positive efforts in the current process of reviewing its national laws with a view to bringing them in line with its international human rights obligations", - "values": [ - "International instruments" - ] - }, - { - "text": "Ratify all international instruments concerning human rights", - "values": [ - "International instruments" - ] - }, - { - "text": "Immediately grant access to the delegates of ICRC to the Papua provinces in order for them to fulfil their mandate ", - "values": [ - "Other" - ] - }, - { - "text": "Continue efforts to increase employment opportunities and improve the employment situation for women and to promote women's rights", - "values": [ - "Women's rights" - ] - }, - { - "text": "Continue to effectively implement pro-poor growth and employment creation strategies ", - "values": [ - "Development", - "Poverty" - ] - }, - { - "text": "Continue strengthening successful social programmes to improve the quality of life of their people particularly the most marginalized", - "values": [ - "ESC rights - general" - ] - }, - { - "text": "With regard to the promotion of human rights on the ground: Continuance of administrative reform, improvement of the legal and institutional frameworks with a view to strengthening the rule of law, better ensuring the ownership of citizens and their access to legal aid: (i) Scaling up poverty reduction and giving priority to job creation, income improvement, development of social security network and provision of basic social services to the poor and vulnerable groups and those in mountainous and remote areas", - "values": [ - "Development", - "Justice", - "Poverty" - ] - }, - { - "text": "Continue its efforts to raise education standards and improve access to education", - "values": [ - "Right to education" - ] - }, - { - "text": "Ratify, transpose in domestic law and fully implement the CAT, as well as set up an independent mechanism to monitor places of detention and to prevent torture ", - "values": [ - "International instruments", - "Torture and other CID treatment" - ] - }, - { - "text": "Take concrete measures to reduce the gender pay gap", - "values": [ - "Women's rights" - ] - }, - { - "text": "Continue the ratification of international instruments to which the country is not yet a party, in particular those relating to human rights", - "values": [ - "International instruments" - ] - }, - { - "text": "Consider legislating a special personal status law that would contribute to the strengthening of women's rights", - "values": [ - "Women's rights" - ] - }, - { - "text": "Make every possible efforts to implement the Roma Strategy and Action Plans, in compliance with the strategy and the Decade of Roma Inclusion, which is to end in 2015.", - "values": [ - "Minorities" - ] - }, - { - "text": "The delegation reaffirmed the commitment of the Bahamas to continue to work with the human rights treaty bodies and the Council to ensure that there was constructive dialogue and to enhance the capacity of the Bahamas to carry out its reporting obligations under international human rights instruments.", - "values": [ - "Treaty bodies" - ] - }, - { - "text": "Pursue work to draft and enact a law establishing registered partnership for same sex couples.", - "values": [ - "Sexual Orientation and Gender Identity" - ] - }, - { - "text": "Continue providing the means necessary to avoid pay differences based on gender ", - "values": [ - "Women's rights" - ] - }, - { - "text": "Take measures to combat inequality between men and women and to improve the representation of women in economic and political life", - "values": [ - "Women's rights" - ] - }, - { - "text": "Intensify its efforts to increase access to public information", - "values": [ - "Freedom of opinion and expression" - ] - }, - { - "text": "Consider signing and ratifying the Council of Europe Convention on Preventing and Combating Violence against Women and Domestic Violence ", - "values": [ - "Women's rights" - ] - }, - { - "text": "Investigate all allegations of threats and harassment against journalists and bring the perpetrators to justice ", - "values": [ - "Freedom of the press" - ] - }, - { - "text": "Protect women against all forms of sexual violence and ensure full respect of the Security Council resolutions on "Women, Peace and Security" in the management of the conflict, particularly by ensuring effective participation of women in the political dialogue ", - "values": [ - "Women's rights" - ] - }, - { - "text": "Continue promoting sustainable economic and social development and raising the living standard of its people so as to lay down a firm basis for the enjoyment of human rights by its people", - "values": [ - "Development" - ] - }, - { - "text": "Repeal legislation that facilitates the blockage of Internet content and telecommunications", - "values": [ - "Freedom of opinion and expression" - ] - }, - { - "text": "Review legal provisions relating to the detention of migrants and asylum seekers with a view to guaranteeing the protection and promotion of their human rights, and the strict compliance with applicable international norms", - "values": [ - "Asylum-seekers - refugees", - "Detention", - "Migrants" - ] - }, - { - "text": "Continue measures for adoption of the "National Action Plan for Persons with Disabilities"", - "values": [ - "Disabilities" - ] - }, - { - "text": "Guarantee the enjoyment of human rights of the minorities and vulnerable groups in the country, including the indigenous peoples and migrants", - "values": [ - "Indigenous peoples", - "Migrants", - "Minorities" - ] - }, - { - "text": "Pursue efforts in the field of judicial reform and upgrade laws to reflect the will and interest of all segments of society ", - "values": [ - "Justice" - ] - }, - { - "text": "Repeal or amend those sections of the Penal Code that prevent LGBT persons from having equal rights ", - "values": [ - "Sexual Orientation and Gender Identity" - ] - }, - { - "text": "Take all necessary steps to address xenophobia through legislation, appropriate public awareness programmes and promotion of tolerance and cultural diversity, and adopt a national action plan to combat racism, racial discrimination, xenophobia and related intolerance", - "values": [ - "Human rights education and training", - "Racial discrimination" - ] - }, - { - "text": "Step up efforts to improve the situation of socially vulnerable groups of the population, in particular migrant workers, including their protection from discrimination", - "values": [ - "Labour", - "Migrants", - "Racial discrimination" - ] - }, - { - "text": "Eliminate all forms of discrimination against the Roma community, migrants and religious minorities, and take necessary measures against the perpetrators of racially motivated acts against migrants and ethnic and religious minorities ", - "values": [ - "Freedom of religion and belief", - "Migrants", - "Minorities", - "Racial discrimination" - ] - }, - { - "text": "Adopt measures to protect the human rights of migrants, in particular foreign domestic workers through the revision of the legislation that establishes deportation in case of pregnancy or diagnostic of sexually- transmitted diseases such as HIV/AIDS", - "values": [ - "HIV - Aids", - "Labour", - "Migrants", - "Right to health" - ] - }, - { - "text": "Consider the possibility of ratifying the International Convention for the Protection of All Persons from Enforced Disappearance.", - "values": [ - "Enforced disappearances", - "International instruments" - ] - }, - { - "text": "Ratify and effectively implement, before its next UPR cycle, the Optional Protocol to the Convention against Torture", - "values": [ - "Detention", - "International instruments", - "Torture and other CID treatment" - ] - }, - { - "text": "Promote the abolition of the death penalty.", - "values": [ - "Death penalty" - ] - }, - { - "text": "Establish institutional structures to ensure birth registration throughout the country, including of the IDP population ", - "values": [ - "Internally displaced persons", - "Statelessness and the right to nationality" - ] - }, - { - "text": "Speed up the procedure to adopt a Code on the Protection of Children", - "values": [ - "Rights of the Child" - ] - }, - { - "text": "Strengthen measures against trafficking in persons by effectively implementing the Trafficking in Persons Prohibition Act, and investigating, prosecuting and punishing those responsible, as well as ensuring respect for victims' right to asylum", - "values": [ - "Asylum-seekers - refugees", - "Trafficking" - ] - }, - { - "text": "Continue, in view of its rich history, culture and tradition, its efforts and initiatives to promote dialogue among religions and civilizations, including by focusing on the theme of promoting and protecting human rights and a culture of peace", - "values": [ - "Other" - ] - }, - { - "text": "Adopt official procedures to establish the best interests of the child in all processes, in particular in those referring to immigration and refugees, using as a guideline, inter alia, general comment No. 14 of the Committee on the Rights of the Child", - "values": [ - "Asylum-seekers - refugees", - "Migrants", - "Rights of the Child", - "Treaty bodies" - ] - }, - { - "text": "Take measures to prevent child pregnancies by providing access to comprehensive sexuality education and integral sexual and reproductive health services for teenagers", - "values": [ - "Right to health", - "Rights of the Child", - "Women's rights" - ] - }, - { - "text": "Include a prohibition of discrimination of any kind, including discrimination based on sexual orientation and gender identity, ethnicity, religion and infection with HIV, in labour and employment law in line with international standards", - "values": [ - "Freedom of religion and belief", - "HIV - Aids", - "Labour", - "Minorities", - "Sexual Orientation and Gender Identity", - "Women's rights" - ] - }, - { - "text": "Accede to the OP-CAT and establish an effective National Preventive Mechanism as required under the Protocol ", - "values": [ - "Detention", - "International instruments", - "Torture and other CID treatment" - ] - }, - { - "text": "Create an autonomous and independent national human rights institution in conformity with the Paris Principles and with the technical assistance of OHCHR", - "values": [ - "National Human Rights Institution" - ] - }, - { - "text": "Ensure that human rights defenders and journalists are protected and not subject to defamation. The "protection mechanism for human rights defenders and journalists" should be funded appropriately and a clear division of jurisdictional responsibilities between the different levels of government should be achieved ", - "values": [ - "Freedom of the press", - "Human rights defenders" - ] - }, - { - "text": "Ensure the right to freedom of religion or belief ", - "values": [ - "Freedom of religion and belief" - ] - }, - { - "text": "That the State and devolved governments collaborate in the approval of an integration strategy for Gypsies, Travellers and Roma people in all the United Kingdom", - "values": [ - "Minorities" - ] - }, - { - "text": "Take steps to ratify the International Convention on the Protection of the Rights of All Migrant Workers and Members of Their Families", - "values": [ - "International instruments", - "Labour", - "Migrants" - ] - }, - { - "text": "Continue to work with World Health Organization and other United Nations agencies as well as with relevant international organizations to strengthen the public health system and facilities, not only in the conflict-affected areas but also in all parts of the country", - "values": [ - "Right to health", - "Technical assistance and cooperation" - ] - }, - { - "text": "Take measures to raise awareness among the public and all players involved in the judicial system regarding the need to respect and apply the legislation on violence against women", - "values": [ - "Human rights education and training", - "Women's rights" - ] - }, - { - "text": "Establish a system for clear registration of victims of trafficking in persons and spare no efforts to combat this evil ", - "values": [ - "Trafficking" - ] - }, - { - "text": "End the construction of all Israeli settlements in the occupied Arab territories", - "values": [ - "Other" - ] - }, - { - "text": "Continue to undertake measures to enhance the rule of law to protect the rights of its people", - "values": [ - "Justice" - ] - }, - { - "text": "Speed up the process of implementing the Optional Protocol to the Convention against Torture. ", - "values": [ - "Detention", - "International instruments", - "Torture and other CID treatment" - ] - }, - { - "text": "The United States has an unwavering commitment to respect the human rights of all migrants, regardless of their immigration status, and vigorously prosecutes crimes committed against migrants and enforces labor, workplace safety, and civil rights laws. All children have the right to equal access to public elementary and secondary education, regardless of their or their parents' immigration status, and such schools must provide meaningful access to their programs to persons with limited English proficiency, including migrants. In January 2015, we issued guidance to help schools ensure that English learner students can participate meaningfully and equally in education programs and services. Employers may not discriminate against employees or applicants based on their race, color, national origin, or, in certain cases, citizenship status.", - "values": [ - "Migrants" - ] - }, - { - "text": "Intensify cooperation with the Special Rapporteurs including by allowing them to visit the country", - "values": [ - "Special procedures" - ] - }, - { - "text": "Harmonise legislation with international obligations and standards in the field of combatting violence against women by effectively criminalizing domestic violence, sexual violence, including marital rape, as well as human trafficking, in addition to establishing effective measures for assistance to victims and access to justice", - "values": [ - "Trafficking", - "Women's rights" - ] - }, - { - "text": "Ensure that no one is detained arbitrarily and that all persons who are charged with an offence have access to a fair and impartial trial, while ensuring the independence of the judiciary", - "values": [ - "Detention", - "Justice" - ] - }, - { - "text": "Take all the necessary measures, including material assistance and support programmes to families, to ensure that all persons, especially children, have an adequate standard of living, including access to clean drinking water and sanitation", - "values": [ - "Right to water and sanitation", - "Rights of the Child" - ] - }, - { - "text": "Systematically and continuously integrate a gender perspective in the follow-up to the UPR.", - "values": [ - "UPR process", - "Women's rights" - ] - }, - { - "text": "Share its experiences, in all the international languages, particularly the English language, of its ability to fight ethically and morally", - "values": [ - "Other" - ] - }, - { - "text": "Ensure the full enjoyment of the right to freedom of expression and to peaceful assembly and revise its national legislation, inter alia the Internal Security Act and the Newspaper and Printing Presses Act, in order to eliminate media censorship and prevent self-censorship, in this regard, protect bloggers from persecution and harassment for the exercise of their human rights", - "values": [ - "Freedom of association and peaceful assembly", - "Freedom of opinion and expression", - "Freedom of the press" - ] - }, - { - "text": "Revise the Criminal Code and associated laws to ensure compliance with international standards, guarantee equality between men and women, criminalize marital rape, decriminalize sexual relations outside marriage, abolish discrimination against children born outside marriage, increase the minimum age of marriage to 18 years, decriminalize consensual same-sex relations and develop public awareness programmes to address the stigmatization of lesbian, gay, bisexual, transgender and intersex persons", - "values": [ - "Human rights education and training", - "Rights of the Child", - "Sexual Orientation and Gender Identity", - "Women's rights" - ] - }, - { - "text": "Include an explicit provision in the Omani domestic legislation on prohibition of discrimination against women in all areas of life, including in the private sphere", - "values": [ - "Women's rights" - ] - }, - { - "text": "Continue to take all the measures necessary to prevent interference with press freedom and the work of human rights defenders ", - "values": [ - "Freedom of the press", - "Human rights defenders" - ] - }, - { - "text": "Take concrete measures to end discrimination and counter stigmatization of marginalized groups, including minorities and lesbian, gay, bisexual, transgender and intersex persons", - "values": [ - "Minorities", - "Racial discrimination", - "Sexual Orientation and Gender Identity" - ] - }, - { - "text": "Take steps to ratify the International Convention for the Protection of All Persons from Enforced Disappearance.", - "values": [ - "Enforced disappearances", - "International instruments" - ] - }, - { - "text": "Continue its efforts to strengthen its national human rights mechanisms and continuously upgrade its laws, policies and institutions in the area of the promotion and protection of human rights", - "values": [ - "General" - ] - }, - { - "text": "Bahrain affirms that it will include information in its future reports on the outcome of the universal periodic review and its impact on the human rights situation on the ground.", - "values": [ - "UPR process" - ] - }, - { - "text": "Lift all restrictions on the media which violate the constitutionally recognized right to the freedom of expression and establish a calendar for the revision of norms such as the Emergency Decree of the Public Administration in Emergency Situations, the 2007 Computer Crimes Act and article 112 of the Penal Code which defines the crime of lèse-majesté tied to the concept of national security", - "values": [ - "Freedom of opinion and expression", - "Freedom of the press" - ] - }, - { - "text": "Strengthen legislative measures and establish measures to combat discrimination and violence against women, bring to an end damaging cultural practices harmful to girls and to twins", - "values": [ - "Rights of the Child", - "Torture and other CID treatment", - "Women's rights" - ] - }, - { - "text": "Develop comprehensive anti-discrimination legislation including prohibiting discrimination on the basis of sexual orientation and gender identity ", - "values": [ - "Sexual Orientation and Gender Identity" - ] - }, - { - "text": "Continue its efforts to increase enrolment rates at all levels of education, in particular continue to improve equal access to education for all children, regardless of gender, income level or background", - "values": [ - "Right to education", - "Rights of the Child" - ] - }, - { - "text": "Take into consideration the views of the civil society and respect European Union standards when elaborating the security law package", - "values": [ - "Civil society", - "Counter-terrorism" - ] - }, - { - "text": "Rescind the Sedition Act and the Newspaper Act and bring its laws and practices regarding freedom of the media and freedom of speech into line with the Universal Declaration on Human Rights \n\n", - "values": [ - "Freedom of opinion and expression", - "Freedom of the press" - ] - }, - { - "text": "Develop legislation to regulate child labour with a view to abolishing it", - "values": [ - "Labour", - "Rights of the Child" - ] - }, - { - "text": "Further strengthen the field of economic, social and cultural rights, in order to improve the living conditions of the people and to this end, the support and solidarity of the community of nations is important", - "values": [ - "ESC rights - general" - ] - }, - { - "text": "Guarantee that refugee and asylum-seeking children have access to appropriate medical services", - "values": [ - "Asylum-seekers - refugees", - "Right to health", - "Rights of the Child" - ] - }, - { - "text": "Adopt the latest draft amendments to the Marriage and Family Relations Act that equalize same-sex unions and other family unions and ban the corporal punishment of children", - "values": [ - "Rights of the Child", - "Sexual Orientation and Gender Identity", - "Torture and other CID treatment" - ] - }, - { - "text": "Implement the content of the National Consultative Forum to help Nigeria improve its performance in the area of human rights", - "values": [ - "General" - ] - }, - { - "text": "Continue the steps aimed at the promotion of human rights education at the national and international levels", - "values": [ - "Human rights education and training" - ] - }, - { - "text": "Extend a standing invitation to all special procedures of the Human Rights Council and submit regular reports to the treaty bodies", - "values": [ - "Special procedures", - "Treaty bodies" - ] - }, - { - "text": "Continue human rights training of public officials", - "values": [ - "Human rights education and training" - ] - }, - { - "text": "Develop a core common document which serves to implement specific measures to ensure compliance with its reporting obligations to human rights treaty bodies", - "values": [ - "Treaty bodies" - ] - }, - { - "text": "In cooperation with the World Health Organization and relevant international organizations, continue to improve access to quality health care for its people ", - "values": [ - "Right to health" - ] - }, - { - "text": "Continue its successful social policy in the field of health, providing the necessary resources to ensure maintaining the large institutional capacity currently exhibited by its comprehensive health system ", - "values": [ - "Right to health" - ] - }, - { - "text": "Intensify action against child prostitution, child trafficking and the use of children in the sex trade, in accordance with the 2011-2015 action plan against prostitution ", - "values": [ - "Rights of the Child", - "Trafficking" - ] - }, - { - "text": "Continue its efforts to improve the protection of victims and witnesses, and their families, as well as human rights defenders, particularly those testifying in human rights-related trials, and to ensure that adequate witness protection is implemented.", - "values": [ - "Human rights defenders", - "Justice" - ] - }, - { - "text": "Submit its initial and periodic reports to relevant human rights bodies in a timely manner ", - "values": [ - "Treaty bodies" - ] - }, - { - "text": "Consider ratification of the International Convention for the Protection of All Persons from Enforced Disappearance.", - "values": [ - "Enforced disappearances", - "International instruments" - ] - }, - { - "text": "Enhance cooperation with international community for preventing and combating human trafficking ", - "values": [ - "Trafficking" - ] - }, - { - "text": "Take steps to improve cooperation with non-governmental organizations active in the protection of children at the national and international levels", - "values": [ - "Civil society", - "Rights of the Child" - ] - }, - { - "text": "Adopt as soon as possible a legislative framework on freedom of expression, including access to internet, to decriminalize defamation and slander as crimes ", - "values": [ - "Freedom of opinion and expression" - ] - }, - { - "text": "Continue implementing programs that guarantee the success of strategies aimed at achieving quality basic education and a reduction of child and maternal mortality ", - "values": [ - "Right to education", - "Right to health", - "Rights of the Child", - "Women's rights" - ] - }, - { - "text": "Continue to provide basic medical cover for its people, including the elderly", - "values": [ - "Right to health" - ] - }, - { - "text": "Evaluate the effectiveness of implementation of laws safeguarding women's rights and providing protection against domestic and gender-based violence and ensure that measures such as protection orders and the punishment for their breach or swift access of victims to justice are systematically applied and that shelters for victims of domestic violence, including in rural areas, are readily available", - "values": [ - "Rights of the Child", - "Women's rights" - ] - }, - { - "text": "Strengthen policies and measures to prevent and eliminate the manifestations of racism, xenophobia and intolerance in society, in particular during the national and local electoral campaigns ", - "values": [ - "Elections", - "Racial discrimination" - ] - }, - { - "text": "Establish an independent mechanism for the investigation of allegations of torture and ill-treatment in line with the requirements of the recently ratified the Optional Protocol to the Convention against Torture and Other Cruel, Inhuman or Degrading Treatment or Punishment", - "values": [ - "International instruments", - "Torture and other CID treatment" - ] - }, - { - "text": "Carry out a review of the relevant laws to align them with the Convention on the Elimination of All Forms of Discrimination against Women", - "values": [ - "International instruments", - "Women's rights" - ] - }, - { - "text": "Take further measures in order to fully implement the already existing domestic legislation in the field of gender equality ", - "values": [ - "Women's rights" - ] - }, - { - "text": "Bring the juvenile justice system in line with the Convention on the Rights of the Child, the Beijing Rules, the Riyadh Guidelines as well as to La Habana Rules in order to increase the age of criminal responsibility, expressly excluding criminal proceedings for all children in conflict with the law under the age of 18 years, and therefore also eliminate 'the harmful intent' criteria currently in force", - "values": [ - "International instruments", - "Justice", - "Rights of the Child" - ] - }, - { - "text": "Continue its efforts to prevent and eliminate all forms of violence against women", - "values": [ - "Women's rights" - ] - }, - { - "text": "Continue the reforms of the judicial system already initiated and strengthen measures aimed at combating behaviour in the judiciary that may impede independent, impartial and adequate investigations and trials", - "values": [ - "Justice" - ] - }, - { - "text": "Continue efforts to bring national legislation relevant to human rights in line with the Tunisian Constitution and its international human rights obligations", - "values": [ - "International instruments", - "Justice" - ] - }, - { - "text": "Pursue the development of its institutional framework concerning the promotion and protection of human rights ", - "values": [ - "General" - ] - }, - { - "text": "Extend a standing invitation to all the special procedures of the Human Rights Council", - "values": [ - "Special procedures" - ] - }, - { - "text": "Intensify efforts to bring domestic legislation into compliance with the provisions of the Rome Statute of the International Criminal Court", - "values": [ - "International instruments", - "Justice" - ] - }, - { - "text": "Continue implementing economic and social development programmes in order to fight poverty", - "values": [ - "Development", - "ESC rights - general", - "Poverty" - ] - }, - { - "text": "Continue its actions in favour of the improvement of conditions of life of indigenous peoples ", - "values": [ - "Indigenous peoples" - ] - }, - { - "text": "Ensure full and unhindered humanitarian access in compliance with Security Council resolutions 2139 (2014), 2165 (2014), 2191 (2014), 2258 (2015) and 2268 (2016) ", - "values": [ - "Other" - ] - }, - { - "text": "With the assistance and strengthened support of the international community, to continue with its constitutional approach of subtle balance between constitutional respect for different historical and cultural contexts, decentralization through federalism, the inherited burden of decades of military totalitarianism and the Government's will to strongly turn towards democracy", - "values": [ - "Technical assistance and cooperation" - ] - }, - { - "text": "Continue to engage its regional and international partners with the view of seeking technical and other assistance towards its full compliance with its human rights treaty obligations", - "values": [ - "Technical assistance and cooperation", - "Treaty bodies" - ] - }, - { - "text": "Ratify international human rights treaties particularly the Optional Protocol to the International Covenant on Economic, Social and Cultural Rights, the Convention on the Elimination of All forms of Discrimination against Women and the Convention on the Rights of the Child", - "values": [ - "ESC rights - general", - "International instruments", - "Rights of the Child", - "Women's rights" - ] - }, - { - "text": "Take steps to fully implement the ratified international documents ", - "values": [ - "International instruments" - ] - }, - { - "text": "Intensify efforts to improve conditions in prisons, in particular to address the problem of overcrowding and the high mortality in prisons", - "values": [ - "Detention" - ] - }, - { - "text": "Completely overhaul the legal system to ensure the compliance of the Constitution and all other domestic legislation with international human rights obligations and standards and, in this regard, amend and-or derogate all legal provisions, including customary law, which result in discrimination, especially on the basis of sexual orientation ", - "values": [ - "International instruments", - "Sexual Orientation and Gender Identity" - ] - }, - { - "text": "Set the legal minimum age to marry at 18 years for males and females in all provinces, and ensure that the law is effectively enforced", - "values": [ - "Rights of the Child", - "Women's rights" - ] - }, - { - "text": "Enact legislation which clearly prohibits child prostitution and other forms of sexual exploitation, consistently with the international obligations undertaken by the country, bearing in mind that the Lanzarote Convention will enter into force as regards Ukraine on 1 December 2012 ", - "values": [ - "Rights of the Child" - ] - }, - { - "text": "Legislate to restrict the detention of terror suspects without charge and ensure legality of such detention, including through action by the judicial system ", - "values": [ - "Counter-terrorism", - "Detention" - ] - }, - { - "text": "Include civil society organizations in the process before finalizing and submitting the national report", - "values": [ - "Civil society", - "UPR process" - ] - }, - { - "text": "Consider expediting the ratification of the core human rights treaties, including the Optional Protocol to the Convention against Torture and Other Cruel, Inhuman or Degrading Treatment or Punishment and the International Convention on the Protection of the Rights of All Migrant Workers and Members of Their Families", - "values": [ - "Detention", - "International instruments", - "Labour", - "Migrants", - "Torture and other CID treatment" - ] - }, - { - "text": "Address alleged miscarriages of justice in the gacaca trials through the formal court system ", - "values": [ - "Justice" - ] - }, - { - "text": "Redouble its efforts to improve the condition of school facilities in rural areas", - "values": [ - "Right to education" - ] - }, - { - "text": "Adhere to the principles of the Convention on the Protection of the Rights of All Migrant Workers and Members of Their Families, and consider favourably its eventual ratification ", - "values": [ - "International instruments", - "Labour", - "Migrants" - ] - }, - { - "text": "Complete the legislative framework through the enactment of laws provided for in Constitution to strengthen the legal protection of fundamental rights and freedoms ", - "values": [ - "Other" - ] - }, - { - "text": "Establish, in line with international standards, a standing independent body to carry out investigations of all allegations of torture and other ill-treatment, deaths in custody and unlawful killings ", - "values": [ - "Extrajudicial executions", - "Torture and other CID treatment" - ] - }, - { - "text": "Continue its endeavours to combat all forms of human trafficking", - "values": [ - "Trafficking" - ] - }, - { - "text": "Remove all gender-discriminatory provisions from the Nationality Law of 1959 ", - "values": [ - "Women's rights" - ] - }, - { - "text": "Continue with awareness-raising and trainings for workers in the legal sector and those working in the area of human rights", - "values": [ - "Human rights education and training" - ] - }, - { - "text": "Immediately cease all violations of international humanitarian law, including all targeted or indiscriminate attacks on civilians and civilian infrastructure and on medical facilities and personnel, and also immediately cease the indiscriminate use of weapons", - "values": [ - "International humanitarian law" - ] - }, - { - "text": "Develop a policy aimed at strengthening the judiciary branch", - "values": [ - "Justice" - ] - }, - { - "text": "Repeal the provisions of the Tongan Criminal Offences Act criminalizing consensual sex between adults of the same gender ", - "values": [ - "Sexual Orientation and Gender Identity" - ] - }, - { - "text": "Continue the open and constructive dialogue with members of civil society, in particular during the follow-up to the UPR recommendations ", - "values": [ - "Civil society", - "UPR process" - ] - }, - { - "text": "Strengthen the role and capacity of initiative of the Chair of the National Human Rights Commission ", - "values": [ - "National Human Rights Institution" - ] - }, - { - "text": "Further develop measures against domestic violence against women", - "values": [ - "Women's rights" - ] - }, - { - "text": "Address the situation of persisting gender-based discrimination in political, social and economic life, including by eliminating all laws that discriminate against women ", - "values": [ - "Women's rights" - ] - }, - { - "text": "End all limitations on participation of non-Muslim Turkish citizens in the organized life of their communities and enjoyment of their cultural and religious heritage", - "values": [ - "ESC rights - general", - "Freedom of religion and belief" - ] - }, - { - "text": "Continue addressing the recommendations made by the Special Rapporteur on the situation of human rights and fundamental freedoms of indigenous people", - "values": [ - "Indigenous peoples", - "Special procedures" - ] - }, - { - "text": "Consider issuing a standing invitation to the United Nations Human Rights Council special procedures", - "values": [ - "Special procedures" - ] - }, - { - "text": "Takes steps to ensure proper judicial oversight regarding the granting and revoking of media licenses", - "values": [ - "Freedom of the press" - ] - }, - { - "text": "Ratify ICCPR and its two Optional Protocols, ICESCR and its Optional Protocols, CAT, the Optional Protocol to CEDAW, the Rome Statute of the International Criminal Court, the Convention relating to the Status of Refugees and its Protocol, the Convention relating to the Status of Stateless Persons, and the Convention on the Reduction of Statelessness ", - "values": [ - "International instruments", - "Statelessness and the right to nationality" - ] - }, - { - "text": "Successfully conclude the process of ratification of the Optional Protocol of the Convention against Torture ", - "values": [ - "Detention", - "International instruments", - "Torture and other CID treatment" - ] - }, - { - "text": "Seek to introduce human rights sensitization in school and university curriculums ", - "values": [ - "Human rights education and training" - ] - }, - { - "text": "Engage the relevant international organizations and international donors to address the problem of food crises and provide better access to safe drinking water for the population ", - "values": [ - "Right to food", - "Right to water and sanitation" - ] - }, - { - "text": "Increase its efforts in the field of maternal health, educating birth attendants and increasing the number of obstetrics clinics throughout the country", - "values": [ - "Right to health", - "Women's rights" - ] - }, - { - "text": "Respond to the Human Rights Committee's request to submit information within one year on the follow-up given to its recommendations in 2005 on female genital mutilation.", - "values": [ - "Rights of the Child", - "Torture and other CID treatment", - "Treaty bodies", - "Women's rights" - ] - }, - { - "text": "Proceed to the ratification of the Optional Protocol to the International Covenant on Economic, Social and Cultural Rights (ICESCR)", - "values": [ - "ESC rights - general", - "International instruments" - ] - }, - { - "text": "Include sexual orientation and gender identity in equality laws and initiatives.", - "values": [ - "Sexual Orientation and Gender Identity" - ] - }, - { - "text": "Ratify the main human rights treaties to which Honduras is not yet a party ", - "values": [ - "International instruments" - ] - }, - { - "text": "Take adequate measures to guarantee and monitor the effective implementation of the Prevention of Atrocities Act, providing legal means for an increased protection of vulnerable groups like the Dalit, including the access to legal remedies for affected persons ", - "values": [ - "Minorities" - ] - }, - { - "text": "Continue its efforts to integrate the provisions of the human rights treaties it has ratified into the national law", - "values": [ - "International instruments" - ] - }, - { - "text": "Withdraw its reservations to the International Convention on the Elimination of All Forms of Racial Discrimination and the Convention against Torture as these reservations undermine their key objectives", - "values": [ - "International instruments", - "Racial discrimination", - "Torture and other CID treatment" - ] - }, - { - "text": "Ensure that the implementation of its legislation in the field of media respects the independence and pluralism of the media, by, inter alia, applying the decision of the Constitutional Tribunal of 13 December 2016, which aims at restoring the competences of the National Broadcasting Council", - "values": [ - "Freedom of the press" - ] - }, - { - "text": "Ensure that impartial and effective investigations of attacks against journalists take place and that those responsible are brought to justice", - "values": [ - "Freedom of the press" - ] - }, - { - "text": "Complete its institutional efforts ensuring that international human rights norms adopted by Mexico have constitutional status and are applied as supreme law in courts proceedings", - "values": [ - "International instruments", - "Justice" - ] - }, - { - "text": "Criminalize racial discrimination and enforce laws which protect the rights of the black population", - "values": [ - "Racial discrimination" - ] - }, - { - "text": "Ensure that relevant rules are applied equally irrespective of sex and adopt legislation to allow the transmission of nationality by naturalized Monegasque women to their children.", - "values": [ - "Statelessness and the right to nationality", - "Women's rights" - ] - }, - { - "text": "Expedite its reforms such as measures to raise citizens' living standards and duly take into account the aspirations of the people of Syria in the reform process ", - "values": [ - "General" - ] - }, - { - "text": "Continue and complete the process of ratification of OP-CRC-AC ", - "values": [ - "International humanitarian law", - "International instruments", - "Rights of the Child" - ] - }, - { - "text": "Amend chapter XV of the Penal Code to ensure the protection of the minorities of all religions and beliefs", - "values": [ - "Freedom of religion and belief" - ] - }, - { - "text": "Continue to ensure that its terrorism prevention legislation and measures comply with the international human rights standards ", - "values": [ - "Counter-terrorism", - "International instruments" - ] - }, - { - "text": "Continue to pay special attention to the disadvantaged sections of the society, in particular ethnic minorities and persons with disabilities, so as to ensure their fuller participation in the socio-political life of the country.", - "values": [ - "Disabilities", - "Minorities" - ] - }, - { - "text": "Take measures to strengthen the Office of the Ombudsman, in order to fully adjust it to the Paris Principles, allocating it with adequate resources and more qualified personnel", - "values": [ - "National Human Rights Institution" - ] - }, - { - "text": "Consider utilizing the Recommended Principles and Guidelines on Human Rights and Human Trafficking developed by OHCHR as a reference tool ", - "values": [ - "Trafficking" - ] - }, - { - "text": "Ensure that the legislation on violence against women is specific and comprehensive, covering all forms of violence.", - "values": [ - "Women's rights" - ] - }, - { - "text": "Ensure that judicial authorities carry out thorough and impartial investigations regarding acts of violence against human rights defenders ", - "values": [ - "Human rights defenders" - ] - }, - { - "text": "Substantially increase State spending on programmes for indigenous peoples and institutions. This can help address poverty while ensuring the meaningful participation of, and consultation with, indigenous peoples in decisions affecting them and their rights", - "values": [ - "Indigenous peoples", - "Poverty" - ] - }, - { - "text": "Continue to expand existing programmes and introduce new ones where necessary to support and to promote the meaningful participation of all persons with disabilities in society", - "values": [ - "Disabilities" - ] - }, - { - "text": "Prohibit forced sterilization in line with requests by the Special Rapporteurs on torture, violence against women, and the right to health, and in line with the National Population Policy", - "values": [ - "Right to health", - "Special procedures", - "Torture and other CID treatment", - "Women's rights" - ] - }, - { - "text": "Include in the Criminal Code violence, sexual attacks and abuse perpetrated by spouses", - "values": [ - "Women's rights" - ] - }, - { - "text": "Pursue its efforts to review the composition of the National Human Rights Commission and to bring it into line with the Paris Principles ", - "values": [ - "National Human Rights Institution" - ] - }, - { - "text": "Take steps towards a full abolition of the death penalty, commuting existing death sentences to life imprisonment terms ", - "values": [ - "Death penalty" - ] - }, - { - "text": "Undertake concrete measures to further promote gender equality in employment, gender responsive approach in the judicial system and better maternal care ", - "values": [ - "Women's rights" - ] - }, - { - "text": "Spare no effort to care for orphans who have become victims of the AIDS pandemic - national compassion should face this national drama ", - "values": [ - "HIV - Aids" - ] - }, - { - "text": "Include sexual orientation and gender identity as grounds for protection in anti-discrimination legislation and policies ", - "values": [ - "Sexual Orientation and Gender Identity" - ] - }, - { - "text": "Consider accession to ICCPR and ICESCR ", - "values": [ - "CP rights - general", - "ESC rights - general", - "International instruments" - ] - }, - { - "text": "Extend a standing invitation to all United Nations Human Rights Council special procedures and receive those that have requested to visit", - "values": [ - "Special procedures" - ] - }, - { - "text": "Consider ratification of core international human rights instruments to which it is not yet a party, such as ICCPR and ICESCR ", - "values": [ - "CP rights - general", - "ESC rights - general", - "International instruments" - ] - }, - { - "text": "Continue efforts aiming at empowering women in the society ", - "values": [ - "Women's rights" - ] - }, - { - "text": "Continue to pay particular attention to continuing an inclusive process which takes into account all elements of society, and to create favourable conditions, in particular for those living in rural areas, in the framework of the strategic development plan mentioned in paragraph 33 of the national report ", - "values": [ - "General" - ] - }, - { - "text": "Finalize the measures undertaken for the amendment of the national legislation related to trafficking in children", - "values": [ - "Rights of the Child", - "Trafficking" - ] - }, - { - "text": "Intensify measures to tackle racism and hate crimes ", - "values": [ - "Racial discrimination" - ] - }, - { - "text": "Systematically adopt policies that promote gender equality in the education sector and ensure that gender issues are included in education as an integral, substantive and mandatory component of the training of teachers and students in all levels", - "values": [ - "Right to education", - "Women's rights" - ] - }, - { - "text": "Amend or, at least, abstain from applying any law or measure which might endanger the right to life, to freedom and to physical integrity of individuals for reasons associated with their alleged or perceived sexual orientation or gender identity", - "values": [ - "Sexual Orientation and Gender Identity" - ] - }, - { - "text": "Stop the increasing deforestation and indiscriminate exploitation of minerals since, on one hand, this limits the right of indigenous peoples to live in their traditional agricultural lands and, on the other hand, it contributes enormously to the ecosystem's imbalance and accelerates climate change with the negative consequences it brings ", - "values": [ - "Environment", - "Indigenous peoples" - ] - }, - { - "text": "Guarantee a safe and independent working environment for journalists and promote transparency and diversity in the media ownership", - "values": [ - "Freedom of the press" - ] - }, - { - "text": "Ratify the international human rights instruments, particularly the International Convention on the Protection of the Rights of All Migrant Workers and Members of Their Families", - "values": [ - "International instruments", - "Labour", - "Migrants" - ] - }, - { - "text": "Continue the efforts to strengthen the national institutions for the promotion and protection of human rights and freedoms ", - "values": [ - "General" - ] - }, - { - "text": "Ratify or accede, as appropriate, to the Rome Statute of the International Criminal Court, the International Convention for the Protection of All Persons from Enforced Disappearance, the Optional Protocol to the Convention against Torture and Other Cruel, Inhuman or Degrading Treatment of Punishment and the Second Optional Protocol to the International Covenant on Civil and Political Rights ", - "values": [ - "Death penalty", - "Detention", - "Enforced disappearances", - "International instruments", - "Justice", - "Torture and other CID treatment" - ] - }, - { - "text": "Approve the legal provisions that would make it possible to derogate the articles of the Family Code stipulating the predominance of the husband\u2019s decision over that of the wife with regard to common property and the exercise of paternal rights and the custody of children", - "values": [ - "Women's rights" - ] - }, - { - "text": "Consider withdrawing their reservations to articles 9 para. 2, and 16 para. 1(c), (d) and (g) of the Convention on the Elimination of All Forms of Discrimination against Women ", - "values": [ - "International instruments", - "Women's rights" - ] - }, - { - "text": "Continue its efforts to develop programmes to support democracy and protect human rights", - "values": [ - "General" - ] - }, - { - "text": "Move on to de jure abolition of the death penalty", - "values": [ - "Death penalty" - ] - }, - { - "text": "Consider signing and ratifying OP-CAT ", - "values": [ - "Detention", - "International instruments", - "Torture and other CID treatment" - ] - }, - { - "text": "Sign and ratify the International Covenant on Economic, Social and Cultural Rights as well as the International Convention on the Protection of the Rights of All Migrant Workers and Members of Their Families", - "values": [ - "ESC rights - general", - "International instruments", - "Labour", - "Migrants" - ] - }, - { - "text": "Ensure the independence of SUHAKAM in accordance with the Paris Principles and amend act 597, so that the SUHAKAM's scope covers all rights in the Universal Declaration of Human Rights", - "values": [ - "National Human Rights Institution" - ] - }, - { - "text": "Create a national human rights institution fully in conformity with the Paris Principles", - "values": [ - "National Human Rights Institution" - ] - }, - { - "text": "Intensify efforts to increase the rate of registration and participation in the educational system of Roma children ", - "values": [ - "Minorities", - "Right to education", - "Rights of the Child" - ] - }, - { - "text": "Recommends that steps be taken to guarantee the rights of detainees, including immediate access to a lawyer, information to families on detentions, and ensuring that judicial authorities are informed of all detentions.", - "values": [ - "Detention" - ] - }, - { - "text": "Continue to promote gender equality and combating violence against women ", - "values": [ - "Women's rights" - ] - }, - { - "text": "Make progress towards the ratification of pending human rights international instruments, including the Convention on the Rights of Persons with Disabilities", - "values": [ - "Disabilities", - "International instruments" - ] - }, - { - "text": "Identifying sectors with the high potential for contributing to growth levels of between 5 and 97 percent per annum, including creation of 10 000 jobs per year on average thus broadening the skills base to take into account the needs of the labour market. A strategy aligned to the National Strategic Development Plan (NSDP) will be developed that would consist of an investment plan, monitoring framework, inclusive and create jobs so as to foster economic growth.", - "values": [ - "Development" - ] - }, - { - "text": "Further promote protection of the rights of the child, giving emphasis to Indigenous Children", - "values": [ - "Indigenous peoples", - "Rights of the Child" - ] - }, - { - "text": "Abolish the death penalty for all crimes, and sign and ratify the Second Optional Protocol to the International Covenant on Civil and Political Rights ", - "values": [ - "Death penalty", - "International instruments" - ] - }, - { - "text": "Consider taking steps with a view to abolishing the death penalty", - "values": [ - "Death penalty" - ] - }, - { - "text": "Expedite the process of redrafting of the existing Child Law taking into account the views and suggestions made by civil society organizations", - "values": [ - "Civil society", - "Rights of the Child" - ] - }, - { - "text": "Evaluate the need for tuition in a special school on the basis of the child's personal characteristics, not on his or her ethnicity", - "values": [ - "Minorities", - "Right to education", - "Rights of the Child" - ] - }, - { - "text": "Demonstrate a genuine willingness to improve its human rights record by engaging more positively and openly with the international community, including the Special Rapporteur on the situation of human rights, and work constructively with the United Nations system to bring its human rights into line with international standards ", - "values": [ - "Special procedures" - ] - }, - { - "text": "Ensure that the Panama Water Resources Authority takes into account the needs of vulnerable groups and carries out its work without discrimination ", - "values": [ - "Right to water and sanitation" - ] - }, - { - "text": "Adopt a national strategy to protect the rights of children against all risk of violence, in particular, sexual abuse, neglect, abuse, and increase its efforts to combat child labour ", - "values": [ - "Labour", - "Rights of the Child" - ] - }, - { - "text": "Establish clear consultation procedures in order to implement the right to free, prior and informed consent of indigenous peoples as contained in the Constitution ", - "values": [ - "Indigenous peoples" - ] - }, - { - "text": "Take proper measures to ensure that the National Human Rights Commission is fully compliant with the Paris Principles", - "values": [ - "National Human Rights Institution" - ] - }, - { - "text": "Take the measures necessary to end discrimination against women in the workplace, and to implement ILO recommendations to ensure equal remuneration for work of equal value in the public and private sectors", - "values": [ - "International instruments", - "Labour", - "Women's rights" - ] - }, - { - "text": "Decriminalize consensual homosexual activity in compliance with its obligations under the International Covenant on Civil and Political Rights ", - "values": [ - "International instruments", - "Sexual Orientation and Gender Identity" - ] - }, - { - "text": "Combat violence against women and guarantee equality of rights", - "values": [ - "Women's rights" - ] - }, - { - "text": "Undertake policies aiming at combating all forms of discrimination, notably those targeting indigenous peoples ", - "values": [ - "Indigenous peoples", - "Racial discrimination" - ] - }, - { - "text": "Bar military courts from trying civilians and allow their monitoring by international observers and human rights organizations", - "values": [ - "Justice" - ] - }, - { - "text": "Continue with the implementation of measures to improve adverse conditions in prisons, in particular the renovations required to improve the health situation in prisons and effective programmes for education and rehabilitation of prison inmates", - "values": [ - "Detention" - ] - }, - { - "text": "Take new measures aimed at strengthening the existing mechanism to reduce unemployment in the country ", - "values": [ - "Development" - ] - }, - { - "text": "Adopt precise definitions of anti-State crimes, anti-Peoples crimes or crimes representing an offence against the management of the economy in the criminal code and in the criminal procedure code ", - "values": [ - "Justice" - ] - }, - { - "text": "Stop discrimination in the area of employment on the grounds of ethnic origin and language and adopt active measures to prosecute such cases in the courts", - "values": [ - "Labour", - "Minorities", - "Racial discrimination" - ] - }, - { - "text": "Ratify the 1961 Convention on the Reduction of Statelessness ", - "values": [ - "International instruments", - "Statelessness and the right to nationality" - ] - }, - { - "text": "The Government and local entities expeditiously eliminate segregation and ethnic divisions in schools and promote a multi-ethnic learning environment that will allow students to learn their own languages, cultures, histories and religions", - "values": [ - "ESC rights - general", - "Minorities", - "Racial discrimination", - "Right to education" - ] - }, - { - "text": "Secure the protection of witnesses to the Truth and Reconciliation Commission, also those who have testimonies which may be directed at people with power", - "values": [ - "Justice" - ] - }, - { - "text": "Continue its measures in laws and other pieces of legislation concerning the promotion of equity, the situation of women and their education opportunities ", - "values": [ - "Right to education", - "Women's rights" - ] - }, - { - "text": "Uphold its religious freedom obligations and release those imprisoned for their religious beliefs, such as Pastor Saeed Abedini, and protect the rights of all individuals to manifest their religious beliefs", - "values": [ - "Detention", - "Freedom of religion and belief" - ] - }, - { - "text": "Report back to the Human Rights Council. This should include the investigation of all cases of human rights violations committed during the twenty-year armed conflict and bringing to justice those responsible in trials meeting international standards and granting reparations to victims.", - "values": [ - "Justice" - ] - }, - { - "text": "Ensure the creation of a strong, independent national human rights institution, which adheres to the Paris Principles", - "values": [ - "National Human Rights Institution" - ] - }, - { - "text": "Gather statistics on the various groups accessing public services in order to obtain an accurate picture of the use of services by different minorities", - "values": [ - "Minorities" - ] - }, - { - "text": "Consider the possibility of acceding to the optional protocols to the various United Nations conventions on human rights.", - "values": [ - "International instruments" - ] - }, - { - "text": "Extend a standing invitation to all Special Procedure Mandate holders", - "values": [ - "Special procedures" - ] - }, - { - "text": "Continue ongoing legal reforms and seek technical assistance from relevant international partners, if deemed necessary.", - "values": [ - "Technical assistance and cooperation" - ] - }, - { - "text": "Consider ratifying OP-CAT and the Rome Statute of the International Criminal Court \n", - "values": [ - "Detention", - "International instruments", - "Justice", - "Torture and other CID treatment" - ] - }, - { - "text": "Consider ratification of the Protocol to Prevent, Suppress and Punish Trafficking in Persons, Especially Women and Children, supplementing the United Nations Convention against Transnational Organized Crime ", - "values": [ - "International instruments", - "Trafficking" - ] - }, - { - "text": "Take further steps to effectively implement the Justice Sector Strategic Plan, including through intensifying the network of courts in municipalities", - "values": [ - "Justice" - ] - }, - { - "text": "Intensify efforts to combat trafficking in persons and prosecute perpetrators", - "values": [ - "Trafficking" - ] - }, - { - "text": "The Government commits to working with regional and international partners to combat the global problem of trafficking in persons and provide a greater level of assistance to victims so identified ", - "values": [ - "Trafficking" - ] - }, - { - "text": "Ensure compliance with its obligations under article 37 (a) of the Convention on the Rights of the Child not to impose capital punishment for offences committed by persons below 18 years of age.", - "values": [ - "Death penalty", - "Rights of the Child" - ] - }, - { - "text": "Seek technical assistance in order to further advance the dissemination of human rights in the country", - "values": [ - "Human rights education and training", - "Technical assistance and cooperation" - ] - }, - { - "text": "Bring conditions of detention into conformity with the United Nations Standard Minimum Rules for the Treatment of Prisoners and develop protection measures for women deprived of their liberty, in line with the Bangkok Rules, as well for children living in prison with a parent", - "values": [ - "Detention", - "Rights of the Child", - "Women's rights" - ] - }, - { - "text": "Continue to fully implement the legislative provisions guaranteeing oral and written use of Slovenian language in public administration, public life and as teaching language at schools", - "values": [ - "Minorities" - ] - }, - { - "text": "Abolish the state of emergency", - "values": [ - "Public security" - ] - }, - { - "text": "Conduct thorough and effective investigations into attacks on journalists and human rights defenders, in order to enable full enjoyment of the rights, as provided for under ICCPR and under the Constitution", - "values": [ - "Freedom of the press", - "Human rights defenders", - "International instruments" - ] - }, - { - "text": "Move on speedily to the ratification and/or application of human rights instruments, particularly CAT", - "values": [ - "International instruments", - "Torture and other CID treatment" - ] - }, - { - "text": "Develop a legislative framework which guarantees freedom of expression and freedom of the press ", - "values": [ - "Freedom of opinion and expression", - "Freedom of the press" - ] - }, - { - "text": "Review the Civil Code with a view to eliminating the gender-based discriminatory provisions ", - "values": [ - "Women's rights" - ] - }, - { - "text": "Repeal provisions of the Malawi Criminal Code that criminalize consensual, adult same-sex conduct (sections 153, 154 and 156) and provide adequate protection to lesbian, gay, bisexual and transgender persons", - "values": [ - "Sexual Orientation and Gender Identity" - ] - }, - { - "text": "Continue efforts to improve conditions in prisons and pretrial facilities", - "values": [ - "Detention" - ] - }, - { - "text": "Increase cooperation and coordination between governmental institutions and the National Council for Women as the best framework to ensure that women's rights take root and promote women", - "values": [ - "Women's rights" - ] - }, - { - "text": "Take all the necessary measures to fight against impunity for the perpetrators of human rights violations ", - "values": [ - "Impunity" - ] - }, - { - "text": "Take advantage fully and effectively from the technical assistance provided by the international community in the field of training and capacity- building of national institutions on human rights", - "values": [ - "National Human Rights Institution", - "Technical assistance and cooperation" - ] - }, - { - "text": "Continue efforts to combat sexual violence against children", - "values": [ - "Rights of the Child" - ] - }, - { - "text": "Intensify the efforts for the creation of a concrete national framework on the internal displacement, which would secure equal access to humanitarian aid but also develop a preventive strategy for new internally displaced persons, including training of security forces to this effect ", - "values": [ - "Human rights education and training", - "Internally displaced persons" - ] - }, - { - "text": "Continue the efforts to ensure that national legislation prohibits discrimination on the grounds of disability, sexual orientation, gender identity or social status", - "values": [ - "Disabilities", - "Sexual Orientation and Gender Identity" - ] - }, - { - "text": "Step up efforts to tackle structural discrimination faced by minority groups, non-citizens and refugees, especially with regard to employment, education, housing, health services, and access to justice", - "values": [ - "Asylum-seekers - refugees", - "Migrants", - "Racial discrimination" - ] - }, - { - "text": "Implement rigorously the legislation establishing the minimum age of marriage at 18 years old", - "values": [ - "Rights of the Child" - ] - }, - { - "text": "Take measures to rapidly end the unlawful use of force by the police", - "values": [ - "Human rights violations by state agents" - ] - }, - { - "text": "Ratify the International Covenant on Civil and Political Rights and the International Covenant on Economic, Social and Cultural Rights", - "values": [ - "CP rights - general", - "ESC rights - general", - "International instruments" - ] - }, - { - "text": "Adopt measures to guarantee freedom of the press and of expression", - "values": [ - "Freedom of opinion and expression", - "Freedom of the press" - ] - }, - { - "text": "Establish an independent and specialized institution to investigate any allegations of human rights violations", - "values": [ - "Justice" - ] - }, - { - "text": "Adopt legislation and policy measures prohibiting racial discrimination", - "values": [ - "Racial discrimination" - ] - }, - { - "text": "Maintain protection of the right to life from conception to natural death", - "values": [ - "Other" - ] - }, - { - "text": "Consider the possibility to seek further international cooperation in order to find sustainable solutions in the area of refugees law", - "values": [ - "Asylum-seekers - refugees", - "Technical assistance and cooperation" - ] - }, - { - "text": "Further strengthen the system, including through adequate funding, to allow all victims of violence to receive protection, services including coverage of the costs of their medical examination and to eliminate long delays in court proceedings", - "values": [ - "Justice" - ] - }, - { - "text": "Step up efforts to achieve universal basic education and implement specific measures to reduce and prevent girls from dropping out of school ", - "values": [ - "Right to education", - "Rights of the Child", - "Women's rights" - ] - }, - { - "text": "Ratification of International Labour Organization (ILO) Convention concerning Indigenous and Tribal Peoples in Independent Countries No. 169, of 27 June 1989, by the last quarter of 2009", - "values": [ - "Indigenous peoples", - "International instruments" - ] - }, - { - "text": "Develop a model of care for violence against women and girls especially focused on indigenous population, in accordance with the acknowledgment made in paragraph 139 of the Report", - "values": [ - "Indigenous peoples", - "Rights of the Child", - "Women's rights" - ] - }, - { - "text": "Cooperate with special procedures and OHCHR by authorizing and facilitating procedures for the Special Rapporteur on the question of torture, the Special Rapporteur on the right to health, the Special Rapporteur on the situation of human rights defenders, the Special Rapporteur on the independence of judges and lawyers, the Special Rapporteur on freedom of opinion and expression, the Working Group on Arbitrary Detention, the Special Rapporteur on extrajudicial executions and the Special Rapporteur on violence against women requesting to visit the country.", - "values": [ - "Special procedures" - ] - }, - { - "text": "Consider with priority ratifying the Convention on the Rights of Persons with Disabilities", - "values": [ - "Disabilities", - "International instruments" - ] - }, - { - "text": "Continue its efforts to promote and facilitate school attendance, particularly among children from economically disadvantaged families.", - "values": [ - "Right to education", - "Rights of the Child" - ] - }, - { - "text": "Continue national efforts to eliminate the phenomenon of child labour, including through a review of national labour legislations and increase community awareness about this phenomenon", - "values": [ - "Labour", - "Rights of the Child" - ] - }, - { - "text": "Respect the provisions of the Proclamation on National Service and immediately end the practice of indefinitely extending military service", - "values": [ - "Other" - ] - }, - { - "text": "Enact the draft law on domestic violence in full compliance with international standards", - "values": [ - "Rights of the Child", - "Women's rights" - ] - }, - { - "text": "Commute all death sentences and declare a moratorium on executions", - "values": [ - "Death penalty" - ] - }, - { - "text": "Provide adequate resources to implement awareness-raising activities on the role of women and strengthen the existing structures for the advancement of women in the country ", - "values": [ - "Women's rights" - ] - }, - { - "text": "Take appropriate measures to align the conditions of detainees with international standards.", - "values": [ - "Detention" - ] - }, - { - "text": "Remain steadfast in pursuing its policies towards gender equality, in particular through its Fair Work Act ", - "values": [ - "Women's rights" - ] - }, - { - "text": "Ratify and strictly implement the Arms Trade Treaty without delay, giving particular attention to implementing measures to prevent the diversion and illicit trafficking of all types of conventional arms", - "values": [ - "International instruments", - "Public security" - ] - }, - { - "text": "Work further on human rights education for public servants and law enforcement bodies", - "values": [ - "Human rights education and training" - ] - }, - { - "text": "Take all necessary measures to reduce poverty", - "values": [ - "Poverty" - ] - }, - { - "text": "Continue to work collaboratively with the private sector and relevant stakeholders in protecting the labour rights", - "values": [ - "Labour" - ] - }, - { - "text": "Continue its efforts in the field of economic, social and cultural rights as well as rights recognized in the UDHR and ICCPR", - "values": [ - "CP rights - general", - "ESC rights - general", - "International instruments" - ] - }, - { - "text": "Accord particular attention to the protection of the rights of migrant workers ", - "values": [ - "Labour", - "Migrants" - ] - }, - { - "text": "Take decisive steps to decrease political control over State-owned media and to ensure independence of private and State-owned media", - "values": [ - "Freedom of the press" - ] - }, - { - "text": "Continue its efforts in improving access, enrolment and quality of education in the country, including through the allocation of adequate financial resources ", - "values": [ - "Right to education" - ] - }, - { - "text": "Take further measures to promote education in rural areas", - "values": [ - "Right to education" - ] - }, - { - "text": "Continue to implement the provisions of the Comprehensive Peace Agreement and ensure the rule of law in the country ", - "values": [ - "Justice" - ] - }, - { - "text": "Make all efforts to ensure the independence of the judiciary", - "values": [ - "Justice" - ] - }, - { - "text": "Establish effective mechanisms to guarantee the safety of human rights defenders, judges, prosecutors and journalists, and ensure that acts of violence which in many cases result in deaths, intimidation and attacks against them, do not remain unpunished", - "values": [ - "Extrajudicial executions", - "Freedom of the press", - "Human rights defenders", - "Justice" - ] - }, - { - "text": "Integrate human rights concepts into the curricula for university education ", - "values": [ - "Human rights education and training" - ] - }, - { - "text": "Complete the transposition of treaties ratified by Mauritania into national law and promote their dissemination and effective implementation", - "values": [ - "International instruments" - ] - }, - { - "text": "Continue the successful programmes on employment, food and assistance for the most vulnerable in its fight against poverty", - "values": [ - "Labour", - "Poverty", - "Right to food" - ] - }, - { - "text": "Strengthen its educational policy to guarantee the required quality of education, accessible to all members of its population, especially the marginalized and most vulnerable groups ", - "values": [ - "Right to education" - ] - }, - { - "text": "Consider going beyond current legislation and to ban corporal punishment, also in the private sector and in its Overseas Territories.", - "values": [ - "Torture and other CID treatment" - ] - }, - { - "text": "Consider reinstituting the Turkish mother tongue lessons as part of the primary and secondary school curricula ", - "values": [ - "Minorities" - ] - }, - { - "text": "Adopt legal measures to prevent child labour and trafficking accompanied by effective monitoring mechanisms", - "values": [ - "Labour", - "Rights of the Child", - "Trafficking" - ] - }, - { - "text": "Ensure that the procedures governing registration of civil society organizations are transparent, non-discriminatory, expeditious and inexpensive and that they allow for the possibility of appeal, avoid requiring re-registration and are in conformity with international human rights standards", - "values": [ - "Civil society", - "International instruments" - ] - }, - { - "text": "Continue measures to combat poverty and social inequality by implementing rural development plans covering vulnerable groups, in particular rural women", - "values": [ - "Development", - "Women's rights" - ] - }, - { - "text": "Strengthen its legal arsenal by acceding to the International Covenant on Civil and Political Rights, to the International Covenant on Economic, Social and Cultural Rights, to the International Convention for the Protection of All Persons from Enforced Disappearance, and the Optional Protocol to the Convention against Torture and Other Cruel, Inhuman or Degrading Treatment or Punishment", - "values": [ - "CP rights - general", - "Detention", - "ESC rights - general", - "Enforced disappearances", - "International instruments", - "Torture and other CID treatment" - ] - }, - { - "text": "Ratify a number of conventions, inter alia, the Rome Statute of the International Criminal Court and the CED.", - "values": [ - "Enforced disappearances", - "International instruments", - "Justice" - ] - }, - { - "text": "Continue efforts in its current economic and political platform that aim at protecting and guaranteeing people's rights, namely religious freedom.", - "values": [ - "Freedom of religion and belief" - ] - }, - { - "text": "Create a genuinely favourable environment-free and safe- to promote functioning of truly independent media ", - "values": [ - "Freedom of the press" - ] - }, - { - "text": "Adopt and implement the measures necessary to grant the Hmong the same rights and freedoms as the other members of the Lao population in accordance with international human rights standards, including through genuine engagement with the international community on the issue ", - "values": [ - "Indigenous peoples", - "International instruments", - "Technical assistance and cooperation" - ] - }, - { - "text": "Take positive and constructive measures in order to effectively reduce the deprivation under which the Palestinian people are living.", - "values": [ - "Other" - ] - }, - { - "text": "Continue to redouble efforts to guarantee full enjoyment of the right to freedom of assembly and peaceful association, investigating complaints as to excessive use of force on the part of State security agents against social activists, human rights representatives as well as representatives of the trade unions", - "values": [ - "Freedom of association and peaceful assembly", - "Human rights violations by state agents" - ] - }, - { - "text": "Continue efforts aimed at improving the administrative and legal services and the living conditions of irregular migrants and asylum-seekers, especially vulnerable categories, such as women and children ", - "values": [ - "Asylum-seekers - refugees", - "Migrants", - "Rights of the Child", - "Women's rights" - ] - }, - { - "text": "Consider the possibility of ratifying the International Convention for the Protection of All Persons from Enforced Disappearance and of accepting the jurisdiction of the competent committee", - "values": [ - "Enforced disappearances", - "International instruments" - ] - }, - { - "text": "Strengthen the promotion of human rights education, training and capacity-building for government officials and other relevant stakeholders", - "values": [ - "Human rights education and training" - ] - }, - { - "text": "Invite Saudi Arabia to accede to other international human rights instruments", - "values": [ - "International instruments" - ] - }, - { - "text": "Contribute towards combating impunity internationally, as soon as possible the mandate bestowed on it by the African Union and to bring the former head of State of Chad, Mr. Hissène Habré to justice ", - "values": [ - "Impunity" - ] - }, - { - "text": "Continue to undertake measures to eliminate poverty and combat unemployment", - "values": [ - "Development", - "Poverty" - ] - }, - { - "text": "Take the necessary measures to adopt in its national legislation a clear definition of racial discrimination and that prohibit racial discrimination in all its forms", - "values": [ - "Racial discrimination" - ] - }, - { - "text": "Continue engaging members of the international donor community with a view to building capacity, particularly with regard to securing improvements in the economic and social rights situation of its population.", - "values": [ - "ESC rights - general", - "Technical assistance and cooperation" - ] - }, - { - "text": "Increase the access of the rural population to the formal justice system", - "values": [ - "Justice" - ] - }, - { - "text": "Consider establishing a moratorium on the death penalty ", - "values": [ - "Death penalty" - ] - }, - { - "text": "Intensify programmes to combat poverty ", - "values": [ - "Poverty" - ] - }, - { - "text": "That the national human rights institution cooperate with other institutions from the region and seek accreditation according to the Paris Principles by ICC ", - "values": [ - "National Human Rights Institution" - ] - }, - { - "text": "Explicitly prohibit all corporal punishment of children, bringing legislation into line with the 1996 Supreme Court ruling against violence in child-rearing", - "values": [ - "Rights of the Child", - "Torture and other CID treatment" - ] - }, - { - "text": "Continue to cooperate with the Human Rights Council and its mechanisms", - "values": [ - "Special procedures", - "UPR process" - ] - }, - { - "text": "Persevere in punishing offenders of women's rights.", - "values": [ - "Women's rights" - ] - }, - { - "text": "Continue constructive cooperation with universal mechanisms for the promotion and protection of human rights", - "values": [ - "Special procedures", - "Treaty bodies", - "UPR process" - ] - }, - { - "text": "Eventually consider extending a standing invitation to all special procedures mandate holders", - "values": [ - "Special procedures" - ] - }, - { - "text": "Ratify the Rome Statute of the ICC and bring its legislation in line with the obligations of this Statute", - "values": [ - "International instruments", - "Justice" - ] - }, - { - "text": "Establish a national institution for human rights, in conformity with the Paris Principles", - "values": [ - "National Human Rights Institution" - ] - }, - { - "text": "Implement the necessary measures to guarantee gender equality in law and in practice in conformity with international human rights standards ", - "values": [ - "International instruments", - "Women's rights" - ] - }, - { - "text": "Amend the Penal Code to ensure full compliance with international norms on prohibition of torture ", - "values": [ - "Torture and other CID treatment" - ] - }, - { - "text": "Improve the access of women to employment as well as to political life ", - "values": [ - "Women's rights" - ] - }, - { - "text": "Consider ratifying the Convention on the Rights of Persons with Disabilities, as a matter of priority ", - "values": [ - "Disabilities", - "International instruments" - ] - }, - { - "text": "Study the possibility of designing and implementing a national plan to combat discrimination against persons of African descent and indigenous peoples", - "values": [ - "Indigenous peoples", - "Minorities", - "Racial discrimination" - ] - }, - { - "text": "Continue the efforts related to human rights education and awareness-raising", - "values": [ - "Human rights education and training" - ] - }, - { - "text": "In order to sustain the increased rate of birth registration, take necessary measures to ensure all children an immediate registration, followed by the issuance of a birth certificate", - "values": [ - "Rights of the Child", - "Statelessness and the right to nationality" - ] - }, - { - "text": "Complete the process of full alignment of its national legislation with all obligations under the Rome Statute of the International Criminal Court", - "values": [ - "International instruments", - "Justice" - ] - }, - { - "text": "Continue to strengthen the institutional and legal framework to combat discrimination", - "values": [ - "Other" - ] - }, - { - "text": "Continue its work in defence of the rights of women, by promoting action to empower women", - "values": [ - "Women's rights" - ] - }, - { - "text": "Create the conditions for ensuring that religious minorities can fully enjoy their rights, without discrimination", - "values": [ - "Freedom of religion and belief", - "Minorities", - "Racial discrimination" - ] - }, - { - "text": "Fulfill its pledge to review the definition of torture in Egyptian law and ensure its consistency with the Convention against Torture in order to strengthen its fight against torture", - "values": [ - "International instruments", - "Torture and other CID treatment" - ] - }, - { - "text": "Introduce freedom of information legislation in compliance with international standards", - "values": [ - "Freedom of opinion and expression" - ] - }, - { - "text": "Ratify the Framework Convention for the Protection of National Minorities, signed in 2001, following on Council of Europe resolution 1301", - "values": [ - "International instruments", - "Minorities" - ] - }, - { - "text": "Step up efforts to provide greater access to education and health", - "values": [ - "Right to education", - "Right to health" - ] - }, - { - "text": "Ensure that the draft law on juvenile justice and the draft law on prohibition of corporal punishment of children is adopted and implemented in line with international standards ", - "values": [ - "Justice", - "Rights of the Child", - "Torture and other CID treatment" - ] - }, - { - "text": "Continue its efforts to implement the adopted strategies, in particular the National Reproductive Health Strategy 2009-2015", - "values": [ - "Right to health", - "Women's rights" - ] - }, - { - "text": "Embark on a reform of the judiciary to ensure its independence and impartiality ", - "values": [ - "Justice" - ] - }, - { - "text": "Ensure 100 per cent access to birth registration. Eliminate the late enrolment fine as an incentive for registration", - "values": [ - "Rights of the Child", - "Statelessness and the right to nationality" - ] - }, - { - "text": "Continue to work and coordinate with countries in the region to strengthen the regional framework to deal with irregular migration and human trafficking in a comprehensive and sustainable manner, bearing in mind international human rights and humanitarian principles ", - "values": [ - "Migrants", - "Trafficking" - ] - }, - { - "text": "Ensure that high school students do not have to undergo compulsory military training ", - "values": [ - "International humanitarian law", - "Rights of the Child" - ] - }, - { - "text": "Continue its efforts to provide adequate housing and an adequate standard of living for all", - "values": [ - "Right to housing" - ] - }, - { - "text": "Continue considering the ratification of the Optional Protocol to CRC on a communications procedure", - "values": [ - "International instruments", - "Rights of the Child" - ] - }, - { - "text": "Reject any incitement to violence in the context of the State-sponsored campaign against illegal drugs and hold perpetrators of such incitement accountable", - "values": [ - "Public security" - ] - }, - { - "text": "Continue efforts to realize social and economic development and eradicate poverty", - "values": [ - "Development", - "Poverty" - ] - }, - { - "text": "Revise the legislation to ensure acts of torture are criminalized and punishable by penalties commensurate with the gravity of the crime", - "values": [ - "Torture and other CID treatment" - ] - }, - { - "text": "Expedite the process to put in place a human rights action plan", - "values": [ - "General" - ] - }, - { - "text": "Continue social and economic reforms in order to create new jobs", - "values": [ - "Development" - ] - }, - { - "text": "Consider reducing the number of offences for which the death penalty may be imposed", - "values": [ - "Death penalty" - ] - }, - { - "text": "Guarantee a clearer separation between the State powers and, in particular, take steps to promote the independence of the judiciary, in the conviction that these measures could benefit the fight against corruption and crime ", - "values": [ - "Corruption", - "Justice" - ] - }, - { - "text": "Consolidate its economic growth initiatives with the help of its technical and financial partners ", - "values": [ - "Development", - "Technical assistance and cooperation" - ] - }, - { - "text": "Continue its efforts against trafficking in persons ", - "values": [ - "Trafficking" - ] - }, - { - "text": "Increase the mandates of existing institutions such as the Ombudsman's Office and the Leadership Code Commission, to address human rights issues", - "values": [ - "National Human Rights Institution" - ] - }, - { - "text": "Enhance its efforts to strengthen women's leadership and participation in politics and public service ", - "values": [ - "Women's rights" - ] - }, - { - "text": "Continue its efforts to develop and expand child-friendly schools based on CRC ", - "values": [ - "International instruments", - "Rights of the Child" - ] - }, - { - "text": "Revise the law on religious organizations so that clauses prohibiting unregistered religious activities and unjustified restrictions are repealed ", - "values": [ - "Freedom of religion and belief" - ] - }, - { - "text": "Finalize the establishment of a national human rights institution, that is independent and empowered to provide national leadership and monitoring of the domestic human rights situation", - "values": [ - "National Human Rights Institution" - ] - }, - { - "text": "Put in place a comprehensive policy against violence to slightly reduce domestic/family violence and protect vulnerable populations ", - "values": [ - "Rights of the Child", - "Women's rights" - ] - }, - { - "text": "Eradicate the practice of ritual infanticide, punish those found to perpetrate these crimes and establish a mechanism to provide effective support and guidance to the affected families", - "values": [ - "Rights of the Child" - ] - }, - { - "text": "Develop a comprehensive national policy, consistent with provisions of the Convention on the Elimination of All Forms of Discrimination against Women, to guarantee effective gender equality and to combat gender violence, while providing special follow-up to cases of gender violence and studying the reasons why there are so few complaints to the authorities", - "values": [ - "International instruments", - "Women's rights" - ] - }, - { - "text": "Ensure the full independence of the judiciary", - "values": [ - "Justice" - ] - }, - { - "text": "Ensure that the principle of freedom of association, as provided for in article 11 of the European Convention of Human Rights, is respected without any discrimination and applied in accordance with the relevant case law of the European Court of Human Rights", - "values": [ - "Freedom of association and peaceful assembly", - "International instruments" - ] - }, - { - "text": "Adopt legislation to punish the dissemination of ideas based on racial hatred or superiority, incitement to racial discrimination or any racially motivated act of violence, as recommended by the Committee on the Elimination of Racial Discrimination", - "values": [ - "Racial discrimination", - "Treaty bodies" - ] - }, - { - "text": "Continue strengthening the advanced programmes carried out for the promotion of employment, food and social assistance, combating poverty and social inequality, and in favour of national minorities - especially Roma - and other vulnerable sectors of the population", - "values": [ - "Development", - "ESC rights - general", - "Minorities", - "Poverty", - "Right to food" - ] - }, - { - "text": "Adopt all necessary measures to guarantee the rights of persons with disabilities, eliminate restrictions that may limit their legal capacity and in particular encourage access to effective judicial and administrative procedures for persons with disabilities facing situations of discrimination and inequality", - "values": [ - "Disabilities" - ] - }, - { - "text": "Consider implementing an educational campaign aimed at the promotion of gender equity, as well as awareness-raising on harmful practices against women \n\n", - "values": [ - "Human rights education and training", - "Torture and other CID treatment", - "Women's rights" - ] - }, - { - "text": "Ratify CRPD as soon as possible", - "values": [ - "Disabilities", - "International instruments" - ] - }, - { - "text": "Consider adopting specific legislation on child rights to ensure the protection of all children without any discrimination", - "values": [ - "Rights of the Child" - ] - }, - { - "text": "Repeal the restrictive amendments on the Law on Assemblies to restore full freedom of peaceful assembly, in keeping with Poland\u2019s international obligations", - "values": [ - "Freedom of association and peaceful assembly", - "International instruments" - ] - }, - { - "text": "Implement a comprehensive national plan of action for the advancement of women and create mechanisms to coordinate and monitor its implementation ", - "values": [ - "Women's rights" - ] - }, - { - "text": "Take measures to ensure the effective implementation of the National Action Plan for Inclusive Education (NAPIE) by ensuring that adequate funding is made available and that concrete targets are set to ensure that all children, including Roma, are provided with equal access and equal opportunity to education ", - "values": [ - "Minorities", - "Right to education", - "Rights of the Child" - ] - }, - { - "text": "Ensure that vulnerable children and adolescents in rural communities have access to quality education and health care services", - "values": [ - "Right to education", - "Right to health", - "Rights of the Child" - ] - }, - { - "text": "Continue consolidating essential social programmes in the fight against poverty and social exclusion ", - "values": [ - "Poverty" - ] - }, - { - "text": "Amend its press law to define the exceptions to article 24 of its Constitution in specific terms and that do not infringe upon freedom of expression", - "values": [ - "Freedom of opinion and expression", - "Freedom of the press" - ] - }, - { - "text": "Continue to make full efforts to promote its economic recovery and guarantee its citizens their economic, social and cultural rights ", - "values": [ - "ESC rights - general" - ] - }, - { - "text": "Address gender disparity proactively ", - "values": [ - "Women's rights" - ] - }, - { - "text": "Take measures to ensure the effective implementation of the comprehensive legal framework to combat trafficking in persons and improve assistance to victims of trafficking, especially women and children ", - "values": [ - "Rights of the Child", - "Trafficking", - "Women's rights" - ] - }, - { - "text": "Continue the implementation of measures to improve the access to health services by all children ", - "values": [ - "Right to health", - "Rights of the Child" - ] - }, - { - "text": "Take steps to address the 19.7 per cent gender pay gap ", - "values": [ - "Women's rights" - ] - }, - { - "text": "Strengthen mechanisms at the national level to reduce poverty among members of socially vulnerable groups and the problems facing them, and share its experiences with interested developing countries", - "values": [ - "Poverty" - ] - }, - { - "text": "Undertake a study on child labour at the national level with the support of the International Labour Organization and other partners to look at the issue of child labour, and enact as quickly as possible legislation focused on the prevention of child labour and the removal of its victims from the workplace, as well as their rehabilitation, social reintegration and education ", - "values": [ - "Labour", - "Rights of the Child" - ] - }, - { - "text": "Widen the mandate of the Parliamentary Ombudsman to address racial discrimination in public and private entities", - "values": [ - "National Human Rights Institution", - "Racial discrimination" - ] - }, - { - "text": "Through its National Strategy for Combating Violence against Women, further seek to address violence proactively by seeking to influence attitudes and behaviours, in particular through the active involvement of men and boys", - "values": [ - "Women's rights" - ] - }, - { - "text": "Design awareness-raising campaign on cultural diversity, on countering racial discrimination, xenophobia and all other forms of intolerance and promoting inclusiveness, social cohesion and respect for the values of diversity ", - "values": [ - "Racial discrimination" - ] - }, - { - "text": "Intensify efforts to guarantee equal opportunities for women in the public service, especially in senior governmental positions", - "values": [ - "Women's rights" - ] - }, - { - "text": "Strengthen the national unit for the protection of human rights within the Department of Foreign Affairs of the Monegasque Government and work towards the establishment of a national human rights institution", - "values": [ - "National Human Rights Institution" - ] - }, - { - "text": "Speed up the amendment of the Criminal Code, Code of Criminal Procedure, and Code of Military Justice to effectively deal with human rights violations", - "values": [ - "Justice" - ] - }, - { - "text": "Further strengthen measures to provide protection and support to the family as the natural and fundamental unit of the society", - "values": [ - "Other" - ] - }, - { - "text": "Make further efforts to protect civil rights in judicial procedures, including by ensuring immediate access to an attorney upon arrest", - "values": [ - "Justice" - ] - }, - { - "text": "Enhance safeguards on the use of the death penalty, including: adequate and early legal representation for cases which could attract the death penalty, non-application of the death penalty to those with mental illness, revising the Criminal Code to accord with relevant international human rights laws and obligations, and reinstating a moratorium on the use of the death penalty", - "values": [ - "Death penalty", - "International instruments" - ] - }, - { - "text": "Immediately put an end to repressions of peaceful protests that have led to a high number of deaths and wounded people, including children", - "values": [ - "Extrajudicial executions", - "Freedom of association and peaceful assembly", - "Rights of the Child" - ] - }, - { - "text": "Extend the access and improve the quality of services of prenatal, postnatal and obstetrics health care, in order to reduce the maternal mortality rate", - "values": [ - "Right to health", - "Women's rights" - ] - }, - { - "text": "Abolish the death penalty and commute without delay all death sentences to terms of imprisonment", - "values": [ - "Death penalty" - ] - }, - { - "text": "Continue its efforts aimed at combating gender-based violence, including adopting a specific bill on gender-based violence ", - "values": [ - "Women's rights" - ] - }, - { - "text": "Combat hate propaganda and incitement against minority groups, especially LGBTI persons, religious minorities, AIDS patients and persons with disabilities through the adoption of a comprehensive package of laws and effective mechanisms to combat discrimination, including in the public administration", - "values": [ - "Disabilities", - "Freedom of religion and belief", - "HIV - Aids", - "Minorities", - "Racial discrimination", - "Sexual Orientation and Gender Identity" - ] - }, - { - "text": "Sign the Optional Protocol to the Covenant on Economic, Social and Cultural Rights", - "values": [ - "ESC rights - general", - "International instruments" - ] - }, - { - "text": "Continue its positive efforts to promote and protect economic, social and cultural rights and combat poverty ", - "values": [ - "ESC rights - general", - "Poverty" - ] - }, - { - "text": "Provide the legal framework for the establishment of a national human rights institution in accordance with the Paris Principles, and in consultation with civil society", - "values": [ - "Civil society", - "National Human Rights Institution" - ] - }, - { - "text": "Apply, in conformity with the policy of education and training adopted in 2014, legal and administrative measures in favour of the "education for all system"", - "values": [ - "Right to education" - ] - }, - { - "text": "Consider ratifying the Optional Protocol to the Convention against Torture and Other Cruel, Inhuman or Degrading Treatment or Punishment", - "values": [ - "International instruments", - "Torture and other CID treatment", - "Treaty bodies" - ] - }, - { - "text": "Ensure an effective consultation process with indigenous peoples in all decision-making that might affect them", - "values": [ - "Indigenous peoples" - ] - }, - { - "text": "Seek cooperation of OHCHR as well as NGOs in the follow-up to the universal periodic review ", - "values": [ - "Civil society", - "UPR process" - ] - }, - { - "text": "Adopt necessary steps to ensure that victims of violence are not obliged to pay costs of their medical examination and that trials of alleged perpetrators take place in due time to avoid their release in accordance with Art. 14 (4) of the Constitution, which may amount to impunity of perpetrators.", - "values": [ - "Impunity" - ] - }, - { - "text": "Continue to pursue its commendable efforts in handling complaints regarding alleged acts of ill-treatment committed by law-enforcement authorities ", - "values": [ - "Human rights violations by state agents" - ] - }, - { - "text": "Promote strategies for climate changes mitigation and adaptation to their effects, and disseminate them through school programmes", - "values": [ - "Environment" - ] - }, - { - "text": "Consider further actions to promote better access to education for children in Greenland and in the Faroe Islands", - "values": [ - "Right to education", - "Rights of the Child" - ] - }, - { - "text": "Give priority to programmes for upgrading land and water resources to reduce the long-term vulnerability caused by drought and allowing the population to satisfy its needs in water and food - and, in this regard, request the assistance of competent United Nations agencies and programmes ", - "values": [ - "Right to food", - "Right to land", - "Right to water and sanitation", - "Technical assistance and cooperation" - ] - }, - { - "text": "Pursue efforts to guarantee the effective functioning of the Truth and Reconciliation Commission", - "values": [ - "Justice" - ] - }, - { - "text": "Strengthen the framework of protection of the rights of children, in particular by adopting legislative and programmatic measures to prevent and punish sexual abuse, exploitation and violence against them, as well as measures to facilitate access to legal assistance, and medical and psychological support to victims of these crimes", - "values": [ - "Rights of the Child" - ] - }, - { - "text": "Ensure an effective implementation of the criminal legislation and the respect of the principle of a 48 hour limit for any legal framework", - "values": [ - "Justice" - ] - }, - { - "text": "Deal with the problems of overcrowding and insufficient food provisions in prisons", - "values": [ - "Detention" - ] - }, - { - "text": "Take measures to ensure that all legislation, in particular laws concerning the right of all persons to peaceful assembly and demonstration, upholds international human rights obligations", - "values": [ - "Freedom of association and peaceful assembly", - "International instruments" - ] - }, - { - "text": "Accept the request for a visit made by the Special Rapporteur on the question of torture", - "values": [ - "Special procedures", - "Torture and other CID treatment" - ] - }, - { - "text": "Step up efforts to establish a national human rights institution in line with the Paris Principles", - "values": [ - "National Human Rights Institution" - ] - }, - { - "text": "To mainstream human rights issues in all aspects of governance", - "values": [ - "Other" - ] - }, - { - "text": "Strengthen protection mechanisms against gender-based violence ", - "values": [ - "Women's rights" - ] - }, - { - "text": "Fully implement the United Nations Declaration on the Rights of Indigenous Peoples, and remove discriminatory legal barriers", - "values": [ - "Indigenous peoples", - "International instruments" - ] - }, - { - "text": "Consider ratification of ICCPR-OP2 ", - "values": [ - "Death penalty", - "International instruments" - ] - }, - { - "text": "Take the measures necessary to prevent the detention of minors in adult prisons", - "values": [ - "Detention", - "Rights of the Child" - ] - }, - { - "text": "Ratify the 1951 Convention Relating to the Status of Refugees and implement legislation providing asylum seekers and refugees with legal status in line with international standards, especially abiding the principle of nonrefoulement", - "values": [ - "Asylum-seekers - refugees", - "International instruments" - ] - }, - { - "text": "Establish a moratorium on executions with a view to abolishing the death penalty ", - "values": [ - "Death penalty" - ] - }, - { - "text": "Continue its efforts towards national reconciliation and strengthen the National Human Rights Commission in conformity with the Paris Principles", - "values": [ - "National Human Rights Institution" - ] - }, - { - "text": "Increase its efforts to provide mediation machinery to provide victims of discrimination on the basis of sexual orientation more accessible and rapid remedies. ", - "values": [ - "Sexual Orientation and Gender Identity" - ] - }, - { - "text": "Strengthen the participation of women in decision-making circles and leadership positions and enable them to play a role in all fields of development", - "values": [ - "Development", - "Women's rights" - ] - }, - { - "text": "Enact the anti-torture bill ", - "values": [ - "Torture and other CID treatment" - ] - }, - { - "text": "Consider ratifying ICRPD", - "values": [ - "Disabilities", - "International instruments" - ] - }, - { - "text": "Strengthen the principle of legality with an emphasis in due process in conformity with international human rights norms ", - "values": [ - "International instruments" - ] - }, - { - "text": "Extend human rights education to all sectors of the country", - "values": [ - "Human rights education and training" - ] - }, - { - "text": "Strengthen measures to enhance the welfare of vulnerable groups including persons with disabilities", - "values": [ - "Disabilities" - ] - }, - { - "text": "Continue in its judicial reforms, including strengthening the independence of the judiciary, enact a robust legislation outlawing torture and tackling impunity for acts of torture and ill-treatment, and ensure that provisions for arrests and detention are in accordance with international human rights standards", - "values": [ - "Detention", - "Impunity", - "International instruments", - "Justice", - "Torture and other CID treatment" - ] - }, - { - "text": "Adopt a law guaranteeing freedom of movement within the territory in accordance with ICCPR, which Cuba has signed, repeal the system of permits to leave the territory, and consequently delete from the criminal code the crime of illegal departure from the territory", - "values": [ - "Freedom of movement", - "International instruments" - ] - }, - { - "text": "Continue adopting its social policies of access to services on education and health, in particular for women and girls", - "values": [ - "Right to education", - "Right to health", - "Rights of the Child", - "Women's rights" - ] - }, - { - "text": "Establish a national intergovernmental independent mechanism responsible for monitoring public policies in the field of human rights", - "values": [ - "General" - ] - }, - { - "text": "Continue and intensify efforts to eliminate all forms of discrimination and violence against women, including by adopting a national plan for the eradication of female genital mutilation ", - "values": [ - "Rights of the Child", - "Torture and other CID treatment", - "Women's rights" - ] - }, - { - "text": "Continue with its efforts leading to the signing and ratifying of the main human rights treaties ", - "values": [ - "International instruments" - ] - }, - { - "text": "Ensure harmonization of the Law on Domestic Violence and the child law with international human rights standards", - "values": [ - "International instruments", - "Rights of the Child", - "Women's rights" - ] - }, - { - "text": "Provide legal aid to child victims and their guardians to strengthen their access to courts", - "values": [ - "Rights of the Child" - ] - }, - { - "text": "Take all necessary steps to work towards an immediate moratorium on execution of the death penalty, with a view to a complete abolishment, in line with international human rights standards such as the right to live", - "values": [ - "Death penalty", - "International instruments" - ] - }, - { - "text": "Expressly prohibit in law corporal punishment in the family, schools and other institutions ", - "values": [ - "Torture and other CID treatment" - ] - }, - { - "text": "Implement measures in support of enhanced participation of people with disabilities in the workforce", - "values": [ - "Disabilities" - ] - }, - { - "text": "Consistent with the observations of the Committee on the Elimination of Racial Discrimination and the Special Rapporteur on the situation of human rights and fundamental freedoms of indigenous peoples, continue the new dialogue between the State and the Maori regarding the Foreshore and Seabed Act of 2004, in order to find a way of mitigating its discriminatory effects through a mechanism involving prior informed consent of those affected.", - "values": [ - "Indigenous peoples", - "Special procedures", - "Treaty bodies" - ] - }, - { - "text": "Continue to take measures to tackle the influence of illegal groups, including FARC, ELN and new and reforming armed paramilitary groups such as the Aguilas Negras, and do so while conforming to international humanitarian law.", - "values": [ - "International humanitarian law" - ] - }, - { - "text": "Take concrete measures to guarantee the independence of the High Commission for Human Rights in accordance with the Paris Principles", - "values": [ - "National Human Rights Institution" - ] - }, - { - "text": "Revise the Marriage Act of 1961 in a way that ensures full equality with respect to the civil institution of marriage", - "values": [ - "Sexual Orientation and Gender Identity" - ] - }, - { - "text": "Ratify the Convention against Torture as well as its Optional Protocol", - "values": [ - "Detention", - "International instruments", - "Torture and other CID treatment" - ] - }, - { - "text": "Further improve its birth registration system and ensure that this system is accessible to all children born in Lebanon", - "values": [ - "Rights of the Child", - "Statelessness and the right to nationality" - ] - }, - { - "text": "China is committed to carrying out exchanges and cooperation on human rights with all countries, and to promoting the resolution of human rights issues in a fair, objective and non-selective manner by the international community.", - "values": [ - "Technical assistance and cooperation" - ] - }, - { - "text": "Extend a standing invitation to special procedures to allow them easy access in visiting Fiji and thus assist the authorities in pursuing progress", - "values": [ - "Special procedures" - ] - }, - { - "text": "Continue its efforts to combat poverty and social disparities ", - "values": [ - "Poverty" - ] - }, - { - "text": "Grant full access to special rapporteurs and Special proceduress mandate holders to visit the country, notably the Special Rapporteurs on the right to education, the right to food and on violence against women ", - "values": [ - "Right to education", - "Right to food", - "Special procedures", - "Women's rights" - ] - }, - { - "text": "Strengthen the framework of the National Office for the Prevention of Torture to ensure it is fully functional and able to investigate all reported cases", - "values": [ - "Torture and other CID treatment" - ] - }, - { - "text": "Continue providing and allocating more financial resources to implement programmes and activities aimed at combating poverty and hunger", - "values": [ - "Poverty", - "Right to food" - ] - }, - { - "text": "Work for the social reintegration of child soldiers, refugees and displaced persons who have opted to return to their original location", - "values": [ - "Asylum-seekers - refugees", - "Internally displaced persons", - "International humanitarian law", - "Rights of the Child" - ] - }, - { - "text": "Effectively investigate all cases of violence against human rights defenders, in order to hold the perpetrators accountable ", - "values": [ - "Human rights defenders" - ] - }, - { - "text": "That the visit by the Working Group on enforced or involuntary Disappearances agreed upon in principle take place within 2009", - "values": [ - "Enforced disappearances", - "Special procedures" - ] - }, - { - "text": "Take effective measures to reduce and control the proliferation of firearms", - "values": [ - "Public security" - ] - }, - { - "text": "Ensure the broad involvement of civil society representatives in the preparatory process of the national human rights plan ", - "values": [ - "Civil society" - ] - }, - { - "text": "Continue its effective policies to combat organized crime ", - "values": [ - "Public security" - ] - }, - { - "text": "Take a lead role in generating global opinion in favour of promoting human rights through fighting poverty", - "values": [ - "Poverty" - ] - }, - { - "text": "In view of the shortcomings described in the national report, request international technical assistance ", - "values": [ - "Technical assistance and cooperation" - ] - }, - { - "text": "Take effective measures to combat sexual exploitation of children and an increase of child prostitution", - "values": [ - "Rights of the Child" - ] - }, - { - "text": "Guarantee LGBTI persons the full enjoyment and equal human rights by derogating legislation that criminalizes and stigmatizes them", - "values": [ - "Sexual Orientation and Gender Identity" - ] - }, - { - "text": "Strengthen its cooperation with civil society organizations for the promotion and protection of human rights in the area of health services", - "values": [ - "Civil society", - "Right to health" - ] - }, - { - "text": "Become a party to CAT and take the necessary national measures to comply with its provisions ", - "values": [ - "International instruments", - "Torture and other CID treatment" - ] - }, - { - "text": "Submit as soon as possible the reports under the two international Covenants that have been pending since 1991 and 1990, respectively ", - "values": [ - "CP rights - general", - "ESC rights - general", - "International instruments" - ] - }, - { - "text": "Continue paying particular attention to the conditions of vulnerable groups such as persons with disabilities and indigenous peoples.", - "values": [ - "Disabilities", - "Indigenous peoples" - ] - }, - { - "text": "Promote greater awareness and transparency in the process of complaints made against police officers and make public the results of any investigations ", - "values": [ - "Human rights violations by state agents" - ] - }, - { - "text": "Further combat all forms of discrimination against women by running public awareness campaigns on women's rights", - "values": [ - "Human rights education and training", - "Women's rights" - ] - }, - { - "text": "Cooperate fully with the human rights mechanisms of the United Nations and with the special procedures of the Human Rights Council, including with the Special Rapporteur on the situation of human rights in the Democratic People's Republic of Korea", - "values": [ - "Special procedures" - ] - }, - { - "text": "Accede to or ratify the Optional Protocols to the International Covenant on Civil and Political Rights (ICCPR-OP 1 and ICCPR-OP 2)", - "values": [ - "CP rights - general", - "Death penalty", - "International instruments" - ] - }, - { - "text": "Rapidly close social institutions for children and find appropriate solutions for children who cannot live with their families", - "values": [ - "Rights of the Child" - ] - }, - { - "text": "Consider ratifying the International Covenant on Civil and Political Rights and the International Covenant on Economic, Social and Cultural Rights", - "values": [ - "CP rights - general", - "ESC rights - general", - "International instruments" - ] - }, - { - "text": "That the Human Rights Monitoring Committee tasked with monitoring the implementation of the National Human Rights Action Plan 2012-2020, be given the necessary resources to ensure its effective functioning", - "values": [ - "General" - ] - }, - { - "text": "Sign the Optional Protocol on the International Covenant on Economic, Social and Cultural Rights ", - "values": [ - "ESC rights - general", - "International instruments" - ] - }, - { - "text": "Continue taking measures on combating trafficking in persons", - "values": [ - "Trafficking" - ] - }, - { - "text": "Continue efforts to strengthen the role of the National Plan of Action for Women", - "values": [ - "Women's rights" - ] - }, - { - "text": "Withdraw its draft legislation criminalizing the promotion of homosexuality, and refrain from adopting any other legislation that restricts freedom of expression", - "values": [ - "Freedom of opinion and expression", - "Sexual Orientation and Gender Identity" - ] - }, - { - "text": "Accelerate the process of ratifying the Convention against Torture through its legislature", - "values": [ - "International instruments", - "Torture and other CID treatment" - ] - }, - { - "text": "Take progressive measures to consider accession to ICMW ", - "values": [ - "International instruments", - "Migrants" - ] - }, - { - "text": "Ratify CPED and OP-CAT ", - "values": [ - "Detention", - "Enforced disappearances", - "International instruments", - "Torture and other CID treatment" - ] - }, - { - "text": "Take all measures to ensure that the counter-terrorism efforts in Yemen are applied in accordance with human rights obligations.", - "values": [ - "Counter-terrorism" - ] - }, - { - "text": "Continue current efforts to provide every child with good quality basic education", - "values": [ - "Right to education", - "Rights of the Child" - ] - }, - { - "text": "Continue its leading international efforts to tackle global warming, including by reminding developed countries and other major emitting States of their obligation to help and protect human rights in Palau by reducing greenhouse gas emissions to safe levels ", - "values": [ - "Environment" - ] - }, - { - "text": "Restore the right to receive pensions for those deprived of it merely because they had expressed an opinion against the Government", - "values": [ - "Freedom of opinion and expression" - ] - }, - { - "text": "Accession to the Ottawa Convention on the Prohibition of the Use, Stockpiling, Production and Transfer of Anti-Personnel Mines and on their Destruction ", - "values": [ - "International humanitarian law" - ] - }, - { - "text": "Promote the inclusion of Somali women in the peace process and in public and political life in general ", - "values": [ - "Women's rights" - ] - }, - { - "text": "Adopt a national plan against racism, racial discrimination, xenophobia and related intolerance, including measures to prevent and fight racist and xenophobic violence", - "values": [ - "Racial discrimination" - ] - }, - { - "text": "Raise the age of criminal responsibility for juvenile offenders to at least 12 years, in line with the CRC's general comment ", - "values": [ - "Justice", - "Rights of the Child", - "Treaty bodies" - ] - }, - { - "text": "To monitor Government action in establishing a human rights institution, advise on legislation and the application of international human rights instruments, facilitate interaction with international and regional organizations, promote human rights education and file legal complaints", - "values": [ - "Human rights education and training", - "International instruments", - "National Human Rights Institution" - ] - }, - { - "text": "Appoint a new Board and Director General of the Communications Regulatory Authority", - "values": [ - "Other" - ] - }, - { - "text": "Develop a national strategy to tackle modern slavery and ratify the 2014 Protocol to the Forced Labour Convention of the International Labour Organization", - "values": [ - "International instruments", - "Labour" - ] - }, - { - "text": "Take the necessary measures for the establishment of a National Human Rights Institution", - "values": [ - "National Human Rights Institution" - ] - }, - { - "text": "Repeal Articles 487, 488, 522 and 534 of the Penal Code", - "values": [ - "Sexual Orientation and Gender Identity", - "Women's rights" - ] - }, - { - "text": "Impose an immediate moratorium on flogging, with a view of abolishing it in law, and prohibit all forms of corporal punishment in all settings", - "values": [ - "Torture and other CID treatment" - ] - }, - { - "text": "Strengthen the Office of the National Commissioner for Human Rights ", - "values": [ - "National Human Rights Institution" - ] - }, - { - "text": "Join the 67 States that have signed the joint statement on human rights, sexual orientation and gender identity", - "values": [ - "Sexual Orientation and Gender Identity" - ] - }, - { - "text": "Increase efforts to implement the recommendations of treaty bodies and to use the ongoing negotiations on a new constitution to include general non-discrimination provisions for all Israeli citizens.", - "values": [ - "Treaty bodies" - ] - }, - { - "text": "Become a State party to the Convention for the Protection of All Persons from Enforced Disappearance ", - "values": [ - "Enforced disappearances", - "International instruments" - ] - }, - { - "text": "Pursue its efforts to ensure gender equality and the participation of women in public institutions, including at the local level, and promote this in the private sector ", - "values": [ - "Women's rights" - ] - }, - { - "text": "Continue to apply measures aimed at achieving higher level of quality in the administration of justice ", - "values": [ - "Justice" - ] - }, - { - "text": "Take effective action so that the Immigration Amendment Bill is fully accorded to the international standards in the treatment of persons in need of international protection and so it does not unfairly and arbitrarily discriminate against asylum seekers ", - "values": [ - "Asylum-seekers - refugees" - ] - }, - { - "text": "Adopt a national action plan to combat gender-based and sexual violence, which includes raising general awareness through education and training, developing official and credible statistics and ensuring access to justice for victims", - "values": [ - "Human rights education and training", - "Rights of the Child", - "Women's rights" - ] - }, - { - "text": "Establish a national human rights institution accredited by the International Coordinating Committee of National Human Rights Institutions ", - "values": [ - "National Human Rights Institution" - ] - }, - { - "text": "Undertake effective disciplinary and criminal procedures against members of the security forces involved in cases of sexual violence ", - "values": [ - "Human rights violations by state agents" - ] - }, - { - "text": "Continue together finding the path back to the place where the full respect for human rights can be found", - "values": [ - "General" - ] - }, - { - "text": "Ensure that trials and pretrial detention comply with due process rights in ICCPR and articles 54 and 55 of the Constitution, and end all military trials of civilians", - "values": [ - "Detention", - "International instruments", - "Justice" - ] - }, - { - "text": "Create a board of independent inspectors examining conditions in detention facilities and the behaviour of police officers", - "values": [ - "Detention" - ] - }, - { - "text": "Actively implement the policy to promote gender equality, to improve the quality of life of persons with disabilities and development of youth", - "values": [ - "Disabilities", - "Women's rights" - ] - }, - { - "text": "Take effective measures to combat and put an end to discrimination against indigenous population and to elaborate and implement a National Action Plan to deal with this phenomenon", - "values": [ - "Indigenous peoples" - ] - }, - { - "text": "Develop and adopt a national action plan on business and human rights, including measures on access to remedy, paying special attention to the position of human rights defenders", - "values": [ - "Business and human rights", - "Human rights defenders" - ] - }, - { - "text": "Continue implementing the Act on Promotion of Women\u2019s Participation and Advancement in the Workplace, including through the monitoring of the stated goals in the action plans published by relevant government bodies and private companies", - "values": [ - "Labour", - "Women's rights" - ] - }, - { - "text": "Continue to seek assistance from the United Nations system and the international community in order to promote human rights awareness throughout the country ", - "values": [ - "Human rights education and training", - "Technical assistance and cooperation" - ] - }, - { - "text": "Carefully consider the implementation of the recommendations of the Committee on Economic, Social and Cultural Rights on women's reproductive health and rights.", - "values": [ - "Treaty bodies", - "Women's rights" - ] - }, - { - "text": "Continue strengthening its revolutionary policies and programmes so that all, without any exclusion, may enjoy their fundamental rights which are the human rights ", - "values": [ - "General" - ] - }, - { - "text": "Observe all human rights principles, international conventions and raise awareness among the population regarding human rights values", - "values": [ - "Human rights violations by state agents", - "International instruments" - ] - }, - { - "text": "Continue to focus on maternal and child health ", - "values": [ - "Right to health", - "Rights of the Child", - "Women's rights" - ] - }, - { - "text": "Ensure that officers and military personnel responsible for human rights violations, particularly sexual violence, are prosecuted, especially in cases which have been brought to the attention of the authorities by the Security Council", - "values": [ - "Human rights violations by state agents", - "Rights of the Child", - "Women's rights" - ] - }, - { - "text": "Carry out an analysis to identify priorities in the human rights agenda and implement public policies that incorporate a transversal human rights perspective", - "values": [ - "General" - ] - }, - { - "text": "Strengthen its efforts to integrate Roma communities through positive action in the area of housing, employment, education and social services ", - "values": [ - "Minorities" - ] - }, - { - "text": "Share its experience and expertise, through multiform and multisectoral cooperation, with the countries of the region that are well behind in achieving Millennium Development Goals, noting that Goals 1 and 2 have been implemented and that Goals 5 and 7 are in the process of being implemented by Jamaica ", - "values": [ - "Development" - ] - }, - { - "text": "Introduce amendments in Somalia's Penal Code on widespread practice of FGM ", - "values": [ - "Rights of the Child", - "Torture and other CID treatment", - "Women's rights" - ] - }, - { - "text": "Strengthen further the impartiality and independence of the judiciary by implementing the recent decrees on judicial procedures and by promptly and thoroughly investigating any allegation or complaint of ill- treatment in national detention facilities", - "values": [ - "Detention", - "Justice", - "Torture and other CID treatment" - ] - }, - { - "text": "Decriminalize abortion, at least in certain cases, such as danger to the mother's life and health, the non-viability of the foetus or a pregnancy arising from rape ", - "values": [ - "Women's rights" - ] - }, - { - "text": "Create a human rights institution at the federal level in accordance with the Paris Principles as a national "focal point" for the promotion and protection of human rights", - "values": [ - "National Human Rights Institution" - ] - }, - { - "text": "Continue its active engagement with the United Nations human rights mechanisms", - "values": [ - "Special procedures", - "Treaty bodies", - "UPR process" - ] - }, - { - "text": "Withdraw the restrictions placed upon the freedoms of opinion, expression and information and immediately release the estimated 2,100 political prisoners and prisoners of conscience ", - "values": [ - "Detention", - "Freedom of opinion and expression", - "Freedom of religion and belief" - ] - }, - { - "text": "Further strengthen efforts to eliminate the gender wage gap through temporary special measures", - "values": [ - "Women's rights" - ] - }, - { - "text": "Continue its cooperation with the International Criminal Court in order that the perpetrators of human rights violations are held accountable for their actions", - "values": [ - "International instruments", - "Justice" - ] - }, - { - "text": "Continue to intensify its efforts to consolidate the progress achieved in the area of health", - "values": [ - "Right to health" - ] - }, - { - "text": "Consider adopting public policies on ensuring quality education for children and adolescents, and further allocate adequate financial resources to this endeavour, including by focusing on reducing the number of school dropouts ", - "values": [ - "Right to education", - "Rights of the Child" - ] - }, - { - "text": "Undertake concrete steps to guarantee the rights of women as enshrined in international conventions.", - "values": [ - "Women's rights" - ] - }, - { - "text": "Continue its efforts to successfully achieve the Child Development Plan 2011-2020 set by the State Council in 2011", - "values": [ - "Rights of the Child" - ] - }, - { - "text": "Call on the international community to offer very much needed technical assistance to Tuvalu as stipulated and outlined in paragraph 77 of the national report and to address the call by Tuvalu for technical assistance in the establishment of a human rights institution.", - "values": [ - "National Human Rights Institution", - "Technical assistance and cooperation" - ] - }, - { - "text": "Launch awareness campaigns and financially support NGOs working in the area of crimes related to prejudice and hate", - "values": [ - "Civil society", - "Human rights education and training", - "Racial discrimination" - ] - }, - { - "text": "Ensure the right to habeas corpus in all cases of detention ", - "values": [ - "Detention", - "Justice" - ] - }, - { - "text": "Accept the recommendations of UNHCR on refugee issues including the adoption of national asylum legislation ", - "values": [ - "Asylum-seekers - refugees" - ] - }, - { - "text": "Redouble efforts to eliminate discrimination against older people in access to financial services, which sometimes are not available or are too costly in reason of the undue use of age as a criteria", - "values": [ - "Other" - ] - }, - { - "text": "Intensify efforts to advance the rights of the Arab minority population in Israel", - "values": [ - "Minorities" - ] - }, - { - "text": "Take further measures to develop a comprehensive national health system, improving the quality and ensuring universal access to medical care", - "values": [ - "Right to health" - ] - }, - { - "text": "Promote greater participation and representation of women in public life, notably in the parliament and other national decision-making bodies ", - "values": [ - "Women's rights" - ] - }, - { - "text": "Continue its achievements in the area of freedom of religion", - "values": [ - "Freedom of religion and belief" - ] - }, - { - "text": "Take other urgent measures for the re-integration of children who have surrendered to the governmental forces asking for special protection or who are currently held in prisons.", - "values": [ - "Rights of the Child" - ] - }, - { - "text": "Strengthen the capacities of the judiciary institutions", - "values": [ - "Justice" - ] - }, - { - "text": "Accelerate the exercise that it has initiated to consider the possibility of acceding to a number of international human rights instruments, including the Convention on the Elimination of All Forms of Discrimination against Women", - "values": [ - "International instruments", - "Women's rights" - ] - }, - { - "text": "Take further concrete steps to address cases of torture in prisons, in particular to ensure impartial and independent investigation of all cases of alleged mistreatment or torture, punish all personnel responsible for torture or mistreatment and provide victims of torture effective access to remedy ", - "values": [ - "Detention", - "Human rights violations by state agents", - "Torture and other CID treatment" - ] - }, - { - "text": "Accelerate the implementation of the Action Plan to enable targeted programming and interventions for the welfare and protection of the most vulnerable children in Botswana ", - "values": [ - "Rights of the Child" - ] - }, - { - "text": "Strengthen its efforts to achieve a level of ODA up to 0.7% of GNI ", - "values": [ - "Development" - ] - }, - { - "text": "Take effective measures to safeguard freedom of expression for individuals and the media", - "values": [ - "Freedom of opinion and expression", - "Freedom of the press" - ] - }, - { - "text": "Ratify the Rome Statute of the International Criminal Court as soon as possible ", - "values": [ - "International instruments", - "Justice" - ] - }, - { - "text": "Continue efforts aimed at increasing the participation of women in the economic and political spheres as well as to consider ratification of CEDAW ", - "values": [ - "International instruments", - "Women's rights" - ] - }, - { - "text": "Proceed with national plans of action on disabilities and on eliminating violence against women ", - "values": [ - "Women's rights" - ] - }, - { - "text": "Continue improving the health security system to further minimize discrepancies and to provide equitable access", - "values": [ - "Right to health" - ] - }, - { - "text": "Pursue its efforts to create a national human rights institution ", - "values": [ - "National Human Rights Institution" - ] - }, - { - "text": "Bring legislation on freedom of expression, assembly and association in line with international human rights standards, in particular by repealing the "Media Industry Development Decree" 2010 in order to end intimidation and harassment of those that express criticism of the State, to change the climate of fear and self-censorship and to ensure that no one is arbitrarily arrested and detained for exercising their rights", - "values": [ - "Freedom of association and peaceful assembly", - "Freedom of opinion and expression", - "Freedom of the press", - "International instruments" - ] - }, - { - "text": "Undertake a comprehensive investigation into the so-called prison flights in which the Central Intelligence Agency of the United States of America landed aircraft at Danish airports with arbitrarily detained persons on board during its special operations", - "values": [ - "Detention" - ] - }, - { - "text": "Strengthen the efforts to promote the full participation of women in all aspects, eliminate discrimination against women, and ensure access to justice for victims of domestic violence and sexual harassment", - "values": [ - "Rights of the Child", - "Women's rights" - ] - }, - { - "text": "Respect and protect the rights of human rights defenders and journalists to conduct their work without hindrance, intimidation or harassment ", - "values": [ - "Freedom of the press", - "Human rights defenders" - ] - }, - { - "text": "Continue with the positive approach in the field of education, especially the construction of more schools and educational centres, which contributed to an increase in student enrolment rates in the various stages of education", - "values": [ - "Right to education" - ] - }, - { - "text": "Integrate human rights knowledge into relevant courses and the legal education curriculum", - "values": [ - "Human rights education and training" - ] - }, - { - "text": "Ensure the rights of all girls to education by inter alia reversing a decision to ban pregnant girls from attending classes and exams", - "values": [ - "Right to education", - "Rights of the Child", - "Women's rights" - ] - }, - { - "text": "Ratify the pending principle international human rights treaties, such as the Rome Statute, the International Convention for the Protection of All Persons from Enforced Disappearance (CED) and OP-CAT ", - "values": [ - "Detention", - "Enforced disappearances", - "International instruments", - "Justice", - "Torture and other CID treatment" - ] - }, - { - "text": "Establish an inter-institutional dialogue to implement the recommendations of the Subcommittee on Prevention of Torture", - "values": [ - "Torture and other CID treatment", - "Treaty bodies" - ] - }, - { - "text": "Give favourable consideration to ratifying the Convention against Torture and Other Cruel, Inhuman or Degrading Treatment or Punishment CAT as well as the Convention on the Rights of Persons with Disabilities CRPD ", - "values": [ - "Disabilities", - "International instruments", - "Torture and other CID treatment" - ] - }, - { - "text": "Review and revise domestic legislation and policies to reflect the provisions and principles of the Convention on the Rights of Persons with Disabilities ", - "values": [ - "Disabilities", - "International instruments" - ] - }, - { - "text": "Deepen the measures to guarantee the fight against discrimination, xenophobia and racism, particularly through the investigation and effective punishment of the perpetrators of such acts", - "values": [ - "Racial discrimination" - ] - }, - { - "text": "Reinforce its legal framework by adhering to the 1951 Convention relating to the Status of Refugees and its 1967 Protocol ", - "values": [ - "Asylum-seekers - refugees", - "International instruments" - ] - }, - { - "text": "Sign or ratify the regional and international human rights instruments to which it is not yet a party, in particular the Convention on the Rights of Persons with Disabilities", - "values": [ - "Disabilities", - "International instruments" - ] - }, - { - "text": "Expand the legal aid services, in particular to rural areas.", - "values": [ - "Development" - ] - }, - { - "text": "Intensify its efforts to effectively implement the laws on discrimination against women, and on the promotion and protection of children", - "values": [ - "Rights of the Child", - "Women's rights" - ] - }, - { - "text": "Take measures to eliminate the obstacles for women victims of domestic and sexual violence faced when bringing complaints and seeking protection", - "values": [ - "Women's rights" - ] - }, - { - "text": "Adopt without delay the draft law establishing quotas for women in elected and administrative positions, in line with the recommendation of the Committee on the Elimination of Discrimination against Women", - "values": [ - "Treaty bodies", - "Women's rights" - ] - }, - { - "text": "Remain committed to the sustainable economic and social development, further promote national reconciliation, and achieve stability and development in the country", - "values": [ - "Development" - ] - }, - { - "text": "Extend an open and standing invitation to the special procedures of the Human Rights Council ", - "values": [ - "Special procedures" - ] - }, - { - "text": "Enact specific legislation to eradicate all sexual gender-based incidents of violence and punish the perpetrators of sexual violence", - "values": [ - "Rights of the Child", - "Women's rights" - ] - }, - { - "text": "Establish an independent national human rights institution in accordance with the Paris Principles.", - "values": [ - "National Human Rights Institution" - ] - }, - { - "text": "Sign and ratify the newly adopted Optional Protocol to the International Covenant on Economic, Social and Cultural Rights, allowing individual complaints of alleged violations of these rights to be heard by the Committee on Economic, Social and Cultural Rights ", - "values": [ - "ESC rights - general", - "International instruments" - ] - }, - { - "text": "Ensure the availability of good quality medicines at an appropriate price, especially for the disadvantaged, the vulnerable and the poor", - "values": [ - "Poverty", - "Right to health" - ] - }, - { - "text": "Enhance its initiatives and programmes to further promote a sense of national unity and pride among all its citizens", - "values": [ - "Other" - ] - }, - { - "text": "Protect the rights of all individuals, regardless of sexual orientation, on an equal basis", - "values": [ - "Sexual Orientation and Gender Identity" - ] - }, - { - "text": "Intensify its awareness-raising activities to eradicate female genital mutilation ", - "values": [ - "Rights of the Child", - "Torture and other CID treatment", - "Women's rights" - ] - }, - { - "text": "Continue efforts on encouraging cultural exchanges between the residents and migrants", - "values": [ - "Migrants" - ] - }, - { - "text": "Strengthen effectiveness, autonomy and independence of the National Human Rights Commission so that it fully complies with the Paris Principles, especially with regard to the participation of civil society in its work ", - "values": [ - "Civil society", - "National Human Rights Institution" - ] - }, - { - "text": "Respect the rights of all its citizens to freedom of expression, association and peaceful assembly and the right to participate in public and political life", - "values": [ - "Freedom of association and peaceful assembly", - "Freedom of opinion and expression" - ] - }, - { - "text": "Protect the civilian population in the armed conflict, with particular emphasis on the rights to life, food, education and health, including through the protection of the medical impartiality, and ensure accountability for all cases of violations and abuses of international human rights law and international humanitarian law", - "values": [ - "International humanitarian law", - "Right to education", - "Right to food", - "Right to health" - ] - }, - { - "text": "Lift its reservations to article 9 of the Convention on the Elimination of All Forms of Discrimination against Women ", - "values": [ - "International instruments", - "Women's rights" - ] - }, - { - "text": "Request, if required, technical assistance from development partners in delivering on its reporting obligations and on the domestication of international conventions as called for under paragraphs 131 and 132 of the national report ", - "values": [ - "International instruments", - "Treaty bodies" - ] - }, - { - "text": "Seek international assistance to fund programmes and capacity building initiatives", - "values": [ - "Technical assistance and cooperation" - ] - }, - { - "text": "Adopt the new Criminal Code, including the article 273 and the following ones that envisage and repress female genital mutilation (FGM)", - "values": [ - "Rights of the Child", - "Torture and other CID treatment", - "Women's rights" - ] - }, - { - "text": "Continue efforts for the effective implementation of legislative policies and educational measures aimed at eradicating discrimination in all its forms", - "values": [ - "Human rights education and training" - ] - }, - { - "text": "Develop an environmental strategy in line with international standards", - "values": [ - "Environment" - ] - }, - { - "text": "Provide the Child and Family Agency with adequate resources to be able to meet its targets and effectively implement the Children First Act", - "values": [ - "Rights of the Child" - ] - }, - { - "text": "Cease executions and establish a moratorium with a view to abolishing the death penalty", - "values": [ - "Death penalty" - ] - }, - { - "text": "Develop non-custodial alternatives in relation to the sole or primary carers of children.", - "values": [ - "Rights of the Child" - ] - }, - { - "text": "Finalize the National Policy for Women within a reasonable time frame ", - "values": [ - "Women's rights" - ] - }, - { - "text": "Prohibit child labour of minors under the age of 14", - "values": [ - "Labour", - "Rights of the Child" - ] - }, - { - "text": "Adopt swiftly the comprehensive draft child rights law", - "values": [ - "Rights of the Child" - ] - }, - { - "text": "Invest more resources in the implementation of law on gender equality and for gender equality in the labour market", - "values": [ - "Women's rights" - ] - }, - { - "text": "Continue the training programmes for magistrates and law enforcement officials in accordance with international standards and human rights principles", - "values": [ - "Human rights education and training" - ] - }, - { - "text": "Implement its obligations under article 14 of ICCPR to ensure that everyone without distinction is entitled to a fair and public hearing by a competent, independent and impartial tribunal established by law ", - "values": [ - "International instruments", - "Justice" - ] - }, - { - "text": "Establish torture as a criminal offence, in terms fully in line with article 1 of the Convention against Torture and Other Cruel, Inhuman or Degrading Treatment or Punishment", - "values": [ - "International instruments", - "Torture and other CID treatment" - ] - }, - { - "text": "Strengthen constitutional protections that ensure the independence of the judiciary and Parliament", - "values": [ - "Justice" - ] - }, - { - "text": "Adopt a definition of torture that includes all elements present in the Convention against Torture", - "values": [ - "International instruments", - "Torture and other CID treatment" - ] - }, - { - "text": "Make stronger efforts to improve and raise the standard of gender equality in society ", - "values": [ - "Women's rights" - ] - }, - { - "text": "Continue to strengthen its efforts in tackling poverty and enhancing the access of all persons,\nespecially those living in rural areas, to basic social services such as health and education ", - "values": [ - "Poverty", - "Right to education", - "Right to health" - ] - }, - { - "text": "Ratify the Optional Protocols to ICCPR and the Optional Protocol to the Convention on the Rights of Persons with Disabilities", - "values": [ - "CP rights - general", - "Death penalty", - "Disabilities", - "International instruments" - ] - }, - { - "text": "Encourage high level State officials and politicians to take a clear position against racist or xenophobic political speech ", - "values": [ - "Racial discrimination" - ] - }, - { - "text": "Adopt and implement efficiently a law against domestic violence ", - "values": [ - "Rights of the Child", - "Women's rights" - ] - }, - { - "text": "Make efforts to promote free and unbiased local media, including by removing restrictions on local radio broadcasts", - "values": [ - "Freedom of the press" - ] - }, - { - "text": "Continue its reform process in various systems including prisons, protection of women and children, and health", - "values": [ - "Detention", - "Right to health", - "Rights of the Child", - "Women's rights" - ] - }, - { - "text": "Ratify the Optional Protocol to the Convention against Torture and Other Cruel, Inhuman and Degrading Treatment or Punishment ", - "values": [ - "Detention", - "International instruments", - "Torture and other CID treatment" - ] - }, - { - "text": "Take adequate measures to effectively safeguard the freedoms of expression, association and assembly", - "values": [ - "Freedom of association and peaceful assembly", - "Freedom of opinion and expression" - ] - }, - { - "text": "Establish a national institution on human rights in accordance with the Paris Principles", - "values": [ - "National Human Rights Institution" - ] - }, - { - "text": "Give adequate resources to the Human Rights Commission to enable it to discharge faithfully the onerous duty of protecting and promoting human rights in Sierra Leone ", - "values": [ - "National Human Rights Institution" - ] - }, - { - "text": "Strengthen capacities and skills of educational institutions with a view to their rehabilitation", - "values": [ - "Right to education" - ] - }, - { - "text": "Abide by all relevant United Nations resolutions pertaining to human rights violations that concern Turkey implicitly or explicitly ", - "values": [ - "General" - ] - }, - { - "text": "Ensure that laws regulating non-governmental organizations are in conformity with the rights to freedom of expression and association by repealing restrictions on the access of such organizations to foreign funding", - "values": [ - "Civil society", - "Freedom of association and peaceful assembly" - ] - }, - { - "text": "Hold security forces and other government officials accountable for human rights violations, including the use of torture and arbitrary arrests and detention of members of the opposition", - "values": [ - "Detention", - "Freedom of association and peaceful assembly", - "Human rights violations by state agents", - "Torture and other CID treatment" - ] - }, - { - "text": "Make further efforts to combat violence and sexual abuses against children for the effective realization of their rights.", - "values": [ - "Rights of the Child" - ] - }, - { - "text": "Take measures to enable the adequate representation of all components of society in all organs of government, particularly women and ethnic minorities", - "values": [ - "Minorities", - "Women's rights" - ] - }, - { - "text": "Comply with the recommendations of the Committee on Economic, Social and Cultural Rights to prepare studies on the impact on the human rights of local communities in third countries of agro-fuel projects promoted by Belgian companies", - "values": [ - "Business and human rights", - "ESC rights - general", - "Environment", - "Treaty bodies" - ] - }, - { - "text": "Fully investigate allegations of corruption and criminality within the police force", - "values": [ - "Corruption", - "Human rights violations by state agents" - ] - }, - { - "text": "Reinforce the protection of migrants, refugees and asylum seekers' rights by improving their living conditions and by ensuring the civil registration of their children", - "values": [ - "Asylum-seekers - refugees", - "Migrants", - "Rights of the Child", - "Statelessness and the right to nationality" - ] - }, - { - "text": "Consider ratifying the Convention on the Rights of Persons with Disabilities and its Optional Protocol", - "values": [ - "Disabilities", - "International instruments" - ] - }, - { - "text": "Act on its commitment to dialogue and cooperation by timely submitting all treaty body reports, by accepting outstanding requests by special procedures to visit the country and by engaging actively with OHCHR to ensure compatibility of national legislation with its international treaty obligations", - "values": [ - "Special procedures", - "Technical assistance and cooperation", - "Treaty bodies" - ] - }, - { - "text": "Continue its efforts to reduce the prevalence of female genital mutilation in the country", - "values": [ - "Rights of the Child", - "Torture and other CID treatment", - "Women's rights" - ] - }, - { - "text": "Implement the recommendations of the April 2013 report by the NHRC on the Baga incident", - "values": [ - "Justice", - "National Human Rights Institution" - ] - }, - { - "text": "Continue efforts to promote and protect economic and social rights through development strategies to encourage investment and employment", - "values": [ - "ESC rights - general" - ] - }, - { - "text": "Ensure that the judiciary is independent and free of political interference, and combat corruption, irregularities and delays in the administration of justice", - "values": [ - "Corruption", - "Justice" - ] - }, - { - "text": "Adopt legislation at the national and provincial levels to protect human rights defenders and take effective measures to ensure its implementation. ", - "values": [ - "Human rights defenders" - ] - }, - { - "text": "Conclude the process for the adoption of the draft law that creates a national human rights institution in compliance with the Paris Principles ", - "values": [ - "National Human Rights Institution" - ] - }, - { - "text": "Ensure the full implementation of the Juvenile Justice Act", - "values": [ - "Justice", - "Rights of the Child" - ] - }, - { - "text": "Ratify the International Convention for the Protection of All Persons from Enforced Disappearance, the Convention against Discrimination in Education and also the Rome Statute", - "values": [ - "Enforced disappearances", - "International instruments", - "Justice", - "Right to education" - ] - }, - { - "text": "Strengthen the fight against racism and racial discrimination", - "values": [ - "Racial discrimination" - ] - }, - { - "text": "Strengthen cooperation with international human rights mechanisms, treaty bodies and special procedures", - "values": [ - "Special procedures", - "Treaty bodies" - ] - }, - { - "text": "Guarantee access for persons with disabilities to education, health care and employment on an equal footing and without discrimination", - "values": [ - "Disabilities", - "Labour", - "Right to education", - "Right to health" - ] - }, - { - "text": "Continue working on measures to enable women to have effective access to the justice system", - "values": [ - "Justice", - "Women's rights" - ] - }, - { - "text": "Continue the efforts directed towards combating trafficking in human beings", - "values": [ - "Trafficking" - ] - }, - { - "text": "Put in place temporary special measures to encourage acceleration of the achievement of substantive equality between women and men, particularly within the private employment sector ", - "values": [ - "Women's rights" - ] - }, - { - "text": "Accept outstanding requests from special mandate holders, including that of the Special Rapporteur on the independence of judges and lawyers, to visit Fiji", - "values": [ - "Justice", - "Special procedures" - ] - }, - { - "text": "Strengthen its steps for enhancing the rights of women and gender equality", - "values": [ - "Women's rights" - ] - }, - { - "text": "Promote legislation eradicating violence against women and against discrimination based on religious beliefs", - "values": [ - "Freedom of religion and belief", - "Racial discrimination", - "Women's rights" - ] - }, - { - "text": "Strengthen laws prohibiting religious and racial discrimination and criminalizing hate speech and incitement to religious and racial hatred", - "values": [ - "Freedom of religion and belief", - "Racial discrimination" - ] - }, - { - "text": "Consider the establishment of a de jure moratorium on death penalty with a view to abolishing capital punishment in national legislation.", - "values": [ - "Death penalty" - ] - }, - { - "text": "Continue with its efforts to enact the draft law on gender equality and Justice, which will provide a stronger legal foundation for gender responsive policies", - "values": [ - "Justice", - "Women's rights" - ] - }, - { - "text": "Adopt the measures necessary to ensure that its social programmes reach the most vulnerable groups of society", - "values": [ - "Minorities" - ] - }, - { - "text": "Introduce comprehensive anti-discrimination legislation that would protect the rights of all members of minority groups including LGBT persons", - "values": [ - "Minorities", - "Racial discrimination", - "Sexual Orientation and Gender Identity" - ] - }, - { - "text": "Consider expanding the policy of affirmative action to the coloured population", - "values": [ - "Other" - ] - }, - { - "text": "Expedite the process of eradicating poverty through targeted programmes and social inclusion policies.", - "values": [ - "Poverty" - ] - }, - { - "text": "Become a party to the Ottawa Convention on Landmines ", - "values": [ - "International humanitarian law", - "International instruments" - ] - }, - { - "text": "Eliminate the gender wage gap, and ensure an equal salary for men and women for the same work", - "values": [ - "Women's rights" - ] - }, - { - "text": "Further strengthen relations with the indigenous communities with a view to promoting and protecting their rights and assisting them in their development initiatives ", - "values": [ - "Indigenous peoples" - ] - }, - { - "text": "Promote a more effective policy aimed at integrating Roma on issues related to education, employment, housing and health, that will produce positive results", - "values": [ - "Development", - "Minorities", - "Right to education", - "Right to health", - "Right to housing" - ] - }, - { - "text": "Ratify the Convention on the Rights of Persons with Disabilities and the Convention on Torture and Other Cruel, Inhuman or Degrading Punishment or Treatment ", - "values": [ - "Disabilities", - "International instruments", - "Torture and other CID treatment" - ] - }, - { - "text": "Decriminalize homosexual conduct by reforming the penal code so that for the purposes of prosecution, gross indecency would not apply to private acts between consenting adults ", - "values": [ - "Sexual Orientation and Gender Identity" - ] - }, - { - "text": "Continue efforts to pass legislation to combat human trafficking in the form of sham marriages", - "values": [ - "Trafficking" - ] - }, - { - "text": "Intensify efforts to combat child labour", - "values": [ - "Labour", - "Rights of the Child" - ] - }, - { - "text": "Eliminate the forced labour of children, especially through the effective implementation of national legislation and international conventions ratified in this respect, and authorize the ILO to carry out monitoring of the cotton harvest ", - "values": [ - "International instruments", - "Labour" - ] - }, - { - "text": "Ensure, as a matter of urgency, that the national portion of the budget for the Extraordinary Courts is met ", - "values": [ - "Justice" - ] - }, - { - "text": "Strengthen its efforts to eliminate discrimination of and violence against women and girls including through implementation of laws, policies and programmes to this effect", - "values": [ - "Rights of the Child", - "Women's rights" - ] - }, - { - "text": "Continue measure to provide human rights trainings and capacity-building to civil servants and law-enforcement officials in line with the world programme for human Rights Education", - "values": [ - "Human rights education and training" - ] - }, - { - "text": "Investigate, prosecute and punish those responsible for acts of violence against lesbian, gay, bisexual, transgender and intersex persons as part of its efforts to combat stereotypes and bias against them", - "values": [ - "Sexual Orientation and Gender Identity" - ] - }, - { - "text": "Follow up on the initiatives whose aim is to improve the judiciary and to further train judges on human rights norms and the international jurisprudence regarding treaties ratified by Georgia ", - "values": [ - "Human rights education and training", - "International instruments", - "Justice" - ] - }, - { - "text": "Sign and ratify the international conventions and covenants in the field of human rights and allow women to contribute to the labour market, education, and political participation", - "values": [ - "International instruments", - "Women's rights" - ] - }, - { - "text": "Abolish the propiska system and adopt further legislative and other measures to ensure compliance of its legal system and practice with the protection of freedom of movement.", - "values": [ - "Freedom of movement", - "Justice" - ] - }, - { - "text": "Continue implementing effective actions to combat discrimination and guarantee indigenous peoples\u2019 rights, by improving access to public services, life expectancy, education, including comprehensive sexual education, infrastructure and salary", - "values": [ - "Indigenous peoples", - "Racial discrimination", - "Right to education", - "Right to health" - ] - }, - { - "text": "Bring its national legislation in accordance with all obligations under the Rome Statute, including the definition of crimes and general principles, and adopt provisions to enable cooperation with the International Criminal Court ", - "values": [ - "International instruments", - "Justice" - ] - }, - { - "text": "Reiterate its recommendation made during the UPR in 2009 calling for decriminalization of homosexuality in Cameroon ", - "values": [ - "Sexual Orientation and Gender Identity", - "UPR process" - ] - }, - { - "text": "Strengthen the legal framework to fight all crimes against children", - "values": [ - "Rights of the Child" - ] - }, - { - "text": "Continue to work to improve the country's human rights situation, including in northern Mali, in cooperation with the international community", - "values": [ - "General" - ] - }, - { - "text": "Consider extending a standing invitation to all special procedures of the Human Rights Council ", - "values": [ - "Special procedures" - ] - }, - { - "text": "Commute all death penalty sentences with a view to abolishing capital punishment", - "values": [ - "Death penalty" - ] - }, - { - "text": "Extend a standing invitation to the United Nations Special Procedures for human rights", - "values": [ - "Special procedures" - ] - }, - { - "text": "Take all necessary steps towards acceding to the Rome Statute of the International Criminal Court", - "values": [ - "International instruments", - "Justice" - ] - }, - { - "text": "Ensure that enforcement authorities comply with international human rights obligations in the treatment of migrants and asylum seekers, and expedite the judicial process to avoid prolonged detention of migrants and asylum seekers", - "values": [ - "Asylum-seekers - refugees", - "Detention", - "International instruments", - "Migrants" - ] - }, - { - "text": "Ensure that human rights education and training addresses also the rights of the child and women's rights in a comprehensive and systematic way", - "values": [ - "Human rights education and training", - "Rights of the Child", - "Women's rights" - ] - }, - { - "text": "Establish counselling services and shelters for victims of violence", - "values": [ - "Rights of the Child", - "Women's rights" - ] - }, - { - "text": "Work towards eliminating all forms of violence against women ", - "values": [ - "Women's rights" - ] - }, - { - "text": "Promote comprehensibly the increased protection of the rights of the child", - "values": [ - "Rights of the Child" - ] - }, - { - "text": "Continue the legal reform process in accordance with the provisions of the newly adopted Constitution", - "values": [ - "Justice" - ] - }, - { - "text": "As recommended by the Committee on the Rights of the Child, ensure that the law against trafficking of human being and sexual exploitation of children be better implemented and take better measures to protect girls engaged in domestic work from economic exploitation and sexual abuse ", - "values": [ - "Rights of the Child", - "Trafficking", - "Treaty bodies" - ] - }, - { - "text": "Prosecute perpetrators of crimes motivated by racial discrimination and xenophobia and encourage dialogue among communities in conflict", - "values": [ - "Racial discrimination" - ] - }, - { - "text": "Finalize the first national plan to combat trafficking in persons, and provide all necessary resources to ensure the successful implementation", - "values": [ - "Trafficking" - ] - }, - { - "text": "Increase the financial resources and the staff of the National Media Commission so that it can carry out its mandate, promoting and protecting in this way the freedom of the press", - "values": [ - "Freedom of the press" - ] - }, - { - "text": "Enhance efforts in requesting technical assistance to strengthen the function of the existing institutions to promote rights and freedoms ", - "values": [ - "Technical assistance and cooperation" - ] - }, - { - "text": "Adopt and implement effective measures in order to prevent the use of violence against demonstrators, in accordance with the Law on Peaceful Assembly, and enable all groups, including those expressing dissenting views, to have their rights to freedom of peaceful assembly and association fully restored ", - "values": [ - "Freedom of association and peaceful assembly" - ] - }, - { - "text": "Ensure that all migrants in detention have access to basic services and adequate living conditions", - "values": [ - "Detention", - "Migrants" - ] - }, - { - "text": "Emphasize and step up the fight against female genital mutilation, working together with local communities and educating girls and women about the negative consequences of this practice ", - "values": [ - "Human rights education and training", - "Rights of the Child", - "Torture and other CID treatment", - "Women's rights" - ] - }, - { - "text": "Take more concrete action to hold accountable those responsible of violence against women and remove obstacles faced by victims ", - "values": [ - "Women's rights" - ] - }, - { - "text": "Recognize the collective rights of indigenous peoples to their lands and resources, giving the matter priority when the issue of land rights is raised in Parliament as indicated in the Government's statement in October 2010 ", - "values": [ - "Indigenous peoples", - "Right to land" - ] - }, - { - "text": "Review and amend national legal and policies integration measures with a view to respect the cultural and religious backgrounds of migrant communities, in particular Arab and Muslim communities ", - "values": [ - "Freedom of religion and belief", - "Migrants" - ] - }, - { - "text": "Ratify the 2000 United Nations Trafficking in Persons Protocol", - "values": [ - "International instruments", - "Trafficking" - ] - }, - { - "text": "Adopt and implement legislation which prohibits law enforcement officials from engaging in ethnic profiling", - "values": [ - "Racial discrimination" - ] - }, - { - "text": "Redouble efforts to ensure decent living conditions for migrants and asylum seekers in the reception centres", - "values": [ - "Asylum-seekers - refugees", - "Migrants" - ] - }, - { - "text": "Repeal those provisions of the Criminal Code which unfairly limit freedom of expression, including articles 301, 318, 215 and 125, to bring the law in line with international standards on freedom of expression", - "values": [ - "Freedom of opinion and expression" - ] - }, - { - "text": "Maintain the moratorium on executions with a view to abolishing the death penalty and provide statistics, including sex and age, on persons sentenced to the death penalty or executed ", - "values": [ - "Death penalty" - ] - }, - { - "text": "Commit not only to removing the defence of reasonable chastisement but also to criminalizing corporal punishment with the concomitant pledges towards raising awareness and providing the necessary resource to support parents in adopting positive and alternative forms of discipline. ", - "values": [ - "Rights of the Child", - "Torture and other CID treatment" - ] - }, - { - "text": "Eliminate stoning as a form of punishment", - "values": [ - "Death penalty", - "Torture and other CID treatment" - ] - }, - { - "text": "Cease all forms of forced displacement, in accordance with the Guiding Principles on Internal Displacement of 1998 ", - "values": [ - "Internally displaced persons" - ] - }, - { - "text": "Adopt appropriate measures to disseminate widely and ensure full observation of General Assembly resolution 53-144.", - "values": [ - "General" - ] - }, - { - "text": "Implement all international resolutions, which emphasize the preservation of the character and the monuments of East Jerusalem and refrain from changing its legal status and threatening its sanctuaries and spiritual symbols", - "values": [ - "Freedom of religion and belief" - ] - }, - { - "text": "Ratify the Rome Statute of the International Criminal Court and implement it fully at the national level and accede to the Agreement on Privileges and Immunities of the Court ", - "values": [ - "International instruments", - "Justice" - ] - }, - { - "text": "Create a specialized detention centre for dangerous prisoners who suffer psychiatric conditions.", - "values": [ - "Detention" - ] - }, - { - "text": "Adopt measures conducive to the creation of a national human rights institution in accordance with the Paris Principles", - "values": [ - "National Human Rights Institution" - ] - }, - { - "text": "Remove undue restrictions on use of Internet and ensure that journalists can freely exercise their right to freedom of expression", - "values": [ - "Freedom of opinion and expression", - "Freedom of the press" - ] - }, - { - "text": "Ensure free birth registration and in this regard conduct relevant awareness-raising campaigns for the public and adopt efficient policies with a view to cover country's remote and rural areas ", - "values": [ - "Human rights education and training", - "Rights of the Child", - "Statelessness and the right to nationality" - ] - }, - { - "text": "Take all the measures necessary at the national level for the National Human Rights Institution to comply fully with the Paris Principles and be provided with the necessary financial and human resources to fully carry out its functions ", - "values": [ - "National Human Rights Institution" - ] - }, - { - "text": "Implement Security Council resolution 1325 (2000) and related resolutions on women, peace and security", - "values": [ - "Women's rights" - ] - }, - { - "text": "Introduce a clear definition of child pornography into national legislation ", - "values": [ - "Rights of the Child" - ] - }, - { - "text": "Continue with its literacy programmes", - "values": [ - "Right to education" - ] - }, - { - "text": "Strengthen the national framework to reduce all kinds of discrimination", - "values": [ - "Other" - ] - }, - { - "text": "Investigate and prosecute all persons found guilty of extrajudicial killings and attacks on human rights defenders ", - "values": [ - "Extrajudicial executions", - "Human rights defenders" - ] - }, - { - "text": "Ensure prompt ratification of CAT ", - "values": [ - "International instruments", - "Torture and other CID treatment" - ] - }, - { - "text": "Ratify the Optional Protocol to the Convention against Torture and Other Cruel, Inhuman or Degrading or Punishment in the near future and designating of an effective national preventive mechanism.", - "values": [ - "Detention", - "International instruments", - "Torture and other CID treatment" - ] - }, - { - "text": "Consider ratifying all core international human rights treaties to which it is not yet a party and align them to their national legal framework ", - "values": [ - "International instruments" - ] - }, - { - "text": "Put an end to arbitrary detention, practices of torture and methods use by security forces in public demonstrations. These are forms of limiting freedom of expression and trial those persons responsible in line with Mozambique's international human rights obligations", - "values": [ - "Detention", - "Freedom of association and peaceful assembly", - "Freedom of opinion and expression", - "Human rights violations by state agents", - "International instruments", - "Torture and other CID treatment" - ] - }, - { - "text": "Continue the efforts to fight against child malnutrition, particularly among indigenous people", - "values": [ - "Indigenous peoples", - "Right to food", - "Rights of the Child" - ] - }, - { - "text": "Invite and facilitate a visit by the Special Rapporteur on the independence of judges and lawyers and the Special Rapporteur on torture", - "values": [ - "Justice", - "Special procedures", - "Torture and other CID treatment" - ] - }, - { - "text": "Consider ratifying other core human rights treaties such as the International Covenant on Economic, Social and Cultural Rights and the International Covenant on Civil and Political Rights ", - "values": [ - "CP rights - general", - "ESC rights - general", - "International instruments" - ] - }, - { - "text": "Extend a standing invitation to all UN Human Rights Council special procedures", - "values": [ - "Special procedures" - ] - }, - { - "text": "Give favourable consideration to withdrawing the reservation on CRC and CEDAW.", - "values": [ - "International instruments", - "Rights of the Child", - "Statelessness and the right to nationality", - "Women's rights" - ] - }, - { - "text": "Consider abolishing the death penalty and ratifying the Rome Statute of the International Criminal Court, at its earliest convenience", - "values": [ - "Death penalty", - "International instruments", - "Justice" - ] - }, - { - "text": "Establish a formal moratorium on the death penalty with a view to ratifying the Second Optional Protocol to ICCPR", - "values": [ - "Death penalty", - "International instruments" - ] - }, - { - "text": "Invite to the country the Special Rapporteur on Contemporary Forms of Racism, the Special Rapporteur on the Human Rights of Migrants, and the Special Rapporteur on Torture", - "values": [ - "Migrants", - "Racial discrimination", - "Special procedures", - "Torture and other CID treatment" - ] - }, - { - "text": "Develop a national human rights action plan for better implementation and monitoring", - "values": [ - "General" - ] - }, - { - "text": "Positively consider adhering to the Convention related to the Status of Stateless Persons of 1954 and other instruments related to Stateless Persons ", - "values": [ - "International instruments", - "Statelessness and the right to nationality" - ] - }, - { - "text": "Allow the Special Rapporteur on the situation of human rights in Eritrea to visit the country, cooperate fully with her and give due consideration to the recommendations contained in her first report ", - "values": [ - "Special procedures" - ] - }, - { - "text": "Adopt the necessary measures to eradicate Female Genital Mutilation and to develop programs of awareness and education on its harmful effects ", - "values": [ - "Rights of the Child", - "Torture and other CID treatment", - "Women's rights" - ] - }, - { - "text": "Consider the possibility of eliminating the required parents' consent for HIV testing for minors under the age of 16.", - "values": [ - "HIV - Aids" - ] - }, - { - "text": "Prohibit by law corporal punishment of children in all settings, including at home", - "values": [ - "Rights of the Child", - "Torture and other CID treatment" - ] - }, - { - "text": "Take necessary steps to implement the commitment extended to special procedures by accepting pending visit requests", - "values": [ - "Special procedures" - ] - }, - { - "text": "Ratify the Optional Protocol to the Convention on the Rights of the Child on the sale of children, child prostitution and child pornography (CRC-OP-SC)", - "values": [ - "International instruments", - "Rights of the Child", - "Trafficking" - ] - }, - { - "text": "Continue efforts aimed at improving the access of persons with disabilities to education, vocational training and health care", - "values": [ - "Disabilities", - "Right to education", - "Right to health" - ] - }, - { - "text": "Continue efforts to facilitate a greater participation and representation of women in public offices and in higher levels of decision- making positions", - "values": [ - "Elections", - "Women's rights" - ] - }, - { - "text": "That the country visit by the Special Rapporteur on Torture is realized in the near future ", - "values": [ - "Special procedures", - "Torture and other CID treatment" - ] - }, - { - "text": "Amend existing legislation so that evidentiary requirements are made less strict and do not fall disproportionately on the victim, and so that the sentencing of sexual abusers is brought into line with the gravity of the crime committed ", - "values": [ - "Justice" - ] - }, - { - "text": "Strengthen the national mechanism on gender equality", - "values": [ - "Women's rights" - ] - }, - { - "text": "Continue to increase investment in education to endeavour to raise the level of education for the whole nation in order to meet the requirements for social and economic development ", - "values": [ - "Right to education" - ] - }, - { - "text": "Eradicate in law and in practice the racial and ethnic paradigm in State institutions and the use of ethnicity as a political tool, as noted by the Special Rapporteur on racism", - "values": [ - "Racial discrimination", - "Special procedures" - ] - }, - { - "text": "Increase involvement in the field of international cooperation to face the consequences of both international food and economic crises ", - "values": [ - "Development", - "Right to food" - ] - }, - { - "text": "Design long-term strategy and awareness-raising programmes to eliminate harmful practices such as domestic violence and early marriages in particular", - "values": [ - "Human rights education and training", - "Rights of the Child", - "Torture and other CID treatment", - "Women's rights" - ] - }, - { - "text": "The State is also committed to organizing workshops, in cooperation with specialized international organizations, focusing on spreading human rights principles in line with the international conventions ratified by the State.", - "values": [ - "Human rights education and training", - "International instruments" - ] - }, - { - "text": "Upgrade its existing national human rights monitoring mechanisms into a national human rights institution that meets the Paris Principles ", - "values": [ - "National Human Rights Institution" - ] - }, - { - "text": "Redouble efforts for the full realization of the "Education for All" policy", - "values": [ - "Right to education" - ] - }, - { - "text": "Take further steps to strengthen social, economic and educational support provided to school children from immigrant minorities ", - "values": [ - "Migrants", - "Minorities", - "Rights of the Child" - ] - }, - { - "text": "Continue implementing the Strategic National Plan to fight against HIV/AIDS and continue the actions aimed at improving the health service coverage ", - "values": [ - "HIV - Aids", - "Right to health" - ] - }, - { - "text": "Continue ongoing efforts to fully eradicate illiteracy ", - "values": [ - "Right to education" - ] - }, - { - "text": "Ratify the International Convention against the Recruitment, Use, Financing and Training of Mercenaries.", - "values": [ - "International instruments" - ] - }, - { - "text": "Consider ratifying the International Convention for the Protection of All Persons from Enforced Disappearance as well as the core international human rights instruments to which it is not yet a party", - "values": [ - "Enforced disappearances", - "International instruments" - ] - }, - { - "text": "Pass the long-awaited Children's Protection and Welfare Bill, and pass the necessary legislation to ensure that national legislation is in line with the Convention on the Rights of the Child ", - "values": [ - "International instruments", - "Rights of the Child" - ] - }, - { - "text": "Review its legislation that restricts the media freedoms, freedom of assembly and association, and bring them in conformity with international human rights law", - "values": [ - "Freedom of association and peaceful assembly", - "Freedom of the press", - "International instruments" - ] - }, - { - "text": "Take the measures necessary to ensure freedom of expression in accordance with article 19 of ICCPR and General Comment 34 of the Human Rights Committee", - "values": [ - "Freedom of opinion and expression", - "International instruments", - "Treaty bodies" - ] - }, - { - "text": "Ratify the Optional Protocol to the Convention against Torture (OPCAT) and engage in a consultation process with all relevant actors, including civil society, concerning the establishment and structure of a national preventive mechanism.", - "values": [ - "Civil society", - "Detention", - "International instruments", - "Torture and other CID treatment" - ] - }, - { - "text": "Continue to protect and promote the economic and social rights of minorities, in particular, migrant populations", - "values": [ - "ESC rights - general", - "Migrants", - "Minorities" - ] - }, - { - "text": "Consider adopting measures that would ensure that any law-regulations aimed at controlling irregular migration should not deny nor prevent migrants from accessing fundamental human rights, including access to education, health, care and effective redress for human rights violations", - "values": [ - "Migrants" - ] - }, - { - "text": "Guarantee the rights of migrants, particularly those that are in transit to European countries, women and unaccompanied children", - "values": [ - "Migrants", - "Rights of the Child", - "Women's rights" - ] - }, - { - "text": "Look into the need for concrete measures, on the basis of detailed statistical data, to reduce the duration of preventive detention ", - "values": [ - "Detention" - ] - }, - { - "text": "Strengthen the protection of ethnic and religious minorities and ensure that all abuses against them are duly investigated and the perpetrators are brought to justice also in the context of the current crisis", - "values": [ - "Freedom of religion and belief", - "Minorities" - ] - }, - { - "text": "Redouble its efforts to reduce unemployment and poverty, thereby ensuring that each and every Ghanaian can benefit from the fruits of the country's impressive economic growth", - "values": [ - "Development", - "Poverty" - ] - }, - { - "text": "Consider the ratification or adhesion to the Optional Protocol to the Convention on the Rights of the Child on a communications procedure", - "values": [ - "International instruments", - "Rights of the Child" - ] - }, - { - "text": "Continue efforts in promoting the rights of women and their participation in higher decision-making posts", - "values": [ - "Women's rights" - ] - }, - { - "text": "Raise the minimum age of those subject to military draft to 18", - "values": [ - "Rights of the Child" - ] - }, - { - "text": "Strengthen the elimination of all forms of violence against women by criminalizing domestic violence and marital rape", - "values": [ - "Rights of the Child", - "Women's rights" - ] - }, - { - "text": "Continue efforts to harmonize national legislation with international human rights norms", - "values": [ - "International instruments" - ] - }, - { - "text": "Ensure the promotion and protection of the rights of indigenous peoples by completing the official register of indigenous communities, improving the process of prior consultations in the context of extractive sector projects and the provision of adequate health care and reparations to indigenous communities affected by health and environmental damage caused by extractive industries", - "values": [ - "Business and human rights", - "Environment", - "Indigenous peoples", - "Right to health" - ] - }, - { - "text": "Ratify ILO Convention No. 189 on domestic workers as well as enact the Domestic Workers' Bill ", - "values": [ - "International instruments", - "Labour" - ] - }, - { - "text": "Continue to set up policies and programmes necessary to guarantee adequate housing at reasonable cost for all inhabitants, particularly people with limited income", - "values": [ - "Right to housing" - ] - }, - { - "text": "Promote human rights education and training", - "values": [ - "Human rights education and training" - ] - }, - { - "text": "Prosecute persons responsible for serious violations of human rights and ratify the Rome Statute", - "values": [ - "International instruments", - "Justice" - ] - }, - { - "text": "Take measures to protect and fulfil the rights of all women migrant workers and to ensure that they are not subjected to discriminatory practices.", - "values": [ - "Labour", - "Migrants", - "Women's rights" - ] - }, - { - "text": "Continue to work to improve conditions in its prisons, including through the implementation of the United Nations Body of Principles for the Protection of All Persons under Any Form of Detention and Imprisonment, and the United Nations Standard Minimum Rules for the Treatment of Prisoners ", - "values": [ - "Detention" - ] - }, - { - "text": "Adopt legislative and other measures aimed at including all erased persons, regardless of where they currently reside", - "values": [ - "Other", - "Statelessness and the right to nationality" - ] - }, - { - "text": "Make all possible efforts in order to guarantee compliance with the interdiction of slavery in the new constitution ", - "values": [ - "Other" - ] - }, - { - "text": "Promptly investigate and prosecute all allegations of torture and extrajudicial killings", - "values": [ - "Extrajudicial executions", - "Torture and other CID treatment" - ] - }, - { - "text": "Review the reform of the national justice system of early 2014, in particular with the aim of ensuring and enforcing the principle of universality of international human rights law", - "values": [ - "International instruments", - "Justice" - ] - }, - { - "text": "Enhance measures swiftly to address the issues of impunity, arbitrary arrests and detention, the lack of access to a fair trial and reliance on traditional courts, among others", - "values": [ - "Detention", - "Impunity", - "Justice" - ] - }, - { - "text": "Consider ratifying the International Convention for the Protection of All Persons from Enforced Disappearance.", - "values": [ - "Enforced disappearances", - "International instruments" - ] - }, - { - "text": "Share with other countries, in particular multicultural countries, its experiences in the strengthening of education", - "values": [ - "Right to education" - ] - }, - { - "text": "Consider taking all necessary steps to establish a de jure moratorium on executions with a view to fully abolishing the death penalty", - "values": [ - "Death penalty" - ] - }, - { - "text": "Enact legislation, which prohibits all corporal punishment of children in all settings, including as a sentence in the courts and ensure that positive and non-violent forms of discipline are promoted through awareness raising campaigns about the impact of corporal punishment on children ", - "values": [ - "Human rights education and training", - "Rights of the Child", - "Torture and other CID treatment" - ] - }, - { - "text": "Take all measures to ensure that free and fair elections are held as scheduled on 27 June and 18 July this year, guaranteeing all persons' right to participate in the Government of their country ", - "values": [ - "Elections" - ] - }, - { - "text": "Expedite the enactment of existing Bills that would impact on the enjoyment of women's rights", - "values": [ - "Women's rights" - ] - }, - { - "text": "Intensify efforts to seek necessary funding to address economic and social rights, in the wake of the Ebola crisis", - "values": [ - "ESC rights - general", - "Right to health" - ] - }, - { - "text": "Immediately declare an official moratorium on executions with a view to the ratification of the Second Optional Protocol to the International Covenant on Civil and Political Rights and the abolition of the death penalty", - "values": [ - "Death penalty", - "International instruments" - ] - }, - { - "text": "Continue to take measures ensuring poverty eradication and access to health and education services ", - "values": [ - "Poverty", - "Right to education", - "Right to health" - ] - }, - { - "text": "Take further steps to ensure practical realization of the improved national legislation, in particular in the areas of children's and women's rights protection, counter-trafficking, education and judiciary", - "values": [ - "Justice", - "Right to education", - "Rights of the Child", - "Trafficking", - "Women's rights" - ] - }, - { - "text": "Incorporate child sex tourism explicitly as a criminal offence in order to bring national legislation in conformity with the Optional Protocol to the Convention on the Rights of the Child on the sale of children, child prostitution and child pornography", - "values": [ - "International instruments", - "Rights of the Child", - "Trafficking" - ] - }, - { - "text": "Amend its domestic law to criminalize domestic violence ", - "values": [ - "Rights of the Child", - "Women's rights" - ] - }, - { - "text": "Continue efforts to introduce the teaching of the Amazigh language and culture", - "values": [ - "Indigenous peoples" - ] - }, - { - "text": "Not respond to any comment that is outside of Jordan's legal commitments and international principles agreed upon by consensus", - "values": [ - "International instruments" - ] - }, - { - "text": "Adopt the legislation explicitly prohibiting the corporal punishment of children in all settings, including home ", - "values": [ - "Rights of the Child", - "Torture and other CID treatment" - ] - }, - { - "text": "Work towards strengthening law enforcement efforts to effectively implement its anti-slavery law ", - "values": [ - "Other" - ] - }, - { - "text": "Ensure that the military or administrative detention meet the requirements of Rwandan law and international law, in particular as concerns the right to a fair trial", - "values": [ - "Detention", - "Justice" - ] - }, - { - "text": "Ensure effective participation of the Roma communities in the process of implementing their right to adequate housing.", - "values": [ - "Minorities" - ] - }, - { - "text": "Consider ratification of the Optional Protocols to the International Covenant on Economic, Social and Cultural Rights and to the Convention against Torture and Other Cruel, Inhuman or Degrading Treatment or Punishment ", - "values": [ - "Detention", - "ESC rights - general", - "International instruments", - "Torture and other CID treatment" - ] - }, - { - "text": "Continue to cooperate and strengthen its human rights dialogue with relevant international human rights mechanisms ", - "values": [ - "General" - ] - }, - { - "text": "Combat poverty and ensure the right to education for all, with the support of the international community.", - "values": [ - "Poverty", - "Right to education", - "Technical assistance and cooperation" - ] - }, - { - "text": "Continue combating violence against women and ensure the full enforcement of the criminal law", - "values": [ - "Justice", - "Women's rights" - ] - }, - { - "text": "Continue to improve the health-care services especially in conjunction to reducing the high mortality rate", - "values": [ - "Right to health" - ] - }, - { - "text": "Take immediate measures to ensure that the indigenous people of Australia have access to health services, education, and to full employment opportunities", - "values": [ - "Indigenous peoples", - "Labour", - "Right to education", - "Right to health" - ] - }, - { - "text": "Improve health care to further reduce child mortality", - "values": [ - "Right to health", - "Rights of the Child" - ] - }, - { - "text": "Establish a national action plan against racism, work for tolerance and preserve freedom of belief", - "values": [ - "Freedom of religion and belief", - "Racial discrimination" - ] - }, - { - "text": "Enforce and enhance relevant laws and regulations for the freedom of religion and other practices of minorities", - "values": [ - "Freedom of religion and belief", - "Minorities" - ] - }, - { - "text": "Strengthen its judicial system in order to ensure that most citizens have access to justice", - "values": [ - "Justice" - ] - }, - { - "text": "Consider expediting the adoption process of the Kenyan National Policy and Action Plan for human rights ", - "values": [ - "General" - ] - }, - { - "text": "Continue resisting attempts to enforce any values or standards beyond the universally agreed ones, continue exercising its sovereign right of implementing its laws and legislation in conformity with the universally agreed human rights standards and norms. ", - "values": [ - "Other" - ] - }, - { - "text": "Take measures to ensure that all persons, including Muslims, can freely exercise their right to freedom of religion and belief, without interference by the state and including the right to change their religion", - "values": [ - "Freedom of religion and belief" - ] - }, - { - "text": "Adopt targeted policies and programmes to address structural discrimination against indigenous peoples and people of African descent", - "values": [ - "Indigenous peoples", - "Minorities", - "Racial discrimination" - ] - }, - { - "text": "In the context of the tragic events relating to the discovery of the bodies of 11 young people in the area of Ocana, and cases known as false positives, expedite the designation of persons within all military units, to be responsible for promptly dealing with claims against any actions by units, or the individuals that compose them, which are contrary to fundamental rights.", - "values": [ - "Extrajudicial executions" - ] - }, - { - "text": "Reinforce respect for the rights to freedom of religion, freedom of conscience and free association", - "values": [ - "Freedom of association and peaceful assembly", - "Freedom of religion and belief" - ] - }, - { - "text": "Ratify the Optional Protocols to ICCPR, CEDAW and CAT", - "values": [ - "CP rights - general", - "Death penalty", - "Detention", - "International instruments", - "Torture and other CID treatment", - "Women's rights" - ] - }, - { - "text": "Pursue cooperation with the thematic procedures of the Council, based on the principles of objectivity, impartiality and non-politicisation ", - "values": [ - "Special procedures" - ] - }, - { - "text": "Allow United Nations human rights mechanisms and OHCHR to establish and reinforce their presence in the country in order to guarantee an independent monitoring of the human rights situation in Sri Lanka.", - "values": [ - "Technical assistance and cooperation" - ] - }, - { - "text": "Ratify the Agreement on the Privileges and Immunities of the International Criminal Court", - "values": [ - "International instruments", - "Justice" - ] - }, - { - "text": "Make more efforts to promote gender equality and the rights of persons with disabilities ", - "values": [ - "Disabilities", - "Women's rights" - ] - }, - { - "text": "Abolish any statutory limits on crimes by government officials, like torture, extrajudicial killings, and disappearances, both in respect to legal investigations as well as prosecutions", - "values": [ - "Enforced disappearances", - "Extrajudicial executions", - "Human rights violations by state agents", - "Torture and other CID treatment" - ] - }, - { - "text": "Ensure the principle of equality and non-discrimination while guaranteeing the enjoyment of the right to health ", - "values": [ - "Right to health" - ] - }, - { - "text": "Ensure accountability for hate crimes", - "values": [ - "Racial discrimination" - ] - }, - { - "text": "The Lao PDR will continue to exchange lessons and experiences with the international community in order to enhance cooperation and technical assistance to promote and protect human rights.", - "values": [ - "Technical assistance and cooperation" - ] - }, - { - "text": "Continue to guarantee the rights of religious and ethnic minorities ", - "values": [ - "Freedom of religion and belief", - "Minorities" - ] - }, - { - "text": "Consider the possibility to ratify the: Convention against Torture, International Convention on the Protection of the Rights of All Migrant Workers and Members of Their Families, International Convention for the Protection of All Persons from Enforced Disappearance", - "values": [ - "Enforced disappearances", - "International instruments", - "Labour", - "Migrants", - "Torture and other CID treatment" - ] - }, - { - "text": "Improve detention conditions, including basic sanitation and access to water, food and medical care", - "values": [ - "Detention", - "Right to water and sanitation" - ] - }, - { - "text": "Work towards a further reduction of the level of unemployment, including through the design and implementation of programmes of vocational training and retraining of its citizens and job creation ", - "values": [ - "Development" - ] - }, - { - "text": "Adopt legislation and strengthen action plans addressing the serious phenomenon of femicide and gender-based violence ", - "values": [ - "Women's rights" - ] - }, - { - "text": "Enhance its efforts aimed at improving the situation of the rights of the child, in particular efforts to eliminate early and forced marriage and child trafficking", - "values": [ - "Rights of the Child", - "Trafficking", - "Women's rights" - ] - }, - { - "text": "Continue promoting the bill on enforced disappearances", - "values": [ - "Enforced disappearances" - ] - }, - { - "text": "Continue engagement with the international community for ensuring access of international human rights monitoring mechanisms to the regions of Georgia, namely Abkhazia and Tskhinvali region/South Ossetia", - "values": [ - "Technical assistance and cooperation" - ] - }, - { - "text": "Continue addressing the HIV/AIDS impact on women and children, in particular the mother-to-child transmission ", - "values": [ - "HIV - Aids", - "Rights of the Child", - "Women's rights" - ] - }, - { - "text": "Accede to and fully align its national legislation with the Rome Statute, including by incorporating provisions to cooperate promptly and fully with the International Criminal Court", - "values": [ - "International instruments", - "Justice" - ] - }, - { - "text": "Strengthen its legislation, notably its criminal legislation, relating to the punishment of racist acts and take concrete and effective measures with a view to combat all forms of discrimination and to prohibit as well as sanction in a more severe manner such behaviours", - "values": [ - "Racial discrimination" - ] - }, - { - "text": "Revise the electoral law for autonomous regions in order to involve all citizens in decision-making and the development of their autonomous regions", - "values": [ - "Elections" - ] - }, - { - "text": "Offer redress for the many enforced disappearances and summary executions", - "values": [ - "Enforced disappearances", - "Extrajudicial executions" - ] - }, - { - "text": "That the Ministry of Education fully implement the National Plan of Action for Inclusive Education for Roma children in school", - "values": [ - "Minorities", - "Right to education" - ] - }, - { - "text": "Envisage the establishment of the national human rights institution in compliance with the Paris Principles ", - "values": [ - "National Human Rights Institution" - ] - }, - { - "text": "Re-adopt the moratorium on death penalty with a view of its total elimination.", - "values": [ - "Death penalty" - ] - }, - { - "text": "Take measures to combat violence and discrimination against indigenous peoples", - "values": [ - "Indigenous peoples", - "Racial discrimination" - ] - }, - { - "text": "Immediately release political prisoners, including former President Nasheed, and conduct an effective and thorough review of the investigation and legal proceedings to ensure that international obligations related to fair trials and the rule of law have been fully respected", - "values": [ - "Detention", - "Freedom of opinion and expression", - "Justice" - ] - }, - { - "text": "Enact anti-discrimination legislation to protect human rights and to ensure equal treatment of people living with HIV and groups vulnerable to HIV, consistent with United Nations International Guidelines on HIV/AIDS and Human Rights", - "values": [ - "HIV - Aids" - ] - }, - { - "text": "Release all media workers and human rights defenders arrested and detained for their human rights activities and allow the reopening of closed media outlets", - "values": [ - "Detention", - "Freedom of the press", - "Human rights defenders" - ] - }, - { - "text": "Ensure access to fundamental human rights for all individuals residing in Argentina, including foreign nationals, regardless of their immigration status", - "values": [ - "Migrants" - ] - }, - { - "text": "Ratify the Second Optional Protocol to the International Covenant on Civil and Political Rights and the International Convention for the Protection of All Persons from Enforced Disappearance", - "values": [ - "Death penalty", - "Enforced disappearances", - "International instruments" - ] - }, - { - "text": "Promptly adopt and amend when necessary the Law on Anti-Discrimination, already prepared with civil society, to comply with international standards and ensure its due implementation in close cooperation with all stakeholders ", - "values": [ - "Civil society" - ] - }, - { - "text": "Take concrete measures in order to combat impunity and to prevent extrajudicial killings and torture", - "values": [ - "Extrajudicial executions", - "Impunity", - "Torture and other CID treatment" - ] - }, - { - "text": "Take steps to improve prison conditions and, particularly, ensure that adults and minor prisoners are separated at all times", - "values": [ - "Detention", - "Rights of the Child" - ] - }, - { - "text": "Accede to the International Convention on the Protection of the Rights of All Migrant Workers and Members of their Families ", - "values": [ - "International instruments", - "Labour", - "Migrants" - ] - }, - { - "text": "Accelerate the effective implementation of the Convention on the Rights of Persons with Disabilities and its harmonization at the national level", - "values": [ - "Disabilities", - "International instruments" - ] - }, - { - "text": "Take steps to reduce school wastage rate, having in mind that today 25 percent of a given class did not complete primary school", - "values": [ - "Right to education" - ] - }, - { - "text": "Ensure that Iraq's legislation guarantees de jure and de facto non discrimination against women", - "values": [ - "Women's rights" - ] - }, - { - "text": "Follow-up on the implementation of guidelines to strengthen the promotion and protection of children's rights", - "values": [ - "Rights of the Child" - ] - }, - { - "text": "Take further efforts to promote and protect women's rights, including measures to prevent and combat trafficking in women ", - "values": [ - "Trafficking", - "Women's rights" - ] - }, - { - "text": "Strengthen the protection of lesbian, gay, bisexual, transgender and intersex persons against stigmatization, harassment and discrimination by promoting tolerance for sexual diversity and different gender identities and by clearly classifying acts of violence against these persons as hate crimes", - "values": [ - "Sexual Orientation and Gender Identity" - ] - }, - { - "text": "Take steps to enhance the treatment of children born in prison, as well as pregnant women prisoners ", - "values": [ - "Detention", - "Rights of the Child", - "Women's rights" - ] - }, - { - "text": "Continue to develop the institutional and legal framework in respect of human rights ", - "values": [ - "General" - ] - }, - { - "text": "Take further urgent steps to address the concerns raised during the session about the recruitment and treatment of foreign workers ", - "values": [ - "Labour", - "Migrants" - ] - }, - { - "text": "Continue energizing existing mechanisms to enhance the addressing of human rights challenges.", - "values": [ - "General" - ] - }, - { - "text": "Prohibit incitement to racial hatred, including take effective measures to prevent hate speech against ethnic and religious minorities during election campaigns and in the media", - "values": [ - "Freedom of religion and belief", - "Minorities", - "Racial discrimination" - ] - }, - { - "text": "Take steps to ensure that basic human rights principles are respected within all elements in its pluralistic legal system", - "values": [ - "General" - ] - }, - { - "text": "Take measures to ensure that persons with disabilities are recognized as a vulnerable group and can enjoy their economic, cultural and social rights", - "values": [ - "Disabilities", - "ESC rights - general" - ] - }, - { - "text": "Continue its combat against terrorism to restore security and stability to the Syrian Arab Republic and pave the way for the return of displaced persons to their homes", - "values": [ - "Internally displaced persons", - "Public security" - ] - }, - { - "text": "Adopt effective legal measures to combat human trafficking, and swiftly prosecute perpetrators of such crimes ", - "values": [ - "Trafficking" - ] - }, - { - "text": "Continue its efforts to combat human trafficking at the national and international levels through, inter alia, coordination and cooperation with interested Governments and international organizations ", - "values": [ - "Trafficking" - ] - }, - { - "text": "Continue its efforts in combating corruption", - "values": [ - "Corruption" - ] - }, - { - "text": "Ensure full access to primary health care, education and judicial recourse to all persons present on its territory irrespective of their legal status", - "values": [ - "Justice", - "Right to education", - "Right to health" - ] - }, - { - "text": "Make it a priority to ensure gender equality in all spheres of life, and that Guinea-Bissau formulates a comprehensive strategy to eliminate negative attitudes and practices that affect women and girls", - "values": [ - "Rights of the Child", - "Women's rights" - ] - }, - { - "text": "Intensify efforts to improve the status of women and girls, including enhanced reproductive health measures, the fight against sexual and gender-based violence and harmful traditional practices, the domestication of the CEDAW Convention and to include women in decision-making at all levels", - "values": [ - "International instruments", - "Right to health", - "Rights of the Child", - "Torture and other CID treatment", - "Women's rights" - ] - }, - { - "text": "Strengthen the domestic legal framework to prevent and punish human rights violations committed by transnational corporations and other enterprises", - "values": [ - "Business and human rights" - ] - }, - { - "text": "Continue to amend the 2009 Media Law and undertake independent and credible investigation and prosecution in cases of clear harassment ", - "values": [ - "Freedom of the press" - ] - }, - { - "text": "Continue to adapt the legislation to ensure the full implementation of the Convention on the Elimination of All Forms of Discrimination against Women and, in particular, expressly prohibit and criminalize female genital mutilation ", - "values": [ - "International instruments", - "Rights of the Child", - "Torture and other CID treatment", - "Women's rights" - ] - }, - { - "text": "Finalise the process of abolishing the death penalty with a view to ratifying the Second Optional Protocol of the International Covenant on Civil and Political Rights", - "values": [ - "Death penalty", - "International instruments" - ] - }, - { - "text": "Strengthen the justice system by establishing legislative and administrative measures to safeguard the independence of judges and lawyers, as well as by adopting measures to ensure and promote the access of all people, particularly rural women, to justice, legal assistance, psychological support and reparation", - "values": [ - "Justice", - "Women's rights" - ] - }, - { - "text": "Strive to reduce hunger and poverty and guarantee the provision of basic necessities to vulnerable groups", - "values": [ - "Poverty", - "Right to food" - ] - }, - { - "text": "Complete the review of prison conditions in order to increase the quality of the prison management system", - "values": [ - "Detention" - ] - }, - { - "text": "Undertake all possible efforts to combat racism, racial discrimination, xenophobia and other forms of related intolerance", - "values": [ - "Racial discrimination" - ] - }, - { - "text": "Establish a National Human Rights Institute accredited by the International Coordinating Committee of National Institutions for the Promotion and Protection of Human Rights (ICC) and take the necessary measures to warrant its independence by granting it the required statutory powers and budgetary resources", - "values": [ - "National Human Rights Institution" - ] - }, - { - "text": "Continue to implement measures to promote infrastructure development and capacity-building, especially in the field of health and medical services", - "values": [ - "Right to health" - ] - }, - { - "text": "Condemn categorically and unambiguously all forms of hate speech, investigate specific cases, prosecute, as appropriate, those responsible and ensure that victims of hate crimes receive the necessary support, whether legal or psychological", - "values": [ - "Racial discrimination" - ] - }, - { - "text": "Adhere to the principles set out in the International Convention on the Protection of the Rights of All Migrant Workers and Members of Their Families, and to favourably consider its possible ratification, following which the country would be party to all major international human rights treaties", - "values": [ - "International instruments", - "Labour", - "Migrants" - ] - }, - { - "text": "Remove from its law and practice all civil and criminal provisions constituting discrimination against women and girls", - "values": [ - "Rights of the Child", - "Women's rights" - ] - }, - { - "text": "Increase efforts to fight against gender violence by fully implementing the "National Gender Policy" and the national action plan against gender violence 2012-2016, and by ensuring that perpetrators are brought to justice", - "values": [ - "Women's rights" - ] - }, - { - "text": "Introduce legislation prohibiting discrimination on grounds of sexual orientation and take measures to ensure that it is fully and effectively implemented ", - "values": [ - "Sexual Orientation and Gender Identity" - ] - }, - { - "text": "End compulsory drug treatment and reform mandatory reporting requirements to allow for anti-discriminatory access to health care", - "values": [ - "Right to health" - ] - }, - { - "text": "Revise its death penalty legislation so that it complies with ICCPR and particularly to ensure that the death penalty does not apply to minors ", - "values": [ - "Death penalty", - "International instruments", - "Rights of the Child" - ] - }, - { - "text": "Continue strengthening a system of data collection with a view to determine the extent of manifestations of racism and direct and indirect racial discrimination.", - "values": [ - "Racial discrimination" - ] - }, - { - "text": "Continue its efforts to overcome stereotypical attitudes regarding the roles of men and women and existing gender inequality", - "values": [ - "Women's rights" - ] - }, - { - "text": "Continue its efforts to advance the role of women in society and support women in acceding to high-level decision-making posts.", - "values": [ - "Women's rights" - ] - }, - { - "text": "Continue to adopt measures to ensure gender equality and step up the role of women in social and political life in the country", - "values": [ - "Women's rights" - ] - }, - { - "text": "Ratify ICCPR-OP2", - "values": [ - "Death penalty", - "International instruments" - ] - }, - { - "text": "Work towards guaranteeing a favourable environment for the activities of journalists, human rights defenders and civil society", - "values": [ - "Civil society", - "Freedom of the press", - "Human rights defenders" - ] - }, - { - "text": "Adopt specific legislation on domestic violence, in particular which ensures (i) such violence constitutes a criminal offence, (ii) victims have access to means of redress, and (iii) perpetrators are held accountable ", - "values": [ - "Rights of the Child", - "Women's rights" - ] - }, - { - "text": "Draw up a national five-year plan for the promotion and advancement of human rights", - "values": [ - "General" - ] - }, - { - "text": "Consider establishing a national human rights institution in line with the Paris Principles", - "values": [ - "National Human Rights Institution" - ] - }, - { - "text": "Put in place legislation which formally criminalizes violence against women", - "values": [ - "Women's rights" - ] - }, - { - "text": "Implement the July 2013 recommendations of the Committee on the Elimination of Discrimination against Women, focusing on the recommendations under paragraph 10 and, inter alia, investigate violations of women's rights committed by Congolese security forces and armed groups and ensure access to justice for all women affected by sexual violence during the conflict ", - "values": [ - "Human rights violations by state agents", - "Treaty bodies", - "Women's rights" - ] - }, - { - "text": "Stop violating international human rights and humanitarian law", - "values": [ - "International humanitarian law" - ] - }, - { - "text": "Adopt a national strategy and plan of action to ensure access to adequate and acceptable education for Roma children", - "values": [ - "Minorities", - "Right to education", - "Rights of the Child" - ] - }, - { - "text": "Ensure that laws prohibiting children from participating in hazardous occupations or activities are precise and enforced", - "values": [ - "Labour", - "Rights of the Child" - ] - }, - { - "text": "Lower the stringent requirements for proof of domestic violence so that existing law criminalizing domestic violence can be more readily applied in practice. ", - "values": [ - "Rights of the Child", - "Women's rights" - ] - }, - { - "text": "Complete the process of constitutional recognition of the indigenous populations with the adequate consultations mentioned in its presentation.", - "values": [ - "Indigenous peoples" - ] - }, - { - "text": "Harmonize the civil status between men and women, particularly regarding the rights of inheritance and legal capacity to use, enjoy, and own, property, and set up policies aimed at eliminating the pay gap between men and women", - "values": [ - "Women's rights" - ] - }, - { - "text": "Advance the ratification of the pending international instruments, including the International Convention on the Protection of the Rights of All Migrant Workers and Members of Their Families, in accordance with the recommendations of the Committee on the Elimination of Racial Discrimination", - "values": [ - "International instruments", - "Labour", - "Migrants", - "Treaty bodies" - ] - }, - { - "text": "Take measures to ensure coordination of activities of national and international human rights organisations working on different aspects of human rights in Afghanistan", - "values": [ - "Civil society" - ] - }, - { - "text": "Re-establish the moratorium on executions", - "values": [ - "Death penalty" - ] - }, - { - "text": "Fast-track the finalization of the National Strategy framework aimed at responding to and preventing child, early and forced marriage", - "values": [ - "Rights of the Child", - "Women's rights" - ] - }, - { - "text": "Amend its law on nationality to enable Lebanese women to confer their nationality to their children", - "values": [ - "Women's rights" - ] - }, - { - "text": "Strengthen the working conditions and involvement of civil society organizations ", - "values": [ - "Civil society" - ] - }, - { - "text": "Ensure equal rights to all workers in the country in accordance with international standards", - "values": [ - "Labour" - ] - }, - { - "text": "Deploy further efforts in order to prevent and punish violence, including rape, against women and children and pay special attention to the most vulnerable families living in a poor environment", - "values": [ - "Poverty", - "Rights of the Child", - "Women's rights" - ] - }, - { - "text": "Take all measures necessary to ensure the implementation of the Plan of Action, including the provision on birth registration (also late birth registration) free of charge, effective implementation of the free and compulsory primary education policy and access to basic health-care services ", - "values": [ - "Right to education", - "Right to health", - "Rights of the Child", - "Statelessness and the right to nationality" - ] - }, - { - "text": "Permanently abolish the death penalty ", - "values": [ - "Death penalty" - ] - }, - { - "text": "Ratify the ICESCR without any further delays ", - "values": [ - "ESC rights - general", - "International instruments" - ] - }, - { - "text": "Continue to take measures to eradicate poverty and ensure a better access to education and health services", - "values": [ - "Poverty", - "Right to education", - "Right to health" - ] - }, - { - "text": "Step up efforts to combat discrimination against national minorities, including Roma, and provide the victims of discrimination with access to effective legal protection", - "values": [ - "Minorities", - "Racial discrimination" - ] - }, - { - "text": "Prohibit by law the corporal punishment of children, including in the family ", - "values": [ - "Rights of the Child", - "Torture and other CID treatment" - ] - }, - { - "text": "Continue to ensure access to quality education for all Ecuadorians through continuous improvements in the training of educators", - "values": [ - "Right to education" - ] - }, - { - "text": "Continue efforts to strengthen and protect human rights in accordance with international standards, in keeping with the cultural values of the Emirati people.", - "values": [ - "General" - ] - }, - { - "text": "Work together with the other European States to improve the conditions and treatment given to asylum seekers and refugees", - "values": [ - "Asylum-seekers - refugees" - ] - }, - { - "text": "Continue efforts to enhance legislations and measures to further address the situation of religious minorities, including blasphemy laws, force conversion and discrimination against non-Muslim minorities", - "values": [ - "Freedom of religion and belief", - "Minorities" - ] - }, - { - "text": "Continue to strengthen its domestic legal framework to enhance the rule of law and increase the capacity of its law enforcement agencies ", - "values": [ - "Justice" - ] - }, - { - "text": "Continue to focus on reducing poverty and curbing the spread of AIDS in its efforts to improve the protection of human rights ", - "values": [ - "HIV - Aids", - "Poverty" - ] - }, - { - "text": "Strengthen its efforts in establishing the National Human Rights Institution, in line with the Paris Principles and with full participation of the civil society", - "values": [ - "Civil society", - "National Human Rights Institution" - ] - }, - { - "text": "Take necessary measures to preserve the ancestral lands of indigenous peoples", - "values": [ - "Indigenous peoples", - "Right to land" - ] - }, - { - "text": "Consolidate its efforts in the implementation of its national priorities, including in the spheres of education, health and social services", - "values": [ - "ESC rights - general", - "Right to education", - "Right to health" - ] - }, - { - "text": "Continue with its poverty reduction strategy and speed its economic and social development so it can better promote and protect the various human rights of its people", - "values": [ - "Development", - "Poverty" - ] - }, - { - "text": "Review its legislation and practice with a view to ensuring effective access to asylum procedures, upholding the principle of non-refoulement, and ensure the protection of all human rights of asylum seekers upon entry and also during the procedure, including by minimizing their detention, ensuring access to legal counsel and providing in particular all persons in detention with all procedural safeguards in compliance with international standards.", - "values": [ - "Asylum-seekers - refugees" - ] - }, - { - "text": "Pass legislation domestically to prohibit the passing of life imprisonment without the possibility of parole on offenders who were children at the time of offending, and ratify without any further delay the Convention on the Rights of the Child", - "values": [ - "Detention", - "International instruments", - "Rights of the Child" - ] - }, - { - "text": "Establish, with the support of the United Nations, a dual machinery, including a special tribunal and a truth and reconciliation commission, and grant both bodies great independence, not restricting the powers of the future tribunal to the decisions of the commission.", - "values": [ - "Justice" - ] - }, - { - "text": "End the impunity of members of the Malaysian Volunteer Corps (RELA) for acts of violence, corruption, and the abuse of power against immigrants by amending the relevant RELA regulation", - "values": [ - "Corruption", - "Human rights violations by state agents", - "Impunity", - "Migrants" - ] - }, - { - "text": "Abolish imprisonment and establish a non-military service for conscientious objectors", - "values": [ - "Freedom of religion and belief" - ] - }, - { - "text": "Consider increasing the resources of social protection, in particular for families suffering from poverty", - "values": [ - "Poverty" - ] - }, - { - "text": "Ensure that all Vanuatu people are able to access health services ", - "values": [ - "Right to health" - ] - }, - { - "text": "Take effective measures to ensure that the condition of persons in detention are in conformity with relevant international standards ", - "values": [ - "Detention" - ] - }, - { - "text": "Promote social dialogue and ensure that the conclusions of the dialogue are implemented", - "values": [ - "Other" - ] - }, - { - "text": "Take measures to effectively combat discrimination based on sexual orientation or gender identity", - "values": [ - "Sexual Orientation and Gender Identity" - ] - }, - { - "text": "Adopt specific measures to guarantee an environment that promotes freedom of expression", - "values": [ - "Freedom of opinion and expression" - ] - }, - { - "text": "Adopt a comprehensive national policy aimed at the fight against child prostitution and the trafficking of children ", - "values": [ - "Rights of the Child", - "Trafficking" - ] - }, - { - "text": "Introduce legal and other measures to reduce maternal mortality and morbidity stemming from unsafe abortions", - "values": [ - "Right to health", - "Women's rights" - ] - }, - { - "text": "Adopt concrete measures to implement the National Gender Plan and the National Action Plan on United Nations Security Council resolutions 1325 (2000) and 1820 (2008) and consider the opportunity of adopting a national strategy to combat violence against women ", - "values": [ - "Women's rights" - ] - }, - { - "text": "Lift the Public Emergency Regulations and to restore an environment in which all of Fiji's citizens can meet freely and express political opinions without fear or retribution", - "values": [ - "Freedom of opinion and expression" - ] - }, - { - "text": "Continue to attach importance to environmental protection and achieve harmonious development of people and nature", - "values": [ - "Environment" - ] - }, - { - "text": "Urgently address child, early and forced marriage by putting in place legislation that clarifies the legal age for marriage, honouring commitments made in the country's last UPR to prevent and eliminate the practice", - "values": [ - "Rights of the Child", - "UPR process", - "Women's rights" - ] - }, - { - "text": "Strengthen the capacities for identifying victims of trafficking ", - "values": [ - "Trafficking" - ] - }, - { - "text": "Promote health and sanitary practices for the safety of mothers and their children, and uphold continually the inherent right to life", - "values": [ - "Right to health", - "Rights of the Child", - "Women's rights" - ] - }, - { - "text": "Strengthen its national efforts in the area of combating trafficking in persons, especially women and children, including through human rights education and training for law enforcement officials", - "values": [ - "Human rights education and training", - "Rights of the Child", - "Trafficking", - "Women's rights" - ] - }, - { - "text": "Implement fully the Prohibition of Female Genital Mutilation Act 2011 and the review of the policy on female genital mutilation", - "values": [ - "Rights of the Child", - "Torture and other CID treatment", - "Women's rights" - ] - }, - { - "text": "Continue strengthening its legislation to eliminate all provisions that undermine freedom of expression", - "values": [ - "Freedom of opinion and expression" - ] - }, - { - "text": "Continue its efforts in implementing its comprehensive policies to ensure quality education for all children", - "values": [ - "Right to education", - "Rights of the Child" - ] - }, - { - "text": "Withdraw the amendments to the Penal Code that introduce the death penalty and maintain the current de facto moratorium ", - "values": [ - "Death penalty" - ] - }, - { - "text": "Immediately halt the practice of enforced disappearance, arbitrary arrest and detention, and the systemic use of torture, and meet its obligations as a State party to the Convention against Torture", - "values": [ - "Detention", - "Enforced disappearances", - "International instruments", - "Torture and other CID treatment" - ] - }, - { - "text": "Continue efforts to protect workers\u2019 rights to safe and healthy working conditions", - "values": [ - "Labour", - "Right to health" - ] - }, - { - "text": "Reform the nationality law to give women the capacity to acquire, retain and transfer citizenship on an equal basis with men and to bring the law into compliance with international human rights standards", - "values": [ - "Statelessness and the right to nationality", - "Women's rights" - ] - }, - { - "text": "Continue strengthening its excellent programmes for social protection, working for the achievement of welfare and the best possible standard of living for its people", - "values": [ - "ESC rights - general" - ] - }, - { - "text": "Not resort to abusive pretrial detention and ensure that persons arrested or detained are promptly brought to trial in accordance with the guarantees contained in the International Covenant on Civil and Political Rights", - "values": [ - "Detention", - "International instruments" - ] - }, - { - "text": "Ensure that all surveillance policies and measures comply with international human rights law, particularly the right to privacy, regardless of the nationality or location of those affected, including through the development of effective safeguards against abuses", - "values": [ - "International instruments", - "Privacy" - ] - }, - { - "text": "Continue its efforts towards universal access to education, including the provision of free schooling at all levels", - "values": [ - "Right to education" - ] - }, - { - "text": "Develop a strategy to reduce prison overcrowding and improve conditions in line with the United Nations Standard Minimum Rules for the Treatment of Prisoners", - "values": [ - "Detention" - ] - }, - { - "text": "Back efforts to counter malnutrition with structural strategies which focus on the causes of poverty and hunger", - "values": [ - "Poverty", - "Right to food" - ] - }, - { - "text": "Maintain the commitment to increasingly support the rights of persons with disabilities", - "values": [ - "Disabilities" - ] - }, - { - "text": "Review media laws to align them with international human rights standards on freedom of expression", - "values": [ - "Freedom of opinion and expression", - "International instruments" - ] - }, - { - "text": "Take steps to enable accession to OP-CAT", - "values": [ - "Detention", - "International instruments", - "Torture and other CID treatment" - ] - }, - { - "text": "Take appropriate measures, taking into consideration its international obligations, to prevent the marriage of minors", - "values": [ - "International instruments", - "Rights of the Child" - ] - }, - { - "text": "Strengthen the effective implementation of measures undertaken to combat trafficking, and protect victims of trafficking ", - "values": [ - "Trafficking" - ] - }, - { - "text": "Consider the possibility of ratifying the International Convention for the Protection of All Persons from Enforced Disappearance, the Optional Protocol to the Convention against Torture and Other Cruel, Inhuman or Degrading Treatment or Punishment, and the Rome Statue of the International Criminal Court ", - "values": [ - "Detention", - "Enforced disappearances", - "International instruments", - "Justice", - "Torture and other CID treatment" - ] - }, - { - "text": "Undertake a public consultation on the complete abolition of the death penalty", - "values": [ - "Death penalty" - ] - }, - { - "text": "That the emergency legislation under the state of emergency, which is the root cause to many human rights problems in Egypt, be repealed, and that future legislation be elaborated based on the enjoyment of human rights", - "values": [ - "Public security" - ] - }, - { - "text": "Strengthen its current and planned measures to ensure respect for the rights of vulnerable groups ", - "values": [ - "Minorities" - ] - }, - { - "text": "Commit to full transparency on the combination of medicines used during executions by injection", - "values": [ - "Death penalty" - ] - }, - { - "text": "Fully implement the National Strategy for the Integration of the Roma to avoid discrimination against them and to increase their opportunity for education and employment", - "values": [ - "Labour", - "Minorities", - "Racial discrimination", - "Right to education" - ] - }, - { - "text": "Allocate the resources necessary for the full implementation of the "Zero Tolerance Campaign against Gender Based Violence, Including Human Trafficking", and ensure engagement at the highest political level in the campaign to highlight the unacceptability of violence against women and address the attitudes and stereotypes that perpetuate discriminatory practices that are harmful and violent toward women ", - "values": [ - "Torture and other CID treatment", - "Women's rights" - ] - }, - { - "text": "Take additional steps to reduce infant mortality ", - "values": [ - "Right to health", - "Rights of the Child" - ] - }, - { - "text": "Consider ratifying ILO Convention Domestic Workers Convention, 2011 (No.189) ", - "values": [ - "International instruments", - "Labour" - ] - }, - { - "text": "Immediately reinstates the moratorium on death penalty", - "values": [ - "Death penalty" - ] - }, - { - "text": "Make further efforts to improve the penitentiary system ", - "values": [ - "Detention" - ] - }, - { - "text": "Ensure the independent, impartial, and effective functioning of the National Human Rights Commission in line with the Paris Principles ", - "values": [ - "National Human Rights Institution" - ] - }, - { - "text": "Take appropriate measures to fight against so-called acts of popular justice", - "values": [ - "Justice" - ] - }, - { - "text": "Continue the positive developments related to the elimination of discrimination based on sexual orientation and recognize same-sex unions at the national level", - "values": [ - "Sexual Orientation and Gender Identity" - ] - }, - { - "text": "Enforce the judicial system and the penitentiary system with a view to eliminating the deplorable conditions of prisoners and police abuse ", - "values": [ - "Detention", - "Human rights violations by state agents", - "Justice" - ] - }, - { - "text": "Work together with humanitarian and development actors to improve the living conditions and safety of IDPs, and strengthen the protection of women and girls from rape and domestic violence ", - "values": [ - "Internally displaced persons", - "Rights of the Child", - "Women's rights" - ] - }, - { - "text": "Take steps to eliminate traditional cultural practices that discriminate against women", - "values": [ - "Women's rights" - ] - }, - { - "text": "Build on its success and invest further to ensure that religious minorities can freely exercise their rights and freedoms in all spheres of life", - "values": [ - "Freedom of religion and belief", - "Minorities" - ] - }, - { - "text": "Establish mechanisms, such as additional training and guidelines for police forces, aimed at preventing security forces from using force in any excessive or unjustified manner", - "values": [ - "Human rights education and training", - "Human rights violations by state agents" - ] - }, - { - "text": "Allow the international community meaningful and confidential access to Lao Hmong returnees from Thailand ", - "values": [ - "Asylum-seekers - refugees", - "Indigenous peoples" - ] - }, - { - "text": "Pay special attention to protection of children of persons in detention or prison ", - "values": [ - "Detention", - "Rights of the Child" - ] - }, - { - "text": "Continue the existing strengthening of the legal and institutional framework to combat racial discrimination and prejudice ", - "values": [ - "Racial discrimination" - ] - }, - { - "text": "Take further measures to combat marginalization and discrimination against Roma", - "values": [ - "Minorities", - "Racial discrimination" - ] - }, - { - "text": "Ratify the Second Optional Protocol to the International Covenant on Civil and Political Rights, aiming at the abolition of the death penalty.", - "values": [ - "Death penalty", - "International instruments" - ] - }, - { - "text": "Enact a law criminalizing domestic violence and providing specific penalties for cases of domestic violence", - "values": [ - "Rights of the Child", - "Women's rights" - ] - }, - { - "text": "Continue its efforts to ensure equality between men and women regarding inheritance and property rights", - "values": [ - "Women's rights" - ] - }, - { - "text": "Eliminate detention in penitentiary establishments of asylum seekers and refugees ", - "values": [ - "Asylum-seekers - refugees", - "Detention" - ] - }, - { - "text": "Continue to make progress in the institutional consolidation of the mechanisms responsible for protecting and promoting the rights of persons with disabilities ", - "values": [ - "Disabilities" - ] - }, - { - "text": "Ratify the International Convention on the Rights of Migrant Workers and Members of their Family, based on the facts that the national report indicates in paragraph 98 that it is currently under examination", - "values": [ - "International instruments", - "Labour", - "Migrants" - ] - }, - { - "text": "Continue its efforts to strengthen the Malawi Human Rights Commission's independence", - "values": [ - "National Human Rights Institution" - ] - }, - { - "text": "Implement the Action Plan of the National Human Rights Roadmap", - "values": [ - "General" - ] - }, - { - "text": "Adopt and implement efficient measures to combat the persistence of trafficking and sexual exploitation ", - "values": [ - "Trafficking" - ] - }, - { - "text": "Malaysia reaffirms its commitment to continue cooperating with the Council's Special Procedures including by accepting official visits.", - "values": [ - "Special procedures" - ] - }, - { - "text": "Adopt a legal instrument to protect the rights of the indigenous population especially in cases of land disputes and mining development", - "values": [ - "Business and human rights", - "Indigenous peoples", - "Right to land" - ] - }, - { - "text": "Continue efforts to promote the enrolment of girls in all levels of education", - "values": [ - "Right to education", - "Rights of the Child", - "Women's rights" - ] - }, - { - "text": "Continue to establish centres for the reconciliation of families ", - "values": [ - "Other" - ] - }, - { - "text": "Expedite prosecution of cases of violence and intimidation of the media, impose penalties for government officials convicted of these offences and publicly demonstrate support for freedom of expression by denouncing violence against and intimidation of the media in Peru.", - "values": [ - "Freedom of opinion and expression", - "Freedom of the press" - ] - }, - { - "text": "Continue implementing the LLRC recommendations through the Action Plan", - "values": [ - "Justice" - ] - }, - { - "text": "Implement a zero-tolerance policy on sexual and gender-based violence and ensure the prosecution of all perpetrators of violence against women, combined with rehabilitation and support for victims", - "values": [ - "Women's rights" - ] - }, - { - "text": "Ensure equal access to education for indigenous peoples, AfroBolivians and other disadvantaged communities and groups", - "values": [ - "Indigenous peoples", - "Minorities", - "Right to education" - ] - }, - { - "text": "Amend the provisions of the Crime and Penalty Law, the Election and Referendum Law, the Labour Code and the Prison Law which are in contradiction to its international obligations under CEDAW and take concrete measures to improve the social, economic and political participation of women.", - "values": [ - "ESC rights - general", - "International instruments", - "Women's rights" - ] - }, - { - "text": "Take the necessary measures to ensure that the Constitution guarantees the same protection to all inhabitants of the country, without distinction based on their sexual orientation or identity ", - "values": [ - "Sexual Orientation and Gender Identity" - ] - }, - { - "text": "Consider acceding to ICERD, OP-CRC-SC and CRPD", - "values": [ - "Disabilities", - "International instruments", - "Racial discrimination", - "Rights of the Child", - "Trafficking" - ] - }, - { - "text": "Remove its reservation to article 16 of CEDAW concerning the equality of men and women in all matters relating to marriage and family relations, and adjust its domestic framework accordingly ", - "values": [ - "International instruments", - "Women's rights" - ] - }, - { - "text": "Continue the programmes related to poverty reduction and continue the efforts to create a stronger system of social protection ", - "values": [ - "ESC rights - general", - "Poverty" - ] - }, - { - "text": "Continue supporting the United Nations humanitarian funds", - "values": [ - "Development" - ] - }, - { - "text": "Take further steps to eliminate female genital mutilation", - "values": [ - "Rights of the Child", - "Torture and other CID treatment", - "Women's rights" - ] - }, - { - "text": "Take further steps to prevent discrimination on the grounds of gender identity and sexual orientation and to raise awareness on its consequences", - "values": [ - "Sexual Orientation and Gender Identity" - ] - }, - { - "text": "Take measures for the prevention of torture and other cruel, inhuman and degrading treatment. ", - "values": [ - "Torture and other CID treatment" - ] - }, - { - "text": "Strengthen measures to prevent and reduce the prevalence of HIV/AIDS", - "values": [ - "HIV - Aids" - ] - }, - { - "text": "Take steps to bring domestic law and practice into line with existing international human rights standards in relation to freedom of expression, including media freedom", - "values": [ - "Freedom of opinion and expression", - "Freedom of the press", - "International instruments" - ] - }, - { - "text": "Adopt measures for the greater inclusion of the Kweyol community and other non-English speaking linguistic minorities into the social and political life of the country through specific education and training programmes ", - "values": [ - "Minorities" - ] - }, - { - "text": "Give strong priority, as part of the process of judicial reform, to the work of the Law Reform Commission on strengthening the traditional local courts in relation to human rights and constitutional guarantees ", - "values": [ - "Justice" - ] - }, - { - "text": "Continue strengthening the institutional capacity of promotion and protection of human rights", - "values": [ - "General" - ] - }, - { - "text": "Follow-up on the implementation of recommendations of human rights mechanisms ", - "values": [ - "General" - ] - }, - { - "text": "Share its experience with others in the field of human development and poverty reduction", - "values": [ - "Development", - "Poverty", - "Technical assistance and cooperation" - ] - }, - { - "text": "Take the necessary steps to ratify the International Convention on the Protection of the Rights of All Migrant Workers and Members of Their Families", - "values": [ - "International instruments", - "Labour", - "Migrants" - ] - }, - { - "text": "Harmonize the South African legislation to ensure that the minimum age for marriage is established at 18 years for both boys and girls", - "values": [ - "Rights of the Child" - ] - }, - { - "text": "Create conditions for an early ratification of the International Covenant on Civil and Political Rights (ICCPR)", - "values": [ - "CP rights - general", - "International instruments" - ] - }, - { - "text": "Implement the Human Rights Committee's March 2015 recommendations on gender-based violence", - "values": [ - "Women's rights" - ] - }, - { - "text": "Take the necessary measures to ensure that human rights standards, not only European but also international, are incorporated into Austrian law ", - "values": [ - "International instruments" - ] - }, - { - "text": "Establish a moratorium on the death penalty as an interim measure before its abolition and the implementation by the Syrian Arab Republic of its human rights obligations, including the core international human rights treaties", - "values": [ - "Death penalty", - "International instruments" - ] - }, - { - "text": "Continue efforts to ensure that clear, independent and effective complaints mechanisms are in place for individuals' complaints concerning mistreatment by security and law enforcement authorities", - "values": [ - "Human rights violations by state agents", - "Justice" - ] - }, - { - "text": "Continue negotiations to reach agreement on pending issues such as border and natural resources ", - "values": [ - "Other" - ] - }, - { - "text": "Adopt measures as a matter of urgency to put an end to arbitrary detention, torture and illegal centres of detention, ensure due oversight regarding the legality of detentions, and ensure the effectiveness of judicial remedies against such practices", - "values": [ - "Detention", - "Torture and other CID treatment" - ] - }, - { - "text": "Take all necessary measures to avoid collective and arbitrary punishments of presumed rebels' collaborators, put an end to the abuses committed by security forces and to the practice of enforced disappearances, particularly of minorities and journalists ", - "values": [ - "Detention", - "Enforced disappearances", - "Freedom of the press", - "Human rights violations by state agents", - "Minorities" - ] - }, - { - "text": "Continue to implement the 1995 Programme of Measures for Assisting the Roma, and to introduce annually reviewed targets to measure progress", - "values": [ - "Minorities" - ] - }, - { - "text": "Step up efforts to effectively implement national strategies for gender equality", - "values": [ - "Women's rights" - ] - }, - { - "text": "Further ensure effective implementation of anti-trafficking legislation ", - "values": [ - "Trafficking" - ] - }, - { - "text": "Establish an immediate official moratorium on the use of the death penalty with a view to abolishing it ", - "values": [ - "Death penalty" - ] - }, - { - "text": "Take steps to bring about changes in attitudes with a view to eliminating patriarchal attitudes and stereotypes regarding the roles of women and men in the family and society, including through awareness-raising and public education campaigns ", - "values": [ - "Human rights education and training", - "Women's rights" - ] - }, - { - "text": "Pursue particular efforts to spread awareness of human rights and disseminate its principles among its citizens", - "values": [ - "Human rights education and training" - ] - }, - { - "text": "Sign and ratify the second Optional Protocol to the International Covenant on Civil and Political Rights ", - "values": [ - "Death penalty", - "International instruments" - ] - }, - { - "text": "Take all necessary steps to become a State party to the following treaties: the International Convention on the Rights of All Migrant Workers and Members of their Families, the Convention against Torture and Other Cruel, Inhuman or Degrading Treatment or Punishment, and the International Convention for the Protection of All persons from Enforced Disappearance ", - "values": [ - "Enforced disappearances", - "International instruments", - "Labour", - "Migrants", - "Torture and other CID treatment" - ] - }, - { - "text": "Investigate and hold accountable state security agents and members of the police and army who have committed human rights abuses as well as ensure adequate compensation for victims ", - "values": [ - "Human rights violations by state agents" - ] - }, - { - "text": "Intensify efforts towards strengthening inter-confessional harmony and a culture of human rights in the country", - "values": [ - "Freedom of religion and belief", - "Human rights education and training" - ] - }, - { - "text": "Ratify the International Convention for the Protection of All Persons from Enforced Disappearance and OP-CEDAW", - "values": [ - "Enforced disappearances", - "International instruments", - "Women's rights" - ] - }, - { - "text": "Consider including a module on human rights education and training in the education system and also in the training programmes of the members of the police force and the administrators of justice ", - "values": [ - "Human rights education and training", - "Right to education" - ] - }, - { - "text": "Maintain the moratorium on the death penalty with a view to its abolition", - "values": [ - "Death penalty" - ] - }, - { - "text": "Adopt a standing invitation to human rights special procedures ", - "values": [ - "Special procedures" - ] - }, - { - "text": "Continue developing its national human rights institution in accordance with the Paris Principles", - "values": [ - "National Human Rights Institution" - ] - }, - { - "text": "Investigate and prosecute all allegations of torture carried out by government correctional services or security forces ", - "values": [ - "Human rights violations by state agents", - "Torture and other CID treatment" - ] - }, - { - "text": "Support the previous interventions about the abolition of the capital punishment in Japan.", - "values": [ - "Death penalty" - ] - }, - { - "text": "Continue to address issues pertaining to IDPs, in line with the relevant state programmes", - "values": [ - "Internally displaced persons" - ] - }, - { - "text": "Abolish the death penalty completely and ratify the ICCPR-OP 2", - "values": [ - "Death penalty", - "International instruments" - ] - }, - { - "text": "With respect to follow-up to the universal periodic review, Niger intends to take the following measures: the organization of a national workshop to report back on the conduct of the review, the preparation of an internal assessment of follow-up, the drafting and submission of a midterm report to the Human Rights Council on the implementation of the universal periodic review recommendations, and the drafting of a human rights action plan by the inter-ministerial committee. As with the reparation of the universal periodic review, interested stakeholders (the National Commission on Human Rights and Fundamental Freedoms and civil society) will be involved in this process.", - "values": [ - "Civil society", - "National Human Rights Institution", - "UPR process" - ] - }, - { - "text": "Promptly take effective measures to safeguard the rights of refugees and asylum-seekers, including not to let other countries violate the rights of refugees and asylum-seekers in the territory of Nauru ", - "values": [ - "Asylum-seekers - refugees" - ] - }, - { - "text": "Continue with its adoption of relevant normative legal acts aimed at upholding the constitutional rights and liberties of the citizens of Azerbaijan, as well as the establishment of control measures for their efficient realization ", - "values": [ - "Justice" - ] - }, - { - "text": "Ensure that all women have easy access to good quality health services, taking into account cultural differences ", - "values": [ - "Right to health", - "Women's rights" - ] - }, - { - "text": "Consider including in its next universal periodic review report information on measures it has taken to analyse potential risk factors of atrocity crimes, including through utilization of the Framework of Analysis for Atrocity Crimes", - "values": [ - "UPR process" - ] - }, - { - "text": "Continue its policies on improving the rights of the child ", - "values": [ - "Rights of the Child" - ] - }, - { - "text": "Take additional steps for civic education and promote human rights awareness and ensure access to justice for indigenous groups", - "values": [ - "Human rights education and training", - "Indigenous peoples" - ] - }, - { - "text": "Provide further assistance to women victims of violence, in line with the relevant recommendations of the Committee on the Elimination of Discrimination against Women ", - "values": [ - "International instruments", - "Women's rights" - ] - }, - { - "text": "Continue to strengthen economic, social and cultural rights with a view to improving living conditions for the population", - "values": [ - "ESC rights - general" - ] - }, - { - "text": "Continue its measures to eliminate discrimination and increase its efforts to tackle HIV infection by ensuring equal access to treatment and support", - "values": [ - "HIV - Aids" - ] - }, - { - "text": "Work to promote freedom of expression in line with international human rights principles, including by repealing criminal defamation laws", - "values": [ - "Freedom of opinion and expression", - "International instruments" - ] - }, - { - "text": "Punish perpetrators of abuse and police brutality, which are increasingly alarming and constitute irrefutable acts of increasing racism and racial discrimination, particularly against African Americans, Latinos and women", - "values": [ - "Human rights violations by state agents", - "Minorities", - "Racial discrimination", - "Women's rights" - ] - }, - { - "text": "Further its endeavors with regard to the smooth and productive activity of the National Commission for Human Rights within the country", - "values": [ - "National Human Rights Institution" - ] - }, - { - "text": "Continue intensifying the efforts aimed at combatting trafficking in person and guarantee the protection of victims", - "values": [ - "Trafficking" - ] - }, - { - "text": "Continue its efforts to strengthening the rights of children, especially those concerning juvenile justice and courts competent for minors ", - "values": [ - "Justice", - "Rights of the Child" - ] - }, - { - "text": "Repeal all legislation giving rise to discrimination against people on grounds of their sexual orientation or gender identity and refrain from reintroducing the Anti-Homosexuality Act, annulled by the Supreme Court in 2014", - "values": [ - "Sexual Orientation and Gender Identity" - ] - }, - { - "text": "Take the necessary measures to guarantee the right to schooling for all children", - "values": [ - "Right to education", - "Rights of the Child" - ] - }, - { - "text": "Continue the process of modernization of the civil registry and identification of persons and the efforts to register and provide documents to the persons living in camps and to Haitians living abroad, seek support from friendly governments and international agencies, such as the Office of the United Nations High Commissioner for Refugees, as appropriate", - "values": [ - "Asylum-seekers - refugees", - "Statelessness and the right to nationality", - "Technical assistance and cooperation" - ] - }, - { - "text": "Maintain the moratorium on the implementation of the death penalty as a step towards its definitive abolition ", - "values": [ - "Death penalty" - ] - }, - { - "text": "Work with OHCHR to prepare a common core document as a way to streamline and reduce the burden of treaty reporting ", - "values": [ - "Technical assistance and cooperation", - "Treaty bodies" - ] - }, - { - "text": "Take measures to ensure the protection of the rights of victims of domestic violence and spousal rape ", - "values": [ - "Rights of the Child", - "Women's rights" - ] - }, - { - "text": "Guarantee adequate protection of workers through the effective implementation of legislative and administrative labour laws.", - "values": [ - "Labour" - ] - }, - { - "text": "Intensify the efforts and the measures taken to protect women rights in an effective way which corresponds with the culture of the society", - "values": [ - "Women's rights" - ] - }, - { - "text": "Use public awareness-raising campaigns to prevent discrimination, if they have not yet been implemented.", - "values": [ - "Human rights education and training" - ] - }, - { - "text": "Ratify following international legal instruments, respectively: (i) the International Covenant on Economic, Social and Cultural Rights and its Optional Protocol (ii) the Convention against Torture and its Optional Protocol, and finally, the three Optional Protocols to the Convention on the Rights of the Child", - "values": [ - "Detention", - "ESC rights - general", - "International instruments", - "Rights of the Child", - "Torture and other CID treatment" - ] - }, - { - "text": "Continue strengthening measures aimed at addressing domestic violence, with special focus on the programmes being developed to consolidate the mechanisms to protect women and children ", - "values": [ - "Rights of the Child", - "Women's rights" - ] - }, - { - "text": "Ratify-consider ratifying the Rome Statute of the International Criminal Court.", - "values": [ - "International instruments", - "Justice" - ] - }, - { - "text": "Establish a legal framework and a national commission of inquiry on missing persons, and ratify the International Convention for the Protection of All Persons from Enforced Disappearance", - "values": [ - "Enforced disappearances", - "International instruments" - ] - }, - { - "text": "Take further effective measures to ensure ethnic and religious harmony in the country", - "values": [ - "Freedom of religion and belief", - "Minorities" - ] - }, - { - "text": "Repeal all provisions criminalizing sexual activity between consenting adults", - "values": [ - "Sexual Orientation and Gender Identity" - ] - }, - { - "text": "Continue to adopt appropriate measures to prosecute and punish perpetrators of trafficking in human beings and develop effective systems for the timely prevention of sexual exploitation and trafficking in children ", - "values": [ - "Rights of the Child", - "Trafficking" - ] - }, - { - "text": "Accelerate the implementation of the NHRAP, adopted in 2013 ", - "values": [ - "General" - ] - }, - { - "text": "Safeguard the right to freedom of opinion and expression and the freedom of movement for political opponents and journalists", - "values": [ - "Freedom of association and peaceful assembly", - "Freedom of opinion and expression", - "Freedom of the press" - ] - }, - { - "text": "Ratify the Rome Statute of the International Criminal Court", - "values": [ - "International instruments", - "Justice" - ] - }, - { - "text": "Abide by its obligations under the Second Optional Protocol to the International Covenant on Civil and Political Rights", - "values": [ - "Death penalty", - "International instruments" - ] - }, - { - "text": "Strengthen the monitoring and evaluation efforts of women's empowerment and child protection through development of appropriate monitoring mechanisms", - "values": [ - "Rights of the Child", - "Women's rights" - ] - }, - { - "text": "Take further steps to address discrimination against women and vulnerable groups, including children, persons belonging to minorities and indigenous people.", - "values": [ - "Indigenous peoples", - "Minorities", - "Rights of the Child", - "Women's rights" - ] - }, - { - "text": "Continue the constructive cooperation with the human rights treaty bodies", - "values": [ - "Treaty bodies" - ] - }, - { - "text": "Ensure that all investigations into complaints related to torture and other ill-treatments are carried out promptly, impartially and thoroughly", - "values": [ - "Torture and other CID treatment" - ] - }, - { - "text": "Consider enacting specific legislation to prohibit racial discrimination ", - "values": [ - "Racial discrimination" - ] - }, - { - "text": "Intensify efforts to combat discrimination and intolerance, especially towards Muslims, migrants and people of African descent and encourage senior State officials and politicians to take clear positions against racist and xenophobic political discourse", - "values": [ - "Freedom of religion and belief", - "Migrants", - "Minorities", - "Racial discrimination" - ] - }, - { - "text": "Invite the Special Rapporteur on violence against women, and develop, in consultation with civil society, a comprehensive plan of action to address sexual violence ", - "values": [ - "Civil society", - "Special procedures", - "Women's rights" - ] - }, - { - "text": "Combat the phenomenon of early and forced marriage by amending the relevant legislation accordingly", - "values": [ - "Rights of the Child", - "Women's rights" - ] - }, - { - "text": "Continue consolidating its policy of integral attention to victims and family members of human rights violations, in keeping with international standards.", - "values": [ - "Justice" - ] - }, - { - "text": "Take concrete legal and practical measures to combat incitement to religious hatred and intolerance", - "values": [ - "Freedom of religion and belief", - "Racial discrimination" - ] - }, - { - "text": "Invite selected human rights special procedures with mandates of particular interest to Cape Verde to visit the country and make recommendations.", - "values": [ - "Special procedures" - ] - }, - { - "text": "Abolish and amend all laws that encourage and forced, early and temporary marriages of girls as young as 9, and that allow marriage between adoptive parents and their children", - "values": [ - "Rights of the Child", - "Women's rights" - ] - }, - { - "text": "Continue cooperating with the European Union EUJUST LEX Mission for the training of staff which is of great importance for consolidating the rule of law and strengthening judicial, prisons and police structures. In this context, expand the public recognition and awareness of the Mission and disseminate its objectives and results to the public", - "values": [ - "Justice" - ] - }, - { - "text": "Continue to strengthen measures to ensure independence of the Office of the Human Rights Advocate ", - "values": [ - "National Human Rights Institution" - ] - }, - { - "text": "Take all necessary measures to improve court proceedings to guarantee the right of detainees to a fair trial within a reasonable time", - "values": [ - "Detention" - ] - }, - { - "text": "Domesticate the Convention on the Elimination of All Forms of Discrimination against Women and give women a visible and inclusive role as envisaged by the treaty", - "values": [ - "International instruments", - "Women's rights" - ] - }, - { - "text": "Step up the actions for the fight against poverty, in particular in rural areas ", - "values": [ - "Poverty" - ] - }, - { - "text": "Further strengthen the protection of journalists, human rights defenders and individuals to ensure their rights to freedom of opinion and expression. It is crucial that crimes against media professionals do not go unpunished", - "values": [ - "Freedom of opinion and expression", - "Freedom of the press", - "Human rights defenders" - ] - }, - { - "text": "Strengthen both the Mechanism for the Protection of Human Rights Defenders and Journalists as well as the Office of the Special Prosecutor for Crimes Against Freedom of Expression", - "values": [ - "Freedom of opinion and expression", - "Freedom of the press", - "Human rights defenders" - ] - }, - { - "text": "Adopt a comprehensive policy to address the root causes of child trafficking", - "values": [ - "Rights of the Child", - "Trafficking" - ] - }, - { - "text": "Halt immediately the unjustified arms race and bring to justice those responsible for all war crimes and massacres against unarmed civilians, women, children as well as acts of torture carried-out in prisons such as Abu Ghraib, Bagram and Guantanamo ", - "values": [ - "Other" - ] - }, - { - "text": "Further analyse the causes of the significantly lower wages women earn and continue to implement strategies to address the issue ", - "values": [ - "Women's rights" - ] - }, - { - "text": "Amend the Civil Code regarding defamation to be in line with international standards on the right to freedoms of expression and opinion", - "values": [ - "Freedom of opinion and expression" - ] - }, - { - "text": "Establish free and compulsory primary education and ratify the Convention on the Rights of the Child and its Optional Protocols ", - "values": [ - "International instruments", - "Rights of the Child" - ] - }, - { - "text": "Proceed with the implementation of strategies and policies to support human rights infrastructures and to achieve further progress in promoting a culture of respect for human rights", - "values": [ - "General" - ] - }, - { - "text": "Continue the current policies for the promotion and protection of women's rights in accordance with human rights guarantees included in the new 2014 Constitution", - "values": [ - "Women's rights" - ] - }, - { - "text": "Ratify and domesticate International Convention on the Protection of the Rights of All Migrant Workers and Members of Their Families", - "values": [ - "International instruments", - "Labour", - "Migrants" - ] - }, - { - "text": "Complete the procedure for establishing the independent Higher Commission for Human Rights.", - "values": [ - "National Human Rights Institution" - ] - }, - { - "text": "Repeal existing regional laws banning homosexual propaganda ", - "values": [ - "Sexual Orientation and Gender Identity" - ] - }, - { - "text": "Expedite the establishment of its National Preventive Mechanism, in keeping with its obligations under the Optional Protocol to the United Nations Convention against Torture", - "values": [ - "Detention", - "International instruments", - "Torture and other CID treatment" - ] - }, - { - "text": "Continue its efforts to promote greater prosperity and improve the welfare of the population, notably through progressive education and health policies", - "values": [ - "Right to education", - "Right to health" - ] - }, - { - "text": "Incorporate the World Programme on Human Rights Education and Training, particularly its second step, to its national programmes ", - "values": [ - "Human rights education and training" - ] - }, - { - "text": "Step up its cooperation with special procedures' mandate holders by responding positively to the visit request of the Special Rapporteur on the rights to freedom of peaceful assembly and association, and facilitating, in a timely manner, a visit by the Special Rapporteur on torture ", - "values": [ - "Special procedures", - "Torture and other CID treatment" - ] - }, - { - "text": "Fulfil the voluntary pledge to establish a follow-up committee to study all recommendations submitted during the current universal periodic review process ", - "values": [ - "UPR process" - ] - }, - { - "text": "Issue an open and standing invitation to all special procedures, particularly to the Special Rapporteur on Torture and Other Cruel, Inhuman or Degrading Punishment or Treatment", - "values": [ - "Special procedures", - "Torture and other CID treatment" - ] - }, - { - "text": "Legislative measures be adopted to decriminalize consensual sexual relations between adults of the same sex including a provision on the prohibition of discrimination on the basis of sexual orientation or on gender identity", - "values": [ - "Sexual Orientation and Gender Identity" - ] - }, - { - "text": "Ensure that cases of alleged violence against, and wrongful imprisonment of members of the media are fully investigated", - "values": [ - "Freedom of the press" - ] - }, - { - "text": "Adopt measures that will enable migrants and their children, including irregular migrants, to access social services other than public health care and school education ", - "values": [ - "Migrants", - "Right to education", - "Right to health", - "Rights of the Child" - ] - }, - { - "text": "Align all articles of the Penal Code and other laws with international standards, particularly with regard to freedom of expression ", - "values": [ - "Freedom of opinion and expression" - ] - }, - { - "text": "Amend the Criminal Code to criminalize all forms of sexual abuse to children", - "values": [ - "Rights of the Child" - ] - }, - { - "text": "That any sanctions for violations of freedom of assembly are proportionate and do not create undue obstacles to freedom of assembly ", - "values": [ - "Freedom of association and peaceful assembly" - ] - }, - { - "text": "Explicitly prohibit discrimination on the grounds of sexual orientation, which is not included in the Law on the Prevention of and Protection against Discrimination", - "values": [ - "Sexual Orientation and Gender Identity" - ] - }, - { - "text": "Repeal the legal provision that designates the husband as the administrator of marital property", - "values": [ - "Women's rights" - ] - }, - { - "text": "Ratify the Optional Protocol to ICESCR", - "values": [ - "ESC rights - general", - "International instruments" - ] - }, - { - "text": "Provide protection to the family as the natural and the fundamental unit of the society", - "values": [ - "Other" - ] - }, - { - "text": "Continue to advance in the regional equal opportunities plans, as specific measures aimed at comprehensively meeting the needs of women, and redouble its efforts to increase their participation in all spheres of national live", - "values": [ - "Women's rights" - ] - }, - { - "text": "Take all necessary measures to prevent children from living on the streets and protecting them against child labour and other risks they are exposed to ", - "values": [ - "Rights of the Child" - ] - }, - { - "text": "Further improve its birth registration system and ensure the issuance of birth certificates to all children born on its territory", - "values": [ - "Rights of the Child", - "Statelessness and the right to nationality" - ] - }, - { - "text": "Strengthen the Women's Affairs Department located within the Ministry of Labour and Home Affairs by providing it with authority, decision-making power, and human and financial resources", - "values": [ - "Women's rights" - ] - }, - { - "text": "Ratify-accede to CAT-OP.", - "values": [ - "International instruments", - "Torture and other CID treatment" - ] - }, - { - "text": "Intensify efforts to ratify the Convention against Torture and Other Cruel, Inhuman or Degrading Treatment or Punishment with a view to having ratified it when the Marshall Islands meets the Human Rights Council for its third universal periodic review", - "values": [ - "International instruments", - "Torture and other CID treatment", - "UPR process" - ] - }, - { - "text": "Amend and review all legislation and policies, including the Same-Sex Marriage Bill, with a view to decriminalize LGBTI persons", - "values": [ - "Sexual Orientation and Gender Identity" - ] - }, - { - "text": "Continue the implementation of a more concrete system of social protection through the initiatives listed in the national report, and call on the international community to support those national efforts ", - "values": [ - "ESC rights - general", - "Technical assistance and cooperation" - ] - }, - { - "text": "Consider implementing, as appropriate, the recommendations of the Office of the United Nations High Commissioner for Refugees UNHCR, human rights treaty bodies and special procedures with respect to asylumseekers and irregular immigrants, especially children ", - "values": [ - "Asylum-seekers - refugees", - "Migrants", - "Rights of the Child", - "Special procedures", - "Treaty bodies" - ] - }, - { - "text": "Improve significantly the respect of the right to due process, in accordance with article 14 of the International Covenant on Civil and Political Rights", - "values": [ - "International instruments", - "Justice" - ] - }, - { - "text": "Take the necessary measures to ratify the Optional Protocol to the Convention against Torture", - "values": [ - "Detention", - "International instruments", - "Torture and other CID treatment" - ] - }, - { - "text": "Ensure that discriminatory laws are amended or repealed, adopt a comprehensive strategy to modify or eliminate negative cultural practices and stereotypes, and strengthen efforts to implement existing legislative measures regarding violence against women, including assistance and protection for victims ", - "values": [ - "Women's rights" - ] - }, - { - "text": "Enact national legislation prohibiting the use of non-therapeutic sterilization of children, regardless of whether they have a disability, and of adults with disability without their informed and free consent ", - "values": [ - "Disabilities", - "Rights of the Child", - "Torture and other CID treatment" - ] - }, - { - "text": "Continue with its inclusive economic growth strategy which has resulted in poverty reduction from 40% in 2005 to 31.5% in 2010 ", - "values": [ - "Poverty" - ] - }, - { - "text": "Begin a process to amend the legal code that applies to media licensing and libel allegations, allowing for greater liberalization of the media and the availability of media to all parties and candidates during election seasons ", - "values": [ - "Elections", - "Freedom of the press" - ] - }, - { - "text": "Take further steps to increase awareness-raising campaigns and enhance education of the principles of non-discrimination and tolerance in school curriculums, including teaching of mother tongue for immigrant minorities ", - "values": [ - "Human rights violations by state agents", - "Minorities", - "Right to education" - ] - }, - { - "text": "Strengthen measures to increase the participation by ethnic minority women in line with CEDAW recommendations.", - "values": [ - "Minorities", - "Treaty bodies", - "Women's rights" - ] - }, - { - "text": "Draft and implement a penal code and amend the Law of Criminal Procedure to comply with all its obligations under international law, including prohibitions on judicially sanctioned corporal punishment and the execution of juvenile offenders", - "values": [ - "Death penalty", - "Justice", - "Rights of the Child", - "Torture and other CID treatment" - ] - }, - { - "text": "Sign and ratify the International Covenant on Economic, Social and Cultural Rights, the Convention against Torture and Other Cruel, Inhuman or Degrading Treatment or Punishment and the Convention on the Elimination of All Forms of Racial Discrimination", - "values": [ - "ESC rights - general", - "International instruments", - "Racial discrimination", - "Torture and other CID treatment" - ] - }, - { - "text": "Increase government efforts to eradicate child poverty, and in this regard undertake an assessment of the impact of the welfare reform on children from disadvantaged families", - "values": [ - "Poverty", - "Rights of the Child" - ] - }, - { - "text": "Guarantee the right to an effective defence in eviction proceedings, including for those who cannot afford a lawyer", - "values": [ - "Justice", - "Right to housing" - ] - }, - { - "text": "Consider promoting access to education for girls from ethnic minorities and remove barriers that impede access to education by Roma children", - "values": [ - "Minorities", - "Right to education", - "Rights of the Child", - "Women's rights" - ] - }, - { - "text": "Consider favourably the request for a visit by the Special Rapporteur on torture and other cruel, inhuman or degrading treatment or punishment, and to find time in the near future for a visit by the Special Rapporteur on the independence of judges and lawyers", - "values": [ - "Justice", - "Special procedures", - "Torture and other CID treatment" - ] - }, - { - "text": "Ensure that all allegations of excessive use of force, torture and cruel and other forms of ill treatment, including in detention places and prisons, committed by law enforcement personnel are thoroughly and objectively investigated, bringing alleged perpetrators to justice and providing appropriate remedies to victims", - "values": [ - "Detention", - "Human rights violations by state agents", - "Torture and other CID treatment" - ] - }, - { - "text": "Intensify its efforts to promote ethnic tolerance and adopt a strategy for the integration of persons of a different ethnic origin", - "values": [ - "Minorities" - ] - }, - { - "text": "Continue ongoing efforts to combat human trafficking in line with the National Action Plan to combat trafficking of human beings and the international commitments", - "values": [ - "Trafficking" - ] - }, - { - "text": "Establish a national human rights commission based on the Paris Principles ", - "values": [ - "National Human Rights Institution" - ] - }, - { - "text": "Amend its broadcasting laws so as to ensure the real independence of the regulatory body for television and radio ", - "values": [ - "Freedom of the press" - ] - }, - { - "text": "Develop policies and measures to ensure equal access to services, particularly access to mainstream education, and participation of persons with disabilities in the elaboration and evaluation of programmes which concern them ", - "values": [ - "Disabilities", - "Right to education" - ] - }, - { - "text": "Increase the participation of women in decision-making positions and in the political and public spheres", - "values": [ - "Women's rights" - ] - }, - { - "text": "Continue its efforts and adopt further measures to promote the realization of the right to education for all in an inclusive and non- discriminatory way, including for persons with disabilities", - "values": [ - "Disabilities", - "Right to education" - ] - }, - { - "text": "Cease immediately aerial bombardments and allow free access for humanitarian aid to areas of conflict so as to meet its obligations under international law", - "values": [ - "Other" - ] - }, - { - "text": "Specify modalities for the implementation of the National Security Law so that this law cannot be used against freedoms of expression, association and peaceful assembly", - "values": [ - "Freedom of association and peaceful assembly", - "Freedom of opinion and expression" - ] - }, - { - "text": "Accede to the Optional Protocol to the Convention of the Rights of the Child on the sale of children, child prostitution and child pornography", - "values": [ - "International instruments", - "Rights of the Child", - "Trafficking" - ] - }, - { - "text": "Ensure that the issues of asylum seekers and refugees are addressed in line with the principles of the Bali Process, and Australia's other human rights and humanitarian obligations", - "values": [ - "Asylum-seekers - refugees", - "International instruments" - ] - }, - { - "text": "Continue its efforts to eliminate stereotypes based on male superiority ", - "values": [ - "Women's rights" - ] - }, - { - "text": "Endeavour, in line with its voluntary pledges, to combat gender-based violence by, inter alia, enforcing existing legislation, conducting public awareness campaigns, ensuring psychosocial support and access to shelters for victims, and monitoring rehabilitation of persons convicted ", - "values": [ - "Human rights education and training", - "Women's rights" - ] - }, - { - "text": "Accelerate approval of the reforms of the Roma Community Act and strengthen coordination with all actors involved to address the strategies of the national programme of measures for Roma", - "values": [ - "Minorities" - ] - }, - { - "text": "Continue the efforts directed towards the promotion of the right to education", - "values": [ - "Right to education" - ] - }, - { - "text": "Adopt necessary measures to eradicate impunity for human rights violations, particularly against journalists.", - "values": [ - "Freedom of the press", - "Impunity" - ] - }, - { - "text": "Eliminate all forms of discrimination against women, including by amending the Personal Status Code to grant equal inheritance rights to women and by repealing the circular from 1973 to allow women to marry non-Muslim spouses", - "values": [ - "Women's rights" - ] - }, - { - "text": "Ensure that the oversight institutions established following the recommendations of the Bahrain Independent Commission of Inquiry are fully impartial and independent in order for them to effectively carry out their work", - "values": [ - "Justice" - ] - }, - { - "text": "Intensify its efforts to ratify the Optional Protocol to the Convention against Torture and Other Cruel, Inhuman or Degrading Treatment or Punishment", - "values": [ - "Detention", - "International instruments", - "Torture and other CID treatment" - ] - }, - { - "text": "Remove from the legislation discriminatory provisions based on race, sex or sexual orientation, and adopt comprehensive anti-discrimination legislation ", - "values": [ - "Racial discrimination", - "Sexual Orientation and Gender Identity", - "Women's rights" - ] - }, - { - "text": "In line with the 2030 Agenda, adopt a policy aimed at putting an end to harmful practices against girls, such as forced early marriage and genital mutilation, among others", - "values": [ - "Development", - "Rights of the Child", - "Torture and other CID treatment" - ] - }, - { - "text": "Seek technical assistance from the relevant United Nations bodies and involve civil society stakeholders, including human rights non-governmental organizations, in the follow-up to the universal periodic review in addressing the concerns highlighted", - "values": [ - "Civil society", - "Technical assistance and cooperation", - "UPR process" - ] - }, - { - "text": "Consider ratifying ICRMW and ILO Convention 189", - "values": [ - "International instruments", - "Labour", - "Migrants" - ] - }, - { - "text": "Establish a juvenile justice system ", - "values": [ - "Justice", - "Rights of the Child" - ] - }, - { - "text": "Uphold the right to freedom of expression and assembly ", - "values": [ - "Freedom of association and peaceful assembly", - "Freedom of opinion and expression" - ] - }, - { - "text": "Take appropriate measures to guarantee that lesbians, gays, bisexuals, transgender and intersex persons are not subjected to discrimination, both in law and in practice", - "values": [ - "Sexual Orientation and Gender Identity" - ] - }, - { - "text": "Ensure that all persons deprived of liberty are held in humane conditions, including in line with the United Nations Basic Principles for the Treatment of Prisoners and the Standard Minimum Rules for the Treatment of Prisoners", - "values": [ - "Detention" - ] - }, - { - "text": "Adopt a policy of dialogue with all States based on respect for the principles of the Charter of the United Nations, particularly mutual respect and sovereign equality and respect for the rights of people to choose their political, economic and social system", - "values": [ - "Other" - ] - }, - { - "text": "Canada commits to consider the future recommendations of the Indian Residential Schools Truth and Reconciliation Commission.", - "values": [ - "Indigenous peoples", - "Justice" - ] - }, - { - "text": "Ensure better enforcement of laws protecting employees from anti-union discrimination.", - "values": [ - "Labour" - ] - }, - { - "text": "Fully cooperate with the Special Rapporteur on the situation of human rights in Myanmar ", - "values": [ - "Special procedures" - ] - }, - { - "text": "Strengthen accountability measures for law enforcement officers and continue to improve living conditions in prisons", - "values": [ - "Detention", - "Justice" - ] - }, - { - "text": "Ensure country-wide implementation of the Marriage Act establishing the legal age for marriage as 21 years of age", - "values": [ - "Rights of the Child" - ] - }, - { - "text": "Implement specialized protocols to address and investigate cases of violence and discrimination for reasons of sexual orientation and gender identity, particularly when the victims are children and adolescents", - "values": [ - "Rights of the Child", - "Sexual Orientation and Gender Identity" - ] - }, - { - "text": "Consider withdrawing its interpretative declaration on article 4 of the International Convention on the Elimination of All Forms of Racial Discrimination, as recommended by the Committee on Racial Discrimination as well as take measures aimed at eliminating racial discrimination, incitement of racial hatred ", - "values": [ - "International instruments", - "Racial discrimination", - "Treaty bodies" - ] - }, - { - "text": "That the intention of the decree, recently signed by H.H. Shaykh Mohammed al- Maktoum that no journalist should receive prison sentences for its publications, be secured through the enactment of a modernized press and publications law.", - "values": [ - "Freedom of the press" - ] - }, - { - "text": "Effectively investigate and prosecute crimes and violations against human rights defenders and journalists, and to bring to justice those responsible", - "values": [ - "Freedom of the press", - "Human rights defenders" - ] - }, - { - "text": "Combat hate speech and prosecute perpetrators of xenophobic acts", - "values": [ - "Racial discrimination" - ] - }, - { - "text": "Adopt special measures to accelerate the full and equal participation in public and political life of women, including women of African descent, as recommended by the Committee on the Elimination of Discrimination against Women ", - "values": [ - "Minorities", - "Treaty bodies", - "Women's rights" - ] - }, - { - "text": "Develop a national strategy to eliminate poverty", - "values": [ - "Poverty" - ] - }, - { - "text": "Continue to improve the education system in the country in cooperation and partnership with relevant international organizations", - "values": [ - "Right to education" - ] - }, - { - "text": "Take legal measures to eliminate discrimination against children of ethnic minorities, non-Japanese nationality and children with disabilities", - "values": [ - "Disabilities", - "Minorities", - "Racial discrimination", - "Rights of the Child" - ] - }, - { - "text": "Continue with its efforts to guarantee the Government's commitment to a housing- led approach to end long-term involuntary homelessness", - "values": [ - "Poverty", - "Right to housing" - ] - }, - { - "text": "Disseminate and implement effectively the Declaration on the Right and Responsibility of Individuals, Groups and Organs of Society to Promote and Protect Universally Recognized Human Rights and Fundamental Freedoms", - "values": [ - "Human rights defenders", - "International instruments" - ] - }, - { - "text": "Take further steps to ensure registration of all births and provide identity documents to all persons whose birth was not registered", - "values": [ - "Rights of the Child", - "Statelessness and the right to nationality" - ] - }, - { - "text": "Continue their efforts in supporting equal educational opportunities for children and young people with special educational needs ", - "values": [ - "Right to education", - "Rights of the Child" - ] - }, - { - "text": "Take all necessary urgent measures to set up the national human rights commission in accordance with the Paris Principles. ", - "values": [ - "National Human Rights Institution" - ] - }, - { - "text": "Continue and further efforts to prevent and eliminate trafficking in persons", - "values": [ - "Trafficking" - ] - }, - { - "text": "Establish, in the near future, the Truth Commission to facilitate the justice and peace within the country", - "values": [ - "Justice" - ] - }, - { - "text": "Investigate all alleged crimes and hold accountable, in accordance with international standards, all those responsible for violations and abuses of human rights and humanitarian law", - "values": [ - "International humanitarian law", - "Justice" - ] - }, - { - "text": "Revise the Peaceful Assembly Act so that there is no discrimination and hindrance in the organization of peaceful public gatherings and protests", - "values": [ - "Freedom of association and peaceful assembly" - ] - }, - { - "text": "Ensure that its National Preventive Mechanism under the Optional Protocol to the Convention Against Torture and Other Cruel, Inhuman or Degrading Treatment or Punishment (OPCAT) is provided with the necessary human, financial and logistical resources to be able to carry out its preventive work effectively", - "values": [ - "Detention", - "International instruments", - "Torture and other CID treatment" - ] - }, - { - "text": "Improve the standards and the situation of human rights in prisons, and to carry out an independent investigation into cases of violence in prisons", - "values": [ - "Detention" - ] - }, - { - "text": "Adopt clear measures to ensure that humanitarian aid is not disrupted in a systematic way", - "values": [ - "International humanitarian law" - ] - }, - { - "text": "Protect the rights of the vulnerable groups of the population, such as women, children, and persons with disabilities and elderly persons ", - "values": [ - "Disabilities", - "Rights of the Child", - "Women's rights" - ] - }, - { - "text": "Sign the Optional Protocol to the International Covenant on Economic, Social and Cultural Rights before the end of 2011", - "values": [ - "ESC rights - general", - "International instruments" - ] - }, - { - "text": "Concretize in the domestic legal order, the process of harmonization of the protection against all grounds of discrimination ", - "values": [ - "International instruments", - "Other" - ] - }, - { - "text": "Adopt and implement a comprehensive strategy and action plan to tackle discrimination based on sexual orientation and gender identity", - "values": [ - "Sexual Orientation and Gender Identity" - ] - }, - { - "text": "Double the efforts to protect children from being victimized by forced and unlawful employment, recruitment of child soldiers by militant groups, trafficking, or sexual exploitation", - "values": [ - "International humanitarian law", - "Labour", - "Rights of the Child", - "Trafficking" - ] - }, - { - "text": "Take general measures to eliminate gender stereotypes on the role and obligations of women and men, in particular through awareness-raising campaigns and education", - "values": [ - "Human rights education and training", - "Women's rights" - ] - }, - { - "text": "Enhance the access of ethnic and national minorities to education, health care and employment ", - "values": [ - "Development", - "Minorities", - "Right to education", - "Right to health" - ] - }, - { - "text": "Modify the regulation on conscription and organize it in a way consistent with the respect for human rights ", - "values": [ - "CP rights - general" - ] - }, - { - "text": "Establish a system for birth registration that covers all children without discrimination by reason of race, ethnicity or nationality, sex or religion", - "values": [ - "Freedom of religion and belief", - "Minorities", - "Racial discrimination", - "Rights of the Child", - "Statelessness and the right to nationality" - ] - }, - { - "text": "Establish an official moratorium on executions and ratify the Second Optional Protocol to the International Covenant on Civil and Political Rights, aiming at the abolition of the death penalty, so as to bring the legislation into conformity with the de facto situation", - "values": [ - "Death penalty", - "International instruments" - ] - }, - { - "text": "Communicate more efficiently to Roma parents the importance of literacy and the positive effect of education on the children's future, and, in this task, use the help of school assistants with a Romani background", - "values": [ - "Minorities", - "Right to education" - ] - }, - { - "text": "Continue its efforts in addressing the problem of missing person", - "values": [ - "Other" - ] - }, - { - "text": "Abolish or amend all Penal Code articles that place impermissible restrictions on the freedom of expression", - "values": [ - "Freedom of opinion and expression" - ] - }, - { - "text": "Continue providing support to the United Nations organizations and its specialized agencies, institutions, regional and international funds concerning humanitarian assistance", - "values": [ - "Technical assistance and cooperation" - ] - }, - { - "text": "Engage closely with the United Nations human rights system, including treaty bodies and special procedures mandate holders", - "values": [ - "Special procedures", - "Treaty bodies", - "UPR process" - ] - }, - { - "text": "Ensure its Criminal Code provisions do not criminalize individuals based on sexual orientation", - "values": [ - "Sexual Orientation and Gender Identity" - ] - }, - { - "text": "Conclude as soon as possible the drafting of the National Human Rights Plan of Action (para. 31 of the National Report)", - "values": [ - "General" - ] - }, - { - "text": "Launch a public awareness-raising campaign to fight and prevent discrimination and violence against LGBT persons and to promote tolerance", - "values": [ - "Human rights education and training", - "Sexual Orientation and Gender Identity" - ] - }, - { - "text": "Ensure that its NHRI is in conformity with the Paris Principles ", - "values": [ - "National Human Rights Institution" - ] - }, - { - "text": "Guarantee medical care for persons suffering from drug addiction", - "values": [ - "Right to health" - ] - }, - { - "text": "Continue its efforts to promote school attendance and to eliminate child labour, particularly in rural areas", - "values": [ - "Labour", - "Rights of the Child" - ] - }, - { - "text": "Intensify its efforts to ratify the Convention against Torture and Other Cruel, Inhuman or Degrading Treatment or Punishment", - "values": [ - "International instruments", - "Torture and other CID treatment" - ] - }, - { - "text": "Take the necessary measures in order for the law on media and access to information to comply with ICCPR ", - "values": [ - "Freedom of opinion and expression", - "Freedom of the press", - "International instruments" - ] - }, - { - "text": "Work closely with the Autonomous Government of Bougainville to secure a transitional justice process without human rights violations", - "values": [ - "Justice" - ] - }, - { - "text": "Resume the de facto suspension of the death penalty pending its abolition", - "values": [ - "Death penalty" - ] - }, - { - "text": "Introduce a strategy to promote food security ", - "values": [ - "Right to food" - ] - }, - { - "text": "Cooperate with treaty bodies by submitting its reports", - "values": [ - "Treaty bodies" - ] - }, - { - "text": "Consider the ratification of the Optional Protocol to the Convention against Torture", - "values": [ - "International instruments", - "Torture and other CID treatment", - "Treaty bodies" - ] - }, - { - "text": "Investigate all unresolved cases of missing persons and bring perpetrators to justice", - "values": [ - "Justice" - ] - }, - { - "text": "Respect its obligations under international human rights and humanitarian law with respect to the Palestinian people.", - "values": [ - "International humanitarian law", - "International instruments" - ] - }, - { - "text": "Consider the abolition of the death penalty, and declare a moratorium on executions ", - "values": [ - "Death penalty" - ] - }, - { - "text": "Design a comprehensive policy to address discrimination of national minorities in all areas ", - "values": [ - "Minorities", - "Racial discrimination" - ] - }, - { - "text": "Decentralize the International Commission against Impunity in Guatemala to all regions", - "values": [ - "Impunity" - ] - }, - { - "text": "Make further advances through withdrawing its reservations to CEDAW, CRC and CERD", - "values": [ - "International instruments", - "Racial discrimination", - "Rights of the Child", - "Women's rights" - ] - }, - { - "text": "Review and transform the 1977 Penal Code with regard to violence against children, sexual abuse and exploitation, abduction, sales and trafficking ", - "values": [ - "Rights of the Child", - "Trafficking" - ] - }, - { - "text": "Undertake thorough and comprehensive studies of international instruments and conventions, including ICCPR and ICESCR, prior to its accession to those instruments", - "values": [ - "CP rights - general", - "ESC rights - general", - "International instruments" - ] - }, - { - "text": "Continue to strengthen the cooperation between the State and civil society organizations involved in human rights education", - "values": [ - "Civil society", - "Human rights education and training" - ] - }, - { - "text": "Continue to take appropriate measures and to provide adequate resources to ensure the socio-economic rights of vulnerable groups ", - "values": [ - "ESC rights - general" - ] - }, - { - "text": "Incorporate the provisions of the Convention on the Rights on the Child in the national legal order", - "values": [ - "International instruments", - "Rights of the Child" - ] - }, - { - "text": "Strengthen measures and frameworks to combat trafficking in persons to enable the safe return and repatriation of victims of trafficking", - "values": [ - "Trafficking" - ] - }, - { - "text": "Collect data and indicators on violent acts against transsexual women", - "values": [ - "Sexual Orientation and Gender Identity" - ] - }, - { - "text": "Establish the national human rights commission in conformity with the Paris Principles", - "values": [ - "National Human Rights Institution" - ] - }, - { - "text": "Strengthen efforts to reduce disparities in the enjoyment of rights between children of minority groups, particularly Roma children and children of the majority of the population", - "values": [ - "Minorities", - "Rights of the Child" - ] - }, - { - "text": "Ratify the Optional Protocol to the Convention on the Rights of the Child, OP-CAT, and the Rome Statute of the ICC, at the earliest opportunity ", - "values": [ - "Detention", - "International instruments", - "Justice", - "Rights of the Child", - "Torture and other CID treatment" - ] - }, - { - "text": "Enhance its efforts to comprehensively address the issue of violence against women by, inter alia, putting in place preventive measures such as education and awareness-raising", - "values": [ - "Human rights education and training", - "Women's rights" - ] - }, - { - "text": "The Comorian Government is committed to achieving self-sufficiency in food production by facilitating access to loans for fishing, animal husbandry and farming and providing the necessary expertise. Particular attention is devoted to the respective trade associations.", - "values": [ - "Right to food" - ] - }, - { - "text": "Lift restrictions on the rights to freedom of expression that are not in accordance with the Universal Declaration of Human Rights, and to ensure affordable and unhindered access to the internet for all ", - "values": [ - "Freedom of opinion and expression", - "International instruments" - ] - }, - { - "text": "Continue with its efforts to develop education as a great investment for the future", - "values": [ - "Right to education" - ] - }, - { - "text": "Strengthen strategies so as to combat stereotypes and all forms of discrimination against women and persons with disabilities", - "values": [ - "Disabilities", - "Women's rights" - ] - }, - { - "text": "Intensify measures to address factors driving women and girls into prostitution ", - "values": [ - "Rights of the Child", - "Women's rights" - ] - }, - { - "text": "Accede to the Rome Statute as amended at the Review Conference in Kampala in 2010 and align its national legislation with all obligations under the Rome Statute ", - "values": [ - "International instruments", - "Justice" - ] - }, - { - "text": "Review all laws that are restricting freedom of expression and the press ", - "values": [ - "Freedom of opinion and expression", - "Freedom of the press" - ] - }, - { - "text": "Accelerate its domestic procedure for ratification including the adoption of the Prevention against Torture Bill by its Parliament ", - "values": [ - "Torture and other CID treatment" - ] - }, - { - "text": "Adopt effective measures such as the establishment of an institution to monitor regularly the situation of Roma", - "values": [ - "Minorities" - ] - }, - { - "text": "Complete the adoption of the new children's act in line with the obligations of Maldives under the Convention on the Rights of the Child", - "values": [ - "International instruments", - "Rights of the Child" - ] - }, - { - "text": "Take all necessary steps to enforce laws on forced labour, modern slavery and human trafficking, in particular on child trafficking", - "values": [ - "Labour", - "Rights of the Child", - "Trafficking" - ] - }, - { - "text": "Adopt an official moratorium aiming at the formal abolishment of the death penalty in the country", - "values": [ - "Death penalty" - ] - }, - { - "text": "That, in order to ensure cooperation and dialogue with the international community, to submit responses to the communications by the various special rapporteurs.", - "values": [ - "Special procedures" - ] - }, - { - "text": "Increase the measures to prevent and punish domestic violence, particularly against migrant women", - "values": [ - "Migrants", - "Women's rights" - ] - }, - { - "text": "Continue advancing in the gradual transformation of the society regarding women's rights, by revising the Senegalese Family Code in order to put an end to legal discrimination situations of Senegalese women, especially in terms of their ability to be the head of household (art. 152)", - "values": [ - "Women's rights" - ] - }, - { - "text": "Develop a comprehensive national action plan on combating racism and discrimination", - "values": [ - "Racial discrimination" - ] - }, - { - "text": "Investigate complaints concerning discrimination against members of minority religions, while developing educational and awareness programmes addressing these human rights violations", - "values": [ - "Freedom of religion and belief", - "Human rights education and training", - "Minorities" - ] - }, - { - "text": "Estonia notes that it is committed to ratifying already this year the Convention of the Rights of Persons with Disabilities (CRPD). However, at this stage, no definitive answer can be given regarding the recommendation to sign and ratify the Optional Protocol to the Convention of the Rights of Persons with Disabilities (OP-CPRD).", - "values": [ - "Human rights education and training", - "International instruments" - ] - }, - { - "text": "Continue the efforts concerning combating discrimination on the basis of religion", - "values": [ - "Freedom of religion and belief", - "Racial discrimination" - ] - }, - { - "text": "Cooperate closely with the United Nations, in particular with the local Office of the High Commissioner for Human Rights ", - "values": [ - "Other" - ] - }, - { - "text": "Complete necessary legislative reforms towards the criminalization of domestic violence", - "values": [ - "Rights of the Child", - "Women's rights" - ] - }, - { - "text": "Ensure full compliance with its law on access to information, and that the Office for Coordination of Access to Information be sufficiently staffed and equipped to undertake its responsibilities", - "values": [ - "Freedom of opinion and expression" - ] - }, - { - "text": "Take measures to enforce laws and policies to promote equality between men and women", - "values": [ - "Women's rights" - ] - }, - { - "text": "Take more effective measures to combat racism, racial discrimination and xenophobia against minority groups in the country, in particular prejudice against the Muslims", - "values": [ - "Freedom of religion and belief", - "Minorities", - "Racial discrimination" - ] - }, - { - "text": "Take additional measures to prevent and combat trafficking in women in an appropriate way ", - "values": [ - "Trafficking", - "Women's rights" - ] - }, - { - "text": "Intensify measures to fully realize the rights of indigenous peoples, in particular their representation in civil service and public institutions.", - "values": [ - "Indigenous peoples" - ] - }, - { - "text": "Improve protection of the rights to freedom of expression, assembly and association, by amending the Press and Publications Law and the Civil Societies Law in line with international standards and by accepting the recommendations by the Special Rapporteur on the rights to freedom of peaceful assembly and of association in 2014", - "values": [ - "Civil society", - "Freedom of association and peaceful assembly", - "Freedom of opinion and expression", - "Freedom of the press", - "Special procedures" - ] - }, - { - "text": "Enhance all efforts to combat discrimination and violence against women, in particular by quickly adopting and effectively implementing the national strategic action plan to eliminate gender-based violence", - "values": [ - "Women's rights" - ] - }, - { - "text": "Adopt and implement legislation prohibiting corporal punishment under all circumstances and accompany this with a public awareness-raising campaign", - "values": [ - "Human rights education and training", - "Torture and other CID treatment" - ] - }, - { - "text": "Monitor the impact of reforms aimed at the inclusion of Romani pupils in mainstream schools, with regard to the continued segregation of Roma children from mainstream education", - "values": [ - "Minorities", - "Racial discrimination", - "Right to education", - "Rights of the Child" - ] - }, - { - "text": "Extend cooperation to the Office of the High Commissioner for Human Rights so that the Office can visit Syria as soon as possible, and facilitate the investigation requested by the Human Rights Council", - "values": [ - "Other" - ] - }, - { - "text": "Take decisive action to promote the rights of female citizens in order to achieve legal equality between men and women in terms of marriage, divorce, inheritance and child custody ", - "values": [ - "Women's rights" - ] - }, - { - "text": "Continue to strengthen the rule of law and ensure good and clean governance at all levels of government, which would help address the social and economic needs of the Myanmar people more effectively", - "values": [ - "Justice" - ] - }, - { - "text": "Take all steps necessary to stop immediately the practice of torturing detainees in formal and informal detention facilities run by the Government and militias affiliated with it", - "values": [ - "Detention", - "Human rights violations by state agents", - "Torture and other CID treatment" - ] - }, - { - "text": "Implement a national strategy against corruption in order to fight against its effects that impair the enjoyment of human rights", - "values": [ - "Corruption" - ] - }, - { - "text": "Enact comprehensive legislation prohibiting all forms of torture and take measures to prevent all acts of torture in areas outside the national territory under its effective control", - "values": [ - "Torture and other CID treatment" - ] - }, - { - "text": "Continue to strengthen actions to improve access to drinking water, especially in rural areas", - "values": [ - "Right to water and sanitation" - ] - }, - { - "text": "Take all necessary steps to fully commit to end impunity for international crimes by acceding to the Rome Statute of the ICC and fully align its national legislation with all obligations under the Rome Statute ", - "values": [ - "International instruments", - "Justice" - ] - }, - { - "text": "Implement the recommendations made by the Special Rapporteur on the rights of human right defenders following her visit in 2011, with particular emphasis on recommendations that concern defenders of women's and children's rights, defenders of minorities rights, including Dalits and Adavasi, and right to information activists.", - "values": [ - "Human rights defenders", - "Indigenous peoples", - "Minorities", - "Rights of the Child", - "Special procedures", - "Women's rights" - ] - }, - { - "text": "Continue to implement indigenous education reforms", - "values": [ - "Indigenous peoples", - "Right to education" - ] - }, - { - "text": "Take the necessary steps to eradicate domestic and sexual violence against women, especially minor women, whose numbers continue being significantly high. In this, sense, it is necessary to monitor the prevalence of cases of sexual violence in the framework of armed conflicts in order to achieve two goals: reduce the number of victims and provide victims with adequate sanitary and psychological attention", - "values": [ - "Rights of the Child", - "Women's rights" - ] - }, - { - "text": "Explore the possibility of consolidating the work of existing institutions and establishing a national human rights institution in conformity with the Paris Principle", - "values": [ - "National Human Rights Institution" - ] - }, - { - "text": "Accelerate the ratification of the Convention on the Rights of Persons with Disabilities to strengthen the protection of persons with disabilities, and to further improve their role in the society", - "values": [ - "Disabilities", - "International instruments" - ] - }, - { - "text": "Foster policies and strategies to guarantee the rights of persons with disabilities", - "values": [ - "Disabilities" - ] - }, - { - "text": "Effectively implement the 2009 Anti-Torture Act, with a particular focus on ensuring that all investigations and prosecutions of allegations of torture and ill-treatment fully cover the possibility of command responsibility as stipulated in section 13 of the Act ", - "values": [ - "Torture and other CID treatment" - ] - }, - { - "text": "Continue to provide effective protection for the family, as the natural and fundamental unit of society", - "values": [ - "Other" - ] - }, - { - "text": "Extend a standing invitation to special procedures mandate holders, respond positively to all requests to visit the country and cooperate fully, promptly and substantively with the Human Rights Council special procedures", - "values": [ - "Special procedures" - ] - }, - { - "text": "Reconsider the current proposal, in order to better meet both the State's interest to regularise the habitation in Negev and the fundamental rights of the Bedouin community", - "values": [ - "Minorities" - ] - }, - { - "text": "Take immediate measures to ensure under-nourished children are provided with nutrition supplements and access to clean water", - "values": [ - "Right to food", - "Right to water and sanitation", - "Rights of the Child" - ] - }, - { - "text": "Extend a Standing Invitation to the Council's special procedures", - "values": [ - "Special procedures" - ] - }, - { - "text": "Continue strengthening efforts in poverty alleviation, including through programmes for indigenous people.", - "values": [ - "Indigenous peoples", - "Poverty" - ] - }, - { - "text": "Combat impunity.", - "values": [ - "Impunity" - ] - }, - { - "text": "To reform, in accordance with the Constitution, the institutions of the Judicial Organ.", - "values": [ - "Justice" - ] - }, - { - "text": "Continue its efforts in pursuing a good-willed strategy to enhance the rights and conditions of workers including the foreign workers, hand in hand with an awareness-raising campaign for migrant workers ", - "values": [ - "Human rights education and training", - "Labour", - "Migrants" - ] - }, - { - "text": "Bring forward legislation providing a clear legal process for the restoration of rights for individuals affected by the erasure", - "values": [ - "Other" - ] - }, - { - "text": "Ratify or accede to the Agreement on Privileges and Immunities of the International Criminal Court and implement it fully at national level", - "values": [ - "International instruments", - "Justice" - ] - }, - { - "text": "Make education compulsory by law and take the necessary measures to combat corruption in the educational system ", - "values": [ - "Corruption", - "Right to education" - ] - }, - { - "text": "Abolish all legislation, measures and practices that discriminate against women, further to the report of the Special Rapporteur on Violence Against Women. In particular, to abolish legislation and practices which prevent women from participating fully in society on an equal basis with men, including strict gender segregation practices, limitations on freedom of movement, the prohibition on women driving and restricted access by women to work, public places and commercial facilities", - "values": [ - "Special procedures", - "Women's rights" - ] - }, - { - "text": "Halt the use of the death penalty in all circumstances and take steps towards its abolition, including ratification of the Second Optional Protocol to the International Covenant on Civil and Political Rights", - "values": [ - "Death penalty", - "International instruments" - ] - }, - { - "text": "The Mexican State is irrevocably committed to creating the necessary conditions for the fulfilment of its obligation to the international community to uphold the right to have access to justice.", - "values": [ - "Justice" - ] - }, - { - "text": "Explicitly prohibit all harmful practices against women of all ages, including female genital mutilation, child, early and forced marriage and practices inflicted on elderly women in relation to allegations of witchcraft, and take all necessary measures to enforce the prohibition", - "values": [ - "Rights of the Child", - "Torture and other CID treatment", - "Women's rights" - ] - }, - { - "text": "Implement the recommendations of the International Conference on Population and Development [ICPD] Programme of Action, to close the gap between Indigenous and non-Indigenous Australians in health, education, housing and employment", - "values": [ - "Indigenous peoples", - "Labour", - "Right to education", - "Right to health", - "Right to housing" - ] - }, - { - "text": "Consider ratifying the International Convention on the Protection of the Rights of All Migrant Workers and Members of their Families ", - "values": [ - "International instruments", - "Labour", - "Migrants" - ] - }, - { - "text": "Ratify the International Convention for the Protection of All Persons from Enforced Disappearance as soon as possible", - "values": [ - "Enforced disappearances", - "International instruments" - ] - }, - { - "text": "Submit its overdue reports to the Human Rights Committee and the Committee on Enforced Disappearances", - "values": [ - "CP rights - general", - "Enforced disappearances", - "Treaty bodies" - ] - }, - { - "text": "Continue to combat discrimination, hate speech and racism", - "values": [ - "Racial discrimination" - ] - }, - { - "text": "Give abandoned children born in wedlock the same rights and protections afforded to children born out of wedlock", - "values": [ - "Rights of the Child" - ] - }, - { - "text": "Take further steps to eliminate torture and other cruel, inhuman or degrading treatment or punishment and to ensure an effective and impartial judicial system.", - "values": [ - "Torture and other CID treatment" - ] - }, - { - "text": "Accept the request made by the Special Rapporteur on freedom of opinion and expression, which has been awaiting a response since 2004 ", - "values": [ - "Freedom of opinion and expression", - "Special procedures" - ] - }, - { - "text": "Continue the efforts for a speedy ratification of the Optional Protocol to the Convention against Torture ", - "values": [ - "Detention", - "International instruments", - "Torture and other CID treatment" - ] - }, - { - "text": "We appreciate the Kingdom's role in facilitating hajj and omra, and we commend the efforts the kingdom is taking and recommend they continue those efforts", - "values": [ - "Freedom of religion and belief" - ] - }, - { - "text": "Immediately cease its military operations in the Occupied Palestinian Territories and lift the closure and seizure it imposes on the Gaza Strip", - "values": [ - "Right to land" - ] - }, - { - "text": "Step up efforts in promoting intercultural understanding and tolerance between different ethnic groups in the country ", - "values": [ - "Minorities" - ] - }, - { - "text": "Pass an anti-trafficking law that prohibits and penalizes all forms of human trafficking", - "values": [ - "Trafficking" - ] - }, - { - "text": "Further promote children's right to education ", - "values": [ - "Right to education", - "Rights of the Child" - ] - }, - { - "text": "Accelerate necessary measures for training police personnel on the principles of human rights and the minimum treatment of prisoners and detainees according to a clear curriculum", - "values": [ - "Detention", - "Human rights education and training" - ] - }, - { - "text": "Pursue its integration policy for the Roma population, guaranteeing access to basic health and social services, education, housing and employment", - "values": [ - "Minorities" - ] - }, - { - "text": "The recommendations which we accept will enjoy our commitment in terms of implementation", - "values": [ - "UPR process" - ] - }, - { - "text": "Agree on the dates for the visit of eight special mandate holders invited by the Government ", - "values": [ - "Special procedures" - ] - }, - { - "text": "Adopt the necessary measures and introduce the necessary amendments to the 2005 law on gender violence to ensure its effectiveness and to clearly define the sentences for offenders ", - "values": [ - "Women's rights" - ] - }, - { - "text": "Continue efforts to strengthen the National Human Rights Commission to be fully in line with the Paris Principles ", - "values": [ - "National Human Rights Institution" - ] - }, - { - "text": "Enhance awareness-raising campaigns to combat and eradicate female genital mutilation and other traditional practices harmful to young women.", - "values": [ - "Human rights education and training", - "Rights of the Child", - "Torture and other CID treatment", - "Women's rights" - ] - }, - { - "text": "Continue to develop programmes and measures aimed at ensuring quality and free education and health services for its population ", - "values": [ - "Right to education", - "Right to health" - ] - }, - { - "text": "Improve its citizen's access to food by adopting a national strategy to protect its agriculture against the effects of climate change and natural disasters", - "values": [ - "Environment", - "Right to food" - ] - }, - { - "text": "Address the root causes that result in human trafficking", - "values": [ - "Trafficking" - ] - }, - { - "text": "Continue adopting a job friendly policy and ensuring equal employment opportunities for urban and rural residents", - "values": [ - "Development" - ] - }, - { - "text": "Ratify the Convention on the Rights of Persons with Disabilities without further delay", - "values": [ - "Disabilities", - "International instruments" - ] - }, - { - "text": "Seek the guidance of special procedures in further enhancing the safety of all human rights defenders in the country by inviting the Special Rapporteur on the situation of human rights defenders to visit the country", - "values": [ - "Human rights defenders", - "Special procedures" - ] - }, - { - "text": "Reduce the length of alternative service for conscientious objectors so that it is the same length as the military service ", - "values": [ - "Freedom of religion and belief" - ] - }, - { - "text": "Continue the efforts aimed at providing more opportunities to persons with disabilities and enabling them to become an integral part of the society", - "values": [ - "Disabilities" - ] - }, - { - "text": "Ensure that the education contributes to cultural diversity, equal rights and the dignity of the person", - "values": [ - "Right to education" - ] - }, - { - "text": "Establish an independent national preventive mechanism with the necessary mandate to fulfil its obligations under the Optional Protocol to the Convention against Torture and Other Cruel, Inhuman or Degrading Treatment or Punishment ", - "values": [ - "Detention", - "International instruments", - "Torture and other CID treatment" - ] - }, - { - "text": "End the prerogatives of the Ministry of Defence and Military Courts to detain and to charge civilians respectively", - "values": [ - "Justice" - ] - }, - { - "text": "Define its priorities and determine its needs in order to support its request for technical assistance in the area of human rights.", - "values": [ - "Technical assistance and cooperation" - ] - }, - { - "text": "Ensure adequate funding from the budget for the National Human Rights and Anti-Discrimination Commission", - "values": [ - "National Human Rights Institution" - ] - }, - { - "text": "Continue its efforts to combat hate speech by public officials and to investigate racially motivated violence and prosecute perpetrators", - "values": [ - "Racial discrimination" - ] - }, - { - "text": "Finalize the process of adoption of the national policy and plan of action for human rights and pursue relentlessly its programme "Vision 2030" aimed at reducing the number of persons living in poverty", - "values": [ - "Poverty" - ] - }, - { - "text": "Step up its efforts geared at completing its accession to CEDAW-OP", - "values": [ - "International instruments", - "Women's rights" - ] - }, - { - "text": "Call upon the UN bodies and other donors to provide all necessary technical and financial support to help them to meet their human rights obligations ", - "values": [ - "Technical assistance and cooperation" - ] - }, - { - "text": "Focus more resources on ethnic reconciliation in the education of school-aged children to foster tolerance and appreciation for diversity in the next generation. ", - "values": [ - "Right to education", - "Rights of the Child" - ] - }, - { - "text": "Continue to develop and strengthen programmes and public policies on inclusion, reduction of poverty and inequality, promotion of equality and inclusion, with particular attention to the poorest provinces and the systemic inequalities that may exist between rural and urban areas", - "values": [ - "ESC rights - general", - "Poverty" - ] - }, - { - "text": "Sign and ratify the International Covenant on Civil and Political Rights and the International Covenant on Economic, Social and Cultural Rights as soon as possible.", - "values": [ - "CP rights - general", - "ESC rights - general", - "International instruments" - ] - }, - { - "text": "Continue supporting the efforts to empower women in social and public life, including by providing adequate financial and human resources to implement policies and programmes afforded to them ", - "values": [ - "Women's rights" - ] - }, - { - "text": "Continue efforts to fully ensure respect for fundamental freedoms, especially the freedom of assembly and the freedom of association, as well as the freedom of the press", - "values": [ - "Freedom of association and peaceful assembly", - "Freedom of the press" - ] - }, - { - "text": "Take steps to improve its ability to prevent torture ", - "values": [ - "Torture and other CID treatment" - ] - }, - { - "text": "Increase its efforts to attain equality of rights between men and women, including through awareness raising activities to combat patriarchal cultural practices and gender stereotypes that undermine the exercise of such rights ", - "values": [ - "Human rights education and training", - "Women's rights" - ] - }, - { - "text": "Raise the age of marriage for girls to 18", - "values": [ - "Rights of the Child", - "Women's rights" - ] - }, - { - "text": "Intensify efforts to strengthen the national system for the promotion and protection of human rights", - "values": [ - "General" - ] - }, - { - "text": "Actively seek funding to mitigate the harms from environmental degradation and adapt to the effects of climate change", - "values": [ - "Environment" - ] - }, - { - "text": "Complete the reform of the security sector in order to ensure its conformity with international norms and to guarantee full respect of human rights by the security forces", - "values": [ - "Human rights violations by state agents" - ] - }, - { - "text": "Nigeria is committed to ensuring that respect for all persons irrespective of race, class, disability or gender is guaranteed", - "values": [ - "Disabilities", - "Minorities", - "Women's rights" - ] - }, - { - "text": "Abolish the death penalty in law and consider ratifying ICCPR-OP2", - "values": [ - "Death penalty", - "International instruments" - ] - }, - { - "text": "Submit the overdue report to the Committee on Enforced Disappearances", - "values": [ - "Enforced disappearances", - "Treaty bodies" - ] - }, - { - "text": "Make further legislative and executive efforts in order to prevent intolerance and discrimination on religious grounds against members of religious minorities", - "values": [ - "Freedom of religion and belief", - "Minorities", - "Racial discrimination" - ] - }, - { - "text": "Continue to promote and protect the fundamental freedoms and human rights of all its citizens", - "values": [ - "General" - ] - }, - { - "text": "Continue to strengthen its poverty reduction strategy with the aim of ensuring among others, food security", - "values": [ - "Poverty", - "Right to food" - ] - }, - { - "text": "Continue efforts to combat discrimination on any ground and violence against women and girls", - "values": [ - "Rights of the Child", - "Women's rights" - ] - }, - { - "text": "Ensure adequate legal and social protection for women and girls subjected to gender-based violence", - "values": [ - "Rights of the Child", - "Women's rights" - ] - }, - { - "text": "Request the international community to provide material and financial assistance to the Comoros so that it can meet the challenges before it in the area of human rights.", - "values": [ - "Technical assistance and cooperation" - ] - }, - { - "text": "Adopt a decisive criminal policy to prosecute and punish perpetrators of violence against women and practice a policy of prevention so as to enhance the sensitivity of society at large to this matter.", - "values": [ - "Women's rights" - ] - }, - { - "text": "Implement comprehensive anti-discrimination legislation to protect and promote the rights of lesbian, gay, bisexual, transgender and intersex persons", - "values": [ - "Sexual Orientation and Gender Identity" - ] - }, - { - "text": "Sign and ratify the Optional Protocol of the Covenant on Economic, Social and Cultural Rights and the OP-CAT as well as the CED ", - "values": [ - "Detention", - "ESC rights - general", - "Enforced disappearances", - "International instruments", - "Torture and other CID treatment" - ] - }, - { - "text": "Establish an appropriate system of juvenile justice in conformity with international standards and its international commitments", - "values": [ - "International instruments", - "Justice", - "Rights of the Child" - ] - }, - { - "text": "Grant women with civil and political rights, the right to health and the right to education without discrimination", - "values": [ - "CP rights - general", - "Right to education", - "Right to health", - "Women's rights" - ] - }, - { - "text": "Consider sharing best practices from its health-care system through relevant United Nations agencies ", - "values": [ - "Right to health" - ] - }, - { - "text": "Work on the implementation and dissemination of observations of treaty bodies.", - "values": [ - "Treaty bodies" - ] - }, - { - "text": "Multiply its efforts to involve in the decision-making the active participation of different social structures, especially those geared to combat poverty and social equality ", - "values": [ - "Poverty" - ] - }, - { - "text": "Ratify those conventions to which it is not yet party, in particular the Convention against Torture and Other Cruel, Inhuman or Degrading Treatment or Punishment and its Optional Protocol ", - "values": [ - "Detention", - "International instruments", - "Torture and other CID treatment" - ] - }, - { - "text": "Commit itself to combating institutional bias that can result in the overrepresentation of specific groups in the criminal justice system.", - "values": [ - "Justice" - ] - }, - { - "text": "Accelerate the process of drafting and ratification of the law on victims' reparations as well as the establishment of the memorial institution as per the National Parliament action plan", - "values": [ - "Justice" - ] - }, - { - "text": "Eliminate all discriminatory provisions with regard to marriage and family in the Civil Code ", - "values": [ - "Women's rights" - ] - }, - { - "text": "Enhance the efforts to combat violence against women and to improve women's access to safe shelter ", - "values": [ - "Right to housing", - "Women's rights" - ] - }, - { - "text": "Protect children by ensuring the full and immediate demobilization of all children, the prohibition of forced recruitment of children into the armed forces and the prosecution and punishment of those responsible for forcibly recruiting children", - "values": [ - "International humanitarian law", - "Rights of the Child" - ] - }, - { - "text": "Strengthen measures aimed at the full realization of economic, social and cultural rights", - "values": [ - "ESC rights - general" - ] - }, - { - "text": "Exert more efforts aiming at the elimination of all forms of discrimination against women, particularly in the labour market", - "values": [ - "Labour", - "Women's rights" - ] - }, - { - "text": "Accentuate measures to provide assistance, care and support to persons at risk of infection and those living with HIV/AIDS, through improved access to prevention, treatment and counselling services ", - "values": [ - "HIV - Aids" - ] - }, - { - "text": "Further strengthen the capacity of the institution of Ombudsman ", - "values": [ - "National Human Rights Institution" - ] - }, - { - "text": "Significantly promote sexual education, in particular oriented towards adolescent girls and boys, paying special attention to the prevention of early pregnancy and to the control of sexually transmitted diseases and HIV/AIDS ", - "values": [ - "HIV - Aids", - "Rights of the Child" - ] - }, - { - "text": "Strengthen measures to combat impunity for acts of violence against women. ", - "values": [ - "Impunity", - "Women's rights" - ] - }, - { - "text": "Work to extend its efforts regarding free primary education to all", - "values": [ - "Right to education" - ] - }, - { - "text": "A Criminal Justice (Withholding Information on Crimes against Children and Vulnerable Adults) Bill and a National Vetting Bureau Bill were presently being prepared and would be presented to Parliament as soon as possible and revised Children First guidelines would be placed on a statutory basis", - "values": [ - "Justice", - "Rights of the Child" - ] - }, - { - "text": "Ratify the Optional Protocol to the International Covenant on Economic, Social and Cultural Rights, the International Convention on the Protection of the Rights of All Migrant Workers and Members of Their Families, and the Convention on the Rights of Persons with Disabilities", - "values": [ - "Disabilities", - "ESC rights - general", - "International instruments", - "Labour", - "Migrants" - ] - }, - { - "text": "Continue the same level of methodology and transparency - we consider that the content of the report reflects the importance of the work to be carried out in spite of the challenges ", - "values": [ - "General" - ] - }, - { - "text": "Continue with the policy of dialogue and openness with all social movements concerned with human rights, as well as with civil society organizations", - "values": [ - "Civil society" - ] - }, - { - "text": "Take legal and administrative measures to address civilian killings by the United States military troops during and after its invasion of Afghanistan and Iraq by bringing perpetrators to justice and remedying the victims", - "values": [ - "International humanitarian law" - ] - }, - { - "text": "Adopt a comprehensive national human rights action plan aimed at addressing all human rights violations", - "values": [ - "General" - ] - }, - { - "text": "Step up efforts to ensure the protection of foreign nationals from any forms of attacks and to hold offenders accountable", - "values": [ - "Migrants" - ] - }, - { - "text": "Consolidate specialized measures aimed at strengthening the rights of children with disabilities ", - "values": [ - "Disabilities", - "Rights of the Child" - ] - }, - { - "text": "Ensure the effective access of all children to education, in particular migrant and indigenous children, and take effective measures to combat their exclusion from the education system", - "values": [ - "Indigenous peoples", - "Migrants", - "Right to education", - "Rights of the Child" - ] - }, - { - "text": "Consider developing human rights indicators as an instrument that allows for a more precise and coherent evaluation of national human rights policies", - "values": [ - "Other" - ] - }, - { - "text": "Consider revising the minimum age of criminal responsibility", - "values": [ - "Rights of the Child" - ] - }, - { - "text": "Adopt the appropriate measures to guarantee the free exercise of the rights of assembly and association without unjustified restrictions and to respect the legitimate space of civil society, journalists and human rights defenders", - "values": [ - "Civil society", - "Freedom of association and peaceful assembly", - "Freedom of the press", - "Human rights defenders" - ] - }, - { - "text": "Continue efforts to promote gender equality and strengthen the role of women in society", - "values": [ - "Women's rights" - ] - }, - { - "text": "Improve the quality and coverage of its early childhood care and education for indigenous children and children living in remote areas and ensure adequate resources for implementing bilingual models of education", - "values": [ - "Indigenous peoples", - "Right to education", - "Rights of the Child" - ] - }, - { - "text": "Repeal those legal provisions on sexual offences which criminalize sexual relations between consenting adults of the same sex ", - "values": [ - "Sexual Orientation and Gender Identity" - ] - }, - { - "text": "Amend the 2013 Communications Law to stop the use of the vaguely defined concept of "social emergency" to suspend or suppress legitimate communications and exchanges of information, or otherwise to limit freedom of opinion and expression", - "values": [ - "Freedom of opinion and expression" - ] - }, - { - "text": "Increases its efforts to eliminate alleged brutality and use of excessive force by law enforcement officials against, inter alia, Latino and African American persons and undocumented migrants, and to ensure that relevant allegations are investigated and that perpetrators are prosecuted ", - "values": [ - "Human rights violations by state agents", - "Migrants", - "Minorities" - ] - }, - { - "text": "Continue its efforts to enhance its domestic framework on the protection of the rights of women and further encourage women to participate actively in the economy and public life ", - "values": [ - "Women's rights" - ] - }, - { - "text": "Take continued action to combat violence against women and girl children ", - "values": [ - "Rights of the Child", - "Women's rights" - ] - }, - { - "text": "Promote freedom of religion and belief, including by increasing access to religious literature, places of worship and public religious gatherings for non-Muslims and non-Shafi'i Muslims ", - "values": [ - "Freedom of religion and belief" - ] - }, - { - "text": "Conduct a review process and if necessary, amend its national legislation ", - "values": [ - "Other" - ] - }, - { - "text": "Fully capacitate and empower the national institute for women", - "values": [ - "National Human Rights Institution", - "Women's rights" - ] - }, - { - "text": "Ensure family reunification and the conditions of the reception of refugees and asylum-seekers, in the implementation of the Law on International Protection, are in accordance with international law", - "values": [ - "Asylum-seekers - refugees" - ] - }, - { - "text": "Ratify the Optional Protocol to the Convention against Torture and Other Cruel, Inhuman or Degrading Treatment or Punishment in the near future.", - "values": [ - "Detention", - "International instruments", - "Torture and other CID treatment" - ] - }, - { - "text": "Consider withdrawing its reservations to various human rights instruments ", - "values": [ - "International instruments" - ] - }, - { - "text": "Ratify the International Convention for the Protection of All persons from Enforced Disappearance", - "values": [ - "Enforced disappearances", - "International instruments" - ] - }, - { - "text": "Deepen its efforts to eliminate discrimination against women and respect the rights of the child by reforming the Nationality Law to enable Omani mothers to transmit their nationality to their children, regardless of the nationality of their father", - "values": [ - "Rights of the Child", - "Women's rights" - ] - }, - { - "text": "Continue legislative reforms to better fight discrimination against the Roma population and other minorities, racist violence, hate crimes and hate speech", - "values": [ - "Minorities", - "Racial discrimination" - ] - }, - { - "text": "Take effective measures to reduce poverty and unemployment in the country", - "values": [ - "Development", - "Poverty" - ] - }, - { - "text": "Continue to take agricultural productivity measures to ensure food security in the country", - "values": [ - "Right to food" - ] - }, - { - "text": "Ensure that Bahamian women are able to pass their nationality to their children on equal footing with men, including by withdrawing the reservation to Article 9 (2) of CEDAW ", - "values": [ - "International instruments", - "Rights of the Child", - "Women's rights" - ] - }, - { - "text": "Ratify the International Convention on the Protection of the Rights of All Migrant Workers and Members of Their Families.", - "values": [ - "International instruments", - "Labour", - "Migrants" - ] - }, - { - "text": "Complete the development of a new family policy to promote work-life balance and help improve gender equality in the workplace", - "values": [ - "Women's rights" - ] - }, - { - "text": "Repeal all provisions criminalizing same-sex relations between consenting adults", - "values": [ - "Sexual Orientation and Gender Identity" - ] - }, - { - "text": "Seek for technical capacity development assistance from the United Nations as well as its international development partners", - "values": [ - "Development", - "Technical assistance and cooperation" - ] - }, - { - "text": "Review domestic laws that have an impact on equality between women and men, in particular those that govern rights of succession, the disposal of immovable property and the establishment of a minimum age for marriage", - "values": [ - "Rights of the Child", - "Women's rights" - ] - }, - { - "text": "Take efforts toward the accession of international human rights instruments, including the International Convention on the Protection of the Rights of All Migrant Workers and Members of Their Families and the Convention against Torture", - "values": [ - "International instruments", - "Labour", - "Migrants", - "Torture and other CID treatment" - ] - }, - { - "text": "Reaffirm its commitment to freedom of assembly, a proportional and legitimate response to protest activity, and to a free media", - "values": [ - "Freedom of association and peaceful assembly", - "Freedom of the press" - ] - }, - { - "text": "Make progress in establishing complaints and prevention mechanisms for the forced sterilization of women, particularly Roma women and women with disabilities, which include reparation measures for the victims", - "values": [ - "Disabilities", - "Justice", - "Minorities", - "Torture and other CID treatment", - "Women's rights" - ] - }, - { - "text": "Continue to expand its successful awareness programmes on human rights", - "values": [ - "Human rights education and training" - ] - }, - { - "text": "Consider ratifying ICRMW", - "values": [ - "International instruments", - "Labour", - "Migrants" - ] - }, - { - "text": "Finalize, as soon as possible, the National Action Plan on the Rights of the Child and address, as a matter of priority, the issue of unaccompanied children", - "values": [ - "Rights of the Child" - ] - }, - { - "text": "Adopt measures to ensure that Dominican of Haitian descent are not denied citizenship or access to civil and birth registration procedures and are not arbitrarily subject to retroactive cancellation of birth and identity documents ", - "values": [ - "Minorities", - "Statelessness and the right to nationality" - ] - }, - { - "text": "Pending abolition, establish an independent and impartial body to conduct a review of all cases of persons sentenced to death, with a view to commuting the death sentences or at least ensuring fair trials that fully comply with international standards", - "values": [ - "Death penalty" - ] - }, - { - "text": "Establish - with the involvement of the Congolese civil society and the support of the international community in the process - independent and impartial specialized mixed chambers within the national judicial system to address crimes committed under international law and other serious human rights violations", - "values": [ - "Civil society", - "Justice", - "Technical assistance and cooperation" - ] - }, - { - "text": "Ratify CAT without delay ", - "values": [ - "International instruments", - "Torture and other CID treatment" - ] - }, - { - "text": "Take further measures to ensure that the definition of terrorist acts in Monaco is in line with its human rights obligations.", - "values": [ - "Counter-terrorism" - ] - }, - { - "text": "Consider ratification of the Convention against Torture and the Optional Protocol thereto.", - "values": [ - "Detention", - "International instruments", - "Torture and other CID treatment" - ] - }, - { - "text": "Introduce legal and practical measures aimed at eliminating discrimination against lesbian, gay, bisexual, transgender and intersex persons, including by raising public awareness of the issue, by passing appropriate anti-discrimination legislation and by repealing discriminatory legislation", - "values": [ - "Sexual Orientation and Gender Identity" - ] - }, - { - "text": "Strengthen the trafficking prevention programmes under the national strategy to combat human trafficking 2007-2012, with particular attention to children from disadvantaged groups ", - "values": [ - "Rights of the Child", - "Trafficking" - ] - }, - { - "text": "Continue efforts to promote gender equality and empower the position of women", - "values": [ - "Women's rights" - ] - }, - { - "text": "Review some reservations which Egypt has entered to human rights treaties in order to explore the feasibility of withdrawing them.", - "values": [ - "International instruments" - ] - }, - { - "text": "Continue efforts in ending the political instability in the country ", - "values": [ - "Other" - ] - }, - { - "text": "Continue its efforts to promote diversity in the society by using mass media ", - "values": [ - "Other" - ] - }, - { - "text": "Adopt more effective and strict good governance policies in order to ensure prosperity for the Afghan people ", - "values": [ - "Justice" - ] - }, - { - "text": "Conduct a national campaign for the universal provision of identity documents", - "values": [ - "Other" - ] - }, - { - "text": "Ensure that legislation, including the proposed Bill 8711, is fully compliant with Ukraine's international commitments, including under the European Convention on Human Rights", - "values": [ - "Sexual Orientation and Gender Identity" - ] - }, - { - "text": "Undertake a comprehensive reform of the institutions and judicial systems, including revision of the national criminal law and reform of the judiciary, with a view to complying with the international instruments to which it is a State party, including the International Covenant on Civil and Political Rights ICCPR ", - "values": [ - "International instruments", - "Justice" - ] - }, - { - "text": "Step up efforts to ensure the full respect of freedom of religion and worship, including by reviewing laws and provisions at all levels related to the freedom of religion, in order to align them with article 18 of ICCPR.", - "values": [ - "Freedom of religion and belief", - "International instruments" - ] - }, - { - "text": "Continue its efforts to achieve sustainable development and eradicate poverty", - "values": [ - "Development", - "Poverty" - ] - }, - { - "text": "Ensure the independent investigation of all allegations of extrajudicial killings and torture ", - "values": [ - "Extrajudicial executions", - "Torture and other CID treatment" - ] - }, - { - "text": "Put into operation the national law aimed against sexual harassment of women and girls especially at learning institutions", - "values": [ - "Rights of the Child", - "Women's rights" - ] - }, - { - "text": "Incorporate into national legislation provisions to ensure the effective implementation of the rights of men and women to equal pay for equal work", - "values": [ - "Women's rights" - ] - }, - { - "text": "Ensure equal rights for members of the Roma and Sinti minorities, to ensure that all Roma and Sinti children are enrolled in school, and to make efforts to encourage regular school attendance by these children", - "values": [ - "Minorities", - "Right to education" - ] - }, - { - "text": "Abolish legislation discriminating on the basis of sexual orientation, in order to guarantee the same rights to all citizens, including LGBT persons ", - "values": [ - "Sexual Orientation and Gender Identity" - ] - }, - { - "text": "Do more to combat all forms of discrimination, with a focus on vulnerable groups", - "values": [ - "Other" - ] - }, - { - "text": "Adopt legislation to monitor and eliminate violence against women and girls, including child kidnapping", - "values": [ - "Rights of the Child", - "Women's rights" - ] - }, - { - "text": "Establish specialized protection mechanisms to ensure the safe and independent work of civil society and human rights defenders", - "values": [ - "Civil society", - "Human rights defenders" - ] - }, - { - "text": "Improve the legal framework in the field of human rights, especially the rights of the child, women's rights, the rights of persons with disabilities and the rights of minorities ", - "values": [ - "Disabilities", - "Minorities", - "Rights of the Child", - "Women's rights" - ] - }, - { - "text": "Adopt measures to mitigate climate change risks ", - "values": [ - "Environment" - ] - }, - { - "text": "Intensify efforts to combat trafficking in girls and women for sexual exploitation through the implementation of a national strategy to combat this issue.", - "values": [ - "Rights of the Child", - "Trafficking", - "Women's rights" - ] - }, - { - "text": "Invite the UN Working Group on Enforced or Involuntary Disappearances and the Special Rapporteur on human rights defenders to visit the Philippines", - "values": [ - "Enforced disappearances", - "Human rights defenders", - "Special procedures" - ] - }, - { - "text": "In line with the recommendations made by the Committee on Economic, Social and Cultural Rights and the Committee on the Elimination of Discrimination Against Women, ensure strict control over the new work-permit system - intensify its efforts to bring to justice those involved in human trafficking - and commit itself to the full and speedy implementation of the Plan of Action for the Coordination of Actions on Combating Trafficking in Human Beings and Sexual Exploitation of Children ", - "values": [ - "Labour", - "Rights of the Child", - "Trafficking", - "Treaty bodies" - ] - }, - { - "text": "Continue to strengthen its legislative framework to promote and protect human rights", - "values": [ - "General" - ] - }, - { - "text": "Explore the possibility of consolidating existing Ombudsmen institutions and mechanisms into a single National Human Rights Institution in accordance with the Paris Principles and seek A-status accreditation by the ICC for NHRIs ", - "values": [ - "National Human Rights Institution" - ] - }, - { - "text": "Extend a permanent and open invitation to the United Nations human rights special procedures", - "values": [ - "Special procedures" - ] - }, - { - "text": "Ensure human rights protection to all people in Myanmar including the Rohingya", - "values": [ - "Freedom of religion and belief", - "Minorities" - ] - }, - { - "text": "Strengthen its international commitments by acceding to international conventions for the promotion and protection of human rights to which it is not yet party, and in particular the International Covenant on Civil and Political Rights ", - "values": [ - "CP rights - general", - "International instruments" - ] - }, - { - "text": "Strengthen the existing national plan of action on the protection of children, in particular on its policies in the prevention, recovery and reintegration of children victims of sexual exploitation", - "values": [ - "Rights of the Child" - ] - }, - { - "text": "Further reinforce efforts to immediately disband and disarm all paramilitary groups, including those that regrouped under different guises, and hold them accountable for their actions.", - "values": [ - "Justice" - ] - }, - { - "text": "Accelerate the process of creating a Human Rights Institution in conformity with the Paris Principles", - "values": [ - "National Human Rights Institution" - ] - }, - { - "text": "Release unconditionally the individuals who were convicted by special courts, or are awaiting trial, for merely exercising their fundamental rights of expression and assembly ", - "values": [ - "Freedom of association and peaceful assembly", - "Freedom of opinion and expression" - ] - }, - { - "text": "Conduct comprehensive reform of the penitentiary system ", - "values": [ - "Detention" - ] - }, - { - "text": "Continue to protect the right to life from conception to natural death", - "values": [ - "Other" - ] - }, - { - "text": "Implement those measures that the Government of Solomon Islands committed to promoting, in line with paragraph 125 of your national report", - "values": [ - "Development", - "Disabilities", - "International instruments", - "National Human Rights Institution", - "Treaty bodies", - "Women's rights" - ] - }, - { - "text": "Ratify all international human rights instruments that have already been signed", - "values": [ - "International instruments" - ] - }, - { - "text": "Ensure an environment where freedom of expression is respected and amend national laws to strengthen this right ", - "values": [ - "Freedom of opinion and expression" - ] - }, - { - "text": "Albania had been one of the first to ratify the Council of Europe Convention on preventing and combating violence against women and domestic violence and was implementing it, collaborating with NGOs and providing them with funds from the State budget. The Government was also committed to eliminating the gender wage gap, as well as the discrepancy between the content and the implementation of legislation and its implementation in that respect. ", - "values": [ - "Women's rights" - ] - }, - { - "text": "Intensify awareness-raising campaigns and education programmes on human rights in order to prevent ill-treatment of boys and girls", - "values": [ - "Human rights education and training", - "Torture and other CID treatment" - ] - }, - { - "text": "Request the international community to support its efforts with regard to its institutional and policy reforms in the field of national unity and social cohesion, gender equality and the protection of children's rights, by sharing best practices and by providing capacity-building and technical assistance as required ", - "values": [ - "Rights of the Child", - "Technical assistance and cooperation", - "Women's rights" - ] - }, - { - "text": "Intensify its efforts to fight against all forms of discrimination, be it racial, national or social, and to promote and protect dignity and equality which are the guiding principles of concrete and effective implementation of human rights. ", - "values": [ - "Racial discrimination" - ] - }, - { - "text": "Withdraw its reservations to CEDAW and ratify the Optional Protocol to CEDAW", - "values": [ - "International instruments", - "Women's rights" - ] - }, - { - "text": "Strengthen its efforts to combat racism, racial discrimination, xenophobia and related intolerance, and implement the recommendations of the Committee in this regard.", - "values": [ - "Racial discrimination", - "Treaty bodies" - ] - }, - { - "text": "Grant access to the three thematic Special Rapporteurs who have requested a visit", - "values": [ - "Special procedures" - ] - }, - { - "text": "Cooperate fully with the United Nations High Commissioner for Human Rights in accordance with resolution 13-14 of the Human Rights Council, and significantly improve its cooperation with the United Nations treaty bodies by agreeing on timelines for submitting overdue reports - and consider the need for external assistance to that end ", - "values": [ - "Treaty bodies" - ] - }, - { - "text": "Recommended that any restrictions on the activities of civil society be lifted and safeguards implemented to prevent human rights defenders from being prosecuted for their peaceful activities.", - "values": [ - "Civil society", - "Human rights defenders" - ] - }, - { - "text": "Complete the transfer of detainees to Ministry of Justice custody", - "values": [ - "Detention" - ] - }, - { - "text": "Increase poverty reduction and development policies that promote the participation of vulnerable groups in decisions regarding their rights and interests", - "values": [ - "Development", - "Poverty" - ] - }, - { - "text": "Ensure the independence, impartiality and effectiveness of the Special Investigations Unit and other relevant human rights institutions in investigating all allegations of torture and other ill-treatment, unlawful killings and deaths in custody", - "values": [ - "Detention", - "Human rights violations by state agents", - "Torture and other CID treatment" - ] - }, - { - "text": "Continue efforts to eliminate domestic violence against women and ensure that women are economically empowered ", - "values": [ - "Women's rights" - ] - }, - { - "text": "Continue with its resolve towards the promotion and protection of the human rights of all its citizens", - "values": [ - "General" - ] - }, - { - "text": "Take further measures to follow up on the recommendations of the Human Rights Committee and CEDAW related to anti-discrimination legislation.", - "values": [ - "Treaty bodies", - "Women's rights" - ] - }, - { - "text": "Pursue the current debate on the abolition of the death penalty in a transparent manner including with respect to civil society ", - "values": [ - "Civil society", - "Death penalty" - ] - }, - { - "text": "Strengthen efforts to raise awareness on human rights to all members of the society", - "values": [ - "Human rights education and training" - ] - }, - { - "text": "Consider the possibility of ratifying International Labour Organization Convention 189 on domestic workers", - "values": [ - "International instruments", - "Labour" - ] - }, - { - "text": "Continue to improve the conditions of persons deprived of liberty and expand the prison infrastructure in order to reduce overcrowding and improve detainees' living conditions ", - "values": [ - "Detention" - ] - }, - { - "text": "Continue the actions undertaken in the criminal processing of war crimes", - "values": [ - "Justice" - ] - }, - { - "text": "That the proposed draft law which would allow Lebanese women to pass on their nationality to their children and foreign spouses be adopted as soon as possible", - "values": [ - "Women's rights" - ] - }, - { - "text": "Ratify the Protocol to Prevent, Suppress and Punish Trafficking in Persons, Especially Women and Children, supplementing the United Nations Convention against Transnational Organized Crime and the Convention on Preventing and Combating Trafficking in Women and Children for Prostitution of the South Asian Association for Regional Cooperation", - "values": [ - "International instruments", - "Rights of the Child", - "Trafficking", - "Women's rights" - ] - }, - { - "text": "Adopt immediate and positive measures to combat all forms of discrimination, xenophobia and related intolerance against the Roma communities and other ethnic groups, with regard to access to housing, quality education, employment and health care", - "values": [ - "Labour", - "Minorities", - "Racial discrimination", - "Right to education", - "Right to health", - "Right to housing" - ] - }, - { - "text": "Pursue positive endeavours aimed at promoting and protecting the rights of women, including through the strengthening of the measures already taken to prevent and combat trafficking in women", - "values": [ - "Trafficking", - "Women's rights" - ] - }, - { - "text": "Extend an open invitation to the special procedures and follow the recommendations they have provided as well as those of the treaty bodies", - "values": [ - "Special procedures", - "Treaty bodies" - ] - }, - { - "text": "Continue the practices of valuing social dialogue and promoting the concept of tolerance in Omani culture", - "values": [ - "ESC rights - general" - ] - }, - { - "text": "Thoroughly investigate all reports of abductions and introduce a registry of prisoners available to the public ", - "values": [ - "Detention" - ] - }, - { - "text": "Continue efforts aimed at ratifying the Second Optional Protocol to the International Covenant on Civil and Political Rights, aiming at the abolition of the death penalty", - "values": [ - "Death penalty", - "International instruments" - ] - }, - { - "text": "Consider the ratification of CED and CRPD.", - "values": [ - "Disabilities", - "Enforced disappearances", - "International instruments" - ] - }, - { - "text": "Encourage the development of a National Action Plan on human rights", - "values": [ - "General" - ] - }, - { - "text": "Improve the collection and publishing of gender-specific data in the fields of economic and social development", - "values": [ - "ESC rights - general", - "Women's rights" - ] - }, - { - "text": "Enhance and, where appropriate, review the implementation of medium- and long-term strategies, including the Strategic Development Plan 2007-2011, the 2020 Plan for Indigenous Fijians, the National Policy for Persons Living with Disabilities 2008-2018 and the national AIDS strategy, inter alia, with a view to achieving further gains in the promotion and protection of human rights in the country", - "values": [ - "Disabilities", - "HIV - Aids", - "Indigenous peoples" - ] - }, - { - "text": "Continue with its efforts for the improvement of social-economic indicators through elimination of poverty and provision of better employment opportunities for its citizens ", - "values": [ - "ESC rights - general", - "Poverty" - ] - }, - { - "text": "Strengthen the independence of the National Human Rights Commission and provide it with the necessary resources to fulfil its mandate", - "values": [ - "National Human Rights Institution" - ] - }, - { - "text": "Ensure that the best interests of the child are fully considered when deciding on asylum applications", - "values": [ - "Asylum-seekers - refugees", - "Rights of the Child" - ] - }, - { - "text": "Develop comprehensive strategies and public awareness campaigns to address trafficking in persons, in particular children for the purpose of forced begging in neighbouring countries ", - "values": [ - "Human rights education and training", - "Labour", - "Rights of the Child", - "Trafficking" - ] - }, - { - "text": "Pursue efforts to implement the Plurinational Plan for Infants, Children and Adolescents 2014-2025", - "values": [ - "Rights of the Child" - ] - }, - { - "text": "Consider taking initial steps towards the ratification of ICRMW", - "values": [ - "International instruments", - "Labour", - "Migrants" - ] - }, - { - "text": "Continue its efforts in the promotion and protection of the rights of its children", - "values": [ - "Rights of the Child" - ] - }, - { - "text": "Reassess the possibility of signing and ratifying the Rome Statute of the International Criminal Court ", - "values": [ - "International instruments", - "Justice" - ] - }, - { - "text": "Impose a moratorium on the death penalty with a view to its later abolition and sign and ratify the Second Optional Protocol to the ICCPR", - "values": [ - "Death penalty", - "International instruments" - ] - }, - { - "text": "Continue to improve efforts to combat gender-based violence, and establish a mechanism for protecting abused women ", - "values": [ - "Women's rights" - ] - }, - { - "text": "Consider ratifying those main international instruments to which it is not party, particularly the Optional Protocols to the Convention on the Rights of the Child and conclude the ratification process of the Convention on the Rights of Persons with Disabilities ", - "values": [ - "Disabilities", - "International instruments", - "Rights of the Child" - ] - }, - { - "text": "Ratify OP-ICESCR ", - "values": [ - "ESC rights - general", - "International instruments" - ] - }, - { - "text": "Take measures to improve the efficiency of existing legislation in the area of trafficking in persons ", - "values": [ - "Trafficking" - ] - }, - { - "text": "Build on current efforts to improve the overall human rights environment in the country through restoring stable governance and the rule of law", - "values": [ - "Justice" - ] - }, - { - "text": "Take measures to guarantee the full and effective recognition of sexual and reproductive rights, especially through the decriminalization of abortion ", - "values": [ - "Women's rights" - ] - }, - { - "text": "Ratify and implement without delay the International Convention for the Protection of All Persons from Enforced Disappearance", - "values": [ - "Enforced disappearances", - "International instruments" - ] - }, - { - "text": "Maintain the momentum given to positive social policies relating to health care ", - "values": [ - "Right to health" - ] - }, - { - "text": "Combat the precarious situation of labour and poverty", - "values": [ - "Labour", - "Poverty" - ] - }, - { - "text": "Ensure that all members of ethnic and linguistic minorities, recognized as such or not, should enjoy all social rights and should be protected from any forms of discrimination ", - "values": [ - "Minorities", - "Racial discrimination" - ] - }, - { - "text": "Implement the recommendations of the Truth and Reconciliation Commission, in particular with regard to victim's compensation and institutional reforms", - "values": [ - "Justice" - ] - }, - { - "text": "Continue to engage all international bodies which are involved in the implementation of humanitarian assistance, such as ICRC, the International Organization for Migration and the Office of the United Nations High Commissioner for Refugees", - "values": [ - "Asylum-seekers - refugees" - ] - }, - { - "text": "Consider the abolition of the death penalty and accede to the Second Optional Protocol to ICCPR related to the abolition of the death penalty ", - "values": [ - "Death penalty", - "International instruments" - ] - }, - { - "text": "Issue a standing invitation to special procedures of the United Nations human rights system ", - "values": [ - "Special procedures" - ] - }, - { - "text": "Take the necessary measures to abolish the death penalty under its Military Law", - "values": [ - "Death penalty" - ] - }, - { - "text": "Continue to strengthen its efforts to ensure equal access for girls and women to all levels of education, including by taking concrete steps to overcome obstacles for girls' and women's access to, and completion of, education in rural areas ", - "values": [ - "Right to education", - "Rights of the Child", - "Women's rights" - ] - }, - { - "text": "Proceed to release immediately and unconditionally all political prisoners", - "values": [ - "Detention", - "Freedom of opinion and expression" - ] - }, - { - "text": "Continue to promote the participation of women in public and political life of the country", - "values": [ - "Women's rights" - ] - }, - { - "text": "Continue efforts towards achieving the poverty alleviation goals, and implement strategic plans and programmes related to poverty alleviation, including the national strategy for growth and the realization of the development goals ", - "values": [ - "Development", - "Poverty" - ] - }, - { - "text": "Further intensify its efforts to combat human trafficking", - "values": [ - "Trafficking" - ] - }, - { - "text": "Incite open, cognizant, public and expert discussions in Malta on introducing abortion legislation even though in limited cases where the mother's or child's life is at risk", - "values": [ - "Women's rights" - ] - }, - { - "text": "Recognize and respect the right of Palestinian people to self determination and end the occupation of all territories occupied since 1967", - "values": [ - "Other" - ] - }, - { - "text": "Develop an early-warning system by raising public awareness of the risks associated with migration and fictitious marriages ", - "values": [ - "Migrants" - ] - }, - { - "text": "Continue strengthening programs to combat domestic violence, including an awareness-raising plan", - "values": [ - "Human rights education and training", - "Rights of the Child", - "Women's rights" - ] - }, - { - "text": "Allocate more resources to improve educational infrastructure as well as to take the necessary steps to ensure that members of the local communities, especially those living in the rural areas, realize the importance of education for both boys and girls", - "values": [ - "Right to education", - "Rights of the Child" - ] - }, - { - "text": "Include a specific prohibition on discrimination on the basis of sexual orientation in the Anti-discrimination Law", - "values": [ - "Sexual Orientation and Gender Identity" - ] - }, - { - "text": "Ensure that the Philippine Development Plan for 2017-2022, the Conditional Cash Transfer Programme and the Sustainable Livelihood Programme continue to be adequately financed and are more targeted in their delivery, so that assistance can reach those most in need across the country", - "values": [ - "Development" - ] - }, - { - "text": "Continue to implement preventive and legal measures to put a halt to ritual infanticide", - "values": [ - "Rights of the Child" - ] - }, - { - "text": "Take measures to ensure that current legal protection of children is recognized and commonly known in public ", - "values": [ - "Rights of the Child" - ] - }, - { - "text": "Take urgent and concrete measures to ensure the practical enjoyment by the Roma of their rights", - "values": [ - "Minorities" - ] - }, - { - "text": "Continue to increase investment in education and strengthen infrastructure for education", - "values": [ - "Right to education" - ] - }, - { - "text": "Immediately release its remaining political prisoners, investigate reports of mistreatment and take action against those allegedly responsible in accordance with domestic and international law", - "values": [ - "Detention", - "Freedom of opinion and expression", - "Torture and other CID treatment" - ] - }, - { - "text": "Reconsider those provisions which criminalize consenting sexual relations between adults of the same sex, and intensify political initiative and legislative measures to combat any act of discrimination, including those committed against gender identity or sexual orientation ", - "values": [ - "Sexual Orientation and Gender Identity" - ] - }, - { - "text": "Implement and monitor the NHRAP, enabling civil society organizations to participate in the process", - "values": [ - "Civil society" - ] - }, - { - "text": "Pursue its initiative to include the subject of \u201chuman rights\u201c in its education curriculum, as it would facilitate national reconciliation by building trust and confidence in the society", - "values": [ - "Human rights education and training" - ] - }, - { - "text": "Take necessary measures to ensure that its commitment to eliminating racial discrimination is fully respected, particularly by law and order forces, as well as by the criminal justice system", - "values": [ - "Human rights violations by state agents", - "Justice", - "Racial discrimination" - ] - }, - { - "text": "Accelerate the process of ratification of the Optional Protocol to the Convention on the Rights of the Child on a communications procedure ", - "values": [ - "International instruments", - "Rights of the Child" - ] - }, - { - "text": "Facilitate enrolment of children with missing or incomplete documents, improve the safety situation at schools experiencing difficulties in that regard, and include human rights and child rights education in school curricula at all levels ", - "values": [ - "Human rights education and training", - "Right to education", - "Rights of the Child" - ] - }, - { - "text": "Note that traditional practices of compensation between the family of the perpetrators and the victims are inconsistent with human rights standards.", - "values": [ - "Justice", - "Women's rights" - ] - }, - { - "text": "Ensure that asylum seekers have free legal aid throughout the asylum procedure ", - "values": [ - "Asylum-seekers - refugees" - ] - }, - { - "text": "Adopt additional measures to achieve gender equality, in policy formulation and decision-making at all levels of Government", - "values": [ - "Women's rights" - ] - }, - { - "text": "Resolve gender inequality with regards to conferring Barbadian nationality from parents to their children", - "values": [ - "Rights of the Child", - "Women's rights" - ] - }, - { - "text": "Further strengthen its judicial institutions and the national human rights institution, in order to guarantee their effective independence ", - "values": [ - "Justice", - "National Human Rights Institution" - ] - }, - { - "text": "Organise regional and international conferences in cooperation with international and regional human rights organisations in order to exchange views, best practices and experiences in strengthening a human rights culture", - "values": [ - "Other" - ] - }, - { - "text": "Consider the ratification of major international human rights instruments ", - "values": [ - "International instruments" - ] - }, - { - "text": "Continue efforts towards female empowerment and achieve gender equality ", - "values": [ - "Women's rights" - ] - }, - { - "text": "Clarify its position on the death penalty, and reaffirm its commitment to a de facto moratorium", - "values": [ - "Death penalty" - ] - }, - { - "text": "Immediately end the occupation of Georgia's region of Abkhazia and the Tskhinvali region as an overreaching method for numerous different forms of severe human rights violations therein", - "values": [ - "International humanitarian law" - ] - }, - { - "text": "Overcome the challenges arising from the dramatic earthquake in 2010 by integrating a human rights approach into all its policies and practices", - "values": [ - "General" - ] - }, - { - "text": "Develop and implement alternate strategies to assist those being displaced as a result of the taking of land and ensure that those persons have adequate housing and access to basic services, health care and employment ", - "values": [ - "Development", - "Right to health", - "Right to housing", - "Right to land" - ] - }, - { - "text": "Steady implementation of the National Action Plan for the Promotion and Protection of Human Rights as well as the National Plan of Action to implement the recommendations of the Lessons Learnt and Reconciliation Commission", - "values": [ - "Justice" - ] - }, - { - "text": "To continue to implement the national strategy aimed at encouraging women to stand for elective and appointive positions in the public sector", - "values": [ - "Women's rights" - ] - }, - { - "text": "Continue to provide financial assistance for countries in need of socio-economic development and extend support for the global effort in the realization of the right to development as stipulated in the Millennium Development Goal 8.", - "values": [ - "Development", - "Technical assistance and cooperation" - ] - }, - { - "text": "Continue to put in place effective strategies to reduce poverty, particularly in rural areas.", - "values": [ - "Poverty" - ] - }, - { - "text": "Extend an open and standing invitation to the mandate holders of the human rights special procedures ", - "values": [ - "Special procedures" - ] - }, - { - "text": "Continue its efforts for the full implementation of the rural housing support programme", - "values": [ - "Right to housing" - ] - }, - { - "text": "For unaccompanied children, the United States is fully committed to holding children only for the shortest amount of time necessary to complete immigration processing and to treating the children with dignity and respect during their time in United States custody.", - "values": [ - "Detention", - "Migrants", - "Rights of the Child" - ] - }, - { - "text": "Take more effective measures to combat racial discrimination, in particular against vulnerable groups of women, especially Roma and migrant women, as well as measures to reinforce the respect of their human rights by all available means", - "values": [ - "Migrants", - "Minorities", - "Racial discrimination", - "Women's rights" - ] - }, - { - "text": "Ratify promptly the Convention on the Rights of Persons with Disabilities ", - "values": [ - "Disabilities", - "International instruments" - ] - }, - { - "text": "Continue its efforts to eradicate female genital mutilation", - "values": [ - "Rights of the Child", - "Torture and other CID treatment", - "Women's rights" - ] - }, - { - "text": "Proceed to all necessary legal and constitutional amendments in order to totally abolish the death penalty ", - "values": [ - "Death penalty" - ] - }, - { - "text": "Amend legislation in order to decriminalize abortion under certain circumstances, such as pregnancies that are the result of rape, as previously recommended", - "values": [ - "UPR process", - "Women's rights" - ] - }, - { - "text": "Expand the coverage of programmes that combat poverty, such as "Tekoporã" ", - "values": [ - "Poverty" - ] - }, - { - "text": "Reconsider the establishment of a moratorium on the use of the death penalty.", - "values": [ - "Death penalty" - ] - }, - { - "text": "Continue its ongoing efforts, in accordance with the Twenty-Year Vision Strategic Plan for Development, to achieve global and sustainable development", - "values": [ - "Development" - ] - }, - { - "text": "Continue its efforts to fight poverty and ensure sustainable development, and to implement at the maximum extent the national development strategy for 2006-2015 and the national poverty reduction strategy for 2010-2012", - "values": [ - "Development", - "Poverty" - ] - }, - { - "text": "Create the institution of ombudsman for children", - "values": [ - "National Human Rights Institution", - "Rights of the Child" - ] - }, - { - "text": "Implement a national action plan to combat corruption, including enhanced laws and enforcement, more resources dedicated to anti-corruption bodies, a review of law enforcement compensation, and a nation-wide educational campaign", - "values": [ - "Corruption", - "Right to education" - ] - }, - { - "text": "Further develop initiatives aimed at fighting judicial corruption, including through the implementation of adequate education of judges ", - "values": [ - "Justice" - ] - }, - { - "text": "Review the Law on the Protection of Minors against the Detrimental Effect of Public Information so that it could not be interpreted to prevent carrying out awareness-raising activities on issues of sexual orientation and gender identity", - "values": [ - "Rights of the Child", - "Sexual Orientation and Gender Identity" - ] - }, - { - "text": "Recommended that juvenile courts and justices be established to enhance access to justice of children in conformity with their specific needs.", - "values": [ - "Justice", - "Rights of the Child" - ] - }, - { - "text": "Amend laws on the minimum age of criminal responsibility, which make it possible to deal with some children as adult criminals", - "values": [ - "Justice", - "Rights of the Child" - ] - }, - { - "text": "Establish a moratorium on the death penalty as an interim measure towards its total abolition", - "values": [ - "Death penalty" - ] - }, - { - "text": "Ratify the CCPR, CESCR, Third Optional Protocol of CRC and CAT", - "values": [ - "CP rights - general", - "ESC rights - general", - "International instruments", - "Rights of the Child", - "Torture and other CID treatment" - ] - }, - { - "text": "Improve the protection of children by fighting against child labour ", - "values": [ - "Labour", - "Rights of the Child" - ] - }, - { - "text": "Submit its national reports to the relevant United Nations treaty bodies", - "values": [ - "Treaty bodies" - ] - }, - { - "text": "Continue to ensure that the laws at the provincial and national levels are consistent with international human rights law standards, and are effectively implemented", - "values": [ - "International instruments" - ] - }, - { - "text": "Further effectively implement the National Action Plan on Gender Equality and the Action Plan for Combating Domestic Violence by ensuring required financing and reinforcing the capacities of professionals", - "values": [ - "Rights of the Child", - "Women's rights" - ] - }, - { - "text": "Give a prominent role to civil society - not least women's organizations - in efforts to address domestic violence and violence against women and place focus on strengthening public awareness ", - "values": [ - "Civil society", - "Rights of the Child", - "Women's rights" - ] - }, - { - "text": "Investigate and prosecute all cases of harassment and discrimination of religious minorities and non-believers ", - "values": [ - "Freedom of religion and belief", - "Minorities" - ] - }, - { - "text": "Take into consideration the recommendations made by the Belgian Parliamentary Special Commission on "the treatment of sexual abuse and acts of paedophilia within a relation of authority, in particular in the Church" aiming at better ensure the rights of the juvenile victims of sexual offences and in particular to increase the limitation period applicable to crimes of rape of or sexual assaults on minors ", - "values": [ - "Justice", - "Rights of the Child" - ] - }, - { - "text": "Transform the de facto moratorium on the death penalty into an official moratorium with a view to fully abolishing the death penalty", - "values": [ - "Death penalty" - ] - }, - { - "text": "Intensify specifically its efforts to combat widespread violence against women and girls, including through gender-sensitive legislation, stronger enforcement of existing laws as well as by increasing public awareness and promoting gender equality", - "values": [ - "Human rights education and training", - "Rights of the Child", - "Women's rights" - ] - }, - { - "text": "Expand actions to combat violence against women as well as stereotypes, especially through outreach campaigns and bolstering the relevant national plans and programmes", - "values": [ - "Women's rights" - ] - }, - { - "text": "Pursue efforts to train personnel for the optimal care of children in the context of access to education and health care, and within the implementation of effective social programmes in these areas", - "values": [ - "Right to education", - "Right to health", - "Rights of the Child" - ] - }, - { - "text": "Strengthen further the capacity of the Office of the Commissioner on Human Rights in order to ensure its compliance with the Paris Principles", - "values": [ - "National Human Rights Institution" - ] - }, - { - "text": "Ratify the Rome Statute of the ICC and the Agreement on the Privileges and Immunities of the Court", - "values": [ - "International instruments", - "Justice" - ] - }, - { - "text": "Ratify and accede to the Convention on the Rights of Persons with Disabilities ", - "values": [ - "Disabilities", - "International instruments" - ] - }, - { - "text": "Increase the mandate and powers of the Special Office for Children to provide advisory or legal assistance in a wider range of cases", - "values": [ - "Rights of the Child" - ] - }, - { - "text": "Adopt more specific measures to prevent the practice of female genital mutilation", - "values": [ - "Rights of the Child", - "Torture and other CID treatment", - "Women's rights" - ] - }, - { - "text": "Fight the increased rate of persons subjected to sexual and gender- based violence", - "values": [ - "Women's rights" - ] - }, - { - "text": "Sign and ratify relevant international instruments relating to refugees and asylum seekers", - "values": [ - "Asylum-seekers - refugees", - "International instruments" - ] - }, - { - "text": "Continue its efforts to reduce maternal mortality and strengthen the health-care system", - "values": [ - "Right to health", - "Women's rights" - ] - }, - { - "text": "Enhance efforts to fight terrorism and continue raising awareness to fight against extremism", - "values": [ - "Public security" - ] - }, - { - "text": "Take additional measures notably in the areas of housing, employment, education and access to social services, particularly to benefit the Roma ", - "values": [ - "Labour", - "Minorities", - "Right to education", - "Right to housing" - ] - }, - { - "text": "Ratify the Convention on the Status of Stateless Persons", - "values": [ - "International instruments", - "Statelessness and the right to nationality" - ] - }, - { - "text": "In the field of the judicial reform system, continue implementing and taking further the Programme to Restructure the Justice system, through on-going training for public officials in the judiciary aiming at materializing a management model to guarantee access to justice in a timely, efficient, effective and quality manner ", - "values": [ - "Justice" - ] - }, - { - "text": "Accede to and fully align its national legislation with the Rome Statute of the International Criminal Court and accede to the Agreement on Privileges and Immunities of the Court", - "values": [ - "International instruments", - "Justice" - ] - }, - { - "text": "Take effective measures to curb discrimination and negative attitudes against migrants in Norway", - "values": [ - "Migrants", - "Racial discrimination" - ] - }, - { - "text": "Continue efforts to combat human trafficking ", - "values": [ - "Trafficking" - ] - }, - { - "text": "Take the necessary measures to ratify the Convention against Torture and Other Cruel, Inhuman or Degrading Treatment or Punishment and the International Convention for the Protection of All Persons from Enforced Disappearance", - "values": [ - "Enforced disappearances", - "International instruments", - "Torture and other CID treatment" - ] - }, - { - "text": "Continue its efforts to guarantee equality between women and men, and ensure the empowerment of women ", - "values": [ - "Women's rights" - ] - }, - { - "text": "Step up its efforts to guarantee security of human rights defenders and journalists, and to put an end to all impunity in this area", - "values": [ - "Freedom of the press", - "Human rights defenders", - "Impunity" - ] - }, - { - "text": "Urgently strengthen the capacities of the Asylum Service", - "values": [ - "Asylum-seekers - refugees" - ] - }, - { - "text": "Continue searching for a way to adopt a legal framework which will enable its citizens resident abroad to exercise their right to vote.", - "values": [ - "Elections" - ] - }, - { - "text": "Enhance efforts to guarantee freedom of expression and association, and reform the existing legislation on freedom of information in accordance with international standards", - "values": [ - "Freedom of association and peaceful assembly", - "Freedom of opinion and expression" - ] - }, - { - "text": "Accelerate the implementation of the package of measures for the protection of children, including the prompt adoption of a comprehensive Code of the Child, the establishment of a Children's Ombudsman with effective means, and the implementation of a plan to pull out children from streets", - "values": [ - "National Human Rights Institution", - "Rights of the Child" - ] - }, - { - "text": "Take adequate measures for better protecting human rights defenders and journalists", - "values": [ - "Freedom of the press", - "Human rights defenders" - ] - }, - { - "text": "Review its domestic legislation in order to criminalize sexual abuse within marriage", - "values": [ - "Women's rights" - ] - }, - { - "text": "Promote gender equality and pursue work on legislation on marital rape as a priority and consider additional measures, such as public awareness-raising initiatives or campaigns in order to promote the implementation of the rights in the legislation in question.", - "values": [ - "Human rights education and training", - "Women's rights" - ] - }, - { - "text": "Continue to implement provisions contained in the Family Code and the Comprehensive Act against Violence towards Women ", - "values": [ - "Women's rights" - ] - }, - { - "text": "Continue to work towards achieving gender equality and the attainment of the MDGs for all Algerians to improve the quality of living of its people", - "values": [ - "Development", - "Women's rights" - ] - }, - { - "text": "Continue to spearhead progress toward the promotion of gender equality and development for women, in particular in areas of education and employment", - "values": [ - "Women's rights" - ] - }, - { - "text": "Strengthen measures to ensure the independence of the judiciary, fight corruption and political interference and expand the State justice system effectively in rural territories. ", - "values": [ - "Corruption", - "Justice" - ] - }, - { - "text": "Continue to realize the right to work for its citizens, including through providing opportunities for vocational training and technical education for young people", - "values": [ - "Labour", - "Right to education" - ] - }, - { - "text": "An efficient follow-up system for the recommendations given by SUHAKAM be developed and measures taken to ensure the compliance of the Commission with the Paris Principles", - "values": [ - "National Human Rights Institution" - ] - }, - { - "text": "Promote public awareness and education on provisions under the new Domestic Violence Act of 2015", - "values": [ - "Rights of the Child", - "Women's rights" - ] - }, - { - "text": "Enact a specific law outlawing racist or xenophobic attitudes and prohibiting the display of racist symbols or signs reflecting a racist ideology in sport", - "values": [ - "Racial discrimination" - ] - }, - { - "text": "Take effective measures promptly to uphold the total prohibition against torture, in accordance with its international obligations under the Convention against Torture and Other Cruel, Inhuman or Degrading Treatment or Punishment (CAT) and to sign OP-CAT ", - "values": [ - "Detention", - "International instruments", - "Torture and other CID treatment" - ] - }, - { - "text": "Continue and intensify the actions to prohibit child marriage", - "values": [ - "Rights of the Child", - "Women's rights" - ] - }, - { - "text": "Ban corporal punishment sentences and life sentences, in particular for children ", - "values": [ - "Justice", - "Rights of the Child", - "Torture and other CID treatment" - ] - }, - { - "text": "Argentina commits itself to put into practice the mechanism contained in the Optional Protocol of the Convention against Torture and to continue the implementation of the National Plan to Combat Discrimination in all its aspects, and also to promote the second stage of the National Plan of Human Rights", - "values": [ - "Detention", - "International instruments", - "Torture and other CID treatment" - ] - }, - { - "text": "Uphold the respect of the right to peaceful assembly and ensure that the right is effectively implemented", - "values": [ - "Freedom of association and peaceful assembly" - ] - }, - { - "text": "Facilitate ratification of the Convention on the Rights of Persons with Disabilities", - "values": [ - "Disabilities", - "International instruments" - ] - }, - { - "text": "Strengthen measures to prevent cases of domestic violence and the killing of women, and ensure that perpetrators be taken to justice", - "values": [ - "Women's rights" - ] - }, - { - "text": "Continue working on the implementation of actions which ensure effective access of women victims of gender violence to justice, reparation and social reintegration", - "values": [ - "Women's rights" - ] - }, - { - "text": "Continue its awareness-raising measures to improve the poor rate of schooling for girls and their access to higher and technical studies ", - "values": [ - "Right to education", - "Rights of the Child", - "Women's rights" - ] - }, - { - "text": "Give consideration to incorporating the UN Rules for the Treatment of Women Prisoners and Non-Custodial Measures for Women Offenders, also known as the "Bangkok Rules", as part of its policy on the treatment of prisoners", - "values": [ - "Detention", - "Women's rights" - ] - }, - { - "text": "Ensure that all detainees are protected from torture or other illtreatment and that detention conditions meet the Standard Minimum Rules for the Treatment of Prisoners and the Basic Principles for the Treatment of Prisoners", - "values": [ - "Detention", - "Torture and other CID treatment" - ] - }, - { - "text": "Establish concrete goals to accelerate the achievement of substantive equality between women and men and ensure effective elimination of discrimination against women", - "values": [ - "Women's rights" - ] - }, - { - "text": "Provide training in human rights and international humanitarian law to TFG and AMISOM security and law enforcement forces ", - "values": [ - "Human rights education and training", - "International humanitarian law" - ] - }, - { - "text": "Enact legislation providing for public access to Government information ", - "values": [ - "Freedom of opinion and expression" - ] - }, - { - "text": "Do not prosecute those arrested for terrorist crimes or any other crime in exceptional tribunals or jurisdictions, but bring them to judicial instances legally established, with the protection of due process and under all the guarantees of the American Constitution ", - "values": [ - "Counter-terrorism", - "Justice" - ] - }, - { - "text": "Introduce additional measures to ensure that the new Media Act complies with regional and international human rights standards ", - "values": [ - "Freedom of the press", - "International instruments" - ] - }, - { - "text": "Continue efforts to eradicate extreme poverty and strengthen the right to health through the community health-care model ", - "values": [ - "Poverty", - "Right to health" - ] - }, - { - "text": "Continue its efforts to enhance the rights of women in particular to eliminate all forms of violence against women", - "values": [ - "Women's rights" - ] - }, - { - "text": "Continue and speed up efforts to promote economic, social and cultural rights for the whole population", - "values": [ - "ESC rights - general" - ] - }, - { - "text": "Continue measures to enhance the protection of the human rights of women and gender equality, taking into account the observations of the CEDAW Committee.", - "values": [ - "Treaty bodies", - "Women's rights" - ] - }, - { - "text": "Take appropriate legislative and administrative measures to combat domestic violence and physical ill-treatment against children, including the prohibition of the practice of corporal punishment", - "values": [ - "Rights of the Child", - "Torture and other CID treatment", - "Women's rights" - ] - }, - { - "text": "Ensure that human rights and fundamental freedoms enshrined in its Constitution are protected in the fight against terrorism and the national security plan and actions, pay particular attention to safeguarding the rights and safety of minorities and marginalized groups, as well as human rights defenders, refugees and stateless persons, address root causes of insecurity and radicalization and point out the need for a comprehensive counter-radicalization strategy", - "values": [ - "Asylum-seekers - refugees", - "Counter-terrorism", - "Human rights defenders", - "Minorities", - "Statelessness and the right to nationality" - ] - }, - { - "text": "Adhere to and adapt national legislation to the Arms Trade Treaty and sign the Treaty on the Prohibition of Nuclear Weapons", - "values": [ - "International instruments", - "Public security" - ] - }, - { - "text": "Continue devoting significant resources in education, with particular consideration to human rights", - "values": [ - "Human rights education and training", - "Right to education" - ] - }, - { - "text": "Continue to strengthen the relations with OHCHR", - "values": [ - "Technical assistance and cooperation" - ] - }, - { - "text": "Acknowledge the existence of the so-called \u201crehabilitation clinics\u201c and \u201csexual reorientation\u201c therapies and take measures to eradicate them", - "values": [ - "Sexual Orientation and Gender Identity" - ] - }, - { - "text": "Continue to direct attention to enhance human rights training for police officers and more effective ways of dealing with hate crimes", - "values": [ - "Racial discrimination" - ] - }, - { - "text": "Conduct investigation of reports related to crimes and violence by the police and the Carabineros against communities of indigenous peoples ", - "values": [ - "Human rights violations by state agents", - "Indigenous peoples" - ] - }, - { - "text": "Revise its Personal Status Act to ensure that women and men have equal rights", - "values": [ - "Women's rights" - ] - }, - { - "text": "Implement the national plan of action against ill-treatment 2011-2013 ", - "values": [ - "Torture and other CID treatment" - ] - }, - { - "text": "Follow up on the implementation of the Incheon Declaration for inclusive and equitable quality education", - "values": [ - "Right to education" - ] - }, - { - "text": "Ensure the right to vote for persons with disabilities, in line with the Convention on the Rights of Persons with Disabilities, and implement, among others, alternative measures to enable them to vote freely and in secret, and to easily access to facilities", - "values": [ - "Disabilities", - "Elections", - "International instruments" - ] - }, - { - "text": "Intensify its efforts in promoting literacy among the population, especially among rural women", - "values": [ - "Right to education", - "Women's rights" - ] - }, - { - "text": "Officially declare a moratorium on executions with a view to abolish the death penalty in future", - "values": [ - "Death penalty" - ] - }, - { - "text": "Adopt integrated local development plans to improve the living conditions and living standards of vulnerable populations", - "values": [ - "Development" - ] - }, - { - "text": "Immediately end all human rights violations and repression against the civilian population", - "values": [ - "Other" - ] - }, - { - "text": "Strengthen measures taken to combat human trafficking", - "values": [ - "Trafficking" - ] - }, - { - "text": "Continue national efforts for the establishment of specialized courts on violence against women, particularly domestic and sexual violence", - "values": [ - "Rights of the Child", - "Women's rights" - ] - }, - { - "text": "Continue to promote economic and social development ", - "values": [ - "Development" - ] - }, - { - "text": "Take legal and practical measures to eliminate violence and discrimination against women particularly in the rural and remote areas of Brazil ", - "values": [ - "Women's rights" - ] - }, - { - "text": "Continue strengthening efforts to guarantee access to adequate education for persons with disabilities ", - "values": [ - "Disabilities", - "Right to education" - ] - }, - { - "text": "Take effective measures to prosecute and punish trafficking and the exploitation of persons, as recommended by the Committee against Torture", - "values": [ - "Trafficking", - "Treaty bodies" - ] - }, - { - "text": "Allow all religious or belief communities to train their religious instructors in accordance with their own dogma and traditions", - "values": [ - "Freedom of religion and belief" - ] - }, - { - "text": "Rescind impediments to freedom of expression, association and peaceful assembly", - "values": [ - "Freedom of association and peaceful assembly", - "Freedom of opinion and expression" - ] - }, - { - "text": "Promote participation and representation of women in governmental and private sectors. ", - "values": [ - "Women's rights" - ] - }, - { - "text": "Consider ratifying the core human rights treaties, including the International Convention for the Protection of All Persons from Enforced Disappearance", - "values": [ - "Enforced disappearances", - "International instruments" - ] - }, - { - "text": "Consider the issuance of a standing invitation to these human rights mechanisms", - "values": [ - "Special procedures" - ] - }, - { - "text": "Intensify efforts to promote ethnic and religious tolerance in the country.", - "values": [ - "Freedom of religion and belief" - ] - }, - { - "text": "Take adequate steps to promote and protect the rights of asylum seekers, refugees and migrants", - "values": [ - "Asylum-seekers - refugees", - "Migrants" - ] - }, - { - "text": "Take steps to raise the standards of press freedom and to adapt the Printing Presses and Publication Act to facilitate independent news media coverage", - "values": [ - "Freedom of the press" - ] - }, - { - "text": "Request necessary technical assistance and cooperation for implementation of the recommendations accepted in the universal periodic review ", - "values": [ - "Technical assistance and cooperation", - "UPR process" - ] - }, - { - "text": "Consider in the drafting of the National Human Rights Plan the promotion and protection of lesbian, gay, bisexual, transgender and intersex persons", - "values": [ - "Sexual Orientation and Gender Identity" - ] - }, - { - "text": "Step up its efforts to eradicate child marriage and so-called \u201chonour crimes\u201c", - "values": [ - "Rights of the Child", - "Women's rights" - ] - }, - { - "text": "Find a formula to reinitiate a respectful dialogue between the various parties and to find a peaceful solution to the problem", - "values": [ - "General" - ] - }, - { - "text": "Introduce a moratorium on executions as soon as possible", - "values": [ - "Death penalty" - ] - }, - { - "text": "Repeal the Charities and Societies Proclamation in order to promote the development of an independent civil society able to operate freely ", - "values": [ - "Civil society", - "Freedom of association and peaceful assembly" - ] - }, - { - "text": "Continue its efforts in human rights education ", - "values": [ - "Human rights education and training" - ] - }, - { - "text": "Implementation of the Millennium Development Goals and Government development Strategies", - "values": [ - "Development" - ] - }, - { - "text": "More vigorously enhance provisions of human rights education in schools", - "values": [ - "Human rights education and training" - ] - }, - { - "text": "Abolish the death penalty and to consider ratifying the second Optional Protocol to ICCPR ", - "values": [ - "Death penalty", - "International instruments" - ] - }, - { - "text": "Impose a moratorium on executions immediately with the ultimate goal of abolishing the death penalty altogether.", - "values": [ - "Death penalty" - ] - }, - { - "text": "Establish an independent national human rights institution in compliance with the Paris Principles ", - "values": [ - "National Human Rights Institution" - ] - }, - { - "text": "Fund and implement a single plan and timeline with clear annual targets aimed at eliminating school segregation for Roma children and ensuring inclusive education", - "values": [ - "Minorities", - "Right to education", - "Rights of the Child" - ] - }, - { - "text": "Give continuity to fighting poverty and improving the quality of life of people ", - "values": [ - "Poverty" - ] - }, - { - "text": "Argentina reaffirms its commitment to continue strengthening the protection of human rights at a universal and regional level, and also to preserve and strengthen the role of NGOs in the promotion and defence of human rights.", - "values": [ - "Civil society" - ] - }, - { - "text": "Guarantee the right to freedom of assembly and of association in accordance with international obligations ", - "values": [ - "Freedom of association and peaceful assembly" - ] - }, - { - "text": "Take measures, including disciplinary measures, to bring to the attention of those working in the educational system, in particular teachers, their obligation to refrain from corporal punishment ", - "values": [ - "Right to education", - "Rights of the Child", - "Torture and other CID treatment" - ] - }, - { - "text": "Accept the Working Group on Enforced or Involuntary Disappearances request for visit", - "values": [ - "Enforced disappearances", - "Special procedures" - ] - }, - { - "text": "Take further measures to enhance the rights of regular and irregular migrants alike", - "values": [ - "Migrants" - ] - }, - { - "text": "Enhance its efforts to abolish the death penalty", - "values": [ - "Death penalty" - ] - }, - { - "text": "Develop concrete plans to address and control abuses perpetrated by gang inmates against other prisoners, as well as the corrupt practices of prison officials who have condoned and exacerbated violence and other dangerous conditions in the nation's detention centres", - "values": [ - "Detention" - ] - }, - { - "text": "Ensure that the authorities and police services put in place appropriate measures to eradicate domestic violence, beginning with the adoption and implementation of the draft law on domestic violence to which the Armenian delegation referred", - "values": [ - "Women's rights" - ] - }, - { - "text": "Take specific measures to protect women from being victims of discrimination and violence, including the promotion of women's rights through education and the media, further training of public officials, reduction in gender inequalities and empowerment of women", - "values": [ - "Human rights education and training", - "Women's rights" - ] - }, - { - "text": "Establish and implement concrete measures in conformity with CEDAW to modify and eliminate customs and cultural and harmful traditional practices that discriminate against women", - "values": [ - "International instruments", - "Torture and other CID treatment", - "Women's rights" - ] - }, - { - "text": "Continue to prioritize the allocation of resources to the key institutions in the criminal justice system and provide extensive training for judges, prosecutors, defence counsel and investigators to ensure safe prosecutions and respect for due process", - "values": [ - "Justice" - ] - }, - { - "text": "Not to treat the issue of Hijab for Muslims as if it were only an accessory or a religious symbol rather than a compulsory religious edict that a large number of Muslim women want to observe", - "values": [ - "Freedom of religion and belief", - "Minorities", - "Women's rights" - ] - }, - { - "text": "Undertake a comprehensive set of measures to tackle racism and racial discrimination and to combat more resolutely all its forms and manifestations ", - "values": [ - "Racial discrimination" - ] - }, - { - "text": "Continue initiatives aimed at promoting the participation of women, and continue literacy efforts, particularly for indigenous women", - "values": [ - "Indigenous peoples", - "Women's rights" - ] - }, - { - "text": "The delegation stated that Barbados had a reputation for the recognition of human rights and its support for the human rights system. It reaffirmed its commitment to furthering human rights. ", - "values": [ - "General" - ] - }, - { - "text": "Effectively address the issue of child marriage by encouraging girls to continue their education beyond the secondary level, and establish laws which eliminate early forced marriages of children", - "values": [ - "Right to education", - "Rights of the Child", - "Women's rights" - ] - }, - { - "text": "Re-establish a moratorium with a view to abolishing the death penalty", - "values": [ - "Death penalty" - ] - }, - { - "text": "Allow access without restrictions for United Nations humanitarian assistance and independent humanitarian organizations", - "values": [ - "Other" - ] - }, - { - "text": "Continue to strengthen the rule of law through the ongoing political transition, including by ensuring greater effectiveness and transparency in the judicial system ", - "values": [ - "Justice" - ] - }, - { - "text": "Expedite establishment of an independent monitoring mechanism of all places of detention ", - "values": [ - "Detention" - ] - }, - { - "text": "Adopt additional measures aimed at providing assistance for victims of sexual violence and combating this scourge ", - "values": [ - "Rights of the Child", - "Women's rights" - ] - }, - { - "text": "Amend article 26 of the Constitution to ensure that the permissible grounds for restricting the right to freedom of expression are consistent with international human rights norms", - "values": [ - "Freedom of opinion and expression", - "International instruments" - ] - }, - { - "text": "Adopt a comprehensive anti-discrimination law, providing a definition of direct and indirect discrimination", - "values": [ - "Other" - ] - }, - { - "text": "Ensure its legislation is in line with the International Covenant on Civil and Political Rights", - "values": [ - "CP rights - general", - "International instruments" - ] - }, - { - "text": "With regard to ensuring the right to food to the entire population, including in jails and labour camps, cooperate in a constructive manner with the competent United Nations institutions and facilitate the work of NGOs present in the country by guaranteeing their access to the entire population ", - "values": [ - "Civil society", - "Right to food" - ] - }, - { - "text": "Continue submitting periodic reports to the treaty bodies Lebanon is party to", - "values": [ - "Treaty bodies" - ] - }, - { - "text": "Set up strategies and establish mechanisms which encourage victims of marital violence to denounce their aggressors before the judicial authorities ", - "values": [ - "Women's rights" - ] - }, - { - "text": "Provide the Ministry of Social Development and Inclusion with the necessary resources for it to successfully carry out its functions", - "values": [ - "ESC rights - general" - ] - }, - { - "text": "Continue to engage its development partners like the African Development Bank and the New Partnership for Africa's Development (NEPAD) to ensure it meets its aims in the education sector", - "values": [ - "Right to education" - ] - }, - { - "text": "Accede to the CED ", - "values": [ - "Enforced disappearances", - "International instruments" - ] - }, - { - "text": "Continue implementing programs on growth employment and poverty reduction for 2012-2016, promote economic and social development, and promote and protect better all the rights of its people", - "values": [ - "Development", - "Poverty" - ] - }, - { - "text": "Take all measures to eliminate child labour ", - "values": [ - "Labour", - "Rights of the Child" - ] - }, - { - "text": "Take stronger measures to combat discrimination and other forms of intolerance, including by promoting tolerance and diversity, as well as prosecuting those responsible for such acts ", - "values": [ - "Racial discrimination" - ] - }, - { - "text": "Review Law 2003-25 of 23 June 2003 with a view to giving itself the appropriate means to eventually eradicate all forms of slavery and promptly adopt national action plans to this end", - "values": [ - "Other" - ] - }, - { - "text": "Take necessary measures to put into practice free education for the first six years of primary education and eradicate all discrimination, including class, gender and between rural and urban populations in the education system", - "values": [ - "Right to education" - ] - }, - { - "text": "Ensure prioritization of improving the living conditions of detainees.", - "values": [ - "Detention" - ] - }, - { - "text": "Expand the scope of the Labour Code to include all migrant workers ", - "values": [ - "Labour", - "Migrants" - ] - }, - { - "text": "Implement measures to protect journalists and human rights defenders, as well as effective policies to guarantee freedom of expression in Paraguay", - "values": [ - "Freedom of opinion and expression", - "Freedom of the press", - "Human rights defenders" - ] - }, - { - "text": "Review its domestic legislation and practice to bring them both in compliance with its international obligations in the area of the rights of the child, in particular regarding (i) protection against kidnapping and trafficking, and (ii) the juvenile justice system including through providing adequate separate facilities of corresponding capacity for juveniles in detention or prison and adopting specific measures for the protection of their human rights", - "values": [ - "Detention", - "Justice", - "Rights of the Child", - "Trafficking" - ] - }, - { - "text": "Decriminalize same-sex relations", - "values": [ - "Sexual Orientation and Gender Identity" - ] - }, - { - "text": "Develop human rights indicators, as suggested by the Office of the United Nations High Commissioner for Human Rights", - "values": [ - "Other" - ] - }, - { - "text": "Take the appropriate measures to address the disadvantage situation of girls concerning access to education, as well as reports on sexual violence and abuses committed in schools", - "values": [ - "Right to education", - "Rights of the Child", - "Women's rights" - ] - }, - { - "text": "Adopt national legislation according to the Optional Protocol to the Convention against Torture and other Cruel, Inhuman or Degrading Treatment or Punishment", - "values": [ - "Detention", - "International instruments", - "Torture and other CID treatment" - ] - }, - { - "text": "Ensure that immigrants gain access to professions reflecting their educational level and professional experience", - "values": [ - "Migrants" - ] - }, - { - "text": "Continue its efforts in respect of the Optional Protocol of the Convention against Torture.", - "values": [ - "Detention", - "International instruments", - "Torture and other CID treatment" - ] - }, - { - "text": "Ensure adequate follow up to the review of the Domestic Violence Act conducted in 2014-2015 in order to strengthen measures to prevent and combat against all forms of discrimination and violence against women, and consider adopting a national action plan to this end", - "values": [ - "Rights of the Child", - "Women's rights" - ] - }, - { - "text": "Continue to exert more effort to abolish child trafficking and sexual abuse of children and guarantee health and psychological care especially to the victims of rape, Rehabilitate them and support their inclusion in society, Ensure the prosecution and punishment of the perpetrators of those crimes and that they will not be exonerated ", - "values": [ - "Rights of the Child", - "Trafficking" - ] - }, - { - "text": "Cooperate with the Human Rights Committee and fully implement its views", - "values": [ - "Treaty bodies" - ] - }, - { - "text": "Issue a standing invitation to all United Nations special procedures", - "values": [ - "Special procedures" - ] - }, - { - "text": "Address how victims of sexual violence by illegal armed groups who are not considered parties to the conflict can access appropriate reparations ", - "values": [ - "International humanitarian law", - "Rights of the Child", - "Women's rights" - ] - }, - { - "text": "Pursue its international efforts in the promotion of truth, justice, reparations and guarantees of non-recurrence", - "values": [ - "Other" - ] - }, - { - "text": "Identify and implement best practices to combat child labour in violation of international standards in the fishing industry on Lake Volta", - "values": [ - "Business and human rights", - "Labour", - "Rights of the Child" - ] - }, - { - "text": "Intensify efforts for the full respect of the rights of women and people belonging to vulnerable groups including children, minorities and indigenous people and their protection from discriminatory practices.", - "values": [ - "Indigenous peoples", - "Minorities", - "Rights of the Child", - "Women's rights" - ] - }, - { - "text": "Continue to prioritize poverty elimination in its national development and enhance its people's well-being", - "values": [ - "Development", - "Poverty" - ] - }, - { - "text": "Continue to step up investment in agriculture and ensure food security", - "values": [ - "Right to food" - ] - }, - { - "text": "Continue its efforts particularly to ensure equal treatment in the education system and equal access to job opportunities ", - "values": [ - "Development", - "Right to education" - ] - }, - { - "text": "Adopt additional legislative measures on gender equality to ensure equal participation for women in all decision-making positions in all areas of public administration", - "values": [ - "Women's rights" - ] - }, - { - "text": "Establish a national human rights institution accredited by the International Coordinating Committee of National Institutions for the Promotion and Protection of Human Rights ", - "values": [ - "National Human Rights Institution" - ] - }, - { - "text": "Consider completing the ratification processes relating to the International Covenant on Civil and Political Rights and the International Covenant on Economic, Social and Cultural Rights, and the Convention against Torture ", - "values": [ - "CP rights - general", - "ESC rights - general", - "International instruments", - "Torture and other CID treatment" - ] - }, - { - "text": "Consider ratifying all core human rights conventions", - "values": [ - "International instruments" - ] - }, - { - "text": "Strengthen domestic cooperation between relevant actors, as well as international cooperation, in order to combat both internal and international trafficking and sexual exploitation of women and children ", - "values": [ - "Rights of the Child", - "Trafficking", - "Women's rights" - ] - }, - { - "text": "Further integrate persons with disabilities into society", - "values": [ - "Disabilities" - ] - }, - { - "text": "Take the necessary steps for the criminalization of all acts of intolerance and hate speech", - "values": [ - "Racial discrimination" - ] - }, - { - "text": "Strengthen efforts to combat smuggling and trafficking in persons, in order to eradicate this crime ", - "values": [ - "Trafficking" - ] - }, - { - "text": "Ensure separate juvenile detention facilities for all juvenile offenders.", - "values": [ - "Detention", - "Rights of the Child" - ] - }, - { - "text": "Amend its anti-discrimination law in order to ensure that discrimination on any grounds is prohibited in all areas of life", - "values": [ - "Other" - ] - }, - { - "text": "Reform the legislation with a view to providing women with equal rights in marriage, divorce, property relations, the custody of children and inheritance ", - "values": [ - "Women's rights" - ] - }, - { - "text": "Take steps to ensure that bodies entrusted with overseeing the protection of rights, such as the National Human Rights Commission, are fully mandated and resourced", - "values": [ - "National Human Rights Institution" - ] - }, - { - "text": "Explore the possibility of establishing an independent national human rights institution, in accordance with the Paris Principles", - "values": [ - "National Human Rights Institution" - ] - }, - { - "text": "Provide more school opportunities for children and strengthen education, vocational and technical training", - "values": [ - "Right to education", - "Rights of the Child" - ] - }, - { - "text": "Take measures to enforce legislation prohibiting child labour and to facilitate access to education for all children, particularly the poor and disadvantaged", - "values": [ - "Labour", - "Right to education", - "Rights of the Child" - ] - }, - { - "text": "Seek to engage with the international community, with the aim of integrating with the global system and supporting the gradual democratization of its system ", - "values": [ - "Technical assistance and cooperation" - ] - }, - { - "text": "Continue to strengthen and promote gender equality and to safeguard the rights of women ", - "values": [ - "Women's rights" - ] - }, - { - "text": "Give men and women equal rights of inheritance ", - "values": [ - "Women's rights" - ] - }, - { - "text": "Prohibit child recruitment into local defence forces or into any armed group ", - "values": [ - "Rights of the Child" - ] - }, - { - "text": "Efficiently implement recently ratified international conventions, especially in the field of child rights ", - "values": [ - "International instruments", - "Rights of the Child" - ] - }, - { - "text": "Extend a standing invitation to the special procedures mandate holders", - "values": [ - "Special procedures" - ] - }, - { - "text": "Ensure free birth registration and birth certificate issuance, at least for children up to 5 years of age", - "values": [ - "Rights of the Child", - "Statelessness and the right to nationality" - ] - }, - { - "text": "Consider the question of toughening the criminal liability for trafficking in human beings ", - "values": [ - "Trafficking" - ] - }, - { - "text": "Take further steps to increase the independence of the Anti-Corruption Agency so that it may thoroughly investigate credible allegations of corruption, and increase the number of prosecutions of these cases within the judicial system ", - "values": [ - "Corruption" - ] - }, - { - "text": "Continue to establish policy to support the creation of income-generating activities through the provision of ongoing training, the promotion of entrepreneurship and the granting of credit to specific projects", - "values": [ - "ESC rights - general" - ] - }, - { - "text": "Act swiftly to address issues of discrimination against girls in education, especially sexual abuse and harassment of girls in schools, as well as difficulties faced by children in rural areas in accessing education", - "values": [ - "Right to education", - "Rights of the Child", - "Women's rights" - ] - }, - { - "text": "Amend the Islamic Penal Code and outlaw inhuman corporal punishments", - "values": [ - "Torture and other CID treatment" - ] - }, - { - "text": "Consider improving assistance, including medical and social services, and shelter for trafficking victims, particularly women and children ", - "values": [ - "Rights of the Child", - "Trafficking", - "Women's rights" - ] - }, - { - "text": "Take action to implement the 2015 peace agreement envisaging a range of transitional justice, accountability and reconciliation institutions, which are essential for long-term peace in South Sudan", - "values": [ - "Justice" - ] - }, - { - "text": "Continue to promote the establishment of a national commission to search for girls and boys who disappeared during the internal armed conflict", - "values": [ - "Enforced disappearances", - "Rights of the Child" - ] - }, - { - "text": "Continue efforts aimed at ensuring access to basic education for all and measures to strengthen the performance of the education system", - "values": [ - "Right to education" - ] - }, - { - "text": "Build on the work of Fiji's Ministry of Women, Social Welfare and Poverty Alleviation to improve the protection of women and girls by effectively addressing gender-based violence, particularly intimate partner violence, and by advancing programmes to combat gender discrimination", - "values": [ - "Rights of the Child", - "Women's rights" - ] - }, - { - "text": "Continue to develop and implement strategies to counter the negative impacts of climate change in cooperation with and with assistance from the international community ", - "values": [ - "Environment", - "Technical assistance and cooperation" - ] - }, - { - "text": "Consider adopting laws and regulations in favour of children, abandoned minors, persons with disabilities and the elderly", - "values": [ - "Disabilities", - "Rights of the Child" - ] - }, - { - "text": "Continue to take effective measures to increase enrolment in primary and secondary schools, to reduce the high dropout rate of students, particularly in rural areas, and to address the lack of school infrastructure in those areas", - "values": [ - "Right to education" - ] - }, - { - "text": "Take the necessary measures to prohibit the sale and trafficking of children for prostitution or labour exploitation, and adopt a policy to confront the issue of trafficking and exploitation ", - "values": [ - "Rights of the Child", - "Trafficking" - ] - }, - { - "text": "Continue promoting the work of the Higher Committee for Migration in order to promote the rights of migrants and to implement the possibility for Egyptian migrants abroad to caste their vote", - "values": [ - "Elections", - "Migrants" - ] - }, - { - "text": "Take all necessary measures to guarantee full access to education for children belonging to Roma communities and support their social inclusion.", - "values": [ - "Minorities", - "Right to education", - "Rights of the Child" - ] - }, - { - "text": "Continue its efforts to transform its progress on the level of macroeconomic indicators into enhanced measures of social justice and elevated degrees of human development, particularly by ensuring universal, compulsory and free basic education ", - "values": [ - "Development", - "Right to education" - ] - }, - { - "text": "Sign and ratify the Optional Protocol to ICESCR as soon as possible", - "values": [ - "ESC rights - general", - "International instruments" - ] - }, - { - "text": "Abolish the death penalty for those under 18 years", - "values": [ - "Death penalty", - "Rights of the Child" - ] - }, - { - "text": "Investigate allegations of possible human rights violations by public security officials and reinforce the capacity to sanction those responsible and avoid impunity ", - "values": [ - "Human rights violations by state agents", - "Impunity" - ] - }, - { - "text": "Consider signing and ratifying the International Convention on the Protection of the Rights of All Migrant Workers and Members of Their Families ", - "values": [ - "International instruments", - "Labour", - "Migrants" - ] - }, - { - "text": "Engage the NGOs in the field of language protection in the follow-up to the UPR and in the preparation of the next UPR report", - "values": [ - "Civil society", - "UPR process" - ] - }, - { - "text": "Adopt the Code on the Protection of Children", - "values": [ - "Rights of the Child" - ] - }, - { - "text": "Take into account the situation and special needs of the Roma and migrants in the elaboration and implementation of all programmes and projects aimed at improving living conditions and the opportunities of the population in general ", - "values": [ - "Migrants", - "Minorities" - ] - }, - { - "text": "Allocate sufficient funds in order to ensure an effective implementation of the National Action Plan to reduce violence against women that came into force in 2010 ", - "values": [ - "Women's rights" - ] - }, - { - "text": "Continue addressing constitutional reform especially in relation to combating rural poverty and improving programmes to support the access of low-income families to food", - "values": [ - "Poverty", - "Right to food" - ] - }, - { - "text": "Continue its efforts in taking practical steps to further reduce the rates of maternal morbidity, particularly in the rural areas", - "values": [ - "Right to health", - "Women's rights" - ] - }, - { - "text": "Establish a moratorium on executions and ratify the ICCPR-OP 2, aiming at abolition of the death penalty ", - "values": [ - "Death penalty", - "International instruments" - ] - }, - { - "text": "Ensure that adequate human and financial resources are allocated for the implementation of programmes and activities on human rights", - "values": [ - "General" - ] - }, - { - "text": "Accelerate the implementation of the new law and regulations relating to juvenile justice", - "values": [ - "Justice", - "Rights of the Child" - ] - }, - { - "text": "Support further human rights training for police, corrections and justice officials. Promote regular, independent monitoring of detention facilities and ensure that detainees have immediate and effective means of redress and protection when their rights are violated.", - "values": [ - "Detention", - "Human rights education and training" - ] - }, - { - "text": "Enhance cooperation with the special procedures by encouraging visits by the working groups and special rapporteurs", - "values": [ - "Special procedures" - ] - }, - { - "text": "Consider increasing the minimum age of marriage", - "values": [ - "Rights of the Child" - ] - }, - { - "text": "Remove the crime of apostasy from its legislation", - "values": [ - "Freedom of religion and belief" - ] - }, - { - "text": "Continue the efforts made in the implementation of the recommendations made in the first UPR, as well as the current UPR ", - "values": [ - "UPR process" - ] - }, - { - "text": "Ratify the Optional Protocol of the Convention on the Elimination of All Forms of Discrimination against Women", - "values": [ - "International instruments", - "Women's rights" - ] - }, - { - "text": "Complete its legal framework by ratifying in particular the Convention against Torture and its Optional Protocol, the International Convention for the Protection of All Persons from Enforced Disappearance and the Rome Statute", - "values": [ - "Enforced disappearances", - "International instruments", - "Justice", - "Torture and other CID treatment" - ] - }, - { - "text": "Allow the Human Rights Council mandated Commission of Inquiry immediate and unhindered access to Syria", - "values": [ - "Other" - ] - }, - { - "text": "Ensure more freedom of movement for the Palestinians in the West Bank and particularly Gaza in order to assure adequate standards of living of the Palestinian people and improve their access to health, education and work.", - "values": [ - "Freedom of movement" - ] - }, - { - "text": "Ratify the Rome Statute of the International Criminal Court including its Agreement on Privileges and Immunities", - "values": [ - "International instruments", - "Justice" - ] - }, - { - "text": "Study the possibility of ratifying the CPED", - "values": [ - "Enforced disappearances", - "International instruments" - ] - }, - { - "text": "Continue the practice of holding public meetings with senior authorities in the country, so that persons from the communities can have access to higher authorities and participate in the process of seeking solutions and decision-making", - "values": [ - "CP rights - general" - ] - }, - { - "text": "Promptly ratify the Convention on the Rights of Persons with Disabilities and its Optional Protocol", - "values": [ - "Disabilities", - "International instruments" - ] - }, - { - "text": "Continue its cooperation with the international community, especially in two fields: the solution of problems of refugees and IDPs. and in its 2006-2015 State program on poverty alleviation and development", - "values": [ - "Asylum-seekers - refugees", - "Development", - "Internally displaced persons", - "Poverty" - ] - }, - { - "text": "Review the national implementation of the principle of non-refoulement ", - "values": [ - "Asylum-seekers - refugees" - ] - }, - { - "text": "Extend a standing invitation to all special procedures of the Human Rights Council", - "values": [ - "Special procedures" - ] - }, - { - "text": "Involve civil society in the implementation of recommendations, and follow up from the present review", - "values": [ - "Civil society", - "UPR process" - ] - }, - { - "text": "Intensify efforts to develop poverty alleviation programmes with specific attention to empower marginalised and vulnerable groups within the society, such as children, women and the elderly ", - "values": [ - "Poverty", - "Rights of the Child", - "Women's rights" - ] - }, - { - "text": "Address widespread impunity - including for attacks against journalists, civil society and human rights defenders, women and LGBTI persons - by conducting timely and impartial investigations, investigating threats of violence, and prosecuting perpetrators", - "values": [ - "Civil society", - "Freedom of the press", - "Human rights defenders", - "Impunity", - "Sexual Orientation and Gender Identity", - "Women's rights" - ] - }, - { - "text": "Consider ratifying ICRMW in accordance with recommendation no. 1737 of 17 March 2006 of the Parliamentary Assembly of the Council of Europe, of which Estonia is a member", - "values": [ - "International instruments", - "Labour", - "Migrants" - ] - }, - { - "text": "Implement, as speedily of possible, the legal, political and ministerial initiatives to eradicate the practice of torture and other forms of ill treatment by State officials.", - "values": [ - "Torture and other CID treatment" - ] - }, - { - "text": "Ratify the Kampala amendments to the Rome Statute on the crime of aggression", - "values": [ - "International instruments", - "Justice" - ] - }, - { - "text": "Take and strengthen necessary legislative measures required to incorporate in its domestic law the provisions contained in international human rights instruments to which it is a party.", - "values": [ - "International instruments" - ] - }, - { - "text": "Formulate and implement a national policy aimed at ensuring gender equality in the labour market ", - "values": [ - "Women's rights" - ] - }, - { - "text": "Establish a moratorium on the use of the death penalty with a view to its abolition and, in the meantime, immediately stop imposing the death penalty on anyone under the age of 18 ", - "values": [ - "Death penalty", - "Rights of the Child" - ] - }, - { - "text": "Pass legislation at the federal level to prohibit female genital mutilation and early forced marriages, and ensure that such legislation is enforced in practice ", - "values": [ - "Rights of the Child", - "Torture and other CID treatment", - "Women's rights" - ] - }, - { - "text": "Repeal the crime of sodomy as described in the Criminal Code and the Reform Act, 2006, and ensure that same-sex conduct between consenting adults is not subject to criminal sanctions", - "values": [ - "Sexual Orientation and Gender Identity" - ] - }, - { - "text": "Continue to strengthen current positive efforts aimed at increasing the rates of school enrolment of its citizens, with particular emphasis on boys and girls ", - "values": [ - "Right to education" - ] - }, - { - "text": "Consider the possibility of acceding to the International Covenant on Economic, Social and Cultural Rights and the International Covenant on Civil and Political Rights.", - "values": [ - "CP rights - general", - "ESC rights - general", - "International instruments" - ] - }, - { - "text": "Take, in collaboration with the international community and other United Nations specialized programs, concrete measures to ensure access to adequate food", - "values": [ - "Right to food" - ] - }, - { - "text": "Ratify the Convention against Torture and Other Cruel, Inhuman or Degrading Treatment of Punishment and its Optional Protocol ", - "values": [ - "Detention", - "International instruments", - "Torture and other CID treatment" - ] - }, - { - "text": "Continue stepping up efforts in the area of combating trafficking in persons, including considering acceding to the Palermo Protocol to Prevent, Suppress and Punish Trafficking in Persons, Especially Women and Children, and invite the Special Rapporteur on trafficking in persons, especially women and children", - "values": [ - "International instruments", - "Rights of the Child", - "Special procedures", - "Trafficking", - "Women's rights" - ] - }, - { - "text": "As a follow-up to the results of the review, design and implement a national programme to apply the initiatives and commitments mentioned in the national report ", - "values": [ - "UPR process" - ] - }, - { - "text": "Provide law enforcement and judicial officials with specific education-sensitivity training towards the protection of children, women and persons of minority sexual orientation or gender identity", - "values": [ - "Human rights education and training", - "Rights of the Child", - "Sexual Orientation and Gender Identity", - "Women's rights" - ] - }, - { - "text": "Continue its efforts with the technical and financial assistances from the internal community and with the help of the relevant United Nations agencies and bodies for institution-building required for promoting and protecting human rights in the country ", - "values": [ - "Technical assistance and cooperation" - ] - }, - { - "text": "Make greater efforts regarding prisons systems in a number of states of the federation in order to be transformed into rehabilitation centres.", - "values": [ - "Detention" - ] - }, - { - "text": "Continue the practice of adopting national plans of action on various fields with the purpose to improve the human rights situation in the country, as well as to implement some of the recommendations given by the United Nations treaty bodies", - "values": [ - "Treaty bodies" - ] - }, - { - "text": "Ratify and implement the CRPD", - "values": [ - "Disabilities", - "International instruments" - ] - }, - { - "text": "Accede to the Rome Statue to fully align its national legislation with the Rome Statute and to investigate and prosecute international crimes effectively before its national courts or enable the International Criminal Court to investigate these crimes", - "values": [ - "International instruments", - "Justice" - ] - }, - { - "text": "Take measures towards greater harmonization between national legislation and the United Nations Convention against Corruption", - "values": [ - "Corruption", - "International instruments" - ] - }, - { - "text": "Complete the ratification process of the Rome Statute as soon as possible and ensure that the Statute and the Agreement on Privileges and Immunities of the International Criminal Court are effectively implemented in national legislation.", - "values": [ - "International instruments", - "Justice" - ] - }, - { - "text": "Continue the practice of implementing programs aimed at further improving the welfare of the population ", - "values": [ - "Development" - ] - }, - { - "text": "Strengthen the existing legal framework to protect women against all forms of violence and eliminate all discriminatory gender-based legal norms", - "values": [ - "Women's rights" - ] - }, - { - "text": "Repeal those amendments to Hungary's Asylum Law, Law on Criminal Procedure and Criminal Code that are inconsistent with its international human rights obligations", - "values": [ - "Asylum-seekers - refugees", - "International instruments" - ] - }, - { - "text": "Strengthen its efforts to achieve a balance in terms of securing economic, social and cultural rights and civil and political rights on the other hand", - "values": [ - "CP rights - general", - "ESC rights - general" - ] - }, - { - "text": "Continue efforts to promote human rights training and education for the police and army", - "values": [ - "Human rights education and training" - ] - }, - { - "text": "Speed up the process of acceding to the Optional Protocol to the Convention on the Rights of the Child on the sale of children, child prostitution and child pornography and the Convention on the Rights of Persons with Disabilities ", - "values": [ - "Disabilities", - "International instruments", - "Rights of the Child", - "Trafficking" - ] - }, - { - "text": "Enhance women's access to health care, in particular to sexual and reproductive health services.", - "values": [ - "Women's rights" - ] - }, - { - "text": "Ensure that rape is diligently prosecuted as a grievous sexual assault", - "values": [ - "Women's rights" - ] - }, - { - "text": "Along with the ILO recommendation, continue providing information about the situation of Roma minority, adopt effective measures to integrate Roma minority into the economic, social and cultural life of the country ", - "values": [ - "ESC rights - general", - "Minorities" - ] - }, - { - "text": "Maintain as a high priority, the steps to safeguard the human rights of women and persons with disabilities", - "values": [ - "Disabilities", - "Women's rights" - ] - }, - { - "text": "Step up efforts to combat trafficking in human beings, including developing international cooperation with interested governments, international organizations and NGOs ", - "values": [ - "Civil society", - "Trafficking" - ] - }, - { - "text": "Ratify the Optional Protocol to the Convention against Torture and other Cruel, Inhuman or Degrading Treatment or Punishment", - "values": [ - "Detention", - "International instruments", - "Torture and other CID treatment" - ] - }, - { - "text": "Continue with its efforts to promote and protect human rights ", - "values": [ - "General" - ] - }, - { - "text": "Promote gender equality, increase women's participation in all aspects of society and implement the National Policy for the Advancement of Women ", - "values": [ - "Women's rights" - ] - }, - { - "text": "Develop policies, plans and information campaigns to eradicate at all levels stereotypes and discrimination against people based on their sexual orientation or gender identity, focusing particularly on public officials and those in charge of law enforcement", - "values": [ - "Sexual Orientation and Gender Identity" - ] - }, - { - "text": "Look further into improving its laws in the area of violence against women, in cooperation with the United Nations country team and the Committee on the Elimination of Discrimination against Women ", - "values": [ - "Treaty bodies", - "Women's rights" - ] - }, - { - "text": "Take immediate steps to fully implement the commitment on bringing about reforms to ensure that the electoral process and the legislative framework are in line with international standards and in particular to address concerns with regard the independence of the Zimbabwe Electoral Commission and the accuracy of the current voter roll ", - "values": [ - "Elections" - ] - }, - { - "text": "Guarantee freedom of expression and peaceful association and safeguard the activities of human rights defenders, in particular by promoting effective national policies to protect their initiatives", - "values": [ - "Freedom of association and peaceful assembly", - "Freedom of opinion and expression", - "Human rights defenders" - ] - }, - { - "text": "Continue to make further efforts to advance the human rights of socially vulnerable people, including persons with disabilities.", - "values": [ - "Disabilities" - ] - }, - { - "text": "End harassment and detention of persons who exercise their rights to freedom of assembly, association, expression and religion and release those currently held on such grounds", - "values": [ - "Freedom of association and peaceful assembly", - "Freedom of opinion and expression", - "Freedom of religion and belief" - ] - }, - { - "text": "Combat prevailing discrimination against children with disabilities and ensure the availability of appropriate health and equal educational services for children", - "values": [ - "Disabilities", - "Right to education", - "Right to health", - "Rights of the Child" - ] - }, - { - "text": "Increase the transparency of arrival and return procedures concerning immigrants and refugees", - "values": [ - "Asylum-seekers - refugees", - "Migrants" - ] - }, - { - "text": "Intensify programmes and activities and provide training and education on human rights issues to military and police officers ", - "values": [ - "Human rights education and training" - ] - }, - { - "text": "Continue to adopt measures to improve access to housing for persons with limited resources ", - "values": [ - "Right to housing" - ] - }, - { - "text": "Ratify the International Convention on the Protection of the Rights of All Migrant Workers and Members of Their Families at the earliest convenience", - "values": [ - "International instruments", - "Labour", - "Migrants" - ] - }, - { - "text": "The State is committed to acceding to the Convention on the Rights of Persons with Disabilities.", - "values": [ - "Disabilities", - "International instruments" - ] - }, - { - "text": "Reinforce and implement the protection of vulnerable groups, namely children, women, disabled, elderly, and make a greater effort to include ethnic and religious groups in the life of Myanmar society", - "values": [ - "Disabilities", - "Freedom of religion and belief", - "Minorities", - "Rights of the Child", - "Women's rights" - ] - }, - { - "text": "Maintain endeavours to decrease overcrowding of prisons and detention facilities through continued facility construction and improvements by other means", - "values": [ - "Detention" - ] - }, - { - "text": "Demand that Government representatives declare their assets as stipulated under the law and in a way that these could be verifiable ", - "values": [ - "Corruption" - ] - }, - { - "text": "Ensure the protection and advancement of women's rights, especially in rural areas, and, in particular, promoting wider participation of women in politics and decision-making on national and local levels and strengthening combating violence against women and children ", - "values": [ - "Rights of the Child", - "Women's rights" - ] - }, - { - "text": "Effectively regulate and implement the norms in force regarding the prohibition of discrimination on the basis of race, gender, disability or social condition", - "values": [ - "Disabilities", - "Poverty", - "Racial discrimination", - "Women's rights" - ] - }, - { - "text": "Establish appropriate policies in order to make the right to education for all a priority", - "values": [ - "Right to education" - ] - }, - { - "text": "Abolish the death penalty for all crimes, and ratify ICCPR-OP 2 ", - "values": [ - "Death penalty", - "International instruments" - ] - }, - { - "text": "Repeal laws that restrict civil rights, including the Royal Decree of 1973 and components of the Suppression of Terrorism Act, and develop a legislative framework to protect the rights to freedom of expression, association and peaceful assembly, including rights related to forming and participating in political parties and civil society organizations ", - "values": [ - "Civil society", - "Counter-terrorism", - "Freedom of association and peaceful assembly", - "Freedom of opinion and expression" - ] - }, - { - "text": "Adopt and implement all measures necessary to encourage and ensure access for girls, adolescents and women to adequate sexual and reproductive health services, including the provision of adequate contraceptive, family planning and obstetric information and facilities, according special attention to the prevention of early pregnancies and unsafe abortions", - "values": [ - "Right to health", - "Rights of the Child", - "Women's rights" - ] - }, - { - "text": "Strengthen the legal framework in order to ensure gender equality and ban discrimination on the grounds of sexual orientation and gender identity", - "values": [ - "Sexual Orientation and Gender Identity", - "Women's rights" - ] - }, - { - "text": "Fully implement the NHRAP ", - "values": [ - "General" - ] - }, - { - "text": "Continue its positive actions for further promoting the rights of disabled people ", - "values": [ - "Disabilities" - ] - }, - { - "text": "Enhance effort towards full integration of the Roma community into the society with a view to improve their overall living condition ", - "values": [ - "Minorities" - ] - }, - { - "text": "Ensure that the definition of rape in the Faroese legislation is brought into line with international standards so that rape is criminalized in all circumstances, including within marriage", - "values": [ - "Women's rights" - ] - }, - { - "text": "Adopt legal and administrative measures to make effective the investigation and sanction of violations of human rights during international operations, in which members of armed forces and other government agents participate", - "values": [ - "International humanitarian law" - ] - }, - { - "text": "Ensure effective and independent investigations into all reports of extrajudicial executions and ensure that reports of killings, threats, attacks and acts of intimidation against human rights defenders and journalists are thoroughly and promptly investigated and those responsible brought to justice", - "values": [ - "Extrajudicial executions", - "Freedom of the press", - "Human rights defenders" - ] - }, - { - "text": "Adopt a national legislation in order to implement the recommendation of the CERD regarding the absence of penal norm explicitly prohibiting racial discrimination", - "values": [ - "Racial discrimination", - "Treaty bodies" - ] - }, - { - "text": "Increase its efforts in ensuring full compliance of its domestic legislation with the Convention on the Rights of the Child, including by introducing a legal minimum age for criminal accountability in line with international standards", - "values": [ - "International instruments", - "Rights of the Child" - ] - }, - { - "text": "Continue to take measures to improve the socio-economic and educational situation of the Roma in order to enable them to emerge from social exclusion and marginalization", - "values": [ - "Minorities" - ] - }, - { - "text": "Intensify its efforts to collect more disaggregated data in different sectors ", - "values": [ - "Other" - ] - }, - { - "text": "Take firm action in collaboration with the international community to decisively combat the destructive trend of drug trafficking.", - "values": [ - "Technical assistance and cooperation", - "Trafficking" - ] - }, - { - "text": "Punish severely the perpetrators of paedophile tourism and sensitize the population to the negative effects of sex tourism", - "values": [ - "Rights of the Child" - ] - }, - { - "text": "Make all efforts to guarantee and to protect the rights and freedoms enshrined in the international instruments the country is a party to", - "values": [ - "International instruments" - ] - }, - { - "text": "Take measure to prevent trafficking in children and their sexual exploitation by establishing education programmes and developing support services for them ", - "values": [ - "Rights of the Child", - "Trafficking" - ] - }, - { - "text": "Consider the ratification of CRC and its Optional Protocols ", - "values": [ - "International instruments", - "Rights of the Child" - ] - }, - { - "text": "Fully cooperate with the competent humanitarian organizations with a view to ensuring the protection of the internally displaced, particularly women and children. ", - "values": [ - "Internally displaced persons", - "Rights of the Child", - "Women's rights" - ] - }, - { - "text": "Implement the Rome Statute of the International Criminal Court into national law", - "values": [ - "International instruments", - "Justice" - ] - }, - { - "text": "Continue to collaborate closely with the donor community, United Nations agencies, international financial institutions and civil society organizations to develop stronger institutional capacity and align national policies and priorities with international norms and Myanmar's treaty obligations ", - "values": [ - "Civil society", - "Technical assistance and cooperation" - ] - }, - { - "text": "Enhance efforts to alleviate prison overcrowding and improve the overall conditions in places of detention, including assessing the impact and effectiveness of measures adopted thus far to address this issue", - "values": [ - "Detention" - ] - }, - { - "text": "Accede to the remaining core international human rights instruments such as ICESCR, ICERD ", - "values": [ - "ESC rights - general", - "International instruments", - "Racial discrimination" - ] - }, - { - "text": "Continue its efforts to guarantee the rights of migrants, in particular migrant workers and members of their families", - "values": [ - "Labour", - "Migrants" - ] - }, - { - "text": "Ensure respect for the right to a private life, as guaranteed by the International Covenant on Economic, Social and Cultural Rights, to which the Libyan Arab Jamahiriya is a State party, by reviewing its national law criminalizing consensual sexual relations out of wedlock ", - "values": [ - "International instruments" - ] - }, - { - "text": "Take the necessary measures to strengthen the independence of the judiciary, to eliminate corruption and to ensure that the conditions of persons deprived of their liberty are in conformity with relevant international standards.", - "values": [ - "Corruption", - "Justice" - ] - }, - { - "text": "Fully and immediately implement all Council resolutions in relation to the situation of human rights in the occupied territories.", - "values": [ - "Other" - ] - }, - { - "text": "Ratify and begin implementing as soon as possible the Council of Europe Convention on Preventing and Combating Violence against Women and Domestic Violence", - "values": [ - "International instruments", - "Rights of the Child", - "Women's rights" - ] - }, - { - "text": "Ensure adequate registration of discriminatory motives by raising awareness among the legal profession and law enforcement officials of the need to recognize aggravated circumstances specific to hate crimes and discrimination at all levels of prosecution and criminal procedures ", - "values": [ - "Racial discrimination" - ] - }, - { - "text": "Amend the Right to Information Bill in line with the recommendations made by CHRAJ", - "values": [ - "Freedom of opinion and expression", - "National Human Rights Institution" - ] - }, - { - "text": "Swiftly ratify the Convention against Torture and Other Cruel, Inhuman or Degrading Treatment or Punishment and its Optional Protocol, ensure that domestic legislation defines torture in line with international standards, and extend an invitation to the Special Rapporteur on torture and other cruel, inhuman or degrading treatment or punishment for an official visit to the country", - "values": [ - "International instruments", - "Special procedures", - "Torture and other CID treatment" - ] - }, - { - "text": "Enact a progressive, substantive Freedom of Information law ", - "values": [ - "Freedom of opinion and expression" - ] - }, - { - "text": "Strengthen measures aimed at fighting against impunity among perpetrators of acts of sexual violence", - "values": [ - "Impunity", - "Rights of the Child", - "Women's rights" - ] - }, - { - "text": "Protect the rights of children", - "values": [ - "Rights of the Child" - ] - }, - { - "text": "Continue and strengthen the promotion of the rights of migrants residing in the United Kingdom", - "values": [ - "Migrants" - ] - }, - { - "text": "Consider ratifying the Convention against Torture and its Optional Protocol", - "values": [ - "Detention", - "International instruments", - "Torture and other CID treatment" - ] - }, - { - "text": "Develop a national action plan against racism in line with the Durban Declaration and Programme of Action", - "values": [ - "Racial discrimination" - ] - }, - { - "text": "Continue to strengthen access to education through various programmes and initiatives", - "values": [ - "Right to education" - ] - }, - { - "text": "Cease the harassment and persecution of human rights defenders and civil society organizations, including by ensuring that the implementing regulations for amendments to the Law on Public Associations are not used to harass NGOs through surprise inspections, onerous information requests, and other inhibiting tactics ", - "values": [ - "Civil society", - "Freedom of association and peaceful assembly" - ] - }, - { - "text": "Refrain from lowering the age of criminal responsibility in line with commitments under the Convention of the Rights of the Child", - "values": [ - "International instruments", - "Rights of the Child" - ] - }, - { - "text": "Enact appropriate legislation and accelerate the process of recognizing erased citizens", - "values": [ - "Other", - "Statelessness and the right to nationality" - ] - }, - { - "text": "Promote relevant national strategy in order to change its traditional practices and stereotypes regarding women to better protect women's physical and psychological integrity ", - "values": [ - "Women's rights" - ] - }, - { - "text": "Conduct a public awareness campaign, with engagement at the highest political levels, to strengthen the implementation of the 2006 Prevention of Domestic Violence Act, and highlight the unacceptability of violence against women and address the attitudes and stereotypes that perpetuate discriminatory practices that are harmful and violent towards women", - "values": [ - "Human rights education and training", - "Torture and other CID treatment", - "Women's rights" - ] - }, - { - "text": "Consolidate the achievements in the field of human rights protection by strengthening the financial resources allocated to the Commission for Human Rights and Good Governance", - "values": [ - "National Human Rights Institution" - ] - }, - { - "text": "Increase efforts to develop a system of education in the area of human rights and to strengthen the culture of human rights in society", - "values": [ - "Human rights education and training" - ] - }, - { - "text": "Strictly enforce relevant laws, with equal emphasis on care and rehabilitation, and prosecute those responsible in order to provide meaningful results and ensure the protection of women and children, especially in the eastern part of the country ", - "values": [ - "Justice", - "Rights of the Child", - "Women's rights" - ] - }, - { - "text": "Introduce advanced teaching methods to improve quality education in the country and further promote cooperation with relevant international organizations and foreign countries in this regard ", - "values": [ - "Right to education", - "Technical assistance and cooperation" - ] - }, - { - "text": "Pursue its positive efforts for the promotion and protection of the rights of women", - "values": [ - "Women's rights" - ] - }, - { - "text": "Work towards strengthening the independence of the judiciary through the adoption of the Judges Bill of 2014", - "values": [ - "Justice" - ] - }, - { - "text": "Promote and advance policies that focus on the alleviation of poverty and the advancement of its entire people ", - "values": [ - "Poverty" - ] - }, - { - "text": "Carry out the necessary efforts to increase expenditures for social programmes, particularly relative to education and access to housing ", - "values": [ - "Right to education", - "Right to housing" - ] - }, - { - "text": "Accelerate its efforts to achieve the targets on reducing infant mortality rate and achieving universal health-care scheme, including improving of the maternal health in remote areas", - "values": [ - "Right to health", - "Rights of the Child", - "Women's rights" - ] - }, - { - "text": "Adopt concrete measures to avoid discrimination and protect the rights of the Batwa community and other minorities, as well as request technical assistance from the United Nations to identify their basic social needs ", - "values": [ - "Indigenous peoples", - "Technical assistance and cooperation" - ] - }, - { - "text": "Ratify the Convention against Discrimination in Education of the United Nationas Educational, Scientific and Cultural Organization", - "values": [ - "International instruments", - "Right to education" - ] - }, - { - "text": "Intensify efforts to combat human trafficking and provide adequate resources to increase the quality of services provided for victims of trafficking", - "values": [ - "Trafficking" - ] - }, - { - "text": "Respect the rights to freedom of expression, association and assembly by allowing human rights defenders, political dissidents and journalists to express their views freely in line with international human rights law ", - "values": [ - "Freedom of association and peaceful assembly", - "Freedom of opinion and expression", - "Freedom of the press", - "Human rights defenders" - ] - }, - { - "text": "Continue with the measures aimed at improving the protection and integration of persons with disabilities, in particular in the areas of access to education and public transport ", - "values": [ - "Disabilities" - ] - }, - { - "text": "Speed up the ratification of the Conventions and Protocols recommended during its 2008 Universal Periodic Review (UPR) and already under way, including Convention on the Rights of Persons with Disabilities (CRPD), its Optional Protocol and Optional Protocol to the Convention on the Elimination of All Forms of Discrimination against Women (OP-CEDAW) ", - "values": [ - "Disabilities", - "International instruments", - "UPR process", - "Women's rights" - ] - }, - { - "text": "Continue improving the situation of children, who were at risk, especially girls", - "values": [ - "Rights of the Child", - "Women's rights" - ] - }, - { - "text": "Eliminate discrimination against migrants and religious and ethnic minorities and ensure equal opportunity for enjoyment of their economic, social and cultural rights ", - "values": [ - "ESC rights - general", - "Freedom of religion and belief", - "Migrants", - "Minorities", - "Racial discrimination" - ] - }, - { - "text": "Take concrete measures to implement the Public Policy and National Action Plan on Human Rights, including the assigning of appropriate funding", - "values": [ - "General" - ] - }, - { - "text": "Continue to put in place policies and programmes aimed at eliminating all discrimination against women and achieving gender equality, including active promotion of higher education for women and improving the number of women holding decision-making positions in public and private sectors", - "values": [ - "Right to education", - "Women's rights" - ] - }, - { - "text": "Establish a time frame and a follow-up mechanism regarding the improvements on the situation of detainees in prisons.", - "values": [ - "Detention" - ] - }, - { - "text": "Continue to offer programmes to train women in political leadership and implement awareness campaigns with respect to the their political participation.", - "values": [ - "Human rights education and training", - "Women's rights" - ] - }, - { - "text": "Step up the reform aimed at adapting the Constitution to the international standards in the field of protection of human rights", - "values": [ - "International instruments" - ] - }, - { - "text": "Establish a formal moratorium on the death penalty with a view to abolishing the death penalty and ratifying the Second Optional Protocol to the International Covenant on Civil and Political Right, aiming at the abolition of the death penalty ", - "values": [ - "Death penalty", - "International instruments" - ] - }, - { - "text": "Consider progressively withdrawing its reservations to international human rights instruments", - "values": [ - "International instruments" - ] - }, - { - "text": "Consider positively acceding to the Optional Protocol to the Convention against Torture and Other Cruel, Inhuman or Degrading Treatment or Punishment", - "values": [ - "Detention", - "International instruments", - "Torture and other CID treatment" - ] - }, - { - "text": "Exert more effort to enable women's participation in the political and the public life, and eliminating the barriers that prevent women from enjoying their rights, whether cultural or societal", - "values": [ - "Women's rights" - ] - }, - { - "text": "Continue the efforts in favour of the promotion of women's rights", - "values": [ - "Women's rights" - ] - }, - { - "text": "Working jointly with the Federal States to improve detention conditions in Brazilian prisons", - "values": [ - "Detention" - ] - }, - { - "text": "Reform the legislation on family life, especially the law on legal marriage age, which sets it at 15 years for girls and boys and which should be raised to 18 years, at a minimum", - "values": [ - "Rights of the Child", - "Women's rights" - ] - }, - { - "text": "Bring into line the Law on Gender Equality with the Law on the Elimination of All Forms of Discrimination, combating the patriarchal attitudes and stereotypes on the roles and responsibilities of women and men", - "values": [ - "Women's rights" - ] - }, - { - "text": "Ratify the Convention [ICRMW]", - "values": [ - "International instruments", - "Labour", - "Migrants" - ] - }, - { - "text": "Further enhance efforts to achieve the remaining Millennium Development Goals", - "values": [ - "Development" - ] - }, - { - "text": "Ratify the Convention on the Protection of the Rights of All Migrant Workers and Members of Their Families, improve the situation of detention of migrants and shorten the time they spent in detention facilities, punish all acts of violence against a migrant committed by any citizen, law enforcement officer, judicial or Government authority so that there is no room for impunity", - "values": [ - "Detention", - "Human rights violations by state agents", - "Impunity", - "International instruments", - "Labour", - "Migrants" - ] - }, - { - "text": "Enhance its efforts to promote the human rights of persons with disabilities in all fields", - "values": [ - "Disabilities" - ] - }, - { - "text": "End the strict system of male guardianship and give full legal identity to Saudi women", - "values": [ - "Women's rights" - ] - }, - { - "text": "Adopt legislation in the area of trafficking of persons and sexual exploitation and increase financial and human resources to strengthen existing preventive mechanisms and support services for victims", - "values": [ - "Trafficking" - ] - }, - { - "text": "Work on rights-related legislation with its Constitutional Court and Human Rights Commissioner to ensure legislation aligns with Russia's international obligations ", - "values": [ - "National Human Rights Institution" - ] - }, - { - "text": "Repeal legal provisions criminalising sexual activity between consenting adults of the same sex", - "values": [ - "Sexual Orientation and Gender Identity" - ] - }, - { - "text": "Amend the Criminal Procedural Code to the effect that detention records have to record the identity of the officers involved in detaining a person, in line with Principle 12 of the Body of Principles for the Protection of All Persons under Any Form of Detention or Imprisonment", - "values": [ - "Detention" - ] - }, - { - "text": "Persist in its efforts to ensure equality between the rights of men and women, including through social sensitization actions ", - "values": [ - "Human rights education and training", - "Women's rights" - ] - }, - { - "text": "Organize a visit to the country by the Special Rapporteur on the sale of children, child prostitution and child pornography, the Special Rapporteur on contemporary forms of racism, racial discrimination, xenophobia and related intolerance, and the Special Rapporteur on the human rights of migrants ", - "values": [ - "Migrants", - "Racial discrimination", - "Rights of the Child", - "Special procedures", - "Trafficking" - ] - }, - { - "text": "Consider the creation of a body responsible for the follow up of the implementation of international human rights treaty obligations and implementation of recommendations of United Nations bodies with competence in this area", - "values": [ - "Special procedures", - "Treaty bodies", - "UPR process" - ] - }, - { - "text": "Strengthen measures to progressively reduce the illiteracy rate in the country", - "values": [ - "Right to education" - ] - }, - { - "text": "Consider further expanding its birth registration programme towards achieving universal birth registration coverage", - "values": [ - "Rights of the Child", - "Statelessness and the right to nationality" - ] - }, - { - "text": "Ratify the ILO Convention on decent work for domestic workers ", - "values": [ - "International instruments", - "Labour" - ] - }, - { - "text": "Take all necessary measures to enhance the effectiveness of its national policy on the rights of persons with disabilities", - "values": [ - "Disabilities" - ] - }, - { - "text": "Seek to ensure effective participation of the Roma in the process of ensuring their equal and non-discriminatory treatment ", - "values": [ - "Minorities" - ] - }, - { - "text": "Consider enshrining in law, protection for rights for 16- to 18-year- olds, either by amending the Children and Young Persons Act or through other legislation", - "values": [ - "Rights of the Child" - ] - }, - { - "text": "Bhutan remains committed to constructive engagement with human rights mechanisms of the UN. Bhutan has received and will continue to receive visits of Special Rapporteurs and other Special Procedures mandate holders of the Human Rights Council, taking into account its capacity, national priorities, as well as the need for adequate preparations for such visits", - "values": [ - "Special procedures", - "Treaty bodies", - "UPR process" - ] - }, - { - "text": "Enact legislation that prohibits all forms of human trafficking, increase law enforcement efforts, and implement standard procedures to identify victims and provide them with protection ", - "values": [ - "Trafficking" - ] - }, - { - "text": "Repeal the constitutional amendment that transforms the National Intelligence and Security Service into an entity with powers to arrest and detain, and to launch, without delay, independent investigations into the human rights violations committed by this Service", - "values": [ - "Human rights violations by state agents" - ] - }, - { - "text": "Ensure that all detained persons are protected by law and physically against torture and all other ill-treatment in accordance with its obligations under the Convention against Torture", - "values": [ - "Detention", - "International instruments", - "Torture and other CID treatment" - ] - }, - { - "text": "Incorporate CEDAW into the national legislation in order that its provisions could be invoked before the courts", - "values": [ - "International instruments", - "Women's rights" - ] - }, - { - "text": "Ensure the victims of domestic abuse immediate access to mechanisms of protection and redress, inter alia, by providing the victims with shelters, by ensuring investigation of abuses, and by training law enforcement officials", - "values": [ - "Rights of the Child", - "Women's rights" - ] - }, - { - "text": "Continue addressing the challenges in poverty reduction ", - "values": [ - "Poverty" - ] - }, - { - "text": "Assure the sustainability of the regional justice and security hubs and that they are clearly taken into account in the budgeting process and included in the final national budget for 2016", - "values": [ - "Justice" - ] - }, - { - "text": "Take measures to provide redress for crimes of honour killings, acid attacks and forced marriages.", - "values": [ - "Rights of the Child", - "Women's rights" - ] - }, - { - "text": "Guarantee freedom of peaceful assembly, and amend Article 9.4.3 of the Law on Meetings, Assemblies, Rallies and Demonstrations", - "values": [ - "Freedom of association and peaceful assembly" - ] - }, - { - "text": "Strengthen accountability mechanisms for security forces, including by ensuring these mechanisms protect the rights of victims", - "values": [ - "Public security" - ] - }, - { - "text": "Repeal all legal provisions allowing sterilization of persons with disabilities without their consent and for non-therapeutic reasons ", - "values": [ - "Disabilities", - "Torture and other CID treatment" - ] - }, - { - "text": "Continue efforts of the Lebanese Government to improve the functioning of the education system, including by advancing the enrolment and by protecting street children from the worst forms of child labour", - "values": [ - "Labour", - "Right to education", - "Rights of the Child" - ] - }, - { - "text": "Effectively investigate and prosecute violations committed against human rights defenders and journalists", - "values": [ - "Freedom of the press", - "Human rights defenders" - ] - }, - { - "text": "Continue its efforts to finalize its ratification of the 1980 Hague Convention on the Civil Aspects of International Child Abduction (Hague Convention). Canada acknowledges Japan's progress to date in this regard, notably its development of domestic legislation for Diet approval, and encourages progress towards ratification and implementation to continue in a timely fashion", - "values": [ - "International instruments", - "Rights of the Child" - ] - }, - { - "text": "Continue strengthening its reforms programmes in all sectors to guarantee the human rights and freedoms enshrined in its Constitution ", - "values": [ - "General" - ] - }, - { - "text": "Increase the penalty for the crime of torture from the current maximum of three years, proportional with the severity of the crime", - "values": [ - "Torture and other CID treatment" - ] - }, - { - "text": "Ensure parity of funding and services between Aboriginal and non-Aboriginal communities ", - "values": [ - "Indigenous peoples" - ] - }, - { - "text": "Provide full access for journalists, human rights organizations and other members of civil society to all areas of the country", - "values": [ - "Civil society", - "Freedom of the press" - ] - }, - { - "text": "Put an end to the construction, and dismantle the illegal separation wall", - "values": [ - "Freedom of movement" - ] - }, - { - "text": "Cuba reiterated its commitment to cooperate with United Nations human rights machinery, especially the Council and its universal periodic review, and to continue working towards the promotion and protection of human rights through international cooperation and respectful dialogue.", - "values": [ - "UPR process" - ] - }, - { - "text": "Ensure equal access to education for women and girls", - "values": [ - "Right to education", - "Rights of the Child", - "Women's rights" - ] - }, - { - "text": "Proceed in its effective efforts to combat trafficking in persons, especially women and children", - "values": [ - "Rights of the Child", - "Trafficking", - "Women's rights" - ] - }, - { - "text": "Repeal Article 445 of the 2008 Constitution, which effectively grants total immunity to State and military personnel to act with impunity, even for criminal offences ", - "values": [ - "Impunity" - ] - }, - { - "text": "Continue moving forward with the adoption of measures leading to the abolition of the death penalty", - "values": [ - "Death penalty" - ] - }, - { - "text": "Strengthen efforts to eliminate discrimination against girls and vulnerable groups such as children with disabilities and orphans ", - "values": [ - "Disabilities", - "Rights of the Child", - "Women's rights" - ] - }, - { - "text": "Provide clear instructions to the police, the gendarmerie and other relevant public officials as to their obligation to respect the absolute prohibition of torture", - "values": [ - "Human rights violations by state agents", - "Torture and other CID treatment" - ] - }, - { - "text": "Actively continue to implement the best practice and policy for the promotion and protection of the rights and living conditions, and to narrow the gap in living standards in favour of the vulnerable groups in the country ", - "values": [ - "Development" - ] - }, - { - "text": "Ensure thorough and independent investigations of all allegations of extrajudicial killings", - "values": [ - "Extrajudicial executions" - ] - }, - { - "text": "Ratify ICCPR, ICESCR as well as CAT ", - "values": [ - "CP rights - general", - "ESC rights - general", - "International instruments", - "Torture and other CID treatment" - ] - }, - { - "text": "Enhance efforts to improve the functioning of Djibouti's judicial system", - "values": [ - "Justice" - ] - }, - { - "text": "Amend its legislation to provide special protection for children against violence, enabling them to file complaints independent of their guardians, and to provide a hotline and shelter for children who incur domestic violence", - "values": [ - "Rights of the Child" - ] - }, - { - "text": "Continue consultations to set up a national human rights institution and materialize this project as soon as possible", - "values": [ - "National Human Rights Institution" - ] - }, - { - "text": "Prohibit by law the worst forms of corporal punishment of children in all places", - "values": [ - "Rights of the Child", - "Torture and other CID treatment" - ] - }, - { - "text": "Reinforce human rights education and awareness-raising programmes for parliamentarians, judges, civil servants, law enforcements agents, lawyers and journalists ", - "values": [ - "Human rights education and training" - ] - }, - { - "text": "Increase its efforts to effectively guarantee human rights of persons with disabilities, while welcoming the signing of the Convention and urging their prompt implementation ", - "values": [ - "Disabilities", - "International instruments" - ] - }, - { - "text": "Continue to address the negative impact on the promotion and protection of human rights, as inflicted by external coercive measures ", - "values": [ - "General" - ] - }, - { - "text": "Prosecute, proportionally to the severity of the offence, serious violations of human rights perpetrated under the dictatorship, which have been identified by the mechanisms of transitional justice ", - "values": [ - "Justice" - ] - }, - { - "text": "Extend an open and standing invitation to all Special Procedures ", - "values": [ - "Special procedures" - ] - }, - { - "text": "Fully and effectively implement the recently adopted laws in order to end threats, attacks and killings of human rights defenders and journalists and ensure prompt and effective investigation to bring those responsible to justice", - "values": [ - "Extrajudicial executions", - "Freedom of the press", - "Human rights defenders" - ] - }, - { - "text": "Accede to ICCPR", - "values": [ - "CP rights - general", - "International instruments" - ] - }, - { - "text": "Adopt and implement necessary legislation for the protection of human rights defenders in Guatemala, while acknowledging the efforts made in this area, but requesting to continue implementing legislation in that respect", - "values": [ - "Human rights defenders" - ] - }, - { - "text": "Take measures so as to ensure that all children can enjoy their right to free and compulsory basic education, and establish a school programme on human rights education and training ", - "values": [ - "Human rights education and training", - "Right to education", - "Rights of the Child" - ] - }, - { - "text": "Improve access to public facilities for persons with disabilities", - "values": [ - "Disabilities" - ] - }, - { - "text": "Ensure that the death penalty is not applied to consensual same sex-relations between adults, and that the Penal Code does not criminalise such activity, and include sexual orientation and gender identity in non-discrimination laws and programmes, and promote tolerance and non-discrimination on grounds of sexual orientation or identity in line with the Yogyakarta Principles", - "values": [ - "Death penalty", - "Sexual Orientation and Gender Identity" - ] - }, - { - "text": "Ensure prompt, impartial and timely investigation of all police abuses in order to bring perpetrators to justice and put an end to impunity and the lack of accountability for police abuses ", - "values": [ - "Human rights violations by state agents", - "Impunity" - ] - }, - { - "text": "Continue effectively to combat all forms of discrimination which the most vulnerable groups may suffer from and continue efforts to pacify the eastern part of the country.", - "values": [ - "Other" - ] - }, - { - "text": "Remedy violence against women and girls, including gender and sexual violence, through the implementation of legislation that prevents and criminalises such acts", - "values": [ - "Rights of the Child", - "Women's rights" - ] - }, - { - "text": "Strengthen policies and initiatives to promote tolerance towards and integration of ethnic minorities in all spheres of society", - "values": [ - "Minorities" - ] - }, - { - "text": "Take measures to re-establish an independent judiciary.", - "values": [ - "Justice" - ] - }, - { - "text": "Include a sexual orientation and gender identity perspective with regard to measures against incitement to hatred ", - "values": [ - "Sexual Orientation and Gender Identity", - "Women's rights" - ] - }, - { - "text": "Strengthen efforts to fill the existing gaps and accept the recommendations to draw up and implement a national human rights strategy with the aim of improving the overall human rights situation in the country ", - "values": [ - "General" - ] - }, - { - "text": "Amend the News Media Law and the 2014 Printing and Publishing law in line with international human rights standards protecting the freedom of expression and ensure that any new laws regulating the internet or access to information comply with such standards", - "values": [ - "Freedom of opinion and expression", - "Freedom of the press" - ] - }, - { - "text": "Continue to combat poverty, giving due consideration to socioeconomic and regional disparities ", - "values": [ - "Poverty" - ] - }, - { - "text": "Step up the efforts contributing to combating discrimination and hate crimes, including by penalizing and introducing a ban on forms of speech that constitute religious and racial hatred, especially in the context of campaigning for elections ", - "values": [ - "Elections", - "Freedom of religion and belief", - "Racial discrimination" - ] - }, - { - "text": "Continue actions to improve the quality of education ", - "values": [ - "Right to education" - ] - }, - { - "text": "Develop additional programmes to strengthen its alternative child care facilities ", - "values": [ - "Rights of the Child" - ] - }, - { - "text": "Ratify promptly the International Convention on the Rights of All Migrant Workers and Members of Their Families", - "values": [ - "International instruments", - "Labour", - "Migrants" - ] - }, - { - "text": "Strengthen efforts to prevent gender-based and domestic violence by criminalizing martial rape and sexual harassment providing victims with access to justice, assistance and protection, and by ensuring that cases are properly investigated and perpetrators duly prosecuted", - "values": [ - "Women's rights" - ] - }, - { - "text": "Further develop and manage internet and communications sectors, ensuring the legitimate rights and interests of ordinary people enjoying safe and secure internet usage", - "values": [ - "Freedom of opinion and expression" - ] - }, - { - "text": "Take further steps in order to prevent gender-based violence and ensure that such cases of violence are effectively investigated, prosecuted and sanctioned, envisaging the comprehensive implementation of the 2017-2019 national action plan for the prevention, assistance and eradication of violence against women", - "values": [ - "Women's rights" - ] - }, - { - "text": "Accede to ICRMW ", - "values": [ - "International instruments", - "Labour", - "Migrants" - ] - }, - { - "text": "Ratify the International Covenant on Civil and Political Rights and the International Covenant on Economic, Social and Cultural Rights ", - "values": [ - "CP rights - general", - "ESC rights - general", - "International instruments" - ] - }, - { - "text": "Pursue its efforts to ensure the right to an adequate standard of living for vulnerable groups ", - "values": [ - "Minorities" - ] - }, - { - "text": "Halt serious violations of human rights and humanitarian law including covert external operations by the CIA, carried out on the pretext of combating terrorism ", - "values": [ - "Counter-terrorism", - "International humanitarian law" - ] - }, - { - "text": "Take appropriate, efficient measures to prevent discrimination and violence against religious minorities, bringing instigators to religious violence to justice", - "values": [ - "Freedom of religion and belief", - "Minorities" - ] - }, - { - "text": "Continue the efforts to examine how to strengthen public trust and foster strong relationships between local law enforcement and communities they serve", - "values": [ - "Justice" - ] - }, - { - "text": "Undertake more effective measures to further improve the implementation of Shari'ah law in the country", - "values": [ - "Freedom of religion and belief" - ] - }, - { - "text": "Include women's rights in education curricula", - "values": [ - "Human rights education and training", - "Women's rights" - ] - }, - { - "text": "Ratify the Optional Protocol of the Convention against Torture and Other Cruel, Inhuman or Degrading Treatment or Punishment ", - "values": [ - "Detention", - "International instruments", - "Torture and other CID treatment" - ] - }, - { - "text": "Create a legal framework that gives sufficient protection for "whistle-blowers" testifying in crimes related to corruption", - "values": [ - "Corruption" - ] - }, - { - "text": "Step up its efforts to align the domestic legislation with the provisions of the Rome Statute", - "values": [ - "International instruments", - "Justice" - ] - }, - { - "text": "Continue strengthening the policies in favour of indigenous and Afro-Peruvian women through the Working Group on Indigenous Policies and the Working Group on Afro-Peruvian Policies", - "values": [ - "Indigenous peoples", - "Minorities", - "Women's rights" - ] - }, - { - "text": "Continue applying the strategies and socio-economic development plans of the country, particularly for reducing poverty", - "values": [ - "Development", - "Poverty" - ] - }, - { - "text": "Reinforce the legal framework for the prevention of violence against women, including by running a national awareness campaign, by creating safe places for victims of gender-based violence, and by ensuring that cases of domestic violence and sorcery-related violence, are comprehensively investigated and prosecuted ", - "values": [ - "Human rights education and training", - "Rights of the Child", - "Women's rights" - ] - }, - { - "text": "Ensure that the security forces act in accordance with international human rights norms on the use of force and do not carry out arbitrary detentions", - "values": [ - "Detention", - "Human rights violations by state agents", - "International instruments" - ] - }, - { - "text": "Continue the democratic process in which Algeria has committed itself to the full enjoyment of all rights for its people", - "values": [ - "General" - ] - }, - { - "text": "Further elaborate provisions in its legislation on the justiciability of the right to education ", - "values": [ - "Right to education" - ] - }, - { - "text": "Repeal laws that criminalize same-sex conduct between adults and review all legislation, policies and programmes to foster equality and prevent discrimination on the basis of sexual orientation or gender identity", - "values": [ - "Sexual Orientation and Gender Identity" - ] - }, - { - "text": "Continue to implement the Poverty Reduction Strategies Programme II ", - "values": [ - "Poverty" - ] - }, - { - "text": "Take concrete steps for strengthening the independence of the ombuds institution", - "values": [ - "National Human Rights Institution" - ] - }, - { - "text": "Become party to the International Convention for the Protection of All Persons from Enforced Disappearance ", - "values": [ - "Enforced disappearances", - "International instruments" - ] - }, - { - "text": "Continue its ongoing efforts to improve the legal and regulatory framework to prevent, detect and suppress activities connected with trafficking in persons ", - "values": [ - "Trafficking" - ] - }, - { - "text": "Recommended that Indonesia's efforts would be rounded off by a standing invitation to all special procedures", - "values": [ - "Special procedures" - ] - }, - { - "text": "Undertake to study the underlying causes of the street children phenomenon, including the scope of the problem, and consider developing comprehensive measures to address those causes ", - "values": [ - "Rights of the Child" - ] - }, - { - "text": "Step up efforts to address the economic and social inequalities affecting the indigenous peoples", - "values": [ - "ESC rights - general", - "Indigenous peoples" - ] - }, - { - "text": "Implement policies to prevent and detect cases of child abuse, as well as to ensure accountability and the rehabilitation of child victims", - "values": [ - "Rights of the Child" - ] - }, - { - "text": "Take additional measures to prevent, combat and appropriately sanction trafficking in human beings ", - "values": [ - "Trafficking" - ] - }, - { - "text": "Amend the protest law on the Right to Public Meeting, Processions and Peaceful Demonstrations in accordance with article 73 of the Constitution guaranteeing freedom of assembly", - "values": [ - "Freedom of association and peaceful assembly" - ] - }, - { - "text": "Ratify the remaining human rights instruments, especially the Optional Protocol to the Convention against Torture and Other Cruel, Inhuman or Degrading Treatment or Punishment ", - "values": [ - "Detention", - "International instruments", - "Torture and other CID treatment" - ] - }, - { - "text": "Take the necessary steps to establish a national human rights institution in accordance with the Paris Principles on the status of national institutions for the promotion and protection of human rights", - "values": [ - "National Human Rights Institution" - ] - }, - { - "text": "Continue to invest in green energy projects in order to provide clean and modern energy to all its people", - "values": [ - "Environment" - ] - }, - { - "text": "Ensure equal pay for both sexes ", - "values": [ - "Women's rights" - ] - }, - { - "text": "One of the main priorities of the Government remains a quick improvement of the quality of teaching", - "values": [ - "Right to education" - ] - }, - { - "text": "Raise the minimum age of criminal responsibility from 7 to 18 years", - "values": [ - "Justice", - "Rights of the Child" - ] - }, - { - "text": "Strengthen command and control mechanisms over its military and other security forces and eliminate the presence of militia and other non-governmental armed groups", - "values": [ - "International humanitarian law", - "Public security" - ] - }, - { - "text": "Protect human rights defenders and journalists from violence and arbitrary arrests, address impunity for crimes against human rights defenders and journalists, and notify the United Nations Educational, Scientific and Cultural Organization of the status of judicial inquiries into the murder of journalists ", - "values": [ - "Detention", - "Extrajudicial executions", - "Freedom of the press", - "Human rights defenders", - "Impunity", - "Justice" - ] - }, - { - "text": "Reopen dialogue with the representatives of organizations of civil society in order to make possible coordinated and rapid implementation of the national plan of action on human rights and international humanitarian law", - "values": [ - "Civil society", - "International humanitarian law", - "International instruments" - ] - }, - { - "text": "Ratify the International Convention on the Rights of Persons with Disabilities and its Optional Protocol \n", - "values": [ - "Disabilities", - "International instruments" - ] - }, - { - "text": "Move towards the ratification of the International Convention on the Protection of the Rights of All Migrant Workers and Members of Their Families", - "values": [ - "International instruments", - "Labour", - "Migrants" - ] - }, - { - "text": "Ensure that no acts of violence, intimidation, torture or discrimination are carried out against lesbian, gay, bisexual, transgender or intersex persons", - "values": [ - "Sexual Orientation and Gender Identity" - ] - }, - { - "text": "Implement a comprehensive policy for the development of human rights that includes a national institution that allows the coordination and implementation of the said policy", - "values": [ - "National Human Rights Institution" - ] - }, - { - "text": "Develop national plans of action on children and on human rights ", - "values": [ - "Rights of the Child" - ] - }, - { - "text": "Continue incorporating new provisions into the legislative framework to reduce disparities between men and women, bearing in mind that half of the population are women ", - "values": [ - "Women's rights" - ] - }, - { - "text": "Speed up judicial reforms in order to guarantee the functioning of the judiciary with the highest international human rights standards, and in particular facilitate access to justice for all persons on an equal footing without discrimination", - "values": [ - "Justice" - ] - }, - { - "text": "Implement the national Action Plan for Human Rights and the national policy framework on human rights referred to in chapter XII of the national report", - "values": [ - "General" - ] - }, - { - "text": "Work to relax its migration policy, by focusing on return with dignity of irregular migrants to their countries of origin", - "values": [ - "Migrants" - ] - }, - { - "text": "Continue promoting the active participation and empowerment of young people in the processes of national decision-making", - "values": [ - "Freedom of association and peaceful assembly" - ] - }, - { - "text": "Maintain the moratorium on executions and consider moving towards abolition of death penalty ", - "values": [ - "Death penalty" - ] - }, - { - "text": "Carry out independent, impartial and effective investigations into the unlawful use of force against lesbian, gay, bisexual and transgender activists by Honduran law enforcement officials", - "values": [ - "Human rights violations by state agents", - "Sexual Orientation and Gender Identity" - ] - }, - { - "text": "Recommended that the example of the United Kingdom in issuing, in principle, a specific law dealing with incitement to racial and religious hatred, be emulated as a good practice in countries which have not done so, in implementation of article 20(2) of ICCPR and its stipulated purpose.", - "values": [ - "Freedom of religion and belief", - "International instruments", - "Racial discrimination" - ] - }, - { - "text": "Continue efforts to strengthen steps and provide resources for the National Commission for Women and Children", - "values": [ - "Rights of the Child", - "Women's rights" - ] - }, - { - "text": "Taking necessary steps to establish an independent national human rights institution, in accordance with Paris Principles, in order to strengthen human rights at federal and state level in addition to the local level", - "values": [ - "National Human Rights Institution" - ] - }, - { - "text": "Continue the actions undertaken with the view to ratifying the ICCPR", - "values": [ - "CP rights - general", - "International instruments" - ] - }, - { - "text": "Take the necessary measures to end discrimination against women in workplaces and implement ILO and CESCR recommendations to ensure equal remuneration for work of equal value in public and private sectors", - "values": [ - "Labour", - "Treaty bodies", - "Women's rights" - ] - }, - { - "text": "Fully implement adopted legal measures against discrimination based on sexual orientation and gender identity", - "values": [ - "Sexual Orientation and Gender Identity" - ] - }, - { - "text": "Abolish the death penalty and sign and ratify the Second Optional Protocol to the International Covenant on Civil and Political Rights ", - "values": [ - "Death penalty", - "International instruments" - ] - }, - { - "text": "Engage civil society in the follow-up of the UPR ", - "values": [ - "Civil society", - "UPR process" - ] - }, - { - "text": "Prohibit torture in its domestic legislation in line with CAT and abolish the death penalty.", - "values": [ - "Death penalty", - "International instruments", - "Torture and other CID treatment" - ] - }, - { - "text": "Review its national legal framework, and fully incorporate the principle of non-discrimination, and adopt a pro-active strategy to eliminate discrimination on any grounds, notably against the most vulnerable groups ", - "values": [ - "Other" - ] - }, - { - "text": "Conduct an immediate and independent investigation into all cases of torture and ill-treatment of Palestinian children and ensure that all persons responsible for such practices are brought to justice and punished in a manner proportionate to the gravity of their crimes", - "values": [ - "Rights of the Child", - "Torture and other CID treatment" - ] - }, - { - "text": "Consider ratifying the ILO Domestic Workers Convention, 2011 (No. 189) ", - "values": [ - "International instruments", - "Labour" - ] - }, - { - "text": "Create more social awareness-raising campaigns against gender-based violence, with particular emphasis on its condemnation by the highest levels of the Administration - and more human rights training programmes for employees in the security and justice sectors ", - "values": [ - "Human rights education and training", - "Women's rights" - ] - }, - { - "text": "Take all additional measures to prevent and eradicate all manifestations of any form of racism and xenophobia against non-citizens, including refugees, asylum seekers and migrants", - "values": [ - "Asylum-seekers - refugees", - "Migrants", - "Racial discrimination" - ] - }, - { - "text": "In line with the concern expressed by a number of treaty bodies, take action to provide constitutional protection to both national and international human rights acts and standards", - "values": [ - "International instruments", - "Treaty bodies" - ] - }, - { - "text": "Develop strategies to increase the share of women in leading positions in business enterprises", - "values": [ - "Women's rights" - ] - }, - { - "text": "Urge Japan to seek ways to initiating a dialogue with its indigenous peoples so that it can implement the United Nations Declaration on the Rights of Indigenous Peoples.", - "values": [ - "Indigenous peoples", - "International instruments" - ] - }, - { - "text": "Complete the procedure of ratification of the European Convention on Preventing and Combating Violence against Women and Domestic Violence", - "values": [ - "Rights of the Child", - "Women's rights" - ] - }, - { - "text": "Expedite process for preparation and adoption of national action plan in areas of health and education for equal access to children of African descent ", - "values": [ - "Minorities", - "Right to education", - "Right to health", - "Rights of the Child" - ] - }, - { - "text": "Ensure that the Family Protection Act is implemented, including by establishing clear policies requiring authorities in all regions to investigate fully cases of family violence and violent attacks against persons alleged to be sorcerers, and by ensuring that perpetrators are brought to justice", - "values": [ - "Rights of the Child", - "Women's rights" - ] - }, - { - "text": "Consider withdrawing its reservations to the Convention on the Elimination of All Forms of Discrimination against Women, in particular article 2.", - "values": [ - "International instruments", - "Statelessness and the right to nationality", - "Women's rights" - ] - }, - { - "text": "Amend its legislation to include the principle of equality between men and women, Parliament should adopt the equality and participation bill in order to enhance gender equality in the political sphere ", - "values": [ - "Women's rights" - ] - }, - { - "text": "Reform the penitentiary system and resolve the problems of prison overcrowding", - "values": [ - "Detention" - ] - }, - { - "text": "Continue its efforts towards the protection and promotion of human rights ", - "values": [ - "General" - ] - }, - { - "text": "Continue its efforts to combat crime in a manner which enhances the rule of law in maintaining social stability, upholding justice and respecting human rights ", - "values": [ - "Public security" - ] - }, - { - "text": "Initiate a review and reform of the judiciary to assure its independence and impartiality, and that specific measures are taken to ensure that military and police personnel respect international human rights and humanitarian law ", - "values": [ - "International humanitarian law", - "International instruments", - "Justice" - ] - }, - { - "text": "Develop a strategy to increase the participation of women in decision-making positions in all branches of the Government", - "values": [ - "Women's rights" - ] - }, - { - "text": "Continue to take measures to ensure the full implementation of the Roma Integration Strategy 2015-2020", - "values": [ - "Minorities" - ] - }, - { - "text": "Preserve its criminal justice system to reinforce rule of law", - "values": [ - "Justice" - ] - }, - { - "text": "Adapt global human rights conventions in consonance with domestic statutes", - "values": [ - "International instruments" - ] - }, - { - "text": "Continue raising awareness and promoting tolerance and diversity in society", - "values": [ - "Human rights education and training" - ] - }, - { - "text": "Adopt additional positive steps to enhance the economic and social situation of persons with special needs and the poorest segments of the population ", - "values": [ - "ESC rights - general", - "Poverty" - ] - }, - { - "text": "Consider ratifying ILO Convention No. 169 within a reasonable timeframe ", - "values": [ - "Indigenous peoples", - "International instruments" - ] - }, - { - "text": "Continue strengthening its efforts in safeguarding the rights of women and children", - "values": [ - "Rights of the Child", - "Women's rights" - ] - }, - { - "text": "Align the legal definition of rape and related prosecution procedures with international norms, notably regarding marital rape and the burden of proof", - "values": [ - "Women's rights" - ] - }, - { - "text": "Ratify the International Covenant on Civil and Political Rights and the International Covenant on Economic, Social and Cultural Rights", - "values": [ - "Civil society", - "ESC rights - general", - "International instruments" - ] - }, - { - "text": "Guarantee to victims of crimes punished by international law access to mechanisms of national justice in order that they can request reparation", - "values": [ - "Justice" - ] - }, - { - "text": "Submit its initial report on the implementation of the Convention against Torture", - "values": [ - "International instruments", - "Torture and other CID treatment" - ] - }, - { - "text": "Adopt the necessary legislative or regulatory measures to combat all forms of discrimination, particularly against ethnic or religious minorities", - "values": [ - "Freedom of religion and belief", - "Minorities", - "Racial discrimination" - ] - }, - { - "text": "Continue to strengthen labour laws by implementing the provisions of the June 2011 ILO treaty that extends key labour protections to domestic workers ", - "values": [ - "International instruments", - "Labour" - ] - }, - { - "text": "Eliminate completely extrajudicial executions, as promised in the previous UPR, in this way bringing to justice those responsible and intensify efforts to eradicate the use of torture and inhuman or degrading treatment from the armed and security forces of the State ", - "values": [ - "Extrajudicial executions", - "Human rights violations by state agents", - "Torture and other CID treatment", - "UPR process" - ] - }, - { - "text": "Strengthen efforts to combat and prevent domestic violence, including various forms of violence and sexual abuse against children ", - "values": [ - "Rights of the Child", - "Women's rights" - ] - }, - { - "text": "Accelerate the process of ratification of ICRMW", - "values": [ - "International instruments", - "Labour", - "Migrants" - ] - }, - { - "text": "Take the necessary measures to respect the separation and independence of powers, including of the National Electoral Council, Parliament and the judiciary, in particular of the Supreme Court of Justice", - "values": [ - "Justice" - ] - }, - { - "text": "Guarantee the fight against impunity by ensuring that all the perpetrators of human rights violations are prosecuted and tried, when appropriate, by the international criminal justice", - "values": [ - "Impunity" - ] - }, - { - "text": "Renew and strengthen efforts towards universalizing access to civil registry", - "values": [ - "CP rights - general" - ] - }, - { - "text": "Specifically prohibit the practice of female genital mutilation as a matter of urgency", - "values": [ - "Rights of the Child", - "Torture and other CID treatment", - "Women's rights" - ] - }, - { - "text": "Enhance the fight against corruption", - "values": [ - "Corruption" - ] - }, - { - "text": "Allow the ICRC unrestricted access to all penitentiary facilities, including pre-detention facilities, and provide it with appropriate working conditions ", - "values": [ - "Detention" - ] - }, - { - "text": "Decriminalize sexual activity between consenting adults of the same sex ", - "values": [ - "Sexual Orientation and Gender Identity" - ] - }, - { - "text": "Consider becoming a party to the remaining core human rights treaties as well", - "values": [ - "International instruments" - ] - }, - { - "text": "Continue its endeavour in combating child abuse", - "values": [ - "Rights of the Child" - ] - }, - { - "text": "Take steps towards the establishment and operationalization of a national human rights institution, in accordance with the Paris Principles", - "values": [ - "National Human Rights Institution" - ] - }, - { - "text": "Finalize the text of a balanced counter-terrorism law.", - "values": [ - "Counter-terrorism" - ] - }, - { - "text": "Amend discriminatory laws and vigilantly counter discrimination against marginalized groups, including women and girls, ethnic and religious minorities and provide a safe and just environment for all citizens in Pakistan", - "values": [ - "Freedom of religion and belief", - "Minorities", - "Racial discrimination", - "Rights of the Child", - "Women's rights" - ] - }, - { - "text": "Continue to promote the implementation of the pilot project aimed at vaccination against cervical cancer", - "values": [ - "Right to health" - ] - }, - { - "text": "Continue progressing in the eradication of poverty, with the implementation of its sound social policies to improve the quality of life of its people, particularly of the most vulnerable", - "values": [ - "ESC rights - general", - "Poverty" - ] - }, - { - "text": "Take all necessary steps to fully implement the principles of CAT without further delay and accelerate the procedures to ratify it ", - "values": [ - "International instruments", - "Torture and other CID treatment" - ] - }, - { - "text": "Take further steps to address victims' rights, including taking forward reparations for victims of internal armed conflict, and to explore possible cooperation with United Nations special procedures in that regard", - "values": [ - "Justice", - "Technical assistance and cooperation" - ] - }, - { - "text": "Implement legislation, as required under the Convention on the Elimination of All Forms of Discrimination against Women, to end discrimination against women and harassment in the workplace ", - "values": [ - "International instruments", - "Women's rights" - ] - }, - { - "text": "With regard to indigenous peoples issues, Costa Rica highlighted the commitment of the Presidency to continue with the processes of dialogue at the highest level, mainly with regard to conflicts relating to land tenure and the security of its inhabitants, as well as other important issues, such as education, health, housing and social security of the indigenous peoples of Costa Rica. The delegation also referred to the willingness of the new administration to elaborate a comprehensive strategy to address the situation of the territorial rights of the indigenous peoples of Costa Rica.", - "values": [ - "Indigenous peoples", - "Right to land" - ] - }, - { - "text": "Ensure that the justice system functions with independence and in full compliance with relevant international norms", - "values": [ - "Justice" - ] - }, - { - "text": "Expedite the adoption of a Constitution and ensure that all national laws are in conformity with international human rights law", - "values": [ - "International instruments" - ] - }, - { - "text": "Maintain and strengthen the achievements made in poverty elimination and further consolidate its continued efforts by giving focus to its integrated rural development schemes and in line with its priority and experience to promote the right to development", - "values": [ - "Development", - "Poverty" - ] - }, - { - "text": "Take further measures to reduce the gender disparity in primary and secondary school and address the causes of the high dropout rates of adolescent girls, notably those outlined by the Committee on the Elimination of All Forms of Discrimination against Women in its concluding observations on the periodic reports of the Comoros ", - "values": [ - "International instruments", - "Right to education", - "Rights of the Child", - "Women's rights" - ] - }, - { - "text": "Take all necessary measures to ensure the full and equal enjoyment of human rights by all human beings ", - "values": [ - "General" - ] - }, - { - "text": "Guarantee freedom of expression and free access of citizens to public information", - "values": [ - "Freedom of opinion and expression" - ] - }, - { - "text": "Expedite adoption of laws prohibiting harmful practices against women and girls, including forced and early marriage", - "values": [ - "Rights of the Child", - "Torture and other CID treatment", - "Women's rights" - ] - }, - { - "text": "Accede to the two Optional Protocols under the Convention on the Rights of the Child", - "values": [ - "International instruments", - "Rights of the Child" - ] - }, - { - "text": "Consider ratifying the ICESCR ", - "values": [ - "ESC rights - general", - "International instruments" - ] - }, - { - "text": "Give priority to the full implementation of the Act on Women's Right to a Life Free from Violence and adopt the draft bill on trafficking in persons", - "values": [ - "Trafficking", - "Women's rights" - ] - }, - { - "text": "Continue the realization of the right to education and the right to health for children in light of the Government's adoption of the Strategic Programme for the Protection of the Rights of the Child (2013-2016)", - "values": [ - "Right to education", - "Right to health", - "Rights of the Child" - ] - }, - { - "text": "Strengthen measures aiming at combating discrimination, racism and xenophobia in the country, notably against migrants, asylum seekers and the Roma community", - "values": [ - "Asylum-seekers - refugees", - "Migrants", - "Minorities", - "Racial discrimination" - ] - }, - { - "text": "Conduct thorough, impartial, and timely investigations into all allegations of unlawful killings, abuse, torture, and corruption involving security forces and prison personnel", - "values": [ - "Corruption", - "Human rights violations by state agents", - "Torture and other CID treatment" - ] - }, - { - "text": "Adopt measures to abolish the death penalty ", - "values": [ - "Death penalty" - ] - }, - { - "text": "Further its efforts to increase the participation of women in politics through the integration of gender issues into national policies ", - "values": [ - "Women's rights" - ] - }, - { - "text": "Adopt legislation to specifically prohibit discrimination on the basis of sexual orientation and gender identity", - "values": [ - "Sexual Orientation and Gender Identity" - ] - }, - { - "text": "Continue efforts to combat all forms of violence against women, in particular female genital mutilation", - "values": [ - "Rights of the Child", - "Torture and other CID treatment", - "Women's rights" - ] - }, - { - "text": "Continue its policy to protect the family as the natural and fundamental group unit of society based on the stable relationship between a man and a woman.", - "values": [ - "Other" - ] - }, - { - "text": "Increase the efforts to conduct open and transparent dialogue with civil society on any changes to legislation which affect the rights of citizens ", - "values": [ - "Civil society" - ] - }, - { - "text": "Strengthen EHRC in order to make it compliant with the Paris Principles ", - "values": [ - "National Human Rights Institution" - ] - }, - { - "text": "Place emphasis on the rights of women and children in its policies and programmes ", - "values": [ - "Rights of the Child", - "Women's rights" - ] - }, - { - "text": "Implement policies to guarantee the rights of displaced persons, particularly following natural disasters, as well as of those persons expelled from a third country who risk statelessness ", - "values": [ - "Environment", - "Internally displaced persons", - "Statelessness and the right to nationality" - ] - }, - { - "text": "Set up an effective format for introducing a dialogue with representatives of minorities, acquiring comprehensive information on their problems and needs, developing and implementing, in consultation with them, policies and programmes to improve their situation, as well as to prevent and eradicate racial discrimination against them", - "values": [ - "Minorities", - "Racial discrimination" - ] - }, - { - "text": "Incorporate into anti-trafficking draft legislation a definition of trafficking in line with the Palermo Protocol, while ensuring that the scope of such legislation covers all persons, and identify and implement all appropriate measures to strike at the root cause of trafficking and sexual exploitation in Guinea-Bissau ", - "values": [ - "International instruments", - "Trafficking" - ] - }, - { - "text": "Make efforts towards the ratification of the OP-CAT", - "values": [ - "Detention", - "International instruments", - "Torture and other CID treatment" - ] - }, - { - "text": "End the practice of revoking citizenship from individuals", - "values": [ - "Statelessness and the right to nationality" - ] - }, - { - "text": "Continue actions in ensuring the participation of women in political and public life in order to eliminate existing barriers in the way of guaranteeing, promoting and protecting the rights of women in line with the international standards", - "values": [ - "Women's rights" - ] - }, - { - "text": "Revise its national legislation with a view to the total elimination of discrimination against women and implement effective measures to address violence against women in line with the CEDAW Committee recommendations.", - "values": [ - "Treaty bodies", - "Women's rights" - ] - }, - { - "text": "Continue strengthening the mechanisms to promote international cooperation with a focus on the promotion and protection of human rights, as fundamental principles of the official development assistance", - "values": [ - "Technical assistance and cooperation" - ] - }, - { - "text": "Increase efforts for the effective elimination of all forms of discrimination against women in employment, especially avoiding horizontal and vertical occupational segregation, and unequal pay", - "values": [ - "Women's rights" - ] - }, - { - "text": "Consider the possibility to accede to the Optional Protocol to the Convention on the Elimination of All Forms of Discrimination against Women", - "values": [ - "International instruments", - "Women's rights" - ] - }, - { - "text": "Go one step further and abolish completely the death penalty in its national legislation", - "values": [ - "Death penalty" - ] - }, - { - "text": "Promote social, cultural and political respect and tolerance for religious minorities. In this regard, Ecuador agreed with the views of the Human Rights Committee about the need to take steps to ensure equal enjoyment of the right of freedom of religion or belief and to address the problems related to confiscation of places of worship and related properties of religious minorities ", - "values": [ - "Freedom of religion and belief", - "Minorities", - "Treaty bodies" - ] - }, - { - "text": "Take further action to ensure the full participation of persons with disabilities in the country's political and public life and their access to equal opportunities", - "values": [ - "Disabilities" - ] - }, - { - "text": "Continue the fight against corruption and organized crime and ensure that perpetrators of these crimes do not remain unpunished", - "values": [ - "Corruption", - "Public security" - ] - }, - { - "text": "Improve measures to provide more access by all citizens to housing", - "values": [ - "Right to housing" - ] - }, - { - "text": "Review compliance of its national legislation with the principle of nondiscrimination, in particular with regard to women and gender identity, to adopt a comprehensive antidiscrimination legal framework specifically protecting against discrimination on these grounds, and lead long-term awareness-raising campaign on these issues among the public ", - "values": [ - "Human rights education and training", - "Women's rights" - ] - }, - { - "text": "Increase the investment to education and take further measures to lower the illiteracy rate, especially the illiteracy of the female", - "values": [ - "Right to education", - "Women's rights" - ] - }, - { - "text": "Train public servants in the human rights responsibilities and obligations of Governing structures", - "values": [ - "Human rights education and training" - ] - }, - { - "text": "Adhere to the principles of the Convention on the Rights of Persons with Disabilities and consider favourably its ratification in the shortest time possible, in line with the Government's commitment to the rights of persons with disabilities", - "values": [ - "Disabilities", - "International instruments" - ] - }, - { - "text": "Accept an independent OHCHR presence and allow the entry of international human rights monitors.", - "values": [ - "Technical assistance and cooperation" - ] - }, - { - "text": "Invite the Special Rapporteur on Freedom of Expression to visit Angola in order to demonstrate your commitment to foster an environment where journalists, civil society, and opposition members can operate freely and independently", - "values": [ - "Civil society", - "Freedom of association and peaceful assembly", - "Freedom of opinion and expression", - "Freedom of the press", - "Special procedures" - ] - }, - { - "text": "Ensure that all violations of international humanitarian and human rights law cease immediately", - "values": [ - "International humanitarian law" - ] - }, - { - "text": "Intensify their efforts to secure and effectively implement the existing policies designed for the integration of the Roma minority", - "values": [ - "Minorities" - ] - }, - { - "text": "Develop specific legislation on the elimination of discrimination against women", - "values": [ - "Women's rights" - ] - }, - { - "text": "Act to establish a national human rights institution in accordance with the Paris Principles, as per the recommendations from its 2011 universal periodic review appearance", - "values": [ - "National Human Rights Institution", - "UPR process" - ] - }, - { - "text": "Establish without further delay a National Human Rights Institution, complying with the Paris Principles", - "values": [ - "National Human Rights Institution" - ] - }, - { - "text": "Take the necessary measures to fight violence against women and domestic violence", - "values": [ - "Rights of the Child", - "Women's rights" - ] - }, - { - "text": "Ensure the effective implementation of national law and policy relevant to domestic workers, including the Domestic Workers Act", - "values": [ - "Labour" - ] - }, - { - "text": "Establish and strengthen policies and legal provisions for the promotion of women's rights, in particular the strengthening of their autonomy and participation in political, economic and social life, in recognition of their fundamental role in the development of a nation", - "values": [ - "Women's rights" - ] - }, - { - "text": "Establish a national plan to combat trafficking in persons and trafficking in women and children ", - "values": [ - "Rights of the Child", - "Trafficking", - "Women's rights" - ] - }, - { - "text": "Adopt a comprehensive approach that includes providing a healthy environment, safe water and sanitation and proper childcare, encouraging exclusive breastfeeding and improving the education and the health of mothers, in order to reduce the mortality rate of children under 5 ", - "values": [ - "Environment", - "Right to education", - "Right to health", - "Right to water and sanitation", - "Rights of the Child", - "Women's rights" - ] - }, - { - "text": "Adopt, as soon as possible, the Criminal Code containing the provisions on the abolition of the death penalty and the criminalization of torture, and adopt the law criminalizing all forms of trafficking and the decrees of application of the Children\u2019s Code", - "values": [ - "Death penalty", - "Rights of the Child", - "Torture and other CID treatment", - "Trafficking" - ] - }, - { - "text": "Approve the Criminal Code and, in particular, the abolition of the death penalty", - "values": [ - "Death penalty", - "Justice" - ] - }, - { - "text": "Further ensure that the country's religious minorities are able to freely practice their respective beliefs ", - "values": [ - "Freedom of religion and belief", - "Minorities" - ] - }, - { - "text": "Strengthen the process toward building the state with the rule of law and good governance for facilitating the political stability and sustainable social and economic development ", - "values": [ - "Development", - "Justice" - ] - }, - { - "text": "Take effective measures to combat violence and discrimination against women, including cases of murder and disappearances", - "values": [ - "Women's rights" - ] - }, - { - "text": "Fully combat violence against women, protect and support victims and ensure that perpetrators receive penalties in accordance with the newly enacted law", - "values": [ - "Women's rights" - ] - }, - { - "text": "Eliminate all forms of discrimination against the Roma, migrants and asylum-seekers and ensure equal opportunities for the enjoyment of their economic, social and cultural rights ", - "values": [ - "Asylum-seekers - refugees", - "ESC rights - general", - "Migrants", - "Minorities" - ] - }, - { - "text": "Review its legislation in order to enact a law that criminalizes child pornography and child prostitution, in accordance with the Optional Protocol to the Convention on the Rights of the Child on the sale of children, child prostitution and child pornography", - "values": [ - "International instruments", - "Rights of the Child", - "Trafficking" - ] - }, - { - "text": "Provide, as a matter of priority, support to ensure the sustainable return of refugees and internally displaced persons", - "values": [ - "Asylum-seekers - refugees", - "Internally displaced persons" - ] - }, - { - "text": "Intensify its efforts in the area of the fight against violence, respect and discrimination against women ", - "values": [ - "Women's rights" - ] - }, - { - "text": "Take measures to criminalize incitement to hatred based on religion and faith", - "values": [ - "Freedom of religion and belief" - ] - }, - { - "text": "Urgently set into force legislation that criminalizes all forms of violence against women, including in domestic settings ", - "values": [ - "Women's rights" - ] - }, - { - "text": "Continue to seek technical assistance from the international community as well as the Office of the High Commissioner for Human Rights on the establishment of a national human rights institution in accordance with the Paris Principles ", - "values": [ - "National Human Rights Institution", - "Technical assistance and cooperation" - ] - }, - { - "text": "Make measures to raise awareness of its new legislation concerning domestic violence and inform victims of violence about their rights and help available to them", - "values": [ - "Rights of the Child", - "Women's rights" - ] - }, - { - "text": "Establish a mechanism to follow up and evaluate the implementation of the mentioned national plan of action for children for the period 2003-2010 ", - "values": [ - "Rights of the Child" - ] - }, - { - "text": "Adopt a rights-based approach to climate change policy at home and abroad, including by reducing greenhouse gas emissions to safe levels that are consistent with the full enjoyment of human rights ", - "values": [ - "Environment" - ] - }, - { - "text": "Ensure security measures under the state of emergency or counter-terrorism laws and maintain the human rights of suspects, detainees and their families", - "values": [ - "Counter-terrorism" - ] - }, - { - "text": "Make further efforts to develop and implement appropriate legislative and administrative measures to provide equal employment opportunities for men and women and to address the issue of the wage gap. ", - "values": [ - "Women's rights" - ] - }, - { - "text": "Ensure the protection of and access to all areas by journalists, human rights defenders and humanitarian workers", - "values": [ - "Freedom of the press", - "Human rights defenders" - ] - }, - { - "text": "Increase its efforts to counter hate-speech and incitement to violence", - "values": [ - "Racial discrimination" - ] - }, - { - "text": "Enlarge the mandate and allocate sufficient resources to the Office of the Ombudsman, as a human rights institution, and ensure that it complies with the Paris Principles ", - "values": [ - "National Human Rights Institution" - ] - }, - { - "text": "Revoke the blanket ban on prisoners\u2019 exercise of their right to vote, in order to comply with the rulings of international courts on this matter", - "values": [ - "Detention" - ] - }, - { - "text": "Incorporate a module on human rights during the training of gendarmes and policemen", - "values": [ - "Human rights education and training" - ] - }, - { - "text": "Consider repealing criminal laws in favour of appropriate civil laws regarding freedom of expression, in accordance with relevant international human rights standards ", - "values": [ - "Freedom of opinion and expression", - "International instruments" - ] - }, - { - "text": "Counter the trend of repressing free speech, including restrictions on media outlets, and take concrete steps to meet its obligations to create an environment that fosters freedom of expression ", - "values": [ - "Freedom of opinion and expression", - "Freedom of the press" - ] - }, - { - "text": "Ratify the ICCPR-OP 2 that aims to abolish the death penalty and amend the constitution to abolish any constitutional provisions that provide for death penalty ", - "values": [ - "Death penalty", - "International instruments" - ] - }, - { - "text": "Ensure human rights are afforded full legal protection in the Republic of Palau ", - "values": [ - "Justice" - ] - }, - { - "text": "Take steps, in partnership with State, Territory and Local governments, to further advance and accelerate implementation of the National Action Plan to Reduce Violence against Women and Their Children, so as to effectively address prevalence of violence against these vulnerable groups", - "values": [ - "Rights of the Child", - "Women's rights" - ] - }, - { - "text": "Adopt and ensure effective implementation of existing legislative proposals to improve conditions in prisons in line with international standards", - "values": [ - "Detention" - ] - }, - { - "text": "Establish a workshop on education to exchange views and experiences with developed and developing countries.", - "values": [ - "Right to education" - ] - }, - { - "text": "Continue to implement measures to ensure all women and girls have equal access to quality sexual and reproductive healthcare", - "values": [ - "Right to health", - "Rights of the Child", - "Women's rights" - ] - }, - { - "text": "Continue its efforts to establish a family court in order to deal with resolving family disputes, thus preserving Kuwaiti social structure ", - "values": [ - "Other" - ] - }, - { - "text": "Continue the implementation of the national strategy on the protection and implementation of living standards of persons with disabilities", - "values": [ - "Disabilities" - ] - }, - { - "text": "Implement appropriate measures with respect to the Argentine Supreme Court's decision of 12 March 2012 regarding effective access for female rape victims to safe and legal abortions", - "values": [ - "Women's rights" - ] - }, - { - "text": "Undertake a thorough investigation of all alleged cases and hold the officers accountable who committed these violent acts ", - "values": [ - "Human rights violations by state agents" - ] - }, - { - "text": "Take steps to combat impunity in alleged cases of torture and acts of violence related to the 2005 elections and to ensure that legal protection is guaranteed", - "values": [ - "Impunity", - "Torture and other CID treatment" - ] - }, - { - "text": "Increase efforts to prosecute and convict human traffickers through the training of investigators, prosecutors and judges on detecting and prosecuting such crimes", - "values": [ - "Human rights education and training", - "Trafficking" - ] - }, - { - "text": "Grant minority status to the Egyptian community", - "values": [ - "Minorities" - ] - }, - { - "text": "Strengthen further its commitment to the Bali process as the principal mechanism in the region which deals with people smuggling and trafficking", - "values": [ - "Trafficking" - ] - }, - { - "text": "Finalize a professional code of conduct for police and security forces, as well as investigate alleged breaches and prosecute as appropriate, to strengthen accountability and prevent future abuses and violations ", - "values": [ - "Human rights violations by state agents", - "Justice" - ] - }, - { - "text": "In accordance with its imperatives dictated by its national realities, to proceed to legislative, judicial and administrative reform as well as create conditions permitting the ratification, as soon as possible, of the ICCPR", - "values": [ - "CP rights - general", - "International instruments", - "Justice" - ] - }, - { - "text": "Continue with the processes of review and reform of the judiciary so as to guarantee an independent and effective system for all ", - "values": [ - "Justice" - ] - }, - { - "text": "Take additional measures to fight against racism, extremism and xenophobia", - "values": [ - "Racial discrimination" - ] - }, - { - "text": "Ensure full respect for the rights to freedom of association, expression, religion or belief and movement", - "values": [ - "Freedom of association and peaceful assembly", - "Freedom of movement", - "Freedom of opinion and expression", - "Freedom of religion and belief" - ] - }, - { - "text": "Redouble its efforts to ratify the Convention against Torture and the International Convention on the Protection of the Rights of All Migrant Workers and Members of Their Families", - "values": [ - "International instruments", - "Labour", - "Migrants", - "Torture and other CID treatment" - ] - }, - { - "text": "Establish an independent national human rights institution, in conformity with the Paris Principles", - "values": [ - "National Human Rights Institution" - ] - }, - { - "text": "Take immediate steps to remove juvenile prisoners from death row.", - "values": [ - "Death penalty", - "Rights of the Child" - ] - }, - { - "text": "Ratify the Convention on the Rights of the Persons with Disabilities in order to further promote and protect the rights of persons with disabilities ", - "values": [ - "Disabilities", - "International instruments" - ] - }, - { - "text": "Take measures to regularize the so-called "illegal residents" to ensure that all their rights are respected in accordance with international standards", - "values": [ - "Migrants" - ] - }, - { - "text": "Take concrete measures aimed at facilitating access to the labour market to persons with disabilities, notably the adoption of a law in this regard", - "values": [ - "Disabilities", - "Labour" - ] - }, - { - "text": "Ratify-accede-adhere the International Convention on the Protection of the Rights of All Migrant Workers and Members of their Families.", - "values": [ - "International instruments", - "Labour", - "Migrants" - ] - }, - { - "text": "Continue efforts to improve universal access to primary health care and the right to education", - "values": [ - "Right to education", - "Right to health" - ] - }, - { - "text": "Consider the gradual ratification of pending international instruments ", - "values": [ - "International instruments" - ] - }, - { - "text": "As a party to the Convention on the Rights of the Child, fully align its legislation with international obligations under the convention ", - "values": [ - "International instruments", - "Rights of the Child" - ] - }, - { - "text": "Continue its efforts to ratify the International Convention for the Protection of All Persons from Enforced Disappearance, as well as other principal international human rights instruments to which the country has not yet been party ", - "values": [ - "Enforced disappearances", - "International instruments" - ] - }, - { - "text": "Take measures to eliminate racial discrimination and combat hate crime", - "values": [ - "Racial discrimination" - ] - }, - { - "text": "Ensure that indigenous peoples and other minorities are protected against all forms of discrimination", - "values": [ - "Indigenous peoples", - "Minorities", - "Racial discrimination" - ] - }, - { - "text": "Include in the new federal Constitution provisions on equality and non-discrimination between man and woman, in line with articles 1 and 2 of the Convention on the Elimination of All Forms of Discrimination against Women", - "values": [ - "International instruments", - "Women's rights" - ] - }, - { - "text": "Guarantee and respect the right to freedom of expression, association and assembly putting an end to arbitrary detentions and arrests and any act of harassment against political actors and civil society, including human rights defenders", - "values": [ - "Civil society", - "Detention", - "Freedom of association and peaceful assembly", - "Freedom of opinion and expression", - "Human rights defenders" - ] - }, - { - "text": "Take necessary measures, in putting law into practice, to further ensure the implementation on gender equality", - "values": [ - "Women's rights" - ] - }, - { - "text": "Ensure that the work of the National Human Rights Commission is aligned with the Paris Principles ", - "values": [ - "National Human Rights Institution" - ] - }, - { - "text": "Provide adequate resources to enforce laws against human trafficking through the investigation, prosecution and, if found guilty, conviction of trafficking offenders, including in cases involving forced labour or commercial sexual exploitation", - "values": [ - "Labour", - "Trafficking" - ] - }, - { - "text": "Italy was committed to combating racism and working for successful interaction among cultures, traditions and beliefs. At the national level, the country would continue to make all efforts to ensure that the global challenges posed by racism were met in the most appropriate ways.", - "values": [ - "Freedom of religion and belief", - "Racial discrimination" - ] - }, - { - "text": "Take all necessary steps to introduce a de jure moratorium on capital executions with a view to fully abolish the death penalty, and ratify the Second Optional Protocol to the International Covenant on Civil and Political Rights", - "values": [ - "Death penalty", - "International instruments" - ] - }, - { - "text": "That further steps are taken in order to review existing policies and practices that lead to segregation of Roma children in schools ", - "values": [ - "Minorities", - "Right to education", - "Rights of the Child" - ] - }, - { - "text": "Take steps to eliminate child labour and forced labour and enhance respect for the rights of workers, particularly those in the mining sector. Ways to accomplish these objectives include amending the current labour laws to align with the internationally recognized fundamental worker rights, and taking measures to effectively enforce the labour laws", - "values": [ - "Business and human rights", - "Labour", - "Rights of the Child" - ] - }, - { - "text": "Institute a de jure moratorium on the death penalty, with a view to its definitive abolition", - "values": [ - "Death penalty" - ] - }, - { - "text": "Take measures to guarantee a safe and transparent environment within which civil society can freely operate without fear of repercussions, including by lifting restrictions on freedom of expression and assembly", - "values": [ - "Civil society", - "Freedom of association and peaceful assembly", - "Freedom of opinion and expression" - ] - }, - { - "text": "Thoroughly investigate acts of sexual violence committed during the conflict, with a view to holding perpetrators to account, ensure reparation and full reintegration into society of victims of wartime rape and other sexual violence, and take action to counter any manifestations of stigma and exclusion directed against them", - "values": [ - "Justice", - "Rights of the Child", - "Women's rights" - ] - }, - { - "text": "Accede to/ratify the third Optional Protocol to the CRC on a communications procedure ", - "values": [ - "International instruments", - "Rights of the Child" - ] - }, - { - "text": "Continue exercising its sovereign right of implementing its penal code in conformity with universally agreed human rights standards, including the application of the death penalty.", - "values": [ - "Death penalty" - ] - }, - { - "text": "Put an end to the state of emergency in force since 2009", - "values": [ - "Justice" - ] - }, - { - "text": "Continue its efforts in favour of persons with disabilities", - "values": [ - "Disabilities" - ] - }, - { - "text": "Repeal regional legislation that tolerates discrimination based on sexual orientation, and take concrete measures preventing from using regulations in force with discriminatory purposes against the rights of LGBT persons", - "values": [ - "Sexual Orientation and Gender Identity" - ] - }, - { - "text": "Intensify efforts in the fight against poverty and to respond to the basic needs of the poor", - "values": [ - "Poverty" - ] - }, - { - "text": "Continue with the measures for the promotion of women's rights, primarily by preventing and combating violence against women, particularly those belonging to indigenous peoples ", - "values": [ - "Indigenous peoples", - "Women's rights" - ] - }, - { - "text": "Apply the recommendation of the Special Rapporteur on the right to health on obstacles to access to health services by marginal populations, and to address this problem through educational programmes on diversity, and to train professionals in the health sectors.", - "values": [ - "Right to health", - "Special procedures" - ] - }, - { - "text": "Continue efforts and implement its plans to eradicate polio in Nigeria", - "values": [ - "Right to health" - ] - }, - { - "text": "Redouble efforts against trafficking in persons ", - "values": [ - "Trafficking" - ] - }, - { - "text": "Continue its efforts in ensuring economic and social rights ", - "values": [ - "ESC rights - general" - ] - }, - { - "text": "Agree to the registration of LAMBDA [the Association for Defence of Sexual Minorities] as an official NGO", - "values": [ - "Civil society", - "Freedom of association and peaceful assembly", - "Sexual Orientation and Gender Identity" - ] - }, - { - "text": "Take measures to address homo- and trans-phobic crime, including by establishing a system for recording such crimes ", - "values": [ - "Sexual Orientation and Gender Identity" - ] - }, - { - "text": "Criminalize racist statements, incitement to intolerance and racially motivated violence", - "values": [ - "Racial discrimination" - ] - }, - { - "text": "Consider ratification of CRPD ", - "values": [ - "Disabilities", - "International instruments" - ] - }, - { - "text": "Include a comprehensive definition of racial discrimination and a definition of torture in the relevant laws", - "values": [ - "Racial discrimination", - "Torture and other CID treatment" - ] - }, - { - "text": "Strengthen its efforts to combat ill-treatment of and violence against children, and provide street children with the necessary protection, as well as the housing, medical services, education and access to social services they need", - "values": [ - "Rights of the Child", - "Torture and other CID treatment" - ] - }, - { - "text": "Develop a legal framework to explicitly address contemporary methods of trafficking", - "values": [ - "Trafficking" - ] - }, - { - "text": "Continue to strengthen its successful educational policies in order to provide the greatest welfare and quality of life to its people", - "values": [ - "Development", - "Right to education" - ] - }, - { - "text": "Bolster the investigation of cases of gender-based violence and violence against journalists", - "values": [ - "Freedom of the press", - "Women's rights" - ] - }, - { - "text": "Ensure the protection of IDP's rights to voluntary and safe return to adequate restitution by, inter alia, putting in place and implementing long-term housing and property restitution policies that comply with international standards", - "values": [ - "Internally displaced persons" - ] - }, - { - "text": "Continue supporting the National Commission for Human Rights and provide assurances to enable it to discharge its mandate independently in accordance with the Paris Principles", - "values": [ - "National Human Rights Institution" - ] - }, - { - "text": "Ratify the CAT, OP-CAT, ICCPR-OP2", - "values": [ - "Death penalty", - "Detention", - "International instruments", - "Torture and other CID treatment" - ] - }, - { - "text": "Share with other countries its experience in the education of persons with disabilities and in providing them with employment", - "values": [ - "Disabilities" - ] - }, - { - "text": "Sign and ratify the core international instruments, including the International Convention on the Protection of the Rights of All Migrant Workers and Members of Their Families", - "values": [ - "International instruments", - "Labour", - "Migrants" - ] - }, - { - "text": "Withdraw its reservations and interpretative declarations on the International Covenant on Civil and Political Rights and the International Convention on the Elimination of All Forms of Racial Discrimination ", - "values": [ - "CP rights - general", - "International instruments", - "Racial discrimination" - ] - }, - { - "text": "Refrain from depriving citizenship through the blocking of identity documents and establish a dedicated procedure to identify stateless persons", - "values": [ - "Statelessness and the right to nationality" - ] - }, - { - "text": "Reform its State secrets Law and definitions of crimes as incitement to subversion of state power so that they cannot be abused for persecution of human rights defenders in particular petitioners or journalists", - "values": [ - "Freedom of the press", - "Human rights defenders" - ] - }, - { - "text": "Endeavour to ratify international instruments that USA is not party, in particular among others the CRC, OP-CAT, CEDAW, and Rome Statute of the International Criminal Court ", - "values": [ - "Detention", - "International instruments", - "Justice", - "Rights of the Child", - "Torture and other CID treatment", - "Women's rights" - ] - }, - { - "text": "Take steps to further strength the framework for the protection of family rights, including early adoption and implementation of the Family Code ", - "values": [ - "Rights of the Child", - "Women's rights" - ] - }, - { - "text": "Ratify the International Convention on the Protection of the Rights of All Migrant Workers and Members of Their Families (ICRMW)", - "values": [ - "International instruments", - "Labour", - "Migrants" - ] - }, - { - "text": "Continue and enhance its efforts towards the full implementation of the Convention against Torture and Other Cruel, Inhuman or Degrading Treatment or Punishment and the International Convention on the Protection of the Rights of All Migrant Workers and the Members of their Families", - "values": [ - "Trafficking" - ] - }, - { - "text": "Continue its accession to the core international human rights instruments", - "values": [ - "International instruments" - ] - }, - { - "text": "Strengthen the measures to ensure gender equality, as well as to prevent violence against women ", - "values": [ - "Women's rights" - ] - }, - { - "text": "Pass the Freedom of Information Bill", - "values": [ - "Freedom of opinion and expression" - ] - }, - { - "text": "Abolish the death penalty and ratify OP-CAT ", - "values": [ - "Death penalty", - "Detention", - "International instruments", - "Torture and other CID treatment" - ] - }, - { - "text": "Enact a more robust set of policies and procedures to combat anti-Semitism, and that a public strategy be developed to dissuade prejudices and intolerance towards the Jewish population and its culture, including with respect to Jewish memorial and commemorative sites within Lithuania", - "values": [ - "Freedom of religion and belief", - "Minorities", - "Racial discrimination" - ] - }, - { - "text": "Immediately and unconditionally release all prisoners of conscience ", - "values": [ - "Detention", - "Freedom of religion and belief" - ] - }, - { - "text": "Strengthen efforts to address domestic and sexual violence ", - "values": [ - "Rights of the Child", - "Women's rights" - ] - }, - { - "text": "Erase the criminal records of all political prisoners and unconditionally release them under a genuine amnesty ", - "values": [ - "Detention", - "Freedom of opinion and expression" - ] - }, - { - "text": "Seek which tangible support the international community, particularly States in a position to do so, may extend to assist Sri Lanka in bridging these gaps in order to enhance the effective realization of the full range of human rights for all Sri Lankans.", - "values": [ - "Technical assistance and cooperation" - ] - }, - { - "text": "Step up efforts to combat prejudices against ethnic minorities and to improve relations between the general public and minority communities ", - "values": [ - "Minorities" - ] - }, - { - "text": "Take all necessary measures to provide IDPs with needed assistance ", - "values": [ - "Internally displaced persons" - ] - }, - { - "text": "Recognizing the work of the National Council for Disability Matters, intensify necessary measures to improve specialized services for persons with disabilities, in particular in disadvantaged areas - develop reliable statistics on persons with disabilities and their access to basic services ", - "values": [ - "Disabilities" - ] - }, - { - "text": "Implement the conclusions of the National Dialogue on HIV and Human Rights, and adopt the proposed bill", - "values": [ - "HIV - Aids" - ] - }, - { - "text": "Further increase the attendance of girls in secondary and higher education and the participation of women in the professional sphere", - "values": [ - "Right to education", - "Rights of the Child", - "Women's rights" - ] - }, - { - "text": "Continue to implement and increase the effectiveness of national policies on persons with disabilities, including on access to education, access to public services, work opportunities, as well as adequate training and public awareness programmes to mainstream the rights of persons with disabilities", - "values": [ - "Disabilities", - "Human rights education and training" - ] - }, - { - "text": "Enforce its anti-slavery legislation and fully guarantee the application of the principle of non-discrimination and ensure the full enjoyment of all human rights by every member of society", - "values": [ - "Other" - ] - }, - { - "text": "Continue advancing the situation of persons with disabilities by providing access to education, health, jobs and public spaces as well as protecting from all forms of violence and discrimination", - "values": [ - "Disabilities", - "Labour", - "Right to education", - "Right to health" - ] - }, - { - "text": "Continue its efforts in combating drug trafficking and fighting this scourge", - "values": [ - "Public security" - ] - }, - { - "text": "Ratify the Optional Protocol to the Convention on the Rights of the Child on the involvement of children in armed conflict and the Optional Protocol to the Convention on the Rights of the Child on the sale of children, child prostitution and child pornography, and prohibit explicitly corporal punishment of children in all settings, including the home", - "values": [ - "International humanitarian law", - "International instruments", - "Rights of the Child", - "Torture and other CID treatment", - "Trafficking" - ] - }, - { - "text": "Develop further decent work/labour through the comprehensive economic growth ", - "values": [ - "Development", - "Labour" - ] - }, - { - "text": "Strengthen the measures aimed at integrating indigenous peoples in relation to the administration of justice, health and education, through the increase of intercultural services such as interpreters and bilingual professors", - "values": [ - "Indigenous peoples" - ] - }, - { - "text": "Ensure the effective implementation of the Convention on the Rights of the Child (CRC), especially the rights to education and health ", - "values": [ - "International instruments", - "Rights of the Child" - ] - }, - { - "text": "Adjust its internal legislation to the standards of the International Convention for the Protection of All Persons from Enforced Disappearance, including the obligation to define the offence of enforced disappearance ", - "values": [ - "Enforced disappearances", - "International instruments" - ] - }, - { - "text": "Continue with the plan of national reconstruction", - "values": [ - "Development" - ] - }, - { - "text": "Ensure the establishment of a nationally integrated database on trafficking in persons", - "values": [ - "Trafficking" - ] - }, - { - "text": "Speed up the process to formulate a five-year National Action Plan on Human Rights and implement it at an earlier time", - "values": [ - "National Human Rights Institution" - ] - }, - { - "text": "Ensure that opposition parties are permitted to participate freely in the political process without fear of retribution.", - "values": [ - "Freedom of association and peaceful assembly" - ] - }, - { - "text": "Withdraw remaining reservations to the ICCPR and the Convention against Torture and take immediate steps to incorporate both treaties into domestic legislation", - "values": [ - "CP rights - general", - "International instruments", - "Torture and other CID treatment" - ] - }, - { - "text": "Ratify and effectively implement the Rome Statute of the International Criminal Court, the International Convention for the Protection of All Persons from Enforced Disappearance and the Optional Protocol to the Convention against Torture", - "values": [ - "Detention", - "Enforced disappearances", - "International instruments", - "Justice", - "Torture and other CID treatment" - ] - }, - { - "text": "Continue to implement the recommendations of the Truth and Reconciliation Commission, emphasizing the review and amendment of the constitutional provisions which could discriminate against women, in particular paragraph 4 of article 27 of the Constitution", - "values": [ - "Justice", - "Women's rights" - ] - }, - { - "text": "Ratify the Convention on the Rights of Persons with Disabilities, the Optional Protocol to the Convention against Torture", - "values": [ - "Detention", - "Disabilities", - "International instruments", - "Torture and other CID treatment" - ] - }, - { - "text": "Consider the accession to core human rights instruments ", - "values": [ - "International instruments" - ] - }, - { - "text": "Permit visits from all 10 United Nations special procedures who have requested a visit ", - "values": [ - "Special procedures" - ] - }, - { - "text": "Harmonize all anti-discrimination laws to ensure equal protection on all grounds of discrimination ", - "values": [ - "Other" - ] - }, - { - "text": "Take effective measures to ensure de facto equality of all women ", - "values": [ - "Women's rights" - ] - }, - { - "text": "Consider the adoption of a comprehensive policy to address forced evictions of owners who can no longer pay their mortgages", - "values": [ - "Right to housing" - ] - }, - { - "text": "Expedite finalization of the draft domestic violence bill ", - "values": [ - "Rights of the Child", - "Women's rights" - ] - }, - { - "text": "Intensify its solidarity efforts for the rights to food and education in countries that cannot afford to ensure this due to a lack of financial resources", - "values": [ - "Right to education", - "Right to food" - ] - }, - { - "text": "Canada recognizes that poverty requires long-term and sustainable solutions. F-P/T governments are committed to enhancing the income security of Canadians through programs that reduce poverty", - "values": [ - "Poverty" - ] - }, - { - "text": "Impose a moratorium on executions with a view to abolishing the death penalty nationwide, and ensure that prosecutors in all jurisdictions cease pursuing death sentences", - "values": [ - "Death penalty" - ] - }, - { - "text": "Ensure unhindered enjoyment of the right to freedom of expression, and an enabling environment, where members of civil society are not prohibited from exercising their rights to freedom of peaceful assembly and association, in accordance with the principles of democracy (this is also in line with international obligations under the International Covenant on Civil and Political Rights as well as the undertaking made in the 2011 universal periodic review) ", - "values": [ - "Civil society", - "Freedom of association and peaceful assembly", - "Freedom of opinion and expression", - "International instruments", - "UPR process" - ] - }, - { - "text": "Establish measures to further reduce gender inequality in all areas and pay special attention to protection of women from minorities, older women and women with disabilities", - "values": [ - "Disabilities", - "Minorities", - "Women's rights" - ] - }, - { - "text": "Implement strict measures, including in the area of legislation, to combat hate speech and other manifestations of racism and xenophobia, including on the internet, in line with the obligations under articles 19 and 20 of ICCPR ", - "values": [ - "International instruments", - "Racial discrimination" - ] - }, - { - "text": "Namibia shall continue to build the Namibian society in a spirit of harmony and national reconciliation.", - "values": [ - "Justice" - ] - }, - { - "text": "Continue to strengthen the legal framework for the promotion and protection of human rights, including through the ratification of the ICCPR and ICESCR, which are key instruments for the promotion and protection of a number of other fundamental rights, as well as the ICRMW ", - "values": [ - "CP rights - general", - "ESC rights - general", - "International instruments", - "Labour", - "Migrants" - ] - }, - { - "text": "Take effective measures to put an end to gross human rights abuses including violence against women, committed for decades by the United States military personnel stationed in foreign bases ", - "values": [ - "Women's rights" - ] - }, - { - "text": "Develop a detailed plan of needs in order to support its request for technical assistance in the context of bilateral and multilateral cooperation", - "values": [ - "Technical assistance and cooperation" - ] - }, - { - "text": "Consider ratifying the Optional Protocol to the Convention on the Rights of the Child on a communications procedure (OP-CRC-IC)", - "values": [ - "International instruments", - "Rights of the Child" - ] - }, - { - "text": "Partner with existing independent human rights organizations to monitor and evaluate government interventions that combat domestic violence", - "values": [ - "Civil society", - "Rights of the Child", - "Women's rights" - ] - }, - { - "text": "Take a comprehensive set of measures to tackle racism and racial discrimination and to combat more resolutely all its forms and manifestations, particularly racist and xenophobic political platforms", - "values": [ - "Racial discrimination" - ] - }, - { - "text": "Strengthen their efforts aimed at empowering women, in particular through continuing to improve access for women and girls to quality education", - "values": [ - "Right to education", - "Women's rights" - ] - }, - { - "text": "Strengthen efforts towards the protection of women and children's rights, and ensure thorough investigations of alleged violence against women, including sexual violence", - "values": [ - "Rights of the Child", - "Women's rights" - ] - }, - { - "text": "Ratify the Protocol of 2014 to the Forced Labour Convention, 1930, and implement existing labour regulations requiring the formal documentation of all workers and minimum standards in working conditions", - "values": [ - "International instruments", - "Labour" - ] - }, - { - "text": "Enact legislation and increase awareness-raising prohibiting female genital mutilation", - "values": [ - "Rights of the Child", - "Torture and other CID treatment", - "Women's rights" - ] - }, - { - "text": "Take all necessary steps to eliminate corporal punishment", - "values": [ - "Torture and other CID treatment" - ] - }, - { - "text": "Adopt the draft law on the prevention of torture and other forms of cruel, inhuman or degrading treatment or punishment by complying with established international norms", - "values": [ - "Torture and other CID treatment" - ] - }, - { - "text": "Sri Lanka should work with international and domestic non-State actors to halt the recruitment and use of child soldiers", - "values": [ - "International humanitarian law", - "Rights of the Child" - ] - }, - { - "text": "Eliminate, through awareness programmes and legal precautions, social discrimination against women and girls", - "values": [ - "Human rights education and training", - "Women's rights" - ] - }, - { - "text": "Strengthen measures to prevent abuses by some law enforcement officials, including through providing appropriate human rights training", - "values": [ - "Human rights education and training", - "Human rights violations by state agents" - ] - }, - { - "text": "Provide medical and psychological support, as well as legal assistance, to women victims of gender-based violence ", - "values": [ - "Women's rights" - ] - }, - { - "text": "Include additional international norms in the domestic legal system with a view to improving conditions of detention", - "values": [ - "Detention", - "International instruments" - ] - }, - { - "text": "Adopt a legal framework clearly defining crimes of trafficking of children for sexual exploitation, economic exploitation or other purposes, while imposing appropriate sanctions", - "values": [ - "Labour", - "Rights of the Child", - "Trafficking" - ] - }, - { - "text": "Fully align Ecuador's national legislation with all obligations arising out of the Rome Statute of the ICC", - "values": [ - "International instruments", - "Justice" - ] - }, - { - "text": "Continue to promote the right to education for all, particularly for the underprivileged and disadvantaged ", - "values": [ - "Right to education" - ] - }, - { - "text": "Step up efforts in alleviating poverty and further improve wealth distribution in order to achieve Millennium Development Goal 1 on poverty reduction by 2015", - "values": [ - "Poverty" - ] - }, - { - "text": "Seek to ensure the effective participation of Roma people in the process of assuring their equal and non-discriminatory treatment", - "values": [ - "Minorities" - ] - }, - { - "text": "Outlaw the practice of torture and cruel, inhuman and degrading treatment, including the whipping of persons for alleged violations of the Immigration Act", - "values": [ - "Torture and other CID treatment" - ] - }, - { - "text": "Accept a visit to the country by the Special Rapporteurs on violence against women, on the situation of human rights defenders, and on freedom of opinion and expression", - "values": [ - "Freedom of opinion and expression", - "Human rights defenders", - "Special procedures", - "Women's rights" - ] - }, - { - "text": "Establish an independent national human rights institution, and provide the financial and human resources necessary for its adequate operation ", - "values": [ - "National Human Rights Institution" - ] - }, - { - "text": "Consider ratifying the United Nations Convention against Corruption ", - "values": [ - "Corruption", - "International instruments" - ] - }, - { - "text": "Strengthen guarantees for detained persons, and not to extend but to shorten the length of time of pretrial detentions.", - "values": [ - "Detention" - ] - }, - { - "text": "Accede to the Rome Statute and implement it fully at national level and accede to the Agreement on the Privileges and Immunities of the Court as recommended in the first UPR cycle", - "values": [ - "International instruments", - "Justice", - "UPR process" - ] - }, - { - "text": "Create awareness-raising campaigns and national policies to prevent and combat discrimination in any form ", - "values": [ - "Human rights education and training" - ] - }, - { - "text": "Continue its positive campaigning to raise awareness of women's social and political rights", - "values": [ - "Women's rights" - ] - }, - { - "text": "Persist with the actions undertaken by the Government Plenipotentiary for Equal Treatment ", - "values": [ - "Other" - ] - }, - { - "text": "Thoroughly investigate and prosecute reported incidents of abductions and killings of persons with albinism", - "values": [ - "Minorities" - ] - }, - { - "text": "Strengthen the institutional framework in the human rights area, including through the establishment of a national human rights institution in accordance with the Paris Principles", - "values": [ - "National Human Rights Institution" - ] - }, - { - "text": "Continue improving maternal and neonatal health services through interventions at national and provincial levels", - "values": [ - "Right to health", - "Rights of the Child", - "Women's rights" - ] - }, - { - "text": "Ensure in national legislation that the minimum age for marriage is 18 years for both girls and boys and take all necessary measures to prevent and eliminate child sex tourism and exploitation of child labour", - "values": [ - "Labour", - "Rights of the Child", - "Trafficking" - ] - }, - { - "text": "Consider adopting a de jure moratorium on the death penalty soon, with a view to abolishing the death penalty", - "values": [ - "Death penalty" - ] - }, - { - "text": "Improve prison conditions to bring them in line with international standards and guidelines for the treatment of prisoners by providing warmer clothes to prisoners in winter, providing foreign prisoners with timely medical and dental treatment, and increasing the amount and nutritional quality of the food", - "values": [ - "Detention" - ] - }, - { - "text": "Develop efforts to strengthen the programme of reforms of the judicial system", - "values": [ - "Justice" - ] - }, - { - "text": "Fully implement CEDAW ", - "values": [ - "International instruments", - "Women's rights" - ] - }, - { - "text": "Further strengthen the national machinery for the advancement of women with financial and human capacity and political authority ", - "values": [ - "Women's rights" - ] - }, - { - "text": "Release immediately and unconditionally all those imprisoned for peacefully exercising their rights to freedom of expression, association and assembly ", - "values": [ - "Detention", - "Freedom of association and peaceful assembly", - "Freedom of opinion and expression" - ] - }, - { - "text": "Ensure that schools are safe places for children, particularly girls", - "values": [ - "Right to education", - "Rights of the Child" - ] - }, - { - "text": "Strengthen the rule of law, the capacity of national mechanisms on human rights and the promotion of national healing process based on tolerance and respect among different communities ", - "values": [ - "Justice" - ] - }, - { - "text": "Continue to promote the empowerment of Aboriginal peoples, primarily through the protection of their lands, their education and their health ", - "values": [ - "Indigenous peoples", - "Right to education", - "Right to health", - "Right to land" - ] - }, - { - "text": "Ratify the Convention on the Rights of Persons with Disabilities and improve the integration of persons with disabilities in the education system.", - "values": [ - "Disabilities", - "International instruments" - ] - }, - { - "text": "Give special regard to women and children and enhance their enjoyment of human rights and fundamental freedoms.", - "values": [ - "Rights of the Child", - "Women's rights" - ] - }, - { - "text": "Share the best practices in the implementation of the National Plan on Human Rights, and in the preparation of the UPR", - "values": [ - "UPR process" - ] - }, - { - "text": "Secure the cooperation and full involvement of local government units and civil society partners in the implementation of anti-trafficking laws and programmes", - "values": [ - "Civil society", - "Trafficking" - ] - }, - { - "text": "Take further measures to ensure that the military justice system does not claim jurisdiction in human rights cases involving members of security forces ", - "values": [ - "Human rights violations by state agents", - "Justice" - ] - }, - { - "text": "Ensure freedom of expression and the press by decriminalizing all press offenses and prosecuting all perpetrators of threats and attacks against human rights defenders and journalists", - "values": [ - "Freedom of opinion and expression", - "Freedom of the press", - "Human rights defenders" - ] - }, - { - "text": "Amend the Criminal Code to no longer define rape according to the degree of violence used by the perpetrator but rather the lack of consent of the victim", - "values": [ - "Women's rights" - ] - }, - { - "text": "Train more teachers and improve the quality of education in the rural areas", - "values": [ - "Right to education" - ] - }, - { - "text": "Accede to the Agreement on the Privileges and Immunities of the International Criminal Court ", - "values": [ - "International instruments", - "Justice" - ] - }, - { - "text": "Submit its overdue reports to the respective treaty bodies", - "values": [ - "Treaty bodies" - ] - }, - { - "text": "Continue to devote special attention to the promotion and protection of the human rights of vulnerable groups, such as women, children and the elderly", - "values": [ - "Rights of the Child", - "Women's rights" - ] - }, - { - "text": "Adopt specific measures at the legislative and policy levels to ensure the full inclusion of children from minorities, asylum seekers and migrant backgrounds, and boys and girls with disabilities, in its educational system", - "values": [ - "Asylum-seekers - refugees", - "Disabilities", - "Migrants", - "Minorities", - "Right to education", - "Rights of the Child" - ] - }, - { - "text": "Remove barriers prohibiting scheduled castes and schedule tribes from registering their children\u2019s births and obtaining birth certificates", - "values": [ - "Minorities", - "Rights of the Child", - "Statelessness and the right to nationality" - ] - }, - { - "text": "Cooperate actively with the international community, in particular United Nations mechanisms, as well as promote democratic rule and restoration of law and order", - "values": [ - "Justice", - "Technical assistance and cooperation" - ] - }, - { - "text": "Consider ratifying the ILO Convention 189 ", - "values": [ - "International instruments", - "Labour" - ] - }, - { - "text": "Continue efforts to prevent violence against children ", - "values": [ - "Rights of the Child" - ] - }, - { - "text": "Amend Law 548 on child labour to meet the State's international human rights obligations on the minimum working age for children, to prohibit child labour in hazardous conditions, protect children from economic exploitation, protect children from any work that is likely to interfere with their education, and progressively raise the minimum age of employment", - "values": [ - "International instruments", - "Labour", - "Rights of the Child" - ] - }, - { - "text": "Accelerate its efforts to effectively set up a national human rights institution in line with the Paris Principles ", - "values": [ - "National Human Rights Institution" - ] - }, - { - "text": "Establish a national institution for the promotion and protection of human rights in line with the Paris Principles ", - "values": [ - "National Human Rights Institution" - ] - }, - { - "text": "Improve efficiency and empower its policy and instruments on protecting and promoting minority groups, in particular ensuring the appropriate allocation to the Fund for Minorities ", - "values": [ - "Minorities" - ] - }, - { - "text": "Pursue the process of acceding to international instruments", - "values": [ - "International instruments" - ] - }, - { - "text": "Ratify the Convention against Torture and Other Forms of Cruel, Degrading or Inhuman Treatment or Punishment", - "values": [ - "International instruments", - "Torture and other CID treatment" - ] - }, - { - "text": "Develop and promote programmes to provide access to jobs, education, transportation and public spaces, as well as protection from violence for persons with disabilities", - "values": [ - "Disabilities" - ] - }, - { - "text": "Implement its commitment to holding a constitutional referendum on children's rights with a view to incorporating those rights into the Irish Constitution ", - "values": [ - "Rights of the Child" - ] - }, - { - "text": "Decriminalize homosexuality as well as protect freedom and privacy of persons", - "values": [ - "Sexual Orientation and Gender Identity" - ] - }, - { - "text": "Take continuous measures for the protection of the rights of women, children and other marginalized groups", - "values": [ - "Rights of the Child", - "Women's rights" - ] - }, - { - "text": "Fully implement the land law passed.", - "values": [ - "Right to land" - ] - }, - { - "text": "Institute a comprehensive statutory inquiry and compensation scheme in order to guarantee accountability and assist the (women and children) victims (of violence)", - "values": [ - "Rights of the Child", - "Women's rights" - ] - }, - { - "text": "Continue promoting gender equality as a national priority which echoes the recommendation of SR on violence against women regarding the acceleration of the realization of women's equality with men in all areas", - "values": [ - "Special procedures", - "Women's rights" - ] - }, - { - "text": "Facilitate the access of United Nations agencies and other humanitarian actors to conflict zones", - "values": [ - "Technical assistance and cooperation" - ] - }, - { - "text": "Promote a constructive dialogue between authorities and indigenous people and their organizations and the participation of indigenous people in the formulation and implementation of laws and programmes affecting their lives and provide resources to this end.", - "values": [ - "Indigenous peoples" - ] - }, - { - "text": "Place high priority on the full incorporation of the Convention on the Elimination of All Forms of Discrimination against Women into the domestic legal system", - "values": [ - "International instruments", - "Women's rights" - ] - }, - { - "text": "Establish the Ombudsman as an autonomous body under public law and its full use for the protection of human rights", - "values": [ - "National Human Rights Institution" - ] - }, - { - "text": "Strengthen the role of the Family Violence Support Unit of the Police and provide all police forces with adequate training on how to treat cases of violence against women and domestic violence and how to provide support to victims", - "values": [ - "Rights of the Child", - "Women's rights" - ] - }, - { - "text": "Verify the impact of the amendments of the educational law relating to the mandate to "morally educate children in compliance with the values of the constitution" on the realization of human rights, in particular women's rights, rights of lesbian, gay, bisexual, transgender and intersex persons and freedom of expression", - "values": [ - "Freedom of opinion and expression", - "Human rights education and training", - "Right to education", - "Rights of the Child", - "Sexual Orientation and Gender Identity", - "Women's rights" - ] - }, - { - "text": "Develop and implement a comprehensive and coordinated strategy to fight domestic violence, particularly violence against women", - "values": [ - "Rights of the Child", - "Women's rights" - ] - }, - { - "text": "Establish a national strategy to combat violence against women and girls, and take appropriate measures for coordinated, multisectoral responses in this regard ", - "values": [ - "Rights of the Child", - "Women's rights" - ] - }, - { - "text": "Urgently repeal legislation criminalising consensual homosexual activity and release from detention individuals convicted of those offences ", - "values": [ - "Sexual Orientation and Gender Identity" - ] - }, - { - "text": "Further strengthen the legislative environment for journalists and media outlets, take additional measures for their safety, and tackle impunity for attacks on journalists", - "values": [ - "Freedom of the press", - "Impunity" - ] - }, - { - "text": "Allow full participation by all ethnic and democratic groups, including the National League for Democracy and Aung San Suu Kyi, in the political life of the country, allowing the start of a genuine process of national reconciliation ", - "values": [ - "CP rights - general", - "Minorities" - ] - }, - { - "text": "Consider ratifying the International Labour Organization Indigenous and Tribal Peoples Convention, 1989 (No. 169)", - "values": [ - "Indigenous peoples", - "International instruments" - ] - }, - { - "text": "Consider improving its legal and institutional frameworks for protection against discrimination by ensuring the same level of protection for all grounds of discrimination", - "values": [ - "Other" - ] - }, - { - "text": "End extrajudicial killings and associated impunity, including by passing draft bill No. 4471/2012, by abolishing the classification \u201cresistance to arrest followed by death\u201c and by ensuring that all deaths following police interventions are impartially investigated", - "values": [ - "Extrajudicial executions", - "Impunity" - ] - }, - { - "text": "Further ensure the enjoyment of human rights in particular in the areas of economic, social and cultural rights and the right to development ", - "values": [ - "Development", - "ESC rights - general" - ] - }, - { - "text": "Expedite the completion of its strategic national action plan for human rights", - "values": [ - "General" - ] - }, - { - "text": "Continue to prioritize gender mainstreaming and to ensure that appropriate mechanisms are in place to implement, monitor and review the Government's strategy", - "values": [ - "Women's rights" - ] - }, - { - "text": "Repeal laws criminalizing abortion and eliminate all punitive measures", - "values": [ - "Women's rights" - ] - }, - { - "text": "Institute reforms guaranteeing free and fair democratic elections that conform to international standards ", - "values": [ - "Elections" - ] - }, - { - "text": "Consider acceding to other international instruments to which it is not yet party and reflect on the ways and means which would permit the country to incorporate these rights into its domestic law", - "values": [ - "International instruments" - ] - }, - { - "text": "Amend legislation that allows corporal punishment, including amputation, and criminalize torture", - "values": [ - "Torture and other CID treatment" - ] - }, - { - "text": "Ensure safe and unhindered access to all humanitarian personnel and humanitarian assistance to the civilian population, and most importantly refrain from imposing blockades on the Gaza Strip.", - "values": [ - "Freedom of movement" - ] - }, - { - "text": "Continue efforts to increase awareness of the culture of human rights and establish an institutional culture which respects human rights in the country ", - "values": [ - "Human rights education and training" - ] - }, - { - "text": "Adopt national legislation criminalizing domestic violence", - "values": [ - "Rights of the Child", - "Women's rights" - ] - }, - { - "text": "Take more effective measures to combat racial discrimination and intolerance, including by promptly investigating and taking stern action against the perpetrators of hatred, racist and xenophobic acts, speeches and publications", - "values": [ - "Racial discrimination" - ] - }, - { - "text": "The Government will continue to provide and ensure improved and easily accessible service delivery at district and grassroots level to its citizens.", - "values": [ - "Other" - ] - }, - { - "text": "Take further measures, both in terms of legislation and implemented policies, in order to ensure the respect for human rights of all migrants", - "values": [ - "Migrants" - ] - }, - { - "text": "Adopt a sexual and reproductive health policy for adolescents and develop a policy to protect the rights of pregnant teenagers, adolescent mothers and their children and combat discrimination against them", - "values": [ - "Right to health", - "Rights of the Child", - "Women's rights" - ] - }, - { - "text": "Effectively implement ongoing national policy to guarantee quality education for minority", - "values": [ - "Minorities", - "Right to education" - ] - }, - { - "text": "Combat impunity for attacks on human rights defenders by effectively investigating allegations and by prosecuting those responsible.", - "values": [ - "Human rights defenders", - "Impunity" - ] - }, - { - "text": "Take concrete measures aimed at preventing and punishing the perpetrators of hate speech and incitement of violent attacks against ethnic and religious minorities", - "values": [ - "Freedom of religion and belief", - "Racial discrimination" - ] - }, - { - "text": "Commitment of the State to promote the legal and administrative conditions for real and effective equality and to take necessary steps to prevent and combat discrimination, marginalization, vulnerability and exclusion", - "values": [ - "General" - ] - }, - { - "text": "Cooperate fully with the Special Rapporteur on the situation of human rights in Belarus and heed his recommendations", - "values": [ - "Special procedures" - ] - }, - { - "text": "Strengthen the national human rights institution, in full compliance with the Paris Principles", - "values": [ - "National Human Rights Institution" - ] - }, - { - "text": "Pursue efforts for the universalization of education for all school-aged children in order to fulfill the second Millennium Development Goal on the right to education.", - "values": [ - "Right to education", - "Rights of the Child" - ] - }, - { - "text": "Condemn and investigate all violence against journalists, inform UNESCO of the actions taken to prevent the killing of journalists and notify UNESCO of judicial inquiries conducted", - "values": [ - "Extrajudicial executions", - "Freedom of the press" - ] - }, - { - "text": "As regards Recommendation 70.19 which concerned the invitation to the Special Rapporteur on Torture, the delegation indicated that Guyana noted this recommendation and volunteered to consider it further and report to the Human Rights Council.", - "values": [ - "Special procedures", - "Torture and other CID treatment" - ] - }, - { - "text": "Continue efforts regarding the rights of the child and welcomed all initiatives relating to street children ", - "values": [ - "Rights of the Child" - ] - }, - { - "text": "Continue the process of accession to or ratification of the pending main international human rights instruments, in particular OP-CRPD ", - "values": [ - "Disabilities", - "International instruments" - ] - }, - { - "text": "Accelerate the passage of the law establishing the Constitutional Court in accordance with the Constitution of Suriname", - "values": [ - "Justice" - ] - }, - { - "text": "Take all necessary measures to combat domestic violence, punish offenders, provide material and psychological relief to victims, as recommended by the Human Rights Committee, and promote family and associated values in society to tackle domestic violence.", - "values": [ - "Rights of the Child", - "Treaty bodies", - "Women's rights" - ] - }, - { - "text": "Amend its legislation to enable the enjoyment and practice of freedom of religion or belief for both citizens and foreigners living in the country", - "values": [ - "Freedom of religion and belief" - ] - }, - { - "text": "Swiftly adopt a new Penal Procedure Code and Correctional Execution Code to allow for alternative sentencing", - "values": [ - "Justice" - ] - }, - { - "text": "Eradicate all harmful practices such as female genital mutilation and early or forced marriages, and take the necessary measures to ensure the full protection of boys and girls", - "values": [ - "Rights of the Child", - "Torture and other CID treatment", - "Women's rights" - ] - }, - { - "text": "Following the enactment of the Education Act (2013), adopt policies and regulations to strengthen access to and quality of education, which is free and compulsory for all school-aged children", - "values": [ - "Right to education", - "Rights of the Child" - ] - }, - { - "text": "Take action in order to avoid discrimination of LGBT persons, in practice and through law ", - "values": [ - "Sexual Orientation and Gender Identity" - ] - }, - { - "text": "Strengthen the national measures to combat the phenomenon of human trafficking and trafficking of human organs and protect the victims of trafficking from actions of retaliation", - "values": [ - "Trafficking" - ] - }, - { - "text": "Promote the development of human rights norms", - "values": [ - "General" - ] - }, - { - "text": "Take necessary steps to implement the relevant plan of action adopted by the National Coordination Mechanism, as a part of its ongoing fight against trafficking in human beings ", - "values": [ - "Trafficking" - ] - }, - { - "text": "Reinforce measures aimed at punishing and preventing the trafficking in persons and supporting victims ", - "values": [ - "Trafficking" - ] - }, - { - "text": "Further promote gender equality and women's participation in public life", - "values": [ - "Women's rights" - ] - }, - { - "text": "Prohibit the practice of asylum-seekers - non-crime offenders detention in police custody by paying special care to minors and victims of human trafficking ", - "values": [ - "Asylum-seekers - refugees", - "Detention", - "Rights of the Child", - "Trafficking" - ] - }, - { - "text": "Extend free primary education throughout the country ", - "values": [ - "Right to education" - ] - }, - { - "text": "Strive to achieve the right to education of all boys and girls with strict respect to the principle of non-discrimination and take concrete measures to fight the high dropout rates in schools and preschools among minority and vulnerable groups", - "values": [ - "Minorities", - "Right to education", - "Rights of the Child" - ] - }, - { - "text": "Carry out a legislative review so as to ensure an automatic and legal registration at birth, while guaranteeing the protection of personal data and especially the right to access such data", - "values": [ - "Rights of the Child", - "Statelessness and the right to nationality" - ] - }, - { - "text": "Continue to fulfil its international human rights obligations regarding asylum seekers, refugees and migrants", - "values": [ - "Asylum-seekers - refugees", - "Migrants" - ] - }, - { - "text": "Consider the suggestions made by CERD in respect to the acquisition of dual citizenship", - "values": [ - "Racial discrimination", - "Statelessness and the right to nationality", - "Treaty bodies" - ] - }, - { - "text": "Adopt the new plan of action on gender equality", - "values": [ - "Women's rights" - ] - }, - { - "text": "Continue the efforts to prevent and fight violence against children", - "values": [ - "Rights of the Child", - "Torture and other CID treatment" - ] - }, - { - "text": "Ratify ILO Convention No. 189 on Domestic Workers ", - "values": [ - "International instruments", - "Labour" - ] - }, - { - "text": "Seek assistance from the international community to provide the necessary support and coordination among all stakeholders in order to achieve remaining/future programmes for the voluntary return of displaced persons and refugees, as well as development programmes ", - "values": [ - "Asylum-seekers - refugees", - "Internally displaced persons", - "Technical assistance and cooperation" - ] - }, - { - "text": "Continue in its firm commitment to support initiatives in favour of the right of peoples to self-determination, as well as in its consistent support for all efforts aiming at putting an end to all types of foreign occupation", - "values": [ - "Other" - ] - }, - { - "text": "Facilitate the greater integration and participation in society of people with disabilities and, in particular, implement a more expansive sheltered housing strategy with measurable targets that will achieve a substantial reduction in the number of people with disabilities currently in institutional care ", - "values": [ - "Disabilities" - ] - }, - { - "text": "Consider the possibility of inviting the Independent Expert on the issue of human rights obligations concerning access to drinking water and sanitation ", - "values": [ - "Right to water and sanitation", - "Special procedures" - ] - }, - { - "text": "Take concrete measures, including legislative measures, in order to improve access to justice for women who are victims of gender-based violence", - "values": [ - "Women's rights" - ] - }, - { - "text": "Consider ratifying the Optional Protocols to CRC on the involvement of children in armed conflict and on a communications procedure ", - "values": [ - "International humanitarian law", - "International instruments", - "Rights of the Child" - ] - }, - { - "text": "Further promote prenatal care and consultation to reduce the need for emergency transportation at the time of labour and thereby reduce the risk of death among mothers and children", - "values": [ - "Right to health", - "Rights of the Child", - "Women's rights" - ] - }, - { - "text": "Ratify the Optional Protocol to the Convention against Torture and Other Cruel and Inhumane Treatment or Punishment ", - "values": [ - "Detention", - "International instruments", - "Torture and other CID treatment" - ] - }, - { - "text": "Ratify the Convention on Cybercrime and the Arms Trade Treaty within a reasonable period of time", - "values": [ - "International instruments", - "Public security" - ] - }, - { - "text": "Put in place a national human rights institution in conformity with the Paris Principles", - "values": [ - "National Human Rights Institution" - ] - }, - { - "text": "Continue the implementation of the Crime Prevention Strategy plan, which fosters the peaceful coexistence of the society members and ethnic minorities", - "values": [ - "Minorities" - ] - }, - { - "text": "Further improve economic and social indicators, in particular in the sectors of drinking water, education, health and social housing", - "values": [ - "Right to education", - "Right to health", - "Right to housing", - "Right to water and sanitation" - ] - }, - { - "text": "Continue efforts to promote and protect the role and status of women", - "values": [ - "Women's rights" - ] - }, - { - "text": "Continue its cooperation with the High Commissioner for Human Rights, treaty bodies and special procedures mandate holders ", - "values": [ - "Special procedures", - "Technical assistance and cooperation", - "Treaty bodies" - ] - }, - { - "text": "Continue its efforts to end violence against women, including through enacting preventive legislation, as well as through providing rehabilitative services to victims", - "values": [ - "Women's rights" - ] - }, - { - "text": "Protect journalists, human rights defenders and other representatives of civil society against acts of intimidation and violence to which their activities may expose them", - "values": [ - "Civil society", - "Freedom of the press", - "Human rights defenders" - ] - }, - { - "text": "Complete its accession to the core human rights instruments that are still not yet ratified ", - "values": [ - "International instruments" - ] - }, - { - "text": "Put an end to its policies that are contrary to international law and international humanitarian law, respecting the enjoyment of the human rights of the Palestinian people", - "values": [ - "International humanitarian law", - "International instruments" - ] - }, - { - "text": "Consider ratifying International Labour Organization Convention No. 189", - "values": [ - "International instruments", - "Labour" - ] - }, - { - "text": "Take all necessary actions to protect homosexuals from harassment, discrimination and violence.", - "values": [ - "Sexual Orientation and Gender Identity" - ] - }, - { - "text": "Take measures to address the issue of prison overcrowding and poor prison conditions, including providing prisoners with access to medical staff and court-appointed counsel.", - "values": [ - "Detention" - ] - }, - { - "text": "Resume efforts to find a negotiated political solution to the Syrian people's tragedy", - "values": [ - "Other" - ] - }, - { - "text": "Continue applying programmes and measures for the enjoyment of the right to education and the right to health", - "values": [ - "Right to education", - "Right to health" - ] - }, - { - "text": "Intensify measures to strengthen inter-confessional and inter-ethnic harmony in the country", - "values": [ - "Freedom of religion and belief", - "Minorities" - ] - }, - { - "text": "Ensure that detention of refugees, migrants and asylum-seekers is applied only as a last resort", - "values": [ - "Asylum-seekers - refugees", - "Migrants" - ] - }, - { - "text": "Undertake efforts to withdraw the country's reservations to the Convention on the Elimination of all Forms of Discrimination against Women", - "values": [ - "International instruments", - "Women's rights" - ] - }, - { - "text": "Actively contribute to drafting the roadmap and benchmarks envisaged by Human Rights Council resolution 15/28 in cooperation with OHCHR and priority be given to capacity-building in the judicial sector ", - "values": [ - "Justice" - ] - }, - { - "text": "Specifically determine its needs in order to be able to seek international assistance in its endeavors.", - "values": [ - "Technical assistance and cooperation" - ] - }, - { - "text": "Adopt the necessary measures to ensure an adequate implementation of reforms in the area of gender violence ", - "values": [ - "Women's rights" - ] - }, - { - "text": "Enact the Prevention of Torture Bill currently pending in the parliament in compliance with the Convention against Torture and Other Cruel, Inhuman or Degrading Treatment or Punishment", - "values": [ - "Torture and other CID treatment" - ] - }, - { - "text": "Further increase its efforts to prevent the sexual exploitation of children and to prosecute the authors of such acts", - "values": [ - "Rights of the Child" - ] - }, - { - "text": "Consider to end the use of corporal punishment for person under 18 and to establish a moratorium on executions of persons having committed crimes before the age of 18 ", - "values": [ - "Rights of the Child", - "Torture and other CID treatment" - ] - }, - { - "text": "Put in place a comprehensive strategy, including review and formulation of legislation, to modify or eliminate traditional practises and stereotypes that discriminate against women", - "values": [ - "Women's rights" - ] - }, - { - "text": "Continue its efforts to re-accredit the National Slovak Human Rights Centre as the national human rights institution, in compliance with the Paris Principles ", - "values": [ - "National Human Rights Institution" - ] - }, - { - "text": "Continue to pay attention to promoting gender equality and eliminating discrimination against women ", - "values": [ - "Women's rights" - ] - }, - { - "text": "Continue to respect the terms of the SADC roadmap and that political leaders work together towards reconciliation", - "values": [ - "Justice" - ] - }, - { - "text": "Enact legislation to prohibit discrimination on the basis of gender, including with regard to land rights ", - "values": [ - "Right to land", - "Women's rights" - ] - }, - { - "text": "Step up measures, such as human rights education in schools, so as to promote a more tolerant and inclusive society ", - "values": [ - "Human rights education and training" - ] - }, - { - "text": "Investigate the role of security forces in child recruitment and hold those responsible accountable.", - "values": [ - "Rights of the Child" - ] - }, - { - "text": "Amend national legislation to allow Ghanaian nationals residing abroad to vote", - "values": [ - "Elections" - ] - }, - { - "text": "Amend the National Reconciliation, General Amnesty and National Stability Law to allow for prosecutions of certain crimes, such as genocide, war crimes and torture ", - "values": [ - "Justice", - "Torture and other CID treatment" - ] - }, - { - "text": "Consider reviewing its national legislation and regulations to incorporate greater gender perspective and women's rights in the workplace and mobilize support for women in need ", - "values": [ - "Women's rights" - ] - }, - { - "text": "Strengthen actions to combat discrimination and negative attitudes against women, including women belonging to Roma and migrants and against children of minority groups ", - "values": [ - "Migrants", - "Minorities", - "Rights of the Child", - "Women's rights" - ] - }, - { - "text": "Prevent religiously motivated incidents against Muslims and promote multiculturalism and tolerance", - "values": [ - "Freedom of religion and belief", - "Racial discrimination" - ] - }, - { - "text": "As a first step towards its [death penalty] abolition", - "values": [ - "Death penalty" - ] - }, - { - "text": "Continue its efforts to protect and guarantee the rights of all people, particularly those of children and women, with a view to securing for all citizens just and reasonable access to justice, education, and health care, respecting the importance and role of the family ", - "values": [ - "Rights of the Child", - "Women's rights" - ] - }, - { - "text": "Ratify the ICRMW and the Convention against Torture and Other Cruel, Inhuman or Degrading Treatment or Punishment (CAT) and extend a standing invitation to the United Nations Special Procedures ", - "values": [ - "International instruments", - "Labour", - "Migrants", - "Special procedures", - "Torture and other CID treatment" - ] - }, - { - "text": "Continue advancing in the implementation of the specialized body of judges to tackle violence against women and the family ", - "values": [ - "Women's rights" - ] - }, - { - "text": "Amend national legislation that entails discriminatory practices, prosecution and punishment of persons for their sexual orientation or gender identity, and adopt measures to promote tolerance in the society through education and awareness campaigns", - "values": [ - "Human rights education and training", - "Sexual Orientation and Gender Identity" - ] - }, - { - "text": "Provide adequate administrative resources in order to fully and effectively implement the Code on Access to Information", - "values": [ - "Freedom of opinion and expression" - ] - }, - { - "text": "Strengthen the judicial system in order to ensure respect for due process, and reform the system of pre-trial detention", - "values": [ - "Detention", - "Justice" - ] - }, - { - "text": "Fully implement the recommendations of the LLRC, in particular steps to ensure independent and effective investigations into all allegations of serious human rights violations, in the context of Sri Lanka's civil war and its aftermath", - "values": [ - "Justice" - ] - }, - { - "text": "Continue its efforts to further ensure ethnic minorities the full range of human rights including cultural rights", - "values": [ - "Minorities" - ] - }, - { - "text": "Make progress in the implementation of legislative measures to ensure the prohibition of discrimination in education, in order to protect minority groups and promote gender equality", - "values": [ - "Minorities", - "Racial discrimination", - "Right to education", - "Women's rights" - ] - }, - { - "text": "Take appropriate measures to reform its penal code, particularly aiming at eliminating corporal punishment ", - "values": [ - "Justice", - "Torture and other CID treatment" - ] - }, - { - "text": "Prioritize the education of the girl child ", - "values": [ - "Right to education", - "Rights of the Child", - "Women's rights" - ] - }, - { - "text": "Ratify the Convention on the Elimination of All Forms of Discrimination against Women and eliminate discriminatory practices, especially during conflict", - "values": [ - "International humanitarian law", - "International instruments", - "Women's rights" - ] - }, - { - "text": "Design and implement a comprehensive policy on care and protection to migrants, refugees and asylum-seekers in Greece ", - "values": [ - "Asylum-seekers - refugees", - "Migrants" - ] - }, - { - "text": "Take steps to fight against trafficking in human beings and to comply with the conclusions of the Committee of the Right of the Child and other treaty bodies.", - "values": [ - "Trafficking", - "Treaty bodies" - ] - }, - { - "text": "Take measures to establish a new legislative framework ensuring freedom of the press.", - "values": [ - "Freedom of the press" - ] - }, - { - "text": "Eradicate the continued impunity for perpetrators of crimes against freedom of expression ", - "values": [ - "Freedom of opinion and expression", - "Impunity" - ] - }, - { - "text": "Continue implementing programmes and measures to improve the enjoyment of the right to education, the right to health and the right to food ", - "values": [ - "Right to education", - "Right to food", - "Right to health" - ] - }, - { - "text": "Continue reforms initiated in education", - "values": [ - "Right to education" - ] - }, - { - "text": "Take concrete actions to speed up the reporting process for overdue treaty body reports and include all stakeholders in a transparent process ", - "values": [ - "Treaty bodies" - ] - }, - { - "text": "Ensure the investigation of all allegations of ill treatment and excessive use of force, and bring the perpetrators to justice ", - "values": [ - "Torture and other CID treatment" - ] - }, - { - "text": "Take more serious measures to prevent and suppress manifestation of racism, xenophobia and intolerance against minority groups in the country, in particular the Muslims ", - "values": [ - "Freedom of religion and belief", - "Minorities", - "Racial discrimination" - ] - }, - { - "text": "Continue its efforts in order to counter illiteracy amongst girls and women", - "values": [ - "Right to education", - "Rights of the Child", - "Women's rights" - ] - }, - { - "text": "Continue to develop its economy in accordance with its national conditions, and continue to reduce poverty and empower women as key areas in its human rights protection efforts", - "values": [ - "Development", - "Poverty", - "Women's rights" - ] - }, - { - "text": "Take further steps towards ensuring better representation and participation of women in public and political life, including in the Government and Parliament ", - "values": [ - "Women's rights" - ] - }, - { - "text": "An effective public policy for persons with disabilities that relies more on legislation and measures aimed at giving persons with disabilities, particularly children, access to health care and education, providing help to families of children with disabilities, mainstreaming children with disabilities in ordinary schools, and raising public awareness of the fundamental rights of persons with disabilities", - "values": [ - "Disabilities", - "Right to education", - "Right to health", - "Rights of the Child" - ] - }, - { - "text": "Take steps to fully implement the Elimination of Violence against Women Law, including by providing training and capacity-building to law enforcement officials, implementing standard, country-wide procedures to record and track complaints of violence against women, and ensuring that all allegations of violence against women are thoroughly investigated and referred to the appropriate authorities under Afghan law ", - "values": [ - "Women's rights" - ] - }, - { - "text": "Cooperate with the Extraordinary Chambers, the United Nations, international donors and civil society to develop a strategy aimed at ensuring that the national jurisdictions can benefit from the experience of the Extraordinary Chambers ", - "values": [ - "Civil society", - "Justice" - ] - }, - { - "text": "Continue to strengthen legislation aimed at the elimination of gender based violence ", - "values": [ - "Women's rights" - ] - }, - { - "text": "Take the necessary steps to eliminate discrimination faced by ethnic minorities and ensure that they enjoy their right to culture and their religious freedom is protected", - "values": [ - "Freedom of religion and belief", - "Minorities", - "Racial discrimination" - ] - }, - { - "text": "Continue carrying out administrative and judicial reforms to prepare for the ratification of the ICCPR", - "values": [ - "CP rights - general", - "International instruments" - ] - }, - { - "text": "Ratify ICERD, ICESCR, ICCPR, and the Convention against Torture and Other Cruel, Inhuman or Degrading Treatment or Punishment ", - "values": [ - "CP rights - general", - "ESC rights - general", - "International instruments", - "Racial discrimination", - "Torture and other CID treatment" - ] - }, - { - "text": "Continue its efforts in countering racist discourse in politics and in the media, fighting racially motivated crimes, and eliminating violence and discrimination based on sexual orientation and gender identity", - "values": [ - "Racial discrimination", - "Sexual Orientation and Gender Identity" - ] - }, - { - "text": "Continue efforts in education and training on human rights, particularly for State agents and civil servants", - "values": [ - "Human rights education and training" - ] - }, - { - "text": "Strengthen measures to protect vulnerable persons", - "values": [ - "Minorities" - ] - }, - { - "text": "Enact legislation which would, in line with article 1 of the Convention against Torture, prevent and eliminate torture and combat impunity.", - "values": [ - "Impunity", - "International instruments", - "Torture and other CID treatment" - ] - }, - { - "text": "Consider ratifying the conventions on stateless persons ", - "values": [ - "International instruments", - "Statelessness and the right to nationality" - ] - }, - { - "text": "Adopt additional measures aiming at protecting the minorities and continue cooperating with the international community with a view to stop the increasing violence", - "values": [ - "Minorities", - "Technical assistance and cooperation" - ] - }, - { - "text": "Seek the assistance of OHCHR and the international community in relation to human rights education, improving the justice system and strengthening the monitoring of progress in achieving the Millennium Development Goals and the goals of Vision 2016.", - "values": [ - "Development", - "Human rights education and training", - "Justice", - "Technical assistance and cooperation" - ] - }, - { - "text": "Adopt a definition of torture in line with article 1 of the Convention against Torture", - "values": [ - "International instruments", - "Torture and other CID treatment" - ] - }, - { - "text": "Improve the legal-regulatory framework to ensure the social rights of migrants, facilitate their integration in the labour market and their access to education, as well as ensure adequate attitude towards them in society by using the media", - "values": [ - "Labour", - "Migrants", - "Right to education" - ] - }, - { - "text": "Take steps to eliminate any discrimination in the enjoyment of all human rights by lesbian, gay, bisexual and transgendered LGBT individuals, including by ensuring that their right to freedom of association is fully respected ", - "values": [ - "Freedom of association and peaceful assembly", - "Sexual Orientation and Gender Identity" - ] - }, - { - "text": "Continue to develop measures against domestic violence, maltreatment and abuse, including sexual abuse, and, as recommended by the Committee on the Rights of the Child, explicitly prohibit corporal punishment, not only in schools, but also in the family ", - "values": [ - "Rights of the Child", - "Torture and other CID treatment", - "Treaty bodies" - ] - }, - { - "text": "Accede to the 1961 Convention on the Reduction of Statelessness and take all relevant measures in order to reduce the number of stateless persons", - "values": [ - "International instruments", - "Statelessness and the right to nationality" - ] - }, - { - "text": "Establish a national institution for the promotion and the protection of human rights ", - "values": [ - "National Human Rights Institution" - ] - }, - { - "text": "Continue to build policy dialogue between the Government and independent civil society organizations.", - "values": [ - "Civil society" - ] - }, - { - "text": "Abide by its international human rights obligations and to uphold freedom of the press, freedom of information and freedom of speech", - "values": [ - "Freedom of opinion and expression", - "Freedom of the press", - "International instruments" - ] - }, - { - "text": "Take further measures to address the decline of female enrolment in schools, in order to ensure that young women complete their secondary education", - "values": [ - "Right to education", - "Women's rights" - ] - }, - { - "text": "Continue efforts to eradicate and address cases of violence against women and child abuse", - "values": [ - "Rights of the Child", - "Women's rights" - ] - }, - { - "text": "Continue strengthening the institutionalization of human rights, through establishing a national system for institutional coordination allowing to design, implement and follow-up public human rights policies", - "values": [ - "General" - ] - }, - { - "text": "Ratify early the important international human rights treaties, in particular the International Convention for the Protection of All Persons from Enforced Disappearance", - "values": [ - "Enforced disappearances", - "International instruments" - ] - }, - { - "text": "Ensure equal access to social and economic rights for all citizens ", - "values": [ - "ESC rights - general" - ] - }, - { - "text": "Accede to the Second Optional Protocol to the International Covenant on Civil and Political Rights", - "values": [ - "Death penalty", - "International instruments" - ] - }, - { - "text": "Continue allocating adequate financial and human resources to effectively implement its national action plan on human rights", - "values": [ - "General" - ] - }, - { - "text": "Continue to implement the national gender equality policy framework developed in 2012", - "values": [ - "Women's rights" - ] - }, - { - "text": "Establish a post of an Ombudsman on the issues of national minorities, as recommended previously", - "values": [ - "Minorities", - "UPR process" - ] - }, - { - "text": "Continue to prioritize efforts aimed at strengthening national institutions and developing national capacities, including establishing relevant mechanisms, to undertake regular studies of international human rights instruments and to make appropriate recommendations to the Government", - "values": [ - "International instruments" - ] - }, - { - "text": "Continue to strengthen measures to promote the equal rights of women and to counter discrimination.", - "values": [ - "Women's rights" - ] - }, - { - "text": "Continue its efforts for the protection and promotion of the human rights of vulnerable groups, including persons with disabilities and children", - "values": [ - "Disabilities", - "Rights of the Child" - ] - }, - { - "text": "Thoroughly investigate and prosecute all acts of violence against ethnic and racial minorities and vulnerable groups, including lesbian, gay, bisexual, transgender and intersex persons, and enact legislation on hate crimes based on sexual orientation or gender identity", - "values": [ - "Minorities", - "Racial discrimination", - "Sexual Orientation and Gender Identity" - ] - }, - { - "text": "Make further efforts to address the problem of unemployment", - "values": [ - "Development" - ] - }, - { - "text": "Increase its efforts in order to ensure the participation of women in political processes in the country ", - "values": [ - "Women's rights" - ] - }, - { - "text": "Ensure the promotion of economic, social and cultural rights, including better access to education for female children and persons with disabilities, as well as combating illiteracy ", - "values": [ - "Disabilities", - "ESC rights - general", - "Right to education", - "Rights of the Child", - "Women's rights" - ] - }, - { - "text": "Take the necessary measures to protect journalists against intimidation, violence, censorship and abusive convictions, and have published and applied the new media law adopted by the Parliament.", - "values": [ - "Freedom of the press" - ] - }, - { - "text": "Establish an independent national human rights institution in compliance with the principles relating to the status of national institutions for the promotion and protection of human rights (Paris Principles) ", - "values": [ - "National Human Rights Institution" - ] - }, - { - "text": "Draw up and implement a comprehensive law on trafficking in persons", - "values": [ - "Trafficking" - ] - }, - { - "text": "Develop as a matter of priority a multi-ethnic, inclusive and non-discriminatory common core curriculum, with all levels of Government ensuring that the content of school textbooks promotes and encourages tolerance among ethnic minority groups", - "values": [ - "Human rights education and training", - "Minorities" - ] - }, - { - "text": "Ratify CAT and OP-CAT ", - "values": [ - "Detention", - "International instruments", - "Torture and other CID treatment" - ] - }, - { - "text": "Accelerate its efforts to combat corruption in the country including through the effective implementation of the new National Anticorruption Strategy 2012-2015 ", - "values": [ - "Corruption" - ] - }, - { - "text": "Consider the greater participation and incorporation of indigenous peoples in governmental decisions, and ensure that the Hmong are integrated into society on an equal footing with other citizens ", - "values": [ - "Indigenous peoples" - ] - }, - { - "text": "Take measures to properly handle the case of alleged torture and illtreatment in the military and police and to put a halt to discrimination and violence against women", - "values": [ - "Human rights violations by state agents", - "Torture and other CID treatment", - "Women's rights" - ] - }, - { - "text": "Completely abolish the death penalty", - "values": [ - "Death penalty" - ] - }, - { - "text": "Acknowledge the existence of political prison camps, and take immediate steps to close them ", - "values": [ - "Detention", - "Freedom of opinion and expression" - ] - }, - { - "text": "Consider establishing a moratorium on the death penalty with a view to abolishing it ", - "values": [ - "Death penalty" - ] - }, - { - "text": "Ensure the effective implementation of its National Human Rights Action Plan", - "values": [ - "General" - ] - }, - { - "text": "Remove all legislative and practical obstacles for the registration, funding and work of NGOs in Azerbaijan ", - "values": [ - "Civil society", - "Freedom of association and peaceful assembly" - ] - }, - { - "text": "Accelerate significantly asylum procedures and ensure that they respect the principles of the rule of law", - "values": [ - "Asylum-seekers - refugees" - ] - }, - { - "text": "Repeal provisions which establish compulsory detention for those who enter the country in an irregular manner", - "values": [ - "Detention", - "Migrants" - ] - }, - { - "text": "Continue working on the implementation of the recommendations of the Truth and Justice Commission, including the search for those who disappeared during the dictatorship", - "values": [ - "Justice" - ] - }, - { - "text": "Ensure the prompt, impartial and effective investigation into persisting acts of harassment and persecution against human rights defenders", - "values": [ - "Human rights defenders" - ] - }, - { - "text": "Take measures to improve the participation of persons of immigrant background, especially young people, in the labour market, and to improve their access to education and housing", - "values": [ - "Migrants" - ] - }, - { - "text": "Accelerate the review and subsequent reform of the Family Code so as to eliminate all remaining discriminatory provisions", - "values": [ - "Women's rights" - ] - }, - { - "text": "Further strengthen law enforcement and the judicial system in the effort to address impunity and reduce the incidence of domestic violence as well as physical and sexual abuse of women and girls ", - "values": [ - "Impunity", - "Rights of the Child", - "Women's rights" - ] - }, - { - "text": "Consider the possibility of ratifying the Rome Statute of the International Criminal Court, as proposed by the Committee on the Rights of the Child", - "values": [ - "International instruments", - "Justice", - "Rights of the Child" - ] - }, - { - "text": "Ensure that the education system is fully equipped to implement an inclusive education policy ", - "values": [ - "Right to education" - ] - }, - { - "text": "Amend the Criminal Code to adopt a definition of torture as a criminal offense, as well as the Law of Criminal Procedure to make it punishable ", - "values": [ - "Torture and other CID treatment" - ] - }, - { - "text": "Further strengthen the child rights protection system by bringing the national legislation in line with the provisions of the Convention on the Rights of the Child", - "values": [ - "International instruments", - "Rights of the Child" - ] - }, - { - "text": "Stimulate those citizens with social influence, such as political leaders, journalists, artists and social elements with high visibility to increase society's awareness of human rights.", - "values": [ - "Human rights education and training" - ] - }, - { - "text": "Further strengthen its national human rights institution in accordance with the Paris Principles and pursue the development of a comprehensive national human rights action plan", - "values": [ - "National Human Rights Institution" - ] - }, - { - "text": "Consider the possibility of acceding to the International Convention on the Protection of the Rights of All Migrant Workers and Members of Their Families.", - "values": [ - "International instruments", - "Labour", - "Migrants" - ] - }, - { - "text": "Prioritize the adoption and enactment of the Domestic Violence Bill and put in place further comprehensive measures to prevent and address gender-based violence, including the establishment of institutions for victim support", - "values": [ - "Rights of the Child", - "Women's rights" - ] - }, - { - "text": "Continue efforts to combat violence, particularly against women", - "values": [ - "Women's rights" - ] - }, - { - "text": "Consider signing the core human rights treaties to which it is not yet a party", - "values": [ - "International instruments" - ] - }, - { - "text": "Promotion of human rights within the armed forces, to create human rights awareness programmes, to hold workshops on prevention and eradication of ill-treatment and torture, training on mediation and arbitration, creation of a section within the Ministry of Defence for the prevention and control of corruption with the armed forces", - "values": [ - "Corruption", - "Human rights education and training", - "Torture and other CID treatment" - ] - }, - { - "text": "Ensure appropriate protection is offered to the victims of genderbased violence including enabling them to seek police assistance, leading to prosecution of the perpetrators as appropriate", - "values": [ - "Women's rights" - ] - }, - { - "text": "Strengthen the legal protection of ethnic and religious minorities by drafting new legislation enshrining protections provided for under article 125 of the Iraqi Constitution, and amend the penal code to include stronger penalties against perpetrators who attack places of worship", - "values": [ - "Freedom of religion and belief", - "Minorities" - ] - }, - { - "text": "Continue to take measures to honour its human rights obligations and to advance the promotion and protection of human rights and freedoms", - "values": [ - "General" - ] - }, - { - "text": "Intensify its efforts to address the problem of birth registration since lack of birth registration makes children born in poor families vulnerable to other human rights violations, including human trafficking", - "values": [ - "Poverty", - "Rights of the Child", - "Statelessness and the right to nationality", - "Trafficking" - ] - }, - { - "text": "Meet provisions of international humanitarian law, particularly the Fourth Geneva Convention.", - "values": [ - "International humanitarian law", - "International instruments" - ] - }, - { - "text": "Continue measures to further economic and social development of Xinjiang Uygur Autonomous Region, to protect the right to freedom of religion and belief as well as to maintain stability in this autonomous region", - "values": [ - "Development", - "Freedom of religion and belief" - ] - }, - { - "text": "Continue consolidating its social programmes and strengthening its successful education policy", - "values": [ - "Right to education" - ] - }, - { - "text": "Pursue efforts to promote school attendance of girls and women's rights", - "values": [ - "Right to education", - "Rights of the Child", - "Women's rights" - ] - }, - { - "text": "Adequately protect those social groups particularly vulnerable to budget cuts, as is the case of children and older persons ", - "values": [ - "Rights of the Child" - ] - }, - { - "text": "Adopt measures to stop aggressions and discrimination against persons suffering from albinism ", - "values": [ - "Minorities" - ] - }, - { - "text": "Extend a standing invitation to the special procedures of the Human Rights Council ", - "values": [ - "Special procedures" - ] - }, - { - "text": "Approach the issue of regulating freedom of expression on the Internet through consultations with all stakeholders ", - "values": [ - "Freedom of opinion and expression" - ] - }, - { - "text": "Take appropriate measures to ensure the implementation of the plan of activities to achieve gender equality in Montenegro for the period 2008-2012.", - "values": [ - "Women's rights" - ] - }, - { - "text": "Continue its efforts for the implementation of the Sustainable Development Goals at the grass-roots level", - "values": [ - "Development" - ] - }, - { - "text": "Legislation and regulations to ensure occupational safety, health and welfare at work will be formulated to enable ratification of ILO Convention 155. Measures to ensure non-discrimination at work will be continued and initiatives against child labour - especially hazardous child labour - will be enhanced", - "values": [ - "International instruments", - "Labour", - "Rights of the Child" - ] - }, - { - "text": "Provide further information with regard to efforts to reduce poverty among children in half by 2010.", - "values": [ - "Poverty", - "Rights of the Child" - ] - }, - { - "text": "Continue the fight against discrimination, exclusion, dehumanization, stigmatization and violence suffered by scheduled castes", - "values": [ - "Minorities", - "Racial discrimination" - ] - }, - { - "text": "Take measures to integrate minority children in the school system with a view to preventing segregation and discrimination", - "values": [ - "Minorities", - "Racial discrimination", - "Right to education", - "Rights of the Child" - ] - }, - { - "text": "Take further measures and strengthen its legislation to prevent and punish all violence against women and girls, particularly sexual abuse and domestic violence", - "values": [ - "Rights of the Child", - "Women's rights" - ] - }, - { - "text": "Sustain efforts to promote and protect the rights of groups and of the vulnerable population, such as children, women, disabled and elderly persons", - "values": [ - "Disabilities", - "Rights of the Child", - "Women's rights" - ] - }, - { - "text": "Include Human Rights education and training among its educational programmes, in accordance with the guidelines of the United Nations World Programme for Human Rights Education and Training, both in the first and second stages ", - "values": [ - "Human rights education and training" - ] - }, - { - "text": "Continue negotiations with a view to a peaceful resolution of pending questions ", - "values": [ - "Other" - ] - }, - { - "text": "Abide by its UPR engagements made in 2009 by fully respecting and protecting the rights and freedoms of Human Rights Defenders and journalists and that no fines or prison sentences are imposed on persons for expressing political views or opposition to the current government ", - "values": [ - "Freedom of opinion and expression", - "Freedom of the press", - "Human rights defenders", - "UPR process" - ] - }, - { - "text": "Address the legal gaps in the area of child custody and include relevant provisions relating to protection of women who are the victims of domestic violence as recommended by the Special Rapporteur on violence against women", - "values": [ - "Rights of the Child", - "Special procedures", - "Women's rights" - ] - }, - { - "text": "Harmonize its legislation, regulations and policies with ILO Convention No. 29 (1930) concerning Forced or Compulsory Labour and No. 138 (1973) concerning Minimum Age for Admission to Employment ", - "values": [ - "International instruments", - "Labour", - "Rights of the Child" - ] - }, - { - "text": "Immediately adopt and implement necessary legislative and administrative measures to promote a greater inclusion of women in the country's public and political life, ensuring that they effectively participate in the decision-making process, and lift the reservations made to the Convention on the Elimination of All Forms of Discrimination Against Women", - "values": [ - "International instruments", - "Women's rights" - ] - }, - { - "text": "Continue its efforts to preserve the rights of future generations through its Future Generation Fund", - "values": [ - "Development" - ] - }, - { - "text": "Develop a comprehensive national action plan for addressing violence against indigenous women, and, also, give due consideration to an independent national enquiry into missing indigenous women ", - "values": [ - "Indigenous peoples", - "Women's rights" - ] - }, - { - "text": "Develop transparent and effective mechanisms to prevent violence, particularly violence against women and children, and make sure that such mechanisms are supported by sufficient capacity and resources to address the problem", - "values": [ - "Rights of the Child", - "Women's rights" - ] - }, - { - "text": "Enhance its capacity to promote and protect human rights, with the support of the international community, in terms of capacity-building and technical assistance in human rights, as requested by Burkina Faso.", - "values": [ - "Technical assistance and cooperation" - ] - }, - { - "text": "Remove restrictions on freedom of expression notably concerning the connection to the Internet ", - "values": [ - "Freedom of opinion and expression" - ] - }, - { - "text": "Enshrine the principle of equality and non-discrimination in the Constitution without qualifications by avoiding any discriminatory clauses as the draft is finalized", - "values": [ - "Other" - ] - }, - { - "text": "Take effective and concrete steps to ensure that those responsible for the events of 28 September 2009 are held accountable ", - "values": [ - "Justice" - ] - }, - { - "text": "Take urgent measures to prevent and fight against the social exclusion targeting the Rohingya Muslim minority", - "values": [ - "Freedom of religion and belief", - "Minorities" - ] - }, - { - "text": "Sign, ratify and implement the provisions of the European Charter for Regional or Minority Languages", - "values": [ - "International instruments", - "Minorities" - ] - }, - { - "text": "Consider reviewing its legislation with a view to criminalizing the possession of child pornographic materials", - "values": [ - "Rights of the Child" - ] - }, - { - "text": "Address the continued high prevalence of violence against women and girls, including by strengthening training for the judiciary and law enforcement personnel to enhance their capacity to respond effectively to cases of violence against women and girls", - "values": [ - "Human rights education and training", - "Rights of the Child", - "Women's rights" - ] - }, - { - "text": "Establish ombudsmen federal mechanisms in compliance with the Paris Principles, ensuring their full independence from the State, and adjust those which currently exist to these principles ", - "values": [ - "National Human Rights Institution" - ] - }, - { - "text": "Ensure efficient implementation of the Prohibition of Trafficking in Persons Act to combat trafficking in human beings, by collecting data, improving the training of police officers and other law enforcement officials, strengthening mechanisms for investigating the criminal cases of trafficking and prosecuting and punishing traffickers", - "values": [ - "Trafficking" - ] - }, - { - "text": "Strengthen the mandates of the Ombudsman for Human Rights and the Defender of the Principle of Equality and avoid any overlap in the execution of their respective mandates", - "values": [ - "National Human Rights Institution" - ] - }, - { - "text": "Consider ratifying ICRMW not only to ensure access to just conditions of work and basic social service for migrants, especially those in vulnerable situations, but also to prevent discrimination ", - "values": [ - "International instruments", - "Labour", - "Migrants" - ] - }, - { - "text": "The United States is firmly committed to addressing the causes and impacts of climate change. The National Environmental Policy Act requires federal agencies to incorporate environmental considerations in their planning and decision-making processes. The President's Climate Action Plan has committed to cut carbon pollution and other greenhouse emissions, promote renewable energy development and use, cut waste in homes, businesses, and factories, conserve land and water resources, use sound science to manage climate impacts, launch a climate resilience toolkit and climate data initiative, and actively engage in international efforts to address global climate change.", - "values": [ - "Environment" - ] - }, - { - "text": "Ensure laws regarding discrimination with respect to employment or occupation are enforced and that members of the Romani community have the same inclusive legal protections, wages and working conditions as others", - "values": [ - "Labour", - "Minorities" - ] - }, - { - "text": "Step up efforts to implement the Action Plan for the Human Rights Roadmap for Somalia, as well as to reduce and prevent violence against women", - "values": [ - "Women's rights" - ] - }, - { - "text": "Continue strengthening its sound social policies in order to improve the quality of life of its people with an emphasis on vulnerable groups, in particular ethnic, racial and cultural minorities", - "values": [ - "Freedom of religion and belief", - "Minorities" - ] - }, - { - "text": "Luxembourg pledged to achieve the human rights voluntary goals enshrined in Council resolution 9/12", - "values": [ - "General" - ] - }, - { - "text": "Declare a moratorium on executions and start an information campaign explaining to the population the problems of capital punishment.", - "values": [ - "Death penalty" - ] - }, - { - "text": "Continue efforts to reduce poverty, improve the well-being of the people, protect and enforce the rights of vulnerable groups of the population", - "values": [ - "Development", - "Poverty" - ] - }, - { - "text": "Increase access to sexual and reproductive health services by raising the health budget to 15 per cent in line with the Abuja declaration", - "values": [ - "Right to health" - ] - }, - { - "text": "Further take appropriate actions to strengthen the judicial system and improve detention conditions", - "values": [ - "Detention", - "Justice" - ] - }, - { - "text": "Appropriately investigate deaths which have occurred in the course of police operations associated with the war on drugs", - "values": [ - "Human rights violations by state agents" - ] - }, - { - "text": "Continue to prevent and combat violence against women, guaranteeing women's access to justice and continue to improve support services", - "values": [ - "Women's rights" - ] - }, - { - "text": "Strengthen efforts that are in place to put an end early and forced marriages and bride-kidnapping", - "values": [ - "Rights of the Child", - "Women's rights" - ] - }, - { - "text": "Establish an independent national human rights body ", - "values": [ - "National Human Rights Institution" - ] - }, - { - "text": "Continue to take steps to ensure that its laws and politics are in line with the articles of the Convention on the Rights of Persons with Disabilities", - "values": [ - "Disabilities", - "International instruments" - ] - }, - { - "text": "Continue ensuring State safeguards to provide free legal aid to the population ", - "values": [ - "Justice" - ] - }, - { - "text": "Take all necessary legislative and policy measures to provide access to affordable housing with a view to ending long-term involuntary homelessness", - "values": [ - "Poverty", - "Right to housing" - ] - }, - { - "text": "Continue the same consultative process in the universal periodic review follow-up process to be undertaken ", - "values": [ - "UPR process" - ] - }, - { - "text": "Implement the Law on Social Protection of Disabled Persons as well as international obligations that Moldova has agreed regarding people who are disabled", - "values": [ - "Disabilities" - ] - }, - { - "text": "Continue to implement its effective measures to prevent discrimination against women and to combat violence against them ", - "values": [ - "Women's rights" - ] - }, - { - "text": "Allow for greater freedom of expression for members of the press in advance of the elections, including political reporting, granting equal media access to and coverage of oppositions candidates.", - "values": [ - "Freedom of opinion and expression", - "Freedom of the press" - ] - }, - { - "text": "Continue its efforts to review the competence of military justice when it comes to trying civilians and to reform the Code of Military Justice accordingly. ", - "values": [ - "Justice" - ] - }, - { - "text": "Continue to extend its State scholarship programmes to ensure that students do not drop out of school because of poverty ", - "values": [ - "Poverty", - "Right to education" - ] - }, - { - "text": "Take all appropriate measures to eliminate these forms (child labour, child soldiers, and street begging) of exploitation of children ", - "values": [ - "International humanitarian law", - "Labour", - "Rights of the Child" - ] - }, - { - "text": "Consider reviewing existing migration policies to address concerns that hinder accession to the International Convention on the Protection of the Rights of All Migrant Workers and Members of Their Families", - "values": [ - "International instruments", - "Labour", - "Migrants" - ] - }, - { - "text": "Pursue its efforts in order to curb the violence against women.", - "values": [ - "Women's rights" - ] - }, - { - "text": "Cooperate fully with the United Nations human rights system and consider the issuing of a standing invitation to special procedures", - "values": [ - "Special procedures" - ] - }, - { - "text": "Speed up its national examination procedures with a view of prompt ratification of the Convention on the Elimination of All forms of Discrimination against Women", - "values": [ - "International instruments", - "Women's rights" - ] - }, - { - "text": "Pay attention to the development of infrastructure in remote regions.", - "values": [ - "Development" - ] - }, - { - "text": "Continue to implement the National Policy and National Plan of Human Rights", - "values": [ - "General" - ] - }, - { - "text": "Investigate torture allegations, extrajudicial executions and other violations of human rights committed in Guantanamo, Abu Ghraib, Bagram, NAMA and BALAD camps and to subsequently close them", - "values": [ - "Detention", - "Extrajudicial executions", - "Torture and other CID treatment" - ] - }, - { - "text": "Cooperate with the international human rights mechanisms and humanitarian agencies, specifically by issuing a standing invitation to the special procedures of the Human Rights Council and allowing full and unhindered access to all persons in need of humanitarian assistance ", - "values": [ - "Special procedures", - "Treaty bodies", - "UPR process" - ] - }, - { - "text": "Take all relevant steps to protect human rights defenders", - "values": [ - "Human rights defenders" - ] - }, - { - "text": "Establish without any delay an official moratorium on executions", - "values": [ - "Death penalty" - ] - }, - { - "text": "Refrain from adopting legislation that would limit the right to freedom of association", - "values": [ - "Freedom of association and peaceful assembly" - ] - }, - { - "text": "Take measures to ensure that children under 18 are protected against sale and trafficking, and that investigations and prosecutions of offenders were carried out, and penalties imposed ", - "values": [ - "Rights of the Child", - "Trafficking" - ] - }, - { - "text": "Issue an open invitation to the human rights special procedures of the United Nations", - "values": [ - "Special procedures" - ] - }, - { - "text": "Ratify treaties and other international human rights instruments to which Saint Kitts and Nevis is not party yet, particularly the Optional Protocol to the Convention on the Rights of the Child on the sale of children, child prostitution and child pornography", - "values": [ - "International instruments", - "Rights of the Child", - "Trafficking" - ] - }, - { - "text": "Eliminate the criminalization of homosexuality and adopt urgent measures to amend the Criminal Code to this effect ", - "values": [ - "Sexual Orientation and Gender Identity" - ] - }, - { - "text": "Implement a national plan of action that would abolish traditional practices and stereotypes that consequently widen the gender gap", - "values": [ - "Women's rights" - ] - }, - { - "text": "Expedite the ratification of the ICCPR", - "values": [ - "CP rights - general", - "International instruments" - ] - }, - { - "text": "Expeditiously and fully implement the Constitution adopted in 1997 and strive for the earliest adoption of a penal code, a criminal procedure code as well as a civil code and a civil procedure code, in accordance with international standards, and provide clearly in new legislation for freedom of expression, assembly, movement, religion and belief ", - "values": [ - "Freedom of association and peaceful assembly", - "Freedom of movement", - "Freedom of opinion and expression", - "Freedom of religion and belief", - "Justice" - ] - }, - { - "text": "Increase cooperation with the relevant United Nations bodies and other regional and international organizations in its efforts to mitigate the harms from environmental degradation and adapt to the effects of climate change on its citizens ", - "values": [ - "Environment" - ] - }, - { - "text": "Continue to effectively implement the relevant legislation to counter discrimination and hate crimes based on ethnicity and religion", - "values": [ - "Freedom of religion and belief", - "Racial discrimination" - ] - }, - { - "text": "Take appropriate measures to collect data on and combat the emerging practices of forced underage marriage and female genital mutilation ", - "values": [ - "Rights of the Child", - "Torture and other CID treatment", - "Women's rights" - ] - }, - { - "text": "Implement the reforms necessary to improve the effectiveness of the justice system in order to guarantee the right to a fair trial, in particular to guarantee court access for and adequate court utilization by linguistic minorities", - "values": [ - "Justice", - "Minorities" - ] - }, - { - "text": "Undertake a comprehensive set of measures to tackle racial discrimination and to combat resolutely all forms and manifestations of racism, racial discrimination, xenophobia and related intolerance", - "values": [ - "Racial discrimination" - ] - }, - { - "text": "Increase governmental efforts to ensure that women, in particular single mothers, can have access, as men do, without any discrimination, to employment, equal pay and matrimonial rights, especially following an inheritance or a divorce", - "values": [ - "Women's rights" - ] - }, - { - "text": "Demonstrate greater flexibility and tolerance with respect to religious minorities by reforming Law 2/04 on Freedom of Religion to conform to the provisions of the Angolan Constitution, as well as international human rights obligations", - "values": [ - "Freedom of religion and belief", - "International instruments", - "Minorities" - ] - }, - { - "text": "Strengthen the legislation suppressing advocating crimes against humanity and ensure the training of judges on its application, as well as the issues of civic education in public schools", - "values": [ - "Human rights education and training", - "Justice" - ] - }, - { - "text": "Strengthen the proper functioning of the People's Lawyers Office by providing financial and technical support in order that everybody has the right to a due process and legal representation ", - "values": [ - "Justice" - ] - }, - { - "text": "Accede to the International Covenant on Civil and Political Rights and its two Optional Protocols, to the International Covenant on Economic, Social and Cultural Rights and its Optional Protocol and the three Optional Protocols to the Convention on the Rights of the Child", - "values": [ - "CP rights - general", - "Death penalty", - "ESC rights - general", - "International instruments", - "Rights of the Child" - ] - }, - { - "text": "Adopt national legislation pertaining to refugees that includes the rights of refugees and asylum seekers", - "values": [ - "Asylum-seekers - refugees" - ] - }, - { - "text": "Include a specific prohibition on the use of corporal punishment within the family and at school in its legislation.", - "values": [ - "Rights of the Child", - "Torture and other CID treatment" - ] - }, - { - "text": "Meet Saint Kitts and Nevis' commitments to equality and non-discrimination by prohibiting discrimination based on sexual orientation", - "values": [ - "Sexual Orientation and Gender Identity" - ] - }, - { - "text": "Commit to investigating individuals suspected of involvement in terrorism-related activities and, where sufficient evidence exists, to prosecuting them in the ordinary criminal courts, and in conformity with international fair trial standards ", - "values": [ - "Counter-terrorism", - "Justice" - ] - }, - { - "text": "Further guarantee children's right to health and continue the trend to constantly reduce the mortality rate for children under five years of age", - "values": [ - "Right to health", - "Rights of the Child" - ] - }, - { - "text": "Become a state party of the Agreement on the Privileges and Immunities of the International Criminal Court", - "values": [ - "International instruments", - "Justice" - ] - }, - { - "text": "Ensure that all children with displaced person status are treated equally in the law irrespective of the sex of their parents, as recommended, inter alia, by the Committee on Economic, Social and Cultural Rights in 2009 ", - "values": [ - "Rights of the Child", - "Treaty bodies" - ] - }, - { - "text": "Consider establishing an independent national institution to protect and promote human rights, in compliance with the Paris Principles ", - "values": [ - "National Human Rights Institution" - ] - }, - { - "text": "Accelerate the creation of a completely independent and sufficiently funded body with the capacity to defend human rights in Estonia, such as a national human rights institution", - "values": [ - "National Human Rights Institution" - ] - }, - { - "text": "Significantly increase efforts to raise awareness among its population of gender equality and non-discrimination of women and girls ", - "values": [ - "Human rights education and training", - "Rights of the Child", - "Women's rights" - ] - }, - { - "text": "Ensure effective implementation of its programmes and policies against domestic violence, inter alia, through the continued provision of adequate funding and the creation of a monitoring mechanism", - "values": [ - "Rights of the Child", - "Women's rights" - ] - }, - { - "text": "Establish a clear modality of direct access of the public to give input in the process of reviewing the Constitution ", - "values": [ - "Other" - ] - }, - { - "text": "Intensify its cooperation efforts, including with international organizations, with view to harmonize its human rights legislation", - "values": [ - "International instruments", - "Technical assistance and cooperation" - ] - }, - { - "text": "Strengthen its legal framework by acceding to the international human rights promotion and protection instruments to which it is not yet party, notably the International Covenant on Civil and Political Rights and the International Covenant on Economic, Social and Cultural Rights", - "values": [ - "CP rights - general", - "ESC rights - general", - "International instruments" - ] - }, - { - "text": "Consider the establishment of a moratorium on the use of death penalty with a view to its abolition", - "values": [ - "Death penalty" - ] - }, - { - "text": "Continue with the necessary reforms for the more effective and efficient administration of justice aimed at reducing long periods of pre-trial waiting and minimize corrupt practices", - "values": [ - "Corruption", - "Justice" - ] - }, - { - "text": "Ratify OP-CRPD, currently before Parliament", - "values": [ - "Disabilities", - "International instruments" - ] - }, - { - "text": "Take all appropriate measures to address the issue of impunity and to implement adequate mechanisms of transitional justice.", - "values": [ - "Impunity", - "Justice" - ] - }, - { - "text": "Continue joint and mutually beneficial efforts to implement the plan for action to implement the recommendations of CTF ", - "values": [ - "Justice" - ] - }, - { - "text": "Ensure the enjoyment of freedoms of expression and assembly and put to an end the unlawful detention of peaceful protesters ", - "values": [ - "Detention", - "Freedom of association and peaceful assembly", - "Freedom of opinion and expression" - ] - }, - { - "text": "Stop all forced evictions, develop and implement guidelines which comply with international human rights law ", - "values": [ - "International instruments", - "Right to housing" - ] - }, - { - "text": "Revise penal laws regarding the criminalization of women and girls in cases of abortion as well as of the doctors who practise it", - "values": [ - "Rights of the Child", - "Women's rights" - ] - }, - { - "text": "Demonstrate a clear track record of war crime cases which shows standardized sentencing through a fair and non-discriminatory process", - "values": [ - "Justice" - ] - }, - { - "text": "Enshrine, in the framework of the current constitutional review, the principle of equality between men and women, and redouble efforts to improve the situation of the Maori and the Pacifika in the areas of health and employment on one hand, and strengthen the specific measures taken in their favour to raise the level of education of their children on the other hand ", - "values": [ - "Indigenous peoples", - "Labour", - "Right to education", - "Right to health", - "Rights of the Child", - "Women's rights" - ] - }, - { - "text": "Continue to work with international organizations and the Human Rights Council in particular to promote development and human rights", - "values": [ - "Other" - ] - }, - { - "text": "Continue adopting new rules to widen the legislative grounds of human rights ", - "values": [ - "General" - ] - }, - { - "text": "Ensure that incidents of violence against women and children are thoroughly investigated and perpetrators of violence are brought to justice", - "values": [ - "Rights of the Child", - "Women's rights" - ] - }, - { - "text": "Develop a comprehensive anti-human trafficking strategy and adopt the legislation necessary to implement it ", - "values": [ - "Trafficking" - ] - }, - { - "text": "Regularly consult with indigenous peoples on matters of interest to their communities, to support their rights to traditionally owned lands and resources and to adopt measures to effectively protect sacred areas of indigenous peoples against environmental exploitation and degradation", - "values": [ - "Environment", - "Indigenous peoples", - "Right to land" - ] - }, - { - "text": "Take steps to ensure that detention of asylum-seekers is used only in exceptional cases, the procedure for detention is transparent and comprehensible, and that detainees have access to effective legal remedy", - "values": [ - "Asylum-seekers - refugees", - "Detention" - ] - }, - { - "text": "Set up a national human rights institution in conformity with the Paris Principles", - "values": [ - "National Human Rights Institution" - ] - }, - { - "text": "Provide adequate funding and human resources for its anti-human trafficking programs", - "values": [ - "Trafficking" - ] - }, - { - "text": "Develop specialized and differentiated programmes to assist migrant children returned or deported to Honduras, with an approach of restoring their rights while ensuring their effective reintegration into the family and society", - "values": [ - "Migrants", - "Rights of the Child" - ] - }, - { - "text": "Amend anti-discrimination legislation to include sexual orientation and gender identity as specific grounds for discrimination and to open prompt, impartial and effective investigations into attacks on LGBTI individuals or organisations", - "values": [ - "Sexual Orientation and Gender Identity" - ] - }, - { - "text": "Accede to the International Convention on the Protection of the Rights of All Migrant Workers and Members of Their Families, and the Convention against Discrimination in Education ", - "values": [ - "International instruments", - "Labour", - "Migrants", - "Right to education" - ] - }, - { - "text": "Strengthen its anti-corruption policy.", - "values": [ - "Corruption" - ] - }, - { - "text": "Ensure that the judiciary is free from any interference from other branches of Government", - "values": [ - "Justice" - ] - }, - { - "text": "Decriminalize same-sex sexual conduct between consenting adults by reforming the penal code", - "values": [ - "Sexual Orientation and Gender Identity" - ] - }, - { - "text": "Consider, in a progressive manner, the ratification of some international human rights instruments, particularly the International Covenant on Civil and Political Rights ", - "values": [ - "CP rights - general", - "International instruments" - ] - }, - { - "text": "Expand access to drinking water to marginalized and vulnerable populations ", - "values": [ - "Right to water and sanitation" - ] - }, - { - "text": "Ratify the International Convention for the Protection of the Rights of All Migrant Workers and Members of Their Families", - "values": [ - "International instruments", - "Labour", - "Migrants" - ] - }, - { - "text": "Complete and submit the pending reports to corresponding treaty bodies", - "values": [ - "Treaty bodies" - ] - }, - { - "text": "Ensure that domestic and sexual violence against women and girls is investigated and that perpetrators are prosecuted", - "values": [ - "Rights of the Child", - "Women's rights" - ] - }, - { - "text": "Make effort to submit outstanding human rights reports to relevant bodies", - "values": [ - "Treaty bodies" - ] - }, - { - "text": "Provide adequate resources to fully implement its national plan against human trafficking, taking particular attention to curbing trafficking of women and girls ", - "values": [ - "Rights of the Child", - "Trafficking", - "Women's rights" - ] - }, - { - "text": "Sign the Optional Protocol to the Convention against Torture (OPCAT)", - "values": [ - "Detention", - "International instruments", - "Torture and other CID treatment" - ] - }, - { - "text": "Intensify efforts on the development of a legal framework aimed at the elimination of discrimination based on sex, race, disability, status or any other ground", - "values": [ - "Disabilities", - "Racial discrimination", - "Women's rights" - ] - }, - { - "text": "Continue the significant reforms that have been already implemented to enable the National Human Rights Commission to be in conformity with the Paris Principles", - "values": [ - "National Human Rights Institution" - ] - }, - { - "text": "Study the possibility to ratify the Second Optional Protocol to the International Covenant on Civil and Political Rights ", - "values": [ - "Death penalty", - "International instruments" - ] - }, - { - "text": "Continue its efforts towards harmonization of its national laws with its international human rights obligations ", - "values": [ - "International instruments" - ] - }, - { - "text": "Guarantee the exercise of freedom of association and promote and facilitate the activities of all NGOs ", - "values": [ - "Civil society", - "Freedom of association and peaceful assembly" - ] - }, - { - "text": "Respect every person's right to nationality in accordance with the recommendations of the Inter-American Commission on Human Rights and the judgment of the Inter-American Court on Human Rights ", - "values": [ - "CP rights - general" - ] - }, - { - "text": "Take all measures to guarantee that the Prohibition of Female Genital Mutilation Act 2011 is fully implemented", - "values": [ - "Rights of the Child", - "Torture and other CID treatment", - "Women's rights" - ] - }, - { - "text": "Reinforce the effective protection of the elderly people", - "values": [ - "Other" - ] - }, - { - "text": "Continue to ensure that legislation under consideration for adoption is consistent with international law and the international obligations of Turkmenistan ", - "values": [ - "International instruments" - ] - }, - { - "text": "Redouble efforts and undertake efficient measures to implement CRPD, in particular as regards accessibility to public premises and the labour market ", - "values": [ - "Disabilities", - "International instruments" - ] - }, - { - "text": "Carry out independent and impartial inquiries with respect to allegations of mistreatment in detention ", - "values": [ - "Detention", - "Torture and other CID treatment" - ] - }, - { - "text": "Immediately stop the imposition of the cruel measure of death penalty on children ", - "values": [ - "Death penalty", - "Rights of the Child" - ] - }, - { - "text": "Establish a National Human Rights Institution in compliance with the Paris Principles ", - "values": [ - "National Human Rights Institution" - ] - }, - { - "text": "Undertake measures in conformity with the Paris Principles regarding the Swiss Centre of Expertise in Human Rights ", - "values": [ - "National Human Rights Institution" - ] - }, - { - "text": "It has established detailed immigration detention standards and remains committed to preventing abuses regarding detention conditions and bringing to justice those who commit them. More people than ever before are enrolled in alternatives to detention programmes.", - "values": [ - "Detention", - "Migrants" - ] - }, - { - "text": "Consider wider establishment of shelter houses for women and children seeking protection from domestic violence", - "values": [ - "Rights of the Child", - "Women's rights" - ] - }, - { - "text": "Continue efforts to allow women access to formal employment", - "values": [ - "Labour", - "Women's rights" - ] - }, - { - "text": "Establish a moratorium on all death sentences and executions ", - "values": [ - "Death penalty" - ] - }, - { - "text": "Establish a national human rights institution that is compliant with the Paris Principles", - "values": [ - "National Human Rights Institution" - ] - }, - { - "text": "Strengthen preventive cross-border anti-trafficking strategies and their implementation", - "values": [ - "Trafficking" - ] - }, - { - "text": "Recommended the accession to the ICCPR, ICESCR", - "values": [ - "CP rights - general", - "ESC rights - general", - "International instruments" - ] - }, - { - "text": "Eliminate all restrictions on the ability of journalists to report on and criticize Government policy", - "values": [ - "Freedom of the press" - ] - }, - { - "text": "Increase efforts to fight against money-laundering", - "values": [ - "Corruption" - ] - }, - { - "text": "Implement the measures laid out in the Strategic Development Plan", - "values": [ - "Development" - ] - }, - { - "text": "Extend an open invitation to the Human Rights Council Special Procedures, and in particular to the Special Rapporteur on Torture and the Special Rapporteur on the promotion and protection of human rights and fundamental freedoms while countering terrorism ", - "values": [ - "Counter-terrorism", - "Special procedures", - "Torture and other CID treatment" - ] - }, - { - "text": "Consider amending legislation criminalizing relations between persons of the same sex ", - "values": [ - "Sexual Orientation and Gender Identity" - ] - }, - { - "text": "Proceed with the preparation and implementation of the National Action Plan for the Equality of Women and Men in the Labor Market ", - "values": [ - "Women's rights" - ] - }, - { - "text": "Continue efforts to strengthen its juvenile justice system through, inter alia, considering the incorporation of the restorative justice principle ", - "values": [ - "Justice", - "Rights of the Child" - ] - }, - { - "text": "Request an OHCHR assessment mission to Djibouti in order to evaluate the abilities and the capacities available and the national efforts that need support", - "values": [ - "Technical assistance and cooperation" - ] - }, - { - "text": "Adopt measures to strengthen the legal framework with the aim of eliminating all forms of discrimination against minority groups in society, based on ethnicity, gender, caste or any other ground", - "values": [ - "Minorities", - "Racial discrimination", - "Women's rights" - ] - }, - { - "text": "Continue to advance efforts to address gender inequality and undertake further measures, such as enacting specific legislation to protect vulnerable populations, including women, children and indigenous peoples, from violence and exploitation", - "values": [ - "Indigenous peoples", - "Rights of the Child", - "Women's rights" - ] - }, - { - "text": "Reinforce its efforts to protect the rights of prisoners in police custody, including by duly investigating reports of ill treatment, prosecuting those responsible for confirmed abuses, and taking other appropriate preventive and corrective measures ", - "values": [ - "Detention", - "Torture and other CID treatment" - ] - }, - { - "text": "Ratify the International Covenants, CAT, the Convention on the Rights of Persons with Disabilities, ICERD, as well as the Rome Statute of the International Criminal Court ", - "values": [ - "Disabilities", - "International instruments", - "Justice", - "Racial discrimination", - "Torture and other CID treatment" - ] - }, - { - "text": "Respect the right to freedom of expression and association, and make the minimum use of criminal proceedings against persons availing themselves of those rights ", - "values": [ - "Freedom of association and peaceful assembly", - "Freedom of opinion and expression" - ] - }, - { - "text": "Create an independent mechanism in charge of monitoring the implementation of the Convention on the Rights of Persons with Disabilities", - "values": [ - "Disabilities", - "International instruments" - ] - }, - { - "text": "Ensuring all cases are reviewed by a court in accordance with fair procedures", - "values": [ - "Justice" - ] - }, - { - "text": "Consider ratifying the Optional Protocol to the Convention on the Rights of Persons with Disabilities.", - "values": [ - "Disabilities", - "International instruments" - ] - }, - { - "text": "Consider taking steps towards strict implementation of its laws prohibiting traditional practices harmful to women and children", - "values": [ - "Rights of the Child", - "Torture and other CID treatment", - "Women's rights" - ] - }, - { - "text": "Decriminalise consensual same-sex conduct between adults and take all necessary steps to protect LGBT community from all forms of discrimination", - "values": [ - "Sexual Orientation and Gender Identity" - ] - }, - { - "text": "Take all necessary measures in order to eliminate violence against women and children, including through consolidation of the legal system with respect to human trafficking counter-measures", - "values": [ - "Rights of the Child", - "Trafficking", - "Women's rights" - ] - }, - { - "text": "Continue consolidating social programs and measures adopted to date, that are key in fighting poverty and social exclusion, with actions that increase the provision of social services, giving priority to the most deprived sectors of society, to advance in the achievement of the highest attainable level of wellbeing for its people", - "values": [ - "Poverty" - ] - }, - { - "text": "Increase the protection of ethnic and religious minorities as well as women, human rights defenders and journalists", - "values": [ - "Freedom of the press", - "Human rights defenders", - "Minorities", - "Women's rights" - ] - }, - { - "text": "Curb abuses of Eritrean citizens in the national service programme, pass and enforce a comprehensive anti-trafficking statute, and cease the conscription of children into military services ", - "values": [ - "Rights of the Child", - "Trafficking" - ] - }, - { - "text": "Coordinate preventive measures for the elimination of this trend (of cases of violence and sexual abuse of children) and develop preventative training programs, in particular for teachers and other professionals working with children", - "values": [ - "Human rights education and training", - "Rights of the Child" - ] - }, - { - "text": "Continue its national efforts aimed at combating trafficking in persons, including through international and regional cooperation", - "values": [ - "Technical assistance and cooperation", - "Trafficking" - ] - }, - { - "text": "Establish the national preventive mechanism against torture in accordance with the Optional Protocol to the Convention against Torture and ensure independent and effective investigation and prosecution of all cases of alleged ill-treatment of persons in detention facilities and prisons as well as remedies for victims", - "values": [ - "Detention", - "International instruments", - "Torture and other CID treatment", - "Treaty bodies" - ] - }, - { - "text": "Intensify education and awareness-raising campaigns to prevent stigmatization and discrimination of people living with albinism", - "values": [ - "Human rights education and training", - "Minorities" - ] - }, - { - "text": "Continue its efforts to combat violence against women", - "values": [ - "Women's rights" - ] - }, - { - "text": "Continue efforts to combat racial discrimination, particularly against migrant workers and their families, religious minorities, particularly against Muslims, and linguistic minorities", - "values": [ - "Freedom of religion and belief", - "Labour", - "Migrants", - "Minorities", - "Racial discrimination" - ] - }, - { - "text": "Disseminate the NHRAP amongst general population in local languages so as to ensure wider participation in the implementation process, thereby empowering claim holders in asserting and protecting their rights", - "values": [ - "Minorities" - ] - }, - { - "text": "Continue its efforts for ensuring the autonomy of national institutions responsible for the protection of human rights", - "values": [ - "General" - ] - }, - { - "text": "Ensure that the Professional Standards Unit of the Police complete its investigations in a timely fashion, and that it expand police training to address concerns about abuse by police ", - "values": [ - "Human rights violations by state agents" - ] - }, - { - "text": "Review Penal Code clauses on defamation in line with international standards and make public results ", - "values": [ - "Freedom of opinion and expression" - ] - }, - { - "text": "Continue working for the strengthening of the process of truth-seeking ", - "values": [ - "Justice" - ] - }, - { - "text": "Create accessible complaints mechanisms for reporting sexual and domestic violence, while ensuring that these complaints are thoroughly investigated and the perpetrators prosecuted ", - "values": [ - "Rights of the Child", - "Women's rights" - ] - }, - { - "text": "Consider signing and ratifying the new Optional Protocol to the CRC on a communications procedure", - "values": [ - "International instruments", - "Rights of the Child" - ] - }, - { - "text": "Ease current restrictions to allow for full, unhindered freedom of expression and freedom of assembly.", - "values": [ - "Freedom of association and peaceful assembly", - "Freedom of opinion and expression" - ] - }, - { - "text": "Continue the fight against poverty as one of the country's key priorities", - "values": [ - "Poverty" - ] - }, - { - "text": "Continue its efforts to adopt a development policy to meet the needs of the people to reduce poverty in order to protect and promote human rights", - "values": [ - "Poverty" - ] - }, - { - "text": "Accelerate efforts under the Food and Nutrition Security Policy, aimed at reducing hunger by increasing access to affordable, nutritious, safe and quality food", - "values": [ - "Right to food" - ] - }, - { - "text": "Strengthen its efforts to draw up comprehensive strategies and action plans to eradicate trafficking in persons.", - "values": [ - "Trafficking" - ] - }, - { - "text": "Consider enacting laws to criminalize trafficking in persons, and to provide remedy to trafficking victims", - "values": [ - "Trafficking" - ] - }, - { - "text": "Continue its endeavours in fostering the rule of law and social cohesion", - "values": [ - "Justice" - ] - }, - { - "text": "Adopt a comprehensive and broad-based anti-discrimination law", - "values": [ - "Other" - ] - }, - { - "text": "In accordance with the observations of the International Labour Organization, raise to 16 the minimum age for employment, with a view to harmonizing it with the age of completion of compulsory school education, and thus combat both the phenomenon of children dropping out of school as well as child labour", - "values": [ - "Labour", - "Rights of the Child" - ] - }, - { - "text": "Pursue the reform of the justice sector by implementing the plan of priority actions, including for the improvement of conditions of detention", - "values": [ - "Detention", - "Justice" - ] - }, - { - "text": "Adopt policies to encourage women and girls to choose non-traditional fields of education and work, including relevant technical and vocational training", - "values": [ - "Right to education", - "Rights of the Child", - "Women's rights" - ] - }, - { - "text": "Continue cooperating with the international mechanisms for the promotion and protection of human rights", - "values": [ - "General" - ] - }, - { - "text": "Work with the Office of the United Nations High Commissioner for Human Rights to develop a common core document which, in conjunction with treaty-specific lists of issues, will help to streamline treaty reporting ", - "values": [ - "Technical assistance and cooperation", - "Treaty bodies" - ] - }, - { - "text": "Speed up the adoption of the law against discrimination ensuring the incorporation of a prohibition of discrimination on the basis of sexual orientation and gender identity", - "values": [ - "Sexual Orientation and Gender Identity" - ] - }, - { - "text": "Expedite the establishment of an OHCHR office with a full mandate", - "values": [ - "Technical assistance and cooperation" - ] - }, - { - "text": "Engage closely with civil society in the follow-up on the recommendations of the Human Rights Council", - "values": [ - "Civil society", - "Special procedures", - "UPR process" - ] - }, - { - "text": "Establish broad public outreach programmes to discourage discrimination against ethnic minority residents in Finland ", - "values": [ - "Minorities", - "Racial discrimination" - ] - }, - { - "text": "Continue working towards the adoption of plans and public policies for the promotion and protection of the rights of lesbian, gay, bisexual and transgender persons and other vulnerable populations likely to be discriminated against", - "values": [ - "Sexual Orientation and Gender Identity" - ] - }, - { - "text": "Ratify the Rome Statute of the International Criminal Court and ensure that it is able to meet obligations to cooperate with the Court under that Statute", - "values": [ - "International instruments", - "Justice" - ] - }, - { - "text": "Consider prohibition of the use of corporal punishment of children in all settings", - "values": [ - "Rights of the Child", - "Torture and other CID treatment" - ] - }, - { - "text": "Accelerate judicial proceedings against the perpetrators of human rights violations committed in 2009, establish reparation mechanisms for victims and make operational the process of justice, truth and reconciliation", - "values": [ - "Justice" - ] - }, - { - "text": "Carry out independent investigations in all cases of attacks against journalists", - "values": [ - "Freedom of the press" - ] - }, - { - "text": "Lift restrictions imposed on religious practices, cease persecution and rigid control over those professing their religious beliefs and ensure that its domestic legislation and practice is in full compliance with the requirements of article 18 of ICCPR ", - "values": [ - "Freedom of religion and belief", - "International instruments" - ] - }, - { - "text": "Ensure that, in practice, undocumented children can benefit from health care and education", - "values": [ - "Right to education", - "Right to health", - "Rights of the Child" - ] - }, - { - "text": "Make all possible efforts to ensure and guarantee the full operational status of national government institutions, including the parliamentary and electoral systems", - "values": [ - "Elections" - ] - }, - { - "text": "Establish a national human rights institution with the assistance of OHCHR ", - "values": [ - "National Human Rights Institution", - "Technical assistance and cooperation" - ] - }, - { - "text": "Strengthen the actions and the commitment of all State bodies in combatting gender violence with the goal of reducing the number of deaths caused by such violence", - "values": [ - "Women's rights" - ] - }, - { - "text": "Pursue reforming the judicial system to strengthen its effectiveness, particularly by improving access to justice and detention conditions", - "values": [ - "Detention", - "Justice" - ] - }, - { - "text": "Continue its efforts to improve legal and institutional reform to ensure that an effective system for the administration of justice and the provision of access to justice are put in place", - "values": [ - "Justice" - ] - }, - { - "text": "Record and document cases of trafficking in women and children as well as exploitation of migrant women and girls in prostitution, and share the information with other countries in the region to facilitate greater cooperation in combating this problem.", - "values": [ - "Migrants", - "Rights of the Child", - "Trafficking", - "Women's rights" - ] - }, - { - "text": "Sri Lanka will continue to take steps to safeguard and advance the rights of children through national mechanisms such as the National Child Protection Authority and the Ministry of Child Development and Women's Empowerment. Sri Lanka will also continue to actively support international processes that seek to advance the rights of the child.", - "values": [ - "Rights of the Child" - ] - }, - { - "text": "Incorporate an explicit prohibition of torture and other ill-treatment, as well as a clear definition of torture, into national legislation in order to comply with the obligations derived from CAT and facilitate independent, timely and thorough investigations of all allegations of torture to facilitate appropriate redress for victims ", - "values": [ - "International instruments", - "Torture and other CID treatment" - ] - }, - { - "text": "Adopt all necessary measures to put an end to the widespread practice of corporal punishment of minors at home, in school and by the police force, as recommended by the Committee on the Rights of the Child in 2003.", - "values": [ - "Rights of the Child", - "Torture and other CID treatment", - "Treaty bodies" - ] - }, - { - "text": "With regard to the reporting mechanism on the gender pay gap, consider efficient means of following up on the reports made by the employers", - "values": [ - "Labour", - "Women's rights" - ] - }, - { - "text": "Establish an official moratorium with a view to the final abolition of the death penalty and facilitate a national dialogue on the abolition", - "values": [ - "Death penalty" - ] - }, - { - "text": "Make every effort to comply with the recommendations of UNHCR and the ILO Committee of Experts on migration, refugees and asylum, especially to prevent the criminalization of those who enter or leave the country without authorization ", - "values": [ - "Asylum-seekers - refugees", - "International instruments", - "Migrants" - ] - }, - { - "text": "Recommended the declaration of a moratorium on the death penalty as a first step towards its abolition, in compliance with General Assembly resolution 62-149.", - "values": [ - "Death penalty" - ] - }, - { - "text": "Consider ratifying the Second Optional Protocol to ICCPR aiming at the abolition of the death penalty ", - "values": [ - "Death penalty", - "International instruments" - ] - }, - { - "text": "Consider amending the Criminal Code so that hate crimes against LGBT persons are considered serious criminal offences or at least aggravating circumstances ", - "values": [ - "Sexual Orientation and Gender Identity" - ] - }, - { - "text": "Intensify efforts to address impunity and incidence of trafficking and domestic violence as well as sexual abuse of women and girls including by strengthening law enforcement and judicial system, recruiting more women in the police and judiciary, and organizing more gender awareness campaigns within the Iraqi armed forces and police", - "values": [ - "Human rights education and training", - "Impunity", - "Justice", - "Rights of the Child", - "Trafficking", - "Women's rights" - ] - }, - { - "text": "Continue to investigate the different forms of violence against women and to take adequate measures against it ", - "values": [ - "Women's rights" - ] - }, - { - "text": "Continue its efforts against human trafficking", - "values": [ - "Trafficking" - ] - }, - { - "text": "Prioritize family-type care settings and foster families over institutionalized placements and include foster care as an important instrument within the special protection measures for children", - "values": [ - "Rights of the Child" - ] - }, - { - "text": "Pursue policies that give priority to the promotion of the right to education for all ", - "values": [ - "Right to education" - ] - }, - { - "text": "Take concrete actions to deal with the discriminatory practices on the grounds of religion in access to employment and social integration", - "values": [ - "Freedom of religion and belief" - ] - }, - { - "text": "Put in place further strategies and programmes focused on preventing violence against children in schools and families", - "values": [ - "Rights of the Child" - ] - }, - { - "text": "Ratify the First and Second Optional Protocol to the ICCPR, the Optional Protocol to ICESCR, the Optional Protocol to the Convention on the Rights of Persons with Disabilities", - "values": [ - "Death penalty", - "Disabilities", - "ESC rights - general", - "International instruments" - ] - }, - { - "text": "Take legislative and practical measures at preventing and combating violence against women and children, including prohibition of corporal punishment ", - "values": [ - "Rights of the Child", - "Torture and other CID treatment", - "Women's rights" - ] - }, - { - "text": "Ensure the rights of migrant workers who are domestic workers, including through measures of labour inspection and protection of these workers against their employer ", - "values": [ - "Labour", - "Migrants" - ] - }, - { - "text": "Adopt legislative and political measures to protect lesbian, gay, bisexual, transgender and intersex persons against stigmatization and violence", - "values": [ - "Sexual Orientation and Gender Identity" - ] - }, - { - "text": "Continue its efforts aimed at ratifying the Convention for the Protection of All Persons from Enforced Disappearance", - "values": [ - "Enforced disappearances", - "International instruments" - ] - }, - { - "text": "Guarantee respect of sexual and reproductive rights and take measures to prevent early pregnancies, particularly through awareness-raising and sexual education", - "values": [ - "Human rights education and training", - "Right to health", - "Rights of the Child", - "Women's rights" - ] - }, - { - "text": "Ensure appropriate investigation of all acts of violence committed for racial motives and punish those responsible for them ", - "values": [ - "Racial discrimination" - ] - }, - { - "text": "Consider establishing more mechanisms for the identification of victims of trafficking", - "values": [ - "Trafficking" - ] - }, - { - "text": "Implement appropriate, efficient measures to protect children from economic exploitation, in particular, the worst forms of child labour in line with the ILO Conventions No. 182 and No. 138, focusing especially on the mining sector as well as child domestic workers", - "values": [ - "Business and human rights", - "International instruments", - "Labour", - "Rights of the Child" - ] - }, - { - "text": "Take measures to prevent and punish torture in accordance with the recommendations of the Committee against Torture", - "values": [ - "Torture and other CID treatment", - "Treaty bodies" - ] - }, - { - "text": "Continue to fight poverty keeping in line with the country's existing programmes and plans of action along with active support of the international community ", - "values": [ - "Poverty", - "Technical assistance and cooperation" - ] - }, - { - "text": "Apply the principle of non-discrimination to the most vulnerable groups, such as girls, children with disabilities, children of religious minorities, children living with HIV/AIDS, migrant and refugee children, orphans and children born out of wedlock, so that they have access to health care and education", - "values": [ - "HIV - Aids", - "Minorities", - "Rights of the Child", - "Women's rights" - ] - }, - { - "text": "Stop all acts of intimidation, corporal punishment or arrest linked to the activities of human rights defenders, political activists and journalists, and guarantee freedom of expression, without introducing any provisions restricting its exercise ", - "values": [ - "Freedom of association and peaceful assembly", - "Freedom of opinion and expression", - "Freedom of the press", - "Human rights defenders", - "Torture and other CID treatment" - ] - }, - { - "text": "Strengthen the justice, law and order sectors", - "values": [ - "Justice" - ] - }, - { - "text": "Kyrgyzstan expressed its readiness to accept 127 recommendations as its voluntary commitments.", - "values": [ - "UPR process" - ] - }, - { - "text": "Improve women\u2019s rights in the labour market, notably in relation to pay gaps between men and women", - "values": [ - "Labour", - "Women's rights" - ] - }, - { - "text": "Consider specific measures for the protection of the rights of children and adolescents, notably through the objectives defined within the national strategy for the prevention and elimination of child labour", - "values": [ - "Labour", - "Rights of the Child" - ] - }, - { - "text": "Ensure that all processing of personal data and all State surveillance activities be in line with international human rights law and do not infringe on citizen's fundamental rights and freedoms, including the right to privacy", - "values": [ - "Privacy" - ] - }, - { - "text": "Work with the African Union to establish the hybrid court set out in the August 2015 peace agreement", - "values": [ - "Justice" - ] - }, - { - "text": "Continue the improvement of the conditions of detention in jails, in particular by fighting prison overcrowding ", - "values": [ - "Detention" - ] - }, - { - "text": "Adopt all necessary measures to ensure the independence of justice, including by means of effective implementation of the judicial reform ", - "values": [ - "Justice" - ] - }, - { - "text": "Solve the problem of the prison overcrowding and make the detention conditions to meet international standards ", - "values": [ - "Detention" - ] - }, - { - "text": "Take all necessary measures to promote the enjoyment of freedom of expression, religion and civil liberties", - "values": [ - "Freedom of opinion and expression", - "Freedom of religion and belief" - ] - }, - { - "text": "Repeal the legal provisions that allow the death penalty and declare a moratorium on executions, as previously recommended", - "values": [ - "Death penalty", - "UPR process" - ] - }, - { - "text": "Effectively combat domestic violence and establish shelters and support centres with medical, psychological and legal support ", - "values": [ - "Rights of the Child", - "Women's rights" - ] - }, - { - "text": "Take further steps to ensure the independence of the judiciary. ", - "values": [ - "Justice" - ] - }, - { - "text": "Include women, minorities and persons with disabilities in participation in the constitutional referendum, and elections", - "values": [ - "Disabilities", - "Elections", - "Minorities", - "Women's rights" - ] - }, - { - "text": "Adopt measures to ensure that the military justice system does not claim jurisdiction in human rights cases involving members of the security forces.", - "values": [ - "Justice" - ] - }, - { - "text": "Ensure women's access to reproductive health services ", - "values": [ - "Right to health", - "Women's rights" - ] - }, - { - "text": "Double its efforts in combating intolerance and hate speech, including through ensuring proper investigation and prosecution in all cases of attacks and incidents of intolerance against minorities", - "values": [ - "Minorities", - "Racial discrimination" - ] - }, - { - "text": "Review and update laws that could lead to self-censorship, such as the Sedition Proclamation and the Internal Security (General) Act, to ensure compliance with international human rights obligations", - "values": [ - "Freedom of opinion and expression", - "International instruments" - ] - }, - { - "text": "Promptly and effectively investigate all allegations of torture and ill- treatment of prisoners and acts of intimidation, reprisals and threats against human rights defenders and journalists", - "values": [ - "Detention", - "Freedom of the press", - "Human rights defenders", - "Torture and other CID treatment" - ] - }, - { - "text": "Further recognize the rights of same-sex couples by legalizing samesex marriage and adoption ", - "values": [ - "Sexual Orientation and Gender Identity" - ] - }, - { - "text": "Remove constraints on civil society groups and human rights defenders.", - "values": [ - "Civil society", - "Human rights defenders" - ] - }, - { - "text": "Pursue its efforts aimed at the promotion of the rights of the child, in addition to the implementation of the national plan for childhood", - "values": [ - "Rights of the Child" - ] - }, - { - "text": "Make the necessary efforts to increase spending on social programmes, particularly with respect to education and access to health. ", - "values": [ - "Right to education", - "Right to health" - ] - }, - { - "text": "Continue applying the benefits of economic growth to all the population", - "values": [ - "Development" - ] - }, - { - "text": "Reinstate the full independence and functionality of the Human Rights Commission to bring it in line with the Paris Principles and in accordance with the recommendations it had already accepted at the last UPR review", - "values": [ - "National Human Rights Institution", - "UPR process" - ] - }, - { - "text": "Uphold its responsibility to ensure the civilian nature of camps by implementing its humanitarian obligations in line with the 1951 Convention relating to the Status of Refugees", - "values": [ - "Asylum-seekers - refugees", - "International humanitarian law", - "International instruments" - ] - }, - { - "text": "Intensify its efforts in combatting hate crimes through the effective implementation of the new monitoring system provided for this purpose", - "values": [ - "Racial discrimination" - ] - }, - { - "text": "Regarding the reform of the justice system, the delegation stated that Liberia had made progress and was committed to enhancing the system and strengthening access to justice, particularly via the establishment of the regional hubs for justice and security. As mentioned earlier, the delegation stated that the standing invitation to the special procedures was being prepared and should be issued very soon", - "values": [ - "Justice", - "Special procedures" - ] - }, - { - "text": "Pursue its efforts to combat trafficking in human beings, especially women and children ", - "values": [ - "Rights of the Child", - "Trafficking", - "Women's rights" - ] - }, - { - "text": "Increase efforts to promote gender equality, especially with regard to work opportunities and health access, and to introduce gender components into education and professional training", - "values": [ - "Women's rights" - ] - }, - { - "text": "Pay attention to cases of violence and discrimination based upon sexual orientation, in particular against LGBT persons, both in law and in practice", - "values": [ - "Sexual Orientation and Gender Identity" - ] - }, - { - "text": "Consider carrying out the relevant legislative reforms in order that the Constitution and secondary legislation clearly and unequivocally safeguard the rights listed in article 4 of the ICCPR in cases of states of exception or national emergency", - "values": [ - "CP rights - general", - "International instruments" - ] - }, - { - "text": "Continue implementation of effective policies and programmes aimed at improving among others the health, education, standard of living and access to safe drinking water and sanitation of the people", - "values": [ - "Right to education", - "Right to health", - "Right to water and sanitation" - ] - }, - { - "text": "Strengthen anti-discrimination laws and policies, and intensify the implementation of measures to protect all women from discrimination and violence, including through nationwide public awareness campaigns", - "values": [ - "Human rights education and training", - "Women's rights" - ] - }, - { - "text": "Adopt and implement, without delay, the draft Food and Nutrition Bill of 2008 and adequately finance school meal programmes, in consultation with all relevant stakeholders", - "values": [ - "Right to food" - ] - }, - { - "text": "Improve the procedures to increase the percentage of children registered at birth in remote and rural areas", - "values": [ - "Rights of the Child" - ] - }, - { - "text": "Develop and implement a set of measures that will make it possible to fully implement economic and social human rights, especially the right to employment and the right to an adequate level of remuneration", - "values": [ - "ESC rights - general", - "Labour" - ] - }, - { - "text": "Protect the right to life from the conception to natural death", - "values": [ - "Other" - ] - }, - { - "text": "Take all necessary measures to put an end to all forms of discrimination against women in the labour market", - "values": [ - "Women's rights" - ] - }, - { - "text": "Explore the possibility of creating a monitoring system for international recommendations to facilitate the systematization and follow-up to the recommendations of the human rights bodies and special procedures", - "values": [ - "Special procedures", - "Treaty bodies" - ] - }, - { - "text": "Repeal all provisions in its domestic law criminalizing consensual sexual activity between adults of the same sex and combat discrimination against lesbian, gay, bisexual and transsexual persons through political, legislative and administrative measures ", - "values": [ - "Sexual Orientation and Gender Identity" - ] - }, - { - "text": "Improve the detention conditions of children of foreigners who seek to receive the status of refugees and who live in the territory of Poland in closed facilities ", - "values": [ - "Asylum-seekers - refugees", - "Detention", - "Rights of the Child" - ] - }, - { - "text": "Effectively abolish the death penalty and that a moratorium be immediately decreed with respect to all executions.", - "values": [ - "Death penalty" - ] - }, - { - "text": "Ensure access to health insurance and high-quality medication to low income persons", - "values": [ - "Right to health" - ] - }, - { - "text": "Create a climate in which journalists are able to report on sensitive issues without fear or harassment and reprisal.", - "values": [ - "Freedom of the press" - ] - }, - { - "text": "Ratify the Rome Statute on ICC", - "values": [ - "International instruments", - "Justice" - ] - }, - { - "text": "Consider giving priority to the training of law enforcement officials regarding the treatment of detainees.", - "values": [ - "Detention", - "Human rights education and training" - ] - }, - { - "text": "Continue efforts to strengthen the institution of the family and improve the situation of women ", - "values": [ - "Women's rights" - ] - }, - { - "text": "Continue the implementation of the national child labour project aiming at the rehabilitation of child labourers ", - "values": [ - "Labour", - "Rights of the Child" - ] - }, - { - "text": "Raise the minimum age of criminal responsibility to at least 12 years, as recommended by the CRC, and enforce compulsory segregation of juveniles from adults in detention ", - "values": [ - "Detention", - "Justice", - "Rights of the Child", - "Treaty bodies" - ] - }, - { - "text": "Continue to focus on the overall improvement in the quality of education provided, including by continuing to provide human rights education, training and courses to students, civilian populations and law enforcement officials ", - "values": [ - "Right to education" - ] - }, - { - "text": "Closely monitor the situation of other disadvantaged groups such as women migrant workers, women prisoners and victims of trafficking", - "values": [ - "Detention", - "Labour", - "Migrants", - "Trafficking", - "Women's rights" - ] - }, - { - "text": "Take all measures to grant access to justice for all women victim of violence, and take measures for their protection and the rehabilitation, and to train police authorities on violence against women", - "values": [ - "Women's rights" - ] - }, - { - "text": "Add more content on gender equality and human rights to master's degree and courses of officials and law enforcement officers ", - "values": [ - "Human rights education and training", - "Women's rights" - ] - }, - { - "text": "Ensure equal treatment of women in law and in practice, in line with the relevant recommendations of the Human Rights Committee", - "values": [ - "Treaty bodies", - "Women's rights" - ] - }, - { - "text": "Raise the minimum age for marriage and establish a juvenile judiciary ", - "values": [ - "Justice", - "Rights of the Child" - ] - }, - { - "text": "Continue working with the international donor community to work with Tanzania on capacity building measures to as to ensure education for all ", - "values": [ - "Right to education", - "Technical assistance and cooperation" - ] - }, - { - "text": "Immediately grant full and unconditional humanitarian access for the United Nations to the entire country, especially to the territories under siege by government forces", - "values": [ - "Other" - ] - }, - { - "text": "Continue to improve the engagement, empowerment, education, entrepreneurship and social enterprise of youth", - "values": [ - "Other" - ] - }, - { - "text": "Take the necessary measures to ensure that the decree on domestic violence be effectively implemented and that the perpetrators of violence against women, including within the family, be duly prosecuted and punished", - "values": [ - "Rights of the Child", - "Women's rights" - ] - }, - { - "text": "Provide defendants in all serious criminal processes with an attorney when they cannot afford one by themselves.", - "values": [ - "Justice" - ] - }, - { - "text": "Take effective measures to bring conditions of detention in line with international standards, in particular by reducing overcrowding and inter- prisoner violence", - "values": [ - "Detention" - ] - }, - { - "text": "Take necessary measures to prevent possible cases of corporal punishment against children in the home and in all other settings", - "values": [ - "Rights of the Child", - "Torture and other CID treatment" - ] - }, - { - "text": "Prohibit the use of corporal punishment in homes and in schools and conduct awareness campaigns to reduce the scope of this action ", - "values": [ - "Rights of the Child", - "Torture and other CID treatment" - ] - }, - { - "text": "Continue increasing investment in education and health through its successful social policies ", - "values": [ - "Right to education", - "Right to health" - ] - }, - { - "text": "Continue its efforts and initiatives to spread education.", - "values": [ - "Right to education" - ] - }, - { - "text": "Accede rapidly to the Istanbul Convention and adopt and implement as soon as possible a national strategy to prevent and punish all forms of violence against children, including child trafficking", - "values": [ - "International instruments", - "Rights of the Child", - "Women's rights" - ] - }, - { - "text": "Improve access to the Internet ", - "values": [ - "Freedom of opinion and expression" - ] - }, - { - "text": "Ensure that affordable healthcare and medicines remain available to all Malaysians, especially for those residing in the interior and remote areas of the country", - "values": [ - "Right to health" - ] - }, - { - "text": "Ensure that legislation related to the State's commitment to human rights is adopted and enforced as soon as possible.", - "values": [ - "General" - ] - }, - { - "text": "Request technical and financial assistance from partners and specialized United Nations agencies (with regard to demographic growth, poverty reduction, protection of the informal sector and the environment) ", - "values": [ - "Technical assistance and cooperation" - ] - }, - { - "text": "Continue its efforts in combating money laundering and financing of terrorism ", - "values": [ - "Other" - ] - }, - { - "text": "Increase the number of women in political and public life at all levels and in all areas and promote women in leadership positions and ensure that they are granted opportunities in the higher education system", - "values": [ - "Right to education", - "Women's rights" - ] - }, - { - "text": "Take action towards more pervasive measures to prevent violations of the rights of children through, inter alia, training professionals such as teachers, doctors and social workers to identify potential situations of abuse and report them to the authorities", - "values": [ - "Rights of the Child" - ] - }, - { - "text": "The delegation reiterated that torture was a subject of serious concern in Mongolia and acceding to the Optional Protocol to the Convention against Torture and Other Cruel, Inhuman or Degrading Treatment or Punishment in 2011 was one of many efforts by the Government to abolish all torture cases in the country. There were a total of 14 cases of torture recorded, and as of 2014 two cases had been addressed. Furthermore, the delegation reiterated Mongolia's commitment to incorporating the subject of torture in the educational programme curricular. This provision of torture had already been included for law enforcement officers, however, the curricular for prosecutors should also include the subject of torture.", - "values": [ - "Torture and other CID treatment" - ] - }, - { - "text": "Conduct more human rights training programmes for law enforcement and judicial officials - allow access for independent international observers, especially to the penitentiary and detention centres - and offer more guarantees of independence to the judicial power, in accordance with article 14 of the ICCPR ", - "values": [ - "Detention", - "Human rights education and training", - "International instruments", - "Justice", - "Special procedures" - ] - }, - { - "text": "Accomplish progressively the human rights goals set up by the Human Rights Council in its resolution 9-12.", - "values": [ - "General" - ] - }, - { - "text": "Consolidate efforts of the systematic integration of human rights education and training in the school system with specific and updated programs for the State personal and the security agents ", - "values": [ - "Human rights education and training" - ] - }, - { - "text": "Improve detention conditions for all, particularly women and youth", - "values": [ - "Detention", - "Women's rights" - ] - }, - { - "text": "Step up its initiatives which are specifically targeted towards implementing the National Anti-Discrimination Plan, in particular to promote awareness on non-discrimination, intercommunity harmony, mutual respect and tolerance\n", - "values": [ - "Racial discrimination" - ] - }, - { - "text": "Continue to improve living standards, access for basic services such as health and education with the full support and cooperation of the international community.", - "values": [ - "Right to education", - "Right to health", - "Technical assistance and cooperation" - ] - }, - { - "text": "Consider the possibility of ratifying the International Covenant on Civil and Political Rights, the International Covenant on Economic, Social and Cultural Rights, the International Convention for the Protection of All Persons from Enforced Disappearance and the Convention on the Rights of Persons with Disabilities", - "values": [ - "CP rights - general", - "Disabilities", - "ESC rights - general", - "Enforced disappearances", - "International instruments" - ] - }, - { - "text": "Operationalize the National Child Rights Committee in order to ensure the effective promotion and protection of their rights and to enable their integral development", - "values": [ - "Rights of the Child" - ] - }, - { - "text": "Ensure investigations of violence against women, and establish victim support programmes for affected women", - "values": [ - "Women's rights" - ] - }, - { - "text": "Ensure that the objectives of initiatives such as Vision 2020 and the Economic Development and Poverty Reduction Strategy are attained, and that efforts to build a more stable and prosperous Rwanda continue ", - "values": [ - "Development", - "Poverty" - ] - }, - { - "text": "Further maintain national efforts to ensure compliance and stability of the MDGs ", - "values": [ - "ESC rights - general" - ] - }, - { - "text": "Take all necessary measures to effectively fight against discrimination, including against religious minorities and LGBTI persons", - "values": [ - "Freedom of religion and belief", - "Minorities", - "Racial discrimination", - "Sexual Orientation and Gender Identity" - ] - }, - { - "text": "Provide statistical data regarding convictions for reported incidents of rape and defilement at its mid-term review", - "values": [ - "UPR process", - "Women's rights" - ] - }, - { - "text": "Suspend the application of article 128 in the Criminal Code, with a view to revoke it", - "values": [ - "Rights of the Child", - "Women's rights" - ] - }, - { - "text": "Ensure that the legal framework and enforcement of laws, including the Cybercrimes Act and other laws affecting members of the media, are fully consistent with the human rights and fundamental freedoms in Tanzania's Constitution and the Universal Declaration of Human Rights ", - "values": [ - "Freedom of opinion and expression", - "Freedom of the press", - "International instruments" - ] - }, - { - "text": "Submit the initial report to the Committee against Torture, as well as all due reports to other treaty bodies", - "values": [ - "Torture and other CID treatment", - "Treaty bodies" - ] - }, - { - "text": "Place indicted government officials on administrative leave pending conclusion of the investigation related to the 2009 stadium violence, and urge all members of the security forces to cooperate fully with the investigation", - "values": [ - "Human rights violations by state agents", - "Justice" - ] - }, - { - "text": "Ensure that all persons deprived of their liberty are treated with humanity and with respect for the inherent dignity of the human being ", - "values": [ - "Detention" - ] - }, - { - "text": "Expedite the establishment of its national preventive mechanism, in accordance with its obligations under OPCAT", - "values": [ - "Detention", - "International instruments", - "Torture and other CID treatment" - ] - }, - { - "text": "Ensure that children of internally displaced persons, refugees, asylum-seekers and their families enjoy the right to health, education and birth registration without discrimination ", - "values": [ - "Asylum-seekers - refugees", - "Internally displaced persons", - "Right to education", - "Right to health", - "Rights of the Child", - "Statelessness and the right to nationality" - ] - }, - { - "text": "Ratify both the CRPD and its Optional Protocol before the next UPR cycle ", - "values": [ - "Disabilities", - "International instruments", - "UPR process" - ] - }, - { - "text": "Guarantee the right of victims to truth, justice, reparation and non-repetition, especially by taking all necessary measures to put an end to impunity and bring to justice all presumed perpetrators in line with the law and international standards", - "values": [ - "Impunity", - "Justice" - ] - }, - { - "text": "Devote adequate resources, in particular financial resources and personnel, to combating femicide and all forms of violence against women", - "values": [ - "Women's rights" - ] - }, - { - "text": "Ensure for all the right to a fair trial", - "values": [ - "Justice" - ] - }, - { - "text": "Ratify the Optional Protocol to CRC on the involvement of children in armed conflict ", - "values": [ - "International humanitarian law", - "International instruments", - "Rights of the Child" - ] - }, - { - "text": "Enhance gender equality by reducing the gender pay gap and increasing employment opportunities for women through implementation of the 2030 Agenda for Sustainable Development", - "values": [ - "Development", - "Women's rights" - ] - }, - { - "text": "Accede to the International Convention for the Protection of All Persons from Enforced Disappearance ", - "values": [ - "Enforced disappearances", - "International instruments" - ] - }, - { - "text": "Promote more effective efforts to keep children in schools, particularly girls.", - "values": [ - "Right to education", - "Rights of the Child" - ] - }, - { - "text": "Make further efforts and take the legislative and administrative measures necessary to eliminate discrimination against persons with disabilities on the ground", - "values": [ - "Disabilities" - ] - }, - { - "text": "Extend the applicability of the Optional Protocol to the Convention on the Rights of the Child on the sale of children, child prostitution and child pornography and the Protocol to Prevent, Suppress and Punish Trafficking in Persons, Especially Women and Children to Greenland and to the Faroe Islands ", - "values": [ - "International instruments", - "Rights of the Child", - "Trafficking" - ] - }, - { - "text": "The Government of Saint Vincent and the Grenadines wishes to inform that there are several organisations dealing with various aspects of human rights and related human issues operating within its territory and welcomes these recommendations but cannot accept them at the present time to create a national human rights institution in accordance to the Paris Principles. As a result, the Government commits to undertake consultation with stakeholders and with the support and assistance of the international community to create such an institution.", - "values": [ - "National Human Rights Institution" - ] - }, - { - "text": "Enact the Marriage and Divorce Bill ", - "values": [ - "Other" - ] - }, - { - "text": "Continue implementing the 3N Initiative in order to ensure the full realization of the right to food", - "values": [ - "Right to food" - ] - }, - { - "text": "Ensure that no person with a mental disability is executed", - "values": [ - "Death penalty", - "Disabilities" - ] - }, - { - "text": "Continue implementing programmes and measures to improve the enjoyment of the rights to food, education and health, including in the search for the promotion of these rights in the areas that are not under control of the TFG ", - "values": [ - "Right to education", - "Right to food", - "Right to health" - ] - }, - { - "text": "Strengthen its National Commissions, namely the National Women Commission, in order to implement the adopted policies", - "values": [ - "Women's rights" - ] - }, - { - "text": "Take the necessary steps to codify in national laws obligations subscribed to in the Convention on the Rights of the Child ", - "values": [ - "International instruments", - "Rights of the Child" - ] - }, - { - "text": "Adopt the necessary measures to accelerate the functioning of a national human rights institution that is in accordance with the international standards established in the Paris Principles", - "values": [ - "National Human Rights Institution" - ] - }, - { - "text": "Continue seeking solutions to enable children whose prison sentence is coming to an end in the middle of the school year, to continue school", - "values": [ - "Justice", - "Right to education", - "Rights of the Child" - ] - }, - { - "text": "In accordance with article 70 of the Constitution, speed the process for the local registration of churches and religious organizations as mandated under the framework on religion and allow for an equitable resolution of property disputes as required under the Constitution and the Prime Minister's decree on religious property.", - "values": [ - "Freedom of religion and belief" - ] - }, - { - "text": "Pursue development policies and programmes aimed at poverty alleviation ", - "values": [ - "Poverty" - ] - }, - { - "text": "Consider ratifying the International Covenant on Economic, Social and Cultural Rights, the International Covenant on Civil and Political Rights, and the Second Optional Protocol thereto", - "values": [ - "CP rights - general", - "Death penalty", - "ESC rights - general", - "International instruments" - ] - }, - { - "text": "Intensify the promotion of gender equality and encourage the presence of women in high-level positions ", - "values": [ - "Women's rights" - ] - }, - { - "text": "Consider further cooperation with the international human rights monitoring mechanisms, including treaty bodies and special procedures of the Human Rights Council ", - "values": [ - "Special procedures", - "Treaty bodies" - ] - }, - { - "text": "Bring both the Press law and Penal Code in line with article 19 of ICCPR ", - "values": [ - "Freedom of the press", - "International instruments" - ] - }, - { - "text": "Intensify efforts to ratify the International Convention for the Protection of All Persons from Enforced Disappearance", - "values": [ - "Enforced disappearances", - "International instruments" - ] - }, - { - "text": "Step up its efforts to curb the occurrence of domestic violence", - "values": [ - "Rights of the Child", - "Women's rights" - ] - }, - { - "text": "Continue strengthening national laws on offences related to violence against women and girls", - "values": [ - "Rights of the Child", - "Women's rights" - ] - }, - { - "text": "Sign the Optional Protocol to the Convention against Torture at the earliest possible opportunity", - "values": [ - "Detention", - "International instruments", - "Torture and other CID treatment" - ] - }, - { - "text": "Take special measures to accelerate women's participation at all levels and in all areas of public life.", - "values": [ - "Women's rights" - ] - }, - { - "text": "Adopt national legislation in accordance with the Optional Protocol to the Convention against Torture", - "values": [ - "Detention", - "International instruments", - "Torture and other CID treatment" - ] - }, - { - "text": "Promote the establishment of an inter-ministerial committee on human rights in order to further improve coordination between the various national administrations and increase the effectiveness of the Human Rights Office", - "values": [ - "General" - ] - }, - { - "text": "Consider developing a third action plan on human rights and continue sharing its experience with regard to systematic human rights implementation", - "values": [ - "General" - ] - }, - { - "text": "Adopt additional measures to combat gender inequity and gender-based discrimination", - "values": [ - "Women's rights" - ] - }, - { - "text": "Continue the good practice of having a national Human Rights Plan by formulating a comprehensive plan of action or strategy", - "values": [ - "General" - ] - }, - { - "text": "Consider seeking further targeted technical assistance from United Nations agencies towards achieving its human rights obligations ", - "values": [ - "Technical assistance and cooperation" - ] - }, - { - "text": "France will submit a midterm report in 2015 on the implementation of the recommendations made during the universal periodic review in January 2013", - "values": [ - "UPR process" - ] - }, - { - "text": "Guarantee the independence of judiciary and take all the necessary measures to combat impunity", - "values": [ - "Impunity", - "Justice" - ] - }, - { - "text": "Ratify CEDAW and CRC as soon as possible ", - "values": [ - "International instruments", - "Rights of the Child", - "Women's rights" - ] - }, - { - "text": "Guarantee in all circumstances the independence of the media and take the necessary measures in order that domestic legislation on the offense against honour and defamation does not undermine the freedom of expression", - "values": [ - "Freedom of opinion and expression" - ] - }, - { - "text": "Establishment of juvenile courts and specialized detention, re-education and rehabilitation centres for women and children in the country's eight regions", - "values": [ - "Detention", - "Justice", - "Rights of the Child", - "Women's rights" - ] - }, - { - "text": "Continue to take steps to enhance women empowerment", - "values": [ - "Women's rights" - ] - }, - { - "text": "Continue to take all necessary measures to ensure that teachers are adequately trained, that girls and boys from all areas have equal access to education and that enrolment in primary and secondary education, including in rural and less developed areas, significantly increase", - "values": [ - "Right to education" - ] - }, - { - "text": "Continue efforts in support of the Truth, Justice and Reconciliation Commission", - "values": [ - "Justice" - ] - }, - { - "text": "Continue efforts to prevent and combat violence against women and domestic violence, in particular in the Faroe Islands and Greenland ", - "values": [ - "Rights of the Child", - "Women's rights" - ] - }, - { - "text": "Ensure effective investigation into all allegations of torture or mistreatment.", - "values": [ - "Torture and other CID treatment" - ] - }, - { - "text": "Make the necessary amendments to legislation in order to ensure that communities of all faiths and religions have an equal place in a democratic society ", - "values": [ - "Freedom of religion and belief" - ] - }, - { - "text": "Undertake an awareness-raising campaign to address discrimination against homosexuals and transgender persons ", - "values": [ - "Human rights education and training", - "Sexual Orientation and Gender Identity" - ] - }, - { - "text": "Further promote policies and programmes which offer full and equal participation of all ethnic groups", - "values": [ - "Minorities" - ] - }, - { - "text": "Spread the culture of human rights in all sectors and institutions of society, in particular legislators and the staff of the judicial system and review its education curricula with a view to incorporating human rights principles", - "values": [ - "Human rights education and training" - ] - }, - { - "text": "Consider inviting international observers to the upcoming electoral processes, which will be held in the next months, to ensure that the new authorities are elected democratically and by legal means", - "values": [ - "Elections" - ] - }, - { - "text": "Ensure that evictions take place voluntary and without coercion ", - "values": [ - "Right to housing" - ] - }, - { - "text": "Ratify the 1951 Convention relating to the Status of Refugees and establish national legislation to implement its provisions and obligations", - "values": [ - "Asylum-seekers - refugees", - "International instruments" - ] - }, - { - "text": "Build on its ongoing engagement with labour and civil society leaders, and undertake a consultative process to review and adjust legislation to ensure the protection of the human rights of its workers", - "values": [ - "Civil society", - "Labour" - ] - }, - { - "text": "Adopt measures at the legislative level which directly prohibit racist and xenophobic statements and guarantee access to effective protection and measures of legal defence in the appropriate national courts", - "values": [ - "Justice", - "Racial discrimination" - ] - }, - { - "text": "Review relevant legislation to ensure that discrimination on the basis of sexual orientation and gender identity is prohibited", - "values": [ - "Sexual Orientation and Gender Identity" - ] - }, - { - "text": "Consider the possibility of ratifying the International Convention for the Protection of All Persons from Enforced Disappearance and adapting its national legislation to this instrument", - "values": [ - "Enforced disappearances", - "International instruments" - ] - }, - { - "text": "Step up efforts to implement the final observations of the Committee for the Elimination of Discrimination against Women.", - "values": [ - "Treaty bodies", - "Women's rights" - ] - }, - { - "text": "Ratify the Palermo Protocol and the ILO Conventions no. 169 and 189", - "values": [ - "Indigenous peoples", - "International instruments", - "Labour", - "Trafficking" - ] - }, - { - "text": "Create a formal health policy", - "values": [ - "Right to health" - ] - }, - { - "text": "Promote greater human rights understanding through relevant programmes that inculcate respect, tolerance and intercultural understanding", - "values": [ - "Human rights education and training" - ] - }, - { - "text": "Implement a comprehensive national policy to prevent the use or recruitment of child soldiers and undertake all efforts to provide opportunities, especially educational ones, for children ", - "values": [ - "International humanitarian law", - "Right to education", - "Rights of the Child" - ] - }, - { - "text": "Further enhance the capacity of the national committee for childhood for the full implementation of the national childhood strategic action plan", - "values": [ - "Rights of the Child" - ] - }, - { - "text": "Continue working to ensure the independence and transparency of its judicial system as well as to improve the conditions of its penitentiaries", - "values": [ - "Detention", - "Justice" - ] - }, - { - "text": "Continue efforts to eliminate harmful tradition practices and female genital mutilation", - "values": [ - "Rights of the Child", - "Torture and other CID treatment", - "Women's rights" - ] - }, - { - "text": "Fully explore the possibility of consolidating the work and functions of existing ombuds-institutions and establish a national human rights institution in compliance with the Paris Principles", - "values": [ - "National Human Rights Institution" - ] - }, - { - "text": "Allocate more resources to education for vulnerable students and the disabled", - "values": [ - "Disabilities", - "Right to education" - ] - }, - { - "text": "Eliminate all obstacles to the development of NGOs, in particular the financial procedures for those financed with resources from abroad, and promote the participation of civil society in the activities of the State ", - "values": [ - "Civil society", - "Freedom of association and peaceful assembly" - ] - }, - { - "text": "Take effective measures to eliminate the many obstacles that prevent women from entering the labour market, include in legislation the principle of equal pay for\nequal work and the requirement that this principle be scrupulously observed by\nemployers", - "values": [ - "Women's rights" - ] - }, - { - "text": "That a national action plan for the protection of the human rights of LGBTI persons in Slovakia is developed and implemented, within the context of the planned human rights strategy ", - "values": [ - "Sexual Orientation and Gender Identity" - ] - }, - { - "text": "Enhance the efforts to improve the security situation and protection of minorities", - "values": [ - "Minorities" - ] - }, - { - "text": "Strengthen the children\u2019s health sector with adequate resources", - "values": [ - "Right to health", - "Rights of the Child" - ] - }, - { - "text": "Consider signing and ratifying the ICRMW ", - "values": [ - "International instruments", - "Labour", - "Migrants" - ] - }, - { - "text": "Investigate at earliest cases of forced disappearances and to proceed to sign and ratify the International Convention for the Protection of All Persons from Enforced Disappearance", - "values": [ - "Enforced disappearances", - "International instruments" - ] - }, - { - "text": "Combat frequent discrimination on the grounds of race, ethnicity, nationality and religion and strengthen efforts to prevent discriminatory stereotypes and hate speech targeted at Muslims, migrants, refugees and asylum seekers", - "values": [ - "Asylum-seekers - refugees", - "Freedom of religion and belief", - "Migrants", - "Racial discrimination" - ] - }, - { - "text": "Take all necessary legislative and enforcement measures to eradicate trafficking rings and prosecute perpetrators", - "values": [ - "Trafficking" - ] - }, - { - "text": "Ensure indigenous people\u2019s participation in decision-making at all levels, in all matters affecting them, including conservation efforts", - "values": [ - "Indigenous peoples" - ] - }, - { - "text": "Consider a reform of the civil registration system guaranteeing the rights of all Haitians, including those living abroad", - "values": [ - "Statelessness and the right to nationality" - ] - }, - { - "text": "Draft and adopt a countrywide anti-discrimination strategy, in close cooperation with all relevant stakeholders, including with regard to sexual orientation and gender identity, and the Roma community", - "values": [ - "Minorities", - "Racial discrimination", - "Sexual Orientation and Gender Identity" - ] - }, - { - "text": "Ratify the Convention against Torture and Other Cruel, Inhuman or Degrading Treatment or Punishment and its Optional Protocol and swiftly move ahead with the Prevention of Torture Bill", - "values": [ - "International instruments", - "Torture and other CID treatment" - ] - }, - { - "text": "Increase efforts in order to effectively combat impunity ", - "values": [ - "Impunity" - ] - }, - { - "text": "Ensure accountability for perpetrators of torture and access by victims of torture to justice, redress and rehabilitation", - "values": [ - "Justice", - "Torture and other CID treatment" - ] - }, - { - "text": "Invite the relevant special rapporteurs to visit Mexico and make necessary recommendations to uplift the lot of indigenous communities, in line with its commitments and relevant international instruments", - "values": [ - "Indigenous peoples", - "Special procedures" - ] - }, - { - "text": "Approve - as a matter of priority - a bill punishing marital rape as an offence, and develop a national policy that may include an operative plan and indicators, aimed at implementing the legislation on gender-related violence", - "values": [ - "Rights of the Child", - "Women's rights" - ] - }, - { - "text": "Intensify efforts to combat discrimination against ethnic minorities, particularly Roma and migrants", - "values": [ - "Migrants", - "Minorities", - "Racial discrimination" - ] - }, - { - "text": "Take all necessary measures to eradicate discrimination against indigenous peoples ", - "values": [ - "Indigenous peoples" - ] - }, - { - "text": "Continue to optimise the activities of its mechanisms for the protection of human rights by establishing a coordinating Human Rights Council as a part of Ombudsman institution to ensure compliance of the institution framework with the Paris principles", - "values": [ - "National Human Rights Institution" - ] - }, - { - "text": "Continue its efforts to ensure that national legislation complies with international human rights standards", - "values": [ - "International instruments" - ] - }, - { - "text": "Strengthen its National Plan on Disability, so that people with disabilities have progressively access to a wider array of services, which would provide them with greater independence", - "values": [ - "Disabilities" - ] - }, - { - "text": "Promote the inclusion on all fronts of cultural and religious minorities and guarantee their access to development", - "values": [ - "Development", - "Freedom of religion and belief", - "Minorities" - ] - }, - { - "text": "Improve weak administrative and judicial systems that pose obstacles to safeguarding the rights of members of religious minorities", - "values": [ - "Minorities" - ] - }, - { - "text": "Prohibit corporal punishment of children", - "values": [ - "Rights of the Child", - "Torture and other CID treatment" - ] - }, - { - "text": "Continue to strengthen its human rights institutions and develop further measures to ensure the effective implementation of their mandate", - "values": [ - "National Human Rights Institution" - ] - }, - { - "text": "The Government firmly intended to conduct a broad-based discussion with all concerned State bodies and nongovernmental organizations, as well as with other civil society institutions and the media, to look at the recommendations emerging from the report on Uzbekistan and to develop and implement an appropriate national plan of action", - "values": [ - "Civil society", - "Freedom of the press", - "UPR process" - ] - }, - { - "text": "Establish structures providing assistance and systematic protection to all minors in the situation of prostitution ", - "values": [ - "Rights of the Child" - ] - }, - { - "text": "Abolish totally the death penalty even in cases of serious offenses", - "values": [ - "Death penalty" - ] - }, - { - "text": "Ratify the European Convention on the Compensation of Victims of Violent Crimes", - "values": [ - "International instruments" - ] - }, - { - "text": "Involve social partners in the drafting of the new labour law, which addresses new employment challenges, in line with international labour standards", - "values": [ - "International instruments", - "Labour" - ] - }, - { - "text": "Work to improve detention conditions, particularly with regard to high suicide rates and the number of people suffering from mental health problems in prisons", - "values": [ - "Detention", - "Disabilities" - ] - }, - { - "text": "Take the necessary measures in order for all the population to have access to food", - "values": [ - "Right to food" - ] - }, - { - "text": "Step up its efforts to ratify the International Convention on the Protection of the Rights of All Migrant Workers and Members of Their Families and the Trafficking in Persons Protocol", - "values": [ - "International instruments", - "Labour", - "Migrants", - "Trafficking" - ] - }, - { - "text": "Continue to prioritize the allocation of financial and human resources to the health sector, focusing on preventive measures and treatment ", - "values": [ - "Right to health" - ] - }, - { - "text": "Strengthen its efforts in the prevention, punishment and eradication of all forms of violence against women and the adoption of comprehensive policies for the promotion and protection of the rights of the child, especially those relating to the prohibition of forced labour", - "values": [ - "Labour", - "Rights of the Child", - "Women's rights" - ] - }, - { - "text": "Pursue legislation to regulate the Presidential pardons process in order to increase transparency and provide victims and prosecutors an opportunity to input into this process ", - "values": [ - "Justice" - ] - }, - { - "text": "Extend a standing invitation to all special procedure mandate holders of the Human Rights Council, as previously recommended", - "values": [ - "Special procedures", - "UPR process" - ] - }, - { - "text": "Harmonise national legislation with international human rights norms ", - "values": [ - "International instruments" - ] - }, - { - "text": "Speed up the process towards ratification of the Convention on the Rights of Persons with Disabilities", - "values": [ - "Disabilities", - "International instruments" - ] - }, - { - "text": "Continue awareness-raising campaigns to eradicate harmful traditional practices and introduce sex education in the school curricula", - "values": [ - "Human rights education and training", - "Torture and other CID treatment" - ] - }, - { - "text": "Respect the right to assembly throughout the process of reviewing the Constitution ", - "values": [ - "Freedom of association and peaceful assembly" - ] - }, - { - "text": "Abolish the sentencing of children to life in prison", - "values": [ - "Detention", - "Rights of the Child" - ] - }, - { - "text": "The United States is committed to preventing and effectively prosecuting hate crimes. In 2009, we enacted a powerful new tool, the Shepard-Byrd Hate Crimes Prevention Act, which enhanced federal prosecution for violent crimes motivated by religious, racial, or national origin bias and enabled federal prosecution of crimes based on sexual orientation, gender, gender identity, and disability. Over the last five years, DOJ has obtained convictions of more than 160 defendants on such charges, a nearly 50 percent increase over the previous five years. DOJ also continues to prosecute other hate crimes, and in 2014 assisted Kansas authorities in the investigation of a fatal shooting at a Kansas City Jewish community center. In January 2015, the FBI began collecting more detailed data on bias-motivated crimes, including those committed against Arab, Hindu, and Sikh individuals.", - "values": [ - "Racial discrimination" - ] - }, - { - "text": "Reduce the use of preventive detention and isolation of the detainees ", - "values": [ - "Detention" - ] - }, - { - "text": "Continue to increase its efforts to prevent discrimination and violence against women", - "values": [ - "Women's rights" - ] - }, - { - "text": "Continue its policy in defence of the right to life.", - "values": [ - "Other" - ] - }, - { - "text": "Keep ensuring women's access to justice and improving support services", - "values": [ - "Justice", - "Women's rights" - ] - }, - { - "text": "Continue adopting measures to effectively address the phenomena of enforced disappearance ", - "values": [ - "Enforced disappearances" - ] - }, - { - "text": "Address the root causes of the situation in Rakhine State, including articulating a clear pathway to citizenship for those who identify as Rohingya", - "values": [ - "Freedom of religion and belief", - "Minorities", - "Statelessness and the right to nationality" - ] - }, - { - "text": "Take effective measures against police violence, in particular by ensuring comprehensive investigations and the prosecution of alleged offenders within the police and security forces ", - "values": [ - "Human rights violations by state agents" - ] - }, - { - "text": "Seek technical assistance to ensure the necessary competences and skills to enable its officials to draft upcoming reports, including to the treaty bodies.", - "values": [ - "Technical assistance and cooperation", - "Treaty bodies" - ] - }, - { - "text": "Set up a national human rights institution in accordance with the Paris Principles.", - "values": [ - "National Human Rights Institution" - ] - }, - { - "text": "Continue the policy aimed at improving the judicial system, reforming law enforcement bodies and lowering the level of crime and corruption", - "values": [ - "Corruption", - "Justice" - ] - }, - { - "text": "Strengthen measures to protect children through adequate investigations, timely prosecutions, sufficient penalties in cases of child trafficking, and implementation of legislation prohibiting the use of children for begging for the purposes of economic exploitation, in line with its obligations under international treaties and instruments", - "values": [ - "International instruments", - "Labour", - "Rights of the Child", - "Trafficking" - ] - }, - { - "text": "Take into account, when examining the UPR recommendations, those that are in line with its religious, social and cultural specificities.", - "values": [ - "UPR process" - ] - }, - { - "text": "Intensify its effort to harmonize national legislation with international standards, including by providing more training for judicial and law enforcement officials with a view to ensuring more effective application of international standards ", - "values": [ - "Human rights education and training" - ] - }, - { - "text": "Positively consider ratifying the Rome Statute of the International Criminal Court", - "values": [ - "International instruments", - "Justice" - ] - }, - { - "text": "Abolish the death penalty and commute existing death sentences to imprisonment ", - "values": [ - "Death penalty" - ] - }, - { - "text": "Continue efforts to protect all migrant workers and their families, ensuring that abusive employers are held accountable and brought to justice", - "values": [ - "Labour", - "Migrants" - ] - }, - { - "text": "Take concrete measures to combat racial discrimination in law enforcement and in the administration of justice", - "values": [ - "Racial discrimination" - ] - }, - { - "text": "Continue to strengthen the appropriate health care provided to women, in particular in rural areas", - "values": [ - "Right to health", - "Women's rights" - ] - }, - { - "text": "Codify existing policies regulating the granting of asylum and refugee status ", - "values": [ - "Asylum-seekers - refugees" - ] - }, - { - "text": "Ensure the inclusion of all stakeholders in the drafting and adoption of the British Bill of Rights, in particular representatives of the poor, minorities and vulnerable groups", - "values": [ - "Civil society", - "Minorities" - ] - }, - { - "text": "Strengthen the domestic legislation in accordance with international law to prevent and address violence against women and girls ", - "values": [ - "Rights of the Child", - "Women's rights" - ] - }, - { - "text": "Revise its system of detention to reduce the use of police custody for children, and ensure that police custody of children is a measure of last resort and for the shortest period of time possible", - "values": [ - "Detention", - "Rights of the Child" - ] - }, - { - "text": "Take appropriate measures to put an end to violence against women", - "values": [ - "Women's rights" - ] - }, - { - "text": "Continue intensifying its efforts in poverty eradication and economic development with a view to graduating from the least developed country category by 2020 ", - "values": [ - "Development", - "Poverty" - ] - }, - { - "text": "Carry out follow-up mechanisms on UPR recommendations that enable to verify the implementation and impact of norms and measures adopted to promote equal rights and non-discrimination for all citizens, particularly vulnerable groups such as women, children, ethnic minorities and LGBT communities, among others", - "values": [ - "Minorities", - "Racial discrimination", - "Rights of the Child", - "Sexual Orientation and Gender Identity", - "UPR process", - "Women's rights" - ] - }, - { - "text": "Give full priority to ensuring the full and effective implementation of the Disability Act", - "values": [ - "Disabilities" - ] - }, - { - "text": "Recommended that National legislation and customs and traditional practices should be further harmonized with the Convention on the Rights of the Child and the Convention on the Elimination of All Forms of Discrimination against Women.", - "values": [ - "International instruments", - "Rights of the Child", - "Women's rights" - ] - }, - { - "text": "Prevent the involvement of foreign mercenaries in the internal conflict and their attempts to turn human rights violations into an ethnic and religious conflict", - "values": [ - "Freedom of religion and belief", - "International humanitarian law", - "Minorities" - ] - }, - { - "text": "Make more efforts to guarantee the right of all children to be registered immediately after birth through a simplified and inclusive procedure, thus allowing them access to basic social services such as education and health ", - "values": [ - "Rights of the Child" - ] - }, - { - "text": "Provide the Committee on the Elimination of Discrimination against Women with information on the steps taken to incorporate a definition of discrimination against women in appropriate national legislation and on the incorporation of the principle of equality between men and women in the Constitution", - "values": [ - "Treaty bodies", - "Women's rights" - ] - }, - { - "text": "Transform the de facto moratorium on death penalty into a de jure moratorium.", - "values": [ - "Death penalty" - ] - }, - { - "text": "Continue to develop facilities and improve social services for persons with disabilities, including those affected by mental illness", - "values": [ - "Disabilities" - ] - }, - { - "text": "Adopt effective measures to guarantee and protect the rights of minorities without discrimination and provide them with all rights", - "values": [ - "Minorities", - "Racial discrimination" - ] - }, - { - "text": "Advance in the coordination of the different government departments with competencies on the issue of water ", - "values": [ - "Right to water and sanitation" - ] - }, - { - "text": "Continue efforts to foster unity in a diverse society, including to migrants, through considering the ratification of ICRMW ", - "values": [ - "International instruments", - "Labour", - "Migrants" - ] - }, - { - "text": "Develop and implement, in collaboration with civil society, a comprehensive national strategy against gender-based violence, including domestic violence, sexual harassment and harmful traditional practices, including female genital mutilation", - "values": [ - "Civil society", - "Rights of the Child", - "Torture and other CID treatment", - "Women's rights" - ] - }, - { - "text": "Carry out judicial and penitentiary reform aimed to guarantee that trials are impartial and fair and that detention conditions are in accordance with international law, not only in letter but also in practice ", - "values": [ - "Detention", - "Justice" - ] - }, - { - "text": "Commission further studies on the issue of the death penalty, with a view to its abolition", - "values": [ - "Death penalty" - ] - }, - { - "text": "Make progress towards the abolition of capital punishment by adopting a de jure moratorium", - "values": [ - "Death penalty" - ] - }, - { - "text": "Review relevant legislation, such as the Family Code, with a view to prevent discrimination of women, including with regards to marriage, inheritance or the freedom of movement ", - "values": [ - "Freedom of movement", - "Women's rights" - ] - }, - { - "text": "Raise the age for all enrolments into armed forces to the age of at least 18 years in line with the CRC recommendation", - "values": [ - "Rights of the Child", - "Treaty bodies" - ] - }, - { - "text": "Complete the process of the establishment of a National Human Rights Institution", - "values": [ - "National Human Rights Institution" - ] - }, - { - "text": "Continue promoting economic and social sustainable development to improve steadily the standard of living and to lay a solid foundation for the enjoyment of human rights", - "values": [ - "ESC rights - general" - ] - }, - { - "text": "Consider ratifying the remaining international human rights instruments ", - "values": [ - "International instruments" - ] - }, - { - "text": "Continue to strengthen the mandate of the Austrian Ombudsman Board in order to ensure full compliance with the Paris Principles", - "values": [ - "National Human Rights Institution" - ] - }, - { - "text": "Ratify the new optional protocol to the Convention on the Rights of the Child", - "values": [ - "International instruments", - "Rights of the Child" - ] - }, - { - "text": "Strengthen its efforts in combatting the early marriage of girls", - "values": [ - "Rights of the Child" - ] - }, - { - "text": "Continue its efforts for the full implementation of the Convention against Torture", - "values": [ - "International instruments", - "Torture and other CID treatment" - ] - }, - { - "text": "Intensify efforts to operationalize the concept of gross national happiness and the tools used to monitor its implementation in the development process", - "values": [ - "Development" - ] - }, - { - "text": "Call on the international community for technical assistance to improve human rights awareness and understanding throughout the population ", - "values": [ - "Human rights education and training", - "Technical assistance and cooperation" - ] - }, - { - "text": "Strengthen efforts to prevent violence against and abuse of children", - "values": [ - "Rights of the Child" - ] - }, - { - "text": "Provide more convenient living conditions to children without parents", - "values": [ - "Rights of the Child" - ] - }, - { - "text": "Set up appropriate follow-up mechanisms in the area of the rights of workers ", - "values": [ - "Labour" - ] - }, - { - "text": "Actively address the negative impact of climate change on human rights", - "values": [ - "Environment" - ] - }, - { - "text": "Continue its commitment to the principles of gender equality and non-discrimination and maintain the dialogue with the Committee on the Elimination of All Forms of Discrimination against Women", - "values": [ - "International instruments", - "Women's rights" - ] - }, - { - "text": "Consider ratifying or acceding to: ICRMW ", - "values": [ - "International instruments", - "Labour", - "Migrants" - ] - }, - { - "text": "Study the possibility of mitigating the negative impact of budget cuts on access to health and an adequate standard of living", - "values": [ - "Right to health" - ] - }, - { - "text": "Consider setting up a juvenile justice system, bearing in mind the minimum standards for administration of justice for minors under the guidelines of the United Nations for preventing juvenile delinquency ", - "values": [ - "Justice", - "Rights of the Child" - ] - }, - { - "text": "Carry on supporting the rights of the child", - "values": [ - "Rights of the Child" - ] - }, - { - "text": "Adopt a leadership role and take concrete steps to move towards the abolition of the death penalty.", - "values": [ - "Death penalty" - ] - }, - { - "text": "Strengthen the mandate and resources of the Ombudsman's Office in order to ensure full implementation of the duties in accordance with the Law on the Protector of Human Rights and Freedoms", - "values": [ - "National Human Rights Institution" - ] - }, - { - "text": "Define and enforce regulations to ensure that companies comply with international and national standards relating to human rights, labour, the environment and others", - "values": [ - "Business and human rights", - "Environment", - "Labour" - ] - }, - { - "text": "Take specific and targeted measures to effectively prevent discrimination against Scheduled Castes.", - "values": [ - "Minorities", - "Racial discrimination" - ] - }, - { - "text": "Take steps to develop new legislation and policies for law enforcement officials to guarantee accountability of security forces and respect for human rights ", - "values": [ - "Public security" - ] - }, - { - "text": "Continue to enhance access to sexual and reproductive health services for women, in particular women with disabilities, women with low income, women with HIV/AIDS, and women living in the rural areas", - "values": [ - "Disabilities", - "HIV - Aids", - "Right to health", - "Women's rights" - ] - }, - { - "text": "Intensify efforts to adopt a revised Children's Act that complies with international standards, including provisions on prohibition of all forms of violence against children, and to ensure sufficient budgetary resources to its implementation", - "values": [ - "Rights of the Child" - ] - }, - { - "text": "Take appropriate action to guarantee freedom of expression, association and assembly - including by allowing the participation of opposition parties and civil society ", - "values": [ - "Civil society", - "Freedom of association and peaceful assembly", - "Freedom of opinion and expression" - ] - }, - { - "text": "Amend the current legislation regarding the media to eliminate the criminalization of "desacato", contempt, libel or slander, in line with the international human rights standards ", - "values": [ - "Freedom of opinion and expression", - "Freedom of the press", - "International instruments" - ] - }, - { - "text": "Reduce prison overcrowding and pre-trial detention periods by enforcing the 2011 Law on Precautionary Measures ", - "values": [ - "Detention" - ] - }, - { - "text": "Take measures to eliminate any discrimination and segregation in the education system against Roma children", - "values": [ - "Minorities", - "Right to education", - "Rights of the Child" - ] - }, - { - "text": "Strengthen criminal legislation aimed at strengthening the fight against racism and intolerance and ensure their compliance", - "values": [ - "Racial discrimination" - ] - }, - { - "text": "Continue its efforts in awareness and education on human rights ", - "values": [ - "Human rights education and training" - ] - }, - { - "text": "Take the necessary measures to review its domestic legislation so as to guarantee the prohibition and sanction of discrimination in all its forms, especially on the basis of gender, sexual orientation and disability", - "values": [ - "Disabilities", - "Sexual Orientation and Gender Identity", - "Women's rights" - ] - }, - { - "text": "Continue efforts in relation to the reform of the penal code aimed at reducing the duration of preventive detention and to limit its use in conformity with the principle of presumption of innocence", - "values": [ - "Detention" - ] - }, - { - "text": "Eliminate discrimination, stigmatization and violence against persons based on their sexual orientation and gender identity and, through public dialogue, promote tolerance and a culture of non-discrimination", - "values": [ - "Sexual Orientation and Gender Identity" - ] - }, - { - "text": "Continue to take steps to ensure the full and effective implementation of its National A - Development Plan to 2030 to combat poverty, particularly in rural areas", - "values": [ - "Development", - "Poverty" - ] - }, - { - "text": "Repeal Penal Code provisions that criminalize sexual relations between consenting adults of the same sex", - "values": [ - "Sexual Orientation and Gender Identity" - ] - }, - { - "text": "Take appropriate measures to disseminate widely and ensure full observance of the Declaration on Human Rights Defenders", - "values": [ - "Human rights defenders", - "International instruments" - ] - }, - { - "text": "Continue to take measures to ensure in practice the protection of children against sale and trafficking, in accordance with Act No. 2010-272, and ensure that persons engaging in the sale and trafficking of children are prosecuted ", - "values": [ - "Rights of the Child", - "Trafficking" - ] - }, - { - "text": "Consider withdrawing its reservation to article 22 of the International Covenant on Civil and Political Rights", - "values": [ - "CP rights - general", - "International instruments" - ] - }, - { - "text": "Continue its efforts to combat the trafficking of women and children in law and in practice, and take adequate measures to combat the phenomenon by providing comprehensive information and data on trafficking in women and girls, as recommended by the Committee on the Elimination of Discrimination against Women ", - "values": [ - "Rights of the Child", - "Trafficking", - "Treaty bodies", - "Women's rights" - ] - }, - { - "text": "Further endeavours with regard to the smooth and productive activity of the National Human Rights Commission within the country", - "values": [ - "National Human Rights Institution" - ] - }, - { - "text": "Strengthen measures on combating discrimination against women and Roma, as well as eliminate stereotypes of Roma and indigenous people through awareness-raising campaigns ", - "values": [ - "Human rights education and training", - "Indigenous peoples", - "Minorities", - "Women's rights" - ] - }, - { - "text": "Implement the awareness-raising programme to fight against domestic violence against women and girls", - "values": [ - "Rights of the Child", - "Women's rights" - ] - }, - { - "text": "Strive to further enhance and share its experiences regarding the role of traditional institutions in dispensing justice and reconciliation ", - "values": [ - "Justice" - ] - }, - { - "text": "Establish a range of measures for the application of the 2014 law on education with a view to ending women and young girls' illiteracy", - "values": [ - "Right to education", - "Rights of the Child", - "Women's rights" - ] - }, - { - "text": "Give clear and immediate instructions to key high-ranking officials of the police force, the army and other security forces that all law enforcement officials should treat rape as a crime and take all measures to effectively investigate allegations of rape and other forms of sexual violence, and that it bring perpetrators to justice", - "values": [ - "Rights of the Child", - "Women's rights" - ] - }, - { - "text": "Adopt effective legislative and administrative measures to vigorously fight racial discrimination and xenophobia and guarantee the rights of ethnic minorities", - "values": [ - "Minorities", - "Racial discrimination" - ] - }, - { - "text": "Enhance its policies regarding access to education, in particular for girls.", - "values": [ - "Right to education", - "Women's rights" - ] - }, - { - "text": "Take necessary steps for the reformation of the Myanmar Human Rights Body as the Human Rights Commission in accordance with the Paris Principles ", - "values": [ - "National Human Rights Institution" - ] - }, - { - "text": "Undertake measures to protect members of religious groups, including Ahmadis, Bahais, Christians and Shias from harassment and acts of violence. This should commence with holding senior law enforcement accountable for their duties that include training for law enforcement officials at the local level to ensure an effective and adequate response to these incidents. This would also include reviewing laws and regulations which discriminate, directly or indirectly against one's religion or belief, including in particular the Blasphemy Act ", - "values": [ - "Freedom of religion and belief", - "Minorities", - "Racial discrimination" - ] - }, - { - "text": "Ratify the Optional Protocol to the Convention against Torture and accede to the International Convention for the Protection of All Persons from Enforced Disappearance ", - "values": [ - "Detention", - "Enforced disappearances", - "International instruments", - "Torture and other CID treatment" - ] - }, - { - "text": "Facilitate greater diversity in radio broadcasting in the context of the current review of the Constitution", - "values": [ - "Freedom of the press" - ] - }, - { - "text": "Strengthen efforts to increase food security for the general population, and particularly those in extreme poverty in rural areas, as well as increase its budget for social infrastructure and social services, including health, education, and water and sanitation ", - "values": [ - "Development", - "Poverty", - "Right to education", - "Right to food", - "Right to health", - "Right to water and sanitation" - ] - }, - { - "text": "Intensify its efforts regarding the process of enacting legislation on human trafficking ", - "values": [ - "Trafficking" - ] - }, - { - "text": "Take measures to enforce the criminalization of female genital mutilation, ensuring that offenders are prosecuted and punished in accordance with the law, as well as re-enforcing public education and awareness-raising programmes aimed at eliminating this practice", - "values": [ - "Human rights education and training", - "Rights of the Child", - "Torture and other CID treatment", - "Women's rights" - ] - }, - { - "text": "Ensure that the procedure of granting legal registrations for NGOs and religious groups be fair, prompt and non-discriminatory ", - "values": [ - "Civil society", - "Freedom of association and peaceful assembly", - "Freedom of religion and belief" - ] - }, - { - "text": "Incorporate training on human rights training and the application of international treaties in the permanent and mandatory training programme for judges and magistrates", - "values": [ - "Human rights education and training", - "International instruments" - ] - }, - { - "text": "Further strengthen judicial structures, adopt measures against corruption in the judiciary and introduce more education and training for police, courts and social services to ensure their effective and appropriate reaction to all cases of domestic as well as other kinds of violence against women.", - "values": [ - "Corruption", - "Human rights education and training", - "Justice", - "Women's rights" - ] - }, - { - "text": "Adhere to the International Convention for the Protection of All Persons from Enforced Disappearance ", - "values": [ - "Enforced disappearances", - "International instruments" - ] - }, - { - "text": "Amend the 2014 Commission on Investigation of Disappeared Persons, Truth and Reconciliation Act in compliance with the Supreme Court ruling of 26 February, 2015 in order to uphold international standards relating to accountability for gross violations of international human rights and international humanitarian law", - "values": [ - "Enforced disappearances", - "International humanitarian law", - "Justice" - ] - }, - { - "text": "Step up its efforts to end discriminatory traditional practices by organising large-scale awareness-raising campaigns on women's rights, which target local and religious leaders as well as the population in general", - "values": [ - "Human rights education and training", - "Women's rights" - ] - }, - { - "text": "Thoroughly implement the Child Law and strengthen awareness-raising campaigns to promote children's rights", - "values": [ - "Human rights education and training", - "Rights of the Child" - ] - }, - { - "text": "Promote prevention and assistance policies in the area of reproductive health, in particular for adolescents", - "values": [ - "Right to health", - "Rights of the Child", - "Women's rights" - ] - }, - { - "text": "Ensure that sexual and reproductive health education is mandatory for all adolescents, irrespective of their gender", - "values": [ - "Right to health", - "Rights of the Child" - ] - }, - { - "text": "Further intensify its efforts to promote gender equality, to combat violence against women and girls, sexual harassment and abuse, and recognize the important role of non-governmental organizations in this field", - "values": [ - "Civil society", - "Rights of the Child", - "Women's rights" - ] - }, - { - "text": "Pave the way for implementation of the Extractive Industries Transparency Initiative involving all groups of society ", - "values": [ - "Business and human rights" - ] - }, - { - "text": "Continue efforts to prevent the smuggling of Yemeni children outside the country.", - "values": [ - "Rights of the Child", - "Trafficking" - ] - }, - { - "text": "Improve the Foreign Contribution (Regulation) Act so that it could fund a broader scope of non-governmental organizations", - "values": [ - "Civil society" - ] - }, - { - "text": "Expedite its efforts on enacting the legal aspect of the office of the undersecretary for human rights and prepare its national human rights plan as a next step ", - "values": [ - "General" - ] - }, - { - "text": "Find ways to overcome the culture of silence and impunity surrounding domestic violence against women, including marital rape, to provide all necessary protection and assistance to victims, to enforce applicable legislation against perpetrators, and to draft specific legislation dealing with these issues ", - "values": [ - "Impunity", - "Women's rights" - ] - }, - { - "text": "Intensify efforts to secure support and assistance from the international community in pursuing its climate change adaptation and mitigation plans", - "values": [ - "Environment" - ] - }, - { - "text": "Continue extending the free nine years compulsory education programme to twelve years so as to ensure access to education for all its young citizens", - "values": [ - "Right to education" - ] - }, - { - "text": "Continue to implement the National Action Plan on Human Rights to, among other things, strengthen the capacity of the Government and of citizens when it comes to protection and promotion of human rights", - "values": [ - "General" - ] - }, - { - "text": "Use the national programme "Brunei Vision 2035" as a guide for the adoption of national legislation on gender equality and women's empowerment ", - "values": [ - "Women's rights" - ] - }, - { - "text": "Combat trafficking, punish perpetrators and compensate and rehabilitate victims", - "values": [ - "Trafficking" - ] - }, - { - "text": "Hence the formal commitment made by the Dominican Republic is to continue to put into effect each and every initiative designed to foster faithful, unrestricted compliance with all its national and international human rights commitments.", - "values": [ - "International instruments" - ] - }, - { - "text": "Continue its efforts in the area of countering trafficking in persons and all associated violations to the rights of the victims ", - "values": [ - "Trafficking" - ] - }, - { - "text": "Continue to implement the NHRAP ", - "values": [ - "General" - ] - }, - { - "text": "Continue the efforts to bring to justice perpetrators of crimes against humanity", - "values": [ - "Justice" - ] - }, - { - "text": "Continue moving in the direction of improving the standards and the quality of care and treatment in foster homes", - "values": [ - "Rights of the Child" - ] - }, - { - "text": "Continue with the policies and programs confronting crime that emphasize on an educational and preventative approach ", - "values": [ - "Public security" - ] - }, - { - "text": "Accept the recommendation of the Committee on the Rights of the Child that Colombia seek technical assistance from, inter alia, OHCHR and UNICEF, in areas including juvenile justice, rehabilitation, repatriations, police training and social reintegration of demobilized child soldiers and child victims of landmines", - "values": [ - "International humanitarian law", - "Rights of the Child", - "Technical assistance and cooperation", - "Treaty bodies" - ] - }, - { - "text": "Speed up the process for adopting the non-discrimination law", - "values": [ - "Other" - ] - }, - { - "text": "Continue to consolidate the progress already achieved in the area of improving living conditions, and strengthen human rights protection ", - "values": [ - "General" - ] - }, - { - "text": "Consider establishing an independent national human rights institution, in accordance with the Paris Principles", - "values": [ - "National Human Rights Institution" - ] - }, - { - "text": "Continue carrying out efforts in enhancing the health services coverage in the country, according to its national development plans", - "values": [ - "Right to health" - ] - }, - { - "text": "Redouble its efforts to fight against crimes of honour, through public awareness and punishment of perpetrators and ensure that measures of protection for potential victims be determined with their full participation", - "values": [ - "Rights of the Child", - "Women's rights" - ] - }, - { - "text": "With the support and cooperation of the international community, continue to fight poverty.", - "values": [ - "Poverty", - "Technical assistance and cooperation" - ] - }, - { - "text": "Strengthen its actions to curb sexual exploitation of children ", - "values": [ - "Rights of the Child" - ] - }, - { - "text": "Strengthen its efforts to combat poverty and social inequalities", - "values": [ - "Poverty" - ] - }, - { - "text": "Address the serious impunity issues regarding alleged arbitrary arrests and prolonged detention of government critics", - "values": [ - "Detention", - "Freedom of opinion and expression", - "Impunity" - ] - }, - { - "text": "Continue the fight against all discrimination, in particular discrimination targeting persons belonging to indigenous peoples living in the two Atlantic regions of the country ", - "values": [ - "Indigenous peoples" - ] - }, - { - "text": "Introduce and disseminate specific awareness-raising programmes for all relevant judicial and police personnel aimed at the protection of children from trafficking ", - "values": [ - "Human rights education and training", - "Rights of the Child", - "Trafficking" - ] - }, - { - "text": "Develop a comprehensive policy in order to remove obstacles to the effective implementation of existing laws protecting women and children", - "values": [ - "Rights of the Child", - "Women's rights" - ] - }, - { - "text": "Investigate and prosecute those who committed human rights violations on both sides of the country's civil war and provide reparations to victims in line with international, standards under the newly-formed Truth and Reconciliation Commission", - "values": [ - "Justice" - ] - }, - { - "text": "Strengthen human rights education and training programmes for the police and law enforcement forces, in particular those working in penitentiary establishments", - "values": [ - "Human rights education and training" - ] - }, - { - "text": "Continue consultations initiated for the creation of a national human rights institution in accordance with the Paris Principles", - "values": [ - "National Human Rights Institution" - ] - }, - { - "text": "Make efforts to ensure access to information of public interest to citizens and guarantee the rights of freedom of assembly", - "values": [ - "Freedom of association and peaceful assembly", - "Freedom of opinion and expression" - ] - }, - { - "text": "Strengthen measures to end discrimination, exclusion and marginalization of indigenous groups and minorities, in particular the San people ", - "values": [ - "Indigenous peoples", - "Minorities" - ] - }, - { - "text": "Provide all necessary support to the Sami people so that they may make use of legal resources that enable them to defend their rights, on an equal footing ", - "values": [ - "Indigenous peoples" - ] - }, - { - "text": "Accede to the International Covenant on Civil and Political Rights and its optional protocols ", - "values": [ - "Death penalty", - "International instruments" - ] - }, - { - "text": "Azerbaijan expressed its readiness to periodically submit information on the implementation of the recommendations.", - "values": [ - "UPR process" - ] - }, - { - "text": "Bring national legislation on elections in line with international standards and commitments by allowing citizens to timely appeal to courts in matters relating to the exercise of the right to choose their local government and national Parliament ", - "values": [ - "Elections" - ] - }, - { - "text": "Conduct a review of the Personal Status Law and the Labour Law with a view to repealing articles that discriminate against women ", - "values": [ - "Labour", - "Women's rights" - ] - }, - { - "text": "Adhere to the Convention against Torture and Other Cruel, Inhuman or Degrading Treatment or Punishment", - "values": [ - "International instruments", - "Torture and other CID treatment" - ] - }, - { - "text": "Consider the possibility of ratifying the Convention against Torture and Other Cruel, Inhuman or Degrading Treatment or Punishment ", - "values": [ - "International instruments", - "Torture and other CID treatment" - ] - }, - { - "text": "Adopt legislation that prohibits domestic violence and marital rape ", - "values": [ - "Rights of the Child", - "Women's rights" - ] - }, - { - "text": "Adopt, as a matter of priority, legislation to criminalize torture in line with article 1 of CAT ", - "values": [ - "International instruments", - "Torture and other CID treatment" - ] - }, - { - "text": "Intensify efforts to address the underlying causes of mortality and malnutrition among children in the first years of life, including aspects related to the lack of access to health care services, poverty and the low level of education among Roma families and families living in rural areas. Also strengthen prenatal and postnatal services, implementing additional programs on maternal breastfeeding and hygiene for the development and survival in early childhood", - "values": [ - "Minorities", - "Rights of the Child" - ] - }, - { - "text": "Continue efforts to accede to the international human rights treaties", - "values": [ - "International instruments" - ] - }, - { - "text": "Ratify the first Optional Protocol to ICCPR", - "values": [ - "CP rights - general", - "International instruments" - ] - }, - { - "text": "Consider the possibility of ratifying CPED ", - "values": [ - "Enforced disappearances", - "International instruments" - ] - }, - { - "text": "Become a party to OP-CRPD ", - "values": [ - "Disabilities", - "International instruments" - ] - }, - { - "text": "Put in place measures to strengthen the protection of victims of trafficking: among others, to screen and protect victims of human trafficking instead of treating them as criminal offenders, to provide them with temporary shelters during legal proceedings, to support witness protection programs and to provide appropriate remedial measures other than deportation ", - "values": [ - "Trafficking" - ] - }, - { - "text": "Guarantee the Indigenous Peoples\u2019 right to free, prior and informed consent and ensure they receive land titles, also in remote regions", - "values": [ - "Indigenous peoples", - "Right to land" - ] - }, - { - "text": "Sign and ratify OP-ICESCR", - "values": [ - "ESC rights - general", - "International instruments" - ] - }, - { - "text": "Investigate thoroughly all cases of illegal recruitment of children in armed groups and bring the perpetrators to justice ", - "values": [ - "International humanitarian law", - "Rights of the Child" - ] - }, - { - "text": "Confirm by law the abolition of the death penalty in line with the Second Optional Protocol to the International Covenant on Civil and Political Rights aiming at the abolition of the death penalty, which Mongolia has ratified", - "values": [ - "Death penalty", - "International instruments" - ] - }, - { - "text": "Issue and implement a standing invitation to the special procedures of the Human Rights Council", - "values": [ - "Special procedures" - ] - }, - { - "text": "Take targeted and efficient measures to address the discrimination and exclusion of minorities that include awareness-raising of the majority population of the need to show respect and understanding towards minorities in accordance with the fundamental principle that "all human beings are born free and equal in dignity and rights"", - "values": [ - "Human rights education and training", - "Minorities" - ] - }, - { - "text": "Take the necessary positive measures to modernize educational facilities with a view to successfully ensuring the enforcement of the 12-year education system ", - "values": [ - "Right to education" - ] - }, - { - "text": "Work with the Government of Haiti to ensure Haitians living in the Dominican Republic have adequate access to civil and birth registration mechanisms in order to establish the Haitian citizenship ", - "values": [ - "Other", - "Statelessness and the right to nationality" - ] - }, - { - "text": "Continue supporting the right to self-determination and independence, particularly its support to the Palestinian cause to put an end to foreign occupation", - "values": [ - "Other" - ] - }, - { - "text": "Issue a standing invitation to special procedure mandate holders", - "values": [ - "Special procedures" - ] - }, - { - "text": "Consider taking all necessary steps to establish a de jure moratorium, with a view to fully abolish the death penalty", - "values": [ - "Death penalty" - ] - }, - { - "text": "Amend the draft bill on the Protection of State Information so that freedom of press is not curtailed in a disproportionate manner ", - "values": [ - "Freedom of the press" - ] - }, - { - "text": "Reconsider its position about the continued legality of corporal punishment of children ", - "values": [ - "Rights of the Child", - "Torture and other CID treatment" - ] - }, - { - "text": "Maintain the tempo to reform the constitution and conclude this important reform as it will consolidate and enhance the legal framework for protection and promotion of human rights", - "values": [ - "General" - ] - }, - { - "text": "Take the necessary public and legislative steps in order to abolish the death penalty", - "values": [ - "Death penalty" - ] - }, - { - "text": "Continue the information campaign in favour of admitting girls to school.", - "values": [ - "Human rights education and training", - "Right to education", - "Rights of the Child", - "Women's rights" - ] - }, - { - "text": "Give positive consideration to acceding to ICESCR and ICCPR.", - "values": [ - "CP rights - general", - "ESC rights - general", - "International instruments" - ] - }, - { - "text": "Review and amend the various penal laws that prevent journalists from carrying out their essential mission in full security and independence.", - "values": [ - "Freedom of the press" - ] - }, - { - "text": "Ratify the Optional Protocol to the Convention on the Elimination of All Forms of Discrimination against Women and take effective legal and practical steps to combat gender-based violence, stereotypes and promote gender equality", - "values": [ - "International instruments", - "Women's rights" - ] - }, - { - "text": "Guarantee, in compliance with its obligations under ICCPR, the effective independence of the procedures and administration of justice, restricted emergency legislation, adequate protection for human rights defenders and political opposition members, and the effective guarantee of freedom of expression and opinion and freedom of religion and belief", - "values": [ - "Freedom of opinion and expression", - "Freedom of religion and belief", - "Human rights defenders", - "International instruments", - "Justice" - ] - }, - { - "text": "Continue on achievements in the field of human rights", - "values": [ - "General" - ] - }, - { - "text": "Promote access to free education and health-care services, especially in rural areas, including through enhanced cooperation with neighbouring countries and development partners ", - "values": [ - "Right to education", - "Right to health" - ] - }, - { - "text": "Maintain constructive and cooperative dialogue with the international community in the field of human rights ", - "values": [ - "Technical assistance and cooperation" - ] - }, - { - "text": "Improve the capacity of the police in carrying out investigations, with additional training in interrogation and prosecution.", - "values": [ - "Justice" - ] - }, - { - "text": "Take measures to guarantee freedom of demonstration and ensure protection of demonstrators", - "values": [ - "Freedom of association and peaceful assembly" - ] - }, - { - "text": "Share its experience and good practices with other developing countries with respect to poverty eradication", - "values": [ - "Poverty" - ] - }, - { - "text": "Implement programmes and activities to support the empowerment of women and to raise their awareness and capacity to enjoy their rights ", - "values": [ - "Human rights education and training", - "Women's rights" - ] - }, - { - "text": "Maintain its positive approach to studying the question of accession to ICESCR ", - "values": [ - "ESC rights - general", - "International instruments" - ] - }, - { - "text": "Give particular attention to human rights protection of people with disabilities in order to secure their rights", - "values": [ - "Disabilities" - ] - }, - { - "text": "Introduce special measures aimed at increasing greater women's political participation", - "values": [ - "Women's rights" - ] - }, - { - "text": "Enhance its efforts to fight against trafficking in persons and fully protect the human rights of victims, especially women, children and migrants in transit ", - "values": [ - "Migrants", - "Rights of the Child", - "Trafficking", - "Women's rights" - ] - }, - { - "text": "Continue the efforts to increase the effectiveness of the national human rights system and share its experiences with other States in the process of undertaking similar reforms ", - "values": [ - "National Human Rights Institution" - ] - }, - { - "text": "Continue its efforts to reduce the rates of infant mortality as a component of the right to health", - "values": [ - "Right to health", - "Rights of the Child" - ] - }, - { - "text": "Ratify the Agreement on the Privileges and Immunities of the International Criminal Court and take all necessary measures for their implementation as well as the preservation of the integrity of the Rome Statute", - "values": [ - "International instruments", - "Justice" - ] - }, - { - "text": "Monitor the reintegration of former child combatants, particularly girls, with the aim to ensure that appropriate assistance is provided and suitable measures are implemented ", - "values": [ - "Rights of the Child", - "Women's rights" - ] - }, - { - "text": "Take all necessary measures to address violence against women as well as gender inequality in particular in the workplace and in the context of pregnancy or family status", - "values": [ - "Women's rights" - ] - }, - { - "text": "Strengthen the capacity of police in cases of violence against women by expanding training and developing protocols to respond to cases effectively", - "values": [ - "Human rights education and training", - "Women's rights" - ] - }, - { - "text": "Ratify the Optional Protocol to the International Covenant on Economic, Social and Cultural Rights, accede to the inquiry procedure and inter-State communications", - "values": [ - "ESC rights - general", - "International instruments" - ] - }, - { - "text": "Continue its efforts in order to provide full access to justice, health services and education for all", - "values": [ - "Justice", - "Right to education", - "Right to health" - ] - }, - { - "text": "Continue its efforts to prevent gender-based and domestic violence and to protect and support victims", - "values": [ - "Rights of the Child", - "Women's rights" - ] - }, - { - "text": "Ensure the independence and impartiality of the judiciary and police authorities and allow all parties to exercise their rights before the judiciary", - "values": [ - "Justice" - ] - }, - { - "text": "Approve the Family Code to enhance the protection of the rights of children, especially with respect to the trafficking in minors", - "values": [ - "Rights of the Child", - "Trafficking" - ] - }, - { - "text": "Ensure the effective implementation of the Family Protection Act including through investigations and prosecutions of perpetrators of violence against women", - "values": [ - "Women's rights" - ] - }, - { - "text": "Adopt necessary measures to formalize the establishment of a moratorium on the executions of the death penalty as well as the ratification of ICCPR-OP 2", - "values": [ - "Death penalty", - "International instruments" - ] - }, - { - "text": "Take effective legal measures to prohibit the use of "Tasers" by the police against various groups of peoples ", - "values": [ - "Human rights violations by state agents", - "Torture and other CID treatment" - ] - }, - { - "text": "Elaborate economic policies and poverty reduction strategies", - "values": [ - "Poverty" - ] - }, - { - "text": "Intensify its efforts to align its national legislation with the provisions of the Rome Statute", - "values": [ - "International instruments", - "Justice" - ] - }, - { - "text": "Ratify the Optional Protocol to the Convention against Torture and Other Cruel, Inhuman or Degrading Treatment or Punishment", - "values": [ - "International instruments", - "Torture and other CID treatment", - "Treaty bodies" - ] - }, - { - "text": "Provide for plurality and diversity of the media as a fundamental component of the right to information and ensure that journalists can perform their legitimate duties free from any unjustified prosecution ", - "values": [ - "Freedom of opinion and expression", - "Freedom of the press" - ] - }, - { - "text": "Advance in the design of a public policy on human rights education and culture encompassing all State agencies and the general public. ", - "values": [ - "Human rights education and training" - ] - }, - { - "text": "Noting that there currently are two national human rights institutions, avoid duplication - assign clear and well- defined competencies in accordance with the Paris Principles - and elaborate a National Human Rights Plan that integrates all spheres of public administration ", - "values": [ - "National Human Rights Institution" - ] - }, - { - "text": "Allow national and international NGOs to conduct their work in accordance with the International Covenant on Civil and Political Rights ", - "values": [ - "Civil society", - "International instruments" - ] - }, - { - "text": "Accelerate the process of domestication of international human rights instruments to which it is a party", - "values": [ - "International instruments" - ] - }, - { - "text": "Step up its cooperation with the special procedures of the Human Rights Council by responding positively to the pending visit requests of the special procedures mandate holders without delay", - "values": [ - "Special procedures" - ] - }, - { - "text": "Implement human rights education and anti-discrimination awareness-raising programs for the general public in collaboration with local civil society groups working on behalf of vulnerable populations", - "values": [ - "Civil society", - "Human rights education and training" - ] - }, - { - "text": "Intensify steps to combat and prevent discrimination, especially against persons with disabilities, particularly with respect to the rights to education, housing and social assistance", - "values": [ - "Disabilities", - "Right to education", - "Right to housing" - ] - }, - { - "text": "Implement the "Social missions" on a long-term basis and in a more systematic manner, in order to further reduce the level of inequality in the country ", - "values": [ - "Other" - ] - }, - { - "text": "Cooperate fully with the Commission on Human Rights in South Sudan and OHCHR", - "values": [ - "Technical assistance and cooperation" - ] - }, - { - "text": "Reconsider decriminalizing certain conducts based on sexual orientation and gender identity, as recommended by the High Commissioner for Human Rights", - "values": [ - "Sexual Orientation and Gender Identity" - ] - }, - { - "text": "Ensure that all women, especially the young, have access to contraception and anonymous, non-discriminatory and confidential sexual and reproductive health services", - "values": [ - "Right to health", - "Rights of the Child", - "Women's rights" - ] - }, - { - "text": "Abolish section 146 of the Criminal Code as a first step towards the introduction of a law prohibiting the discrimination of same-sex relationships", - "values": [ - "Sexual Orientation and Gender Identity" - ] - }, - { - "text": "Ensure that all persons with disabilities enjoy protection against discrimination, and have access to equal opportunities irrespective of their level of disability", - "values": [ - "Disabilities" - ] - }, - { - "text": "Broaden the mandate of the Ombudsman for Equality to ensure better follow-up on cases of discrimination", - "values": [ - "National Human Rights Institution" - ] - }, - { - "text": "Bring to an end inhumane detention conditions and ensure that all detainees are treated in accordance with international human rights standards ", - "values": [ - "Detention", - "International instruments" - ] - }, - { - "text": "Pay more attention to social and economic development programmes", - "values": [ - "Development", - "ESC rights - general" - ] - }, - { - "text": "Continue to enhance its efforts to address the related challenges ahead in the promotion and protection of human rights through its relevant policies and plans of action, especially the Third National Action Plan on Human Rights ", - "values": [ - "General" - ] - }, - { - "text": "Put an end to forms of discrimination (including legal ones) faced by lesbian, gay, bisexual, transgender and intersex persons", - "values": [ - "Sexual Orientation and Gender Identity" - ] - }, - { - "text": "Implement the recommendations of the Committee on the Rights of the Child to ensure comprehensive protection of the rights of children, including those of minority groups, indigenous peoples and migrant workers", - "values": [ - "Indigenous peoples", - "Labour", - "Migrants", - "Minorities", - "Rights of the Child", - "Treaty bodies" - ] - }, - { - "text": "Strengthen efforts aimed at ensuring equal rights for women in the field of work", - "values": [ - "Women's rights" - ] - }, - { - "text": "Immediately respect international standards of law in the treatment of prisoners, including by providing prisoners with adequate food, water and medical assistance and ending overcrowding, allow independent monitors access to all known and secret Eritrean detention facilities, notify family members of the whereabouts of detainees, and restore visiting rights and access to legal representation ", - "values": [ - "Detention" - ] - }, - { - "text": "Recommended further action to remove societal discrimination against children with disabilities, street children and children living in rural areas ", - "values": [ - "Disabilities", - "Rights of the Child" - ] - }, - { - "text": "Enhance its health care measures and policies with an aim to reduce the prevalence of child mortality and HIV/AIDS rates ", - "values": [ - "HIV - Aids", - "Right to health", - "Rights of the Child" - ] - }, - { - "text": "Ensure a consistent and rapid implementation of the National Strategy for the Inclusion of Roma, Sinti and Travellers Communities through concrete measures at the local level", - "values": [ - "Minorities" - ] - }, - { - "text": "Establish and continue to improve the healthcare system to protect people's right to health", - "values": [ - "Right to health" - ] - }, - { - "text": "Adopt a new law on anti-discrimination that makes specific reference to sexual orientation and gender identity", - "values": [ - "Sexual Orientation and Gender Identity" - ] - }, - { - "text": "Consider signing and ratifying the ICCPR and the ICESCR", - "values": [ - "CP rights - general", - "ESC rights - general", - "International instruments" - ] - }, - { - "text": "Carry out a strict and effective separation of women and men as well as children and adult prisoners in all penitentiary establishments of all cantons of the country", - "values": [ - "Detention", - "Rights of the Child", - "Women's rights" - ] - }, - { - "text": "Continue its efforts in the fight against HIV by adopting a comprehensive national policy to deal with the epidemic and diseases that are sexually transmitted and tuberculosis", - "values": [ - "HIV - Aids" - ] - }, - { - "text": "Invite the Special Rapporteurs on the independence of judges and lawyers, on the promotion and protection of the right to freedom of opinion and expression, and on torture and other cruel, inhuman or degrading treatment or punishment to visit the country ", - "values": [ - "Freedom of opinion and expression", - "Justice", - "Special procedures", - "Torture and other CID treatment" - ] - }, - { - "text": "Adopt policies and take measures to ensure full realization of the right to safe drinking water and sanitation, with special focus on rural areas ", - "values": [ - "Right to water and sanitation" - ] - }, - { - "text": "Accede to or ratify the Second Protocol to the International Covenant on Civil and Political Rights, which promotes international commitment in abolishing the death penalty ", - "values": [ - "Death penalty", - "International instruments" - ] - }, - { - "text": "Ensure the passage of the Anti-Discrimination Act", - "values": [ - "Other" - ] - }, - { - "text": "Continue its efforts to universalize free primary education", - "values": [ - "Right to education" - ] - }, - { - "text": "Take measures to eliminate discrimination based on sexual orientation and gender identity.", - "values": [ - "Sexual Orientation and Gender Identity" - ] - }, - { - "text": "Accept the visits requested by the United Nations special procedure mandate holders and the OHCHR Regional Office for South America", - "values": [ - "Special procedures", - "Technical assistance and cooperation" - ] - }, - { - "text": "Undertake steps to shorten the period needed for issuing protective orders against domestic violence and to improve the effectiveness of criminal sanctions for violations of protective orders ", - "values": [ - "Rights of the Child", - "Women's rights" - ] - }, - { - "text": "The delegation reiterated that the freedom of information bill will be taken to Parliament this year. There has been increase in the freedom of the press and the Government is committed to further addressing this matter within the remit of the current constitutional making process. ", - "values": [ - "Freedom of opinion and expression", - "Freedom of the press" - ] - }, - { - "text": "Establish an independent national human rights institution aligned with the Paris Principles", - "values": [ - "National Human Rights Institution" - ] - }, - { - "text": "Finalize the ratification process of relevant international conventions to which the country is not yet a party", - "values": [ - "International instruments" - ] - }, - { - "text": "Reinforce measures to combat xenophobia and other related crimes ", - "values": [ - "Racial discrimination" - ] - }, - { - "text": "Take measures to ensure respect for the human rights of persons belonging to ethnic minorities ", - "values": [ - "Minorities" - ] - }, - { - "text": "Take all necessary measures to end female genital mutilation, notably regarding prevention, awareness-raising, control and sanctions ", - "values": [ - "Human rights education and training", - "Rights of the Child", - "Torture and other CID treatment", - "Women's rights" - ] - }, - { - "text": "Step up efforts in amending some provisions of Federal Law 51 of 2006 on combating human trafficking to better align it with the Palermo Protocol", - "values": [ - "International instruments", - "Trafficking" - ] - }, - { - "text": "Ratify the CRPD already signed in 2007 as well as the two Optional Protocols to the Convention on the Rights of the Child (OP-CRC-AC and OP-CRC-SC) ", - "values": [ - "Disabilities", - "International humanitarian law", - "International instruments", - "Rights of the Child", - "Trafficking" - ] - }, - { - "text": "Consider addressing the disparities in the delivery of and access to quality basic social services such as health, education, water and sanitation services.", - "values": [ - "Right to education", - "Right to health", - "Right to water and sanitation" - ] - }, - { - "text": "Take the necessary steps to ensure that the new constitution is implemented while protecting human rights and thus ensuring its provisions on gender equality, lesbian, gay, bisexual and transgender persons, and minorities", - "values": [ - "Minorities", - "Sexual Orientation and Gender Identity", - "Women's rights" - ] - }, - { - "text": "Make further efforts to address HIV/AIDS including by providing equal-opportunity treatment and assistance and continue measures to eliminate HIV/AIDS-related discrimination ", - "values": [ - "HIV - Aids" - ] - }, - { - "text": "Prioritize the investigation and prosecution of senior political and military leaders with command responsibility for violations of international human rights law and ensure civilian oversight of the Federal Government of Somalia security forces", - "values": [ - "Human rights violations by state agents", - "International humanitarian law" - ] - }, - { - "text": "Ratify and implement the Optional Protocol to the Convention against Torture and other Cruel, Inhuman or Degrading Treatment or Punishment", - "values": [ - "Detention", - "International instruments", - "Torture and other CID treatment" - ] - }, - { - "text": "Take all necessary measures to ensure that national human rights instruments are rigorously implemented", - "values": [ - "General" - ] - }, - { - "text": "Consider acceding to the International Convention for the Protection of All Persons from Enforced Disappearance ", - "values": [ - "Enforced disappearances", - "International instruments" - ] - }, - { - "text": "Continue bringing its legislations and policies more in line with its respective obligations under international human rights law ", - "values": [ - "International instruments" - ] - }, - { - "text": "Adopt appropriate measures to comprehensively counter any type of discrimination against migrants ", - "values": [ - "Migrants" - ] - }, - { - "text": "Continue its awareness-raising programmes with a view to putting an end to the use of corporal punishment in schools", - "values": [ - "Human rights education and training", - "Rights of the Child", - "Torture and other CID treatment" - ] - }, - { - "text": "Amend the Public Order Act to allow for freedom of assembly and remove restrictions on freedom of the press by relaxing libel laws that could impede journalists", - "values": [ - "Freedom of association and peaceful assembly", - "Freedom of the press" - ] - }, - { - "text": "Put in place a National Strategy to combat corruption and eradicate its negative effects on the enjoyment of human rights", - "values": [ - "Corruption" - ] - }, - { - "text": "Improve the human rights system protecting young people and children and take measures to prevent juvenile delinquency", - "values": [ - "Justice", - "Rights of the Child" - ] - }, - { - "text": "Withdraw the reservations to the Convention on the Elimination of All Forms of Discrimination against Women.", - "values": [ - "International instruments", - "Women's rights" - ] - }, - { - "text": "Reinstate the Council for the Prevention of Racial Discrimination, Xenophobia and Related Intolerance, or establish an alternative multi-stakeholder institution with the objective of further preventing discrimination and intolerance", - "values": [ - "National Human Rights Institution", - "Racial discrimination" - ] - }, - { - "text": "Effectively implement the comprehensive national strategy to combat short- and long-term unemployment, including investment in skills development", - "values": [ - "Development" - ] - }, - { - "text": "Strengthen its measures to eradicate child abuse, sexual exploitation of children", - "values": [ - "Rights of the Child" - ] - }, - { - "text": "Involve the Ministry for Women's Rights and women's rights organizations in the legislative process", - "values": [ - "Women's rights" - ] - }, - { - "text": "Establish a National Human Rights Institution in accordance with the Paris Principles", - "values": [ - "National Human Rights Institution" - ] - }, - { - "text": "Follow measures taken at the national level to ensure that municipalities in Brazil develop specific policies to guarantee rights of lesbian, gay, bisexual, transgender and intersex people", - "values": [ - "Sexual Orientation and Gender Identity" - ] - }, - { - "text": "Adopt effective measures to ensure universal and free access to primary education, without discrimination between girls and boys", - "values": [ - "Right to education", - "Rights of the Child", - "Women's rights" - ] - }, - { - "text": "Continue with its literacy efforts, access to bilingual education and the promotion and protection of the Guaraní language, in all its territory ", - "values": [ - "Right to education" - ] - }, - { - "text": "Ratify and apply the Arms Trade Treaty", - "values": [ - "International instruments" - ] - }, - { - "text": "Continue focusing its efforts to carry out its plan for national reconstruction, allowing citizen participation and paying special attention to the most vulnerable sectors of society ", - "values": [ - "Minorities" - ] - }, - { - "text": "Modify its legislation to ensure that the provisions prohibit and penalize the sale and trafficking of girls and boys under the age of 18 for sexual and labour exploitation ", - "values": [ - "Labour", - "Rights of the Child", - "Trafficking", - "Women's rights" - ] - }, - { - "text": "Reconsider its position on reservations to CEDAW", - "values": [ - "International instruments", - "Women's rights" - ] - }, - { - "text": "Continue its efforts in addressing the issue of violence against women, building on the adoption of the 2015 law criminalizing domestic violence against women", - "values": [ - "Justice", - "Women's rights" - ] - }, - { - "text": "Further develop and share experiences and good practices regarding the treatment of prisoners, particularly, the plans aimed at turning prisons into education and human improvement centres", - "values": [ - "Detention" - ] - }, - { - "text": "Implement effective judiciary proceedings making possible the bringing to justice security forces personnel who have committed human rights violations ", - "values": [ - "Human rights violations by state agents" - ] - }, - { - "text": "Criminalize the act of exploiting both boys and girls and the incidence of child tourism, as well as prosecute the perpetrators in the travel and tourism industry by imposing stiffer punishments on them", - "values": [ - "Labour", - "Rights of the Child" - ] - }, - { - "text": "Guarantee adequate legal protection and rehabilitation of victims of sexual violence", - "values": [ - "Rights of the Child", - "Women's rights" - ] - }, - { - "text": "To elaborate the possibility to eliminate corporal punishment and the death penalty", - "values": [ - "Death penalty", - "Torture and other CID treatment" - ] - }, - { - "text": "Make more efforts to create job opportunities for youth by taking the necessary measures", - "values": [ - "Development" - ] - }, - { - "text": "Continue to develop health services and further expand the coverage of safe drinking water and sanitation in order to better protect the right to health of its population", - "values": [ - "Right to health", - "Right to water and sanitation" - ] - }, - { - "text": "Further protect women's rights by providing more assistance to poor women and women with disabilities ", - "values": [ - "Disabilities", - "Poverty", - "Women's rights" - ] - }, - { - "text": "Review the Islamic Penal Code in order to meet minimum human rights standards and clarify its application to foreigners and non-Muslims ", - "values": [ - "Justice", - "Minorities" - ] - }, - { - "text": "Strengthen and implement the 2007 law that criminalizes slavery through programmes existing since 2009, to eradicate the aftermath of slavery ", - "values": [ - "Other" - ] - }, - { - "text": "Consider improving the juvenile justice system by integrating and implementing the child friendly justice standards, including by, inter alia, ensuring that children benefit from the protection of specific provisions for children in conflict with the law, and establishing specialized procedural rule to ensure that all juvenile justice guarantees are respected, and ensuring that children are held in detention only as a last resort and separately from adults in both pre-trial detention and after being sentenced", - "values": [ - "Detention", - "Justice", - "Rights of the Child" - ] - }, - { - "text": "Continue to implement the Brasilia rules regarding accessibility for persons with disabilities to the justice system ", - "values": [ - "Disabilities" - ] - }, - { - "text": "Withdraw the general reservations to CEDAW", - "values": [ - "International instruments", - "Women's rights" - ] - }, - { - "text": "That anti-terrorism law combats only terrorist groups and does not consider human rights defenders", - "values": [ - "Counter-terrorism" - ] - }, - { - "text": "Continue with its successful policies to prevent trafficking in persons, especially women and girls ", - "values": [ - "Rights of the Child", - "Trafficking", - "Women's rights" - ] - }, - { - "text": "Train police and medical staff to identify and classify violence within the family avoiding victims stigmatization", - "values": [ - "Rights of the Child", - "Women's rights" - ] - }, - { - "text": "Respect international standards of law in the treatment of prisoners ", - "values": [ - "Detention" - ] - }, - { - "text": "Take measures to implement policies and programmes targeted at reducing poverty and improving the economy including the realization of the Agenda for Prosperity", - "values": [ - "Development", - "Poverty" - ] - }, - { - "text": "While finalizing the new law on administrative and territorial division, take into full account the European Charter of Local Self- Government of the Council of Europe and article 108, paragraph 2, of the Albanian Constitution ", - "values": [ - "Minorities" - ] - }, - { - "text": "Swiftly implement the Law of Compensation of the Immovable Property of the Jewish Religious Communities of Lithuania ", - "values": [ - "Freedom of religion and belief", - "Minorities" - ] - }, - { - "text": "Reduce the remaining socioeconomic differences for Maoris and Pacific Islanders, and increase efforts in the fight against child poverty ", - "values": [ - "ESC rights - general", - "Indigenous peoples", - "Poverty", - "Rights of the Child" - ] - }, - { - "text": "Continue to prioritize efforts to improve the health of its people, including through the enactment of water and sanitation services", - "values": [ - "Right to health", - "Right to water and sanitation" - ] - }, - { - "text": "Fulfil its obligation under ICCPR and fully guarantee the freedom of assembly and freedom of expression on the Internet as well as offline to all its citizens ", - "values": [ - "Freedom of association and peaceful assembly", - "Freedom of opinion and expression", - "International instruments" - ] - }, - { - "text": "Implement the recommendations made by the Human Rights Committee following its consideration of the country's periodic report.", - "values": [ - "Treaty bodies" - ] - }, - { - "text": "Strengthen its legal framework and explicitly criminalize torture under the Penal Code in accordance with article 1 of CAT", - "values": [ - "International instruments", - "Torture and other CID treatment" - ] - }, - { - "text": "Adopt general legislation to combat discrimination on any ground, particularly on the grounds of race, sexual orientation or gender identity, and strengthen the mechanisms to eliminate xenophobic speech against migrants and multi-cultural families", - "values": [ - "Migrants", - "Racial discrimination", - "Sexual Orientation and Gender Identity" - ] - }, - { - "text": "Take urgent steps to end the continuing practice of placing babies and young children under the age of 3 in institutionalized care, and ensure the availability of family-based alternatives", - "values": [ - "Rights of the Child" - ] - }, - { - "text": "Given the current constitutional review, fully incorporate the principle of equality between men and women and adopt a legal definition of gender-based discrimination, without overlooking to establish legislation which provides for the right to equal pay for work of equal value between men and women ", - "values": [ - "Women's rights" - ] - }, - { - "text": "To examine the possibility of modifying the declarations made by the French Government on articles 13 and 14 (5) of the International Covenant on Civil and Political Rights", - "values": [ - "CP rights - general", - "International instruments" - ] - }, - { - "text": "Establish measures and programmes to eradicate human trafficking and gender-based violence, especially of women and girls", - "values": [ - "Rights of the Child", - "Trafficking", - "Women's rights" - ] - }, - { - "text": "Recognise the birth right of the Palestinian people to self-determination and take concrete measures for the establishment of their independent State with Jerusalem as its capital", - "values": [ - "Other" - ] - }, - { - "text": "Address the perceived climate of impunity by ensuring that any allegations of abuse are thoroughly investigated and effectively prosecuted ", - "values": [ - "Impunity" - ] - }, - { - "text": "Strengthen its National Human Rights Commission through greater allocation of funds and staff and adopt measures to guarantee its independence and impartiality, in conformity with the Paris Principles ", - "values": [ - "National Human Rights Institution" - ] - }, - { - "text": "Investigate and punish all cases of intimidation, harassment, persecution, torture and forced disappearances, especially against political dissidents, journalists, ethnic and religious minorities and human rights defenders ", - "values": [ - "Enforced disappearances", - "Freedom of association and peaceful assembly", - "Freedom of the press", - "Human rights education and training", - "Minorities", - "Torture and other CID treatment" - ] - }, - { - "text": "Consider ratifying ILO Conventions 98 and 100", - "values": [ - "International instruments", - "Labour" - ] - }, - { - "text": "Enact the law that enables the prosecution of suspected perpetrators of domestic and sexual violence", - "values": [ - "Rights of the Child", - "Women's rights" - ] - }, - { - "text": "Guarantee journalists and media personnel safety and security, when they are discharging their professional duties", - "values": [ - "Freedom of the press" - ] - }, - { - "text": "Repeal provisions criminalizing homosexuality, with the aim of fully respecting the principles of equality and non-discrimination", - "values": [ - "Sexual Orientation and Gender Identity" - ] - }, - { - "text": "Accede to the Rome Statute of the International Criminal Court and fully align its national legislation with the Rome Statute", - "values": [ - "International instruments", - "Justice" - ] - }, - { - "text": "Continue efforts to accede to the Convention against Torture and Other Cruel, Inhuman or Degrading Treatment or Punishment, as well as its optional protocol, and the International for the Protection of All Persons from Enforced Disappearances, and ratify ILO Conventions No. 169 and no. 189 ", - "values": [ - "Detention", - "Enforced disappearances", - "Indigenous peoples", - "International instruments", - "Labour", - "Torture and other CID treatment" - ] - }, - { - "text": "Continue efforts to guarantee access to education for all", - "values": [ - "Right to education" - ] - }, - { - "text": "Provide without discrimination the proper guarantees of effective judicial protection for detainees, in accordance with the principles and international obligations", - "values": [ - "Detention" - ] - }, - { - "text": "Follow through on recommendations articulated in the recent assessment of anti-corruption efforts undertaken by the Ministry of Justice and United Nations Development Programme, including ensuring the physical safety of anti-corruption officials and whistleblowers and encouraging civil society participation in the judicial reform process", - "values": [ - "Civil society", - "Corruption", - "Justice" - ] - }, - { - "text": "Implement recommendations issued by the Office for Democratic Institutions and Human Rights of OSCE to improve the holding of the next general elections, in 2011, and the presidential elections in 2012 ", - "values": [ - "Elections" - ] - }, - { - "text": "Continue its efforts to end the practice of female genital mutilation in line with recommendations by the Committee on the Rights of the Child ", - "values": [ - "Rights of the Child", - "Torture and other CID treatment", - "Treaty bodies", - "Women's rights" - ] - }, - { - "text": "Improve access to education, in particular in marginalized areas", - "values": [ - "Right to education" - ] - }, - { - "text": "Increase efforts to combat human trafficking, ensure accountability of those involved in trafficking, including any public official, and to prevent double victimization of victims through charges such as illegal migration or falsification of documents ", - "values": [ - "Migrants", - "Trafficking" - ] - }, - { - "text": "Reconsider establishing an independent national human rights institution in accordance with the Paris Principles", - "values": [ - "National Human Rights Institution" - ] - }, - { - "text": "Take more concrete steps to improve the situation of persons with disabilities and ratify the International Convention on the Rights of Persons with Disabilities", - "values": [ - "Disabilities", - "International instruments" - ] - }, - { - "text": "Collaborate further with human rights mandate holders ", - "values": [ - "Special procedures" - ] - }, - { - "text": "Continue to implement new policies and expand the coverage and scope of existing ones, to better promote gender equality, in particular for women in the countryside and low-income families", - "values": [ - "Women's rights" - ] - }, - { - "text": "Intensify its efforts towards establishment of a fully independent, impartial and neutral judiciary, free from corruption in accordance with international standards, guaranteeing that all perpetrators of human rights violations are held accountable and nobody goes unpunished ", - "values": [ - "Justice" - ] - }, - { - "text": "Consider ratification of the Convention on the Rights of Persons with Disabilities ", - "values": [ - "Disabilities", - "International instruments" - ] - }, - { - "text": "Lobby for and enact adequate legal penalties for violations of the laws prohibiting the worst forms of child labour and forced labour and provide sufficient resources and training to enforce the law", - "values": [ - "Labour", - "Rights of the Child" - ] - }, - { - "text": "Improve services and support for women victims of domestic violence by conducting effective investigations, vigorously prosecuting the perpetrators, ending the practice of prosecuting victims and ensuring victims have access to protection and shelters", - "values": [ - "Rights of the Child", - "Women's rights" - ] - }, - { - "text": "Implement the Indigenous Peoples' Rights Act to ensure that economic activity, in particular mining, does not negatively affect the rights of indigenous peoples ", - "values": [ - "Business and human rights", - "Indigenous peoples" - ] - }, - { - "text": "Forbid corporal punishment of children and take order in that matter ", - "values": [ - "Rights of the Child", - "Torture and other CID treatment" - ] - }, - { - "text": "Empower the Public Prosecutor's Office with its own investigative capacity to enable it to carry out independent inquiries", - "values": [ - "Justice" - ] - }, - { - "text": "Ratify the Optional Protocol to the Convention against Torture as soon as possible and establish an independent national preventive mechanism in compliance with the requirements of the Optional Protocol", - "values": [ - "Detention", - "International instruments", - "Torture and other CID treatment" - ] - }, - { - "text": "Continue its efforts aimed at fighting trafficking in persons, particularly children and women, and at ensuring compensation and rehabilitation for trafficking victims ", - "values": [ - "Rights of the Child", - "Trafficking", - "Women's rights" - ] - }, - { - "text": "Declare an official moratorium on the use of the death penalty with a view to its abolition from the penal code and commute the sentences of prisoners already sentenced to death", - "values": [ - "Death penalty" - ] - }, - { - "text": "Adopt appropriate policies to extend protection to all ethnic and religious minorities and ensure they enjoy the necessary legal protection in the face of widespread discrimination", - "values": [ - "Freedom of religion and belief", - "Minorities", - "Racial discrimination" - ] - }, - { - "text": "Look to identify a more accurate measure of the extent of domestic violence, thereby providing a tool to better measure the success of domestic violence prevention and conviction agencies and programmes.", - "values": [ - "Rights of the Child", - "Women's rights" - ] - }, - { - "text": "Ratify the Optional Protocol to the Convention on the Rights of the Child on the involvement of children in armed conflict and the Optional Protocol to the Convention on the Rights of the Child on the sale of children, child prostitution and child pornography", - "values": [ - "International humanitarian law", - "International instruments", - "Rights of the Child", - "Trafficking" - ] - }, - { - "text": "Continue providing health-care services at primary health-care facilities at minimum or no cost ", - "values": [ - "Right to health" - ] - }, - { - "text": "Investigate and ensure justice to all reported cases of intimidation, harassment and attacks of human rights defenders and journalists", - "values": [ - "Freedom of the press", - "Human rights defenders" - ] - }, - { - "text": "Repeal all laws that discriminate against women", - "values": [ - "Women's rights" - ] - }, - { - "text": "Participate in the UNOCI mandate for training and activities of promotion, awareness-raising and technical assistance to face key human rights challenges, including impunity and grave violations of the rights of women and children ", - "values": [ - "Human rights education and training", - "Impunity", - "Rights of the Child", - "Women's rights" - ] - }, - { - "text": "Continue close cooperation with countries of origin and transit in finding an effective solution to the problem of illegal immigration", - "values": [ - "Migrants" - ] - }, - { - "text": "Accord priority to passing draft anti-discrimination legislation, tabled in Congress in November 2015, and reviews existing laws to ensure consistency with the draft legislation's objectives", - "values": [ - "Other" - ] - }, - { - "text": "Increase the expenditure allocated for education in order that it could be accessible to children across the country ", - "values": [ - "Right to education", - "Rights of the Child" - ] - }, - { - "text": "Incorporate in criminal law the principle of absolute prohibition of torture and ensure that the ban is strictly enforced in conformity with the Convention against Torture and Other Cruel, Inhuman or Degrading Treatment or Punishment", - "values": [ - "International instruments", - "Torture and other CID treatment" - ] - }, - { - "text": "Take further steps to tackle sexual violence, bring perpetrators of human rights violations to justice and ensure full implementation of the 2006 law against sexual violence, including through urgent implementation of the zero tolerance policy and establishment of a State-run vetting mechanism to remove the worst abusers from the Congolese army. ", - "values": [ - "Rights of the Child", - "Women's rights" - ] - }, - { - "text": "Continue to support the Peace and Reconciliation Commission to implement the comprehensive national reconciliation and healing programme", - "values": [ - "Justice" - ] - }, - { - "text": "Establish a national coordination unit and provide adequate resources and other support for the implementation of the Council of Europe Convention on Preventing and Combating Violence against Women and Domestic Violence", - "values": [ - "International instruments", - "Rights of the Child", - "Women's rights" - ] - }, - { - "text": "Take measures, in collaboration with civil society organizations, aimed at ensuring women's right to non-discrimination and equality, as proposed by the Committee on the Elimination of Discrimination against Women", - "values": [ - "Civil society", - "Treaty bodies", - "Women's rights" - ] - }, - { - "text": "Continue its good work to reduce the prevailing high unemployment rate in the country", - "values": [ - "Development" - ] - }, - { - "text": "Work with positive interaction with regard to the requests to recover stolen assets, and extradite those involved in the violations of human rights and corruption cases", - "values": [ - "Corruption" - ] - }, - { - "text": "Remove non-violent offenses from the categories subject to capital punishment ", - "values": [ - "Death penalty" - ] - }, - { - "text": "Continue working for the inclusion of the rights of minorities and vulnerable groups in the social programmes promoted by the Government ", - "values": [ - "Minorities" - ] - }, - { - "text": "Bring all those suspected of criminal responsibility to justice in accessible ordinary civilian courts, using fair trials and without making recourse to the death penalty ", - "values": [ - "Death penalty" - ] - }, - { - "text": "Share its best practices and challenges in reaching out to the most vulnerable mine victims", - "values": [ - "Other" - ] - }, - { - "text": "Ensure that the rights of women, children and persons with disabilities are more effectively realized through the implementation of the strategy for the promotion of reproductive health, 2006- 2010, the national strategy for the prevention of AIDS, 2008-2012, the primary health care strategy, 2008-2012, the national action plan for the well-being for children, 2001-2010 and the comprehensive action plan for persons with disabilities, 2008-2012", - "values": [ - "Disabilities", - "HIV - Aids", - "Right to health", - "Rights of the Child", - "Women's rights" - ] - }, - { - "text": "Seek alternative solutions to deprivation of liberty for minors in particular in order to avoid pre-trial detention of minors, while awaiting judgement ", - "values": [ - "Detention", - "Rights of the Child" - ] - }, - { - "text": "Explore alternative policies concerning asylum seekers and consider working with UNHCR to train its professionals who work with asylum seekers.", - "values": [ - "Asylum-seekers - refugees" - ] - }, - { - "text": "Urgently address the inconsistency in the age of marriage in the Marriage Act and the Constitution", - "values": [ - "Rights of the Child" - ] - }, - { - "text": "Take all necessary measures for the exhaustive and efficient implementation of the anti-discrimination law", - "values": [ - "Other" - ] - }, - { - "text": "Give continuity to strengthening of national human rights institutions and mechanisms", - "values": [ - "National Human Rights Institution" - ] - }, - { - "text": "Continue its efforts to improve the national system to access education for all children", - "values": [ - "Right to education", - "Rights of the Child" - ] - }, - { - "text": "Take measures to guarantee access to safe drinking water for all its population ", - "values": [ - "Right to water and sanitation" - ] - }, - { - "text": "Complete its normative framework by the ratification of the instruments already signed, in particular the CPED, CRPD", - "values": [ - "Disabilities", - "Enforced disappearances", - "International instruments" - ] - }, - { - "text": "Reach bilateral agreements with the countries of origin of the children who are victims of trafficking, particularly Benin, Mali, Nigeria and Togo, and reinforce the internal legal framework to effectively combat this crime", - "values": [ - "Rights of the Child", - "Trafficking" - ] - }, - { - "text": "Continue its efforts on health, education and social service system, in order to help the vulnerable and disabled people particularly women and children ", - "values": [ - "Disabilities", - "ESC rights - general", - "Right to education", - "Right to health", - "Rights of the Child", - "Women's rights" - ] - }, - { - "text": "Take legislative and policy measures to prevent and fight violence and to combat discrimination on the ground of sexual orientation and gender identity", - "values": [ - "Sexual Orientation and Gender Identity" - ] - }, - { - "text": "Establish a strategy to improve the existing mechanisms for reporting cases of sexual and gender-based violence against women and girls and to ensure access to justice for victims", - "values": [ - "Rights of the Child", - "Women's rights" - ] - }, - { - "text": "Decriminalize defamation within its civil code in accordance with international standards", - "values": [ - "Freedom of opinion and expression" - ] - }, - { - "text": "Concentrate on the implementation of the international human rights instruments that have been ratified by Djibouti", - "values": [ - "International instruments" - ] - }, - { - "text": "Investigate and prosecute all crimes against humanity as well as cases of torture and disappearances in order to bring the perpetrators to justice", - "values": [ - "Enforced disappearances", - "Torture and other CID treatment" - ] - }, - { - "text": "Redouble its efforts to put an end to stereotypes and to gender-based discrimination in the educational system", - "values": [ - "Right to education", - "Women's rights" - ] - }, - { - "text": "Accede to the Optional Protocol to the Convention against Torture and Other Cruel, Inhuman or Degrading Treatment or Punishment", - "values": [ - "Detention", - "International instruments", - "Torture and other CID treatment" - ] - }, - { - "text": "Facilitate the integration and naturalization of stateless persons who are permanent residents", - "values": [ - "Statelessness and the right to nationality" - ] - }, - { - "text": "Uphold the rule of law, and make every effort to ensure that domestic war crime trials are carried out fairly and without discrimination", - "values": [ - "Justice" - ] - }, - { - "text": "Strengthen anti-discrimination legislation to prohibit discrimination on the basis of sexual orientation and gender identity, and take effective measures to combat violence and discrimination against LGBTI people", - "values": [ - "Sexual Orientation and Gender Identity" - ] - }, - { - "text": "Continue to combat all forms of violence against women and children, as well as strengthen specialized care for victims", - "values": [ - "Rights of the Child", - "Women's rights" - ] - }, - { - "text": "Ratify the Optional Protocols to CRC ", - "values": [ - "International instruments", - "Rights of the Child" - ] - }, - { - "text": "Pursue efforts in human rights related areas, in particular legal review process, female genital mutilation and corporal punishment", - "values": [ - "Rights of the Child", - "Torture and other CID treatment", - "Women's rights" - ] - }, - { - "text": "Ease tensions in rural areas by developing an effective land registration system with a clear complaints handling mechanism", - "values": [ - "Right to land" - ] - }, - { - "text": "Withdraw its reservations to CAT (arts. 21 and 22) and ratify OPCAT without reservations", - "values": [ - "Detention", - "International instruments", - "Torture and other CID treatment" - ] - }, - { - "text": "Ratify the Optional Protocol [OP-CAT]", - "values": [ - "Detention", - "International instruments", - "Torture and other CID treatment" - ] - }, - { - "text": "Establish a moratorium on the application of the death penalty aimed at its abolition and also condone the death penalty for an Argentinian citizen, Victor Saldano, who has been on death row since 1996", - "values": [ - "Death penalty" - ] - }, - { - "text": "Pursue further measures to strengthen gender equality and guarantee the status of women in society at all levels", - "values": [ - "Women's rights" - ] - }, - { - "text": "Continue efforts to improve the situation of children and, in this context, intensify the efforts to effectively prevent child labour ", - "values": [ - "Labour", - "Rights of the Child" - ] - }, - { - "text": "With reference to international instruments, San Marino recognized the importance of treaties that contain individual complaint mechanisms and was committed to addressing reporting delays and to acceding to OP-ICESCR, the Optional Protocol to the Convention on the Rights of the Child on a communications procedure, and to the United Nations Educational, Scientific and Cultural Organization (UNESCO) Convention against Discrimination in Education.", - "values": [ - "ESC rights - general", - "International instruments", - "Right to education", - "Rights of the Child" - ] - }, - { - "text": "Guarantee better the rights of the child, especially the rights to civil registry, education, health and protection against violence.", - "values": [ - "Right to education", - "Right to health", - "Rights of the Child" - ] - }, - { - "text": "Take the necessary measures to fight torture more effectively", - "values": [ - "Torture and other CID treatment" - ] - }, - { - "text": "Takes steps to ensure proper and widespread enforcement of article 29 of the Constitution and ratify the Optional Protocol to the Convention against Torture ", - "values": [ - "Detention", - "International instruments", - "Torture and other CID treatment" - ] - }, - { - "text": "Promote a safe, enabling environment for the work of human rights defenders through the adoption of a charter for the protection and recognition of human rights defenders", - "values": [ - "Human rights defenders" - ] - }, - { - "text": "Expedite staffing of the Ombudsman office and strengthen it by allocating the necessary budget", - "values": [ - "National Human Rights Institution" - ] - }, - { - "text": "Take further appropriate actions to eliminate child labour, trafficking and protect street children", - "values": [ - "Labour", - "Rights of the Child", - "Trafficking" - ] - }, - { - "text": "Ratify ICERD and CRPD", - "values": [ - "Disabilities", - "International instruments", - "Racial discrimination" - ] - }, - { - "text": "Work effectively in order to bring all laws into line with the revised Constitution on the Rights of Persons with Disabilities", - "values": [ - "Disabilities" - ] - }, - { - "text": "Adopt legislative measures strengthening the protection of unaccompanied foreign minors", - "values": [ - "Migrants", - "Rights of the Child" - ] - }, - { - "text": "Introduce legislation criminalizing FGM and domestic violence and launch an awareness and education campaign as part of implementing the legislation", - "values": [ - "Rights of the Child", - "Torture and other CID treatment", - "Women's rights" - ] - }, - { - "text": "Encourage Viet Nam to continue to improve conditions of worship for all, enhance exchange of laws, and disseminate values of tolerance and peace with a view to developing principles of interfaith dialogue ", - "values": [ - "Freedom of religion and belief" - ] - }, - { - "text": "Take actions to ensure that no ill-treatment occurs during expulsions, inter alia by introducing an effective system for lodging complaints of such treatment ", - "values": [ - "Asylum-seekers - refugees" - ] - }, - { - "text": "Develop policies to reduce high maternal mortality rates due to unsafe abortions, including the adoption of measures to ensure broad, affordable access to available abortion medication", - "values": [ - "Right to health", - "Women's rights" - ] - }, - { - "text": "Consider the views of the Committee against Torture, according to which the existing provisions of the Code of Criminal Procedure relating to police custody do not provide for the notification of rights or the presence of a lawyer, and that some people are held without charge or awaiting trial for several years ", - "values": [ - "Detention", - "Justice", - "Treaty bodies" - ] - }, - { - "text": "Eliminate all forms of inequality between men and women", - "values": [ - "Women's rights" - ] - }, - { - "text": "Continue the current efforts to strengthen measures to counter discriminatory attitudes in society, including through public education and equality initiatives and legislative measures ", - "values": [ - "Human rights education and training" - ] - }, - { - "text": "Take the necessary measures to prevent child abuse and neglect and investigate cases of domestic violence, ensuring that sanctions be applied to perpetrators.", - "values": [ - "Rights of the Child" - ] - }, - { - "text": "Guarantee freedom of expression for the entire population, especially journalists and human rights defenders, in the run up of the next presidential elections ", - "values": [ - "Elections", - "Freedom of opinion and expression", - "Freedom of the press", - "Human rights defenders" - ] - }, - { - "text": "Design awareness-raising policies and programmes regarding the prevention of discrimination of LGBT persons and provide equal rights for LGBT persons. In practical terms this means providing better access to justice for people whose rights have been infringed because of their gender identity, gender expression or sexual orientation, it also means allowing same-sex couples to enter into cohabitation contracts in order to remove inequalities relating to inheritance, health care, social security, and finally it means removing discriminatory provisions from the Criminal Code and other laws and regulations ", - "values": [ - "Human rights education and training", - "Sexual Orientation and Gender Identity" - ] - }, - { - "text": "Review its reservations to a number of international human rights instruments with a view to withdrawing them completely ", - "values": [ - "International instruments" - ] - }, - { - "text": "Conduct an awareness and information campaign aimed at confronting the customs and traditions that give rise to discriminatory practices and violence against women, particularly within the family ", - "values": [ - "Human rights education and training", - "Women's rights" - ] - }, - { - "text": "Adopt a number of legislative and practical measures designed to combat manifestation of racial discrimination", - "values": [ - "Racial discrimination" - ] - }, - { - "text": "Step up efforts to ensure non-discrimination and equality between men and women in all spheres of Egyptian society", - "values": [ - "Women's rights" - ] - }, - { - "text": "Continue its efforts to facilitate greater participation and representation of women in public offices and in higher levels of decision- making positions", - "values": [ - "Women's rights" - ] - }, - { - "text": "Proceed with the ratification of the Optional Protocol to the Convention on the Rights of the Child on the sale of children, child prostitution and child pornography ", - "values": [ - "International instruments", - "Rights of the Child", - "Trafficking" - ] - }, - { - "text": "Amend and where necessary repeal all legislation which restricts the ability of journalists to carry out their work freely and which impacts upon the independence of the media", - "values": [ - "Freedom of the press" - ] - }, - { - "text": "Continue to work towards improving child healthcare within the framework of its Integrated Management of Childhood Illnesses Strategy ", - "values": [ - "Right to health", - "Rights of the Child" - ] - }, - { - "text": "Continue development programmes, especially in rural areas ", - "values": [ - "Development" - ] - }, - { - "text": "Ensure the effective implementation of the law on domestic violence", - "values": [ - "Rights of the Child", - "Women's rights" - ] - }, - { - "text": "Accede to the Optional Protocol to the Convention against Torture and establish the national preventive mechanism accordingly ", - "values": [ - "Detention", - "International instruments", - "Torture and other CID treatment" - ] - }, - { - "text": "Continue strengthening the good educational policy with a view to ensuring the full school enrolment of those who due to lack of resources are excluded from the education system, as the only way of moving forward to its full development and achieving true social well-being", - "values": [ - "Right to education" - ] - }, - { - "text": "Review the discriminatory linguistic policy, including the work of the Language Inspectorates whose targets are mainly teachers of Russian language schools and kindergartens", - "values": [ - "Minorities", - "Racial discrimination" - ] - }, - { - "text": "Work alongside parliament to ensure that the report of the Truth, Justice and Reconciliation Commission and its recommendations are implemented, in particular on access to justice for victims of post-election violence", - "values": [ - "Elections", - "Justice" - ] - }, - { - "text": "Take further requisite measures to ensure full independence of the judiciary, which will have a meaningful contribution to their democracy and instil confidence in the people of Kyrgyzstan", - "values": [ - "Justice" - ] - }, - { - "text": "Continue considering concrete measures to ensure the protection of the human rights of girls and boys through the amendment of the Law on Education ", - "values": [ - "Right to education", - "Rights of the Child" - ] - }, - { - "text": "Conduct a thorough and objective investigation into the facts of the cruel treatment of demonstrators by police in Tbilisi in November 2007 and May 2009, to hold accountable those responsible and to take all necessary measures to restore the violated rights of the victims, including paying appropriate compensation ", - "values": [ - "Justice" - ] - }, - { - "text": "Continue to strengthen measures adopted to combat the scourge of gender-based violence, improving their effectiveness and increasing the protection of victims ", - "values": [ - "Rights of the Child", - "Women's rights" - ] - }, - { - "text": "Bring the penitentiary system of juveniles in full compliance with the international norms and standards", - "values": [ - "Detention", - "Rights of the Child" - ] - }, - { - "text": "To keep on exerting efforts to protect and promote human rights", - "values": [ - "General" - ] - }, - { - "text": "Establish measures and policies to encourage greater participation of girls in the higher education systems", - "values": [ - "Right to education", - "Rights of the Child", - "Women's rights" - ] - }, - { - "text": "Adopt legislation prohibiting all forms of discrimination of individuals, based on race, colour of the skin, religion, national or ethnic origin, disability, aesthetic aspect, gender, sexual identity or orientation", - "values": [ - "Disabilities", - "Freedom of religion and belief", - "Minorities", - "Racial discrimination", - "Sexual Orientation and Gender Identity", - "Women's rights" - ] - }, - { - "text": "Amend the Constitution to include sex and gender as prohibited grounds of discrimination ", - "values": [ - "Sexual Orientation and Gender Identity", - "Women's rights" - ] - }, - { - "text": "Recommended that a national commission on human rights be established in accordance with the Paris Principles.", - "values": [ - "National Human Rights Institution" - ] - }, - { - "text": "Tackle chronic lack of human and financial means especially those aiming at harmonizing the tasks of such diverse institutions as the National Unit of Protection, the police, the Attorney-General's Office and the courts ", - "values": [ - "Justice" - ] - }, - { - "text": "Establish an effective and inclusive process to follow-up on recommendations emerging from the universal periodic review ", - "values": [ - "UPR process" - ] - }, - { - "text": "Investigate all credible allegations related with the Presidential elections in 2008, particularly in the areas of torture, arbitrary detentions and enforced disappearances ", - "values": [ - "Detention", - "Elections", - "Enforced disappearances", - "Torture and other CID treatment" - ] - }, - { - "text": "Intensify its efforts to significantly reduce the rate of maternal and under-five child mortality and morbidity", - "values": [ - "Right to health", - "Rights of the Child", - "Women's rights" - ] - }, - { - "text": "Implement all Human Rights Council, General Assembly and Security Council resolutions with regard to the OPT and other Arab territories ", - "values": [ - "Other" - ] - }, - { - "text": "Implement all necessary measures aimed to abolish discrimination against children belonging to most vulnerable groups, through a greater and more focused provision of social services, carrying out awareness-raising programmes on their particular needs and a greater access to education", - "values": [ - "Right to education", - "Rights of the Child" - ] - }, - { - "text": "Take steps to complete the establishment of the National Preventive Mechanism in accordance with OP-CAT", - "values": [ - "Detention", - "International instruments", - "Torture and other CID treatment" - ] - }, - { - "text": "Continue to promote economic and social development, vigorously promote employment and raise people\u2019s standards of living", - "values": [ - "Development", - "Labour" - ] - }, - { - "text": "Remove obstacles to non-governmental associations seeking registration from the authorities", - "values": [ - "Civil society" - ] - }, - { - "text": "Continue internal institutional processes to strengthen democracy, justice and respect for human rights", - "values": [ - "General" - ] - }, - { - "text": "Take measures to ensure that law enforcement in Mozambique complies with domestic and international human right standards, and ensure prompt, thorough investigations, and prosecution where evidence warrants, of all allegations of human rights violations, including torture", - "values": [ - "International instruments", - "Torture and other CID treatment" - ] - }, - { - "text": "Sign and ratify the Second Optional Protocol to International Covenant on Civil and Political Rights", - "values": [ - "Death penalty", - "International instruments" - ] - }, - { - "text": "Ensure effective practical implementation of the standards guaranteed by the Serbian Constitution in the field of minority rights, including by further harmonizing its legislation, providing adequate financial and administrative support to relevant institutions, preventing any forms of discrimination and prejudice in society and the media, and undertaking measures to achieve a more balanced socio-economic development among the regions in the country", - "values": [ - "Development", - "Minorities", - "Racial discrimination" - ] - }, - { - "text": "Repeal Article 534 of the Lebanese Penal Code, which criminalizes homosexuality, and pass legislation to prohibit discrimination based on sexual orientation or gender identity", - "values": [ - "Sexual Orientation and Gender Identity" - ] - }, - { - "text": "Pursue its efforts for swift implementation of the Law on Foundations, and commit itself to undertake all necessary reforms in order to address the property-rights claims of non-Muslim Foundations", - "values": [ - "Freedom of religion and belief" - ] - }, - { - "text": "Include in its next universal periodic review report information on the measures it has taken to implement article 261 bis of its criminal code, in particular on combating denial, trivialization or attempts to justify genocide or other crimes against humanity", - "values": [ - "Justice", - "UPR process" - ] - }, - { - "text": "Cooperate with the newly appointed special envoy of the Secretary-General for Western Sahara", - "values": [ - "Other" - ] - }, - { - "text": "Continue a constructive dialogue with human rights non-governmental organizations, especially given the current polarization between them and the Government.", - "values": [ - "Civil society" - ] - }, - { - "text": "Accede to the Convention against Torture and Other Cruel, Inhuman or Degrading Treatment or Punishment and the Optional Protocol to the Convention on the Rights of the Child on the involvement of children in armed conflict", - "values": [ - "International humanitarian law", - "International instruments", - "Rights of the Child", - "Torture and other CID treatment" - ] - }, - { - "text": "Increase its efforts to ensure full respect of the rights of persons belonging to minorities and indigenous groups, including education of their children ", - "values": [ - "Indigenous peoples", - "Minorities" - ] - }, - { - "text": "Accede to the Convention relating to the Status of Refugees and its Protocol", - "values": [ - "Asylum-seekers - refugees", - "International instruments" - ] - }, - { - "text": "Adopt a general anti-discrimination law, which includes prohibition of discrimination on the basis of gender identity and sexual orientation, to ensure the protection of the rights of lesbian, gay, bisexual, transgender and intersex persons, repeal the provision of the Military Penal Code, which prohibits and punishes same-sex consensual sexual relations in the army, increase public awareness on the need to respect gender identity and sexual orientation of every individual", - "values": [ - "Human rights education and training", - "Sexual Orientation and Gender Identity" - ] - }, - { - "text": "Take the necessary measures to establish a national procedure for the determination of refugee status", - "values": [ - "Asylum-seekers - refugees" - ] - }, - { - "text": "Improve the documentation process for citizens, which would help actual and effective realization of children's rights in adoption processes", - "values": [ - "Statelessness and the right to nationality" - ] - }, - { - "text": "Adopt measures to reduce gender inequality in the labour market ", - "values": [ - "Women's rights" - ] - }, - { - "text": "Continue its efforts for ratification of ICERD and CAT", - "values": [ - "International instruments", - "Racial discrimination", - "Torture and other CID treatment" - ] - }, - { - "text": "Promote the capacity of social and health services so that they can provide care to children with disabilities ", - "values": [ - "Disabilities", - "Right to health", - "Rights of the Child" - ] - }, - { - "text": "Effectively implement measures aimed at eliminating polygamy and bring the norms in line with the CEDAW in the shortest time possible.", - "values": [ - "International instruments", - "Women's rights" - ] - }, - { - "text": "Endeavour to implement the remaining recommendations of the previous and present UPR review", - "values": [ - "UPR process" - ] - }, - { - "text": "Strengthen its system of protection of migrant workers and members of their families", - "values": [ - "Labour", - "Migrants" - ] - }, - { - "text": "Ensure that the new criminal procedure code respects the human rights of those held in custody, and that the statements informing migrants of the justification for their deportation is in one of the languages that the deportee understands ", - "values": [ - "Migrants" - ] - }, - { - "text": "Maintain its cooperation with the various international mechanisms for the promotion and protection of human rights, including this Council and the oversight bodies for those treaties to which Belarus is a party, as well as periodically comply with the submission of its reports to those bodies ", - "values": [ - "Special procedures", - "Treaty bodies" - ] - }, - { - "text": "Enact further measures in order to address gender based-violence and achieve gender equality, including by increasing participation of women in decision-making", - "values": [ - "Women's rights" - ] - }, - { - "text": "Strengthen key human rights institutions with a sharp focus on the protection of women and children", - "values": [ - "Rights of the Child", - "Women's rights" - ] - }, - { - "text": "Continue its efforts to combat trafficking in human beings, and pay special attention to its victims", - "values": [ - "Trafficking" - ] - }, - { - "text": "Share its experiences, inter alia, regarding the African Peer Review Mechanism and the National Reconciliation Commission. ", - "values": [ - "Justice" - ] - }, - { - "text": "Intensify efforts to promote fair access to land ownership and good governance, and continue reforms undertaken with the assistance of the international community, in particular the High Commissioner for Human Rights, to reinforce institutional capacities and achieve the enjoyment of full human rights by the population ", - "values": [ - "Justice", - "Right to land", - "Technical assistance and cooperation" - ] - }, - { - "text": "Ratify the International Convention for the Protection of All Persons from Enforced Disappearance, which Monaco signed in 2007", - "values": [ - "Enforced disappearances", - "International instruments" - ] - }, - { - "text": "Strengthen strategies to guarantee the protection of the rights of migrants and refugees in order to ensure their access to justice, education and health, regardless of their status", - "values": [ - "Asylum-seekers - refugees", - "Justice", - "Migrants", - "Right to education", - "Right to health" - ] - }, - { - "text": "The Government of Canada commits to tabling the outcome of its Universal Periodic Review in Parliament.", - "values": [ - "UPR process" - ] - }, - { - "text": "Strengthen the efforts to eradicate female genital mutilation, including by legal prohibition of such practice and awareness-raising and education of all, especially women and girls", - "values": [ - "Rights of the Child", - "Torture and other CID treatment", - "Women's rights" - ] - }, - { - "text": "Maintain an interfaith harmony, in particular the very useful initiative to hold conferences such as those held in 2003, 2006 and 2009, which brought together senior representatives of world and traditional religions", - "values": [ - "Freedom of religion and belief" - ] - }, - { - "text": "Adopt legislative provisions for the punishment and prevention of the trafficking in persons and eradicate its causes, in conformity with international standards ", - "values": [ - "Trafficking" - ] - }, - { - "text": "Consider stepping up efforts towards reform in juvenile justice ", - "values": [ - "Justice", - "Rights of the Child" - ] - }, - { - "text": "Continue implementing strategies and plans for the socio-economic development of the country", - "values": [ - "Development" - ] - }, - { - "text": "Take concrete steps to comply fully with the minimum standards of the Kimberly Process, including by increasing accountability and transparency in the use of profits from natural resources, and investigating any credible allegation of human rights abuses, particularly in the Marange region", - "values": [ - "Other" - ] - }, - { - "text": "Standardise the criminalization of trafficking in persons at federal and state levels", - "values": [ - "Trafficking" - ] - }, - { - "text": "Continue to adopt measures with a view to abolishing the death penalty, in particular to ratify the second Optional Protocol to the International Covenant on Civil and Political Rights", - "values": [ - "Death penalty", - "International instruments" - ] - }, - { - "text": "Take steps to incorporate the crime of torture as defined by article 1 of the Convention against Torture into domestic law", - "values": [ - "International instruments", - "Torture and other CID treatment" - ] - }, - { - "text": "Adopt a national action plan to combat slavery and human trafficking ", - "values": [ - "Trafficking" - ] - }, - { - "text": "Work towards the complete elimination of torture and extrajudicial killings, and intensify efforts to carry out the prosecution of such crimes", - "values": [ - "Extrajudicial executions", - "Torture and other CID treatment" - ] - }, - { - "text": "Ratify all the human rights conventions to which it is not yet a party", - "values": [ - "International instruments" - ] - }, - { - "text": "Seek the assistance of the international community in particular that of the Office of the United Nations High Commissioner for Human Rights (OHCHR) in order to implement the accepted recommendations by the country", - "values": [ - "Technical assistance and cooperation", - "UPR process" - ] - }, - { - "text": "Guarantee continuing awareness-raising on the Sustainable Development Goals, to make them part of the general culture", - "values": [ - "Development" - ] - }, - { - "text": "Adopt an integrated gender mainstreaming strategy, including through the use of gender-budgeting processes, also taking into consideration Sustainable Development Goal 5 of the 2030 Agenda for Sustainable Development", - "values": [ - "Women's rights" - ] - }, - { - "text": "Prohibit under the law the sale of weapons to the countries where children have been or are used in military actions", - "values": [ - "International humanitarian law", - "Rights of the Child", - "Trafficking" - ] - }, - { - "text": "Enact laws to criminalize contemplation of prophets and religions through all kinds of media (visual, audio and printed), and enact laws to determine the penalty for rape in law and follow-up application ", - "values": [ - "Freedom of religion and belief" - ] - }, - { - "text": "Adopt concrete measures to guarantee that human rights defenders are able to realize their work with no obstacles and that their freedoms of expression, association and assembly are ensured, as recommended previously", - "values": [ - "Freedom of association and peaceful assembly", - "Freedom of opinion and expression", - "Human rights defenders", - "UPR process" - ] - }, - { - "text": "Continue its efforts with regard to the trafficking in human beings, through the elaboration of the third national action plan for 2010-2012, and take further steps to improve assistance to the victims of trafficking ", - "values": [ - "Trafficking" - ] - }, - { - "text": "Improve access to education for disadvantaged people ", - "values": [ - "Right to education" - ] - }, - { - "text": "Pass legislation to increase the time limit for paid maternity leave", - "values": [ - "Labour", - "Women's rights" - ] - }, - { - "text": "Prioritize the need to become party to the International Convention on the Protection of the Rights of All Migrant Workers and Members of Their Families", - "values": [ - "International instruments", - "Labour", - "Migrants" - ] - }, - { - "text": "Repeal all national legal provisions that are incompatible with international norms, such as the legislation that encourages detention on the basis of mere suspicion of having broken the law", - "values": [ - "Justice" - ] - }, - { - "text": "Accede to the Convention on the non-applicability of statutory limitations to war crimes and crimes against humanity", - "values": [ - "International instruments", - "Justice" - ] - }, - { - "text": "Continue encouraging the right to peaceful assembly in accordance with national legislation", - "values": [ - "Freedom of association and peaceful assembly" - ] - }, - { - "text": "Continue its efforts in effectively implementing the amendment to the Anti-Discrimination Act with a view to further combating discrimination in the country ", - "values": [ - "Other" - ] - }, - { - "text": "Prioritise the completion of a comprehensive asylum and refugee law that makes provision, inter alia, for the strengthening of the capacity of the National Refugee Assistance Committee to ensure it operates effectively in handling its mandate", - "values": [ - "Asylum-seekers - refugees" - ] - }, - { - "text": "Consider the ratification of the Second Optional Protocol to the International Covenant on Civil and Political Rights and impose a moratorium on executions with a view to abolish the death penalty", - "values": [ - "Death penalty", - "International instruments" - ] - }, - { - "text": "Update the Plan against Domestic and Sexual Violence, that despite expiring in 2011, has not been renewed", - "values": [ - "Rights of the Child", - "Women's rights" - ] - }, - { - "text": "Consider ratifying the Optional Protocol to the Convention on the Rights of the Child on a communications procedure to protect the child's rights ", - "values": [ - "International instruments", - "Rights of the Child" - ] - }, - { - "text": "Continue increasing quality of children education, especially in rural areas ", - "values": [ - "Right to education", - "Rights of the Child" - ] - }, - { - "text": "Strengthen measures to combat discrimination against women and ensure that additional special measures are taken to effectively empower women, in particular, women of African descent ", - "values": [ - "Minorities", - "Women's rights" - ] - }, - { - "text": "Continue to take measures to promote equality between men and women at all levels of society and government", - "values": [ - "Women's rights" - ] - }, - { - "text": "Ensure that the right of human rights defenders to conduct their work without hindrance, intimidation or harassment is respected and protected, as recommended in the previous cycle and accepted by Cambodia ", - "values": [ - "Human rights defenders", - "UPR process" - ] - }, - { - "text": "Commit to its obligations as an occupying power in the conservation of natural resources and the environment in the occupied Arab territories ", - "values": [ - "Environment" - ] - }, - { - "text": "Continue to undertake comprehensive training programmes for local officials, monitor progress on implementation of legislation.", - "values": [ - "Human rights education and training" - ] - }, - { - "text": "Continue to respect, protect, promote and fulfil all the rights and fundamental freedoms as stipulated in the bill of rights", - "values": [ - "General" - ] - }, - { - "text": "Make the necessary legal amendments in order to eliminate standards that criminalize and stigmatize lesbian, bisexual, gay, transgender and intersex persons", - "values": [ - "Sexual Orientation and Gender Identity" - ] - }, - { - "text": "Continue to take tangible measures to guarantee equal treatment of Roma and other minorities to promote the right to work and to better integrate them into the society ", - "values": [ - "Minorities" - ] - }, - { - "text": "Explore ways and means of strengthening the ongoing efforts to combat all forms of discrimination to improve the scope of protection against discrimination at all levels in society", - "values": [ - "Other" - ] - }, - { - "text": "Review the death penalty with the intention of introducing a moratorium and abolishing it. ", - "values": [ - "Death penalty" - ] - }, - { - "text": "Not apply the Anti-Terrorism Act to acts related to the non-violent claims of indigenous peoples.", - "values": [ - "Counter-terrorism", - "Indigenous peoples" - ] - }, - { - "text": "Ratify, as soon as possible, the International Covenant on Economic, Social and Cultural Rights ", - "values": [ - "ESC rights - general", - "International instruments" - ] - }, - { - "text": "Promote school enrolment of girls and literacy of women", - "values": [ - "Right to education", - "Rights of the Child", - "Women's rights" - ] - }, - { - "text": "Develop judicial assistance and protection mechanisms for victims of domestic violence.", - "values": [ - "Rights of the Child", - "Women's rights" - ] - }, - { - "text": "With the support of the international community, pursue its efforts to reduce crime and combat smuggling and trafficking of children and strengthen this with awareness-raising actions and training on the rights of the child ", - "values": [ - "Human rights education and training", - "Rights of the Child", - "Technical assistance and cooperation", - "Trafficking" - ] - }, - { - "text": "Adopt alternative measures to detention aimed at reducing the overpopulation in prisons and provide alternative measures to detention for pregnant women and mothers with young children", - "values": [ - "Detention", - "Rights of the Child", - "Women's rights" - ] - }, - { - "text": "Adopt measures to reduce violence against women", - "values": [ - "Women's rights" - ] - }, - { - "text": "Continue with the legal or administrative measures they deem appropriate to ensure equality between men and women in all aspects.", - "values": [ - "Women's rights" - ] - }, - { - "text": "Establish an information and prevention strategy to combat the discrimination against and persecution of the albino population in the country, as well as protection for these persons, in particular for albino children", - "values": [ - "Minorities", - "Rights of the Child" - ] - }, - { - "text": "Strengthen its efforts to combat discrimination and violence against women and girls to allow them to enjoy their rights under conditions of equality", - "values": [ - "Rights of the Child", - "Women's rights" - ] - }, - { - "text": "Amend the law on inheritance in the Family Code in order to respect gender equality, as stipulated in article 19 of the Constitution of Morocco", - "values": [ - "Women's rights" - ] - }, - { - "text": "Sign and ratify the Optional Protocol to the International Covenant on Economic, Social and Cultural Rights, the Optional Protocol to the Convention on the Elimination of All Forms of Discrimination against Women, the Optional Protocol to the Convention against Torture and Other Cruel, Inhuman or Degrading Treatment or Punishment, and the International Convention for the Protection of All Persons from Enforced Disappearance ", - "values": [ - "Detention", - "ESC rights - general", - "Enforced disappearances", - "International instruments", - "Torture and other CID treatment", - "Women's rights" - ] - }, - { - "text": "Ensure a safe working environment for journalists and take proactive measures to address the issue of impunity, such as swift and independent investigations ", - "values": [ - "Freedom of the press", - "Impunity" - ] - }, - { - "text": "Enact laws to implement the constitutional prohibition on FGM", - "values": [ - "Rights of the Child", - "Torture and other CID treatment", - "Women's rights" - ] - }, - { - "text": "Amend the Marriage Act to allow same-sex partners to marry and to recognize same-sex marriages from overseas ", - "values": [ - "Sexual Orientation and Gender Identity" - ] - }, - { - "text": "Speed up the law reforms and public administration programmes aimed at deepening and broadening democratic norms, principles and standards.", - "values": [ - "General" - ] - }, - { - "text": "Continue with its measures to protect children and improve their access to education", - "values": [ - "Right to education", - "Rights of the Child" - ] - }, - { - "text": "Persist in its reforms as set out in the Road Map for Democracy and Sustainable Socio-Economic Development, and to request aid and assistance from the international community for that purpose", - "values": [ - "Development", - "Technical assistance and cooperation" - ] - }, - { - "text": "Continue its efforts to provide more freedom of action to civil society organizations and human rights activists so that they may continue to promote and protect human rights", - "values": [ - "Civil society", - "Human rights defenders" - ] - }, - { - "text": "Maintain its outstanding efforts in providing health and educational services free to all its citizens", - "values": [ - "Right to education", - "Right to health" - ] - }, - { - "text": "Carry out necessary measures, including legislative amendments, to ensure that all persons born in Serbia have access to birth registration regardless of the status of their parents ", - "values": [ - "Rights of the Child", - "Statelessness and the right to nationality" - ] - }, - { - "text": "Ensure that new human rights units are part of an integral plan for the justice and security sector.", - "values": [ - "Justice" - ] - }, - { - "text": "Increase the amount of spending on health with special attention to women and children so as to achieve relevant Millennium Development Goals as soon as possible", - "values": [ - "Development", - "Right to health" - ] - }, - { - "text": "Further strengthen efforts to increase the participation of women in decision-making posts, in particular at the local level ", - "values": [ - "Women's rights" - ] - }, - { - "text": "Ratify remaining core human rights instruments", - "values": [ - "International instruments" - ] - }, - { - "text": "Continue improving the situation of children in its multiple dimensions and taking into account the recommendations of the Advisory Group of Experts on solutions to child poverty ", - "values": [ - "Poverty", - "Rights of the Child" - ] - }, - { - "text": "Continue to make efforts to combat extreme poverty", - "values": [ - "Poverty" - ] - }, - { - "text": "Take measures to put an end to any recruitment or use of children in armed forces and groups within the police forces", - "values": [ - "International humanitarian law", - "Rights of the Child" - ] - }, - { - "text": "Review the definition of torture in Egyptian law in order to ensure consistency with the Convention against Torture.", - "values": [ - "International instruments", - "Torture and other CID treatment" - ] - }, - { - "text": "Introduce an effective plan focusing on the human rights of persons deprived of their liberty, especially children living in prison with their parents, who were deprived of liberty", - "values": [ - "Detention", - "Rights of the Child" - ] - }, - { - "text": "Strengthen its legislation, in particular the Penal Code, in order to harmonize its provisions with the International Convention on the Elimination of All Forms of Racial Discrimination", - "values": [ - "International instruments", - "Racial discrimination" - ] - }, - { - "text": "Make progress towards the abolition of the crime of apostasy and the elimination of other laws and practices contrary to freedom of religion and/or belief", - "values": [ - "Freedom of religion and belief" - ] - }, - { - "text": "Develop and adopt a comprehensive policy to combat child labour", - "values": [ - "Labour", - "Rights of the Child" - ] - }, - { - "text": "Redouble its efforts in ensuring greater access to maternal and child health care services for women and children including by providing necessary health infrastructure in rural and urban areas", - "values": [ - "Right to health", - "Rights of the Child", - "Women's rights" - ] - }, - { - "text": "Respect and protect the human rights of internally displaced persons", - "values": [ - "Internally displaced persons" - ] - }, - { - "text": "Take further measures to reduce the number of stateless in the country and sign and ratify the Convention on the Reduction of Statelessness and the Convention relating to the Status of Stateless Persons ", - "values": [ - "International instruments", - "Statelessness and the right to nationality" - ] - }, - { - "text": "Provide and ensure unfettered access to the country for the Commission of Inquiry", - "values": [ - "Technical assistance and cooperation" - ] - }, - { - "text": "Reinforce implementation of the relevant legal and policy framework with a view to combating efficiently trafficking in women, providing victims with all necessary assistance including legal redress, rehabilitation and social integration ", - "values": [ - "Trafficking", - "Women's rights" - ] - }, - { - "text": "Address the electoral shortcomings raised by numerous actors, including the Special Rapporteur on Cambodia and the European Union technical assistance mission ", - "values": [ - "Elections", - "Special procedures" - ] - }, - { - "text": "Take the necessary measures to guarantee the exercise of the right to family reunification of unaccompanied children recognized as refugees or resettled", - "values": [ - "Asylum-seekers - refugees", - "Rights of the Child" - ] - }, - { - "text": "Abolish all protection and impunity for perpetrators of honour killings", - "values": [ - "Impunity", - "Rights of the Child", - "Women's rights" - ] - }, - { - "text": "Continue to address all forms of political, economic and social discrimination against the Maori by meeting their various demands for constitutional and legal reforms and recognition.", - "values": [ - "Indigenous peoples" - ] - }, - { - "text": "Fully incorporate its international human-rights obligations into domestic law by introducing a comprehensive judicially enforceable federal Human Rights Act", - "values": [ - "General" - ] - }, - { - "text": "Take additional measures for the access for migrants in an irregular situation to health-care services", - "values": [ - "Migrants", - "Right to health" - ] - }, - { - "text": "Continue its constructive dialogue on human rights issues with its national and international partners ", - "values": [ - "Other" - ] - }, - { - "text": "Implement the laws on slavery and ensure that all crimes of slavery are subject to prosecution", - "values": [ - "Other" - ] - }, - { - "text": "Continue the reform of the judicial system in line with Mongolia's international commitments", - "values": [ - "International instruments", - "Justice" - ] - }, - { - "text": "Share best practices with interested developing countries.", - "values": [ - "General" - ] - }, - { - "text": "Take necessary measures to develop internal governance procedures in order that the Independent National Commission on Human Rights could perform its mandated role, in particular by ensuring adequate funding for the Commission", - "values": [ - "National Human Rights Institution" - ] - }, - { - "text": "Pass the "Combating and Prevention of Trafficking in Persons Bill" currently under deliberation in the National Assembly, and move swiftly to implement it once passed ", - "values": [ - "Trafficking" - ] - }, - { - "text": "Ratify the Hague Convention on the Civil Aspects of International Child Abduction", - "values": [ - "International instruments", - "Rights of the Child" - ] - }, - { - "text": "Enact the education bill, further enhance and develop the education system and intensify efforts to improve access to education for students from low-income families", - "values": [ - "Right to education" - ] - }, - { - "text": "Continue to address the problem associated with racial discrimination and policy disparities against indigenous persons", - "values": [ - "Indigenous peoples", - "Racial discrimination" - ] - }, - { - "text": "Ensure an equitable and impartial approach to the administration of justice so that all perpetrators responsible for violent crimes are held to account, irrespective of their political, tribal or religious background", - "values": [ - "Justice" - ] - }, - { - "text": "Continue to exert its utmost efforts to ratify ILO core Conventions, including the recent ILO C. No 189 on Decent work for domestic workers", - "values": [ - "International instruments", - "Labour" - ] - }, - { - "text": "Increase the efficacy of police actions to combat domestic violence, in particular through awareness campaigns ", - "values": [ - "Human rights education and training", - "Rights of the Child", - "Women's rights" - ] - }, - { - "text": "Continue efforts in collecting taxes", - "values": [ - "Other" - ] - }, - { - "text": "Decriminalize defamation", - "values": [ - "Freedom of opinion and expression" - ] - }, - { - "text": "Ensure that indigenous peoples are consulted when considering the viability of remote communities, and that those affected by closures of communities receive transitional support and unimpeded access to ancestral lands", - "values": [ - "Indigenous peoples", - "Right to land" - ] - }, - { - "text": "Adopt additional measures for the protection of the family institution and stop propaganda on relations between same-sex couples at the state level. Bring up the issue of adoption of children by same-sex couples to the public consideration ", - "values": [ - "Rights of the Child", - "Sexual Orientation and Gender Identity" - ] - }, - { - "text": "Intensify its efforts to enhance the protection of the rights of vulnerable groups and persons with disabilities, particularly women and children and speed up the accession to the Optional Protocol to the ICESCR", - "values": [ - "Disabilities", - "ESC rights - general", - "International instruments", - "Rights of the Child", - "Women's rights" - ] - }, - { - "text": "Continue the cooperation with the international community to improve democracy and social development in accordance with human rights principles", - "values": [ - "Technical assistance and cooperation" - ] - }, - { - "text": "Accelerate the process to accede to the 1951 Convention Relating to the Status of Refugees and its 1967 Protocol, and enact legislation to protect asylum-seekers and refugees regardless of country of origin", - "values": [ - "Asylum-seekers - refugees", - "International instruments" - ] - }, - { - "text": "Take further efforts in combating violence against women such as enhancing the trust in the judicial system, measures to prevent violence, and promoting services and networks for women in rural areas", - "values": [ - "Women's rights" - ] - }, - { - "text": "Redouble efforts to combat all forms of violence against women and adopt policies on education and awareness-raising in this area ", - "values": [ - "Human rights education and training", - "Women's rights" - ] - }, - { - "text": "Take effective measures to prevent acts of torture and ensure that allegations of torture are promptly and impartially investigated and prosecuted ", - "values": [ - "Torture and other CID treatment" - ] - }, - { - "text": "Enhance measures aimed at combating violence against women ", - "values": [ - "Women's rights" - ] - }, - { - "text": "Take measures to ensure freedom of expression", - "values": [ - "Freedom of opinion and expression" - ] - }, - { - "text": "The Government is committed to ensuring the progressive implementation of the principle that at least five percent of the members of the public in elective and appointive bodies are persons with disabilities as is provided for under Article 54(2) of the Constitution. Article 100 of the Constitution provides for the enactment of legislation to promote the representation in Parliament for marginalized groups which includes persons with disabilities, by 2015.", - "values": [ - "Disabilities", - "Elections" - ] - }, - { - "text": "Continue to seek assistance from the international community to attain its objectives of full implementation of human rights", - "values": [ - "Technical assistance and cooperation" - ] - }, - { - "text": "Strengthen mechanisms and policies to fight trafficking in persons within the context of the national strategy and reinforce measures to address the needs of victims of this crime, including return, security, assistance and counselling. Also continue to carry out diplomatic efforts and technical cooperation initiatives with the aim of establishing or strengthening bilateral and regional mechanisms that address this transnational problem. ", - "values": [ - "Trafficking" - ] - }, - { - "text": "Consider the ratification of CRPD, and OP-CRC-SC", - "values": [ - "Disabilities", - "International instruments", - "Rights of the Child", - "Trafficking" - ] - }, - { - "text": "Proceed quickly towards the ratification without reservations of the ICESCR", - "values": [ - "ESC rights - general", - "International instruments" - ] - }, - { - "text": "Fully implement the rights of convicts serving long-term imprisonment to communicate with their lawyers and their relatives, and to have access to health care ", - "values": [ - "Detention" - ] - }, - { - "text": "Consider acceding to the International Covenant on Economic, Social and Cultural Rights", - "values": [ - "ESC rights - general", - "International instruments" - ] - }, - { - "text": "Continue Governments' efforts to combat poverty", - "values": [ - "Poverty" - ] - }, - { - "text": "Implement the national strategy to prevent domestic violence and provide training for relevant officials on domestic violence ", - "values": [ - "Human rights education and training", - "Rights of the Child", - "Women's rights" - ] - }, - { - "text": "Put in place a specialized body specifically responsible for gender issues ", - "values": [ - "Women's rights" - ] - }, - { - "text": "Continue, in close coordination with United Nations bodies, to address the needs of IDPs, including those living in host communities ", - "values": [ - "Internally displaced persons" - ] - }, - { - "text": "Continue looking into the promotion of the status of women with a view to ensure that violence and all sorts of discrimination against women are effectively eliminated and in line with international standards", - "values": [ - "Women's rights" - ] - }, - { - "text": "Apply, without exception, the time limit for detention of persons suspected of terrorism stipulated in the Protection of Freedoms Bill, including cases of administrative detention in emergency situations ", - "values": [ - "Counter-terrorism", - "Detention" - ] - }, - { - "text": "Consider, with targeted international support, the extension of free education up to the secondary level.", - "values": [ - "Right to education" - ] - }, - { - "text": "Continue the national plans and strategies to reduce poverty and food insecurity in the country", - "values": [ - "Poverty", - "Right to food" - ] - }, - { - "text": "Strengthen its protection for vulnerable groups, particularly women, children, persons with disabilities, the elderly and ethnic minorities, and adopt corresponding national legislation on the protection of those vulnerable groups", - "values": [ - "Disabilities", - "Minorities", - "Rights of the Child", - "Women's rights" - ] - }, - { - "text": "Consider specifically with regard to the prevention of physical abuse of children the implementation of the recommendations of the Committee on the Rights of the Child.", - "values": [ - "Rights of the Child", - "Treaty bodies" - ] - }, - { - "text": "Request assistance from the Office of the High Commissioner for Human Rights to strengthen access to justice services, as well as for the training of judicial personnel ", - "values": [ - "Justice", - "Technical assistance and cooperation" - ] - }, - { - "text": "Establish promptly a national human rights institution in conformity with the Paris Principles ", - "values": [ - "National Human Rights Institution" - ] - }, - { - "text": "Continue its efforts to promote and protect the full enjoyment of the right to education for all", - "values": [ - "Right to education" - ] - }, - { - "text": "Remove reservations and interpretative statements to the International Covenant on Civil and Political Rights.", - "values": [ - "CP rights - general", - "International instruments" - ] - }, - { - "text": "Prevent and combat all forms of discrimination", - "values": [ - "Other" - ] - }, - { - "text": "Reconsider the ratification of OP-CAT ", - "values": [ - "Detention", - "International instruments", - "Torture and other CID treatment" - ] - }, - { - "text": "Take necessary steps to implement the National Human Rights Roadmap and its Action Plan and call on the international partners to support Somalia in their implementation", - "values": [ - "Technical assistance and cooperation" - ] - }, - { - "text": "Strengthen the national legal framework that enables the recently created ombudsman on children to carry out its mandate efficiently and effectively", - "values": [ - "National Human Rights Institution", - "Rights of the Child" - ] - }, - { - "text": "Prioritize the early establishment of a national human rights institution in line with the Paris Principles ", - "values": [ - "National Human Rights Institution" - ] - }, - { - "text": "As a follow-up to the recommendations from the second cycle contained in A/HRC/21/3, paras. 129.98, 129.102, 129.111, 129.116, 129.117 and 130.9, increase investments in public education with a view to increasing the salaries of teachers and introducing professional and technical training programmes", - "values": [ - "Right to education", - "UPR process" - ] - }, - { - "text": "In line with a previous recommendation made by the Committee on Economic, Social and Cultural Rights, adopt effective measures to combat the culture of violence and impunity and to better protect human rights defenders, including indigenous leaders and peasant activists", - "values": [ - "Human rights defenders", - "Impunity", - "Indigenous peoples", - "Treaty bodies" - ] - }, - { - "text": "Undertake a comprehensive set of measures to combat racism and racial discrimination ", - "values": [ - "Racial discrimination" - ] - }, - { - "text": "Seek the support and technical assistance of OHCHR to ensure effective compliance by the Fiji Human Rights Commission with the Paris Principles", - "values": [ - "National Human Rights Institution", - "Technical assistance and cooperation" - ] - }, - { - "text": "Take, as soon as possible, the necessary legislative and political measures to end early and forced marriages", - "values": [ - "Rights of the Child", - "Women's rights" - ] - }, - { - "text": "Put in place measures aimed at integrating minorities, reducing their vulnerability to exploitation and discrimination and guaranteeing their access to work in accordance with their educational qualifications and professional experience ", - "values": [ - "Labour", - "Minorities" - ] - }, - { - "text": "Take all necessary measures in order to promote the rights of women and effectively combat domestic violence, and ensure the effective implementation of existing instruments", - "values": [ - "International instruments", - "Rights of the Child", - "Women's rights" - ] - }, - { - "text": "Involve civil society more actively in developing national human rights policies, strategies and action plans", - "values": [ - "Civil society" - ] - }, - { - "text": "Review its practices concerning the removal of children from the family environment and seek alternative solutions, as stipulated by the Committee on the Rights of the Child and the Committee on Economic, Social, and Cultural Rights, and ensure that all children in foster care have a legal guardian, as well as establishing a unified national guardian system for unaccompanied asylum seeking and refugee children, as recommended by the Committee on the Rights of the Child and UNHCR ", - "values": [ - "Rights of the Child", - "Treaty bodies" - ] - }, - { - "text": "Promote community awareness and enact laws to curb violence against people with disabilities and special needs ", - "values": [ - "Disabilities" - ] - }, - { - "text": "Incorporate all of the substantive provisions of the Convention on the Elimination of All Forms of Racial Discrimination into domestic law, with a view to ensuring comprehensive protection against racial discrimination", - "values": [ - "International instruments", - "Racial discrimination" - ] - }, - { - "text": "Increase the number of women in law enforcement agencies, including the police department", - "values": [ - "Women's rights" - ] - }, - { - "text": "Accelerate efforts to improve access to adequate, clean and safe drinking water as well as providing sewage services for the population ", - "values": [ - "Right to water and sanitation" - ] - }, - { - "text": "Guarantee a safe and enabling environment for journalists and human rights defenders and ensure that all cases of attacks against them are investigated by independent and impartial bodies", - "values": [ - "Freedom of the press", - "Human rights defenders" - ] - }, - { - "text": "Finalize and implement the first response protocol for urgent intervention, so that the problem of violence against women and girls is dealt with effectively and that ministries concerned are provided with the budget necessary to apply the Domestic Violence Prevention and Protection Act", - "values": [ - "Rights of the Child", - "Women's rights" - ] - }, - { - "text": "Adopt legislation to prohibit FGM and, at the same time, promote an open dialogue on this issue ", - "values": [ - "Rights of the Child", - "Torture and other CID treatment", - "Women's rights" - ] - }, - { - "text": "Fully guarantee freedom of expression and the press, in particular by conducting credible and effective investigations into allegations of detentions, harassment and abuses against journalists in Somalia", - "values": [ - "Detention", - "Freedom of opinion and expression", - "Freedom of the press" - ] - }, - { - "text": "Implement fully its Gender Equity and Women's Development Policy and the National Policy on Eliminating Violence against Women, and convene a first meeting of the oversight mechanism - the National Steering Committee - at the earliest opportunity ", - "values": [ - "Women's rights" - ] - }, - { - "text": "Enact legislation to enshrine the 1996 Supreme Court ruling in legislation and explicitly prohibit all corporal punishment of children in the home", - "values": [ - "Rights of the Child", - "Torture and other CID treatment" - ] - }, - { - "text": "Continue its efforts to promote and protect human rights within the country", - "values": [ - "General" - ] - }, - { - "text": "Study the possibility of being party to the following international instruments: ICESCR and CED ", - "values": [ - "ESC rights - general", - "Enforced disappearances", - "International instruments" - ] - }, - { - "text": "Continue to protect the natural family and marriage, formed by a husband and a wife, as the fundamental unity of society, as well as the unborn", - "values": [ - "Other" - ] - }, - { - "text": "Redouble its efforts to eliminate discrimination against women, including by establishing the minimum marriage age of 18 for both men and women ", - "values": [ - "Rights of the Child", - "Women's rights" - ] - }, - { - "text": "Consider ratifying the International Convention on the Protection of All Persons from Enforced Disappearance and enact domestic legislation to penalize enforced disappearance as defined in that Convention ", - "values": [ - "Enforced disappearances", - "International instruments" - ] - }, - { - "text": "Take further measures in the fight against domestic violence, human trafficking and poverty, especially concerning women and children ", - "values": [ - "Poverty", - "Rights of the Child", - "Trafficking", - "Women's rights" - ] - }, - { - "text": "Reinforce measures aimed at ensuring, during this period of crisis, effective protection of the human rights of migrants, and take additional measures to guarantee access to economic, social and cultural rights for migrants, who are the primary victims of the high level of unemployment in Spain ", - "values": [ - "Migrants" - ] - }, - { - "text": "Establish a moratorium on the use of the death penalty, as a first step towards complete abolition of this practice and as a way of reassuring the Japanese public that adequate law enforcement does not require the state to carry out executions", - "values": [ - "Death penalty" - ] - }, - { - "text": "Ratify the Convention Against Torture and Other Cruel, Inhuman or Degrading Treatment or Punishment (CAT).", - "values": [ - "International instruments", - "Torture and other CID treatment" - ] - }, - { - "text": "Adopt measures to decriminalize defamation", - "values": [ - "Freedom of opinion and expression" - ] - }, - { - "text": "Further involve civil society actors in awareness-raising campaigns with respect to infectious diseases, in particular HIV", - "values": [ - "Civil society", - "HIV - Aids" - ] - }, - { - "text": "Follow up the CEDAW recommendation to Guatemala to ensure that indigenous women have full access to bilingual education, health services and credit facilities and to fully participate in decision making processes.", - "values": [ - "Indigenous peoples", - "Treaty bodies", - "Women's rights" - ] - }, - { - "text": "Ensure that respect for the principal of non-discrimination on the basis of gender includes lesbian, gay, bisexual, transgender and intersex persons and adopt specific anti-discrimination legislation for this group", - "values": [ - "Sexual Orientation and Gender Identity" - ] - }, - { - "text": "Carry out additional prison facility improvements, and invite independent human rights observers to monitor conditions within the prisons ", - "values": [ - "Detention" - ] - }, - { - "text": "Ensure that the requirement to consult with indigenous peoples on decisions concerning lands traditionally owned by them is enshrined in law, and that every effort is made by the Government to ensure that this instrument complies with international standards", - "values": [ - "Indigenous peoples", - "Right to land" - ] - }, - { - "text": "Fully implement legal provisions protecting freedom of speech in accordance with the ICCPR ", - "values": [ - "Freedom of opinion and expression", - "International instruments" - ] - }, - { - "text": "Consider the establishment of the independent national human rights institution", - "values": [ - "National Human Rights Institution" - ] - }, - { - "text": "Adopt necessary legal measures to ensure that the National Human Rights Commission of Sri Lanka is in line with Paris Principles", - "values": [ - "National Human Rights Institution" - ] - }, - { - "text": "Further the implementation of relevant laws and policies as well as training for public officials, to tackle sexual offences and unfair treatment to women", - "values": [ - "Human rights education and training", - "Women's rights" - ] - }, - { - "text": "Ensure non-discrimination on the basis of sexual orientation and gender identity and repeal the provisions of the penal code which criminalise sexual relations between consenting adults of the same sex ", - "values": [ - "Sexual Orientation and Gender Identity" - ] - }, - { - "text": "Ratify the Rome Statute that Yemen signed in 2000 and align legislation with all the obligations related to this text ", - "values": [ - "International instruments", - "Justice" - ] - }, - { - "text": "Continue efforts to promote and protect human rights while preserving the institution of the family in all its components and preserving religious tolerance, prioritize the maintenance of racial and religious harmony through delicate management of relations between the different races and religions and share best practices with other countries regarding the promotion of racial and religious tolerance ", - "values": [ - "Freedom of religion and belief", - "Women's rights" - ] - }, - { - "text": "Pursue the efforts to establish and carry-out national programmes in relation to the right to education and the quality of education at every level through-out the country", - "values": [ - "Right to education" - ] - }, - { - "text": "Continue to promote human rights education, training and capacity building", - "values": [ - "Human rights education and training" - ] - }, - { - "text": "Continue its efforts at the level of legislations and implementation in order to protect women rights and empower their emancipation economically and politically", - "values": [ - "Women's rights" - ] - }, - { - "text": "Promote recovery and conservation of traditional knowledge in order to restore ancestral heritage ", - "values": [ - "Other" - ] - }, - { - "text": "Accelerate the ratification of the Convention on the Rights of Persons with Disabilities ", - "values": [ - "Disabilities", - "International instruments" - ] - }, - { - "text": "Put an end to unlawful practices which violate human rights, including extrajudicial executions and arbitrary detention, and close any arbitrary detention centres", - "values": [ - "Detention", - "Extrajudicial executions" - ] - }, - { - "text": "Establish a permanent coordination structure for different security forces to consistently address various issues such as the training of the military and the provision of weapons to them, and ensure that members of the security forces receive training in humanitarian and human rights law and that they follow a programme for gender awareness at all ranks.", - "values": [ - "Human rights education and training" - ] - }, - { - "text": "Ensure free access and without constraints of the NGOs to the Rohingyas in the Cox's Bazaar district ", - "values": [ - "Civil society", - "Freedom of religion and belief", - "Minorities" - ] - }, - { - "text": "Implement the Uniform Family Code as well as withdraw its reservations against CEDAW ", - "values": [ - "International instruments", - "Women's rights" - ] - }, - { - "text": "Continue, with the assistance of the international community, to implement its plans for economic and social development and further reduce poverty so as to lay a firm foundation for improving peoples' livelihood", - "values": [ - "Development", - "ESC rights - general", - "Poverty", - "Technical assistance and cooperation" - ] - }, - { - "text": "Ratify the International Covenant on Civil and Political Rights without reservations", - "values": [ - "CP rights - general", - "International instruments" - ] - }, - { - "text": "Implement measures to ensure that food agenda against famine caused by drought is distributed fairly, focusing especially on vulnerable people", - "values": [ - "Right to food" - ] - }, - { - "text": "Implement international human rights obligations within Federally Administered Tribal Areas and refrain from detention that contravenes international standards of due process", - "values": [ - "Detention", - "International instruments" - ] - }, - { - "text": "Finalise the National Action Plan on the Rights of the Child and address, as a matter of priority, the issue of unaccompanied children", - "values": [ - "Rights of the Child" - ] - }, - { - "text": "Address legal gaps regarding illegal migration", - "values": [ - "Migrants" - ] - }, - { - "text": "Establish prison conditions that comply with the provisions of the 1999 Prison Law ", - "values": [ - "Detention" - ] - }, - { - "text": "Adopt laws to eliminate child, early and forced marriage", - "values": [ - "Rights of the Child", - "Women's rights" - ] - }, - { - "text": "Adequately implement its legislative framework addressing domestic and sexual violence, ensuring the inclusion of provisions on marital rape, as well as a specific definition of violence against women, as distinct from intra-family, family or domestic violence", - "values": [ - "Rights of the Child", - "Women's rights" - ] - }, - { - "text": "Maintain its high level of cooperation with OHCHR, Treaty Bodies and Special Procedures ", - "values": [ - "Special procedures", - "Technical assistance and cooperation", - "Treaty bodies" - ] - }, - { - "text": "Develop a comprehensive transitional justice strategy that will encompass accountability, reparations, security sector reform and judicial reform ahead of the presidential elections in October 2015", - "values": [ - "Justice" - ] - }, - { - "text": "Raise the age of criminal responsibility to 16 years old", - "values": [ - "Justice", - "Rights of the Child" - ] - }, - { - "text": "Consider the creation of a national system for the monitoring of the follow-up to recommendations relating to human rights", - "values": [ - "Special procedures", - "Treaty bodies", - "UPR process" - ] - }, - { - "text": "Strengthen efforts and take effective measures with the aim of ensuring enjoyment of all rights for indigenous people, including participation in decision-making bodies at all levels ", - "values": [ - "Indigenous peoples" - ] - }, - { - "text": "Continue fighting against human trafficking", - "values": [ - "Trafficking" - ] - }, - { - "text": "Restrict the application of the death penalty to the most serious crimes as a step towards the abolition of the death penalty", - "values": [ - "Death penalty" - ] - }, - { - "text": "Cease all discrimination against members of religious and ethnic minorities, including Baha'is, Dervishes, Christians, Ahwazi Arabs, Balochs and Kurds, and ensure respect for freedom of religion", - "values": [ - "Freedom of religion and belief", - "Minorities", - "Racial discrimination" - ] - }, - { - "text": "Extend the deadline for late registration of births and put in place a simple and free birth registration procedure as well as a national strategy to raise awareness on the importance of birth registration", - "values": [ - "Rights of the Child", - "Statelessness and the right to nationality" - ] - }, - { - "text": "Endorse and begin implementing the National Gender Policy", - "values": [ - "Women's rights" - ] - }, - { - "text": "Protect the social and cultural rights of migrants while taking integration measures and policies aimed at migrants ", - "values": [ - "Migrants" - ] - }, - { - "text": "Take legislative and practical measures to promote and protect the rights of persons belonging to minorities", - "values": [ - "Minorities" - ] - }, - { - "text": "Continue to strengthen economic, political and social development with full participation of the population of all strata ", - "values": [ - "ESC rights - general" - ] - }, - { - "text": "Intensify its efforts to improve access to education for all, including by allocating adequate resources", - "values": [ - "Right to education" - ] - }, - { - "text": "Smarten security checks so as to take into account the frequent homonymy specific to Moslem names so as to avoid involuntary discrimination against innocent people with such names because of namesakes listed as members of terrorist groups ", - "values": [ - "Racial discrimination" - ] - }, - { - "text": "Consider the possibility of acceding to the Optional Protocols to the Convention on the Rights of the Child.", - "values": [ - "International instruments", - "Rights of the Child" - ] - }, - { - "text": "Strengthen human rights protection mechanisms for Indigenous Peoples, with special attention to ensure the human rights of indigenous girls and boys", - "values": [ - "Indigenous peoples", - "Rights of the Child" - ] - }, - { - "text": "Take appropriate measures to address the economic exploitation of children and ensure full respect of their rights in compliance with the international standards set out in the Convention on the Rights of the Child and the ILO fundamental conventions", - "values": [ - "International instruments", - "Rights of the Child" - ] - }, - { - "text": "Sign and ratify the OP-CRC-SC", - "values": [ - "International instruments", - "Rights of the Child", - "Trafficking" - ] - }, - { - "text": "Continue cooperation with Office of the High Commissioner for Human Rights to develop public policies and initiatives to ensure the promotion and protection of human rights", - "values": [ - "Technical assistance and cooperation" - ] - }, - { - "text": "Implement the Abuja Declaration on Roll Back Malaria in Africa with particular emphasis on concluding the enactment of the National Health Insurance Bill to cover vulnerable groups, such as those in the informal sector, low-income households, people with disabilities, the elderly and children", - "values": [ - "Disabilities", - "Poverty", - "Right to health", - "Rights of the Child" - ] - }, - { - "text": "Continue efforts to ensure protection for the victims of human trafficking", - "values": [ - "Trafficking" - ] - }, - { - "text": "Consider the establishment of a children's Ombudsman ", - "values": [ - "National Human Rights Institution", - "Rights of the Child" - ] - }, - { - "text": "Continue to establish a solid legal framework, strengthen national human rights institutions, and ensure the effective administration of justice", - "values": [ - "Justice" - ] - }, - { - "text": "Take all necessary steps to accelerate the enforcement of the law regarding the acceptance and integration of foreigners.", - "values": [ - "Migrants" - ] - }, - { - "text": "Uphold its obligations to end all forms of racial discrimination in the country and protect the rights of African Americans against police brutality", - "values": [ - "Human rights violations by state agents", - "Minorities", - "Racial discrimination" - ] - }, - { - "text": "Take measures, with full and effective participation of indigenous peoples, to address the issues highlighted in the National Enquiry into the Land Rights of Indigenous Peoples", - "values": [ - "Indigenous peoples", - "Right to land" - ] - }, - { - "text": "Adopt the measures necessary to protect and preserve the independence of the Constitutional Court and implementation of its judgments", - "values": [ - "Justice" - ] - }, - { - "text": "Although Switzerland raised the minimum age of criminal responsibility of children from 7 to 10 years of age, it is recommended that it continue with efforts to bring the minimum age of criminal responsibility to an acceptable level according to international standards", - "values": [ - "Justice", - "Rights of the Child" - ] - }, - { - "text": "Continue its efforts to fight poverty and social exclusion", - "values": [ - "Poverty" - ] - }, - { - "text": "Promote the protection of the lesbian, gay, bisexual, transgender and intersex community", - "values": [ - "Sexual Orientation and Gender Identity" - ] - }, - { - "text": "Pursue the implementation of effective measures to protect women and children against domestic violence and ill-treatment in all its forms", - "values": [ - "Rights of the Child", - "Torture and other CID treatment", - "Women's rights" - ] - }, - { - "text": "Take immediate measures in order to comply fully with the Optional Protocol to the Convention on the Rights of the Child on the involvement of children in armed conflict and implement the Action Plan to end the recruitment and use of children, signed with the United Nations in 2011", - "values": [ - "International humanitarian law", - "International instruments", - "Rights of the Child" - ] - }, - { - "text": "Implement effectively the Victims Act, by harmonizing existing legislation. Include the provisions of the act in the new Penal Procedure Code. Ensure that the law is applied at all levels", - "values": [ - "Justice" - ] - }, - { - "text": "Take the measures necessary to ensure that same-sex partners are treated equally with opposite-sex partners throughout Slovenian law", - "values": [ - "Sexual Orientation and Gender Identity" - ] - }, - { - "text": "Sign and ratify the ICPPED and recognize the competence of its Committee", - "values": [ - "Enforced disappearances", - "International instruments", - "Treaty bodies" - ] - }, - { - "text": "Consider a moratorium on the death penalty as a step towards its effective abolition", - "values": [ - "Death penalty" - ] - }, - { - "text": "Continue its efforts to promote the political participation of women at all levels and to increase the representation of women in the judiciary", - "values": [ - "Women's rights" - ] - }, - { - "text": "Consider the achievement of the human rights goals approved by resolution 9-12 of the Human Rights Council", - "values": [ - "General" - ] - }, - { - "text": "Consider acceding to ICCPR, ICESCR and ICC Rome Statute by the next review ", - "values": [ - "CP rights - general", - "ESC rights - general", - "International instruments", - "Justice" - ] - }, - { - "text": "Put in place the necessary arrangements to implement the new Constitution's guarantees of equality between men and women, in accordance with its international obligations, including CEDAW's Article 16 regarding marriage and family life ", - "values": [ - "International instruments", - "Women's rights" - ] - }, - { - "text": "Punish under law violence against women, establishing adequate measures to protect victims", - "values": [ - "Women's rights" - ] - }, - { - "text": "The Dominican Republic further reiterated its commitment to addressing specific issues in which it had recognized difficulties, such as violence against women, the situation of children and child labour. It was also the goal of the Government to address the issue of executions as well.", - "values": [ - "Labour", - "Rights of the Child", - "Women's rights" - ] - }, - { - "text": "Establish a mechanism for the protection and support of victims aimed to enhance assistance to victims and witnesses", - "values": [ - "Justice" - ] - }, - { - "text": "Give priority to ensuring protection of freedom of speech", - "values": [ - "Freedom of opinion and expression" - ] - }, - { - "text": "Continue to carry out the identified constitutional, judicial and police reforms ", - "values": [ - "Justice" - ] - }, - { - "text": "Consider developing Human Rights Indicators, as an important instrument that allows for a more precise and coherent evaluation of national human rights policies", - "values": [ - "General" - ] - }, - { - "text": "Continue adopting measures like the Temporary Plan for Education 2013-2015 guaranteeing education free of charges", - "values": [ - "Right to education" - ] - }, - { - "text": "Address concerns about impunity, through reforms in the criminal justice system, as well as by ensuring the speedy investigation, arrest, prosecution, trial and conviction of perpetrators ", - "values": [ - "Impunity", - "Justice" - ] - }, - { - "text": "Take concrete measures to prevent prison overcrowding and enhance prison education and training in order to reintegrate inmates into society", - "values": [ - "Detention" - ] - }, - { - "text": "Ratify the Convention on the Elimination of All Forms of Discrimination against Women and adopt a law prohibiting genital mutilations ", - "values": [ - "International instruments", - "Rights of the Child", - "Torture and other CID treatment", - "Women's rights" - ] - }, - { - "text": "Continue to invest in policies and programmes aimed at enhancement of youth development and education", - "values": [ - "Right to education" - ] - }, - { - "text": "RMI supports the recommendations and are committed to develop socio-economic strategies and plans. In 2013, the National Strategic Plan (NSP) was developed. It is designed as a framework to coordinate the articulated medium term development goals and objectives of the RMI government at the national level. It covers a three year increment period, starting 2015-2017 and will continually updated in order to meet longer term objectives, especially in regards towards the scheduled completion of The Compact of Free Association, as Amended funding in 2023.", - "values": [ - "ESC rights - general" - ] - }, - { - "text": "Extend an open and standing invitation to all special procedures and sign and ratify the Convention on the Rights of Persons with Disabilities CRPD and the Convention against Torture and Other Cruel, Inhuman or Degrading Treatment or Punishment CAT, and sign and ratify the International\nConvention for the Protection of All Persons from Enforced Disappearance CED and the Optional Protocol to the Convention on the Rights of the Child on the sale of children, child prostitution and child pornography OP-CRC-SC ", - "values": [ - "International instruments" - ] - }, - { - "text": "Continue to expand human rights awareness as being complementary to the Samoan way of life", - "values": [ - "Human rights education and training" - ] - }, - { - "text": "Further strengthen measures against discrimination with regard to women, national minorities, persons of minority sexual orientation or gender identity and persons with disabilities", - "values": [ - "Disabilities", - "Minorities", - "Sexual Orientation and Gender Identity", - "Women's rights" - ] - }, - { - "text": "Include in Icelandic legislation a definition of racial discrimination", - "values": [ - "Racial discrimination" - ] - }, - { - "text": "Continue to strengthen the rule of law and good governance as a means to help enhance human rights promotion and protection within the country", - "values": [ - "Justice" - ] - }, - { - "text": "Improve the situation of women and children by implementing the United Nations Security Council resolution 1325 and related resolutions on women, peace and security", - "values": [ - "Women's rights" - ] - }, - { - "text": "Immediately halt all administrative detention and release all Palestinian detainees and captives in Israeli prisons especially women and children", - "values": [ - "Detention", - "Rights of the Child", - "Women's rights" - ] - }, - { - "text": "Continue to take tangible measures to achieve the Millennium Development Goals ", - "values": [ - "Development" - ] - }, - { - "text": "Continue efforts to ensure that human rights education is effectively included into the primary and secondary education curriculum", - "values": [ - "Human rights education and training" - ] - }, - { - "text": "Ratify CED as soon as possible ", - "values": [ - "Enforced disappearances", - "International instruments" - ] - }, - { - "text": "Increase efforts to ensure the inclusion of children with disabilities in society, with special emphasis on access to education", - "values": [ - "Disabilities", - "Right to education", - "Rights of the Child" - ] - }, - { - "text": "Repeal discriminatory provisions in the Constitution and Citizenship Acts", - "values": [ - "Other" - ] - }, - { - "text": "Continue efforts concerning investigations of past human rights violations, including those related to economic crimes, and the related judicial processes", - "values": [ - "Human rights violations by state agents", - "Justice" - ] - }, - { - "text": "Pursue its policy regarding protection of the rights of nature", - "values": [ - "Environment" - ] - }, - { - "text": "Redouble its efforts to intensify human rights education and training of law enforcement officers, teachers and civil servants ", - "values": [ - "Human rights education and training" - ] - }, - { - "text": "Finalise the draft national policy on migration developed in consultation with the International Organization for Migration", - "values": [ - "Migrants", - "Technical assistance and cooperation" - ] - }, - { - "text": "Cooperate fully with investigations into human rights abuses and violations", - "values": [ - "Justice" - ] - }, - { - "text": "Actively encourage dialogue between various religious groups to enhance interfaith solidarity, and to prevent potential violence and the spread of religious hatred", - "values": [ - "Freedom of religion and belief" - ] - }, - { - "text": "Carry out awareness-raising campaigns on all matters related to gender violence", - "values": [ - "Human rights education and training", - "Women's rights" - ] - }, - { - "text": "Take measures to continue to fight impunity in prisons.", - "values": [ - "Detention", - "Impunity" - ] - }, - { - "text": "Strengthen training for the police on human rights norms and standards, including the procedures to be used during security operations", - "values": [ - "Human rights education and training" - ] - }, - { - "text": "Intensify its efforts to establish an official moratorium on the use of the death penalty with a view to abolishing it, and in the meantime immediately remove all provisions on national laws which are in breach of international human rights law ", - "values": [ - "Death penalty" - ] - }, - { - "text": "Ratify the Council of Europe Convention on Preventing and Combating Violence against Women and Domestic Violence", - "values": [ - "International instruments", - "Women's rights" - ] - }, - { - "text": "Allocate sufficient financial and human resources to national human rights institutions", - "values": [ - "General" - ] - }, - { - "text": "Take necessary steps for prevention of violence against children and promotion and protection of women's rights especially combating trafficking in women", - "values": [ - "Rights of the Child", - "Trafficking", - "Women's rights" - ] - }, - { - "text": "Ratify all core human rights treaties as soon as possible ", - "values": [ - "International instruments" - ] - }, - { - "text": "Continue efforts to eliminate discriminatory practices against women, particularly regarding the granting of nationality ", - "values": [ - "Women's rights" - ] - }, - { - "text": "Implement the United Nations target of allocations at least 0.7 per cent of the gross domestic product to official development assistance, in order to help achieving the Millennium Development Goals by 2015", - "values": [ - "Development" - ] - }, - { - "text": "Exert more effort to promote women's participation in public life through executing the national strategy for Jordanian women 2012-2015", - "values": [ - "Women's rights" - ] - }, - { - "text": "Favourably consider becoming a party to the ICCPR, ICESCR, CAT and CERD", - "values": [ - "CP rights - general", - "ESC rights - general", - "International instruments", - "Racial discrimination", - "Torture and other CID treatment" - ] - }, - { - "text": "Guarantee the independence of the judiciary and ensure the right to a fair trial as outlined by the Basic Principles on the Independence of the Judiciary ", - "values": [ - "Justice" - ] - }, - { - "text": "Cooperate more systematically with the treaty bodies and permit the visits by special procedures", - "values": [ - "Special procedures", - "Treaty bodies" - ] - }, - { - "text": "Introduce the definition of torture reflecting that in article 1 of CAT into its national legislation ", - "values": [ - "International instruments", - "Torture and other CID treatment" - ] - }, - { - "text": "Continue to formulate the next round of the national strategies for poverty reduction and development", - "values": [ - "Development", - "Poverty" - ] - }, - { - "text": "Step up cooperation with the special procedures and consider extending a standing invitation to them ", - "values": [ - "Special procedures" - ] - }, - { - "text": "Postpone the implementation of the Sharia Penal Code Order, 2013, pending a comprehensive review ensuring the Order's compliance with international human rights standards, and put in place a formal moratorium on the use of the death penalty, with a view to its abolition", - "values": [ - "Death penalty", - "International instruments" - ] - }, - { - "text": "Consider measures it deems appropriate to eliminate the discrimination in terms of disparity of salaries between men and women, in line with the provisions of the Convention on the Elimination of All Forms of Discrimination against Women ", - "values": [ - "International instruments", - "Women's rights" - ] - }, - { - "text": "Reinforce its political and judiciary institutions to promote human rights and all other basic rights of the population", - "values": [ - "Justice" - ] - }, - { - "text": "Strengthen its measures to combat violence against children ", - "values": [ - "Rights of the Child" - ] - }, - { - "text": "Ensure the issuance of birth certificates and citizenship documents to the Roma minority", - "values": [ - "Minorities", - "Statelessness and the right to nationality" - ] - }, - { - "text": "Put in place a comprehensive strategy, including legislative measures to eliminate practices and stereotypes that discriminate women, such as female genital mutilation ", - "values": [ - "Rights of the Child", - "Torture and other CID treatment", - "Women's rights" - ] - }, - { - "text": "Provide protection for the family unit as the natural and fundamental unit of society", - "values": [ - "Other" - ] - }, - { - "text": "Take measures to put an end to all human rights violations, including those associated with political prison camps and abduction, as recommended in the COI report and the Human Rights Council resolution adopted as the result of the consideration of that report", - "values": [ - "Detention", - "Enforced disappearances", - "Justice" - ] - }, - { - "text": "Intensify efforts to complete the work on the national plan of action in accordance with the recommendation of OHCHR, with particular attention to efforts to improve the situation regarding sexual violence against women", - "values": [ - "Women's rights" - ] - }, - { - "text": "Ensure that humanitarian agencies can operate in all parts of the country without undue restrictions", - "values": [ - "Other" - ] - }, - { - "text": "Consider putting in place all necessary machineries to resolving and withdrawing from all outstanding reservations on human rights treaties for the full enjoyment of human rights by its people ", - "values": [ - "International instruments" - ] - }, - { - "text": "Work on promoting a society of tolerance through educational measures", - "values": [ - "Human rights education and training" - ] - }, - { - "text": "Establish a national implementation action plan, with the special mandate to keep girls in schools, particularly in rural areas, provide for their specific needs and help them in secondary education", - "values": [ - "Right to education", - "Rights of the Child" - ] - }, - { - "text": "Abolish the death penalty and ratify ICCPR-OP 2", - "values": [ - "Death penalty", - "International instruments" - ] - }, - { - "text": "Strengthen the protection of children, in particular by fighting against early marriage ", - "values": [ - "Rights of the Child" - ] - }, - { - "text": "Develop a constructive partnership with the United Nations and NGOs working on food and medical assistance, and guarantee safe access to the country, including in areas where violent actions against federal authorities take place - this partnership should constitute one of the cornerstones of the new agriculture and land-use policies in Ethiopia ", - "values": [ - "Civil society", - "Right to food", - "Right to health", - "Right to land" - ] - }, - { - "text": "Take steps to ensure that the human rights of all citizens are protected, regardless of their religion, sexual orientation or gender identity", - "values": [ - "Freedom of religion and belief", - "Sexual Orientation and Gender Identity" - ] - }, - { - "text": "Explore way for setting up separated facilities for children deprived of liberty", - "values": [ - "Detention", - "Rights of the Child" - ] - }, - { - "text": "Seek technical cooperation and assistance for capacity building from the international community and relevant United Nations agencies so as to successfully implement the Zimbabwe - United Nations Development Assistance Framework ", - "values": [ - "Development", - "Technical assistance and cooperation" - ] - }, - { - "text": "Pursue its efforts to achieve the highest possible level of social justice and find adequate solutions to the problems of poverty and unemployment ", - "values": [ - "Development", - "Poverty" - ] - }, - { - "text": "Continue efforts on human rights education in order to guarantee enjoyment of all people of their rights", - "values": [ - "Human rights education and training" - ] - }, - { - "text": "Speed up the implementation of the national policy on climate change", - "values": [ - "Environment" - ] - }, - { - "text": "Enact the Marriage, Divorce and Family Relations Bill with a view to ending child, early and forced marriage and other harmful practices, and raise the minimum age of marriage to 18 years", - "values": [ - "Rights of the Child", - "Torture and other CID treatment" - ] - }, - { - "text": "Take steps to address issues raised by both the Special Rapporteur on the independence of judges and lawyers and the Human Rights Committee regarding the independence of the judiciary and the administration of justice", - "values": [ - "Justice", - "Special procedures", - "Treaty bodies" - ] - }, - { - "text": "Ensure federal legislation to prohibit environmental pollution and reduce greenhouse gas emissions to control climate change", - "values": [ - "Environment" - ] - }, - { - "text": "Consider taking on board CEDAW recommendations to criminalise domestic violence. ", - "values": [ - "Treaty bodies", - "Women's rights" - ] - }, - { - "text": "Prepare and adopt a comprehensive policy to assist and prevent children from living in the street", - "values": [ - "Rights of the Child" - ] - }, - { - "text": "Implement the government's National Roma Strategy with appropriate funding to improve education, housing and employment opportunities for Roma citizens ", - "values": [ - "Minorities" - ] - }, - { - "text": "Take continued action to reduce poverty as articulated in the National Growth and Poverty Reduction Strategy Paper of 2007 ", - "values": [ - "Poverty" - ] - }, - { - "text": "Continue measures to enhance female representation in society", - "values": [ - "Women's rights" - ] - }, - { - "text": "Guarantee the right to receive, seek and impart information and ideas in compliance with article 19 of ICCPR", - "values": [ - "Freedom of opinion and expression", - "International instruments" - ] - }, - { - "text": "Increase steps to improve the participation of women in the labour market and in leadership and governance positions in the public and private sectors ", - "values": [ - "Women's rights" - ] - }, - { - "text": "Ensure that women who are victims of discrimination and violence have access to protection of their rights and to justice", - "values": [ - "Women's rights" - ] - }, - { - "text": "Adopt all necessary measures to prevent violence against children as well as child abuse and neglect ", - "values": [ - "Rights of the Child" - ] - }, - { - "text": "Continue the efforts undertaken to protect children from violence, neglect and abuse, including by adopting the children's code, and to ensure that the national strategy for the protection of children 2011-2030 will be effectively implemented", - "values": [ - "Rights of the Child" - ] - }, - { - "text": "Adopt necessary measures to definitively abolish the death penalty", - "values": [ - "Death penalty" - ] - }, - { - "text": "Amend the Bar Council Act in order to allow for the Bar Council to become a truly independent and self-governing association", - "values": [ - "Justice" - ] - }, - { - "text": "Align policies to ensure access to land and water for pastoralists with the African Union Framework on Pastoralism", - "values": [ - "Right to land", - "Right to water and sanitation" - ] - }, - { - "text": "Continue its fruitful cooperation with United Nations human rights mechanisms, including the special procedures ", - "values": [ - "Special procedures", - "Treaty bodies", - "UPR process" - ] - }, - { - "text": "Protect minors and ensure that imprisonment of minors is separated from imprisonment of adults", - "values": [ - "Detention", - "Rights of the Child" - ] - }, - { - "text": "Implement specific standards and regulations ensuring affordable water, sanitation and food for the most vulnerable groups and the barriers and challenges to poverty alleviation are properly addressed", - "values": [ - "Poverty", - "Right to water and sanitation" - ] - }, - { - "text": "Take more effective measures to combat racial discrimination and intolerance, including by collecting and publishing official statistics about incidents on racially motivated crimes and promptly investigating and taking stern action against the perpetrators of hatred, racist and xenophobic acts ", - "values": [ - "Racial discrimination" - ] - }, - { - "text": "Consider raising the Ombudsman as a national institution for human rights accredited with the International Coordinating Committee of National Institutions for the Promotion and Protection of Human Rights", - "values": [ - "National Human Rights Institution" - ] - }, - { - "text": "Provide free primary education, create a safe and protective environment for all children to keep them in the education system, especially those in rural and remote areas", - "values": [ - "Right to education", - "Rights of the Child" - ] - }, - { - "text": "Follow through on the Government's commitment to investigate the killing of activist Hassan Guyo, and thoroughly investigate all extrajudicial killings in Kenya, with a view of ensuring accountability", - "values": [ - "Extrajudicial executions" - ] - }, - { - "text": "Develop a compulsory education policy for primary school-aged children and continue to promote the importance of education ", - "values": [ - "Right to education", - "Rights of the Child" - ] - }, - { - "text": "Fulfil its commitments under the Peace, Security and Cooperation Framework for the Democratic Republic of the Congo and the Region to comprehensively fight against all armed groups, in particular the Forces démocratiques de libération du Rwanda", - "values": [ - "Public security" - ] - }, - { - "text": "Implement in a more effective manner the recommendations guaranteeing the right to freedom of expression ", - "values": [ - "Freedom of opinion and expression" - ] - }, - { - "text": "Ratify the Rome Statute of the International Criminal Court as well as the International Convention for the Protection of All Persons from Enforced Disappearance ", - "values": [ - "Enforced disappearances", - "International instruments", - "Justice" - ] - }, - { - "text": "To mainstream human rights issues in the training curriculum of security agencies", - "values": [ - "Human rights education and training" - ] - }, - { - "text": "Amend the Charities and Societies Proclamation to allow civil society to work on human rights issues, including women's rights, without restrictions related to the origin of funding ", - "values": [ - "Civil society", - "Freedom of association and peaceful assembly", - "Women's rights" - ] - }, - { - "text": "Investigate all allegations of torture, especially those made in the context of the process against Kpatcha Gnassingbé and his followers ", - "values": [ - "Torture and other CID treatment" - ] - }, - { - "text": "Stop all executions", - "values": [ - "Death penalty" - ] - }, - { - "text": "Call on the international community to be more fully involved next to the young State of Djibouti and to accompany it in its efforts aimed at consolidating the rule of law, notably through the integration of international norms into its national legislation, the training on the preparation of national reports on human rights and the inclusion of human rights in school curricula and training", - "values": [ - "Human rights education and training", - "Justice", - "Technical assistance and cooperation" - ] - }, - { - "text": "Consider the establishment of a legal moratorium on the death penalty with a view to abolishing capital punishment ", - "values": [ - "Death penalty" - ] - }, - { - "text": "Respect and fortify the independence of the judiciary to ensure the fair and equal application of justice and the rule of law", - "values": [ - "Justice" - ] - }, - { - "text": "Decriminalize free consenting sexual relations between adults of the same sex and implement public policies to address discrimination based on sexual orientation or gender identity", - "values": [ - "Sexual Orientation and Gender Identity" - ] - }, - { - "text": "Continue to improve the conditions of detention ", - "values": [ - "Detention" - ] - }, - { - "text": "Take all the necessary steps to address the placing of asylum-seeking and migrant children in detention, including by repealing relevant legislation allowing for the detention of families accompanied by children", - "values": [ - "Asylum-seekers - refugees", - "Detention", - "Migrants", - "Rights of the Child" - ] - }, - { - "text": "Review the compliance of its anti-terrorism legislation allowing for incommunicado detention with international human rights standards ", - "values": [ - "Counter-terrorism", - "International instruments" - ] - }, - { - "text": "Continue its efforts to completely abolish the death penalty, respecting thus the right to life of every human being.", - "values": [ - "Death penalty", - "Other" - ] - }, - { - "text": "Burkina Faso undertook to submit an interim report on progress made in the implementation of the recommendations of the universal periodic review to the Human Rights Council in 2015.", - "values": [ - "UPR process" - ] - }, - { - "text": "Create conditions and human and material resources to make the justice system more effective", - "values": [ - "Justice" - ] - }, - { - "text": "Provide further training and legal assistance on the application of the Family Protection Act", - "values": [ - "Human rights education and training" - ] - }, - { - "text": "Steadily implement as well as further enhance measures to address discrimination and violence against women", - "values": [ - "Women's rights" - ] - }, - { - "text": "Strengthen measures toward eliminating violence against women, including domestic violence", - "values": [ - "Women's rights" - ] - }, - { - "text": "Strengthen measures aimed at improving security in the whole country notably in response to the activities of terrorist groups in the country", - "values": [ - "Public security" - ] - }, - { - "text": "Develop and implement a national action plan to cultivate a culture of respect and tolerance and promote intercultural understanding", - "values": [ - "Human rights education and training" - ] - }, - { - "text": "Implement the strategy to ensure free health care for children aged from 0 to 5", - "values": [ - "Right to health", - "Rights of the Child" - ] - }, - { - "text": "Consider ratifying the Rome Statute of the International Criminal Court and fully align its legislation with all obligations under the Rome Statute", - "values": [ - "International instruments", - "Justice" - ] - }, - { - "text": "Continue efforts through dialogue with the Revolutionary Armed Forces of Colombia to reach an agreement to end the armed conflict ", - "values": [ - "International humanitarian law" - ] - }, - { - "text": "Continue to carry out the policy on the protection and promotion of human rights of vulnerable groups, including children, women, persons with disabilities, and elderly persons ", - "values": [ - "Disabilities", - "Rights of the Child", - "Women's rights" - ] - }, - { - "text": "Adopt a law guaranteeing media freedom", - "values": [ - "Freedom of the press" - ] - }, - { - "text": "Continue Estonia's successful integration policy by, inter alia, implementing the State Integration Programme for 2008-2013 and continue efforts to improve the knowledge of the State language among the non-Estonian population ", - "values": [ - "Other" - ] - }, - { - "text": "Intensify public education campaigns to counter structural racism, racial discrimination, xenophobia and other forms of intolerance and punish perpetrators of racist acts, taking into account the fact that Costa Rica is a State party to the Convention on the Prevention and Punishment of the Crime of Genocide and the Rome Statute ", - "values": [ - "Human rights education and training", - "International instruments", - "Racial discrimination" - ] - }, - { - "text": "Completely abolish the death penalty ", - "values": [ - "Death penalty" - ] - }, - { - "text": "Incorporate key human rights principles in the new constitution in line with the obligations of Thailand under international human rights law", - "values": [ - "International instruments" - ] - }, - { - "text": "Continue the efforts to promote gender equality by promoting balanced representation in decision-making positions, equality in the work market and entrepreneurship, including equal pay and equal access to credit and other financial services, among other measures, paying particular attention to girls and women from indigenous people and people of African descent", - "values": [ - "Indigenous peoples", - "Minorities", - "Rights of the Child", - "Women's rights" - ] - }, - { - "text": "Redouble efforts to achieve permanent coordination between the national council for women and the provincial and municipal offices for the implementation of national gender equality plans", - "values": [ - "Women's rights" - ] - }, - { - "text": "Consider introducing a de jure moratorium on the death penalty with the view to abolish the death penalty", - "values": [ - "Death penalty" - ] - }, - { - "text": "Take all the necessary measures to ensure the protection of the rights of the child, put an end to the recruitment and use of child soldiers by all the parties to the conflict, and create mechanisms to support the reintegration of demobilized children", - "values": [ - "International humanitarian law", - "Rights of the Child" - ] - }, - { - "text": "Investigates, in line with international standards, all allegations of enforced disappearance, torture and ill treatment committed by security forces, and bring perpetrators to justice and ratifies the OP-CAT ", - "values": [ - "Detention", - "Enforced disappearances", - "Human rights violations by state agents", - "International instruments", - "Torture and other CID treatment" - ] - }, - { - "text": "Incorporate a section on rehabilitation of victims of torture into the draft bill on the national system for the prevention of torture ", - "values": [ - "Torture and other CID treatment" - ] - }, - { - "text": "Adopt specific and comprehensive anti-discrimination laws.", - "values": [ - "Other" - ] - }, - { - "text": "Take result-oriented measures for eliminating discrimination and hate speech against migrants, Muslims and the members of the Turkish Muslim minority", - "values": [ - "Freedom of religion and belief", - "Migrants", - "Minorities", - "Racial discrimination" - ] - }, - { - "text": "Include and consult people of African descent when adopting programmes and policies to promote their rights", - "values": [ - "Minorities" - ] - }, - { - "text": "Pay special attention to the recommendations of the Special Rapporteur on racism who cautioned that xenophobia needs to be addressed squarely to avoid right wing extremism", - "values": [ - "Racial discrimination", - "Special procedures" - ] - }, - { - "text": "Strengthen its national human rights institutions ", - "values": [ - "General" - ] - }, - { - "text": "Further strengthen the promotion and protection of the human rights of the Myanmar people and the ethnic groups in Northern Rakhine State ", - "values": [ - "Minorities" - ] - }, - { - "text": "Continue to commit more resources to primary health care", - "values": [ - "Right to health" - ] - }, - { - "text": "Envisage withdrawing its reservations to ICERD ", - "values": [ - "International instruments", - "Racial discrimination" - ] - }, - { - "text": "Consider extending the network of Government services for the delivery of socioeconomic and development aid to rural areas.", - "values": [ - "Development", - "ESC rights - general" - ] - }, - { - "text": "Strengthen the laws to ensure that sexual orientation and gender identity are included among the grounds for prohibition of discrimination in order to prevent impunity in acts of discrimination based on those grounds", - "values": [ - "Impunity", - "Sexual Orientation and Gender Identity" - ] - }, - { - "text": "Abolish anti-conversion laws and grant access to justice to victims of religious violence and discrimination", - "values": [ - "Freedom of religion and belief", - "Justice" - ] - }, - { - "text": "In line with the concerns expressed by the Committee against Torture and the Human Rights Committee, establish an independent body to safeguard the independence of the judiciary and supervise the appointment, promotion and regulation of the profession", - "values": [ - "Justice", - "Treaty bodies" - ] - }, - { - "text": "Put an end in practice to all forms of corporal punishment and derogate the laws allowing for this practice ", - "values": [ - "Torture and other CID treatment" - ] - }, - { - "text": "Continue to take appropriate measures at the national level with a view to ratifying international human rights instruments, notably those mentioned in paragraph 158 of the national report, including the Convention on the Rights of Persons with Disabilities (CRPD), ICERD, the Optional Protocol to the Convention on the Rights of the Child on the sale of children, child prostitution and child pornography (OP-CRC-SC)", - "values": [ - "Disabilities", - "International instruments", - "Racial discrimination", - "Rights of the Child", - "Trafficking" - ] - }, - { - "text": "Continue maintaining its strong will to take necessary steps where further improvement and harmonization with international standards is needed", - "values": [ - "Other" - ] - }, - { - "text": "Maintain its moratorium on the use of the death penalty with a view to eventually abolishing it", - "values": [ - "Death penalty" - ] - }, - { - "text": "Continue the fight against poverty and hunger ", - "values": [ - "Poverty", - "Right to food" - ] - }, - { - "text": "Compensate victims of gross violations of human rights in American prisons and prisons under the jurisdiction of America outside its territory and provide them with remedies ", - "values": [ - "Detention", - "Justice" - ] - }, - { - "text": "Consider lifting the ban on headscarves in schools ", - "values": [ - "Freedom of religion and belief", - "Right to education" - ] - }, - { - "text": "Immediately respect the ceasefire and facilitate full and unimpeded access for humanitarian aid to the entire country", - "values": [ - "Other" - ] - }, - { - "text": "Begin a process leading to the ending of the death penalty punishment ", - "values": [ - "Death penalty" - ] - }, - { - "text": "Accept without prior condition the request for a visit by the Special Rapporteur on extrajudicial, summary or arbitrary executions and cooperate with her fully", - "values": [ - "Extrajudicial executions", - "Special procedures" - ] - }, - { - "text": "Exert efforts to fight discrimination in all its forms and types ", - "values": [ - "Other" - ] - }, - { - "text": "Adopt necessary legal amendments to the Code of Criminal Procedure and Criminal Code to make its new Law on Domestic Violence fully enforceable and to achieve that law's primary aim, namely to protect victims from violence", - "values": [ - "Rights of the Child", - "Women's rights" - ] - }, - { - "text": "Strengthen the rule of law and good governance, including capacity-building for the law enforcement system and national institutions on human rights ", - "values": [ - "Justice" - ] - }, - { - "text": "Through stronger cross-institutional cooperation, provide more special services for children with disabilities, including taking necessary measures to improve the educational conditions ", - "values": [ - "Disabilities", - "Right to education", - "Rights of the Child" - ] - }, - { - "text": "Prohibit traditional practices that endanger the physical and psychological integrity of women, such as those affecting women and girls with albinism", - "values": [ - "Minorities", - "Rights of the Child", - "Women's rights" - ] - }, - { - "text": "Continue its best efforts to combat xenophobia and prevent any violence against foreigners ", - "values": [ - "Migrants", - "Racial discrimination" - ] - }, - { - "text": "Seriously consider implementing the observations and recommendations of different treaty bodies.", - "values": [ - "Treaty bodies" - ] - }, - { - "text": "Introduce further measures to restrict the use of the death penalty and consider the re-establishment of the moratorium on executions as first steps towards eventual abolition of the death penalty", - "values": [ - "Death penalty" - ] - }, - { - "text": "Ensure sufficient resources for the functioning of the national preventive mechanisms, following the ratification of the Optional Protocol to the Convention against Torture and Other Cruel, Inhuman and Degrading Treatmemt or Punishment (OPCAT)", - "values": [ - "Detention", - "International instruments", - "Torture and other CID treatment" - ] - }, - { - "text": "Include provisions in the draft framework law to address the concerns expressed by treaty bodies in the area of discrimination", - "values": [ - "Treaty bodies" - ] - }, - { - "text": "Repeal all provisions giving rise to discrimination based on sexual orientation or gender identity and ensure respect for fundamental freedoms for all citizens ", - "values": [ - "Sexual Orientation and Gender Identity" - ] - }, - { - "text": "Eliminate gender stereotypes in the national idiosyncrasy ", - "values": [ - "Women's rights" - ] - }, - { - "text": "Further continue its stated policy of studying and reviewing its policy towards ratification of key international human rights instruments ", - "values": [ - "International instruments" - ] - }, - { - "text": "Consider acceding to the major international instruments, including the International Covenant on Economic, Social and Cultural Rights ", - "values": [ - "ESC rights - general", - "International instruments" - ] - }, - { - "text": "Continue efforts to combat impunity and human rights violations, and achieve the voluntary human rights goals approved by the Council in its resolution 9-12.", - "values": [ - "Impunity" - ] - }, - { - "text": "Ratify additional human rights conventions and reinforce efforts to combat child labour", - "values": [ - "International instruments", - "Labour", - "Rights of the Child" - ] - }, - { - "text": "Adopt specific legislation to criminalize all forms of violence against women ", - "values": [ - "Women's rights" - ] - }, - { - "text": "Ensure that all communications surveillance requires a test of necessity and proportionality", - "values": [ - "Privacy" - ] - }, - { - "text": "Ensure equality and non-discrimination in the current legislation through due compliance with measures to fight against prejudices, xenophobia and violence against women and girls", - "values": [ - "Racial discrimination", - "Women's rights" - ] - }, - { - "text": "Continue its efforts to enhance general education, awareness campaigns and training programmes on human rights ", - "values": [ - "Human rights education and training" - ] - }, - { - "text": "Ensure that human rights defenders, including victims of human rights violations, witnesses, prosecutors, forensic experts, journalists and trade union workers, can carry out their human rights work freely and without fear of intimidation.", - "values": [ - "Human rights defenders" - ] - }, - { - "text": "Continue to take measures to ensure equal rates of school enrolment for girls and women at all levels and to overcome obstacles to education of girls and women ", - "values": [ - "Right to education", - "Rights of the Child", - "Women's rights" - ] - }, - { - "text": "Continue to improve all social security system for all its elderly population", - "values": [ - "ESC rights - general" - ] - }, - { - "text": "Ensure that its domestic laws guarantee the protection of the human rights of migrant workers, including their right to freedom of movement and the right to an adequate standard of living", - "values": [ - "Labour", - "Migrants" - ] - }, - { - "text": "Remain to be active in seeking the continuing support of the international community for the realization of its employment-generation and poverty-alleviation programmes", - "values": [ - "Development", - "Poverty", - "Technical assistance and cooperation" - ] - }, - { - "text": "Continue efforts to improve penitentiary system conditions and to reduce episodes of violence in prison", - "values": [ - "Detention" - ] - }, - { - "text": "Consider the ratification of the Optional Protocol to the Convention on the Elimination of All Forms of Discrimination against Women, the International Convention on the Protection of the Rights of All Migrant Workers and Members of their Families, and the International Convention for the Protection of All Persons from Enforced Disappearance", - "values": [ - "Enforced disappearances", - "International instruments", - "Labour", - "Migrants", - "Women's rights" - ] - }, - { - "text": "Submit regular reports to the treaty bodies, in particular to the Committee against Torture, the Committee on the Rights of the Child, the Human Rights Committee, the Committee on Economic, Social and Cultural Rights and the Committee on the Elimination of Racial Discrimination.", - "values": [ - "Treaty bodies" - ] - }, - { - "text": "Pay special attention to agriculture, including subsistence farmers, in the context of the next Poverty Reduction Programme (PARP) ", - "values": [ - "Poverty" - ] - }, - { - "text": "Continue promoting a dialogue that could lead to the abolition or establishment of a moratorium on the death penalty ", - "values": [ - "Death penalty" - ] - }, - { - "text": "Take urgent measures to expedite judicial investigations and the punishment of the perpetrators of forced sterilizations carried out on Roma women, in the context of their efforts to combat stereotypes and prejudices against women", - "values": [ - "Minorities", - "Torture and other CID treatment", - "Women's rights" - ] - }, - { - "text": "Continue implementing national strategy to combat poverty and hunger ", - "values": [ - "Poverty", - "Right to food" - ] - }, - { - "text": "Support the teaching of minorities' languages and cultures in minority schools", - "values": [ - "Minorities" - ] - }, - { - "text": "Continue efforts in reducing crime and violence including through social interventions, community programmes and more effective policing", - "values": [ - "Public security" - ] - }, - { - "text": "Intensify its efforts in combating discrimination and intolerance, particularly against Muslims, immigrants and persons of African descent and urges high State officials and politicians to take a clear position against racist or xenophobic hate speech ", - "values": [ - "Freedom of religion and belief", - "Minorities", - "Racial discrimination" - ] - }, - { - "text": "Respect the Bedouin population's right to their ancestral land and traditional livelihood", - "values": [ - "Minorities" - ] - }, - { - "text": "Share and exchange its experiences with other nations, especially developing ones, in legal system reforms. ", - "values": [ - "Justice" - ] - }, - { - "text": "Consider extending a standing invitation to all the special procedures of the Human Rights Council", - "values": [ - "Special procedures" - ] - }, - { - "text": "Adopt a policy to strengthen the institution of the family, and develop traditional family values in society ", - "values": [ - "Other" - ] - }, - { - "text": "Continue reinforcing measures to guarantee respect for the human rights of national communities, Roma and other ethnic groups", - "values": [ - "Minorities" - ] - }, - { - "text": "Consider ratifying the Optional Protocol to CEDAW", - "values": [ - "International instruments", - "Women's rights" - ] - }, - { - "text": "Introduce in its national legislation the definition of torture, reflecting that set out in article 1 of the Convention against Torture and other Cruel, Inhuman and Degrading Treatment or Punishment, and accede to its Optional Protocol OPCAT ", - "values": [ - "Detention", - "International instruments", - "Torture and other CID treatment" - ] - }, - { - "text": "Ratify CAT, as it committed itself to do when elected to the Human Rights Council", - "values": [ - "International instruments", - "Torture and other CID treatment" - ] - }, - { - "text": "Include all children in education regardless of their registration status, as recommended by the Committee on the Rights of the Child ", - "values": [ - "Rights of the Child", - "Treaty bodies" - ] - }, - { - "text": "Strengthen the relevant measures with regard to combating prejudices and negative stereotypes affecting indigenous peoples and members of minorities, and assure protection against discrimination, particularly in employment, housing, health and education ", - "values": [ - "Indigenous peoples", - "Minorities", - "Racial discrimination" - ] - }, - { - "text": "Continue its efforts, in cooperation with UNICEF and relevant United Nations agencies, to combat trafficking in persons and child abduction ", - "values": [ - "Rights of the Child", - "Trafficking" - ] - }, - { - "text": "Continue increasing investment in education providing subsidies to help poverty-stricken students and further increase school enrolment", - "values": [ - "Poverty", - "Right to education" - ] - }, - { - "text": "Undertake to abolish the death penalty or, in the absence of abolition, respect international standards restricting the scope of its application", - "values": [ - "Death penalty" - ] - }, - { - "text": "Continue the efforts to set up the independent committee to monitor the implementation of laws", - "values": [ - "Other" - ] - }, - { - "text": "Consider acceding to other international human rights instruments to which it is not yet party ", - "values": [ - "International instruments" - ] - }, - { - "text": "Consider introducing at the federal level a moratorium on the use of the death penalty with a view to its permanent abolition", - "values": [ - "Death penalty" - ] - }, - { - "text": "Adopt specific legislation to guarantee the exercise of the rights to freedom of opinion and expression", - "values": [ - "Freedom of opinion and expression" - ] - }, - { - "text": "Put an end to arbitrary restrictions on freedom of expression and to prior censorship of national and foreign media", - "values": [ - "Freedom of opinion and expression", - "Freedom of the press" - ] - }, - { - "text": "Reinforce the provisions of the Strategy for the Integration of Roma", - "values": [ - "Minorities" - ] - }, - { - "text": "Continue efforts to combat discrimination against women through appropriate legal provisions", - "values": [ - "Women's rights" - ] - }, - { - "text": "Establish its effective national preventive mechanism in compliance with OP-CAT", - "values": [ - "Detention", - "International instruments", - "Torture and other CID treatment" - ] - }, - { - "text": "Consider fostering policies on land use and urban-rural inequality and continue efforts to combat poverty ", - "values": [ - "Poverty", - "Right to land" - ] - }, - { - "text": "Put in place measures to guarantee the exclusion by the judiciary of evidence obtained under torture", - "values": [ - "Torture and other CID treatment" - ] - }, - { - "text": "Ask OHCHR to reply to the appeal made by the Government to send a needs assessment mission in areas enumerated in para. 118 of the national report and, pursuant to the results of this mission, seek the necessary assistance to ensure that Djibouti reached its goals and to meet its human rights commitments", - "values": [ - "Technical assistance and cooperation" - ] - }, - { - "text": "Continue its efforts to improve health through expanding its Zero Malnutrition programme to cover as much of its population as possible", - "values": [ - "Right to food", - "Right to health" - ] - }, - { - "text": "Take the necessary legal measures to ensure the right to family reunification of children aged over 15 years", - "values": [ - "Asylum-seekers - refugees", - "Rights of the Child" - ] - }, - { - "text": "Sri Lanka will also work with Member States and relevant United Nations bodies to assist the Office of the High Commissioner for Human Rights to formulate proposals for treaty body reforms, with a view to making the treaty body system more effective and in line with present-day requirements of Member States.", - "values": [ - "Treaty bodies" - ] - }, - { - "text": "Examine additional ways to accelerate and strengthen the integration of migrants into Maltese society, including in the work place, to allow them to contribute fully to the well-being of the country", - "values": [ - "Labour", - "Migrants" - ] - }, - { - "text": "Submit overdue reports to the Committee on the Rights of the Child ", - "values": [ - "Rights of the Child", - "Treaty bodies" - ] - }, - { - "text": "Consider the adoption of new legislation on violence against women covering inter alia domestic violence and sexual crimes against women", - "values": [ - "Women's rights" - ] - }, - { - "text": "Ensure effective functioning of the Ombudsman and the Commission for Protection against Discrimination", - "values": [ - "National Human Rights Institution" - ] - }, - { - "text": "Continue its educational and awareness raising work to promote human rights, train law enforcement officials and judges in human rights issues, improve the penal code and reform the judicial system, and take measures to combat corruption ", - "values": [ - "Corruption", - "Human rights education and training", - "Justice" - ] - }, - { - "text": "Withdraw its declaration on article 2 (c) in order to give full effect to the Optional Protocol to the Convention on the Rights of the Child on the sale of children, child prostitution and child pornography in addressing all forms of child pornography", - "values": [ - "International instruments", - "Rights of the Child", - "Trafficking" - ] - }, - { - "text": "Establish a moratorium on State executions with a view to formally abolishing the death penalty, in addition to ratifying the Second Optional Protocol to the International Covenant on Civil and Political Rights", - "values": [ - "Death penalty", - "International instruments" - ] - }, - { - "text": "Adopt prevention measures against sexual abuses", - "values": [ - "Rights of the Child", - "Women's rights" - ] - }, - { - "text": "Establish a moratorium in view of abolishing the death penalty", - "values": [ - "Death penalty" - ] - }, - { - "text": "Take all necessary measures to enhance the effectiveness of the Office of the Ombudsman and include, inter alia, effective monitoring and promotion of child rights.", - "values": [ - "National Human Rights Institution", - "Rights of the Child" - ] - }, - { - "text": "Adopt and implement at soon as possible the draft law for the creation of the national mechanism for the prevention of torture ", - "values": [ - "Torture and other CID treatment" - ] - }, - { - "text": "Support awareness programming to make potential victims more aware of the risks associated with trafficking and better prepare them to identify potential situations in which they could be trafficked", - "values": [ - "Trafficking" - ] - }, - { - "text": "Amend the criminal legislation with the view of introducing the racist motivated offence as an aggravating criminal circumstance ", - "values": [ - "Racial discrimination" - ] - }, - { - "text": "Integrate, in a systematic manner, a gender perspective in the UPR follow-up process.", - "values": [ - "UPR process", - "Women's rights" - ] - }, - { - "text": "Include civil society in following up on the recommendations that will be accepted by Cote d'Ivoire within this periodic review ", - "values": [ - "Civil society", - "UPR process" - ] - }, - { - "text": "Take the necessary measures to ratify the International Convention for the Protection of All Persons from Enforced Disappearance and recognize the competence of the Committee", - "values": [ - "Enforced disappearances", - "International instruments" - ] - }, - { - "text": "Continue to develop efforts to implement strategies to reduce poverty in line with the Millennium Development Goals. ", - "values": [ - "Poverty" - ] - }, - { - "text": "Continue to devote great attention to the situation of the most vulnerable groups ", - "values": [ - "Minorities" - ] - }, - { - "text": "Support OHCHR in accordance with the available mechanisms and cooperate with those mechanisms in order to facilitate OHCHR's discharge of its functions in conformity with its human rights mandate.", - "values": [ - "Other" - ] - }, - { - "text": "Continue to take measures for the sustainable economic, social and cultural development in the rural areas ", - "values": [ - "Development", - "ESC rights - general" - ] - }, - { - "text": "Continue its efforts in the direction of providing for freedom of thought, conscience and religion as well as an environment of religious tolerance existing in Ethiopia ", - "values": [ - "Freedom of religion and belief" - ] - }, - { - "text": "Further strengthen the Commissions of the media, human rights and anti-corruption ", - "values": [ - "Corruption", - "Freedom of the press", - "National Human Rights Institution" - ] - }, - { - "text": "Fully align its national legislation with the Rome Statute of the ICC, including by incorporating provisions to investigate and prosecute perpetrators of genocide, crimes against humanity and war crimes effectively before its national courts, and to ratify the Kampala Amendments to the Rome Statute of the ICC", - "values": [ - "International instruments", - "Justice" - ] - }, - { - "text": "Increase the age of minimum criminal responsibility to at least 12 years, as recommended by the CRC ", - "values": [ - "Justice", - "Rights of the Child", - "Treaty bodies" - ] - }, - { - "text": "Further enhance the capacity, neutrality and independence of the judiciary.", - "values": [ - "Justice" - ] - }, - { - "text": "Take necessary steps to ensure and safeguard the human rights of the civilian population living in areas where armed forces and national police personnel perform operations against illegal trafficking activities", - "values": [ - "Trafficking" - ] - }, - { - "text": "The Government also has a commitment to allocate resources for the realisation of the MDGs by 2015. We pledge to work collaboratively and through international cooperation with all partners to this end. The next South African UPR report will, among others, be an encapsulation of progressive achievements in the intervening period", - "values": [ - "Development", - "UPR process" - ] - }, - { - "text": "Ensure that Section 4 and Section 6 of the Trafficking Victims Protection Act 2008, specifically defining the term "wrongful exploitation", comply with Article 3 of the Protocol to Prevent, Suppress and Punish Trafficking in Persons, especially Women and Children, and increase the role of labour inspectors in identifying victims of human trafficking and prevent abusive working conditions, in line with the recommendations made by the 2012 report of the Special Rapporteur on trafficking in persons, especially women and children", - "values": [ - "International instruments", - "Rights of the Child", - "Special procedures", - "Trafficking", - "Women's rights" - ] - }, - { - "text": "Accede to the Optional Protocol to the Convention on the Rights of the Child on the involvement of children in armed conflict, as soon as possible", - "values": [ - "International humanitarian law", - "International instruments", - "Rights of the Child" - ] - }, - { - "text": "Continue efforts to promote the rights of women, as well as the education and health of the Libyan people", - "values": [ - "Right to education", - "Right to health", - "Women's rights" - ] - }, - { - "text": "Monitor and report on the compliance with the recommendations put forward by the special rapporteurs on the independence of judges and lawyers, on migrants and on extrajudicial executions", - "values": [ - "Extrajudicial executions", - "Justice", - "Migrants", - "Special procedures" - ] - }, - { - "text": "Closely cooperate with the UNHCR and other relevant organizations to provide more adequate protection and proper treatment of asylum seekers and refugees", - "values": [ - "Asylum-seekers - refugees", - "Technical assistance and cooperation" - ] - }, - { - "text": "Address racial discrimination and cases of racist violence involving destruction of property and the murders of a number of migrants", - "values": [ - "Migrants", - "Racial discrimination" - ] - }, - { - "text": "Continue the efforts of the Government to ensure the improvement of their health system, as well as progress in other socio-economic and cultural rights ", - "values": [ - "ESC rights - general", - "Right to health" - ] - }, - { - "text": "Ensure that the recruitment of children into armed forces stops and that the children are not subjected to forced labour ", - "values": [ - "International humanitarian law", - "Labour", - "Rights of the Child" - ] - }, - { - "text": "Create social programmes to assist children engaged in the worst forms of child labor, particularly in commercial sexual exploitation", - "values": [ - "Labour", - "Rights of the Child" - ] - }, - { - "text": "Continue to carry out awareness programmes for children and adolescents against substance abuse", - "values": [ - "Rights of the Child" - ] - }, - { - "text": "Continue to pay close attention to the full realization of the rights of the child, including the right to education", - "values": [ - "Right to education", - "Rights of the Child" - ] - }, - { - "text": "Bring to justice those responsible for abuses that took place between 28 January and 8 February 2008. ", - "values": [ - "Justice" - ] - }, - { - "text": "Strengthen measures for the respect of the rights of the child and protect children against sexual exploitation and illegal trafficking ", - "values": [ - "Rights of the Child", - "Trafficking" - ] - }, - { - "text": "Effectively fight against extrajudicial killings, including by non-State actors, by strengthening accountability mechanisms and implementing the necessary reforms ", - "values": [ - "Extrajudicial executions", - "Human rights violations by state agents" - ] - }, - { - "text": "Ratify the Domestic Workers Convention, 2011 No. 189", - "values": [ - "International instruments", - "Labour" - ] - }, - { - "text": "Adopt adequate measures for the protection and promotion of religious freedom, in order to ensure an effective freedom of worship of all religious communities and comply with its international obligations in this field, and ensure the right to seek, receive and provide information and ideas, including by electronic means and from foreign sources.", - "values": [ - "Freedom of religion and belief" - ] - }, - { - "text": "Improve further the general secondary education ", - "values": [ - "Right to education" - ] - }, - { - "text": "Consider ratifying the Rome Statute ", - "values": [ - "International instruments", - "Justice" - ] - }, - { - "text": "Undertake every effort to fully implement the Children's Authority Act", - "values": [ - "Rights of the Child" - ] - }, - { - "text": "Continue its efforts with a view to approving the constitutional reform package ", - "values": [ - "Other" - ] - }, - { - "text": "Incorporate its international human rights obligations into domestic laws, in particular the rights of the child", - "values": [ - "International instruments", - "Rights of the Child" - ] - }, - { - "text": "To update census data of communities and indigenous peoples. To ensure the participation of the own communities in this process", - "values": [ - "Indigenous peoples" - ] - }, - { - "text": "Actively promote access to education for young girls", - "values": [ - "Right to education", - "Rights of the Child", - "Women's rights" - ] - }, - { - "text": "Take further efforts to improve access to water and sanitation, especially in the north and north-east of the country, through the effective implementation of the principle of equality, and to gradually reduce inequalities through the implementation of the National Sanitation Plan", - "values": [ - "Right to water and sanitation" - ] - }, - { - "text": "Take measures to prevent child, early and forced marriages, including through awareness-raising campaigns and measures for the monitoring of the implementation of existing legislation and by promoting the enrolment of girls in schools", - "values": [ - "Human rights education and training", - "Rights of the Child", - "Torture and other CID treatment", - "Women's rights" - ] - }, - { - "text": "Ratify and implement ILO Convention No. 169 concerning Indigenous and Tribal Peoples in Independent Countries ", - "values": [ - "Indigenous peoples", - "International instruments" - ] - }, - { - "text": "Raise the age of criminal responsibility for minors ", - "values": [ - "Rights of the Child" - ] - }, - { - "text": "Consider the effect and continued relevance of its remaining reservations to the Convention on the Rights of Persons with Disabilities, and consider the possibility of withdrawing them ", - "values": [ - "Disabilities", - "International instruments" - ] - }, - { - "text": "Operationalize the National Human Rights Commission and ensure that its operating is in line with the Paris Principles", - "values": [ - "National Human Rights Institution" - ] - }, - { - "text": "Take concrete measures to reduce the current and future prison population, as well as to improve prisoner safety", - "values": [ - "Detention" - ] - }, - { - "text": "Adopt, as a matter of priority, proper, comprehensive and effective measures to address all forms of violence against women and girls, including domestic violence, sexual violence and trafficking", - "values": [ - "Rights of the Child", - "Women's rights" - ] - }, - { - "text": "Repeal or amend all domestic legislation which is in breach of international human rights law ", - "values": [ - "International instruments", - "Justice" - ] - }, - { - "text": "Ensure that the judicial and law enforcement system is not abused to harass individuals for expressing their political or religious views, including on the Internet ", - "values": [ - "Freedom of religion and belief" - ] - }, - { - "text": "Welcoming the recognition of access to safe drinking water as an inalienable right of all human beings, continue efforts with regard to monitoring and accountability, guaranteeing the minimum standards of availability, quality and accessibility", - "values": [ - "Right to water and sanitation" - ] - }, - { - "text": "Harmonize national legislation with the international obligations under the respective conventions ", - "values": [ - "International instruments" - ] - }, - { - "text": "Guarantee respect for freedom of religion by everybody, during the transitional period and beyond, according to the well-known tradition and culture prevailing in the country ", - "values": [ - "Freedom of religion and belief" - ] - }, - { - "text": "Continue implementing programmes to guarantee the enjoyment of economic, social and cultural rights, in particular the right to education and the right to health", - "values": [ - "ESC rights - general", - "Right to education", - "Right to health" - ] - }, - { - "text": "Enable human rights organizations to monitor general elections", - "values": [ - "Elections" - ] - }, - { - "text": "Specify the prohibition of the death penalty in a future organic law ", - "values": [ - "Death penalty" - ] - }, - { - "text": "Prioritize necessary reforms to modernize legislation and eliminate all forms of discrimination.", - "values": [ - "Other" - ] - }, - { - "text": "Strengthen its policies to fight violence, especially gender violence and sexual violence", - "values": [ - "Women's rights" - ] - }, - { - "text": "Strengthen development efforts with a focus on the rural areas ", - "values": [ - "Development" - ] - }, - { - "text": "Initiate legislation introducing the possibility of conscientious objection or an alternative civilian service for citizens eligible for military service", - "values": [ - "Freedom of religion and belief" - ] - }, - { - "text": "Review security laws to ensure their conformity with the international human rights standards and in particular with regard to juvenile (alleged) offenders ", - "values": [ - "International instruments", - "Public security", - "Rights of the Child" - ] - }, - { - "text": "Seek assistance from the international community to define, in consultation with the Government, needs in the area of technical and financial assistance for implementing priority programmes in terms of the State policies to promote and protect human rights ", - "values": [ - "Technical assistance and cooperation" - ] - }, - { - "text": "Continue to engage constructively with partners and with the international community to safeguard the human rights of migrant workers, particularly to life, liberty, security of person and just and favourable conditions of work ", - "values": [ - "Labour", - "Migrants" - ] - }, - { - "text": "A broad approach including improved legal representation of prisoners, separate detention facilities for persons under the age of 18 and continuing improvements to the prison infrastructure", - "values": [ - "Detention" - ] - }, - { - "text": "Consider early ratification of OP-CEDAW, signed in 2001 ", - "values": [ - "International instruments", - "Women's rights" - ] - }, - { - "text": "Continue commuting death sentences and continue the de facto moratorium on the application of the death penalty, maintained since 1993, with a view to abolishing it", - "values": [ - "Death penalty" - ] - }, - { - "text": "Take the necessary measures to advance in the elimination of illiteracy and the basic education of women and men", - "values": [ - "Right to education" - ] - }, - { - "text": "Continue its process of implementation for a national human rights commission in conformity with the Paris Principles", - "values": [ - "National Human Rights Institution" - ] - }, - { - "text": "Accede to CEDAW, without reservations that could be incompatible with the object and purpose of this Convention", - "values": [ - "International instruments", - "Women's rights" - ] - }, - { - "text": "Take effective measures to prevent and counter racist and xenophobic discourse against non-citizens", - "values": [ - "Racial discrimination" - ] - }, - { - "text": "Pursue measures against State organs which attempt to limit media and journalists ", - "values": [ - "Freedom of the press" - ] - }, - { - "text": "Further strengthen its cooperation with the international community, including OHCHR and treaty bodies", - "values": [ - "Treaty bodies" - ] - }, - { - "text": "Continue the establishment of the Human Rights Commission", - "values": [ - "National Human Rights Institution" - ] - }, - { - "text": "Ratify the Second Optional Protocol to the International Covenant on Civil and Political Rights", - "values": [ - "Death penalty", - "International instruments" - ] - }, - { - "text": "Consider treatment of perpetrators of violence against women and other models targeting the aggressor as a complement to other measures ", - "values": [ - "Women's rights" - ] - }, - { - "text": "Respect fully the principle of non-refoulement enshrined in the Convention relating to the Status of Refugees", - "values": [ - "Asylum-seekers - refugees", - "International instruments" - ] - }, - { - "text": "Undertake necessary steps in order to harmonize the Dutch law and practice with the European Convention on the Legal Status of Migrant Workers ", - "values": [ - "Labour", - "Migrants" - ] - }, - { - "text": "Review the National Security Act, in particular the extensive powers granted to the National intelligence and Security Service, to bring it in line with international human rights law", - "values": [ - "Human rights violations by state agents", - "International instruments" - ] - }, - { - "text": "Declare a de jure moratorium on the death penalty with a view to abolishing capital punishment, and consider ratifying the Second Optional Protocol to the International Covenant on Civil and Political Rights", - "values": [ - "Death penalty", - "International instruments" - ] - }, - { - "text": "Enhance its cooperation with the Human Rights Council and its mechanisms by responding favourably to outstanding requests from Special Rapporteurs to visit the country", - "values": [ - "Special procedures" - ] - }, - { - "text": "Take measures to increase the capacity and independence of the Ombudsman", - "values": [ - "National Human Rights Institution" - ] - }, - { - "text": "Step up its efforts to address the prevalence of violence against women by adopting a strategy for the implementation of the Council of Europe Convention on Preventing and Combating Violence against Women and Domestic Violence", - "values": [ - "Women's rights" - ] - }, - { - "text": "Take necessary measures in order to guarantee to everyone who requests it, including those belonging to minorities, access to legal aid", - "values": [ - "Justice", - "Minorities" - ] - }, - { - "text": "Carry out the submission of its pending report to the Human Rights Committee as soon as possible ", - "values": [ - "CP rights - general", - "Treaty bodies" - ] - }, - { - "text": "Ensure the enjoyment of economic, social and cultural rights, in the context of the attainment of the MDGs, which Cuba has mostly met ", - "values": [ - "ESC rights - general" - ] - }, - { - "text": "Pursue its efforts to harmonize its national legislation with international human rights standards", - "values": [ - "International instruments" - ] - }, - { - "text": "Establish as soon as possible a plan of action to prevent racist attacks, so that members of vulnerable groups, including Roma, can live in safety and dignity ", - "values": [ - "Minorities", - "Racial discrimination" - ] - }, - { - "text": "Accelerate the appointment of the members of the Afghan Independent Human Rights Commission", - "values": [ - "National Human Rights Institution" - ] - }, - { - "text": "Consider the possibility of ratifying other human rights core instruments", - "values": [ - "International instruments" - ] - }, - { - "text": "Promote in the international level Cuban educational programmes, such as "Yes, I can" and "Yes, I can continue"", - "values": [ - "Right to education" - ] - }, - { - "text": "In order to strengthen the rule of law with security and justice institutions capable of effectively protecting human rights, and to overcome social inequalities, Mexico commits to adopt the necessary measures to address the recommendations of the Universal Periodic Review in the framework of the National Programme on Human Rights 2008-2012. Mexico will also work in the framework of the Agreement with the Office of the High Commissioner for Human Rights in Mexico in order to foster the implementation of the recommendations.", - "values": [ - "Technical assistance and cooperation", - "UPR process" - ] - }, - { - "text": "Submit its overdue reports to to the Committee on the Elimination of Racial Discrimination, the Committee on the Elimination of Discrimination against Women and the Committee against Torture ", - "values": [ - "Racial discrimination", - "Torture and other CID treatment", - "Treaty bodies", - "Women's rights" - ] - }, - { - "text": "Make further efforts with a view to withdrawing reservations to CEDAW ", - "values": [ - "International instruments", - "Women's rights" - ] - }, - { - "text": "Continue to reduce the offences punishable by the death penalty", - "values": [ - "Death penalty" - ] - }, - { - "text": "Assess the implementation of the Strategy for Roma Integration up to 2020 annually and keep Roma NGOs, including women's and children's organizations, actively involved in the implementation and assessment of the strategy ", - "values": [ - "Civil society", - "Minorities", - "Rights of the Child", - "Women's rights" - ] - }, - { - "text": "Re-examine the use of prolonged police detention.", - "values": [ - "Detention" - ] - }, - { - "text": "Make further efforts to conduct a prompt, thorough and impartial investigation of allegations of arbitrary detention and excessive use of force by law enforcement officials in response to protests, with a view to ensuring accountability for perpetrators", - "values": [ - "Detention", - "Freedom of association and peaceful assembly", - "Human rights violations by state agents" - ] - }, - { - "text": "Adopt a comprehensive law on violence against women ", - "values": [ - "Women's rights" - ] - }, - { - "text": "Continue efforts in expanding educational facilities to rural areas and advance the educational and vocational training facilities for men and women equally", - "values": [ - "Right to education" - ] - }, - { - "text": "Create a National Commission for Human Rights and Citizenship (CNDHC) in accordance with the Paris Principles", - "values": [ - "National Human Rights Institution" - ] - }, - { - "text": "Take urgent steps to ensure full respect for the right to a nationality, and ratify the August 1961 Convention on the Reduction of Statelessness, which it signed in December 1961 ", - "values": [ - "International instruments", - "Statelessness and the right to nationality" - ] - }, - { - "text": "Respect the right of any individual to practice his or her religion of belief without any restriction ", - "values": [ - "Freedom of religion and belief" - ] - }, - { - "text": "Consider freedom of expression concerns when drafting cybercrime legislation ", - "values": [ - "Freedom of opinion and expression" - ] - }, - { - "text": "Adhere to the International Convention on the Protection of the Rights of All Migrant Workers and Members of their Families and recognize the competence of the Committee ", - "values": [ - "International instruments", - "Labour", - "Migrants", - "Treaty bodies" - ] - }, - { - "text": "Developing infrastructure so as to make economic opportunities accessible to all segments of the population and to provide the basis for rapid industrialization and job creation.", - "values": [ - "Development" - ] - }, - { - "text": "Ensure that the standards of a fair trial are guaranteed under all circumstances.", - "values": [ - "Justice" - ] - }, - { - "text": "Submit a report on the situation of human rights in the Occupied Palestinian Territories since Israel is in charge as the occupying power.", - "values": [ - "Treaty bodies" - ] - }, - { - "text": "Accelerate the process of adoption of the gender equality act", - "values": [ - "Women's rights" - ] - }, - { - "text": "Guarantee the independence of the judiciary, including through legislative measures ", - "values": [ - "Justice" - ] - }, - { - "text": "Intensify its work to provide specialized training for investigators, prosecutors and judges in applying the human trafficking statute", - "values": [ - "Human rights education and training", - "Trafficking" - ] - }, - { - "text": "Formally prohibit corporal punishment in all settings", - "values": [ - "Torture and other CID treatment" - ] - }, - { - "text": "Continue to further improve the quality of school education for children", - "values": [ - "Right to education", - "Rights of the Child" - ] - }, - { - "text": "Adopt a plan of action to combat sexual exploitation of children, child pornography and prostitution and provide assistance to victims of sexual exploitation", - "values": [ - "Rights of the Child" - ] - }, - { - "text": "Continue efforts to combat child marriage", - "values": [ - "Rights of the Child" - ] - }, - { - "text": "Ratify the Second Optional Protocol to the ICCPR as a matter of priority", - "values": [ - "Death penalty", - "International instruments" - ] - }, - { - "text": "Review the Law on Religion so as to ensure that the right to freedom of religion is upheld in compliance with international legal standards ", - "values": [ - "Freedom of religion and belief" - ] - }, - { - "text": "Adopt measures that ensure enjoyment of fundamental freedoms in law and practice", - "values": [ - "General" - ] - }, - { - "text": "Sign and ratify the Convention against Torture and ICESCR, and ratify CED ", - "values": [ - "ESC rights - general", - "Enforced disappearances", - "International instruments", - "Torture and other CID treatment" - ] - }, - { - "text": "Consider acceding to all core United Nations human rights instruments, including the International Convention on the Protection of the Rights of all Migrant Workers and Members of Their Families", - "values": [ - "International instruments", - "Labour", - "Migrants" - ] - }, - { - "text": "Perpetuate the measures carried out to establish a National Child Rights Committee", - "values": [ - "Rights of the Child" - ] - }, - { - "text": "Broaden the review of the death penalty with a view of eliminating mandatory death sentencing for capital offences and commute all death sentences to terms of imprisonment", - "values": [ - "Death penalty" - ] - }, - { - "text": "Support the National Human Rights Commission, in order to bring it in line with the Paris Principles ", - "values": [ - "National Human Rights Institution" - ] - }, - { - "text": "Grant unimpeded access by humanitarian personnel to populations in need of assistance", - "values": [ - "Other" - ] - }, - { - "text": "Close without any delay all detention facilities at the Guantanamo Bay as President Barack Obama has promised ", - "values": [ - "Detention" - ] - }, - { - "text": "Reinforce socioeconomic development policies, with particular focus on poverty reduction and food security", - "values": [ - "Development", - "ESC rights - general", - "Poverty", - "Right to food" - ] - }, - { - "text": "Take positive steps in regard to climate change, by assuming the responsibilities arising from capitalism that have generated major natural disasters particularly in the most impoverished countries", - "values": [ - "Environment" - ] - }, - { - "text": "Allocate sufficient and, if necessary, additional resources for the recruitment and training of personnel in children's institutions, and intensify efforts to raise the number of foster families and provide them with adequate training for foster care", - "values": [ - "Human rights education and training", - "Rights of the Child" - ] - }, - { - "text": "Take all necessary action to allow access to the Special Rapporteur on torture and other cruel, inhuman or degrading treatment or punishment ", - "values": [ - "Special procedures", - "Torture and other CID treatment" - ] - }, - { - "text": "Take further measures towards combating slavery and in particular investigate allegations of slavery and prosecute and punish the perpetrators of that offence", - "values": [ - "Other" - ] - }, - { - "text": "Continue to strengthen efforts to prevent law enforcement officers of using excessive force", - "values": [ - "Human rights violations by state agents" - ] - }, - { - "text": "Continue strengthening the rehabilitation and reintegration of victims of human trafficking with the support of the international community", - "values": [ - "Technical assistance and cooperation", - "Trafficking" - ] - }, - { - "text": "Intensify efforts in improving and strengthening its human rights institutions ", - "values": [ - "General" - ] - }, - { - "text": "Take necessary steps to provide adequate facilities to improve access to education for persons with disabilities, especially children ", - "values": [ - "Disabilities", - "Right to education", - "Rights of the Child" - ] - }, - { - "text": "Attain the remains of the Millennium Development Goals", - "values": [ - "Development" - ] - }, - { - "text": "Ensure that members of the rebel forces who have been convicted of human rights violations do not integrate regular security services", - "values": [ - "Justice" - ] - }, - { - "text": "Reconsider its decision not to sign a comprehensive agreement with OHCHR aimed at human rights promotion and protection", - "values": [ - "Technical assistance and cooperation" - ] - }, - { - "text": "Continue to make progress on important issues for the promotion of human rights and its democratization, particularly in judicial reform and measures to address land issues ", - "values": [ - "Justice", - "Right to land" - ] - }, - { - "text": "Criminalize the production and dissemination of materials advertising the sale of children, child prostitution and child pornography, and to bring its Penal Code into conformity with the Optional Protocol to the Convention on the Rights of the Child on the sale of children, child prostitution and child pornography", - "values": [ - "International instruments", - "Rights of the Child", - "Trafficking" - ] - }, - { - "text": "Sign and ratify CED at the earliest and fully recognize the competence of the Committee on Enforced Disappearances ", - "values": [ - "Enforced disappearances", - "International instruments" - ] - }, - { - "text": "Provide the Office of the Human Rights Commissioner with all the support necessary for it to exercise effectively its mandate", - "values": [ - "Technical assistance and cooperation" - ] - }, - { - "text": "Take measures to improve access to grants for primary education, to make primary education compulsory, to improve the quality of primary education in remote regions and to increase the facilities to obtain secondary education throughout the country ", - "values": [ - "Right to education" - ] - }, - { - "text": "Continue to protect the rights of women and promote their empowerment", - "values": [ - "Women's rights" - ] - }, - { - "text": "Amend its legislation so that it treats equally all women and men with respect to marriage, divorce and inheritance rights as well as conferring citizenship to their children and spouses", - "values": [ - "Statelessness and the right to nationality", - "Women's rights" - ] - }, - { - "text": "Continue the current efforts to finalize the process of adoption of a social security code and the establishment of a sustainable social security system", - "values": [ - "ESC rights - general" - ] - }, - { - "text": "Ban, at the federal and state levels, the use of racial profiling by police and immigration officers", - "values": [ - "Human rights violations by state agents", - "Racial discrimination" - ] - }, - { - "text": "Continue to engage its regional and international partners with a view to seeking technical and other assistance in the field of human rights", - "values": [ - "Technical assistance and cooperation" - ] - }, - { - "text": "Establish an official moratorium on executions with a view to abolishing the death penalty ", - "values": [ - "Death penalty" - ] - }, - { - "text": "Transpose thoroughly and implement child legislation at the provincial level", - "values": [ - "Rights of the Child" - ] - }, - { - "text": "Recommend the dialogue and cooperation in the field of the promotion and protection of human rights", - "values": [ - "Technical assistance and cooperation" - ] - }, - { - "text": "Consider establishing national human rights institutions in compliance with the Paris\nPrinciples", - "values": [ - "National Human Rights Institution" - ] - }, - { - "text": "Abolish banishment in view of its inhumane character.", - "values": [ - "Asylum-seekers - refugees" - ] - }, - { - "text": "Continue to implement its HIV/AIDS prevention, care and treatment programmes to further reduce the prevalence", - "values": [ - "HIV - Aids" - ] - }, - { - "text": "Establish an effective and inclusive process to follow-up on recommendations of the Working Group on the Universal Periodic Review", - "values": [ - "UPR process" - ] - }, - { - "text": "Ensure greater civic education on electoral and Constitutional rights to ensure that referendums are useful and effective", - "values": [ - "Elections" - ] - }, - { - "text": "Accelerate the implementation and expand the scope of the measures of the programme for improving the conditions of detention, as well as reduce the duration of pre-trial detention", - "values": [ - "Detention" - ] - }, - { - "text": "Continue its cooperation with OHCHR", - "values": [ - "Other" - ] - }, - { - "text": "Share in detail and through the appropriate mechanisms of the Council, its achievements, experiences and lessons drawn in the following areas: (a) how it managed to bring down poverty rates in urban and rural areas in a consistent and progressive way during the last 35 years; (b) how the establishment of the Anti- Corruption Academy in Malaysia helped and continues to help fighting corruption and raising awareness", - "values": [ - "Corruption", - "Poverty" - ] - }, - { - "text": "Continue its efforts in order to offer IDPs satisfactory life conditions", - "values": [ - "Internally displaced persons" - ] - }, - { - "text": "Take early steps to establish a national human rights institution in full compliance with the Paris Principles ", - "values": [ - "National Human Rights Institution" - ] - }, - { - "text": "Apply fairly and without discrimination all registration procedures and in conformity with international standards.", - "values": [ - "Civil society" - ] - }, - { - "text": "Decriminalize homosexual relations and practices-consensual same-sex activities between adults and outlaw discrimination on the basis of sexual orientation", - "values": [ - "Sexual Orientation and Gender Identity" - ] - }, - { - "text": "Continue its efforts to combat transnational child trafficking and exploitation ", - "values": [ - "Rights of the Child", - "Trafficking" - ] - }, - { - "text": "Ratify the Optional Protocol to the International Covenant on Civil and Political Rights and the International Covenant on Economic, Social and Cultural Rights", - "values": [ - "CP rights - general", - "ESC rights - general", - "International instruments" - ] - }, - { - "text": "Ensure the respect of gender equality both in offices and in schools", - "values": [ - "Women's rights" - ] - }, - { - "text": "Sign and ratify CAT, as recommended previously ", - "values": [ - "International instruments", - "Torture and other CID treatment", - "UPR process" - ] - }, - { - "text": "Continue efforts in connection with the prevention of violence against children and the fight against child trafficking, child prostitution and pornography ", - "values": [ - "Rights of the Child", - "Trafficking" - ] - }, - { - "text": "Incorporate the views of civil society in transparent, democratic reform processes", - "values": [ - "Civil society" - ] - }, - { - "text": "Strengthen measures to reduce repetition and dropout rates and evaluate the outcome of such measures, as well as to continue to fight child poverty and address issues such as street children, child labour and child trafficking and smuggling ", - "values": [ - "Labour", - "Poverty", - "Right to education", - "Rights of the Child", - "Trafficking" - ] - }, - { - "text": "Open the proposed shelter for female and child trafficking victims and allocate sufficient resources to support long-term services for victims of trafficking", - "values": [ - "Rights of the Child", - "Trafficking", - "Women's rights" - ] - }, - { - "text": "Integrate children with disabilities into the regular educational system and into society by special training for teachers and making the physical environment (schools, sports, leisure facilities and other public areas) accessible", - "values": [ - "Disabilities", - "Right to education", - "Rights of the Child" - ] - }, - { - "text": "Further develop its strategy to combat trafficking and sexual exploitation in cooperation with countries of origin ", - "values": [ - "Trafficking" - ] - }, - { - "text": "Remain steadfast in pursuing its impressive policies towards gender equality, particularly by strengthening measures to eradicate gender-based violence ", - "values": [ - "Women's rights" - ] - }, - { - "text": "Continue work on raising awareness and enhancing training and capacity-building in the field of human rights for government institutions, particularly internal security services and military forces, in accordance with international standards", - "values": [ - "Human rights education and training" - ] - }, - { - "text": "Continue strengthening its policies in the field of economic, social and cultural rights with the aim to provide the best standard of living possible to its people, to which end it is very important to count on the cooperation and solidarity of the international community ", - "values": [ - "ESC rights - general" - ] - }, - { - "text": "Further strengthen its efforts in promoting the rights of persons with disabilities and to ensure their integration in the society ", - "values": [ - "Disabilities" - ] - }, - { - "text": "Continue to strengthen the educational system and to ensure equal access of disabled children to education", - "values": [ - "Disabilities", - "Right to education", - "Rights of the Child" - ] - }, - { - "text": "Endeavour to submit its overdue reports, some of which have been overdue since 2003, to the treaty bodies on the application of the conventions it has ratified", - "values": [ - "International instruments", - "Treaty bodies" - ] - }, - { - "text": "Enhance its efforts in combating violence against women ", - "values": [ - "Women's rights" - ] - }, - { - "text": "Continue its tremendous efforts to improve the level of protection and services provided for pilgrims", - "values": [ - "Freedom of religion and belief" - ] - }, - { - "text": "Step up measures to curb acts of racism, extremism and xenophobia and undertake efforts to improve interracial, intercultural and interreligious dialogue and sensitivity", - "values": [ - "Freedom of religion and belief", - "Racial discrimination" - ] - }, - { - "text": "Introduce new legislation to further strengthen the rights of indigenous peoples.", - "values": [ - "Indigenous peoples" - ] - }, - { - "text": "Adopt appropriate and concrete measures to address the issue of discrimination and exploitation of migrant workers", - "values": [ - "Labour", - "Migrants", - "Racial discrimination" - ] - }, - { - "text": "Redouble efforts to protect freedom of opinion and belief and to promote media freedom and the rights of journalists", - "values": [ - "Freedom of opinion and expression", - "Freedom of religion and belief", - "Freedom of the press" - ] - }, - { - "text": "Continue to implement the positive ongoing programs and efforts aimed at repairing and constructing the houses of persons affected by hurricanes, with a view to guaranteeing the full enjoyment of the right to an adequate housing, including with the assistance of the international community, which is called upon to ensure adequate financial and material support to those programmes", - "values": [ - "Right to housing", - "Technical assistance and cooperation" - ] - }, - { - "text": "Sign the Optional Protocol to CAT and the Convention on the Rights of Persons with Disabilities ", - "values": [ - "Detention", - "Disabilities", - "International instruments", - "Torture and other CID treatment" - ] - }, - { - "text": "Strengthen the efforts to prevent crimes committed with discriminatory or xenophobic motives and to bring perpetrators of such crimes to justice", - "values": [ - "Racial discrimination" - ] - }, - { - "text": "Develop the efforts under way to train and professionalize police officers, including the initiative of the Experimental University for Security ", - "values": [ - "Justice" - ] - }, - { - "text": "Eliminate provisions criminalizing defamation ", - "values": [ - "Freedom of opinion and expression" - ] - }, - { - "text": "Complete the process of ensuring that the Ombudsman Institution is fully compliant with the Paris Principles, at the earliest", - "values": [ - "National Human Rights Institution" - ] - }, - { - "text": "Take into account the observations made by the Human Rights Committee and the Special Rapporteur on the promotion and protection of human rights while countering terrorism. ", - "values": [ - "Counter-terrorism", - "Special procedures", - "Treaty bodies" - ] - }, - { - "text": "Implement the Government's intention to establish an independent national human rights institution in conformity with the Paris Principles ", - "values": [ - "National Human Rights Institution" - ] - }, - { - "text": "Investigate the serious human rights violations committed since independence and prosecute those responsible", - "values": [ - "Justice" - ] - }, - { - "text": "Continue efforts to solve problems related to the penitentiary system, in particular overcrowding in prisons", - "values": [ - "Detention" - ] - }, - { - "text": "Continue to support the reform of the legislation on domestic violence by conducting public awareness-raising and providing professional training on the provisions of the 2010 Act on the Prevention of Domestic Violence to ensure its effective implementation ", - "values": [ - "Human rights education and training", - "Rights of the Child", - "Women's rights" - ] - }, - { - "text": "Introduce a moratorium on the death penalty as a short-term objective and consider the full abolition of the death penalty and accession to the Second Optional Protocol to the International Covenant on Civil and Political Rights, aiming at the abolition of the death penalty", - "values": [ - "Death penalty", - "International instruments" - ] - }, - { - "text": "Strengthen policies on accessibility to ensure that persons with disabilities can enjoy their rights", - "values": [ - "Disabilities" - ] - }, - { - "text": "Continue its efforts in ensuring gender equality and to diversify academic and vocational choices for women and men and take further measures to encourage women and men to choose non-traditional fields of education and careers", - "values": [ - "Women's rights" - ] - }, - { - "text": "Continue its policy to improve the lives of certain categories of persons belonging to minorities, such as the "travellers" ", - "values": [ - "Minorities" - ] - }, - { - "text": "Continue efforts to ensure that its domestic legislations are in line with international human rights standards", - "values": [ - "International instruments" - ] - }, - { - "text": "Consider and concur with the recommendation of the Committee on the Elimination of Racial Discrimination to ratify the amendments to article 8, paragraph 6 of the International Convention on the Elimination of Racial Discrimination ", - "values": [ - "International instruments", - "Racial discrimination", - "Treaty bodies" - ] - }, - { - "text": "Speed up the implementation of legal framework, as well as improve systems and procedures for the administration of justice and to make further progress on public governance", - "values": [ - "Justice" - ] - }, - { - "text": "Foster partnerships between the government, national human rights institutions, and civil society ", - "values": [ - "Civil society", - "National Human Rights Institution" - ] - }, - { - "text": "Further improve the regulatory framework for lawyers conducive to the unhindered exercise of their profession, and continue to harmonize laws and regulations with international standards", - "values": [ - "Justice" - ] - }, - { - "text": "Fully implement the Second National Plan on Human Trafficking and Sex Trafficking, with particular emphasis on measures to support victims, such as legal, medical and psychological support and provision of shelters ", - "values": [ - "Trafficking" - ] - }, - { - "text": "Look into measures to protect the best interests, needs and physical, social and psychological development of babies and children affected by parental detention or imprisonment.", - "values": [ - "Rights of the Child" - ] - }, - { - "text": "Ensure that the recently enacted media laws are implemented in full respect for the fundamental right to freedom of opinion and expression ", - "values": [ - "Freedom of opinion and expression", - "Freedom of the press" - ] - }, - { - "text": "Ensure that all asylum-seekers in Ireland can effectively accede to the process of determination of their refugee condition and that decisions on the necessity for international protection can be reviewed and are subject to independent judicial supervision", - "values": [ - "Asylum-seekers - refugees", - "Justice" - ] - }, - { - "text": "Establish a legal and institutional framework consistent with the international standards on combating the trafficking of persons to effectively address this problem", - "values": [ - "Trafficking" - ] - }, - { - "text": "Submit its pending reports to the relevant treaty bodies and, to this end, seek technical assistance to strengthen its capacity for preparing the relevant reports ", - "values": [ - "Technical assistance and cooperation", - "Treaty bodies" - ] - }, - { - "text": "Fully implement the National Strategic Development Plan aimed at reducing poverty and achieving sustainable development, including through the enactment of the draft National Policy on Social Development", - "values": [ - "Development", - "Poverty" - ] - }, - { - "text": "Include in its legislation a definition of sex trafficking in line with international law ", - "values": [ - "Trafficking" - ] - }, - { - "text": "Implement in full the Optional Protocol to the Convention against Torture, which Lebanon acceded to in 2008, in particular by establishing a national preventative mechanism as a matter of priority", - "values": [ - "Detention", - "International instruments", - "Torture and other CID treatment" - ] - }, - { - "text": "Continue to take the necessary measures to make sure that all the population has easy access to free birth registration for newborns", - "values": [ - "Rights of the Child", - "Statelessness and the right to nationality" - ] - }, - { - "text": "Ratify CAT, ICRMW, ICERD and the Optional Protocol to ICCPR", - "values": [ - "CP rights - general", - "International instruments", - "Labour", - "Migrants", - "Racial discrimination", - "Torture and other CID treatment" - ] - }, - { - "text": "Take steps to strengthen the rule of law and independence of the judiciary by promptly and thoroughly investigating all threats and incidents of violence against government opposition members and their supporters", - "values": [ - "Freedom of association and peaceful assembly", - "Justice" - ] - }, - { - "text": "Cooperate fully with the International Criminal Court ", - "values": [ - "Justice" - ] - }, - { - "text": "Abolish the death penalty or, if not, establish a moratorium, consistent with Australia's support for its universal abolition", - "values": [ - "Death penalty" - ] - }, - { - "text": "Enact legislation prohibiting violence against children in all settings", - "values": [ - "Rights of the Child" - ] - }, - { - "text": "Continue reforms in the system of the law-enforcement agencies and the judicial system ", - "values": [ - "Justice" - ] - }, - { - "text": "Amend or repeal the Public Order and Security Act", - "values": [ - "Freedom of association and peaceful assembly" - ] - }, - { - "text": "Ensure that laws on indigenous peoples as well as their implementation comply with the Declaration on the Rights of Indigenous Peoples", - "values": [ - "Indigenous peoples", - "International instruments" - ] - }, - { - "text": "Ensure that hate crimes, acts of violence, racist and xenophobic views are investigated and that the perpetrators of these crimes are brought to justice", - "values": [ - "Racial discrimination" - ] - }, - { - "text": "Ratify the ILO Equality of Treatment Social Security Convention, 1962 No. 118", - "values": [ - "International instruments", - "Labour" - ] - }, - { - "text": "Further improve accountability structures with a view to eradicate impunity ", - "values": [ - "Impunity" - ] - }, - { - "text": "Persist in its efforts to improve the system of medical care and health care coverage in the country", - "values": [ - "Right to health" - ] - }, - { - "text": "Further strengthen consultations with indigenous populations to fulfil their economic, social and cultural rights", - "values": [ - "ESC rights - general", - "Indigenous peoples" - ] - }, - { - "text": "Accede to the International Convention for the Protection of All Persons from Enforced Disappearance - CED -, and recognize the competence of the Committee on enforced disappearance under articles 31 and 32 of the Convention ", - "values": [ - "Enforced disappearances", - "International instruments" - ] - }, - { - "text": "Ensure a safe and enabling environment for journalists to perform their work independently and without undue interference, and increase measures to prevent attacks and violence against them", - "values": [ - "Freedom of the press" - ] - }, - { - "text": "Accede to the Convention Relating to the Status of Stateless Persons 1954 and the Convention on the Reduction of Statelessness 1961, and ensure that language requirements relating to employment are implemented in a fair and objective manner and that the rights of ethnic and linguistic minorities are actively promoted and protected", - "values": [ - "International instruments", - "Minorities", - "Statelessness and the right to nationality" - ] - }, - { - "text": "Ratify without delay the Council of Europe Convention on Preventing and Combating Violence against Women and Domestic Violence and expedite the harmonization of legislation in accordance with it", - "values": [ - "International instruments", - "Rights of the Child", - "Women's rights" - ] - }, - { - "text": "Continue consolidating the work of the National Human Rights Council to strengthen relevant public policy", - "values": [ - "National Human Rights Institution" - ] - }, - { - "text": "Refrain from adopting laws that have the effect of limiting the right to freedom of expression and association", - "values": [ - "Freedom of association and peaceful assembly", - "Freedom of opinion and expression" - ] - }, - { - "text": "Continue with the measures aimed at eradicating gender discrimination, particularly in relation to migrant women", - "values": [ - "Migrants", - "Women's rights" - ] - }, - { - "text": "Guarantee freedom of expression and media and ensure that national legislation fully complies with international freedom of expression standards", - "values": [ - "Freedom of opinion and expression", - "Freedom of the press" - ] - }, - { - "text": "Guarantee the effective exercise of freedom of expression, assembly and association by reforming its legislation particularly in order not to undermine the legitimate work of NGOs and human rights defenders", - "values": [ - "Civil society", - "Freedom of association and peaceful assembly", - "Freedom of opinion and expression", - "Human rights defenders" - ] - }, - { - "text": "Ratify the Rome Statute of the ICC as well as OP-CAT and establish a National Torture Prevention Mechanism", - "values": [ - "Detention", - "International instruments", - "Justice", - "Torture and other CID treatment" - ] - }, - { - "text": "Submit the long outstanding reports to the Human Rights Committee and to the Committee on the Elimination of Racial Discrimination", - "values": [ - "CP rights - general", - "Racial discrimination", - "Treaty bodies" - ] - }, - { - "text": "Consider ratifying other core international human rights instruments, starting with the International Convention on the Elimination of All Forms of Racial Discrimination (ICERD) and the instruments mentioned in paragraph 158 of the report, as well as the International Convention on the Protection of the Rights of All Migrant Workers and Members of Their Families (ICRMW) ", - "values": [ - "International instruments", - "Labour", - "Migrants", - "Racial discrimination" - ] - }, - { - "text": "Redouble efforts to sensitize and to train law enforcement officials on human rights criteria related to their fields of work", - "values": [ - "Human rights education and training" - ] - }, - { - "text": "Take measures to eradicate trafficking in persons, with particular attention to the trafficking of children", - "values": [ - "Rights of the Child", - "Trafficking" - ] - }, - { - "text": "Ratify the Convention against Torture and the International Covenant on Civil and Political Rights", - "values": [ - "CP rights - general", - "International instruments", - "Torture and other CID treatment" - ] - }, - { - "text": "Continue its good work of contributing to the United Nations and its human rights mechanisms", - "values": [ - "Other" - ] - }, - { - "text": "Intensify efforts to transfer land and to systematically consult with indigenous peoples before granting licences for economic exploitation.", - "values": [ - "Indigenous peoples", - "Right to land" - ] - }, - { - "text": "Ensure investigation of all allegations of torture and ill-treatment, bring perpetrators to justice in compliance with international standards for fair trials and provide rehabilitation for victims ", - "values": [ - "Torture and other CID treatment" - ] - }, - { - "text": "Look at how to reduce its dependence on institution-based care for children", - "values": [ - "Rights of the Child" - ] - }, - { - "text": "Establish a national institution for protection of human rights in conformity with the Paris Principles", - "values": [ - "National Human Rights Institution" - ] - }, - { - "text": "Consider acceding to human rights conventions that it has yet to ratify, particularly the International Convention on the Protection of the Rights of All Migrant Workers and Members of their Families and ILO Convention 189 ", - "values": [ - "International instruments", - "Labour", - "Migrants" - ] - }, - { - "text": "Strengthen mechanisms to detect, investigate and punish cases of gender-based violence and bride kidnapping, train law enforcement officials to deal with such cases, and provide legal and medical support to victims", - "values": [ - "Women's rights" - ] - }, - { - "text": "Share its experience and best practices in realization of the right to food and the fight against poverty, in particular in the area of micro-credit, with other developing countries", - "values": [ - "Poverty", - "Right to food" - ] - }, - { - "text": "Ratify the International Convention for the Protection of All Persons from Enforced Disappearance, the Convention on the Rights of Persons with Disabilities and the Statute of the International Criminal Court", - "values": [ - "Disabilities", - "Enforced disappearances", - "International instruments", - "Justice" - ] - }, - { - "text": "Reinforce measures to combat and prevent xenophobia and related violence ", - "values": [ - "Racial discrimination" - ] - }, - { - "text": "Investigate all cases of police brutality and torture, e.g., death of Mr. Pema Tsepak in Chambo in January this year", - "values": [ - "Extrajudicial executions", - "Torture and other CID treatment" - ] - }, - { - "text": "Offer a standing invitation to all special procedures and seek international technical assistance as recommended by several United Nations human rights treaty monitoring bodies.", - "values": [ - "Special procedures", - "Technical assistance and cooperation", - "Treaty bodies" - ] - }, - { - "text": "Take measures to eradicate traditional stereotypes of women, especially through educational programmes, and enact legislation on domestic violence", - "values": [ - "Rights of the Child", - "Women's rights" - ] - }, - { - "text": "Take the necessary measures to ensure gender equality and revise the provisions of the Personal and Family Code which are not in compliance with international human rights norms relating to the rights of women ", - "values": [ - "International instruments", - "Women's rights" - ] - }, - { - "text": "Protect human rights defenders and ensure that they are able to carry out their work free from harassment and intimidation", - "values": [ - "Human rights defenders" - ] - }, - { - "text": "Ensure the systematic enforcement of laws eliminating child labour, including the establishment of a clear minimum age for domestic work", - "values": [ - "Labour", - "Rights of the Child" - ] - }, - { - "text": "Take stronger steps to fight widespread crime and violence, with a special emphasis on bringing to justice of those responsible ", - "values": [ - "General" - ] - }, - { - "text": "Take concrete steps towards ratifying the Rome Statute of the International Criminal Court as early as possible", - "values": [ - "International instruments", - "Justice" - ] - }, - { - "text": "Continue to submit its reports on the implementation of the Convention on the Elimination of All Forms of Discrimination against Women ", - "values": [ - "Treaty bodies", - "Women's rights" - ] - }, - { - "text": "Extend a standing invitation to all mandate holders ", - "values": [ - "Special procedures" - ] - }, - { - "text": "Lift the ban on all forms of public assembly and demonstration ", - "values": [ - "Freedom of association and peaceful assembly" - ] - }, - { - "text": "Speed up the process underway to ratify the International Convention on the Protection of the Rights of All Migrants Workers and Members of Their Families", - "values": [ - "International instruments", - "Labour", - "Migrants" - ] - }, - { - "text": "Ensure full and unhindered humanitarian access, in the territories under control, to all people in need", - "values": [ - "Other" - ] - }, - { - "text": "Submit its overdue report to the Committee against Torture at the earliest time.", - "values": [ - "Torture and other CID treatment", - "Treaty bodies" - ] - }, - { - "text": "Continue current efforts to ensure equality between men and women ", - "values": [ - "Women's rights" - ] - }, - { - "text": "Adopt a comprehensive legal framework explicitly prohibiting discrimination on the various grounds that are currently subsumed under article 4 of the Declaration of Citizens' Rights", - "values": [ - "Other" - ] - }, - { - "text": "Expand social programmes for the promotion of youth employment", - "values": [ - "Development" - ] - }, - { - "text": "Take immediate actions to fully guarantee the right to freedom of expression for everyone", - "values": [ - "Freedom of opinion and expression" - ] - }, - { - "text": "Immediately end all human rights violations against civilians in relation to their peaceful exercise of freedom of expression and assembly", - "values": [ - "Freedom of association and peaceful assembly", - "Freedom of opinion and expression" - ] - }, - { - "text": "Continue strengthening the efforts to ratify the ICED", - "values": [ - "Enforced disappearances", - "International instruments" - ] - }, - { - "text": "Resolve issues related to truth, justice and reconciliation within the national framework", - "values": [ - "Justice" - ] - }, - { - "text": "The Tongan Government believes that social, economic and cultural rights are important. It is fully committed to a vigorous development of Tonga's economic, social and cultural goals. It has consistently pursued a progressive agenda on social, economic and cultural policy and can point to the practical strategies of SDP8 and increased funding for education and healthcare as evidence of its commitment", - "values": [ - "ESC rights - general", - "Right to education", - "Right to health" - ] - }, - { - "text": "Take appropriate measures in combating discrimination and marginalization against vulnerable groups, particularly migrants, minorities, women, children and persons with disabilities ", - "values": [ - "Disabilities", - "Migrants", - "Minorities", - "Rights of the Child", - "Women's rights" - ] - }, - { - "text": "Respond positively to visits already requested by special procedures.", - "values": [ - "Special procedures" - ] - }, - { - "text": "Create an independent mechanism to look into the issue of disappeared persons with its own unique database", - "values": [ - "Enforced disappearances" - ] - }, - { - "text": "Give continuity to fighting poverty and underdevelopment ", - "values": [ - "Development", - "Poverty" - ] - }, - { - "text": "Consider ratifying the Council of Europe's Convention on Preventing and Combating Violence against Women and Domestic Violence", - "values": [ - "International instruments", - "Rights of the Child", - "Women's rights" - ] - }, - { - "text": "Take appropriate measures in the legislative sphere, including allocations of financial resources with a view to strengthening the office of the Ombudsman and bring it in line with the Paris Principles", - "values": [ - "National Human Rights Institution" - ] - }, - { - "text": "Agree to the request for visit by the Special Rapporteur on the Rights and Fundamental Freedoms of Indigenous Peoples.", - "values": [ - "Indigenous peoples", - "Special procedures" - ] - }, - { - "text": "Respond to the allegation communications of the special procedures ", - "values": [ - "Special procedures" - ] - }, - { - "text": "Further strengthen the protection of the rights of minorities, including lesbian, gay, bisexual, transgender and intersex persons and the Roma community, by effective implementation of existing legislation and effective law enforcement", - "values": [ - "Minorities", - "Sexual Orientation and Gender Identity" - ] - }, - { - "text": "Set up a policy specifically aimed at reducing the number of Roma children placed without valid reasons in establishments for children with disabilities or in rehabilitation centres", - "values": [ - "Minorities", - "Rights of the Child" - ] - }, - { - "text": "Continue its cooperation with the international and regional human rights mechanisms, in particular in the area of technical assistance and training", - "values": [ - "Technical assistance and cooperation" - ] - }, - { - "text": "Allow unhindered and sustained access for humanitarian agencies and workers and restore basic services including unhindered access to hospitals", - "values": [ - "Right to health" - ] - }, - { - "text": "Guarantee the protection of fundamental freedoms even in counter-terrorist legislation.", - "values": [ - "Counter-terrorism" - ] - }, - { - "text": "Take the necessary steps to enhance the capacity of the National Human Rights Commission of Mongolia to enable it to carry out its mandate freely and independently for it to comply with the Paris Principles", - "values": [ - "National Human Rights Institution" - ] - }, - { - "text": "Continue promoting gender equality in order to explicitly eliminate all forms of discrimination against women", - "values": [ - "Women's rights" - ] - }, - { - "text": "Immediately ratify ICCPR and its Optional Protocols, and incorporate the provisions into national legislation", - "values": [ - "CP rights - general", - "Death penalty", - "International instruments" - ] - }, - { - "text": "Reinforce measures to compensate and resettle indigenous communities forcibly removed from their land", - "values": [ - "Indigenous peoples", - "Right to land" - ] - }, - { - "text": "Introduce structured coordination between the Confederation, the cantons and civil society with regard to the implementation of the recommendations made in the universal periodic review, to ensure all parts of the Swiss governing system are informed about human rights issues", - "values": [ - "UPR process" - ] - }, - { - "text": "Ratify the Optional Protocol to the Convention on the Elimination of all Forms of Discrimination against Women", - "values": [ - "International instruments", - "Women's rights" - ] - }, - { - "text": "Continue improving the situation of women through pro-women policies.", - "values": [ - "Women's rights" - ] - }, - { - "text": "Continue the path regarding positive results achieved in ensuring the rights and equal opportunities of persons with disabilities by, inter alia, allocating sufficient resources for the development of an inclusive education system for children with disabilities and providing sufficient and adequate support services in local communities to enable persons with disabilities to live independently", - "values": [ - "Disabilities", - "Rights of the Child" - ] - }, - { - "text": "Provide full implementation of the National Policy for the Protection of Human Rights Defenders", - "values": [ - "Human rights defenders" - ] - }, - { - "text": "Continue implementing measures and funding programmes to combat anti-Semitism", - "values": [ - "Freedom of religion and belief", - "Racial discrimination" - ] - }, - { - "text": "Ensure impartial, full and prompt investigations into all allegations of torture and other cruel, inhuman or degrading treatment, as well as appropriate prosecution and punishment of the perpetrators ", - "values": [ - "Torture and other CID treatment" - ] - }, - { - "text": "Carry out a review of all 50 newly adopted laws since 2001 on combating terrorism, and of their application in practice so as to check their compliance with Australia's human rights obligations ", - "values": [ - "Counter-terrorism" - ] - }, - { - "text": "Continue its positive efforts and share its experiences, best practices and lessons learned, such as in the field of women's rights and the empowerment of women, and in the struggle against racism and racial discrimination.", - "values": [ - "Racial discrimination", - "Women's rights" - ] - }, - { - "text": "Accede to the 1951 Convention relating to the Status of Refugees and the 1967 Protocol", - "values": [ - "Asylum-seekers - refugees", - "International instruments" - ] - }, - { - "text": "Take measures to eliminate corporal punishment as a legitimate sanction in the law and to discourage its use in schools with a view to its eventual and total abolition.", - "values": [ - "Rights of the Child", - "Torture and other CID treatment" - ] - }, - { - "text": "Continue taking measures to develop legislation and policies at federal, state and municipal level to punish and prevent hate crimes and discrimination against the lesbian, gay, bisexual, transgender and intersex population", - "values": [ - "Sexual Orientation and Gender Identity" - ] - }, - { - "text": "Consider acceding to CEDAW", - "values": [ - "International instruments", - "Women's rights" - ] - }, - { - "text": "Strengthen protection of journalists against intimidation, death threats and attacks", - "values": [ - "Freedom of the press" - ] - }, - { - "text": "Further address human rights issues in the country, especially through promoting human rights education ", - "values": [ - "Human rights education and training" - ] - }, - { - "text": "Continue efforts to establish a national human rights commission in accordance with the Paris Principles", - "values": [ - "National Human Rights Institution" - ] - }, - { - "text": "Work towards the earliest possible adoption and effective implementation of the Law on Social Protection ", - "values": [ - "ESC rights - general" - ] - }, - { - "text": "Adopt effective measures and an anti-discrimination Act to address racial problems ", - "values": [ - "Racial discrimination" - ] - }, - { - "text": "Develop legislation and measures to implement it to better protect rights of women and ensuring gender equality ", - "values": [ - "Women's rights" - ] - }, - { - "text": "Effectively fight against arbitrary and on-duty police killings, in particular by creating a strong framework for impartial investigation", - "values": [ - "Extrajudicial executions", - "Human rights violations by state agents" - ] - }, - { - "text": "Strengthen measures already adopted with regard to the rights of children with disabilities", - "values": [ - "Disabilities", - "Rights of the Child" - ] - }, - { - "text": "Fully implement the reform of the criminal justice system in all Mexican states as soon as possible", - "values": [ - "Justice" - ] - }, - { - "text": "Take stronger measures to address the problem of organized crimes and drug trafficking, in particular, to focus on the link between drug trafficking and trafficking in women and girls.", - "values": [ - "Rights of the Child", - "Trafficking", - "Women's rights" - ] - }, - { - "text": "Implement fully the Geneva communiqué of 2012 and Security Council resolution 2254 (2015) ", - "values": [ - "Other" - ] - }, - { - "text": "Take measures in order to improve and create additional favourable conditions to facilitate access to education for persons with disabilities", - "values": [ - "Disabilities", - "Right to education" - ] - }, - { - "text": "Take the measures necessary to ensure that eviction is a last resort, and to adopt legislation and guidelines that strictly define the relevant circumstances and safeguards for the moment when an eviction is carried out", - "values": [ - "Right to housing" - ] - }, - { - "text": "Take appropriate measures to ensure that torture does not occur in cases of detention, to improve the overall conditions for persons in detention, and to sign and ratify CAT and the Optional Protocol thereto", - "values": [ - "Detention", - "International instruments", - "Torture and other CID treatment" - ] - }, - { - "text": "Introduce at the earliest a moratorium on the death penalty", - "values": [ - "Death penalty" - ] - }, - { - "text": "Improve further the child protection system and create conditions for ensuring the rights of the child to grow and develop in the family environment", - "values": [ - "Rights of the Child" - ] - }, - { - "text": "Tighten cooperation with the human rights mechanisms of the United Nations, allowing visits of the Special proceduress mandate holders ", - "values": [ - "Special procedures" - ] - }, - { - "text": "Ratify the main human rights instruments to which Bahrain is not yet party, and adapt its national legislation to these and withdraw its reservations to the Convention on the Elimination of All Forms of Discrimination against Women", - "values": [ - "International instruments", - "Women's rights" - ] - }, - { - "text": "Withdraw the reservation to article 2 and 16 of CEDAW", - "values": [ - "International instruments", - "Women's rights" - ] - }, - { - "text": "Take steps to ensure equality between men and women, in particular, take measures to guarantee that women enjoy equal pay for work of equal value as provided by the Labour Code, such as enhancing labour inspection measures and addressing the issue of ineffective implementation of the law, increasing awareness and favouring access to justice for affected women ", - "values": [ - "Women's rights" - ] - }, - { - "text": "Continue to increase the investment in poverty alleviation and gradually raise the standards for poverty alleviation, and thereby reduce the number of impoverished population", - "values": [ - "Poverty" - ] - }, - { - "text": "Ratify the Convention on the Rights of the Child and the Convention against Torture", - "values": [ - "International instruments", - "Rights of the Child", - "Torture and other CID treatment" - ] - }, - { - "text": "Adopt laws guaranteeing compulsory birth registration", - "values": [ - "Rights of the Child", - "Statelessness and the right to nationality" - ] - }, - { - "text": "Enhance the information infrastructure for the Cuban society and share its experience in broadening access to information and communications technology", - "values": [ - "Freedom of opinion and expression" - ] - }, - { - "text": "Speed up the review of the draft Immigration policy", - "values": [ - "Migrants" - ] - }, - { - "text": "Maintain and intensify the efforts towards the elimination of poverty and social inequality ", - "values": [ - "Poverty" - ] - }, - { - "text": "Continue efforts to ensure respect for the rights of the child including developing a comprehensive national strategy to prevent and combat all forms of violence against children including domestic violence, sexual trafficking and exploitation of the children", - "values": [ - "Rights of the Child", - "Trafficking" - ] - }, - { - "text": "Foster policies that make it possible to reduce the youth unemployment rate, through providing opportunities for youth to have work, as well as avoiding stigmatization of people with disabilities and those coming to the world of work from national minorities", - "values": [ - "Disabilities", - "Labour", - "Minorities" - ] - }, - { - "text": "Take forward the electoral process", - "values": [ - "Elections" - ] - }, - { - "text": "Intensify efforts to combat effectively the manifestations of hatred suffered by minorities", - "values": [ - "Minorities", - "Racial discrimination" - ] - }, - { - "text": "Extend a standing invitation to all special procedures of the Human Rights Council ", - "values": [ - "Special procedures" - ] - }, - { - "text": "Sign and ratify the International Convention for the Protection of All Persons from Enforced Disappearances and recognize the competence of the Committee on Enforced Disappearances to receive and consider communications on the subject", - "values": [ - "International instruments", - "Justice" - ] - }, - { - "text": "Fully implement the Rome Statute of the International Criminal Court in national law ", - "values": [ - "International instruments", - "Justice" - ] - }, - { - "text": "Become a party to the remaining Optional Protocol to the Convention on the Rights of the Child on a communications procedure ", - "values": [ - "International instruments", - "Rights of the Child" - ] - }, - { - "text": "Establish a moratorium on the application of the death penalty as a first stage toward its definitive abolition", - "values": [ - "Death penalty" - ] - }, - { - "text": "Consider ratifying CRPD, believing that the ratification should follow recent measures such as the launch of the 2009 National Policy on Disability and the establishment of the National Advisory Committee on Disability ", - "values": [ - "Disabilities", - "International instruments" - ] - }, - { - "text": "Establish an encompassing framework of judicial and non-judicial measures to ensure transitional justice, including the creation of a national mechanism of truth, justice and reconciliation and an office for reparations", - "values": [ - "Justice" - ] - }, - { - "text": "Poland will ratify the Second Optional Protocol to the International Covenant on Civil and Political Rights aiming at the abolition of death penalty", - "values": [ - "Death penalty", - "International instruments" - ] - }, - { - "text": "Formally abolish the death penalty for all cases and under all circumstances, as well as ratify the Second optional Protocol to the International Covenant on Civil and Political Rights ", - "values": [ - "Death penalty", - "International instruments" - ] - }, - { - "text": "Consider additional steps to improve conditions for children from vulnerable backgrounds.", - "values": [ - "Rights of the Child" - ] - }, - { - "text": "Provide, in accordance with its obligations under international human rights instruments, effective protection for the family as the fundamental and natural unit of society ", - "values": [ - "International instruments" - ] - }, - { - "text": "Respect and promote the right to freedom of expression, association and assembly, create an enabling environment for the establishment and operation of non-governmental organizations and media and remove all legal administrative and procedural obstacles which prevent this ", - "values": [ - "Civil society", - "Freedom of association and peaceful assembly", - "Freedom of opinion and expression", - "Freedom of the press" - ] - }, - { - "text": "Intensify its actions to address the problem of racially motivated crimes and excessive use of force by police against the Roma community and persons belonging to other vulnerable groups.", - "values": [ - "Human rights violations by state agents", - "Minorities", - "Racial discrimination" - ] - }, - { - "text": "Take up all effective measures in order to effectively tackle reported phenomena of violence against women and girls, domestic and sexual violence, as well as femicide", - "values": [ - "Rights of the Child", - "Women's rights" - ] - }, - { - "text": "Harmonize the penal code applied in cases of war crimes, in addition to the review of verdicts where appropriate. In addition, it is necessary to define adequately the condition of victims of war and to provide necessary reparation", - "values": [ - "Justice" - ] - }, - { - "text": "Prevent and combat domestic violence", - "values": [ - "Rights of the Child", - "Women's rights" - ] - }, - { - "text": "Take concrete measures to prevent and combat violence against members of other minorities and vulnerable groups, especially racially motivated hate crimes against and discrimination of the Roma and to promote their integration into society ", - "values": [ - "Minorities", - "Racial discrimination" - ] - }, - { - "text": "Increase use of non-custodial measures during the period before the imposition of a sentence", - "values": [ - "Detention" - ] - }, - { - "text": "Reinforce anti-corruption laws", - "values": [ - "Corruption" - ] - }, - { - "text": "Reconsider decrees and laws in force which limit freedoms of expression and assembly (such as Article 112 of the Penal Code and the Computer Crimes Act (2007)", - "values": [ - "Freedom of association and peaceful assembly", - "Freedom of opinion and expression" - ] - }, - { - "text": "Ensure, as quickly as possible, the effective implementation of the Technical guide for the comprehensive treatment of non-punishable abortion at the national level so that access to legal abortion is guaranteed in practice", - "values": [ - "Women's rights" - ] - }, - { - "text": "Accelerate the deliberations on the draft law on domestic violence ", - "values": [ - "Rights of the Child", - "Women's rights" - ] - }, - { - "text": "Fully implement legislation on domestic violence", - "values": [ - "Rights of the Child", - "Women's rights" - ] - }, - { - "text": "Accelerate the domestic legislative process for preventing and combating enforced disappearances, in order to enable accession to CPED and recognize the competence of its Committee ", - "values": [ - "Enforced disappearances", - "International instruments", - "Treaty bodies" - ] - }, - { - "text": "Ensure that indigenous peoples are protected from threats, attacks and forced evictions", - "values": [ - "Indigenous peoples" - ] - }, - { - "text": "Take effective measures to uphold the right to life and the total prohibition of torture in Guinea ", - "values": [ - "Other", - "Torture and other CID treatment" - ] - }, - { - "text": "Continue efforts to establish a national institution in accordance with the Paris Principles.", - "values": [ - "National Human Rights Institution" - ] - }, - { - "text": "Continue improving the level of education of the population and putting into practice, among other measures, the State Programme of Education Development up to 2020", - "values": [ - "Right to education" - ] - }, - { - "text": "Continue working to establish a national human rights institution in accordance with the Paris Principles", - "values": [ - "National Human Rights Institution" - ] - }, - { - "text": "Review national legislation with the aim of decriminalizing homosexuality between consenting adults and prohibiting discrimination on the grounds of sexual orientation and gender identity ", - "values": [ - "Sexual Orientation and Gender Identity" - ] - }, - { - "text": "Fully ensure linguistic, religious and other rights of minorities, in compliance with international obligations", - "values": [ - "ESC rights - general", - "Freedom of religion and belief", - "Minorities" - ] - }, - { - "text": "Provide all victims of violence against women an unhindered access to justice and ensure that all perpetrators are brought to justice in accordance with international standards ", - "values": [ - "Women's rights" - ] - }, - { - "text": "Consider abolishing the death penalty ", - "values": [ - "Death penalty" - ] - }, - { - "text": "Ensure access to religious sites, especially in the Holy City of Jerusalem, and abolish all restrictions imposed on the right to freedom of movement and the right to manifest one's religion. ensure the preservation of the cultural and religious heritage in the Occupied Palestinian Territories, particularly in Jerusalem, and refrain from any actions that aim at changing the character and-or status of these sites.", - "values": [ - "Freedom of religion and belief" - ] - }, - { - "text": "Establish a moratorium on the use of the death penalty with a view to its abolition, and, in the meantime, ensure full compliance in all death penalty cases with international fair trial standards ", - "values": [ - "Death penalty" - ] - }, - { - "text": "Continue its efforts to alleviate poverty reduction", - "values": [ - "Poverty" - ] - }, - { - "text": "Provide the TRCT with necessary power, sufficient resources, and the continued independence it requires to be effective", - "values": [ - "Justice" - ] - }, - { - "text": "Take steps to more effectively integrate Roma into Serbian society", - "values": [ - "Minorities" - ] - }, - { - "text": "Undertake legislative reforms so that protection and promotion of laws on the freedom of expression and peaceful assemblies and associations would be guaranteed to all the residents of the country ", - "values": [ - "Freedom of association and peaceful assembly", - "Freedom of opinion and expression" - ] - }, - { - "text": "Cease all planned executions of juvenile offenders, and to prohibit the imposition of the death penalty for crimes committed by minors", - "values": [ - "Death penalty", - "Rights of the Child" - ] - }, - { - "text": "Adopt and implement a law that will integrate the provisions of the African Union Convention for the protection and assistance of Displaced Persons in Africa at the national level", - "values": [ - "Internally displaced persons" - ] - }, - { - "text": "Promote its efforts to combat violence against women and realizing further equality between women and men", - "values": [ - "Women's rights" - ] - }, - { - "text": "Create permanent and sustainable programmes for education and training in human rights for public officials, particularly members of the armed forces, the police and the judiciary, emphasizing protection for the most vulnerable groups", - "values": [ - "Human rights education and training" - ] - }, - { - "text": "Continue in its implementation of the Millennium Development Goals, with the necessary support of the international community, in order to reduce infant mortality rates, improve maternal health and strengthen the fight against HIV-AIDS, malaria and other illnesses.", - "values": [ - "Development", - "HIV - Aids", - "Right to health", - "Technical assistance and cooperation" - ] - }, - { - "text": "Adopt a law abolishing the death penalty", - "values": [ - "Death penalty" - ] - }, - { - "text": "Continue efforts in enhancing the autonomy of women", - "values": [ - "Women's rights" - ] - }, - { - "text": "Extend a standing Invitation to the Special Procedures in order to improve its cooperation with the international community in the field of human rights", - "values": [ - "Special procedures", - "Technical assistance and cooperation" - ] - }, - { - "text": "Take concrete measures to prevent racially motivated crimes and investigate and prosecute all acts of political discourse against minorities", - "values": [ - "Minorities", - "Racial discrimination" - ] - }, - { - "text": "Ensure the full implementation of the National Action Plan on Female Genital Mutilation, and enact the law criminalizing this practice that had been proposed in the revision of the Penal Code two years ago ", - "values": [ - "Rights of the Child", - "Torture and other CID treatment", - "Women's rights" - ] - }, - { - "text": "Strengthen the framework of the "Support Program for Teaching and Learning" to reduce inequalities between rural and urban areas", - "values": [ - "Right to education" - ] - }, - { - "text": "Take steps to ensure that female prisoners are guarded by female prison officers exclusively ", - "values": [ - "Detention", - "Women's rights" - ] - }, - { - "text": "Take measures to further protect and promote the rights of women, including by enforcing laws against domestic violence ", - "values": [ - "Women's rights" - ] - }, - { - "text": "Promote legislation that is in keeping with the Convention on the Elimination of All Forms of Discrimination against Women, including on preventing violence against women", - "values": [ - "International instruments", - "Women's rights" - ] - }, - { - "text": "Strengthen the national human rights institution, and adapt it fully to the Paris Principles, with a broad and clear mandate, and adequate funding ", - "values": [ - "National Human Rights Institution" - ] - }, - { - "text": "Implement measures that strengthen the protection of the rights of children and adolescents in order to eradicate child labour and prohibit the sexual exploitation of children", - "values": [ - "Labour", - "Rights of the Child" - ] - }, - { - "text": "Continue efforts to put an end to the practice of female genital mutilation ", - "values": [ - "Rights of the Child", - "Torture and other CID treatment", - "Women's rights" - ] - }, - { - "text": "Make further efforts to increase girls' enrolment in school, as well as awareness-raising in society regarding the importance of girls' education", - "values": [ - "Right to education", - "Rights of the Child", - "Women's rights" - ] - }, - { - "text": "Respect the right of the Palestinians to self-determination and the establishment of their independent State with Jerusalem as its capital as stipulated in various international treaties.", - "values": [ - "Other" - ] - }, - { - "text": "Allocate the necessary means to assess and measure the scope of the phenomenon of corruption in the country", - "values": [ - "Corruption" - ] - }, - { - "text": "Ratify and accede to the Convention against Torture, the International Convention on the Protection of the Rights of All Migrant Workers and Members of Their Families and the International Convention for the Protection of All Persons from Enforced Disappearance ", - "values": [ - "Enforced disappearances", - "International instruments", - "Labour", - "Migrants", - "Torture and other CID treatment" - ] - }, - { - "text": "Implement and apply human rights legislation in practice as well as implement the ombudsman's recommendations", - "values": [ - "National Human Rights Institution" - ] - }, - { - "text": "Ratify the International Covenant on Economic, Social and Cultural Rights, the Convention against Torture and the Optional Protocol to the Convention on the Rights of the Child on the sale of children, child prostitution and child pornography", - "values": [ - "ESC rights - general", - "International instruments", - "Rights of the Child", - "Torture and other CID treatment", - "Trafficking" - ] - }, - { - "text": "Continue reform towards eventual abolition of the death penalty, including greater transparency around its use", - "values": [ - "Death penalty" - ] - }, - { - "text": "Continue efforts for the protection of the rights of marginalized and vulnerable segments of society including through legislative and institutional measures", - "values": [ - "Minorities" - ] - }, - { - "text": "Improve and upgrade detention facilities.", - "values": [ - "Detention" - ] - }, - { - "text": "Enact legislation that prohibits age-based discrimination", - "values": [ - "Other" - ] - }, - { - "text": "Continue prohibiting all forms of direct or indirect discrimination including discrimination based on language, gender, race, religion or nationality", - "values": [ - "Freedom of religion and belief", - "Minorities", - "Racial discrimination", - "Women's rights" - ] - }, - { - "text": "Continue efforts to eliminate all forms of discrimination and violence against women, particularly in the labour market", - "values": [ - "Women's rights" - ] - }, - { - "text": "Continue improving its legislation towards a judicial reform with a view to having a modern legislation which adapts to new challenges", - "values": [ - "Justice" - ] - }, - { - "text": "Prevent effectively infractions with a racist or xenophobic motivation, conduct investigations and bring the perpetrators to justice ", - "values": [ - "Racial discrimination" - ] - }, - { - "text": "Adopt legislation on gender equality that fully incorporates the principle of equality between women and men, as well as the definition and prohibition of discrimination based on sex and gender", - "values": [ - "Sexual Orientation and Gender Identity", - "Women's rights" - ] - }, - { - "text": "Intensify efforts to implement the National Employment Policy in creating more employment opportunities for the youth population", - "values": [ - "Development" - ] - }, - { - "text": "Ensure that no government entities restrict the right to freedom of expression and that media regulations conform to Afghanistan's international human rights obligations, and ensure prompt and effective investigations of threats, attacks and killings of journalists in order to prevent them and to bring those responsible to justice ", - "values": [ - "Extrajudicial executions", - "Freedom of opinion and expression", - "Freedom of the press", - "International instruments" - ] - }, - { - "text": "Re-introduce the de facto moratorium of the death penalty with a view to its abolition", - "values": [ - "Death penalty" - ] - }, - { - "text": "Continue to strengthen further the right to education", - "values": [ - "Right to education" - ] - }, - { - "text": "Guarantee respect for civil and political rights, in particular freedom of expression and freedom of association, and take the necessary measures so that journalists, human rights defenders and members of all political parties can exercise their activities freely ", - "values": [ - "Freedom of association and peaceful assembly", - "Freedom of opinion and expression", - "Freedom of the press", - "Human rights defenders" - ] - }, - { - "text": "Prohibit all practices of corporal punishment of children", - "values": [ - "Rights of the Child", - "Torture and other CID treatment" - ] - }, - { - "text": "Consider including provisions against torture in its new Constitution to ensure effective redress for victims of torture ", - "values": [ - "Torture and other CID treatment" - ] - }, - { - "text": "Continue efforts to improve the level of education and health in the country", - "values": [ - "Right to education", - "Right to health" - ] - }, - { - "text": "Fully guarantee respect for freedom of expression and opinion and fully comply with its commitments under the International Covenant on Civil and Political Rights, in particular articles 19 and 22 ", - "values": [ - "Freedom of opinion and expression", - "International instruments" - ] - }, - { - "text": "Ongoing cooperation with OHCHR for the investigation, dissemination and respond to complaints put forward to special mechanisms and procedures with regard to alleged violations of human rights in the country, to present, co-sponsor and support according to the need, draft resolutions which condemn practices that are systematic violations of human rights in any part of the world, to maintain an open and ongoing invitation for cooperation with the special procedures and mechanisms, both from the United Nations system and the Inter-American system, so that they can come and see in situ what the human rights situation is in the country, to support the adoption of new instruments for protecting and promoting human rights internationally", - "values": [ - "Special procedures" - ] - }, - { - "text": "Take action to narrow the gender pay gap and to ensure equal opportunities for women on the labour market", - "values": [ - "Women's rights" - ] - }, - { - "text": "Modify national legislation to decriminalize consensual sexual relations between persons of the same sex, as recommended and accepted during the first review", - "values": [ - "Sexual Orientation and Gender Identity", - "UPR process" - ] - }, - { - "text": "Build on current efforts to address domestic and sexual violence by promoting training and public-awareness programmes, supporting the establishment of shelters for victims, and ensuring full implementation of judicial mechanisms that allow adequate investigations and punishment of perpetrators ", - "values": [ - "Human rights education and training", - "Rights of the Child", - "Women's rights" - ] - }, - { - "text": "Continue to implement additional measures to prevent discrimination against women and girls", - "values": [ - "Rights of the Child", - "Women's rights" - ] - }, - { - "text": "Continue efforts in theoretical research related to national human rights organs", - "values": [ - "Other" - ] - }, - { - "text": "Take the necessary measures to end violence against women including domestic violence and against aboriginal women, and implement CEDAW and the Human Rights Committee recommendations in this context", - "values": [ - "Indigenous peoples", - "Treaty bodies", - "Women's rights" - ] - }, - { - "text": "Extend the minimum age to 18 years for any form of labour that prevents children from accessing a full education ", - "values": [ - "Right to education", - "Rights of the Child" - ] - }, - { - "text": "Conform its national legislation to international norms on the prevention of torture, to speed up the ratification of the Convention against Torture and Other Cruel, Inhuman or Degrading Treatment or Punishment and receive the Special Rapporteur on Torture ", - "values": [ - "International instruments", - "Special procedures", - "Torture and other CID treatment" - ] - }, - { - "text": "Establish an effective and independent mechanism to register complaints filed against the Greek authorities and investigate the alleged violations", - "values": [ - "Human rights violations by state agents" - ] - }, - { - "text": "In line with the recommendations made by CERD, adopt and implement immediately legislation prohibiting any form of racial discrimination and ensure humanitarian treatment for migrants and persons of non-Irish origin, including through adequate training for judicial and police personnel", - "values": [ - "Human rights education and training", - "Migrants", - "Racial discrimination", - "Treaty bodies" - ] - }, - { - "text": "Undertake clear commitments to put an end to all forms of intimidation, harassment, aggression, arbitrary arrest and detention, and torture against all persons, in particular human rights defenders, peaceful demonstrators and journalists", - "values": [ - "Detention", - "Freedom of association and peaceful assembly", - "Freedom of the press", - "Human rights defenders", - "Torture and other CID treatment" - ] - }, - { - "text": "Take further measures to prevent the murder of women by their partners, prosecute perpetrators and improve awareness of the issue", - "values": [ - "Human rights education and training", - "Women's rights" - ] - }, - { - "text": "Continue to vigorously implement the National Approach to Eliminating Sexual and Gender Based Violence in Kiribati to ensure the full enjoyment of human rights for all persons, and accede to the Optional Protocol to the Convention on the Rights of the Child on the sale of children, child prostitution and child pornography", - "values": [ - "International instruments", - "Rights of the Child", - "Trafficking", - "Women's rights" - ] - }, - { - "text": "Adopt legislative measures to prohibit the detention of minors and to decriminalize child begging", - "values": [ - "Detention", - "Rights of the Child" - ] - }, - { - "text": "Prevent impunity for crimes against journalists and media workers", - "values": [ - "Freedom of the press" - ] - }, - { - "text": "Introduce alternative service for conscientious objectors", - "values": [ - "Freedom of religion and belief" - ] - }, - { - "text": "Continue its efforts to eliminate discrimination against women, especially those living in the rural areas ", - "values": [ - "Women's rights" - ] - }, - { - "text": "Expedite the ratification of the Optional Protocols to the Convention on the Rights of the child", - "values": [ - "International instruments", - "Rights of the Child" - ] - }, - { - "text": "Continue to work with the Office of the High Commissioner for Human Rights to set up the regional office", - "values": [ - "Technical assistance and cooperation" - ] - }, - { - "text": "Actively investigate instances of discrimination in employment, including against lesbian, gay, bisexual, transgender and intersex persons", - "values": [ - "Labour", - "Sexual Orientation and Gender Identity" - ] - }, - { - "text": "Establish an independent human rights institution with a broad mandate for the promotion and protection of human rights in accordance with the Paris Principles", - "values": [ - "National Human Rights Institution" - ] - }, - { - "text": "Take effective measures and provide funds for the development of standards and policies to meet the needs of the most vulnerable groups in various areas, in particular education, health and housing", - "values": [ - "Right to education", - "Right to health", - "Right to housing" - ] - }, - { - "text": "Accede to the Rome Statue of the International Criminal Court", - "values": [ - "International instruments", - "Justice" - ] - }, - { - "text": "Incorporate in domestic legislation a definition of torture in conformity with article 1 of the Convention against Torture, including all of its elements, in particular the imprescriptibility of torture", - "values": [ - "International instruments", - "Torture and other CID treatment" - ] - }, - { - "text": "Create mechanisms for the protection of children against all forms of exploitation, to fight impunity of perpetrators and bring them to justice and to set up programmes for psychological treatment to children subjected to violations", - "values": [ - "Impunity", - "Rights of the Child" - ] - }, - { - "text": "Enact legislation as soon as possible to abolish the death penalty ", - "values": [ - "Death penalty" - ] - }, - { - "text": "Continue implementing the remaining accepted recommendations of the Council from the first universal periodic review cycle", - "values": [ - "UPR process" - ] - }, - { - "text": "Continue its efforts to combat domestic violence, paying special attention to the situation of women and children ", - "values": [ - "Rights of the Child", - "Women's rights" - ] - }, - { - "text": "Implement measures to protect the LGBT population from harassment, discrimination and violence ", - "values": [ - "Sexual Orientation and Gender Identity" - ] - }, - { - "text": "Accede to OP-CAT and establish its national preventive mechanism accordingly ", - "values": [ - "Detention", - "International instruments", - "Torture and other CID treatment" - ] - }, - { - "text": "Accelerate the restitution of lands confiscated by the army and set up a satisfactory compensation system", - "values": [ - "Right to land" - ] - }, - { - "text": "Provide law enforcement officials with human rights training and intensify the fight against impunity for acts of torture", - "values": [ - "Human rights education and training", - "Impunity", - "Torture and other CID treatment" - ] - }, - { - "text": "Consider formulating measures that would recognize that a truly meaningful enjoyment of the right to freedom of expression is only realized when exercised with responsibility.", - "values": [ - "Freedom of opinion and expression" - ] - }, - { - "text": "Step up efforts on raising the awareness of the population of the impact of climate change and involve the population more in the decision-making process in mitigating and adapting to the consequences of such changes.", - "values": [ - "Environment" - ] - }, - { - "text": "Take all the necessary measures to eliminate sexual violence in the country, including the full prosecution of all reported cases of sexual violence", - "values": [ - "Rights of the Child", - "Women's rights" - ] - }, - { - "text": "Take concrete steps to further develop and implement initiatives targeting not only the Roma minority but also the majority population, including children and adults, in order to increase mutual understanding and respect with a view of combating the nourishment of societal discrimination against Roma ", - "values": [ - "Minorities", - "Racial discrimination", - "Rights of the Child" - ] - }, - { - "text": "Guarantee freedom of expression to journalists and allow political parties to carry out political activities.", - "values": [ - "Freedom of association and peaceful assembly", - "Freedom of opinion and expression", - "Freedom of the press" - ] - }, - { - "text": "Continue incorporating the Convention on the Elimination of All Forms of Discrimination against Women into its domestic legal system to eliminate all forms of discrimination against women", - "values": [ - "International instruments", - "Women's rights" - ] - }, - { - "text": "Enact legislation that defines the line between freedom of expression and hate speech", - "values": [ - "Freedom of opinion and expression", - "Racial discrimination" - ] - }, - { - "text": "Sri Lanka's plan to address the forcible recruitment of child soldiers should be publicized", - "values": [ - "International humanitarian law", - "Rights of the Child" - ] - }, - { - "text": "Legislate to guarantee the freedoms of expression, of assembly and of opinion", - "values": [ - "Freedom of association and peaceful assembly", - "Freedom of opinion and expression" - ] - }, - { - "text": "Continued action in eradicating extreme poverty ", - "values": [ - "Poverty" - ] - }, - { - "text": "Complete the judicial reform and the anti-corruption policy by reforming the Prosecutor General\u2019s Office, reforming the State Security Service according to international standards, as drawn up with the support of Euro-Atlantic institutions, and introduce, as provided for in the relevant legislation, specialized anti-corruption courts", - "values": [ - "Corruption", - "Justice" - ] - }, - { - "text": "Continue deepening measures aimed at achieving the eradication of practices such as female genital mutilation and cutting, as well as forced marriages", - "values": [ - "Rights of the Child", - "Torture and other CID treatment", - "Women's rights" - ] - }, - { - "text": "Revise the Children\u2019s Act in order to set the minimum age for marriage to 18 years for both boys and girls", - "values": [ - "Rights of the Child" - ] - }, - { - "text": "Amend visa application system by removing any requirements that violate the right to privacy", - "values": [ - "Privacy" - ] - }, - { - "text": "Establish concrete goals to increase female participation in political and public life ", - "values": [ - "Women's rights" - ] - }, - { - "text": "Intensify efforts so that children with disabilities have sufficient access to education and health facilities ", - "values": [ - "Disabilities", - "Right to education", - "Right to health", - "Rights of the Child" - ] - }, - { - "text": "Delete from the Press Code sentences involving deprivation of liberty and revise the criminal provisions in the area of freedom of expression so that no journalist or human rights defender can be arrested for a simple fact of having expressed his opinion ", - "values": [ - "Freedom of opinion and expression", - "Freedom of the press", - "Human rights defenders" - ] - }, - { - "text": "Strengthen laws and policies for effective implementation to end violence against children and ensure the full implementation of the 2003 Child Rights Act", - "values": [ - "Rights of the Child" - ] - }, - { - "text": "Stop the intimidation and harassment of human rights defenders, journalists, bloggers, media and artists", - "values": [ - "Freedom of the press", - "Human rights defenders" - ] - }, - { - "text": "Continue its efforts to prevent acts of domestic violence, of which women and children are the principal victims, ensuring that these acts are penalized and that their perpetrators be prosecuted systematically ", - "values": [ - "Rights of the Child", - "Women's rights" - ] - }, - { - "text": "Overcome prejudices against women and girls, and strive to eliminate stereotypes and harmful practices", - "values": [ - "Rights of the Child", - "Torture and other CID treatment", - "Women's rights" - ] - }, - { - "text": "Take measures to prohibit in practice anti-immigration speech and racist propaganda", - "values": [ - "Racial discrimination" - ] - }, - { - "text": "Expand its intervention with the aim of better addressing racial prejudices, xenophobia, hate speeches and other forms of discrimination, in particular against Roma, women, persons with disabilities and the LGBT population ", - "values": [ - "Disabilities", - "Minorities", - "Racial discrimination", - "Sexual Orientation and Gender Identity", - "Women's rights" - ] - }, - { - "text": "Consolidate and fully implement programmes for preventing and eliminating tuberculosis and engage in international cooperation in this regard", - "values": [ - "Right to health", - "Technical assistance and cooperation" - ] - }, - { - "text": "Allocates sufficient resources to improve the geographic accessibility of schools", - "values": [ - "Right to education" - ] - }, - { - "text": "Accelerate the legislative process for the ratification of the Optional Protocol to the International Covenant on Economic, Social and Cultural Rights ", - "values": [ - "ESC rights - general", - "International instruments" - ] - }, - { - "text": "Pursue its efforts at the international level to create an international order based on justice and equality", - "values": [ - "Other" - ] - }, - { - "text": "Strengthen regulations that set limits on extending working hours with a view to capping work-related deaths and suicides", - "values": [ - "Labour" - ] - }, - { - "text": "Continue its efforts to increase the representation of women at senior levels within the public administration, including the diplomatic service, judiciary and educational institutions, as well as the private sector", - "values": [ - "Women's rights" - ] - }, - { - "text": "Pursue efforts to combat illiteracy, working in particular to promote access to school for disadvantaged children ", - "values": [ - "Right to education", - "Rights of the Child" - ] - }, - { - "text": "Adopt legislative and policy measures to combat discrimination on the basis of gender and against children and persons with disabilities", - "values": [ - "Disabilities", - "Rights of the Child", - "Women's rights" - ] - }, - { - "text": "Adhere to and adapt national legislation to the Arms Trade Treaty", - "values": [ - "International instruments", - "Public security" - ] - }, - { - "text": "Adopt a new bill amending the Criminal Code on the issues of gender-based violence, human trafficking, sexual exploitation and forced marriage", - "values": [ - "Rights of the Child", - "Trafficking", - "Women's rights" - ] - }, - { - "text": "Take the necessary measures to end attacks against civilians and to ensure unimpeded humanitarian access to the camps of internally displaced persons in Darfur, including by lifting the state of emergency ", - "values": [ - "Internally displaced persons", - "International humanitarian law", - "Public security" - ] - }, - { - "text": "Take measures to broaden antiviral treatment for people living with HIV/AIDS ", - "values": [ - "HIV - Aids" - ] - }, - { - "text": "Take all necessary measures to prohibit and eliminate the practice of female genital mutilation", - "values": [ - "Rights of the Child", - "Torture and other CID treatment", - "Women's rights" - ] - }, - { - "text": "Take immediate concrete steps to stop discrimination and assaults against LGBT persons", - "values": [ - "Sexual Orientation and Gender Identity" - ] - }, - { - "text": "Continue and step up its efforts towards the ratification of or accession to the International Covenant on Civil and Political Rights", - "values": [ - "CP rights - general", - "International instruments" - ] - }, - { - "text": "Ratify and implement in the national legislation the Rome Statute of the International Criminal Court", - "values": [ - "International instruments", - "Justice" - ] - }, - { - "text": "The Head of Delegation assured that the Government was fully committed to educating its populace on human rights issues, including introducing such training in the primary and secondary school curriculum", - "values": [ - "Human rights education and training" - ] - }, - { - "text": "Continue efforts in promoting the Congolese people's rights.", - "values": [ - "General" - ] - }, - { - "text": "Move towards the de jure abolition of capital punishment", - "values": [ - "Death penalty" - ] - }, - { - "text": "Put an end to the unilateral economic coercive measures, including blockade against Armenia, which violates human rights including social, economic and cultural rights", - "values": [ - "ESC rights - general" - ] - }, - { - "text": "Take additional steps to fight different pandemics and ensure access of population to basic medical services, especially in rural areas", - "values": [ - "Right to health" - ] - }, - { - "text": "Consider signing and ratifying ICESCR and ICCPR ", - "values": [ - "CP rights - general", - "ESC rights - general", - "International instruments" - ] - }, - { - "text": "Strengthen existing efforts to increase the opportunities for the representation of women in the Omani Consultative Council (Majlis el-Shura) ", - "values": [ - "Women's rights" - ] - }, - { - "text": "As regards Recommendations 70.47 to 70.53, which refer to decriminalizing consensual same sex relations and discrimination against gay, lesbian, bi-sexual and trans-gender persons, the delegation recalled that Guyana did attempt to include "sexual orientation" in the anti-discrimination clause in the revised constitution but that this was defeated in 2003. Whilst Guyana did not discriminate against persons based on their sexual orientation, it did not deny that interpersonal prejudices existed, based on cultural and religious beliefs. The delegation indicated that Guyana noted these recommendations and voluntarily committed to hold consultations over the next two years and to reflect the outcome of this democratic process in its domestic laws. Recommendations 70.54 and 70.55 were also noted.", - "values": [ - "Sexual Orientation and Gender Identity" - ] - }, - { - "text": "Consider the possibility of withdrawing its reservation to Article 4 of ICERD", - "values": [ - "International instruments", - "Racial discrimination" - ] - }, - { - "text": "Reconsider the legal status of lesbian, gay, bisexual and transgender people, and consider taking concrete steps to protect them from violence and discrimination ", - "values": [ - "Sexual Orientation and Gender Identity" - ] - }, - { - "text": "Reaffirm its commitments to international human rights instruments through their transposition or integration into its national legislation, and intensify its efforts to submit its overdue reports to the treaty bodies ", - "values": [ - "International instruments", - "Treaty bodies" - ] - }, - { - "text": "Intensify its efforts in the context of attaining MDGs related to health in particular objective 6 concerning fighting HIV /AIDS, in particular in the context of the "Comprehensive HIV and AIDS Treatment and Prevention Strategy" and the "Prevention of Mother to Child Transmission of HIV" ", - "values": [ - "HIV - Aids", - "Right to health" - ] - }, - { - "text": "Complete rapidly the process of aligning its national legislation with the provisions of the Statute of Rome ", - "values": [ - "International instruments", - "Justice" - ] - }, - { - "text": "Take concrete measures to reinforce domestic democratic institutions through the strengthening of judicial independence and of the freedom of opinion and expression, the investigation of recent detentions with alleged political motivation, as well as through the guarantee to opposition parties of the right to peaceful protest", - "values": [ - "Freedom of association and peaceful assembly", - "Justice" - ] - }, - { - "text": "Launch, with the participation of all media, a process of reflection on the role and responsibility of the media to combat racism, xenophobia and related intolerance ", - "values": [ - "Racial discrimination" - ] - }, - { - "text": "Intensify its efforts to carry out investigations and prosecutions on extrajudicial killings and punish those responsible.", - "values": [ - "Extrajudicial executions" - ] - }, - { - "text": "Make provision in its national legislation for the crime of domestic violence and take all adequate measures to eliminate it", - "values": [ - "Rights of the Child", - "Women's rights" - ] - }, - { - "text": "Continue its policies against trafficking ", - "values": [ - "Trafficking" - ] - }, - { - "text": "Continue implementing the positive initiatives introduced under the 1Malaysia concept with a view to strengthen national unity", - "values": [ - "Other" - ] - }, - { - "text": "Ratify the Rome Statue of the International Criminal Court, including the accession to the Agreement on Privileges and Immunities ", - "values": [ - "International instruments", - "Justice" - ] - }, - { - "text": "Implement the COI's recommendations, including those on denial of due process, reform of the prison system, abolition of the death penalty and return of abductees to their homelands", - "values": [ - "Death penalty", - "Detention", - "Enforced disappearances", - "Justice" - ] - }, - { - "text": "Give impetus to accelerate the regional process on the question of the thousands of persons who are still missing, which is vital for the rule of law as well as for regional reconciliation", - "values": [ - "Justice" - ] - }, - { - "text": "Invite international mechanisms, in particular those for the strengthening of gender equality, women's rights, children's rights and the elimination of all forms of discrimination", - "values": [ - "Rights of the Child", - "Women's rights" - ] - }, - { - "text": "Adopt measures highlighting the importance of its comprehensive development in all areas, including education, health and living standards, amongst others ", - "values": [ - "Development", - "Right to education", - "Right to health" - ] - }, - { - "text": "Ratify the Rome Statute of the International Criminal Court ", - "values": [ - "Justice" - ] - }, - { - "text": "Reinforce its efforts in the area of the implementation of obligations under international human rights law, in particular those pertaining to freedom of opinion and expression", - "values": [ - "Freedom of opinion and expression", - "International instruments" - ] - }, - { - "text": "Implement the recommendations made by the Committee Against Torture on human rights defenders.", - "values": [ - "Human rights defenders", - "Torture and other CID treatment", - "Treaty bodies" - ] - }, - { - "text": "Consider ratification of the Optional Protocol to the Convention on the Rights of the Child on a communications procedure as a matter of priority", - "values": [ - "International instruments", - "Rights of the Child" - ] - }, - { - "text": "Continue its efforts to adopt a law to protect human rights defenders against any intimidation or reprisals as foreseen in the 2005-2009 National Legislation Programme and to ensure the prompt, impartial and effective investigation of such acts ", - "values": [ - "Human rights defenders" - ] - }, - { - "text": "Consider the establishment of a national human rights institution in compliance with the Paris Principles ", - "values": [ - "National Human Rights Institution" - ] - }, - { - "text": "Strengthen further national information campaigns on rights and responsibilities", - "values": [ - "Human rights education and training" - ] - }, - { - "text": "Adopt legislation on the National Preventative Mechanism in line with international standards and fully implement it ", - "values": [ - "Other" - ] - }, - { - "text": "Take measures for the full implementation of the Anti-Discrimination Act by law enforcement officials and judicial officials with a view to guaranteeing effective investigation and punishment of those who commit acts of discrimination against migrants, refugees and asylum seekers", - "values": [ - "Asylum-seekers - refugees", - "Migrants", - "Racial discrimination" - ] - }, - { - "text": "Implement the recommendations of the Human Rights Committee, by prosecuting and sentencing as appropriate the perpetrators of the extrajudicial executions of December 1982 and the Moiwana massacre in 1986 ", - "values": [ - "Extrajudicial executions", - "Treaty bodies" - ] - }, - { - "text": "Strengthen its specialized Juvenile Justice system, to promote alternative measures to deprivation of liberty, and continue improving the social services available to adolescents deprived of their liberty", - "values": [ - "Detention", - "Justice", - "Rights of the Child" - ] - }, - { - "text": "Strengthen the solidarity of all parties in Mali, smoothly complete political transition and restore national unity and territorial integrity so that the Malian people could earnestly enjoy all human rights", - "values": [ - "Other" - ] - }, - { - "text": "Increase efforts to tackle domestic violence, gender stereotypes and discrimination on that ground", - "values": [ - "Rights of the Child", - "Women's rights" - ] - }, - { - "text": "Continue to ensure that lesbian, gay, bisexual and transgender people are able to exercise their rights to freedom of expression and assembly ", - "values": [ - "Freedom of association and peaceful assembly", - "Freedom of opinion and expression", - "Sexual Orientation and Gender Identity" - ] - }, - { - "text": "Strengthen efforts to broaden access to education in accordance with the revised Education for All National Policy and increase allocations to the education sector", - "values": [ - "Right to education" - ] - }, - { - "text": "Cooperate fully with the independent expert who will be designated by the Human Rights Council", - "values": [ - "Special procedures" - ] - }, - { - "text": "Take steps to fully incorporate the core treaties ratified by Uruguay, namely CEDAW and CRC, into domestic legislation.", - "values": [ - "International instruments", - "Rights of the Child", - "Women's rights" - ] - }, - { - "text": "End the prosecution of civilians in military courts and immediately transfer any cases of civilians facing proceedings before military courts to civilian courts", - "values": [ - "Justice" - ] - }, - { - "text": "Ensure that the new legislation on surveillance of communications by the intelligence service complies with international law, particularly with the principle of proportionality ", - "values": [ - "Freedom of opinion and expression", - "Privacy" - ] - }, - { - "text": "Create a special anti-corruption court and ensure its proper functioning", - "values": [ - "Corruption", - "Justice" - ] - }, - { - "text": "Review its legislation to expressly prohibit that a statement made under duress or as a result of torture acts or practices be considered as evidence", - "values": [ - "Human rights violations by state agents", - "Justice", - "Torture and other CID treatment" - ] - }, - { - "text": "Strengthen its efforts in fully implementing the National Plan of Action on Combating Trafficking in Human Beings ", - "values": [ - "Trafficking" - ] - }, - { - "text": "Implement laws, regulations and plans regarding women's rights with adequate training and resources, bearing in mind that sexual and gender-based violence and disparities in economic opportunities remain. There is scope for improvement of health-care providers' ability to offer sexual and reproductive information and services, including safe abortions", - "values": [ - "Right to health", - "Rights of the Child", - "Women's rights" - ] - }, - { - "text": "Intensify efforts aimed at eliminating structural discrimination, especially against the indigenous people and people of African descent", - "values": [ - "Indigenous peoples", - "Minorities", - "Racial discrimination" - ] - }, - { - "text": "Continue its efforts at the international level in preventing genocide and crimes against humanities", - "values": [ - "Justice" - ] - }, - { - "text": "Continue facilitating positive activities by youth associations, including voluntary work ", - "values": [ - "Other" - ] - }, - { - "text": "Apply for membership of the Voluntary Principles on Security and Human Rights, which facilitates the relations between companies of the extractive sector and civil society groups with regard to the prevention of human rights violations", - "values": [ - "Business and human rights", - "Civil society" - ] - }, - { - "text": "Continue giving priority and allocating adequate resources to the implementation of the national strategies on children and on combating child trafficking", - "values": [ - "Rights of the Child", - "Trafficking" - ] - }, - { - "text": "Further promote respect for religious diversity and freedom of religion including by reviewing relevant laws and policies in light of its Constitution and international obligations", - "values": [ - "Freedom of religion and belief", - "International instruments" - ] - }, - { - "text": "Promote a national debate on the abolition of the death penalty", - "values": [ - "Death penalty" - ] - }, - { - "text": "Adopt proactive measures to promote women's access to decision-making positions, especially the National Parliament ", - "values": [ - "Women's rights" - ] - }, - { - "text": "Put in place an independent procedure to monitor complaints of human rights violations by the police ", - "values": [ - "Human rights violations by state agents", - "Justice" - ] - }, - { - "text": "Continue to combat discriminatory societal behaviours, including by working at reforming domestic laws, in particular land and family laws, which require amendments in order for Tuvalu to in compliance with the Convention on the Elimination of Discrimination against Women", - "values": [ - "International instruments", - "Women's rights" - ] - }, - { - "text": "Respect, as long as it maintains the death penalty, at least minimum standards related to the death penalty, in particular ensuring that the death penalty is only imposed for the most serious offences ", - "values": [ - "Death penalty" - ] - }, - { - "text": "Continue its policy to ensure comprehensive protection of citizens' economic, social and cultural rights", - "values": [ - "ESC rights - general" - ] - }, - { - "text": "Repeal the National Security Act and ensure institutional and legislative reform of the National Intelligence and Security Services, including the establishment of a judicial oversight mechanism ", - "values": [ - "Justice", - "Public security" - ] - }, - { - "text": "Prevent and eliminate all acts of torture and accede to the Optional Protocol to the Convention against Torture", - "values": [ - "International instruments", - "Torture and other CID treatment", - "Treaty bodies" - ] - }, - { - "text": "Take all necessary social, educational and legal measures to eliminate the practise of FGM", - "values": [ - "Rights of the Child", - "Torture and other CID treatment", - "Women's rights" - ] - }, - { - "text": "Review all necessary measures to reduce discrimination and particularly, stress the design of appropriate policies to prevent discrimination against children ", - "values": [ - "Rights of the Child" - ] - }, - { - "text": "Ensure that victims of trafficking are provided with the opportunity to seek asylum and enjoy the corresponding rights and services, to strengthen the effort to protect and assist victims of trafficking", - "values": [ - "Asylum-seekers - refugees", - "Trafficking" - ] - }, - { - "text": "Accelerate the passage and implementation of anti-trafficking legislation and, in the interim, use current laws, like the Prevention of Organized Crime Act (POCA), to prosecute sex and labour trafficking offences and adequately punish trafficking offenders ", - "values": [ - "Trafficking" - ] - }, - { - "text": "Ratify the Rome Statute of the International Criminal Court in its 2010 version, including the Kampala amendments on the crime of aggression, and review Malaysia's national legislation in order to ensure full alignment with the Statute", - "values": [ - "International instruments", - "Justice" - ] - }, - { - "text": "Establish a national human rights institution accredited by the International Coordinating Committee", - "values": [ - "National Human Rights Institution" - ] - }, - { - "text": "Give continuity to legislative and institutional reforms for the promotion and protection of human rights ", - "values": [ - "General" - ] - }, - { - "text": "Undertake to fully cooperate with the United Nations and, in particular, the special envoy of the Secretary-General for Western Sahara", - "values": [ - "Technical assistance and cooperation" - ] - }, - { - "text": "Continue to increase and diversify agricultural production by resorting to agricultural strategies, which could be based on models of production that have proven to be worthwhile ", - "values": [ - "Development" - ] - }, - { - "text": "Urgently amend its criminal law to comply with international relevant standards.", - "values": [ - "Justice" - ] - }, - { - "text": "Provide human rights training for security forces", - "values": [ - "Human rights education and training" - ] - }, - { - "text": "Adopt the necessary measures to eliminate discrimination against women, both in law and practice, including with regard to remuneration, employment opportunities, access to educational and health services", - "values": [ - "Women's rights" - ] - }, - { - "text": "Invite ILO experts to overcome existing challenges of implementation of the laws to protect children from the harmful effects of all forms of child labour ", - "values": [ - "International instruments", - "Labour", - "Rights of the Child" - ] - }, - { - "text": "Continue the reforms under way, notably the attention to the promotion of the rights of women and children, providing for the necessary protection and their personal development.", - "values": [ - "Rights of the Child", - "Women's rights" - ] - }, - { - "text": "Continue to address inequalities affecting human rights in the areas of health, education, employment and income that disproportionately affect indigenous peoples and other minority groups", - "values": [ - "Indigenous peoples", - "Labour", - "Minorities", - "Right to education", - "Right to health" - ] - }, - { - "text": "Take other pro-active measures to combat FGM", - "values": [ - "Rights of the Child", - "Torture and other CID treatment", - "Women's rights" - ] - }, - { - "text": "Adopt appropriate legislation to ensure better protection for the freedom of expression, the freedom of the press, and the freedom of information ", - "values": [ - "Freedom of opinion and expression", - "Freedom of the press" - ] - }, - { - "text": "Make further efforts to ensure the implementation of its National Human Rights Action Plan", - "values": [ - "General" - ] - }, - { - "text": "Reinforce its national human rights infrastructure ", - "values": [ - "General" - ] - }, - { - "text": "Take further measures to ensure equality and non-discrimination of men and women in law and practice, including in access to land, employment and economic and political participation", - "values": [ - "Women's rights" - ] - }, - { - "text": "Strengthen its policy to prevent, combat and punish human trafficking, particularly by providing assistance to victims, whatever their nationality.", - "values": [ - "Trafficking" - ] - }, - { - "text": "Do not concede asylum seekers' transfer to detention centres in third countries ", - "values": [ - "Asylum-seekers - refugees", - "Detention" - ] - }, - { - "text": "Focus on the development of law enforcement capacities in order to fight impunity", - "values": [ - "Impunity" - ] - }, - { - "text": "Strengthen the normative framework for the protection of human rights, including the monitoring, investigation and reparation for human rights violations committed by Australian enterprises in their territories and in third States", - "values": [ - "Business and human rights" - ] - }, - { - "text": "Combat poverty and social exclusion, particularly of the disadvantaged and marginalized groups, with the adoption of clear indicators to assess progress achieved", - "values": [ - "Poverty" - ] - }, - { - "text": "Consider accelerating its efforts towards its ratification of the migrant workers' rights convention (ICRMW) and of other international human rights instruments that it is not yet a party to", - "values": [ - "International instruments", - "Labour", - "Migrants" - ] - }, - { - "text": "Adopt the recommendation by the Committee against Torture to review mandatory sentencing laws with a view to abolishing them", - "values": [ - "Torture and other CID treatment", - "Treaty bodies" - ] - }, - { - "text": "Strengthen activities to raise awareness in society of the need to eliminate discrimination, intolerance and hate speech against minorities and other groups", - "values": [ - "Human rights education and training", - "Minorities", - "Racial discrimination" - ] - }, - { - "text": "Continue to promote its excellent education policy in order to eradicate school drop-out during mandatory basic education ", - "values": [ - "Right to education" - ] - }, - { - "text": "Continue to strengthen protective measures and legal rights for women, and give full citizenship rights to the children of Qatari mothers and non-Qatari fathers ", - "values": [ - "Women's rights" - ] - }, - { - "text": "Further enhance the promotion and protection of women\u2019s rights, including addressing violence against women and femicide", - "values": [ - "Women's rights" - ] - }, - { - "text": "Extend its human rights education efforts to human rights training for media professionals and journalists", - "values": [ - "Freedom of the press", - "Human rights education and training" - ] - }, - { - "text": "Ratify the International Convention for the Protection of All Persons from Enforced Disappearance and the Optional Protocol to the Convention against Torture and Other Cruel, Inhuman and Degrading Treatment or Punishment", - "values": [ - "Detention", - "Enforced disappearances", - "International instruments", - "Torture and other CID treatment" - ] - }, - { - "text": "Undertake effective investigation into complaints of torture or ill-treatment and hold all perpetrators accountable", - "values": [ - "Torture and other CID treatment" - ] - }, - { - "text": "Ratify human rights treaties to which Tuvalu is not yet a party.", - "values": [ - "International instruments" - ] - }, - { - "text": "Consolidate the gains made in granting children access to education by maintaining the emphasis on the construction of schools and recruitment of teachers", - "values": [ - "Right to education" - ] - }, - { - "text": "Ensure the registration of all children after birth in all regions of the country", - "values": [ - "Statelessness and the right to nationality" - ] - }, - { - "text": "Continue to give consideration to the human rights perspective in its migration policy and implementation, in collaboration with other European countries which are final destinations of migrants", - "values": [ - "Migrants", - "Technical assistance and cooperation" - ] - }, - { - "text": "Repeal amnesty laws and bring to justice perpetrators of human rights violations, regardless of the time that has elapsed since the pertaining acts were committed", - "values": [ - "Justice" - ] - }, - { - "text": "Adjust national legislation with a view to incorporating domestically international and regional treaties ratified by the country", - "values": [ - "International instruments" - ] - }, - { - "text": "Review and modify, in the light of the recommendations of this review, those measures that may obstruct access to basic rights such as health, education and housing for migrants, particularly women and children", - "values": [ - "Migrants", - "Right to education", - "Right to health", - "Right to housing", - "Rights of the Child", - "Women's rights" - ] - }, - { - "text": "Ensure that indigenous persons fully enjoy all human rights, including the rights to education, adequate access to health services and land rights", - "values": [ - "Indigenous peoples" - ] - }, - { - "text": "Abolish the death penalty sign and ratify ICCPR-OP2", - "values": [ - "Death penalty", - "International instruments" - ] - }, - { - "text": "Commute all death sentences, declare a moratorium on executions and move towards abolition of the death penalty ", - "values": [ - "Death penalty" - ] - }, - { - "text": "Strengthen the protection of the civilian population affected by the conflict and clashes between non-State groups. ", - "values": [ - "International humanitarian law" - ] - }, - { - "text": "Strengthen, in close cooperation with relevant stakeholders, the capacity to process, treat and shelter asylum-seekers and irregular migrants, in accordance with relevant regional and international standards ", - "values": [ - "Asylum-seekers - refugees", - "Migrants" - ] - }, - { - "text": "Step up its efforts to combat discrimination against women and prohibit corporal punishment of children in all circumstances", - "values": [ - "Rights of the Child", - "Torture and other CID treatment", - "Women's rights" - ] - }, - { - "text": "Adopt all necessary measures to guarantee the full independence of the judiciary", - "values": [ - "Justice" - ] - }, - { - "text": "Revise its legislation related to the birth registration to ensure birth registration to all indigenous children and children of African descent ", - "values": [ - "Indigenous peoples", - "Minorities", - "Rights of the Child", - "Statelessness and the right to nationality" - ] - }, - { - "text": "Adopt the necessary measures with a view to ratifying the CRPD ", - "values": [ - "Disabilities", - "International instruments" - ] - }, - { - "text": "Develop mechanisms and procedures to better protect the rights of children victims of trafficking, and provide training for police and prosecutors in this regard ", - "values": [ - "Rights of the Child", - "Trafficking" - ] - }, - { - "text": "Strengthen the independence of the judiciary and transparency of judicial proceedings and adopt measures preventing political interference in the work of judges", - "values": [ - "Justice" - ] - }, - { - "text": "Remove any rule criminalizing sexual relations between consenting adults of the same sex, and include sexual orientation and gender identity as unlawful grounds of discrimination in all areas", - "values": [ - "Sexual Orientation and Gender Identity" - ] - }, - { - "text": "Continue to protect the institution of the family, based on a stable relationship between a man and a woman", - "values": [ - "Other" - ] - }, - { - "text": "Allocate the necessary resources to ensure the effective operation of the office of the ombudsman", - "values": [ - "National Human Rights Institution" - ] - }, - { - "text": "Intensify efforts to secure detention conditions, including care of children and young people deprived of their liberty, which fully meet international human rights standards", - "values": [ - "Detention", - "International instruments", - "Rights of the Child" - ] - }, - { - "text": "Continue supporting the family as the main unit of society, promote strengthening of traditional family values", - "values": [ - "Other" - ] - }, - { - "text": "Combat violations and violence against human rights defenders, particularly by adopting a law protecting them", - "values": [ - "Human rights defenders" - ] - }, - { - "text": "Reinforce the protection and promotion of the rights of vulnerable groups, namely, children, women, disabled and elderly persons", - "values": [ - "Disabilities", - "Rights of the Child", - "Women's rights" - ] - }, - { - "text": "Ratify the main international human rights instruments, in particular ICCPR and its two optional protocols, CAT and OP-CAT, the International Convention on the Elimination of All Forms of Racial Discrimination ICERD and the Statute of the International Criminal Court", - "values": [ - "CP rights - general", - "Detention", - "International instruments", - "Justice", - "Racial discrimination", - "Torture and other CID treatment" - ] - }, - { - "text": "Take measures to address impunity and investigate and prosecute cases of enforced disappearances and torture.", - "values": [ - "Enforced disappearances", - "Impunity", - "Torture and other CID treatment" - ] - }, - { - "text": "Strengthen the independence of institutions such as the Human Rights Commission of Sri Lanka, the Police Commission and Election Commission", - "values": [ - "Elections", - "Justice", - "National Human Rights Institution" - ] - }, - { - "text": "Elevate the socioeconomic situation for persons with disabilities", - "values": [ - "Disabilities", - "ESC rights - general" - ] - }, - { - "text": "Strengthen oversight of Austrian companies operating abroad with regard to any negative impact of their activities on the enjoyment of human rights, particularly in conflict areas, where there are heightened risks of human rights abuses", - "values": [ - "Business and human rights" - ] - }, - { - "text": "Sign and ratify the International Convention on the Protection of the Rights of All Migrant Workers and Members of their Families and accede to its principles", - "values": [ - "International instruments", - "Labour", - "Migrants" - ] - }, - { - "text": "Strengthen the necessary measures to enhance tolerance and dialogue among civilizations", - "values": [ - "Human rights education and training" - ] - }, - { - "text": "Take all the necessary steps to ensure that the national human rights institution complies fully with the Paris Principles", - "values": [ - "National Human Rights Institution" - ] - }, - { - "text": "Enhance the role of youth and empower them in nation-building", - "values": [ - "Other" - ] - }, - { - "text": "Review the minimum mandatory sentences in order to assess their disproportionate impact on the racial and ethnic minorities", - "values": [ - "Minorities" - ] - }, - { - "text": "Repeal domestic legislation that discriminates against women, including on rights to succession to land permits and grants, and the disposal of immovable property, as well as to address obstacles to equal participation of women in political, economic and public life", - "values": [ - "Right to land", - "Women's rights" - ] - }, - { - "text": "Ratify in the near future the Optional Protocol to the Convention against Torture and Other Cruel, Inhuman or Degrading Treatment or Punishment", - "values": [ - "Detention", - "International instruments", - "Torture and other CID treatment" - ] - }, - { - "text": "Eliminate discrimination affecting freedom of religion", - "values": [ - "Freedom of religion and belief", - "Racial discrimination" - ] - }, - { - "text": "Enact and implement a comprehensive national urban policy to address the human rights problems arising from rapid urbanization", - "values": [ - "Other" - ] - }, - { - "text": "Ensure a coordinated response between police, justice, child protection, and social service officials so that women and children who are victims of violence, including sexual abuse, have access to immediate protection", - "values": [ - "Rights of the Child", - "Women's rights" - ] - }, - { - "text": "Continue its efforts to sign and/or ratify other human rights instruments to which it is not yet a party", - "values": [ - "International instruments" - ] - }, - { - "text": "Devote adequate human and financial resources for the effective implementation of the National Policy for Gender Equality and Equity of 2013", - "values": [ - "Women's rights" - ] - }, - { - "text": "Eliminate the death penalty in the national legislation and adopt an official moratorium on it", - "values": [ - "Death penalty" - ] - }, - { - "text": "Develop measures in order to ensure that affected Sami communities can take part and participate actively in consultations held between federal government and municipalities on issues related to land rights, water and resources ", - "values": [ - "Environment", - "Indigenous peoples", - "Right to water and sanitation" - ] - }, - { - "text": "Sri Lanka will continue its efforts to strengthen its national mechanisms and procedures to promote and protect the human rights and fundamental freedoms of all its citizens through the adoption and implementation of the proposed National Plan of Action which will set targets to be achieved during the five years commencing 2009, facilitate a holistic approach to human rights protection and promotion and lead to greater cooperation between Government and civil society", - "values": [ - "Civil society" - ] - }, - { - "text": "Revise relevant legal provisions to ensure that all offences committed against human rights by military forces are submitted to civil courts ", - "values": [ - "Human rights violations by state agents", - "Justice" - ] - }, - { - "text": "Finalize, adopt and implement the pastoral law so that it serves as an instrument to reduce the level of resource-based conflicts in the country ", - "values": [ - "Environment" - ] - }, - { - "text": "Consider enacting a specific law to combat trafficking in persons, with emphasis on the protection of the human rights of victims, especially women and children", - "values": [ - "Rights of the Child", - "Trafficking", - "Women's rights" - ] - }, - { - "text": "Step up efforts to raise awareness on and pursue full implementation of the Law against Domestic Violence (LADV) 2010 ", - "values": [ - "Rights of the Child", - "Women's rights" - ] - }, - { - "text": "Develop and implement a national awareness raising campaign on human rights", - "values": [ - "Human rights education and training" - ] - }, - { - "text": "Ensure the effective implementation of existing legislation, including the provision of protection and assistance to victims and timely prosecution and punishment of traffickers", - "values": [ - "Trafficking" - ] - }, - { - "text": "Continue efforts on women\u2019s empowerment in order to enhance their meaningful participation in socioeconomic and political decision-making process", - "values": [ - "Women's rights" - ] - }, - { - "text": "Strengthen its policy to guarantee the rights of the child fully, with special attention to children without parental care. ", - "values": [ - "Rights of the Child" - ] - }, - { - "text": "Promptly ratify the Optional Protocol to the International Covenant on Economic, Social and Cultural Rights", - "values": [ - "ESC rights - general", - "International instruments" - ] - }, - { - "text": "Take concrete measures to raise public awareness of existing legislation and policies, which is indispensable for their effective application ", - "values": [ - "Human rights education and training" - ] - }, - { - "text": "Continue to develop training programmes in the field of human rights for law enforcement officials", - "values": [ - "Human rights education and training" - ] - }, - { - "text": "Adopt measures necessary to harmonize customary laws with international instruments.", - "values": [ - "International instruments" - ] - }, - { - "text": "Expedite the process to establish the national human rights institution", - "values": [ - "National Human Rights Institution" - ] - }, - { - "text": "Continue and strengthen efforts to eliminate acts of torture, specially by security services ", - "values": [ - "Torture and other CID treatment" - ] - }, - { - "text": "Fully cooperate with ILO and implement the recommendations of the ILO Inquiry Commission ", - "values": [ - "International instruments", - "Labour" - ] - }, - { - "text": "Complete reforms of the judiciary", - "values": [ - "Justice" - ] - }, - { - "text": "Further step up its national and international efforts to prevent and eradicate human trafficking, including effective protection for the victims of trafficking ", - "values": [ - "Trafficking" - ] - }, - { - "text": "Adopt an approach based on respect for traditional societal norms as the basis for human rights education and sensitization", - "values": [ - "Human rights education and training" - ] - }, - { - "text": "Cooperate with treaty bodies, submitting pending reports", - "values": [ - "Treaty bodies" - ] - }, - { - "text": "Ratify other major international human rights conventions such as the International Covenant on Civil and Political Rights, International Covenant on Economic, Social and Cultural Rights, and the Convention on the Rights of Persons with Disabilities ", - "values": [ - "CP rights - general", - "Disabilities", - "ESC rights - general", - "International instruments" - ] - }, - { - "text": "Ratify the fundamental international human rights law instruments, particularly the International Covenant on Economic, Social and Cultural Rights, the International Covenant on Civil and Political Rights, and the Convention against Torture", - "values": [ - "CP rights - general", - "ESC rights - general", - "International instruments", - "Torture and other CID treatment" - ] - }, - { - "text": "Enact and implement a comprehensive legal framework addressing all forms of violence against women", - "values": [ - "Women's rights" - ] - }, - { - "text": "Step up the process of reviewing the reservations made to the international human rights treaties", - "values": [ - "International instruments" - ] - }, - { - "text": "Put into place guarantees, in particular public hearings and the right to appeal, including in the framework of the fight against terrorism, to ensure the right to a fair trial", - "values": [ - "Counter-terrorism", - "Justice" - ] - }, - { - "text": "Ratify the Rome Statute of the International Criminal Court and the Agreement on the Privileges and Immunities of the International Criminal Court, and to fully align its national legislation with the obligations contained therein ", - "values": [ - "International instruments", - "Justice" - ] - }, - { - "text": "Continue the efforts aimed at fighting against poverty and discrimination of the most vulnerable groups", - "values": [ - "Poverty" - ] - }, - { - "text": "Translate, publish and make available to the citizens of the country the assessments and recommendations made by international human rights bodies, including the Human Rights Council's universal periodic review ", - "values": [ - "Treaty bodies", - "UPR process" - ] - }, - { - "text": "Seek assistance from the international community in tackling the challenges it faces ", - "values": [ - "Technical assistance and cooperation" - ] - }, - { - "text": "Implement inclusive education programming for students with disabilities in the general education system ", - "values": [ - "Disabilities", - "Right to education", - "Rights of the Child" - ] - }, - { - "text": "Adopt effective measures to prevent any form of discrimination, racism and xenophobia ", - "values": [ - "Racial discrimination" - ] - }, - { - "text": "Re-instate the dismissed members of the judiciary.", - "values": [ - "Justice" - ] - }, - { - "text": "Protect trade union rights and the independence of trade unions", - "values": [ - "Labour" - ] - }, - { - "text": "Strengthen the implementation of effective programmes for the protection and rehabilitation of, and comprehensive attention to, victims of trafficking ", - "values": [ - "Trafficking" - ] - }, - { - "text": "Reinforce measures to combat violence against women, including legislative amendments to the Criminal Code and the Domestic Violence Act and by awareness raising campaigns", - "values": [ - "Human rights education and training", - "Rights of the Child", - "Women's rights" - ] - }, - { - "text": "Fully implement the Law on Protection from Discrimination and launch a national awareness campaign on the issue of discrimination and racism ", - "values": [ - "Human rights education and training", - "Racial discrimination" - ] - }, - { - "text": "Ensure all detainees be properly charged and brought to trial without delay, or released, and that an independent body in Gambia investigate allegations of ill-treatment, torture and extra-judicial executions", - "values": [ - "Detention", - "Extrajudicial executions", - "Torture and other CID treatment" - ] - }, - { - "text": "Include participation of civil society (in mechanisms and procedures that are in place for national follow up to recommendations of treaty bodies) and publication of the concluding recommendations of treaty bodies", - "values": [ - "Civil society", - "Treaty bodies" - ] - }, - { - "text": "Establish an effective and inclusive process to follow up on the recommendations of the Working Group \n", - "values": [ - "UPR process" - ] - }, - { - "text": "Reform comprehensively the prison system and respect the United Nations Standard Minimum Rules for the Treatment of Prisoners. It is fundamental that the authorities guarantee the rights of persons deprived of their liberty, from the moment of their detention", - "values": [ - "Detention" - ] - }, - { - "text": "Continue its efforts in fostering cooperation with its neighbours to address the problem of trafficking in women and children", - "values": [ - "Rights of the Child", - "Trafficking", - "Women's rights" - ] - }, - { - "text": "Consider the establishment of a legal moratorium on the death penalty with a view to its abolition ", - "values": [ - "Death penalty" - ] - }, - { - "text": "Ratify the Rome Statute of the International Criminal Court, and fully align its national legislation with all obligations under the Rome Statute ", - "values": [ - "International instruments", - "Justice" - ] - }, - { - "text": "Establish a Police Service Commission responsible for appointments, promotions and transfers ", - "values": [ - "Justice" - ] - }, - { - "text": "Continue to adopt strategies and enforce policies and procedures needed to ensure the protection and the respect of migrant workers, halt all means of discrimination in the workplace, ensure equality in salaries and benefits and ensure the efficiency of the justice mechanisms", - "values": [ - "Labour", - "Migrants" - ] - }, - { - "text": "Consider the possibility of signing and ratifying the Optional Protocol to the Convention on the Rights of the Child on the sale of children, child prostitution and child pornography. ", - "values": [ - "International instruments", - "Rights of the Child", - "Trafficking" - ] - }, - { - "text": "Timely ratify the ICCPR", - "values": [ - "CP rights - general", - "International instruments" - ] - }, - { - "text": "Continue its efforts to raise awareness about human rights among its population", - "values": [ - "Human rights education and training" - ] - }, - { - "text": "Adopt a comprehensive legislation with regard to discrimination, in particular discrimination against women, as well as complementary measures with the purpose of informing the population, punishing discrimination and hate speech and fighting impunity in this field", - "values": [ - "Impunity", - "Racial discrimination", - "Women's rights" - ] - }, - { - "text": "Redouble efforts to prevent school dropout and promote school enrolment in the rural areas", - "values": [ - "Right to education" - ] - }, - { - "text": "Continue and intensify its programmes of human rights mass education", - "values": [ - "Human rights education and training" - ] - }, - { - "text": "Introduce legislation that explicitly protects LGBT persons from discrimination", - "values": [ - "Sexual Orientation and Gender Identity" - ] - }, - { - "text": "Enact legislation to explicitly prohibit corporal punishment of children in all settings", - "values": [ - "Rights of the Child", - "Torture and other CID treatment" - ] - }, - { - "text": "Stop the intimidation, threatening and arrest of human rights defenders and journalists and release political prisoners who are still in detention", - "values": [ - "Detention", - "Freedom of opinion and expression", - "Freedom of the press", - "Human rights defenders" - ] - }, - { - "text": "Step up the fight against trafficking to which some foreign populations have fallen victim and ensure that no measures which are contrary to human rights are taken against them ", - "values": [ - "Trafficking" - ] - }, - { - "text": "Continue to actively protect rights of women and children", - "values": [ - "Rights of the Child", - "Women's rights" - ] - }, - { - "text": "Extend an open and standing invitation to all Special Procedures and avoid delays in the submission of reports to treaty bodies that has been occurring since 2000 ", - "values": [ - "Special procedures", - "Treaty bodies" - ] - }, - { - "text": "Create a legislative framework and implement public policies and social awareness campaigns to eliminate violence and discrimination based on sexual orientations and gender identity", - "values": [ - "Human rights education and training", - "Sexual Orientation and Gender Identity" - ] - }, - { - "text": "Implement the programme for AIDS orphans.", - "values": [ - "HIV - Aids", - "Rights of the Child" - ] - }, - { - "text": "Take measures for the systematic registration of children born outside of marriage and of refugee children or migrants", - "values": [ - "Migrants", - "Rights of the Child", - "Statelessness and the right to nationality" - ] - }, - { - "text": "Actively pursue further reforms to ensure judicial independence", - "values": [ - "Justice" - ] - }, - { - "text": "Sign and ratify the core human rights instruments ", - "values": [ - "International instruments" - ] - }, - { - "text": "Reform the security and penitentiary systems. Bring an end to extrajudicial executions, arbitrary detentions and the practice of torture. Ratify the Optional Protocol to the Convention against Torture", - "values": [ - "Detention", - "Extrajudicial executions", - "International instruments", - "Torture and other CID treatment" - ] - }, - { - "text": "Accede to the Second Optional Protocol to the International Covenant on Civil and Political Rights, aiming at the abolition of the death penalty ", - "values": [ - "Death penalty", - "International instruments" - ] - }, - { - "text": "Ratify as soon as possible the International Convention for the Protection of All Persons from Enforced Disappearance", - "values": [ - "Enforced disappearances", - "International instruments" - ] - }, - { - "text": "Ratify the CAT and its Optional Protocol ", - "values": [ - "Detention", - "International instruments", - "Torture and other CID treatment" - ] - }, - { - "text": "Abolish the practice of revoking nationality as a punishment on any grounds", - "values": [ - "Statelessness and the right to nationality" - ] - }, - { - "text": "Continue strengthening the national dialogue aiming at true reconciliation and lasting peace", - "values": [ - "Justice" - ] - }, - { - "text": "Take further steps to ensure, in law and in practice, the independence of the judiciary", - "values": [ - "Justice" - ] - }, - { - "text": "Develop programmes of compensation and reintegration for victims of terrorism", - "values": [ - "Public security" - ] - }, - { - "text": "Require that the police act with restraint when not directly threatened", - "values": [ - "Human rights violations by state agents" - ] - }, - { - "text": "Continue the provision of high-quality health-care services to its population", - "values": [ - "Right to health" - ] - }, - { - "text": "Fully investigate all allegations of torture or ill-treatment and, if appropriate, bring the perpetrators of such acts to justice, and consider bringing the Criminal Code into compliance with the Convention against Torture ", - "values": [ - "International instruments", - "Torture and other CID treatment" - ] - }, - { - "text": "Proceed with early conclusion of major international human rights treaties, including the International Convention for the Protection of All Persons from Enforced Disappearances ", - "values": [ - "Enforced disappearances", - "International instruments" - ] - }, - { - "text": "Accede to the 1951 Convention relating to the Status of Refugees and its 1967 Protocol and put in place mechanisms for determining refugee status", - "values": [ - "Asylum-seekers - refugees", - "International instruments" - ] - }, - { - "text": "Ensure full compliance of the Lithuanian legislation and practice with international law which guarantees every person belonging to minority the right to have his or her name in official documents written in minority language", - "values": [ - "Minorities" - ] - }, - { - "text": "Guaranty the compliance of Guatemala's legislation with the provisions of ICEDAW", - "values": [ - "International instruments", - "Women's rights" - ] - }, - { - "text": "Enhance the activities of the National Commission for Human Rights and ensure its conformity with the Paris Principles ", - "values": [ - "National Human Rights Institution" - ] - }, - { - "text": "Move quickly to establish the Independent High Commission for Human Rights IHCHR and, notwithstanding budget pressures, ensure adequate funding for the IHCHR and the Ministry of Human Rights", - "values": [ - "National Human Rights Institution" - ] - }, - { - "text": "Implement strategies to promote better access to education for girls at all levels", - "values": [ - "Right to education", - "Rights of the Child", - "Women's rights" - ] - }, - { - "text": "Carry out public awareness campaigns about equal opportunities of women and men.", - "values": [ - "Human rights education and training", - "Women's rights" - ] - }, - { - "text": "Expedite the establishment of the national mechanism against torture in all provinces, provide it with human and financial resources and protect its independence", - "values": [ - "Detention", - "Torture and other CID treatment" - ] - }, - { - "text": "Acknowledge the existence of human rights violations, including political prison camps, dismantle them and release all prisoners", - "values": [ - "Detention", - "Freedom of opinion and expression" - ] - }, - { - "text": "Continue to improve the national infrastructure to assist victims of trafficking and develop a national system for the recognition and support of child victims of trafficking", - "values": [ - "Rights of the Child", - "Trafficking" - ] - }, - { - "text": "Continue to strengthen its legislative and institutional frameworks to enhance the rights of LGBTI people", - "values": [ - "Sexual Orientation and Gender Identity" - ] - }, - { - "text": "Provide the special fund established under the law of 4 January 2015 with sufficient resources to enable it to meet the financial requirements related to the care of victims", - "values": [ - "Justice", - "Women's rights" - ] - }, - { - "text": "Continue its implementation of the national plan of action on the provision of education for all, including for economically disadvantaged social groups", - "values": [ - "Right to education" - ] - }, - { - "text": "Continue to advance in tackling, in an efficient and responsible manner, the structural underlying causes of discrimination against women", - "values": [ - "Women's rights" - ] - }, - { - "text": "End arbitrary detention, harassment and other acts of intimidation against journalists, media workers and human rights defenders ", - "values": [ - "Freedom of the press", - "Human rights defenders" - ] - }, - { - "text": "Ensure a system for registering the complaints of victims of torture or ill treatment, in particular persons in detention or military conscripts", - "values": [ - "Detention", - "Torture and other CID treatment" - ] - }, - { - "text": "Take further steps to improve the operation of the judicial process so as to ensure the conclusion of cases within a reasonable time", - "values": [ - "Justice" - ] - }, - { - "text": "Prohibit the recruitment of child soldiers and take measures against all violators ", - "values": [ - "International humanitarian law", - "Rights of the Child" - ] - }, - { - "text": "Address disparities in access to social services by all, especially children, and continue the dialogue that will significantly advance on this matter ", - "values": [ - "Rights of the Child" - ] - }, - { - "text": "Ensure equal opportunity to employment and the right to equal pay for equal jobs for women ", - "values": [ - "Women's rights" - ] - }, - { - "text": "Ratification and effective implementation of CRPD, with full participation and active involvement of NGOs in the promotion, protection and monitoring of the human rights treaty framework ", - "values": [ - "Civil society", - "Disabilities", - "International instruments" - ] - }, - { - "text": "Consider adhering to the International Convention on the Protection of the Rights of All Migrant Workers and Members of Their Families", - "values": [ - "International instruments", - "Labour", - "Migrants" - ] - }, - { - "text": "Continue to take measures to mitigate, eliminate and prevent violence against women and to provide assistance to victims of violence ", - "values": [ - "Women's rights" - ] - }, - { - "text": "Further strengthen the national programme to eradicate slavery, and take measures to ensure that complaints regarding slavery are being brought before the domestic courts", - "values": [ - "Other" - ] - }, - { - "text": "Cooperate with civil society in the monitoring of the implementation of its anti-corruption legislation at all levels ", - "values": [ - "Civil society", - "Corruption" - ] - }, - { - "text": "Ensure the equal treatment and non-discrimination of all children, irrespective of their ethnicity, including equal opportunity to access education at the same level", - "values": [ - "Rights of the Child" - ] - }, - { - "text": "Expedite efforts to ratify the International Convention for the Protection of All Persons from Enforced Disappearance and the Convention against Torture and Other Cruel, Inhuman or Degrading Treatment or Punishment", - "values": [ - "Enforced disappearances", - "International instruments", - "Torture and other CID treatment" - ] - }, - { - "text": "Continue this work of alleviating of poverty and developing social economic sphere in the context of realization of national strategic plan in the area of development", - "values": [ - "Development", - "ESC rights - general", - "Poverty" - ] - }, - { - "text": "Whilst the death penalty remains in place, adopt a 3 tiered classification of murder that would abolish mandatory imposition of the death penalty and hand decision making power to the presiding judge ", - "values": [ - "Death penalty" - ] - }, - { - "text": "Take further steps to ensure that its national human rights institution is aligned with the Paris Principles ", - "values": [ - "National Human Rights Institution" - ] - }, - { - "text": "Implement the recommendations of the Working Group on Arbitrary Detention and the Human Rights Committee regarding the detention of asylum seekers, including political asylum, and guarantee the full enjoyment of their right to freedom of movement and full and immediate access to independent medical personnel and legal representation", - "values": [ - "Detention", - "International instruments" - ] - }, - { - "text": "Promote and protect the rights of peasants and other people working in rural areas ", - "values": [ - "Other" - ] - }, - { - "text": "Intensify the necessary measures to guarantee the right of all children to have their birth registered, in particular children of African descent, indigenous children and those who live in rural and border areas ", - "values": [ - "Indigenous peoples", - "Minorities", - "Rights of the Child" - ] - }, - { - "text": "Adopt inclusive solutions at the state and local levels involving local enforcement agents, judiciary, community organisations and schools, end tolerance of and impunity for gender-based violence against women and girls, and that solutions include the situation of women in prisons", - "values": [ - "Detention", - "Impunity", - "Rights of the Child", - "Women's rights" - ] - }, - { - "text": "Eliminate all forms of cruel, inhuman or degrading treatments, particularly judicial beatings that should immediately be subjected to a moratorium", - "values": [ - "Justice", - "Torture and other CID treatment" - ] - }, - { - "text": "Step up efforts to stop discrimination against twins", - "values": [ - "Rights of the Child" - ] - }, - { - "text": "Seriously consider ratifying the International Convention for the Protection of All Persons from Enforced Disappearance, as well as the optional protocols to the ICESCR and CRC ", - "values": [ - "ESC rights - general", - "Enforced disappearances", - "International instruments", - "Rights of the Child" - ] - }, - { - "text": "Implement the National Plan for the Protection of Defenders", - "values": [ - "Human rights defenders" - ] - }, - { - "text": "Eliminate, in the case of transsexuals, the requirement of sterilization, medical treatment and a mental health diagnosis in order to complete the process of legal recognition of gender identity", - "values": [ - "Sexual Orientation and Gender Identity" - ] - }, - { - "text": "Publish clear instructions on the use of force during protests in compliance with international human rights standards and ensure that the training of law enforcement personnel incorporates best human rights practices ", - "values": [ - "Freedom of association and peaceful assembly", - "Human rights education and training", - "International instruments" - ] - }, - { - "text": "Strengthen the capacity to adequately protect and promote human rights in cooperation with OHCHR ", - "values": [ - "General" - ] - }, - { - "text": "Accede to-ratify the Rome Statue of the International Criminal Court.", - "values": [ - "International instruments", - "Justice" - ] - }, - { - "text": "Replace decrees No. 115 and No. 116 from 2011 on press and audiovisual communication with legislation that is in line with article 65 of the Constitution relating to information, the press and publishing, and article 127 of the Constitution", - "values": [ - "Freedom of the press" - ] - }, - { - "text": "Ratify the Optional Protocol to the Convention against Torture and establish a national preventive mechanism related to it.", - "values": [ - "Detention", - "International instruments", - "Torture and other CID treatment" - ] - }, - { - "text": "Ensure the independence and credibility of the Truth and Reconciliation Commission, by consulting with affected groups", - "values": [ - "Justice" - ] - }, - { - "text": "Ensure that access to education is not hampered by differences, particular gender, and take necessary measures to guarantee security of female students and staff members", - "values": [ - "Right to education", - "Women's rights" - ] - }, - { - "text": "Strengthen its efforts to effectively combat domestic violence and provide adequate victims' support, inter alia by creating sufficient shelter capacity ", - "values": [ - "Rights of the Child", - "Women's rights" - ] - }, - { - "text": "Continue the efforts to mobilize all stakeholders who can support its initiatives to promote and protect human rights ", - "values": [ - "General" - ] - }, - { - "text": "Take necessary measures to prevent inquiries, arbitrary detentions, searches and questioning by judicial and police authorities motivated by physical appearance, skin colour and racial or ethnic origins. Additionally, impose severe sanctions on authorities that commit such excesses and illtreatment", - "values": [ - "Detention", - "Human rights violations by state agents", - "Racial discrimination", - "Torture and other CID treatment" - ] - }, - { - "text": "In this context, the key priorities are summarized in this report and there is maintained the commitment to lead efforts for accession and ratification of some key instruments that the country has not acceded, and to submit regular reports to the bodies of United Nations Treaty.", - "values": [ - "International instruments", - "Treaty bodies" - ] - }, - { - "text": "Works towards the rapid inclusion within its national legislation of the provisions of recently ratified instruments including the Rome Statue", - "values": [ - "International instruments", - "Justice" - ] - }, - { - "text": "Seek cooperation with the United Nations human rights mechanisms, including special procedures and treaty bodies with regards to Voluntary Goals on Human Rights", - "values": [ - "Special procedures", - "Treaty bodies", - "UPR process" - ] - }, - { - "text": "Implement fully the 2011 law against domestic abuse and continue its efforts to fulfil its obligations under CEDAW", - "values": [ - "International instruments", - "Rights of the Child", - "Women's rights" - ] - }, - { - "text": "Consider alternative (legislative) measures that will enhance the position of children in the short term (i.e. extending the remit of the Ombudsman to children in prisons and asylum-seeking children) ", - "values": [ - "Asylum-seekers - refugees", - "Detention", - "National Human Rights Institution", - "Rights of the Child" - ] - }, - { - "text": "Promote human rights education through public awareness campaigns in partnership with the Office of the Human Rights Defender and academic institutions ", - "values": [ - "Human rights education and training", - "National Human Rights Institution" - ] - }, - { - "text": "Improve coordination on trafficking in persons (TIP) investigations, increase funding for TIP victim services, implement programs to combat the worst forms of child labour and forced labour, and effectively enforce national labour laws, including laws related to freedom of association", - "values": [ - "Freedom of association and peaceful assembly", - "Labour", - "Rights of the Child", - "Trafficking" - ] - }, - { - "text": "Accelerate its efforts to enact legislation on the protection of stateless persons", - "values": [ - "Statelessness and the right to nationality" - ] - }, - { - "text": "Respond positively to all pending requests of special procedures for visits without further delay.", - "values": [ - "Special procedures" - ] - }, - { - "text": "Take additional steps in criminalizing marital rape", - "values": [ - "Women's rights" - ] - }, - { - "text": "Continue efforts to promote tolerance, harmony and respect of human rights among all communities in Myanmar, including through possible review of legal frameworks, human rights' education and interfaith dialogues and cooperation involving all segments in the society", - "values": [ - "Freedom of religion and belief", - "Human rights education and training" - ] - }, - { - "text": "Strengthen and implement comprehensive climate change adaptation measures", - "values": [ - "Environment" - ] - }, - { - "text": "Adopt a law to prevent, punish and eradicate violence against women", - "values": [ - "Women's rights" - ] - }, - { - "text": "Consider signing and ratifying CAT", - "values": [ - "International instruments", - "Torture and other CID treatment" - ] - }, - { - "text": "Adopt the National Plan to Prevent, Combat and Care for the victims of trafficking", - "values": [ - "Trafficking" - ] - }, - { - "text": "Implement its ambitions in the promotion and protection of human rights with the technical support of the international community.", - "values": [ - "Technical assistance and cooperation" - ] - }, - { - "text": "Adopt the necessary legal framework and launch appropriate policies, including awareness\ncampaigns for the public, to guarantee the indiscriminate access of the Nepalese minority to the\nsame enjoyment of human rights as for other Bhutanese citizens", - "values": [ - "Human rights education and training", - "Minorities" - ] - }, - { - "text": "Continue to cooperate with the special procedures of the Human Rights Council in investigating cases of enforced and involuntary disappearances", - "values": [ - "Enforced disappearances", - "Special procedures" - ] - }, - { - "text": "Cease the use of child soldiers by local militia groups", - "values": [ - "International humanitarian law", - "Rights of the Child" - ] - }, - { - "text": "Try to address the intractable problem of providing education and health services to certain categories of children with disabilities, with appropriate assistance from regional and international partners", - "values": [ - "Disabilities", - "Right to education", - "Right to health", - "Rights of the Child", - "Technical assistance and cooperation" - ] - }, - { - "text": "Comply with the pertinent judgments of the ECHR concerning violations of human rights in the area of Cyprus, which are under effective control of Turkey ", - "values": [ - "General" - ] - }, - { - "text": "Consider developing human rights indicators as an instrument that would allow the assessment of national human rights policies", - "values": [ - "Other" - ] - }, - { - "text": "Reform its legislation on religious freedom in order to ensure adequate protection for all religious minorities, with a view to gradually allowing public practice of other faiths and beliefs ", - "values": [ - "Freedom of religion and belief", - "Minorities" - ] - }, - { - "text": "Continue efforts to combat terrorism, the drug trade and drug use, within the framework of the Constitution, the law and international human rights standards", - "values": [ - "Public security" - ] - }, - { - "text": "Finalize the creation of a national human rights institution and the establishment of an NHRI in full compliance with the Paris Principles (A status)", - "values": [ - "National Human Rights Institution" - ] - }, - { - "text": "Implement policies for the effective combating of domestic violence, including information and awareness-raising programmes to prevent this scourge", - "values": [ - "Human rights education and training", - "Rights of the Child", - "Women's rights" - ] - }, - { - "text": "Investigate all complaints of torture and adopt necessary preventative measures to eliminate this practice", - "values": [ - "Torture and other CID treatment" - ] - }, - { - "text": "Continue its efforts to harmonize its national legislation with international standards", - "values": [ - "General" - ] - }, - { - "text": "Strengthen or adopt, as necessary, specific programmes to ensure appropriate representation of minority communities at all levels of government, and adopt broad and effective national measures to end discriminatory approaches to law enforcement and provide victims with effective recourse and remedies", - "values": [ - "Minorities" - ] - }, - { - "text": "Withdraw its reservations to articles 9 (2), 15 (4) and 16 (1), (c), (d) and (g) of the Convention on the Elimination of Discrimination against Women (CEDAW)", - "values": [ - "International instruments", - "Statelessness and the right to nationality", - "Women's rights" - ] - }, - { - "text": "Limit the use of long periods of pretrial custody ", - "values": [ - "Detention" - ] - }, - { - "text": "Become a party to ICERD, ICCPR and its Optional Protocols, ICESCR, the Convention on the Prevention and Punishment of the Crime of Genocide, the Rome Statute of the International Criminal Court and the Convention on the Status of Refugees and its Protocol", - "values": [ - "Asylum-seekers - refugees", - "CP rights - general", - "ESC rights - general", - "International instruments", - "Justice", - "Racial discrimination" - ] - }, - { - "text": "Continue its endeavours to reduce the illiteracy rates and eradicate forced labour, especially child labour ", - "values": [ - "Labour", - "Rights of the Child" - ] - }, - { - "text": "Take steps to ensure full accountability of law enforcement agencies, including by strengthening complaints procedures ", - "values": [ - "Justice" - ] - }, - { - "text": "Continue its affirmative actions in the education sector by investing more in education", - "values": [ - "Right to education" - ] - }, - { - "text": "Increase financial and welfare support to families living in conditions of poverty so that families living in a situation of poverty can raise their children with adequate amenities as required for healthy upbringing of those children ", - "values": [ - "Poverty", - "Rights of the Child" - ] - }, - { - "text": "Consider opening of one of the historical mosques in Thessaloniki, where significant number of Muslim population live ", - "values": [ - "Freedom of religion and belief", - "Minorities" - ] - }, - { - "text": "Take all necessary measures to ensure that those responsible for violations of international law, including human rights and international humanitarian law, are held accountable", - "values": [ - "International humanitarian law", - "International instruments" - ] - }, - { - "text": "Ensure the safety of journalists and civil society activists by protecting them against unlawful interference and threats", - "values": [ - "Civil society", - "Freedom of the press" - ] - }, - { - "text": "Accede to the universal core treaties on human rights and those of inter-American system, in particular the recognition of the jurisdiction of the Inter-American Court on Human Rights", - "values": [ - "International instruments" - ] - }, - { - "text": "Reinstate the moratorium on the death penalty with a view to acceding the Second Optional Protocol to the ICCPR", - "values": [ - "Death penalty", - "International instruments" - ] - }, - { - "text": "Bring the definition of torture in Tunisian law in line with the Convention against Torture and focus on best practice and human rights training for police and security personnel", - "values": [ - "Human rights education and training", - "International instruments", - "Torture and other CID treatment" - ] - }, - { - "text": "Cooperate fully with special procedures mandate holders and UNAMID", - "values": [ - "Special procedures" - ] - }, - { - "text": "Continue its ongoing review of national laws to ensure that they are in line with its international human rights law obligations", - "values": [ - "International instruments" - ] - }, - { - "text": "Take full use of technical assistance of the UN and Ivorian NGOs dealing with women's rights to finalize the strategy and implement it accordingly, once adopted", - "values": [ - "Civil society", - "Technical assistance and cooperation", - "Women's rights" - ] - }, - { - "text": "Fully implement its national action plan on the UN Security Council resolution 1325 to meaningfully involve women in peace process and to combat gender-based violence and discrimination", - "values": [ - "Women's rights" - ] - }, - { - "text": "Provide a follow-up to the initiatives to strengthen the protection of rights of the child", - "values": [ - "Rights of the Child" - ] - }, - { - "text": "Investigate the killings of journalists since October 2011 and bring perpetrators to justice", - "values": [ - "Extrajudicial executions", - "Freedom of the press" - ] - }, - { - "text": "Enhance its efforts with respect to the freedom of the press, freedom of expression and freedom of assembly and association", - "values": [ - "Freedom of association and peaceful assembly", - "Freedom of opinion and expression", - "Freedom of the press" - ] - }, - { - "text": "Ratify the Second Optional Protocol to the ICCPR", - "values": [ - "Death penalty", - "International instruments" - ] - }, - { - "text": "Evaluate the possibility to set out, as a national priority, the full realization of the right to water and sanitation, which is essential to achieve other priorities established such as health, education and gender equality ", - "values": [ - "Right to water and sanitation" - ] - }, - { - "text": "Take measures to ensure effective implementation of laws and policies that combat trafficking in persons", - "values": [ - "Trafficking" - ] - }, - { - "text": "Establish a formal moratorium on the death penalty with a view to ratifying the Second Optional Protocol to the ICCPR", - "values": [ - "Death penalty", - "International instruments" - ] - }, - { - "text": "Consider establishing an Ombudsman for children ", - "values": [ - "National Human Rights Institution", - "Rights of the Child" - ] - }, - { - "text": "Take further appropriate measures, including the adoption of a national plan of action to tackle challenges resulting from global warming or climate change and adverse human activities, in particular with regard to sanitary systems ", - "values": [ - "Environment" - ] - }, - { - "text": "Continue to mobilize resources and the necessary technical support to further enhance its capacity to fulfil its human rights obligations", - "values": [ - "General" - ] - }, - { - "text": "Train judges and prosecutors on laws related to violence against women and train police forces on the protocols to assist women victims of violence", - "values": [ - "Human rights education and training", - "Women's rights" - ] - }, - { - "text": "Adopt measures, including appropriate legislation, to prevent, penalize and eliminate all forms of violence against women, end impunity for sexual violence and ensure access to justice", - "values": [ - "Impunity", - "Women's rights" - ] - }, - { - "text": "Develop non-custodial alternatives, such as community service and bail arrangements.", - "values": [ - "Justice" - ] - }, - { - "text": "Spare no efforts for the necessary establishment of a national human rights institution", - "values": [ - "National Human Rights Institution" - ] - }, - { - "text": "Criminalize domestic violence in the Penal Code ", - "values": [ - "Rights of the Child", - "Women's rights" - ] - }, - { - "text": "Continue to implement strategies to combat child sexual exploitation including trafficking of children, ensure accountability for the exploitation of children, and provide adequate resources for the shelter and rehabilitation of child victims", - "values": [ - "Rights of the Child", - "Trafficking" - ] - }, - { - "text": "Amend the Family Code in order to raise to 18 the minimum age for marriage to define forced marriage as a crime to intensify educational measures in the area of reproductive health and to improve the conditions of access to secondary education, especially in rural areas", - "values": [ - "Right to health", - "Rights of the Child", - "Women's rights" - ] - }, - { - "text": "Continue ratifying the rest of the conventions relative to human rights that it has not ratified", - "values": [ - "International instruments" - ] - }, - { - "text": "Adopt further legislative, administrative and other measures to eliminate discriminatory treatment on the basis of gender identity ", - "values": [ - "Women's rights" - ] - }, - { - "text": "Ratify the CRPD, the ICPPED and the Optional Protocol to CAT", - "values": [ - "Detention", - "Disabilities", - "Enforced disappearances", - "International instruments", - "Torture and other CID treatment" - ] - }, - { - "text": "Continue to implement its voluntary commitments to promote human rights through its membership in the Human Rights Council, the African Union and the League of Arab States in order to prevent double standards in dealing with specific countries and to promote dialogue between nations, instead of resorting to force or the imposition of coercive measures or using human rights as a reason to interfere in the internal affairs of States", - "values": [ - "Other" - ] - }, - { - "text": "Extend a standing invitation to all special procedures mandate holders as a sign of goodwill to cooperate fully with all human rights mechanisms ", - "values": [ - "Special procedures" - ] - }, - { - "text": "Ratify the International Convention for the Protection of All Persons from Enforced Disappearances (CPED) ", - "values": [ - "Enforced disappearances", - "International instruments" - ] - }, - { - "text": "Continue efforts to improve social services that provide support to victims of human trafficking, forced labour and those who have been sexually exploited", - "values": [ - "Labour", - "Trafficking" - ] - }, - { - "text": "Continue action to increase representation of women in elected and decision-making positions ", - "values": [ - "Women's rights" - ] - }, - { - "text": "Increase the number of measures for persons with disabilities to obtain appropriate jobs", - "values": [ - "Disabilities", - "Labour" - ] - }, - { - "text": "Ensure that its treatment of all affected persons is in line with its international human rights obligations and that it seek the technical advice of the United Nations High Commissioner for Refugees to identify, prevent and reduce statelessness ", - "values": [ - "International instruments", - "Statelessness and the right to nationality", - "Technical assistance and cooperation" - ] - }, - { - "text": "Ratify the International Covenant on Civil and Political Rights and its Second Optional Protocol, the International Covenant on Economic, Social and Cultural Rights and its Optional Protocol, as well as the Convention against Torture", - "values": [ - "CP rights - general", - "Death penalty", - "ESC rights - general", - "International instruments", - "Torture and other CID treatment" - ] - }, - { - "text": "Redouble efforts to promote and safeguard the freedom and independence of the press and electronic media on the basis of international standards and norms", - "values": [ - "Freedom of opinion and expression", - "Freedom of the press" - ] - }, - { - "text": "Continue to implement the National Plan for the Integration of Persons with Disabilities", - "values": [ - "Disabilities" - ] - }, - { - "text": "Continue efforts to enhance the standard of living and ensure wide access of the population to high quality education and health care system ", - "values": [ - "Right to education", - "Right to health" - ] - }, - { - "text": "Strengthen training programmes for State officials in the field of minority rights", - "values": [ - "Minorities" - ] - }, - { - "text": "Take further steps to ensure better labour market access and access to basic social and health services for marginalized women, including women with disabilities, Roma women and migrant women", - "values": [ - "Disabilities", - "Labour", - "Migrants", - "Minorities", - "Right to health", - "Women's rights" - ] - }, - { - "text": "Establish a recurrent system of review of its prisons by United Nations and other relevant international observers, in support of their stated commitment to continue to improve the prison system in Cuba", - "values": [ - "Detention" - ] - }, - { - "text": "Ensure that all civil society actors, as well as the Human Rights Commission, can carry out their activities, including participating in international mechanisms, without being subjected to reprisal", - "values": [ - "Civil society", - "National Human Rights Institution" - ] - }, - { - "text": "Strengthen efforts undertaken to combat violence against women", - "values": [ - "Women's rights" - ] - }, - { - "text": "Take effective legal measures to prevent and combat all forms and manifestations of Islamophobia by political parties and media, ensure that all allegations of racist misconduct by law enforcement officials are effectively investigated and appropriately punished ", - "values": [ - "Human rights violations by state agents", - "Racial discrimination" - ] - }, - { - "text": "Maintain its efforts in the fields of health and education ", - "values": [ - "Right to education", - "Right to health" - ] - }, - { - "text": "The government is currently studying and reviewing other human rights instruments. It has always been the view of the government to first build the necessary social and political institutions and develop the human resources of the country before it assumes any international treaty obligations. In the absence of strong institutions and adequately qualified personnel, the government is seriously constrained in fulfilling obligations as specified in many of the international treaties and conventions. As Bhutan's capacity is enhanced, it will in the near future look forward to ratifying the other international human rights instruments.", - "values": [ - "International instruments" - ] - }, - { - "text": "The Government is committed to enforcing internationally recognised media standards and has consequently promulgated a law for the regulation, registration and conduct of media organisations.", - "values": [ - "Freedom of the press" - ] - }, - { - "text": "Ensure the promotion of the family and its protection from social, health and security threats", - "values": [ - "ESC rights - general" - ] - }, - { - "text": "Intensify efforts aimed at combating and preventing torture and other forms of ill-treatment", - "values": [ - "Torture and other CID treatment" - ] - }, - { - "text": "In cooperation with UNDP and UNESCO, continue to improve its education system and vocational training for its people ", - "values": [ - "Right to education", - "Technical assistance and cooperation" - ] - }, - { - "text": "As one of the main co-authors of resolution 62-149 on the moratorium on the use of death penalty, accede to the Second Optional Protocol to ICCPR", - "values": [ - "Death penalty", - "International instruments" - ] - }, - { - "text": "Take the necessary steps to combat racial hatred and promote tolerance towards persons of different ethnic origins", - "values": [ - "Minorities", - "Racial discrimination" - ] - }, - { - "text": "Ratify the Optional Protocol to the Convention on the Rights of the Child on the sale of children, child prostitution and child pornography ", - "values": [ - "International instruments", - "Rights of the Child", - "Trafficking" - ] - }, - { - "text": "Ratify OP-CAT, the second Optional Protocol to the International Covenant on Civil and Political Rights ICCPR-OP 2 and the Convention of the Rights of Persons with Disabilities CRPD and its Optional Protocol", - "values": [ - "Death penalty", - "Detention", - "Disabilities", - "International instruments", - "Torture and other CID treatment" - ] - }, - { - "text": "Adopt a comprehensive strategy to prevent gender-based violence and thoroughly investigate and prosecute incidents of domestic violence perpetrated against migrant populations", - "values": [ - "Migrants", - "Rights of the Child", - "Women's rights" - ] - }, - { - "text": "Continue further improvement of the legislative framework regarding rights of women in Angola", - "values": [ - "Women's rights" - ] - }, - { - "text": "Repeal the Penal Code provisions criminalizing sex between consensual same-sex partners and remove discriminatory language against lesbian, gay, bisexual, transgender and intersex persons or minority groups or their supporters", - "values": [ - "Sexual Orientation and Gender Identity" - ] - }, - { - "text": "Expedite the review of the effectiveness of the current framework of the office of the National Human Rights Commission and Ombudsman", - "values": [ - "National Human Rights Institution" - ] - }, - { - "text": "Cooperate with United Nations and other international and regional mechanisms with a view to guaranteeing that the legal and administrative measures adopted to combat terrorism respect the enjoyment of human rights and fundamental freedoms", - "values": [ - "Counter-terrorism", - "Technical assistance and cooperation" - ] - }, - { - "text": "Implement existing laws on all forms of violence and sexual violence against women and girls, including \u201chonour\u201c crimes, female feticide and female infanticide, expand the definition of rape and sexual assault to include marital rape, and end harmful practices such as child, early and forced marriage", - "values": [ - "Rights of the Child", - "Torture and other CID treatment", - "Women's rights" - ] - }, - { - "text": "Take additional measures to prevent and combat trafficking in human beings, and to protect victims and prosecute traffickers ", - "values": [ - "Trafficking" - ] - }, - { - "text": "Sign and ratify the Second Optional Protocol to the International Covenant on Civil and Political Rights, aiming at the Abolition of the Death Penalty ", - "values": [ - "Death penalty", - "International instruments" - ] - }, - { - "text": "Continue its efforts to combat trafficking of persons through the effective implementation of the Prevention and Combating of Trafficking in Persons Act", - "values": [ - "Trafficking" - ] - }, - { - "text": "Step up actions in the area of gender equality, including the implementation of the Women, Peace and Security Agenda to guarantee the participation of women in all areas of decision-making", - "values": [ - "Women's rights" - ] - }, - { - "text": "Intensify efforts made so far to identify and eradicate racism ", - "values": [ - "Racial discrimination" - ] - }, - { - "text": "Expedite ratification of the ICCPR and ICESCR as was accepted by the Government at the first UPR", - "values": [ - "CP rights - general", - "ESC rights - general", - "International instruments", - "UPR process" - ] - }, - { - "text": "Eliminate racial segregation in schools so that all children, regardless of their ethnic origin, have access to education", - "values": [ - "Minorities", - "Right to education", - "Rights of the Child" - ] - }, - { - "text": "Continue implementation of the national policy for a comprehensive protection of children and adolescents for the period 2013-2023", - "values": [ - "Rights of the Child" - ] - }, - { - "text": "Incorporate international conventions, to which Afghanistan is a party, into domestic legal reform initiatives and translate these into concrete policies and programmes.", - "values": [ - "International instruments" - ] - }, - { - "text": "Repeal legislation discriminating against individuals on the basis of their sexual orientation or gender identity ", - "values": [ - "Sexual Orientation and Gender Identity" - ] - }, - { - "text": "Ratify the Convention on the Rights of Persons with Disabilities as a matter of priority ", - "values": [ - "Disabilities", - "International instruments" - ] - }, - { - "text": "Create effective institutional mechanisms to combat all forms of racial discrimination, xenophobia, racism and incitement to hatred", - "values": [ - "Racial discrimination" - ] - }, - { - "text": "Strengthen its policy of promoting gender equality", - "values": [ - "Women's rights" - ] - }, - { - "text": "Continue to collaborate with international organisations to promote and protect economic, social and cultural rights by all", - "values": [ - "ESC rights - general", - "Technical assistance and cooperation" - ] - }, - { - "text": "Improve the situation with implementation of its reporting obligations to the United Nations human rights bodies ", - "values": [ - "Treaty bodies" - ] - }, - { - "text": "Ratify all international human rights instruments to which it is not yet a State party", - "values": [ - "International instruments" - ] - }, - { - "text": "Adopt a uniform Family Code that fully complies with the provisions of CEDAW.", - "values": [ - "International instruments", - "Women's rights" - ] - }, - { - "text": "Ensure respect for freedoms of expression, assembly and association, including for the exercise of trade union rights", - "values": [ - "Freedom of association and peaceful assembly", - "Freedom of opinion and expression", - "Labour" - ] - }, - { - "text": "Incorporate systematically in police training awareness-raising on the rights of victims and suspects ", - "values": [ - "Human rights education and training", - "Justice" - ] - }, - { - "text": "Strengthen efforts to promote empowerment of women and gender equality with the objective of increasing their participation in decision-making ", - "values": [ - "Women's rights" - ] - }, - { - "text": "Strengthen measures to ensure access to free birth registration of children, in particular of indigenous children", - "values": [ - "Indigenous peoples", - "Rights of the Child", - "Statelessness and the right to nationality" - ] - }, - { - "text": "Improve access to health services for socially vulnerable persons", - "values": [ - "Right to health" - ] - }, - { - "text": "Continue its efforts in finalizing the process of free and compulsory basic education", - "values": [ - "Right to education" - ] - }, - { - "text": "Harmonize all national legislation and elaborate policies in accordance with the Yogyakarta principles ", - "values": [ - "Sexual Orientation and Gender Identity" - ] - }, - { - "text": "Continue strengthening its capacity and its efforts to combat violence against children", - "values": [ - "Rights of the Child" - ] - }, - { - "text": "The government will continue to work with these non-governmental organisations so as to develop a constructive dialogue with them in advancing the country's socio-economic development.", - "values": [ - "Civil society", - "Development", - "ESC rights - general" - ] - }, - { - "text": "Adopt protocols on domestic and sexual violence for police agents", - "values": [ - "Human rights education and training", - "Rights of the Child", - "Women's rights" - ] - }, - { - "text": "As a high priority, introduce federal law which prohibits discrimination on the grounds of sexual orientation ", - "values": [ - "Sexual Orientation and Gender Identity" - ] - }, - { - "text": "Modify the criminal code in order to decriminalize consensual sexual behaviour between persons of the same sex, suppress degrading terms that could be used against the lesbian, gay, bisexual, transgender and intersex community, and avoid abuse and harassment by police authorities", - "values": [ - "Human rights violations by state agents", - "Sexual Orientation and Gender Identity" - ] - }, - { - "text": "Ratify the Convention against Torture and Other Cruel, Inhuman or Degrading Treatment or Punishment, and the International Convention for the Protection of All Persons from Enforced Disappearance, and ensure their implementation in the country", - "values": [ - "Enforced disappearances", - "International instruments", - "Torture and other CID treatment" - ] - }, - { - "text": "Ensure that the constitutional framework is in compliance with its international obligations, in particular under the International Covenant on Civil and Political Rights ", - "values": [ - "CP rights - general", - "International instruments" - ] - }, - { - "text": "Ensure registration of all children at birth as well as delayed registration of children who have not been registered at birth", - "values": [ - "Rights of the Child", - "Statelessness and the right to nationality" - ] - }, - { - "text": "Limit to a strictly necessary level the use of prosecutions against persons that exercising their rights to freedom of expression and peaceful demonstration ", - "values": [ - "Freedom of association and peaceful assembly", - "Freedom of opinion and expression" - ] - }, - { - "text": "Take the measures necessary to bring its national legislations into conformity with its international obligations under the CEDAW and the CRC ", - "values": [ - "International instruments", - "Rights of the Child", - "Women's rights" - ] - }, - { - "text": "Further develop national information and public education strategy that encourages the culture of disaster risk perception ", - "values": [ - "Environment" - ] - }, - { - "text": "Ensure better control of the State's Security Forces, especially by promoting independent investigations into the cases of human rights violations in which they have been implicated ", - "values": [ - "Human rights violations by state agents" - ] - }, - { - "text": "Continue to discharge its obligations to submit, under the international legal instruments to which it was a party, initial and periodic reports to the respective treaty-monitoring bodies and to implement the recommendations of those bodies", - "values": [ - "Treaty bodies" - ] - }, - { - "text": "Establish effective legislative measures, such as quotas, to improve the participation of women in political life and decision-making processes", - "values": [ - "Women's rights" - ] - }, - { - "text": "Strengthen its national human rights institutions by providing them with adequate resources", - "values": [ - "National Human Rights Institution" - ] - }, - { - "text": "Continue to mobilize resources and technical support to enhance the capacity to fulfil its human rights obligations", - "values": [ - "Technical assistance and cooperation" - ] - }, - { - "text": "Execute the judgments of the European Court of Human Rights regarding the applications of the Turkish Union of Xanthi, the Cultural Association of Turkish Women of Rodopi and the Evros Minority Youth Association", - "values": [ - "Freedom of association and peaceful assembly", - "Minorities" - ] - }, - { - "text": "Withdraw the remaining reservations to ICCPR and to CAT", - "values": [ - "CP rights - general", - "International instruments", - "Torture and other CID treatment" - ] - }, - { - "text": "Consider extending an invitation on the UN Special Rapporteur on Human Rights Defenders", - "values": [ - "Human rights defenders", - "Special procedures" - ] - }, - { - "text": "Allow the International Commission of Inquiry to visit the country to better understand the situation on the ground, and to work with the Government and other stakeholders to ensure accountability and to promote human rights reform", - "values": [ - "Technical assistance and cooperation" - ] - }, - { - "text": "Continue in its plans to realize the enjoyment of economic, social and cultural rights, and tackle the problems related to the illegal and unjustified economic sanctions against the country", - "values": [ - "ESC rights - general" - ] - }, - { - "text": "Take further steps to enable civil society to thrive without interference and restrictions.", - "values": [ - "Civil society" - ] - }, - { - "text": "Undertake further steps to enhance dissemination of information, including laws and regulations related to the rights of persons with disabilities and ensure access to all sources of information, with will assist persons with disabilities in their decision-making", - "values": [ - "Disabilities" - ] - }, - { - "text": "Ratify the Optional Protocol to the Convention against Torture (OP-CAT) and set up a national prevention mechanism that meets the criteria and guarantees under this instrument", - "values": [ - "Detention", - "International instruments", - "Torture and other CID treatment" - ] - }, - { - "text": "Botswana's Vision 2016 is a national effort that captures the nation's aspirations. The government of Botswana, the private sector, civic and civil organisations and the general public are committed to attaining what they set themselves to achieving in the year 2016", - "values": [ - "General" - ] - }, - { - "text": "Continue its efforts to guarantee the provision of resources and infrastructure in the area of initial and secondary education so the quality standards are ensured", - "values": [ - "Right to education" - ] - }, - { - "text": "Take practical steps to fulfil its reporting obligations to various treaty bodies ", - "values": [ - "Treaty bodies" - ] - }, - { - "text": "Effectively address and investigate attacks against journalists and human rights defenders", - "values": [ - "Freedom of the press", - "Human rights defenders" - ] - }, - { - "text": "Put forward further efforts to guarantee the rights of asylum seekers, migrants and refugees with a view to delivering an adequate standard of living and access to affordable public services", - "values": [ - "Asylum-seekers - refugees", - "ESC rights - general", - "Migrants" - ] - }, - { - "text": "The Government of Bosnia and Herzegovina and the cantons introduce a truly inclusive multi-ethnic educational system and launch an efficient coordination mechanism on education", - "values": [ - "Minorities", - "Right to education" - ] - }, - { - "text": "Establish and make operational a national human rights institution in accordance with the Paris Principles ", - "values": [ - "National Human Rights Institution" - ] - }, - { - "text": "Continue to invest heavily in education at all levels, invest more in rural development where the majority of women live, and seek technical assistance in the area of fighting disease ", - "values": [ - "Right to education", - "Right to health", - "Technical assistance and cooperation", - "Women's rights" - ] - }, - { - "text": "Develop and implement a strategy to address the root causes of children living in the street, define preventive and protective measures and ensure that street children attend school and provide them with health-care services, shelter and food ", - "values": [ - "Rights of the Child" - ] - }, - { - "text": "Evaluate the possibility of ratifying CAT and OP-CAT ", - "values": [ - "Detention", - "International instruments", - "Torture and other CID treatment" - ] - }, - { - "text": "Continue to conduct outreach activities to raise public awareness of human rights ", - "values": [ - "Human rights education and training" - ] - }, - { - "text": "Adopt a comprehensive national integration strategy that ensures the proper integration of migrants and increases the awareness of migrant women of their rights and protection thereof", - "values": [ - "Migrants", - "Women's rights" - ] - }, - { - "text": "Formulate a national disaster risk reduction programme to respond to crises relating to food security", - "values": [ - "Right to food" - ] - }, - { - "text": "Fully implement the National System for Comprehensive Protection and Advancement of Children and Adolescents to help protect vulnerable children and adolescents ", - "values": [ - "Rights of the Child" - ] - }, - { - "text": "Enhance efforts to build and improve infrastructure in rural areas ", - "values": [ - "Development" - ] - }, - { - "text": "Protect, in law and in practice, the victims and witnesses of attacks and infringements of human rights and freedoms ", - "values": [ - "Justice" - ] - }, - { - "text": "Fully integrate a gender perspective into the follow-up process to the UPR review.", - "values": [ - "UPR process", - "Women's rights" - ] - }, - { - "text": "Continue its fight against poverty with the support and cooperation of the international community", - "values": [ - "Poverty", - "Technical assistance and cooperation" - ] - }, - { - "text": "Adopt a specific law, based on prevention of violence against women and related assistance, to combat all violence against women", - "values": [ - "Women's rights" - ] - }, - { - "text": "Take necessary steps for the implementation of the relevant legal and policy framework, with a view to combat effectively trafficking in persons, identifying victims, providing them with all the necessary assistance and support, and prosecuting traffickers", - "values": [ - "Trafficking" - ] - }, - { - "text": "Reopen points of passage to and from the Gaza Strip.", - "values": [ - "Freedom of movement" - ] - }, - { - "text": "Develop cooperation with all civil society organizations and NGOs concerned with human rights at the national and international levels and maintain contact with them in order to strengthen capacities for the protection and safeguarding of human rights, bearing in mind the important and effective role of those organizations on this score.", - "values": [ - "Civil society" - ] - }, - { - "text": "Take measures to protect journalists from harassment", - "values": [ - "Freedom of the press" - ] - }, - { - "text": "Continue providing free legal aid to the most vulnerable citizens", - "values": [ - "Minorities" - ] - }, - { - "text": "Review the Penal Code articles that undermine freedoms of expression, association and assembly", - "values": [ - "Freedom of association and peaceful assembly", - "Freedom of opinion and expression" - ] - }, - { - "text": "Undertake further legal and institutional reforms to ensure an effective system of administration of justice", - "values": [ - "Justice" - ] - }, - { - "text": "Continue to engage civil society in the process of implementation of UPR recommendations ", - "values": [ - "Civil society", - "UPR process" - ] - }, - { - "text": "The head of delegation noted, as mentioned by their foreign minister during their UPR, the government has demonstrated strong commitment to implement the provisions of the CHT Peace Accord concluded in 1997. The delegation reaffirmed that Bangladesh government remains committed to full implementation of the Treaty.", - "values": [ - "Other" - ] - }, - { - "text": "Submit its pending reports to the relevant treaty bodies ", - "values": [ - "Treaty bodies" - ] - }, - { - "text": "Develop a national pay strategy to monitor pay gaps mechanisms and establish a comprehensive childcare policy, as recommended by the Committee on the Elimination of All Forms of Discrimination against Women ", - "values": [ - "International instruments", - "Women's rights" - ] - }, - { - "text": "Take further appropriate and effective measures to eliminate discrimination against Roma.", - "values": [ - "Minorities" - ] - }, - { - "text": "Amend the Law on the Protection of Minors against the Detrimental Effect of Public Information so that it cannot be abused for discriminating against and punishing persons for their sexual orientation and gender identity", - "values": [ - "Rights of the Child", - "Sexual Orientation and Gender Identity" - ] - }, - { - "text": "Quickly pass pending legislation related to the protection of women and children including the Sexual Offences and Domestic Violence Bill and the Draft Land Policy", - "values": [ - "Right to land", - "Rights of the Child", - "Women's rights" - ] - }, - { - "text": "Ensure the full independence and impartiality of the judiciary, including by devolving all the functions in terms of the appointment, suspension and removal of judges, from the executive bodies to the judges' self-government bodies", - "values": [ - "Justice" - ] - }, - { - "text": "Protect human rights defenders and ensure their right to exercise their work without restrictions", - "values": [ - "Human rights defenders" - ] - }, - { - "text": "Undertake specific measures to ensure implementation of international treaties and domestic legislation designed to protect the rights of citizens ", - "values": [ - "International instruments" - ] - }, - { - "text": "Redouble its efforts in fostering national unity and harmony, including by intensifying dialogues promoting deeper understanding among societies of different ethnic and faith, addressing the negative portrayal in the media of members of the Muslim community and criminalizing hate speech and all forms of incitement to hatred and violence", - "values": [ - "Freedom of religion and belief", - "Minorities", - "Racial discrimination" - ] - }, - { - "text": "Take additional measures aimed at achieving the gender equality, including amendment to the Constitution on the role and status of women in Irish society ", - "values": [ - "Women's rights" - ] - }, - { - "text": "Accomplish progressively the human rights goals as set forth in Human Rights Council resolution 9-12. ", - "values": [ - "General" - ] - }, - { - "text": "Review the Constitution and legislation, in order to explicitly prohibit discrimination on the basis of sexual orientation or gender identity", - "values": [ - "Sexual Orientation and Gender Identity" - ] - }, - { - "text": "Transparently investigate allegations of ill-treatment committed by law enforcement officers during and after the June 2010 events and take clear steps to combat the arbitrary detentions and torture of detainees, especially of the ethnic Uzbek population in the southern regions", - "values": [ - "Detention", - "Freedom of association and peaceful assembly", - "Human rights violations by state agents", - "Minorities", - "Racial discrimination", - "Torture and other CID treatment" - ] - }, - { - "text": "Observe a de facto moratorium on executions, in line with the international trend", - "values": [ - "Death penalty" - ] - }, - { - "text": "Speed up ratification of the Convention against Torture.", - "values": [ - "International instruments", - "Torture and other CID treatment" - ] - }, - { - "text": "Take all the initiatives necessary to re-establish a legitimate political framework and guarantee the full enjoyment of fundamental human rights by the population", - "values": [ - "General" - ] - }, - { - "text": "Implement a coordination strategy between the heath and justice authorities to prevent and punish acts of female genital mutilation", - "values": [ - "Rights of the Child", - "Torture and other CID treatment", - "Women's rights" - ] - }, - { - "text": "Include a section aiming at promoting the human rights into the National Strategy on the Rule of Law ", - "values": [ - "Justice" - ] - }, - { - "text": "Accelerate the establishment of the national commission for human rights in accordance with the Paris Principles", - "values": [ - "National Human Rights Institution" - ] - }, - { - "text": "Repeal legislation that causes Malawian women to lose their citizenship when marrying a foreign national ", - "values": [ - "Statelessness and the right to nationality", - "Women's rights" - ] - }, - { - "text": "Adopt and implement the draft law on domestic violence referred to in the national report, taking into account the recommendation of the Committee on the Rights of the Child concerning the incorporation of the Convention on the Elimination of All Forms of Discrimination against Women into domestic law ", - "values": [ - "International instruments", - "Rights of the Child", - "Treaty bodies", - "Women's rights" - ] - }, - { - "text": "Eliminate discriminatory practices against persons with disabilities in the medical setting and ensure physical access of children with disabilities to educational and public institutions, as part of its implementation of the Strategy of social inclusion of persons with disabilities", - "values": [ - "Disabilities", - "Right to education", - "Right to health" - ] - }, - { - "text": "Ensure that its national programmes in the field of education include human rights education and training", - "values": [ - "Human rights education and training" - ] - }, - { - "text": "Guarantee the right to legitimate freedom of expression, association and assembly, and release political prisoners, including activists, lawyers and journalists, detained solely for exercising these rights", - "values": [ - "Detention", - "Freedom of association and peaceful assembly", - "Freedom of opinion and expression", - "Freedom of the press", - "Human rights defenders" - ] - }, - { - "text": "Adopt legislation to ensure that alternative services offered to conscientious objectors are of a civilian nature, placed under civilian authorities\u2019 control, and devoid of any punitive dimension, examine the situation of individuals who are currently imprisoned for refusing to submit to compulsory military training, with a view to offering them an alternative civilian service", - "values": [ - "Freedom of religion and belief" - ] - }, - { - "text": "Draft and implement a fully comprehensive law on gender equality and a law on combating gender violence", - "values": [ - "Women's rights" - ] - }, - { - "text": "Ratify the ILO Convention No. 169", - "values": [ - "Indigenous peoples", - "International instruments" - ] - }, - { - "text": "Continue its efforts to fight against impunity regarding human rights violations perpetrated in the past", - "values": [ - "Impunity" - ] - }, - { - "text": "Consider acceding to the main international human rights instruments to which it is not party, particularly CAT and its Optional Protocol ", - "values": [ - "Detention", - "International instruments", - "Torture and other CID treatment" - ] - }, - { - "text": "End discrimination against women by amending its legislation to guarantee women equal rights, in accordance with its international obligations, including with regard to marriage and divorce", - "values": [ - "Women's rights" - ] - }, - { - "text": "Continue and strengthen health education and family life programs, such as education on appropriate sexual and reproductive health for every age, and access to sexual and reproductive health, including contraceptive methods", - "values": [ - "Right to health" - ] - }, - { - "text": "Ensure the ratification of the recently signed human rights conventions", - "values": [ - "International instruments" - ] - }, - { - "text": "Provide, in accordance with its respective obligations under international human rights law, effective protection to the family as the natural and fundamental unit of the society", - "values": [ - "Other" - ] - }, - { - "text": "Respect, protect and promote the human rights of all persons, without discrimination on any grounds, including sexual orientation, gender identity or same-sex relationships between consenting adults", - "values": [ - "Sexual Orientation and Gender Identity" - ] - }, - { - "text": "Adopt measures to raise awareness to prevent incidents of child, early and forced marriage and take steps to investigate and prosecute any cases thereof", - "values": [ - "Rights of the Child", - "Women's rights" - ] - }, - { - "text": "Establish the Mental Health Fund as described in the Mental Health Act 2012 and provide it with adequate funding", - "values": [ - "Right to health" - ] - }, - { - "text": "Arrange the enactment of the law on combating violence against women as well as develop the instruments of its implementation", - "values": [ - "Women's rights" - ] - }, - { - "text": "Take measures to put an end to incidents of racial discrimination against certain social groups and xenophobic hate speech and stigmatization from public and political officials", - "values": [ - "Racial discrimination" - ] - }, - { - "text": "Repeal the laws which criminalize sexual activity between consenting adults of the same sex", - "values": [ - "Sexual Orientation and Gender Identity" - ] - }, - { - "text": "Consider extending invitations to all United Nations special procedures on a case-by-case basis, in order to benefit from this mutually enriching cooperation, exchange of experience and expertise and opportunities for future progress ", - "values": [ - "Special procedures" - ] - }, - { - "text": "Ensure that the right to fair trial is not affected by the excessive length of the court proceedings and of excessive pre-trial detention ", - "values": [ - "Detention", - "Justice" - ] - }, - { - "text": "Provide guarantees for the effective investigation and prosecution of the cases of violence against women", - "values": [ - "Women's rights" - ] - }, - { - "text": "Ratify the Convention on the Rights of Persons with Disabilities and incorporate it into national law", - "values": [ - "Disabilities", - "International instruments" - ] - }, - { - "text": "Further strengthen efforts to ensure full and unhindered access to justice for all Rwandans, particularly through policies and laws designed to combat corrupt practices at all levels", - "values": [ - "Corruption", - "Justice" - ] - }, - { - "text": "Adopt a law on the rights of patients, including women\u2019s rights in the field of reproductive health, and organize the training of personnel involved in the supervision of reproductive health services in order to preserve the fundamental rights of women and girls in the area of obstetrics and gynaecological health care", - "values": [ - "Human rights education and training", - "Right to health", - "Women's rights" - ] - }, - { - "text": "Provide necessary budgetary and trained human resources to the Commission on Human Rights and Public Administration to empower it to carry out its mandate of advocacy and protection of human rights", - "values": [ - "National Human Rights Institution" - ] - }, - { - "text": "Continue to allocate sufficient human and financial resources to fully implement its human rights policies and programmes", - "values": [ - "General" - ] - }, - { - "text": "Continue actions aimed at the return to the Chagos Archipelago of the Chagossians displaced from the island of Diego Garcia and the other islands of the Archipelago, and to consider including in these actions processes for the reparation of victims", - "values": [ - "Justice", - "Minorities" - ] - }, - { - "text": "Strengthen the democratic control of the defence sector, in particular suspend the involvement of members of the armed forces in economic activities, in order to ensure guarantee of property of citizens, as well as their livelihoods", - "values": [ - "Other" - ] - }, - { - "text": "Cooperate regionally in the field of National Human Rights Institutions ", - "values": [ - "National Human Rights Institution" - ] - }, - { - "text": "Accede to the Second Optional Protocol to the International Covenant on Civil and Political Rights aimed at the abolition of the death penalty ICCPR-OP2", - "values": [ - "Death penalty", - "International instruments" - ] - }, - { - "text": "Take all necessary legal and practical measures to prevent child abuse and neglect, and adopt a plan of action to combat any form of violence against children ", - "values": [ - "Rights of the Child" - ] - }, - { - "text": "Continue with the cooperation programs, in line with the World Food Programme, with priority given to the most vulnerable groups, such as elderly persons, women and children, and ensure they are implemented transparently", - "values": [ - "Right to food", - "Rights of the Child", - "Women's rights" - ] - }, - { - "text": "Promote continuous training on human rights for police officers", - "values": [ - "Human rights education and training" - ] - }, - { - "text": "Promptly provide the national mechanism for the prevention of torture with the necessary resources and ensure that its recommendations are acted upon", - "values": [ - "Detention", - "Torture and other CID treatment" - ] - }, - { - "text": "Acknowledge and enhance the important role of women in peacebuilding and in the decision-making process", - "values": [ - "Women's rights" - ] - }, - { - "text": "Ensure that those who find themselves in an irregular situation have legally recognized access to medical services and assistance, as provided in article 12 of the International Covenant on Economic, Social and Cultural Rights ", - "values": [ - "International instruments", - "Migrants", - "Right to health" - ] - }, - { - "text": "Consider the possibility of establishing a national body for the promotion and protection of human rights in accordance with the Paris Principles ", - "values": [ - "National Human Rights Institution" - ] - }, - { - "text": "Ensure the implementation of the judgment of the European Court on\nHuman Rights that found the Government's denial of a license to A1 broadcasting company to be in violation of Armenia's human rights obligations \n", - "values": [ - "Freedom of opinion and expression", - "Freedom of the press" - ] - }, - { - "text": "Continue to take steps to prevent disruption to education faced by children affected by Hurricane Matthew, and implement policies and programmes that promote access to education", - "values": [ - "Right to education", - "Rights of the Child" - ] - }, - { - "text": "Guarantee respect for the rights of migrant workers, in particular by strengthening the capacity of the labour inspectorate, reform the kafala system and ratify ILO Convention No. 189 ", - "values": [ - "International instruments", - "Labour", - "Migrants" - ] - }, - { - "text": "Continue expanding the participation of women in the national public life", - "values": [ - "Women's rights" - ] - }, - { - "text": "Ensure the compliance of its legislation, especially the Code of Personal Status and the Criminal Code, with articles 21 and 46 of its Constitution and international human rights obligations", - "values": [ - "International instruments", - "Justice" - ] - }, - { - "text": "Ratify and accede to to the International Convention for the Protection of All Persons from Enforced Disappearance", - "values": [ - "Enforced disappearances", - "International instruments" - ] - }, - { - "text": "Continue promoting the participation of citizens in decision-making processes ", - "values": [ - "Other" - ] - }, - { - "text": "Amend its legislation so as to include prohibition of corporal punishment", - "values": [ - "Torture and other CID treatment" - ] - }, - { - "text": "Share its experiences in promoting human rights through its role as promoter of regional cooperation and development mediator in conflict resolution and peace building in the West African sub-region", - "values": [ - "Other" - ] - }, - { - "text": "Take every possible action to speed up exhumation processes to enable the Committee on Missing Persons to continue its excellent work \n\n", - "values": [ - "Other" - ] - }, - { - "text": "Establish an independent investigation mechanism with the mandate to investigate alleged human rights violations committed by law enforcement officials", - "values": [ - "Human rights violations by state agents" - ] - }, - { - "text": "Continue to address the inequality and social injustice that has been a factor in fostering social conflict and political unrest over the past 2-3 years, including in the South ", - "values": [ - "Other" - ] - }, - { - "text": "Undertake further work as soon as possible to combat the danger of Islamophobia in society and political discourse, including the establishment and effective implementation of a national system for the recording, independent monitoring and punishment of hate crimes committed within Austria", - "values": [ - "Freedom of religion and belief", - "Racial discrimination" - ] - }, - { - "text": "Continue efforts to further improve the standards of living of its population with emphasis on improving access to education and eliminate illiteracy definitively ", - "values": [ - "Right to education" - ] - }, - { - "text": "Ensure adequate living conditions for migrants, refuges and asylum seekers for the effective promotion and protection of their rights", - "values": [ - "Asylum-seekers - refugees", - "Migrants" - ] - }, - { - "text": "Consider ratifying the Optional Protocol to the Convention against Torture and Other Cruel, Inhuman or Degrading Treatment or Punishment", - "values": [ - "Detention", - "International instruments", - "Torture and other CID treatment" - ] - }, - { - "text": "Continue to implement programmes and policies aimed at strengthening inter-religious dialogue and fostering tolerance and understanding", - "values": [ - "Freedom of religion and belief" - ] - }, - { - "text": "Consider amending or repealing its legislation to close the gaps in the protection of women against discrimination.", - "values": [ - "Women's rights" - ] - }, - { - "text": "Continue its measures with a view of strengthening the investigative and enforcement powers of the Human Rights Commission", - "values": [ - "National Human Rights Institution" - ] - }, - { - "text": "Implement without delay the recently adopted Action Plan on Torture and ensure that safeguards against torture are effectively granted in practice", - "values": [ - "Torture and other CID treatment" - ] - }, - { - "text": "Take all necessary measures to ensure greater effectiveness of legislation on hate crimes", - "values": [ - "Racial discrimination" - ] - }, - { - "text": "Increase its ODA from the current 0.33% to 0.7% of the GDP", - "values": [ - "Development" - ] - }, - { - "text": "Restore the cessation of hostilities declaration that reduced violence in Darfur and the Two Areas and facilitate immediate and unfettered humanitarian access to conflict areas", - "values": [ - "Other" - ] - }, - { - "text": "Recommended that marital rape, child abuse and domestic violence be criminalized, perpetrators are prosecuted and sanctioned, human rights training be provided for officials dealing with instances of domestic violence and child abuse, and that child-sensitive procedures be adopted during criminal proceedings involving children.", - "values": [ - "Human rights education and training", - "Rights of the Child", - "Women's rights" - ] - }, - { - "text": "Continue developing the institutional framework concerning the promotion and protection of human rights ", - "values": [ - "General" - ] - }, - { - "text": "Ratify CMW ", - "values": [ - "International instruments", - "Migrants" - ] - }, - { - "text": "Consider ratifying the Optional Protocol to the Convention against Torture", - "values": [ - "International instruments", - "Torture and other CID treatment", - "Treaty bodies" - ] - }, - { - "text": "Sign and ratify the International Covenant on Civil and Political Rights and the African Charter on Human and Peoples' Rights", - "values": [ - "CP rights - general", - "International instruments" - ] - }, - { - "text": "Fully cooperate with the Human Rights Council Independent Expert on technical cooperation and advisory services in the Democratic Republic of the Congo", - "values": [ - "Special procedures", - "Technical assistance and cooperation" - ] - }, - { - "text": "Consider reviewing strategies aimed at the protection of children, with a view to developing a comprehensive plan for the care of children, and to aligning them with the provisions of CRC and all applicable international human rights instruments to which Guinea-Bissau is party ", - "values": [ - "International instruments", - "Rights of the Child" - ] - }, - { - "text": "Strengthen the juvenile justice system, in particular by ensuring the designation of specialized courts and judges, which would apply procedures that take into account the specific needs of children", - "values": [ - "Detention", - "Justice", - "Rights of the Child" - ] - }, - { - "text": "Raise the minimum age of criminal responsibility and explicitly prohibit life imprisonment for persons under the age of 18 ", - "values": [ - "Justice", - "Rights of the Child" - ] - }, - { - "text": "Improve health-care infrastructure, access to emergency obstetric care, midwife training and health-care access for women from both rural and urban backgrounds", - "values": [ - "Right to health", - "Women's rights" - ] - }, - { - "text": "Adopt a human rights based approach in the engagement with youth, and increase the resources for youth development in urban and rural areas, including by improving the access to and quality of education", - "values": [ - "Right to education" - ] - }, - { - "text": "End the illegal detention of Palestinians and the torture to which they are subjected", - "values": [ - "Detention", - "Torture and other CID treatment" - ] - }, - { - "text": "Strengthen its efforts to make the legal system for asylum seekers effectively accessible, prevent delays and administrative obstacles and guarantee to asylum seekers the necessary procedural safeguards in detention according to international standards.", - "values": [ - "Asylum-seekers - refugees" - ] - }, - { - "text": "Finalize the implementation of the "Master Plan for More Humane Prison Facilities" and continue to take action to address the problem of overcrowding in prisons and its consequences in regards to the conditions of the prisoners ", - "values": [ - "Detention" - ] - }, - { - "text": "Consider signing and ratifying the Council of Europe Convention on preventing and combating violence against women and domestic violence ", - "values": [ - "Rights of the Child", - "Women's rights" - ] - }, - { - "text": "Establish an official moratorium on the death penalty, with a view to its full abolition", - "values": [ - "Death penalty" - ] - }, - { - "text": "Continue to promote women's empowerment", - "values": [ - "Women's rights" - ] - }, - { - "text": "A public policy based on collaboration between the State and civil society in the area of human rights", - "values": [ - "Civil society" - ] - }, - { - "text": "Continue its innovative programmes to eradicate illiteracy, and continue its initiatives to spread education at all levels and throughout the country", - "values": [ - "Right to education" - ] - }, - { - "text": "Ensure full compliance with international law with regard to forced evictions", - "values": [ - "Right to housing" - ] - }, - { - "text": "Take further steps to eliminate violence against women, including through accession to relevant international instruments, the robust domestic implementation of laws, and providing gender-sensitive training to security and law enforcement agencies", - "values": [ - "Human rights education and training", - "International instruments", - "Women's rights" - ] - }, - { - "text": "Revisit the Law concerning the Senegalese Commission of Human Rights to bring it into conformity with the Paris Principles", - "values": [ - "National Human Rights Institution" - ] - }, - { - "text": "Continue to speed up Malaysia's efforts towards accession to the Rome Statute", - "values": [ - "International instruments", - "Justice" - ] - }, - { - "text": "Call on the United Nations Development Programme and the Commonwealth Secretariat to continue to assist Mauritius in capacity-building", - "values": [ - "Technical assistance and cooperation" - ] - }, - { - "text": "Sign and ratify the Optional Protocol to the Covenant on Economic, Social and Cultural Rights, and ratify the Optional Protocol to the Convention against Torture, as well as the International Convention for the Protection of All Persons from Enforced Disappearance ", - "values": [ - "Detention", - "ESC rights - general", - "Enforced disappearances", - "International instruments", - "Torture and other CID treatment" - ] - }, - { - "text": "Consider amending the Family Code in order to raise the minimum age for marriage, which is currently 14 years", - "values": [ - "Rights of the Child", - "Women's rights" - ] - }, - { - "text": "Cooperate with the special procedures concretely by accepting the repeated requests for a country visit by the Special Rapporteurs on the situation of human rights situation and the right to food", - "values": [ - "Right to food", - "Special procedures" - ] - }, - { - "text": "Strengthen efforts for providing appropriate assistance to victims of trafficking in human beings and disseminate information on their right to compensation and ways to access it", - "values": [ - "Trafficking" - ] - }, - { - "text": "Guarantee that journalists and other media workers can carry out their work independently and without fear of persecution, including by reviewing its defamation laws to make sure they are in full compliance with international human rights law", - "values": [ - "Freedom of opinion and expression", - "Freedom of the press" - ] - }, - { - "text": "Continue and enhance its efforts to ensure that all people, particularly those vulnerable groups are benefited from the measures to fulfil the economic, social and cultural rights, including a rise in the minimum wage", - "values": [ - "ESC rights - general", - "Labour" - ] - }, - { - "text": "Manage waste disposal and hazardous materials in an environmentally sound manner and deal with this issue in a way that ensures the preservation of the environment and the health of individuals", - "values": [ - "Environment", - "Right to health" - ] - }, - { - "text": "Expedite the establishment of an independent national human rights institution in line with the Paris Principles", - "values": [ - "National Human Rights Institution" - ] - }, - { - "text": "Ensure a proportional use of force by security forces and ensure that cases of torture are investigated and that the perpetrators are brought to justice", - "values": [ - "Human rights violations by state agents", - "Torture and other CID treatment" - ] - }, - { - "text": "Condemn all racist and xenophobic statements, especially by public and elected officials, and make it clear that racist discourse has no place in Italian society", - "values": [ - "Racial discrimination" - ] - }, - { - "text": "Accelerate reforms with the aim to guarantee good governance and more vigorously address the issue of corruption", - "values": [ - "Corruption" - ] - }, - { - "text": "Deploy further efforts in order to guarantee that any medical treatment to persons with intellectual disabilities or mental disorders be carried out in full respect of the human dignity of the patients concerned ", - "values": [ - "Disabilities" - ] - }, - { - "text": "Take measures to protect freedom of expression and association, by pursuing its reforms of the law on the press and of the Penal Code to bring them into conformity with its fundamental law and international standards, by putting an end to the restrictions on Internet access, and by allowing the free establishment of associations ", - "values": [ - "Freedom of association and peaceful assembly", - "Freedom of opinion and expression" - ] - }, - { - "text": "Prohibit discrimination and criminalize violence against persons on the basis of their sexual orientation or gender identity", - "values": [ - "Sexual Orientation and Gender Identity" - ] - }, - { - "text": "Ensure the adjustment of the Public Safety Act, in order not to limit freedom of expression and the right to peaceful assembly", - "values": [ - "Freedom of association and peaceful assembly", - "Freedom of opinion and expression" - ] - }, - { - "text": "Continue its measures with regard to the better regulation and mainstreaming of the operation of the Ombudsman", - "values": [ - "National Human Rights Institution" - ] - }, - { - "text": "Allocate adequate funding to improve its education system", - "values": [ - "Right to education" - ] - }, - { - "text": "Intensify the support of the family as an institution ", - "values": [ - "Other" - ] - }, - { - "text": "Adopt additional measures to prevent the mistreatment of foreign nationals, combat discrimination against them, follow through on pursuing and prosecuting crimes against them and enforce regulation more effectively to protect foreign workers, particularly with regard to conditions of work and respect for occupational and safety standards ", - "values": [ - "Labour", - "Migrants" - ] - }, - { - "text": "Step up efforts and cooperate with relevant countries and international partners, address the situation in Rakhine State at its root causes, and combat people smuggling and human trafficking", - "values": [ - "Technical assistance and cooperation", - "Trafficking" - ] - }, - { - "text": "Refrain from introducing the death penalty in the national legal system, also in respect of international obligations", - "values": [ - "Death penalty", - "International instruments" - ] - }, - { - "text": "Continue improving accessibility for persons with disabilities in a global and inclusive manner in accordance with the Convention on the Rights of Persons with Disabilities", - "values": [ - "Disabilities", - "International instruments" - ] - }, - { - "text": "Ratify the other core human rights treaties, including the International Convention on the Protection of the Rights of All Migrant Workers and Members of Their Families, without delay", - "values": [ - "International instruments", - "Labour", - "Migrants" - ] - }, - { - "text": "Continue to work on reducing violence against women in all spheres, keeping in mind the recommendations made on this subject in the context of its second UPR ", - "values": [ - "UPR process", - "Women's rights" - ] - }, - { - "text": "Increase efforts to strengthen human rights education in the country", - "values": [ - "Human rights education and training" - ] - }, - { - "text": "Apply laws on improving the status of women in the country and their marital status", - "values": [ - "Women's rights" - ] - }, - { - "text": "Apply programmes and means to improve the enjoyment of the right to education and the right to health", - "values": [ - "Right to education", - "Right to health" - ] - }, - { - "text": "Continue measures to fight drug trafficking and terrorism", - "values": [ - "Public security", - "Trafficking" - ] - }, - { - "text": "Intensify efforts to prevent discrimination against ethnic groups and combat discrimination against persons from immigrants backgrounds ", - "values": [ - "Migrants", - "Minorities", - "Racial discrimination" - ] - }, - { - "text": "Revise its Constitution, legislation, public policies and programmes for the full implementation of the United Nations Declaration of the Rights of Indigenous Peoples", - "values": [ - "Indigenous peoples", - "International instruments" - ] - }, - { - "text": "Step up the national efforts in the field of trafficking in persons through a victim-oriented approach that attaches special focus on the protection of children from abuse and sexual exploitation ", - "values": [ - "Rights of the Child", - "Trafficking" - ] - }, - { - "text": "Establish an independent national human rights institution ", - "values": [ - "National Human Rights Institution" - ] - }, - { - "text": "Ratify the Optional Protocol to the Convention against Torture, the International Convention on the Protection of All Persons from Enforced Disappearance, the Convention relating to the status of Stateless Persons and the Convention on the Reduction of Statelessness", - "values": [ - "Detention", - "Enforced disappearances", - "International instruments", - "Statelessness and the right to nationality", - "Torture and other CID treatment" - ] - }, - { - "text": "Make continuous efforts in its economic and social development, improve its legal system and ensure equal enjoyment of human rights by its people ", - "values": [ - "Development", - "Justice" - ] - }, - { - "text": "Continue its efforts to ensure access to education for all at all levels and continue to work in reducing disparities between girls and boys in order to ensure the enrolment of girls in the same proportion equal to boys", - "values": [ - "Right to education", - "Rights of the Child", - "Women's rights" - ] - }, - { - "text": "Further increase efforts in the promotion and protection of the rights of the child", - "values": [ - "Rights of the Child" - ] - }, - { - "text": "Complete the process of abolition of the death penalty", - "values": [ - "Death penalty" - ] - }, - { - "text": "Continue the open and critical dialogue initiated immediately following the presidential election in August 2010, which addresses the opening up of the "political space", progress in human rights, and freedom of the media and press ", - "values": [ - "Freedom of the press" - ] - }, - { - "text": "Expedite the ratification of the CEDAW ", - "values": [ - "International instruments", - "Women's rights" - ] - }, - { - "text": "Continue the efforts to implement the National Strategy for Children and Adolescents 2010-2030", - "values": [ - "Rights of the Child" - ] - }, - { - "text": "Take all possible efforts to strengthen protection for women and children against discrimination and violence", - "values": [ - "Rights of the Child", - "Women's rights" - ] - }, - { - "text": "Address difficult access to birth registration procedures, particularly for children of African decent, indigenous children and those living in rural and border areas ", - "values": [ - "Indigenous peoples", - "Minorities", - "Rights of the Child", - "Statelessness and the right to nationality" - ] - }, - { - "text": "Continue to implement, in cooperation with relevant United Nations agencies, policies and programmes to reduce poverty and improve the wellbeing of it people ", - "values": [ - "Poverty", - "Technical assistance and cooperation" - ] - }, - { - "text": "Renew its efforts to protect vulnerable groups, particularly persons with disabilities, women and children", - "values": [ - "Disabilities", - "Rights of the Child", - "Women's rights" - ] - }, - { - "text": "Consider ratification of the First Optional Protocol to the International Covenant on Civil and Political Rights", - "values": [ - "CP rights - general", - "International instruments" - ] - }, - { - "text": "Improve access to education for children living in rural areas and adopt further measures, special laws and awareness programs to promote gender equality in education ", - "values": [ - "Right to education", - "Rights of the Child", - "Women's rights" - ] - }, - { - "text": "Consolidate support services for women victims of violence", - "values": [ - "Women's rights" - ] - }, - { - "text": "Continue efforts to improve the national legislation and law enforcement measures aimed at the promotion and protection of the rights of persons with disabilities", - "values": [ - "Disabilities" - ] - }, - { - "text": "Improve cooperation with human rights mechanisms, including presenting outstanding reports and approving visits for special procedures", - "values": [ - "Special procedures", - "Treaty bodies", - "UPR process" - ] - }, - { - "text": "Accelerate efforts toward the establishment of a Brazilian National Human Rights Council in accordance with the Paris Principles, including through passing a Bill on converting the Council for the Defence of the Rights of the Human Person into the National Human Rights Council which is currently in the agenda of the National Congress ", - "values": [ - "National Human Rights Institution" - ] - }, - { - "text": "Promote equal participation of all citizens in political and public affairs and adopt legislation regulating the establishment and functioning of political parties", - "values": [ - "Freedom of association and peaceful assembly" - ] - }, - { - "text": "Strengthen actions to ensure the effective implementation of legislation for protection against all forms of racial or ethnic discrimination, with a particular consideration to the creation of oversight mechanisms", - "values": [ - "Minorities", - "Racial discrimination" - ] - }, - { - "text": "Strengthen efforts and measures to counter the dissemination of racist, xenophobic and anti-Semitic propaganda, which generate incitement to racial hatred ", - "values": [ - "Freedom of religion and belief", - "Racial discrimination" - ] - }, - { - "text": "Improve the penitentiary system conditions, combatting overcrowding and acts of prison violence, and promoting human rights training for penitentiary officers", - "values": [ - "Detention", - "Human rights education and training" - ] - }, - { - "text": "Criminalize domestic violence and take comprehensive measures to address violence against women and girls", - "values": [ - "Rights of the Child", - "Women's rights" - ] - }, - { - "text": "Genuine and full commitment to international treaties and resolutions combating terrorism, especially Security Council resolutions 2170 (2014) and 2178 (2014)", - "values": [ - "Public security" - ] - }, - { - "text": "Ensure that all citizens, including opposition figures, such as former Prime Minister Tymoshenko, enjoy their right to fair, transparent and impartial treatment in the judicial system", - "values": [ - "Justice" - ] - }, - { - "text": "Ratify the Optional Protocol to the Convention against Torture at the earliest opportunity.", - "values": [ - "Detention", - "International instruments", - "Torture and other CID treatment" - ] - }, - { - "text": "Lift all restrictions regarding the use of Internet by reforming its legislation ", - "values": [ - "Freedom of opinion and expression" - ] - }, - { - "text": "When continuing to implement the death penalty, do not apply it to persons with intellectual disabilities", - "values": [ - "Death penalty", - "Disabilities" - ] - }, - { - "text": "Ensure that all asylum seekers and refugees who arrive in Australia are processed there regardless of their mode of arrival and ensure that the conditions at the offshore processing centers comply with international law and standards", - "values": [ - "Asylum-seekers - refugees" - ] - }, - { - "text": "Take steps to end impunity for perpetrators of human rights violations", - "values": [ - "Impunity" - ] - }, - { - "text": "Ensure prompt, credible, transparent, impartial and comprehensive investigations leading to prosecutions of the allegations of gross violations and abuses of international human rights law and violations of international humanitarian law, thus guaranteeing that perpetrators are duly accountable before justice", - "values": [ - "International humanitarian law" - ] - }, - { - "text": "Take measures to put an end to the recruitment of children by armed groups and ensure the reintegration of demobilized children", - "values": [ - "International humanitarian law", - "Rights of the Child" - ] - }, - { - "text": "Strengthen means and mechanisms to raise awareness among citizens regarding access to justice ", - "values": [ - "Justice" - ] - }, - { - "text": "Provide, in accordance with its obligations under international human rights law, effective protection for the family as the fundamental and natural unit of society", - "values": [ - "International instruments" - ] - }, - { - "text": "Take specific measures to prohibit corporal punishment of children in all settings, including at home", - "values": [ - "Rights of the Child", - "Torture and other CID treatment" - ] - }, - { - "text": "Implement the Law on Combating Human Trafficking of 2012 and strengthen the law enforcement and the judicial system, in order to ensure effective investigation and prosecution of perpetrators and to prevent trafficking", - "values": [ - "Trafficking" - ] - }, - { - "text": "Continue to intensify its efforts to achieve MDG 5 by the given deadline", - "values": [ - "Right to health", - "Women's rights" - ] - }, - { - "text": "The State will establish a national body to deal with all human rights matters.", - "values": [ - "National Human Rights Institution" - ] - }, - { - "text": "Establish and strengthen programmes for combating prejudice and mechanisms for monitoring acts of ethnic-based discrimination and violence", - "values": [ - "Minorities", - "Racial discrimination" - ] - }, - { - "text": "Continue its efforts to develop policies aimed at the protection of women rights", - "values": [ - "Women's rights" - ] - }, - { - "text": "Ratify the Second Optional Protocol to the International Covenant on Civil and Political Rights, aiming at the abolition of the death penalty", - "values": [ - "Death penalty", - "International instruments" - ] - }, - { - "text": "Continue to encourage community initiatives for religious dialogue", - "values": [ - "Freedom of religion and belief" - ] - }, - { - "text": "Take measures to implement the Human Rights Committee and CERD recommendations to protect the rights of persons belonging to ethnic, religious and linguistic minorities.", - "values": [ - "Minorities", - "Treaty bodies" - ] - }, - { - "text": "Strengthen the measures to protect the indigenous populations in Norway and guarantee them a full access to natural resources ", - "values": [ - "Environment", - "Indigenous peoples" - ] - }, - { - "text": "Withdraw reservations to all international human rights treaties to which it is a party, and consider the ratification of the outstanding human rights treaties", - "values": [ - "International instruments" - ] - }, - { - "text": "Develop measures aimed at addressing women's low occupational representation and the promotion of diversification of women's academic and professional choices, including in non-traditional fields ", - "values": [ - "Women's rights" - ] - }, - { - "text": "Step up efforts to prevent racially motivated crimes.", - "values": [ - "Racial discrimination" - ] - }, - { - "text": "Halt all transfer detainees to third countries unless there are adequate safeguards to ensure that they will be treated in accordance with international law requirements ", - "values": [ - "Justice" - ] - }, - { - "text": "Remove reservations to the CEDAW ", - "values": [ - "International instruments", - "Women's rights" - ] - }, - { - "text": "Pursue judicial reform to improve access to justice by promoting a better geographical coverage and upgrading the prison administration", - "values": [ - "Justice" - ] - }, - { - "text": "Establish a moratorium on executions, followed by eventual abolition of the death penalty", - "values": [ - "Death penalty" - ] - }, - { - "text": "Consider amplifying the application of the Relief Act for the Victims of the Atomic Bomb to the second generation of the survivors of atomic bombs, particularly in health issues", - "values": [ - "Right to health" - ] - }, - { - "text": "Include in its National Strategy for Gender Equality 2009-2013 measures to promote the participation of women in decision-making bodies in the public and private sphere ", - "values": [ - "Women's rights" - ] - }, - { - "text": "Carry on with the implementation of concrete measures to significantly reduce prison overcrowding in Costa Rica, and address the nonseparation of minor and adult detainees ", - "values": [ - "Detention", - "Rights of the Child" - ] - }, - { - "text": "Adopt legislation on child protection against all forms of ill-treatment, violence and exploitation, and adopt policies and laws more seriously that can be more effective in order to combat discrimination, rape and sexual harassment", - "values": [ - "Rights of the Child", - "Torture and other CID treatment" - ] - }, - { - "text": "Repeal all provisions of law criminalizing sexual activity between consenting adults", - "values": [ - "Sexual Orientation and Gender Identity" - ] - }, - { - "text": "Ratify as soon as possible the third Optional Protocol to the Convention on the Rights of the Child", - "values": [ - "International instruments", - "Rights of the Child" - ] - }, - { - "text": "Continue working with State Governments to remove the reservations to the Convention on the Elimination of All Forms of Discrimination against Women", - "values": [ - "International instruments", - "Women's rights" - ] - }, - { - "text": "Continue its efforts to create a positive working environment for all foreign workers ", - "values": [ - "Migrants" - ] - }, - { - "text": "Consider a strategy to address inequalities for children at high risk of exiting the education system too early as highlighted in OHCHR summary", - "values": [ - "Right to education", - "Rights of the Child" - ] - }, - { - "text": "Mexico will follow up on the recommendations with the full participation of civil society and autonomous human rights institutions, through the Commission for Government Policy on Human Rights.", - "values": [ - "Civil society" - ] - }, - { - "text": "Implement legislation on violence against women and girls and strengthen its legal and institutional support for victims of violence, including by full investigation, bringing to prosecution where appropriate all female murders, and ensuring that all victims of sexual violence have the right to justice and police protection", - "values": [ - "Rights of the Child", - "Women's rights" - ] - }, - { - "text": "Criminalize marital rape and sexual violence", - "values": [ - "Women's rights" - ] - }, - { - "text": "Continue its fight against evil terrorism including with international support and within international standards", - "values": [ - "Public security" - ] - }, - { - "text": "Establish a national mechanism to follow up on recommendations", - "values": [ - "Treaty bodies", - "UPR process" - ] - }, - { - "text": "Combat gender-based violence through its National Action Plan, Domestic Violence Act and anti-violence outreach programs", - "values": [ - "Rights of the Child", - "Women's rights" - ] - }, - { - "text": "Croatian Government has actively promoted reconciliation and remains committed to assure enjoyment and implementation of the rights of all persons belonging to minorities. Croatian Government implements specific programmes with regard to the return of refugees and their settlement in the country of origin, including through providing housing and adequate care and remains committed to the continuation of dialogue and cooperation aimed at finding adequate solutions to the refugee problems at the regional level.", - "values": [ - "Minorities" - ] - }, - { - "text": "Strengthen efforts on the implementation of the Gender Equality Act", - "values": [ - "Women's rights" - ] - }, - { - "text": "Continue carrying out its efforts to achieve gender equality and tackle discrimination against women in law and practice ", - "values": [ - "Women's rights" - ] - }, - { - "text": "Legally regulate the protection of the Slovenian minority in Styria in line with international legal commitments undertaken by Austria and adopt and implement concrete solutions to benefit the Slovenian minority in Styria, such as increasing the teaching of the Slovenian language in Styrian public and high schools", - "values": [ - "Minorities", - "Right to education" - ] - }, - { - "text": "As soon as possible complete its review and repeal the new press law as it appeared to go against the Chadian Constitution and the International Covenant on Civil and Political Rights, to which Chad is a party. ", - "values": [ - "Freedom of the press", - "International instruments" - ] - }, - { - "text": "Reinforce the fight against domestic violence, by strengthening the administration of justice", - "values": [ - "Justice", - "Rights of the Child", - "Women's rights" - ] - }, - { - "text": "Strengthen the role of its police and other enforcement authorities in dealing with trafficking in women and children ", - "values": [ - "Rights of the Child", - "Trafficking", - "Women's rights" - ] - }, - { - "text": "Sign and ratify the Optional Protocol to the Convention on the Elimination of All Forms of Discrimination against Women and ratify the International Convention for the Protection of All Persons from Enforced Disappearance ", - "values": [ - "Enforced disappearances", - "International instruments", - "Rights of the Child" - ] - }, - { - "text": "Intensify its efforts to stem the development of racism and xenophobia and to ensure that the materials which are published in media do not contribute to creating an atmosphere of hostility, intolerance and rejection towards migrants", - "values": [ - "Migrants", - "Racial discrimination" - ] - }, - { - "text": "Sign the Second Optional Protocol to ICCPR, the Optional Protocol to the Convention on the Rights of Persons with Disabilities, the International Convention on the Protection of the Rights of All Migrant Workers and Members of Their Families, and the International Convention for the Protection of All Persons from Enforced Disappearance ", - "values": [ - "Death penalty", - "Disabilities", - "Enforced disappearances", - "International instruments", - "Labour", - "Migrants" - ] - }, - { - "text": "Intensify measures to enhance the participation of women in public life", - "values": [ - "Women's rights" - ] - }, - { - "text": "Continue implementing the programmes which provide education, health and social services in rural areas", - "values": [ - "ESC rights - general", - "Right to education", - "Right to health" - ] - }, - { - "text": "Continue to work towards a comprehensive approach to preventing and addressing all forms of violence against women", - "values": [ - "Women's rights" - ] - }, - { - "text": "Ensure that endeavours concerning legal reforms continue unhindered ", - "values": [ - "Justice" - ] - }, - { - "text": "Take essential steps to create an environment where rule of law is preserved ", - "values": [ - "Justice" - ] - }, - { - "text": "To facilitate access to files relating to human rights violations committed during the dictatorship,", - "values": [ - "Justice" - ] - }, - { - "text": "Take effective steps to ensure the implementation of the Convention on the Rights of the Child and the ILO Conventions No. 138 concerning Minimum Age for Admission to Employment and No. 182 concerning the Prohibition and Immediate Action for the Elimination of the Worst Forms of Child Labour.", - "values": [ - "International instruments", - "Labour", - "Rights of the Child" - ] - }, - { - "text": "Take all necessary steps to strengthen to neutrality and independence of its judiciary", - "values": [ - "Justice" - ] - }, - { - "text": "Invite the Council to adopt the National Report of the Kingdom of Bahrain and to present the comprehensive support needed for the Kingdom of Bahrain in order to handle related challenges ", - "values": [ - "Other" - ] - }, - { - "text": "Renew its efforts and adopt and fully implement a comprehensive anti-discrimination law", - "values": [ - "Other" - ] - }, - { - "text": "Enact legislation contained in the National Anti-Corruption Strategy", - "values": [ - "Corruption" - ] - }, - { - "text": "Establish NHRI in accordance with the Paris Principles", - "values": [ - "National Human Rights Institution" - ] - }, - { - "text": "Raise the age of entry into marriage to 18 years in accordance with the definition of the child under the Convention on the Rights of the Child", - "values": [ - "International instruments", - "Rights of the Child" - ] - }, - { - "text": "Strengthen the protection of domestic workers", - "values": [ - "Labour" - ] - }, - { - "text": "Take measures to raise the public's awareness of the negative impacts of corporal punishment on children", - "values": [ - "Human rights education and training", - "Rights of the Child", - "Torture and other CID treatment" - ] - }, - { - "text": "Continue strengthening the security and peace of the people, institutionalizing the leading participation of the person, the family and the organized community, both in the territory and in social and productive sectors ", - "values": [ - "Public security" - ] - }, - { - "text": "Amend without delay the constitution with a view to the elimination of discrimination on the basis of ethnicity in public political life and access to public service jobs in conformity with the judgement of the European Court of Human Rights", - "values": [ - "Minorities", - "Racial discrimination" - ] - }, - { - "text": "Take effective measures against the practice of forced labour, including child labour and join ILO", - "values": [ - "International instruments", - "Labour" - ] - }, - { - "text": "Abolish the practice of torture, cruel, inhuman and degrading treatment, including the collective punishment of families, as reported by the Special Rapporteur, and amend national legislation to prohibit the torture and other ill-treatment of children, as recommended by the Committee on the Rights of the Child", - "values": [ - "Rights of the Child", - "Special procedures", - "Torture and other CID treatment", - "Treaty bodies" - ] - }, - { - "text": "Abolish the death penalty or establish a de jure moratorium on the application of the death penalty", - "values": [ - "Death penalty" - ] - }, - { - "text": "Develop a comprehensive and forgery-proof land registry to enable indigenous communities to hold legal titles to their ancestral land ", - "values": [ - "Indigenous peoples", - "Right to land" - ] - }, - { - "text": "Continue efforts to eliminate trade in men, women and children in order to exploit them in forced labour", - "values": [ - "Labour", - "Rights of the Child", - "Trafficking", - "Women's rights" - ] - }, - { - "text": "Improve access for Afro-Ecuadorians to decent housing, education and good living", - "values": [ - "Minorities", - "Right to education", - "Right to housing" - ] - }, - { - "text": "Continue strengthening its policies and programmes for enhancing women's empowerment and equality", - "values": [ - "Women's rights" - ] - }, - { - "text": "Promote a policy of equality and non-discrimination and that Namibia step up its efforts to reduce poverty with economic and social measures which ensure equal opportunity to citizens in the social, economic and political life of the country ", - "values": [ - "ESC rights - general", - "Poverty" - ] - }, - { - "text": "Following the recommendations of CEDAW, introduce measures to eliminate negative harmful cultural practices and stereotypes that discriminate women", - "values": [ - "Torture and other CID treatment", - "Treaty bodies", - "Women's rights" - ] - }, - { - "text": "Strengthen its national human rights institution in accordance with the Paris Principles", - "values": [ - "National Human Rights Institution" - ] - }, - { - "text": "Strengthen community management to solve problems of groups at risk and prioritize the attention to young people living in rural areas ", - "values": [ - "Other" - ] - }, - { - "text": "Raise the minimum age of marriage of 18", - "values": [ - "Rights of the Child" - ] - }, - { - "text": "Provide international humanitarian organizations and human rights monitors with immediate access to the prison camps and their surviving victims", - "values": [ - "Detention" - ] - }, - { - "text": "Continue its efforts to improve its educational system and seek international assistance in this regard.", - "values": [ - "Right to education", - "Technical assistance and cooperation" - ] - }, - { - "text": "Continue its efforts to adopt programs and projects to combat poverty and reduce unemployment ", - "values": [ - "Development", - "Poverty" - ] - }, - { - "text": "Ensure the independence of SUHAKAM in accordance with the Paris Principles, so that the SUHAKAM's scope covers all rights in the Universal Declaration of Human Rights", - "values": [ - "National Human Rights Institution" - ] - }, - { - "text": "Continue with its efforts to improve the conditions of persons with disabilities, in particular through support for reasonable accommodation in the workplace as well as access to education countrywide", - "values": [ - "Disabilities", - "Labour", - "Right to education" - ] - }, - { - "text": "Call for international technical assistance, in particular from the High Commissioner for Human Rights, and explore the possibility of benefiting from the experience of countries that have succeeded in reforms to improve the functioning of justice ", - "values": [ - "Justice", - "Technical assistance and cooperation" - ] - }, - { - "text": "Consider criminalizing torture under domestic law ", - "values": [ - "Torture and other CID treatment" - ] - }, - { - "text": "Investigate the allegations of torture and ill-treatment in a prompt, impartial and effective manner and prosecute perpetrators ", - "values": [ - "Torture and other CID treatment" - ] - }, - { - "text": "Undertake further measures to improve the de facto position of women by implementing international commitments from the Committee on the Elimination of Discrimination against Women and the Beijing Platform for Action, through concrete and effective policies and programmes", - "values": [ - "Women's rights" - ] - }, - { - "text": "Urgently take all necessary measures to end impunity, if need be with the assistance of the United Nations ", - "values": [ - "Impunity", - "Technical assistance and cooperation" - ] - }, - { - "text": "Ratify and implement effectively the Optional Protocol to the Convention on the Rights of the Child on the sale of children, child prostitution and child pornography (OP-CRC-SC) and the Optional Protocol to the Convention on the Rights of the Child on the involvement of children in armed conflict (OP-CRC-AC)", - "values": [ - "International humanitarian law", - "International instruments", - "Rights of the Child", - "Trafficking" - ] - }, - { - "text": "Ratify the United Nations Convention against Transnational Organized Crime and its Optional Protocols and accord appropriate legal status to the provisions of the Convention within domestic legislation", - "values": [ - "International instruments", - "Trafficking" - ] - }, - { - "text": "Consider the possibility of acceding to and/or ratifying the International Convention on the Protection of the Rights of All Migrant Workers and Members of Their Families ", - "values": [ - "International instruments", - "Labour", - "Migrants" - ] - }, - { - "text": "Consider the adaptation of its legislation, especially the figure of \u201cinexcusable error\u201c, in order to fully guarantee the independence of the judiciary", - "values": [ - "Justice" - ] - }, - { - "text": "The delegation stated that Finland was committed to reaching the goal of 0.7 per cent ODA by 2015, as set by the United Nations, and 0.51 per cent ODA by 2010, as set by the European Union.", - "values": [ - "Development" - ] - }, - { - "text": "Continue to take measures to provide education and health care, especially in mountainous areas and for ethnic minorities and with their involvement.", - "values": [ - "Minorities", - "Right to education", - "Right to health" - ] - }, - { - "text": "Develop a national strategy to tackle exploitative labour practices and to ratify the ILO Protocol of 2014 to the Forced Labour Convention, 1930, and continue to strengthen protections for children", - "values": [ - "International instruments", - "Labour", - "Rights of the Child" - ] - }, - { - "text": "Further enhance the environment for the development of civil society organizations, including in the areas of legal awareness-raising, advocacy and human rights monitoring", - "values": [ - "Civil society", - "Human rights education and training" - ] - }, - { - "text": "Continue efforts to achieve universal basic education and reduce primary school drop-out rates, with the support of the international community.", - "values": [ - "Right to education", - "Technical assistance and cooperation" - ] - }, - { - "text": "Maintain its firm stance on the growing need for housing of Venezuelan families ", - "values": [ - "Right to housing" - ] - }, - { - "text": "Establish necessary measures to eliminate the worst forms of child labour, including raising the minimum age for all hazardous work to 18 and developing a list of hazardous occupations and activities not permitted for children", - "values": [ - "Labour", - "Rights of the Child" - ] - }, - { - "text": "Strengthen efforts to combat sexual violence against women and children, including through the development and strengthening of relevant laws", - "values": [ - "Rights of the Child", - "Women's rights" - ] - }, - { - "text": "Ensure primary health facilities are adequately equipped to provide care for persons with intellectual disabilities ", - "values": [ - "Disabilities", - "Right to health" - ] - }, - { - "text": "Ratify the Convention against Torture and Other Cruel, Inhuman or Degrading Treatment or Punishment without delay ", - "values": [ - "International instruments", - "Torture and other CID treatment" - ] - }, - { - "text": "Adopt legislation for the removal from the civil registry of the Bulgarian-Slavic names forcibly given to Turkish and Muslim minorities under the communist regime", - "values": [ - "Freedom of religion and belief", - "Minorities" - ] - }, - { - "text": "Further adopt and enact legislation to criminalise racial and racially motivated and hate crimes, to institutionalise national mechanisms for the collection of data on, and monitoring of, incidents of racism, racial discrimination and xenophobia, and to adopt laws and concrete measures to ensure the prompt, impartial and independent investigation, prosecution and punishment of perpetrators of incidents of racial, and racially-motivated hate speech, discrimination, and crimes ", - "values": [ - "Racial discrimination" - ] - }, - { - "text": "Continue efforts to formulate a national human rights action plan", - "values": [ - "General" - ] - }, - { - "text": "Prohibit all violence against children, including corporal punishment ", - "values": [ - "Rights of the Child", - "Torture and other CID treatment" - ] - }, - { - "text": "Take the necessary measures to fight against discrimination faced by persons with disabilities ", - "values": [ - "Disabilities" - ] - }, - { - "text": "Consider adopting further measures to enhance legal protection to vulnerable groups, including on the issues of gender violence and child labour", - "values": [ - "Labour", - "Rights of the Child", - "Women's rights" - ] - }, - { - "text": "Eliminate discrimination against women by introducing paid maternity leave and providing equal pay for women for the same work", - "values": [ - "Women's rights" - ] - }, - { - "text": "Continue its efforts in improving the right to education, especially education for people with special needs ", - "values": [ - "Right to education" - ] - }, - { - "text": "Disseminate in different languages the National Action Plan for the Promotion and Protection of Human Rights", - "values": [ - "Minorities" - ] - }, - { - "text": "Develop cooperation on the issues of human rights with international organizations and their mechanisms, in particular by engaging constructively with the Special Rapporteur on the situation of human rights and responding positively to offers of technical assistance by OHCHR \n\n", - "values": [ - "Special procedures", - "Technical assistance and cooperation" - ] - }, - { - "text": "Recognise the Thule tribe as a distinct indigenous community capable of vindicating its traditional rights", - "values": [ - "Indigenous peoples" - ] - }, - { - "text": "Consider alternative non-custodial measures for migrants in an irregular situation, with particular attention to the specific needs of women, children - including unaccompanied children - and vulnerable categories of migrants", - "values": [ - "Detention", - "Migrants", - "Rights of the Child", - "Women's rights" - ] - }, - { - "text": "Develop a national plan of action to end violence against indigenous women and take the necessary measures to ensure that national protection laws against domestic violence are enforced at all levels in a consistent and effective manner ", - "values": [ - "Indigenous peoples", - "Women's rights" - ] - }, - { - "text": "Strengthen efforts to promote access of persons with disabilities to education and labour market, their legislative protection, in particular through speeding up approval by the Parliament of the CRPD ", - "values": [ - "Disabilities", - "International instruments" - ] - }, - { - "text": "Continue training programmes in order to educate youth on issues regarding equal treatment of men and women in order to secure the health and safety of women ", - "values": [ - "Women's rights" - ] - }, - { - "text": "Consider amending this NGO's legislation in order to reduce restrictions on their activities and allow them adequate freedom of action", - "values": [ - "Civil society" - ] - }, - { - "text": "Further its measures aimed at the reduction of poverty and dealing with food insecurity and access to water resources ", - "values": [ - "Poverty", - "Right to food", - "Right to water and sanitation" - ] - }, - { - "text": "Consider extending a standing invitation to special procedures mandate-holders ", - "values": [ - "Special procedures" - ] - }, - { - "text": "Facilitate access for humanitarian aid and humanitarian personnel to the Syrian territory, especially in remote areas and areas most affected by the conflict", - "values": [ - "Other" - ] - }, - { - "text": "Provide law enforcement and judiciary members with training on addressing domestic violence and child abuse cases and build their capacity to record and track complaints ensuring that all allegations are thoroughly investigated and that all perpetrators are prosecuted", - "values": [ - "Human rights education and training", - "Rights of the Child", - "Women's rights" - ] - }, - { - "text": "Promote the right to development through, inter alia, enhancing national efforts aimed at combating corruption", - "values": [ - "Corruption" - ] - }, - { - "text": "Ensure that all individuals who have been detained and charged with an offence are given a fair and impartial trial, while ensuring the independence of the judiciary", - "values": [ - "Detention", - "Justice" - ] - }, - { - "text": "Take steps to ensure equal enjoyment of the right of freedom of religion or belief and ensure freedom of speech and of the press ", - "values": [ - "Freedom of opinion and expression", - "Freedom of religion and belief", - "Freedom of the press" - ] - }, - { - "text": "Strengthen its efforts to combat violence against women, including by enacting and implementing necessary legislation and measures to ensure proper investigation and prosecution of sexual violence, thereby promoting access to remedy for victims", - "values": [ - "Women's rights" - ] - }, - { - "text": "Develop further measures with regard to the implementation of the Optional Protocol to the Convention against Torture (CAT) ", - "values": [ - "Detention", - "International instruments", - "Torture and other CID treatment" - ] - }, - { - "text": "Speed up the effective implementation of the six universal periodic review recommendations made by the Czech Republic and accepted by Kazakhstan in 2010", - "values": [ - "UPR process" - ] - }, - { - "text": "Continue efforts to broaden the scope of the protection of human rights and the safety of citizens in the country, as a means of enhancing social justice", - "values": [ - "General" - ] - }, - { - "text": "Formalize its moratorium on the death penalty by abolishing it in law and ratify the Second Optional Protocol to ICCPR", - "values": [ - "Death penalty", - "International instruments" - ] - }, - { - "text": "Pursue its efforts to ensure equal rights for men and women.", - "values": [ - "Women's rights" - ] - }, - { - "text": "Amend the Constitution as well as national legislation to ensure that the rights to freedoms of expression, assembly and association be guaranteed without restrictions other than those provided for within the framework of international law", - "values": [ - "Freedom of association and peaceful assembly", - "Freedom of opinion and expression" - ] - }, - { - "text": "Draw a plan of action against torture and ill-treatment with a view to their eradication, and bring to justice all suspected perpetrators of these acts", - "values": [ - "Torture and other CID treatment" - ] - }, - { - "text": "Step up cooperation with the United Nations special procedures by responding positively to pending visit requests", - "values": [ - "Special procedures" - ] - }, - { - "text": "Strengthen its efforts to integrate human rights and peace education in the school curricula", - "values": [ - "Human rights education and training" - ] - }, - { - "text": "Pursue its efforts in the area of the right to education.", - "values": [ - "Right to education" - ] - }, - { - "text": "Fully apply the Convention governing the specific aspects of refugee problems in Africa and respect international refugee law, conclude, as soon as possible, a headquarters agreement with the United Nations High Commissioner for Refugees ", - "values": [ - "Asylum-seekers - refugees" - ] - }, - { - "text": "Continue to implement policies for the development of its people under the Sustainable Development Goals", - "values": [ - "Development" - ] - }, - { - "text": "Conduct full, impartial and independent investigations into all allegations of corruption or abuse by security forces and prosecute those responsible where appropriate", - "values": [ - "Corruption", - "Human rights violations by state agents" - ] - }, - { - "text": "Develop additional programmes, including a national action plan for children, to enhance the protection and promotion of the rights of women and children ", - "values": [ - "Rights of the Child", - "Women's rights" - ] - }, - { - "text": "Introduce a definition of torture into the Criminal Code making torture a distinct offence with corresponding punishments", - "values": [ - "Torture and other CID treatment" - ] - }, - { - "text": "Harmonize the immigration legislation in accordance with the Convention on the Rights of the Child ", - "values": [ - "International instruments", - "Rights of the Child" - ] - }, - { - "text": "Prioritize efforts to implement domestic policies to give effect to the protection of human rights, and the prevention of politically-motivated violence and intimidation ", - "values": [ - "General" - ] - }, - { - "text": "Reform its criminal justice system and ensure the age of criminal responsibility is in line with international standards", - "values": [ - "Justice", - "Rights of the Child" - ] - }, - { - "text": "Extend its human rights education and awareness programmes to all sections of the population", - "values": [ - "Human rights education and training" - ] - }, - { - "text": "The delegation reiterated the commitment of Spain to present a mid-term report to strengthen the follow-up of the recommendations supported or partially supported.", - "values": [ - "UPR process" - ] - }, - { - "text": "Take concrete actions to guarantee the effective realization of free education and make sure that children finish their primary education, while addressing gender disparities in this regard ", - "values": [ - "Right to education" - ] - }, - { - "text": "Take measures to combat drug trafficking and arms smuggling in northern Mali ", - "values": [ - "Public security" - ] - }, - { - "text": "Maintain the minimum age of criminal responsibility and do not lower it", - "values": [ - "Rights of the Child" - ] - }, - { - "text": "Adopt and implement the revised Right to Information Bill in order to establish a robust legislative framework for access to information", - "values": [ - "Freedom of opinion and expression" - ] - }, - { - "text": "Take a holistic and effective approach to tackle gender-based violence, including by strengthening accountability mechanisms, raising awareness on gender-based violence, in particular, violence related to sorcery accusations, and allocating sufficient budget to support relevant programmes ", - "values": [ - "Human rights education and training", - "Women's rights" - ] - }, - { - "text": "Continue efforts to improve the situation of migrants, at the legal, judicial and administrative levels.", - "values": [ - "Migrants" - ] - }, - { - "text": "Continue to address the problem of discrimination and hate speech, particularly through adequate allocation of resources on this issue through education and awareness programmes in schools", - "values": [ - "Human rights education and training", - "Racial discrimination" - ] - }, - { - "text": "Continue its efforts to address the rights of persons with disabilities and to update the national legal framework in order to harmonize it with the provisions of the Convention on the Rights of Persons with Disabilities", - "values": [ - "Disabilities", - "International instruments" - ] - }, - { - "text": "Consider acceding to the Convention on the Elimination of All Forms of Discrimination against Women", - "values": [ - "International instruments", - "Women's rights" - ] - }, - { - "text": "Adopt further measures to prevent torture and ill-treatment in particular in prison and detention centres", - "values": [ - "Detention", - "Torture and other CID treatment" - ] - }, - { - "text": "Take a proactive approach to combating HIV-AIDS through educational and awareness-raising programmes for both the general public and drug users.", - "values": [ - "HIV - Aids", - "Human rights education and training" - ] - }, - { - "text": "Cooperate closely with the OHCHR office to be soon established in the country while implementing universal periodic review recommendations", - "values": [ - "Technical assistance and cooperation", - "UPR process" - ] - }, - { - "text": "Adopt a comprehensive anti-discrimination legislation", - "values": [ - "Other" - ] - }, - { - "text": "Make public the whole report of the Subcommittee on the Prevention of Torture, following its visit to Nauru in May 2015", - "values": [ - "Detention", - "Torture and other CID treatment", - "Treaty bodies" - ] - }, - { - "text": "Make the information about the legislation available to countries facing problems of smuggling of migrants, in order to help them to develop such laws", - "values": [ - "Migrants" - ] - }, - { - "text": "Strengthen measures to grant foreign children and children of asylum-seekers equal access to the same standards of services in the field of education.", - "values": [ - "Asylum-seekers - refugees", - "Right to education", - "Rights of the Child" - ] - }, - { - "text": "Enhance the existing effort in health service delivery system particularly to vulnerable groups", - "values": [ - "Right to health" - ] - }, - { - "text": "Remain engaged with the UNHCR and other relevant international organizations to seek a comprehensive and durable solution to the refugee and IDP situations within its territory.", - "values": [ - "Asylum-seekers - refugees", - "Internally displaced persons" - ] - }, - { - "text": "Strengthen the Child Labour Monitoring System to ensure that children are withdrawn from the labour market in line with the ILO campaign", - "values": [ - "International instruments", - "Labour", - "Rights of the Child" - ] - }, - { - "text": "Ratify the Convention against Torture and Other Cruel, Inhuman or Degrading Treatment or Punishment.", - "values": [ - "International instruments", - "Torture and other CID treatment" - ] - }, - { - "text": "Ensure that conditions of reception centres of asylum seekers are in line with international standards", - "values": [ - "Asylum-seekers - refugees", - "Detention", - "Right to housing" - ] - }, - { - "text": "Further develop a national strategy, with the full participation of all relevant stakeholders, for the integration of human rights into educational policies, curricula, textbooks and the training of teachers", - "values": [ - "Human rights education and training" - ] - }, - { - "text": "Look into ways to effectively ensure that the principle of the best interests of the child will be a primary consideration and hence form the basis for and guide all related processes and decisions, especially in asylum cases involving children ", - "values": [ - "Asylum-seekers - refugees", - "Rights of the Child" - ] - }, - { - "text": "Integrate gender perspectives in the follow-up process to the UPR review.", - "values": [ - "UPR process", - "Women's rights" - ] - }, - { - "text": "Continue its efforts in providing equal opportunity of work for all, and also consider efforts to support capacity-building programmes for women ", - "values": [ - "Labour", - "Women's rights" - ] - }, - { - "text": "Consider the possibility of acceding to the other major human rights instruments, in particular the Convention against Torture and Other Cruel, Inhuman or Degrading Treatment or Punishment.", - "values": [ - "International instruments", - "Torture and other CID treatment" - ] - }, - { - "text": "Exert more efforts in setting up a National Human Rights Institution to address questions relating to the promotion and protection of human rights", - "values": [ - "National Human Rights Institution" - ] - }, - { - "text": "Strengthen efforts to effectively implement laws aimed at the elimination of discrimination against women", - "values": [ - "Women's rights" - ] - }, - { - "text": "Share at the international level its national experience as well as the different initiatives it has taken in the field of human rights education ", - "values": [ - "Human rights education and training" - ] - }, - { - "text": "Consider ratifying the treaties to which it is not a party, including the CEDAW, CRC, ICESCR, and CRPD", - "values": [ - "Disabilities", - "ESC rights - general", - "International instruments", - "Rights of the Child", - "Women's rights" - ] - }, - { - "text": "Allow the establishment of private media and issue licences to private broadcasting radio and television stations ", - "values": [ - "Freedom of the press" - ] - }, - { - "text": "Enhance participation by women in political and public life and further increase assistance to women heads of households in gaining access to employment and services to improve their socioeconomic conditions", - "values": [ - "Women's rights" - ] - }, - { - "text": "Continue to take steps to ensure that those organizations, with which it is affiliated, like the TMVP, stop recruiting child soldiers and release them", - "values": [ - "International humanitarian law", - "Rights of the Child" - ] - }, - { - "text": "Apply measures to increase the participation of individuals from the Serb or Roma communities in local and regional governments, and ensure that the provisions of the Constitutional Act on the Rights of National Minorities are fully applied at the regional level ", - "values": [ - "Minorities" - ] - }, - { - "text": "Closely cooperate with the International Commission against Impunity in Guatemala", - "values": [ - "Impunity" - ] - }, - { - "text": "Take all the necessary measures to establish an independent national human rights institution with "A" status, in accordance with the Paris Principles", - "values": [ - "National Human Rights Institution" - ] - }, - { - "text": "Consider increasing the financial resources allocated to programmes combating violence against women ", - "values": [ - "Women's rights" - ] - }, - { - "text": "Maintain the level of education in one\u2019s mother tongue for the persons belonging to national minorities, as per paragraph 167 of its national report regarding education in mother tongue, with due attention paid to the content and the number of hours", - "values": [ - "Minorities", - "Right to education" - ] - }, - { - "text": "Prohibit the use of torture and other cruel, inhuman or degrading treatment as punishment for detainees", - "values": [ - "Detention", - "Torture and other CID treatment" - ] - }, - { - "text": "Ensure that the Bill of Rights Act appropriately reflects all of New Zealand's international human rights obligations and that all subsequent legal provisions, including immigration laws, are in accordance with it and cannot limit its scope", - "values": [ - "International instruments" - ] - }, - { - "text": "Consistently and rigorously implement the revised strategy for the implementation of Annex VII of the Dayton Peace Agreement and make all efforts to improve the living conditions of internally displaced persons and returnees", - "values": [ - "Asylum-seekers - refugees", - "Internally displaced persons" - ] - }, - { - "text": "Continue its sustained work in the implementation of State program, over a period of 10 years, to transfer children from State institutions to families and alternative care", - "values": [ - "Rights of the Child" - ] - }, - { - "text": "Take all the necessary measures to finalize the draft law related to domestic violence and children's rights, and submit it to the Council of Ministers for adoption", - "values": [ - "Rights of the Child", - "Women's rights" - ] - }, - { - "text": "Continue efforts to effectively combat human trafficking, to protect child victims of sexual exploitation and to prevent abuse of girls as domestic servants ", - "values": [ - "Rights of the Child", - "Trafficking", - "Women's rights" - ] - }, - { - "text": "Develop appropriate training and awareness-raising measures towards the Roma, ethnic minorities and other marginalized groups and to create a Justice system complying with international standards and ensuring that the perpetrators can be brought to Justice. ", - "values": [ - "Justice", - "Minorities" - ] - }, - { - "text": "Undertake a complete reform of the security sector, including the armed forces, as well as training aimed at preventing human rights violations ", - "values": [ - "Human rights education and training" - ] - }, - { - "text": "Respect the right to self-determination of Palestine as an independent and sovereign state with East Jerusalem as its capital", - "values": [ - "Other" - ] - }, - { - "text": "Put in place effective measures to implement the Child Rights Act and protect children from sexual and gender-based violence, abuse, exploitation, trafficking, and the worst forms of child labour ", - "values": [ - "Labour", - "Rights of the Child", - "Trafficking" - ] - }, - { - "text": "Derogate the law on blasphemy guaranteeing in practice the right to freedom of religion", - "values": [ - "Freedom of opinion and expression", - "Freedom of religion and belief" - ] - }, - { - "text": "Limit the provisions on restrictions of freedom of expression in conformity with the international standards", - "values": [ - "Freedom of opinion and expression" - ] - }, - { - "text": "Continue and further expand its microcredit programme for the poorest people and ensure loan allocations to women", - "values": [ - "Poverty", - "Women's rights" - ] - }, - { - "text": "Further improve the legal framework for the protection and promotion of human rights in conformity with its national conditions ", - "values": [ - "General" - ] - }, - { - "text": "Consider the possibility of establishing new measures to strengthen the respect for the rights of migrants and fight against all forms of discrimination they suffer ", - "values": [ - "Migrants" - ] - }, - { - "text": "Strengthen its Professional Standard Division within the Liberian National Police to investigate and prosecute all allegations of professional misconduct in accordance with international standards, and implement extensive human rights education and training programmes for law enforcement personnel", - "values": [ - "Human rights education and training", - "Human rights violations by state agents" - ] - }, - { - "text": "Continue to strengthen its efforts in ensuring housing for all Egyptian citizens", - "values": [ - "Right to housing" - ] - }, - { - "text": "Bring the laws on rape into compliance with international norms, particularly with regard to the legal definition of rape and the timeframe to file complaints", - "values": [ - "Women's rights" - ] - }, - { - "text": "Continue to seek technical and financial assistance from the international community to bolster national efforts in the enjoyment of all human rights, including the realization of the right to development ", - "values": [ - "Development", - "Technical assistance and cooperation" - ] - }, - { - "text": "Ease requirements for the registration of all NGOs and facilitate unhindered operation of all civil society actors, including human rights defenders", - "values": [ - "Civil society", - "Human rights defenders" - ] - }, - { - "text": "Continue its policies and programmes to improve the efficiency and quality of basic social services such as health and education for its citizens", - "values": [ - "Right to education", - "Right to health" - ] - }, - { - "text": "Ensure implementation of legislation on the minimum wage in all sectors", - "values": [ - "Labour" - ] - }, - { - "text": "Ensure the protection of the rights of national minorities", - "values": [ - "Minorities" - ] - }, - { - "text": "Further promote multiculturalism including by taking measures against incitement of discrimination or violence, based on race or religions, and strengthening interfaith dialogue among communities", - "values": [ - "Freedom of religion and belief", - "Racial discrimination" - ] - }, - { - "text": "Launch an outreach campaign directed towards the erased living abroad, informing them about the adoption of any new legislative measures and the possibility of benefiting from them", - "values": [ - "Other", - "Statelessness and the right to nationality" - ] - }, - { - "text": "Ensure, before the next universal periodic review, that asylum seekers and refugees have access to work and freedom of movement", - "values": [ - "Asylum-seekers - refugees", - "Freedom of movement", - "Labour", - "UPR process" - ] - }, - { - "text": "Continue its efforts to address the challenges it faces, with the support of the States members of the United Nations.", - "values": [ - "Technical assistance and cooperation" - ] - }, - { - "text": "Reiterate the commitments expressed on the occasion of its election to the Human Rights Council and continue its cooperation with treaty bodies, particularly by submitting its periodic reports in due time ", - "values": [ - "Treaty bodies" - ] - }, - { - "text": "Further adopt additional measures, including granting suspensive effect to appeals against deportation orders, to ensure its full implementation without any exceptions of the principle of non-refoulement", - "values": [ - "Torture and other CID treatment" - ] - }, - { - "text": "Resort to forced expulsions only within the strict respect of regional and international norms ", - "values": [ - "Asylum-seekers - refugees" - ] - }, - { - "text": "Develop clear national strategies for the eradication of the poverty of about four million children, as indicated in the United Kingdom universal periodic review summary report of the stakeholders\u2019 submissions", - "values": [ - "Poverty", - "UPR process" - ] - }, - { - "text": "Further strengthen its efforts by enacting national legislation to prohibit harmful practices and strengthen its efforts to increase awareness on women's rights ", - "values": [ - "Human rights education and training", - "Rights of the Child", - "Torture and other CID treatment", - "Women's rights" - ] - }, - { - "text": "Take measures to ensure that abuses of force committed by security state agents, including summary executions, are promptly processed", - "values": [ - "Extrajudicial executions", - "Human rights violations by state agents" - ] - }, - { - "text": "Give priority to the fight against criminal gangs and emerging bands and, in this context, investigate threats and attacks against human rights defenders from these gangs, and grant them the necessary security guarantees.", - "values": [ - "Human rights defenders", - "Public security" - ] - }, - { - "text": "Ratify and fully align its national legislation with all the obligations under the Rome Statute of ICC", - "values": [ - "International instruments", - "Justice" - ] - }, - { - "text": "Strengthen the Integrity Commission to enable it to receive and investigate complaints against public officials ", - "values": [ - "Justice" - ] - }, - { - "text": "Adequately resource its judicial system, and take steps to ensure the independence of the judiciary", - "values": [ - "Justice" - ] - }, - { - "text": "Allocate and provide all necessary financial, technical and personnel resources to combat impunity and lack of respect for the rule of law, including to combat corruption and impunity within the government's institutions", - "values": [ - "Corruption", - "Impunity", - "Justice" - ] - }, - { - "text": "Train armed forces and police in the respect of fundamental rights of the citizens, notably the right to assembly and legally ban the disproportional use of force against its own population ", - "values": [ - "Freedom of association and peaceful assembly", - "Human rights education and training" - ] - }, - { - "text": "Incorporate in the domestic law the explicit prohibition of child labour, adopt an array of measures to guarantee inclusive education and the nondiscrimination of children with disabilities in the regular education system ", - "values": [ - "Disabilities", - "Labour", - "Right to education", - "Rights of the Child" - ] - }, - { - "text": "Further facilitate the granting of citizenship to children of non-citizen parents who do not acquire any other nationality", - "values": [ - "Statelessness and the right to nationality" - ] - }, - { - "text": "Intensify its programs to extend social and economic rights to all and improve standard of living for those with limited income", - "values": [ - "ESC rights - general" - ] - }, - { - "text": "Take additional efforts in order to improve its reporting to the treaty bodies on human rights", - "values": [ - "Treaty bodies" - ] - }, - { - "text": "Forbid the corporal punishment of children through the abolition of the laws that permit its use in the home, schools and detention centres for minors", - "values": [ - "Detention", - "Rights of the Child", - "Torture and other CID treatment" - ] - }, - { - "text": "Review the Nationality Act to ensure equality between women and men with regard to the acquisition, change and retention of nationality", - "values": [ - "Women's rights" - ] - }, - { - "text": "Give more focus to building the capacity of institutions responsible for poverty eradication programmes of the Government", - "values": [ - "Poverty" - ] - }, - { - "text": "Ensure that implementation of the Sharia Penal Code Order 2013 is compliant with international human rights standards and does not lead to the imposition of the death penalty or torture or other inhuman or degrading punishment ", - "values": [ - "Death penalty", - "International instruments", - "Torture and other CID treatment" - ] - }, - { - "text": "Continue efforts for the empowerment of women in society", - "values": [ - "Women's rights" - ] - }, - { - "text": "Ensure the participation of socially vulnerable groups, including women, in the process of democratization and development", - "values": [ - "Development", - "Elections", - "Women's rights" - ] - }, - { - "text": "Consider instituting a human rights training programme specifically for its army and police forces", - "values": [ - "Human rights education and training" - ] - }, - { - "text": "Consider formulating an integrated national plan of action, as recommended by the Committee on the Elimination of Discrimination against Women to fully address the issue of discrimination against women in all its aspects", - "values": [ - "Treaty bodies", - "Women's rights" - ] - }, - { - "text": "Continue to promote education and health causes and strengthen the social security system of the country ", - "values": [ - "Right to education", - "Right to health" - ] - }, - { - "text": "Ensure safe repatriation and reintegration of Eritrean nationals without any fear of persecution in accordance with Eritrea's obligations under international human rights law and allow for international monitoring ", - "values": [ - "International instruments" - ] - }, - { - "text": "Continue the development and implementation of measures aimed at reducing human rights violations by the security forces in particular extrajudicial executions, arbitrary detention and torture, as well as making the mechanisms of tackling impunity more effective", - "values": [ - "Detention", - "Extrajudicial executions", - "Human rights violations by state agents", - "Impunity", - "Torture and other CID treatment" - ] - }, - { - "text": "Continue prioritizing the adoption of relatively low-cost, targeted arrangements for the best protection of children's rights ", - "values": [ - "Rights of the Child" - ] - }, - { - "text": "Ensure adequate resources in implementing MDGs with priority focus on vulnerable groups such as women and children", - "values": [ - "Development", - "Rights of the Child", - "Women's rights" - ] - }, - { - "text": "Inform children with disabilities that they have the right to education on an equal basis with other children, and build capacity with organizations of persons with disabilities ", - "values": [ - "Disabilities", - "Right to education", - "Rights of the Child" - ] - }, - { - "text": "Continue to seek technical assistance from the international community in the rebuilding process to help it fulfil its obligations", - "values": [ - "Technical assistance and cooperation" - ] - }, - { - "text": "Take the necessary measures to ensure that the legislative development and the practical application of the reform of the Military Criminal Jurisdiction does not generate impunity, but rather helps to reduce it drastically regarding the human rights violations committed by Public Forces ", - "values": [ - "Human rights violations by state agents", - "Impunity", - "Justice" - ] - }, - { - "text": "Prohibit corporal punishment of children at home ", - "values": [ - "Rights of the Child", - "Torture and other CID treatment" - ] - }, - { - "text": "Formally abolish the death penalty for all cases and under all circumstances and ratify the Second Optional Protocol to the International Covenant on Civil and Political Rights ", - "values": [ - "Death penalty", - "International instruments" - ] - }, - { - "text": "Substantiate its willingness to cooperate with the special procedures of the Human Rights Council by issuing them with a standing invitation", - "values": [ - "Special procedures" - ] - }, - { - "text": "Provide law enforcement and judicial officials with specific training regarding the protection of human rights of women, children and persons of minority sexual orientation or gender identity, and ensure proper investigation and punishment of any human rights violations committed by this personnel ", - "values": [ - "Human rights education and training", - "Human rights violations by state agents", - "Rights of the Child", - "Sexual Orientation and Gender Identity", - "Women's rights" - ] - }, - { - "text": "Consider, gradually, the ratification of the Optional Protocols to CRC and other instruments ", - "values": [ - "International instruments", - "Rights of the Child" - ] - }, - { - "text": "Guarantee the enjoyment of all Palestinians with their culture, social, and religious rights as per the Universal Declaration of Human Rights, and allowing them to reach places of worship as per the fourth Geneva Convention", - "values": [ - "ESC rights - general", - "Freedom of religion and belief", - "International humanitarian law", - "International instruments" - ] - }, - { - "text": "Consider the adoption of a comprehensive strategy to eliminate gender violence, particularly domestic violence and marital rape", - "values": [ - "Rights of the Child", - "Women's rights" - ] - }, - { - "text": "Proceed with the ratification of the Convention for the Protection of All Persons from Enforced Disappearance, which was the object of a recommendation accepted by Slovenia during the first cycle", - "values": [ - "Enforced disappearances", - "International instruments", - "UPR process" - ] - }, - { - "text": "Establish emergency measures aimed at integrating Roma children in regular schools and solve the problem of the drop-out rate of these children ", - "values": [ - "Minorities", - "Right to education", - "Rights of the Child" - ] - }, - { - "text": "Develop a national strategy to include in the school system at all levels appropriate measures in the field of human rights education, in accordance with the Plan of Action 2005-2009 of the World Programme for Human Rights Education ", - "values": [ - "Human rights education and training" - ] - }, - { - "text": "Continue to improve the respect of the freedom of expression and the protection of journalists, within the framework of the media legislation, which is hampering freedom of expression through the inclusion of broadcasting thresholds in languages belonging to national minorities", - "values": [ - "Freedom of opinion and expression", - "Freedom of the press" - ] - }, - { - "text": "To establish a Cabinet subcommittee to provide policy oversight and guidance on human rights issues", - "values": [ - "Other" - ] - }, - { - "text": "Ensure that children are heard in the judicial and administrative procedures concerning them, in accordance with procedures adapted to their maturity and, when children must be placed, this be done in family-type structures rather than in institutions ", - "values": [ - "Justice", - "Rights of the Child" - ] - }, - { - "text": "Revise the Family Code to prohibit polygamy and marriage of minors ", - "values": [ - "Rights of the Child", - "Women's rights" - ] - }, - { - "text": "Improve access by disadvantaged groups to social security ", - "values": [ - "ESC rights - general" - ] - }, - { - "text": "Continue to work towards ensuring greater representation of women in high-level policy and decision-making institutions, especially in the national legislature and local government bodies.", - "values": [ - "Women's rights" - ] - }, - { - "text": "Continue its legal efforts on the improvement of the health-care system, particularly for mothers and child ", - "values": [ - "Right to health", - "Rights of the Child", - "Women's rights" - ] - }, - { - "text": "Ratify the Convention for the Protection of All persons from Enforced Disappearance signed in 2008", - "values": [ - "Enforced disappearances", - "International instruments" - ] - }, - { - "text": "Ratify ILO Conventions No. 169 (indigenous and tribal peoples) and No. 189 (domestic workers) ", - "values": [ - "Indigenous peoples", - "International instruments", - "Labour" - ] - }, - { - "text": "Adapt its national legislation to the requirement of the Rome Statute ", - "values": [ - "International instruments", - "Justice" - ] - }, - { - "text": "Take further actions to combat trafficking in persons in accordance with the United Nations Convention against Transnational Organized Crime and the Protocols Thereto ", - "values": [ - "International instruments", - "Trafficking" - ] - }, - { - "text": "Increase the availability of affordable childcare facilities", - "values": [ - "Rights of the Child" - ] - }, - { - "text": "Take the necessary measures to improve prison conditions and reduce prison overcrowding", - "values": [ - "Detention" - ] - }, - { - "text": "Enhance education training programmes, which should include technical and vocational education and training designed to facilitate the movement of workers into new areas of economic activity", - "values": [ - "Right to education" - ] - }, - { - "text": "Strengthen its efforts for protecting victims of trafficking in persons and organize awareness-raising programmes in favour of public on issues related to combating human trafficking", - "values": [ - "Human rights education and training", - "Trafficking" - ] - }, - { - "text": "Institute trainings and awareness campaigns for provincial and municipal officials in respect for the rule of law and with regard to protecting the freedom of religion and other rights of members of religious groups ", - "values": [ - "Freedom of religion and belief" - ] - }, - { - "text": "Ratify the Optional Protocol to the Convention on the Rights of the Child on a Communications Procedure", - "values": [ - "International instruments", - "Rights of the Child" - ] - }, - { - "text": "As a first step, consider establishing an official moratorium and supporting the next resolution of the General Assembly on a global moratorium on the death penalty, with a view to abolishing it in the future ", - "values": [ - "Death penalty" - ] - }, - { - "text": "Continue incorporating the gender perspective in all policies and programmes and improve existing practices in this matter", - "values": [ - "Women's rights" - ] - }, - { - "text": "Lift its reservations made during the ratification of the Convention against Torture", - "values": [ - "International instruments", - "Torture and other CID treatment" - ] - }, - { - "text": "Appeal the verdict made by the Amsterdam District Court in the case of Geert Wilders on the charges of incitement to hatred and discrimination ", - "values": [ - "Freedom of religion and belief", - "Racial discrimination" - ] - }, - { - "text": "Continue efforts to ensure enjoyment by all persons of economic, social and cultural rights with a view to achieving the MDGs ", - "values": [ - "ESC rights - general" - ] - }, - { - "text": "Ratify the First Optional Protocol to the ICCPR ", - "values": [ - "CP rights - general", - "International instruments" - ] - }, - { - "text": "Sign and ratify the International Convention on the Protection of the Rights of all Migrant Workers and Their Families", - "values": [ - "International instruments", - "Labour", - "Migrants" - ] - }, - { - "text": "Introduce minimum wage legislation reasonable enough to provide all workers and their families with a decent standard of living ", - "values": [ - "Labour" - ] - }, - { - "text": "Continue strengthening the national human rights institution in accordance with Paris Principles, especially in terms of increasing its independence and authority", - "values": [ - "National Human Rights Institution" - ] - }, - { - "text": "Continue the action aimed at the promotion of gender equality in all public and private activities", - "values": [ - "Women's rights" - ] - }, - { - "text": "Pursue its path of the reform of the judiciary system and make a priority of the fight against impunity, in particular in relation with the process of certification of the Haitian policemen ", - "values": [ - "Impunity", - "Justice" - ] - }, - { - "text": "Take further steps to combat child domestic labour and child abuse", - "values": [ - "Labour", - "Rights of the Child" - ] - }, - { - "text": "Continue to build on the successes achieved to date to improve access to the justice system and increase efforts to build national capacity in bringing about accountability such as the convictions related to the 1982 Dos Erres massacre", - "values": [ - "Justice" - ] - }, - { - "text": "Adopt a new Labour Code which provides more transparent regulations regarding the treatment of foreign workers and establishes a minimum wage ", - "values": [ - "Labour", - "Migrants" - ] - }, - { - "text": "Allow the United Nations and other international organizations to access those in need, particularly in all besieged and hard-to-reach areas", - "values": [ - "Other" - ] - }, - { - "text": "Study the possibility of introducing a criminal aggravating factor for racial and religious hatred or hatred against persons with a minority sexual orientation", - "values": [ - "Freedom of religion and belief", - "Racial discrimination", - "Sexual Orientation and Gender Identity" - ] - }, - { - "text": "In addition, there are some regional human rights instruments of the Council of Europe, such as the Convention on Access to Official Documents, that Slovenia plans to ratify later this year.", - "values": [ - "Other" - ] - }, - { - "text": "Continue efforts to strengthen health indicators and to provide health services to all segments of the society ", - "values": [ - "Right to health" - ] - }, - { - "text": "Institutionalize the right to consultation of the indigenous population and involve civil society and indigenous groups in the elaboration of a functioning consultation mechanism in line with Ecuador's commitments under ILO-Convention 169 ", - "values": [ - "Civil society", - "Indigenous peoples", - "International instruments" - ] - }, - { - "text": "Ensure that all legislative amendments affecting children\u2019s rights take into account the superior interest of the child in accordance with international standards", - "values": [ - "Rights of the Child" - ] - }, - { - "text": "Take all the necessary measures to fight against all forms of violence against women and proceed to investigate and punish those responsible", - "values": [ - "Women's rights" - ] - }, - { - "text": "Adopt comprehensive legislation on fighting all forms of sexual harassment in relation to women and children ", - "values": [ - "Rights of the Child", - "Women's rights" - ] - }, - { - "text": "Redouble its efforts for the ratification of the Convention against Torture and Other Cruel, Inhuman or Degrading Treatment or Punishment ", - "values": [ - "International instruments", - "Torture and other CID treatment" - ] - }, - { - "text": "Analyse the possibility of creating a monitoring system for the implementation of international obligations in order to facilitate the systematization and follow-up of the recommendations made by the treaty bodies and the Human Rights Council", - "values": [ - "Treaty bodies" - ] - }, - { - "text": "Continue human rights training and awareness-raising activities, particularly for security forces", - "values": [ - "Human rights education and training" - ] - }, - { - "text": "Continue to raise the level of protection of human rights of vulnerable groups, with particular reference to eliminating child labour", - "values": [ - "Labour", - "Rights of the Child" - ] - }, - { - "text": "Adopt legal and administrative provisions for the issuance of free birth certificates for all children born in the national territory, and for the establishment of civil registry offices in all districts, including rural districts", - "values": [ - "Rights of the Child" - ] - }, - { - "text": "Develop targeted programmes and strategies to increase the awareness of migrant women of their rights and provide free legal aid and effective remedies if and when their rights are violated", - "values": [ - "Justice", - "Migrants", - "Women's rights" - ] - }, - { - "text": "Take additional measures in combating racism, racial discrimination and xenophobia and fully implement the applicable law", - "values": [ - "Racial discrimination" - ] - }, - { - "text": "Continue to carry out further measures to reduce poverty and redouble its efforts to strengthen relations and harmony between the different races in the country", - "values": [ - "Poverty" - ] - }, - { - "text": "Accede to the Second Optional Protocol to the International Covenant on Civil and Political Right", - "values": [ - "Death penalty", - "International instruments" - ] - }, - { - "text": "Continue to uphold the rights of indigenous peoples and minorities, including vulnerable groups", - "values": [ - "Indigenous peoples", - "Minorities" - ] - }, - { - "text": "Strengthen the legal framework to take better account of migrants and migrant workers, in particular by ratifying ICRMW", - "values": [ - "International instruments", - "Labour", - "Migrants" - ] - }, - { - "text": "Take concrete measures with a view to abolishing the Security Law. ", - "values": [ - "Public security" - ] - }, - { - "text": "Redefine clearly the role of the military police as a temporary measure and to step up the professionalizing process of the national police to ensure the protection of human rights in all their work", - "values": [ - "Public security" - ] - }, - { - "text": "Consider the establishment of an independent national human rights institution in accordance with the Paris Principles", - "values": [ - "National Human Rights Institution" - ] - }, - { - "text": "It renewed its commitment to improve human rights and praised the role of non-governmental organizations.", - "values": [ - "Civil society" - ] - }, - { - "text": "Enhance efforts to implement the National Action Plan on Women, in particular their participation and integration in the economy", - "values": [ - "Women's rights" - ] - }, - { - "text": "Take additional measures to eliminate all forms of discrimination against women and promote the status of women and their participation in all State institutions ", - "values": [ - "Women's rights" - ] - }, - { - "text": "Establish protection measures for victims and witnesses of these crimes ", - "values": [ - "Extrajudicial executions" - ] - }, - { - "text": "Pay particular attention to the respect of social, economic and cultural rights including the right to the food and step up efforts to ensure that food security is among the national priorities of the country", - "values": [ - "ESC rights - general", - "Right to food" - ] - }, - { - "text": "Recommended the liberation of all human rights defenders who remain in prison about the situation of Solijon Abdurakhmanov and Agzam Turgunov.", - "values": [ - "Human rights defenders" - ] - }, - { - "text": "Adopt measures to ensure protection from torture and forced hospitalization and medication in psychiatric institutions", - "values": [ - "Right to health", - "Torture and other CID treatment" - ] - }, - { - "text": "Adopt measures to guarantee appropriate financial resources, full independence, and impartiality of the National Commission for Human Rights and the Truth, Justice and Reconciliation Commission to ensure their abilities to deal with complaints and conduct credible, transparent investigations ", - "values": [ - "National Human Rights Institution" - ] - }, - { - "text": "Follow up regularly the implementation of the strategy by actively involving representatives of the communities concerned and based upon the findings from the follow-up of the strategy to make necessary revisions to the strategy in order to improve the living conditions of the Roma, Sinti and Travellers communities", - "values": [ - "Minorities" - ] - }, - { - "text": "Strengthen efforts to prosecute human trafficking and increase understanding of human trafficking among the judiciary", - "values": [ - "Trafficking" - ] - }, - { - "text": "Conclude its own procedures to ratify the Optional Protocol to the Convention against Torture", - "values": [ - "Detention", - "International instruments", - "Torture and other CID treatment" - ] - }, - { - "text": "Continue efforts to promote the right to education ", - "values": [ - "Right to education" - ] - }, - { - "text": "Continue to strengthen measures to prevent discrimination and hate crimes, especially against migrants, through training and dissemination programmes on obligations and commitments on human rights", - "values": [ - "Human rights education and training", - "Migrants", - "Racial discrimination" - ] - }, - { - "text": "Ratify ILO Convention 189 of 2011 on domestic workers", - "values": [ - "International instruments", - "Labour" - ] - }, - { - "text": "Ensure effective implementation of the 2009 Education Act and also to develop a national strategy to reduce dropout rates and to address cases of school-aged children working as street vendors", - "values": [ - "Labour", - "Right to education", - "Rights of the Child" - ] - }, - { - "text": "Take further steps to support freedom of expression and the right to freedom of movement ", - "values": [ - "Freedom of movement", - "Freedom of opinion and expression" - ] - }, - { - "text": "Persevere in its policy of promotion and protection of the rights of minorities and vulnerable persons ", - "values": [ - "Minorities" - ] - }, - { - "text": "Strengthen mechanisms to combat discrimination of minorities and persons of immigrant background", - "values": [ - "Migrants", - "Minorities", - "Racial discrimination" - ] - }, - { - "text": "Allow the Special Rapporteur on torture to visit before the end of 2012 ", - "values": [ - "Special procedures", - "Torture and other CID treatment" - ] - }, - { - "text": "With regard to the pre-trial detention regime, put in place appropriate measures that would allow for separation of detainees on the basis of gender and age", - "values": [ - "Detention", - "Rights of the Child", - "Women's rights" - ] - }, - { - "text": "Abolish de jure the death penalty", - "values": [ - "Death penalty" - ] - }, - { - "text": "Work towards supporting the existing cooperation between OHCHR and Kuwait", - "values": [ - "Technical assistance and cooperation" - ] - }, - { - "text": "Actively promote steps to guarantee freedom of expression, as well as the freedom and independence of the press, including on the Internet ", - "values": [ - "Freedom of opinion and expression", - "Freedom of the press" - ] - }, - { - "text": "Further continue efforts to remove all barriers to access primary education", - "values": [ - "Right to education" - ] - }, - { - "text": "Strengthen the national and provincial commissions on the status of women through increased funding and support, given the importance of this issue", - "values": [ - "Women's rights" - ] - }, - { - "text": "Amend the Penal Code to decriminalize and eliminate all punitive measures related to termination of pregnancies in cases of rape, incest and severe foetal impairment", - "values": [ - "Women's rights" - ] - }, - { - "text": "Ratify the international human rights instruments, particularly the Convention on the Rights of Persons with Disabilities ", - "values": [ - "Disabilities", - "International instruments" - ] - }, - { - "text": "Provide a fair public trial to all political prisoners and prohibit and penalize torture in the detention centers", - "values": [ - "Detention", - "Freedom of opinion and expression", - "Justice", - "Torture and other CID treatment" - ] - }, - { - "text": "Continue its efforts to avoid school drop-out rate ", - "values": [ - "Right to education" - ] - }, - { - "text": "Give continuity to strengthening of national human rights institutions and mechanisms to further promote and protect human rights in the country", - "values": [ - "General" - ] - }, - { - "text": "Continue to extend cooperation with the United Nations and to make the best use of the international expertise available through the relevant international mechanisms", - "values": [ - "General", - "Technical assistance and cooperation" - ] - }, - { - "text": "Step up measures and actions to benefit vulnerable women and children by encouraging their access to credit, health and education", - "values": [ - "Right to education", - "Right to health", - "Rights of the Child", - "Women's rights" - ] - }, - { - "text": "Improve pre trial processing times and increase resources for penal reform", - "values": [ - "Justice" - ] - }, - { - "text": "Encourage the adoption of measures to guarantee the human rights of the lesbian, bisexual, gay, transgender and intersex population", - "values": [ - "Sexual Orientation and Gender Identity" - ] - }, - { - "text": "Continue and intensify the efforts to eliminate discrimination against migrants and their children and to guarantee their equal opportunities in education and access to work ", - "values": [ - "Labour", - "Migrants", - "Racial discrimination", - "Right to education", - "Rights of the Child" - ] - }, - { - "text": "Urgently adopt the draft Prohibition and Prevention of Torture Bill ", - "values": [ - "Torture and other CID treatment" - ] - }, - { - "text": "Pursue efforts to combat racial discrimination, xenophobia through education and information awareness campaigns in the context of the Law on Foreigners", - "values": [ - "Human rights education and training", - "Racial discrimination" - ] - }, - { - "text": "Continue efforts to promote equality between men and women by promoting balanced representation in decision-making bodies as well as in the labour market and entrepreneurship, among other initiatives", - "values": [ - "Labour", - "Women's rights" - ] - }, - { - "text": "Continue to harmonize, implement and enforce existing laws aimed at protecting the human rights of women and children.", - "values": [ - "Rights of the Child", - "Women's rights" - ] - }, - { - "text": "Design policies which strengthen the rights of the child, and in that regard, sensitize the population to end corporal punishment and child labour ", - "values": [ - "Labour", - "Rights of the Child", - "Torture and other CID treatment" - ] - }, - { - "text": "Address the lack of special provisions for children in the Slovenian criminal code and bring its juvenile justice system fully into compliance with international standards", - "values": [ - "Justice", - "Rights of the Child" - ] - }, - { - "text": "Continue its efforts to combat impunity and human rights violations with particular focus on the rights of women and children.", - "values": [ - "Impunity", - "Rights of the Child", - "Women's rights" - ] - }, - { - "text": "Continue to implement its poverty reduction strategy and improve its maternal and infantile health care", - "values": [ - "Poverty", - "Right to health", - "Rights of the Child", - "Women's rights" - ] - }, - { - "text": "Create a favourable environment for the effective enjoyment of the rights of persons with disabilities ", - "values": [ - "Disabilities" - ] - }, - { - "text": "Continue to promote religious tolerance and to hold to account the perpetrators of violence and threats against religious minorities ", - "values": [ - "Freedom of religion and belief", - "Minorities" - ] - }, - { - "text": "Take the necessary measures to prevent arbitrary detentions based on discriminatory criteria of any kind, particularly those related to phenotype or those directed against LGBT persons ", - "values": [ - "Detention", - "Sexual Orientation and Gender Identity" - ] - }, - { - "text": "Ensure that the judgements of the Inter-American Court of Human Rights regarding the Moiwana Community and Saramaka people are swiftly and completely implemented", - "values": [ - "Extrajudicial executions", - "Indigenous peoples", - "Justice" - ] - }, - { - "text": "Consider withdrawing legislation that prohibits the wearing of religious symbols ", - "values": [ - "Freedom of religion and belief" - ] - }, - { - "text": "Decriminalize abortion in all circumstances and ensure that safe and legal abortion services are available for those women and girls whose pregnancy is a result of rape or whose lives or health are put at risk ", - "values": [ - "Rights of the Child", - "Women's rights" - ] - }, - { - "text": "Take steps to create an environment conducive to a free and independent media which allows freedom of expression", - "values": [ - "Freedom of opinion and expression", - "Freedom of the press" - ] - }, - { - "text": "Establish an independent national human rights institution, in conformity with the Paris Principles ", - "values": [ - "National Human Rights Institution" - ] - }, - { - "text": "Review all type of provisions that could lead to the discrimination of lesbian, gay, bisexual, transgender and intersex persons, as well as review labour provisions which may affect domestic workers", - "values": [ - "Labour", - "Sexual Orientation and Gender Identity" - ] - }, - { - "text": "Continue implementing policies and programmes to assist poor people, improve their standard of living and ensure their access to social services ", - "values": [ - "Poverty" - ] - }, - { - "text": "Explore the possibility of establishing national-level coordination mechanism to assess and monitor implementation of the Government's treaty obligations", - "values": [ - "Other" - ] - }, - { - "text": "Continue to undertake efforts to implement the Responsible Parenthood and Reproductive Health Act", - "values": [ - "Right to health", - "Women's rights" - ] - }, - { - "text": "Finish the development of indicators for the human right to water and sanitation, combating trafficking and smuggling of human beings, and access to justice and fair trial", - "values": [ - "Justice", - "Right to water and sanitation", - "Trafficking" - ] - }, - { - "text": "Improve the capacity to guarantee every person the possibility to request international protection in a legal way, and create conditions for the medical and psychological treatment of asylum seekers, especially those who were victims of torture and violence", - "values": [ - "Asylum-seekers - refugees", - "Right to health", - "Torture and other CID treatment" - ] - }, - { - "text": "Sign and ratify CPED", - "values": [ - "Enforced disappearances", - "International instruments" - ] - }, - { - "text": "Implement the Sharia Penal Code in a manner consistent with international human rights standards", - "values": [ - "International instruments", - "Justice" - ] - }, - { - "text": "Continue promoting initiatives in defence of international solidarity and equal dialogue at the relevant United Nations organs, including both the Human Rights Council and the Third Committee of United Nations General Assembly organs with a view to promoting human rights and solidarity among all nations and peoples of good will", - "values": [ - "General" - ] - }, - { - "text": "Strengthen the different measures aiming at respecting rights of persons with disabilities, particularly boys and girls", - "values": [ - "Disabilities", - "Rights of the Child" - ] - }, - { - "text": "Canada commits to identifying the causes of violence against Aboriginal women and developing appropriate responses in consultation with Aboriginal and civil society organizations.", - "values": [ - "Civil society", - "Indigenous peoples", - "Women's rights" - ] - }, - { - "text": "Recommended the decriminalization of consensual same-sex activity between adults.", - "values": [ - "Sexual Orientation and Gender Identity" - ] - }, - { - "text": "Give priority to bringing conditions and treatment of detainees in Irish prisons into line with international human rights standards, including through implementing outstanding recommendations from international human rights bodies", - "values": [ - "Detention", - "International instruments" - ] - }, - { - "text": "Consider revising its national legislation in order to prevent situations of statelessness ", - "values": [ - "Statelessness and the right to nationality" - ] - }, - { - "text": "Expedite the ratification of the Convention on Preventing and Combating Violence against Women and Domestic Violence (the Istanbul Convention)", - "values": [ - "International instruments", - "Rights of the Child", - "Women's rights" - ] - }, - { - "text": "To review the rules and regulations of the Supreme Council of the Judiciary with a view to reducing the executive branch's influence over the judiciary", - "values": [ - "Justice" - ] - }, - { - "text": "Study amending its Penal Code, by incorporating the criminalization of all forms of violence against women ", - "values": [ - "Women's rights" - ] - }, - { - "text": "Continue to promote non- formal education in order to make greater progress in advancing people's education level", - "values": [ - "Right to education" - ] - }, - { - "text": "Make further efforts to review the Constitution with a view to explicitly recognizing economic, social and cultural rights equally with other constitutional rights", - "values": [ - "ESC rights - general" - ] - }, - { - "text": "Allow the Special Rapporteur on torture and other cruel, inhuman or degrading treatment or punishment to visit Bahrain, following up on the acceptance of recommendations to that effect made in the second cycle", - "values": [ - "Special procedures", - "Torture and other CID treatment" - ] - }, - { - "text": "Review the reservations which the Republic of Iraq made when acceding to international human rights treaties", - "values": [ - "International instruments" - ] - }, - { - "text": "Continue consolidating the programs of social protection which are being implemented in order to offer greater well-being and quality of life to its people", - "values": [ - "ESC rights - general" - ] - }, - { - "text": "Increase efforts to ensure universal access to health care ", - "values": [ - "Right to health" - ] - }, - { - "text": "As recommended by the Committee on the Elimination of Racial Discrimination, pursue means of recording complaints, prosecutions and sentences related to racially motivated crimes and investigate how such issues are addressed through the criminal justice system. ", - "values": [ - "Justice", - "Racial discrimination", - "Treaty bodies" - ] - }, - { - "text": "Adopt a more comprehensive legislation to combat domestic violence and all forms of sexual abuse ", - "values": [ - "Rights of the Child", - "Women's rights" - ] - }, - { - "text": "Ensure that freedom of religion or belief be observed in all parts of the country and all religious sites be duly protected", - "values": [ - "Freedom of religion and belief" - ] - }, - { - "text": "Set up an official moratorium for the definitive abolition of the death penalty and facilitate the holding of debate on this issue", - "values": [ - "Death penalty" - ] - }, - { - "text": "Ratify ICCPR, including its second protocol, and ICESCR", - "values": [ - "CP rights - general", - "Death penalty", - "ESC rights - general", - "International instruments" - ] - }, - { - "text": "Elaborate and promote a national human rights plan that integrates all of its administration, harmonizes its internal legislation with its international obligations, includes awareness-raising programmes on diverse human rights subjects, links public and private actors in its defence and guides its public policies with strategies to protect human rights, in order to achieve greater systematization of its human rights action ", - "values": [ - "Human rights education and training" - ] - }, - { - "text": "Continue its efforts for the promotion and protection of human rights with the support of the international community, at the bilateral and multilateral levels.", - "values": [ - "Technical assistance and cooperation" - ] - }, - { - "text": "Recommend that the international community provide technical assistance to Cote d'Ivoire to strengthen the capacity of its national mechanisms responsible for preparing periodic reports for treaty bodies and assist Cote d'Ivoire in training law enforcement officials, judges and police officers in the area of human rights ", - "values": [ - "Human rights education and training", - "Technical assistance and cooperation", - "Treaty bodies" - ] - }, - { - "text": "Establish mechanisms and procedures for the protection of rights of child victims of human trafficking ", - "values": [ - "Rights of the Child", - "Trafficking" - ] - }, - { - "text": "Consider the possibility of ratifying the Convention on the Protection of All Persons from Enforced Disappearance (CPED) ", - "values": [ - "Enforced disappearances", - "International instruments" - ] - }, - { - "text": "Take further actions to combat incitement to hatred and racist crimes against foreign nationals, including by promoting a positive narration on international migration and pursuing the National Action Plan against Racism and Intolerance", - "values": [ - "Migrants", - "Racial discrimination" - ] - }, - { - "text": "Continue to develop its health-care undertakings and further strengthen its work on HIV/AIDS prevention and treatment", - "values": [ - "HIV - Aids", - "Right to health" - ] - }, - { - "text": "Swiftly take action to improve conditions of detention, in particular to reduce excessive use of force and overcrowding in line with the Nelson Mandela Rules", - "values": [ - "Detention" - ] - }, - { - "text": "Definitively abolish the death penalty, and sign and ratify the Second Optional Protocol to ICCPR, which bans capital punishment in all circumstances ", - "values": [ - "Death penalty", - "International instruments" - ] - }, - { - "text": "Ensure allocations for the implementation of the Government's poverty reduction strategy and ensure that international development aid is utilized for the realization of the right to an adequate standard of living", - "values": [ - "Poverty" - ] - }, - { - "text": "Repeal or revise the Public Order Act and Criminal and Seditious Libel laws, and guarantee freedom of expression for journalists", - "values": [ - "Freedom of opinion and expression", - "Freedom of the press" - ] - }, - { - "text": "Continue to combat terrorism in the subregion in order to preserve peace, security and prosperity", - "values": [ - "Public security" - ] - }, - { - "text": "Encourage the expansion of the bilateral cooperation between the Swiss and Romanian task forces against human trafficking to more countries of origin", - "values": [ - "Trafficking" - ] - }, - { - "text": "Ratify ILO Convention No. 169", - "values": [ - "Indigenous peoples", - "International instruments" - ] - }, - { - "text": "Adopt the necessary measures with a view to ratifying the Optional Protocol to the CRPD", - "values": [ - "Disabilities", - "International instruments" - ] - }, - { - "text": "Ratify the Second Optional Protocol to ICCPR ", - "values": [ - "Death penalty", - "International instruments" - ] - }, - { - "text": "Undertake an assessment of active policies for the protection of the rights of women and strengthen mechanisms for tackling gender-based violence, with particular emphasis on employment, education and awareness-raising, as well as the system for compiling data on gender-based violence", - "values": [ - "Human rights education and training", - "Women's rights" - ] - }, - { - "text": "Fully cooperate with all the United Nations human rights mechanisms and special procedures, particularly the Special Rapporteur on the situation of human rights in the Democratic People's Republic of Korea, and engage with OHCHR", - "values": [ - "Special procedures", - "Technical assistance and cooperation", - "Treaty bodies", - "UPR process" - ] - }, - { - "text": "Prioritise the education of all Vanuatu citizens ", - "values": [ - "Right to education" - ] - }, - { - "text": "Establish a norm leading to the separation of women and men in penitentiary centres and between adults and minors and set up measures to ensure compliance with this norm, having heard information on the measures that will be adopted in penitentiary centres", - "values": [ - "Detention", - "Rights of the Child", - "Women's rights" - ] - }, - { - "text": "Bring domestic law into full compliance with the Convention on the Rights of the Child", - "values": [ - "International instruments", - "Rights of the Child" - ] - }, - { - "text": "Ratify the Second Optional Protocol to the ICCPR with a view to abolishing the death penalty", - "values": [ - "Death penalty", - "International instruments" - ] - }, - { - "text": "Further strengthen and improve the social security system, increase people's living standards", - "values": [ - "ESC rights - general" - ] - }, - { - "text": "Intensify efforts to improve maternal and child health in the country ", - "values": [ - "Right to health", - "Rights of the Child", - "Women's rights" - ] - }, - { - "text": "Continue to make efforts to implement and apply the Historical Memory Act ", - "values": [ - "Justice" - ] - }, - { - "text": "Develop a comprehensive, multisectoral national strategic plan on gender-based violence", - "values": [ - "Women's rights" - ] - }, - { - "text": "Address serious problems associated with pursuing perpetrators of child pornography and other forms of sexual exploitation and sexual abuse of children and providing assistance for and protection of victims and witnesses", - "values": [ - "Justice", - "Rights of the Child" - ] - }, - { - "text": "Strengthen its cooperation with the United Nations and its mechanisms on human rights and humanitarian matters with a view to building national capacities and improving the people's well-being ", - "values": [ - "Special procedures", - "Treaty bodies", - "UPR process" - ] - }, - { - "text": "Develop a national strategy to combat the sale and sexual exploitation of women ", - "values": [ - "Women's rights" - ] - }, - { - "text": "Strengthen protection of victims of trafficking.", - "values": [ - "Trafficking" - ] - }, - { - "text": "Bring to justice anyone who threatens, abducts or attacks human rights defenders, journalists, bloggers or others who work to promote democracy", - "values": [ - "Freedom of opinion and expression", - "Freedom of the press", - "Human rights defenders" - ] - }, - { - "text": "Continue its efforts in guaranteeing and facilitating access to justice for all citizens ", - "values": [ - "Justice" - ] - }, - { - "text": "Bring its national human rights institution in line with the Paris Principles ", - "values": [ - "National Human Rights Institution" - ] - }, - { - "text": "Take all the necessary measures to improve the effectiveness and transparency of efforts aimed at combating corruption, in particular by intensifying its efforts to diligently and rapidly respond to the recommendations and questions of the national ombudsman", - "values": [ - "Corruption", - "National Human Rights Institution" - ] - }, - { - "text": "Expedite their consultation on the bill to grant domestic workers annual leave and provide cooperation with social workers to monitor their working conditions", - "values": [ - "Labour" - ] - }, - { - "text": "Continue to step up efforts to raise the minimum age for criminal responsibility including continuing review of relevant legislation", - "values": [ - "Justice", - "Rights of the Child" - ] - }, - { - "text": "Facilitate access to humanitarians in conflict zones ", - "values": [ - "Other" - ] - }, - { - "text": "Step up efforts to combat all forms of sexual violence against women", - "values": [ - "Women's rights" - ] - }, - { - "text": "Adopt a national plan against racism, discrimination, xenophobia and other forms of intolerance", - "values": [ - "Racial discrimination" - ] - }, - { - "text": "Continue to apply measures to combat gender-based violence, including programmes of prevention which promote the elimination of gender stereotypes and the empowerment of women ", - "values": [ - "Rights of the Child", - "Women's rights" - ] - }, - { - "text": "Continue the reforms to improve policies and programmes towards promotion and protection of all human rights", - "values": [ - "General" - ] - }, - { - "text": "Modify its criminal law to criminalize all forms of racial discrimination", - "values": [ - "Racial discrimination" - ] - }, - { - "text": "Take all necessary steps to strengthen the protection of the civilian population, particularly women and children, from violence. ", - "values": [ - "International humanitarian law" - ] - }, - { - "text": "Continue to safeguard all human rights provisions in its new Constitution ", - "values": [ - "General" - ] - }, - { - "text": "Ensure that adequate mechanisms are in place for the rehabilitation and social integration of women and girls who have been victims of trafficking ", - "values": [ - "Rights of the Child", - "Trafficking", - "Women's rights" - ] - }, - { - "text": "Share its experience with other countries that may equally wish to make progress in providing for more efficient legal frameworks in the fight against domestic violence ", - "values": [ - "Rights of the Child", - "Women's rights" - ] - }, - { - "text": "Continue to take into consideration the adverse impacts of climate change on people's access to food and clean water, particularly the most vulnerable sectors of society", - "values": [ - "Environment", - "Right to food", - "Right to water and sanitation" - ] - }, - { - "text": "Sign and ratify the First Optional Protocol to the International Covenant on Civil and Political Rights, from which Jamaica withdrew in 1997 ", - "values": [ - "CP rights - general", - "International instruments" - ] - }, - { - "text": "Increase efforts at providing free and affordable education, including secondary education, to all segments of the population ", - "values": [ - "Right to education" - ] - }, - { - "text": "Clarify the mandate and scope of its proposed NHRI as per the Paris Principles ", - "values": [ - "National Human Rights Institution" - ] - }, - { - "text": "Review the use of incommunicado detention for offences involving terrorists or armed gangs, which may last for up to 13 days ", - "values": [ - "Counter-terrorism", - "Detention" - ] - }, - { - "text": "Address the problems faced by women belonging to minorities.", - "values": [ - "Minorities", - "Women's rights" - ] - }, - { - "text": "Remove all restrictions, in law and practice, which prevent the full enjoyment of the right to freedom of expression, association and assembly and create an enabling environment for civil society in line with its previous universal periodic review engagements", - "values": [ - "Civil society", - "Freedom of association and peaceful assembly", - "Freedom of opinion and expression", - "UPR process" - ] - }, - { - "text": "Continue efforts to provide humanitarian assistance to developing countries", - "values": [ - "Development" - ] - }, - { - "text": "Promote the inclusion and participation of indigenous peoples and Torres Strait Islanders in any process or decision-making that may affect their interests ", - "values": [ - "Indigenous peoples" - ] - }, - { - "text": "Address the gender disparity as well as women's limited access to education, their limited political representation and limited participation in decision-making ", - "values": [ - "Women's rights" - ] - }, - { - "text": "Continue to make efforts to sustainably increase coverage and benefits under the Bono Juana Azurduy voucher system with a view to reducing levels of maternal and infant mortality and chronic malnutrition among children under the age of 2", - "values": [ - "Right to health", - "Rights of the Child", - "Women's rights" - ] - }, - { - "text": "Refrain from resorting to violence and extrajudicial executions by the security forces, in particular the so-called \u201cwar on drugs\u201c", - "values": [ - "Extrajudicial executions" - ] - }, - { - "text": "Complete the process already started by Iraq, of accession and ratification of international conventions and treaties, in particular the Convention on the Rights of Persons with Disabilities", - "values": [ - "Disabilities", - "International instruments" - ] - }, - { - "text": "Take effective measures to combat rising instances of religious intolerance, violence and discrimination", - "values": [ - "Freedom of religion and belief" - ] - }, - { - "text": "Become party to the Optional Protocol to the Convention on the Elimination of All Forms of Discrimination against Women ", - "values": [ - "International instruments", - "Women's rights" - ] - }, - { - "text": "Ratify the Optional Protocols to the International Covenant on Economic, Social and Cultural Rights and the Convention on the Elimination of All Forms of Discrimination against Women", - "values": [ - "ESC rights - general", - "International instruments", - "Women's rights" - ] - }, - { - "text": "Continue to adopt all legislative and executive measures against gender-based violence, with special attention to migrant victims", - "values": [ - "Migrants", - "Women's rights" - ] - }, - { - "text": "Continue economic empowerment of women", - "values": [ - "Women's rights" - ] - }, - { - "text": "Put an end to all practices limiting activities of civil society, and take concrete steps to guarantee the freedom of association ", - "values": [ - "Civil society", - "Freedom of association and peaceful assembly" - ] - }, - { - "text": "Adopt or ratify the Convention on the Rights of Persons with Disabilities and its Optional Protocol", - "values": [ - "Disabilities", - "International instruments" - ] - }, - { - "text": "Fully implement the adopted action plan on the recruitment of children to the armed forces and take into consideration the relevant recommendations made by the Secretary-General in his annual report on children and armed conflict ", - "values": [ - "International humanitarian law", - "Rights of the Child" - ] - }, - { - "text": "Continue with its very successful and socially-oriented economic policy, including by for example providing proper drinking water to poor households and to special hardship regions", - "values": [ - "Development", - "Right to water and sanitation" - ] - }, - { - "text": "Continue its efforts towards the effective implementation of the Domestic Violence Prevention and Protection Act, including through awareness-raising and changing mindsets and attitudes", - "values": [ - "Human rights education and training", - "Rights of the Child", - "Women's rights" - ] - }, - { - "text": "Continue efforts in the promotion and protection of economic, social and cultural rights ", - "values": [ - "ESC rights - general" - ] - }, - { - "text": "Take appropriate measures to enable more women to hold elective offices", - "values": [ - "Women's rights" - ] - }, - { - "text": "Enhance Law 26.364 on trafficking in persons, particularly on the basis of the recommendations of the Special Rapporteur on Trafficking in Persons", - "values": [ - "Special procedures", - "Trafficking" - ] - }, - { - "text": "Take the necessary measures to ensure that the national Human Rights Commission is fully functional and equipped with the necessary mandate and resources in accordance with the Paris Principles", - "values": [ - "National Human Rights Institution" - ] - }, - { - "text": "Continue efforts to further strengthen its capacity to effectively implement domestic laws ", - "values": [ - "Justice" - ] - }, - { - "text": "Continue its legislative, institutional and socio-economic reforms to provide an effective framework to address gender mainstreaming, violence against women, religious intolerance, particularly with regard to citizenship, freedom of speech, and human trafficking, and focus on the very key question of achieving the targets of the Millennium Development Goals, which will comprehensively address the key question of human rights ", - "values": [ - "Development", - "Freedom of religion and belief", - "Statelessness and the right to nationality", - "Trafficking", - "Women's rights" - ] - }, - { - "text": "Intensify efforts to promote and protect women's rights, particularly in regard to gender based violence ", - "values": [ - "Women's rights" - ] - }, - { - "text": "Continue, as a main priority of the Bulgarian legislative and administrative policies, the fight against all forms of religious hatred, discrimination, racism, extremism and xenophobia", - "values": [ - "Freedom of religion and belief", - "Racial discrimination" - ] - }, - { - "text": "Take further measures to improve children's enrolment, access, quality and sustainability of education, especially for girls", - "values": [ - "Right to education", - "Rights of the Child", - "Women's rights" - ] - }, - { - "text": "Put in place all the necessary measures to ensure that the population has access to adequate sanitation and clean drinking water", - "values": [ - "Right to water and sanitation" - ] - }, - { - "text": "Invite the Special Rapporteur on the human rights of migrants and the Special Rapporteur on contemporary forms of slavery to assess the situation of domestic migrant workers", - "values": [ - "Labour", - "Migrants", - "Special procedures" - ] - }, - { - "text": "Strengthen efforts towards the ratification of the International Covenant on Civil and Political Rights and the International Covenant on Economic, Social and Cultural Rights", - "values": [ - "CP rights - general", - "ESC rights - general", - "International instruments" - ] - }, - { - "text": "Continue to implement measures aimed at improving the conditions for the exercise and protection of the rights of persons with disabilities, assuring the construction of an inclusive society without barriers", - "values": [ - "Disabilities" - ] - }, - { - "text": "Continue implementing programmes and measures to improve the enjoyment of the right to education and the right to health, including for the indigenous peoples ", - "values": [ - "Indigenous peoples", - "Right to education", - "Right to health" - ] - }, - { - "text": "Ratify the Agreement on the Privileges and Immunities of the International Criminal Court and ensure its implementation in national law ", - "values": [ - "International instruments" - ] - }, - { - "text": "Consider ratification of the International Covenant on Economic, Social and Cultural Rights and of the International Covenant on Civil and Political Rights and its Second Optional Protocol", - "values": [ - "CP rights - general", - "Death penalty", - "ESC rights - general", - "International instruments" - ] - }, - { - "text": "Incorporate the provisions of the Convention on the Rights of the Child into the domestic legal system", - "values": [ - "International instruments", - "Rights of the Child" - ] - }, - { - "text": "Continue intensifying its efforts to combat trafficking in persons, including by the adoption of a regulatory framework to address the exploitation of women and children", - "values": [ - "Rights of the Child", - "Trafficking", - "Women's rights" - ] - }, - { - "text": "Ensure that domestic laws are in conformity with international human rights obligations ", - "values": [ - "International instruments" - ] - }, - { - "text": "Do more to promote the value of citizenship among all groups, thereby encouraging naturalization of the remaining non-citizens ", - "values": [ - "Migrants" - ] - }, - { - "text": "Respect provisions of existing laws governing freedoms of association assembly and expression, and eliminate abuse of provisions to limit political gatherings, union activity and criticism of the Government", - "values": [ - "Freedom of association and peaceful assembly", - "Freedom of opinion and expression" - ] - }, - { - "text": "Establish a national preventive mechanism against torture", - "values": [ - "Detention", - "Torture and other CID treatment" - ] - }, - { - "text": "Continue efforts to put an end to violence against women and children", - "values": [ - "Rights of the Child", - "Women's rights" - ] - }, - { - "text": "Introduce alternative measures to pretrial detention for minors wherever possible, develop clear rules for the treatment of minors in police custody, and monitor their effective implementation in practice", - "values": [ - "Detention", - "Rights of the Child" - ] - }, - { - "text": "Take steps to ensure that the work of the Extraordinary Chambers, including the involvement of international judges working alongside Cambodian judges, is harnessed to contribute to the strengthening of the Cambodian judiciary ", - "values": [ - "Justice" - ] - }, - { - "text": "Continue to play its important role in the field of protecting and promoting human rights ", - "values": [ - "Other" - ] - }, - { - "text": "Put in place the necessary funding to allow the implementation of all the activities of the National Human Rights Commission", - "values": [ - "National Human Rights Institution" - ] - }, - { - "text": "Continue its recent efforts in the area of the ratification of important human rights conventions, and ratify the International Convention for the Protection of All Persons from Enforced Disappearance and accede to the Convention against Torture ", - "values": [ - "Enforced disappearances", - "International instruments", - "Torture and other CID treatment" - ] - }, - { - "text": "Strengthen the role of bodies and institutions such as the Ombudsman and the National Council for Cooperation on Ethnic and Demographic Issues, in particular the Commission for Protection against Discrimination, by enhancing their human and logistical capacity", - "values": [ - "National Human Rights Institution" - ] - }, - { - "text": "Promote laws on the rights of children and adolescents especially in the area of health", - "values": [ - "Right to health", - "Rights of the Child" - ] - }, - { - "text": "Sign and ratify the Conventions and Protocols to which it is not a party ", - "values": [ - "International instruments" - ] - }, - { - "text": "Adopt measures to recognize in practice the indivisibility, equality, interdependence and universality of all human rights so that legislation and judicial practice adequately ensures the enjoyment of economic, social and cultural rights and not just civil and political rights ", - "values": [ - "ESC rights - general" - ] - }, - { - "text": "Strengthen the implementation of the Growth and Transformation Plan to build on the achievements of poverty reduction ", - "values": [ - "Poverty" - ] - }, - { - "text": "Amend article 230 of the Criminal Code to end criminalization of same-sex sexual relations", - "values": [ - "Sexual Orientation and Gender Identity" - ] - }, - { - "text": "Ensure the safety of journalists and a free, independent media, including in the run-up to the elections", - "values": [ - "Elections", - "Freedom of the press" - ] - }, - { - "text": "Revise laws still containing discriminatory provisions, enact comprehensive anti-discrimination legislation and expressly include the prohibition of discrimination on the grounds of sexual orientation or gender identity in such legislation ", - "values": [ - "Sexual Orientation and Gender Identity" - ] - }, - { - "text": "Ensure that all detained persons have prompt access to a doctor and a lawyer, as well as contact with their families, at all stages of detention, and that detainees held by the Political Security Department be given prompt access to legal advice and information.", - "values": [ - "Detention" - ] - }, - { - "text": "Improve effective consultation with indigenous communities before granting licenses for the economic exploitation of disputed land.", - "values": [ - "Indigenous peoples", - "Right to land" - ] - }, - { - "text": "Become a party to the ICCPR, ICESCR, CERD, and CAT", - "values": [ - "CP rights - general", - "ESC rights - general", - "International instruments", - "Racial discrimination", - "Torture and other CID treatment" - ] - }, - { - "text": "Consider the ratification of ICRMW", - "values": [ - "International instruments", - "Labour", - "Migrants" - ] - }, - { - "text": "Consider integrating the provisions of the International Covenant on Economic, Social and Cultural Rights into domestic legislation to ensure the justiciability of these rights.", - "values": [ - "ESC rights - general", - "International instruments" - ] - }, - { - "text": "Consider prioritizing the stated objective of developing a comprehensive national action plan for promotion and protection of all human rights", - "values": [ - "General" - ] - }, - { - "text": "Ratify, before the next review cycle, the International Convention for the Protection of All Persons from Enforced Disappearance", - "values": [ - "Enforced disappearances", - "International instruments", - "UPR process" - ] - }, - { - "text": "Issue clear directives to health officials to prohibit the sterilization of women living with HIV/AIDS without their informed consent", - "values": [ - "HIV - Aids", - "Women's rights" - ] - }, - { - "text": "Improve the protection of the health of pregnant women and mothers, especially in rural areas", - "values": [ - "Right to health", - "Women's rights" - ] - }, - { - "text": "Respond positively to pending requests for special procedure visits and extend a standing invitation to special procedure mandate holders", - "values": [ - "Special procedures" - ] - }, - { - "text": "Ensure the independence and impartiality of the judicial system ", - "values": [ - "Justice" - ] - }, - { - "text": "Intensify efforts to ensure gender equality and eliminate sexual and gender-based violence, including through considering development of a National Action Plan and implementation of Security Council Resolution 1325", - "values": [ - "Women's rights" - ] - }, - { - "text": "Abolish incommunicado detention, investigate death in custody incidents and prosecute those responsible, allow frequent visits by recognized international humanitarian organizations to all detention places, and establish an independent monitoring system for detention facilities ", - "values": [ - "Detention", - "Human rights violations by state agents", - "International humanitarian law" - ] - }, - { - "text": "Continue, in cooperation with UNESCO, to promote access to quality education for all ", - "values": [ - "Right to education" - ] - }, - { - "text": "Ensure that all children are issued with a birth certificate in order to access various social services, with particular focus on children of migrants ", - "values": [ - "Migrants", - "Rights of the Child" - ] - }, - { - "text": "Ensure that all hate crimes are categorized as such and thoroughly investigated", - "values": [ - "Racial discrimination" - ] - }, - { - "text": "Ensure the full enjoyment of human rights by persons deprived of their liberty, including by way of ensuring treatment in maximum security prisons in conformity with international law", - "values": [ - "Detention" - ] - }, - { - "text": "Ratify CRC, including its two Optional Protocols ", - "values": [ - "International instruments", - "Rights of the Child" - ] - }, - { - "text": "Make a concerted effort to treat higher percentage of persons living with HIV, building on its existing success and with appropriate assistance from international and regional partners", - "values": [ - "HIV - Aids", - "Right to health" - ] - }, - { - "text": "Continue to strengthen its domestic legislation and policies to better protect children against abuses and exploitation", - "values": [ - "Rights of the Child" - ] - }, - { - "text": "Start a national consultation with a view to becoming a member of the ILO and adhering to the core ILO conventions, as previously recommended", - "values": [ - "International instruments", - "Labour", - "UPR process" - ] - }, - { - "text": "Adopt measures to increase the number of women working on violence against women issues in law enforcement agencies ", - "values": [ - "Women's rights" - ] - }, - { - "text": "Stop the discriminatory practices against its own citizens, and redress the situation to achieve full protection of human rights for all its citizens, especially children", - "values": [ - "Rights of the Child" - ] - }, - { - "text": "Consider participating in solving the problems of refugees from the Middle East region that are forced to seek asylum abroad. In this regard, elaboration of the national legislation on refugees could be advisable", - "values": [ - "Asylum-seekers - refugees" - ] - }, - { - "text": "Consolidate efforts to improve educational infrastructure at secondary, tertiary and higher education levels to ensure equitable access and quality education for all", - "values": [ - "Right to education" - ] - }, - { - "text": "Elucidate cases of enforced disappearances in the region of North Caucasus, and sign and ratify CPED ", - "values": [ - "Enforced disappearances", - "International instruments" - ] - }, - { - "text": "Ensure that the recommendations of the Commission for Reception, Truth and Reconciliation are implemented and that the necessary support is provided to the victims of past human rights violations", - "values": [ - "Justice" - ] - }, - { - "text": "Develop a national action plan to combat domestic violence against women and children", - "values": [ - "Rights of the Child", - "Women's rights" - ] - }, - { - "text": "Amend legislation on nationality in order to be able to grant Nepali nationality through either parent", - "values": [ - "Statelessness and the right to nationality", - "Women's rights" - ] - }, - { - "text": "Temper the law banning therapeutic abortion, or even reintroduce the law repealed in 2006, guaranteeing free choice for women victims of rape or whose health is seriously endangered by the pregnancy ", - "values": [ - "Women's rights" - ] - }, - { - "text": "Conduct research concerning root causes and monitor all trends which may give rise to racist and xenophobic behaviour", - "values": [ - "Racial discrimination" - ] - }, - { - "text": "Step up efforts leading to the ratification of the International Convention for the Protection of All Persons from Enforced Disappearance, the Rome Statute of the International Criminal Court, the Optional Protocol to the Convention against Torture, and the Optional Protocol to the Convention on the Elimination of All Forms of Discrimination against Women", - "values": [ - "Detention", - "Enforced disappearances", - "International instruments", - "Justice", - "Torture and other CID treatment", - "Women's rights" - ] - }, - { - "text": "Protect and promote in particular the rights of vulnerable persons, that is: minorities, children, women, older persons, human rights defenders, refugees and prisoners", - "values": [ - "Asylum-seekers - refugees", - "Detention", - "Human rights defenders", - "Minorities", - "Rights of the Child", - "Women's rights" - ] - }, - { - "text": "Withdraw its reservations to CEDAW as soon as possible", - "values": [ - "International instruments", - "Women's rights" - ] - }, - { - "text": "Consider the elaboration of a national policy for the child, which encompasses health, culture and sports", - "values": [ - "ESC rights - general", - "Right to health", - "Rights of the Child" - ] - }, - { - "text": "Continue implementing the policies and programmes aimed at guaranteeing the rights to education, health and food, in addition to combating poverty ", - "values": [ - "Poverty", - "Right to education", - "Right to food", - "Right to health" - ] - }, - { - "text": "Continue efforts in the promotion and protection of child rights, and look into forming a national institution for the protection of child rights", - "values": [ - "Rights of the Child" - ] - }, - { - "text": "Reinforce the judicial system and law enforcement authority with a view to eliminating widespread and organized violent crimes which seriously threaten public safety, especially the safe school environment", - "values": [ - "Public security" - ] - }, - { - "text": "Conduct public awareness campaigns against social prejudices and for upholding the principle of equality and non-discrimination regardless of sexual orientation and-or gender identity.", - "values": [ - "Human rights education and training", - "Sexual Orientation and Gender Identity" - ] - }, - { - "text": "Re-establish the Special Prosecutor's office for past-political and social movements or create a similar office, which would be a strong signal towards combating impunity for victims and their families", - "values": [ - "Impunity", - "Justice" - ] - }, - { - "text": "Strengthen its efforts to accede to international instruments to which Saint Lucia is not a party yet and strengthen its cooperation with the universal system of human rights in order to promote compliance with its obligations in this area, as previously recommended", - "values": [ - "International instruments", - "Special procedures", - "Treaty bodies", - "UPR process" - ] - }, - { - "text": "Allow religious groups to worship and communicate religious believes freely", - "values": [ - "Freedom of religion and belief" - ] - }, - { - "text": "Adopt strategies to combat harmful practices such as debt bondage of children and corporal punishment", - "values": [ - "Rights of the Child", - "Torture and other CID treatment" - ] - }, - { - "text": "Strengthen institutional integrity and accountability by fostering an independent judiciary and democratic electoral processes by working closely with the Organization for Security and Co-operation in Europe Office for Democratic Institutions and Human Rights and local stakeholders", - "values": [ - "Justice" - ] - }, - { - "text": "Address effectively the issue of corruption", - "values": [ - "Corruption" - ] - }, - { - "text": "Ratify the Convention against Torture without reservations", - "values": [ - "International instruments", - "Torture and other CID treatment" - ] - }, - { - "text": "Restore a democratically elected Government in accordance with, inter alia, article 25 of the International Convention on Civil and Political Rights", - "values": [ - "Elections", - "International instruments" - ] - }, - { - "text": "Consider the possibility of ratifying the ICRMW", - "values": [ - "International instruments", - "Labour", - "Migrants" - ] - }, - { - "text": "Continue the endeavour to facilitate the access of elderly persons to preventive services and necessary treatment", - "values": [ - "Other", - "Right to health" - ] - }, - { - "text": "Encourage Mauritius to continue with its positive efforts in promoting and protecting human rights of its people and share its experience in this area with other countries", - "values": [ - "General" - ] - }, - { - "text": "Take adequate measures to integrate human rights education into school curricula and design human rights training programmes for civil servants and security officers ", - "values": [ - "Human rights education and training" - ] - }, - { - "text": "Guarantee the end of the unwarranted use of prisons for the management of persons with disabilities", - "values": [ - "Detention", - "Disabilities" - ] - }, - { - "text": "Ratify the second Optional Protocol to the International Covenant on Civil and Political Rights, abolishing the death penalty ", - "values": [ - "Death penalty", - "International instruments" - ] - }, - { - "text": "Establish an effective and inclusive process to follow up on recommendations emerging from the universal periodic review ", - "values": [ - "UPR process" - ] - }, - { - "text": "Take concrete measures to raise awareness about the illegality of prejudicial and harmful traditional practices such as female genital mutilation or killing of disabled children, through the systematic application of existing laws", - "values": [ - "Human rights education and training", - "Rights of the Child", - "Torture and other CID treatment", - "Women's rights" - ] - }, - { - "text": "Seek support of the international community in Nepal's efforts to firmly institutionalize peace building efforts", - "values": [ - "Technical assistance and cooperation" - ] - }, - { - "text": "Take clear measures to combat Islamophobia, racism and xenophobia and hatred", - "values": [ - "Freedom of religion and belief", - "Racial discrimination" - ] - }, - { - "text": "Criminalize female genital mutilation or cutting and spousal rape, and increase the number of public awareness campaigns focused on preventing violence against women and girls, with particular emphasis on rape, domestic violence, and female genital mutilation or cutting", - "values": [ - "Human rights education and training", - "Rights of the Child", - "Torture and other CID treatment", - "Women's rights" - ] - }, - { - "text": "Both the Government and armed groups immediately take necessary steps to cease all forms of conflict and ensure humanitarian access for internally displaced persons ", - "values": [ - "Internally displaced persons" - ] - }, - { - "text": "Promulgate laws which expressly prohibit all forms of corporal punishment of minors at home as well as in kindergartens, schools and other institutions caring for children", - "values": [ - "Rights of the Child", - "Torture and other CID treatment" - ] - }, - { - "text": "Carry out the necessary measures to protect the environment and adopt specific measures to protect the enjoyment of the right to water", - "values": [ - "Environment", - "Right to water and sanitation" - ] - }, - { - "text": "Pursue its programmes and consolidated approach in the promotion and protection of all human rights including in the empowerment of women.", - "values": [ - "Women's rights" - ] - }, - { - "text": "Continue to cooperate closely with civil society to combat child mortality so as to attain the MDG 4 ", - "values": [ - "Right to health", - "Rights of the Child" - ] - }, - { - "text": "Enact legislation on domestic violence and legislation concerning all forms of sexual abuse to ensure that violence against women and girls constitutes a criminal offence ", - "values": [ - "Rights of the Child", - "Women's rights" - ] - }, - { - "text": "Consider declaring a moratorium on the death penalty ", - "values": [ - "Death penalty" - ] - }, - { - "text": "Amend the 1992 law on freedom of communication of (Organization Act No. 2-AN-92) and update it on the basis of article 19 of the International Covenant on Civil and Political Rights (ICCPR)", - "values": [ - "Freedom of opinion and expression", - "International instruments" - ] - }, - { - "text": "Consider establishing and improving the juvenile justice system ", - "values": [ - "Justice", - "Rights of the Child" - ] - }, - { - "text": "Continue to prioritize the implementation of national legislation and policies to ensure that children with disabilities have access to education and that the education system is responsive to the needs of children with disabilities", - "values": [ - "Disabilities", - "Right to education", - "Rights of the Child" - ] - }, - { - "text": "Prepare action plans to identify, release and ensure reintegration of all unlawful child soldiers, to prevent further recruitment, to investigate and prosecute those perpetrators of child soldering who have violated domestic criminal law, and to address other violations and abuses committed against children, including all forms of forced child labour and child prostitution", - "values": [ - "International humanitarian law", - "Rights of the Child" - ] - }, - { - "text": "Continue the human rights awareness and training of the population", - "values": [ - "Human rights education and training" - ] - }, - { - "text": "Improve the situation of asylum seekers and take measures to end the detention of all refugee children", - "values": [ - "Asylum-seekers - refugees", - "Detention", - "Rights of the Child" - ] - }, - { - "text": "Take measures to ensure the independence of the judicial system over the executive, to ensure that the fight against corruption and the improvement of accountability are pursued", - "values": [ - "Corruption", - "Justice" - ] - }, - { - "text": "Engage in consultations with civil society with a view to possible accession to ICRMW ", - "values": [ - "International instruments", - "Labour", - "Migrants" - ] - }, - { - "text": "Withdraw existing reservations to the Convention on the Rights of the Child and the Convention on the Elimination of All Forms of Discrimination against Women ", - "values": [ - "International instruments", - "Rights of the Child", - "Women's rights" - ] - }, - { - "text": "Develop programmes and policies of prevention, recovery, and social reintegration of child victims", - "values": [ - "Rights of the Child" - ] - }, - { - "text": "Ensure transparent management of oil, gas and mineral revenues to meet the social and economic rights of people living in Cambodia by adopting international best practice, in particular implementation of the Extractive Industries Transparency Initiative ", - "values": [ - "Business and human rights", - "ESC rights - general" - ] - }, - { - "text": "Establish an inter-institutional mechanism, in which relevant civil society actors will participate, in order to implement UPR recommendations as well as Human Rights Council's Special Procedures and Treaty Bodies recommendations", - "values": [ - "Civil society", - "UPR process" - ] - }, - { - "text": "Step up efforts to eliminate all forms of discrimination against women", - "values": [ - "Women's rights" - ] - }, - { - "text": "Ratify and implement the Convention on the Elimination of All Forms of Discrimination against Women and other international human rights treaties and their Optional Protocols, as previously recommended", - "values": [ - "International instruments", - "UPR process", - "Women's rights" - ] - }, - { - "text": "Incorporate explicitly the crime of torture, as defined in the Convention against Torture, into domestic law ", - "values": [ - "International instruments", - "Torture and other CID treatment" - ] - }, - { - "text": "Fully integrate a gender perspective in the follow-up process to the UPR.", - "values": [ - "UPR process", - "Women's rights" - ] - }, - { - "text": "Bring-up French prisons to the level of international standards ", - "values": [ - "Detention" - ] - }, - { - "text": "Review the Public Order Management Act and the Non-Governmental Organizations Act so that the legal framework is conducive to safe and unhindered operation of independent NGOs", - "values": [ - "Civil society", - "Freedom of association and peaceful assembly" - ] - }, - { - "text": "Step up efforts in fighting trafficking of human beings ", - "values": [ - "Trafficking" - ] - }, - { - "text": "Ensure the full participation of indigenous peoples in decision-making processes which concern them, and ensure that they are consulted in the context of the planning and implementation of large-scale economic projects", - "values": [ - "Indigenous peoples" - ] - }, - { - "text": "Continue progress in education, with special attention to the education of girls", - "values": [ - "Right to education", - "Rights of the Child", - "Women's rights" - ] - }, - { - "text": "Issue a directive to the military with a view to expanding the category of humanitarian exceptions to permit human rights defenders to enter and leave Gaza for their work.", - "values": [ - "Human rights defenders" - ] - }, - { - "text": "Ratify the Optional Protocol to the ICESCR, and also accept the enquiry mechanism and communication between States", - "values": [ - "ESC rights - general", - "International instruments" - ] - }, - { - "text": "Sign the International Convention for the Protection of All Persons from Enforced Disappearance.", - "values": [ - "Enforced disappearances", - "International instruments" - ] - }, - { - "text": "Consider adopting a specific legislation to eliminate violence against women, including domestic violence ", - "values": [ - "Women's rights" - ] - }, - { - "text": "Take necessary measures, including implementing the Prohibition of Female Genital Mutilation Act 2010, to ensure that victims of sexual violence and other types of violence have access to effective protection and remedy ", - "values": [ - "Rights of the Child", - "Torture and other CID treatment", - "Women's rights" - ] - }, - { - "text": "Continue government efforts to eradicate the worst forms of child labour and to improve safety standards at work ", - "values": [ - "Labour", - "Rights of the Child" - ] - }, - { - "text": "Continue efforts to combat cases of torture by adopting specific legislation to criminalize torture, by developing training programs for the security forces and by ensuring that perpetrators of these crimes are prosecuted", - "values": [ - "Human rights education and training", - "Torture and other CID treatment" - ] - }, - { - "text": "Further promote large-scale awareness raising campaigns to prevent and combat violence against women and domestic violence", - "values": [ - "Human rights education and training", - "Rights of the Child", - "Women's rights" - ] - }, - { - "text": "Take adequate measures to strengthen the criminalization of female genital mutilation and enhance awareness of the population ", - "values": [ - "Human rights education and training", - "Rights of the Child", - "Torture and other CID treatment", - "Women's rights" - ] - }, - { - "text": "Appoint independent and qualified members to the whole national preventive mechanism to enable the institution to function in accordance with the aims and objectives of the Optional Protocol to the Convention against Torture and Other Cruel, Inhuman or Degrading Treatment or Punishment", - "values": [ - "Detention", - "International instruments", - "Torture and other CID treatment" - ] - }, - { - "text": "Ensure that persons who only speak non-official languages used widely by the population are not denied access to public services ", - "values": [ - "Minorities" - ] - }, - { - "text": "Consolidate the rule of law and human rights principles in the society", - "values": [ - "Justice" - ] - }, - { - "text": "Sign and ratify the Optional Protocol to CRC on the involvement of children in armed conflict", - "values": [ - "International humanitarian law", - "International instruments", - "Rights of the Child" - ] - }, - { - "text": "Encourage ratification of the Convention against Discrimination in Education", - "values": [ - "International instruments", - "Right to education" - ] - }, - { - "text": "Continue strengthening the reform of the judiciary and the criminal justice system in order to overcome the lack of confidence ", - "values": [ - "Justice" - ] - }, - { - "text": "Ensure the implementation of already ratified international conventions in the sphere of children's rights protection", - "values": [ - "International instruments", - "Rights of the Child" - ] - }, - { - "text": "Continue its efforts aimed at preventing, punishing and eliminating all forms all violence against women", - "values": [ - "Women's rights" - ] - }, - { - "text": "Elaborate a national action plan on the promotion and protection of human rights ", - "values": [ - "General" - ] - }, - { - "text": "Address all obstacles that prevent women from reporting acts of violence to the police.", - "values": [ - "Women's rights" - ] - }, - { - "text": "Increase efforts to address prison overcrowding, antiquated facilities and undue delays in prosecution that have prolonged pre-trial detention ", - "values": [ - "Detention" - ] - }, - { - "text": "Continue its efforts to eliminate discrimination against women in law and in practice, by amending the legislation on personal status and nationality as well as the Penal Code", - "values": [ - "Women's rights" - ] - }, - { - "text": "Extend a standing invitation to all special procedures as soon as possible", - "values": [ - "Special procedures" - ] - }, - { - "text": "Take steps toward abolishing the death penalty entirely, while commuting the existing sentences to life imprisonment terms", - "values": [ - "Death penalty" - ] - }, - { - "text": "Further promote human rights education and training at all levels in partnership with all relevant stakeholders to promote and protect the rights of every person ", - "values": [ - "Human rights education and training" - ] - }, - { - "text": "Pursue efforts to combat the multiple forms of discrimination against women, particularly from rural areas, in terms of access to justice and to decision-making positions", - "values": [ - "Justice", - "Women's rights" - ] - }, - { - "text": "Seek to work in partnership with other Pacific Island States in order to join forces in addressing human rights issues ", - "values": [ - "General" - ] - }, - { - "text": "Take into serious consideration the ratification of other core human rights instruments, especially ICCPR and ICESCR", - "values": [ - "CP rights - general", - "ESC rights - general", - "International instruments" - ] - }, - { - "text": "Continue encouraging socio economic development and poverty eradication ", - "values": [ - "Development", - "Poverty" - ] - }, - { - "text": "Continue improving prison conditions and reducing overcrowding", - "values": [ - "Detention" - ] - }, - { - "text": "Secure equal access to public services for migrants and minorities, including Roma ", - "values": [ - "Migrants", - "Minorities" - ] - }, - { - "text": "Appeal for international cooperation and partnership with a view to continuing to develop concrete actions in the field of promotion and protection of human rights ", - "values": [ - "Technical assistance and cooperation" - ] - }, - { - "text": "Step up efforts, together with Nepal, to find a lasting solution to the situation of Bhutanese refugees in Nepal ", - "values": [ - "Asylum-seekers - refugees" - ] - }, - { - "text": "Consolidating democratic process and strengthening local governance", - "values": [ - "General" - ] - }, - { - "text": "Hold accountable perpetrators of harassment and violence against members of religious minority communities", - "values": [ - "Freedom of religion and belief", - "Impunity", - "Minorities" - ] - }, - { - "text": "Complement the reported improvement in mental health services with more robust supervision of the way mental patients are treated in \u201cprayer camps\u201c", - "values": [ - "Right to health" - ] - }, - { - "text": "Initiate the process to incorporate the Convention on the Rights of the Child into national legislation and continue the formulation of a third plan of action for human rights", - "values": [ - "International instruments", - "Rights of the Child" - ] - }, - { - "text": "Design and implement an inter-institutional mechanism with civil society participation for the implementation of the recommendations arising from the UPR mechanism", - "values": [ - "Civil society", - "UPR process" - ] - }, - { - "text": "With regard to the rule of law, launch informative programmes to raise awareness of anti-corruption mechanisms, such as the Professional Standard Division, as well as increase the funding of such institutions", - "values": [ - "Corruption", - "Justice" - ] - }, - { - "text": "Become a State Party to the International Covenant on Civil and Political Rights, the International Covenant on Economic, Social and Cultural Rights, CAT and the Optional Protocol to the Convention against Torture and other Cruel, Inhuman or Degrading Treatment or Punishment, the International Convention on the Protection of the Rights of All Migrant Workers and Members of Their Families, the International Labour Organisation Indigenous and Tribal Peoples, 1989 (No. 169), and the Convention against Discrimination in Education", - "values": [ - "International instruments" - ] - }, - { - "text": "Expedite the establishment of an effective national preventive mechanism, as required under the Optional Protocol to the Convention against Torture", - "values": [ - "Detention", - "International instruments", - "Torture and other CID treatment", - "Treaty bodies" - ] - }, - { - "text": "Adequately train staff and well-resource judges, judicial personnel, and civil servants who work to fight child labour", - "values": [ - "Human rights education and training", - "Labour", - "Rights of the Child" - ] - }, - { - "text": "Take concrete measures to reduce the resort to detention of migrants solely for immigration purposes ", - "values": [ - "Detention", - "Migrants" - ] - }, - { - "text": "Take immediate steps to address the problems with the application of the current legislation and policies, including a lack of public funding, so as to protect the right to life, bodily integrity, liberty and security of all women", - "values": [ - "Women's rights" - ] - }, - { - "text": "Fully align national legislation with the Rome Statute of the International Criminal Court and accede to the Agreement on the Privileges and Immunities of the International Criminal Court", - "values": [ - "International instruments", - "Justice" - ] - }, - { - "text": "Back up the commitment to establishing a national human rights institution by asking for the necessary technical assistance and support from the international community.", - "values": [ - "National Human Rights Institution", - "Technical assistance and cooperation" - ] - }, - { - "text": "Disseminate its best practices to reduce poverty and combat social exclusion", - "values": [ - "Poverty" - ] - }, - { - "text": "Establish a national human rights institution with both advisory and investigative functions and in full compliance with the Paris Principles ", - "values": [ - "National Human Rights Institution" - ] - }, - { - "text": "Further strengthen a gender-sensitive approach in all poverty alleviation programmes ", - "values": [ - "Poverty", - "Women's rights" - ] - }, - { - "text": "Continue the reforms in the area of women's rights, including regarding patrimonial status and particularly regarding forced and underage marriages ", - "values": [ - "Rights of the Child", - "Women's rights" - ] - }, - { - "text": "Accede to the International Convention on the Protection of the Rights of All Migrants Workers and Members of Their Families.", - "values": [ - "International instruments", - "Labour", - "Migrants" - ] - }, - { - "text": "Continue its efforts towards the ratification of ICPPED", - "values": [ - "Enforced disappearances", - "International instruments" - ] - }, - { - "text": "Sign and ratify the Optional Protocol to the International Covenant on Economic, Social and Cultural Rights, as well as the Convention against Torture", - "values": [ - "ESC rights - general", - "International instruments", - "Torture and other CID treatment" - ] - }, - { - "text": "Investigate, prosecute and redress cases of racially motivated ill-treatment and discrimination, including hate speech and incitement to hatred ", - "values": [ - "Racial discrimination" - ] - }, - { - "text": "Fully incorporate its international human rights obligations in domestic law through the adoption of a comprehensive justiciable law on human rights", - "values": [ - "International instruments" - ] - }, - { - "text": "Expedite action on bills currently under consideration aimed at combating racial discrimination", - "values": [ - "Racial discrimination" - ] - }, - { - "text": "Further strengthen cooperation with other countries and relevant international organizations by sharing good experiences in achieving universal access to education and quality education for all", - "values": [ - "Right to education" - ] - }, - { - "text": "Put an end to the use of the criminal justice system to intimidate, threaten, marginalize and stigmatize journalists, social organizations and human rights defenders engaged in the defence of economic, social, cultural and environmental rights and of indigenous peoples\u2019 rights", - "values": [ - "ESC rights - general", - "Freedom of the press", - "Human rights defenders", - "Indigenous peoples", - "Justice" - ] - }, - { - "text": "Accept the competence of CED to receive individual petitions ", - "values": [ - "Enforced disappearances", - "International instruments" - ] - }, - { - "text": "Strengthen efforts to prevent and eradicate forced marriage of children and adolescents", - "values": [ - "Rights of the Child" - ] - }, - { - "text": "Consider formulating a national plan of action on trafficking, with a particular focus on data on trafficking in children", - "values": [ - "Rights of the Child", - "Trafficking" - ] - }, - { - "text": "Put in place a strategy for the promotion of access to education for women and girls, reduce dropout rates among girls in secondary education and improve the access to and the quality of education in rural areas ", - "values": [ - "Right to education", - "Rights of the Child", - "Women's rights" - ] - }, - { - "text": "Revise the discriminatory laws targeting national minorities, including the recent Law on education", - "values": [ - "Minorities", - "Right to education" - ] - }, - { - "text": "Continue its efforts to combat violence, including violence against women, and adopt a comprehensive strategy aimed at preventing and eliminating all forms of violence against women", - "values": [ - "Women's rights" - ] - }, - { - "text": "Submit its outstanding reports in a step-by-step manner and make use of the reviews of the respective treaty bodies to improve its human rights situation ", - "values": [ - "Treaty bodies" - ] - }, - { - "text": "Devote more efforts and resources to programmes aimed at promoting youth employment, notably through education and vocational training of youth", - "values": [ - "Labour" - ] - }, - { - "text": "Take an initiative to draft a law that would establish an independent bureau under the direct authority of the Ministry of Citizen's Protection to deal with incidents of arbitrary conduct by law enforcement officials ", - "values": [ - "Human rights violations by state agents" - ] - }, - { - "text": "Implement effective measures to prevent intimidation of voters in future elections.", - "values": [ - "Elections" - ] - }, - { - "text": "Further strengthen measures to fight gender-based violence, especially domestic violence", - "values": [ - "Rights of the Child", - "Women's rights" - ] - }, - { - "text": "Request technical assistance from OHCHR to improve the promotion of human rights", - "values": [ - "Technical assistance and cooperation" - ] - }, - { - "text": "Implement the recently passed Anti-Discrimination Law and take other appropriate measures to make sure that any remaining discriminatory regulations and practices are abandoned ", - "values": [ - "Other" - ] - }, - { - "text": "Ensure access to education, employment, health care and other basic services for the members of all ethnic communities, including the San and Himba communities ", - "values": [ - "Minorities" - ] - }, - { - "text": "Repeal all sentences by the National Safety Court, to refer these cases to criminal courts in order that all these trials are conducted in a fair, swift and transparent manner ", - "values": [ - "Justice" - ] - }, - { - "text": "Adopt measures to ensure the protection of the life as well as the physical and psychological integrity of lesbian, gay, bisexual, transgender and intersex persons", - "values": [ - "Sexual Orientation and Gender Identity" - ] - }, - { - "text": "Expedite the process of introducing a media bill to enhance freedom of expression", - "values": [ - "Freedom of opinion and expression", - "Freedom of the press" - ] - }, - { - "text": "Consider a comprehensive human rights act as recommended by the National Human Rights Consultative Committee ", - "values": [ - "General" - ] - }, - { - "text": "Accede to the Council of Europe Convention on Preventing and Combating Violence against Women and Domestic Violence", - "values": [ - "International instruments", - "Rights of the Child", - "Women's rights" - ] - }, - { - "text": "Establish a definition of the child in accordance with the Convention on the Rights of the Child as well as incorporate the principle of the best interests of the child in the Constitution", - "values": [ - "International instruments", - "Rights of the Child" - ] - }, - { - "text": "Amend laws that criminalize homelessness and which are not in conformity with international human rights instruments", - "values": [ - "International instruments", - "Right to housing" - ] - }, - { - "text": "Enact the bill on the International Covenant on Civil and Political Rights, which lapsed in Parliament", - "values": [ - "CP rights - general", - "International instruments" - ] - }, - { - "text": "Facilitate access to education and land rights, in particular for women and people in rural areas", - "values": [ - "Right to education", - "Right to land", - "Women's rights" - ] - }, - { - "text": "Fulfil its obligations assumed in several conventions to which it is a party, and if it deems useful, request the assistance of the international community", - "values": [ - "International instruments", - "Technical assistance and cooperation" - ] - }, - { - "text": "Consider withdrawal of its reservations to the Convention on the Elimination of All Forms of Discrimination against Women", - "values": [ - "International instruments", - "Women's rights" - ] - }, - { - "text": "Become a party to OP-CAT", - "values": [ - "Detention", - "International instruments", - "Torture and other CID treatment" - ] - }, - { - "text": "Include, systematically and continuously, a gender-perspective into the follow-up process to the Universal Periodic Review.", - "values": [ - "UPR process", - "Women's rights" - ] - }, - { - "text": "Continue its efforts in the fight against poverty and in favour of people in vulnerable situations", - "values": [ - "Development", - "Poverty" - ] - }, - { - "text": "Finalize the adoption of the law on national minorities", - "values": [ - "Minorities" - ] - }, - { - "text": "Accede to the Convention on the Reduction of Statelessness and adopt its safeguards in the domestic legislation", - "values": [ - "International instruments", - "Statelessness and the right to nationality" - ] - }, - { - "text": "Further improve the access of children, especially girls, and women to human rights education ", - "values": [ - "Human rights education and training", - "Rights of the Child", - "Women's rights" - ] - }, - { - "text": "Enhance efforts to combat domestic violence ", - "values": [ - "Rights of the Child", - "Women's rights" - ] - }, - { - "text": "Finalise the adoption of the law on the protection of the rights of the child, which has been recently announced", - "values": [ - "Rights of the Child" - ] - }, - { - "text": "Take more tangible steps to promote and protect the human rights of its citizens, by continuing to engage all relevant parties in an open and meaningful dialogue", - "values": [ - "General" - ] - }, - { - "text": "Take effective measures to improve the situation of the Roma and Romani/Taters minorities and ensure that all forms of discrimination against them in the provision of services are firmly opposed and appropriately sanctioned ", - "values": [ - "Minorities", - "Racial discrimination" - ] - }, - { - "text": "Define its expectations of United Nations organizations and agencies regarding technical and financial assistance, and request the international support required in order to cope with material and infrastructural constraints, as highlighted in its national report ", - "values": [ - "Technical assistance and cooperation" - ] - }, - { - "text": "Study the possibility for the Federal Government of campaigning in favour of applying the United Nations Moratorium on the death penalty ", - "values": [ - "Death penalty" - ] - }, - { - "text": "Ban organizations which promote and instigate racial discrimination and hatred", - "values": [ - "Racial discrimination" - ] - }, - { - "text": "Criminalize all forms of trafficking in children, facilitate access to justice and provide compensation for child victims, and enhance victim protection and assistance ", - "values": [ - "Rights of the Child", - "Trafficking" - ] - }, - { - "text": "Fully implement the Anti-Human Trafficking Act No. 11 of 2008 and ensure effective investigations into the cases of sale, trafficking and abduction of children to protect them from commercial exploitation", - "values": [ - "Rights of the Child", - "Trafficking" - ] - }, - { - "text": "Continue its cooperation with the United Nations special procedures ", - "values": [ - "Special procedures" - ] - }, - { - "text": "Use temporary special measures in accordance with article 4 paragraph 1 of the CEDAW to achieve substantive equality of women", - "values": [ - "International instruments", - "Women's rights" - ] - }, - { - "text": "Continue the policy of national action plans in several areas to implement treaty body recommendations and those from the Universal Periodic Review mechanism ", - "values": [ - "Treaty bodies", - "UPR process" - ] - }, - { - "text": "Strengthen the fight against poverty ", - "values": [ - "Poverty" - ] - }, - { - "text": "The Government is committed to creating an environment that promotes sustainable economic growth while ensuring that the rights and welfare of its workers are protected. ", - "values": [ - "Development", - "Labour" - ] - }, - { - "text": "Adopt a human rights education and training programme for law enforcement officials, in particular on the use of force, with a view to providing alternative methods to address any potentially violent situation proportionally ", - "values": [ - "Human rights education and training" - ] - }, - { - "text": "Adopt measures to protect human rights defenders and cooperate with human rights organizations in adopting a national plan of action for human rights and in the implementation of the recommendations resulting from the universal periodic review", - "values": [ - "Human rights defenders", - "UPR process" - ] - }, - { - "text": "Continue efforts to strengthen its democratic institutions and values and develop comprehensive national human rights policies to embrace all economic and social domains, such as education, health, the environment and poverty eradication programmes and support their implementation", - "values": [ - "ESC rights - general", - "Environment", - "Poverty", - "Right to education", - "Right to health" - ] - }, - { - "text": "Continue to strengthen its human rights institutions and develop additional measures to ensure the effective implementation of their mandate", - "values": [ - "General" - ] - }, - { - "text": "Ensure an independent judiciary in order to guarantee the right to a fair trial", - "values": [ - "Justice" - ] - }, - { - "text": "Create and maintain, in law and in practice, an enabling environment that guarantees freedom of expression and peaceful assembly", - "values": [ - "Freedom of association and peaceful assembly", - "Freedom of opinion and expression" - ] - }, - { - "text": "Establish awareness-raising programmes addressed to law enforcement forces aimed at preventing torture and other cruel, inhuman or degrading treatment, as well as efficient investigative mechanisms in order to fight against impunity in this regard ", - "values": [ - "Impunity", - "Torture and other CID treatment" - ] - }, - { - "text": "Work to obtain the accreditation of the National Human Rights Institution ", - "values": [ - "National Human Rights Institution" - ] - }, - { - "text": "Approve and implement as soon as possible the bill against torture, in order to effectively implement protection as provided by CAT ", - "values": [ - "International instruments", - "Torture and other CID treatment" - ] - }, - { - "text": "Intensify its efforts in the name of gender equality, amend the legal provisions that establish a system of patronising gender promotion and protection for gender reasons, and develop a comprehensive policy in favour of gender equality, including awareness campaigns in areas of society and public administration ", - "values": [ - "Human rights education and training", - "Women's rights" - ] - }, - { - "text": "Take further steps to eradicate all forms of discrimination and violence against minority communities, including women and girls, and implement the recent recommendations in this regard from the Committee on the Elimination of Discrimination Against Women", - "values": [ - "Minorities", - "Racial discrimination", - "Rights of the Child", - "Treaty bodies" - ] - }, - { - "text": "Strengthen efforts to combat and prevent domestic and sexual violence against women", - "values": [ - "Rights of the Child", - "Women's rights" - ] - }, - { - "text": "Establish a mechanism for collecting and evaluating data on incidents of domestic violence and sexual harassment so as to assist the Government in tackling violence against women", - "values": [ - "Women's rights" - ] - }, - { - "text": "Reconsider all the laws that criminalize or restrict the right to freedom of expression and the right of internet freedom ", - "values": [ - "Freedom of opinion and expression" - ] - }, - { - "text": "Continue to attach great importance to safeguarding the compulsory education rights of children accompanying rural migrant workers", - "values": [ - "Labour", - "Migrants", - "Right to education", - "Rights of the Child" - ] - }, - { - "text": "Adopt laws that guarantee the rights of refugees and asylum seekers, that establish the prohibition of expulsion, return and extradition of a person to another State in case that there are well-founded reasons to believe that this person would be in danger of being subjected to torture or ill-treatment", - "values": [ - "Asylum-seekers - refugees", - "Torture and other CID treatment" - ] - }, - { - "text": "Implement the recommendations of the previous UPR, in particular ratification of the Convention on Torture and Other Cruel, Inhuman or Degrading Punishment or Treatment, the International Convention for the Protection of All Persons from Enforced Disappearance and the Rome Statute ", - "values": [ - "Enforced disappearances", - "International instruments", - "Justice", - "Torture and other CID treatment", - "UPR process" - ] - }, - { - "text": "Take measures to prevent and combat discrimination based on sexual orientation and gender identity, including by decriminalizing sexual relations between consenting adults of the same sex", - "values": [ - "Sexual Orientation and Gender Identity" - ] - }, - { - "text": "Adhere to article 14 of the International Convention on the Elimination of all Forms of Racial Discrimination in view of recognizing the competence of the Committee to receive and examine communications from individuals or groups of persons who allege being victims of violations of any of the rights stipulated in the Convention ", - "values": [ - "International instruments", - "Racial discrimination" - ] - }, - { - "text": "Take all necessary measures to modify or eliminate cultural practices and stereotypes that discriminate against women including awareness-raising.", - "values": [ - "Human rights education and training", - "Women's rights" - ] - }, - { - "text": "Effectively address poverty and unemployment, in cooperation with international community", - "values": [ - "Development", - "Poverty" - ] - }, - { - "text": "Complete the implementation of the National Action Plan for the promotion and Protection of Human Rights", - "values": [ - "General" - ] - }, - { - "text": "Continue attaching great importance to education and solve effectively the problem of children dropping out of school, so as to guarantee their right to education", - "values": [ - "Right to education", - "Rights of the Child" - ] - }, - { - "text": "Redouble efforts to address the challenges arising in the prevention of and response to gender-based violence, including by enhancing the function of the Isange One-Stop Centres", - "values": [ - "Women's rights" - ] - }, - { - "text": "Adopt necessary measures to prevent indefinite detention of migrants, and provide all legal safeguards to detained migrants ", - "values": [ - "Detention", - "Migrants" - ] - }, - { - "text": "Continue efforts to combat impunity and ensure alleged perpetrators of serious human rights violations are brought to justice, including through renewed efforts to arrest Major General Jovito Palparan Jr., former Governor Joel Reyes and the perpetrators of the Maguindanao massacre ", - "values": [ - "Extrajudicial executions", - "Human rights violations by state agents", - "Impunity" - ] - }, - { - "text": "Continue working to reduce existing inequality gaps regarding indigenous peoples", - "values": [ - "Indigenous peoples" - ] - }, - { - "text": "Pursue efforts to continue to make exemplary progress with regard to the effective abolition of sexual mutilation.", - "values": [ - "Rights of the Child", - "Torture and other CID treatment", - "Women's rights" - ] - }, - { - "text": "Take legal measures to provide appropriate facilities and support for children, particularly children with disabilities", - "values": [ - "Disabilities", - "Rights of the Child" - ] - }, - { - "text": "Abolish the death penalty and consider ratifying the Second Optional Protocol to ICCPR ", - "values": [ - "Death penalty", - "International instruments" - ] - }, - { - "text": "Continue proceedings to expedite the trials of detainees with all the guarantees and to improve the living conditions of the prison population", - "values": [ - "Detention" - ] - }, - { - "text": "Take all necessary social, education and legal measures towards the complete elimination of female genital mutilation ", - "values": [ - "Rights of the Child", - "Torture and other CID treatment", - "Women's rights" - ] - }, - { - "text": "Strengthen measures to ensure registration of all Roma in Serbia.", - "values": [ - "Minorities" - ] - }, - { - "text": "Pursue efforts to increase women's representation and leadership in the decision making bodies both at the political and economic levels", - "values": [ - "Women's rights" - ] - }, - { - "text": "Increase human and financial resources of the Office of the Ombudsperson for Equal Treatment ", - "values": [ - "National Human Rights Institution" - ] - }, - { - "text": "Better identify and assist trafficking victims and implement systematic training for government officials on human trafficking crimes, gender-based violence, and gender equality", - "values": [ - "Trafficking", - "Women's rights" - ] - }, - { - "text": "Consistent with the recommendation of the Committee against Torture, strengthen the fight against impunity and look into all allegations of torture and ill-treatment committed by law enforcement authorities and prosecute those responsible for such acts ", - "values": [ - "Human rights violations by state agents", - "Impunity", - "Torture and other CID treatment", - "Treaty bodies" - ] - }, - { - "text": "Amend its legislation on abortion", - "values": [ - "Women's rights" - ] - }, - { - "text": "Make greater efforts to implement national measures to ensure the reconciliation of work and family responsibilities in order to improve women\u2019s participation in the labour market", - "values": [ - "Women's rights" - ] - }, - { - "text": "Take measures to ensure compliance of the principle of same salary for same work, putting special attention that distinctions due to religion, ethnic or gender do not prevent the respect of this principle", - "values": [ - "Freedom of religion and belief", - "Labour", - "Minorities", - "Women's rights" - ] - }, - { - "text": "Ensure free access to information for the population of Guatemala through the effective protection of journalists and media as they are occasionally threatened by drug traffickers and organized crime", - "values": [ - "Freedom of the press", - "Public security" - ] - }, - { - "text": "Take effective measures to provide housing units in sufficient numbers for the disadvantaged and marginalized groups ", - "values": [ - "Right to housing" - ] - }, - { - "text": "Strengthen adaptation measures to curb the long term effects of climate change", - "values": [ - "Environment" - ] - }, - { - "text": "Provide equal access to education for all children regardless of their social and legal status", - "values": [ - "Rights of the Child" - ] - }, - { - "text": "Establish a national human rights institution that is guaranteed broad competences, as well as institutional and financial independence", - "values": [ - "National Human Rights Institution" - ] - }, - { - "text": "Combat trafficking in persons, especially in women and children, as well as prosecuting and investigating all perpetrators of these crimes", - "values": [ - "Rights of the Child", - "Trafficking", - "Women's rights" - ] - }, - { - "text": "Further strengthen the legal and policy frameworks for the protection of the rights of women, children, and persons with disabilities and elderly persons ", - "values": [ - "Disabilities", - "Rights of the Child", - "Women's rights" - ] - }, - { - "text": "Strengthen policies aimed at protecting children from trafficking and forced labour ", - "values": [ - "Rights of the Child" - ] - }, - { - "text": "Accede to the Optional Protocol to the Convention on the Rights of the Child on the sale of children, child prostitution and child pornography, the Convention on the Rights of Persons with Disabilities, the International Convention for the Protection of All Persons from Enforced Disappearance ", - "values": [ - "Disabilities", - "Enforced disappearances", - "International instruments", - "Rights of the Child", - "Trafficking" - ] - }, - { - "text": "Eliminate, juvenile executions and executions of persons for crimes that they committed when they were under the age of 18", - "values": [ - "Death penalty", - "Rights of the Child" - ] - }, - { - "text": "Adopt an overarching national action plan on human rights", - "values": [ - "General" - ] - }, - { - "text": "Step up its efforts for the rehabilitation of former child soldiers - in particular through enhanced cooperation with the international community - and adopt measures necessary for their rehabilitation in an appropriate environment.", - "values": [ - "International humanitarian law", - "Rights of the Child" - ] - }, - { - "text": "Take further steps to strengthen the rule of law and democratic governance", - "values": [ - "Justice" - ] - }, - { - "text": "Strengthen its human rights protection mechanisms for vulnerable groups and indigenous peoples", - "values": [ - "Indigenous peoples" - ] - }, - { - "text": "Become a party to the Second Optional Protocol to the International Convention on Civil and Political Rights", - "values": [ - "Death penalty", - "International instruments" - ] - }, - { - "text": "Continue carrying out the policy aimed at bringing legislation in line with its international human rights obligations, and improving judicial and penitentiary systems, as well as the application of laws in the area of the rights of national and religious minorities", - "values": [ - "Detention", - "Justice", - "Minorities" - ] - }, - { - "text": "Take steps to ensure that, both at federal and provincial level, there is no impunity for the crime of torture.", - "values": [ - "Impunity", - "Torture and other CID treatment" - ] - }, - { - "text": "Further strengthen driven policies in the area of health, in order to achieve the objective of universal access to health", - "values": [ - "Right to health" - ] - }, - { - "text": "Continue to guarantee freedom of expression creating additional conditions for its fulfilment", - "values": [ - "Freedom of opinion and expression" - ] - }, - { - "text": "Take further measures to facilitate the entry into the army and civil service of under-represented ethnic groups in order to better reflect the cultural and ethnic diversity of the Togolese society and enhance the reconciliation process ", - "values": [ - "Minorities" - ] - }, - { - "text": "Adopt and implement measures to provide for independent media free from any intimidation and suppression, in accordance with its international obligations ", - "values": [ - "Freedom of the press" - ] - }, - { - "text": "Focus efforts on successfully achieving improvements in the judicial system ", - "values": [ - "Justice" - ] - }, - { - "text": "Continue dissemination of and training on the Universal Declaration of Human Rights and other international human rights instruments ", - "values": [ - "Human rights education and training", - "International instruments" - ] - }, - { - "text": "Ensure that human rights defenders can carry out their legitimate activities without fear or undue impediment, obstruction, or legal or administrative harassment", - "values": [ - "Human rights defenders" - ] - }, - { - "text": "Sri Lanka will continue its traditional role of consensus builder and participate actively in the work of the Human Rights Council to make the Council a strong, effective and efficient body - capable of promoting and protecting the human rights and fundamental freedoms of all - and will continue to participate in the work of the Council in norm-setting in the field of human rights.", - "values": [ - "Other" - ] - }, - { - "text": "Actively pursue its cooperation with United Nations mechanisms and the international community to restore security and establish the rule of law", - "values": [ - "Justice", - "Public security" - ] - }, - { - "text": "Promptly accede to the Rome Statute of the International Criminal Court and implement it in national law ", - "values": [ - "International instruments", - "Justice" - ] - }, - { - "text": "Take necessary measures to ensure consultation and participation of indigenous peoples in the processes of the elaboration of public policies that is of interest to them", - "values": [ - "Indigenous peoples" - ] - }, - { - "text": "Abolish non-therapeutic sterilization of women and girls with disabilities ", - "values": [ - "Disabilities", - "Rights of the Child", - "Torture and other CID treatment", - "Women's rights" - ] - }, - { - "text": "Consider ratifying the International Convention for the Protection of All Persons from Enforced Disappearance and accept the competence of the relevant committee.", - "values": [ - "Enforced disappearances", - "International instruments" - ] - }, - { - "text": "Make efficient and independent investigations of allegations of torture and ill treatment at earliest with a view to bringing perpetrators to justice ", - "values": [ - "Torture and other CID treatment" - ] - }, - { - "text": "Recommended reinstituting the Office of the Government Plenipotentiary for the Equality of Men and Women or a similar governmental structure to serve as an effective mechanism at the highest possible political level for the promotion of gender equality and to coordinate the integration of gender perspective across all sectors.", - "values": [ - "Women's rights" - ] - }, - { - "text": "Increase the number and capacity of shelters for women who are victims of violence ", - "values": [ - "Women's rights" - ] - }, - { - "text": "Strengthen measures on combating discrimination against indigenous and migrant children and children with disabilities, as well as investigate all cases of ill-treatment of children by police officers and prison guards ", - "values": [ - "Disabilities", - "Human rights violations by state agents", - "Indigenous peoples", - "Migrants", - "Racial discrimination", - "Rights of the Child" - ] - }, - { - "text": "Implement the constitutional reforms in the elections of 2014 ", - "values": [ - "Elections" - ] - }, - { - "text": "Complete the judiciary reform program PRAJUST, in particular the reform of the criminal code as well as the Code of Criminal Procedure, and ensure that inquiry procedures are reviewed and improved and investigation practices accelerated", - "values": [ - "Justice" - ] - }, - { - "text": "Honour all obligations under articles 31 and 33 of the Convention relating to the Status of Refugees and ensure that the rights of all refugees and asylum-seekers are respected, providing them access to Australian refugee law ", - "values": [ - "Asylum-seekers - refugees", - "International instruments" - ] - }, - { - "text": "Strengthen technical and human capacity and the independence of the National Human Rights Commission and the Ombudsman, according to the Paris Principles", - "values": [ - "National Human Rights Institution" - ] - }, - { - "text": "Ratify CEDAW and revise relevant legislation in accordance with international standards to provide an efficient legislation for the best interests of women ", - "values": [ - "International instruments", - "Women's rights" - ] - }, - { - "text": "Continue its cooperation with the Office of the United Nations High Commissioner for Refugees and related agencies, in order to identify, repatriate and provide proper citizenship documents for the displaced population in the wake of tensions with Senegal and the expelling of citizens from both countries between 1989-1991", - "values": [ - "Asylum-seekers - refugees", - "Statelessness and the right to nationality", - "Technical assistance and cooperation" - ] - }, - { - "text": "Adopt penal legislation in order to hold those responsible for marital rape criminally responsible", - "values": [ - "Women's rights" - ] - }, - { - "text": "Adopt a law that prohibits discrimination on the basis of gender.", - "values": [ - "Women's rights" - ] - }, - { - "text": "Continue to implement its policies and programmes aimed at promoting universal education and developing a knowledge-based society for long-term sustainable development ", - "values": [ - "Right to education" - ] - }, - { - "text": "Continue its efforts to ensure that all religious communities are treated without any discrimination ", - "values": [ - "Freedom of religion and belief", - "Racial discrimination" - ] - }, - { - "text": "Declare a moratorium on executions with a view to abolishing the death penalty ", - "values": [ - "Death penalty" - ] - }, - { - "text": "Consider the creation of a Ministry responsible for acceleration of the implementation of the new National Human Rights Action Plan 2017-2021, developed in 2016", - "values": [ - "General" - ] - }, - { - "text": "Take institutional building measure and effective awareness raising to combat trafficking in persons ", - "values": [ - "Human rights education and training", - "Trafficking" - ] - }, - { - "text": "Step up capacity-building efforts aimed at achieving the implementation of its human rights obligations", - "values": [ - "International instruments" - ] - }, - { - "text": "Introduce into the life of the people of Maldives only that which is in keeping with their traditions and customs and their public morals ", - "values": [ - "Other" - ] - }, - { - "text": "Eliminate the practice of 'arraigo' at the Federal and State level and ensure that all detentions are carried out legally and recorded in a national database to which all of the parties will have access", - "values": [ - "Detention", - "Justice" - ] - }, - { - "text": "Take effective measures to prevent and combat trafficking in women and children and to provide an adequate legal framework to protect victims and prosecute traffickers", - "values": [ - "Rights of the Child", - "Trafficking", - "Women's rights" - ] - }, - { - "text": "Adopt measures to shed light on a number of existing enforced disappearances.", - "values": [ - "Enforced disappearances" - ] - }, - { - "text": "Take steps to improve prison conditions and reduce overcrowding, as well as to reduce the period of pre-trial detention", - "values": [ - "Detention" - ] - }, - { - "text": "Intensify efforts in implementing its national preventive strategy against gender-based violence", - "values": [ - "Rights of the Child", - "Women's rights" - ] - }, - { - "text": "Continue implementing the legislation against all forms of trafficking, and formulate a specific legislation to combat human trafficking, especially of women and children", - "values": [ - "Rights of the Child", - "Trafficking", - "Women's rights" - ] - }, - { - "text": "Improve prison conditions, including addressing overcrowding, investigate all cases of torture and ill-treatment by prison staff in an impartial manner and prosecute those responsible", - "values": [ - "Detention", - "Human rights violations by state agents", - "Torture and other CID treatment" - ] - }, - { - "text": "Continue with its plans to strengthen child protection and welfare activities, including the introduction of legislation for this purpose", - "values": [ - "Rights of the Child" - ] - }, - { - "text": "Continue its policy of integrating human rights in the Congolese education system", - "values": [ - "Human rights education and training" - ] - }, - { - "text": "Conduct an analysis of the effects of the crisis on human rights, especially on socioeconomic rights, with particular focus on the situation of vulnerable groups such as refugees, migrants, Roma, children, women and elderly people ", - "values": [ - "Asylum-seekers - refugees", - "ESC rights - general", - "Migrants", - "Minorities", - "Rights of the Child", - "Women's rights" - ] - }, - { - "text": "Prevent and combat trafficking in human beings, by protecting victims and ensuring their access to medical, social, legal and counselling services, by ensuring adequate conditions for the victims to make complaints, and by conducting investigations and punishing those responsible", - "values": [ - "Trafficking" - ] - }, - { - "text": "Consider lifting reservations to articles 14, 20 and 21 of CRC and articles 9 and 29 of CEDAW ", - "values": [ - "International instruments", - "Rights of the Child", - "Women's rights" - ] - }, - { - "text": "Amend the citizenship laws to allow citizenship through either parent", - "values": [ - "Statelessness and the right to nationality", - "Women's rights" - ] - }, - { - "text": "Strictly implement existing legislation against child labour and expedite the approval of the bill on the prohibition of child labour, in line with the recommendation made by the Committee on Economic, Social and Cultural Rights", - "values": [ - "Labour", - "Rights of the Child", - "Treaty bodies" - ] - }, - { - "text": "Continue advancing towards an urgent and lasting peaceful solution to the crisis, with the preservation of its territorial integrity, and with the assistance and international solidarity, that the country requires", - "values": [ - "Public security", - "Technical assistance and cooperation" - ] - }, - { - "text": "Build a true dialogue with civil society and engage NGOs in the decision-making process at all levels", - "values": [ - "Civil society" - ] - }, - { - "text": "Take all the necessary legal and policy measures to prevent children and adolescents, from being subjected to labour exploitation and the worst forms of child labour, such as servitude, slavery, prostitution and trafficking", - "values": [ - "Labour", - "Rights of the Child", - "Trafficking" - ] - }, - { - "text": "Expand the programme to prevent the spread of HIV-AIDS, in particular in remote areas", - "values": [ - "HIV - Aids" - ] - }, - { - "text": "Ensure the freedom of persons to choose a religion or belief including the right to change one's current religion or belief.", - "values": [ - "Freedom of religion and belief" - ] - }, - { - "text": "Continue to strengthen the role of the national council for women and continue working to eradicate violence against women", - "values": [ - "Women's rights" - ] - }, - { - "text": "Bring its legislation into conformity with its commitment to equality and non-discrimination, including by prohibiting discrimination based on sexual orientation", - "values": [ - "Sexual Orientation and Gender Identity" - ] - }, - { - "text": "Withdraw its reservations to the Convention on the Elimination of All Forms of Discrimination against Women", - "values": [ - "International instruments", - "Women's rights" - ] - }, - { - "text": "Further develop laws and practices with regard to legal proceedings and identification of victims of human trafficking", - "values": [ - "Trafficking" - ] - }, - { - "text": "To the Faroe Islands: Establish a National Human Rights Institution covering the Faroe Islands according to recommendations made by the United Nations General Assembly [1994] and the Committee on Economic, Social and Cultural Rights [2013]", - "values": [ - "National Human Rights Institution", - "Treaty bodies" - ] - }, - { - "text": "Better protect witnesses giving evidence and human rights defenders", - "values": [ - "Human rights defenders" - ] - }, - { - "text": "Extend an early invitation to the UN Special Rapporteur on Torture", - "values": [ - "Special procedures", - "Torture and other CID treatment" - ] - }, - { - "text": "Sign and ratify the Second Optional Protocol to the International Covenant on Civil and Political Rights, to definitively abolish the death penalty in the country", - "values": [ - "Death penalty", - "International instruments" - ] - }, - { - "text": "Ratify those international human rights instruments to which it is not yet a party, such as the Second Optional Protocol to the Covenant on Civil and Political Rights, the International Convention for the Protection of All Persons from Enforced Disappearance and the Optional Protocol to the Convention on the Rights of the Child of 1989 ", - "values": [ - "Death penalty", - "Enforced disappearances", - "International instruments", - "Rights of the Child" - ] - }, - { - "text": "Fully implement the 2010 legislation on combating human trafficking and put an end to the impunity of those responsible for this act", - "values": [ - "Impunity", - "Trafficking" - ] - }, - { - "text": "Withdraw the territorial exclusion for Greenland and the Faroe Islands to the Optional Protocol to the Convention on the Rights of the Child on the sale of children, child prostitution and child pornography", - "values": [ - "International instruments", - "Rights of the Child", - "Trafficking" - ] - }, - { - "text": "Legally define the limit between freedom of expression and hate speech, and take measures to ensure that minorities are represented in the social and political spheres", - "values": [ - "Freedom of opinion and expression", - "Minorities" - ] - }, - { - "text": "Implement the recommendations of the Committee on the Elimination of Racial Discrimination with regard to the conditions for family reunification of spouses ", - "values": [ - "Treaty bodies", - "Women's rights" - ] - }, - { - "text": "Significantly increase spending for potable water supply and sanitation projects, especially in rural areas, up to a value close to 0.5. per cent of gross domestic product", - "values": [ - "Right to water and sanitation" - ] - }, - { - "text": "Redouble efforts to eliminate discrimination against women and apply the Convention on the Elimination of All Forms of Discrimination against Women fully.", - "values": [ - "International instruments", - "Women's rights" - ] - }, - { - "text": "Guarantee the right of everyone to equality before the law, equal protection of the law, and non-discrimination, in conformity with the international commitments undertaken by Belize", - "values": [ - "Justice" - ] - }, - { - "text": "End the violation of the rights of indigenous peoples ", - "values": [ - "Indigenous peoples" - ] - }, - { - "text": "Undertake appropriate awareness-raising efforts, and strengthen the measures to guarantee the human rights of the residents of areas affected by Ebola virus outbreak with assistance from the international community", - "values": [ - "Human rights education and training", - "Right to health", - "Technical assistance and cooperation" - ] - }, - { - "text": "Continue to promote and protect migrants and their rights, in particular while countering terrorism", - "values": [ - "Counter-terrorism", - "Migrants" - ] - }, - { - "text": "Include provisions in domestic legislation to prohibit discrimination in all areas, including especially discrimination based on national origin, ethnicity, language or linguistic groups, adopt necessary civil and administrative measures to guarantee the elimination of all forms of discrimination against all persons, especially those from ethnic or linguistic groups, who constitute more than one third of the population of Latvia ", - "values": [ - "Racial discrimination" - ] - }, - { - "text": "Prevent cruel, inhuman and degrading treatment in all places of detention, fight against impunity of perpetrators of such acts and recognize the competence of the Committee against Torture and Other Cruel, Inhuman or Degrading Treatment or Punishment", - "values": [ - "Detention", - "Impunity", - "Torture and other CID treatment", - "Treaty bodies" - ] - }, - { - "text": "Speed efforts to ratify the International Covenant on Civil and Political Rights and the International Covenant on Economic, Social and Cultural Rights ", - "values": [ - "CP rights - general", - "ESC rights - general", - "International instruments" - ] - }, - { - "text": "Step up necessary measures to eradicate harmful traditional practices, especially those affecting girls, and those that are harmful to the physical and psychological well-being of children in general", - "values": [ - "Rights of the Child", - "Torture and other CID treatment", - "Women's rights" - ] - }, - { - "text": "Continue to strengthen policies on ensuring the opportunity to enrol in education for children and young people with disabilities", - "values": [ - "Disabilities", - "Right to education", - "Rights of the Child" - ] - }, - { - "text": "Continue to call upon the international community to provide financial and technical support in order to strengthen the enjoyment of human rights by its people and to achieve the Millennium Development Goals", - "values": [ - "Development" - ] - }, - { - "text": "Intensify its efforts to eradicate poverty, to improve its health infrastructure, including access to health services especially for vulnerable groups like women, children, the elderly, the disabled and ethnic minorities, and in fostering civil society participation", - "values": [ - "Poverty", - "Right to health" - ] - }, - { - "text": "Take steps to revise the legislation on immigration by introducing time limits for the detention of migrants and asylum seekers, as well as considering revising the changes introduced to visas for foreign spouses based on income criteria", - "values": [ - "Asylum-seekers - refugees", - "Migrants" - ] - }, - { - "text": "Consider ratifying the third Optional Protocol to the Convention on the Rights of the Child (OP-CRC-IC) ", - "values": [ - "International instruments", - "Rights of the Child" - ] - }, - { - "text": "Ratify the International Convention on the Protection of the Rights of All Migrant Workers and Members of Their Families (ICRMW), the ICCPR and ICESCR, as well as their Optional Protocols", - "values": [ - "CP rights - general", - "Death penalty", - "ESC rights - general", - "International instruments", - "Labour", - "Migrants" - ] - }, - { - "text": "Promptly investigate all allegations that military personnel and other officials have committed serious crimes and violations of human rights including extrajudicial killings, recruitment of child soldiers, torture, sexual violence and forced labour ", - "values": [ - "Extrajudicial executions", - "Human rights violations by state agents", - "International humanitarian law", - "Labour", - "Rights of the Child", - "Torture and other CID treatment" - ] - }, - { - "text": "Step up the ratification procedure of all the international instruments submitted to Parliament", - "values": [ - "International instruments" - ] - }, - { - "text": "Strengthen efforts in the areas of civil and political freedoms, including freedom of expression and the press and freedom of religion.", - "values": [ - "Freedom of opinion and expression", - "Freedom of religion and belief" - ] - }, - { - "text": "Ratify and fully align its national legislation with the Rome Statute of the International Criminal Court, as previously recommended", - "values": [ - "International instruments", - "Justice" - ] - }, - { - "text": "Consider the possibility of ratifying the Optional Protocols to ICCPR, CEDAW, CRC, CRPD and CED ", - "values": [ - "International instruments" - ] - }, - { - "text": "Take concrete measures to improve victim assistance, including health and psychosocial help, to victims of sexual violence and rape, also by providing free medical certificates to rape survivors, since this for most victims unaffordable document is deemed crucial in the course of any pursued investigations", - "values": [ - "Right to health", - "Rights of the Child", - "Women's rights" - ] - }, - { - "text": "Consider signing and ratifying the CPED and accept the competence of its Committee", - "values": [ - "Enforced disappearances", - "International instruments", - "Treaty bodies" - ] - }, - { - "text": "Reverse the policy barring pregnant girls from attending schools and sitting state examinations, and encourage girls to return to school after childbirth", - "values": [ - "Right to education", - "Rights of the Child", - "Women's rights" - ] - }, - { - "text": "Enshrine in legislation the right of access of detainees to a lawyer immediately after detention and not after 48 hours. ", - "values": [ - "Detention" - ] - }, - { - "text": "Incorporate both CEDAW and ICERD in the Human Rights Act ", - "values": [ - "International instruments", - "Racial discrimination", - "Women's rights" - ] - }, - { - "text": "Continue with the combat against all discrimination, in particular that regarding indigenous peoples through the implementation of the 2012 Anti-Discrimination Law ", - "values": [ - "Indigenous peoples", - "Racial discrimination" - ] - }, - { - "text": "Strengthen the legislative provisions to promote unity and national reconciliation and continue to assist victims of genocide", - "values": [ - "Justice" - ] - }, - { - "text": "Ensure detainees have prompt access to a lawyer, doctor and family members from the time that they are taken into custody, and consider the establishment of an independent health service to conduct examinations of detainees upon arrest and release ", - "values": [ - "Detention", - "Justice" - ] - }, - { - "text": "Implement without delay the recommendations of treaty bodies and special procedures of the Human Rights Council", - "values": [ - "Special procedures", - "Treaty bodies" - ] - }, - { - "text": "Ensure full respect for women's rights", - "values": [ - "Women's rights" - ] - }, - { - "text": "Continue the fight against police violence, notably through the implementation of the 1994 Evidence Act that allows for the video surveillance of police custody ", - "values": [ - "Detention", - "Human rights violations by state agents" - ] - }, - { - "text": "Incorporate the international instruments it acceded to into domestic legislation", - "values": [ - "International instruments" - ] - }, - { - "text": "Continue progress towards passage of subordinate legislation and full implementation of the Police Service Act 2009 and the Police Powers and Duties Act 2009 ", - "values": [ - "Justice" - ] - }, - { - "text": "Increase its efforts and adopt a new national plan of action for children, ensuring specialized training for teachers and persons in the field of education of children with disabilities", - "values": [ - "Disabilities", - "Rights of the Child" - ] - }, - { - "text": "Continue efforts for the protection of the rights of people affected by HIV-AIDS, including through the approval of the bill prepared by the Government for the protection of persons living with HIV-AIDS, which is now under consideration by the Council of Ministers", - "values": [ - "HIV - Aids" - ] - }, - { - "text": "Ensure the rights of victims to truth, justice, reparation and non repetition ", - "values": [ - "Justice" - ] - }, - { - "text": "Continue to raise awareness of the needs of the Roma population, in particular children, and establish an adequate system that provides for their social and educational inclusion", - "values": [ - "Minorities", - "Rights of the Child" - ] - }, - { - "text": "Adhere to the United Nations Declaration on the Rights of Indigenous Peoples", - "values": [ - "Indigenous peoples", - "International instruments" - ] - }, - { - "text": "Support public education campaigns to combat hate speech, discrimination and violence related to sexual orientation and gender identity, as well as social stigmatization of LGBT persons", - "values": [ - "Human rights education and training", - "Sexual Orientation and Gender Identity" - ] - }, - { - "text": "Mobilise the efforts of the international community to provide effective assistance to Nepal in accordance with national priorities", - "values": [ - "Technical assistance and cooperation" - ] - }, - { - "text": "Adopt relevant measures and policies to eliminate discrimination of more vulnerable groups of children including indigenous children, children from rural areas, as well as children with disabilities", - "values": [ - "Disabilities", - "Indigenous peoples", - "Racial discrimination", - "Rights of the Child" - ] - }, - { - "text": "Make further efforts to respond to communications and questionnaires submitted by the Special Procedures mandate holders ", - "values": [ - "Special procedures" - ] - }, - { - "text": "Implement the Rome Statute of the International Criminal Court into domestic law, as recommended previously", - "values": [ - "International instruments", - "Justice", - "UPR process" - ] - }, - { - "text": "Abolish the death penalty", - "values": [ - "Disabilities" - ] - }, - { - "text": "Consider ratifying as soon as possible Convention No. 169 of the International Labour Organization", - "values": [ - "Indigenous peoples", - "International instruments" - ] - }, - { - "text": "Decriminalize homosexuality and abrogate the law which prohibits sexual relations between people of the same sex ", - "values": [ - "Sexual Orientation and Gender Identity" - ] - }, - { - "text": "Take action to tackle the backlog of prisoners who have been detained without trial or beyond the end of their sentence", - "values": [ - "Detention" - ] - }, - { - "text": "Accede to the Optional Protocol to the Convention against Torture and Other Cruel, Inhuman or Degrading Treatment or Punishment", - "values": [ - "International instruments", - "Torture and other CID treatment", - "Treaty bodies" - ] - }, - { - "text": "Abolish all discriminatory implications of the Indian Act and grant women and men the same rights with regard to their aboriginal status ", - "values": [ - "Indigenous peoples", - "Racial discrimination", - "Women's rights" - ] - }, - { - "text": "Bring the Criminal Code provisions on sexual violence into line with international standards, ensure accountability for conflict-related sexual crimes and provide victims with adequate support and rehabilitation", - "values": [ - "International humanitarian law", - "Women's rights" - ] - }, - { - "text": "Ensure that adequate measures provided for in the law on lustration comply with Polish obligations under fundamental international human rights instruments", - "values": [ - "International instruments", - "Justice" - ] - }, - { - "text": "Promote a legal framework that provides legal certainty in property matters, in particular land ownership and protection against forced evictions ", - "values": [ - "Right to land" - ] - }, - { - "text": "Ratify ILO Convention 169 concerning Indigenous and Tribal Peoples in Independent Countries", - "values": [ - "Indigenous peoples", - "International instruments" - ] - }, - { - "text": "Accede, as a priority, to the International Convention on the Protection of the Rights of All Migrant Workers and Members of Their Families as well as to CRPD and to the two Optional Protocols to CRC ", - "values": [ - "Disabilities", - "International instruments", - "Labour", - "Migrants", - "Rights of the Child" - ] - }, - { - "text": "Strengthen efforts to promote and protect the rights of people living in rural areas and the situation of rural migrant workers", - "values": [ - "Labour", - "Migrants" - ] - }, - { - "text": "Exert more efforts to promote and protect the rights of Muslim minorities ", - "values": [ - "Freedom of religion and belief", - "Minorities" - ] - }, - { - "text": "(1) Improving coverage in rural and remote areas.(2) Expanding protection programmes to cover third parties involved in criminal proceedings. (3) Setting up the data system and designing a means of making the State information systems on human rights violations interoperable. (4) Increasing technical investigative capacity. (5) Boosting confidence in the judiciary.", - "values": [ - "Justice" - ] - }, - { - "text": "Reinforce actions for the protection of child victims of trafficking and sexual exploitation", - "values": [ - "Rights of the Child", - "Trafficking" - ] - }, - { - "text": "Intensify efforts aimed at the adoption of the draft law on ensuring equal rights and equal opportunities for men and women ", - "values": [ - "Women's rights" - ] - }, - { - "text": "Ratify the international instruments not yet ratified ", - "values": [ - "International instruments" - ] - }, - { - "text": "Continue expanding its human rights education programmes, in an inclusive and permanent manner and at all levels", - "values": [ - "Human rights education and training" - ] - }, - { - "text": "Consider and adequately address certain legislative and administrative measures which could negatively affect the legitimate activities of NGOs ", - "values": [ - "Civil society", - "Freedom of association and peaceful assembly" - ] - }, - { - "text": "Continue its laudable efforts to give shelter to refugees and, through the involvement of UNHCR, to provide an effective administrative system for their registration and protection", - "values": [ - "Asylum-seekers - refugees", - "Technical assistance and cooperation" - ] - }, - { - "text": "Reform existing laws that can be used to discriminate against lesbian, gay, bisexual, and transgender persons, including the provision of "unnatural crime" laws prohibiting "carnal intercourse against the order of nature"", - "values": [ - "Sexual Orientation and Gender Identity" - ] - }, - { - "text": "Consider incorporating the United Nations Rules for the Treatment of Women Prisoners and Non-custodial Measures for Women Offenders, otherwise known as the "Bangkok Rules", as part of its programme to enhance the conditions of women detainees in prisons ", - "values": [ - "Detention", - "Women's rights" - ] - }, - { - "text": "Guarantee freedom of religion or belief by implementing existing laws to better protect individuals belonging to minority groups from hate speech, incitement to religious violence, discrimination on religious grounds and forcible conversions", - "values": [ - "Freedom of religion and belief", - "Minorities", - "Racial discrimination" - ] - }, - { - "text": "Give effective implementation to the Fiji National Gender Policy and the Women's Plan of Action for 2010-2019, and renew efforts in fighting all cases of discrimination and violence against women", - "values": [ - "Women's rights" - ] - }, - { - "text": "Implement policies to comprehensively address violence, labour, political and access to justice problems faced by women", - "values": [ - "Women's rights" - ] - }, - { - "text": "Consider continuing to strengthen the rights of women, particularly in the family setting", - "values": [ - "Women's rights" - ] - }, - { - "text": "Fully cooperate with United Nations mechanisms on the promotion and protection of human rights, as well as with the United Nations High Commissioner for Human Rights ", - "values": [ - "Technical assistance and cooperation" - ] - }, - { - "text": "Continue its gender-sensitive campaigns to create a more nondiscriminatory environment", - "values": [ - "Women's rights" - ] - }, - { - "text": "Step up efforts to facilitate administrative procedures so that all children are registered at birth", - "values": [ - "Rights of the Child", - "Statelessness and the right to nationality" - ] - }, - { - "text": "Continue the positive trend of Roma integration by ensuring teachers are adequately trained in anti-discrimination measures, particularly in special needs education", - "values": [ - "Human rights education and training", - "Minorities", - "Racial discrimination", - "Right to education" - ] - }, - { - "text": "Adopt a National Action Plan on Security Council resolution 1325 (2000) on Women, Peace and Security", - "values": [ - "Women's rights" - ] - }, - { - "text": "Overcome, with the technical and financial assistance of the international community, the constraints and challenges particularly in the area of education, health and employment.", - "values": [ - "Development", - "Right to education", - "Right to health", - "Technical assistance and cooperation" - ] - }, - { - "text": "Continue providing the full exercise of women and children rights within the framework of the Plan of Action on Family Institution and Women ", - "values": [ - "Rights of the Child", - "Women's rights" - ] - }, - { - "text": "Enhance its cooperation with the mechanisms of the Human Rights Council and OHCHR ", - "values": [ - "Special procedures", - "Technical assistance and cooperation", - "UPR process" - ] - }, - { - "text": "Continue its efforts in the area of the promotion of gender equality and of the health of the mother and the girl child.", - "values": [ - "Right to health", - "Rights of the Child", - "Women's rights" - ] - }, - { - "text": "Enact legislation to ensure that imprisonment is only used as a last resort when sentencing all juvenile offenders and provide systematic resocialisation support ", - "values": [ - "Detention", - "Justice", - "Rights of the Child" - ] - }, - { - "text": "Give the Tadamoun national agency the mandate to identify any acts of slavery, propose and implement anti-slavery programmes", - "values": [ - "Other" - ] - }, - { - "text": "Adopt a law expressly providing that racist motivation should be considered as an aggravating circumstance with a view to condemning the authors of such infractions ", - "values": [ - "Racial discrimination" - ] - }, - { - "text": "Continue paying attention to promoting and protecting the human rights of vulnerable groups, especially improving the situation of indigenous peoples.", - "values": [ - "Indigenous peoples" - ] - }, - { - "text": "Make sure that there are no delays in submitting answers to the thematic questionnaires of the special procedures of the Human Rights Council", - "values": [ - "Special procedures" - ] - }, - { - "text": "Strengthen policies and programmes to combat poverty and social inequalities ", - "values": [ - "Development", - "Poverty" - ] - }, - { - "text": "Continue promoting a gender perspective", - "values": [ - "Women's rights" - ] - }, - { - "text": "Continue to address the issue of street children by adopting a comprehensive national strategy to provide these children with official documents and adequate assistance, including recovery and social reintegration services", - "values": [ - "Rights of the Child" - ] - }, - { - "text": "Confirm its commitment to non-discrimination by decriminalizing sexual relations between consenting adults of the same sex and by repealing the discriminatory provisions against LGBT persons ", - "values": [ - "Sexual Orientation and Gender Identity" - ] - }, - { - "text": "Take additional measures to improve and widen the health coverage for employees in public and private institutions and companies as well as retirees having worked for those entities and their dependents", - "values": [ - "Right to health" - ] - }, - { - "text": "Withdraw reservations to CEDAW and its optional protocol and fully implement national policies and laws on the protection of women ", - "values": [ - "International instruments", - "Women's rights" - ] - }, - { - "text": "Intensify its fight against violence against women and girls and continue the fight against stereotypes", - "values": [ - "Rights of the Child", - "Women's rights" - ] - }, - { - "text": "Intensify its fight against poverty and strengthen access to education for all Djiboutian while eliminating gender disparities in this area ", - "values": [ - "Poverty", - "Right to education", - "Women's rights" - ] - }, - { - "text": "Take steps to fully implement the National Strategic Framework for Ending Child Marriage and allocate adequate resources to the Ending Child Marriage Unit within the Ministry of Gender, Children and Social Protection", - "values": [ - "Rights of the Child" - ] - }, - { - "text": "Take specific measures to ensure effective investigation of acts of violence against LGBT persons and hold the perpetrators to account ", - "values": [ - "Sexual Orientation and Gender Identity" - ] - }, - { - "text": "Increase the number of labour inspectors, especially in the rural provinces", - "values": [ - "Labour" - ] - }, - { - "text": "Submit all the reports due under the treaty bodies ", - "values": [ - "Treaty bodies" - ] - }, - { - "text": "Expedite the deliberation, and follow by enactment, of the law on the establishment of a national human rights institution in accordance with the Paris Principles", - "values": [ - "National Human Rights Institution" - ] - }, - { - "text": "Ratify the ICRMW, as well as the International Convention for the Protection of All Persons from Enforced Disappearance.", - "values": [ - "Enforced disappearances", - "International instruments", - "Labour", - "Migrants" - ] - }, - { - "text": "Define more clearly the regulations of the National Security Law", - "values": [ - "Public security" - ] - }, - { - "text": "Ratify those conventions to which it is not yet a party, and accelerate the incorporation in its domestic legal order of the provisions of those conventions to which it is already a party to ", - "values": [ - "International instruments" - ] - }, - { - "text": "Ratify the the Optional Protocol to the Convention against Torture and establish an effective National Preventive Mechanism. In the meantime, unimpeded access to all places of detention should be granted to independent civil society organisations working to prevent torture in Tajikistan", - "values": [ - "Detention", - "International instruments", - "Torture and other CID treatment" - ] - }, - { - "text": "Persevere in its efforts to promote the rights of education.", - "values": [ - "Right to education" - ] - }, - { - "text": "Make efforts as set out in the Sustainable Development Goals, especially those related to poverty, education, health, agriculture and nutrition", - "values": [ - "Development", - "Poverty", - "Right to education", - "Right to health" - ] - }, - { - "text": "In compliance with its international obligations, duly carry out, without delay, in an independent manner and respecting fair trial guarantees, investigations into the human rights violations, prosecute perpetrators, and compensate victims, in order to end impunity for crimes committed as a result of the coup d'etat", - "values": [ - "Impunity" - ] - }, - { - "text": "Accede to the Optional Protocol to CAT, establish its national preventive mechanism accordingly", - "values": [ - "Detention", - "International instruments", - "Torture and other CID treatment" - ] - }, - { - "text": "Continue to implement measures to eradicate the legacy of and the contemporary forms of slavery", - "values": [ - "Other" - ] - }, - { - "text": "Guarantee the full independence of the judiciary in accordance with Basic Principles on the Independence of the Judiciary as laid down by the General Assembly in its resolution 40-146, and establish an independent monitoring mechanism of court proceeding in order to enhance the independence of the judiciary.", - "values": [ - "Justice" - ] - }, - { - "text": "Adopt measures to ensure that Dominicans of foreign descent keep their Dominican nationality, avoiding possible cases of statelessness ", - "values": [ - "Minorities", - "Statelessness and the right to nationality" - ] - }, - { - "text": "Ratify the third Optional Protocol to the Convention on the Rights of Child on a communications procedure", - "values": [ - "International instruments", - "Rights of the Child" - ] - }, - { - "text": "Fast-track the process to sign and ratify international treaties related to the African Charter on Human and Peoples' Rights among others", - "values": [ - "International instruments" - ] - }, - { - "text": "Develop the necessary initiatives in order to prevent and combat any school segregation of Gypsy students", - "values": [ - "Minorities", - "Right to education" - ] - }, - { - "text": "Work on strengthening the implementation, monitoring and enforcement of its existing legal framework protecting the equality of women, particularly in the area of employment, in order to achieve a successful reduction in the wage gap between men and women ", - "values": [ - "Women's rights" - ] - }, - { - "text": "Improve access to anti-retroviral treatment for vulnerable groups, including women.", - "values": [ - "HIV - Aids", - "Women's rights" - ] - }, - { - "text": "Take measures to reinforce protections for freedom of expression in practice, including guaranteeing freedom of the press and Internet freedom", - "values": [ - "Freedom of opinion and expression", - "Freedom of the press" - ] - }, - { - "text": "That the protections guaranteed by the Constitution be implemented, that a safe and enabling environment for civil society be created in law and practice", - "values": [ - "Civil society" - ] - }, - { - "text": "Repeal article 534 of the Penal Code", - "values": [ - "Sexual Orientation and Gender Identity" - ] - }, - { - "text": "Continue the efforts to combat poverty and ensure sustainable development, and fully implement projected reform programmes and the roadmap for political transformation ", - "values": [ - "Development", - "Poverty" - ] - }, - { - "text": "Strengthen the capacity of judicial administrators.", - "values": [ - "Justice" - ] - }, - { - "text": "Take the opportunity of ratifying the Convention on the Rights of Persons with Disabilities to improve social security and public services for persons with disabilities", - "values": [ - "Disabilities", - "International instruments" - ] - }, - { - "text": "Continue cooperating with the United Nations human rights mechanisms ", - "values": [ - "Special procedures", - "Treaty bodies", - "UPR process" - ] - }, - { - "text": "Sustain the achievements in reducing child and infant mortality", - "values": [ - "Right to health", - "Rights of the Child" - ] - }, - { - "text": "Take the necessary measures to avoid the return of refugee and asylum-seeker children who have been recruited or involved in hostilities ", - "values": [ - "Asylum-seekers - refugees", - "Rights of the Child" - ] - }, - { - "text": "Take additional serious measures to eliminate race enmity on the ground, which leads to hate crimes", - "values": [ - "Racial discrimination" - ] - }, - { - "text": "Pay specific attention to staff members' education and human rights training of personnel of law-enforcement agencies, courts and investigating authorities ", - "values": [ - "Human rights education and training" - ] - }, - { - "text": "Extend a standing invitation to the UN human rights Special Procedures so that they can visit the country and assist the country within its human rights reforms ", - "values": [ - "Special procedures" - ] - }, - { - "text": "Implement article 3 of the Optional Protocol to the Convention against Torture and other Cruel, Inhuman or Degrading Treatment or Punishment (OP-CAT) and immediately establish an independent national mechanism for the prevention of torture with the mandate to visit all places of detention", - "values": [ - "Detention", - "International instruments", - "Torture and other CID treatment" - ] - }, - { - "text": "Ratify the International Convention on the Protection of the Rights of All Migrant Workers and Members of their Families ", - "values": [ - "International instruments", - "Labour", - "Migrants" - ] - }, - { - "text": "Ensure the functioning of the Gender Equality and Equal Treatment Commissioner by providing sufficient resources for this institution", - "values": [ - "Women's rights" - ] - }, - { - "text": "Argentina reaffirms its commitment to continue working on bringing the United Nations Standard Minimum Rules for the Treatment of Prisoners into line with the norms of international human rights law", - "values": [ - "Detention", - "International instruments" - ] - }, - { - "text": "Complete as soon as possible the necessary internal process to appoint the new Ombudsman", - "values": [ - "National Human Rights Institution" - ] - }, - { - "text": "Extend a standing invitation to the Human Rights Council's special procedures", - "values": [ - "Special procedures" - ] - }, - { - "text": "Establish mechanisms for consultation with indigenous peoples to adopt policies and legislation that promote their rights", - "values": [ - "Indigenous peoples" - ] - }, - { - "text": "Provide the necessary assistance to evicted persons, especially members of vulnerable groups, including women, children and the elderly", - "values": [ - "Right to housing", - "Rights of the Child", - "Women's rights" - ] - }, - { - "text": "Establish immediate means of redress and protection of ethnic religious minorities and migrants, in particular Muslims ", - "values": [ - "Freedom of religion and belief", - "Migrants", - "Minorities" - ] - }, - { - "text": "Improve, in cooperation with relevant stakeholders, the living conditions and safety situation of internally displaced persons by providing access to humanitarian assistance, while ensuring the security of humanitarian workers, and strengthen its protection of women and girls from sexual violence in the camps of the internally displaced", - "values": [ - "Internally displaced persons", - "Rights of the Child", - "Women's rights" - ] - }, - { - "text": "Intensify programmes aimed at fighting criminality and ensuring respect for human rights", - "values": [ - "Public security" - ] - }, - { - "text": "Introduce a de facto moratorium on capital executions", - "values": [ - "Death penalty" - ] - }, - { - "text": "Advance the efforts made to facilitate equitable access to justice for all, especially the poor and marginalized", - "values": [ - "Justice", - "Poverty" - ] - }, - { - "text": "Continue promoting its successful cultural policies that have far-reaching social content, stimulate participation by the popular sectors of the population and extend culture to all as a mechanism to combat exclusion and poverty", - "values": [ - "ESC rights - general", - "Poverty" - ] - }, - { - "text": "Strengthen the preventive measures aimed at combating the trafficking in persons", - "values": [ - "Trafficking" - ] - }, - { - "text": "Ratify the International Convention for the Protection of All Persons from Enforced Disappearance (CED), sign and ratify the Optional Protocol to the Convention against Torture and Other Cruel, inhuman, or Degrading Treatment or Punishment (OP-CAT) and establish a national independent mechanism to inspect detention places ", - "values": [ - "Detention", - "Enforced disappearances", - "International instruments", - "Torture and other CID treatment" - ] - }, - { - "text": "Guarantee the efficient implementation of the Justice and Peace Law, taking into account the clarifications given by the Constitutional Court.", - "values": [ - "Justice" - ] - }, - { - "text": "Ensure respect for the principle of non-discrimination and adopt comprehensive anti-discrimination legislation", - "values": [ - "Other" - ] - }, - { - "text": "Increase its efforts, as a matter of urgency, in addressing high infant and maternal mortality rates, including providing an access to sexual and reproductive health information ", - "values": [ - "Right to health", - "Rights of the Child", - "Women's rights" - ] - }, - { - "text": "Put an end to discriminatory practices against Roma children, in particular the infringement of their right to education, segregation and forced placement in schools of children with developmental delays", - "values": [ - "Disabilities", - "Minorities", - "Racial discrimination", - "Right to education", - "Rights of the Child" - ] - }, - { - "text": "Put an end to massive and indiscriminate detentions and proceed as soon as possible to free prisoners of conscience and people who have been arbitrarily arrested, and end the use of torture and ill-treatments", - "values": [ - "Detention", - "Freedom of religion and belief", - "Torture and other CID treatment" - ] - }, - { - "text": "Enact specific legislation to provide appropriate remedies for victims of racial discrimination, in particular, relating to the dissemination of ideas based on notions of racial superiority, racial hatred, incitement to racial discrimination and violent acts targeting indigenous peoples and People of African Descent in Guatemala", - "values": [ - "Indigenous peoples", - "Minorities", - "Racial discrimination" - ] - }, - { - "text": "Finalize the ongoing judicial reforms, in particular on the Criminal Code", - "values": [ - "Justice" - ] - }, - { - "text": "Respect the legitimate rights of all its citizens to freedom of assembly and expression, and maintain its commitment to achieving concrete political reform based on respect for the legitimate rights and aspirations of all its citizens ", - "values": [ - "Freedom of association and peaceful assembly", - "Freedom of opinion and expression" - ] - }, - { - "text": "Repeal the law on education, which grossly violates the legal rights of linguistic minorities to be educated in their mother tongue", - "values": [ - "Minorities", - "Right to education" - ] - }, - { - "text": "Ensure that family reunification of refugees and migrants are respected in the asylum process", - "values": [ - "Asylum-seekers - refugees", - "Migrants" - ] - }, - { - "text": "Continue to work with regional and international partners to ensure amicable solutions to\nremaining post-referendum issues", - "values": [ - "Elections" - ] - }, - { - "text": "Timely launch the formulation of the national human rights action plan ", - "values": [ - "General" - ] - }, - { - "text": "Strengthen measures to raise awareness and provide information through specific programmes of human rights education and training and to incorporate human rights in school curricula ", - "values": [ - "Human rights education and training" - ] - }, - { - "text": "Finalizing the law for the protection of children and create a Committee to protect children, in addition to provide more efforts to solve the phenomenon of street children", - "values": [ - "Rights of the Child" - ] - }, - { - "text": "Share with interested countries the Iranian experience with regard to promoting the participation of civil society", - "values": [ - "Civil society" - ] - }, - { - "text": "Increase the number of law enforcement officials, judges and prosecutors receiving training specific to human rights and minority groups", - "values": [ - "Human rights education and training", - "Justice", - "Minorities" - ] - }, - { - "text": "Reconsider its position vis-à-vis the capital punishment with the ultimate aim of abolishing the death penalty totally ", - "values": [ - "Death penalty" - ] - }, - { - "text": "Continue initiatives undertaken to promote education and culture of national minorities", - "values": [ - "ESC rights - general", - "Minorities", - "Right to education" - ] - }, - { - "text": "Increase public awareness campaigns against female genital mutilation - FGM -", - "values": [ - "Human rights education and training", - "Rights of the Child", - "Torture and other CID treatment", - "Women's rights" - ] - }, - { - "text": "Ensure that the Judiciary, including the Supreme Council of the Judiciary, has adequate resources and can function without political interferences", - "values": [ - "Justice" - ] - }, - { - "text": "Use appropriate international experience to ensure human rights in the ecological crisis zone.", - "values": [ - "Environment" - ] - }, - { - "text": "Prevent unwanted pregnancies as provided under the Choice on Termination of Pregnancy Act", - "values": [ - "Women's rights" - ] - }, - { - "text": "Complete the existing legislation in order to combat all forms of violence against women throughout its territory", - "values": [ - "Women's rights" - ] - }, - { - "text": "Strengthen educational and awareness-raising programmes for local communities in order to promote awareness of human rights issues among society at large, and stimulate the participation of civil society organizations in the promotion and protection of human rights", - "values": [ - "Civil society", - "Human rights education and training" - ] - }, - { - "text": "Ensure full and equal access to modern contraceptives, including in rural and indigenous communities", - "values": [ - "Indigenous peoples", - "Right to health" - ] - }, - { - "text": "Consider signature and ratification of ILO Conventions No. 138 and 182. ", - "values": [ - "International instruments", - "Labour", - "Rights of the Child" - ] - }, - { - "text": "Continue its efforts to guarantee gender equality by, for example, launching a public awareness campaign in order to stop violence against women and impunity for crimes against women ", - "values": [ - "Human rights education and training", - "Impunity", - "Women's rights" - ] - }, - { - "text": "Continue finding the appropriate solutions for the challenges mentioned in the national report and faced by the citizens in their full enjoyment of fundamental rights whether it is political, economic, social and cultural rights", - "values": [ - "General" - ] - }, - { - "text": "Follow up on the recommendations made by the Special Rapporteur on the situation of human rights and fundamental freedoms of indigenous peoples in 2004.", - "values": [ - "Indigenous peoples", - "Special procedures" - ] - }, - { - "text": "Prosecute and punish persons who, despite awareness campaigns, continue to be perpetrators or accomplices of FGM, according to the law of 22 January 1999", - "values": [ - "Rights of the Child", - "Torture and other CID treatment", - "Women's rights" - ] - }, - { - "text": "Avail itself of technical assistance offered by OHCHR to submit its overdue reports.", - "values": [ - "Technical assistance and cooperation", - "Treaty bodies" - ] - }, - { - "text": "Continue to take measures to combat all forms of discrimination in the area of education and protect minority groups ", - "values": [ - "Minorities", - "Racial discrimination", - "Right to education" - ] - }, - { - "text": "Step up efforts to effectively deal with discrimination, violence and hate speech against migrants", - "values": [ - "Migrants", - "Racial discrimination" - ] - }, - { - "text": "Complete current initiatives for the adoption of the National Plan against racism and discrimination, in consultation with organizations of persons of African descent and organizations of indigenous peoples ", - "values": [ - "Indigenous peoples", - "Minorities", - "Racial discrimination" - ] - }, - { - "text": "Continue to implement socioeconomic and development policies for safeguarding the rights of youth", - "values": [ - "Development", - "ESC rights - general" - ] - }, - { - "text": "Continue efforts to combat trafficking in human beings and prosecute traffickers ", - "values": [ - "Trafficking" - ] - }, - { - "text": "Strengthen the adult literacy education programme", - "values": [ - "Right to education" - ] - }, - { - "text": "Continue to maintain the promotion and protection of human rights as a major priority in national policies and strategies", - "values": [ - "General" - ] - }, - { - "text": "Adopt educational measures, from childhood, to foster social rejection of violence against women and children and encourage the use of complaints against such cases ", - "values": [ - "Rights of the Child", - "Women's rights" - ] - }, - { - "text": "Continue the serious efforts already underway to strengthen the right to education, particularly providing for increased access to education at the elementary level for girls", - "values": [ - "Right to education", - "Rights of the Child", - "Women's rights" - ] - }, - { - "text": "Strengthen the legal protection for migrant workers, including domestic workers, against discrimination on the grounds of race, sex, religion or nationality", - "values": [ - "Freedom of religion and belief", - "Labour", - "Migrants", - "Racial discrimination" - ] - }, - { - "text": "Ratify the core international human rights instruments, particularly the International Covenant on Civil and Political Rights and the International Covenant on Economic, Social and Cultural Rights", - "values": [ - "CP rights - general", - "ESC rights - general", - "International instruments" - ] - }, - { - "text": "Consider a moratorium on the application of capital sentences.", - "values": [ - "Death penalty" - ] - }, - { - "text": "Take steps to end stereotypes and discriminatory behaviours against women and redress wage inequalities between men and women", - "values": [ - "Women's rights" - ] - }, - { - "text": "Review its policies in order to accede to the core international human rights treaties to which it is not yet a party ", - "values": [ - "International instruments" - ] - }, - { - "text": "Consider the possibility of applying sentences alternative to imprisonment, particularly for juveniles and adolescents in conflict with the law", - "values": [ - "Justice", - "Rights of the Child" - ] - }, - { - "text": "Prioritize the ratification of the Council of Europe Convention on Preventing and Combating Violence against Women and Domestic Violence and of the Optional Protocol to the Convention on the Elimination of All Forms of Discrimination against Women", - "values": [ - "International instruments", - "Women's rights" - ] - }, - { - "text": "Abolish discriminatory laws against LGBT persons and also amend its national legislation in order to include sexual orientation and gender identity as grounds of discrimination", - "values": [ - "Sexual Orientation and Gender Identity" - ] - }, - { - "text": "Accelerate domestication process of international human rights laws to which Afghanistan is a member, in particular the International Covenant on Civil and Political Rights, Convention on the Elimination of All Forms of Discrimination against Women and the Convention on the Rights of the Child ", - "values": [ - "CP rights - general", - "International instruments", - "Rights of the Child", - "Women's rights" - ] - }, - { - "text": "Recognize that, though national Belgium's legislation fully complies with requirements to guarantee the absence of racial discrimination, it is not truly effective as complaints of discrimination by non-citizens and persons of foreign origin continue to be numerous, encourage the adoption of necessary measures to combat racial discrimination establishing public polices that would fight outbreaks of intolerance, discrimination and xenophobia. Additionally, fully respect the human rights of foreigners independently of their migration status", - "values": [ - "Migrants", - "Racial discrimination" - ] - }, - { - "text": "Give priority to legislative recognition of the competence of CERD to receive and consider complaints from persons claiming to be victims of violation by the State, in accordance with article 14 of the Convention", - "values": [ - "International instruments", - "Racial discrimination", - "Treaty bodies" - ] - }, - { - "text": "Continue the fight against the corruption and the impunity at all the levels of the criminal justice system", - "values": [ - "Corruption", - "Impunity", - "Justice" - ] - }, - { - "text": "Ensure a free and enabling environment for the work of civil society organizations and create a strategy to protect human rights defenders and civic activists, ensuring they are not persecuted, harassed or publicly stigmatized for their work and the exercise of their rights", - "values": [ - "Civil society", - "Human rights defenders" - ] - }, - { - "text": "Punish sex tourism and particularly prosecute the sexual exploitation of girls through pornography, sexual abuse and rape", - "values": [ - "Rights of the Child", - "Women's rights" - ] - }, - { - "text": "Undertake a thorough review of the relevant laws to safeguard the basic rights to freedom of opinion and expression ", - "values": [ - "Freedom of opinion and expression" - ] - }, - { - "text": "Define and legally classify enforced disappearance", - "values": [ - "Enforced disappearances" - ] - }, - { - "text": "Ensure, in the context of the judicial reform, a gender sensitive and accessible judiciary, both in terms of procedures and attitude ", - "values": [ - "Justice", - "Women's rights" - ] - }, - { - "text": "Take additional measures to facilitate access to health service for all members of society, especially women", - "values": [ - "Right to health", - "Women's rights" - ] - }, - { - "text": "Ensure an independent judiciary that operates without political interference by the State and uphold an internationally recognized notion of the rule of law by reviewing and amending the constitutional and legislative provisions that may compromise or diminish the independence and impartiality of the judiciary, as recommended by the Committee on Economic, Social and Cultural Rights ", - "values": [ - "Justice", - "Treaty bodies" - ] - }, - { - "text": "Strengthen the measures to promote the social and economic inclusion of the Batwa community", - "values": [ - "ESC rights - general", - "Indigenous peoples" - ] - }, - { - "text": "Safeguard the activities of human rights defenders, introducing national laws and policies to protect them", - "values": [ - "Human rights defenders" - ] - }, - { - "text": "Continue efforts to implement the Universal Primary Education Policy, including by increasing its budgetary allocation and formulating the compulsory education policy ", - "values": [ - "Right to education" - ] - }, - { - "text": "Ratify without reservations the Optional Protocol to the International Covenant on Economic, Social and Cultural Rights and opt in to the inquiry and inter-State procedures", - "values": [ - "ESC rights - general", - "International instruments" - ] - }, - { - "text": "Ratify the Optional Protocol to the Convention on the Rights of the Child on a communications procedure", - "values": [ - "International instruments", - "Rights of the Child" - ] - }, - { - "text": "Submit its human rights reports regularly and within a reasonable time frame, to respective Treaty Bodies and in particular the outstanding report on the implementation of the Convention against Torture", - "values": [ - "International instruments", - "Torture and other CID treatment", - "Treaty bodies" - ] - }, - { - "text": "Cease forced dispossession and guarantee just and transparent process when it comes to land tenure ", - "values": [ - "Right to land" - ] - }, - { - "text": "Take concrete steps to continue the process of family reunification, because for the elder generation even a delay of one or two years means that their chance of seeing their relatives may be lost forever ", - "values": [ - "Other" - ] - }, - { - "text": "Continue efforts to improve the situation of women and their empowerment", - "values": [ - "Women's rights" - ] - }, - { - "text": "Continue efforts to improve the protection of victims and witnesses, and their families, as well as human rights defenders, particularly those testifying in human rights-related trials, and to ensure that adequate witness protection is implemented.", - "values": [ - "Human rights defenders", - "Justice" - ] - }, - { - "text": "Take further action against the use of excessive force by the police", - "values": [ - "Human rights violations by state agents" - ] - }, - { - "text": "Take appropriate measures to reduce infant mortality and improve access to health services in rural areas", - "values": [ - "Right to health", - "Rights of the Child" - ] - }, - { - "text": "Consider strengthening the efforts in the area of combating trafficking of women and children by cooperating closely with countries in the region", - "values": [ - "Rights of the Child", - "Trafficking", - "Women's rights" - ] - }, - { - "text": "Further its endeavours with regard to the smooth and productive activities of the six Special Committees to address the issues of poverty, community mentality, immoral behaviour, crime, family institution and women, and persons with disabilities and the elderly ", - "values": [ - "Disabilities", - "Poverty", - "Women's rights" - ] - }, - { - "text": "Cooperate with the special procedures mandate-holders", - "values": [ - "Special procedures" - ] - }, - { - "text": "Continue to promote the democratization of mass media through the promotion of bilingualism and the use of media in rural areas", - "values": [ - "Other" - ] - }, - { - "text": "Consider using the Yogyakarta Principles on the Application of International Human Rights Law in relation to Sexual Orientation and Gender Identity as a guide to assist in its policies development.", - "values": [ - "International instruments", - "Sexual Orientation and Gender Identity" - ] - }, - { - "text": "Conclude regional agreements to facilitate cross-border pastoralism ", - "values": [ - "Other" - ] - }, - { - "text": "Continue its national efforts to improve the legal and institutional frameworks, implement policies and programmes focusing on and promoting the rights of women, children, persons with disabilities and older persons", - "values": [ - "Disabilities", - "Rights of the Child", - "Women's rights" - ] - }, - { - "text": "Continue to provide overseas development assistance at the United Nations agreed level to help developing countries to realize economic and social rights ", - "values": [ - "Development", - "Technical assistance and cooperation" - ] - }, - { - "text": "Ensure that the members of the Roma community, but also of other vulnerable groups, are protected from violence and attacks ", - "values": [ - "Minorities" - ] - }, - { - "text": "Ratify the International Convention for the Protection of All Persons from Enforced Disappearance, recognizing in full the competence of the associated Committee", - "values": [ - "Enforced disappearances", - "International instruments" - ] - }, - { - "text": "Further step up its efforts to investigate and prosecute effectively war crimes and strengthen the capacity of domestic courts and witness protection mechanisms in this regards", - "values": [ - "Justice" - ] - }, - { - "text": "Seek technical and financial support from the international community so that efforts undertaken for good governance are not compromised", - "values": [ - "Justice", - "Technical assistance and cooperation" - ] - }, - { - "text": "Take further measures to protect the environment and human health in the context of ensuring effective ways of sustainable development ", - "values": [ - "Development", - "Environment", - "Right to health" - ] - }, - { - "text": "Promote efforts to prohibit child labour and eradicate this practice in the country", - "values": [ - "Labour", - "Rights of the Child" - ] - }, - { - "text": "End all forms of segregation in the education system and develop an awareness-raising campaign for educational staff and parents to curb negative societal perceptions about inclusive education", - "values": [ - "Human rights education and training", - "Right to education" - ] - }, - { - "text": "Take concrete steps to ensure freedom of the media and investigate any intimidation and arbitrary detention of journalists and human rights defenders with a view to bringing such practices to an end ", - "values": [ - "Detention", - "Freedom of the press", - "Human rights defenders" - ] - }, - { - "text": "Ratify the Convention on the Rights of Persons with Disabilities (CRPD)", - "values": [ - "Disabilities", - "International instruments" - ] - }, - { - "text": "Continue taking the appropriate measures to better integrate and fully recognize persons of African descent as an important part of the Dominican society ", - "values": [ - "Minorities" - ] - }, - { - "text": "Strengthen the judicial follow-up of hate crimes and hate speech, leaving no room for impunity", - "values": [ - "Impunity", - "Racial discrimination" - ] - }, - { - "text": "Ratify CED", - "values": [ - "Enforced disappearances", - "International instruments" - ] - }, - { - "text": "Consider implementing effectively the national action plan for migrants without prejudice to their status by decriminalization of irregular migration situation ", - "values": [ - "Migrants" - ] - }, - { - "text": "Establish an independent and external oversight mechanism for alleged unlawful acts by police and that the Ombudsman monitor and investigate these cases independently and impartially", - "values": [ - "National Human Rights Institution" - ] - }, - { - "text": "Ratify the International Convention on the Elimination of All Forms of Racial Discrimination.", - "values": [ - "International instruments", - "Racial discrimination" - ] - }, - { - "text": "Repeal all legislation incompatible with the principle of equality and non-discrimination, including provisions of customary law, as recommended by the Committee on the Elimination of Discrimination against Women", - "values": [ - "Treaty bodies", - "Women's rights" - ] - }, - { - "text": "Guarantee that armed forces and police benefit from human rights training", - "values": [ - "Human rights education and training" - ] - }, - { - "text": "Further strengthen efforts to promote good governance", - "values": [ - "General" - ] - }, - { - "text": "Further guarantee effective access to education for all children, especially those from indigenous communities, refugee children and children whose families live in rural areas or below the poverty line and take effective measures to fight against the factors behind their exclusion from the educational system.", - "values": [ - "Right to education", - "Rights of the Child" - ] - }, - { - "text": "Elaborate a general strategy, in consultation with members of the Gypsy, Traveller and Roma communities, to ensure a systematic and coherent approach to address the problems that such communities continue to face, including discrimination and stigmatization", - "values": [ - "Minorities" - ] - }, - { - "text": "Strengthen the National Institute for Indigenous Affairs (El Instituto Paraguayo del Indigena, INDI) at the legislative, structural and functional levels", - "values": [ - "Indigenous peoples" - ] - }, - { - "text": "Study the possibility of repealing the death penalty from its legal regime", - "values": [ - "Death penalty" - ] - }, - { - "text": "Accede to the Rome Statute of the ICC and its Agreement on Privileges and Immunities", - "values": [ - "International instruments", - "Justice" - ] - }, - { - "text": "Continue to reinforce the role and capacity of the national human rights institution, which was re-accredited A status in March 2016 in full compliance with the principles relating to the status of national institutions for the promotion and protection of human rights (the Paris Principles)", - "values": [ - "National Human Rights Institution" - ] - }, - { - "text": "Encourage the participation of children in all the programmes and initiatives concerning them, whenever feasible", - "values": [ - "Rights of the Child" - ] - }, - { - "text": "Pronounce a moratorium on the use of the death penalty with a view to its prompt abolition", - "values": [ - "Death penalty" - ] - }, - { - "text": "Engage civil society, activists, NGOs and media to seek common ground on the Protection of State Information Bill ", - "values": [ - "Civil society", - "Freedom of opinion and expression" - ] - }, - { - "text": "Continue to make traditional communities aware of the consequences in terms of human rights abuses of harmful traditional practices", - "values": [ - "Human rights education and training", - "Torture and other CID treatment" - ] - }, - { - "text": "Take further measures to ensure that its national citizenship legislation complies fully with the 1961 Convention on the Reduction of Statelessness", - "values": [ - "International instruments", - "Statelessness and the right to nationality" - ] - }, - { - "text": "May establish a national preventive mechanism for the prevention of torture in accordance with the provisions of the Convention against Torture and its Optional Protocol", - "values": [ - "Detention", - "International instruments", - "Torture and other CID treatment" - ] - }, - { - "text": "Review the Law on Religion in order to guarantee freedom of religion in compliance with international standards", - "values": [ - "Freedom of religion and belief" - ] - }, - { - "text": "Continue its efforts in enhancing the rule of law to ensure long-term stability and sustainable development", - "values": [ - "Development" - ] - }, - { - "text": "Take all the necessary measures to ensure the end of all violent acts against the civilian population all over the national territory, and bring the perpetrators to justice", - "values": [ - "Public security" - ] - }, - { - "text": "Ratify without delay OP-CAT and, in this context, establish a national mechanism for the prevention of torture as provided by this instrument", - "values": [ - "Detention", - "International instruments", - "Torture and other CID treatment" - ] - }, - { - "text": "Take all necessary steps to strengthen public confidence in the justice system and limit the use of pretrial detention as strictly necessary ", - "values": [ - "Justice" - ] - }, - { - "text": "Strengthen its efforts to protect the rights of all persons to enjoy the highest possible level of physical and mental health, and take concrete measures to strengthen free and effective access to health for children and adults with mental disabilities ", - "values": [ - "Disabilities", - "Right to health", - "Rights of the Child" - ] - }, - { - "text": "Establish a moratorium on executions with a view to removing the death penalty from its criminal statutes and ratify the Second Optional Protocol to ICCPR ", - "values": [ - "Death penalty", - "International instruments" - ] - }, - { - "text": "Continue with its on-going efforts to address its human trafficking situation which has implications beyond Thailand's borders ", - "values": [ - "Trafficking" - ] - }, - { - "text": "Consider promptly joining the International Labour Organization", - "values": [ - "Labour" - ] - }, - { - "text": "Establish effective measures to increase the registration of children and to obtain birth registration", - "values": [ - "Rights of the Child", - "Statelessness and the right to nationality" - ] - }, - { - "text": "Continue its efforts to prevent and combat trafficking in persons and child labour", - "values": [ - "Labour", - "Rights of the Child", - "Trafficking" - ] - }, - { - "text": "Promote the very foundation of family and its associated values with a view to preventing domestic violence.", - "values": [ - "Rights of the Child", - "Women's rights" - ] - }, - { - "text": "Expedite the adoption of the draft law on trafficking in persons, in accordance with international law", - "values": [ - "Trafficking" - ] - }, - { - "text": "Continue with efforts to abolish the practice of placement of children under 3 years of age in institutionalized organized care and further strengthen the system of family foster care as the main alternative to institutionalization", - "values": [ - "Rights of the Child" - ] - }, - { - "text": "Expand its human rights education campaign, especially that on the rights of women, children, the elderly and minorities, to law enforcement officers", - "values": [ - "Human rights education and training", - "Minorities", - "Rights of the Child", - "Women's rights" - ] - }, - { - "text": "Continue implementing and monitoring the implementation of the two relevant Acts, adopted in 2007 and 2008, aimed at combating violence against women ", - "values": [ - "Women's rights" - ] - }, - { - "text": "Exempt all asylum-seeking and migrant children from detention", - "values": [ - "Asylum-seekers - refugees", - "Detention", - "Migrants", - "Rights of the Child" - ] - }, - { - "text": "Adopt appropriate legislation in full conformity with international standards on the rights of indigenous peoples", - "values": [ - "Indigenous peoples" - ] - }, - { - "text": "Support the ongoing process of protection of children and adolescents by raising awareness of the ramifications of illegal migration, and provide for the adequate care and facilities necessary for their repatriation and reintegration into society", - "values": [ - "Migrants", - "Rights of the Child" - ] - }, - { - "text": "Continue to promote the establishment of a national human rights institution in accordance with the Paris Principles", - "values": [ - "National Human Rights Institution" - ] - }, - { - "text": "Create an environment, inter-alia through a legislative framework, that promotes rather than restricts the right to freedom of assembly and that encourages citizens to express their diverse views ", - "values": [ - "Freedom of association and peaceful assembly", - "Freedom of opinion and expression" - ] - }, - { - "text": "Reiterates the recommendation for Poland to consider ratifying ILO Convention 189 on decent work for domestic workers ", - "values": [ - "International instruments", - "Labour" - ] - }, - { - "text": "Step up existing efforts to implement human rights education and training across all levels of society.", - "values": [ - "Human rights education and training" - ] - }, - { - "text": "Further strengthening, as to its funding and independence, of the national preventive mechanism under the Optional Protocol to the Convention against Torture (OP-CAT) so that it can function effectively and impartially", - "values": [ - "Detention", - "International instruments", - "Torture and other CID treatment" - ] - }, - { - "text": "Continue strengthening efforts to eliminate discrimination, including racial discrimination in education", - "values": [ - "Racial discrimination", - "Right to education" - ] - }, - { - "text": "Strengthen legislation against discrimination by adopting a national action plan against racism, racial discrimination, xenophobia and intolerance", - "values": [ - "Racial discrimination" - ] - }, - { - "text": "Consider aligning its corporate criminal liability regime with international human rights law in order to ensure accountability and effective remedy for victims of serious human rights abuses involving the operations of United Kingdom companies abroad", - "values": [ - "Business and human rights" - ] - }, - { - "text": "Continue implementing the work to promote the right to education and the rights of the child, through strengthening interagency coordination on the activities of the law enforcement bodies ", - "values": [ - "Right to education", - "Rights of the Child" - ] - }, - { - "text": "Develop institutions for the support and protection of children ", - "values": [ - "Rights of the Child" - ] - }, - { - "text": "To guarantee the human rights and freedoms of migrant workers through the promotion of legislation on migration that ensures decent and respectful treatment towards this vulnerable group, as well as its access, without discrimination, to, inter alia, health and education systems; accession to the International Convention for the Protection of the Rights of All Migrant Workers and Members of Their Families would be an important step in that regard", - "values": [ - "International instruments", - "Labour", - "Migrants" - ] - }, - { - "text": "Take urgent measures to protect the most vulnerable groups, with particular attention to boys and girls", - "values": [ - "Rights of the Child" - ] - }, - { - "text": "Strengthen efforts to bring domestic human rights legislation into line with international human rights law", - "values": [ - "International instruments" - ] - }, - { - "text": "Adopt comprehensive measures to address violence against women, including a law criminalizing all forms of violence against women", - "values": [ - "Women's rights" - ] - }, - { - "text": "Continue strengthening its social programmes to improve the quality of life of its people, in particular the most in need, with the assistance and cooperation that the country requests", - "values": [ - "General" - ] - }, - { - "text": "Ratify the International Convention for the Protection of all Persons from Enforced Disappearance ", - "values": [ - "Enforced disappearances", - "International instruments" - ] - }, - { - "text": "Include intercultural education in school curricula ", - "values": [ - "Right to education" - ] - }, - { - "text": "Take steps to ensure the establishment of an unrestricted access to the internet for all, including by making use of the existing underwater high speed broadband cable ", - "values": [ - "Freedom of opinion and expression" - ] - }, - { - "text": "Accede to the Second Optional Protocol to the International Covenant on Civil and Political Rights, aimed at abolishing the death penalty, and take all necessary steps to remove the death penalty from Jamaica's justice system ", - "values": [ - "Death penalty", - "International instruments" - ] - }, - { - "text": "Combat, within the framework of the law of the State, neo-Nazi groups and others promoting racial hatred and violence.", - "values": [ - "Racial discrimination" - ] - }, - { - "text": "Continue measures to promote equality between women and men and to combat domestic violence", - "values": [ - "Rights of the Child", - "Women's rights" - ] - }, - { - "text": "Identify the causes and adopt measures to ensure the permanence of minors in general and of girls in particular, in the education system ", - "values": [ - "Right to education", - "Rights of the Child", - "Women's rights" - ] - }, - { - "text": "Consider extending a standing invitation to all Special Procedures", - "values": [ - "Special procedures" - ] - }, - { - "text": "Implement juvenile justice standards, in particular in regard to pretrial detention of juveniles and the segregation of juveniles from adult prisoners ", - "values": [ - "Detention", - "Justice", - "Rights of the Child" - ] - }, - { - "text": "Develop policies that further enhance the protection of the rights of migrants and minority populations", - "values": [ - "Migrants", - "Minorities" - ] - }, - { - "text": "Establish a moratorium on executions with a view to proceeding towards the abolition of the death penalty", - "values": [ - "Death penalty" - ] - }, - { - "text": "Take steps to promote religious dialogue on issues that affect women's human rights and the implementation of laws tackling violence against women", - "values": [ - "Women's rights" - ] - }, - { - "text": "Allocate adequate financial resources for education in the State Budget as provided for by the Law on Education 2011", - "values": [ - "Right to education" - ] - }, - { - "text": "Guarantee that administrative detention of undocumented migrants is used only as an exceptional measure for the shortest possible period of time, and avoid criminalization of the irregular entry or stay of such persons in its territory ", - "values": [ - "Migrants" - ] - }, - { - "text": "Ratify the International Convention on the Protection of All Persons from Enforced Disappearance.", - "values": [ - "Enforced disappearances", - "International instruments" - ] - }, - { - "text": "Consider ratifying the Optional Protocol to the Convention against Torture and Other Cruel, Inhuman or Degrading Treatment or Punishment", - "values": [ - "Detention", - "International instruments", - "Torture and other CID treatment" - ] - }, - { - "text": "Strengthen policies to combat all forms of violence and discrimination against women and girls, including by criminalizing marital rape and prohibiting forced and early marriages", - "values": [ - "Rights of the Child", - "Women's rights" - ] - }, - { - "text": "Adopt a national policy to end discrimination against persons with disabilities and support their social integration, including of persons with mental health problems", - "values": [ - "Disabilities" - ] - }, - { - "text": "Apply special temporary measures in all areas where women are underrepresented or under unfavourable conditions", - "values": [ - "Women's rights" - ] - }, - { - "text": "Ensure the effective implementation of the minimum employment age set out in the Labour Code and of provisions prohibiting heavy and hazardous work for children ", - "values": [ - "Labour", - "Rights of the Child" - ] - }, - { - "text": "Convert the Swiss Resource Centre for Human Rights into a wholly independent national human rights institution, in compliance with the Paris Principles, when the pilot project ends in 2015", - "values": [ - "National Human Rights Institution" - ] - }, - { - "text": "Further incorporate, as appropriate, its international obligations under human rights instruments into domestic law ", - "values": [ - "International instruments" - ] - }, - { - "text": "Consider incorporating the UN Standard Minimum Rules for the Treatment of Prisoners and the UN Rules for the Treatment of Women Prisoners and Non-Custodial Measures for Women Offenders, otherwise known as the "Bangkok Rules" as part of its work on the treatment of prisoners", - "values": [ - "Detention", - "Women's rights" - ] - }, - { - "text": "Promptly ratify the International Labour Organization (ILO) Domestic Workers Convention, 2011 (No. 189)", - "values": [ - "International instruments", - "Labour" - ] - }, - { - "text": "Consider the possibility of abolishing the death penalty ", - "values": [ - "Death penalty" - ] - }, - { - "text": "Strengthen the operational and financial capacity of the National Human Rights Commission and ensure that it abides by the Paris Principles", - "values": [ - "National Human Rights Institution" - ] - }, - { - "text": "Further strengthen its overall law enforcement to effectively combat all forms of race-related crimes and hate speech as well as to raise public awareness in this field", - "values": [ - "Racial discrimination" - ] - }, - { - "text": "Follow up on CEDAW recommendations to amend the Special Marriage Act in the light of article 16 and the Committee's general recommendation 21 on giving equal rights to property accumulated during marriage.", - "values": [ - "Treaty bodies", - "Women's rights" - ] - }, - { - "text": "Ratify ICCPR and CAT", - "values": [ - "CP rights - general", - "International instruments", - "Torture and other CID treatment" - ] - }, - { - "text": "Strengthen efforts to finalize, adopt and implement, in consultation and cooperation with relevant stakeholders, including civil society, a national plan of action for children, as recommended by the Committee on the Rights of the Child", - "values": [ - "Civil society", - "Rights of the Child", - "Treaty bodies" - ] - }, - { - "text": "Strengthen its cooperation with OHCHR, including with regard to the training of relevant public officials, on the basis of identified technical assistance needs and with a view to establishing a multi-year programme", - "values": [ - "Technical assistance and cooperation" - ] - }, - { - "text": "Continue its efforts in combating child destitution and provide care for all street children", - "values": [ - "Rights of the Child" - ] - }, - { - "text": "Strengthen efforts to prevent torture, especially with respect to people under custody by the criminal investigations department, police and military agencies", - "values": [ - "Human rights violations by state agents", - "Torture and other CID treatment" - ] - }, - { - "text": "Promote multilingualism, in particular in the educational system, in line with the Constitution ", - "values": [ - "Right to education" - ] - }, - { - "text": "Implement policies and programmes aimed at preventing HIV/AIDS infections", - "values": [ - "HIV - Aids" - ] - }, - { - "text": "Further increase its efforts to effectively combat all forms of violence against women", - "values": [ - "Women's rights" - ] - }, - { - "text": "Withdraw reservation to article 4 of the International Convention on the Elimination of All Forms of Racial Discrimination.", - "values": [ - "International instruments", - "Racial discrimination" - ] - }, - { - "text": "Consider including civil society in the assessment sessions of the National Action Plan on Human Rights and in the formulation and preparation of the corresponding National Report", - "values": [ - "Civil society" - ] - }, - { - "text": "Consolidate the legal framework for the promotion and protection of human rights by ratifying CRPD ", - "values": [ - "Disabilities", - "International instruments" - ] - }, - { - "text": "Increase gender equality", - "values": [ - "Women's rights" - ] - }, - { - "text": "Ensure that neither the death penalty nor the life sentence is imposed for offences committed by persons under the age of 18 ", - "values": [ - "Death penalty", - "Rights of the Child" - ] - }, - { - "text": "Take action to improve opportunities for persons with disabilities to obtain gainful employment", - "values": [ - "Disabilities", - "Labour" - ] - }, - { - "text": "Ensure that women victims of violence receive appropriate help and perpetrators are brought to justice", - "values": [ - "Women's rights" - ] - }, - { - "text": "Continue its global and integrated approach in all policies of gender equality in all areas and take necessary measures to increase participation of women in public and political life ", - "values": [ - "Women's rights" - ] - }, - { - "text": "Step up efforts to create favourable work conditions for women, youth and persons with disabilities", - "values": [ - "Disabilities", - "Women's rights" - ] - }, - { - "text": "Consider ratifying the Convention against Torture", - "values": [ - "International instruments", - "Torture and other CID treatment" - ] - }, - { - "text": "Intensify its efforts towards capacity building and training in human rights for the justice and police personnel, as well as towards their incorporation into the schools' curricula", - "values": [ - "Human rights education and training" - ] - }, - { - "text": "Revise the Family Code to guarantee equality between men and women in inheritance matters ", - "values": [ - "Women's rights" - ] - }, - { - "text": "Take the necessary measures to reduce the unemployment rate among Roma minority in the public and private sectors, including if necessary taking affirmative actions ", - "values": [ - "Minorities" - ] - }, - { - "text": "Ensure all children are guaranteed fundamental rights during the judicial process", - "values": [ - "Justice", - "Rights of the Child" - ] - }, - { - "text": "Continue to strengthen measures aimed at poverty eradication, facilitation of access to medical care and services, and education and housing, especially for the rural poor. ", - "values": [ - "Poverty", - "Right to education", - "Right to health", - "Right to housing" - ] - }, - { - "text": "Adopt measures to eliminate all forms of discrimination in health-care settings, including in the context of HIV/AIDS, while paying particular attention to the specific needs of key populations, including lesbian, gay, bisexual, transgender and intersex persons", - "values": [ - "HIV - Aids", - "Right to health", - "Sexual Orientation and Gender Identity" - ] - }, - { - "text": "Continue to improve access to health-care services by funding programmes that improve the quality of health services in rural villages", - "values": [ - "Right to health" - ] - }, - { - "text": "Combat domestic violence and high maternal mortality rates suffered by women, in compliance with the Convention on the Elimination of All Forms of Discrimination against Women", - "values": [ - "Women's rights" - ] - }, - { - "text": "Study the possibility of eliminating any criminalisation of same sex relations ", - "values": [ - "Sexual Orientation and Gender Identity" - ] - }, - { - "text": "Continue its efforts to allocate sufficient resources to ensure the effective implementation of the Family Protection Act.", - "values": [ - "Women's rights" - ] - }, - { - "text": "Continue efforts to promote economic growth through its national development plans and ensure greater work opportunities for its youth and women", - "values": [ - "Development", - "Women's rights" - ] - }, - { - "text": "Intensify cooperation with the Office of the United Nations High Commissioner for Human Rights with a view to implementing the recommendations of the mission deployed by the Office in February 2008 to investigate the postelectoral violence that occurred at the end of 2007 ", - "values": [ - "Elections" - ] - }, - { - "text": "Continue implementation of its 10-point socioeconomic agenda and create skills-enhancement programmes on the basis of the human resources road map for 2016-2022", - "values": [ - "Other" - ] - }, - { - "text": "Consolidate the enforcement of the law concerning human trafficking, particularly in cases of sexual and labour exploitation, which are two very sensitive issues in the country ", - "values": [ - "Trafficking" - ] - }, - { - "text": "Extend an open and standing invitation to all special procedures ", - "values": [ - "Special procedures" - ] - }, - { - "text": "Narrowing the gender gap in education and illiteracy ", - "values": [ - "Right to education", - "Women's rights" - ] - }, - { - "text": "Ensure the effective application of the Convention against Torture.", - "values": [ - "International instruments", - "Torture and other CID treatment" - ] - }, - { - "text": "To South Sudan to establish a moratorium on executions with a view to abolishing the death\npenalty", - "values": [ - "Death penalty" - ] - }, - { - "text": "Address the issue of possible infringements of the right to freedom of expression, not least by evaluating the current legislation and its consequences in the form of high rates of convictions ", - "values": [ - "Freedom of opinion and expression" - ] - }, - { - "text": "Ratify, and ensure implementation into domestic law of CEDAW and CRC ", - "values": [ - "International instruments", - "Rights of the Child", - "Women's rights" - ] - }, - { - "text": "Backed by the Parliament and civil society at large, Italy has reconfirmed its commitment towards the achievement of the Monterrey 0,7%, objective. Despite the international juncture and severe constraints posed to Italy by its high public debt, a portion of the new State Budget resources is usually allocated for ODA.", - "values": [ - "Civil society", - "Development" - ] - }, - { - "text": "Implement specific and concrete measures in order to increase participation of women in the political and corporate life of the country", - "values": [ - "Women's rights" - ] - }, - { - "text": "Follow-up on the recommendations of CAT by ensuring that the definition of torture under all federal and state legislation is fully aligned with international and regional standards and by providing for the inadmissibility in court proceedings of evidence obtained under torture", - "values": [ - "Torture and other CID treatment", - "Treaty bodies" - ] - }, - { - "text": "Take all measures to establish a legal framework to address the issues affecting the migrant population, minorities, refugees and indigenous people", - "values": [ - "Asylum-seekers - refugees", - "Indigenous peoples", - "Migrants", - "Minorities" - ] - }, - { - "text": "Make further efforts towards improving the conditions in prisons and complying with relevant international standards", - "values": [ - "Detention" - ] - }, - { - "text": "Continue to adequately fund the medium-term strategic framework and to refine its consolidated planning, monitoring and evaluation mechanisms to support the Framework\u2019s effective implementation", - "values": [ - "UPR process" - ] - }, - { - "text": "Take effective measures to curb racial hatred and religious intolerance, hate speech and xenophobic discourses", - "values": [ - "Freedom of religion and belief", - "Racial discrimination" - ] - }, - { - "text": "Continue to keep the principle of non-refoulement and limit the use and duration of detention for asylum seekers", - "values": [ - "Asylum-seekers - refugees" - ] - }, - { - "text": "Consider ratifying the International Convention on the Rights of Migrant Workers and Members of Their Families and ILO Convention No. 189 ", - "values": [ - "Labour", - "Migrants" - ] - }, - { - "text": "Continue the efforts to implement the Strategy of the Government of Romania for the inclusion of the Romanian citizens belonging to the Roma minority for the period 2012-2020 ", - "values": [ - "Minorities" - ] - }, - { - "text": "Continue its efforts to eliminate the stereotypes regarding the roles and responsibilities of women and men in the family and in society", - "values": [ - "Women's rights" - ] - }, - { - "text": "Support legislative policies to protect vulnerable groups with the necessary financial resources to ensure their implementation", - "values": [ - "Other" - ] - }, - { - "text": "Continue efforts for the realization of sustainable economic development and poverty reduction", - "values": [ - "Development", - "Poverty" - ] - }, - { - "text": "Take the necessary steps to pursue ratification of the International Covenant on Civil and Political Rights and the International Covenant on Economic, Social and Cultural Rights", - "values": [ - "CP rights - general", - "ESC rights - general", - "International instruments" - ] - }, - { - "text": "Continue to pursue the ratification of Convention on the Rights of Persons with Disabilities", - "values": [ - "Disabilities", - "International instruments" - ] - }, - { - "text": "Allocate more resources to the education sector ", - "values": [ - "Right to education" - ] - }, - { - "text": "Devise programmes of human rights education on behalf of the police and the security forces, and constantly monitor the effectiveness of such programmes", - "values": [ - "Human rights education and training" - ] - }, - { - "text": "Ratify ICCPR and ICESCR ", - "values": [ - "CP rights - general", - "ESC rights - general", - "International instruments" - ] - }, - { - "text": "Continue to strengthen its leadership in the multilateral framework in favour of diplomacy of peace and in South-South cooperation for the promotion of human rights", - "values": [ - "Technical assistance and cooperation" - ] - }, - { - "text": "Proceed to ratify the second protocol to the International Covenant on Civil and Political Rights ICCPR concerning the abolition of the death penalty ", - "values": [ - "Death penalty", - "International instruments" - ] - }, - { - "text": "Improve detention facilities, in particular to address overcrowding and sanitation problems", - "values": [ - "Detention", - "Right to water and sanitation" - ] - }, - { - "text": "Strengthen preventive measures to combat all forms of racial discrimination ", - "values": [ - "Racial discrimination" - ] - }, - { - "text": "Redouble efforts to build lasting peace in Darfur by exercising restraint, engaging with the African Union/United Nations peace process in Doha and improving the security situation in which humanitarian workers operate ", - "values": [ - "Other" - ] - }, - { - "text": "Step up efforts to combat violence against women and girls, including by promoting literacy among these groups", - "values": [ - "Right to education", - "Rights of the Child", - "Women's rights" - ] - }, - { - "text": "Establish or give a mandate to a Government body to collect and publish credible official data measuring all incidences of violence against women", - "values": [ - "Women's rights" - ] - }, - { - "text": "Bahrain studies and reviews the international human rights treaties to which it has yet to accede in order to assess the feasibility of acceding to them. It will seek international assistance and cooperation in order to strengthen individual and institutional capacities in this connection.", - "values": [ - "International instruments", - "Technical assistance and cooperation" - ] - }, - { - "text": "Complete the CEDAW reports before the due date in 2015", - "values": [ - "Treaty bodies", - "Women's rights" - ] - }, - { - "text": "Continue its efforts to combat and eradicate trafficking in persons in accordance with international standards ", - "values": [ - "Trafficking" - ] - }, - { - "text": "Continue implementing the measures provided in the Strategic Plan on Equality of Opportunity 2014-2016", - "values": [ - "Women's rights" - ] - }, - { - "text": "Continue its active commitment on the international level for the prevention of genocide and crimes against humanity", - "values": [ - "Justice" - ] - }, - { - "text": "Identify gaps for further protection and harmonization of vulnerable groups, including religious minorities", - "values": [ - "Freedom of religion and belief", - "Minorities" - ] - }, - { - "text": "Strengthen the national legal framework to combat torture by considering the accession of the Convention against Torture", - "values": [ - "International instruments", - "Torture and other CID treatment" - ] - }, - { - "text": "Actively pursue the program scheduled by the National Human Rights Institution and share the best practices acquired with the international community ", - "values": [ - "National Human Rights Institution" - ] - }, - { - "text": "Draw up an action plan for business and human rights", - "values": [ - "Business and human rights" - ] - }, - { - "text": "Take all necessary social, educational and legal measures to address the problem of violence against women and to ensure that cases of domestic violence within the family are properly investigated and punished ", - "values": [ - "Rights of the Child", - "Women's rights" - ] - }, - { - "text": "Step up efforts to combat corruption and adopt all necessary legislative and policy measures to effectively combat corruption, taking into account the opinion of the Venice Commission on the establishment of a high anti-corruption court", - "values": [ - "Corruption", - "Justice" - ] - }, - { - "text": "Continue to implement the socio-economic development strategies and plans, in particular those aimed at fostering women's empowerment", - "values": [ - "Development", - "ESC rights - general", - "Women's rights" - ] - }, - { - "text": "Study the possibility to ratify the International Convention for the Protection of All Persons from Enforced Disappearance (CED) and the ICCPR-OP 2 ", - "values": [ - "Death penalty", - "Enforced disappearances", - "International instruments" - ] - }, - { - "text": "Respect the plurality and freedom of the press, particularly the application of neutral sanction measures by the regulatory organs, such as the National Communication Council", - "values": [ - "Freedom of the press" - ] - }, - { - "text": "Adopt measures to guarantee effective access to protection and redress for women victims of violence, and strengthen the National Commission on Gender Equality in order to fulfil its mandate", - "values": [ - "Women's rights" - ] - }, - { - "text": "Make every effort within its capacity to implement law number 4320/2015 to give people living in poverty access to basic goods and services", - "values": [ - "Poverty" - ] - }, - { - "text": "Continue to make efforts to guarantee the rights and participation of foreigners, in accordance with the commitment made in paragraph 124 of the National Report", - "values": [ - "Migrants" - ] - }, - { - "text": "Continue efforts to improve access of all the population to drinking water and sanitation", - "values": [ - "Right to water and sanitation" - ] - }, - { - "text": "Continue taking necessary measures to promote the rights of children and women ", - "values": [ - "Rights of the Child", - "Women's rights" - ] - }, - { - "text": "Support the preservation and development of the cultures of national minorities ", - "values": [ - "Minorities" - ] - }, - { - "text": "Proceed with ratifying the Rome Statute of the International Criminal Court", - "values": [ - "International instruments", - "Justice" - ] - }, - { - "text": "Work towards concluding the ongoing exercise to create a national human rights monitoring and follow-up system", - "values": [ - "General" - ] - }, - { - "text": "Develop a National Strategic Plan for the Progressive Elimination of Child Labour, with short- and medium-term goals as well as follow-up and evaluation mechanisms, both quantitative and qualitative, and endowed with financial resources for its implementation at the national, departmental and municipal level", - "values": [ - "Labour", - "Rights of the Child" - ] - }, - { - "text": "Continue its efforts regarding the combat of the phenomenon of trafficking in persons", - "values": [ - "Trafficking" - ] - }, - { - "text": "Increase in the number of prisons countrywide ", - "values": [ - "Detention" - ] - }, - { - "text": "Consider the possibility of ratifying the Optional Protocol to the Convention against Torture and Other Cruel, Inhuman or Degrading Treatment or Punishment CAT ", - "values": [ - "Detention", - "International instruments", - "Torture and other CID treatment" - ] - }, - { - "text": "Implement the CEDAW recommendations in implementing measures that will enable and encourage more women's participation in state and municipal political life", - "values": [ - "Elections", - "Treaty bodies", - "Women's rights" - ] - }, - { - "text": "Take all necessary measures to ensure the elimination of violence and discrimination against women and take steps to ensure the full incorporation of the Convention on the Elimination of All Forms of Discrimination against Women into its legal system", - "values": [ - "International instruments", - "Women's rights" - ] - }, - { - "text": "Strengthen its measures and continue its efforts in promoting multiculturalism and social inclusion ", - "values": [ - "Other" - ] - }, - { - "text": "Conclude the procedures for the ratification of CRPD", - "values": [ - "Disabilities", - "International instruments" - ] - }, - { - "text": "Encouraged to promote and protect the rights of vulnerable persons including persons with disabilities", - "values": [ - "Disabilities" - ] - }, - { - "text": "Take into account recommendations made by the Committee on the Elimination of Discrimination against Women when it raised the increase in the number of women victims of trafficking, as well the prevalence of acts of violence against women ", - "values": [ - "Trafficking", - "Treaty bodies", - "Women's rights" - ] - }, - { - "text": "Ensure the prohibition of discrimination on the grounds of sexual orientation and gender identity", - "values": [ - "Sexual Orientation and Gender Identity" - ] - }, - { - "text": "Enhance the functions of the national institutions to accelerate the process of submitting periodic reports to Treaty Bodies ", - "values": [ - "Treaty bodies" - ] - }, - { - "text": "Bring legislation governing the acquisition, retention or transfer of citizenship in line with article 9 of the Convention on the Elimination of Discrimination against Women, by removing any remaining discrimination", - "values": [ - "International instruments", - "Women's rights" - ] - }, - { - "text": "Ratify the Rome Statute of the International Criminal Court and fully align its legislation with all obligations under the Rome Statute, including incorporating the Rome Statute definition of crimes and general principles, as well as adopting provisions enabling cooperation with the Court ", - "values": [ - "International instruments", - "Justice" - ] - }, - { - "text": "Continue efforts in implementing the Convention on the Elimination of Discrimination against Women and to align all laws and policies with the principles of gender equality and non-discrimination as set out in the Convention on the Elimination of All Forms of Discrimination against Women ", - "values": [ - "International instruments", - "Women's rights" - ] - }, - { - "text": "Ensure that the death penalty is not carried out at least on persons under 18 years of age ", - "values": [ - "Death penalty", - "Rights of the Child" - ] - }, - { - "text": "Strengthen efforts on the implementation of its national poverty strategy", - "values": [ - "Poverty" - ] - }, - { - "text": "Repeal any law or bill that does not meet international standards on non-discrimination on the grounds of sexual orientation", - "values": [ - "Sexual Orientation and Gender Identity" - ] - }, - { - "text": "Review its migration and criminal procedure codes with a view of deleting the provisions allowing for detaining non-accompanied children", - "values": [ - "Detention", - "Migrants", - "Rights of the Child" - ] - }, - { - "text": "Apply the United Nations Rules for the Treatment of Women Prisoners and Non-custodial Measures for Women Offenders, or the Bangkok Rules, as part of its efforts to guarantee respect for human rights and dignity of persons deprived of their liberty ", - "values": [ - "Detention", - "Women's rights" - ] - }, - { - "text": "Establish a moratorium to the death penalty and, sign and ratify the Second Optional Protocol to ICCPR", - "values": [ - "Death penalty", - "International instruments" - ] - }, - { - "text": "Ensure that its counter-terrorism efforts are in compliance with international human rights obligations ", - "values": [ - "Counter-terrorism", - "International instruments" - ] - }, - { - "text": "Take specific and effective measures to make the Human Rights Commission fully operational, and also to guarantee the Commission\u2019s independence by ensuring adequate resources and financial autonomy as recommended by the Human Rights Committee", - "values": [ - "National Human Rights Institution" - ] - }, - { - "text": "Promote judicial reforms and continue reducing the number of annual pending cases", - "values": [ - "Justice" - ] - }, - { - "text": "Strengthen its policies to address discrimination against women ", - "values": [ - "Women's rights" - ] - }, - { - "text": "Continue its committed policy, federally, provincially and territorially, to promote and protect all human right", - "values": [ - "General" - ] - }, - { - "text": "Israel is committed to promoting the right to family life and has adopted in recent years policies to ensure the right to start a family or to adopt a child is secured.", - "values": [ - "Other" - ] - }, - { - "text": "Continue its efforts to enhance its legal and institutional arsenal considered as fundamental for the promotion and protection of human rights", - "values": [ - "Justice" - ] - }, - { - "text": "Strengthen measures to combat child abuse", - "values": [ - "Rights of the Child" - ] - }, - { - "text": "Consider the ratification of ICCPR-OP2 aiming at the abolition of the death penalty and of the Rome Statute of the International Criminal Court (ICC) ", - "values": [ - "Death penalty", - "International instruments", - "Justice" - ] - }, - { - "text": "Take concrete measures to ensure the effective application of the law on domestic violence, and in particular increase human and financial resources for this purpose ", - "values": [ - "Rights of the Child", - "Women's rights" - ] - }, - { - "text": "Awareness-raising and support for the full participation of civil society, beginning with follow-up to the consideration of Bahrain's report in April 2008.", - "values": [ - "Civil society", - "UPR process" - ] - }, - { - "text": "Adequately resource the Justice Reform Implementation Unit so that it can effectively support the timely delivery of all justice sector reform initiatives and the implementation of Jamaica's Justice Reform Agenda", - "values": [ - "Justice" - ] - }, - { - "text": "Canada acknowledges that there are challenges and the Government of Canada commits to continuing to explore ways to enhance efforts to address poverty and housing issues, in collaboration with provinces and territories.", - "values": [ - "Poverty", - "Right to housing" - ] - }, - { - "text": "Ban executions of juvenile offenders, in compliance with article 6 of ICCPR", - "values": [ - "International instruments", - "Rights of the Child" - ] - }, - { - "text": "Incorporate the largest human rights protection guarantees in the Constitution being drafted, partly contained in the current interim Constitutional Declaration", - "values": [ - "Other" - ] - }, - { - "text": "Take all necessary measures to guarantee that its citizens, particularly journalists, enjoy full freedom of opinion and expression", - "values": [ - "Freedom of opinion and expression", - "Freedom of the press" - ] - }, - { - "text": "Strengthen its policies designed to better integrate the Pygmies in the society", - "values": [ - "Indigenous peoples" - ] - }, - { - "text": "Undertake further measures to improve sexual and reproductive health especially for marginalized groups.", - "values": [ - "Right to health" - ] - }, - { - "text": "Improve the submission of reports to the treaty bodies and strengthen its capacity-building in this sphere", - "values": [ - "Treaty bodies" - ] - }, - { - "text": "Continue to implement its initiatives in combating the HIV-AIDS pandemic and share its experiences in this regard", - "values": [ - "HIV - Aids" - ] - }, - { - "text": "Consider incorporating the United Nations Rules for the Treatment of Women Prisoners and Non-Custodial Measure for Women Offenders, otherwise known as the "Bangkok Rules", as a part of its programme to enhance the conditions of women detainees in prison ", - "values": [ - "Detention", - "Women's rights" - ] - }, - { - "text": "The delegation further noted that Governments in Canada are also committed to guaranteeing the equality of the sexes under the law.", - "values": [ - "Women's rights" - ] - }, - { - "text": "Consider using the cooperation mechanisms and facilities offered by the international community system to overcome the shortage of technical and financial resources it may have ", - "values": [ - "Technical assistance and cooperation" - ] - }, - { - "text": "Fulfil its commitments on the use of minority languages in justice, in both criminal and civil procedures ", - "values": [ - "Justice", - "Minorities" - ] - }, - { - "text": "Increase the opportunities for persons with disabilities to express their opinion", - "values": [ - "Disabilities", - "Freedom of opinion and expression" - ] - }, - { - "text": "Further strengthen the protection of rights of vulnerable groups, like children, women, migrant workers and persons with disabilities", - "values": [ - "Disabilities", - "Labour", - "Migrants", - "Rights of the Child", - "Women's rights" - ] - }, - { - "text": "Continue the longstanding de facto moratorium on death penalty and further consider its legal abolition", - "values": [ - "Death penalty" - ] - }, - { - "text": "Establish a mechanism to allow for speedy and correct judicial decisions under strict observance of constitutional and international law regarding the territorial rights of indigenous peoples", - "values": [ - "Indigenous peoples", - "Justice", - "Right to land" - ] - }, - { - "text": "Support efforts to prevent human rights abuses in Crimea and Donbas by facilitating access for monitors, human rights defenders, journalists, and lawyers, and investigate thoroughly any credible allegations of abuses by Ukrainian forces, and use all appropriate methods to promote accountability for abuses", - "values": [ - "Human rights violations by state agents" - ] - }, - { - "text": "Continue cooperating with the Human Rights Council and its mechanisms, and extend an open invitation to the special procedures mechanisms", - "values": [ - "Special procedures", - "UPR process" - ] - }, - { - "text": "Continue implementation of its Comprehensive Plan to Prevent Domestic Violence, including through awareness-raising", - "values": [ - "Human rights education and training", - "Rights of the Child", - "Women's rights" - ] - }, - { - "text": "Review the reservations made to the Convention on the Elimination of All Forms of Discrimination against Women with the objective of withdrawing them, in particular those that are incompatible with the object and purpose of the said international instrument", - "values": [ - "International instruments", - "Women's rights" - ] - }, - { - "text": "Abolish completely the death penalty and ratify ICCPR-OP 2 ", - "values": [ - "Death penalty", - "International instruments" - ] - }, - { - "text": "The National Transitional Council (NTC) should work to establish a functioning justice system. This should be based on an independent police force and judiciary, whose jurisdiction should include all human rights abuses committed by individuals associated with Seleka ", - "values": [ - "Justice" - ] - }, - { - "text": "Seek from the international community technical help and assistance in terms of civil and political rights, mentioned in its national report, namely, access to justice, law enforcement, and environment protection", - "values": [ - "Environment", - "Justice", - "Technical assistance and cooperation" - ] - }, - { - "text": "Adopt measures to create a national human rights institution in conformity with the Paris Principles", - "values": [ - "National Human Rights Institution" - ] - }, - { - "text": "Continue working to promote the rights of persons with disabilities and mainstreaming the rights of minorities and vulnerable groups in the social programmes and projects of the Government ", - "values": [ - "Disabilities", - "Minorities" - ] - }, - { - "text": "Ensure equitable treatment of all groups in society and, as a first step, invite the Independent Expert on Minority Issues to undertake a country visit ", - "values": [ - "Minorities", - "Special procedures" - ] - }, - { - "text": "Create and further implement social policies focused on providing better education, increasing the enrolment of students and reducing the number of school dropouts", - "values": [ - "Right to education" - ] - }, - { - "text": "Abandon the State Department practice of qualifying other States according to its interpretation of human rights and contribute to the strengthening and effectiveness of the Universal Periodic Review as a fair and appropriate mechanism of the international community to evaluate the situation of human rights between States", - "values": [ - "Other" - ] - }, - { - "text": "Promote and foster economic, social and cultural rights for its people, with the objective of capitalizing on the progress that has already been made in this respect.", - "values": [ - "ESC rights - general" - ] - }, - { - "text": "Ensure that all administrative detainees have the possibility of filing a lawsuit challenging the legality of their detention", - "values": [ - "Detention" - ] - }, - { - "text": "Take measures to stop violence that has cost the lives of more than five thousand women, and caused more than 500,000 rapes in the last year", - "values": [ - "Women's rights" - ] - }, - { - "text": "Align the press law and penal code with the obligations under international human rights law, especially article 19 of the International Covenant on Civil and Political Rights", - "values": [ - "CP rights - general" - ] - }, - { - "text": "Sustain the broad consultation methodology including continuing the effective participation of civil society organizations in the work of the Inter-Institutional Commission ", - "values": [ - "Civil society" - ] - }, - { - "text": "Consider the possibility of extending a standing invitation to all special procedures of the Human Rights Council ", - "values": [ - "Special procedures" - ] - }, - { - "text": "Consider the possibility of acceding to the CPED and recognize the competence of its Committee", - "values": [ - "Enforced disappearances", - "International instruments" - ] - }, - { - "text": "Resume as soon as possible, measures of social protection and care for those most affected by the severe effects of the crisis", - "values": [ - "ESC rights - general" - ] - }, - { - "text": "Continue to exert efforts to accede to the international human rights instruments to which it is not yet a party", - "values": [ - "International instruments" - ] - }, - { - "text": "Step up efforts to fight racism, racial discrimination, xenophobia and associated intolerance", - "values": [ - "Racial discrimination" - ] - }, - { - "text": "Ratify the Convention against Torture and Other Cruel, Inhuman or Degrading Treatment or Punishment and its Optional Protocol and the International Covenant on Economic, Social and Cultural Rights by the third universal periodic review at the latest", - "values": [ - "Detention", - "ESC rights - general", - "International instruments", - "Torture and other CID treatment", - "UPR process" - ] - }, - { - "text": "Implement measures to support the full participation of indigenous peoples in democratic institutions and economic development ", - "values": [ - "Development", - "Indigenous peoples" - ] - }, - { - "text": "Continue efforts to combat drug trafficking/trade and corruption", - "values": [ - "Corruption", - "Trafficking" - ] - }, - { - "text": "Continue action including legislation to remove gender-based inequalities in the workplace, including wage disparities between men and women ", - "values": [ - "Women's rights" - ] - }, - { - "text": "Take necessary measures to combat poverty among the elderly", - "values": [ - "Poverty" - ] - }, - { - "text": "Adopt domestic laws to promote and guarantee women's political representation in decision making positions", - "values": [ - "Women's rights" - ] - }, - { - "text": "Promote human rights teaching in schools ", - "values": [ - "Human rights education and training" - ] - }, - { - "text": "Continue enhancing the quality of life of its people through the enjoyment of economic, social and cultural rights and pursuant to international standards", - "values": [ - "ESC rights - general" - ] - }, - { - "text": "Review its national law in order to ensure full and unhampered enjoyment of human rights by all members of society, including those belonging to the most vulnerable groups, such as women, lesbian, gay, bisexual and transgender persons and indigenous peoples ", - "values": [ - "Indigenous peoples", - "Sexual Orientation and Gender Identity", - "Women's rights" - ] - }, - { - "text": "Take further measures to systematically ensure safeguards against the occurrence of torture or ill-treatment, in particular in prison and detention facilities, while implementing also recommendations of the European Committee for the Prevention of Torture", - "values": [ - "Detention", - "Torture and other CID treatment" - ] - }, - { - "text": "Continue to allocate sufficient resources to ensure the effective implementation of the Family Protection Act, and to adopt further measures to combat domestic violence, with a special focus on women and girls with disabilities, who are at greater risk of all sorts of violence ", - "values": [ - "Rights of the Child", - "Women's rights" - ] - }, - { - "text": "Revise relevant legislation particularly the federal law on countering terrorism and the law on extremism to ensure their compatibility with international obligations of the Russian Federation ", - "values": [ - "Counter-terrorism" - ] - }, - { - "text": "Allow immediate, complete, continued and unimpeded humanitarian access to all populations in need throughout the whole territory, in particular in besieged and hard-to-reach areas", - "values": [ - "Other" - ] - }, - { - "text": "Initiate a debate on the decriminalization of homosexuality ", - "values": [ - "Sexual Orientation and Gender Identity" - ] - }, - { - "text": "Continue its efforts in promoting and protecting human rights in the future", - "values": [ - "General" - ] - }, - { - "text": "Adopt legislation to ensure full cooperation with the ICC and to accede to the Agreement on the Privileges and Immunities of ICC ", - "values": [ - "International instruments", - "Justice" - ] - }, - { - "text": "Reflect upon and consider setting a date for signing the International Convention on the Protection of All Persons from Enforced Disappearance.", - "values": [ - "Enforced disappearances", - "International instruments" - ] - }, - { - "text": "Uphold its international obligations relating to refugees", - "values": [ - "Asylum-seekers - refugees" - ] - }, - { - "text": "Improve health, sanitation and habitability conditions in prisons, including a decrease in overcrowding", - "values": [ - "Detention", - "Right to health", - "Right to water and sanitation" - ] - }, - { - "text": "Adopt a comprehensive legislation that guarantees the protection of the rights of migrant workers", - "values": [ - "Labour", - "Migrants" - ] - }, - { - "text": "Take action to stop the atrocities committed by some individuals against immigrants, especially in Moscow ", - "values": [ - "Migrants", - "Racial discrimination" - ] - }, - { - "text": "Expand the legislation in order to protect women against all forms of violence and ensure that gender-based violence does not lead to impunity ", - "values": [ - "Impunity", - "Women's rights" - ] - }, - { - "text": "Consider developing human rights education and training programmes in the context of upgrading its national education system ", - "values": [ - "Human rights education and training" - ] - }, - { - "text": "Ensure that arrests are carried out by law enforcement officials and that the detained are duly charged and brought to fair trials in accordance with international standards or are released ", - "values": [ - "Detention", - "Justice" - ] - }, - { - "text": "Take necessary steps to fight human trafficking", - "values": [ - "Trafficking" - ] - }, - { - "text": "Complete the ratification process for the two Optional Protocols to the Convention on the Rights of the Child, on the involvement of children in armed conflict and on the sale of children, child prostitution and child pornography, and for the Protocol to the African Charter on Human and Peoples' Rights on the Rights of Women in Africa", - "values": [ - "International humanitarian law", - "International instruments", - "Rights of the Child", - "Trafficking", - "Women's rights" - ] - }, - { - "text": "Introduce a national plan of action to combat violence against women", - "values": [ - "Women's rights" - ] - }, - { - "text": "Foster mutual understanding between all nationalities and all racial, ethnic and religious representatives or groups through tolerance as interaction between nations and cultures is based on the existence of respect towards cultural, ethnic, religious, racial, social and other characteristics", - "values": [ - "Freedom of religion and belief", - "Human rights education and training", - "Minorities", - "Racial discrimination" - ] - }, - { - "text": "Strengthen its efforts to prevent domestic violence, particularly violence against women", - "values": [ - "Rights of the Child", - "Women's rights" - ] - }, - { - "text": "Undertake effective steps to fully ensure all political, economic, social and cultural rights of minorities, including Armenians in Turkey, inter alia, by taking all necessary measures to ensure preservation of their national identity and cultural heritage ", - "values": [ - "Minorities" - ] - }, - { - "text": "Withdraw reservations to CEDAW", - "values": [ - "International instruments", - "Women's rights" - ] - }, - { - "text": "Establish a juvenile justice system in compliance with the Beijing Rules and the Riyadh Guidelines ", - "values": [ - "Justice", - "Rights of the Child" - ] - }, - { - "text": "Facilitate the work of civil society actors by removing excessive requirements for their registration, operation and funding and aligning the Law on Associations with the Constitution", - "values": [ - "Civil society", - "Freedom of association and peaceful assembly" - ] - }, - { - "text": "Repeal the death penalty", - "values": [ - "Death penalty" - ] - }, - { - "text": "Continue to implement the Education Strategy of 2012-2017", - "values": [ - "Right to education" - ] - }, - { - "text": "Implement the reforms needed to bring its legislative framework and practices into line with international norms and standards on freedom of the press and freedom of expression ", - "values": [ - "Freedom of opinion and expression", - "Freedom of the press" - ] - }, - { - "text": "Conduct a wide-ranging review of Egyptian human rights laws in order to bring them into line with Egypt's international commitments.", - "values": [ - "General" - ] - }, - { - "text": "Continue utmost efforts to implement effectively the National Action Plan for Persons with Disabilities", - "values": [ - "Disabilities" - ] - }, - { - "text": "Ensure that human rights agencies, including the Myanmar National Human Rights Commission and the Myanmar Press Council, are able to function as effective and independent agencies", - "values": [ - "Freedom of the press", - "National Human Rights Institution" - ] - }, - { - "text": "Continue efforts and ensure the full implementation of legislation regarding violence against women and prosecute and sanction those responsible for such acts in line with the recommendation made by the Committee on the Elimination of Discrimination against Women", - "values": [ - "Treaty bodies", - "Women's rights" - ] - }, - { - "text": "Take steps to address increasing trends in early, forced and child marriage", - "values": [ - "Rights of the Child", - "Women's rights" - ] - }, - { - "text": "Consider ratifying those international human rights instruments to which it is not yet a State party ", - "values": [ - "International instruments" - ] - }, - { - "text": "Adopt measures to combat and prevent discrimination and social stigmatization, in particular of persons with disabilities, persons with albinism, and on the grounds of sexual orientation or gender identity", - "values": [ - "Disabilities", - "Minorities", - "Sexual Orientation and Gender Identity" - ] - }, - { - "text": "Ensure that the national Human Rights Commission becomes operational as soon as possible and that its operation be in line with the Paris Principles ", - "values": [ - "National Human Rights Institution" - ] - }, - { - "text": "Ratify the Optional Protocol to CAT, as well the two Optional Protocols to ICCPR, and the Rome Statute of the International Criminal Court ", - "values": [ - "CP rights - general", - "Death penalty", - "Detention", - "Justice", - "Torture and other CID treatment" - ] - }, - { - "text": "Continue to fight effectively against racist statements that persist in political discourse in order to avoid associating migrants, insecurity and unemployment", - "values": [ - "Migrants", - "Racial discrimination" - ] - }, - { - "text": "Intensify its efforts in the field of literacy programme", - "values": [ - "Right to education" - ] - }, - { - "text": "Take all necessary measures towards upholding the total prohibition against torture and, in this regard, conduct thorough and impartial investigations into all allegations of torture and physical abuse and bring to justice anyone suspected of having committed excessive use of force, torture and other human rights violations ", - "values": [ - "Torture and other CID treatment" - ] - }, - { - "text": "Enhance the efforts made to improve the economic rights of the people", - "values": [ - "ESC rights - general" - ] - }, - { - "text": "Give consideration to what further action is required to promote greater integration of migrant communities and counteract racial discrimination and racially-motivated violence ", - "values": [ - "Migrants", - "Racial discrimination" - ] - }, - { - "text": "End its severe restrictions on the rights to free expression, association and assembly and end the harassment and persecution of journalists and bloggers", - "values": [ - "Freedom of association and peaceful assembly", - "Freedom of opinion and expression", - "Freedom of the press" - ] - }, - { - "text": "Continue its constructive engagement with the United Nations Special Procedures, including the Working Group on Enforced or Involuntary Disappearances, by inviting the Working Group to visit the country", - "values": [ - "Enforced disappearances", - "Special procedures" - ] - }, - { - "text": "Improve the legislation and its application in order to combat police impunity and increase the number of criminal investigations of suspected perpetrators accused of police brutality, as well as provide training for staff of law-enforcement bodies on the rights of detainees ", - "values": [ - "Human rights education and training", - "Human rights violations by state agents", - "Impunity" - ] - }, - { - "text": "Take immediate measures to derogate from norms that criminalize and stigmatize lesbian, gay, bisexual, transgender and intersex persons and investigate and sanction the perpetrators of acts of discrimination and violence against them", - "values": [ - "Sexual Orientation and Gender Identity" - ] - }, - { - "text": "Continue its efforts in harmonizing its national legislation with the human rights instruments to which Chad is a party", - "values": [ - "International instruments" - ] - }, - { - "text": "Consider repealing article 377 of the Criminal Code ", - "values": [ - "Sexual Orientation and Gender Identity" - ] - }, - { - "text": "Issue a standing invitation to United Nations special rapporteurs to the country", - "values": [ - "Special procedures" - ] - }, - { - "text": "Develop a comprehensive and forgery-proof land registry to enable indigenous communities to hold legal titles to their ancestral land, as previously recommended", - "values": [ - "Freedom of opinion and expression", - "Indigenous peoples", - "Right to land", - "UPR process" - ] - }, - { - "text": "Adopt measures that are considered relevant to promote learning support for girl children from ethnic minorities in order to reduce the dropout rate", - "values": [ - "Minorities", - "Right to education", - "Rights of the Child", - "Women's rights" - ] - }, - { - "text": "Continue to ensure care services and equal access of employment opportunities for persons with disabilities", - "values": [ - "Disabilities", - "Labour" - ] - }, - { - "text": "Complete its consideration of the abolition of the death penalty and move to abolition ", - "values": [ - "Death penalty" - ] - }, - { - "text": "Establish greater protections for journalists under threat and ensure prompt investigations of threats, harassment, and crimes against journalists", - "values": [ - "Freedom of the press" - ] - }, - { - "text": "Continue its contribution to the efforts in alleviating the suffering of the vulnerable group of refugees until they return to their homeland ", - "values": [ - "Asylum-seekers - refugees" - ] - }, - { - "text": "Intensify the Government's efforts with a view to the most effective protection possible against the risk of child sexual abuse", - "values": [ - "Rights of the Child" - ] - }, - { - "text": "Enforce the Trafficking in Persons Act and intensify international and bilateral cooperation in order to further curb trafficking ", - "values": [ - "Trafficking" - ] - }, - { - "text": "Take measures to ensure effective guarantee of due process and access to a lawyer in cases of arrest by investigating and preventing any incidents of arbitrary detention and allegations of abuse of authority, including any allegations of corruption among law enforcement personnel ", - "values": [ - "Corruption", - "Detention", - "Human rights violations by state agents", - "Justice" - ] - }, - { - "text": "Ensure prompt investigation into allegations of and bring to justice those committing attacks against Palestinian human rights defenders.", - "values": [ - "Human rights defenders" - ] - }, - { - "text": "Expand judicial system reforms with a view to progressing towards independence of the judiciary and improving the fight against impunity", - "values": [ - "Impunity", - "Justice" - ] - }, - { - "text": "Take appropriate measures to improve living conditions and address the issue of overcrowding in prisons and other detention centres, as well as to reduce violence between and among prisoners", - "values": [ - "Detention" - ] - }, - { - "text": "Continue efforts aimed at ensuring education for all children and make arrangements to improve the performance of the education system", - "values": [ - "Right to education", - "Rights of the Child" - ] - }, - { - "text": "Adopt a fair immigration policy, and cease xenophobia, racism and intolerance to ethnic, religious and migrant minorities ", - "values": [ - "Freedom of religion and belief", - "Migrants", - "Minorities", - "Racial discrimination" - ] - }, - { - "text": "Ratify the CAT and ICERD", - "values": [ - "International instruments", - "Racial discrimination", - "Torture and other CID treatment" - ] - }, - { - "text": "Launch a debate on issues concerning ethnic and cultural diversity aiming at promoting tolerance towards divergent cultural, religious and sexual orientations within the Estonian society", - "values": [ - "Freedom of religion and belief", - "Minorities", - "Sexual Orientation and Gender Identity" - ] - }, - { - "text": "Take all necessary steps to fully commit to end impunity for international crimes by acceding to the Rome Statute of the ICC and to fully align its national legislation with all obligations under the Rome Statute", - "values": [ - "Impunity", - "International instruments", - "Justice" - ] - }, - { - "text": "Strengthen ongoing efforts against domestic violence by establishing adequate monitoring and investigative mechanisms", - "values": [ - "Rights of the Child", - "Women's rights" - ] - }, - { - "text": "Continue adopting measures to guarantee the protection of human rights defenders", - "values": [ - "Human rights defenders" - ] - }, - { - "text": "Continue the review of the Statutes of the National Commission for Human Rights to bring them into line with the Paris Principles to arrive at the adoption of these new Statutes as soon as possible", - "values": [ - "National Human Rights Institution" - ] - }, - { - "text": "Continue implementing strategies and plans of socioeconomic development of the country ", - "values": [ - "Development" - ] - }, - { - "text": "Repeal the provisions in the Criminal Code which criminalize sexual relations between consenting adults of the same sex (lesbian, gay, bisexual, transgender and intersex persons)", - "values": [ - "Sexual Orientation and Gender Identity" - ] - }, - { - "text": "Ensure the proper registration of all newborns in order to ensure recognition of their legal personality", - "values": [ - "Rights of the Child" - ] - }, - { - "text": "Ensure that children in vulnerable and disadvantaged situations have equal access to education", - "values": [ - "Right to education", - "Rights of the Child" - ] - }, - { - "text": "Strengthen efforts to guarantee the independence of the judiciary according to international human rights standards", - "values": [ - "International instruments", - "Justice" - ] - }, - { - "text": "Support full, immediate, safe, and unfettered humanitarian access throughout the country, and ensure the protection of civilian populations, including vulnerable groups, through the immediate restoration of law and order", - "values": [ - "International humanitarian law" - ] - }, - { - "text": "Provide adequate training for judges, including human rights training, to ensure all judicial proceedings conform to international fair trial standards, and take concrete measures to strengthen the impartiality and independence of the Judicial Services Commission, including through ensuring that the composition and functioning of the Commission is in line with international principles of independence and accountability of the judiciary", - "values": [ - "Human rights education and training", - "Justice" - ] - }, - { - "text": "Intensify the fight against social stereotypes, which cultivate prejudices against national minorities", - "values": [ - "Minorities" - ] - }, - { - "text": "Continue its efforts to develop and enhance its national institutions to promote and protect the human rights and fundamental freedoms of its people ", - "values": [ - "National Human Rights Institution" - ] - }, - { - "text": "Abolish the death penalty and any legal provisions that provide for the death penalty", - "values": [ - "Death penalty" - ] - }, - { - "text": "Advance towards thorough and effective implementation of the International Convention for the Protection of All Persons from Enforced Disappearance in national legislation, including the listing of enforced disappearance as a crime in its criminal legislation", - "values": [ - "Enforced disappearances", - "International instruments" - ] - }, - { - "text": "Continue to effectively coordinate international aid so that it is focused on the affected populations", - "values": [ - "Technical assistance and cooperation" - ] - }, - { - "text": "Accelerate legislative amendments [with regards to forced disappearance] in order to include provisions on enforced disappearance in the penal code ", - "values": [ - "Enforced disappearances" - ] - }, - { - "text": "Take concrete measures with a view to decriminalizing consensual same-sex relations and abolishing any discriminatory legislation against LGBTI people, even if it is not applied in practice", - "values": [ - "Sexual Orientation and Gender Identity" - ] - }, - { - "text": "Share best practices with other developing countries on poverty reduction programmes and strategies, especially in rural areas", - "values": [ - "Poverty" - ] - }, - { - "text": "Adopt sanitation and residual water treatment strategies in order to prevent the high rate of child mortality due to water-related diseases", - "values": [ - "Right to water and sanitation", - "Rights of the Child" - ] - }, - { - "text": "Fully implement the recently adopted legislation and strategy on combating trafficking in persons to ensure effective provision of assistance, rehabilitation and reintegration for victims of trafficking, particularly women and children, and the bringing of perpetrators to justice ", - "values": [ - "Rights of the Child", - "Trafficking", - "Women's rights" - ] - }, - { - "text": "Implement programmes of human rights education for state bodies, especially law enforcement officials", - "values": [ - "Human rights education and training" - ] - }, - { - "text": "Continue fighting against gender-related violence, including FGM, by enhancing measures, such as ad hoc awareness-raising campaigns and legal aid programme to increase victims' access to justice", - "values": [ - "Human rights education and training", - "Rights of the Child", - "Torture and other CID treatment", - "Women's rights" - ] - }, - { - "text": "Continue efforts in strengthening police-community relations", - "values": [ - "Minorities" - ] - }, - { - "text": "Redouble its efforts to complete the process of aligning the Penal Code with the Rome Statute of the International Criminal Court", - "values": [ - "International instruments", - "Justice" - ] - }, - { - "text": "Continue to reinforce efforts to support inclusive growth and prioritize budgetary allocations in primary education and in the reduction of malnutrition and maternal and infant mortality rates to achieve progress in the remaining Millennium Development Goals", - "values": [ - "Development", - "Right to education", - "Right to food", - "Right to health" - ] - }, - { - "text": "Review its national legislation in order to ensure its full alignment with obligations under the Rome Statute, in particular by incorporating provisions enabling cooperation with the Court ", - "values": [ - "International instruments", - "Justice" - ] - }, - { - "text": "Appoint the national preventive mechanism under the Optional Protocol to the Convention against Torture ", - "values": [ - "Detention", - "International instruments", - "Torture and other CID treatment" - ] - }, - { - "text": "Consider ratifying the International Convention on the Protection of the Rights of All Migrant Workers and Members of Their Families", - "values": [ - "International instruments", - "Labour", - "Migrants" - ] - }, - { - "text": "Work towards abolition of the death penalty", - "values": [ - "Death penalty" - ] - }, - { - "text": "Take comprehensive measures to increase the level of public security in the country", - "values": [ - "Public security" - ] - }, - { - "text": "Withdraw the reservations to the Convention on the Status of Refugees ", - "values": [ - "Asylum-seekers - refugees", - "International instruments" - ] - }, - { - "text": "Increase training of teaching staff throughout the country, so that they are better prepared to identify situations of abuse or domestic violence against children", - "values": [ - "Human rights education and training", - "Rights of the Child", - "Women's rights" - ] - }, - { - "text": "Amend national legislation to grant women equal rights to men, in regard to passing citizenship to their foreign spouse", - "values": [ - "Women's rights" - ] - }, - { - "text": "Take appropriate action to resolve the obstacles that prevent the full implementation of the Avena Judgment of the International Court of Justice and, until this occurs, avoid the execution of the individuals covered in said judgment ", - "values": [ - "Justice" - ] - }, - { - "text": "Put an end to the violations of the rights to peaceful assembly and freedom of expression, torture and other ill-treatment ", - "values": [ - "Freedom of association and peaceful assembly", - "Freedom of opinion and expression", - "Torture and other CID treatment" - ] - }, - { - "text": "Continue its work in relation to the promotion of the protection of the rights of specific vulnerable groups in society such as senior citizens, the poor and those affected by natural disasters", - "values": [ - "Environment", - "Poverty" - ] - }, - { - "text": "Extend an open and standing invitation to the special procedures of the Human Rights Council and be proactive when questionnaires are sent by mandate holders ", - "values": [ - "Special procedures" - ] - }, - { - "text": "Continue building its democratic reform for the prosperity and well-being for the people and the nation of Myanmar", - "values": [ - "General" - ] - }, - { - "text": "Develop a plan of action to combat racism", - "values": [ - "Racial discrimination" - ] - }, - { - "text": "Respect its commitments concerning the freedom of expression which it undertook by ratifying the ICCPR ", - "values": [ - "Freedom of opinion and expression", - "International instruments" - ] - }, - { - "text": "Approve the request for a visit by the Special Rapporteur on the sale of children, child prostitution and child pornography ", - "values": [ - "Rights of the Child", - "Special procedures", - "Trafficking" - ] - }, - { - "text": "Continue strengthening the existing human rights monitoring mechanisms", - "values": [ - "General" - ] - }, - { - "text": "That constant protection be provided to indigenous people and their rights over their lands and the preservation of their culture ", - "values": [ - "Indigenous peoples", - "Right to land" - ] - }, - { - "text": "Define and criminalize torture in its domestic law, consistent with article 1 and article 4 of the Convention against Torture and Other Cruel, Inhuman or Degrading Treatment or Punishment", - "values": [ - "International instruments", - "Torture and other CID treatment" - ] - }, - { - "text": "Consider signing-acceding to the main international human rights instruments, including ICCPR, ICESCR, ICERD and ICRMW \n\n", - "values": [ - "CP rights - general", - "ESC rights - general", - "International instruments", - "Labour", - "Migrants", - "Racial discrimination" - ] - }, - { - "text": "Abolish, or profoundly reform, the blasphemy laws and guarantee freedom of religion and belief for all in law and in practice", - "values": [ - "Freedom of opinion and expression", - "Freedom of religion and belief" - ] - }, - { - "text": "Consider withdrawing its reservations on the CEDAW articles 2 and 16, accede to the Optional Protocol to CEDAW and consider taking the requisite measures as the upper guardian of its citizen's rights, freedoms and interests by eliminating all forms of discrimination against women in decision-making and public life", - "values": [ - "International instruments", - "Women's rights" - ] - }, - { - "text": "Strengthen human rights education programmes in order to eliminate discrimination", - "values": [ - "Human rights education and training" - ] - }, - { - "text": "Utilize opportunities to obtain grant funding inter alia from the World Bank's Global Financing Facility", - "values": [ - "Development" - ] - }, - { - "text": "Consider ratifying the Optional Protocol to CEDAW and the Optional Protocols to CRC ", - "values": [ - "International instruments", - "Rights of the Child", - "Women's rights" - ] - }, - { - "text": "Strengthen efforts to promote freedom of religion or belief and to protect the rights of persons belonging to religious minorities, including by adopting measures both to address episodes of intolerance and hate speech against religious minorities and to solve outstanding issues related to the ownership and maintenance of places of worship and properties belonging to religious minority groups", - "values": [ - "Freedom of religion and belief", - "Minorities" - ] - }, - { - "text": "Continue advancing the construction of permanent houses for farmers and herdsmen in the region on a voluntary basis and in their real needs", - "values": [ - "Right to housing" - ] - }, - { - "text": "Further enhance the mandate of the Ombudsman Board in accordance with the Paris Principles ", - "values": [ - "National Human Rights Institution" - ] - }, - { - "text": "Set up a system collecting and analysing data on violence against women, and ensure that the implementation of legislation and policy concerning all forms of violence against women is effective and appropriately tailored to respond to real-life challenges on the ground", - "values": [ - "Women's rights" - ] - }, - { - "text": "Take all appropriate steps to abrogate excessive use of force and extrajudicial killings by armed forces, police and security forces, by combating the impunity of perpetrators having committed such acts, in accordance with international standards of fair trial ", - "values": [ - "Extrajudicial executions", - "Human rights violations by state agents", - "Impunity" - ] - }, - { - "text": "Enhance its efforts to eliminate violence against women and children ", - "values": [ - "Rights of the Child", - "Women's rights" - ] - }, - { - "text": "Improve the space and sanitary conditions of shelters for migrants, refugees and asylum-seekers, so that they comply with international and regional standards ", - "values": [ - "Asylum-seekers - refugees", - "Migrants" - ] - }, - { - "text": "Continue to take the necessary measures to prevent violence against women, particularly migrant women and penalise those who commit these acts of violence", - "values": [ - "Migrants", - "Women's rights" - ] - }, - { - "text": "Reconsider introducing a moratorium on executions with a view to abolishing the death penalty", - "values": [ - "Death penalty" - ] - }, - { - "text": "Continue the work accomplished to prevent gender-based discrimination, promote equality between women and men and thus improve women\u2019s condition, particularly in working life", - "values": [ - "Labour", - "Women's rights" - ] - }, - { - "text": "Consider taking measures to guarantee freedom of expression, particularly the freedom of the press and to harmonize national legislation in this area with international norms ", - "values": [ - "Freedom of opinion and expression", - "Freedom of the press" - ] - }, - { - "text": "Accede to the Convention on the Reduction of Statelessness ", - "values": [ - "International instruments", - "Statelessness and the right to nationality" - ] - }, - { - "text": "Take all necessary steps to eliminate torture and other inhuman punishments in prisons and detention facilities", - "values": [ - "Detention", - "Torture and other CID treatment" - ] - }, - { - "text": "Implement the recommendation made by the Committee on the Elimination of Discrimination against Women in 2008 on drafting strategies and programmes to combat prostitution. ", - "values": [ - "Treaty bodies", - "Women's rights" - ] - }, - { - "text": "Establish a national mechanism independent of the public prosecutor and the attorney general for the investigation and prosecution of crimes committed during and following the 2007 election period ", - "values": [ - "Justice" - ] - }, - { - "text": "Include, among the priorities of the Second National Strategic Development Plan, the access to sanitation along with access to drinking water which is already contained ", - "values": [ - "Right to water and sanitation" - ] - }, - { - "text": "Respect the right to peaceful assembly in accordance with Angolan and international human rights law, take steps to decriminalise press offences, in line with international standards, and ensure journalists and human rights defenders are not intimidated", - "values": [ - "Freedom of association and peaceful assembly", - "Freedom of the press", - "Human rights defenders", - "International instruments" - ] - }, - { - "text": "Increase effort being carried out to combat violence against women ", - "values": [ - "Women's rights" - ] - }, - { - "text": "Consider ratifying the International Convention on the Protection of the Rights of All Migrant Workers and Members of their Families and the International Labour Organization Domestic Workers Convention, 2011 (No. 189)", - "values": [ - "International instruments", - "Labour", - "Migrants" - ] - }, - { - "text": "Consider the ratification of the following international instruments: the Second Optional Protocol to the International Covenant on Civil and Political Rights, aiming at the abolition of the death penalty (ICCPR-OP2), the Optional Protocol to the Convention on Economic, Social and Cultural Rights, and the Optional Protocol to the Convention on the Elimination of All Forms of Discrimination against Women", - "values": [ - "Death penalty", - "ESC rights - general", - "International instruments", - "Women's rights" - ] - }, - { - "text": "Consider acceding to the Optional Protocol to the Convention on the Rights of the Child on the involvement of children in armed conflict", - "values": [ - "International humanitarian law", - "International instruments", - "Rights of the Child" - ] - }, - { - "text": "Attach more importance to the protection of rights of the child through national plans for economic and social development", - "values": [ - "Rights of the Child" - ] - }, - { - "text": "Strengthen awareness of and respect for human rights within the armed forces, police and\njudiciary", - "values": [ - "Human rights education and training" - ] - }, - { - "text": "Allow independent human rights monitors to visit the country, cooperate with special procedures and start an open debate, both domestically and at international level, on the findings of the COI", - "values": [ - "Justice", - "Special procedures" - ] - }, - { - "text": "Consider enacting legislation prohibiting racial discrimination ", - "values": [ - "Racial discrimination" - ] - }, - { - "text": "Strengthen the protection of citizens and the right to privacy in the Investigatory Powers Bill of 2016", - "values": [ - "Privacy" - ] - }, - { - "text": "Recognize the right of conscientious objection by law, to decriminalize refusal of active military service and to remove any current prohibition from employment in Government or public organizations, in line with the recommendation by the Human Rights Committee", - "values": [ - "Freedom of religion and belief", - "Treaty bodies" - ] - }, - { - "text": "Take steps to further enhance the capacity of the judiciary, especially with regard to the backlog of court cases and the staffing of the Public Prosecutor's and the Public Solicitor's Offices ", - "values": [ - "Justice" - ] - }, - { - "text": "Take measures to improve women's participation in the political process and the various aspects of life ", - "values": [ - "Women's rights" - ] - }, - { - "text": "Adopt concrete measures to increase the participation of women in the political and public sphere", - "values": [ - "Women's rights" - ] - }, - { - "text": "Repeal all provisions criminalizing sexual activity between consenting adults ", - "values": [ - "Sexual Orientation and Gender Identity" - ] - }, - { - "text": "Promote inter-ethnic dialogue and tolerance, particularly at the cantonal and communal levels ", - "values": [ - "Minorities" - ] - }, - { - "text": "Take steps to bring prison conditions into compliance with international legal standards for the treatment of prisoners as a matter of urgency ", - "values": [ - "Detention" - ] - }, - { - "text": "Adopt measures guaranteeing the protection of women, who are victims of discrimination and violence on the grounds of their sexual orientation or gender condition", - "values": [ - "Sexual Orientation and Gender Identity", - "Women's rights" - ] - }, - { - "text": "Bring all relevant legislation into line with CRC ", - "values": [ - "International instruments", - "Rights of the Child" - ] - }, - { - "text": "Complete the process of judicial and penal reform", - "values": [ - "Justice" - ] - }, - { - "text": "Revoke laws that allow for the suppression of the rights to freedom of assembly and expression ", - "values": [ - "Freedom of association and peaceful assembly", - "Freedom of opinion and expression" - ] - }, - { - "text": "Take all necessary measures to promote and facilitate the professional evolution of women to positions of higher responsibilities", - "values": [ - "Women's rights" - ] - }, - { - "text": "Take serious steps in addressing the problem of widespread piracy attacks and robbery off the Somali coast including by cooperating with the international community in adopting the possible options identified by the Secretary-General to further the aim of prosecuting persons responsible for acts of piracy and armed robbery at sea ", - "values": [ - "Public security" - ] - }, - { - "text": "Set up an effective statistical data collection system, including with regards to complaints, investigations, proceedings, sentences and reparations related to cases of ill-treatment by law enforcement officials, in order to fully implement the Convention against Torture and its Optional Protocol", - "values": [ - "Detention", - "Human rights violations by state agents", - "International instruments", - "Torture and other CID treatment" - ] - }, - { - "text": "Swiftly adopt measures aimed at incorporating the provisions of the Convention on the Rights of the Child into the Palau National Code", - "values": [ - "International instruments", - "Rights of the Child" - ] - }, - { - "text": "Present a bill for a new Criminal Code which would decriminalize sexual activity between consenting adults of the same sex as outlined in the national report ", - "values": [ - "Sexual Orientation and Gender Identity" - ] - }, - { - "text": "Make specific provision in its criminal law for preventing and combating racist motivations which constitute an aggravating circumstance in the country", - "values": [ - "Racial discrimination" - ] - }, - { - "text": "Establish a national prevention mechanism in line with the Optional Protocol to the Convention against Torture", - "values": [ - "Detention", - "International instruments", - "Torture and other CID treatment" - ] - }, - { - "text": "Further strengthen the understanding of gender equality, in order to eliminate patriarchal attitudes and gender stereotypes", - "values": [ - "Women's rights" - ] - }, - { - "text": "Adopt administrative and legal measures to pursue gender equality in decision-making and elected positions", - "values": [ - "Women's rights" - ] - }, - { - "text": "Take further steps, with the support of the international community, to continue ameliorating access of the population to health", - "values": [ - "Right to health" - ] - }, - { - "text": "Allocate the necessary resources to ensure universal primary education for girls and boys alike by 2015 and accept the request from the Special Rapporteur on the right to education to visit the country", - "values": [ - "Right to education", - "Special procedures" - ] - }, - { - "text": "Take further steps to promote the rights of women and end all forms of discrimination experienced by the female population of Papua New Guinea ", - "values": [ - "Women's rights" - ] - }, - { - "text": "Continue its efforts to effectively enforce its environmental policies and further increase the growth of forest cover in the country", - "values": [ - "Environment" - ] - }, - { - "text": "As previously recommended, amend existing rules for the security forces, including the Public Order and Security Act, to ensure that the rights to peaceful assembly, freedom of association and freedom of the press can be exercised", - "values": [ - "Freedom of association and peaceful assembly", - "Freedom of the press", - "UPR process" - ] - }, - { - "text": "Take into account findings in the report of the United Nations Independent Expert on Minority Issues on the phantom death squad ", - "values": [ - "Minorities", - "Special procedures" - ] - }, - { - "text": "Take the necessary measures aimed at removing the root causes of racial discrimination, xenophobia and over incarceration of Aboriginals, Afro-Canadians and ethnic minorities including women ", - "values": [ - "Indigenous peoples", - "Minorities", - "Racial discrimination", - "Women's rights" - ] - }, - { - "text": "Take measures to establish the National Child Rights Committee with the financial resources necessary to operate", - "values": [ - "Rights of the Child" - ] - }, - { - "text": "Finalize steps to ratify other human rights instruments", - "values": [ - "International instruments" - ] - }, - { - "text": "Reveal the fate and location of those persons who forcefully disappeared during the period of the Gaddafi regime, among whom the Lebanese Leader, Imam Moussa Al-Sadr and his two companions, who disappeared after their visit to Libya on 31 August 1978, following their meeting at that time with the Libyan President Muammar Gaddafi", - "values": [ - "Enforced disappearances", - "Justice" - ] - }, - { - "text": "Implement fully the Global Political Agreement, including those articles relating to the security of persons and prevention of violence, freedom of expression and freedom of assembly and association ", - "values": [ - "Freedom of association and peaceful assembly", - "Freedom of opinion and expression" - ] - }, - { - "text": "Ratify ICCPR, ICESCR, CEDAW, OP-CEDAW and OP-CRC on the sale of children, child prostitution and child pornography.", - "values": [ - "CP rights - general", - "ESC rights - general", - "International instruments", - "Rights of the Child", - "Trafficking", - "Women's rights" - ] - }, - { - "text": "Improve legal measures on poverty eradication and an adequate standard of living ", - "values": [ - "Poverty" - ] - }, - { - "text": "Make all allegations of extrajudicial executions, forced disappearances, torture and other ill-treatment, as well as grave violations of human rights and international humanitarian law the object of effective and independent investigations at the earliest, to bring the perpetrators of these acts to justice, irrespective of their ranks or functions ", - "values": [ - "Enforced disappearances", - "Extrajudicial executions", - "Human rights violations by state agents", - "International humanitarian law", - "Torture and other CID treatment" - ] - }, - { - "text": "Consider developing a system to follow up on international recommendations, including universal periodic review recommendations", - "values": [ - "Special procedures", - "Treaty bodies", - "UPR process" - ] - }, - { - "text": "Assure women of their rights to safe medical and reproductive health care", - "values": [ - "Right to health", - "Women's rights" - ] - }, - { - "text": "Continue to allocate resources necessary for the implementation of projects to provide housing, food and temporary social assistance to victims of trafficking", - "values": [ - "Right to food", - "Right to housing", - "Trafficking" - ] - }, - { - "text": "Strengthen its support to the Afghanistan Independent Human Rights Commission and the newly established Human Rights Unit within the Ministry of Justice, especially in the field of mapping past human rights abuses.", - "values": [ - "National Human Rights Institution" - ] - }, - { - "text": "Reform laws that contain discriminatory provisions", - "values": [ - "Other" - ] - }, - { - "text": "Ensure that legislation and administrative measures adopted to combat terrorism are fair and have review mechanisms", - "values": [ - "Counter-terrorism" - ] - }, - { - "text": "Take legislative and statutory measures to eliminate all forms of discrimination against women, persons with disabilities and children affected by HIV/AIDS", - "values": [ - "Disabilities", - "HIV - Aids", - "Rights of the Child", - "Women's rights" - ] - }, - { - "text": "Continue taking effective measures to further promote and protect the rights of women and children", - "values": [ - "Rights of the Child", - "Women's rights" - ] - }, - { - "text": "Take steps to reduce the use of pre-trial custody, to increase alternatives to imprisonment and to develop policies to protect the best interests of children with a parent in detention", - "values": [ - "Detention", - "Justice", - "Rights of the Child" - ] - }, - { - "text": "Consider withdrawing reservations to the core international human rights instruments, in particular to the Second Optional Protocol to ICCPR ", - "values": [ - "Death penalty", - "International instruments" - ] - }, - { - "text": "Adopt immediately legislation that prohibits racial discrimination, as previously recommended", - "values": [ - "Racial discrimination", - "UPR process" - ] - }, - { - "text": "Amend the Nationality Code to eliminate the possibility that the withdrawal of the Omani nationality would lead to cases of statelessness", - "values": [ - "Statelessness and the right to nationality" - ] - }, - { - "text": "Enhance the policy to prevent, combat and eradicate torture, improve the situation in the prison system and establish alternative sanctions \n", - "values": [ - "Detention", - "Torture and other CID treatment" - ] - }, - { - "text": "Undertake a national survey to assess the exact number of homeless children throughout the world and the root causes of this phenomenon, in order to develop a national plan of action to specifically address and remedy this problem ", - "values": [ - "Rights of the Child" - ] - }, - { - "text": "Review the Criminal Code to align it with the definition of torture in the Convention against Torture", - "values": [ - "International instruments", - "Torture and other CID treatment" - ] - }, - { - "text": "Continue to make efforts to promote the right to education for children of migrant workers from rural areas", - "values": [ - "Labour", - "Migrants", - "Right to education", - "Rights of the Child" - ] - }, - { - "text": "Abolish temporary marriage, child, early and forced marriage and prosecute "honour" crimes", - "values": [ - "Rights of the Child", - "Women's rights" - ] - }, - { - "text": "Continue progressing towards the eradication of poverty, through implementing its successful social policies", - "values": [ - "Poverty" - ] - }, - { - "text": "Ratify ICCPR, CRPD and the two Optional Protocols to CRC ", - "values": [ - "CP rights - general", - "Disabilities", - "International instruments", - "Rights of the Child" - ] - }, - { - "text": "Continue the efforts aimed at dealing with mixed migration flows and implement appropriate identification mechanisms and other measures deriving from them in order to respond to the special needs of all persons in need of protection and support ", - "values": [ - "Migrants" - ] - }, - { - "text": "Create an effective abuse detection system in the educational, health and alternative care systems, in order to discourage the use of violence and to provide assistance to victimised children", - "values": [ - "Rights of the Child" - ] - }, - { - "text": "Adopt more robust measures to protect the rights of migrant workers and temporary workers", - "values": [ - "Labour", - "Migrants" - ] - }, - { - "text": "Ensure the respect of the right to a fair trial, as provided by article 14 of the International Covenant on Civil and Political Rights, including the right to appeal for persons sentenced to death", - "values": [ - "Death penalty", - "International instruments", - "Justice" - ] - }, - { - "text": "Ratify the Optional Protocol to the Convention against Torture and set up a national prevention mechanism in the framework of the criteria and safeguards provided by this instrument, as previously recommended", - "values": [ - "Detention", - "International instruments", - "Torture and other CID treatment", - "UPR process" - ] - }, - { - "text": "Lift the reservation on article 4 of the International Convention on the Elimination of All Forms of Racial Discrimination", - "values": [ - "International instruments", - "Racial discrimination" - ] - }, - { - "text": "Seek support from the International community to advance on their efforts to implement the National Human Rights Action Plan", - "values": [ - "General" - ] - }, - { - "text": "Extend a standing invitation to special procedures to visit Cameroon ", - "values": [ - "Special procedures" - ] - }, - { - "text": "Ratify the CPED ", - "values": [ - "Enforced disappearances", - "International instruments" - ] - }, - { - "text": "Continue its efforts to provide universal access, and without discrimination, to the treatment, care and prevention of HIV/AIDS ", - "values": [ - "HIV - Aids" - ] - }, - { - "text": "Establish an institution to supervise and evaluate the implementation of the Convention on the Rights of the Child, in particular to put in place a plan of action to protect and reintegrate street children", - "values": [ - "International instruments", - "Rights of the Child" - ] - }, - { - "text": "Take the necessary steps to ratify or accede to the outstanding human rights instruments", - "values": [ - "International instruments" - ] - }, - { - "text": "Strengthen coordination within the new institutions for the protection of minors and persons with disabilities", - "values": [ - "Disabilities", - "Rights of the Child" - ] - }, - { - "text": "Consider positively the request for visit by Special Rapporteur on extrajudicial, summary or arbitrary executions and eventually extend a standing invitation to all special procedures of the Human Rights Council ", - "values": [ - "Extrajudicial executions", - "Special procedures" - ] - }, - { - "text": "Sign and ratify CED as soon as possible, and fully recognize the competence of the Committee on Enforced Disappearances ", - "values": [ - "Enforced disappearances", - "International instruments" - ] - }, - { - "text": "Continue to introduce new polices and measures that promote the social and economic inclusion of all persons with disabilities", - "values": [ - "Disabilities" - ] - }, - { - "text": "Strengthen criminal justice reform efforts in order to ensure a speedy and fair trial for all accused", - "values": [ - "Justice" - ] - }, - { - "text": "Adopt and implement laws that prohibit all forms of ill-treatment of children and that protect them from forced labour, sexual exploitation and abuse", - "values": [ - "Labour", - "Rights of the Child", - "Torture and other CID treatment" - ] - }, - { - "text": "Consider ways to ensure the 2017-2021 National Human Rights Plan is progressed and implemented in a manner consistent with the international human rights treaties to which Peru is a party", - "values": [ - "General" - ] - }, - { - "text": "Adopt efficient measures to reduce prison overcrowding and enhance hosting conditions of penitentiary facilities and shelters ", - "values": [ - "Detention" - ] - }, - { - "text": "Continue to enhance the realization of the human rights to water and sanitation, giving special attention to ensuring that all homes, health centres and educational establishments have safe drinking water and improved sanitation facilities", - "values": [ - "Right to water and sanitation" - ] - }, - { - "text": "Address the issue of unduly protracted detentions and to promote the use of alternative measures to pretrial detention, in particular for pregnant women and young children.", - "values": [ - "Detention", - "Rights of the Child", - "Women's rights" - ] - }, - { - "text": "Continue its efforts aimed at improving access to health services and education", - "values": [ - "Right to education", - "Right to health" - ] - }, - { - "text": "Enhance assistance, shelter and rehabilitation for victims of sexual and domestic violence ", - "values": [ - "Rights of the Child", - "Women's rights" - ] - }, - { - "text": "Devote sufficient resources to the criminal justice and prison systems in an effort to reduce the sentencing backlog", - "values": [ - "Detention", - "Justice" - ] - }, - { - "text": "Maintain systematic and fluid relationships with the International Committee of the Red Cross (ICRC) ", - "values": [ - "Detention" - ] - }, - { - "text": "Strengthen measures to combat AIDS and if necessary seek the assistance of the World Health Organization ", - "values": [ - "HIV - Aids" - ] - }, - { - "text": "Intensify efforts to combat trafficking, align its definitions of prostitution and trafficking with\ninternational law, intensify its efforts to provide support to women at risk and seek bilateral agreements with neighbouring States ", - "values": [ - "Trafficking", - "Women's rights" - ] - }, - { - "text": "Ensure human rights obligations in Papua are upheld, respected and promoted, including freedom of assembly, freedom of the press and the rights of women and minorities", - "values": [ - "Freedom of association and peaceful assembly", - "Freedom of the press", - "Minorities", - "Women's rights" - ] - }, - { - "text": "Urgently adopt and implement measures to address child labour, in particular its exploitative forms", - "values": [ - "Labour", - "Rights of the Child" - ] - }, - { - "text": "Call upon the international community to provide substantial technical assistance to Cote d'Ivoire in order to expand the already outstanding achievements made in human rights promotion ", - "values": [ - "Technical assistance and cooperation" - ] - }, - { - "text": "Complete the process of ratification of the International Convention for the Protection of All Persons from Enforced Disappearance", - "values": [ - "Enforced disappearances", - "International instruments" - ] - }, - { - "text": "Ratify ICRMW in order to enhance the full enjoyment of human rights ", - "values": [ - "International instruments", - "Labour", - "Migrants" - ] - }, - { - "text": "Continue strengthening measures of fighting against domestic violence and human trafficking, including by increasing the number and geographic coverage of reception centres for families and victims", - "values": [ - "Rights of the Child", - "Trafficking", - "Women's rights" - ] - }, - { - "text": "Abolish the practice of arraigo", - "values": [ - "Detention" - ] - }, - { - "text": "Strengthen its work towards combating trafficking in persons with assistance from the relevant United Nations agencies and the international community, as deemed necessary", - "values": [ - "Technical assistance and cooperation", - "Trafficking" - ] - }, - { - "text": "Take steps to promote equal working conditions for women and the right to private property ", - "values": [ - "Women's rights" - ] - }, - { - "text": "Establish quick and effective measures to prevent, punish and eliminate violence against women taking into account the recommendations of the Committee on Economic, Social and Cultural Rights and the Human Rights Committee on effective access to justice for the victims of gender violence, police protection and the establishment of shelters for victims", - "values": [ - "Treaty bodies", - "Women's rights" - ] - }, - { - "text": "Reinforce the fight against human trafficking", - "values": [ - "Trafficking" - ] - }, - { - "text": "Criminalize all forms of human trafficking of children by enacting the strict anti-trafficking legislation", - "values": [ - "Trafficking" - ] - }, - { - "text": "Impose an immediate moratorium on the death penalty with a view to abolishing it, and to ensure that it is never applied to persons under the age of 18 ", - "values": [ - "Death penalty", - "Rights of the Child" - ] - }, - { - "text": "Continue to modify and implement its legislation on freedom of expression and freedom of assembly and association in order to fully meet its international human rights obligations by, inter alia, simplifying notification requirements for planned demonstrations in the spirit of peaceful freedom of assembly", - "values": [ - "Freedom of association and peaceful assembly", - "Freedom of opinion and expression", - "International instruments" - ] - }, - { - "text": "Better protect women against all forms of violence, including honour killings, as required under the Criminal Code, the Law on Protection of the Family and the Law of Civil Status", - "values": [ - "Women's rights" - ] - }, - { - "text": "Adopt and implement a National Gender Policy, in consultation with all interested stakeholders, prior to its next Universal Periodic Review", - "values": [ - "UPR process", - "Women's rights" - ] - }, - { - "text": "Fully domesticate the human rights instruments which were recently acceded to with the aim of fully and effectively implementing them", - "values": [ - "International instruments" - ] - }, - { - "text": "Take measures to improve the follow-up to complaints of hate crimes", - "values": [ - "Racial discrimination" - ] - }, - { - "text": "Extend an invitation to the Special Rapporteur on freedom of religion or belief ", - "values": [ - "Freedom of religion and belief", - "Special procedures" - ] - }, - { - "text": "Respect international standards on capital punishment, especially the principles stated in resolution 1984/50 of the Economic and Social Council, and in particular ensure that capital punishment is applied only for the most serious crimes ", - "values": [ - "Death penalty" - ] - }, - { - "text": "Redouble its efforts towards combating stereotypical division of gender roles in family and society", - "values": [ - "Women's rights" - ] - }, - { - "text": "Engage in a genuine national dialogue in an open and inclusive manner with all stakeholders, with the aim of effectively addressing the legitimate aspirations and concerns of all the population in a comprehensive and inclusive manner", - "values": [ - "Civil society" - ] - }, - { - "text": "Adopt a moratorium on the application of death penalty to put an end to the practice of public executions and the imposition of the death penalty for religious or political crimes ", - "values": [ - "Death penalty" - ] - }, - { - "text": "Ensure the effective implementation of the right to development by strengthening local capacity", - "values": [ - "Development" - ] - }, - { - "text": "Continue strengthening efforts to ensure respect for the right to nondiscrimination of children in the country, in particular children and families living in poverty and children of minority groups, including the Roma ", - "values": [ - "Minorities", - "Rights of the Child" - ] - }, - { - "text": "Provide a clear definition of child labour and extend coverage of the Labour Code to include the informal sector, where children are mostly employed", - "values": [ - "Labour", - "Rights of the Child" - ] - }, - { - "text": "Adopt measures to eliminate all forms of racial discrimination, xenophobia and religious intolerance", - "values": [ - "Freedom of religion and belief", - "Racial discrimination" - ] - }, - { - "text": "Take concrete and practical measures to protect human rights defenders who, according to a United Nations joint report, have been threatened, attacked and in some cases murdered ", - "values": [ - "Human rights defenders" - ] - }, - { - "text": "Further strengthen the monitoring and evaluation efforts on women's empowerment and child protection", - "values": [ - "Rights of the Child", - "Women's rights" - ] - }, - { - "text": "Take efficient, comprehensive measures to combat female genital mutilation, including through appropriate public oriented awareness-raising campaigns ", - "values": [ - "Human rights education and training", - "Rights of the Child", - "Torture and other CID treatment", - "Women's rights" - ] - }, - { - "text": "Enact and fully implement the necessary laws to ensure protection against interference in the establishment, functioning, and administration of worker organizations, consistent with the recommendations of ILO", - "values": [ - "International instruments", - "Labour" - ] - }, - { - "text": "Establish the de facto moratorium on the death penalty and accede to the ICCPR Second Optional Protocol ", - "values": [ - "Death penalty", - "International instruments" - ] - }, - { - "text": "Strengthen its efforts to protect the human rights of all Ireland's citizens, including those from sub-Saharan Africa", - "values": [ - "Minorities" - ] - }, - { - "text": "Further promote microcredit programmes for the poorest", - "values": [ - "Development", - "Poverty" - ] - }, - { - "text": "Eliminate the use of torture and other cruel, inhuman degrading treatment or punishment in places of detention.", - "values": [ - "Detention", - "Torture and other CID treatment" - ] - }, - { - "text": "Consider to review the three-year time limit in the statute of limitations for bringing compensation claims in cases of coercive or non-consensual sterilizations in order to extend it", - "values": [ - "Torture and other CID treatment" - ] - }, - { - "text": "Continue to make progress on measures against migrants' discrimination", - "values": [ - "Migrants", - "Racial discrimination" - ] - }, - { - "text": "Continue improving the living conditions of detainees.", - "values": [ - "Detention" - ] - }, - { - "text": "Ratify the Second Optional Protocol to the International Covenant on Civil and Political Rights, aiming at the Abolition of the Death Penalty in all circumstances", - "values": [ - "Death penalty", - "International instruments" - ] - }, - { - "text": "Take appropriate steps to strengthen the implementation of the comprehensive strategy on combating sexual violence and to improve the effectiveness of the prosecution aimed at ending impunity of the perpetrators of crimes. ", - "values": [ - "Impunity", - "Women's rights" - ] - }, - { - "text": "Introduce a ban on all corporal punishment of children as recommended by the CRC and other treaty bodies ", - "values": [ - "Rights of the Child", - "Torture and other CID treatment", - "Treaty bodies" - ] - }, - { - "text": "Condemn strongly hate speech, adequately investigate racist hate speech and racially motivated violence and prosecute the perpetrators", - "values": [ - "Racial discrimination" - ] - }, - { - "text": "Take measures, at the national level, against the sexual exploitation of minors", - "values": [ - "Rights of the Child" - ] - }, - { - "text": "Improve data collection and statistics on violence against women ", - "values": [ - "Women's rights" - ] - }, - { - "text": "Ratify the Convention on the Rights of Persons with Disabilities, as well as its optional protocol", - "values": [ - "Disabilities", - "International instruments" - ] - }, - { - "text": "Increase its ongoing efforts aimed at promoting equitable health rights for all Cambodian people ", - "values": [ - "Right to health" - ] - }, - { - "text": "Incorporate a gender perspective in all government policies that target women belonging to different groups of vulnerable people, in line with relevant recommendations of the Committee on the Elimination of Discrimination against Women", - "values": [ - "Treaty bodies", - "Women's rights" - ] - }, - { - "text": "Strengthen its efforts to include the various Iranian cultures and traditions in its national legislation", - "values": [ - "Other" - ] - }, - { - "text": "Continue efforts to ensure that "secret evidence" is only used in cases where there is a serious and immediate threat to public security and ensure independent and effective judicial oversight ", - "values": [ - "Justice" - ] - }, - { - "text": "Give due consideration to the establishment of a national human rights institution in accordance with the Paris Principles ", - "values": [ - "National Human Rights Institution" - ] - }, - { - "text": "Treat appropriately all the refugees, migrants and asylum seekers who have reached the Australian shores, to effectively safeguard their human rights", - "values": [ - "Asylum-seekers - refugees", - "Migrants" - ] - }, - { - "text": "Envisage ratifying OP-CAT and the Rome Statute of ICC ", - "values": [ - "Detention", - "International instruments", - "Justice", - "Torture and other CID treatment" - ] - }, - { - "text": "Regulate minority and indigenous rights on the constitutional and legislative level, to establish a National Minorities Commission and to set up a national policy for the promotion and protection of minority languages", - "values": [ - "Indigenous peoples", - "Minorities" - ] - }, - { - "text": "Carry on its efforts to protect the rights of vulnerable groups including children and persons with disabilities ", - "values": [ - "Disabilities", - "Rights of the Child" - ] - }, - { - "text": "Ensure that national and regional laws and policies do not discriminate against any individuals in society, including lesbian, gay, bisexual, transgender and intersex persons, and are in line with its international obligations, such as the International Covenant on Civil and Political Rights and the Universal Declaration of Human Rights", - "values": [ - "CP rights - general", - "International instruments", - "Sexual Orientation and Gender Identity" - ] - }, - { - "text": "Consider eliminating the death penalty for people who were under 18 at the time of the commission of the crime for which they were convicted, as stipulated by CRC, and withdraw its general reservation to the CRC", - "values": [ - "Death penalty", - "International instruments", - "Rights of the Child" - ] - }, - { - "text": "Issue clear public orders to the Somali National Forces not to commit unlawful attacks against civilians", - "values": [ - "Human rights violations by state agents", - "International humanitarian law" - ] - }, - { - "text": "Continue to work with the countries of the region in special programs that address the situation of criminality against migrants", - "values": [ - "Migrants" - ] - }, - { - "text": "Establish a special body to combat racism and discrimination based on race, ethnicity, nationality, language and religion", - "values": [ - "Freedom of religion and belief", - "Minorities", - "Racial discrimination" - ] - }, - { - "text": "Guarantee dual nationality in order to prevent discrimination against children whose parents have not renounced their nationality of origin", - "values": [ - "Rights of the Child", - "Statelessness and the right to nationality" - ] - }, - { - "text": "Accelerate the implementation of the laws on the freedom of expression, assembly and association and to ensure alignment with international standards, including under possible emergency measures", - "values": [ - "Freedom of association and peaceful assembly", - "Freedom of opinion and expression" - ] - }, - { - "text": "Rapidly complete the process of aligning its national law with the provisions of the Rome Statute of the International Criminal Court ", - "values": [ - "International instruments", - "Justice" - ] - }, - { - "text": "Increase its efforts to combat racial discrimination and racist attacks, particularly against the Roma", - "values": [ - "Minorities", - "Racial discrimination" - ] - }, - { - "text": "Continue its public awareness campaigns and fast tracking of investigation and prosecution of criminal cases in order to demonstrate to the population that the issue of killing albinos was to be taken seriously ", - "values": [ - "Disabilities", - "Human rights education and training" - ] - }, - { - "text": "Continue to strengthen the legal system and the State mechanism to protect human rights", - "values": [ - "Justice" - ] - }, - { - "text": "Sign and ratify the International Convention for the Protection of All Persons from Enforced Disappearance, thereby recognizing its competence, pursuant to articles 31 and 32 of that instrument", - "values": [ - "Enforced disappearances", - "International instruments" - ] - }, - { - "text": "Maintain its resolve to eliminate harmful practices against women and children", - "values": [ - "Rights of the Child", - "Torture and other CID treatment", - "Women's rights" - ] - }, - { - "text": "Halt immediately all executions and implement a moratorium on the use of the death penalty", - "values": [ - "Death penalty" - ] - }, - { - "text": "Adopt legislation to criminalize any diffusion of ideas based on racial superiority or hatred, any incitement to racial discrimination or any act of racially motivated violence", - "values": [ - "Racial discrimination" - ] - }, - { - "text": "Strengthen the actions which ensure the effective implementation of legislation on special protection for women victims of violence ", - "values": [ - "Women's rights" - ] - }, - { - "text": "Adopt holistic plans and policies to achieve gender equality in public and private spheres and further recommends that specific measures be taken to increase women\u2019s participation at all levels and promote women\u2019s appointment in leadership positions", - "values": [ - "Women's rights" - ] - }, - { - "text": "Ensure the respect of the fundamental rights and freedoms of all the population, in particular women and children, and adopt all necessary measures to guarantee the fight against the impunity of the perpetrators of crimes, acts of violence and all human rights violations ", - "values": [ - "Impunity", - "Rights of the Child", - "Women's rights" - ] - }, - { - "text": "The Government will furthermore support and strengthen national capacities in implementing its human rights obligations, including those of the police, law enforcement personnel, prison and security officers, the media, non-governmental organizations and development actors.", - "values": [ - "Civil society", - "Detention", - "Development", - "Freedom of the press", - "Justice" - ] - }, - { - "text": "Foresee measures that would guarantee the right to their religions to groups that will become minorities in both countries after the birth of the new State, namely Muslims in South Sudan and non-Muslims in (north) Sudan ", - "values": [ - "Freedom of religion and belief", - "Minorities" - ] - }, - { - "text": "Take actions to stop the use of torture, including sexual torture", - "values": [ - "Torture and other CID treatment" - ] - }, - { - "text": "To share the Ecuadorian experience and provide interested countries with assistance relating to its programmes in the field of inclusion of persons with disabilities", - "values": [ - "Disabilities", - "Technical assistance and cooperation" - ] - }, - { - "text": "Adapt its legislation and take the necessary measures to guarantee the full enjoyment of the right to freedom of religion or belief, including for religious minorities", - "values": [ - "Freedom of religion and belief", - "Minorities" - ] - }, - { - "text": "Continue a dialogue with minority religions", - "values": [ - "Freedom of religion and belief", - "Minorities" - ] - }, - { - "text": "Review legislative measures restricting freedom of opinion and expression, including the Communications Law ", - "values": [ - "Freedom of opinion and expression", - "Freedom of the press" - ] - }, - { - "text": "Continue to increase input in health sector and provide health services to its poor population", - "values": [ - "Poverty", - "Right to health" - ] - }, - { - "text": "Strengthen and ensure the independence of its human rights institutions such as the National Human Rights Commission in accordance with the Paris Principles and ensure its pluralist character.", - "values": [ - "National Human Rights Institution" - ] - }, - { - "text": "Continue working to boost the participation of women in political and executive positions under principles of equality without discrimination, particularly guaranteeing the participation of rural women", - "values": [ - "Women's rights" - ] - }, - { - "text": "Ensure an immediate restoration of the rule of law and protection of its civilian population, especially vulnerable groups such as women and children", - "values": [ - "Justice", - "Public security", - "Rights of the Child", - "Women's rights" - ] - }, - { - "text": "Implement effective measures to fight child labour and trafficking in children.", - "values": [ - "Labour", - "Rights of the Child", - "Trafficking" - ] - }, - { - "text": "Achieve real progress with regard to women's rights by reforming the Nationality Act, to ensure gender equality and to give Qatari women the right to transmit their nationality to their children, and by withdrawing reservations to the Convention on the Elimination of All Forms of Discrimination against Women and the Optional Protocol thereto ", - "values": [ - "International instruments", - "Women's rights" - ] - }, - { - "text": "Promote substantive reforms in the immigration policy, which guarantee its conformity with international standards, revoking measures exposing foreigners to marginalization ", - "values": [ - "Migrants" - ] - }, - { - "text": "Prohibit corporal punishment of children in all settings ", - "values": [ - "Rights of the Child", - "Torture and other CID treatment" - ] - }, - { - "text": "Take effective measures to establish a functioning justice system with an independent judiciary and work to end the culture of impunity for perpetrators of torture and ill-treatment ", - "values": [ - "Impunity", - "Justice", - "Torture and other CID treatment" - ] - }, - { - "text": "Introduce measures to ensure judicial independence, including through the establishment of an independent regulatory commission or body to oversee the appointment and removal of members of judiciary", - "values": [ - "Justice" - ] - }, - { - "text": "Allocate sufficient financial resources to the health sector to improve access to health care and to rebuild health infrastructure ", - "values": [ - "Right to health" - ] - }, - { - "text": "Ratify the International Convention for the Protection of All Persons against Enforced Disappearance, signed in 2008, without reservations and recognize the competency of the Committee on Enforced Disappearance to receive and examine communications", - "values": [ - "Enforced disappearances", - "International instruments", - "Treaty bodies" - ] - }, - { - "text": "Modify its national and customary laws in order to prevent child, early and forced marriage", - "values": [ - "Rights of the Child", - "Women's rights" - ] - }, - { - "text": "Consider taking the requisite measures aimed at the speedy ratification of all the outstanding international human rights instruments accepted in 2010, these being ICCPR-OP 2, CAT, OP-CAT and OP-ICESCR", - "values": [ - "Death penalty", - "Detention", - "ESC rights - general", - "International instruments", - "Torture and other CID treatment" - ] - }, - { - "text": "Reform its legislative arsenal on this point and establish effective protection of homosexuals against discrimination and attacks", - "values": [ - "Sexual Orientation and Gender Identity" - ] - }, - { - "text": "Continue to allocate sufficient resources to address the challenge of overcrowding, inadequate health and other services in the prisons, and to bring the prison conditions into line with international standards.", - "values": [ - "Detention" - ] - }, - { - "text": "Align its national legislation with all obligations under the Rome Statute, including by incorporating the provisions enabling cooperation with the Court ", - "values": [ - "International instruments", - "Justice" - ] - }, - { - "text": "Pay more attention to providing better treatment for foreigners ", - "values": [ - "Migrants" - ] - }, - { - "text": "That the President of the Gambia reject provisions in the proposed Criminal Code on aggravated homosexuality and absconding State officials", - "values": [ - "Sexual Orientation and Gender Identity" - ] - }, - { - "text": "Adopt measures to prevent, punish and eradicate violence against women", - "values": [ - "Women's rights" - ] - }, - { - "text": "Ensure that all aspects of criminal procedure are in line with accepted international standards", - "values": [ - "General" - ] - }, - { - "text": "Continue to implement the National Strategy for Preventing and Combating Violence against Children", - "values": [ - "Rights of the Child" - ] - }, - { - "text": "Conduct impartial investigations into all cases of attacks, harassment and intimidation of journalists and bring perpetrators to justice", - "values": [ - "Freedom of the press" - ] - }, - { - "text": "Strengthen the combat against violence against women, ensuring care for victims and their access to justice", - "values": [ - "Women's rights" - ] - }, - { - "text": "Ensure the effective implementation of the Prohibition of Female Genital Mutilation Act of 2010, as well as to prosecute and punish the perpetrators of that practise ", - "values": [ - "Rights of the Child", - "Torture and other CID treatment", - "Women's rights" - ] - }, - { - "text": "Guarantee freedom of association and expression for all citizens, including the press, human rights defenders, political parties, civic organizations and trade unions ", - "values": [ - "Civil society", - "Freedom of association and peaceful assembly", - "Freedom of opinion and expression", - "Freedom of the press", - "Human rights defenders", - "Labour" - ] - }, - { - "text": "Guarantee an environment for journalists free of intimidation and attacks", - "values": [ - "Freedom of the press" - ] - }, - { - "text": "Raise the school attendance rate and develop facilities at the various levels of education, while favouring gender equality and access to education, with technical and financial assistance provided by the international community.", - "values": [ - "Right to education", - "Technical assistance and cooperation", - "Women's rights" - ] - }, - { - "text": "Ensure that education covers all areas of the country, including the living areas of refugees, bearing in mind that the mandate of the UNRWA covers the educational needs of Palestinian refugees.", - "values": [ - "Asylum-seekers - refugees", - "Right to education" - ] - }, - { - "text": "Further strengthen the rule of law and institutions to enforce social cohesion, tolerance and equality in order to exhaustively guarantee human rights for its people, in particular those of vulnerable groups such as women, children, displaced and disabled persons ", - "values": [ - "Disabilities", - "Rights of the Child", - "Women's rights" - ] - }, - { - "text": "Consider amending the Internal Security Act and bring domestic security legislation in line with international human rights standards, including through increasing legal safeguards of detainees and abolishing the practice of long detention without trial", - "values": [ - "Detention", - "International instruments", - "Justice" - ] - }, - { - "text": "Register all individuals detained under security laws, and make this information publicly available.", - "values": [ - "Detention" - ] - }, - { - "text": "Consolidate the constitutional and legislative framework to prevent discrimination against persons with disabilities ", - "values": [ - "Disabilities" - ] - }, - { - "text": "Respond to communications and questionnaires of mandate holders.", - "values": [ - "Special procedures" - ] - }, - { - "text": "Continue its efforts to ensure full respect for human rights and further pursue the implementation of the national action plan in that direction, taking into account as a matter of priority\nthe importance of respecting the freedoms of religion and belief", - "values": [ - "Freedom of religion and belief" - ] - }, - { - "text": "Accredit the National Human Rights Institution and Ombudsman's Office before the International Coordinating Committee of National Human Rights Institutions ", - "values": [ - "National Human Rights Institution" - ] - }, - { - "text": "Ratify core human rights treaties like ICCPR, ICESCR, and CAT and ensure that their provisions are respected in national legislation", - "values": [ - "CP rights - general", - "ESC rights - general", - "International instruments", - "Torture and other CID treatment" - ] - }, - { - "text": "Continue to improve and implement the poverty reduction strategy with the emphasis on lifting vulnerable groups, like women in rural areas, out of poverty", - "values": [ - "Poverty", - "Women's rights" - ] - }, - { - "text": "Take effective measures to overcome deep-rooted stereotypes on the role of women and girls ", - "values": [ - "Rights of the Child", - "Women's rights" - ] - }, - { - "text": "Continue the process of ratification of international instruments on human rights", - "values": [ - "International instruments" - ] - }, - { - "text": "Reform the status of the National Commission of Human Rights in line with the Paris Principles, thereby guaranteeing its independence", - "values": [ - "International instruments", - "National Human Rights Institution" - ] - }, - { - "text": "Step up efforts to consider acceding to ILO Convention 189 (2011) concerning decent work for domestic workers ", - "values": [ - "International instruments", - "Labour" - ] - }, - { - "text": "Strengthen efforts in order to achieve the MDGs and coordinate efforts with other developing countries and stakeholders", - "values": [ - "Development" - ] - }, - { - "text": "Drop the planned amendments to the Terrorism Suppression Act, which would broaden the definition of a terrorist act by reducing judicial oversight, allow courts to consider classified information without giving it to defendants and give the Prime Minister the sole responsibility for designating groups and individuals as terrorists.", - "values": [ - "Counter-terrorism" - ] - }, - { - "text": "Taking note of reduction of number of crimes punishable by the death sentence, consider introducing a moratorium with a view to abolish the death penalty in the future ", - "values": [ - "Death penalty" - ] - }, - { - "text": "Ensure compliance with the Standard Minimum Rules for the Treatment of Prisoners and guarantee all detainees access to a fair and equitable trial within a reasonable time frame", - "values": [ - "Detention", - "Justice" - ] - }, - { - "text": "Strengthen its domestic mechanisms, especially towards eliminating acts of discrimination and violence against women and girls", - "values": [ - "Rights of the Child", - "Women's rights" - ] - }, - { - "text": "Adopt measures to combat trafficking in persons, particularly women and children", - "values": [ - "Rights of the Child", - "Trafficking", - "Women's rights" - ] - }, - { - "text": "Introduce a freedom of information law", - "values": [ - "Freedom of opinion and expression" - ] - }, - { - "text": "Fully implement the 2001 land law and institute a moratorium on evictions until safeguards such as full compensation and access to basic services in resettlement areas can be guaranteed ", - "values": [ - "Right to land" - ] - }, - { - "text": "Adopt concrete measures to ensure protection of journalists and human rights defenders against intimidation, death threats and enforced disappearances, and ensure full investigation of any such cases as well as prosecution of their perpetrators.", - "values": [ - "Freedom of the press", - "Human rights defenders" - ] - }, - { - "text": "Establish the National Human Rights Institution in line with the Paris Principles", - "values": [ - "National Human Rights Institution" - ] - }, - { - "text": "Strengthen its legislation as well as promptly implement existing legislation, with a view to promote and protect women's rights", - "values": [ - "Women's rights" - ] - }, - { - "text": "Increase the number of police officers, in conjunction with capacity development of the Public Prosecutor's Office. ", - "values": [ - "Public security" - ] - }, - { - "text": "The remaining demining activity in respect of conflict affected areas will be completed so as to facilitate return of the displaced in keeping with the national mine action programme", - "values": [ - "Internally displaced persons" - ] - }, - { - "text": "Comply with its existing international and regional human rights obligations", - "values": [ - "International instruments" - ] - }, - { - "text": "Ensure that members of political parties, media and civil society are permitted to exercise freely their rights to free expression, association and peaceful assembly according to international standards", - "values": [ - "Civil society", - "Freedom of association and peaceful assembly", - "Freedom of opinion and expression", - "Freedom of the press" - ] - }, - { - "text": "Continue its efforts to address the adverse effects of the sanctions imposed during the 1990s", - "values": [ - "Other" - ] - }, - { - "text": "Proceed to forced expulsions only in strict compliance with international and regional standards ", - "values": [ - "Asylum-seekers - refugees" - ] - }, - { - "text": "Sign and ratify the Convention against Torture and Other Cruel, Inhuman or Degrading Treatment or Punishment ", - "values": [ - "International instruments", - "Torture and other CID treatment" - ] - }, - { - "text": "Continue its efforts for a systematic and sustained training process of child as well as developing the Child Protection Management Information System (CPMIS) and advancement in child immunization", - "values": [ - "Rights of the Child" - ] - }, - { - "text": "Adopt further measures to end impunity for attacks against human rights defenders and against persons because of their sexual orientation or gender identity, including specific education and awareness raising programmes for law enforcement, judicial and other authorities, which focus, inter alia, on protection of enjoyment of human rights by persons of minority sexual orientation and gender identity.", - "values": [ - "Human rights defenders", - "Human rights education and training", - "Impunity", - "Sexual Orientation and Gender Identity" - ] - }, - { - "text": "Establish permanent courts in all 13 municipalities to increase access to justice, particularly in rural areas", - "values": [ - "Justice" - ] - }, - { - "text": "Provide human rights education and sensitivity training to all members of civil service, armed forces, prison and judicial staff, focusing specifically on protection of human rights of women, children and other vulnerable groups. ", - "values": [ - "Human rights education and training", - "Rights of the Child", - "Women's rights" - ] - }, - { - "text": "End all arbitrary detention and strengthen the capacity on the judicial system as addressed in the country report following the previous Universal Periodic Review ", - "values": [ - "Detention", - "Justice", - "UPR process" - ] - }, - { - "text": "Finalize the review of the mandatory nature of the death penalty, maintain a moratorium and ultimately move to abolish the death penalty", - "values": [ - "Death penalty" - ] - }, - { - "text": "Put equal emphasis and commitment on the realization of economic, social and cultural rights", - "values": [ - "ESC rights - general" - ] - }, - { - "text": "Amend the national legislation in order to make it compatible with international human rights standards, and to establish an NHRI", - "values": [ - "National Human Rights Institution" - ] - }, - { - "text": "Strengthen efforts to eliminate violence against women and girls and harmful practices", - "values": [ - "Rights of the Child", - "Torture and other CID treatment", - "Women's rights" - ] - }, - { - "text": "Provide secure shelter, as well as psychological and other assistance, to victims of domestic violence", - "values": [ - "Rights of the Child", - "Women's rights" - ] - }, - { - "text": "Continue its efforts to eradicate child labour and further enhance the protection of the rights of the child", - "values": [ - "Labour", - "Rights of the Child" - ] - }, - { - "text": "Increase advocacy for freedom from discrimination based on sexual orientation and gender identity through public education and awareness building and address violence targeting LGBT persons through training for police, first responders and justice system officials ", - "values": [ - "Human rights education and training", - "Sexual Orientation and Gender Identity" - ] - }, - { - "text": "Further ratify the International Covenant on Economic, Social and Cultural Rights and the Convention against Torture", - "values": [ - "ESC rights - general", - "International instruments", - "Torture and other CID treatment" - ] - }, - { - "text": "Amend national legislation to include "sexual orientation" and "gender" as prohibited grounds for discrimination ", - "values": [ - "Sexual Orientation and Gender Identity" - ] - }, - { - "text": "Strengthen its national machinery for the protection and advancement of women and girls ", - "values": [ - "Rights of the Child", - "Women's rights" - ] - }, - { - "text": "Lift the infamous economic, commercial and financial blockade as well as liberate immediately the five Cubans held in prison for 12 years ", - "values": [ - "Other" - ] - }, - { - "text": "Strengthen its efforts to eliminate all forms of violence and discrimination against women and children", - "values": [ - "Rights of the Child", - "Women's rights" - ] - }, - { - "text": "Take all necessary steps to protect human rights defenders from intimidation, ill-treatment or violence, including enforced disappearances, and to ensure prompt, impartial and thorough investigation of all allegations, including those of enforced disappearances", - "values": [ - "Enforced disappearances", - "Human rights defenders", - "Torture and other CID treatment" - ] - }, - { - "text": "Promote gender equality and take measures, both in law and practice, in order to increase the participation of women in public life", - "values": [ - "Women's rights" - ] - }, - { - "text": "Do everything necessary to revitalize the discussions within the parliamentary working group on the death penalty and ensure that the minimum standards are applied pending an eventual moratorium", - "values": [ - "Death penalty" - ] - }, - { - "text": "Ratify the Second Optional Protocol to the International Covenant on Civil and Political Rights, aimed at abolishing the death penalty", - "values": [ - "Death penalty", - "International instruments" - ] - }, - { - "text": "Continue seeking technical assistance from the international community, particularly through OHCHR, towards capacity-building in human rights training and other areas, to augment the country's efforts in meeting its human rights obligations, both domestically and internationally", - "values": [ - "Human rights education and training", - "International instruments", - "Technical assistance and cooperation" - ] - }, - { - "text": "Pending abolition of the death penalty, reinstate the moratorium on executions and introduce a statutory prohibition on the death penalty and execution of persons with mental disabilities and those who were juveniles at the time of the crime", - "values": [ - "Death penalty", - "Rights of the Child" - ] - }, - { - "text": "Ensure the birth registration of all children in French Guyana", - "values": [ - "Rights of the Child", - "Statelessness and the right to nationality" - ] - }, - { - "text": "Guarantee to women effective access to the courts and strengthen assistance and support to victims ", - "values": [ - "Justice", - "Women's rights" - ] - }, - { - "text": "Incorporate in its legislation a definition of discrimination against women and the principle of equality between men and women, in keeping with its obligations under the Convention on the Elimination of All Forms of Discrimination against Women", - "values": [ - "International instruments", - "Women's rights" - ] - }, - { - "text": "Step up its efforts to protect women and girls from sexual violence", - "values": [ - "Rights of the Child", - "Women's rights" - ] - }, - { - "text": "Strengthen the education system to reduce gender disparity and improve the education standard throughout the country", - "values": [ - "Right to education", - "Women's rights" - ] - }, - { - "text": "Accede to the Agreement on the Privileges and Immunities of the International Criminal Court and implement it fully at the national level", - "values": [ - "International instruments", - "Justice" - ] - }, - { - "text": "Align the national human rights institution with the Paris Principles and adopt a national human rights plan encompassing all agencies of the public administration, with short-term strategies and goals ", - "values": [ - "National Human Rights Institution" - ] - }, - { - "text": "Put in place a national human rights institution which is in full compliance with the Paris Principles", - "values": [ - "National Human Rights Institution" - ] - }, - { - "text": "Consider the observations of the United Nations High Commissioner for Refugees regarding the International Protection Act and the screening of asylum seekers and refugees", - "values": [ - "Asylum-seekers - refugees" - ] - }, - { - "text": "Protect the human rights of persons with disabilities to ensure full access to those rights for all, in compliance with the Convention on the Rights of Persons with Disabilities", - "values": [ - "Disabilities", - "International instruments" - ] - }, - { - "text": "Accede to the Convention on the Rights of all Migrant Workers and Members of Their Families.", - "values": [ - "International instruments", - "Labour", - "Migrants" - ] - }, - { - "text": "Amend relevant articles of the Law on Foundations and allow the Turkish Muslim minority to have full power over the control and supervision of its foundations ", - "values": [ - "Freedom of religion and belief", - "Minorities" - ] - }, - { - "text": "Ensure respect for freedom of opinion and expression", - "values": [ - "Freedom of opinion and expression" - ] - }, - { - "text": "Continue efforts to prevent and eliminate child labour and, if necessary, adopt further measures in this area ", - "values": [ - "Labour", - "Rights of the Child" - ] - }, - { - "text": "Intensify training and information programmes for law enforcement officials to ensure full respect for human rights during the performance of their duties ", - "values": [ - "Human rights education and training" - ] - }, - { - "text": "Adopt specific economic, social and cultural measures to combat discrimination and promote equal opportunities for disadvantaged and marginalized individuals and groups ", - "values": [ - "Other" - ] - }, - { - "text": "Take measures to reverse secondary school drop-out rates resulting from the introduction of cost-sharing.", - "values": [ - "Right to education" - ] - }, - { - "text": "Refrain from enacting the proposed Public Order Management Bill and fully guarantee the freedom of assembly", - "values": [ - "Freedom of association and peaceful assembly" - ] - }, - { - "text": "Fight against domestic violence through more effective measures against perpetrators, and especially by protecting and avoiding the deportation of migrant women victims of gender violence", - "values": [ - "Migrants", - "Women's rights" - ] - }, - { - "text": "Continue strengthening the social programmes and plans which drive the fight against social exclusion and inequality, with emphasis on the areas of employment, food and health and paying special attention to the most vulnerable sectors", - "values": [ - "Development", - "Right to food", - "Right to health" - ] - }, - { - "text": "Improve the procedures for the protection against child abuse", - "values": [ - "Rights of the Child" - ] - }, - { - "text": "Urgently conduct new trials of all defendants who have been convicted in national safety courts", - "values": [ - "Justice" - ] - }, - { - "text": "Put in place a new fully independent national human rights institution in line with the Paris Principles", - "values": [ - "National Human Rights Institution" - ] - }, - { - "text": "Provide national human rights institutions with sufficient financial and human resources to carry out their mandate ", - "values": [ - "National Human Rights Institution" - ] - }, - { - "text": "Take additional efforts towards the participation of women in the area of political life", - "values": [ - "Women's rights" - ] - }, - { - "text": "Provide financial and human resources to the Interior Ministry to seize the large quantities of arms that exist within the civilian population and to improve the security situation and the living conditions of its prisons.", - "values": [ - "Detention", - "Public security" - ] - }, - { - "text": "Work to ensure that the legislation necessary to give effect to the Rome Statute be adopted as soon as possible, prosecute all those accused of war crimes and crimes against humanity, regardless of their position in the hierarchy, and strip of their function in the army or civil service those identified as perpetrators of grave human rights violations. ", - "values": [ - "International instruments", - "Justice" - ] - }, - { - "text": "Amend the Action Plan to Promote Equality and Prevent Ethnic Discrimination 2009-2012 and the Action Plan to Improve Standards for Roma People June 2009 to contain policies that specifically address labour market inequalities based on ethnic origin ", - "values": [ - "Minorities" - ] - }, - { - "text": "Establish an official moratorium on executions, and sign and ratify the Second Optional Protocol to the International Covenant on Civil and Political Rights, aiming to abolition of the death penalty", - "values": [ - "Death penalty", - "International instruments" - ] - }, - { - "text": "Seek assistance from the United Nations specialized agencies, funds and programmes, especially within the framework of partnerships, with a view to realizing human rights in the areas of education, health, housing and development, and in addressing the legacy of nuclear tests ", - "values": [ - "Development", - "Right to education", - "Right to health", - "Right to housing", - "Technical assistance and cooperation" - ] - }, - { - "text": "Continue its efforts to enhance access to quality education for all its young citizens, especially those with special needs ", - "values": [ - "Disabilities", - "Right to education" - ] - }, - { - "text": "Consider repealing the provisions, which allow administrative detention and guarantee to all detainees immediate access to lawyers, doctors and family members", - "values": [ - "Detention" - ] - }, - { - "text": "Take measures to increase the participation of women in governance and decision-making bodies", - "values": [ - "Women's rights" - ] - }, - { - "text": "Improve the situation of persons with disabilities", - "values": [ - "Disabilities" - ] - }, - { - "text": "Issue an open invitation to the Special Procedures ", - "values": [ - "Special procedures" - ] - }, - { - "text": "Accede to the 1951 Convention relating to the Status of Refugees and the 1967 Protocol thereto, and ensure effective protection of refugees in line with international standards.", - "values": [ - "Asylum-seekers - refugees", - "International instruments" - ] - }, - { - "text": "Continue to take effective measures for the protection of indigenous peoples' rights", - "values": [ - "Indigenous peoples" - ] - }, - { - "text": "Establish a monitoring and coordination mechanism to implement the national humans rights action plan", - "values": [ - "General" - ] - }, - { - "text": "Cognizant of the de facto moratorium on capital punishment, consider abolishing the death penalty ", - "values": [ - "Death penalty" - ] - }, - { - "text": "Adopt the draft law on amending and completing the Criminal Code and the Code of Administrative Offences with regard to bias-motivated crimes and incidents to also include sexual orientation, gender identity and gender expression as grounds for hate crimes", - "values": [ - "Sexual Orientation and Gender Identity" - ] - }, - { - "text": "Establish full collaboration with the International Criminal Tribunal for the Former Yugoslavia", - "values": [ - "Justice" - ] - }, - { - "text": "Maintain the humane policy that ensures the protection of the rights of migrants, and guarantee them access to justice, education and healthcare, regardless of their status", - "values": [ - "Justice", - "Migrants", - "Right to education", - "Right to health" - ] - }, - { - "text": "Make further efforts to build the capacity in both human resources and in the health sector to deal with epidemics and other health challenges, and request the international community to continue to assist Sierra Leone in building the capacity", - "values": [ - "Right to health" - ] - }, - { - "text": "In accordance with the Constitution, to allow ethnic minorities to fully exercise their human rights, to preserve their cultural identity and to ensure their participation in decision-making; (and address these issues in the National Plan of Action)", - "values": [ - "Minorities" - ] - }, - { - "text": "Ratify the American Convention on Human Rights and accept the jurisdiction of the Inter-American Court of Human Rights", - "values": [ - "International instruments" - ] - }, - { - "text": "Accelerate the establishment and functioning of the National Children's Authority to prevent and combat violence, exploitation and other degrading practices", - "values": [ - "Rights of the Child" - ] - }, - { - "text": "Ratify the Optional Protocol to the Convention against Torture and establish a national mechanism for visits to places of detention", - "values": [ - "Detention", - "International instruments", - "Torture and other CID treatment" - ] - }, - { - "text": "Consider giving more role to the private sector in developing the national education and health-care systems ", - "values": [ - "Right to education", - "Right to health" - ] - }, - { - "text": "Continue its national plans and programmes to improve the quality of education", - "values": [ - "Right to education" - ] - }, - { - "text": "Renew its commitment to a comprehensive reform of legislation aimed at guaranteeing the rule of law, the freedom of thought, religion, expression and of the media, in compliance with international standards", - "values": [ - "Freedom of opinion and expression", - "Freedom of religion and belief", - "Freedom of the press", - "Justice" - ] - }, - { - "text": "Ensure the exercise of the right to freedom of expression, including through access to Internet sites and social networks without undue restrictions", - "values": [ - "Freedom of opinion and expression" - ] - }, - { - "text": "Seek to reform those legal provisions that still allow direct or indirect discrimination against women", - "values": [ - "Women's rights" - ] - }, - { - "text": "Strengthen the legal and institutional framework to fight against child marriage", - "values": [ - "Rights of the Child" - ] - }, - { - "text": "Continue strengthening the independence and impartiality of the judiciary and guaranteeing greater transparency of legal procedures, through measures such as the review of the Criminal Code and of the Public Prosecutor's Office ", - "values": [ - "Justice" - ] - }, - { - "text": "Allocate the necessary financial and human resources for the effective exercise of the National Commission for Human Rights and the Human Rights Committee of the National Assembly's mandates", - "values": [ - "National Human Rights Institution" - ] - }, - { - "text": "Taking into account the provisions of the CRC, to take further measures to prohibit all forms of violence against children, including corporal punishment and to raise the minimum age of criminal responsibility", - "values": [ - "International instruments", - "Rights of the Child", - "Torture and other CID treatment" - ] - }, - { - "text": "Adopt comprehensive anti-discrimination measures, to promote equal political, social and economic rights of women of ethnic minorities", - "values": [ - "Minorities", - "Women's rights" - ] - }, - { - "text": "Change a de facto moratorium, which is in place in Myanmar since 1988, to a de jure moratorium on the use of the death penalty as a first step to its abolishing", - "values": [ - "Death penalty" - ] - }, - { - "text": "Complete the process for the ratification of the two Optional Protocols to CRC ", - "values": [ - "International instruments", - "Rights of the Child" - ] - }, - { - "text": "Intensify the efforts aimed at ensuring that those responsible for acts of sexual violence against women are brought to justice.", - "values": [ - "Women's rights" - ] - }, - { - "text": "Take all necessary steps to formally abolish the death penalty", - "values": [ - "Death penalty" - ] - }, - { - "text": "Enact the relevant legislation to eradicate and ban xenophobia and racial discrimination in all spheres including education, employment and housing", - "values": [ - "Racial discrimination" - ] - }, - { - "text": "Promote the strengthening of the very foundation of the family and its associated values in society through appropriate ways and means.", - "values": [ - "General" - ] - }, - { - "text": "Consider reinstating, without qualification, the Racial Discrimination Act into the arrangements under the Northern Territory Emergency Response and any subsequent arrangement ", - "values": [ - "Racial discrimination" - ] - }, - { - "text": "Respect its obligations under international law and refrain from reintroducing capital punishment", - "values": [ - "Death penalty" - ] - }, - { - "text": "Continue strengthening the application of the National Human Rights Action Plan", - "values": [ - "General" - ] - }, - { - "text": "Ensure that the new legislation of ", - "values": [ - "Indigenous peoples" - ] - }, - { - "text": "Explicitly prohibit corporal punishment of children in all settings", - "values": [ - "Rights of the Child", - "Torture and other CID treatment" - ] - }, - { - "text": "Fully align its national legislation with all obligations under the Rome Statute of the International Criminal Court", - "values": [ - "International instruments", - "Justice" - ] - }, - { - "text": "Support repeal of the provision of the Penal Code criminalizing consensual sex between adult males ", - "values": [ - "Sexual Orientation and Gender Identity" - ] - }, - { - "text": "Continue to improve its policies and programmes towards advancing the status of women, girls, children, including those with disabilities and the overall human rights situation, both in the enjoyment of civil and political rights as well as social, economic and cultural rights", - "values": [ - "Disabilities", - "Rights of the Child", - "Women's rights" - ] - }, - { - "text": "Consider ratifying CRPD and its Optional Protocol, and accomplish the human rights goals set by the Human Rights Council in resolution 9-12 ", - "values": [ - "Disabilities", - "International instruments" - ] - }, - { - "text": "Become a state party of the Convention on the Rights of Persons with Disabilities ", - "values": [ - "Disabilities", - "International instruments" - ] - }, - { - "text": "Establish specialized support centres for victims of sexual violence or victims of sexual aggression against women and children ", - "values": [ - "Rights of the Child", - "Women's rights" - ] - }, - { - "text": "Take on board policies to promote human rights regardless of the sexual orientation of persons", - "values": [ - "Sexual Orientation and Gender Identity" - ] - }, - { - "text": "Elaborate an operational framework of systematic and comprehensive assessment of progress achieved in human rights", - "values": [ - "General" - ] - }, - { - "text": "Establish a system of effective and transparent accountability to investigate, prosecute and punish those responsible for alleged police abuses and, in particular, possible extrajudicial executions, in order to avoid the perception of impunity and overcome the worrying disenchantment of public opinion regarding the acts of the security forces in their fight against crime ", - "values": [ - "Extrajudicial executions", - "Human rights violations by state agents", - "Impunity" - ] - }, - { - "text": "Ensure thorough investigations into reports of attacks and threats against human rights defenders with a view to bring perpetrators to justice", - "values": [ - "Human rights defenders" - ] - }, - { - "text": "Investigate fully and effectively harassment and attacks on journalists and bring those responsible to justice.", - "values": [ - "Freedom of the press" - ] - }, - { - "text": "Develop programmes aimed at guaranteeing the right to education and the right to health", - "values": [ - "Right to education", - "Right to health" - ] - }, - { - "text": "Adopt a national strategy integrating economic, social and cultural rights to combat poverty ", - "values": [ - "ESC rights - general", - "Poverty" - ] - }, - { - "text": "Further strengthen its efforts against the long-standing issue of widespread impunity", - "values": [ - "Impunity" - ] - }, - { - "text": "Adopt a national policy on the protection of journalists and human rights defenders to combat intimidation and violence, and to ensure effective investigation of such acts and prosecution of perpetrators", - "values": [ - "Freedom of the press", - "Human rights defenders" - ] - }, - { - "text": "Consider the ratification of UNESCO Convention against discrimination in education", - "values": [ - "International instruments", - "Right to education" - ] - }, - { - "text": "Pass a law with an explicit provision that racist motivation should be taken into account as a specific aggravating circumstance for the purpose of sentencing in relevant crimes", - "values": [ - "Racial discrimination" - ] - }, - { - "text": "Continue efforts to clear the backlog observed in the process of ratification of certain legal instruments, in accordance with the recommendations formulated in its first universal periodic review of Belgium", - "values": [ - "International instruments", - "UPR process" - ] - }, - { - "text": "Continue progress in the implementation of the mandatory and free-of-cost year of primary school", - "values": [ - "Right to education" - ] - }, - { - "text": "Amend laws and regulations governing the Judicial Service Commission, including by removing the Crown's control over the Commission's composition", - "values": [ - "Justice" - ] - }, - { - "text": "Provide demobilized children with assistance and penalize those persons responsible for military recruitment of children ", - "values": [ - "International humanitarian law", - "Rights of the Child" - ] - }, - { - "text": "Establish a national institution to promote and protect human rights in accordance with the Paris Principles", - "values": [ - "National Human Rights Institution" - ] - }, - { - "text": "Consider issuing standing invitations to all special procedures", - "values": [ - "Special procedures" - ] - }, - { - "text": "Facilitate the necessary process for establishing a national human rights institution, which should ensure the enjoyment of basic human rights for all citizens", - "values": [ - "National Human Rights Institution" - ] - }, - { - "text": "Strengthen efforts to proactively identify both domestic and international trafficking victims among vulnerable populations, particularly children and women in prostitution", - "values": [ - "Rights of the Child", - "Trafficking", - "Women's rights" - ] - }, - { - "text": "Cease the unacceptable practices of unlawful detention and torture, allow in independent observers and immediately release all prisoners of conscience", - "values": [ - "Detention", - "Freedom of religion and belief", - "Torture and other CID treatment" - ] - }, - { - "text": "Accelerate the process of revising the legal framework regulating prisons in order to harmonize it with international standards", - "values": [ - "Detention" - ] - }, - { - "text": "Seek assistance from the international community though technical assistance and capacity-building programmes ", - "values": [ - "Technical assistance and cooperation" - ] - }, - { - "text": "Reinforce measures addressing violence against women, in particular the domestic violence, ensuring due accountability for perpetrators and increasing victims' access to justice ", - "values": [ - "Women's rights" - ] - }, - { - "text": "Adopt a legislative measure prohibiting and repressing all forms of discrimination against non-citizens, and a law eliminating the stereotypes that constitute the cause of violence against women", - "values": [ - "Racial discrimination", - "Women's rights" - ] - }, - { - "text": "Review its legislation and practices that are discriminatory against women and step up efforts to eliminate all forms of discrimination and violence against women in all domain of life", - "values": [ - "Women's rights" - ] - }, - { - "text": "Accede to the human rights protocols and conventions that it has not acceded to", - "values": [ - "International instruments" - ] - }, - { - "text": "Extend standing invitation to special procedures.", - "values": [ - "Special procedures" - ] - }, - { - "text": "Work constantly toward strengthening the coordination among the national human rights mechanisms and regularly provide them with the resources necessary for their proper functioning ", - "values": [ - "National Human Rights Institution" - ] - }, - { - "text": "Continue its efforts to overcome gaps and implement provisions to address gender violence as well as to carry out prompt, thorough and impartial investigations into all complaints of gender-based violence", - "values": [ - "Women's rights" - ] - }, - { - "text": "Adhere to the Optional Protocol to the Convention against Torture", - "values": [ - "Detention", - "International instruments", - "Torture and other CID treatment" - ] - }, - { - "text": "Continue to prioritize the allocation of financial and human resources to the health sector while focusing on preventive measures and treatment ", - "values": [ - "Right to health" - ] - }, - { - "text": "Consider the possibility of ratifying or acceding, as appropriate, to ICRMW, CED, OP-CAT and CRPD ", - "values": [ - "International instruments" - ] - }, - { - "text": "Introduce a bill to establish a children's ombudsman ", - "values": [ - "National Human Rights Institution", - "Rights of the Child" - ] - }, - { - "text": "Further enhance the partnership with relevant NHRIs and civil society for better coordination in the planning and implementation of national human rights activities and programmes among all stakeholders ", - "values": [ - "Civil society", - "National Human Rights Institution" - ] - }, - { - "text": "Continue to execute its policies and commitments regarding the human rights issues", - "values": [ - "General" - ] - }, - { - "text": "Provide effective legal and procedural guarantees against collection and use by security services of personal information, including abroad", - "values": [ - "Privacy" - ] - }, - { - "text": "Effectively enforce labour laws with appropriate penalties for violations, and ensure that all citizens have access to government services, regardless of political affiliation ", - "values": [ - "Labour" - ] - }, - { - "text": "Continue the process of national reconciliation ", - "values": [ - "Justice" - ] - }, - { - "text": "Strengthen legislative measures and public policies designed to preserve the language, culture and religion of minorities ", - "values": [ - "ESC rights - general", - "Freedom of religion and belief", - "Minorities" - ] - }, - { - "text": "Combat poverty among migrant workers ", - "values": [ - "Labour", - "Migrants", - "Poverty" - ] - }, - { - "text": "Take further measures to bring down the wide pay gap that still exists between men and women in the workplace, reportedly reaching as high as 30 per cent, by assisting women to reconcile work and family life", - "values": [ - "Women's rights" - ] - }, - { - "text": "Actively participate in the refugee resettlement/humanitarian admission process directly from Turkey to the European Union, as this is actually the only way to save lives and crack down criminal networks of smugglers", - "values": [ - "Asylum-seekers - refugees", - "Trafficking" - ] - }, - { - "text": "Create a national strategy related to combating domestic violence against women and children", - "values": [ - "Rights of the Child", - "Women's rights" - ] - }, - { - "text": "Promote legislative and administrative measures to prevent and punish attacks and persecution of children accused of witchcraft", - "values": [ - "Rights of the Child", - "Women's rights" - ] - }, - { - "text": "Ratify the Second Optional Protocol to the International Covenant on Civil and Political Rights, with the ultimate aim of abolishing the death penalty in all circumstances", - "values": [ - "Death penalty", - "International instruments" - ] - }, - { - "text": "Incorporate the provisions of the United Nations conventions on human rights into national legislation, to ensure the direct application of international treaties by the courts ", - "values": [ - "International instruments" - ] - }, - { - "text": "Adopt an integrated strategy for the elimination of discrimination on any basis, which deals in particular with racially-motivated attacks against foreigners, persons of African descent and human rights defenders ", - "values": [ - "Human rights defenders", - "Minorities", - "Racial discrimination" - ] - }, - { - "text": "Immediately dismantle all political prison camps and abolish the practice of forced labour", - "values": [ - "Detention", - "Freedom of opinion and expression", - "Labour" - ] - }, - { - "text": "Guarantee and widen humanitarian access", - "values": [ - "Other" - ] - }, - { - "text": "Strictly apply the provisions of the Code of Criminal Procedure, in particular those relating to the maximum period of detention on remand", - "values": [ - "Detention" - ] - }, - { - "text": "Accede to the Convention relating to the Status of Stateless Persons", - "values": [ - "International instruments", - "Statelessness and the right to nationality" - ] - }, - { - "text": "Ban explicitly the use of racial profiling in the conduction of identity checks ", - "values": [ - "Racial discrimination" - ] - }, - { - "text": "Implement the new Migrants Law fully", - "values": [ - "Migrants" - ] - }, - { - "text": "Establish clear vetting procedures to identify and prosecute individuals responsible for serious abuses of human rights such as torture, extrajudicial killings, recruitment of children and sexual violence - including during recruitment and integration of new forces into the SNAF", - "values": [ - "Extrajudicial executions", - "International humanitarian law", - "Rights of the Child", - "Torture and other CID treatment", - "Women's rights" - ] - }, - { - "text": "Improve the conditions of detention.", - "values": [ - "Detention" - ] - }, - { - "text": "Achieving an average real GDP growth rate of 10 per cent", - "values": [ - "Development" - ] - }, - { - "text": "Establish an independent medical legal institute to ensure that investigations into allegations of ill-treatment are carried out in an objective and impartial manner ", - "values": [ - "Torture and other CID treatment" - ] - }, - { - "text": "Become a party to the main human rights instruments", - "values": [ - "International instruments" - ] - }, - { - "text": "Ensure equal treatment and broad protection for all from discrimination, regardless of sexual orientation and gender identity", - "values": [ - "Sexual Orientation and Gender Identity" - ] - }, - { - "text": "Strengthen the measures aimed at accessing health, education and other social services for the Batwa minority in conditions of equality", - "values": [ - "ESC rights - general", - "Indigenous peoples", - "Right to education", - "Right to health" - ] - }, - { - "text": "Investigate fully and effectively the violations committed against human rights defenders and journalists and to bring to justice those responsible", - "values": [ - "Freedom of the press", - "Human rights defenders" - ] - }, - { - "text": "Prevent and repress the illegitimate use of violence against detainees ", - "values": [ - "Detention", - "Torture and other CID treatment" - ] - }, - { - "text": "Consider establishing an independent body or organ charged with monitoring the implementation of the provisions of the Convention on the Rights of the Child ", - "values": [ - "International instruments", - "Rights of the Child" - ] - }, - { - "text": "Establish a moratorium on the application of the death penalty with a view to its definitive and permanent abolition and commute existing sentences", - "values": [ - "Death penalty" - ] - }, - { - "text": "Further promote human rights education for law enforcement organs", - "values": [ - "Human rights education and training" - ] - }, - { - "text": "Dedicate sufficient resources to national human rights institutions to enhance their effective functioning and independence", - "values": [ - "National Human Rights Institution" - ] - }, - { - "text": "Continue its efforts in promoting the rights of persons with disabilities by, inter alia, effectively implementing its law on employment, adopting the law on protection of the rights of persons with disabilities and their social inclusion in line with the Convention on the Rights of Persons with Disabilities, and ensuring inclusive education for children with special needs", - "values": [ - "Disabilities", - "International instruments", - "Right to education", - "Rights of the Child" - ] - }, - { - "text": "Accelerate the procedures of adoption of the code on the protection of children", - "values": [ - "Rights of the Child" - ] - }, - { - "text": "Implement the Egyptian strategy to combat violence against women", - "values": [ - "Women's rights" - ] - }, - { - "text": "Continue its measures in combating human trafficking through the effective implementation of its Trafficking in Persons (Offences) Act ", - "values": [ - "Trafficking" - ] - }, - { - "text": "It is the constitutional mandate of the Attorney-General's Office to provide legal advice and service to the Government. Also provided under the Constitution is the Government's recognition of the right of the people to legal services, and is obliged to take every step reasonable and necessary to provide said services. Consequently, for indigent people who cannot afford legal representation, free legal access is provided by the Public Defender's Office and the Micronesian Legal Services Office.", - "values": [ - "Justice" - ] - }, - { - "text": "Ratify the Second Optional Protocol to ICCPR", - "values": [ - "Death penalty", - "International instruments" - ] - }, - { - "text": "Withdraw all reservations to the 1951 Convention relating to the Status of Refugees and its 1967 Protocol and accede to the 1961 Convention on the Reduction of Statelessness", - "values": [ - "Asylum-seekers - refugees", - "International instruments", - "Statelessness and the right to nationality" - ] - }, - { - "text": "Sign and ratify ICESCR and the International Covenant on Civil and Political Rights (ICCPR-OP 1) ", - "values": [ - "CP rights - general", - "ESC rights - general", - "International instruments" - ] - }, - { - "text": "Raise the age of criminal responsibility of children that currently stands at 10 years of age", - "values": [ - "Justice", - "Rights of the Child" - ] - }, - { - "text": "Cease all bombings and ground attacks, including those conducted with the aid of its allies", - "values": [ - "Other" - ] - }, - { - "text": "Adopt and implement robust measures to better address domestic violence ", - "values": [ - "Rights of the Child", - "Women's rights" - ] - }, - { - "text": "Become a member of ILO and ratify its conventions, in particular, Convention No. 111 concerning discrimination in respect of employment and occupation.", - "values": [ - "International instruments", - "Labour" - ] - }, - { - "text": "Sign and ratify the Optional Protocol to ICESCR, ICCPR-OP 1, OP-CAT and the International Convention for the Protection of All Persons from the Enforced Disappearance (CED)", - "values": [ - "CP rights - general", - "Detention", - "ESC rights - general", - "Enforced disappearances", - "International instruments", - "Torture and other CID treatment" - ] - }, - { - "text": "Continue to uphold the traditional values of family life ", - "values": [ - "Other" - ] - }, - { - "text": "Undertake the necessary steps to ensure that its national institution is fully consistent with the Paris Principles ", - "values": [ - "National Human Rights Institution" - ] - }, - { - "text": "Proceed shortly to the progressive and unconditional release of persons detained for political and conscience reasons, starting with those in a precarious state of health", - "values": [ - "Detention", - "Freedom of opinion and expression", - "Freedom of religion and belief" - ] - }, - { - "text": "Take all necessary measures to combat all forms of discrimination against women and enhance their participation in State institutions ", - "values": [ - "Women's rights" - ] - }, - { - "text": "Accelerate the ratification process of ICESCR", - "values": [ - "ESC rights - general", - "International instruments" - ] - }, - { - "text": "Accede to the International Convention for the Protection of All Persons from Enforced Disappearance as soon as possible ", - "values": [ - "Enforced disappearances", - "International instruments" - ] - }, - { - "text": "Withdraw its two reservations to CEDAW", - "values": [ - "International instruments", - "Statelessness and the right to nationality", - "Women's rights" - ] - }, - { - "text": "Investigate alleged arbitrary arrests of demonstrators and excessive periods of pretrial detention that reportedly took place following the election", - "values": [ - "Detention", - "Elections", - "Freedom of association and peaceful assembly" - ] - }, - { - "text": "Ensure the completion of the legislative process on the Code on the Protection of Children", - "values": [ - "Rights of the Child" - ] - }, - { - "text": "Ensure freedom of assembly and association, freedom of opinion and expression, including on the Internet, and protect freedom of the press", - "values": [ - "Freedom of association and peaceful assembly", - "Freedom of opinion and expression", - "Freedom of the press" - ] - }, - { - "text": "Amend legislation to change the minimum age for marriage from 15 to 18 years ", - "values": [ - "Rights of the Child" - ] - }, - { - "text": "Provide shelters and legal assistance to victims of domestic violence, and present a draft law on domestic violence", - "values": [ - "Rights of the Child", - "Women's rights" - ] - }, - { - "text": "Permit genuine expression of dissent by releasing political prisoners, allowing the elected National Assembly to carry out its functions and permitting peaceful protest and independent media reports", - "values": [ - "Detention", - "Freedom of association and peaceful assembly", - "Freedom of opinion and expression", - "Freedom of the press" - ] - }, - { - "text": "Continue its efforts in ensuring implementation of its strategy of antidiscrimination in order to guarantee the equal treatment of Romanian people, including the minority ", - "values": [ - "Minorities", - "Racial discrimination" - ] - }, - { - "text": "Take strong measures to prevent child labour and make sure that children who are employed as domestic help, the so-called "restaveks", can go to school", - "values": [ - "Labour", - "Right to education", - "Rights of the Child" - ] - }, - { - "text": "Reinforce the measures aimed at combating domestic violence, the large number of women's deaths caused by such violence, and the impunity granted to perpetrators of trafficking in women and girls ", - "values": [ - "Impunity", - "Rights of the Child", - "Trafficking", - "Women's rights" - ] - }, - { - "text": "Launch an urgent appeal to the international community to provide the Congolese population with aid for the strengthening of basic infrastructure, such as the construction of distribution centres for drinking water, roads, housing, power stations, etc. ", - "values": [ - "Development" - ] - }, - { - "text": "Promote the exercise of freedom of expression, association and peaceful assembly, notably of members of political parties, unions, media and civil society without the risk of undue restrictions ", - "values": [ - "Civil society", - "Freedom of association and peaceful assembly", - "Freedom of opinion and expression", - "Freedom of the press" - ] - }, - { - "text": "Sign and ratify the two Optional Protocols to CRC", - "values": [ - "International instruments", - "Rights of the Child" - ] - }, - { - "text": "Consider establishing promptly a national human rights institution in accordance with the Paris Principles", - "values": [ - "National Human Rights Institution" - ] - }, - { - "text": "Undertake legislative measures to criminalize marital rape", - "values": [ - "Women's rights" - ] - }, - { - "text": "Ensure that all children complete their 10-year compulsory education by taking concrete action to address reasons behind school non-attendance and by providing effective sanctions for those who obstruct children from attending schools ", - "values": [ - "Right to education", - "Rights of the Child" - ] - }, - { - "text": "Regulate and guarantee the rights of workers in accordance with the standards of the European Social Charter, by means of a dialogue with social agents and social stakeholders, and by seeking maximum parliamentary consensus", - "values": [ - "Labour" - ] - }, - { - "text": "Take effective measures to fully implement its national framework plan against drugs for the period 2014 to 2018, in order to reduce the demand for drugs among the most vulnerable category of the population, namely children and young people", - "values": [ - "Public security", - "Rights of the Child" - ] - }, - { - "text": "Pursue initiatives to improve the quality of life by diversifying of the economy", - "values": [ - "Development" - ] - }, - { - "text": "Take necessary steps to provide children with disabilities access to quality education", - "values": [ - "Disabilities", - "Right to education", - "Rights of the Child" - ] - }, - { - "text": "Enhance the State's capacity to protect human rights while managing crises, catastrophes and disasters and preparing to rescue", - "values": [ - "Environment" - ] - }, - { - "text": "Abolish completely the penalty of corporal punishment", - "values": [ - "Torture and other CID treatment" - ] - }, - { - "text": "Continue its efforts to effectively implement the New Zealand Disability Strategy with a view to ensuring the full realization of human rights for persons with disabilities ", - "values": [ - "Disabilities" - ] - }, - { - "text": "Maintain its moratorium on death sentences and take the necessary steps for the abolishment of the death penalty, including the ratification of the Second Optional Protocol to the International Covenant on Civil and Political Rights", - "values": [ - "Death penalty", - "International instruments" - ] - }, - { - "text": "Continue its efforts with a view to modifying the discriminatory provisions of the Family Code, in particular those related to inequalities against women in heritance matters ", - "values": [ - "Women's rights" - ] - }, - { - "text": "Enhance engagement with regional and international partners to gather support, as it may deem necessary, for building structural and operational capacities and augmenting existing human rights mechanisms", - "values": [ - "Technical assistance and cooperation" - ] - }, - { - "text": "Consider as a priority the most vulnerable groups in its population, in particular women and children", - "values": [ - "Rights of the Child", - "Women's rights" - ] - }, - { - "text": "Intensify efforts to combat racial discrimination and intolerance targeting foreign nationals and minority groups, including by investigating promptly and taking action against the perpetrators of racist and xenophobic speeches and public statements", - "values": [ - "Minorities", - "Racial discrimination" - ] - }, - { - "text": "Promote policies and programmes to combat racial hatred and discrimination against minorities and refugees, as well as to sanction such acts", - "values": [ - "Asylum-seekers - refugees", - "Minorities", - "Racial discrimination" - ] - }, - { - "text": "Pursue the ongoing work of revision and improvement of the Criminal Code to be amended regarding provisions against gender-based violence and hate crimes", - "values": [ - "Racial discrimination", - "Women's rights" - ] - }, - { - "text": "Introduce a simpler registration process for religious organizations than currently exists.", - "values": [ - "Freedom of religion and belief" - ] - }, - { - "text": "Consider an early ratification of the third Optional protocol to the Convention on the Rights of the Child on a communications procedure (OPIC)", - "values": [ - "International instruments", - "Rights of the Child" - ] - }, - { - "text": "Continues its efforts to ensure greater representation of women in high-level policy and decision making institutions ", - "values": [ - "Women's rights" - ] - }, - { - "text": "Fully respect the economic and social rights of migrant workers and their families and ensure their inclusion in the society", - "values": [ - "Labour", - "Migrants" - ] - }, - { - "text": "Take reform measures to ensure equality with respect to pension funds", - "values": [ - "Other" - ] - }, - { - "text": "Continue its effective work in the area of defending the rights of the family women and children", - "values": [ - "Rights of the Child", - "Women's rights" - ] - }, - { - "text": "Protect the rights of human rights defenders ", - "values": [ - "Human rights defenders" - ] - }, - { - "text": "Review all new legislation to ensure consistency with International Human Rights Law and the Constitution, consulting broadly to build a national consensus and protect the role of an active civil society", - "values": [ - "Civil society", - "International instruments" - ] - }, - { - "text": "Facilitate the provision of sufficient funding and staffing for the Human Rights Commission and different commissioners, including the recently appointed Commissioner against racial discrimination", - "values": [ - "National Human Rights Institution" - ] - }, - { - "text": "Conduct an educational awareness campaign among the population in order to eliminate all socioeconomic and legal barriers to facilitate the people of African descent to effectively enjoy their rights", - "values": [ - "Human rights education and training", - "Minorities" - ] - }, - { - "text": "Adopt specific labour legislation on the rights of foreign domestic workers in order to guarantee them the same conditions as other workers covered by the 2010 Labour Law", - "values": [ - "Labour", - "Migrants" - ] - }, - { - "text": "Consider ratifying ILO Convention No. 169", - "values": [ - "Indigenous peoples", - "International instruments" - ] - }, - { - "text": "Continue ongoing efforts to guarantee the rights of persons with disabilities, including through the enactment of a new law that would broaden existing guarantees, as noted in the national report ", - "values": [ - "Disabilities" - ] - }, - { - "text": "Undertakes a thorough review with key stakeholders and civil society of its existing Cyber Crime and Statistic Acts and proposed Media Services and Access to Information bills, to meet human rights obligations", - "values": [ - "Freedom of opinion and expression", - "Freedom of the press", - "International instruments" - ] - }, - { - "text": "Include the promotion of multiculturalism in education curricula, including by sensitizing teachers to work in a multicultural environment ", - "values": [ - "Human rights education and training" - ] - }, - { - "text": "Reinforce measures to combat attacks and hate speech against minority groups, by emphasizing prevention and follow-up of these acts", - "values": [ - "Minorities", - "Racial discrimination" - ] - }, - { - "text": "Improve the coverage and quality of health services and set up the national action plan on persons with disabilities", - "values": [ - "Disabilities", - "Right to health" - ] - }, - { - "text": "Continue with the policies to strengthen and protect the human rights of people working in the mining sector", - "values": [ - "Labour" - ] - }, - { - "text": "Take concrete steps to meet obligations with regard to creating an environment that fosters freedom of expression, including respect for the independence of civil society organizations and the right to assemble ", - "values": [ - "Civil society", - "Freedom of association and peaceful assembly", - "Freedom of opinion and expression" - ] - }, - { - "text": "Address the youth unemployment and combat effectively the existing discrimination against migrants in terms of their working conditions and requirements governing access to employment", - "values": [ - "Development", - "Migrants", - "Racial discrimination" - ] - }, - { - "text": "Develop policies to increase gender equality to address the inequalities that persist despite legal guarantees", - "values": [ - "Women's rights" - ] - }, - { - "text": "Ensure that the public broadcasting system increases the time allocated to regional language programmes and that sufficient financial and human resources are made available for this purpose ", - "values": [ - "Minorities" - ] - }, - { - "text": "Establish a moratorium on executions as a first step towards complete abolition of the death penalty and accession to the Second Optional Protocol of the ICCPR", - "values": [ - "Death penalty", - "International instruments" - ] - }, - { - "text": "Enhance measures to implement the CRC and CEDAW, and to combat trafficking in persons, especially women and children, including strengthening cooperation with NGOs in the area of protection of victims of trafficking in persons", - "values": [ - "Civil society", - "International instruments", - "Rights of the Child", - "Trafficking", - "Women's rights" - ] - }, - { - "text": "Formalize a de jure moratorium on death penalty and replace it with alternative sentences which respect international human rights standards", - "values": [ - "Death penalty", - "International instruments" - ] - }, - { - "text": "Take all necessary measures to ensure that the national mechanism for the prevention of torture has a solid legal basis and enough resources for the fulfilment of its mandate", - "values": [ - "Detention", - "Torture and other CID treatment" - ] - }, - { - "text": "Accede to or ratify the following international instruments: the Second Optional Protocol to the International Covenant on Civil and Political Rights, aiming at the abolition of the death penalty", - "values": [ - "Death penalty", - "International instruments" - ] - }, - { - "text": "Receive as soon as possible the Special Rapporteur on the question of torture.", - "values": [ - "Special procedures", - "Torture and other CID treatment" - ] - }, - { - "text": "Fully explore the possibility of putting in place a new National Plan of Action against Racism", - "values": [ - "Racial discrimination" - ] - }, - { - "text": "Take the necessary measures for the full implementation of the Optional Protocol to the Convention against Torture, and in particular, establish an independent national preventive mechanism", - "values": [ - "Detention", - "International instruments", - "Torture and other CID treatment" - ] - }, - { - "text": "Consider ratifying, signing or adhering to, as appropriate, the Optional Protocol to the International Covenant on Economic Social and Cultural Rights, the International Convention on the Protection of the Rights of All Migrant Workers and Members of their Families, and the Convention for the Protection of All Persons from Enforced Disappearance", - "values": [ - "ESC rights - general", - "Enforced disappearances", - "International instruments", - "Labour", - "Migrants" - ] - }, - { - "text": "Seek for technical assistance to strengthen the capacity building of judicial officers, members of law enforcement forces and civil officials in the field of human rights and corruption, as well as the training of heads of committees responsible for fighting against corruption in all Ministries", - "values": [ - "Corruption", - "Human rights education and training", - "Technical assistance and cooperation" - ] - }, - { - "text": "Continue to implement existing legislation related to gender equality ensuring that men and women are treated equally and stereotypes regarding women are eradicated", - "values": [ - "Women's rights" - ] - }, - { - "text": "Raise the age of criminal responsibility as proposed in the model Child Justice Bill of the OECS from 2007", - "values": [ - "Rights of the Child" - ] - }, - { - "text": "Seek the assistance of the international community in its efforts to combat poverty and to providing the necessary social services to its population based on the national priorities determined by the Government of Gambia", - "values": [ - "Poverty", - "Technical assistance and cooperation" - ] - }, - { - "text": "Become a party to CAT", - "values": [ - "International instruments", - "Torture and other CID treatment" - ] - }, - { - "text": "Take the measures necessary to prevent discrimination against minorities, as well as to contribute to the positive image of migrants in the country", - "values": [ - "Migrants", - "Minorities" - ] - }, - { - "text": "Provide protection to maternity and childhood, in particular, introduce additional measures for the protection of families with small children", - "values": [ - "Rights of the Child", - "Women's rights" - ] - }, - { - "text": "Take again into consideration the possibility to soon abolish the de jure death penalty ", - "values": [ - "Death penalty" - ] - }, - { - "text": "Take on challenges facing the Philippines Human Rights Commission and strengthen it on the institutional level ", - "values": [ - "National Human Rights Institution" - ] - }, - { - "text": "Accelerate the process to establish a national committee on the rights of children provided for in the Children's Code", - "values": [ - "Rights of the Child" - ] - }, - { - "text": "That the country assess the possibility of harmonizing its domestic legislation with standards set out in international instruments, according particular attention to two questions: the status of prisoners and the need to define the offence of torture in the aforementioned legislation", - "values": [ - "Detention", - "Torture and other CID treatment" - ] - }, - { - "text": "Improve access to education and health-care services of vulnerable people, including women and children from low and middle income families", - "values": [ - "Right to health", - "Rights of the Child", - "Women's rights" - ] - }, - { - "text": "Continue to improve its health system and ensure access to quality health for all", - "values": [ - "Right to health" - ] - }, - { - "text": "Continue the work being done to improve national legislation and law enforcement practices in the field of protecting the rights of disabled persons, according due consideration to generally acknowledged international standards", - "values": [ - "Disabilities" - ] - }, - { - "text": "Increase efforts to bring legislation in line with the principle of equality between women and men as well as to develop human rights education programs for its citizens to increase awareness of their rights under international human rights instruments ", - "values": [ - "Human rights education and training", - "Women's rights" - ] - }, - { - "text": "Continue and further increase its efforts aimed at empowering women in Saudi society", - "values": [ - "Women's rights" - ] - }, - { - "text": "Strengthen and support the independence and the work of the National Independent Human Rights Commission as well as of the judicial system, providing them with necessary resources to do their work ", - "values": [ - "Justice", - "National Human Rights Institution" - ] - }, - { - "text": "Ethiopia pledged to consider the ratification of additional instruments to the International Covenant on Civil and Political Rights, the International Covenant on Economic, Social and Cultural Rights, the Convention on the Elimination of All Forms of Discrimination against Women and the Convention against Torture and Other Cruel, Inhuman and Degrading Treatment or Punishment. Ethiopia was also committed to signing the International Convention for the Protection of All Persons from Enforced Disappearance and was considering its ratification in due course.", - "values": [ - "CP rights - general", - "ESC rights - general", - "Enforced disappearances", - "International instruments", - "Torture and other CID treatment", - "Women's rights" - ] - }, - { - "text": "Create programmes to combat traditional attitudes that treat sexual and psychological abuse as misdemeanours and continue to provide necessary services and support to victims ", - "values": [ - "Women's rights" - ] - }, - { - "text": "Consider the needs of people with disabilities in reconstruction efforts ", - "values": [ - "Disabilities" - ] - }, - { - "text": "Continue with efforts to achieve approval in Congress of the Rome Statute of the International Criminal Court.", - "values": [ - "International instruments", - "Justice" - ] - }, - { - "text": "Strengthen the programmes developed to promote employment, food provision and social assistance in favour of national minorities and other vulnerable sectors of the population, in the fight against poverty and social inequality ", - "values": [ - "Development", - "Minorities", - "Poverty", - "Right to food" - ] - }, - { - "text": "Consolidate its strategies and programmes to reduce the phenomenon of maternal and child mortality ", - "values": [ - "Right to health", - "Rights of the Child", - "Women's rights" - ] - }, - { - "text": "Lift multiple reservations to international human rights treaties, including the ICESCR and the Optional Protocols to the CRC ", - "values": [ - "ESC rights - general", - "International instruments", - "Rights of the Child" - ] - }, - { - "text": "Intensify its efforts to domesticate the international norms aimed at eliminating gender based discrimination", - "values": [ - "Women's rights" - ] - }, - { - "text": "Consider ratifying OP-CRC-IC, OP-ICESCR as well as the ILO Convention 189 ", - "values": [ - "ESC rights - general", - "International instruments", - "Labour", - "Rights of the Child" - ] - }, - { - "text": "Guarantee, without any discrimination, the rights to freedom of expression, association and peaceful assembly and the right to participate in public and political life", - "values": [ - "Freedom of association and peaceful assembly", - "Freedom of opinion and expression" - ] - }, - { - "text": "In response to the concern CEDAW expressed in its 2001 report regarding the existence of punitive abortion laws that could lead to the practice of clandestine abortions endangering the health of women, the Principality wishes to stress the fact that, given the size of the country, this kind of practice does not occur. In light of our historical and institutional proclivity to protect the right to life in its various phases, as provided for in article 8 of the Constitution and defined in articles 107-109 of the Criminal Code (offences against human life), decriminalizing abortion would entail significant legislative\namendments that require a parliamentary majority we cannot currently guarantee. We can, however, commit to examining such amendments in the medium term", - "values": [ - "Right to health", - "Treaty bodies", - "Women's rights" - ] - }, - { - "text": "Consider ratifying the Convention on the Rights of Persons with Disabilities and put in place in timely fashion the draft law on people with disabilities.", - "values": [ - "Disabilities", - "International instruments" - ] - }, - { - "text": "Investigate thoroughly and prosecute all reported cases of sexual violence, and ensure that support and compensation is provided to the victims", - "values": [ - "Women's rights" - ] - }, - { - "text": "Redouble its efforts for promotion and protection of the rights of vulnerable persons ", - "values": [ - "Minorities" - ] - }, - { - "text": "Ratify the Rome Statute of the ICC to ensure accountability for, prevention of and justice for the victims of human rights violations", - "values": [ - "International instruments", - "Justice" - ] - }, - { - "text": "Adopt and implement measures necessary to address the needs and challenges of juveniles in prison custody, including raising the minimum age of crime responsibility, in line with international standards ", - "values": [ - "Detention", - "Justice", - "Rights of the Child" - ] - }, - { - "text": "That further progress be made toward concrete and visible reform, including through implementation of the follow-up committee's report, in a way which guarantees transparency and freedom of speech", - "values": [ - "Freedom of opinion and expression" - ] - }, - { - "text": "Strengthen its efforts to combat trafficking in persons, including by formulating a comprehensive anti-trafficking legal framework, especially in order to protect women and children from exploitation", - "values": [ - "Rights of the Child", - "Trafficking", - "Women's rights" - ] - }, - { - "text": "Ensure compliance with the human right to water and sanitation according to General Assembly resolution 64/292", - "values": [ - "Right to water and sanitation" - ] - }, - { - "text": "Guarantee the right to education of all children and take effective measures to substantially increase the rate of attendance in primary schools.", - "values": [ - "Right to education", - "Rights of the Child" - ] - }, - { - "text": "Implement further measures to address the problems related to poverty and socioeconomic inequality in respect of regions and vulnerable groups of the population, such as rural residents", - "values": [ - "Poverty" - ] - }, - { - "text": "Continue and further strengthen its anti-corruption policy.", - "values": [ - "Corruption" - ] - }, - { - "text": "Continue its efforts to provide fundamental and basic human rights to its citizens", - "values": [ - "General" - ] - }, - { - "text": "Accede to the 1951 Convention relating to the Status of Refugees and the 1967 Protocol thereto ", - "values": [ - "Asylum-seekers - refugees", - "International instruments" - ] - }, - { - "text": "Continue to improve the conditions in prisons, reduce crowding and adopt alternatives to pretrial detention and provide adequate medical care to prisoners", - "values": [ - "Detention", - "Right to health" - ] - }, - { - "text": "Advance in the development of the proposed database and recommendation tracking platform", - "values": [ - "UPR process" - ] - }, - { - "text": "Prohibit corporal punishment as a method of admonishing children and adolescents", - "values": [ - "Rights of the Child", - "Torture and other CID treatment" - ] - }, - { - "text": "Continue to pursue efforts to eradicate poverty and discrimination against women", - "values": [ - "Poverty", - "Women's rights" - ] - }, - { - "text": "Ensure equality in law between men and women and take necessary measures to combat discrimination, particularly in order to reduce pay gaps ", - "values": [ - "Women's rights" - ] - }, - { - "text": "Continue strengthening the programmes to eradicate extreme poverty", - "values": [ - "Poverty" - ] - }, - { - "text": "Increase measures to identify women and child victims of trafficking effectively in order to provide them with adequate assistance, and to consider not penalizing them for crimes committed as a direct result of being trafficked", - "values": [ - "Rights of the Child", - "Trafficking", - "Women's rights" - ] - }, - { - "text": "Prevent and investigate the incidents of sexual violence against women and bring perpetrators to justice", - "values": [ - "Women's rights" - ] - }, - { - "text": "Develop the institutional environment for the protection of human rights in Iraq\n", - "values": [ - "Justice" - ] - }, - { - "text": "Facilitate access to social and health services as well as to education for children belonging to more vulnerable groups", - "values": [ - "Right to education", - "Right to health", - "Rights of the Child" - ] - }, - { - "text": "Guarantee that lesbian, gay, bisexual, transgender and intersex persons have full and equal enjoyment of their human rights by repealing the norms that criminalize and stigmatize them", - "values": [ - "Sexual Orientation and Gender Identity" - ] - }, - { - "text": "Implement, effectively and stringently, legislation criminalizing violence against women and domestic violence, including marital rape, and improve data collection mechanisms on violence against women", - "values": [ - "Rights of the Child", - "Women's rights" - ] - }, - { - "text": "Ensure implementation in practice of laws and regulations to which juvenile offenders are subject, including the prompt access of juveniles to legal counsels, their separate detention and the enrolment of juveniles in appropriate school and training programmes while in custody", - "values": [ - "Justice", - "Rights of the Child" - ] - }, - { - "text": "Take necessary measures to better combat sexual exploitation of children", - "values": [ - "Labour", - "Rights of the Child" - ] - }, - { - "text": "Guarantee the rights of indigenous Americans, and to fully implement the United Nations Declaration on the Rights of Indigenous Peoples ", - "values": [ - "Indigenous peoples", - "International instruments" - ] - }, - { - "text": "Pursue and reinforce judicial reforms initiated and improve access to justice in all its territory, with a view to consolidating the independence and efficiency of the judicial system", - "values": [ - "Justice" - ] - }, - { - "text": "Benefit from the experiences of other countries regarding child protection", - "values": [ - "Rights of the Child" - ] - }, - { - "text": "Continue improving the Mother and Child Care Program ", - "values": [ - "Right to health", - "Rights of the Child", - "Women's rights" - ] - }, - { - "text": "Continue to build on its laudable achievements in promoting and protecting the fundamental freedoms and human rights of the good people of Trinidad and Tobago ", - "values": [ - "General" - ] - }, - { - "text": "Strengthen measures to combat violence against women, including through the effective implementation of existing legislation and the National Action Plan", - "values": [ - "Women's rights" - ] - }, - { - "text": "Improve overall conditions of detention and prison facilities, and to combat overcrowding ", - "values": [ - "Detention" - ] - }, - { - "text": "Reconsider the grounds for recognizing national minority status", - "values": [ - "Minorities" - ] - }, - { - "text": "Develop an academic curriculum on the basis of human rights standards, values and international conventions", - "values": [ - "Human rights education and training" - ] - }, - { - "text": "Commit to improving school results of Roma pupils by 2015 ", - "values": [ - "Minorities", - "Right to education" - ] - }, - { - "text": "Guarantee free, obligatory, and quality education for all children", - "values": [ - "Right to education", - "Rights of the Child" - ] - }, - { - "text": "Submit without any delay the initial report under the Optional Protocol to CRC on the involvement of children in armed conflict ", - "values": [ - "International humanitarian law", - "International instruments", - "Rights of the Child" - ] - }, - { - "text": "Sign and ratify the International Convention for the Protection of All Persons from Enforced Disappearance, as well as the Optional Protocol to the Convention against Torture and Other Cruel, Inhuman or Degrading Treatment or Punishment", - "values": [ - "Detention", - "Enforced disappearances", - "International instruments", - "Torture and other CID treatment" - ] - }, - { - "text": "Ensure that domestic violence is properly punished and victims, including those of marital rape, are properly protected", - "values": [ - "Rights of the Child", - "Women's rights" - ] - }, - { - "text": "Promote awareness of the rights of those receiving social benefits and advocate them through adequate campaigns", - "values": [ - "ESC rights - general" - ] - }, - { - "text": "Undertake urgently a campaign and initiate programmes aimed at eliminating all forms of de jure and de facto discrimination against women.", - "values": [ - "Human rights education and training", - "Women's rights" - ] - }, - { - "text": "Take effective measures to reverse the increasing trend of HIV/AIDS incidence by strengthening the National Strategic Plan (NSP) on HIV/AIDS Prevention", - "values": [ - "HIV - Aids" - ] - }, - { - "text": "With the support of the international community, continue to fight poverty.", - "values": [ - "Poverty", - "Technical assistance and cooperation" - ] - }, - { - "text": "Prevent and put an end to human rights violations and abuses suffered by children, strengthen measures aimed at ensuring an effective end to their recruitment and their release", - "values": [ - "International humanitarian law", - "Rights of the Child" - ] - }, - { - "text": "Strengthen measures directed towards the protection from discrimination and further integration of the Roma ", - "values": [ - "Minorities", - "Racial discrimination" - ] - }, - { - "text": "Provide resources to introduce case management systems in both criminal and civil court registries to clear the backlog of cases and set out the times lines for the disposal of cases in accordance with the rights of every person to trial and justice within a reasonable time", - "values": [ - "Justice" - ] - }, - { - "text": "Implement recommendations from the Committee against Torture", - "values": [ - "Torture and other CID treatment", - "Treaty bodies" - ] - }, - { - "text": "Respect the right of defence and the rule of impartiality of judges of national courts, with regards mainly to the trials against international war crimes ", - "values": [ - "Justice" - ] - }, - { - "text": "Continue efforts to reinvigorate the national economy by, inter alia, allowing more freedom for people to engage in economic and commercial activities ", - "values": [ - "Other" - ] - }, - { - "text": "Consider adopting universal health-care coverage to ensure healthcare provision for all, with particular attention given to vulnerable groups and those living in rural areas ", - "values": [ - "Right to health" - ] - }, - { - "text": "Continue to implement its efforts to promote universal education and develop a knowledge-based society for long-term sustainable development", - "values": [ - "Right to education" - ] - }, - { - "text": "Build on Special Rapporteurs' visits and to issue standing invitations and to agree to all outstanding requests by the special procedures of the Human Rights Council.", - "values": [ - "Special procedures" - ] - }, - { - "text": "Speed up efforts to reduce poverty and unemployment in the country", - "values": [ - "Development", - "Poverty" - ] - }, - { - "text": "Ensure that persons with disabilities have the right to enrol in the electoral census and vote", - "values": [ - "Disabilities", - "Elections" - ] - }, - { - "text": "Pursuing accommodative dialogue with indigenous communities, with a view to minimize disruptive approaches to their lifestyle and traditions while improving their life conditions ", - "values": [ - "Indigenous peoples" - ] - }, - { - "text": "Repeal all legislation providing for corporal punishment as a method of education in schools and sign the Optional Protocols to the Convention on the Rights of the Child", - "values": [ - "International instruments", - "Rights of the Child", - "Torture and other CID treatment" - ] - }, - { - "text": "Accelerate the adoption of the Employment Sexual Harassment Bill ", - "values": [ - "Women's rights" - ] - }, - { - "text": "Ensure the independence and integrity of the authority and division for witness and victim protection and allocate sufficient funds beginning with the 2018 budget", - "values": [ - "Justice" - ] - }, - { - "text": "Strengthen the legislative framework to promote gender equality, in particular in the field of employment", - "values": [ - "Labour", - "Women's rights" - ] - }, - { - "text": "Continue with its current positive efforts for furtherance of the human rights protection ", - "values": [ - "General" - ] - }, - { - "text": "Grant full access to the Commission of Inquiry, to allow the Commission to undertake investigations inside the country and thus to enable it to fulfil its mandate to investigate all alleged violations of international human rights law since March 2011 in the Syrian Arab Republic", - "values": [ - "Technical assistance and cooperation" - ] - }, - { - "text": "Rescind the amendment of law 105b that allows for civilians to be prosecuted in military courts if accused of terrorism", - "values": [ - "Justice" - ] - }, - { - "text": "Provide human rights education and training about non-discrimination in particular to law enforcement officials and take effective measures to prevent and prohibit racial profiling by the police ", - "values": [ - "Human rights education and training", - "Human rights violations by state agents", - "Racial discrimination" - ] - }, - { - "text": "Introduce a definition of direct and indirect discrimination to prevent discrimination in specific spheres, such as those relating to women, children, migrants and indigenous peoples", - "values": [ - "Indigenous peoples", - "Migrants", - "Racial discrimination", - "Rights of the Child", - "Women's rights" - ] - }, - { - "text": "Repeal section 8(2) of the Aliens Employment Act, which requires that employers, when reducing manpower or working hours of all employees, terminate, first, the contracts of foreign nationals ", - "values": [ - "Labour" - ] - }, - { - "text": "Ratify the core international human rights conventions and ILO conventions ", - "values": [ - "International instruments", - "Labour" - ] - }, - { - "text": "Remove the penalty of imprisonment from articles 102bis, 179, and 308 of the Penal Code", - "values": [ - "Justice" - ] - }, - { - "text": "Further address overcrowding in prisons and ensure that minimum standards are met ", - "values": [ - "Detention" - ] - }, - { - "text": "Intensify its efforts to combat trafficking in human beings with a special attention to the needs of the victims ", - "values": [ - "Trafficking" - ] - }, - { - "text": "Raise the age of criminal responsibility in order to bring it into line with international standards", - "values": [ - "Rights of the Child" - ] - }, - { - "text": "Expedite implementation of reconciliation measures in the North. This would include removing oversight of humanitarian and NGO activities from the purview of Ministry of Defense to a civilian body, reducing the intrusiveness of military presence on civilian life in the North and setting a specific date for free and fair Northern Provincial Council elections", - "values": [ - "Civil society", - "Elections", - "Freedom of movement", - "Justice" - ] - }, - { - "text": "Continue to advance the progress already underway on poverty eradication and improve the enjoyment of the most basic human rights of its people, especially women and children ", - "values": [ - "Poverty", - "Rights of the Child", - "Women's rights" - ] - }, - { - "text": "Cooperate more intensively with United Nations human rights mechanisms, in particular by responding positively to the repeated requests for visits by the Special Rapporteurs on the situation of human rights and the right to food ", - "values": [ - "Right to food", - "Special procedures", - "Treaty bodies", - "UPR process" - ] - }, - { - "text": "Decriminalize sexual activities between consenting adults of the same sex ", - "values": [ - "Sexual Orientation and Gender Identity" - ] - }, - { - "text": "Ratify OP-ICESCR, and accept its investigation and inter-State communications mechanisms", - "values": [ - "ESC rights - general", - "International instruments" - ] - }, - { - "text": "Continue full cooperation with the international human rights mechanisms", - "values": [ - "General" - ] - }, - { - "text": "Adopt a moratorium on the use of the death penalty with a view to its abolition ", - "values": [ - "Death penalty" - ] - }, - { - "text": "Improve access to quality healthcare for its people", - "values": [ - "Right to health" - ] - }, - { - "text": "Accede to the Second Optional Protocol to the International Covenant on Civil and Political Rights, aimed at abolishing the death penalty, and take the steps necessary to remove the death penalty from Guyana's justice system ", - "values": [ - "Death penalty", - "International instruments" - ] - }, - { - "text": "Continue its efforts in fighting racism, including by strengthening institutional capacities to systematically document and investigate racially motivated crimes ", - "values": [ - "Racial discrimination" - ] - }, - { - "text": "Intensify its effort to improve human rights for women and to combat key problems such as human trafficking, sexual violence, domestic violence and exploitation of women and children ", - "values": [ - "Rights of the Child", - "Women's rights" - ] - }, - { - "text": "Complete the process of recognition of the indigenous peoples in its Constitution, implement the recommendations of the Special Rapporteur on the situation of human rights and fundamental freedoms of indigenous people and recognize their contribution to the Chilean identity as a people.", - "values": [ - "Indigenous peoples", - "Special procedures" - ] - }, - { - "text": "Introduce a de jure moratorium on the executions as rapidly as possible ", - "values": [ - "Death penalty" - ] - }, - { - "text": "Investigate police violence that took place on persons because of their actual or perceived sexual orientation ", - "values": [ - "Sexual Orientation and Gender Identity" - ] - }, - { - "text": "Conduct an urgent and credible police investigation into the disappearance of Sombath Somphone, and communicate the findings, including to address any suspicions of government involvement in his abduction", - "values": [ - "Enforced disappearances", - "Human rights violations by state agents" - ] - }, - { - "text": "Continue and intensify the use of best practices in the area of human rights with regard to Spain's migration policies ", - "values": [ - "Migrants" - ] - }, - { - "text": "Prepare a national plan with allocated targets to combat violence and discrimination against women and provide access and financial aid to support services, and strengthen cooperation between different government agencies", - "values": [ - "Women's rights" - ] - }, - { - "text": "Continue efforts to improve the human rights situation in the country and, with the support of the international community, meet the major challenges it faces.", - "values": [ - "Technical assistance and cooperation" - ] - }, - { - "text": "Encourage and contribute to the design of the most suitable socioeconomic integration plan for the subregion, as part of the developmental challenges of the subregion ", - "values": [ - "Other" - ] - }, - { - "text": "Step up efforts to strengthen public education, awareness-raising programmes and skill training at all levels, particularly aimed at preventing negative attitudes and behaviours, and to promote tolerance and respect for diversity", - "values": [ - "Human rights education and training", - "Right to education" - ] - }, - { - "text": "Put in place alternative solutions to the detention of migrants ", - "values": [ - "Detention", - "Migrants" - ] - }, - { - "text": "Intensify measures to address the problems of maternal mortality and unsafe abortions, reviewing punitive provisions regarding the latter ", - "values": [ - "Right to health", - "Women's rights" - ] - }, - { - "text": "Ensure the right to food for its entire population without any restriction", - "values": [ - "Right to food" - ] - }, - { - "text": "Initiate investigations into all allegations of torture or other forms of ill-treatment in a thorough, impartial and independent manner as required by international human rights law.", - "values": [ - "International instruments", - "Torture and other CID treatment" - ] - }, - { - "text": "Develop and implement a comprehensive strategy to eliminate harmful practices, including early and forced marriage, FGM and unequal access to inheritance, based on the recognition of the equality between men and women, and supported by religious and traditional leaders, civil society, men and boys, as well as other relevant stakeholders ", - "values": [ - "Civil society", - "Rights of the Child", - "Torture and other CID treatment", - "Women's rights" - ] - }, - { - "text": "Amend legal prohibition on incitement to hatred to include prohibitions on the basis of sexual orientation", - "values": [ - "Sexual Orientation and Gender Identity" - ] - }, - { - "text": "Ensure the full independence of the judiciary, including the establishment of objective criteria for selecting and dismissing judges and guarantee the respect of a fair trial for everyone", - "values": [ - "Justice" - ] - }, - { - "text": "Investigate in an effective and independent manner and as soon as possible, allegations of torture, ill-treatment and extrajudicial executions with a view to bring perpetrators to justice ", - "values": [ - "Extrajudicial executions", - "Torture and other CID treatment" - ] - }, - { - "text": "Continue to seek a political solution to the crisis based on dialogue and reconciliation between the Syrian parties without foreign intervention in the internal affairs of the Syrian Arab Republic", - "values": [ - "Justice" - ] - }, - { - "text": "Continue its efforts to adopt legislations to combat trafficking and protect women's rights in particular nationality and gender equality", - "values": [ - "Trafficking", - "Women's rights" - ] - }, - { - "text": "Take all necessary measures to implement the commitment to abolish the death penalty", - "values": [ - "Death penalty" - ] - }, - { - "text": "Remove existing barriers to the full participation of women in economic life so as to further reduce poverty and inequality", - "values": [ - "Poverty", - "Women's rights" - ] - }, - { - "text": "Implement all the measures agreed in the 1996 Peace Accords to combat discrimination and promote inclusion.", - "values": [ - "Other" - ] - }, - { - "text": "Replace criminal defamation and libel laws with civil ones, and reform national security laws to provide greater protections for free expression", - "values": [ - "Freedom of opinion and expression" - ] - }, - { - "text": "Give the appropriate training to the Polish police and other public bodies responsible for victim support services to assist the victims of hate crimes", - "values": [ - "Human rights education and training", - "Racial discrimination" - ] - }, - { - "text": "Take appropriate measures to prevent torture and to ensure that all allegations of torture are properly and independently investigated, and ensure that the law adopted to define torture is in accordance with article 1 of the Convention against Torture.", - "values": [ - "International instruments", - "Torture and other CID treatment" - ] - }, - { - "text": "Take all necessary measures to ensure that women are not discriminated against ", - "values": [ - "Women's rights" - ] - }, - { - "text": "Continue to align its legislation with the new constitution and with the provisions of international human rights instruments", - "values": [ - "International instruments" - ] - }, - { - "text": "Take all measures to ensure protection of women and girls from violence and to end impunity of perpetrators of such crimes", - "values": [ - "Impunity", - "Rights of the Child", - "Women's rights" - ] - }, - { - "text": "Consider introducing a definition of discrimination in its criminal law.", - "values": [ - "Other" - ] - }, - { - "text": "Make further efforts to advance gender parity and protect the rights and freedoms of women and girls, including by considering ways to address economic discrimination", - "values": [ - "Rights of the Child", - "Women's rights" - ] - }, - { - "text": "Fight against the hate speeches that provoke racial and ethnical discrimination and to fight against the relevant violence", - "values": [ - "Minorities", - "Racial discrimination" - ] - }, - { - "text": "Take steps to abolish the death penalty", - "values": [ - "Death penalty" - ] - }, - { - "text": "The new Government, once formed, ensures equal rights to all citizens, enabling political representation in a way that would reflect the multi-ethnic richness of the country", - "values": [ - "Minorities" - ] - }, - { - "text": "Continue full cooperation with the international human rights mechanisms ", - "values": [ - "General" - ] - }, - { - "text": "Adopt without delay proper measures aimed at ensuring the immediate release of all children-soldiers and tackle this grave breach of human rights as a high priority", - "values": [ - "International humanitarian law", - "Rights of the Child" - ] - }, - { - "text": "Eliminate all impediments to freedom of religion and belief at juridical and administrative levels, and put an end to the intimidation of members of religious communities.", - "values": [ - "Freedom of religion and belief" - ] - }, - { - "text": "Uphold freedom of expression, including with respect to public denunciations of the royal family.", - "values": [ - "Freedom of opinion and expression" - ] - }, - { - "text": "Continue its efforts to inform and raise awareness of the population on human rights principles ", - "values": [ - "Human rights education and training" - ] - }, - { - "text": "Decriminalize same-sex activity between consenting adults ", - "values": [ - "Sexual Orientation and Gender Identity" - ] - }, - { - "text": "Continue its efforts on improving access to justice", - "values": [ - "Justice" - ] - }, - { - "text": "Adopt legislation in accordance with the Rome Statute of the International Criminal Court and have a thorough discussion in Parliament on the establishment of mixed chambers, in order to guarantee fair trials for those who have committed crimes against humanity ", - "values": [ - "International instruments", - "Justice" - ] - }, - { - "text": "Improve the working conditions of human rights activists, to take all steps necessary to strengthen freedom of expression and freedom of the press and, in particular, to rigorously prosecute cases of intimidation against media representatives", - "values": [ - "Freedom of opinion and expression", - "Freedom of the press", - "Human rights defenders" - ] - }, - { - "text": "End the practice of forced return of persons who sought asylum in bordering States after the events in Andijan.", - "values": [ - "Asylum-seekers - refugees" - ] - }, - { - "text": "Strengthen the domestic legal framework to punish racial segregation and step up all types of measures to prevent, prohibit and eliminate in its territory all practices of this nature, in line with article 3 of the Convention on the Elimination of Racial Discrimination ", - "values": [ - "International instruments", - "Racial discrimination" - ] - }, - { - "text": "Receive other thematic Rapporteurs, than the Special Rapporteur on the right to food and the Special Rapporteur on the question of torture", - "values": [ - "Right to food", - "Special procedures", - "Torture and other CID treatment" - ] - }, - { - "text": "Continue to adopt measures in order to strengthen the Judiciary and the penitentiary system", - "values": [ - "Justice" - ] - }, - { - "text": "Continue efforts to promote economic diversification in order to promote the standard of living of citizens", - "values": [ - "Development" - ] - }, - { - "text": "Adopt the law that will protect minors from early and forced marriages", - "values": [ - "Rights of the Child", - "Women's rights" - ] - }, - { - "text": "Continue its policy to establish a climate of trust, understanding and mutual respect between the different religions in the country", - "values": [ - "Freedom of religion and belief" - ] - }, - { - "text": "Promote equality between men and women ", - "values": [ - "Women's rights" - ] - }, - { - "text": "Continue to support and empower women in public life", - "values": [ - "Women's rights" - ] - }, - { - "text": "Strengthen the capacities of the Ombudsman office", - "values": [ - "National Human Rights Institution" - ] - }, - { - "text": "Implement actions and immediate measures for the elimination of the worst forms of child labour, in conformity with ILO Convention No. 182", - "values": [ - "International instruments", - "Labour", - "Rights of the Child" - ] - }, - { - "text": "Review its domestic legislation to ensure the removal of any discriminatory provisions based on gender. ", - "values": [ - "Women's rights" - ] - }, - { - "text": "Take measures to eradicate poverty", - "values": [ - "Poverty" - ] - }, - { - "text": "Reduce the vulnerability of migrants to exploitation and discrimination through, among other measures, the review of the system to grant work permits and raising awareness of employers", - "values": [ - "Labour", - "Migrants", - "Racial discrimination" - ] - }, - { - "text": "Bring its action in line with the assistance provided by the Council, the Secretary-General of the United Nations and the High Commissioner for Human Rights, so as to cease the violent repression, initiate an open national dialogue which is inclusive and transparent, and initiate a reliable and transparent investigation into the violent repression, which has resulted in a high number of injured and dead protestors", - "values": [ - "General" - ] - }, - { - "text": "Continue to implement programmes and measures to ensure the enjoyment of the right to education and the right to health ", - "values": [ - "Right to education", - "Right to health" - ] - }, - { - "text": "Incorporate the provisions of the UN Convention against Torture into domestic laws, by inter alia reviewing the definition of torture", - "values": [ - "International instruments", - "Torture and other CID treatment" - ] - }, - { - "text": "Establish a moratorium on executions, with a view to abolishing the death penalty", - "values": [ - "Death penalty" - ] - }, - { - "text": "Adopt appropriate measures to disseminate widely and ensure full observance of the Declaration on Human Rights Defenders", - "values": [ - "Human rights defenders", - "International instruments" - ] - }, - { - "text": "Consider the possibility of signing and ratifying the International Convention for the Protection of All Persons from Enforced Disappearance and accept the competence of its Committee.", - "values": [ - "Enforced disappearances", - "International instruments" - ] - }, - { - "text": "Continue to work towards completion of necessary internal processes so that it may accede to the Optional Protocol to the Convention on the Rights of the Child on the sale of children", - "values": [ - "International instruments", - "Rights of the Child", - "Trafficking" - ] - }, - { - "text": "Continue to work with WHO and other relevant international organizations to improve access to health care and rebuild health infrastructure in the conflict-affected areas ", - "values": [ - "Right to health" - ] - }, - { - "text": "Take necessary measures to protect Ugandan children against all practices detrimental to their physical and moral integrity ", - "values": [ - "Rights of the Child" - ] - }, - { - "text": "Maintain efforts to ensure the full implementation of the national plan of action against racism", - "values": [ - "Racial discrimination" - ] - }, - { - "text": "Further strengthen cooperation with the United Nations human rights machinery and consider further actions that would strengthen, through greater integration, complementarity and visibility, the various components of its national system for protecting human rights.", - "values": [ - "General" - ] - }, - { - "text": "Share its experience with other countries as regards education programmes for students to teach them the values of tolerance and openness of Islam", - "values": [ - "Right to education" - ] - }, - { - "text": "Consider ratifying, as soon as possible, fundamental international human rights instruments such as the Convention against Torture and Other Cruel, Inhuman or Degrading Treatment or Punishment and the International Covenant on Economic, Social and Cultural Rights ", - "values": [ - "ESC rights - general", - "International instruments", - "Torture and other CID treatment" - ] - }, - { - "text": "Legally abolish the death penalty", - "values": [ - "Death penalty" - ] - }, - { - "text": "Strengthen the national strategy to guarantee better access to education for all children and to include in the school system, at any level, appropriate measures in the area of human rights education in accordance with the 2005-2009 Plan of Action of the World Programme for Human Rights Education", - "values": [ - "Right to education", - "Rights of the Child" - ] - }, - { - "text": "Make additional efforts to enhance the role of women in public life and ensure that these efforts are combined, for girls, with the abolition of female genital mutilation, whether it is consented to or not ", - "values": [ - "Rights of the Child", - "Torture and other CID treatment", - "Women's rights" - ] - }, - { - "text": "Extend an open and permanent invitation to all Special Procedures ", - "values": [ - "Special procedures" - ] - }, - { - "text": "Undertake a deep analysis of protection orders for victims of domestic violence that were broken, in order to identify the root causes and take appropriate measures to secure the safety of the victims ", - "values": [ - "Rights of the Child", - "Women's rights" - ] - }, - { - "text": "Increase its efforts to combat racist attacks committed by law enforcement personnel, particularly against the Roma ", - "values": [ - "Minorities", - "Racial discrimination" - ] - }, - { - "text": "Establish a formal system for granting asylum or otherwise recognizing refugee status, and remove the present geographic limitation ", - "values": [ - "Asylum-seekers - refugees" - ] - }, - { - "text": "The RMI Government is committed to maintaining this practice [involvement of civil society in UPR-related activities] during the follow-up process.", - "values": [ - "Civil society", - "UPR process" - ] - }, - { - "text": "Continue working towards implementing the 3Ends programme to combat violence against women", - "values": [ - "Women's rights" - ] - }, - { - "text": "Continue to proceed with the work of reviewing and making necessary adjustments to relevant domestic laws and regulations for the prompt ratification of CEDAW.", - "values": [ - "International instruments", - "Women's rights" - ] - }, - { - "text": "Complete the National Strategy on Violence against Women with a clear credible implementation plan and invite the Special Rapporteur on violence against women, its causes and consequences to visit Egypt", - "values": [ - "Special procedures", - "Women's rights" - ] - }, - { - "text": "Continue efforts in achieving the United Nations official development aid target of 0.7 per cent of gross domestic product", - "values": [ - "Development" - ] - }, - { - "text": "Review the recently adopted "protection of race and religion" laws to ensure that they are in line with Myanmar's human rights treaty obligations and that they adequately protect the rights of persons belonging to minority groups", - "values": [ - "Freedom of religion and belief", - "International instruments", - "Minorities", - "Racial discrimination" - ] - }, - { - "text": "Take all necessary steps to ensure the effective implementation of legislation seeking to combat violence against women and girls, and take specific measures to protect those who are victims of violence based on their sexual orientation and gender identity", - "values": [ - "Rights of the Child", - "Sexual Orientation and Gender Identity", - "Women's rights" - ] - }, - { - "text": "Make further efforts to ensure that the social services provided for children remain a priority.", - "values": [ - "Rights of the Child" - ] - }, - { - "text": "Adopt the necessary measures to increase the judicial control over the duration of pre-trial detention", - "values": [ - "Detention", - "Justice" - ] - }, - { - "text": "Implement criminal law provisions aimed at combating racially motivated crimes and punishing perpetrators", - "values": [ - "Racial discrimination" - ] - }, - { - "text": "Remove all provisions from laws that allow corporal punishment and explicitly prohibit corporal punishment by law as a method to discipline children ", - "values": [ - "Rights of the Child", - "Torture and other CID treatment" - ] - }, - { - "text": "Suspend Article 128 of the Iraqi Penal Code and put in place steps to repeal it completely", - "values": [ - "Rights of the Child", - "Women's rights" - ] - }, - { - "text": "Expedite its efforts to adopt the law on the prohibition of all fascist and neo-fascist organizations and the use of their symbols", - "values": [ - "Racial discrimination" - ] - }, - { - "text": "Establish a judicial reform which provides, inter alia, mechanisms to guarantee an independent justice and the effectiveness of the bodies responsible for combating corruption", - "values": [ - "Corruption", - "Justice" - ] - }, - { - "text": "Reform the military justice system to exclude civilians from its jurisdiction and be used only to hear offences arising in the context of military duties ", - "values": [ - "Human rights violations by state agents", - "Justice" - ] - }, - { - "text": "Continue efforts to combat violence against women, including by taking effective measures aimed at preventing and punishing such violence and ensuring that its perpetrators do not have impunity", - "values": [ - "Impunity", - "Women's rights" - ] - }, - { - "text": "Take all measures necessary to implement and effectively enforce the Family Protection Act, and strengthen the efforts to protect women and children from violence, in the families as well as when within the hands of the governments institutions", - "values": [ - "Rights of the Child", - "Women's rights" - ] - }, - { - "text": "Take the measures aiming at reinforcing the fight against torture and the fight against impunity", - "values": [ - "Impunity", - "Torture and other CID treatment" - ] - }, - { - "text": "Further strengthen measures to combat human trafficking, including by adopting a comprehensive strategy to combat trafficking, especially of women and children ", - "values": [ - "Rights of the Child", - "Trafficking", - "Women's rights" - ] - }, - { - "text": "Promote the relevant legislative review to encourage agreements between individuals and financial institutions in order to avoid evictions", - "values": [ - "Right to housing" - ] - }, - { - "text": "Ensure that, at a minimum, the institution of the ombudsman will be in a position to provide full protection to vulnerable groups through a human rights institution in conformity with the Paris Principles", - "values": [ - "National Human Rights Institution" - ] - }, - { - "text": "Ensure equal protection from all forms of discrimination, including by harmonizing and extending the scope of anti-discrimination laws to include the grounds of religion and belief, age and sexual orientation", - "values": [ - "Freedom of religion and belief", - "Racial discrimination", - "Sexual Orientation and Gender Identity" - ] - }, - { - "text": "Continue to prioritize policies aimed at improving the socio-economic condition of its citizens", - "values": [ - "ESC rights - general" - ] - }, - { - "text": "Put an end to the \u201cbaby box\u201c initiatives, which allow the anonymous abandonment of children without knowing their identity", - "values": [ - "Rights of the Child" - ] - }, - { - "text": "Continue to promote the right to access to water ", - "values": [ - "Right to water and sanitation" - ] - }, - { - "text": "Consider establishing a comprehensive legislation to combat discrimination faced by LGBT people ", - "values": [ - "Sexual Orientation and Gender Identity" - ] - }, - { - "text": "Make efforts to strengthen the rights of persons with disabilities ", - "values": [ - "Disabilities" - ] - }, - { - "text": "Consider inviting the United Nations Special Rapporteur for Human Rights Defenders to visit the country in the near future ", - "values": [ - "Human rights defenders", - "Special procedures" - ] - }, - { - "text": "Extend a standing invitation to all UN special procedure mandate holders ", - "values": [ - "Special procedures" - ] - }, - { - "text": "Enact specific and comprehensive national legislation on trafficking providing for a national oversight mechanism", - "values": [ - "Trafficking" - ] - }, - { - "text": "Substantially increase its allocation of funds to the Afghanistan Independent Human Rights Commission in order to ensure its long-term sustainability ", - "values": [ - "National Human Rights Institution" - ] - }, - { - "text": "Reduce protracted pretrial detention by seeking alternatives to confinement in all possible cases and by ensuring more expedient court processes", - "values": [ - "Detention", - "Justice" - ] - }, - { - "text": "The delegation informed about Hungary's willingness to accede to the Optional Protocol to the Convention against Torture (OP-CAT) as a part of its pledges to the Human Rights Council as well as about the Government's steps to prepare this ratification.", - "values": [ - "International instruments" - ] - }, - { - "text": "Consider reviewing the Sedition Act ", - "values": [ - "Freedom of opinion and expression" - ] - }, - { - "text": "Adopt legal and administrative measures to ensure the full integration of Roma people into Czech society and increase efforts to combat discrimination on the grounds of Roma women\u2019s rights and Roma children\u2019s education", - "values": [ - "Minorities", - "Racial discrimination", - "Right to education", - "Rights of the Child", - "Women's rights" - ] - }, - { - "text": "Speed up the national reconciliation process, so as to consolidate the progress towards the enjoyment of human rights by its people, with the support of the international community ", - "values": [ - "Justice" - ] - }, - { - "text": "Develop procedures for accountability and compensation in place in accordance with best practices and related international standards ", - "values": [ - "Justice" - ] - }, - { - "text": "Adopt measures to promote and protect the traditional and indigenous knowledge of the Batwa", - "values": [ - "Indigenous peoples" - ] - }, - { - "text": "Continue the effective realization of the right of education, including human rights education, in the country ", - "values": [ - "Human rights education and training", - "Right to education" - ] - }, - { - "text": "Establish a fully independent children's ombudsman that could receive complaints from all relevant stakeholders in the event of children's rights being violated ", - "values": [ - "National Human Rights Institution", - "Rights of the Child" - ] - }, - { - "text": "Take appropriate measures to reduce the development gap and social disparities so as to enhance the full enjoyment of all human rights for all Australian people, especially in the areas of economic, cultural and social rights ", - "values": [ - "Development", - "ESC rights - general" - ] - }, - { - "text": "Reform its legislation to ensure full respect of the principle of non-refoulement", - "values": [ - "Asylum-seekers - refugees" - ] - }, - { - "text": "Issue a standing invitation to Special Procedures and consider early accession to major international human rights instruments such as the ICCPR, ICESCR, ICERD, CAT, and ICPED", - "values": [ - "International instruments", - "Special procedures" - ] - }, - { - "text": "Strengthen its efforts to fight sexual abuse of children within the framework of adopting a programme for the promotion of the rights of the child ", - "values": [ - "Rights of the Child" - ] - }, - { - "text": "Allocate more resources to the education system, particularly education of girls, in order to achieve a successful social development level ", - "values": [ - "Right to education", - "Rights of the Child", - "Women's rights" - ] - }, - { - "text": "Develop a comprehensive, inclusive and holistic national plan of action against trafficking in persons, and examine the possibility of establishing a central organ to deal with trafficking in persons ", - "values": [ - "Trafficking" - ] - }, - { - "text": "Take measures to ensure the provision of the required resources for the full implementation of the new educational system introduced in 2012", - "values": [ - "Right to education" - ] - }, - { - "text": "Establish an explicit legal ban on corporal punishment of children in the home", - "values": [ - "Rights of the Child", - "Torture and other CID treatment" - ] - }, - { - "text": "Continue to strengthen laws and legislation which relate to human rights", - "values": [ - "General" - ] - }, - { - "text": "Continue its efforts to effectively implement its Development Plan on Social Protection ", - "values": [ - "ESC rights - general" - ] - }, - { - "text": "Implement in totality, once adopted, the 12th National Plan for the Economic and Social Development (2017-2021) and the 20 Years National Strategy", - "values": [ - "Development", - "ESC rights - general" - ] - }, - { - "text": "Take all necessary actions to guarantee to the population, especially women in vulnerable situations, safe access to reproductive and sexual health services, including family planning and education on the matter", - "values": [ - "Right to health", - "Women's rights" - ] - }, - { - "text": "Continue intensifying efforts to combat all cases of torture and other cruel, inhuman or degrading treatment, and launch the National Verification Mechanism that allows to bring complaints before the judiciary ", - "values": [ - "Justice", - "Torture and other CID treatment" - ] - }, - { - "text": "Continue with the efforts to ensure respect for the rights and fundamental freedoms of the entire population and compliance with international humanitarian law, particularly the principles of distinction, proportionality and precaution during attacks", - "values": [ - "International humanitarian law" - ] - }, - { - "text": "Ensure independent and efficient investigation within the suggested deadline of 15 months, as recommended by the Subcommittee on the Prevention of Torture", - "values": [ - "Torture and other CID treatment", - "Treaty bodies" - ] - }, - { - "text": "Continue to bolster progress in the education of girls and women and to further diversify their educational and professional choices", - "values": [ - "Right to education", - "Women's rights" - ] - }, - { - "text": "Carefully monitor the impact of legislation, policies and programmes to eliminate inequality between women and men, and take steps to ensure that equal rights are enjoyed de facto", - "values": [ - "Women's rights" - ] - }, - { - "text": "Proceed to the separation of the Ombudsman's Office and the National Human Rights Commission", - "values": [ - "National Human Rights Institution" - ] - }, - { - "text": "Continue to implement effectively the National Strategy for Gender Equality, Reduction of Gender-Based Violence and Domestic Violence ", - "values": [ - "Rights of the Child", - "Women's rights" - ] - }, - { - "text": "Continue efforts to counter corruption and particularly to look into the opportunity to adopt legislation on corruption in line with the United Nations Convention against Corruption ", - "values": [ - "Corruption", - "International instruments" - ] - }, - { - "text": "Implement the recommendations made by the United Nations Special Rapporteur on the rights of indigenous people after his visit in 2009 ", - "values": [ - "Indigenous peoples", - "Special procedures" - ] - }, - { - "text": "Strengthen its current work to combat racism and xenophobia, by condemning manifestations of intolerance and populism in the political sphere and in the media", - "values": [ - "Racial discrimination" - ] - }, - { - "text": "Ratify the Rome Statute and the International Convention for the Protection of All Persons from Enforced Disappearance", - "values": [ - "Enforced disappearances", - "International instruments", - "Justice" - ] - }, - { - "text": "Condemn and sanction all manifestations of intolerance, including in political discourse and on the Internet, with due regard for freedom of expression, adopt firm measures to promote a spirit of tolerance and intercultural dialogue and prevent the stigmatization of any group", - "values": [ - "Freedom of opinion and expression" - ] - }, - { - "text": "Continue its efforts to secure the economic and social rights of the people in spite of the global financial crisis \n", - "values": [ - "ESC rights - general" - ] - }, - { - "text": "Expand the mandate of the German Institute for Human Rights to receiving complaints of human rights violations ", - "values": [ - "National Human Rights Institution" - ] - }, - { - "text": "Step up its efforts to improve detention conditions in prisons and in police holding cells", - "values": [ - "Detention" - ] - }, - { - "text": "Implement the recommendations of the United Nations expert on the independence of judges and lawyers, particularly with a focus on challenges faced by women and other disadvantaged groups in accessing justice, including combating impunity and corruption ", - "values": [ - "Corruption", - "Impunity", - "Justice" - ] - }, - { - "text": "Full participation of indigenous peoples in decision making concerning them, and that they are consulted during the planning and implementation of major economic projects", - "values": [ - "Indigenous peoples" - ] - }, - { - "text": "Work to further increase women's participation in political and public life, including at the decision-making level ", - "values": [ - "Women's rights" - ] - }, - { - "text": "Expand its definition of the concept of rape in such a way as to clearly prohibit sexual harassment, and also define domestic violence in its criminal law ", - "values": [ - "Rights of the Child", - "Women's rights" - ] - }, - { - "text": "Enhance efforts towards increasing women's participation in the public and political life of their country", - "values": [ - "Women's rights" - ] - }, - { - "text": "Continue efforts to improve health and education services to ensure equal access for all citizens", - "values": [ - "Right to education", - "Right to health" - ] - }, - { - "text": "Continue cooperation with the United Nations human rights mechanisms in order to protect and promote human rights", - "values": [ - "Special procedures", - "Treaty bodies", - "UPR process" - ] - }, - { - "text": "Continue to take measures to guarantee poverty reduction and universal access to health services and education ", - "values": [ - "Poverty", - "Right to education", - "Right to health" - ] - }, - { - "text": "Intensify its efforts to support the rights and freedoms of minorities by undertaking prompt and impartial investigations into reports of attacks against religious and ethnic minorities and bring to justice those responsible", - "values": [ - "Minorities" - ] - }, - { - "text": "Continue putting forward intensive efforts in order to eliminate violence against women and boost their participation in political and administrative decision-making ", - "values": [ - "Women's rights" - ] - }, - { - "text": "Increase actions against the growing phenomenon of human trafficking for the purpose of sexual exploitation", - "values": [ - "Trafficking" - ] - }, - { - "text": "Take further necessary measures to increase the percentage of women in decision-making positions ", - "values": [ - "Women's rights" - ] - }, - { - "text": "Ensure the adequate completion of investigations into the killings of aid workers, including by encouraging the Presidential Commission of Inquiry to use its legal investigative powers to their full extent.", - "values": [ - "Extrajudicial executions" - ] - }, - { - "text": "Continue carrying out employment programmes, especially for the young people, the disadvantaged and disabled, as envisioned in its Programme of Employment throughout the year 2020", - "values": [ - "Development", - "Disabilities" - ] - }, - { - "text": "Study the possibility of signing and ratifying CED ", - "values": [ - "Enforced disappearances", - "International instruments" - ] - }, - { - "text": "Continue the process of accession to the core human rights instruments ", - "values": [ - "International instruments" - ] - }, - { - "text": "Provide suitable, dedicated secure facilities for serious juvenile offenders, with greater training for personnel involved in their supervision, and meaningful alternatives to imprisonment for minor juvenile offenders ", - "values": [ - "Detention", - "Rights of the Child" - ] - }, - { - "text": "Increase its efforts to combat human trafficking and protect victims of trafficking, especially women and children", - "values": [ - "Rights of the Child", - "Trafficking", - "Women's rights" - ] - }, - { - "text": "Intensify its cooperation with the Working Group on Enforced and Involuntary Disappearances to establish the fate of those who may have not been accounted for at the end of the armed conflict", - "values": [ - "Enforced disappearances", - "Special procedures" - ] - }, - { - "text": "Heed the calls of the international community by immediately ending the repression and the climate of terror that it has imposed on its own population by respecting in all circumstances the rules of international law and by bringing to justice those responsible and the perpetrators of these crimes ", - "values": [ - "Justice" - ] - }, - { - "text": "Make every effort to ensure that the Deceased Estates Bill and the Marriage, Divorce and Family Relations Bills, particularly in relation to the rights of women, enter into force as soon as possible ", - "values": [ - "Women's rights" - ] - }, - { - "text": "Strengthen the cooperation with civil society in the area of domestic violence, especially domestic violence against women and children and establish a more effective system of help to victims", - "values": [ - "Civil society", - "Rights of the Child", - "Women's rights" - ] - }, - { - "text": "Guyana voluntarily commits to continue to actively consider those remaining international human rights instruments.", - "values": [ - "International instruments" - ] - }, - { - "text": "Further combat discrimination against persons with drug dependence and persons living with HIV-AIDS, particularly children", - "values": [ - "HIV - Aids", - "Rights of the Child" - ] - }, - { - "text": "Conduct regular monitoring of the situation related to trafficking in persons to effectively combat it", - "values": [ - "Trafficking" - ] - }, - { - "text": "Review the provisions governing the operation of military courts in peacetime to comply with international standards.", - "values": [ - "Justice" - ] - }, - { - "text": "Continue to harmonize its domestic legislation with the international human rights treaties to which it is a party and with the recommendations issued by the Treaty Bodies ", - "values": [ - "International instruments", - "Treaty bodies" - ] - }, - { - "text": "Take measures to allow for the immediate, safe and unimpeded access of humanitarian assistance to all persons in need, allow for the visit of humanitarian agents to all places of detention and protect humanitarian agents and medical personnel operating in areas that are under siege or hard to reach", - "values": [ - "International humanitarian law" - ] - }, - { - "text": "Adopt specific legislation pertaining to gender discrimination in the labour market, including sexual harassment in the workplace and discrimination on the grounds of pregnancy and/or maternity", - "values": [ - "Women's rights" - ] - }, - { - "text": "Incorporate the Convention on the Elimination of All Forms of Discrimination against Women, the International Covenant on Economic, Social and Cultural Rights and the Convention against Torture into national legislation as soon as possible.", - "values": [ - "ESC rights - general", - "International instruments", - "Torture and other CID treatment", - "Women's rights" - ] - }, - { - "text": "Be more flexible on the preconditions set for minaret construction ", - "values": [ - "Freedom of religion and belief" - ] - }, - { - "text": "Intensify its efforts to ensure that collective centres and resettlement zones for IDPs that are still in operation meet adequate living standards, in particular access to drinking water and basic sanitation. Forced evictions should be exceptional, proceed in compliance with due process and respect the right to adequate housing for the affected population ", - "values": [ - "Internally displaced persons", - "Right to housing", - "Right to water and sanitation" - ] - }, - { - "text": "Ensure that children in conflict with the law have access to education", - "values": [ - "Right to education", - "Rights of the Child" - ] - }, - { - "text": "Take all steps necessary to reform the discriminatory provisions of penal and civil laws against women", - "values": [ - "Women's rights" - ] - }, - { - "text": "Accede to/ratify the International Convention for the Protection of All Persons from Enforced Disappearance", - "values": [ - "Enforced disappearances", - "International instruments" - ] - }, - { - "text": "Take concrete steps to guarantee gender equality and abolish all means of gender-based violence", - "values": [ - "Women's rights" - ] - }, - { - "text": "Amend legislation, in line with Committee on the Elimination of Racial Discrimination recommendations, to provide for the possibility of adopting special measures to promote equal opportunities, and address structural discrimination and inequality faced by immigrants, and minority groups, including Afro-Swedes and Muslims", - "values": [ - "Freedom of religion and belief", - "Migrants", - "Minorities", - "Racial discrimination", - "Treaty bodies" - ] - }, - { - "text": "The Government was committed to reducing the time taken to process applications for citizenship to an average of six months", - "values": [ - "Asylum-seekers - refugees" - ] - }, - { - "text": "To publish regularly, on the site of the Ministry of Foreign and European Affairs, the concluding observations of the treaty bodies", - "values": [ - "Treaty bodies" - ] - }, - { - "text": "Introduce and adopt a gender strategy that would be implemented in the higher education institutions ", - "values": [ - "Right to education", - "Women's rights" - ] - }, - { - "text": "Ensure full recognition of sexual and reproductive rights through access to comprehensive sexual education. Public health sector should take into account violations of sexual freedom and the importance of precocious pregnancies in the country, and combat discrimination related to socioeconomic conditions", - "values": [ - "Right to health", - "Women's rights" - ] - }, - { - "text": "Take further steps for the elimination of discrimination against women", - "values": [ - "Women's rights" - ] - }, - { - "text": "Continue to make concerted efforts to find a permanent and peaceful solution to the conflict in Darfur ", - "values": [ - "Other" - ] - }, - { - "text": "Continue to work towards the full abolition of death penalty and consider adopting an immediate de facto moratorium", - "values": [ - "Death penalty" - ] - }, - { - "text": "Adopt effective measures to ensure the eradication of all forms of discrimination based on sexual orientation and gender identity", - "values": [ - "Sexual Orientation and Gender Identity" - ] - }, - { - "text": "Strengthen its policies to improve labour standards for all workers and continue its efforts in reducing child labour ", - "values": [ - "Labour", - "Rights of the Child" - ] - }, - { - "text": "Continue to enhance women's empowerment and greater representation in all sectors", - "values": [ - "Women's rights" - ] - }, - { - "text": "Explicitly punish, by legal provisions, persons practising female genital mutilation (FGM), as well as parents or holders of parental authority, who consented to the practice of FGM ", - "values": [ - "Rights of the Child", - "Torture and other CID treatment", - "Women's rights" - ] - }, - { - "text": "Enact and enforce legislation that facilitates women\u2019s social, political and economic empowerment, including in relation to child marriage and forced conversion", - "values": [ - "Freedom of religion and belief", - "Rights of the Child", - "Women's rights" - ] - }, - { - "text": "Adopt effective measures to eradicate racial and religious profiling and report on those measures in the next national report", - "values": [ - "Freedom of religion and belief", - "Racial discrimination", - "UPR process" - ] - }, - { - "text": "Further improve the conditions of detainees in line with international human rights standards ", - "values": [ - "Detention", - "International instruments" - ] - }, - { - "text": "Release all prisoners of conscience and arbitrarily detained persons ", - "values": [ - "Detention", - "Freedom of religion and belief" - ] - }, - { - "text": "Expedite action to address the two issues contained in paragraphs 30(a) and (b) of the national report through the proposed amendment to the Representation of the People Act. ", - "values": [ - "Elections" - ] - }, - { - "text": "Reinforce its efforts to protect children, especially those in marginalized and disadvantaged situations", - "values": [ - "Rights of the Child" - ] - }, - { - "text": "Consider adopting the United Nations Rules for the Treatment of Women Prisoners and Non-custodial Measures for Women Offenders or the "Bangkok Rules" to respond to the specific needs of female inmates", - "values": [ - "Detention", - "Women's rights" - ] - }, - { - "text": "Reconsider its decision to denounce the American Convention on Human Rights and to return to the jurisdiction of the Inter-American Court of Human Rights", - "values": [ - "Other" - ] - }, - { - "text": "Maintain de facto moratorium on executions and ratify the Second Optional Protocol to the International Covenant on Civil and Political Rights with a view to definitive abolishment of the death penalty ", - "values": [ - "Death penalty", - "International instruments" - ] - }, - { - "text": "Strengthen efforts to reduce drug abuse, as recommended by the Committee on the Rights of the Child ", - "values": [ - "Rights of the Child", - "Treaty bodies" - ] - }, - { - "text": "Redouble efforts to effectively end the practice of female genital mutilation, in line with recommendations by the Committee on the Rights of the Child", - "values": [ - "Rights of the Child", - "Torture and other CID treatment", - "Treaty bodies", - "Women's rights" - ] - }, - { - "text": "Recommended the Government to take next step of abolishing the death penalty in its national legislation.", - "values": [ - "Death penalty" - ] - }, - { - "text": "Systematically and continuously integrate a gender perspective in the follow-up process to the UPR.", - "values": [ - "UPR process", - "Women's rights" - ] - }, - { - "text": "Strengthen policy coordination in the area of food and nutrition security and access to adequate, clean and safe drinking water especially for the population living below poverty line", - "values": [ - "Poverty", - "Right to food", - "Right to water and sanitation" - ] - }, - { - "text": "Strengthen cooperation with the treaty bodies by being up to date with the submission of its national reports", - "values": [ - "Treaty bodies" - ] - }, - { - "text": "Establish a national human rights institution with a broad mandate and sufficient financial and human resources, in accordance with the Paris Principles", - "values": [ - "National Human Rights Institution" - ] - }, - { - "text": "Intensify efforts to establish a national human rights commission conforming to the Paris Principles", - "values": [ - "National Human Rights Institution" - ] - }, - { - "text": "Take further concrete and effective steps towards social inclusion for Romani people, such as strengthening Latvia's human rights framework and providing human rights training to law enforcement authorities in order to increase protections for Romani people against violations of their human rights", - "values": [ - "Human rights education and training", - "Minorities", - "Racial discrimination" - ] - }, - { - "text": "Continue to combat prison overcrowding to ensure the human dignity of detainees ", - "values": [ - "Detention" - ] - }, - { - "text": "Continue efforts to implement its obligations in the sphere of human rights protection", - "values": [ - "General" - ] - }, - { - "text": "Ensure women\u2019s rights concerning their sexual and reproductive health through an enabling policy", - "values": [ - "Right to health", - "Women's rights" - ] - }, - { - "text": "Promote national efforts aiming at achieving gender equality and women's empowerment on the political and social level", - "values": [ - "Women's rights" - ] - }, - { - "text": "Make a wide array of family planning methods, such as a comprehensive range of modern and affordable contraceptives, more widely available", - "values": [ - "Women's rights" - ] - }, - { - "text": "Ratify the second Optional Protocol to the Covenant on Civil and Political Rights, abolishing the death penalty, signed in 2000 ", - "values": [ - "Death penalty", - "International instruments" - ] - }, - { - "text": "Ratify the core international human rights instruments such as CAT", - "values": [ - "International instruments", - "Torture and other CID treatment" - ] - }, - { - "text": "Provide invitations to other United Nations Special Rapporteurs, in particular those responsible for freedom of opinion and expression, freedom of religion or belief, as soon as possible, to visit Cuba", - "values": [ - "Freedom of opinion and expression", - "Freedom of religion and belief", - "Special procedures" - ] - }, - { - "text": "Develop opportunities afforded by international cooperation to strengthen its capacities, notably in the fight against poverty, while continuing its development programmes ", - "values": [ - "Development", - "Poverty", - "Technical assistance and cooperation" - ] - }, - { - "text": "Continue its efforts to put in place effective poverty reduction and health strategies, particularly to solve the problem of low life expectancy and high mortality rate.", - "values": [ - "Poverty", - "Right to health" - ] - }, - { - "text": "Continue institutionalizing the achievements in human rights and work to strengthen national human rights mechanisms and democratic institutions ", - "values": [ - "General" - ] - }, - { - "text": "Immediately end the practice of indefinitely extending military service, a system which amounts to forced labour ", - "values": [ - "CP rights - general", - "Labour" - ] - }, - { - "text": "Take further measures to ensure sufficient data on the prevalence of the worst forms of child labour in the country and particularly with regard to child trafficking ", - "values": [ - "Labour", - "Rights of the Child", - "Trafficking" - ] - }, - { - "text": "Consolidate and boost effective implementation of commitments to protect and promote human rights, especially economic, social and cultural rights", - "values": [ - "ESC rights - general" - ] - }, - { - "text": "Ratify OP-CRC-SC ", - "values": [ - "International instruments", - "Rights of the Child", - "Trafficking" - ] - }, - { - "text": "Take appropriate measures to eliminate exclusion of non-citizens from accessing some public places and facilities on the basis of race or nationality, by effectively applying legislation and investigating and sanctioning such acts", - "values": [ - "Racial discrimination" - ] - }, - { - "text": "Continue ongoing efforts for the betterment of the rights of children and women and other vulnerable groups ", - "values": [ - "Rights of the Child", - "Women's rights" - ] - }, - { - "text": "Amend existing legislation so as to ensure equal succession and inheritance rights for women. ", - "values": [ - "Women's rights" - ] - }, - { - "text": "Establish an independent national human rights institution, in accordance with the Paris Principles.", - "values": [ - "National Human Rights Institution" - ] - }, - { - "text": "Improve the harmonization of national legislation with that of the Convention on the Rights of the Child, in particular the legal status of corporal punishment of children and provisions on the minimum age of criminal responsibility", - "values": [ - "International instruments", - "Justice", - "Rights of the Child", - "Torture and other CID treatment" - ] - }, - { - "text": "Continue to engage its regional and international partners with a view to seeking technical and other assistance towards its full compliance with its human rights treaty obligations", - "values": [ - "Treaty bodies" - ] - }, - { - "text": "Raise public awareness of hate speech and hate crimes on grounds of sexual orientation, gender identity or expression, religious affiliation, disability or ethnic identity, encourage reporting to authorities, and develop procedures to ensure such crimes are effectively investigated", - "values": [ - "Disabilities", - "Freedom of religion and belief", - "Minorities", - "Racial discrimination", - "Sexual Orientation and Gender Identity" - ] - }, - { - "text": "Heighten the action to mitigate and eventually eliminate extreme social inequalities within the country thereby ensuring equal access by all persons to health care, education and housing ", - "values": [ - "Right to education", - "Right to health", - "Right to housing" - ] - }, - { - "text": "Efficiently implement recently ratified international conventions, especially in the field of child rights", - "values": [ - "National Human Rights Institution", - "Rights of the Child" - ] - }, - { - "text": "Comply with its obligations under the International Covenant on Civil and Political Rights by putting an immediate end to the use of arbitrary detention", - "values": [ - "CP rights - general", - "Detention", - "International instruments" - ] - }, - { - "text": "Elaborate an effective mechanism to facilitate cooperation with the relevant institutions of the United Nations ", - "values": [ - "Other" - ] - }, - { - "text": "Discontinue overly broad restrictions on the media and freedom of expression, and engage in regular dialogue with journalists to create an environment that encourages free expression without fear of censure", - "values": [ - "Freedom of opinion and expression", - "Freedom of the press" - ] - }, - { - "text": "Condemn racist and xenophobic speech by politicians and promote tolerance and diversity", - "values": [ - "Racial discrimination" - ] - }, - { - "text": "Approve the new Law on Childhood and include the prohibition of corporal punishment in all settings", - "values": [ - "Rights of the Child", - "Torture and other CID treatment" - ] - }, - { - "text": "Provide training to medical doctors and cooperate with international organizations, especially the World Health Organization, and members of the international community on obtaining vaccinations to combat HIV-AIDS and to prevent its spread ", - "values": [ - "HIV - Aids" - ] - }, - { - "text": "Take necessary measures to prevent xenophobia and Islamophobia in the Netherlands and to ensure that religious communities in the Netherlands do not get discriminated against", - "values": [ - "Freedom of religion and belief", - "Racial discrimination" - ] - }, - { - "text": "Take all necessary measures to ensure that all children, particularly Roma children, have equal opportunities for access to school. ", - "values": [ - "Minorities", - "Right to education", - "Rights of the Child" - ] - }, - { - "text": "Continue regular dialogue between the government and journalists in order to reach an agreement on pending issues in the media sector", - "values": [ - "Freedom of the press" - ] - }, - { - "text": "Improve the identification of eligible beneficiaries of social protection schemes", - "values": [ - "Other" - ] - }, - { - "text": "Step up efforts to reduce maternal mortality by expanding coverage and quality of health services, goods and facilities focusing on maternal health care", - "values": [ - "Right to health", - "Women's rights" - ] - }, - { - "text": "Carry on its measures in the implementation of the act on Prevention of Domestic Violence as a means to improve and protect the rights of women", - "values": [ - "Rights of the Child", - "Women's rights" - ] - }, - { - "text": "Consider ratification or accession to CEDAW, ICRMW, CAT and ICPPED", - "values": [ - "Enforced disappearances", - "International instruments", - "Labour", - "Migrants", - "Torture and other CID treatment", - "Women's rights" - ] - }, - { - "text": "Consolidate her achievements in strengthening the legal framework, ensuring social welfare, and combating racial discrimination, racism and extremism", - "values": [ - "Racial discrimination" - ] - }, - { - "text": "Implement the constitutional review of the death penalty and to confirm commitment to a moratorium with a view to abolishing death penalty", - "values": [ - "Death penalty" - ] - }, - { - "text": "Encourage the collective return of the Iraqi refugees, ensure their rights and reintegrate them into the unified Iraqi society", - "values": [ - "Asylum-seekers - refugees" - ] - }, - { - "text": "Continue strengthening economic, social and cultural rights and improve the living conditions of the population, for which the support and solidarity of the international community is very important", - "values": [ - "ESC rights - general", - "Technical assistance and cooperation" - ] - }, - { - "text": "Adopt measures to prohibit and prevent discrimination on the grounds of sexual orientation and gender identity", - "values": [ - "Sexual Orientation and Gender Identity" - ] - }, - { - "text": "Develop an independent child rights monitoring mechanism and allocate adequate financial resources to ensure effective implementation of the relevant international obligations", - "values": [ - "International instruments", - "Rights of the Child" - ] - }, - { - "text": "Make every possible effort to proceed with the early conclusion of important international human rights treaties in particular the Convention against Torture and Other Cruel, Inhuman or Degrading Treatment or Punishment", - "values": [ - "International instruments", - "Torture and other CID treatment" - ] - }, - { - "text": "Take additional measures to strengthen awareness-raising campaigns to promote respect for children's rights", - "values": [ - "Human rights education and training", - "Rights of the Child" - ] - }, - { - "text": "Take measures to empower young people, particularly through education, with a view to preventing them from joining criminal and transnational gangs, and ensure their rehabilitation and social reintegration", - "values": [ - "Public security", - "Right to education" - ] - }, - { - "text": "Further strengthen its national machinery to ensure gender equality ", - "values": [ - "Women's rights" - ] - }, - { - "text": "Amend relevant national laws and regulations by 1 October 2014, as stipulated in the Constitution", - "values": [ - "Other" - ] - }, - { - "text": "Condemn racist and xenophobic speech by politicians and promote tolerance and diversity ", - "values": [ - "Racial discrimination" - ] - }, - { - "text": "Implement its vast programme launched for human rights promotion, with the support of the international community. ", - "values": [ - "Human rights education and training" - ] - }, - { - "text": "Fulfil its obligations under the International Covenant on Economic, Social and Cultural Rights by taking pragmatic steps to address the problem of high malnutrition of children", - "values": [ - "International instruments", - "Right to food", - "Rights of the Child" - ] - }, - { - "text": "Consider ratifying the Convention on the Rights of Persons with Disabilities", - "values": [ - "Disabilities", - "International instruments" - ] - }, - { - "text": "Continue its efforts aimed at promoting and protecting all human rights ", - "values": [ - "General" - ] - }, - { - "text": "Take the necessary steps to ensure impartial access to adequate food, drinking water and other basic necessities for all people within its jurisdiction, including vulnerable groups ", - "values": [ - "Right to food", - "Right to water and sanitation" - ] - }, - { - "text": "Continue to strengthen cooperation with civil society organizations", - "values": [ - "Civil society" - ] - }, - { - "text": "Guyana is voluntarily committing to continue consideration of this issue [abolition of the death penalty] over the next 2 years and to report its findings to the UNHRC.", - "values": [ - "Death penalty" - ] - }, - { - "text": "Proceed with the ratification of the Optional Protocol to the International Covenant on Economic, Social and Cultural Rights ", - "values": [ - "ESC rights - general", - "International instruments" - ] - }, - { - "text": "Adopt a National Plan on the Security Council Resolution on Women, Peace and Security [1325]", - "values": [ - "Women's rights" - ] - }, - { - "text": "Take effective measures to prevent alleged abuse and violence by police officers, encouraging the Government to respond appropriately to the Special Rapporteur on the question of torture's concerns and recommendations on this matter", - "values": [ - "Human rights violations by state agents", - "Special procedures", - "Torture and other CID treatment" - ] - }, - { - "text": "Consider establishing enhanced procedures and transparent criteria regarding the appointment and dismissal of judges, and the application of disciplinary measures in order to dispel concerns of the international community regarding the independence of the judiciary ", - "values": [ - "Justice" - ] - }, - { - "text": "Ensure that the definition of torture in national law is fully in line with the Convention against Torture", - "values": [ - "International instruments", - "Torture and other CID treatment" - ] - }, - { - "text": "Respond positively to the requests for a visit by the Special Rapporteur on the sale of children ", - "values": [ - "Rights of the Child", - "Special procedures", - "Trafficking" - ] - }, - { - "text": "Further strengthen existing flagship programmes for social safety nets", - "values": [ - "Other" - ] - }, - { - "text": "Guarantee to LGBTI persons the full enjoyment under equal conditions of their human rights, through the abolishment of the norms that criminalize and stigmatize them, and the investigation and sanction of cases of violence or discrimination motivated by sexual orientation or gender identity", - "values": [ - "Sexual Orientation and Gender Identity" - ] - }, - { - "text": "Ratify international instruments still pending, particularly the International Covenant on Civil and Political Rights, the International Covenant on Economic, Social and Cultural Rights, the Optional Protocol to the Convention against Torture, the Optional Protocol to the Convention on the\nRights of Persons with Disabilities, and the Rome Statute", - "values": [ - "CP rights - general", - "International instruments" - ] - }, - { - "text": "Complete the Process of adopting legislative measures to prevent and prosecute acts of torture and other ill-treatment, according to international standards", - "values": [ - "Torture and other CID treatment" - ] - }, - { - "text": "Apply in its periodic development plans a policy on poverty reduction aimed at social and economic justice", - "values": [ - "Poverty" - ] - }, - { - "text": "Enact general laws to combat discrimination, particularly against migrants and ethnic and religious minorities", - "values": [ - "Freedom of religion and belief", - "Migrants", - "Racial discrimination" - ] - }, - { - "text": "Continue the follow-up on the request by a number of Special Procedures Mandate Holders to visit the country", - "values": [ - "Special procedures" - ] - }, - { - "text": "Continue to make efforts to abolish the practice of male guardianship over women", - "values": [ - "Women's rights" - ] - }, - { - "text": "Continue the programmes to reform the judicial sector and penitentiary facilities", - "values": [ - "Detention", - "Justice" - ] - }, - { - "text": "Hold all those responsible for violations and abuses of international law, including human rights law and international humanitarian law, accountable in accordance with international standards", - "values": [ - "International humanitarian law" - ] - }, - { - "text": "Further advance its national efforts on the promotion and protection of human rights through, among others, developing a comprehensive Human Rights National Action Plan", - "values": [ - "General" - ] - }, - { - "text": "Continue its national policy aimed at improving the access of citizens to subsistence and to development, and improve continuously the standard of living of the population according to the national conditions of China", - "values": [ - "Development" - ] - }, - { - "text": "Take necessary measures to ensure the registration and enrolment of children born out of wedlock", - "values": [ - "Rights of the Child" - ] - }, - { - "text": "Intensify efforts aimed at improving living conditions in prisons, putting an end to the detention of children in police stations and accelerating the adoption of measures to protect children in juvenile correctional facilities ", - "values": [ - "Detention", - "Rights of the Child" - ] - }, - { - "text": "Continue to invest in education, giving special attention to women and girls.", - "values": [ - "Right to education", - "Rights of the Child", - "Women's rights" - ] - }, - { - "text": "Complete its strict approach to female genital mutilations with awareness-raising, prevention and education of the concerned communities", - "values": [ - "Human rights education and training", - "Rights of the Child", - "Torture and other CID treatment", - "Women's rights" - ] - }, - { - "text": "Continue strengthening its inclusive and accurate education policy", - "values": [ - "Right to education" - ] - }, - { - "text": "Strengthen socioeconomic projects to ensure economic, social and cultural rights, and consequently, to improve the standard of living of the citizens ", - "values": [ - "ESC rights - general" - ] - }, - { - "text": "Amend the Human Rights Commission Act to ensure that the Commission enjoys full independence and is adequately resourced, in accordance with the Paris Principles", - "values": [ - "National Human Rights Institution" - ] - }, - { - "text": "Endeavour to accede to ICRMW", - "values": [ - "International instruments", - "Labour", - "Migrants" - ] - }, - { - "text": "Further efforts to be made to make birth registration available to all groups of the population", - "values": [ - "Rights of the Child", - "Statelessness and the right to nationality" - ] - }, - { - "text": "Prepare and regularly submit periodic reports concerning international conventions, to which Jamaica is a party", - "values": [ - "International instruments" - ] - }, - { - "text": "Put an end to enforced expulsions in the south and ensure that compensation and relocation propositions are actually accorded to the people concerned", - "values": [ - "Right to housing", - "Right to land" - ] - }, - { - "text": "Punish the perpetrators of racial aggression", - "values": [ - "Racial discrimination" - ] - }, - { - "text": "Put an end to trafficking in persons, particularly for purposes of sexual exploitation or child labour", - "values": [ - "Labour", - "Rights of the Child", - "Trafficking" - ] - }, - { - "text": "Adhere to the Convention on the Rights of the Child and its two Optional Protocols and\nendorse the Paris Commitments to protect children from unlawful recruitment or use by armed forces\nor armed groups", - "values": [ - "International instruments", - "Rights of the Child" - ] - }, - { - "text": "Ensure the separation of power and the independence of the judiciary and prevent government officials from interfering in judicial proceedings", - "values": [ - "Justice" - ] - }, - { - "text": "Adopt a de jure moratorium on executions with a view to abolishing the death penalty ", - "values": [ - "Death penalty" - ] - }, - { - "text": "Amend the Charter of Fundamental Rights and Freedoms to include sexual orientation and gender identity and expression as a protected category", - "values": [ - "Sexual Orientation and Gender Identity" - ] - }, - { - "text": "Continue its efforts in order to counter illiteracy amongst girls", - "values": [ - "Right to education", - "Rights of the Child" - ] - }, - { - "text": "Cooperate with the international community, in particular through cooperation with the Office for the High Commissioner for Human Rights and the recently established Commission of Inquiry", - "values": [ - "Technical assistance and cooperation" - ] - }, - { - "text": "Re-establish a moratorium on the death penalty with a view of its elimination", - "values": [ - "Death penalty" - ] - }, - { - "text": "Investigate all cases of extrajudicial killings, torture and ill-treatment by the police and bring those responsible to justice ", - "values": [ - "Extrajudicial executions", - "Human rights violations by state agents", - "Technical assistance and cooperation" - ] - }, - { - "text": "Take further resolute action to deal with the problems of reported instances of hate speech by politicians, targeting migrants, asylum-seekers, refugees, and persons of African origin in a comprehensive manner ", - "values": [ - "Asylum-seekers - refugees", - "Migrants", - "Minorities", - "Racial discrimination" - ] - }, - { - "text": "The government and all other parties concerned should ensure the immediate release of all child soldiers and take all measures to prevent any future recruitment", - "values": [ - "International humanitarian law", - "Rights of the Child" - ] - }, - { - "text": "Expedite the considerations to become a party to the ICCPR and ICESCR", - "values": [ - "CP rights - general", - "ESC rights - general", - "International instruments" - ] - }, - { - "text": "Abolish criminal responsibility for organization and participation in the activities of non-registered organizations, as well as lifting the ban on the activities of non-registered organizations", - "values": [ - "Civil society", - "Freedom of association and peaceful assembly" - ] - }, - { - "text": "Take measures to foster an enabling environment for civil society, including through enacting and implementing before the next UPR a law on associations to allow for the legal creation and registration of independent civil society associations and organisations", - "values": [ - "Civil society", - "Freedom of association and peaceful assembly", - "UPR process" - ] - }, - { - "text": "Strengthen efforts to spread education, especially for women and children ", - "values": [ - "Right to education", - "Rights of the Child", - "Women's rights" - ] - }, - { - "text": "Continue paying attention to promoting and protecting the human rights of vulnerable groups.", - "values": [ - "Minorities" - ] - }, - { - "text": "Equalize the age of consent for opposite and same-sex conduct, and adopt appropriate legislative and other measures to prohibit discrimination on the basis of sexual orientation and gender identity ", - "values": [ - "Sexual Orientation and Gender Identity" - ] - }, - { - "text": "Ensure that all detainees who are kept in pre-trial detention are brought before a judge within the deadlines provided by the Constitution of Nigeria, or in the days following their arrest in accordance with the ICCPR", - "values": [ - "Detention", - "International instruments" - ] - }, - { - "text": "Strengthen measures to combat maternal mortality and morbidity with a human rights-based approach", - "values": [ - "Right to health", - "Women's rights" - ] - }, - { - "text": "Accelerate efforts to ratify the International Convention on the Protection of All Persons from Enforced Disappearance", - "values": [ - "Enforced disappearances", - "International instruments" - ] - }, - { - "text": "Complete the process of establishing a National Human Rights Commission in conformity with the Paris Principles", - "values": [ - "National Human Rights Institution" - ] - }, - { - "text": "Strengthen and implement policy measures to eliminate child trafficking", - "values": [ - "Labour", - "Rights of the Child" - ] - }, - { - "text": "Strengthen efforts in raising public awareness to eliminate child labour ", - "values": [ - "Human rights education and training", - "Labour", - "Rights of the Child" - ] - }, - { - "text": "Elaborate a National Action Plan for the promotion and protection of human rights that allows federal and non-federal institutions that work in this field to better coordinate policies and their implementation ", - "values": [ - "General" - ] - }, - { - "text": "Promote and uphold the freedom of the media and the right to freedom of expression and ensure that legislation and practice are brought in line with article 19 of the International Covenant on Civil and Political Rights as well as conducting impartial investigations into all cases of attacks, harassment and intimidation and bringing perpetrators to justice", - "values": [ - "Freedom of opinion and expression", - "Freedom of the press", - "International instruments" - ] - }, - { - "text": "Ratify the core human rights instruments, including the Convention against Torture and Other Cruel, Inhuman or Degrading Treatment or Punishment ", - "values": [ - "International instruments", - "Torture and other CID treatment" - ] - }, - { - "text": "Adopt a national policy to provide human rights defenders with protection and ensure investigation and punishment of threats or attacks against them", - "values": [ - "Human rights defenders" - ] - }, - { - "text": "Undertake effective restructuring of the judicial system, armed forces, police and other security forces, with the aim of strengthening the protection of human rights in law enforcement ", - "values": [ - "Justice" - ] - }, - { - "text": "Adopt a comprehensive national action plan that a) includes clear objectives and tangible measures to implement all human rights - b) allocates financial and human resources for each measure envisaged - and c) establishes an evaluation mechanism for regular monitoring of the measures ", - "values": [ - "General" - ] - }, - { - "text": "Take more systematic measures to promote gender equality in practice by, inter alia, increasing women's participation in the Police Force. ", - "values": [ - "Women's rights" - ] - }, - { - "text": "Ratify the First Optional Protocol to the International Covenant on Civil and Political Rights", - "values": [ - "CP rights - general", - "International instruments" - ] - }, - { - "text": "Strengthen awareness campaigns on the harmful consequences of female genital mutilation and bring all excision practitioners to justice", - "values": [ - "Human rights education and training", - "Rights of the Child", - "Torture and other CID treatment", - "Women's rights" - ] - }, - { - "text": "Pursue the implementation of the roadmap of March 6th 2014 concerning the elimination of all contemporary forms of slavery", - "values": [ - "Other" - ] - }, - { - "text": "Strengthen the protection framework for the rights of the child, particularly through measures to prevent child abuse, exploitation and violence against children, as well as facilitating access to justice and legal aid, and medical and psychological support to victims", - "values": [ - "Rights of the Child" - ] - }, - { - "text": "Decriminalize same-sex relations between consenting adults by repealing article 230 of the Criminal Code", - "values": [ - "Sexual Orientation and Gender Identity" - ] - }, - { - "text": "Address seriously the issues of abductees, prisoners of war and separated families", - "values": [ - "Detention", - "Enforced disappearances", - "International humanitarian law" - ] - }, - { - "text": "Continue to reinforce actions aimed at the protection of children against violence and other forms of maltreatment", - "values": [ - "Rights of the Child" - ] - }, - { - "text": "Continue its efforts to ratify the International Convention for the Protection of All Persons from Enforced Disappearance", - "values": [ - "Enforced disappearances", - "International instruments" - ] - }, - { - "text": "Guarantee the fight against impunity by ensuring that all persons convicted for human rights violations are brought to justice", - "values": [ - "Impunity" - ] - }, - { - "text": "Continue strengthening awareness-raising campaigns to increase women's presence in State bodies and in the main companies in the country", - "values": [ - "Human rights education and training", - "Women's rights" - ] - }, - { - "text": "Take legal and educative measures in order to change the population's attitude to corporal punishment of children", - "values": [ - "Human rights education and training", - "Rights of the Child", - "Torture and other CID treatment" - ] - }, - { - "text": "Accelerate the enactment process of the new Criminal Code", - "values": [ - "Justice" - ] - }, - { - "text": "Accelerate the processes of ratification of different instruments for human rights protection with a special emphasis on the International Covenant of Economic, Social and Cultural Rights and the International Covenant of Civil and Political Rights", - "values": [ - "CP rights - general", - "ESC rights - general", - "International instruments" - ] - }, - { - "text": "Continue to promote the participation of women in the public and political life of the country until they have gradually achieved a level of gender equality.", - "values": [ - "Women's rights" - ] - }, - { - "text": "Introduce an immediate moratorium on the death penalty aimed at its permanent abolition and implement the Committee against Torture recommendations on arbitrary and secret executions", - "values": [ - "Death penalty", - "Extrajudicial executions", - "Treaty bodies" - ] - }, - { - "text": "Enhance the status of the national plan of UPR follow up into a comprehensive national human rights' plan of action ", - "values": [ - "UPR process" - ] - }, - { - "text": "Continue taking the necessary measures to strengthen the efforts aiming to combat discrimination and hatred of foreigners", - "values": [ - "Migrants", - "Racial discrimination" - ] - }, - { - "text": "Ensure implementation of comprehensive legislative reform that guarantees the same level of protection for all grounds of discrimination, in particular discrimination on the grounds of sexual orientation and gender identity", - "values": [ - "Sexual Orientation and Gender Identity" - ] - }, - { - "text": "Further expand the educational activities in the field of human rights with the focus on law enforcement, civil service and vulnerable groups", - "values": [ - "Human rights education and training" - ] - }, - { - "text": "Enhance and improve laws and legislation to combat all forms of discrimination, racism and foreign hatred", - "values": [ - "Migrants", - "Racial discrimination" - ] - }, - { - "text": "Continue pursuing its anti-poverty strategy, strengthen the rights of vulnerable groups, and make efforts to realize sustainable economic and social development ", - "values": [ - "Development" - ] - }, - { - "text": "Ensure that humanitarian access is granted to civilian populations in all conflict-affected areas", - "values": [ - "Other" - ] - }, - { - "text": "A public policy for widows and orphans", - "values": [ - "Rights of the Child", - "Women's rights" - ] - }, - { - "text": "Give the new Independent Commission of Investigations the necessary political support and operational resources to fulfil its mandate ", - "values": [ - "Justice" - ] - }, - { - "text": "Increase measures to integrate ethnic Serb and Roma minorities into the fabric of Croatian life, including through a broadcast media campaign to communicate and strengthen themes of reconciliation and tolerance. Such a media campaign could also target the minority communities themselves with messages on how to address some of the issues that perpetuate discrimination, such as Roma-language broadcasts on birth registration, education and health services ", - "values": [ - "Human rights education and training", - "Minorities", - "Racial discrimination", - "Statelessness and the right to nationality" - ] - }, - { - "text": "Decriminalize the activities of non-registered NGOs and put an end to all forms of administrative or judicial harassment towards independent civil society actors", - "values": [ - "Civil society", - "Freedom of association and peaceful assembly" - ] - }, - { - "text": "Accede to the Rome Statue of the International Criminal Court (ICC), the International Convention for the Protection of All Persons from Enforced Disappearance (CPED) and, the Convention on the Prevention and Punishment of the Crime of Genocide ", - "values": [ - "Enforced disappearances", - "International instruments", - "Justice" - ] - }, - { - "text": "Abolish de jure the death penalty for all crimes", - "values": [ - "Death penalty" - ] - }, - { - "text": "Implement the comprehensive diversity strategy for 2016-2026", - "values": [ - "Other" - ] - }, - { - "text": "Continue to enhance its activities towards the eradication of poverty in all its states and share its experiences with other countries", - "values": [ - "Poverty" - ] - }, - { - "text": "Immediately cease all public support for the employment of children in cotton harvesting and that the Government publicly condemn and effectively combat all forms of child labour", - "values": [ - "Labour", - "Rights of the Child" - ] - }, - { - "text": "Launch measures to promote and protect the rights of peasants and other people who work in rural areas", - "values": [ - "Labour" - ] - }, - { - "text": "Repeal all norms/standards that discriminate against women, remove all reservations to the Convention on the Elimination of all Forms of Discrimination against Women and promote gender equality by introducing public awareness-raising programmes", - "values": [ - "Human rights education and training", - "International instruments", - "Rights of the Child", - "Women's rights" - ] - }, - { - "text": "Consider further cooperation with the international human rights monitoring mechanisms, including treaty bodies and Special procedures of the Human Rights Council ", - "values": [ - "Special procedures", - "Treaty bodies", - "UPR process" - ] - }, - { - "text": "Harmonize domestic legislation with international standards in relation to crimes of sexual violence during armed conflicts, continuing with investigations and ensuring the protection of witnesses and victims of these crimes", - "values": [ - "International humanitarian law", - "Justice", - "Women's rights" - ] - }, - { - "text": "Switzerland is considering the possibility of establishing a national human rights institution in accordance with the Paris Principles. ", - "values": [ - "National Human Rights Institution" - ] - }, - { - "text": "Take effective steps in order to halt and prevent the frequent use of torture during the first days of police custody, in a manner which is consistent with its obligations under the Convention against Torture ", - "values": [ - "International instruments", - "Torture and other CID treatment" - ] - }, - { - "text": "Give priority to the improvement of the situation of those living in severe poverty when restoring the social protection measures and assistance", - "values": [ - "Poverty" - ] - }, - { - "text": "Ensure compliance with article 4 of the International Covenant on Civil and Political Rights and the general observation number 29 of the Human Rights Committee on state of emergencies.", - "values": [ - "International instruments", - "Justice", - "Torture and other CID treatment" - ] - }, - { - "text": "Continue its efforts in addressing the challenges in the promotion of the rights to education, inter alia through addressing high rates of student withdrawal from schools", - "values": [ - "Right to education" - ] - }, - { - "text": "Address the fragmentation of anti-discrimination provisions in its legislation by adopting a robust and comprehensive anti-discrimination law", - "values": [ - "Racial discrimination" - ] - }, - { - "text": "Consider the possibility of reforming the laws criminalizing homosexuality and adapting them to international standards", - "values": [ - "Sexual Orientation and Gender Identity" - ] - }, - { - "text": "Croatia took the opportunity to announce that the midterm universal periodic review will be prepared in order to address the level of implementation of all recommendations received from the second cycle.", - "values": [ - "UPR process" - ] - }, - { - "text": "Consider lifting geographic limitations to the 1951 Refugee Convention ", - "values": [ - "Asylum-seekers - refugees", - "International instruments" - ] - }, - { - "text": "Devote more resources to plans to reduce poverty and to programmes supporting the most vulnerable groups in society, especially in rural areas of the country", - "values": [ - "Poverty" - ] - }, - { - "text": "Develop a comprehensive legal framework to protect children from trafficking", - "values": [ - "Rights of the Child", - "Trafficking" - ] - }, - { - "text": "Maintain and expand the initiatives undertaken to reduce and eliminate sexual violence as well as exploitation and human trafficking while at the same time, provide services to and protect victims", - "values": [ - "Trafficking" - ] - }, - { - "text": "Maintain disaggregated data on caste and related discrimination.", - "values": [ - "Minorities", - "Racial discrimination" - ] - }, - { - "text": "Continue efforts to end child recruitment by the national armed forces and all non-State armed groups", - "values": [ - "International humanitarian law", - "Rights of the Child" - ] - }, - { - "text": "Create public policies for equality of opportunities and affirmative action to combat the low participation of women in public life, especially in decision-making bodies, including Parliament, the Government, the diplomatic service, regional and local municipalities and the upper level of the judiciary ", - "values": [ - "Women's rights" - ] - }, - { - "text": "Submit all overdue reports to the relevant human rights treaty bodies and issue standing invitations to all special procedures", - "values": [ - "Special procedures", - "Treaty bodies" - ] - }, - { - "text": "Take all necessary measures to improve the conditions in prisons and resolve the issue of prison overcrowding", - "values": [ - "Detention" - ] - }, - { - "text": "Ratification of the Rome Statute establishing the International Criminal Court ", - "values": [ - "International instruments", - "Justice" - ] - }, - { - "text": "Continue taking measures with a view to ratifying the Convention on the Rights of Persons with Disabilities as a priority", - "values": [ - "Disabilities", - "International instruments" - ] - }, - { - "text": "Continue and deepen the Second Plan on Equal Opportunities for Men and Women and the Government's Agenda for Gender Equality so as to totally eliminate discrimination against women at work, in decision-making positions, in the management of the marital partnership (regimen patrimonial de sociedad conjugal) and in society as a whole.", - "values": [ - "Women's rights" - ] - }, - { - "text": "Ensure compliance of the National Human Rights Commission with the Paris Principles", - "values": [ - "National Human Rights Institution" - ] - }, - { - "text": "Adopt integrated legislation consistent with its international obligations, that addresses the issue of discrimination and ensures the full integration of vulnerable groups, in particular immigrants and persons belonging to linguistic minorities in all spheres", - "values": [ - "International instruments", - "Migrants", - "Minorities" - ] - }, - { - "text": "Continue to promote economic and social development to steadily raise peoples\u2019 living standards so as to provide a firm foundation for the enjoyment of all human rights", - "values": [ - "ESC rights - general" - ] - }, - { - "text": "Continue to implement the measures necessary to find solutions for stateless persons", - "values": [ - "Statelessness and the right to nationality" - ] - }, - { - "text": "Give adequate training on the Law on combating trafficking in human beings to all those involved in the fight against human trafficking, especially border guards ", - "values": [ - "Human rights education and training", - "Trafficking" - ] - }, - { - "text": "Intensify its efforts to prevent incidents of sexual and gender-based violence within refugee communities and convict the perpetrators of such crimes", - "values": [ - "Asylum-seekers - refugees", - "Rights of the Child", - "Women's rights" - ] - }, - { - "text": "Continue to improve its education system and ensure access to quality education for all, in cooperation with UNESCO", - "values": [ - "Right to education" - ] - }, - { - "text": "Continue efforts in protecting the interests of migrant workers, including through appropriate legislative measures ", - "values": [ - "Labour", - "Migrants" - ] - }, - { - "text": "Consider adopting a comprehensive policy for prevention and combat of child abuse and neglect in the family", - "values": [ - "Rights of the Child" - ] - }, - { - "text": "Accord appropriate attention to the education sector in the medium and long term as the only way to correct the lack of human resources and institutional capacities in the country.", - "values": [ - "Right to education" - ] - }, - { - "text": "Take all the necessary legal measures to explicitly ban the corporal punishment of children in all settings, including the family, schools and institutions ", - "values": [ - "Rights of the Child", - "Torture and other CID treatment" - ] - }, - { - "text": "Address the concerns raised by the Special Rapporteur on Torture and other Cruel, Inhuman and Degrading Treatment or Punishment and those raised by the Special Rapporteur on Extrajudicial, Summary or Arbitrary Executions ", - "values": [ - "Extrajudicial executions", - "Special procedures", - "Torture and other CID treatment" - ] - }, - { - "text": "Strengthen relevant measures in order to improve further gender equality ", - "values": [ - "Women's rights" - ] - }, - { - "text": "Step up its efforts to ensure the promotion and protection of human rights in a more harmonized fashion across its territory", - "values": [ - "General" - ] - }, - { - "text": "Consider ratifying the Optional Protocol to the Convention against Torture (OP-CAT)", - "values": [ - "Detention", - "International instruments", - "Torture and other CID treatment" - ] - }, - { - "text": "Ratify International Convention on the Protection of the Rights of All Migrant Workers and Members of Their Families", - "values": [ - "International instruments", - "Labour", - "Migrants" - ] - }, - { - "text": "Continue and strengthen its efforts in addressing domestic violence", - "values": [ - "Rights of the Child", - "Women's rights" - ] - }, - { - "text": "Consider the possibility of signing and ratifying the CED, as well as accepting the competence of its Committee ", - "values": [ - "Enforced disappearances", - "International instruments" - ] - }, - { - "text": "Accede to the Convention against Torture and its Optional Protocol", - "values": [ - "Detention", - "International instruments", - "Torture and other CID treatment" - ] - }, - { - "text": "Further ensure, in accordance with the positive stated ambitions in the previous round of the universal periodic review and Omani practice, the well-being of Omani girls by formally and explicitly encoding the prohibition against female genital mutilation into the Child Law, accompanied by a public information campaign", - "values": [ - "Human rights education and training", - "Rights of the Child", - "Torture and other CID treatment", - "UPR process", - "Women's rights" - ] - }, - { - "text": "The Government confirmed its commitment to the Council by deciding to appoint the special representative of the Ministry of Foreign Affairs, the Ambassador, on the Council", - "values": [ - "Other" - ] - }, - { - "text": "Step up efforts to prevent sexual violence by awareness raising and education campaigns aimed at a better understanding of the notion of equality between women and men and a greater capacity to establish relationships based on mutual respect ", - "values": [ - "Human rights education and training", - "Women's rights" - ] - }, - { - "text": "Adopt comprehensive strategies to combat racism, including specific measures on the status and protection of persons of Haitian origin ", - "values": [ - "Minorities", - "Racial discrimination" - ] - }, - { - "text": "Present, to the extent possible, the reports that are due to the various treaty bodies to which Malta is party.", - "values": [ - "Treaty bodies" - ] - }, - { - "text": "Establish an official moratorium on executions and ratify the Second Optional Protocol to the International Covenant on Civil and Political Rights with a view to abolishing the death penalty", - "values": [ - "Death penalty", - "International instruments" - ] - }, - { - "text": "Adopt and implement a comprehensive national action plan for combating trafficking, and improve the implementation of the 2005 memorandum of understanding with Thailand on trafficking, especially along the border areas ", - "values": [ - "Trafficking" - ] - }, - { - "text": "Foresee measures that would guarantee the right to their religions to groups that will\nbecome minorities in both countries after the birth of the new State, namely Muslims in South Sudan\nand non-Muslims in (north) Sudan", - "values": [ - "Freedom of religion and belief", - "Minorities" - ] - }, - { - "text": "Share its experiences with other countries with regard to its system in helping especially sexually abused or exploited children and adolescents, the so-called Barnahus", - "values": [ - "Rights of the Child" - ] - }, - { - "text": "Unconditionally release all prisoners detained solely because of their political, religious or other conscientiously held beliefs ", - "values": [ - "Detention", - "Freedom of opinion and expression", - "Freedom of religion and belief" - ] - }, - { - "text": "Adopt effective measures to implement the national strategy for Roma integration and to combat discrimination against this category of population in employment, education and health care", - "values": [ - "Labour", - "Minorities", - "Racial discrimination", - "Right to education", - "Right to health" - ] - }, - { - "text": "Seek support from international partners to assist the Government in continuing its efforts to provide access to education for migrants and asylum seekers", - "values": [ - "Asylum-seekers - refugees", - "Migrants", - "Right to education" - ] - }, - { - "text": "Accede to the Rome Statute", - "values": [ - "International instruments", - "Justice" - ] - }, - { - "text": "Ensure that the recently established national prevention mechanism receives the necessary resources to conduct its work", - "values": [ - "Detention", - "Torture and other CID treatment" - ] - }, - { - "text": "To submit all due reports to treaty monitoring bodies.", - "values": [ - "Treaty bodies" - ] - }, - { - "text": "Adopt a law on the protection of human rights defenders ", - "values": [ - "Human rights defenders" - ] - }, - { - "text": "Take without further delay all necessary steps to establish an independent national human rights institution in accordance with the Paris Principles and return support to the Ombudsman Commission", - "values": [ - "National Human Rights Institution" - ] - }, - { - "text": "Ensure that juvenile justice is fully implemented and that children are not ill-treated in detention and their rights not violated. ", - "values": [ - "Detention", - "Justice", - "Rights of the Child" - ] - }, - { - "text": "Ensure lawyers freedom to exercise their professional duties by guaranteeing unhindered access to their clients, freedom to represent their clients without threats from state or other actors and that such threats are promptly investigated", - "values": [ - "Human rights violations by state agents", - "Justice" - ] - }, - { - "text": "Continue its efforts to promote the rights of women by providing them access to posts of responsibilities", - "values": [ - "Women's rights" - ] - }, - { - "text": "Reconsider any attempt to reimpose capital punishment, with the aim of not reintroducing the death penalty", - "values": [ - "Death penalty" - ] - }, - { - "text": "Ratify the Optional Protocol to the Convention on the Elimination of All Forms of Discrimination against Women (OP-CEDAW) ", - "values": [ - "International instruments", - "Women's rights" - ] - }, - { - "text": "As recommended by the Committee on the Rights of the Child and the Committee on Economic, Social and Cultural Rights, intensify efforts to achieve better promotion and protection of the rights of the child ", - "values": [ - "Rights of the Child", - "Treaty bodies" - ] - }, - { - "text": "Continue its efforts to combat discrimination, particularly against migrant workers", - "values": [ - "Labour", - "Migrants", - "Racial discrimination" - ] - }, - { - "text": "Ratify the Optional Protocol to the Convention on the Rights of Persons with Disabilities ", - "values": [ - "Disabilities", - "International instruments" - ] - }, - { - "text": "Increase efforts for the ratification of the Arms Trade Treaty with the aim of consolidating common international norms to regulate international trade in conventional arms, ammunition and parts and components, contributing to peace and security, reducing human suffering and promoting cooperation and transparency ", - "values": [ - "Other" - ] - }, - { - "text": "Share experience and good practices with others ", - "values": [ - "General" - ] - }, - { - "text": "Take concrete measures to ensure effective birth registration, particularly in remote and rural areas.", - "values": [ - "Rights of the Child", - "Statelessness and the right to nationality" - ] - }, - { - "text": "Strengthen measures to counter discriminatory attitudes, for example by including sexual orientation and gender identity in public education and equality programmes and initiatives", - "values": [ - "Human rights education and training", - "Sexual Orientation and Gender Identity" - ] - }, - { - "text": "Reinforce girls' education, notably in the rural areas ", - "values": [ - "Right to education", - "Rights of the Child", - "Women's rights" - ] - }, - { - "text": "Ensure the investigation, prosecution and punishment of any act of discrimination or violence motivated by the victim's sexual orientation or gender identity", - "values": [ - "Sexual Orientation and Gender Identity" - ] - }, - { - "text": "Take specific and effective measures required in order to ensure respect for freedom of expression and association ", - "values": [ - "Freedom of association and peaceful assembly", - "Freedom of opinion and expression" - ] - }, - { - "text": "Ensure the participation of civil society in the drafting of a new law on domestic violence", - "values": [ - "Civil society", - "Rights of the Child", - "Women's rights" - ] - }, - { - "text": "Increase its efforts to reduce domestic violence, ensure that police and other officials dealing with situations of domestic violence are adequately trained, and adopt measures to sensitize the public on gender issues ", - "values": [ - "Human rights education and training", - "Rights of the Child", - "Women's rights" - ] - }, - { - "text": "Review the proposal by the National Council for Human Rights on the enactment of a unified law on the construction of places of worship.", - "values": [ - "Freedom of religion and belief" - ] - }, - { - "text": "Consider setting up a mechanism to protect unaccompanied minor refugees", - "values": [ - "Asylum-seekers - refugees", - "Rights of the Child" - ] - }, - { - "text": "Heed the observations of those treaty bodies that express concern about the multiple forms of discrimination suffered by minorities and vulnerable groups in Swedish society, bringing its domestic normative framework into line with international human rights norms to which it is a State party", - "values": [ - "International instruments", - "Minorities", - "Treaty bodies" - ] - }, - { - "text": "Take all necessary measures to end sexual and gender-based violence, especially by developing adequate gender-sensitive training programmes for law enforcement agencies, the national prosecuting authority and judicial officers and by adopting specific legislation addressing the practice of ukuthwala (child marriage)", - "values": [ - "Human rights education and training", - "Rights of the Child", - "Women's rights" - ] - }, - { - "text": "Comply with resolutions that different organs of the United Nations have adopted in relation to the conflict and occupation in Palestine", - "values": [ - "Other" - ] - }, - { - "text": "Bring national legislation in line with regional and international human rights treaties to which it is a party", - "values": [ - "International instruments" - ] - }, - { - "text": "Sign and ratify the Convention on Migrant Workers and Members of Their Families", - "values": [ - "International instruments", - "Labour", - "Migrants" - ] - }, - { - "text": "Release all prisoners of conscience ", - "values": [ - "Detention", - "Freedom of religion and belief" - ] - }, - { - "text": "Increase efforts to criminally prosecute trafficking offenders, including employers and labour recruiters who subject migrant workers to debt bondage and involuntary servitude ", - "values": [ - "Labour", - "Migrants", - "Trafficking" - ] - }, - { - "text": "Develop a national plan of action for the implementation of children's rights and to adopt a holistic child rights approach ", - "values": [ - "Rights of the Child" - ] - }, - { - "text": "Develop educational programmes to prevent and combat negative social attitudes towards different ethnic groups", - "values": [ - "Racial discrimination" - ] - }, - { - "text": "Ensure the protection of the rights of persons belonging to religious and other minorities and effectively investigate all alleged abuses and violations", - "values": [ - "Freedom of religion and belief", - "Minorities", - "Racial discrimination" - ] - }, - { - "text": "The delegation reiterated Government's commitment to respect civil and political rights and to enable every Guinean citizen to enjoy them fully, in particular in view of the forthcoming elections. It added that it was important to consolidate and expand those rights. ", - "values": [ - "CP rights - general", - "Elections" - ] - }, - { - "text": "Protect the rights of Migrants and eliminate unfair treatment of migrant workers, and ensure their integration in to society", - "values": [ - "Labour", - "Migrants" - ] - }, - { - "text": "Ensure that industrial companies implement international and national environmental and health standards", - "values": [ - "Environment", - "Right to health" - ] - }, - { - "text": "Strongly condemn hate speech, adequately investigate racist hate speech and racially motivated violence and prosecute the perpetrators", - "values": [ - "Racial discrimination" - ] - }, - { - "text": "Further strengthen measures to enhance the participation of women in decision-making ", - "values": [ - "Women's rights" - ] - }, - { - "text": "Intensify its commitment to working constructively with religious and other minorities, to address their grievances, including those of Alevi groups and the status of cemevis", - "values": [ - "Freedom of religion and belief", - "Minorities" - ] - }, - { - "text": "Ratify the International Covenant on Economic, Social and Cultural Rights and the International Covenant on Civil and Political Rights and other core international human rights treaties and conventions to which it is not yet party", - "values": [ - "CP rights - general", - "ESC rights - general", - "International instruments" - ] - }, - { - "text": "Accelerate the efforts directed towards ending the harmful and traumatic practice of female genital mutilation", - "values": [ - "Rights of the Child", - "Torture and other CID treatment", - "Women's rights" - ] - }, - { - "text": "Contribute to reinforcing the role of civil society and suppress the administrative constraints and financial restrictions imposed by the 2009 law ", - "values": [ - "Civil society", - "Freedom of association and peaceful assembly" - ] - }, - { - "text": "Strengthen human rights education programmes and training for all civil servants, particularly for law enforcement and immigration officers, and combat impunity concerning abuses against defenceless persons", - "values": [ - "Human rights education and training", - "Impunity", - "Migrants" - ] - }, - { - "text": "Establish an official moratorium on executions", - "values": [ - "Death penalty" - ] - }, - { - "text": "Make the necessary efforts for the ratification of the Fifth National Action Plan 2015-2019", - "values": [ - "Rights of the Child", - "Women's rights" - ] - }, - { - "text": "Embark on a process of reform of the judiciary with a view to ensuring that it has a greater degree of independence and impartiality ", - "values": [ - "Justice" - ] - }, - { - "text": "Consider favourably the ratification of the International Convention on the Protection of the Rights of All Migrant Workers and Members of their Families ICRMW ", - "values": [ - "International instruments", - "Labour", - "Migrants" - ] - }, - { - "text": "Guarantee to LGBTI persons the full and equal enjoyment of their human rights, and protection from criminalization and stigmatization", - "values": [ - "Sexual Orientation and Gender Identity" - ] - }, - { - "text": "Comply strictly with the normative provisions regarding the minimum age for marriage, and prevent and investigate cases of forced marriage, prosecuting the perpetrators and ensuring assistance to victims", - "values": [ - "Rights of the Child", - "Women's rights" - ] - }, - { - "text": "In line with ongoing efforts in the field of sexual and reproductive health, take measures to combat violence against women and promote gender equality", - "values": [ - "Right to health", - "Women's rights" - ] - }, - { - "text": "Take practical and legislative measures to ensure impartial and effective investigations in the field of combating and preventing torture ", - "values": [ - "Torture and other CID treatment" - ] - }, - { - "text": "Renew the mandate of the National Disabilities Council", - "values": [ - "Disabilities" - ] - }, - { - "text": "Intensify its efforts to fight discrimination and intolerance, particularly against Muslims, immigrants and people of African descent, and encourage senior State officials and politicians to take a clear stand against racist or xenophobic political discourse", - "values": [ - "Freedom of religion and belief", - "Minorities", - "Racial discrimination" - ] - }, - { - "text": "Address the inequities based on rural-urban divide and gender imbalance ", - "values": [ - "Women's rights" - ] - }, - { - "text": "Put in place awareness campaigns to sensitize local communities on the importance of education for both boys and girls alike", - "values": [ - "Right to education", - "Rights of the Child" - ] - }, - { - "text": "Promote actions to eradicate sexual and domestic violence", - "values": [ - "Rights of the Child", - "Women's rights" - ] - }, - { - "text": "Take appropriate measures to protect the most vulnerable children, particularly girls, disabled children and rural children, and ensure effective protection of children against sexual abuse, all forms of violence and exploitation, trafficking and child labour.", - "values": [ - "Rights of the Child" - ] - }, - { - "text": "Redouble efforts in paying special attention to school education of the indigenous peoples and national minorities ", - "values": [ - "Indigenous peoples", - "Minorities", - "Right to education" - ] - }, - { - "text": "Continue efforts to reduce violence against women and girls, including sexual violence, family violence and female genital mutilation", - "values": [ - "Rights of the Child", - "Torture and other CID treatment", - "Women's rights" - ] - }, - { - "text": "Continue to strengthen its social programmes with a special emphasis on the fields of education, nutrition, and health, in order to increase the quality of life of its people, particularly those who are most in need, for which international cooperation and technical assistance demanded by the country are important", - "values": [ - "Right to education", - "Right to food", - "Right to health", - "Technical assistance and cooperation" - ] - }, - { - "text": "Ratify all pending human rights treaties ", - "values": [ - "International instruments" - ] - }, - { - "text": "Ratify CED as soon as possible.", - "values": [ - "Enforced disappearances", - "International instruments" - ] - }, - { - "text": "Reconsider the country's position on a possible withdrawal as a State Party to the ICC Rome Statute", - "values": [ - "International instruments", - "Justice" - ] - }, - { - "text": "Finalise, within a clear time frame, a comprehensive national legislative framework for the determination of refugee status", - "values": [ - "Asylum-seekers - refugees" - ] - }, - { - "text": "Introduce a moratorium at the federal level with view to achieving nationwide moratorium of capital punishment as a first step to abolishing such penalty", - "values": [ - "Death penalty" - ] - }, - { - "text": "Turn the de facto moratorium existing since 2002 into a de jure moratorium with a view to the definitive abolition of the death penalty for all cases, including serious crimes - commute the current death penalties to penalties of deprivation of liberty - sign and ratify the Second Optional Protocol to the International Covenant on Civil and Political Rights - and that the draft constitution currently in progress include provisions on the abolition of the death penalty", - "values": [ - "Death penalty", - "International instruments" - ] - }, - { - "text": "Reinforce the capacity of the Ombudsperson and specialized ombudspersons and their coordination, give appropriate follow-up to their recommendations, and publicize their work among the general public ", - "values": [ - "National Human Rights Institution" - ] - }, - { - "text": "Draft a national strategy and adopt a code for the protection of children", - "values": [ - "Rights of the Child" - ] - }, - { - "text": "Recommended a follow-up on the decision to not carry out the death penalty.", - "values": [ - "Death penalty" - ] - }, - { - "text": "Submit its report that has been overdue since 2013 to the Committee against Torture", - "values": [ - "Torture and other CID treatment", - "Treaty bodies" - ] - }, - { - "text": "Sign and-or ratify the following international human rights instruments: the Optional Protocol to the International Covenant on Economic, Social and Cultural Rights, ICCPR-OP 2, the Optional Protocol to the Convention on the Elimination of all Forms of Discrimination against Women, OP-CAT, ICRMW, CED and CRPD and its Optional. ", - "values": [ - "International instruments" - ] - }, - { - "text": "Continue its efforts to combat corruption in order to continue ensuring its economic growth to guarantee the enjoyment of economic, social and cultural rights by all its citizens", - "values": [ - "Corruption", - "ESC rights - general" - ] - }, - { - "text": "Consider ratification of the Convention on the Protection of the Rights of All Migrant Workers and Members of Their Families", - "values": [ - "International instruments", - "Labour", - "Migrants" - ] - }, - { - "text": "Eliminate the gender pay gap across all groups and ethnicities using demonstrated effective mechanisms, including intensive monitoring processes and legislative levers ", - "values": [ - "Minorities", - "Women's rights" - ] - }, - { - "text": "Promote the review of national legal provisions in the area of human rights, including constitutional provisions, to bring them into line with international standards", - "values": [ - "General" - ] - }, - { - "text": "Ensure that the separation of ordinary and indigenous courts does not contribute to tensions among different communities, but rather promotes inclusion and social stability by, inter alia, bringing the jurisdiction into full conformity with the new Constitution", - "values": [ - "Indigenous peoples" - ] - }, - { - "text": "Review policies aimed at protecting the rights of children, with a view to establishing a juvenile justice system to address violations of children's rights, in particular, discrimination against children affected by HIV-AIDS, disabled children and those born out of wedlock", - "values": [ - "Justice", - "Rights of the Child" - ] - }, - { - "text": "Increase allocations for education and continue to improve the general quality of education", - "values": [ - "Right to education" - ] - }, - { - "text": "Develop a national plan of action to combat violence against women ", - "values": [ - "Women's rights" - ] - }, - { - "text": "Urgently address the alleged systematic acts of torture and ill-treatment of persons in detention, and also ensure that all perpetrators are brought to justice", - "values": [ - "Detention", - "Torture and other CID treatment" - ] - }, - { - "text": "Put in place a comprehensive strategy to eliminate the patriarchal attitudes and deep-rooted stereotypes regarding the roles of women and men ", - "values": [ - "Women's rights" - ] - }, - { - "text": "Accede to ICCPR-OP 2, aimed at abolition of the death penalty ", - "values": [ - "Death penalty", - "International instruments" - ] - }, - { - "text": "Facilitate rapid and unrestricted humanitarian access for United Nations humanitarian agencies in order to provide assistance to all civilians in need", - "values": [ - "Other" - ] - }, - { - "text": "Continue to take measures to improve its health-care service, especially to guarantee the right of children to healthy growth ", - "values": [ - "Right to health", - "Rights of the Child" - ] - }, - { - "text": "Take immediate steps to stop the use of torture and ill-treatment in all instances of deprivation of freedom", - "values": [ - "Detention", - "Torture and other CID treatment" - ] - }, - { - "text": "Take effective measures to address inequalities experienced by ethnic minority groups and combat discrimination", - "values": [ - "Minorities", - "Racial discrimination" - ] - }, - { - "text": "Establish a mechanism in order to systematically monitor human rights in the administration of justice and to organise human rights training courses for public officials.", - "values": [ - "Human rights education and training", - "Justice" - ] - }, - { - "text": "Raise the age of criminal responsibility to international standards", - "values": [ - "Justice", - "Rights of the Child" - ] - }, - { - "text": "Continue the efforts to strengthen food security for all its people, particularly in rural areas ", - "values": [ - "Right to food" - ] - }, - { - "text": "Share experience for eliminating illiteracy", - "values": [ - "Right to education" - ] - }, - { - "text": "Adopt further measures and safeguards to ensure the independent functioning of the media without the influence of the State", - "values": [ - "Freedom of the press" - ] - }, - { - "text": "Continue efforts and initiatives to promote dialogue, peace and tolerance amongst peoples, between religions, civilizations and cultures", - "values": [ - "General" - ] - }, - { - "text": "Support and develop education programmes and institutions for national minorities in their mother-tongue", - "values": [ - "Minorities", - "Right to education" - ] - }, - { - "text": "Classify hate speech with racist content and incitement to hatred as crimes punishable under criminal law", - "values": [ - "Racial discrimination" - ] - }, - { - "text": "Introduce an official moratorium on the death penalty", - "values": [ - "Death penalty" - ] - }, - { - "text": "Raise awareness of the justiciability of economic, social and cultural rights, including through awareness-raising campaigns and the inclusion of human rights in school curricula at all levels", - "values": [ - "ESC rights - general", - "Human rights education and training" - ] - }, - { - "text": "Further raise public awareness on the equal rights of women, persons with disabilities and religious minorities for social integration and harmony", - "values": [ - "Disabilities", - "Freedom of religion and belief", - "Human rights education and training", - "Minorities", - "Women's rights" - ] - }, - { - "text": "Expedite the presentation of reports to human rights mechanisms, especially in cases where the initial reports are long overdue ", - "values": [ - "Treaty bodies" - ] - }, - { - "text": "Consider ratifying the Convention against Torture, the International Convention on the Protection of the Rights of All Migrant Workers and Members of Their Families, and ILO Convention 189", - "values": [ - "International instruments", - "Labour", - "Migrants", - "Torture and other CID treatment" - ] - }, - { - "text": "Release detainees whose arrests are linked to their support for the opposition ", - "values": [ - "Detention", - "Freedom of association and peaceful assembly" - ] - }, - { - "text": "Adopt measures to reinforce existing mechanisms on combating racial discrimination.", - "values": [ - "Racial discrimination" - ] - }, - { - "text": "Favourably consider the ratification of ILO Convention No. 169 concerning Indigenous and Tribal Peoples in Independent Countries. ", - "values": [ - "Indigenous peoples", - "International instruments" - ] - }, - { - "text": "Develop a specific strategy to ensure that domestic workers can file complaints in cases of violence and abuse, without fear of reprisal or harassment ", - "values": [ - "Labour", - "Migrants" - ] - }, - { - "text": "Launch a campaign to disarm the civilian population that supports the reduction of death rates related to gun violence", - "values": [ - "Public security" - ] - }, - { - "text": "Take robust measure to promote general quality education and to effectively safeguard the rights of women and girls", - "values": [ - "Right to education", - "Rights of the Child", - "Women's rights" - ] - }, - { - "text": "Provide adequate budget for the National Human Rights Commission", - "values": [ - "National Human Rights Institution" - ] - }, - { - "text": "Extend an invitation to the Special Rapporteur on torture to visit North Caucasus under his usual terms of operation ", - "values": [ - "Special procedures", - "Torture and other CID treatment" - ] - }, - { - "text": "Ensure the right to access to quality education for vulnerable groups of people, including women and children", - "values": [ - "Right to education", - "Rights of the Child", - "Women's rights" - ] - }, - { - "text": "Enable independent local and international NGOs, including international human rights organizations, to freely register and to operate in accordance with international law and standards", - "values": [ - "Civil society", - "Freedom of association and peaceful assembly" - ] - }, - { - "text": "Continue its efforts to prevent, sanction and eradicate all forms of violence against women, as well as to overcome stereotypes, which cause gender-based discrimination", - "values": [ - "Women's rights" - ] - }, - { - "text": "Continue to fight against racism and acts of violence and discrimination against persons of African descent", - "values": [ - "Minorities", - "Racial discrimination" - ] - }, - { - "text": "Take further steps to ensure inclusive education and facilitate girls' access to secondary and higher education", - "values": [ - "Right to education", - "Rights of the Child", - "Women's rights" - ] - }, - { - "text": "Adopt additional measures to completely implement the Domestic Violence Prevention Act, with reference to the expired 12-month term following its adoption in 2012", - "values": [ - "Rights of the Child", - "Women's rights" - ] - }, - { - "text": "Establish without delay a national human rights institution that complies with the Paris Principles", - "values": [ - "National Human Rights Institution" - ] - }, - { - "text": "Apply all the provisions of the Constitution relevant to human rights and the rule of law ", - "values": [ - "Justice" - ] - }, - { - "text": "Improve conditions in detention facilities by training personnel to investigate and prosecute all alleged cases of torture, and ratify OPCAT ", - "values": [ - "Detention", - "International instruments", - "Torture and other CID treatment" - ] - }, - { - "text": "Remove reservations to the Convention on the Elimination of all Forms of Discrimination against Women, as previously recommended", - "values": [ - "International instruments", - "UPR process", - "Women's rights" - ] - }, - { - "text": "Incorporate the proposed recommendation of the National Dialogue Conference, to set the minimum age for marriage at 18 years for men and women equally in the Yemeni legislation ", - "values": [ - "Rights of the Child" - ] - }, - { - "text": "Adopt a comprehensive programme on sexual health and reproductive rights based on human rights and WHO standards and allocate sufficient financial and human resources for their implementation ", - "values": [ - "Right to health", - "Rights of the Child", - "Women's rights" - ] - }, - { - "text": "Enhance international cooperation to strengthen programmes aimed at combating the spread of HIV-AIDS ", - "values": [ - "HIV - Aids" - ] - }, - { - "text": "Ensure that all security and counter-terrorism operations strictly comply with human rights standards, the rule of law, as well as with the Constitution of Kenya by, for example, enacting the Prevention of Torture Bill", - "values": [ - "Counter-terrorism", - "Justice", - "Torture and other CID treatment" - ] - }, - { - "text": "Strengthen cooperation with civil society organizations", - "values": [ - "Civil society" - ] - }, - { - "text": "That the registration system be further improved and supported by awareness-raising activities, in order to sustain the rise in registration numbers", - "values": [ - "Rights of the Child" - ] - }, - { - "text": "Grant the ICRC full access to closed institutions", - "values": [ - "Detention" - ] - }, - { - "text": "Cease the use of children as combatants ", - "values": [ - "Rights of the Child" - ] - }, - { - "text": "Continue its policy to ensure gender equality aimed at upholding the rights of women", - "values": [ - "Women's rights" - ] - }, - { - "text": "Pay due attention to transparency issues of the judiciary", - "values": [ - "Justice" - ] - }, - { - "text": "Sign and ratify the Optional Protocol to the International Covenant on Economic, Social and Cultural Rights ", - "values": [ - "ESC rights - general", - "International instruments" - ] - }, - { - "text": "Redouble efforts towards providing education for Women and the Girl Child", - "values": [ - "Right to education", - "Rights of the Child", - "Women's rights" - ] - }, - { - "text": "Enhance development efforts by focusing on the rural areas ", - "values": [ - "Development" - ] - }, - { - "text": "Continue its work to strengthen independence and authority of the national judicial system", - "values": [ - "Justice" - ] - }, - { - "text": "Proceed swiftly with the ratification of OP-CAT ", - "values": [ - "Detention", - "International instruments", - "Torture and other CID treatment" - ] - }, - { - "text": "Take further measures to improve the living conditions in the prison system, in particular to reduce overcrowding and to improve prisoners' access to health and education services ", - "values": [ - "Detention" - ] - }, - { - "text": "Revise the existing legislation, in particular the "Protection of Journalists Law number 21" with a view to remove all restrictions on the freedom of the press and to ensure full protection of journalists and other media-workers", - "values": [ - "Freedom of the press" - ] - }, - { - "text": "Issue clear public orders and take all necessary steps to ensure that the Transitional Federal Government's security forces and allied militias comply with international humanitarian and human rights law ", - "values": [ - "International humanitarian law", - "International instruments" - ] - }, - { - "text": "Strengthen the resources allocated to the implementation of the adopted National Action Plan for children for the period 2005-2015 ", - "values": [ - "Rights of the Child" - ] - }, - { - "text": "Strengthen the legislative framework to reflect the provisions of international law on the protection of children ", - "values": [ - "Rights of the Child" - ] - }, - { - "text": "Take further steps in enabling fuller participation of women in Saudi Arabian public life by guaranteeing women and girls their right to education, employment, freedom of movement, marriage with their free and full consent and health, including protection from and redress for family violence ", - "values": [ - "Rights of the Child", - "Women's rights" - ] - }, - { - "text": "Ratify the Rome Statute of the International Criminal Court as well as the Optional Protocol to the Convention against Torture and Other Cruel, Inhuman or Degrading Treatment or Punishment and establish a National Torture Prevention Mechanism", - "values": [ - "International instruments", - "Justice", - "Torture and other CID treatment", - "Treaty bodies" - ] - }, - { - "text": "Ensure that legislation to prevent and eradicate violence against women is passed", - "values": [ - "Women's rights" - ] - }, - { - "text": "Ratify the Rome Statute of the International Criminal Court, including accession to the Agreement on Privileges and Immunities ", - "values": [ - "International instruments", - "Justice" - ] - }, - { - "text": "Engage in national consultation on the possible ratification of the International Convention on the Rights of All Migrant Workers and Members of Their families ", - "values": [ - "International instruments", - "Labour", - "Migrants" - ] - }, - { - "text": "Continue its efforts to prevent discrimination against the Roma population", - "values": [ - "Minorities", - "Racial discrimination" - ] - }, - { - "text": "Ratify the ICRMW, in order to better protect the rights of migrant workers, including undocumented migrant workers", - "values": [ - "International instruments", - "Labour", - "Migrants" - ] - }, - { - "text": "Prevent candidates from promoting racial discrimination", - "values": [ - "Racial discrimination" - ] - }, - { - "text": "Implement further measures to improve its investigation and prosecution of human trafficking cases and enhance the legal and social protection of victims of human trafficking", - "values": [ - "Trafficking" - ] - }, - { - "text": "Sign and ratify those international human rights instruments to which it was not yet a party, particularly International Convention for the Protection of All Persons from Enforced Disappearance, which had been previously recommended", - "values": [ - "Enforced disappearances", - "International instruments", - "UPR process" - ] - }, - { - "text": "Take appropriate measures to combat sexual violence against children and child prostitution effectively, as a matter of priority.", - "values": [ - "Rights of the Child" - ] - }, - { - "text": "Ratify the International Covenant on Economic, Social and Cultural Rights", - "values": [ - "ESC rights - general", - "International instruments" - ] - }, - { - "text": "Continue its positive efforts in fighting poverty, with the assistance of international community, in particular the more developed countries, which should redouble cooperation with this small developing country", - "values": [ - "Poverty" - ] - }, - { - "text": "Give powers to the the Truth for Reconciliation Commission to subpoena and to protect witnesses to ensure that the whole truth is established ", - "values": [ - "Justice" - ] - }, - { - "text": "Take specific measures to fight violence against women", - "values": [ - "Women's rights" - ] - }, - { - "text": "Continue the strategies and the plans for the social and economic development of the country ", - "values": [ - "Development" - ] - }, - { - "text": "Explore, along with the international community, every possible way to provide IDPs and returnees with immediate assistance.", - "values": [ - "Internally displaced persons" - ] - }, - { - "text": "Strengthen safeguards against torture in all detention facilities in any territory under its jurisdiction, ensure proper and transparent investigation and prosecution of individuals responsible for all allegations of torture and ill- treatment, including those documented in the unclassified Senate summary on Central Intelligence Agency activities published in 2014 and provide redress to victims", - "values": [ - "Counter-terrorism", - "Detention", - "Torture and other CID treatment" - ] - }, - { - "text": "Amend its laws to remove the requirement for sterilization or infertility before recognition of the gender of transsexual persons and further, consider moving to a process allowing persons to self-declare their gender identity", - "values": [ - "Sexual Orientation and Gender Identity" - ] - }, - { - "text": "Continue its policies and programmes to promote religious tolerance and harmony in society ", - "values": [ - "Freedom of religion and belief" - ] - }, - { - "text": "Ratify the conventions on human rights not yet ratified and proceed to the harmonization of those already ratified with domestic legislation", - "values": [ - "International instruments" - ] - }, - { - "text": "Ratify the International Convention for the Protection of All Persons from Enforced Disappearance, OPCAT, the Rome Statute and the UNESCO Convention against Discrimination in Education", - "values": [ - "Detention", - "Enforced disappearances", - "International instruments", - "Justice", - "Right to education", - "Torture and other CID treatment" - ] - }, - { - "text": "Continue to strengthen and effectively implement the rule of law, especially through an effective reform of the judicial system, and to strengthen democratic institutions ", - "values": [ - "Justice" - ] - }, - { - "text": "Implement alternative measures to deprivation of liberty in cases involving minors, and when they are deprived of their liberty afford them all necessary guarantees", - "values": [ - "Detention", - "Rights of the Child" - ] - }, - { - "text": "Adopt comprehensive legislation to combat racism as a crime ", - "values": [ - "Racial discrimination" - ] - }, - { - "text": "Ensure that the defence and security forces act in accordance with international human rights norms regarding the use of force", - "values": [ - "International instruments", - "Public security" - ] - }, - { - "text": "Adopt new child protection legislation as soon as the consultative process can be concluded", - "values": [ - "Rights of the Child" - ] - }, - { - "text": "Adopt measures to guarantee the respect of judicial guarantees and human rights in detention and police custody", - "values": [ - "Detention", - "Justice" - ] - }, - { - "text": "In respect to the ratification of the Rome Statute of the ICC, the delegation stated that Ukraine remained committed to the idea of the establishment of the international court. Ukraine was also demonstrated its full commitment in effective execution of judgments of the European Court of Human Rights of the Council of Europe", - "values": [ - "International instruments", - "Justice" - ] - }, - { - "text": "Decriminalize abortion, if not completely, at least when the life or the health of the mother is in danger, by bringing the law in line with obligations deriving from several human rights conventions", - "values": [ - "International instruments", - "Women's rights" - ] - }, - { - "text": "Encourage a broader appreciation of the role, value and contribution of women in community and national development in Solomon Islands with a view to creating national awareness of political participation and representation by women, at all decision making levels, including the Parliament ", - "values": [ - "Women's rights" - ] - }, - { - "text": "Take due measures to prevent extrajudicial killings in the country and grant access to the Special Rapporteurs on extrajudicial, summary or arbitrary executions and on the right of everyone to the enjoyment of the highest attainable standard of physical and mental health for impartial and credible investigations", - "values": [ - "Extrajudicial executions", - "Right to health", - "Special procedures" - ] - }, - { - "text": "Consider positively declaring a moratorium on the application of the death penalty, with a view its abolition", - "values": [ - "Death penalty" - ] - }, - { - "text": "Establish a formal moratorium on executions with a view to abolishing the death penalty and support the General Assembly resolution on the moratorium on the use of death penalty ", - "values": [ - "Death penalty" - ] - }, - { - "text": "Ensure that human rights defenders are protected from unjust imprisonment, intimidation and violence and that it release those imprisoned or sentenced for carrying out peaceful human rights advocacy", - "values": [ - "Detention", - "Human rights defenders" - ] - }, - { - "text": "Submit overdue reports to Committee on the Elimination of Racial Discrimination, Committee on Economic, Social and Cultural Rights and to the Human Rights Committee ", - "values": [ - "CP rights - general", - "ESC rights - general", - "Racial discrimination", - "Treaty bodies" - ] - }, - { - "text": "Repeal the laws criminalizing sexual relations between consenting adults of the same sex and guarantee fully the right of association, including for NGOs working on the question of sexual orientation ", - "values": [ - "Civil society", - "Sexual Orientation and Gender Identity" - ] - }, - { - "text": "Conduct impartial, thorough and effective investigations into all cases of attacks, harassment and intimidation of human rights defenders and journalists, and hold all perpetrators accountable", - "values": [ - "Freedom of the press", - "Human rights defenders" - ] - }, - { - "text": "Launch an open dialogue with the civil society with a view to identifying and adopting further measures aimed at preventing possible abuses committed by police and security forces, and ensure that the victims and their relatives have access to fair and independent justice ", - "values": [ - "Civil society", - "Human rights violations by state agents", - "Justice" - ] - }, - { - "text": "Extend outreach and identification efforts to women and children in prostitution, to ensure that trafficking victims are identified, given care and not penalized for crimes committed as a direct result of being trafficked to identify proactively potential trafficking victims among its undocumented immigrants to continue to investigate and prosecute allegations of trafficking-related complicity and to expand public awareness campaigns aimed at reducing domestic demand for commercial sex acts", - "values": [ - "Migrants", - "Rights of the Child", - "Trafficking", - "Women's rights" - ] - }, - { - "text": "Prioritize its work with the International Labour Organization on a Joint Action Plan on child soldiers to progress the implementation of Security Council resolution 1612 (2005) ", - "values": [ - "International humanitarian law", - "Rights of the Child" - ] - }, - { - "text": "Continue its policy of national reconciliation and implement the decisions of the inclusive political dialogue.", - "values": [ - "Justice" - ] - }, - { - "text": "Fully recognize the situation of the minority groups and take ample action in order to meet these challenges, including combating discrimination against minority groups, not least the Serb and Roma minorities", - "values": [ - "Minorities", - "Racial discrimination" - ] - }, - { - "text": "Adopt a national action plan in order to combat gender-specific violence, including domestic violence", - "values": [ - "Rights of the Child", - "Women's rights" - ] - }, - { - "text": "Continue efforts to strengthen the rights of the child, protect children from sexual exploitation and combat trafficking in children and early marriage", - "values": [ - "Rights of the Child", - "Trafficking" - ] - }, - { - "text": "Strengthen the measures to combat discrimination against women and girls, in particular, by prohibiting early or forced marriages", - "values": [ - "Rights of the Child", - "Women's rights" - ] - }, - { - "text": "Facilitate prosecution of domestic violence and implement improved measures for protection of victims ", - "values": [ - "Rights of the Child", - "Women's rights" - ] - }, - { - "text": "Enhance measures to ensure education for all", - "values": [ - "Right to education" - ] - }, - { - "text": "Follow-up on the recommendation of the Committee on the Rights of Child to seek technical assistance from UNICEF on specific areas, including improving access to education for women and girls and in increasing the rate of registrations births", - "values": [ - "Right to education", - "Rights of the Child", - "Statelessness and the right to nationality", - "Technical assistance and cooperation", - "Treaty bodies", - "Women's rights" - ] - }, - { - "text": "Assess the overall situation of the Roma community and adopt a comprehensive strategy to tackle discrimination and other problems faced by that community", - "values": [ - "Minorities", - "Racial discrimination" - ] - }, - { - "text": "Consider introducing legislation prohibiting corporal punishment of children", - "values": [ - "Rights of the Child", - "Torture and other CID treatment" - ] - }, - { - "text": "Take further measures to enhance relevant human rights laws and regulations", - "values": [ - "General" - ] - }, - { - "text": "Take all necessary steps in the areas of legislation and political measures to protect migrant workers from abusers, traffickers and unscrupulous employers and to guarantee the non-discrimination of non- citizens with regard to conditions and requirements to access the labour market", - "values": [ - "Labour", - "Migrants", - "Trafficking" - ] - }, - { - "text": "Conduct a more active policy against racial discrimination and xenophobia, including the adoption of a clear and comprehensive definition of racial discrimination", - "values": [ - "Racial discrimination" - ] - }, - { - "text": "Promote equal access for women and girls to all levels of education", - "values": [ - "Right to education", - "Women's rights" - ] - }, - { - "text": "Continue its efforts in fighting corruption and allocate sufficient funding for the implementation of its newly enacted law on combating corruption", - "values": [ - "Corruption" - ] - }, - { - "text": "Work with the Office of the United Nations High Commissioner for Human Rights to prepare a common core document as a way to streamline and reduce the burden of treaty-reporting ", - "values": [ - "Technical assistance and cooperation", - "Treaty bodies" - ] - }, - { - "text": "Take the necessary measures to harmonize traditional and statutory regulations, in order to further eliminate the exceptions to the principle of nondiscrimination on the grounds of sex, and strengthen the protection of women, especially of female domestic workers ", - "values": [ - "Labour", - "Women's rights" - ] - }, - { - "text": "Continue the role it plays in multilateral fora in support of the promotion and protection of economic, social and cultural rights ", - "values": [ - "ESC rights - general" - ] - }, - { - "text": "Publish a detailed plan for the abolition of re-education camps through labour, re-stating the timeframe of this welcomed measure", - "values": [ - "Detention" - ] - }, - { - "text": "Consider ratifying the International Covenant on Civil and Political Rights without further delay in order to demonstrate the earnest commitment of Nauru to respect the civil and political rights of all those within its borders", - "values": [ - "CP rights - general", - "International instruments" - ] - }, - { - "text": "Adopt legislative measures strictly defining the circumstances and safeguards related to eviction, and to stop all forced evictions until such measures are in place", - "values": [ - "Right to housing" - ] - }, - { - "text": "Operationalize gender strategy in education, including early education, in order to combat female illiteracy and child, early and forced marriages", - "values": [ - "Right to education", - "Rights of the Child", - "Women's rights" - ] - }, - { - "text": "Take all necessary measures towards the achievement of the objective of universal primary education for all by 2015 ", - "values": [ - "Right to education" - ] - }, - { - "text": "Take efficient measures to swiftly ameliorate the situation of Palestinian refugees including amending legislative provisions and policies that have a discriminatory effect on the Palestinian population", - "values": [ - "Asylum-seekers - refugees" - ] - }, - { - "text": "Ensure that the principle of the best interests of the child is adequately reflected in relevant laws ", - "values": [ - "Rights of the Child" - ] - }, - { - "text": "Deploy all necessary efforts to ensure the full implementation of the Comprehensive Special Law for a Life Free of Violence for Women, adopted in November 2010", - "values": [ - "Women's rights" - ] - }, - { - "text": "Continue efforts to eliminate all obstacles standing in the way of justice.", - "values": [ - "Justice" - ] - }, - { - "text": "Prevent, investigate and prosecute sexual and gender violence against all women, including women with disabilities ", - "values": [ - "Disabilities", - "Women's rights" - ] - }, - { - "text": "Continue strengthening the national democratic institutions", - "values": [ - "Other" - ] - }, - { - "text": "End the harassment of minorities and place procedural and institutional safeguards to prevent the misuse of the blasphemy laws", - "values": [ - "Freedom of opinion and expression", - "Freedom of religion and belief", - "Minorities" - ] - }, - { - "text": "Enhance the rights of women to civic participation ", - "values": [ - "Women's rights" - ] - }, - { - "text": "Strengthen and facilitate the process already undertaken of the civil registration", - "values": [ - "Rights of the Child" - ] - }, - { - "text": "Review criminal justice procedures in order to reduce the length of detention without trial by undertaking a comprehensive review of remand cases and giving priority to the establishment of new Halls of Justice before the date of the next review", - "values": [ - "Detention", - "Justice" - ] - }, - { - "text": "Ensure effective implementation of the 2014 National Action Plan to combat trafficking in persons and related offences, including slavery", - "values": [ - "Trafficking" - ] - }, - { - "text": "Consider amending the Code of Pleadings and Criminal Procedures with a view to preventing criminal and civil prosecutions of third parties that could lead to curbs being placed on freedom of thought and creativity.", - "values": [ - "Freedom of religion and belief" - ] - }, - { - "text": "Continue its constructive engagement with civil society in its UPR process and on other human rights issues ", - "values": [ - "Civil society", - "UPR process" - ] - }, - { - "text": "Establish a policy concerning the return of victims of human trafficking and their rehabilitation and reintegration into the work market", - "values": [ - "Trafficking" - ] - }, - { - "text": "Adopt the necessary measures to eradicate the tendency and/or diffusion, through the media, and by public officials, of stereotypes that may promote discrimination against persons, based on their sexual orientation ", - "values": [ - "Sexual Orientation and Gender Identity" - ] - }, - { - "text": "Consider ratifying the International Convention for the Protection of All Persons from Enforced Disappearance and the Optional Protocol to the International Covenant on Economic, Social and Cultural Rights", - "values": [ - "ESC rights - general", - "Enforced disappearances", - "International instruments" - ] - }, - { - "text": "Raise public awareness and include human rights in school curricula", - "values": [ - "Human rights education and training" - ] - }, - { - "text": "Consider withdrawing the general declaration to the Convention on the Elimination of All Forms of Discrimination against Women", - "values": [ - "International instruments", - "Women's rights" - ] - }, - { - "text": "Enact measures to combat discrimination of LGBTI people and to ensure them equal access to public services such as health care and education", - "values": [ - "Right to education", - "Right to health", - "Sexual Orientation and Gender Identity" - ] - }, - { - "text": "Ensure compliance with all relevant national laws and policies within the legal framework of the Convention on the Elimination of All Forms of Discrimination against Women ", - "values": [ - "International instruments", - "Women's rights" - ] - }, - { - "text": "Address the problem of severely overcrowded prisons to eliminate inhumane conditions and take all measures to prevent torture", - "values": [ - "Detention", - "Torture and other CID treatment" - ] - }, - { - "text": "Continue its efforts to improve the penitentiary system and prison conditions as well as to strengthen the judiciary whose weakness in personnel, namely prosecutors and judges, is the source of congestion of the courts", - "values": [ - "Detention", - "Justice" - ] - }, - { - "text": "Create a National Human Rights Institution in accordance with the Paris Principles ", - "values": [ - "National Human Rights Institution" - ] - }, - { - "text": "Increase efforts to improve prison conditions, including health care ", - "values": [ - "Detention" - ] - }, - { - "text": "Consider becoming a party to the Optional Protocol to the Convention on the Rights of the Child on a communications procedure", - "values": [ - "International instruments", - "Rights of the Child" - ] - }, - { - "text": "Ensure that women are not submitted to illegal parallel judicial system", - "values": [ - "Justice", - "Women's rights" - ] - }, - { - "text": "Continue implementing measures to prevent HIV transmission", - "values": [ - "HIV - Aids" - ] - }, - { - "text": "Harmonize the rights of homosexual couples with those of heterosexual couples", - "values": [ - "Sexual Orientation and Gender Identity" - ] - }, - { - "text": "Revoke the amendments of March 2017 to the Law on prevention of corruption, which compel members of anti-corruption non-governmental organizations to release financial declarations", - "values": [ - "Corruption" - ] - }, - { - "text": "Remove all restrictions on freedom of expression, association and assembly in law and in practice and that legal and legitimate political opposition parties and civil society be able to voice their political opinions ", - "values": [ - "Civil society", - "Freedom of association and peaceful assembly", - "Freedom of opinion and expression" - ] - }, - { - "text": "Continue exploring new policy measures to promote gender equality in order to achieve gender balance in political bodies.", - "values": [ - "Women's rights" - ] - }, - { - "text": "Implement the guidance and the recommendations of the National Conference on Human Rights, which took place from 9 to 10 December 2012 ", - "values": [ - "Other" - ] - }, - { - "text": "Accede to the Optional Protocol to CEDAW (OP-CEDAW) and fully incorporate CEDAW into domestic legislation without delay ", - "values": [ - "International instruments", - "Women's rights" - ] - }, - { - "text": "Continue to communicate with international human rights mechanisms in order to continue its efforts to raise awareness about disabled persons ", - "values": [ - "Disabilities" - ] - }, - { - "text": "Continue its efforts in increasing the financial resources allocated to provide welfare services to vulnerable members of the society", - "values": [ - "ESC rights - general" - ] - }, - { - "text": "Continue the fruitful cooperation with the United Nations Assistance Mission for Iraq UNAMI in order to strengthen the human rights protection, while considering the difficult circumstances and the security situation in Iraq and taking into account the traditions of the Iraqi people", - "values": [ - "Public security" - ] - }, - { - "text": "Sign and ratify the Optional Protocol to the International Covenant on Economic, Social and Cultural Rights", - "values": [ - "ESC rights - general", - "International instruments" - ] - }, - { - "text": "Increase its official development aid to reach the international norm of 0.7 per cent of GDP ", - "values": [ - "Development" - ] - }, - { - "text": "Review the law on protection of minors in order to deal with vulnerable situations of migrant children", - "values": [ - "Migrants", - "Rights of the Child" - ] - }, - { - "text": "Follow the appropriate United Nations Standard Minimum Rules for the Treatment of Prisoners in order to improve detention conditions by providing: better and timelier medical and dental treatment, appropriate provisions to withstand the cold winter temperatures in prisons, and larger servings of food to inmates", - "values": [ - "Detention", - "Right to food", - "Right to health" - ] - }, - { - "text": "Adopt urgent measures to improve access to health services, particularly in remote communities ", - "values": [ - "Right to health" - ] - }, - { - "text": "Ensure a safe and enabling environment for journalists and human rights defenders, including through the implementation of the precautionary measures or interim measures of protection of the InterAmerican Commission on Human Rights where these have been granted", - "values": [ - "Freedom of the press", - "Human rights defenders" - ] - }, - { - "text": "Formulate a National Human Rights Plan, in accordance with the Vienna Declaration and consulting broadly with civil society ", - "values": [ - "Civil society" - ] - }, - { - "text": "Ratify ILO Convention No. 182 (1999) concerning the Prohibition and Immediate Action for the Elimination of the Worst Forms of Child Labour ", - "values": [ - "International instruments", - "Labour", - "Rights of the Child" - ] - }, - { - "text": "Enact criminal justice sector reforms to protect the rights of the accused, in particular the rights to a trial within a reasonable time and to legal assistance", - "values": [ - "Justice" - ] - }, - { - "text": "Complete the accession to the International Convention on the protection of all persons from enforced disappearances ", - "values": [ - "Enforced disappearances", - "International instruments" - ] - }, - { - "text": "Improve prison conditions, including by relieving overcrowding in prisons.", - "values": [ - "Detention" - ] - }, - { - "text": "Improve the function of the People's Advocate by providing the necessary financial assistance and human resources and make efforts to implement the recommendations of the Advocate", - "values": [ - "National Human Rights Institution" - ] - }, - { - "text": "Consider the possibility of ratifying CPED", - "values": [ - "Enforced disappearances", - "International instruments" - ] - }, - { - "text": "Implement the recommendations of the Special Rapporteur on the question of torture in order to address the violations to fundamental rights highlighted by him during his visit, notably, the generalized ill-treatment of detainees, the total absence of rights of incarcerated persons, the degrading conditions of detention and the absence of a control mechanism, leading to excessive periods of preventative detention ", - "values": [ - "Detention", - "Special procedures", - "Torture and other CID treatment" - ] - }, - { - "text": "Implement the Religious Organizations Restriction Act of 2010 consistent with its terms and with full respect for international religious freedom ", - "values": [ - "Freedom of religion and belief" - ] - }, - { - "text": "Submit its national report to the Committee on the Elimination of Racial Discrimination, which is overdue since 2007", - "values": [ - "Racial discrimination", - "Treaty bodies" - ] - }, - { - "text": "Decriminalize same-sex relationships between consenting adults and strengthen efforts to address inequality and discrimination based on sexual orientation and gender identity", - "values": [ - "Sexual Orientation and Gender Identity" - ] - }, - { - "text": "Develop and promote education in the area of human rights and the dissemination of knowledge on international human rights standards among the population ", - "values": [ - "Human rights education and training", - "International instruments" - ] - }, - { - "text": "Consider reviewing the provisions in its Penal Code which contain punitive measures against women who have undergone illegal abortions", - "values": [ - "Women's rights" - ] - }, - { - "text": "Accede to and adapt its national legislation to the Rome Statute, including incorporation of dispositions to swiftly and fully cooperate with the International Criminal Court", - "values": [ - "International instruments", - "Justice" - ] - }, - { - "text": "Strengthen efforts to enhance the capacities of law enforcement agencies and judicial organs ", - "values": [ - "Justice" - ] - }, - { - "text": "Ratify the second Optional Protocol to ICCPR", - "values": [ - "Death penalty", - "International instruments" - ] - }, - { - "text": "Further strengthen public institutions to combat trafficking in persons, through dedicated resources, enhanced cooperation with civil society, and incorporating best practices", - "values": [ - "Civil society", - "Trafficking" - ] - }, - { - "text": "Initiate a national dialogue on the right of women to reproductive health, including with respect to the consequences of restrictive laws on abortion, including the criminalization of abortion", - "values": [ - "Right to health", - "Women's rights" - ] - }, - { - "text": "Declare a moratorium on executions pending the prompt abolition of the death penalty", - "values": [ - "Death penalty" - ] - }, - { - "text": "Include human rights education in the school curricula and teachers' education.", - "values": [ - "Human rights education and training" - ] - }, - { - "text": "Update and continue implementing the National Plan for Good Living", - "values": [ - "General" - ] - }, - { - "text": "Introduce the total legislative ban of female genital mutilation, to initiate a public discussion and awareness-raising campaign on female genital mutilation as a violation of human rights of girls and women", - "values": [ - "Rights of the Child", - "Torture and other CID treatment", - "Women's rights" - ] - }, - { - "text": "Remove all restrictions in law and practice which infringe upon the work of civil societies and to ensure that all legal provisions on the rights to freedom of expression, association and peaceful assembly are in line with international human rights standards", - "values": [ - "Civil society", - "Freedom of association and peaceful assembly", - "Freedom of opinion and expression", - "International instruments" - ] - }, - { - "text": "Intensify the inclusion and integration of children with disabilities into the society and the education system", - "values": [ - "Disabilities", - "Right to education", - "Rights of the Child" - ] - }, - { - "text": "Continue its efforts in implementing its Legal Sector Master Plan on the Development of the Rule of Law", - "values": [ - "Justice" - ] - }, - { - "text": "Further develop the implementation of a new prison system which covers all the prisons throughout the country", - "values": [ - "Detention" - ] - }, - { - "text": "Consider ratifying ICRMW ", - "values": [ - "International instruments", - "Labour", - "Migrants" - ] - }, - { - "text": "Extend free legal advice and aid to persons appealing their convictions", - "values": [ - "Other" - ] - }, - { - "text": "Elaborate a specific definition of discrimination against women in Armenia's legislation ", - "values": [ - "Women's rights" - ] - }, - { - "text": "Step up its measures in combating poverty, including by providing adequate funds for its social protection system and its national employment strategy to reduce unemployment", - "values": [ - "Development", - "ESC rights - general", - "Poverty" - ] - }, - { - "text": "Enact legislation to cover all forms of violence against women (including physical, sexual, trafficking, sexual harassment, stalking, psychological and economic), protection orders, ancillary civil orders, criminal process and procedure, evidence laws and police powers", - "values": [ - "Women's rights" - ] - }, - { - "text": "Take effective measures to efficiently implement the 55 concrete measures identified by the Government towards the elimination of obstacles for women in accessing the labour market ", - "values": [ - "Women's rights" - ] - }, - { - "text": "Accede to and ratify the Second Optional Protocol to the International Covenant on Civil and Political Rights, aimed at the abolition of the death penalty ", - "values": [ - "Death penalty", - "International instruments" - ] - }, - { - "text": "Pay special attention to the position of unaccompanied minor immigrants ", - "values": [ - "Migrants", - "Rights of the Child" - ] - }, - { - "text": "Ban by law early and forced marriage as well as the practice of Wahaya", - "values": [ - "Rights of the Child", - "Women's rights" - ] - }, - { - "text": "Ensure the finalization and implementation of the national plan of action to eliminate gender violence", - "values": [ - "Women's rights" - ] - }, - { - "text": "Pursue its efforts in order to ensure an efficient work of the Economic and Financial Crimes Commission", - "values": [ - "Corruption" - ] - }, - { - "text": "In cooperation with the relevant international organizations, continue its programmes to improve the public health standards and well-being of its people ", - "values": [ - "Right to health", - "Technical assistance and cooperation" - ] - }, - { - "text": "Respect the fundamental rights of ethnic minorities in Xinjiang and Tibet, notably freedom of religion and movement", - "values": [ - "Freedom of movement", - "Freedom of religion and belief", - "Minorities" - ] - }, - { - "text": "Adopt effective measures to improve conditions in prisons, reduce overcrowding and eliminate ill- treatment and forced labour of persons deprived of liberty ", - "values": [ - "Detention", - "Labour", - "Torture and other CID treatment" - ] - }, - { - "text": "Strengthen awareness-raising efforts in rural areas where some cultural traditions inhibit women's rights.", - "values": [ - "Human rights education and training", - "Women's rights" - ] - }, - { - "text": "Continue to provide support to women in the economic sphere", - "values": [ - "Women's rights" - ] - }, - { - "text": "Appoint the members of the Human Rights Commission and ensure their independence by providing them with financial autonomy and sufficient human and material resources to carry out their mandate, in accordance with the principles relating to the status of national institutions for the promotion and protection of human rights (the Paris Principles)", - "values": [ - "National Human Rights Institution" - ] - }, - { - "text": "Implement the two recommendations of the 2006 election observation mission of the Commonwealth to transform the post of Electoral Commissioner, an official appointed by the Government, into a truly independent and collegiate electoral commission", - "values": [ - "Elections" - ] - }, - { - "text": "Strengthen its efforts to modify or repeal existing laws and regulations that discriminate against women and girls ", - "values": [ - "Rights of the Child", - "Women's rights" - ] - }, - { - "text": "Consider the possibility of ratifying CED ", - "values": [ - "Enforced disappearances", - "International instruments" - ] - }, - { - "text": "Consider developing national human rights indicators as an instrument that allows for a more precise and coherent evaluation of the effective implementation of human rights", - "values": [ - "Other" - ] - }, - { - "text": "Consolidate and further develop the effective institutions established for the exercise of popular power, including the role of social oversight ", - "values": [ - "Other" - ] - }, - { - "text": "Continue to take measures aiming at improving the situation of its citizens of the Roma origin and continue to improve the framework of combating discrimination against them", - "values": [ - "Minorities" - ] - }, - { - "text": "Abolish FGM and as a first step support those initiatives from within the country which call for prohibiting FGM at least for minors of under 18 years age ", - "values": [ - "Rights of the Child", - "Torture and other CID treatment", - "Women's rights" - ] - }, - { - "text": "Continue to promote gender equality and combat all forms of discriminatory practices against women. ", - "values": [ - "Women's rights" - ] - }, - { - "text": "Ratify all core human rights treaties to which Malaysia is not a party", - "values": [ - "International instruments" - ] - }, - { - "text": "Allow independent investigations in all alleged cases of torture and impose on perpetrators of acts of torture appropriate punishments which reflect the international obligations of Kazakhstan", - "values": [ - "Torture and other CID treatment" - ] - }, - { - "text": "Adopt a comprehensive strategy addressing all forms of discrimination against all groups of children ", - "values": [ - "Rights of the Child" - ] - }, - { - "text": "Ensure that all allegations of abuse and violence against children are investigated, and that alleged perpetrators are effectively prosecuted", - "values": [ - "Rights of the Child" - ] - }, - { - "text": "Consider extending a standing invitation to special procedures to visit and help with the reforms", - "values": [ - "Special procedures" - ] - }, - { - "text": "Undertake further work regarding the independence of the judiciary and corruption in the judiciary and across the executive.", - "values": [ - "Corruption", - "Justice" - ] - }, - { - "text": "Adopt measures to collect disaggregated data on the phenomenon of human trafficking and adopt and implement policies to address it ", - "values": [ - "Trafficking" - ] - }, - { - "text": "Allocate the same attention and resources to both the human rights to water and to sanitation", - "values": [ - "Right to water and sanitation" - ] - }, - { - "text": "Harmonize its domestic legislation with article 19 of ICCPR and modify the Penal Code in order to decriminalize defamation and bring defamation to the civil jurisdiction ", - "values": [ - "Freedom of opinion and expression", - "International instruments" - ] - }, - { - "text": "Continue and increase efforts to reduce impunity for those responsible for embezzlement of public money", - "values": [ - "Corruption", - "Impunity" - ] - }, - { - "text": "Continue its positive approach in further promoting the welfare and protecting the rights of persons with disabilities with a view of improving their living conditions", - "values": [ - "Disabilities" - ] - }, - { - "text": "Continue to establish democracy, good governance, rule of law and equality", - "values": [ - "Justice" - ] - }, - { - "text": "Prevent early and forced marriages ", - "values": [ - "Rights of the Child", - "Women's rights" - ] - }, - { - "text": "Maintain its policy to promote and protect vulnerable persons and continue with its efforts to develop a national policy for the benefit of persons with disabilities ", - "values": [ - "Disabilities" - ] - }, - { - "text": "Seek, in cooperation with relevant international organizations and stakeholders, to include human rights education in school curricula, as appropriate ", - "values": [ - "Human rights education and training", - "Right to education" - ] - }, - { - "text": "The Government was also committed to adopting a law to professionalize the prison service", - "values": [ - "Detention" - ] - }, - { - "text": "Commute the pending death sentences to imprisonment terms ", - "values": [ - "Death penalty" - ] - }, - { - "text": "Decriminalize same-sex relations between consenting adults", - "values": [ - "Sexual Orientation and Gender Identity" - ] - }, - { - "text": "Adopt a new National Action Plan against Trafficking in Persons with a gender perspective which guarantees the protection of victims without any type of discrimination, in particular regarding their migration status", - "values": [ - "Migrants", - "Trafficking" - ] - }, - { - "text": "Cease the use of military barracks as detention centres for civilians", - "values": [ - "Detention" - ] - }, - { - "text": "Use more actively existing or new platforms for involving the Roma community in policy formulation, implementation and actively pursue an increase in the number of Roma in all public institutions ", - "values": [ - "Minorities" - ] - }, - { - "text": "Bring the Family Code in line with international instruments", - "values": [ - "Women's rights" - ] - }, - { - "text": "Urgently adopt of the law on family protection, which is currently under discussion in the Congress, with a view to improving the protection and prevention against domestic violence, as well as the compensation and assistance to the victims ", - "values": [ - "Rights of the Child", - "Women's rights" - ] - }, - { - "text": "Adopt measures to ensure that lesbian, gay, bisexual, transgender and intersex persons are no longer victims of discriminatory provisions", - "values": [ - "Sexual Orientation and Gender Identity" - ] - }, - { - "text": "Implement legislative measures regarding access to information and establish mechanisms to facilitate public access in line with best practices", - "values": [ - "Freedom of opinion and expression" - ] - }, - { - "text": "Promote equality between women and men, in particular concerning the level of participation of women in public life and in the employment sector.", - "values": [ - "Women's rights" - ] - }, - { - "text": "Expedite the adoption of the Prevention and Combating of Trafficking in Persons Bill as a mechanism to assist victims in accordance with international humanitarian and human rights standards and to prosecute the perpetrators ", - "values": [ - "International humanitarian law", - "International instruments", - "Trafficking" - ] - }, - { - "text": "Enact legislation that criminalizes rape", - "values": [ - "Rights of the Child", - "Women's rights" - ] - }, - { - "text": "Establish a national regulatory framework, in accordance with United Nations guidelines, for the assessment of human rights and the environmental impact of the business activities of multinational corporations headquartered in Japan", - "values": [ - "Business and human rights", - "Environment" - ] - }, - { - "text": "Increase efforts to improve judicial independence by strengthening training programmes for judges and magistrates", - "values": [ - "Human rights education and training", - "Justice" - ] - }, - { - "text": "Continue to promote economic and social sustainable development, raise people\u2019s standard of living and lay a solid foundation for the enjoyment of all human rights by its people", - "values": [ - "ESC rights - general" - ] - }, - { - "text": "Extend the benefits of its health insurance, currently limited to Qataris and citizens of Gulf Cooperation Council countries, to any citizen residing in its territory ", - "values": [ - "Right to health" - ] - }, - { - "text": "Take appropriate measures to eliminate the excessive use of force by the law enforcement officers. We refer to the case of killing the Kazakh national, Kirill Denyakin, by a United States police officer in 2011 in Virginia", - "values": [ - "Extrajudicial executions", - "Human rights violations by state agents" - ] - }, - { - "text": "Allocate sufficient funds and undertake effective measures to provide adequate assistance to the elderly people", - "values": [ - "Other" - ] - }, - { - "text": "Implement the National Action Plan for the Advancement of Women by: amending legislation to include sexual violence in conflict within the Preventing Sexual Violence Law, removing military impunity for human rights violations - including sexual violence, and appointing a Gender Advisor within the President's Office", - "values": [ - "Impunity", - "Women's rights" - ] - }, - { - "text": "Issue immediate and clear public orders to security forces to cease arbitrary arrest, detention and torture on the basis of religion or belief", - "values": [ - "Detention", - "Freedom of religion and belief", - "Human rights violations by state agents", - "Torture and other CID treatment" - ] - }, - { - "text": "Ensure the protection of the Office of Human Rights Advocate from any interference or external pressure", - "values": [ - "National Human Rights Institution" - ] - }, - { - "text": "Repeal all discriminatory provisions against women in domestic legislation, fully incorporating the Convention on the Elimination of All Forms of Discrimination against Women into the national legal framework ", - "values": [ - "International instruments", - "Women's rights" - ] - }, - { - "text": "Take the necessary steps to address the social exclusion and vulnerability of migrant women ", - "values": [ - "Migrants", - "Women's rights" - ] - }, - { - "text": "Study the possibility of ratification of the International Convention on the Protection of the Rights of All Migrant Workers and Members of Their Families ", - "values": [ - "International instruments", - "Labour", - "Migrants" - ] - }, - { - "text": "Include victims of sexual violence in the reparation programme (Programa Integral de Reparaciones)", - "values": [ - "Justice", - "Women's rights" - ] - }, - { - "text": "Continue its efforts to protect the rights of migrants and foreign workers, particularly to further enhance their safety and welfare", - "values": [ - "Labour", - "Migrants" - ] - }, - { - "text": "Create a mechanism to prevent illegal land grabbing and ensure that large-scale development projects are undertaken with human rights due diligence and following public consultation", - "values": [ - "Business and human rights", - "Right to land" - ] - }, - { - "text": "Continue investing in the breaking down of a culture of inequality, which was inherited from apartheid, from a human rights angle ", - "values": [ - "Racial discrimination" - ] - }, - { - "text": "Continue with efforts in order to counter racism within the German society in particular racism against Roma-Sinti and Muslims.", - "values": [ - "Freedom of religion and belief", - "Minorities", - "Racial discrimination" - ] - }, - { - "text": "Allocate adequate resources for programmes ensuring the full enjoyment of the rights of children and adolescents", - "values": [ - "Rights of the Child" - ] - }, - { - "text": "Ease burdensome registration requirements for human rights NGOs ", - "values": [ - "Civil society" - ] - }, - { - "text": "Take a proactive approach to encouraging employment of persons with disabilities ", - "values": [ - "Disabilities" - ] - }, - { - "text": "Accede to the Rome Statute as amended at the Review Conference in Kampala in 2010 and align its national legislation with the obligations under the Rome Statute, the definition of crimes and principles, including the crime of aggression", - "values": [ - "International instruments", - "Justice" - ] - }, - { - "text": "Bring up to date the submission of the periodic reports to the treaty bodies", - "values": [ - "Treaty bodies" - ] - }, - { - "text": "Continue the actions aimed at raising awareness among religious and customary leaders", - "values": [ - "Human rights education and training" - ] - }, - { - "text": "Take all necessary measures towards acceding to the Rome Statute of the International Criminal Court", - "values": [ - "International instruments", - "Justice" - ] - }, - { - "text": "Strengthen the independence and mandate of the National Slovak Human Rights Centre so that it operates in compliance with the Paris Principles and be given the necessary resources ", - "values": [ - "National Human Rights Institution" - ] - }, - { - "text": "Improve the situation of vulnerable children, particularly those living in rural and remote areas,\nand children with disabilities ", - "values": [ - "Disabilities", - "Rights of the Child" - ] - }, - { - "text": "Seek and avail itself of international technical assistance opportunities in training, data collection and analysis, to support national reporting under the international human rights instruments", - "values": [ - "International instruments", - "Technical assistance and cooperation" - ] - }, - { - "text": "Step up efforts to improve and conserve the environment, including by strengthening the relevant laws and providing the public with the necessary information, education and awareness regarding the impacts of climate change and environmental pollution and degradation ", - "values": [ - "Environment" - ] - }, - { - "text": "Review the admission regulations for foreigners to its territory", - "values": [ - "Asylum-seekers - refugees", - "Migrants" - ] - }, - { - "text": "Continue efforts aiming at the protection of human rights, including through the establishment of a national human rights institution", - "values": [ - "National Human Rights Institution" - ] - }, - { - "text": "Continue its efforts to maintain the accomplishments already made in the field of human rights", - "values": [ - "General" - ] - }, - { - "text": "Enact specific comprehensive legislation on domestic violence and put in place general measures to prevent violence against women and girls, including marital rape and ensure that perpetrators be prosecuted and punished in accordance with the severity of the crimes committed ", - "values": [ - "Rights of the Child", - "Women's rights" - ] - }, - { - "text": "Redouble its efforts to save mother and child ", - "values": [ - "Rights of the Child", - "Women's rights" - ] - }, - { - "text": "Continue to work to ensure key pieces of national legislation, including the 1999 Penal Code and 2003 Criminal Procedures Code, are consistent with its international human rights treaty commitments.", - "values": [ - "International instruments", - "Justice" - ] - }, - { - "text": "Amend the Penal Code and other national laws criminalizing all forms of violence against women and domestic violence and rape in particular, and implement laws in practice", - "values": [ - "Women's rights" - ] - }, - { - "text": "The delegation reiterated the commitment of Cameroon to continue implementing the recommendations accepted in 2009 and those to be agreed upon at the end of the present review", - "values": [ - "UPR process" - ] - }, - { - "text": "Continue its efforts aimed at improving the coordination among national human rights institutions and the treaty bodies ", - "values": [ - "Treaty bodies" - ] - }, - { - "text": "Meet its obligations to cooperate with the International Criminal Court pursuant to Security Council resolution 1970 (2011)", - "values": [ - "International instruments", - "Justice" - ] - }, - { - "text": "Continue taking measures to prevent infanticide of so-called child witches", - "values": [ - "Rights of the Child" - ] - }, - { - "text": "Continue to improve measures to strengthen the rights of foreign migrant workers, including putting in place the necessary domestic legislation and access to health care and legal aid", - "values": [ - "Migrants", - "Right to health" - ] - }, - { - "text": "Take the measures required to respect economic, social and cultural rights ", - "values": [ - "ESC rights - general" - ] - }, - { - "text": "Take the necessary measures to eliminate legislation and policies that criminalize, in a direct or an indirect way, same sex relations and discriminate against lesbian, gay, bisexual, transgender and intersex persons", - "values": [ - "Sexual Orientation and Gender Identity" - ] - }, - { - "text": "Step up its ongoing efforts in the field of the freedom of expression and assembly", - "values": [ - "Freedom of association and peaceful assembly", - "Freedom of opinion and expression" - ] - }, - { - "text": "Maintain the commitment to poverty reduction ", - "values": [ - "Poverty" - ] - }, - { - "text": "Sign the Second Optional Protocol to the International Covenant on Civil and Political Rights as well as establish a moratorium on executions with a view to formally abolishing the death penalty", - "values": [ - "Death penalty", - "International instruments" - ] - }, - { - "text": "Strengthen its efforts to prevent all forms of discrimination", - "values": [ - "Other" - ] - }, - { - "text": "Consider undertaking educational and awareness-raising actions promoting co-responsibility in the domestic sphere and preventing domestic violence", - "values": [ - "Human rights education and training", - "Rights of the Child", - "Women's rights" - ] - }, - { - "text": "Ratify the Convention on the Rights of Persons with Disabilities (CRPD) ", - "values": [ - "Disabilities", - "International instruments" - ] - }, - { - "text": "Sign, ratify or accede to the Inter-American Convention on Human Rights ", - "values": [ - "International instruments" - ] - }, - { - "text": "Undertake all measures, including by seeking technical assistance and capacity-building to address the concerns relating to the need to strengthen institutions responsible for the enforcement of human rights ", - "values": [ - "Technical assistance and cooperation" - ] - }, - { - "text": "Intensify its fight to eliminate forced labour and the severest forms of child labour ", - "values": [ - "Labour", - "Rights of the Child" - ] - }, - { - "text": "Maintain close collaboration with the international system, in order to implement the decree established in 2012 on the rules of general discipline, by which human rights training could be provided to public officials", - "values": [ - "Human rights education and training" - ] - }, - { - "text": "Consider withdrawing the remaining declarations and reservations to the Convention on the Elimination of All Forms of Discrimination against Women", - "values": [ - "International instruments", - "Women's rights" - ] - }, - { - "text": "Continue making efforts to combat human trafficking ", - "values": [ - "Trafficking" - ] - }, - { - "text": "The Government will implement realistic measures to further promote rules of law, to consolidate the pluralistic democratic system and process and to respect freedom of expression and human dignity that will in turn strengthen political and security environment, leading towards long-term sustainable development.", - "values": [ - "Freedom of association and peaceful assembly", - "Freedom of opinion and expression" - ] - }, - { - "text": "Increase efforts to improve women's health, in particular access to family planning services, maternal health care and eliminating the practice of female genital mutilation", - "values": [ - "Right to health", - "Rights of the Child", - "Torture and other CID treatment", - "Women's rights" - ] - }, - { - "text": "Take further efforts towards the accession of the Optional Protocol to the CRC on the involvement of children in armed conflict ", - "values": [ - "International humanitarian law", - "International instruments", - "Rights of the Child" - ] - }, - { - "text": "Maintain its effective cooperation with the Council's special procedure mandate holders ", - "values": [ - "Special procedures" - ] - }, - { - "text": "Respond to concerns of the Committee on the Elimination of Racial Discrimination about the participation of Netherlands companies in the extractive industry and in the production of soya and palm oil abroad that have adverse effects on the enjoyment of human rights and the environment", - "values": [ - "Business and human rights", - "Environment", - "Treaty bodies" - ] - }, - { - "text": "Give due consideration to the legal abolition of the death penalty as well as to the commutation of all death sentences to terms of imprisonment", - "values": [ - "Death penalty" - ] - }, - { - "text": "Adopt a specific law protecting women against domestic violence and prosecuting and punishing the perpetrators ", - "values": [ - "Women's rights" - ] - }, - { - "text": "Make all necessary efforts to address discrimination against Roma, including in employment, education, health care, housing and loan practices ", - "values": [ - "Minorities", - "Racial discrimination" - ] - }, - { - "text": "Take measures and demonstrate leadership to prevent, and ensure accountability for, any crimes motivated by sexual orientation or gender identity", - "values": [ - "Sexual Orientation and Gender Identity" - ] - }, - { - "text": "Strengthen the fight against trafficking in human beings, in particular women, by implementing educational and awareness-raising campaigns and enhancing support measures available to victims", - "values": [ - "Human rights education and training", - "Trafficking", - "Women's rights" - ] - }, - { - "text": "Ensure the enjoyment of all human rights by migrants and strengthen the efforts to regularize them ", - "values": [ - "Migrants" - ] - }, - { - "text": "Issue a standing invitation to all special procedures.", - "values": [ - "Special procedures" - ] - }, - { - "text": "Consider further measures for the protection and integration of LGBT individuals, and for the elimination of all discriminatory treatment on the grounds of sexual orientation or gender identity", - "values": [ - "Sexual Orientation and Gender Identity" - ] - }, - { - "text": "Adopt the draft law amending the Penal Code, which incorporates the sanctions related to domestic violence and trafficking in persons which is currently in Parliament", - "values": [ - "Rights of the Child", - "Trafficking", - "Women's rights" - ] - }, - { - "text": "Enhance women's empowerment and representation in decision making sectors", - "values": [ - "Women's rights" - ] - }, - { - "text": "Continue to combat domestic violence with a policy of prevention as a priority for its Government programme for 2009-2013 ", - "values": [ - "Rights of the Child", - "Women's rights" - ] - }, - { - "text": "Take concrete steps to ensure the security of human rights defenders, including journalists ", - "values": [ - "Freedom of the press", - "Human rights defenders" - ] - }, - { - "text": "Implement more appropriate measures to build an inclusive society, in which no segment of the population, notably the Afro-Guyanese who constitute 30 percent of the population, do not suffer discrimination", - "values": [ - "Minorities", - "Racial discrimination" - ] - }, - { - "text": "Continue and strengthen efforts to combat poverty ", - "values": [ - "Poverty" - ] - }, - { - "text": "Consider extending an open standing invitation to special procedures mechanisms.", - "values": [ - "Special procedures" - ] - }, - { - "text": "Continue efforts aiming at promoting the role of women in decision-making and achieving equality of opportunities", - "values": [ - "Women's rights" - ] - }, - { - "text": "Continue conducting more awareness and sensitizations programmes regarding minority groups with the aim to changing the stereotype and negative perception of these groups in the long run ", - "values": [ - "Minorities" - ] - }, - { - "text": "Take effective measures to combat hate speech and acts of hate relating to ethnic origin or sexual orientation", - "values": [ - "Minorities", - "Racial discrimination", - "Sexual Orientation and Gender Identity" - ] - }, - { - "text": "Finalise the procedures to ratify the International Convention on the Protection of the Rights of All Migrant Workers and Members of Their Families and the Convention against Torture", - "values": [ - "International instruments", - "Labour", - "Migrants", - "Torture and other CID treatment" - ] - }, - { - "text": "Guarantee in law and in practice that lawyers and judges can perform their professional functions without improper interference and legally form and join self-governing professional associations", - "values": [ - "Justice" - ] - }, - { - "text": "Cooperate with the Human Rights Committee and submit its State report as required ", - "values": [ - "Treaty bodies" - ] - }, - { - "text": "Put in place, with the technical cooperation of OHCHR and the financial support of the donor's community, a sustained human rights training process for government authorities, the People's Lawyers Office, officials of the justice system and inhabitants of the country, in order to begin with a ratification process, or when applicable, accession, to the main international human rights treaties, including the Rome Statute of the International Criminal Court ", - "values": [ - "Human rights education and training", - "International instruments", - "Justice", - "Technical assistance and cooperation" - ] - }, - { - "text": "End the illegal occupation of Palestinian territory and of the Golan Syria", - "values": [ - "Other" - ] - }, - { - "text": "Ensure that changes in the asylum laws and regulations are compliant with international human rights standards", - "values": [ - "Asylum-seekers - refugees", - "International instruments" - ] - }, - { - "text": "Guarantee the human rights of citizens under the new Constitutions and establish effective mechanisms to ensure these are respected, including through the establishment of a national human rights institution in line with the Paris Principles ", - "values": [ - "National Human Rights Institution" - ] - }, - { - "text": "Continue to work towards modernizing legislation in line with the new Tunisian Constitution and complete the implementation of recommendations from the first session of the universal periodic review", - "values": [ - "Justice", - "UPR process" - ] - }, - { - "text": "Adopt as soon as possible the Women\u2019s Empowerment and Gender Equality Bill", - "values": [ - "Women's rights" - ] - }, - { - "text": "Provide training in the area of the rights of the child for State officials and civil servants at all levels, in particular to prevent cases of the unjustified removal of children from their families", - "values": [ - "Human rights education and training", - "Rights of the Child" - ] - }, - { - "text": "Accede to the OP-CEDAW as well as review and withdraw the reservations to articles 11, 14, 15 and 16 of the CEDAW", - "values": [ - "International instruments", - "Women's rights" - ] - }, - { - "text": "Consider establishing an inter-ministerial committee responsible for the implementation of its international human rights obligations, inter alia, for coordinating the drafting of the national reports to the treaty bodies and for organizing country visits by the Human Rights Council's special procedures", - "values": [ - "International instruments", - "Special procedures", - "Treaty bodies" - ] - }, - { - "text": "Provide technical assistance to enable the authorities in Aruba, Curaçao and Sint Maarten to educate prison officers and improve prison facilities in compliance with international human rights standards", - "values": [ - "Technical assistance and cooperation" - ] - }, - { - "text": "Allow journalists to exercise their profession, and refrain from arbitrarily withholding licence renewals", - "values": [ - "Freedom of the press" - ] - }, - { - "text": "Incorporate the definition of torture into the criminal code in conformity with the standards in the Convention against Torture", - "values": [ - "International instruments", - "Torture and other CID treatment" - ] - }, - { - "text": "Continue to guarantee freedom of religion and to ensure the preservation and promotion of the cultural characteristics and distinctness of "fa'asomoa" ", - "values": [ - "Freedom of religion and belief" - ] - }, - { - "text": "Take appropriate actions to reduce prison overcrowding, including through a reduction in lengthy pretrial detention and alternatives to custodial sentences for minor offences", - "values": [ - "Detention" - ] - }, - { - "text": "Ratify ICCPR and CPED", - "values": [ - "CP rights - general", - "Enforced disappearances", - "International instruments" - ] - }, - { - "text": "Continue to promote the completion of drafting the national human rights action plan ", - "values": [ - "General" - ] - }, - { - "text": "Increase efforts to control endemic diseases, which constitute the main reason for the high number of deaths among citizens ", - "values": [ - "Right to health" - ] - }, - { - "text": "Step up the necessary processes for the creation of the National Council for Human Rights ", - "values": [ - "National Human Rights Institution" - ] - }, - { - "text": "Ratify the ILO Convention No. 189 concerning Decent Work for Domestic Workers in order to protect the rights of domestic workers", - "values": [ - "International instruments", - "Labour" - ] - }, - { - "text": "Accede to the Rome Statute of the International Criminal Court (ICC) and draft a law on cooperation between the State and the Court", - "values": [ - "International instruments", - "Justice" - ] - }, - { - "text": "Call for and support reform to laws that restrict freedoms of religion and expression, in particular protect the rights of conscientious objectors and ensure that individuals are not punished for expressing their opinions ", - "values": [ - "Freedom of opinion and expression", - "Freedom of religion and belief" - ] - }, - { - "text": "Strengthen the oversight of Polish companies operating abroad with regard to any negative impact their activities might have on the enjoyment of human rights, particularly in conflict areas, including situations of foreign occupation, where there are heightened risks of human rights abuses", - "values": [ - "Business and human rights" - ] - }, - { - "text": "Punish any harassment, intimidation or discrediting of civil society groups ", - "values": [ - "Civil society" - ] - }, - { - "text": "Ensure that civil society organizations and NGOs can work freely and unhindered by undue restrictions, including prohibitive registrations requirements, burdensome programme approval and authorization regulations as well as censorship of printed materials ", - "values": [ - "Civil society", - "Freedom of association and peaceful assembly" - ] - }, - { - "text": "Continue to enhance programmes to protect children from all forms of violence or abuse ", - "values": [ - "Rights of the Child" - ] - }, - { - "text": "Increase its efforts and resources towards strengthening the healthcare system, especially in rural areas", - "values": [ - "Right to health" - ] - }, - { - "text": "Separate juveniles from adults in detention and rehabilitation centres", - "values": [ - "Detention", - "Rights of the Child" - ] - }, - { - "text": "Advance the effective realisation of the human rights to safe drinking water and sanitation by improving the conditions of access particularly by expanding the network in rural areas", - "values": [ - "Right to water and sanitation" - ] - }, - { - "text": "Consider acceding to the Second Optional Protocol to the International Covenant on Civil and Political Rights, aiming at the abolition of the death penalty", - "values": [ - "Death penalty", - "International instruments" - ] - }, - { - "text": "Strengthen cooperation with human rights mechanisms to overcome challenges presented frankly in the national report.", - "values": [ - "Other" - ] - }, - { - "text": "Adopt public policies aimed at the full integration of persons of African descent that incorporate measures to prevent stigmatization, racial discrimination and xenophobia", - "values": [ - "Minorities", - "Racial discrimination" - ] - }, - { - "text": "End the policy of providing two different types of identity documents for trans and cisgender people", - "values": [ - "Sexual Orientation and Gender Identity" - ] - }, - { - "text": "Involve domestic human rights organizations in the follow-up to this review and in the implementation of its National Human Rights Action Plan ", - "values": [ - "Civil society" - ] - }, - { - "text": "Accede to ICCPR, ICESCR and ILO Conventions Nos. 87 and 98 ", - "values": [ - "CP rights - general", - "ESC rights - general", - "International instruments", - "Labour" - ] - }, - { - "text": "In recognition of the importance of the special procedures and the mechanisms of the Human Rights Council, Bahrain pledges to: - Respond in a timely manner to requests for official visits from special rapporteurs, special representatives, independent experts and working groups. It will develop effective policies and mechanisms to respond to these requests. ", - "values": [ - "Special procedures" - ] - }, - { - "text": "Strengthen education for law enforcement personnel on international human rights laws, including the Convention on the Elimination of All Forms of Discrimination against Women and the International Covenant on Civil and Political Rights", - "values": [ - "CP rights - general", - "Human rights education and training", - "Women's rights" - ] - }, - { - "text": "Take better account of the situation of vulnerable populations and adopt legislation to ensure promotion and protection of handicapped persons, children and women. ", - "values": [ - "Disabilities", - "Rights of the Child", - "Women's rights" - ] - }, - { - "text": "Complete the establishment of the national human rights institution ", - "values": [ - "National Human Rights Institution" - ] - }, - { - "text": "Continue with the measures aimed at promoting and protecting effectively in law and in practice the human rights of women", - "values": [ - "Women's rights" - ] - }, - { - "text": "Continue the steps aiming at combating corruption and achieve the efforts to develop national mechanisms in this regard", - "values": [ - "Corruption" - ] - }, - { - "text": "Accept the recommendation of the Committee on the Elimination of Discrimination against Women to develop a comprehensive strategy or action plan to prevent and eliminate all forms of violence against women and girls, and to develop an effective institutional mechanism for coordinating, monitoring and assessing the effectiveness of the measures taken", - "values": [ - "Rights of the Child", - "Treaty bodies", - "Women's rights" - ] - }, - { - "text": "Expedite action on the ratification process of the Optional Protocol to the Convention on the Elimination of All Forms of Discrimination against Women ", - "values": [ - "International instruments", - "Women's rights" - ] - }, - { - "text": "Sign and ratify the International Covenant on Economic, Social and Cultural Rights, the International Covenant on Civil and Political Rights and the Convention against Torture and other Cruel, Inhuman or Degrading Treatment or Punishment", - "values": [ - "CP rights - general", - "ESC rights - general", - "International instruments", - "Torture and other CID treatment" - ] - }, - { - "text": "Ensure the implementation of the existing anti-trafficking legislation ", - "values": [ - "Trafficking" - ] - }, - { - "text": "Share with the members of the international community its best practices and policies and programmes, including educational programmes, with respect to women, children, older persons and persons with disabilities.", - "values": [ - "Disabilities", - "Right to education", - "Rights of the Child", - "Women's rights" - ] - }, - { - "text": "Become a party to the Convention against Torture and Other Cruel, Inhuman or Degrading Treatment or Punishment and its Optional Protocol ", - "values": [ - "Detention", - "International instruments", - "Torture and other CID treatment" - ] - }, - { - "text": "Reinforce measures to resolve the situation of indigenous peoples, in accordance with international standards, particularly for the Mbororos fulany and pygmy peoples to have ownership of their traditional lands", - "values": [ - "Indigenous peoples", - "Right to land" - ] - }, - { - "text": "Establish a moratorium on executions, with a view to abolishing the death penalty for all crimes", - "values": [ - "Death penalty" - ] - }, - { - "text": "Ensure freedom of expression, of assembly and of association in accordance with its international obligations and do not interfere with civil society organizations and their activities by excessive regulations which are formulated ambiguously", - "values": [ - "Civil society", - "Freedom of association and peaceful assembly", - "Freedom of opinion and expression" - ] - }, - { - "text": "Enhance the separation of powers between the executive branches and the judiciary", - "values": [ - "Justice" - ] - }, - { - "text": "Fully implement the Chittagong Hill Tracts Peace Accord ", - "values": [ - "International humanitarian law" - ] - }, - { - "text": "Recognize the mandate of the Special Rapporteur on the situation of human rights, cooperate with him and grant him access ", - "values": [ - "Special procedures" - ] - }, - { - "text": "In addition to the provision of free education at Primary and Secondary level, the Government has also made a commitment to the education of tertiary students. In line with theme of "Building a Smarter Fiji", the Government has announced a number of initiatives ensuring the youth of Fiji access to tertiary education , one of which is a low interest loan to any Fijian student who is accepted at any of the tertiary institutions in Fiji. The Tertiary Education Loan Scheme (TELS) covers the cost of tuition and will not be repaid until after a student has graduated and entered employment. The Government has allocated 600 scholarships for tertiary students who achieve the highest marks in the Fiji Seventh Form Examination under the National Toppers Scheme.", - "values": [ - "Right to education" - ] - }, - { - "text": "Expedite the process of ratification of the International Convention on the Protection of the Rights of All Migrant Workers and Members of Their Families", - "values": [ - "International instruments", - "Labour", - "Migrants" - ] - }, - { - "text": "Take concrete measures to follow up on the concluding observations of the Committee on Economic, Social and Cultural Rights related to trafficking and sexual exploitation of trafficking victims ", - "values": [ - "Trafficking", - "Treaty bodies" - ] - }, - { - "text": "Put an end to the obligation for children to follow their last year of school in the military camp of Sawa ", - "values": [ - "International humanitarian law", - "Rights of the Child" - ] - }, - { - "text": "Cooperate with specialized United Nations bodies to develop the health sector in accordance with the national plan of 2012-2025", - "values": [ - "Right to health" - ] - }, - { - "text": "Establish an ombudsperson for children according to the Paris Principles", - "values": [ - "National Human Rights Institution", - "Rights of the Child" - ] - }, - { - "text": "Continue the policy of increasing the number of women in public and political life ", - "values": [ - "Women's rights" - ] - }, - { - "text": "Establish effective measures to implement the Law on the Comprehensive Protection of Children and Adolescents so as to eradicate the violence suffered by children, girls and adolescents", - "values": [ - "Rights of the Child", - "Women's rights" - ] - }, - { - "text": "Continue its efforts to expand educational programmes and awareness-raising campaigns for preventing and combating corporal punishment of children in schools and childcare institutions", - "values": [ - "Human rights education and training", - "Rights of the Child", - "Torture and other CID treatment" - ] - }, - { - "text": "Ensure that diversity is actively pursued in school curricula through awareness-raising activities in order to eliminate discrimination against minorities, especially lesbian, gay, bisexual, transgender and intersex persons", - "values": [ - "Human rights education and training", - "Right to education", - "Sexual Orientation and Gender Identity" - ] - }, - { - "text": "Take the necessary steps in cooperation with the ILO to ensure an inclusive consultation process with indigenous peoples aiming at a more effective implementation of the relevant legislation", - "values": [ - "Indigenous peoples", - "International instruments", - "Labour" - ] - }, - { - "text": "Ensure a safe and enabling environment for civil society and human rights defenders", - "values": [ - "Civil society", - "Human rights defenders" - ] - }, - { - "text": "Make all necessary efforts to pass legislation prohibiting female genital mutilation within the current year", - "values": [ - "Rights of the Child", - "Torture and other CID treatment", - "Women's rights" - ] - }, - { - "text": "Continue the efforts to address any discriminatory laws and practices in line with Sri Lanka\u2019s accepted international obligations", - "values": [ - "International instruments" - ] - }, - { - "text": "Continue to address measures that protect religious and ethnic minorities in the interests of ensuring their full and equal participation in public and private life", - "values": [ - "Freedom of religion and belief", - "Minorities" - ] - }, - { - "text": "Initiate awareness-raising campaigns and programmes on human rights in general and on the rights of women and children in particular ", - "values": [ - "Human rights education and training", - "Rights of the Child", - "Women's rights" - ] - }, - { - "text": "Improve prison conditions with the aim of aligning them to international norms and standards on the treatment of prisoners", - "values": [ - "Detention" - ] - }, - { - "text": "Ensure prompt investigation of allegations of mistreatment by security forces of migrants at the border to ensure that they are treated in accordance with international human rights obligations", - "values": [ - "Human rights violations by state agents", - "International instruments" - ] - }, - { - "text": "Adopt and implement appropriate measures to ensure that persons with disabilities, particularly women and girls, have access to an inclusive education system, and that they can participate effectively and fully in political and public life on an equal basis with others ", - "values": [ - "Disabilities", - "Right to education", - "Rights of the Child", - "Women's rights" - ] - }, - { - "text": "Speed up the process of integration of the provisions of the Rome Statute in its national legislation", - "values": [ - "International instruments", - "Justice" - ] - }, - { - "text": "Intensify awareness-raising relating to teenage pregnancy and sexual education", - "values": [ - "Right to health", - "Rights of the Child", - "Women's rights" - ] - }, - { - "text": "Continue its good efforts to address violence against women", - "values": [ - "Women's rights" - ] - }, - { - "text": "Amend the Criminal Code to lift restrictions on the freedom of movement, freedom of assembly and freedom of expression", - "values": [ - "Freedom of association and peaceful assembly", - "Freedom of movement", - "Freedom of opinion and expression" - ] - }, - { - "text": "Enhance the prevention, investigation and prosecution of crimes of violence against individuals based on their gender or sexual orientation ", - "values": [ - "Sexual Orientation and Gender Identity" - ] - }, - { - "text": "Accede to the Agreement on the Privileges and Immunities of the Court ", - "values": [ - "International instruments", - "Justice" - ] - }, - { - "text": "Strengthen the independence of the judiciary and safeguard the rule of law by, inter alia, increasing the budget allocated to the justice system", - "values": [ - "Justice" - ] - }, - { - "text": "Strengthen measures to improve the protection of the human rights of all migrants", - "values": [ - "Migrants" - ] - }, - { - "text": "Criminalize torture, in line with international human rights obligations, and fight extrajudicial executions, through, inter alia, capacity-building for State agents", - "values": [ - "Extrajudicial executions", - "Human rights education and training", - "International instruments", - "Torture and other CID treatment" - ] - }, - { - "text": "Renew its efforts to combat ongoing discrimination on a de facto and de jure basis concerning sexual orientation, and decriminalize same-sex relations ", - "values": [ - "Sexual Orientation and Gender Identity" - ] - }, - { - "text": "Strengthen measures to combat all forms of discrimination, focusing on sensitization and monitoring", - "values": [ - "Other" - ] - }, - { - "text": "Adequately sanction with severe penalties crimes of rape and sexual abuse, establish specialized courts in this area, set up support and counselling services for victims, and design a national awareness-raising programme to facilitate access to justice to women and children ", - "values": [ - "Human rights education and training", - "Rights of the Child", - "Women's rights" - ] - }, - { - "text": "Further develop public health policy, with a focus on guaranteeing access to health for children and women", - "values": [ - "Right to health", - "Rights of the Child", - "Women's rights" - ] - }, - { - "text": "Extend the scope of the activities of the national preventive mechanism under OP-CAT in order to include places of deprivation of liberty which are not under the authority of the Ministry of Justice and the Ministry of Public Security, Interior and the Police", - "values": [ - "Detention", - "International instruments", - "Torture and other CID treatment" - ] - }, - { - "text": "Further strengthen its measures to combat all forms of trafficking in women and children and protecting and rehabilitating its victims", - "values": [ - "Rights of the Child", - "Trafficking", - "Women's rights" - ] - }, - { - "text": "Increase, within its limited resources, its capacity to achieve the MDGs and the right to development to all its people ", - "values": [ - "Development" - ] - }, - { - "text": "For the protection of the rights of persons with disabilities, the participation of all relevant organizations is vital in order to promote their rights as well as the infrastructural and psychological environment are much needed", - "values": [ - "Disabilities" - ] - }, - { - "text": "Revise the provisions on defamation and libel in order that these are not considered crimes in national legislation ", - "values": [ - "Freedom of opinion and expression" - ] - }, - { - "text": "Submit rapidly its national report to the Committee on the Elimination of Discrimination against Women (CEDAW) that was due in 2007 and include a section on violence against women as requested by the Committee", - "values": [ - "Treaty bodies", - "Women's rights" - ] - }, - { - "text": "Review and amend laws, as appropriate, to ensure that publically-funded schools provide equal access to education for all, irrespective of one's faith or religious affiliation", - "values": [ - "Freedom of religion and belief", - "Right to education" - ] - }, - { - "text": "That every effort be made, given the importance of the Defender of Rights and the amalgamation of previous independent authorities, that it be given all necessary resources and powers to exercise its functions", - "values": [ - "National Human Rights Institution" - ] - }, - { - "text": "Provide all the necessary measures to improve the participation of women in public life and in the political and economic spheres ", - "values": [ - "Women's rights" - ] - }, - { - "text": "Cultivate and develop at local as well as national level a culture of human rights through appropriate programmes increasingly adapted to the cultural context in the framework of formal and non-formal education", - "values": [ - "Human rights education and training" - ] - }, - { - "text": "Establish a de jure moratorium on the death penalty with a view to total abolition thereof", - "values": [ - "Death penalty" - ] - }, - { - "text": "Adopt a National Human Rights Action Plan ", - "values": [ - "General" - ] - }, - { - "text": "Ensure adequate resources for poverty alleviation programmes, in line with the commitment to ensure inclusive growth", - "values": [ - "Poverty" - ] - }, - { - "text": "Work to encourage both Qatari and expatriate women to report incidents of sexual violence, such as rape, to the authorities and increase the awareness of police, prosecutors and judges about the seriousness of the issue ", - "values": [ - "Human rights education and training", - "Women's rights" - ] - }, - { - "text": "Provide immediate, full, unhindered and sustained humanitarian access to the country", - "values": [ - "Other" - ] - }, - { - "text": "Work towards abolishing the separate system of military police by implementing more effective measures to tie State funding to compliance with measures aimed at reducing the incidence of extrajudicial executions by the police", - "values": [ - "Extrajudicial executions", - "Human rights violations by state agents" - ] - }, - { - "text": "Continue its efforts to protect vulnerable categories of children, including orphans, extending them to all regions of the country ", - "values": [ - "Rights of the Child" - ] - }, - { - "text": "Create incentives for the voluntary return of Sudanese nationals who left the country due to the situation of internal violence, including displaced persons, refugees and migrants. Generate and implement Government programmes enabling the economic and social reintegration of these people, especially those in vulnerable situation ", - "values": [ - "Asylum-seekers - refugees", - "ESC rights - general", - "Internally displaced persons", - "Migrants" - ] - }, - { - "text": "Continue and strengthen Austria's aid programmes and projects to improve the conditions of people in developing countries", - "values": [ - "Development" - ] - }, - { - "text": "Undertake efforts to improve all prison facilities in Guyana ", - "values": [ - "Detention" - ] - }, - { - "text": "Include in the implementation of its anti-discrimination legislation effective measures that strengthen religious tolerance, gender equality and equal rights for ethnic minorities, women and lesbian, gay, bisexual, transgender and intersex (LGBTI) persons, so as to increase tolerance and social inclusion in Georgian society", - "values": [ - "Freedom of religion and belief", - "Minorities", - "Racial discrimination", - "Sexual Orientation and Gender Identity", - "Women's rights" - ] - }, - { - "text": "Continue strengthening the national legislation for the prevention, prosecution and reparation of racism and other forms of discrimination, in particular through the adoption of the National Plan against Racism and Discrimination, the strengthening of the Honorary Commission against Racism and Xenophobia, as well as the implementation of awareness-raising campaigns that may lead to cultural changes ", - "values": [ - "Racial discrimination" - ] - }, - { - "text": "Strengthen monitoring mechanisms which address incidents of forced child labour and further combat the trafficking of children ", - "values": [ - "Labour", - "Rights of the Child", - "Trafficking" - ] - }, - { - "text": "Submit its pending reports to the relevant treaty bodies.", - "values": [ - "Treaty bodies" - ] - }, - { - "text": "Look into amending the ban on students wearing religious symbols in schools, including the hijab", - "values": [ - "Freedom of religion and belief", - "Right to education" - ] - }, - { - "text": "Adopt comprehensive legislation to combat discrimination in line with its international obligations and standards, which includes discrimination based on sexual orientation and gender identity", - "values": [ - "International instruments", - "Sexual Orientation and Gender Identity" - ] - }, - { - "text": "Continue its efforts to ensure that trials take place within a reasonable period of time ", - "values": [ - "Justice" - ] - }, - { - "text": "Continue its efforts to improve legislation to ensure that it is in line with international best practices and standards on freedom of expression", - "values": [ - "Freedom of opinion and expression" - ] - }, - { - "text": "Make every effort to put an end to violence, implement genuine political reforms at this critical juncture, and continue to work towards reaching a peaceful solution through negotiations and dialogue, in order to spare further bloodshed of the brotherly Syrian people, and preserve its security and stability and the unity of territorial integrity ", - "values": [ - "General" - ] - }, - { - "text": "Consider aligning national laws, including customary laws with the protections outlines in the Constitution of the Kingdom of Swaziland, as well as with the provisions of International Human Rights Instruments to which Swaziland is a party ", - "values": [ - "International instruments" - ] - }, - { - "text": "Provide adequate education opportunities for the persons with disabilities ", - "values": [ - "Disabilities", - "Right to education" - ] - }, - { - "text": "Continue efforts to promote school attendance of children and to fight illiteracy through specific programmes for the most vulnerable population, especially in rural areas.", - "values": [ - "Right to education", - "Rights of the Child" - ] - }, - { - "text": "Strengthen efforts to address racial discrimination including through implementing the Multinational Plan to Eliminate Racial Discrimination and Ethnic and Cultural Exclusion", - "values": [ - "Racial discrimination" - ] - }, - { - "text": "Strengthen efforts aimed at eliminating HIV-AIDS, and cooperate with WHO in this regard ", - "values": [ - "HIV - Aids" - ] - }, - { - "text": "Continue to improve its domestic legislation and judiciary system to be in line with international human rights standards and obligations including intensifying human rights education and training, especially for its military and law enforcement officers, in order to enhance their awareness and promote greater accountability ", - "values": [ - "Human rights education and training", - "International instruments" - ] - }, - { - "text": "Develop strategies to stop the spread of xenophobic speech in the social and political spheres that include mechanisms to ensure legal and social assistance to victims of racism and hate crimes", - "values": [ - "Racial discrimination" - ] - }, - { - "text": "Review the Criminal and Criminal Procedural Codes in order to bring them into line with international standards", - "values": [ - "Justice" - ] - }, - { - "text": "Extend its human rights awareness programme to all sections of the population", - "values": [ - "Human rights education and training" - ] - }, - { - "text": "Enact and enforce effective legislation prohibiting the practice of female genital mutilation", - "values": [ - "Rights of the Child", - "Torture and other CID treatment", - "Women's rights" - ] - }, - { - "text": "Continue its significant efforts to promote gender equality, in particular the implementation of the Draft National Gender Policy as well as the proper enforcement of the existing legal frameworks", - "values": [ - "Women's rights" - ] - }, - { - "text": "Review national legislation and take the necessary legislative measures to ensure that there is no overlap of functions between the Office of the Commissioner for the Protection from Discrimination and the Ombudsman, and consider granting the Ombudsman the necessary financial and human resources to enable it to fulfil its mandate with more efficiency and independence, in accordance with the Paris Principles", - "values": [ - "National Human Rights Institution" - ] - }, - { - "text": "Ratify or accede to the remaining core international human rights treaties", - "values": [ - "International instruments" - ] - }, - { - "text": "Grant Palestinian refugees the freedom of movement and in particular facilitate the free entry into and exit from Nahr el Bared camp", - "values": [ - "Asylum-seekers - refugees", - "Freedom of movement" - ] - }, - { - "text": "Establish a fully implementable national action plan which guarantees full protection of vulnerable groups ", - "values": [ - "Minorities" - ] - }, - { - "text": "Continue to pursue current policies to ensure the enjoyment of all human rights by all Tunisians, particularly with regard to health and education ", - "values": [ - "Right to education", - "Right to health" - ] - }, - { - "text": "Adhere to the Convention on the Non-Applicability of Statutory Limitations to War Crimes and Crimes against Humanity, without making any reservation and implement the treaty into national law", - "values": [ - "International instruments", - "Justice" - ] - }, - { - "text": "Take all measures necessary to ensure the independence of the judiciary", - "values": [ - "Justice" - ] - }, - { - "text": "Follow through with the implementation of its national development agenda under Vision 2030", - "values": [ - "Development" - ] - }, - { - "text": "Continue efforts to combat all forms of racial discrimination, xenophobia and racism, in particular with respect to refugees, asylum seekers and migrants", - "values": [ - "Asylum-seekers - refugees", - "Migrants", - "Racial discrimination" - ] - }, - { - "text": "All rights be restored retroactively to those affected by the Constitutional Court judgment and that they be given prompt and non-discriminatory means to acquire their Dominican Republic citizenship ", - "values": [ - "Other" - ] - }, - { - "text": "Designate an Ombudsman as soon as possible considering that the national ombudsman\u2019s office has been without leadership for the past eight years", - "values": [ - "National Human Rights Institution" - ] - }, - { - "text": "Sign and ratify the Protocol to Prevent, Suppress and Punish Trafficking in Persons, especially Women and Children", - "values": [ - "International instruments", - "Rights of the Child", - "Trafficking", - "Women's rights" - ] - }, - { - "text": "Enhance victims' access to legal redress, and establish special measures for the protection of victims, including the provision of shelters and legal, medical and psychological support ", - "values": [ - "Justice" - ] - }, - { - "text": "Continue working to safeguard the human rights of the minorities in the country", - "values": [ - "Minorities" - ] - }, - { - "text": "Accelerate the process to adopt the Gender Equality Bill in order to strengthen its efforts to address discrimination against women", - "values": [ - "Women's rights" - ] - }, - { - "text": "Continue to strengthen its domestic legislation to implement its international human rights obligations", - "values": [ - "International instruments" - ] - }, - { - "text": "Immediately end the violence against peaceful protesters, including human rights defenders, and hold accountable those responsible for such acts", - "values": [ - "Freedom of association and peaceful assembly", - "Human rights defenders" - ] - }, - { - "text": "Review its Family Code to remedy provisions, which still represent discrimination against women regarding the issues of divorce and rape witnesses. ", - "values": [ - "Women's rights" - ] - }, - { - "text": "Ratify the Optional Protocol to the Convention on the Elimination of All Forms of Discrimination against Women ", - "values": [ - "International instruments", - "Women's rights" - ] - }, - { - "text": "Although Tuvalu is not a party to the other core human rights treaties the Government is still committed to ensuring effective monitoring of human rights situation on the ground and to meet the targets outlined in the Te Kakeega II, The National Strategy on Sustainable Development. ", - "values": [ - "General" - ] - }, - { - "text": "Further strengthen measures to fully eliminate torture and all forms of ill-treatment at every level, including by establishing a national preventive mechanism", - "values": [ - "Detention", - "Torture and other CID treatment" - ] - }, - { - "text": "Expand the integration of persons with disabilities into programmes and plans for sustainable development", - "values": [ - "Development", - "Disabilities" - ] - }, - { - "text": "Continue and reinforce current efforts aimed to increase the access to and quality of services to health and education for all its citizens", - "values": [ - "Right to education", - "Right to health" - ] - }, - { - "text": "Adopt and implement a national programme for promoting education for girls at all levels and the eradication of root causes of school dropout ", - "values": [ - "Right to education", - "Rights of the Child" - ] - }, - { - "text": "Accede to the Rome Statute of the International Criminal Court and the Convention on the Non-Applicability of Statutory Limitations to War Crimes and Crimes against Humanity", - "values": [ - "International humanitarian law", - "International instruments", - "Justice" - ] - }, - { - "text": "Support the Family Protection and Domestic Violence draft Bill with an institutional strategy and sufficient resources to enhance the prevention of domestic violence, combat impunity and grant adequate access to justice for the victims ", - "values": [ - "Impunity", - "Rights of the Child", - "Women's rights" - ] - }, - { - "text": "Adopt, as a matter of priority, all legal and administrative measures to prohibit and punish corporal punishment of children in all settings, including at home ", - "values": [ - "Rights of the Child", - "Torture and other CID treatment" - ] - }, - { - "text": "Amend the legislation to eliminate discrimination against women with respect to the transmission of nationality to their children and the registration of civil acts ", - "values": [ - "Women's rights" - ] - }, - { - "text": "Consider ratifying the Convention on the Rights of Persons with Disabilities CRPD", - "values": [ - "Disabilities", - "International instruments" - ] - }, - { - "text": "Implement gender equality by establishing same wages for same jobs for men and women", - "values": [ - "Women's rights" - ] - }, - { - "text": "Engage the civil society in the follow-up process to the universal periodic review ", - "values": [ - "Civil society", - "UPR process" - ] - }, - { - "text": "Continue with its positive steps to curb illicit drug trafficking", - "values": [ - "Public security" - ] - }, - { - "text": "Cooperate fully with the United Nations human rights mechanisms, including by inviting the Special Rapporteur on the situation of human rights in Iran to the country", - "values": [ - "Special procedures", - "Treaty bodies", - "UPR process" - ] - }, - { - "text": "Immediately release all individuals detained without a legal basis, including those that have completed their terms and those acquainted by courts ", - "values": [ - "Detention" - ] - }, - { - "text": "Continue making contribution by providing support to developing countries in order to improve the enjoyment of human rights in these countries", - "values": [ - "Other" - ] - }, - { - "text": "Establish a process for handling requests for nationality by Bidouns in accordance with international standards", - "values": [ - "Minorities" - ] - }, - { - "text": "See to it that its action within and outside the Council was based on the commitments it has undertaken and on principles of objectivity, impartiality and non-selectivity", - "values": [ - "General" - ] - }, - { - "text": "Decriminalize homosexuality", - "values": [ - "Sexual Orientation and Gender Identity" - ] - }, - { - "text": "Establish a national human rights institution in line with the Paris Principles, drawing on the experience of the Icelandic Human Rights Centre", - "values": [ - "National Human Rights Institution" - ] - }, - { - "text": "Advance efforts towards the recognition of Indigenous Australians as Australia's First People in Australia's Constitution", - "values": [ - "Indigenous peoples" - ] - }, - { - "text": "All law enforcement be conducted in accordance with international human rights standards and that the Dominican Republic undertakes prompt independent investigations into all alleged violations by officials ", - "values": [ - "Human rights violations by state agents", - "International instruments" - ] - }, - { - "text": "Make further efforts to ratify and fully align its national legislation with the Rome Statute of the International Criminal Court", - "values": [ - "International instruments", - "Justice" - ] - }, - { - "text": "Reconsider the ratification of the ICED and promote the prompt acceptance of the CERD's competence, in accordance with art. 14 of the Convention", - "values": [ - "Enforced disappearances", - "International instruments" - ] - }, - { - "text": "Increase its efforts aimed at the incorporation of the CRC provisions and principles into the domestic legal system ", - "values": [ - "International instruments", - "Rights of the Child" - ] - }, - { - "text": "Within the context of incorporating the values of the culture of peace in public and private education, include actions to eliminate violence in schools and to address the special needs of children affected by conflict ", - "values": [ - "Right to education", - "Rights of the Child" - ] - }, - { - "text": "Ratify the Council of Europe Convention on Preventing and Combating Violence against Women and Domestic Violence (Istanbul Convention)", - "values": [ - "International instruments", - "Women's rights" - ] - }, - { - "text": "Continue and strengthen its efforts in implementing the action plan to combat trafficking in persons so that all perpetrators of trafficking in persons are brought to justice and victims are provided with adequate protection and rehabilitation", - "values": [ - "Trafficking" - ] - }, - { - "text": "Make efforts to ensure transparency and consideration for human rights, in particular those of women and children, in its treatment of migrants and refugees", - "values": [ - "Asylum-seekers - refugees", - "Migrants", - "Rights of the Child", - "Women's rights" - ] - }, - { - "text": "Formulate strict legislation to prevent abuse and exploitation of children with disabilities by parents or other members of society, and provide necessary measures to assist them in their quest of justice", - "values": [ - "Disabilities", - "Rights of the Child" - ] - }, - { - "text": "Combat more vigorously the phenomenon of domestic violence, in particular violence against children, including by the introduction of a coherent and clear legislative framework prohibiting corporal punishment", - "values": [ - "Justice", - "Rights of the Child", - "Women's rights" - ] - }, - { - "text": "Develop and implement a National Action Plan on Human Rights in order to have a systematic strategy for the promotion and protection of human rights ", - "values": [ - "General" - ] - }, - { - "text": "Ensure that adequate attention is dedicated to the effective protection of journalists and human rights defenders", - "values": [ - "Freedom of the press", - "Human rights defenders" - ] - }, - { - "text": "Stop the forced evictions of indigenous peoples in the territories under occupation", - "values": [ - "Indigenous peoples", - "Right to land" - ] - }, - { - "text": "Continue its practice of further strengthening the national human rights institution", - "values": [ - "National Human Rights Institution" - ] - }, - { - "text": "Ensure that the legal definition of torture is in line with Convention against Torture", - "values": [ - "International instruments", - "Torture and other CID treatment" - ] - }, - { - "text": "Put in place additional and fitting measures to ensure respect for freedom of expression and of the media ", - "values": [ - "Freedom of opinion and expression", - "Freedom of the press" - ] - }, - { - "text": "Bring its law on public associations into line with the International Covenant on Civil and Political Rights and also as recommended by the Human Rights Committee, reinstate NGOs, which were unlawfully shut down, and refrain from imposing discriminatory restrictions on the freedom of association", - "values": [ - "Civil society", - "Freedom of association and peaceful assembly", - "International instruments", - "Treaty bodies" - ] - }, - { - "text": "Sign and ratify all international human rights instruments to which it is not yet party ", - "values": [ - "International instruments" - ] - }, - { - "text": "Guarantee freedom and independence of the media and ensure that rules regarding media ownership comply with European Union law (no discrimination and no retroactive legislation)", - "values": [ - "Freedom of the press" - ] - }, - { - "text": "Ensure due protection of rights of its diverse religious, national or ethnic and linguistic minority groups threatened by the increased violence and tensions and to prevent their discrimination", - "values": [ - "Freedom of religion and belief", - "Minorities", - "Racial discrimination" - ] - }, - { - "text": "Take measures to provide those at risk of statelessness with identity documents, with particular regard to the Roma", - "values": [ - "Minorities", - "Statelessness and the right to nationality" - ] - }, - { - "text": "Continue to apply a zero-tolerance approach to torture and cruel, inhuman or degrading treatment or punishment", - "values": [ - "Torture and other CID treatment" - ] - }, - { - "text": "Enhance and improve education, in particular by continuing to work towards the improvement of education through information technology ", - "values": [ - "Right to education" - ] - }, - { - "text": "Take further steps to ensure the protection of persons with disabilities", - "values": [ - "Disabilities" - ] - }, - { - "text": "Strengthen research on the occurrence of child trafficking and regional cooperation with countries to which Armenian children are trafficked ", - "values": [ - "Rights of the Child", - "Trafficking" - ] - }, - { - "text": "Act on the recommendations of the Working Group on Arbitrary Detention, and to ratify CAT", - "values": [ - "Detention", - "Special procedures", - "Torture and other CID treatment" - ] - }, - { - "text": "Continue to take measures to combat ethnic discrimination and racism as well as hate speech on grounds of ethnicity, colour, race and religion", - "values": [ - "Freedom of religion and belief", - "Racial discrimination" - ] - }, - { - "text": "With the continued support of the international community, reinforce the capacity of law enforcement authorities through awareness-raising of police and other law enforcement officials to ensure their compliance with international human rights standards and by adopting relevant legislation", - "values": [ - "Human rights education and training", - "International instruments", - "Technical assistance and cooperation" - ] - }, - { - "text": "Seek assistance of the international community, including relevant experiences, for the implementation of the Lessons Learnt and Reconciliation Commission recommendations", - "values": [ - "Justice", - "Technical assistance and cooperation" - ] - }, - { - "text": "Continue to strengthen its efforts in tackling poverty and enhancing access to basic social services such as health and education, especially for those living in rural areas", - "values": [ - "Poverty", - "Right to education", - "Right to health" - ] - }, - { - "text": "Extend migrant workers rights equally to all migrant workers, regardless of their age and gender", - "values": [ - "Labour", - "Migrants" - ] - }, - { - "text": "Withdraw all of its reservations to CEDAW and CRC as soon as possible", - "values": [ - "International instruments", - "Rights of the Child", - "Statelessness and the right to nationality", - "Women's rights" - ] - }, - { - "text": "Implement the human rights goals adopted in resolution 9-12 of the Human Rights Council ", - "values": [ - "General" - ] - }, - { - "text": "Strengthen cooperation with human rights treaty bodies ", - "values": [ - "Treaty bodies" - ] - }, - { - "text": "Continue its efforts to establish a national human rights institution in line with the Paris Principles and with full participation of the civil society", - "values": [ - "Civil society", - "National Human Rights Institution" - ] - }, - { - "text": "Cooperate fully with the United Nations to ensure rapid, safe and unhindered humanitarian access to those in dire need", - "values": [ - "Other" - ] - }, - { - "text": "Adopt effective measures to stabilize the situation in the area of rights of migrants, including the end of the practice of unauthorized forced repatriation of migrants", - "values": [ - "Migrants" - ] - }, - { - "text": "Further strengthen its policy to foster the development and enjoyment of human rights by all Cubans, particularly in the realm of anti-discrimination", - "values": [ - "General" - ] - }, - { - "text": "Continue seeking official development assistance as well as technical assistance from development partners with a view to finding solutions to the identified challenges hindering the enjoyment of human rights ", - "values": [ - "Technical assistance and cooperation" - ] - }, - { - "text": "Ensure the effective implementation of the National Plan against Racism and Discrimination", - "values": [ - "Racial discrimination" - ] - }, - { - "text": "Commute all existing death sentences to imprisonment and ensure the complete abolition of the death penalty, including through the ratification of the Second Optional Protocol to the International Covenant on Civil and Political Rights (ICCPR-OP2) ", - "values": [ - "Death penalty", - "International instruments" - ] - }, - { - "text": "Put in place specific human rights training and education programmes in the different education cycles", - "values": [ - "Human rights education and training" - ] - }, - { - "text": "Reorient the new NGO law to allow the full exercise of the right to freedom of association for both domestic and international organizations, with autonomy and without risk for their continuity", - "values": [ - "Civil society", - "Freedom of association and peaceful assembly" - ] - }, - { - "text": "Set up a strategy for eliminating discriminatory cultural practices and stereotypes and repealing all discriminatory laws against women, and adopt a law criminalizing female genital mutilation ", - "values": [ - "Rights of the Child", - "Torture and other CID treatment", - "Women's rights" - ] - }, - { - "text": "Continue approving the necessary secondary legislation, regarding the constitutional reform, harmonizing it at state and federal level, and that training of judicial officers to ensure its effective application at both levels be conducted", - "values": [ - "Justice" - ] - }, - { - "text": "Take action with regard to the impediments that Muslim minority women in Thrace may face when sharia law is applied on family and inheritance law matters ", - "values": [ - "Freedom of religion and belief", - "Minorities", - "Women's rights" - ] - }, - { - "text": "Continue efforts to ensure the effective operation and full independence of the Human Rights Commission, in keeping with the Paris Principles", - "values": [ - "National Human Rights Institution" - ] - }, - { - "text": "Remove any reference to the death penalty from the penal code.", - "values": [ - "Death penalty" - ] - }, - { - "text": "Intensify efforts in fully implementing all the recommendations of the Truth and Reconciliation Commission (TRC), in particular with regard to victims' compensation and institutional reforms.", - "values": [ - "Justice" - ] - }, - { - "text": "Prohibit corporal punishment in all settings, including the family", - "values": [ - "Rights of the Child" - ] - }, - { - "text": "Increase the financial and human resources available to the judicial system.", - "values": [ - "Justice" - ] - }, - { - "text": "Develop training programs for youth so as to improve their access to the labour market", - "values": [ - "Development" - ] - }, - { - "text": "Ensure teaching and preservation of minority languages, by providing adequate general education to students in their native language", - "values": [ - "Minorities", - "Right to education" - ] - }, - { - "text": "Ensure the protection of its citizens' economic, social and cultural rights.", - "values": [ - "ESC rights - general" - ] - }, - { - "text": "Request the international community to provide appropriate assistance, enabling Chad to achieve the objectives envisaged in paragraph 89 of its national report.", - "values": [ - "Technical assistance and cooperation" - ] - }, - { - "text": "Intensify its efforts in creating more opportunities for women in order to access full-time employment", - "values": [ - "Women's rights" - ] - }, - { - "text": "Extend standing invitation to the United Nations human rights special procedures ", - "values": [ - "Special procedures" - ] - }, - { - "text": "Consider deepening the measures taken for socio-economic promotion of the ethnic minorities", - "values": [ - "ESC rights - general", - "Minorities" - ] - }, - { - "text": "Establish effective protections for civil society and journalists, including the prompt and efficient investigation and prosecution of all threats and attacks made against these individuals", - "values": [ - "Civil society", - "Freedom of the press" - ] - }, - { - "text": "Engender a convivial political atmosphere in order to facilitate speedy reconciliation among all groups, religious and minority", - "values": [ - "Freedom of religion and belief", - "Minorities" - ] - }, - { - "text": "Ratify the International Covenant on Economic, Social and Cultural Rights (ICESR).", - "values": [ - "ESC rights - general", - "International instruments" - ] - }, - { - "text": "Harmonize the procedures for reviewing asylum decisions with the Convention against Torture and other relevant human rights treaties and provide State legal aid for migrants who need it", - "values": [ - "Asylum-seekers - refugees", - "International instruments", - "Migrants" - ] - }, - { - "text": "Continue to implement policies that fully consider the rights of persons with disabilities when formulating and implementing all social activities and development plans", - "values": [ - "Disabilities" - ] - }, - { - "text": "Abolish the death penalty, as previously recommended", - "values": [ - "Death penalty" - ] - }, - { - "text": "Expedite implementation of the National Disaster Management Act", - "values": [ - "Environment" - ] - }, - { - "text": "Conclude the ratification process of the relevant Optional Protocols to the Convention on the Rights of the Child", - "values": [ - "International instruments", - "Rights of the Child" - ] - }, - { - "text": "Review in depth its migration policy", - "values": [ - "Migrants" - ] - }, - { - "text": "Create and implement a national human rights institution in accordance with the Paris Principles", - "values": [ - "National Human Rights Institution" - ] - }, - { - "text": "Abolish the death penalty or at least establish a moratorium ", - "values": [ - "Death penalty" - ] - }, - { - "text": "Abolish the death penalty completely and, in the meantime, establish a formal moratorium on executions, as urged by the respective General Assembly resolutions ", - "values": [ - "Death penalty" - ] - }, - { - "text": "Develop effective measures to eradicate racism and xenophobia, including hate speech", - "values": [ - "Racial discrimination" - ] - }, - { - "text": "Continue to study and review human rights instruments. Bhutan has always been of the view that the government must first build the necessary social and political institutions and develop its human resources before it assumes any additional international treaty obligations. In the absence of strong institutions and qualified personnel, it remains seriously constrained in fulfilling the obligations as required in the international treaties/conventions. As its capacity is enhanced, Bhutan will consider ratifying relevant international human rights instruments", - "values": [ - "International instruments" - ] - }, - { - "text": "Continue the efforts to implement consultation mechanisms and ensure the protection of human rights of indigenous groups ", - "values": [ - "Indigenous peoples" - ] - }, - { - "text": "Promote responsible freedom of expression in speeches and publications to curb hate crimes", - "values": [ - "Freedom of opinion and expression", - "Racial discrimination" - ] - }, - { - "text": "Enhance its initiatives designed to halt female genital mutilation and related harmful practices", - "values": [ - "Rights of the Child", - "Torture and other CID treatment", - "Women's rights" - ] - }, - { - "text": "Take further steps to eliminate discrimination against women", - "values": [ - "Women's rights" - ] - }, - { - "text": "Enhance efforts to implement existing policy instruments aiming at protecting women's rights, and to enhance the support given to victims of violence, for example through adequate resourcing of counselling centres", - "values": [ - "Women's rights" - ] - }, - { - "text": "Promote cross-cutting measures to prevent discrimination against persons with disabilities in the education system, including measures that allow for a safe physical access to education centres and classrooms", - "values": [ - "Disabilities", - "Right to education" - ] - }, - { - "text": "Continue its efforts to provide free education for primary and secondary school students", - "values": [ - "Right to education" - ] - }, - { - "text": "Adopt measures to ensure that the education plan and teaching materials have an inter-cultural perspective (for all), bearing in mind the culture and history of different minority groups.", - "values": [ - "Minorities", - "Right to education" - ] - }, - { - "text": "Undertake measures to improve the quality, capacity and effectiveness of the justice system to prevent the abuses of the rights of national minorities and to investigate, prosecute and sanction cases and offenders, particularly against returnees ", - "values": [ - "Justice", - "Minorities" - ] - }, - { - "text": "Ratify the Second Optional Protocol to the International Covenant on Civil and Political Rights aiming at the abolition of the death penalty", - "values": [ - "Death penalty", - "International instruments" - ] - }, - { - "text": "Develop a communications strategy to raise the awareness of society of the difficulties faced by groups of LGBTI persons and foster an environment of tolerance", - "values": [ - "Human rights education and training", - "Sexual Orientation and Gender Identity" - ] - }, - { - "text": "Implement the Workplace Gender Equality Act 2013, in letter and spirit, to create socio-economic gender parity", - "values": [ - "ESC rights - general", - "Women's rights" - ] - }, - { - "text": "Carry out an in-depth and systematic investigation into all allegations of enforced disappearances, bring perpetrators to justice and guarantee reparations to all victims, in particular to the families of the disappeared persons", - "values": [ - "Enforced disappearances" - ] - }, - { - "text": "Accelerate the implementation of the 2011 Jasmine Plan on national economic and social programmes in close collaboration with relevant stakeholders ", - "values": [ - "ESC rights - general" - ] - }, - { - "text": "That measures taken to protect refugee rights be in compliance with the internationally recognized norms and standards", - "values": [ - "Asylum-seekers - refugees" - ] - }, - { - "text": "Ensure the protection and promotion of the rights of migrants, in particular the safeguarding of the interests of children and adolescents ", - "values": [ - "Migrants", - "Rights of the Child" - ] - }, - { - "text": "Give high priority to the Office for Gender Equality by providing it with necessary resources to effectively carry out its mandate ", - "values": [ - "Women's rights" - ] - }, - { - "text": "Take steps to ensure its obligations under the International Covenant on Civil and Political Rights are upheld when it comes to articles 21 and 22 regarding the right of peaceful assembly and the right to freedom of association", - "values": [ - "CP rights - general", - "Freedom of association and peaceful assembly", - "International instruments" - ] - }, - { - "text": "Complete the work on an anti-discrimination bill, and establish a specialized body to combat racism and discrimination and allowing victims to institute criminal proceedings on hate speech in fair trials and due process", - "values": [ - "Racial discrimination" - ] - }, - { - "text": "Encourage civic participation, including of civil society in the electoral process.", - "values": [ - "Civil society", - "Elections" - ] - }, - { - "text": "Strengthen methods for combatting trafficking", - "values": [ - "Trafficking" - ] - }, - { - "text": "Finalize pending human rights initiatives, including the Affirmative Action or Gender Equality Bill, the Right to Information Bill, and the National Plan of Action on Human Trafficking", - "values": [ - "Freedom of opinion and expression", - "Trafficking", - "Women's rights" - ] - }, - { - "text": "Create a national search commission for victims of enforced disappearance and other forms of disappearance", - "values": [ - "Enforced disappearances" - ] - }, - { - "text": "Continue to cooperate with the International Criminal Court in order to shed light on the events of September 2009 and to prosecute those who are guilty ", - "values": [ - "Justice" - ] - }, - { - "text": "Incorporate the different provisions of the United Nations core human rights conventions, ratified by Denmark, into national law ", - "values": [ - "International instruments" - ] - }, - { - "text": "Implement comprehensive guidelines under the Domestic Violence Act to ensure a coordinated response for victims of violence by police, courts, health and social welfare agencies", - "values": [ - "Rights of the Child", - "Women's rights" - ] - }, - { - "text": "Intensify its efforts to eliminate discrimination against migrants and other minority women, who still face multiple forms of discrimination with respect to education, health, employment and social and political participation ", - "values": [ - "Migrants", - "Minorities", - "Women's rights" - ] - }, - { - "text": "Continue efforts to protect the environment", - "values": [ - "Environment" - ] - }, - { - "text": "Continue in its endeavour to tackle child mortality and morbidity in the country", - "values": [ - "Rights of the Child" - ] - }, - { - "text": "Improve prosecution for and prevention of domestic violence and ensure that victims of domestic violence have access to shelters and other support services", - "values": [ - "Rights of the Child", - "Women's rights" - ] - }, - { - "text": "Continue to implement the national education strategic plan to raise the coverage of education and its quality ", - "values": [ - "Right to education" - ] - }, - { - "text": "Continue the practice of implementing the National Action Programme aimed at improving the human rights situation on the ground ", - "values": [ - "General" - ] - }, - { - "text": "Further continue ensuring equal access to justice and equal treatment of all Ecuadorians by the courts", - "values": [ - "Justice" - ] - }, - { - "text": "Reinforce the capacities of the Ministry of Human Rights and of the Promotion of Liberty. energize the National Commission on Human Rights. harmonize national legislation with international human rights instruments.", - "values": [ - "National Human Rights Institution" - ] - }, - { - "text": "Continue efforts to improve the protection of women and children", - "values": [ - "Rights of the Child", - "Women's rights" - ] - }, - { - "text": "Cooperate fully with international human rights procedures and institutions, including with the Human Rights Council fact-finding mission, with the aim of holding accountable those responsible for violations and abuses of human rights", - "values": [ - "Justice", - "Technical assistance and cooperation" - ] - }, - { - "text": "Remove criminal penalties for offences on the basis of sexual orientation ", - "values": [ - "Sexual Orientation and Gender Identity" - ] - }, - { - "text": "Take concrete steps to ensure the full enjoyment of the right to freedom of expression for all, including journalists and human rights defenders, and strengthen protection of journalists and human rights defenders against harassment and persecution", - "values": [ - "Freedom of opinion and expression", - "Freedom of the press", - "Human rights defenders" - ] - }, - { - "text": "Immediately respect the decisions of the Human Rights Council and fully cooperate with the international Commission of Inquiry, including by granting access on the ground and by not inhibiting the mission which it has been entrusted with", - "values": [ - "Technical assistance and cooperation" - ] - }, - { - "text": "Continue its efforts to strengthening and combating child trafficking", - "values": [ - "Rights of the Child", - "Trafficking" - ] - }, - { - "text": "Guarantee the right of Roma people to adequate housing, water and sanitation, work, education, and security of tenure of their settlements", - "values": [ - "Minorities", - "Racial discrimination", - "Right to education", - "Right to water and sanitation" - ] - }, - { - "text": "Civil society be actively involved in the further universal periodic review process of Canada", - "values": [ - "Civil society", - "UPR process" - ] - }, - { - "text": "Strengthen the general public awareness of, security services and the administration of justice regarding domestic violence, sexual violence, female genital mutilation, particularly through training and launching of awareness and information campaigns", - "values": [ - "Human rights education and training", - "Rights of the Child", - "Torture and other CID treatment", - "Women's rights" - ] - }, - { - "text": "Amend the relevant provisions of the Criminal Code in order to achieve the full prohibition of all forms of corporal punishment, including at home", - "values": [ - "Rights of the Child", - "Torture and other CID treatment" - ] - }, - { - "text": "Strengthen the national plan of action for women, including by drafting a specific law on violence against women, and further improve its laws to protect and promote women's rights ", - "values": [ - "Women's rights" - ] - }, - { - "text": "Continue efforts to establish an independent National Human Rights Institutions (NHRI) in accordance with the Paris Principles ", - "values": [ - "National Human Rights Institution" - ] - }, - { - "text": "Albania had extended a standing invitation to all the special procedures and two special rapporteurs had visited the country during the reporting period. The Government had pledged to continue working with special procedure mandate holders in implementing their recommendations. ", - "values": [ - "Special procedures" - ] - }, - { - "text": "Strengthen its national institutions for the promotion and protection of human rights ", - "values": [ - "General" - ] - }, - { - "text": "Take measures to expand access for persons with disabilities, in particular, with regard to transportation and physical access to educational institutions", - "values": [ - "Disabilities", - "Right to education" - ] - }, - { - "text": "Ensure that decent sanitary conditions are provided to detainees", - "values": [ - "Detention" - ] - }, - { - "text": "Guarantee the protection of the right to freedom of expression offline and online", - "values": [ - "Freedom of opinion and expression" - ] - }, - { - "text": "Ensure the implementation of already ratified international conventions in the spheres of women's and children's rights, including those related to combating violence against them", - "values": [ - "Rights of the Child", - "Women's rights" - ] - }, - { - "text": "Continue to fully implement the Equal Pay Act in order to ensure equal remuneration for men and women", - "values": [ - "Women's rights" - ] - }, - { - "text": "Collaborate with NGOs or other victim advocates to promote a victim-centred approach in the identification of trafficking victims", - "values": [ - "Trafficking" - ] - }, - { - "text": "Complete its review of the Code on Children and Adolescents to draw up legislation to prohibit corporal punishment and humiliating treatment of children and adolescents", - "values": [ - "Rights of the Child", - "Torture and other CID treatment" - ] - }, - { - "text": "Continue to put in place with international assistance effective programs aimed at reducing poverty, especially in the rural areas which host 80 percent of the whole population ", - "values": [ - "Poverty", - "Technical assistance and cooperation" - ] - }, - { - "text": "Take steps for further promotion and protection of the human rights in the country ", - "values": [ - "General" - ] - }, - { - "text": "Lift its reservation to article 21 (a) of the CRC", - "values": [ - "International instruments", - "Rights of the Child" - ] - }, - { - "text": "Continue to cooperate with the United Nations and the international community to implement measures to ensure the security and safety of its people", - "values": [ - "Public security", - "Technical assistance and cooperation" - ] - }, - { - "text": "Protect the independence of the judiciary, respect the opinions of the Venice Commission, the Organization for Security and Cooperation in Europe Office for Democratic Institutions and Human Rights and the European Commission, especially regarding justice reform, and ensure that the independence of the Constitutional Tribunal and of judicial institutions is maintained", - "values": [ - "International instruments", - "Justice" - ] - }, - { - "text": "Lift its reservations to the CEDAW", - "values": [ - "International instruments", - "Statelessness and the right to nationality", - "Women's rights" - ] - }, - { - "text": "Take further action to harmonize anti-discrimination laws to ensure equal protection on all grounds of discrimination in all spheres of life", - "values": [ - "Other" - ] - }, - { - "text": "In line with CEDAW recommendations, address the problem of maternal and infant mortality and make every effort to increase women's access to health services", - "values": [ - "Right to health", - "Treaty bodies", - "Women's rights" - ] - }, - { - "text": "Continue efforts to guarantee access to girls, boys, women and persons with disabilities to health services, education services, drinking water and sanitation", - "values": [ - "Disabilities", - "Right to education", - "Right to health", - "Right to water and sanitation", - "Rights of the Child", - "Women's rights" - ] - }, - { - "text": "Allocate more resources to social protection", - "values": [ - "ESC rights - general" - ] - }, - { - "text": "Issue a standing invitation to the special procedures of the Human Rights Council", - "values": [ - "Special procedures" - ] - }, - { - "text": "Intensify efforts to resolve persistent challenges with respect to the integration of foreigners, in particular in the areas of access to quality education, health services and housing, labour rights, processes of naturalization and family reunification.", - "values": [ - "Migrants" - ] - }, - { - "text": "Consider accession to ICRMW ", - "values": [ - "International instruments", - "Labour", - "Migrants" - ] - }, - { - "text": "Reply favorably to the request by the UN Special Rapporteur against torture for a visit and extend its full support to such a mission", - "values": [ - "Special procedures", - "Torture and other CID treatment" - ] - }, - { - "text": "Withdraw remaining reservations made to the Convention on the Elimination of All Forms of Discrimination against Women", - "values": [ - "International instruments", - "Women's rights" - ] - }, - { - "text": "Ratify as soon as possible the CED ", - "values": [ - "Enforced disappearances", - "International instruments" - ] - }, - { - "text": "Harmonize national legislation with international human rights standards", - "values": [ - "International instruments" - ] - }, - { - "text": "Consider abolishing the death penalty and, as a first step, establish a moratorium on executions", - "values": [ - "Death penalty" - ] - }, - { - "text": "Redouble its efforts to develop the Welfare Development Plan 2016-2023, with particular emphasis on the protection and promotion of the rights of older persons", - "values": [ - "Development" - ] - }, - { - "text": "Strengthen its efforts with regard to timely reporting to United Nations human rights treaty bodies.", - "values": [ - "Treaty bodies" - ] - }, - { - "text": "Fully cooperate with the United Nations and the international community to resume the political process as soon as possible", - "values": [ - "Technical assistance and cooperation" - ] - }, - { - "text": "Report on the implementation of the 2012-2016 Action Plan against Child Abuse, including sexual violence and child pornography, during the next interim UPR report ", - "values": [ - "Rights of the Child", - "UPR process" - ] - }, - { - "text": "Ensure that the new system of universal health care guarantees availability and access to services to boys and girls and contraception methods to adolescents, while allowing access to these services in general without discrimination on any grounds", - "values": [ - "Right to health", - "Rights of the Child" - ] - }, - { - "text": "Make all possible efforts to speed up the adoption process of the law to combat all forms of terrorism", - "values": [ - "Public security" - ] - }, - { - "text": "Strengthen measures to ensure that there are effective remedies for potential victims of discrimination", - "values": [ - "Other" - ] - }, - { - "text": "Ratify the OP-CAT as well as the Rome Statute of the International Criminal Court, and to incorporate their provisions into domestic law ", - "values": [ - "Detention", - "International instruments", - "Justice", - "Torture and other CID treatment" - ] - }, - { - "text": "Consider ratifying those international human rights instruments to which it is not yet a party, such as the International Convention on the Protection of the Rights of All Migrant Workers and Members of Their Families", - "values": [ - "International instruments", - "Labour", - "Migrants" - ] - }, - { - "text": "Accept as many requests as possible of the Special Procedures of the Human Rights Council to visit Uzbekistan ", - "values": [ - "Special procedures" - ] - }, - { - "text": "Continue efforts to combat poverty and provide basic services to vulnerable groups", - "values": [ - "Poverty" - ] - }, - { - "text": "Cease attacks and prevent further strikes on medical facilities", - "values": [ - "International humanitarian law" - ] - }, - { - "text": "Adopt as soon as possible the law protecting human rights defenders ", - "values": [ - "Human rights defenders" - ] - }, - { - "text": "Release publicly the findings of the Libyan Government's investigation into the Abu Salim prison killings of 1996 ", - "values": [ - "Detention", - "Extrajudicial executions", - "Human rights violations by state agents" - ] - }, - { - "text": "Respond positively to the requests of the Special Rapporteur on the promotion and protection of the right to freedom of opinion and expression for a visit ", - "values": [ - "Freedom of opinion and expression", - "Special procedures" - ] - }, - { - "text": "Continue to prioritize the enactment of a gender equality bill with a view to combating comprehensively all forms of discrimination against women", - "values": [ - "Women's rights" - ] - }, - { - "text": "Ratify ILO Convention No. 169.", - "values": [ - "Indigenous peoples", - "International instruments" - ] - }, - { - "text": "Continue to strengthen national policies for the promotion and protection of the rights of migrants, in particular to combat racial discrimination ", - "values": [ - "Migrants", - "Racial discrimination" - ] - }, - { - "text": "Integrate human rights in the school curricula ", - "values": [ - "Human rights education and training" - ] - }, - { - "text": "Ensure that the application of the legislation on military jurisdiction, as well as the conduct of the peace between the Government and FARC, be consistent with the goal of the fight against impunity ", - "values": [ - "International humanitarian law", - "Justice" - ] - }, - { - "text": "Develop a National Action Plan to prevent and criminalise acts of sexual and gender based violence, including Female Genital Mutilation and sexual offences against children", - "values": [ - "Rights of the Child", - "Torture and other CID treatment", - "Women's rights" - ] - }, - { - "text": "Continue its efforts to reduce the maternal and infant mortality rates", - "values": [ - "Right to health", - "Rights of the Child", - "Women's rights" - ] - }, - { - "text": "Avoid the retroactive application of the norms that could result from the execution of the Constitutional Court's judgment 168/13 and generate situations of statelessness for citizens holding the Dominican citizenship ", - "values": [ - "Statelessness and the right to nationality" - ] - }, - { - "text": "Ensure and protect the right of all people to freedom of opinion and expression ", - "values": [ - "Freedom of opinion and expression" - ] - }, - { - "text": "Endow the annual professional technical training plan with specific modules on human rights and continue providing resources for the programmes aimed at expanding and renovating prison infrastructure, with the objective of improving the conditions of the penitentiary system and combating prison overcrowding", - "values": [ - "Detention", - "Human rights education and training" - ] - }, - { - "text": "Implement changes that improve the independence of the judiciary, giving full consideration to the Venice Commission's concerns, particularly by establishing more objective and transparent processes for the appointment, discipline, and removal of judges, including during any applicable probation period ", - "values": [ - "Justice" - ] - }, - { - "text": "Put in place a system to support victims of sexual and gender-based violence", - "values": [ - "Women's rights" - ] - }, - { - "text": "Broaden the initiatives in favour of the independence of the State power, the freedom of expression and association", - "values": [ - "Freedom of association and peaceful assembly", - "Freedom of opinion and expression" - ] - }, - { - "text": "Take the necessary measures, namely in the legislative field, to ensure an independent, free and diversified press", - "values": [ - "Freedom of the press" - ] - }, - { - "text": "Cooperate with the special rapporteurs and other United Nations human rights mechanisms by granting them access to the country ", - "values": [ - "Special procedures" - ] - }, - { - "text": "Continue and enhance efforts to establish its National Human Rights Commission, with a view to completing and strengthening the country's legal and institutional framework related to human rights", - "values": [ - "National Human Rights Institution" - ] - }, - { - "text": "Take the necessary steps to ensure that all allegations of mistreatment are impartially investigated ", - "values": [ - "Torture and other CID treatment" - ] - }, - { - "text": "Guarantee protection from discrimination for persons with disabilities, particularly in the fields of employment, housing, transport and cultural and leisure activities ", - "values": [ - "Disabilities" - ] - }, - { - "text": "Pursue its efforts to achieve respect for human rights and fundamental freedoms of all the population, and adopt all necessary measures to guarantee the fight against impunity of perpetrators of crimes, acts of violence and all human rights violations", - "values": [ - "Impunity" - ] - }, - { - "text": "Study the possibility of ratifying the International Convention for the Protection of All Persons from Enforced Disappearance", - "values": [ - "Enforced disappearances", - "International instruments" - ] - }, - { - "text": "Abolish the application of death penalty for crimes prohibited in the Military Code, and to sign and ratify the Second Optional Protocol to the International Covenant on Civil and Political Rights", - "values": [ - "Death penalty", - "International instruments" - ] - }, - { - "text": "As recommended by CRC, to continue awareness-raising campaigns to combat and eradicate FGM and other traditional practices harmful to health and seek to bring about positive trends in traditional behaviour ", - "values": [ - "Human rights education and training", - "Rights of the Child", - "Torture and other CID treatment", - "Treaty bodies", - "Women's rights" - ] - }, - { - "text": "Undertake all necessary measures to immediately recognize citizenship to those who had it at the time of their birth ", - "values": [ - "CP rights - general" - ] - }, - { - "text": "Improve emphasis and transparency in tackling gender-based violence by introducing specific measures to encourage more reporting by the public and increased investigations, prosecutions, convictions and sentences to deter those who commit gender-based violence", - "values": [ - "Women's rights" - ] - }, - { - "text": "Extend its human rights education and awareness programme to target more public service officials", - "values": [ - "Human rights education and training" - ] - }, - { - "text": "Take measures to counteract serious violations and abuse of the human rights of women and girls, including early forced marriage and FGM", - "values": [ - "Rights of the Child", - "Torture and other CID treatment", - "Women's rights" - ] - }, - { - "text": "Extend an open and standing invitation to all the special procedures ", - "values": [ - "Special procedures" - ] - }, - { - "text": "Ratify the Optional Protocol to the International Covenant on Economic, Social and Cultural Rights and accept the competence of the Committee as regards the inquiry procedure and inter-State communications ", - "values": [ - "ESC rights - general", - "International instruments", - "Treaty bodies" - ] - }, - { - "text": "Intensify national efforts to prevent and eliminate all manifestations of anti-Semitism and take resolute measures to condemn hate speech, including against Roma", - "values": [ - "Minorities", - "Racial discrimination" - ] - }, - { - "text": "Provide the Office for Women's Development with the necessary resources to promote gender equality in all policy areas", - "values": [ - "Women's rights" - ] - }, - { - "text": "Continue strengthening the presence of women in various institutions", - "values": [ - "Women's rights" - ] - }, - { - "text": "Incorporate a definition of torture into its domestic law, in line with article 1 of CAT", - "values": [ - "International instruments", - "Torture and other CID treatment" - ] - }, - { - "text": "Consider appointing an Ombudsman with responsibility for investigating alleged violations of human rights as a short-term measure.", - "values": [ - "National Human Rights Institution" - ] - }, - { - "text": "Ensure investigation and prosecution of all soldiers, police officers, intelligence agents and any other official, including higher-level ranking officers of FARDC, implicated in killing, torture, rape and other human rights violations", - "values": [ - "Extrajudicial executions", - "Human rights violations by state agents", - "Rights of the Child", - "Torture and other CID treatment", - "Women's rights" - ] - }, - { - "text": "Formulate more precisely, in collaboration with international organizations, its needs in terms of technical assistance in identified priority areas ", - "values": [ - "Technical assistance and cooperation" - ] - }, - { - "text": "Create a national governmental independent mechanism in charge of the supervision of human rights policies", - "values": [ - "General" - ] - }, - { - "text": "Make every possible effort to guarantee universal access to healthcare through the National Health Policy", - "values": [ - "Right to health" - ] - }, - { - "text": "Further promote women's and children's rights taking into consideration the views of relevant treaty bodies of the United Nations system ", - "values": [ - "Rights of the Child", - "Treaty bodies", - "Women's rights" - ] - }, - { - "text": "Strengthen the justice system in order to avoid loss of faith and respect in the judicial system among citizens, including to raise the efficiency of birth registration system ", - "values": [ - "Justice", - "Rights of the Child", - "Statelessness and the right to nationality" - ] - }, - { - "text": "Amend provisions under the criminal code to comply with the country's international human rights obligations with regard to the right to freedom of expression", - "values": [ - "Freedom of opinion and expression", - "International instruments" - ] - }, - { - "text": "Ensure the full implementation of its national legislation, with a view to combating racism and xenophobia", - "values": [ - "Racial discrimination" - ] - }, - { - "text": "Establish a moratorium on executions with a view to abolishing the death penalty for all crimes", - "values": [ - "Death penalty" - ] - }, - { - "text": "Amend the legal definition of discrimination so that it includes a comprehensive list of banned reasons for discrimination", - "values": [ - "Other" - ] - }, - { - "text": "Ratify the Rome Statute of the International Criminal Court and the Optional Protocol to the International Covenant on Economic, Social and Cultural Rights, which will enter into force in coming weeks ", - "values": [ - "ESC rights - general", - "International instruments", - "Justice" - ] - }, - { - "text": "Strengthen measures to address the needs of indigenous peoples and Afro-Peruvians", - "values": [ - "Indigenous peoples", - "Minorities" - ] - }, - { - "text": "Continue to improve the living conditions and the treatment of detainees and address prison overcrowding", - "values": [ - "Detention" - ] - }, - { - "text": "Should take action to protect the principle of legal security by expanding the capacity in the prison system so that all inmates are guaranteed a treatment in accordance with the Standard Minimum Rules for the Treatment of Prisoners", - "values": [ - "Detention" - ] - }, - { - "text": "Consider ratifying the International Convention on the Rights of Migrant Workers and Members of Their Families (ICRMW) ", - "values": [ - "International instruments", - "Labour", - "Migrants" - ] - }, - { - "text": "Ensure prosecution in cases where xenophobic crimes against racial and religious minorities are being committed", - "values": [ - "Freedom of religion and belief", - "Minorities", - "Racial discrimination" - ] - }, - { - "text": "Pursue its efforts to improve its justice system and its commitment to fight against impunity", - "values": [ - "Impunity", - "Justice" - ] - }, - { - "text": "Strengthen its efforts for the promotion of equality between men and women, and take measures to increase the active participation of women in political and public life ", - "values": [ - "Women's rights" - ] - }, - { - "text": "Adopt a school feeding programme and integrate it with the local agricultural production ", - "values": [ - "Right to food" - ] - }, - { - "text": "Continue its efforts in facilitating the return and reintegration of refugees and internally displaced Serbs and in further resolving all related issues", - "values": [ - "Asylum-seekers - refugees", - "Internally displaced persons" - ] - }, - { - "text": "Study the introduction of a universal basic income for all citizens of Timor-Leste over 18, without preconditions, with payments made from the interest on investments accrued from oil royalties", - "values": [ - "Other" - ] - }, - { - "text": "While recognizing economic, social and cultural measures, strengthen efforts in ensuring equal access to health-care and social services", - "values": [ - "ESC rights - general", - "Right to health" - ] - }, - { - "text": "Expedite the creation of a national human rights institution in line with the Paris Principles", - "values": [ - "National Human Rights Institution" - ] - }, - { - "text": "Recommended that the Government and armed groups that are signatories to the cease fire concluded pursuant to the agreement of 7 September 2006 continue efforts to implement it.", - "values": [ - "International humanitarian law" - ] - }, - { - "text": "Cooperate with United Nations follow-up mechanisms, notably by issuing a standing invitation to all the special procedures, and accepting all their visits, in particular that of the Special Rapporteur on the situation of human rights in Belarus", - "values": [ - "Special procedures" - ] - }, - { - "text": "Establish policies and programmes aimed at combating racism, xenophobia and discrimination in the education system", - "values": [ - "Racial discrimination" - ] - }, - { - "text": "Continue and intensify programmes aimed at mitigating climate change negative impacts on food security and environment, and share the experience gained in this field with interested countries ", - "values": [ - "Environment", - "Right to food" - ] - }, - { - "text": "Consider the adoption of a comprehensive national human rights action plan by involving civil society", - "values": [ - "Civil society" - ] - }, - { - "text": "Bring the new Media Law in line with international standards, and particularly ensure that it does not undermine the work of journalists, freedom of expression and the right to information of the population", - "values": [ - "Freedom of opinion and expression", - "Freedom of the press" - ] - }, - { - "text": "Become party to the Optional Protocol of the Convention on the Rights of Persons with Disabilities", - "values": [ - "Disabilities", - "International instruments" - ] - }, - { - "text": "Step up efforts to improve literacy rates among its population, focusing on women and girls, notably in the rural area", - "values": [ - "Right to education", - "Rights of the Child", - "Women's rights" - ] - }, - { - "text": "Implement the Government's disability policy 2011-2016", - "values": [ - "Disabilities" - ] - }, - { - "text": "Provide for a child-sensitive, accessible complaint mechanism, ensuring a proper redress, rehabilitation and social reintegration for the child victims of abuse", - "values": [ - "Rights of the Child" - ] - }, - { - "text": "Amend the provision of the Civil Code stating that a child born out of wedlock has, in his or her non-proprietary relations with his or her father or mother, the same rights and obligations as a legitimate child so as to put an end to this form of discrimination in terms of property succession.", - "values": [ - "Rights of the Child" - ] - }, - { - "text": "Give attention and provide adequate follow-up to the recommendations made by the Special Rapporteur on the promotion and protection of human rights while countering terrorism following his visit to the country, in coordination with the involved ministries and civil society organizations", - "values": [ - "Civil society", - "Counter-terrorism", - "Special procedures" - ] - }, - { - "text": "Make sure that the periodic reports to the United Nations treaties bodies that are overdue are submitted without further delay", - "values": [ - "Treaty bodies" - ] - }, - { - "text": "Reform penal laws to define torture in accordance with article 1 of the Convention against Torture and declare its non-derogable nature", - "values": [ - "International instruments", - "Torture and other CID treatment" - ] - }, - { - "text": "Become party to the Rome Statute of the International Criminal Court ", - "values": [ - "International instruments", - "Justice" - ] - }, - { - "text": "Rapidly review the Family Code to abrogate all discriminatory provisions against women.", - "values": [ - "Women's rights" - ] - }, - { - "text": "Continue its cooperation with treaty bodies and submit its initial report on the implementation of ICCPR as well as the report on the application of the Optional Protocol to the Convention on the Rights of the Child on the sale of children, child prostitution and child pornography (OP-CRC-SC) ", - "values": [ - "CP rights - general", - "Rights of the Child", - "Trafficking", - "Treaty bodies" - ] - }, - { - "text": "Continue adopting programmes and policies that guarantee education for all, particularly in remote areas", - "values": [ - "Right to education" - ] - }, - { - "text": "Consider drafting a national action plan on addressing the question of racism and racial discrimination faced by persons of African descent ", - "values": [ - "Minorities", - "Racial discrimination" - ] - }, - { - "text": "Accelerate the reform of the judicial system in order to ensure good governance and equality of treatment of people from different social classes ", - "values": [ - "Justice" - ] - }, - { - "text": "Continue to put forward more efforts to eliminate domestic and gender-based violence and discrimination against women and ensure greater representation of women in all sectors of society by fully implementing the Law on Gender Equality", - "values": [ - "Women's rights" - ] - }, - { - "text": "Ensure necessary resources to facilitate the implementation of programs aimed at improving the situation of Roma people", - "values": [ - "Minorities" - ] - }, - { - "text": "Continue its efforts and search for international cooperation to reduce hunger and poverty", - "values": [ - "Poverty", - "Right to food", - "Technical assistance and cooperation" - ] - }, - { - "text": "Take necessary steps to revise its legislation on abortion and provide for clear exceptions, in line with international human rights law and standards, so as to ensure the right to abortion in cases of rape and incest, as well as cases entailing serious risks to the health of the mother or fatal foetal abnormality", - "values": [ - "International instruments", - "Women's rights" - ] - }, - { - "text": "Make food security one of the national priorities in order to combat malnutrition and ensure access of the whole population to adequate food", - "values": [ - "Right to food" - ] - }, - { - "text": "Strive to amend its Criminal Code to decriminalize same-sex activity between consenting adults in accordance with the recommendation of the Human Rights Committee.", - "values": [ - "Sexual Orientation and Gender Identity", - "Treaty bodies" - ] - }, - { - "text": "Further address challenges related to the position of women in the labour market and gender representation at all levels of society, in addressing discrimination against persons with an immigrant background ", - "values": [ - "Women's rights" - ] - }, - { - "text": "To facilitate women's access to credit and land", - "values": [ - "Right to land", - "Women's rights" - ] - }, - { - "text": "Take prompt and effective measures to safeguard the equal enjoyment of human rights by all, and to combat discrimination in all its forms", - "values": [ - "Other" - ] - }, - { - "text": "Continue to improve its domestic framework for the empowerment of women", - "values": [ - "Women's rights" - ] - }, - { - "text": "Consider the possibility of derogating the death penalty of its juridical regime", - "values": [ - "Death penalty" - ] - }, - { - "text": "Allow the Commission of Inquiry access and allow it to carry out its work freely", - "values": [ - "Other" - ] - }, - { - "text": "Make every effort to ensure that the graduation rate from the First Nations' students reaches the level of other Canadian students ", - "values": [ - "Indigenous peoples", - "Right to education" - ] - }, - { - "text": "Continue the policy of national reconciliation and consider, if necessary, elaboration of further measures with a view to fostering the process of reconciliation", - "values": [ - "Justice" - ] - }, - { - "text": "Continue to strengthen efforts to fight corruption", - "values": [ - "Corruption" - ] - }, - { - "text": "Continue with appropriate measures to eradicate discrimination and violence against women including domestic violence and to strengthen existing measures to thoroughly investigate crimes related to violence against women. ", - "values": [ - "Women's rights" - ] - }, - { - "text": "Implement the Rome Statute of the International Criminal Court including through adopting appropriate national legislation, so as to ensure full cooperation with the ICC and effective investigation and prosecution of genocide, crimes against humanity and war crimes before its national courts", - "values": [ - "International humanitarian law", - "International instruments", - "Justice" - ] - }, - { - "text": "Adopt measures to harmonize the legal order with the constitutional provisions on equality between men and women, including the revision of the Penal Code ", - "values": [ - "Women's rights" - ] - }, - { - "text": "Implement the recommendations of this universal periodic review session with the involvement of civil society and non-governmental organizations ", - "values": [ - "Civil society", - "UPR process" - ] - }, - { - "text": "Take actions to ensure the right to freedom of expression as established by the Constitution ", - "values": [ - "Freedom of opinion and expression" - ] - }, - { - "text": "Carry out a review of norms and practices relating to freedom of belief in order to harmonize domestic laws with international standards established under ICCPR", - "values": [ - "Freedom of religion and belief", - "International instruments" - ] - }, - { - "text": "Consolidate achievements in the promotion and protection of human rights", - "values": [ - "General" - ] - }, - { - "text": "Strengthen measures to protect women and children against harmful cultural practices such as moletry and stigmatization of twins", - "values": [ - "Rights of the Child", - "Torture and other CID treatment", - "Women's rights" - ] - }, - { - "text": "Continue the implementation of programmes aimed at achieving a national health-care system that responds adequately to the needs of the population ", - "values": [ - "Right to health" - ] - }, - { - "text": "Unify the supervision of Iraq's prisons and detention centers, which is currently under the jurisdiction of various authorities, under the Ministry of Justice so as to improve the condition of these facilities and the process of crime investigation and to guarantee transparency", - "values": [ - "Detention" - ] - }, - { - "text": "Provide maximum judicial transparency, for example by allowing officials of third countries to attend public trials at criminal and security courts", - "values": [ - "Justice" - ] - }, - { - "text": "Adopt additional measures within the Action Plan to fight against forced recruitment of children aimed at the prevention, protection and social reintegration of such minors ", - "values": [ - "International humanitarian law", - "Rights of the Child" - ] - }, - { - "text": "Combat violence against women", - "values": [ - "Women's rights" - ] - }, - { - "text": "Continue to implement its various programmes to reduce HIV prevalence and to improve access to quality health care by its people ", - "values": [ - "HIV - Aids" - ] - }, - { - "text": "In the framework of the review of asylum and immigration law, and in accordance with the recommendation made by Committee on the Elimination of Racial Discrimination (CERD), grant foreign workers a no less favourable treatment than that which is granted to nationals in respect to restrictions, requirements and working conditions", - "values": [ - "Migrants", - "Treaty bodies" - ] - }, - { - "text": "Take practical steps to address the serious problems of street children and sexual exploitation of children.", - "values": [ - "Rights of the Child" - ] - }, - { - "text": "Reinforce the implementation of alternative sentencing measures to reduce overcrowding in prisons for short- and medium-term detention", - "values": [ - "Detention" - ] - }, - { - "text": "Protect Christian and other minority rights and promote interfaith dialogue among religious groups in Indonesia", - "values": [ - "Freedom of religion and belief", - "Minorities" - ] - }, - { - "text": "Legally prohibit discrimination on the grounds of sex, sexual orientation and gender identity and punish acts of violence that affect lesbian, gay, bisexual, transsexual and intersex persons", - "values": [ - "Sexual Orientation and Gender Identity" - ] - }, - { - "text": "Devote more effort to addressing the outstanding human rights issues through the National Action Plan, which is now in place, and provide adequate financial and human resources for its effective implementation", - "values": [ - "General" - ] - }, - { - "text": "Take the steps necessary to further reduce court backlogs", - "values": [ - "Justice" - ] - }, - { - "text": "Continue to strengthen its policies and measures for the empowerment of women ", - "values": [ - "Women's rights" - ] - }, - { - "text": "Address the marginalization suffered by persons with disabilities in society, especially children and girls as regards employment, education, and the basic right of access to public buildings", - "values": [ - "Disabilities", - "Labour", - "Right to education", - "Rights of the Child", - "Women's rights" - ] - }, - { - "text": "Consider extending a standing invitation to all the special procedures mandate holders of the Human Rights Council ", - "values": [ - "Special procedures" - ] - }, - { - "text": "Continue the policy of providing education for all, and work towards strengthening and developing the education sector in the country", - "values": [ - "Right to education" - ] - }, - { - "text": "Sign and ratify those international human rights instruments to which it was not yet a party, particularly the Optional Protocol to the Convention on the Rights of the Child on the involvement of children in armed conflict, which had been previously recommended ", - "values": [ - "International humanitarian law", - "International instruments", - "Rights of the Child", - "UPR process" - ] - }, - { - "text": "Decriminalize same-sex relationships between consenting adults and actively address discrimination based on sexual orientation or gender identity", - "values": [ - "Sexual Orientation and Gender Identity" - ] - }, - { - "text": "Move expeditiously to establish a National Institution for Human Rights in accordance with the Paris Principles", - "values": [ - "National Human Rights Institution" - ] - }, - { - "text": "Take further steps to fight discrimination and make sure that perpetrators of racist and hate crimes be held duly responsible for their crimes", - "values": [ - "Racial discrimination" - ] - }, - { - "text": "Continue its policy to ensure equality in the area of education, and particularly targeting Roma children", - "values": [ - "Minorities", - "Right to education", - "Rights of the Child" - ] - }, - { - "text": "Continue its efforts to remove children from labour in small-scale gold mines ", - "values": [ - "Business and human rights", - "Labour", - "Rights of the Child" - ] - }, - { - "text": "Ensure the independence of the judiciary and enact a comprehensive review of legislation and practice aimed at guaranteeing the right to a fair trial for everyone, including opposition leaders and those critical of the Government", - "values": [ - "Freedom of association and peaceful assembly", - "Justice" - ] - }, - { - "text": "Abolish in law the death penalty and ratify the Second Optional Protocol to the International Covenant on Civil and Political Rights aimed at abolishing the death penalty", - "values": [ - "Death penalty", - "International instruments" - ] - }, - { - "text": "Promote the creation of pluralist, free and independent information bodies, ensure that the independence of the press is respected and protected and authorize peaceful demonstrations, as recommended previously", - "values": [ - "Freedom of association and peaceful assembly", - "Freedom of the press", - "UPR process" - ] - }, - { - "text": "Consider ratification of basic international instruments ", - "values": [ - "International instruments" - ] - }, - { - "text": "Continue its efforts in the area of eliminating all forms of discrimination in the society", - "values": [ - "Other" - ] - }, - { - "text": "Consider abolishing the death penalty or putting a moratorium on its use", - "values": [ - "Death penalty" - ] - }, - { - "text": "Improve the effectiveness of prevention, investigation and prosecution of all forms of attacks against human rights defenders, journalists, lawyers and judges in order to lower their incidence and to tackle impunity for these crimes", - "values": [ - "Freedom of the press", - "Human rights defenders", - "Impunity", - "Justice" - ] - }, - { - "text": "Continue to provide access to UN Special Procedure mandate-holders who are seeking to help Pakistan to identify and address human rights challenges", - "values": [ - "Special procedures" - ] - }, - { - "text": "Review its legislation in order to eliminate provisions that are discriminatory against women", - "values": [ - "Women's rights" - ] - }, - { - "text": "Improve access to justice for victims of intimate partner violence, including by enacting legislation that would recognize and criminalize marital rape, spousal battery and other forms of intimate partner violence", - "values": [ - "Women's rights" - ] - }, - { - "text": "Form a national human rights institution in compliance with the Paris Principles", - "values": [ - "National Human Rights Institution" - ] - }, - { - "text": "Ensure equal pay for work of equal value ", - "values": [ - "Women's rights" - ] - }, - { - "text": "The delegation expressed the commitment of Bulgaria to ratifying the Optional Protocol to the International Covenant on Economic, Social and Cultural Rights and the International Convention for the Protection of All Persons from Enforced Disappearance", - "values": [ - "ESC rights - general", - "Enforced disappearances", - "International instruments" - ] - }, - { - "text": "Continue to promote the protection of the rights of women and children", - "values": [ - "Rights of the Child", - "Women's rights" - ] - }, - { - "text": "Decriminalize consensual extramarital sexual relations", - "values": [ - "Other" - ] - }, - { - "text": "Guarantee and create an enabling environment to the activities of the journalists and human rights defenders and civil society", - "values": [ - "Civil society", - "Freedom of the press", - "Human rights defenders" - ] - }, - { - "text": "Establish a specific legal act for the crime of human trafficking ", - "values": [ - "Trafficking" - ] - }, - { - "text": "Enhance its efforts to implement the Plan of Action on Education for All (2003-2015)", - "values": [ - "Right to education" - ] - }, - { - "text": "Take steps to ensure that women and girls with German residency who were forced to marry abroad have a right to return", - "values": [ - "Rights of the Child", - "Women's rights" - ] - }, - { - "text": "Enable those representatives of special procedures who already requested visits, to conduct them.", - "values": [ - "Special procedures" - ] - }, - { - "text": "Take the necessary measures to eliminate the vulnerability of girls and women to sexual exploitation", - "values": [ - "Rights of the Child", - "Women's rights" - ] - }, - { - "text": "Continue its efforts to promote social and economic development and prioritize poverty reduction in its national development, to enable its people to enjoy human rights on a solid economic foundation", - "values": [ - "Development", - "Poverty" - ] - }, - { - "text": "Adopt a moratorium on the use of the death penalty with a view to abolishing capital punishment in federal and national legislations", - "values": [ - "Death penalty" - ] - }, - { - "text": "Continue its efforts in legal and judicial reforms, economic development and other areas towards promoting a harmonious society, democracy, the rule of law and human rights", - "values": [ - "Justice" - ] - }, - { - "text": "Honour its obligations under international humanitarian law with regard to the situation in the Occupied Palestinian Territories.", - "values": [ - "International humanitarian law" - ] - }, - { - "text": "Implement measures aimed at eliminating discrimination against the Sami people, with particular focus on ensuring access to basis services in education, employment and health, as well as access to land, and ensuring that their right to land and cultural life is preserved ", - "values": [ - "Indigenous peoples" - ] - }, - { - "text": "Take measures to increase transparency in public administration in order to instil trust among the general public hence contributing to stability in the Guinean society", - "values": [ - "General" - ] - }, - { - "text": "Lord Vaea concluded the opening statement by stating that Tonga remained committed to improving the level of its human rights obligations, and requested States to understand and appreciate the unique circumstances Tonga faces in advancing human rights protection.", - "values": [ - "General" - ] - }, - { - "text": "Further consider establishing an independent NHRI in accordance with the Paris Principles ", - "values": [ - "National Human Rights Institution" - ] - }, - { - "text": "Take further measures to ensure freedom of expression", - "values": [ - "Freedom of opinion and expression" - ] - }, - { - "text": "Take necessary measures to ensure transparency in the independent appointment of judicial and prosecutorial officers ", - "values": [ - "Justice" - ] - }, - { - "text": "Continue its efforts to increase awareness and repression of all forms of violence against women, particularly female genital mutilation", - "values": [ - "Rights of the Child", - "Torture and other CID treatment", - "Women's rights" - ] - }, - { - "text": "Adopt measures to prevent and eliminate all abuses of sexual violence against girls and women, ensuring that perpetrators are effectively held to account, including with full coordination of the Zimbabwe Gender Commission", - "values": [ - "Rights of the Child", - "Women's rights" - ] - }, - { - "text": "Take all measures necessary to increase State financing for education ", - "values": [ - "Right to education" - ] - }, - { - "text": "Close cooperation with civil society, NGOs and the media in order to prevent harassment and threats against journalists, media organizations, human rights defenders and NGOs in the future ", - "values": [ - "Civil society", - "Freedom of the press", - "Human rights defenders" - ] - }, - { - "text": "Improve the implementation of the law on granting asylum.", - "values": [ - "Asylum-seekers - refugees" - ] - }, - { - "text": "Take positive action to ensure protection of women against sexual violence and their access to legal mechanisms without discrimination", - "values": [ - "Women's rights" - ] - }, - { - "text": "Incorporate an explicit definition of the crime of sale of children into its Penal Code and draft Child Act ", - "values": [ - "Rights of the Child", - "Trafficking" - ] - }, - { - "text": "Establish an independent complaints mechanism for children in alternative care institutions ", - "values": [ - "Rights of the Child" - ] - }, - { - "text": "Strengthen its policy for the full guarantee of the rights of the child, with attention to implementing the Guidelines for the Alternative Care of Children, according to resolution 11-7 of the Human Rights Council and 64-142 of the General Assembly ", - "values": [ - "Rights of the Child" - ] - }, - { - "text": "Develop and publish a national action plan to tackle modern slavery, including ratification of the Protocol of 2014 to the Forced Labour Convention, 1930, of the International Labour Organization", - "values": [ - "International instruments", - "Labour" - ] - }, - { - "text": "Address the challenge of gender mainstreaming in a purposeful manner.", - "values": [ - "Women's rights" - ] - }, - { - "text": "Ensure that the interrogation of detainees in police custody are systematically monitored and recorded and that the Code of Criminal Procedure is harmonized with article 15 of the Convention against Torture and article 14, paragraph 3, of the International Covenant on Civil and Political Rights, and uphold the right of defence to have access to all relevant materials.", - "values": [ - "Detention", - "International instruments" - ] - }, - { - "text": "Issue a standing invitation to all mandate holders of the special procedures", - "values": [ - "Special procedures" - ] - }, - { - "text": "Continue to allow unfettered regular access of the ICRC to all detention facilities in accordance with the ICRC standard working procedures also beyond the trial period.", - "values": [ - "Detention" - ] - }, - { - "text": "Give positive consideration, as a matter of priority, to ratification of at least the International Covenant on Civil and Political Rights and the International Covenant on Economic, Social and Cultural Rights.", - "values": [ - "CP rights - general", - "ESC rights - general", - "International instruments" - ] - }, - { - "text": "Establish an independent institution in charge of human rights in accordance with the Paris Principles ", - "values": [ - "National Human Rights Institution" - ] - }, - { - "text": "Take stronger action, at the federal government level, to counter "death squads" ", - "values": [ - "Public security" - ] - }, - { - "text": "Take all necessary measures with a view to explicitly prohibiting all forms of corporal punishment of children in all settings, to combat violence and to enhance the promotion of children's rights, dignity and physical integrity", - "values": [ - "Rights of the Child", - "Torture and other CID treatment" - ] - }, - { - "text": "Introduce legislative measures to expand the prohibition of and protection against discrimination through explicit measures to protect individuals", - "values": [ - "Other" - ] - }, - { - "text": "Consider using the Recommended Principles and Guidelines on Human Rights and Human Trafficking developed by OHCHR as a reference guide in its policies and programs", - "values": [ - "Trafficking" - ] - }, - { - "text": "Take concrete measures to promote and protect the right to freedom of opinion and expression, in accordance with what is stated in article 19 of the Universal Declaration of Human Rights", - "values": [ - "Freedom of opinion and expression" - ] - }, - { - "text": "Strengthen the ability to prevent and combat the impunity that often surrounds sexual violence, first of all by prosecuting and bringing to justice those responsible for these crimes", - "values": [ - "Impunity", - "Rights of the Child", - "Women's rights" - ] - }, - { - "text": "Promote the guarantee of the human rights of children and elderly people affected by the internal conflict, including family reunification", - "values": [ - "Rights of the Child" - ] - }, - { - "text": "Put an end to impunity as regards the use of Swedish territory as a transit territory for flights by the Central Intelligence Agency of the United States transporting people subjected to violation of their human rights ", - "values": [ - "Counter-terrorism", - "Impunity" - ] - }, - { - "text": "Ensure for the Palestinians of the occupied territories access without hindrance to their natural resources, particularly water resources, and implement in this context the obligations stemming from international humanitarian law ", - "values": [ - "Freedom of movement", - "International humanitarian law", - "Right to water and sanitation" - ] - }, - { - "text": "Adopt policies that will allow the active involvement of minority communities through consultation and participation in decision-making processes relating to areas affecting them, particularly on development issues ", - "values": [ - "Development", - "Minorities" - ] - }, - { - "text": "Continue its actions against domestic violence, especially when the victims are children and women, and fight effectively against human trafficking ", - "values": [ - "Rights of the Child", - "Trafficking", - "Women's rights" - ] - }, - { - "text": "Uphold its obligations under international human rights and humanitarian law, and implement all relevant Human Rights Council resolutions including those under agenda item 7, not only in its own territory, but also in places under its control", - "values": [ - "International humanitarian law", - "International instruments" - ] - }, - { - "text": "Regarding the situation of LGBT community, adopt legislative and political measures to establish a specific framework of protection from discrimination for sexual preference. Additionally, put in place public awareness raising campaigns on the matter ", - "values": [ - "Human rights education and training", - "Sexual Orientation and Gender Identity" - ] - }, - { - "text": "Take the necessary measures to ensure a supply of water of good quality to all informal settlements including the provision of water tanks ", - "values": [ - "Right to water and sanitation" - ] - }, - { - "text": "Engage civil society, activists, non-governmental organizations and the media to seek common ground on the draft hate crimes bill", - "values": [ - "Civil society", - "Racial discrimination" - ] - }, - { - "text": "Do all its best in order to put an end to hatred speech based on xenophobia and try to do all it can in order to tackle this matter within the institutions of the entire country", - "values": [ - "Racial discrimination" - ] - }, - { - "text": "Take concrete measures to stop racism and hate speech by politicians as well as racism in the media", - "values": [ - "Racial discrimination" - ] - }, - { - "text": "Continue awareness-raising programmes about racial and ethnic diversity in schools, strengthening the monitoring of the implementation of anti-discriminatory policies, especially in remote areas ", - "values": [ - "Human rights education and training", - "Minorities", - "Racial discrimination" - ] - }, - { - "text": "Review its national legislation in order to ensure its full alignment with the obligations under the Rome Statute, including adoption of the provisions enabling the cooperation with the Court ", - "values": [ - "International instruments", - "Justice" - ] - }, - { - "text": "Seek to improve the enrolment rate of girls in primary and secondary schools", - "values": [ - "Right to education", - "Rights of the Child" - ] - }, - { - "text": "Ensure that any death in custody is investigated by an independent and impartial authority", - "values": [ - "Detention", - "Extrajudicial executions" - ] - }, - { - "text": "Study the possibility to ratify the International Convention on the Protection of the Rights of All Migrant Workers and Members of Their Families ", - "values": [ - "International instruments", - "Labour", - "Migrants" - ] - }, - { - "text": "Speed up the process of the ratification of the OP-CAT ", - "values": [ - "Detention", - "International instruments", - "Torture and other CID treatment" - ] - }, - { - "text": "Continue with its efforts to cooperate fully with the United Nations Special Rapporteur on the situation of human rights in Myanmar", - "values": [ - "Special procedures" - ] - }, - { - "text": "Intensify its efforts to strengthen the legal mechanism in order to improve the access of people to the justice system", - "values": [ - "Justice" - ] - }, - { - "text": "Ratify and align its national legislation with the Rome Statute", - "values": [ - "International instruments", - "Justice" - ] - }, - { - "text": "Continue to improve national laws and institutions, in particular in the field of protecting the human rights of women and children ", - "values": [ - "Rights of the Child", - "Women's rights" - ] - }, - { - "text": "Repeal of articles in the penal code which allow the imprisonment of journalists for their writing and amend the press provisions of the penal code so that they explicitly state that journalists not be imprisoned or otherwise punished for the sole exercise of their right to free expression", - "values": [ - "Freedom of opinion and expression", - "Freedom of the press" - ] - }, - { - "text": "Intensify efforts towards the implementation of some of the recommendations of the last review, which are already in the process of being implemented", - "values": [ - "UPR process" - ] - }, - { - "text": "Develop proactive strategies for economic development and social cultural transformation, with priority given to addressing the problems of discrimination against women, gender-based violence, the HIV/AIDS epidemic, child labour, corporal punishment of children, and sorcery-related killings", - "values": [ - "HIV - Aids", - "Labour", - "Public security", - "Rights of the Child", - "Torture and other CID treatment", - "Women's rights" - ] - }, - { - "text": "Further implement laws to effectively guarantee equality between men and women ", - "values": [ - "Women's rights" - ] - }, - { - "text": "Take all necessary measures for the strict separation of detainees according to their age, sex and status, with the aim of improving prison conditions, as follow-up to paragraphs 108.34, 108.36, 108.37 and 108.38 of the recommendations from the second cycle", - "values": [ - "Detention" - ] - }, - { - "text": "Promote incorporating into the national legislation all the rights protected under the international conventions and covenants, in particular economic, social and cultural rights", - "values": [ - "ESC rights - general", - "International instruments" - ] - }, - { - "text": "Continue to develop the health system so as to strengthen the enjoyment of the right to health in all segments of society ", - "values": [ - "Right to health" - ] - }, - { - "text": "Harmonize national law with already ratified international conventions", - "values": [ - "International instruments" - ] - }, - { - "text": "Enact a law for the protection of human rights defenders", - "values": [ - "Human rights defenders" - ] - }, - { - "text": "Fully implement international commitments stemming from United Nations human rights conventions such as on the prohibition of torture, inhuman or degrading treatment and on the rights to liberty of movement, freedom of expression, freedom of assembly and association, to which the Netherlands is a party, including with respect to the rights of foreigners, in particular senior government officials present in its territory", - "values": [ - "Freedom of association and peaceful assembly", - "Freedom of movement", - "Freedom of opinion and expression", - "International instruments", - "Migrants", - "Torture and other CID treatment" - ] - }, - { - "text": "Continue evaluating its national capacities so as to be in line with the international human rights treaties it has acceded to or ratified", - "values": [ - "International instruments" - ] - }, - { - "text": "End collective punishment in the Occupied Palestinian Territories, in particular in the Gaza Strip", - "values": [ - "Torture and other CID treatment" - ] - }, - { - "text": "Adopt measures and programmes aimed at eliminating discrimination against women", - "values": [ - "Women's rights" - ] - }, - { - "text": "Address the underlying structural factors regarding discrimination against indigenous peoples and Afro-Bolivians and set and monitor the implementation of concrete equality targets", - "values": [ - "Indigenous peoples", - "Minorities", - "Racial discrimination" - ] - }, - { - "text": "Amend its domestic legislation relating to the rights of women, children and persons with disabilities, in line with its international obligations ", - "values": [ - "Disabilities", - "Rights of the Child", - "Women's rights" - ] - }, - { - "text": "Strengthen the Office of the Special Prosecutor for Human Rights, and ensure that the Special Prosecutor receives proper protection against violence and threats thereof", - "values": [ - "National Human Rights Institution" - ] - }, - { - "text": "Cooperate with the United Nations human rights mechanisms, particularly the special procedures mandate holders", - "values": [ - "Special procedures" - ] - }, - { - "text": "Strengthen efforts to investigate allegations of serious violations of international humanitarian law and the international human rights during the conflict and to hold those responsible to account", - "values": [ - "International humanitarian law", - "International instruments", - "Justice" - ] - }, - { - "text": "Consider the establishment of a national human rights institution in line with the Paris Principles", - "values": [ - "National Human Rights Institution" - ] - }, - { - "text": "Government is committed to establishing a code of ethics for investors.", - "values": [ - "Business and human rights" - ] - }, - { - "text": "Make available the human rights records of all units receiving US's security assistance", - "values": [ - "Technical assistance and cooperation" - ] - }, - { - "text": "Intensify efforts to develop a human rights education system and to strengthen the culture of human rights ", - "values": [ - "Human rights education and training" - ] - }, - { - "text": "Continue its efforts in the eradication of poverty", - "values": [ - "Poverty" - ] - }, - { - "text": "Take further steps to improve access to housing, education and employment for Roma communities ", - "values": [ - "Development", - "Minorities", - "Right to education", - "Right to housing" - ] - }, - { - "text": "Consider implementing the United Nations Rules for the Treatment of Women Prisoners and Non-custodial Measures for Women Offenders or the "Bangkok Rules" to provide them with appropriate treatment ", - "values": [ - "Detention", - "Women's rights" - ] - }, - { - "text": "Empower women's participation in decision-making institutions", - "values": [ - "Women's rights" - ] - }, - { - "text": "Provide the National Human Rights Commission with the requisite support to ensure its effectiveness", - "values": [ - "National Human Rights Institution" - ] - }, - { - "text": "Further invest in the medical and educational fields to promote comprehensive economic and social development", - "values": [ - "Development", - "Right to education", - "Right to health" - ] - }, - { - "text": "Revise the 2009 Anti-Terrorism Proclamation and the 2008 Mass Media Proclamation, bringing them into line with international human rights standards ", - "values": [ - "Counter-terrorism", - "Freedom of the press", - "International instruments" - ] - }, - { - "text": "Work closely with the OHCHR and the Council for considering eventual participation to the core international instruments on human rights", - "values": [ - "International instruments", - "Technical assistance and cooperation" - ] - }, - { - "text": "Adopt comprehensive national legislation in order to facilitate access to information, foster media pluralism and protect independent media", - "values": [ - "Freedom of the press" - ] - }, - { - "text": "Place a moratorium on the death penalty with a view to eradicating it", - "values": [ - "Death penalty" - ] - }, - { - "text": "Improve sexual and reproductive health services for women and girls, by enhancing access to contraceptives and promoting education on sexual and reproductive health, in order to prevent early pregnancies and sexually transmitted infections and diseases, especially HIV/AIDS", - "values": [ - "HIV - Aids", - "Right to health", - "Rights of the Child", - "Women's rights" - ] - }, - { - "text": "Reduce illiteracy rates, in particular among women.", - "values": [ - "Right to education", - "Women's rights" - ] - }, - { - "text": "Provide State officials and judiciary and law enforcement officials with human rights training specifically focusing on the protection of human rights, in particular those of vulnerable groups, and on the practical implications of the 2005 Law on freedom of public expression..", - "values": [ - "Human rights education and training" - ] - }, - { - "text": "Take measures to ensure that the children of undocumented migrants are provided with access to medical services", - "values": [ - "Migrants", - "Right to health", - "Rights of the Child" - ] - }, - { - "text": "Proceed swiftly with the ratification of the OP- CRC-SC and OP-CAT ", - "values": [ - "Detention", - "International instruments", - "Rights of the Child", - "Torture and other CID treatment" - ] - }, - { - "text": "Take measures to put an end to discrimination against migrants or people from migrant backgrounds as well as asylum seekers and refugees, especially with regard to access to public services, housing, employment and health services ", - "values": [ - "Asylum-seekers - refugees", - "Migrants", - "Racial discrimination" - ] - }, - { - "text": "Adopt a national action plan on Security Council resolution 1325 (2000) on women and peace and security ", - "values": [ - "Women's rights" - ] - }, - { - "text": "Stop the discriminatory approach that requires only foreign workers in various sectors to mandatorily undergo HIV/AIDS testing, which is not required for Korean nationals", - "values": [ - "HIV - Aids", - "Migrants" - ] - }, - { - "text": "Continue its efforts to establish a legal framework to protect human rights by ratifying core instruments, especially the Convention on the Rights of Persons with Disabilities, signed by Bhutan in 2010 ", - "values": [ - "Disabilities", - "International instruments" - ] - }, - { - "text": "Broaden the mandate and powers of the institutions tasked with guaranteeing the principle of equality and non-discrimination", - "values": [ - "Other" - ] - }, - { - "text": "Effectively promote and protect human rights. ", - "values": [ - "General" - ] - }, - { - "text": "Further promote the advancement of gender equality, including the development of a comprehensive national gender action plan", - "values": [ - "Women's rights" - ] - }, - { - "text": "Ratify CED, OP-CRPD ", - "values": [ - "Disabilities", - "Enforced disappearances", - "International instruments" - ] - }, - { - "text": "Implement a national policy for gender equality and take steps to ensure greater representation of women in decision-making ", - "values": [ - "Women's rights" - ] - }, - { - "text": "Immediately end all public executions", - "values": [ - "Death penalty" - ] - }, - { - "text": "Reconsider the decision to expel judges, prosecutors and other foreign professionals who are assisting in the judicial reform of Timor-Leste", - "values": [ - "Justice" - ] - }, - { - "text": "Consider ratifying the International Labour Organization Convention No. 189 ", - "values": [ - "International instruments", - "Labour" - ] - }, - { - "text": "Ensure the full and effective implementation of the Domestic Violence (Protection Order) Act.", - "values": [ - "Rights of the Child", - "Women's rights" - ] - }, - { - "text": "Ratify the OP-CAT and establish its national preventive mechanism accordingly ", - "values": [ - "Detention", - "International instruments", - "Torture and other CID treatment" - ] - }, - { - "text": "Make further advances through the accession to ICCPR, ICESCR, OP-CAT and OP-CEDAW", - "values": [ - "CP rights - general", - "Detention", - "ESC rights - general", - "International instruments", - "Torture and other CID treatment", - "Women's rights" - ] - }, - { - "text": "Strengthen its migration laws to ensure protection of all migrants and their families against all forms of discrimination and adopt comprehensive public programmes with adequate budgetary resources for their effective implementation", - "values": [ - "Migrants" - ] - }, - { - "text": "Devise specific programs aimed at countering growing Islamophobic and xenophobic trends in society ", - "values": [ - "Racial discrimination" - ] - }, - { - "text": "Ensure full implementation of its obligations under the Optional Protocol against Torture by equipping its National Preventive Mechanism (NPM) with sufficient resources to fulfil its role ", - "values": [ - "Detention", - "International instruments", - "Torture and other CID treatment" - ] - }, - { - "text": "Step up its efforts, in complying with its international human rights obligations, and end discrimination of ethnic minorities to ensure they are able to carry out peaceful activities without harassment, threat of detention or imprisonment", - "values": [ - "International instruments", - "Minorities", - "Racial discrimination" - ] - }, - { - "text": "Continue its efforts to combat various types of violence against women, including domestic violence and sexual harassment", - "values": [ - "Women's rights" - ] - }, - { - "text": "Ensure the minimum age of marriage for children disallows early marriage", - "values": [ - "Rights of the Child" - ] - }, - { - "text": "Further emphasize the prevention of excessive use of force through security forces, especially in the handling of protests and demonstrations, including adequate training of security forces", - "values": [ - "Freedom of association and peaceful assembly", - "Human rights violations by state agents" - ] - }, - { - "text": "Germany has committed to achieving an ODA ratio of 0.51 per cent by 2010 and 0.7 per cent by 2015.", - "values": [ - "Development" - ] - }, - { - "text": "Consider increasing the resources allocated to the prison system, as suggested by CAT ", - "values": [ - "Detention", - "Treaty bodies" - ] - }, - { - "text": "Progressively realize economic and social rights and fulfil its obligation to dedicate maximum available resources to addressing the basic economic and social needs of its population ", - "values": [ - "ESC rights - general" - ] - }, - { - "text": "Consider ratifying the following international instruments: the International Covenant on Economic, Social and Cultural Rights, the International Covenant on Civil and Political Rights and the International Convention on the Protection of the Rights of All Migrant Workers and Members of Their Families", - "values": [ - "CP rights - general", - "ESC rights - general", - "International instruments", - "Labour", - "Migrants" - ] - }, - { - "text": "Positively consider acceding to the Convention on the Status of Stateless Persons and the Convention on the Reduction of Statelessness", - "values": [ - "International instruments", - "Statelessness and the right to nationality" - ] - }, - { - "text": "Take measures towards the ratification of the Optional Protocol to the Convention against Torture and Other Cruel, Inhuman or Degrading Treatment or Punishment", - "values": [ - "Detention", - "International instruments", - "Torture and other CID treatment" - ] - }, - { - "text": "Eliminate all laws and practices that discriminate against women, and promote equal treatment of girls and boys, including through awareness programmes", - "values": [ - "Human rights education and training", - "Rights of the Child", - "Women's rights" - ] - }, - { - "text": "Eliminate all forms of discrimination against persons of African descent", - "values": [ - "Minorities", - "Racial discrimination" - ] - }, - { - "text": "Continue to dedicate resources to promote the right to education and the rights of children.", - "values": [ - "Right to education", - "Rights of the Child" - ] - }, - { - "text": "Take specific steps to stop the spread of discriminatory statements, prejudice and stereotypes against national minorities, refugees and asylum seekers in the mass media and on social networks", - "values": [ - "Asylum-seekers - refugees", - "Minorities", - "Racial discrimination" - ] - }, - { - "text": "Open further its engagement with the international community in order to strengthen its capacity to ensure the enjoyment of economic, social and cultural rights by its people ", - "values": [ - "ESC rights - general" - ] - }, - { - "text": "Seek international assistance to sustain its efforts aimed at the promotion and protection of human rights, in particular economic, social and cultural rights, in line with its national priorities ", - "values": [ - "ESC rights - general", - "Technical assistance and cooperation" - ] - }, - { - "text": "Accept the establishment of an international, credible and independent inquiry mechanism to shed light on the violations since the 2009 presidential elections", - "values": [ - "Elections" - ] - }, - { - "text": "Consider the possibility of mainstreaming the rights of persons with disabilities in the reconstruction plans and programmes", - "values": [ - "Disabilities" - ] - }, - { - "text": "Improve its efforts on educational reform towards a comprehensive education policy with a particular focus on vulnerable groups, including children, person with disabilities and minorities ", - "values": [ - "Disabilities", - "Minorities", - "Right to education", - "Rights of the Child" - ] - }, - { - "text": "Further progress on measures to prevent and punish all forms of racial discrimination", - "values": [ - "Racial discrimination" - ] - }, - { - "text": "Accede to international human rights instruments to which it is not yet a party", - "values": [ - "International instruments" - ] - }, - { - "text": "Legislate a specific definition of torture as recommended by the Committee against Torture in June 2017", - "values": [ - "Torture and other CID treatment", - "Treaty bodies" - ] - }, - { - "text": "Continue to work towards closing the gender gaps and ensure gender parity in education", - "values": [ - "Women's rights" - ] - }, - { - "text": "Take steps toward the abolition of the death penalty", - "values": [ - "Death penalty" - ] - }, - { - "text": "Ensure the full implementation of all rights enshrined in the Constitution and in the existing legislation ", - "values": [ - "General" - ] - }, - { - "text": "Meet its official development assistance target of 0.7 per cent of its gross national product", - "values": [ - "Development" - ] - }, - { - "text": "Define discrimination in national legislation in line with the ICERD, and prohibit all forms of direct and indirect discrimination, including on the basis of age, gender, religion, sexual orientation, ethnicity, or nationality", - "values": [ - "Freedom of religion and belief", - "International instruments", - "Racial discrimination", - "Sexual Orientation and Gender Identity", - "Women's rights" - ] - }, - { - "text": "Recommended that federal legislation be strived for to provide protection against all forms of discrimination, including on grounds of sexual orientation and gender identity. ", - "values": [ - "Sexual Orientation and Gender Identity" - ] - }, - { - "text": "Extend a standing invitation for special procedures mandate holders", - "values": [ - "Special procedures" - ] - }, - { - "text": "Take all necessary steps to prevent police violence and introduce programmes in police forces and enforcement authorities aimed at raising awareness against torture and other cruel, inhuman or degrading treatment", - "values": [ - "Human rights education and training", - "Human rights violations by state agents", - "Torture and other CID treatment" - ] - }, - { - "text": "Establish trainings for police officers on children's rights, to ensure that these act appropriately towards child victims or delinquents", - "values": [ - "Human rights education and training", - "Rights of the Child" - ] - }, - { - "text": "Avoid requiring re-registration of civil society organizations", - "values": [ - "Civil society" - ] - }, - { - "text": "Adopt practical measures to counteract any form of child labour and human trafficking that stunts and deeply wounds the innate dignity of children ", - "values": [ - "Labour", - "Rights of the Child", - "Trafficking" - ] - }, - { - "text": "Take action to stop attacks on human rights defenders and make sure that perpetrators are held accountable for crimes committed, in accordance with international standards", - "values": [ - "Human rights defenders" - ] - }, - { - "text": "Review existing provisions with regard to detention without trial and adopt new provisions to inform those detained of their right to counsel and guarantee their access to Counsel immediately upon arrest ", - "values": [ - "Detention", - "Justice" - ] - }, - { - "text": "Comply with the recommendations of the Human Rights Committee with regard to the adoption of the necessary policy and legal framework to combat domestic violence effectively.", - "values": [ - "Rights of the Child", - "Treaty bodies", - "Women's rights" - ] - }, - { - "text": "Ensure the equal enjoyment of economic, social and cultural rights by all individuals and groups under its jurisdiction and adopt a national plan of action to combat the rise in homelessness ", - "values": [ - "ESC rights - general", - "Right to housing" - ] - }, - { - "text": "Continue implementing and strengthening, if necessary, measures against all expressions of prejudice and discrimination such as hate speech, extremist movements and violent extremism, paying particular attention to expressions of racism, xenophobia and other hate speech against a particular religion or ethnicity", - "values": [ - "Freedom of religion and belief", - "Racial discrimination" - ] - }, - { - "text": "Take further measures to improve the situation of persons with disabilities in terms of participation and accessibility", - "values": [ - "Disabilities" - ] - }, - { - "text": "Seek the help of the international community to counter all challenges, mentioned in its national report and especially poverty alleviation and improvement of the living standards of its people and all environmental constraints that challenge human rights and development efforts", - "values": [ - "Technical assistance and cooperation" - ] - }, - { - "text": "Continue and strengthen, when necessary, the implementation of policies and programmes focused on the inclusion of its Roma community", - "values": [ - "Minorities" - ] - }, - { - "text": "Consider taking measures aimed at affecting a de facto and de jure moratorium on the death penalty", - "values": [ - "Death penalty" - ] - }, - { - "text": "Review the Criminal Code with special attention to discrimination against women.", - "values": [ - "Women's rights" - ] - }, - { - "text": "Intensify its efforts of awareness-raising and education with regard to the respect of rights of women, in particular in areas where discriminatory practices prevail ", - "values": [ - "Human rights education and training", - "Women's rights" - ] - }, - { - "text": "Improve the availability of sexual and reproductive health services, including family planning", - "values": [ - "Right to health", - "Women's rights" - ] - }, - { - "text": "Seek to enhance international cooperation to address the lack of human capacity and financial resources in the peace process and post conflict reconstruction ", - "values": [ - "Other" - ] - }, - { - "text": "Incorporate the crime of torture into Chilean legislation, in conformity with the Convention against Torture and Other Cruel, Inhuman or Degrading Treatment ", - "values": [ - "International instruments", - "Torture and other CID treatment" - ] - }, - { - "text": "Withdraw its reservation on article 4 (a) of ICERD, as this reservation undermines one of the key objectives of this Convention ", - "values": [ - "International instruments", - "Racial discrimination" - ] - }, - { - "text": "Adopt measures to ensure protection of journalists and human rights defenders against harassment, attacks and arbitrary detention.", - "values": [ - "Freedom of the press", - "Human rights defenders" - ] - }, - { - "text": "Undertake a comprehensive reform to harmonize its domestic legal system with its Constitution and the international instruments to which it is party", - "values": [ - "International instruments" - ] - }, - { - "text": "Enact legislation that specifically addresses discrimination against lesbian, gay, bisexual, transgender and intersex individuals", - "values": [ - "Sexual Orientation and Gender Identity" - ] - }, - { - "text": "Strengthen measures to reduce gender inequality", - "values": [ - "Women's rights" - ] - }, - { - "text": "Grant citizenship to all children born in Denmark that otherwise would be stateless and thus more vulnerable to exploitation", - "values": [ - "Rights of the Child", - "Statelessness and the right to nationality" - ] - }, - { - "text": "Expedite the process of acceding to the UNESCO Convention against Discrimination in Education ", - "values": [ - "International instruments", - "Right to education" - ] - }, - { - "text": "Request support from the international community for its education policy, in particular the One Laptop Per Child programme, and for consolidating protection of the most vulnerable social groups, in particular the implementation of the national programme for childhood ", - "values": [ - "Right to education", - "Technical assistance and cooperation" - ] - }, - { - "text": "Strengthen action to prevent and combat ill treatment and abuse, including the sexual abuse of children, and take into account the recommendations of the Committee on the Rights of the Child", - "values": [ - "Rights of the Child", - "Treaty bodies" - ] - }, - { - "text": "Abolish the continued use of death penalty, stoning and retribution for murder", - "values": [ - "Death penalty", - "Torture and other CID treatment" - ] - }, - { - "text": "Take the necessary measures to ensure the independence of the judiciary and create specialized mixed chambers in support of judgements of crimes under international law", - "values": [ - "Justice" - ] - }, - { - "text": "Continue to take the vital steps to grant citizenship to children of Bahraini mothers in the same fashion as children of Bahraini fathers as CEDAW and the CRC have pointed out ", - "values": [ - "International instruments", - "Women's rights" - ] - }, - { - "text": "Establish a strong and independent national human rights institution, in conformity with the Paris Principles", - "values": [ - "National Human Rights Institution" - ] - }, - { - "text": "Promote leadership of women by enacting the pending gender equality bill and ensuring its early implementation", - "values": [ - "Women's rights" - ] - }, - { - "text": "Continue with the efforts underway to guarantee school enrolment for girls ", - "values": [ - "Right to education", - "Rights of the Child", - "Women's rights" - ] - }, - { - "text": "Improve effective access to education for children with disabilities ", - "values": [ - "Disabilities", - "Right to education", - "Rights of the Child" - ] - }, - { - "text": "Frame a new Constitution and undertake a democratic, inclusive and progressive State restructuring ", - "values": [ - "Other" - ] - }, - { - "text": "Carry on the efforts to combat all forms of discrimination and violence against women", - "values": [ - "Women's rights" - ] - }, - { - "text": "Sign and ratify the Optional Protocol to the Convention on the Elimination of All Forms of Discrimination against Women ", - "values": [ - "International instruments", - "Women's rights" - ] - }, - { - "text": "Ensure that madrasas, within the territory of Pakistan, operate in line with the human rights obligations of Pakistan", - "values": [ - "Right to education" - ] - }, - { - "text": "Continue incrementing the amount of health establishments", - "values": [ - "Right to health" - ] - }, - { - "text": "Continue to combat violence against women", - "values": [ - "Women's rights" - ] - }, - { - "text": "Seek assistance to increase the number and scope of its magistrate courts to address the many legal problems it faces", - "values": [ - "Justice" - ] - }, - { - "text": "Fulfil obligations and commitments under international law to enhance efforts to combat hate crimes, especially those targeting refugees, migrants and based on religious background", - "values": [ - "Asylum-seekers - refugees", - "Freedom of religion and belief", - "Migrants", - "Racial discrimination" - ] - }, - { - "text": "Ratify the Second Optional Protocol to the Covenant on Civil and Political Rights ", - "values": [ - "Death penalty", - "International instruments" - ] - }, - { - "text": "Put in place appropriate mechanisms to improve the situation of the Roma minority with respect to access to education, employment and health care ", - "values": [ - "Minorities" - ] - }, - { - "text": "Improve transparency and inclusiveness of election processes fostering the culture of political dialogue and adopting concrete measures to prevent cases of election violence", - "values": [ - "Elections" - ] - }, - { - "text": "Continue taking action to reduce maternal and infant mortality", - "values": [ - "Right to health", - "Rights of the Child", - "Women's rights" - ] - }, - { - "text": "Prepare progressively the national charter for the environment in order to coordinate the efforts of all sectors in this area, including civil society, and to frame the work of the existing Environment Public Authority ", - "values": [ - "Environment" - ] - }, - { - "text": "Ratify the four fundamental conventions of ILO concerning freedom of association and prohibition of forced or compulsory labour", - "values": [ - "Freedom of association and peaceful assembly", - "International instruments", - "Labour" - ] - }, - { - "text": "In line with the recommendations issued by the Committee against Torture and the Committee on the Elimination of Discrimination against Women, consider ratifying the First Optional Protocol to ICCPR and the Second Optional Protocol to ICCPR aiming at the abolition of the death penalty, the International Convention for the Protection of All Persons from Enforced Disappearance, the Optional Protocol to CEDAW as well as the Optional Protocol to CAT, establishing national preventive mechanisms ", - "values": [ - "International instruments", - "Treaty bodies" - ] - }, - { - "text": "Take further steps to protect freedom of expression and opinion, in line with its obligations under the International Covenant on Civil and Political Rights", - "values": [ - "Freedom of opinion and expression", - "International instruments" - ] - }, - { - "text": "Expedite the reform of the Criminal Code in order to include a definition of torture in accordance with the Convention Against Torture", - "values": [ - "International instruments", - "Torture and other CID treatment" - ] - }, - { - "text": "Create a mechanism to give visibility and value the work of human rights defenders and, develop and implement measures to protect human rights defenders should they be exposed to any risk or threat associated with the free exercise of their activities", - "values": [ - "Human rights defenders" - ] - }, - { - "text": "Confirm the commitment by the Ministry of Education to implement the National Action Plan for Inclusive Education", - "values": [ - "Right to education" - ] - }, - { - "text": "Address urgently the constraints affecting the functioning of the Conditional Cash Transfer programme, including, if appropriate, through technical and/or financial assistance from regional and international partners", - "values": [ - "Technical assistance and cooperation" - ] - }, - { - "text": "Commute death sentences and establish as soon as possible a moratorium on executions with a view to the definitive abolition of the death penalty ", - "values": [ - "Death penalty" - ] - }, - { - "text": "Pursue appropriate policies with a view to strengthening efficiency, impartiality, and independence of its judiciary ", - "values": [ - "Justice" - ] - }, - { - "text": "Strengthen the means at the disposal of the justice system and make it more accessible to indigent persons ", - "values": [ - "Justice" - ] - }, - { - "text": "Expedite ratification of the Convention against Torture", - "values": [ - "International instruments", - "Torture and other CID treatment" - ] - }, - { - "text": "Strengthen the measures aimed at alleviating extreme poverty", - "values": [ - "Poverty" - ] - }, - { - "text": "Support the work of human rights defenders and other representatives of civil society, acknowledge their contribution to the advancement of human rights in the country, thoroughly and promptly investigate threats, attacks, harassment and intimidation against human rights defenders or independent journalists, and bring their perpetrators to justice in fair trials and ensure effective remedies to the victims", - "values": [ - "Civil society", - "Freedom of the press", - "Human rights defenders" - ] - }, - { - "text": "Decriminalize the irregular crossing of borders and strengthen mechanisms for detecting, identifying and assisting vulnerable migrants on the borders, including minors, possible asylum seekers and victims of human trafficking", - "values": [ - "Asylum-seekers - refugees", - "Migrants", - "Rights of the Child", - "Trafficking" - ] - }, - { - "text": "Invite without delay the Special Rapporteur on freedom of religion or belief to visit the country, and issue a standing invitation to all special procedures mandate holders ", - "values": [ - "Freedom of religion and belief", - "Special procedures" - ] - }, - { - "text": "Adopt the draft legislation on the protection of the rights of persons with disabilities and deploy the necessary measures for its implementation ", - "values": [ - "Disabilities" - ] - }, - { - "text": "Consider the establishment of a national human rights institution in line with the Paris Principles ", - "values": [ - "National Human Rights Institution" - ] - }, - { - "text": "Continue to work towards eliminating all violence against women and to increase access to\njustice for women victims of violence, including in remote and rural areas ", - "values": [ - "Women's rights" - ] - }, - { - "text": "Increase the age of criminal responsibility ", - "values": [ - "Justice", - "Rights of the Child" - ] - }, - { - "text": "Reinforce measures against acts of racism, discrimination, xenophobia and intolerance", - "values": [ - "Racial discrimination" - ] - }, - { - "text": "Continue defending the rights of its people to address the imposed economic sanctions", - "values": [ - "Other" - ] - }, - { - "text": "With the support from the relevant international organisations, continue to provide public health care services to its people, especially women and children", - "values": [ - "Right to health", - "Rights of the Child", - "Technical assistance and cooperation", - "Women's rights" - ] - }, - { - "text": "Strengthen the actions aimed at guaranteeing the enjoyment of the most fundamental rights and the access to the basic infrastructures in the most remote areas", - "values": [ - "Development" - ] - }, - { - "text": "Continue conducting policy programmes to support the effective implementation of the new Child Protection Act, in particular focusing on prevention and early intervention in cases of child abuse and domestic violence", - "values": [ - "Rights of the Child" - ] - }, - { - "text": "Develop a comprehensive strategy and national plan of action for the implementation of the Convention on the Rights of the Child", - "values": [ - "International instruments", - "Rights of the Child" - ] - }, - { - "text": "Continue taking the steps necessary to ensure the signing of the national agreement on criminal justice", - "values": [ - "Justice" - ] - }, - { - "text": "Include mechanisms for the internal control of prison guards in the rules and regulations for prisons and detention centres.", - "values": [ - "Detention" - ] - }, - { - "text": "Take further measures to prevent and combat violence against women and consider the enactment of a specific law ", - "values": [ - "Women's rights" - ] - }, - { - "text": "Consider transferring oversight for allegations of ill-treatment of all prisoners to an appropriate civilian judicial authority", - "values": [ - "Detention" - ] - }, - { - "text": "Continue training and capacity building for judges and specialists to deal with vulnerable persons", - "values": [ - "Justice" - ] - }, - { - "text": "Revise and amend legislation, including the 2014 National Security Service Act and the 2015 Non-Governmental Organizations Act, which have been used to restrict the rights to freedom of expression, association and peaceful assembly ", - "values": [ - "Civil society", - "Freedom of association and peaceful assembly", - "Freedom of opinion and expression" - ] - }, - { - "text": "End solitary confinement sentences and ensure that those sentenced to life imprisonment benefit from the United Nations Standard Minimum Rules for the Treatment of Prisoners, and adopt urgent measures against overcrowding", - "values": [ - "Detention" - ] - }, - { - "text": "Take necessary measures for the realization of women's rights in rural and remote areas ", - "values": [ - "Women's rights" - ] - }, - { - "text": "Increase cooperation with the relevant United Nations bodies and other international organizations in the efforts to mitigate the harms of climate change and adapt to its effects on the country's citizens", - "values": [ - "Environment" - ] - }, - { - "text": "The Government is also looking forward to enhancing cooperation with the Human Rights Council and is committed to serving as a model for change in the region.", - "values": [ - "Other" - ] - }, - { - "text": "Continue strengthening the independence and impartiality of the judiciary to ensure the right to a fair trial, including by increasing the transparency of the working methods within the High Council of Justice, the appointment of prosecutors and the allocation of court cases", - "values": [ - "Justice" - ] - }, - { - "text": "Continue to strengthen national capacity for the effective implementation of the National Programme and Plan of Action in the area of human rights", - "values": [ - "General" - ] - }, - { - "text": "Ensure that human rights abuses are appropriately investigated and that those responsible are processed and sanctioned by civil courts. grant better facilities and financial resources to the judiciary, to accomplish this task efficiently. and to ensure effective implementation of the Constitutional Court sentence of July 2008 on the subject.", - "values": [ - "Human rights violations by state agents", - "Justice" - ] - }, - { - "text": "Continue to make progress in education and health care, with a particular focus on women and girl children", - "values": [ - "Right to education", - "Right to health", - "Rights of the Child", - "Women's rights" - ] - }, - { - "text": "Adopt effective measures to strengthen and guarantee the independence of the Unit for the protection of human rights defenders within the Presidential Commission for Human Rights, and to protect human rights defenders from any further violence.", - "values": [ - "Human rights defenders" - ] - }, - { - "text": "End the sponsorship system for migrant domestic workers", - "values": [ - "Labour", - "Migrants" - ] - }, - { - "text": "Continue to increase human and financial resources allocated by the Government to fight poverty and improve services in the fields of health and education", - "values": [ - "Poverty", - "Right to education", - "Right to health" - ] - }, - { - "text": "Support the Office of the Ombudsman and recognize its competency in all matters relating to equal treatment for all inhabitants, and comply with the principle of non-discrimination ", - "values": [ - "National Human Rights Institution" - ] - }, - { - "text": "Implement the recommendations made by the Special Rapporteur on freedom of opinion and expression following his 2011 visit ", - "values": [ - "Freedom of opinion and expression", - "Special procedures" - ] - }, - { - "text": "Bring its national legislation into conformity with international obligations on women's rights, and to follow the recommendations of the Special Rapporteur on violence against women, its causes and consequences, as well as guarantee the safety of advocates for gender equality", - "values": [ - "Special procedures", - "Women's rights" - ] - }, - { - "text": "Continue taking steps so as to reinforce women's representation in leadership and decision-making positions ", - "values": [ - "Women's rights" - ] - }, - { - "text": "Adherence to international standards for respect for detainees\u2019 rights and the conditions of detention", - "values": [ - "Detention" - ] - }, - { - "text": "Provide comprehensive care to victims of landmines and cluster munitions through its development plans and the application of the Convention on the Rights of Persons with Disabilities", - "values": [ - "Disabilities", - "International humanitarian law", - "International instruments" - ] - }, - { - "text": "Continue developing its legal and institutional framework with respect to the promotion and protection of human rights ", - "values": [ - "General" - ] - }, - { - "text": "Strengthen measures to address the needs of people affected and displaced by conflict and seek durable solutions to their displacement", - "values": [ - "Internally displaced persons" - ] - }, - { - "text": "Introduce independent and effective legal and professional supervision of the Youth Office (Jugendamt) and ensure that the Jugendamt decisions be in conformity with binding international norms, including the rulings of the European Court of Human Rights ", - "values": [ - "Rights of the Child" - ] - }, - { - "text": "Strengthen measures to address overcrowding in detention centres, including through increased resort to alternative forms of punishment and adopt measures to reduce the use of pre-trial detention ", - "values": [ - "Detention" - ] - }, - { - "text": "Ratify the Optional Protocol to the Convention on the Rights of the Child on children in armed conflict and the Optional Protocol to the Convention on the Rights of the Child on the sale of children, child prostitution and child pornography", - "values": [ - "International humanitarian law", - "International instruments", - "Rights of the Child", - "Trafficking" - ] - }, - { - "text": "Continue to bring to justice all those who have participated in war crimes, crimes against humanity and other heinous acts, and combat impunity in society. ", - "values": [ - "Impunity" - ] - }, - { - "text": "Work jointly with the mechanisms of the United Nations system, in particular the Special Envoy of the Secretary-General for Syria", - "values": [ - "Special procedures", - "Treaty bodies", - "UPR process" - ] - }, - { - "text": "Ensure that national laws are in line with international human rights standards", - "values": [ - "International instruments" - ] - }, - { - "text": "Reject any attempts to impose on it any values or standards beyond its international legal obligations and not in conformity with its social values", - "values": [ - "Other" - ] - }, - { - "text": "Take effective measures to respect the right to freedom of religion without discrimination", - "values": [ - "Freedom of religion and belief", - "Racial discrimination" - ] - }, - { - "text": "Consider ratifying human rights conventions to which it is not yet party", - "values": [ - "International instruments" - ] - }, - { - "text": "Strengthen the system of social insurance and the pension system ", - "values": [ - "ESC rights - general" - ] - }, - { - "text": "Ensure that girls with disabilities are afforded the same right to education as all children", - "values": [ - "Disabilities", - "Right to education", - "Rights of the Child", - "Women's rights" - ] - }, - { - "text": "Enact law to allow government authorities to independently prosecute alleged perpetrators of domestic and sexual violence", - "values": [ - "Rights of the Child", - "Women's rights" - ] - }, - { - "text": "Enhance its efforts in order to promote women's participation especially in political life ", - "values": [ - "Women's rights" - ] - }, - { - "text": "Continue maintaining good cooperation with the Office of the United Nations High Commissioner for Refugees (UNHCR) in favour of refugees with disabilities", - "values": [ - "Asylum-seekers - refugees", - "Disabilities", - "Technical assistance and cooperation" - ] - }, - { - "text": "Pay particular attention to the training of law enforcement agents in the sphere of combatting discrimination and promoting human rights", - "values": [ - "Human rights education and training" - ] - }, - { - "text": "Take into consideration the possibility of adopting a moratorium of capital executions at the state and federal levels, given that 26 states have abolished or adopted a moratorium on capital executions", - "values": [ - "Death penalty" - ] - }, - { - "text": "Speed up the process of establishment of the Human Rights Office in compliance with the Paris Principles", - "values": [ - "National Human Rights Institution" - ] - }, - { - "text": "Continue to face, with tenacity, the current and future challenges so that all its children, in particular, are free from any violation of their rights, especially their right to education", - "values": [ - "Right to education", - "Rights of the Child" - ] - }, - { - "text": "Consider ratifying all outstanding international instruments and continue to domesticate such instruments", - "values": [ - "International instruments" - ] - }, - { - "text": "Ratify the Convention relating to the Status of Refugees and its Protocol and, pending this, formalize the cooperation with the Office of the United Nations High Commissioner forRefugees in order to facilitate effective protection of the human rights of refugees and asylum seekers in Libya", - "values": [ - "Asylum-seekers - refugees", - "International instruments", - "Technical assistance and cooperation" - ] - }, - { - "text": "Take steps to prevent child labour by formulating a strategy to eliminate the worst forms of child labour ", - "values": [ - "Labour", - "Rights of the Child" - ] - }, - { - "text": "Share experiences and good practices with other countries in areas of development and protection of human rights ", - "values": [ - "Development" - ] - }, - { - "text": "Continue the efforts in favour of migrant workers", - "values": [ - "Labour", - "Migrants" - ] - }, - { - "text": "That Penal Code articles 301 and 318 be revised or abolished ", - "values": [ - "Freedom of opinion and expression" - ] - }, - { - "text": "Commit to upholding the rule of law and independence of the judiciary", - "values": [ - "Justice" - ] - }, - { - "text": "Take steps towards the withdrawal of Algeria's reservations to articles 2 and 16 of CEDAW, which Slovenia considered contrary to the object and purpose of the Convention. ", - "values": [ - "International instruments", - "Women's rights" - ] - }, - { - "text": "Consider exceptions from the general prohibition of abortion and remove punitive prohibitions for women who undergo abortion", - "values": [ - "Women's rights" - ] - }, - { - "text": "Abolish the death penalty in all cases", - "values": [ - "Death penalty" - ] - }, - { - "text": "Ratify the Second Optional Protocol to the International Covenant on Civil and Political Rights - the Optional Protocol to the International Covenant on Economic, Social and Cultural Rights - the Optional Protocol to the Convention against Torture and Other Cruel, Inhuman or Degrading Treatment or Punishment - the Optional Protocol to the Convention on the Elimination of All Forms of Discrimination against Women - the Optional Protocol to the Convention on the Rights of the Child on the sale of children, child prostitution and child pornography - the Optional Protocol to the Convention on the Rights of the Child on the involvement of children in armed conflict - and the International Convention for the Protection of All Persons from Enforced Disappearance \n", - "values": [ - "International instruments" - ] - }, - { - "text": "Immediately implement all the recommendations put forward by the Waki Commission and the Special Rapporteur on extrajudicial killings ", - "values": [ - "Extrajudicial executions", - "Special procedures" - ] - }, - { - "text": "Review domestic legislation in order to ensure the effective criminalization of all acts of torture, pursuant to the obligations under the Convention against Torture and Other Cruel, Inhuman or Degrading Treatment or Punishment", - "values": [ - "International instruments", - "Torture and other CID treatment" - ] - }, - { - "text": "Ensure the same rights to all citizens, including those of the lesbian, gay, bisexual, transgender and intersex collective, decriminalizing same-sex relationships and eliminating all discriminatory legislation on the basis of sexual orientation", - "values": [ - "Sexual Orientation and Gender Identity" - ] - }, - { - "text": "Continue programmes to fight poverty and to bring about the realization of economic, social and cultural rights, favouring especially the most vulnerable categories of society, women and children living in regions exposed to natural catastrophes, and continue the zero hunger programme", - "values": [ - "ESC rights - general", - "Poverty", - "Right to food", - "Rights of the Child", - "Women's rights" - ] - }, - { - "text": "Integrate international human rights instruments into domestic law", - "values": [ - "International instruments" - ] - }, - { - "text": "Ratify the International Covenant on Economic, Social and Cultural Rights and its Optional Protocol", - "values": [ - "ESC rights - general", - "International instruments" - ] - }, - { - "text": "Create appropriate conditions for the full realization of the economic, social and cultural rights of Roma and people of African descent ", - "values": [ - "ESC rights - general", - "Minorities" - ] - }, - { - "text": "Ratify the International Convention on the Protection of the All Persons from Enforced Disappearance and pass national law criminalizing enforced disappearance and torture and recognizing the rights of victims", - "values": [ - "Enforced disappearances", - "International instruments", - "Torture and other CID treatment" - ] - }, - { - "text": "Implement the Action Plan to end the recruitment and use of children, signed at the United Nations in 2012 ", - "values": [ - "International humanitarian law", - "Rights of the Child" - ] - }, - { - "text": "Strengthen the judiciary and make it independent by training judges in order to guarantee effective implementation of the law.", - "values": [ - "Justice" - ] - }, - { - "text": "Consider introducing procedures for the identification of persons vulnerable to trafficking, strengthen the prosecution of perpetrators of human trafficking and further support the rehabilitation of victims", - "values": [ - "Trafficking" - ] - }, - { - "text": "Continue to strengthen the national cultural policy ", - "values": [ - "ESC rights - general" - ] - }, - { - "text": "Continue making efforts to prevent and sanction trafficking in persons", - "values": [ - "Trafficking" - ] - }, - { - "text": "Ensure the use of objective, transparent and non-discriminatory selection criteria in the allocation of broadcast licences, and to avoid bringing defamation cases against media outlets", - "values": [ - "Freedom of the press" - ] - }, - { - "text": "Ratify the Hague Convention on the Protection of Children and Cooperation in Respect of Inter-country Adoption ", - "values": [ - "International instruments", - "Rights of the Child" - ] - }, - { - "text": "Put in place a follow-up mechanism with a view to ensuring the return, registering, readaptation and reinsertion of internally displaced peoples, in all security and dignity ", - "values": [ - "Internally displaced persons" - ] - }, - { - "text": "Impose a moratorium on the use of the death penalty", - "values": [ - "Death penalty" - ] - }, - { - "text": "Take legislative action to ensure the right of the Palestinian refugees to inherit and register property, including the right to own land", - "values": [ - "Asylum-seekers - refugees", - "Right to land" - ] - }, - { - "text": "Take steps to ensure that well -functioning health information systems are in place which combine disaggregated data from facilities, administrative sources and surveys, to enable effective monitoring of progress ", - "values": [ - "Right to health" - ] - }, - { - "text": "Harmonize the Act on Equal Treatment with the international human rights instruments ratified by Poland", - "values": [ - "International instruments" - ] - }, - { - "text": "Montenegro reiterated its commitment to implementing the 121 accepted recommendations and their inclusion in the action plan on human rights.", - "values": [ - "UPR process" - ] - }, - { - "text": "Continue finding alternative family care for vulnerable children so as to avoid placing them in institutional care", - "values": [ - "Rights of the Child" - ] - }, - { - "text": "Improve detention conditions in conformity with the United Nations Standard Minimum Rules for the Treatment of Prisoners and the United Nations Rules for the Treatment of Women Prisoners and Non-custodial Measures for Women Offenders", - "values": [ - "Detention", - "Women's rights" - ] - }, - { - "text": "Take measures to improve safeguards for freedom of the press. ", - "values": [ - "Freedom of the press" - ] - }, - { - "text": "Step up enforcement of laws protecting women from rape and violence, criminalize spousal rape and treat honor killings no differently than murder.", - "values": [ - "Women's rights" - ] - }, - { - "text": "Consider favorably ratification of the International Convention on the Protection of the Rights of All Migrant Workers and Members of Their Families ", - "values": [ - "International instruments", - "Labour", - "Migrants" - ] - }, - { - "text": "Complete the national guidelines for education in the field of human rights and pursue a participatory approach in cooperation with civil society ", - "values": [ - "Civil society", - "Human rights education and training" - ] - }, - { - "text": "Continue to implement measures to promote full and effective equality in the social, economic and political spheres ", - "values": [ - "ESC rights - general" - ] - }, - { - "text": "Discontinue authorization for the excessive use of force by the law enforcement, especially indiscriminate use of Tasers ", - "values": [ - "Human rights violations by state agents" - ] - }, - { - "text": "Increase its efforts to prevent racially motivated offences and adopt required legislation as well as ensure that relevant criminal law provisions are effectively implemented", - "values": [ - "Racial discrimination" - ] - }, - { - "text": "End illegal detentions in Guantanamo Bay or bring the detainees to trial immediately", - "values": [ - "Detention" - ] - }, - { - "text": "Redouble efforts to increase the representation of women in decision-making positions and reduce the wage inequality gap between men and women", - "values": [ - "Women's rights" - ] - }, - { - "text": "Continue promoting women's and minorities' access to justice in order to enhance equal opportunities for all citizens", - "values": [ - "Minorities", - "Women's rights" - ] - }, - { - "text": "Strengthen free primary education across the country's territory ", - "values": [ - "Right to education" - ] - }, - { - "text": "Further implement policies to advance women's role in society and combat gender-based discrimination and violence ", - "values": [ - "Women's rights" - ] - }, - { - "text": "Continue the efforts in favour of the promotion of the rights of certain populations with a view to further improving their situation, and accelerate the process of adaptation of domestic legislation to envisage the ratification, then the incorporation in its domestic legal order, of several relevant international instruments in the area ", - "values": [ - "International instruments" - ] - }, - { - "text": "Thoroughly investigate and prosecute cases of sexual harassment and rape of girls in schools", - "values": [ - "Right to education", - "Rights of the Child" - ] - }, - { - "text": "Ratify the Rome Statute of the International Criminal Court and implement it fully at national level and accede to the Agreement on the Privileges and Immunities of the International Criminal Court", - "values": [ - "International instruments", - "Justice" - ] - }, - { - "text": "Consider ratifying the Optional Protocol to the Convention on the Rights of the Child on a communications procedure to further enhance child protection", - "values": [ - "International instruments", - "Rights of the Child" - ] - }, - { - "text": "Implement the series of measures to ensure the rights of and improve the quality of life of persons with disabilities for 2014-2017", - "values": [ - "Disabilities" - ] - }, - { - "text": "Continue its efforts under multi-sectoral approach to address the issue of human trafficking ", - "values": [ - "Trafficking" - ] - }, - { - "text": "Strengthen the effective implementation of the measures aiming at combatting discriminations and violence against women", - "values": [ - "Women's rights" - ] - }, - { - "text": "Take concrete and effective measures to ensure the ratification and gradual implementation as soon as possible of the Convention on the Rights of Persons with Disabilities, signed in 2007", - "values": [ - "Disabilities", - "International instruments" - ] - }, - { - "text": "Recommended Pakistan's positive reaction in its efforts to confront the humanitarian problem related to the large number of refugees, which could be an example for other countries.", - "values": [ - "Asylum-seekers - refugees" - ] - }, - { - "text": "Align policies to ensure access to land and water for pastoralists with the African Union Framework on Pastoralism and conclude regional agreements to facilitate cross-border pastoralism", - "values": [ - "Right to land", - "Right to water and sanitation" - ] - }, - { - "text": "Lift all reservations to the Convention on the Elimination of All Forms of Discrimination against Women", - "values": [ - "International instruments", - "Women's rights" - ] - }, - { - "text": "Ratify the Convention against Torture and Other Cruel, Inhuman or Degrading Treatment or Punishment, as previously accepted", - "values": [ - "International instruments", - "Torture and other CID treatment", - "UPR process" - ] - }, - { - "text": "Offer cooperation and access to the Special Rapporteur on the situation of human rights in Eritrea ", - "values": [ - "Special procedures" - ] - }, - { - "text": "Further involve civil society as a partner of the Government in promoting and protecting human rights", - "values": [ - "Civil society" - ] - }, - { - "text": "Limit the use of or abolish solitary confinement of children", - "values": [ - "Detention", - "Rights of the Child" - ] - }, - { - "text": "Strengthen cooperation with non-governmental organizations, and ensure that the rights of all those involved in human rights advocacy are protected under Iranian law, in accordance with its obligations under ICCPR, and that freedom of association is enshrined in Iranian law", - "values": [ - "Civil society", - "Freedom of association and peaceful assembly", - "International instruments" - ] - }, - { - "text": "Ensure that all of Afghanistan's religious communities are able to practice their religion freely and that their right to freedom of religion or belief is protected in any new legislation or legislation currently under review ", - "values": [ - "Freedom of religion and belief" - ] - }, - { - "text": "Strengthen measures to combat violence against women, as well as to prohibit corporal punishment of children and to set out the minimum age to work", - "values": [ - "Labour", - "Rights of the Child", - "Torture and other CID treatment", - "Women's rights" - ] - }, - { - "text": "Continue its appreciable efforts towards the development of national languages and promote and protect the Amazigh language and cultural heritages", - "values": [ - "Indigenous peoples" - ] - }, - { - "text": "Conclude the process of ratifying the Kampala amendments to the Rome Statute swiftly with a view to contributing to the activation of the jurisdiction of the International Criminal Court over the crime of aggression in 2017", - "values": [ - "International instruments", - "Justice" - ] - }, - { - "text": "Continue to combat violence and crime in large cities", - "values": [ - "Public security" - ] - }, - { - "text": "Develop specialized programmes to assist with minor and adolescent migrants returned or deported to Honduras, in order to ensure their effective social reintegration ", - "values": [ - "Migrants", - "Rights of the Child" - ] - }, - { - "text": "Establish legislation that prohibits corporal punishment and the ill-treatment of boys and girls", - "values": [ - "Rights of the Child", - "Torture and other CID treatment" - ] - }, - { - "text": "Establish a National Human Rights Commission in line with the Paris Principles to provide for effective promotion and protection of human rights at the national level ", - "values": [ - "National Human Rights Institution" - ] - }, - { - "text": "Activate the policies of integration of Travellers and Roma in all social, economic, cultural, political, educational and other spheres", - "values": [ - "CP rights - general", - "ESC rights - general", - "Minorities", - "Right to education" - ] - }, - { - "text": "Take appropriate measures to ensure stricter control on the new work permit system and intensify its efforts to bring to justice all those involved in trafficking in persons ", - "values": [ - "Labour", - "Trafficking" - ] - }, - { - "text": "Continue implementing the programmes and measures to improve the enjoyment of the right to education and the right to health of all its population", - "values": [ - "Right to education", - "Right to health" - ] - }, - { - "text": "Take measures, in law and in practice, to end all forms of child labour, in accordance with the highest international standards ", - "values": [ - "Labour", - "Rights of the Child" - ] - }, - { - "text": "Adopt a comprehensive and integrated approach to its gender equality policies in all areas, especially with regard to refugees, asylum-seekers, displaced persons and persons with disabilities ", - "values": [ - "Asylum-seekers - refugees", - "Disabilities", - "Internally displaced persons", - "Women's rights" - ] - }, - { - "text": "Implement a comprehensive approach to combating all forms of violence against women, and criminalize the act of rape and other sexual crimes in the Model Penal Code, as recommended by the Committee on the Elimination of Discrimination against Women ", - "values": [ - "Treaty bodies", - "Women's rights" - ] - }, - { - "text": "Adhere and adapt its national legislation to the Rome Statute, including the incorporation of regulations to cooperate promptly and fully with the International Criminal Court", - "values": [ - "International instruments", - "Justice" - ] - }, - { - "text": "Ensure that the police and judiciary are trained to deal impartially with women reporting gender based violence, and that all such complaints are fully investigated and prosecuted", - "values": [ - "Human rights education and training", - "Women's rights" - ] - }, - { - "text": "Continue to work on strengthening access to health care services, particularly for vulnerable groups of society", - "values": [ - "Right to health" - ] - }, - { - "text": "Find a suitable methodology for data collection, allowing a response tailored to the problems of vulnerable groups", - "values": [ - "Minorities" - ] - }, - { - "text": "Continue the efforts made to fight human trafficking, in particular the exploitation of children and women, by reinforcing the fight against the smugglers", - "values": [ - "Rights of the Child", - "Trafficking", - "Women's rights" - ] - }, - { - "text": "Take additional steps to ensure women's full participation in public life as well as in the peace and reconciliation process and ensure that the Law on the Elimination of Violence against Women is implemented and that all acts of violence against women are thoroughly investigated and those responsible are brought to justice ", - "values": [ - "Women's rights" - ] - }, - { - "text": "Continue to promote human rights education with a particular focus on interfaith and intercultural dialogue", - "values": [ - "Human rights education and training" - ] - }, - { - "text": "Proceed with the national policies aimed to promote women's position in the society and to achieve better representation in the elected councils ", - "values": [ - "Women's rights" - ] - }, - { - "text": "Continue its efforts for empowering women to better improve their participation at the decision-making level", - "values": [ - "Women's rights" - ] - }, - { - "text": "Establish an immediate official moratorium on the use of the death penalty", - "values": [ - "Death penalty" - ] - }, - { - "text": "Continue to follow up the UPR in the framework of the National System for Human Rights and International Humanitarian Law. ", - "values": [ - "International humanitarian law", - "International instruments", - "UPR process" - ] - }, - { - "text": "Continue and strengthen its fight against harmful traditional practices", - "values": [ - "Torture and other CID treatment" - ] - }, - { - "text": "Continue to support the Support Fund for the Admission, Integration and Education of Immigrants, as well as to support the work of various civil society organizations that work in favour of immigrants and that receive public funds to that end ", - "values": [ - "Civil society", - "Migrants" - ] - }, - { - "text": "Step up its efforts in eliminating all forms of violence against women and girls and in that context improve the national legislation in accordance with relevant international human rights standards", - "values": [ - "International instruments", - "Rights of the Child", - "Women's rights" - ] - }, - { - "text": "Take further measures to correct the gaps in employment, salary, health care and education that exist between Maori and non-Maori peoples.", - "values": [ - "Indigenous peoples" - ] - }, - { - "text": "Take further measures to adopt legislation ensuring the implementation of the Convention on the Rights of the Child, in particular in the area violence prevention and sexual exploitation of children.", - "values": [ - "International instruments", - "Rights of the Child" - ] - }, - { - "text": "Avoid experiments on detainees with electric impulsion weapons provoking acute pain, which canconstitute a form of torture, in penitentiaries.", - "values": [ - "Detention", - "Torture and other CID treatment" - ] - }, - { - "text": "Guarantee the right to privacy and stop spying on its citizens without judicial authorization ", - "values": [ - "Privacy" - ] - }, - { - "text": "Extend an open and standing invitation to all Special Procedures", - "values": [ - "Special procedures" - ] - }, - { - "text": "Takes steps to strengthen the cooperation with United Nations treaty bodies, including presenting reports as requested by such bodies", - "values": [ - "Treaty bodies" - ] - }, - { - "text": "Move forward training programmes on human rights for the security forces, and prevent, investigate and sanction cases of violence committed by law enforcement officials", - "values": [ - "Human rights education and training", - "Human rights violations by state agents" - ] - }, - { - "text": "Close immediately all political prison camps and unconditionally release all political prisoners detained", - "values": [ - "Detention", - "Freedom of opinion and expression" - ] - }, - { - "text": "Incorporate the provisions of the Convention on the Rights of Persons with Disabilities into the domestic legal system", - "values": [ - "Disabilities", - "International instruments" - ] - }, - { - "text": "Improve the quality of public education, particularly for those who live below the poverty line, particularly Afro-Brazilians, with focus on psychological health and integrating psychosocial elements in order to achieve a better learning environment", - "values": [ - "Minorities", - "Poverty", - "Right to education", - "Right to health" - ] - }, - { - "text": "Continue its efforts to strengthen the judicial system and consolidate its independence", - "values": [ - "Justice" - ] - }, - { - "text": "Systematically and continuously integrate a gender perspective in the follow-up process to the review.", - "values": [ - "UPR process", - "Women's rights" - ] - }, - { - "text": "Investigate thoroughly complaints from citizens about assault or other abuse by the police and provide information to the public about the disposition of such complaints ", - "values": [ - "Detention" - ] - }, - { - "text": "Take measures to ensure due process and fair trial, particularly in any process that would lead to the application of the death penalty", - "values": [ - "Death penalty", - "Justice" - ] - }, - { - "text": "Continue reviewing and reforming Government programs, as needed, to ensure that they do not discriminate against particular groups ", - "values": [ - "Other" - ] - }, - { - "text": "Accelerate the ratification process of a number of relevant international legal instruments on human rights, namely ICESCR and ICCPR-OP 1 ", - "values": [ - "CP rights - general", - "ESC rights - general", - "International instruments" - ] - }, - { - "text": "Continue efforts to ensure that speech and comments made in the media that incite discrimination do not remain unpunished", - "values": [ - "Racial discrimination" - ] - }, - { - "text": "Start a dialogue with relevant stakeholders and civil society with a view to revise the Press and Publications Law and its last amendments, adopted in September 2012", - "values": [ - "Civil society", - "Freedom of the press" - ] - }, - { - "text": "Solomon Islands is also committed to submitting its periodic reports to the Committee on the Elimination of Discrimination against Women and the Committee on the Rights of the Child", - "values": [ - "Rights of the Child", - "Treaty bodies", - "Women's rights" - ] - }, - { - "text": "Introduce in the Constitution the prohibition on gender and sex based discrimination similar to that relating to racial or religious discrimination ", - "values": [ - "Freedom of religion and belief", - "Racial discrimination", - "Women's rights" - ] - }, - { - "text": "Continue, with support of the WHO and UNDP, its effort to improve access to health care by its people", - "values": [ - "Right to health" - ] - }, - { - "text": "Share with others the country's experiences in disaster risk management ", - "values": [ - "Environment" - ] - }, - { - "text": "Strengthen its cooperation with special procedure on reported cases of illegal arrest, fully respect the fundamental liberties of human rights defenders and train the police forces to respect human rights and non-violent techniques of maintaining order, and to prosecute the perpetrators of violence", - "values": [ - "Detention", - "Human rights defenders", - "Human rights education and training", - "Special procedures" - ] - }, - { - "text": "Intensify efforts to ratify the Convention on the Rights of Persons with Disabilities ", - "values": [ - "Disabilities", - "International instruments" - ] - }, - { - "text": "Work on the enhancement of the free health care programme and free primary education, obtaining the necessary assistance through international cooperation ", - "values": [ - "Right to education", - "Right to health", - "Technical assistance and cooperation" - ] - }, - { - "text": "Continue and promote the training and education of qualified people especially in the sphere of health in the developing countries, and continue promoting initiatives in defence of international solidarity ", - "values": [ - "Right to education", - "Right to health" - ] - }, - { - "text": "Take concrete measures to ensure that the Law on Protection of National Minorities will be effectively implemented, in order to overcome the social challenges facing the Roma people", - "values": [ - "Minorities" - ] - }, - { - "text": "Guinea is committed to undertaking ambitious and courageous reforms aimed at building a democratic society that respects human rights.", - "values": [ - "General" - ] - }, - { - "text": "Ensure that instances of ill-treatment of prisoners and detainees are eliminated and that proper and thorough investigations are conducted in such situations in order to hold perpetrators accountable", - "values": [ - "Detention", - "Torture and other CID treatment" - ] - }, - { - "text": "Take urgent, strong and coordinated action at all levels to eradicate torture, punish perpetrators, compensate victims and ensure effective legal safeguards for all persons deprived of their liberty", - "values": [ - "Detention", - "Torture and other CID treatment" - ] - }, - { - "text": "Provide and improve training programmes on human rights for the judiciary and law enforcement personnel ", - "values": [ - "Human rights education and training" - ] - }, - { - "text": "Widely publish the outcome of this UPR and make regular and inclusive consultations with civil society an integral part of the follow-up to the UPR", - "values": [ - "Civil society", - "UPR process" - ] - }, - { - "text": "Pay more attention to the issues of Islamophobia, hatred towards Muslims, and incitement to hatred against Islam and Muslims, including through newspaper articles and caricatures of the Prophet Mohammed published by certain media under the pretext of freedom of expression, which are an affront to many Muslims throughout the world and an affront to their beliefs and are denounced by all international instruments to which Sweden is a party ", - "values": [ - "Freedom of opinion and expression", - "Freedom of religion and belief", - "International instruments", - "Minorities", - "Racial discrimination" - ] - }, - { - "text": "Step up its efforts in human rights awareness programmes, including releasing publications related to human rights with a view to familiarising the general public with those international human rights standards and instruments to which the Democratic People's Republic of Korea is a party", - "values": [ - "Human rights education and training", - "International instruments" - ] - }, - { - "text": "Repeal all provisions in domestic law allowing for the death penalty and establish an official moratorium on executions with a view to abolishing the death penalty", - "values": [ - "Death penalty" - ] - }, - { - "text": "Support partnerships, particularly with the private sector, for the implementation of the Zimbabwe Agenda for Sustainable Socioeconomic Transformation", - "values": [ - "Business and human rights", - "Development", - "ESC rights - general" - ] - }, - { - "text": "Reinforce the independence of the judiciary by increasing institutional and material support for the justice system and putting an end to the provisional nature of judicial appointments ", - "values": [ - "Justice" - ] - }, - { - "text": "Use more actively existing or new platforms for involving the Roma community in policy formulation and implementation at both the local and central levels, and actively pursue an increase in the number of Roma in all public institutions", - "values": [ - "Minorities" - ] - }, - { - "text": "Ratify without reservations the Second Optional Protocol to the International Covenant on Civil and Political Rights", - "values": [ - "Death penalty", - "International instruments" - ] - }, - { - "text": "Ensure that youth in conflict with the law are handled by the juvenile justice system and have access to free legal advisory assistance", - "values": [ - "Justice", - "Rights of the Child" - ] - }, - { - "text": "Take effective measures to counter insults against Islam and Holy Quran", - "values": [ - "Freedom of opinion and expression", - "Freedom of religion and belief" - ] - }, - { - "text": "Prevent and punish torture and ill treatment in accordance with the recommendations made by the Committee against Torture", - "values": [ - "Torture and other CID treatment", - "Treaty bodies" - ] - }, - { - "text": "Facilitate the access of children to primary education ", - "values": [ - "Right to education", - "Rights of the Child" - ] - }, - { - "text": "Improve access to medical, psychosocial and mental health services for all persons in detention, especially for those belonging to vulnerable groups", - "values": [ - "Detention", - "Right to health" - ] - }, - { - "text": "Continue to cooperate with human rights mechanisms and to reconsider their reservations to CEDAW", - "values": [ - "International instruments", - "Women's rights" - ] - }, - { - "text": "Take the necessary measures to guarantee the human rights of migrants, including ratifying ICRMW.", - "values": [ - "International instruments", - "Labour", - "Migrants" - ] - }, - { - "text": "Effectively abolish the death penalty and consider ratifying the Second Optional Protocol to the International Covenant on Civil and Political Rights, aiming at the abolition of the death penalty", - "values": [ - "Death penalty", - "International instruments" - ] - }, - { - "text": "Cooperate with special procedures mandate holders.", - "values": [ - "Special procedures" - ] - }, - { - "text": "Continue its efforts in the framework of the implementation of the national action plan to combat corruption and training programmes directed at public officials in this field", - "values": [ - "Corruption", - "Human rights education and training" - ] - }, - { - "text": "Enact the Integrated Education Act, so as to ensure children's rights to education by way of a coordinated legal framework, prescribing - inter alia -the extension of the compulsory primary school at least to 13 years age ", - "values": [ - "Right to education", - "Rights of the Child" - ] - }, - { - "text": "Step up efforts aimed at promptly establishing an independent national human rights institution in line with the Paris Principles", - "values": [ - "National Human Rights Institution" - ] - }, - { - "text": "Give priority to providing access to the right to education in all parts of the country ", - "values": [ - "Right to education" - ] - }, - { - "text": "Promote the visit of the Special Rapporteur on the sale of children, child prostitution and child pornography which could contribute to the efforts of Benin in its protection of children.", - "values": [ - "Rights of the Child", - "Special procedures", - "Trafficking" - ] - }, - { - "text": "Issue standing invitations to all special procedures of the Human Rights Council ", - "values": [ - "Special procedures" - ] - }, - { - "text": "Effectively apply the biennial action plans to prevent the trafficking in human beings, whose victims are often women and children forced into prostitution against their will, and to establish mechanisms for border and airport control to prevent such crimes, as well as conduct information campaigns and provide adequate assistance to victims", - "values": [ - "Trafficking" - ] - }, - { - "text": "Step up measures aimed at addressing the systematic attacks on immigrants", - "values": [ - "Migrants" - ] - }, - { - "text": "Expand the social welfare scheme and the number of beneficiaries.", - "values": [ - "ESC rights - general" - ] - }, - { - "text": "Allocate necessary resources to strengthen gender equality", - "values": [ - "Women's rights" - ] - }, - { - "text": "Ensure that all forms of discrimination are prohibited, including on the basis of sexual orientation, gender identity and health status", - "values": [ - "Sexual Orientation and Gender Identity" - ] - }, - { - "text": "Continue addressing poverty reduction and social inequality through further development and implementation of relevant programmes and policies", - "values": [ - "Poverty" - ] - }, - { - "text": "Protect the rights of family being the natural and fundamental group of society based upon the stable relationship between a man and a woman, as enshrined in article 16 of the Universal Declaration of Human Rights.", - "values": [ - "Other" - ] - }, - { - "text": "Strengthen strategies and programmes for poverty reduction and job creation, making them uniform among the nine regional states, for better effectiveness of human rights ", - "values": [ - "Development", - "Poverty" - ] - }, - { - "text": "Endeavour to establish a national human rights institution in line with the Paris Principles", - "values": [ - "National Human Rights Institution" - ] - }, - { - "text": "Complete the ratification of the Optional Protocols to the Convention on the Rights of the Child", - "values": [ - "International humanitarian law", - "International instruments", - "Labour", - "Rights of the Child", - "Trafficking" - ] - }, - { - "text": "Continue to take measures to ensure freedom of the press and media", - "values": [ - "Freedom of the press" - ] - }, - { - "text": "Successfully adopt Persons with Disabilities Rights Act ", - "values": [ - "Disabilities" - ] - }, - { - "text": "Take necessary measures to create an independent mechanism to monitor the situation of human rights in conformity with the Paris Principles", - "values": [ - "National Human Rights Institution" - ] - }, - { - "text": "Amend its legislation in order to ensure that children are not discriminated against on the grounds of nationality", - "values": [ - "Rights of the Child" - ] - }, - { - "text": "Reinforce the implementation of the Law on the Elimination of Violence against Women", - "values": [ - "Women's rights" - ] - }, - { - "text": "Respond, without delay, to concerns raised by several special rapporteurs on the conditions of detention in the Carmichael Detention Centre.", - "values": [ - "Detention", - "Special procedures" - ] - }, - { - "text": "Implement the Strategic National Plan on Sexual and Reproductive Health 2009-2015, including allocating adequate budgetary resources for its full and effective implementation. The Plurinational State of Bolivia should ensure efficient access to information for women and girls about their rights", - "values": [ - "Right to health", - "Rights of the Child", - "Women's rights" - ] - }, - { - "text": "Strengthen legislative and practical measures to prevent all forms of discrimination against ethnic minorities and foreigners", - "values": [ - "Migrants", - "Minorities", - "Racial discrimination" - ] - }, - { - "text": "Continue the efforts to improve the treatment of migrants and asylum seekers", - "values": [ - "Asylum-seekers - refugees", - "Migrants" - ] - }, - { - "text": "Cooperate with, and support the work of, the International Commission against Impunity in Guatemala", - "values": [ - "Impunity" - ] - }, - { - "text": "Continue to expand the experience in gender sensitive budgeting, which could be considered as a good practice for all of the Middle East and North Africa region and elsewhere", - "values": [ - "Women's rights" - ] - }, - { - "text": "Accede to the first Optional Protocol of ICCPR", - "values": [ - "CP rights - general", - "International instruments" - ] - }, - { - "text": "Abandon the Kafala sponsorship system", - "values": [ - "Labour", - "Migrants" - ] - }, - { - "text": "Continue further improvement of the protection and promotion of human rights in the country", - "values": [ - "General" - ] - }, - { - "text": "Recognize the right to association as established by ILO, for migrant, agricultural workers and domestic workers ", - "values": [ - "Freedom of association and peaceful assembly", - "Labour", - "Migrants" - ] - }, - { - "text": "Improve the conditions for fair trial by introducing reforms to limit the Military Tribunal's jurisdiction to members of the armed forces and enhance the independence of the judiciary", - "values": [ - "Justice" - ] - }, - { - "text": "Provide more resources for the enjoyment of economic and social rights, especially in favour of vulnerable groups like women, children, poor people and minorities ", - "values": [ - "ESC rights - general", - "Minorities", - "Poverty", - "Rights of the Child", - "Women's rights" - ] - }, - { - "text": "Allow, in a flexible general manner, the visit of independent organizations and national and international NGOs to the detention centres ", - "values": [ - "Civil society", - "Detention" - ] - }, - { - "text": "Step up efforts to promote to ensure equal opportunities for all children to quality education", - "values": [ - "Right to education", - "Rights of the Child" - ] - }, - { - "text": "Streamline current measures to address the unique needs of its diverse society", - "values": [ - "Other" - ] - }, - { - "text": "Adopt effective measures to prevent any harassment or intimidation of all those exercising the right to freedom of opinion and expression, including journalists and human rights defenders.", - "values": [ - "Freedom of opinion and expression" - ] - }, - { - "text": "Adopt and apply the laws on the status of judges and prosecutors, on the judicial organization and functioning of tribunals and on the High Council of the Judiciary to guarantee the independence of the judiciary system ", - "values": [ - "Justice" - ] - }, - { - "text": "Continue its efforts in training and capacity-building programme for government and law enforcement officials in dealing with the issue of trafficking in persons, particularly women and girls", - "values": [ - "Rights of the Child", - "Trafficking", - "Women's rights" - ] - }, - { - "text": "Take the steps necessary to resolve the problem of the fragmentation of the education system, including strengthening policy development and strategic planning, improving access to inclusive and high-quality education, promoting child participation, taking measures to prevent discrimination against and segregation of children, and promoting tolerance and respect for diversity in the education system", - "values": [ - "Right to education", - "Rights of the Child" - ] - }, - { - "text": "Enforce legislation that criminalizes all forms of violence against women, including the Protection from Harm Act, and establish a system of regular data collection on such crimes", - "values": [ - "Women's rights" - ] - }, - { - "text": "Call on the international community to encourage the present stage of development in Nepal and provide the necessary assistance to strengthen Nepal's domestic capacity to address the challenges ", - "values": [ - "Development", - "Technical assistance and cooperation" - ] - }, - { - "text": "Work with the United Nations Country Team to develop a national human rights plan which incorporates human rights education and training ", - "values": [ - "Human rights education and training", - "Technical assistance and cooperation" - ] - }, - { - "text": "Take all measures in order to ensure the enforcement of the existing labour laws and regulations prohibiting all employment of children under 14 years as well as the employment of children under 18 years in mines, factories and plantations", - "values": [ - "Labour", - "Rights of the Child" - ] - }, - { - "text": "Increase investment in social welfare programs", - "values": [ - "ESC rights - general" - ] - }, - { - "text": "Continue the implementation of ongoing national policies to guarantee for the multi-ethnic people to quality education", - "values": [ - "Right to education" - ] - }, - { - "text": "Ensure prosecution and punishment for acts of violence against women ", - "values": [ - "Women's rights" - ] - }, - { - "text": "Adopt measures to combat discrimination against persons on the grounds of their sexual orientation or gender identity, and decriminalize sexual acts between consenting adults of the same sex, in order to bring its legislation in line with the Second Optional Protocol to the Covenant on Civil and Political Rights", - "values": [ - "Death penalty", - "International instruments", - "Sexual Orientation and Gender Identity" - ] - }, - { - "text": "Continue the good cooperation with the Office of the United Nations High Commissioner for Human Rights at country level, which has generated concrete results, including the development of new jurisprudence in the field of human rights", - "values": [ - "Technical assistance and cooperation" - ] - }, - { - "text": "Improve the allocation of human and financial resources to the Ombudsman Offices for Children and Adolescents and Prosecutors Offices to effectively combat and address violence against children and adolescents", - "values": [ - "National Human Rights Institution", - "Rights of the Child" - ] - }, - { - "text": "Ensure that no children are held in detention on the basis of their migratory status and that special protection and assistance is provided to unaccompanied children ", - "values": [ - "Detention", - "Migrants", - "Rights of the Child" - ] - }, - { - "text": "Continue with its efforts to improve the welfare services support and social integration of persons with mental illness", - "values": [ - "Disabilities" - ] - }, - { - "text": "Provide consistent clear response to reject any discriminatory political speech in order to promote understanding, tolerance and friendship between nations and racial, religious and ethnic groups", - "values": [ - "Freedom of religion and belief", - "Minorities", - "Racial discrimination" - ] - }, - { - "text": "Consider eventual improvements of the family support policies as well as alternative child care options in order to address the issue, inter alia, of the so-called street children ", - "values": [ - "Rights of the Child" - ] - }, - { - "text": "Strengthen its social policies, giving priority to the most vulnerable ", - "values": [ - "Other" - ] - }, - { - "text": "Call for all possible technical and financial assistance, it needs, by the international community as well as the Office of the High Commissioner for Human Rights.", - "values": [ - "Technical assistance and cooperation" - ] - }, - { - "text": "Seek the support of the Group of Friends of the Convention against Torture Initiative for technical assistance in the implementation of measures aimed at preventing and investigating reports of torture in the prisons system", - "values": [ - "Detention", - "Technical assistance and cooperation", - "Torture and other CID treatment" - ] - }, - { - "text": "As a signatory of the Convention on the Rights of Persons with Disabilities, signed on 30 March 2007, the Government of Dominica remained committed to the full inclusion of persons with disabilities into the mainstream, and efforts had been made to ratify the Convention. There had been a series of stakeholder and wider public consultations. Based on the plan of action, the ratification process would be completed in the next three months, although, owing to resources constraints, Dominica faced difficulties in meeting the spirit and obligations of the Convention.", - "values": [ - "Disabilities", - "International instruments" - ] - }, - { - "text": "Take steps to ratify the Convention against Torture", - "values": [ - "International instruments", - "Torture and other CID treatment" - ] - }, - { - "text": "Take further action to ensure for children their human rights under the Convention on the Rights of the Child, including by establishing an effective mechanism for receiving, monitoring and investigating reports of child abuse and neglect ", - "values": [ - "International instruments", - "Rights of the Child" - ] - }, - { - "text": "Further promote gender equality and combat violence against women", - "values": [ - "Women's rights" - ] - }, - { - "text": "Consider adopting a structural resettlement programme for asylum seekers ", - "values": [ - "Asylum-seekers - refugees" - ] - }, - { - "text": "Further facilitate the acquisition of citizenship by individuals born in the country who are children of non-citizens", - "values": [ - "Statelessness and the right to nationality" - ] - }, - { - "text": "Continue deploying efforts aimed at preventing and punishing all forms of violence against women and girls and further consolidate female representation in executive and decision-making positions", - "values": [ - "Rights of the Child", - "Women's rights" - ] - }, - { - "text": "Continue taking assertive measures in combating organized crime and criminal gangs with a view to protecting the civilian population ", - "values": [ - "Public security" - ] - }, - { - "text": "Expedite the adoption of a law on trafficking in persons, which would provide for the criminalization of all forms of trafficking, sanctions and adequate assistance for victims", - "values": [ - "Trafficking" - ] - }, - { - "text": "Ratify OP-CAT and CED", - "values": [ - "Detention", - "Enforced disappearances", - "International instruments", - "Torture and other CID treatment" - ] - }, - { - "text": "Amend the Press and Publication Act so that it clearly and unequivocally protects freedom of expression for journalists and enforce this law.", - "values": [ - "Freedom of opinion and expression", - "Freedom of the press" - ] - }, - { - "text": "Continue its efforts to accelerate the achievement of the MDGs targets, particularly those related to health", - "values": [ - "Development", - "Right to health" - ] - }, - { - "text": "Continue to work towards comprehensive rule of law reform including strengthening the police, corrections, and justice sectors, and building the institutional capacity of the Ministries of the Interior and Justice", - "values": [ - "Justice" - ] - }, - { - "text": "Consider eliminating from identity documents all data that could lead to discrimination against children born out of wedlock", - "values": [ - "Rights of the Child" - ] - }, - { - "text": "Continue advancing in the adoption of measures aimed at the non-discrimination of people on the basis of their sexual orientation or gender identity", - "values": [ - "Sexual Orientation and Gender Identity" - ] - }, - { - "text": "Ratify Optional Protocol of the International Covenant on Economic, Social and Cultural Rights", - "values": [ - "ESC rights - general", - "International instruments" - ] - }, - { - "text": "Intensity efforts to implement national programmes that promote the rights of its people, including in the field of the rights of Children and Women as well as rights of education, to health, to adequate water and to sanitation, through enhancing the capacity of the Government and cooperation with relevant stakeholders, including civil society, media and international community ", - "values": [ - "Civil society", - "Right to water and sanitation", - "Rights of the Child", - "Women's rights" - ] - }, - { - "text": "Integrate fully a gender perspective in the next stages of the UPR review, including the outcome of the review.", - "values": [ - "UPR process", - "Women's rights" - ] - }, - { - "text": "Address all urgent appeals sent by the United Nations special procedures mandate holders ", - "values": [ - "Special procedures" - ] - }, - { - "text": "Continue its endeavour to promote and protect the rights of the child", - "values": [ - "Rights of the Child" - ] - }, - { - "text": "Abolish immediately the death penalty ", - "values": [ - "Death penalty" - ] - }, - { - "text": "Take all practical measures to prevent the financial crisis that is currently sweeping the nation from affecting citizens' economic, social and cultural rights, and to provide vulnerable groups in the country, especially the unemployed, with all the support and protection ", - "values": [ - "Development", - "ESC rights - general" - ] - }, - { - "text": "Promulgate an anti-discrimination law, based on article 14, paragraph 1 of the Japanese Constitution, which prohibits all forms of discrimination, especially against foreigners", - "values": [ - "Racial discrimination" - ] - }, - { - "text": "Continue reinforcing and promoting women\u2019s rights and women\u2019s participation in cultural, social and economic life", - "values": [ - "ESC rights - general", - "Women's rights" - ] - }, - { - "text": "Mobilize the local resources and capabilities along with supporting the collaboration with partners and agencies of the United Nations", - "values": [ - "Technical assistance and cooperation" - ] - }, - { - "text": "Apply the commitments undertaken under the national legislation for the protection of the most vulnerable citizens, notably children, senior citizens and persons with disabilities", - "values": [ - "Disabilities", - "Rights of the Child" - ] - }, - { - "text": "Consider ratification other international human rights treaties to which it is not yet a state party", - "values": [ - "International instruments" - ] - }, - { - "text": "Continue work for improving the rights of the Roma community, in compliance with the national strategy for the inclusion of Roma and the Action Plan for the Decade of Roma Inclusion", - "values": [ - "Minorities" - ] - }, - { - "text": "Ensure birth registration without discrimination of any kind, including unregistered adults, and intensify the deployment of mobile birth registration units", - "values": [ - "Rights of the Child", - "Statelessness and the right to nationality" - ] - }, - { - "text": "Continue to advance in the implementation of the national mechanism for visits to places of detention. ", - "values": [ - "Detention" - ] - }, - { - "text": "Make every effort to guarantee the right to seek asylum and to provide adequate housing for refugees", - "values": [ - "Asylum-seekers - refugees", - "Right to housing" - ] - }, - { - "text": "Adopt effective measures to prevent and protect human rights defenders from violence and ensure the prompt, thorough and effective investigation and appropriate punishment of such acts and ensure that human rights defenders operate in an enabling environment.", - "values": [ - "Human rights defenders" - ] - }, - { - "text": "Carry out constructive and cooperative engagement with the special procedures, including the Special Rapporteur on the situation of human rights in Iran", - "values": [ - "Special procedures" - ] - }, - { - "text": "Incorporate the principle of equality between women and men into the Constitution, and seek to combat gender-based discrimination, in particular against girls in rural areas, especially as regards access to education and social services and their right to property and security", - "values": [ - "ESC rights - general", - "Right to education", - "Rights of the Child", - "Women's rights" - ] - }, - { - "text": "Amend the Penal Code to implement the guarantees of freedom of thought, of the press and of publication enshrined in the 2014 Constitution", - "values": [ - "Freedom of opinion and expression", - "Freedom of the press" - ] - }, - { - "text": "Continue to implement programmes and measures to improve the enjoyment of the right to education and the right to health ", - "values": [ - "Right to education", - "Right to health" - ] - }, - { - "text": "Ratify the International Convention on the Protection of the Rights of All Migrant Workers and Members of Their Families (ICRMW) ", - "values": [ - "International instruments", - "Labour", - "Migrants" - ] - }, - { - "text": "Continue taking steps to ensure the full realization of the right to safe drinking water and sanitation for all, including through adequate investment in the relevant services infrastructure", - "values": [ - "Right to water and sanitation" - ] - }, - { - "text": "Include marital rape as an offence under the proposed Sexual Offences Bill", - "values": [ - "Rights of the Child", - "Women's rights" - ] - }, - { - "text": "Ratify the Optional Protocol to the Convention against Torture", - "values": [ - "Detention", - "International instruments", - "Torture and other CID treatment" - ] - }, - { - "text": "Take measures to enact relevant regulatory legislation to provide adequate attention to the migrant population and their human rights", - "values": [ - "Asylum-seekers - refugees", - "International instruments" - ] - }, - { - "text": "Take immediate steps to end violence and discrimination against ethnic minorities ", - "values": [ - "Minorities", - "Racial discrimination" - ] - }, - { - "text": "Strengthen the measures for indigenous populations and persons of African descent against all forms of discrimination, and ensure their promotion and visibility in society ", - "values": [ - "Indigenous peoples", - "Minorities", - "Racial discrimination" - ] - }, - { - "text": "Continue to ensure full access to education for children", - "values": [ - "Right to education", - "Rights of the Child" - ] - }, - { - "text": "Continue efforts for provision of human rights education and training at all levels including for government functionaries", - "values": [ - "Human rights education and training" - ] - }, - { - "text": "Protect the rights of lesbian, gay, bisexual, transgender and intersex persons and take the necessary measures to guarantee their protection and a life free from discrimination", - "values": [ - "Sexual Orientation and Gender Identity" - ] - }, - { - "text": "Need to avoid the impact of the draft Defamation Bill, presented in March 2011, which restricts practicing of the freedom of opinion and expression ", - "values": [ - "Freedom of opinion and expression" - ] - }, - { - "text": "Consider ratifying international human rights conventions to which it is not yet a party ", - "values": [ - "International instruments" - ] - }, - { - "text": "Prohibit corporal punishment of children in all settings, including the home, and repeal the authorization of the use of force to correct children's misconduct in the Criminal Code", - "values": [ - "Rights of the Child", - "Torture and other CID treatment" - ] - }, - { - "text": "Increase the minimum age of criminal responsibility from 12 to 18 years", - "values": [ - "Justice", - "Rights of the Child" - ] - }, - { - "text": "Put an end in law and in practice to violence and discrimination against women, violence and discrimination against homosexuals and female genital mutilation", - "values": [ - "Sexual Orientation and Gender Identity", - "Torture and other CID treatment", - "Women's rights" - ] - }, - { - "text": "Continue its efforts to further improve the awareness on human rights issues and international human rights conventions in Vanuatu, particularly by providing training to government officials ", - "values": [ - "Human rights education and training" - ] - }, - { - "text": "Carry out appropriate, independent, effective and transparent investigations into the deaths that occurred between 24 and 28 March 2010 in West Kingston during police operations, make public the outcomes of such investigations, and bring to justice the perpetrators of human rights violations ", - "values": [ - "Human rights violations by state agents" - ] - }, - { - "text": "Share with other countries good practices in promoting and strengthening dialogue between civilizations", - "values": [ - "Other" - ] - }, - { - "text": "Review conditions in all prisons and detention facilities with a view to ensuring their compliance with the Standard Minimum Rules for the Treatment of Prisoners, in particular to establish separate juvenile detention facilities.", - "values": [ - "Detention" - ] - }, - { - "text": "Announce a moratorium on the death penalty with a view to its eventual abolition. Pending this, take appropriate steps to reduce the application of the death penalty, observing due process of law in all judicial proceedings", - "values": [ - "Death penalty" - ] - }, - { - "text": "Establish a strong and well-funded national human rights institution that is fully compliant with the Paris Principles", - "values": [ - "National Human Rights Institution" - ] - }, - { - "text": "Accede to the International Covenant on Civil and Political Rights and the International Covenant on Economic, Social and Cultural Rights ", - "values": [ - "CP rights - general", - "ESC rights - general", - "International instruments" - ] - }, - { - "text": "Expedite investigation and take action on allegations of complicity of British military personnel in the ill-treatment of civilians and detainees overseas", - "values": [ - "Detention", - "Human rights violations by state agents" - ] - }, - { - "text": "Take steps to prevent and respond to incidents of violence and intimidation against members of minority religious groups, including through education and awareness campaigns and effective interventions by law enforcement officials", - "values": [ - "Freedom of religion and belief", - "Human rights education and training", - "Minorities" - ] - }, - { - "text": "Ratify the Optional Protocol to the Convention on the Rights of the Child on a communication procedure", - "values": [ - "International instruments", - "Rights of the Child" - ] - }, - { - "text": "Make further efforts to ensure compliance with the Prevention of Trafficking in Persons Act", - "values": [ - "Trafficking" - ] - }, - { - "text": "Enforce the Human Trafficking Act and the Immigration Amendment Act, and allocate sufficient resources to combat trafficking in persons, human smuggling and other irregular migration", - "values": [ - "Migrants", - "Trafficking" - ] - }, - { - "text": "Ensure the right to unrestricted peaceful assembly, avoid arbitrary detention and the excessive use of force during those assemblies", - "values": [ - "Detention", - "Freedom of association and peaceful assembly" - ] - }, - { - "text": "Accede to the main international human rights instruments to which the country is not yet a party", - "values": [ - "International instruments" - ] - }, - { - "text": "Take measures in order to effectively combat violence against women and domestic violence ", - "values": [ - "Rights of the Child", - "Women's rights" - ] - }, - { - "text": "Continue its efforts in improving the situation of detainees in Greek prisons and those held in police custody ", - "values": [ - "Detention" - ] - }, - { - "text": "Provide support and assistance to victims of trafficking in persons, especially women and children, and fully implement the Anti-Trafficking in Persons Act amended in 2010", - "values": [ - "Rights of the Child", - "Trafficking", - "Women's rights" - ] - }, - { - "text": "Intensify efforts to repeal all provisions discriminating against women that still persist in its domestic laws, with the aim of guaranteeing full compliance with provisions of the Convention on the Elimination of All Forms of Discrimination against Women and other international standards", - "values": [ - "International instruments", - "Women's rights" - ] - }, - { - "text": "Establish at the earliest a national human rights institution compliant with the Paris Principles ", - "values": [ - "National Human Rights Institution" - ] - }, - { - "text": "Continue to strengthen its activities to integrate persons with special needs into social life, bearing in mind that need", - "values": [ - "Other" - ] - }, - { - "text": "Increase the annual budget as well as set up mechanisms to investigate ways to improve education management and teaching methods ", - "values": [ - "Right to education" - ] - }, - { - "text": "Issue a standing invitation to all special procedures mandate holders ", - "values": [ - "Special procedures" - ] - }, - { - "text": "Continue to strengthen its domestic framework and institutions to combat human trafficking ", - "values": [ - "Trafficking" - ] - }, - { - "text": "Put forward its utmost efforts to eradicate sexual and gender-based violence", - "values": [ - "Rights of the Child", - "Women's rights" - ] - }, - { - "text": "Strengthen the law on the use of firearms by police officers, by introducing a policy of zero tolerance for their abusive use ", - "values": [ - "Human rights violations by state agents" - ] - }, - { - "text": "Ratify the International Covenant on Economic, Social and Cultural Rights and its Optional Protocol and the Optional Protocol to the Convention on the Rights of the Child on a communications procedure", - "values": [ - "ESC rights - general", - "International instruments", - "Rights of the Child" - ] - }, - { - "text": "Continue efforts to strengthen the right of education for all, focusing on poor populations in rural and distant areas ", - "values": [ - "Right to education" - ] - }, - { - "text": "Strengthen its efforts to improve the socioeconomic situation of minority children ", - "values": [ - "ESC rights - general", - "Minorities", - "Rights of the Child" - ] - }, - { - "text": "Adopt the draft bill on witness and victim protection", - "values": [ - "Justice" - ] - }, - { - "text": "Take necessary measures to implement its national strategy to combat violence against women, and in advancing their rights", - "values": [ - "Women's rights" - ] - }, - { - "text": "Ensure the mainstreaming of gender equality in all its policies and increase the representation of women in decision-making positions at the local level", - "values": [ - "Elections", - "Women's rights" - ] - }, - { - "text": "Ratify the Optional Protocol to the Convention against Torture and set up a national preventive mechanism to prevent torture ", - "values": [ - "Detention", - "International instruments", - "Torture and other CID treatment" - ] - }, - { - "text": "Make its national institution for the protection of human rights fully compliant with Paris Principles at the earliest ", - "values": [ - "National Human Rights Institution" - ] - }, - { - "text": "Establish specific mechanisms and formulate specific programmes geared to addressing the issue of violence against women and children, including by harmonizing national legislation with international human rights standards ", - "values": [ - "International instruments", - "Rights of the Child", - "Women's rights" - ] - }, - { - "text": "Continue efforts to address cross border issues, including by strengthening the work of Indonesia - PNG Joint Border Committee, based on mutual respect", - "values": [ - "Other" - ] - }, - { - "text": "Review politically motivated trials of the past. ", - "values": [ - "Justice" - ] - }, - { - "text": "Take all the necessary measures to conduct a nationwide assessment of all manifestations of child sexual exploitation and adopt a national action plan to end it", - "values": [ - "Rights of the Child" - ] - }, - { - "text": "Accede to ICCPR and ICESCR ", - "values": [ - "CP rights - general", - "ESC rights - general", - "International instruments" - ] - }, - { - "text": "Reinforce concrete measures aimed at combating trafficking in women and young girls, and assistance to victims ", - "values": [ - "Rights of the Child", - "Trafficking", - "Women's rights" - ] - }, - { - "text": "Disseminate information to the population to increase awareness of women's rights and, in particular, of the 2006 Legal Capacity of Married Persons Act ", - "values": [ - "Human rights education and training", - "Women's rights" - ] - }, - { - "text": "Continue its efforts at reforming the judicial system, and the rehabilitation of the prison community with a view to reintegration into society ", - "values": [ - "Detention" - ] - }, - { - "text": "Ratify OP-CAT, and introduce human rights education for police and security forces", - "values": [ - "Detention", - "Human rights education and training", - "International instruments", - "Torture and other CID treatment" - ] - }, - { - "text": "Ratify international human rights treaties, including the Second Optional Protocol to the International Covenant on Civil and Political Rights, aiming at the abolition of the death penalty", - "values": [ - "Death penalty", - "International instruments" - ] - }, - { - "text": "Ratify the following conventions and protocols: CEDAW, the ICESCR, the Convention on the Rights of the Child, the Convention on the Rights of Persons with Disabilities, the International Convention on the Protection of the Rights of All Migrant Workers and Members of Their Families, the International Convention for the Protection of All Persons from Enforced Disappearance, the Statute of the International Criminal Court, those of the ILO, the United Nations Declaration on Indigenous Peoples, and all those from the Inter-American Human Rights System", - "values": [ - "International instruments" - ] - }, - { - "text": "Adopt new measures to deal with the growing aging of the population ", - "values": [ - "Other" - ] - }, - { - "text": "Review the legislative framework on torture and cruel, inhuman and degrading treatment, and the resources of the Ombudsman office so as to ensure that, as the national preventive mechanism, it can carry out its mandate in an effective and independent manner", - "values": [ - "Detention", - "National Human Rights Institution", - "Torture and other CID treatment" - ] - }, - { - "text": "Conduct reforms to diminish the backlog of pre-trial detainees ", - "values": [ - "Detention", - "Justice" - ] - }, - { - "text": "Continue to prioritize poverty alleviation in its socio-economic development so that its people will better enjoy their right to life and their right to development", - "values": [ - "Development", - "ESC rights - general", - "Poverty" - ] - }, - { - "text": "Immediately, thoroughly and un-biasedly investigate all cases of allegations of abuses of authority by law enforcement officials, including while dispersing demonstrations ", - "values": [ - "Freedom of association and peaceful assembly", - "Human rights violations by state agents" - ] - }, - { - "text": "Continue its efforts to prevent, penalize and prosecute sexual crimes perpetrated against women, girls and boys and to ensure the social rehabilitation and reintegration of the victims of such crimes ", - "values": [ - "Rights of the Child", - "Women's rights" - ] - }, - { - "text": "Review the law on abortion to expand the circumstances in which it can be carried out", - "values": [ - "Women's rights" - ] - }, - { - "text": "Evaluate the possibility to develop a national human rights action plan ", - "values": [ - "General" - ] - }, - { - "text": "Develop and implement a comprehensive set of measures to fight discrimination and protect the rights of women and children, adopt a comprehensive legislation to fight the sexual exploitation of children as well as corporal punishment, adopt a plan of action to combat domestic violence and create a mechanism to protect the rights of a child", - "values": [ - "Rights of the Child", - "Torture and other CID treatment", - "Women's rights" - ] - }, - { - "text": "Strengthen protection measures to protect children against violence", - "values": [ - "Rights of the Child" - ] - }, - { - "text": "Ensure that all serious allegations of ill-treatment are investigated promptly through independent inquiries", - "values": [ - "Torture and other CID treatment" - ] - }, - { - "text": "Also continue the implementation of factual programmes in order to ensure the right to food and health", - "values": [ - "Right to food", - "Right to health" - ] - }, - { - "text": "Continue to pursue gender equality by adopting the Optional Protocol to the Convention on the Elimination of All Forms of Discrimination against Women", - "values": [ - "International instruments", - "Women's rights" - ] - }, - { - "text": "Ratify the following international instruments: the International Convention for the Protection of All Persons from Enforced Disappearances (CED), OP-CAT and the Optional Protocol to the International Covenant on Economic, Social and Cultural Rights (OP-ICESCR) ", - "values": [ - "Detention", - "ESC rights - general", - "Enforced disappearances", - "International instruments", - "Torture and other CID treatment" - ] - }, - { - "text": "Encourage stronger promotion of the rights of women and children by meeting their immediate post-conflict needs. These include, for example, the elimination of gender inequalities, the promotion of equal educational opportunities as well as equal opportunities for socio-economic and political participation, and the elimination of violence against women and children", - "values": [ - "Rights of the Child", - "Women's rights" - ] - }, - { - "text": "Take all necessary measures to ensure access to safe drinking water and adequate sanitation facilities throughout the country", - "values": [ - "Right to water and sanitation" - ] - }, - { - "text": "Continue the reform of its judicial system leading to an independent judiciary, in compliance with established international standards", - "values": [ - "Justice" - ] - }, - { - "text": "Rectify possible shortcomings in the registration procedure for all newborn children.", - "values": [ - "Rights of the Child" - ] - }, - { - "text": "In accordance with the relevant General Assembly resolution, establish a moratorium on the death penalty as a first step towards global abolition", - "values": [ - "Death penalty" - ] - }, - { - "text": "Implement measures to improve education by way of quality standards and criteria", - "values": [ - "Right to education" - ] - }, - { - "text": "Reinforce due-process safeguards for detainees imprisoned for conduct allegedly related to terrorism or to the operation of armed groups ", - "values": [ - "Counter-terrorism" - ] - }, - { - "text": "Start medium and long-term development projects in the under-developed regions in order to generate employment and promote national harmony ", - "values": [ - "Development" - ] - }, - { - "text": "Consider the ratification of those international human rights instruments to which the United States is still not a party", - "values": [ - "International instruments" - ] - }, - { - "text": "Conduct immediate, independent, objective and adequate investigations in all cases of racially motivated crimes and hate crimes in the framework of judicial process ", - "values": [ - "Racial discrimination" - ] - }, - { - "text": "Increase access to school education for all children, especially girls, children in rural areas and children of marginalised groups such as nomadic persons", - "values": [ - "Right to education", - "Rights of the Child", - "Women's rights" - ] - }, - { - "text": "Continue its efforts for the promotion of the role of women within the Government and elected bodies ", - "values": [ - "Women's rights" - ] - }, - { - "text": "Take all measures that guarantee the representation of minorities in social and political areas", - "values": [ - "CP rights - general", - "ESC rights - general", - "Minorities" - ] - }, - { - "text": "Provide effective sanctions for discrimination against people living with HIV, to ban mandatory HIV testing as a condition of employment and to ensure that persons living with HIV are not arbitrarily prevented from working or attending vocational schools.", - "values": [ - "HIV - Aids" - ] - }, - { - "text": "Create local preventive mechanisms at each state level for effective implementation of the National Mechanism for the Prevention and Combat of Torture", - "values": [ - "Torture and other CID treatment" - ] - }, - { - "text": "Give continuity to the strengthening of the national human rights institutions", - "values": [ - "National Human Rights Institution" - ] - }, - { - "text": "Accelerate and strengthen migrant integration into Lithuanian society, including by developing awareness campaigns and educational programs as well as preventing and investigating manifestations of hatred", - "values": [ - "Human rights education and training", - "Migrants" - ] - }, - { - "text": "Strengthen efforts to prevent and combat all forms of discrimination and violence against women and children, adopting comprehensive legislation and launching awareness-raising campaigns. Ensure that women victims of violence receive appropriate help and perpetrators are brought to justice", - "values": [ - "Human rights education and training", - "Rights of the Child", - "Women's rights" - ] - }, - { - "text": "Respect the right of peaceful association according to its domestic law and international human rights law", - "values": [ - "Freedom of association and peaceful assembly", - "International instruments" - ] - }, - { - "text": "Take steps to ratify the Optional Protocol to the Convention on the Rights of the Child on the involvement of children in armed conflict", - "values": [ - "International humanitarian law", - "International instruments", - "Rights of the Child" - ] - }, - { - "text": "Take all necessary measures to protect the rights of persons belonging to religious minorities, and repeal laws which restrict religious conversion", - "values": [ - "Freedom of religion and belief", - "Minorities" - ] - }, - { - "text": "Share its good practices in terms of affording decent housing for vulnerable groups, so that others could benefit from such a positive experience ", - "values": [ - "Right to housing" - ] - }, - { - "text": "Continue the implementation of the recommendations of the Truth and Reconciliation Commission to foster national harmony", - "values": [ - "Justice" - ] - }, - { - "text": "Continue strengthening its educational system, guaranteeing the right to education to children and adolescents with disabilities", - "values": [ - "Disabilities", - "Right to education", - "Rights of the Child" - ] - }, - { - "text": "Immediately criminalize rape within marriage and give men and women equal rights of inheritance ", - "values": [ - "Women's rights" - ] - }, - { - "text": "Prohibit incitement to hatred and violence, and eliminate hate speech and discrimination in the media", - "values": [ - "Racial discrimination" - ] - }, - { - "text": "Consider the repeal of the law that allows for the death penalty and introduce a moratorium on the death penalty with a view to total abolishment in line with Liberia's obligations under the Second Optional Protocol to the International Covenant on Civil and Political Rights, aiming at the abolition of the death penalty", - "values": [ - "Death penalty", - "International instruments" - ] - }, - { - "text": "Take further action to enforce and implement the laws that have been passed and take measures to ensure that women are informed of their rights.", - "values": [ - "Women's rights" - ] - }, - { - "text": "Ensure respect for the right to freedom of assembly, in line with its international obligations", - "values": [ - "Freedom of association and peaceful assembly" - ] - }, - { - "text": "Take measures improving the security of citizens and enhancing protection of children", - "values": [ - "Rights of the Child" - ] - }, - { - "text": "Consider strengthening programmes to combat and prevent HIV/AIDS, with special attention to women and children ", - "values": [ - "HIV - Aids", - "Rights of the Child", - "Women's rights" - ] - }, - { - "text": "Ensure that high goals of economic development by 2012 contribute to bringing about a decisive turn in the promotion and protection of human rights", - "values": [ - "Development" - ] - }, - { - "text": "Improve the implementation of national programmes in development and poverty eradication", - "values": [ - "Development", - "Poverty" - ] - }, - { - "text": "Ratify the OP-CPRD and the OP-CRC-IC ", - "values": [ - "Disabilities", - "International instruments", - "Rights of the Child" - ] - }, - { - "text": "Continue to focus on the overall improvement in the quality of education provided and make access to education easier for all ", - "values": [ - "Right to education" - ] - }, - { - "text": "Ratify the United Nations Educational, Scientific and Cultural Organization Convention against Discrimination in Education", - "values": [ - "International instruments", - "Right to education" - ] - }, - { - "text": "Maintain results achieved in reducing maternal and child mortality ", - "values": [ - "Right to health", - "Rights of the Child", - "Women's rights" - ] - }, - { - "text": "Submit, as soon as possible, country reports to the Committee on the Elimination of Racial Discrimination, the Committee on Economic, Social and Cultural Rights, the Committee on the Elimination of Discrimination Against Women, the Committee against Torture and the Committee on the Rights of the Child", - "values": [ - "ESC rights - general", - "Racial discrimination", - "Rights of the Child", - "Torture and other CID treatment", - "Treaty bodies", - "Women's rights" - ] - }, - { - "text": "Respect the integrity and independence of the Constitutional Court", - "values": [ - "Justice" - ] - }, - { - "text": "Enforce legislation criminalising gender-based violence and prosecute all cases of violence against women", - "values": [ - "Women's rights" - ] - }, - { - "text": "Enhance and develop laws to protect the rights of the child", - "values": [ - "Rights of the Child" - ] - }, - { - "text": "Impose at least a moratorium on the death penalty", - "values": [ - "Death penalty" - ] - }, - { - "text": "Continue the practice of implementing programmes aimed at further improving the welfare of the population ", - "values": [ - "Development" - ] - }, - { - "text": "Pursue efforts to enhance women\u2019s rights and fight all sorts of discrimination against women", - "values": [ - "Women's rights" - ] - }, - { - "text": "Adopt a general law against discrimination", - "values": [ - "Other" - ] - }, - { - "text": "Adopt legal and administrative measures in order to guarantee the basic rights to asylum seekers and refugees, in particular rights which allow them the access to health assistance services", - "values": [ - "Asylum-seekers - refugees", - "Right to health" - ] - }, - { - "text": "Abolish section 148 of the Criminal Code, which criminalizes consensual sexual practices between persons of the same sex, as a step towards decreasing discrimination of same-sex relationships", - "values": [ - "Sexual Orientation and Gender Identity" - ] - }, - { - "text": "Engage without any delay to prosecute all those who have committed serious violations of human rights, in particular during the post-electoral crisis in 2010, without any consideration of their ethnic, religious or political status", - "values": [ - "Justice" - ] - }, - { - "text": "Continue innovative education programs recognizing sexual diversity and adopt a health policy that further enhances awareness on and sensitizing of sexual orientation and gender issues amongst health personnel ", - "values": [ - "Right to health", - "Sexual Orientation and Gender Identity" - ] - }, - { - "text": "Compile a new voter registration list to ensure full participation of the electorate in future elections.", - "values": [ - "Elections" - ] - }, - { - "text": "Build on its work to tackle gender-based violence, including through Basic Law 1-2004, and measures recently introduced to allow women who are illegal migrants to report acts of violence without fear of personal disadvantage ", - "values": [ - "Migrants", - "Women's rights" - ] - }, - { - "text": "Guarantee and ensure full freedom of expression, association and peaceful assembly of journalists, activists, human rights defenders and participants in demonstrations", - "values": [ - "Freedom of association and peaceful assembly", - "Freedom of opinion and expression", - "Freedom of the press", - "Human rights defenders" - ] - }, - { - "text": "In view of the Secretary-General's reports, elaborate a national action plan that addresses the prevalence of sexual violence, especially towards girls", - "values": [ - "Rights of the Child", - "Women's rights" - ] - }, - { - "text": "Establish an effective arrangement for dialogue with representatives of minority groups in order to be properly informed about their problems and needs, and develop policies and programmes to improve their situation", - "values": [ - "Minorities" - ] - }, - { - "text": "Follow up on the CESCR recommendation to combat racism and xenophobia and to enforce effectively the legal prohibitions against discrimination in the enjoyment of economic, social and cultural rights ", - "values": [ - "ESC rights - general", - "Racial discrimination", - "Treaty bodies" - ] - }, - { - "text": "Take the necessary measures to improve detention facilities, including renewing its Prisons Act, which was enacted in 1894", - "values": [ - "Detention" - ] - }, - { - "text": "Respect the right of the opposition members to travel freely, to hold meetings, to express their views and to have access to the media without discrimination ", - "values": [ - "Freedom of association and peaceful assembly", - "Freedom of movement", - "Freedom of the press" - ] - }, - { - "text": "Accede to the 1951 Refugee Convention and its 1967 Protocol and adopt measures to ensure recognition of refugees and regularization of their stay, including access to basic needs and protection against exploitation", - "values": [ - "Asylum-seekers - refugees", - "International instruments" - ] - }, - { - "text": "Bring domestic legislation on sexual exploitation and trafficking of minors in line with international standards ", - "values": [ - "Rights of the Child", - "Trafficking" - ] - }, - { - "text": "Remove restrictions on accessing internet in the country, which runs counter to the criteria of the ICCPR and the principle of proportionality", - "values": [ - "Freedom of opinion and expression", - "International instruments" - ] - }, - { - "text": "Review existing legislation to enhance the exercise of the right to freedom of expression, association and peaceful assembly", - "values": [ - "Freedom of association and peaceful assembly", - "Freedom of opinion and expression" - ] - }, - { - "text": "Continue to consider ratification of international instruments", - "values": [ - "International instruments" - ] - }, - { - "text": "Work towards supporting civil society efforts in promoting human rights by allocating the necessary resources required to achieve its activities in disseminating awareness of human rights principles ", - "values": [ - "Civil society", - "Human rights education and training" - ] - }, - { - "text": "Continue training efforts in the area of human rights education for security personnel and in the field of discrimination against vulnerable groups", - "values": [ - "Human rights education and training" - ] - }, - { - "text": "Redouble efforts in the area of poverty eradication, including by allocating adequate human and financial resources and providing support and material assistance to the disadvantaged groups in the country", - "values": [ - "Poverty" - ] - }, - { - "text": "Recommended the repeal of laws discriminating against non-Muslims, if any.", - "values": [ - "Freedom of religion and belief" - ] - }, - { - "text": "Increase cooperation with civil society ", - "values": [ - "Civil society" - ] - }, - { - "text": "Continue its efforts with a view to ensuring equality of all before the law and to guaranteeing equal citizenship rights to women and men", - "values": [ - "Women's rights" - ] - }, - { - "text": "Adopt necessary legislative and administrative measures to guarantee freedom of religion ", - "values": [ - "Freedom of religion and belief" - ] - }, - { - "text": "Extend a standing invitation to Special Procedures mandate holders ", - "values": [ - "Special procedures" - ] - }, - { - "text": "Analyse the ratification of the ILO Domestic Workers Convention, 2011 (No. 189)", - "values": [ - "International instruments", - "Labour" - ] - }, - { - "text": "Seek close cooperation with the national human rights institution and local NGOs in the implementation of recommendations addressed to Oman in the course of this UPR and which will enjoy the support of the Government ", - "values": [ - "Civil society", - "National Human Rights Institution", - "UPR process" - ] - }, - { - "text": "Approve a reform to the military code, allowing its judicial system to be in accordance with international human rights standards", - "values": [ - "International instruments", - "Justice" - ] - }, - { - "text": "Continue its efforts to develop a system to protect journalists and safeguard freedom of expression", - "values": [ - "Freedom of opinion and expression", - "Freedom of the press" - ] - }, - { - "text": "Ensure that all prisoners are provided with the minimum standards of humane treatment and that the conditions of all prisons and detention centres meet international human rights standards, including the United Nations Standard Minimum Rules for the Treatment of Prisoners (the Nelson Mandela Rules)", - "values": [ - "Detention", - "Torture and other CID treatment" - ] - }, - { - "text": "Strengthen the publicity, implementation and monitoring of the National Human Rights Programme and step-up dialogue with civil society in this regard", - "values": [ - "Civil society" - ] - }, - { - "text": "Guarantee the rights of detainees with disabilities by providing them with separate detention facilities", - "values": [ - "Detention", - "Disabilities" - ] - }, - { - "text": "The Royal Government is committed to effectively implementing the policies of immigration along with the policy against all kinds of discrimination and at the same time safeguarding the country's sovereignty, national interests, reputations, dignity and harmony in the society.", - "values": [ - "Migrants", - "Racial discrimination" - ] - }, - { - "text": "Take concrete steps to ensure freedom of expression, including for civil society and the media, and ensure that harassment, threats, unlawful detainment and intimidation of these groups by the national security services end immediately", - "values": [ - "Civil society", - "Detention", - "Freedom of opinion and expression", - "Freedom of the press", - "Human rights violations by state agents" - ] - }, - { - "text": "Continue to work on its national plans for social inclusion and poverty alleviation.", - "values": [ - "Poverty" - ] - }, - { - "text": "Adopt policies to ensure equality of rights for all persons, without discrimination of gender, religion, race or sexual orientation, in line with international standards", - "values": [ - "Freedom of religion and belief", - "Racial discrimination", - "Sexual Orientation and Gender Identity", - "Women's rights" - ] - }, - { - "text": "Prosecute cases of discrimination based on ethnic origin and language in employment", - "values": [ - "Labour", - "Minorities", - "Racial discrimination" - ] - }, - { - "text": "Continue its efforts to improve conditions for detention of minors, in particular, set up, as quickly as possible, the security unit of the socio-educational centre of Dreiborn ", - "values": [ - "Detention", - "Rights of the Child" - ] - }, - { - "text": "Take effective measures to ensure the equal treatment of women in law and practice", - "values": [ - "Women's rights" - ] - }, - { - "text": "Release prisoners detained as conscientious objectors to military service and ensure that civilian alternatives to military service are not punitive or discriminatory and remain under civilian control", - "values": [ - "Detention", - "Freedom of opinion and expression" - ] - }, - { - "text": "Accede to the Agreement on the Privileges and Immunities of the International Criminal Court", - "values": [ - "International instruments", - "Justice" - ] - }, - { - "text": "Broadly disseminate the report of the Truth, Justice and Reconciliation Commission, and establish a legislative and administrative framework for the effective implementation of its recommendations", - "values": [ - "Justice" - ] - }, - { - "text": "Continue to strengthen data collection to better understand the scale and severity of hate crimes, in order to assess the impact of the Hate Crime Action Plan", - "values": [ - "Racial discrimination" - ] - }, - { - "text": "Strengthen its cooperation with the United Nations, through a standing invitation to all special procedures of the Human Rights Council and by submitting reports due on the application of international human rights instruments that the country is part of ", - "values": [ - "Special procedures", - "Treaty bodies" - ] - }, - { - "text": "Consider creating a national human rights institution in compliance with the Paris Principles", - "values": [ - "National Human Rights Institution" - ] - }, - { - "text": "Intensify efforts to increase the levels of education for Maori and Pacific families while protecting and promoting their cultural heritage ", - "values": [ - "ESC rights - general", - "Indigenous peoples", - "Right to education" - ] - }, - { - "text": "Continue efforts to train authorities involved in the administration and handling of justice in cases that affect indigenous peoples on the human rights of this group of society and review the cases of indigenous detainees, in particular children and women, with a view to providing them adequate assistance", - "values": [ - "Detention", - "Human rights education and training", - "Indigenous peoples", - "Rights of the Child", - "Women's rights" - ] - }, - { - "text": "Adopt measures to ensure the protection of free speech and freedom of the press, ensuring that human rights defenders can carry out their legitimate activities", - "values": [ - "Freedom of opinion and expression", - "Freedom of the press", - "Human rights defenders" - ] - }, - { - "text": "Continue taking measures aimed at improving the conditions in prisons and other detention facilities", - "values": [ - "Detention" - ] - }, - { - "text": "Take concrete steps for the elimination of all forms of discrimination against minorities", - "values": [ - "Minorities", - "Racial discrimination" - ] - }, - { - "text": "Amend Act No. 22 of 2006 on family and personal status matters to eliminate provisions that lead to discrimination against women, for example the failure of the law to criminalize marital rape ", - "values": [ - "Women's rights" - ] - }, - { - "text": "Ensure unhindered access of children with disabilities to quality and inclusive education ", - "values": [ - "Disabilities", - "Right to education", - "Rights of the Child" - ] - }, - { - "text": "Develop and implement, in close consultation with civil society, a national human rights plan with clear, specific and measurable goals", - "values": [ - "Civil society" - ] - }, - { - "text": "Continue successfully implementing affirmative measures in order to guarantee gender equality and all its ensuing consequences ", - "values": [ - "Women's rights" - ] - }, - { - "text": "Speed up the process of accession to the ICESCR and ICCPR", - "values": [ - "CP rights - general", - "ESC rights - general", - "International instruments" - ] - }, - { - "text": "Ensure full respect for international humanitarian law (IHL) and also integrate IHL into the training programme of its armed and security forces, at all levels ", - "values": [ - "International humanitarian law" - ] - }, - { - "text": "Cognizant of the clear benefits of working in close collaboration with CSOs, the government is committed to fostering ever closer ties with CSOs to ensure that the programs achieve the set objectives.", - "values": [ - "Civil society" - ] - }, - { - "text": "Guarantee that officials responsible for acts of arbitrary arrest, extrajudicial execution and excessive use of force, torture and rape are brought to justice", - "values": [ - "Detention", - "Extrajudicial executions", - "Human rights violations by state agents", - "Rights of the Child", - "Torture and other CID treatment", - "Women's rights" - ] - }, - { - "text": "Continue its efforts to establish the office of the Ombudsman for the Rights of the child", - "values": [ - "National Human Rights Institution", - "Rights of the Child" - ] - }, - { - "text": "Halt the colonization with illegal settlements and the destruction of the homes, cultural and religious sites of the Palestinian people", - "values": [ - "ESC rights - general", - "Freedom of religion and belief", - "Right to housing" - ] - }, - { - "text": "Conclude the drafting of the Government bill on administrative proceedings and the preparations of the client service strategy ", - "values": [ - "Other" - ] - }, - { - "text": "Strengthen the protection of minorities through a reform of its criminal code, incorporating offences punishing hate crimes and incitation to hatred as well as through ensuring the effective implementation and adequate resourcing of the Action Plan for the support of the Roma", - "values": [ - "Minorities", - "Racial discrimination" - ] - }, - { - "text": "Consider acceding to the International Covenant on Economic, Social and Cultural Rights ", - "values": [ - "ESC rights - general", - "International instruments" - ] - }, - { - "text": "Include in the relevant legal framework the definition of the crimes of sale of children and child pornography ", - "values": [ - "Rights of the Child", - "Trafficking" - ] - }, - { - "text": "Continue to implement laws and regulations for protection and promotion of rights of people with disabilities", - "values": [ - "Disabilities" - ] - }, - { - "text": "Take measures to guarantee effective access for the women victims of gender-based violence to justice, redress and protection ", - "values": [ - "Women's rights" - ] - }, - { - "text": "Consider lifting its reservations in respect of article 10, paragraphs 2 (b) and 3 of the ICCPR, in line with South Africa's previous recommendation ", - "values": [ - "CP rights - general", - "International instruments", - "UPR process" - ] - }, - { - "text": "Ratify the international legal instruments on human rights to which it is not yet a party ", - "values": [ - "International instruments" - ] - }, - { - "text": "Raise the minimum age of criminal responsibility to at least 12 years, in line with the recommendations by the Committee on the Rights of the Child ", - "values": [ - "Justice", - "Rights of the Child", - "Treaty bodies" - ] - }, - { - "text": "Strengthen efforts to prevent and combat all forms of violence against women, including domestic violence and sexual abuse, and effectively implement the legislation recently adopted in this field", - "values": [ - "Women's rights" - ] - }, - { - "text": "Incorporate into the national legislation measures to implement the Rome Statute of the International Criminal Court, including measures to cooperate with the Court", - "values": [ - "International instruments", - "Justice" - ] - }, - { - "text": "Continue with the efforts undertaken by the National Disabilities Unit, with a view to promoting the ratification of CRPD ", - "values": [ - "Disabilities", - "International instruments" - ] - }, - { - "text": "Continue the process of signing and ratifying the Convention on the Rights of Persons with Disabilities", - "values": [ - "Disabilities", - "International instruments" - ] - }, - { - "text": "Establish a national institution for the promotion and protection of human rights in conformity with the Paris Principles", - "values": [ - "National Human Rights Institution" - ] - }, - { - "text": "Analyse the possibility of abolishing the death penalty", - "values": [ - "Death penalty" - ] - }, - { - "text": "Take all the necessary steps to respect the Article 26 of the Haitian Constitution stipulating that the preventive custody should not exceed 48 hours ", - "values": [ - "Detention" - ] - }, - { - "text": "Continue the implementation of the provisions of the new Constitution so as to ensure full respect for human rights ", - "values": [ - "General" - ] - }, - { - "text": "That cases of caste-based discriminations be reported, investigated, perpetrators prosecuted and victims of such violence are compensated ", - "values": [ - "Racial discrimination" - ] - }, - { - "text": "Ensure separation of juvenile prisoners from adult inmates ", - "values": [ - "Detention", - "Rights of the Child" - ] - }, - { - "text": "Consider constructively the recommendations made during this UPR and made by the commission of inquiry on human rights in the Democratic People's Republic of Korea (COI)", - "values": [ - "Justice", - "UPR process" - ] - }, - { - "text": "Take all necessary measures to prevent torture and ensure that the absolute prohibition of torture is observed as recommended.", - "values": [ - "Torture and other CID treatment" - ] - }, - { - "text": "Further consider acceding to the relevant Conventions, especially the ICRMW in line with its domestic legislative process", - "values": [ - "International instruments", - "Labour", - "Migrants" - ] - }, - { - "text": "Take further actions to ensure free humanitarian access and to engage the regional administrations and armed groups to work towards this end ", - "values": [ - "Other" - ] - }, - { - "text": "Continue to actively engage its regional and international partners to mobilize the necessary resources for the implementation of its human rights program ", - "values": [ - "Technical assistance and cooperation" - ] - }, - { - "text": "Further promote the right to health in Kiribati, in particular by providing access to essential health-care facilities", - "values": [ - "Right to health" - ] - }, - { - "text": "Continue the process of accession to international human rights instruments, particularly the ratification of CAT and OP-CAT and ICERD", - "values": [ - "Detention", - "International instruments", - "Racial discrimination", - "Torture and other CID treatment" - ] - }, - { - "text": "Issue a standing invitation to the special procedures mandate holders ", - "values": [ - "Special procedures" - ] - }, - { - "text": "Provide the Truth for Reconciliation Commission of Thailand with all the material resources to ensure its independence and effectiveness", - "values": [ - "Justice" - ] - }, - { - "text": "Ensure effective enforcement of the Law on Violence against Women ", - "values": [ - "Women's rights" - ] - }, - { - "text": "Strengthen the efforts to prevent and combat human trafficking, protect victims and guarantee them access to medical, social, judicial and rehabilitation services, as well as psychological support", - "values": [ - "Trafficking" - ] - }, - { - "text": "Ensure the protection of indigenous peoples' rights and ensure the right of indigenous peoples to be heard before traditional indigenous land is being exploited.", - "values": [ - "Indigenous peoples", - "Right to land" - ] - }, - { - "text": "Make efforts to establish an independent national human rights commission in accordance with the Paris Principles", - "values": [ - "National Human Rights Institution" - ] - }, - { - "text": "Continue efforts to strengthen its international cooperation to prevent and punish acts involving the sale of children, child prostitution, child pornography and child sex tourism ", - "values": [ - "Rights of the Child", - "Trafficking" - ] - }, - { - "text": "Consider amending legislation that penalizes consensual same-sex relations between adults in order to guarantee the rights of the lesbian, gay, bisexual, transgender, and intersex community, among others", - "values": [ - "Sexual Orientation and Gender Identity" - ] - }, - { - "text": "Continue all initiatives and efforts to improve the standard of living of the people of Brunei, especially in the field of health and quality of education", - "values": [ - "Right to education", - "Right to health" - ] - }, - { - "text": "Increase the resources allocated to the Commissioner for Gender Equality and Equal Treatment as a matter of priority ", - "values": [ - "Women's rights" - ] - }, - { - "text": "Undertake further measures to ensure freedom of the press based on the decriminalization of press offences and respect for the legitimate rights of the press", - "values": [ - "Freedom of the press" - ] - }, - { - "text": "Continue to disseminate the culture of human rights and education", - "values": [ - "Human rights education and training" - ] - }, - { - "text": "Ensure, in particular through its Independent National Security Legislation Monitor, that its national legislation is in keeping with its international obligations in the field of human rights ", - "values": [ - "International instruments" - ] - }, - { - "text": "Declare a moratorium on the death penalty with a view to its abolition, and sign and ratify the Second Optional Protocol to the International Covenant on Civil and Political Rights ", - "values": [ - "Death penalty", - "International instruments" - ] - }, - { - "text": "Continue improving the conditions of children, women, Dalits, indigenous people, refugees and migrants taking into account the special situation and difficulties that those groups have to overcome ", - "values": [ - "Asylum-seekers - refugees", - "Indigenous peoples", - "Migrants", - "Minorities", - "Rights of the Child", - "Women's rights" - ] - }, - { - "text": "Further strengthen its protection measures to remediate the attacks against trade unionists ", - "values": [ - "Labour" - ] - }, - { - "text": "Further strengthen the efforts to promote the rights of the child, in particular to prevent crimes against children", - "values": [ - "Rights of the Child" - ] - }, - { - "text": "Ratify as soon as possible the International Convention for the Protection of All Persons from Enforced Disappearance and fully recognize the competence of the Committee on Enforced Disappearances, as provided for in articles 31 and 32 of the Convention ", - "values": [ - "Enforced disappearances", - "International instruments" - ] - }, - { - "text": "Sign and ratify CAT, CED and CRPD ", - "values": [ - "Disabilities", - "Enforced disappearances", - "International instruments", - "Torture and other CID treatment" - ] - }, - { - "text": "Expedite the adoption of pending bills such as the Child Care and Protection Act, with a view to ensuring better protection for children against all types of violence and abuses", - "values": [ - "Rights of the Child" - ] - }, - { - "text": "Ensure freedom of expression and media freedom by bringing national legislation into line with international standards, including by decriminalizing defamation and related offences in relevant national laws", - "values": [ - "Freedom of opinion and expression", - "Freedom of the press" - ] - }, - { - "text": "Free without delay all persons detained for political reasons ", - "values": [ - "Detention", - "Freedom of opinion and expression" - ] - }, - { - "text": "Step up efforts to provide protection to migrant workers, guaranteeing them full access to justice", - "values": [ - "Labour", - "Migrants" - ] - }, - { - "text": "Continue cooperation with international mechanisms to promote and protect human rights", - "values": [ - "General" - ] - }, - { - "text": "Accede to the International Convention on the Protection of the Rights of All Migrant Workers and Members of Their Families ", - "values": [ - "International instruments", - "Labour", - "Migrants" - ] - }, - { - "text": "Further expand and promote human rights education and training programmes", - "values": [ - "Human rights education and training" - ] - }, - { - "text": "Accede to international human rights instruments which is not yet acceded to", - "values": [ - "International instruments" - ] - }, - { - "text": "Set up structural measures to address systematically violence and violation of fundamental rights, of which women and human rights defenders are victims", - "values": [ - "Human rights defenders", - "Women's rights" - ] - }, - { - "text": "Reform its defamation legislation in conformity with article 19 of the International Covenant on Civil and Political Rights (ICCPR), investigate all incidents of intimidation and violence against journalists and bring perpetrators to justice ", - "values": [ - "Freedom of opinion and expression", - "Freedom of the press", - "International instruments" - ] - }, - { - "text": "Consider establishing a national human rights institution, in line with the Paris Principles", - "values": [ - "National Human Rights Institution" - ] - }, - { - "text": "Allocate sufficient resources to the National Child Rigths Committee in order to reinstate the functions of this Committee", - "values": [ - "Rights of the Child" - ] - }, - { - "text": "Allow the establishment of independent newspapers and other media, allow its citizens to access the Internet and the international media, and abolish compulsory indoctrination sessions", - "values": [ - "Freedom of the press" - ] - }, - { - "text": "Strengthen its efforts to ensure formal and substantive equality for women, in addition to combating gender violence in all its forms", - "values": [ - "Women's rights" - ] - }, - { - "text": "Implement standard procedures to identify victims of human trafficking, establish a referral mechanism to facilitate the provision of protective services for them and dedicate financial or in kind support to NGOs providing services to victims ", - "values": [ - "Civil society", - "Trafficking" - ] - }, - { - "text": "Establish a comprehensive policy for children with disabilities, as recommended by the Committee on the Rights of the Child", - "values": [ - "Disabilities", - "Rights of the Child", - "Treaty bodies" - ] - }, - { - "text": "Adopt effective policy measures aimed at combating and eliminating violence against women, including domestic violence, and encourage the high level participation of women in the labour market and especially decision making ", - "values": [ - "Women's rights" - ] - }, - { - "text": "Adopt and implement appropriate measures to combat sexual abuse of minors ", - "values": [ - "Rights of the Child" - ] - }, - { - "text": "Consolidate the national human rights infrastructure ", - "values": [ - "General" - ] - }, - { - "text": "Consider introducing legislation requiring businesses to report publicly on efforts to ensure transparency in supply chains, as part of Sri Lanka\u2019s national action plan to combat human trafficking", - "values": [ - "Trafficking" - ] - }, - { - "text": "Continue working with organizations and social movements in the implementation of the national human rights plan, taking into account the vast and inclusive consultation process that led to its approval", - "values": [ - "General" - ] - }, - { - "text": "Adopt a draft law on gender equality and the establishment of an institutional mechanism responsible for the promotion of equality ", - "values": [ - "Women's rights" - ] - }, - { - "text": "Continue to provide the subsidies and financial support through its MediShield Life Policy for all its citizens and permanent residents, especially the elderly and needy ", - "values": [ - "Right to health" - ] - }, - { - "text": "Guarantee the right to freedom of religion for the Eritrean citizens ", - "values": [ - "Freedom of religion and belief" - ] - }, - { - "text": "Consider as a good practice, to be continued and strengthened, the project conducted by the Ministry of Education, in the framework of the Peace Agreements, to promote a culture of peace in Guatemalan society, especially among young people.", - "values": [ - "Other" - ] - }, - { - "text": "Continue to promote gender equality in the workplace and to accelerate work on reducing the wage gap", - "values": [ - "Women's rights" - ] - }, - { - "text": "Fully respect its international obligations regarding the freedoms of assembly and association, in particular with regard to the activities of trade unions, and ensure that its national legislation complies with these obligations", - "values": [ - "Freedom of association and peaceful assembly", - "Labour" - ] - }, - { - "text": "Consider ratifying the Convention against Discrimination in Education", - "values": [ - "International instruments", - "Right to education" - ] - }, - { - "text": "Continue to implement programmes aimed at improving the accessibility for persons with disabilities in the learning and working environment ", - "values": [ - "Disabilities", - "Labour", - "Right to education" - ] - }, - { - "text": "Implement CEDAW's call to put in place a strategy to eliminate violence, harmful practices and stereotypes against women in line with the Convention", - "values": [ - "International instruments", - "Torture and other CID treatment", - "Women's rights" - ] - }, - { - "text": "Continue efforts to reduce prison overcrowding in the context of the Master Plan 2008-2012-2016", - "values": [ - "Detention" - ] - }, - { - "text": "Accede to the Convention on the Reduction of Statelessness", - "values": [ - "International instruments", - "Statelessness and the right to nationality" - ] - }, - { - "text": "Enact a crime of torture as defined in article 1 of the Convention against Torture.", - "values": [ - "International instruments", - "Torture and other CID treatment" - ] - }, - { - "text": "Re-establish a moratorium on executions, with a view to the complete abolition of the death penalty, and prohibit the imposition of the death penalty against persons with mental and intellectual disabilities ", - "values": [ - "Death penalty", - "Disabilities" - ] - }, - { - "text": "Continue to seek technical assistance where capacity issues may impede progress.", - "values": [ - "Technical assistance and cooperation" - ] - }, - { - "text": "Share its experiences, best practices and information with and assist the international community in tackling challenges in the area of the right to education, taking into account positive results brought to all Cuban citizens in spite of obstacles faced by the country", - "values": [ - "Right to education" - ] - }, - { - "text": "Continue its efforts in promoting gender equality including implementing its National Gender Policy which is aimed at changing behaviour and encouraging equality between men and women in all areas of socioeconomic life and access to resources ", - "values": [ - "Women's rights" - ] - }, - { - "text": "Strengthen the national programmes to eliminate slavery and take measures to ensure that complaints regarding slavery are taken seriously and are being brought before the domestic courts", - "values": [ - "Other" - ] - }, - { - "text": "Strengthen strategies that are aimed at increasing gender equality and the economic empowerment of women", - "values": [ - "Women's rights" - ] - }, - { - "text": "End all torture or ill-treatment of detainees and the use of unlawful interrogation methods", - "values": [ - "Detention" - ] - }, - { - "text": "Repeal article 326 of the penal code, which allows perpetrators of the rape of minors to escape justice by marrying their victims, and amend the family code in order to grant women the same status and legal capacity as men", - "values": [ - "Justice", - "Rights of the Child", - "Women's rights" - ] - }, - { - "text": "Protect and respect the right to freedom of expression and introduce legislation and institutions to ensure the independence of the media, prevent censorship and promote transparency in public affairs", - "values": [ - "Freedom of opinion and expression", - "Freedom of the press" - ] - }, - { - "text": "Complete Israeli's withdrawal from all occupied Palestinian and Arab territories", - "values": [ - "Other" - ] - }, - { - "text": "Continue the implementation of measures designed to enhance the role of women in social and political life ", - "values": [ - "Women's rights" - ] - }, - { - "text": "Take concrete steps to implement its commitment to promote and protect the rights of all people to worship in peace and security without discrimination or restriction", - "values": [ - "Freedom of religion and belief" - ] - }, - { - "text": "Continue to take all necessary measures to protect all children in internally displaced persons sites and refugee camps. ", - "values": [ - "Asylum-seekers - refugees", - "Rights of the Child" - ] - }, - { - "text": "Bring domestic law into full compliance with CRC ", - "values": [ - "International instruments", - "Rights of the Child" - ] - }, - { - "text": "Proceed with the ratification of the Optional Protocol to the Convention against Torture", - "values": [ - "Detention", - "International instruments", - "Torture and other CID treatment" - ] - }, - { - "text": "Ratify international conventions, particularly ICERD, CAT, ICRMW and the International Convention for the Protection of All Persons from Enforced Disappearance (CPED), with the aim of enacting them into national law", - "values": [ - "Enforced disappearances", - "International instruments", - "Labour", - "Migrants", - "Racial discrimination", - "Torture and other CID treatment" - ] - }, - { - "text": "Adopt the necessary measures to guarantee that, in accordance with national legislation, children under 14 years of age do not work, and amend the Constitution so as to raise to 18 years the minimum age for engaging in work that is likely to be harmful", - "values": [ - "Labour", - "Rights of the Child" - ] - }, - { - "text": "Ratify the Second Optional of the ICCPR aiming at the abolition of the death penalty, as it is an indispensable instrument in furthering the enjoyment of the right to life ", - "values": [ - "Death penalty", - "International instruments" - ] - }, - { - "text": "Consider positively the ratification of the Optional Protocol to the Convention on the Elimination of All Forms of Discrimination against Women", - "values": [ - "International instruments", - "Women's rights" - ] - }, - { - "text": "Introduce strong legislation prohibiting attacks against journalists, effectively investigate such acts and prosecute the perpetrators, as previously recommended", - "values": [ - "Freedom of the press" - ] - }, - { - "text": "Strengthen the capacities of the CNDHC and ensure its conformity with the Paris Principles ", - "values": [ - "National Human Rights Institution" - ] - }, - { - "text": "Eliminate the mandatory character of the death penalty with a view to abolishing capital punishment altogether. In the meantime, establish a moratorium on executions", - "values": [ - "Death penalty" - ] - }, - { - "text": "Combat trafficking and sexual exploitation of women and children, and exploitation of children in the workplace.", - "values": [ - "Labour", - "Rights of the Child", - "Women's rights" - ] - }, - { - "text": "Consult with and involve civil society in the follow-up to the universal periodic review, including in the implementation of recommendations", - "values": [ - "Civil society", - "UPR process" - ] - }, - { - "text": "Continue its efforts to finalizing and adopting its Children's code as a matter of priority", - "values": [ - "Rights of the Child" - ] - }, - { - "text": "Continue to work to improve national mechanisms for the promotion of human rights", - "values": [ - "General" - ] - }, - { - "text": "Continue to ensure that women are given equitable access to the labour market and that measures introduced to address the problem of unemployment would not result in curtailment of the rights of migrant workers in San Marino", - "values": [ - "Labour", - "Migrants", - "Women's rights" - ] - }, - { - "text": "Bring the definition of torture in line with the requirements of the Convention against Torture", - "values": [ - "International instruments", - "Torture and other CID treatment" - ] - }, - { - "text": "Enact laws prohibiting forced and early marriage of girls", - "values": [ - "Rights of the Child", - "Women's rights" - ] - }, - { - "text": "Intensify activities aimed at overcoming gender stereotypes", - "values": [ - "Women's rights" - ] - }, - { - "text": "Continue efforts to allow for a harmonious life in a multi-religious, multi-cultural, multi-ethnic and multi-lingual society.", - "values": [ - "Freedom of religion and belief", - "Minorities" - ] - }, - { - "text": "Take necessary steps to ensure the election of the muftis by the Turkish Muslim Minority and repeal the relevant articles of the Law No. 3536 regarding the appointment of imams, which the minority has severely opposed ", - "values": [ - "Freedom of religion and belief", - "Minorities" - ] - }, - { - "text": "Continue implementing poverty reduction strategies, promote sustainable development, improve the people's living standard, and build a solid space so that every Beninese can fully enjoy all human rights", - "values": [ - "Development", - "Poverty" - ] - }, - { - "text": "Become a party to the Convention on the Rights of Persons with Disabilities and its Optional Protocol, and to the International Convention for the Protection of All Persons from Enforced Disappearance", - "values": [ - "Disabilities", - "Enforced disappearances", - "International instruments" - ] - }, - { - "text": "Continue with efforts to ensure broader access of victims of gender based and domestic violence to justice and regulate clearly their protection as well as improving laws on anti-discrimination and equal opportunities towards the explicit protection of women from multiple forms of discrimination", - "values": [ - "Women's rights" - ] - }, - { - "text": "Focus on priorities set by the Government to strengthen human rights, especially agriculture and food security and the development of the green belt for irrigation and water, as well as education and technology ", - "values": [ - "Right to education", - "Right to food" - ] - }, - { - "text": "Consider the possibility of acceding to the Convention against Torture and the International Convention on the Protection of the Rights of All Migrant Workers and Members of Their Families.", - "values": [ - "International instruments", - "Labour", - "Migrants", - "Torture and other CID treatment" - ] - }, - { - "text": "Consider ratification of the ILO convention on indigenous peoples", - "values": [ - "Indigenous peoples", - "International instruments" - ] - }, - { - "text": "Adopt a national strategy to fight all forms of violence against women ", - "values": [ - "Women's rights" - ] - }, - { - "text": "Sign the Optional Protocol to the United Nations Convention against Torture and Other Cruel, Inhuman or Degrading Treatment or Punishment ", - "values": [ - "Detention", - "International instruments", - "Torture and other CID treatment" - ] - }, - { - "text": "Fully implement the Magna Carta of Women for promoting gender equality ", - "values": [ - "Women's rights" - ] - }, - { - "text": "Continue and intensify the fight against social scourges, with a focus on reducing domestic violence and juvenile delinquency ", - "values": [ - "Rights of the Child", - "Women's rights" - ] - }, - { - "text": "Make the declaration provided for in article 14 of the International Convention on the Elimination of All Forms of Racial Discrimination", - "values": [ - "International instruments", - "Racial discrimination" - ] - }, - { - "text": "Abolish provisions in the Martial Law Act and section 17 of the Emergency Decree which grant immunity for criminal and civil prosecution to State officials", - "values": [ - "Human rights violations by state agents", - "Justice" - ] - }, - { - "text": "Create an institutional strategy to reduce domestic violence ", - "values": [ - "Rights of the Child", - "Women's rights" - ] - }, - { - "text": "Continue its efforts to ensure the protection of children's rights, including by fully implementing the 2012 federal justice for adolescents act and considering implementing of restorative justice system", - "values": [ - "Justice", - "Rights of the Child" - ] - }, - { - "text": "Ensure adequate resources to the Human Rights National Commission to further improve its capacity, geographical scope and its mandate", - "values": [ - "National Human Rights Institution" - ] - }, - { - "text": "Promote the identity of the Armenian minority by further addressing its educational, religious and cultural needs", - "values": [ - "Minorities" - ] - }, - { - "text": "Strengthen civil society to participate in humanitarian assistance and in major sports events", - "values": [ - "Civil society" - ] - }, - { - "text": "Step-up further efforts to strengthen health care facilities and improve health care services provided to women and children and equipping health facilities with the necessary equipment and medicine", - "values": [ - "Right to health", - "Rights of the Child", - "Women's rights" - ] - }, - { - "text": "Provide basic guarantees for migrant workers in accordance with the International Convention on the Protection of the Rights of All Migrant Workers and Members of their Families ", - "values": [ - "International instruments", - "Labour", - "Migrants" - ] - }, - { - "text": "Continue the implementation of policies aimed at improving the living standards of indigenous peoples and take all the necessary measures to eradicate discrimination against them ", - "values": [ - "Indigenous peoples" - ] - }, - { - "text": "Ensure that women have access to legal and safe abortions, especially in cases of pregnancies resulting from rape or incest", - "values": [ - "Women's rights" - ] - }, - { - "text": "Adopt further and effective measures to prevent and punish episodes of harassment against journalists and human rights defenders, and ensure that nobody is arrested for exercising their right to freedom of expression", - "values": [ - "Freedom of opinion and expression", - "Freedom of the press", - "Human rights defenders" - ] - }, - { - "text": "Invest the necessary resources to ensure the effective socialisation and implementation of its national policy on gender equality and the national strategic plan of action to eliminate gender-based violence when finalized", - "values": [ - "Women's rights" - ] - }, - { - "text": "Investigate all allegations of racial profiling, of the practice of unlawful detention and of searches of persons belonging to ethnic and religious minorities, and penalise strictly law enforcement officers who were engaged in such actions", - "values": [ - "Detention", - "Freedom of religion and belief", - "Human rights violations by state agents", - "Minorities", - "Racial discrimination" - ] - }, - { - "text": "Step up monitoring of the Internet to prevent it from being used to disseminate racist or xenophobic comments and material, with a view to prosecuting the perpetrators of such acts ", - "values": [ - "Racial discrimination" - ] - }, - { - "text": "Continue awareness-raising campaigns about the rights of people with disabilities", - "values": [ - "Disabilities" - ] - }, - { - "text": "Establish a mandatory and free education for all, with a view to continue the fight against illiteracy", - "values": [ - "Right to education" - ] - }, - { - "text": "Continue with efforts to harmonize reforms and consolidate mechanisms and institutions ", - "values": [ - "General" - ] - }, - { - "text": "Increase efforts at eliminating all forms of discrimination against women, including adopting effective measures to implement existing legislation on this subject", - "values": [ - "Women's rights" - ] - }, - { - "text": "Raise the awareness of its law enforcement officials so that individuals may exercise their right to freedom of religion or belief free from harassment or threat of human rights violations", - "values": [ - "Freedom of religion and belief", - "Human rights education and training" - ] - }, - { - "text": "Continue and improve the efforts to implement the Convention against Torture", - "values": [ - "International instruments", - "Torture and other CID treatment" - ] - }, - { - "text": "Continue the promotion of human rights in conformity with the universally recognized principles and reject attempts to impose foreign values that are outside the United Nations legally approved framework.", - "values": [ - "Other" - ] - }, - { - "text": "Remove the broad range of restrictions on the rights to peaceful assembly and freedom of expression in the Law on the Right to Peaceful Assembly and Peaceful Procession, replace the system of prior authorization for peaceful assemblies with a system of voluntary notification and remove criminal sanctions for acts protected under international standards on freedom of expression and peaceful assembly", - "values": [ - "Freedom of association and peaceful assembly", - "Freedom of opinion and expression" - ] - }, - { - "text": "Expand the support to international human rights instruments by adhering to the Convention against Torture and the International Convention for the Protection of All Persons from Enforced Disappearance", - "values": [ - "Enforced disappearances", - "International instruments", - "Torture and other CID treatment" - ] - }, - { - "text": "Continue to increase the empowerment of women in the national institutions", - "values": [ - "Women's rights" - ] - }, - { - "text": "Abolish the death penalty and declare an official moratorium on all executions as a well as repealing all provisions of national legislation that may provide for the death penalty", - "values": [ - "Death penalty" - ] - }, - { - "text": "Lift its reservations to the following international conventions: ICERD, the Convention on the Elimination of All Forms of Discrimination against Women (CEDAW), the International Covenant on Civil and Political Rights and CRC ", - "values": [ - "International instruments", - "Racial discrimination", - "Rights of the Child", - "Women's rights" - ] - }, - { - "text": "Carry out an immediate and independent investigation into the events in Odessa in May 2014 and bring those responsible to justice", - "values": [ - "Other" - ] - }, - { - "text": "Abolish corporal punishment as a disciplinary measure for children in all areas ", - "values": [ - "Rights of the Child", - "Torture and other CID treatment" - ] - }, - { - "text": "Repeal all provisions criminalizing sexual activities between consenting adults of the same sex, and reinforce its commitment to end violence and connected human rights violations committed against individuals based on their sexual orientation and identity ", - "values": [ - "Sexual Orientation and Gender Identity" - ] - }, - { - "text": "Ratify the Optional Protocol to CAT.", - "values": [ - "Detention", - "International instruments", - "Torture and other CID treatment" - ] - }, - { - "text": "Continue in its dialogue within the Constitutional Reform process with a view to adequately defining "discrimination" and guaranteeing the equal rights of all women within Bahamian society", - "values": [ - "Women's rights" - ] - }, - { - "text": "Enhance the participation of civil society in the strengthening of human rights through appropriate support to civil society organizations, in particular those who focus on the most vulnerable groups, notably children, minorities and indigenous peoples", - "values": [ - "Civil society", - "Indigenous peoples", - "Minorities", - "Rights of the Child" - ] - }, - { - "text": "Pursue the steps aimed at creating an NHRI ", - "values": [ - "National Human Rights Institution" - ] - }, - { - "text": "Continue its efforts to develop and implement the National Human Rights Action Plan", - "values": [ - "General" - ] - }, - { - "text": "Adopt a comprehensive strategy to combat discrimination, in particular towards poor children and children with disabilities", - "values": [ - "Disabilities", - "Poverty", - "Rights of the Child" - ] - }, - { - "text": "Make the necessary legislative revisions to clarify Law 14 in order to ensure the right to peaceful assembly for its citizens without fear of reprisals and penalties", - "values": [ - "Freedom of association and peaceful assembly" - ] - }, - { - "text": "Develop a comprehensive strategy and action plan to combat xenophobia and racial discrimination", - "values": [ - "Racial discrimination" - ] - }, - { - "text": "Put in place a comprehensive strategy and take all necessary measures to modify or eliminate cultural practices and stereotypes that discriminate against women.", - "values": [ - "Women's rights" - ] - }, - { - "text": "Continue to apply a zero-tolerance approach against torture and cruel, inhuman and degrading punishments, in line with domestic legislation and international human rights law", - "values": [ - "International instruments", - "Torture and other CID treatment" - ] - }, - { - "text": "Redouble its efforts to significantly reduce the rates of neonatal and maternal mortality, harmful practices, such as female genital mutilation, child marriage and forced marriage", - "values": [ - "Right to health", - "Rights of the Child", - "Torture and other CID treatment", - "Women's rights" - ] - }, - { - "text": "Develop a strategic framework for the comprehensive protection of children as regards trafficking and sexual exploitation", - "values": [ - "Rights of the Child", - "Trafficking" - ] - }, - { - "text": "Ratify and implement the Convention on the Rights of Persons with Disabilities and ensure non-discrimination against persons with disabilities by, inter alia, developing specific legislation regarding the rights of persons with disabilities and providing adequate resources, including technical assistance, to the recently established Taskforce Committee ", - "values": [ - "Disabilities", - "International instruments" - ] - }, - { - "text": "Redouble its efforts in the prevention of violence against women", - "values": [ - "Women's rights" - ] - }, - { - "text": "Continue working to improve detention conditions and to address the problem of overcrowding in prisons", - "values": [ - "Detention" - ] - }, - { - "text": "Promote greater societal integration of minorities within the education system through intercultural, interethnic, and interreligious dialogue", - "values": [ - "Freedom of religion and belief", - "Human rights education and training", - "Minorities" - ] - }, - { - "text": "Adopt specific legislation to prohibit violence against women, including domestic violence ", - "values": [ - "Women's rights" - ] - }, - { - "text": "Undertake a public advocacy campaign to combat gender-based violence, in consultation with all relevant stakeholders", - "values": [ - "Women's rights" - ] - }, - { - "text": "Speed up the process of adoption of the National Strategic Plan on Gender-based Violence", - "values": [ - "Rights of the Child", - "Women's rights" - ] - }, - { - "text": "Establish a National Human Rights Institution in keeping with the Paris Principles", - "values": [ - "National Human Rights Institution" - ] - }, - { - "text": "Continue its efforts to promote and protect the rights of women, as part of its action plan for gender equality ", - "values": [ - "Women's rights" - ] - }, - { - "text": "Continue the current practice of hosting asylum seekers and refugees and consider steps to improve their basic human rights and living conditions", - "values": [ - "Asylum-seekers - refugees" - ] - }, - { - "text": "Promote the empowerment of women and girls and prevent the promotion of discrimination against women including through speech and sermons", - "values": [ - "Rights of the Child", - "Women's rights" - ] - }, - { - "text": "Adhere to the Convention on the Protection of the Rights of All Migrant Workers and Members of Their Families ", - "values": [ - "International instruments", - "Labour", - "Migrants" - ] - }, - { - "text": "Pay special attention to access to education of children with disabilities ", - "values": [ - "Disabilities", - "Right to education", - "Rights of the Child" - ] - }, - { - "text": "Consider the possibility of signing and ratifying the International Convention on the Protection of the Rights of All Migrant Workers and Members of their Families (ICRMW).", - "values": [ - "International instruments", - "Labour", - "Migrants" - ] - }, - { - "text": "Sign the Optional Protocol to the Convention on the Rights of the Child on the involvement of children in armed conflict ", - "values": [ - "International humanitarian law", - "International instruments", - "Rights of the Child" - ] - }, - { - "text": "Consider the adoption of new legislation on violence against women, suggested also by CEDAW ", - "values": [ - "International instruments", - "Women's rights" - ] - }, - { - "text": "Become a party to the Optional Protocol to the Convention on the Rights of Persons with Disabilities", - "values": [ - "Disabilities", - "International instruments" - ] - }, - { - "text": "Repeal 14.74 of the Penal Code and take all necessary legislative and other measures to eliminate discrimination and violence on the basis of sexual orientation or gender identity", - "values": [ - "Sexual Orientation and Gender Identity" - ] - }, - { - "text": "Establish a national human rights institution fully consistent with the Paris Principles, ensure its independence and allocate sufficient resources to it", - "values": [ - "National Human Rights Institution" - ] - }, - { - "text": "Take necessary measures for establishing a specialized juvenile justice system and continue efforts for the reintegration of former child offenders in the society, in compliance with the Convention on the Rights of the Child", - "values": [ - "International instruments", - "Justice", - "Rights of the Child" - ] - }, - { - "text": "Continue to implement administrative and judicial measures for the effective protection of women and girls against sexual violence and abuse and for the punishment of perpetrators", - "values": [ - "Rights of the Child", - "Women's rights" - ] - }, - { - "text": "Maintain and strengthen efforts geared to fulfilling the Millennium Development Goals ", - "values": [ - "Development" - ] - }, - { - "text": "Abolish de jure the death penalty.", - "values": [ - "Death penalty" - ] - }, - { - "text": "Ratify the Rome Statute of the International Criminal Court (ICC) and to accede to the Agreement on the Privileges and Immunities of the ICC", - "values": [ - "International instruments", - "Justice" - ] - }, - { - "text": "Take stern and swift action by the authorities on all complaints on the treatment of migrants by the public and private authorities, as well as regular publishing of data and reports about the incidents of racially motivated crimes ", - "values": [ - "Migrants", - "Racial discrimination" - ] - }, - { - "text": "Continue its efforts to promote the rights of women and gender equality.", - "values": [ - "Women's rights" - ] - }, - { - "text": "Amend domestic law regarding homosexuality, with a view to decriminalize it", - "values": [ - "Sexual Orientation and Gender Identity" - ] - }, - { - "text": "Further continue the implementation of the national development plan for generating resources, which is useful to combat poverty", - "values": [ - "Poverty" - ] - }, - { - "text": "Fully ensure the right to exercise freedom of expression, including Internet freedom, and, in this respect, amend the regulations for online media", - "values": [ - "Freedom of opinion and expression", - "Freedom of the press" - ] - }, - { - "text": "Continue efforts towards the capacity-building of the national human rights institution", - "values": [ - "National Human Rights Institution" - ] - }, - { - "text": "Complete the process of full alignment of its national legislation with all obligations under the Rome Statute of the International Criminal Court, including the ratification of its Agreement on Privileges and Immunities", - "values": [ - "International instruments", - "Justice" - ] - }, - { - "text": "Continue efforts to draw up a national framework for human development that takes into consideration gender equality and non-discrimination", - "values": [ - "Women's rights" - ] - }, - { - "text": "Withdraw its reservation on article 4 [a] of the International Convention on the Elimination of All Forms of Racial Discrimination", - "values": [ - "International instruments", - "Racial discrimination" - ] - }, - { - "text": "Develop the practical steps to enhance freedom of speech and freedom of the press.", - "values": [ - "Freedom of opinion and expression", - "Freedom of the press" - ] - }, - { - "text": "Continue to effectively implement the Third National Plan against Trafficking in Persons ", - "values": [ - "Trafficking" - ] - }, - { - "text": "Reinforce its efforts in the area of the fight against poverty with a view to attaining the Millennium Development Goals and to request the necessary financial and technical assistance in this regard ", - "values": [ - "Poverty", - "Technical assistance and cooperation" - ] - }, - { - "text": "Pursue efforts to ensure fairness in education, in particular the right to basic education for students with disabilities", - "values": [ - "Disabilities", - "Right to education" - ] - }, - { - "text": "Consider the inclusion of human rights in school curricula", - "values": [ - "Human rights education and training" - ] - }, - { - "text": "Consider extending a standing invitation to the special procedures mechanism", - "values": [ - "Special procedures" - ] - }, - { - "text": "Focus on nationwide enforcement of its existing anti-discrimination law, plan adequately for nationwide implementation, especially as it relates to discrimination against indigenous persons ", - "values": [ - "Indigenous peoples" - ] - }, - { - "text": "Formally establish the Follow-up Committee recommended in the Truth and Reconciliation Commission's report and task it to monitor and report to Government and civil society on the further implementation of the Commission's recommendations ", - "values": [ - "Civil society", - "Justice" - ] - }, - { - "text": "Continue to adopt legal coverage of human rights ", - "values": [ - "General" - ] - }, - { - "text": "Enact a comprehensive anti- discrimination law enforced uniformly throughout the Confederation", - "values": [ - "Other" - ] - }, - { - "text": "Promote the situation of disabled persons and their working conditions ", - "values": [ - "Disabilities", - "Labour" - ] - }, - { - "text": "Undertake the necessary steps to strengthen its response to domestic violence as recommended by the Committee on Economic, Social and Cultural Rights", - "values": [ - "Rights of the Child", - "Treaty bodies", - "Women's rights" - ] - }, - { - "text": "Step up its efforts to thoroughly investigate all acts of racial violence and punish those responsible appropriately, taking into account that the Committee against torture has expressed concerns about allegations that the authorities' responses to these acts are not always timely or adequate. Also, the Human Rights Committee and the Committee on Economic, Social and Cultural Rights expressed similar concerns ", - "values": [ - "Racial discrimination", - "Treaty bodies" - ] - }, - { - "text": "Submit, in 2008, eight reports to United Nations bodies, of which seven to treaty bodies: (i) Fifth and sixth periodic reports on the implementation of the International Covenant on Civil and Political Rights (ICCPR), (ii) Third periodic report on the implementation of the International Convention, against Torture and Other Cruel, Inhuman or Degrading Treatment or Punishment (CAT), (iii) Eighteenth and nineteenth periodic reports on the implementation of the International Convention on the Elimination of All Forms of Racial Discrimination (ICERD), (iv) Third periodic report on the implementation of the Convention on the Rights of the Child (CRC), (v) Initial report on the implementation of the Optional Protocol to the Convention on the Rights of the Child, concerning the involvement of children in armed conflicts, (vi) Third periodic report on the implementation of the International Covenant on Economic, Social and Cultural Rights (ICESCR), (vii) Fifth periodic report on the implementation of the International Convention on the Elimination of All Forms of Discrimination against Women (CEDAW) ", - "values": [ - "International humanitarian law", - "Treaty bodies" - ] - }, - { - "text": "Provide the maximum legal and professional protection to those working in the garment and handcraft professions sector ", - "values": [ - "Labour" - ] - }, - { - "text": "Further strengthen measures against torture and ill-treatment", - "values": [ - "Torture and other CID treatment" - ] - }, - { - "text": "Take practical measures to rehabilitate women prisoners after their release and to rehabilitate offending juveniles and street children.", - "values": [ - "Rights of the Child", - "Women's rights" - ] - }, - { - "text": "Review the 2008 Genocide Ideology Law and other related laws to bring them in line with international standards through a more precise and restrictive definition of the crime, including a clear statement of intent to commit, assist or incite genocide ", - "values": [ - "Justice" - ] - }, - { - "text": "Continue its decisive efforts to make progress in fighting poverty and in overcoming social inequity", - "values": [ - "ESC rights - general", - "Poverty" - ] - }, - { - "text": "Extend a standing invitation to all thematic Special Procedures of the Human Rights Council ", - "values": [ - "Special procedures" - ] - }, - { - "text": "Work more strongly against incitement to racial hatred and racist violence against indigenous persons and persons of African descent", - "values": [ - "Indigenous peoples", - "Minorities", - "Racial discrimination" - ] - }, - { - "text": "Take all necessary measures to combat the recruitment and use of children in hostilities, including by releasing children associated with the conflict.", - "values": [ - "Rights of the Child" - ] - }, - { - "text": "Consider the possibility of signing and-or ratifying ICRMW ", - "values": [ - "International instruments", - "Labour", - "Migrants" - ] - }, - { - "text": "Take additional measures to address and eliminate negative stereotypes and adverse traditional beliefs and practices that discriminate against women", - "values": [ - "Women's rights" - ] - }, - { - "text": "Pursue its efforts to providing women and children with all their rights", - "values": [ - "Rights of the Child", - "Women's rights" - ] - }, - { - "text": "Pursue the process already undertaken of children's civil registration", - "values": [ - "Rights of the Child" - ] - }, - { - "text": "Adopt an effective policy for the integration of migrants ", - "values": [ - "Migrants" - ] - }, - { - "text": "Comply with international treaties and standards for the full enjoyment of the rights of members of non-Muslim communities and their institutions", - "values": [ - "Freedom of religion and belief", - "International instruments", - "Racial discrimination" - ] - }, - { - "text": "Envisage ratifying CPED ", - "values": [ - "Enforced disappearances", - "International instruments" - ] - }, - { - "text": "Accede to Optional Protocol to the Convention on the Rights of the Child on a communications procedure ", - "values": [ - "International instruments", - "Rights of the Child" - ] - }, - { - "text": "That legislative measures be adopted to make it possible to harmonize the domestic legal system with the provisions of the Convention on the Elimination of All Forms of Discrimination against Women, promulgating legislative initiatives in process, aimed at ensuring equal legal status of men and women", - "values": [ - "International instruments", - "Women's rights" - ] - }, - { - "text": "Address the structural causes of organized crime, including those relating to sexual violence", - "values": [ - "Public security" - ] - }, - { - "text": "Envisage completing the process of adhesion to the Optional Protocol to the Convention on the Rights of the Child on a communications procedure, in order to facilitate individual complaints in case of violations of the rights of children, and to the Council of Europe Convention on the Protection of Children against Sexual Exploitation and Sexual Abuse", - "values": [ - "International instruments", - "Rights of the Child" - ] - }, - { - "text": "Guarantee in law and in practice the freedom of peaceful assembly and of association and remove all restrictions placed on the right to peaceful protests", - "values": [ - "Freedom of association and peaceful assembly" - ] - }, - { - "text": "Take measures to protect the rights of IDPs, including long-term housing and property restitution policies that meet international standards, and protecting the rights to a voluntary, safe return and adequate restitution.", - "values": [ - "Internally displaced persons" - ] - }, - { - "text": "Continue to put in place effective national policies to alleviate poverty and unemployment ", - "values": [ - "Development", - "Poverty" - ] - }, - { - "text": "Continue to reform the justice system to enhance the independence of the judiciary and improve witness protection ", - "values": [ - "Justice" - ] - }, - { - "text": "Consider ratification of core international human rights instruments to which it is not yet a party, such as ICCPR, CAT and ICESCR ", - "values": [ - "CP rights - general", - "ESC rights - general", - "International instruments", - "Torture and other CID treatment" - ] - }, - { - "text": "Strengthen efforts to end child, early and forced marriages, especially among girls", - "values": [ - "Rights of the Child", - "Women's rights" - ] - }, - { - "text": "Complete at the earliest the ratification process of the International Convention for the Protection of All Persons from Enforced Disappearance and fully recognize the competence of the Committee on Enforced Disappearances, as provided for in articles 31 and 32 of the Convention ", - "values": [ - "Enforced disappearances", - "International instruments" - ] - }, - { - "text": "Consider establishing an independent investigative authority that can effectively investigate the violence related to the 2007 elections and the alleged involvement of the police and public prosecutor", - "values": [ - "Elections" - ] - }, - { - "text": "Bahrain will continue its efforts to achieve comprehensive development, with the emphasis on the centrality of human rights in development and the importance of supporting a culture of human rights by all available means, including through education, the media, etc.", - "values": [ - "Development", - "Human rights education and training" - ] - }, - { - "text": "In terms of good practices, Guatemala has continued its open-door policy towards international human rights monitoring mechanisms and reaffirms its commitment to following up and implementing the recommendations it has received in the field of human rights", - "values": [ - "General" - ] - }, - { - "text": "Continue to build new social housing in order to improve the housing of its population", - "values": [ - "Right to housing" - ] - }, - { - "text": "Adopt additional measures to ensure the effective application of the law to eliminate violence against women and to ensure the protection of women's rights ", - "values": [ - "Women's rights" - ] - }, - { - "text": "Impose an immediate moratorium on the death penalty with a view of a complete abolition of capital punishment as outlined in the National Human Rights Action Plan", - "values": [ - "Death penalty" - ] - }, - { - "text": "Increase public awareness on human rights and promote human rights education and training", - "values": [ - "Human rights education and training" - ] - }, - { - "text": "Ratify the Rome Statute of the International Criminal Court and cooperate fully with that Court", - "values": [ - "International instruments", - "Justice" - ] - }, - { - "text": "Intensify the fight against the perpetrators operating in the area of human trafficking", - "values": [ - "Trafficking" - ] - }, - { - "text": "Safeguard the freedom of the press, through the abrogation of the Protection of Information Bill ", - "values": [ - "Freedom of opinion and expression", - "Freedom of the press" - ] - }, - { - "text": "Strengthen the framework of protection against discrimination through the enactment of a law that prohibits it in all its forms in line with international human rights standards", - "values": [ - "General" - ] - }, - { - "text": "Take effective measures to ensure the equal treatment of women in accordance with its international obligations under the Convention on the Elimination of All Forms of Discrimination against Women (CEDAW) ", - "values": [ - "International instruments", - "Women's rights" - ] - }, - { - "text": "Take measures aimed at ensuring transparency, justice and non- repression in the presidential election process of 2015, including by inviting international observers", - "values": [ - "Elections", - "Justice" - ] - }, - { - "text": "Continue its efforts to give effect to the vote of Uruguayans living abroad ", - "values": [ - "Elections" - ] - }, - { - "text": "Prohibit the holding of the annual gathering in March in the centre of Riga in a memory of soldiers who fought in the Latvian legion of the Waffen SS as well as condemn strictly any attempts to glorify the memory of those who fought in the Waffen SS and collaborated with Nazis", - "values": [ - "Racial discrimination" - ] - }, - { - "text": "Adopt a national strategy to improve the conditions in the penitentiary system", - "values": [ - "Detention" - ] - }, - { - "text": "Enforce the measures adopted to ensure the participation of minorities in public affairs", - "values": [ - "Minorities" - ] - }, - { - "text": "Establish a de jure moratorium on executions and abolish the death penalty for all crimes, and consider ratifying the Second Optional Protocol to the International Covenant on Civil and Political Rights", - "values": [ - "Death penalty", - "International instruments" - ] - }, - { - "text": "Enact legislation criminalizing all forms of violence against women and girls", - "values": [ - "Rights of the Child", - "Women's rights" - ] - }, - { - "text": "Consider signing the Optional Protocol to the International Covenant on Economic, Social and Cultural Rights. at the opening for signature ceremony in New York in 2009.", - "values": [ - "ESC rights - general", - "International instruments" - ] - }, - { - "text": "Continue taking temporary special measures to accelerate the improvement of the situation of women", - "values": [ - "Women's rights" - ] - }, - { - "text": "Fully implement accepted recommendations from the first universal periodic review concerning the ratification of the International Covenant on Civil and Political Rights and its Optional Protocols, the International Covenant on Economic, Social and Cultural Rights and its Optional Protocol, as well as the accession to their inquiry and inter-State complaints procedures, and the Convention on the Rights of Persons with Disabilities", - "values": [ - "CP rights - general", - "Death penalty", - "Disabilities", - "ESC rights - general", - "International instruments", - "UPR process" - ] - }, - { - "text": "Consider its position with regard to Article 22.4 and Article 76 of the International Convention on the Protection of the Rights of All Migrant Workers and Members of Their Families", - "values": [ - "International instruments", - "Labour", - "Migrants" - ] - }, - { - "text": "Encourage pursuing efforts to overcome the backlog in the submission of periodic reports", - "values": [ - "Technical assistance and cooperation", - "Treaty bodies" - ] - }, - { - "text": "Promote public policies to prevent violence against women and girls, including domestic violence and sexual violence", - "values": [ - "Rights of the Child", - "Women's rights" - ] - }, - { - "text": "Intensify the efforts working towards the MDG5, including by withdrawing its reservation to Article 16 in Convention on the Elimination of All Forms of Discrimination against Women, and by ensuring access to information and counselling on SRHR as set out in its National Population Policy ", - "values": [ - "International instruments", - "Women's rights" - ] - }, - { - "text": "Ensure continuous progress in addressing the right to education ", - "values": [ - "Right to education" - ] - }, - { - "text": "Adjust regulation so that same-sex partners enjoy the same rights as other married couples as recommended in the report of the European Commission against racism and intolerance published on 13 October 2015", - "values": [ - "Sexual Orientation and Gender Identity" - ] - }, - { - "text": "Publish an enhanced and updated national action plan by 2015, which will detail how the government will eliminate the excessive use of force and beatings against prisoners and pre-trial detainees including updating existing educational programmes for police officers", - "values": [ - "Detention", - "Human rights education and training", - "Human rights violations by state agents" - ] - }, - { - "text": "Pursue national efforts to combat HIV and provide health services for all", - "values": [ - "HIV - Aids", - "Right to health" - ] - }, - { - "text": "Ratify the Second Optional Protocol to the International Covenant on Civil and Political Rights, aiming at the abolition of the death penalty, as to bring legislation into conformity with the de facto situation", - "values": [ - "Death penalty", - "International instruments" - ] - }, - { - "text": "Further strengthen measures to protect children from all forms of violence", - "values": [ - "Rights of the Child" - ] - }, - { - "text": "Continue its effort in strengthening the protection of the right to food ", - "values": [ - "Right to food" - ] - }, - { - "text": "Put an end to online censorship ", - "values": [ - "Freedom of opinion and expression" - ] - }, - { - "text": "Immediately investigate all allegations involving the torture and other ill treatment of those arrested or detained during the demonstrations in June 2009", - "values": [ - "Detention", - "Torture and other CID treatment" - ] - }, - { - "text": "Through its own efforts and international cooperation, further lower its maternal and infant mortality rates", - "values": [ - "Right to health", - "Rights of the Child", - "Technical assistance and cooperation", - "Women's rights" - ] - }, - { - "text": "Accede to the International Convention on the Protection of the Rights of All Migrant Workers and Members of Their Families.", - "values": [ - "International instruments", - "Labour", - "Migrants" - ] - }, - { - "text": "Amend the 2002 Law on Alternative Medicine in order to prevent healers harming persons with albinism", - "values": [ - "Minorities", - "Right to health" - ] - }, - { - "text": "Continue its efforts to promote gender equality by focusing on the implementation of the National Action Programme for Equal Treatment", - "values": [ - "Women's rights" - ] - }, - { - "text": "Respond positively to the visit request by the WGED ", - "values": [ - "Enforced disappearances", - "Special procedures" - ] - }, - { - "text": "Complete the process of adoption of the revised Law on the National Human Rights Commission so that its structure and mandate are consistent with the Paris Principles", - "values": [ - "National Human Rights Institution" - ] - }, - { - "text": "Continue its efforts towards the early finalization of the anti-terrorism law, which can serve to combat terrorism while ensuring promotion and protection of human rights", - "values": [ - "Counter-terrorism" - ] - }, - { - "text": "Work towards the equal status of same sex couples starting with legal recognition of same sex couples", - "values": [ - "Sexual Orientation and Gender Identity" - ] - }, - { - "text": "Promote vigorously the participation of women in decision-making positions, both in the public and private sectors", - "values": [ - "Women's rights" - ] - }, - { - "text": "Continue to take measures to combat hate crimes", - "values": [ - "Racial discrimination" - ] - }, - { - "text": "Further pursue the policies and programs to improve quality and effectiveness of basic social services provided to its citizens", - "values": [ - "ESC rights - general" - ] - }, - { - "text": "Ratify the Optional Protocol to the International Covenant on Economic, Social and Cultural Rights (OP-ICESCR)", - "values": [ - "ESC rights - general", - "International instruments" - ] - }, - { - "text": "Continue its measures in the field of promoting women rights, approving the national plan of action for 2010-2012 to implement the concluding observations of the Committee on the Elimination of Racial Discrimination, incorporating the goals of the Millennium Declaration into the country's development programmes, and meeting the Millennium Development Goals for 2015 ", - "values": [ - "Development", - "Treaty bodies", - "Women's rights" - ] - }, - { - "text": "Pursue the development and adoption of a comprehensive national human rights action plan to strengthen consistency and cooperation in the implementation of related policies and programmes", - "values": [ - "General" - ] - }, - { - "text": "Initiate awareness-raising campaigns in schools to further promote the rights of women ", - "values": [ - "Human rights education and training", - "Women's rights" - ] - }, - { - "text": "Develop a clear definition regarding the sale of children in the Penal Code and ensure its full enforcement with serious punishment for perpetrators ", - "values": [ - "Justice", - "Rights of the Child", - "Trafficking" - ] - }, - { - "text": "Continue progress in the implementation of policies designed for the advancement of women and ensuring quality social services that are universal in coverage and benefit the whole of the population ", - "values": [ - "Women's rights" - ] - }, - { - "text": "Further promote pursued policies and programmes with regard to the social integration of the Roma and Sinti communities, by promoting their further access to education, the labour market, housing and health care services ", - "values": [ - "Labour", - "Minorities", - "Right to education", - "Right to health", - "Right to housing" - ] - }, - { - "text": "End all indiscriminate attacks against civilians and other violations of international humanitarian and human rights law, especially in Darfur, and bring the perpetrators to justice, ensuring due process ", - "values": [ - "International humanitarian law", - "International instruments" - ] - }, - { - "text": "Sign and ratify the following international instruments: ICESCR and its Optional Protocol (OP- ICESCR), the ICERD, the Second Optional Protocol to the ICCPR, and finally the Optional Protocol to the Convention on the Rights of the Child on a communications procedure ", - "values": [ - "Death penalty", - "ESC rights - general", - "International instruments", - "Racial discrimination", - "Rights of the Child" - ] - }, - { - "text": "Intensify its efforts and reinforce all institutions and mechanisms concerned with the reintegration of demobilized child soldiers into Chadian society", - "values": [ - "International humanitarian law", - "Rights of the Child" - ] - }, - { - "text": "Take further steps to protect and promote economic, social and cultural rights, in the context of climate change", - "values": [ - "ESC rights - general", - "Environment" - ] - }, - { - "text": "Call on the international community to support Mauritius by providing all assistance needed to improve its programmes for the protection and promotion of human rights", - "values": [ - "Technical assistance and cooperation" - ] - }, - { - "text": "Accelerate the reform to establish a NHRI in accordance with the Paris Principles.", - "values": [ - "National Human Rights Institution" - ] - }, - { - "text": "Further enhance efforts to combat discrimination, including racial discrimination, xenophobia and related intolerances", - "values": [ - "Racial discrimination" - ] - }, - { - "text": "Strengthen data collection on racist and xenophobic violence in order to identify the sources of this kind of discrimination, which turn into the so- called hate crimes", - "values": [ - "Racial discrimination" - ] - }, - { - "text": "Ensure comprehensive sexuality education is integrated into the national school curriculum, including on topics such as sexual diversity, sexual rights and gender equality", - "values": [ - "Right to health", - "Sexual Orientation and Gender Identity" - ] - }, - { - "text": "Continue its exemplary efforts to improve the living standards of the people, particularly by ensuring their access to quality health-care services and education ", - "values": [ - "Right to education", - "Right to health" - ] - }, - { - "text": "Take measures to encourage the return of women to the labour market after a long absence due to maternity ", - "values": [ - "Women's rights" - ] - }, - { - "text": "Issue a standing invitation to all Special Procedures of the Human Rights Council", - "values": [ - "Special procedures" - ] - }, - { - "text": "Ensure adequate conditions for human rights institutions, including the Human Rights Commission, to fulfil their functions with sufficient legal, political and financial independence ", - "values": [ - "National Human Rights Institution" - ] - }, - { - "text": "Continue strengthening the judiciary system, in particular the independence of the judiciary, access to justice, and combating impunity", - "values": [ - "Impunity", - "Justice" - ] - }, - { - "text": "Ensure that all victims of gender-based violence have effective access to appropriate resources, including legal assistance and protection measures ", - "values": [ - "Women's rights" - ] - }, - { - "text": "Continue the positive efforts to improve access to health for all its citizens, including through cooperation and strengthened international financial assistance ", - "values": [ - "Right to health", - "Technical assistance and cooperation" - ] - }, - { - "text": "Provide sufficient financial and human resources to the new Ministry for Justice and Human Rights and to the Office of the Special Prosecutor for Human Rights, so that they can perform their function of preventing and effectively investigating cases of human rights violations, particularly those committed against journalists and human rights defenders", - "values": [ - "Freedom of the press", - "Human rights defenders", - "Justice" - ] - }, - { - "text": "Strengthen its measures to effectively implement national programmes on human rights, in particular regarding their integration into the educational system ", - "values": [ - "Human rights education and training" - ] - }, - { - "text": "Continue fulfilling its obligations under the international treaties to which it is a party", - "values": [ - "International instruments" - ] - }, - { - "text": "Continue efforts to prohibit the use of child labour", - "values": [ - "Labour", - "Rights of the Child" - ] - }, - { - "text": "Organize a by-election in Nukufetau as soon as practicable ", - "values": [ - "Elections" - ] - }, - { - "text": "Continue with current efforts to eradicate poverty, indigence and social exclusion.", - "values": [ - "Poverty" - ] - }, - { - "text": "Make further efforts with a view to withdrawing reservations to ICCPR and CRC ", - "values": [ - "CP rights - general", - "International instruments", - "Rights of the Child" - ] - }, - { - "text": "Continue to implement measures to promote the participation of women in society", - "values": [ - "Women's rights" - ] - }, - { - "text": "Consider the rules for the registration of religious groups, and to take steps to promote interfaith harmony, including with regard to those faiths considered to be non-traditional in the country, in order to adhere to the Constitution and to international norms", - "values": [ - "Freedom of religion and belief" - ] - }, - { - "text": "Complete the establishment of a National Human Rights Institution in conformity with the Paris Principles", - "values": [ - "National Human Rights Institution" - ] - }, - { - "text": "Undertake concrete and appropriate steps towards ratification of and accession to international human rights instruments ", - "values": [ - "International instruments" - ] - }, - { - "text": "Further intensify its efforts in the fight against trafficking in human beings ", - "values": [ - "Trafficking" - ] - }, - { - "text": "Take measures to guarantee full respect of human rights to indigenous peoples, in particular through the establishment of mechanisms for their prior and informed consent on issues that affect them", - "values": [ - "Indigenous peoples" - ] - }, - { - "text": "Set a clear timetable to commit itself to the principles of human rights and humanitarian laws in all occupied Arab territories.", - "values": [ - "General" - ] - }, - { - "text": "Expedite the enactment of the drafted Marriage and Divorce Bill", - "values": [ - "Women's rights" - ] - }, - { - "text": "Monitor health centres to ensure that patients provide fully informed consent before any sterilization procedure is carried out and that the complaints filed on grounds of coerced sterilization are duly investigated and victims are granted effective remedies.", - "values": [ - "Torture and other CID treatment" - ] - }, - { - "text": "Ratify the ILO Convention 169 ", - "values": [ - "Indigenous peoples", - "International instruments" - ] - }, - { - "text": "Strengthen the legal and judicial system in order to ensure that perpetrators of human trafficking, among others, are brought to justice", - "values": [ - "Trafficking" - ] - }, - { - "text": "Abrogate all laws prohibiting consensual sexual relations between adults of the same sex ", - "values": [ - "Sexual Orientation and Gender Identity" - ] - }, - { - "text": "Positively respond to pending visits request by Special Procedures mandate holders", - "values": [ - "Special procedures" - ] - }, - { - "text": "Consider signing and ratifying OP-ICESCR", - "values": [ - "ESC rights - general", - "International instruments" - ] - }, - { - "text": "Consideration be given to revising the Criminal Code in order to repeal the provision that criminalizes the sexual activity between consenting adults.", - "values": [ - "Sexual Orientation and Gender Identity" - ] - }, - { - "text": "Continue its efforts and close cooperation with relevant international organizations in combating child trafficking", - "values": [ - "Rights of the Child", - "Trafficking" - ] - }, - { - "text": "As previously recommended, promote a legal framework providing legal certainty in the area of property, particularly land tenure and protection against forced evictions, and recognize the rights of indigenous peoples, pastoralists, hunters and gatherers", - "values": [ - "Indigenous peoples", - "Right to land", - "UPR process" - ] - }, - { - "text": "Cooperate with other States in order to tackle the main root causes that attract the youngsters to the so-called jihadism, namely the provision of their socioeconomic and cultural rights", - "values": [ - "ESC rights - general", - "Public security" - ] - }, - { - "text": "Strengthen measures to combat the high rate of drug and alcohol addiction among children", - "values": [ - "Right to health" - ] - }, - { - "text": "Organize campaigns aiming at promoting gender equality and to reinforce existing mechanisms to combat and to punish perpetrators of violence against women", - "values": [ - "Human rights education and training", - "Women's rights" - ] - }, - { - "text": "Strengthen measures with a view to ensuring the rights of migrant domestic workers ", - "values": [ - "Labour", - "Migrants" - ] - }, - { - "text": "Pursue awareness-raising activities on domestic violence, including prosecution and sentencing of the perpetrators", - "values": [ - "Human rights education and training", - "Rights of the Child", - "Women's rights" - ] - }, - { - "text": "Ratify the Rome Statute of the ICC and fully align its legislation with all obligations under the Rome Statute, including incorporating the Rome Statute definition of crimes and general principles, as well as adopting provisions enabling cooperation with the Court", - "values": [ - "International instruments", - "Justice" - ] - }, - { - "text": "With the assistance of the international community continue to promote economic, social and cultural rights, which make Senegal a model of democracy in Africa ", - "values": [ - "ESC rights - general", - "Technical assistance and cooperation" - ] - }, - { - "text": "Take concrete and effective measures - such as the establishment of investigations and judicial prosecutions, as well as training in human rights - to punish and prevent abuses, in particular sexual violence, committed against refugees in the camps", - "values": [ - "Asylum-seekers - refugees", - "Human rights education and training", - "Rights of the Child", - "Women's rights" - ] - }, - { - "text": "Intensify efforts inter alia through education and awareness-raising aimed at combatting prejudices against ethnic minorities ", - "values": [ - "Human rights education and training", - "Minorities" - ] - }, - { - "text": "Establish a moratorium on executions", - "values": [ - "Death penalty" - ] - }, - { - "text": "Consider the ratification of the third Optional Protocol to the Convention on the Rights of the Child", - "values": [ - "International instruments", - "Rights of the Child" - ] - }, - { - "text": "Refrain from criminalizing the legitimate activities of human rights defenders and journalists and repeal or amend all laws and policies which restrict their activities and rights", - "values": [ - "Freedom of association and peaceful assembly", - "Freedom of the press", - "Human rights defenders" - ] - }, - { - "text": "Strengthen its policy for the full guarantee of the rights of the child with attention to the implementation of the Guidelines for the Alternative Care of Children, in accordance with Council resolution 11-7 and General Assembly draft resolution A-C.3-64-L.50 ", - "values": [ - "Rights of the Child" - ] - }, - { - "text": "Amend the current law to legalize abortion after rape ", - "values": [ - "Women's rights" - ] - }, - { - "text": "Guarantee the appropriate treatment of migrants in irregular situations and waiting for deportation from the country, including access to legal remedies", - "values": [ - "Migrants" - ] - }, - { - "text": "Reinforce the legal framework for the prevention of discrimination and violence against women", - "values": [ - "Women's rights" - ] - }, - { - "text": "Improve its cooperation with the special procedures of the Human Rights Council by responding positively to the pending visit requests and eventually consider extending a standing invitation to all special procedures mandate holders of the Human Rights Council ", - "values": [ - "Special procedures" - ] - }, - { - "text": "Take steps to fully implement and enforce laws on violence against women and to ensure that victims are able to benefit from the existing legislative framework", - "values": [ - "Women's rights" - ] - }, - { - "text": "Take necessary measures to guarantee that migrant workers are treated on a non-discriminatory basis ", - "values": [ - "Labour", - "Migrants" - ] - }, - { - "text": "Continue to improve its education system and access to quality education for its people ", - "values": [ - "Right to education" - ] - }, - { - "text": "Issue an invitation to the United Nations High Commissioner for Human Rights so that he carries out a technical mission in Belarus, pursuant to resolution 17/24", - "values": [ - "Technical assistance and cooperation" - ] - }, - { - "text": "Take positive measures towards guaranteeing appropriate conditions for people in detention including involvement of the system of public observer commissions that monitor penitentiary institutions ", - "values": [ - "Detention" - ] - }, - { - "text": "Continue measures aiming at combating gender violence, with special focus on the investigation and punishment of those responsible", - "values": [ - "Women's rights" - ] - }, - { - "text": "Take effective measures to prevent violence against women, including domestic violence", - "values": [ - "Women's rights" - ] - }, - { - "text": "Take all the necessary measures to shorten the pre-trial detention of all persons arrested on criminal charges, in particular that of minors, and create separate detention facilities for the latter as well as to urgently improve prison conditions", - "values": [ - "Detention", - "Rights of the Child" - ] - }, - { - "text": "Intensify its efforts to ratify the International Convention for the Protection of all Persons from Enforced Disappearances ", - "values": [ - "Enforced disappearances", - "International instruments" - ] - }, - { - "text": "Ensure effective investigation of and accountability for all cases of sexual violence", - "values": [ - "Rights of the Child", - "Women's rights" - ] - }, - { - "text": "Develop consequential strategies to fulfil the affirmative action policies of 40 per cent of women in public decision-making processes", - "values": [ - "Women's rights" - ] - }, - { - "text": "Take measures to combat violence against women, including domestic and sexual violence, with a particular attention to women from minority groups", - "values": [ - "Minorities", - "Rights of the Child", - "Women's rights" - ] - }, - { - "text": "Sign and ratify the Optional Protocol to International Covenant on Economic, Social and Cultural Rights, allowing for individual complaints of alleged violations of these rights to be heard by the Committee on Economic, Social and Cultural Rights ", - "values": [ - "ESC rights - general", - "International instruments" - ] - }, - { - "text": "Ratify the International Convention on the Rights of All Migrant Workers and Members of Their Families ", - "values": [ - "International instruments", - "Labour", - "Migrants" - ] - }, - { - "text": "Ratify the Convention against Torture and Other Cruel, Inhuman or Degrading Treatment or Punishment and its Optional Protocol ", - "values": [ - "International instruments", - "Torture and other CID treatment" - ] - }, - { - "text": "Adopt law on gender equality", - "values": [ - "Women's rights" - ] - }, - { - "text": "Fully implement the Chittagong Hill Tracts Accord as a matter of priority and develop a time frame for its full implementation", - "values": [ - "Minorities" - ] - }, - { - "text": "Ratify and implement the 1993 Hague Convention on Protection of Children and Co-operation in Respect of Intercountry Adoption ", - "values": [ - "International instruments", - "Rights of the Child" - ] - }, - { - "text": "Ratify the Convention against Torture and Other Cruel, Inhuman or Degrading Treatment or Punishment, as previously recommended", - "values": [ - "International instruments", - "Torture and other CID treatment" - ] - }, - { - "text": "Continue to engage with the international community and relevant international organizations and seek technical and financial assistance for institutional capacity building and strengthening public health systems", - "values": [ - "Right to health", - "Technical assistance and cooperation" - ] - }, - { - "text": "Ratify the outstanding human rights treaties", - "values": [ - "International instruments" - ] - }, - { - "text": "Withdraw reservation to article 37 of the CRC and strengthen procedures and child protection services in cases of ill-treatment", - "values": [ - "International instruments", - "Rights of the Child", - "Torture and other CID treatment" - ] - }, - { - "text": "Take appropriate and robust measures for the elimination of practices, such as the placement of children, early marriages and child trafficking", - "values": [ - "Rights of the Child", - "Trafficking" - ] - }, - { - "text": "Continue its efforts to combat racial discrimination, including through support to institutions charged with promotion and protection of human rights and fighting racial discrimination ", - "values": [ - "Racial discrimination" - ] - }, - { - "text": "Designate a coordinator for the implementation of the Convention on the Rights of Persons with Disabilities, establish indicators for compliance and supervision, ensure that the oversight mechanism has an adequate status to contribute and follow up on a national policy on disability, and ensure that disability is considered as a cross-cutting issue in its public policies ", - "values": [ - "Disabilities", - "International instruments" - ] - }, - { - "text": "Further strengthen the social and comprehensive protection programmes carried out by the National Council on Children and Adolescents through increased resources, in order to achieve greater effectiveness in their management ", - "values": [ - "Rights of the Child" - ] - }, - { - "text": "Pursue strategies and policies to prevent discrimination, in all spheres of public life, against its indigenous people and other minority groups such as Afro-Swedes and Muslims", - "values": [ - "Freedom of religion and belief", - "Indigenous peoples", - "Migrants", - "Racial discrimination" - ] - }, - { - "text": "Follow the Council of the European Union Asylum Qualification Directive in future cases with regard to sexual orientation as a ground for asylum-seeking. ", - "values": [ - "Asylum-seekers - refugees", - "Sexual Orientation and Gender Identity" - ] - }, - { - "text": "Follow up on the recommendations of the Human Rights Committee and the Committee against Torture relating to pre-trial detention and detention of non-citizens ", - "values": [ - "Detention", - "Treaty bodies" - ] - }, - { - "text": "Stop the widespread practices of enforced disappearance, arbitrary detention and the use of sexual violence, torture and ill-treatment in its detention centres. This includes granting international monitoring bodies immediate access without undue restriction to all detainees, and publish a list of all detention facilities", - "values": [ - "Detention", - "Enforced disappearances", - "Torture and other CID treatment" - ] - }, - { - "text": "Seek technical assistance from the United Nations system and the international community to overcome the enormous human rights challenges faced by the country, in accordance with its national priorities ", - "values": [ - "Technical assistance and cooperation" - ] - }, - { - "text": "Ensure full implementation of legislation aimed at combating racism, racial discrimination, xenophobia and related intolerance", - "values": [ - "Racial discrimination" - ] - }, - { - "text": "Consider extending a standing invitation to the United Nations special procedures ", - "values": [ - "Special procedures" - ] - }, - { - "text": "Step up efforts in ensuring that the development and poverty alleviation programmes fully benefit the vulnerable groups, including minority and indigenous communities and rural women", - "values": [ - "Development", - "Indigenous peoples", - "Minorities", - "Poverty", - "Women's rights" - ] - }, - { - "text": "Bring its legislation and practices into line with international obligations ", - "values": [ - "General" - ] - }, - { - "text": "Accelerate the process for the ratification of the Convention on the Rights of Persons with Disabilities ", - "values": [ - "Disabilities", - "International instruments" - ] - }, - { - "text": "Seek the advice of the Special Rapporteur on the promotion and protection of the right to freedom of opinion and expression and continue to cooperate with him ", - "values": [ - "Freedom of opinion and expression", - "Special procedures" - ] - }, - { - "text": "Increase its investment into education and health to ensure better education and health services for the whole population in particular in rural areas", - "values": [ - "Right to education", - "Right to health" - ] - }, - { - "text": "Step up efforts aimed at combating trafficking in human beings", - "values": [ - "Trafficking" - ] - }, - { - "text": "Ensure universal access to comprehensive sexual and reproductive health services, without discrimination and in accordance with the commitments made, among others, in the Montevideo Consensus", - "values": [ - "Right to health", - "Women's rights" - ] - }, - { - "text": "Expand efforts to protect and promote the rights of migrant workers ", - "values": [ - "Labour", - "Migrants" - ] - }, - { - "text": "Promote, in a comprehensive manner, sexual education, particularly of adolescents, with special attention to the prevention of early pregnancy and sexually transmitted diseases and HIV/AIDS ", - "values": [ - "HIV - Aids" - ] - }, - { - "text": "Implement measures to strengthen the system of justice administration in order to ensure equal access and due process and to fight impunity", - "values": [ - "Impunity", - "Justice" - ] - }, - { - "text": "Accede to the Optional Protocol to CAT and implement measures ensuring prompt and impartial investigation of ill-treatment and torture of detainees and strengthen the accountability mechanisms for police and armed forces ", - "values": [ - "Detention", - "International instruments", - "Torture and other CID treatment" - ] - }, - { - "text": "Consider acceding to those human rights instruments to which it is not a party, in particular to OP-CAT ", - "values": [ - "Detention", - "International instruments", - "Torture and other CID treatment" - ] - }, - { - "text": "Sign, ratify or accede to, as appropriate, the Optional Protocol to the Convention on the Rights of the Child on the sale of children, child prostitution and child pornography ", - "values": [ - "International instruments", - "Rights of the Child", - "Trafficking" - ] - }, - { - "text": "Enact legislation to ensure the unhindered participation of persons with disabilities in the education system and in the labour market", - "values": [ - "Disabilities", - "Labour", - "Right to education" - ] - }, - { - "text": "Continue to cooperate with the United Nations and other international organizations to strengthen human rights and exchange its best practices with other United Nations member countries ", - "values": [ - "Other" - ] - }, - { - "text": "Continue its efforts in combating violence against women by, inter alia, raising awareness of the victims' rights, increasing public understanding to avoid social exclusion of the victims and empowering women and girls by enhancing access to education", - "values": [ - "Human rights education and training", - "Right to education", - "Rights of the Child", - "Women's rights" - ] - }, - { - "text": "Consider ratifying the International Convention on the Rights of Migrant Workers and Members of their their Families", - "values": [ - "International instruments", - "Labour", - "Migrants" - ] - }, - { - "text": "Build on its achievements and national policies to further promote the rights of women ", - "values": [ - "Women's rights" - ] - }, - { - "text": "Sign and ratify, as soon as possible, all fundamental international human rights instruments and their protocols ", - "values": [ - "International instruments" - ] - }, - { - "text": "Increase efforts to reduce poverty and address existing gender gaps, including political participation, to combat violence against women and to promote equal remuneration in the workplace", - "values": [ - "Poverty", - "Women's rights" - ] - }, - { - "text": "Harmonize in the criminal code and in the consuetudinary law the definition of a minor with the Convention on the Rights of the Child (CRC)", - "values": [ - "International instruments", - "Rights of the Child" - ] - }, - { - "text": "Continue to strengthen the cooperation of the State with civil and social organizations working for the promotion and protection of human rights in the area of education ", - "values": [ - "Civil society", - "Right to education" - ] - }, - { - "text": "Seek technical assistance to address food security challenges in order to mitigate the negative effects of malnutrition and poverty", - "values": [ - "Poverty", - "Right to food" - ] - }, - { - "text": "Establish programmes on training and education for human rights at various school levels", - "values": [ - "Human rights education and training" - ] - }, - { - "text": "Incorporate chapters on human rights in the reconstruction and development national plan, to facilitate their implementation by all authorities", - "values": [ - "Development" - ] - }, - { - "text": "Further engage in facilitating administrative procedures for birth registration, especially for disadvantaged children coming from rural and poor areas", - "values": [ - "Rights of the Child", - "Statelessness and the right to nationality" - ] - }, - { - "text": "Continue to work with the Commission for Dialogue with Indigenous Peoples in order to ensure the respect of their human rights, self-determination and autonomy", - "values": [ - "Indigenous peoples" - ] - }, - { - "text": "Continue working towards the establishment of a national mechanism for the prevention of torture ", - "values": [ - "Detention", - "Torture and other CID treatment" - ] - }, - { - "text": "Ensure inclusive and free primary education for all children, including those with disabilities", - "values": [ - "Disabilities", - "Right to education", - "Rights of the Child" - ] - }, - { - "text": "Step up its efforts in the field of combating trafficking of human beings and consider the possibility of inviting the Special Rapporteur on trafficking in persons, especially women and children ", - "values": [ - "Rights of the Child", - "Special procedures", - "Trafficking", - "Women's rights" - ] - }, - { - "text": "The involvement of civil society in the follow-up to the Universal Periodic Review is key to ensuring a vibrant democracy, which was the reason why Saint Kitts and Nevis committed to regular engagement with its civil society, to comply with its international obligations.", - "values": [ - "Civil society", - "UPR process" - ] - }, - { - "text": "Work on accession to the Convention for the Protection of All Persons from Enforced Disappearance ", - "values": [ - "Enforced disappearances", - "International instruments" - ] - }, - { - "text": "Continue to consolidate the Human Rights Network of the Executive branch", - "values": [ - "Other" - ] - }, - { - "text": "Take measures to ensure the effective protection of the human rights of refugees", - "values": [ - "Asylum-seekers - refugees" - ] - }, - { - "text": "Work with civil society on follow-up to the review.", - "values": [ - "Civil society", - "UPR process" - ] - }, - { - "text": "Consider issuing a standing invitation to the human rights special procedures ", - "values": [ - "Special procedures" - ] - }, - { - "text": "Implement the recommendations of the OSCE-ODIHR trial monitoring report, and provide for an independent and credible investigation into the 10 deaths following the events of 1 March 2008 ", - "values": [ - "Justice" - ] - }, - { - "text": "Step up efforts to raise national awareness to combat all forms of violence against women and girls", - "values": [ - "Human rights education and training", - "Rights of the Child", - "Women's rights" - ] - }, - { - "text": "To examine the feasibility of conducting a national consultative exercise on a national plan of action to follow up on the Vienna Conference on Human Rights and the Durban Conference on Racism", - "values": [ - "Racial discrimination" - ] - }, - { - "text": "Ratify promptly the Convention against Torture and Other Cruel, Inhuman or Degrading Treatment or Punishment ", - "values": [ - "International instruments", - "Torture and other CID treatment" - ] - }, - { - "text": "Ensure compulsory, free and accessible primary education for all. Enhance also the availability and accessibility of secondary and higher education and close the gender gap at all levels of education", - "values": [ - "Right to education", - "Women's rights" - ] - }, - { - "text": "Establish and operate a country-wide system to monitor and record racist incidents and hate crimes", - "values": [ - "Racial discrimination" - ] - }, - { - "text": "Take the necessary measures to improve the rights of children, particularly with regard to juvenile justice and the fight against child marriage", - "values": [ - "Justice", - "Rights of the Child" - ] - }, - { - "text": "Take necessary measures to ensure that discrimination on the basis of disability, economic status, sexual orientation or living with HIV-AIDS is prevented.", - "values": [ - "Disabilities", - "HIV - Aids", - "Sexual Orientation and Gender Identity" - ] - }, - { - "text": "Pursue actions to achieve the Millennium Development Goals", - "values": [ - "Development" - ] - }, - { - "text": "Pursue its efforts relating to human rights education and training in order to make its internal mechanism to combat discrimination effective and more efficient ", - "values": [ - "Human rights education and training" - ] - }, - { - "text": "Ensure that its policies, legislation, regulations and enforcement measures effectively serve to prevent and address the heightened risk of business involvement in abuses in conflict situations, which include situations of foreign occupation", - "values": [ - "Business and human rights" - ] - }, - { - "text": "Institute a framework for combating gender-based violence and punishing perpetrators", - "values": [ - "Women's rights" - ] - }, - { - "text": "Continue its efforts to combat poverty, and call for technical and financial assistance at the international and bilateral levels to that end ", - "values": [ - "Poverty", - "Technical assistance and cooperation" - ] - }, - { - "text": "Adopt measures against those responsible for the use of chemical weapons and hold them accountable", - "values": [ - "International humanitarian law" - ] - }, - { - "text": "Carry out a reproductive health strategy and other programmes for women's health with a view to reducing the maternal mortality rate as set out in the MDG", - "values": [ - "Right to health", - "Women's rights" - ] - }, - { - "text": "Continue to expand the framework for national health insurance coverage so as to guarantee the right to health", - "values": [ - "Right to health" - ] - }, - { - "text": "Improve protection of victims of domestic violence, including by providing with shelter and legal aid", - "values": [ - "Rights of the Child", - "Women's rights" - ] - }, - { - "text": "Effectively enforce its legislation on domestic violence and expedite the adoption of the Bill on Gender Equality and Violence against Women", - "values": [ - "Rights of the Child", - "Women's rights" - ] - }, - { - "text": "Ratify the Optional Protocol to the ICESCR, the International Convention for the Protection of All Persons from Enforced Disappearance and the Optional Protocol to the Convention on the Rights of the Child on a communications procedure ", - "values": [ - "ESC rights - general", - "Enforced disappearances", - "International instruments", - "Rights of the Child" - ] - }, - { - "text": "Continue to bring its policies and legislation in line with its obligations under the Convention on the Elimination of All Forms of Discrimination against Women (CEDAW).", - "values": [ - "International instruments", - "Women's rights" - ] - }, - { - "text": "Undertake an in-depth assessment of the justice sector, prioritizing the juvenile justice system, to identify and address deficiencies under Burkinabe and international law", - "values": [ - "Justice", - "Rights of the Child" - ] - }, - { - "text": "Keep improving the system of child registration at birth and avoid any form of violence against children", - "values": [ - "Rights of the Child", - "Statelessness and the right to nationality" - ] - }, - { - "text": "Promote a culture of equality through the equal participation of all members of the society and, in particular the participation of women in rural areas", - "values": [ - "Women's rights" - ] - }, - { - "text": "Follow the recommendation of the Constitutional Court of Belarus to abolish death penalty and, as a first step, introduce a moratorium on capital punishment without delay", - "values": [ - "Death penalty" - ] - }, - { - "text": "Continue efforts aiming at combating school drop-out and illiteracy through parallel programmes to the formal education system, that encourage families to register children in schools and adults in programmes for the eradication of illiteracy", - "values": [ - "Right to education" - ] - }, - { - "text": "Strengthen efforts in order to achieve the MDGs with international cooperation and support ", - "values": [ - "Development" - ] - }, - { - "text": "Pass the Domestic Violence Act and ensure adequate resources and training for officials dealing with gender-based violence", - "values": [ - "Rights of the Child", - "Women's rights" - ] - }, - { - "text": "Support the efforts of the national mechanism for the follow-up of universal periodic review recommendations through the establishment of an online monitoring system", - "values": [ - "UPR process" - ] - }, - { - "text": "Continue its pursuit of assistance from the international community to foster its national human rights capacities.", - "values": [ - "Technical assistance and cooperation" - ] - }, - { - "text": "Strengthen its legal complaints system to ensure that women have effective access to justice", - "values": [ - "Women's rights" - ] - }, - { - "text": "Eliminate all laws and practices that discriminate against women and promote equal treatment of girls and boys", - "values": [ - "Rights of the Child", - "Women's rights" - ] - }, - { - "text": "Reinforce the efforts to prevent and combat trafficking in human beings for sexual exploitation with particular focus on children ", - "values": [ - "Rights of the Child", - "Trafficking" - ] - }, - { - "text": "Seek financial assistance for mitigation and adaption activities to address the impact of climate change", - "values": [ - "Environment", - "Technical assistance and cooperation" - ] - }, - { - "text": "Continue presenting initiatives aimed at promoting and protecting economic, social and cultural human rights ", - "values": [ - "ESC rights - general" - ] - }, - { - "text": "Maintain national efforts to ensure compliance and stability of the MDGs ", - "values": [ - "Development" - ] - }, - { - "text": "Consider ratifying ILO Convention 189 (2011) concerning decent work for domestic workers", - "values": [ - "International instruments", - "Labour" - ] - }, - { - "text": "Strengthen State and Government mechanisms to better investigate and sanction those responsible for violations of human rights", - "values": [ - "Justice" - ] - }, - { - "text": "Intensify efforts to accede to the Optional Protocol to the Convention against Torture and Other Cruel, Inhuman or Degrading Treatment or Punishment", - "values": [ - "International instruments", - "Torture and other CID treatment", - "Treaty bodies" - ] - }, - { - "text": "Take measures in order to create conditions for an inclusive political environment that includes respect for religious and ethnic minorities", - "values": [ - "Freedom of religion and belief", - "Minorities" - ] - }, - { - "text": "Accord special attention to the fight against unemployment and poverty, especially on behalf of vulnerable groups", - "values": [ - "Development", - "Poverty" - ] - }, - { - "text": "Continue fostering educational attainment of Roma children as indicated in the 2004 common country assessment report ", - "values": [ - "Minorities", - "Rights of the Child" - ] - }, - { - "text": "Follow up its commitment to increase public aid for the development of countries in need.", - "values": [ - "Development" - ] - }, - { - "text": "Take additional efforts on children's issues, including the compilation of statistical data, establishment of a monitoring system and overall enhancement of child protection measures ", - "values": [ - "Rights of the Child" - ] - }, - { - "text": "Liechtenstein will continue to pay particular attention to the promotion of equal opportunities for men and women in both the private and public sectors, including by expanding measures which facilitate women's re-entry into the workforce after childbirth", - "values": [ - "Women's rights" - ] - }, - { - "text": "Further take appropriate actions to improve access to social services for the people with disabilities", - "values": [ - "Disabilities" - ] - }, - { - "text": "Increase the pace of cooperation with Treaty Bodies ", - "values": [ - "Treaty bodies" - ] - }, - { - "text": "Continue efforts to protect children against violence", - "values": [ - "Rights of the Child" - ] - }, - { - "text": "Withdraw its reservation to article 29 of CRPD and engage in consultation with organizations of persons with disabilities to identify steps needed to implement the Convention", - "values": [ - "Disabilities", - "International instruments" - ] - }, - { - "text": "Enable the participation of civil society and NGOs also in the follow-up process to this review ", - "values": [ - "Civil society", - "UPR process" - ] - }, - { - "text": "Continue advancing in the creation of the National Plan for Infancy and Adolescence ", - "values": [ - "Rights of the Child" - ] - }, - { - "text": "Sign the Convention for the Protection of All Persons from Enforced Disappearance", - "values": [ - "Enforced disappearances", - "International instruments" - ] - }, - { - "text": "Continue to intensify the necessary actions to eliminate discrimination as well as the trend and/or media dissemination of stereotypes, which may encourage discrimination against minorities, particularly against Roma and Hungarians", - "values": [ - "Minorities", - "Racial discrimination" - ] - }, - { - "text": "Guarantee the independence of the judiciary", - "values": [ - "Justice" - ] - }, - { - "text": "Redouble the efforts to eradicate poverty and unemployment", - "values": [ - "Development", - "Poverty" - ] - }, - { - "text": "Increase efforts aimed at combating trafficking in persons and all forms of exploitation of children by, inter alia, taking the necessary measures to prevent impunity for perpetrators", - "values": [ - "Rights of the Child", - "Trafficking" - ] - }, - { - "text": "Consider making some amendments to the Aliens Act, particularly as regards appeals against decisions from the Supreme Migration Court ", - "values": [ - "Migrants" - ] - }, - { - "text": "Consider the ratification of human rights conventions to which it is not yet a State party", - "values": [ - "International instruments" - ] - }, - { - "text": "Ratify the Second Optional Protocol to the International Covenant on Civil and Political Rights (ICCPR-OP 2)", - "values": [ - "Death penalty", - "International instruments" - ] - }, - { - "text": "Consider ratification of the Rome Statute of the International Criminal Court and the Convention on the Prevention and Punishment of the Crime of Genocide ", - "values": [ - "International instruments", - "Justice" - ] - }, - { - "text": "Reduce the gap between urban and rural areas through poverty reduction in rural areas ", - "values": [ - "Poverty" - ] - }, - { - "text": "Consider removal of the death penalty from its statute books", - "values": [ - "Death penalty" - ] - }, - { - "text": "Provide the most recent national plan to fight violence against woman and girls, for the 2015-2019 period, with sufficient funds to ensure its effective implementation", - "values": [ - "Rights of the Child", - "Women's rights" - ] - }, - { - "text": "Ratify and effectively implement core international human rights treaties, inter alia, ICCPR, ICESCR and CAT, and fulfil the obligations under the treaties to which Myanmar is a party by bringing domestic legislation, policies and practices into harmony with the provisions therein ", - "values": [ - "CP rights - general", - "ESC rights - general", - "International instruments", - "Torture and other CID treatment" - ] - }, - { - "text": "Continue adopting public policies including affirmative measures, on provisional basis if needed, in order to increase participation of women in the political and public spheres", - "values": [ - "Women's rights" - ] - }, - { - "text": "Take further measures to improve access to basic health care, nutrition and education of children", - "values": [ - "Right to education", - "Right to food", - "Right to health", - "Rights of the Child" - ] - }, - { - "text": "Continue efforts to combat discrimination in judicial practices and law enforcement", - "values": [ - "Justice" - ] - }, - { - "text": "Revise its legislation and administrative practices to correct the amendment of birth certificates in which the name of the father is removed as a consequence of births out of wedlock ", - "values": [ - "Rights of the Child" - ] - }, - { - "text": "Impose a moratorium on executions and abolish the death penalty ", - "values": [ - "Death penalty" - ] - }, - { - "text": "Pursue efforts to ratify the International Convention for the Protection of All Persons from Enforced Disappearance (CED)", - "values": [ - "Enforced disappearances", - "International instruments" - ] - }, - { - "text": "Take necessary measures to ensure that effective protection against discrimination in all aspects of their employment is provided to all migrant domestic workers", - "values": [ - "Labour", - "Migrants", - "Racial discrimination" - ] - }, - { - "text": "Ratify the OP-CAT as well as the Rome Statute as foreseen in the National Human Rights Action Plan 2011-2014 ", - "values": [ - "Detention", - "International instruments", - "Justice", - "Torture and other CID treatment" - ] - }, - { - "text": "Take all necessary measures to strengthen the independence of the judiciary and respect for the right to a fair trial, including as part of the ongoing trial against the leaders of the Islamic Renaissance Party of Tajikistan", - "values": [ - "Freedom of association and peaceful assembly", - "Justice" - ] - }, - { - "text": "Strengthen efforts aimed at promoting gender equality, including through educational campaigns, while paying specific attention to the needs of rural women", - "values": [ - "Human rights education and training", - "Women's rights" - ] - }, - { - "text": "Ratify the Second Optional Protocol to the International Covenant on Civil and Political Rights, on abolishing the death penalty", - "values": [ - "Death penalty", - "International instruments" - ] - }, - { - "text": "Continue to take measures to ensure social equity and reduce poverty in the country", - "values": [ - "Poverty" - ] - }, - { - "text": "Take the necessary measures so that the Senegalese Human Rights Committee works with full compliance with the Paris Principles", - "values": [ - "National Human Rights Institution" - ] - }, - { - "text": "Ensure that the Criminal Code is fully in accordance with the International Covenant on Civil and Political Rights", - "values": [ - "CP rights - general", - "International instruments" - ] - }, - { - "text": "Enact domestic legislation in line with the provisions of CRC to eliminate child prostitution ", - "values": [ - "International instruments", - "Rights of the Child" - ] - }, - { - "text": "Continue deploying its best efforts to consolidate and strengthen its institutional capacities ", - "values": [ - "Other" - ] - }, - { - "text": "Implement a national employment policy for persons with disabilities", - "values": [ - "Disabilities", - "Labour" - ] - }, - { - "text": "Reform the Criminal Code to punish all cases of sexual and domestic violence", - "values": [ - "Rights of the Child", - "Women's rights" - ] - }, - { - "text": "Review the law 228/2004 to guarantee equality and nondiscrimination and protect the humane rights of all groups, including the right to education", - "values": [ - "Right to education" - ] - }, - { - "text": "Issue a standing invitation to all of the special procedures of the Human Rights Council ", - "values": [ - "Special procedures" - ] - }, - { - "text": "Strengthen mechanisms which facilitate access to justice for victims of atrocities including sexual violence", - "values": [ - "Justice", - "Rights of the Child", - "Women's rights" - ] - }, - { - "text": "Adopt a hate crime investigation protocol and ensure that victims of hate crimes have effective access to the mechanisms of justice and redress", - "values": [ - "Racial discrimination" - ] - }, - { - "text": "Ensure equal political participation and withdraw reservations to articles 3 and 25 of the ICCPR as these reservations remain critical to ensure equality rights of women and men and equal opportunities", - "values": [ - "International instruments", - "Women's rights" - ] - }, - { - "text": "Amend the Criminal Code in order to decriminalize missionary activities and to put an end to religious persecution of non-registered religious groups ", - "values": [ - "Freedom of religion and belief" - ] - }, - { - "text": "The Republic of Yemen is committed to establishing an institutional mechanism to implement the recommendations of the universal periodic review and to deal with its findings in a responsible manner.", - "values": [ - "UPR process" - ] - }, - { - "text": "Support the more effective implementation of provisions of CAT and submit its pending reports to CAT", - "values": [ - "International instruments", - "Torture and other CID treatment", - "Treaty bodies" - ] - }, - { - "text": "Accede to the Second Optional Protocol to the International Covenant on Civil and Political Rights, aimed at abolishing the death penalty, and take the necessary steps to remove the death penalty from Grenada's justice system ", - "values": [ - "Death penalty", - "International instruments" - ] - }, - { - "text": "The delegation of the Lao People's Democratic Republic reiterated the commitment of the Government to maintaining equality, justice and the rule of law.", - "values": [ - "Justice" - ] - }, - { - "text": "Support the gender integration in all spheres of life", - "values": [ - "Women's rights" - ] - }, - { - "text": "Continue its process towards the ratification of the International Convention on the Protection of the Rights of All Migrant Workers and Members of Their Families", - "values": [ - "International instruments", - "Labour", - "Migrants" - ] - }, - { - "text": "Implement the National Action Plan Eliminating Sexual and Gender Based Violence and review its laws, policies and practices which perpetuate discrimination against women and girls and their marginalization, in accordance with the Convention on the Elimination of All Forms of Discrimination against Women, to which Kiribati is a party", - "values": [ - "International instruments", - "Rights of the Child", - "Women's rights" - ] - }, - { - "text": "Consider ratifying the Second Optional Protocol to ICCPR, aiming at the abolition of the death penalty", - "values": [ - "Death penalty", - "International instruments" - ] - }, - { - "text": "Harmonize its national legislation with the provisions of the Council of Europe Convention on Preventing and Combating Violence against Women and Domestic Violence", - "values": [ - "International instruments", - "Women's rights" - ] - }, - { - "text": "Continue its efforts to address discrepancies in the enjoyment of rights by vulnerable groups, including children with disabilities, refugee children and children living in rural areas ", - "values": [ - "Asylum-seekers - refugees", - "Disabilities", - "Rights of the Child" - ] - }, - { - "text": "Take necessary measures to ensure the guarantee in the Nepal's Constitution of full equality between men and women with respect to the nationality of their children and in accordance with article 9 (2) of the Convention on the Elimination of All Forms of Discrimination against Women, which Nepal has ratified ", - "values": [ - "International instruments", - "Statelessness and the right to nationality", - "Women's rights" - ] - }, - { - "text": "Strengthen cooperation with treaty bodies", - "values": [ - "Treaty bodies" - ] - }, - { - "text": "Intensify the fight against inequalities ", - "values": [ - "Development" - ] - }, - { - "text": "Investigate all allegations of torture", - "values": [ - "Torture and other CID treatment" - ] - }, - { - "text": "Put an end to direct and indirect restrictions on freedom of expression and take effective measures to ensure the full realization of the right to freedom of expression and of assembly ", - "values": [ - "Freedom of association and peaceful assembly", - "Freedom of opinion and expression" - ] - }, - { - "text": "Accede to OP-CAT and establish a national preventive mechanism provided by the Protocol", - "values": [ - "Detention", - "International instruments", - "Torture and other CID treatment" - ] - }, - { - "text": "Consider acceding to CAT.", - "values": [ - "International instruments", - "Torture and other CID treatment" - ] - }, - { - "text": "Ban early and/or forced marriages", - "values": [ - "Rights of the Child", - "Women's rights" - ] - }, - { - "text": "Continue to strengthen the protection of vulnerable groups, such as disabled children and Roma in less developed cities and rural areas", - "values": [ - "Disabilities", - "Minorities", - "Rights of the Child" - ] - }, - { - "text": "Continue current national strategies and programmes for enhancing employment opportunities, social welfare, education and the health-care system, especially for families in rural areas, migrants and indigenous and tribal people in Chile ", - "values": [ - "Development", - "ESC rights - general", - "Indigenous peoples", - "Migrants", - "Right to education", - "Right to health" - ] - }, - { - "text": "Continue supporting international efforts to find a peaceful solution to the crisis, through a Syrian-Syrian dialogue led by the Syrian Arab Republic in a spirit of peace and reconciliation and without foreign interference, based on the principles of mutual respect, sovereign equality, self-determination and the right of peoples to choose their own political, economic and social systems", - "values": [ - "Justice" - ] - }, - { - "text": "Increase its further efforts in the area of combating human trafficking, including considering the possibility to develop a state program or a plan of actions aimed at strengthening the Government's measures to prevent and eliminate sexual exploitation and trafficking of children ", - "values": [ - "Rights of the Child", - "Trafficking" - ] - }, - { - "text": "Seek the help of the international community through different programmes of capacity building and technical assistance ", - "values": [ - "Technical assistance and cooperation" - ] - }, - { - "text": "Ensure children\u2019s rights to acquire a nationality in accordance with article 7 of the Convention on the Rights of the Child, regardless of the parents\u2019 legal status or ethnicity", - "values": [ - "International instruments", - "Rights of the Child", - "Statelessness and the right to nationality" - ] - }, - { - "text": "Lift the prohibition on the construction of minarets which was held by the High Commissioner for Human Rights and the Special Rapporteur on the Freedom of religion or belief to be clearly discriminatory", - "values": [ - "Freedom of religion and belief", - "Special procedures" - ] - }, - { - "text": "Continue efforts to combat discrimination on any ground and violence against women and girls ", - "values": [ - "Rights of the Child", - "Women's rights" - ] - }, - { - "text": "Establish a national human rights institution in line with the Paris Principles", - "values": [ - "National Human Rights Institution" - ] - }, - { - "text": "Strengthen the functions of EHRC and the Ombudsman to bring them into line with the Paris Principles ", - "values": [ - "National Human Rights Institution" - ] - }, - { - "text": "Ratify the Optional Protocol to the Convention Against Torture", - "values": [ - "Detention", - "International instruments", - "Torture and other CID treatment" - ] - }, - { - "text": "Consider the possibility of increasing or matching resources toward socio-economic and development programmes aimed at, among others, further alleviating poverty and reducing unemployment ", - "values": [ - "Development", - "Poverty" - ] - }, - { - "text": "Tackle impunity by investigating and prosecuting human rights violations and abuses committed by State and non- State actors during and since the conflict, implementing court orders including on the Nepal Army, and ending political interference ", - "values": [ - "Impunity" - ] - }, - { - "text": "Respond positively to the request of the Special Rapporteur on extrajudicial, summary or arbitrary executions to undertake a country visit", - "values": [ - "Extrajudicial executions", - "Special procedures" - ] - }, - { - "text": "Strengthen its efforts in generating social awareness of positive gender roles, targeting particularly alleviation of existing gender-based disparities in education and the labour market.", - "values": [ - "Women's rights" - ] - }, - { - "text": "Increase the human and financial resources of the National Human Rights Commission in order to allow it to obtain A status from the International Coordinating committee of national institutions for the promotion and protection of human rights", - "values": [ - "National Human Rights Institution" - ] - }, - { - "text": "Strengthen the independence of the judiciary and the justice system", - "values": [ - "Justice" - ] - }, - { - "text": "Ensure a more comprehensive application of initiatives designed to improve the situation of people with disabilities, including the Livelihood Empowerment Against Poverty programme", - "values": [ - "Disabilities" - ] - }, - { - "text": "Proceed as soon as possible with the publication and implementation of its National Human Rights Action Plan for 2009-2010 ", - "values": [ - "General" - ] - }, - { - "text": "End all recruitment and use of children by military groups ", - "values": [ - "International humanitarian law", - "Rights of the Child" - ] - }, - { - "text": "Adopt non-discriminatory policies with regard to the realization of civil, political, economic, social and cultural rights of all ethnic and religious communities, without any discrimination", - "values": [ - "Freedom of religion and belief", - "Minorities", - "Racial discrimination" - ] - }, - { - "text": "Continue efforts to realize the national development goals as stipulated in Vision 2020 and the Economic Development and Poverty Reduction Strategy", - "values": [ - "Development", - "Poverty" - ] - }, - { - "text": "Continue efforts to achieve as rapidly as possible the threshold of 30 per cent women in Parliament, as recommended by the Kenyan Constitution", - "values": [ - "Women's rights" - ] - }, - { - "text": "Ensure the prompt, thorough and impartial investigation of all violations against Human Rights Defenders, the prosecution of perpetrators, and access to effective remedies for victims", - "values": [ - "Human rights defenders" - ] - }, - { - "text": "Continue the actions aimed at duly implementing the Action Plan to fight against the recruitment and use of children and other serious violations of the rights of the child by the armed forces and security services of 2012, and of the National Action Plan against the worst forms of child labour of 2011", - "values": [ - "International humanitarian law", - "Labour", - "Rights of the Child" - ] - }, - { - "text": "Continue its positive engagement towards elimination of discrimination against women", - "values": [ - "Women's rights" - ] - }, - { - "text": "Take action at all levels to address the interlinked root causes of preventable mortality and morbidity of children under 5 and consider applying the Technical guidance on the application of a human rights-based approach to the implementation of policies and programmes to reduce and eliminate preventable mortality and morbidity of children under 5 years of age (A/HRC/27/31)", - "values": [ - "Right to health", - "Rights of the Child" - ] - }, - { - "text": "Draw up plans for transitional justice to ensure that all perpetrators of human rights abuses would be brought to justice", - "values": [ - "Justice" - ] - }, - { - "text": "Take steps to ensure the successful implementation of the various programmes in accordance with its social security law", - "values": [ - "ESC rights - general" - ] - }, - { - "text": "Ensure full respect for human rights by law enforcement agencies and ensure that violations are subjected to judicial prosecutions", - "values": [ - "Human rights violations by state agents" - ] - }, - { - "text": "To strengthen the institutional and normative framework", - "values": [ - "General" - ] - }, - { - "text": "Allocate more resources to training of specialists in the medical field, alongside doctors, nurses, midwives and social workers", - "values": [ - "Right to health" - ] - }, - { - "text": "Give priority to judicial system reform, especially to ensure equal access to justice, expeditious court proceedings and effective enforcement of court decisions, as well as to integrate human rights education into professional training programmes for judges and prosecutors", - "values": [ - "Human rights education and training", - "Justice" - ] - }, - { - "text": "Eliminate stereotypes and harmful practices against women (including female genital mutilation, wife inheritance, and forced and early marriage)", - "values": [ - "Rights of the Child", - "Torture and other CID treatment", - "Women's rights" - ] - }, - { - "text": "Ratify and implement the Optional Protocol to the Convention against Torture at the earliest possible time", - "values": [ - "Detention", - "International instruments", - "Torture and other CID treatment" - ] - }, - { - "text": "Take all steps necessary to remove ethnic segregation from schools, in order to encourage greater understanding among young people of different ethnicities", - "values": [ - "Racial discrimination" - ] - }, - { - "text": "Carry out a thorough and independent investigation on the policy of forced sterilization undertaken by the authorities in the 1990s, so as to ensure that those persons responsible do not enjoy impunity and that victims can obtain reparation", - "values": [ - "Impunity", - "Torture and other CID treatment" - ] - }, - { - "text": "Make easier the living conditions of the Batwa community which are of concern, particularly with regard to their access to land", - "values": [ - "Indigenous peoples", - "Right to land" - ] - }, - { - "text": "Continue to seek technical assistance from the international community in line with recommendation 12 in the OHCHR assessment mission report", - "values": [ - "Technical assistance and cooperation" - ] - }, - { - "text": "Take the necessary measures to ensure effective implementation of the Scheduled Castes and Scheduled Tribes Act, notably through the training of State officials", - "values": [ - "Human rights education and training", - "Minorities" - ] - }, - { - "text": "Improve the transparency of the electoral process, provide equal conditions for all candidates, prevent obstruction of the media and the Internet, and ensure the independence of the Electoral Commission and impartial investigation of allegations of election fraud and violence", - "values": [ - "Elections", - "Freedom of the press" - ] - }, - { - "text": "Consider accession to core international human rights instruments, as appropriate ", - "values": [ - "International instruments" - ] - }, - { - "text": "Work to conclude the reforms of the justice system", - "values": [ - "Justice" - ] - }, - { - "text": "Take measures to reduce discrimination against migrants, especially those of Asian origin, in the labour market ", - "values": [ - "Labour", - "Migrants" - ] - }, - { - "text": "Continue on the path of reducing the wage gap between men and women, including by combating the root causes of the gender pay gap ", - "values": [ - "Women's rights" - ] - }, - { - "text": "Ensure that appropriate legal frameworks are in place in line with the international conventions governing the issue of nationality ", - "values": [ - "Other", - "Statelessness and the right to nationality" - ] - }, - { - "text": "Respond effectively to the request for information by the Human Rights Committee in 2009 regarding the follow-up given to the recommendations related to forced disappearances, assassinations, summary and extrajudicial executions, and life sentences in isolation cells ", - "values": [ - "Detention", - "Enforced disappearances", - "Extrajudicial executions", - "Treaty bodies" - ] - }, - { - "text": "Investigate cases of forced sterilization of women with disabilities", - "values": [ - "Women's rights" - ] - }, - { - "text": "Seek financial support and technical assistance from the international community, in order to bolster its efforts as part of the national on-going process to achieve the Millennium Development Goals", - "values": [ - "Development", - "Technical assistance and cooperation" - ] - }, - { - "text": "Ensure compliance of the Ombudsman's institution with the Paris Principles ", - "values": [ - "National Human Rights Institution" - ] - }, - { - "text": "Take measures to strengthen support institutions for homeless persons, including pregnant women left without housing", - "values": [ - "Poverty", - "Right to housing", - "Women's rights" - ] - }, - { - "text": "Speed up the process of formulating an antidiscrimination legal framework and strengthen the role of administrative structures established to sanction any form of discrimination. ", - "values": [ - "Racial discrimination" - ] - }, - { - "text": "Invite the Special Rapporteur on the independence of judges and lawyers to perform an official country visit", - "values": [ - "Justice", - "Special procedures" - ] - }, - { - "text": "Enhance efforts to combat discrimination against minority groups in the country, by effectively investigating and adequately punishing any racially motivated conduct", - "values": [ - "Minorities", - "Racial discrimination" - ] - }, - { - "text": "Continue efforts to conduct the national reconciliation", - "values": [ - "Justice" - ] - }, - { - "text": "Further elaborate and integrate a gender perspective in the national education system ", - "values": [ - "Right to education", - "Women's rights" - ] - }, - { - "text": "Ratify ICERD, CAT, ICRMW, CRPD and CED", - "values": [ - "International instruments" - ] - }, - { - "text": "Adopt a law on the fight against all forms of discrimination and clearly guarantee, in its domestic law, the freedom of expression and therefore the right for LGBT persons to peaceful demonstrations ", - "values": [ - "Freedom of association and peaceful assembly", - "Freedom of opinion and expression", - "Sexual Orientation and Gender Identity" - ] - }, - { - "text": "Enhance and enshrine in law services aimed at protecting women and provide women with adequate information on how to access such support and medical care, including permitted abortions", - "values": [ - "Women's rights" - ] - }, - { - "text": "Continue efforts for the establishment of a national human rights institution with an "A" status in conformity with the Paris Principles ", - "values": [ - "National Human Rights Institution" - ] - }, - { - "text": "Intensify awareness-raising measures against femicide and violence against women, as well as on the recommendations of the Committee on the Elimination of Discrimination against Women", - "values": [ - "Human rights education and training", - "Treaty bodies", - "Women's rights" - ] - }, - { - "text": "Consider the early ratification of the third Optional Protocol to the CRC on a Communication Procedure (OP-CRC-IC) ", - "values": [ - "International instruments", - "Rights of the Child" - ] - }, - { - "text": "Reinforce preventive measures for combating trafficking in women and girls for purposes such as sexual exploitation ", - "values": [ - "Rights of the Child", - "Trafficking", - "Women's rights" - ] - }, - { - "text": "Continue efforts to promote and protect the rights of the child and consider establishing a specialised national body for the protection of the rights of the child", - "values": [ - "Rights of the Child" - ] - }, - { - "text": "Ratify human rights conventions, including the International Covenant on Civil and Political Rights, the International Covenant on Economic, Social and Cultural Rights, the Convention against Torture and its Optional Protocol", - "values": [ - "CP rights - general", - "Detention", - "ESC rights - general", - "International instruments", - "Torture and other CID treatment" - ] - }, - { - "text": "Seek the support of the Office of the United Nations High Commissioner for Human Rights and the international community in the key areas listed in the report for which capacity-building is required ", - "values": [ - "Technical assistance and cooperation" - ] - }, - { - "text": "Continue giving priority and allocating adequate resources for the implementation of the national strategies for the protection and promotion of the rights of children", - "values": [ - "Rights of the Child" - ] - }, - { - "text": "Improve identification of the victims of trafficking in human beings by setting up a coherent national mechanism of identification and referral of such cases", - "values": [ - "Trafficking" - ] - }, - { - "text": "Ensure that administrative detention is subject to the same right to challenge the lawfulness of detention as other forms of detention ", - "values": [ - "Detention" - ] - }, - { - "text": "Ensure speedy passage of the bills on the establishment of a NHRI and Office of the Ombudsman. ", - "values": [ - "National Human Rights Institution" - ] - }, - { - "text": "Continue to combat trafficking in human beings", - "values": [ - "Trafficking" - ] - }, - { - "text": "Continue the efforts to eradicate domestic violence and provide protection guarantees for women and children", - "values": [ - "Rights of the Child", - "Women's rights" - ] - }, - { - "text": "Adopt all necessary measures to combat effectively the child labour and trafficking of children ", - "values": [ - "Labour", - "Rights of the Child", - "Trafficking" - ] - }, - { - "text": "Ratify the other international instruments on human rights that the country is not yet a party to", - "values": [ - "International instruments" - ] - }, - { - "text": "Thailand is also committed to the implementation of its human rights pledges which have already been translated into an action plan with a follow-up mechanism. International standards reflected in international human rights instruments have become benchmarks for drafting of laws and policies on human rights protection for the people", - "values": [ - "International instruments" - ] - }, - { - "text": "The Government has committed itself to the principles of health for all through primary health care reflected in the national PHC policy adopted in 1999.", - "values": [ - "Right to health" - ] - }, - { - "text": "Consider the possibility of increasing the rate of accepted asylum applications, reducing the administrative and regulatory obstacles that prevent the acceptance of a higher number of asylum applications, and also consider increasing the acceptance of applications for solidarity resettlement of refugees recognized as entitled to this status, in particular those who arrive from the South", - "values": [ - "Asylum-seekers - refugees" - ] - }, - { - "text": "That the various forces in Libya act in the interests of the nation and the people, immediately stop fighting and violence, end the disorder, start the political process as soon as possible, resolve their differences, and safeguard ethnic and national unity", - "values": [ - "Minorities", - "Public security" - ] - }, - { - "text": "Implement the recommendations of various treaty bodies as well as of the national Parliament Commissioner for Human Rights to establish a separate juvenile justice system for children and youth in line with European and international standards, as soon as possible.", - "values": [ - "Justice", - "Rights of the Child", - "Treaty bodies" - ] - }, - { - "text": "Formally codify in domestic law its international legal commitments, and repeal or amend incompatible repressive laws ", - "values": [ - "International instruments" - ] - }, - { - "text": "Step up efforts to fight trafficking of persons and in this regard consider the possibility of developing a comprehensive national strategy for the fight against trafficking in persons ", - "values": [ - "Trafficking" - ] - }, - { - "text": "When responding to hate crimes, ensure targeted training of law enforcement to strengthen capacity to conduct special investigations, accurately register complaints and reflect victims' perspectives", - "values": [ - "Racial discrimination" - ] - }, - { - "text": "Review and abolish those legal and practical measures which precluded the naturalized Monegasques, being eligible for elections, in particular articles 54 and 79 of the Constitution in order to remove any inappropriate differentiation between its citizens ", - "values": [ - "Elections" - ] - }, - { - "text": "Ratify the Optional Protocol to the International Covenant on Economic, Social and Cultural Rights", - "values": [ - "ESC rights - general" - ] - }, - { - "text": "Safeguard enjoyment of human rights for all minorities, particularly Rohingyas, bring to an end discriminatory practices faced by the community, and prosecute perpetrators of violations", - "values": [ - "Freedom of religion and belief", - "Minorities", - "Racial discrimination" - ] - }, - { - "text": "Complete the establishment of the National Commission for Human Rights as soon as possible", - "values": [ - "National Human Rights Institution" - ] - }, - { - "text": "Follow up efforts to strengthen the legal framework and policies designed to promote and protect child rights ", - "values": [ - "Rights of the Child" - ] - }, - { - "text": "Adopt a clear road map to reach ODA target of 0.7 per cent of GNI", - "values": [ - "Development" - ] - }, - { - "text": "Ensure that all criminal law provisions, including Section 244A of the Criminal Code, which imposes harsh penalties for a wide range of legitimate expression, are fully consistent with the enjoyment of the right to freedom of opinion and expression and the right to freedom of peaceful assembly and association", - "values": [ - "Freedom of association and peaceful assembly", - "Freedom of opinion and expression" - ] - }, - { - "text": "Continue efforts to promote human rights, particularly in the areas of education and professional training ", - "values": [ - "Human rights education and training" - ] - }, - { - "text": "Prohibit corporal punishment in all settings", - "values": [ - "Torture and other CID treatment" - ] - }, - { - "text": "Establish as soon as possible mechanisms to ensure transparent and responsible governance of the extractive industries sector which fulfil the membership requirements in the Extractive Industries Transparency Initiative ", - "values": [ - "Business and human rights" - ] - }, - { - "text": "Redouble its efforts to shed light on the cases of enforced disappearances that have remained unresolved ", - "values": [ - "Enforced disappearances" - ] - }, - { - "text": "Intensify measures to raise public awareness of the General Equal Treatment Act ", - "values": [ - "Women's rights" - ] - }, - { - "text": "Engage in constructive dialogue and reconciliation with the main opposition party to diffuse lingering tensions from the August 2016 general election", - "values": [ - "Elections" - ] - }, - { - "text": "Step up programmes aimed at eradicating poverty and improving social indicators, including in health and education.", - "values": [ - "Poverty", - "Right to education", - "Right to health" - ] - }, - { - "text": "Strengthen measures to combat ethnic profiling and to further separate it from hate speech which targets certain minorities, and protect the exercise of freedom of expression", - "values": [ - "Freedom of opinion and expression", - "Minorities", - "Racial discrimination" - ] - }, - { - "text": "Take steps to improve the situation of asylum seekers and refugees through, inter alia, discontinuing the practice of detention of unaccompanied children, providing identification documents for refugees and ensuring their access to social assistance, implementing integration and housing programmes, as well as refraining from detaining asylum seekers, except as a last resort", - "values": [ - "Asylum-seekers - refugees", - "Rights of the Child" - ] - }, - { - "text": "Develop and implement regulations and practices to ensure transparency in the ownership of media in order to prevent undue influence over editorial material by politicians, businessmen and other centres of power ", - "values": [ - "Freedom of the press" - ] - }, - { - "text": "Sign and ratify the OP-ICESCR and the OP-CRC-IC", - "values": [ - "ESC rights - general", - "International instruments", - "Rights of the Child" - ] - }, - { - "text": "Respect international standards that provide safeguards guaranteeing protection of the rights of those facing the death penalty, to progressively restrict the use of the death penalty and reduce the number of offences for which it may be imposed, and establish a moratorium on executions with a view to abolishing the death penalty.", - "values": [ - "Death penalty" - ] - }, - { - "text": "Continue to support UNHCR and other humanitarian agencies", - "values": [ - "Development" - ] - }, - { - "text": "Seek the support of the international community and cooperate with it to formulate policies aimed at preventing the spread of HIV-AIDS ", - "values": [ - "HIV - Aids", - "Technical assistance and cooperation" - ] - }, - { - "text": "Take measures to tackle the exploitation of children, including domestic work, hazardous labour, especially in the mining sector, commercial sex and trafficking, starting with the ratification of the ILO Minimum Age Convention No. 138 and the ILO Convention No. 182 on Worst Form of Child Labour ", - "values": [ - "Business and human rights", - "International instruments", - "Labour", - "Rights of the Child", - "Trafficking" - ] - }, - { - "text": "Undertake credible and effective investigations as a matter of priority regarding the Mungiki killings, the Mount Elgon operation and the murders of two civil society activists in addition to the post-election violence ", - "values": [ - "Civil society", - "Elections", - "Justice" - ] - }, - { - "text": "Continue combating inequalities in access to employment and in working conditions based on gender and race as noted by CESCR ", - "values": [ - "Minorities", - "Treaty bodies", - "Women's rights" - ] - }, - { - "text": "Improve its national human rights institution in accordance with the Paris Principles", - "values": [ - "National Human Rights Institution" - ] - }, - { - "text": "Bolster its efforts to address the issue of trafficking in persons, especially women and girls, in a more comprehensive and systematic manner that includes all aspects of prevention, protection and prosecution ", - "values": [ - "Rights of the Child", - "Trafficking", - "Women's rights" - ] - }, - { - "text": "Take further steps to prevent incidents of violence against all of its people, including targeted groups such as community leaders, journalists, and land claimants by improving current protection and prevention programmes, introducing education campaigns, and ensuring effective intervention and investigation by law enforcement officials ", - "values": [ - "Freedom of the press", - "Human rights defenders", - "Right to land" - ] - }, - { - "text": "Continue developing the strategy and normative complementary measures, which ensure continuity in the reform of the judicial sector", - "values": [ - "Justice" - ] - }, - { - "text": "Step up efforts in the area of combating trafficking of human beings, as well as invite the Special Rapporteur on human trafficking to visit the country", - "values": [ - "Special procedures", - "Trafficking" - ] - }, - { - "text": "Continue to work towards closing the existing gaps in the protection of human rights and the promotion of welfare for indigenous peoples in order to achieve sustainable economic and social development", - "values": [ - "Development", - "ESC rights - general", - "Indigenous peoples" - ] - }, - { - "text": "Adopt targeted policies and programmes to offer protections for the most vulnerable in society, including women, children and persons with disabilities, and to eliminate discrimination against them ", - "values": [ - "Disabilities", - "Rights of the Child", - "Women's rights" - ] - }, - { - "text": "Continue its efforts to enhance religious tolerance and harmony among the vast and diverse society of Indonesia through the existing Religious Harmony Forum both at the national and sub-national levels ", - "values": [ - "Freedom of religion and belief" - ] - }, - { - "text": "Take measures to protect the right to privacy by developing an effective system for monitoring the legality of data collection on citizens by Serbian security services and ensuring that the confidentiality of any collected information is respected ", - "values": [ - "Privacy" - ] - }, - { - "text": "Engage in a constructive cooperation with United Nations special procedures ", - "values": [ - "Special procedures" - ] - }, - { - "text": "Take the necessary measures to promote a greater inclusion of persons with disabilities in the areas of education and employment", - "values": [ - "Disabilities", - "Labour", - "Right to education" - ] - }, - { - "text": "Implement fully and effectively the judgments of the European Court of Human Rights in the case of RR v. Poland and P&S v. Poland on the issue of women and girls\u2019 access to sexual and reproductive health-care and services", - "values": [ - "Right to health", - "Women's rights" - ] - }, - { - "text": "Guarantee the full exercise of freedom of religion ", - "values": [ - "Freedom of religion and belief" - ] - }, - { - "text": "Intensify efforts to investigate allegations of excessive or unlawful use of force by police and the military, and to prosecute such cases as appropriate", - "values": [ - "Human rights violations by state agents" - ] - }, - { - "text": "Build on its existing legal framework by devoting additional resources to providing assistance to victims of trafficking ", - "values": [ - "Trafficking" - ] - }, - { - "text": "Pursue efforts to promote a culture of law and transform Lao society into a society ruled by equity and justice ", - "values": [ - "Justice" - ] - }, - { - "text": "Provide adequate resources and functional independence to the Equal Treatment Authority", - "values": [ - "General" - ] - }, - { - "text": "Take the necessary measures to bring into justice and prosecute perpetrators of violations of the international human rights law and humanitarian Law", - "values": [ - "International humanitarian law" - ] - }, - { - "text": "Ensure that asylum procedures fully respect the best interest and special needs of unaccompanied children", - "values": [ - "Asylum-seekers - refugees", - "Rights of the Child" - ] - }, - { - "text": "Set up the National Human Rights Commission in accordance with the Paris Principles ", - "values": [ - "National Human Rights Institution" - ] - }, - { - "text": "Withdraw its reservations made to article 37 (c) of the Convention on the Rights of the Child (CRC)", - "values": [ - "International instruments", - "Rights of the Child" - ] - }, - { - "text": "Improve prisons and detention facilities, also by means of human rights training for law enforcement officials and prison officials.", - "values": [ - "Detention", - "Human rights education and training" - ] - }, - { - "text": "Ratify all the main international human rights instruments, especially ICCPR and ICESCR", - "values": [ - "CP rights - general", - "ESC rights - general", - "International instruments" - ] - }, - { - "text": "Promote human rights in police and judicial cooperation by empowering the human rights units in state institutions through adequate funding, coordination and institutional capacity-building", - "values": [ - "Justice" - ] - }, - { - "text": "Accede to the Convention relating to the Status of Refugees, as well as its Protocol and take all necessary measures so the fundamental rights of refugees residing in the country are protected ", - "values": [ - "Asylum-seekers - refugees", - "International instruments" - ] - }, - { - "text": "Take the most appropriate measures to better protect children with disabilities ", - "values": [ - "Disabilities", - "Rights of the Child" - ] - }, - { - "text": "Strengthen health-care services, with particular attention to women's and children's health", - "values": [ - "Right to health", - "Rights of the Child", - "Women's rights" - ] - }, - { - "text": "Revise the Law on non-governmental organizations to comply fully with international human rights law ", - "values": [ - "Civil society", - "International instruments" - ] - }, - { - "text": "Introduce reforms to the judicial system to expedite the administration of justice, including the creation or increase in number of courts for lesser offences, and to study the possibility of implementing a system of probation for those accused of lesser crimes and who do not pose a threat to society.", - "values": [ - "Justice" - ] - }, - { - "text": "Continue promoting social inclusion by strengthening the protection of ethnic minorities, in particular the Roma", - "values": [ - "Minorities" - ] - }, - { - "text": "Guarantee detainees their fundamental rights, especially the right of access to a lawyer.", - "values": [ - "Detention" - ] - }, - { - "text": "Take measures to prevent all incidents of violence against women, in particular in rural areas, and ensure effective interventions by law enforcement officials responding to allegations of violence committed by intimate partners, and prosecute perpetrators", - "values": [ - "Women's rights" - ] - }, - { - "text": "Allow meaningful and confidential access for international groups to persons returned to the Lao People's Democratic Republic from Thailand", - "values": [ - "Asylum-seekers - refugees" - ] - }, - { - "text": "Adopt measures aimed at reducing poverty in the Batwa community, and its full integration in society ", - "values": [ - "Indigenous peoples", - "Poverty" - ] - }, - { - "text": "Intensify its efforts to ratify the OP-CRC-AC", - "values": [ - "International humanitarian law", - "International instruments", - "Rights of the Child" - ] - }, - { - "text": "Adopt political measures to increase the representation of women in decision-making and high-level posts in the public administration ", - "values": [ - "Women's rights" - ] - }, - { - "text": "Implement legislation against violence and the discrimination against women in a comprehensive way and with a gender perspective", - "values": [ - "Women's rights" - ] - }, - { - "text": "Fully investigate abuses against persons with albinism and ensure that those responsible for crimes are prosecuted", - "values": [ - "Minorities" - ] - }, - { - "text": "Respect the legitimate exercise of freedom of association and ensure all human rights activists operating in the country, including individuals cooperating with United Nations human rights mechanisms, are spared from any harassment of intimidation ", - "values": [ - "Freedom of association and peaceful assembly", - "Human rights defenders", - "Special procedures", - "Treaty bodies", - "UPR process" - ] - }, - { - "text": "Sign and ratify CAT and the Protocols thereto", - "values": [ - "Detention", - "International instruments", - "Torture and other CID treatment" - ] - }, - { - "text": "Take all necessary measures to guarantee the human rights of LGBT individuals and that they do not face persecution of any kind", - "values": [ - "Sexual Orientation and Gender Identity" - ] - }, - { - "text": "Resume dialogue with Nepal and enhance cooperation with the Office of the United Nations High Commissioner for Refugees UNHCR to resolve the question of Bhutanese refugees, including by voluntary return, with particular attention to family reunification and other humanitarian cases", - "values": [ - "Asylum-seekers - refugees" - ] - }, - { - "text": "Review and amend legislation containing discriminatory provisions towards women such as, inter alia, the Personal Status Law and the Criminal Law, and adopt a national action plan on gender equality", - "values": [ - "Women's rights" - ] - }, - { - "text": "Extend a standing invitation for all mandate holders", - "values": [ - "Special procedures" - ] - }, - { - "text": "Promote the introduction of human rights education in the educational system and in training programs", - "values": [ - "Human rights education and training" - ] - }, - { - "text": "Implement effectively the 2030 Sustainable Development Goals and promote sustainable economic and social development in order to create a solid foundation for the development of its human rights cause", - "values": [ - "Development" - ] - }, - { - "text": "Bring its legislation in compliance with the Convention on the Rights of the Child ", - "values": [ - "International instruments", - "Rights of the Child" - ] - }, - { - "text": "Introduction of new concrete measures to protect child victims of trafficking and minors in custody and detention", - "values": [ - "Detention", - "Rights of the Child", - "Trafficking" - ] - }, - { - "text": "Enhance the legal protection of children against all types of violence and prohibit, through adequate legislative measures, all forms of corporal punishment ", - "values": [ - "Rights of the Child", - "Torture and other CID treatment" - ] - }, - { - "text": "Be more proactive in promoting and protecting freedom of religion and belief, including in preventing hate speech, racist propaganda and ethnic profiling ", - "values": [ - "Freedom of religion and belief", - "Racial discrimination" - ] - }, - { - "text": "Make effective a genuine process of national dialogue with the opposition", - "values": [ - "Elections" - ] - }, - { - "text": "Eliminate existing norms against homosexuality, in particular articles 137, 153, and 156 of the Penal Code", - "values": [ - "Sexual Orientation and Gender Identity" - ] - }, - { - "text": "Adopt comprehensive and human-centred approaches to its anti-illegal drug policy, particularly the provision of appropriate health measures", - "values": [ - "Right to health" - ] - }, - { - "text": "Attach more importance to the protection of social vulnerable groups, including women, children, elderly and the poor people", - "values": [ - "Poverty", - "Rights of the Child", - "Women's rights" - ] - }, - { - "text": "Reinforce the schooling of persons with disabilities", - "values": [ - "Disabilities", - "Right to education" - ] - }, - { - "text": "Establish a national human rights institute in accordance with the Paris Principles, in accordance with the Order of Application relating to the human resources of the national human rights institution created in 2015", - "values": [ - "National Human Rights Institution" - ] - }, - { - "text": "Release all political prisoners and pro-reunification figures who have been unjustly detained by arbitrary application of \u201cNational Security Law\u201c", - "values": [ - "Detention", - "Freedom of opinion and expression" - ] - }, - { - "text": "Establish an effective and independent police oversight mechanism.", - "values": [ - "Justice" - ] - }, - { - "text": "Ratify the UNESCO Convention on discrimination in education", - "values": [ - "International instruments", - "Right to education" - ] - }, - { - "text": "Tighten its regulation on civilian possession of weapons and firearms, enhance oversight on private security companies and put in place stronger safeguards to protect the safety of Honduran citizens, especially in the conflict in the Aguan River Valley", - "values": [ - "Public security" - ] - }, - { - "text": "Develop a comprehensive national system of data collection, analysis and dissemination regarding immigration policies and practices to be used as a foundation for rights-based policymaking on migration", - "values": [ - "Migrants" - ] - }, - { - "text": "Continue the process of national reconciliations in order to enshrine the bases of the national unity, stability and internal security", - "values": [ - "Justice" - ] - }, - { - "text": "An increase in the number of shelters for refugees in Yemen", - "values": [ - "Asylum-seekers - refugees" - ] - }, - { - "text": "Continue implementing high-quality intercultural education", - "values": [ - "Right to education" - ] - }, - { - "text": "Expand and develop its social programs with a special emphasis on the most disadvantaged persons, especially women and children", - "values": [ - "Rights of the Child", - "Women's rights" - ] - }, - { - "text": "Intensify youth programs and create more employment opportunities for young people", - "values": [ - "Development" - ] - }, - { - "text": "Continue efforts on gender issues, including policies aimed at the empowerment of women and their integration in the education system.", - "values": [ - "Right to education", - "Women's rights" - ] - }, - { - "text": "Take further steps to implement the recommendations accepted during the first review cycle", - "values": [ - "UPR process" - ] - }, - { - "text": "Develop human rights indicators as an instrument that allows for a more precise and coherent evaluation of national human rights policies", - "values": [ - "Other" - ] - }, - { - "text": "Further strengthen the Independent Commission of Investigations (INDECOM) in line with international standards by amending the Coroner's Act to include INDECOM as an interested party to an inquiry into a death, and reforming INDECOM Act to settle challenges from the police to INDECOM's jurisdiction and mandate", - "values": [ - "Justice" - ] - }, - { - "text": "Ensure that crimes and violations against human rights defenders, journalists and lawyers are effectively investigated and prosecuted. that those responsible are punished", - "values": [ - "Freedom of the press", - "Human rights defenders" - ] - }, - { - "text": "Continue its policies aimed at strengthening the educational system", - "values": [ - "Right to education" - ] - }, - { - "text": "Step up efforts to protect the rights of migrants ", - "values": [ - "Migrants" - ] - }, - { - "text": "Continue efforts to tackle human trafficking, notably through enhancing awareness-raising initiatives", - "values": [ - "Trafficking" - ] - }, - { - "text": "Fully implement in time the provisions contained in the Master Plan regarding penal establishments ", - "values": [ - "Justice" - ] - }, - { - "text": "Grant access to quality education for Roma children in mainstream schools", - "values": [ - "Minorities", - "Right to education", - "Rights of the Child" - ] - }, - { - "text": "Promote a higher and adequate representation of women in the public institutions", - "values": [ - "Women's rights" - ] - }, - { - "text": "Guarantee the protection of the civil and political rights of all, particularly dissidents and members of minority groups", - "values": [ - "CP rights - general", - "Minorities" - ] - }, - { - "text": "Strengthen efforts to improve the conditions in prisons and guarantee the rights of detainees", - "values": [ - "Detention" - ] - }, - { - "text": "Continue working towards the ratification of major international human rights instruments, such as the Optional Protocol to Suppress and Punish Trafficking in Persons, Especially Women and Children", - "values": [ - "International instruments", - "Rights of the Child", - "Trafficking", - "Women's rights" - ] - }, - { - "text": "Amend the criminal code in order to include the definition of sexual violence, in accordance with international standards", - "values": [ - "Rights of the Child", - "Women's rights" - ] - }, - { - "text": "Step up efforts in order to ensure the right of access to health for all", - "values": [ - "Right to health" - ] - }, - { - "text": "Strengthen national policies in the area of public health coverage, particularly in the fight against HIV/AIDS in rural areas", - "values": [ - "HIV - Aids", - "Right to health" - ] - }, - { - "text": "Address the prevalence of exploitative child labor by enforcing its labor laws ", - "values": [ - "Labour", - "Rights of the Child" - ] - }, - { - "text": "Take appropriate measures to eliminate all forms of discrimination against rural women with respect to ownership of land in line with the recommendations of CEDAW", - "values": [ - "Right to land", - "Treaty bodies", - "Women's rights" - ] - }, - { - "text": "Combat the issues of rape and prostitution of minors by ensuring the full implementation of the laws criminalizing sexual abuse and exploitation ", - "values": [ - "Rights of the Child" - ] - }, - { - "text": "Issue a standing invitation to all thematic Special Procedures mandate holders, in particular the Special Rapporteur on the rights to freedom of peaceful assembly and of association", - "values": [ - "Freedom of association and peaceful assembly", - "Special procedures" - ] - }, - { - "text": "Immediately reinstate the moratorium on the death penalty with a view to abolishing it", - "values": [ - "Death penalty" - ] - }, - { - "text": "Continue to promote initiatives on dialogue among cultures", - "values": [ - "Other" - ] - }, - { - "text": "Bolster the Office of the Federal Special Prosecutor on violence against women so that it may better investigate cases, and that cases falling within local jurisdiction be investigated with due diligence", - "values": [ - "Women's rights" - ] - }, - { - "text": "Intensify efforts to ensure a favourable environment for the activities of journalists, human rights defenders and other civil society actors", - "values": [ - "Civil society", - "Freedom of the press", - "Human rights defenders" - ] - }, - { - "text": "Continue the socioeconomic programmes for detainees in relation to their post-detention socio-professional reinsertion, in particular in favour of women and youths", - "values": [ - "Detention", - "Rights of the Child", - "Women's rights" - ] - }, - { - "text": "Step up the efforts to ensure the non-recruitment and demobilization of child soldiers ", - "values": [ - "International humanitarian law", - "Rights of the Child" - ] - }, - { - "text": "Ensure effective protection against violence and discrimination against women, and implement awareness-raising campaigns about changes in traditional attitudes and discriminatory gender roles ", - "values": [ - "Human rights education and training", - "Women's rights" - ] - }, - { - "text": "Complete the investigation on its involvement in Central Intelligence Agency rendition and secret detention programmes, within a reasonable time", - "values": [ - "Counter-terrorism" - ] - }, - { - "text": "Enact laws criminalising acts of discrimination against minorities such as hate speech", - "values": [ - "Minorities", - "Racial discrimination" - ] - }, - { - "text": "Continue activities in ensuring women's rights and gender equality ", - "values": [ - "Women's rights" - ] - }, - { - "text": "Implement a national programme to combat trafficking and sexual exploitation of women and children ", - "values": [ - "Rights of the Child", - "Trafficking", - "Women's rights" - ] - }, - { - "text": "Prohibit corporal punishment in other public institutions and abolish whipping as a form of punishment ", - "values": [ - "Torture and other CID treatment" - ] - }, - { - "text": "Take into account gender equality in all areas, in view of providing equal access to decision-making positions within the government as well as to education, justice and land ", - "values": [ - "Women's rights" - ] - }, - { - "text": "Sign, ratify and implement the provisions of the European Charter for Regional or Minority Languages", - "values": [ - "Minorities" - ] - }, - { - "text": "Undertake all necessary measures to ensure that Article 57 of the Code of Military Justice conforms with the Mexican constitution", - "values": [ - "Justice" - ] - }, - { - "text": "Consider developing human rights indicators as suggested by OHCHR as an instrument that allows for a more precise and coherent evaluation of national human rights policies", - "values": [ - "Other" - ] - }, - { - "text": "Modify the current legislation to eliminate discrimination based on sexual orientation", - "values": [ - "Sexual Orientation and Gender Identity" - ] - }, - { - "text": "Take necessary measures to ensure respect for the right to freedom of association, including by repealing legislative and administrative restrictions on the activities of NGOs ", - "values": [ - "Civil society", - "Freedom of association and peaceful assembly" - ] - }, - { - "text": "Reduce delays in investigations and prosecutions by police, judges and prosecutors by creating mechanisms to fully implement legal and constitutional provisions guaranteeing access to justice for both victims of crime and offenders", - "values": [ - "Justice" - ] - }, - { - "text": "Establish a procedure to review decisions by the Director of Public Prosecution regarding the prosecution of police officers for unlawful killings ", - "values": [ - "Human rights violations by state agents" - ] - }, - { - "text": "Continue to ensure inclusive education for children and persons with disabilities, as education would allow them to participate more fully in the development of their own communities ", - "values": [ - "Disabilities", - "Right to education", - "Rights of the Child" - ] - }, - { - "text": "Incorporate, in accordance with the Committee's recommendation, the Convention against Torture into the domestic law ", - "values": [ - "International instruments", - "Torture and other CID treatment", - "Treaty bodies" - ] - }, - { - "text": "Take additional measures to address issues of overcrowding in its prisons in compliance with international standards", - "values": [ - "Detention" - ] - }, - { - "text": "Continue its endeavour to create an independent national human rights institution that complies with the Paris Principles.", - "values": [ - "National Human Rights Institution" - ] - }, - { - "text": "Increase efforts to combat existing discrimination among children, as reported by the Committee on the Rights of the Child, by taking effective measures against any form of exploitation of children, especially girls, including for prostitution, pornography and domestic work ", - "values": [ - "Rights of the Child", - "Treaty bodies" - ] - }, - { - "text": "Take affirmative measures to prevent exclusion and marginalization of indigenous population of the country", - "values": [ - "Indigenous peoples" - ] - }, - { - "text": "Enact legislation to recognize lesbian, gay, bisexual, transgender and intersex people\u2019s equal rights to enter into marriage", - "values": [ - "Sexual Orientation and Gender Identity" - ] - }, - { - "text": "Strengthen health care and consider the possibility of providing mobile clinics for Bedouins", - "values": [ - "Minorities", - "Right to health" - ] - }, - { - "text": "Continue to eradicate cultural practices that violate the rights of women and girls.", - "values": [ - "Rights of the Child", - "Women's rights" - ] - }, - { - "text": "Strengthen the efforts made to combat violence against women by way of information, prevention, protection of victims and punishment of the perpetrators.", - "values": [ - "Women's rights" - ] - }, - { - "text": "Continue to take measures necessary to achieve the full and effective participation of woman in the political, social and economic fields ", - "values": [ - "Women's rights" - ] - }, - { - "text": "The Government was committed to developing a system of universal health care", - "values": [ - "Right to health" - ] - }, - { - "text": "Continue efforts to protect and promote human rights in conformity with its self pledged commitments and the development needs of society.", - "values": [ - "General" - ] - }, - { - "text": "Immediately criminalize rape within marriage ", - "values": [ - "Women's rights" - ] - }, - { - "text": "Eliminate discrimination between women and men in inheritance rights ", - "values": [ - "Women's rights" - ] - }, - { - "text": "Pursue efforts to create new job opportunities and to promote a legal framework for the labour market ", - "values": [ - "Development", - "Labour" - ] - }, - { - "text": "Continue to provide specific and practical human rights education and training to all prison officers and members of the Carabineros, Policia de Investigaciones and Gendarmeria, and ensure their full accountability for any violations of human rights as well as effective access to remedies for victims.", - "values": [ - "Human rights education and training" - ] - }, - { - "text": "Abolish, definitively and as soon as possible, the death penalty", - "values": [ - "Death penalty" - ] - }, - { - "text": "Continue to fight poverty, with the support and cooperation of the international community ", - "values": [ - "Poverty", - "Technical assistance and cooperation" - ] - }, - { - "text": "Continue its efforts to ensure full implementation of the rights of women.", - "values": [ - "Women's rights" - ] - }, - { - "text": "Strengthen efforts to ensure equality in the application of the law, counter discrimination against persons belonging to all minorities, promote their active participation in public life, and provide public services and infrastructure fairly.", - "values": [ - "Minorities" - ] - }, - { - "text": "Take effective legal, institutional and awareness-building measures to combat domestic violence, racially-instigated crimes and trafficking of women for sexual exploitation.", - "values": [ - "Human rights education and training", - "Women's rights" - ] - }, - { - "text": "Take the necessary measures to inquire into all allegations of human rights violations and bring to trial those responsible", - "values": [ - "Justice" - ] - }, - { - "text": "Maintain the momentum in actively pursuing efforts to further protect the rights of women and children, especially through the enactment of legislation ", - "values": [ - "Rights of the Child", - "Women's rights" - ] - }, - { - "text": "Decriminalize homosexuality and combat discrimination based on sexual orientation or gender identity", - "values": [ - "Sexual Orientation and Gender Identity" - ] - }, - { - "text": "Ratify and accede to the International Convention on the Protection of the Rights of All Migrant Workers and Members of Their Families ", - "values": [ - "International instruments", - "Labour", - "Migrants" - ] - }, - { - "text": "Further develop cooperation with the relevant United Nations bodies and be ready to support the country's efforts in all aspects ", - "values": [ - "Technical assistance and cooperation" - ] - }, - { - "text": "Repeal all norms that can be presumed or interpreted as being discriminatory against persons based on their sexual orientation or gender identity", - "values": [ - "Sexual Orientation and Gender Identity" - ] - }, - { - "text": "Implement a zero-tolerance policy on gender-based violence", - "values": [ - "Women's rights" - ] - }, - { - "text": "Continue efforts to improve prison conditions, prison capacity and find alternative solutions to imprisonment", - "values": [ - "Detention" - ] - }, - { - "text": "Ratify the International Convention on the Protection of the Rights of All Migrant Workers and Their Families", - "values": [ - "International instruments", - "Labour", - "Migrants" - ] - }, - { - "text": "Examine the possibility of putting in place a national institution for the defence of human rights accredited by the International Coordinating Committee of National Institutions for the Promotion and\nProtection of Human Rights", - "values": [ - "National Human Rights Institution" - ] - }, - { - "text": "Eliminate all legislation that penalizes and criminalizes same sex relationships as well as all discriminatory legislation as a result of sexual orientation", - "values": [ - "Sexual Orientation and Gender Identity" - ] - }, - { - "text": "Adopt measures against ethnic profiling and prevent any collection of personal data on the basis of ethnic origin without the prior consent of those concerned", - "values": [ - "Minorities", - "Racial discrimination" - ] - }, - { - "text": "Develop a comprehensive strategy to address the socio-economic challenges faced by IDPs, emphasizing their integration in the local communities to promote work and the autonomy of the individual ", - "values": [ - "Internally displaced persons" - ] - }, - { - "text": "Make every effort to fulfil its voluntary pledges to include a definition of torture enshrined in CAT into the national Criminal Code ", - "values": [ - "International instruments", - "Torture and other CID treatment" - ] - }, - { - "text": "Take steps to bring labour laws and practices in line with its international obligations, including under relevant ILO Conventions", - "values": [ - "International instruments", - "Labour" - ] - }, - { - "text": "Ratify CEDAW and the Convention against Torture and Other Cruel, Inhuman or Degrading Treatment (CAT)", - "values": [ - "International instruments", - "Torture and other CID treatment", - "Women's rights" - ] - }, - { - "text": "Continue to strengthen measures to promote the human rights of migrant domestic workers, including by seeking to further improve working conditions of domestic workers in Singapore ", - "values": [ - "Labour", - "Migrants" - ] - }, - { - "text": "Strengthen mechanisms for ensuring awareness and implementation of international human rights obligations, including through establishment of human rights educational programmes for police, prison and judicial staff with special attention to protection of human rights of women, children, persons of minority sexual orientation and gender identity, etc.", - "values": [ - "Human rights education and training", - "Rights of the Child", - "Sexual Orientation and Gender Identity", - "Women's rights" - ] - }, - { - "text": "Continue taking effective policy and other measures to ensure adequate housing for its citizens, particularly in the lower income bracket ", - "values": [ - "Right to housing" - ] - }, - { - "text": "Complete as earliest possible the preparation of the National Human Rights Action Plan and implement the plan at earliest ", - "values": [ - "General" - ] - }, - { - "text": "End the practice of revocation of citizenship, adopt legal and institutional safeguards to prevent discrimination against members of religious minorities and provide effective remedy for victims of arbitrary arrest, detention, summons or travel bans", - "values": [ - "Freedom of religion and belief", - "Justice", - "Statelessness and the right to nationality" - ] - }, - { - "text": "Continue following-up on steps taken to eliminate discrimination against women, including through awareness raising and continuous strengthening of the relevant legal and institutional frameworks ", - "values": [ - "Human rights education and training", - "Women's rights" - ] - }, - { - "text": "Adopt a law prohibiting domestic violence and adopt the necessary measures to ensure its implementation, including inter alia through an information and awareness-raising campaign amongst the population ", - "values": [ - "Human rights education and training", - "Rights of the Child", - "Women's rights" - ] - }, - { - "text": "Strengthen the capacity of Kenya's National Commission on Human Rights to enable it to play a greater role in promoting human rights awareness in the country ", - "values": [ - "National Human Rights Institution" - ] - }, - { - "text": "Reduce violence among school children, combining targeted research with social and community activism", - "values": [ - "Rights of the Child" - ] - }, - { - "text": "Allocate enough resources for education in order to ensure the right to education", - "values": [ - "Right to education" - ] - }, - { - "text": "Take appropriate steps to ensure that the Human Rights and Anti Discrimination Commission functions in compliance with the Paris Principles", - "values": [ - "National Human Rights Institution" - ] - }, - { - "text": "Continue to implement the National Strategy for Women [2011-2021] for promoting women's development", - "values": [ - "Women's rights" - ] - }, - { - "text": "Continue to strengthen their national legislation into line with international human rights instruments to which it is a party", - "values": [ - "International instruments" - ] - }, - { - "text": "Review the provisions restricting the voting rights of persons with disabilities", - "values": [ - "Disabilities", - "Elections" - ] - }, - { - "text": "Address the questions of pre-school coverage, drop-out rates, as well as violence and discrimination in schools ", - "values": [ - "Right to education" - ] - }, - { - "text": "Take measures to effectively implement the prohibition of discrimination enshrined in the Anti-Discrimination Act ", - "values": [ - "Other" - ] - }, - { - "text": "Conform to the provisions of article 6 of the International Covenant on Civil and Political Rights, and move towards a moratorium on executions with a view to considering the definite abolition of the death penalty ", - "values": [ - "Death penalty", - "International instruments" - ] - }, - { - "text": "Adopt all necessary measures to ensure freedom of expression by ensuring equal treatment of the media and by avoiding any interference with freedom of the press ", - "values": [ - "Freedom of opinion and expression", - "Freedom of the press" - ] - }, - { - "text": "Include the issue of discrimination against lesbian, gay, bisexual, transgender and intersex persons in the human rights awareness courses", - "values": [ - "Human rights education and training", - "Sexual Orientation and Gender Identity" - ] - }, - { - "text": "Take additional steps to improve the quality of local education, including through improving teachers' performance and providing additional support for academically challenged students", - "values": [ - "Right to education" - ] - }, - { - "text": "Stop the revocation of residency permits for Palestinians in East Jerusalem", - "values": [ - "Freedom of movement" - ] - }, - { - "text": "Continue to strengthen the construction of the health care system and ensure timely access to health services for the rural population", - "values": [ - "Right to health" - ] - }, - { - "text": "Continue to seek technical assistance from the international community in the implementation of the accepted recommendations in the first and second cycles of the UPR", - "values": [ - "Technical assistance and cooperation", - "UPR process" - ] - }, - { - "text": "Take effective measures to fight the trafficking of foreign women and girls through its territory.", - "values": [ - "Rights of the Child", - "Trafficking", - "Women's rights" - ] - }, - { - "text": "Continue to apply the strategies and socio-economic development plans designed for poverty reduction ", - "values": [ - "Poverty" - ] - }, - { - "text": "Monitor the effectiveness of the protection available to persons with albinism and ensure accountability for all acts of violence against persons with albinism", - "values": [ - "Minorities" - ] - }, - { - "text": "Transform the de facto moratorium on the application of the death penalty into an abolition in law. ", - "values": [ - "Death penalty" - ] - }, - { - "text": "Pursue actions aimed at strengthening and harmonizing the child protection legal framework, including the establishment of child protection units within the various tribunals of the country", - "values": [ - "Rights of the Child" - ] - }, - { - "text": "Continue its international efforts to create an international order based on cooperation and inclusion", - "values": [ - "Other" - ] - }, - { - "text": "Sign and ratify the International Convention for the Protection of All Persons from Enforced Disappearance, and recognize fully the competence of the Committee on Enforced Disappearances ", - "values": [ - "Enforced disappearances", - "International instruments" - ] - }, - { - "text": "Develop a national strategy to guarantee better access to education to all children and to include in the school system at all levels appropriate measures in the field of human rights education, in accordance with the Plan of Action 2005-2009 of the World Programme for Human Rights Education", - "values": [ - "Human rights education and training", - "Right to education", - "Rights of the Child" - ] - }, - { - "text": "Undertake further governmental initiatives and projects aimed at comprehensively combating discrimination against women", - "values": [ - "Women's rights" - ] - }, - { - "text": "Embark on a clear road map for the swift implementation of the legislation and regulatory framework for the new Constitution so that it can make progress with regard to economic, social and cultural rights and to achieve the Millennium Development Goal related to poverty reduction", - "values": [ - "ESC rights - general" - ] - }, - { - "text": "Incorporate in its national legislation a definition of discrimination against women that is consistent with the Convention on the Elimination of All Forms of Discrimination Against Women ", - "values": [ - "International instruments", - "Women's rights" - ] - }, - { - "text": "Strengthen the role and resources of institutions in charge of human rights ", - "values": [ - "General" - ] - }, - { - "text": "Continue efforts in achieving the Millennium Development Goals ", - "values": [ - "Development" - ] - }, - { - "text": "Fully and immediately implement all Council resolutions.", - "values": [ - "Other" - ] - }, - { - "text": "Take capacity-building measures to strengthen the response of law enforcement authorities on human trafficking, including, inter alia, through the increase of budget and the appropriate training of personnel", - "values": [ - "Trafficking" - ] - }, - { - "text": "Amend all statutory and customary laws as soon as possible to establish the minimum age of marriage at 18 years, and create and implement a comprehensive national plan of action to combat the practice of child marriage and its root causes", - "values": [ - "Rights of the Child" - ] - }, - { - "text": "Support more actively the implementation of the rights of sexual minorities as a means to fight social isolation and discrimination", - "values": [ - "Sexual Orientation and Gender Identity" - ] - }, - { - "text": "Ensure that victims of domestic violence have access to adequate counselling and protection, including by the provision of shelters for women victims, and that acts are effectively investigated and perpetrators brought to justice ", - "values": [ - "Rights of the Child", - "Women's rights" - ] - }, - { - "text": "Broaden the area of freedom of the media, in particular by eliminating restrictions on foreign and national media and adopting more flexible rules relating to the accreditation of foreign journalists.", - "values": [ - "Freedom of the press" - ] - }, - { - "text": "Step up its efforts aimed at strengthening its effective implementation of the Convention against Torture and other Cruel, Inhuman or Degrading Treatment or Punishment", - "values": [ - "International instruments", - "Torture and other CID treatment" - ] - }, - { - "text": "Replace the de facto moratorium with a de jure moratorium, to commute all death sentences, and stay all executions", - "values": [ - "Death penalty" - ] - }, - { - "text": "Prohibit all corporal punishment of children, including in the home", - "values": [ - "Rights of the Child", - "Torture and other CID treatment" - ] - }, - { - "text": "Take all necessary measures to reduce murder rates among Afro-Brazilian men, particularly through robust educational programmes adapted to their needs, following recommendations 119.138, 119.154, 119.157, 119.158, 119.159 and 119.160 from the second cycle", - "values": [ - "Minorities", - "Public security", - "Right to education" - ] - }, - { - "text": "Ensure a free and compulsory primary education by implementing the Education Act", - "values": [ - "Right to education", - "Rights of the Child" - ] - }, - { - "text": "Continue strengthening measures aimed at achieving the eradication of female genital mutilation ", - "values": [ - "Rights of the Child", - "Torture and other CID treatment", - "Women's rights" - ] - }, - { - "text": "Take the necessary legislative measures in order to make progress in the regulation and implementation of the demarcation of indigenous lands", - "values": [ - "Indigenous peoples", - "Right to land" - ] - }, - { - "text": "Continue developing measures in order to ensure that affected Sami communities can participate actively in consultations on issues related to land rights, water and resources", - "values": [ - "Indigenous peoples", - "Right to land", - "Right to water and sanitation" - ] - }, - { - "text": "Continue in giving particular attention to the empowerment of women and children ", - "values": [ - "Rights of the Child", - "Women's rights" - ] - }, - { - "text": "Continue to place emphasis on promoting access to education and improving the quality of its education system", - "values": [ - "Right to education" - ] - }, - { - "text": "Take necessary measures to improve the functioning of justice as a whole, especially regarding access to justice and right to fair trial, and pursue the implementation of the five-year strategy for the gradual reform of minors' justice", - "values": [ - "Justice", - "Rights of the Child" - ] - }, - { - "text": "Adopt legislative measures in order to strengthen the protection of unaccompanied foreign minors", - "values": [ - "Migrants", - "Rights of the Child" - ] - }, - { - "text": "Adopt legislative and political measures, including allocation of financial resources to improve coverage of health services in rural areas", - "values": [ - "Right to health" - ] - }, - { - "text": "Continue efforts to implement the Growth and Transformation Plan for 2010-2015 in order to improve enjoyment of economic and social rights and to achieve social justice ", - "values": [ - "ESC rights - general" - ] - }, - { - "text": "Further strengthen the Slovak National Centre for Human Rights (SNCHR) so that it can discharge its mandate in a comprehensive and effective manner. ", - "values": [ - "National Human Rights Institution" - ] - }, - { - "text": "Continue strengthening the access mechanisms to social services for the Aboriginal and Torres Strait Islander children", - "values": [ - "ESC rights - general", - "Indigenous peoples" - ] - }, - { - "text": "Ending mass arbitrary expulsion of migrant workers and to ensure that their human rights are respected in all deportation processes ", - "values": [ - "Labour", - "Migrants" - ] - }, - { - "text": "Strengthen coordination between national and international institutions working in the area of human rights with a view to effectively conduct and launch human rights trainings provided to the government agencies' staff ", - "values": [ - "Human rights education and training", - "Technical assistance and cooperation" - ] - }, - { - "text": "Amend legislation to decriminalize defamation, slander and libel and convert them into matters regulated by civil law rights standards set by the United Nations and the Inter-American Commission on Human Rights observations and recommendations", - "values": [ - "Freedom of opinion and expression" - ] - }, - { - "text": "Appropriately fight and eradicate the worst forms of child labour.", - "values": [ - "Labour", - "Rights of the Child" - ] - }, - { - "text": "Continue to develop laws and policies to combat sexist violence", - "values": [ - "Women's rights" - ] - }, - { - "text": "Continue efforts to strengthen the position of women's role in society and to create employment opportunities for rural women in the context of rural development strategy ", - "values": [ - "Women's rights" - ] - }, - { - "text": "Continue the implementation of measures adopted in the field of development and continue to place particular importance on strengthening the health care system in the country", - "values": [ - "Development", - "Right to health" - ] - }, - { - "text": "Take additional concrete measures to combat xenophobia, hate speech and discrimination against foreigners, migrants and multicultural families", - "values": [ - "Migrants", - "Racial discrimination" - ] - }, - { - "text": "Raise the minimum age of criminal responsibility in accordance with acceptable international standards", - "values": [ - "Rights of the Child" - ] - }, - { - "text": "Put in place a systematic awareness-raising campaign so as to achieve an even better dissemination of a human rights culture in the society ", - "values": [ - "Human rights education and training" - ] - }, - { - "text": "Combat all forms of discrimination, including those relating to sexual orientation and identity", - "values": [ - "Sexual Orientation and Gender Identity" - ] - }, - { - "text": "Consider the possibility of becoming a party to the following international instruments: the Optional Protocol to the Convention on the Rights of the Child on the sale of children, child prostitution and child pornography, the International Convention on the Protection of the Rights of All Migrant Workers and Members of Their Families, the Convention on the Rights of Persons with Disabilities and the International Convention for the Protection of All Persons from Enforced Disappearance ", - "values": [ - "Disabilities", - "Enforced disappearances", - "International instruments", - "Labour", - "Migrants", - "Rights of the Child" - ] - }, - { - "text": "Continue to strengthen the capacity for action in the fight against human trafficking, and in combating discrimination and promoting integration", - "values": [ - "Trafficking" - ] - }, - { - "text": "Pursue cooperation with UNDP to lay foundations for human rights and learn from experience", - "values": [ - "Technical assistance and cooperation" - ] - }, - { - "text": "Consider a complete abolition of the death penalty.", - "values": [ - "Death penalty" - ] - }, - { - "text": "Eliminate any discriminatory provisions that are incompatible with international treaties dealing with the rights of women.", - "values": [ - "Women's rights" - ] - }, - { - "text": "Consider enacting specific domestic legislation on combating domestic violence and human trafficking ", - "values": [ - "Trafficking", - "Women's rights" - ] - }, - { - "text": "Establish a national action plan aimed at reinforcing the participation of women in the labor market", - "values": [ - "Women's rights" - ] - }, - { - "text": "Step up cooperation with the special procedures", - "values": [ - "Special procedures" - ] - }, - { - "text": "Take every possible measure to put an end to discrimination against people with disabilities.", - "values": [ - "Disabilities" - ] - }, - { - "text": "Criminalize the dissemination of theories on racial superiority or inferiority and prohibit organizations which promote and incite racial discrimination ", - "values": [ - "Racial discrimination" - ] - }, - { - "text": "Accelerate the process of the adoption of the Code of the Child", - "values": [ - "Rights of the Child" - ] - }, - { - "text": "Develop and strengthen appropriate legislative measures to address the issues of trafficking, sexual abuse and sexual exploitation of children and take measures to ensure prompt prosecution of perpetrators of sexual offences against children ", - "values": [ - "Rights of the Child", - "Trafficking" - ] - }, - { - "text": "Closely cooperate with the international community in implementing the recommendations by the LLRC and the National Action Plan for the Promotion and Protection of Human Rights in the context of promoting reconciliation and accountability", - "values": [ - "Justice" - ] - }, - { - "text": "Continue to provide effective training that builds the capacity of armed forces, police and other security forces on the protection of human rights especially, vulnerable groups", - "values": [ - "Human rights education and training" - ] - }, - { - "text": "Withdraw reservations in respect of article 18 of ICCPR ", - "values": [ - "Freedom of religion and belief", - "International instruments" - ] - }, - { - "text": "Ensure that any person involved in xenophobic and Islamophobic acts is investigated and prosecuted", - "values": [ - "Freedom of religion and belief", - "Racial discrimination" - ] - }, - { - "text": "Consider ratifying all outstanding international instruments to which it is not yet party and endeavour to domesticate them in its national legislation ", - "values": [ - "International instruments" - ] - }, - { - "text": "Continue to develop programmes aimed at providing support to vulnerable children and, specifically, eradicate the practice of corporal punishment ", - "values": [ - "Rights of the Child", - "Torture and other CID treatment" - ] - }, - { - "text": "Continue to engage with civil society organizations and relevant stakeholders in the implementation of the National Action Plan on Human Rights, which covers the period of 2015-2019, as well as in the formulation and shaping of its fifth generation", - "values": [ - "General" - ] - }, - { - "text": "Continue its efforts to eliminate discrimination against women and promote gender equality ", - "values": [ - "Women's rights" - ] - }, - { - "text": "Introduce, in the interim, "hot seating" in schools as a stop gap measure to reduce overcrowding in classes ", - "values": [ - "Right to education" - ] - }, - { - "text": "Consider ratifying the Optional Protocol to the Convention against Torture and Other Cruel, Inhuman or Degrading Treatment or Punishment (OP-CAT) ", - "values": [ - "Detention", - "International instruments", - "Torture and other CID treatment" - ] - }, - { - "text": "Fully implement its gender equality programmes, including the Strategy for Equality between Women and Men, in order to address the gender equality gaps in various sectors", - "values": [ - "Women's rights" - ] - }, - { - "text": "Consolidate all people centred programmes to fight forces of negation", - "values": [ - "Other" - ] - }, - { - "text": "Ratify the Optional Protocol to the Convention on the Rights of Child on the sale of children, child prostitution and child pornography (OP-SCR) as soon as possible", - "values": [ - "International instruments", - "Rights of the Child", - "Trafficking" - ] - }, - { - "text": "Implement measures to ensure that the rights to acquire, transfer and retain citizenship are extended equally to all women and their children", - "values": [ - "Statelessness and the right to nationality", - "Women's rights" - ] - }, - { - "text": "Sign and accede to the International Convention on the Protection of the Rights of All Migrant Workers and Members of Their Families", - "values": [ - "International instruments", - "Labour", - "Migrants" - ] - }, - { - "text": "Continue its efforts on the promotion of the right to education with a view of increasing the level of enrolment of girls and boys at primary schools", - "values": [ - "Right to education", - "Rights of the Child" - ] - }, - { - "text": "Ensure comprehensive human rights training for law enforcement personnel with a view to prevent any excessive use of force ", - "values": [ - "Human rights education and training", - "Human rights violations by state agents" - ] - }, - { - "text": "Recognize marital rape as a criminal offence", - "values": [ - "Justice", - "Women's rights" - ] - }, - { - "text": "Quickly complete the alignment of the national legislation with the provisions of the Rome Statute", - "values": [ - "International instruments", - "Justice" - ] - }, - { - "text": "Introduce a law explicitly prohibiting corporal punishment of children in all settings", - "values": [ - "Rights of the Child", - "Torture and other CID treatment" - ] - }, - { - "text": "The ratification process of the Convention for the Protection of all Persons from Enforced Disappearance is due to begin this year", - "values": [ - "Enforced disappearances", - "International instruments" - ] - }, - { - "text": "Respect indigenous peoples and ethnic minorities' rights and interests, fully consult with them on their land, autonomy, environment, language and other issues, correct the historical injustice and offer compensation", - "values": [ - "Environment", - "Indigenous peoples", - "Minorities", - "Right to land" - ] - }, - { - "text": "Continue to consider acceding to ICESCR ", - "values": [ - "ESC rights - general", - "International instruments" - ] - }, - { - "text": "Continue to step up efforts in the area of combating trafficking in human beings, especially women and children", - "values": [ - "Rights of the Child", - "Trafficking", - "Women's rights" - ] - }, - { - "text": "Withdraw remaining reservations to the CEDAW and give priority to the implementation of the Domestic Violence Act", - "values": [ - "International instruments", - "Women's rights" - ] - }, - { - "text": "Call for the support of the international community to assist it in addressing the challenge of armed conflict with its rebel armed groups, which has brought about human right abuses, including sexual violence, recruitment of child soldiers, problems of refugees and internally displaced persons, poverty illiteracy and ignorance among others.", - "values": [ - "Technical assistance and cooperation" - ] - }, - { - "text": "Further strengthen human rights education and training for police officers ", - "values": [ - "Human rights education and training" - ] - }, - { - "text": "Arrange for the visit of the Special Rapporteur on the promotion and protection of the right to freedom of opinion and expression as soon as possible ", - "values": [ - "Freedom of opinion and expression", - "Special procedures" - ] - }, - { - "text": "Continue the national reconciliation endeavours in order to restore security and stability all over the country ", - "values": [ - "Justice", - "Public security" - ] - }, - { - "text": "Continue efforts to develop laws and legislation to bring them in line with international texts and strengthen efforts in education", - "values": [ - "Right to education" - ] - }, - { - "text": "Continue advancing in its efforts to achieve universal coverage of its Maternity, Disease and Health Care Programme ", - "values": [ - "Right to health", - "Women's rights" - ] - }, - { - "text": "Prosecute all cases of child marriage and female genital mutilation and punish the perpetrators according to the law", - "values": [ - "Rights of the Child", - "Torture and other CID treatment", - "Women's rights" - ] - }, - { - "text": "Implement the Maseru Facilitation Declaration and the Maseru Security Accord, and thereby to reestablish the ground for democratic and civil governance in the country, after elections in February 2015", - "values": [ - "Elections", - "Justice" - ] - }, - { - "text": "Investigate allegations of ill-treatment and excessive use of force by the police and prosecute perpetrators ", - "values": [ - "Human rights violations by state agents" - ] - }, - { - "text": "Consider ratifiying the Rome Statute of the International Criminal Court", - "values": [ - "International instruments", - "Justice" - ] - }, - { - "text": "Ratify the fundamental human rights conventions such as ICERD or the optional protocols to the International Covenant on Civil and Political Rights ", - "values": [ - "CP rights - general", - "International instruments", - "Racial discrimination" - ] - }, - { - "text": "Implement the 2011 EU Observation Mission recommendations concerning the equal political participation such as to provide assistance to IDPs or to prosecute people involved in election violence", - "values": [ - "Elections", - "Internally displaced persons" - ] - }, - { - "text": "Strengthen the Austrian Ombudsman Board and expand its mandate at the earliest to ensure full compliance with the Paris Principles ", - "values": [ - "National Human Rights Institution" - ] - }, - { - "text": "Strengthen provisions to protect children, particularly given the threat of trafficking and sexual exploitation of minors, and reform legislation so that children who are prostituted are not considered criminals or delinquents ", - "values": [ - "Rights of the Child", - "Trafficking" - ] - }, - { - "text": "Continue to increase budget allocations to the educational sector, focus on overall improvement in the quality of education provided, in particular in rural areas, and ensure expansion of the bilingual intercultural programme for indigenous peoples.", - "values": [ - "Indigenous peoples", - "Right to education" - ] - }, - { - "text": "Conduct impartial, immediate and effective investigations into all presumed cases of extrajudicial or summary execution, including appropriate documentation of each alleged offence, preservation of evidence and compliance with procedural safeguards", - "values": [ - "Extrajudicial executions" - ] - }, - { - "text": "Continue with all its endeavours to ensure further success in the implementation of the recently established programmes/instruments, including the national plan against human trafficking, for the benefit of all people in the country irrespective of their ethnic origin, or any other social background/status ", - "values": [ - "Trafficking" - ] - }, - { - "text": "Recommended further reducing the applicability of the death penalty, in particular for non-violent crimes, and to provide statistics on the number of death sentences as well as on the SPC review procedure (how many cases are returned for retrial; in how many cases are defendants heard by the SPC)", - "values": [ - "Death penalty" - ] - }, - { - "text": "Speed up the process of establishing a national human rights institution in conformity with the Paris Principles ", - "values": [ - "National Human Rights Institution" - ] - }, - { - "text": "Increase judicial transparency in the use of the death penalty", - "values": [ - "Death penalty" - ] - }, - { - "text": "Promote alternative penalties to prison and draw up public policies to foster the rights of persons in prisons ", - "values": [ - "Detention" - ] - }, - { - "text": "Ensuring best protection of human rights and follow-up to the implementation of international instruments", - "values": [ - "International instruments" - ] - }, - { - "text": "Ensure prompt, impartial and effective investigations into all allegations of ill-treatment committed by law enforcement officials ", - "values": [ - "Human rights violations by state agents", - "Torture and other CID treatment" - ] - }, - { - "text": "Remove any obstruction of the right to justice for victims of sexual violence and provide them with effective treatments", - "values": [ - "Rights of the Child", - "Women's rights" - ] - }, - { - "text": "Guarantee freedoms of assembly and association and repeal article 193-1 of the Criminal Code, which criminalizes civil activity of non- registered organizations, and the Law on Mass Events", - "values": [ - "Civil society", - "Freedom of association and peaceful assembly" - ] - }, - { - "text": "Take the necessary measures against all forms of discrimination and to maintain its efforts to raise awareness on this issue", - "values": [ - "Human rights education and training" - ] - }, - { - "text": "Most complexly address the root causes of trafficking and effectively protect and support victims", - "values": [ - "Trafficking" - ] - }, - { - "text": "Intensify the coordination mechanisms to the highest level for the execution and follow-up of human rights-related public policies", - "values": [ - "General" - ] - }, - { - "text": "Continue to promote equality between men and women in public policies", - "values": [ - "Women's rights" - ] - }, - { - "text": "Repeal all provisions that criminalize consensual same-sex relationships or that discriminate against LGBTI persons", - "values": [ - "Sexual Orientation and Gender Identity" - ] - }, - { - "text": "Ensure that freedom of expression is without unnecessary restrictions to ensure freedom of religion", - "values": [ - "Freedom of opinion and expression" - ] - }, - { - "text": "Create a law or guidelines to end the use of excessive force against individuals suspected of involvement in terrorist activities, improve pretrial detention conditions, install video cameras in places of detention and ensure access to legal services without delay", - "values": [ - "Counter-terrorism", - "Detention" - ] - }, - { - "text": "Adopt an adequate legal framework to combat all forms of violence against women and put in place an effective complaint system in order to bring the perpetrators of these acts before justice ", - "values": [ - "Justice", - "Women's rights" - ] - }, - { - "text": "Continue the efforts made to expand education, in particular children's education, and accord greater importance to the spreading of the culture of human rights through the media and educational institutions ", - "values": [ - "Human rights education and training", - "Right to education", - "Rights of the Child" - ] - }, - { - "text": "Develop and implement comprehensive and efficient policies to fight poverty and in particular chronic and acute malnutrition", - "values": [ - "Poverty", - "Right to food" - ] - }, - { - "text": "Strengthen investigative and prosecutorial bodies to ensure thorough investigations into all killings, as well as the appropriate prosecution of perpetrators", - "values": [ - "Justice" - ] - }, - { - "text": "Ensure equal public participation through the introduction of a universal legal age of majority for all Tongan", - "values": [ - "Justice" - ] - }, - { - "text": "Ensure that laws and regulations related to freedom of expression fully comply with Mongolia's obligations under the International Covenant on Civil and Political Rights and consider decriminalizing defamation", - "values": [ - "Freedom of opinion and expression", - "International instruments" - ] - }, - { - "text": "Proceed in providing effective protection for the family as the natural and fundamental unit of society", - "values": [ - "Other" - ] - }, - { - "text": "Establish the abolition of the death penalty through the ratification of the Second Optional Protocol to the International Covenant on Civil and Political Rights ", - "values": [ - "Death penalty", - "International instruments" - ] - }, - { - "text": "Establish a form of effective judicial control over administrative decisions of the Office for Youth called Jugendamt", - "values": [ - "Justice", - "Rights of the Child" - ] - }, - { - "text": "Remove from legislation the mandatory nature of the capital punishment for a number of crimes", - "values": [ - "Death penalty" - ] - }, - { - "text": "Ensure the effective implementation of the Domestic Violence Act and the Sexual Offences Act, specially by promoting access to justice", - "values": [ - "Rights of the Child", - "Women's rights" - ] - }, - { - "text": "Remove excessive restrictions to the exercise of the freedom of assembly in order to facilitate peaceful demonstrations", - "values": [ - "Freedom of association and peaceful assembly" - ] - }, - { - "text": "Act on its commitment to enhance the promotion and protection of Human Rights by establishing a National Human Rights Body in conformity with the Paris Principles, as well as by ratifying and implementing outstanding core international human rights treaties ", - "values": [ - "National Human Rights Institution" - ] - }, - { - "text": "Address deficiencies of the legal and policy system regarding the issue of pregnant children for better protecting young girls, as some of them had been forced to continue high-risk pregnancies with long-lasting impact on their physical and mental health", - "values": [ - "Right to health", - "Rights of the Child", - "Women's rights" - ] - }, - { - "text": "Ensure the implementation of the legislation aimed at ensuring gender equality between men and women", - "values": [ - "Women's rights" - ] - }, - { - "text": "Take further action on justice sector reform to improve the efficiency of the judicial system", - "values": [ - "Justice" - ] - }, - { - "text": "Move forward with the ratification of the International Covenants on Civil and Political Rights and on Economic, Social and Cultural Rights, including the Second Optional Protocol to the International Covenant on Civil and Political Rights, aiming at the abolition of the death penalty", - "values": [ - "CP rights - general", - "Death penalty", - "ESC rights - general", - "International instruments" - ] - }, - { - "text": "Observe all human rights principles, international conventions and raise awareness among students in higher education institutions regarding human rights values ", - "values": [ - "Human rights education and training", - "International instruments" - ] - }, - { - "text": "Combat effectively violence against children resulting from the sexual abuse of minors", - "values": [ - "Rights of the Child" - ] - }, - { - "text": "Intensify efforts to implement measures to encourage peaceful coexistence among all populations and combat marginalization", - "values": [ - "Other" - ] - }, - { - "text": "Ensure political participation of women in governmental decision- making bodies in order to generate inclusive and balanced decision-making in matters that concern both women and men", - "values": [ - "Women's rights" - ] - }, - { - "text": "Accelerate the drafting of the national human rights action plan for the next five years and start implementing it", - "values": [ - "General" - ] - }, - { - "text": "Continue efforts in strengthening its institutional capacity to promote and protect human rights, in particular to accelerate the establishment of the office of the undersecretary for human rights, and to formulate a comprehensive national human rights plan of action ", - "values": [ - "General" - ] - }, - { - "text": "Ensure that all detainees and prisoners, including those who are mentally ill, are given access to appropriate care, including where necessary by being transferred to specialized health institutions ", - "values": [ - "Detention" - ] - }, - { - "text": "Strengthen the health service infrastructure and the restructuring of the public health system", - "values": [ - "Right to health" - ] - }, - { - "text": "Systematically implement the Convention against Torture, ratify the the Optional Protocol to the Convention against Torture, and set up an effective National Preventive Mechanism as soon as possible", - "values": [ - "Detention", - "International instruments", - "Torture and other CID treatment" - ] - }, - { - "text": "Expedite the process of elaboration and adoption of a law that defines and prohibits discrimination against women", - "values": [ - "Women's rights" - ] - }, - { - "text": "Take measures to ensure the universal registration of births, including through the simplification of necessary requirements and the removal of costs", - "values": [ - "Rights of the Child", - "Statelessness and the right to nationality" - ] - }, - { - "text": "That the first National Action Plan for Fundamental and Human Rights integrate the concerns of all minorities ", - "values": [ - "Minorities" - ] - }, - { - "text": "Establish a de jure moratorium on capital punishment, with a view to abolishing the death penalty ", - "values": [ - "Death penalty" - ] - }, - { - "text": "Restore the legitimacy and credibility of trials in the country", - "values": [ - "Justice" - ] - }, - { - "text": "Continue efforts to expand the right to education, especially in connection with the education of children", - "values": [ - "Right to education", - "Rights of the Child" - ] - }, - { - "text": "Make efforts to obtain accreditation for a national human rights institution that complies with the Paris Principles from the International Coordinating Committee ", - "values": [ - "National Human Rights Institution" - ] - }, - { - "text": "Step up its efforts to establish its national human rights institution in accordance with the Paris Principles ", - "values": [ - "National Human Rights Institution" - ] - }, - { - "text": "Improve the internal mechanism of the State to implement international human rights obligations", - "values": [ - "International instruments" - ] - }, - { - "text": "Consider establishing an independent national human rights institution that complies with the Paris Principles.", - "values": [ - "National Human Rights Institution" - ] - }, - { - "text": "Build with international support the national capacities to fulfil the reporting obligations to treaty bodies", - "values": [ - "Treaty bodies" - ] - }, - { - "text": "Continue and intensify efforts to ensure gender equality and equity", - "values": [ - "Women's rights" - ] - }, - { - "text": "Consider ratifying or acceding to: OP-CAT ", - "values": [ - "Detention", - "International instruments", - "Torture and other CID treatment" - ] - }, - { - "text": "Abolish the death penalty in the law and ratify the Second Optional Protocol to the ICCPR", - "values": [ - "Death penalty", - "International instruments" - ] - }, - { - "text": "Refraining from the practice of surveillance and intrusion into the private lives of representatives of religious minorities", - "values": [ - "Freedom of religion and belief", - "Minorities", - "Privacy" - ] - }, - { - "text": "Share its experiences and lessons learned with other developing countries.", - "values": [ - "Other" - ] - }, - { - "text": "Take all appropriate measures that serve the interests of the welfare and development of child migrants, who should have been guaranteed all rights provided for in national legislation and international law ", - "values": [ - "Migrants", - "Rights of the Child" - ] - }, - { - "text": "Investigate, punish and redress crimes of enforced disappearance, regardless of the time of their occurrence, in the light of the continuous nature of the crime and in accordance with its international obligations ", - "values": [ - "Enforced disappearances" - ] - }, - { - "text": "Ratify and fully implement, step by step, all universal core human rights treaties ", - "values": [ - "International instruments" - ] - }, - { - "text": "Address specifically the root causes of gender violence by promoting awareness programmes in the education sector and by the economic empowerment of women ", - "values": [ - "Human rights education and training", - "Women's rights" - ] - }, - { - "text": "Seriously consider establishing an independent national human rights institution with a wide mandate to protect and promote human rights, especially in cooperation with civil society", - "values": [ - "Civil society", - "National Human Rights Institution" - ] - }, - { - "text": "Establish a moratorium on the application of the death penalty with a view to its abolition", - "values": [ - "Death penalty" - ] - }, - { - "text": "Enact legislation to ensure accountability on human rights violations and environmental damages resulting from global operations of United Kingdom companies", - "values": [ - "Business and human rights", - "Environment" - ] - }, - { - "text": "Review, reform and adequate its federal and state laws, in consultation with civil society, to comply with the protection of the right to nondiscrimination established by the Convention on the Elimination of all Forms of Racial Discrimination, especially in the areas of employment, housing, health, education and justice ", - "values": [ - "Civil society", - "International instruments", - "Justice", - "Right to education", - "Right to health", - "Right to housing" - ] - }, - { - "text": "Accede to the Rome Statute of the International Criminal Court and accede to the Agreement on Privileges and Immunities of the International Criminal Court ", - "values": [ - "International instruments", - "Justice" - ] - }, - { - "text": "Take effective measures to increase budgetary allocation to the health sector", - "values": [ - "Right to health" - ] - }, - { - "text": "Set up immediately the hybrid court provided for in the 2015 peace agreement", - "values": [ - "Justice" - ] - }, - { - "text": "Take steps to prevent violence against children, in particular in school, family and penitentiary environments, and engage effectively in the prosecution of all those involved in such violence ", - "values": [ - "Detention", - "Rights of the Child" - ] - }, - { - "text": "Draft a strategic plan for technical assistance and submit it to OHCHR in order to obtain the necessary assistance ", - "values": [ - "Technical assistance and cooperation" - ] - }, - { - "text": "Issue a standing invitation to all special procedures", - "values": [ - "Special procedures" - ] - }, - { - "text": "Guyana is voluntarily committing to hold consultations on this issue [Repeal the laws that criminalize consensual sexual activities between people of the same sex, and protect lesbian, gay, bisexual and transsexual persons from discrimination and violence] over the next 2 years and based on the outcome of this democratic process, these will be reflected in Guyana's laws.", - "values": [ - "Sexual Orientation and Gender Identity" - ] - }, - { - "text": "Take further measures to ensure the promotion and protection of the rights of indigenous people ", - "values": [ - "Indigenous peoples" - ] - }, - { - "text": "Take measures to improve enforcement of existing laws prohibiting discrimination, including against the Roma", - "values": [ - "Minorities", - "Racial discrimination" - ] - }, - { - "text": "Take the necessary measures to implement the recommendations of CEDAW and the Human Rights Committee concerning violence against women and FGM.", - "values": [ - "Rights of the Child", - "Torture and other CID treatment", - "Treaty bodies", - "Women's rights" - ] - }, - { - "text": "Continue with its efforts to develop a national policy for the benefit of persons with disabilities, including the ratification of the Convention on the Rights of Persons with Disabilities", - "values": [ - "Disabilities", - "International instruments" - ] - }, - { - "text": "Speed up its efforts to reduce poverty and unemployment and decrease the economic and social disparities between the regions ", - "values": [ - "Poverty" - ] - }, - { - "text": "Strengthen its efforts to prevent trafficking of minors by allocating sufficient resources to the immigration authorities to investigate every case of missing minors ", - "values": [ - "Migrants", - "Rights of the Child", - "Trafficking" - ] - }, - { - "text": "Intensify its work to combat manifestations of neo-Nazism, extremism, racism, xenophobia and anti-Semitism in view of an increase of such acts in the past years", - "values": [ - "Racial discrimination" - ] - }, - { - "text": "Continue to take concrete steps to eliminate child, early and forced marriage, such as Malawi's recent passing of the law raising the age of marriage to 18 years", - "values": [ - "Rights of the Child", - "Women's rights" - ] - }, - { - "text": "Develop a policy for child protection ensuring a better system of guarantees of the rights of the child", - "values": [ - "Rights of the Child" - ] - }, - { - "text": "Consider the possibility of ratifying the International Convention on the Protection of the rights of all Migrants Workers and members of their families ", - "values": [ - "International instruments", - "Labour", - "Migrants" - ] - }, - { - "text": "Extend a standing invitation to all Special Procedure mandate holders", - "values": [ - "Special procedures" - ] - }, - { - "text": "Review existing laws including the Law on Press and Publication to ensure freedom of expression in accordance with international standards", - "values": [ - "Freedom of opinion and expression", - "Freedom of the press" - ] - }, - { - "text": "Carry out public campaigns explaining the arguments for the abolition of the death penalty with the aim of ratifying the Second Optional Protocol to the International Covenant on Civil and Political Rights, aiming at the abolition of the death penalty", - "values": [ - "Death penalty", - "International instruments" - ] - }, - { - "text": "Continue the constructive steps taken in the promotion and protection of human rights", - "values": [ - "General" - ] - }, - { - "text": "Call on Djibouti to seek assistance from the international community and OHCHR to provide more support to Djibouti with regard to training and capacity-building in human rights ", - "values": [ - "Technical assistance and cooperation" - ] - }, - { - "text": "The National Human Rights Commission of Mongolia, which has an - A - status accreditation, should play a decisive role in the exercise of drafting a gender equality law as well as during its implementation ", - "values": [ - "National Human Rights Institution", - "Women's rights" - ] - }, - { - "text": "Take further comprehensive measures to address the issue of corruption, in particular in the police force.", - "values": [ - "Corruption" - ] - }, - { - "text": "Ratify and implement the International Convention on the Protection of the Rights of All Migrant Workers and Members of Their Families", - "values": [ - "International instruments", - "Labour", - "Migrants" - ] - }, - { - "text": "Strengthen the gender equality machinery with respect to human and financial resources ", - "values": [ - "Women's rights" - ] - }, - { - "text": "Monitor the implementation of the legislation concerning freedom of religion with a view to ensuring full enjoyment of the freedom to practice one's religion by all religious communities and groups in the country.", - "values": [ - "Freedom of religion and belief" - ] - }, - { - "text": "Improve the situation of indigenous minorities, particularly regarding the right to property, access to housing, right to participation and intercultural education", - "values": [ - "Indigenous peoples", - "Right to education", - "Right to housing", - "Right to land" - ] - }, - { - "text": "Identify specific challenges confronting the country, prioritize them in line with the needs and aspirations of its citizens and then seek support from the international community to face these challenges in a systematic and verifiable manner.", - "values": [ - "Technical assistance and cooperation" - ] - }, - { - "text": "Continue efforts in order to provide health and education services to a larger part of the population and continue initiatives related to social housing", - "values": [ - "Right to education", - "Right to health", - "Right to housing" - ] - }, - { - "text": "Expedite its efforts to establish the National Human Rights Institution, in line with the Paris Principles and with full participation of the civil society", - "values": [ - "Civil society", - "National Human Rights Institution" - ] - }, - { - "text": "Ratify the Convention against Torture and Other Cruel, Inhuman or Degrading Treatment or Punishment ", - "values": [ - "Torture and other CID treatment" - ] - }, - { - "text": "Take all legal measures to adopt and implement a national racial justice plan consistent with the Durban Declaration and Programme of Action", - "values": [ - "Racial discrimination" - ] - }, - { - "text": "Exert further efforts to adopt the draft law submitted to parliament on full equality between women and men in the area of social insurance and tax law, the draft law on the lifting of restrictions on the assets of wives whose spouses are declared bankrupt, and the draft law on the protection of women from domestic violence", - "values": [ - "Women's rights" - ] - }, - { - "text": "Continue in its endeavour in fighting against harmful traditional practices ", - "values": [ - "Torture and other CID treatment" - ] - }, - { - "text": "Strengthen its laws to prohibit racial profiling and strengthen its efforts to promote humane, dignified and non-selective treatment for migrants and other persons who are not of Irish origin", - "values": [ - "Migrants", - "Racial discrimination" - ] - }, - { - "text": "Review the law on state language, which discriminates against linguistic minorities in access to the labour market and ensure that appeals from those who do not master the Latvian language sufficiently are considered by state bodies, through providing them an opportunity to use their mother tongue before state bodies", - "values": [ - "Minorities" - ] - }, - { - "text": "Develop a comprehensive policy aimed at strengthening the judicial system, focusing on the effective access to justice for women", - "values": [ - "Justice", - "Women's rights" - ] - }, - { - "text": "Prohibit the practice of torture, and prosecute its perpetrators", - "values": [ - "Torture and other CID treatment" - ] - }, - { - "text": "Consider the possibility of signing and-or ratifying the Optional Protocol to the Convention on the Rights of Persons with Disabilities", - "values": [ - "Disabilities", - "International instruments" - ] - }, - { - "text": "Adopt a comprehensive policy to ensure universal access to reproductive health and rights according to the programme of action of the Beijing Conference and in line with the 2030 Agenda for Sustainable Development", - "values": [ - "Right to health", - "Women's rights" - ] - }, - { - "text": "Take steps to ensure that all deportations are conducted in coordination with the Government of the Democratic Republic of the Congo and that all returns respect the human rights and the dignity of migrants", - "values": [ - "Migrants" - ] - }, - { - "text": "Expand support to human rights education and training initiatives, particularly for law enforcement officials handling migration issues", - "values": [ - "Human rights education and training", - "Migrants" - ] - }, - { - "text": "Further facilitate access to justice by persons belonging to minority groups ", - "values": [ - "Minorities" - ] - }, - { - "text": "Continue to take measures to eradicate all forms of violence against women including female genital mutilation, ensure the effective implementation of legal instruments in this connection, and allocate more resources to the Ministry for Women Affairs, the police and the judiciary and broaden awareness-raising campaigns in this respect ", - "values": [ - "Human rights education and training", - "Torture and other CID treatment", - "Women's rights" - ] - }, - { - "text": "Establish an open and transparent licensing process for newspapers that is subject to independent review ", - "values": [ - "Freedom of the press" - ] - }, - { - "text": "Work closely with OHCHR to build the capacity of its national institutions and seeks States' assistance on counter-terrorism strategies, especially by countering terrorist fund-raising efforts in their territories and in accordance with Security Council resolutions and international conventions.", - "values": [ - "Counter-terrorism", - "Technical assistance and cooperation" - ] - }, - { - "text": "Develop prevention and penalization strategies to address incidents of racism against the Roma population that are detected, including the establishment of a National Observatory against Racism", - "values": [ - "Minorities", - "Racial discrimination" - ] - }, - { - "text": "Reform the National Security Act (2010) so it adheres to international standards, including by removing provisions that provide National Intelligence and Security Service officers with immunity from prosecution", - "values": [ - "Human rights violations by state agents" - ] - }, - { - "text": "Take forward the democratic process of repealing the Eighth Amendment of the Irish Constitution with a clear timeline, and take all necessary steps to decriminalise abortion in all circumstances, in accordance with the recommendations of the Human Rights Committee, the Committee on Economic, Social and Cultural Rights and the Committee on the Rights of the Child", - "values": [ - "Treaty bodies", - "Women's rights" - ] - }, - { - "text": "In cooperation with the media, implement the agreed action plan within the dialogue between the Government and the media community on improvement of media freedoms", - "values": [ - "Freedom of the press" - ] - }, - { - "text": "Consider signing and ratifying ICESCR as well as ICCPR ", - "values": [ - "CP rights - general", - "ESC rights - general", - "International instruments" - ] - }, - { - "text": "Continue to improve its legislation to bring it in line with international human rights standards ", - "values": [ - "General", - "International instruments" - ] - }, - { - "text": "Take appropriate steps to facilitate the adoption of legislation on gender equality", - "values": [ - "Women's rights" - ] - }, - { - "text": "Study the possibility of having campaigns for registering girls, boys and adolescents in the North and North-east of Brazil, with the cooperation of the universal system of human rights ", - "values": [ - "Rights of the Child" - ] - }, - { - "text": "Strengthen the fundamental principles of equality and non-discrimination within the education system", - "values": [ - "Right to education" - ] - }, - { - "text": "Consider legislation and-or additional policy measures to promote tolerance and non-discrimination of lesbian, gay, bisexual and transgender persons.", - "values": [ - "Sexual Orientation and Gender Identity" - ] - }, - { - "text": "Continue its efforts for the promotion and protection of human rights and also for the legitimate interests of organisations and individuals working faithfully to uphold the human rights of the Chinese people", - "values": [ - "Civil society", - "Human rights defenders" - ] - }, - { - "text": "Continue its efforts in addressing cases or reports of past incidents of extrajudicial killings, enforced disappearance and torture in the country, including through the EPJUST Programme, the Joint Coordinating Centres on Private Armies, and the National Monitoring Mechanism", - "values": [ - "Enforced disappearances", - "Extrajudicial executions", - "Torture and other CID treatment" - ] - }, - { - "text": "Develop an action plan to ensure that journalists are able to conduct their work freely and without fear of retribution ", - "values": [ - "Freedom of the press" - ] - }, - { - "text": "Ensure that civil society activists and journalists are able to carry out their work free from harassment or violence", - "values": [ - "Civil society", - "Freedom of the press", - "Human rights defenders" - ] - }, - { - "text": "Consider re-acceding to the American Convention on Human Rights ", - "values": [ - "Other" - ] - }, - { - "text": "Enhance national policies for the freedom of religion and other practices of minorities", - "values": [ - "Freedom of religion and belief", - "Minorities" - ] - }, - { - "text": "Carry out work on the promotion of racial, national and religious tolerance, especially among youth ", - "values": [ - "Freedom of religion and belief", - "Racial discrimination" - ] - }, - { - "text": "Consider further legislative and administrative measures to encourage the increase of women's participation in public life", - "values": [ - "Women's rights" - ] - }, - { - "text": "Continue its efforts in reviewing its labour law with a view to including migrant workers in its scope", - "values": [ - "Labour", - "Migrants" - ] - }, - { - "text": "Further increase concrete measures in the framework of the 2011- 2015 Strategy and Action Plan for the promotion and protection of gender equality and women's rights ", - "values": [ - "Women's rights" - ] - }, - { - "text": "Intensify efforts in the fight against all forms of discrimination, in particular against lesbian, gay, bisexual, transgender and intersex persons and minorities, by fully implementing the Law on Protection against Discrimination ", - "values": [ - "Sexual Orientation and Gender Identity" - ] - }, - { - "text": "Intensify efforts to eradicate all forms of discrimination", - "values": [ - "Other" - ] - }, - { - "text": "Accede to the 1954 Convention on the Status of Stateless Persons ", - "values": [ - "International instruments", - "Statelessness and the right to nationality" - ] - }, - { - "text": "Adopt specific legislation to provide women with sufficient protection against all discriminatory practices", - "values": [ - "Women's rights" - ] - }, - { - "text": "Consider signature and ratification of ILO Conventions No. 138 and 182", - "values": [ - "International instruments", - "Labour", - "Rights of the Child" - ] - }, - { - "text": "That the Malagasy political movements agree on a transitional Government in keeping with the Maputo and Addis Ababa agreements and that the transitional Government returns the country to democracy through organizing inclusive, free, fair and transparent elections as soon as possible", - "values": [ - "Elections" - ] - }, - { - "text": "Review its decree on Internet-based information control and management to ensure citizens' rights to information and expression are respected", - "values": [ - "Freedom of opinion and expression" - ] - }, - { - "text": "Ensure that men and women are treated equally, including equal pay for equal work", - "values": [ - "Women's rights" - ] - }, - { - "text": "Continue playing a positive international role in the field of human rights by maintaining its financial contributions and continue its bilateral human rights dialogue", - "values": [ - "Technical assistance and cooperation" - ] - }, - { - "text": "Continue its commitment to fulfil the right to education and to the right to health for all its citizens and share its experiences and best practices in the promotion and protection of these two fundamental rights", - "values": [ - "Right to education", - "Right to health" - ] - }, - { - "text": "Discourage discrimination against minorities in Denmark, especially Muslims and take effective measures to promote tolerance and counter attitudes which lead to stereotyping and hate crimes against ethnic and religious minorities", - "values": [ - "Freedom of religion and belief", - "Minorities", - "Racial discrimination" - ] - }, - { - "text": "Support the active participation of non-governmental organizations and other civil society representatives in the work of the Council", - "values": [ - "Civil society" - ] - }, - { - "text": "Promote the human rights education programmes for police, security and penal personnel.", - "values": [ - "Human rights education and training" - ] - }, - { - "text": "Raise the age of the criminal responsibility in accordance with general comment No. 10 of the Committee on the Rights of Child", - "values": [ - "Disabilities", - "Rights of the Child", - "Torture and other CID treatment" - ] - }, - { - "text": "Ensure effective accountability for perpetrators of violence against women", - "values": [ - "Women's rights" - ] - }, - { - "text": "Complete the updating of legislation by decriminalizing homosexual relations between consenting adults", - "values": [ - "Sexual Orientation and Gender Identity" - ] - }, - { - "text": "Ensure that constitutional protections for freedom of expression, including press freedom, are upheld, and refrain from using administrative, judicial and financial means to unduly restrict the exercise of this right ", - "values": [ - "Freedom of opinion and expression", - "Freedom of the press" - ] - }, - { - "text": "Take effective measures to ensure local courts and traditional leaders operate in compliance with human rights obligations and the principles of equality and non-discrimination, including by ensuring adequate access to human rights training and by reviewing the appointment procedures for local and traditional leaders ", - "values": [ - "Human rights education and training", - "Justice" - ] - }, - { - "text": "Continue with its efforts to better protect women, children and the disabled in order to consolidate the progress made in this area ", - "values": [ - "Disabilities", - "Rights of the Child", - "Women's rights" - ] - }, - { - "text": "Put an end to the practice of criminal prosecutions for moral crimes against women who have fled their home ", - "values": [ - "Women's rights" - ] - }, - { - "text": "Ratify the Convention against Torture as soon as possible and further, ratify the Minimum Age Convention, 1973 (No. 138) and the Worst Forms of Child Labour Convention, 1999 (No. 182) of the International Labour Organization and the Optional Protocols to Convention on the Elimination of All Forms of Discrimination against Women and the International Covenant on Civil and Political Rights and abolish the death penalty as recommended by the Law Commission of India", - "values": [ - "CP rights - general", - "Death penalty", - "International instruments", - "Labour", - "Torture and other CID treatment", - "Women's rights" - ] - }, - { - "text": "Revise the provisions of the Criminal Code on terrorism with a view to defining precisely terrorism-related offences and ensure legislation is in line with the International Covenant on Civil and Political Rights", - "values": [ - "Counter-terrorism", - "International instruments" - ] - }, - { - "text": "Continue specially its efforts to combat human trafficking ", - "values": [ - "Trafficking" - ] - }, - { - "text": "Intensify efforts to ratify the Convention against Torture and Other Cruel, Inhuman or Degrading Treatment or Punishment", - "values": [ - "International instruments", - "Torture and other CID treatment" - ] - }, - { - "text": "Step up its efforts towards the ratification of other international human rights conventions, including ILO Convention No. 189", - "values": [ - "International instruments", - "Labour" - ] - }, - { - "text": "Initiate or pursue timely, independent, impartial and effective investigations into threats and attacks against human rights defenders and bring those responsible to justice", - "values": [ - "Human rights defenders" - ] - }, - { - "text": "Continue to strengthen the national efforts to control the borders and to fight against trafficking in persons and drug smuggling as well as terrorist activities of Boko Haram in the borders and to continue the effective coordination with neighbouring countries in that regard", - "values": [ - "Public security", - "Trafficking" - ] - }, - { - "text": "Establish a unified registry of cases of violence against women, and to intensify efforts to improve human rights for women", - "values": [ - "Women's rights" - ] - }, - { - "text": "Increase efforts and allocation of necessary resources to guarantee greater participation of women in political and leadership positions", - "values": [ - "Women's rights" - ] - }, - { - "text": "Raise the minimum age at which children can be held criminally responsible ", - "values": [ - "Justice", - "Rights of the Child" - ] - }, - { - "text": "Consider early ratification of the newest OP to CRC on a communications procedure", - "values": [ - "International instruments", - "Rights of the Child" - ] - }, - { - "text": "Adopt a law against corruption ", - "values": [ - "Corruption" - ] - }, - { - "text": "Take further efforts in refining its domestic legislation in various fields of human rights, reforming the judiciary and improving the situation of people who are deprived of their liberty, so as to further ensure the promotion and protection of human rights for its peoples ", - "values": [ - "Justice" - ] - }, - { - "text": "Take concrete measures aiming at fostering a genuine human rights culture with due regard to national and regional particularities as well as historical, cultural and religious backgrounds ", - "values": [ - "Other" - ] - }, - { - "text": "Ensure that all human rights violations against human rights defenders and journalists are investigated effectively and transparently, with perpetrators being promptly brought to justice, including pending unresolved cases requiring urgent attention ", - "values": [ - "Freedom of the press", - "Human rights defenders" - ] - }, - { - "text": "Strengthen the role of the National Council for Childhood and Adolescence ", - "values": [ - "Rights of the Child" - ] - }, - { - "text": "Continue strengthening the legal framework and building institutions in the area of security, law enforcement, and judiciary, in accordance with the rights-based approach and not bringing civilians before military courts", - "values": [ - "Justice" - ] - }, - { - "text": "Accede to CED", - "values": [ - "Enforced disappearances", - "International instruments" - ] - }, - { - "text": "Ensure that all suspects in police custody have prompt access to a lawyer at the outset of detention", - "values": [ - "Detention" - ] - }, - { - "text": "Continue dialogue at the national level, with a view to reaching consensus to abolish the death penalty in the Constitution", - "values": [ - "Death penalty" - ] - }, - { - "text": "Continue realizing the necessary efforts to eradicate all forms of discrimination, through the implementation of commitments it undertook with CERD ", - "values": [ - "International instruments", - "Racial discrimination" - ] - }, - { - "text": "Conclude the process of establishing a human rights institution in conformity with the Paris Principles", - "values": [ - "National Human Rights Institution" - ] - }, - { - "text": "Strengthen prevention and awareness-raising programmes in its efforts to address trafficking in persons at the national and regional levels, including through the Bali Process", - "values": [ - "Human rights education and training", - "Trafficking" - ] - }, - { - "text": "Finalise the implementation of a national preventive mechanism against torture", - "values": [ - "Detention", - "Torture and other CID treatment" - ] - }, - { - "text": "Ratify the Second Optional Protocol of the International Covenant on Civil and Political Rights", - "values": [ - "Death penalty", - "International instruments" - ] - }, - { - "text": "Continue taking legislative amendments and strengthen necessary policies to enhance child rights, particularly children with disabilities in light of relevant provisions of international conventions ratified by Romania", - "values": [ - "Disabilities", - "International instruments", - "Rights of the Child" - ] - }, - { - "text": "Adopt time-bound measures to increase children with disabilities' access to inclusive education in mainstream schools, and that it ensure funding for the specific services necessary to help these students reach their full learning potential and participate along with other students", - "values": [ - "Disabilities", - "Right to education", - "Rights of the Child" - ] - }, - { - "text": "Establish promptly an independent national human rights institution in conformity with the Paris Principles", - "values": [ - "National Human Rights Institution" - ] - }, - { - "text": "Strengthen measures for the promotion of intercultural understanding and tolerance in order to overcome unacceptable cases of intolerance and absence of respect for the religion of others in the country", - "values": [ - "Freedom of religion and belief" - ] - }, - { - "text": "Continue, in implementing the Sexual Offences Act, to work towards a fuller realization of the rights of victims of sexual offences ", - "values": [ - "Rights of the Child", - "Women's rights" - ] - }, - { - "text": "Refrain from banning or setting age limit on non-therapeutic circumcision of boys", - "values": [ - "Freedom of religion and belief" - ] - }, - { - "text": "Ensure that its legislation is consistent with international human rights law pertaining to freedom of expression", - "values": [ - "Freedom of opinion and expression", - "International instruments" - ] - }, - { - "text": "Evaluate regulations and laws, including those which grant the Orthodox Rabbinate the right to determine policies affecting non-Orthodox Jews and non Jews, to ensure that they do not discriminate against persons, especially women, based on their religious beliefs or lack thereof", - "values": [ - "Freedom of religion and belief", - "Racial discrimination", - "Women's rights" - ] - }, - { - "text": "Ensure that earthquake relief engages and addresses the needs of members of vulnerable communities, including Dalits, and promotes decent work", - "values": [ - "Labour", - "Minorities" - ] - }, - { - "text": "Establish a formal moratorium on the death penalty with a view to ratifying the Second Optional Protocol to the International Convention on Civil and Political Rights, aiming at the abolition of the death penalty", - "values": [ - "Death penalty", - "International instruments" - ] - }, - { - "text": "Integrate the various regional and international human rights instruments to which it is a party into its domestic legislation, particularly concerning torture, the state of prisons, freedom of the press and of assembly, child welfare, gender equality and so on ", - "values": [ - "Detention", - "Freedom of association and peaceful assembly", - "Freedom of the press", - "International instruments", - "Rights of the Child", - "Torture and other CID treatment" - ] - }, - { - "text": "Ratify the Convention on the Rights of Persons with Disabilities and the Optional Protocol thereto as soon as possible ", - "values": [ - "Disabilities", - "International instruments" - ] - }, - { - "text": "Decriminalize consenting homosexual relationships between persons over the age of consent by repealing Section 365A of the penal code", - "values": [ - "Sexual Orientation and Gender Identity" - ] - }, - { - "text": "Put an end to the practice of pushing-back boats transporting migrants to the high seas", - "values": [ - "Migrants" - ] - }, - { - "text": "Step up its efforts, with the assistance of OHCHR, in human rights training.", - "values": [ - "Human rights education and training", - "Technical assistance and cooperation" - ] - }, - { - "text": "Prevent clashes and tensions occurred between the majority Christian population and the Muslim minorities", - "values": [ - "Freedom of religion and belief", - "Minorities" - ] - }, - { - "text": "Pursue its efforts with a view to facilitating access to housing for marginalized and low-income groups", - "values": [ - "Right to housing" - ] - }, - { - "text": "Take concrete and resolved measures to offer immediate protection to civilians, and to propose to armed opposition a viable mechanism for a national dialogue conducive to bringing peace and serenity back to the whole country.", - "values": [ - "International humanitarian law" - ] - }, - { - "text": "Review its reservations to certain articles of the ICCPR and ICESCR with a view to withdrawing them ", - "values": [ - "CP rights - general", - "ESC rights - general", - "International instruments" - ] - }, - { - "text": "Effectively implement as soon as possible the promising and necessary law on mental health of 2015", - "values": [ - "Right to health" - ] - }, - { - "text": "Acknowledge legally the rights of indigenous and tribal peoples to own, develop, control and use their lands, resources and communal territories according to customary law and traditional land-tenure system ", - "values": [ - "Indigenous peoples", - "Right to land" - ] - }, - { - "text": "Continue to eliminate barriers to women enjoying effective access to justice and promote knowledge of their rights and provide basic legal assistance", - "values": [ - "Women's rights" - ] - }, - { - "text": "Ensure the incorporation of the principles and norms of the international human rights law, especially of those treaties to which the Philippines is party, into its national legislation", - "values": [ - "International instruments" - ] - }, - { - "text": "Increase measures to create conditions conducive for people to exercise freedom of expression", - "values": [ - "Freedom of opinion and expression" - ] - }, - { - "text": "Continue to advance its poverty reduction strategy and increase investment to health and education to improve national health-care system and raise education coverage", - "values": [ - "Poverty", - "Right to education", - "Right to health" - ] - }, - { - "text": "Take measures to increase the participation of women in public and political programmes for the empowerment of women, and reinforce measures to ensure equality between women and men in all spheres, including through more effective implementation of relevant legislation ", - "values": [ - "Women's rights" - ] - }, - { - "text": "Ensure the full implementation of international obligations and constitutional guarantees, including with regard to the prohibition of torture", - "values": [ - "Torture and other CID treatment" - ] - }, - { - "text": "Fully cooperate with the Office of the High Commissioner for Human Rights and with the Special Procedures", - "values": [ - "Special procedures" - ] - }, - { - "text": "To establish a human rights desk under the Ministry of Justice and Constitutional Affairs to coordinate human rights issues at the national level. The mandate of the desk will be defined in consultation with the Uganda Human Rights Commission", - "values": [ - "Justice", - "National Human Rights Institution" - ] - }, - { - "text": "Continue the implementation of the strategic plan regarding domestic violence, in particular violence against women and girls", - "values": [ - "Rights of the Child", - "Women's rights" - ] - }, - { - "text": "Reform the office of the ombudsman (Defensoría del Pueblo) so that it can assume its function as national mechanism to prevent torture", - "values": [ - "National Human Rights Institution", - "Torture and other CID treatment" - ] - }, - { - "text": "Prohibit all corporal punishment in all settings, including in the home", - "values": [ - "Rights of the Child", - "Torture and other CID treatment" - ] - }, - { - "text": "Issue a standing invitation to the Human Rights Council special procedures mandate holders ", - "values": [ - "Special procedures" - ] - }, - { - "text": "Continue setting up national annual plans on education and awareness-raising of human rights, including through a field visit in this area", - "values": [ - "Human rights education and training" - ] - }, - { - "text": "Apply the Yogyakarta principles in policy development ", - "values": [ - "Sexual Orientation and Gender Identity" - ] - }, - { - "text": "Commute without delay death sentences to prison terms, and definitively abolish capital punishment in all circumstances ", - "values": [ - "Death penalty" - ] - }, - { - "text": "Make further efforts to ensure respect for the right to freedom of opinion and expression", - "values": [ - "Freedom of opinion and expression" - ] - }, - { - "text": "Close the gender pay gap", - "values": [ - "Women's rights" - ] - }, - { - "text": "Intensify efforts to address cases of sexual violence and exploitation of children.", - "values": [ - "Rights of the Child" - ] - }, - { - "text": "Remove relevant articles of the Penal Code criminalising same sex sexual activities", - "values": [ - "Sexual Orientation and Gender Identity" - ] - }, - { - "text": "Fiji is committed to strengthening existing mechanisms that is targeted towards safeguarding the rights of all Fijians.", - "values": [ - "General" - ] - }, - { - "text": "Continue to work on awareness-raising of the rights and needs of children with disabilities and ensure that children with disabilities have equal access to social and appropriate health-care services", - "values": [ - "Disabilities", - "ESC rights - general", - "Right to health", - "Rights of the Child" - ] - }, - { - "text": "Sign and ratify the Second Optional Protocol to ICCPR", - "values": [ - "Death penalty", - "International instruments" - ] - }, - { - "text": "Continue their endeavours and engagement with all stakeholders for an effective implementation of the programs for the promotion and protection of the rights of women and children ", - "values": [ - "Rights of the Child", - "Women's rights" - ] - }, - { - "text": "Enact new measures to combat the trafficking in women and children for the purposes of sexual exploitation.", - "values": [ - "Rights of the Child", - "Trafficking", - "Women's rights" - ] - }, - { - "text": "Continue the efforts undertaken to strengthen the role of the national human rights institutions, in particular the Government Commission for Human Rights", - "values": [ - "National Human Rights Institution" - ] - }, - { - "text": "Continue implementing its development plans, since development is an inalienable right, and support practical efforts to achieve development and to strengthen institutional capacities, focusing on the Government's priorities which are education, social welfare and health services, and develop an effective national plan to combat human trafficking in cooperation with neighbouring countries", - "values": [ - "Development", - "ESC rights - general", - "Right to education", - "Right to health", - "Technical assistance and cooperation", - "Trafficking" - ] - }, - { - "text": "Prioritize the implementation of a plan of action to combat the sale of children and child prostitution", - "values": [ - "Rights of the Child", - "Trafficking" - ] - }, - { - "text": "Strengthen the position and the independence of the Constitutional Court in order to ensure that fundamental freedoms and minority rights, as guaranteed in the Constitution, are fully respected in newly adopted legislation", - "values": [ - "Minorities" - ] - }, - { - "text": "Intensify the positive action already taken for improving the living conditions of persons with disabilities", - "values": [ - "Disabilities" - ] - }, - { - "text": "Amend the law in order to ensure that torture is established as serious crime punished with appropriate penalties and ensure that it is brought into full conformity with the definition set out in the Convention against Torture", - "values": [ - "International instruments", - "Torture and other CID treatment" - ] - }, - { - "text": "Ratify the international human rights treaties and their optional protocols, in order to strengthen the implementation and observance of international human rights law, particularly the International Covenant on Civil and Political Rights and the International Covenant on Economic, Social and Cultural Rights", - "values": [ - "CP rights - general", - "ESC rights - general", - "International instruments" - ] - }, - { - "text": "Proceed, within the shortest possible amount of time, with the establishment of a national human rights institution in accordance with the Paris Principles ", - "values": [ - "National Human Rights Institution" - ] - }, - { - "text": "Step up its efforts in fighting domestic violence and take measures to prevent secondary victimization and the negative impact of domestic violence on children", - "values": [ - "Rights of the Child", - "Women's rights" - ] - }, - { - "text": "Dismantle groups of power and other clandestine structures of corruption that prevent guarantees of fair trials and due process, in line with international standards", - "values": [ - "Corruption", - "Justice" - ] - }, - { - "text": "Guinea be provided all possible technical and financial assistance it needs by the international community as well as the OHCHR ", - "values": [ - "Technical assistance and cooperation" - ] - }, - { - "text": "The national report makes it clear that harmful traditional practices are deeply rooted in the culture of the Nigerian peoples, we therefore encourage the Nigerian government to intensify its efforts in the field of human rights education to eradicate this problem that only seems to weaken the development prospects in this country", - "values": [ - "Human rights education and training", - "Torture and other CID treatment" - ] - }, - { - "text": "The Government is committed to protecting the rights of refugees and ensuring humane treatment.", - "values": [ - "Asylum-seekers - refugees" - ] - }, - { - "text": "Seek assistance from the international community to advance its human rights agenda ", - "values": [ - "Technical assistance and cooperation" - ] - }, - { - "text": "Ensure that the birth registration system is further improved and supported by awareness-raising activities, in order to achieve registration for all", - "values": [ - "Rights of the Child", - "Statelessness and the right to nationality" - ] - }, - { - "text": "Implement a law on freedom of assembly that complies with applicable standards under article 21 of the ICCPR", - "values": [ - "Freedom of association and peaceful assembly", - "International instruments" - ] - }, - { - "text": "Take action to reduce and eliminate all cases of abuse, torture or mistreatment by police and security forces", - "values": [ - "Human rights violations by state agents", - "Torture and other CID treatment" - ] - }, - { - "text": "Simplify the process of naturalisation of "non-citizens" living in the country for decades", - "values": [ - "Statelessness and the right to nationality" - ] - }, - { - "text": "Adopt measures to ensure the participation of women in the peace process, including the truth commissions", - "values": [ - "Justice", - "Women's rights" - ] - }, - { - "text": "Strengthen its actions to prevent and combat femicide and other forms of gender-based violence", - "values": [ - "Women's rights" - ] - }, - { - "text": "Continue efforts to promote inclusive education by strengthening access to education for persons with disabilities", - "values": [ - "Disabilities", - "Right to education" - ] - }, - { - "text": "Intensify efforts to bring domestic legislation in line with international standards to combat all forms of violence and discrimination against women and girls", - "values": [ - "Rights of the Child", - "Women's rights" - ] - }, - { - "text": "Accept the request of the Special Rapporteur on freedom of expression to visit the country which had been requested in 2004 ", - "values": [ - "Freedom of opinion and expression", - "Special procedures" - ] - }, - { - "text": "Take concrete steps to ensure security for its people to guarantee their enjoyment of human rights", - "values": [ - "Public security" - ] - }, - { - "text": "On the question of the rights of sexual minorities, review laws in order to ensure that legislation is brought into line with international human rights norms ", - "values": [ - "International instruments", - "Sexual Orientation and Gender Identity" - ] - }, - { - "text": "Ensure the independence and impartiality of the judiciary, in particular by fighting corruption, and enable victims to defend their rights in court, by taking measures to strengthen respect for the rights of the defence and transparency of judicial proceedings", - "values": [ - "Corruption", - "Justice" - ] - }, - { - "text": "Further improve the protection of women and girls against violence and discrimination ", - "values": [ - "Rights of the Child", - "Women's rights" - ] - }, - { - "text": "Focus on developing a system allowing effective collaboration between the health, social security, education, and tourism sectors with the aim of adequately tackling all forms of sexual exploitation in the country ", - "values": [ - "Rights of the Child", - "Women's rights" - ] - }, - { - "text": "Ratify the Council of Europe Convention on Preventing and Combating Violence against Women and Domestic Violence (Istanbul Convention)", - "values": [ - "International instruments", - "Rights of the Child", - "Women's rights" - ] - }, - { - "text": "Enhance the skills of people in charge of teaching human rights in curricula", - "values": [ - "Human rights education and training" - ] - }, - { - "text": "Step up efforts to eliminate corruption by police officers and prosecutors, and to adopt specific legal provisions establishing a judicial procedure for ensuring investigation of the cases related to enforced disappearance and arbitrary detention, as well as to punish perpetrators and provide assistance and recovery for victims", - "values": [ - "Corruption", - "Detention", - "Enforced disappearances" - ] - }, - { - "text": "Establish specialized services to meet the needs of children with disabilities ", - "values": [ - "Disabilities", - "Rights of the Child" - ] - }, - { - "text": "Explore the possibility of seeking accreditation from the International Coordinating Committee for the relevant institutions, including the Office of the Chancellor of Justice ", - "values": [ - "International instruments" - ] - }, - { - "text": "Accede to CAT, as well as the Optional Protocol thereto, and establish a national preventive mechanism provided for by the Protocol", - "values": [ - "Detention", - "International instruments", - "Torture and other CID treatment" - ] - }, - { - "text": "Continue its work to ensure the further refinement of laws aimed at protecting children's rights in order to step up criminal and administrative responsibilities for crimes and offences committed against children or involving children in crime", - "values": [ - "Rights of the Child" - ] - }, - { - "text": "Address the issue of gender-based violence, and to develop a comprehensive strategy or action plan for the prevention and elimination of all forms of violence against women and girls", - "values": [ - "Rights of the Child", - "Women's rights" - ] - }, - { - "text": "Take steps to ensure she upholds her international obligations on freedom of expression and freedom of assembly", - "values": [ - "Freedom of association and peaceful assembly", - "Freedom of opinion and expression" - ] - }, - { - "text": "Sweden emphasizes its commitment to uphold and respect the principle of non-refoulement, in accordance with international conventions and agreements, for persons under Swedish jurisdiction.", - "values": [ - "Asylum-seekers - refugees" - ] - }, - { - "text": "Take due steps towards the full implementation of the election regulations in the future ", - "values": [ - "Elections" - ] - }, - { - "text": "Promote and protect the rights of indigenous peoples, peasants and other people working in rural areas", - "values": [ - "Indigenous peoples" - ] - }, - { - "text": "Take effective measures to prohibit the use of corporal punishment for minors in schools", - "values": [ - "Rights of the Child", - "Torture and other CID treatment" - ] - }, - { - "text": "Strengthen the independence of the judiciary in line with the United Nations Basic Principles on the Independence of the Judiciary", - "values": [ - "Justice" - ] - }, - { - "text": "Finland is committed to present a voluntary interim report on the progress made in implementing the UPR recommendations to the Human Rights Council in 2014.", - "values": [ - "UPR process" - ] - }, - { - "text": "Ratify the second Optional Protocol to the International Covenant on Civil and Political Rights (ICCPR-OP 2), aiming at the abolition of the death penalty", - "values": [ - "Death penalty", - "International instruments" - ] - }, - { - "text": "Continue to grant all political parties unfettered access to the print and electronic media for fair elections ", - "values": [ - "Elections" - ] - }, - { - "text": "Remain constructively engaged with the international community on the issue of lifting sanctions ", - "values": [ - "Other" - ] - }, - { - "text": "Intensify training and adequate supervision of alleged cases of illtreatment by the police forces", - "values": [ - "Human rights violations by state agents", - "Torture and other CID treatment" - ] - }, - { - "text": "Take measures to counteract the trend of judicial authorizations of marriages involving minors, including through necessary amendments to the Family Code", - "values": [ - "Rights of the Child" - ] - }, - { - "text": "Comply with all the provisions of the United Nations Declaration on Human Rights Defenders, ensuring that those who engage in human rights work are able to exercise their rights to freedom of expression, association and movement without obstruction", - "values": [ - "Freedom of association and peaceful assembly", - "Freedom of opinion and expression", - "Human rights defenders", - "International instruments" - ] - }, - { - "text": "Strengthen attention to recommendations from the Truth Commission concerning mechanisms for reparation, restitution, rehabilitation and guarantees that such violations do not occur again, received in 2010 by the Prosecutor-General's Office ", - "values": [ - "Justice" - ] - }, - { - "text": "Enhance efforts in undertaking measures to ensure better protection for its migrant workers abroad ", - "values": [ - "Labour", - "Migrants" - ] - }, - { - "text": "Strengthen measures, including at the local level, to combat cultural stereotypes and discrimination against minorities and migrants", - "values": [ - "Migrants", - "Minorities" - ] - }, - { - "text": "Take steps towards modifying those social, cultural and traditional attitudes that were permissive of violence against women", - "values": [ - "Women's rights" - ] - }, - { - "text": "Consider the possibility of raising the minimum criminal age and refrain from the practice of keeping children in custody ", - "values": [ - "Detention", - "Justice", - "Rights of the Child" - ] - }, - { - "text": "Continue its efforts to achieve the goals of the National Sanitary Development Plan 2006-2015", - "values": [ - "Right to health" - ] - }, - { - "text": "Continue its current approach on consolidation of human rights institutions", - "values": [ - "National Human Rights Institution" - ] - }, - { - "text": "Amend legislation that infringes on freedom of expression and decriminalize press-related offences such as defamation", - "values": [ - "Freedom of opinion and expression", - "Freedom of the press" - ] - }, - { - "text": "Continue to adopt measures to increase the rate of issuance of birth certificates, especially in rural areas, while introducing specific measures to register migrant children at birth", - "values": [ - "Migrants", - "Rights of the Child", - "Statelessness and the right to nationality" - ] - }, - { - "text": "Redouble its efforts to combat trafficking in persons and protect its victims, in particular children", - "values": [ - "Rights of the Child", - "Trafficking" - ] - }, - { - "text": "Provide active and immediate protection for all human rights defenders ", - "values": [ - "Human rights defenders" - ] - }, - { - "text": "Take appropriate action to prosecute cases of domestic violence and ratify the Council of Europe Convention on Preventing and Combating Violence against Women and Domestic Violence", - "values": [ - "Rights of the Child", - "Women's rights" - ] - }, - { - "text": "Put into place and build the capacity of an independent Human Rights Commission to highlight human rights violations", - "values": [ - "National Human Rights Institution" - ] - }, - { - "text": "Carry out concrete and effective measures, including legislative action to ensure respect for the freedom of expression, association and the press, in conformity with international standards", - "values": [ - "Freedom of association and peaceful assembly", - "Freedom of opinion and expression", - "Freedom of the press" - ] - }, - { - "text": "Take urgent action to develop a specific policy to protect the rights of minorities and indigenous peoples and address the key question of racism", - "values": [ - "Indigenous peoples", - "Minorities", - "Racial discrimination" - ] - }, - { - "text": "Move forward quickly with a national action plan to combat genderbased violence, including human trafficking", - "values": [ - "Trafficking", - "Women's rights" - ] - }, - { - "text": "Increase the minimum age of criminal responsibility in line with internationally accepted norms, and ensure that children who are deprived of their liberty are separated from adult prisoners", - "values": [ - "Detention", - "Justice", - "Rights of the Child" - ] - }, - { - "text": "Ratify the Optional Protocol to the International Covenant on Civil and Political Rights", - "values": [ - "CP rights - general", - "International instruments" - ] - }, - { - "text": "Ensure that the new Constitution protects all fundamental human rights, and that implementing legislation expressly defines the limited grounds on which these rights can be restricted ", - "values": [ - "General" - ] - }, - { - "text": "Continue its efforts to promote gender equality, including by taking concrete measures to combat the high level of violence against women", - "values": [ - "Women's rights" - ] - }, - { - "text": "Stop arresting migrants in isolated cells and in solitary confinement", - "values": [ - "Detention", - "Migrants" - ] - }, - { - "text": "Reform the law on counter-terrorism in order to prevent imprisonment of journalists", - "values": [ - "Counter-terrorism", - "Freedom of the press" - ] - }, - { - "text": "Pursue its efforts to combat poverty and promote economic, social and cultural rights with a view to achieve the MDG's by 2015.", - "values": [ - "ESC rights - general", - "Poverty" - ] - }, - { - "text": "Urgently act to protect women against any form of sexual violence ", - "values": [ - "Women's rights" - ] - }, - { - "text": "Establish a specific and comprehensive plan to combat gender violence and provide it with the necessary resources for its implementation ", - "values": [ - "Women's rights" - ] - }, - { - "text": "Continue with activities towards implementing the revised National Action Plan for the Decade of Roma Inclusion for 2011-2015 and the adopted Strategy for the Integration of Roma up to 2020 ", - "values": [ - "Minorities" - ] - }, - { - "text": "Maintain and strengthen measures to enhance the promotion and protection of human rights", - "values": [ - "General" - ] - }, - { - "text": "Ensure that the Palestinians enjoy the religious and cultural rights contained in the Universal Declaration of Human Rights and allow them unhindered access to places of worship in conformity with the Fourth Geneva Convention", - "values": [ - "Freedom of religion and belief", - "International humanitarian law", - "International instruments", - "Minorities" - ] - }, - { - "text": "Immediately free unconditionally all persons arbitrarily detained by the Syrian authorities, as a priority women, children and older persons", - "values": [ - "Detention", - "Human rights violations by state agents", - "Rights of the Child", - "Women's rights" - ] - }, - { - "text": "Abolish the death penalty and immediately declare a moratorium on all executions.", - "values": [ - "Death penalty" - ] - }, - { - "text": "Continue its efforts to harmonize and consolidate its domestic legislation against all forms of discrimination on the basis of international standards ", - "values": [ - "Other" - ] - }, - { - "text": "Continue its efforts to bring national legislation into conformity with international human rights norms", - "values": [ - "International instruments" - ] - }, - { - "text": "Continue promoting internal debates towards a better regulation of the consultation processes with indigenous peoples on issues that affect them directly ", - "values": [ - "Indigenous peoples", - "Right to land" - ] - }, - { - "text": "Continue taking actions to curb racial profiling by law enforcement agencies", - "values": [ - "Racial discrimination" - ] - }, - { - "text": "Do not to admit as evidence confessions obtained through torture or other illegal means", - "values": [ - "Torture and other CID treatment" - ] - }, - { - "text": "Step up efforts to ensure the right to food in the country", - "values": [ - "Right to food" - ] - }, - { - "text": "Ensure that its national legislation and practice effectively protect the principle of non-refoulement", - "values": [ - "Asylum-seekers - refugees" - ] - }, - { - "text": "Adopt and implement draft laws regarding persons with disabilities and concerning mental health, as referred to in the national report, with a view to providing a normative framework to strengthen awareness-raising campaigns on human rights and disability ", - "values": [ - "Disabilities", - "Human rights education and training" - ] - }, - { - "text": "Adopt a new National Plan of Action for Children with a view to, inter alia, eradicating children's sexual exploitation ", - "values": [ - "Rights of the Child" - ] - }, - { - "text": "Consider abolishing the death penalty or formalize the current de facto moratorium", - "values": [ - "Death penalty" - ] - }, - { - "text": "Align the national legislation with international law", - "values": [ - "General" - ] - }, - { - "text": "Take necessary measures to provide adequate protection to journalists and human rights defenders, in particular regarding enforced disappearances and extrajudicial killings", - "values": [ - "Enforced disappearances", - "Extrajudicial executions", - "Freedom of the press", - "Human rights defenders" - ] - }, - { - "text": "Reinforce its legal measures on National Strategy on HIV that was approved in 2012 by the government ", - "values": [ - "HIV - Aids" - ] - }, - { - "text": "Review its institutions, particularly the judiciary to ensure their compatibility with accepted world practice where politicians are given adequate space to govern and fulfil their political mandate ", - "values": [ - "Justice" - ] - }, - { - "text": "Provide regular periodic reports to the United Nations treaty bodies and submit them in a timely fashion.", - "values": [ - "Treaty bodies" - ] - }, - { - "text": "Adopt the revised Persons and Family Code, criminalize domestic violence and intensify the fight against traditional practices, which discriminate against women or are detrimental to them ", - "values": [ - "Women's rights" - ] - }, - { - "text": "Adopt special procedures to ensure the effective protection of the rights of unaccompanied children in their access to asylum procedures", - "values": [ - "Asylum-seekers - refugees", - "Rights of the Child" - ] - }, - { - "text": "Accede to ICRMW", - "values": [ - "International instruments", - "Labour", - "Migrants" - ] - }, - { - "text": "Continue and consolidate efforts in promoting dialogue, tolerance and social cohesion", - "values": [ - "General" - ] - }, - { - "text": "Adopt legislative measures to combat violence against women, especially improve their protection in rural areas ", - "values": [ - "Women's rights" - ] - }, - { - "text": "Ensure that young people with mental health problems have access to the highest professional consultancies and treatment methods, and promote an enabling environment for non-profit organizations working with mental health issues in relation to young people and children", - "values": [ - "Civil society", - "Right to health", - "Rights of the Child" - ] - }, - { - "text": "Continue efforts to combat poverty and to promote social equality", - "values": [ - "Poverty" - ] - }, - { - "text": "Accede to the two optional protocols to the CRC", - "values": [ - "International humanitarian law", - "International instruments", - "Rights of the Child", - "Trafficking" - ] - }, - { - "text": "Continue its efforts to create a national human rights institution", - "values": [ - "National Human Rights Institution" - ] - }, - { - "text": "Fight trafficking in persons, prosecute perpetrators and provide protection and compensation to victims ", - "values": [ - "Trafficking" - ] - }, - { - "text": "Take steps towards abolishing the death penalty", - "values": [ - "Death penalty" - ] - }, - { - "text": "Take steps to ensure that Law No. 14/2010 does not affect the rights of assembly and demonstration enshrined in international instruments", - "values": [ - "Freedom of association and peaceful assembly", - "International instruments" - ] - }, - { - "text": "Expedite the proceedings to abolish the death penalty", - "values": [ - "Death penalty" - ] - }, - { - "text": "Take all the necessary measures to eliminate violence against women, also by ensuring that perpetrators of such violence are prosecuted and punished, as well as by abolishing the stereotypical attitudes and patriarchal patterns of behaviour that undermine women's human rights ", - "values": [ - "Women's rights" - ] - }, - { - "text": "Adopt policies and mechanisms to avoid that members of any religious minority suffer from any kind of discrimination or human rights violation for exerting their right to worship according to their faith", - "values": [ - "Freedom of religion and belief", - "Minorities", - "Racial discrimination" - ] - }, - { - "text": "Implement the National Gender Policy and work with women's civil society groups to implement it in all spheres of national life", - "values": [ - "Women's rights" - ] - }, - { - "text": "Consider making the asylum procedure more transparent including at the appeals stage ", - "values": [ - "Asylum-seekers - refugees" - ] - }, - { - "text": "Ensure enforcement of domestic legislation and international standards concerning torture and ill treatment, including by appropriately punishing the perpetrators and that evidence elicited through torture or ill treatment be excluded at trial in all cases ", - "values": [ - "Torture and other CID treatment" - ] - }, - { - "text": "Ensure that the treatment of asylum seekers remains in accordance with the international conventions and protocols that Denmark has signed up to", - "values": [ - "Asylum-seekers - refugees", - "International instruments" - ] - }, - { - "text": "Ensure that children without parental care due to parental incarceration or execution are provided for, including with support for physical and mental health", - "values": [ - "Justice", - "Right to health", - "Rights of the Child" - ] - }, - { - "text": "Ensure that the new Penal Code safeguards the rights guaranteed by ICCPR, to which Iran is a signatory, in particular by defining or removing offences open to political manipulation, such as so-called offences against national and international security, currently used to curtail freedom of expression, assembly and association", - "values": [ - "CP rights - general", - "Freedom of association and peaceful assembly", - "Freedom of opinion and expression", - "International instruments" - ] - }, - { - "text": "Continue strengthening the capacity of government institutions on human rights and the application of a human rights-based approach", - "values": [ - "General" - ] - }, - { - "text": "Continue the ratification process for the main international instruments ", - "values": [ - "International instruments" - ] - }, - { - "text": "Consider revising the Criminal Code so that it includes all crimes of incitement to violence, discrimination and racist insults, and taking strict measures to combat extremism and hate discourse against the Roma minority, migrants and Muslims", - "values": [ - "Freedom of religion and belief", - "Migrants", - "Minorities", - "Racial discrimination" - ] - }, - { - "text": "Put an end to denying the right to education of children belonging to minorities or who do not have a residency permit in the country ", - "values": [ - "Migrants", - "Minorities", - "Right to education", - "Rights of the Child" - ] - }, - { - "text": "Evaluate the possibility of promulgating a draft bill on the abolishment of the death penalty, which is still pending before the National Assembly", - "values": [ - "Death penalty" - ] - }, - { - "text": "Ensure the effective functioning of the National Council for Civil Liberties and Human Rights", - "values": [ - "National Human Rights Institution" - ] - }, - { - "text": "Take all measures to ensure the protection of children from trafficking and bring perpetrators of child trafficking to justice. ", - "values": [ - "Rights of the Child", - "Trafficking" - ] - }, - { - "text": "Ratify the Convention against Torture and Other Cruel, Inhuman or Degrading Treatment of Punishment as soon as possible ", - "values": [ - "International instruments", - "Torture and other CID treatment" - ] - }, - { - "text": "Respect the cultural identity of the Syrian citizens in the occupied Syrian Golan and allow them to apply the national curricula", - "values": [ - "ESC rights - general" - ] - }, - { - "text": "Continue its efforts to enact legislation to combat human trafficking in accordance with the international convention against transnational organized crime ", - "values": [ - "International instruments", - "Trafficking" - ] - }, - { - "text": "Carry out a national outreach campaign for the elimination of sexual and gender-based violence which includes information on the rights of victims", - "values": [ - "Women's rights" - ] - }, - { - "text": "Take urgent measures to promote gender equality and effectively protect women and children's rights", - "values": [ - "Rights of the Child", - "Women's rights" - ] - }, - { - "text": "Promptly investigate crimes and violations against human rights defenders and journalists and prosecute the perpetrators", - "values": [ - "Freedom of the press", - "Human rights defenders" - ] - }, - { - "text": "Accede to the1951 Refugee Convention and its 1967 Protocol", - "values": [ - "Asylum-seekers - refugees", - "International instruments" - ] - }, - { - "text": "Strengthen efforts to ensure the full implementation of the principle of nondiscrimination, particularly in the promotion of gender equality and women's empowerment ", - "values": [ - "Women's rights" - ] - }, - { - "text": "Establish legislation and the necessary measures to guarantee freedom of religion in the country, particularly in public education", - "values": [ - "Freedom of religion and belief", - "Right to education" - ] - }, - { - "text": "Reform the Terrorism Act of 2008 and other security legislation which affect the freedom of expression, association and information, with a view to guaranteeing the full enjoyment of civil and political rights and their conformity with the international standards", - "values": [ - "Counter-terrorism", - "Freedom of association and peaceful assembly", - "Freedom of opinion and expression" - ] - }, - { - "text": "Put in place effective monitoring and reporting mechanisms to ensure respect for women's rights and to address violence against women in all its forms", - "values": [ - "Women's rights" - ] - }, - { - "text": "Double efforts to ensure that in 2015, Chad reaches the Millennium Development Goals, namely the attainment of quality education for all at the primary level", - "values": [ - "Development", - "Right to education" - ] - }, - { - "text": "Continue judicial reform to improve access to justice by promoting better coverage throughout the country and by updating its prison system", - "values": [ - "Detention", - "Justice" - ] - }, - { - "text": "Bring its national legislation into conformity with the provisions of the international human rights instruments to which it is a party", - "values": [ - "International instruments" - ] - }, - { - "text": "Continue improving combating of trafficking in persons", - "values": [ - "Trafficking" - ] - }, - { - "text": "Strengthen the state of law and good governance in harmony with the traditional culture of the country, especially on the legal enforcement and capacity-building for national agencies on human rights", - "values": [ - "Justice" - ] - }, - { - "text": "Establish a moratorium in the use of the death penalty as a preliminary step to its definitive abolition ", - "values": [ - "Death penalty" - ] - }, - { - "text": "Eliminate all forms of discrimination and criminalization of civil society organizations, human rights defenders and the media, inter alia by repealing Executive Decrees Nos. 16, 739 and 691 and the Organic Act on Communication and by ending criminal proceedings against persons participating in social protests based on broadly worded offences contained in the Criminal Code, such as sabotage and terrorism", - "values": [ - "Civil society", - "Freedom of association and peaceful assembly" - ] - }, - { - "text": "Lift reservations to the articles 14, 20 and 21 of United Nations Convention on the Rights of the Child as these are incompatible with the object and purpose of the Convention", - "values": [ - "International instruments", - "Rights of the Child" - ] - }, - { - "text": "Establish legislative measures to decriminalize sexual relations among adults of the same sex", - "values": [ - "Sexual Orientation and Gender Identity" - ] - }, - { - "text": "Implement the outcomes of the national dialogue for Constitutional reform in the field of justice, which was initiated in February 2016, whose purpose was to hold consultations with all stakeholders regarding actions to further the strengthening of the justice system in Guatemala", - "values": [ - "Justice" - ] - }, - { - "text": "Adopt a comprehensive law on the protection of children and young people", - "values": [ - "Rights of the Child" - ] - }, - { - "text": "Amend or revoke laws and decrees that limit the right to freedom of thought, conscience and religion", - "values": [ - "Freedom of opinion and expression", - "Freedom of religion and belief" - ] - }, - { - "text": "Establish as soon as possible an independent national human rights institution with a broad human rights protection mandate and adequate human and financial resources, in conformity with the Paris Principles", - "values": [ - "National Human Rights Institution" - ] - }, - { - "text": "Amend the Penal Code with provisions to prohibit FGM as soon as possible ", - "values": [ - "Rights of the Child", - "Torture and other CID treatment", - "Women's rights" - ] - }, - { - "text": "Curtail the practices of incarceration, mistreatment towards and the application of travel bans against individuals on the basis of political or religious beliefs", - "values": [ - "Freedom of opinion and expression", - "Freedom of religion and belief" - ] - }, - { - "text": "Amend the relevant legislation to abolish capital punishment entirely, in keeping with General Assembly resolutions 62-149 and 63-168, as well as the Second Optional Protocol to ICCPR, and transfer the existing death sentences to imprisonment terms", - "values": [ - "Death penalty", - "International instruments" - ] - }, - { - "text": "Formalize its longstanding non-use of capital punishment by abolishing all legal provisions for capital punishment ", - "values": [ - "Death penalty" - ] - }, - { - "text": "Continue its efforts in the area of dealing with the past through the establishment of a Special Court and a Truth and Reconciliation Commission in line with international standards ", - "values": [ - "Justice" - ] - }, - { - "text": "Prevent incidents of violence against members of ethnic and religious communities ", - "values": [ - "Freedom of religion and belief", - "Minorities" - ] - }, - { - "text": "Increase support for families to facilitate the pursuance by children of primary and secondary education", - "values": [ - "Right to education", - "Rights of the Child" - ] - }, - { - "text": "Accelerate administrative and legislative reforms with a view of ratifying the ICCPR", - "values": [ - "CP rights - general", - "International instruments" - ] - }, - { - "text": "Sign and ratify the International Covenant on Civil and Political Rights and the Convention against Torture and Other Cruel, Inhuman or Degrading Treatment or Punishment, in line with recommendation accepted in the first cycle of the review", - "values": [ - "CP rights - general", - "International instruments", - "Torture and other CID treatment", - "UPR process" - ] - }, - { - "text": "Develop specific guidelines for protection and support for victims of child sexual abuse and their families undergoing trial", - "values": [ - "Rights of the Child" - ] - }, - { - "text": "Make further efforts to enhance integration in general through, inter alia, addressing unemployment among young and foreign-born citizens, and in particular to prevent radicalization", - "values": [ - "Migrants" - ] - }, - { - "text": "Pursue the ongoing inquiries into allegations of violations of children's rights in armed conflict, such as conscriptions and abductions of children anywhere and to adopt vigorous measures to prevent such violations.", - "values": [ - "International humanitarian law", - "Rights of the Child" - ] - }, - { - "text": "Continue efforts to ratify international human rights instruments, to which Viet Nam is not yet a party ", - "values": [ - "International instruments" - ] - }, - { - "text": "Continue its on-going review of national laws to ensure that they are in line with its international human rights law obligations", - "values": [ - "International instruments" - ] - }, - { - "text": "Increase the resources devoted to the prevention of violence against women and of FGM ", - "values": [ - "Rights of the Child", - "Torture and other CID treatment", - "Women's rights" - ] - }, - { - "text": "Ensure that the authorities allow and facilitate the registration of non-governmental organizations and opposition parties ", - "values": [ - "Civil society", - "Freedom of association and peaceful assembly" - ] - }, - { - "text": "Ensure that the educational system is accessible and responds to the specific needs of child workers, including child domestic workers", - "values": [ - "Labour", - "Rights of the Child" - ] - }, - { - "text": "Adopt laws to protect freedoms of association, expression and religion, and give all individuals a legal basis to form NGOs without interference", - "values": [ - "Civil society", - "Freedom of association and peaceful assembly", - "Freedom of opinion and expression", - "Freedom of religion and belief" - ] - }, - { - "text": "Invite to its territory, as a priority, the Working Group on arbitrary detention and the Special Rapporteur on torture, in particular to investigate arbitrary detention and the holding in detention of persons who have served their sentences, as well as torture and ill treatment, and put an end to such practices ", - "values": [ - "Detention", - "Special procedures", - "Torture and other CID treatment" - ] - }, - { - "text": "Enforce the existing laws against domestic violence ", - "values": [ - "Rights of the Child", - "Women's rights" - ] - }, - { - "text": "Continue efforts to guarantee freedom of religion and freedom of belief without discrimination and without legal preferences", - "values": [ - "Freedom of religion and belief", - "Racial discrimination" - ] - }, - { - "text": "Continue implementing the Non-Formal Education programme for adults, including persons with disabilities ", - "values": [ - "Disabilities", - "Right to education" - ] - }, - { - "text": "Establish a human rights monitoring system, which allows access to detention centres in northern Nigerian, works with affected communities and promotes accountability for serious violations of human rights", - "values": [ - "Detention" - ] - }, - { - "text": "Continue to give priority to national policies in the national human development plan for 2009-2011", - "values": [ - "General" - ] - }, - { - "text": "Further fight all forms of violence against children and women", - "values": [ - "Rights of the Child", - "Women's rights" - ] - }, - { - "text": "Pursue eradicating child labour in Kenya by enforcing compulsory education", - "values": [ - "Labour", - "Right to education", - "Rights of the Child" - ] - }, - { - "text": "Promote anti-discrimination through awareness-raising campaigns on legislation among workers, employers and the judiciary", - "values": [ - "Human rights education and training" - ] - }, - { - "text": "Enact and strengthen laws providing the right to education, and take effective measures to protect the rights of the child", - "values": [ - "Right to education", - "Rights of the Child" - ] - }, - { - "text": "Define torture in its domestic legislation and to make it a criminal offence with specific sanctions, in support of the Convention against Torture and Other Cruel, Inhuman or Degrading Treatment or Punishment", - "values": [ - "International instruments", - "Torture and other CID treatment" - ] - }, - { - "text": "Ensure the full implementation of the National Action Plan against Human Trafficking as a means of ensuring the promotion and protection of victims of trafficking", - "values": [ - "Trafficking" - ] - }, - { - "text": "Incorporate human rights education in school curricula ", - "values": [ - "Human rights education and training" - ] - }, - { - "text": "Take measures in order to combat hate speech and xenophobia", - "values": [ - "Racial discrimination" - ] - }, - { - "text": "Consolidate the measures aimed at combating violence against women and at achieving social reintegration of those women who are victims of human trafficking", - "values": [ - "Trafficking", - "Women's rights" - ] - }, - { - "text": "Ensure full implementation of the Schools Act by submitting a report to the Public Defender of Rights evaluating its impact on ending discrimination and segregation of pupils with mild mental disabilities, including children belonging to the Roma minority", - "values": [ - "Disabilities", - "Minorities", - "Right to education", - "Rights of the Child" - ] - }, - { - "text": "Further strengthen mechanisms to detect and investigate cases of domestic violence, train law enforcement officials to deal with such cases and provide legal and medical support to victims", - "values": [ - "Justice", - "Right to health", - "Rights of the Child", - "Women's rights" - ] - }, - { - "text": "Set up appropriate protection mechanisms to eradicate child exploitation and hold the perpetrators of trafficking and abuse accountable ", - "values": [ - "Rights of the Child", - "Trafficking" - ] - }, - { - "text": "Ensure fair, equitable and independent judicial procedures, in accordance with international standards", - "values": [ - "Justice" - ] - }, - { - "text": "Provide an inclusive education for all children, in particular children with disabilities and migrant children", - "values": [ - "Disabilities", - "Migrants", - "Right to education", - "Rights of the Child" - ] - }, - { - "text": "Allow the establishment of independent newspapers and other social media, including free access to the internet ", - "values": [ - "Freedom of the press" - ] - }, - { - "text": "Ensure the safe passage, without the risk of attacks, of humanitarian convoys, allowing for safe, unhindered and sustained humanitarian access, and the evacuation of civilians in need of medical assistance", - "values": [ - "Other" - ] - }, - { - "text": "Facilitate the work of human rights defenders and journalists throughout the country", - "values": [ - "Freedom of the press", - "Human rights defenders" - ] - }, - { - "text": "Ensure the separation of juvenile convicts from adult inmates ", - "values": [ - "Detention", - "Rights of the Child" - ] - }, - { - "text": "Accede to the remaining core human rights treaties and core labour standards it has yet to become a party to, and continue to cooperate with international and regional human rights mechanisms in implementing its obligations ", - "values": [ - "International instruments", - "Labour" - ] - }, - { - "text": "Facilitate the visits of the UN High Commissioner and the special procedures, including to Tibetan and Uighur area ", - "values": [ - "Special procedures", - "Technical assistance and cooperation" - ] - }, - { - "text": "Continue its work on strengthening human rights in all areas in terms of programmes and policies and ensure human rights education's inclusion in school programmes throughout the country ", - "values": [ - "Human rights education and training" - ] - }, - { - "text": "Intensify its efforts to change stereotypical images and discriminatory attitudes and perceptions regarding the roles and responsibilities of women and girls and men and boys in the family and in society", - "values": [ - "Rights of the Child", - "Women's rights" - ] - }, - { - "text": "Consider adopting the United Nations Rules for the Treatment of Women Prisoners and Non-Custodial Measures for Women Offenders, known as the Bangkok Rules, to respond to specific needs of female inmates ", - "values": [ - "Detention", - "Women's rights" - ] - }, - { - "text": "Consider signing or ratifying the Optional Protocol to the Convention against Torture, the Rome Statute, the Second Optional Protocol to the International Covenant on Civil and Political Rights and the Optional Protocol to the Convention on the Elimination of Discrimination against Women", - "values": [ - "Death penalty", - "Detention", - "International instruments", - "Justice", - "Torture and other CID treatment", - "Women's rights" - ] - }, - { - "text": "Continue to take steps to ensure that land is made productive ", - "values": [ - "Right to land" - ] - }, - { - "text": "Combat impunity for attacks on human rights defenders, by effectively investigating allegations and by prosecuting those responsible and that Guatemala develop Government policy for the protection of human rights defenders, taking into account the views of civil society and also including the views delineated by the Presidential Commission on Human Rights in 2007.", - "values": [ - "Human rights defenders", - "Impunity" - ] - }, - { - "text": "Fully involve civil society in the work to follow up this session", - "values": [ - "Civil society", - "UPR process" - ] - }, - { - "text": "Decriminalize same-sex relationships, protect LGBTI from violence from other members of the society and fight against prejudices against LGBTI persons by awareness raising campaigns ", - "values": [ - "Human rights education and training", - "Sexual Orientation and Gender Identity" - ] - }, - { - "text": "Take all necessary steps to complete the process of implementation of the Indigenous and Tribal Peoples Convention No. 169.", - "values": [ - "Indigenous peoples", - "International instruments" - ] - }, - { - "text": "Bring fully its system of juvenile justice into line with the CRC and ensure that detention of children under 18 should be separated from adults ", - "values": [ - "Detention", - "International instruments", - "Rights of the Child" - ] - }, - { - "text": "Expand custody hearing programmes to cover all pre-trial detainees by passing draft bill 554/2011. Provide specific training according to the Istanbul Protocol to judges and public prosecutors working in custody hearings", - "values": [ - "Detention", - "Human rights education and training", - "Justice" - ] - }, - { - "text": "Immediately cease public executions and the use of torture and cruel, inhuman, or degrading treatment or punishment and ratify CAT ", - "values": [ - "Death penalty", - "International instruments", - "Justice", - "Torture and other CID treatment" - ] - }, - { - "text": "Improve the implementation of national legislation on sexual violence and ensure that perpetrators are brought to justice", - "values": [ - "Rights of the Child", - "Women's rights" - ] - }, - { - "text": "Adopt legislative measures to incriminate accusations of witchcraft against children", - "values": [ - "Rights of the Child", - "Women's rights" - ] - }, - { - "text": "Formalize this approach (of not carrying out the death penalty) by ceasing the imposition of death sentences and ratifying the Second Optional Protocol to the International Covenant on Civil and Political Rights, aiming at the abolition of the death penalty ", - "values": [ - "Death penalty", - "International instruments" - ] - }, - { - "text": "Continue to make efforts to progressively introduce an inclusive education system for the children with disabilities", - "values": [ - "Disabilities", - "Right to education", - "Rights of the Child" - ] - }, - { - "text": "Conduct human rights awareness-raising activities for law enforcement officers", - "values": [ - "Human rights education and training" - ] - }, - { - "text": "Reformulate the plan of action to improve the living conditions of the Roma community which began in 2009 in order to ensure that it includes fundamental issues such as the eradication of illiteracy and providing Roma children with inclusive and quality education ", - "values": [ - "Minorities", - "Right to education", - "Rights of the Child" - ] - }, - { - "text": "Continue the efforts to strengthen the institutional framework of human rights promotion and protection, including by fully operationalizing the interdepartmental working group with mandate to monitor the consideration and the settlement of complaints by citizens and considering the establishment of an independent National Human Rights Institution, in full conformity with the Paris Principles ", - "values": [ - "National Human Rights Institution" - ] - }, - { - "text": "Continue to take measures to ensure the elimination of poverty ", - "values": [ - "Poverty" - ] - }, - { - "text": "Establish effective ways that all migrant workers and their families could lodge complaints for violation of their rights without fear of reprisal", - "values": [ - "Labour", - "Migrants" - ] - }, - { - "text": "Enhance efforts to protect the rights of persons with disabilities, thereby continuing progress already achieved in this area ", - "values": [ - "Disabilities" - ] - }, - { - "text": "Cooperate with the human rights protection bodies through the submission of its due reports to all treaty bodies ", - "values": [ - "Treaty bodies" - ] - }, - { - "text": "Improve access to justice for women through legal aid and ensure that women human rights defenders can work safely and are not hindered in their activities", - "values": [ - "Human rights defenders", - "Women's rights" - ] - }, - { - "text": "Continue its current efforts aimed at improving the fate of the Chagossians", - "values": [ - "Minorities" - ] - }, - { - "text": "Continue its national efforts to combat corruption and impunity", - "values": [ - "Corruption", - "Impunity" - ] - }, - { - "text": "Consider prioritizing measures to mitigate the impacts of the economic crisis", - "values": [ - "Development" - ] - }, - { - "text": "Promote the rights of and compensation for victims of crimes and witnesses", - "values": [ - "Justice" - ] - }, - { - "text": "Provide effective access to legal assistance and measures of protection for all victims of gender violence, including migrants with irregular migration status ", - "values": [ - "Migrants", - "Women's rights" - ] - }, - { - "text": "Move towards harmonization between national laws and the Convention on the Rights of the Child", - "values": [ - "International instruments", - "Rights of the Child" - ] - }, - { - "text": "Take effective measures to combat discrimination on any grounds, including sexual orientation and identity", - "values": [ - "Sexual Orientation and Gender Identity" - ] - }, - { - "text": "Ratify the pending core international human rights instruments, in particular CRC, ICESCR, and its OP, CEDAW and its OP as well as CRPD, and others, and ensure their due translation into the domestic legislation and review existing ratifications with a view to withdraw all reservations and declarations", - "values": [ - "International instruments" - ] - }, - { - "text": "Take appropriate measures to establish a mechanism for monitoring detention places ", - "values": [ - "Detention" - ] - }, - { - "text": "Pursue its efforts aimed at implementing the Convention against Torture and Other Cruel, Inhuman or Degrading Treatment or Punishment, as well as its Optional Protocol ", - "values": [ - "Detention", - "International instruments", - "Torture and other CID treatment" - ] - }, - { - "text": "Take the necessary measures to implement the recommendations of the Committee on the Elimination of Racial Discrimination related to setting up an effective and independent mechanism to review the compatibility of popular initiatives with the obligations of Switzerland under international human rights law", - "values": [ - "Racial discrimination", - "Treaty bodies" - ] - }, - { - "text": "Redouble efforts to increase women's representation in society and to join the Optional Protocol to the Convention on the Elimination of All Forms of Discrimination against Women.", - "values": [ - "International instruments", - "Women's rights" - ] - }, - { - "text": "Ensure that the Truth and Reconciliation Commission, as well as to the Commission on Disappearances be operational within the briefest delay and that there be no amnesty for grave violations of human rights ", - "values": [ - "Justice" - ] - }, - { - "text": "Take all necessary measures to ensure that all children are released by armed forces and armed groups, and that these children receive all the assistance necessary for their physical and psychological recovery, including special medical care for victims of sexual violence ", - "values": [ - "Rights of the Child" - ] - }, - { - "text": "Prohibit all forms of violence against children, including corporal punishment, in all settings ", - "values": [ - "Rights of the Child", - "Torture and other CID treatment" - ] - }, - { - "text": "Continue to implement initiatives such as a referral network (SafeNet) and pursue preventive measures aimed at reducing the levels of violence against women", - "values": [ - "Women's rights" - ] - }, - { - "text": "Implement the provisions of the six "Judicial Reform Packages" encompassing various rights and freedoms, in particular the freedom of expression and the media online and offline", - "values": [ - "Freedom of opinion and expression", - "Freedom of the press", - "Justice" - ] - }, - { - "text": "Continue to fight against child labour and ensure their rights, and in this respect, accept to develop a comprehensive cooperation with ILO which shall include the fight against forced labour ", - "values": [ - "International instruments", - "Labour", - "Rights of the Child" - ] - }, - { - "text": "Ensure protection and security in IDP camps. and, while safeguarding the rights to return and to restitution, adopt a policy to provide IDPs with adequate interim housing solutions.", - "values": [ - "Internally displaced persons" - ] - }, - { - "text": "Standardize anti-trafficking responses across the UK insofar as possible given the devolution of law enforcement powers, and appoint a rapporteur in each devolved authority to make critical assessments and improve the UK's overall anti-trafficking response ", - "values": [ - "Trafficking" - ] - }, - { - "text": "Strengthen measures to fight child labour within the framework of the national strategy to combat child labour", - "values": [ - "Labour", - "Rights of the Child" - ] - }, - { - "text": "Continue and complete the current process for the establishment of a national commission for the promotion and protection of human rights", - "values": [ - "National Human Rights Institution" - ] - }, - { - "text": "Continue efforts towards combating racism and hate speech against foreigners through disseminating a culture of dialogue and cooperation among religions and civilizations", - "values": [ - "Freedom of religion and belief", - "Racial discrimination" - ] - }, - { - "text": "Replace death sentences with an appropriate alternative sanction ", - "values": [ - "Death penalty" - ] - }, - { - "text": "Continue putting forward effective measures in order to eliminate discrimination against women ", - "values": [ - "Women's rights" - ] - }, - { - "text": "Sign and ratify the Optional Protocol to CAT and the International Convention for the Protection of All Persons from Enforced Disappearance ", - "values": [ - "Detention", - "Enforced disappearances", - "International instruments", - "Torture and other CID treatment" - ] - }, - { - "text": "Start the investigation of all outstanding allegations of human rights violations committed during or after the conflict and to bring perpetrators to justice in proceedings which meet international standards ", - "values": [ - "Justice" - ] - }, - { - "text": "Address the large wage gap between men and women and prohibit the termination of employment of women upon their return from maternity leave", - "values": [ - "Labour", - "Women's rights" - ] - }, - { - "text": "Accept the request of the Working Group on Enforced Disappearances to visit the country ", - "values": [ - "Enforced disappearances", - "Special procedures" - ] - }, - { - "text": "Further enhance gender equality, including by taking appropriate administrative or legal measures, as well as allocating adequate resources to empower women ", - "values": [ - "Women's rights" - ] - }, - { - "text": "Take further measures to realize universal health coverage throughout the country", - "values": [ - "Right to health" - ] - }, - { - "text": "Prohibit corporal punishment by law in all settings, including the home. ", - "values": [ - "Rights of the Child", - "Torture and other CID treatment" - ] - }, - { - "text": "Continue undertaking measures to increase the effectiveness of its legislation and to investigate all allegations of racially motivated violations of human rights for bringing those responsible to account ", - "values": [ - "Racial discrimination" - ] - }, - { - "text": "Tighten its legislation on rape, pedophilia and incest and conduct awareness campaigns on this matter in schools and in local communities", - "values": [ - "Rights of the Child", - "Women's rights" - ] - }, - { - "text": "Implement the recommendation made by the Committee on the Elimination of Racial Discrimination concerning the adoption of a clear and comprehensive definition of racial discrimination and ensure that its national legislation is made uniform in this regard", - "values": [ - "Racial discrimination", - "Treaty bodies" - ] - }, - { - "text": "Keep combating discrimination in respect of employment and occupation for this important group of people, in accordance with Ecuador's Constitution and law ", - "values": [ - "Disabilities" - ] - }, - { - "text": "Develop and implement a National Action Plan for Human Rights to further ensure systematic and comprehensive approach for the promotion and protection of human rights, with the full engagement of civil society", - "values": [ - "Civil society" - ] - }, - { - "text": "Continue the efforts of reforming the educational sector and reducing illiteracy, especially among women ", - "values": [ - "Right to education", - "Women's rights" - ] - }, - { - "text": "Sri Lanka will take necessary measures to enable the reconstitution of the Constitutional Council which will facilitate the strengthening and effective functioning of national human rights mechanisms, including the National Human Rights Commission.", - "values": [ - "National Human Rights Institution" - ] - }, - { - "text": "Provide adequate support to the victims of sexual violence, in particular through the provision of counselling services and safe places ", - "values": [ - "Rights of the Child", - "Women's rights" - ] - }, - { - "text": "Redouble efforts for the effective implementation of criminal provisions relating to acts of ethnic discrimination so as to prevent discrimination and human rights violations committed against persons belonging to minority groups", - "values": [ - "Minorities", - "Racial discrimination" - ] - }, - { - "text": "Establish a comprehensive system for recording and monitoring racist crimes committed in Austria", - "values": [ - "Racial discrimination" - ] - }, - { - "text": "Focus on human rights in general and the rights of women in particular", - "values": [ - "Women's rights" - ] - }, - { - "text": "Continue providing access to quality education without discrimination for the population of school age throughout the country ", - "values": [ - "Right to education" - ] - }, - { - "text": "Intensify its efforts to change stereotypical images and discriminatory attitudes and perceptions about the roles and responsibilities of women and men in the family and in society ", - "values": [ - "Women's rights" - ] - }, - { - "text": "Fully fund the TRCT's budget and staffing and to ensure it has sufficient powers and access to information to undertake its mandate", - "values": [ - "Justice" - ] - }, - { - "text": "Consider developing Human Rights Indicators, as suggested by the OHCHR, as an instrument that allows for a more precise and coherent evaluation of national human rights policies", - "values": [ - "Other" - ] - }, - { - "text": "Train all lecturers and teachers in inclusive education ", - "values": [ - "Right to education" - ] - }, - { - "text": "Cooperate fully with OHCHR, the Human Rights Council and its mechanisms, in particular the Commission of Inquiry", - "values": [ - "Technical assistance and cooperation", - "Treaty bodies", - "UPR process" - ] - }, - { - "text": "Continue efforts in the prevention of human trafficking, with special attention to investigation and prosecution of all cases of sale and trafficking of children", - "values": [ - "Rights of the Child", - "Trafficking" - ] - }, - { - "text": "Make sure that in the process of modernizing the social security system special attention is paid to the conformity of the adopted decisions to international human rights standards", - "values": [ - "ESC rights - general" - ] - }, - { - "text": "Continue efforts aimed at combating all forms and manifestations of hatred and discrimination, including hate crimes and hate speech on a religious basis, and strengthen mechanisms for accountability in this regard", - "values": [ - "Freedom of religion and belief", - "Racial discrimination" - ] - }, - { - "text": "Commute all of the death penalties to prison sentences and abolish, once and for all, death penalty ", - "values": [ - "Death penalty" - ] - }, - { - "text": "Positively consider and implement the recommendations presented by the Special Rapporteur on human rights defenders", - "values": [ - "Human rights defenders", - "Special procedures" - ] - }, - { - "text": "Continue to work as a matter of urgency to ensure that there are mechanisms to completely eliminate torture and extrajudicial killings, and to intensify its efforts to carry out investigations and prosecutions on extrajudicial killings and punish those responsible", - "values": [ - "Extrajudicial executions", - "Torture and other CID treatment" - ] - }, - { - "text": "Refuse any attempts to impose any values alien to the contractual and commitments of Jordan", - "values": [ - "Other" - ] - }, - { - "text": "Continue its work in upholding family as the basic social institution and in the protection of its rights", - "values": [ - "Other" - ] - }, - { - "text": "Put an end, as soon as possible, to the state of emergency and ensure that the provisions of the future anti-terrorism law scrupulously respect human rights", - "values": [ - "Counter-terrorism", - "Justice" - ] - }, - { - "text": "Continue its measures aimed at better taking into account vulnerable groups in public policies", - "values": [ - "Minorities" - ] - }, - { - "text": "Expedite efforts to enact a Juvenile Justice Act in compliance with the Convention on the Rights of the Child ", - "values": [ - "International instruments", - "Justice", - "Rights of the Child" - ] - }, - { - "text": "Set up strategies to support and strengthen the progress recently achieved in the area of food security", - "values": [ - "Right to food" - ] - }, - { - "text": "Repeal articles 475 of the Penal Code, which permits perpetrators of rape to marry their victims to evade prosecution ", - "values": [ - "Women's rights" - ] - }, - { - "text": "Intensify efforts to harmonize all legislation (including its criminal law) to the Convention on Rights of the Child (CRC) and its Optional Protocol on the sale of children, child prostitution and child pornography, extending their protection up to 18 years ", - "values": [ - "International instruments", - "Rights of the Child", - "Trafficking" - ] - }, - { - "text": "Palau pledged to extend an open standing invitation to special procedures mandate holders.", - "values": [ - "Special procedures" - ] - }, - { - "text": "Extend the moratorium on the death penalty with a view to its abolition and take immediate measures to prohibit absolutely the application of the death penalty to persons under the age of 18 years at the time of the offence, in compliance with the international legal obligations of Maldives, in conformity with the commitments made during the first universal periodic review", - "values": [ - "Death penalty", - "Rights of the Child", - "UPR process" - ] - }, - { - "text": "Continue the efforts to promote the State's activities in the field of cultural rights, and ensuring wider participation of all sectors of Venezuelan society", - "values": [ - "ESC rights - general" - ] - }, - { - "text": "Accord gender-based violence high priority ensuring the development of policies to facilitate victims' access to justice and a broad range of free services", - "values": [ - "Women's rights" - ] - }, - { - "text": "Strengthen the law enforcement authorities ", - "values": [ - "Justice" - ] - }, - { - "text": "Repeal all legislation and regulations that restrict women and girls from accessing information and advice related to their sexual and reproductive health and rights, including contraception", - "values": [ - "Right to health", - "Rights of the Child", - "Women's rights" - ] - }, - { - "text": "Become a party to the International Covenant on Civil and Political Rights and its Optional Protocols", - "values": [ - "Death penalty", - "International instruments" - ] - }, - { - "text": "Prevent slavery of agriculture workers, in particular children and women ", - "values": [ - "Rights of the Child", - "Women's rights" - ] - }, - { - "text": "Continue with the judicial reform process, including the implementation of measures to strengthen institutions and guarantee their independence ", - "values": [ - "Justice" - ] - }, - { - "text": "Fully align national criminal laws with international human rights obligations, especially in relation to the criminalization of same-sex relations", - "values": [ - "Sexual Orientation and Gender Identity" - ] - }, - { - "text": "Consider acceding to the UNESCO Convention against Discrimination in Education as a basis for its policy to improve access of girl children to school", - "values": [ - "International instruments", - "Right to education", - "Rights of the Child", - "Women's rights" - ] - }, - { - "text": "Continue efforts to strengthen institutional and legal basis for the protection of human rights", - "values": [ - "General" - ] - }, - { - "text": "Continue to apply a victim-centred approach to the fight against trafficking and consider the use of the OHCHR Recommended Principles and Guidelines on Human Rights and Human Trafficking as a reference tool", - "values": [ - "Trafficking" - ] - }, - { - "text": "Continue enhancing its role in peacekeeping operations, including providing medical services and continuing its support to capacity building in all conflict regions in the world", - "values": [ - "Other" - ] - }, - { - "text": "Continue efforts to fight human trafficking and all forms of slavery", - "values": [ - "Trafficking" - ] - }, - { - "text": "Take further steps to give constitutional recognition to indigenous peoples and ensure the protection of their human rights ", - "values": [ - "Indigenous peoples" - ] - }, - { - "text": "Continue to increase its efforts to ensure the enjoyment of socioeconomic rights by citizens ", - "values": [ - "ESC rights - general" - ] - }, - { - "text": "Investigate all attacks on journalists and members of the opposition, and take appropriate measures to fight against impunity for such crimes ", - "values": [ - "Freedom of association and peaceful assembly", - "Freedom of the press", - "Impunity" - ] - }, - { - "text": "Strengthen its advocacy measures to educate and empower women, especially those who are in rural or hard-to-reach communities", - "values": [ - "Women's rights" - ] - }, - { - "text": "Continue enacting laws and strengthen policies aimed at providing women with protection and enhancing their roles in society", - "values": [ - "Women's rights" - ] - }, - { - "text": "Finland is committed to making the UPR recommendations an integral part of the Government's comprehensive human rights policy report to be submitted to Parliament in Spring 2009. The proactive targets to be set in the report will also address these recommendations", - "values": [ - "UPR process" - ] - }, - { - "text": "Take necessary measures to ensure full enjoyment of freedom of expression, notably press freedom, and to prevent, combat and punish acts of harassment and aggression committed against journalists.", - "values": [ - "Freedom of opinion and expression", - "Freedom of the press" - ] - }, - { - "text": "Promote awareness of the National Legal Office and its services to improve confidence in the justice system and to ensure that Bulgarians have adequate legal standing before the courts", - "values": [ - "Justice" - ] - }, - { - "text": "Adopt a law on female genital mutilation and other harmful practices against women and girls, by criminalising them specifically as offences ", - "values": [ - "Rights of the Child", - "Torture and other CID treatment", - "Women's rights" - ] - }, - { - "text": "Protect its migrant workers from exploitation by ensuring that applicable laws and practices conform to international human rights standards guaranteeing migrant workers their human rights, including the right to freedom of movement", - "values": [ - "Freedom of movement", - "International instruments", - "Labour", - "Migrants" - ] - }, - { - "text": "Find an agreement as soon as possible on the visit of the Special Rapporteur on torture ", - "values": [ - "Special procedures", - "Torture and other CID treatment" - ] - }, - { - "text": "The head of delegation concluded by expressing the commitment of Nicaragua to working with United Nations bodies to follow up on the new recommendations it would receive during the second review. ", - "values": [ - "Technical assistance and cooperation", - "UPR process" - ] - }, - { - "text": "Continue implementing the recommendations resulting from the "Champions for Change" Conference on HIV/AIDS, organized by the Caribbean Community and the United Kingdom, by seeking the necessary technical assistance to this end from the international community ", - "values": [ - "HIV - Aids", - "Technical assistance and cooperation" - ] - }, - { - "text": "Continue policies aimed at ensuring the enjoyment of the rights and freedoms of persons with disabilities and access to resources and services under the Accessible IndiaCampaign", - "values": [ - "Disabilities" - ] - }, - { - "text": "Redouble its efforts to eradicate all forms of gender discrimination, particularly on issues such as marriage, adultery, rape and abortion, and guarantee the right of women to property, inheritance and unrestricted disposition of their estate", - "values": [ - "Women's rights" - ] - }, - { - "text": "Continue taking measures that favour the increase of enrolment rates in all its territory ", - "values": [ - "Right to education" - ] - }, - { - "text": "Consider signing and ratifying the Optional Protocol to the CRC on a communications procedure", - "values": [ - "International instruments", - "Rights of the Child" - ] - }, - { - "text": "Continue to combat racial and ethnic hatred and to ensure that manifestations of racial, ethnic and religious hatred are promptly investigated and prosecuted.", - "values": [ - "Freedom of religion and belief", - "Racial discrimination" - ] - }, - { - "text": "Pursue efforts to promote and protect the rights of women through the implementation of the National Strategy for Women", - "values": [ - "Women's rights" - ] - }, - { - "text": "Closely monitor developments relating to extreme right and racist movements, including skinhead groups, and reinforce efforts to counter the dissemination of racist and xenophobic propaganda by a section of the population through the Internet", - "values": [ - "Racial discrimination" - ] - }, - { - "text": "Consider establishing a National Human Rights Institution in conformity with the Paris Principles", - "values": [ - "National Human Rights Institution" - ] - }, - { - "text": "Continue incorporating international human rights norms into the national legislation", - "values": [ - "International instruments" - ] - }, - { - "text": "Introduce, within its overall security policy, further measures to secure life of confessional groups and indigenous people, and further pursue its policy of involving the representatives of the latter in new political and social structure of Iraq", - "values": [ - "Freedom of religion and belief", - "Indigenous peoples" - ] - }, - { - "text": "Ensure the enjoyment of all human rights by migrants, and further strengthen efforts aiming at their regularization ", - "values": [ - "Migrants" - ] - }, - { - "text": "Introduce necessary reforms in the education system for reducing school dropout rates, particularly in secondary education", - "values": [ - "Right to education" - ] - }, - { - "text": "Take steps to strengthen the enforcement of existing laws criminalizing rape and domestic violence, including by vigorously investigating and prosecuting violence against women, and providing targeted training and capacity-building to law enforcement officials", - "values": [ - "Rights of the Child", - "Women's rights" - ] - }, - { - "text": "Ratify the International Convention for the Protection of All Persons from Enforced Disappearance, the Optional Protocol to the Convention against Torture and Other Cruel, Inhuman or Degrading Treatment or Punishment and the Convention against Discrimination in Education", - "values": [ - "Detention", - "Enforced disappearances", - "International instruments", - "Right to education", - "Torture and other CID treatment" - ] - }, - { - "text": "Take the necessary measures to establish completely free primary education", - "values": [ - "Right to education" - ] - }, - { - "text": "Ratify the International Convention for the Protection of All Persons from Enforced Disappearance (CPED), the Rome Statute of the International Criminal Court (ICC), the Optional Protocol to CEDAW, the Optional Protocol to the Convention on the Rights of Persons with Disabilities (OP- CRPD) and the Optional Protocol to CRC on the involvement of children in armed conflict (OP-CRC-AC)", - "values": [ - "Disabilities", - "Enforced disappearances", - "International instruments", - "Justice", - "Rights of the Child", - "Women's rights" - ] - }, - { - "text": "Review all relevant legislation so as to eliminate all forms of discrimination against or marginalization of women.", - "values": [ - "Women's rights" - ] - }, - { - "text": "Eliminate the crime of defamation from the criminal code in order that these facts are examined under the civil code", - "values": [ - "Freedom of opinion and expression" - ] - }, - { - "text": "Continue its efforts to ratify CPED, ICRMW and OP-CAT ", - "values": [ - "Detention", - "Enforced disappearances", - "International instruments", - "Labour", - "Migrants", - "Torture and other CID treatment" - ] - }, - { - "text": "Continue its efforts to increase access to health services and strengthen the delivery of high-quality health care", - "values": [ - "Right to health" - ] - }, - { - "text": "Proceed in the development of effective tools to measure the impact of existing schemes for human rights education, both in the short and long term", - "values": [ - "Human rights education and training" - ] - }, - { - "text": "Respond positively to the request for an invitation of the Special Rapporteur on extrajudicial, summary or arbitrary executions to visit the country", - "values": [ - "Extrajudicial executions", - "Special procedures" - ] - }, - { - "text": "Continue its efforts to eliminate discrimination against ethnic minorities, refugees and immigrants", - "values": [ - "Asylum-seekers - refugees", - "Migrants", - "Minorities", - "Racial discrimination" - ] - }, - { - "text": "Take further steps to fight human trafficking through a comprehensive study on the causes and extent of trafficking in persons taking into account the origin, transit and destination countries.", - "values": [ - "Trafficking" - ] - }, - { - "text": "Consider the possibility of eliminating forced marriage ", - "values": [ - "Rights of the Child", - "Women's rights" - ] - }, - { - "text": "Consider updating the National Plan on combating human trafficking", - "values": [ - "Trafficking" - ] - }, - { - "text": "Make efforts to adopt legislation to prevent incitement to religious and racial hatred ", - "values": [ - "Freedom of religion and belief", - "Racial discrimination" - ] - }, - { - "text": "Provide protection of the family as the natural and fundamental unit of the society", - "values": [ - "Other" - ] - }, - { - "text": "Take the necessary steps, firstly, to better protect all victims of xenophobic discrimination, especially Islamophobia, and secondly, to conduct awareness campaigns to counteract amalgams between migrants, Muslims and terrorism", - "values": [ - "Counter-terrorism", - "Freedom of religion and belief", - "Migrants", - "Racial discrimination" - ] - }, - { - "text": "Re-establish a moratorium on the application of the death penalty with a view to its abolition", - "values": [ - "Death penalty" - ] - }, - { - "text": "Continue to strengthen measures to promote tolerance and respect for cultural diversity and to counter prejudice, stereotypes, discrimination, racism and Islamophobia", - "values": [ - "Freedom of religion and belief", - "Racial discrimination" - ] - }, - { - "text": "Immediately halt all violations of international human rights and humanitarian law by the security forces ", - "values": [ - "Human rights violations by state agents", - "International humanitarian law", - "International instruments" - ] - }, - { - "text": "Ensure that its national legislation is in conformity with the obligation set in the article 27 of ICCPR with the objective of providing national minorities with the possibility to use their mother tongue without obstacles, as well as education in their mother tongue ", - "values": [ - "International instruments", - "Minorities", - "Right to education" - ] - }, - { - "text": "End all public and extrajudicial executions and introduce a moratorium on the death penalty with a view to its abolition ", - "values": [ - "Death penalty", - "Extrajudicial executions" - ] - }, - { - "text": "Continue its efforts to implement the national human rights action plan", - "values": [ - "General" - ] - }, - { - "text": "Carry out national programs to disseminate and create awareness among women in the country, related to all the aspects regulated by CEDAW ", - "values": [ - "Human rights education and training", - "International instruments", - "Women's rights" - ] - }, - { - "text": "Adhere to the 1951 Convention on the Status of the Refugees and its additional Protocols", - "values": [ - "Asylum-seekers - refugees", - "International instruments" - ] - }, - { - "text": "Strengthen its institutional framework to allow it to defend its sovereignty and protect the human rights of its people", - "values": [ - "Other" - ] - }, - { - "text": "Continue advancing in the reduction of poverty and inequality ", - "values": [ - "Poverty" - ] - }, - { - "text": "Take necessary measures to ensure the protection of the rights of all children, and specially to resolve the problem of the so-called street children ensuring that their basic needs are covered including education, health, housing and food, and correspond to a society that is rich and developed", - "values": [ - "Rights of the Child" - ] - }, - { - "text": "End the practice of publishing in the media and on the Internet materials inciting racial and ethnic intolerance", - "values": [ - "Racial discrimination" - ] - }, - { - "text": "Continue to respect its national and international obligations with regard to a ban on the recruitment of children by the armed forces, including by the holding of awareness-raising campaigns ", - "values": [ - "Human rights education and training", - "Rights of the Child" - ] - }, - { - "text": "Address the overcrowding of prisons, including through actions to minimize long pretrial detention periods", - "values": [ - "Detention" - ] - }, - { - "text": "Draw up plans for combating the threat of HIV-AIDS ", - "values": [ - "HIV - Aids" - ] - }, - { - "text": "Accelerate the functioning of the National Human Rights Commission making it in conformity with the Paris Principles", - "values": [ - "National Human Rights Institution" - ] - }, - { - "text": "Adopt an immediate and effective moratorium on executions ", - "values": [ - "Death penalty" - ] - }, - { - "text": "Ratify CEDAW-OP, as well as the Convention on the Prevention and Punishment of the Crime of Genocide, the Palermo Protocol and the optional protocols to CRC.", - "values": [ - "International instruments", - "Justice", - "Rights of the Child", - "Trafficking", - "Women's rights" - ] - }, - { - "text": "Set a clear timetable for the establishment or designation of national mechanisms and grant adequate resources for the effective functioning of these mechanisms, following the recent ratification of the Optional Protocol to the Convention against Torture and Other Cruel, Inhuman or Degrading Treatment or Punishment", - "values": [ - "Detention", - "International instruments", - "Torture and other CID treatment" - ] - }, - { - "text": "Take concrete measures to promote tolerance and diversity in society and train law enforcement officials in detection and prosecution of hate speech both online and offline ", - "values": [ - "Racial discrimination" - ] - }, - { - "text": "Become party to the International Convention on the Protection of the Rights of All Migrant Workers and Members of Their Families and to the ILO Indigenous and Tribal Peoples Convention, 1989 (no. 169) ", - "values": [ - "Indigenous peoples", - "International instruments", - "Labour", - "Migrants" - ] - }, - { - "text": "Continue determined efforts to improve national legislation in the area of the promotion and protection of the rights and freedoms of its citizens", - "values": [ - "General" - ] - }, - { - "text": "Enact as a matter of urgency the Freedom of Information Bill", - "values": [ - "Freedom of opinion and expression" - ] - }, - { - "text": "Address harsh living conditions in immigration detention centres", - "values": [ - "Detention", - "Migrants" - ] - }, - { - "text": "Continue its active engagement with the human rights mechanisms of United Nations for the protection and promotion of human rights", - "values": [ - "Special procedures", - "Treaty bodies", - "UPR process" - ] - }, - { - "text": "Carry out its efforts to end the use or recruitment of children by armed groups or forces, particularly in cooperation with the United Nations ", - "values": [ - "International humanitarian law", - "Rights of the Child", - "Technical assistance and cooperation" - ] - }, - { - "text": "Establish a Constitutional Convention on article 40.3.3 of the Constitution with the aim to remove all restrictive legislation on abortion", - "values": [ - "Women's rights" - ] - }, - { - "text": "Ensure the effective implementation of the National Action Plan against Trafficking and to provide the necessary assistance to the victims of trafficking", - "values": [ - "Trafficking" - ] - }, - { - "text": "Report on the consultation of the civil society in the implementation of the outcome of the review in the next round of the universal periodic review.", - "values": [ - "Civil society", - "UPR process" - ] - }, - { - "text": "Respect the rights of all persons to due process of law, particularly the presumption of innocence", - "values": [ - "Justice" - ] - }, - { - "text": "Implement legislation which provides for the investigation of violence against women, and the prosecution and punishment of the perpetrators of such violence", - "values": [ - "Women's rights" - ] - }, - { - "text": "Consolidate the process of national healing with a view to achieving long-term political stability", - "values": [ - "Other" - ] - }, - { - "text": "Investigate and punish in an exemplary fashion cases of disproportionate use of force, racial violence and ill-treatment by law enforcement officers and effectively address racism, discrimination and incitement to racial and religious hatred", - "values": [ - "Freedom of religion and belief", - "Human rights violations by state agents", - "Racial discrimination", - "Torture and other CID treatment" - ] - }, - { - "text": "Take appropriate measures in combating racist, islamophobic and xenophobic attitudes in the country, particularly against members of the Muslim community, and also adopt a comprehensive anti-discrimination law to be enforced uniformly throughout the Confederation", - "values": [ - "Freedom of religion and belief", - "Minorities", - "Racial discrimination" - ] - }, - { - "text": "Enact legislation related to CEDAW, as no corresponding domestic law has so far been enacted ", - "values": [ - "International instruments", - "Women's rights" - ] - }, - { - "text": "Continue the procedures of ratifying the Convention on the Rights of Persons with Disabilities ", - "values": [ - "Disabilities", - "International instruments" - ] - }, - { - "text": "Accelerate reforms within the justice sector in order to improve the conditions of judges and strengthen the independence of the judiciary", - "values": [ - "Justice" - ] - }, - { - "text": "Better implement laws aimed at eliminating all forms of violence against women as recommended by CESCR ", - "values": [ - "Treaty bodies", - "Women's rights" - ] - }, - { - "text": "Ratify, among others, the Convention on the Rights of the Child, the Convention on the Rights of Persons with Disabilities, the International Convention on the Protection of the Rights of All Migrant Workers and Members of their Families / Accede to the American Convention on Human Rights and recognize the competence of the Inter-American Court of Human Rights", - "values": [ - "Disabilities", - "International instruments", - "Labour", - "Migrants", - "Rights of the Child" - ] - }, - { - "text": "Allocate the resources necessary for the realization of the national strategies and plans for the protection of the rights of the child, including for the full identification and monitoring of children in situations of vulnerability and the protection of their interests", - "values": [ - "Rights of the Child" - ] - }, - { - "text": "Abolish the article in the penal code which allows rapists of underage girls to escape trial by marrying their victims", - "values": [ - "Justice", - "Rights of the Child", - "Women's rights" - ] - }, - { - "text": "Without delay, take measures to put an end to extrajudicial, summary or arbitrary executions and prosecute the perpetrators of these acts", - "values": [ - "Extrajudicial executions" - ] - }, - { - "text": "Continue its efforts with a view to ensuring the protection and promotion of the rights of foreigners working in Jordan", - "values": [ - "Labour", - "Migrants" - ] - }, - { - "text": "Accelerate efforts for establishment of Truth and Reconciliation Commission", - "values": [ - "Justice" - ] - }, - { - "text": "Repeal laws restricting the formation of a free and independent press, including Law No. 76 of 1972, Law No. 120 of 1972 and Law No. 75 of 1973 ", - "values": [ - "Freedom of the press" - ] - }, - { - "text": "Continue to modernize its birth registration system and improve access to remote locations, and step up efforts to ensure free and universal birth registration", - "values": [ - "Rights of the Child", - "Statelessness and the right to nationality" - ] - }, - { - "text": "Consider adopting legislation that fully incorporates the principle of equality of women and men, as well as a definition and prohibition of discrimination on the basis of sex and gender in the public and private spheres", - "values": [ - "Women's rights" - ] - }, - { - "text": "Continue its efforts in the field of economic social and cultural rights.", - "values": [ - "ESC rights - general" - ] - }, - { - "text": "Make a concerted effort to increase the number of households with access to piped water, sanitation and electricity, with appropriate assistance from bilateral, regional and international partners", - "values": [ - "Right to water and sanitation", - "Technical assistance and cooperation" - ] - }, - { - "text": "Continue implementing the Government's reform policy and action plans to address socio-economic inequality in order to achieve further progress to improve the situation of human rights in the country especially in an effort to achieve most of the targets of the MDGs, including poverty reduction, the control of HIV and the fight against human trafficking ", - "values": [ - "HIV - Aids", - "Poverty", - "Trafficking" - ] - }, - { - "text": "Examine the possibility of initiating an assessment of all existing mechanisms for the promotion and protection of human rights with a view to strengthening them as needed ", - "values": [ - "General" - ] - }, - { - "text": "Consider the adoption of an explicit provision ensuring that human rights treaties that have been ratified have legal effect as part of the national law", - "values": [ - "International instruments" - ] - }, - { - "text": "Take steps to remove the guardianship system, when it results in a limitation of the full exercise and enjoyment of the rights and freedom of women", - "values": [ - "Women's rights" - ] - }, - { - "text": "Encourage greater participation of indigenous peoples through the elaboration of a law regulating the right of these peoples to prior consultation", - "values": [ - "Indigenous peoples" - ] - }, - { - "text": "Take the necessary measures to combat domestic violence, including the creation of shelters for victims", - "values": [ - "Rights of the Child", - "Women's rights" - ] - }, - { - "text": "Ratify the Second Optional Protocol to the International Covenant on Civil and Political Rights and therefore proceed with the abolishment of the death penalty once and for all ", - "values": [ - "Death penalty", - "International instruments" - ] - }, - { - "text": "Ensure the effective implementation of the Marriage, Divorce and Family Relations Bill in order to prevent the prevalence of child marriage", - "values": [ - "Rights of the Child", - "Women's rights" - ] - }, - { - "text": "Increase efforts aimed at combating intersectional discrimination against women and girls based on their belonging to ethnic minority groups or on gender", - "values": [ - "Minorities", - "Racial discrimination", - "Rights of the Child", - "Women's rights" - ] - }, - { - "text": "Conclude its procedure for the ratification of the International Convention for the Protection of All Persons from Enforced Disappearance", - "values": [ - "Enforced disappearances", - "International instruments" - ] - }, - { - "text": "Pursue its commitment to the ratification of international conventions by ratifying fundamental instruments, in particular the International Covenant on Economic, Social and Cultural Rights, the International Convention on the Protection of All Migrant Workers and Members of Their Families", - "values": [ - "ESC rights - general", - "International instruments", - "Labour", - "Migrants" - ] - }, - { - "text": "Consider the decriminalization of defamation and violation of the honour and dignity of public officials, and the abolishment of criminal penalties for libel", - "values": [ - "Other" - ] - }, - { - "text": "Adopt a law specifically classifying the various manifestations of racial discrimination as punishable acts", - "values": [ - "Racial discrimination" - ] - }, - { - "text": "Strengthen the cooperation with the relevant human rights stakeholders including the Human Rights Council", - "values": [ - "Special procedures", - "Treaty bodies", - "UPR process" - ] - }, - { - "text": "Continue to support initiatives promoting economic rights", - "values": [ - "ESC rights - general" - ] - }, - { - "text": "Take legislative measures to prohibit all forms of corporal punishment of children in all settings", - "values": [ - "Rights of the Child", - "Torture and other CID treatment" - ] - }, - { - "text": "Investigate and deal with complaints in relation to slavery and similar treatments, and protect children from these practices", - "values": [ - "Rights of the Child" - ] - }, - { - "text": "Provide the Ombudsperson with sufficient resources it needs, as a critical institution to monitor and oversee the respect for human rights", - "values": [ - "National Human Rights Institution" - ] - }, - { - "text": "Adopt the necessary measures to prevent abuses against migrant workers and respect for their rights", - "values": [ - "Labour", - "Migrants" - ] - }, - { - "text": "Improve access to drinking water and sanitation through a national action plan", - "values": [ - "Right to water and sanitation" - ] - }, - { - "text": "Continue to take effective measures in favour of youth employment ", - "values": [ - "Development" - ] - }, - { - "text": "Lift restrictions on the right to freedom of assembly and freedom of information that are contrary to the ICCPR ", - "values": [ - "Freedom of association and peaceful assembly", - "International instruments" - ] - }, - { - "text": "Establish the necessary conditions to register boys and girls at birth, including ensuring free birth certificates", - "values": [ - "Rights of the Child" - ] - }, - { - "text": "Revise the Family Code and adopt and implement other appropriate measures to prevent marriages of minors ", - "values": [ - "Rights of the Child" - ] - }, - { - "text": "Ratify the Convention [Elimination of All Forms of Racial Discrimination] at the earliest opportunity", - "values": [ - "International instruments", - "Racial discrimination" - ] - }, - { - "text": "Accelerate efforts for the establishment of a national human rights institution in conformity with the Paris Principles", - "values": [ - "National Human Rights Institution" - ] - }, - { - "text": "Accede to CAT in a timely manner.", - "values": [ - "International instruments", - "Torture and other CID treatment" - ] - }, - { - "text": "Consider solving the problem of ownership of land belonging to the Catholic Church and the Orthodox Church", - "values": [ - "Right to land" - ] - }, - { - "text": "Ensure the law relating to the punishment of the crime of "genocide ideology" is not manipulated or interpreted in a manner that restricts the responsible exercise of the freedom of opinion, expression or association ", - "values": [ - "Freedom of association and peaceful assembly", - "Freedom of opinion and expression", - "Justice" - ] - }, - { - "text": "Consider the development of a national action plan for the promotion and protection of human rights", - "values": [ - "General" - ] - }, - { - "text": "Commit resources to enforce existing legislation to protect women, and equip courts and police to fully protect the rights of all women and enhance their access to justice, any new legislation should protect those rights.", - "values": [ - "Women's rights" - ] - }, - { - "text": "Continue efforts to strengthen the independence of the National Commission for Human Rights and Freedoms and provide it with the necessary financial and human resources ", - "values": [ - "National Human Rights Institution" - ] - }, - { - "text": "Continue its engagement with the United Nations Human Rights Office, as well as the human rights mechanisms and procedures for further enhancement of meaningful benefit", - "values": [ - "Special procedures", - "Technical assistance and cooperation", - "Treaty bodies", - "UPR process" - ] - }, - { - "text": "Adopt further measures, with reference to the principle of non-refoulement, to ensure granting possible requests of the Committee against Torture for interim measures in individual cases aimed at preventing the breach of provisions of the Convention against Torture.", - "values": [ - "Torture and other CID treatment", - "Treaty bodies" - ] - }, - { - "text": "Continue with efforts for mainstreaming of gender equality into laws and policies and assign sufficient resources for the implementation of the Law on comprehensive protection measures against gender-based violence", - "values": [ - "Women's rights" - ] - }, - { - "text": "Ensure the effective implementation of the National Plan for the Integration of Persons with Disabilities, especially regarding access to education and employment", - "values": [ - "Disabilities", - "Labour", - "Right to education" - ] - }, - { - "text": "Ratify ICERD, CAT and its Optional Protocol, CPED, and the Rome Statute of the International Criminal Court (ICC)", - "values": [ - "Detention", - "Enforced disappearances", - "International instruments", - "Justice", - "Racial discrimination", - "Torture and other CID treatment" - ] - }, - { - "text": "Become a party to the International Convention for the Protection of All Persons from Enforced Disappearance at an early stage", - "values": [ - "Enforced disappearances", - "International instruments" - ] - }, - { - "text": "Continue to focus political attention and commitment, as well as the necessary administrative resources in Bulgaria, on the crucial issue of promoting efficiency and consistency throughout the justice system, and not least the accountability of the judiciary", - "values": [ - "Justice" - ] - }, - { - "text": "Ensure an increased normative and institutional control of law enforcement offices and security forces personnel with a view to avoid cases of excessive use of force and ill treatment of detainees ", - "values": [ - "Detention", - "Human rights violations by state agents", - "Torture and other CID treatment" - ] - }, - { - "text": "Continue the implementation of the National Plan against gender violence 2016-2021", - "values": [ - "Women's rights" - ] - }, - { - "text": "Initiate constitutional and legislative reforms aiming at the full abolition of the death penalty", - "values": [ - "Death penalty" - ] - }, - { - "text": "Finalize the process of adoption of the draft law on gender-based violence, ensuring its effective implementation", - "values": [ - "Women's rights" - ] - }, - { - "text": "Continue efforts in combating the HIV/AIDS epidemic in the country", - "values": [ - "HIV - Aids" - ] - }, - { - "text": "Develop a strategy to combat malnutrition ", - "values": [ - "Right to food" - ] - }, - { - "text": "Prepare a comprehensive national action plan defining responsibilities, benchmarks and indicators to measure progress achieved", - "values": [ - "General" - ] - }, - { - "text": "Increase efforts to combat discrimination and violence against women and impunity for such crimes, through national institutions, including the ISDEMU and the Secretariat for Social Inclusion", - "values": [ - "Impunity", - "Women's rights" - ] - }, - { - "text": "Allocate the necessary human, technical and financial resources for the implementation of the national plan of action for the prevention and eradication of violence against women and assistance to victims for the period 2017-2019", - "values": [ - "Women's rights" - ] - }, - { - "text": "Widen the scope of international obligations through accession to the remaining international treaties, such as the International Convention for the Protection of All Persons from Enforced Disappearance ", - "values": [ - "Enforced disappearances", - "International instruments" - ] - }, - { - "text": "Continue endeavours aimed at combating domestic violence and ensure that all reports of domestic violence are thoroughly investigated and perpetrators are brought to justice in accordance with the law", - "values": [ - "Rights of the Child", - "Women's rights" - ] - }, - { - "text": "Carry out prompt, independent and thorough investigation of the allegations of torture and excessive use of force by State officials as well as other human rights violation, including sexual abuses", - "values": [ - "Human rights violations by state agents", - "Torture and other CID treatment" - ] - }, - { - "text": "Continue to strengthen the judicial system, in particular the independence of the judiciary, access to justice, access to necessary infrastructure and resources and the fight against impunity", - "values": [ - "Impunity", - "Justice" - ] - }, - { - "text": "Develop a national action plan to combat discrimination in consultation with civil society ", - "values": [ - "Civil society" - ] - }, - { - "text": "Continue to implement the National Policy on Justice and Human Rights", - "values": [ - "Justice" - ] - }, - { - "text": "Give priority to the activities on promotion and protection of trade unions freedom with a view to continue strengthening free and independent trade unions ", - "values": [ - "Labour" - ] - }, - { - "text": "Take all steps necessary to accelerate the ratification process of ICPPED", - "values": [ - "Enforced disappearances", - "International instruments" - ] - }, - { - "text": "Consolidate its efforts towards improving all aspects of education and health in accordance with its National Action Plan ", - "values": [ - "Right to education", - "Right to health" - ] - }, - { - "text": "Ratify the International Convention on the Elimination of All Forms of Racial Discrimination ", - "values": [ - "International instruments", - "Racial discrimination" - ] - }, - { - "text": "Foster the human rights culture within the society with a view to further promoting and protecting human rights ", - "values": [ - "General" - ] - }, - { - "text": "Step up efforts directed at fighting discrimination based on gender, particularly in order to end discriminatory treatment affecting children born to a foreign father married to a Malagasy women", - "values": [ - "Rights of the Child", - "Women's rights" - ] - }, - { - "text": "Amend provisions of the Personal Status Code that discriminate against married women, in particular with regard to property, polygamy and repudiation, and repeal all discriminatory measures against women within the Mauritanian Nationality Code, as recommended by the Committee on the Elimination of Discrimination against Women ", - "values": [ - "Treaty bodies", - "Women's rights" - ] - }, - { - "text": "Continue its efforts to implement the National HIV and AIDS Strategic Plan", - "values": [ - "HIV - Aids" - ] - }, - { - "text": "Urgently reform legislation on the registration of political parties so as to favour the creation of a political sphere that guarantees pluralism for all political parties, further to articles 25 and 26 of ICCPR", - "values": [ - "Elections", - "Freedom of association and peaceful assembly", - "International instruments" - ] - }, - { - "text": "Efforts be further accelerated to clear the backlog of pending cases in the Courts and that there should be early conclusion in the study now underway for strengthening the judicial system ", - "values": [ - "Justice" - ] - }, - { - "text": "Release immediately all Palestinian, Syrian and other Arab political detainees, and allow representatives of humanitarian organisations to visit them and deal with their situation", - "values": [ - "Detention", - "Freedom of opinion and expression" - ] - }, - { - "text": "Consolidate progress made in the field of human rights education and envisage setting up, with the assistance of the international community, national human rights education and training programmes, particularly training and awareness-raising of security forces, law enforcement officials and members of the judiciary ", - "values": [ - "Human rights education and training", - "Justice", - "Technical assistance and cooperation" - ] - }, - { - "text": "Intensify efforts aimed at implementing recommendations of treaty bodies and special procedures including the Committee on the Elimination of Discrimination against Women, the Committee on the Rights of the Child, the Special Rapporteur on contemporary forms of racism, racial discrimination, xenophobia and related intolerance and the Working Group on Arbitrary Detention ", - "values": [ - "Detention", - "Racial discrimination", - "Rights of the Child", - "Treaty bodies", - "Women's rights" - ] - }, - { - "text": "Fight against disparities among cantons when it comes to the implementation of regulations favouring or protecting human rights", - "values": [ - "General" - ] - }, - { - "text": "Continue efforts with a view to fully tackling the problem of discrimination against minority groups.", - "values": [ - "Minorities" - ] - }, - { - "text": "Strengthen efforts to combat family violence against women and children with a particular focus on indigenous communities ", - "values": [ - "Indigenous peoples", - "Rights of the Child", - "Women's rights" - ] - }, - { - "text": "Implement Proclamation No. 82/1995, limiting national service obligations and cease the practice of obliging citizens to serve in an armed civilian militia ", - "values": [ - "CP rights - general" - ] - }, - { - "text": "Strengthen the efforts to ensure that the conditions in detention centres meet international standards", - "values": [ - "Detention" - ] - }, - { - "text": "Continue increasing public investment in education and continue its efforts to implement the strategies of educational inclusion, paying special attention to areas with difficult access and to children", - "values": [ - "Right to education" - ] - }, - { - "text": "Take further measures to strengthen the judicial system and to increase accountability for human rights violations, including by ensuring the investigation and prosecution of these crimes ", - "values": [ - "Justice" - ] - }, - { - "text": "Set up an anti-trafficking public campaign and take measures to protect victims and give them the necessary legal and psycho-social assistance and societal reintegration, and indicate the needs for technical assistance and capacity-building to the international community.", - "values": [ - "Human rights education and training", - "Technical assistance and cooperation", - "Trafficking" - ] - }, - { - "text": "Ratify both the International Covenant on Economic, Social and Cultural Rights and the International Covenant on Civil and Political Rights ", - "values": [ - "CP rights - general", - "ESC rights - general", - "International instruments" - ] - }, - { - "text": "Consider aligning its domestic legislations and enacting new laws, as appropriate, in order to fully implement its human rights obligations, particularly those relating to combating trafficking in persons, especially women, girls and children", - "values": [ - "Rights of the Child", - "Trafficking", - "Women's rights" - ] - }, - { - "text": "That the Federal authorities take a closer interest in ensuring that the concerns of irregular migration are handled at the cantonal levels with similar empathy, in a manner consistent with the spirit of international human rights and humanitarian law", - "values": [ - "International humanitarian law", - "International instruments", - "Migrants" - ] - }, - { - "text": "Implement the necessary policies to encourage women to participate in political and public life", - "values": [ - "Women's rights" - ] - }, - { - "text": "Execute fully the judgement of the Inter-American Court of Human Rights regarding logging and mining concessions in the territory of the Saramaka people and enshrine land rights of indigenous and Maroon groups in the Surinamese legal framework ", - "values": [ - "Business and human rights", - "Indigenous peoples", - "Right to land" - ] - }, - { - "text": "Consolidate the fight against violence against women and against all forms of discrimination", - "values": [ - "Women's rights" - ] - }, - { - "text": "Ratify the Convention on the Rights of Persons with Disabilities at the earliest possible time/as soon as possible", - "values": [ - "Disabilities", - "International instruments" - ] - }, - { - "text": "Establish an independent human rights institution which fully complies with the Paris Principles ", - "values": [ - "National Human Rights Institution" - ] - }, - { - "text": "Continue its efforts with a view to the prevention and elimination of trafficking in human beings ", - "values": [ - "Trafficking" - ] - }, - { - "text": "The Government of Kenya is committed to reducing hunger and malnutrition.", - "values": [ - "Right to food" - ] - }, - { - "text": "Strengthen the role of the Inter-Ministerial Committee on Human Rights to allow for the adapting of human rights policies to meet the national concerns in a changing global economic and social environment", - "values": [ - "General" - ] - }, - { - "text": "Continue its efforts to implement the country\u2019s national development plan", - "values": [ - "Development" - ] - }, - { - "text": "Adopt an anti-trafficking law to protect and assist victims of such criminal and clandestine activities ", - "values": [ - "Trafficking" - ] - }, - { - "text": "Fully guarantee the right of freedom of religion or belief, to ensure the protection of all religious groups and minorities and to re-establish a legal framework for the enhancement of this right", - "values": [ - "Freedom of religion and belief", - "Minorities" - ] - }, - { - "text": "Continue its efforts to strengthen national reconciliation and national dialogue", - "values": [ - "Justice" - ] - }, - { - "text": "Effectively implement the national action plan on human rights to promote and protect the most vulnerable groups including women, children and persons with disabilities", - "values": [ - "Disabilities", - "Rights of the Child", - "Women's rights" - ] - }, - { - "text": "Strengthen efforts to effectively implement and enforce the Family Protection Act and other measures against domestic violence and initiate an awareness-raising campaign against this form of violence", - "values": [ - "Human rights education and training", - "Rights of the Child", - "Women's rights" - ] - }, - { - "text": "Formally establish a moratorium on use of the death penalty with a view to abolition", - "values": [ - "Death penalty" - ] - }, - { - "text": "Implement further policies to ensure gender equality and the promotion of the rights of women and children throughout society ", - "values": [ - "Rights of the Child", - "Women's rights" - ] - }, - { - "text": "Abolish all provisions in the Penal Code allowing capital punishment, and declare a moratorium on all executions ", - "values": [ - "Death penalty" - ] - }, - { - "text": "Continue efforts to monitor the cotton harvest in order to prevent forced labour and to take law enforcement efforts against trafficking ", - "values": [ - "Labour", - "Trafficking" - ] - }, - { - "text": "Organise public awareness-raising campaigns, especially among women, on Senegal's law on reproductive health", - "values": [ - "Right to health", - "Women's rights" - ] - }, - { - "text": "Facilitate as soon as possible the visits requested by the special procedures of the Human Rights Council", - "values": [ - "Special procedures" - ] - }, - { - "text": "Continue to play a leading role in the promotion and protection of the rights of migrant workers ", - "values": [ - "Labour", - "Migrants" - ] - }, - { - "text": "Guarantee access to justice for victims of sexual violence by ensuring the effective implementation of laws on the protection of women ", - "values": [ - "Women's rights" - ] - }, - { - "text": "Define ill-treatment in the national legislation ", - "values": [ - "Torture and other CID treatment" - ] - }, - { - "text": "Consider the possibility of ratifying the Optional Protocol to the Convention against Torture and other cruel, inhuman or degrading treatment ", - "values": [ - "Detention", - "International instruments", - "Torture and other CID treatment" - ] - }, - { - "text": "Improve maternity care services especially in rural areas and work to increase the percentage of women who give birth in hospitals and to decrease maternal mortality rate during birth", - "values": [ - "Right to health", - "Women's rights" - ] - }, - { - "text": "Consider ratifying the ICERD", - "values": [ - "International instruments", - "Racial discrimination" - ] - }, - { - "text": "Strengthen the concept of equality between the sexes and nondiscrimination, and open up possibilities for women to participate in public life and have access to high-level positions in leadership and administrative posts", - "values": [ - "Women's rights" - ] - }, - { - "text": "Consider the accession of the International Convention on the Protection of the Rights of All Migrants Workers and Members of their families", - "values": [ - "International instruments", - "Labour", - "Migrants" - ] - }, - { - "text": "Take further measures to improve conditions in the juvenile detention centres and further structural measures to promote rehabilitation of minors in conflict with the law and prepare them for integration into the society.", - "values": [ - "Detention", - "Rights of the Child" - ] - }, - { - "text": "Boost activities and strategies aimed at achieving all Millennium Development Goals, especially those related to the rights to education and health care and the rights of vulnerable groups ", - "values": [ - "Right to education", - "Right to health" - ] - }, - { - "text": "The Government of Bosnia and Herzegovina and the entity Governments join forces and amend the constitution in order to ensure the full political participation of all citizens at all levels of governance, regardless of their national and ethnic origin, and take further steps towards the implementation of the Sejdic and Finci decision of the European Court of Human Rights, including by establishing an implementation timeline", - "values": [ - "Minorities" - ] - }, - { - "text": "Ratify the Protocol to Prevent, Suppress and Punish Trafficking in Persons, Especially Women and Children, supplementing the United Nations Convention against Transnational Organized Crimes ", - "values": [ - "International instruments", - "Trafficking" - ] - }, - { - "text": "Establish an independent human rights institution in conformity with the Paris Principles ", - "values": [ - "National Human Rights Institution" - ] - }, - { - "text": "Develop a national integrated human rights plan in accordance with the Vienna Declaration and Programme of Action", - "values": [ - "General" - ] - }, - { - "text": "Eliminate detention facilities known as "safe houses" ", - "values": [ - "Detention" - ] - }, - { - "text": "Encourage the Government to ensure prompt and independent investigations and accountability for any violations of human rights as well as adequate compensation for the victims thereof ", - "values": [ - "Justice" - ] - }, - { - "text": "Take measures to accelerate the increase in women's political participation at all levels of political and public life, particularly in Parliament and in the foreign services ", - "values": [ - "Women's rights" - ] - }, - { - "text": "Enact comprehensive anti-discrimination laws, especially on the basis of race, gender and HIV/AIDS status", - "values": [ - "HIV - Aids", - "Racial discrimination", - "Women's rights" - ] - }, - { - "text": "Take robust measures to promote gender equality and safeguard the rights of women and girls", - "values": [ - "Rights of the Child", - "Women's rights" - ] - }, - { - "text": "Create specific protection institutions that provide a voice and protection for the integration and development of refugees and asylum seekers", - "values": [ - "Asylum-seekers - refugees" - ] - }, - { - "text": "Implement the Protocol on fight against trafficking in human beings of the Ministry of Justice as well as adopt the new national strategy to prevent and combat trafficking in human being and to protect victims", - "values": [ - "Justice", - "Trafficking" - ] - }, - { - "text": "Adopt effective measures in law and practice to eradicate all forms of discrimination, in particular on the basis of religion or belief", - "values": [ - "Freedom of religion and belief" - ] - }, - { - "text": "Step up efforts towards respecting the principle of interdependence of human rights, as laid down in the Vienna Declaration and Programme of Action, by promoting and protecting economic and social rights on an equal footing with those of a civil and political nature. This may be achieved by ratifying international instruments on civil and political rights and by strengthening national legislation relating to the protection of fundamental rights and freedoms", - "values": [ - "CP rights - general", - "ESC rights - general", - "International instruments" - ] - }, - { - "text": "That the fight against domestic violence continues to be a priority for the Government ", - "values": [ - "Rights of the Child", - "Women's rights" - ] - }, - { - "text": "Highlight in its next report the measures against perpetrators in combating racist crimes", - "values": [ - "Racial discrimination", - "UPR process" - ] - }, - { - "text": "Consider taking steps to establish an independent police complaints mechanism with the aim to investigate all allegations of serious human rights violations by law enforcement officials ", - "values": [ - "Human rights violations by state agents", - "Justice" - ] - }, - { - "text": "Ratify the International Covenant on Civil and Political Rights, the International Convention on the Elimination of All Forms of Racial Discrimination, sign and ratify the International Covenant on Economic, Social and Cultural Rights", - "values": [ - "CP rights - general", - "ESC rights - general", - "International instruments", - "Racial discrimination" - ] - }, - { - "text": "Ratify the Optional Protocol to the Convention on the Rights of the Child on children in armed conflict and the Optional Protocol to the Convention on the Rights of the Child on the sale of children, child prostitution and child pornography, at the earliest possible time", - "values": [ - "International humanitarian law", - "International instruments", - "Rights of the Child", - "Trafficking" - ] - }, - { - "text": "Amend the Personal Status Law to bring it into conformity with international standards, that protection of women from domestic violence and investigations of violence within families be ensured, and forced marriage be prohibited in all cases ", - "values": [ - "Women's rights" - ] - }, - { - "text": "Adopt the necessary legislations to combat the phenomenon of human trafficking", - "values": [ - "Trafficking" - ] - }, - { - "text": "Continue to implement appropriate measures and allocate necessary resources to ensure that the objectives of its national strategy on equality and gender are achieved", - "values": [ - "Women's rights" - ] - }, - { - "text": "Commute all the death sentences and establish a moratorium on executions", - "values": [ - "Death penalty" - ] - }, - { - "text": "Ratify the Optional Protocol to the Convention on the Rights of the Child on the involvement of children in armed conflict and prosecute perpetrators of violations committed by all parties to the conflict", - "values": [ - "International humanitarian law", - "International instruments", - "Rights of the Child" - ] - }, - { - "text": "In the context of continuing its consideration concerning its accession to international treaties, accord priority to accession to the two fundamental international human rights conventions ", - "values": [ - "CP rights - general", - "ESC rights - general", - "International instruments" - ] - }, - { - "text": "Rescind the decision to prohibit the peaceful expression of religious beliefs, including the wearing of religious symbols in schools, in line with the freedom of religion or belief guaranteed by the Universal Declaration of Human Rights, the Convention on the Rights of the Child, and the European Union Guidelines on the promotion and protection of freedom of religion or belief", - "values": [ - "Freedom of religion and belief" - ] - }, - { - "text": "Accelerate the review and adoption of the new law on marriage in order to eradicate early marriages of young girls", - "values": [ - "Rights of the Child", - "Women's rights" - ] - }, - { - "text": "Consider a possibility of establishing a National Action Plan on Business and Human Rights, pursuant to the Guiding Principles adopted by the Human Rights Council", - "values": [ - "Business and human rights" - ] - }, - { - "text": "Integrate into the new Constitution important human rights guarantees, including the right to non-discrimination, freedom of expression, association and assembly, the independence of the judiciary, protection from torture and other forms of ill-treatment, the protection of the rights of the minorities, the right to life, and the protection of economic, social and cultural rights ", - "values": [ - "ESC rights - general", - "Freedom of association and peaceful assembly", - "Freedom of opinion and expression", - "Justice", - "Minorities", - "Torture and other CID treatment" - ] - }, - { - "text": "Enhance its capacity to promote human rights in the areas mentioned in paragraph 108 of the national report, with the appropriate technical assistance of OHCHR.", - "values": [ - "Technical assistance and cooperation" - ] - }, - { - "text": "Adopt a comprehensive national policy on the protection of women against all forms of violence and the creation of a supportive environment for women victims of violence by reviewing and strengthening the legal framework", - "values": [ - "Women's rights" - ] - }, - { - "text": "All decisions of the National Safety Courts should be subject to review in ordinary courts ", - "values": [ - "Justice" - ] - }, - { - "text": "An anti-torture bill be enacted by the current Parliament ", - "values": [ - "Torture and other CID treatment" - ] - }, - { - "text": "Develop a national plan to encourage girls to remain in school, especially in disadvantaged regions of the country", - "values": [ - "Right to education", - "Rights of the Child", - "Women's rights" - ] - }, - { - "text": "Take necessary measures to prevent degrading and cruel treatment of persons with disabilities, especially minors", - "values": [ - "Disabilities", - "Rights of the Child", - "Torture and other CID treatment" - ] - }, - { - "text": "Continue Government efforts to ensure decent living conditions and improve the country's economic welfare ", - "values": [ - "Development" - ] - }, - { - "text": "Establish an effective and inclusive process to follow up on the recommendations resulting from the universal periodic review", - "values": [ - "UPR process" - ] - }, - { - "text": "Guarantee the right of Rohingyas to participate and vote in the coming national elections", - "values": [ - "Elections", - "Freedom of religion and belief", - "Minorities" - ] - }, - { - "text": "Proceed to carry out impartial and independent investigations of all complaints from women alleging to have been subjected to forced sterilization in order to determine who is responsible and bring them to justice.", - "values": [ - "Torture and other CID treatment", - "Women's rights" - ] - }, - { - "text": "Abolish the death penalty and in any event, establish a moratorium as an interim measure towards full abolition ", - "values": [ - "Death penalty" - ] - }, - { - "text": "Step up the process of establishing a national human rights institution ", - "values": [ - "National Human Rights Institution" - ] - }, - { - "text": "Adhere to the OP-CAT ", - "values": [ - "Detention", - "International instruments", - "Torture and other CID treatment" - ] - }, - { - "text": "Strengthen women\u2019s access to employment and guarantee the promotion and development of their careers in full equality with men", - "values": [ - "Labour", - "Women's rights" - ] - }, - { - "text": "Make further efforts towards the promotion of tolerance among all citizens, regardless of their origin or ethnic background ", - "values": [ - "Racial discrimination" - ] - }, - { - "text": "Fully cooperate with international bodies by submitting overdue reports on CEDAW and CRPD", - "values": [ - "Disabilities", - "Treaty bodies", - "Women's rights" - ] - }, - { - "text": "Take necessary measures in law and in practice to put an end to all forms of discrimination against minorities, especially ethnic and religious minorities", - "values": [ - "Freedom of religion and belief", - "Minorities", - "Racial discrimination" - ] - }, - { - "text": "Implement a process for the independent investigation of allegations of torture and ill-treatment by law enforcement officers and improve the ability to prosecute those found responsible", - "values": [ - "Human rights violations by state agents", - "Torture and other CID treatment" - ] - }, - { - "text": "Take measures to ensure a fair access to education, without distinction of the origin or gender of the person", - "values": [ - "Migrants", - "Right to education", - "Women's rights" - ] - }, - { - "text": "Effectively implement the fourth generation of the National Action Plan on Human Rights and promote human rights education at all levels", - "values": [ - "Human rights education and training" - ] - }, - { - "text": "Empower the Roma population to participate in decision-making processes to better respond to their needs.", - "values": [ - "Minorities" - ] - }, - { - "text": "Continue its efforts to widen the access to education for all primary and secondary children including through allocation of more resources in the area of education", - "values": [ - "Right to education", - "Rights of the Child" - ] - }, - { - "text": "Fully implement Human Rights Council resolutions S-17/1 of 23 August 2011 and to fully cooperate with the independent commission of inquiry ", - "values": [ - "Technical assistance and cooperation" - ] - }, - { - "text": "Intensify efforts to achieve further gains in the areas of poverty reduction and improving the living conditions of the people in rural areas, particularly in providing necessary resources to realize the right to adequate housing and health", - "values": [ - "Poverty", - "Right to health", - "Right to housing" - ] - }, - { - "text": "Take further steps to enhance the number and quality of available accommodation facilities and other services offered to minors and vulnerable groups arriving in Greece ", - "values": [ - "Rights of the Child" - ] - }, - { - "text": "Take effective measures to further implement the National Action Plan on Gender-based Violence", - "values": [ - "Rights of the Child", - "Women's rights" - ] - }, - { - "text": "Accelerate the process for the drafting and adoption of a law on gender equality ", - "values": [ - "Women's rights" - ] - }, - { - "text": "Further enhance national mechanisms and invest more resources in improving the well-being of the people, including through adequate provision of housing ", - "values": [ - "Right to housing" - ] - }, - { - "text": "Strengthen efforts to protect women and girls from all forms of violence and implement a strategy to eliminate negative cultural practices that are harmful and discriminate against women", - "values": [ - "Rights of the Child", - "Torture and other CID treatment", - "Women's rights" - ] - }, - { - "text": "Ensure the freedom of expression and the right to freedom of assembly and association, limited of course, by the interest of defence, public safety and public order", - "values": [ - "Freedom of association and peaceful assembly", - "Freedom of opinion and expression" - ] - }, - { - "text": "Establish an effective mechanism to address the claims of indigenous people to their traditional lands, with the appropriate participation of indigenous groups, and that resulting decisions are implemented ", - "values": [ - "Indigenous peoples", - "Right to land" - ] - }, - { - "text": "Establish clear standards of respect for human rights for officials who exercise immigration control at points of entry into the Netherlands territory, in order to ensure a respectful, equal and non-discriminatory treatment and protection of the human rights of all persons entering the territory", - "values": [ - "Human rights education and training" - ] - }, - { - "text": "Strengthen human rights education and training in school curricula", - "values": [ - "Human rights education and training" - ] - }, - { - "text": "Given the positive strides made in public education, continue to ensure access to quality education to vulnerable and marginalized groups", - "values": [ - "Right to education" - ] - }, - { - "text": "Cooperate with the Special Envoy of the Secretary-General for Syria in order to immediately establish a negotiated and sustainable ceasefire in Aleppo", - "values": [ - "Other" - ] - }, - { - "text": "Take measures aimed at guaranteeing targeted support for persons living under the poverty line, paying particular attention to the situation of children, single-parent families and the rural population", - "values": [ - "Poverty", - "Rights of the Child" - ] - }, - { - "text": "Continue consolidating national and international efforts in order to effectively combat the trafficking in human beings", - "values": [ - "Trafficking" - ] - }, - { - "text": "Adopt stronger measures to protect minorities and indigenous peoples from discrimination and to ensure their access to public facilities", - "values": [ - "Indigenous peoples", - "Minorities" - ] - }, - { - "text": "Reach the human rights goals set out by the Council in its resolution 9-12.", - "values": [ - "General" - ] - }, - { - "text": "Continue to make gradual progress towards cultural change regarding sexual abuse and gender-based violence, which include all sectors of society, and to adopt legislative measures that specifically prohibit all acts of sexual abuse, including sexual rape during marriage", - "values": [ - "Rights of the Child", - "Women's rights" - ] - }, - { - "text": "Urge the Federated States of Micronesia to ratify the Convention on the Rights of Persons with Disabilities and its Optional Protocol, and incorporate them into its domestic legislation", - "values": [ - "Disabilities", - "International instruments" - ] - }, - { - "text": "Redouble its efforts, in assisting poor sections of the population, by endowing the Working Human Development Group with both the human and financial resources required to operate effectively and carry out its calling to ensure a decent living standard for all Filipinos ", - "values": [ - "Poverty" - ] - }, - { - "text": "Fully implement changes to the education law to comply with European court decisions and European Union infringement proceedings to ensure that Roma children enjoy equal access to education", - "values": [ - "Minorities", - "Right to education", - "Rights of the Child" - ] - }, - { - "text": "Improve prison conditions in line with the BJMP Modernization Act and with special regard to assuring the separation of the child and juvenile from adult prisoners ", - "values": [ - "Detention", - "Rights of the Child" - ] - }, - { - "text": "Ratify ICCPR and its Second Optional Protocol ", - "values": [ - "Death penalty", - "International instruments" - ] - }, - { - "text": "Continue promoting the empowerment of women ", - "values": [ - "Women's rights" - ] - }, - { - "text": "Ensure that full access is given to rural women to education, health care and credit, as well as to land and housing as recommended by the Committee on the Elimination of Discrimination against Women.", - "values": [ - "Treaty bodies", - "Women's rights" - ] - }, - { - "text": "Ensure that the composition and functions of the National Human Rights Commission and its work is in accordance with the Paris principles", - "values": [ - "National Human Rights Institution" - ] - }, - { - "text": "Ensure that Congress adopt the law on access of citizens to public information", - "values": [ - "Freedom of opinion and expression" - ] - }, - { - "text": "Take further steps to ensure the full respect of the fundamental rights of migrants, asylum-seekers and refugees", - "values": [ - "Asylum-seekers - refugees", - "Migrants" - ] - }, - { - "text": "Prevent further closing of bilingual public schools in Carinthia and take additional measures to improve the quality of bilingual education", - "values": [ - "Minorities", - "Right to education" - ] - }, - { - "text": "Continue adopting measures in the framework of freedom of expression as the new legislation on freedom of expression was passed", - "values": [ - "Freedom of opinion and expression" - ] - }, - { - "text": "Intensify its efforts to bring the Senegalese Human Rights Committee into full compliance with the Paris Principles and thus to restore its "A" status", - "values": [ - "National Human Rights Institution" - ] - }, - { - "text": "Step up the implementation of legislative, policy and administrative measures aimed at combating gender-based violence and sexual harassment ", - "values": [ - "Women's rights" - ] - }, - { - "text": "Step up its effort to prevent violence against women, particularly victims of trafficking, by providing adequate protection and assistance, especially shelters, funding and staffs for these shelters ", - "values": [ - "Trafficking", - "Women's rights" - ] - }, - { - "text": "Adopt national legislation, especially in Northern Ireland, on domestic violence protection, that ensures all cases of domestic violence are thoroughly investigated and that perpetrators are prosecuted", - "values": [ - "Women's rights" - ] - }, - { - "text": "Further their efforts to implement anti-corruption laws and regulations ", - "values": [ - "Corruption" - ] - }, - { - "text": "Take additional effective measures to combat racist crimes targeting migrants and Roma especially in the areas of employment, education, health and housing", - "values": [ - "Migrants", - "Minorities", - "Racial discrimination" - ] - }, - { - "text": "Accelerate the process of bringing its national legislation into compliance with the provisions of the main international instruments to which it is a party.", - "values": [ - "International instruments" - ] - }, - { - "text": "Continue efforts to achieve the country's poverty alleviation goals", - "values": [ - "Poverty" - ] - }, - { - "text": "Criminalize different types of violence against women", - "values": [ - "Women's rights" - ] - }, - { - "text": "Make available the necessary resources to the Human Rights Commission to effectively implement its important mandate", - "values": [ - "National Human Rights Institution" - ] - }, - { - "text": "Continue the programmes and national plans to develop education, especially in early childhood", - "values": [ - "Right to education", - "Rights of the Child" - ] - }, - { - "text": "Issue a standing invitation to the United Nations mechanisms and procedures ", - "values": [ - "Special procedures" - ] - }, - { - "text": "Continue to address the needs of children, including providing them with a family environment, and fulfil other rights to the maximum of ability ", - "values": [ - "Rights of the Child" - ] - }, - { - "text": "Amend national legislation in order to include hate crimes and domestic violence and take effective measures to ensure equal access to employment, social security, inclusion and equal opportunities for all people, especially for members of minorities. These measures should also facilitate the regularization of non-citizens, avoid discrimination arising from a lack of knowledge of the official language and offer alternatives which foster inclusion and cohesion in society, in particular in the education system", - "values": [ - "General" - ] - }, - { - "text": "Take effective measures to reduce the high dropout rate in primary schools, in particular with regard to Roma children ", - "values": [ - "Minorities", - "Right to education", - "Rights of the Child" - ] - }, - { - "text": "Extend a standing invitation to all special procedures of the Council ", - "values": [ - "Special procedures" - ] - }, - { - "text": "Ratify ILO Convention No. 169 on Indigenous and Tribal Peoples in Independent Countries within the term of office of the current government administration ", - "values": [ - "Indigenous peoples", - "International instruments" - ] - }, - { - "text": "Ratify various international human rights statutes and conventions, including the Rome Statute and the ILO Conventions Nos. 87, 169 and 189", - "values": [ - "Freedom of association and peaceful assembly", - "Indigenous peoples", - "International instruments", - "Justice", - "Labour" - ] - }, - { - "text": "Continue to work towards attaining food security, and fight HIV and AIDS as conscientiously as already demonstrated ", - "values": [ - "HIV - Aids", - "Right to food" - ] - }, - { - "text": "Expedite and systematize the process of demarcation of indigenous collective lands and habitat, and update the census data of indigenous communities and peoples, ensuring the participation of communities in this process ", - "values": [ - "Indigenous peoples", - "Right to land" - ] - }, - { - "text": "Intensify efforts to ensure universal access to health insurance, including access to maternal and child health care", - "values": [ - "Right to health", - "Rights of the Child", - "Women's rights" - ] - }, - { - "text": "Continue to strengthen measures to protect the rights of child victims", - "values": [ - "Rights of the Child" - ] - }, - { - "text": "Ratify/accede to the Rome Statute of the International Criminal Court and to implement it fully at national level and to accede to the Agreement on Privileges and Immunities of the Court ", - "values": [ - "International instruments", - "Justice" - ] - }, - { - "text": "Undertake fundamental reforms to resolve the dispute in South Sudan", - "values": [ - "Other" - ] - }, - { - "text": "Allocate adequate resources for the full effectiveness of the gender plan of action 2013-2017", - "values": [ - "Women's rights" - ] - }, - { - "text": "Take all necessary measures to remove discriminatory provisions from the constitution and the electoral law in line with the European Court of Human Rights judgement", - "values": [ - "Elections" - ] - }, - { - "text": "Adopt and implement a national action plan on gender-based violence with the support from all sectors within the society, including the judiciary", - "values": [ - "Women's rights" - ] - }, - { - "text": "Strengthen the Government response to incidents of violence against members of minority religious groups ", - "values": [ - "Freedom of religion and belief", - "Minorities" - ] - }, - { - "text": "will consider ratification of the Optional Protocol to the Covenant on, Economic, Social and Cultural Rights, the Optional Protocol to the Convention against Torture and other Cruel, Inhuman or Degrading Treatment or Punishment and the International Convention for the Protection of All Persons from Enforced Disappearance, after having completed a study of their legal implications", - "values": [ - "Detention", - "ESC rights - general", - "Enforced disappearances", - "International instruments", - "Torture and other CID treatment" - ] - }, - { - "text": "Take all necessary measures to prevent violence and intolerance of a racist, xenophobia and homophobic character in conformity with international law and standards", - "values": [ - "Racial discrimination", - "Sexual Orientation and Gender Identity" - ] - }, - { - "text": "Finalize the preparation of the National Action Plan to Combat Child Labour", - "values": [ - "Labour", - "Rights of the Child" - ] - }, - { - "text": "Improve continuously the implementation of its programmes for human rights education ", - "values": [ - "Human rights education and training" - ] - }, - { - "text": "Strengthen the independence of the justice system and prevent and refrain from political interference in prosecutions and trials", - "values": [ - "Justice" - ] - }, - { - "text": "Create a judicial commission to investigate violations and abuses of human rights committed in the North of the country", - "values": [ - "Justice" - ] - }, - { - "text": "Continue to work towards increasing the representation of women in leading and decision-making positions", - "values": [ - "Women's rights" - ] - }, - { - "text": "Take effective measures towards ensuring equal and full enjoyment of human rights by all, in accordance with its international obligations", - "values": [ - "General" - ] - }, - { - "text": "Continue to engage international partners to further pursue human rights awareness programmes and implement the national human rights action plan", - "values": [ - "Technical assistance and cooperation" - ] - }, - { - "text": "Ensure the effective prosecution of all forms of violence against women. ", - "values": [ - "Women's rights" - ] - }, - { - "text": "Develop effective measures to combat incitement to hatred, in particular measures to effectively investigate and prosecute such manifestation of intolerance ", - "values": [ - "Racial discrimination" - ] - }, - { - "text": "Seek further technical assistance from relevant international organizations to ensure continual success on the path towards achieving human rights and equal access to education, health, employment and livelihood for all ", - "values": [ - "Right to education", - "Right to health", - "Technical assistance and cooperation" - ] - }, - { - "text": "Continue progress in protecting and promoting the human rights of indigenous people ", - "values": [ - "Indigenous peoples" - ] - }, - { - "text": "Ratify the Convention on the Rights of Persons with Disabilities, the Optional Protocol to the Convention on the Rights of the Child on the sale of children, child prostitution and child pornography, as a matter of priority", - "values": [ - "Disabilities", - "International instruments", - "Rights of the Child", - "Trafficking" - ] - }, - { - "text": "Include in its Criminal Code provisions that offer specific protections for women against domestic violence ", - "values": [ - "Women's rights" - ] - }, - { - "text": "Put in place legislations to protect migrant workers from abuse and exploitation", - "values": [ - "Labour", - "Migrants" - ] - }, - { - "text": "That the Complaints and Human Rights Office of the Public Security Directorate and the National Centre for Human Rights work closely together to monitor the strict application of the rule of law for detainees", - "values": [ - "Detention" - ] - }, - { - "text": "Continue to pay attention to ensuring the exercise of the right to education for all", - "values": [ - "Right to education" - ] - }, - { - "text": "Strengthen further its efforts in adopting and implementing efficient measures to eliminate domestic violence ", - "values": [ - "Rights of the Child", - "Women's rights" - ] - }, - { - "text": "Ensure that the best interests of the child, as spelled out in the Convention on the Rights of the Child, is the primary consideration in all asylum proceedings involving children", - "values": [ - "Asylum-seekers - refugees", - "International instruments", - "Rights of the Child" - ] - }, - { - "text": "Pursue efforts to combat human trafficking, especially of women ", - "values": [ - "Trafficking", - "Women's rights" - ] - }, - { - "text": "Take further measures aimed at strengthening laws and regulations regarding human rights ", - "values": [ - "General" - ] - }, - { - "text": "Investigate reports of harassment and detention of human rights defenders, including alleged mistreatment while in police custody, with a view to ending impunity", - "values": [ - "Human rights defenders", - "Human rights violations by state agents", - "Impunity" - ] - }, - { - "text": "Bring to justice the persons and social institutions for children responsible for 238 reported unaccounted deaths in the period 2000-2010", - "values": [ - "Rights of the Child" - ] - }, - { - "text": "Continue to take measures towards ratification of the ICCPR", - "values": [ - "CP rights - general", - "International instruments" - ] - }, - { - "text": "Ensure that asylum seekers and children of refugees receive the same quality of education as other children in Danish schools", - "values": [ - "Asylum-seekers - refugees", - "Right to education", - "Rights of the Child" - ] - }, - { - "text": "Continue with its plans to guarantee the right to education ", - "values": [ - "Right to education" - ] - }, - { - "text": "Strengthen the implementation of measures and provisions to eradicate all forms of discrimination and violence against women and girls ", - "values": [ - "Rights of the Child", - "Women's rights" - ] - }, - { - "text": "Take measures to make the juvenile justice system more effective, in particular by ensuring the separate detention of juveniles as well as expeditious access of juveniles to legal counsels ", - "values": [ - "Justice", - "Rights of the Child" - ] - }, - { - "text": "Consider imposing a moratorium on the death penalty with a view to abolish it and to take measures to ensure that it is never applied to persons under the age of 18 years", - "values": [ - "Death penalty", - "Rights of the Child" - ] - }, - { - "text": "Adopt policies, programmes and affirmative action measures to improve the quality of education in rural areas, specially those inhabited by indigenous peoples and communities, and guarantee them access to paid employment in the public and private sector ", - "values": [ - "Indigenous peoples", - "Right to education" - ] - }, - { - "text": "Conform the National Human Rights Commission to the Paris Principles ", - "values": [ - "National Human Rights Institution" - ] - }, - { - "text": "Continue to establish mechanisms to end discrimination towards the Roma community", - "values": [ - "Minorities", - "Racial discrimination" - ] - }, - { - "text": "Ratify the Rome Statue and ensure its full implementation in national legislation ", - "values": [ - "International instruments", - "Justice" - ] - }, - { - "text": "Take all necessary measures to solve the problems of non-Muslim minorities caused by the closing of the Halki seminary", - "values": [ - "Freedom of religion and belief", - "Minorities" - ] - }, - { - "text": "Establish an effective national monitoring system to ensure that throughout the process detainees are protected by the minimum safeguards for those deprived of their liberty, as provided for by international law ", - "values": [ - "Detention" - ] - }, - { - "text": "Provide the National Commission for Human Rights with adequate resources to enable it to conform to its mandate in full compliance with the Paris Principles", - "values": [ - "National Human Rights Institution" - ] - }, - { - "text": "Adopt, as an urgent priority, specific legislation to address violence against women, and provide enforcement officers with further training and support to ensure that such crimes are properly investigated and the law is enforced ", - "values": [ - "Women's rights" - ] - }, - { - "text": "Keep its commitment to uphold human rights treaty obligations and engage constructively with human rights mechanisms", - "values": [ - "International instruments", - "Special procedures", - "Treaty bodies", - "UPR process" - ] - }, - { - "text": "Recognize the right of access to safe drinking water and sanitation in line with GA resolution 64/292 and HRC resolution 18/1, as well as CESCR recommendations recognizing the right to sanitation as an integral part of the human right of access to safe drinking water ", - "values": [ - "Right to water and sanitation", - "Treaty bodies" - ] - }, - { - "text": "Continue the efforts to ratify international human rights treaties and instruments of which Antigua and Barbuda is not yet a party", - "values": [ - "International instruments" - ] - }, - { - "text": "Consider the possibility of adhering to the Second Optional Protocol of the ICCPR, abolishing the death penalty", - "values": [ - "Death penalty", - "International instruments" - ] - }, - { - "text": "Take appropriate action to put into place free primary school education for all and to make primary education compulsory. ", - "values": [ - "Right to education" - ] - }, - { - "text": "Open cooperation channels with all United Nations human rights mechanisms and OHCHR", - "values": [ - "Special procedures", - "Technical assistance and cooperation", - "Treaty bodies", - "UPR process" - ] - }, - { - "text": "Facilitate a standing invitation to the special procedures mandate holders of the Human Rights Council", - "values": [ - "Special procedures" - ] - }, - { - "text": "Abolish by law the death penalty and proceed to the ratification of the Second Optional Protocol to the International Covenant on Civil and Political Rights", - "values": [ - "Death penalty", - "International instruments" - ] - }, - { - "text": "Consider strengthening the framework and mechanisms for eliminating discrimination against women and gender-based violence by enacting and enforcing all relevant laws, already under consideration, relating to violence against women", - "values": [ - "Women's rights" - ] - }, - { - "text": "Continue efforts to ensure equal access to education of vulnerable people including women, children and persons with disabilities", - "values": [ - "Disabilities", - "Right to education", - "Rights of the Child", - "Women's rights" - ] - }, - { - "text": "Strengthen the independence of the National Human Rights Committee by limiting the role of government appointees ", - "values": [ - "National Human Rights Institution" - ] - }, - { - "text": "Accelerate the ratification of both the International Covenant on Civil and Political Rights (ICCPR) and the International Covenant on Economic, Social and Cultural Rights (ICESCR), the Convention against Torture (CAT) and its Optional Protocol (OP-CAT) ", - "values": [ - "CP rights - general", - "Detention", - "ESC rights - general", - "International instruments", - "Torture and other CID treatment" - ] - }, - { - "text": "Repeal all provisions in its domestic legislation which criminalize sexual activity between consenting adults of the same sex ", - "values": [ - "Sexual Orientation and Gender Identity" - ] - }, - { - "text": "Adopt the new regulations in favour of a better protection of children's rights and continue efforts for the improvement of the situation of women in the society in Grenada, notably by ratifying the Optional Protocol to CEDAW and the third Optional Protocol to CRC", - "values": [ - "International instruments", - "Rights of the Child", - "Women's rights" - ] - }, - { - "text": "Continue its efforts in the field of the protection of child rights", - "values": [ - "Rights of the Child" - ] - }, - { - "text": "Develop a national human rights plan of action to improve awareness of the conventions to which the Lao People's Democratic Republic is a party, and encourage civil society engagement on human rights issues ", - "values": [ - "Civil society" - ] - }, - { - "text": "Engage with relevant international partners and civil society to develop appropriate mechanisms of prevention and response to deal with violence and violations of human rights", - "values": [ - "Civil society", - "Technical assistance and cooperation" - ] - }, - { - "text": "Continued efforts in addressing and protecting the rights of ethnic minorities, including in particular the situation of Roma living in Slovenia", - "values": [ - "Minorities" - ] - }, - { - "text": "Continue its efforts for the establishment of the National Human Rights Institution", - "values": [ - "National Human Rights Institution" - ] - }, - { - "text": "Cooperate with the International Criminal Court's investigation and take measures to ensure that those responsible for post-election violence are held accountable ", - "values": [ - "Elections", - "International instruments", - "Justice" - ] - }, - { - "text": "Reform its legislation in view of promoting non-discrimination and equality between men and women within marriage and for rights of women in case of dissolution of marriage", - "values": [ - "Women's rights" - ] - }, - { - "text": "Make further efforts and set specific targets to decrease the number of incidents in particular through mechanisms and institutions protecting women from domestic violence.", - "values": [ - "Women's rights" - ] - }, - { - "text": "Continue efforts to protect the rights of the child, by taking all necessary measures to combat violence against children and child labour", - "values": [ - "Labour", - "Rights of the Child" - ] - }, - { - "text": "Accelerate its efforts aimed at implementing its plans and programmes in order to better protect and promote human rights and fundamental freedoms.", - "values": [ - "General" - ] - }, - { - "text": "Incorporate in the Criminal Code specific provisions on domestic violence along with concrete sanctions against the perpetrators of domestic violence ", - "values": [ - "Rights of the Child", - "Women's rights" - ] - }, - { - "text": "Incorporate the principle of the best interest of the child in all programmes and policies ", - "values": [ - "Rights of the Child" - ] - }, - { - "text": "Combat the prevailing impunity, thereby defending victims' rights and promoting respect for human rights", - "values": [ - "Impunity" - ] - }, - { - "text": "Introduce and seek prompt passage of access-to-information legislation", - "values": [ - "Freedom of opinion and expression" - ] - }, - { - "text": "Remain steadfast in pursuing its exemplary policies towards gender equality, particularly by strengthening measures to eradicate gender-based violence ", - "values": [ - "Women's rights" - ] - }, - { - "text": "Intensify programs to combat poverty so as to improve the enjoyment of economic, social and cultural rights, particularly with regard to food security ", - "values": [ - "ESC rights - general", - "Poverty", - "Right to food" - ] - }, - { - "text": "Ratify the International Covenant on Civil and Political Rights (ICCPR) as quickly as possible and with minimal reservations", - "values": [ - "CP rights - general", - "International instruments" - ] - }, - { - "text": "The Maldives takes note of this [100.56] recommendation. The Maldives is committed to maintaining a moratorium on the death penalty as its recent vote at the UN General Assembly demonstrates.", - "values": [ - "Death penalty" - ] - }, - { - "text": "Include human rights as a subject in the curriculum of educational institutions as well as in plans for training aimed at the security forces", - "values": [ - "Human rights education and training" - ] - }, - { - "text": "Preserve with vigour the approach of cooperation, non-politicization and respectful dialogue among all nations in terms of human rights", - "values": [ - "Other" - ] - }, - { - "text": "Make all efforts to submit overdue reports to the treaty bodies and to ratify already signed treaties ", - "values": [ - "International instruments", - "Treaty bodies" - ] - }, - { - "text": "Ensure that minors are protected in prison, including by separating them from adults", - "values": [ - "Detention", - "Rights of the Child" - ] - }, - { - "text": "Extend an open and standing invitation to the special procedure mechanisms ", - "values": [ - "Special procedures" - ] - }, - { - "text": "Put into place a comprehensive national plan to ensure protection, respect, and promotion of human rights for all", - "values": [ - "General" - ] - }, - { - "text": "Guarantee access to basic social services, including lodgings, hygiene, health and education, to all migrants and members of their families", - "values": [ - "Migrants" - ] - }, - { - "text": "Continue to enhance access to basic health services, especially for children.", - "values": [ - "Right to health", - "Rights of the Child" - ] - }, - { - "text": "Take and publicize measures to strengthen media independence, and to address concerns over media concentration", - "values": [ - "Freedom of the press" - ] - }, - { - "text": "Better distribute food and other resources with a view to achieving the Millennium Development Goals by 2015. ", - "values": [ - "Development", - "Right to food" - ] - }, - { - "text": "Provide the Office on Missing Persons with sufficient resources and equip the office with highly qualified members to perform its mission independently and effectively", - "values": [ - "Enforced disappearances" - ] - }, - { - "text": "Introduce more effective policies to combat child forced marriage", - "values": [ - "Rights of the Child" - ] - }, - { - "text": "Step up efforts to prevent sexual violence against women and children and strengthen measures for the rehabilitation of boys and girls affected by armed conflicts ", - "values": [ - "International humanitarian law", - "Rights of the Child", - "Women's rights" - ] - }, - { - "text": "Strengthen its fight against cases of violence, hate speech and discrimination", - "values": [ - "Racial discrimination" - ] - }, - { - "text": "Continue efforts to counter the brain drain to foreign countries and strengthen standards of professional education related to the main economic activities in the country", - "values": [ - "Right to education" - ] - }, - { - "text": "Consider incorporating its international human rights obligations into domestic law ", - "values": [ - "International instruments" - ] - }, - { - "text": "Carry out efforts in harmonizing legal provisions to guarantee the rights of victims of domestic violence", - "values": [ - "Rights of the Child", - "Women's rights" - ] - }, - { - "text": "Continue to undertake efforts to enhance the rule of law to ensure that the rights of its people are better protected ", - "values": [ - "Justice" - ] - }, - { - "text": "Undertake reforms with a view to bring national legislation in line with ratified international human rights instruments", - "values": [ - "International instruments" - ] - }, - { - "text": "Guarantee access to education for all, and in particular to strengthen the public sector, while access to a continuous and quality education curriculum is deteriorating", - "values": [ - "Right to education" - ] - }, - { - "text": "Ratify the Optional Protocol to the ICCPR aiming at the abolition of the death penalty.", - "values": [ - "Death penalty", - "International instruments" - ] - }, - { - "text": "Bring its legal system in line with its Constitution by implementing measures that guarantee gender equality and adopting legislation guaranteeing women effective remedies against violence ", - "values": [ - "Women's rights" - ] - }, - { - "text": "Abolish the practice of sterilization of persons with disabilities without their free and informed consent", - "values": [ - "Disabilities", - "Torture and other CID treatment" - ] - }, - { - "text": "Collect and generate disaggregated data on manifestations of racism and discrimination with a view to evaluating the situation regarding minority, racial, and ethnic groups in Austria ", - "values": [ - "Minorities", - "Racial discrimination" - ] - }, - { - "text": "Amend the provisions of the Nationality Law to ensure that women are granted equality with men in conferring nationality to their children", - "values": [ - "Statelessness and the right to nationality", - "Women's rights" - ] - }, - { - "text": "Inform the general public on their rights and how to gain access to justice.", - "values": [ - "Justice" - ] - }, - { - "text": "Continue its efforts to establish a national human rights commission, which is an essential tool to promote and protect human rights", - "values": [ - "National Human Rights Institution" - ] - }, - { - "text": "Step up efforts to guarantee the right of health of its citizens ", - "values": [ - "Right to health" - ] - }, - { - "text": "Become party to the UN core human rights treaties and continue its efforts towards this aim ", - "values": [ - "International instruments" - ] - }, - { - "text": "Consider signing the Optional Protocol to the International Covenant on Economic, Social and Cultural Rights at the opening-for-signature ceremony on 24 September, during the treaty event in New York.", - "values": [ - "ESC rights - general", - "International instruments" - ] - }, - { - "text": "Spread information about the negative consequences of female genital mutilation, also in cooperation with relevant international organizations and United Nations agencies ", - "values": [ - "Rights of the Child", - "Torture and other CID treatment", - "Women's rights" - ] - }, - { - "text": "Adopt the necessary measures to establish a moratorium on executions of the death penalty", - "values": [ - "Death penalty" - ] - }, - { - "text": "Initiate awareness raising and training campaigns so that law enforcement officials, medical personnel and jurists learn how to provide proper care to survivors of gender violence", - "values": [ - "Human rights education and training", - "Women's rights" - ] - }, - { - "text": "Harmonize anti-discrimination laws by broadening their application scope so as to include the grounds of religion, belief, age and sexual orientation", - "values": [ - "Freedom of religion and belief", - "Racial discrimination", - "Sexual Orientation and Gender Identity" - ] - }, - { - "text": "Respect the elections timeline and take the measures necessary to ensure that the first ballot of the presidential elections takes place, as scheduled, on 27 June\n2010\n", - "values": [ - "Elections" - ] - }, - { - "text": "Establish national human rights institution in accordance with the Paris Principles ", - "values": [ - "National Human Rights Institution" - ] - }, - { - "text": "Continue its efforts to combat sexual violence against women and to effectively apply the law against sexual violence of 2006. ", - "values": [ - "Women's rights" - ] - }, - { - "text": "Put in place further measures to ensure respect for freedom of expression and of the media", - "values": [ - "Freedom of opinion and expression", - "Freedom of the press" - ] - }, - { - "text": "Enable migrants and refugees to benefit from the pilot project to fight HIV-AIDS.", - "values": [ - "Asylum-seekers - refugees", - "HIV - Aids", - "Migrants" - ] - }, - { - "text": "Consider the establishment of a national human rights institution in accordance with the Paris Principles ", - "values": [ - "National Human Rights Institution" - ] - }, - { - "text": "Take necessary steps to entrench, in practice as well as in legislation, freedom of expression and freedom of the media", - "values": [ - "Freedom of opinion and expression", - "Freedom of the press" - ] - }, - { - "text": "Continue undertaking measures to fight against trafficking in human beings", - "values": [ - "Trafficking" - ] - }, - { - "text": "Repeal without delay all legal and regulatory provisions that are not in conformity with the Convention on the Elimination of All Forms of Discrimination against Women, ratified by Swaziland in 2004, and actively combat violence and discrimination against women", - "values": [ - "International instruments", - "Women's rights" - ] - }, - { - "text": "Allow ICRC to gain access to prisons", - "values": [ - "Detention" - ] - }, - { - "text": "That any sanctions for violations be proportionate and not create undue obstacles to freedom of assembly", - "values": [ - "Freedom of association and peaceful assembly" - ] - }, - { - "text": "Establish, in cooperation with civil society, a detailed strategy with a view to eliminating harmful cultural practices and discriminatory stereotypes against women ", - "values": [ - "Civil society", - "Torture and other CID treatment", - "Women's rights" - ] - }, - { - "text": "Increase efforts to establish a national human rights institution in compliance with the Paris Principles ", - "values": [ - "National Human Rights Institution" - ] - }, - { - "text": "Take additional measures to promote tolerance and respect for diversity", - "values": [ - "Minorities" - ] - }, - { - "text": "Consider putting in place measures or legislation to ensure prevention and punishment of acts of violence against women, and ensure that rapists do not evade criminal prosecution by marrying their victims ", - "values": [ - "Women's rights" - ] - }, - { - "text": "Apply a victim-centred approach towards victims of trafficking", - "values": [ - "Trafficking" - ] - }, - { - "text": "Fulfil its commitment to reducing chronic malnutrition by 10% in four years including through the development of a long term strategy to reduce inequalities related to access to food", - "values": [ - "Right to food" - ] - }, - { - "text": "Ensure, through legislative reforms, that protection and promotion of laws of freedom of expression as well as of peaceful assembly and association are guaranteed for all inhabitants of the country ", - "values": [ - "Freedom of association and peaceful assembly", - "Freedom of opinion and expression" - ] - }, - { - "text": "Review its legislation to create legal ways to seek asylum in Andorra", - "values": [ - "Asylum-seekers - refugees" - ] - }, - { - "text": "Take effective action against child labour, and against smuggling or abduction, exploitation or sexual abuse of children.", - "values": [ - "Rights of the Child" - ] - }, - { - "text": "Extend standing invitation to all special procedure mandate holders", - "values": [ - "Special procedures" - ] - }, - { - "text": "Continue its efforts in order to address the problems related to internal displacement", - "values": [ - "Internally displaced persons" - ] - }, - { - "text": "Ensure that everyone enjoys the same protection against all forms of discrimination, in all circumstances", - "values": [ - "Other" - ] - }, - { - "text": "Revise the Press and Publication Law with a view to removing criminal liability for activities that constitute the legitimate exercise of freedom of expression and to adopt safeguards for guaranteeing the exercise of this right ", - "values": [ - "Freedom of opinion and expression", - "Freedom of the press" - ] - }, - { - "text": "Consider ratifying the Palermo Protocol on human trafficking", - "values": [ - "International instruments", - "Trafficking" - ] - }, - { - "text": "Consider ratifying the main international human rights instruments not ratified, including the Rome Statute of the International Criminal Court", - "values": [ - "International instruments", - "Justice" - ] - }, - { - "text": "Intensify efforts to combat practices and beliefs that undermine human rights, including the rights of women and children ", - "values": [ - "Rights of the Child", - "Women's rights" - ] - }, - { - "text": "Continue to take a comprehensive approach through its law and justice, civil society and health programmes to address the high incidence of violence against women ", - "values": [ - "Women's rights" - ] - }, - { - "text": "Sign and ratify the Optional Protocol to the Convention Against Torture ", - "values": [ - "Detention", - "International instruments", - "Torture and other CID treatment" - ] - }, - { - "text": "Implement effective strategies and provide adequate funds to improve the quality of education and ensure inclusive and equal access to primary and secondary education for all children in Rwanda, including girls, children with disabilities and children belonging to minority groups and indigenous peoples", - "values": [ - "Disabilities", - "Indigenous peoples", - "Minorities", - "Right to education", - "Rights of the Child" - ] - }, - { - "text": "Take appropriate measures to abolish the practice of pregnancy tests as a requirement for access to employment ", - "values": [ - "Women's rights" - ] - }, - { - "text": "In line with a previous recommendation of CRC, design and implement comprehensive strategies and policies to prevent and combat economic exploitation of children and to undertake awareness-raising campaigns in this respect ", - "values": [ - "Human rights education and training", - "Rights of the Child", - "Treaty bodies" - ] - }, - { - "text": "Take necessary steps to enforce laws covering violence, including sexual violence, against women and girls and support to victims to ensure that perpetrators are sanctioned ", - "values": [ - "Rights of the Child", - "Women's rights" - ] - }, - { - "text": "Take necessary measures, as recommended by the Committee on the Rights of the Child, to prevent child abuse and neglect and increase efforts to ensure the registration of all children at birth.", - "values": [ - "Rights of the Child", - "Statelessness and the right to nationality", - "Treaty bodies" - ] - }, - { - "text": "Declare racial discrimination as a criminal offence", - "values": [ - "Racial discrimination" - ] - }, - { - "text": "Consider the possibility of mainstreaming a human rights approach into the immigration policies", - "values": [ - "Migrants" - ] - }, - { - "text": "Take steps to release all political prisoners and facilitate the requested visits of the United Nations Special Rapporteur on torture and the Working Group on Arbitrary Detention ", - "values": [ - "Detention", - "Freedom of opinion and expression", - "Special procedures", - "Torture and other CID treatment" - ] - }, - { - "text": "Ratify the Convention against Torture and Other Cruel, Inhuman or Degrading Treatment or Punishment, the International Covenant on Civil and Political Rights and the International Convention on the Elimination of All Forms of Racial Discrimination", - "values": [ - "CP rights - general", - "International instruments", - "Racial discrimination", - "Torture and other CID treatment" - ] - }, - { - "text": "Promote the participation of women in public affairs, including raising the rate of their representation in elected councils", - "values": [ - "Elections", - "Women's rights" - ] - }, - { - "text": "Conduct additional campaigns to elevate public awareness about domestic violence, similar to the country's 2009 Say No to Rape campaign ", - "values": [ - "Human rights education and training", - "Rights of the Child", - "Women's rights" - ] - }, - { - "text": "Intensify awareness-raising and educational campaigns to combat violence against women, and adopt measures to improve women's participation in the decision-making process ", - "values": [ - "Human rights education and training", - "Women's rights" - ] - }, - { - "text": "Adopt a law that explicitly prohibits female genital mutilation", - "values": [ - "Rights of the Child", - "Torture and other CID treatment", - "Women's rights" - ] - }, - { - "text": "Consider adopting specific legislation on domestic violence and violence against women", - "values": [ - "Rights of the Child", - "Women's rights" - ] - }, - { - "text": "Extend an open invitation to the human rights special procedures ", - "values": [ - "Special procedures" - ] - }, - { - "text": "Withdraw the reservations to the Convention on the Elimination of All Forms of Discrimination against Women, particularly articles 2 (f), 9 and 15.", - "values": [ - "International instruments", - "Statelessness and the right to nationality", - "Women's rights" - ] - }, - { - "text": "Ratify the Rome Statue of the International Criminal Court and fully align its legislation with all the obligations under the Rome Statute, including incorporating the Rome Statute definition of crimes and general principles, as well as adopting provisions enabling cooperation with the Court", - "values": [ - "International instruments", - "Justice" - ] - }, - { - "text": "Adopt the necessary measures to guarantee the independence and impartiality of the judiciary, ensuring to all persons the respect of due process guarantees, in accordance with article 14 of International Covenant on Civil and Political Rights", - "values": [ - "International instruments", - "Justice" - ] - }, - { - "text": "Sign and ratify CRPD and CED", - "values": [ - "Disabilities", - "Enforced disappearances", - "International instruments" - ] - }, - { - "text": "Adopt specific legislation to protect women and children with a view to fully implement the provisions of CEDAW and CRC ", - "values": [ - "International instruments", - "Rights of the Child", - "Women's rights" - ] - }, - { - "text": "Make all forms of violence against women and children criminal offences, and to provide victims of violence with effective mechanisms of redress and protection", - "values": [ - "Rights of the Child", - "Women's rights" - ] - }, - { - "text": "Intensify specific awareness-raising activities regarding sexual orientation at a national level to contribute to a better protection of the rights and freedoms of gays, lesbians, bisexuals and transsexuals ", - "values": [ - "Human rights education and training", - "Sexual Orientation and Gender Identity" - ] - }, - { - "text": "Adopt the necessary measures to establish a national human rights institution in accordance with the Paris Principles", - "values": [ - "National Human Rights Institution" - ] - }, - { - "text": "Strengthen measures to combat gender-based violence and gender inequality in practice, motivated by discriminatory traditional practices", - "values": [ - "Torture and other CID treatment", - "Women's rights" - ] - }, - { - "text": "Recognize the possibility of dual citizenship, a possibility which is already offered to people from more than 50 countries, to Turks legally residing in Germany, instead of forcing them to choose between their two nationalities ", - "values": [ - "CP rights - general" - ] - }, - { - "text": "Take the necessary measures to prevent and sanction forced and early marriage and female genital mutilation and strengthen public policies in place to combat the high rates of violence against women, particularly against women belonging to minorities, migrant women and women with disabilities ", - "values": [ - "Disabilities", - "Migrants", - "Minorities", - "Rights of the Child", - "Torture and other CID treatment", - "Women's rights" - ] - }, - { - "text": "Increase efforts to strengthen the rule of law ", - "values": [ - "Justice" - ] - }, - { - "text": "Take concrete measures to combat child sex tourism", - "values": [ - "Labour", - "Rights of the Child", - "Trafficking" - ] - }, - { - "text": "Ratify the International Convention for the Protection of All Persons from Enforced Disappearance which was signed by Mozambique in 2008", - "values": [ - "Enforced disappearances", - "International instruments" - ] - }, - { - "text": "Ratify the International Convention for the Protection of All Persons from Enforced Disappearance and take the necessary measures to give full effect to the provisions of the International Covenant on Civil and Political Rights in the domestic legal order", - "values": [ - "CP rights - general", - "Enforced disappearances", - "International instruments" - ] - }, - { - "text": "Consider ratifying the Optional Protocol to the Convention against Torture.", - "values": [ - "Detention", - "International instruments", - "Torture and other CID treatment" - ] - }, - { - "text": "Continue collaboration with its partners to reduce the prevalence of female genital mutilation (FGM)", - "values": [ - "Rights of the Child", - "Torture and other CID treatment", - "Women's rights" - ] - }, - { - "text": "Ensure that the performance and behaviour of the State security forces are brought into line with international law and that the State investigate and punish all abuses or disproportionate use of force, particularly in cases of peaceful protestors or civilian demonstrations ", - "values": [ - "Freedom of association and peaceful assembly", - "Human rights violations by state agents" - ] - }, - { - "text": "Continue to actively seek technical cooperation and assistance from the international community and development partners in order to effectively implement programmes and policies aimed at providing health services and quality education for all citizens ", - "values": [ - "Right to education", - "Right to health", - "Technical assistance and cooperation" - ] - }, - { - "text": "Continue its achievements in the field of human rights as an encouragement factor for the promotion and protection of human rights", - "values": [ - "General" - ] - }, - { - "text": "Strengthen anti-hate and anti-discrimination legislation in the Turkish Penal Code, specifically article 122, by prohibiting hate crimes and discrimination based on sexual orientation", - "values": [ - "Racial discrimination", - "Sexual Orientation and Gender Identity" - ] - }, - { - "text": "Continue to give particular attention to indigenous peoples when implementing the poverty reduction and alleviation programmes and ensure that it works towards the elimination of any discriminatory measures applied to them.", - "values": [ - "Indigenous peoples", - "Poverty" - ] - }, - { - "text": "Strengthen the public policies to reduce the housing shortage and create conditions for access to affordable housing for middle- and low-income households", - "values": [ - "Right to housing" - ] - }, - { - "text": "Submit the initial report to the International Covenant on Civil and Political Rights ", - "values": [ - "CP rights - general", - "Treaty bodies" - ] - }, - { - "text": "Sign and ratify the new Optional Protocol to CRC on a communications procedure ", - "values": [ - "International instruments", - "Rights of the Child" - ] - }, - { - "text": "Share experience and good practices with other countries in areas of development and protection of human rights", - "values": [ - "General" - ] - }, - { - "text": "Step up its efforts towards ratifying the Convention on the Rights of Persons with Disabilities", - "values": [ - "Disabilities", - "International instruments" - ] - }, - { - "text": "Change the legislation to raise the age limit for criminal responsibility to eighteen.", - "values": [ - "Rights of the Child" - ] - }, - { - "text": "Amend its Constitution with a view to abolishing the death penalty", - "values": [ - "Death penalty" - ] - }, - { - "text": "Continue efforts in protecting the dignity and interests of migrant workers, including through appropriate institutional and legislative measures ", - "values": [ - "Labour", - "Migrants" - ] - }, - { - "text": "Continue providing the necessary fund to support its supply of drinking water programme", - "values": [ - "Right to water and sanitation" - ] - }, - { - "text": "Strengthen measures in the promotion of the rights of persons with disabilities in political life", - "values": [ - "Disabilities" - ] - }, - { - "text": "Reinforce efforts to protect and rehabilitate the victims of trafficking ", - "values": [ - "Trafficking" - ] - }, - { - "text": "Continue its efforts in the less developed regions by encouraging development and investment", - "values": [ - "Development" - ] - }, - { - "text": "Introduce legislation prohibiting secrecy in adoption and guaranteeing the right of the child to know his or her origins", - "values": [ - "Rights of the Child" - ] - }, - { - "text": "Consider establishing a coordination mechanism between stakeholders in charge of children's rights to optimize child protection", - "values": [ - "Rights of the Child" - ] - }, - { - "text": "Continue to work in the field of human rights worldwide ", - "values": [ - "Other" - ] - }, - { - "text": "Accelerate the establishment of a national human rights institution in accordance with the Paris Principles ", - "values": [ - "National Human Rights Institution" - ] - }, - { - "text": "Issue a standing invitation to the Special Procedures ", - "values": [ - "Special procedures" - ] - }, - { - "text": "Put in place a national human rights institution in accordance with the Paris Principles", - "values": [ - "National Human Rights Institution" - ] - }, - { - "text": "Strengthen the capacity of the national human rights institution to have access to cases that require special attention", - "values": [ - "National Human Rights Institution" - ] - }, - { - "text": "Adopt concrete measures and programmes to effectively address the causes for high school dropout rates among girls such as early pregnancy, gender-based violence and the lack of adequate sanitation in schools and to ensure their implementation, including by providing the necessary funding", - "values": [ - "Right to education", - "Rights of the Child", - "Women's rights" - ] - }, - { - "text": "Further addressing the remaining gaps between the various populations in Israeli society", - "values": [ - "Other" - ] - }, - { - "text": "Strengthen its measures to ensure effective investigations into all allegations of torture and ill-treatment committed by law enforcement officials ", - "values": [ - "Human rights violations by state agents", - "Torture and other CID treatment" - ] - }, - { - "text": "Provide the necessary financial and human resources to strengthen the implementation of its National Action Plan against Racism, Xenophobia and Intolerance, including by intensifying efforts to conduct investigations promptly and taking action against the perpetrators of racist and xenophobic speeches and public statements", - "values": [ - "Racial discrimination" - ] - }, - { - "text": "Accede to the Optional Protocol to CAT and establish its national preventive mechanism as required under that Protocol", - "values": [ - "Detention", - "International instruments", - "Torture and other CID treatment" - ] - }, - { - "text": "Promote the national policy aimed at achieving gender equality and the empowerment of women", - "values": [ - "Women's rights" - ] - }, - { - "text": "Continue with efforts to promote and protect human rights according to international commitments and religious and cultural specificities", - "values": [ - "International instruments" - ] - }, - { - "text": "Ratify the International Covenant on Economic, Social and Cultural Rights.", - "values": [ - "ESC rights - general", - "International instruments" - ] - }, - { - "text": "Harmonize national legislation and carry out the necessary efforts in order to implement CEDAW ", - "values": [ - "International instruments", - "Women's rights" - ] - }, - { - "text": "Enact legislation to ensure the humane treatment of prisoners", - "values": [ - "Detention" - ] - }, - { - "text": "Take further measures to address violence against women and shortcomings concerning the enjoyment of rights by women and girls ", - "values": [ - "Rights of the Child", - "Women's rights" - ] - }, - { - "text": "Take effective measures to raise awareness of the rights stipulated in the conventions it has acceded to concerning the judiciary and law enforcement officials", - "values": [ - "Human rights education and training", - "Justice" - ] - }, - { - "text": "Ensure prompt, comprehensive, and effective investigations into credible allegations of human rights violations by members of the security forces, and examine options for establishing an independent review mechanism with the ability to recommend prosecutions ", - "values": [ - "Human rights violations by state agents" - ] - }, - { - "text": "Take complementary protection measures for victims and witnesses of torture and enforced disappearances, and strengthen the procedures of criminal complaints and sanctions against the perpetrators", - "values": [ - "Enforced disappearances", - "Torture and other CID treatment" - ] - }, - { - "text": "Effectively promote ethnically mixed organizations around common civil, professional and business interests in order to fully support the social cohesion of all ethnic groups", - "values": [ - "Civil society", - "Minorities" - ] - }, - { - "text": "Approve the national gender policy and put it into practice in order to guarantee, inter alia, the effective implementation of the Domestic Violence Act, the establishment of appropriate and effective coordination mechanisms to ensure effective multisectoral response to sexual and domestic violence and sexual harassment in the workplace and in public life, as well as the explicit prohibition of discrimination against women", - "values": [ - "Rights of the Child", - "Women's rights" - ] - }, - { - "text": "Strengthen its social integration policy and take vigorous measures to combat all discriminatory practices proven in the territory ", - "values": [ - "Other" - ] - }, - { - "text": "Continue its efforts in implementing a social security system accessible to urban and rural residents", - "values": [ - "ESC rights - general" - ] - }, - { - "text": "Impose a moratorium on pending executions and review the Penal Code with the aim of a complete abolition of the death penalty", - "values": [ - "Death penalty" - ] - }, - { - "text": "Ratify the conventions on refugees and stateless persons", - "values": [ - "Asylum-seekers - refugees", - "International instruments", - "Statelessness and the right to nationality" - ] - }, - { - "text": "Finalize efforts to create a National Human Rights Commission in line with the Paris Principles", - "values": [ - "National Human Rights Institution" - ] - }, - { - "text": "Continue its endeavours to contribute to improving the criminal justice system in the country ", - "values": [ - "Corruption" - ] - }, - { - "text": "Ensure the full independence of the Office of the Ombudsman in accordance with the Paris Principles on independent national human rights institutions ", - "values": [ - "National Human Rights Institution" - ] - }, - { - "text": "Continue working so that Iranian women have the right to transmit their nationality to their children", - "values": [ - "Women's rights" - ] - }, - { - "text": "Redouble the efforts to increase women's participation in society, in particular by increasing the number of women in decision-making", - "values": [ - "Women's rights" - ] - }, - { - "text": "Promote the approval of the national policy and action plan for human rights", - "values": [ - "General" - ] - }, - { - "text": "Take all necessary measures for the optimal application of these texts", - "values": [ - "Rights of the Child", - "Trafficking" - ] - }, - { - "text": "Adopt measures to guarantee adequate protection and respect for the right to information, and freedoms of expression, and the press ", - "values": [ - "Freedom of opinion and expression", - "Freedom of the press" - ] - }, - { - "text": "End discrimination against ethnic minorities to ensure that non-Muslims are not subjected to Sharia law and are able to practise their own religion without hindrance", - "values": [ - "Freedom of religion and belief", - "Minorities", - "Racial discrimination" - ] - }, - { - "text": "Put into practice additional measures which encourage a larger presence of Arab students in university lecture halls as well as a policy encouraging the inclusion of Arab lecturers in the universities", - "values": [ - "Minorities", - "Right to education" - ] - }, - { - "text": "Establish a fully-fledged National Human Rights Institution in full compliance with the Paris Principles", - "values": [ - "National Human Rights Institution" - ] - }, - { - "text": "Continue their efforts to establish an independent national institution for human rights, in accordance with the Paris Principles ", - "values": [ - "National Human Rights Institution" - ] - }, - { - "text": "Continue promoting political dialogue and national reconciliation in order to create conditions for economic development and promote the economic, social and cultural rights of its people", - "values": [ - "Development", - "ESC rights - general" - ] - }, - { - "text": "Proceed to the ratification of the Optional Protocol to the Convention on the Rights of Persons with Disabilities as soon as possible ", - "values": [ - "Disabilities", - "International instruments" - ] - }, - { - "text": "Ensure prompt and effective implementation of the NAPIE and other strategies and action plans relevant to the full realization of the rights of Roma children by, inter alia, making available the necessary human and other resources and setting clear, measurable and ambitious targets for transfers of children to ordinary education and for overall de-segregation of the school system", - "values": [ - "Migrants", - "Right to education", - "Rights of the Child" - ] - }, - { - "text": "Enact legislation prohibiting all forms of traditional practice of FGM in line with recommendations made by the Human Rights Committee, CEDAW and the Committee on the Rights of the Child.", - "values": [ - "Rights of the Child", - "Torture and other CID treatment", - "Treaty bodies", - "Women's rights" - ] - }, - { - "text": "Adopt a human-rights-based approach when designing and implementing the reforms towards the democratization of the country", - "values": [ - "General" - ] - }, - { - "text": "Continue to combat any form of discrimination, as well as stereotypes of persons belonging to minorities", - "values": [ - "Minorities", - "Racial discrimination" - ] - }, - { - "text": "Adopt child friendly procedural rules in the justice system", - "values": [ - "Justice", - "Rights of the Child" - ] - }, - { - "text": "Ask the international community for assistance to strengthen its capacity, thereby supporting it in its actions, particularly to attain the MDGs.", - "values": [ - "Development", - "Technical assistance and cooperation" - ] - }, - { - "text": "Continue to address the inequalities affecting particularly the Roma community", - "values": [ - "Minorities" - ] - }, - { - "text": "Increase its efforts to obtain the A status in conformity with the Paris principles for the National Commission of Human Rights created in September 2011", - "values": [ - "National Human Rights Institution" - ] - }, - { - "text": "Set up an independent mechanism for investigating complaints of violations of human rights.", - "values": [ - "National Human Rights Institution" - ] - }, - { - "text": "Establish a specific budget line to address access to drinking water and sanitation through effective interministerial coordination and enactment of laws which strengthen monitoring environment in this regard", - "values": [ - "Environment", - "Right to water and sanitation" - ] - }, - { - "text": "Accede to the international instruments to which it is not a party", - "values": [ - "International instruments" - ] - }, - { - "text": "Ensure that the broadcasting of the public broadcaster is balanced and not favourable to any political party and that the Broadcasting Law is not applied selectively and abused for political process", - "values": [ - "Freedom of the press" - ] - }, - { - "text": "Accede and fully align its national legislation with the Rome Statute of the International Criminal Court, and accede to the Agreement on Privileges and Immunities of the Court", - "values": [ - "International instruments", - "Justice" - ] - }, - { - "text": "Apply and adopt a comprehensive anti-discrimination law containing a general prohibition of all forms of direct and indirect discrimination", - "values": [ - "Other" - ] - }, - { - "text": "Align its national legislation with the Rome Statute of the International Criminal Court and ratify the Rome Statute and the Agreement on Privileges and Immunities of the International Criminal Court", - "values": [ - "International instruments", - "Justice" - ] - }, - { - "text": "The United States is committed to supporting tribes' efforts to recover their human remains, sacred and ceremonial objects and cultural property that has been stolen, looted or trafficked.", - "values": [ - "Indigenous peoples" - ] - }, - { - "text": "Exert all efforts to ensure traditional practices are compatible with human rights obligations, including female genital mutilation, through enhancing the enforceability of relevant laws in a proper way", - "values": [ - "Rights of the Child", - "Torture and other CID treatment", - "Women's rights" - ] - }, - { - "text": "Continue with its enormous efforts to fight against violence in all its forms", - "values": [ - "Public security" - ] - }, - { - "text": "Increase its Official Development Aid to 0.5 percent of its gross national income with a view to reaching the United Nations target of 0.7 percent", - "values": [ - "Development" - ] - }, - { - "text": "Take necessary measures to address homophobic and transphobic crime, including by establishing a system for recording such crimes", - "values": [ - "Sexual Orientation and Gender Identity" - ] - }, - { - "text": "Ratify without delay the Rome Statute of the International Criminal Court", - "values": [ - "International instruments", - "Justice" - ] - }, - { - "text": "Provide more resources for implementing the national policies and programmes in favour of social vulnerable groups like women, children, poor people, ethnic minorities and migrants ", - "values": [ - "Migrants", - "Minorities", - "Poverty", - "Rights of the Child", - "Women's rights" - ] - }, - { - "text": "Continue to ensure the fulfilment of the needs of vulnerable groups in Brunei Darussalam and, in this regard, also continue to uphold its commitments to the relevant international human rights instruments to which Brunei Darussalam is a party", - "values": [ - "International instruments" - ] - }, - { - "text": "Take prompt action to prevent harassment by police officers of members of the national Human Rights Commission, human rights defenders and citizens", - "values": [ - "Human rights defenders", - "Human rights violations by state agents", - "National Human Rights Institution" - ] - }, - { - "text": "Step up efforts to promote and protect the rights of the child, in particular the right to education", - "values": [ - "Right to education", - "Rights of the Child" - ] - }, - { - "text": "Ensure the enjoyment by people with disabilities of their rights while in detention premises", - "values": [ - "Detention", - "Disabilities" - ] - }, - { - "text": "Protect migrant workers in their rights, improve their living and working conditions", - "values": [ - "Labour", - "Migrants" - ] - }, - { - "text": "Ensure that the Office of the Ombudsman continues to operate at full capacity and is brought into conformity with the Paris Principles", - "values": [ - "National Human Rights Institution" - ] - }, - { - "text": "Continue its efforts, at national and international levels, towards the protection and promotion of the civil society space", - "values": [ - "Civil society", - "Freedom of association and peaceful assembly" - ] - }, - { - "text": "Ensure that the policy of promoting the Georgian language is not pursued to the detriment of the linguistic rights of minorities ", - "values": [ - "Minorities" - ] - }, - { - "text": "Develop strategies to address the causes and consequences of violence against Aboriginal women and girls ", - "values": [ - "Indigenous peoples", - "Rights of the Child", - "Women's rights" - ] - }, - { - "text": "Continue to engage with the international community, particularly the major emitting countries of the developed world, many of whom are States members of the Council, working with them in order to protect the human rights of Tuvaluans by securing significant global reductions in greenhouse gas emissions", - "values": [ - "Environment" - ] - }, - { - "text": "Continue efforts to strengthen the system for combating trafficking in persons and establish a response mechanism to provide assistance to victims of this crime", - "values": [ - "Trafficking" - ] - }, - { - "text": "Sign and ratify ICESCR, CAT, the Optional Protocol to the International Convention on the Elimination of All Forms of Discrimination against Women and CED", - "values": [ - "ESC rights - general", - "Enforced disappearances", - "International instruments", - "Torture and other CID treatment", - "Women's rights" - ] - }, - { - "text": "Continue to engage its regional and bilateral partners with the view to build capacity and mobilize resources in support of efforts to fulfil its human rights obligations", - "values": [ - "Technical assistance and cooperation" - ] - }, - { - "text": "Finalize the commitment to accede to the International Convention on the Protection of the Rights of All Migrant Workers and Members of Their Families", - "values": [ - "International instruments", - "Labour", - "Migrants" - ] - }, - { - "text": "Take all necessary measures to fight effectively against all forms of discrimination", - "values": [ - "Other" - ] - }, - { - "text": "Continue its efforts towards reforming the security sector institutions, with the support of OHCHR and the international community.", - "values": [ - "Public security", - "Technical assistance and cooperation" - ] - }, - { - "text": "Establishment of an inter-institutional forum on human rights issues for the preparation of periodic reports", - "values": [ - "Special procedures", - "Treaty bodies", - "UPR process" - ] - }, - { - "text": "Implement without any delay the recently presented action plan to improve the security and well-being of people with albinism", - "values": [ - "Minorities" - ] - }, - { - "text": "Strengthen efforts to improve the education system, reduce the dropout rates and eradicate illiteracy by inter alia, allocating more resources in the education sector and strengthening cooperation with the international community and organizations including UNICEF and UNESCO", - "values": [ - "Right to education" - ] - }, - { - "text": "Take all necessary measures to prevent and eliminate all manifestations of racism, Islamophobia, xenophobia, and religious intolerance ", - "values": [ - "Racial discrimination" - ] - }, - { - "text": "Continue to fight resolutely against the practice of arbitrary or summary executions and against impunity", - "values": [ - "Extrajudicial executions", - "Impunity" - ] - }, - { - "text": "Intensify its actions for a greater enjoyment by the people of fundamental human rights", - "values": [ - "General" - ] - }, - { - "text": "Take concrete steps to ensure the independence of the judiciary", - "values": [ - "Justice" - ] - }, - { - "text": "Further consolidate the Office of the Ombudsman as the national human rights institution, so that it is in line with the Paris Principles ", - "values": [ - "National Human Rights Institution" - ] - }, - { - "text": "Engage partners at the national, regional and international levels in efforts aimed at building capacity for Government personnel in the field of human rights, particularly judicial and law enforcement personnel ", - "values": [ - "Human rights education and training", - "Justice" - ] - }, - { - "text": "End the practice of arbitrary, public and private executions", - "values": [ - "Death penalty" - ] - }, - { - "text": "Set a timeline with clear deadlines for the implementation of all Bahrain Independent Commission of Inquiry recommendations and provide regular and public reports on the progress of their implementation", - "values": [ - "Justice" - ] - }, - { - "text": "Continue its efforts to protect the rights of people living with a disability, and consider ways to increase job opportunities, for rural, women, and elderly people living with a disability", - "values": [ - "Disabilities", - "Women's rights" - ] - }, - { - "text": "Make the necessary constitutional and legislative amendments to implement its National Domestic Violence Policy with a view to end violence against women and girls", - "values": [ - "Rights of the Child", - "Women's rights" - ] - }, - { - "text": "Continue with the reform of the judiciary, ensuring its independence ", - "values": [ - "Justice" - ] - }, - { - "text": "Respond favourably to the request of the Special Rapporteur on torture to visit the country", - "values": [ - "Special procedures", - "Torture and other CID treatment" - ] - }, - { - "text": "Issue a standing invitation to the special procedures and respond in a reasonable period of time to treaty bodies' requests, whether with regard to submitting periodic reports or to responding to communications, as the case may be ", - "values": [ - "Special procedures", - "Treaty bodies" - ] - }, - { - "text": "Continue to reform laws to ensure that no one, especially children, will be left stateless", - "values": [ - "Rights of the Child", - "Statelessness and the right to nationality" - ] - }, - { - "text": "Continue the process of abolishing the death penalty and consider the ratification of the Second Optional Protocol to the International Covenant on Civil and Political Rights", - "values": [ - "Death penalty", - "International instruments" - ] - }, - { - "text": "Ratify the Agreement on the Privileges and Immunities of the International Criminal Court ", - "values": [ - "International instruments" - ] - }, - { - "text": "Ratify the Convention on the Status of Stateless Persons and the Convention on the Reduction of Statelessness", - "values": [ - "International instruments", - "Statelessness and the right to nationality" - ] - }, - { - "text": "Further revise article 301 of the Penal Code to fully ensure freedom of expression and non persecution on the grounds of racial discrimination or motivated by it", - "values": [ - "Freedom of opinion and expression", - "Racial discrimination" - ] - }, - { - "text": "Take more measures to combat poverty and improve the living standards of the population, in particular of those who live in rural areas", - "values": [ - "Poverty" - ] - }, - { - "text": "Create a national commission of human rights and freedoms.", - "values": [ - "National Human Rights Institution" - ] - }, - { - "text": "Sweden committed to closely consult civil society and other stakeholders in the follow up of the review, and reiterated its continuous engagement with the Human Rights Council. Sweden expressed that it intended to maintain a high level of ambition regarding the implementation of human rights issues on a national level, and that the UPR process would continue to constitute a vital part of that work.", - "values": [ - "Civil society", - "UPR process" - ] - }, - { - "text": "Strengthen the role of its national mechanisms for the promotion and protection of the rights of minorities, refugees and internally displaced persons, with appropriate assistance from the international community.", - "values": [ - "Internally displaced persons", - "Minorities", - "Technical assistance and cooperation" - ] - }, - { - "text": "Ratify the International Labour Organization Indigenous and Tribal Peoples Convention, 1989 (No. 169)", - "values": [ - "Indigenous peoples", - "International instruments" - ] - }, - { - "text": "Effectively comply with the 1954 Convention Relating to the Status of Stateless Persons and the 1961 Convention on the Reduction of Statelessness and pay particular attention to the 326,906 persons considered as non-citizens, and therefore stateless persons. Pay special and urgent attention and provide a solution to this severe and current humanitarian problem", - "values": [ - "International instruments", - "Statelessness and the right to nationality" - ] - }, - { - "text": "Defend children's rights by ensuring that the Directorate on Childhood, Adolescent and Family Issues has the appropriate legislative framework and financial resources to meet its mandate, and by implementing policies and programmes to protect children, adolescents and returned child migrants", - "values": [ - "Migrants", - "Rights of the Child" - ] - }, - { - "text": "Adopt the necessary measures to guarantee the full independence and impartiality of the National Human Rights Commission, ensure the transparency of the appointment process of its members and ensure that it has an independent oversight mechanism", - "values": [ - "National Human Rights Institution" - ] - }, - { - "text": "Ensure that the Office of the Ombudsman is in line with the Paris Principles related to the National Institutions for promotion of human rights", - "values": [ - "National Human Rights Institution" - ] - }, - { - "text": "Strengthen the existing health-care system to enhance access to health services by all with special emphasis on preventing life-threatening illnesses and incidents", - "values": [ - "Right to health" - ] - }, - { - "text": "Particularly address the question of access to education and the situation of disadvantaged groups of women ", - "values": [ - "Right to education", - "Women's rights" - ] - }, - { - "text": "Guarantee the full right to freedom of expression", - "values": [ - "Freedom of opinion and expression" - ] - }, - { - "text": "Submit its long overdue reports to the relevant Treaty Bodies", - "values": [ - "Treaty bodies" - ] - }, - { - "text": "Take steps to end impunity for extensive use of pre-trial detention, ill- treatment and alleged torture of individuals in police custody, by investigating and prosecuting all perpetrators", - "values": [ - "Detention", - "Impunity", - "Torture and other CID treatment" - ] - }, - { - "text": "Inform relatives and the public about the whereabouts of all persons who have been under arrest and whose fate is currently unknown ", - "values": [ - "Detention" - ] - }, - { - "text": "Take measures to prioritize the protection of girls and women, and to curb school dropout by teenage girls, and adopt specific legislation for their protection against violence and forced marriage", - "values": [ - "Right to education", - "Rights of the Child", - "Women's rights" - ] - }, - { - "text": "Strengthen the capacity of the national human rights mechanisms", - "values": [ - "National Human Rights Institution" - ] - }, - { - "text": "Withdraw the declaration made upon accession, regarding article 1 of CAT ", - "values": [ - "International instruments", - "Torture and other CID treatment" - ] - }, - { - "text": "Ensure its domestic legislation establishes universal jurisdiction over war crimes, especially with regard to the use of children in hostilities and sexual violence, including rape ", - "values": [ - "International humanitarian law", - "Rights of the Child", - "Women's rights" - ] - }, - { - "text": "Revise the Trans Act (on the Legal Recognition of the Gender of Transsexuals) by abolishing the need for sterilization, other medical treatment and a mental health diagnosis as requirements for a person\u2019s legal recognition of their gender identity and ensure that medical procedures performed on intersex infants and children take into account the best interest of the child", - "values": [ - "Rights of the Child", - "Sexual Orientation and Gender Identity" - ] - }, - { - "text": "Make fully operational the mechanisms for implementing the minority strategy and the national Roma strategy, such as the National Minority Council and a special funding mechanism.", - "values": [ - "Minorities" - ] - }, - { - "text": "Strengthen its efforts to eliminate discrimination against women and girls, supported by the bill on human trafficking", - "values": [ - "Rights of the Child", - "Trafficking", - "Women's rights" - ] - }, - { - "text": "Follow up on the recommendation of ILO to continue efforts to ensure full equality of opportunity and treatment for women, persons of African Descent and indigenous persons ", - "values": [ - "Indigenous peoples", - "International instruments", - "Minorities", - "Women's rights" - ] - }, - { - "text": "Review the institutions of the Human Rights Commission and the Human Rights Commissioner ombudsperson, and to take the measures necessary to bring them into conformity with the Paris Principles", - "values": [ - "National Human Rights Institution" - ] - }, - { - "text": "Adequately staff Family Support Units in police stations to address violence against women ", - "values": [ - "Women's rights" - ] - }, - { - "text": "Adopt measures to address the adverse effects of climate change with a human-rights based-approach, and strengthen the strategies for adjustment and management of disaster risk", - "values": [ - "Environment" - ] - }, - { - "text": "Continue its efforts to develop national information and education strategy which encourages a culture of disaster risk reduction ", - "values": [ - "Environment" - ] - }, - { - "text": "Consider revising Executive Decree No. 739 on the regulation of social organizations and the Organic Act on Communication in the light of international commitments on human rights", - "values": [ - "Civil society" - ] - }, - { - "text": "Promptly take all appropriate measures and/or public policies to eliminate all forms of discrimination against migrant workers, especially women and ensure that they can exercise and enjoy their human rights in all areas on an equal footing with nationals ", - "values": [ - "Labour", - "Migrants", - "Women's rights" - ] - }, - { - "text": "Ratify the International Labour Organization Indigenous and Tribal Peoples Convention, 1989 (No. 169) and Domestic Workers Convention, 2011 (No. 189) ", - "values": [ - "Indigenous peoples", - "International instruments", - "Labour" - ] - }, - { - "text": "Abolish the criminalization of single mothers, allow full legal recognition of children born outside marriage (including with regard to their name and right of inheritance) and introduce DNA testing to ascertain paternity", - "values": [ - "Rights of the Child", - "Women's rights" - ] - }, - { - "text": "Join the declaration on sexual orientation and gender identity, while noting with congratulations the decriminalization of homosexuality", - "values": [ - "Sexual Orientation and Gender Identity" - ] - }, - { - "text": "Amend the Criminal Code as to abolish the death penalty ", - "values": [ - "Death penalty" - ] - }, - { - "text": "Make continued efforts in promoting sustainable development of health sector, while strengthening the partnership with the local community in delivering high-quality health services to all citizens", - "values": [ - "Right to health" - ] - }, - { - "text": "Ratify the Optional Protocols to the two Covenants [ICCPR and ICESCR] and CEDAW", - "values": [ - "International instruments", - "Women's rights" - ] - }, - { - "text": "Take all social, educational and legal measures necessary to address the phenomenon of children accused of witchcraft", - "values": [ - "Rights of the Child", - "Women's rights" - ] - }, - { - "text": "Ratify the conventions that Ghana is a signatory to", - "values": [ - "International instruments" - ] - }, - { - "text": "Facilitate the completion of existing initiatives to ratify the international instruments listed in paragraph 7 of its national report", - "values": [ - "International instruments" - ] - }, - { - "text": "Continue cooperating closely with neighbouring countries in combating and suppressing trafficking in persons, particularly women and girls and in addressing the situation of irregular migrants, refugees and asylum-seekers ", - "values": [ - "Asylum-seekers - refugees", - "Migrants", - "Rights of the Child", - "Trafficking", - "Women's rights" - ] - }, - { - "text": "Promote efforts to fight illiteracy", - "values": [ - "Right to education" - ] - }, - { - "text": "Impose a formal moratorium on capital punishment with a view to abolishing it entirely in line with General Assembly resolutions 62/149 and 63/168 as well as the Second Optional Protocol to ICCPR ", - "values": [ - "Death penalty", - "International instruments" - ] - }, - { - "text": "Continue to cooperate with the Special Rapporteur on the situation of human rights in the Islamic Republic of Iran with the aim of having greater cooperation and consultation with the Government", - "values": [ - "Special procedures" - ] - }, - { - "text": "Continue its efforts in the promotion and protection of human rights", - "values": [ - "General" - ] - }, - { - "text": "Promote the realization of the right of everyone to take part in cultural life, including by ensuring the facilitation of access to cultural goods, particularly for disadvantaged and marginalized individuals and groups", - "values": [ - "ESC rights - general" - ] - }, - { - "text": "Fully align its national legislation and policies with the provisions of the United Nations Convention against Corruption in order to effectively combat corruption and to further improve integrity, transparency and accountability ", - "values": [ - "Corruption", - "International instruments" - ] - }, - { - "text": "Continue to develop measures and programmes allowing universal access to education", - "values": [ - "Right to education" - ] - }, - { - "text": "Take effective measures to encourage tolerance and to combat illegal stands and stereotypes against minorities, in particular Muslims", - "values": [ - "Freedom of religion and belief", - "Minorities", - "Racial discrimination" - ] - }, - { - "text": "Continue to take steps to strengthen the protection for and assistance to victims, and to prosecute perpetrators, by ensuring the full implementation of the Trafficking in Persons Act", - "values": [ - "Trafficking" - ] - }, - { - "text": "Allocate more financial and other resources to ensure effective implementation of initiatives related to the advancement of women and gender equality, in particular the 365-day National Plan of Action to end gender violence ", - "values": [ - "Women's rights" - ] - }, - { - "text": "Enhance measures on the establishment of grass-roots members-based and members-driven civil society organizations ", - "values": [ - "Civil society" - ] - }, - { - "text": "Continue with its efforts to reform the judicial system and its practices and further examine ways by which certain legal provisions are aligned with international human rights standards", - "values": [ - "International instruments", - "Justice" - ] - }, - { - "text": "Provide the Office of the Ombudsman with the necessary financial and human resources so that it can implement its action plan ", - "values": [ - "National Human Rights Institution" - ] - }, - { - "text": "Continue to strengthen policies and programmes to ensure that all in Seychelles have access to safe water and sanitation", - "values": [ - "Right to water and sanitation" - ] - }, - { - "text": "Strengthen the state of laws, grass-root democracy and social equitability ", - "values": [ - "Justice" - ] - }, - { - "text": "Take further measures to ensure full respect for freedom of expression and of the press in accordance with its international obligations, including ICCPR, to which Eritrea is a party ", - "values": [ - "Freedom of opinion and expression", - "International instruments" - ] - }, - { - "text": "Further strengthen measures to promote and protect the rights of all migrant workers by ensuring their appropriate welfare and standard of living", - "values": [ - "Labour", - "Migrants" - ] - }, - { - "text": "Establish a comprehensive, robust and effective legislative mechanism aiming at the prohibition and legal sanction of all forms discrimination", - "values": [ - "Other" - ] - }, - { - "text": "Debate thoroughly, in the Plurinational Legislative Assembly, the issue of the right of individuals to appeal in cases addressed by communal courts, before the law on jurisdiction delimitation is adopted and, in that context, to devote particular attention to the contradiction between article 28 of the Procedural Penal Code and article 192.1 of the new Constitution", - "values": [ - "Justice" - ] - }, - { - "text": "Continue its efforts to strengthen the health sector, paying particular attention to access to health services for children and indigenous peoples", - "values": [ - "Indigenous peoples", - "Right to health", - "Rights of the Child" - ] - }, - { - "text": "Pursue the implementation of the Zero Hunger programme in order to reach the largest possible number of municipalities", - "values": [ - "Right to food" - ] - }, - { - "text": "Enhance efforts to promote gender equality and combat all forms of discrimination, including those on the basis of sexual orientation and gender identity", - "values": [ - "Sexual Orientation and Gender Identity" - ] - }, - { - "text": "Promote and strengthen the foundation of the family and its values among the society.", - "values": [ - "Other" - ] - }, - { - "text": "Ensure that civil society organizations and human rights defenders can operate in a safe environment and that all allegations of intimidation, harassment and violence are fully investigated", - "values": [ - "Civil society", - "Human rights defenders" - ] - }, - { - "text": "Further strengthen activities to prevent the spread of HIV and stigmatization and discrimination against people living with HIV.", - "values": [ - "HIV - Aids" - ] - }, - { - "text": "Take all the necessary steps to ensure that all perpetrators of torture are prosecuted and brought to justice", - "values": [ - "Torture and other CID treatment" - ] - }, - { - "text": "Amend the Sexual Offences and Domestic Violence Act to criminalize marital rape ", - "values": [ - "Women's rights" - ] - }, - { - "text": "Develop the new media legislation on the basis of broad consultation with all stakeholders, and to ensure full respect for international standards on human rights", - "values": [ - "Freedom of the press", - "International instruments" - ] - }, - { - "text": "Take concrete steps to lift or extend the two-year limitation, applicable to Meskhetian Turks who are granted conditional Georgian citizenship, to relinquish any other citizenship previously held", - "values": [ - "Minorities" - ] - }, - { - "text": "Undertake strategies to reduce gun violence, particularly among poor black youth", - "values": [ - "Public security" - ] - }, - { - "text": "Ratify the Convention on the Elimination of All Forms of Racial Discrimination, the Convention against Torture and Other Cruel, Inhuman or Degrading Treatment or Punishment and its Optional Protocol", - "values": [ - "Detention", - "International instruments", - "Racial discrimination", - "Torture and other CID treatment" - ] - }, - { - "text": "Take the necessary measures to continue promoting a culture of tolerance and non-discrimination in Slovak society ", - "values": [ - "Other" - ] - }, - { - "text": "Carry out the necessary negotiations, within the framework of the standing invitation to special procedures, to ensure the effectiveness of visits by special procedures, in particular the Special Rapporteur on the promotion and protection of freedom of opinion and expression", - "values": [ - "Freedom of opinion and expression", - "Special procedures" - ] - }, - { - "text": "Bahrain will also explore the possibility of obtaining appropriate technical assistance to strengthen national implementation of the Convention [on the Elimination of All Forms of Racial Discrimination].", - "values": [ - "International instruments", - "Racial discrimination", - "Technical assistance and cooperation" - ] - }, - { - "text": "Continue to engage with relevant international human rights mechanisms constructively.", - "values": [ - "General" - ] - }, - { - "text": "Abolish forced treatment and protect persons with disabilities in psychiatric hospitals from violence, abuse and ill-treatment", - "values": [ - "Disabilities", - "Torture and other CID treatment" - ] - }, - { - "text": "Establish a moratorium on executions with a view to abolish the death penalty ", - "values": [ - "Death penalty" - ] - }, - { - "text": "Pursue and strengthen policies against discrimination and intolerance", - "values": [ - "Other" - ] - }, - { - "text": "Consider establishing a moratorium on the death penalty with the view to its later abolition, above all in cases involving minors and those guilty of non-lethal offences ", - "values": [ - "Death penalty", - "Rights of the Child" - ] - }, - { - "text": "Adopt all necessary legislative and policy measures to effectively combat corruption and related impunity. This includes the immediate creation of an independent and effective specialized anti-corruption court", - "values": [ - "Corruption", - "Impunity", - "Justice" - ] - }, - { - "text": "Continue its efforts to ensure human rights, despite the variety of real constraints facing it, with the support of OHCHR and the whole international community.", - "values": [ - "Technical assistance and cooperation" - ] - }, - { - "text": "Continue the efforts aiming at providing educational and health services", - "values": [ - "Right to education", - "Right to health" - ] - }, - { - "text": "Ensure that detainees in the custody of the General Directorate of the Border Police and the Ministry of the Interior are treated in a humane and dignified manner and that their detention fully complies with the international obligations of Bulgaria governing the administrative detention of migrants", - "values": [ - "Detention", - "Migrants", - "Torture and other CID treatment" - ] - }, - { - "text": "Ensure the systematic collection and publication of statistical data on hate crimes", - "values": [ - "Racial discrimination" - ] - }, - { - "text": "Accelerate the establishment of a national mechanism for the prevention of torture ", - "values": [ - "Detention", - "Torture and other CID treatment" - ] - }, - { - "text": "Accede to the main international human rights instruments, including the International Covenant on Civil and Political Rights (ICCPR) and the International Covenant on Economic, Social and Cultural Rights (ICESCR).", - "values": [ - "CP rights - general", - "ESC rights - general", - "International instruments" - ] - }, - { - "text": "Allocate additional resources to the State's Prosecutor's Office to ensure the full application of the Instructions it issued in October 2008 with regard to local war crimes proceedings", - "values": [ - "Justice" - ] - }, - { - "text": "Establish an immediate moratorium on the use of the death penalty with a view to abolition and in the meantime immediately end public and extrajudicial executions", - "values": [ - "Death penalty", - "Extrajudicial executions" - ] - }, - { - "text": "Continue strengthening the national plan against the scourge of domestic violence, placing emphasis on prevention and awareness-raising of public opinion ", - "values": [ - "Human rights education and training", - "Rights of the Child", - "Women's rights" - ] - }, - { - "text": "Further reinforce the laws banning FGM and take other proactive measures to fight against these practices ", - "values": [ - "Rights of the Child", - "Torture and other CID treatment", - "Women's rights" - ] - }, - { - "text": "Consider ratifying the Rome Statute of the International Criminal Court and ensure its implementation ", - "values": [ - "International instruments", - "Justice" - ] - }, - { - "text": "Continue its efforts to combat terrorism", - "values": [ - "Counter-terrorism" - ] - }, - { - "text": "Explore and develop, in consultation with the Maori, means of addressing Maori concerns regarding the Treaty settlement process ", - "values": [ - "Indigenous peoples" - ] - }, - { - "text": "Decriminalize same-sex activity between consenting adults", - "values": [ - "Sexual Orientation and Gender Identity" - ] - }, - { - "text": "Take further steps to ensure that children with disabilities be included in the development of the education system and in health insurance plans, as well as to take all necessary measures to ensure the implementation of legislation providing services for children with disabilities", - "values": [ - "Disabilities", - "Right to education", - "Right to health", - "Rights of the Child" - ] - }, - { - "text": "Continue its efforts to improve its education system and provide skills development programmes especially for youths", - "values": [ - "Right to education" - ] - }, - { - "text": "Remove the classification of information on the death penalty as a State secret, and provide statistics and information related to death sentences and executions ", - "values": [ - "Death penalty" - ] - }, - { - "text": "Establish a robust mechanism to monitor all incidents of racism and implement measures to combat them more effectively", - "values": [ - "Racial discrimination" - ] - }, - { - "text": "Adopt effective measures for the prevention of any form of racism and discrimination ", - "values": [ - "Racial discrimination" - ] - }, - { - "text": "Strengthen the measures to effectively fight violence against women", - "values": [ - "Women's rights" - ] - }, - { - "text": "Enhance efforts to implement the National Strategy on Gender Equality and Equity, including addressing the underrepresentation of women in decision-making bodies and eliminating harmful traditional practices", - "values": [ - "Torture and other CID treatment", - "Women's rights" - ] - }, - { - "text": "Take effective measures to ensure the full realization of the right to freedom of expression, including on the Internet, of assembly and of association as well as to ensure that all human rights defenders, lawyers and other civil society actors are able to carry out their legitimate activities without fear or threat of reprisal", - "values": [ - "Civil society", - "Freedom of association and peaceful assembly", - "Freedom of opinion and expression", - "Human rights defenders" - ] - }, - { - "text": "Continue to build up its engagement with its international and regional partners in order to better assist transiting refugees and migrants ", - "values": [ - "Asylum-seekers - refugees", - "Migrants" - ] - }, - { - "text": "Ratify as soon as possible ICRPD", - "values": [ - "Disabilities", - "International instruments" - ] - }, - { - "text": "Ratify OP-CEDAW ", - "values": [ - "International instruments", - "Women's rights" - ] - }, - { - "text": "Sign and ratify as soon as possible the optional protocol to the International Covenant on Economic, Social and Cultural Rights ", - "values": [ - "ESC rights - general", - "International instruments" - ] - }, - { - "text": "Consider enacting legislation on violence against women, including domestic violence, as recommended by the Committee on the Elimination of Discrimination against Women.", - "values": [ - "Treaty bodies", - "Women's rights" - ] - }, - { - "text": "Consider developing and implementing a comprehensive plan of action to further women's rights, including measures to combat violence against women ", - "values": [ - "Women's rights" - ] - }, - { - "text": "Continue efforts to protect children from sexual abuse and exploitation by implementing the Basic Plan adopted in April 2017 through measures to combat sexual exploitation of children", - "values": [ - "Rights of the Child", - "Trafficking" - ] - }, - { - "text": "Encourage the structural strengthening of civil society organizations that advocate the promotion and protection of human rights", - "values": [ - "Civil society" - ] - }, - { - "text": "Further consider measures to secure the integration of the Roma community", - "values": [ - "Minorities" - ] - }, - { - "text": "Accede to the International Convention on Protection of the Rights of All Migrant Workers and Members of Their Families.", - "values": [ - "International instruments", - "Labour", - "Migrants" - ] - }, - { - "text": "Set up specialized bodies to investigate and prosecute allegations of flagrant violations of human rights committed in the framework of 'arraigo'", - "values": [ - "Justice" - ] - }, - { - "text": "Elaborate integrated measures to ensure unimpeded access for persons with disabilities", - "values": [ - "Disabilities" - ] - }, - { - "text": "Continue its engagement with the United Nations human rights mechanisms for the promotion and protection of human rights", - "values": [ - "Special procedures", - "Treaty bodies", - "UPR process" - ] - }, - { - "text": "Continue strengthening the decentralization of health-care services to increase coverage, particularly in rural areas ", - "values": [ - "Right to health" - ] - }, - { - "text": "Address the legislative gap that relates to domestic violence offences and update the Criminal Code to recognize domestic violence as a criminal offence", - "values": [ - "Rights of the Child", - "Women's rights" - ] - }, - { - "text": "Take further measures to protect human health in the context of ensuring effective ways of sustainable development ", - "values": [ - "Development", - "Right to health" - ] - }, - { - "text": "Enforce existing laws to bring to justice perpetrators of extensive extrajudicial killings, enforced disappearances, attacks on civilians (including children) and instances of sexual and gender-based violence", - "values": [ - "Enforced disappearances", - "Extrajudicial executions", - "Rights of the Child", - "Women's rights" - ] - }, - { - "text": "Adopt adequate legislation to ensure that children in conflict with the law have access to justice and social reintegration, using the deprivation of liberty as a last resort", - "values": [ - "Justice", - "Rights of the Child" - ] - }, - { - "text": "Continue its efforts to promote public knowledge about HIV-AIDS, particularly among young people", - "values": [ - "HIV - Aids" - ] - }, - { - "text": "Continue efforts to promote the rights of the vulnerable and marginalized groups in the country ", - "values": [ - "Minorities" - ] - }, - { - "text": "Adopt the Framework Law on disability which will incorporate the Convention on the Rights of Persons with Disabilities", - "values": [ - "Disabilities", - "International instruments" - ] - }, - { - "text": "Ratify the Convention on the Non-Applicability of Statutory Limitations to War Crimes and Crimes Against Humanity", - "values": [ - "International instruments", - "Justice" - ] - }, - { - "text": "Respect the free exercise of the associations defending human rights, ensure that the Egyptian legislation complies with the International Covenant on Civil and Political Rights, and guarantee the right to freedom of association", - "values": [ - "Freedom of association and peaceful assembly", - "International instruments" - ] - }, - { - "text": "Continue combating all forms of discrimination against women", - "values": [ - "Women's rights" - ] - }, - { - "text": "Continue its efforts to increase the national net enrolment rate for compulsory and free basic education and to further improve the quality of education being received by Ghanaian children in school, in line with the observations made by the United Nations Children's Fund (UNICEF)", - "values": [ - "Right to education", - "Rights of the Child" - ] - }, - { - "text": "Maintain the frontal fight against corruption ", - "values": [ - "Corruption" - ] - }, - { - "text": "Take more adequate measures to prevent trafficking and strengthen the economic situation of women so as to reduce their vulnerability to exploitation and trafficking ", - "values": [ - "Trafficking", - "Women's rights" - ] - }, - { - "text": "Provide invitations to other United Nations Special Rapporteurs, in particular those responsible for human rights defenders, freedom of opinion and expression, freedom of religion or belief as soon as possible, and the independence of judges and lawyers to visit Cuba", - "values": [ - "Freedom of opinion and expression", - "Freedom of religion and belief", - "Human rights defenders", - "Justice", - "Special procedures" - ] - }, - { - "text": "Respect and protect the ability of human rights defenders and lawyers to carry out their work without hindrance, intimidation or harassment, in line with the United Nations Declaration on Human Rights Defenders and the United Nations Basic Principles on the Role of Lawyers ", - "values": [ - "Human rights defenders", - "International instruments", - "Justice" - ] - }, - { - "text": "Maintain and strengthen measures to enhance the promotion and protection of human rights ", - "values": [ - "General" - ] - }, - { - "text": "Prioritize the approval of the draft law on reparations", - "values": [ - "Justice" - ] - }, - { - "text": "Take more concrete measures with a view to fostering a genuine human rights culture with due regard to national and regional particularities as well as historical, cultural and religious backgrounds", - "values": [ - "Other" - ] - }, - { - "text": "Develop a system of recording official statistical data on the most widespread crimes and offences committed on the basis of discrimination taking into account the legal obligations of the Netherlands in registering such crimes ", - "values": [ - "Other" - ] - }, - { - "text": "Conduct an impact assessment on the implementation of its National Action Plan on the Prevention and Combating of Domestic Violence ", - "values": [ - "Rights of the Child", - "Women's rights" - ] - }, - { - "text": "Continue with its excellent national plan to combat all forms of discrimination and make the results available in English so that countries like Sri Lanka can absorb them as best practices", - "values": [ - "General" - ] - }, - { - "text": "Reinforce bilingual and intercultural education models for indigenous children and include education on indigenous cultures in the national school curriculum, with a view to promoting respect for diversity ", - "values": [ - "Indigenous peoples", - "Right to education", - "Rights of the Child" - ] - }, - { - "text": "Continue its efforts to ensure the independence of the judiciary", - "values": [ - "Justice" - ] - }, - { - "text": "Continue to enhance its domestic policies and laws to further develop an inclusive living environment for persons with disabilities", - "values": [ - "Disabilities" - ] - }, - { - "text": "Ensure that legislation introduced giving effect to the new Constitution complies with Hungary's international human rights obligations ", - "values": [ - "International instruments" - ] - }, - { - "text": "Take all necessary measures, including by undertaking a reform of legislation governing the telecommunications sector and guaranteeing access to public information, to guarantee freedom of the press, freedom of expression and the right to peaceful assembly ", - "values": [ - "Freedom of association and peaceful assembly", - "Freedom of opinion and expression", - "Freedom of the press" - ] - }, - { - "text": "Adopt effective measures, including allocating sufficient resources to implement the existing legislation for the protection of women and children. ", - "values": [ - "Rights of the Child", - "Women's rights" - ] - }, - { - "text": "Consider ratification of the third Optional Protocol to the Convention on the Rights of the Child on a communications procedure ", - "values": [ - "International instruments", - "Rights of the Child" - ] - }, - { - "text": "Advance the work of the parliamentary working group on the death penalty and introduce an immediate moratorium", - "values": [ - "Death penalty" - ] - }, - { - "text": "Issue a standing invitation and cooperate with Special Procedures mandate holders", - "values": [ - "Special procedures" - ] - }, - { - "text": "Strengthen measures on combating discrimination against women and eliminate stereotypes of Afro-descendant and indigenous people through awareness-raising campaigns ", - "values": [ - "Human rights education and training", - "Indigenous peoples", - "Minorities", - "Racial discrimination", - "Women's rights" - ] - }, - { - "text": "Call for the support of the international community to assist it in drawing up an electoral programme that will be acceptable to all the parties and bring about the realization of peace, democracy and good governance.", - "values": [ - "Elections", - "Justice", - "Technical assistance and cooperation" - ] - }, - { - "text": "Adequate financing of the new gender equality institution, promotion of its role through public awareness campaigns, and improvement in data collection on gender equality, domestic violence and violence against women and children", - "values": [ - "Rights of the Child", - "Women's rights" - ] - }, - { - "text": "Finalize the adoption of the National Action Plan on Gender-based Violence and Human Trafficking", - "values": [ - "Trafficking", - "Women's rights" - ] - }, - { - "text": "Take all necessary measures to abolish the death penalty and raise awareness on the fact that the death penalty is not a useful instrument to fight crime", - "values": [ - "Death penalty", - "Human rights education and training", - "International instruments" - ] - }, - { - "text": "Adopt a code of conduct based on international human rights standards in order to define specific conditions for the use of force by law enforcement officials during protests and riots", - "values": [ - "Human rights violations by state agents" - ] - }, - { - "text": "Continue its efforts towards the total elimination of discrimination and violence against women ", - "values": [ - "Women's rights" - ] - }, - { - "text": "Improve the enforcement of the Law on Combating Trafficking in persons by strengthening the capacity of law enforcement to detect and prosecute perpetrators, and by expanding services for victims", - "values": [ - "Trafficking" - ] - }, - { - "text": "Make progress in the prevention and mitigation of the negative impact on the rights of children and adolescents caused by different sources of violence", - "values": [ - "Rights of the Child" - ] - }, - { - "text": "Ensure that the security forces receive clear guidance and, if needed, training, so that they can act at all times in conformity with international standards in the area of respect for the rights of peoples, in particular with regard to the right to life, the prohibition of torture and other inhuman and degrading treatment ", - "values": [ - "Human rights education and training", - "Torture and other CID treatment" - ] - }, - { - "text": "Work on the strengthening of the capacities of important national entities such as EHRC ", - "values": [ - "National Human Rights Institution" - ] - }, - { - "text": "Adopt legal measures guaranteeing the right to a judicial procedure without undue delay, and allocate more resources to ensure greater efficiency in the judiciary ", - "values": [ - "Justice" - ] - }, - { - "text": "Ensure the respect of human rights of vulnerable persons, notably women, older persons, children, as well as persons with disabilities and with reduced mobility", - "values": [ - "Disabilities", - "Rights of the Child", - "Women's rights" - ] - }, - { - "text": "Continue its current efforts to guarantee education for all", - "values": [ - "Right to education" - ] - }, - { - "text": "Continue efforts to realize the right to education and pay special attention to the access of children and adolescents aged to attend middle and secondary education", - "values": [ - "Right to education", - "Rights of the Child" - ] - }, - { - "text": "Grant United Nations special rapporteurs regular access to detention facilities run by the National Intelligence Agency and the Republican Guard, and adopt a viable action plan to better address the urgent need for comprehensive penal system reform.", - "values": [ - "Detention", - "Special procedures" - ] - }, - { - "text": "Officially endorse the United Nations Declaration on the Rights of Indigenous Peoples, and fully implement all relevant national laws and regulations ", - "values": [ - "Indigenous peoples", - "International instruments" - ] - }, - { - "text": "Ensure full respect for freedom of association, by lifting restrictions that limit the free exercise thereof ", - "values": [ - "Freedom of association and peaceful assembly" - ] - }, - { - "text": "Take all necessary measures to ensure the physical integrity of journalists and human rights defenders ", - "values": [ - "Freedom of the press", - "Human rights defenders" - ] - }, - { - "text": "Consider amending the Citizenship Law to include safeguards against statelessness, providing that children born in the Romanian territory, who would otherwise be stateless, acquire Romanian nationality", - "values": [ - "Rights of the Child", - "Statelessness and the right to nationality" - ] - }, - { - "text": "Include in the Criminal Code provisions that refer to the express protection against sexual and gender violence", - "values": [ - "Women's rights" - ] - }, - { - "text": "Adopt a legal definition of the crime of corporal punishment of children in all circumstances and places", - "values": [ - "Rights of the Child", - "Torture and other CID treatment" - ] - }, - { - "text": "Issue a standing invitation to all United Nations Special Procedures mandate holders ", - "values": [ - "Special procedures" - ] - }, - { - "text": "Achieve a broad consensus to approve the law establishing a statute for victims of conflict and ensure that this law leads to effective reparations for all victims, especially victims of the State.", - "values": [ - "Justice" - ] - }, - { - "text": "End immediately the reprisals against human rights defenders and lift restrictions on civil society", - "values": [ - "Civil society", - "Human rights defenders" - ] - }, - { - "text": "Ensure that housing policies are motivated by the integration of Roma and other marginalized and vulnerable groups and that they avoid all forms of exclusion or forced segregation ", - "values": [ - "Minorities", - "Right to housing" - ] - }, - { - "text": "Identify and define its needs from OHCHR and international partners in the various domains of human rights, in order for them to assist the Government in its national efforts to overcome the obstacles and challenges hindering the fulfilment of the national plans", - "values": [ - "Technical assistance and cooperation" - ] - }, - { - "text": "Review legislation to put an end to trials of civilians by military courts. ", - "values": [ - "Justice" - ] - }, - { - "text": "Consider ratifying international human rights treaties that it is not yet a State party to ", - "values": [ - "International instruments" - ] - }, - { - "text": "Increase its efforts to expand protection and support for low-income groups to solve weakening social integration due to intensifying income polarization", - "values": [ - "ESC rights - general" - ] - }, - { - "text": "The Czech Republic concluded by announcing its pledge to submit an interim progress report to the Human Rights Council on the implementation of the UPR recommendations.", - "values": [ - "UPR process" - ] - }, - { - "text": "Pursue the necessary measures to promote the principle of equal remuneration between women and men ", - "values": [ - "Women's rights" - ] - }, - { - "text": "Take necessary measures to enable the judicial system to effectively combat impunity and to assess the establishment of an international commission against impunity", - "values": [ - "Impunity", - "Justice" - ] - }, - { - "text": "Adopt measures to effectively protect transgender persons, including the implementation of the Transgender Persons (Protection of Rights) Bill", - "values": [ - "Sexual Orientation and Gender Identity" - ] - }, - { - "text": "Promote actively plurality of the media, hold perpetrators of attacks against journalists accountable, and decriminalize defamation ", - "values": [ - "Freedom of opinion and expression", - "Freedom of the press" - ] - }, - { - "text": "Provide human rights education, including related to sexual orientation and gender identity, to all law enforcement officials", - "values": [ - "Human rights education and training", - "Sexual Orientation and Gender Identity" - ] - }, - { - "text": "Strengthen efforts to implement its express commitment to establish a national human rights institution in accordance with the Paris Principles", - "values": [ - "National Human Rights Institution" - ] - }, - { - "text": "Speed-up the abolition of the mandatory death penalty in line with the commitment taken by Barbados during the first UPR", - "values": [ - "Death penalty", - "UPR process" - ] - }, - { - "text": "Enhance freedom of expression and assembly, and to safeguard all groups, journalists and especially human rights defenders", - "values": [ - "Freedom of association and peaceful assembly", - "Freedom of opinion and expression", - "Freedom of the press", - "Human rights defenders" - ] - }, - { - "text": "Begin procedures as soon as possible to have its national human rights institution accredited it by the International Coordinating Committee of National Institutions.", - "values": [ - "National Human Rights Institution" - ] - }, - { - "text": "Take the necessary steps to curb racist propaganda, including on the internet", - "values": [ - "Racial discrimination" - ] - }, - { - "text": "Take adequate measures to counter the worrying increase of violence against, abuse and sexual exploitation of children, by ensuring the implementation of applicable laws including through awareness and education programmes targeting more particularly parents, teachers, correctional officers and other relevant professionals", - "values": [ - "Human rights education and training", - "Rights of the Child" - ] - }, - { - "text": "Adopt a legal definition of all forms of discrimination against women, covering direct and indirect discrimination ", - "values": [ - "Women's rights" - ] - }, - { - "text": "Carry on efforts to protect children, especially children of indigenous populations", - "values": [ - "Indigenous peoples", - "Rights of the Child" - ] - }, - { - "text": "Continue its efforts in combating child labour, as well as including by bringing the employers to justice, and to introduce new non-violent forms of discipline for children at home and in schools", - "values": [ - "Labour", - "Rights of the Child", - "Torture and other CID treatment" - ] - }, - { - "text": "Strengthen the National Human Rights Commission of Rwanda by granting it the power to consider human rights complaints", - "values": [ - "National Human Rights Institution" - ] - }, - { - "text": "Recommend the abolishment of the death penalty in accordance with General Assembly resolution 62-149.", - "values": [ - "Death penalty" - ] - }, - { - "text": "Continue its efforts in the fight against violence and discrimination based on sexual orientation and gender identity ", - "values": [ - "Sexual Orientation and Gender Identity" - ] - }, - { - "text": "Continue efforts aimed at promoting rights of children, in particular migrant children and victims of sexual violence and abuse", - "values": [ - "Migrants", - "Rights of the Child" - ] - }, - { - "text": "Accede to the Optional Protocol to the Convention on the Rights of the Child on a communications procedure at the earliest opportunity ", - "values": [ - "International instruments", - "Rights of the Child" - ] - }, - { - "text": "Amend existing legislation in order to prohibit all forms of corporal punishment of children in all settings, promoting positive and non-violent forms of discipline", - "values": [ - "Rights of the Child", - "Torture and other CID treatment" - ] - }, - { - "text": "Accept the visit of the special procedures of the Human Rights Council and allow them access without restriction", - "values": [ - "Special procedures" - ] - }, - { - "text": "Comply with its international obligations in respect to the judiciary and the right to freedom of expression and implement recommendations, resolutions and decisions of the international and regional human rights protection systems ", - "values": [ - "Freedom of opinion and expression", - "Justice" - ] - }, - { - "text": "Abide by its international obligations, including those under the Fourth Geneva Convention.", - "values": [ - "International humanitarian law", - "International instruments" - ] - }, - { - "text": "Ensure that violence, threats and intimidations against human rights defenders are properly investigated and prosecuted", - "values": [ - "Human rights defenders" - ] - }, - { - "text": "Complete the process of full alignment of its national legislation with all obligations under the Statute and to accede to the Agreement on Privileges and Immunities of the Court", - "values": [ - "International instruments", - "Justice" - ] - }, - { - "text": "Rapidly launch a reform process of its security forces, especially to embed extra-legal militia into the Iraqi security structure", - "values": [ - "Public security" - ] - }, - { - "text": "Continue its leading international efforts to tackle global warming, including by reminding developed countries and major emitting States of their obligation to help promote and protect human rights in Samoa by reducing greenhouse gas emissions to safe levels", - "values": [ - "Environment" - ] - }, - { - "text": "Redouble its effort in order to fully observe the Committee on the Rights of the Child's concern at persistent discrimination against Roma children, children of Turkish origin and children from groups identifying themselves", - "values": [ - "Minorities", - "Rights of the Child", - "Treaty bodies" - ] - }, - { - "text": "Ratify the International Convention on the Protection of the Rights of All Migrant Workers and Members of Their Families, considering the equal and universal character should prevail for all international human rights instruments", - "values": [ - "International instruments", - "Labour", - "Migrants" - ] - }, - { - "text": "Devise and implement plans for combating trafficking in women and children ", - "values": [ - "Rights of the Child", - "Trafficking", - "Women's rights" - ] - }, - { - "text": "Strengthen information campaigns against early and forced marriage and enforce laws already in place", - "values": [ - "Rights of the Child" - ] - }, - { - "text": "Take steps to protect human rights defenders, journalists and religious minorities from discrimination, harassment or intimidation, including the arbitrary deprivation of nationality", - "values": [ - "Freedom of religion and belief", - "Freedom of the press", - "Human rights defenders", - "Minorities" - ] - }, - { - "text": "Conduct a transparent and public inquiry into the violence emanating from security forces following the presidential elections of 2009", - "values": [ - "Elections", - "Human rights violations by state agents" - ] - }, - { - "text": "Take all necessary measures to reduce the number of HIV/AIDS infections by means of enhancing national education programmes, and increase efforts to ensure the availability and access to antiretroviral treatment drugs", - "values": [ - "HIV - Aids" - ] - }, - { - "text": "Consider ratifying the OP-ICESCR ", - "values": [ - "ESC rights - general", - "International instruments" - ] - }, - { - "text": "Put in place protection measures that would allow girls to return to school after giving birth and raise awareness with a view to eliminating the existing prejudices that impede and discourage teenage mothers from returning to school", - "values": [ - "Right to education", - "Rights of the Child", - "Women's rights" - ] - }, - { - "text": "Continue to bolster the role and mandate of the National Human Rights Commission in line with the Paris Principles ", - "values": [ - "National Human Rights Institution" - ] - }, - { - "text": "Continue its efforts aimed at improving detention conditions", - "values": [ - "Detention" - ] - }, - { - "text": "Ensure full incorporation of the provisions of the Convention on the Rights of the Child into its national legal framework", - "values": [ - "International instruments", - "Rights of the Child" - ] - }, - { - "text": "Strengthen measures and policies to promote the active role and participation of women in the political, social and economic life of the country ", - "values": [ - "Women's rights" - ] - }, - { - "text": "Increase awareness and training campaigns at national level, to combat the trafficking of women and children, and deepen this topic in school programmes ", - "values": [ - "Human rights education and training", - "Rights of the Child", - "Trafficking", - "Women's rights" - ] - }, - { - "text": "Take the necessary steps with a view to formally abolishing the death penalty", - "values": [ - "Death penalty" - ] - }, - { - "text": "Take steps to carry out recommendations with regard to the implementation of commitments under the Convention on the Rights of the Child", - "values": [ - "International instruments", - "Rights of the Child" - ] - }, - { - "text": "Establish and enforce strict legislation criminalizing rape in every context, including marital rape ", - "values": [ - "Rights of the Child", - "Women's rights" - ] - }, - { - "text": "To continue to implement the National Human Rights Action Plan", - "values": [ - "General" - ] - }, - { - "text": "Take steps to bring Cambodia's laws and practices into line with existing international human rights standards in relation to freedom of expression, including press freedom", - "values": [ - "Freedom of opinion and expression", - "Freedom of the press", - "International instruments" - ] - }, - { - "text": "Continue to promote the role of women in society in order to ensure their integration into political life", - "values": [ - "Women's rights" - ] - }, - { - "text": "Formulate an educational policy aimed at combating illiteracy, with particular emphasis on the education of the girl child ", - "values": [ - "Right to education", - "Rights of the Child", - "Women's rights" - ] - }, - { - "text": "Adopt the necessary measures aiming at eliminating the normative provisions which criminalize and discriminate against LGBTI persons", - "values": [ - "Sexual Orientation and Gender Identity" - ] - }, - { - "text": "Ratify the Optional Protocol to the Convention on the Elimination of All Forms of Discrimination against Women and the Optional Protocol to the International Covenant on Economic, Social and Cultural Rights ", - "values": [ - "ESC rights - general", - "International instruments", - "Women's rights" - ] - }, - { - "text": "Implement legislation to abolish and effectively combat early and child marriage", - "values": [ - "Rights of the Child" - ] - }, - { - "text": "Consider identifying a priority list of issues and areas of requirements needed in the field of technical assistance and capacity-building and to approach the relevant partners at the multilateral or bilateral levels ", - "values": [ - "Technical assistance and cooperation" - ] - }, - { - "text": "Intensify the cooperation with the international human rights bodies, including through country visits and the provision of assistance to Fiji", - "values": [ - "Special procedures", - "Technical assistance and cooperation" - ] - }, - { - "text": "Provide a legislative basis for the OPCAT National Preventive Mechanism, and ensure the institutionalized participation of civil society ", - "values": [ - "Civil society", - "Detention", - "International instruments", - "Torture and other CID treatment" - ] - }, - { - "text": "Undertake further campaigns against homophobia", - "values": [ - "Sexual Orientation and Gender Identity" - ] - }, - { - "text": "Abandon the practice of corporal punishment of children and encourage non-violent forms of discipline", - "values": [ - "Rights of the Child", - "Torture and other CID treatment" - ] - }, - { - "text": "Do all possible to guarantee that schools are safe places for children ", - "values": [ - "Right to education", - "Rights of the Child" - ] - }, - { - "text": "Expedite legal and institutional reforms to fully protect in law and in practice freedom of expression, association and assembly, and religion and belief", - "values": [ - "Freedom of association and peaceful assembly", - "Freedom of opinion and expression", - "Freedom of religion and belief" - ] - }, - { - "text": "Liechtenstein will pursue its actions in the area of official development aid with a view to meeting its relevant voluntary commitment as soon as possible", - "values": [ - "Development" - ] - }, - { - "text": "Accelerate the exercise to finalize the Charter of Citizen's Rights in order to enhance its human rights institutional framework", - "values": [ - "General" - ] - }, - { - "text": "Continue the work of the Ministry of Education and civil society to reinforce the campaign on zero tolerance for violence against children at in the environment of communities, families and in schools", - "values": [ - "Civil society", - "Rights of the Child" - ] - }, - { - "text": "Withdraw reservations to the International Covenant on Civil and Political Rights", - "values": [ - "CP rights - general", - "International instruments" - ] - }, - { - "text": "Continue strengthening the National Policy for the mainstreaming of an intercultural approach", - "values": [ - "Other" - ] - }, - { - "text": "Engage the various cantons with a view to once again bringing an anti-discrimination law before parliament", - "values": [ - "Other" - ] - }, - { - "text": "Continue adopting measures to prevent cases of indefinite detention of migrants, and guarantee all their rights ", - "values": [ - "Detention", - "Migrants" - ] - }, - { - "text": "Continue to seek and cooperate with partners in the field of the implementation of the national plan for the advancement of Bahraini women (2022) in order to build a competitive and sustainable society in the kingdom", - "values": [ - "Women's rights" - ] - }, - { - "text": "Take concrete steps to create a friendly environment for NGOs, including by easing their registration requirements ", - "values": [ - "Civil society", - "Freedom of association and peaceful assembly" - ] - }, - { - "text": "Enact legislation criminalizing defamation of religious symbols under the pretext of freedom of expression", - "values": [ - "Freedom of opinion and expression", - "Freedom of religion and belief" - ] - }, - { - "text": "Adopt and implement the Draft National Community Care Policy to ensure health and social support serves to older persons in the community", - "values": [ - "Right to health" - ] - }, - { - "text": "Give more visibility to the Afghanistan Independent Human Rights Commission and increase its human and technical resources to carry out its work effectively.", - "values": [ - "National Human Rights Institution" - ] - }, - { - "text": "Further evaluate the status of the national human rights institution to bring it into full compliance with the Paris Principles, category A status", - "values": [ - "National Human Rights Institution" - ] - }, - { - "text": "Engage with civil society in the follow-up to the present review", - "values": [ - "Civil society", - "UPR process" - ] - }, - { - "text": "Ensure the national availability and accessibility to contraceptive services and methods, including through the dissemination of information and education to boys, girls and adolescents, taking into account prevention of discrimination based on geographic status, disability or migrant status", - "values": [ - "Disabilities", - "Migrants", - "Women's rights" - ] - }, - { - "text": "Take fully into account the recommendations of the Special Rapporteur on Freedom of Religion aimed at promoting and fully ensuring freedom of religion for all religious communities throughout Azerbaijan", - "values": [ - "Freedom of religion and belief", - "Special procedures" - ] - }, - { - "text": "Sign, ratify and implement those core international human rights instruments to which it is not yet party and abolish the death penalty ", - "values": [ - "Death penalty", - "International instruments" - ] - }, - { - "text": "Adapt the legislative framework in order to ensure access to sexual and reproductive health services, including contraception and family planning, for unmarried women as well as married women, without the consent of their spouse", - "values": [ - "Right to health", - "Women's rights" - ] - }, - { - "text": "Take urgent measures to repeal the norms that criminalize and stigmatize lesbian, gay, bisexual, transgender and intersex persons and investigate and punish the perpetrators of acts of discrimination and violence against them", - "values": [ - "Sexual Orientation and Gender Identity" - ] - }, - { - "text": "Ensure that its Anti-Terrorist Legislation 2016 corresponds to international human rights standards", - "values": [ - "Counter-terrorism" - ] - }, - { - "text": "Create an effective juvenile justice system in order to defend children's rights", - "values": [ - "Rights of the Child" - ] - }, - { - "text": "Ratify and implement the African Charter on Human and Peoples' Rights", - "values": [ - "International instruments" - ] - }, - { - "text": "Continue its efforts related to human rights education and training as it represents a major gateway onto overcoming many long term difficulties", - "values": [ - "Human rights education and training" - ] - }, - { - "text": "Make the national Human Rights Commission operational", - "values": [ - "National Human Rights Institution" - ] - }, - { - "text": "Continue its ongoing efforts to advance the rights of women and make similar efforts in the protection and promotion of the rights of children, especially by adopting the relevant legal instruments", - "values": [ - "Rights of the Child", - "Women's rights" - ] - }, - { - "text": "Consider the possibility of extending a standing invitation to the human rights special procedures and setting up an institutional channel for responding to communications from them", - "values": [ - "Special procedures" - ] - }, - { - "text": "Step up efforts aimed at establishing efficient protection measures to prevent, combat and punish perpetrators of violence against women and children, including domestic violence and sexual abuse ", - "values": [ - "Rights of the Child", - "Women's rights" - ] - }, - { - "text": "Continue cooperation with the United Nations system, particularly through the Peacebuilding Commission ", - "values": [ - "Other" - ] - }, - { - "text": "Take appropriate measures to fully implement CEDAW ", - "values": [ - "International instruments", - "Women's rights" - ] - }, - { - "text": "Fully implement its Vision 2025, expand existing programmes such as the Gramashakthi People\u2019s Movement, or establish new initiatives where necessary, to boost poverty alleviation efforts and to address regional disparities", - "values": [ - "Poverty" - ] - }, - { - "text": "Provide the National Dalit Commission and the National Women's Commission with sufficient resources to effectively realize their mandate ", - "values": [ - "Minorities", - "Women's rights" - ] - }, - { - "text": "Enact a unified and comprehensive law on child rights", - "values": [ - "Rights of the Child" - ] - }, - { - "text": "Become a party to the Optional Protocol to the Convention against Torture", - "values": [ - "International instruments", - "Torture and other CID treatment", - "Treaty bodies" - ] - }, - { - "text": "Establish an effective mechanism of comprehensive reparation and compensation for victims of forced or non-consensual sterilization, and adequately bring the perpetrators of such practices to court", - "values": [ - "Justice", - "Torture and other CID treatment" - ] - }, - { - "text": "Continue strengthening the integration of human rights in its public policies by strengthening the government agencies at all levels for the implementation of the National Action Plan on Human Rights 2017-2021", - "values": [ - "General" - ] - }, - { - "text": "Take steps for free, compulsory and inclusive, quality education for all children", - "values": [ - "Right to education", - "Rights of the Child" - ] - }, - { - "text": "Guarantee direct applicability of the International Covenant on Economic, Social and Cultural Rights in the domestic legal order", - "values": [ - "ESC rights - general", - "International instruments" - ] - }, - { - "text": "Definitely abolish the death penalty", - "values": [ - "Death penalty" - ] - }, - { - "text": "The Government of Yemen is prepared to promote the principle of a broad partnership between the Government and civil society organizations in the area of human rights and to support their active involvement in the integrated development process ", - "values": [ - "Civil society" - ] - }, - { - "text": "Expand the remit of the interministerial child trafficking committee to include adults, ensuring adequate human and financial resources to support national efforts", - "values": [ - "Trafficking" - ] - }, - { - "text": "Reiterate the recommendation to ratify the International Convention for the Protection of all Persons from Enforced Disappearances and the Optional Protocol to the CRC on the Sale of Children, Child Prostitution and Child Pornography ", - "values": [ - "Enforced disappearances", - "International instruments", - "Rights of the Child", - "Trafficking" - ] - }, - { - "text": "Establish a moratorium on the death penalty and consider its eventual abolition, especially and urgently in relation to the execution of children under the age of 18 years", - "values": [ - "Death penalty", - "Rights of the Child" - ] - }, - { - "text": "Take urgent measures for the investigation and effective punishment of perpetrators of discrimination and violence against lesbian, gay, bisexual, transgender and intersex persons", - "values": [ - "Sexual Orientation and Gender Identity" - ] - }, - { - "text": "Continue to increase budgetary allocations in the area of the access of children to education ", - "values": [ - "Right to education", - "Rights of the Child" - ] - }, - { - "text": "Consider signing and ratifying the International Convention on the Elimination of All Forms of Racial Discrimination ", - "values": [ - "International instruments", - "Racial discrimination" - ] - }, - { - "text": "Extend the benefits of the labour legislation to domestic workers, and ensure that abuses by employers are systematically prosecuted and punished ", - "values": [ - "Labour" - ] - }, - { - "text": "Adopt legislation to ensure that all cases of arrest and detention without warrant, also those under the Internal Security Act, are subject to speedy, independent and regular judicial review", - "values": [ - "Detention" - ] - }, - { - "text": "Accede to CAT and the Optional Protocol thereto", - "values": [ - "Detention", - "International instruments", - "Torture and other CID treatment" - ] - }, - { - "text": "Establish an official moratorium on executions, in particular executions of juvenile offenders who were under the age of 18 at the time of the alleged crime, with a view to reviewing all cases of juvenile prisoners on death row", - "values": [ - "Death penalty", - "Rights of the Child" - ] - }, - { - "text": "Take effective action to end violence against women and children, including by making it a criminal offence and by holding perpetrators accountable", - "values": [ - "Rights of the Child", - "Women's rights" - ] - }, - { - "text": "Adopt mandatory accessibility standards with respect to new and renovated construction to ensure the avoidance and removal of barriers that hinder access by persons with disabilities ", - "values": [ - "Disabilities" - ] - }, - { - "text": "Ratify the International Covenant on Civil and Political Rights and its Second Optional Protocol, aiming at the abolition of the death penalty", - "values": [ - "Death penalty", - "International instruments" - ] - }, - { - "text": "Take all necessary measures to return properties to the members of the Greek minority in the islands of Gokceada and Bozcaada that were expropriated ", - "values": [ - "Minorities" - ] - }, - { - "text": "Take all measures to ensure that all trafficked people are able to access the support and services they are entitled to, including free legal aid and access to their right to compensation ", - "values": [ - "Justice", - "Trafficking" - ] - }, - { - "text": "Equip the national human rights institutions with the necessary resources and capacities to effectively monitor the human rights situation and to independently investigate, provide appeals and redress for alleged human rights violations in relation to the resettlement of communities through the Commune Development Programme", - "values": [ - "General" - ] - }, - { - "text": "Continue to ensure that no individuals are exposed to the danger of torture or cruel, inhuman or degrading treatment or punishment when extraditing or deporting illegal migrants ", - "values": [ - "Migrants", - "Torture and other CID treatment" - ] - }, - { - "text": "Review the recent national strategy for the protection of rights of children and take into account the concerns and recommendations made during the second UPR cycle in this regard", - "values": [ - "Rights of the Child", - "UPR process" - ] - }, - { - "text": "Complete the process of consolidation of the National Human Rights Institution and its accreditation to the International Coordinating Committee of National Human Rights Institutions ", - "values": [ - "National Human Rights Institution" - ] - }, - { - "text": "Continue to intensify efforts to further increase the enrolment of children in schools", - "values": [ - "Right to education", - "Rights of the Child" - ] - }, - { - "text": "Continue to promote economic development in ethnic minority regions and strengthen their capacity for development", - "values": [ - "Development", - "Minorities" - ] - }, - { - "text": "Continue working on the harmonization of national policies and laws relating the rights of women in accordance with the international human rights instruments to which it is a party", - "values": [ - "International instruments", - "Women's rights" - ] - }, - { - "text": "Early adoption of the Women's Empowerment and Gender Equality Bill ", - "values": [ - "Women's rights" - ] - }, - { - "text": "Continue promoting changes in favour of gender equality in all the areas of the socioeconomic life and access to resources", - "values": [ - "Women's rights" - ] - }, - { - "text": "Take the measures necessary to review its domestic legislation in order to guarantee the free and compulsory birth registration of all children born in the country", - "values": [ - "Rights of the Child", - "Statelessness and the right to nationality" - ] - }, - { - "text": "Ratify the Optional Protocol to CRC on the sale of children, child prostitution and child pornography ", - "values": [ - "International instruments", - "Rights of the Child", - "Trafficking" - ] - }, - { - "text": "Continue efforts to ensure the independence and impartiality of the judiciary, especially with respect to the rights of the defence and to transparency in judicial procedures", - "values": [ - "Justice" - ] - }, - { - "text": "Consider the possibility of ensuring the implementation of the right to vote for Timorese migrant workers residing abroad", - "values": [ - "Elections" - ] - }, - { - "text": "Ensure the freed bonded laborers' access to fertile land and their equal enjoyment of human rights, including the right to work and right to property, in line with the observations made by the Committee on Economic, Social and Cultural Rights", - "values": [ - "Labour", - "Right to housing", - "Right to land", - "Treaty bodies" - ] - }, - { - "text": "Make further efforts to implement the recommendations of various treaty bodies ", - "values": [ - "Treaty bodies" - ] - }, - { - "text": "Establish an independent institution in compliance with the United Nations Paris Principles ", - "values": [ - "National Human Rights Institution" - ] - }, - { - "text": "Take the necessary measures to guarantee the fundamental rights of Honduran citizens, particularly regarding the right to life, stepping up efforts to ensure food security and improving the general security for people", - "values": [ - "Right to food" - ] - }, - { - "text": "Fully align its national legislation with the Rome Statute, including by incorporating provisions to cooperate promptly and fully with the International Criminal Court and to investigate and prosecute individuals found guilty of genocide, crimes against humanity and war crimes effectively before its national courts ", - "values": [ - "International instruments", - "Justice" - ] - }, - { - "text": "Initiate an integrated policy for the promotion and protection of the human rights of migrants which takes into account the vulnerable situation of foreign domestic workers ", - "values": [ - "Labour", - "Migrants" - ] - }, - { - "text": "Effectively implement the respective procedures and to further promote rights of foreign nationals, migrants and asylum seekers.", - "values": [ - "Asylum-seekers - refugees", - "Migrants" - ] - }, - { - "text": "Consider instigating a national plan to combat violence against women and girls, including in relation to human trafficking ", - "values": [ - "Rights of the Child", - "Trafficking", - "Women's rights" - ] - }, - { - "text": "Take into account the opinion formulated on 14 October 2016 by the Venice Commission of the Council of Europe on the Act on the Constitutional Tribunal", - "values": [ - "Justice" - ] - }, - { - "text": "Continue to take effective measures to combat human trafficking", - "values": [ - "Trafficking" - ] - }, - { - "text": "Speed up the process of national legislation and ratification of the Convention on the Rights of Persons with Disabilities and its Optional Protocol ", - "values": [ - "Disabilities", - "International instruments" - ] - }, - { - "text": "Continue reducing disparities between men and women in order to reach full parity, particularly with regard to access of women to courts and property ownership as well as empowering their role in (economic) production ", - "values": [ - "Women's rights" - ] - }, - { - "text": "Ratify the Optional Protocol to the Convention against Torture and Other Cruel, Inhuman or Degrading Treatment or Punishment and take swift measures to ensure the human rights of convicts and persons in custody", - "values": [ - "Detention", - "International instruments", - "Torture and other CID treatment" - ] - }, - { - "text": "Enact specific legislation that prohibits and punishes racial discrimination ", - "values": [ - "Racial discrimination" - ] - }, - { - "text": "Continue efforts to promote all universally agreed human rights and fundamental freedoms.", - "values": [ - "General" - ] - }, - { - "text": "Continue promoting the national policy for the promotion of women through working for the enrolment and retention of girls in school", - "values": [ - "Right to education", - "Rights of the Child", - "Women's rights" - ] - }, - { - "text": "Intensify efforts to investigate and prosecute cases of human trafficking including forced labour ", - "values": [ - "Labour", - "Trafficking" - ] - }, - { - "text": "Make available statistics and other factual information on the use of the death penalty ", - "values": [ - "Death penalty" - ] - }, - { - "text": "Amend the Public Order Management Act in line with international best practice, as set out by the Special Rapporteur on the rights to freedom of peaceful assembly and of association in his March 2016 joint report to the Human Rights Council", - "values": [ - "Freedom of association and peaceful assembly", - "Special procedures" - ] - }, - { - "text": "Take all the necessary measures to implement and enforce existing legal and regulatory frameworks on gender equality and non-discrimination", - "values": [ - "Women's rights" - ] - }, - { - "text": "Intensify its endeavours to eradicate assault, battery and abduction of children. This can be achieved by the government increasing its campaign through raising awareness about the dangers of these practices to affected families", - "values": [ - "Rights of the Child" - ] - }, - { - "text": "Incorporate the necessary provisions into its national legislation to allow full and prompt cooperation with the international Criminal Court ", - "values": [ - "International instruments", - "Justice" - ] - }, - { - "text": "Give a special attention to children affected by the Constitutional Court ruling ensuring the provision of their basic rights, such as education, health and protection ", - "values": [ - "Right to education", - "Right to health", - "Rights of the Child" - ] - }, - { - "text": "Continue its efforts to promote and protect the rights of women", - "values": [ - "Women's rights" - ] - }, - { - "text": "Take further measures to boost children's, adolescents' and young people's knowledge of the issue of xenophobia and similar forms of intolerance", - "values": [ - "Human rights education and training", - "Racial discrimination", - "Rights of the Child" - ] - }, - { - "text": "Improve the access to the National Protection Unit and its impact in rural areas, and take new steps to protect human rights defenders, journalists, indigenous leaders and people involved in land restitution processes ", - "values": [ - "Freedom of the press", - "Human rights defenders", - "Indigenous peoples", - "Right to land" - ] - }, - { - "text": "Promptly ratify the Optional Protocol to the Convention against Torture", - "values": [ - "Detention", - "International instruments", - "Torture and other CID treatment" - ] - }, - { - "text": "Further improve efforts to combat violence against minorities and to combat Islamophobia and xenophobia", - "values": [ - "Freedom of religion and belief", - "Racial discrimination" - ] - }, - { - "text": "Enact legislation and take effective measures to protect and promote women's rights, especially with regard to forced marriages, honour killings and access to education for all girls.", - "values": [ - "Rights of the Child", - "Women's rights" - ] - }, - { - "text": "Provide additional resources to its anti-trafficking in persons programmes ", - "values": [ - "Trafficking" - ] - }, - { - "text": "Ensure that the implementation of all articles of the Penal Code and other laws be in conformity with the international standards on the right to freedom of expression ", - "values": [ - "Freedom of opinion and expression" - ] - }, - { - "text": "Continue its efforts to ensure its people have access to affordable housing", - "values": [ - "Right to housing" - ] - }, - { - "text": "Enforce laws criminalising gender-based violence and female genital mutilation", - "values": [ - "Rights of the Child", - "Torture and other CID treatment", - "Women's rights" - ] - }, - { - "text": "Make every possible effort to promote social integration of the past participants in illegal armed groups", - "values": [ - "International humanitarian law" - ] - }, - { - "text": "Fully ensure gender equality in employment and in political posts", - "values": [ - "Women's rights" - ] - }, - { - "text": "Accede to the International Convention on the Protection of the Rights of All Migrant Workers and Members of their Families in accordance with the recommendation no. 1737 of 17 March 2006 made in that regard by the Council of Europe ", - "values": [ - "International instruments", - "Labour", - "Migrants" - ] - }, - { - "text": "Put an end to the increasing violent attacks and hate crimes against the Roma and punish those responsible", - "values": [ - "Minorities", - "Racial discrimination" - ] - }, - { - "text": "Implement the updated National Policy on Persons with Disabilities", - "values": [ - "Disabilities" - ] - }, - { - "text": "Ensure effective protection of Muslim minorities, including their places of worship", - "values": [ - "Freedom of religion and belief", - "Minorities" - ] - }, - { - "text": "Combat more efficiently human trafficking, particularly of women and girls", - "values": [ - "Trafficking", - "Women's rights" - ] - }, - { - "text": "Write and publish an action plan with clear milestones and timelines to ensure swift and effective implementation of legislation protecting the living and working conditions of foreign workers", - "values": [ - "Migrants" - ] - }, - { - "text": "Continue to strengthen its capacity in addressing the issue of violence against women as well as children ", - "values": [ - "Rights of the Child", - "Women's rights" - ] - }, - { - "text": "Amend its legislation to include the principle of equality between men and women and give men and women equal rights of inheritance", - "values": [ - "Women's rights" - ] - }, - { - "text": "Enact laws that enhance equal access to property rights for women", - "values": [ - "Women's rights" - ] - }, - { - "text": "Further step up efforts to publicly condemn hate speech, including against Roma", - "values": [ - "Minorities", - "Racial discrimination" - ] - }, - { - "text": "Prioritize implementing the right to an inclusive basic education for all children with disabilities", - "values": [ - "Disabilities", - "Right to education", - "Rights of the Child" - ] - }, - { - "text": "Consider withdrawing reservations with respect to article 4 of ICERD, articles 9, 10, 12 , 14, 19, 21, 22 and 26 of ICCPR, ICCPR-OP 1, CEDAW, CAT and CRC ", - "values": [ - "CP rights - general", - "International instruments", - "Racial discrimination", - "Rights of the Child", - "Torture and other CID treatment", - "Women's rights" - ] - }, - { - "text": "Take steps to implement laws and policies with a view to eliminating early and forced marriage", - "values": [ - "Rights of the Child", - "Women's rights" - ] - }, - { - "text": "Inform the ILO about progress made by Belize in the implementation of its National Policy on Gender", - "values": [ - "Women's rights" - ] - }, - { - "text": "Implement and develop programs related to health and social welfare for the elderly, especially those aimed at further expanding the availability of medicines and to improve elderly health monitoring ", - "values": [ - "Right to health" - ] - }, - { - "text": "Implement the child and youth programme of 2013-2016", - "values": [ - "Rights of the Child" - ] - }, - { - "text": "Ratify the Rome Statute of the International Criminal Court, as well as the International Convention for the Protection of All Persons from Enforced Disappearance ", - "values": [ - "Enforced disappearances", - "International instruments", - "Justice" - ] - }, - { - "text": "Continue efforts to safeguard cultural, social and economic rights, including in the least developed regions", - "values": [ - "ESC rights - general" - ] - }, - { - "text": "Adopt legislative measures to outlaw domestic violence if it has not done so already", - "values": [ - "Rights of the Child", - "Women's rights" - ] - }, - { - "text": "Continue to harmonize its domestic legislations with those international human rights instruments that Uganda is a party ", - "values": [ - "International instruments" - ] - }, - { - "text": "Further development of a process of effective dialogue and negotiation with indigenous groups is established to address land and natural resources issues ", - "values": [ - "Indigenous peoples", - "Right to land" - ] - }, - { - "text": "Continue cooperating with the United Nations human rights mechanisms ", - "values": [ - "Special procedures", - "Technical assistance and cooperation", - "Treaty bodies", - "UPR process" - ] - }, - { - "text": "Investigate the enforced disappearances cases that have not yet been clarified, in order to ensure the enjoyment of the right to truth and justice for the relatives of disappeared persons ", - "values": [ - "Enforced disappearances" - ] - }, - { - "text": "Adopt comprehensive measures to address the problem of overcrowding, prevent suicides among inmates and improve health conditions in prisons ", - "values": [ - "Detention" - ] - }, - { - "text": "As indicated within the national report, seek technical assistance from OHCHR in the areas of effective implementation and reporting obligations of international human rights instruments ", - "values": [ - "International instruments", - "Technical assistance and cooperation" - ] - }, - { - "text": "Consolidate and further advance the exercise of popular sovereignty over the natural resources and wealth of the country ", - "values": [ - "Environment" - ] - }, - { - "text": "Consider enhancing the protection of religious freedom by adopting legislative measures and promoting awareness raising campaigns", - "values": [ - "Freedom of religion and belief", - "Human rights education and training" - ] - }, - { - "text": "Take the necessary steps to ensure that its legal system and policies are in full compliance with its international obligations in respect of freedom of expression and that journalists and human rights defenders are guaranteed the freedom to carry out their work independently and without fear of prosecution or intimidation", - "values": [ - "Freedom of opinion and expression", - "Freedom of the press", - "Human rights defenders" - ] - }, - { - "text": "Adopt a specific programme to safeguard the rights of victims of torture and ill-treatment ", - "values": [ - "Torture and other CID treatment" - ] - }, - { - "text": "Set the minimum age to marriage and voting to 18 years for both genders without preference", - "values": [ - "Rights of the Child" - ] - }, - { - "text": "Pass comprehensive legislation on access to public information and adopt a law covering the three branches of power", - "values": [ - "Freedom of opinion and expression" - ] - }, - { - "text": "Establish laws and cultivate processes and institutions to protect women's rights, foster women's political participation, and ensure equitable representation of their interests and concerns", - "values": [ - "Women's rights" - ] - }, - { - "text": "Amend legislation in order to decriminalize abortion under certain circumstances, such as pregnancies that are the result of rape", - "values": [ - "Women's rights" - ] - }, - { - "text": "Express a strong commitment to protecting and advocating the fundamental human rights of members of the lesbian, gay, bisexual and transgender communities as equal citizens, in keeping with the country's commitments to international conventions", - "values": [ - "Sexual Orientation and Gender Identity" - ] - }, - { - "text": "Start a dialogue with the NGOs of the Turkish communities in Rhodes and Kos for the solution of their problems in the field of religious freedom and resume Turkish-language education, which has been denied since 1972 ", - "values": [ - "Civil society", - "Freedom of religion and belief", - "Minorities", - "Right to education" - ] - }, - { - "text": "Actively pursue the work on compliance of laws and regulations on human rights with constitutional provisions and take necessary measures to fully guarantee the rights to freedom of expression, peaceful demonstration and assembly", - "values": [ - "Freedom of association and peaceful assembly", - "Freedom of opinion and expression" - ] - }, - { - "text": "Allocate a greater space for women's participation in the political sphere ", - "values": [ - "Women's rights" - ] - }, - { - "text": "Continue moving forward with a view to achieving peace through a dialogue", - "values": [ - "International humanitarian law" - ] - }, - { - "text": "Review the article 212 of the Penal Code criminalising defamation, with the aim of removing it from the Penal Code ", - "values": [ - "Freedom of opinion and expression" - ] - }, - { - "text": "Continue with ongoing efforts to ratify the Convention on the Rights of Persons with Disabilities and the International Convention for the Protection of All Persons from Enforced Disappearance, in line with recommendations it accepted during its first review in 2011 ", - "values": [ - "Disabilities", - "Enforced disappearances", - "International instruments", - "UPR process" - ] - }, - { - "text": "Continue to promote gender equality in all fields ", - "values": [ - "Women's rights" - ] - }, - { - "text": "Adopt expeditiously necessary legislation and implement all relevant measures to prevent and combat sexual abuse of children, providing for the physical and psychological recovery and social reintegration of child victims ", - "values": [ - "Rights of the Child" - ] - }, - { - "text": "Take necessary measures to ensure that local authorities respect the religious freedom of minority religious groups and treat all religious groups equally", - "values": [ - "Freedom of religion and belief", - "Minorities" - ] - }, - { - "text": "Intensify its efforts to progressively implement the recommendations of the Committee on the Rights of the Child, in collaboration with the relevant United Nations agencies", - "values": [ - "Rights of the Child", - "Treaty bodies" - ] - }, - { - "text": "Strengthen its awareness-raising programmes to more effectively address gender disparities and discrimination against women", - "values": [ - "Women's rights" - ] - }, - { - "text": "Continue consolidating the national policies to combat poverty and social exclusion in favour of the most vulnerable sectors", - "values": [ - "Poverty" - ] - }, - { - "text": "Abrogate any provisions of defamation in criminal law, and replace them by appropriate provisions under civil law ", - "values": [ - "Freedom of opinion and expression" - ] - }, - { - "text": "Take immediate measures to guarantee all persons' right to participate in the Government of their country and to ensure that the transition process is carried out as scheduled", - "values": [ - "Elections", - "Freedom of association and peaceful assembly" - ] - }, - { - "text": "Further develop the legislation that would allow women to exercise their rights to privacy and confidentiality during police investigations and guarantee the right to presumption of innocence, due process, and legal defence ", - "values": [ - "Justice", - "Privacy", - "Women's rights" - ] - }, - { - "text": "Allow unhindered access for independent human rights monitors by issuing a standing invitation to the Special Procedures of the Human Rights Council ", - "values": [ - "Special procedures" - ] - }, - { - "text": "Intensify efforts to enhance the participation of women in socio-economic activities ", - "values": [ - "Women's rights" - ] - }, - { - "text": "Conduct more public prevention and awareness-raising campaigns on protection measures against HIV-AIDS, in particular for poor adolescent and people from the vulnerable group.", - "values": [ - "HIV - Aids", - "Human rights education and training" - ] - }, - { - "text": "The Government is committed to increasing the participation of women in governance on New Zealand stock exchange (NZX) top 100 and state sector boards, through targets as opposed to quotas.", - "values": [ - "Women's rights" - ] - }, - { - "text": "Adopt measures to legally abolish the death penalty ", - "values": [ - "Death penalty" - ] - }, - { - "text": "Intensify efforts in the fight against hate speech and train law enforcement officials in this respect", - "values": [ - "Racial discrimination" - ] - }, - { - "text": "Ratify CRPD-OP", - "values": [ - "Disabilities", - "International instruments" - ] - }, - { - "text": "Continue to confront the scourge of terrorism", - "values": [ - "Public security" - ] - }, - { - "text": "Strengthen and take the measures required to prevent and punish sexual violence ", - "values": [ - "Women's rights" - ] - }, - { - "text": "Maintain a strong focus on the issue of domestic violence and implement systematic measures to protect the victims of domestic violence ", - "values": [ - "Rights of the Child", - "Women's rights" - ] - }, - { - "text": "Vigorously prosecute and pursue jail sentences for convicted trafficking offenders and support prosecution efforts by finalizing the March 2009 protection law ", - "values": [ - "Trafficking" - ] - }, - { - "text": "Ensure that all children born in the country, who have not been registered, are provided with birth certificates and personal documents", - "values": [ - "Rights of the Child" - ] - }, - { - "text": "Examine the possibility of establishing a national human rights institution ", - "values": [ - "National Human Rights Institution" - ] - }, - { - "text": "Ratify the Optional Protocol to the Convention against Torture and other Cruel, Inhuman or Degrading Treatment or Punishment", - "values": [ - "International instruments", - "Torture and other CID treatment", - "Treaty bodies" - ] - }, - { - "text": "Work to apply a human rights approach to all initiatives related to disaster prevention and response to emergencies in its efforts to build national capacity and resilience to natural disasters", - "values": [ - "Environment" - ] - }, - { - "text": "Increase work on gender equality, sexual violence and empowerment of women, especially regarding women's rights to inheritance and access to land.", - "values": [ - "Women's rights" - ] - }, - { - "text": "Strengthen protection measures for children and vulnerable persons", - "values": [ - "Rights of the Child" - ] - }, - { - "text": "Accelerate the process of revising the legislative framework governing prisons with a view to harmonizing it with the 2011 Constitution and international standards", - "values": [ - "Detention" - ] - }, - { - "text": "Eradicate, in national legislation and in practice, torture or other cruel, inhuman and degrading treatment", - "values": [ - "Torture and other CID treatment" - ] - }, - { - "text": "Release all arbitrarily detained persons in Bahrain, including the Danish-Bahrain citizen Abdulhadi Al-Khawaja, a victim of torture who needs treatment and rehabilitation", - "values": [ - "Detention", - "Torture and other CID treatment" - ] - }, - { - "text": "Ratify CAT, ICRMW and the Optional Protocol to CAT", - "values": [ - "Detention", - "International instruments", - "Labour", - "Migrants", - "Torture and other CID treatment" - ] - }, - { - "text": "Review the Criminal Code to ensure its conformity with article 15 of the Convention against Torture.", - "values": [ - "International instruments", - "Torture and other CID treatment" - ] - }, - { - "text": "Conduct a public consultation on the Cybercrime law to ensure that the law does not prevent free speech and expression, including religious expression ", - "values": [ - "Freedom of opinion and expression", - "Freedom of religion and belief" - ] - }, - { - "text": "Adopt a law on access to information in accordance with the international standards on the issue", - "values": [ - "Freedom of opinion and expression" - ] - }, - { - "text": "Ratify the Convention on the Rights of Persons with Disabilities and the Optional Protocol, as well as the International Convention on the Protection of the Rights of All Migrant Workers and Members of Their Families ", - "values": [ - "Disabilities", - "International instruments", - "Labour", - "Migrants" - ] - }, - { - "text": "Take the necessary steps to ensure that the principles that guarantee equality between men and women are applied in judicial proceedings and that socio-legal services are made more available to women ", - "values": [ - "Justice", - "Women's rights" - ] - }, - { - "text": "Establish a moratorium on executions with a view to abolishing the death penalty and to commute, without delay, all death sentences to terms of imprisonment", - "values": [ - "Death penalty" - ] - }, - { - "text": "Study the possibility of expanding measures to combat discrimination, especially in the case of children with disabilities and HIV ", - "values": [ - "Disabilities", - "HIV - Aids", - "Rights of the Child" - ] - }, - { - "text": "That all attacks on journalists are thoroughly investigated in a timely manner ", - "values": [ - "Freedom of the press" - ] - }, - { - "text": "Align with the comprehensive recommendations made by the Committee against Torture and those mentioned by the Human Rights Committee in its review of Pakistan in 2017, regarding the rule of law and access to justice", - "values": [ - "Justice", - "Treaty bodies" - ] - }, - { - "text": "Continue its process of consultation with civil society in its follow-up to this review.", - "values": [ - "Civil society", - "UPR process" - ] - }, - { - "text": "Carry out efforts for the implementation of recommendations on the improvement of the judiciary and the judicial system that the Russian Federation made at the last universal periodic review", - "values": [ - "Justice", - "UPR process" - ] - }, - { - "text": "Enhance cooperation with the OHCHR by agreeing to outstanding requests for visits to China and extending a standing invitation for future UN special procedures requests", - "values": [ - "Special procedures", - "Technical assistance and cooperation" - ] - }, - { - "text": "Allow visits by the Special Rapporteurs on the independence of judges and lawyers, torture and human rights defenders, and by any other special procedures who request visits to Fiji", - "values": [ - "Human rights defenders", - "Justice", - "Special procedures", - "Torture and other CID treatment" - ] - }, - { - "text": "Consider ratifying the Convention on the Elimination of All Forms of Discrimination against Women", - "values": [ - "International instruments", - "Women's rights" - ] - }, - { - "text": "Designate a new ombudsperson and implement without delay the national preventive mechanism against torture", - "values": [ - "Detention", - "Torture and other CID treatment" - ] - }, - { - "text": "Adjust detention and prison facilities as well as standards of treatment so that they are gender-sensitive and ensure effective protection of the personal safety of all detainees and prisoners ", - "values": [ - "Detention", - "Women's rights" - ] - }, - { - "text": "Continue its efforts to promote and protect the right to education and make additional efforts to make access to education easier for all ", - "values": [ - "Right to education" - ] - }, - { - "text": "Become a party to CED ", - "values": [ - "Enforced disappearances", - "International instruments" - ] - }, - { - "text": "Continue its efforts to ensure that the universal health-care scheme covers disadvantaged groups, including persons with disabilities and persons living in remote rural areas that still face obstacles in accessing basic healthcare services", - "values": [ - "Disabilities", - "Right to health" - ] - }, - { - "text": "Investigate all violations of humanitarian law by terrorists groups", - "values": [ - "Public security" - ] - }, - { - "text": "Intensify efforts in the field of the protection of children, ratify soon the Council of Europe Convention on the Protection of Children against Sexual Exploitation and Sexual Abuse, and implement the provisions contained therein ", - "values": [ - "Rights of the Child" - ] - }, - { - "text": "Accede to ICCPR OP1, ICCPR OP2, OP-CAT and ratify Rome Statute of the ICC", - "values": [ - "CP rights - general", - "Death penalty", - "Detention", - "International instruments", - "Justice", - "Torture and other CID treatment" - ] - }, - { - "text": "Develop a legislative reform package to eliminate gender-based violence ", - "values": [ - "Women's rights" - ] - }, - { - "text": "Continue the effective implementation of preventive programmes to guarantee the full enjoyment of rights and the protection of LGBTI people against acts of violence and discrimination affecting them", - "values": [ - "Sexual Orientation and Gender Identity" - ] - }, - { - "text": "Consider the possibility of ratifying the Convention on the Protection of all Persons against Enforced Disappearances", - "values": [ - "Enforced disappearances", - "International instruments" - ] - }, - { - "text": "Develop and approve the legal framework allowing to meet the minimum quota for women to sit in the Federal Parliament", - "values": [ - "Elections", - "Women's rights" - ] - }, - { - "text": "In line with its previous UPR commitment enact legislation to prohibit corporal punishment in all settings", - "values": [ - "Torture and other CID treatment", - "UPR process" - ] - }, - { - "text": "Continue to consider entering into ICESCR and ICCPR ", - "values": [ - "CP rights - general", - "ESC rights - general", - "International instruments" - ] - }, - { - "text": "Accelerate the process of designation of the new Ombudsman", - "values": [ - "National Human Rights Institution" - ] - }, - { - "text": "Ensure the improvement of prisons' conditions by providing training in human rights to penitentiary staff and strengthening the National Observatory of Places of Deprivation of Liberty", - "values": [ - "Detention", - "Human rights education and training" - ] - }, - { - "text": "Adopt a comprehensive legislation on equality and gender violence", - "values": [ - "Women's rights" - ] - }, - { - "text": "Improve conditions in all prisons and other detention facilities to ensure compliance with international standards, including the UN Standard Minimum Rules for the Treatment of Prisoners and further effectively address the issue of prison overcrowding", - "values": [ - "Detention" - ] - }, - { - "text": "Continue to support healthcare services by exploring the possibility of establishing a system of medical insurance that would ensure healthcare coverage to all social groups, especially the poorest", - "values": [ - "Right to health" - ] - }, - { - "text": "Continue to put into practice the recommendations accepted in the Universal Periodic Review of 2009", - "values": [ - "UPR process" - ] - }, - { - "text": "Consider enacting specific legislation prohibiting and punishing violence against children", - "values": [ - "Rights of the Child" - ] - }, - { - "text": "Continue measures for improving access by women victims of trafficking and sexual violence to complaints mechanisms and protection services", - "values": [ - "Trafficking", - "Women's rights" - ] - }, - { - "text": "Ratify the Optional Protocol to the Convention against Torture and Other Cruel, Inhuman or Degrading Treatment or Punishment ", - "values": [ - "Detention", - "International instruments", - "Torture and other CID treatment" - ] - }, - { - "text": "Repeal immediately the four recently adopted laws on the "protection of race and religion" regarding interfaith marriage, religious conversion, monogamy, and population control", - "values": [ - "Freedom of religion and belief", - "Minorities", - "Racial discrimination" - ] - }, - { - "text": "Adopt the necessary measures to put an end to early and enforced marriage, to follow-up on victim testimony and bring perpetrators to justice", - "values": [ - "Rights of the Child" - ] - }, - { - "text": "Take the appropriate legislative measures to ensure direct prosecution under criminal law of sexual exploitation and ill-treatment of children.", - "values": [ - "Rights of the Child" - ] - }, - { - "text": "Continue to make efforts to eliminate female genital mutilation by enacting legislation which prohibits this practice and adopt a National Action Plan to increase awareness among women of the harmful consequences of the practice of female genital mutilation", - "values": [ - "Human rights education and training", - "Rights of the Child", - "Torture and other CID treatment", - "Women's rights" - ] - }, - { - "text": "Change the public policies and abolish legislation, norms, mechanism or discriminatory provisions against Palestinians living in Israel and in the occupied territories, including putting an end to the segregated roads for the exclusive use of the Israeli population, the settlements, the restrictions to the freedom of movement of Palestinians, the control posts, and the separation walls, the use of human shields in operations of the Israeli military and the practice of selective killings through the use of drones", - "values": [ - "Extrajudicial executions", - "Freedom of movement", - "International humanitarian law", - "Minorities", - "Racial discrimination" - ] - }, - { - "text": "Continue measures for the prevention of forced sterilization and provision of legal remedies to victims of such violations. ", - "values": [ - "Torture and other CID treatment" - ] - }, - { - "text": "Continue the efforts to combat trafficking in persons with a special emphasis on women and children.", - "values": [ - "Rights of the Child", - "Trafficking", - "Women's rights" - ] - }, - { - "text": "Continue to improve women's socio-economic condition in line with the recent reforms undertaken by the government ", - "values": [ - "Women's rights" - ] - }, - { - "text": "Take adequate measures towards providing legislative protection to its disabled community", - "values": [ - "Disabilities" - ] - }, - { - "text": "Bring national legislation into compliance with the Optional Protocol to the Convention on the Rights of the Child", - "values": [ - "International instruments", - "Rights of the Child" - ] - }, - { - "text": "Ensure adequate protection and sheltering of women and children in need", - "values": [ - "Rights of the Child", - "Women's rights" - ] - }, - { - "text": "Investigate and vigorously prosecute crimes perpetuated against vulnerable groups, such as the disabled and persons with albinism", - "values": [ - "Disabilities", - "Minorities" - ] - }, - { - "text": "Take further steps in combating gender-based violence, domestic violence, including sexual abuse, against women and girls", - "values": [ - "Rights of the Child", - "Women's rights" - ] - }, - { - "text": "Take administrative measures to ameliorate the situation of children and women ", - "values": [ - "Rights of the Child", - "Women's rights" - ] - }, - { - "text": "Continue implementing training programmes of public officers within the framework of the revised National Action Plan against Trafficking of Human Beings ", - "values": [ - "Trafficking" - ] - }, - { - "text": "Abolish torture and other cruel, inhuman and degrading treatment in all forms, in particular stoning, flogging and the amputation of limbs, and the execution of minors, as recommended by the Human Rights Committee and the relevant special mandate holders, respectively.", - "values": [ - "Special procedures", - "Torture and other CID treatment", - "Treaty bodies" - ] - }, - { - "text": "Strengthen measures to ensure inclusion of and respect for the rights of all ethnic and religious communities ", - "values": [ - "Freedom of religion and belief", - "Minorities" - ] - }, - { - "text": "Declare and implement a moratorium on the death penalty ", - "values": [ - "Death penalty" - ] - }, - { - "text": "Accede to the Convention against Enforced Disappearance ", - "values": [ - "Enforced disappearances", - "International instruments" - ] - }, - { - "text": "Confirm in deed the status of standing invitation to the Special Procedures, in particular by inviting the Special Rapporteurs on the rights of migrant workers, on trafficking in persons, particularly women and children, as well as on the sale of children ", - "values": [ - "Labour", - "Migrants", - "Rights of the Child", - "Special procedures", - "Trafficking", - "Women's rights" - ] - }, - { - "text": "Ratify CEDAW and meanwhile continue efforts to review existing legislation, policy and practice to ensure protection for the rights of women ", - "values": [ - "International instruments", - "Women's rights" - ] - }, - { - "text": "Allow visits from special procedures representatives of the Human Rights Council and other relevant human rights institutions and mechanisms, as previously recommended", - "values": [ - "Special procedures", - "UPR process" - ] - }, - { - "text": "Continue to combat corruption in the administration of justice sector by ensuring that anti-corruption procedures are free from political or under undue influences", - "values": [ - "Corruption", - "Justice" - ] - }, - { - "text": "Continue its efforts and initiatives to fight against corruption", - "values": [ - "Corruption" - ] - }, - { - "text": "Continue efforts to combat inequalities and discrimination in the work place, particularly with regard to women", - "values": [ - "Women's rights" - ] - }, - { - "text": "Consider finalizing the ratification process of the International Convention on the Rights of Migrant Workers and Members of Their Families (ICRMW) ", - "values": [ - "International instruments", - "Labour", - "Migrants" - ] - }, - { - "text": "Subscribe to the Optional Protocol to the Convention on the Rights of Persons with Disabilities ", - "values": [ - "Disabilities", - "International instruments" - ] - }, - { - "text": "Extend a standing invitation to all special procedures of the United Nations to further such cooperation", - "values": [ - "Special procedures" - ] - }, - { - "text": "Develop a close dialogue with all minorities regarding language education issues", - "values": [ - "Minorities", - "Right to education" - ] - }, - { - "text": "Accede to the core international human rights instruments, namely, the ICCPR and the ICESCR ", - "values": [ - "CP rights - general", - "ESC rights - general", - "International instruments" - ] - }, - { - "text": "Continue its efforts to further improve the living standards of its population, including progress in accessing to basic health services", - "values": [ - "Right to health" - ] - }, - { - "text": "Repeal the provisions of the 2009 Criminal Code which criminalize sexual relations between consenting adults of the same sex", - "values": [ - "Sexual Orientation and Gender Identity" - ] - }, - { - "text": "Take appropriate measures to speed up the ratification of the laws on children, and gender equality and participation of women", - "values": [ - "Rights of the Child", - "Women's rights" - ] - }, - { - "text": "Adopt necessary mechanisms to implement the recommendations of the Special Rapporteur on freedom of religion or belief", - "values": [ - "Freedom of religion and belief", - "Special procedures" - ] - }, - { - "text": "Strengthen the system for protecting children from exploitation", - "values": [ - "Rights of the Child" - ] - }, - { - "text": "Step up its cooperation with United Nations special procedures.", - "values": [ - "Special procedures" - ] - }, - { - "text": "Align the minimum age of criminal responsibility with accepted international norms on the matter and ensure that all children up to the age of 18 years can benefit from the protection of the juvenile justice system", - "values": [ - "Justice", - "Rights of the Child" - ] - }, - { - "text": "Consider the ratification of the International Covenant on Economic, Social and Cultural Rights and the International Convention on the Protection of the Rights f All Migrant Workers and Members of Their Families", - "values": [ - "ESC rights - general", - "International instruments", - "Labour", - "Migrants" - ] - }, - { - "text": "Barbados is committed to the promotion and protection of human rights and fundamental freedoms and has undertaken to implement policies and measures that reflect this commitment ", - "values": [ - "General" - ] - }, - { - "text": "Implement UN Rules for the Treatment of Women Prisoners and Non-Custodial Measures for Women Offenders, otherwise known as the "Bangkok Rules" as part of its work on the prison system", - "values": [ - "Detention", - "Women's rights" - ] - }, - { - "text": "Revive the former six decade-old moratorium on the death penalty with the clear objective of complete abolition", - "values": [ - "Death penalty" - ] - }, - { - "text": "Implement the Supreme Court rulings of 2013 and 2015 on the Truth, Reconciliation and Disappearance Act so that investigation into human rights violations committed during the civil war, compensation for victims and reconciliation efforts are undertaken in accordance with international standards on transitional justice", - "values": [ - "Justice" - ] - }, - { - "text": "Intensify efforts to ratify the Convention against Torture", - "values": [ - "International instruments", - "Torture and other CID treatment" - ] - }, - { - "text": "Hand in its initial report to the Committee against Torture as soon as possible", - "values": [ - "Torture and other CID treatment", - "Treaty bodies" - ] - }, - { - "text": "Continue to promote the right to education, while prohibiting corporal punishment ", - "values": [ - "Right to education", - "Torture and other CID treatment" - ] - }, - { - "text": "Continue making progress in the protection and promotion of the rights of migrants, including the safeguard of the interests of boys, girls, adolescents and women ", - "values": [ - "Migrants", - "Rights of the Child", - "Women's rights" - ] - }, - { - "text": "Create an environment conducive for free, fair and peaceful elections and ensure the personal safety and equal treatment of all candidates and voters throughout the electoral process in the upcoming presidential elections and beyond", - "values": [ - "Elections" - ] - }, - { - "text": "Continue developing programmes aimed at providing equal access to quality education for vulnerable groups, with a special emphasis on the inclusion of persons with disabilities and children under poverty conditions guaranteeing gender equality", - "values": [ - "Disabilities", - "Poverty", - "Right to education", - "Rights of the Child", - "Women's rights" - ] - }, - { - "text": "Guarantee equality of civil and political rights. Avoid all forms of discrimination based on ethnicity, religion, gender or sexual orientation", - "values": [ - "CP rights - general", - "Freedom of religion and belief", - "Minorities", - "Racial discrimination", - "Sexual Orientation and Gender Identity", - "Women's rights" - ] - }, - { - "text": "Ratify the Second Protocol of the International Covenant on Civil and Political Rights, aiming at the abolition of the death penalty, in order to de jure abolish the death penalty ", - "values": [ - "Death penalty", - "International instruments" - ] - }, - { - "text": "Develop a national plan of action for the implementation of children's rights ", - "values": [ - "Rights of the Child" - ] - }, - { - "text": "Continue working on implementing the programme on sustainable development, a strategy adopted under the recent National Council for Development, which is based on the interconnection between economic, social and environmental processes, a strategy which is similar to that of Bhutan's middle path of sustainable development, which is also based on the premise that economic, social and environmental forces are highly interdependent", - "values": [ - "Development", - "ESC rights - general" - ] - }, - { - "text": "Give special attention to the prevention of domestic violence against women and children ", - "values": [ - "Rights of the Child", - "Women's rights" - ] - }, - { - "text": "End arbitrary detentions and guarantee treatment of detainees in line with international standards", - "values": [ - "Torture and other CID treatment" - ] - }, - { - "text": "Finalize and enact anti-trafficking legislation and, in the interim, enforce existing trafficking provisions of the 2009 Criminal Code", - "values": [ - "Trafficking" - ] - }, - { - "text": "Take further action to combat corruption.", - "values": [ - "Corruption" - ] - }, - { - "text": "Ratify and fully implement the International Labour Organization Protocol to the Forced Labour Convention, 1930", - "values": [ - "International instruments", - "Labour" - ] - }, - { - "text": "Take appropriate measures to ensure that mandatory basic education includes children with disabilities ", - "values": [ - "Disabilities", - "Right to education", - "Rights of the Child" - ] - }, - { - "text": "Be proactive in its measures to prevent discrimination against immigrant, refugee and minority women who continue to suffer from multiple forms of discrimination, and to combat violence against them", - "values": [ - "Asylum-seekers - refugees", - "Migrants", - "Minorities", - "Racial discrimination", - "Women's rights" - ] - }, - { - "text": "Enforce the principle of separation between State and Church in accordance with its own Constitution and not to condition the fulfilment of the rights of some of its citizens by the agreement of a religious body ", - "values": [ - "Other" - ] - }, - { - "text": "Develop initiatives aimed at ensuring access to the judiciary by indigenous persons", - "values": [ - "Indigenous peoples", - "Justice" - ] - }, - { - "text": "Exert further efforts to ensure that all children born in the national territory are registered", - "values": [ - "Rights of the Child", - "Statelessness and the right to nationality" - ] - }, - { - "text": "Improve the conditions of detention in police stations and prisons and effectively investigate credible allegations of abuse, consistent with the Convention against Torture and Other Cruel, Inhuman or Degrading Treatment or Punishment", - "values": [ - "Detention", - "International instruments", - "Torture and other CID treatment" - ] - }, - { - "text": "Define and criminalize the offence of torture in the national criminal statute", - "values": [ - "Torture and other CID treatment" - ] - }, - { - "text": "Recommended that the justiciability of economic, social, and cultural rights be established in domestic law.", - "values": [ - "ESC rights - general" - ] - }, - { - "text": "Consider the possibility of ratifying the International Convention on the Elimination of All Forms of Racial Discrimination ", - "values": [ - "International instruments", - "Racial discrimination" - ] - }, - { - "text": "Accede to the Convention of Privileges and Immunities of the ICC and adjust its national legislation with all the obligations emanating from the Rome Statute, including the provisions on the investigation and prosecution of genocide, crimes against humanity and war crimes", - "values": [ - "International instruments", - "Justice" - ] - }, - { - "text": "Strengthen and enlarge existing programmes and take more and specific measures towards Aboriginals, particularly with regard to the improvement of housing, educational opportunities, especially after elementary school, employment, and that women's and children's rights are better safeguarded, in consultation with civil society", - "values": [ - "Indigenous peoples" - ] - }, - { - "text": "Take measures to reduce cases of violence against women, including training of security forces, prosecutors and judges to increase awareness and gender-sensitivity", - "values": [ - "Human rights education and training", - "Women's rights" - ] - }, - { - "text": "Ensure that its legal framework and actions concerning asylum seekers, refugees, and migrants comply with Hungary's international human rights obligations, including with regard to procedural safeguards. ", - "values": [ - "Asylum-seekers - refugees", - "International instruments", - "Migrants" - ] - }, - { - "text": "Take all necessary measures for an effective and exhaustive implementation of the law against discrimination", - "values": [ - "Other" - ] - }, - { - "text": "Establish and respect a moratorium on the application of the death penalty in Somalia, in accordance with its 2011 universal periodic review commitment", - "values": [ - "Death penalty", - "UPR process" - ] - }, - { - "text": "Design programmes for the implementation of its human rights action plan", - "values": [ - "General" - ] - }, - { - "text": "Designate and empower one or more government officials to coordinate the Government's efforts to protect children ", - "values": [ - "Rights of the Child" - ] - }, - { - "text": "Strengthen the role of the National Council on Civil Liberties and Human Rights in the promotion and protection of human rights in accordance with the Paris Principles", - "values": [ - "National Human Rights Institution" - ] - }, - { - "text": "Continue monitoring tendencies that may give rise to racist and xenophobic acts, in accordance with the recommendations of the Committee on the Elimination of Racial Discrimination and other treaty bodies.", - "values": [ - "Racial discrimination", - "Treaty bodies" - ] - }, - { - "text": "Foster a genuine culture of human rights in line with national and regional particularities as well as cultural, historical and religious backgrounds", - "values": [ - "Human rights education and training" - ] - }, - { - "text": "Ensure full implementation of the law increasing the penalty for bride-kidnapping in order to eliminate violence against women, in particular bride-kidnapping of underage girls, polygamous unions and early marriage of girls", - "values": [ - "Rights of the Child", - "Women's rights" - ] - }, - { - "text": "Strengthen its legal framework on the fulfilment of the rights of migrants, by considering accession to the International Convention on the Protection of the Rights of All Migrant Workers and Members of Their Families", - "values": [ - "International instruments", - "Labour", - "Migrants" - ] - }, - { - "text": "Reinstate the Council for the Prevention of Racial Discrimination, Xenophobia and Related Intolerance or create an alternative multi-stakeholder institution with the objective of preventing discrimination and intolerance, in all its aspects", - "values": [ - "National Human Rights Institution", - "Racial discrimination" - ] - }, - { - "text": "Take adequate measures to eradicate all contemporary forms of slavery", - "values": [ - "Other" - ] - }, - { - "text": "Declare a moratorium for the abolition of death penalty", - "values": [ - "Death penalty" - ] - }, - { - "text": "Fight more vigorously human trafficking in the Mediterranean", - "values": [ - "Trafficking" - ] - }, - { - "text": "Enable the full deployment, without obstruction, of the UNMISS Regional Protection Force, as authorized by Security Council resolution 2304 (2016), to bring stability and help prevent further atrocities ", - "values": [ - "Public security" - ] - }, - { - "text": "Ensure that freedom of expression is safeguarded in all its forms, including artistic expressions", - "values": [ - "Freedom of opinion and expression" - ] - }, - { - "text": "Reverse its decision to withdraw from the American Convention on Human Rights", - "values": [ - "Other" - ] - }, - { - "text": "Strengthen efforts to submit all overdue reports to United Nations human rights treaty bodies.", - "values": [ - "Treaty bodies" - ] - }, - { - "text": "Further develop its institutional and human rights infrastructure, including the appointment of a federal ombudsperson", - "values": [ - "National Human Rights Institution" - ] - }, - { - "text": "Guarantee the right to social security of the population, especially of groups in vulnerable situations such as children and people with disabilities", - "values": [ - "Disabilities", - "ESC rights - general", - "Rights of the Child" - ] - }, - { - "text": "Adopt a penal code, consistent with international human rights standards", - "values": [ - "International instruments" - ] - }, - { - "text": "Enhance the Criminal Code which punishes hate crimes", - "values": [ - "Racial discrimination" - ] - }, - { - "text": "Develop policies favouring equal opportunities for women ", - "values": [ - "Women's rights" - ] - }, - { - "text": "Establish a national human rights programme which fully incorporates international instruments to which Hungary is a party ", - "values": [ - "International instruments" - ] - }, - { - "text": "Revise its Law 3005/2006 on Combating Domestic Violence to address the issue of marital rape, to prohibit physical violence against minors and facilitate legal procedure for victims", - "values": [ - "Rights of the Child", - "Women's rights" - ] - }, - { - "text": "Fully integrate a gender perspective in the UPR process, including the outcome of the review, in accordance with resolution 5-1.", - "values": [ - "UPR process", - "Women's rights" - ] - }, - { - "text": "Provide for reintegration projects for children and women escaping from Al Shaabab-controlled areas ", - "values": [ - "Rights of the Child", - "Women's rights" - ] - }, - { - "text": "Consider early ratification of the third Optional Protocol to the CRC on a communications procedure ", - "values": [ - "International instruments", - "Rights of the Child" - ] - }, - { - "text": "Expedite the ratification of the Optional Protocol to the Convention against Torture and establish a National Preventive Mechanism for places of detention", - "values": [ - "Detention", - "International instruments", - "Torture and other CID treatment" - ] - }, - { - "text": "Consider specific measures to strengthen secondary school retention ", - "values": [ - "Right to education" - ] - }, - { - "text": "Foster an inclusive society in which all, regardless of race, citizenship and religion, are equally protected ", - "values": [ - "Freedom of religion and belief", - "Minorities", - "Racial discrimination" - ] - }, - { - "text": "Redouble efforts to ensure the ratification of the International Convention on the Protection of the Rights of All Migrant Workers and Members of Their Families and the International Convention for the Protection of All Persons from Enforced Disappearance", - "values": [ - "Enforced disappearances", - "International instruments", - "Labour", - "Migrants" - ] - }, - { - "text": "Adopt a moratorium on eviction until measures are taken to guarantee effective implementation of the 2001 law on land property and to deal with this problem in a more humane and dignified manner ", - "values": [ - "Right to housing", - "Right to land" - ] - }, - { - "text": "Ensure the full and equal enjoyment by women of all human rights without discrimination.", - "values": [ - "Women's rights" - ] - }, - { - "text": "Make efforts taken in the field of measures to improve access to justice", - "values": [ - "Justice" - ] - }, - { - "text": "Continue its effort to promote and protect the rights of children including further action against the abduction, maltreatment and abandonment of children", - "values": [ - "Rights of the Child" - ] - }, - { - "text": "Continue strengthening its successful education policy, in conditions that ensure access to education with full equality ", - "values": [ - "Right to education" - ] - }, - { - "text": "Continue efforts in further promotion of women's rights", - "values": [ - "Women's rights" - ] - }, - { - "text": "Decriminalize defamation and include it under the Civil Code in accordance with international standards, develop self-regulatory mechanisms of the media and strengthen the professional standards of journalism in the country", - "values": [ - "Freedom of opinion and expression", - "Freedom of the press" - ] - }, - { - "text": "Intensify its efforts to accelerate women's equal participation at all levels and in all areas of public life.", - "values": [ - "Women's rights" - ] - }, - { - "text": "Launch mechanisms for recognition of truth and compensation to victims of Andijan ", - "values": [ - "Justice" - ] - }, - { - "text": "Sign and ratify the Second Optional Protocol to the International Covenant on Civil and Political Rights, aiming at the abolition of the death penalty", - "values": [ - "Death penalty", - "International instruments" - ] - }, - { - "text": "Strengthen services aimed at protecting women and children, including through greater legal protection, and provide women and children with adequate information on how to gain access to support and medical care ", - "values": [ - "Rights of the Child", - "Women's rights" - ] - }, - { - "text": "Continue its efforts to adopt a comprehensive legislation in the area of anti-discrimination ", - "values": [ - "Other" - ] - }, - { - "text": "Enact electoral reforms to address problems noted by multiple observers during February 2016 elections, including by making the process for appointment to the Electoral Commission more inclusive and transparent", - "values": [ - "Elections" - ] - }, - { - "text": "Intensify its efforts to eliminate discrimination based on ethnicity, including by improving access to justice for victims of ethnic discrimination", - "values": [ - "Minorities", - "Racial discrimination" - ] - }, - { - "text": "Withdraw reservations to articles 2 and 7 of the CRC to ensure to everyone the right to a name and nationality through universal birth registration", - "values": [ - "International instruments", - "Rights of the Child", - "Statelessness and the right to nationality" - ] - }, - { - "text": "Ratify the Convention on the Rights of Persons with Disabilities and its Optional Protocol", - "values": [ - "Disabilities", - "International instruments" - ] - }, - { - "text": "Strengthen measures and enact specific legislation to combat discrimination and violence against women, in particular sexual and domestic violence", - "values": [ - "Women's rights" - ] - }, - { - "text": "Make the fight against corruption sustainable by ensuring that due legal process is being followed from the opening of an investigation through to the end. Political outbursts should be avoided to leave room for genuine and independent work by police and prosecution. Furthermore, practices should be developed and implemented to prevent future cases of high-level corruption, mainly by ensuring increased and effective transparency in processes such as privatization and public tenders", - "values": [ - "Corruption" - ] - }, - { - "text": "Finalise and implement a National Action Plan on the Rights of the Child as a matter of priority, in the meantime, put measures in place to protect those who are vulnerable such as unaccompanied children and children with disabilities", - "values": [ - "Disabilities", - "Rights of the Child" - ] - }, - { - "text": "Implement the Law on Meetings, Rallies and Demonstrations in a transparent and proportional manner ", - "values": [ - "Freedom of association and peaceful assembly" - ] - }, - { - "text": "Analyze each of the United Nations treaty bodies recommendations in close cooperation with civil society to implement them or to report publicly on the reasons why it considers their implementation not appropriate ", - "values": [ - "Civil society", - "Treaty bodies" - ] - }, - { - "text": "Consider implementing recommendations of relevant treaty bodies in accordance with their national priorities ", - "values": [ - "Treaty bodies" - ] - }, - { - "text": "Work with the Roma self-governments, NGOs and human rights organizations to implement measures to encourage Roma and other victims to report hate crimes and, when they do, to protect them from reprisals ", - "values": [ - "Civil society", - "Minorities", - "Racial discrimination" - ] - }, - { - "text": "Further strengthen its international human rights commitments to the principle of cooperation and dialogue with the United Nations human rights mechanisms", - "values": [ - "Special procedures", - "Technical assistance and cooperation", - "Treaty bodies", - "UPR process" - ] - }, - { - "text": "Step up its efforts through providing mandatory human rights education and training for law enforcement personnel, the judiciary, prison guards and other relevant public officials", - "values": [ - "Human rights education and training" - ] - }, - { - "text": "Extend the scope of free basic health care to groups that are not yet covered by this benefit", - "values": [ - "Right to health" - ] - }, - { - "text": "Ensure full implementation of the Constitution's provisions for the free operation of civil society, including through a revised NGO law that conforms to international standards and protects freedom of expression", - "values": [ - "Civil society", - "Freedom of association and peaceful assembly", - "Freedom of opinion and expression" - ] - }, - { - "text": "Protect ethnic and religious minorities, including Tibetans and Uyghurs, stop all disproportionate policies against them, while addressing their discontent in a non-violent, dialogical way ", - "values": [ - "Freedom of religion and belief", - "Minorities" - ] - }, - { - "text": "Increase its efforts to address violence against women and children as an urgent priority. This includes fully implementing the Family Protection Act and providing necessary resourcing to ensure that vulnerable women and children have access to both safe dwellings and mechanisms of justice", - "values": [ - "Rights of the Child", - "Women's rights" - ] - }, - { - "text": "Continue its ongoing efforts in adopting various national human rights policies based on the National Human Rights Plan 2014-2019, including by providing the necessary budgetary requirements for the actual implementation of those policies", - "values": [ - "General" - ] - }, - { - "text": "Strengthen its efforts to combat trafficking in women and children for sexual and other exploitative purposes ", - "values": [ - "Rights of the Child", - "Trafficking", - "Women's rights" - ] - }, - { - "text": "Speed up the adoption of amendments to all national legislation in particular for the penal code and relevant legislation ", - "values": [ - "Justice" - ] - }, - { - "text": "Release a clear timetable for work towards ICCPR ratification", - "values": [ - "CP rights - general", - "International instruments" - ] - }, - { - "text": "Continue to ensure effective implementation of the national and transnational referral mechanism for victims of trafficking, and improve public awareness about the human trafficking issue", - "values": [ - "Human rights education and training", - "Trafficking" - ] - }, - { - "text": "Abrogate the Amnesty Decree-Law No. 2.191 ", - "values": [ - "Justice" - ] - }, - { - "text": "Adopt legislative measures to eliminate gender violence and ensure that all women and girls who were victims of gender violence have access, among others, to health, legal and emergency services as recommended by the Committee on the Elimination of Discrimination against Women ", - "values": [ - "Rights of the Child", - "Treaty bodies", - "Women's rights" - ] - }, - { - "text": "Improve and strengthen cooperation with all relevant United Nations special procedures and mechanisms to, inter alia, improve the enjoyment of human rights by populations in the Occupied Palestinian Territories and to reverse the dire humanitarian situation there", - "values": [ - "Special procedures", - "Treaty bodies", - "UPR process" - ] - }, - { - "text": "Establish a moratorium on the death penalty, accede to the Second Optional Protocol to the International Covenant on Civil and Political Rights, and take all necessary steps to remove the death penalty from Trinidad and Tobago law ", - "values": [ - "Death penalty", - "International instruments" - ] - }, - { - "text": "Continue its efforts to promote and fully develop the role of women in the political, economic and social fields ", - "values": [ - "Women's rights" - ] - }, - { - "text": "Accelerate efforts regarding birth registration, while ensuring the free issuance of birth certificates to all children", - "values": [ - "Statelessness and the right to nationality" - ] - }, - { - "text": "Repeal laws criminalizing relations between consenting adults of the same sex ", - "values": [ - "Sexual Orientation and Gender Identity" - ] - }, - { - "text": "Strengthen its policy aimed at combating prejudice against minorities", - "values": [ - "Minorities", - "Racial discrimination" - ] - }, - { - "text": "Ensure the most vulnerable asylum seekers and migrants - such as women who are pregnant or with young children, unaccompanied minors, and persons with disabilities - have access to basic services and safe, adequate living conditions, including by increasing shelter capacity", - "values": [ - "Asylum-seekers - refugees", - "Disabilities", - "Migrants", - "Minorities", - "Rights of the Child", - "Women's rights" - ] - }, - { - "text": "Continue its ongoing efforts to promote and realize all human rights for its citizens, including the right to adequate housing", - "values": [ - "Right to housing" - ] - }, - { - "text": "Guarantee respect for freedom of information and expression, especially regarding the press, both local and foreign, and the political sphere ", - "values": [ - "Freedom of opinion and expression", - "Freedom of the press" - ] - }, - { - "text": "Provide capacity-building to law enforcement officials on the identification of child victims of commercial sexual exploitation and on measures to protect children from commercial sexual exploitation", - "values": [ - "Labour", - "Rights of the Child", - "Trafficking" - ] - }, - { - "text": "Accede and fully align its national legislation with the Rome Statute and accede to the Agreement on the Privileges and Immunities of the International Criminal Court", - "values": [ - "International instruments", - "Justice" - ] - }, - { - "text": "Ensure that the national human rights institution and the national preventive mechanism envisaged by the Optional Protocol to the Convention against Torture comply fully with the Paris Principles", - "values": [ - "Detention", - "International instruments", - "National Human Rights Institution", - "Torture and other CID treatment" - ] - }, - { - "text": "Consider the possibility of ratifying the Optional Protocol to the Convention on the Rights of the Child on the involvement of children in armed conflict", - "values": [ - "International humanitarian law", - "International instruments", - "Rights of the Child" - ] - }, - { - "text": "Actively develop education, especially basic education, and provide greater support to schools in rural areas", - "values": [ - "Right to education" - ] - }, - { - "text": "Continue efforts directed to achieving gender equality, and fully implement the National Programme for Substantive Equality for 2010-2013 ", - "values": [ - "Women's rights" - ] - }, - { - "text": "Ratify without delay the International Convention for the Protection of All Persons from Enforced Disappearance", - "values": [ - "Enforced disappearances", - "International instruments" - ] - }, - { - "text": "Incorporate in the criminal code and the military criminal code clear provisions that prohibit all forms of torture", - "values": [ - "Torture and other CID treatment" - ] - }, - { - "text": "Reinforce the awareness-raising system to prevent and combat the scourge which is violence against women ", - "values": [ - "Human rights education and training", - "Women's rights" - ] - }, - { - "text": "A sustained improvement of the humanitarian situation in the Palestine territories can only be achieved by the permanent settlement of the conflict. Encouraged the international community to continue its efforts to that end. necessary measures must be taken to ameliorate the living conditions of the Palestine people. Call on all parties concerned to refrain from any action that could undermine the process leading to a durable solution.", - "values": [ - "General" - ] - }, - { - "text": "Ensure the rigorous implementation of the anti-discrimination legislation in order to ensure the respect of the rights of all Bolivian citizens", - "values": [ - "Other" - ] - }, - { - "text": "Adopt and implement the measures necessary to prevent abuses, namely, the ill treatment and abuse of children, including sexual abuse, as referred to by the Committee on the Rights of the Child, and ensure that such abuses are properly prosecuted within a child-friendly judicial procedure, including appropriate reintegration and rehabilitation schemes for victims, regardless of their sex ", - "values": [ - "Rights of the Child", - "Treaty bodies" - ] - }, - { - "text": "Uphold and respect the rights of all religious communities to their institutional autonomy, their property and their procedures at all times", - "values": [ - "Freedom of religion and belief", - "Minorities" - ] - }, - { - "text": "Take steps to protect freedom of expression, including online freedoms", - "values": [ - "Freedom of opinion and expression" - ] - }, - { - "text": "Give further account to its measures to ensure public access to the Internet as well as progress being made thereon", - "values": [ - "Freedom of opinion and expression" - ] - }, - { - "text": "Adopt legislation prohibiting all forms of discrimination, including on the grounds of sexual orientation and gender identity, and abolish all provisions of Executive Decree No. 204/1997 determining homosexuality as a serious misconduct for members of the national police", - "values": [ - "Sexual Orientation and Gender Identity" - ] - }, - { - "text": "Adopt a definition of torture in line with article 1 of the Convention against Torture and Other Cruel, Inhuman or Degrading Treatment or Punishment\n", - "values": [ - "International instruments", - "Torture and other CID treatment" - ] - }, - { - "text": "Strengthen its efforts to promote and protect the rights of persons with disabilities", - "values": [ - "Disabilities" - ] - }, - { - "text": "Enhance measures to ensure the human right to adequate housing, primarily for low-income population groups ", - "values": [ - "Right to housing" - ] - }, - { - "text": "Adapt the military justice system to international standards so that it guarantees the right to a fair trial.", - "values": [ - "Justice" - ] - }, - { - "text": "Continue its efforts to strengthen its anti-corruption legislation and institutional framework ", - "values": [ - "Corruption" - ] - }, - { - "text": "Provide adequate protection to asylum seekers as required by relevant international norms including the principle of non-refoulement and to consider ratifying the Convention on Refugees", - "values": [ - "Asylum-seekers - refugees", - "International instruments" - ] - }, - { - "text": "Strengthen its efforts to ensure that juvenile justice standards are fully implemented, in particular that children are detained only as a last resort and for as short a time as possible, that children's rights are not violated while in detention and that programmes are in place to train specialized judges and other professionals involved in the juvenile justice system.", - "values": [ - "Detention", - "Human rights education and training", - "Justice", - "Rights of the Child" - ] - }, - { - "text": "Draft their Constitutions in an inclusive process with the participation of civil society, women and minorities. Also, ensure that the new Constitutions include a catalogue of human rights, in particular the freedom of speech and assembly, and take the multiethnic and multireligious background of their population into account ", - "values": [ - "Civil society", - "Freedom of association and peaceful assembly", - "Freedom of opinion and expression", - "Freedom of religion and belief", - "Minorities", - "Women's rights" - ] - }, - { - "text": "Develop relevant legislation to resolve the issue of ownership of private media, in a spirit of transparency ", - "values": [ - "Freedom of the press" - ] - }, - { - "text": "Strengthen the fight against child trafficking, female genital mutilation, maternal mortality, drug trafficking and lack of security ", - "values": [ - "Public security", - "Right to health", - "Rights of the Child", - "Torture and other CID treatment", - "Trafficking", - "Women's rights" - ] - }, - { - "text": "Strengthen the current legislation regarding criminalization of incitement to hatred", - "values": [ - "Racial discrimination" - ] - }, - { - "text": "Make every effort to ensure that the forthcoming World Cup and Olympics will bring lasting benefits to the poorest and most marginalized urban inhabitants ", - "values": [ - "Poverty" - ] - }, - { - "text": "Put in place relevant laws that prohibit discrimination in employment against persons with disabilities and provide access to health care and other services for disabled persons", - "values": [ - "Disabilities", - "Labour", - "Right to health" - ] - }, - { - "text": "Revisit its decision not to support the United Nations Declaration on the Rights of Indigenous Peoples, with a view to protecting the rights of indigenous peoples in the country, and engage with the Maori and the wider community to promote the realization of indigenous rights.", - "values": [ - "Indigenous peoples", - "International instruments" - ] - }, - { - "text": "Accelerate citizenship verification processes so that populations now deprived of identity documents do not remain in an illegal situation", - "values": [ - "Statelessness and the right to nationality" - ] - }, - { - "text": "Provide effective human rights education and training for enforcement officials, including prison guards, and take appropriate actions against human rights violations committed by public actors", - "values": [ - "Detention", - "Human rights education and training", - "Human rights violations by state agents" - ] - }, - { - "text": "Formulate a comprehensive national strategy for the protection of the rights of children, with a view to ensuring compliance with the Convention on the Rights of the Child, following the review of national laws", - "values": [ - "International instruments", - "Rights of the Child" - ] - }, - { - "text": "Amend sections 9 and 16 of the Citizenship Act to ensure that nationality provisions are applied equally to men and women", - "values": [ - "Women's rights" - ] - }, - { - "text": "Consider ratifying the Convention on the Rights of the Child and the International Convention on the Protection of the Rights of All Migrant Workers and Members of their Families", - "values": [ - "International instruments", - "Labour", - "Migrants", - "Rights of the Child" - ] - }, - { - "text": "End incitement to hatred, including statements that show contempt for General Assembly resolutions 60-7 and 61-255, on Holocaust remembrance and Holocaust denial, respectively", - "values": [ - "Freedom of religion and belief", - "Racial discrimination" - ] - }, - { - "text": "Fully implement the new criminal procedure code, including necessary constitutional and statutory reforms needed to limit the powers of the Prosecutor General's office, and establish an impartial and independent criminal justice system, in line with Ukraine's obligations under the ICCPR", - "values": [ - "International instruments", - "Justice" - ] - }, - { - "text": "Establish equal rights for all children, regardless of the marriage status of their parents", - "values": [ - "Rights of the Child" - ] - }, - { - "text": "Ensure that all persons detained, also in terrorism-related cases, have access to legal counsel and are duly informed about the charges that are brought against them", - "values": [ - "Counter-terrorism", - "Detention" - ] - }, - { - "text": "Intensify its efforts to further combat all discrimination on the ground of ethnic origin ", - "values": [ - "Racial discrimination" - ] - }, - { - "text": "Take necessary measures to combat discriminatory practices against women and migrant workers in the labour market", - "values": [ - "Labour", - "Migrants", - "Racial discrimination", - "Women's rights" - ] - }, - { - "text": "Continue its efforts to assist indigenous communities, including the Pygmies, who share the same culture as those living in the Central African Republic.", - "values": [ - "Indigenous peoples" - ] - }, - { - "text": "Accelerate efforts to increase the number of women in public life and to eliminate and prevent violence against women", - "values": [ - "Women's rights" - ] - }, - { - "text": "Cooperate with regard to sharing expertise and experiences in the area of providing welfare to older persons, so that this pioneering experience is benefited from ", - "values": [ - "Other" - ] - }, - { - "text": "Continue promoting and protecting the rights of vulnerable people: women, children, the elderly and persons with disabilities", - "values": [ - "Disabilities", - "Rights of the Child", - "Women's rights" - ] - }, - { - "text": "Ensure that immigration legislation is in accordance with its international human rights obligations", - "values": [ - "International instruments", - "Migrants" - ] - }, - { - "text": "Fully implement its national action plan to combat intimate partner violence and other forms of domestic violence", - "values": [ - "Rights of the Child", - "Women's rights" - ] - }, - { - "text": "Continue its efforts to further spread in the country the model of rural growth in the Mahatma Gandhi National Rural Employment Guarantee Act ", - "values": [ - "Development" - ] - }, - { - "text": "Build the capacity of national institutions and mechanisms to promote and protect human rights in the implementation of international human rights instruments ", - "values": [ - "International instruments" - ] - }, - { - "text": "Ratify the Council of Europe Convention on the Protection of Children against Sexual Exploitation and Abuse, as a member of the European family", - "values": [ - "International instruments", - "Rights of the Child" - ] - }, - { - "text": "Implement an effective law to protect the women and child victims of domestic violence ", - "values": [ - "Rights of the Child", - "Women's rights" - ] - }, - { - "text": "Increase efforts to submit pending reports to the Committee on the Elimination of Racial Discrimination", - "values": [ - "Racial discrimination", - "Treaty bodies" - ] - }, - { - "text": "Repeal all legislative provisions which lead to discriminations based on sexual orientation and declared or perceived gender identity of persons", - "values": [ - "Sexual Orientation and Gender Identity" - ] - }, - { - "text": "Investigate and punish ill-treatment, harassment and incitement to violence and hatred, to which minorities and other vulnerable groups are subjected ", - "values": [ - "Minorities", - "Racial discrimination", - "Torture and other CID treatment" - ] - }, - { - "text": "Combat poverty effectively through the promotion of decent work", - "values": [ - "Poverty" - ] - }, - { - "text": "Ensure universal birth registration and take the necessary steps to achieve universal primary education and combat illiteracy", - "values": [ - "Right to education", - "Rights of the Child", - "Statelessness and the right to nationality" - ] - }, - { - "text": "Become a State party of the Optional Protocol to the Convention on the Rights of the Child on a communications procedure ", - "values": [ - "International instruments", - "Rights of the Child" - ] - }, - { - "text": "Continue its efforts on capacity-building programmes of law enforcement officials in strengthening the implementation of existing laws, policies and measures relating to human rights ", - "values": [ - "Justice" - ] - }, - { - "text": "Continue efforts relating to the fight against discrimination, analyzing the possibility that the national legal framework includes all forms of discrimination ", - "values": [ - "Other" - ] - }, - { - "text": "Establish an independent national human rights institution in compliance with the Paris Principles", - "values": [ - "National Human Rights Institution" - ] - }, - { - "text": "Take new measures, where necessary, concerning female victims of domestic violence", - "values": [ - "Rights of the Child", - "Women's rights" - ] - }, - { - "text": "Accede to ICCPR-OP2, aimed at abolishing the death penalty and take the necessary steps to remove the death penalty from its justice system ", - "values": [ - "Death penalty", - "International instruments" - ] - }, - { - "text": "Take effective action to ensure accountability of the armed forces and law enforcement officials", - "values": [ - "International humanitarian law", - "Justice" - ] - }, - { - "text": "Increase its efforts to reform FARDC, and bring the perpetrators of atrocious crimes committed against the wider population from within the military to justice. ", - "values": [ - "Justice" - ] - }, - { - "text": "Engage intensively in the struggle against racist speech in politics in order to contain its negative impact on people's attitudes towards foreigners and in the sports world", - "values": [ - "Racial discrimination" - ] - }, - { - "text": "Ratify the international human rights treaties, to which it is not yet party, and cooperate with the OHCHR, treaty bodies and Special Procedures ", - "values": [ - "International instruments", - "Special procedures", - "Technical assistance and cooperation", - "Treaty bodies" - ] - }, - { - "text": "Consider the recommendations on reforms to the justice system made by the President of the Supreme Court in his speech of 7 January and identify improvements which will help to guarantee the human right of access to justice. This should include thorough investigation of malpractice and a zero tolerance approach towards corruption ", - "values": [ - "Corruption", - "Justice" - ] - }, - { - "text": "Strengthen efforts to eliminate illiteracy, particularly in rural areas ", - "values": [ - "Right to education" - ] - }, - { - "text": "Put an end to all forms of discrimination by employers against workers from religious minorities in the public and private sectors, including the adoption of internal regulations banning the wearing of clothes representing a religion or a culture", - "values": [ - "Freedom of religion and belief", - "Labour", - "Racial discrimination" - ] - }, - { - "text": "Remove any structural and institutional impediments that hinder the implementation of the Freedom of the Mass Media and Access to Information Proclamation ", - "values": [ - "Freedom of the press" - ] - }, - { - "text": "Review legislation in order to raise the minimum age of criminal responsibility in line with international standards", - "values": [ - "Justice", - "Rights of the Child" - ] - }, - { - "text": "Complete the work on clarifying the legal consequences of the ratification of ILO Convention No. 169 as a matter of priority ", - "values": [ - "Indigenous peoples", - "International instruments" - ] - }, - { - "text": "Increase the efforts to create harmony by fighting the unnecessary discrimination between nationals and foreigners living in the Republic of Korea", - "values": [ - "Racial discrimination" - ] - }, - { - "text": "Continue action to reduce maternal and infant mortality", - "values": [ - "Right to health", - "Rights of the Child", - "Women's rights" - ] - }, - { - "text": "Adopt comprehensive antidiscrimination legislation.", - "values": [ - "Other" - ] - }, - { - "text": "Continue with the formulation of a human rights strategy and with human rights education.", - "values": [ - "Human rights education and training" - ] - }, - { - "text": "Enlarge the scope of the White Paper for Vulnerable Children and its Children's Action Plan by taking into account the relationship between child abuse and contributing factors such as domestic violence and poverty ", - "values": [ - "Poverty", - "Rights of the Child" - ] - }, - { - "text": "In the context of the defence of the right to life, carefully assess the transfer of arms to those countries where they are likely to be used for human rights abuses and violations", - "values": [ - "CP rights - general", - "Public security" - ] - }, - { - "text": "Take urgent measures to investigate and sanction before justice harmful practices, such as forced marriage, female genital mutilation, widowhood practice, levirate and sororate, and purification rites for adulterous women", - "values": [ - "Rights of the Child", - "Torture and other CID treatment", - "Women's rights" - ] - }, - { - "text": "Prohibit all forms of corporal punishment of children and ratify the three Optional Protocols to the Convention on the Rights of the Child", - "values": [ - "International instruments", - "Rights of the Child" - ] - }, - { - "text": "Create and adopt all legislative and administrative measures necessary to ensure that all families, including those based on non-conventional family models, are treated equally under the law, particularly with regard to issues of residency and inheritance", - "values": [ - "Sexual Orientation and Gender Identity" - ] - }, - { - "text": "Continue to guarantee religious freedom by taking away any impediment to the full enjoyment of this basic human rights for all its citizens", - "values": [ - "Freedom of religion and belief" - ] - }, - { - "text": "Ensure equal treatment before the law for non-citizens", - "values": [ - "Other" - ] - }, - { - "text": "Complete its international commitments by ratifying on a priority basis the International Covenant on Civil and Political Rights", - "values": [ - "CP rights - general", - "International instruments" - ] - }, - { - "text": "Continue negotiations with a view to a peaceful resolution of pending questions", - "values": [ - "Other" - ] - }, - { - "text": "As recommended by the Committee on the Rights of the Child, take measures to address the problem of violence against children, ensure a national system to receive, monitor and investigate complaints, and, when necessary, prosecute and punish perpetrators ", - "values": [ - "Rights of the Child", - "Treaty bodies" - ] - }, - { - "text": "Ensure that the principles and provisions of the International Convention on the Elimination of All Forms of Racial Discrimination are directly and fully applicable under domestic law in all territories of the United Kingdom", - "values": [ - "International instruments", - "Racial discrimination" - ] - }, - { - "text": "With regard to recommendations on elaborating laws specifically protecting human rights defenders, the delegation reaffirmed its commitment to continue discussions to set up a specific legal framework for them.", - "values": [ - "Human rights defenders" - ] - }, - { - "text": "Ensure that all ministerial decrees regulating religious life, as well as all local religiously founded bylaws, are in conformity with international human rights law ", - "values": [ - "Freedom of religion and belief", - "International instruments" - ] - }, - { - "text": "Effectively implement United Nations treaty bodies' recommendations and as appropriate on indigenous people", - "values": [ - "Indigenous peoples", - "Treaty bodies" - ] - }, - { - "text": "Take necessary measures to enable all citizens to fully take part in the democratic process in advance of the 2015 elections, including allowing open and inclusive electoral debate, civic and voter education, election monitoring and the active engagement of civil society organizations and independent media ", - "values": [ - "Civil society", - "Elections", - "Freedom of the press" - ] - }, - { - "text": "Continue to take effective measures to address the serious social problem of rape and to reinforce its domestic legislation concerning domestic violence against women.", - "values": [ - "Women's rights" - ] - }, - { - "text": "Finalize and implement the draft National Action Plan for Children, and put in place effective national legislation and policies to protect the rights of children ", - "values": [ - "Rights of the Child" - ] - }, - { - "text": "Reinforce the measures to protect the rights of the child", - "values": [ - "Rights of the Child" - ] - }, - { - "text": "Revise transparency laws to reinstate a freedom of information parliamentary ombudsman, and ex ante reclaiming of labour costs for processing information requests, and limit public institutions' authority to refuse access to public data", - "values": [ - "Freedom of opinion and expression", - "Freedom of the press" - ] - }, - { - "text": "Greater support for Djibouti in the field of technical assistance to strengthen the NHRC and the national body responsible for statistics ", - "values": [ - "National Human Rights Institution", - "Technical assistance and cooperation" - ] - }, - { - "text": "Continue the policy of protection of national minorities and promotion of religious tolerance ", - "values": [ - "Freedom of religion and belief", - "Minorities" - ] - }, - { - "text": "Ensure access to basic health care and medical assistance to all people living in Spain without discrimination, including migrants with an irregular situation", - "values": [ - "Migrants", - "Racial discrimination", - "Right to health" - ] - }, - { - "text": "Strengthen the administration of justice according to international standards, which may contribute to reducing the growing number of cases of impunity", - "values": [ - "Impunity", - "Justice" - ] - }, - { - "text": "Strengthen the capacity and enhance the resources of the National Commission on Gender Policy to ensure the full enjoyment of gender equality", - "values": [ - "Women's rights" - ] - }, - { - "text": "Adopt a national strategy for the elimination of violence against women ", - "values": [ - "Women's rights" - ] - }, - { - "text": "Ratify the core human rights treaties, particularly the CRC, ICESCR, CEDAW and its Optional Protocol, the OP-CAT and the CMW and the CRPD with its Optional Protocol", - "values": [ - "International instruments" - ] - }, - { - "text": "Establish specialized tribunals with a view to accelerating trials related to family cases, in which the best interests of children should prevail", - "values": [ - "Justice", - "Rights of the Child" - ] - }, - { - "text": "Enact legislation which makes a distinction between the freedom of expression and hate speech", - "values": [ - "Freedom of opinion and expression", - "Racial discrimination" - ] - }, - { - "text": "Continue the significant efforts underway to ensure gender equality", - "values": [ - "Women's rights" - ] - }, - { - "text": "Provide teaching of the mother-tongue to migrant children more effectively, with improved cooperation with the Suisse communal authorities", - "values": [ - "Migrants", - "Right to education", - "Rights of the Child" - ] - }, - { - "text": "Ratify the Rome Statute of the International Criminal Court and accede to the Agreement on the Privileges and Immunities of the International Criminal Court", - "values": [ - "International instruments", - "Justice" - ] - }, - { - "text": "Public policies will be promoted to ensure equity and better all-round participation by members of particularly vulnerable groups, including older persons, disabled persons, minors, women and members of ethnic minorities such as Afro-descendants and indigenous people. This includes better political representation, access to posts in institutions and the prohibition of any form of discrimination in the workplace or elsewhere", - "values": [ - "Disabilities", - "Indigenous peoples", - "Minorities", - "Racial discrimination", - "Rights of the Child", - "Women's rights" - ] - }, - { - "text": "Consider becoming party to the International Convention on the Protection of the Rights of All Migrant Workers and Members of Their Families", - "values": [ - "International instruments", - "Labour", - "Migrants" - ] - }, - { - "text": "Incorporate international human rights obligations into domestic law by adopting a comprehensive Human Rights Act at federal level", - "values": [ - "International instruments" - ] - }, - { - "text": "Continue its efforts in developing a policy on free primary education.", - "values": [ - "Right to education" - ] - }, - { - "text": "Strengthen its policies and measures for guaranteeing all socioeconomic and cultural rights, and ensure those policies not to impede the full enjoyment of these rights in the context of global and regional financial crisis ", - "values": [ - "ESC rights - general" - ] - }, - { - "text": "Review and improve the practices related to the care of asylum seekers", - "values": [ - "Asylum-seekers - refugees" - ] - }, - { - "text": "Take measures to ensure the right to freedom of expression, including guaranteeing unhindered access for independent media to airtime and the Internet, and to introduce criminal measures for the threatening of journalists and media outlets ", - "values": [ - "Freedom of opinion and expression", - "Freedom of the press" - ] - }, - { - "text": "Continue efforts for the emancipation and empowerment of women", - "values": [ - "Women's rights" - ] - }, - { - "text": "Ratify the Optional Protocol to the International Covenant on Economic, Social and Cultural Rights (OP-ICESCR), the Second Optional Protocol to the International Covenant on Civil and Political Rights (ICCPR-OP2), OP-CAT, the Optional Protocol to the Convention on the Rights of the Child on the involvement of children in armed conflict (OP-CRC-AC), and CED ", - "values": [ - "International humanitarian law", - "International instruments" - ] - }, - { - "text": "To strengthen the procedures for tenancy regularization of urban land", - "values": [ - "Right to land" - ] - }, - { - "text": "Give due consideration to human rights, particularly those of children and persons with disabilities, and continue to make efforts to ensure transparency in all procedures related to its treatment of immigrants and refugees", - "values": [ - "Asylum-seekers - refugees", - "Disabilities", - "Migrants", - "Rights of the Child" - ] - }, - { - "text": "Continue its efforts to ensure education for all children and to proceed, with the support and the assistance of the international community, to the necessary arrangements for the improvement of its educational system.", - "values": [ - "Right to education", - "Rights of the Child", - "Technical assistance and cooperation" - ] - }, - { - "text": "Gender focal points will be appointed to each line Ministry of Government", - "values": [ - "Women's rights" - ] - }, - { - "text": "Continue affirmative action measures to strengthen the participation of women in publicly elected posts ", - "values": [ - "Women's rights" - ] - }, - { - "text": "Continue cooperating with the Human Rights Council to implement the initiatives undertaken for the well-being and the full enjoyment of human rights of its population", - "values": [ - "Special procedures", - "Technical assistance and cooperation" - ] - }, - { - "text": "Continue the process of the juvenile justice reform by taking further measures in line with the nature of children and their needs", - "values": [ - "Justice", - "Rights of the Child" - ] - }, - { - "text": "Given continued concerns regarding lethal use of force, implement the recommendations of the second Turkel Commission report, concerning domestic mechanisms for investigating complaints in relation to violations of the laws of armed conflict", - "values": [ - "International humanitarian law" - ] - }, - { - "text": "Put an end to all human rights violations and release all political prisoners, civil society activists and journalists, end all practices of torture and eliminate all forms of extrajudicial executions ", - "values": [ - "Detention", - "Extrajudicial executions", - "Freedom of opinion and expression", - "Freedom of the press", - "Human rights defenders", - "Torture and other CID treatment" - ] - }, - { - "text": "Adapt labour legislation and improve existing practices with a view to ensuring equal pay for women and overcoming any pay inequalities", - "values": [ - "Women's rights" - ] - }, - { - "text": "Continue to honour its international human rights commitments through compliance with its obligations", - "values": [ - "International instruments" - ] - }, - { - "text": "Grant access of independent observers to detention centres for migrants and clarify their status", - "values": [ - "Detention", - "Migrants" - ] - }, - { - "text": "Ensure protection and assistance to all victims of trafficking", - "values": [ - "Trafficking" - ] - }, - { - "text": "Take further steps in the implementation of CEDAW by prioritizing combating of gender-based violence, abuse and exploitation ", - "values": [ - "International instruments", - "Women's rights" - ] - }, - { - "text": "Incorporate the international instruments that Nigeria has ratified in its national legislation", - "values": [ - "International instruments" - ] - }, - { - "text": "Ratify the Optional Protocol to the International Covenant on Economic, Social and Cultural Rights and opt into the inquiry and inter-State mechanisms", - "values": [ - "ESC rights - general", - "International instruments" - ] - }, - { - "text": "Encourage human rights training for the security forces and law enforcement officials ", - "values": [ - "Human rights education and training" - ] - }, - { - "text": "Continue seeking technical and financial assistance for demining activities, given that children continue to be among the most vulnerable sections of Lebanese society particularly in terms of their exposure to explosive remnants of war", - "values": [ - "Rights of the Child", - "Technical assistance and cooperation" - ] - }, - { - "text": "Give priority to a successful conclusion of the peace process with every effort made to centre it on human rights as a sure foundation for the future of the country ", - "values": [ - "Other" - ] - }, - { - "text": "Further advance all efforts to realise Japan as a gender-equal society", - "values": [ - "Women's rights" - ] - }, - { - "text": "Set up an action plan to combat discrimination, in particular on the grounds of language", - "values": [ - "Other" - ] - }, - { - "text": "Initiate awareness-raising campaigns and improve the discipline of its security forces with regard to combating sexual violence against women and girls. ", - "values": [ - "Human rights education and training", - "Rights of the Child", - "Women's rights" - ] - }, - { - "text": "Intensify its work to improve the situation of its indigenous population.", - "values": [ - "Indigenous peoples" - ] - }, - { - "text": "Promoting the values of integrity, transparency and efficiency in the management of public affairs", - "values": [ - "Corruption" - ] - }, - { - "text": "Share its experiences and best practices in poverty alleviation with other developing countries", - "values": [ - "Poverty" - ] - }, - { - "text": "Take the necessary measures in order to establish a National Human Rights Institution in accordance with the Paris Principles", - "values": [ - "National Human Rights Institution" - ] - }, - { - "text": "Extend an open and permanent invitation to all United Nations special procedures", - "values": [ - "Special procedures" - ] - }, - { - "text": "Bring into law the Prevention of Communal and Targeted Violence bill (2013)", - "values": [ - "Justice" - ] - }, - { - "text": "Continue to strengthen its efforts on human rights education, training and awareness-raising", - "values": [ - "Human rights education and training" - ] - }, - { - "text": "Implement measures to ensure boys and girls have equal opportunity to education at all levels", - "values": [ - "Right to education", - "Rights of the Child" - ] - }, - { - "text": "Take concrete measures to increase the proportion of women in senior management positions in the civil service ", - "values": [ - "Women's rights" - ] - }, - { - "text": "Continue to pay close attention to its obligations under international humanitarian and international human rights law, including with respect to foreign nationals and stateless persons", - "values": [ - "International humanitarian law", - "International instruments", - "Statelessness and the right to nationality" - ] - }, - { - "text": "Proceed with the establishment of a national human rights institution in compliance with the Paris Principles ", - "values": [ - "National Human Rights Institution" - ] - }, - { - "text": "Progress on measures to provide psychological and specialized medical services for children victims of abuse, and continue fighting the worst forms of child labour", - "values": [ - "Labour", - "Rights of the Child" - ] - }, - { - "text": "Take continuous measures for the protection of the rights of women and other marginalized groups", - "values": [ - "Women's rights" - ] - }, - { - "text": "Strengthen its efforts in bringing more equity in ensuring rights and opportunities of rural communities especially, ethnic minorities, women and children who live in those areas.", - "values": [ - "Minorities", - "Rights of the Child", - "Women's rights" - ] - }, - { - "text": "Safeguard equitable protection to all places of worship, including all Muslim and Christian sacred places", - "values": [ - "Freedom of religion and belief" - ] - }, - { - "text": "Adopt suitable legislation to combat and punish discrimination on the basis of pregnancy and family leave in the labour market, which provides for reparation for victims", - "values": [ - "Labour", - "Women's rights" - ] - }, - { - "text": "Provide more direct social assistance and relocation support to victims of trafficking, enhance efforts to prevent the factors behind continued trafficking and ensure effective prosecution of the perpetrators", - "values": [ - "Trafficking" - ] - }, - { - "text": "Pursue its efforts in the area of health and education", - "values": [ - "Right to education", - "Right to health" - ] - }, - { - "text": "Further examine methods to promote greater representation of members of minority groups in the government and parliament", - "values": [ - "Minorities" - ] - }, - { - "text": "Ensure investigations and prosecution of those responsible for abduction and enforced disappearances and encourage the Supreme Court to continue investigation on this problem", - "values": [ - "Enforced disappearances" - ] - }, - { - "text": "Continue its efforts to guarantee the well-being, which allows all patients to enjoy basic health care services", - "values": [ - "Right to health" - ] - }, - { - "text": "End the culture of impunity surrounding cases of retaliation for dissent, attacks on human rights defenders and journalists, the excessive use of force during peaceful demonstrations, abuses of force by state actors, the phenomenon known as "execution of criminals" and other serious human rights violations ", - "values": [ - "Extrajudicial executions", - "Freedom of association and peaceful assembly", - "Freedom of the press", - "Human rights defenders", - "Human rights violations by state agents" - ] - }, - { - "text": "Reinforce measures to prevent trafficking in human beings, provide effective support and redress to victims, investigate and prosecute offenders", - "values": [ - "Trafficking" - ] - }, - { - "text": "Take appropriate measures to improve the accessibility and quality of education", - "values": [ - "Right to education" - ] - }, - { - "text": "Take further measures at the national level to prevent impunity of the perpetrators of the post-election violence", - "values": [ - "Elections", - "Impunity" - ] - }, - { - "text": "Abolish the death penalty in law", - "values": [ - "Death penalty" - ] - }, - { - "text": "Abolish the death penalty or establish a moratorium \n\n", - "values": [ - "Death penalty" - ] - }, - { - "text": "Further strengthen measures to grant foreign children and children of asylum-seekers equal access to the same standards of services in the field of education ", - "values": [ - "Asylum-seekers - refugees", - "Right to education" - ] - }, - { - "text": "Undertake vigorous efforts to ensure effective implementation of key human rights instruments, including human rights training of law enforcement personnel, and further steps to promote gender equality ", - "values": [ - "Human rights education and training", - "International instruments" - ] - }, - { - "text": "Provide the victims of human trafficking with the effective access to legal remedies and compensation ", - "values": [ - "Trafficking" - ] - }, - { - "text": "Fully implement the law on transparency and access to public information", - "values": [ - "Freedom of opinion and expression" - ] - }, - { - "text": "Further invest in education and give special attention to the education of girls and young women ", - "values": [ - "Rights of the Child", - "Women's rights" - ] - }, - { - "text": "Establish a definition of the child in accordance with article 1 and other principles and provisions of CRC, increase the legal age of majority of criminal responsibility, review legislation in force and customary law which establish different minimum ages in different sectors and which may not be in accordance with the relevant provisions of CRC", - "values": [ - "International instruments", - "Justice", - "Rights of the Child" - ] - }, - { - "text": "Continue efforts to ensure gender equality and participation of women in public institutions, including local institutions, as well as in the private sector", - "values": [ - "Women's rights" - ] - }, - { - "text": "Take all appropriate measures to ratify OP-CAT and establish a national preventive mechanism to align itself with its neighbours' positive practices", - "values": [ - "Detention", - "International instruments", - "Torture and other CID treatment" - ] - }, - { - "text": "Increase the training and staffing levels of institutions for children, improve oversight, and implement incentives to attract higher-quality candidates to fill positions at these institutions", - "values": [ - "Rights of the Child" - ] - }, - { - "text": "Continue to strengthen its national human rights and democratic institutions", - "values": [ - "National Human Rights Institution" - ] - }, - { - "text": "Amend its Nationality Law to enable women the legal right to transmit Omani citizenship to their children ", - "values": [ - "Labour", - "Women's rights" - ] - }, - { - "text": "Continue to implement policies and programmes for comprehensive and sustainable development", - "values": [ - "Development" - ] - }, - { - "text": "Increase efforts to combat violence against women and girls, particularly domestic violence and femicide", - "values": [ - "Rights of the Child", - "Women's rights" - ] - }, - { - "text": "Stop all settlement activities", - "values": [ - "Other" - ] - }, - { - "text": "Reinforce and protect the rights of children, in particular by eliminating child labour and facilitating access of poor children to education", - "values": [ - "Labour", - "Poverty", - "Right to education", - "Rights of the Child" - ] - }, - { - "text": "Develop awareness campaigns directed towards adults and children containing preventive measures to avert trafficking in persons", - "values": [ - "Human rights education and training", - "Rights of the Child", - "Trafficking" - ] - }, - { - "text": "Ratify those core international human rights instruments not yet ratified", - "values": [ - "International instruments" - ] - }, - { - "text": "Undertake measures to strengthen synergy and coordination among the various national institutions responsible for the protection of human rights ", - "values": [ - "General" - ] - }, - { - "text": "Continue to promote the efforts to make mentally and psychologically disabled persons benefit from the health-care services", - "values": [ - "Disabilities", - "Right to health" - ] - }, - { - "text": "Consider ratification of all core human rights conventions ", - "values": [ - "International instruments" - ] - }, - { - "text": "Intensify human rights awareness campaigns", - "values": [ - "Human rights education and training" - ] - }, - { - "text": "Undertake legislative reforms to criminalize trafficking in persons, in accordance with the definition contained in the Palermo Protocol.", - "values": [ - "Trafficking" - ] - }, - { - "text": "Take concrete measures to ensure that the guarantees of non-refoulement can be given to any person under the control of the Swedish authorities while considered a refugee by a third country, including for this purpose and if necessary, the adoption of legislative measures", - "values": [ - "Asylum-seekers - refugees" - ] - }, - { - "text": "Put a political plan and a clear strategy to ensure that overlooked ideas about Islamophobia, xenophobia and intolerance are accounted for by those who work in public office and civil service", - "values": [ - "Freedom of religion and belief", - "Racial discrimination" - ] - }, - { - "text": "Ratify the other pending universal human rights treaties ", - "values": [ - "International instruments" - ] - }, - { - "text": "Intensify efforts to combat human trafficking", - "values": [ - "Trafficking" - ] - }, - { - "text": "Ensure the independence of the judiciary", - "values": [ - "Justice" - ] - }, - { - "text": "Promote the independence and pluralism of the media, mindful that freedom of expression is a fundamental human right ", - "values": [ - "Freedom of opinion and expression", - "Freedom of the press" - ] - }, - { - "text": "Agree to the request for visit by the Special Rapporteur on contemporary forms of racism.", - "values": [ - "Racial discrimination", - "Special procedures" - ] - }, - { - "text": "Fully implement the Decade of Roma Inclusion 2005-2015 Programme to address all forms of discrimination against the Roma people and to improve the conditions of Roma settlements.", - "values": [ - "Minorities" - ] - }, - { - "text": "Continue efforts carried out towards the ratification of CPED", - "values": [ - "Enforced disappearances", - "International instruments" - ] - }, - { - "text": "Give appropriate mandate and financial resources to the National Human Rights Commission and the Office of the Mediator of the Republic.", - "values": [ - "National Human Rights Institution" - ] - }, - { - "text": "Outlaw corporal punishment at home and provide victims of domestic violence with access to legal remedies and protection from potential perpetrators", - "values": [ - "Rights of the Child", - "Torture and other CID treatment", - "Women's rights" - ] - }, - { - "text": "Ensure that all complaints of domestic violence are seriously investigated, with the protection of victims and the prosecution of the perpetrators, in accordance with existing legislation, in particular through raising the awareness of police forces on such issues ", - "values": [ - "Human rights education and training", - "Rights of the Child", - "Women's rights" - ] - }, - { - "text": "Continue its national efforts for the promotion and protection of human rights, including in the area of strengthening its national human rights architecture", - "values": [ - "General" - ] - }, - { - "text": "Continue its efforts to advance the empowerment of women and to promote gender equality", - "values": [ - "Women's rights" - ] - }, - { - "text": "Step up efforts to strengthen the national mechanism for the advancement of women and to provide such mechanism with adequate resources ", - "values": [ - "Women's rights" - ] - }, - { - "text": "Continue vigorously to address issues around gender inequality and racial/ethnic discrimination", - "values": [ - "Racial discrimination", - "Women's rights" - ] - }, - { - "text": "Continue efforts to eliminate torture and improve the conditions of detention and the protection of the rights of detainees, and to share relevant experiences with interested countries", - "values": [ - "Detention", - "Torture and other CID treatment" - ] - }, - { - "text": "Ensure that the \u201cTuition Waiver and Tuition Support Fund Programme for High School Education\u201c is extended to all schools in the country, including those that are under the responsibility of local governments", - "values": [ - "Right to education" - ] - }, - { - "text": "Continue implementing the National Illiteracy Eradication Project, giving priority to girls and women", - "values": [ - "Right to education", - "Rights of the Child", - "Women's rights" - ] - }, - { - "text": "Continue efforts for the enactment of the Law against Trafficking in Persons, being sure that its approval will be a precious instrument in the fight against this scourge ", - "values": [ - "Trafficking" - ] - }, - { - "text": "Take further measures to eliminate discrimination and violence against women", - "values": [ - "Women's rights" - ] - }, - { - "text": "Maintain human rights education as a basic part of its National Human Rights Action Plans, including the relevant training of law enforcement agents, public servants and youth", - "values": [ - "Human rights education and training" - ] - }, - { - "text": "Continue to facilitate and strengthen the work of NGOs and other civil society actors, as well as guarantee their social media ", - "values": [ - "Civil society", - "Freedom of the press" - ] - }, - { - "text": "Review the judicial system in order to ensure that the provisions of civil law, Islamic law and customary law conform to the provisions of CEDAW ", - "values": [ - "International instruments", - "Justice", - "Women's rights" - ] - }, - { - "text": "Consider acceding to the Optional Protocol to the Convention on the Elimination of All Forms of Discrimination Against Women (OP-CEDAW)", - "values": [ - "International instruments", - "Women's rights" - ] - }, - { - "text": "Intensify even further its efforts undertaken in regard to initiatives and awareness-raising programmes on gender equality and the protection of LGBT rights ", - "values": [ - "Human rights education and training", - "Sexual Orientation and Gender Identity", - "Women's rights" - ] - }, - { - "text": "Become a party to the ICCPR, the ICESCR, the CAT and its Optional Protocol, the ICERD and the Convention relating to the Status of Refugees and the Protocol thereto", - "values": [ - "International instruments" - ] - }, - { - "text": "Take steps to protect freedom of expression and opinion, in line with its obligations under the International Covenant on Civil and Political Rights ", - "values": [ - "Freedom of opinion and expression", - "International instruments" - ] - }, - { - "text": "Continue efforts to curb trafficking, in cooperation with neighbouring countries, non-governmental organizations and the United Nations, including by developing safe channels of labour migration and by strengthening law enforcement, policing and awareness-raising activities ", - "values": [ - "Human rights education and training", - "Trafficking" - ] - }, - { - "text": "Provide the Ombudsman Commission with the resources necessary to freely and effectively combat government corruption and police abuses", - "values": [ - "Corruption", - "Human rights violations by state agents", - "National Human Rights Institution" - ] - }, - { - "text": "Immediately declare an official moratorium on executions, particularly for minors at the time of the crime", - "values": [ - "Death penalty", - "Rights of the Child" - ] - }, - { - "text": "Reduce the length of the initial pretrial detention phase", - "values": [ - "Detention" - ] - }, - { - "text": "Consider ratifying the Convention for the Protection of Migrant workers and their families ", - "values": [ - "International instruments", - "Labour", - "Migrants" - ] - }, - { - "text": "Intensify efforts to improve the situation in detention centres and prisons, with a special focus on ensuring the separation of juvenile convicts from adult inmates", - "values": [ - "Detention", - "Rights of the Child" - ] - }, - { - "text": "Launch a national dialogue, as well as a campaign through media and in the schools, to tackle all forms of discrimination against lesbian, gay, bisexual and transgender (LGBT) persons ", - "values": [ - "Sexual Orientation and Gender Identity" - ] - }, - { - "text": "Continue its efforts aimed at ratification of OP-CRC-AC ", - "values": [ - "International humanitarian law", - "International instruments", - "Rights of the Child" - ] - }, - { - "text": "Continue its efforts to fight against corporal punishment in all places", - "values": [ - "Torture and other CID treatment" - ] - }, - { - "text": "Ensure equal rights and opportunities for women and girls", - "values": [ - "Rights of the Child", - "Women's rights" - ] - }, - { - "text": "Strengthen its efforts aimed at enhancing human rights awareness to all sectors of the society ", - "values": [ - "Human rights education and training" - ] - }, - { - "text": "Ensure that neither the death penalty nor the life sentence is imposed for offences committed by persons below 18 years of age ", - "values": [ - "Death penalty", - "Rights of the Child" - ] - }, - { - "text": "Establish a national human rights institution, accredited by ICC ", - "values": [ - "National Human Rights Institution" - ] - }, - { - "text": "Consider the eradication of the death penalty ", - "values": [ - "Death penalty" - ] - }, - { - "text": "Ratify international human rights instruments to which the country is not yet a party ", - "values": [ - "International instruments" - ] - }, - { - "text": "Increase all efforts to combat all forms of intolerance, racism, xenophobia and take further measures and policies to combat racist manifestations, in particular against Roma", - "values": [ - "Minorities", - "Racial discrimination" - ] - }, - { - "text": "Increase its efforts to improve the education system, as a tool to enhance peaceful coexistence in the country", - "values": [ - "Right to education" - ] - }, - { - "text": "Consider acceding to other relevant human rights instruments", - "values": [ - "International instruments" - ] - }, - { - "text": "Continue its efforts to conform its National Human Rights Institution with the Paris Principles", - "values": [ - "National Human Rights Institution" - ] - }, - { - "text": "Consider adopting a National Plan adapted for children and early childhood ", - "values": [ - "Rights of the Child" - ] - }, - { - "text": "Promote large-scale registration campaigns for women voters, in particular in rural areas and notably for indigenous women, with a view to ensuring their full participation in political and public life", - "values": [ - "Elections", - "Indigenous peoples", - "Women's rights" - ] - }, - { - "text": "Provide adequate professional training and human rights education to PNC", - "values": [ - "Human rights education and training" - ] - }, - { - "text": "Operationalize the system of management of cases in all courts to ensure effective treatment of criminal cases by the judiciary", - "values": [ - "Justice" - ] - }, - { - "text": "All measures and actions taken to effectively address concerns raised by the Office of the United Nations High Commissioner for Refugees (UNHCR), human rights treaty bodies and special procedures be in line with international human rights laws.", - "values": [ - "Asylum-seekers - refugees", - "International instruments", - "Special procedures", - "Treaty bodies" - ] - }, - { - "text": "Continue taking measures to promote social and economic rights", - "values": [ - "ESC rights - general" - ] - }, - { - "text": "Apply national legislation to individuals without discrimination based on their belonging to a religious minority or on sexual orientation", - "values": [ - "Freedom of religion and belief", - "Minorities", - "Racial discrimination", - "Sexual Orientation and Gender Identity" - ] - }, - { - "text": "Strengthen efforts focusing on facilitating and ensuring access of humanitarian aid, particularly in the areas of armed conflict, and on protecting the civilian infrastructure, including hospitals and schools, including by maintaining and strengthening cooperation with ICRC", - "values": [ - "International humanitarian law" - ] - }, - { - "text": "Lift its reservations to CEDAW ", - "values": [ - "International instruments", - "Women's rights" - ] - }, - { - "text": "Establish a specific timeline for the implementation of the amendment in the Marriage Act.", - "values": [ - "Women's rights" - ] - }, - { - "text": "Amend the provisions of the Criminal Code and eliminate legal provisions and practices by public authorities, including possible practices of harassment and bullying by the police forces, which lead to discrimination based on sexual orientation and gender identity ", - "values": [ - "Human rights violations by state agents", - "Sexual Orientation and Gender Identity" - ] - }, - { - "text": "Establish an independent body to promote and protect the rights of the child and to monitor the implementation of the Convention on the Rights of the Child ", - "values": [ - "International instruments", - "Rights of the Child" - ] - }, - { - "text": "Provide basic health-care services to indigenous communities and consider eliminating the structural discrimination against them and the migrant community", - "values": [ - "Indigenous peoples", - "Migrants", - "Right to health" - ] - }, - { - "text": "Ensure that the education system guidelines prevent discrimination against students", - "values": [ - "Right to education" - ] - }, - { - "text": "Take the necessary steps to strengthen the independence and impartiality of the judiciary", - "values": [ - "Justice" - ] - }, - { - "text": "Prosecute slaveholders and find means for those who were enslaved to obtain compensation", - "values": [ - "Other" - ] - }, - { - "text": "Set up a de jure moratorium on executions with a view to finally abolishing the death penalty as well as commuting any possible death sentences to an imprisonment penalty", - "values": [ - "Death penalty" - ] - }, - { - "text": "Implement foreseen measures to reduce the prevalence of HIV/AIDS by at least 15 per cent", - "values": [ - "HIV - Aids" - ] - }, - { - "text": "Increase efforts to effectively prevent trafficking in human beings for sexual exploitation and forced labour, including child prostitution, and take measures to ensure assistance to possible victims of human trafficking", - "values": [ - "Labour", - "Rights of the Child", - "Trafficking" - ] - }, - { - "text": "Extend the rights enjoyed by traditionally established religions to believers of non-traditional religions, and to enable them to carry out their peaceful activities free from Government interference", - "values": [ - "Freedom of religion and belief" - ] - }, - { - "text": "Cease ungrounded arrests and detentions, as well as the excessive use of force, torture, intimidation and harassment, interference and anti-protest discrimination", - "values": [ - "Detention", - "Freedom of association and peaceful assembly", - "Torture and other CID treatment" - ] - }, - { - "text": "Repeal administrative measures that promote acts that undermine human rights, such as the indiscriminate use of rewards to civil informants.", - "values": [ - "Justice" - ] - }, - { - "text": "Adopt targets of 40 per cent representation of women on public and private sector boards ", - "values": [ - "Women's rights" - ] - }, - { - "text": "Repeal provisions in its legislation which are discriminatory towards women, including in respect of inheritance, land ownership and legal capacity ", - "values": [ - "Women's rights" - ] - }, - { - "text": "Intensify efforts to combat child labour and trafficking in persons, especially women and children ", - "values": [ - "Labour", - "Rights of the Child", - "Trafficking", - "Women's rights" - ] - }, - { - "text": "Put an end to the ill-treatment of suffering Palestinian prisoners, particularly children, held in Israeli prisons", - "values": [ - "Detention", - "Minorities", - "Rights of the Child", - "Torture and other CID treatment" - ] - }, - { - "text": "Enforce national legislation in rural areas in order to prevent child, early and forced marriage", - "values": [ - "Rights of the Child", - "Women's rights" - ] - }, - { - "text": "Continue implementing the State Programme "Work Roadmap 2020"", - "values": [ - "Development" - ] - }, - { - "text": "Raise the age of criminal responsibility so that it complies with international standards, create an effective juvenile justice system and provide separate detention and prison facilities for juvenile offenders and appropriate training for personnel working in the juvenile justice system", - "values": [ - "Detention", - "Justice", - "Rights of the Child" - ] - }, - { - "text": "Prohibit that federal authorities undertake racial profiles, and investigate the disproportionate use of lethal force against coloured people by state and local police", - "values": [ - "Human rights violations by state agents", - "Minorities", - "Racial discrimination" - ] - }, - { - "text": "A public policy based on harnessing the work of NGOs", - "values": [ - "Civil society" - ] - }, - { - "text": "Strengthen human and financial resources available to the directorate of the Ombudsman responsible for the new role of a national preventive mechanism according to the Optional Protocol to the Convention against Torture so that they match the number of facilities overseen", - "values": [ - "Detention", - "National Human Rights Institution", - "Torture and other CID treatment" - ] - }, - { - "text": "Ensure that education promotes the full respect of human rights and the active participation in a free society", - "values": [ - "Human rights education and training" - ] - }, - { - "text": "Take additional steps to ensure that the legislation establishing the Zimbabwe Human Rights Commission is fully compliant with the Paris Principles and includes guarantees for independence in order for the Commission to see accreditation with the International Coordinating Committee of National Institutions for the Promotion and Protection of Human Rights (ICC)", - "values": [ - "National Human Rights Institution" - ] - }, - { - "text": "Consider strengthening the national gender machinery and put in place a comprehensive strategy, including legislation, to modify or eliminate traditional practices, such as female genital mutilation and stereotypes that discriminate against women, paying special attention to the situation of older women ", - "values": [ - "Rights of the Child", - "Torture and other CID treatment", - "Women's rights" - ] - }, - { - "text": "Continue efforts to ensure greater wage equality between men and women", - "values": [ - "Women's rights" - ] - }, - { - "text": "Increase its efforts to prevent and combat all forms of abuse of children and adopt preventative measures and provide protection and services for their recovery ", - "values": [ - "Rights of the Child" - ] - }, - { - "text": "Establish a clear minimum age of criminal responsibility at an internationally acceptable level ", - "values": [ - "Justice", - "Rights of the Child" - ] - }, - { - "text": "Remain focused on combating poverty, particularly in areas where poverty is most prevalent and widespread", - "values": [ - "Poverty" - ] - }, - { - "text": "Recommended that a national commission on human rights be established in accordance with the Paris Principles in fulfilment of its voluntary pledges. ", - "values": [ - "National Human Rights Institution" - ] - }, - { - "text": "End all construction in the Occupied Palestinian Territories and the destruction of natural and agricultural resources of the Palestinian people", - "values": [ - "Right to land" - ] - }, - { - "text": "Withdraw its reservations to CRPD articles 9 (accessibility), 24 (education) and 11 (situations of risk and humanitarian emergencies) ", - "values": [ - "Disabilities", - "International instruments" - ] - }, - { - "text": "Take further measures to reduce the backlog of judicial cases, both nationally and at the European Court of Human Rights", - "values": [ - "Justice" - ] - }, - { - "text": "Adopt necessary legislation to ensure a fully transparent and participatory process for the selection and appointment of the members of the National Human Rights Commission of Korea, guarantee the independence of their members and ensure that it has sufficient resources", - "values": [ - "Other" - ] - }, - { - "text": "Review legislation and registration according to which NGOs that accept foreign funding must register and identify themselves as "foreign agents" ", - "values": [ - "Civil society", - "Freedom of association and peaceful assembly" - ] - }, - { - "text": "With support from the international community, draft legislative bills on domestic violence, and on child abuse ", - "values": [ - "Rights of the Child", - "Technical assistance and cooperation", - "Women's rights" - ] - }, - { - "text": "Consider lifting reservations to a number of ICCPR articles ", - "values": [ - "CP rights - general", - "International instruments" - ] - }, - { - "text": "Prioritize and resolve past crimes, through accelerating the discussion and approval of draft laws on reparations and the memory institute", - "values": [ - "Justice" - ] - }, - { - "text": "Take measures to ensure full participation of all groups of individuals in the political and public affairs of the country", - "values": [ - "CP rights - general" - ] - }, - { - "text": "Ratify the Optional Protocol to the Convention against Torture and establish a national preventive mechanism as soon as possible", - "values": [ - "Detention", - "International instruments", - "Torture and other CID treatment" - ] - }, - { - "text": "Accelerate putting in place a comprehensive development plan for the health system and its infrastructure ", - "values": [ - "Right to health" - ] - }, - { - "text": "End police brutality against African Americans and rectify the judicial as well as socioeconomic systems that systematically discriminate against them", - "values": [ - "Human rights violations by state agents", - "Justice", - "Minorities", - "Racial discrimination" - ] - }, - { - "text": "Adopt all necessary measures to eradicate the persistent practice of FGM, including, inter alia, new awareness-raising campaigns in cooperation with international and regional organizations and civil society ", - "values": [ - "Civil society", - "Human rights education and training", - "Rights of the Child", - "Torture and other CID treatment", - "Women's rights" - ] - }, - { - "text": "Further promote ethnic and racial equality, building on the important policy measures already taken", - "values": [ - "Racial discrimination" - ] - }, - { - "text": "Use every means possible to combat the rise of racism and xenophobia, including in the Internet ", - "values": [ - "Racial discrimination" - ] - }, - { - "text": "Even if only in a modest and gradual way, increase the personnel and financial allocations to the ombudsman in order to ensure that the stronger legal position of the office is also reflected in its human and financial capacities", - "values": [ - "National Human Rights Institution" - ] - }, - { - "text": "Take the necessary measures to improve the situation of foreign workers ", - "values": [ - "Labour", - "Migrants" - ] - }, - { - "text": "Reform legislation and law enforcement in order to ensure freedom of opinion and expression, including on the internet", - "values": [ - "Freedom of opinion and expression" - ] - }, - { - "text": "Take steps to remove domestic legislation that outlaws same-sex activity between consenting adults, and develop policies to address discrimination against LGBT people", - "values": [ - "Sexual Orientation and Gender Identity" - ] - }, - { - "text": "Consider ratification of the International Covenant on Economic, Social and Cultural Rights, the Convention on the Elimination of All forms of Discrimination against Women, the Convention on the Rights of the Child, the Convention on the Rights of Persons with Disabilities as well as the optional protocols to these conventions to which the United States is still not a party", - "values": [ - "Disabilities", - "ESC rights - general", - "International instruments", - "Rights of the Child", - "Women's rights" - ] - }, - { - "text": "Effectively implement the legal provisions of law that combat gender violence", - "values": [ - "Women's rights" - ] - }, - { - "text": "Intensify the fight against stereotypes regarding the Roma minority and further strengthen human rights education and training for representatives of the public authorities in general and law enforcement officials in particular.", - "values": [ - "Human rights education and training", - "Minorities" - ] - }, - { - "text": "Launch new measures and initiatives to continue efforts to ensure a wider access to all of all human rights and fundamental freedom ", - "values": [ - "General" - ] - }, - { - "text": "Continue its efforts to address domestic violence, promote the empowerment of women, improve the quality of education, address unemployment and to draft a new criminal code that would, inter alia, decriminalize sexual activity between consenting adults of the same sex", - "values": [ - "Development", - "Right to education", - "Sexual Orientation and Gender Identity", - "Women's rights" - ] - }, - { - "text": "Establish follow-up mechanisms on the implementation of recommendations made in the framework of the universal periodic review and by treaty bodies", - "values": [ - "Treaty bodies", - "UPR process" - ] - }, - { - "text": "Continue efforts in the area of economic, social and cultural rights.", - "values": [ - "ESC rights - general" - ] - }, - { - "text": "Consider requesting the international community all necessary aid and assistance that will allow it to better fulfill its international obligations in the domain of human rights", - "values": [ - "Technical assistance and cooperation" - ] - }, - { - "text": "Ensure that the Human Rights Ombudsman is an independent institution and receives the necessary resources to fulfil its mandate in accordance with the Paris Principles", - "values": [ - "National Human Rights Institution" - ] - }, - { - "text": "Accelerate the effective implementation of the National Plan 2010-2012 on persons with disabilities including providing them with employment opportunities ", - "values": [ - "Disabilities" - ] - }, - { - "text": "Execute the procedures for family reunification of recognized refugees with utmost speed to ensure the protection of family life of the persons concerned.", - "values": [ - "Asylum-seekers - refugees" - ] - }, - { - "text": "Adopt the Right to Information Bill, building on its efforts to improve good governance, accountability and transparency", - "values": [ - "Freedom of opinion and expression", - "Justice" - ] - }, - { - "text": "Facilitate the active involvement of civil society stakeholders, including human rights non-governmental organizations, in follow-up to the review ", - "values": [ - "Civil society", - "UPR process" - ] - }, - { - "text": "Establish an effective and independent national mechanism for the prevention of torture according to the criteria of the Optional Protocol to the Convention against Torture", - "values": [ - "Detention", - "International instruments", - "Torture and other CID treatment", - "Treaty bodies" - ] - }, - { - "text": "Continue its efforts to combat impunity and violations of human rights, with particular attention to the rights of indigenous populations and persons of African descent ", - "values": [ - "Impunity", - "Indigenous peoples", - "Minorities" - ] - }, - { - "text": "Intensify efforts to eliminate the sexist stereotypes that lead to discrimination against women in public and private life, using the National Gender Equity and Equality Plan ", - "values": [ - "Women's rights" - ] - }, - { - "text": "As a matter of priority, review its criminal law provisions and enact legislation prohibiting all forms of corporal punishment of children in all settings ", - "values": [ - "Rights of the Child", - "Torture and other CID treatment" - ] - }, - { - "text": "Continue efforts aimed at combating violence against women and providing information to women, family and society's leaders regarding the adverse consequences of forced marriages and other forms of domestic violence, including in the framework of the 2012 campaign "Together, we will end domestic violence against women" ", - "values": [ - "Women's rights" - ] - }, - { - "text": "Continue its efforts to protect the rights of all migrants, regardless of their situation and status.", - "values": [ - "Migrants" - ] - }, - { - "text": "Provide the judiciary with adequate human and financial resources for its effective functioning with special attention to the respect of the legislation regarding the preventive detention ", - "values": [ - "Detention", - "Justice" - ] - }, - { - "text": "Ensure accountability for all manifestations of ethnicity-based hate speech, racism and extremist rhetoric in the public sphere", - "values": [ - "Minorities", - "Racial discrimination" - ] - }, - { - "text": "Continue to adopt measures to increase the rate of issuance of birth certificates, especially in rural areas and in low-income households", - "values": [ - "Rights of the Child", - "Statelessness and the right to nationality" - ] - }, - { - "text": "Take appropriate measures to combat violence and harassment against human rights defenders and journalists", - "values": [ - "Freedom of the press", - "Human rights defenders" - ] - }, - { - "text": "Give full effect to the opinion submitted by the Ombudsman to the Government regarding the need to make additional amendments to the legislation to make the institution consistent with the Paris Principles ", - "values": [ - "National Human Rights Institution" - ] - }, - { - "text": "Introduce and enforce legislation prohibiting corporal punishment of children in all settings, including in the family, schools and all places of deprivation of liberty ", - "values": [ - "Rights of the Child", - "Torture and other CID treatment" - ] - }, - { - "text": "Amend domestic legislation with a view to guaranteeing the independence of the judicial power and consider the establishment of an independent body for the appointment of judges", - "values": [ - "Justice" - ] - }, - { - "text": "Develop laws against racial discrimination", - "values": [ - "Racial discrimination" - ] - }, - { - "text": "Re-engage with international human rights monitoring and assistance mechanisms by agreeing to establish an OHCHR field presence, whose mandate would allow unfettered access to monitor, investigate and report human rights violations and promote remedial measures, including criminal investigation, prosecution and capacity-building of domestic human rights mechanisms.", - "values": [ - "Technical assistance and cooperation" - ] - }, - { - "text": "Take appropriate measures to tackle practically the problem of trafficking for sexual exploitation in a comprehensive manner.", - "values": [ - "Trafficking" - ] - }, - { - "text": "Continue efforts to combat discrimination and ethnic profiling", - "values": [ - "Racial discrimination" - ] - }, - { - "text": "Reduce the rate of family separation of indigenous peoples caused, among others, by the removal of babies and children from their families and the imprisonment of juveniles and adults", - "values": [ - "Detention", - "Indigenous peoples", - "Rights of the Child" - ] - }, - { - "text": "Ratify the Optional Protocol to the Convention against Torture and Other Cruel, Inhuman or Degrading Treatment or Punishment and the Optional Protocol to the Convention on the Elimination of All Forms of Discrimination against Women", - "values": [ - "Detention", - "International instruments", - "Torture and other CID treatment", - "Women's rights" - ] - }, - { - "text": "Provide material and moral support for the Centre for Research, Studies, Documentation and Information on Women in order to preserve and promote the rights of women in Tunisia", - "values": [ - "Women's rights" - ] - }, - { - "text": "Continue the implementation of the National Development Strategy 2011-2016 in order to realize the objectives of the Qatar National Vision 2030 ", - "values": [ - "Development" - ] - }, - { - "text": "Extend a standing invitation to all thematic special procedures", - "values": [ - "Special procedures" - ] - }, - { - "text": "Continue to combat the culture of impunity", - "values": [ - "Impunity" - ] - }, - { - "text": "Develop a long-term strategy to address food insecurity, including programmes to rehabilitate and strengthen rural infrastructure and to provide food assistance to vulnerable populations.", - "values": [ - "Right to food" - ] - }, - { - "text": "Authorise and facilitate humanitarian access to all areas of the country", - "values": [ - "Other" - ] - }, - { - "text": "Adopt all types of measures to ensure universal birth registration for all children, regardless of the circumstances in which they were born or the civil or immigration status of their parents, while also facilitating the registration of children of underage mothers or mothers living in rural areas ", - "values": [ - "Rights of the Child", - "Statelessness and the right to nationality" - ] - }, - { - "text": "Ratify the Optional Protocol to CAT", - "values": [ - "Detention", - "International instruments", - "Torture and other CID treatment" - ] - }, - { - "text": "Improve detention conditions", - "values": [ - "Detention" - ] - }, - { - "text": "Improve the monitoring and implementation of measures to combat violence against women ", - "values": [ - "Women's rights" - ] - }, - { - "text": "Accelerate the ratification process of the Optional Protocol to the Convention against Torture and Other Cruel, Inhuman or Degrading Treatment or Punishment", - "values": [ - "Detention", - "International instruments", - "Torture and other CID treatment" - ] - }, - { - "text": "Take further active steps to create equal opportunities for both men and women in the labour market, and to bridge the gender wage gap", - "values": [ - "Women's rights" - ] - }, - { - "text": "Continue to consolidate its successful social plans, particularly its very successful education policy", - "values": [ - "Right to education" - ] - }, - { - "text": "Continue its efforts to amend legislation and strengthen measures to deal with the problem of violence against women and girls, including honour killings, with a view to ensuring that all types of discrimination and violence against women are effectively eliminated.", - "values": [ - "Rights of the Child", - "Women's rights" - ] - }, - { - "text": "Continue to work towards improving the opportunities for women within society in order to empower them to become an important driving force for development.", - "values": [ - "Women's rights" - ] - }, - { - "text": "Refrain from exercising oppression and vengeance against legal activists and those demanding political reforms, the release of all detainees who are held without due cause, and guarantee the rights of prisoners and detainees through fair and just trials", - "values": [ - "Detention", - "Human rights defenders", - "Justice" - ] - }, - { - "text": "Withdraw its reservations to Article 37 (c) of CRC ", - "values": [ - "International instruments", - "Rights of the Child" - ] - }, - { - "text": "Review national legislation to ensure that children are afforded the necessary protection in the juvenile justice system", - "values": [ - "Justice", - "Rights of the Child" - ] - }, - { - "text": "Work closely with Turkey regarding the situation of the Turkish community in Germany ", - "values": [ - "Minorities" - ] - }, - { - "text": "Further improve programmes that address violence against women and children ", - "values": [ - "Rights of the Child", - "Women's rights" - ] - }, - { - "text": "Ensure the rights of indigenous peoples and local forest dependent peoples in law and practice, in particular regarding their right to traditional lands, territories and resources", - "values": [ - "Environment", - "Indigenous peoples", - "Right to land" - ] - }, - { - "text": "Accede to or ratify the following international instruments: the International Convention on the Protection of the Rights of All Migrant Workers and Members of Their Families", - "values": [ - "International instruments", - "Labour", - "Migrants" - ] - }, - { - "text": "Take measures to guarantee the freedom of expression for all people, including human rights defenders ", - "values": [ - "Freedom of opinion and expression", - "Human rights defenders" - ] - }, - { - "text": "The delegation concluded reiterating the Government's commitment to cooperate with international human rights bodies and announced that as a further sign of commitment it would carefully follow-up on the UPR recommendations and report periodically to the Council.", - "values": [ - "Special procedures", - "Treaty bodies", - "UPR process" - ] - }, - { - "text": "Guarantee, explicitly, equal rights before the law for non-citizens", - "values": [ - "Other" - ] - }, - { - "text": "Consider ratification of the Convention on the Rights of Persons with Disabilities, signed in 2007", - "values": [ - "Disabilities", - "International instruments" - ] - }, - { - "text": "Take effective measures as soon as possible in order to avoid overcrowding in prisons and other detention facilities, in line with the Standard Minimum Rules for the Treatment of Prisoners ", - "values": [ - "Detention" - ] - }, - { - "text": "Pay due attention to the implementation of recommendations made by the Special Rapporteur on Torture ", - "values": [ - "Special procedures", - "Torture and other CID treatment" - ] - }, - { - "text": "Abrogate all discriminatory laws and practices against some groups of populations under its jurisdiction, in particular in the areas of access to justice, employment, education, health, right to property, freedom of expression and opinion, and freedom of religion and belief", - "values": [ - "Minorities" - ] - }, - { - "text": "Consider ratifying ILO core conventions", - "values": [ - "International instruments", - "Labour" - ] - }, - { - "text": "Step up efforts aimed at eliminating harmful cultural practices, which hamper the full respect for the human rights of women", - "values": [ - "Torture and other CID treatment", - "Women's rights" - ] - }, - { - "text": "Adopt legislation explicitly prohibiting corporal punishment of children, as previously recommended", - "values": [ - "Rights of the Child", - "Torture and other CID treatment", - "UPR process" - ] - }, - { - "text": "Guarantee the right to family visits and legal assistance, in particular during police inquiries ", - "values": [ - "Detention" - ] - }, - { - "text": "Provide unlimited access to the International Committee of the Red Cross to all detention facilities in the country ", - "values": [ - "Detention" - ] - }, - { - "text": "Investigate complaints of all ill-treatment by ethnic minorities, including Africans and Roma, and hold perpetrators responsible ", - "values": [ - "Minorities", - "Torture and other CID treatment" - ] - }, - { - "text": "Continue its good efforts to address violence against women and domestic violence, including by increasing support for victims of domestic violence", - "values": [ - "Rights of the Child", - "Women's rights" - ] - }, - { - "text": "Adopt further measures to promote working condition of migrant workers, especially women migrant workers and to improve their integration in the Korean society", - "values": [ - "Labour", - "Migrants", - "Women's rights" - ] - }, - { - "text": "Continue its current efforts in the field of promotion and protection of women's rights", - "values": [ - "Women's rights" - ] - }, - { - "text": "Prepare a specific plan to ensure that the Nepal Lands Act will in practice effectively promote equality ", - "values": [ - "Right to land" - ] - }, - { - "text": "Ratify the Optional Protocol to CEDAW as soon as possible", - "values": [ - "International instruments", - "Women's rights" - ] - }, - { - "text": "Fully implement the recommendations of the CEDAW and CRC on the decriminalization of abortion and on exceptions to the general prohibition of abortion for cases of therapeutic abortion and when the pregnancy is the result of rape or incest", - "values": [ - "International instruments", - "Rights of the Child", - "Women's rights" - ] - }, - { - "text": "De-occupy the territories of Georgia - Abkhazia and Tskhinvali region including South Ossetia, and until remaining in the territories in question, to comply with the obligation incumbent upon the occupying power by the rules of the international humanitarian law", - "values": [ - "International humanitarian law" - ] - }, - { - "text": "Expedite the development of a new Maori language strategy", - "values": [ - "ESC rights - general", - "Indigenous peoples" - ] - }, - { - "text": "Further continue efforts to eliminate the gap in accessing education between rural and urban areas and the dropout rates among indigenous and Afro-descendant students", - "values": [ - "Indigenous peoples", - "Minorities", - "Right to education" - ] - }, - { - "text": "Become party to the Optional Protocol to the International Covenant on Economic, Social and Cultural Rights ", - "values": [ - "ESC rights - general", - "International instruments" - ] - }, - { - "text": "Continue its work on improving the situation of children's rights, by taking further measures to develop comprehensive policies and strategies, and by strengthening the education system, healthcare and social protection", - "values": [ - "Rights of the Child" - ] - }, - { - "text": "Ensure, in law and practice, all guarantees of due process of law established in ICCPR, including the principle of presumption of innocence, as well as avoiding any punishment for the exercise of other rights recognized under the Covenant, such as freedom of expression and the right to association and assembly", - "values": [ - "CP rights - general", - "Freedom of association and peaceful assembly", - "Freedom of opinion and expression", - "International instruments" - ] - }, - { - "text": "Adopt the necessary measures to guarantee universal birth registration, with a particular emphasis on indigenous boy and girls", - "values": [ - "Indigenous peoples", - "Rights of the Child", - "Statelessness and the right to nationality" - ] - }, - { - "text": "Take effective measures to tackle the root causes of racial discrimination and raise awareness about stereotypes", - "values": [ - "Human rights education and training", - "Racial discrimination" - ] - }, - { - "text": "Pursue effective policies in combating violence against women and children.", - "values": [ - "Rights of the Child", - "Women's rights" - ] - }, - { - "text": "Strengthen the national machinery for the advancement of women and take measures to overcome stereotypical attitudes regarding the roles of women and men in society", - "values": [ - "Women's rights" - ] - }, - { - "text": "Continue implementing the country's strategies and plans for socioeconomic development, particularly with a view to reducing poverty ", - "values": [ - "Development", - "Poverty" - ] - }, - { - "text": "Consider establishing an official moratorium on executions with a view to abolishing the death penalty as called for by the UN General Assembly resolution 69/186", - "values": [ - "Death penalty" - ] - }, - { - "text": "Adoption of the draft Personal and Family Code and the bill on abolition of the death penalty", - "values": [ - "Death penalty" - ] - }, - { - "text": "Enhance efforts to reform the prison system and to ensure the protection of the human rights of all detainees", - "values": [ - "Detention" - ] - }, - { - "text": "Share experiences and good practices with other countries in the areas of development and the protection of human rights", - "values": [ - "General" - ] - }, - { - "text": "Redouble efforts in all the cantons to avoid discrimination based on race, origin and sexual orientation and gender identity", - "values": [ - "Racial discrimination", - "Sexual Orientation and Gender Identity" - ] - }, - { - "text": "Maintain as a Government priority awareness and education on human rights", - "values": [ - "Human rights education and training" - ] - }, - { - "text": "End politically motivated prosecutions and court proceedings, including those against members of the Human Rights Commission, and address the cases of individuals who have been convicted and imprisoned without minimum fair trial guarantees, such as former President Nasheed", - "values": [ - "Justice", - "National Human Rights Institution" - ] - }, - { - "text": "Continue to take further action to ensure equal enjoyment of human rights by Roma people.", - "values": [ - "Minorities" - ] - }, - { - "text": "Continue putting forward effective measures for the protection and promotion of the rights of women in the country", - "values": [ - "Women's rights" - ] - }, - { - "text": "Ensure that primary education is free and of quality and contains special programmes for the local population, including Pygmies", - "values": [ - "Indigenous peoples", - "Right to education" - ] - }, - { - "text": "Consider the possibility of establishing a national human rights institution, in accordance with the Paris Principles", - "values": [ - "National Human Rights Institution" - ] - }, - { - "text": "Continue undertaking measures aimed at ensuring the inclusion of Roma representatives in public and political life, as well as implementing the National Action Plan for Roma (2016-2020)", - "values": [ - "Minorities" - ] - }, - { - "text": "Ratify the Convention against Torture and other Cruel, Inhuman or Degrading Treatment or Punishment and its Optional Protocol, the Optional Protocol to the Convention on the Rights of the Child on the involvement of children in armed conflict, the Optional Protocol to the Convention on the Rights of the Child on the sale of children, child prostitution and child pornography, as well as the International Convention on the Protection of the Rights of All Migrant Workers and Members of their Families", - "values": [ - "International instruments" - ] - }, - { - "text": "Take legislative measures to ensure that all children are effectively protected from sexual exploitation", - "values": [ - "Rights of the Child" - ] - }, - { - "text": "Continue its efforts to strengthen the institutional and normative human rights framework, particularly with regard to freedom of expression", - "values": [ - "Freedom of opinion and expression" - ] - }, - { - "text": "Establish by law a national human rights institution in accordance with the Paris Principles", - "values": [ - "National Human Rights Institution" - ] - }, - { - "text": "Establish a Paris Principles-compliant national human rights institution", - "values": [ - "National Human Rights Institution" - ] - }, - { - "text": "Examine the possibility of ratifying CED, CAT and its Optional Protocol, CEDAW and its Optional Protocol, ICESCR, ICCPR and CRPD (Convention on the Rights of Persons with Disabilities) and its Protocol", - "values": [ - "International instruments" - ] - }, - { - "text": "Undertake, as a voluntary measure, a mid-term report to the Human Rights Council on the implementation of the adopted recommendations of this UPR working Group ", - "values": [ - "UPR process" - ] - }, - { - "text": "Review the compliance of its national legislation with provisions of the International Covenant on Civil and Political Rights on freedom of expression, association and assembly ", - "values": [ - "Freedom of association and peaceful assembly", - "Freedom of opinion and expression", - "International instruments" - ] - }, - { - "text": "Continue the protection of the rights of migrants", - "values": [ - "Migrants" - ] - }, - { - "text": "Reconsider legislation and laws in connection with freedom of opinion and expression and general freedoms", - "values": [ - "Freedom of opinion and expression" - ] - }, - { - "text": "Continue its efforts in ensuring the improvement of the status of women, including through intensifying the implementation of programmes and activities for the empowerment of women and enhancing women's participation in the political field", - "values": [ - "Women's rights" - ] - }, - { - "text": "Abolish the death penalty in its legislation, while taking note of the absence of executions in the country since 1954 ", - "values": [ - "Death penalty" - ] - }, - { - "text": "Cooperate fully with the Special Rapporteur on the situation of human rights in Eritrea ", - "values": [ - "Special procedures" - ] - }, - { - "text": "Regulate labour relations with special reference to ancillary or domestic workers", - "values": [ - "Labour" - ] - }, - { - "text": "Allow for a mission to the Office of the Prosecutor General of the International Criminal Court to undertake investigations into acts committed in the country after the events of September 2002 ", - "values": [ - "Justice" - ] - }, - { - "text": "Comprehensively address the issue of corruption and further promote transparency", - "values": [ - "Corruption" - ] - }, - { - "text": "Expand appropriate employment opportunities for women and ensure equal pay for men and women, while taking the necessary measures to promote the participation of women in political life ", - "values": [ - "Women's rights" - ] - }, - { - "text": "Promote effective follow-up to the recommendations issued by the international monitoring mechanisms to the country in the field of human rights ", - "values": [ - "Treaty bodies" - ] - }, - { - "text": "Explicitly codify and penalize sexual exploitation of children. ", - "values": [ - "Rights of the Child" - ] - }, - { - "text": "Consider taking measures which include the conducting of public awareness campaigns, and the awarding of financial or other incentives to parents to send their daughters to school ", - "values": [ - "Right to education", - "Rights of the Child", - "Women's rights" - ] - }, - { - "text": "Establish specific initiatives and policies aimed at combating all forms of xenophobia racism and hate aimed at foreigners, particularly Muslims", - "values": [ - "Freedom of religion and belief", - "Migrants", - "Racial discrimination" - ] - }, - { - "text": "Develop a national action plan on business and human rights and implement it together with the Guiding Principles on Business and Human Rights", - "values": [ - "Business and human rights" - ] - }, - { - "text": "Strengthen its national legislation in accordance with the international treaties that it has ratified", - "values": [ - "International instruments" - ] - }, - { - "text": "Promote cooperation between the Government and civil society in the area of human rights protection and promotion ", - "values": [ - "Civil society" - ] - }, - { - "text": "Establish an evaluation mechanism of the antiterrorist strategy that takes into account the observations made by special procedures and treaty bodies, and that evaluates its human rights implications", - "values": [ - "International instruments", - "Special procedures" - ] - }, - { - "text": "Ensure that all consultation and consent duties are respected by all responsible government agencies at federal and provincial level as well as to ensure that the relevant recommendations of United Nations treaty bodies are fully taken into account and that the specific claims processes do not restrict the progressive development of Aboriginal rights in the country", - "values": [ - "Indigenous peoples", - "Treaty bodies" - ] - }, - { - "text": "Take all legislative and policy measures necessary to guarantee full equality between men and women", - "values": [ - "Women's rights" - ] - }, - { - "text": "Intensify efforts to bring down the high number of enforced disappearances and kidnappings in the country, with particular attention to indigenous human rights defenders.", - "values": [ - "Enforced disappearances", - "Human rights defenders" - ] - }, - { - "text": "Continue its efforts in combating racial segregation and discrimination in various fields, particularly in education and continue the adoption of special measures in the context of the Durban Declaration and Programme of Action ", - "values": [ - "Racial discrimination" - ] - }, - { - "text": "Adopt the gender equality bill within the time frame", - "values": [ - "Women's rights" - ] - }, - { - "text": "Modify or repeal parts of the trade union law that unduly restrict freedom of association to ensure the ability of all workers to form and join independent trade unions", - "values": [ - "Freedom of association and peaceful assembly", - "Labour" - ] - }, - { - "text": "Decriminalize sexual relations between consenting adults of the same sex, and carry out legislative and administrative measures prohibiting discrimination based on sexual orientation, especially with regard to access to employment, education and housing ", - "values": [ - "Sexual Orientation and Gender Identity" - ] - }, - { - "text": "Continue its efforts to ensure access to state education for all children, without regard to their legal status", - "values": [ - "Asylum-seekers - refugees", - "Right to education", - "Rights of the Child" - ] - }, - { - "text": "As a follow-up to the recommendations contained in A/HRC/21/9, paras. 110.39 and 110.103, consider along with stakeholders the possibility of a universal basic income to replace the existing social protection system (recommendations 110.39 and 110.103 of the second cycle)", - "values": [ - "ESC rights - general", - "UPR process" - ] - }, - { - "text": "Continue efforts to improve the rights of persons with disabilities ", - "values": [ - "Disabilities" - ] - }, - { - "text": "Continue combating all forms of child abuse", - "values": [ - "Rights of the Child" - ] - }, - { - "text": "Continue to develop and implement measures aimed at protecting the rights of all children, particularly those in vulnerable situations ", - "values": [ - "Rights of the Child" - ] - }, - { - "text": "Promptly undertake the necessary procedures for ratification of the core human rights treaties, including the International Covenant on Civil and Political Rights and the International Covenant on Economic, Social and Cultural Rights ", - "values": [ - "CP rights - general", - "ESC rights - general", - "International instruments" - ] - }, - { - "text": "Maintain its ODA contributions up to the internationally-agreed level of 0.7 per cent", - "values": [ - "Development" - ] - }, - { - "text": "Strive to reduce the timelines before the Courts and to expedite rulings", - "values": [ - "Justice" - ] - }, - { - "text": "Ratify or accede to the the International Convention on the Protection of the Rights of All Migrant Workers and Members of Their Families and the Optional Protocol to the International Covenant on Economic, Social and Cultural Rights ", - "values": [ - "ESC rights - general", - "International instruments", - "Labour", - "Migrants" - ] - }, - { - "text": "Introduce a moratorium on the application of the death penalty with a view to repealing it", - "values": [ - "Death penalty" - ] - }, - { - "text": "Continue strengthening the provisions guaranteeing human rights to persons belonging to ethnic minorities ", - "values": [ - "Minorities" - ] - }, - { - "text": "Consider the establishment of a national mechanism for the correct identification of victims of sexual exploitation, as well as the possibility of including specific measures for minors ", - "values": [ - "Rights of the Child", - "Women's rights" - ] - }, - { - "text": "Develop an unambiguous timeline accompanied with a monitoring framework for the full implementation of its commitments under Human Rights Council resolution 30/1", - "values": [ - "Justice" - ] - }, - { - "text": "Continue its efforts so that all forms of sexual violence against women and children are prosecuted and sanctioned and that victims obtain immediate reparation and protection ", - "values": [ - "Rights of the Child", - "Women's rights" - ] - }, - { - "text": "Strengthen efforts to ensure respect for fundamental human rights", - "values": [ - "General" - ] - }, - { - "text": "Implement measures to improve the human rights situation of refugees and internally displaced persons and safety on the ground by enhancing the capabilities of the Chadian security unit (DIS) and coordination among the United Nations Mission in the Central African Republic and Chad (MINURCAT), United Nations human rights bodies, and NGOs in order to prevent the militarization of refugee camps and violence against aid workers.", - "values": [ - "Asylum-seekers - refugees", - "Internally displaced persons" - ] - }, - { - "text": "Intensify efforts in combating domestic violence and violence against Women including through effective implementation of its Principles of Crime Prevention Act", - "values": [ - "Women's rights" - ] - }, - { - "text": "Consider amending the law so that it provides further efforts of redress for victims of domestic violence, in addition to increased punishment for repeated violations of violence against women", - "values": [ - "Rights of the Child", - "Women's rights" - ] - }, - { - "text": "Accede to the Convention on the Rights of All Migrant Workers and Members of Their Families in accordance with Recommendation 1737 of 17 March 2006 of the Parliamentary Assembly of the Council of Europe ", - "values": [ - "International instruments", - "Labour", - "Migrants" - ] - }, - { - "text": "Ensure the availability of public defenders in all detention locations in order to enhance guarantees of due process ", - "values": [ - "Detention" - ] - }, - { - "text": "Enact and effectively implement legislation and take other policy and program measures to fulfil treaty obligations to eliminate the worst forms of child labour", - "values": [ - "Labour", - "Rights of the Child" - ] - }, - { - "text": "Take more practical measures for the protection of children, women and other vulnerable groups and full enjoyment of their rights", - "values": [ - "Rights of the Child", - "Women's rights" - ] - }, - { - "text": "Endorse the final outcome document approved during the Durban Review Conference. ", - "values": [ - "Racial discrimination" - ] - }, - { - "text": "Dismantle the wall in the Occupied Palestinian Territories and refrain from expansion of settlements.", - "values": [ - "Freedom of movement", - "Right to land" - ] - }, - { - "text": "Establish a mechanism for monitoring the number of cases and scope of abuse and strengthen the measures of protection from domestic violence", - "values": [ - "Rights of the Child", - "Women's rights" - ] - }, - { - "text": "Implement actions to facilitate the work of civil society, including through legislative measures", - "values": [ - "Civil society", - "Freedom of association and peaceful assembly" - ] - }, - { - "text": "Adopt comprehensive immigration legislation consistent with their human rights obligations, to ensure non-discrimination and the effective integration of immigrants", - "values": [ - "Migrants", - "Racial discrimination" - ] - }, - { - "text": "Enhance efforts aimed at the elimination of racism, racial discrimination, xenophobia and related intolerance by adopting a long-term systematic response to these scourges", - "values": [ - "Racial discrimination" - ] - }, - { - "text": "Continue its efforts in sharing best practices in the promotion and protection of human rights through regional and multilateral frameworks ", - "values": [ - "Other" - ] - }, - { - "text": "Strengthen legal advice and assistance for people in need", - "values": [ - "General" - ] - }, - { - "text": "Consider giving priority attention to indigenous peoples, in particular with reference to language, education and land redistribution", - "values": [ - "Indigenous peoples", - "Right to education", - "Right to land" - ] - }, - { - "text": "Ratify the Second Optional Protocol to the International Covenant on Civil and Political Rights, aiming at the abolition of death penalty", - "values": [ - "Death penalty", - "International instruments" - ] - }, - { - "text": "Review and amend all legislation placing undue and arbitrary restrictions on the right to freedom of expression, in particular the Sedition Act, the Undesirable Publication Act and the Local Newspapers Order, and put an end to censorship of the media and decriminalize defamation ", - "values": [ - "Freedom of opinion and expression", - "Freedom of the press" - ] - }, - { - "text": "Continue the efforts to combat human trafficking, including through cooperation and coordination with the Office of the United Nations High Commissioner for Refugees", - "values": [ - "Technical assistance and cooperation", - "Trafficking" - ] - }, - { - "text": "Improve the situation of work migrants by enabling them to easily switch employers and to have access to decent housing. The provisions of the Employment Act should also apply to foreign domestic workers", - "values": [ - "Labour", - "Migrants", - "Right to housing" - ] - }, - { - "text": "Accede to the Convention relating to the Status of Refugees", - "values": [ - "Asylum-seekers - refugees", - "International instruments" - ] - }, - { - "text": "Continue strengthening its policies and social programmes in order to increase the standard of living of its people, in particular of the most excluded groups", - "values": [ - "ESC rights - general" - ] - }, - { - "text": "Pursue efforts to provide educational opportunities for girls and boys with disabilities and strengthen adult literacy programmes, especially for women in rural areas", - "values": [ - "Disabilities", - "Right to education", - "Rights of the Child", - "Women's rights" - ] - }, - { - "text": "Adopt measures to ensure full compliance with laws criminalizing bride kidnapping, forced marriage and polygamy, as well as the training of police and judicial staff in strengthening those mechanisms aimed at respecting the rights and protection of victims of domestic violence ", - "values": [ - "Human rights education and training", - "Rights of the Child", - "Women's rights" - ] - }, - { - "text": "Prevent and punish all forms of violence against women, including spousal rape", - "values": [ - "Women's rights" - ] - }, - { - "text": "Pursue measures aiming at protecting women and addressing the issue of violence against them ", - "values": [ - "Women's rights" - ] - }, - { - "text": "Consolidate the legal framework for the promotion and protection of human rights by ratifying the International Covenant on Economic, Social and Cultural Rights (ICESCR) and International Convention on the Protection of the Rights of All Migrant Workers and Members of Their Families (ICRMW)", - "values": [ - "ESC rights - general", - "International instruments", - "Labour", - "Migrants" - ] - }, - { - "text": "Continue to seek the assistance of the international community to help upgrade its educational system, improve health services and provide adequate housing, drinking water and sanitation to its citizens", - "values": [ - "Right to education", - "Right to health", - "Right to housing", - "Right to water and sanitation", - "Technical assistance and cooperation" - ] - }, - { - "text": "Continue efforts to promote women's participation in public decision taking", - "values": [ - "Women's rights" - ] - }, - { - "text": "Strengthen policies for the protection of the rights and interests of children ", - "values": [ - "Rights of the Child" - ] - }, - { - "text": "Intensify efforts to combat trafficking in persons and provide adequate resources and services in relation to those efforts", - "values": [ - "Trafficking" - ] - }, - { - "text": "The counter-terrorism law that is to replace the current state of emergency take into account the recommendations made by the Special Rapporteur on the promotion and protection of human rights and fundamental freedoms while countering terrorism", - "values": [ - "Counter-terrorism", - "Special procedures" - ] - }, - { - "text": "Put in place the necessary regulations to ensure the full implementation of the Prevention and Prohibition of Torture Act of 2012 and that appropriate training on the Act is carried out for security services to ensure its effective application", - "values": [ - "International instruments", - "Torture and other CID treatment" - ] - }, - { - "text": "Provide real financial and human support for the recent protection mechanisms set up for journalists", - "values": [ - "Freedom of the press" - ] - }, - { - "text": "Continue its positive approach in combating poverty through providing the necessary public investment in rural infrastructure and its national employment policy to reduce unemployment", - "values": [ - "Development", - "Poverty" - ] - }, - { - "text": "End impunity for extrajudicial killings, enforced disappearances and torture, including those perpetrated by security forces, by undertaking thorough investigations and vigorous prosecutions of perpetrators ", - "values": [ - "Enforced disappearances", - "Extrajudicial executions", - "Human rights violations by state agents", - "Impunity", - "Torture and other CID treatment" - ] - }, - { - "text": "Finalize the Programme of Action for the new Asylum, Migration and Integration Fund 2014-2020 in due time frame", - "values": [ - "Asylum-seekers - refugees", - "Migrants" - ] - }, - { - "text": "That Public Orders Management Draft Bill be brought in line with Uganda's international human rights obligations ", - "values": [ - "International instruments", - "Public security" - ] - }, - { - "text": "Give the National Human Rights Institution to be established a broad mandate to promote and protect human rights in accordance with the Paris Principles", - "values": [ - "National Human Rights Institution" - ] - }, - { - "text": "Continue to provide assistance and protect the rights of irregular migrants fleeing from conflict through partnerships at the regional and international level", - "values": [ - "Asylum-seekers - refugees", - "Migrants" - ] - }, - { - "text": "Continue improving living and working conditions of foreign workers ", - "values": [ - "Labour", - "Migrants" - ] - }, - { - "text": "Study the possibility of ratifying the following international instruments: CED", - "values": [ - "Enforced disappearances", - "International instruments" - ] - }, - { - "text": "Introduce amendments to its domestic legislation and administrative regulations aimed at abolishing all forms of torture and other cruel, inhuman or degrading treatment or punishment ", - "values": [ - "Torture and other CID treatment" - ] - }, - { - "text": "Abolish, once and for all, the death penalty in conformity with the Second Optional Protocol to ICCPR ", - "values": [ - "Death penalty", - "International instruments" - ] - }, - { - "text": "Continue to make progress in the campaign to achieve universal basic education, including through non-formal education, with the support and cooperation of the international community.", - "values": [ - "Right to education", - "Technical assistance and cooperation" - ] - }, - { - "text": "Ensure effective implementation of the Proposed National Plan of Action for the issues raised in its National Report as well as UPR recommendations ", - "values": [ - "UPR process" - ] - }, - { - "text": "Continue to undertake measures to support and protect the rights of persons with disabilities ", - "values": [ - "Disabilities" - ] - }, - { - "text": "Continue the strengthening of the comprehensive regulatory framework that prohibits discrimination, including that based on gender, and promote coordination between the competent bodies and facilitate the reporting of such crimes by persons in situations of vulnerability", - "values": [ - "Women's rights" - ] - }, - { - "text": "Consider joining ILO and accede to and implement its core conventions, in particular Nos. 29, 105 and 182, on child and forced labour ", - "values": [ - "International instruments", - "Labour", - "Rights of the Child" - ] - }, - { - "text": "Adopt a National Policy on the protection of human rights defenders and journalists in order to prevent harassment and intimidation and to ensure effective investigation of such acts and prosecution of perpetrators", - "values": [ - "Freedom of the press", - "Human rights defenders" - ] - }, - { - "text": "Adopt legislation to ensure that human trafficking is prohibited under its Criminal Code ", - "values": [ - "Trafficking" - ] - }, - { - "text": "Continue efforts to promote equal opportunities between men and women by strengthening the implementation of the quota law with respect to electoral lists and the functioning of the tripartite equal opportunities commission, among other initiatives", - "values": [ - "Women's rights" - ] - }, - { - "text": "Ratify the Convention against Torture and prohibit corporal punishment and other cruel treatment of girls and boys", - "values": [ - "International instruments", - "Rights of the Child", - "Torture and other CID treatment" - ] - }, - { - "text": "Provide specific and adequate financial resources to implement the National Plan for Afro-Peruvians peoples, with a view to follow up on recommendations contained in paragraphs 116.103 and 116.109 of the Report of the Working Group on the Universal Periodic Review from the second cycle", - "values": [ - "Minorities", - "UPR process" - ] - }, - { - "text": "Allocate more resources to develop health-care services, health-care infrastructure and health education, in order to improve maternal health", - "values": [ - "Right to health", - "Women's rights" - ] - }, - { - "text": "Strengthen the mandate of the Human Rights Commissioner, safeguarding its full independence", - "values": [ - "National Human Rights Institution" - ] - }, - { - "text": "Establish an independent national human rights institution that is compliant with the Paris Principles ", - "values": [ - "National Human Rights Institution" - ] - }, - { - "text": "Intensify its efforts to prevent and combat violence against children and other members of vulnerable groups", - "values": [ - "Rights of the Child" - ] - }, - { - "text": "Strengthen measures aimed at fighting human trafficking, including addressing its root causes, and exploitation of women and girls", - "values": [ - "Rights of the Child", - "Trafficking", - "Women's rights" - ] - }, - { - "text": "Further strengthen the resources, powers and independence of the new anti-corruption bodies that will step up Ukraine\u2019s fights against corruption", - "values": [ - "Corruption" - ] - }, - { - "text": "Elaborate and implement a substantially more effective strategy to fight child poverty ", - "values": [ - "Poverty", - "Rights of the Child" - ] - }, - { - "text": "Take systematic action on the ground for the prevention and elimination of sexual violence against women and girls. ", - "values": [ - "Rights of the Child", - "Women's rights" - ] - }, - { - "text": "Allow individuals the right to associate freely and provide expeditious due process for all those accused of crimes ", - "values": [ - "Freedom of association and peaceful assembly" - ] - }, - { - "text": "Ensure effective implementation of the act on human trafficking and migrant smuggling and the adoption of appropriate legal, administrative and preventive measures aimed at creating an effective policy and institutional framework for combating the exploitation of persons, especially women and children ", - "values": [ - "Migrants", - "Rights of the Child", - "Trafficking", - "Women's rights" - ] - }, - { - "text": "Take all necessary measures to combat violence against women, including discrimination in employment", - "values": [ - "Labour", - "Women's rights" - ] - }, - { - "text": "Intensify awareness campaigns to combat gender stereotypes ", - "values": [ - "Human rights education and training", - "Women's rights" - ] - }, - { - "text": "Address gender pay disparity effectively through the full implementation of the equal pay system standard", - "values": [ - "Women's rights" - ] - }, - { - "text": "Provide clear national guidelines to prevent discrimination in schools and universities on any ground, including sexual orientation and gender identity", - "values": [ - "Right to education", - "Sexual Orientation and Gender Identity" - ] - }, - { - "text": "Accelerate the establishment of a police independent mechanism which ensures that they do not resort to violence against women and girls", - "values": [ - "Rights of the Child", - "Women's rights" - ] - }, - { - "text": "Sign and ratify the two International Covenants, the Convention against Torture and Other Cruel, Inhuman or Degrading Treatment or Punishment, the International Convention for the Protection of All Persons from Enforced Disappareance, and the International Convention on the Elimination of All Forms of Racial Discrimination. In particular, sign and ratify the International Convention on the Elimination of All Forms of Discrimination against Women and its Optional Protocol, whose ratification was approved by the Senate in early 2008 and is still awaiting for the approval of the House of Representatives", - "values": [ - "Enforced disappearances", - "International instruments", - "Racial discrimination", - "Torture and other CID treatment", - "Women's rights" - ] - }, - { - "text": "Set a time frame within which restrictions with regard to, among others, the enforcement of property rights, training of the clergy, and deprivation of legal personality of non-Muslim minorities, including the Greek orthodox minority, will be lifted so that members of these minorities can fully enjoy their human rights ", - "values": [ - "Freedom of religion and belief", - "Minorities" - ] - }, - { - "text": "Take legal measures to provide free and compulsory education for all under the right to education, and implement the inclusive education policy ", - "values": [ - "Right to education" - ] - }, - { - "text": "Continue and strengthen efforts to ensure respect for the best interest of children when enforcing public policies on the rights of migrants ", - "values": [ - "Migrants", - "Rights of the Child" - ] - }, - { - "text": "Continue implementing programmes and measures aimed at guaranteeing universal health and education services of quality to the entire population ", - "values": [ - "Right to education", - "Right to health" - ] - }, - { - "text": "Decriminalize the act of attempted suicide", - "values": [ - "Other" - ] - }, - { - "text": "Protect and promote the human rights of the entire population, particularly the most vulnerable groups such as women, children and minorities, and include these rights in the upcoming constitutional review process ", - "values": [ - "Minorities", - "Rights of the Child", - "Women's rights" - ] - }, - { - "text": "Recommended that all possible measures be taken to eliminate torture and other inhuman or degrading treatment or punishment, including that all mechanisms such as the PPCA and Victim Support Unit are fully implemented.", - "values": [ - "Torture and other CID treatment" - ] - }, - { - "text": "Take all necessary measures to reduce extreme poverty, hunger and child mortality rates", - "values": [ - "Poverty", - "Right to food", - "Right to health", - "Rights of the Child" - ] - }, - { - "text": "Continue to enhance dialogue and propagate tolerance among people ", - "values": [ - "General" - ] - }, - { - "text": "Increase policies in view to educating and protecting talibé children beggars, particularly from human trafficking, exploitation and all forms of abuse", - "values": [ - "Labour", - "Rights of the Child", - "Trafficking" - ] - }, - { - "text": "Consider becoming a party to the International Convention on the Protection of the Rights of All Migrant Workers and Members of their Families ", - "values": [ - "International instruments", - "Labour", - "Migrants" - ] - }, - { - "text": "Engage civil society in a follow-up to its universal periodic review ", - "values": [ - "Civil society", - "UPR process" - ] - }, - { - "text": "Continue the active protection of vulnerable population groups, including children, women, disabled persons and the elderly", - "values": [ - "Disabilities", - "Rights of the Child", - "Women's rights" - ] - }, - { - "text": "Further promote education and training in the area of human rights ", - "values": [ - "Human rights education and training" - ] - }, - { - "text": "Take steps to ensure that the measures of austerity do not negatively impact economic, social and cultural rights, specially the rights to adequate housing, health, food and education", - "values": [ - "ESC rights - general", - "Right to education", - "Right to food", - "Right to health", - "Right to housing" - ] - }, - { - "text": "Take all the necessary measures to optimize land distribution, while implementing a land reform, providing adequate support and training to beneficiaries, in close consultation with all stakeholders", - "values": [ - "Right to land" - ] - }, - { - "text": "Take effective measures to ensure freedom of expression and a safe enabling environment for social media ", - "values": [ - "Freedom of opinion and expression" - ] - }, - { - "text": "Reform the Mining Law to guarantee indigenous peoples' right to their land, territories and natural resources", - "values": [ - "Business and human rights", - "Indigenous peoples", - "Right to land" - ] - }, - { - "text": "Prohibit all forms of discrimination, including discrimination on the basis of sexual orientation and gender identity", - "values": [ - "Sexual Orientation and Gender Identity" - ] - }, - { - "text": "Set up, in consultation with civil society, a clear and transparent fiscal policy for managing oil revenues, which would call for publication of the national budget, identification of foreign bank accounts and verification of Government expenditures", - "values": [ - "Civil society", - "Corruption" - ] - }, - { - "text": "Strengthen the national legislative framework to fight illiteracy, reach the integral development of all segments of the population and regions, improve the standard of living of its citizens, including vulnerable groups of the population, and provide housing and other economic and social rights", - "values": [ - "Development", - "ESC rights - general", - "Right to education", - "Right to housing" - ] - }, - { - "text": "Adopt the reforms and legislative measures indicated to be able to ratify the remaining conventions and protocols", - "values": [ - "International instruments" - ] - }, - { - "text": "Review the legislation having discriminatory consequences on women", - "values": [ - "Women's rights" - ] - }, - { - "text": "Sign and ratify the International Convention for the Protection of All Persons from Enforced Disappearance", - "values": [ - "Enforced disappearances", - "International instruments" - ] - }, - { - "text": "Ecuador will continue to contribute to the international protection of human rights on the basis of its national experience and will continue working to further the Human Rights Council's mandate and to promote peace and development.", - "values": [ - "Development" - ] - }, - { - "text": "Fully integrate provisions on the criminalization of enforced disappearance into its national legislation", - "values": [ - "Enforced disappearances" - ] - }, - { - "text": "Continue with policies and plans aimed at eliminating domestic violence and violence against children", - "values": [ - "Rights of the Child" - ] - }, - { - "text": "Adopt measures to promote equality of the rights of lesbian, gay, bisexual and transgender persons and end discrimination against them regard", - "values": [ - "Sexual Orientation and Gender Identity" - ] - }, - { - "text": "Pursue its efforts to support the CNDHC and to bring it in conformity with the Paris Principles ", - "values": [ - "National Human Rights Institution" - ] - }, - { - "text": "Take necessary measures to combat impunity, by incorporating the Rome Statute into domestic legislation", - "values": [ - "Impunity", - "International instruments", - "Justice" - ] - }, - { - "text": "Build the capacity of existing institutions and sexual and gender-based violence units to monitor in particular violence against women including sexual violence and female genital mutilation/cutting - in order to prevent violence, protect victims and fully gather evidence, investigate and prosecute these crimes", - "values": [ - "Rights of the Child", - "Torture and other CID treatment", - "Women's rights" - ] - }, - { - "text": "Implement measures to combat prison overcrowding", - "values": [ - "Detention" - ] - }, - { - "text": "Further eliminate corruption, to strengthen the independence of the justice system and to prevent political interference in prosecutions and trials", - "values": [ - "Corruption", - "Justice" - ] - }, - { - "text": "Start discussions on introducing gender quotas on the boards of public limited companies.", - "values": [ - "Women's rights" - ] - }, - { - "text": "Increase the percentage of the national budget allocated to health, and extend to all persons without distinction based on gender the right to health care", - "values": [ - "Right to health", - "Women's rights" - ] - }, - { - "text": "Although Guyana did not accept Recommendations 70.44, 70.45 and 70.46, it re-affirmed its commitment to investigate any and all allegations of extra-judicial killings through a transparent process and report on efforts made.", - "values": [ - "Extrajudicial executions" - ] - }, - { - "text": "Recommended the full involvement of civil society in the follow-up to this review", - "values": [ - "Civil society", - "UPR process" - ] - }, - { - "text": "Amend the relevant legislation to bring the definition of torture into line with the Convention against Torture, and ensure that evidence obtained from torture is not invoked in any proceedings ", - "values": [ - "International instruments", - "Torture and other CID treatment" - ] - }, - { - "text": "Take further legislative and practical steps to ensure equal political, economic, cultural and social rights for those belonging to minorities, including by increasing the number of reserved seats for minorities in the parliament", - "values": [ - "ESC rights - general", - "Minorities" - ] - }, - { - "text": "Abolish the death penalty for drug trafficking offences", - "values": [ - "Death penalty", - "Trafficking" - ] - }, - { - "text": "Strengthen children's protection by establishing a federal Children's Ombudsman or Commission, address disparities in access to services by all children, establish mechanisms to protect child victims of trafficking and prevent child sexual exploitation by ensuring criminalization of relevant offences ", - "values": [ - "National Human Rights Institution", - "Rights of the Child", - "Trafficking" - ] - }, - { - "text": "Continue negotiations on transitional justice issues and implement transitional justice elements of the Stormont House Agreement", - "values": [ - "Justice" - ] - }, - { - "text": "Raise the minimum age of marriage from 16 to 18 years", - "values": [ - "Rights of the Child", - "Women's rights" - ] - }, - { - "text": "Accelerate the implementation of the National Action Plan on Gender-based Violence as well as action plans in favour of women and persons with disabilities", - "values": [ - "Disabilities", - "Women's rights" - ] - }, - { - "text": "Step up its institutional and operational capacity with respect to the administration of justice in order to bring a halt to impunity and to comply with international human rights instruments.", - "values": [ - "Impunity", - "Justice" - ] - }, - { - "text": "Ratify the Convention for the Protection of All Persons from Enforced Disappearance and accept the jurisdiction of the Committee on Forced Disappearances.", - "values": [ - "Enforced disappearances", - "International instruments" - ] - }, - { - "text": "Gradual consideration be given, with the assistance of OHCHR, to the ratification of some human rights treaties, in particular the Optional Protocols to the Convention on the Rights of the Child within the framework of the National Plan of Action for Children referred in the national report ", - "values": [ - "International instruments", - "Rights of the Child", - "Technical assistance and cooperation" - ] - }, - { - "text": "Take further appropriate steps to support and to enhance the status of the German-speaking communities in Slovenia", - "values": [ - "Minorities" - ] - }, - { - "text": "Ensure a climate of constructive and transparent interaction between different cultures and religions", - "values": [ - "Freedom of religion and belief" - ] - }, - { - "text": "Keep the necessary measures to combat continued deforestation in order to ensure the effective enjoyment of economic, social and cultural rights", - "values": [ - "ESC rights - general" - ] - }, - { - "text": "Complete the process of ratifying the International Convention on the Protection of the Rights of All Migrant Workers and Members of Their Families", - "values": [ - "International instruments", - "Labour", - "Migrants" - ] - }, - { - "text": "Continue to take measures to narrow the gender wage gap and enhance the equal opportunities of work between men and women", - "values": [ - "Women's rights" - ] - }, - { - "text": "Conclude the accreditation of the national human rights institution, endowing it with a broad mandate, in line with the Paris Principles", - "values": [ - "National Human Rights Institution" - ] - }, - { - "text": "Continue to fight domestic violence against women, including by improving and strengthening the capacity of rehabilitation centers in the country, especially ensuring access to victims from rural areas ", - "values": [ - "Rights of the Child", - "Women's rights" - ] - }, - { - "text": "Take measures and establish appropriate mechanisms to enable the development of legislation and promotion of policies for the protection of children in all areas", - "values": [ - "Rights of the Child" - ] - }, - { - "text": "Continue to further improve conditions for juveniles in pretrial detention facilities", - "values": [ - "Detention", - "Rights of the Child" - ] - }, - { - "text": "Provide effective protection against violence and discrimination against women, in line with an accepted UPR recommendation", - "values": [ - "UPR process", - "Women's rights" - ] - }, - { - "text": "Intensify efforts in the promotion of the rights of persons with disabilities", - "values": [ - "Disabilities" - ] - }, - { - "text": "Repeal the blasphemy law, or at least amend it to protect persons from eventual abuses or false accusations and lighten corresponding penalties, that are currently disproportional", - "values": [ - "Freedom of opinion and expression" - ] - }, - { - "text": "Consider formalizing a moratorium on death penalty and consider the abolition of capital punishment", - "values": [ - "Death penalty" - ] - }, - { - "text": "Ratify Convention No. 169 of the International Labour Organization, concerning indigenous peoples", - "values": [ - "Indigenous peoples", - "International instruments" - ] - }, - { - "text": "Consider bringing legislation in line with international standards in combating discrimination against women", - "values": [ - "Women's rights" - ] - }, - { - "text": "Ensure that companies exploiting natural resources conclude agreements with affected communities to allow them to access cultural sites or resources and be compensated", - "values": [ - "Business and human rights", - "Environment" - ] - }, - { - "text": "In the context of reforming the security sector, review training materials used by security forces in order to include child protection as a preventive measure against recruiting children in the armed forces.", - "values": [ - "Human rights education and training", - "Rights of the Child" - ] - }, - { - "text": "Ensure effective implementation of its laws on anti-discrimination against women and minorities and take effective measures to ensure protection of migrants, refugees and minorities against racial discrimination, xenophobia and related intolerance, and hate crimes", - "values": [ - "Asylum-seekers - refugees", - "Migrants", - "Minorities", - "Racial discrimination", - "Women's rights" - ] - }, - { - "text": "Give priority to achieving the objectives set by its national development strategy and in particular its commitment to ensure that women take, at minimum, 35 per cent of places in professional training programmes and 20 per cent of vacant posts.", - "values": [ - "Women's rights" - ] - }, - { - "text": "Improve the access of women to the labour market, especially by implementing policies which would reduce the gender pay gap", - "values": [ - "Women's rights" - ] - }, - { - "text": "The removal of blanket abortion restrictions on humanitarian aid covering medical care given women and girls who are raped and impregnated in situations of armed conflict", - "values": [ - "Women's rights" - ] - }, - { - "text": "Intensify programmes aimed at promoting and protecting human rights in school curricula", - "values": [ - "Human rights education and training" - ] - }, - { - "text": "Take all measures for the purpose of post-disaster reconstruction and adaptation to climate change, with a human-rights-based approach, and carry out consultations with the concerned local communities, giving special attention to women, children and persons with disabilities in this process ", - "values": [ - "Disabilities", - "Environment", - "Rights of the Child", - "Women's rights" - ] - }, - { - "text": "Promptly adopt measures, as the Council of Europe Commissioner for Human Rights recommends, that would effect the return of internally displaced persons in all areas where it exercises effective control ", - "values": [ - "Internally displaced persons" - ] - }, - { - "text": "Contribute to an atmosphere supportive of independent and diverse media, including by encouraging all actors, including public officeholders and political actors, to condemn any attempt to intimidate the media and by fully investigating all complaints of media harassment and prosecuting those responsible", - "values": [ - "Freedom of the press" - ] - }, - { - "text": "Take concrete measures to guarantee freedom of expression and the media and to address limitations in the existing law governing the operation of civil society organizations", - "values": [ - "Civil society", - "Freedom of association and peaceful assembly", - "Freedom of opinion and expression", - "Freedom of the press" - ] - }, - { - "text": "Take further steps to progressively improve the quality of education", - "values": [ - "Right to education" - ] - }, - { - "text": "Sharing the recommendation by some treaty bodies, establish a parliamentary human rights select committee ", - "values": [ - "Treaty bodies" - ] - }, - { - "text": "Take further measures to facilitate family reunification", - "values": [ - "Asylum-seekers - refugees" - ] - }, - { - "text": "End the solitary confinement of child detainees, and that audio-visual recordings are made of all interviews with child detainees by the Israeli police and security forces", - "values": [ - "Detention", - "Rights of the Child" - ] - }, - { - "text": "In accordance with the Convention on the Rights of the Child, create appropriate conditions for arrested juveniles and ensure that detention of juveniles is used only as a measure of last resort", - "values": [ - "Detention", - "International instruments", - "Justice", - "Rights of the Child" - ] - }, - { - "text": "Continue to address socio-economic disparities and inequalities that persist across the country", - "values": [ - "Poverty" - ] - }, - { - "text": "Consider reducing the number of crimes for which the capital punishment may be handed, including non-violent crimes, as well as establishing a moratorium on the use of the death penalty", - "values": [ - "Death penalty" - ] - }, - { - "text": "Consider expediting the ratifications of the core human rights instruments, including the Optional Protocol to the Convention against Torture and the Optional Protocol to the International Covenant on Civil and Political Rights", - "values": [ - "CP rights - general", - "Detention", - "International instruments", - "Torture and other CID treatment" - ] - }, - { - "text": "Consider enacting legal prohibition to the use of corporal punishment ", - "values": [ - "Torture and other CID treatment" - ] - }, - { - "text": "Continue its efforts through cooperation with civil society and combating stereotypes ", - "values": [ - "Civil society" - ] - }, - { - "text": "Acknowledge the right of refugees to return to their homes, according to the Fourth Geneva Convention.", - "values": [ - "Asylum-seekers - refugees", - "International humanitarian law", - "International instruments" - ] - }, - { - "text": "Continue its efforts in reducing poverty", - "values": [ - "Poverty" - ] - }, - { - "text": "Deepen the efforts, including through international cooperation, aimed at eradicating all practices that violate the rights of women, with a particular emphasis on female genital mutilation and any form of gender based violence, and continue to implement measures, which tend to provide the legal recognition of civil, political, economic and social rights among women and men", - "values": [ - "Rights of the Child", - "Technical assistance and cooperation", - "Torture and other CID treatment", - "Women's rights" - ] - }, - { - "text": "Guarantee the right of all persons to a fair trial and, in particular, allow for the presence without restriction of observers at court hearings ", - "values": [ - "Justice" - ] - }, - { - "text": "Continue its efforts in promoting human rights education and national human rights protection mechanisms", - "values": [ - "Human rights education and training" - ] - }, - { - "text": "Ratify other key human rights treaties including the Convention Against Torture and Other Cruel, Inhuman and Degrading Treatment and the Convention on the Elimination of All Forms of Discrimination Against Women ", - "values": [ - "International instruments", - "Torture and other CID treatment", - "Women's rights" - ] - }, - { - "text": "Provide guarantees for children in detention, including by removing the use of solitary confinement and by separating adults and children", - "values": [ - "Detention", - "Rights of the Child" - ] - }, - { - "text": "Ensure that the legislation governing the military court system is explicit in ensuring that military courts only have jurisdiction over military personnel who have committed military offences, especially when such offences do not amount to human rights violations, and that no civilian cases are tried in the military court system", - "values": [ - "Justice" - ] - }, - { - "text": "Expedite the ratification of the OP-CRC-SC", - "values": [ - "International instruments", - "Rights of the Child", - "Trafficking" - ] - }, - { - "text": "Abolish the death penalty and ratify the Second Optional Protocol to ICCPR ", - "values": [ - "Death penalty", - "International instruments" - ] - }, - { - "text": "Continue efforts to implement the national action plan against all forms of gender-based violence", - "values": [ - "Women's rights" - ] - }, - { - "text": "Consolidate on-going actions to reduce maternal mortality, to improve life conditions of persons with disabilities and to address the challenge of costly justice system, especially for the poor and in rural areas ", - "values": [ - "Disabilities", - "Justice", - "Right to health", - "Women's rights" - ] - }, - { - "text": "Take necessary measures in increasing and improving the quality of health care facilities", - "values": [ - "Right to health" - ] - }, - { - "text": "Free health service", - "values": [ - "Right to health" - ] - }, - { - "text": "Establish a formal moratorium on the death penalty, with a view to ratifying the Second Optional Protocol to the International Covenant on Civil and Political Rights", - "values": [ - "Death penalty", - "International instruments" - ] - }, - { - "text": "Take the necessary measures to amend the legislation on nationality in order to establish equality between men and women regarding the transmission of nationality to their children ", - "values": [ - "Women's rights" - ] - }, - { - "text": "Harmonize its domestic laws in order to give effect and prominence to international human rights treaties ", - "values": [ - "International instruments" - ] - }, - { - "text": "Consolidate its justice, security and defence sector reforms to prevent the recurrence of coups d'état and ensure a sustainable constitutional order in Guinea-Bissau", - "values": [ - "Justice" - ] - }, - { - "text": "Grant expedited family reunification to refugees who are entitled to asylum due to the general situation in their home country, in particular "war refugees"", - "values": [ - "Asylum-seekers - refugees" - ] - }, - { - "text": "Finalize legislation on free birth registration for all citizens and enhance registration systems and continue campaigns to this effect", - "values": [ - "Rights of the Child", - "Statelessness and the right to nationality" - ] - }, - { - "text": "Establish the national human rights institution in accordance with the Paris Principles", - "values": [ - "National Human Rights Institution" - ] - }, - { - "text": "Continue with the progress made in the fourth generation of the National Action Plan on Human Rights at the national and local levels", - "values": [ - "General" - ] - }, - { - "text": "Continue to eradicate poverty and create employment opportunities for youth", - "values": [ - "Development", - "Poverty" - ] - }, - { - "text": "Continue deploying efforts to attach priority to the vulnerable situation of child workers and children working in gold mining, and increase inspection of labour to ensure the effective application of laws related child labour in the formal and informal sectors, and ratify the ILO Convention No. 189 on Domestic Workers ", - "values": [ - "Business and human rights", - "International instruments", - "Labour", - "Rights of the Child" - ] - }, - { - "text": "Ratify the Convention against Discrimination in Education", - "values": [ - "International instruments", - "Right to education" - ] - }, - { - "text": "Consider the introduction of a systematic appeal system with suspensive effect following a death penalty conviction in first instance", - "values": [ - "Death penalty" - ] - }, - { - "text": "Speed up the process to explore possible solutions for mother-tongue schooling, and develop an adequate strategy to lower the failure rate before the next UPR cycle", - "values": [ - "Right to education", - "UPR process" - ] - }, - { - "text": "Integrate economic social and cultural rights in its poverty reduction strategies in a way that can benefit the most vulnerable groups in society, specially the Aborigines, afro-Canadians, migrants, persons with disabilities, youth, women with low incomes, and single mothers and adopt all necessary measures, including the full implementation of the United Nations Declaration on the Rights of Indigenous Peoples, to guarantee Aboriginals the full enjoyment of their rights including economic, social and cultural so that their standard of living was similar to that of the rest of the citizens in Canada", - "values": [ - "ESC rights - general", - "International instruments", - "Minorities", - "Poverty" - ] - }, - { - "text": "Withdraw its reservation on pertinent articles of the International Convention on the Elimination of All Forms of Racial Discrimination, the International Covenant on Economic, Social and Cultural Rights, the International Covenant on Civil and Political Rights and the Optional Protocol to the Convention on the Rights of the Child on armed conflict ", - "values": [ - "CP rights - general", - "ESC rights - general", - "International humanitarian law", - "International instruments", - "Racial discrimination", - "Rights of the Child" - ] - }, - { - "text": "Continue to strike a balance between the implementation of civil and political rights and economic, social and cultural rights.", - "values": [ - "CP rights - general", - "ESC rights - general" - ] - }, - { - "text": "Take measures to address claims of continuing extrajudicial executions ", - "values": [ - "Extrajudicial executions" - ] - }, - { - "text": "Continue efforts to ensure the promotion and protection of the rights of migrants, refugees and asylum seekers, especially those already in camps ", - "values": [ - "Asylum-seekers - refugees", - "Migrants" - ] - }, - { - "text": "Ensure that the legislative framework guarantees the right to freedom of expression and opinion and to put an end to the intimidations which journalists are victims of", - "values": [ - "Freedom of opinion and expression", - "Freedom of the press" - ] - }, - { - "text": "Provide human rights training to law enforcement and judicial officers, with a specific focus on the protection of the rights of women, children and persons of minority sexual orientation or gender identity and adopt further measures to ensure protection of these persons against violence and abuse", - "values": [ - "Human rights education and training", - "Rights of the Child", - "Sexual Orientation and Gender Identity", - "Women's rights" - ] - }, - { - "text": "Develop the necessary legislation to criminalize all forms of human trafficking, especially for sexual exploitation, forced labour or slavery", - "values": [ - "Labour", - "Trafficking" - ] - }, - { - "text": "Adopt legislation assuring that LGBT people can freely exercise their rights to freedom of expression and peaceful assembly ", - "values": [ - "Freedom of association and peaceful assembly", - "Freedom of opinion and expression", - "Sexual Orientation and Gender Identity" - ] - }, - { - "text": "Intensify its efforts in the area of prevention and fight against trafficking in particular girls and children in situation of vulnerability", - "values": [ - "Rights of the Child", - "Trafficking" - ] - }, - { - "text": "Create a judicial system for minors and improve their situation, including the separation of minors from adults in prisons.", - "values": [ - "Detention", - "Rights of the Child" - ] - }, - { - "text": "Continue and complete the signature and ratification process of the various relevant international human rights instruments", - "values": [ - "International instruments" - ] - }, - { - "text": "Take all measures in order to protect and encourage the freedom of expression and make the limitations to the freedom of expression to comply with the international obligations ", - "values": [ - "Freedom of opinion and expression" - ] - }, - { - "text": "Provide shelters and legal aid to victims of domestic violence, and submit a draft law on domestic violence", - "values": [ - "Rights of the Child", - "Women's rights" - ] - }, - { - "text": "Take more effective measures to protect and promote the rights of women and girls, as they continue to be subjected to widespread violence, discrimination and exploitation", - "values": [ - "Rights of the Child", - "Women's rights" - ] - }, - { - "text": "Ensure equal enjoyment of the right of freedom of religion or belief, both de jure and de facto ", - "values": [ - "Freedom of religion and belief" - ] - }, - { - "text": "Improve the detention conditions in prisons and modernize these detention facilities ", - "values": [ - "Detention" - ] - }, - { - "text": "Ensure a climate in which all citizens are able to freely express their opinions and beliefs, without fear of reprisal or retribution and invite the Special Rapporteur on freedom of opinion and expression to visit", - "values": [ - "Freedom of opinion and expression", - "Freedom of religion and belief", - "Special procedures" - ] - }, - { - "text": "Ensure better and greater access of women and girls to education with the aim of empowering them", - "values": [ - "Right to education", - "Rights of the Child", - "Women's rights" - ] - }, - { - "text": "Intensify its efforts to establish a National Human Rights Institution in accordance with the Paris Principles", - "values": [ - "National Human Rights Institution" - ] - }, - { - "text": "Continue to further enhance peace, development and democracy", - "values": [ - "Development" - ] - }, - { - "text": "Ensure that detained asylum seekers have access to public health services on an equal footing with other detainees who have been arrested or convicted", - "values": [ - "Asylum-seekers - refugees", - "Detention", - "Right to health" - ] - }, - { - "text": "Intensify its efforts to eradicate illiteracy, especially among women and girls", - "values": [ - "Right to education", - "Rights of the Child", - "Women's rights" - ] - }, - { - "text": "Pay more attention to the problems related to the independence of the judicial process", - "values": [ - "Justice" - ] - }, - { - "text": "Consider ratifying the Optional Protocol to the Convention on the Rights of the Child on a communications procedure ", - "values": [ - "International instruments", - "Rights of the Child" - ] - }, - { - "text": "In line with the Committee on the Rights of the Child recommendations regarding discrimination against vulnerable children, in particular girls and children with disabilities, envisage reviewing the legislation to guarantee the application of the non-discrimination principle ", - "values": [ - "Disabilities", - "Rights of the Child", - "Treaty bodies", - "Women's rights" - ] - }, - { - "text": "Withdraw its reservations and declaration to CAT", - "values": [ - "International instruments", - "Torture and other CID treatment" - ] - }, - { - "text": "Enact pending legislation that would provide women legal access to fulsome reproductive health services, including comprehensive sexuality education, family planning, prevention and response to sexual and gender-based violence, safe and legal abortion, and post-abortion care", - "values": [ - "Right to health", - "Women's rights" - ] - }, - { - "text": "Ensure that effective investigations of incitement and agitation to hatred and violence, and hate crimes on grounds of sexual orientation and/or gender identity are carried out", - "values": [ - "Sexual Orientation and Gender Identity" - ] - }, - { - "text": "Continue efforts to eliminate all forms of discrimination based on race, language, religion, nationality, ethnicity, etcetera, and seek to regulate the xenophobic and racist discourse of certain media", - "values": [ - "Freedom of religion and belief", - "Racial discrimination" - ] - }, - { - "text": "Be one of the countries contributing to best practices of the Human Rights Council by speeding up with the establishment of national preventive mechanisms, following the recent ratification of the Optional Protocol to the Convention against Torture and Other Cruel, Inhuman or Degrading Treatment or Punishment", - "values": [ - "Detention", - "International instruments", - "Torture and other CID treatment" - ] - }, - { - "text": "Release immediately and unconditionally all persons detained for peacefully exercising the rights to freedom of expression, association and peaceful assembly", - "values": [ - "Detention", - "Freedom of association and peaceful assembly", - "Freedom of opinion and expression" - ] - }, - { - "text": "Promote the adoption of a new national migration legislation", - "values": [ - "Migrants" - ] - }, - { - "text": "Provide specialized training to the police forces on how to deal with situations of domestic violence", - "values": [ - "Rights of the Child", - "Women's rights" - ] - }, - { - "text": "Effectively fight impunity against the perpetrators of the crimes against judges, journalists and human rights defenders and conduct effective investigations of human rights violations in these cases", - "values": [ - "Freedom of the press", - "Human rights defenders", - "Impunity", - "Justice" - ] - }, - { - "text": "Adopt further effective measures and policies aimed at increasing the number of registered births", - "values": [ - "Rights of the Child" - ] - }, - { - "text": "Review its death penalty policy and strongly consider a moratorium on the use of capital punishment, and to engage in public debate about the future use of the death penalty", - "values": [ - "Death penalty" - ] - }, - { - "text": "Make sure that sexual and reproductive rights are respected and protected ", - "values": [ - "Right to health", - "Rights of the Child", - "Women's rights" - ] - }, - { - "text": "Strengthen measures to contain the spread of infectious diseases in prisons and consider re-establishing substitution programs for intravenous drug users, as recommended by the Council of Europe Commissioner for Human Rights ", - "values": [ - "Detention" - ] - }, - { - "text": "Identify and address gaps in reproductive health legislation to ensure the protection of women's sexual and reproductive health and rights", - "values": [ - "Right to health", - "Women's rights" - ] - }, - { - "text": "Continue and intensify its efforts to prevent and eliminate all forms of de facto discrimination against immigrants based on ethnicity ", - "values": [ - "Migrants", - "Racial discrimination" - ] - }, - { - "text": "Consider issuing a standing invitation to all the special procedures in order to further its collaboration with the United Nations human rights mechanism ", - "values": [ - "Special procedures" - ] - }, - { - "text": "Implement anti-corruption legislation through an independent and nonpartisan anti-corruption commission\n", - "values": [ - "Corruption" - ] - }, - { - "text": "Promote training and human rights education for public officials", - "values": [ - "Human rights education and training" - ] - }, - { - "text": "Withdraw its reservation to article 2 of the Convention on the Elimination of All Forms of Discrimination against Women", - "values": [ - "International instruments", - "Women's rights" - ] - }, - { - "text": "Continue its efforts to achieve full social integration of minorities, especially the Roma and take urgent measures to combat and prevent racist incidents and hate crimes ", - "values": [ - "Minorities", - "Racial discrimination" - ] - }, - { - "text": "Continue to strengthen measures to deal with teenage pregnancies, by promoting access to reproductive health services for all, including sexual and reproductive health education, as well as counselling services and health care adapted to young people, in accordance with the commitments in the Montevideo Consensus on Population and Development", - "values": [ - "Right to health", - "Women's rights" - ] - }, - { - "text": "Regarding trafficking of women and girls and their sexual exploitation, to formulate a comprehensive strategy, which should include measures of prevention, prosecution and punishment of offenders and increased regional and international cooperation.", - "values": [ - "Rights of the Child", - "Trafficking", - "Women's rights" - ] - }, - { - "text": "Continue efforts aimed at the elimination of all forms of violence against women", - "values": [ - "Women's rights" - ] - }, - { - "text": "Further develop its education system, including through the improvement of access to education for persons with disabilities and other vulnerable groups", - "values": [ - "Disabilities", - "Right to education" - ] - }, - { - "text": "Amend or repeal legislation that applies the death penalty to nonserious crimes, as recommended by the Human Rights Committee, including the exercise of the right to freedom of expression or opinion or the establishment of groups, organizations or associations based on a political ideology contrary to the principles of the 1969 revolution - articles 206 and 207 of the Penal Code - ", - "values": [ - "Death penalty", - "Freedom of association and peaceful assembly", - "Freedom of opinion and expression", - "Treaty bodies" - ] - }, - { - "text": "That the various parties fully commit themselves to overcoming current difficulties and find a definitive and lasting solution", - "values": [ - "Other" - ] - }, - { - "text": "Adopt effective measures to prevent, combat and punish human trafficking", - "values": [ - "Trafficking" - ] - }, - { - "text": "Enact laws to protect women in employment free from any form of discrimination.", - "values": [ - "Labour", - "Women's rights" - ] - }, - { - "text": "Ensure the independence of judiciary and lawyers", - "values": [ - "Justice" - ] - }, - { - "text": "Conclude the ratification process of the CED ", - "values": [ - "Enforced disappearances", - "International instruments" - ] - }, - { - "text": "Continue national poverty reduction efforts ", - "values": [ - "Poverty" - ] - }, - { - "text": "Continue measures aimed at strengthening the capacity of national human rights protection mechanisms", - "values": [ - "General" - ] - }, - { - "text": "Ensure the protection of migrants, refugees and their families in accordance with international standards ", - "values": [ - "Asylum-seekers - refugees", - "Migrants" - ] - }, - { - "text": "Protecting indigenous populations against mining companies and make them play a part in decision making", - "values": [ - "Business and human rights", - "Indigenous peoples" - ] - }, - { - "text": "Ratify the core human rights instruments, including the International Convention for the Protection of All Persons from Enforced Disappearance", - "values": [ - "Enforced disappearances", - "International instruments" - ] - }, - { - "text": "Consider acceding to the International Convention for the Protection of All Persons from Enforced Disappearance, recognizing the competence of its Committee", - "values": [ - "Enforced disappearances", - "International instruments" - ] - }, - { - "text": "Adopt policies and measures to combat child labour and the commercial exploitation of children, in accordance with the recommendations made by the Committee on the Rights of the Child ", - "values": [ - "Labour", - "Rights of the Child", - "Treaty bodies" - ] - }, - { - "text": "Assign resources to the Judicial Power that facilitate access to justice, particularly in rural areas", - "values": [ - "Justice" - ] - }, - { - "text": "Develop a plan of action to prevent the recruitment of child soldiers and to help with demobilization", - "values": [ - "International humanitarian law", - "Rights of the Child" - ] - }, - { - "text": "Submit its periodic reports to the relevant treaty bodies and make responses to the letters of allegations and urgent appeals as well as to questionnaires on thematic issues in due course ", - "values": [ - "Treaty bodies" - ] - }, - { - "text": "Promote greater public appreciation for the importance of according equal rights for the Roma, including freedom from abuse and discrimination", - "values": [ - "Minorities", - "Racial discrimination" - ] - }, - { - "text": "Investigate and prosecute perpetrators of sectarian violence and ensure victims' recourse to the judicial system", - "values": [ - "Justice" - ] - }, - { - "text": "Accede to CAT", - "values": [ - "International instruments", - "Torture and other CID treatment" - ] - }, - { - "text": "Continue its efforts in improving its health-care system especially access for maternal, paediatric and family health services", - "values": [ - "Right to health" - ] - }, - { - "text": "Review the National Human Rights Commission with the aim of bringing it into conformity with the Paris Principles ", - "values": [ - "National Human Rights Institution" - ] - }, - { - "text": "Continue its efforts with regard to the advancement of women's rights, reduction in child mortality and illiteracy rates, and the reintegration of children into their communities ", - "values": [ - "Right to education", - "Right to health", - "Rights of the Child", - "Women's rights" - ] - }, - { - "text": "Study the possibility of ratifying the Convention against Torture and Other Cruel, Inhuman or Degrading Treatment or Punishment, the International Convention for the Protection of All Persons from Enforced Disappearance, the International Convention on the Protection of the Rights of All Migrant Workers and Members of Their Families, and the Second Optional Protocol to the International Covenant on Civil and Political Rights, aiming at the abolition of the death penalty ", - "values": [ - "Death penalty", - "Enforced disappearances", - "International instruments", - "Labour", - "Migrants", - "Torture and other CID treatment" - ] - }, - { - "text": "Continue the protection programmes and policies of the Tamil population so that they can fully enjoy their rights, particularly economic, social and cultural rights", - "values": [ - "ESC rights - general", - "Minorities" - ] - }, - { - "text": "Expedite means and ways towards the ratification of the ICRMW as part of its international obligation in promoting and protecting the rights of migrant workers ", - "values": [ - "International instruments", - "Labour", - "Migrants" - ] - }, - { - "text": "Redouble efforts to reinforce national institutions and create a proper framework for the full exercise of human rights and international humanitarian law ", - "values": [ - "International humanitarian law" - ] - }, - { - "text": "Strengthen further its efforts to end trafficking in women and children, and to take effective measures to prosecute and punish trafficking in persons", - "values": [ - "Rights of the Child", - "Trafficking", - "Women's rights" - ] - }, - { - "text": "Introduce appropriate administrative or legislative reforms to ensure equal protections for same-sex couples, including on matters of residency and inheritance", - "values": [ - "Sexual Orientation and Gender Identity" - ] - }, - { - "text": "Increase the efforts by the Ministry of the Interior to combat the practice of female genital mutilation, particularly in rural areas, preventing and prosecuting criminally this practice", - "values": [ - "Rights of the Child", - "Torture and other CID treatment", - "Women's rights" - ] - }, - { - "text": "Undertake efforts aimed at protecting the rights of foreign workers and prohibiting abuses that might be practiced against them", - "values": [ - "Migrants" - ] - }, - { - "text": "Pursue its endeavours to guarantee basic education for all citizens", - "values": [ - "Right to education" - ] - }, - { - "text": "Prohibit the application of the death penalty to minors at the time of the offence", - "values": [ - "Death penalty", - "Rights of the Child" - ] - }, - { - "text": "Establish a system of data collection which would allow a stock-taking of the situation of immigrant problems in areas such as employment and access to public office, and take measures to solve these problems", - "values": [ - "Migrants" - ] - }, - { - "text": "Improve overall conditions of detention and ensure that all detainees are afforded, in practice, access to a lawyer and an independent medical examination, and are informed about their rights at the moment they are deprived of their liberty ", - "values": [ - "Detention" - ] - }, - { - "text": "Grant the request of the United Nations Special Rapporteur on extrajudicial, summary or arbitrary executions to visit Mozambique ", - "values": [ - "Extrajudicial executions", - "Special procedures" - ] - }, - { - "text": "Ensure that a sufficient number of safe crisis centres and shelters are available to women victims of violence, in accordance with the recommendation of the Committee on the Elimination of Discrimination against Women", - "values": [ - "Treaty bodies", - "Women's rights" - ] - }, - { - "text": "Revoke article 7 of the new law on education adopted in September 2017", - "values": [ - "Right to education" - ] - }, - { - "text": "Revise the law governing the National Human Rights Commission and develop its capacity to bring it in line with the Paris Principles", - "values": [ - "National Human Rights Institution" - ] - }, - { - "text": "Take the necessary measures to ensure the full participation of all citizens, in particular vulnerable groups, in the education system and in the administration of public affairs", - "values": [ - "Right to education" - ] - }, - { - "text": "Encourage the national human rights institution to seek accreditation from the international coordinating committee ", - "values": [ - "National Human Rights Institution" - ] - }, - { - "text": "Amend the Foreign Contribution (Regulation) Act to ensure the right to freedom of association, which includes the ability of civil society organizations to access foreign funding, and protect human rights defenders effectively against harassment and intimidation", - "values": [ - "Civil society", - "Freedom of association and peaceful assembly", - "Human rights defenders" - ] - }, - { - "text": "Take concrete measures for future promotion and protection of economic, social and cultural rights, including the right to development for better realization of the MDGs.", - "values": [ - "Development", - "ESC rights - general" - ] - }, - { - "text": "Ensure genuine freedom of expression and information, including on the Internet, by putting an end to the harassment against journalists, bloggers and human rights defenders", - "values": [ - "Freedom of opinion and expression", - "Freedom of the press", - "Human rights defenders" - ] - }, - { - "text": "Further promote economic empowerment programmes and job creation to prevent the radicalization of young people", - "values": [ - "Development" - ] - }, - { - "text": "Launch awareness-raising campaigns focusing on women's rights", - "values": [ - "Human rights education and training", - "Women's rights" - ] - }, - { - "text": "Ensure the swift implementation of the strategic plan concerning the education and protection of children who are not in school and implement the recommendations of the Committee on the Rights of the Child in order to stop the practice of child beggars", - "values": [ - "Labour", - "Right to education", - "Rights of the Child", - "Treaty bodies" - ] - }, - { - "text": "Further strengthen the necessary measures to address climate change, environmental degradation and disaster management", - "values": [ - "Environment" - ] - }, - { - "text": "Continue consolidating its efforts to extend basic education to all children ", - "values": [ - "Right to education", - "Rights of the Child" - ] - }, - { - "text": "Introduce comprehensive legislation and more stringent enforcement of existing laws in the areas of domestic violence towards women and human trafficking ", - "values": [ - "Trafficking", - "Women's rights" - ] - }, - { - "text": "Take necessary measures to curb the use of violence by the police force against ethnic groups ", - "values": [ - "Human rights violations by state agents" - ] - }, - { - "text": "Creation of an effective mechanism to deal with cases of neglect by private sector institutions of workers' housing.", - "values": [ - "Labour", - "Right to housing" - ] - }, - { - "text": "Further improve the living conditions in prisons and pre-trial detention centres ", - "values": [ - "Detention" - ] - }, - { - "text": "Further effectively fulfil the National plan to Reduce Violence against Women and their Children 2010-2022 by means of sustained funding, independent monitoring and evaluation", - "values": [ - "Rights of the Child", - "Women's rights" - ] - }, - { - "text": "Address the issue of school drop-out rates of children and examine related issues of child malnutrition", - "values": [ - "Right to education", - "Right to food", - "Rights of the Child" - ] - }, - { - "text": "Combat human trafficking and forced labour through the establishment of systematic and regular monitoring mechanisms", - "values": [ - "Labour", - "Trafficking" - ] - }, - { - "text": "Request from the international community the necessary help and technical assistance to meet its obligations under international conventions and treaties ", - "values": [ - "International instruments", - "Technical assistance and cooperation" - ] - }, - { - "text": "Consider without delay enacting legislation to address domestic violence, including marital rape", - "values": [ - "Rights of the Child", - "Women's rights" - ] - }, - { - "text": "Establish a national human rights institution of human rights, that is financially and legally independent, in line with the Paris Principles", - "values": [ - "National Human Rights Institution" - ] - }, - { - "text": "Reinforce efforts in the fight for elimination of all forms of violence and discrimination against women and children ", - "values": [ - "Rights of the Child", - "Women's rights" - ] - }, - { - "text": "Consider the possibility of signing and ratifying the International Convention on the Protection of the Rights of All Migrant Workers and Members of their Families ", - "values": [ - "International instruments", - "Labour", - "Migrants" - ] - }, - { - "text": "Sustain its National Action Plan against Racism and All Forms of Discrimination and continue to implement it at all levels", - "values": [ - "Racial discrimination" - ] - }, - { - "text": "Intensify efforts to eliminate the servitude and forced labour persisting in some parts of the country", - "values": [ - "Labour" - ] - }, - { - "text": "Strengthen the rule of law and good governance as vital conditions for better protecting and promoting human rights and freedoms", - "values": [ - "Justice" - ] - }, - { - "text": "Continue efforts to fight against racism and racial discrimination", - "values": [ - "Racial discrimination" - ] - }, - { - "text": "Take effective measure to eliminate discrimination on the grounds of race, religion and nationality and to guarantee the rights of Muslims, Roma people and migrant workers ", - "values": [ - "Freedom of religion and belief", - "Labour", - "Migrants", - "Minorities", - "Racial discrimination" - ] - }, - { - "text": "Take concrete steps in ensuring comprehensive sexuality education for children and young people", - "values": [ - "Rights of the Child" - ] - }, - { - "text": "Ensure that the law on human trafficking is in conformity with international human rights standards and to step up its efforts to prosecute traffickers and to identify and protect all victims of trafficking", - "values": [ - "International instruments", - "Trafficking" - ] - }, - { - "text": "Ratify the core international human rights instruments as well as the Rome Statute of the ICC", - "values": [ - "International instruments", - "Justice" - ] - }, - { - "text": "Develop programmes and policies for comprehensive development and improvement of the situation of the most needy groups", - "values": [ - "Other" - ] - }, - { - "text": "Continue efforts to promote and facilitate school attendance, in particular among children from economically disadvantaged families, and to ensure nondiscrimination within the school environment.", - "values": [ - "Right to education", - "Rights of the Child" - ] - }, - { - "text": "Take measures to improve the relations between all public officials and members of the Roma minority through training courses as well as increased employment of members of the Roma minority by public institutions.", - "values": [ - "Minorities" - ] - }, - { - "text": "Adopt legislative or other necessary measures to establish a definition of victim consistent with article 24, paragraph 1, of the International Convention for the Protection of All Persons from Enforced Disappearance (ICPPED) and ensure that any person who has suffered direct harm as a result of an enforced disappearance can receive all compensation and redress measures established under the law, even if criminal proceedings have not been initiated ", - "values": [ - "Enforced disappearances", - "International instruments" - ] - }, - { - "text": "Continue to apply and respect human rights in the implementation of counter-terrorism measures, notably for the rights to privacy, freedom of expression and movement", - "values": [ - "Counter-terrorism", - "Freedom of movement", - "Freedom of opinion and expression", - "Privacy" - ] - }, - { - "text": "Accede to the 1951 Convention relating to the Status of Refugees and its 1967 Protocol and the 1961 Convention on the Reduction of Statelessness ", - "values": [ - "Asylum-seekers - refugees", - "International instruments", - "Statelessness and the right to nationality" - ] - }, - { - "text": "Ratify the International Labour Organization Convention No. 169 (1989) concerning Indigenous and Tribal Peoples in Independent Countries in order to ensure greater protection, as it is merited, by the special situation of indigenous and tribal population of the country, and consequently in this vein, comply with the decision of the Inter-American Court of Human Rights regarding their collective titles to property ", - "values": [ - "Indigenous peoples", - "International instruments" - ] - }, - { - "text": "Lobby for and implement comprehensive anti-discrimination legislation to provide protection for the rights of LGBT persons", - "values": [ - "Sexual Orientation and Gender Identity" - ] - }, - { - "text": "End early marriages and the trafficking of minors", - "values": [ - "Rights of the Child", - "Trafficking" - ] - }, - { - "text": "Adopt domestic legislation on refugees in accordance with international standards in this area, providing for due process of law and legal assistance for refugees ", - "values": [ - "Asylum-seekers - refugees" - ] - }, - { - "text": "Consider the possibility of becoming a party to the International Convention on the Protection of the Rights of All Migrant Workers and Members of Their Families", - "values": [ - "International instruments", - "Labour", - "Migrants" - ] - }, - { - "text": "Continue its efforts to implement the National Action Plan to end gender-based violence and to further promote gender equality", - "values": [ - "Women's rights" - ] - }, - { - "text": "Ratify the International Convention for the Protection of All Persons from Enforced Disappearance, signed in 2007", - "values": [ - "Enforced disappearances", - "International instruments" - ] - }, - { - "text": "Continue to strengthen its engagement with community leaders to build community support at all levels for measures to protect those most vulnerable to racism and discrimination", - "values": [ - "Racial discrimination" - ] - }, - { - "text": "Ensure that sentencing laws are appropriate and adequate to address domestic and sexual violence", - "values": [ - "Justice", - "Rights of the Child", - "Women's rights" - ] - }, - { - "text": "Focus on the training programmes of religious leaders on promoting concepts of dialogue and tolerance", - "values": [ - "Freedom of religion and belief" - ] - }, - { - "text": "Implement all efforts and adopt regulatory measures that expressly prohibit discrimination and violence based on sexual orientation and gender identity", - "values": [ - "Sexual Orientation and Gender Identity" - ] - }, - { - "text": "Continue its efforts to improve the standard of living of the population", - "values": [ - "Development" - ] - }, - { - "text": "Establish a national system that independently and regularly monitors and inspects all places of detention ", - "values": [ - "Detention" - ] - }, - { - "text": "Consider withdrawing its reservations to a number of articles of CEDAW, and also consider ratifying its Optional Protocol", - "values": [ - "International instruments", - "Statelessness and the right to nationality", - "Women's rights" - ] - }, - { - "text": "Accede to the international human rights instruments, in particular the International Covenant on Economic, Social and Cultural Rights ", - "values": [ - "ESC rights - general", - "International instruments" - ] - }, - { - "text": "Further secure the full implementation of the National Action Plan against Racism ", - "values": [ - "Racial discrimination" - ] - }, - { - "text": "Extend a standing invitation to all United Nations special rapporteurs", - "values": [ - "Special procedures" - ] - }, - { - "text": "Continue to implement and strengthen its policy and measures to eradicate poverty", - "values": [ - "Poverty" - ] - }, - { - "text": "Implement the recommendations of the Committee on the Elimination of Discrimination against Women and take measures to eliminate discriminatory practices against women, also through education and awareness-raising programmes.", - "values": [ - "Human rights education and training", - "Treaty bodies", - "Women's rights" - ] - }, - { - "text": "Adopt further comprehensive measures to combat domestic violence, taking into account recommendations of United Nations human rights bodies in this regard.", - "values": [ - "Rights of the Child", - "Treaty bodies", - "Women's rights" - ] - }, - { - "text": "Enhance the efforts being carried out by Djibouti in the areas of child labour, sexual exploitation and begging among children, as well as the low level of births registered in rural areas", - "values": [ - "Labour", - "Rights of the Child" - ] - }, - { - "text": "Incorporate climate change considerations into the implementation of the National Human Rights Action Plan", - "values": [ - "Environment" - ] - }, - { - "text": "Protect the children and families of migrants and refugees.", - "values": [ - "Asylum-seekers - refugees", - "Migrants", - "Rights of the Child" - ] - }, - { - "text": "Comply with its legal obligations concerning the rights of minorities and guarantee the civil, political, economic, social and cultural rights of persons belonging to the Kurdish minority", - "values": [ - "ESC rights - general", - "Minorities" - ] - }, - { - "text": "Review compliance of its national legislation with the principle of nondiscrimination, in particular with regard to persons of minority ethnicity, sexual orientation to adopt a comprehensive antidiscrimination legal framework specifically protecting against discrimination on these grounds, and lead long-term awareness-raising campaign on these issues among the public ", - "values": [ - "Human rights education and training", - "Minorities", - "Racial discrimination", - "Sexual Orientation and Gender Identity" - ] - }, - { - "text": "Adopt a comprehensive sexual and reproductive health policy for adolescents and ensure that sexual and reproductive health education is a part of the mandatory school curricula and targeted at adolescents", - "values": [ - "Right to education", - "Rights of the Child" - ] - }, - { - "text": "Ensure that the relevant provisions of the Criminal Code are brought into line with the obligations of Morocco under the International Covenant on Civil and Political Rights, in particular with regard to freedom of speech and opinion", - "values": [ - "CP rights - general", - "Freedom of opinion and expression", - "International instruments" - ] - }, - { - "text": "Take all the appropriate measures to protect women and girls against all forms of sexual violence and ensure the full respect of the "Women, Peace and Security" resolutions of the Security Council, by ensuring an increased participation of women in decision-making regarding conflict resolution and peace process", - "values": [ - "Rights of the Child", - "Women's rights" - ] - }, - { - "text": "Develop disability legislation", - "values": [ - "Disabilities" - ] - }, - { - "text": "Ensure that training in gender analysis is conducted and that a gender policy is implemented ", - "values": [ - "Human rights education and training", - "Women's rights" - ] - }, - { - "text": "Improve the national legislation in order to fully ensure freedom of belief, conscience and religion ", - "values": [ - "Freedom of religion and belief" - ] - }, - { - "text": "Develop a strategy and public policies against child neglect and abuse", - "values": [ - "Rights of the Child" - ] - }, - { - "text": "Take concrete steps to stop sexual violence against women and girls and ensure that victims are given protection and assistance with their recovery", - "values": [ - "Rights of the Child", - "Women's rights" - ] - }, - { - "text": "Increase its effort to address the issues of rural and urban migrant workers and their families in a more effective way", - "values": [ - "Labour", - "Migrants" - ] - }, - { - "text": "Amend the Penal Code to ensure its articles, in particular article 149, cannot be used as a mechanism to refer genuine political activists", - "values": [ - "Freedom of association and peaceful assembly" - ] - }, - { - "text": "Repeal ordinance 44 on regulating administrative justice, which authorizes administrative detention, house arrest or detention in special protection centre and psychiatric facilities for two-year renewable periods without trial.", - "values": [ - "Detention", - "Justice" - ] - }, - { - "text": "Pursue and strengthen efforts to eradicate differences between the regions and between urban and rural areas in the sphere of education ", - "values": [ - "Right to education" - ] - }, - { - "text": "Request the international community to provide technical assistance to Cameroon to enable it to achieve its objectives", - "values": [ - "Technical assistance and cooperation" - ] - }, - { - "text": "Further provide support and cooperation with regional and international organizations, financial institutions in Africa, the United Nations system and other development partners for utilizing all its advantages to turn Togo into a major economic and trade centre in West Africa ", - "values": [ - "Development", - "Technical assistance and cooperation" - ] - }, - { - "text": "Guarantee an all-embracing freedom of expression and in particular stop censorship and repressive measures against journalists and civil society activists.", - "values": [ - "Civil society", - "Freedom of opinion and expression", - "Freedom of the press" - ] - }, - { - "text": "Complete the ratification process of ICRMW ", - "values": [ - "International instruments", - "Labour", - "Migrants" - ] - }, - { - "text": "Increase the commendable ongoing efforts aiming at granting full and free access to quality education for all children, inter alia, by boosting annual expenditure on education", - "values": [ - "Right to education", - "Rights of the Child" - ] - }, - { - "text": "Ratify CPED and OP-CAT", - "values": [ - "Detention", - "Enforced disappearances", - "International instruments", - "Torture and other CID treatment" - ] - }, - { - "text": "Continue to adopt programmes that will ensure disadvantaged children, particularly in rural areas, enjoy the right to education", - "values": [ - "Right to education", - "Rights of the Child" - ] - }, - { - "text": "Enact the new draft Penal Code pending before Parliament ", - "values": [ - "Justice" - ] - }, - { - "text": "Provide a clear definition of child prostitution in its national legislation in line with its international obligations ", - "values": [ - "Rights of the Child" - ] - }, - { - "text": "In line with the Constitution of Burundi, continue measures to combat discrimination and violence against albinos", - "values": [ - "Minorities", - "Racial discrimination" - ] - }, - { - "text": "Strengthen the measures aimed at fighting discriminatory acts and hate speech against certain minority groups by focusing on prevention and follow-up to these acts", - "values": [ - "Minorities", - "Racial discrimination" - ] - }, - { - "text": "Take steps towards meeting its obligations for timely submission of periodic reports for those instruments to which it is already party ", - "values": [ - "Treaty bodies" - ] - }, - { - "text": "Introduce measures to ensure the free, fair and open conduct of trials in accordance with international standards including access to Legal Counsel in pre-trial custody", - "values": [ - "Justice" - ] - }, - { - "text": "Ratify the International Convention for the Protection of All Persons from Enforced Disappearance and the Optional Protocol to the Convention against Torture", - "values": [ - "Detention", - "Enforced disappearances", - "International instruments", - "Torture and other CID treatment" - ] - }, - { - "text": "Adopt a specific law on violence against women that contain both criminal and civil provisions ", - "values": [ - "Women's rights" - ] - }, - { - "text": "Invite as soon as possible the Special Rapporteur on torture and other cruel, inhuman or degrading treatment or punishment ", - "values": [ - "Special procedures", - "Torture and other CID treatment" - ] - }, - { - "text": "Address the issue of timely reporting to human rights monitoring bodies", - "values": [ - "Treaty bodies" - ] - }, - { - "text": "Take all necessary steps to revise the Protection of Life during Pregnancy Act 2013 in line with International Human Rights standards", - "values": [ - "International instruments", - "Women's rights" - ] - }, - { - "text": "Ratify the Indigenous and Tribal Peoples Convention, 1989 (No. 169) of ILO", - "values": [ - "Indigenous peoples", - "International instruments" - ] - }, - { - "text": "Allocate adequate resources in order to strengthen the implementation of the Human Rights Action Plan 2012-2020", - "values": [ - "General" - ] - }, - { - "text": "Ensure the full functionality and adequate resourcing of levels 1 and 2 local council courts, which provide the first access points to justice for 80 per cent of Ugandans", - "values": [ - "Justice" - ] - }, - { - "text": "Ratify the Optional Protocol to the Convention on the Elimination of All Forms of Discrimination against Women, the Second Optional Protocol to International Covenant on Civil and Political Rights, the Optional Protocol to the Convention against Torture and Other Cruel, Inhuman or Degrading Treatment or Punishment", - "values": [ - "Death penalty", - "Detention", - "International instruments", - "Torture and other CID treatment", - "Women's rights" - ] - }, - { - "text": "Give consideration to incorporating the United Nations Rules for the Treatment of Women Prisoners and Non-Custodial Measures for Women Offenders, also known as the "Bangkok Rules", to its internal rules and regulations for the treatment of women prisoners", - "values": [ - "Detention", - "Women's rights" - ] - }, - { - "text": "Ratify and accede to the International Convention on the Protection of the Rights of All Migrant Workers and Members of their Families ", - "values": [ - "International instruments", - "Labour", - "Migrants" - ] - }, - { - "text": "Take further steps to promote education in the languages of the national minorities, including in the areas where the number of students may be decreasing", - "values": [ - "Minorities", - "Right to education" - ] - }, - { - "text": "Consider favourably reviewing its national legislation to prevent victims of trafficking in persons from being punished ", - "values": [ - "Trafficking" - ] - }, - { - "text": "Ensure that all victims of trafficking, regardless of their immigration status, have access to care, rehabilitation and assistance programmes ", - "values": [ - "Trafficking" - ] - }, - { - "text": "Continue the development of programs that aim to incorporate the participation and contribution of persons with disabilities in society", - "values": [ - "Disabilities" - ] - }, - { - "text": "Take concerted action to eradicate slavery including by enforcing the anti-slavery law and ensuring prosecution of perpetrators, taking measures to prevent slavery, protect and rehabilitate victims, and raising awareness of the criminalisation of slavery", - "values": [ - "Human rights education and training" - ] - }, - { - "text": "Continue the process of political reforms, especially to ensure freedom of expression, freedom of thought and the right to demonstrate ", - "values": [ - "Freedom of association and peaceful assembly", - "Freedom of opinion and expression" - ] - }, - { - "text": "Consider the withdrawal of the general reservation made upon ratification of CEDAW, whereby, in the event of a conflict between the provisions of Islamic law and those of the Convention, the former shall prevail", - "values": [ - "International instruments", - "Women's rights" - ] - }, - { - "text": "Envisage legislative reforms and namely the adoption of the press law in Burundi aiming to comply with human rights international standards", - "values": [ - "Freedom of the press", - "International instruments" - ] - }, - { - "text": "The delegation emphasized that Tunisia was committed to abide by its international obligations in the area of human rights, regardless of the major responsibilities which with it was faced at the national level and the expectations that the people had with regard to accountability and transitional justice, which needed to be completed prior to the initiation of the reconciliation process and the compensation of victims", - "values": [ - "Justice" - ] - }, - { - "text": "Consider reviewing its Personal Status Law, Labour Law as well as any other related laws with a view to eliminate discrimination against women ", - "values": [ - "Labour", - "Women's rights" - ] - }, - { - "text": "Take steps to prevent the feminization of the AIDS pandemic ", - "values": [ - "HIV - Aids", - "Women's rights" - ] - }, - { - "text": "Immediately establish a de jure moratorium on the death penalty with a view of abolishing it", - "values": [ - "Death penalty" - ] - }, - { - "text": "Contribute to the universal application of the Convention on the Rights of the Child and the Convention on the Elimination of All forms of Discrimination against Women by ratifying these two important human rights conventions at an early stage", - "values": [ - "International instruments", - "Rights of the Child", - "Women's rights" - ] - }, - { - "text": "Continue human rights sensitization campaigns promoting human rights education and training ", - "values": [ - "Human rights education and training" - ] - }, - { - "text": "Adopt effective measures to put an end to discrimination based on gender and to violence against women, as well as to child marriage. This would include awareness-raising campaigns and trying to bring in local authorities and traditional leaders into the process", - "values": [ - "Human rights education and training", - "Rights of the Child", - "Women's rights" - ] - }, - { - "text": "Further continue its efforts to improve the human rights situation on the ground, with the technical and financial assistance of the international community", - "values": [ - "Technical assistance and cooperation" - ] - }, - { - "text": "Adopt all the legislative and policy measures to guarantee a comprehensive inclusion of persons with disabilities in all spheres of activities to ensure the full enjoyment of their rights", - "values": [ - "Disabilities" - ] - }, - { - "text": "Seek technical assistance, as appropriate, from the Office of the High Commissioner for Human Rights and other United Nations organizations, with a view to developing capacity for fulfilling various international human rights obligations to which it subscribes", - "values": [ - "Technical assistance and cooperation" - ] - }, - { - "text": "Delete all discriminatory provisions against women that may exist in its national laws", - "values": [ - "Women's rights" - ] - }, - { - "text": "Continue the efforts aiming at economic growth in the country", - "values": [ - "Development" - ] - }, - { - "text": "Having in mind the growing number of cases of people who have resorted to food banks, elaborate a national plan on food security with a view to the realization of the universal human right to food ", - "values": [ - "Right to food" - ] - }, - { - "text": "Grant ministerial rank to the national council for women", - "values": [ - "Women's rights" - ] - }, - { - "text": "Continue its commendable high level of cooperation and engagement with the United Nations mechanisms ", - "values": [ - "Other" - ] - }, - { - "text": "Strengthen coordination and enhanced engagement by the national authorities of Panama with the Regional Office of the United Nations High Commissioner for Human Rights for Central America, based in Panama City ", - "values": [ - "Technical assistance and cooperation" - ] - }, - { - "text": "Delete all references to corporal punishment from its legislation and prohibit corporal punishment of children in all settings before the next UPR cycle", - "values": [ - "Rights of the Child", - "Torture and other CID treatment", - "UPR process" - ] - }, - { - "text": "Review its domestic policies and practices to ensure full compliance with the Convention on the Rights of Persons with Disabilities ", - "values": [ - "Disabilities", - "International instruments" - ] - }, - { - "text": "Continue the measures aimed at the improvement of the quality of education and of health services ", - "values": [ - "Right to education", - "Right to health" - ] - }, - { - "text": "Ensure that women's rights are protected, through effective implementation of existing laws, the development of a comprehensive national action plan to combat violence against women and the adoption of a family code complying with the provisions of CEDAW", - "values": [ - "International instruments", - "Women's rights" - ] - }, - { - "text": "Ensure that the due process in all trials is guaranteed, in accordance with international standards", - "values": [ - "Justice" - ] - }, - { - "text": "Finalize the on-going study, create and establish a national human rights institution in conformity with the Paris Principles", - "values": [ - "National Human Rights Institution" - ] - }, - { - "text": "Facilitate the establishment of an OHCHR country office in Myanmar, able to operate throughout the country with a full promotion and protection mandate and establish a timeframe in that respect", - "values": [ - "Technical assistance and cooperation" - ] - }, - { - "text": "Continue to strengthen the regime for the protection of the rights of the child in accordance with the obligations under the Convention on the Rights of the Child", - "values": [ - "International instruments", - "Rights of the Child" - ] - }, - { - "text": "Take effective measures to increase its official development assistance to achieve the internationally agreed target of 0.7 per cent of its gross domestic product as expeditiously as possible", - "values": [ - "Development" - ] - }, - { - "text": "Having in mind the overall needs of BiH society, the priorities are the following: adoption of a national action plan for human rights, capacity building and unifying of the BiH Ombudsmen institutions, enforcement of the Law on Prohibition of Discrimination, harmonization of domestic legislation with the European acquis communautaire, implementation of recommendations of UN committees, training of judges, prosecutors and others actors in the field of human rights, population census, the analysis of the social situation in BiH (better cooperation between entities and the state), the implementation of action plans for Roma and improvement of implementation of educational needs of Roma (Education and training of the Roma population), improve the protection of the human rights activists, conducting specific measures to eliminate segregation in schools (two schools under one roof), promote women politicians and leaders- promote the importance and the role of women in political life, condemnation of violence in the family- (talk publicly about the violence in the family - the politicians and leaders), the realization of the National strategy on war crimes processing, the Strategy and reform of the judicial system (OSCE - Report), the establishment of the best national mechanisms for the protection against torture, the improvement of mechanisms to preserve independence of the judiciary (High Judicial and Prosecutorial Council of BiH-HJPC, prosecutor's office, courts, SIPA, the establishment of a unique BiH ombudsman institution, the Constitutional Court and the competent ministries should propose legal measures for the timely execution of final judgments and insurance of funds and other resources for substantial return.", - "values": [ - "General" - ] - }, - { - "text": "Intensify its efforts to reduce discrimination based on gender and sexual orientation ", - "values": [ - "Sexual Orientation and Gender Identity" - ] - }, - { - "text": "Continue implementing the designed road map, with a view to putting in place a national mechanism for the prevention of torture", - "values": [ - "Detention", - "Torture and other CID treatment" - ] - }, - { - "text": "Take legal and educational measures in order to effectively combat violence against women and domestic violence ", - "values": [ - "Rights of the Child", - "Women's rights" - ] - }, - { - "text": "Ratify the Kampala amendments to the Rome Statute if possible with a view to contributing to the activation of the jurisdiction of the International Criminal Court over the crime of aggression at the beginning of 2017", - "values": [ - "International instruments", - "Justice" - ] - }, - { - "text": "Encourage the efforts taken for the creation of an independent mechanism for the monitoring of the application of the Convention on the Rights of Persons with Disabilities", - "values": [ - "Disabilities", - "International instruments" - ] - }, - { - "text": "Fully implement the Justice Sector Reform Strategy to increase judicial independence and effectiveness", - "values": [ - "Justice" - ] - }, - { - "text": "Adopt norms that guarantee LGBTI people the full enjoyment of their rights on an equal footing, which simultaneously safeguard their non-criminalization and stigmatization", - "values": [ - "Sexual Orientation and Gender Identity" - ] - }, - { - "text": "Repeal the existing discriminatory regulation in its domestic law against the LGBT community", - "values": [ - "Sexual Orientation and Gender Identity" - ] - }, - { - "text": "Legally abolish the death sentence and ratify the relevant protocol", - "values": [ - "Death penalty", - "International instruments" - ] - }, - { - "text": "Develop a national strategy to guarantee better access to education to all children and include in the school system at all levels appropriate measures in the field of human rights education, in accordance with the Plan of Action 2005-2009 of the World Programme for Human Rights Education. ", - "values": [ - "Human rights education and training", - "Right to education", - "Rights of the Child" - ] - }, - { - "text": "Establish a unified national policy to reduce poverty ", - "values": [ - "Poverty" - ] - }, - { - "text": "Strengthen the institutional framework undertaken for the benefit of indigenous and Afro-Honduran peoples", - "values": [ - "Indigenous peoples", - "Minorities" - ] - }, - { - "text": "Establish national protocols for abortion in accordance with the conclusion of the UN Human Rights Committee in 2005, as a measure to improve women's sexual and reproductive rights", - "values": [ - "Right to health", - "Treaty bodies", - "Women's rights" - ] - }, - { - "text": "Consider ratifying the international instruments in the area of human rights ", - "values": [ - "International instruments" - ] - }, - { - "text": "Identify the causes of unemployment", - "values": [ - "Development" - ] - }, - { - "text": "Ensure full-time school attendance at all levels to children belonging to disadvantaged and marginalized groups", - "values": [ - "Right to education", - "Rights of the Child" - ] - }, - { - "text": "Effectively prevent and prosecute those responsible for sexual violence against children and fully protect children in vulnerable situations", - "values": [ - "Rights of the Child" - ] - }, - { - "text": "Become a party to the third Optional Protocol to the Convention on the Rights of the Child ", - "values": [ - "International instruments", - "Rights of the Child" - ] - }, - { - "text": "Eliminate discriminatory provisions from the Constitution to adopt comprehensive anti-discrimination legislation including, inter alia, protection against discrimination based on sex or gender to strengthen the protection of persons against statelessness and to adopt measures to guarantee universal birth registration under all circumstances, including for Roma children", - "values": [ - "Minorities", - "Rights of the Child", - "Statelessness and the right to nationality", - "Women's rights" - ] - }, - { - "text": "Seek assistance from delegations that are materially capable of assisting Botswana in its endeavours with regard to treaty body reporting, human rights education and training, components of the national statistical system and the system to monitor development.", - "values": [ - "Human rights education and training", - "Technical assistance and cooperation", - "Treaty bodies" - ] - }, - { - "text": "Continue promoting political and legislative developments in this regard regarding measures taken to reduce overcrowding in prisons and to implement the master plan, as this is a theme that affects countries in several regions in the world ", - "values": [ - "Detention" - ] - }, - { - "text": "Strengthen the legislation to combat statelessness by adopting the new draft bill on the protection of the stateless", - "values": [ - "Statelessness and the right to nationality" - ] - }, - { - "text": "Continue to take further measures to enhance health-care services, especially for women and children", - "values": [ - "Right to health", - "Rights of the Child", - "Women's rights" - ] - }, - { - "text": "Update the 1936 Law on Prisons and include provisions on alternative sanctions in order to decongest prisons", - "values": [ - "Detention" - ] - }, - { - "text": "Step up efforts on gender promotion, the protection of children's rights and the fight against acts of sexual violence as envisaged in the national strategy in this regard", - "values": [ - "Rights of the Child", - "Women's rights" - ] - }, - { - "text": "Consider the abolition of the death penalty, in accordance with the Second Optional Protocol to the International Covenant on Civil and Political Rights", - "values": [ - "Death penalty", - "International instruments" - ] - }, - { - "text": "Step up the efforts to improve gender equality as well as to promote the rights of persons with disabilities, especially with regard to access to education and employment opportunities", - "values": [ - "Disabilities", - "Labour", - "Right to education", - "Women's rights" - ] - }, - { - "text": "Improve the work of the National Commission for Women and Children by enhancing its capacity, providing it with additional human resources and an adequate budget, in cooperation with the international community", - "values": [ - "Rights of the Child", - "Women's rights" - ] - }, - { - "text": "Enhance efforts to set up an independent body to protect and promote human rights ", - "values": [ - "National Human Rights Institution" - ] - }, - { - "text": "Strengthen anti-discrimination legislation in order to prevent racial, religious and social discrimination", - "values": [ - "Freedom of religion and belief", - "Racial discrimination" - ] - }, - { - "text": "Analyse the possibility of adopting the necessary additional measures to combat and prevent discrimination against religious minorities", - "values": [ - "Freedom of religion and belief", - "Minorities", - "Racial discrimination" - ] - }, - { - "text": "Consider ratifying Convention against Torture and Other Cruel, Inhuman or Degrading Treatment or Punishment (CAT) ", - "values": [ - "International instruments", - "Torture and other CID treatment" - ] - }, - { - "text": "That further measures be adopted and resources be allocated to effectively support the implementation of the 2011 Gender-Based Violence Act so as to better address, prevent and punish episodes of discrimination and violence including domestic violence against women ", - "values": [ - "Women's rights" - ] - }, - { - "text": "The Education Act states that the Nitijela declares and recognizes the right of the people to education and the Government's obligation to take every step reasonable and necessary to provide this service as per the Constitution. The compulsory ages of school attendance is 4-18 years old. It is the Government's policy that the goal of its educational system is to foster self-reliance. In addition to free education, transportation and meals are also provided by the Government. 44. In renegotiating the Compact of Free Association with the United States, the RMI Government had maintained that one of its priority areas was education. Since the amended Compact came into effect, the Government has built approximately 200 newly constructed and repaired classrooms throughout the country utilizing Compact public infrastructure funding.", - "values": [ - "Right to education" - ] - }, - { - "text": "In combating violence against women and girls, Zambia should swiftly and fully implement the Convention on the Elimination of All Forms of Discrimination against Women. This also includes the full implementation of the Anti-Gender-Based Violence Act of 2011 and the allocation of adequate budget resources for the Anti-Gender-Based Violence Fund", - "values": [ - "International instruments", - "Rights of the Child", - "Women's rights" - ] - }, - { - "text": "Speed up the process of adoption of the new Criminal Code", - "values": [ - "Justice" - ] - }, - { - "text": "Intensify efforts aimed at putting an end to the practice of secret detention and at reducing the excessive use of power and authority by the security forces ", - "values": [ - "Detention", - "Human rights violations by state agents" - ] - }, - { - "text": "Simplify the procedure for birth registration of persons born outside health-care institutions to contribute to measures carried out to eliminate discrimination", - "values": [ - "Rights of the Child", - "Statelessness and the right to nationality" - ] - }, - { - "text": "Continue pursuing child protection measures", - "values": [ - "Rights of the Child" - ] - }, - { - "text": "Abolish the death penalty and consider ratifying the second Optional Protocol to ICCPR ", - "values": [ - "Death penalty", - "International instruments" - ] - }, - { - "text": "Ratify, without reservations, the Convention on the Elimination of All Forms of Discrimination against Women and its Optional Protocol, and review national legislation in light of its provisions to eliminate all discriminatory laws against women ", - "values": [ - "International instruments", - "Women's rights" - ] - }, - { - "text": "Continue its efforts with a view to definitely abolishing the death penalty, and adhere to the Second Optional Protocol to the International Covenant on Civil and Political Rights, aiming at the abolition of the death penalty ", - "values": [ - "Death penalty", - "International instruments" - ] - }, - { - "text": "Ratify the Optional Protocol to the Convention against Torture and implement a National Preventative Mechanism", - "values": [ - "Detention", - "International instruments", - "Torture and other CID treatment" - ] - }, - { - "text": "Increase steps to prosecute traffickers and to identify, assist and protect victims of trafficking.", - "values": [ - "Trafficking" - ] - }, - { - "text": "Continue efforts for strengthening Malaysia's National Human Rights Commission", - "values": [ - "National Human Rights Institution" - ] - }, - { - "text": "Continue cooperation with ILO on the ratification of the fundamental labour conventions", - "values": [ - "International instruments", - "Labour" - ] - }, - { - "text": "Continue to implement measures that will allow to respond to health needs and guarantee universal access to these services ", - "values": [ - "Right to health" - ] - }, - { - "text": "Continue its efforts in promoting and protecting the human rights of its people, in particular those of vulnerable groups ", - "values": [ - "Minorities" - ] - }, - { - "text": "Intensify measures to raise awareness of domestic violence", - "values": [ - "Rights of the Child", - "Women's rights" - ] - }, - { - "text": "Review the status and functioning of its national human rights institution in order to bring it in line with the Paris Principles", - "values": [ - "National Human Rights Institution" - ] - }, - { - "text": "Adopt preventive measures, including through regional cooperation, on sexual exploitation of women, particularly minors.", - "values": [ - "Rights of the Child", - "Women's rights" - ] - }, - { - "text": "Seek technical and financial assistance from the international community in order to deal with the poverty, unemployment and food insecurity", - "values": [ - "Development", - "Poverty", - "Right to food", - "Technical assistance and cooperation" - ] - }, - { - "text": "Intensify its efforts to eliminate the gender wage gap", - "values": [ - "Women's rights" - ] - }, - { - "text": "Draw up and implement with external assistance, a comprehensive plan to address the problems faced by persons living with albinism, to include: reparation to victims of such attacks", - "values": [ - "Minorities" - ] - }, - { - "text": "Increase the human and financial resources of the Ministry for Temporarily Occupied Territories and International Displaced Persons in order to fulfil its mandate fully", - "values": [ - "Other" - ] - }, - { - "text": "Submit and present pending reports to the treaty bodies of which Andorra is a member, with a view to gaining an updated picture of the situation of human rights in the country", - "values": [ - "Treaty bodies" - ] - }, - { - "text": "Further strengthen the capacity of the National Human Rights Commission ", - "values": [ - "National Human Rights Institution" - ] - }, - { - "text": "Review the July 2009 Law on Assembly and Manifestation imposing several restrictions on the right to assembly and to demonstrate in order to ensure free and unhampered enjoyment of this right ", - "values": [ - "Freedom of association and peaceful assembly" - ] - }, - { - "text": "Continue to carry out actions and programmes aimed at guaranteeing educational and health services for all", - "values": [ - "Right to education", - "Right to health" - ] - }, - { - "text": "Take immediate steps to stop the arrests of human rights defenders and political dissidents, in accordance with its international human rights obligations", - "values": [ - "Freedom of association and peaceful assembly", - "Human rights defenders", - "International instruments" - ] - }, - { - "text": "The Government is committed to completing the drafting of the Land and Land Use Planning Bills and supports the preparation of Legislative Instrument for the Lands Act, the Land Use and Planning Act, the Lands Commission Act, and the Office of the Administrator of Stool Lands Acts", - "values": [ - "Right to land" - ] - }, - { - "text": "Ensure a safe working environment for journalists and continue to take proactive measures against impunity", - "values": [ - "Freedom of the press", - "Impunity" - ] - }, - { - "text": "The Republic of Korea committed to incorporating the recommendations that enjoyed its support into the Second National Action Plan for the Promotion and Protection of Human Rights", - "values": [ - "UPR process" - ] - }, - { - "text": "Implementing a new Plan of Action to Combat Gender-Based and Generational Violence", - "values": [ - "Women's rights" - ] - }, - { - "text": "Take additional measures to stop domestic violence, to extend legal equality to all women, in all areas of law ", - "values": [ - "Rights of the Child", - "Women's rights" - ] - }, - { - "text": "Follow up on the infrastructure of safe houses for abused women and make sure the legal framework is widely implemented and reaches women\u2019s reality", - "values": [ - "Women's rights" - ] - }, - { - "text": "Enhance further cooperation with human rights mechanisms, including issuing a standing invitation to special procedures and providing full access to the Special Rapporteur on torture and other cruel, inhuman or degrading treatment or punishment", - "values": [ - "Special procedures", - "Torture and other CID treatment" - ] - }, - { - "text": "Improve school enrolment rates by removing all obstacles to access to primary education", - "values": [ - "Right to education" - ] - }, - { - "text": "Incorporate human rights into the curriculum", - "values": [ - "Human rights education and training" - ] - }, - { - "text": "Undertake training of the police, administrative and judicial authorities to ensure efficient follow up of cases of slavery and slave-like practices", - "values": [ - "Human rights education and training" - ] - }, - { - "text": "Share its experience and best practices, with other interested countries, on the protection and consolidation of the right of persons with disabilities and exchange experience with interested countries", - "values": [ - "Disabilities" - ] - }, - { - "text": "Ratify the Convention against Torture, and prohibit corporal punishment, present in legislation, in the penal system ", - "values": [ - "Detention", - "International instruments", - "Torture and other CID treatment" - ] - }, - { - "text": "Take effective measures to eradicate the persistent cultural practices that discriminate against women ", - "values": [ - "Women's rights" - ] - }, - { - "text": "Invite the Special Rapporteur on the situation of human rights defenders to visit ", - "values": [ - "Human rights defenders", - "Special procedures" - ] - }, - { - "text": "Continue to take further measures for the education of persons with disabilities ", - "values": [ - "Disabilities", - "Right to education" - ] - }, - { - "text": "Further take measures in order to improve its legislation, policy and practice on gender equality and on prevention and response to gender-based violence", - "values": [ - "Women's rights" - ] - }, - { - "text": "Allow unrestricted access to journalists, humanitarian workers and the Office of the High Commissioner for Human Rights", - "values": [ - "Freedom of the press", - "Technical assistance and cooperation" - ] - }, - { - "text": "Strengthen its cooperation with specialized agencies and programmes of the United Nations system, including the United Nations Population Fund, the United Nations Children's Fund, the Joint United Nations Programme on HIV-AIDS and the Office of the United Nations High Commissioner for Human Rights ", - "values": [ - "HIV - Aids", - "Rights of the Child" - ] - }, - { - "text": "Examine the possibility of ratifying other international conventions that it has not yet ratified, in particular the two International Covenants and the International Convention on the Protection of the Rights of All Migrant Workers and Members of Their Families", - "values": [ - "CP rights - general", - "ESC rights - general", - "International instruments", - "Labour", - "Migrants" - ] - }, - { - "text": "Pursue efforts to combat human trafficking", - "values": [ - "Trafficking" - ] - }, - { - "text": "Implement the Second Optional Protocol to the International Covenant on Civil and Political Rights into domestic law as soon as practicable", - "values": [ - "Death penalty", - "International instruments" - ] - }, - { - "text": "Increase funding for the Central Office for Combating Corruption (GCCC) to expand its training programmes for prosecutors and to increase accountability for Government officials by allowing the GCCC to investigate and prosecute these crimes ", - "values": [ - "Corruption" - ] - }, - { - "text": "Continue its efforts to enhance women's role in society and their effective involvement in the development process, as well as enabling their participation in economic, political and business activities in the country ", - "values": [ - "Women's rights" - ] - }, - { - "text": "Step up cooperation with the special procedures and consider extending a standing invitation to all special procedures mandate holders of the Human Rights Council", - "values": [ - "Special procedures" - ] - }, - { - "text": "Submit its pending periodic reports to the Committee on the Elimination of Racial Discrimination", - "values": [ - "Racial discrimination", - "Treaty bodies" - ] - }, - { - "text": "Step up its efforts to combat and prevent discrimination faced by persons belonging to Roma communities, including ensuring the right to education on a non-discriminatory basis for all Roma children", - "values": [ - "Minorities", - "Racial discrimination", - "Rights of the Child" - ] - }, - { - "text": "Resume cooperation with OHCHR in order to receive technical assistance in strengthening and ensuring the independence of the judiciary, guaranteeing access to justice for all citizens, and establishing mechanisms and institutions at the national level that are effective in promoting and protecting human rights and fundamental freedoms", - "values": [ - "Justice", - "Technical assistance and cooperation" - ] - }, - { - "text": "Adopt a human rights-based approach to development policies and programmes that ensure the effective participation of all communities affected by development projects", - "values": [ - "General" - ] - }, - { - "text": "Continue its efforts in fighting corruption at all levels", - "values": [ - "Corruption" - ] - }, - { - "text": "Step up efforts to pursue policies and programmes for a healthy environment", - "values": [ - "Environment" - ] - }, - { - "text": "Establish a transitional justice mechanism to determine the responsibilities of perpetrators and ensure their accountability, and provide reparations for the victims of violations and oppression by the previous political regime ", - "values": [ - "Justice" - ] - }, - { - "text": "Ratify both the ICCPR and the OP-CAT", - "values": [ - "CP rights - general", - "Detention", - "International instruments", - "Torture and other CID treatment" - ] - }, - { - "text": "Implement fully legal guarantees for freedom of expression as stipulated in the Constitution, thus allowing Qatari citizens to exercise their freedom of expression and opinion and enabling independent media in the country ", - "values": [ - "Freedom of opinion and expression", - "Freedom of the press" - ] - }, - { - "text": "Take measures to review all relevant legislation with a view to end discrimination against women and girls", - "values": [ - "Rights of the Child", - "Women's rights" - ] - }, - { - "text": "Improve access to criminal justice services and legal assistance", - "values": [ - "Justice" - ] - }, - { - "text": "Adopt and seek technical assistance from donor agencies to implement a national training programme for judges, lawyers, civil society groups and schoolchildren on their rights to water, food security, life, education and health in relation to climate change, and the ways in which the courts can help to develop a Pacific jurisprudence on the relationship between climate change and human rights", - "values": [ - "Environment", - "Technical assistance and cooperation" - ] - }, - { - "text": "Continue its efforts to achieve the goals of the second national Plan to eliminate excision (2012 - 2015)", - "values": [ - "Rights of the Child", - "Torture and other CID treatment", - "Women's rights" - ] - }, - { - "text": "Put in place protection measures that would allow the reintegration of teenagers to the education system after having given birth", - "values": [ - "Right to education", - "Rights of the Child" - ] - }, - { - "text": "Step up efforts to effectively prevent and combat discrimination of persons belonging to national minorities, in particular regarding their access to education and health care", - "values": [ - "Minorities", - "Racial discrimination", - "Right to education", - "Right to health" - ] - }, - { - "text": "Strengthen and guarantee the autonomy, independence and impartiality of the judiciary, including by adopting safeguards to prevent irregular dismissals and appointments of judges", - "values": [ - "Justice" - ] - }, - { - "text": "Revise relevant laws and practice to ensure compliance with ICCPR including for bloggers and public access to internet", - "values": [ - "Freedom of opinion and expression", - "International instruments" - ] - }, - { - "text": "Strengthen the protection of foreign workers in the country, including through the revision of relevant legislation on their working conditions ", - "values": [ - "Labour", - "Migrants" - ] - }, - { - "text": "Take more effective measures to combat human trafficking, which affects in particular women and children", - "values": [ - "Rights of the Child", - "Trafficking", - "Women's rights" - ] - }, - { - "text": "Introduce as soon as possible a moratorium on executions ", - "values": [ - "Death penalty" - ] - }, - { - "text": "Widen the scope of international obligations through ratification of international treaties such as the Convention on the Rights of Persons with Disabilities", - "values": [ - "Disabilities", - "International instruments" - ] - }, - { - "text": "Consider the possibility of inviting the Special Rapporteurs on freedom of expression and freedom of religion to visit the country.", - "values": [ - "Freedom of opinion and expression", - "Freedom of religion and belief", - "Special procedures" - ] - }, - { - "text": "Continue to implement concrete measures to facilitate and favour access to education and employment for indigenous peoples ", - "values": [ - "Indigenous peoples", - "Labour", - "Right to education" - ] - }, - { - "text": "Guarantee the rights of prisoners, provide access to legal aid from the moment of arrest and create programmes of rehabilitation, including for juvenile offenders ", - "values": [ - "Detention", - "Rights of the Child" - ] - }, - { - "text": "Fully implement its 2015 national human rights strategy, including with respect to protecting the rights of internally displaced persons, ending discrimination based on gender and sexual orientation through the ratification of the Istanbul Convention, and addressing hate crimes through a strengthened criminal justice framework", - "values": [ - "Internally displaced persons", - "International instruments", - "Justice", - "Racial discrimination", - "Sexual Orientation and Gender Identity" - ] - }, - { - "text": "Take further steps to ensure indigenous peoples right to consultation, to obtain their free, prior and informed consent before proceeding with legal and administrative measures that may affect their rights", - "values": [ - "Indigenous peoples" - ] - }, - { - "text": "Fully cooperate with the United Nations to ensure that all allegations of corruption and political influence are rapidly investigated by an independent and impartial mechanism and that cases found are submitted to the authorities for judicial proceeding ", - "values": [ - "Corruption" - ] - }, - { - "text": "Create an environment of public trust to judiciary system in the country by carrying out a reform of the High Council of Justice and amending the law governing appointment and dismissal of judges", - "values": [ - "Justice" - ] - }, - { - "text": "Develop and implement awareness programmes about sexual and reproductive health targeting youth", - "values": [ - "Right to health" - ] - }, - { - "text": "Provide adequate training in human rights for administrative officials and law enforcement personnel", - "values": [ - "Human rights violations by state agents" - ] - }, - { - "text": "Strengthen the measures for the effective implementation of the regulatory framework in the field of immigration, asylum and refugees, in particular by training public officials involved, as well as by accelerating efforts towards the adoption of the action plan 2016-2019, in order to ensure that migrants can be fully involved in society on an equal basis with citizens", - "values": [ - "Asylum-seekers - refugees", - "Human rights education and training", - "Migrants" - ] - }, - { - "text": "Continue to pay further attention to improving the rule of law", - "values": [ - "Justice" - ] - }, - { - "text": "Continue its current efforts to provide access to quality education without discrimination for the school-age population throughout the country ", - "values": [ - "Right to education" - ] - }, - { - "text": "Consider the measures it deems appropriate to guarantee effective access to basic education for all ", - "values": [ - "Right to education" - ] - }, - { - "text": "Continue to strengthen its efforts to prevent human rights violations committed during counter-terrorist operations", - "values": [ - "Counter-terrorism" - ] - }, - { - "text": "Establish an official moratorium on the use of the death penalty with a view to abolition ", - "values": [ - "Death penalty" - ] - }, - { - "text": "Review the law on equality of spouses in order to eliminate discrimination against women in customary marriages in relation to property rights, so that the rights recognized in customary marriages are the same as in civil marriages ", - "values": [ - "Women's rights" - ] - }, - { - "text": "More effectively enforce the criminal penalties for official corruption", - "values": [ - "Corruption" - ] - }, - { - "text": "Continue applying strategies and plans for the socio-economic development of the country, in particular those aimed at reducing poverty ", - "values": [ - "Development", - "Poverty" - ] - }, - { - "text": "Continue to enhance the protection of women against domestic violence and further promote gender equality in its society ", - "values": [ - "Women's rights" - ] - }, - { - "text": "Recognize the competence of Committee on the Elimination of Racial Discrimination to receive and consider communications from individuals", - "values": [ - "Racial discrimination", - "Treaty bodies" - ] - }, - { - "text": "Reinforce the application of laws prohibiting the trafficking of persons, including the trafficking for forced marriages, inter alia by adopting measures aiming at protecting and assisting victims and prosecuting and punishing those that engage in trafficking, and raising awareness among the population", - "values": [ - "Human rights education and training", - "Rights of the Child", - "Trafficking", - "Women's rights" - ] - }, - { - "text": "Continue to promote gender equality and women\u2019s involvement in politics and public service", - "values": [ - "Women's rights" - ] - }, - { - "text": "Accelerate the Daara modernization program in order to contribute to the eradication of the worst forms of child labour and ensure the enforcement of relevant national laws criminalising the organisation of begging activities", - "values": [ - "Labour", - "Rights of the Child" - ] - }, - { - "text": "Eliminate child labour through sanctioning violations of the minimum age standards and strengthening the labour inspectorate ", - "values": [ - "Labour", - "Rights of the Child" - ] - }, - { - "text": "Step up measures of protection against violence and discrimination on the grounds of sexual orientation, particularly by enacting laws that prohibit such discrimination, and take measures to ensure the effective exercise of the rights to peaceful association and assembly of the LGBT community ", - "values": [ - "Freedom of association and peaceful assembly", - "Sexual Orientation and Gender Identity" - ] - }, - { - "text": "Promote gender equality and protection of childhood", - "values": [ - "Rights of the Child" - ] - }, - { - "text": "Continue the ongoing process to operationalize the National Human Rights Commission", - "values": [ - "National Human Rights Institution" - ] - }, - { - "text": "Amend legislation on domestic violence to encompass all forms of sexual violence, including between partners and outside marriage, in addition to threats", - "values": [ - "Rights of the Child", - "Women's rights" - ] - }, - { - "text": "Accord priority to the ratification of ICESCR", - "values": [ - "ESC rights - general", - "International instruments" - ] - }, - { - "text": "Develop public policies for the effective implementation of the Law on discrimination based on caste and untouchability", - "values": [ - "Minorities", - "Racial discrimination" - ] - }, - { - "text": "Become a party to the 1951 Convention Relating to the Status of Refugees and the 1967 Protocol", - "values": [ - "Asylum-seekers - refugees", - "International instruments" - ] - }, - { - "text": "Continue to build on the successful programs for the creation of jobs and assistance to those most vulnerable, in the fight against poverty and social inequalities", - "values": [ - "Development", - "Poverty" - ] - }, - { - "text": "Continue strengthening all human rights, particularly in the areas of eradicating poverty, promoting and protecting the rights of children and adolescents, and fighting against human trafficking", - "values": [ - "Poverty", - "Rights of the Child", - "Trafficking" - ] - }, - { - "text": "Secure the right to food for all its citizens, especially so as to secure the right to health for children ", - "values": [ - "Right to food", - "Right to health", - "Rights of the Child" - ] - }, - { - "text": "Remain proactive in combating discrimination against Sami and Roma and in protecting their economic, social and cultural rights, in consultation with the communities concerned", - "values": [ - "ESC rights - general", - "Indigenous peoples", - "Minorities", - "Racial discrimination" - ] - }, - { - "text": "Take steps to eliminate the gender pay gap across all groups and ethnicities", - "values": [ - "Minorities", - "Women's rights" - ] - }, - { - "text": "Continue to provide adequate human and other resources to its anti- human trafficking programmes", - "values": [ - "Trafficking" - ] - }, - { - "text": "Continue consultations on the issue of the United Nations Declaration on the Rights of Indigenous Peoples, with all stakeholders with a view to being able to support the Declaration in the future", - "values": [ - "Indigenous peoples", - "International instruments" - ] - }, - { - "text": "Continue to strengthen awareness-raising and sensitization activities for practitioners, families, traditional or religious leaders and the general public in order to encourage change in traditional attitudes aiming at effective eradication of female genital mutilation, Wahaya and other harmful practices ", - "values": [ - "Human rights education and training", - "Rights of the Child", - "Torture and other CID treatment", - "Women's rights" - ] - }, - { - "text": "End discrimination in law and practice against indigenous and Afro- Honduran people and strengthen protection for lesbian, gay, bisexual, transgender and intersex persons", - "values": [ - "Indigenous peoples", - "Minorities", - "Racial discrimination", - "Sexual Orientation and Gender Identity" - ] - }, - { - "text": "Ratify outstanding core international human rights instruments", - "values": [ - "International instruments" - ] - }, - { - "text": "Adopt a comprehensive policy aimed at putting an end to traditional stereotypes", - "values": [ - "Other" - ] - }, - { - "text": "Take all necessary steps to ensure full and unhindered access by independent humanitarian organizations to civilians in need of assistance in Darfur, Blue Nile and South Kordofan ", - "values": [ - "Other" - ] - }, - { - "text": "Continue to engage its regional and international partners with the view of seeking technical and other assistance towards its full compliance with its human rights treaty obligations", - "values": [ - "International instruments", - "Technical assistance and cooperation" - ] - }, - { - "text": "Adopt further measures to drastically improve the protection of worker's rights to a safe and healthy workplace ", - "values": [ - "Labour" - ] - }, - { - "text": "Increase the representation and participation of women in the public sector", - "values": [ - "Women's rights" - ] - }, - { - "text": "Guarantee without delay to all detainees appropriate detention conditions and access to medical care and engage in substantive dialogue with ICRC on these issues ", - "values": [ - "Detention" - ] - }, - { - "text": "Consider ratifying international human rights treaties that are still pending, in accordance with the commitment of the national authorities as set out in paragraph 114 of the national report", - "values": [ - "International instruments" - ] - }, - { - "text": "Make more efforts in order to make the national dialogue a success, and activate the law of transitional justice", - "values": [ - "Justice" - ] - }, - { - "text": "Strengthen the national mechanism for the implementation of the decisions of the Human Rights Committee, the Committee against Torture, the Committee on the Elimination of Racial Discrimination and the Committee on the Elimination of Discrimination against Women in individual complaints.", - "values": [ - "CP rights - general", - "Racial discrimination", - "Torture and other CID treatment", - "Treaty bodies", - "Women's rights" - ] - }, - { - "text": "Implement strict judicial measures on corruption and bribery, which continue to have devastating effects on socio-economic rights.", - "values": [ - "Corruption" - ] - }, - { - "text": "Focus the National Human Rights Plan (2012-2016) on the most vulnerable sectors of the society, including women, children, persons with disabilities and elderly persons", - "values": [ - "Disabilities", - "Rights of the Child", - "Women's rights" - ] - }, - { - "text": "Take the necessary measures to establish a specialized juvenile justice system and continue efforts for reintegration of former child offenders into society, in compliance with the Convention on the Rights of the Child", - "values": [ - "International instruments", - "Justice", - "Rights of the Child" - ] - }, - { - "text": "Strengthened measures to promote gender equality, particularly with regard to the gender pay-gap and women's representation in leadership positions and regional politics", - "values": [ - "Women's rights" - ] - }, - { - "text": "Further enhance national policies to promote the rights of women ", - "values": [ - "Women's rights" - ] - }, - { - "text": "Consider, to the extent possible, acceding to the Optional Protocol to the Convention on the Rights of the Child on the sale of children, child prostitution and child pornography", - "values": [ - "International instruments", - "Labour", - "Rights of the Child", - "Trafficking" - ] - }, - { - "text": "Support the work of civil society by implementing public policies to protect it and end the misuse of penal and administrative law against human rights defenders, including indigenous peoples\u2019 human rights defenders, especially in the context of hydroelectric and mining projects", - "values": [ - "Civil society", - "Human rights defenders", - "Indigenous peoples" - ] - }, - { - "text": "Preserve the progress achieved in areas such as culture, education, health and the elimination of social inequality ", - "values": [ - "Right to education", - "Right to health" - ] - }, - { - "text": "Speed up legislative reforms to make acts of violence against women such as domestic violence and marital rape offenses under the criminal code ", - "values": [ - "Women's rights" - ] - }, - { - "text": "Take measures to eliminate discrimination against Yezidis ", - "values": [ - "Minorities" - ] - }, - { - "text": "Take measures to limit the time of pretrial detention or the equivalent situation of deprivation of liberty without charges and for investigation purposes, in accordance with general comment No. 8 of the Human Rights Committee", - "values": [ - "Detention", - "Treaty bodies" - ] - }, - { - "text": "Ensure education free of charge in practice ", - "values": [ - "Right to education" - ] - }, - { - "text": "Take necessary action to address the impediments faced by the Turkish minority in exercising its religious freedoms, including the prevention of choosing religious leaders and their discouragement from restoring the property of the foundations and refusal for construction of mosques in the cities", - "values": [ - "Freedom of religion and belief", - "Minorities" - ] - }, - { - "text": "Take the necessary steps to ensure that security forces are subject to legal oversight and are operating in compliance with international human rights standards ", - "values": [ - "Human rights violations by state agents", - "International instruments" - ] - }, - { - "text": "Ensure adequate allocation of resources towards court infrastructure and capacity-building in the Judiciary", - "values": [ - "Justice" - ] - }, - { - "text": "Ratify the International Covenant on Civil and Political Rights, the International Covenant on Economic, Social and Cultural Rights, as well as the Convention against Torture", - "values": [ - "CP rights - general", - "ESC rights - general", - "International instruments", - "Torture and other CID treatment" - ] - }, - { - "text": "Incorporate the United Nations Rules for the Treatment of Women Prisoners and Non-Custodial Measures for Women Offenders (the Bangkok Rules) into its programme on adequate treatment for women detainees, especially young pregnant women ", - "values": [ - "Detention", - "Women's rights" - ] - }, - { - "text": "Include the women's rights perspective in the peace negotiations and, specifically, ensure that sexual violence concerns are raised consistently in the peace process and reflected in any peace agreement", - "values": [ - "Women's rights" - ] - }, - { - "text": "Continue to work towards reducing the occurrence of water-borne diseases such as cholera, and other infectious diseases", - "values": [ - "Right to health", - "Right to water and sanitation" - ] - }, - { - "text": "Continue and intensify efforts to eradicate female genital mutilations and gavage, including implementation of legal measures to penalise these practices", - "values": [ - "Rights of the Child", - "Torture and other CID treatment", - "Women's rights" - ] - }, - { - "text": "Ensure that members of the security forces responsible for violations of human rights are brought to justice, and improve prison conditions", - "values": [ - "Detention", - "Human rights violations by state agents" - ] - }, - { - "text": "Facilitate equitable distribution of the nation's wealth in order to address any imbalances in and among the regions which could lead to future disagreements ", - "values": [ - "ESC rights - general" - ] - }, - { - "text": "Elaborate a law on violence against women, including domestic violence", - "values": [ - "Rights of the Child", - "Women's rights" - ] - }, - { - "text": "Take more effective measures to eliminate discrimination against noncitizens in relation to working conditions and work requirements, adopt legislation prohibiting discrimination in employment and take further measures to reduce unemployment among immigrants ", - "values": [ - "Labour", - "Migrants" - ] - }, - { - "text": "Establish a robust legal framework for the functioning of a pluralistic system of political parties and ensure that free and fair elections are held regularly and in accordance with international standards ", - "values": [ - "Elections", - "Freedom of association and peaceful assembly" - ] - }, - { - "text": "Amend labour laws to ensure increased protection for migrant workers in the Jordanian labour market", - "values": [ - "Labour", - "Migrants" - ] - }, - { - "text": "Implement the National Strategy to Combat Gender-based Violence", - "values": [ - "Women's rights" - ] - }, - { - "text": "Ensure the freedoms of expression and opinion are respected, including in its consideration of the draft media laws currently before Parliament", - "values": [ - "Freedom of opinion and expression", - "Freedom of the press" - ] - }, - { - "text": "Pass gender equality legislation including the Property Rights of Spouses Bill, the Affirmative Action Bill and the Intestate Succession Bill", - "values": [ - "Women's rights" - ] - }, - { - "text": "Fight poverty and provide high-quality education and health care for sustainable development ", - "values": [ - "Development", - "Poverty", - "Right to education", - "Right to health" - ] - }, - { - "text": "Accede to the Optional Protocol to the Convention against Torture and Other Cruel, Inhuman or Degrading Treatment or Punishment (OP-CAT) and harmonize its domestic legislation with human rights treaties, and in particular, incorporate torture as a criminal offense in its domestic legislation. In accordance with its policy on "zero tolerance", harmonize in a non-restrictive manner the Convention on the Rights of the Child (CRC)", - "values": [ - "Detention", - "International instruments", - "Rights of the Child", - "Torture and other CID treatment" - ] - }, - { - "text": "Continue and further develop public policies and programmes to enhance the inclusion of Afro-Panamanians in all aspects of life in Panama ", - "values": [ - "Minorities" - ] - }, - { - "text": "Take concrete measures to eradicate child labour, and ensure boys and girls primary and secondary school completion", - "values": [ - "Labour", - "Right to education", - "Rights of the Child" - ] - }, - { - "text": "Fully and effectively implement all recent changes in the institutional framework related to human rights, including in the area of protection of women, children as well as persons belonging to ethnic and religious minorities", - "values": [ - "Freedom of religion and belief", - "Minorities", - "Rights of the Child", - "Women's rights" - ] - }, - { - "text": "Bahrain is determined to strengthen its capacities in order to ensure: Effective implementation of its obligations under the international human rights treaties which it has ratified and signed.", - "values": [ - "International instruments" - ] - }, - { - "text": "Issue a standing invitation to all United Nations Special Rapporteurs and Working Groups ", - "values": [ - "Special procedures" - ] - }, - { - "text": "Ensure the promotion of the economic, social and cultural rights of Roma, and the implementation of policies affecting them ", - "values": [ - "ESC rights - general", - "Minorities" - ] - }, - { - "text": "Strengthen efforts aimed at combating trafficking in persons and sexual exploitation of women and children and the problem of street children ", - "values": [ - "Rights of the Child", - "Trafficking", - "Women's rights" - ] - }, - { - "text": "Expand further the ongoing efforts to provide medical facilities and access to vulnerable groups, particularly women and girls, in rural areas, as part of the overall effort to achieve universal health coverage in Pakistan", - "values": [ - "Right to health", - "Rights of the Child", - "Women's rights" - ] - }, - { - "text": "Urgently accelerate reforms to the justice sector in order to ensure that members of the judiciary receive adequate legal training in preparation for their assignment, and that access to courts is facilitated by ensuring that enough courts exist in all regions, as well as by taking measures to allow persons without sufficient means to also access the court system", - "values": [ - "Justice" - ] - }, - { - "text": "Continue its efforts to combat violence against women and promote gender equality ", - "values": [ - "Women's rights" - ] - }, - { - "text": "Ratify the ICRMW ", - "values": [ - "International instruments", - "Labour", - "Migrants" - ] - }, - { - "text": "Fully cooperate with the International Commission against Impunity in Guatemala in all aspects of its mandate", - "values": [ - "Impunity" - ] - }, - { - "text": "That the provisional Government urgently take all steps necessary to ensure the holding of the referendum on the new constitution and parliamentary elections - announced for 27 June and 10 October 2010 - in a free, fair and democratic manner, and fully take into account the relevant expert opinion of the Office for Democratic Institutions and Human Rights of the Organization for Security and Cooperation in Europe, as well as of the Venice Commission of the Council of Europe ", - "values": [ - "Elections" - ] - }, - { - "text": "Adopt a framework for the protection of media professionals, based on the United Nations Plan of Action on the Safety of Journalists and the Issue of Impunity", - "values": [ - "Freedom of the press" - ] - }, - { - "text": "Undertake further steps to promote efforts to overcome residual social discrimination against Roma and other ethnic minorities", - "values": [ - "Minorities", - "Racial discrimination" - ] - }, - { - "text": "Ensure that asylum seekers claims are processed in accordance with the Convention relating to the Status of Refugees and that detention occurs only when necessary, for a minimal period, and that access to judicial oversight of detention is ensured", - "values": [ - "Asylum-seekers - refugees", - "Detention", - "Migrants" - ] - }, - { - "text": "Continue to work for the full implementation of the NHRAP ", - "values": [ - "General" - ] - }, - { - "text": "Take the necessary measures to ensure the full implementation of laws on the promotion and protection of the rights of the child ", - "values": [ - "Rights of the Child" - ] - }, - { - "text": "Ensure that security forces do not arbitrarily harass and arrest journalists or otherwise prevent the exercise of freedom of expression", - "values": [ - "Freedom of opinion and expression", - "Freedom of the press", - "Human rights violations by state agents" - ] - }, - { - "text": "Integrate fully the principles and provisions of the Convention on the Rights of the Child into its domestic law", - "values": [ - "International instruments", - "Rights of the Child" - ] - }, - { - "text": "Make further efforts to promote and protect the rights of expatriate workers, who make a significant contribution to the economic development and prosperity of Qatar", - "values": [ - "Labour" - ] - }, - { - "text": "Increase the efforts to combat trafficking and smuggling of persons, through the effective implementation of its National Action Plan", - "values": [ - "Trafficking" - ] - }, - { - "text": "Expand human rights training and awareness-raising programmes so that they include all aspects of human rights", - "values": [ - "Human rights education and training" - ] - }, - { - "text": "Ensure that research on how the education of children with disabilities can be implemented through mainstream educational settings, is included in the planned comprehensive implementation plan for persons with disabilities. Regional and international experiences and best practices could be incorporated into such a study ", - "values": [ - "Disabilities", - "Right to education", - "Rights of the Child" - ] - }, - { - "text": "Continue and strengthen efforts in preventing and combating all forms of discrimination faced by persons with a migratory background, in particular in the labour market, the housing sector, and in education and healthcare ", - "values": [ - "Migrants", - "Racial discrimination" - ] - }, - { - "text": "Continue its efforts to promote and protect human rights and freedoms ", - "values": [ - "General" - ] - }, - { - "text": "Adopt the draft law on domestic and sexual violence against women, and strengthen support services in shelters and legal assistance to the victims", - "values": [ - "Rights of the Child", - "Women's rights" - ] - }, - { - "text": "Ratify all the signed conventions, in keeping with the commitments it had undertaken during its first review in 2010", - "values": [ - "International instruments" - ] - }, - { - "text": "Provide compulsory human rights training in police academies", - "values": [ - "Human rights education and training" - ] - }, - { - "text": "Revise its legislation and practice so that they both ensure full protection of the principle of non-refoulement.", - "values": [ - "Asylum-seekers - refugees" - ] - }, - { - "text": "Take all necessary measures to ensure the safety of human rights defenders.", - "values": [ - "Human rights defenders" - ] - }, - { - "text": "Improve efforts aimed at increasing access to safe drinking water and reducing cases of infectious diseases.", - "values": [ - "Right to health", - "Right to water and sanitation" - ] - }, - { - "text": "Develop a national human rights strategy and action plan, while also intensifying its public awareness campaign to the general public and other interested stakeholders ", - "values": [ - "Human rights education and training" - ] - }, - { - "text": "Continue its efforts in providing support and protection for the family, as a fundamental and natural unit of society ", - "values": [ - "Other" - ] - }, - { - "text": "Intensify its efforts to ratify the Convention against Torture and other Cruel, Inhuman or Degrading Treatment or Punishment", - "values": [ - "International instruments", - "Torture and other CID treatment" - ] - }, - { - "text": "Consider ratifying CRPD and ensuring its full implementation in domestic law ", - "values": [ - "Disabilities", - "International instruments" - ] - }, - { - "text": "Increase age of criminal liability to 18", - "values": [ - "Justice", - "Rights of the Child" - ] - }, - { - "text": "Ensure the access to education for all children, including those belonging to indigenous peoples ", - "values": [ - "Indigenous peoples", - "Right to education", - "Rights of the Child" - ] - }, - { - "text": "Align its criminal justice system with its obligations under the ICCPR and other international human rights instruments", - "values": [ - "International instruments", - "Justice" - ] - }, - { - "text": "Criminalise the practice of female genital mutilation as an offence in its Penal Code ", - "values": [ - "Rights of the Child", - "Torture and other CID treatment", - "Women's rights" - ] - }, - { - "text": "Continue combating and condemning racism and hate speech used by politicians and the expression of racism in the media, in particular discriminatory language and hate speech and the dissemination of racist ideas and languages ", - "values": [ - "Racial discrimination" - ] - }, - { - "text": "Immediately establish a moratorium on executions with a view to the definite abolition of the death penalty, and commute all death sentences to prison sentences", - "values": [ - "Death penalty" - ] - }, - { - "text": "Take all necessary steps to end discrimination and to improve the living conditions of the Roma population, inter alia, through the provision of adequate housing and public infrastructure", - "values": [ - "Minorities", - "Racial discrimination", - "Right to housing" - ] - }, - { - "text": "Strengthen actions to ensure that the rights of stateless individuals (Bidoun), domestic migrant workers and foreign female workers are protected and stateless children have access to education and health care", - "values": [ - "Labour", - "Migrants", - "Minorities", - "Rights of the Child", - "Statelessness and the right to nationality", - "Women's rights" - ] - }, - { - "text": "Enact national legislation to translate the ratified international treaties into national law", - "values": [ - "International instruments" - ] - }, - { - "text": "Comply with the recommendation accepted in 2010, but not yet implemented, to establish an "Observatory on Human Rights Defenders" in collaboration with organizations that defend human rights in the country ", - "values": [ - "Human rights defenders" - ] - }, - { - "text": "Adopt a clear and comprehensive legal definition of racial discrimination", - "values": [ - "Racial discrimination" - ] - }, - { - "text": "Take further steps to design policies and programmes to address the ill-treatment and abuse of children and institute mandatory reporting procedures regarding child abuse", - "values": [ - "Rights of the Child" - ] - }, - { - "text": "Maintain its de facto moratorium on the use of the death penalty with a view to its total abolition", - "values": [ - "Death penalty" - ] - }, - { - "text": "Enhance cooperation and assistance mechanisms to provide the required services regarding migrant workers during their presence in the Sultanate ", - "values": [ - "Labour", - "Migrants" - ] - }, - { - "text": "Continue the transversal approach focused on the rights of children, in order to develop a national strategic framework for the protection of children ", - "values": [ - "Rights of the Child" - ] - }, - { - "text": "Respect the rights of all its citizens to freedom of assembly, freedom of association and freedom of expression, which are guaranteed by the Swazi Constitution and by international human rights instruments particularly by allowing labour, political and civil society groups to assemble peacefully, free from Government interference", - "values": [ - "Civil society", - "Freedom of association and peaceful assembly", - "Freedom of opinion and expression", - "Labour" - ] - }, - { - "text": "Reinforce the legislative framework and institutional mechanisms to exclude all discriminatory practices that prevent equal access to employment for persons belonging to ethnic, national or religious minorities", - "values": [ - "Freedom of religion and belief", - "Minorities", - "Racial discrimination" - ] - }, - { - "text": "Ratify the 1954 Convention relating to the Status of Stateless Persons and 1961 Convention on the Reduction of Statelessness", - "values": [ - "International instruments", - "Statelessness and the right to nationality" - ] - }, - { - "text": "Continue concerted efforts for the preservation of the cultural and linguistic identity of Indigenous peoples", - "values": [ - "ESC rights - general", - "Indigenous peoples" - ] - }, - { - "text": "Continue to implement its macro-economic and structural policy in such a way as to ensure the enjoyment of human rights, and to achieve dignified living conditions for the entire population of Bolivia", - "values": [ - "Development" - ] - }, - { - "text": "Ensure that a national preventive mechanism is swiftly established and that the mechanism is underpinned by a legal basis and receives the human resources and financial means necessary to carry out its mandate in an independent and efficient manner", - "values": [ - "Detention", - "Torture and other CID treatment" - ] - }, - { - "text": "Step up the process of establishing a national human rights commission in line with the Paris Principles", - "values": [ - "National Human Rights Institution" - ] - }, - { - "text": "Provide sufficient resources to continue with systematic human rights education and training of teachers at all levels of national education", - "values": [ - "Human rights education and training" - ] - }, - { - "text": "Take further steps in order to guarantee freedom of expression, including freedom of expression on the internet ", - "values": [ - "Freedom of opinion and expression" - ] - }, - { - "text": "Further promote and protect the rights of the national minorities", - "values": [ - "Minorities" - ] - }, - { - "text": "Consider signing the Convention on the Rights of Persons with Disabilities CRPD ", - "values": [ - "Disabilities", - "International instruments" - ] - }, - { - "text": "Elevate the Ombudsman to an A-status national human rights institution in accordance with the Paris Principles ", - "values": [ - "National Human Rights Institution" - ] - }, - { - "text": "Continue efforts to empower the vulnerable and marginalized segments of society ", - "values": [ - "Other" - ] - }, - { - "text": "Continue efforts made to upgrade the status of Yemeni women to one of equality with that of men, including with regard to their representation in society and politics, their access to education and their treatment before the law.", - "values": [ - "Women's rights" - ] - }, - { - "text": "Take measures to ensure respect for human rights for migrant workers, including by promoting constructive dialogues and capacity-building, with a view to achieving an efficient system of integration for migrant workers", - "values": [ - "Labour", - "Migrants" - ] - }, - { - "text": "Revise the provisions of the Criminal Code on terrorism and define terrorism-related offences more clearly and precisely", - "values": [ - "Counter-terrorism" - ] - }, - { - "text": "Make additional efforts to ensure that domestic law is in compliance with the provisions of the Convention on the Elimination of All Forms of Discrimination against Women, particularly with regard to equality in marriage and divorce", - "values": [ - "International instruments", - "Women's rights" - ] - }, - { - "text": "Fully fund its national human rights action plan", - "values": [ - "General" - ] - }, - { - "text": "Continue its efforts in the area of human rights education and training, especially with activities aimed at implementing the third phase of the World Programme for Human Rights Education", - "values": [ - "Human rights education and training" - ] - }, - { - "text": "Give full implementation to the standards in force concerning the education of indigenous peoples, through study plans that take into account their language, history, art and philosophy ", - "values": [ - "Indigenous peoples" - ] - }, - { - "text": "Adopt a national strategy for the improvement of the situation in the prison system ", - "values": [ - "Detention" - ] - }, - { - "text": "Adhere to or ratify Protocol No. 12 to the European Convention for the Protection of Human Rights and Fundamental Freedoms concerning the general prohibition of discrimination ", - "values": [ - "Other" - ] - }, - { - "text": "Study the possibility of repealing the death penalty from its legal system ", - "values": [ - "Death penalty" - ] - }, - { - "text": "Continue to reform its policies and programmes with a view to improving the status of women, girls and children, including those with disabilities, and protecting them against violence and sexual abuse, as well as strengthening measures and mechanisms on administration of justice ", - "values": [ - "Disabilities", - "Rights of the Child", - "Women's rights" - ] - }, - { - "text": "Continue its efforts, in cooperation with UNICEF and relevant international organizations, to eradicate child labour", - "values": [ - "Labour", - "Rights of the Child" - ] - }, - { - "text": "Ensure the protection of the rights of women, especially by criminalizing and implementing laws on female genital mutilation, domestic and sexual violence", - "values": [ - "Rights of the Child", - "Torture and other CID treatment", - "Women's rights" - ] - }, - { - "text": "Continue to implement the current projects and socio-economic development programs ", - "values": [ - "Development" - ] - }, - { - "text": "Intensify measures aiming at promoting tolerance, intercultural dialogue and the respect of diversity, strengthening awareness-raising campaigns ", - "values": [ - "Freedom of religion and belief", - "Human rights education and training", - "Minorities" - ] - }, - { - "text": "Take effective measures to strengthen and guarantee the independence and impartiality of the judiciary, including by adopting safeguards to prevent irregular dismissals and appointments", - "values": [ - "Justice" - ] - }, - { - "text": "Ensure the completion and successful running of the nine rehabilitation centres in a comprehensive disability complex", - "values": [ - "Disabilities" - ] - }, - { - "text": "Tunisia decided to create an institution related to the General Human Rights Coordinator in charge of the follow-up to treaty bodies' recommendations in order to promote their effective implementation", - "values": [ - "Treaty bodies" - ] - }, - { - "text": "Take necessary precautions to protect mosques and other religious sites against the rising incidents of racism, xenophobia and Islamophobia", - "values": [ - "Freedom of religion and belief", - "Racial discrimination" - ] - }, - { - "text": "Support the legislative framework and institutional mechanisms to combat discrimination in the area of employment, and provide access to basic social services for minorities and migrants", - "values": [ - "Labour", - "Migrants", - "Minorities" - ] - }, - { - "text": "Consider taking up an anti-discrimination bill in dialogue with State and non-State actors, which would guarantee basic safeguards of non- discrimination, prevention and punishment of all forms of discrimination against all human beings, in line with the main standards of the international human rights instruments to which Paraguay is a party", - "values": [ - "International instruments" - ] - }, - { - "text": "Heed the call of the High Commissioner to launch credible independent investigations into all reliable allegations made to date of violations of international human rights law committed by American forces in Iraq, including extrajudicial killings, summary executions, and other abuses ", - "values": [ - "Extrajudicial executions", - "International humanitarian law", - "International instruments", - "Public security" - ] - }, - { - "text": "Ensure that everyone, including human rights defenders, can peacefully exercise their right to freedom of expression and assembly in conformity with Belarus' obligations under the International Covenant on Civil and Political Rights ", - "values": [ - "Freedom of association and peaceful assembly", - "Freedom of opinion and expression", - "Human rights defenders", - "International instruments" - ] - }, - { - "text": "Ensure sufficient resources to the so-called chapter 9 institutions, which, as independent oversight bodies, serve a crucial purpose in upholding the rule of law and good governance", - "values": [ - "Justice" - ] - }, - { - "text": "Sri Lanka will continue to take steps that seek to advance the empowerment of women and women's rights and gender equality at national level through the Ministry of Child Development and Women's Empowerment as well as other national mechanisms. Sri Lanka will, at the same time, support international processes that seek to advance women's rights and gender equality.", - "values": [ - "Women's rights" - ] - }, - { - "text": "Ensure that the enforcement and implementation of laws is in compliance with the Constitution and the country's obligations under international and regional law to respect and protect the right of everyone in Uganda to exercise their human rights to freedom of expression and peaceful assembly", - "values": [ - "Freedom of association and peaceful assembly", - "Freedom of opinion and expression" - ] - }, - { - "text": "Continue efforts to eradicate the practice of detaining children together with adults in prisons for adults", - "values": [ - "Detention", - "Rights of the Child" - ] - }, - { - "text": "Reform legislation regarding freedom of expression with a view to bringing it in conformity with international standards and those of the Inter-American Commission on Human Rights ", - "values": [ - "Freedom of opinion and expression" - ] - }, - { - "text": "Enhance its efforts to reduce prison overcrowding ", - "values": [ - "Detention" - ] - }, - { - "text": "Consider ratifying the Protocol to the African Charter on Human and Peoples' Rights on the establishment of an African Court on Human and Peoples' Rights, the OAU Convention Governing the Specific Aspects of Refugee Problems in Africa, the Convention relating to the Status of Stateless Persons, the Convention on the Nationality of Married Women, international conventions on apartheid, and OP-CAT", - "values": [ - "Asylum-seekers - refugees", - "Detention", - "International instruments", - "Statelessness and the right to nationality", - "Torture and other CID treatment", - "Women's rights" - ] - }, - { - "text": "Make national planning and national budgeting gender-responsive", - "values": [ - "Women's rights" - ] - }, - { - "text": "Take all appropriate measures to combat and prevent discrimination against children belonging to religious or other minority groups, including by removing educational material which could serve to perpetuate discrimination", - "values": [ - "Freedom of religion and belief", - "Minorities", - "Racial discrimination", - "Rights of the Child" - ] - }, - { - "text": "Continue to promote human rights training for public officials and authorities", - "values": [ - "Human rights education and training" - ] - }, - { - "text": "Strengthen activities in favour of rural areas by focusing on education and on preventing disadvantaged children from dropping out of school ", - "values": [ - "Right to education", - "Rights of the Child" - ] - }, - { - "text": "Harmonize all its relevant legislation relating to the age of marriage and raise the age of marriage to 18", - "values": [ - "Rights of the Child" - ] - }, - { - "text": "Combat the trafficking and sexual exploitation of women and girls by means of adoption of a comprehensive national action plan in this domain", - "values": [ - "Rights of the Child", - "Women's rights" - ] - }, - { - "text": "Withdraw the rest of its reservations to the CRC, adapt the national legislation accordingly, and review those national laws where the definition of the child is not consistent with the definition of the child under article 1 of the Convention", - "values": [ - "International instruments", - "Rights of the Child" - ] - }, - { - "text": "Quickly create an independent monitoring body in line with the OPCAT ratification that, in addition to UNHCHR and ICRC, would allow NGOs access to prisons and contribute to preventing torture in places of detention ", - "values": [ - "Civil society", - "Detention", - "International instruments", - "Torture and other CID treatment" - ] - }, - { - "text": "Continue efforts to establish a universal system for social protection, including to guarantee food security, employment, social security and the development of production", - "values": [ - "Development", - "Right to food" - ] - }, - { - "text": "The Government is committed to providing an inclusive society for senior citizens. Furthermore, the Government has committed FJD 4 million towards a food voucher scheme to assist senior citizens.", - "values": [ - "Other" - ] - }, - { - "text": "Continue efforts to ensure the promotion of the rights of indigenous peoples", - "values": [ - "Indigenous peoples" - ] - }, - { - "text": "Hold accountable officials of all ranks responsible for human rights violations in the Papua provinces ", - "values": [ - "Human rights violations by state agents" - ] - }, - { - "text": "Commute all death sentences, in particular executions of political prisoners, and abolish, in practice, public executions by hanging and stoning", - "values": [ - "Death penalty", - "Detention", - "Freedom of opinion and expression" - ] - }, - { - "text": "Consider ratifying outstanding international human rights instruments, and update domestic legislation to be in line with the provisions of those international treaties ", - "values": [ - "International instruments" - ] - }, - { - "text": "Continue making progress in applying the strategy on trafficking in persons adopted in July 2011", - "values": [ - "Trafficking" - ] - }, - { - "text": "Provide comprehensive child protection, particularly for unaccompanied minors, by addressing the problems that give rise to their migration, and often to their exploitation, and also affording them the means by which they may be repatriated", - "values": [ - "Migrants", - "Rights of the Child" - ] - }, - { - "text": "Sign as soon as possible the two Optional Protocols to the Convention on the Rights of the Child ", - "values": [ - "International instruments", - "Rights of the Child" - ] - }, - { - "text": "Support family-oriented approaches for the protection of the rights of the child and implement the already existing national policy in this regard ", - "values": [ - "Rights of the Child" - ] - }, - { - "text": "Give stronger support to government measures for the empowerment of women", - "values": [ - "Women's rights" - ] - }, - { - "text": "Review and adopt relevant legislation and policies, including bills related to caste-based discrimination, the Women's Commission, the Dalit Commission, the rights of indigenous peoples and the rights of the child, to ensure full compliance with international human rights standards ", - "values": [ - "Indigenous peoples", - "International instruments", - "Minorities", - "Women's rights" - ] - }, - { - "text": "Continue its ongoing efforts to arrive at a national consensus on a general act on anti-discrimination", - "values": [ - "Other" - ] - }, - { - "text": "Speed up efforts to establish a national system for free universal birth registration throughout the country, including remote areas and strengthen awareness on the importance of birth registration", - "values": [ - "Rights of the Child", - "Statelessness and the right to nationality" - ] - }, - { - "text": "Consider establishing a permanent inter-ministerial committee responsible for the implementation of its international human rights obligations, inter alia, for coordinating the drafting of the national reports to the treaty bodies", - "values": [ - "Special procedures", - "Treaty bodies", - "UPR process" - ] - }, - { - "text": "Adopt legislation criminalizing female genital mutilation ", - "values": [ - "Rights of the Child", - "Torture and other CID treatment", - "Women's rights" - ] - }, - { - "text": "Take the steps necessary to improve the situation of deportees and asylum seekers", - "values": [ - "Asylum-seekers - refugees" - ] - }, - { - "text": "That the principles of governance set out in the Universal Declaration of Human Rights are applied, as they are key to the sustainable management of natural resources, such as protected rainforests, and essential to the realization of fundamental economic, social and cultural rights", - "values": [ - "ESC rights - general", - "Environment", - "International instruments" - ] - }, - { - "text": "Ensure that competent bodies investigate allegations of torture, enforced disappearance and secret detention, that those responsible are punished and that programmes providing reparation for victims are established", - "values": [ - "Detention", - "Enforced disappearances", - "Torture and other CID treatment" - ] - }, - { - "text": "Review legislation on the death penalty in order to eliminate the use of the death penalty, including stoning, as well as ratify the Second Optional Protocol to ICCPR and comply with the provisions of article 6, paragraph 5, of the Covenant on crimes committed by persons under the age of 18 ", - "values": [ - "Death penalty", - "International instruments", - "Rights of the Child" - ] - }, - { - "text": "Strengthen further the powers of the Swiss Federal Commission against Racism in line with the Council of Europe's recommendations ", - "values": [ - "National Human Rights Institution" - ] - }, - { - "text": "Continue to avail itself of offers of technical assistance and capacity building from relevant development partners at the bilateral, regional and multilateral levels ", - "values": [ - "Technical assistance and cooperation" - ] - }, - { - "text": "Further continue concentrating on economic development to bring about sustainable peace and ensure enjoyment of human rights", - "values": [ - "Development" - ] - }, - { - "text": "That the Government and responsible authorities fully investigate all cases and reports on torture in a prompt, transparent and independent manner and bring to justice those responsible", - "values": [ - "Torture and other CID treatment" - ] - }, - { - "text": "Investigate and prosecute all allegations of ill-treatment of persons in police custody", - "values": [ - "Detention", - "Human rights violations by state agents", - "Torture and other CID treatment" - ] - }, - { - "text": "Review thoroughly and amend the Communications Code to ensure that it is in line with international best practices and standards on freedom of expression", - "values": [ - "Freedom of opinion and expression" - ] - }, - { - "text": "Develop a national plan against racism in line with the Durban Declaration and Programme of Action and investigate the perpetrators of hate crime", - "values": [ - "Racial discrimination" - ] - }, - { - "text": "Incorporate into the national legislation the principles of the International Convention on the Elimination of All Forms of Racial Discrimination, in particular as regards the prohibition of all forms of discrimination, including nationality or ethnic origin", - "values": [ - "International instruments", - "Racial discrimination" - ] - }, - { - "text": "Ratify the outstanding core treaties, such as the International Covenant on Civil and Political Rights, the Convention against Torture, and the International Convention on the Elimination of All Forms of Racial Discrimination", - "values": [ - "CP rights - general", - "International instruments", - "Racial discrimination", - "Torture and other CID treatment" - ] - }, - { - "text": "Ensure that abusive child labour practices are eliminated and promote access to education of these children in a vulnerable situation ", - "values": [ - "Labour", - "Right to education", - "Rights of the Child" - ] - }, - { - "text": "Continue its efforts to reduce poverty and food insecurity", - "values": [ - "Poverty", - "Right to food" - ] - }, - { - "text": "Take all appropriate measures to ensure for street children, who are vulnerable to various forms of violence, appropriate care and protection ", - "values": [ - "Rights of the Child" - ] - }, - { - "text": "All national legislation that criminalized homosexuality be brought into line with the Universal Declaration on Human Rights and other relevant instruments", - "values": [ - "International instruments", - "Sexual Orientation and Gender Identity" - ] - }, - { - "text": "Strengthen guarantees for detained persons, and not to extend but to shorten the length of time of pre-trial detention", - "values": [ - "Detention" - ] - }, - { - "text": "Take effective measures to prevent and investigate cases of human trafficking for forced prostitution and forced labor", - "values": [ - "Labour", - "Trafficking" - ] - }, - { - "text": "Effectively implement across the country the Comprehensive Program to Prevent, Address, Punish and Eliminate Violence against Women", - "values": [ - "Women's rights" - ] - }, - { - "text": "Provide opportunities for women to pass on Lebanese citizenship and withdraw all reservations to the Convention on the Elimination of All Forms of Discrimination against Women", - "values": [ - "International instruments", - "Statelessness and the right to nationality", - "Women's rights" - ] - }, - { - "text": "Take all necessary measures to ensure the independence and the correct operation of the judiciary", - "values": [ - "Justice" - ] - }, - { - "text": "Develop, in partnership with civil society, a national action plan for women with defined targets, to address issues such as violence against women, pay inequality, the situation of Maori and Pacific women, and women with disabilities ", - "values": [ - "Disabilities", - "Indigenous peoples", - "Women's rights" - ] - }, - { - "text": "Adopt a national strategy for improving the situation in the penitentiary system", - "values": [ - "Detention" - ] - }, - { - "text": "Strengthen the surveillance of the law of 15 March 2004 with the aim of not adversely affecting the education of girls and adolescents who profess the Muslim, Jewish or Sikh religion, and develop all necessary measures to promote inclusion", - "values": [ - "Freedom of religion and belief", - "Minorities", - "Right to education", - "Rights of the Child" - ] - }, - { - "text": "Pursue efforts to protect children from violence", - "values": [ - "Rights of the Child" - ] - }, - { - "text": "Strengthen respect for the human rights of migrants, including those in detention centres", - "values": [ - "Migrants" - ] - }, - { - "text": "Draft a single national action plan on the rights of persons with disabilities, with an associated budget and a clear time frame for its implementation", - "values": [ - "Disabilities" - ] - }, - { - "text": "Take additional measures to prevent criminal offences, including assault, by police officers and prison guards from occurring, and ensure that the personal integrity of detainees is guaranteed ", - "values": [ - "Detention", - "Human rights violations by state agents" - ] - }, - { - "text": "Sign and ratify OP-CEDAW and CED ", - "values": [ - "Enforced disappearances", - "International instruments", - "Women's rights" - ] - }, - { - "text": "Take more robust measures to prevent and punish religious hatred, discrimination, racism, extremism and xenophobia and human rights violations committed against minorities", - "values": [ - "Freedom of religion and belief", - "Minorities", - "Racial discrimination" - ] - }, - { - "text": "Reinforce protection measures against violence and discrimination of vulnerable people, including women, children, refugees and displaced persons", - "values": [ - "Asylum-seekers - refugees", - "Internally displaced persons", - "Rights of the Child", - "Women's rights" - ] - }, - { - "text": "Ensure conditions at detention centres comply with international and Brazilian law and that particular attention is given to conditions faced by vulnerable prisoners including pregnant women, children, and lesbian, gay, bisexual, transgender and intersex persons, and provide human rights training to officials in the legal and judicial system", - "values": [ - "Detention", - "Rights of the Child", - "Sexual Orientation and Gender Identity", - "Women's rights" - ] - }, - { - "text": "Improve knowledge among health-care workers and adolescents about sexual and reproductive health and rights, including through comprehensive sexuality education that involves men and boys", - "values": [ - "Rights of the Child", - "Women's rights" - ] - }, - { - "text": "Consider ratifying the Convention on the Rights of Persons with Disabilities and the Convention on the Protection of the Rights of All Migrant Workers and Members of Their Families.", - "values": [ - "Disabilities", - "International instruments", - "Labour", - "Migrants" - ] - }, - { - "text": "Step up its efforts to curb domestic violence", - "values": [ - "Rights of the Child", - "Women's rights" - ] - }, - { - "text": "Reform penal legislation with a view to prohibiting torture ", - "values": [ - "Torture and other CID treatment" - ] - }, - { - "text": "Adopt legislation and measures to allow the free practice of religions in Sudan and in South Sudan ", - "values": [ - "Freedom of religion and belief" - ] - }, - { - "text": "Further reduce the gender gap by translating the protection of women's rights into programmes that improve their health, education, and means of livelihood", - "values": [ - "Labour", - "Right to education", - "Right to health", - "Women's rights" - ] - }, - { - "text": "Enact and implement laws on sexual offences and violence to address high rates of sexual and gender based-violence", - "values": [ - "Women's rights" - ] - }, - { - "text": "Consider the ratification of the new third Optional Protocol to the Convention on the Rights of the Child on a communication procedure", - "values": [ - "International instruments", - "Rights of the Child" - ] - }, - { - "text": "Promote the development of a vibrant and effective civil society including by promulgating legislation in accordance with international human rights law, in particular to protect the rights of trade unions, NGO's and freedom of the media", - "values": [ - "Civil society", - "Freedom of the press", - "International instruments", - "Labour" - ] - }, - { - "text": "Continue to adopt all legislative and executive measures against gender-based violence, with special attention to migrant victims ", - "values": [ - "Migrants", - "Women's rights" - ] - }, - { - "text": "Build on progress towards the establishment of an independent national preventive mechanism with the necessary mandate and resources to fulfill its obligations under the Optional Protocol to the Convention against Torture and Other Cruel, Inhuman or Degrading Treatment or Punishment", - "values": [ - "Detention", - "International instruments", - "Torture and other CID treatment" - ] - }, - { - "text": "Take concrete measures by law to prevent and combat child abuse and ill-treatment of children within the family, at school, in other institutions and in society at large and to officially prohibit by law the use of corporal punishment within the family and at school.", - "values": [ - "Rights of the Child", - "Torture and other CID treatment" - ] - }, - { - "text": "Speed up the establishment process of a regional office of OHCHR in Cairo", - "values": [ - "Technical assistance and cooperation" - ] - }, - { - "text": "Ensure the safety and proper treatment of all persons held in custody by the police. ", - "values": [ - "Detention" - ] - }, - { - "text": "Consider enacting and implementing objective and balanced criteria for the seating and removal of judges that limit political interference and place an emphasis on improving the objectivity and effectiveness of the Paraguay justice system ", - "values": [ - "Justice" - ] - }, - { - "text": "Ensure that the best interests of the child are taken into account when arresting, detaining, sentencing or considering early release for a sole or primary carer of the child, bearing in mind that visits of a parent in prison are primarily a right of the child rather than a privilege of the prisoner that can be withdrawn as a disciplinary measure ", - "values": [ - "Detention", - "Rights of the Child" - ] - }, - { - "text": "Continue to implement voluntary pledges and commitments towards the promotion and protection of human rights and fundamental freedoms", - "values": [ - "General" - ] - }, - { - "text": "Include homeless women and children, including unaccompanied children of foreign origin as priority beneficiaries into poverty reduction strategy ", - "values": [ - "Poverty", - "Rights of the Child", - "Women's rights" - ] - }, - { - "text": "Increase its efforts at eradicating torture by launching independent and credible investigations into alleged cases of torture and holding those responsible to account and providing compensation and support to the victims", - "values": [ - "Torture and other CID treatment" - ] - }, - { - "text": "Carry out an independent investigation of the car accident of Oswaldo Payá ", - "values": [ - "Justice" - ] - }, - { - "text": "Make sure that all victims of discrimination have access to effective remedies and the means to obtain them ", - "values": [ - "Other" - ] - }, - { - "text": "Ensure the effective enforcement of laws against trafficking in persons and child prostitution through more effective training of police forces and judicial organs in order to promote better protection for victims ", - "values": [ - "Human rights education and training", - "Rights of the Child", - "Trafficking" - ] - }, - { - "text": "Consider acceding to ICRMW ", - "values": [ - "International instruments", - "Labour", - "Migrants" - ] - }, - { - "text": "Eradicate all forms of discrimination against people with disabilities and encourage their full integration in society ", - "values": [ - "Disabilities" - ] - }, - { - "text": "Provide the National Commission for the Rights of the Child with the necessary resources to ensure that it is able to carry out its mandate", - "values": [ - "National Human Rights Institution", - "Rights of the Child" - ] - }, - { - "text": "Strengthen control mechanisms to prevent and combat the economic exploitation of children", - "values": [ - "Rights of the Child" - ] - }, - { - "text": "Ratify the Optional Protocol to the Convention on the Elimination of All Forms of Discrimination Against Women", - "values": [ - "International instruments", - "Women's rights" - ] - }, - { - "text": "Encourage to continue promoting its commitment to dialogue on all issues and with all states, on the basis of mutual respect, sovereign equality, self-determination and recognition of the right of every people to choose their own political, economic and social system", - "values": [ - "Other" - ] - }, - { - "text": "Guarantee the rights to freedom of expression and assembly and ensure an inclusive debate among all stakeholders with regard to the upcoming referendum and the enactment of a new constitution", - "values": [ - "Freedom of association and peaceful assembly", - "Freedom of opinion and expression" - ] - }, - { - "text": "Reinforce the multi-party system", - "values": [ - "Freedom of association and peaceful assembly" - ] - }, - { - "text": "Amend the Criminal Code to explicitly criminalize marital rape, to abolish provisions allowing a perpetrator of sexual violence to escape prosecution by marrying the victim (Criminal Code, article 227 bis)", - "values": [ - "Women's rights" - ] - }, - { - "text": "Ensure adequate access for people with disabilities to all buildings, information, communication, education and all means of transportation ", - "values": [ - "Disabilities" - ] - }, - { - "text": "Adopt a comprehensive law on violence against women and girls that addresses the importance of consent and provides adequate protection for victims and appropriate penalties for perpetrators", - "values": [ - "Rights of the Child", - "Women's rights" - ] - }, - { - "text": "Adopt the measures necessary to guarantee that the children of internally displaced persons enjoy the same legal status as their parents, regardless of the sex of their parents ", - "values": [ - "Internally displaced persons", - "Rights of the Child" - ] - }, - { - "text": "Continue its efforts to consolidate national institutions and mechanisms set up for the promotion and protection of human rights in the country", - "values": [ - "General" - ] - }, - { - "text": "Undertake the measures necessary to increase the statistical capacity on the situation of children in the country, to facilitate the development of adequate policies ", - "values": [ - "Rights of the Child" - ] - }, - { - "text": "Step up efforts to prevent or limit hatred, racist and xenophobic acts and speeches, including on the Internet", - "values": [ - "Racial discrimination" - ] - }, - { - "text": "End all forms of attacks and harassments as well as cases of arbitrary arrest of human rights defenders and address the problem of impunity for these acts. ", - "values": [ - "Detention", - "Human rights defenders", - "Impunity" - ] - }, - { - "text": "Hasten its positive work on revising the Criminal Code and other necessary legal framework, followed by its effective implementation, to ensure a legal framework and human rights culture that promotes equality and security for all", - "values": [ - "Human rights education and training" - ] - }, - { - "text": "Ratify the International Convention for the Protection of the Rights of All Migrant Workers and Members of their Families", - "values": [ - "International instruments", - "Labour", - "Migrants" - ] - }, - { - "text": "Implement the recommendations provided by the Working Group on Indigenous Populations/Communities of the African Commission on Human and Peoples' Rights in February 2006 ", - "values": [ - "Indigenous peoples" - ] - }, - { - "text": "Ensure equal remuneration for men and women workers for the same work or similar work and for the prevention of discrimination on grounds of sex", - "values": [ - "Women's rights" - ] - }, - { - "text": "Guarantee fully freedom of expression and information by combating the formation of monopolies and ensuring respect for media pluralism", - "values": [ - "Freedom of opinion and expression", - "Freedom of the press" - ] - }, - { - "text": "Intensify efforts to reinforce the human rights protection system and fight impunity and ensure the independence of the judicial system.", - "values": [ - "Impunity", - "Justice" - ] - }, - { - "text": "Abolish the death penalty in national legislation for all crimes", - "values": [ - "Death penalty" - ] - }, - { - "text": "Review and investigate the administration of the legal rights of prisoners condemned to death within the judicial system to ensure their access to adequate recourse to appeals and other resources", - "values": [ - "Death penalty", - "Justice" - ] - }, - { - "text": "Prohibit corporal punishment of children in all settings, including the home and schools, and ensure that the United States encourages non-violent forms of discipline as alternatives to corporal punishment", - "values": [ - "Rights of the Child", - "Torture and other CID treatment" - ] - }, - { - "text": "Consider further strengthening of the national human rights institution ", - "values": [ - "National Human Rights Institution" - ] - }, - { - "text": "The Congolese authorities undertake to encourage the promotion and protection of human rights, the dissemination of the relevant international instruments and the training of public officials, especially law enforcement officers and justice officials who are responsible for the promotion and protection of human rights.", - "values": [ - "Human rights education and training", - "International instruments" - ] - }, - { - "text": "Operationalize the NHRC and strengthen its capabilities in the technical, human and financial fields for better protection of human rights ", - "values": [ - "National Human Rights Institution" - ] - }, - { - "text": "Combat extreme poverty ", - "values": [ - "Poverty" - ] - }, - { - "text": "That the President of the Gambia will use his executive power by refraining from signing the Bill amending section 144a of the Criminal Code into law, and that the Government of the Gambia eliminates all existing legislation penalizing sexual orientation or gender identity", - "values": [ - "Sexual Orientation and Gender Identity" - ] - }, - { - "text": "Continue to take measures to combat racial discrimination", - "values": [ - "Racial discrimination" - ] - }, - { - "text": "Adopt a specific legislation aimed at prohibiting all forms of FGM ", - "values": [ - "Rights of the Child", - "Torture and other CID treatment", - "Women's rights" - ] - }, - { - "text": "Continue to consult UNICEF and the NCRC in the process of finalizing the draft law on juvenile justice to ensure that the law is clear and that the procedures are appropriate and take into consideration the local context and available resources ", - "values": [ - "Justice", - "Rights of the Child" - ] - }, - { - "text": "Development of policies to create rural employment opportunities, launching of projects, and encouragement of capacity-building and higher levels of training for women in local communities", - "values": [ - "Women's rights" - ] - }, - { - "text": "Implement comprehensive national policies and strategic plans to improve equal employment opportunities", - "values": [ - "Labour" - ] - }, - { - "text": "Take appropriate measures to combat racial prejudice in both the public and private media channels", - "values": [ - "Racial discrimination" - ] - }, - { - "text": "Ensure specifically that economic measures do not disproportionally impact upon the elderly ", - "values": [ - "Other" - ] - }, - { - "text": "Continue its efforts in promoting and protecting human rights and other fundamental freedoms of the Libyan people ", - "values": [ - "General" - ] - }, - { - "text": "Implement the adopted investment plan for the judicial system, in order to improve the situation of detainees ", - "values": [ - "Detention", - "Justice" - ] - }, - { - "text": "Repeal legislation criminalizing consensual same-sex practices between adults", - "values": [ - "Sexual Orientation and Gender Identity" - ] - }, - { - "text": "Ensure free, transparent and broad-ranging participation of civil society, minorities and ethnic communities in the national public debate", - "values": [ - "Civil society", - "Minorities" - ] - }, - { - "text": "Consider extending additional support to linguistic and ethnic groups other than those officially recognised as ethnic minorities, with the aim to further promote diverse cultural identities and practice of multiculturalism", - "values": [ - "Minorities" - ] - }, - { - "text": "Improve the protection of children by fighting against child labour, providing for children living in the streets and ensuring education for them ", - "values": [ - "Rights of the Child" - ] - }, - { - "text": "Strengthen efforts to provide preschool education for Roma children as a prerequisite for their equal access to further education without discrimination", - "values": [ - "Minorities", - "Right to education", - "Rights of the Child" - ] - }, - { - "text": "Counter the adverse effects of economic activities such as oil production and mining on the full enjoyment of some economic and social rights of communities living in adjacent territories", - "values": [ - "Business and human rights", - "Development", - "ESC rights - general" - ] - }, - { - "text": "Withdraw its reservation to articles 13, 15, 17 and 18 of CRC ", - "values": [ - "International instruments", - "Rights of the Child" - ] - }, - { - "text": "Abolish the discriminatory provision requiring a foreigner to present a guarantor in order to be able to initiate a civil action before a court", - "values": [ - "Justice" - ] - }, - { - "text": "Continue to strengthen the programmes for gender equity and social inclusion of women", - "values": [ - "Women's rights" - ] - }, - { - "text": "Explore the possibility of adopting a national strategy to combat discrimination against women ", - "values": [ - "Women's rights" - ] - }, - { - "text": "Strengthen its efforts to combat sexual violence by adopting a legal framework to address violence against women and by incorporating the principle of equality between women and men into the Constitution", - "values": [ - "Women's rights" - ] - }, - { - "text": "Accredit a national human rights institution in accordance with the Paris Principles ", - "values": [ - "National Human Rights Institution" - ] - }, - { - "text": "Repeal legislation criminalizing homosexuality and introduce policies aimed at ending discrimination against LGBT people ", - "values": [ - "Sexual Orientation and Gender Identity" - ] - }, - { - "text": "Adopt all necessary measures to ensure that the persistent practice of female genital mutilation stops, through the criminalization of such practice and awareness campaigns", - "values": [ - "Human rights education and training", - "Rights of the Child", - "Torture and other CID treatment", - "Women's rights" - ] - }, - { - "text": "Take further measures aimed at eradicating violence against women", - "values": [ - "Women's rights" - ] - }, - { - "text": "Setup a national strategy to combat trafficking in persons as defined by the existing Penal Code", - "values": [ - "Trafficking" - ] - }, - { - "text": "Continue taking the necessary measures of accountability to ensure full compliance in all sectors with the national legislation in the field of gender rights and equality ", - "values": [ - "Women's rights" - ] - }, - { - "text": "Sign and ratify the Rome Statute of the International Criminal Court at an early stage", - "values": [ - "International instruments", - "Justice" - ] - }, - { - "text": "Share good practices in mechanisms for follow-up and monitoring of human rights obligations accepted by the State ", - "values": [ - "International instruments" - ] - }, - { - "text": "Continue to protect girls from all forms of discrimination and promote girls' rights and access to education", - "values": [ - "Right to education", - "Rights of the Child" - ] - }, - { - "text": "Make education reforms to increase the quality of education, make it more accessible and facilitate re-entry of adolescent mothers back to school", - "values": [ - "Right to education", - "Rights of the Child", - "Women's rights" - ] - }, - { - "text": "Ratify and fully align its national legislation with the Rome Statute", - "values": [ - "International instruments", - "Justice" - ] - }, - { - "text": "Continue the implementation of laws on migration and amendments, to ensure that the laws are always fully in line with international standards", - "values": [ - "Migrants" - ] - }, - { - "text": "Allow the Special Rapporteur on the promotion and protection of human rights while countering terrorism free access to detention centers and communication with persons in detention during his next visit", - "values": [ - "Counter-terrorism", - "Detention", - "Special procedures" - ] - }, - { - "text": "Continue guaranteeing the invocation of conscientious objection by health professionals, in order to safeguard freedom of conscience of medical personnel", - "values": [ - "Freedom of religion and belief" - ] - }, - { - "text": "Continue and strengthen efforts to find a solution that respects the land rights of indigenous groups and ensures legal protection of their human rights.", - "values": [ - "Indigenous peoples", - "Right to land" - ] - }, - { - "text": "Ratify the treaties that Chad has signed in the field of human rights", - "values": [ - "International instruments" - ] - }, - { - "text": "Bear in mind the need to work towards securing the full range of human rights and fundamental freedoms, including the right to development, for all Bhutanese, in continuing the pursuit of Gross National Happiness ", - "values": [ - "Development" - ] - }, - { - "text": "Adopt measures to protect women\u2019s rights, including by strengthening of laws against sexual violence and ensuring the equal participation of women in political and public affairs", - "values": [ - "Women's rights" - ] - }, - { - "text": "Ratify the Convention on the Rights of Persons with Disabilities", - "values": [ - "Disabilities", - "International instruments" - ] - }, - { - "text": "Expressly prohibit all corporal punishment of children in all settings, including at school and at home", - "values": [ - "Rights of the Child", - "Torture and other CID treatment" - ] - }, - { - "text": "Step up its efforts to enhance human rights education and training of law enforcement personnel, teachers and other civil servants ", - "values": [ - "Human rights education and training" - ] - }, - { - "text": "Modify relevant legislation - in particular, remove provisions of the Criminal Code on the prosecution of journalists for libel ", - "values": [ - "Freedom of the press" - ] - }, - { - "text": "Harmonize domestic law regarding the minimum age of criminal responsibility, and raise it", - "values": [ - "Justice", - "Rights of the Child" - ] - }, - { - "text": "Adopt a law on the media in order to guarantee the freedom of expression and information", - "values": [ - "Freedom of opinion and expression" - ] - }, - { - "text": "Step up efforts to ensure access to education, health, employment and participation in political public life for women, in particular rural and ethnic minority women", - "values": [ - "Minorities", - "Women's rights" - ] - }, - { - "text": "Maintain the practice whereby the Ministry of Justice pays the fees of counsel for accused persons who are unable to pay, as well as the presence of the media and persons interested in human rights during trial hearings", - "values": [ - "Justice" - ] - }, - { - "text": "Move forward and finalize the draft national children policy", - "values": [ - "Rights of the Child" - ] - }, - { - "text": "Design a strategy to manage resources more efficiently, so as to deal with the most pressing human rights issues, and pay particular attention to the marginalized sectors of the population", - "values": [ - "General" - ] - }, - { - "text": "Guarantee the right to work and equality of all public sector workers and ensure that their human dignity is respected without gender-based discrimination", - "values": [ - "Labour", - "Women's rights" - ] - }, - { - "text": "Increase the access to education of children with disability by allocating more resources", - "values": [ - "Disabilities", - "Right to education", - "Rights of the Child" - ] - }, - { - "text": "Consider adhering to ICRMW", - "values": [ - "International instruments", - "Labour", - "Migrants" - ] - }, - { - "text": "Bring national legislation on freedom of expression in compliance with international law", - "values": [ - "Freedom of opinion and expression" - ] - }, - { - "text": "Strongly recommended the repeal or amendment of Law 88 and Article 91 of the Criminal Code and the immediate release of unlawfully imprisoned human rights defenders, journalists, and others affected by the aforementioned legislation", - "values": [ - "Detention", - "Freedom of the press", - "Human rights defenders" - ] - }, - { - "text": "Proceed with ratifying the CRPD and CRC", - "values": [ - "Disabilities", - "International instruments", - "Rights of the Child" - ] - }, - { - "text": "Establish an independent human rights commission ", - "values": [ - "National Human Rights Institution" - ] - }, - { - "text": "Combat all forms of the trafficking in women and girls", - "values": [ - "Rights of the Child", - "Trafficking", - "Women's rights" - ] - }, - { - "text": "Bring its Ombudsman Board into compliance with the Paris Principles", - "values": [ - "National Human Rights Institution" - ] - }, - { - "text": "Promote a culture of equality through equal participation of all members of society and particularly the participation of women in rural areas", - "values": [ - "Women's rights" - ] - }, - { - "text": "Adopt further measures to increase the participation of women in political life, including to serve as senior level officials in the executive and judicial branches, at the national and local levels", - "values": [ - "Women's rights" - ] - }, - { - "text": "Implement legal provisions for better protection of persons with disabilities", - "values": [ - "Disabilities" - ] - }, - { - "text": "Cooperate fully with the International Criminal Court ", - "values": [ - "International instruments", - "Justice" - ] - }, - { - "text": "Consider issuing a standing invitation to the special procedures", - "values": [ - "Special procedures" - ] - }, - { - "text": "Promote a positive image of and tolerance for asylum seekers and refugees", - "values": [ - "Asylum-seekers - refugees" - ] - }, - { - "text": "Pursue its development plans as considered an alienable right and to support the current efforts to achieve development to be attained in practice ", - "values": [ - "Development" - ] - }, - { - "text": "Immediately end the campaign of extrajudicial killings, which may amount to crimes against humanity under international law", - "values": [ - "Extrajudicial executions" - ] - }, - { - "text": "Persons with disabilities constitute one of the country's vulnerable populations. Apart from the first national survey on the prevalence of disability (PENDIS) 2005-2006, no more up-to-date information is available. However, the State reiterates its firm commitment to conducting research that will produce new statistical data and that will inform the development of public policies in that area.", - "values": [ - "Disabilities" - ] - }, - { - "text": "Prohibit the sterilization of persons with disabilities, unless they provide their free and informed consent", - "values": [ - "Disabilities", - "Torture and other CID treatment" - ] - }, - { - "text": "Continue to cooperate fully with all United Nations human rights mechanisms ", - "values": [ - "Special procedures", - "Treaty bodies", - "UPR process" - ] - }, - { - "text": "Decriminalize consensual relations between same-sex adults", - "values": [ - "Sexual Orientation and Gender Identity" - ] - }, - { - "text": "Continue to address violence against women, particularly in regional and local areas", - "values": [ - "Women's rights" - ] - }, - { - "text": "Consider appropriate measures to eliminate discrimination against religious minorities in accordance with international standards ", - "values": [ - "Freedom of religion and belief", - "Minorities" - ] - }, - { - "text": "Implement legal reforms to promulgate a criminal code, ensure transparent and fair criminal trials, and prevent arbitrary, secret and indefinite detention and torture in custody", - "values": [ - "Detention", - "Justice", - "Torture and other CID treatment" - ] - }, - { - "text": "Continue strengthening the judiciary based on the principles of the independence of judges and prosecutors and ensure equal access for all to the justice system ", - "values": [ - "Justice" - ] - }, - { - "text": "Take further measures to address violence against women, including domestic and sexual violence, especially in the field of prevention", - "values": [ - "Rights of the Child", - "Women's rights" - ] - }, - { - "text": "Strictly implement the principles of the electoral Code of Conduct in the coming election ", - "values": [ - "Elections" - ] - }, - { - "text": "Ensure the full participation of indigenous, communities of African descent and women in all levels of public affairs", - "values": [ - "Indigenous peoples", - "Women's rights" - ] - }, - { - "text": "Continue to strengthen its legal framework through expediting the ratification of the Convention against Torture and Other Cruel, Inhuman or Degrading Treatment or Punishment. In this regard, Indonesia together with the core group of the Convention against Torture Initiative (CTI) stands ready to support Papua New Guinea in this ratification process", - "values": [ - "International instruments", - "Torture and other CID treatment" - ] - }, - { - "text": "Continue promoting partnerships with regional and international institutions in order to give impetus to the development process and improve living standards of its nationals", - "values": [ - "General" - ] - }, - { - "text": "Continue its efforts in the fight against corruption", - "values": [ - "Corruption" - ] - }, - { - "text": "Building on a number of international conventions and instruments, including the Durban Declaration and Programme of Action, Costa Rica has pledged to take affirmative action in favour of persons of African descent ", - "values": [ - "International instruments", - "Minorities", - "Racial discrimination" - ] - }, - { - "text": "Amend the 2010 National Security Act to ensure that the powers to arrest and detain of the National Intelligence and Security Service (NISS) are in line with the human rights obligations of Sudan", - "values": [ - "Detention", - "Public security" - ] - }, - { - "text": "The delegation reiterated the commitment of the Government of Ghana to uphold human rights in the country. It also looks forward to continued cooperation with the Human Rights Council and all other human rights mechanisms", - "values": [ - "Special procedures", - "Treaty bodies", - "UPR process" - ] - }, - { - "text": "Expand the food possibilities of the population through an agricultural system of higher productivity and production ", - "values": [ - "Right to food" - ] - }, - { - "text": "Amend the Shia Personal Status Law consistent with its international human rights obligations to ensure equal respect for the human rights of all Afghans, including women", - "values": [ - "International instruments", - "Women's rights" - ] - }, - { - "text": "Strengthen cooperation with all the mechanisms of this Council ", - "values": [ - "Special procedures" - ] - }, - { - "text": "Adopt a comprehensive law against discrimination that is coherent with its social inclusion programmes", - "values": [ - "Other" - ] - }, - { - "text": "Strengthen and effectively implement its legislation to prohibit, prosecute and punish hate speech, incitement to hatred and acts of religious profiling ", - "values": [ - "Freedom of religion and belief", - "Racial discrimination" - ] - }, - { - "text": "Review its approach to domestic violence to better prevent and respond to cases of domestic violence against women and children", - "values": [ - "Rights of the Child", - "Women's rights" - ] - }, - { - "text": "Continue efforts on public administrative reforms ", - "values": [ - "Other" - ] - }, - { - "text": "Step up efforts to find a sustainable solution for refugees through discussion with relevant\nparties, and attach particular importance to children and women and the need for families to remain\ntogether ", - "values": [ - "Asylum-seekers - refugees" - ] - }, - { - "text": "Abolish the death penalty", - "values": [ - "Death penalty" - ] - }, - { - "text": "Consider ratifying the OP-CEDAW ", - "values": [ - "International instruments", - "Women's rights" - ] - }, - { - "text": "Ratify the Optional Protocol to the CAT ", - "values": [ - "Detention", - "International instruments", - "Torture and other CID treatment" - ] - }, - { - "text": "Continue the ratification process of the main international human rights-related instruments, including the Optional Protocol to the Convention against Torture and Other Cruel, Inhuman or Degrading Treatment or Punishment", - "values": [ - "International instruments", - "Torture and other CID treatment", - "Treaty bodies" - ] - }, - { - "text": "Continue efforts to reduce poverty and limit disparities in education and income", - "values": [ - "Poverty" - ] - }, - { - "text": "Implement a thorough training and awareness programme in international humanitarian and human rights law for members of the security forces.", - "values": [ - "Human rights education and training", - "International humanitarian law", - "International instruments" - ] - }, - { - "text": "Continue its efforts to address the problem of unemployment and improve competitiveness in human resources through the effective implementation of the current strategy for 2016-2020", - "values": [ - "Development" - ] - }, - { - "text": "Improve domestic legislation towards a genuine gender equality in the working place", - "values": [ - "Women's rights" - ] - }, - { - "text": "Fully incorporate the Convention on the Elimination of All Forms of Discrimination against Women into Sri Lanka\u2019s domestic system", - "values": [ - "International instruments", - "Women's rights" - ] - }, - { - "text": "Launch a nationwide education and awareness campaign to prevent stigmatization of persons with albinism to ensure their security and facilitate their equal access to education and employment ", - "values": [ - "Human rights education and training", - "Labour", - "Minorities", - "Right to education" - ] - }, - { - "text": "Remain committed to negotiations to resolve pending areas of disagreement", - "values": [ - "Other" - ] - }, - { - "text": "Continue its efforts in order to increase participation of women in public spheres", - "values": [ - "Women's rights" - ] - }, - { - "text": "Continue and strengthen measures adopted to increase the participation of and progress achieved by women in all sectors of the life of the country/political life", - "values": [ - "Women's rights" - ] - }, - { - "text": "Promote the establishment of civil society organizations without undue restrictions and seek\nthe assistance of the United Nations system in Bhutan to this end ", - "values": [ - "Civil society" - ] - }, - { - "text": "Continue to make efforts to promote and protect the rights of women ", - "values": [ - "Women's rights" - ] - }, - { - "text": "Sign and ratify CAT-OP. ", - "values": [ - "International instruments", - "Torture and other CID treatment" - ] - }, - { - "text": "Consider strengthening press freedom protections contained in the 1999 press law.", - "values": [ - "Freedom of the press" - ] - }, - { - "text": "Fully investigate all cases of harassment and intimidation of journalists and human rights defenders with a view of bringing the perpetrators to justice", - "values": [ - "Freedom of the press", - "Human rights defenders" - ] - }, - { - "text": "Increase the protection mechanisms for women and children as well as measures to disseminate and make their implementation more effective", - "values": [ - "Rights of the Child", - "Women's rights" - ] - }, - { - "text": "Adopt comprehensive measures to combat trafficking in human beings, organize a visit of the Special Rapporteur on trafficking in persons as well as of the Special Rapporteur on the sale of children, child prostitution and child pornography to the country", - "values": [ - "Rights of the Child", - "Special procedures", - "Trafficking" - ] - }, - { - "text": "Not detain children with adults unrelated to them", - "values": [ - "Detention", - "Rights of the Child" - ] - }, - { - "text": "Enact the Prevention and Suppression of Torture and Enforced Disappearance Bill to criminalize torture in accordance with the Convention against Torture and Other Cruel, Inhuman or Degrading Treatment or Punishment", - "values": [ - "Enforced disappearances", - "International instruments", - "Torture and other CID treatment" - ] - }, - { - "text": "Expeditiously amend its Penal Code to criminalise all forms of torture and illtreatment and ensure that all allegations for such violations are credibly and promptly investigated and those responsible are brought to justice in accordance to international fair trial standards ", - "values": [ - "Torture and other CID treatment" - ] - }, - { - "text": "Take all measures to ensure the independence, including financial, and the effectiveness of the national human rights institution and to protect it from all forms of pressure or reprisal in connection with its work to promote and protect human rights", - "values": [ - "National Human Rights Institution" - ] - }, - { - "text": "Continue its leadership role and advocacy with the international community, including through the Coalition of Low Lying Atoll Nations on Climate Change and the Alliance of Small Island States, on the need for ambitious and binding targets for greenhouse gas emissions in order to mitigate the negative effects of climate change on human rights", - "values": [ - "Environment" - ] - }, - { - "text": "Establish targets for improving the representation of women in senior management in the public service and set measurable targets for realizing gender pay equality.", - "values": [ - "Labour", - "Women's rights" - ] - }, - { - "text": "Promote the political participation of women in public positions of power", - "values": [ - "Women's rights" - ] - }, - { - "text": "Sign and ratify the Convention against Torture", - "values": [ - "International instruments", - "Torture and other CID treatment" - ] - }, - { - "text": "Ratify CEDAW in parallel with enacting and implementing specific legislation to fight violence against women, with the possible assistance of the Pacific Island Forum Secretariat ", - "values": [ - "International instruments", - "Women's rights" - ] - }, - { - "text": "Establish a minimum age of marriage of 18 for both girls and boys", - "values": [ - "Rights of the Child" - ] - }, - { - "text": "Place children\u2019s rights at the centre of climate change adaption and mitigation strategies by mainstreaming child-sensitive risk and vulnerability reduction strategies into its National Adaptation Programme", - "values": [ - "Environment", - "Rights of the Child" - ] - }, - { - "text": "Extend an open-ended invitation to all Special Procedures of the Human Rights Council ", - "values": [ - "Special procedures" - ] - }, - { - "text": "Pursue its engagement to the official development aid ", - "values": [ - "Development" - ] - }, - { - "text": "Ensure that human rights defenders are able to exercise their rights to freedom of expression, assembly and association", - "values": [ - "Freedom of association and peaceful assembly", - "Freedom of opinion and expression", - "Human rights defenders" - ] - }, - { - "text": "Adopt a comprehensive legal framework for refugees and asylum-seekers in conformity with relevant international standards", - "values": [ - "Asylum-seekers - refugees" - ] - }, - { - "text": "Create the necessary educational structures in order that all citizens have easy access to education and improve prison conditions ", - "values": [ - "Detention", - "Right to education" - ] - }, - { - "text": "Ensure gender equity in higher education institutions of the country by increasing the number of female students ", - "values": [ - "Right to education", - "Women's rights" - ] - }, - { - "text": "Maintain and further build upon the HIV/AIDS prevention, care and treatment programmes", - "values": [ - "HIV - Aids" - ] - }, - { - "text": "To keep, as a priority for the country, the protection of the right to life of all Cubans in confronting the various dangers of disaster ", - "values": [ - "Environment" - ] - }, - { - "text": "Reinforce efforts in improving conditions in the penitentiary facilities ", - "values": [ - "Detention" - ] - }, - { - "text": "End the widespread practice of arresting participants at opposition rallies and pressing charges against them ", - "values": [ - "Freedom of association and peaceful assembly" - ] - }, - { - "text": "Establish a standing moratorium on executions with a view to the abolition of the death penalty and ratify the Second Optional Protocol to the International Covenant on Civil and Political Rights", - "values": [ - "Death penalty", - "International instruments" - ] - }, - { - "text": "Develop further effective campaigns and programmes to improve access to health services, employment and housing for Roma, take effective measures to guarantee their protection against poverty and social exclusion and develop effective monitoring and evaluation mechanisms for the assessment of the results of these campaigns, programmes and measures.", - "values": [ - "Minorities" - ] - }, - { - "text": "Amend the Criminal Code to ensure that rape is defined according to the recommendations of the Committee on the Elimination of Discrimination against Women ", - "values": [ - "Treaty bodies", - "Women's rights" - ] - }, - { - "text": "Continue efforts in the realm of promotion of human rights", - "values": [ - "General" - ] - }, - { - "text": "Take the necessary measures to prevent the ritual murder of persons with albinism, children with disabilities, twins, and children accused of practising witchcraft, to investigate and prosecute those suspected of committing these crimes, and to increase efforts to raise awareness of the need to eradicate such practices", - "values": [ - "Disabilities", - "Human rights education and training", - "Minorities", - "Rights of the Child", - "Women's rights" - ] - }, - { - "text": "Become a party to the main international human rights treaties and therefore ratify ICCPR and ICESCR", - "values": [ - "CP rights - general", - "ESC rights - general", - "International instruments" - ] - }, - { - "text": "Be accountable for all political prisoners, in particular the members of the "G15", and release them ", - "values": [ - "Detention", - "Freedom of opinion and expression" - ] - }, - { - "text": "Remove all Internet monitoring and control facilities restricting the use of the Internet ", - "values": [ - "Freedom of opinion and expression" - ] - }, - { - "text": "Explicitly prohibit all corporal punishment of children in all settings, including at home and in schools, in the context of adopting the new Children's Code, and promote alternative forms of discipline", - "values": [ - "Rights of the Child", - "Torture and other CID treatment" - ] - }, - { - "text": "Use detention as a last resort and treat asylum seekers in accordance with international human rights standards and in compliance with the principle of non-refoulement ", - "values": [ - "Asylum-seekers - refugees", - "International instruments" - ] - }, - { - "text": "Implement measures to ensure appropriate treatment of detainees, work to eliminate the detention of persons without charge or trial and ensure transparency for all sentences", - "values": [ - "Detention" - ] - }, - { - "text": "Consider signing and ratifying the International Convention for the Protection of All Persons from Enforced Disappearance. and consider accepting the competence of the Committee on Enforced Disappearances.", - "values": [ - "Enforced disappearances", - "International instruments" - ] - }, - { - "text": "Take concrete measures to combat all forms and manifestations of racism, racial discrimination and related intolerance, particularly against religious minorities", - "values": [ - "Freedom of religion and belief", - "Minorities", - "Racial discrimination" - ] - }, - { - "text": "Ratify the other international human rights treaties to which it is not yet a party ", - "values": [ - "International instruments" - ] - }, - { - "text": "Expand human rights trainings to law enforcement organs and personnel of public sector", - "values": [ - "Human rights education and training" - ] - }, - { - "text": "Ensure that women victims of violence receive adequate assistance and that perpetrators are brought to justice", - "values": [ - "Women's rights" - ] - }, - { - "text": "Improve guarantees for the exercise of the right to information through the ratification of ICCPR and its two protocols", - "values": [ - "Freedom of opinion and expression", - "International instruments" - ] - }, - { - "text": "Ratify the International Convention for the Protection of All Persons from Enforced Disappearance (CPED) and proceed to recognize the competence of its committee", - "values": [ - "Enforced disappearances", - "International instruments", - "Treaty bodies" - ] - }, - { - "text": "Collaborate with international aid agencies to improve medical assistance and distribute free medical certificates for victims of sexual violence, carry out an awareness-raising campaign throughout the country about the relationship between sexual violence and HIV-AIDS prevention and give priority to the establishment of sexual and reproductive health programmes for women and girls ", - "values": [ - "HIV - Aids", - "Human rights education and training", - "Rights of the Child", - "Women's rights" - ] - }, - { - "text": "Suspend article 128 of the Iraqi Penal Code, as a first step towards the permanent removal from it of honourable motives as a mitigating excuse", - "values": [ - "Rights of the Child", - "Women's rights" - ] - }, - { - "text": "Adopt legislation that prohibits discrimination on the basis of sexual orientation and gender identity", - "values": [ - "Sexual Orientation and Gender Identity" - ] - }, - { - "text": "Continue to take steps aimed at strengthening the protection of children's rights, such as further improving the access of children affected by social exclusion, including Roma children, to education and health-care services ", - "values": [ - "Minorities", - "Right to education", - "Right to health", - "Rights of the Child" - ] - }, - { - "text": "Extend an open invitation to special procedures", - "values": [ - "Special procedures" - ] - }, - { - "text": "Ratify the Second Optional Protocol of the ICCPR with a view to fully abolishing capital punishment ", - "values": [ - "Death penalty", - "International instruments" - ] - }, - { - "text": "Ensure that security sector reform remains a priority and that the civilian Government retains control of the military and ensures its respect for the rule of law", - "values": [ - "Justice" - ] - }, - { - "text": "Accomplish progressively human rights voluntary goals, as set up by Human Rights Council resolution 9-12, including the ratification of CAT ", - "values": [ - "International instruments", - "Torture and other CID treatment" - ] - }, - { - "text": "Abandon any restriction or obstacle to the work of persons and institutions engaged in the protection and promotion of human rights ", - "values": [ - "Civil society", - "Human rights defenders" - ] - }, - { - "text": "Undertake further analysis of the high percentage of Roma Children in special education schools in light of the principles of the Council of Europe and the jurisprudence of the European Convention on Human Rights", - "values": [ - "Minorities", - "Racial discrimination", - "Right to education", - "Rights of the Child" - ] - }, - { - "text": "Accede to the ICCPR-OP 2 and also the Optional Protocol to the Convention against Torture (OP-CAT)", - "values": [ - "Death penalty", - "Detention", - "International instruments", - "Torture and other CID treatment" - ] - }, - { - "text": "Strengthen the policies against the existence of early marriages of girls and polygamy, as well as the laws fighting impunity ", - "values": [ - "Impunity", - "Rights of the Child", - "Women's rights" - ] - }, - { - "text": "Guarantee the human rights to water and sanitation by increasing access to drinking water and sanitation facilities", - "values": [ - "Right to water and sanitation" - ] - }, - { - "text": "Ratify the International Convention for the Protection of All Persons from Enforced Disappearance and ensure that international conventions to which Togo is a party are effectively integrated into domestic law", - "values": [ - "Enforced disappearances", - "International instruments" - ] - }, - { - "text": "Continue its efforts to strengthen the independence of the judiciary at both the legal and implementing levels", - "values": [ - "Justice" - ] - }, - { - "text": "Strengthen the judicial system, in particular through the implementation of a specific legal framework which regulates the responsibility of minors and which is consistent with existing international instruments in this area ", - "values": [ - "Justice", - "Rights of the Child" - ] - }, - { - "text": "Continue ensuring the rights of women and girls through their empowerment and participation in society", - "values": [ - "Rights of the Child", - "Women's rights" - ] - }, - { - "text": "Hasten the process of establishing the national human rights commission in line with the proposal of the 2014 draft Constitution", - "values": [ - "National Human Rights Institution" - ] - }, - { - "text": "Continue public awareness campaigns on domestic violence and increase the penalties for this crime", - "values": [ - "Human rights education and training", - "Rights of the Child", - "Women's rights" - ] - }, - { - "text": "Join the favourable momentum generated by the adoption of the United Nations Declaration on the Rights of Indigenous Peoples and give its support to this instrument", - "values": [ - "Indigenous peoples", - "International instruments" - ] - }, - { - "text": "Pursue efforts to strengthen and to protect the rights of the child, and to integrate education of the rights of the child into the school curriculum", - "values": [ - "Right to education", - "Rights of the Child" - ] - }, - { - "text": "Share with the international community its experiences in rehabilitating and reintegrating former LTTE child soldiers", - "values": [ - "International humanitarian law", - "Rights of the Child" - ] - }, - { - "text": "Put an immediate stop to the excessive and lethal use of force against demonstrators and the killing of protesters, in respect of its international human rights obligations", - "values": [ - "Extrajudicial executions", - "Freedom of opinion and expression", - "Human rights violations by state agents", - "International instruments" - ] - }, - { - "text": "Submit its first report to the Committee against Torture which is overdue since 2002", - "values": [ - "Torture and other CID treatment", - "Treaty bodies" - ] - }, - { - "text": "Consider introducing amendments to the Act on the national mechanism for the prevention of torture within the Ombudsman\u2019s Office, which will allow an additional funding for the mechanism", - "values": [ - "Detention", - "Torture and other CID treatment" - ] - }, - { - "text": "Include human rights education in training programme for the government officials", - "values": [ - "Human rights education and training" - ] - }, - { - "text": "Conduct public awareness campaigns in the media to fight against drug consumption, abusive consumption of alcohol and suicide among young women and girls", - "values": [ - "Right to health", - "Rights of the Child", - "Women's rights" - ] - }, - { - "text": "Expedite the process to finalize the national plan of action for children and adolescents (2015-2019)", - "values": [ - "Rights of the Child" - ] - }, - { - "text": "Incorporate the crime of torture as a specific criminal offence under the Penal Code", - "values": [ - "Torture and other CID treatment" - ] - }, - { - "text": "Sufficiently safeguard in relevant legislation the guarantees provided in the Constitution to effectively protect the rights of national minorities and equal representation of members of national minorities.", - "values": [ - "Minorities" - ] - }, - { - "text": "Continue monitoring and fighting the trafficking of persons and therefore renew the National Plan against Commercial Sexual Exploitation of Children and Adolescents ", - "values": [ - "Labour", - "Rights of the Child", - "Trafficking" - ] - }, - { - "text": "Strengthen the mainstreaming of human rights across the whole spectrum of national public policy", - "values": [ - "General" - ] - }, - { - "text": "Release detained Baha'i leaders and end policies of discrimination against Baha'i and other religious and ethnic minorities", - "values": [ - "Detention", - "Freedom of religion and belief", - "Minorities", - "Racial discrimination" - ] - }, - { - "text": "Stop and investigate military operations targeting civilians and their facilities, especially in Aleppo", - "values": [ - "International humanitarian law" - ] - }, - { - "text": "Take further steps to effectively address hate speech and protect the rights of minorities, including introducing legislation to prohibit discrimination on the grounds of race, ethnicity, sexual orientation and gender identity", - "values": [ - "Minorities", - "Racial discrimination", - "Sexual Orientation and Gender Identity" - ] - }, - { - "text": "Continue efforts to ensure universal access for Tunisian women to sexual and reproductive health-care services, especially during pregnancy", - "values": [ - "Right to health", - "Women's rights" - ] - }, - { - "text": "Amend legislation governing radio, television and communications to fully guarantee the openness, transparency and the diversity of the media in the country ", - "values": [ - "Freedom of the press" - ] - }, - { - "text": "Continue to strengthen Government policies to ensure children are not exploited or trafficked", - "values": [ - "Rights of the Child", - "Trafficking" - ] - }, - { - "text": "Recognize the human right to water and sanitation ", - "values": [ - "Right to water and sanitation" - ] - }, - { - "text": "Introduce positive discrimination measures to promote women\u2019s access to work", - "values": [ - "Labour", - "Women's rights" - ] - }, - { - "text": "Provide effective training to public services personnel in the application of non-discrimination laws and standards in order to combat prejudice and discriminatory behaviour", - "values": [ - "Human rights education and training" - ] - }, - { - "text": "Continue to investigate cases of violence against journalists and to effectively prosecute those responsible for such acts", - "values": [ - "Freedom of the press" - ] - }, - { - "text": "Continue efforts to protect human rights defenders from threats and intimidation to ensure they can perform their functions properly", - "values": [ - "Human rights defenders" - ] - }, - { - "text": "Strengthen the system of protection of the rights of the child by additional measures", - "values": [ - "Rights of the Child" - ] - }, - { - "text": "Adopt as soon as possible legislation criminalising acts of torture and raise awareness of law enforcement officials regarding the absolute prohibition of the use of torture and other inhumane and degrading treatment ", - "values": [ - "Human rights education and training", - "Torture and other CID treatment" - ] - }, - { - "text": "Intensify measures aimed at addressing gender equality gaps in the social, economic and political fields", - "values": [ - "Women's rights" - ] - }, - { - "text": "Strengthen the dialogue and broad cooperation with human rights defenders, and strengthen their protection ", - "values": [ - "Human rights defenders" - ] - }, - { - "text": "Take further concrete and effective steps towards protection and social inclusion for all minority groups", - "values": [ - "Minorities" - ] - }, - { - "text": "Ensure the realization of the rights to food and health of all who live in its territory", - "values": [ - "Right to food", - "Right to health" - ] - }, - { - "text": "Consider making further efforts to train law enforcement officials, judges and police officers in the area of human rights", - "values": [ - "Human rights education and training" - ] - }, - { - "text": "Continue strengthening its system of promotion and protection of human rights in accordance with international human rights instruments, ensure the creation of a national human rights institution that complies with the Paris Principles and continue cooperating with the United Nations system mechanisms ", - "values": [ - "International instruments", - "National Human Rights Institution" - ] - }, - { - "text": "Ensure that all acts of torture are offences under its criminal law and considering acceding to OP-CAT ", - "values": [ - "Detention", - "International instruments", - "Torture and other CID treatment" - ] - }, - { - "text": "Consider the possibility of withdrawing its reservations to article 4 of the International Convention on the Elimination of All Forms of Racial Discrimination.", - "values": [ - "International instruments", - "Racial discrimination" - ] - }, - { - "text": "Increase measures to reform the judicial system, including by expediting efforts to draft new legal provisions to ensure the real independence of the judiciary, in order to protect the rights and freedoms of individuals ", - "values": [ - "Justice" - ] - }, - { - "text": "Continue to work on improving access to education and reducing the disparity between boys and girls in schools, within the framework of its National Education Master Plan 2010-2019 ", - "values": [ - "Right to education" - ] - }, - { - "text": "Consolidate the development of a comprehensive national framework in addressing all forms of violence against women, through the adoption of the Domestic Violence Bill, and harmonize domestic law with the provisions of the Convention on the Elimination of All Forms of Discrimination against Women ", - "values": [ - "International instruments", - "Women's rights" - ] - }, - { - "text": "Strengthen the protection of minorities and ensure an end to impunity in this context", - "values": [ - "Impunity", - "Minorities" - ] - }, - { - "text": "Continue to promote participation of women in social, economic and political life ", - "values": [ - "Women's rights" - ] - }, - { - "text": "Continue to provide assistance to demobilized children, independently of the illegal armed group they may have belonged to, along the lines suggested by the Secretary-General ", - "values": [ - "International humanitarian law", - "Rights of the Child" - ] - }, - { - "text": "Counter discrimination and promote a more inclusive society", - "values": [ - "Other" - ] - }, - { - "text": "Strengthen its legal arsenal by acceding to the Optional Protocol to ICCPR", - "values": [ - "CP rights - general", - "International instruments" - ] - }, - { - "text": "Continue strengthening its proper social policies in order to provide greater well-being and living standard to its people, for which international support and cooperation are fundamental", - "values": [ - "Technical assistance and cooperation" - ] - }, - { - "text": "Guarantee personal autonomy and individual rights, as enshrined in the Constitution, by a prohibition of discrimination based on sexual orientation or gender identity, as well as by allowing a medical gender change to be reflected in a person's identity documents", - "values": [ - "Sexual Orientation and Gender Identity" - ] - }, - { - "text": "Strengthen the human rights training of state security forces and prevent the use of excessive force against civilians", - "values": [ - "Human rights education and training", - "Human rights violations by state agents" - ] - }, - { - "text": "Continue to take the necessary measures to increase transparency in local and national institutions and to optimize the potential of the country", - "values": [ - "Corruption" - ] - }, - { - "text": "Ensure that no disadvantage shall result for citizens from the exercise of their right to identify themselves as belonging to any ethnic minority group", - "values": [ - "Minorities" - ] - }, - { - "text": "Encourage the Government to implement the pledges and commitments undertaken during the second cycle of the universal periodic review in 2012", - "values": [ - "UPR process" - ] - }, - { - "text": "Proceed with the ratification of international human rights treaties and other relevant international instruments to which Sudan is not yet a party ", - "values": [ - "International instruments" - ] - }, - { - "text": "Expedite the ratification of the Council of Europe Convention on Preventing and Combating Violence against Women and Domestic Violence (the Istanbul Convention) ", - "values": [ - "International instruments", - "Rights of the Child", - "Women's rights" - ] - }, - { - "text": "Increase international, regional and bilateral cooperation to prevent human trafficking and prosecute and punish traffickers", - "values": [ - "Trafficking" - ] - }, - { - "text": "Protect the right to freedom of assembly and association of human rights defenders", - "values": [ - "Freedom of association and peaceful assembly", - "Human rights defenders" - ] - }, - { - "text": "Apply a new moratorium on the death penalty with the aim of proceeding towards the final abolition of capital punishment", - "values": [ - "Death penalty" - ] - }, - { - "text": "Ratify the International Covenant on Economic, Social and Cultural Rights and the Optional Protocol thereto, the Optional Protocol to the Convention against Torture and Other Cruel, Inhuman or Degrading Treatment or Punishment, and the International Convention for the Protection of All Persons from Enforced Disappearance", - "values": [ - "Detention", - "ESC rights - general", - "Enforced disappearances", - "International instruments", - "Torture and other CID treatment" - ] - }, - { - "text": "Advance the reform and the transformation process in accordance with the aspirations of the fraternal Algerian people ", - "values": [ - "General" - ] - }, - { - "text": "Implement fully the visible bilingual topography in the Friuli-Venezia Giulia autonomous region populated by the Slovenian minority", - "values": [ - "Minorities" - ] - }, - { - "text": "Proceed to a de jure abolition of the death penalty and ratify the Second Optional Protocol to the International Covenant on Civil and Political Rights, aiming at the abolition of the death penalty", - "values": [ - "Death penalty", - "International instruments" - ] - }, - { - "text": "Develop and implement specific laws and policies to recognize and protect the work of human rights defenders", - "values": [ - "Human rights defenders" - ] - }, - { - "text": "Continue to boost the fulfilment of their climate responsibilities by industrialized countries, which are the main cause for global warming ", - "values": [ - "Environment" - ] - }, - { - "text": "Put in place a national plan to effectively combat the trafficking in human persons, and to cooperate with neighboring countries", - "values": [ - "Trafficking" - ] - }, - { - "text": "Expedite the functionality of its national human rights institution", - "values": [ - "National Human Rights Institution" - ] - }, - { - "text": "Improve the protection of children at national level by ratifying the Convention on the Rights of the Child and its Optional Protocols", - "values": [ - "International humanitarian law", - "International instruments", - "Labour", - "Rights of the Child", - "Trafficking" - ] - }, - { - "text": "Continue forward with the humanitarian efforts undertaken by the Omani Charitable Organization", - "values": [ - "Other" - ] - }, - { - "text": "Speed up the adoption of the family law and take the necessary measures for its enforcement", - "values": [ - "Women's rights" - ] - }, - { - "text": "Sign and ratify the Optional Protocol to the International Covenant on Economic, Social and Cultural Rights, and ratify the Optional Protocol to the Convention on the Elimination of All Forms of Discrimination against Women, the Optional Protocol to the Convention against Torture and Other Cruel, Inhuman or Degrading Treatment or Punishment, the Optional Protocol to the Convention on the Rights of Persons with Disabilities and the International Convention for the Protection of All Persons from Enforced Disappearance ", - "values": [ - "International instruments" - ] - }, - { - "text": "Consider the ratification of ILO Convention No. 169 (1989) on Indigenous and Tribal Peoples in Independent Countries ", - "values": [ - "Indigenous peoples", - "International instruments" - ] - }, - { - "text": "Considering ratifying the International Labour Organization Convention No.189 concerning Decent Work for Domestic Workers", - "values": [ - "International instruments", - "Labour" - ] - }, - { - "text": "Work closely with international human rights bodies particularly with relation to the follow-up of UPR recommendations.", - "values": [ - "UPR process" - ] - }, - { - "text": "Accelerate the process of adoption of the new revised version of the draft law on equal rights and opportunities for women and men ", - "values": [ - "Women's rights" - ] - }, - { - "text": "Step up policies to combat discrimination against women in the labour market, particularly with regard to wage disparities and the concentration of women in low-paid jobs ", - "values": [ - "Women's rights" - ] - }, - { - "text": "Take significant measures to reduce poverty, especially taking into consideration the rights of children", - "values": [ - "Poverty", - "Rights of the Child" - ] - }, - { - "text": "Enhance efforts to improve on access to quality education for all at all levels", - "values": [ - "Right to education" - ] - }, - { - "text": "Ratify CAT and the Optional Protocols thereto", - "values": [ - "Detention", - "International instruments", - "Torture and other CID treatment" - ] - }, - { - "text": "Finalize the ratification of the International Convention on the Elimination of All Forms of Racial Discrimination", - "values": [ - "International instruments", - "Racial discrimination" - ] - }, - { - "text": "Raise at the national level the institutions responsible for the design and implementation of gender policies", - "values": [ - "Women's rights" - ] - }, - { - "text": "Continue further realization of the Action Plan for implementation of the National Strategy for Improving the Position of Women and Promoting Gender Equality ", - "values": [ - "Women's rights" - ] - }, - { - "text": "Become party to the Optional Protocol to ICCPR", - "values": [ - "CP rights - general", - "International instruments" - ] - }, - { - "text": "Guarantee access to justice and the right to reparation for victims in a non-discriminatory way, in conformity with international standards.", - "values": [ - "Justice" - ] - }, - { - "text": "Sao Tome and Principe also reaffirmed its compromise to do whatever it deems as appropriate in a reasonable period of time in order to ratify international human rights treaties mentioned in recommendations 64.1 to 64.14 and in recommendations 65.1, 65.2, 64.4, 65.5, 65.6, 65.6 and 65.9 of the Working Group report, and especially those which it has already signed.", - "values": [ - "International instruments", - "UPR process" - ] - }, - { - "text": "Take effective measures to prevent public officials, when performing their duties, from discriminating against individuals on the basis of religion or belief", - "values": [ - "Freedom of religion and belief", - "Human rights violations by state agents", - "Racial discrimination" - ] - }, - { - "text": "Strengthen the health infrastructure throughout the national territory", - "values": [ - "Right to health" - ] - }, - { - "text": "Undertake the necessary steps to ensure that the national Human Rights Commission operates in accordance with the Paris Principles, particularly in terms of its financial independence and with sufficient human and material resources to enable it to effectively exercise its mandate", - "values": [ - "National Human Rights Institution" - ] - }, - { - "text": "Swiftly ratify the Convention against Torture and Other Cruel, Inhuman or Degrading Treatment or Punishment and adopt all necessary measures to enact it at the national level, in particular with regard to improving living standards in prison and preventing abuse and ill-treatment of detainees", - "values": [ - "Detention", - "International instruments", - "Torture and other CID treatment" - ] - }, - { - "text": "End all discriminatory provisions in Kuwait's housing programme ", - "values": [ - "Right to housing" - ] - }, - { - "text": "Intensify programmes to enhance economic, social and cultural rights", - "values": [ - "ESC rights - general" - ] - }, - { - "text": "Review the reservations to CAT with a view to eliminating them ", - "values": [ - "International instruments", - "Torture and other CID treatment" - ] - }, - { - "text": "Step up efforts to enhance the participation of women in all spheres of socio-economic life, in line with the progress made in education ", - "values": [ - "Women's rights" - ] - }, - { - "text": "Improve the enforcement of the Single-Parent Family Support Act", - "values": [ - "Other" - ] - }, - { - "text": "Give special attention to the rights of women and further promote education and development and their representation in politics and public life.", - "values": [ - "Right to education", - "Women's rights" - ] - }, - { - "text": "Ensure adequate safeguards are in place to ensure protection of human rights defenders, including those working within indigenous communities ", - "values": [ - "Human rights defenders", - "Indigenous peoples" - ] - }, - { - "text": "Strengthen efforts and remain vigilant on the issue of blood feuds", - "values": [ - "Public security" - ] - }, - { - "text": "Continue its efforts to promote sustainable economic and social development and further strengthen the protection of rights of women and children ", - "values": [ - "Development", - "Rights of the Child", - "Women's rights" - ] - }, - { - "text": "Apply the law of 2011 in relation to the protection of children", - "values": [ - "Rights of the Child" - ] - }, - { - "text": "Continue its efforts to end practices of torture and prosecute effectively all the perpetrators ", - "values": [ - "Torture and other CID treatment" - ] - }, - { - "text": "Take new measures to put an end to cultural practices that discriminate against children with disabilities, women, and all persons living with HIV/AIDS", - "values": [ - "Disabilities", - "HIV - Aids", - "Rights of the Child", - "Women's rights" - ] - }, - { - "text": "Formulate more effective development strategies and programmes to reduce poverty and provide employment and income-generating opportunities for the population, in particular youth and people living in rural areas ", - "values": [ - "Poverty" - ] - }, - { - "text": "Pursue the process of adoption of the basic law concerning the elimination of violence against women", - "values": [ - "Women's rights" - ] - }, - { - "text": "Consider improving and promoting education at all levels of public education", - "values": [ - "Right to education" - ] - }, - { - "text": "Take steps to bring the National Human Rights Commission in line with the Paris Principles", - "values": [ - "National Human Rights Institution" - ] - }, - { - "text": "Continue consultations with civil society in the follow-up to this review", - "values": [ - "Civil society", - "UPR process" - ] - }, - { - "text": "Consider enacting the draft law on the Rights of the Child at the earliest convenience ", - "values": [ - "Rights of the Child" - ] - }, - { - "text": "Continue to take further steps to improve the environment for naturalisation as well as ensure the protection of social and political rights of non-citizens", - "values": [ - "Statelessness and the right to nationality" - ] - }, - { - "text": "Continue the moratorium on the death penalty and move towards its elimination", - "values": [ - "Death penalty" - ] - }, - { - "text": "Ratify the treaties already signed, such as the International Convention on the Elimination of All Forms of Racial Discrimination (ICERD), ICESCR, ICCPR, and CAT ", - "values": [ - "CP rights - general", - "ESC rights - general", - "International instruments", - "Racial discrimination", - "Torture and other CID treatment" - ] - }, - { - "text": "Enhance efforts in the provision of adequate housing and address the identified backlog in this regard.", - "values": [ - "Right to housing" - ] - }, - { - "text": "Examine the possibility of promoting the adoption of a code of ethics for investors, including in the tax-free zones, and to address the issue of violence against women", - "values": [ - "Women's rights" - ] - }, - { - "text": "Withdraw the reservation to article 6, paragraph 5 of the International Covenant of Civil and Political Rights and consider further to abolish the death penalty in all cases ", - "values": [ - "Death penalty", - "International instruments" - ] - }, - { - "text": "Join CAT and adapt its national legislation accordingly ", - "values": [ - "International instruments", - "Torture and other CID treatment" - ] - }, - { - "text": "Study the option of extending the competencies of the German Institute for Human Rights to receive complaints ", - "values": [ - "National Human Rights Institution" - ] - }, - { - "text": "Consider the abolition of juvenile execution", - "values": [ - "Death penalty", - "Rights of the Child" - ] - }, - { - "text": "Continue to strengthen policies and programmes to combat domestic and sexual violence against women, including a system of psychological, legal and physical support for the victims", - "values": [ - "Rights of the Child", - "Women's rights" - ] - }, - { - "text": "Guarantee freedom of expression to all media, particularly to journalists", - "values": [ - "Freedom of opinion and expression", - "Freedom of the press" - ] - }, - { - "text": "Take all necessary measures to prevent xenophobic activities of far right groups and to combat prejudices and negative stereotyping, in the context of eliminating all kinds of discrimination against the immigrants ", - "values": [ - "Migrants", - "Racial discrimination" - ] - }, - { - "text": "Continue its efforts to develop its legal and institutional framework with respect to the promotion and protection of human rights ", - "values": [ - "General" - ] - }, - { - "text": "Consider ratifying the core human rights instruments ", - "values": [ - "International instruments" - ] - }, - { - "text": "Intensify its efforts to expand and strengthen the training of law enforcement officials and to enhance public awareness in relation to respect for the human rights and fundamental freedoms of immigrants, refugees and ethnic minorities ", - "values": [ - "Asylum-seekers - refugees", - "Human rights education and training", - "Migrants", - "Minorities" - ] - }, - { - "text": "Ensure that the national Human Rights Commission operates in compliance with the Paris Principles, particularly in terms of its financial independence", - "values": [ - "National Human Rights Institution" - ] - }, - { - "text": "Enforce or institute mechanisms for ensuring that the first grade of school is free for all children", - "values": [ - "Right to education" - ] - }, - { - "text": "Continue strengthening the implementation of the National Human Rights Plan, to provide an adequate response to the challenges due to the insecurity in the country", - "values": [ - "Public security" - ] - }, - { - "text": "Increase law enforcement against trafficking for forced labour and take steps to systematically identify and protect victims of trafficking ", - "values": [ - "Labour", - "Trafficking" - ] - }, - { - "text": "Further intensify efforts to adopt international standards in promoting and protecting human rights in the domestic legislation, including by reviewing the minimum age for criminal responsibility and adopting the juvenile justice standards", - "values": [ - "Justice", - "Rights of the Child" - ] - }, - { - "text": "Continue its efforts towards improving prison conditions in the country", - "values": [ - "Detention" - ] - }, - { - "text": "Take all necessary measures to submit a report for the eighth consultation on the measures taken to implement the Convention against Discrimination in Education ", - "values": [ - "International instruments", - "Rights of the Child" - ] - }, - { - "text": "Enact a moratorium on the death penalty and ratify the Second Optional Protocol to the International Covenant on Civil and Political Rights ", - "values": [ - "Death penalty", - "International instruments" - ] - }, - { - "text": "Adopt concrete measures to prevent discrimination against persons with disabilities in the private sector and in access to services such as health and education", - "values": [ - "Disabilities", - "Right to education", - "Right to health" - ] - }, - { - "text": "Continue its initiative to combat and put an end to the practise of excision.", - "values": [ - "Rights of the Child", - "Torture and other CID treatment", - "Women's rights" - ] - }, - { - "text": "Follow up on and implement the recommendations made by the Committee on the Elimination of Discrimination against Women, in particular those referring to the adoption of legislation and policies to eliminate violence against women, female genital mutilation and child marriage ", - "values": [ - "Rights of the Child", - "Torture and other CID treatment", - "Treaty bodies", - "Women's rights" - ] - }, - { - "text": "Eliminate the catch-all clause \u201cinexcusable error\u201c in article 109 of the Organic Code of the Judiciary and create a legal framework to ensure the full independence and impartiality of the judiciary in compliance with the Basic Principles on the Independence of Judiciary", - "values": [ - "Justice" - ] - }, - { - "text": "Implement the constitutional court ruling on a "right of abode" and prevent deportation of migrant children separating them from their families ", - "values": [ - "Migrants", - "Rights of the Child" - ] - }, - { - "text": "Reform the current Public Order Act to include measures that fully uphold the rights to freedom of expression and peaceful assembly, making it more conducive to political participation by all Zambians and ensure that enforcement of the Act is consistent with Zambia\u2019s human rights obligations, including through training of its security forces", - "values": [ - "Freedom of association and peaceful assembly", - "Freedom of opinion and expression", - "Human rights education and training" - ] - }, - { - "text": "Establish a comprehensive integration strategy for migrants, with specific measures to prevent and eliminate racism, racial discrimination, xenophobia and intolerance against migrants irrespective of their status", - "values": [ - "Migrants", - "Racial discrimination" - ] - }, - { - "text": "Remove the exception relating to marital rape from the definition of rape in section 375 of the Indian Penal Code", - "values": [ - "Women's rights" - ] - }, - { - "text": "Continue strengthening efforts to combat hate crime", - "values": [ - "Racial discrimination" - ] - }, - { - "text": "Amend national legislation that discriminates on the basis of gender, religion, political thought or sexual orientation", - "values": [ - "Freedom of opinion and expression", - "Freedom of religion and belief", - "Racial discrimination", - "Sexual Orientation and Gender Identity", - "Women's rights" - ] - }, - { - "text": "Ensure an effective implementation of the protection mechanism for journalists and human rights defenders with properly managed funds and trained human resources and that Mexico investigates and prosecutes reported threats, attacks and disappearances", - "values": [ - "Enforced disappearances", - "Freedom of the press", - "Human rights defenders" - ] - }, - { - "text": "Introduce school programmes for children with learning or other disabilities ", - "values": [ - "Right to education", - "Rights of the Child" - ] - }, - { - "text": "Conduct investigation of all alleged sexual abuse of children in a childfriendly judicial procedure, with due regard given to protecting the right to privacy of the child ", - "values": [ - "Rights of the Child" - ] - }, - { - "text": "Strengthen efforts towards promotion of gender equality", - "values": [ - "Women's rights" - ] - }, - { - "text": "Facilitate extended access to prisons for NGOs and implement the recommendations contained in the report of the Community Para-Legal Taskforce on Human Rights with regard to persons detained by the security forces.", - "values": [ - "Civil society", - "Detention" - ] - }, - { - "text": "Continue to further promote gender equality in the country, in particular through education and capacity-building activities", - "values": [ - "Women's rights" - ] - }, - { - "text": "Take action to reduce overcrowding in detention facilities and provide separate detention facilities for child offenders", - "values": [ - "Detention", - "Rights of the Child" - ] - }, - { - "text": "Take further steps to tackle impunity, including independent investigations of killings by security forces ", - "values": [ - "Extrajudicial executions", - "Human rights violations by state agents", - "Impunity" - ] - }, - { - "text": "Enact legislation to ensure members of the lesbian, gay bisexual, transgender and intersex (LGBTI) community citizenship rights, consistent with the equal rights enumerated in the Nepali Supreme Court's 2008 decision ", - "values": [ - "Sexual Orientation and Gender Identity" - ] - }, - { - "text": "Promote awareness amongst Internally Displaced Persons IDPs of their human rights and adopt specific measures to identify IDPs in need and provide them assistance ", - "values": [ - "Internally displaced persons" - ] - }, - { - "text": "Continue to expand efforts to register, document and subsequently integrate displaced and internally displaced persons into Montenegrin society ", - "values": [ - "Internally displaced persons" - ] - }, - { - "text": "Enact an NGO law that allows international and national human rights NGOs to operate without interference in line with international standards", - "values": [ - "Civil society", - "Freedom of association and peaceful assembly" - ] - }, - { - "text": "Sign and ratify the Convention against Torture ", - "values": [ - "International instruments", - "Torture and other CID treatment" - ] - }, - { - "text": "Continue efforts to enlarge access to treatment (of HIV/AIDS and malaria) ", - "values": [ - "HIV - Aids", - "Right to health" - ] - }, - { - "text": "Extend a standing invitation to the special procedures of the Human Rights Council", - "values": [ - "Special procedures" - ] - }, - { - "text": "Guarantee that the implementation of the law on compulsory preschool education for all children, adopted by Parliament on 23 September, covers the Roma as well as other minorities", - "values": [ - "Minorities", - "Right to education", - "Rights of the Child" - ] - }, - { - "text": "Take steps to ensure that health providers and medical professionals act in full conformity with the Constitutional Court ruling decriminalizing abortion in certain circumstances ", - "values": [ - "Right to health", - "Women's rights" - ] - }, - { - "text": "Adopt public policies for migrants in conformity with its international obligations", - "values": [ - "Migrants" - ] - }, - { - "text": "Implement measures that guarantee the right to work to its citizens, in particular to youth under the age of 25 and women ", - "values": [ - "Development", - "Women's rights" - ] - }, - { - "text": "Release all those imprisoned for the exercise of their rights or for espousing dissenting views", - "values": [ - "Detention", - "Freedom of opinion and expression" - ] - }, - { - "text": "Costa Rica reiterated its commitment of the current administration with the gender equity policy and the designation of a Minister on the Condition of Women to ensure that the gender policy remains a cross-cutting issue in all political decisions.", - "values": [ - "Women's rights" - ] - }, - { - "text": "Take necessary measures, so as not to allow the lowering of the minimum age of criminal responsibility ", - "values": [ - "Justice", - "Rights of the Child" - ] - }, - { - "text": "Take additional concrete measures to promote and protect the women's rights, namely measures to prevent, to inform and to fight against discrimination and violence against them", - "values": [ - "Women's rights" - ] - }, - { - "text": "Recognize the important work of human rights defenders and ensure their effective protection against threats and violence due to their work", - "values": [ - "Human rights defenders" - ] - }, - { - "text": "Commit as an occupying power to allowing the access for the Special Rapporteur on the situation of human rights in the Palestinian territories occupied since 1967 ", - "values": [ - "Special procedures" - ] - }, - { - "text": "Comply, in law and in practice, with its obligations under the International Covenant on Civil and Political Rights ", - "values": [ - "CP rights - general", - "International instruments" - ] - }, - { - "text": "Ensure effective and monitored enforcement of existing federal and provincial legislation related to violence against women", - "values": [ - "Women's rights" - ] - }, - { - "text": "Ratify the Optional Protocol to the Convention against Torture and Other Cruel, Inhuman or Degrading Treatment or Punishment, the First and Second Optional Protocols to the International Covenant on Civil and Political Rights, the International Convention for the Protection of all Persons against Enforced Disappearances ", - "values": [ - "CP rights - general", - "Death penalty", - "Detention", - "Enforced disappearances", - "International instruments", - "Torture and other CID treatment" - ] - }, - { - "text": "Protect and fulfil migrants' rights, in particular by effectively prosecuting offences committed against them and by improving their living conditions, also through the access to adequate health-care services ", - "values": [ - "Migrants", - "Right to health" - ] - }, - { - "text": "Consider establishing a National Human Rights Institution in compliance with the Paris Principles as a step to strengthen the promotion and protection of human right for all its citizens", - "values": [ - "National Human Rights Institution" - ] - }, - { - "text": "Adopt emergency measures to ensure that the UN Standard Minimum Rules for the Treatment of Prisoners are respected in all prisons of Venezuela ", - "values": [ - "Detention" - ] - }, - { - "text": "Continue its efforts in the social field, in particular for those most in need, especially in the field of nutrition, health and education", - "values": [ - "Right to education", - "Right to food", - "Right to health" - ] - }, - { - "text": "Promote equal employment opportunities for women and all of its national minorities ", - "values": [ - "Minorities", - "Women's rights" - ] - }, - { - "text": "Give priority to implementing the CAVR and CTF recommendations regarding victims' rights to justice truth and reparations ", - "values": [ - "Justice" - ] - }, - { - "text": "Follow up on implementation of recommendations made by the BICI, in order to overcome the effects of unfortunate events ", - "values": [ - "Justice" - ] - }, - { - "text": "Guarantee for each and every person including journalists and defenders of human rights the exercise of freedom of expression, to this end, conduct serious and complete investigations into cases of intimidation and to bring offenders to justice ", - "values": [ - "Freedom of opinion and expression", - "Freedom of the press", - "Human rights defenders" - ] - }, - { - "text": "Implement all necessary measures, including legal measures, so that under no circumstances can women and girls be criminally prosecuted for having solicited or obtained an abortion", - "values": [ - "Women's rights" - ] - }, - { - "text": "Enact national legislation to combat violence against women, including a definition of rape that applies to domestic rape and rape in detention centres", - "values": [ - "Detention", - "Women's rights" - ] - }, - { - "text": "Address the remaining shortcomings in the implementation of the Constitutional Law on the Rights of National Minorities, and undertake measures aimed at ensuring effective participation of national minority members in public life and decision-making processes ", - "values": [ - "Minorities" - ] - }, - { - "text": "(1) Universal coverage by 2010.(2) Establishing 90 telemedicine stations for remote locations.(3) Standardizing the Mandatory Health Plan for children of all social strata as a first step towards compliance with Constitutional Court order No. T-760 of 2008, which requires benefits for children, adults and citizens in general to be standardized.(4) Reducing maternal and infant mortality in accordance with the Millennium Development Goals.(5) Putting the national public health plan and the sexual and reproductive health plan into effect.(6) Improving nutrition levels among girls.(7) Combating HIV/AIDS, malaria and other serious illnesses.", - "values": [ - "HIV - Aids", - "Right to health", - "Rights of the Child", - "Women's rights" - ] - }, - { - "text": "Adopt a comprehensive policy that effectively combats gender-based violence against women and girls", - "values": [ - "Rights of the Child", - "Women's rights" - ] - }, - { - "text": "Take more effective measures to better protect the rights of children, persons with disabilities, migrants and other vulnerable groups", - "values": [ - "Disabilities", - "Migrants", - "Rights of the Child" - ] - }, - { - "text": "Adopt all necessary measures against harmful traditional practices violating the rights of the child", - "values": [ - "Rights of the Child", - "Torture and other CID treatment" - ] - }, - { - "text": "Establish a national strategy for human rights education and training", - "values": [ - "Human rights education and training" - ] - }, - { - "text": "Eliminate negative existing practices against women such as forced marriages, guarantee women access to education, as well as to political, social and economic activities", - "values": [ - "Women's rights" - ] - }, - { - "text": "Take effective measures to eliminate the disparity in health-care provision between rural and urban areas and to improve the quality of health services across the country, including through the adoption of effective legislation and amendments on the national health", - "values": [ - "Right to health" - ] - }, - { - "text": "Develop sustainable economic policies to reduce extreme poverty, food insecurity and unemployment", - "values": [ - "Development", - "Poverty", - "Right to food" - ] - }, - { - "text": "Revise the legislation on the age of criminal responsibility ", - "values": [ - "Justice", - "Rights of the Child" - ] - }, - { - "text": "Amend article 377 of the Penal Code to ensure that only non-consensual sexual relations between persons of the same sex are punishable", - "values": [ - "Sexual Orientation and Gender Identity" - ] - }, - { - "text": "Consider an early ratification of the third OP to CRC on a communication procedure", - "values": [ - "International instruments", - "Rights of the Child" - ] - }, - { - "text": "Continue efforts to eliminate trafficking in children and address the problem of street children and child labour ", - "values": [ - "Rights of the Child", - "Trafficking" - ] - }, - { - "text": "Facilitate unimpeded humanitarian access to civilians in all areas affected by the current civil war", - "values": [ - "Other" - ] - }, - { - "text": "Take more effective steps to ensure that the process of building places of worship for Muslim and other minority groups is facilitated with a view to ensuring freedom of religion for all segments of society", - "values": [ - "Freedom of religion and belief", - "Minorities" - ] - }, - { - "text": "Ensure that the eligibility criteria for indigenous and Afro-Honduran peoples to receive the benefits of the Presidential Programme on Health, Education and Nutrition in a culturally appropriate manner are made fair, non-discriminatory and all-inclusive", - "values": [ - "Indigenous peoples", - "Minorities", - "Right to education", - "Right to food", - "Right to health" - ] - }, - { - "text": "Establish a juvenile justice system that not only strives to punish, but rather to help juveniles to re-integrate into society, taking into account existing international standards in this regard ", - "values": [ - "Justice", - "Rights of the Child" - ] - }, - { - "text": "Intensify its law enforcement efforts against trafficking offenders, incorporate anti-trafficking training into its standard police curriculum, and ensure that legal aid and material assistance are made available ", - "values": [ - "Trafficking" - ] - }, - { - "text": "Immediately cease recruiting child soldiers and ensure their rehabilitation", - "values": [ - "International humanitarian law", - "Rights of the Child" - ] - }, - { - "text": "Adopt a national action plan to promote the rights of persons with disabilities, in line with CRPD, with special attention to the implementation of inclusive education and the promotion of labour market inclusion", - "values": [ - "Disabilities", - "International instruments", - "Labour", - "Right to education" - ] - }, - { - "text": "Ensure school integration of Roma children, children belonging to immigrant families or children living in socio-economically deprived areas, as expressed by CEDAW, and increase Roma women's awareness and access to services and programmes in education, employment and healthcare, as recommended by CERD, CESCR, and the CRC ", - "values": [ - "Migrants", - "Minorities", - "Rights of the Child", - "Treaty bodies", - "Women's rights" - ] - }, - { - "text": "Ratify the 1954 Convention relating to the Status of Stateless Persons and consider the possibility of establishing a procedure for the determination of statelessness in its national legislation ", - "values": [ - "International instruments", - "Statelessness and the right to nationality" - ] - }, - { - "text": "Universal periodic review follow-up: the inter-institutional commission created to prepare the universal periodic review national report would become a permanent body to follow up on the recommendations resulting from the review. The Ombudsman would participate in the commission, and civil society would be consulted. Civil society organizations could even become members of the commission", - "values": [ - "Civil society", - "National Human Rights Institution", - "UPR process" - ] - }, - { - "text": "Adopt legislative, judicial and administrative measures to ensure effective remedy for torture and ill-treatment and strengthen its framework to prosecute such crimes", - "values": [ - "Torture and other CID treatment" - ] - }, - { - "text": "Create a managing board overseeing the allocation of funding to minority councils to prevent any possible conflict of interest", - "values": [ - "Minorities" - ] - }, - { - "text": "Reform the Comprehensive Criminal Code in relation to the legal extension of abortion and to decriminalize abortion in cases of rape, incest and severe fetal impairment", - "values": [ - "Women's rights" - ] - }, - { - "text": "Continue its ongoing efforts in promoting and enhancing women's political participation, including through the implementation of the national coalition this strategy for the period 2012-2017", - "values": [ - "Women's rights" - ] - }, - { - "text": "Ratification of ILO Conventions Nos. 138 concerning Minimum Age for Admission to Employment, 182 concerning the Prohibition and Immediate Action for the Elimination of the Worst Forms of Child Labour, 169 concerning Indigenous and Tribal Peoples in Independent Countries, 155 concerning Occupational Safety and Health and the Working Environment and 170 concerning Safety in the use of Chemicals at Work ", - "values": [ - "Indigenous peoples", - "International instruments", - "Labour", - "Rights of the Child" - ] - }, - { - "text": "Ratify Convention against Torture and Other Cruel, Inhuman or Degrading Treatment or Punishment and the ILO Conventions no. 138 and 182 concerning child labour ", - "values": [ - "International instruments", - "Labour", - "Rights of the Child", - "Torture and other CID treatment" - ] - }, - { - "text": "Ensure that training programmes focusing on human rights are mandatory for all judges, lawyers and police officers.", - "values": [ - "Human rights education and training" - ] - }, - { - "text": "Implement its commitment to repeal Section 151 of the Penal Code to decriminalize same-sex relationships", - "values": [ - "Sexual Orientation and Gender Identity" - ] - }, - { - "text": "Decriminalize consensual sexual relations between adults of the same sex ", - "values": [ - "Sexual Orientation and Gender Identity" - ] - }, - { - "text": "Sign or ratify the regional and international human rights instruments to which it is not yet a party, in particular the Rome Statute of the International Criminal Court and the African Union Convention on the Prevention and Combating of Corruption", - "values": [ - "Corruption", - "International instruments", - "Justice" - ] - }, - { - "text": "To provide training for prison guards and social workers", - "values": [ - "Detention" - ] - }, - { - "text": "Continue measures to ensure the smooth running of the newly established institutions and implementation of legislative acts in the field of human rights", - "values": [ - "General" - ] - }, - { - "text": "Implement fully the recommendations from the TRC ", - "values": [ - "Justice" - ] - }, - { - "text": "Continue its efforts to ensure that the laws protect freedom of expression", - "values": [ - "Freedom of opinion and expression" - ] - }, - { - "text": "Sign and ratify CED at an early stage", - "values": [ - "Enforced disappearances", - "International instruments" - ] - }, - { - "text": "Explore possibilities for further cooperation at the regional and international levels with relevant stakeholders with a view to achieving the Millennium Development Goals related to poverty eradication, nutrition, water and sanitation and environmental sustainability", - "values": [ - "Environment", - "Poverty", - "Right to food", - "Right to water and sanitation" - ] - }, - { - "text": "Enact domestic violence legislation with the aim of eliminating domestic violence, and enact specific legislation criminalizing acts such as female genital mutilation", - "values": [ - "Rights of the Child", - "Torture and other CID treatment", - "Women's rights" - ] - }, - { - "text": "Continue to strengthen efforts to eliminate human trafficking, in accordance with the national plan of action", - "values": [ - "Trafficking" - ] - }, - { - "text": "Continue to eliminate discrimination against children in street situations and rural areas as well as children with disabilities and against other minority groups and take all necessary measures to prevent abuse of their vulnerabilities", - "values": [ - "Disabilities", - "Minorities", - "Poverty", - "Rights of the Child" - ] - }, - { - "text": "Implement the recommendations made by the Special Rapporteur on extrajudicial, summary or arbitrary executions and take steps to verifiably disarm all paramilitary groups. ", - "values": [ - "Extrajudicial executions", - "Special procedures" - ] - }, - { - "text": "Adapt procedural law to the requirements established in the Salduz case, guaranteeing to detained persons access to a lawyer from the moment of the first interrogation ", - "values": [ - "Detention", - "Justice" - ] - }, - { - "text": "Develop a comprehensive national strategy soon on the implementation of the Convention on the Rights of the Child, as highlighted by the Committee on the Rights of the Child ", - "values": [ - "International instruments", - "Rights of the Child", - "Treaty bodies" - ] - }, - { - "text": "Take all necessary measures to implement the Optional Protocol to the Convention on the Rights of the Child, particularly to combat the sale, exploitation, and prostitution of children", - "values": [ - "International instruments", - "Rights of the Child", - "Trafficking" - ] - }, - { - "text": "Continue efforts to promote and protect human rights of ethnic minorities ", - "values": [ - "Minorities" - ] - }, - { - "text": "Accelerate the ongoing legislative reform to combat insecurity and violence against women and children and to consolidate those measures, including through improved statistics or educational programmes in schools regarding human rights and gender equality", - "values": [ - "Human rights education and training", - "Rights of the Child", - "Women's rights" - ] - }, - { - "text": "Study the possibility of ratifying the International Convention on the Protection of the Rights of All Migrant Workers and Members of Their Families", - "values": [ - "International instruments", - "Labour", - "Migrants" - ] - }, - { - "text": "Further develop efforts in the fight against trafficking in persons, including measures to protect victims. Strengthen efforts for the prevention of labour and sexual exploitation ", - "values": [ - "Trafficking" - ] - }, - { - "text": "Include information about Greece being a country of destination and transit for human trafficking in school curriculums at secondary and university levels ", - "values": [ - "Right to education", - "Trafficking" - ] - }, - { - "text": "Investigate all disappearances in the context of the conflict in Casamance, activating reparation mechanisms for the families of the persons disappeared when needed", - "values": [ - "Enforced disappearances" - ] - }, - { - "text": "Maintain and intensify efforts and ensure the full implementation of legislation regarding violence against women and prosecute and sanction those responsible for such acts in line with the recommendation made by the Committee on the Elimination of Discrimination against Women", - "values": [ - "Treaty bodies", - "Women's rights" - ] - }, - { - "text": "Continue with the efforts to combat violence against women through increased institutional coordination permitting the effective punishment of crimes of violence against women and comprehensive assistance to women victims", - "values": [ - "Technical assistance and cooperation", - "Women's rights" - ] - }, - { - "text": "Take the measures necessary to amend the Penal Code in such a way that the use of a child between 16 and 18 for prostitution is prohibited", - "values": [ - "Rights of the Child" - ] - }, - { - "text": "Continue its efforts to reduce and eradicate gender-based violence, ensuring due diligence in the pursuit and prosecution of acts of this nature and providing relevant training to the competent authorities on the protection of, and prevention of violence against, women and girls", - "values": [ - "Human rights education and training", - "Rights of the Child", - "Women's rights" - ] - }, - { - "text": "Intensify efforts aimed at achieving health-related Millennium Development Goals including child health, maternal mortality, HIV-AIDS, malaria and other major diseases and access to safe water ", - "values": [ - "HIV - Aids", - "Right to health", - "Right to water and sanitation", - "Women's rights" - ] - }, - { - "text": "Take an effective stand against hate speech and aggressive attitudes that are becoming increasingly mainstream", - "values": [ - "Racial discrimination" - ] - }, - { - "text": "Adopt a legislation on inheritance and matrimonial regimes", - "values": [ - "Women's rights" - ] - }, - { - "text": "Adopt appropriate measures to ensure that the establishment of so called arrest and search zones is not done on the basis of criteria which might be equivalent to racial, ethnic or religious profiling ", - "values": [ - "Freedom of religion and belief", - "Racial discrimination" - ] - }, - { - "text": "Continue the process of signing and ratifying international instruments, in particular those which were accepted during the previous universal periodic review", - "values": [ - "International instruments", - "UPR process" - ] - }, - { - "text": "Consider the ratification of the international human rights treaties to which it is not yet a party, including OP-CAT and ICCPR-OP 1 and ICCPR-OP 2, aiming at the abolition of the death penalty", - "values": [ - "CP rights - general", - "Death penalty", - "Detention", - "International instruments", - "Torture and other CID treatment" - ] - }, - { - "text": "Continue to invest more in education, improve coverage and quality of education and in particular ensure the right to education for children from poor families, girls, children with disabilities, and others belonging to vulnerable group", - "values": [ - "Disabilities", - "Right to education", - "Rights of the Child", - "Women's rights" - ] - }, - { - "text": "Complete the vetting process of the police officers", - "values": [ - "Public security" - ] - }, - { - "text": "Continue efforts to fight against impunity and human rights violations, with special attention to the rights of indigenous populations, those of African descent, women and HIV-AIDS carriers, as well as to combat all forms of discrimination ", - "values": [ - "HIV - Aids", - "Impunity", - "Indigenous peoples", - "Minorities", - "Women's rights" - ] - }, - { - "text": "Consolidate the positive results in the fields of human development, the ratification of international instruments, trafficking in persons and combatting violence against women", - "values": [ - "Development", - "International instruments", - "Trafficking", - "Women's rights" - ] - }, - { - "text": "Given the deep-rooted traditions of the Albanian society, adopt an appropriate regulation relating to acts of vendetta/blood feud in the family and ensure that the perpetrators of such crimes are punished ", - "values": [ - "Public security" - ] - }, - { - "text": "Investigate, and when appropriate, prosecute perpetrators of serious crimes, including abuses perpetrated by both sides of the post-election violence, on a non-discriminatory basis and regardless of their ethnic, religious, or political affiliations, to promote national reconciliation and the rule of law", - "values": [ - "Freedom of association and peaceful assembly", - "Freedom of religion and belief", - "Justice", - "Minorities", - "Racial discrimination" - ] - }, - { - "text": "Ensure full alignment of its national legislation with all obligations under the Rome Statute of the International Criminal Court (ICC), acceding also to its Agreement on Privileges and Immunities", - "values": [ - "International instruments", - "Justice" - ] - }, - { - "text": "Respect freedom of the media and ensure the safety of journalists", - "values": [ - "Freedom of the press" - ] - }, - { - "text": "Continue to expand its social security coverage", - "values": [ - "ESC rights - general" - ] - }, - { - "text": "Improve access for everyone to quality health services", - "values": [ - "Right to health" - ] - }, - { - "text": "That substantial advances be sought on the realization of the rights of women, particularly towards increasing their share in decision-making positions and in politics in general ", - "values": [ - "Women's rights" - ] - }, - { - "text": "Implement the Council of Europe Convention on Preventing and Combating Violence against Women and Domestic Violence in order to provide improved protection and assistance to women and children that have become victims of violence", - "values": [ - "International instruments", - "Rights of the Child", - "Women's rights" - ] - }, - { - "text": "Observe the Amnesty International 12 points program to prevent torture perpetrated by government agents ", - "values": [ - "Human rights violations by state agents", - "Torture and other CID treatment" - ] - }, - { - "text": "Take necessary steps to establish a national human rights institution.", - "values": [ - "National Human Rights Institution" - ] - }, - { - "text": "Continue to consider acceding to the International Convention on the Protection of the Rights of All Migrant Workers and Members of Their Families and recognize the competence of its committee", - "values": [ - "International instruments", - "Labour", - "Migrants" - ] - }, - { - "text": "In collaboration with the international community, intensify efforts to combat human trafficking", - "values": [ - "Technical assistance and cooperation", - "Trafficking" - ] - }, - { - "text": "Ensure that the standards of education in national minorities' languages as well as teaching of minorities languages are the same as the general standards of education in the country", - "values": [ - "Minorities", - "Right to education" - ] - }, - { - "text": "Recommended that further measures be put in place to ensure that the cultural and traditional beliefs practiced in customary law applied by the Local Courts do not lead to discrimination against women.", - "values": [ - "Women's rights" - ] - }, - { - "text": "Take into account the concerns of Tunisian civil society in the context of the future law on national reconciliation", - "values": [ - "Civil society" - ] - }, - { - "text": "Submit its overdue reports to the International Covenant on Economic, Social and Cultural Rights", - "values": [ - "ESC rights - general", - "International instruments" - ] - }, - { - "text": "Guarantee fully the rights of women by effectively applying the family code, in particular of provisions relating to the minimum marital age, by harmonizing the respective existing regional legislation, by adopting a specific law to eradicate violence against women and by prosecuting and sanctioning those responsible for such acts ", - "values": [ - "Women's rights" - ] - }, - { - "text": "Carry out an awareness-raising campaign to persuade citizens to abandon the female genital mutilation practice ", - "values": [ - "Human rights education and training", - "Rights of the Child", - "Torture and other CID treatment", - "Women's rights" - ] - }, - { - "text": "Continue efforts directed towards protection of the rights of women and children ", - "values": [ - "Rights of the Child", - "Women's rights" - ] - }, - { - "text": "Sign and ratify the International Covenant for the Protection of All Persons from Enforced Disappearance", - "values": [ - "Enforced disappearances", - "International instruments" - ] - }, - { - "text": "Continue its efforts and strong policy to address all forms of violence and discrimination against women, minorities and other vulnerable groups.", - "values": [ - "Minorities", - "Women's rights" - ] - }, - { - "text": "Take all necessary measures to ensure equal access to all rights for the entire population, particularly the population of African descent and indigenous peoples", - "values": [ - "Indigenous peoples", - "Minorities" - ] - }, - { - "text": "Consider without delay to adopt a new legislation on free birth registration", - "values": [ - "Rights of the Child", - "Statelessness and the right to nationality" - ] - }, - { - "text": "Withdraw its reservations to the International Covenant on Civil and Political Rights ", - "values": [ - "CP rights - general", - "International instruments" - ] - }, - { - "text": "Effectively incorporate the provisions of the international human rights instruments into national legislation", - "values": [ - "International instruments" - ] - }, - { - "text": "Continue the fight against impunity, and to provide justice for victims of crimes", - "values": [ - "Impunity" - ] - }, - { - "text": "Take effective measures to ensure the full implementation of the laws against \u201chonour\u201c crimes and rape and raise the legal age of marriage to 18 years in all provinces", - "values": [ - "Rights of the Child", - "Women's rights" - ] - }, - { - "text": "Ratify the Convention on the Rights of Persons with Disabilities (CRPD).", - "values": [ - "Disabilities", - "International instruments" - ] - }, - { - "text": "Allow international media organizations increased access, including through a reduction of prohibitively expensive visa fees", - "values": [ - "Freedom of the press" - ] - }, - { - "text": "Consider conducting an assessment of the effects of air, water and soil pollution on children\u2019s health with a view to designing a well-resourced strategy to address the situation", - "values": [ - "Environment", - "Right to health", - "Rights of the Child" - ] - }, - { - "text": "Continue the de facto moratorium on the death penalty and further take steps towards its legal abolition", - "values": [ - "Death penalty" - ] - }, - { - "text": "Facilitate unfettered access to humanitarian aid and assistance, particularly to the regions and communities most affected by the conflict", - "values": [ - "Other" - ] - }, - { - "text": "Continue to take necessary measures to combat discrimination in the area of education", - "values": [ - "Right to education" - ] - }, - { - "text": "Intensify its efforts to investigate allegations of sexual violence by the security forces and ensure that perpetrators are prosecuted and punished", - "values": [ - "Human rights violations by state agents", - "Women's rights" - ] - }, - { - "text": "Implement the Roma Integration Strategy for 2015-2020, which was adopted during the Hungarian Presidency of the Council of the European Union", - "values": [ - "Minorities" - ] - }, - { - "text": "Step up the implementation of the current national strategies and action plans, with more priorities to address the challenges of poverty reduction, food security, education, health care, gender equality and social welfare", - "values": [ - "ESC rights - general", - "Right to education", - "Right to food", - "Right to health", - "Rights of the Child", - "Women's rights" - ] - }, - { - "text": "Fully guarantee freedom of expression and establish a national observatory for demonstrations, in particular with a view to elections", - "values": [ - "Elections", - "Freedom of opinion and expression" - ] - }, - { - "text": "Ensure freedom of expression in conformity with the principles of the Constitution and adopt additional measures to put this in practice ", - "values": [ - "Freedom of opinion and expression" - ] - }, - { - "text": "Implement ongoing national policies to guarantee quality education to the multi-ethnic people", - "values": [ - "Minorities", - "Right to education" - ] - }, - { - "text": "Include women in high-level decision-making positions ", - "values": [ - "Women's rights" - ] - }, - { - "text": "Consider acceding to the main human rights instruments, including ICCPR, ICESCR and CAT ", - "values": [ - "CP rights - general", - "ESC rights - general", - "International instruments", - "Torture and other CID treatment" - ] - }, - { - "text": "Continue and strengthen efforts to combat poverty with the assistance of the international community ", - "values": [ - "Poverty", - "Technical assistance and cooperation" - ] - }, - { - "text": "Further enhance measures, in cooperation with the international community, to protect and promote the rights of the child, including through strengthening the educational system and the provision of adequate food, housing and health services", - "values": [ - "Right to education", - "Right to food", - "Right to health", - "Right to housing", - "Rights of the Child", - "Technical assistance and cooperation" - ] - }, - { - "text": "Accept the inclusion of a human rights dimension in the mandate of the United Nations Mission for the Referendum in Western Sahara", - "values": [ - "Other" - ] - }, - { - "text": "Accelerate the establishment of the new national human rights institution with a mandate in accordance with the Paris Principles as a matter of priority ", - "values": [ - "National Human Rights Institution" - ] - }, - { - "text": "Seek the requisite technical assistance needed in order to meet its international human rights obligations", - "values": [ - "Technical assistance and cooperation" - ] - }, - { - "text": "Issue a standing invitation to the Special Procedures", - "values": [ - "Special procedures" - ] - }, - { - "text": "Enact the draft bill on Social and Legal Protection against Domestic Violence and develop a national plan to prevent and eradicate violence against women ", - "values": [ - "Rights of the Child", - "Women's rights" - ] - }, - { - "text": "Continue efforts and endeavours to improve overall human rights protection in the country ", - "values": [ - "General" - ] - }, - { - "text": "Take measures to incorporate into its national legislation the crime of enforced disappearance", - "values": [ - "Enforced disappearances" - ] - }, - { - "text": "Protect small-scale farming in the country and implement plans designed to preserve it", - "values": [ - "Development" - ] - }, - { - "text": "Release from custody any individual detained solely on the basis of peaceful expression of political views ", - "values": [ - "Freedom of opinion and expression" - ] - }, - { - "text": "Combat school dropouts and increase the number of students who finish secondary education", - "values": [ - "Right to education" - ] - }, - { - "text": "Continue to take appropriate steps to investigate and provide redress in all cases of violence related to religious belief", - "values": [ - "Freedom of religion and belief" - ] - }, - { - "text": "Take measures to put an end to the presence of child soldiers within the armed forces and armed groups", - "values": [ - "International humanitarian law", - "Rights of the Child" - ] - }, - { - "text": "Intensify efforts to eliminate sexual and gender-based violence and to specifically criminalize female genital mutilation as well as to take all necessary measures to ensure its eradication", - "values": [ - "Rights of the Child", - "Torture and other CID treatment", - "Women's rights" - ] - }, - { - "text": "Implement the recommendation issued in 2010 by the Committee of Ministers of the Council of Europe on measures to combat discrimination based on sexual orientation or gender identity ", - "values": [ - "Sexual Orientation and Gender Identity" - ] - }, - { - "text": "Take all the measures to prevent and combat violence and sexual abuse against women and children, including rape, by promoting an effective mechanism to receive and investigate complaints of sexual violence and offering the victims psychological and medical assistance ", - "values": [ - "Rights of the Child", - "Women's rights" - ] - }, - { - "text": "Consolidate access to information and culture of all people ", - "values": [ - "ESC rights - general" - ] - }, - { - "text": "Victims of domestic violence should have possibility to use appropriate means of redress and access to shelters", - "values": [ - "Rights of the Child", - "Women's rights" - ] - }, - { - "text": "Continue its efforts to integrate into domestic legislation the provisions of the human rights treaties which it has ratified", - "values": [ - "International instruments" - ] - }, - { - "text": "Include human rights education in the curriculum", - "values": [ - "Human rights education and training" - ] - }, - { - "text": "Bring the Official Development Assistance (ODA) up to the internationally committed 0.7 per cent of the Gross Domestic Product (GDP) ", - "values": [ - "Development" - ] - }, - { - "text": "Consider the possibility of ratifying ICRMW and CPED", - "values": [ - "Enforced disappearances", - "International instruments", - "Labour", - "Migrants" - ] - }, - { - "text": "Continue the cooperation with the United Nations and its mechanisms in areas of technical training related to human rights", - "values": [ - "Human rights education and training", - "Technical assistance and cooperation" - ] - }, - { - "text": "Take the appropriate measures to develop the position of the Ombudsman into an independent human rights institution in line with the Paris Principles ", - "values": [ - "National Human Rights Institution" - ] - }, - { - "text": "Conduct more active policy against racial discrimination, including addressing the issue of incorporating an adequate definition of racial discrimination in national legislation", - "values": [ - "Racial discrimination" - ] - }, - { - "text": "Introduce the principle of anti-discrimination into school curricula and teaching practices at all levels of its education system ", - "values": [ - "Human rights education and training" - ] - }, - { - "text": "Continue to take measures to combat trafficking of persons", - "values": [ - "Trafficking" - ] - }, - { - "text": "Develop effective measures to overcome continuing discriminatory patterns against ethnic minorities and lesbian, gay, bisexual and transgender persons through education and training", - "values": [ - "Human rights education and training", - "Minorities", - "Racial discrimination", - "Sexual Orientation and Gender Identity" - ] - }, - { - "text": "Either strengthen the existing National Child Rights Committee or establish a national human rights institution according to the Paris Principles, and ensure that the National Child Rights Committee or the new national institution is provided with sufficient human and financial resources ", - "values": [ - "National Human Rights Institution", - "Rights of the Child" - ] - }, - { - "text": "Ensure that all those responsible for human rights violations are brought to justice, in accordance with international standards, in particular the right to a fair trial", - "values": [ - "Justice" - ] - }, - { - "text": "Establish an independent oversight body to investigate complaints of police abuse and human rights violations ", - "values": [ - "Human rights violations by state agents" - ] - }, - { - "text": "Continue to implement the national strategic plan for education, with special emphasis on the right to education of vulnerable groups including children living in rural areas, persons with disabilities, nomads and internally displaced persons", - "values": [ - "Internally displaced persons", - "Right to education", - "Rights of the Child" - ] - }, - { - "text": "Allow for a prompt, impartial and independent investigation into all human rights abuses and grant the OHCHR immediate access to conduct investigations", - "values": [ - "Technical assistance and cooperation" - ] - }, - { - "text": "Continue and intensify efforts to reduce poverty and social inequality.", - "values": [ - "Poverty" - ] - }, - { - "text": "Concentrate on the implementation of the international human rights treaties that have been ratified by the country ", - "values": [ - "International instruments" - ] - }, - { - "text": "Come up with a comprehensive national strategy to prevent and combat domestic violence, and conduct awareness campaigns at the national level", - "values": [ - "Human rights education and training", - "Rights of the Child", - "Women's rights" - ] - }, - { - "text": "Consider the development of a system of reception centres where asylum seekers with serious medical conditions and disabilities can benefit from the presence of dedicated expert staff", - "values": [ - "Asylum-seekers - refugees", - "Disabilities" - ] - }, - { - "text": "Legislate for the prohibition of female genital mutilation", - "values": [ - "Rights of the Child", - "Torture and other CID treatment", - "Women's rights" - ] - }, - { - "text": "Speed up through executive action the processes of demarcation and protection of the lands of indigenous peoples and protect their respective rights", - "values": [ - "Indigenous peoples", - "Right to land" - ] - }, - { - "text": "Effectively guarantee the exercise of freedom of expression, association and peaceful assembly and the right to participate in public life and politics, in line with the obligations set forth in the Covenant on Civil and Political Rights", - "values": [ - "Freedom of association and peaceful assembly", - "Freedom of opinion and expression", - "International instruments" - ] - }, - { - "text": "Consider becoming a party to the International Convention on the Rights of Migrant Workers and Members of Their Families ", - "values": [ - "International instruments", - "Labour", - "Migrants" - ] - }, - { - "text": "Malaysia is committed to maintain effective mechanisms to ensure an independent investigation of alleged misconduct by government officials, including law enforcement personnel.", - "values": [ - "Human rights violations by state agents" - ] - }, - { - "text": "Continue and strengthen the activities of the Extraordinary Chambers in the area of the right to truth and reconciliation ", - "values": [ - "Justice" - ] - }, - { - "text": "Consider ratifying the Optional Protocol to the Convention against Torture and Other Cruel, Inhuman or Degrading Treatment or Punishment as well as other remaining key international human rights documents", - "values": [ - "Detention", - "International instruments", - "Torture and other CID treatment" - ] - }, - { - "text": "Consider acceding to the Rome Statute of the ICC and accelerate the ratification of the human rights Covenants on human rights", - "values": [ - "International instruments", - "Justice" - ] - }, - { - "text": "Withdraw the reservation to CEDAW", - "values": [ - "Women's rights" - ] - }, - { - "text": "Further develop policies to ensure the full enjoyment of rights of persons with disabilities, particularly in terms of inclusive education and accessibility", - "values": [ - "Disabilities", - "Right to education" - ] - }, - { - "text": "Intensify measures to tackle extremism and discrimination against religious and ethnic minority groups, including the Roma people ", - "values": [ - "Freedom of religion and belief", - "Minorities", - "Racial discrimination" - ] - }, - { - "text": "Adopt measures to promote tolerance towards homosexuality, which would also facilitate more effective educational programmes for HIV-AIDS prevention", - "values": [ - "HIV - Aids", - "Sexual Orientation and Gender Identity" - ] - }, - { - "text": "Ratify the Convention on the Elimination of All forms of Discrimination against Women", - "values": [ - "International instruments", - "Women's rights" - ] - }, - { - "text": "Remain committed to negotiations to resolve pending areas of disagreement ", - "values": [ - "Other" - ] - }, - { - "text": "Continue strengthening the application of the Growth and Transformation Plan in the fight against poverty, to which it has assigned auspiciously 69 per cent of the budget ", - "values": [ - "Poverty" - ] - }, - { - "text": "Take measures to guarantee effective access to justice and protection for women victims of gender based violence", - "values": [ - "Women's rights" - ] - }, - { - "text": "Continue with measures aimed at ensuring that all births of children are registered, particularly by reviewing the legislation to ensure that all children born in the territory can acquire the nationality, and avoid cases of statelessness ", - "values": [ - "Rights of the Child", - "Statelessness and the right to nationality" - ] - }, - { - "text": "Adopt laws banning child labour and define the minimum age for criminal responsibility, in conformity with the provisions of the international norms related to human rights", - "values": [ - "International instruments", - "Justice", - "Labour", - "Rights of the Child" - ] - }, - { - "text": "Improve legislation, policies and guidelines regarding human rights education and training for the legal and justice system", - "values": [ - "Human rights education and training" - ] - }, - { - "text": "Provide the Office of the Human Rights Defender with the human and financial resources necessary to complete its tasks as a national preventive mechanism, and strengthen the guarantees against the ill treatment of imprisoned persons so that all those in the police force will receive a strong message emphasizing that ill treatment is illegal ", - "values": [ - "Detention", - "Torture and other CID treatment" - ] - }, - { - "text": "Intensify its efforts to fight against all forms of racism, racial discrimination, xenophobia and related intolerance, including Islamophobia ", - "values": [ - "Freedom of religion and belief", - "Racial discrimination" - ] - }, - { - "text": "Establish a machinery to compensate victims of torture.", - "values": [ - "Torture and other CID treatment" - ] - }, - { - "text": "Share with other countries, through the UPR process, its experiences and best practices gained from creating a gender-equal society", - "values": [ - "UPR process", - "Women's rights" - ] - }, - { - "text": "Continue to improve conditions of detention, including through appropriate assistance from regional and international partners", - "values": [ - "Detention", - "Technical assistance and cooperation" - ] - }, - { - "text": "End all forms of racial discrimination in terms of housing, education, health care, social security and labor ", - "values": [ - "Racial discrimination" - ] - }, - { - "text": "Strengthen the independence of the judiciary by separating it from the executive powers, adopt a Criminal Procedure Code in compliance with international standards and address prison overcrowding and the overuse of pretrial detention", - "values": [ - "Detention", - "Justice" - ] - }, - { - "text": "Intensify measures to effectively combat child sexual abuse and exploitation", - "values": [ - "Rights of the Child" - ] - }, - { - "text": "Pursue its efforts in the area of economic, social and cultural rights, particularly in the area of the right to education", - "values": [ - "ESC rights - general", - "Right to education" - ] - }, - { - "text": "Continue efforts to improve gender equality and strengthen women's status in society", - "values": [ - "Women's rights" - ] - }, - { - "text": "Develop an investigation protocol with gender and ethnicity perspectives that can be used by the offices of Attorneys General of States in all cases where women human rights defenders report threats or attacks", - "values": [ - "Human rights defenders", - "Minorities", - "Women's rights" - ] - }, - { - "text": "Reinforce the mandates of the National Council to Fight Corruption", - "values": [ - "Corruption" - ] - }, - { - "text": "Seek technical expertise and work with OHCHR to prepare a Common Core Document that would alleviate its treaty-reporting burden ", - "values": [ - "Technical assistance and cooperation", - "Treaty bodies" - ] - }, - { - "text": "Implement the recommendations from the Special Rapporteur on the rights of indigenous peoples", - "values": [ - "Indigenous peoples", - "Special procedures" - ] - }, - { - "text": "Continue the process of ratifying the international human rights treaties to which is not yet a party", - "values": [ - "International instruments" - ] - }, - { - "text": "Continue to develop its legal and institutional framework with respect to the promotion and protection of human rights", - "values": [ - "General" - ] - }, - { - "text": "Continue to advance its poverty reduction strategy by actively implementing its second strategy framework for Growth and poverty (CSLPII), promoting its social and economic development which would enable the country to better protect and promote the various rights of its people ", - "values": [ - "Development", - "Poverty" - ] - }, - { - "text": "Increase its efforts to further strengthen the national mechanism for the advancement of women and to provide such mechanism with adequate resources", - "values": [ - "Women's rights" - ] - }, - { - "text": "Adopt measures to ensure the sustainability of efforts to fight corruption, such as legal and public policy reforms, to improve public confidence in the justice system and to increase its independence", - "values": [ - "Corruption", - "Justice" - ] - }, - { - "text": "Accede to CEDAW", - "values": [ - "International instruments", - "Women's rights" - ] - }, - { - "text": "Consider legally abolishing the death penalty as soon as possible.", - "values": [ - "Death penalty" - ] - }, - { - "text": "Continue its efforts to alleviate poverty and promote sustainable economic and social development so as to allow its people to better enjoy all human rights", - "values": [ - "Development", - "Poverty" - ] - }, - { - "text": "Implement, as soon as possible, the obligations under the Optional Protocol to the United Nations Convention against Torture and establish an independent and effective national protection mechanism that has the necessary resources", - "values": [ - "Detention", - "International instruments", - "Torture and other CID treatment" - ] - }, - { - "text": "Intensify its efforts to combat human trafficking ", - "values": [ - "Trafficking" - ] - }, - { - "text": "Spare no effort to investigate allegations of violence and killings committed by the police and also ensure that the State, at all levels, fully respects international human rights standards", - "values": [ - "Extrajudicial executions", - "International instruments" - ] - }, - { - "text": "Intensify its efforts to fight hate crimes and encourage senior State officials to take a clear position against these crimes, and publicly condemn racist acts of violence and other offences motivated by hatred ", - "values": [ - "Racial discrimination" - ] - }, - { - "text": "Ratify the main international human rights instruments, particularly ICCPR and ICESCR, the International Convention on the Elimination of All Forms of Racial Discrimination, the Convention against Torture and the Optional Protocol thereto, the Convention on the Rights of Persons with Disabilities, the International Convention for the Protection of All Persons from Enforced Disappearance, the Optional Protocols to CEDAW and the Convention on the Rights of the Child", - "values": [ - "International instruments" - ] - }, - { - "text": "Prohibit all forms of corporal punishment", - "values": [ - "Torture and other CID treatment" - ] - }, - { - "text": "Protect the human rights of migrants, regardless of their migratory status ", - "values": [ - "Migrants" - ] - }, - { - "text": "Continue to prioritize poverty eradication during the implementation of the National Development Program thus laying a more solid material foundation for its people to better enjoy their human rights", - "values": [ - "Poverty" - ] - }, - { - "text": "Cease immediately all bombings and indiscriminate attacks with any sort of ammunition, against civilians and civilian assets such as hospitals and schools", - "values": [ - "International humanitarian law" - ] - }, - { - "text": "Eliminate discrimination against Roma and other minorities, including Muslims in law and practice, and protect their rights", - "values": [ - "Freedom of religion and belief", - "Minorities", - "Racial discrimination" - ] - }, - { - "text": "Adopt legislative measures to criminalize torture, violence against women and trafficking in persons in line with international standards", - "values": [ - "Torture and other CID treatment", - "Trafficking", - "Women's rights" - ] - }, - { - "text": "Continue with efforts to raise the living standards of persons with disabilities", - "values": [ - "Disabilities" - ] - }, - { - "text": "Set up a comprehensive system to protect children's rights and develop a national strategy to prevent and address all forms of violence", - "values": [ - "Rights of the Child" - ] - }, - { - "text": "Increase awareness-raising programmes and campaigns to promote tolerance and respect for cultural diversity in schools as well as in society ", - "values": [ - "Human rights education and training" - ] - }, - { - "text": "Submit its initial report to the Committee against Torture without further delay", - "values": [ - "Torture and other CID treatment", - "Treaty bodies" - ] - }, - { - "text": "Pursue the rehabilitation of the National Human Rights Commission", - "values": [ - "National Human Rights Institution" - ] - }, - { - "text": "Continue cooperating with the international community to alleviate the effects of the crisis on Syrian citizens", - "values": [ - "Technical assistance and cooperation" - ] - }, - { - "text": "Give appropriate resourcing to implement its Disability Inclusive Development Policy", - "values": [ - "Disabilities" - ] - }, - { - "text": "Take appropriate measures to implement its commitments referred to in paragraphs 119 and 120 of the national report, in particular ratifying various international instruments.", - "values": [ - "International instruments" - ] - }, - { - "text": "Reinforce advocacy and information measures through specific human rights education and training programmes.", - "values": [ - "Human rights education and training" - ] - }, - { - "text": "Create, as soon as possible, an ombudsman in accordance with the Paris Principles", - "values": [ - "National Human Rights Institution" - ] - }, - { - "text": "Ensure the protection of the rights of defenders, journalists and members of the political opposition", - "values": [ - "Freedom of the press", - "Human rights defenders" - ] - }, - { - "text": "Fulfil its promises of a more open society through the implementation of the recommendations it endorsed in 2010", - "values": [ - "UPR process" - ] - }, - { - "text": "Adopt a national legal framework for the rights of people with disabilities regarding accessibility, care, education and employment", - "values": [ - "Disabilities", - "Labour", - "Right to education", - "Right to health" - ] - }, - { - "text": "Further pursue its excellent social protection programs, which now benefit over 25% of families in the country ", - "values": [ - "ESC rights - general" - ] - }, - { - "text": "Continue to strengthen its efforts to provide better legal protection for vulnerable groups, especially women", - "values": [ - "Women's rights" - ] - }, - { - "text": "Continue to actively implement all these adopted measures, to safeguard women empowerment and promote gender equality", - "values": [ - "Women's rights" - ] - }, - { - "text": "Accelerate the ratification process of the Convention against Torture and the International Convention on the Protection of the Rights of All Migrant Workers and Members of Their Families", - "values": [ - "International instruments", - "Labour", - "Migrants", - "Torture and other CID treatment" - ] - }, - { - "text": "Ratify all core international human rights treaties, most notably the International Covenant on Civil and Political Rights", - "values": [ - "CP rights - general", - "International instruments" - ] - }, - { - "text": "Continue its collaboration with the United Nations to improve the submission of human rights reports", - "values": [ - "Treaty bodies", - "UPR process" - ] - }, - { - "text": "Establish an immediate moratorium on the death penalty with a view to its permanent abolition and ratify the Second Optional Protocol to the International Covenant on Civil and Political Rights, aiming at the abolition of the death penalty", - "values": [ - "Death penalty", - "International instruments" - ] - }, - { - "text": "Guarantee the independence of the Extraordinary Chambers and allow them to prosecute and try offenders other than those already indicted ", - "values": [ - "Justice" - ] - }, - { - "text": "Conduct a standing information campaign to disseminate international obligations under international human rights law and international humanitarian law, and to intensify the training of law enforcement officials to ensure that they are aware of their obligation to apply in practice the principles of those international instruments as acknowledged in the national report, with the assistance of OHCHR", - "values": [ - "Human rights education and training", - "International humanitarian law", - "International instruments", - "Technical assistance and cooperation" - ] - }, - { - "text": "Set up a task force within the Ministry of Justice with international participation to combat arbitrary detentions and to seek urgent ways of improving the situation of prisoners.", - "values": [ - "Detention" - ] - }, - { - "text": "Put an end, by royal decree, to the system of guardianship of adult women", - "values": [ - "Women's rights" - ] - }, - { - "text": "Amend the criminal code to address hate speech and incitement to violence and discrimination in the context of the media and election campaigning ", - "values": [ - "Elections", - "Freedom of the press" - ] - }, - { - "text": "Step up efforts to stop and to prevent that parties to the conflict continue to recruit children.", - "values": [ - "Rights of the Child" - ] - }, - { - "text": "Continue to make efforts to abolish the death penalty", - "values": [ - "Death penalty" - ] - }, - { - "text": "Complete the process of full alignment of its national legislation with all obligations under the Rome Statute of the International Criminal Court and accede to the Agreement on Privileges and Immunities of the Court", - "values": [ - "International instruments", - "Justice" - ] - }, - { - "text": "Ratify the International Convention for the Protection of All Persons from Enforced Disappearance, the Rome Statute and the Optional Protocol to the Convention against Torture and Other Cruel, Inhuman or Degrading Treatment or Punishment ", - "values": [ - "Detention", - "Enforced disappearances", - "International instruments", - "Justice", - "Torture and other CID treatment" - ] - }, - { - "text": "Adequately resource the implementation of the Fourth National Plan of Action on Gender Equality and promptly adopt the draft law on prevention of domestic violence", - "values": [ - "Rights of the Child", - "Women's rights" - ] - }, - { - "text": "Strengthen efforts to reduce the incidence of maternal mortality", - "values": [ - "Right to health", - "Women's rights" - ] - }, - { - "text": "Accelerate the issuance of the Transitional Justice Act and the National Reconciliation Act ", - "values": [ - "Justice" - ] - }, - { - "text": "Consider elaborating norms relating to persons with disabilities ", - "values": [ - "Disabilities" - ] - }, - { - "text": "Solomon Islands announced that it was extending an open invitation to all mandate holders of the United Nations special procedures to visit the country.", - "values": [ - "Special procedures" - ] - }, - { - "text": "Improve its overall cooperation with United Nations human rights mechanisms, in particular all mechanisms of the Council and the treaty bodies", - "values": [ - "Special procedures", - "Treaty bodies", - "UPR process" - ] - }, - { - "text": "Ensure that the legal framework on religious societies continues to be applied in an equal and transparent manner", - "values": [ - "Freedom of religion and belief" - ] - }, - { - "text": "Civil society be actively involved in the further universal periodic review process of Canada, in a meaningful and participatory manner. ", - "values": [ - "Civil society", - "UPR process" - ] - }, - { - "text": "Prevent discrimination of social minorities, such as Roma people and LGBT persons and adopt a comprehensive anti-discrimination law", - "values": [ - "Minorities", - "Racial discrimination", - "Sexual Orientation and Gender Identity" - ] - }, - { - "text": "Amend legislation in order to combat discrimination and hostility toward LGBT groups", - "values": [ - "Sexual Orientation and Gender Identity" - ] - }, - { - "text": "Track and report the investigation and prosecution of security forces that commit human rights violations and abuses", - "values": [ - "Human rights violations by state agents" - ] - }, - { - "text": "Strengthen legislations to combat sexual offences against minors ", - "values": [ - "Rights of the Child" - ] - }, - { - "text": "Seek effective ways of support and coordination with the European Union in order to deal with migrants within the international human rights law framework, regardless of their migrant status", - "values": [ - "International instruments", - "Migrants" - ] - }, - { - "text": "End prosecutions under articles 106 and 110 of the Criminal Code for exercising freedom of expression and peaceful assembly", - "values": [ - "Freedom of association and peaceful assembly", - "Freedom of opinion and expression" - ] - }, - { - "text": "Reconsider being party to the International Convention on the Protection of the Rights of All Migrant Workers and Members of Their Families ", - "values": [ - "International instruments", - "Labour", - "Migrants" - ] - }, - { - "text": "Costa Rica has expressed its commitment to ratify the UNESCO Convention on the Protection and Promotion of Diversity in the Cultural Expressions and is planning a forum to follow up on the Durban review conference, as well as to comply with all international obligations in this regard.", - "values": [ - "International instruments" - ] - }, - { - "text": "Continue efforts, with the support of the international community, to ensure timely reporting to treaty bodies ", - "values": [ - "Technical assistance and cooperation", - "Treaty bodies" - ] - }, - { - "text": "Adopt a National Action Plan to implement the Guiding Principles on Business and Human Rights, as recommended by the Working Group on Business and Human Rights", - "values": [ - "Business and human rights" - ] - }, - { - "text": "Eliminate sterilization as a necessary criterion for the recognition of the gender of transgender persons", - "values": [ - "Sexual Orientation and Gender Identity" - ] - }, - { - "text": "Approve the request for a visit by the Special Rapporteur on freedom of religion or belief ", - "values": [ - "Freedom of religion and belief", - "Special procedures" - ] - }, - { - "text": "Adopt legislation to prohibit and combat domestic violence", - "values": [ - "Rights of the Child", - "Women's rights" - ] - }, - { - "text": "Ratify the International Convention on the Protection of the Rights of All Migrants Workers and Members of Their Families ", - "values": [ - "International instruments", - "Labour", - "Migrants" - ] - }, - { - "text": "Respond positively to the pending visit requests by the special procedures mandate holders", - "values": [ - "Special procedures" - ] - }, - { - "text": "Consider ratifying the conventions on refugees and stateless persons and passing national legislation on refugees and stateless persons ", - "values": [ - "Asylum-seekers - refugees", - "International instruments", - "Statelessness and the right to nationality" - ] - }, - { - "text": "Put an end to arbitrary detention, improve detention conditions and amend the Penal Code", - "values": [ - "Detention" - ] - }, - { - "text": "Ratify the Optional Protocol to the Convention on the Elimination of All Forms of Discrimination against Women (CEDAW)", - "values": [ - "International instruments", - "Women's rights" - ] - }, - { - "text": "Establish a thorough, transparent and impartial investigation into Sombath Somphone's disappearance, as recommended by the United Nations Special Rapporteurs", - "values": [ - "Enforced disappearances", - "Special procedures" - ] - }, - { - "text": "Continue the reforms to improve policies and programmes towards promotion and protection of human rights", - "values": [ - "General" - ] - }, - { - "text": "Take proactive and sustained measures to eliminate stereotypical attitudes about the roles and responsibilities of women and men, including through awareness-raising and educational campaigns directed at both women and men and the media", - "values": [ - "Human rights education and training", - "Women's rights" - ] - }, - { - "text": "Ensure full gender equality in marriage and family relations, including by expressly prohibiting gender-based discrimination and repealing remaining discriminatory provisions", - "values": [ - "Women's rights" - ] - }, - { - "text": "Further intensify its engagement with the international community, especially with developing countries, to exchange and share its best practices relating to the efforts on strengthening the rule of law and socio-economic development", - "values": [ - "Development", - "Justice" - ] - }, - { - "text": "Take measures to protect human rights defenders from prosecution and ensure a safe environment for their activities.", - "values": [ - "Human rights defenders" - ] - }, - { - "text": "Sustain efforts for children to have better access to education at various levels", - "values": [ - "Right to education" - ] - }, - { - "text": "Set up permanent and sustainable programmes of education and training on human rights for public servants, in particular members of the armed forces and the judicial sector, with a focus on protecting vulnerable groups", - "values": [ - "Human rights education and training", - "International humanitarian law" - ] - }, - { - "text": "Consider ratifying the optional protocols to the Convention on the Rights of the Child, which, inter alia, guard against the involvement of children in armed conflict (OP-CRC-AC) and guard against the sale of children, child prostitution and child pornography (OP-CRC-SC), which Fiji signed in 2005", - "values": [ - "International humanitarian law", - "International instruments", - "Rights of the Child", - "Trafficking" - ] - }, - { - "text": "Ensure the implementation of the National Strategy on Equality and Gender", - "values": [ - "Women's rights" - ] - }, - { - "text": "Implement more effective monitoring of alleged cases of discrimination, ethnic and national hostilities, and racial or ethnic hatred ", - "values": [ - "Racial discrimination" - ] - }, - { - "text": "Conduct a systematic evaluation of the merits of establishing a national human rights institution.", - "values": [ - "National Human Rights Institution" - ] - }, - { - "text": "Eliminate all legislative provisions that perpetuate discrimination against women and adopt a comprehensive law on violence against women", - "values": [ - "Women's rights" - ] - }, - { - "text": "Prioritize the enjoyment of the right to education all over the country", - "values": [ - "Right to education" - ] - }, - { - "text": "Continue efforts to ensure the safety, security and dignity of migrant workers and to protect their interests through taking the requisite institutional and legislative measures ", - "values": [ - "Labour", - "Migrants" - ] - }, - { - "text": "Ratify the International Convention for the Protection of All Persons from Enforced Disappearance (CED), OP-CAT, OP-CRC-AC and OP-CRC- SC", - "values": [ - "International instruments" - ] - }, - { - "text": "Identify lessons learned and develop a new action plan to reduce the incidence of the heinous practice of female genital mutilation/cutting", - "values": [ - "Rights of the Child", - "Torture and other CID treatment", - "Women's rights" - ] - }, - { - "text": "Undertake effective measures to fight the widespread impunity and ensure that the reform of the military criminal justice does not lead to impunity in cases of human rights violations committed by security forces ", - "values": [ - "Human rights violations by state agents", - "Impunity", - "Justice" - ] - }, - { - "text": "Take all measures necessary to prevent violence against children in all its forms and to put mechanisms in place to protect especially girls who are more vulnerable to sexual abuse and violence", - "values": [ - "Rights of the Child", - "Women's rights" - ] - }, - { - "text": "Continue measures for the promotion and protection of the rights of peasants and other persons working in rural areas", - "values": [ - "Other" - ] - }, - { - "text": "Consider favourably the request for a visit by the Special Rapporteur on extrajudicial, summary or arbitrary executions ", - "values": [ - "Extrajudicial executions", - "Special procedures" - ] - }, - { - "text": "Eliminate the death penalty from its legislation and alternatively, establish a moratorium on the death penalty", - "values": [ - "Death penalty" - ] - }, - { - "text": "Consider the possibility to establish a moratorium on the application of the death penalty, and commute death sentences to prison sentences", - "values": [ - "Death penalty" - ] - }, - { - "text": "Increase its national budget in the areas of health to ensure that its health facilities meet the Ministry of Health's guidelines and requirements with regard to equipment and services", - "values": [ - "Right to health" - ] - }, - { - "text": "Take all necessary measures to enhance the effectiveness of the Office of the Ombudsman and include, inter alia, effective monitoring and promotion of the rights of persons belonging to national minorities.", - "values": [ - "Minorities", - "National Human Rights Institution" - ] - }, - { - "text": "Continue efforts to promote the right to education by combating the phenomenon of children dropping out of school", - "values": [ - "Right to education", - "Rights of the Child" - ] - }, - { - "text": "Strengthen cooperation with the special procedures of the Council.", - "values": [ - "Special procedures" - ] - }, - { - "text": "Continue strengthening the judicial system to ensure its independence", - "values": [ - "Justice" - ] - }, - { - "text": "Allow access to independent observers to centres of detention of migrants which are outside of the Australian territory", - "values": [ - "Detention", - "Migrants" - ] - }, - { - "text": "Make every effort to respect the dignity of human life, especially of women and children who are most vulnerable to gross abuses", - "values": [ - "Rights of the Child", - "Women's rights" - ] - }, - { - "text": "Fully incorporate the principles and provisions of CRC into the domestic legal system, especially those regarding corporal punishment ", - "values": [ - "International instruments", - "Rights of the Child", - "Torture and other CID treatment" - ] - }, - { - "text": "Ensure that the right to freedom of expression is fully respected and its exercise facilitated, including with respect to the drafting and adopting of the new Constitution", - "values": [ - "Freedom of opinion and expression" - ] - }, - { - "text": "Set up a system for receiving and investigating torture or ill-treatment complaints and suspend from duty suspects of torture, as well as amend its legislation and the definition of torture at the State level in accordance with the United Nations Convention against Torture", - "values": [ - "International instruments", - "Torture and other CID treatment" - ] - }, - { - "text": "Continue making efforts, with the support of the international community, to ensure that unilateral coercive measures imposed on the country are lifted", - "values": [ - "Technical assistance and cooperation" - ] - }, - { - "text": "Consider amending the Zimbabwe Human Rights Commission legislation in order to bring it in line with the Paris Principles ", - "values": [ - "National Human Rights Institution" - ] - }, - { - "text": "Promote initiatives to protect women from violence, such as the national network on violence against women, and the national observatory against sexual and gender-based violence, and elaborate the national plan to combat all forms of violence, including domestic violence", - "values": [ - "Women's rights" - ] - }, - { - "text": "Sri Lanka will take measures for the effective implementation of the 13th Amendment to the Constitution.", - "values": [ - "Minorities" - ] - }, - { - "text": "Continue to address homophobia and discrimination through better education programmes and ensure that lesbian, gay, bisexual, transgender and intersex people are able to exercise their rights to freedom of expression and assembly", - "values": [ - "Freedom of association and peaceful assembly", - "Freedom of opinion and expression", - "Human rights education and training", - "Sexual Orientation and Gender Identity" - ] - }, - { - "text": "Develop the industrial and social infrastructure ", - "values": [ - "Development" - ] - }, - { - "text": "Continue to strive towards the consolidation of international efforts in the combating of trafficking in human beings, including through educational courses based at the Minsk Centre", - "values": [ - "Trafficking" - ] - }, - { - "text": "Continue implementation of the comprehensive judicial reform which ensures that the judicial authorities exercise their powers in accordance with the law", - "values": [ - "Justice" - ] - }, - { - "text": "By implementing its national poverty policy and programme, redouble efforts to reduce poverty and improve the lives of vulnerable groups of the population", - "values": [ - "Poverty" - ] - }, - { - "text": "Intensify efforts, including by seeking technical assistance wherever required, to meet its human rights targets", - "values": [ - "Technical assistance and cooperation" - ] - }, - { - "text": "Fight against discrimination based on origin, gender and sexual orientation, and strengthen its legislative framework to provide recognition and protection for transgender persons", - "values": [ - "Sexual Orientation and Gender Identity" - ] - }, - { - "text": "Increase efforts to combat discrimination on the grounds of sexual orientation ", - "values": [ - "Sexual Orientation and Gender Identity" - ] - }, - { - "text": "Step up the efforts to abolish death penalty", - "values": [ - "Death penalty" - ] - }, - { - "text": "Withdraw reservations to United Nations treaties and ensure that all international treaties are fully transformed into national law ", - "values": [ - "International instruments" - ] - }, - { - "text": "Take steps to protect freedom of expression and opinion, as provided for in the International Covenant on Civil and Political Rights", - "values": [ - "Freedom of opinion and expression", - "International instruments" - ] - }, - { - "text": "End the strike hard campaign associated with numerous serious violations of human rights", - "values": [ - "Public security" - ] - }, - { - "text": "Make further efforts to protect children's rights, including improvements to the juvenile justice system ", - "values": [ - "Justice", - "Rights of the Child" - ] - }, - { - "text": "Raise age of criminal responsibility, in line with the Convention on the Rights of the Child and prohibit corporal punishment in all grounds", - "values": [ - "International instruments", - "Justice", - "Rights of the Child", - "Torture and other CID treatment" - ] - }, - { - "text": "Review its legislation regarding discriminatory practices against women", - "values": [ - "Women's rights" - ] - }, - { - "text": "Accede to the Palermo Protocol and continue improving its implementation of policy and legal framework related to human trafficking ", - "values": [ - "International instruments", - "Trafficking" - ] - }, - { - "text": "Strengthen measures aimed at eradicating child labour", - "values": [ - "Labour", - "Rights of the Child" - ] - }, - { - "text": "Implement legislation to regulate the living and working conditions of domestic workers and ensure that it is compatible with the standards of the ILO Convention No. 189 ", - "values": [ - "International instruments", - "Labour" - ] - }, - { - "text": "Take action to alleviate the burden on the health-care system", - "values": [ - "Right to health" - ] - }, - { - "text": "Amend Law 38 of 2012, which provides total impunity to militia members who violate international humanitarian law and commit human rights abuses", - "values": [ - "Impunity", - "International humanitarian law" - ] - }, - { - "text": "Withdraw reservations to ICCPR", - "values": [ - "CP rights - general", - "International instruments" - ] - }, - { - "text": "Guarantee full independence of the judiciary", - "values": [ - "Justice" - ] - }, - { - "text": "Prosecute perpetrators of xenophobic and hate crimes", - "values": [ - "Racial discrimination" - ] - }, - { - "text": "Expedite action on the ratification process of the Rome Statute of the International Criminal Court", - "values": [ - "International instruments", - "Justice" - ] - }, - { - "text": "Continue its efforts for the ratification of the international legal instruments to which it is not yet a party", - "values": [ - "International instruments" - ] - }, - { - "text": "Continue to fight discrimination and sexual exploitation of women and girls, especially through enhancing efforts to combat trafficking in persons ", - "values": [ - "Rights of the Child", - "Trafficking", - "Women's rights" - ] - }, - { - "text": "Strengthen the implementation of the National Strategy against Sexual and Gender-Based Violence by accelerating the judicial system and security sector reform, in order to improve access to justice, protect the population and guarantee the right to the security of persons", - "values": [ - "Justice", - "Rights of the Child", - "Women's rights" - ] - }, - { - "text": "Continue to take measures in order to support young people in terms of education and employment ", - "values": [ - "Development", - "Right to education" - ] - }, - { - "text": "Explicitly prohibit corporal punishment in all settings, including the home, schools and alternative care facilities, and establish appropriate complaints mechanism for children", - "values": [ - "Rights of the Child", - "Torture and other CID treatment" - ] - }, - { - "text": "Take measures to promote and protect the right to health, including through ensuring access to health care services", - "values": [ - "Right to health" - ] - }, - { - "text": "Develop a national plan to combat trafficking in human beings with a view to strengthening the mechanism for the identification of victims of trafficking and to ensure their rights are protected", - "values": [ - "Trafficking" - ] - }, - { - "text": "Reply positively to all pending requests by the United Nations human rights special procedures", - "values": [ - "Special procedures" - ] - }, - { - "text": "Strengthen its development efforts in the most disadvantaged regions", - "values": [ - "Development" - ] - }, - { - "text": "Promote awareness-raising campaigns and adaptive policies aimed at eliminating child, early and forced marriage", - "values": [ - "Human rights education and training", - "Rights of the Child", - "Women's rights" - ] - }, - { - "text": "Enact consolidated laws addressing all types of sexual violence effectively, with provisions of no statutory limitation on rape and other sexual violence, adequate witness and victim protection mechanisms, compensation from state and measures to address special needs of girls below 16", - "values": [ - "Rights of the Child", - "Women's rights" - ] - }, - { - "text": "Adopt and implement swiftly the law on reparation for victims of violations of human rights during the Marcos dictatorship ", - "values": [ - "Justice" - ] - }, - { - "text": "Continue efforts to reduce social acceptance of domestic and gender based violence ", - "values": [ - "Rights of the Child", - "Women's rights" - ] - }, - { - "text": "Consider establishing a national human rights institution, in conformity with the Paris Principles, with a broad mandate, as soon as possible", - "values": [ - "National Human Rights Institution" - ] - }, - { - "text": "Repeal the right "to administer reasonable punishment" in the Juveniles Act 1974 and prohibit all corporal punishment of children, including in the home", - "values": [ - "Rights of the Child", - "Torture and other CID treatment" - ] - }, - { - "text": "Continue its efforts and take the necessary measures to address the lack of women representation in Parliament", - "values": [ - "Women's rights" - ] - }, - { - "text": "Eradicate significant gaps in the realization of human rights in the European and oversees parts of the Kingdom", - "values": [ - "Other" - ] - }, - { - "text": "Eliminate imprisonment for the punishment of press offences", - "values": [ - "Freedom of the press" - ] - }, - { - "text": "Ensure effective monitoring of the electronic wage protection system at national level and extend its implementation to all companies based in Oman", - "values": [ - "Labour" - ] - }, - { - "text": "Continue to take further steps, with a view to combating racism, racial discrimination, xenophobia and related intolerance, and to implement the existing and newly adopted legislation", - "values": [ - "Racial discrimination" - ] - }, - { - "text": "Develop child protection policies particularly in terms of combating sexual exploitation and child labour", - "values": [ - "Labour", - "Rights of the Child" - ] - }, - { - "text": "Review the law on the special powers of the armed forces to align it with its obligations under the International Convention on Civil and Political Rights ", - "values": [ - "International instruments", - "Justice" - ] - }, - { - "text": "Review its restrictive interpretation of therapeutic abortion and decriminalisation of abortion in cases of rape, as recommended by CEDAW", - "values": [ - "Right to health", - "Rights of the Child", - "Treaty bodies", - "Women's rights" - ] - }, - { - "text": "Take the necessary measures to ensure the entry into force of new education laws and ensure the expansion of intercultural programmes ", - "values": [ - "Right to education" - ] - }, - { - "text": "Ensure the implementation of gender equality laws, specifically the General Act for Equality between men and women, in all 32 states", - "values": [ - "Women's rights" - ] - }, - { - "text": "Create an enabling legal environment for civil society organizations to contribute to democratic governance by creating entry points for dialogue and refraining from restricting their freedom to operate independently and freely ", - "values": [ - "Civil society", - "Freedom of association and peaceful assembly" - ] - }, - { - "text": "Consolidate cooperation with OHCHR to reinforce its national capacity in human rights, cited in paragraph 108 of the national report.", - "values": [ - "Technical assistance and cooperation" - ] - }, - { - "text": "Immediately and independently investigate the deaths of all the 88 men and children reported by Amnesty International on 31 August to have died whilst in custody and the thousands of peaceful protestors, including 100 children, reported by the United Nations to have been killed since the protests began in mid-March 2011", - "values": [ - "Detention", - "Extrajudicial executions", - "Freedom of association and peaceful assembly" - ] - }, - { - "text": "Continue taking measures to combat gender-based violence and to take further measures to ensure the effective implementation of laws offering protection against this violence", - "values": [ - "Women's rights" - ] - }, - { - "text": "Take urgent measures to investigate all allegations of extrajudicial killings by law enforcement agencies with a view to bringing the perpetrators to justice", - "values": [ - "Extrajudicial executions", - "Human rights violations by state agents" - ] - }, - { - "text": "Implement ratification of ICRMW", - "values": [ - "International instruments", - "Labour", - "Migrants" - ] - }, - { - "text": "Cooperate more closely with United Nations special procedures and treaty bodies in order to shorten the delay in presenting reports and implementing their recommendations", - "values": [ - "Special procedures", - "Treaty bodies" - ] - }, - { - "text": "Continue to strengthen the rule of law through judicial reform and improvement in law enforcement ", - "values": [ - "Justice" - ] - }, - { - "text": "Ratify the Second Optional Protocol to ICCPR, aiming at the abolition of the death penalty, and adopt all the required internal legislative measures to proceed as soon as possible with the ratification of the Rome Statute of the ICC", - "values": [ - "Death penalty", - "International instruments", - "Justice" - ] - }, - { - "text": "Issue an executive order to make the moratorium on the application of the death penalty official, and that the Second Optional Protocol to the International Covenant on Civil and Political Rights, aiming at the abolition of the death penalty be ratified as early as possible", - "values": [ - "Death penalty", - "International instruments" - ] - }, - { - "text": "Systematically investigate and collect data on violence against women and to disseminate this information", - "values": [ - "Women's rights" - ] - }, - { - "text": "Pursue measures taken to re-establish the rights of former refugees returning from Senegal and Mali and to allow the return of those remaining in those countries", - "values": [ - "Asylum-seekers - refugees" - ] - }, - { - "text": "Approve a national human rights plan early", - "values": [ - "General" - ] - }, - { - "text": "Continue paying attention to persons with special needs", - "values": [ - "Disabilities", - "General" - ] - }, - { - "text": "Develop a national plan for combating hate crimes in order to ensure continuity and sustainability", - "values": [ - "Racial discrimination" - ] - }, - { - "text": "Adopt necessary measures to legally recognize the human rights of all minorities and ethnic groups that are residing in the country", - "values": [ - "Minorities" - ] - }, - { - "text": "Ensure that journalists and reporters can freely exercise their right to freedom of expression", - "values": [ - "Freedom of opinion and expression", - "Freedom of the press" - ] - }, - { - "text": "Enhance measures to promote gender equality and gender mainstreaming in public institutions, policies and programmes ", - "values": [ - "Women's rights" - ] - }, - { - "text": "Make efforts to overcome gender stereotyping, which continues to perpetuate discrimination against women, and increase representation of women, including Roma women in the legislative bodies, the Government and the public administration, particularly in senior positions", - "values": [ - "Minorities", - "Women's rights" - ] - }, - { - "text": "Urgently adopt legislation criminalizing female genital mutilation, and train members of the police, prosecutors and judges on the strict application of laws and regulations to be adopted in this field", - "values": [ - "Human rights education and training", - "Rights of the Child", - "Torture and other CID treatment", - "Women's rights" - ] - }, - { - "text": "Include legislative safeguard against statelessness with regards to children born in its territory, who would otherwise be stateless, to acquire Tuvaluan nationality ", - "values": [ - "Statelessness and the right to nationality" - ] - }, - { - "text": "Strengthen measures aimed at poverty eradication and improvement of access to safe drinking water, as well as social services ", - "values": [ - "Poverty", - "Right to water and sanitation" - ] - }, - { - "text": "Make efforts to ensure that the future generations learn the truth of history, including the issue of so-called \u201ccomfort women\u201c", - "values": [ - "Women's rights" - ] - }, - { - "text": "Further consider its position on accepting the right of individual petition to the United Nations beyond the Optional Protocol to the Convention on the Elimination of All Forms of Discrimination against Women and the Optional Protocol to the Convention on the Rights of Persons with Disabilities", - "values": [ - "Disabilities", - "International instruments", - "Women's rights" - ] - }, - { - "text": "Accede to the Convention on the Non-Applicability of Statutory Limitations to War Crimes and Crimes against Humanity", - "values": [ - "International humanitarian law", - "International instruments", - "Justice" - ] - }, - { - "text": "Continue developing systematic actions, including legislative ones, to combat domestic violence", - "values": [ - "Rights of the Child", - "Women's rights" - ] - }, - { - "text": "Step up its implementation of best practices on gender equality and empowerment of women and continue the programmes that are successfully being carried out in the area of gender equality and access of women to decision-making positions", - "values": [ - "Women's rights" - ] - }, - { - "text": "Continue its efforts in order to ensure the right to education for all children", - "values": [ - "Right to education", - "Rights of the Child" - ] - }, - { - "text": "The Afghan Government sign and ratify the Second Optional Protocol to the ICCPR, abolish the death penalty and commute the sentences of those facing execution.", - "values": [ - "Death penalty", - "International instruments" - ] - }, - { - "text": "Speed up the accession to the international human rights instruments that were approved in principle and take the necessary measures to apply their provisions", - "values": [ - "International instruments" - ] - }, - { - "text": "Advance in the implementation of human rights to live in harmony with Mother Earth", - "values": [ - "Environment" - ] - }, - { - "text": "Continue to prioritize policies and programmes aimed at eradicating poverty and underdevelopment and ensuring the enjoyment of economic social and cultural rights", - "values": [ - "Development", - "ESC rights - general", - "Poverty" - ] - }, - { - "text": "Take immediate, clear and credible steps to return Fiji to democracy and the rule of law, including through a broad-based and genuine dialogue among the key political parties in Fiji, and in line with calls by the Security Council, which will enable Fiji to fully participate once again in the international community, including the Pacific Islands Forum and the Commonwealth", - "values": [ - "Justice" - ] - }, - { - "text": "Support, based on a thorough analysis, the adoption of new international instruments for the protection of human rights ", - "values": [ - "International instruments" - ] - }, - { - "text": "Continue to implement training and dissemination programmes on obligations and commitments on human rights to a broad range of audiences", - "values": [ - "Human rights education and training" - ] - }, - { - "text": "Further step up the efforts and allocate sufficient funds to ensure the effective implementation of the National Action Plan to prevent violence against women as well as broaden the action plan to cover domestic violence ", - "values": [ - "Women's rights" - ] - }, - { - "text": "Put in place a specific mechanism for implementing previous accepted recommendations", - "values": [ - "UPR process" - ] - }, - { - "text": "With the assistance of OHCHR, move to speedily accede to all those human rights conventions to which it is currently a signatory ", - "values": [ - "International instruments", - "Technical assistance and cooperation" - ] - }, - { - "text": "Continue making efforts to achieve full social equality between men and women", - "values": [ - "Women's rights" - ] - }, - { - "text": "Consider signing or ratifying, as appropriate, the following international human rights instruments: the Optional Protocols to ICCPR, CAT, the Rome Statute of the International Criminal Court and the Convention on the Prevention and Punishment of the Crime of Genocide ", - "values": [ - "CP rights - general", - "International instruments", - "Justice", - "Torture and other CID treatment" - ] - }, - { - "text": "Adopt and enact laws on the sale of children, child prostitution and child pornography, and other forms of sexual exploitation of children ", - "values": [ - "Rights of the Child", - "Trafficking" - ] - }, - { - "text": "Allow all prisoners access to legal counsel during all phases of pretrial detention and the investigative stages of cases, and allow for legal counsel to advise the accused during these proceedings", - "values": [ - "Detention" - ] - }, - { - "text": "Allocate specific funding within its health budget for child, maternal and reproductive health", - "values": [ - "Right to health", - "Rights of the Child", - "Women's rights" - ] - }, - { - "text": "Withdraw the reservation to CEDAW, and carry out constitutional and legal reforms in accordance with the principles of CEDAW with a view to eliminating all forms of violence against women and girls that still exist in the areas of education, labour and the family, particularly adopting the measures necessary to eliminate practices such as female genital mutilation, early forced marriage, polygamy, repudiation and force-feeding ", - "values": [ - "International instruments", - "Rights of the Child", - "Torture and other CID treatment", - "Women's rights" - ] - }, - { - "text": "Consider ratification of the third OP to CRC on a communication procedure", - "values": [ - "International instruments", - "Rights of the Child" - ] - }, - { - "text": "Make further efforts for securing all human rights, including cultural rights of minorities", - "values": [ - "ESC rights - general", - "Minorities" - ] - }, - { - "text": "Ensure that the death penalty is not applied to minors, in keeping with resolutions adopted by the United Nations in this area.", - "values": [ - "Death penalty" - ] - }, - { - "text": "Continue implementing - at all levels - its policies and programmes aimed to eliminate discrimination on any ground, as well as the use of excessive or unreasonable force in policing ", - "values": [ - "Human rights violations by state agents" - ] - }, - { - "text": "Continue efforts to improve the health-care system, especially for girls and boys", - "values": [ - "Right to health", - "Rights of the Child" - ] - }, - { - "text": "Continue to cooperate with the United Nations and other international organizations to strengthen human rights in Nicaragua", - "values": [ - "Other" - ] - }, - { - "text": "Continue to promote a balanced representation of men and women in leadership positions", - "values": [ - "Women's rights" - ] - }, - { - "text": "Continue its efforts in maintaining social harmony ", - "values": [ - "Other" - ] - }, - { - "text": "Respect its international commitments on fundamental rights related to non-discrimination, prevent the adoption of a law prohibiting freedom of expression with regards to homosexuality and raise awareness of civil society on combating all forms of discrimination, including discrimination based on sexual orientation and gender identity ", - "values": [ - "Freedom of opinion and expression", - "Sexual Orientation and Gender Identity" - ] - }, - { - "text": "Continue efforts to further enhance the separation of powers ", - "values": [ - "Justice" - ] - }, - { - "text": "Take concerted steps to build a strong and independent judiciary ", - "values": [ - "Justice" - ] - }, - { - "text": "Give priority to human rights education and training on all levels, according to the criteria defined by the World Programme for Human Rights Education ", - "values": [ - "Human rights education and training" - ] - }, - { - "text": "Implement the recommendation of the Special Rapporteur on the rights to freedom of peaceful assembly and of association to extend the guarantee of peaceful assembly to non-Omani citizens", - "values": [ - "Freedom of association and peaceful assembly", - "Special procedures" - ] - }, - { - "text": "Revert to the de facto moratorium of the death penalty, and foster the necessary public debate on this issue, as a previous step for the definitive abolishment of the death penalty ", - "values": [ - "Death penalty" - ] - }, - { - "text": "Continue its efforts to achieve the complete eradication of female genital mutilation, including by raising awareness about the risks associated with this practice and about its prohibition ", - "values": [ - "Human rights education and training", - "Rights of the Child", - "Torture and other CID treatment", - "Women's rights" - ] - }, - { - "text": "Review compliance of the Criminal Code, which now defines domestic violence only as a bodily injury, with the Convention on the Elimination of All Forms of Discrimination against Women and as elaborated on in general recommendation No. 19 of the Committee on the Elimination of Discrimination against Women", - "values": [ - "International instruments", - "Rights of the Child", - "Treaty bodies", - "Women's rights" - ] - }, - { - "text": "Guarantee equal access of all political parties to all stages of the electoral process, from registration to election campaigning", - "values": [ - "Elections", - "Freedom of association and peaceful assembly" - ] - }, - { - "text": "Adopt measures to facilitate family reunification as recommended by the Special Rapporteur on DPRK ", - "values": [ - "Special procedures" - ] - }, - { - "text": "Release all prisoners of conscience, including the poet Mohammed Al-Ajami, and respect the rights of all individuals to freedom of expression ", - "values": [ - "Detention", - "Freedom of opinion and expression", - "Freedom of religion and belief" - ] - }, - { - "text": "Take measures to ensure effective protection of journalists against intimidation together with investigation and punishment of perpetrators of such threats or attacks.", - "values": [ - "Freedom of the press" - ] - }, - { - "text": "Build on its achievement and redouble its efforts to combat police brutality through administrative and judicial sanctions against perpetrators, training and education for serving police officers, and consider including relevant human rights education materials in the cadets' training curriculum", - "values": [ - "Human rights education and training", - "Human rights violations by state agents", - "Justice" - ] - }, - { - "text": "Facilitate participation by civil society groups, in particular by reforming the system of registration for NGOs working in the country to allow organizations to be established by non-citizens, remove the obligation of having a minimal number of members in order to register, reduce the registration fees, and remove the obligation to notify the authorities of the NGOs' activities ", - "values": [ - "Civil society", - "Freedom of association and peaceful assembly" - ] - }, - { - "text": "Reduce significantly the use of the death penalty with a view to its complete abolition.", - "values": [ - "Death penalty" - ] - }, - { - "text": "Increase international and regional cooperation with regard to the issue of trafficking in persons", - "values": [ - "Trafficking" - ] - }, - { - "text": "That the Government set out how it intends to guarantee the independence of the judiciary and the transparency of its processes and hierarchy ", - "values": [ - "Justice" - ] - }, - { - "text": "Provide comprehensive and age-appropriate sexuality education, including on prevention of unwanted pregnancies ", - "values": [ - "Right to health" - ] - }, - { - "text": "Examine the possibility of creating a monitoring system of international recommendations to facilitate the systematization and follow-up of the recommendations from human rights bodies and special procedures", - "values": [ - "Special procedures", - "Treaty bodies", - "UPR process" - ] - }, - { - "text": "Consider ratifying the Optional Protocol to Convention on the Rights of Persons with Disabilities", - "values": [ - "Disabilities", - "International instruments" - ] - }, - { - "text": "Develop and put in place a strategy to improve, as soon as possible, detention conditions of minors separated from adults, and reduce the duration of police custody and pre-trial detention", - "values": [ - "Detention", - "Rights of the Child" - ] - }, - { - "text": "Consider a moratorium on the use of the death penalty with a view to its abolition ", - "values": [ - "Death penalty" - ] - }, - { - "text": "Ensure that the National Human Rights Commission is able to discharge its functions fully, in accordance with the Paris Principles, as previously recommended", - "values": [ - "National Human Rights Institution", - "UPR process" - ] - }, - { - "text": "Adopt measures to effectively prevent the practice of female genital mutilation", - "values": [ - "Rights of the Child", - "Torture and other CID treatment", - "Women's rights" - ] - }, - { - "text": "Investigate and prosecute effectively violations against human rights defenders and journalists, and that the Government forcefully denounce these attacks against human rights defenders, and that the State authorities give human rights defenders legitimacy and recognition through supportive statements", - "values": [ - "Freedom of the press", - "Human rights defenders" - ] - }, - { - "text": "Continue to step up its efforts in the promotion and protection of human rights with the full support of the international community, as requested in the report submitted by Tonga to the UPR.", - "values": [ - "Technical assistance and cooperation" - ] - }, - { - "text": "Adopt effective measures to combat violence against women and girls, especially domestic and sexual violence, particularly through prevention and sanctioning and the protection and compensation of victims", - "values": [ - "Rights of the Child", - "Women's rights" - ] - }, - { - "text": "Consider ratifying or acceding to other individual complaints procedures under the treaties to which it is a party", - "values": [ - "International instruments" - ] - }, - { - "text": "Accelerate the process of adopting the National Strategy and Plan of Action on Violence against Children", - "values": [ - "Rights of the Child" - ] - }, - { - "text": "Continue the process of harmonizing domestic legislation with provisions of international instruments ", - "values": [ - "International instruments" - ] - }, - { - "text": "Reconsider all the recommendations of the Venice Commission on the constitutional reform ", - "values": [ - "Other" - ] - }, - { - "text": "Pursue its efforts in eradicating unemployment, in particular through the 2015 programme on youth employment", - "values": [ - "Development" - ] - }, - { - "text": "Intensify the fight against prejudices towards minority groups, the Roma in particular", - "values": [ - "Minorities" - ] - }, - { - "text": "Ensure that the National Programme for the Protection of Human Rights Defenders be implemented in all states of the nation ", - "values": [ - "Human rights defenders" - ] - }, - { - "text": "Implement the Education Sector Plan as well as strategies and activities included in the Plan, to improve education management within the period 2014-2018", - "values": [ - "Right to education" - ] - }, - { - "text": "Implement existing procedures upholding internationally recognized standards in combating trafficking in persons and conduct necessary training for law enforcement to properly identify and protect victims of trafficking ", - "values": [ - "Trafficking" - ] - }, - { - "text": "Promote better political representation of women in elected positions", - "values": [ - "Elections", - "Women's rights" - ] - }, - { - "text": "Continue efforts to defend the identity, cultural heritage preservation, promotion of creativity, artistic and literary production and art appreciation ", - "values": [ - "ESC rights - general" - ] - }, - { - "text": "Ensure that all journalists and human right defenders can work in safe conditions ", - "values": [ - "Freedom of the press", - "Human rights defenders" - ] - }, - { - "text": "Favourably consider the possibility of the ratification of the Optional Protocol to the Convention against Torture and Other Cruel, Inhuman or Degrading Treatment or Punishment ", - "values": [ - "Detention", - "International instruments", - "Torture and other CID treatment" - ] - }, - { - "text": "Step up efforts to improve and conserve the environment, including by strengthening the relevant laws and providing the public with the necessary information, education and awareness regarding the impacts of environmental pollution and degradation ", - "values": [ - "Environment" - ] - }, - { - "text": "Maintain its policy regarding the high rate of primary school attendance ", - "values": [ - "Right to education" - ] - }, - { - "text": "Review the legislation criminalizing abortion and amend it so that abortion is no longer a criminal offence", - "values": [ - "Women's rights" - ] - }, - { - "text": "The Government is committed to upholding the rule of law and promoting access to justice for all New Zealanders.", - "values": [ - "Justice" - ] - }, - { - "text": "Accomplish progressively the human rights goals set forth in Human Rights Council resolution 9-12. ", - "values": [ - "General" - ] - }, - { - "text": "Continue with its efforts undertaken to fight against trafficking of persons ", - "values": [ - "Trafficking" - ] - }, - { - "text": "Maintain the de facto moratorium on the death penalty with a view to abolishing it", - "values": [ - "Death penalty" - ] - }, - { - "text": "Consider extending a standing invitation to all special procedures of the Human Rights Council", - "values": [ - "Special procedures" - ] - }, - { - "text": "Disseminate the provisions of CRC, and conduct public awareness raising campaigns among local communities", - "values": [ - "Human rights education and training", - "International instruments", - "Rights of the Child" - ] - }, - { - "text": "Put in place an independent national mechanism for the inspection of places of deprivation of liberty ", - "values": [ - "Detention" - ] - }, - { - "text": "Accelerate the process of consolidating existing labour laws to, inter alia, promote the right to equal opportunities for work and at work, as well as to achieve occupational safety", - "values": [ - "Labour", - "Right to health" - ] - }, - { - "text": "Continue to harmonize its legislation with the international human rights norms ", - "values": [ - "International instruments" - ] - }, - { - "text": "Ratify the Optional Protocol to the International Covenant on Civil and Political Rights, the Optional Protocol to the Convention on the Elimination of Discrimination against Women, the International Convention on the Protection of the Rights of All Migrant Workers and Members of Their Families, the Convention on the Rights of Persons with Disabilities and the International Convention for the Protection of All Persons from Enforced Disappearance and accept the competence of the Committee on Enforced Disappearances", - "values": [ - "International instruments" - ] - }, - { - "text": "Take steps to prevent discrimination and incitement to hatred against the Baha'i or any other ethnic or religious minority, regardless of whether it is officially recognized", - "values": [ - "Freedom of religion and belief", - "Minorities", - "Racial discrimination" - ] - }, - { - "text": "Ensure the effective implementation of the National Action Plan against Human Trafficking for the period 2016-2018", - "values": [ - "Trafficking" - ] - }, - { - "text": "Continue the efforts to improve prison conditions ", - "values": [ - "Detention" - ] - }, - { - "text": "Continue to promote economic, social and culture development to provide better conditions for the enjoyment of all rights by its people ", - "values": [ - "Development", - "ESC rights - general" - ] - }, - { - "text": "Reduce the length of police custody subsequent to arrest to a maximum of 48 hours", - "values": [ - "Detention" - ] - }, - { - "text": "Establish a national human rights commission accredited by the International Coordinating Committee", - "values": [ - "National Human Rights Institution" - ] - }, - { - "text": "Further strengthen the financial resources of the Uganda Human Rights Commission", - "values": [ - "National Human Rights Institution" - ] - }, - { - "text": "Complete the domestic process in order to ratify the International Convention on the Protection of All Persons from Enforced Disappearance as soon as possible.", - "values": [ - "Treaty bodies" - ] - }, - { - "text": "Declare new moratorium with a view to ensure definitive abolition of the death penalty.", - "values": [ - "Death penalty" - ] - }, - { - "text": "Seek financial and technical assistance from international sources, including from the OHCHR for implementing international human rights obligations and for facilitating human rights training and education", - "values": [ - "Human rights education and training", - "International instruments", - "Technical assistance and cooperation" - ] - }, - { - "text": "Consider the possibility to extend a standing invitation to all special procedures of the Human Rights Council, in order to strengthen cooperation with the universal human rights system", - "values": [ - "Special procedures" - ] - }, - { - "text": "Consider signing and ratify the International Convention on the Protection of the Rights of All Migrant Workers", - "values": [ - "International instruments", - "Labour", - "Migrants" - ] - }, - { - "text": "Establish a moratorium on executions as a first step towards abolition of the death penalty", - "values": [ - "Death penalty" - ] - }, - { - "text": "Undertake public actions aimed at eliminating discrimination based on sexual orientation ", - "values": [ - "Sexual Orientation and Gender Identity" - ] - }, - { - "text": "Decriminalize homosexuality between consenting adults, and repeal all legal provisions used to discriminate against LGBT persons ", - "values": [ - "Sexual Orientation and Gender Identity" - ] - }, - { - "text": "Take steps to end the current culture of impunity by ensuring that all allegations of abuse are investigated by the judiciary in a timely, independent and transparent manner", - "values": [ - "Impunity", - "Justice" - ] - }, - { - "text": "Establish without delay an independent national human rights institution in accordance with the Paris Principles", - "values": [ - "National Human Rights Institution" - ] - }, - { - "text": "Continue its efforts to achieve the goals of the Operational Plan for Accelerating the Reduction of Maternal and New-born Mortality 2004-2015", - "values": [ - "Right to health", - "Rights of the Child", - "Women's rights" - ] - }, - { - "text": "Institute measures that guarantee a free and independent media environment", - "values": [ - "Freedom of the press" - ] - }, - { - "text": "Engage civil society in the follow-up implementation process of the universal periodic review recommendations", - "values": [ - "UPR process" - ] - }, - { - "text": "Sign and ratify the Optional Protocol to the International Covenant on Economic, Social and Cultural Rights and ratify the Council of Europe Convention on preventing and combating violence against women and domestic violence ", - "values": [ - "ESC rights - general", - "International instruments", - "Women's rights" - ] - }, - { - "text": "Consider establishing at the earliest a national human rights institution in full compliance with the Paris Principles ", - "values": [ - "National Human Rights Institution" - ] - }, - { - "text": "Continue to consolidate its national action aimed at prohibiting torture", - "values": [ - "Torture and other CID treatment" - ] - }, - { - "text": "Make further efforts to promote the rights of women and children and continue its efforts in the fight against domestic violence", - "values": [ - "Rights of the Child", - "Women's rights" - ] - }, - { - "text": "Continue its efforts to strengthen the current National Human Rights Association - established in 1986, in line with the Paris Principles", - "values": [ - "National Human Rights Institution" - ] - }, - { - "text": "Carry out proper actions aimed at granting indigenous people the full enjoyment of their rights, in particular health care and education ", - "values": [ - "Indigenous peoples", - "Right to education", - "Right to health" - ] - }, - { - "text": "Continue to give consideration to the views of treaty bodies and other mechanisms", - "values": [ - "Treaty bodies" - ] - }, - { - "text": "Encourage openness and transparency in the functioning of the public bodies ", - "values": [ - "Corruption" - ] - }, - { - "text": "Look into the possibility of establishing the national human rights institution in China", - "values": [ - "National Human Rights Institution" - ] - }, - { - "text": "Consider the appropriateness of establishing a national human rights institution in compliance with the Paris Principles", - "values": [ - "National Human Rights Institution" - ] - }, - { - "text": "Expedite the enactment of the Freedom of Information Bill", - "values": [ - "Freedom of opinion and expression" - ] - }, - { - "text": "Allocate necessary resources for the full realization of the rights under the International Covenant on Economic, Social and Cultural Rights ICESCR, with a view to strengthening poverty reduction programmes and guaranteeing adequate access to health and education ", - "values": [ - "ESC rights - general", - "International instruments", - "Poverty", - "Right to health", - "Rights of the Child" - ] - }, - { - "text": "Consider creating a dedicated overarching Parliamentary Committee on Human Rights and Equality", - "values": [ - "General" - ] - }, - { - "text": "Continue to strengthen and promote the rule of law based on effective and accountable state institutions, through, inter alia, the reform of the defence sector and the adoption of measures to foster independence of the Judiciary", - "values": [ - "Justice" - ] - }, - { - "text": "Enhance the capacity of the National Commission for the Promotion of Equality to follow-up and monitor responses in all cases of racial violence and discrimination", - "values": [ - "National Human Rights Institution", - "Racial discrimination" - ] - }, - { - "text": "Approach, at all instances, child victims of sexual exploitation as victims and not offenders, providing for appropriate victims' reintegration", - "values": [ - "Rights of the Child" - ] - }, - { - "text": "Include human rights education in the school curricula", - "values": [ - "Human rights education and training" - ] - }, - { - "text": "Redouble efforts to eliminate discrimination against women", - "values": [ - "Women's rights" - ] - }, - { - "text": "Provide its national human rights institution with the necessary means to ensure its regular work and reinforce its independence", - "values": [ - "National Human Rights Institution" - ] - }, - { - "text": "Adopt measures in order to strengthen the knowledge of the Elimination of Violence against Women Law within the police and the judiciary to guarantee effective implementation of the law ", - "values": [ - "Justice", - "Women's rights" - ] - }, - { - "text": "Improve access to quality education, health and social services, in particular for children and women", - "values": [ - "ESC rights - general", - "Right to education", - "Right to health", - "Rights of the Child", - "Women's rights" - ] - }, - { - "text": "Continue to strengthen its policy to prevent, combat and punish human trafficking, particularly by providing assistance to victims, regardless of their nationality ", - "values": [ - "Trafficking" - ] - }, - { - "text": "Ensure effective implementation of its national action plan against human trafficking by law enforcement officials with the aim to dismantle illicit networks, whilst reintegrating children victims back in school and preventing revictimization ", - "values": [ - "Rights of the Child", - "Trafficking" - ] - }, - { - "text": "That other state governments consider implementing similar programmes to Rio de Janeiro's UPP Police Pacifying Unit ", - "values": [ - "Public security" - ] - }, - { - "text": "Immediately implement a moratorium on executions and work further towards fully abolishing the death penalty", - "values": [ - "Death penalty" - ] - }, - { - "text": "Take further measures to bolster the national health system", - "values": [ - "Right to health" - ] - }, - { - "text": "Ensure equal rights and opportunities for women by promoting education and vocational training, with the aim of getting women out of low-skilled and low-paid jobs", - "values": [ - "Women's rights" - ] - }, - { - "text": "Take more concrete measures aiming at fostering a genuine human rights culture with due regard for national and regional particularities, as well as historic, cultural and religious backgrounds", - "values": [ - "Other" - ] - }, - { - "text": "Strengthen awareness activities in all settings and adopt appropriate legislative and policy measures to address and prevent violence against children and to reintegrate former child soldiers in society in accordance with the Convention on the Rights of the Child", - "values": [ - "International humanitarian law", - "International instruments", - "Rights of the Child" - ] - }, - { - "text": "Adopt a formal moratorium on executions, and remove all legal provisions for mandatory death sentences with a view to abolishing the death penalty ", - "values": [ - "Death penalty" - ] - }, - { - "text": "Continue policies to reduce poverty and eradicate malnutrition and food shortages", - "values": [ - "Poverty", - "Right to food" - ] - }, - { - "text": "Issue an open invitation to the special procedures", - "values": [ - "Special procedures" - ] - }, - { - "text": "Prohibit incarceration of minors together with adults, as well as solitary confinement of minors", - "values": [ - "Detention", - "Rights of the Child" - ] - }, - { - "text": "Guarantee to everyone, including journalists and human rights defenders, enjoyment of freedom of expression ", - "values": [ - "Freedom of opinion and expression", - "Freedom of the press", - "Human rights defenders" - ] - }, - { - "text": "Intensify necessary measures to combat and sanction police brutalities.", - "values": [ - "Human rights violations by state agents" - ] - }, - { - "text": "Strengthen efforts aiming at disseminating the human rights culture through various activities throughout the country", - "values": [ - "Human rights education and training" - ] - }, - { - "text": "Issue a standing invitation to all the United Nations human rights special procedures mandate holders", - "values": [ - "Special procedures" - ] - }, - { - "text": "Take further steps to improve implementation of its laws on female genital mutilation (FGM) and ensure prosecution through the appropriate judicial channels", - "values": [ - "Rights of the Child", - "Torture and other CID treatment", - "Women's rights" - ] - }, - { - "text": "Consider recruiting independent experts to its Standing Committee for Police Monitoring from outside the police, in line with the 2014 recommendations of the Committee Against Torture", - "values": [ - "Torture and other CID treatment", - "Treaty bodies" - ] - }, - { - "text": "Continue efforts towards the establishment of an independent national human rights institution in full accordance with the Paris Principles", - "values": [ - "National Human Rights Institution" - ] - }, - { - "text": "Strengthen labour law enforcement by providing training to labour inspectors and conducting outreach campaigns to inform workers of their internationally recognized worker rights ", - "values": [ - "Labour" - ] - }, - { - "text": "Extend a standing invitation to all United Nations human rights mechanisms", - "values": [ - "Special procedures", - "Treaty bodies", - "UPR process" - ] - }, - { - "text": "Continue to maintain its level, framework and channel of official development assistance", - "values": [ - "Development" - ] - }, - { - "text": "Implement with strict observation to the principle of non-refoulement, the monitoring mechanism that is being developed to monitor forcible removals ", - "values": [ - "Asylum-seekers - refugees" - ] - }, - { - "text": "Immediately cease the harassment and intimidation of independent media and to proceed to a reform of the legislation applicable to ensure full respect of freedom of expression", - "values": [ - "Freedom of opinion and expression", - "Freedom of the press" - ] - }, - { - "text": "Act on the Matrix of Actions it put forward to the G-19 international donor community in March 2010 in response to deep concerns about the 2009 elections ", - "values": [ - "Elections" - ] - }, - { - "text": "Continue to address the root causes of unemployment, especially among young people, by adopting the necessary long-term policies and strategies", - "values": [ - "Development" - ] - }, - { - "text": "Fully investigate all allegations of intimidation and violence against civil society actors, and to prosecute those responsible", - "values": [ - "Civil society" - ] - }, - { - "text": "Redouble efforts in harmonization of the legal system of the country", - "values": [ - "Justice" - ] - }, - { - "text": "Adopt appropriate legislative and policy measures to adjust its legal system and combat and eradicate all forms of discrimination, racism and xenophobia", - "values": [ - "Racial discrimination" - ] - }, - { - "text": "Adopt special measures to ensure that persons in particularly vulnerable situations, such as children, have meaningful access to the justice system and other complaint procedures", - "values": [ - "Justice", - "Rights of the Child" - ] - }, - { - "text": "Take all measures to eradicate the practice of corporal punishment in the family and juvenile justice systems and to ensure effective implementation of the ban on this punishment in schools", - "values": [ - "Rights of the Child", - "Torture and other CID treatment" - ] - }, - { - "text": "Continue its efforts to increase the quality and availability of education at all levels and all over the country", - "values": [ - "Right to education" - ] - }, - { - "text": "Intensify efforts to prevent and eliminate discrimination against indigenous children, children with disabilities, and girls", - "values": [ - "Disabilities", - "Indigenous peoples", - "Rights of the Child", - "Women's rights" - ] - }, - { - "text": "Continue efforts aimed at improving access to education, particularly in the rural areas, including by, inter alia, increasing the number of teachers, ensuring adequate infrastructure, learning materials and educational tools ", - "values": [ - "Right to education" - ] - }, - { - "text": "Legislate against racial profiling and strengthen its efforts to promote the humane treatment of migrants and people of non-Irish origin by law enforcement officers ", - "values": [ - "Migrants", - "Racial discrimination" - ] - }, - { - "text": "Step up measures to address the shortage of teachers especially in rural and remote areas ", - "values": [ - "Right to education" - ] - }, - { - "text": "Take concrete measures to combat discrimination against all children, including by creating a specific comprehensive strategy to eliminate negative attitudes and practices that discriminate against children and to encourage girls to attend school", - "values": [ - "Right to education", - "Rights of the Child" - ] - }, - { - "text": "Increase efforts necessary to ensure that education for boys and girls is free, compulsory and accessible ", - "values": [ - "Right to education" - ] - }, - { - "text": "Further intensify the combating of human trafficking and the protection of victims of trafficking in persons by removing the existing obstacles", - "values": [ - "Trafficking" - ] - }, - { - "text": "Take further measures to end the use of torture and other forms of inhuman and degrading treatment, and ensure that allegations of torture, ill-treatment or excessive use of force by police and security forces are investigated, prosecuted and convicted in line with international standards", - "values": [ - "Human rights violations by state agents", - "Torture and other CID treatment" - ] - }, - { - "text": "Strengthen the national follow-up systems for monitoring international recommendations, taking necessary measures for coordinating such systems and provide them with the necessary financial resources in order to fulfil their objectives", - "values": [ - "Special procedures", - "Treaty bodies", - "UPR process" - ] - }, - { - "text": "Reduce burdensome registration and renewal processes for NGOs in the country ", - "values": [ - "Civil society" - ] - }, - { - "text": "Draft their Constitutions in an inclusive process with the participation of civil society, women\nand minorities. Also, ensure that the new Constitutions include a catalogue of human rights, in\nparticular the freedom of speech and assembly, and take the multiethnic and multireligious\nbackground of their population into account", - "values": [ - "Civil society", - "Freedom of association and peaceful assembly", - "Freedom of opinion and expression", - "Freedom of religion and belief", - "Minorities", - "Women's rights" - ] - }, - { - "text": "Ensure consistent, transparent application of the Foreign Contribution (Regulation) Act regulations to permit full exercise of the right to freedom of association", - "values": [ - "Freedom of association and peaceful assembly" - ] - }, - { - "text": "Continue to strengthen its human rights mechanisms and consider establishing a national human rights institution in line with the Paris Principles", - "values": [ - "National Human Rights Institution" - ] - }, - { - "text": "Promote equal access to education through inclusive policies in the education system aimed at children from poor, foreign and minority families ", - "values": [ - "Migrants", - "Minorities", - "Poverty", - "Right to education", - "Rights of the Child" - ] - }, - { - "text": "Allocate sufficient resources for the Sustainable Development Goals", - "values": [ - "Development" - ] - }, - { - "text": "Undertake a thorough review of the 2011 Law on Religious Associations with a view to ensuring its compliance with Kazakhstan's international obligations", - "values": [ - "Freedom of religion and belief" - ] - }, - { - "text": "Ratify the Convention on the Elimination of All Forms of Discrimination against Women, the Convention on the Rights of the Child and its three Optional Protocols", - "values": [ - "International humanitarian law", - "International instruments", - "Labour", - "Rights of the Child", - "Trafficking", - "Women's rights" - ] - }, - { - "text": "Make every effort to achieve a sustainable return to democracy and constitutional rule at the earliest time possible", - "values": [ - "Justice" - ] - }, - { - "text": "Increase its efforts to ensure that children in vulnerable situations, including Roma children, have equal access to education and to end segregation of Roma children in schools", - "values": [ - "Minorities", - "Right to education", - "Rights of the Child" - ] - }, - { - "text": "Take further measures to address discrimination against non-native Finnish citizens in the area of employment, particularly by reducing the wage gap between immigrants and native Finns", - "values": [ - "Labour", - "Migrants" - ] - }, - { - "text": "Establish regular medical examinations of persons deprived of their liberty, set up an independent complaint mechanism for torture allegations", - "values": [ - "Detention", - "Torture and other CID treatment" - ] - }, - { - "text": "Accept the requested visits from the Working Group on Arbitrary Detention and the Special Rapporteur on torture and other cruel, inhuman or degrading treatment or punishment ", - "values": [ - "Detention", - "Special procedures", - "Torture and other CID treatment" - ] - }, - { - "text": "Domesticate the Convention against Torture and Other Cruel, Inhuman or Degrading Treatment or Punishment", - "values": [ - "International instruments", - "Torture and other CID treatment" - ] - }, - { - "text": "Offer comprehensive sexuality education and ensure access to sexual and reproductive health services, including legal and safe abortion", - "values": [ - "Right to health", - "Women's rights" - ] - }, - { - "text": "Take effective measures to improve access by all prisoners to legal advice, health and education services ", - "values": [ - "Detention" - ] - }, - { - "text": "Implement the necessary measures to promote the rights of human rights defenders, with the purpose of protecting them against harassment, intimidation or physical violence", - "values": [ - "Human rights defenders" - ] - }, - { - "text": "Adhere to the fundamental international human rights instruments, in particular to ICCPR, ICESCR and to the Convention against Torture and Other Cruel, Inhuman or Degrading Treatment or Punishment (CAT) ", - "values": [ - "CP rights - general", - "ESC rights - general", - "International instruments", - "Torture and other CID treatment" - ] - }, - { - "text": "Expedite the process of establishing a fully functioning Independent National Human Rights Institution that is fully compliant with the Paris Principles by the end of 2017", - "values": [ - "National Human Rights Institution" - ] - }, - { - "text": "Strengthen measures to foster access of vulnerable populations to public services and social and health services", - "values": [ - "Right to health" - ] - }, - { - "text": "Consider a moratorium on the death penalty with a view to its eventual abolition ", - "values": [ - "Death penalty" - ] - }, - { - "text": "Provide all necessary financial and human resources for the implementation of the National Action Plan for Children, which is in the process of preparation, in order to achieve its objectives particularly in the area of providing protection to children ", - "values": [ - "Rights of the Child" - ] - }, - { - "text": "Support new laws and measures to counter discriminatory attitudes in society and to prevent discrimination on the basis of sexual orientation and gender identity by providing public education and supporting equality initiatives ", - "values": [ - "Sexual Orientation and Gender Identity" - ] - }, - { - "text": "Consider, as a first step, amending domestic legislation on the death penalty in order to restrict its scope and adjust it to the international minimum standards on the death penalty and consider establishing a moratorium on the use of the death penalty with a view to its abolition", - "values": [ - "Death penalty" - ] - }, - { - "text": "Implement actions to improve the relationship between the security forces, judicial bodies and civil society, specifically with regard to arbitrary detention, excessive use of force during arrest, judicial due process, abuse of power and torture, and allocate the necessary resources to ensure that the aforementioned abuses do not remain unpunished", - "values": [ - "Civil society", - "Detention", - "Human rights violations by state agents", - "Justice", - "Public security", - "Torture and other CID treatment" - ] - }, - { - "text": "Urgently review the legal grounds and practice of pretrial detention that will effectively limit its use and duration", - "values": [ - "Detention" - ] - }, - { - "text": "Take all appropriate measures to protect the right to assembly and to ensure investigation and prosecution of persons violating civil and political rights as guaranteed by the Serbian Constitution", - "values": [ - "Civil society", - "Freedom of association and peaceful assembly" - ] - }, - { - "text": "Strengthen efforts to combat, prevent, and respond to domestic violence, including by ensuring that victims of domestic violence have access to the necessary support and services that will enable them to leave abusive situations, in particular means to sustainably support themselves financially", - "values": [ - "Rights of the Child", - "Women's rights" - ] - }, - { - "text": "Speed up its efforts to ensure the operationalization of the National Human Rights Commission in accordance with the Paris Principles", - "values": [ - "National Human Rights Institution" - ] - }, - { - "text": "Continue its efforts to materialize its decision to create an independent institution for the protection and the promotion of human rights, in accordance with the Paris Principles, and with a clear mandate and sufficient resources ", - "values": [ - "National Human Rights Institution" - ] - }, - { - "text": "Take measures to support and strengthen prosecutions for human rights violations by the judiciary, with reference to the recommendations made by the Council of Europe Commissioner for Human Rights, including withrespect to the strengthening of the independence and effectiveness of the Prosecutor's Office", - "values": [ - "Justice" - ] - }, - { - "text": "Continue its efforts in these fields to improve access to education and health and to promote the rights of women and children ", - "values": [ - "Right to education", - "Right to health", - "Rights of the Child", - "Women's rights" - ] - }, - { - "text": "Apply the same spirit of protecting and promoting human rights, stressing human rights education, to the efforts undertaken to implement its National Vision 2020 ", - "values": [ - "Human rights education and training" - ] - }, - { - "text": "Incorporate into domestic law its international human rights obligations under the Conventions to which it is party ", - "values": [ - "International instruments" - ] - }, - { - "text": "Continue efforts in order to increase participation of women in political, public and professional spheres", - "values": [ - "Women's rights" - ] - }, - { - "text": "Amend the Public Order and Security Act and the Access to Information and Privacy Act ", - "values": [ - "Freedom of association and peaceful assembly", - "Freedom of opinion and expression", - "Privacy" - ] - }, - { - "text": "Finalize as soon as possible a national policy to implement the rights for persons with disabilities and the ratification process of the Convention on the Rights of Persons with Disabilities ", - "values": [ - "Disabilities", - "International instruments" - ] - }, - { - "text": "Continue implementing the national policy for persons with disabilities which lays out the fundamental pillars of development to ensure that an integrative society can truly take root", - "values": [ - "Development", - "Disabilities" - ] - }, - { - "text": "Allocate more resources to the programs that fight unemployment ", - "values": [ - "Development" - ] - }, - { - "text": "Further strengthen its efforts to combat and investigate ill-treatment of prisoners and detainees", - "values": [ - "Detention", - "Torture and other CID treatment" - ] - }, - { - "text": "Adopt awareness-raising programs to combat gender related stereotypes", - "values": [ - "Human rights education and training", - "Women's rights" - ] - }, - { - "text": "Prevent, punish and eradicate all forms of violence against women including marital rape", - "values": [ - "Women's rights" - ] - }, - { - "text": "Continue to enhance its social protection programmes, which provide assistance to the most vulnerable and disadvantaged Gabonese", - "values": [ - "ESC rights - general" - ] - }, - { - "text": "Give continuity to legislative and institutional reforms for the promotion and protection of human rights", - "values": [ - "General" - ] - }, - { - "text": "Consider adopting cash grant policies to alleviate poverty of vulnerable groups and to link it with health care, such as vaccination and prenatal care", - "values": [ - "Poverty", - "Right to health" - ] - }, - { - "text": "Intensify its efforts to fight against poverty, including through international cooperation and the implementation of lessons learned from successful experiences", - "values": [ - "Poverty", - "Technical assistance and cooperation" - ] - }, - { - "text": "Continue and enhance the efforts in promoting and protecting the rights of vulnerable groups including women and persons with disabilities ", - "values": [ - "Disabilities", - "Women's rights" - ] - }, - { - "text": "Strictly ensure that the death penalty is not imposed for children, and declare an official moratorium on executions with a view to abolishing the death penalty", - "values": [ - "Death penalty", - "Rights of the Child" - ] - }, - { - "text": "Continue to devote efforts to the promotion of economic, social and cultural rights", - "values": [ - "ESC rights - general" - ] - }, - { - "text": "Ratify the core human rights instruments, including the International Convention on the Protection of the Rights of All Migrant Workers and Members of Their Families", - "values": [ - "International instruments", - "Labour", - "Migrants" - ] - }, - { - "text": "Introduce legislations to criminalize acts of violence on the basis of race and religion ", - "values": [ - "Freedom of religion and belief", - "Racial discrimination" - ] - }, - { - "text": "Establish immediately a moratorium on the death penalty as the first step toward its abolition", - "values": [ - "Death penalty" - ] - }, - { - "text": "Apply fully the legislation geared towards combating discrimination and violence, particularly sexual, against women and young girls, particularly in terms of access of victims to justice and of training of magistrates, judges and police regarding this problem ", - "values": [ - "Human rights education and training", - "Justice", - "Women's rights" - ] - }, - { - "text": "Establish an inclusive national dialogue leading to free and fair multiparty elections as soon as possible", - "values": [ - "Elections" - ] - }, - { - "text": "Extend protection against discrimination and ensure that no one is subject to discrimination on the basis of sexual orientation, bearing in mind the universality of human rights and the recommendation of the Human Rights Committee on the right to privacy and non-discrimination", - "values": [ - "Privacy", - "Sexual Orientation and Gender Identity", - "Treaty bodies" - ] - }, - { - "text": "Consider ratifying without reservations the ICCPR and the ICESCR and to review and lift all reservations to several human rights conventions that are contrary to the objectives and purposes of the treaties", - "values": [ - "CP rights - general", - "ESC rights - general", - "International instruments" - ] - }, - { - "text": "Take steps to further democratisation efforts, including by enacting laws that facilitate the registration of political parties", - "values": [ - "Freedom of association and peaceful assembly" - ] - }, - { - "text": "Pursue its seven points development programme formulated by the President of the Republic", - "values": [ - "Development" - ] - }, - { - "text": "Ratify the Rome Statute of ICC (signed in 2000) and incorporate it into its national legislation", - "values": [ - "International instruments", - "Justice" - ] - }, - { - "text": "Ensure a thorough and impartial investigation of all cases of torture and ill treatment and ensure punishment of persons responsible for them according to the law.", - "values": [ - "Torture and other CID treatment" - ] - }, - { - "text": "Confirm the non-resumption of executions and the de facto moratorium on the death penalty, and to take all the necessary measures for the final de jure abolition of the death penalty", - "values": [ - "Death penalty" - ] - }, - { - "text": "Develop more effective programmes to support families, care institutions and foster families by paying special attention to the rights of children and adolescents", - "values": [ - "Rights of the Child" - ] - }, - { - "text": "Ratify the CAT, CPED and the Second Optional Protocol to the International Covenant on Civil and Political Rights (ICCPR-OP2) ", - "values": [ - "Death penalty", - "Enforced disappearances", - "International instruments", - "Torture and other CID treatment" - ] - }, - { - "text": "Further accelerate the efforts to strengthen the legal framework to protect the rights of migrants", - "values": [ - "Migrants" - ] - }, - { - "text": "Ratify the OP-CAT and establish an effective National Preventive Mechanism ", - "values": [ - "Detention", - "International instruments", - "Torture and other CID treatment" - ] - }, - { - "text": "Ensure that its legislation is in line with the new Constitution and the rights concerning freedom of expression and freedom of media therein", - "values": [ - "Freedom of opinion and expression", - "Freedom of the press" - ] - }, - { - "text": "Strengthen respect for and protection of the right of journalists and human rights defenders to exercise their activities without harassment", - "values": [ - "Freedom of the press", - "Human rights defenders" - ] - }, - { - "text": "Ensure that "preventive detention" under the Internal Security Act and the Criminal Law (Temporary Provisions) Act is only used in exceptional circumstances and does not violate the right to a fair trial", - "values": [ - "Detention", - "Justice" - ] - }, - { - "text": "Allocate the necessary funds to ensure effective implementation of the National Action Plan to combat violence against women ", - "values": [ - "Women's rights" - ] - }, - { - "text": "Enact legislation bringing into force the International Convention for the Protection of All Persons from Enforced Disappearance in Chilean legislation ", - "values": [ - "Enforced disappearances", - "International instruments" - ] - }, - { - "text": "Ratify the Optional Protocol to the Convention against Torture and establish its national preventive mechanism accordingly", - "values": [ - "Detention", - "International instruments", - "Torture and other CID treatment" - ] - }, - { - "text": "Take further steps to protect freedom of expression by creating an environment in which the media can operate freely, without discrimination, fear of retribution, or arbitrary punishment", - "values": [ - "Freedom of opinion and expression", - "Freedom of the press" - ] - }, - { - "text": "Ensure that all Bahrainis can freely cooperate with United Nations human rights mechanisms", - "values": [ - "Civil society", - "Special procedures" - ] - }, - { - "text": "Adopt and implement a law prohibiting the use of confessions obtained under torture ", - "values": [ - "Torture and other CID treatment" - ] - }, - { - "text": "Redress laws and government practices that discriminate against members of religious minorities, and in particular urgently pass a unified law that makes construction and repair requirements equal for the places of worship of all religious groups", - "values": [ - "Freedom of religion and belief", - "Minorities" - ] - }, - { - "text": "Strengthen publicity and awareness campaigns aimed at increasing knowledge among the population about the rights of LGBT people ", - "values": [ - "Human rights education and training", - "Sexual Orientation and Gender Identity" - ] - }, - { - "text": "Take the necessary measures to prevent the use of torture ", - "values": [ - "Torture and other CID treatment" - ] - }, - { - "text": "Deepen efforts to strengthen the judiciary, such as the establishment of the commission for the reform of the legislative and the judiciary", - "values": [ - "Justice" - ] - }, - { - "text": "Continue to take necessary steps towards the ratification of CRPD", - "values": [ - "Disabilities", - "International instruments" - ] - }, - { - "text": "Actively consider undertaking more aggressive strategies to increase the number of people with immigrant heritage in the public service, particularly the police, civil service and the judiciary, in order to better reflect the broad diversity within France.", - "values": [ - "Minorities" - ] - }, - { - "text": "Eliminate discriminatory provisions in its legislation ", - "values": [ - "General" - ] - }, - { - "text": "Continue its efforts in advancing human rights and freedoms in the country and especially in the conflict-affected areas", - "values": [ - "General" - ] - }, - { - "text": "Consider policies in relation to gender mainstreaming, adequacy of housing and access to buildings for persons with disabilities in the post-recovery efforts of the Canterbury earthquakes ", - "values": [ - "Disabilities", - "Right to housing", - "Women's rights" - ] - }, - { - "text": "Ratify the ICESCR", - "values": [ - "ESC rights - general", - "International instruments" - ] - }, - { - "text": "Cease execution by stoning", - "values": [ - "Torture and other CID treatment" - ] - }, - { - "text": "Ensure full respect of the institutional balance established by the Constitution, and take the necessary measures to restore as early as possible the prerogatives of the elected parliament", - "values": [ - "General" - ] - }, - { - "text": "Argentina undertakes to continue working to ensure the complementary nature of the work carried out by subregional, regional and international human rights protection mechanisms", - "values": [ - "Other" - ] - }, - { - "text": "Reconsider the announcement of its possible withdrawal from the Rome Statute", - "values": [ - "International instruments", - "Justice" - ] - }, - { - "text": "Ensure universal access to education for 4- and 5-year-old children and increase coverage for 3-year-old children. Ensure universal access to secondary education and increase completion rates in upper secondary education", - "values": [ - "Right to education", - "Rights of the Child" - ] - }, - { - "text": "Continue, diversify and strengthen its policy for the promotion of women and the protection of children", - "values": [ - "Rights of the Child", - "Women's rights" - ] - }, - { - "text": "Clarify the mandate and responsibilities of the national machinery for the advancement of women, as well as provide it with adequate visibility, power and resources", - "values": [ - "Women's rights" - ] - }, - { - "text": "Increase efforts to enhance the enjoyment of economic, social and cultural rights, which will enable the related rights to work, education, health and housing to be enforced", - "values": [ - "Right to education", - "Right to health", - "Right to housing" - ] - }, - { - "text": "Continue the efforts in the framework of the inter-ethnic policy and the protection of the rights of ethnic minorities", - "values": [ - "Minorities" - ] - }, - { - "text": "Continue strengthening the effective application of laws to prevent, protect and criminalize domestic violence ", - "values": [ - "Rights of the Child", - "Women's rights" - ] - }, - { - "text": "Accede to the core international human rights instruments, namely ICCPR and ICESCR ", - "values": [ - "CP rights - general", - "ESC rights - general", - "International instruments" - ] - }, - { - "text": "Continue its laudable measures to address the plight of persons with disabilities, in particular through pursuance of the draft National Disability Strategy, and share its experience in this regard ", - "values": [ - "Disabilities" - ] - }, - { - "text": "Ratify and fully align its national legislation with all the obligations under the Rome Statute of the International Criminal Court", - "values": [ - "International instruments", - "Justice" - ] - }, - { - "text": "Adopt a human-rights approach when designing projects under the Austrian Development Cooperation", - "values": [ - "Development" - ] - }, - { - "text": "Take the necessary actions to implement its commitment to extend a standing invitation to the special procedures of the Human Rights Council, and invite all other countries to follow this commendable example", - "values": [ - "Special procedures" - ] - }, - { - "text": "Lift its reservations to the Convention on the Elimination of all Forms of Discrimination against Women and ratify the Maputo Protocol to ensure women's rights", - "values": [ - "International instruments", - "Women's rights" - ] - }, - { - "text": "Implement the recommendations of the Jamaican Justice System Reform Task Force Report to ensure a modern justice system that is efficient, accessible, accountable, fair and able to deliver timely results ", - "values": [ - "Justice" - ] - }, - { - "text": "Ensure that every child, particularly unaccompanied minors, whether on the high seas or on its territory, who seeks to enter Italy, has the right to an individual consideration of his/her circumstances and is provided prompt access to asylum and other relevant national and international procedures and protective measures", - "values": [ - "Asylum-seekers - refugees", - "Rights of the Child" - ] - }, - { - "text": "Ensure that all allegations of torture and other ill-treatment perpetrated by security services are subject to impartial and independent investigations by the ordinary civil justice without delay, and ensure that victims receive reparations", - "values": [ - "Human rights violations by state agents", - "Torture and other CID treatment" - ] - }, - { - "text": "Engage in open-ended consultations with the full range of ethnic and religious minority groups on measures to improve respect for all human rights of persons belonging to minorities ", - "values": [ - "Minorities" - ] - }, - { - "text": "Enact effective legislative regulations that will apply the economic transformation blueprint into the daily life of the society", - "values": [ - "Development" - ] - }, - { - "text": "Take active measures in order to ensure the protection of vulnerable groups in the society, such as children, women and the elderly, and to enact legislation on anti-discrimination", - "values": [ - "Rights of the Child", - "Women's rights" - ] - }, - { - "text": "Establish a moratorium on the use of the death penalty with a view to its abolition, ensure judicial proceedings with all international guarantees and abolish collective punishments", - "values": [ - "Death penalty" - ] - }, - { - "text": "Ratify the international human rights instruments to which it is not yet a party, including the Optional Protocol to the Convention against Torture", - "values": [ - "Detention", - "International instruments", - "Torture and other CID treatment" - ] - }, - { - "text": "Designing schools that are in tune with the wider world", - "values": [ - "Right to education" - ] - }, - { - "text": "Give priority to the implementation of the Palermo Protocol and the prosecution of persons benefiting from human trafficking", - "values": [ - "International instruments", - "Trafficking" - ] - }, - { - "text": "Strengthen capacity-building with regard to human rights for civil servants involved in the protection of women and girl and boy victims of violence and sexual abuse", - "values": [ - "Human rights education and training", - "Rights of the Child", - "Women's rights" - ] - }, - { - "text": "Take into account the relevant expert opinions of the Office for Democratic Institutions and Human Rights and the Venice Commission in organizing the constitutional referendum and the elections announced for 27 June and 10 October 2010, respectively ", - "values": [ - "Elections" - ] - }, - { - "text": "Cease the practice of detaining trafficking victims, and allow them to travel, work and reside outside government facilities", - "values": [ - "Trafficking" - ] - }, - { - "text": "Consider ratifying the ILO Convention concerning Equal Opportunities and Equal Treatment for Men and Women Workers", - "values": [ - "International instruments", - "Labour", - "Women's rights" - ] - }, - { - "text": "Take concrete steps to strengthen protection of women, ensuring that complaints of domestic violence are properly registered and investigated by the police, and that perpetrators are prosecuted and convicted ", - "values": [ - "Women's rights" - ] - }, - { - "text": "Acknowledge the human rights violations in the country and take steps to end such violations and abuses by implementing the recommendations in the COI's final report and cooperating with the Special Rapporteur and OHCHR", - "values": [ - "Justice", - "Special procedures", - "Technical assistance and cooperation" - ] - }, - { - "text": "Set the minimum age of marriage at 18 for men and women alike and develop a national action plan to prevent and address the consequences of child marriage", - "values": [ - "Rights of the Child" - ] - }, - { - "text": "Call on the international community to provide efficient support to Djibouti in its efforts to face material and technical challenges, which remain the major handicap to consented efforts towards promoting and protecting human rights", - "values": [ - "Technical assistance and cooperation" - ] - }, - { - "text": "Accede to the International Convention on the Protection of the Rights of All Migrant Workers and Members of Their Families (ICRMW) ", - "values": [ - "International instruments", - "Labour", - "Migrants" - ] - }, - { - "text": "Consider incorporating strategies for human rights education and training in its educational policies ", - "values": [ - "Human rights education and training" - ] - }, - { - "text": "Adopt a National Action Plan to implement the UN Guiding Principles on Business and Human Rights", - "values": [ - "Business and human rights" - ] - }, - { - "text": "Adhere to and adapt national laws to the Rome Statute of the International Criminal Court", - "values": [ - "International instruments", - "Justice" - ] - }, - { - "text": "Respect in all circumstances the principle of non-refoulement, guarantee that asylum seekers have an asylum procedure which is in line with international standards, and respond to the requests for information made by the Committee on the Elimination of Racial Discrimination regarding the treatment of asylum seekers ", - "values": [ - "Asylum-seekers - refugees", - "Treaty bodies" - ] - }, - { - "text": "Legislate in order to permit marriage between persons of the same sex", - "values": [ - "Sexual Orientation and Gender Identity" - ] - }, - { - "text": "Continue its programmes aimed at poverty alleviation ", - "values": [ - "Poverty" - ] - }, - { - "text": "Create, as soon as possible, a national institution for the protection of human rights in conformity with the Paris Principles ", - "values": [ - "National Human Rights Institution" - ] - }, - { - "text": "Consider extending a standing and open invitation to special procedures mandate holders of the United Nations human rights system ", - "values": [ - "Special procedures" - ] - }, - { - "text": "Accelerate efforts to improve the existing situation in detention centres and prisons", - "values": [ - "Detention" - ] - }, - { - "text": "Adopt measures to fight domestic violence and promote the role of women in public life ", - "values": [ - "Women's rights" - ] - }, - { - "text": "In relation to high number of threats and attacks on human rights defenders, adopt further measures to ensure effective protection of personal safety of these groups, eliminate impunity of perpetrators of crimes against them, adopt concrete steps against stigmatization of human rights defenders and promote awareness-raising programmes for the public and officials about the importance and legitimacy of human rights advocacy.", - "values": [ - "Human rights defenders", - "Human rights education and training", - "Impunity" - ] - }, - { - "text": "Continue considering the incorporation of a gender perspective into policies and programmes, in accordance with what was recommended by the Committee on the Elimination of Discrimination against Women", - "values": [ - "Treaty bodies", - "Women's rights" - ] - }, - { - "text": "Complete the internal legal procedure in order to ratify ICCPR-OP 2", - "values": [ - "Death penalty", - "International instruments" - ] - }, - { - "text": "Continue to strengthen its domestic framework and institutions to combat human trafficking", - "values": [ - "Trafficking" - ] - }, - { - "text": "Take the measures necessary to ratify or accede to the 169 International Labour Organization ILO Convention, the Optional Protocol to the Convention against Torture and, in particular, the International Convention for the Protection of All Persons from Enforced Disappearance", - "values": [ - "Detention", - "Enforced disappearances", - "Indigenous peoples", - "International instruments", - "Torture and other CID treatment" - ] - }, - { - "text": "Positively consider issuing a standing invitation to the special procedures of the Human Rights Council ", - "values": [ - "Special procedures" - ] - }, - { - "text": "Expand family planning services in order to reduce significantly maternal mortality, which remains high especially in rural areas", - "values": [ - "Right to health", - "Women's rights" - ] - }, - { - "text": "Continue to implement the National Roma Integration Strategy, while addressing areas for improvement noted in the European Commission's 2014 assessment of progress", - "values": [ - "Minorities" - ] - }, - { - "text": "Develop a mechanism to gather statistics on education of indigenous groups ", - "values": [ - "Indigenous peoples", - "Right to education" - ] - }, - { - "text": "Fully staff and fund the national human rights institutions outlined in its Action Plan for Human Rights in order to better collect and analyse disaggregated data in support of laws, policies and safeguards related to women and girls", - "values": [ - "National Human Rights Institution", - "Rights of the Child", - "Women's rights" - ] - }, - { - "text": "Continue to pursue a policy ensuring that there is no distortion in the development of economic, social, cultural, civil and political rights.", - "values": [ - "CP rights - general", - "ESC rights - general" - ] - }, - { - "text": "Further promote human rights education and awareness-raising programmes in Guyana", - "values": [ - "Human rights education and training" - ] - }, - { - "text": "Allocate, if possible, additional resources to the National Identification Office in order to manage their increased workload", - "values": [ - "Other" - ] - }, - { - "text": "Ratify the International Convention on the Protection of the Rights of All Migrant Workers and Members of their Families ICRMW ", - "values": [ - "International instruments", - "Labour", - "Migrants" - ] - }, - { - "text": "Immediately cooperate to facilitate the release of political prisoners, improve prison conditions, and account for those prisoners who have disappeared ", - "values": [ - "Detention", - "Enforced disappearances", - "Freedom of opinion and expression" - ] - }, - { - "text": "Lift restrictions on freedom of expression and adopt legal and regulatory measures for the protection and safety of journalists against persecution, intimidation and harassment", - "values": [ - "Freedom of opinion and expression", - "Freedom of the press" - ] - }, - { - "text": "Ratify the Convention against Torture and Other Cruel, Inhuman, Degrading Treatment or Punishment", - "values": [ - "International instruments", - "Torture and other CID treatment" - ] - }, - { - "text": "Develop and implement a strategy to address the disproportionate enrolment of Roma children in comparison with children with disabilities in special schools.", - "values": [ - "Minorities" - ] - }, - { - "text": "Continue efforts aimed at countering gender stereotypes and discriminative attitudes, as well as at further promotion of gender equality ", - "values": [ - "Women's rights" - ] - }, - { - "text": "Continue to promote dialogue with all States on the basis of mutual respect, sovereign equality, self-determination and the right of peoples to freely choose their own political, economic and social systems", - "values": [ - "Other" - ] - }, - { - "text": "Ratify the Convention against Torture and Other Cruel, Inhuman or Degrading Treatment or Punishment and ensure that allegations of ill treatment are investigated thoroughly and independently and that the individuals responsible are held to account", - "values": [ - "International instruments", - "Torture and other CID treatment" - ] - }, - { - "text": "Take steps to improve transparency, including by improving citizens' rights to access Government-held information ", - "values": [ - "Freedom of opinion and expression" - ] - }, - { - "text": "Increase the measures taken to counter homelessness and the lack of adequate and affordable housing, especially for vulnerable people such as those living in poverty and single mothers", - "values": [ - "Poverty", - "Right to housing", - "Women's rights" - ] - }, - { - "text": "Incorporate core United Nations human rights treaties into domestic legislation", - "values": [ - "International instruments" - ] - }, - { - "text": "Establish an independent mechanism to investigate complaints related to discrimination and segregation within the schooling system ", - "values": [ - "Racial discrimination" - ] - }, - { - "text": "Continue strengthening its successful education policy with a view to achieving full inclusion in schooling for all sectors of the country as the only way to advance towards development with a human face thus achieving real social welfare of the people, for which Nicaragua has the full support of the Venezuelan Revolutionary process", - "values": [ - "Right to education" - ] - }, - { - "text": "Continue to develop comprehensive human rights training and education programmes for various sectors of society, including assessment measures ", - "values": [ - "Human rights education and training" - ] - }, - { - "text": "Reinforce the strategy to combat domestic violence, including by making available temporary shelters for victims ", - "values": [ - "Rights of the Child", - "Women's rights" - ] - }, - { - "text": "Take further steps to strengthen the independence of the judiciary, including by allocating sufficient resources and adequate training to judges and prosecutors ", - "values": [ - "Justice" - ] - }, - { - "text": "Effectively implement the Protection of Vulnerable Persons Act to ensure better protection for its vulnerable population", - "values": [ - "Minorities" - ] - }, - { - "text": "Seek the support of the international community for the establishment of a national human rights institution and finalize the revision of its constitution ", - "values": [ - "National Human Rights Institution" - ] - }, - { - "text": "Harmonize the minimum age for marriage, in accordance with the provisions of the Convention on the Rights of the Child", - "values": [ - "International instruments", - "Rights of the Child" - ] - }, - { - "text": "Establish a comprehensive transitional justice mechanism, including operationalizing of an Office of Missing Persons, a truth-seeking commission, an Office of Reparations and a judicial mechanism with a special counsel, as committed to", - "values": [ - "Justice" - ] - }, - { - "text": "Abolish laws and practices discriminating against women and girls", - "values": [ - "Rights of the Child", - "Women's rights" - ] - }, - { - "text": "Protect effectively freedom of expression of civil society, in particular for journalists and human rights defenders, so that they can carry out their activities freely without hindrance, intimidation, harassment or risk of condemnation", - "values": [ - "Civil society", - "Freedom of opinion and expression", - "Freedom of the press", - "Human rights defenders" - ] - }, - { - "text": "Provide adequate resources to fully implement its National Programme to Combat Trafficking in Human Beings, paying particular attention to combating trafficking of children ", - "values": [ - "Rights of the Child", - "Trafficking" - ] - }, - { - "text": "Implements both procedural and legislative measures to protect to the utmost extent possible migrant workers in the country ", - "values": [ - "Labour", - "Migrants" - ] - }, - { - "text": "Promote equality between men and women, and to this end reinforce its cooperation with international and regional mechanisms, especially special procedures ", - "values": [ - "Special procedures", - "Women's rights" - ] - }, - { - "text": "Establish an independent body to monitor and promote human rights, including progress made on the Truth and Reconciliation Committee's recommendations with regard to abuses committed during the Tensions", - "values": [ - "Justice" - ] - }, - { - "text": "Conduct an independent, transparent and objective investigation to improve the human rights situation through the Commission of Inquiry ", - "values": [ - "Justice" - ] - }, - { - "text": "Adopt measures to ensure the freedom of movement of the Palestinians within the OPT and lift the travel bans imposed on human rights defenders", - "values": [ - "Freedom of movement", - "Human rights defenders" - ] - }, - { - "text": "In the light of the concerns expressed by the Special Committee to Investigate Israeli Practices in the Occupied Territories, the Special Rapporteur on human rights and counter-terrorism and the High Commissioner for Human Rights regarding the continued deterioration of human rights and the humanitarian situation in the Occupied Palestinian Territory emanating from, among others, the construction of the security wall, address the violations immediately, including through the cessation of the occupation.", - "values": [ - "Freedom of movement", - "Special procedures" - ] - }, - { - "text": "Continue to advance the rule of law and to deepen the reform of the judicial system", - "values": [ - "Justice" - ] - }, - { - "text": "Resolve the problem of persons without citizenship, and prevent such cases from arising in the future ", - "values": [ - "Other", - "Statelessness and the right to nationality" - ] - }, - { - "text": "Adopt a general law on violence against women, in accordance with international standards, providing the means for its effective implementation", - "values": [ - "Women's rights" - ] - }, - { - "text": "Carry-out awareness raising campaigns on the importance of adopting a unified law on the family and increasing the minimum age for marriage ", - "values": [ - "Rights of the Child", - "Women's rights" - ] - }, - { - "text": "Make efforts to ensure the implementation of legislative provisions on the impartiality and transparency of the judicial system, including by allocating sufficient funding ", - "values": [ - "Justice" - ] - }, - { - "text": "Implement fully the recommendations of the Committee on the Rights of the Child, including by taking measures to address the issue of child labour, prohibiting corporal punishment, and raising the minimum age of criminal responsibility to an internationally acceptable level ", - "values": [ - "Justice", - "Labour", - "Rights of the Child", - "Torture and other CID treatment", - "Treaty bodies" - ] - }, - { - "text": "Implement formal and effective prevention and protection mechanisms for women victims of violence and female genital mutilation", - "values": [ - "Rights of the Child", - "Torture and other CID treatment", - "Women's rights" - ] - }, - { - "text": "Provide awareness training in the area of victim abuse for those public servants such as police, prosecutors and judges, who most frequently come into contact with victims of gender-based violence in the course of their work, to assist in their understanding of the impact such violence has on its victims, and also other family members in particular children", - "values": [ - "Human rights education and training", - "Rights of the Child", - "Women's rights" - ] - }, - { - "text": "Continue to take measures to guarantee universal access to primary health care, particularly maternal and child care services ", - "values": [ - "Right to health", - "Rights of the Child", - "Women's rights" - ] - }, - { - "text": "Strengthen its mechanisms for ensuring that the compatibility of citizen\u2019s initiative with the obligations arising from international human rights instruments to which Switzerland is a party is subject to some form of check before such initiatives are put to the vote", - "values": [ - "Other" - ] - }, - { - "text": "Sign and ratify the CERD, the ICESCR and the Optional Protocol thereto, the ICCPR and the First Optional Protocol thereto, the Optional Protocol to the CEDAW, the CAT and the Optional Protocol thereto, the two Optional Protocols to the CRC, the Convention on the Rights of Persons with Disabilities and the Optional Protocol thereto, and the International Convention for the Protection of All Persons from Enforced Disappearance ", - "values": [ - "International instruments" - ] - }, - { - "text": "Boost measures intended to achieve the elimination of all forms of ill-treatment of girls and women, in particular, strengthen efforts focusing on those communities still engaged in female genital mutilation", - "values": [ - "Rights of the Child", - "Torture and other CID treatment", - "Women's rights" - ] - }, - { - "text": "Use the terminology droits humains or droits de la personne in French, which reflects true equality between men and women.", - "values": [ - "Women's rights" - ] - }, - { - "text": "Finalize the creation and facilitate the functioning of a national council for persons with disabilities", - "values": [ - "Disabilities" - ] - }, - { - "text": "Continue efforts to implement the Zimbabwe Agenda for Sustainable Socioeconomic Transformation, in order to improve economic development and to enhance peace and security", - "values": [ - "Development", - "ESC rights - general" - ] - }, - { - "text": "Continue and strengthen policies and programmes aimed at enhancing access to justice and redress concerning violations of the rights of persons in vulnerable situations, including persons with albinism", - "values": [ - "Minorities" - ] - }, - { - "text": "Ratify the Second Optional Protocol to ICCPR aiming at the abolition of the death penalty ", - "values": [ - "Death penalty", - "International instruments" - ] - }, - { - "text": "Take concrete and immediate legislative measures to ensure the free, informed and safe participation of citizens in the electoral process in keeping with its Constitution and the Principles and Guidelines Governing Democratic Elections of the Southern African Development Community", - "values": [ - "Elections" - ] - }, - { - "text": "Continue its efforts to implement measures aimed at the economic transformation of the country", - "values": [ - "Development" - ] - }, - { - "text": "Ensure the effective implementation of the relevant action plans, including the National Roma Integration Strategy", - "values": [ - "Minorities" - ] - }, - { - "text": "Ensure access to effective asylum procedures in line with international law and ensure that migration policies fully respect the principle of non-refoulement and are in line with European Union legislation", - "values": [ - "Asylum-seekers - refugees", - "Migrants" - ] - }, - { - "text": "Reopen the Greek minority high school on Imvros island", - "values": [ - "Minorities", - "Right to education" - ] - }, - { - "text": "Put an end to forced labour practices ", - "values": [ - "Labour" - ] - }, - { - "text": "Continue ongoing efforts in promoting the culture of mutual respect and peaceful coexistence among different religious communities in the society", - "values": [ - "Freedom of religion and belief" - ] - }, - { - "text": "Continue efforts to strengthen national human rights institutions and mechanisms", - "values": [ - "National Human Rights Institution" - ] - }, - { - "text": "Take measures to prevent minors from disappearing from reception centres by identifying and ensuring the protection of children at risk of being trafficked ", - "values": [ - "Rights of the Child", - "Trafficking" - ] - }, - { - "text": "Continue promoting social values among children and youth through public programs, so that they contribute to their full development and prevent tragedies such as suicide or drug use", - "values": [ - "Rights of the Child" - ] - }, - { - "text": "Share its experience and good practices in the area of social protection and health, particularly on programmes to control epidemics, including HIV-AIDS programs and the special attention provided to those affected, as well as when it comes to providing universal medical coverage free of charge", - "values": [ - "HIV - Aids", - "Right to health" - ] - }, - { - "text": "Continue its activities in the field of the judicial and legislative reforms for speeding up the pace of litigation and judgement enforcement", - "values": [ - "Justice" - ] - }, - { - "text": "Consider endorsing and implementing the national disability policy as a tool to ensure better rights for persons with disabilities", - "values": [ - "Disabilities" - ] - }, - { - "text": "Ratify the First Optional Protocol to ICCPR, the Optional Protocol to CAT and the International Convention for the Protection of All Persons from Enforced Disappearance (CPED) ", - "values": [ - "CP rights - general", - "Detention", - "Enforced disappearances", - "International instruments", - "Torture and other CID treatment" - ] - }, - { - "text": "Comply with the recommendation of the Committee against Torture to repeal the provision of Law No. 19.992 that establishes confidentiality for 50 years of information concerning the practice of torture during the dictatorship ", - "values": [ - "Torture and other CID treatment", - "Treaty bodies" - ] - }, - { - "text": "Sign and ratify the Optional Protocol to International Covenant on Economic, Social and Cultural Rights", - "values": [ - "ESC rights - general", - "International instruments" - ] - }, - { - "text": "Continue to implement relevant legislation and policies with a view to efficiently combating bullying in schools, as part of the efforts to tackle radicalization", - "values": [ - "Right to education" - ] - }, - { - "text": "Take additional legislative and other measures to address gender inequality and racial discrimination", - "values": [ - "Racial discrimination", - "Women's rights" - ] - }, - { - "text": "Continue implementing access for all women to reproductive health services and improving the quality of care given", - "values": [ - "Right to health", - "Women's rights" - ] - }, - { - "text": "Instigate an open and inclusive national dialogue leading to early and credible elections", - "values": [ - "Elections" - ] - }, - { - "text": "Adopt comprehensive legislation to combat domestic and gender-based violence", - "values": [ - "Rights of the Child", - "Women's rights" - ] - }, - { - "text": "Combat discriminatory practices against children and adolescents belonging to minorities or in a situation of special vulnerability ", - "values": [ - "Minorities", - "Rights of the Child" - ] - }, - { - "text": "Ensure respect for freedom of expression and protection of journalists by reforming the Media Industry Development Decree 2010 and introducing freedom of information legislation that accords with international human rights standards", - "values": [ - "Freedom of opinion and expression", - "Freedom of the press", - "International instruments" - ] - }, - { - "text": "Continue to strengthen all public policies with a view to eliminating feminine genital mutilation", - "values": [ - "Rights of the Child", - "Torture and other CID treatment", - "Women's rights" - ] - }, - { - "text": "Take measures to protect and promote the rights of all ethnic minorities, including their participation in political representation entities, in public sphere and in economy", - "values": [ - "Minorities" - ] - }, - { - "text": "Adopt a national program against human trafficking, in particular of women and children, in order to prevent this crime, rehabilitate victims and prosecute perpetrators ", - "values": [ - "Rights of the Child", - "Trafficking", - "Women's rights" - ] - }, - { - "text": "Enhance education and awareness-raising to ensure maximum respect for the rights of girls", - "values": [ - "Human rights education and training", - "Rights of the Child", - "Women's rights" - ] - }, - { - "text": "Keep up its work to combat the adverse consequences of the nuclear testing programme, including the provision by its promoters of the necessary resources to deal with those consequences", - "values": [ - "Environment" - ] - }, - { - "text": "Decriminalize consensual same-sex activity between adults. ", - "values": [ - "Sexual Orientation and Gender Identity" - ] - }, - { - "text": "Continue on the path of strengthening the protection of children, particularly by continuing the fight against child begging, accelerating the modernization program of the daaras and facilitating access to justice for minors", - "values": [ - "Justice", - "Labour", - "Rights of the Child" - ] - }, - { - "text": "Ensure that agricultural policies make a more effective contribution to combating rural poverty", - "values": [ - "Poverty" - ] - }, - { - "text": "Ensure that no person is detained in unofficial facilities and investigate and prosecute all cases of enforced disappearance", - "values": [ - "Detention", - "Enforced disappearances" - ] - }, - { - "text": "Further improve the human rights situation of women and girls ", - "values": [ - "Rights of the Child", - "Women's rights" - ] - }, - { - "text": "Step up its efforts to combat racist, anti-Semitic and extremist expressions and actions ", - "values": [ - "Racial discrimination" - ] - }, - { - "text": "Work to decriminalize defamation and prevent legal retaliation against journalists for exercising their right to freedom of expression, and increase transparency of media ownership", - "values": [ - "Freedom of opinion and expression", - "Freedom of the press" - ] - }, - { - "text": "Maintain the de facto moratorium on executions that has been in force since the 1970s.", - "values": [ - "Death penalty" - ] - }, - { - "text": "Comprehensively amend or repeal, as a matter of urgency, the Witchcraft Act ", - "values": [ - "Rights of the Child", - "Women's rights" - ] - }, - { - "text": "Expedite its efforts to fully abolish the death penalty", - "values": [ - "Death penalty" - ] - }, - { - "text": "Consider adopting the principle of restorative justice, with its alternative sentencing, in the juvenile justice system", - "values": [ - "Justice", - "Rights of the Child" - ] - }, - { - "text": "Sign and ratify the Optional Protocol to the International Covenant on Economic, Social and Cultural Rights \n", - "values": [ - "ESC rights - general", - "International instruments" - ] - }, - { - "text": "Continue to work to strengthen national human rights mechanisms ", - "values": [ - "National Human Rights Institution" - ] - }, - { - "text": "Promptly ratify the Optional Protocol to the Convention against Torture and accede to the ILO Indigenous and Tribal Peoples Convention, 1989 (No. 169)", - "values": [ - "Detention", - "Indigenous peoples", - "International instruments", - "Torture and other CID treatment" - ] - }, - { - "text": "Review counter-terrorism measures which target individuals or groups based on race, ethnic background or religion, including Muslims or Muslim communities", - "values": [ - "Freedom of religion and belief", - "Racial discrimination" - ] - }, - { - "text": "Reinforce legislative measures to combat sexual exploitation and sexual abuses, in line with what the Committee on the Rights of the Child recommended ", - "values": [ - "Rights of the Child", - "Treaty bodies" - ] - }, - { - "text": "Endorse the United Nations Declaration on the Rights of Indigenous Peoples when completing its national review process ", - "values": [ - "Indigenous peoples", - "International instruments" - ] - }, - { - "text": "Develop a comprehensive legal framework that guarantees freedom of expression and a free media ", - "values": [ - "Freedom of opinion and expression", - "Freedom of the press" - ] - }, - { - "text": "Reinstate the moratorium on the use of death penalty in accordance with the Nigeria's commitment during the Universal Periodic Review in 2009", - "values": [ - "Death penalty", - "UPR process" - ] - }, - { - "text": "Review civil laws with the view of putting an end to discrimination against women and girls, in particular rights related to marriage and land property", - "values": [ - "Right to land", - "Rights of the Child", - "Women's rights" - ] - }, - { - "text": "Enhance measures for the prevention, punishment and eradication of all forms of violence against women, including measures to promote their rights and to eliminate patriarchal and discriminatory stereotypes", - "values": [ - "Women's rights" - ] - }, - { - "text": "Continue implementing its social policies and programmes with a view to strengthening social harmony, in particular to help the elderly and the low-income citizens", - "values": [ - "ESC rights - general" - ] - }, - { - "text": "Ratify in particular the two international Covenants, concerning on the one hand, the Economic, Social and Cultural Rights, and on the other hand, the Civil and Political Rights, CEDAW and CAT ", - "values": [ - "Civil society", - "ESC rights - general", - "International instruments", - "Torture and other CID treatment", - "Women's rights" - ] - }, - { - "text": "Continue to carry out its excellent effort to ensure nine years' compulsory education for all children from the age of six ", - "values": [ - "Right to education", - "Rights of the Child" - ] - }, - { - "text": "Reinforce the legal framework for the protection of children, and remove the provision in the penal code establishing the age of criminal responsibility as 7 years old, as well as the corporal punishment of children, including flagellation and amputation ", - "values": [ - "Justice", - "Rights of the Child", - "Torture and other CID treatment" - ] - }, - { - "text": "Ensure the free participation of representatives of all political parties, including the National League of Democracy as well as other non parliamentary political parties, representatives of ethnic groups and other relevant stakeholders across society in an inclusive political process ", - "values": [ - "Civil society", - "Freedom of association and peaceful assembly", - "Minorities" - ] - }, - { - "text": "Continue to cooperate with the United Nations and the Human Rights Council in protecting and promoting human rights ", - "values": [ - "Other" - ] - }, - { - "text": "Continue implementing its poverty reduction strategy and protect the rights of vulnerable groups so as to achieve a sustainable socio-economic development ", - "values": [ - "Development", - "Poverty" - ] - }, - { - "text": "Take all necessary measures so that the Truth and Reconciliation Commission can work efficiently, in particular by ensuring that it has the full cooperation of the authorities at all levels, and the necessary financial resources to carry out its mandate ", - "values": [ - "Justice" - ] - }, - { - "text": "Promptly bring individuals accused of a crime before a judge to demonstrate commitment to respect the rule of law and Guinea's obligations under Article 9 of ICCPR", - "values": [ - "International instruments", - "Justice" - ] - }, - { - "text": "Continue to combat violence against women and girls and develop a comprehensive action plan for the prevention of sexual violence and for ensuring the legal rights of victims of sexual violence", - "values": [ - "Rights of the Child", - "Women's rights" - ] - }, - { - "text": "Take measures to improve the working conditions of migrant workers", - "values": [ - "Labour", - "Migrants" - ] - }, - { - "text": "Adopt effective measures to combat crimes based on religious hate and facilitate access to justice to minority groups", - "values": [ - "Freedom of religion and belief", - "Minorities" - ] - }, - { - "text": "Reconsider its practice of voting by local residents for the granting of citizenship, as well as consider reducing the length of the period of required residency.", - "values": [ - "Migrants" - ] - }, - { - "text": "Continue to strengthen internal accountability mechanisms for all security agencies, including by investigating and prosecuting members of security agencies responsible for human rights violations", - "values": [ - "Human rights violations by state agents" - ] - }, - { - "text": "Enter into a dialogue with the civil society concerned with a view to addressing incidents of unlawful land-grabbing and evictions ", - "values": [ - "Civil society", - "Right to land" - ] - }, - { - "text": "Further pursue its efforts to ensure the increased participation of all citizens in public life ", - "values": [ - "Other" - ] - }, - { - "text": "Ratify or sign, as relevant, the International Convention on the Protection of the Rights of All Migrant Workers and Members of Their Families ICRMW, with a view to being consistent with its practice on this matter", - "values": [ - "International instruments", - "Labour", - "Migrants" - ] - }, - { - "text": "Guarantee that all allegations of attacks, threats and acts of harassment or intimidation targeting human rights defenders are subject to thorough investigations", - "values": [ - "Human rights defenders" - ] - }, - { - "text": "Include sexual orientation and gender identity amongst illegal criteria for discrimination, in social, economic and political life and eliminate norms prohibiting consenting sexual relation between adults of the same sex", - "values": [ - "CP rights - general", - "ESC rights - general", - "Sexual Orientation and Gender Identity" - ] - }, - { - "text": "Continue to counter the East Turkistan terrorist organizations to prevent their violent activities, and assist the ordinary people being deceived and victimized by these organizations to resume their normal lives", - "values": [ - "Other" - ] - }, - { - "text": "Continue to strengthen its domestic framework to enhance the protection and well-being of children in cooperation with UNICEF and relevant United Nations agencies ", - "values": [ - "Rights of the Child" - ] - }, - { - "text": "The RMI is committed to addressing domestic violence and other issues affecting women.", - "values": [ - "Women's rights" - ] - }, - { - "text": "Increase efforts to release and demobilize child fighters and implement measures to ensure their reintegration into society.", - "values": [ - "Rights of the Child" - ] - }, - { - "text": "Enhance efforts - including within the "Strategy to Strengthen the Rights of the Child in Sweden" - to prevent and eliminate discrimination against children belonging to ethnic minorities, child members of immigrant families and child refugees and asylum seekers", - "values": [ - "Asylum-seekers - refugees", - "Minorities", - "Racial discrimination", - "Rights of the Child" - ] - }, - { - "text": "Take effective measures to respond to child abuse by establishing a comprehensive child protection policy", - "values": [ - "Rights of the Child" - ] - }, - { - "text": "Ensure the universality of human rights, safeguarding and protecting human rights of all Nigerians irrespective of gender, age, sexual orientation, gender identity or religious affiliation ", - "values": [ - "Freedom of religion and belief", - "Sexual Orientation and Gender Identity", - "Women's rights" - ] - }, - { - "text": "Amend its Juvenile Act to reach the international standards and particularly change the definition of juveniles to ensure that all persons under 18 years old are provided with protection and guarantees ", - "values": [ - "Justice", - "Rights of the Child" - ] - }, - { - "text": "Take urgent measures for the implementation of the recommendations of the UNHCR, the United Nations Human Rights Treaty Bodies and Special Procedures as regards asylum seekers and illegal migrants", - "values": [ - "Asylum-seekers - refugees", - "Migrants", - "Special procedures", - "Treaty bodies" - ] - }, - { - "text": "Amend the relevant legislation in order to abolish capital punishment entirely, in line with the Second Optional Protocol to the International Covenant on Civil and Political Rights", - "values": [ - "Death penalty", - "International instruments" - ] - }, - { - "text": "Continue efforts aimed at ensuring protection of the rights of persons with intellectual and psychological disabilities who require a high level of support, including through allocation of the necessary financial resources", - "values": [ - "Disabilities" - ] - }, - { - "text": "Ensure adequate protection of defenders of human rights that help LGBT persons ", - "values": [ - "Human rights defenders", - "Sexual Orientation and Gender Identity" - ] - }, - { - "text": "Strengthen international cooperation with other countries on poverty reduction, the realization of the MDGs and good governance", - "values": [ - "Development", - "Justice", - "Poverty" - ] - }, - { - "text": "Establish an effective and inclusive process to follow-up on universal periodic review recommendations, bearing in mind that the active participation of civil society is essential to a meaningful review process", - "values": [ - "Civil society", - "UPR process" - ] - }, - { - "text": "Continue to promote the rights of communities of African descent, in particular children\u2019s rights", - "values": [ - "Minorities", - "Rights of the Child" - ] - }, - { - "text": "Continue its efforts to fight against discriminatory and racist behaviour and trends", - "values": [ - "Racial discrimination" - ] - }, - { - "text": "Consider taking more effective measures to eliminate discrimination against female immigrants and minority women in all areas, in particular in employment and education. ", - "values": [ - "Migrants", - "Minorities", - "Women's rights" - ] - }, - { - "text": "Put in line with the non-discrimination principle provided by CEDAW, the Persons and Family Code and the law governing inheritance, marriages regime and bequests", - "values": [ - "International instruments", - "Women's rights" - ] - }, - { - "text": "Pay greater attention to the respect for women's rights when adopting legislative measures and abrogate all discriminatory measures against women.", - "values": [ - "Women's rights" - ] - }, - { - "text": "Consider partnership in the Extractive Industries Transparency Initiative, as a measure against corruption and a means towards poverty reduction", - "values": [ - "Business and human rights", - "Corruption", - "Poverty" - ] - }, - { - "text": "Take necessary steps to incorporate elements of human rights education in the training of law enforcement agencies ", - "values": [ - "Human rights education and training" - ] - }, - { - "text": "Undertake reform and an investment plan to improve conditions in the penitentiary system.", - "values": [ - "Detention" - ] - }, - { - "text": "Continue to make efforts to enhance the awareness among workers and employers on laws and rules on labour by implementing concrete programmes for awareness-raising", - "values": [ - "Human rights education and training", - "Labour" - ] - }, - { - "text": "Implement mechanisms that permit the prevention of social conflicts, particularly through integrating human rights in training for police forces", - "values": [ - "Human rights education and training" - ] - }, - { - "text": "Consider the possibility of extending an invitation to special procedures to visit China taking into account the appropriate balance between economic, social and cultural rights and civil and political rights", - "values": [ - "Special procedures" - ] - }, - { - "text": "Review the reservation to CRC and CEDAW", - "values": [ - "International instruments", - "Rights of the Child", - "Women's rights" - ] - }, - { - "text": "Continue to develop the capacities of institutions working with persons with disabilities, including educational and health institutions ", - "values": [ - "Disabilities", - "Right to education", - "Right to health" - ] - }, - { - "text": "Implement the adversarial criminal justice system throughout Panama", - "values": [ - "Justice" - ] - }, - { - "text": "Strengthen legislation to combat trafficking, sexual and labour exploitation and other types of exploitation of persons, in particular women and children", - "values": [ - "Labour", - "Rights of the Child", - "Trafficking", - "Women's rights" - ] - }, - { - "text": "Consider the extension of an open and standing invitation to the United Nations special procedures ", - "values": [ - "Special procedures" - ] - }, - { - "text": "Produce and publish a plan to eliminate child and forced labour, with clear and specific objectives, milestones and timelines", - "values": [ - "Labour", - "Rights of the Child" - ] - }, - { - "text": "Continue to develop and ensure an effective policy in combating organized crime and corruption", - "values": [ - "Corruption" - ] - }, - { - "text": "Continue implementing the national action plan for the promotion and protection of human rights (2013-2023) ", - "values": [ - "General" - ] - }, - { - "text": "Adopt urgent measures to eradicate the practice of unregistered marriages, through public awareness campaigns in order to ensure that no marriage takes place before the legal age of marriage ", - "values": [ - "Human rights education and training", - "Rights of the Child" - ] - }, - { - "text": "Publish the conclusions of the inquiry into the death of an Angolan national during a deportation procedure in October 2010 ", - "values": [ - "Migrants" - ] - }, - { - "text": "Given the low level of children's education and the illiteracy rates, implement measures necessary to change the landscape in this area and promote the reintegration of child soldiers in society.", - "values": [ - "International humanitarian law", - "Right to education", - "Rights of the Child" - ] - }, - { - "text": "Consider acceding to the 1990 International Convention on the Protection of the Rights of All Migrant Workers and Members of Their Families", - "values": [ - "International instruments", - "Labour", - "Migrants" - ] - }, - { - "text": "Continue its efforts to prevent the spread of HIV/AIDS in the country, in line with its National Strategic Plan for HIV Prevention and Control 2008-2013", - "values": [ - "HIV - Aids" - ] - }, - { - "text": "Continue the improvement and enhancing of the use of information and communications technologies in education", - "values": [ - "Right to education" - ] - }, - { - "text": "Continue its efforts to provide children at risk with easy access to the necessary psychological care", - "values": [ - "Right to health", - "Rights of the Child" - ] - }, - { - "text": "Continue its efforts to raise the quality of education for all in order to protect the promotion of human rights", - "values": [ - "Right to education" - ] - }, - { - "text": "Adopt at the earliest a decree establishing a national commission to fight against trafficking in persons", - "values": [ - "Trafficking" - ] - }, - { - "text": "Take appropriate measures to expedite the ongoing legal proceedings against supporters of former President Laurent Gbagbo, and investigate and punish, when appropriate, crimes committed by the forces of President Ouattara", - "values": [ - "Justice" - ] - }, - { - "text": "Strengthen mechanisms for detaining, identifying and providing assistance to vulnerable migrants at borders, in full compliance with international law", - "values": [ - "International instruments", - "Migrants" - ] - }, - { - "text": "Complete the internal process to adhere to the Second Optional Protocol to the International Covenant on Civil and Political Rights on abolition of the death penalty, as early as possible", - "values": [ - "Death penalty", - "International instruments" - ] - }, - { - "text": "Consider the adoption of a de jure moratorium on executions with a view to abolish the death penalty", - "values": [ - "Death penalty" - ] - }, - { - "text": "Ensure the identification, protection and access of victims to justice and guarantee effective investigations into cases of trafficking", - "values": [ - "Justice", - "Trafficking" - ] - }, - { - "text": "Amend the law on public association and mass gathering as well as media legislation to comply with international standards, including by decriminalizing defamation", - "values": [ - "Freedom of association and peaceful assembly", - "Freedom of opinion and expression", - "Freedom of the press" - ] - }, - { - "text": "Strengthen steps to protect children from the worst forms of child labour ", - "values": [ - "Labour", - "Rights of the Child" - ] - }, - { - "text": "Put in place effective measures to prevent discrimination, prosecution and punishment on the basis of sexual orientation or gender identity ", - "values": [ - "Sexual Orientation and Gender Identity" - ] - }, - { - "text": "Take all necessary legislative and policy measures to address and prevent all forms of violence against children in all settings, including corporal punishment, and to strengthen the awareness-raising activities", - "values": [ - "Human rights education and training", - "Rights of the Child", - "Torture and other CID treatment" - ] - }, - { - "text": "Become party without delay to the Convention on the Rights of Persons with Disabilities", - "values": [ - "Disabilities", - "International instruments" - ] - }, - { - "text": "Take the measures necessary to address the situation related to the absence of a control mechanism for detention procedures, in accordance with international human rights standards", - "values": [ - "Detention", - "International instruments" - ] - }, - { - "text": "Continue its efforts to reach the Millennium Development Goals by 2015 and increase the number of its primary and secondary schools ", - "values": [ - "Development", - "Right to education" - ] - }, - { - "text": "Ensure asylum seekers have access to a timely individualized refugee status determination and provide for the release of those detained under the Anti Infiltration Law, in accordance with the recent decision by the Israeli High Court of Justice", - "values": [ - "Asylum-seekers - refugees", - "Detention" - ] - }, - { - "text": "Ensure the effective implementation of the national plan of action for prevention, assistance and eradication of violence against women 2017-2019, established by Law No. 26485", - "values": [ - "Women's rights" - ] - }, - { - "text": "Create or reinforce a transparent, effective and accountable system that includes all levels of the government and representative of the civil society, including indigenous people, to monitor and publicly and regularly report on the implementation of Canada's human rights obligations", - "values": [ - "Civil society", - "Indigenous peoples", - "International instruments" - ] - }, - { - "text": "Provide all children with equal opportunities to study and give them access to higher education based on their talent and individual capability ", - "values": [ - "Right to education" - ] - }, - { - "text": "Strengthen its cooperation with treaty bodies", - "values": [ - "Treaty bodies" - ] - }, - { - "text": "Take effective measures to combat the root causes of discrimination on the basis of race and religion and against ethnic minority groups, and to consider establishing a platform for dialogue with the representatives of the ethnic minority groups in order to be properly informed of their problems and needs, and to develop, with their participation, appropriate steps to improve the situation", - "values": [ - "Freedom of religion and belief", - "Minorities", - "Racial discrimination" - ] - }, - { - "text": "Proceed swiftly with the ratification of CEDAW", - "values": [ - "International instruments", - "Women's rights" - ] - }, - { - "text": "Carry out effective and independent investigations on excessive use of force by law enforcement officials in order to bring to justice those responsible ", - "values": [ - "Human rights violations by state agents" - ] - }, - { - "text": "Consider withdrawing the declaration regarding article 124 of the Rome Statute.", - "values": [ - "International instruments", - "Justice" - ] - }, - { - "text": "Effectively combat all manifestations of Islamophobia and promote tolerance, intercultural dialogue and respect for diversity in the society", - "values": [ - "Freedom of religion and belief", - "Racial discrimination" - ] - }, - { - "text": "Fully guarantee the right to freedom of expression online/offline by revising relevant laws, including by repealing arrest, trial and imprisonment of persons exercising their freedom of opinion through media and Internet", - "values": [ - "Detention", - "Freedom of opinion and expression", - "Freedom of the press" - ] - }, - { - "text": "Ensure that the new plan for a reorganization of the justice sector, as mentioned in the Government Program 2015-2020, guarantees the impartiality of the courts, full access for all citizens, and sufficient resources at all levels", - "values": [ - "Justice" - ] - }, - { - "text": "Adopt legislation that prohibits any form of racial profiling and furthermore strengthen its efforts to promote the humane treatment of migrants and people of non-Irish origin by the Garda Síochána and other law enforcement personnel in accordance with international human rights law ", - "values": [ - "International instruments", - "Migrants", - "Racial discrimination" - ] - }, - { - "text": "Continue its momentum on legislations and judiciary reforms toward strengthening the rule of law state, good governance and broader participation of people in socio-economic decision-making processes and human rights protection and promotion in the country", - "values": [ - "ESC rights - general", - "Justice" - ] - }, - { - "text": "Follow-up the recommendation made by the Committee on the Elimination of Discrimination against Women in 2007 regarding the implementation of a strategy to modify or eliminate negative cultural practices and stereotypes that are harmful to and discriminate against women ", - "values": [ - "Torture and other CID treatment", - "Treaty bodies", - "Women's rights" - ] - }, - { - "text": "Nominate an ombudsperson for children ", - "values": [ - "National Human Rights Institution", - "Rights of the Child" - ] - }, - { - "text": "Approve a comprehensive law on the fight against human trafficking especially for women ", - "values": [ - "Trafficking", - "Women's rights" - ] - }, - { - "text": "Give INDECOM the power it needs to investigate criminal acts committed by the Police", - "values": [ - "Justice" - ] - }, - { - "text": "Take effective measures to end all forms of discrimination against ethnic minorities, in particular the Serb minority and the Sinti and Roma", - "values": [ - "Minorities", - "Racial discrimination" - ] - }, - { - "text": "Take effective measures to ensure that persons with disabilities and detained persons can exercise their right to vote ", - "values": [ - "Detention", - "Disabilities", - "Elections" - ] - }, - { - "text": "Ban all organizations that promote and incite racial discrimination, and adopt clear measures to effectively combat racially motivated violence by the law enforcement officers", - "values": [ - "Human rights violations by state agents", - "Racial discrimination" - ] - }, - { - "text": "Take the necessary measures to follow up on the recommendations of CEDAW, notably by enshrining gender equality in its Constitution and by criminalizing domestic violence, and to place particular attention on gender issues in the preparation of policies.", - "values": [ - "Treaty bodies", - "Women's rights" - ] - }, - { - "text": "Introduce effective policies with more resources to reduce the dropout rate at all school levels ", - "values": [ - "Right to education" - ] - }, - { - "text": "Complete the process of renovating correctional facilities and ensure that they adhere to approved international standards", - "values": [ - "Detention" - ] - }, - { - "text": "Ensure the effective implementation of freedom of assembly, and, in particular, guarantee that participants in peaceful assemblies, as well as civil society activists and political parties, are free from pressure and are not prosecuted for exercising this right ", - "values": [ - "Civil society", - "Freedom of association and peaceful assembly" - ] - }, - { - "text": "Ratify the Second Optional Protocol to the International Covenant on Civil and Political Rights, aiming at the abolition of the death penalty, as well as Protocols No. 6 and No. 13 to the European Convention for the Protection of Human Rights and Fundamental Freedoms, with the aim of abolishing the death penalty", - "values": [ - "Death penalty", - "International instruments" - ] - }, - { - "text": "Allow representatives of international organizations and nongovernmental organizations to work in the country and guarantee the exercise of freedom of expression in conformity with the International Covenant on Civil and Political Rights ", - "values": [ - "Civil society", - "Freedom of opinion and expression", - "International instruments" - ] - }, - { - "text": "Ensure equality of all persons before the law, by including gender, sexual orientation and disability as grounds for non-discrimination in relevant constitutional or legal provisions", - "values": [ - "Disabilities", - "Sexual Orientation and Gender Identity", - "Women's rights" - ] - }, - { - "text": "Strengthen existing efforts to ensure a safe and healthy environment ", - "values": [ - "Environment" - ] - }, - { - "text": "Further fulfil the internationally taken obligations as well as implement the ratified international treaties", - "values": [ - "International instruments" - ] - }, - { - "text": "Bring Grenada's legislation into conformity with international law, by decriminalizing consensual same-sex relations between adults and prohibiting all forms of discrimination based on sexual orientation and gender identity", - "values": [ - "Sexual Orientation and Gender Identity" - ] - }, - { - "text": "Continue efforts to promote the empowerment of women and the protection of their rights", - "values": [ - "Women's rights" - ] - }, - { - "text": "Take measures to guarantee the legal protection of women in cohabitating relationships, as well as those who were previously in such relationships, and provide assistance to women victims of domestic violence through the creation of an adequate number of reception and rehabilitation facilities ", - "values": [ - "Women's rights" - ] - }, - { - "text": "Raise the minimum age of criminal responsibility according to the general comment No. 10 of the Committee on the Rights of the Child", - "values": [ - "Justice", - "Rights of the Child", - "Treaty bodies" - ] - }, - { - "text": "Continue to take the necessary measures to ensure free and mandatory primary education and increase public expenditure in the area of education", - "values": [ - "Right to education" - ] - }, - { - "text": "Amend the Constitution to include freedom from discrimination on the grounds of sex.", - "values": [ - "Women's rights" - ] - }, - { - "text": "Eliminate discrimination against women ", - "values": [ - "Women's rights" - ] - }, - { - "text": "Take effective measures to safeguard the rights of prisoners and to improve the living conditions, including medical and health services, for detainees", - "values": [ - "Detention" - ] - }, - { - "text": "Amend and harmonize all relevant laws in order to ensure that child marriage is strictly prohibited and criminalized", - "values": [ - "Rights of the Child" - ] - }, - { - "text": "Strengthen effectively the protection of the rights of indigenous peoples, including to their ancestors' lands", - "values": [ - "Indigenous peoples", - "Right to land" - ] - }, - { - "text": "Take measures to address inequities in access to HIV-AIDS treatment and support, particularly in rural areas. ", - "values": [ - "HIV - Aids" - ] - }, - { - "text": "Take all necessary measures to ensure the effective application of the Federal Act to prevent and punish Torture", - "values": [ - "Torture and other CID treatment" - ] - }, - { - "text": "Take effective measures to combat racism and incitement to racial hatred ", - "values": [ - "Racial discrimination" - ] - }, - { - "text": "Ratify the Convention on the Rights of Persons with Disabilities ", - "values": [ - "Disabilities", - "International instruments" - ] - }, - { - "text": "Implement measures to address the sex ratio imbalance in its population given the harm that occurs when many women and girls are missing, and put in place safeguards that ensure policies related to the family are consent-based", - "values": [ - "Women's rights" - ] - }, - { - "text": "Become party to the 1954 and 1961 statelessness conventions and take all steps necessary to implement their content", - "values": [ - "International instruments", - "Statelessness and the right to nationality" - ] - }, - { - "text": "Strengthen interministerial coordination for a better implementation of the current Children's Action Plan ", - "values": [ - "Rights of the Child" - ] - }, - { - "text": "Ratify international human rights instruments, particularly, the Convention against Torture and other Cruel Inhuman or Degrading Treatment or Punishment's Optional Protocol, the International Convention for the Protection of All Persons from Enforced Disappearance, the Optional Protocol on the Convention on the Elimination of All Forms of Discrimination against Women as well as the ILO Convention 169 concerning Indigenous and Tribal Peoples in Independent Countries ", - "values": [ - "International instruments" - ] - }, - { - "text": "Consider the ratification of the Palermo Protocol on Trafficking in Persons ", - "values": [ - "International instruments", - "Trafficking" - ] - }, - { - "text": "Continue constructive cooperation with international human rights mechanisms to protect and promote human rights", - "values": [ - "Technical assistance and cooperation" - ] - }, - { - "text": "Improve conditions in Georgian prisons, including in relation to overcrowding and inadequate health care ", - "values": [ - "Detention" - ] - }, - { - "text": "Continue efforts to eliminate domestic violence through implementation of its Framework Act on Gender Equality", - "values": [ - "Rights of the Child", - "Women's rights" - ] - }, - { - "text": "Continue its efforts towards eliminating negative sexist stereotypes that lead to discrimination against women, both in the public and private life ", - "values": [ - "Women's rights" - ] - }, - { - "text": "Seek technical assistance in order to submit overdue reports to the relevant treaty body mechanisms", - "values": [ - "Technical assistance and cooperation", - "Treaty bodies" - ] - }, - { - "text": "Take the necessary steps, as soon as possible, to address the issues of inadequate protection of children from sexual exploitation as well as the insufficient investigation of the perpetrators of sexual crimes against children and the consequent low ratio of prosecutions against perpetrators of sexual crimes against children ", - "values": [ - "Rights of the Child" - ] - }, - { - "text": "Continue to expand the range of main international human rights instruments in effect in the country, in particular through the ratification of the United Nations Convention against Torture and Other Cruel, Inhuman or Degrading Treatment or Punishment", - "values": [ - "International instruments", - "Torture and other CID treatment" - ] - }, - { - "text": "Improve existing measures on combating violence against children as a key obligation under the Convention on the Rights of the Child and other international human rights instruments", - "values": [ - "International instruments", - "Rights of the Child" - ] - }, - { - "text": "Continue efforts to adopt an action plan for the employment of women", - "values": [ - "Women's rights" - ] - }, - { - "text": "Adopt norms, and apply existing provisions, with a view to protect the rights of religious minorities and ensure the preservation of religious sites", - "values": [ - "Freedom of religion and belief", - "Minorities" - ] - }, - { - "text": "Take effective measures to investigate and prosecute all incidents and acts of violence targeting individuals based on sexual orientation", - "values": [ - "Sexual Orientation and Gender Identity" - ] - }, - { - "text": "Ensure that any interference with the right to privacy is consistent with international human rights standards, especially with the principles of legality, necessity and proportionality", - "values": [ - "Privacy" - ] - }, - { - "text": "Redouble its efforts to combat abuse and sexual exploitation of minors, by improving the mechanisms for its early detection, by encouraging complaints of cases of real or suspected abuse in order to ensure a thorough investigation, prosecution of those responsible and adequate rehabilitation of victims ", - "values": [ - "Rights of the Child" - ] - }, - { - "text": "Strengthen efforts to make further progress in the health-related MDGs ", - "values": [ - "Right to health" - ] - }, - { - "text": "Establishment of compulsory health insurance and a medical care fund", - "values": [ - "Right to health" - ] - }, - { - "text": "Continue reform of the judiciary and the penitentiary system", - "values": [ - "Detention", - "Justice" - ] - }, - { - "text": "Ensure amendment of the relevant laws to adequately address issues of domestic violence and spousal abuse and to ensure prosecution of all alleged perpetrators", - "values": [ - "Rights of the Child", - "Women's rights" - ] - }, - { - "text": "Continue strengthening actions directed at the implementation of the law on access to public information", - "values": [ - "Freedom of opinion and expression" - ] - }, - { - "text": "Set up a legal framework to recognize indigenous peoples\u2019 rights to have access to and manage their territories of origin and their natural resources, and to participate in the decision-making processes on those matters concerning them", - "values": [ - "Indigenous peoples", - "Right to land" - ] - }, - { - "text": "Further enhance the cooperation with civil society in the promotion of human rights ", - "values": [ - "Civil society" - ] - }, - { - "text": "Improve schools and other educational facilities and environments to meet the needs of persons with disabilities ", - "values": [ - "Disabilities", - "Right to education" - ] - }, - { - "text": "Sign the Optional Protocol to the International Covenant on Economic, Social and Cultural Rights.", - "values": [ - "ESC rights - general", - "International instruments" - ] - }, - { - "text": "Establish a moratorium on the use of the death penalty, as a first step towards the complete abolition of this practice", - "values": [ - "Death penalty" - ] - }, - { - "text": "Take measures to create and strengthen the system of public care for boys, girls and adolescents who need such care, to ensure that they stay in the system until the age of 18 years as needed and that they are prepared for successful reintegration into society ", - "values": [ - "Rights of the Child" - ] - }, - { - "text": "Strengthen measures in the area of transitional justice related to justice, truth, reparations and guarantees, to prevent a repetition ", - "values": [ - "Justice" - ] - }, - { - "text": "Continue its efforts to raise awareness in rural communities about marriage laws and the dangers of child, early and forced marriage ", - "values": [ - "Human rights education and training", - "Rights of the Child", - "Women's rights" - ] - }, - { - "text": "Continue strengthening anti-corruption policies and ensure wider access to justice for every citizen, including through the provision of free legal assistance to the most vulnerable groups", - "values": [ - "Corruption", - "Justice" - ] - }, - { - "text": "Strengthen the interministerial committee to combat trafficking in persons to provide effective protection to victims of trafficking, particularly women and children", - "values": [ - "Rights of the Child", - "Trafficking", - "Women's rights" - ] - }, - { - "text": "Strengthen measures to combat gender-based violence, particularly by emphasizing awareness-raising in education and supporting programmes for the economic empowerment of women, especially in rural areas ", - "values": [ - "Human rights education and training", - "Women's rights" - ] - }, - { - "text": "Take steps to ensure that laws on gender equality and domestic violence are enforced effectively", - "values": [ - "Rights of the Child", - "Women's rights" - ] - }, - { - "text": "Adopt effective measures such as the establishment of an institution or specific mechanism tasked to monitor the situation of Roma, including the compilation of disaggregated data on education, health, employment and housing, which should be an independent body empowered to receive complaints about excessive use of force and ill-treatment against Roma by the Czech police.", - "values": [ - "Minorities" - ] - }, - { - "text": "Strengthen the rule of law by providing adequate human rights training and education to members of the administration and particularly the judiciary, including on the rights of suspects, accused and detainees during criminal proceedings", - "values": [ - "Detention", - "Human rights education and training" - ] - }, - { - "text": "Commit itself to reinforcing civilian control of the military and civilian security forces, and develop training programmes focused on ensuring respect for the rule of law and human rights ", - "values": [ - "Human rights education and training", - "Justice" - ] - }, - { - "text": "Reinforce mechanisms to detect and investigate cases of domestic violence, train law enforcement officials to deal with such cases and fully implement the provisions of the National Plan for Preventing Violence for the period 2015-2020", - "values": [ - "Rights of the Child", - "Women's rights" - ] - }, - { - "text": "Ensure that counter-terrorist measures are fully consistent with Bahrain\u2019s international human rights obligations", - "values": [ - "Counter-terrorism", - "International instruments" - ] - }, - { - "text": "Fight against domestic violence and remedy the low representation of educated women in the technical and professional domains", - "values": [ - "Rights of the Child", - "Women's rights" - ] - }, - { - "text": "Investigate thoroughly complaints from citizens about excessive use of force and other serious alleged abuse by the police and make public the findings of these investigations ", - "values": [ - "Human rights violations by state agents" - ] - }, - { - "text": "Expedite the legal procedures relating to the Bahraini nationality act of 1963, thus allowing citizenship to be granted, without restrictions, to children of Bahraini women married to foreigners", - "values": [ - "Rights of the Child", - "Statelessness and the right to nationality" - ] - }, - { - "text": "Eliminate from the Criminal Code the crime of guilt by association", - "values": [ - "Justice" - ] - }, - { - "text": "Respecting the core labour standards and promoting corporate social responsibility throughout Tanzania, and in particular, develop and implement measures to eliminate child labour ", - "values": [ - "Business and human rights", - "Labour", - "Rights of the Child" - ] - }, - { - "text": "Strengthen efforts to promote a transparent political system by streamlining judicial procedures to investigate and prosecute corruption expeditiously", - "values": [ - "Corruption", - "Justice" - ] - }, - { - "text": "Acknowledge the right of all Palestinian refugees to return to their homeland, as enshrined in the Fourth Geneva Convention", - "values": [ - "Asylum-seekers - refugees", - "International humanitarian law", - "International instruments" - ] - }, - { - "text": "Reinforce existing legislation to ensure a fair judicial treatment, especially for the most vulnerable categories, such as women and children", - "values": [ - "Justice", - "Rights of the Child", - "Women's rights" - ] - }, - { - "text": "Provide all the material and human means to ensure the success of the National Human Rights Plan which was ratified by Parliament for the period 2014-2019", - "values": [ - "General" - ] - }, - { - "text": "Take further steps in order establish an independent national human rights institution giving emphasis to the protection of women's rights", - "values": [ - "National Human Rights Institution", - "Women's rights" - ] - }, - { - "text": "Accelerate plans for the adoption and implementation of a national strategy for children", - "values": [ - "Rights of the Child" - ] - }, - { - "text": "Share experiences and best practices with regard to the treatment of prisoners ", - "values": [ - "Detention" - ] - }, - { - "text": "Take practical measures to combat sexist, domestic and sexual violence", - "values": [ - "Rights of the Child", - "Women's rights" - ] - }, - { - "text": "Conform the recently adopted amendments to the Criminal Code to international human rights standards, promptly investigate attacks on journalists and human rights defenders and hold accountable the perpetrators", - "values": [ - "Freedom of the press", - "Human rights defenders", - "International instruments" - ] - }, - { - "text": "Enable and support the Afghan Independent Human Rights Commission to continue its work as an effective and independent institution, including a transparent selection process of Commissioners, and by adequately funding the Commission on a permanent basis ", - "values": [ - "National Human Rights Institution" - ] - }, - { - "text": "Set an example itself accepting that the thousand of migrants workers from its development partners should be able to live in Germany benefiting from the protection of the International Convention on the Protection of the Rights of All Migrant Workers and Members of Their Families as it can truly protect the most elementary rights", - "values": [ - "International instruments", - "Labour", - "Migrants" - ] - }, - { - "text": "Put in place a concrete strategy for the comprehensive implementation of the 2011 Law on Discrimination Based on Caste and Untouchability", - "values": [ - "Minorities", - "Racial discrimination" - ] - }, - { - "text": "Ratify the Optional Protocol to the Convention against Torture in keeping with the commitment undertaken by Australia during its previous UPR", - "values": [ - "Detention", - "International instruments", - "Torture and other CID treatment", - "UPR process" - ] - }, - { - "text": "Consider the introduction of legislative amendments which permit more efficient indictment for crimes related to torture and other cruel, inhuman or degrading treatments ", - "values": [ - "Torture and other CID treatment" - ] - }, - { - "text": "Take measures to comprehensively address discrimination against individuals on the basis of their sexual orientation or gender identity ", - "values": [ - "Sexual Orientation and Gender Identity" - ] - }, - { - "text": "Ensure that acts of discrimination against LGBT persons and persons belonging to other vulnerable groups are properly investigated and perpetrators held accountable ", - "values": [ - "Sexual Orientation and Gender Identity" - ] - }, - { - "text": "Continue furthering the sexual and reproductive health and rights of all women by immediately putting an end to camp-based sterilization operations in accordance with the Supreme Court order of 14 September 2016, by ensuring all women access to counselling on and access to the full range of modern contraceptives in a voluntary, safe and quality manner, and by providing comprehensive sexuality education", - "values": [ - "Right to health", - "Women's rights" - ] - }, - { - "text": "Take measures to establish an official moratorium on executions with a view to abolishing the death penalty for all crimes and consider introducing appropriate constitutional provisions to warrant this", - "values": [ - "Death penalty" - ] - }, - { - "text": "Take all possible measures to address violence against women and girls ", - "values": [ - "Rights of the Child", - "Women's rights" - ] - }, - { - "text": "Progressively implement economic, social and cultural rights, notably by ensuring the appropriate level of social expenditures ", - "values": [ - "ESC rights - general" - ] - }, - { - "text": "Draft and enact legislation prohibiting and punishing all forms of trafficking in persons, including the forced labour of migrants. Promulgate laws imposing stricter punishments for violations, and hold employers who violate laws accountable and establish a national minimum wage", - "values": [ - "Labour", - "Migrants", - "Trafficking" - ] - }, - { - "text": "Establish effective consultation processes with the indigenous peoples and communities concerned for any project that might affect their territory or livelihoods", - "values": [ - "Indigenous peoples", - "Right to land" - ] - }, - { - "text": "Amend legislation in the area of adoption of children in order to better ensure the protection of the rights of children ", - "values": [ - "Rights of the Child" - ] - }, - { - "text": "Continue its cooperation with the Office of the High Commissioner for Human Rights on all issues of mutual interest ", - "values": [ - "Technical assistance and cooperation" - ] - }, - { - "text": "Pursue this route of promoting and protecting human rights and to be encouraged by the international community, more particularly the Human Rights Council.", - "values": [ - "General" - ] - }, - { - "text": "Establish a clear and comprehensive definition of violence against children, and prosecute all forms of violence, including domestic violence", - "values": [ - "Rights of the Child", - "Women's rights" - ] - }, - { - "text": "Guarantee the inapplicability of laws and customs which discriminate against women and increase awareness-raising activities in this area", - "values": [ - "Human rights education and training", - "Women's rights" - ] - }, - { - "text": "Continue with actions aimed at improving the treatment of children with disabilities and children affected and/or infected by HIV/AIDS", - "values": [ - "HIV - Aids", - "Rights of the Child" - ] - }, - { - "text": "Develop credit mechanisms and programmes to facilitate the acquisition of housing", - "values": [ - "Right to housing" - ] - }, - { - "text": "Support and implement the Presidential Decree for 2009-2011, on the development of the juvenile justice system", - "values": [ - "Justice", - "Rights of the Child" - ] - }, - { - "text": "Harmonize the Venezuelan legal framework related to the right to the freedom of expression with the country's international obligations", - "values": [ - "Freedom of opinion and expression" - ] - }, - { - "text": "Redouble its efforts to promote access to higher education on conditions of equality and to reduce financial barriers that prevent access to that level of education ", - "values": [ - "Right to education" - ] - }, - { - "text": "Endeavour to implement fully the Constitution and operationalize the key human rights promotion institutions that it establishes", - "values": [ - "General" - ] - }, - { - "text": "Issue a standing invitation to United Nations Special Procedures mandate holders", - "values": [ - "Special procedures" - ] - }, - { - "text": "Establish a moratorium on the implementation of Article 347bis of the Penal Code that "shall be punished by imprisonment of six months to five years and a fine a person who has sexual relations with a person of the same sex" and encourage non-violence towards all, regardless of sexual orientation, as well as the protection of defenders of these rights, including their lawyers ", - "values": [ - "Human rights defenders", - "Sexual Orientation and Gender Identity" - ] - }, - { - "text": "Promptly ratify the Optional Protocol to the Convention against Torture and Other Cruel, Inhuman or Degrading Treatment or Punishment", - "values": [ - "International instruments", - "Torture and other CID treatment", - "Treaty bodies" - ] - }, - { - "text": "Seek technical assistance in various areas from the international community, particularly OHCHR.", - "values": [ - "Technical assistance and cooperation" - ] - }, - { - "text": "Ensure that the immigration law and its proposed amendments are in compliance with the principle of non-refoulement and the prohibition of inhuman or degrading treatment, most importantly the provisions allowing for summary return of migrants and refugees without due process", - "values": [ - "Asylum-seekers - refugees", - "Migrants", - "Torture and other CID treatment" - ] - }, - { - "text": "Implement previous commitments to increase state resources allocated to Arab Israeli and Bedouin communities, especially for education, and ensure equal access to education, housing, healthcare and employment for individuals in these communities", - "values": [ - "Labour", - "Minorities", - "Right to education", - "Right to health", - "Right to housing", - "UPR process" - ] - }, - { - "text": "Commit itself to establishing judicial procedures that uphold the rights of those accused of crimes and sent to court, or release people held in pre-trial detention ", - "values": [ - "Detention", - "Justice" - ] - }, - { - "text": "Implement social safety net programmes and increase funding for seniors and the handicapped", - "values": [ - "Disabilities" - ] - }, - { - "text": "Continue to promote gender equality through its policies and programmes", - "values": [ - "Women's rights" - ] - }, - { - "text": "Take the necessary measures to prevent the use of torture, in particular by security forces in prisons, as noted by a number of special rapporteurs", - "values": [ - "Special procedures", - "Torture and other CID treatment" - ] - }, - { - "text": "Continue the efforts for the adoption of a law on religious communities which aims to guarantee their freedom of conscience and consolidates the fight against discrimination in that regard", - "values": [ - "Freedom of religion and belief" - ] - }, - { - "text": "Continue intensifying efforts to provide high quality education and medical services to the population, including in remote rural areas ", - "values": [ - "Right to education", - "Right to health" - ] - }, - { - "text": "Continue promoting the active and effective participation of women at all decision levels ", - "values": [ - "Women's rights" - ] - }, - { - "text": "Enhance measures to protect the rights of children, women and other vulnerable groups", - "values": [ - "Rights of the Child", - "Women's rights" - ] - }, - { - "text": "Take further structural measures in order to reduce the school dropout rate ", - "values": [ - "Right to education" - ] - }, - { - "text": "Further reform the law on same-sex marriage and change the concept of the traditional family as enshrined in the Constitution", - "values": [ - "Sexual Orientation and Gender Identity" - ] - }, - { - "text": "Continue its efforts to further promote participation of women in decision-making in all spheres of public life ", - "values": [ - "Women's rights" - ] - }, - { - "text": "Devote more efforts in the field of harmonizing gender equality for guaranteeing their equal rights ", - "values": [ - "Women's rights" - ] - }, - { - "text": "Further safeguard and promote the rights of women by placing greater emphasis on the fight against domestic violence and violence against women", - "values": [ - "Women's rights" - ] - }, - { - "text": "Develop policies and programmes to prevent armed violence in order to reduce violent deaths, with particular attention to Juvenile", - "values": [ - "Public security", - "Rights of the Child" - ] - }, - { - "text": "Continue its efforts to finalize and submit the Children's Bill", - "values": [ - "Rights of the Child" - ] - }, - { - "text": "Withdraw its reservation to article 37(c) of the Convention on the Rights of the Child (CRC) regarding the separation of children deprived of liberty from adults", - "values": [ - "International instruments", - "Rights of the Child" - ] - }, - { - "text": "Intensify efforts to end harmful traditional customs such as female genital mutilation and recruitment of child soldiers ", - "values": [ - "International humanitarian law", - "Rights of the Child", - "Torture and other CID treatment", - "Women's rights" - ] - }, - { - "text": "Ratify the Convention on the Rights of Persons with Disabilities and repeal any legislative provision that limits the full enjoyment of the rights of this sector of the population", - "values": [ - "Disabilities", - "International instruments" - ] - }, - { - "text": "Adopt new measures to investigate and judge those responsible for the attack on the Argentine Israelite Mutual Association in 1994", - "values": [ - "Justice" - ] - }, - { - "text": "Increase measures to provide judges with continuous training on the areas of principles, jurisprudence and international human rights principles, in line with the recommendations of the Special Rapporteur on the independence of judges and lawyers", - "values": [ - "Justice", - "Special procedures" - ] - }, - { - "text": "Intensify its efforts to combat domestic violence including rape and work against the impunity for this violence, take measures such as awareness-raising and training of the police officials in the judicial system and medical officers ", - "values": [ - "Impunity", - "Rights of the Child", - "Women's rights" - ] - }, - { - "text": "Take measures to ensure the independence of the judiciary", - "values": [ - "Justice" - ] - }, - { - "text": "Pursue its national policies as outlined in its national report for its second UPR", - "values": [ - "UPR process" - ] - }, - { - "text": "Further amend the Law on Police to bring it in line with international standards ", - "values": [ - "General" - ] - }, - { - "text": "Respect the right to freedom of opinion and expression, as accepted during the previous UPR cycle, and refrain from imposing any undue restriction on this right, including with regard to the new draft media law ", - "values": [ - "Freedom of opinion and expression", - "Freedom of the press", - "UPR process" - ] - }, - { - "text": "Adopt the WHO Strategic Approach to strengthen sexual and reproductive health policies and programmes", - "values": [ - "Right to health", - "Women's rights" - ] - }, - { - "text": "Continue the projects addressed to improve the human rights situation in Haiti, particularly the free and universal schooling and the reform of the judiciary ", - "values": [ - "Justice", - "Right to education" - ] - }, - { - "text": "Introduce measures to promote tolerance and non-discrimination of the LGBT persons ", - "values": [ - "Sexual Orientation and Gender Identity" - ] - }, - { - "text": "Eliminate from the Criminal Code the criminalization of same-sex sexual relationships and at the same time redouble efforts to end discrimination against the LGBT group ", - "values": [ - "Sexual Orientation and Gender Identity" - ] - }, - { - "text": "Accept visits from United Nations special rapporteurs, and in particular to accept the request\nmade by the Special Rapporteur on freedom of religion or belief, which has been awaiting a response\nsince 2006 ", - "values": [ - "Freedom of religion and belief", - "Special procedures" - ] - }, - { - "text": "That all sides of Libya's conflict immediately cease armed hostilities and engage constructively in the United Nations Support Mission in Libya-led political dialogue, and use this opportunity to build a State based on democracy and respect for human rights and rule of law", - "values": [ - "Justice" - ] - }, - { - "text": "Continue to vigorously investigate and prosecute other trafficking offenses and punish perpetrators of sex trafficking", - "values": [ - "Trafficking" - ] - }, - { - "text": "Set in place effective campaigns to inform and sensitize the population on the matter of domestic violence", - "values": [ - "Human rights education and training", - "Rights of the Child", - "Women's rights" - ] - }, - { - "text": "Continue making efforts for protecting and promoting human rights and improving the living conditions", - "values": [ - "General" - ] - }, - { - "text": "Abolish stoning as a form of capital punishment and consider abolishing "apostasy" as a capital offence", - "values": [ - "Death penalty", - "Torture and other CID treatment" - ] - }, - { - "text": "Restrict the application of the death penalty not only to the most serious crimes but also according to the international minimum standards. consider the establishment of a moratorium on the use of the death penalty with a view to its abolition.", - "values": [ - "Death penalty" - ] - }, - { - "text": "Develop a multi-ethnic learning environment in schools, aimed at reconciliation among ethnic groups", - "values": [ - "Minorities", - "Right to education" - ] - }, - { - "text": "Establish an independent National Human Rights Institution in accordance with the Paris Principles", - "values": [ - "National Human Rights Institution" - ] - }, - { - "text": "Refrain from subjecting the civilian population to collective punishment", - "values": [ - "Other" - ] - }, - { - "text": "Consider adopting a comprehensive gender equality law that encompasses a definition of discrimination against women in accordance with the CEDAW and prohibits domestic violence and spousal rape ", - "values": [ - "International instruments", - "Women's rights" - ] - }, - { - "text": "Reflect and take measures on how to make media more responsible in addressing trafficking issues, in order to make an additional input to tackling this scourge ", - "values": [ - "Trafficking" - ] - }, - { - "text": "Adopt a law on national minorities that would safeguard the respect of language rights of minorities in accordance with Lithuania's international obligations", - "values": [ - "Minorities" - ] - }, - { - "text": "Allocate greater resources so as to significantly improve the rate of school enrolment among girls and the literacy rate among women and girls ", - "values": [ - "Right to education", - "Rights of the Child", - "Women's rights" - ] - }, - { - "text": "Seek to address, as a matter of priority, any rules and customs that discriminate against women.", - "values": [ - "Women's rights" - ] - }, - { - "text": "Adopt laws to deal with the situation of persons not enjoying the highest level of physical and mental health with regards to the 2001 Act on Mental Health and bring its provisions in line with the CRPD", - "values": [ - "International instruments", - "Right to health" - ] - }, - { - "text": "Intensify its efforts and take appropriate measures to guarantee the right of opinion, freedom of expression and freedom of assembly.", - "values": [ - "Freedom of association and peaceful assembly", - "Freedom of opinion and expression" - ] - }, - { - "text": "Consider ratifying the Rome Statute of the International Criminal Court.", - "values": [ - "International instruments", - "Justice" - ] - }, - { - "text": "Implement a statelessness status determination procedure to ensure the protection of stateless persons who are not refugees", - "values": [ - "Asylum-seekers - refugees", - "Statelessness and the right to nationality" - ] - }, - { - "text": "Continue efforts to protect and promote economic, social and cultural rights, especially in the field of food, health and education", - "values": [ - "ESC rights - general", - "Right to education", - "Right to food", - "Right to health" - ] - }, - { - "text": "Transpose the Rome Statute of the International Criminal Court into national law", - "values": [ - "International instruments", - "Justice" - ] - }, - { - "text": "Introduce ex-officio prosecution for all acts of domestic violence.", - "values": [ - "Rights of the Child", - "Women's rights" - ] - }, - { - "text": "Continue its efforts in providing migrants and other sectors in vulnerable situations greater access to health, education and other social services, in the face of an increased number of migrants entering Europe", - "values": [ - "Migrants", - "Right to education", - "Right to health" - ] - }, - { - "text": "Facilitate the registration of all births and promote, in line with article 7 of the Convention on the Rights of the Child, birth registration of those children who were not registered at birth, in particular in the rural and remote areas of the country. Simultaneously, provide training to personnel in charge of birth registration", - "values": [ - "International instruments", - "Rights of the Child", - "Statelessness and the right to nationality" - ] - }, - { - "text": "Strengthen the capacity of the Legal Protection Centre for Children to strengthen the administration of child justice ", - "values": [ - "Justice", - "Rights of the Child" - ] - }, - { - "text": "Continue its efforts to promote the rights of the child and pursue its fight to eradicate the FGM which still persists in the country ", - "values": [ - "Rights of the Child", - "Torture and other CID treatment", - "Women's rights" - ] - }, - { - "text": "Implement a comprehensive reform of the penitentiary system that addresses concerns expressed by international observers and in particular the European Committee for the Prevention of Torture and Inhuman or Degrading Treatment or Punishment.", - "values": [ - "Detention" - ] - }, - { - "text": "Amend all statutory and customary laws to establish the minimum age of marriage at 18 years and take concrete steps to implement this legislation, in line with the Convention on the Rights of the Child", - "values": [ - "International instruments", - "Rights of the Child" - ] - }, - { - "text": "Adopt a comprehensive law on violence against women, with a particular emphasis on the protection of victims, accountability of perpetrators as well as on awareness-raising to encourage reporting of domestic and sexual violence ", - "values": [ - "Human rights education and training", - "Rights of the Child", - "Women's rights" - ] - }, - { - "text": "Continue to reduce the gap between urban and rural areas in the field of education", - "values": [ - "Right to education" - ] - }, - { - "text": "Lift the declaration of recognizing Article 14 of the International Convention on the Elimination of All Forms of Racial Discrimination", - "values": [ - "International instruments", - "Racial discrimination" - ] - }, - { - "text": "Continue efforts in the sector of the judicial system with the support of the international community.", - "values": [ - "Justice", - "Technical assistance and cooperation" - ] - }, - { - "text": "Work with and through media to promote tolerance among all citizens of Croatia, and take measures to address the stereotyping of some groups of citizens based on their origin", - "values": [ - "Racial discrimination" - ] - }, - { - "text": "Fully address the concerns published in the 4 November report of the European Committee for the Prevention of Torture and Inhuman or Degrading Treatment or Punishment.", - "values": [ - "Torture and other CID treatment" - ] - }, - { - "text": "Pay special attention to the situation of indigenous people in programmes-strategies to reduce-eradicate poverty", - "values": [ - "Indigenous peoples", - "Poverty" - ] - }, - { - "text": "Operationalize the fund establishment for compensation of victims of the unfortunate events recently faced Bahrain, in accordance with relevant best practices", - "values": [ - "Justice" - ] - }, - { - "text": "Amend the Children\u2019s Act with the aim of prohibiting virginity tests on children, irrespective of their age", - "values": [ - "Rights of the Child" - ] - }, - { - "text": "Take all necessary measures to protect the rights of migrant workers and members of their families, particularly by ensuring their access to an effective remedy before a competent authority for the protection of their rights and prosecute and punish civil servants responsible for acts of ill-treatment and offences against them", - "values": [ - "Human rights violations by state agents", - "Labour", - "Migrants", - "Torture and other CID treatment" - ] - }, - { - "text": "Consider the adoption of proper reforms in order to improve the protection of freedom for human rights defenders to carry on their initiatives", - "values": [ - "Human rights defenders" - ] - }, - { - "text": "Continue the programmes aimed at improving the living conditions of its population ", - "values": [ - "Development" - ] - }, - { - "text": "Intensify the efforts and measures to consolidate the state of law and its national mechanisms on human rights ", - "values": [ - "National Human Rights Institution" - ] - }, - { - "text": "Strengthen the capacity to investigate, punish and prosecute complaints presented against public security forces and reinforce the autonomy of the Directorate of Complaints, Discipline and Internal Investigations Department (CDIID) office in charge of punishing corrupt practices and abuse in the use of force ", - "values": [ - "Corruption", - "Human rights violations by state agents", - "Justice" - ] - }, - { - "text": "Provide adequate and stable funding for care centres and shelters for women and children victims of domestic violence", - "values": [ - "Rights of the Child", - "Women's rights" - ] - }, - { - "text": "End the judaization of Jerusalem", - "values": [ - "Freedom of religion and belief" - ] - }, - { - "text": "Adopt a national action plan on Security Council resolution 1325 on Women, Peace and Security", - "values": [ - "Women's rights" - ] - }, - { - "text": "Take effective measures to strengthen the independence of the judiciary. ", - "values": [ - "Justice" - ] - }, - { - "text": "Continue to raise awareness to eradicate existing prejudices and stereotypes against people with a migration background and foreigners", - "values": [ - "Human rights education and training", - "Migrants" - ] - }, - { - "text": "Agree a precise and early date for the visit by the Special Rapporteur on the situation of human rights defenders ", - "values": [ - "Human rights defenders", - "Special procedures" - ] - }, - { - "text": "Raise the minimum age of criminal responsibility to an acceptable level, in compliance with international standards ", - "values": [ - "Rights of the Child" - ] - }, - { - "text": "Proceed with the early conclusion of the International Convention for the Protection of All Persons from Enforced Disappearance", - "values": [ - "Enforced disappearances", - "International instruments" - ] - }, - { - "text": "Draw up policies to identify, evaluate and provide a systemic response to unpaid work in order to redistribute domestic and care work between the State, the market and the family", - "values": [ - "Labour" - ] - }, - { - "text": "Ratify the Rome Statute of the International Criminal Court and continue training of law enforcement officials.", - "values": [ - "International instruments", - "Justice" - ] - }, - { - "text": "Take further steps to promote tolerance, cultural diversity and integration in the country and internationally", - "values": [ - "General" - ] - }, - { - "text": "Categorize statelessness as a protection status and provide stateless persons expedited and affordable access to British nationality", - "values": [ - "Statelessness and the right to nationality" - ] - }, - { - "text": "Sign and ratify OP-CAT and CED ", - "values": [ - "Detention", - "Enforced disappearances", - "International instruments", - "Torture and other CID treatment" - ] - }, - { - "text": "Fully respect its human rights obligations, not only in its own territory, but also in places under its control, such as the Occupied Palestine Territories, as recalled by treaty bodies and the International Court of Justice.", - "values": [ - "International instruments", - "Justice", - "Treaty bodies" - ] - }, - { - "text": "Continue efforts, including by raising awareness, in order to prevent domestic violence and violence against women", - "values": [ - "Rights of the Child", - "Women's rights" - ] - }, - { - "text": "The Lao PDR will consider signing the Convention against Torture and Other Cruel, Inhuman or Degrading Treatment and Punishment (CAT), ratifying the Convention on the Protection of All Persons from Enforced Disappearance, acceding to human rights conventions and other conventions such as the International Labour Organizations (ILO) conventions, etc.", - "values": [ - "Enforced disappearances", - "International instruments", - "Labour", - "Torture and other CID treatment" - ] - }, - { - "text": "Ratify the Optional Protocol to the International Covenant on Economic, Social and Cultural Rights, and the Hague Convention on Protection of Children and Cooperation in respect of Intercountry Adoption ", - "values": [ - "ESC rights - general", - "International instruments", - "Rights of the Child" - ] - }, - { - "text": "Clearly voice its intention to guarantee the protection of ethnic and religious minorities and formalize post-referendum agreements on citizenship rights which will safeguard civil, political, economic, social and cultural rights on an equal footing as citizens - regarding people of both northern and southern Sudan origin ", - "values": [ - "Freedom of religion and belief", - "Minorities" - ] - }, - { - "text": "Continue the efforts to combat hate speech", - "values": [ - "Racial discrimination" - ] - }, - { - "text": "Continue efforts to accede to international human rights treaties, particularly the Convention against Torture and Other Cruel, Inhuman or Degrading Treatment (CAT) ", - "values": [ - "International instruments", - "Torture and other CID treatment" - ] - }, - { - "text": "Ensure that human rights are respected by multinational corporations", - "values": [ - "Business and human rights" - ] - }, - { - "text": "Continue the measures to combat HIV incidence through the implementation of the National Strategic Plan for HIV Prevention", - "values": [ - "HIV - Aids" - ] - }, - { - "text": "Take steps to implement the recommendations of treaty bodies ", - "values": [ - "Treaty bodies" - ] - }, - { - "text": "Continue adopting comprehensive legislation to combat discrimination, including against women", - "values": [ - "Women's rights" - ] - }, - { - "text": "Continue its efforts to support developing countries in their fight against poverty through its development assistances ", - "values": [ - "Development", - "Poverty" - ] - }, - { - "text": "Make further efforts to generate public awareness about human rights, including through human rights education ", - "values": [ - "Human rights education and training" - ] - }, - { - "text": "Further adopt policies and measures for the advancement of women and against their discrimination, with a view to a reduction in female unemployment and the elimination of wage differentials ", - "values": [ - "Women's rights" - ] - }, - { - "text": "Maintain its contributions of Official Development Assistance (ODA) at the internationally agreed level of 0.7 per cent of its GNP ", - "values": [ - "Development" - ] - }, - { - "text": "Strengthen cooperation with all the mechanisms of this Council", - "values": [ - "Special procedures" - ] - }, - { - "text": "Consider the accession to core human rights instruments and to other main international human rights treaties that it is not yet a party to", - "values": [ - "International instruments" - ] - }, - { - "text": "Pursue the legislative work initiated in 2014 to protect journalists, human rights defenders and some members of the judiciary in the fight against crime", - "values": [ - "Freedom of the press", - "Human rights defenders", - "Justice" - ] - }, - { - "text": "Continue its efforts in finalising the bill to combat trafficking in persons and to provide appropriate funding and resources on programmes and activities in this regard", - "values": [ - "Trafficking" - ] - }, - { - "text": "Ensure that laws and policies on the fight against terrorism are in accordance with international human rights standards", - "values": [ - "Counter-terrorism" - ] - }, - { - "text": "Continue implementing the priorities set for the promotion and protection of women's rights in the country", - "values": [ - "Women's rights" - ] - }, - { - "text": "Carry out further awareness-raising campaigns to combat trafficking in persons, and include this issue in the school programmes, for a greater prevention of the phenomenon", - "values": [ - "Human rights education and training", - "Trafficking" - ] - }, - { - "text": "Expressly prohibit in national legislation violence against children in all settings, including at home, schools, penal institutions and centres of alternative care ", - "values": [ - "Rights of the Child" - ] - }, - { - "text": "Continue to combat impunity, including by strengthening laws and regulations as well as their implementation", - "values": [ - "Impunity", - "Justice" - ] - }, - { - "text": "Ratify the the Optional Protocol to the Convention against Torture and establish a national preventive mechanism accordingly", - "values": [ - "Detention", - "International instruments", - "Torture and other CID treatment" - ] - }, - { - "text": "Maintain, in strict compliance of law, to avoid impunity for people who are qualifying themselves as human rights defenders with the objective of attacking the interests of the state and the people of China", - "values": [ - "Other" - ] - }, - { - "text": "Strengthen its efforts to increase the number of women participating in political life, in particular at the national level, and to revise the national Assembly Elections Act to accelerate the political advancement of women in the forthcoming elections", - "values": [ - "Women's rights" - ] - }, - { - "text": "Extend the free primary education policy throughout the country ", - "values": [ - "Right to education" - ] - }, - { - "text": "Establish land commissions at the community level. ", - "values": [ - "Right to land" - ] - }, - { - "text": "Adopt measures to investigate, prosecute and punish those responsible for serious human rights crimes such as enforced disappearances, in accordance with international norms and in a transparent manner.", - "values": [ - "Enforced disappearances" - ] - }, - { - "text": "Ensure that all prisoners or detainees have access to legal counsel and relatives ", - "values": [ - "Detention" - ] - }, - { - "text": "Ensure that all allegations of serious human rights violations by law enforcement officials are investigated in full and dealt with appropriately ", - "values": [ - "Human rights violations by state agents" - ] - }, - { - "text": "Implement the prerogatives of the consultative and participatory council on indigenous peoples created in 2016", - "values": [ - "Indigenous peoples" - ] - }, - { - "text": "Further advance to democratize communication and information", - "values": [ - "Freedom of opinion and expression" - ] - }, - { - "text": "Take all necessary measures to prevent torture and ensure that the absolute prohibition of torture is observed.", - "values": [ - "Torture and other CID treatment" - ] - }, - { - "text": "Continue its ongoing efforts and commitment to uphold the lives of its people through the provision of best education, housing and medical care", - "values": [ - "Right to education", - "Right to health", - "Right to housing" - ] - }, - { - "text": "Take adequate measures to reduce and eradicate incidents of sexual gender-based violence committed by armed elements and establish and strengthen accountability mechanisms", - "values": [ - "Rights of the Child", - "Women's rights" - ] - }, - { - "text": "Provide legal remedies and assistance for victims of trafficking in persons", - "values": [ - "Trafficking" - ] - }, - { - "text": "Continue its efforts to achieve the MDGs on the 2015 horizon ", - "values": [ - "Development" - ] - }, - { - "text": "Broaden the definition of violence in the Law on the Prevention of Domestic Violence, according to international standards, with a view to eliminating all forms of violence against women and girls", - "values": [ - "Rights of the Child", - "Women's rights" - ] - }, - { - "text": "Continue, as matter of priority, efforts to prohibit corporal punishment, of children as well as of adults, and to allocate necessary resources to allow the full implementation of the Convention on the Rights of the Child.", - "values": [ - "International instruments", - "Rights of the Child", - "Torture and other CID treatment" - ] - }, - { - "text": "Complete the planned elaboration of a law on human rights", - "values": [ - "General" - ] - }, - { - "text": "Fully respect freedom of press and expression", - "values": [ - "Freedom of opinion and expression", - "Freedom of the press" - ] - }, - { - "text": "Take measures to reduce the backlog of cases before the courts in order to ensure that justice is served promptly and efficiently and that accused persons are guaranteed due process", - "values": [ - "Justice" - ] - }, - { - "text": "Investigate, and in the future prevent, cases mentioned by CESCR of the denied access of Roma to health services and their segregation in hospitals, including the existence of separate maternity wards for Roma women in some hospitals ", - "values": [ - "Minorities", - "Right to health", - "Treaty bodies" - ] - }, - { - "text": "Develop an additional framework to secure food necessities, with the cooperation of the international community ", - "values": [ - "Right to food", - "Technical assistance and cooperation" - ] - }, - { - "text": "Keep up with the environment of freedom of publication and freedom of expression", - "values": [ - "Freedom of opinion and expression", - "Freedom of the press" - ] - }, - { - "text": "Strengthen measures, including through international dialogue and cooperation, to combat human trafficking and provide appropriate assistance to victims of trafficking ", - "values": [ - "Trafficking" - ] - }, - { - "text": "Continue to provide adequate resources to its anti-trafficking programs", - "values": [ - "Trafficking" - ] - }, - { - "text": "Step up efforts to promote, in law and in practice, the inclusion of persons of African descent in the educational system and on the labour market by taking policy measures", - "values": [ - "Labour", - "Minorities", - "Racial discrimination", - "Right to education" - ] - }, - { - "text": "Release all political prisoners and address torture and prisoner welfare - including by allowing independent monitoring of prisons ", - "values": [ - "Detention", - "Freedom of opinion and expression", - "Torture and other CID treatment" - ] - }, - { - "text": "Release immediately and rehabilitate all those imprisoned without credible criminal charges ", - "values": [ - "Detention" - ] - }, - { - "text": "Extend standing invitations to thematic special procedures of international and regional human rights bodies and allow such visits to Venezuela", - "values": [ - "Special procedures" - ] - }, - { - "text": "Continue its efforts to guarantee full equality, opportunities and treatment for women and continue implementing national development plans ", - "values": [ - "Women's rights" - ] - }, - { - "text": "Continue harmonizing its domestic legislation with its international human rights obligations ", - "values": [ - "International instruments" - ] - }, - { - "text": "Closely monitor the investigation and prosecution of cases of domestic and sexual violence and their effectiveness, improve access to justice for victims of such violence and provide training in the field of domestic and sexual violence for judges, police, prosecutors and other relevant professionals", - "values": [ - "Human rights education and training", - "Rights of the Child", - "Women's rights" - ] - }, - { - "text": "Continue to implement appropriate, efficient policies to facilitate the integration of all its ethnic communities ", - "values": [ - "Minorities" - ] - }, - { - "text": "Implement the recommendations of the Council and special procedures, particularly the Special Rapporteur on the situation of human rights in the Palestinian territories occupied since 1967 and the Special Committee on Israeli Practices in the Occupied Palestinian Territories.", - "values": [ - "Special procedures" - ] - }, - { - "text": "Pay particular attention to continuing and disseminating the culture of human rights among young people as part of its educational and pedagogical programme.", - "values": [ - "Human rights education and training" - ] - }, - { - "text": "Continue with its commitment to promoting awareness among the largest possible number of countries regarding the importance of ratifying ICRMW ", - "values": [ - "International instruments", - "Labour", - "Migrants" - ] - }, - { - "text": "Further develop measures to ensure that an inclusive education system be available and accessible to all children, including those with disabilities and improve the quality and infrastructure of schools", - "values": [ - "Disabilities", - "Right to education", - "Rights of the Child" - ] - }, - { - "text": "Provide appropriate employment opportunities for women, ensuring equal wages for men and women", - "values": [ - "Women's rights" - ] - }, - { - "text": "Take further measures to prevent violence and discrimination against ethnic minorities.", - "values": [ - "Minorities", - "Racial discrimination" - ] - }, - { - "text": "Consider repealing the discriminatory practice in the inheritance laws.", - "values": [ - "Women's rights" - ] - }, - { - "text": "Take the necessary measures to allow the judicial system to effectively fight against impunity, including through judicial processes that are carried out within reasonable deadlines", - "values": [ - "Impunity", - "Justice" - ] - }, - { - "text": "Establish a system providing children and their parents the real opportunity to choose from among religious, multi-denominational or non-denominational types of schooling and curricula", - "values": [ - "Freedom of religion and belief", - "Right to education", - "Rights of the Child" - ] - }, - { - "text": "Continue its efforts in combating HIV-AIDS ", - "values": [ - "HIV - Aids" - ] - }, - { - "text": "Increase resources from the State budget and mobilize more financial resources from international cooperation to implement policies on social security ", - "values": [ - "ESC rights - general", - "Technical assistance and cooperation" - ] - }, - { - "text": "Continue to maintain its significant achievements in the empowerment of women ", - "values": [ - "Women's rights" - ] - }, - { - "text": "Take advantage of measures to prevent and combat domestic violence", - "values": [ - "Rights of the Child", - "Women's rights" - ] - }, - { - "text": "Continue efforts to answer queries and questionnaires submitted by Special Procedures mandate holders ", - "values": [ - "Special procedures" - ] - }, - { - "text": "Prohibit federal law enforcement authorities from engaging in racial profiling", - "values": [ - "Human rights violations by state agents", - "Racial discrimination" - ] - }, - { - "text": "Respect the fundamental principle of equality between men and women, in particular by allowing women from Brunei Darussalam to transmit their nationality to their children and by raising the age of marriage for women ", - "values": [ - "Women's rights" - ] - }, - { - "text": "Strengthen the action of the Dialogue, Truth and Reconciliation Commission in line with the National Programme on Social Cohesion", - "values": [ - "Justice" - ] - }, - { - "text": "Continue to promote and protect the right of all persons to equality without discrimination based on sexual orientation, at both the national and international levels.", - "values": [ - "Sexual Orientation and Gender Identity" - ] - }, - { - "text": "Advance with the agenda for the indigenous peoples\u2019 right to free, prior and informed consent", - "values": [ - "Indigenous peoples" - ] - }, - { - "text": "Carry out an annual review of the 1958 Armed Forces Special Powers Act aiming to gradually reduce its geographic scope ", - "values": [ - "Justice" - ] - }, - { - "text": "Finalize the ratification of the International Convention for the Protection of All Persons from Enforced Disappearance", - "values": [ - "Enforced disappearances", - "International instruments" - ] - }, - { - "text": "Ratify the International Covenant on Civil and Political Rights and the other core international human rights instruments, as well as their optional protocols", - "values": [ - "CP rights - general", - "Death penalty", - "International instruments" - ] - }, - { - "text": "Amend or repeal national laws that discriminate against women and do not prevent violence against women sufficiently, including family laws, laws and procedures related to the authority of guardians of women, nationality laws and housing regulations", - "values": [ - "Statelessness and the right to nationality", - "Women's rights" - ] - }, - { - "text": "Continue to build up the national human rights institutional framework, in particular the Human Rights Commission, and ensure its effective functioning", - "values": [ - "National Human Rights Institution" - ] - }, - { - "text": "Improve the legislation and the activity of State institutions in combating discrimination, ethnic strife and different forms of extremism ", - "values": [ - "Minorities", - "Racial discrimination" - ] - }, - { - "text": "Increase the inputs in education and give special attention to vocational training, improving quality of its labour force, and guarantee the right to work", - "values": [ - "Labour", - "Right to education" - ] - }, - { - "text": "Continue its efforts specifically with regard to over-crowding of prisons and prison violence", - "values": [ - "Detention" - ] - }, - { - "text": "Continue its efforts to reduce poverty ", - "values": [ - "Poverty" - ] - }, - { - "text": "Redouble efforts in order to ensure the full incorporation of the provisions of the Convention on the Elimination of All Forms of Discrimination against Women into domestic legislation", - "values": [ - "International instruments", - "Women's rights" - ] - }, - { - "text": "Continue actions aimed at the promotion of an environment of tolerance and cultural diversity in order to prevent cases of discrimination in schools ", - "values": [ - "Racial discrimination" - ] - }, - { - "text": "Consider implementing, as appropriate, the recommendations of human rights treaty bodies and special procedures with respect to asylum seekers and irregular immigrants, especially children ", - "values": [ - "Asylum-seekers - refugees", - "Migrants", - "Rights of the Child", - "Special procedures", - "Treaty bodies" - ] - }, - { - "text": "Increasing mainstreaming of human rights value in education curricula ", - "values": [ - "Human rights education and training" - ] - }, - { - "text": "Continue and deepen the implementation of measures to avoid and prevent discrimination against minorities and indigenous populations, including through consultations with the different indigenous peoples", - "values": [ - "Indigenous peoples", - "Minorities", - "Racial discrimination" - ] - }, - { - "text": "Promote the rights of women and enable them to participate more effectively in public life ", - "values": [ - "Women's rights" - ] - }, - { - "text": "Adopt a comprehensive definition of discrimination against women in line with article 1 of the Convention on the Elimination of All Forms of Discrimination against Women", - "values": [ - "International instruments", - "Women's rights" - ] - }, - { - "text": "Take measures to prevent and prosecute cases of torture and ill- treatment, namely, through the adoption, in its legislation of a definition of torture in compliance with the Convention against Torture and the International Covenant on Civil and Political Rights", - "values": [ - "CP rights - general", - "International instruments" - ] - }, - { - "text": "Enact legislation to abolish the death penalty", - "values": [ - "Death penalty" - ] - }, - { - "text": "Continue addressing, as a priority, the effects of HIV/AIDS on women and children as a priority, in particular, the mother-to-child transmission", - "values": [ - "HIV - Aids", - "Rights of the Child", - "Women's rights" - ] - }, - { - "text": "Enact all the necessary measures to effectively implement the Action Plan to end recruitment of children", - "values": [ - "International humanitarian law", - "Rights of the Child" - ] - }, - { - "text": "Accelerate the revision of the Genocide Ideology Law by precisely defining the crime in line with international standards, and ensuring that intention, assistance and incitement to genocide are clearly stated in the definition ", - "values": [ - "Justice" - ] - }, - { - "text": "Raise the age of marriage to 18 for both boys and girls", - "values": [ - "Rights of the Child" - ] - }, - { - "text": "Step up efforts aimed at improving the situation of women, also through education and specific awareness-raising campaigns about the perils of female genital mutilation (FGM)", - "values": [ - "Rights of the Child", - "Torture and other CID treatment", - "Women's rights" - ] - }, - { - "text": "Respond positively to requests for visits by the United Nations Special Rapporteurs on torture and freedom of opinion and expression", - "values": [ - "Freedom of opinion and expression", - "Special procedures", - "Torture and other CID treatment" - ] - }, - { - "text": "Ratify the international human rights instruments which it is not yet a party to ", - "values": [ - "International instruments" - ] - }, - { - "text": "Continue its efforts to ensure legal protection against abuse of women, children and the elderly in families", - "values": [ - "Rights of the Child", - "Women's rights" - ] - }, - { - "text": "Continue to make efforts to follow up on the recommendations made in the previous universal periodic review on peaceful protests", - "values": [ - "Freedom of association and peaceful assembly", - "UPR process" - ] - }, - { - "text": "Address more the deep-rooted gender stereotypes that perpetuated discrimination against women", - "values": [ - "Women's rights" - ] - }, - { - "text": "Continue its efforts to improve the situation of children in different aspects ", - "values": [ - "Rights of the Child" - ] - }, - { - "text": "Take effective legal and practical measures to eliminate all forms of discrimination and violence against women and children, particularly women and children belonging to ethnic and religious minorities, including Muslims who still face multiple forms of discrimination with respect to education, health, employment and social and political participation ", - "values": [ - "Freedom of religion and belief", - "Minorities", - "Racial discrimination", - "Rights of the Child", - "Women's rights" - ] - }, - { - "text": "Properly investigate and prosecute perpetrators of attacks against human rights defenders", - "values": [ - "Human rights defenders" - ] - }, - { - "text": "Guarantee the implementation and the effectiveness of the Children\u2019s Code, particularly making accessible the relevant public services and providing the necessary human and financial resources", - "values": [ - "Rights of the Child" - ] - }, - { - "text": "Continue the efforts in fighting social inequalities and poverty, especially of women and children, by promoting the respect for fundamental human rights and adopting policies that provide favourable conditions of work, in line with international human rights law", - "values": [ - "International instruments", - "Poverty", - "Rights of the Child", - "Women's rights" - ] - }, - { - "text": "Continue to work on improving the situation of children's rights.", - "values": [ - "Rights of the Child" - ] - }, - { - "text": "Consider signing and ratifying the Optional Protocol to the Convention against Torture and other Cruel, Inhuman or Degrading Treatment OP-CAT ", - "values": [ - "Detention", - "International instruments", - "Torture and other CID treatment" - ] - }, - { - "text": "Continue the work of the Truth and Reconciliation Commission", - "values": [ - "Justice" - ] - }, - { - "text": "Continue to protect the family as the basic social unit ", - "values": [ - "Other" - ] - }, - { - "text": "Continue to seek effective ways, through international mechanisms, to hold to account those responsible for violations of human rights and international humanitarian law in those parts of Ukraine which are de facto controlled by the Russian Federation", - "values": [ - "International humanitarian law" - ] - }, - { - "text": "Strengthen human rights education ", - "values": [ - "Human rights education and training" - ] - }, - { - "text": "Take all the appropriate measures to ensure the creation of a functional and independent judiciary ", - "values": [ - "Justice" - ] - }, - { - "text": "Continue to take measures to end all forms of violence against women and expedite the finalization of amendments to the Prevention of Domestic Violence Act", - "values": [ - "Women's rights" - ] - }, - { - "text": "Strengthen the rule of law and the current legal reform process for better ensuring equality, freedom and enjoyment of all human rights for its people, especially vulnerable groups like women and children", - "values": [ - "Justice", - "Rights of the Child", - "Women's rights" - ] - }, - { - "text": "Establish a task force of relevant ministries and civil society organizations to develop a plan to desegregate Roma education and to ensure the necessary resources are available to begin implementation ", - "values": [ - "Civil society", - "Minorities", - "Right to education" - ] - }, - { - "text": "Finalize the procedure of ratification of Convention against Torture and the Optional Protocol thereto", - "values": [ - "Detention", - "International instruments", - "Torture and other CID treatment" - ] - }, - { - "text": "Foster harmonization of its domestic legislation with its international obligations", - "values": [ - "General" - ] - }, - { - "text": "With the support of international institutions, submit the various pending initial and periodic reports", - "values": [ - "Treaty bodies" - ] - }, - { - "text": "Adopt a specific plan to protect the rights of indigenous peoples and a strategy to make basic services more accessible to the Pygmy minority", - "values": [ - "Indigenous peoples" - ] - }, - { - "text": "Continue the implementation of the national strategic action plan 2012-2016 on persons with disabilities", - "values": [ - "Disabilities" - ] - }, - { - "text": "Take steps to ensure the total independence and impartiality of the judiciary", - "values": [ - "Justice" - ] - }, - { - "text": "Continue giving its utmost attention to the advancement of the rights of the child, in particular efforts to prevent and eliminate the worst forms of child labor ", - "values": [ - "Labour", - "Rights of the Child" - ] - }, - { - "text": "Adopt policy and legislative measures to encourage the participation of women in the political and public life, and accompany this process with awareness campaigns involving the appropriate public institutions and civil society", - "values": [ - "Civil society", - "Human rights education and training", - "Women's rights" - ] - }, - { - "text": "Place special emphasis, in its general policy of protection of persons with disabilities, on the protection of children with disabilities, who are more vulnerable to discrimination ", - "values": [ - "Disabilities", - "Rights of the Child" - ] - }, - { - "text": "Strengthen the role of the National Commission of Human Rights in accordance with the Paris Principles", - "values": [ - "National Human Rights Institution" - ] - }, - { - "text": "Continue the main measures adopted to eliminate discrimination against the Roma minority, as contained in the Action Plan for the Decade of Roma Inclusion 2005-2015 ", - "values": [ - "Minorities", - "Racial discrimination" - ] - }, - { - "text": "Implement effectively the United Nations Declaration on the Rights of Indigenous Peoples, and establish mechanisms for its full implementation in full cooperation with the Sami people ", - "values": [ - "Indigenous peoples", - "International instruments" - ] - }, - { - "text": "Effectively implement laws concerning sexual and gender-based violence by providing the human, financial and institutional resources necessary and ensure the conformity of domestic laws, policies and practices with the Convention on the Elimination of All Forms of Discrimination against Women", - "values": [ - "International instruments", - "Women's rights" - ] - }, - { - "text": "Continue to work with the OSCE Organization for Democratic Institutions and Human Rights on electoral reform, with a view to ensuring that the electoral process and legislative framework is fully in line with international standards, including the International Covenant on Civil and Political Rights, well in advance of the 2011 presidential election ", - "values": [ - "Elections", - "International instruments" - ] - }, - { - "text": "Further strengthen its policies and programmes aimed at combating discrimination and intolerance and ensure that incidents are subject to prompt and independent investigation and effective prosecution", - "values": [ - "Other" - ] - }, - { - "text": "Make efforts to support a system of quotas to promote the participation of women in political and public life and in decision-making posts in all spheres of life. Additionally, make efforts to reduce or eliminate wage differences between men and women", - "values": [ - "Women's rights" - ] - }, - { - "text": "Sign and ratify the Optional Protocol to ICESCR - the Optional Protocol to ICCPR - the Optional Protocol to CEDAW - and the Optional Protocol to CAT - and ratify the International Convention for the Protection of All Persons from Enforced Disappearance ", - "values": [ - "International instruments" - ] - }, - { - "text": "Sign, ratify or accede to the main international human rights instruments, in particular the International Convention for the Protection of All Persons from Enforced Disappearance, the Optional Protocol to the International Covenant on Economic and Social Rights, and the Rome Statute", - "values": [ - "ESC rights - general", - "Enforced disappearances", - "International instruments", - "Justice" - ] - }, - { - "text": "Take further legislative and policy measures to discontinue the institutionalization of children under 3 years of age", - "values": [ - "Rights of the Child" - ] - }, - { - "text": "Strengthen further national policies against HIV/AIDS, aiming at universal access to prevention, treatment, care and support ", - "values": [ - "HIV - Aids" - ] - }, - { - "text": "Ensure that asylum seekers, refugees and migrants, particularly unaccompanied minors and children are given all necessary protection and social support", - "values": [ - "Asylum-seekers - refugees", - "Migrants", - "Rights of the Child" - ] - }, - { - "text": "Continue providing training for police officers, prosecutors, judges and lawyers on the scope and enforcement of the Criminal Code provision prohibiting racist acts ", - "values": [ - "Human rights education and training", - "Racial discrimination" - ] - }, - { - "text": "Ratify the Second Optional Protocol to the International Covenant on Civil and Political Rights, aiming at the abolition of the death penalty , aiming at the abolition of the death penalty", - "values": [ - "Death penalty", - "International instruments" - ] - }, - { - "text": "Exert utmost efforts in ratifying the Palermo Protocol", - "values": [ - "International instruments", - "Trafficking" - ] - }, - { - "text": "Reinforce its role as a global leader on human rights by becoming a party to the International Covenant on Economic, Social and Cultural Rights, the Convention on the Elimination of All forms of Discrimination against Women, the Convention on the Rights of the Child, and the Convention on the Rights of Persons with Disabilities", - "values": [ - "Disabilities", - "ESC rights - general", - "International instruments", - "Rights of the Child", - "Women's rights" - ] - }, - { - "text": "Continue to take steps to address domestic violence and human trafficking through education and awareness campaigns and services to victims, as well as ensuring the effective application of the law against perpetrators", - "values": [ - "Human rights education and training", - "Rights of the Child", - "Trafficking", - "Women's rights" - ] - }, - { - "text": "Continue implementing the National plan of action on Gender and Development ", - "values": [ - "Women's rights" - ] - }, - { - "text": "Establish a national human rights institution fully compliant with the Paris Principles, as Belgium committed to in the previous review", - "values": [ - "National Human Rights Institution", - "UPR process" - ] - }, - { - "text": "Consider acceding to the Rome Statue of the International Criminal Court ", - "values": [ - "International instruments", - "Justice" - ] - }, - { - "text": "Implement the European Court of Human Rights judgement in the case of Sejdic and Finci", - "values": [ - "Elections", - "Minorities", - "Racial discrimination" - ] - }, - { - "text": "Take further measures and initiatives to implement the Strategy for the Protection of Labours", - "values": [ - "Labour" - ] - }, - { - "text": "Consider developing further the legal and institutional framework with respect to the promotion and protection of human rights in the country ", - "values": [ - "General" - ] - }, - { - "text": "Step up its national capacity-building programs for law enforcement officials, including through international cooperation ", - "values": [ - "Technical assistance and cooperation" - ] - }, - { - "text": "Accede to the CPED and accept the competence of its monitoring body ", - "values": [ - "Enforced disappearances", - "International instruments" - ] - }, - { - "text": "An inter-ministerial committee was established in 2002, the mandate of the committee was to facilitate treaty implementation, particularly reporting as required by the various international treaties. Due to capacity constraints both financial and human, this Committee has not delivered on its mandate effectively. The Government has recently made a commitment to strengthening the capacity of the committee and to this end is being assisted by United Nations Development Programme (UNDP)", - "values": [ - "International instruments", - "Technical assistance and cooperation" - ] - }, - { - "text": "Address awareness campaigns at both men and women, to project positive images of women and of the equal status and responsibilities of men and women in the private and public spheres", - "values": [ - "Human rights education and training", - "Women's rights" - ] - }, - { - "text": "Ratify the Optional Protocol to the Convention against Torture and Other Cruel, Inhuman or Degrading Treatment or Punishment ", - "values": [ - "Detention", - "International instruments", - "Torture and other CID treatment" - ] - }, - { - "text": "Accede to the Rome Statute of the International Criminal Court and to the Agreement of Privileges and Immunities of the Court", - "values": [ - "International instruments", - "Justice" - ] - }, - { - "text": "Increase human rights training, awareness, and funding at all levels of the Armed Forces and National Police to ensure military and law enforcement officials protect human rights and thoroughly investigate allegations of violations ", - "values": [ - "Human rights education and training", - "Human rights violations by state agents" - ] - }, - { - "text": "Step up its efforts to ensure the protection of women against violence ", - "values": [ - "Women's rights" - ] - }, - { - "text": "Address the issue of unaccounted for children not handed over after the demobilization process of the paramilitaries and guarantee free primary education as a preventive measure against forced recruitments.", - "values": [ - "Right to education", - "Rights of the Child" - ] - }, - { - "text": "Regarding combating all forms of violence against Aboriginal women and girls, support effective participation of Aboriginal peoples, especially women and their organizations, in the development, implementation and evaluation of measures taken ", - "values": [ - "Indigenous peoples", - "Rights of the Child", - "Women's rights" - ] - }, - { - "text": "Continue efforts to increase the capacity to implement the national plan for women in Afghanistan.", - "values": [ - "Women's rights" - ] - }, - { - "text": "Continue the proceedings relating to human rights defenders, journalists, social communicators and justice officials for their full and effective protection, enabling them to perform their functions with all guarantees", - "values": [ - "Freedom of the press", - "Human rights defenders", - "Justice" - ] - }, - { - "text": "Become a party to OP-ICESCR, OP-CAT, CMW and CED ", - "values": [ - "Detention", - "ESC rights - general", - "Enforced disappearances", - "International instruments", - "Migrants" - ] - }, - { - "text": "Enhance measures aimed at improving women's rights through education, in particular for the Roma and rural women.", - "values": [ - "Minorities", - "Right to education", - "Women's rights" - ] - }, - { - "text": "Issue an open and standing invitation to the Special Procedures ", - "values": [ - "Special procedures" - ] - }, - { - "text": "Continue its policy of development based on respect for human rights", - "values": [ - "Development" - ] - }, - { - "text": "Amend its legislation in order to abolish the death penalty ", - "values": [ - "Death penalty" - ] - }, - { - "text": "Take appropriate measures for ensuring prosecution for trafficking in human beings", - "values": [ - "Trafficking" - ] - }, - { - "text": "Take the necessary steps to more effectively enforce compulsory education regulations, thus ensuring that equal access to education is a reality in all parts of the country", - "values": [ - "Right to education" - ] - }, - { - "text": "Take practical measures to protect and respect the rights of Palestinian refugees and the internally displaced Palestinians and give them access to their homeland and their right to compensation for the losses and prejudices they have endured throughout ", - "values": [ - "Freedom of movement", - "Internally displaced persons" - ] - }, - { - "text": "Fight against stigmatization of child victims of exploitation and sexual abuse", - "values": [ - "Rights of the Child" - ] - }, - { - "text": "Step up efforts to ensure the effective implementation of the ban on FGM, in particular through the implementation of preventive measures such as the dissemination of information and awareness-raising among populations at risk ", - "values": [ - "Human rights education and training", - "Rights of the Child", - "Torture and other CID treatment", - "Women's rights" - ] - }, - { - "text": "Continue the promotion of the rights of national minorities, as well as governmental policy on combating discrimination", - "values": [ - "Minorities", - "Racial discrimination" - ] - }, - { - "text": "Conduct campaigns to promote awareness among the population in general of the need to treat the elderly with dignity, and simultaneously, to eradicate practices and beliefs associated with witchcraft rituals", - "values": [ - "Human rights education and training", - "Rights of the Child", - "Women's rights" - ] - }, - { - "text": "Ratify all the different conventions and protocols relating to human rights to ensure their enjoyment by its citizens", - "values": [ - "International instruments" - ] - }, - { - "text": "Pursue its reform of the security sector", - "values": [ - "Public security" - ] - }, - { - "text": "Pass the special bill to abolish the death penalty into law in the new National Assembly that starts on 1 June 2008.", - "values": [ - "Death penalty" - ] - }, - { - "text": "Ensure that reports of killings, threats, attacks and acts of intimidation against human rights defenders are thoroughly and promptly investigated and those responsible brought to justice.", - "values": [ - "Human rights defenders" - ] - }, - { - "text": "Enact domestic legislation to incorporate the Convention against Torture into Lebanese law", - "values": [ - "International instruments", - "Torture and other CID treatment" - ] - }, - { - "text": "Increase the measures for combating intolerance and xenophobic and racist violence", - "values": [ - "Racial discrimination" - ] - }, - { - "text": "Ensure that legal and administrative measures taken to combat terrorism respect the enjoyment of human rights and fundamental freedoms ", - "values": [ - "Counter-terrorism" - ] - }, - { - "text": "Respect the right of Palestinian refugees to return to their homelands and to be compensated for losses and damages incurred and to retrieve their properties.", - "values": [ - "Asylum-seekers - refugees" - ] - }, - { - "text": "Take additional measures to ensure the full enjoyment of the right to education by children with an immigrant background ", - "values": [ - "Migrants", - "Right to education", - "Rights of the Child" - ] - }, - { - "text": "Continue its efforts to achieve equitable socio-economic development, to further address social disparity and equal opportunity of people through its overarching objective according to its current policies and Action Plans ", - "values": [ - "Development" - ] - }, - { - "text": "Incorporate instruction on human rights in school curricula.", - "values": [ - "Human rights education and training" - ] - }, - { - "text": "Work with all relevant stakeholders, including non and civil society, in addressing the problem involving the movements of toxic waste ", - "values": [ - "Civil society", - "Environment" - ] - }, - { - "text": "Continue its efforts to amend or repeal all discriminatory legislation, including discrimination regarding land ownership and to ensure the compatibility between customary law and statutory law", - "values": [ - "Right to land" - ] - }, - { - "text": "Consider making the declarations under Articles 21 and 22 of the Convention against Torture and Other Cruel, Inhuman or Degrading Treatment or Punishment", - "values": [ - "International instruments", - "Torture and other CID treatment" - ] - }, - { - "text": "Endeavour to adopt readily workable measures aimed at improving the capacity of its institutions to fully address the socio-cultural impediments to the promotion and protection of human rights. ", - "values": [ - "General" - ] - }, - { - "text": "Strengthen measures to end any possibility of alleged police brutality, arbitrary arrests and politically motivated prosecution of opposition leaders", - "values": [ - "Detention", - "Freedom of association and peaceful assembly", - "Human rights violations by state agents" - ] - }, - { - "text": "Amend the provisions of the 2009 Charities and Societies Proclamation inconsistent with international human rights standards, including with respect to freedom of expression, association and assembly ", - "values": [ - "Civil society", - "Freedom of association and peaceful assembly", - "Freedom of opinion and expression", - "International instruments" - ] - }, - { - "text": "Consider adopting human rights education in its national education curriculum.", - "values": [ - "Human rights education and training" - ] - }, - { - "text": "Announce a moratorium on the death penalty with a view to its eventual abolition. Pending abolition, its application should be limited", - "values": [ - "Death penalty" - ] - }, - { - "text": "Continue its efforts to inform its citizens about their rights, and to improve the quality of the legal information disseminated by the media, including through the Internet", - "values": [ - "Justice" - ] - }, - { - "text": "Guarantee the full and equal access to socioeconomic resources, (including access to tertiary education and traditional language classes) for the Amazigh and Saharan/Saharawi people", - "values": [ - "Indigenous peoples", - "Right to education" - ] - }, - { - "text": "Continue efforts to increase the representation of indigenous women in decision-making posts ", - "values": [ - "Indigenous peoples", - "Women's rights" - ] - }, - { - "text": "Ensure effective implementation of recent measures to prevent and contrast violence against children, both online and offline", - "values": [ - "Rights of the Child" - ] - }, - { - "text": "Continue their efforts to eliminate stereotypical attitudes about migrants and to increase measures to protect them ", - "values": [ - "Migrants" - ] - }, - { - "text": "Continue the progress underway and introduce further steps to achieve gender equality, in particular the abolishment of the system of male guardianship", - "values": [ - "Women's rights" - ] - }, - { - "text": "Accelerate actions to establish a national human rights institution", - "values": [ - "National Human Rights Institution" - ] - }, - { - "text": "Sign the Council of Europe Convention for the protection of children against exploitation and sexual abuse", - "values": [ - "Rights of the Child" - ] - }, - { - "text": "Strengthen efforts to ensure women's representation in influential posts in national and regional government", - "values": [ - "Women's rights" - ] - }, - { - "text": "Further improve the conditions of refugees and internally displaced persons by allowing them equal access to health and social services in a sustainable manner, and in coordination with the international community", - "values": [ - "Asylum-seekers - refugees", - "ESC rights - general", - "Internally displaced persons", - "Right to health", - "Technical assistance and cooperation" - ] - }, - { - "text": "On the one hand, constantly reflect on human rights when processing the request of asylum-seekers and refugees, specifically focusing on their individual situation, their detention conditions and the eventual organization of their repatriation and, on the other hand, solicit the necessary support of the European Union in this regard ", - "values": [ - "Asylum-seekers - refugees", - "Detention" - ] - }, - { - "text": "Slovakia will make every effort to present a voluntary interim report on the progress made in implementing the UPR recommendations.", - "values": [ - "UPR process" - ] - }, - { - "text": "Take all necessary measures to solve the problem of prison overcrowding and to improve detention conditions, including by providing sufficient resources to the body responsible for investigating allegations of torture and ill-treatment and ensuring its independence", - "values": [ - "Detention", - "Torture and other CID treatment" - ] - }, - { - "text": "Ratify the second optional protocol to ICCPR and abolish the death penalty for all crimes", - "values": [ - "Death penalty", - "International instruments" - ] - }, - { - "text": "Revise laws and policies to recognize and protect the rights of the minorities, including Indigenous People", - "values": [ - "Indigenous peoples", - "Minorities" - ] - }, - { - "text": "Reduce repetition rates in compulsory education and increase completion rates", - "values": [ - "Right to education" - ] - }, - { - "text": "Strengthen and support the Afghanistan Independent Human Rights Commission so that it discharges its mandate in the most effective manner.", - "values": [ - "National Human Rights Institution" - ] - }, - { - "text": "Continue to pay close attention to the full realization of the rights of women and girls", - "values": [ - "Rights of the Child", - "Women's rights" - ] - }, - { - "text": "Re-launch the process of ratifying the Second Optional Protocol to the International Covenant on Civil and Political Rights with a view to the complete abolition of the death penalty", - "values": [ - "Death penalty", - "International instruments" - ] - }, - { - "text": "Establish indicators to assess and follow up the effective implementation of the national policy on the protection of children and adolescents (2013-2023), adopt education policies to prevent dropouts at all levels and reintegrate deported children", - "values": [ - "Right to education", - "Rights of the Child" - ] - }, - { - "text": "Continue working on promoting and protecting the rights of women.", - "values": [ - "Women's rights" - ] - }, - { - "text": "Consider signing all the core international human rights instruments ", - "values": [ - "International instruments" - ] - }, - { - "text": "Ratify the Inter-American Convention against All Forms of Discrimination and Intolerance", - "values": [ - "International instruments", - "Other" - ] - }, - { - "text": "Consider the introduction of a moratorium on the application of the death penalty", - "values": [ - "Death penalty" - ] - }, - { - "text": "Criminalize feminicide in accordance with international standards and comply in general with CEDAW general recommendation No. 19", - "values": [ - "Treaty bodies", - "Women's rights" - ] - }, - { - "text": "Ratify promptly the Indigenous and Tribal Peoples Convention, 1989 (No.169) of the International Labour Organization", - "values": [ - "Indigenous peoples", - "International instruments", - "Labour" - ] - }, - { - "text": "Intensify its efforts, at national level and vis-à-vis the different ad-hoc international bodies, to reinforce measures aimed at fighting the use of children in sexual tourism and child pornography", - "values": [ - "Rights of the Child" - ] - }, - { - "text": "Harmonize the various laws on the rights of indigenous peoples, particularly regarding their access to land and natural resources ", - "values": [ - "Environment", - "Indigenous peoples", - "Right to land" - ] - }, - { - "text": "Prohibit corporal punishment and put in place an educational system respectful of the physical and psychological integrity of minors ", - "values": [ - "Right to education", - "Rights of the Child", - "Torture and other CID treatment" - ] - }, - { - "text": "Endeavour to implement the remaining recommendations of the previous and present UPR process", - "values": [ - "UPR process" - ] - }, - { - "text": "Implement urgently all accepted recommendations from 2009 that remain outstanding", - "values": [ - "UPR process" - ] - }, - { - "text": "Adopt measures to align national legislation and practices with the provisions of the CRC, particularly those of article 37 (c), and sign and ratify the Third Optional Protocol to the CRC ", - "values": [ - "International instruments", - "Rights of the Child" - ] - }, - { - "text": "Ratify the International Covenant on Civil and Political Rights, the International Covenant on Economic, Social and Cultural Rights, and the 1961 Convention on the Reduction of Statelessness", - "values": [ - "CP rights - general", - "ESC rights - general", - "International instruments", - "Statelessness and the right to nationality" - ] - }, - { - "text": "Improve the integration of children of migrants into the national health system", - "values": [ - "Migrants", - "Right to health", - "Rights of the Child" - ] - }, - { - "text": "Continue its efforts to ensure the effective representation of all minority groups in the highest decision-making positions", - "values": [ - "Minorities" - ] - }, - { - "text": "Adopt a list of hazardous jobs for children", - "values": [ - "Labour", - "Rights of the Child" - ] - }, - { - "text": "Strengthen efforts to promote and protect the human rights of women in the North of Mali", - "values": [ - "Women's rights" - ] - }, - { - "text": "Take further proper legislative measures to abolish the death penalty", - "values": [ - "Death penalty" - ] - }, - { - "text": "Take all necessary steps to ratify the 1951 Convention relating to the Status of Refugees and its 1967 Protocol", - "values": [ - "Asylum-seekers - refugees", - "International instruments" - ] - }, - { - "text": "Take the necessary measures to implement article 23 of the Convention on the Rights of the Child.", - "values": [ - "International instruments", - "Rights of the Child" - ] - }, - { - "text": "Ratify the declaration on article 22 on the CAT and consider ratification of OPCAT", - "values": [ - "Detention", - "International instruments", - "Torture and other CID treatment" - ] - }, - { - "text": "Include opposition parliamentary groups and invite civil society in the implementation of the National Consensus Dialogue ", - "values": [ - "Civil society" - ] - }, - { - "text": "Increase efforts to promote gender equality in the economic and political fields", - "values": [ - "CP rights - general", - "ESC rights - general", - "Women's rights" - ] - }, - { - "text": "Further pursue its efforts to ensure the enjoyment of economic, social and cultural rights", - "values": [ - "ESC rights - general" - ] - }, - { - "text": "Implement a system to measure progress indicators on economic, social and cultural rights ", - "values": [ - "ESC rights - general" - ] - }, - { - "text": "Amend its legislation to declare illegal and prohibit organizations promoting and inciting racial hatred, in line with article 4 (b) of the International Convention on the Elimination of All Forms of Racial Discrimination", - "values": [ - "International instruments", - "Racial discrimination" - ] - }, - { - "text": "Consider ratifying the International Convention for the Protection of All Persons from Enforced Disappearance. and accept the competence of the Committee on Enforced Disappearances.", - "values": [ - "Enforced disappearances", - "International instruments" - ] - }, - { - "text": "Continue implementing the strategies and plans for the socio-economic development of the country", - "values": [ - "Development" - ] - }, - { - "text": "Close gender gaps by promoting and monitoring the equal representation of women in decision-making positions", - "values": [ - "Women's rights" - ] - }, - { - "text": "Consider ratifying core international human rights conventions, especially ICMW (International Convention on the Protection of the Rights of All Migrant Workers and Their Families) as well as ILO Convention 189 (Decent Work for Domestic Workers) ", - "values": [ - "International instruments", - "Labour", - "Migrants" - ] - }, - { - "text": "Consider extending its international commitments and consider ratification of the Convention against Torture and Other Cruel, Inhuman or Degrading Treatment or Punishment ", - "values": [ - "International instruments", - "Torture and other CID treatment" - ] - }, - { - "text": "Redouble its efforts for effective governance of its natural resources in line with the Environmental Management Act No. 12 of 2011", - "values": [ - "Environment" - ] - }, - { - "text": "Adopt appropriate measures of a legislative and political nature, including allocation of financial resources, in order to align its national human rights institution with the Paris Principles", - "values": [ - "National Human Rights Institution" - ] - }, - { - "text": "Guarantee freedom of expression and peaceful association and safeguard the activities of journalists and human rights defenders, also by amending relevant legislation in order to align it with best practices and international standards in the area of freedom of expression", - "values": [ - "Freedom of association and peaceful assembly", - "Freedom of opinion and expression", - "Freedom of the press", - "Human rights defenders" - ] - }, - { - "text": "Continue to work to ensure full implementation of Security Council resolutions 1325 and 2122 on women, peace and security, including by increasing the active and equal participation of women in peacebuilding initiatives and decision-making processes at all levels", - "values": [ - "Women's rights" - ] - }, - { - "text": "Reconsider the inclusion in the draft criminal code of the provision criminalizing same-sex sexual relations in conformity with Burundi's obligations to ensure non-discrimination and the right to privacy", - "values": [ - "Privacy", - "Sexual Orientation and Gender Identity" - ] - }, - { - "text": "End all enforced evictions from displacement camps and establish an official moratorium on mass eviction until all legal and procedural safeguards compliant with international human rights standards are in place", - "values": [ - "Internally displaced persons", - "International instruments" - ] - }, - { - "text": "Adhere to the Paris Principles, which address the status and the functioning of national institutions for the protection and promotion of human rights, by ensuring the independence of Fiji's Human Rights Commission", - "values": [ - "National Human Rights Institution" - ] - }, - { - "text": "Abolish all laws and regulations discriminating against immigrants ", - "values": [ - "Migrants" - ] - }, - { - "text": "Review convictions, commute sentences, or drop charges for all persons who engaged in non-violent political expression ", - "values": [ - "Freedom of opinion and expression" - ] - }, - { - "text": "Strengthen the federal legislation to combat discrimination and ensure an effective implementation with a view to a better protection of the rights of vulnerable persons, in particular children, persons in detention and persons with disabilities ", - "values": [ - "Detention", - "Disabilities", - "Rights of the Child" - ] - }, - { - "text": "Continue its efforts to further accelerate its ongoing process of developing a comprehensive mechanism to further promote and protect human rights and freedoms ", - "values": [ - "Other" - ] - }, - { - "text": "Provide prompt, thorough and impartial investigations into all allegations of excessive use of force by the armed forces and submit to a fair trial anyone suspected of being responsible", - "values": [ - "Human rights violations by state agents" - ] - }, - { - "text": "Reinforce the legal framework for the prevention of violence against women, including running a national awareness campaign and ensuring comprehensive investigation and prosecution in cases of domestic violence", - "values": [ - "Human rights education and training", - "Rights of the Child", - "Women's rights" - ] - }, - { - "text": "Establish, at the federal level, a moratorium on executions with a view to abolishing the death penalty ", - "values": [ - "Death penalty" - ] - }, - { - "text": "Align the national legislation on freedom of expression, association and assembly with country's international HR obligations ", - "values": [ - "Freedom of association and peaceful assembly", - "Freedom of opinion and expression", - "International instruments" - ] - }, - { - "text": "Undertake electoral reforms to ensure credible electoral processes ", - "values": [ - "Elections" - ] - }, - { - "text": "The Maldives partially accepts this [100.60] recommendation. The Maldives is committed to taking a wide-range of actions to eliminate violence against women.", - "values": [ - "Women's rights" - ] - }, - { - "text": "Immediate elimination of the practice of incarcerating juvenile offenders alongside adults", - "values": [ - "Detention", - "Rights of the Child" - ] - }, - { - "text": "Ratify the third Optional Protocol to CRC ", - "values": [ - "International instruments", - "Rights of the Child" - ] - }, - { - "text": "Continue its efforts aimed at the promotion and protection of human rights.", - "values": [ - "General" - ] - }, - { - "text": "Continue efforts towards the adoption of administrative and legislative measures to achieve equality of women, in particular to ensure their access to social and health services in all areas of Georgia and provide the same work and pay opportunities to men and women", - "values": [ - "ESC rights - general", - "Right to health", - "Women's rights" - ] - }, - { - "text": "Establish a national institution for the protection of human rights in accordance with the Paris Principles", - "values": [ - "National Human Rights Institution" - ] - }, - { - "text": "Following the completion of the Family Health and Safety Study, continue its actions to eradicate domestic violence", - "values": [ - "Rights of the Child", - "Women's rights" - ] - }, - { - "text": "Promote further internal consultations to ensure the adoption of a code of protection of children in conformity with the Convention on the Rights of the Child ", - "values": [ - "International instruments", - "Rights of the Child" - ] - }, - { - "text": "Increase efforts to provide medical support for children and promote adolescent health policies with respect to reproductive health", - "values": [ - "Right to health", - "Rights of the Child" - ] - }, - { - "text": "Review existing legislation and programs to prevent and eradicate violence and sexual exploitation against children and adolescents, to ensure they meet international best practices", - "values": [ - "Rights of the Child", - "Torture and other CID treatment" - ] - }, - { - "text": "Immediately take all necessary measures to end the situation whereby ethnic minorities continue to be persecuted and are the object of serious discrimination, and not impede the access to humanitarian aid in the regions where these ethnic minorities live ", - "values": [ - "Minorities", - "Racial discrimination" - ] - }, - { - "text": "Continue improving health-care performance indicators through upgrading of the national health system", - "values": [ - "Right to health" - ] - }, - { - "text": "Follow up efficiently on the recommendation of the Committee on the Rights of the Child to explicitly prohibit by law all forms of violence against children, including corporal punishment, in all settings, including in the family, schools, alternative childcare and places of detention for juveniles, and to subsequently implement those laws effectively ", - "values": [ - "Rights of the Child", - "Torture and other CID treatment", - "Treaty bodies" - ] - }, - { - "text": "Strongly enforce labour laws protecting employees' rights so as to improve the living and working conditions of migrant workers, including through implementation by the Ministry of Labour of the provision for a minimum wage for all workers, as provided for by law ", - "values": [ - "Labour", - "Migrants" - ] - }, - { - "text": "Make efforts to improve the availability, accessibility and quality of health care and education, in the case of internally displaced people", - "values": [ - "Internally displaced persons", - "Right to education", - "Right to health" - ] - }, - { - "text": "Consider the extension of an invitation to the United Nations Special Rapporteur on extrajudicial, summary or arbitrary executions in accordance with his request ", - "values": [ - "Extrajudicial executions", - "Special procedures" - ] - }, - { - "text": "Accelerate the adoption and implementation of the law on the Children's Ombudsman and strengthen actions for the education and protection of vulnerable children who are begging or are not attending school", - "values": [ - "Labour", - "National Human Rights Institution", - "Right to education", - "Rights of the Child" - ] - }, - { - "text": "Continue to promote education and human rights training at the national level ", - "values": [ - "Human rights education and training" - ] - }, - { - "text": "Maintain the current de facto moratorium on the death penalty.", - "values": [ - "Death penalty" - ] - }, - { - "text": "Continue efforts aimed at harmonization of national criminal justice system and legislation with the constitutional reforms", - "values": [ - "Justice" - ] - }, - { - "text": "Continue efforts to incorporate the standards of international humanitarian law into national legislation", - "values": [ - "International humanitarian law" - ] - }, - { - "text": "Continue to strengthen the existing legal framework and deepen measures aimed at preventing gender-based violence", - "values": [ - "Women's rights" - ] - }, - { - "text": "Reform labour laws to ensure that domestic workers are legally protected and improve the enforcement of those laws, in order to ensure that the rights of foreign workers in Qatar are guaranteed ", - "values": [ - "Labour", - "Migrants" - ] - }, - { - "text": "Establish a moratorium on the use of the death penalty, aiming for its legal abolition", - "values": [ - "Death penalty" - ] - }, - { - "text": "Approve appropriate budget allocations and resources for the protection of women and women programmes, particularly in the areas of justice, health and equal opportunities", - "values": [ - "Women's rights" - ] - }, - { - "text": "Continue to promote the right to education, including ensuring equal access to education for vulnerable groups", - "values": [ - "Right to education" - ] - }, - { - "text": "Ratify the Convention on the Rights of Persons with Disabilities to ensure the rights of people with disabilities are safeguarded", - "values": [ - "Disabilities", - "International instruments" - ] - }, - { - "text": "Continue its efforts to take all measures to promote and protect the universal characteristic of human rights while protecting its historical, religious and civilizational specificity ", - "values": [ - "General" - ] - }, - { - "text": "Ensure that freedom of expression is respected and that Nigerian journalists may take on their mission of providing information without suffering harassment", - "values": [ - "Freedom of opinion and expression", - "Freedom of the press" - ] - }, - { - "text": "Pursue the implementation of the national health policy for the period 2012 to 2020", - "values": [ - "Right to health" - ] - }, - { - "text": "Take effective steps to end discrimination against Roma in education, employment, housing and access to services with a special focus on ending continued segregation of Roma children at schools", - "values": [ - "Labour", - "Minorities", - "Racial discrimination", - "Right to education", - "Right to housing", - "Rights of the Child" - ] - }, - { - "text": "Take steps to strengthen and protect women's sexual and reproductive rights in line with CEDAW recommendations, review the national legislation on abortion and enforce the national legislation with regard to access to birth control ", - "values": [ - "Right to health", - "Treaty bodies", - "Women's rights" - ] - }, - { - "text": "End impunity for human rights violations and fulfill legal obligations regarding accountability", - "values": [ - "Impunity" - ] - }, - { - "text": "Enhance the protection for child rights by issuing the child law ", - "values": [ - "Rights of the Child" - ] - }, - { - "text": "Earmark a larger budget for the educational sector, and revise existing educational legislation in order to ensure access to primary education for children of all regions ", - "values": [ - "Right to education", - "Rights of the Child" - ] - }, - { - "text": "Follow up on measures to combat trafficking of migrants, in particular migrant women.", - "values": [ - "Migrants", - "Trafficking", - "Women's rights" - ] - }, - { - "text": "End the criminal military attacks in which thousands of innocent persons have died and punish those responsible and who have gone unpunished up until now", - "values": [ - "International humanitarian law" - ] - }, - { - "text": "Increase and intensify the on-going efforts namely through the Legal Training Center (CFJ) to capacitate and qualify the legal professions, one essential pillar of the Justice system ", - "values": [ - "Justice" - ] - }, - { - "text": "Pass legislation that allows NGOs to accept foreign funding without prior government approval, legislation that allows for increased freedom of association and assembly, and legislation allowing labour unions to operate without joining the Egyptian Trade Union Federation", - "values": [ - "Civil society", - "Freedom of association and peaceful assembly", - "Labour" - ] - }, - { - "text": "Speed up its justice reforms to comply with international standards", - "values": [ - "Justice" - ] - }, - { - "text": "Criminalize the recruitment of children under the age of 18 years into armed forces", - "values": [ - "International humanitarian law", - "Rights of the Child" - ] - }, - { - "text": "Continue to offer rehabilitation and assistance to victims of trafficking through relevant local and international organizations", - "values": [ - "Trafficking" - ] - }, - { - "text": "Encourages the facilitation of the registration of civil society, unions and political parties.", - "values": [ - "Freedom of association and peaceful assembly" - ] - }, - { - "text": "Spare no effort in fighting violence against children and the drug trafficking of which they are victims", - "values": [ - "Public security", - "Rights of the Child" - ] - }, - { - "text": "Develop a National Action Plan on business and human rights, for the implementation of the UN Guiding Principles on Business and Human Rights, with special attention for the situation of nomadic herders and access to remedy", - "values": [ - "Business and human rights" - ] - }, - { - "text": "Introduce comprehensive legislation prohibiting human trafficking, in particular trafficking of children for labour and sexual exploitation", - "values": [ - "Labour", - "Rights of the Child", - "Trafficking" - ] - }, - { - "text": "Ratify the Council of Europe Convention on Preventing and Combating Violence against Women and Domestic Violence, without delay", - "values": [ - "International instruments", - "Rights of the Child", - "Women's rights" - ] - }, - { - "text": "Continue to work on protecting the rights of migrants, especially the children of migrants ", - "values": [ - "Migrants", - "Rights of the Child" - ] - }, - { - "text": "Amend the recently adopted cybercrime legislation to make sure it does not infringe human rights and redraft the Access to Information Bill and the Media Service Bill of 2015 in line with international human rights law and highest human rights standards", - "values": [ - "Freedom of opinion and expression", - "Freedom of the press", - "International instruments" - ] - }, - { - "text": "Unequivocally and publicly condemn attacks against Roma and other minorities whenever they occur and effectively investigate all reported cases of harassment of members of the Roma by the police forces ", - "values": [ - "Human rights violations by state agents", - "Minorities" - ] - }, - { - "text": "Take full responsibility of the Sahrawi refugee camps that are located in Algerian territory, and protect the human rights of all persons present there", - "values": [ - "Asylum-seekers - refugees" - ] - }, - { - "text": "Take all necessary measures to improve implementation of the human rights provisions of the Constitution into the laws enacted thereof. ", - "values": [ - "General" - ] - }, - { - "text": "Definitively abolish the death penalty", - "values": [ - "Death penalty" - ] - }, - { - "text": "Recommended that the judiciary continue its investigations into alleged links between State agents and paramilitaries.", - "values": [ - "Justice" - ] - }, - { - "text": "Provide adequate funding and staffing for the Women's National Institute and 29 other institutional offices to design and promote equal opportunities for women and their organizations, to ensure their optimal functioning ", - "values": [ - "Women's rights" - ] - }, - { - "text": "Continue its efforts in order to place a premium on education, particularly by assuring that there be a sufficient number of properly trained local teachers", - "values": [ - "Right to education" - ] - }, - { - "text": "Continue with all the initiatives and commitments to address the identified key national priorities in order to consolidate the promotion and protection of human rights, as broadly defined as these have been in the Kingdom ", - "values": [ - "General" - ] - }, - { - "text": "Consider legislative measures to abolish the death penalty ", - "values": [ - "Death penalty" - ] - }, - { - "text": "Improve gender equality both in legislation and practice, including by granting men and women equal property and family rights", - "values": [ - "Women's rights" - ] - }, - { - "text": "Bring to justice those who commit arbitrary killings, acts of torture and other human rights violations", - "values": [ - "Extrajudicial executions", - "Torture and other CID treatment" - ] - }, - { - "text": "Consider ratifying the International Convention on the Protection of the Rights of All Migrant Workers and Members of Their Families as a way of allowing immigrants to enjoy all of the rights provided for in this international legal instrument ", - "values": [ - "International instruments", - "Labour", - "Migrants" - ] - }, - { - "text": "Adopt without delay urgent measures to stop torture, violence, killings and serious overcrowding and degrading conditions in the prisons in Brazil", - "values": [ - "Detention", - "Torture and other CID treatment" - ] - }, - { - "text": "Establish training and awareness mechanisms to combat sexual violence against women and fight the culture of denial and stigma so the women may seek medical care and establish judicial complaints against perpetrators", - "values": [ - "Human rights education and training", - "Women's rights" - ] - }, - { - "text": "Strengthen the CNDHC", - "values": [ - "National Human Rights Institution" - ] - }, - { - "text": "Continue its efforts to combat child domestic labour and trafficking in children", - "values": [ - "Labour", - "Rights of the Child", - "Trafficking" - ] - }, - { - "text": "Establish as a priority a reform of the judiciary by strengthening a justice system which would be better able to combat impunity and corruption, including by putting an end to exaggerated pre-trial detention.", - "values": [ - "Corruption", - "Detention", - "Impunity", - "Justice" - ] - }, - { - "text": "Establish an independent human rights institution in conformity with the Paris Principles and provide it with the necessary resources", - "values": [ - "National Human Rights Institution" - ] - }, - { - "text": "Implement fully the new law on femicide and ensure that the physical security of women is protected by implementing CEDAW recommendations.", - "values": [ - "Treaty bodies", - "Women's rights" - ] - }, - { - "text": "Continue to use the information and social media to promote the culture of human rights and, in particular, the rights of the child ", - "values": [ - "Human rights education and training", - "Rights of the Child" - ] - }, - { - "text": "Continue to revise the criminal law to bring it fully in line with relevant international and regional obligations and in particular to ensure the protection of national, ethnic, religious or linguistic minorities", - "values": [ - "Freedom of religion and belief", - "Minorities" - ] - }, - { - "text": "Consider ratifying CAT ", - "values": [ - "International instruments", - "Torture and other CID treatment" - ] - }, - { - "text": "Harmonize national laws to incorporate the International Covenant on Civil and Political Rights, in particular articles 9, 12, 19, 21 ", - "values": [ - "Detention", - "Freedom of association and peaceful assembly", - "Freedom of movement", - "Freedom of opinion and expression", - "International instruments" - ] - }, - { - "text": "Consider changing legislation to prohibit all forms of corporal punishment also at home and effectively enforce the ban of corporal punishment in all settings", - "values": [ - "Rights of the Child", - "Torture and other CID treatment" - ] - }, - { - "text": "Redouble its efforts to reintegrate former combatants ", - "values": [ - "International humanitarian law" - ] - }, - { - "text": "Align domestic legislation on freedom of expression and association, especially the Peaceful Assembly and Peaceful Procession Act, with international norms", - "values": [ - "Freedom of association and peaceful assembly", - "Freedom of opinion and expression" - ] - }, - { - "text": "Continue to implement the national programme to eradicate the legacy of slavery, with a focus on impartial and effective investigations into all allegations of slavery and slavery-like practices", - "values": [ - "Other" - ] - }, - { - "text": "Continue to work for the adoption of appropriate legal frameworks for the implementation of the guarantees foreseen by the new Constitution regarding human rights and fundamental freedoms", - "values": [ - "General" - ] - }, - { - "text": "End the discriminations against the Roma and Egyptian communities", - "values": [ - "Minorities", - "Racial discrimination" - ] - }, - { - "text": "Consider issuing a standing invitation to all special procedures of the Human Rights Council", - "values": [ - "Special procedures" - ] - }, - { - "text": "Review the anti-terrorist law and its application so that it cannot be abused for persecution of persons from indigenous communities, including the Mapuche, for their peaceful political or religious activity.", - "values": [ - "Counter-terrorism", - "Indigenous peoples" - ] - }, - { - "text": "Design plans and strategies to ensure sustainability in protecting the rights of women and children ", - "values": [ - "Rights of the Child", - "Women's rights" - ] - }, - { - "text": "Finalize, as soon as possible, the draft legislation for the establishment of a national human rights institution in conformity with the Paris Principles ", - "values": [ - "National Human Rights Institution" - ] - }, - { - "text": "Strengthen efforts to combat discrimination against children belonging to national minorities, particularly Roma, and reduce the number of children living in poverty", - "values": [ - "Minorities", - "Poverty", - "Racial discrimination", - "Rights of the Child" - ] - }, - { - "text": "Maintain efforts to protect the rights of vulnerable groups, considering their specific needs and capacities, through the empowerment of their rights and fair reparation mechanisms", - "values": [ - "Minorities" - ] - }, - { - "text": "Further implement the national strategy for persons with disabilities", - "values": [ - "Disabilities" - ] - }, - { - "text": "Take expeditiously efficient steps to improve access to free basic education to all children, with particular focus on those living in the interior areas and those belonging to indigenous and minority groups ", - "values": [ - "Indigenous peoples", - "Minorities", - "Right to education", - "Rights of the Child" - ] - }, - { - "text": "Increase its activities towards the full realization of the right to health", - "values": [ - "Right to health" - ] - }, - { - "text": "Issue permits to refugees in Lebanon to allow them freedom of movement and employment, including the right to work in professions that require syndicate membership, and without onerous renewal or fee restrictions", - "values": [ - "Asylum-seekers - refugees", - "Freedom of movement", - "Labour" - ] - }, - { - "text": "Create a national mechanism for providing statistics on women's deaths", - "values": [ - "Women's rights" - ] - }, - { - "text": "Promote necessary actions in order to guarantee the integration of persons with disabilities in the employment market, in line with the Convention on the rights of Persons with disabilities", - "values": [ - "Disabilities", - "International instruments", - "Labour" - ] - }, - { - "text": "Amend marriage law in order that the minimum age for marriage for both girls and boys is set at 18 ", - "values": [ - "Rights of the Child" - ] - }, - { - "text": "Establish a national independent preventive mechanism as provided for by the Optional Protocol to the Convention against Torture and Other Cruel, Inhuman or Degrading Treatment or Punishment, to which Togo is a party since July 2010", - "values": [ - "Detention", - "International instruments", - "Torture and other CID treatment" - ] - }, - { - "text": "Implement, in practice, the Prevention and Prohibition of Torture Act, including through the establishment of an effective system of prevention of all forms of torture and other cruel, inhuman or degrading treatment", - "values": [ - "International instruments", - "Torture and other CID treatment" - ] - }, - { - "text": "Ensure more fully the rights of the child, and first and foremost, the realisation of the right to education and combating illegal child labour", - "values": [ - "Labour", - "Right to education", - "Rights of the Child" - ] - }, - { - "text": "Adopt legislative measures to criminalize discrimination against women, particularly of minority groups, disabled women and older women", - "values": [ - "Disabilities", - "Minorities", - "Racial discrimination", - "Women's rights" - ] - }, - { - "text": "Examine the possibility of ratifying the International Convention on the Protection of the Rights of All Migrant Workers and Members of Their Families (ICRMW), the International Convention for the Protection of All Persons from Enforced Disappearance and the Optional Protocol to the International Convention on the Elimination of All Forms of Discrimination against Women ", - "values": [ - "Enforced disappearances", - "International instruments", - "Labour", - "Migrants", - "Women's rights" - ] - }, - { - "text": "Orienting secondary and higher education towards vocational courses", - "values": [ - "Right to education" - ] - }, - { - "text": "Proceed with ratification of the International Covenant on Economic, Social and Cultural Rights and sign the International Convention for the Protection of All Persons from Enforced Disappearance", - "values": [ - "ESC rights - general", - "Enforced disappearances", - "International instruments" - ] - }, - { - "text": "Establish mechanisms that would allow the reduction of the gender gap in relation to wages and representation in the labour market", - "values": [ - "Women's rights" - ] - }, - { - "text": "Criminalize all forms of corporal punishment against children and sign and ratify the Optional Protocol to CRC on a communications procedure ", - "values": [ - "International instruments", - "Rights of the Child" - ] - }, - { - "text": "Step up its efforts in order to provide a safe environment for journalists, human rights defenders and other civil society actors", - "values": [ - "Civil society", - "Freedom of the press", - "Human rights defenders" - ] - }, - { - "text": "Ratify the Kampala Amendments to the Rome Statute ", - "values": [ - "International instruments", - "Justice" - ] - }, - { - "text": "Continue the efforts to ensure access to health care to all people throughout the territory of the country without any discrimination based on gender or social origin ", - "values": [ - "Poverty", - "Right to health", - "Women's rights" - ] - }, - { - "text": "Safeguard the family institution and marriage as a marital union between a man and a woman based on free consent ", - "values": [ - "Other" - ] - }, - { - "text": "End the recruitment and use of children in armed forces as a matter of priority by the government forces and the opposition armed groups and to release those who have already been recruited ", - "values": [ - "International humanitarian law", - "Rights of the Child" - ] - }, - { - "text": "Continue to promote human rights education in school curriculums at all levels ", - "values": [ - "Human rights education and training" - ] - }, - { - "text": "Guarantee the right to housing of the Palestinians in the occupied territories, including East-Jerusalem, stopping the demolition of Palestinian houses and guaranteeing the property rights of the Palestinian population ", - "values": [ - "Right to housing" - ] - }, - { - "text": "Intensify fighting radicalization and terrorism at its early stage to sustain the enjoyment of human rights and basic freedoms of all Singaporeans", - "values": [ - "Public security" - ] - }, - { - "text": "Recognizing that the operational independence of the National Human Rights Commission has been critical, take the necessary measures to further ensure its institutional independence", - "values": [ - "National Human Rights Institution" - ] - }, - { - "text": "Develop a national protocol for searching for reportedly disappeared persons and to investigate allegations of human rights violations and ensure that perpetrators are brought to justice and victims have received reparations", - "values": [ - "Enforced disappearances" - ] - }, - { - "text": "Take necessary measures that would reduce, at the first stage, the widespread use of child labour", - "values": [ - "Labour", - "Rights of the Child" - ] - }, - { - "text": "Adopt a national action plan against racism in accordance with the Durban Declaration and Programme for Action, and ensure that racism and hate speech, including in the context of elections and politics, are appropriately and explicitly criminalized and penalized", - "values": [ - "Racial discrimination" - ] - }, - { - "text": "Strengthen and activate existing laws and legislation in the field of combating discrimination and all forms of racism and make further efforts to combat discrimination against Gypsies, nomads and Roma", - "values": [ - "Minorities", - "Racial discrimination" - ] - }, - { - "text": "Ensure that the legislative and policy response to increases in irregular migration is consistent with international human rights and refugee law, particularly the principle of non-refoulement", - "values": [ - "Asylum-seekers - refugees", - "Migrants" - ] - }, - { - "text": "Not renew the Emergency Law in April 2010, and ensure that future legislation fully respects Egypt's obligations under international human rights law and not entrench under statute law provisions that facilitate human rights violations", - "values": [ - "International instruments", - "Justice" - ] - }, - { - "text": "Guarantee cooperation and responsiveness of financial institutions with regard to requests to recover illegally procured funds stemming from other states ", - "values": [ - "Other" - ] - }, - { - "text": "Continue to enhance the interests of the people of Cuba and overcome any undue process ", - "values": [ - "General" - ] - }, - { - "text": "Ratify the International Covenant on Economic, Social and Cultural Rights and its optional protocol", - "values": [ - "ESC rights - general", - "International instruments" - ] - }, - { - "text": "Increase the age of criminal responsibility of children.", - "values": [ - "Rights of the Child" - ] - }, - { - "text": "Ensure due monitoring, investigating and prosecuting the recruitment of minors for military purpose and provide efficient rehabilitation and reintegration schemes for the victims", - "values": [ - "Rights of the Child" - ] - }, - { - "text": "Improve the implementation of the anti-discrimination law, including disseminating the information on its provisions to the public as well as the personnel of the justice and law enforcement systems and strengthen the role of the Ombudsperson in this regard", - "values": [ - "Human rights education and training", - "National Human Rights Institution" - ] - }, - { - "text": "Complete implementation of the 10 year National Action Plan for Women, with a particular focus on the most vulnerable.", - "values": [ - "Women's rights" - ] - }, - { - "text": "Strengthen freedom of assembly and expression, ensuring adequate access to internet", - "values": [ - "Freedom of association and peaceful assembly", - "Freedom of opinion and expression" - ] - }, - { - "text": "Continue its efforts in cooperating with OHCHR since becoming a member in the Human Rights Council ", - "values": [ - "Technical assistance and cooperation" - ] - }, - { - "text": "Further step up efforts to extend the action plan against domestic violence to cover all forms of violence against women ", - "values": [ - "Rights of the Child", - "Women's rights" - ] - }, - { - "text": "Condemn forcefully and consistently, at the highest level, all racist and xenophobic statements, especially by public and elected officials", - "values": [ - "Racial discrimination" - ] - }, - { - "text": "Continue to fight HIV-AIDS with the support of the international community ", - "values": [ - "HIV - Aids", - "Technical assistance and cooperation" - ] - }, - { - "text": "Consider formulating a national human rights action plan and further strengthen the inter-ministerial technical committee as well as the national human rights commission in accordance with the Paris Principles", - "values": [ - "National Human Rights Institution" - ] - }, - { - "text": "Effectively implement the Zero Tolerance Campaign and key interventions of the National Human Rights Action Plan 2015 with regard to gender-based violence", - "values": [ - "Human rights education and training", - "Women's rights" - ] - }, - { - "text": "Abide by its international legal obligations, including those under the Fourth Geneva Convention", - "values": [ - "International humanitarian law", - "International instruments" - ] - }, - { - "text": "Continue to progress the establishment of an independent, Paris Principles-compliant, national human rights institution", - "values": [ - "National Human Rights Institution" - ] - }, - { - "text": "Consider the possibility of establishing a public monitoring system of international recommendations to facilitate the systematization and follow-up of the recommendations of treaty bodies and mechanisms of the Human Rights Council", - "values": [ - "Special procedures", - "Treaty bodies", - "UPR process" - ] - }, - { - "text": "Strengthen the provisions for the protection of women, notably through the adoption of the draft law aiming at preventing violence against women", - "values": [ - "Women's rights" - ] - }, - { - "text": "Promote human rights education in the country", - "values": [ - "Human rights education and training" - ] - }, - { - "text": "Cooperate fully with United Nations experts and rapporteurs, including the Special Rapporteur on the situation of human rights in Iran, in line with the standing invitation issued by the Government", - "values": [ - "Special procedures" - ] - }, - { - "text": "Amend the Constitution so as to define and explicitly prohibit discrimination", - "values": [ - "Other" - ] - }, - { - "text": "Establish a coordination mechanism to combat child labour, including in all its worst forms", - "values": [ - "Labour", - "Rights of the Child" - ] - }, - { - "text": "Continue the process of signing and ratifying the Optional Protocol to the International Covenant on Economic, Social and Cultural Rights ", - "values": [ - "ESC rights - general", - "International instruments" - ] - }, - { - "text": "Empower the Office of the Ombudsman by providing enough resources to ensure its effectiveness and full compliance with the Paris Principles ", - "values": [ - "National Human Rights Institution" - ] - }, - { - "text": "Enhance its efforts to prevent prison overcrowding", - "values": [ - "Detention" - ] - }, - { - "text": "Take necessary steps to ratify the International Convention for the Protection of All Persons from Enforced Disappearance", - "values": [ - "Enforced disappearances", - "International instruments" - ] - }, - { - "text": "Conduct a wide-ranging review of Egyptian human rights laws in order to bring them into line with Egypt's international commitments, as so pledged in its Human Rights Council candidature and within its National Report", - "values": [ - "General" - ] - }, - { - "text": "Continue to take steps to implement the Family Protection Act 2013 by training police officers and judges on its provisions", - "values": [ - "Human rights education and training", - "Women's rights" - ] - }, - { - "text": "The Government was committed to implementing the recommendations contained in the report of the Truth, Justice and Reconciliation Commission.", - "values": [ - "Justice" - ] - }, - { - "text": "Continue cooperation with the United Nations and other international organizations to overcome the remaining constraints and challenges", - "values": [ - "Technical assistance and cooperation" - ] - }, - { - "text": "Continue its efforts to reduce and eradicate gender-based violence, by ensuring due diligence in the prosecution and trial of those who commit acts of this nature and by providing adequate training to the relevant authorities regarding the protection from and prevention of violence against women and girls", - "values": [ - "Human rights education and training", - "Women's rights" - ] - }, - { - "text": "Accelerate efforts to combat human trafficking through integrated measures for prevention, prosecution and punishment of those responsible and for the protection, rehabilitation and social reintegration of the victims.", - "values": [ - "Trafficking" - ] - }, - { - "text": "Denounce its policy of no longer seeking clemency for Canadians convicted and given the death penalty in countries deemed to have the rule of law", - "values": [ - "Death penalty" - ] - }, - { - "text": "Ratify the Convention against Torture and other Cruel, Inhuman or Degrading Treatment or Punishment and its Optional Protocol toward the establishment of a national preventive mechanism", - "values": [ - "Detention", - "International instruments", - "Torture and other CID treatment" - ] - }, - { - "text": "Ensure that bills relating to traditional courts and traditional leaders currently under discussion are in conformity with the international commitments of South Africa", - "values": [ - "Justice" - ] - }, - { - "text": "Encourage the appropriate institutions to take further action in dealing with violence against women.", - "values": [ - "Women's rights" - ] - }, - { - "text": "Effectively implement the State's Development Plan for enhancement of the capacities of women through reviewing and updating of the legislation in order to eliminate forms of discrimination against women", - "values": [ - "Women's rights" - ] - }, - { - "text": "Amend its customary law so as to ensure compliance with the Convention on the Elimination of All Forms of Discrimination against Women, particularly in respect of inheritance", - "values": [ - "International instruments", - "Women's rights" - ] - }, - { - "text": "Take steps to approve and implement the 2016 Constitutional reform on the appointment of the judiciary as this would help to ensure its independence", - "values": [ - "Justice" - ] - }, - { - "text": "Ratify the Optional Protocol to the Convention Against Torture ", - "values": [ - "Detention", - "International instruments", - "Torture and other CID treatment" - ] - }, - { - "text": "Ensure the effective training of the judicial bodies in charge of investigating cases of gender-based violence", - "values": [ - "Women's rights" - ] - }, - { - "text": "Take further legislative and practical measures to allow ethnic minorities to preserve their cultural identity, to fully exercise their human rights and to ensure their participation in decision-making, in accordance with the Chinese Constitution", - "values": [ - "ESC rights - general", - "Minorities" - ] - }, - { - "text": "Continue the implementation of the national program on access of the population to high quality medical services", - "values": [ - "Right to health" - ] - }, - { - "text": "Expand the scope of the Right of Children to Free and Compulsory Education Act and promote human rights education in the school curriculum", - "values": [ - "Human rights education and training", - "Right to education", - "Rights of the Child" - ] - }, - { - "text": "Strengthen ongoing efforts against domestic violence, including by adopting comprehensive legislation that would establish specific offences in this realm, and by establishing adequate monitoring and investigative mechanisms", - "values": [ - "Rights of the Child", - "Women's rights" - ] - }, - { - "text": "Develop a more systematic approach to cooperation between governmental bodies and civil society to combat child trafficking ", - "values": [ - "Civil society", - "Rights of the Child", - "Trafficking" - ] - }, - { - "text": "Ratify ICRMW, as a fundamental step towards the protection of human rights in the country", - "values": [ - "International instruments", - "Labour", - "Migrants" - ] - }, - { - "text": "Increase its efforts to implement the national literacy programs in peri-urban and rural areas", - "values": [ - "Right to education" - ] - }, - { - "text": "Continue to conduct outreach activities to raise the awareness of people on human rights issues ", - "values": [ - "Human rights education and training" - ] - }, - { - "text": "Provide the National Programme for the Protection of the Rights of the Child for 2013-2016 with the necessary resourcing and strengthen its implementation, especially in respect of children in closed or partially-closed institutions", - "values": [ - "Rights of the Child" - ] - }, - { - "text": "Continue to improve the situation of the Roma, and to consider implementing, as appropriate, the recommendations of human rights treaty bodies and special procedures in that regard", - "values": [ - "Minorities", - "Special procedures", - "Treaty bodies" - ] - }, - { - "text": "Secure unlimited access and entirely satisfactory monitoring conditions for humanitarian organisations", - "values": [ - "Other" - ] - }, - { - "text": "That the implementation of the existing legislation to prevent and punish torture, both at federal and state level, remains a top priority", - "values": [ - "Torture and other CID treatment" - ] - }, - { - "text": "Study the possibility to develop new measures so that programs to combat poverty include vulnerable people such as seniors and people with disabilities ", - "values": [ - "Disabilities", - "Poverty" - ] - }, - { - "text": "Continue to promote gender equality and the empowerment of women", - "values": [ - "Women's rights" - ] - }, - { - "text": "Develop public awareness programmes to address stigmatization of lesbian, gay, bisexual, transgender and intersex persons", - "values": [ - "Human rights education and training", - "Sexual Orientation and Gender Identity" - ] - }, - { - "text": "Improve the functioning of the National Commission of Human Rights to regain its A status", - "values": [ - "National Human Rights Institution" - ] - }, - { - "text": "Follow up with their valuable work on human rights issues by ratifying the Optional Protocol to the International Covenant on Economic, Social and Cultural Rights, the International Convention for the Protection of All Persons from Enforced Disappearance, and the 1961 Convention on the Reduction of Statelessness, and by accepting recommendations made by the Human Rights Council mechanisms", - "values": [ - "ESC rights - general", - "Enforced disappearances", - "International instruments", - "Special procedures", - "Statelessness and the right to nationality", - "UPR process" - ] - }, - { - "text": "Strengthen measures taken within the reform policies to make the prison system more humane, in particular through training of personnel and improved prison administration ", - "values": [ - "Detention" - ] - }, - { - "text": "Continue to organize training programmes for parental competencies targeted to the general public to ensure the well-being of children", - "values": [ - "Rights of the Child" - ] - }, - { - "text": "Take the necessary steps to comply with ICCPR and make sure the right to a fair trial based in law is guaranteed.", - "values": [ - "CP rights - general", - "International instruments" - ] - }, - { - "text": "Implement measures concerning the improvement of the quality of education", - "values": [ - "Right to education" - ] - }, - { - "text": "Step up its efforts against caste-based violence, discrimination and prejudice, including by eradicating all forms of caste-based discrimination in the educational system", - "values": [ - "Minorities", - "Racial discrimination", - "Right to education" - ] - }, - { - "text": "Establish an independent mechanism for investigating allegations of torture and ill-treatment by law-enforcement officials, and ensure justice and reparation to victims of such human rights violations ", - "values": [ - "Human rights violations by state agents", - "Torture and other CID treatment" - ] - }, - { - "text": "Further strengthen its policy and programmatic response to address domestic violence against women.", - "values": [ - "Women's rights" - ] - }, - { - "text": "Ratify the International Convention on the Protection of the Rights of All Migrant Workers and Members of Their Families", - "values": [ - "International instruments", - "Labour", - "Migrants" - ] - }, - { - "text": "Increase its budget allocation for indigenous peoples ", - "values": [ - "Indigenous peoples" - ] - }, - { - "text": "The Government was committed to continuing to make every effort to ensure that human rights are deeply embedded in the social, political and cultural fabric of the society. In addition to the civil and political rights, it had established a foundation for economic, cultural and social rights, as indicated in its national report.", - "values": [ - "CP rights - general", - "ESC rights - general" - ] - }, - { - "text": "Adopt a comprehensive law on racism, racial discrimination, xenophobia and related intolerances which addresses hate speech and includes measures to effectively investigate and prosecute such offences", - "values": [ - "Racial discrimination" - ] - }, - { - "text": "Remove all obstacles to freedoms of expression, association, peaceful assembly and the press, ensuring that journalists and civil society can carry out their activities freely and safely, put an end to the harassment of journalists and remove the accreditation requirement for journalists", - "values": [ - "Civil society", - "Freedom of association and peaceful assembly", - "Freedom of opinion and expression", - "Freedom of the press" - ] - }, - { - "text": "In line with the recommendations from the Committee on the Rights of the Child, take immediate steps to halt and abolish the death penalty and life sentences for crimes committed by persons under 18", - "values": [ - "Death penalty", - "Rights of the Child", - "Treaty bodies" - ] - }, - { - "text": "Continue to provide financial and other forms of support to women and other vulnerable groups", - "values": [ - "Women's rights" - ] - }, - { - "text": "Continue improving and advancing the measures related to work environment and creation of job opportunities ", - "values": [ - "Development" - ] - }, - { - "text": "Continue with its efforts to address climate change and its adverse effects on people's livelihood and health, while ensuring that all climate action is guided by its human rights obligations", - "values": [ - "Environment" - ] - }, - { - "text": "Continue to take steps to improve conditions in prison settings and make them consistent with international standards", - "values": [ - "Detention" - ] - }, - { - "text": "Adopt a formal moratorium and commute all death sentences to prison terms", - "values": [ - "Death penalty" - ] - }, - { - "text": "Increase assistance to developing countries, up to the level of 0.7 per cent of GNP, in line with UN recommendations", - "values": [ - "Development" - ] - }, - { - "text": "Continue with its efforts in the field of economic, social and cultural rights, in order to increase the quality of life of its people, particularly the most excluded sectors of the population, for which it is particularly necessary to receive the support and technical assistance from the international community required by the country", - "values": [ - "ESC rights - general", - "Technical assistance and cooperation" - ] - }, - { - "text": "Increase the space for the representation of women in senior government positions", - "values": [ - "Women's rights" - ] - }, - { - "text": "Take measures to guarantee freedom of expression as well as to respect peaceful protests", - "values": [ - "Freedom of association and peaceful assembly", - "Freedom of opinion and expression" - ] - }, - { - "text": "Take concrete steps to combat juvenile delinquency which include the provision of opportunities for training, education and employment", - "values": [ - "Development", - "Public security", - "Right to education", - "Rights of the Child" - ] - }, - { - "text": "Consider abolishing the death penalty", - "values": [ - "Death penalty" - ] - }, - { - "text": "Ratify the International Convention on the Protection of the Rights of All Migrant Workers and Members of Their Families, as previously recommended", - "values": [ - "International instruments", - "Labour", - "Migrants", - "UPR process" - ] - }, - { - "text": "Guarantee to all citizens, without exemptions, equal access to public services and to an adequate standard of living", - "values": [ - "ESC rights - general" - ] - }, - { - "text": "Continue to enhance senior citizens' workforce participation, as advocated under the Federal Plan for Senior Citizens, adopted in 2012", - "values": [ - "Labour" - ] - }, - { - "text": "Bring official development assistance (ODA) up to the internationally committed 0.7 per cent of GDP", - "values": [ - "Development" - ] - }, - { - "text": "Adopt measures to increase the level of representation of women in the legislative and executive bodies ", - "values": [ - "Women's rights" - ] - }, - { - "text": "Continue to strengthen the rule of law and improve governance", - "values": [ - "Justice" - ] - }, - { - "text": "Pursue efforts with regional and international communities in seeking financial and technical assistance to domesticate ratified international treaties ", - "values": [ - "Technical assistance and cooperation" - ] - }, - { - "text": "Take immediate steps to bring conditions at all detention facilities, including Her Majesty's Prison and Fort Charlotte Prison, into line with the United Nations Standard Minimum Rules for the Treatment of Prisoners", - "values": [ - "Detention" - ] - }, - { - "text": "Continue the implementation of poverty eradication programmes including by allocating sufficient national budget for those programmes that impact directly on the lives of the people of Kenya", - "values": [ - "Poverty" - ] - }, - { - "text": "Issue a standing invitation to United Nations rapporteurs ", - "values": [ - "Special procedures" - ] - }, - { - "text": "Ensure effective follow-up to the activities included in the campaign against racism and hate crimes, which officially ended in May 2017, possibly through the development of a new campaign on the same topic", - "values": [ - "Human rights education and training", - "Racial discrimination" - ] - }, - { - "text": "Continue enhancing the quality of the access to education, including equal access to education for all children ", - "values": [ - "Right to education", - "Rights of the Child" - ] - }, - { - "text": "Ratify the first and second Optional Protocols to the Convention on the Rights of the Child", - "values": [ - "International instruments", - "Rights of the Child" - ] - }, - { - "text": "Fully abolish the death penalty, without delay", - "values": [ - "Death penalty" - ] - }, - { - "text": "Strengthen efforts in the area of development by giving priority to economic, social and cultural rights", - "values": [ - "Development", - "ESC rights - general" - ] - }, - { - "text": "Pay particular attention to the issue of protecting journalists and those working for the mass media in order to ensure the freedom and the legitimacy of their activities ", - "values": [ - "Freedom of the press" - ] - }, - { - "text": "Strengthen human rights education and training", - "values": [ - "Human rights education and training" - ] - }, - { - "text": "Consider extending a standing invitation to special procedure mandate holders", - "values": [ - "Special procedures" - ] - }, - { - "text": "Promote human rights education for security and police forces ", - "values": [ - "Human rights education and training" - ] - }, - { - "text": "Ratify the Convention on the Rights of Persons with Disabilities and work to implement the Pacific Regional Strategy on Disability ", - "values": [ - "Disabilities", - "International instruments" - ] - }, - { - "text": "Implement a comprehensive approach to the follow up of the UPR, which includes open consultation with a wide range of government bodies and civil society representatives ", - "values": [ - "Civil society", - "UPR process" - ] - }, - { - "text": "Advance in the implementation of measures aimed at improving the situation of persons with disabilities", - "values": [ - "Disabilities" - ] - }, - { - "text": "Make efforts to reverse the downward budgetary allocations to the education and health sectors in order to meet the African thresholds on health and education, respectively set in the Abuja and Dakar Declarations", - "values": [ - "Right to education", - "Right to health" - ] - }, - { - "text": "Consider alternatives to pre-deportation detention ", - "values": [ - "Detention" - ] - }, - { - "text": "Ratify the International Convention for the Protection of All Persons from Enforced Disappearance and the Optional Protocol to the Convention against Torture, paying particular attention to these problems in prisons", - "values": [ - "Detention", - "Enforced disappearances", - "International instruments", - "Torture and other CID treatment" - ] - }, - { - "text": "Step up efforts to combat the trafficking in human beings, including the development of international cooperation with interested Governments, international organizations and NGOs ", - "values": [ - "Civil society", - "Trafficking" - ] - }, - { - "text": "Fully implement without further delay the provisions of the 2011 Anti Discrimination Law ", - "values": [ - "Other" - ] - }, - { - "text": "Identify lesbian, gay, transgender, bisexual and intersex group as a vulnerable population and include the group in the next National Plan", - "values": [ - "Sexual Orientation and Gender Identity" - ] - }, - { - "text": "Make every effort to impede the use of torture, to assure humane conditions for prisoners in conformity with international standards and to abide by international humanitarian law", - "values": [ - "Detention", - "International humanitarian law", - "Torture and other CID treatment" - ] - }, - { - "text": "Accept the request for a country visit made in 2011 by the Special Rapporteur on the rights to freedom of peaceful assembly and of association ", - "values": [ - "Freedom of association and peaceful assembly", - "Special procedures" - ] - }, - { - "text": "Outlaw the death penalty for persons convicted of crimes committed before the age of 18, without exception, and implement a moratorium on all executions", - "values": [ - "Death penalty", - "Rights of the Child" - ] - }, - { - "text": "End torture and inhuman and degrading treatment, and ensure that allegations of torture, ill-treatment or excessive use of force by police and security forces are investigated, prosecuted and convicted in line with international standards ", - "values": [ - "Human rights violations by state agents", - "Torture and other CID treatment" - ] - }, - { - "text": "Implement the three draft laws aimed at promoting the independence and efficiency of the judiciary system once adopted", - "values": [ - "Justice" - ] - }, - { - "text": "Consider the ratification of the Optional Protocol to the Convention against Torture.", - "values": [ - "Detention", - "International instruments", - "Torture and other CID treatment" - ] - }, - { - "text": "Ratify the Optional Protocol to the International Covenant on Economic, Social and Cultural Rights and the Optional Protocol to the Convention against Torture and Other Cruel, Inhuman or Degrading Treatment or Punishment", - "values": [ - "Detention", - "ESC rights - general", - "International instruments", - "Torture and other CID treatment" - ] - }, - { - "text": "Take steps for eliminating religious and racial profiling faced by minorities including Muslims, Roma people and Afro-Swedes and prosecute perpetrators of xenophobic crimes", - "values": [ - "Freedom of religion and belief", - "Minorities", - "Racial discrimination" - ] - }, - { - "text": "Continue its work in preventing all cases of human trafficking", - "values": [ - "Trafficking" - ] - }, - { - "text": "Gender equality in the workplace, particularly concerning the executive level and the possibility of women gaining management positions, concerning both public enterprise and the private sector, as well as equal pay for men and women ", - "values": [ - "Women's rights" - ] - }, - { - "text": "Continue to ensure effective access to social protection for vulnerable groups", - "values": [ - "Other" - ] - }, - { - "text": "Subscribe to article 14 of CERD in order to recognize the Committee's competence to receive and consider communications from individuals or groups of individuals alleging to be victims of violations of any of the rights established in the Convention", - "values": [ - "International instruments", - "Racial discrimination", - "Treaty bodies" - ] - }, - { - "text": "Ratify the Optional Protocol to the Convention against Torture (OP-CAT) and swiftly establish a national preventive mechanism in accordance with the Protocol", - "values": [ - "Detention", - "International instruments", - "Torture and other CID treatment" - ] - }, - { - "text": "Continue to implement health policies that guarantee the right to health for all", - "values": [ - "Right to health" - ] - }, - { - "text": "Do not criminalize undocumented migration and reduce administrative detention to a minimum ", - "values": [ - "Detention", - "Migrants" - ] - }, - { - "text": "Strengthen awareness of and respect for human rights within the armed forces, police and judiciary ", - "values": [ - "Human rights education and training" - ] - }, - { - "text": "Intensify its efforts to promote the status of women and continue its commitments to fulfil quality education ", - "values": [ - "Right to education", - "Women's rights" - ] - }, - { - "text": "Allocate more resources in sectors that provide basic services such as health, education and employment opportunities ", - "values": [ - "Development", - "Right to education", - "Right to health" - ] - }, - { - "text": "Take steps towards establishing a National Human Rights Institution in line with the Paris Principles", - "values": [ - "National Human Rights Institution" - ] - }, - { - "text": "Increase the health budget allocation to the recommended minimum of 15 per cent of GDP, in line with commitments under the Abuja Declaration, in order to counter the alarming maternal and under-five mortality and morbidity rates", - "values": [ - "Right to health", - "Rights of the Child", - "Women's rights" - ] - }, - { - "text": "Continue to strengthen the rights of women, particularly in relation to the equal pay issue", - "values": [ - "Women's rights" - ] - }, - { - "text": "Continue to implement policies for the eradication of poverty ", - "values": [ - "Poverty" - ] - }, - { - "text": "Continue its efforts to achieve its goals of universal education, gender empowerment and free education", - "values": [ - "Right to education", - "Women's rights" - ] - }, - { - "text": "Consider the establishment of a, or strengthen the existing national mechanism for coordination, implementation, reporting and follow-up, in line with elements arising from good practices identified in the 2016 OHCHR guide on national mechanisms for reporting and follow-up", - "values": [ - "Special procedures", - "Treaty bodies", - "UPR process" - ] - }, - { - "text": "Implement policies and measures that guarantee fully the human rights of indigenous peoples and improve their living conditions and standards ", - "values": [ - "Indigenous peoples" - ] - }, - { - "text": "Consider acceding to the International Convention on the Protection of the Rights of All Migrant Workers and Members of Their Families", - "values": [ - "International instruments", - "Labour", - "Migrants" - ] - }, - { - "text": "Further promote the collective rights of women, children, persons with disabilities, people belonging to ethnic and religious groups, and persons living with HIV/AIDS, and promote tolerance and mutual respect for all, including by developing a mechanism to this end ", - "values": [ - "Disabilities", - "Freedom of religion and belief", - "HIV - Aids", - "Minorities", - "Rights of the Child", - "Women's rights" - ] - }, - { - "text": "Examine issuing a standing invitation to special procedures", - "values": [ - "Special procedures" - ] - }, - { - "text": "Revise the labour law to protect the rights of all workers without discrimination and ensure their effective access to justice, in cooperation with ILO ", - "values": [ - "Labour" - ] - }, - { - "text": "Review its legislation in order to protect fundamental rights of all persons, independently of their migrant status.", - "values": [ - "Migrants" - ] - }, - { - "text": "Use the upcoming visit of the Special Rapporteur on the Right to Education to set up national plans for the promotion of the right to education ", - "values": [ - "Right to education", - "Special procedures" - ] - }, - { - "text": "Implement strategies to solve problems facing education, particularly at the elementary level ", - "values": [ - "Right to education" - ] - }, - { - "text": "Continue its efforts to ensure that all children have access to free basic education, and to improve the overall quality of education, including by ensuring that teachers are well trained and fully qualified", - "values": [ - "Right to education", - "Rights of the Child" - ] - }, - { - "text": "Continue efforts to develop education, particularly in the rural parts of the country, with the participation of the private and public sectors and nongovernmental organizations, with a view to reducing poverty through employment opportunities and the strengthening of human resources", - "values": [ - "Civil society", - "Poverty", - "Right to education" - ] - }, - { - "text": "Continue ensuring that national efforts aimed at combating corruption include the consolidation of the principles of transparency and accountability", - "values": [ - "Corruption" - ] - }, - { - "text": "Make concrete efforts to increase the representation of women in public decision-making processes", - "values": [ - "Women's rights" - ] - }, - { - "text": "Transfer NGO oversight to a civilian institution and protect freedom of expression", - "values": [ - "Civil society", - "Freedom of opinion and expression" - ] - }, - { - "text": "Continue to implement policies that increase access to employment, in particular for youths and in rural areas", - "values": [ - "Labour" - ] - }, - { - "text": "Recommended the implementation of the South Africa Law Reform Commission's proposals on the Criminal Law Amendment Act 2007, with a view to supporting and prosecuting complaints in court and to providing comprehensive State-funded post sexual assault medical care and treatment services.", - "values": [ - "Justice", - "Women's rights" - ] - }, - { - "text": "Continue enhancing the working conditions of temporary agricultural labourers and strengthen the work of labour inspection authorities", - "values": [ - "Labour" - ] - }, - { - "text": "Enhance the programmes aimed at addressing socio-economic inequalities, from a human rights perspective in fulfilment of its obligations under the International Covenant on Economic, Social and Cultural Rights.", - "values": [ - "ESC rights - general", - "International instruments" - ] - }, - { - "text": "Ratify or accede to, where appropriate, the Second Optional Protocol to the International Covenant on Civil and Political Rights", - "values": [ - "Death penalty", - "International instruments" - ] - }, - { - "text": "Grant to the Joint United Nations Human Rights Office and other independent mechanisms free access to places of detention of the National Intelligence Agency and the National Guard and any other detention centre that is still inaccessible to external observers\n\n", - "values": [ - "Detention" - ] - }, - { - "text": "Prepare the elections in accordance with democratic standards while cooperating with the international community", - "values": [ - "Elections", - "Technical assistance and cooperation" - ] - }, - { - "text": "Continue to harmonize its domestic legislation with all international human rights instruments that Uganda is a party to", - "values": [ - "International instruments" - ] - }, - { - "text": "Repeal legislation that criminalizes abortion and eliminate all punitive measures, in particular Article 40.3.3 of the Irish Constitution", - "values": [ - "Women's rights" - ] - }, - { - "text": "Consider favourably the request for visits by thematic mandate-holders ", - "values": [ - "Special procedures" - ] - }, - { - "text": "Take the necessary measures to ensure freedom of expression and opinion, as well as freedom of association and assembly, in accordance with international human rights standards", - "values": [ - "Freedom of association and peaceful assembly", - "Freedom of opinion and expression", - "International instruments" - ] - }, - { - "text": "Eliminate the practice of FGM and promote the participation of women in society ", - "values": [ - "Rights of the Child", - "Torture and other CID treatment", - "Women's rights" - ] - }, - { - "text": "Sign and ratify the Optional Protocol to CRC on a communications procedure", - "values": [ - "International instruments", - "Rights of the Child" - ] - }, - { - "text": "Keep on efforts, both on legal and procedural grounds, to ensure equal access to quality health services for all citizens", - "values": [ - "Right to health" - ] - }, - { - "text": "Decriminalize abortion in cases of incest and rape and in cases in which the life or physical integrity of women and adolescents is endangered ", - "values": [ - "Rights of the Child", - "Women's rights" - ] - }, - { - "text": "Montenegro expressed its willingness to protect media freedoms and commitment to investigating fully all the cases of attacks on journalists.", - "values": [ - "Freedom of the press" - ] - }, - { - "text": "Release the five Cuban political prisoners - arbitrarily detained, as acknowledged by the Working Group on Arbitrary Detentions in its Opinion No. 19-2005, serving unjust sentences that resulted from a politically manipulated trial in open disregard for the rules of due process ", - "values": [ - "Detention", - "Freedom of opinion and expression", - "Special procedures" - ] - }, - { - "text": "Develop programmes to promote tolerance and respect for all persons and to guarantee the rights of privacy and non-discrimination ", - "values": [ - "Other", - "Privacy" - ] - }, - { - "text": "Take effective measures both in terms of institutional building and raising awareness to combat trafficking in persons ", - "values": [ - "Human rights education and training", - "Trafficking" - ] - }, - { - "text": "Release those detained solely for exercising rights to freedom of expression or for membership in a political group, and ensure remaining detainees full fair trial guarantees on an individual level", - "values": [ - "Detention", - "Freedom of association and peaceful assembly", - "Freedom of opinion and expression" - ] - }, - { - "text": "Implement reforms in the rule of law sphere to ensure fairness and due process, combat corruption, and improve transparency throughout the legal process", - "values": [ - "Corruption", - "Justice" - ] - }, - { - "text": "Ensure the protection of human rights defenders, notably the leaders of indigenous communities fighting for their rights ", - "values": [ - "Human rights defenders", - "Indigenous peoples" - ] - }, - { - "text": "Take steps to support the implementation of its Law Against Domestic Violence including providing law enforcement officials with training on sexual violence ", - "values": [ - "Human rights education and training", - "Women's rights" - ] - }, - { - "text": "Maintain its efforts aimed at strengthening the status of women in society.", - "values": [ - "Women's rights" - ] - }, - { - "text": "Work to reduce the case backlog and address the inefficiencies in the judicial system that contribute to lengthy pretrial detentions and exacerbate difficult prison conditions ", - "values": [ - "Detention", - "Justice" - ] - }, - { - "text": "Adopt a national plan to protect human rights and take the necessary measures to ensure effective protection against discrimination in various fields, particularly employment, housing, health and education ", - "values": [ - "Labour", - "Right to education", - "Right to health", - "Right to housing" - ] - }, - { - "text": "Strengthen enforcement legislation and programmes regarding prohibition of commercial sexual exploitation of children", - "values": [ - "Labour", - "Rights of the Child" - ] - }, - { - "text": "Respect all provisions of the Convention relating to the Status of Refugees, including the principle of non-refoulement for all persons standing at the Bangladesh borders, whose life would be threatened ", - "values": [ - "Asylum-seekers - refugees", - "International instruments" - ] - }, - { - "text": "Continue its commitment to advancing the lives of its people through the provisions of best education, housing and medical care, which has rightfully earned its international recognition ", - "values": [ - "Right to education", - "Right to health", - "Right to housing" - ] - }, - { - "text": "Guarantee access to legal representation for those detained in connection with the demonstrations following the 2009 presidential elections", - "values": [ - "Detention", - "Elections" - ] - }, - { - "text": "Continue to seek technical cooperation and assistance from the international community, such as OHCHR and UNFPA, in relevant areas, particularly capacity-building for preparing its national reports under human rights conventions to which Samoa is a party", - "values": [ - "Technical assistance and cooperation", - "Treaty bodies" - ] - }, - { - "text": "Continue efforts to achieve gender equality in all fields, particularly in the labour market", - "values": [ - "Labour", - "Women's rights" - ] - }, - { - "text": "Continue with the implementation of its development and poverty-reduction policy, strengthen international cooperation, and make greater efforts to reduce poverty ", - "values": [ - "Poverty" - ] - }, - { - "text": "Create an independent national human rights institution, as well as facilitate the legal recognition of NGOs and human rights defenders, simplifying the procedure for their recognition and functioning", - "values": [ - "Civil society", - "Human rights defenders", - "National Human Rights Institution" - ] - }, - { - "text": "Ensure as priority the protection of civilians by adopting appropriate measures to guarantee the respect for international humanitarian law ", - "values": [ - "International humanitarian law" - ] - }, - { - "text": "Establish and implement a clear procedure for free, prior and informed consultation that would ensure full participation of indigenous peoples in the decision-making process regarding any major project impacting on their way of life", - "values": [ - "Indigenous peoples" - ] - }, - { - "text": "Take concrete measures for the realization of economic, social and cultural rights including the rights to development for the better realization of the MDGs.", - "values": [ - "Development", - "ESC rights - general" - ] - }, - { - "text": "Elaborate a national human rights plan ", - "values": [ - "Other" - ] - }, - { - "text": "Put in place an independent national human rights institution, in accordance with the Paris Principles", - "values": [ - "National Human Rights Institution" - ] - }, - { - "text": "Continue to increase women's access to employment, public life, education, housing and health", - "values": [ - "Women's rights" - ] - }, - { - "text": "Implement at the earliest possible moment the initiative to bring serious human rights abuses under Federal Law if it is not done yet.", - "values": [ - "Justice" - ] - }, - { - "text": "Investigate all allegations of torture and ill-treatment and bring perpetrators to justice ", - "values": [ - "Torture and other CID treatment" - ] - }, - { - "text": "Criminalize domestic violence, and facilitate access to legal remedies for victims of such violence", - "values": [ - "Rights of the Child", - "Women's rights" - ] - }, - { - "text": "Consider expanding human rights education in the school programme so that it includes the main international human rights instruments, and consider strengthening and expanding the human rights education programmes for law enforcement officials and military personnel ", - "values": [ - "Human rights education and training", - "International instruments" - ] - }, - { - "text": "Continue the efforts in strengthening the programme and policy of social inclusion and cohesion of all citizens, in particular with respect to the protection of the rights and legitimate interests of the vulnerable and minority groups ", - "values": [ - "Minorities" - ] - }, - { - "text": "Intensify efforts to identify victims of trafficking, to ensure that all perpetrators of trafficking in persons are investigated and prosecuted and to provide adequate protection and rehabilitation for the victims", - "values": [ - "Trafficking" - ] - }, - { - "text": "Increase, in accordance with international standards, the minimum age of criminal responsibility, as well as the harmonization of domestic legislation with international norms in the area of child labour ", - "values": [ - "Justice", - "Labour", - "Rights of the Child" - ] - }, - { - "text": "Ensure the existence of sufficient budget allocations and follow-up and evaluation mechanisms for the full implementation of the "2008-2013 National Strategy on children right's protection" in order to support children and the most vulnerable population ", - "values": [ - "Rights of the Child" - ] - }, - { - "text": "Strengthen efforts to eradicate child abuse, child labour and the sexual exploitation of children", - "values": [ - "Rights of the Child" - ] - }, - { - "text": "Continue its efforts to design and implement its plans aimed at promoting human development programmes in the important sectors in the country ", - "values": [ - "Development" - ] - }, - { - "text": "Ensure the inclusion of human rights and especially children's rights in the public education system, raising awareness about human rights in general", - "values": [ - "Human rights education and training", - "Rights of the Child" - ] - }, - { - "text": "Review regulations to ensure the protection against exploitation and forced labour of migrant workers", - "values": [ - "Labour", - "Migrants" - ] - }, - { - "text": "Consider ratifying the Optional Protocol to the Convention on the Elimination of All Forms of Discrimination Against Women", - "values": [ - "International instruments", - "Women's rights" - ] - }, - { - "text": "Continue to promote sustainable economic and social development to raise people\u2019s living standards", - "values": [ - "ESC rights - general" - ] - }, - { - "text": "Share best practices in promoting the education of children with disabilities ", - "values": [ - "Disabilities", - "Right to education", - "Rights of the Child" - ] - }, - { - "text": "Take measures to foster a safe, respectful, enabling space for civil society, including through removing legal and policy measures unwarrantedly limiting the rights to freedom of expression and association, and to ensure that the rights of indigenous communities to prior consultation on extractive projects are rigorously enforced", - "values": [ - "Civil society", - "Freedom of association and peaceful assembly", - "Freedom of opinion and expression" - ] - }, - { - "text": "Strengthen the measures to ensure a safe environment for the activities of human rights defenders", - "values": [ - "Human rights defenders" - ] - }, - { - "text": "Ensure the respect for the rights and fundamental freedoms of lesbian, gay, bisexual, transgender, intersex and queer persons, by repealing the norms that criminalize and stigmatize them", - "values": [ - "Sexual Orientation and Gender Identity" - ] - }, - { - "text": "Introduce a moratorium on the execution of the death penalty with a view to completely abolishing capital punishment ", - "values": [ - "Death penalty" - ] - }, - { - "text": "Take the necessary measures to ensure the signature and ratification of the two Optional Protocols to the Convention on the Rights of the Child ", - "values": [ - "International instruments", - "Rights of the Child" - ] - }, - { - "text": "Continue to develop its National Asylum service while paying special attention to human rights, to living conditions of reception facilities and to the needs of vulnerable groups", - "values": [ - "Asylum-seekers - refugees", - "Right to housing" - ] - }, - { - "text": "Welcome an amendment to its Juvenile Justice Law and set the minimum age of criminal responsibility at 16 years of age ", - "values": [ - "Justice", - "Rights of the Child" - ] - }, - { - "text": "Further include human rights education and awareness-raising programmes in school and university curricula as part of its efforts to promote human rights in the country ", - "values": [ - "Human rights education and training" - ] - }, - { - "text": "Respond questionnaires to the mandate holders in due time.", - "values": [ - "Special procedures" - ] - }, - { - "text": "Conduct comprehensive investigation related to reports by human rights non-governmental organisations about abuses in child care institutions and homes for mothers and children, as well as practices of forced labour in socalled Magdalene laundries", - "values": [ - "Rights of the Child", - "Women's rights" - ] - }, - { - "text": "Strengthen measures to improve the application of the law on domestic violence, including training and awareness-raising for judges, prosecutors and police officers", - "values": [ - "Human rights education and training", - "Rights of the Child", - "Women's rights" - ] - }, - { - "text": "Sign and ratify the Optional Protocol to the Convention against Torture and Other Cruel, Inhuman or Degrading Treatment or Punishment", - "values": [ - "International instruments", - "Torture and other CID treatment" - ] - }, - { - "text": "Strengthen measures to promote citizenship", - "values": [ - "Statelessness and the right to nationality" - ] - }, - { - "text": "Luxembourg undertakes to submit an interim report in 2015 on the progress made in the implementation of the recommendations of the universal periodic review to the Human Rights Council", - "values": [ - "UPR process" - ] - }, - { - "text": "Consider adopting specific legislation to combat trafficking in persons to ensure full protection of women and children who often fall prey to illicit networks ", - "values": [ - "Rights of the Child", - "Trafficking", - "Women's rights" - ] - }, - { - "text": "Ensure that the Convention against Torture is fully implemented into the national legislation", - "values": [ - "International instruments", - "Torture and other CID treatment" - ] - }, - { - "text": "Establish an independent commission, supported by international experts as necessary, to investigate the allegations of grave human rights abuses, including murders and extrajudicial killings, allegedly committed by members of the armed forces and the Phantom Squad in the period 2002-2006 ", - "values": [ - "Extrajudicial executions", - "Human rights violations by state agents", - "Justice" - ] - }, - { - "text": "Make further efforts to ensure free education for all, since much of the burden still remains with the families ", - "values": [ - "Right to education" - ] - }, - { - "text": "Repeal or amend ambiguous provisions relating to national security in the Penal Code to prevent those provisions being applied in an arbitrary manner to stifle legitimate and peaceful dissent, debate and freedom of expression ", - "values": [ - "Freedom of opinion and expression" - ] - }, - { - "text": "Continue with efforts to protect the rights of unaccompanied and separated children and female refugees ", - "values": [ - "Asylum-seekers - refugees", - "Rights of the Child", - "Women's rights" - ] - }, - { - "text": "Grant equal citizenship rights to women and men", - "values": [ - "Women's rights" - ] - }, - { - "text": "Reinforce policies to tackle domestic and sexual violence against women and girls in accordance with international human rights standards ", - "values": [ - "International instruments", - "Rights of the Child", - "Women's rights" - ] - }, - { - "text": "Revise the Family Code to guarantee equality between fathers and mothers in guardianship of their children ", - "values": [ - "Women's rights" - ] - }, - { - "text": "Ratify the International Convention on the Protection of the Rights of All Migrant Workers and Members of Their Families ", - "values": [ - "International instruments", - "Labour", - "Migrants" - ] - }, - { - "text": "Prevent domestic and gender violence and child abuse, including through public awareness-raising programmes on child abuse and in particular on sexual abuse ", - "values": [ - "Human rights education and training", - "Rights of the Child", - "Women's rights" - ] - }, - { - "text": "Follow-up on this UPR", - "values": [ - "UPR process" - ] - }, - { - "text": "Take further steps to combat all discriminatory and harmful cultural practices, including FGM, that prevent women and girls from enjoying their human rights.", - "values": [ - "Rights of the Child", - "Torture and other CID treatment", - "Women's rights" - ] - }, - { - "text": "Intensify its efforts in promoting literacy among the population especially among rural women", - "values": [ - "Right to education", - "Women's rights" - ] - }, - { - "text": "Further strengthen women's rights and review Articles 40 and 41 of the Irish constitution with a view to abandon formulations that potentially promote gender discrimination and to bring Ireland's laws on abortion into compliance with international human rights standards in law and in practice", - "values": [ - "International instruments", - "Women's rights" - ] - }, - { - "text": "Strengthen the campaign to combat discriminatory practices and violence against women and children", - "values": [ - "Rights of the Child", - "Women's rights" - ] - }, - { - "text": "Within the next 24 months, Cyprus undertook to make its national human rights institution fully compatible with the Paris Principles, including its financial independence, as the relevant bill had to go through parliamentary procedures.", - "values": [ - "National Human Rights Institution" - ] - }, - { - "text": "Continue advancing in the development and implementation of the "Stork Network" and the national system for registration, monitoring and accompanying for pregnant women in order to prevent maternal mortality, in the context of the policy for integral assistance to woman's health ", - "values": [ - "Right to health", - "Women's rights" - ] - }, - { - "text": "Continue to develop education, universalize basic education and reduce the illiteracy rate", - "values": [ - "Right to education" - ] - }, - { - "text": "Adopt programmes to sensitize and encourage the community for positive engagement with persons with disabilities, and ratify the Convention on the Rights of Persons with Disabilities (CRPD)", - "values": [ - "Disabilities", - "International instruments" - ] - }, - { - "text": "End the impunity of law enforcement authorities", - "values": [ - "Human rights violations by state agents", - "Impunity" - ] - }, - { - "text": "Continue its efforts in food supply and the possibility of making it available to its citizens ", - "values": [ - "Right to food" - ] - }, - { - "text": "Revise "Decree 72" and "Decree 174" relating to the management, provision and use of the Internet, to ensure their consistency with international human rights obligations, and in particular with Articles 19, 21 and 22 of ICCPR ", - "values": [ - "Freedom of association and peaceful assembly", - "Freedom of opinion and expression", - "International instruments" - ] - }, - { - "text": "Take all possible measures to ensure that the detention regime is brought into line with international human rights law.", - "values": [ - "Detention", - "International instruments" - ] - }, - { - "text": "Adopt all necessary measures to eradicate child abuse, labour and sexual exploitation of children, as well as violence against children, paying particular attention to cases of children who are killed because they were born with disabilities, malformation, without pigmentation or because their mother died during childbirth", - "values": [ - "Rights of the Child" - ] - }, - { - "text": "Continue its efforts in the area of human rights education and training, particularly by implementing relevant provisions of the United Nations Declaration in human rights education and training", - "values": [ - "Human rights education and training" - ] - }, - { - "text": "Repeal the parental right "to punish" children in family law and define what constitutes ill-treatment in line with the State's international obligations", - "values": [ - "Rights of the Child", - "Torture and other CID treatment" - ] - }, - { - "text": "Complete the process of ratification of all conventions it has signed, in particular the Convention against Torture and Other Cruel, Inhuman or Degrading Treatment or Punishment and its Optional Protocol", - "values": [ - "Detention", - "International instruments", - "Torture and other CID treatment" - ] - }, - { - "text": "Poverty-reduction activities will take into account the fact that inequality has grown in recent years,80 and so the resources and benefits aimed at reducing poverty will be increased and better allocated, and coverage in the fields of education, housing, culture, social security, health, employment and other factors in development will be extended, especially for people living in poverty or extreme poverty.", - "values": [ - "Poverty" - ] - }, - { - "text": "Provide adequate minority protection for indigenous and tribal groups ", - "values": [ - "Indigenous peoples" - ] - }, - { - "text": "Take practical action to ensure that existing anti-discrimination legislation is properly enforced so as to combat discrimination against its citizens, both systemic and overt, based on in particular, ethnicity, sexual orientation and gender identity, and HIV status", - "values": [ - "HIV - Aids", - "Minorities", - "Racial discrimination", - "Sexual Orientation and Gender Identity", - "Women's rights" - ] - }, - { - "text": "Take steps to establish a National Human Rights Institution in full compliance with the Paris Principles", - "values": [ - "National Human Rights Institution" - ] - }, - { - "text": "Re-establish the moratorium on executions and beyond that, consider final abolition of the death penalty ", - "values": [ - "Death penalty" - ] - }, - { - "text": "Consider, in a progressive manner and with the necessary technical assistance, the ratification of the principal outstanding international human rights instruments ", - "values": [ - "International instruments", - "Technical assistance and cooperation" - ] - }, - { - "text": "Ratify CPED", - "values": [ - "Enforced disappearances", - "International instruments" - ] - }, - { - "text": "Adopt legislative and other measures to guarantee in law and practice protection of freedom of expression and independence of journalists", - "values": [ - "Freedom of opinion and expression", - "Freedom of the press" - ] - }, - { - "text": "Strengthen the legal framework to combat and eradicate the worst forms of child labour, through legislative measures and awareness-raising campaigns", - "values": [ - "Human rights education and training", - "Labour", - "Rights of the Child" - ] - }, - { - "text": "Continue to follow up on the requests by a number of Special Procedures Mandate Holders to visit the country", - "values": [ - "Special procedures" - ] - }, - { - "text": "Continue the positive steps it has undertaken to establish a national human rights institution based on the Paris Principles ", - "values": [ - "National Human Rights Institution" - ] - }, - { - "text": "Consider the possible establishment of an official moratorium on the death penalty, since it is not applied since 1997", - "values": [ - "Death penalty" - ] - }, - { - "text": "Give appropriate priority to the improvement of detention conditions in the draft justice reform Plan under adoption", - "values": [ - "Detention", - "Justice" - ] - }, - { - "text": "End immediately reprisals against persons on the basis of "guilt by association" and the collective punishment of families of convicted criminals", - "values": [ - "Justice" - ] - }, - { - "text": "Meet the stated commitment under the Maputo Declaration of allocating at least 10 per cent of the State budget to agriculture development", - "values": [ - "Development" - ] - }, - { - "text": "Ensure the protection of Tibetan refugees by ratifying and applying the 1951 Convention relating to the Status of Refugees and its 1967 Protocol", - "values": [ - "Asylum-seekers - refugees", - "International instruments" - ] - }, - { - "text": "Modify the definition of domestic violence in law in order to better protect women against sexual, economical and psychological violence", - "values": [ - "Rights of the Child", - "Women's rights" - ] - }, - { - "text": "Strengthen its cooperation with the special procedures of Human Rights Council by responding positively to pending visit requests ", - "values": [ - "Special procedures" - ] - }, - { - "text": "Engage civil society in the process of implementation of UPR recommendations ", - "values": [ - "Civil society", - "UPR process" - ] - }, - { - "text": "Continue strengthening the national human rights institutions of South Africa in accordance with its Constitution in order for them to be able to exercise their powers and execute their functions impartially and independently", - "values": [ - "National Human Rights Institution" - ] - }, - { - "text": "Carry out the necessary amendments to its national legislation so that no crime is punished by the death penalty", - "values": [ - "Death penalty" - ] - }, - { - "text": "Work toward strengthening security to allow a harmonious development of the country ", - "values": [ - "Public security" - ] - }, - { - "text": "Continue efforts to implement the policy of Education for All, especially children, at all levels", - "values": [ - "Right to education", - "Rights of the Child" - ] - }, - { - "text": "Intensify the work aimed at the ratification of the Council of Europe Framework Convention for the Protection of National Minorities, signed by Greece in 1997", - "values": [ - "International instruments", - "Minorities" - ] - }, - { - "text": "Continue adopting measures to ensure the rights of the ethnic minorities living in the country ", - "values": [ - "Minorities" - ] - }, - { - "text": "Review its prison conditions in line with the United Nations Standard Minimum Rules for the Treatment of Prisoners and implement the results of such review before the third cycle of its universal periodic review", - "values": [ - "Detention", - "UPR process" - ] - }, - { - "text": "Make necessary amendments to the national legislation in order to bring it into line with international obligations and commitments for the protection of children and in particular for their protection against sexual abuses, as well as against trafficking of persons", - "values": [ - "Rights of the Child", - "Trafficking" - ] - }, - { - "text": "Continue adapting health, education and transport services to the needs of persons with disabilities ", - "values": [ - "Disabilities", - "Right to education", - "Right to health" - ] - }, - { - "text": "Continue its development of education to achieve a higher primary school enrolment", - "values": [ - "Right to education" - ] - }, - { - "text": "Redouble its efforts for the ratification of the International Convention for the Protection of All Persons from Enforced Disappearance", - "values": [ - "Enforced disappearances", - "International instruments" - ] - }, - { - "text": "Ensure that all assaults on human rights defenders, journalists and members of their families are properly investigated and that perpetrators are brought to justice", - "values": [ - "Freedom of the press", - "Human rights defenders" - ] - }, - { - "text": "Continue to uphold the promotion of human rights and fundamental freedoms, particularly for the exercise by people under foreign occupation of their right to self-determination.", - "values": [ - "Other" - ] - }, - { - "text": "Uphold the rights to freedom of expression and assembly", - "values": [ - "Freedom of association and peaceful assembly", - "Freedom of opinion and expression" - ] - }, - { - "text": "Ensure international conventions are streamlined in domestic laws", - "values": [ - "International instruments" - ] - }, - { - "text": "Continue working against the catastrophic consequences of natural phenomena", - "values": [ - "Other" - ] - }, - { - "text": "Take the necessary steps to ensure that its legal system and policies are in full compliance with its international obligations in respect of freedom of expression and that the media and journalists are guaranteed the necessary freedoms to carry out their work independently and without fear of prosecution", - "values": [ - "Freedom of opinion and expression", - "Freedom of the press" - ] - }, - { - "text": "Ensure the coordinated implementation of the National Domestic Violence Policy ", - "values": [ - "Rights of the Child", - "Women's rights" - ] - }, - { - "text": "Undertake all necessary measures to prevent the torture and mistreatment of inmates ", - "values": [ - "Detention", - "Torture and other CID treatment" - ] - }, - { - "text": "Take steps to facilitate access to education, health and housing for the Roma community ", - "values": [ - "Minorities", - "Right to education", - "Right to health", - "Right to housing" - ] - }, - { - "text": "Continue to adapt national legislation in order to better implement the provisions of international treaties ", - "values": [ - "International instruments" - ] - }, - { - "text": "Encourage and facilitate relevant human rights institutions to be accredited by the International Coordinating Committee of NHRIs in line with the Paris Principles in order to create a space for independent monitoring of human rights, particularly on abusive military and police activities ", - "values": [ - "National Human Rights Institution" - ] - }, - { - "text": "Sign and ratify the Rome Statute.", - "values": [ - "International instruments", - "Justice" - ] - }, - { - "text": "Continue to improve the situation of education in line with recent reforms in this sector.", - "values": [ - "Right to education" - ] - }, - { - "text": "Continue to participate actively in follow-up to the proceedings of relevant conferences, including the forthcoming review of the Durban Declaration and Programme of Action of the World Conference to Combat Racism and Racial Discrimination.", - "values": [ - "Racial discrimination" - ] - }, - { - "text": "Advance its efforts to ratify CRPD ", - "values": [ - "Disabilities", - "International instruments" - ] - }, - { - "text": "Give due attention to reconciling the universal values of human rights with the specific circumstances of Vietnam.", - "values": [ - "Other" - ] - }, - { - "text": "Take all necessary measures for effective application of the 2009 law on the elimination of violence against women ", - "values": [ - "Women's rights" - ] - }, - { - "text": "Implement programs to fight against child labour", - "values": [ - "Labour", - "Rights of the Child" - ] - }, - { - "text": "Take concrete and substantial steps in matters of transitional justice in order to address grave human rights violations committed during the internal armed conflict 1979-1992", - "values": [ - "Justice" - ] - }, - { - "text": "Ensure that national labour legislation respects international law in this field", - "values": [ - "Labour" - ] - }, - { - "text": "Extend an open and permanent invitation to the United Nations human rights special procedures mandate-holders", - "values": [ - "Special procedures" - ] - }, - { - "text": "That all alleged attacks on human rights defenders are promptly and thoroughly investigated, and that perpetrators are held accountable", - "values": [ - "Human rights defenders" - ] - }, - { - "text": "Implement measures to ensure the full enjoyment of rights by persons with disabilities, especially regarding inclusive education and development", - "values": [ - "Development", - "Disabilities", - "Right to education" - ] - }, - { - "text": "Improve the birth registration system to guarantee registration for every child with the issuance of a birth certificate", - "values": [ - "Rights of the Child", - "Statelessness and the right to nationality" - ] - }, - { - "text": "Continue programmes to eradicate domestic violence and violence against women", - "values": [ - "Rights of the Child", - "Women's rights" - ] - }, - { - "text": "Support and facilitate the legal establishment of the commission in charge of the self-regulation of the media in Rwanda and provide adequate and sufficient resources so that it carries out its mandate freely and independently", - "values": [ - "Freedom of opinion and expression", - "Freedom of the press" - ] - }, - { - "text": "Take appropriate measures to reconcile growing tuition fees with the level of education", - "values": [ - "Right to education" - ] - }, - { - "text": "Strengthen the existing measures to combat child trafficking, forced labour, begging and sexual exploitations of children, including migrant children ", - "values": [ - "Labour", - "Migrants", - "Rights of the Child", - "Trafficking" - ] - }, - { - "text": "Give further effect to international human rights instruments in the domestic legislation, including from the provisions contained in the CRC ", - "values": [ - "International instruments", - "Rights of the Child" - ] - }, - { - "text": "Reinstitute Turkish mother tongue lessons as part of the primary and secondary school curricula", - "values": [ - "Other" - ] - }, - { - "text": "Give due attention to the issue of human rights education in the current work on the third action plan on human rights by, inter alia, compiling a report on the situation regarding human rights education in Sweden", - "values": [ - "Human rights education and training" - ] - }, - { - "text": "Continue to prioritize the issue of land evictions and to work with the Special Rapporteur to ensure an end to forced evictions and fulfil its obligations to respect and protect the human rights of all Cambodians, including individuals belonging to indigenous groups ", - "values": [ - "Indigenous peoples", - "Right to land", - "Special procedures" - ] - }, - { - "text": "Ensure proper implementation of the legislation on the promotion and protection of the rights, including linguistic rights, of individuals belonging to national minorities", - "values": [ - "Minorities" - ] - }, - { - "text": "Abolish the law that legalizes the Sunna", - "values": [ - "Rights of the Child", - "Torture and other CID treatment", - "Women's rights" - ] - }, - { - "text": "Promptly adopt the bill on a new citizen's code.", - "values": [ - "CP rights - general" - ] - }, - { - "text": "Ensure that all crimes and violations against human rights defenders and journalists are effectively investigated and prosecuted, and that those responsible are brought to justice.", - "values": [ - "Freedom of the press", - "Human rights defenders" - ] - }, - { - "text": "Introduce an alternative civil legal framework for marriage and divorce as an equally accessible option for everyone", - "values": [ - "CP rights - general" - ] - }, - { - "text": "Establish a de jure moratorium with a view to the definitive abolition of the death penalty", - "values": [ - "Death penalty" - ] - }, - { - "text": "Continue efforts to ratify the main international human rights treaties, and follow a realistic approach in this regard ", - "values": [ - "International instruments" - ] - }, - { - "text": "Delay the entry into force of the revised Penal Code and conduct a comprehensive review to ensure its compliance with international human rights standards ", - "values": [ - "International instruments", - "Justice" - ] - }, - { - "text": "Ratify, before the next universal periodic review cycle, the Optional Protocol to the Convention against Torture and Other Cruel, Inhuman or degrading Treatment or Punishment, and establish a national preventive mechanism accordingly", - "values": [ - "Detention", - "International instruments", - "Torture and other CID treatment", - "Treaty bodies", - "UPR process" - ] - }, - { - "text": "Continue the enhancement of efforts to conduct interfaith dialogue and the promotion of religious tolerance in partnership with civil society organizations", - "values": [ - "Freedom of religion and belief" - ] - }, - { - "text": "Ratify the Optional Protocol to the Convention on the Elimination of All Forms of Discrimination against Women, adopt national legislation prohibiting female genital mutilation and implement standards on women's rights in order to ensure that they can enjoy autonomy", - "values": [ - "International instruments", - "Rights of the Child", - "Torture and other CID treatment", - "Women's rights" - ] - }, - { - "text": "Establish a National Preventive Mechanism in line with the Optional Protocol to the Convention against Torture requirements", - "values": [ - "Detention", - "International instruments", - "Torture and other CID treatment" - ] - }, - { - "text": "Revise the composition of ELECAM to make it more balanced, diverse and representative and totally independent in order to contribute to transparent, fair and credible elections", - "values": [ - "Elections" - ] - }, - { - "text": "Ratify the OP-CRC-SC and take necessary measures aiming at the accreditation of the Public Defender of Rights of Citizens by the International Coordinating Committee of National Institutions", - "values": [ - "International instruments", - "National Human Rights Institution", - "Rights of the Child", - "Trafficking" - ] - }, - { - "text": "Take measures to guarantee full access to education and to health to all vulnerable groups, including illegal migrants ", - "values": [ - "Migrants", - "Right to education", - "Right to health" - ] - }, - { - "text": "Take steps to ratify the core human rights conventions, in particular the International Covenant on Economic, Social and Cultural Rights ", - "values": [ - "ESC rights - general", - "International instruments" - ] - }, - { - "text": "Amend the strict eligibility requirements of the Free Legal Aid Act so that all who need it can make use of its provisions", - "values": [ - "Justice" - ] - }, - { - "text": "Ensure that all human rights defenders are able to conduct their work in line with the provisions of the United Nations Declaration on Human Rights Defenders (A/RES/53/144)", - "values": [ - "Human rights defenders" - ] - }, - { - "text": "Strengthen the implementation of the national programme to combat HIV and sexually transmitted diseases and ensure that discrimination against persons with HIV be prohibited", - "values": [ - "HIV - Aids" - ] - }, - { - "text": "Effectively monitor the implementation of the Combating of Trafficking in Persons Bill upon its adoption.", - "values": [ - "Trafficking" - ] - }, - { - "text": "Enforce the prohibition of all corporal punishment of children in all settings, including in the domestic sphere and in care settings", - "values": [ - "Rights of the Child", - "Torture and other CID treatment" - ] - }, - { - "text": "Continue its efforts to promote economic, social and cultural rights and initiate national policies to guarantee the rights of its people and create a conducive environment for socio-economic development ", - "values": [ - "ESC rights - general" - ] - }, - { - "text": "Amend the Nationality Law of 1982 to include all religious and racial minorities, including Rohingyas, and to guarantee their full and equal citizenship, and return the previous nationality documents to them", - "values": [ - "Freedom of religion and belief", - "Minorities", - "Racial discrimination", - "Statelessness and the right to nationality" - ] - }, - { - "text": "Canada is committed to eliminating racism and addressing discrimination facing Canada's diverse racial, ethnic, cultural and religious communities.", - "values": [ - "Freedom of religion and belief", - "Minorities", - "Racial discrimination" - ] - }, - { - "text": "Incorporate economic, social and cultural rights in the Bill of Rights of 1990, while taking measures to ensure that the competent authorities review the bills, regulations and policies so that these are compatible with the provisions of ICESCR ", - "values": [ - "ESC rights - general", - "International instruments" - ] - }, - { - "text": "Ratify both optional protocols to the Convention on the Rights of the Child", - "values": [ - "International instruments", - "Rights of the Child" - ] - }, - { - "text": "Give to the Office of the Ombudsperson for Children the necessary resources to carry out its tasks so as to ensure its effective realization of the rights of children", - "values": [ - "National Human Rights Institution", - "Rights of the Child" - ] - }, - { - "text": "Put an end to censorship of the media, and to take measures to guarantee the integrity of human rights defenders and of persons who criticize the Government's actions", - "values": [ - "Freedom of the press", - "Human rights defenders" - ] - }, - { - "text": "Eliminate practices of forced placement in clinics for treatment to allegedly \u201ccure\u201c the sexual orientation or gender identity of lesbian, gay, bisexual, transgender and intersex persons, and ensure due accountability for the persons responsible, as well as full reparation for victims", - "values": [ - "Sexual Orientation and Gender Identity" - ] - }, - { - "text": "Strengthen the introduction of various mechanisms for promoting employment among young people through entrepreneurship in different areas", - "values": [ - "Labour" - ] - }, - { - "text": "Intensify implementation of special targeted programmes to stimulate economic growth and development in generating employment especially for the most vulnerable sections of society", - "values": [ - "Development" - ] - }, - { - "text": "Strengthen the independence of the ombuds institution, including through the revision of the relevant ombudsman-related legislation", - "values": [ - "National Human Rights Institution" - ] - }, - { - "text": "Continue efforts to lower rates of violence against women", - "values": [ - "Women's rights" - ] - }, - { - "text": "Continue to take measures allowing persons with disabilities to be fully integrated into economic, political, social and cultural life", - "values": [ - "Disabilities", - "ESC rights - general" - ] - }, - { - "text": "Strengthen its judicial framework by acceding to the International Covenant on Economic, Social and Cultural Rights, to the two Optional Protocols to the International Covenant on the Political and Civilian Rights, to the Convention on Torture and Other Cruel, Inhuman or Degrading Treatments or Punishments and to the International Convention for the Protection of All Persons from Enforced Disappearances ", - "values": [ - "CP rights - general", - "Death penalty", - "ESC rights - general", - "Enforced disappearances", - "International instruments", - "Torture and other CID treatment" - ] - }, - { - "text": "Sign and ratify the Optional Protocol to the International Covenant on Economic, Social and Cultural Rights, as previously recommended", - "values": [ - "ESC rights - general", - "International instruments", - "UPR process" - ] - }, - { - "text": "Amend the Penal Code to decriminalize homosexual activity ", - "values": [ - "Sexual Orientation and Gender Identity" - ] - }, - { - "text": "Apply criminal provisions on hate speech and hate crimes strictly, and conduct public awareness-raising campaigns to promote tolerance", - "values": [ - "Human rights education and training", - "Racial discrimination" - ] - }, - { - "text": "Fully investigate the alleged cases of torture, ill-treatment and excessive use of force committed by police and security forces and bring the perpetrators to justice.", - "values": [ - "Human rights violations by state agents", - "Torture and other CID treatment" - ] - }, - { - "text": "Ensure that in its family law both spouses have the same rights and responsibilities.", - "values": [ - "Women's rights" - ] - }, - { - "text": "Favourably consider the requests for country visits of the Special Rapporteur on the sale of children, child prostitution and child pornography and the Special Rapporteur on the right to education", - "values": [ - "Right to education", - "Rights of the Child", - "Special procedures", - "Trafficking" - ] - }, - { - "text": "Responding to the advance questions regarding anti-Semitism and Islamophobia, the delegation noted that the Government was strongly committed to countering all forms of religious discrimination and social prejudices.", - "values": [ - "Freedom of religion and belief", - "Racial discrimination" - ] - }, - { - "text": "(1) To improve guarantees of the exercise of their rights. (2) To remain in communication with them. (3) To act on its commitments in the case of the tripartite agreement with ILO (4) To encourage investigations of crimes against these groups. (5) To foster a culture in which it is easier for human rights defenders, reporters and trade unionists to operate.", - "values": [ - "Freedom of the press", - "Human rights defenders", - "International instruments", - "Labour" - ] - }, - { - "text": "Continue the cooperation with OHCHR to receive technical assistance in the strengthening and guarantee of the independence of the judiciary, ensuring access to justice for all citizens", - "values": [ - "Justice", - "Technical assistance and cooperation" - ] - }, - { - "text": "Ratify the Optional Protocol to the Convention on the Rights of the Child on a communications procedure, the Optional Protocol to the International Covenant on Civil and Political Rights, and the Optional Protocol to the International Covenant on Economic, Social and Cultural Rights", - "values": [ - "ESC rights - general", - "International instruments", - "Rights of the Child" - ] - }, - { - "text": "Facilitate the process to amend or rescind the Public Order and Security Act, in so that regulations on this matter are compatible with the international human rights instruments, and to safeguard the freedom of expression, association and peaceful assembly ", - "values": [ - "Freedom of association and peaceful assembly", - "Freedom of opinion and expression", - "International instruments" - ] - }, - { - "text": "Take necessary measures to eradicate the tendency and/or dissemination, through mass media, of stereotypes that could lead to the discrimination of migrants and refugees ", - "values": [ - "Asylum-seekers - refugees", - "Migrants" - ] - }, - { - "text": "Cease anti-immigration campaigns and rhetoric of incitement to hatred, xenophobia and anti-Semitism and take measures to fight against hate speech and hate crimes in general", - "values": [ - "Freedom of religion and belief", - "Migrants", - "Racial discrimination" - ] - }, - { - "text": "Continue to maintain its policy of broadening and strengthening international cooperation in the promotion and protection of human rights in the interest of humankind ", - "values": [ - "General" - ] - }, - { - "text": "Continue to develop and enhance programmes to provide education and support to children who have been recovered from militants or extremists, and to help them reintegrate into society", - "values": [ - "Right to education", - "Rights of the Child" - ] - }, - { - "text": "Continue to take the necessary measures for effectively fighting human trafficking and child labour ", - "values": [ - "Labour", - "Rights of the Child", - "Trafficking" - ] - }, - { - "text": "Seek the support of development partners to extend technical assistance and capacity-building to address challenges identified in its national report so as to reinforce its efforts in the protection and promotion of the human rights of its people ", - "values": [ - "Technical assistance and cooperation" - ] - }, - { - "text": "Provide to the Ombudsman the material support necessary to ensure its effectiveness and independence", - "values": [ - "National Human Rights Institution" - ] - }, - { - "text": "Take further steps to ensure its people, especially children, will continue to enjoy access to affordable education ", - "values": [ - "Right to education", - "Rights of the Child" - ] - }, - { - "text": "Morocco informed the Working Group of its plan to submit a progressive report in two years in which it will mention the level of progress in the implementation of recommendations it accepted.", - "values": [ - "UPR process" - ] - }, - { - "text": "Prohibit corporal punishment of children in all settings, including at home", - "values": [ - "Rights of the Child", - "Torture and other CID treatment" - ] - }, - { - "text": "Invite the Special Rapporteur on violence against women to visit the country ", - "values": [ - "Special procedures", - "Women's rights" - ] - }, - { - "text": "Pursue the effective implementation of measures aimed at combating discrimination and violence against women", - "values": [ - "Women's rights" - ] - }, - { - "text": "Establish freedom of information laws, including by amending the Official Information Act of 1976, and increase access to Internet ", - "values": [ - "Freedom of opinion and expression" - ] - }, - { - "text": "Strengthen measures to ensure that women's access to education is enhanced", - "values": [ - "Right to education", - "Women's rights" - ] - }, - { - "text": "Ensure more equal distribution of wealth derived from natural resources", - "values": [ - "Development" - ] - }, - { - "text": "Further strengthen the efforts to combat acts of torture and cruel, inhuman or degrading treatment, including to consider the ratification of the Convention against Torture", - "values": [ - "International instruments", - "Torture and other CID treatment" - ] - }, - { - "text": "Promptly implement all recommendations put forward by the National Human Rights Commission regarding prosecutions and/or departmental actions against alleged human rights violators", - "values": [ - "National Human Rights Institution" - ] - }, - { - "text": "Recommended that the authorities take all necessary measures to protect journalists who have been victims of intimidation, and identify and bring the perpetrators before the courts.", - "values": [ - "Freedom of the press" - ] - }, - { - "text": "Adopt a comprehensive, human rights based gender equality strategy", - "values": [ - "Women's rights" - ] - }, - { - "text": "Increase State-funded security for minority religious community institutions as well as community members, and counter xenophobic and racist discourse against members of minority groups", - "values": [ - "Freedom of religion and belief", - "Minorities", - "Racial discrimination" - ] - }, - { - "text": "Develop more plans to support women prisoners ", - "values": [ - "Detention", - "Women's rights" - ] - }, - { - "text": "Develop further the National Policy of Primary Attention and the National Education Plan 2014-2024", - "values": [ - "Right to education" - ] - }, - { - "text": "Make greater efforts to guarantee the access of migrants to basic services, regardless of their migratory status ", - "values": [ - "Migrants" - ] - }, - { - "text": "Issue a law on freedom of the press", - "values": [ - "Freedom of the press" - ] - }, - { - "text": "Ratify the International Covenant on Economic, Social and Cultural Rights. ", - "values": [ - "ESC rights - general", - "International instruments" - ] - }, - { - "text": "Take measures to protect children who are victims of trafficking or of violence", - "values": [ - "Rights of the Child", - "Trafficking" - ] - }, - { - "text": "Harmonize the Media Decree with international standards and enact a law on freedom of information in conformity with international standards, as recommended by UNESCO", - "values": [ - "Freedom of opinion and expression", - "Freedom of the press" - ] - }, - { - "text": "Abolish the death penalty, corporal punishment and other cruel, inhuman or degrading treatment from its national legislation ", - "values": [ - "Death penalty", - "Torture and other CID treatment" - ] - }, - { - "text": "Adopt a law on prohibition of racism and racial discrimination as well as a relevant/appropriate national action plan in this field ", - "values": [ - "Racial discrimination" - ] - }, - { - "text": "Make all possible efforts to eradicate all forms of violence, all form of abuse against children and eliminate completely police brutality", - "values": [ - "Human rights violations by state agents", - "Rights of the Child" - ] - }, - { - "text": "Adopt further measures to reduce prison overcrowding, inter alia through reducing the rate of pretrial detention", - "values": [ - "Detention" - ] - }, - { - "text": "Investigate thoroughly all acts of vandalism against graves and monuments of Soviet soldiers who perished in the fight against Nazi Germany and bring the perpetrators to justice", - "values": [ - "Other" - ] - }, - { - "text": "Adopt measures to protect and preserve the cultural heritage and traditional way of life of indigenous peoples and undertake effective consultations with indigenous peoples based on free, prior and informed consent ", - "values": [ - "Indigenous peoples" - ] - }, - { - "text": "Submit its overdue reports to treaty bodies", - "values": [ - "Treaty bodies" - ] - }, - { - "text": "Redouble efforts to reduce the use of excessive force by the police through a comprehensive effort to educate policemen on proper procedures and prosecute those law enforcement officials who persist", - "values": [ - "Human rights education and training", - "Human rights violations by state agents" - ] - }, - { - "text": "Step up its efforts to investigate and prosecute old cases of violence against journalists in order to establish a better environment for press freedom at a national level", - "values": [ - "Freedom of the press" - ] - }, - { - "text": "Ensure effective monitoring of detention and custody procedures by the law enforcement forces", - "values": [ - "Detention" - ] - }, - { - "text": "Continue to expand its legal framework for the promotion and protection of human rights ", - "values": [ - "General" - ] - }, - { - "text": "Continue to devote great attention to the effective implementation of the existing legislative framework on the use of the minority languages", - "values": [ - "Minorities" - ] - }, - { - "text": "Continue current efforts to improve the literacy rate, particularly among women, and provide girls and boys with equal access to education", - "values": [ - "Right to education", - "Rights of the Child", - "Women's rights" - ] - }, - { - "text": "Consider revising relevant acts restricting the freedom of expression and media in order to ensure that they conform with international human rights standards ", - "values": [ - "Freedom of opinion and expression", - "Freedom of the press", - "International instruments" - ] - }, - { - "text": "Accede to further international human rights treaties ", - "values": [ - "International instruments" - ] - }, - { - "text": "Immediately close concentration camps for political prisoners (kwanli-so) and release all political prisoners", - "values": [ - "Detention", - "Freedom of opinion and expression" - ] - }, - { - "text": "Continue efforts aimed at putting an end to impunity, and guarantee an effective and impartial application of the legislation and court rulings, through the formal judicial system", - "values": [ - "Impunity", - "Justice" - ] - }, - { - "text": "Criminalize the recruitment of children and investigate all the reports of recruitment of children by the security forces, ensuring that perpetrators are brought to justice and duly prosecuted", - "values": [ - "Human rights violations by state agents", - "International humanitarian law", - "Rights of the Child" - ] - }, - { - "text": "Continue making progress in the efforts needed and consider ratifying ILO Convention No. 169 ", - "values": [ - "Indigenous peoples", - "International instruments" - ] - }, - { - "text": "Take all necessary measures to effectively implement the legislation on domestic violence and protection from such violence", - "values": [ - "Women's rights" - ] - }, - { - "text": "Consider raising to 18 years the minimum age for the voluntary recruitment to the armed forces, and explicitly define as a crime the violation of the provisions of the Optional Protocol to the Convention on the Rights of the Child on the involvement of children in armed conflict", - "values": [ - "International humanitarian law", - "International instruments", - "Rights of the Child" - ] - }, - { - "text": "Enhance efforts to further strengthen democratic institutions in the country ", - "values": [ - "General" - ] - }, - { - "text": "Accede and adapt its national legislation to the Arms Trade Treaty and sign the Treaty on the Prohibition of Nuclear Weapons", - "values": [ - "International instruments", - "Public security" - ] - }, - { - "text": "Improve access to safe drinking water and adequate sanitation facilities", - "values": [ - "Right to water and sanitation" - ] - }, - { - "text": "Conduct a thorough investigation of the root causes of gender-based violence and base future policy interventions on its results", - "values": [ - "Women's rights" - ] - }, - { - "text": "Redouble efforts to prevent and eradicate all manifestations of racism and xenophobia and improve the policing action in its response to violence against refugees, asylum seekers and migrants, among others", - "values": [ - "Asylum-seekers - refugees", - "Migrants", - "Racial discrimination" - ] - }, - { - "text": "Consider subsequent measures towards the complete abolition of the death penalty", - "values": [ - "Death penalty" - ] - }, - { - "text": "Close Jaslyk Prison, or relocate it in order to improve the conditions of detention and its accessibility ", - "values": [ - "Detention" - ] - }, - { - "text": "Continue to guarantee young people the access to legal assistance in conformity with the law", - "values": [ - "Justice" - ] - }, - { - "text": "Establish a national mechanism to visit places of detention in line with the Optional Protocol to the Convention against Torture ", - "values": [ - "Detention", - "International instruments", - "Torture and other CID treatment" - ] - }, - { - "text": "Continue strengthening efforts to combat racism, xenophobia and religious intolerance in law and practice", - "values": [ - "Freedom of religion and belief", - "Racial discrimination" - ] - }, - { - "text": "Consider the possibility to withdraw the reservation to article 9 of the Convention on the Elimination of All Forms of Discrimination against Women with the aim of providing Jordanian women with the right to pass on the nationality to their children", - "values": [ - "International instruments", - "Women's rights" - ] - }, - { - "text": "Accede to the Convention against Torture and Other Cruel, Inhuman or degrading Treatment of Punishment, and incorporate its provisions into domestic law ", - "values": [ - "International instruments", - "Torture and other CID treatment" - ] - }, - { - "text": "Continue its efforts to ensure that all children have access to education at all levels and all categories", - "values": [ - "Right to education", - "Rights of the Child" - ] - }, - { - "text": "Continue to consolidate the rights of indigenous peoples both in practice and within its legal framework, thereby guaranteeing their participation and consultation", - "values": [ - "Indigenous peoples" - ] - }, - { - "text": "Design and implement educational programmes for the gradual inclusion of students with disabilities in the education system ", - "values": [ - "Disabilities", - "Right to education" - ] - }, - { - "text": "Ensure realization of the right of detainees to the legal assistance immediately after being taken into detention without exception ", - "values": [ - "Detention" - ] - }, - { - "text": "Proceed promptly with the ratification of Additional Protocol I and II to the Geneva Conventions of 1949 ", - "values": [ - "International humanitarian law", - "International instruments" - ] - }, - { - "text": "Promulgate and strengthen national legislation to comply with obligations under the Rome Statute and adhere to the Convention on the Non-Applicability of Statutory Limitations to War Crimes and Crimes against Humanity", - "values": [ - "International instruments", - "Justice" - ] - }, - { - "text": "Repeal legislation criminalizing male homosexuality, and introduce targeted policies to eradicate discrimination based on sexual orientation and gender identity", - "values": [ - "Sexual Orientation and Gender Identity" - ] - }, - { - "text": "Continue and strengthen with international cooperation its efforts in environmental conservation and protection, which contribute significantly to global efforts to safeguard the common heritage of mankind ", - "values": [ - "Environment" - ] - }, - { - "text": "Step up efforts to more efficiently implement the prohibition of female genital mutilation in all areas of the country and among all groups of citizens", - "values": [ - "Rights of the Child", - "Torture and other CID treatment", - "Women's rights" - ] - }, - { - "text": "Strengthen the role of the police and develop its capacities in order for it to be able to carry out its role in dealing with the citizens in conformity with the law", - "values": [ - "Justice" - ] - }, - { - "text": "Continue to take steps to tackle gender-based violence", - "values": [ - "Women's rights" - ] - }, - { - "text": "Continue to support the family which is one of the main actors in achieving sustainable development goals in any state", - "values": [ - "Development" - ] - }, - { - "text": "Consider becoming a party to the Convention on the Rights of Persons with Disabilities CRPD ", - "values": [ - "Disabilities", - "International instruments" - ] - }, - { - "text": "Maintain the efforts under way to increase the access of the entire population to health care services, both in rural and urban areas.", - "values": [ - "Right to health" - ] - }, - { - "text": "Study and develop a more effective and convenient public service system, especially in social insurance, education and training, health care and legal assistance ", - "values": [ - "ESC rights - general", - "Justice", - "Right to education", - "Right to health" - ] - }, - { - "text": "Provide adequate support to children in the care of their extended families ", - "values": [ - "Rights of the Child" - ] - }, - { - "text": "Ratify the International Convention for the Protection of All Persons from Enforced Disappearance at an early date", - "values": [ - "Enforced disappearances", - "International instruments" - ] - }, - { - "text": "Intensify efforts to implement the recommendations of the Committee on the Rights of the Child on the persistence in rural areas of traditional practices harmful to children ", - "values": [ - "Rights of the Child", - "Torture and other CID treatment" - ] - }, - { - "text": "Establish the official moratorium on the use of the death penalty", - "values": [ - "Death penalty" - ] - }, - { - "text": "Continue implementing programmes and measures to ensure the enjoyment of quality health and education services for all its population ", - "values": [ - "Right to education", - "Right to health" - ] - }, - { - "text": "Remove extenuating circumstances for "honour" killings", - "values": [ - "Rights of the Child", - "Women's rights" - ] - }, - { - "text": "Ensure full compliance with international child labour standards, including ILO Convention No. 182 on the worst forms of child labour, collaborate with the ILO to that effect and carefully consider the relevant recommendations of the Committee on the Rights of the Child and the Human Rights Committee ", - "values": [ - "International instruments", - "Labour", - "Rights of the Child", - "Treaty bodies" - ] - }, - { - "text": "Continue the development of initiatives designed to assist people affected by poverty ", - "values": [ - "Poverty" - ] - }, - { - "text": "Continue strengthening the measures it is taking to promote gender equality and the empowerment of women ", - "values": [ - "Women's rights" - ] - }, - { - "text": "Continue its efforts to promote multicultural and racial tolerance through initiatives such as the Australian Multicultural Advisory Council and the Diversity and Social Cohesion Programme ", - "values": [ - "General" - ] - }, - { - "text": "Continue to implement adequate measures to fight trafficking in women and girls for the purpose of sexual exploitation, as well as adequate measures to fight violence against women, including providing assistance and redress for victims of both crimes ", - "values": [ - "Rights of the Child", - "Trafficking", - "Women's rights" - ] - }, - { - "text": "Take steps to end impunity, and to bring to justice those responsible for human rights abuses or violations", - "values": [ - "Impunity" - ] - }, - { - "text": "Adopt fully the rights-based approach in the development of future legislation ", - "values": [ - "General" - ] - }, - { - "text": "Expedite the endorsement of long-awaited child policy legislation, including the Child Rights Act, Education Regulation, Child Protection Policy, and minimum standards for child-care homes, and take the necessary steps to ensure their full implementation ", - "values": [ - "Rights of the Child" - ] - }, - { - "text": "Engage the Sami people in the ratification process of the ILO Indigenous and Tribal Peoples Convention, 1989 (No. 169)", - "values": [ - "Indigenous peoples", - "International instruments" - ] - }, - { - "text": "Continue to invest resources and prioritize efforts to provide relevant education and training to enhance the employability of its citizens, particularly the youth and unemployed", - "values": [ - "Labour", - "Right to education" - ] - }, - { - "text": "Carefully consider the proposed law on restrictions of the activities of non-governmental organizations to ensure that it does not impede the valuable work they are doing, together with Kyrgyz authorities, to combat human rights abuses and uphold individual freedoms in the country", - "values": [ - "Civil society", - "Freedom of association and peaceful assembly" - ] - }, - { - "text": "Make the necessary adjustments to ratify the Optional Protocol to the Convention against Torture", - "values": [ - "Detention", - "International instruments", - "Torture and other CID treatment" - ] - }, - { - "text": "Ensure full participation of all stakeholders in the UPR follow-up and provide a mid-term update to the Human Rights Council on the implementation of the recommendations adopted during the review", - "values": [ - "Civil society", - "UPR process" - ] - }, - { - "text": "Ratify the Disabilities Convention", - "values": [ - "Disabilities", - "International instruments" - ] - }, - { - "text": "Strengthen the role of the NHRC as an independent institution and follow-up on its recommendations ", - "values": [ - "National Human Rights Institution" - ] - }, - { - "text": "Investigate all cases of human rights violations and prosecute those responsible without exception and impunity", - "values": [ - "Impunity" - ] - }, - { - "text": "Recognize publicly the work of human rights defenders and continue its efforts to guarantee basic civil and political rights", - "values": [ - "Human rights defenders" - ] - }, - { - "text": "Amend existing rules for the security forces, including the Public Order and Security Act, to ensure that the rights to peaceful assembly, freedom of association and freedom of press can be exercised", - "values": [ - "Freedom of association and peaceful assembly", - "Freedom of the press" - ] - }, - { - "text": "Take effective measures and step up its efforts to combat xenophobia and racism so as to promote harmonious co-existence among ethnic and religious communities", - "values": [ - "Freedom of religion and belief", - "Minorities", - "Racial discrimination" - ] - }, - { - "text": "Accede to the core human rights instruments to which it is not yet a party, particularly CRC and CEDAW ", - "values": [ - "International instruments", - "Rights of the Child", - "Women's rights" - ] - }, - { - "text": "Continue strengthening the positive efforts already under way to promote gender equality", - "values": [ - "Women's rights" - ] - }, - { - "text": "Develop a comprehensive national action plan for the promotion of gender equality, with a view to addressing key challenges facing women ", - "values": [ - "Women's rights" - ] - }, - { - "text": "Make every possible effort to ensure access to food for the entire population", - "values": [ - "Right to food" - ] - }, - { - "text": "Increase efforts to avoid school drop out by pregnant adolescents, through the creation of programmes that would allow for their return to school in optimal conditions for their development and that of their children", - "values": [ - "Right to education", - "Rights of the Child", - "Women's rights" - ] - }, - { - "text": "Revise the bill on freedom of association, freedom of expression and freedom of assembly, submitted in 2012, which is currently pending review by the Supreme Court, with a view to adopting legislation that will protect the rights of civil society", - "values": [ - "Civil society", - "Freedom of association and peaceful assembly", - "Freedom of opinion and expression" - ] - }, - { - "text": "Establish stronger measures to increase access to education particularly to those living in rural areas", - "values": [ - "Right to education" - ] - }, - { - "text": "Develop a National Human Rights Strategy and Action Plan, while also intensifying its public awareness campaign to the general public and other interested stakeholders", - "values": [ - "Human rights education and training" - ] - }, - { - "text": "Reinforce training of police and justice officials on the issue of violence against women in order to improve the response by the Mexican authorities", - "values": [ - "Women's rights" - ] - }, - { - "text": "Increase its efforts in addressing the HIV epidemic", - "values": [ - "HIV - Aids" - ] - }, - { - "text": "Continue to promote the access of vulnerable groups to education", - "values": [ - "Right to education" - ] - }, - { - "text": "Continue to promote poverty alleviation and enhance poverty reduction of women and children and people with disabilities", - "values": [ - "Disabilities", - "Rights of the Child", - "Women's rights" - ] - }, - { - "text": "Actively consider establishing a full-fledged national human rights institution in line with the Paris Principles", - "values": [ - "National Human Rights Institution" - ] - }, - { - "text": "Continue its legal actions on the protection of women and children", - "values": [ - "Rights of the Child", - "Women's rights" - ] - }, - { - "text": "End arbitrary arrests and detentions and ensure that suspects have access to justice and a fair trial", - "values": [ - "Detention", - "Justice" - ] - }, - { - "text": "Develop a comprehensive strategy to address internal displacement, allow internally displaced persons to return to their homes and, in the interim, provide them with protection and assistance", - "values": [ - "Internally displaced persons" - ] - }, - { - "text": "Continue taking steps in order to fully protect and promote the rights of women and children, especially by protecting them from violence ", - "values": [ - "Rights of the Child", - "Women's rights" - ] - }, - { - "text": "Establish a solid legislative mechanism to punish all forms of torture and violence committed by the police during investigations in order to get confessions", - "values": [ - "Human rights violations by state agents", - "Torture and other CID treatment" - ] - }, - { - "text": "Continue disclosing human rights violations by the Israeli regime in the Occupied Syrian Golan and other Arab territories", - "values": [ - "Other" - ] - }, - { - "text": "Continue efforts to implement the provisions of the new Constitution in order to ensure that indigenous peoples fully enjoy their rights", - "values": [ - "Indigenous peoples" - ] - }, - { - "text": "Fully align the national legislation with all obligations under the Rome Statute of the International Criminal Court ", - "values": [ - "International instruments", - "Justice" - ] - }, - { - "text": "Further strengthen its measures to protect children and youths from all forms of violence", - "values": [ - "Rights of the Child" - ] - }, - { - "text": "Take concrete measures to implement ICESCR and carry out a constructive dialogue with the CESCR.", - "values": [ - "ESC rights - general", - "International instruments", - "Treaty bodies" - ] - }, - { - "text": "Ensure that its legislation and practice conform fully with requirements of article 18 of ICCPR and with its other obligations under international human rights law", - "values": [ - "Freedom of religion and belief", - "International instruments" - ] - }, - { - "text": "Legislation be introduced to ensure that the age of marriage is the same for males as for females ", - "values": [ - "Rights of the Child", - "Women's rights" - ] - }, - { - "text": "Strengthen the functioning of the independent judiciary to enhance transparency and efficiency in judicial proceedings", - "values": [ - "Justice" - ] - }, - { - "text": "Improve the treatment of migrants, asylum seekers, Roma population and other marginalized group by law enforcement officials", - "values": [ - "Asylum-seekers - refugees", - "Migrants", - "Minorities" - ] - }, - { - "text": "Build on the momentum achieved this far in the construction of social housing, with a view to reversing the housing deficit", - "values": [ - "Right to housing" - ] - }, - { - "text": "Continue cooperation with regional and international human rights mechanisms, in particular in the areas of technical cooperation and training", - "values": [ - "Technical assistance and cooperation" - ] - }, - { - "text": "Establish a moratorium on executions with a view to the total abolition of capital punishment ", - "values": [ - "Death penalty" - ] - }, - { - "text": "Redouble its efforts in addressing the issue of extreme poverty and develop more sustainable poverty reduction strategies which include access to clean water, adequate sanitation, food and shelter", - "values": [ - "Poverty", - "Right to food", - "Right to housing", - "Right to water and sanitation" - ] - }, - { - "text": "Fully fund implementation of the new national plan to combat HIV-related stigmatization and discrimination", - "values": [ - "HIV - Aids" - ] - }, - { - "text": "Address barriers to the education of women and girls and reduce their dropout rates, especially among girls from ethnic minorities ", - "values": [ - "Minorities", - "Right to education", - "Rights of the Child", - "Women's rights" - ] - }, - { - "text": "Step up the fight against all harmful traditional practices, inter alia by effectively enforcing the Prohibition of Female Genital Mutilation Act in all parts of the country and by increasing the human and financial resources of the Anti-Human Sacrifice and Trafficking Task Force", - "values": [ - "Rights of the Child", - "Torture and other CID treatment", - "Trafficking", - "Women's rights" - ] - }, - { - "text": "Take all necessary steps to ensure the full enjoyment of the right of all persons to take part in the Government of his or her country ", - "values": [ - "Other" - ] - }, - { - "text": "Continue its efforts in education, knowledge and public health, and achieve religious tolerance and social cohesion as it represents an important basis to strengthen the principles of human rights", - "values": [ - "Freedom of religion and belief", - "Right to health" - ] - }, - { - "text": "Continue developing training methods and educating police, prison guards and the judiciary in areas of human rights ", - "values": [ - "Human rights education and training" - ] - }, - { - "text": "Germany pledges to guarantee the rights arising from the Covenant to all persons subject to the authority of its police or armed forces abroad", - "values": [ - "CP rights - general" - ] - }, - { - "text": "Promote the reform of its legislation on death penalty in order to restrict its scope with a view to abolishing this cruel punishment", - "values": [ - "Death penalty" - ] - }, - { - "text": "Include penalization of sexual harassment in its national legislation", - "values": [ - "Women's rights" - ] - }, - { - "text": "Sign and ratify the Convention against Torture and Other Cruel, Inhuman or Degrading Treatment or Punishment and the International Convention for the Protection of All Persons from Enforced Disappearance and the Optional Protocols to ICCPR", - "values": [ - "CP rights - general", - "Death penalty", - "Enforced disappearances", - "International instruments", - "Torture and other CID treatment" - ] - }, - { - "text": "Provide members of the Samoa Police Service with training on the human rights of accused and detained persons, and ensure that provisions made for food, water and sanitation at detention facilities meet United Nations Standard Minimum Rules for the Treatment of Prisoners ", - "values": [ - "Detention", - "Human rights education and training", - "Right to food", - "Right to water and sanitation" - ] - }, - { - "text": "Give full effect to the Law on Women's Right to a Life Free from Violence, guaranteeing their effective access to justice", - "values": [ - "Women's rights" - ] - }, - { - "text": "Promote and protect more the rights of people with disabilities, in particular of children", - "values": [ - "Disabilities", - "Rights of the Child" - ] - }, - { - "text": "Continue efforts and take measures to prevent the incidence of teenage pregnancy", - "values": [ - "Rights of the Child", - "Women's rights" - ] - }, - { - "text": "Continue harmonizing its legal framework with respect to women and children with CEDAW and the Convention on the Rights of the Child, respectively", - "values": [ - "International instruments", - "Rights of the Child", - "Women's rights" - ] - }, - { - "text": "Implement a human rights-based, holistic approach to ensure access to adequate housing as well as to adequate water and sanitation, including for marginalized groups, Dalits, scheduled castes, the homeless, the landless, scheduled tribes, religious and ethnic minorities, persons with disabilities and women", - "values": [ - "Disabilities", - "Minorities", - "Right to housing", - "Right to water and sanitation", - "Women's rights" - ] - }, - { - "text": "Launch a national campaign to combat all forms of marginalisation or discrimination based on gender, religion or ethnicity", - "values": [ - "Freedom of religion and belief", - "Minorities", - "Racial discrimination", - "Women's rights" - ] - }, - { - "text": "Review all its national legislation to ensure its compliance with the Constitution and international obligations, including to protect the right to privacy and non-discrimination", - "values": [ - "Privacy" - ] - }, - { - "text": "Ensure that the Plan of Action signed in 2011 by the Government and the United Nations and the road map to put an end to the phenomenon of child soldiers are fully implemented", - "values": [ - "International humanitarian law", - "Rights of the Child" - ] - }, - { - "text": "Continue to support and to promote international solidarity", - "values": [ - "Other" - ] - }, - { - "text": "Speed up measures aimed at ratifying the Optional Protocol to CEDAW", - "values": [ - "International instruments", - "Women's rights" - ] - }, - { - "text": "Consider taking necessary measures aimed at prohibiting all forms of corporal punishment", - "values": [ - "Rights of the Child", - "Torture and other CID treatment" - ] - }, - { - "text": "Establish a National Action Plan for the priorities, initiatives and commitments it has identified in its UPR report with a view to improving the human rights situation in Côte d'Ivoire ", - "values": [ - "UPR process" - ] - }, - { - "text": "Strengthen its legal framework by acceding to the International Convention for the Protection of All Persons from Enforced Disappearance and the Convention on the Rights of Persons with Disabilities, and by ensuring that the national legislation is in accordance with the provisions of the Rome Statute of the International Criminal Court", - "values": [ - "Disabilities", - "Enforced disappearances", - "International instruments", - "Justice" - ] - }, - { - "text": "Continue its efforts in raising awareness about trafficking in persons through comprehensive training programmes for social workers, law enforcement officials and the media ", - "values": [ - "Trafficking" - ] - }, - { - "text": "Consider continuing efforts to secure and retain adequate medical personnel in hardship and marginalized areas", - "values": [ - "Right to health" - ] - }, - { - "text": "Adopt legislation to include payment for environmental services in order to promote sustainable economic and industrial development ", - "values": [ - "Environment" - ] - }, - { - "text": "Continue to further strengthen the criminal justice system, including through capacity-building of judicial actors and law enforcement institutions so that its measures against organized crime be taken with due consideration paid to the rule of law and human rights and with an emphasis on due process", - "values": [ - "Justice" - ] - }, - { - "text": "Consider taking steps towards the abolishment of the death penalty and ratifying the Convention against Torture, as well as to intensify its efforts to implement the recommendations made at the first universal periodic review process, including ratifying the International Convention for the Protection of All Persons from Enforced Disappearance ", - "values": [ - "Death penalty", - "Enforced disappearances", - "International instruments", - "Torture and other CID treatment", - "UPR process" - ] - }, - { - "text": "Sri Lanka will continue to work towards the submission of its periodic reports to treaty bodies.", - "values": [ - "Treaty bodies" - ] - }, - { - "text": "Strengthen the implementation effectiveness of Turkey's 2012 domestic law on preventing violence against women", - "values": [ - "Women's rights" - ] - }, - { - "text": "Ensure the rights of minorities, particularly with regard to their full and complete political representation", - "values": [ - "Minorities" - ] - }, - { - "text": "Ensure indigenous peoples adequate consultation as well as full participation in all legislative or administrative measures affecting them ", - "values": [ - "Indigenous peoples" - ] - }, - { - "text": "Enact further measures in order to address violence in the educational system, particularly by implementing programmes to prohibit and eliminate all forms of corporal punishment", - "values": [ - "Right to education", - "Rights of the Child", - "Torture and other CID treatment" - ] - }, - { - "text": "Comprehensively implement the laws and consider formulating a national action plan to further ensure women's rights, including on combating violence against women ", - "values": [ - "Women's rights" - ] - }, - { - "text": "Improve its investigative capacity to solve the cases of murdered women, journalists and human rights defenders, and bring to justice those responsible", - "values": [ - "Extrajudicial executions", - "Freedom of the press", - "Human rights defenders", - "Women's rights" - ] - }, - { - "text": "Take steps to curb incitement of hatred by some British tabloid newspapers, in line with the country\u2019s obligations under national and international law", - "values": [ - "International instruments", - "Racial discrimination" - ] - }, - { - "text": "Continue making efforts to combat child labour and child marriage", - "values": [ - "Labour", - "Rights of the Child" - ] - }, - { - "text": "Continue the current momentum, national action plans and programmes for effectively addressing challenges and disparities in health care, education, employment, gender equality and social welfare, especially for vulnerable groups of women, children, the elderly and persons with difficulties in the country ", - "values": [ - "General" - ] - }, - { - "text": "Further improve the situation pertaining to minority issues, especially in the social and economic fields for the disadvantaged groups, and promote equal opportunities for them to have access to education and other related sectors at all levels", - "values": [ - "ESC rights - general", - "Minorities", - "Right to education" - ] - }, - { - "text": "Ensure that human rights violations by law enforcement personnel, notably in cases of non-respect of delays of detention in police custody, arbitrary arrests and detention, and forced disappearances and torture, are investigated and the perpetrators brought to justice", - "values": [ - "Detention", - "Enforced disappearances", - "Human rights violations by state agents", - "Torture and other CID treatment" - ] - }, - { - "text": "Continue to implement laws and regulations for the protection and socioeconomic growth of women and the rights of children", - "values": [ - "Rights of the Child", - "Women's rights" - ] - }, - { - "text": "Intensify its efforts to prevent and combat violence against women and girls, in particular sexual abuse, domestic violence and the violent killing of women, as recommended by CAT", - "values": [ - "Rights of the Child", - "Treaty bodies", - "Women's rights" - ] - }, - { - "text": "Introduce measures to address the situation of gender discrimination and violence against women by modifying existing laws and regulations that discriminate against women ", - "values": [ - "Women's rights" - ] - }, - { - "text": "Effectively enforce its legislation and other general and institutional measures to combat racial discrimination and adopt a comprehensive strategy to eliminate discrimination on any grounds whatsoever", - "values": [ - "Racial discrimination" - ] - }, - { - "text": "Pursue the adoption process of the draft bill on the National Human Rights Commission of 2014 with a view to render it fully operational", - "values": [ - "National Human Rights Institution" - ] - }, - { - "text": "Immediately establish a system to prevent sexual violence against female prisoners", - "values": [ - "Detention", - "Women's rights" - ] - }, - { - "text": "Continue efforts to ratify the Optional Protocol to the Convention against Torture and Other Cruel, Inhuman or Degrading Treatment or Punishment", - "values": [ - "Detention", - "International instruments", - "Torture and other CID treatment" - ] - }, - { - "text": "Ensure that freedom of religion and of religious practice continue to be guaranteed to all citizens, as the country's Constitution provides ", - "values": [ - "Freedom of religion and belief" - ] - }, - { - "text": "Continue its efforts to prioritize the restoration of lasting peace in Casamance, including through its Casamance development pole project", - "values": [ - "Other" - ] - }, - { - "text": "Submit overdue reports to the Human Rights Committee and the Committee on the Rights of Persons with Disabilities", - "values": [ - "CP rights - general", - "Disabilities", - "Treaty bodies" - ] - }, - { - "text": "Adopt law and mechanisms to combat discrimination against groups in vulnerable situations", - "values": [ - "Minorities" - ] - }, - { - "text": "In the context of detention, strengthen existing police oversight mechanisms and provide victims of torture and ill-treatment with compensation", - "values": [ - "Detention", - "Torture and other CID treatment" - ] - }, - { - "text": "Strengthen measures to combat discrimination against Roma and to bridge the gap between Roma and the rest of society in the field of education, employment, housing, health care and social protection", - "values": [ - "Labour", - "Minorities", - "Racial discrimination", - "Right to education", - "Right to health", - "Right to housing" - ] - }, - { - "text": "Modernize the national plan for the development of Bahraini women in line with the anti-discrimination programs and to evaluate the effects of those programs and projects on the development of them and the society at large ", - "values": [ - "Women's rights" - ] - }, - { - "text": "Respect freedom of opinion and expression, as well as freedom of association and peaceful demonstration, in particular for rights defenders", - "values": [ - "Freedom of association and peaceful assembly", - "Freedom of opinion and expression", - "Human rights defenders" - ] - }, - { - "text": "Continue to pursue efforts to improve access to education, including for persons with disabilities", - "values": [ - "Disabilities", - "Right to education" - ] - }, - { - "text": "Consider greater provision for the protection of freedom of association, freedom of speech and rights to judicial appeal, including by aligning all articles of the Penal Code and other relevant laws with international standards ", - "values": [ - "Freedom of association and peaceful assembly", - "Freedom of opinion and expression" - ] - }, - { - "text": "Join efforts with international partners in finding innovative solutions for efficient water management to ensure basic subsistence for all", - "values": [ - "Right to water and sanitation" - ] - }, - { - "text": "Ensure that assistance is provided to all victims of human trafficking and that the authorities devise specific programmes aiming at the reintegration of victims of human trafficking into the labour market and education system ", - "values": [ - "Trafficking" - ] - }, - { - "text": "Finalize the law on the protection of the elderly, including women accused of witchcraft and ensure its strict application", - "values": [ - "Women's rights" - ] - }, - { - "text": "Take urgent steps to follow up on the recommendation which was made at the National Dialogue Conference for a universal minimum age of marriage of 18 years and ensure that an appropriate legal framework is put in place to prevent marriage for children under the age of 18 ", - "values": [ - "Rights of the Child" - ] - }, - { - "text": "Raise the minimum age for marriage to comply with international child rights standards, to prevent child, early and forced marriage", - "values": [ - "International instruments", - "Rights of the Child" - ] - }, - { - "text": "Ensure that all children are registered at birth and provide unregistered children with personal documents", - "values": [ - "Rights of the Child" - ] - }, - { - "text": "Grant access to the announced visits of independent experts to places of detention.", - "values": [ - "Detention" - ] - }, - { - "text": "Intensify efforts to guarantee the good functioning of the Commissioner on Gender Equality by providing sufficient resources", - "values": [ - "Women's rights" - ] - }, - { - "text": "Accede to the Convention against Torture and Other Cruel, Inhuman or Degrading Treatment or Punishment", - "values": [ - "International instruments", - "Torture and other CID treatment" - ] - }, - { - "text": "Enact legislation that would prohibit discrimination based on sexual orientation and gender identity", - "values": [ - "Sexual Orientation and Gender Identity" - ] - }, - { - "text": "Continue its efforts to promote and protect the rights of persons with disabilities", - "values": [ - "Disabilities" - ] - }, - { - "text": "Pursue programmes and consolidated approach in the promotion and protection of all human rights including in the field of education, health and the promotion of the status of women. ", - "values": [ - "Human rights education and training", - "Right to health", - "Women's rights" - ] - }, - { - "text": "Adopt the necessary laws to contribute to alleviate the socio-economic conditions of Palestinian refugees", - "values": [ - "Asylum-seekers - refugees", - "ESC rights - general" - ] - }, - { - "text": "Establish a formal moratorium on executions with a view to abolishing the death penalty and support the United Nations General Assembly resolution on the moratorium on the use of death penalty", - "values": [ - "Death penalty" - ] - }, - { - "text": "Bolster its policies to promote women's rights ", - "values": [ - "Women's rights" - ] - }, - { - "text": "Make efforts to provide the resources, funding, personnel and authority necessary to implement the 2007 labour law that permits workers to join and form trade unions.", - "values": [ - "Labour" - ] - }, - { - "text": "Undertake systematic actions for the reintegration of former child soldiers into civil society", - "values": [ - "International humanitarian law", - "Rights of the Child" - ] - }, - { - "text": "Ratify the International Convention on the Protection of All Persons from Enforced Disappearance and recognize the competence of the Committee on Enforced Disappearances", - "values": [ - "Enforced disappearances", - "International instruments", - "Treaty bodies" - ] - }, - { - "text": "Ratify ICRMW and the optional protocols of CAT, the International Covenant on Economic, Social and Cultural Rights (ICESCR) and CEDAW", - "values": [ - "International instruments" - ] - }, - { - "text": "Strengthen cooperation with treaty bodies and submit overdue reports", - "values": [ - "Treaty bodies" - ] - }, - { - "text": "Consider ratifying the Optional Protocol to ICESCR ", - "values": [ - "ESC rights - general", - "International instruments" - ] - }, - { - "text": "Incorporate the Bangkok Rules into public policies to protect female inmates and adopt bill 5654/2016 that prohibits the use of handcuffs before, during and after childbirth on women deprived of liberty", - "values": [ - "Detention", - "Women's rights" - ] - }, - { - "text": "Consider lifting its reservations to CEDAW", - "values": [ - "International instruments", - "Women's rights" - ] - }, - { - "text": "Define and criminalize torture as a matter of priority and amend its legislation accordingly", - "values": [ - "Torture and other CID treatment" - ] - }, - { - "text": "Exert greater efforts to further reduce the child mortality rate ", - "values": [ - "Right to health", - "Rights of the Child" - ] - }, - { - "text": "Lower the criminal responsibility for children, ban the application of the death penalty to children, and prohibit the recruitment of children as child soldiers and their participation in armed conflict ", - "values": [ - "Death penalty", - "International humanitarian law", - "Justice", - "Rights of the Child" - ] - }, - { - "text": "Provide financial resources for the implementation of the Convention on the Rights of Persons with Disabilities", - "values": [ - "Disabilities", - "International instruments" - ] - }, - { - "text": "Respect the right to freedom of expression and peaceful demonstration, and restrict to the absolute minimum the use of criminal prosecutions against people who exercise these rights ", - "values": [ - "Freedom of association and peaceful assembly", - "Freedom of opinion and expression" - ] - }, - { - "text": "Continue its efforts to implement the national Action Plan for Human Rights", - "values": [ - "General" - ] - }, - { - "text": "Continue its efforts to protect religious freedom and the rights of minority groups based on its Constitution and other relevant laws", - "values": [ - "Freedom of religion and belief", - "Minorities" - ] - }, - { - "text": "Ensure strengthening of freedom of expression online and offline, as well as personal data protection", - "values": [ - "Freedom of opinion and expression", - "Privacy" - ] - }, - { - "text": "Ratify and fully align its national legislation with the Rome Statute of the International Criminal Court", - "values": [ - "International instruments", - "Justice" - ] - }, - { - "text": "Continue its efforts on behalf of the defence and sustainability of a pluralistic democracy, good governance, economic and social development and the strengthening of national human rights institutions", - "values": [ - "CP rights - general", - "Development", - "Justice", - "National Human Rights Institution" - ] - }, - { - "text": "Continue efforts to ensure that all children are registered immediately after birth and that birth registration and the issuance of birth certificates are provided free of charge", - "values": [ - "Rights of the Child", - "Statelessness and the right to nationality" - ] - }, - { - "text": "Appoint a new Ombudsman without further delay, after the mandate of the present incumbent expired in 2008, while ensuring that the institution complies fully with the Paris Principles", - "values": [ - "National Human Rights Institution" - ] - }, - { - "text": "Expressly prohibit corporal punishment in the home, school and institutions and promote alternative methods of discipline", - "values": [ - "Rights of the Child", - "Torture and other CID treatment" - ] - }, - { - "text": "Complete the legislative process in order to abolish capital punishment, which as a matter of fact, has been suspended for more than a decade", - "values": [ - "Death penalty" - ] - }, - { - "text": "Seek technical and financial assistance from United Nations partners and specialized agencies to fill in the gaps in its legislation so as to ensure better treatment for children with disabilities and those at a disadvantage ", - "values": [ - "Disabilities", - "Rights of the Child", - "Technical assistance and cooperation" - ] - }, - { - "text": "Redouble efforts to promote universal education and ensure compliance with legislation on compulsory education ", - "values": [ - "Right to education" - ] - }, - { - "text": "Withdraw unconditionally and put an end to the construction of illegal settlements, including the so-called natural growth of existing settlements in the West Bank, especially in and around Jerusalem, and restore other occupied Arab territories", - "values": [ - "Other" - ] - }, - { - "text": "Examine, in the spirit of its engagement in favour of human rights, the possibility of adhering to the International Convention on the Protection of the Rights of All Migrant Workers and Members of Their Families ", - "values": [ - "International instruments", - "Labour", - "Migrants" - ] - }, - { - "text": "Cease attacks against civilians and the United Nations premises and personnel", - "values": [ - "International humanitarian law" - ] - }, - { - "text": "Ratify ILO Convention no. 169 concerning Indigenous and Tribal Peoples in Independent Countries and establish formal protocols to obtain their free, prior and informed consent", - "values": [ - "Indigenous peoples", - "International instruments" - ] - }, - { - "text": "Continue its national policy to promote equal opportunities and treatment of women in respect of employment ", - "values": [ - "Women's rights" - ] - }, - { - "text": "Take the necessary measures to raise the minimum age of criminal responsibility in order to align it with international human rights standards", - "values": [ - "International instruments", - "Justice", - "Rights of the Child" - ] - }, - { - "text": "Promote the training of the personnel of the public sector in the field of human rights", - "values": [ - "Human rights education and training" - ] - }, - { - "text": "Continue its efforts to eradicate the practice of FGM by, for example, looking at the lessons learned by other countries in the region that are dealing with this issue", - "values": [ - "Rights of the Child", - "Torture and other CID treatment", - "Women's rights" - ] - }, - { - "text": "Take more active measures to promote real participation of NGOs and civil society institutions in the adoption of legislation to promote human rights ", - "values": [ - "Civil society" - ] - }, - { - "text": "Decriminalize the access to its territory for persons wishing to file a request for asylum, and process the asylum applications individually and in a non-discriminatory fashion, in compliance with its international obligations", - "values": [ - "Asylum-seekers - refugees", - "Racial discrimination" - ] - }, - { - "text": "Adopt vigorous legal and practical measures to stop and combat all forms of discrimination against persons from immigrant background, especially Muslims ", - "values": [ - "Freedom of religion and belief", - "Migrants", - "Racial discrimination" - ] - }, - { - "text": "Lift restrictions on the registration of associations and freedom of assembly, decriminalize defamation, adopt a framework to protect journalists from intimidation and harassment, and implement the best practices on peaceful assembly put forward by the Special Rapporteur to ensure compliance with the International Covenant on Civil and Political Rights", - "values": [ - "CP rights - general", - "Freedom of opinion and expression", - "Freedom of the press", - "International instruments" - ] - }, - { - "text": "Continue the efforts to develop the National Service for Women and help it to implement the equal opportunities plan that would strengthen the role of women and their empowerment in society ", - "values": [ - "Women's rights" - ] - }, - { - "text": "Multiply efforts to combat child sex tourism, especially by adopting a comprehensive regulatory framework", - "values": [ - "Labour", - "Rights of the Child", - "Trafficking" - ] - }, - { - "text": "Take further enhancing measures for the enjoyment of educational and health services by all", - "values": [ - "Right to education", - "Right to health" - ] - }, - { - "text": "Continue to combat violence against women and promote gender equality, with assistance from the UN Women and other relevant organizations ", - "values": [ - "Technical assistance and cooperation", - "Women's rights" - ] - }, - { - "text": "Redouble its efforts for the ratification of the International Covenant on Civil and Political Rights", - "values": [ - "CP rights - general", - "International instruments" - ] - }, - { - "text": "Continue to advance the draft law on gender equality and justice", - "values": [ - "Justice", - "Women's rights" - ] - }, - { - "text": "Improve conditions of detention, particularly for persons with disabilities", - "values": [ - "Detention", - "Disabilities" - ] - }, - { - "text": "Continue initiatives aimed at protecting the rights of vulnerable groups, bearing in mind their specific needs and capacities, and empowering them in the enjoyment of their rights", - "values": [ - "Other" - ] - }, - { - "text": "Extend a standing invitation to all special procedures mandate holders and respond positively to all outstanding requests of mandate holders to visit the country", - "values": [ - "Special procedures" - ] - }, - { - "text": "Advance its National Human Rights Commission in a manner consistent with the Paris Principles.", - "values": [ - "National Human Rights Institution" - ] - }, - { - "text": "Continue efforts and strengthen the national programme to ensure the right to health and to education ", - "values": [ - "Right to education", - "Right to health" - ] - }, - { - "text": "Strengthen the human rights protection of all inhabitants of the Dominican Republic, including migrants ", - "values": [ - "Migrants" - ] - }, - { - "text": "Ratify the Optional Protocol to the Convention on the Elimination of All Forms of Discrimination against Women and the optional protocol to the Convention on the Rights of the Child relating to individual complaints ", - "values": [ - "International instruments", - "Rights of the Child", - "Women's rights" - ] - }, - { - "text": "Address all outstanding issues in the field of minority rights, including on the official use of minority languages and ensuring quality education in minority languages", - "values": [ - "Minorities", - "Right to education" - ] - }, - { - "text": "Continue implementing programmes and measures aimed at ensuring universal health care and quality education services for all its population", - "values": [ - "Right to education", - "Right to health" - ] - }, - { - "text": "Continue to enhance the training being offered to security personnel, with a special focus on the fundamentals of ethics, the use of force and human rights ", - "values": [ - "Human rights education and training" - ] - }, - { - "text": "Take concrete steps to ensure that access to evidence is guaranteed to anyone under any regime of detention", - "values": [ - "Detention" - ] - }, - { - "text": "Step up efforts for the improvement of the justice as well as the penitentiary system", - "values": [ - "Justice" - ] - }, - { - "text": "Encourage the police to follow up on all allegations of domestic violence ", - "values": [ - "Rights of the Child", - "Women's rights" - ] - }, - { - "text": "Intensify the fight to put an end to ritual crimes, including through long-term awareness-raising campaigns", - "values": [ - "Human rights education and training" - ] - }, - { - "text": "Continue strengthening and implementing the current Plan of Action for Women and the Family Institution ", - "values": [ - "Rights of the Child", - "Women's rights" - ] - }, - { - "text": "Further pursue national strategies and policies aimed at consolidating the human rights infrastructure and achieving more progress in the promotion of a culture of respect for human rights", - "values": [ - "Human rights education and training" - ] - }, - { - "text": "The letter and the spirit of the provisions of the new antiterrorism law do not impose restrictions on the enjoyment of human rights and fundamental freedoms that are contrary to international human rights standards", - "values": [ - "Counter-terrorism", - "International instruments" - ] - }, - { - "text": "Strengthen sexual and reproductive health education, as recommended by the Committee on Economic, Social and Cultural Rights", - "values": [ - "Right to health", - "Treaty bodies" - ] - }, - { - "text": "Adopt measures to ban FGM and enhance the awareness campaign, in accordance with the United Nations General Assembly's recent resolutions ", - "values": [ - "Human rights education and training", - "Rights of the Child", - "Torture and other CID treatment", - "Women's rights" - ] - }, - { - "text": "Modify legislative provisions that may discriminate against women and in particular speed up the process of bringing the Family Code in line with international instruments.", - "values": [ - "Women's rights" - ] - }, - { - "text": "Reinforce the independence and the capacity of the Irish Human Rights Commission to fulfil its mandate effectively in accordance with the Paris Principles", - "values": [ - "National Human Rights Institution" - ] - }, - { - "text": "Ratify the Agreement on Privileges and Immunities of the International Criminal Court and implement it fully at national level", - "values": [ - "International instruments", - "Justice" - ] - }, - { - "text": "Further prevent and combat human trafficking, including by enhancing the mandates of relevant mechanisms so that socially vulnerable individuals enjoy improved legal protection", - "values": [ - "Trafficking" - ] - }, - { - "text": "Adopt specific legislative measures to criminalize corporal punishment not only abuse in all settings, together with major awareness-raising campaigns to promote an overall culture of non-violence through education, dialogue and cooperation", - "values": [ - "Human rights education and training", - "Torture and other CID treatment" - ] - }, - { - "text": "Reform the legal framework on freedom of assembly and association to guarantee the full exercise of this right both for individuals and legal entities", - "values": [ - "Freedom of association and peaceful assembly" - ] - }, - { - "text": "Combat impunity as one of the Government's priorities", - "values": [ - "Impunity" - ] - }, - { - "text": "Consider ratifying the Optional Protocol to the International Covenant on Economic, Social and Cultural Rights", - "values": [ - "ESC rights - general", - "International instruments" - ] - }, - { - "text": "Pursue and intensify its initiatives in the area of fighting against human trafficking, a form of modern slavery ", - "values": [ - "Trafficking" - ] - }, - { - "text": "Adopt measures that are more adapted to children in the judicial system", - "values": [ - "Justice", - "Rights of the Child" - ] - }, - { - "text": "Intensify efforts to empower and improve the status of women in society and adopt additional measures to eliminate all forms of discrimination against women, promote their literacy, ensure equal treatment and safe environment for women in the workplace and combat gender-based violence", - "values": [ - "Women's rights" - ] - }, - { - "text": "Provide more support to civil society associations", - "values": [ - "Civil society" - ] - }, - { - "text": "Respect the activities of civil society organizations, and to ensure that any action taken to regulate human rights organizations is not politically motivated, but based on legal provisions consistent with international human rights standards", - "values": [ - "Civil society", - "International instruments" - ] - }, - { - "text": "Adopt appropriate measures against perpetrators of police brutality that affect some asylum seekers, migrants and others", - "values": [ - "Asylum-seekers - refugees", - "Human rights violations by state agents", - "Migrants" - ] - }, - { - "text": "Continue to develop the judicial system in order to ensure respect for, and protection of citizens' rights ", - "values": [ - "Justice" - ] - }, - { - "text": "Take action to reduce domestic violence and to criminalize it", - "values": [ - "Rights of the Child", - "Women's rights" - ] - }, - { - "text": "Promote the rights of persons with disabilities", - "values": [ - "Disabilities" - ] - }, - { - "text": "Pass laws that aim at ensuring equal treatment of women, in issues related to child custody, inheritance and divorce", - "values": [ - "Women's rights" - ] - }, - { - "text": "Continue to strengthen the legal system with new bodies ", - "values": [ - "Justice" - ] - }, - { - "text": "Amend the Press and Publications Law to allow for open channels of public communication in print and online media and for greater access to public information in order for citizens to participate more meaningfully in the public sphere", - "values": [ - "Freedom of the press" - ] - }, - { - "text": "Abolish the death penalty and accede to the Second Optional Protocol to the International Covenant on Civil and Political Rights (ICCPR-OP 2)", - "values": [ - "Death penalty", - "International instruments" - ] - }, - { - "text": "Repeal legislation that deprives women from some rights, such as the right to inheritance and land ownership", - "values": [ - "Women's rights" - ] - }, - { - "text": "Amend constitutional provisions which negatively affect the status of women, including marriage, divorce, adoption, burial and transfer of property in case of death", - "values": [ - "Women's rights" - ] - }, - { - "text": "Consider ratifying the CRPD", - "values": [ - "Disabilities", - "International instruments" - ] - }, - { - "text": "Immediately establish the moratorium on executions with a view to abolishing the death penalty ", - "values": [ - "Death penalty" - ] - }, - { - "text": "Ensure effective free education for all children, and ensure equitable access to education", - "values": [ - "Right to education", - "Rights of the Child" - ] - }, - { - "text": "Take necessary measures aimed at combating sexual exploitation of migrant women and children, especially young girls", - "values": [ - "Migrants", - "Rights of the Child", - "Women's rights" - ] - }, - { - "text": "Consider the possibility of acceding to the International Convention for the Protection of All Persons from Enforced Disappearance.", - "values": [ - "Enforced disappearances", - "International instruments" - ] - }, - { - "text": "Continue taking concrete measures to further promote and protect human rights, particularly for women and children", - "values": [ - "Rights of the Child", - "Women's rights" - ] - }, - { - "text": "Put an end to the measures that exclude young pregnant girls from the educational system", - "values": [ - "Right to education", - "Rights of the Child", - "Women's rights" - ] - }, - { - "text": "Ratify the Optional Protocol to the Convention on the Rights of the Child on the involvement of children in armed conflict ", - "values": [ - "International humanitarian law", - "International instruments", - "Rights of the Child" - ] - }, - { - "text": "Declare a moratorium on the death penalty with the aim of its abolition, commute all death sentences to prison sentences, and sign and ratify the Second Optional Protocol to ICCPR", - "values": [ - "Death penalty", - "International instruments" - ] - }, - { - "text": "Provide health care to persons with mental disabilities", - "values": [ - "Disabilities", - "Right to health" - ] - }, - { - "text": "Amend the legal framework to guarantee equal personal status of women as well as equal rights in relation to property, inheritance and custody of children ", - "values": [ - "Women's rights" - ] - }, - { - "text": "Continue implementing additional measures to fight discrimination against foreign workers, addressing in particular work conditions and the respect for occupational and safety standards", - "values": [ - "Labour", - "Migrants", - "Racial discrimination" - ] - }, - { - "text": "While recognizing the efforts of Morocco to promote a culture of human rights and human rights education and training, to carry on with its efforts to disseminate and consolidate the human rights culture in the country.", - "values": [ - "Human rights education and training" - ] - }, - { - "text": "Seek the technical assistance of the international community, in light of the present stage of development in Laos, in order to provide it with needed assistance in strengthening the capacity of its national mechanisms responsible for preparing periodic reports for treaty bodies, and in training its law enforcement officials, judges and police officers in the area of human rights ", - "values": [ - "Human rights education and training", - "Technical assistance and cooperation", - "Treaty bodies" - ] - }, - { - "text": "Consider the possibility of raising the minimum age for voluntary recruitment to 18 years and, in the meantime, give priority to older candidates in the process of volunteer recruitment ", - "values": [ - "International humanitarian law", - "Rights of the Child" - ] - }, - { - "text": "Adopt, as soon as possible, the draft laws that promote the rights of women in marriage, marital property and divorce", - "values": [ - "Women's rights" - ] - }, - { - "text": "Increase its efforts to ensure the full realisation of women's civil, political, economic, social and cultural rights by establishing national programmes to empower women's organisations and groups through the provision of technical and financial support and microcredit", - "values": [ - "Women's rights" - ] - }, - { - "text": "Consider intensify measures to protect the rights of ethnic minorities of the country and their self-fulfilment of their cultural specificities", - "values": [ - "Minorities" - ] - }, - { - "text": "Continue its efforts to reduce inequality in education, particularly the quality gap in education between urban and rural areas ", - "values": [ - "Right to education" - ] - }, - { - "text": "Enhance the capacity-building programmes for all branches of government", - "values": [ - "Other" - ] - }, - { - "text": "Favourably consider ratifying, inter alia, the International Covenant on Civil and Political Rights, Optional Protocol 1 to the International Covenant on Civil and Political Rights, the International Covenant on Economic, Social and Cultural Rights, the Convention against Torture and Other Cruel, Inhuman or Degrading Treatment or Punishment and the Optional Protocol to the Convention on the Elimination of All Forms of Discrimination against Women, as a further step aimed at the full implementation of its commitment to promoting and protecting human rights in the country", - "values": [ - "CP rights - general", - "ESC rights - general", - "International instruments", - "Torture and other CID treatment", - "Women's rights" - ] - }, - { - "text": "Extend a standing invitation to mandate holders", - "values": [ - "Special procedures" - ] - }, - { - "text": "Significantly improve its cooperation with the United Nations treaty Bodies by submitting overdue reports", - "values": [ - "Treaty bodies" - ] - }, - { - "text": "Take the necessary steps for the effective implementation of the law on marriage, divorce and family relations, in order to set the minimum age formarriage at 18 and to contribute to combating forced or early marriages", - "values": [ - "Rights of the Child" - ] - }, - { - "text": "Respect and promote the human rights of female immigrants and minority women, including their freedom of religion and expression.", - "values": [ - "Migrants", - "Minorities", - "Women's rights" - ] - }, - { - "text": "Continue with the necessary attention to the empowerment of women and children care and other vulnerable groups of the population ", - "values": [ - "Rights of the Child", - "Women's rights" - ] - }, - { - "text": "Amend the Child Marriage Restraint Act to include an equal minimum age of marriage of 18 years for all individuals", - "values": [ - "Rights of the Child", - "Women's rights" - ] - }, - { - "text": "Increase its focus on policy implementation to combat family violence, and in particular violence against women and children", - "values": [ - "Rights of the Child", - "Women's rights" - ] - }, - { - "text": "Adopt measures to combat corruption, especially in the judiciary, and ensure independence of the judiciary", - "values": [ - "Corruption", - "Justice" - ] - }, - { - "text": "Adopt appropriate legislative or judicial measures to criminalize enforced disappearance, in accordance to the provisions of ICPPED and promote changes in the internal order which enable enforced disappearances to be investigated thoroughly and impartially", - "values": [ - "Enforced disappearances", - "International instruments" - ] - }, - { - "text": "Improve access to education for children with disabilities", - "values": [ - "Disabilities", - "Right to education", - "Rights of the Child" - ] - }, - { - "text": "Step up necessary measures to promote equality between men and women and strengthen the ongoing efforts for the prevention of domestic violence ", - "values": [ - "Women's rights" - ] - }, - { - "text": "Strengthen the implementation of policies and measures to protect vulnerable social groups like women, children, poor people, ethnic minorities, migrants ", - "values": [ - "Migrants", - "Minorities", - "Poverty", - "Rights of the Child", - "Women's rights" - ] - }, - { - "text": "Strengthen measures for the promotion and protection of human rights of minorities such as the Roma and other vulnerable groups", - "values": [ - "Minorities" - ] - }, - { - "text": "Continue its efforts to strengthen the normative and institutional framework for the protection and promotion of human rights ", - "values": [ - "General" - ] - }, - { - "text": "Strengthen the implementation of the Convention on the Rights of Persons with Disabilities in the national legislation", - "values": [ - "Disabilities", - "International instruments" - ] - }, - { - "text": "Adopt measures to fight against discrimination based on sexual orientation or gender identity", - "values": [ - "Sexual Orientation and Gender Identity" - ] - }, - { - "text": "Respect freedom of expression and association, and restrict to the extent strictly necessary the use of criminal prosecutions against people who make use of such rights", - "values": [ - "Freedom of association and peaceful assembly", - "Freedom of opinion and expression" - ] - }, - { - "text": "Confer the Ombudsman's Office (Provedor de Justiça) with the necessary legal framework to enable it to effectively function as the National Human Rights Institution", - "values": [ - "National Human Rights Institution" - ] - }, - { - "text": "Share with interested developing countries their good practices in the implementation of this concept of Scientific Outlook on Development", - "values": [ - "Development" - ] - }, - { - "text": "Adopt immediately all measures aimed at preventing discrimination and prosecution on ethnic or religious grounds", - "values": [ - "Freedom of religion and belief", - "Racial discrimination" - ] - }, - { - "text": "Adopt prompt measures aimed at ensuring an adequate assessment of the need for solitary confinement in each case of police detention, as well as ensuring a stricter implementation of the 48 hours statutory limit to the use of such a short term public order measure ", - "values": [ - "Detention" - ] - }, - { - "text": "Comprehensive protection be accorded to all migrant workers, including access to essential services like education, health and housing", - "values": [ - "Labour", - "Migrants" - ] - }, - { - "text": "Close the so-called rehabilitation centres, where poor people living on the streets arrested in police operations are held, and pursue adequate social policies that address the problems of the concerned socially disadvantaged groups", - "values": [ - "Detention", - "Poverty" - ] - }, - { - "text": "Effectively implement the 2009 Anti-Torture Act, with a particular focus on ensuring that all alleged victims of torture and ill-treatment have effective access to a medical evaluation of their injuries by institutionalising the use of the Istanbul Protocol, including by providing guidelines to judges, prosecutes, forensic doctors and medical personnel dealing with detained persons, to detect and document physical and psychological trauma of torture ", - "values": [ - "Detention", - "International instruments", - "Torture and other CID treatment" - ] - }, - { - "text": "Allow single mothers to enjoy the same benefits as married mothers", - "values": [ - "Women's rights" - ] - }, - { - "text": "Consider the possibility to amend the criminal code to criminalize the trafficking in human beings for the purpose of sexual exploitation ", - "values": [ - "Trafficking" - ] - }, - { - "text": "Continue cooperation with international community so as to improve the access to food, water and sanitation for the whole population given the country's limited resources and its exposure to natural disasters ", - "values": [ - "Environment", - "Right to food", - "Right to water and sanitation", - "Technical assistance and cooperation" - ] - }, - { - "text": "Intensify its public expenditure on the implementation of economic, social and cultural rights ", - "values": [ - "ESC rights - general" - ] - }, - { - "text": "Evaluate the National Plan for Equal Rights and Opportunities between Men and Women with a view to the development and implementation of a national gender policy", - "values": [ - "Women's rights" - ] - }, - { - "text": "Take steps aimed at ensuring the implementation of joint educational programmes and training of teachers in collaboration with the relevant Armenian educational authorities", - "values": [ - "Right to education" - ] - }, - { - "text": "Ensure the full enjoyment of freedom of expression and of the press by removing all of the restrictions imposed, including by decriminalizing defamation, in accordance with its obligations under ICCPR and its commitment taken during the previous review ", - "values": [ - "Freedom of opinion and expression", - "Freedom of the press", - "International instruments", - "UPR process" - ] - }, - { - "text": "Continue ongoing efforts to ensure the return of refugees and Croatian displaced persons of Serb origin, to their home and the recovery of all of their rights, particularly with regard to their property, pension and social rights", - "values": [ - "Asylum-seekers - refugees", - "Internally displaced persons" - ] - }, - { - "text": "Bring the legal age of marriage tom18 for women as for men", - "values": [ - "Rights of the Child", - "Women's rights" - ] - }, - { - "text": "Vigorously apply the law that was recently put in place to end the practice concerning the stigmatized children as witches or wizards", - "values": [ - "Rights of the Child" - ] - }, - { - "text": "Take further concrete measures to promote equality between men and women by enabling full and meaningful participation by women in the decision-making levels of the formal peace process and the advancement of negotiations regarding the Cyprus issue ", - "values": [ - "Women's rights" - ] - }, - { - "text": "Continue adopting measures to respect and protect the rights and human dignity of detainees", - "values": [ - "Detention" - ] - }, - { - "text": "Engage stakeholders such as civil society organizations, the private sector, local communities, donors, and multilateral institutions in the realization of the fundamental international principles on human rights protection", - "values": [ - "Civil society", - "Technical assistance and cooperation" - ] - }, - { - "text": "Invite and facilitate the visit of the Special Rapporteur on freedom of religion and belief.", - "values": [ - "Freedom of religion and belief", - "Special procedures" - ] - }, - { - "text": "Maintain and reinforce all measures aimed at eradicating female genital mutilation, which is often related to other forms of aggression against women", - "values": [ - "Rights of the Child", - "Torture and other CID treatment", - "Women's rights" - ] - }, - { - "text": "Combat discrimination on the basis of sexual orientation, and further promote dialogue in society so that no discrimination is justified on the grounds of culture, religion or tradition ", - "values": [ - "Freedom of religion and belief", - "Sexual Orientation and Gender Identity" - ] - }, - { - "text": "Ensure respect of the rights and fundamental freedoms of the entire population, in particular women and children, and adopt all necessary measures to ensure the fight against impunity, by initiating investigations in order to identify the perpetrators of acts of violence and of all human rights violations", - "values": [ - "Impunity", - "Rights of the Child", - "Women's rights" - ] - }, - { - "text": "Set up training programmes on human rights for police officers", - "values": [ - "Human rights education and training" - ] - }, - { - "text": "Ratify the Rome Statute of the International Criminal Court, and the Convention on the Prevention and Punishment of the Crime of Genocide ", - "values": [ - "International instruments", - "Justice" - ] - }, - { - "text": "Intensify its efforts to establish a national human rights institution", - "values": [ - "National Human Rights Institution" - ] - }, - { - "text": "Continue efforts to provide more education to persons with disabilities", - "values": [ - "Disabilities", - "Right to education" - ] - }, - { - "text": "Develop national mechanisms for the protection of vulnerable groups in the population", - "values": [ - "Minorities" - ] - }, - { - "text": "Implement policies to ensure free education throughout the country", - "values": [ - "Right to education" - ] - }, - { - "text": "Consider in a timely manner the establishment of a national human rights institution, with accreditation status granted by the Intentional Coordinating Committee of National Institutions for the Promotion and Protection of Human Rights", - "values": [ - "National Human Rights Institution" - ] - }, - { - "text": "Generate adequate infrastructure so that all citizens have access to safe drinking water for human consumption ", - "values": [ - "Right to water and sanitation" - ] - }, - { - "text": "Ratify the Optional Protocol to CAT and ICESCR", - "values": [ - "Detention", - "ESC rights - general", - "International instruments", - "Torture and other CID treatment" - ] - }, - { - "text": "Continue implementing the plans, programs and measures that aim to guarantee the right to education and access to appropriate health services for all its citizens", - "values": [ - "Right to education", - "Right to health" - ] - }, - { - "text": "Implement measures in order to address the factors leading to an overrepresentation of Aboriginal and Torres Strait Islander communities in the prison population ", - "values": [ - "Detention", - "Indigenous peoples" - ] - }, - { - "text": "Continue to promote and protect the rights of the child, also by considering the creation of a national ombudsperson for children", - "values": [ - "National Human Rights Institution", - "Rights of the Child" - ] - }, - { - "text": "Reinstate and respect the moratorium on the death penalty with a view to preparing a referendum on its possible abolition in accordance with the stipulations of the national Constitution", - "values": [ - "Death penalty" - ] - }, - { - "text": "Ratify the optional protocols to the Convention on the Rights of the Child on a communications procedure, to the Convention on the Rights of Persons with Disabilities and to the International Covenant on Economic, Social and Cultural Rights", - "values": [ - "CP rights - general", - "Disabilities", - "ESC rights - general", - "International instruments" - ] - }, - { - "text": "Continue improving conditions of detention, notably through the separation of quarters of children, women and men in detention facilities where this has not been achieved yet ", - "values": [ - "Detention", - "Rights of the Child", - "Women's rights" - ] - }, - { - "text": "Namibia remained committed to implementing the recommendations that enjoyed its support during the first cycle of the UPR.", - "values": [ - "UPR process" - ] - }, - { - "text": "Strengthen the training programmes on human rights for the benefit of law enforcement officials", - "values": [ - "Human rights education and training" - ] - }, - { - "text": "Accede to the Rome Statute of the ICC and to the Agreement on the Privileges and Immunities of the ICC ", - "values": [ - "International instruments", - "Justice" - ] - }, - { - "text": "Ensure that judges of the Supreme Court are not subjected to any form of political influence in their decision-making and that their appointment is transparent", - "values": [ - "Justice" - ] - }, - { - "text": "Take measures to protect further and promote the rights of women, including through international cooperation to prevent human trafficking and by criminalizing domestic violence and marital rape ", - "values": [ - "Rights of the Child", - "Trafficking", - "Women's rights" - ] - }, - { - "text": "Enhance technical cooperation with and seek support from the UN human rights mechanisms for further consideration of ratification of important documents on human rights, including the ICESCR ", - "values": [ - "ESC rights - general", - "International instruments", - "Special procedures", - "Technical assistance and cooperation", - "Treaty bodies", - "UPR process" - ] - }, - { - "text": "Design instruments for measuring and generating reliable and disaggregated data on persons with disabilities and remove any legal barrier and discriminatory practices towards persons with disabilities", - "values": [ - "Disabilities" - ] - }, - { - "text": "Invite representatives of international human rights organizations to visit Venezuela, including by issuing a standing invitation to the UN special procedures ", - "values": [ - "Special procedures" - ] - }, - { - "text": "Continue its efforts in establishing and providing public services through social security, especially for women and children", - "values": [ - "ESC rights - general", - "Rights of the Child", - "Women's rights" - ] - }, - { - "text": "Take the necessary measures to ensure that no asylum-seeker is sent back immediately to its country of origin or any other country where his/her life is in danger, in accordance with applicable international norms ", - "values": [ - "Asylum-seekers - refugees" - ] - }, - { - "text": "Facilitate complaints by foreign victims of trafficking so that their migration situation is not used against them as a means of coercion by the traffickers themselves ", - "values": [ - "Trafficking" - ] - }, - { - "text": "Take comprehensive measures to protect the rights of all national minorities, including the so-called erased people and promote their full integration into society", - "values": [ - "Minorities" - ] - }, - { - "text": "Continue the implementation of the national strategy regarding the Roma and the National Action Plan relating to the decade for the inclusion of the Roma ", - "values": [ - "Minorities" - ] - }, - { - "text": "Increase its budget for migration detention centres and migrant care through intensified cooperation with EU partners ", - "values": [ - "Migrants" - ] - }, - { - "text": "Incorporate a legal definition of racial discrimination into domestic legislation.", - "values": [ - "Racial discrimination" - ] - }, - { - "text": "Continue its active participation in the work of Human Rights Council as well as to maintain its contribution to OHCHR ", - "values": [ - "Other" - ] - }, - { - "text": "Harmonize the definition of torture contained in the national legislation with the requirements of the CAT and ensure that statements obtained under duress are not admitted in court", - "values": [ - "International instruments", - "Torture and other CID treatment" - ] - }, - { - "text": "Repeal laws that discriminate against women in order to strengthen gender equality ", - "values": [ - "Women's rights" - ] - }, - { - "text": "Comply with the recommendations made by Treaty Bodies and Special Procedures and, in this connection, recommended to establish mechanism to monitor ethnic minorities and other vulnerable groups, including migrants and asylum seekers, and to allow these groups to access all rights enjoyed by the rest of the population", - "values": [ - "Asylum-seekers - refugees", - "Migrants", - "Minorities", - "Special procedures", - "Treaty bodies" - ] - }, - { - "text": "Partner with appropriate international agencies to strengthen national capacities to collect, process, and analyse relevant human rights statistical information concerning police misconduct and prison conditions", - "values": [ - "Detention", - "Human rights violations by state agents", - "Technical assistance and cooperation" - ] - }, - { - "text": "Enhance women's access to sexual and reproductive health services and provide comprehensive education on sexuality, especially to female adolescents", - "values": [ - "Right to health", - "Rights of the Child", - "Women's rights" - ] - }, - { - "text": "Continue the efforts to establish a national institution to promote and protect human rights in the country ", - "values": [ - "National Human Rights Institution" - ] - }, - { - "text": "Strengthen the protection of religious minorities, in particular by guaranteeing freedom of manifestation of their religion in teaching, practice, worship and observance", - "values": [ - "Freedom of religion and belief", - "Minorities" - ] - }, - { - "text": "Step up measures to curb the incidence of drug and alcohol abuse by children including through intensive public education awareness campaigns ", - "values": [ - "Rights of the Child" - ] - }, - { - "text": "Revise its national legislation to decriminalise homosexuality and prohibit all forms of discrimination ", - "values": [ - "Sexual Orientation and Gender Identity" - ] - }, - { - "text": "Carry out as soon as possible the implementation of its legislation on torture and the designation of its national preventive mechanism ", - "values": [ - "Torture and other CID treatment" - ] - }, - { - "text": "Continue to assist, when requested, Aruba, Curaçao and Sint Maarten to develop human rights institutions, laws and policies ", - "values": [ - "General" - ] - }, - { - "text": "Continue its endeavours in poverty eradication, and strengthen the living standards and share experiences and best practices in that regard", - "values": [ - "Poverty" - ] - }, - { - "text": "Take concrete measures to protect the rights of people with albinism, in accordance with the recommendations made by the Office of the High Commissioner, and raise awareness among society about their situation", - "values": [ - "Human rights education and training", - "Minorities" - ] - }, - { - "text": "Devote more resources to national development plans to better ensure the most essential economic and social rights of its population ", - "values": [ - "Development" - ] - }, - { - "text": "Establish a national human rights institution in accordance with the Paris Principles and adopt a national action plan to address structural racial discrimination", - "values": [ - "National Human Rights Institution", - "Racial discrimination" - ] - }, - { - "text": "Take all necessary measures to ensure that all reports of ill-treatment and torture in prisons and centres of detention are adequately investigated and ratify the Optional Protocol to the Convention against Torture", - "values": [ - "Detention", - "International instruments", - "Torture and other CID treatment", - "Treaty bodies" - ] - }, - { - "text": "Take steps to ensure that the National Human Rights Institution, which Japan is to create, is consistent with the Paris Principles", - "values": [ - "National Human Rights Institution" - ] - }, - { - "text": "Fully align its migration and asylum policy in accordance with international law", - "values": [ - "Asylum-seekers - refugees", - "Migrants" - ] - }, - { - "text": "Update the 1996 Action Plan to combat sexual exploitation of children and ensure its effective implementation, including monitoring and evaluation ", - "values": [ - "Rights of the Child" - ] - }, - { - "text": "End the practice of enforced sterilization of persons with disabilities for non-therapeutic reasons", - "values": [ - "Disabilities", - "Torture and other CID treatment" - ] - }, - { - "text": "Examine as a priority the introduction of a formal moratorium on the death penalty.", - "values": [ - "Death penalty" - ] - }, - { - "text": "Put into practice awareness-raising programmes to combat the discriminatory practices against women", - "values": [ - "Women's rights" - ] - }, - { - "text": "Eradicate the practice of female genital mutilation and continue its efforts regarding gender equality", - "values": [ - "Rights of the Child", - "Torture and other CID treatment", - "Women's rights" - ] - }, - { - "text": "Enhance the role of the Ombudsman and take measures providing for the effective implementation of its functions as a national preventive mechanism in accordance with the Optional Protocol to the Convention against Torture and Other Cruel, Inhuman or Degrading Treatment or Punishment ", - "values": [ - "Detention", - "International instruments", - "Torture and other CID treatment" - ] - }, - { - "text": "Continue combating violence against women by ensuring the application of the law prohibiting domestic violence against women", - "values": [ - "Justice", - "Women's rights" - ] - }, - { - "text": "Further strengthen its national legislation to combat human trafficking", - "values": [ - "Trafficking" - ] - }, - { - "text": "Intensify efforts to combat trafficking in persons while ensuring that appropriate access to remedy is provided to trafficking victims", - "values": [ - "Trafficking" - ] - }, - { - "text": "Call for the support of the international community to provide the urgently needed technical and financial assistance in support of its efforts and for the implementation of the recommendations that may come out of this review.", - "values": [ - "Technical assistance and cooperation", - "UPR process" - ] - }, - { - "text": "Take all necessary measures towards becoming a State party to more core human rights treaties", - "values": [ - "International instruments" - ] - }, - { - "text": "Strengthen measures aimed at combating discrimination against women and children, in particular those belonging to vulnerable groups and minorities", - "values": [ - "Minorities", - "Rights of the Child", - "Women's rights" - ] - }, - { - "text": "Ensure that pilot initiatives at regional level are fully supported by the federal government with a view to consider developing inter alia an independent, nationally coordinated statutory service, which could act as a referral and decision-making body", - "values": [ - "National Human Rights Institution" - ] - }, - { - "text": "Ensure that IDPs and returnees can fully enjoy their rights relating to social protection, health care, education, housing, employment and physical security", - "values": [ - "Internally displaced persons" - ] - }, - { - "text": "Step up national efforts in combating all forms of human trafficking", - "values": [ - "Trafficking" - ] - }, - { - "text": "Complete, without delay, the ratification process of CRPD", - "values": [ - "Disabilities", - "International instruments" - ] - }, - { - "text": "Become a party to the ICCPR and ICESCR", - "values": [ - "CP rights - general", - "ESC rights - general", - "International instruments" - ] - }, - { - "text": "Continue its efforts to ensure the observance of fundamental rights and international standards in the context of asylum procedures, particularly with regard to the treatment of unaccompanied minors ", - "values": [ - "Asylum-seekers - refugees", - "Rights of the Child" - ] - }, - { - "text": "Prioritize legislation on women's rights, sexual harassment, domestic violence and the protection of children against abuse", - "values": [ - "Rights of the Child", - "Women's rights" - ] - }, - { - "text": "Finalize the national policy framework on human rights, in consultation with stakeholders", - "values": [ - "General" - ] - }, - { - "text": "Establish clear legal protections for human rights defenders and civil society organizations and abide by them", - "values": [ - "Civil society", - "Human rights defenders" - ] - }, - { - "text": "Take the necessary measures so that all allegations of human rights violations are duly investigated and that the perpetrators are brought to justice ", - "values": [ - "General" - ] - }, - { - "text": "Stop child labour, as previously recommended", - "values": [ - "Labour", - "Rights of the Child", - "UPR process" - ] - }, - { - "text": "Establish expeditious legal remedies that are accessible to women victims of violence and harmful practices, as recommended by the Committee on the Elimination of Discrimination against Women", - "values": [ - "Torture and other CID treatment", - "Treaty bodies", - "Women's rights" - ] - }, - { - "text": "To submit to Parliament, for early ratification, the Convention on the Rights of Persons with Disabilities, the International Convention for the Protection of All Persons from Enforced Disappearance, and the Optional Protocol to the Convention against Torture and Other Cruel, Inhuman or Degrading Treatment or Punishment", - "values": [ - "Detention", - "Disabilities", - "Enforced disappearances", - "International instruments", - "Torture and other CID treatment" - ] - }, - { - "text": "Consider ratifying and implementing the Indigenous and Tribal Peoples Convention No. 169.", - "values": [ - "Indigenous peoples", - "International instruments" - ] - }, - { - "text": "Continue its efforts to enhance religious tolerance and maintain peaceful co-existence among followers of different religions", - "values": [ - "Freedom of religion and belief" - ] - }, - { - "text": "Ratify the International Convention on the Protection of the Rights of All Migrant Workers and Their Families to guarantee their protection against all human rights violations", - "values": [ - "International instruments", - "Labour", - "Migrants" - ] - }, - { - "text": "Continue its efforts to realise universal human rights by a - ratifying CEDAW, b - becoming a party to the United Nations Convention on the Rights of the Child, c - acceding to ICESCR, d - ratifying the United Nations Convention on the Rights of Persons with Disabilities", - "values": [ - "Disabilities", - "ESC rights - general", - "International instruments", - "Rights of the Child", - "Women's rights" - ] - }, - { - "text": "Intensify efforts to ensure access to education, including efforts to increase enrolment and completion rates", - "values": [ - "Right to education" - ] - }, - { - "text": "Repeal the legal provisions which criminalize LGBT person", - "values": [ - "Sexual Orientation and Gender Identity" - ] - }, - { - "text": "Continue its positive approach in the field of education including ensuring free primary and post-primary education as well as incorporating human rights education in the school curricula ", - "values": [ - "Human rights education and training", - "Right to education" - ] - }, - { - "text": "Take more steps to protect the rights of all persons under legal processes of criminal justice and to guarantee due processes are applied to all of them", - "values": [ - "Justice" - ] - }, - { - "text": "Enable indigenous peoples in the territories they occupy to exercise their right to self-determination, in conformity with the Charter of the United Nations", - "values": [ - "Indigenous peoples" - ] - }, - { - "text": "Consider further measures in order to address the problem of violence against children, including corporal punishment.", - "values": [ - "Rights of the Child", - "Torture and other CID treatment" - ] - }, - { - "text": "Ensure on-going social welfare and protection measures to ensure the maintenance of levels of human development already achieved and realization of the Millennium Development Goals", - "values": [ - "Development" - ] - }, - { - "text": "Adopt policies and measures to guarantee the rights of women in the social, economic and cultural fields, without any form of discrimination ", - "values": [ - "Women's rights" - ] - }, - { - "text": "Conclude the work on the draft law on marriage, divorce and family relations", - "values": [ - "Women's rights" - ] - }, - { - "text": "Implement safeguards for human rights defenders by introducing legislation to protect freedom of association and assembly", - "values": [ - "Freedom of association and peaceful assembly", - "Human rights defenders" - ] - }, - { - "text": "Accede to the Rome Statute of the International Criminal Court and fully align its national legislation with the Statute and accede to the Agreement on the Privileges and Immunities of the International Criminal Court", - "values": [ - "International instruments", - "Justice" - ] - }, - { - "text": "Bhutan is committed to continue participating actively in all UN human rights activities with the objective of drawing on international best practices that can be incorporated into relevant domestic policies and legislations.", - "values": [ - "Other" - ] - }, - { - "text": "Continue its efforts to combat prejudice and negative racial stereotyping", - "values": [ - "Racial discrimination" - ] - }, - { - "text": "Amend the Public Defender of Rights Act to ensure that it is in line with the Paris Principles", - "values": [ - "National Human Rights Institution" - ] - }, - { - "text": "Address the situation of migrants and travellers ", - "values": [ - "Asylum-seekers - refugees", - "Migrants" - ] - }, - { - "text": "Ensure that the constitutional framework duly protects journalists, media and civil society against intimidation, threats and assaults, and review the Penal Code accordingly", - "values": [ - "Civil society", - "Freedom of the press" - ] - }, - { - "text": "Step up efforts to abolish the death penalty", - "values": [ - "Death penalty" - ] - }, - { - "text": "Continue its efforts for the improvement of the health system and the elimination of discrimination against women and discrimination on the basis of caste", - "values": [ - "Racial discrimination", - "Right to health", - "Women's rights" - ] - }, - { - "text": "Harmonize national policies with the Convention on the Elimination of All Forms of Discrimination Against Women, principally with regard to the elimination of female genital mutilation", - "values": [ - "International instruments", - "Rights of the Child", - "Torture and other CID treatment", - "Women's rights" - ] - }, - { - "text": "Expedite the ongoing measures for combating child sex tourism", - "values": [ - "Rights of the Child" - ] - }, - { - "text": "Review the legislation on defamation and slander so that these are not subject to criminal sanctions but only liable to a civil action ", - "values": [ - "Freedom of opinion and expression" - ] - }, - { - "text": "Introduce a domestic violence bill to address domestic and sexual violence against women", - "values": [ - "Rights of the Child", - "Women's rights" - ] - }, - { - "text": "Establish a sufficient number of courts and mobile legal aid centres in refugee areas to improve access to justice, particularly for cases of sexual and gender-based violence", - "values": [ - "Justice", - "Women's rights" - ] - }, - { - "text": "Pursue its national efforts to integrate human rights education into the education system and training programmes, and to continue to pursue that issue at the international level", - "values": [ - "Human rights education and training" - ] - }, - { - "text": "Adopt a comprehensive action plan to address wage inequalities and make available maternity leave in all public and private employments", - "values": [ - "Women's rights" - ] - }, - { - "text": "Amend legislation to comply with international obligations to guarantee freedom of expression", - "values": [ - "Freedom of opinion and expression" - ] - }, - { - "text": "Further strengthen its cooperation with the United Nations treaty bodies by submitting overdue reports as a matter of priority, and strengthen its cooperation with the special procedures", - "values": [ - "Special procedures", - "Treaty bodies" - ] - }, - { - "text": "Further intensify training for State and local authorities and the public at large on international human rights standards, particularly those in relation to sexual orientation and gender identity", - "values": [ - "Human rights education and training", - "International instruments", - "Sexual Orientation and Gender Identity" - ] - }, - { - "text": "Search for appropriate solutions to the problem of illegal residents on the basis of the legal framework and in line with Kuwait's admirable respect for human dignity ", - "values": [ - "Migrants" - ] - }, - { - "text": "Improve the protection against domestic violence through specialized training for police officers and other persons that act in such cases and take steps to ensure the fair application of the Foreign Nationals Act so as to protect migrant women", - "values": [ - "Human rights education and training", - "Migrants", - "Rights of the Child", - "Women's rights" - ] - }, - { - "text": "Take additional measures to counter all forms of racial discrimination and xenophobia", - "values": [ - "Racial discrimination" - ] - }, - { - "text": "Establish a de jure moratorium on death sentences and commute all death sentences to alternative penalties", - "values": [ - "Death penalty" - ] - }, - { - "text": "Decriminalize defamation, abolish insult laws and take all additional measures to ensure, in law and in practice, a safe and enabling environment for journalists", - "values": [ - "Freedom of opinion and expression", - "Freedom of the press" - ] - }, - { - "text": "Submit its overdue reports to the treaty bodies", - "values": [ - "Treaty bodies" - ] - }, - { - "text": "Step up policies to protect children in order to eliminate violence against girls and boys, as well as combating child labour ", - "values": [ - "Labour", - "Rights of the Child" - ] - }, - { - "text": "Take all necessary measures to ensure equal access to justice for all citizens and guarantee a fair process before a competent, independent and impartial tribunal ", - "values": [ - "Justice" - ] - }, - { - "text": "Protect rights of migrants, asylum seekers and refugees in accordance with international human rights standards with a view to combat discrimination against them", - "values": [ - "Asylum-seekers - refugees", - "International instruments", - "Migrants", - "Racial discrimination" - ] - }, - { - "text": "Adopt legislative and policy measures to ensure women and adolescents have access to sexual education and free and friendly reproductive health services", - "values": [ - "Right to health", - "Rights of the Child", - "Women's rights" - ] - }, - { - "text": "Promptly, thoroughly and impartially investigate all cases of death in custody and provide adequate compensation to the families of victims, as recommended by the Committee against Torture", - "values": [ - "Detention", - "Extrajudicial executions", - "Treaty bodies" - ] - }, - { - "text": "Engage civil society, activists, non-governmental organizations and the media in dialogue to seek common ground on the draft Access to Information bill and governance issues, such as corruption", - "values": [ - "Civil society", - "Corruption", - "Freedom of opinion and expression" - ] - }, - { - "text": "Take into account the recommendations of the National Commission for Equal Opportunities concerning the need to amend the Equal Opportunities legislation so that it covers the elderly, persons living with HIV and discrimination on the grounds of sexual orientation", - "values": [ - "HIV - Aids", - "Sexual Orientation and Gender Identity" - ] - }, - { - "text": "Consider a possibility of improving the penitentiary system as well as implement, in the national legislation, provisions of the Convention against Torture and Other Cruel, Inhuman or Degrading Treatment or Punishment ", - "values": [ - "International instruments", - "Torture and other CID treatment" - ] - }, - { - "text": "Continue taking measures to promote education for all children ", - "values": [ - "Right to education", - "Rights of the Child" - ] - }, - { - "text": "Provide female prisoners with long-term visits, especially taking into account the best interest of their children", - "values": [ - "Detention", - "Rights of the Child", - "Women's rights" - ] - }, - { - "text": "Repeal all legislative provisions which criminalize sexual activity between consenting adults", - "values": [ - "Sexual Orientation and Gender Identity" - ] - }, - { - "text": "Give continuity to the strengthening of national human rights institutions and mechanisms", - "values": [ - "National Human Rights Institution" - ] - }, - { - "text": "Continue to improve policies and training programmes regarding the promotion and protection of the rights of the child", - "values": [ - "Rights of the Child" - ] - }, - { - "text": "Ensure that asylum seekers have access to legal assistance during the process and adopt measures, together with third countries, so that conditions in the processing centres in countries with which Australia has agreements, are in conformity with international laws and standards", - "values": [ - "Asylum-seekers - refugees", - "Detention" - ] - }, - { - "text": "Improve the monitoring and evaluation of domestic violence prevention programmes and agencies", - "values": [ - "Rights of the Child", - "Women's rights" - ] - }, - { - "text": "Continue efforts to fight against discrimination against women and all violence against women, especially domestic violence", - "values": [ - "Rights of the Child", - "Women's rights" - ] - }, - { - "text": "Ratify the Optional Protocol of the CRPD ", - "values": [ - "Disabilities", - "International instruments" - ] - }, - { - "text": "Ensure that attacks on journalists are promptly investigated and the perpetrators held accountable, as recommended in the first cycle", - "values": [ - "Freedom of the press", - "UPR process" - ] - }, - { - "text": "Continue acceding to the main international human rights instruments to which it is not yet a party, particularly, to the International Convention for the Protection of All Persons from Enforced Disappearance", - "values": [ - "Enforced disappearances", - "International instruments" - ] - }, - { - "text": "Continue strengthening the legislative framework for the prevention and combating of racial discrimination and prejudiced-based practices", - "values": [ - "Racial discrimination" - ] - }, - { - "text": "While appreciating the fact that the Government's priorities include combating caste-based discrimination, ensure that the policy is fully implemented also by the local authorities in rural and remote areas ", - "values": [ - "Racial discrimination" - ] - }, - { - "text": "Ensure that the Trafficking in Persons Act comes into force and is implemented as soon as possible and implement a national action plan to strengthen coordination efforts against trafficking at the national level", - "values": [ - "Trafficking" - ] - }, - { - "text": "Continue to take appropriate measures to protect the most vulnerable sectors and to preserve social cohesion, in the face of the huge social inequalities and ensure the enjoyment of basic goods and services for families living in conditions of poverty", - "values": [ - "Poverty" - ] - }, - { - "text": "Intensify its efforts to ratify the Convention against Torture", - "values": [ - "International instruments", - "Torture and other CID treatment" - ] - }, - { - "text": "Continue to speed up the implementation of the free and compulsory education program up to 12 years, in order to guarantee access of all children of the country ", - "values": [ - "Right to education", - "Rights of the Child" - ] - }, - { - "text": "Redouble its efforts to place greater attention on establishing a legal framework to ensure equal access to women's participation in the decision- making process. Indeed, more consideration should be given to women, persons with disabilities and other minorities ", - "values": [ - "Disabilities", - "Minorities", - "Women's rights" - ] - }, - { - "text": "Pursue its effort to bring its national and provincial legislation into line with the human rights international instruments it has ratified.", - "values": [ - "International instruments" - ] - }, - { - "text": "Continue to strengthen the work of the independent commission established to investigate the whereabouts of disappeared persons", - "values": [ - "Enforced disappearances", - "Justice" - ] - }, - { - "text": "Consider steps to encourage the participation of women in the Government Council.", - "values": [ - "Women's rights" - ] - }, - { - "text": "Ensure the right to freedom of expression online/offline in law and in practice, including by decriminalizing defamation, and to investigate all cases of threats and attacks against journalists and human rights defenders", - "values": [ - "Freedom of opinion and expression", - "Freedom of the press", - "Human rights defenders" - ] - }, - { - "text": "Respect the human rights of prisoners and detainees, and investigate and stop immediately any alleged abuses", - "values": [ - "Detention" - ] - }, - { - "text": "Consider abolishing the death penalty, given that there has been no execution since 1992 and that death row cases are being reviewed", - "values": [ - "Death penalty" - ] - }, - { - "text": "Continue its efforts to promote human rights at the international level, particularly in the field of the right to education, and continue to integrate human rights education and training in these efforts ", - "values": [ - "Human rights education and training", - "Right to education" - ] - }, - { - "text": "Include specific provisions for the protection of girls in the draft law on the protection of children with a view to preventing child, early and forced marriages and criminalize attempts to marry persons below the age of 18 years, as well as sexual offences against children", - "values": [ - "Rights of the Child", - "Women's rights" - ] - }, - { - "text": "Increase access to health establishments and care by trained personnel, in particular in rural areas and regarding post-natal care ", - "values": [ - "Right to health" - ] - }, - { - "text": "Adopt effective measures to address the high level of pregnancy among girls and adolescents and ensure their effective access to sexual and reproductive health services", - "values": [ - "Right to health", - "Rights of the Child", - "Women's rights" - ] - }, - { - "text": "Continue its efforts in the area of women's rights and finalize the national action plan to combat domestic violence ", - "values": [ - "Women's rights" - ] - }, - { - "text": "Incorporate a definition of torture in domestic law in line with Article 1 of the Convention against Torture", - "values": [ - "International instruments", - "Torture and other CID treatment" - ] - }, - { - "text": "Implement the strategic vision for education reform for 2015-2030", - "values": [ - "Right to education" - ] - }, - { - "text": "Consider amending discriminatory legislation concerning women\u2019s rights", - "values": [ - "Women's rights" - ] - }, - { - "text": "Ratify the International Covenant on Civil and Political Rights and its two Optional Protocols", - "values": [ - "CP rights - general", - "Death penalty", - "International instruments" - ] - }, - { - "text": "Without further delay, ratify the Optional Protocol to the Convention against Torture and initiate the process of establishing a National Preventive Mechanism", - "values": [ - "Detention", - "International instruments", - "Torture and other CID treatment" - ] - }, - { - "text": "Increase efforts to effectively enforce the provisions of the Penal Code on sexual and domestic violence and prosecute any such acts ", - "values": [ - "Rights of the Child", - "Women's rights" - ] - }, - { - "text": "Consider the Caribbean region among those geographical areas of priority for the overseas and international development cooperation programmes that have been newly prioritized as a consequence of Spain's belt-tightening in face of the economic crisis", - "values": [ - "Development" - ] - }, - { - "text": "Strengthen measures to protect boys, girls and adolescents from all forms of violence against them, as well as measures to eradicate child labour and combat the exploitation of boys, girls and adolescents", - "values": [ - "Labour", - "Rights of the Child" - ] - }, - { - "text": "Eliminate the provision criminalizing irregular entry and stay on Italian territory as contained in law No. 94 of 2009, as well as those provisions that regard non-documented status as an aggravating circumstance in the commission of criminal offence, and the creation of vigilante groups, as contained in law No. 125 of 2008", - "values": [ - "Asylum-seekers - refugees", - "Migrants" - ] - }, - { - "text": "Develop a national strategy to combat poverty ", - "values": [ - "Poverty" - ] - }, - { - "text": "Strengthen the capacity of the judicial system, including the transitional justice mechanisms and the national human rights institutions, and contribute to the efforts of the national reconciliation", - "values": [ - "Justice" - ] - }, - { - "text": "Put in place mechanisms to identify at an early stage children among refugees and asylum seekers who might have been involved in armed conflict in order to ensure their protection, recovery and reintegration ", - "values": [ - "Asylum-seekers - refugees", - "International humanitarian law", - "Rights of the Child" - ] - }, - { - "text": "Release persons imprisoned as required by freedom of expression and repeal all legislation that criminalizes the exercise of this right ", - "values": [ - "Freedom of opinion and expression" - ] - }, - { - "text": "Grant unfettered access to Belarus for the Special Rapporteur on the situation of human rights in Belarus and other special procedures mandate holders, comply with the recommendations of the Rapporteur's reports without delay and resume cooperation with all international organizations", - "values": [ - "Special procedures", - "Technical assistance and cooperation" - ] - }, - { - "text": "Ensure a clear definition in the law on internal security of appropriate and proportionate use of force by law enforcement officials in line with international standards ", - "values": [ - "Justice" - ] - }, - { - "text": "Continue to conduct broad based consultations in the process of preparing human rights reports", - "values": [ - "Civil society", - "Treaty bodies", - "UPR process" - ] - }, - { - "text": "Revise its legislation and practice that violate the right to freedom of expression and release all persons held in this connection, e.g., Mr. Paljor Norbu and persons arrested in connection with Charter 08", - "values": [ - "Detention", - "Freedom of opinion and expression" - ] - }, - { - "text": "Revise laws discriminating against LGBTI persons, including refraining from signing into law any new legislation criminalizing LGBTIs", - "values": [ - "Sexual Orientation and Gender Identity" - ] - }, - { - "text": "Mexico is committed to restricting the use of preventive custody to only very exceptional cases as a precautionary measure to protect the higher interest of life, to safeguard the integrity of persons, to protect legal rights or to prevent suspects from evading justice.", - "values": [ - "Detention" - ] - }, - { - "text": "Accelerate the nomination of members of the National Committee of Inquiry, as well as of the Reconciliation, Land and Public Administration Committees ", - "values": [ - "Justice" - ] - }, - { - "text": "Ensure that the concept of defamation and disturbance of public order is in line with the human right to freedom of expression in law and practice ", - "values": [ - "Freedom of opinion and expression" - ] - }, - { - "text": "Investigate and prosecute all those responsible for the mistreatment or abuse of detained persons in Iran, including during the attacks on prisoners in Evin Prison in April 2014 and in the wake of the 2009 presidential election", - "values": [ - "Detention", - "Elections" - ] - }, - { - "text": "Continue efforts to make sure that the Human Rights Commission functions in an effective and independent manner", - "values": [ - "National Human Rights Institution" - ] - }, - { - "text": "Accept the request for a visit made by the Special Rapporteur on the question of torture in March 2014", - "values": [ - "Special procedures", - "Torture and other CID treatment" - ] - }, - { - "text": "Continue progress to increase gender equality and protections for women and girls who encounter violence including enhanced implementation of Denmark's existing legal and policy frameworks", - "values": [ - "Rights of the Child", - "Women's rights" - ] - }, - { - "text": "Withdraw reservations and declarations to the Convention on the Rights of the Child and to ratify its optional protocol OP-CRC-SC", - "values": [ - "International instruments", - "Rights of the Child", - "Trafficking" - ] - }, - { - "text": "Adopt legislation to eliminate discrimination based on sexual orientation, and decriminalize sexual relations between consenting adults of the same sex ", - "values": [ - "Sexual Orientation and Gender Identity" - ] - }, - { - "text": "Take necessary actions to define the legal status for an independent child rights monitoring body and increase its efforts for human rights training relevant to child abuse and domestic violence cases", - "values": [ - "Human rights education and training", - "Rights of the Child" - ] - }, - { - "text": "Implement standard procedures to identify victims and provide them with protection, conduct national anti-trafficking public awareness campaigns, and incorporate anti-human trafficking training into its police training curriculum ", - "values": [ - "Human rights education and training", - "Trafficking" - ] - }, - { - "text": "Enhance the independence of the Ombudsman, in accordance with the Paris Principles, ensuring adequate funding for its proper functioning", - "values": [ - "National Human Rights Institution" - ] - }, - { - "text": "Amend the legislation on the protection of families in order to widen the definition of family", - "values": [ - "Other" - ] - }, - { - "text": "Promulgate a law on domestic violence that includes penalties and options for the treatment of those responsible for such crimes", - "values": [ - "Rights of the Child", - "Women's rights" - ] - }, - { - "text": "Consider and formulate measures to address the very low representation of women in high-level positions, including in politics, as a priority", - "values": [ - "Women's rights" - ] - }, - { - "text": "Strengthen its existing initiatives to end early, forced and child marriage", - "values": [ - "Rights of the Child", - "Women's rights" - ] - }, - { - "text": "Adopt and start to implement the National Human Rights Education Plan within the next four years", - "values": [ - "Human rights education and training" - ] - }, - { - "text": "Increase social spending to meet basic needs, and establish independent means to monitor and evaluate this expenditure", - "values": [ - "ESC rights - general" - ] - }, - { - "text": "Continue its efforts for strengthening human rights infrastructure", - "values": [ - "General" - ] - }, - { - "text": "Take necessary actions to check terrorist financing", - "values": [ - "Public security" - ] - }, - { - "text": "Continue combating trafficking in persons", - "values": [ - "Trafficking" - ] - }, - { - "text": "Continue its efforts in the field of combating domestic violence", - "values": [ - "Rights of the Child", - "Women's rights" - ] - }, - { - "text": "Continue its efforts to ensure a quality education for every citizen of Dominica and especially for the most disadvantaged children ", - "values": [ - "Right to education", - "Rights of the Child" - ] - }, - { - "text": "Follow up on the recommendation of the Committee on the Elimination of Discrimination against Women in order to strengthen its national system relating to women's rights ", - "values": [ - "Treaty bodies", - "Women's rights" - ] - }, - { - "text": "Ratify the Rome Statute of the International Criminal Court, OP-CAT and the ILO Conventions that it has not ratified to date", - "values": [ - "Detention", - "International instruments", - "Justice", - "Labour", - "Torture and other CID treatment" - ] - }, - { - "text": "Amend the Penal Code to criminalize all forms of sexual abuse of children regardless of the sex of the child, as currently not all forms of sexual abuse against boys are criminalized", - "values": [ - "Rights of the Child" - ] - }, - { - "text": "Continue setting good practices like pension schemes for the elderly and the disabled", - "values": [ - "Disabilities" - ] - }, - { - "text": "Take further measures for the promotion of gender equality and women's rights, ensuring women's participation and gender responsiveness within the policies of the Government and other agencies", - "values": [ - "Women's rights" - ] - }, - { - "text": "Organize awareness-raising campaigns at the national level, and especially in rural areas, aimed at preventing violence against children at home and in all institutions in which children are present ", - "values": [ - "Human rights education and training", - "Rights of the Child" - ] - }, - { - "text": "Continue to provide human rights training to law enforcement officials and ensure accountability of those who commit human rights violations and criminal offenses", - "values": [ - "Human rights education and training", - "Human rights violations by state agents" - ] - }, - { - "text": "Follow through and expand on already established programmes to protect children ", - "values": [ - "Rights of the Child" - ] - }, - { - "text": "Continue strengthening the protection and promotion of the right of all citizens to publicly express their beliefs and opinions", - "values": [ - "Freedom of opinion and expression", - "Freedom of religion and belief" - ] - }, - { - "text": "Guarantee the right to the protection of privacy to all persons and take measures to ensure equality and non-discrimination on all grounds, including sexual orientation, in conformity with articles 17 (1) and 26 of the ICCPR, by revising article 338 of its Penal Code, which criminalizes sexual acts between consenting adults of the same sex ", - "values": [ - "International instruments", - "Privacy", - "Sexual Orientation and Gender Identity" - ] - }, - { - "text": "Establish an independent judiciary free from control of the Executive with impartial prosecutions in all cases", - "values": [ - "Justice" - ] - }, - { - "text": "Increase efforts to investigate and prosecute alleged trafficking offenders, and adopt legislation that will expand New Zealand's current anti-trafficking legal framework to prohibit and adequately punish all forms of human trafficking ", - "values": [ - "Trafficking" - ] - }, - { - "text": "Enhance efforts aimed to achieve additional progress in the process of promoting economic, social and cultural rights, especially the rights of women, children and people with disabilities ", - "values": [ - "Disabilities", - "ESC rights - general", - "Rights of the Child", - "Women's rights" - ] - }, - { - "text": "Investigate, prosecute and punish all hate crimes against minorities", - "values": [ - "Minorities" - ] - }, - { - "text": "Consider withdrawing its reservations to the International Convention on the Protection of the Rights of All Migrant Workers and Members of Their Families ", - "values": [ - "International instruments", - "Labour", - "Migrants" - ] - }, - { - "text": "Repeal all provisions criminalizing sexual activity between consenting adults and ensuring the same rights for same sex couples as heterosexual couples ", - "values": [ - "Sexual Orientation and Gender Identity" - ] - }, - { - "text": "In line with international standards, deem torture to be a crime that is not subject to any limitation, and strengthen the capacity for independent investigations into acts of torture ", - "values": [ - "Torture and other CID treatment" - ] - }, - { - "text": "Take into account the recommendation of the Committee on the Elimination of Discrimination against Women to adequately address the situation of migrant and refugee women in the labour market ", - "values": [ - "Asylum-seekers - refugees", - "Labour", - "Migrants", - "Treaty bodies", - "Women's rights" - ] - }, - { - "text": "Ensure proper registration of all boys and girls born in China in order to protect their rights to legal personality and equality before the law", - "values": [ - "Rights of the Child" - ] - }, - { - "text": "Consider becoming a party to the Optional Protocol to the International Covenant on Economic, Social and Cultural Rights (OP-ICESCR) ", - "values": [ - "ESC rights - general", - "International instruments" - ] - }, - { - "text": "Step up efforts aimed at effectively preventing violence against women, including rape, domestic violence and sexual harassment", - "values": [ - "Women's rights" - ] - }, - { - "text": "Conduct a review to examine the ethnic balance in government and develop diversification strategies to comply with the tenets set forth in its ethnic federalism policies ", - "values": [ - "Minorities" - ] - }, - { - "text": "Repeal or amend laws used to suppress peaceful political dissent and freedom of expression, association and assembly, including by granting those fundamental rights to the new members of Parliament ", - "values": [ - "Freedom of association and peaceful assembly", - "Freedom of opinion and expression" - ] - }, - { - "text": "Take further measures to better protect the rights of women, children, and persons with disabilities and older persons ", - "values": [ - "Disabilities", - "Rights of the Child", - "Women's rights" - ] - }, - { - "text": "Allocate the necessary resources to the fight against discrimination on the basis of gender and sexual orientation, so as to accelerate progress on this matter", - "values": [ - "Sexual Orientation and Gender Identity" - ] - }, - { - "text": "Take measures to ensure a proper legal framework for the Affirmative Action Policy", - "values": [ - "Women's rights" - ] - }, - { - "text": "Step up implementation of legal and institutional measures aimed at addressing the reported increase of domestic violence against women and children ", - "values": [ - "Rights of the Child", - "Women's rights" - ] - }, - { - "text": "Develop policies and programmes to provide women with equal opportunities in the labour market, education and political and public representation, and take all necessary measures to guarantee the effective implementation of gender equality legislation, including by providing the Commissioner for Gender Equality and Equal Treatment with adequate resources ", - "values": [ - "Women's rights" - ] - }, - { - "text": "Take measures to guarantee freedom of religion", - "values": [ - "Freedom of religion and belief" - ] - }, - { - "text": "Establish and implement an immediate moratorium on the imposition and execution of the death penalty", - "values": [ - "Death penalty" - ] - }, - { - "text": "End the use of life imprisonment without parole for offenders under the age of 18 at the age of crime, regardless of the nature of that crime", - "values": [ - "Detention" - ] - }, - { - "text": "Vigorously pursue prosecutions under its new anti-trafficking legislation and ensure that responsible government institutions are adequately resourced to provide timely and effective follow-up on specific cases ", - "values": [ - "Trafficking" - ] - }, - { - "text": "Coordinate with all donors and civil society organizations on issues of mutual concern, including improvements in prison conditions and strengthening of the health system for HIV/AIDS sufferers and other patients to promote access to quality health care for all Mozambicans ", - "values": [ - "Detention", - "HIV - Aids", - "Right to health" - ] - }, - { - "text": "Ensure that all ethnic groups are treated equally and have equal access to social services, including health and education", - "values": [ - "ESC rights - general", - "Minorities", - "Right to education", - "Right to health" - ] - }, - { - "text": "Respect the human rights of all individuals, including homosexuals, by de-penalizing homosexuality", - "values": [ - "Sexual Orientation and Gender Identity" - ] - }, - { - "text": "Consider ratifying the International Covenant on Civil and Political Rights and the International Covenant on Economic, Social and Cultural Rights, which are key instruments for the promotion and protection of a number of other fundamental rights", - "values": [ - "CP rights - general", - "ESC rights - general", - "International instruments" - ] - }, - { - "text": "Establish mechanisms for the identification of victims of trafficking as well as referral mechanisms and provide temporary residence permits, protection and support to all victims of trafficking ", - "values": [ - "Trafficking" - ] - }, - { - "text": "In addition to building new prisons and holding centres, consider non-custodial ways of addressing the issue of mothers in detention or imprisonment, during both pre-trial and post-sentence periods, particularly when mothers are foreigners or illegal residents.", - "values": [ - "Detention", - "Women's rights" - ] - }, - { - "text": "Increase criminal liability for sexual exploitation of children ", - "values": [ - "Rights of the Child" - ] - }, - { - "text": "Take action in order to end extrajudicial killings of persons on the basis of their sexual orientation", - "values": [ - "Extrajudicial executions", - "Sexual Orientation and Gender Identity" - ] - }, - { - "text": "Prohibit legally female genital mutilation, as previously recommended", - "values": [ - "Rights of the Child", - "Torture and other CID treatment", - "UPR process", - "Women's rights" - ] - }, - { - "text": "Strengthen the federal council to combat human trafficking and exploitation and put in place a national trafficking plan", - "values": [ - "Trafficking" - ] - }, - { - "text": "Improve measures to ensure the timely detection and investigation of cases of police abuse ", - "values": [ - "Human rights violations by state agents" - ] - }, - { - "text": "Improve the detention conditions of minor offenders, including better protection against institutional violence, and promote access to education and rehabilitation programmes to ensure future reintegration in society and full respect of their rights", - "values": [ - "Detention", - "Right to education", - "Rights of the Child" - ] - }, - { - "text": "Review the system of preventative detention with regard to juveniles and adopt alternative measures in conformity with recommendations of United Nations treaty bodies ", - "values": [ - "Detention", - "Rights of the Child", - "Treaty bodies" - ] - }, - { - "text": "Ensure that racial discrimination does not take place by including the criterion of race in the law against discrimination to ensure that victims of such discrimination, especially migrants, are covered ", - "values": [ - "Migrants", - "Racial discrimination" - ] - }, - { - "text": "Include sexual orientation and gender identity among the prohibited grounds of discrimination and repeal the provisions criminalizing homosexual relations between consenting adults", - "values": [ - "Sexual Orientation and Gender Identity" - ] - }, - { - "text": "Give priority attention to addressing the challenges faced by the national judicial system, including implementing the zero tolerance policy for perpetrators of violations of international human rights and humanitarian laws in the Democratic Republic of the Congo ", - "values": [ - "International instruments", - "Justice" - ] - }, - { - "text": "With international cooperation and technical assistance, continue strengthening its education policy with a view to provide a comprehensive education that responds to the needs of its people, as the only means to advance towards full development, in conditions that guarantee full equality and the inclusion of the most vulnerable sectors of the population", - "values": [ - "Right to education", - "Technical assistance and cooperation" - ] - }, - { - "text": "Continue to develop its National Safe School Framework to provide a safe environment for students to receive a good education that is free from harassment, aggression and bullying", - "values": [ - "Right to education" - ] - }, - { - "text": "That no refugees should be forcibly returned to Somalia when conditions for their safe reestablishment are not present", - "values": [ - "Asylum-seekers - refugees" - ] - }, - { - "text": "Combat impunity by increasing the capacity of investigators and prosecutors and reducing corruption in the public sector and judiciary", - "values": [ - "Corruption", - "Impunity" - ] - }, - { - "text": "Redouble efforts to combat all forms of sexual violence against women, fully implementing the Sexual Offences Act", - "values": [ - "Women's rights" - ] - }, - { - "text": "Include human rights education in curricula in educational institutions", - "values": [ - "Right to education" - ] - }, - { - "text": "Decriminalize same sex activity between consenting adults and adopt further measures to promote tolerance in this regard", - "values": [ - "Sexual Orientation and Gender Identity" - ] - }, - { - "text": "Train the police with regard to domestic and sexual violence against women ", - "values": [ - "Human rights education and training", - "Women's rights" - ] - }, - { - "text": "Exert additional efforts in the field of providing care for persons with disabilities and in establishing national mechanisms to enable them to effectively participate in public life, while considering accession to the Convention on the Rights of Persons with Disabilities ", - "values": [ - "Disabilities", - "International instruments" - ] - }, - { - "text": "Repeal or amend the section of the Penal Code which provides for criminal sanctions against carnal intercourse against the order of nature and may thus be applied to criminalize sexual activity between consenting adults, so as to ensure that it does not discriminate against lesbians, gays, bisexuals and transsexuals ", - "values": [ - "Sexual Orientation and Gender Identity" - ] - }, - { - "text": "Consider the possibility- speed up the process of ratifying the Optional Protocol to the Convention on the Rights of the Child on the sale of children, child prostitution and child pornography", - "values": [ - "International instruments", - "Rights of the Child", - "Trafficking" - ] - }, - { - "text": "Effectively implement the National Strategy for the Inclusion of Roma", - "values": [ - "Minorities" - ] - }, - { - "text": "Support the activities of human rights defenders and independent non- governmental organizations in the promotion of human rights and democracy, including through positive public recognition of their role ", - "values": [ - "Civil society", - "Human rights defenders" - ] - }, - { - "text": "Ensure that the administrative procedures and legislative provisions on citizenship do not put at a disadvantage persons of non-Croat ethnic origin ", - "values": [ - "Racial discrimination", - "Statelessness and the right to nationality" - ] - }, - { - "text": "Continue the full implementation of the National Plan for Good Living 2009-2013 ", - "values": [ - "Other" - ] - }, - { - "text": "Ensure that the laws relating to the Truth and Reconciliation Commission, as well as to the Commission on Disappearances are in line with international standards ", - "values": [ - "Justice" - ] - }, - { - "text": "Increase efforts to combat all forms of human trafficking ", - "values": [ - "Trafficking" - ] - }, - { - "text": "Establish a special unit for the protection of children's rights", - "values": [ - "Rights of the Child" - ] - }, - { - "text": "Take all necessary measures to prevent any kind of reappearance of Nazism in order to eradicate the root cause of all racially motivated criminal acts", - "values": [ - "Racial discrimination" - ] - }, - { - "text": "Pursue efforts towards a solid democratic culture, particularly the participation of women in political life and in senior civil service posts", - "values": [ - "Women's rights" - ] - }, - { - "text": "Undertake effective measures to ensure the accessibility of legal and judicial services to persons in rural and remote areas ", - "values": [ - "Justice" - ] - }, - { - "text": "Strengthen its efforts to meet the challenge of sustaining and improving the standard of living of the people and employment opportunities in rural areas ", - "values": [ - "Development", - "Poverty" - ] - }, - { - "text": "Proceed with the formal abolition of the death penalty and sign and ratify the Second Optional Protocol to the International Covenant on Civil and Political Rights ", - "values": [ - "Death penalty", - "International instruments" - ] - }, - { - "text": "Enhance the process of ratification of the Optional Protocol to the Convention against Torture ", - "values": [ - "Detention", - "International instruments", - "Torture and other CID treatment" - ] - }, - { - "text": "Take further steps towards the total abolition of the death penalty and, as a matter of priority, sign and ratify the Second Optional Protocol to the International Covenant on Civil and Political Rights ", - "values": [ - "Death penalty", - "International instruments" - ] - }, - { - "text": "Recognize and ensure in the legislation the right of national minorities to receive information in the State and municipal sectors in their national/mother language in the places of their compact residence ", - "values": [ - "Minorities" - ] - }, - { - "text": "Take effective legal and practical measures to eliminate all forms of discrimination and violence against women and children, in particular women and children with disabilities, immigrant and refugee women and children, and women and children from ethnic and religious minorities, especially Muslims and Roma ", - "values": [ - "Rights of the Child", - "Women's rights" - ] - }, - { - "text": "Adopt measures to guarantee the full independence and impartiality of the National Human Rights Commission, ensure that its members nomination process is transparent and subject to independent oversight and make the Commission's findings publicly available", - "values": [ - "National Human Rights Institution" - ] - }, - { - "text": "Fully ensure gender equality in labour recruitment and appointments to political posts", - "values": [ - "Women's rights" - ] - }, - { - "text": "Continue its socio-economic development plans and take targeted measures to ensure active participation of women in the labour market.", - "values": [ - "Labour", - "Women's rights" - ] - }, - { - "text": "Ensure public and transparent proceedings in cases concerning violations of the lèse-majesté legislation and the 2007 Computer Crimes Act ", - "values": [ - "Freedom of opinion and expression" - ] - }, - { - "text": "Continue to consider ratifying the International Convention for the Protection of All Persons from Enforced Disappearance ", - "values": [ - "Enforced disappearances", - "International instruments" - ] - }, - { - "text": "Raise the age of completion of compulsory schooling, with a view to properly address the issue of child labour, and ensure that primary education is free of charge for everyone", - "values": [ - "Labour", - "Right to education", - "Rights of the Child" - ] - }, - { - "text": "That a comprehensive prevention strategy together with adequate legislation be introduced to combat the high incidence of sexual and gender-based violence", - "values": [ - "Women's rights" - ] - }, - { - "text": "Address the high level of female genital mutilation and early marriage through more concerted efforts, involving local levels", - "values": [ - "Rights of the Child", - "Torture and other CID treatment", - "Women's rights" - ] - }, - { - "text": "Take measures to protect journalists, including through the effective investigation of attacks on members of the profession.", - "values": [ - "Freedom of the press" - ] - }, - { - "text": "End censorship of the media and ensure full freedom of expression ", - "values": [ - "Freedom of opinion and expression" - ] - }, - { - "text": "Continue efforts in strengthening national human rights mechanisms", - "values": [ - "General" - ] - }, - { - "text": "Revise legislative provisions that legalize abuse, persecution, sexual violence and arrest of LGBTI persons", - "values": [ - "Sexual Orientation and Gender Identity" - ] - }, - { - "text": "Comply with the judgements of the European Court of Human Rights concerning violations of human rights in the areas of Cyprus that are under effective control of Turkey", - "values": [ - "International instruments" - ] - }, - { - "text": "Pursue constitutional reforms with a view to elaborate coherent criminal legislation at federal level", - "values": [ - "Justice" - ] - }, - { - "text": "Launch a campaign to raise public awareness on the issue of trafficking in persons", - "values": [ - "Trafficking" - ] - }, - { - "text": "Undertake adequate steps concerning the property claims of persons from Bulgarian identity from eastern Thrace as previously recommended", - "values": [ - "Minorities", - "UPR process" - ] - }, - { - "text": "Continue its efforts aimed at enforcing and improving the quality of the educational system with a view to ensuring that the young generation would receive the best opportunities for education and training ", - "values": [ - "Right to education" - ] - }, - { - "text": "Take the steps necessary to harmonize other legislation with the Gender Law in order to ensure women's access and participation in decision-making bodies", - "values": [ - "Women's rights" - ] - }, - { - "text": "Take concrete measures to ensure governing authorities are representative of all Somalis including women and minority groups", - "values": [ - "Minorities", - "Women's rights" - ] - }, - { - "text": "Enact necessary legislation to prevent, suppress and eliminate discrimination against women and to combat domestic violence and ensure its effective enforcement to provide all requisite protection.", - "values": [ - "Women's rights" - ] - }, - { - "text": "Take the measures necessary to ensure respect for freedom of opinion, expression and assembly, as well as freedom of the press", - "values": [ - "Freedom of association and peaceful assembly", - "Freedom of opinion and expression", - "Freedom of the press" - ] - }, - { - "text": "Continue adopting measures to eliminate discrimination, particularly gender-based discrimination ", - "values": [ - "Women's rights" - ] - }, - { - "text": "Consider incorporating into its national legislation the specific crime of torture, reflecting fully the definition of torture in article 1 of the Convention against Torture and Other Cruel Inhuman or Degrading Treatment or Punishment, so that the grave nature of this crime is thus clearly visible and discernible from other crimes ", - "values": [ - "International instruments", - "Torture and other CID treatment" - ] - }, - { - "text": "Consider ratifying the Optional Protocol to the Convention on the Rights of Persons with Disabilities", - "values": [ - "Disabilities", - "International instruments" - ] - }, - { - "text": "Finalize the process for the ratification of the International Convention on the Protection of the Rights of All Migrant Workers and Members of Their Families, as it committed to do, and create the necessary conditions to ensure the correct functioning and independence of the national Human Rights Commission", - "values": [ - "International instruments", - "Labour", - "Migrants", - "National Human Rights Institution" - ] - }, - { - "text": "Bolster the National Human Rights Commission to enable it to carry out its mandate ", - "values": [ - "National Human Rights Institution" - ] - }, - { - "text": "Enact legislation that explicitly prohibits corporal punishment of children in the home ", - "values": [ - "Rights of the Child", - "Torture and other CID treatment" - ] - }, - { - "text": "The Philippine Government commits itself to the continuing transformation of its security sector into one that is compliant with human rights, international humanitarian law (IHL), and the rule of law. Along this direction, the Government ensures that members of the security forces are continuously trained on human rights and IHL, specifically in their responsibility to protect human rights and the rights of human rights defenders. These responsibilities and obligations are embodied in the Armed Forces of the Philippines' Internal Peace and Security Plan, also known as Bayanihan (Cooperation).", - "values": [ - "Human rights defenders", - "Human rights education and training", - "International humanitarian law", - "Justice", - "Public security" - ] - }, - { - "text": "Continue the implementation of the national plan on "Women, Peace and Security", in the context of the implementation of Security Council Resolution 1325 pertaining to the protection of women against violence in conflict and post-conflict situations as well as the simplification of the procedures for naturalization and their integration into society", - "values": [ - "Women's rights" - ] - }, - { - "text": "Respond favourably to all outstanding requests for visits by the Special proceduress and consider issuing a standing invitation to the Special proceduress, as recommended previously ", - "values": [ - "Special procedures", - "UPR process" - ] - }, - { - "text": "Accelerate its ratification process of the Optional Protocol to the International Covenant on Economic, Social and Cultural Rights", - "values": [ - "ESC rights - general", - "International instruments" - ] - }, - { - "text": "Make further efforts to raise awareness on gender equality and to combat discrimination against women ", - "values": [ - "Women's rights" - ] - }, - { - "text": "Organise visits of the Special Rapporteur on contemporary forms of racism, the Special Rapporteur on torture, Special Rapporteur on human rights of migrants, Special Rapporteur on trafficking in human beings to the country", - "values": [ - "Migrants", - "Racial discrimination", - "Special procedures", - "Torture and other CID treatment", - "Trafficking" - ] - }, - { - "text": "Abolish the procedure whereby all children must undertake the final year of schooling in a military training camp and fully respect the Optional Protocol to the Convention on the Rights of the Child on the involvement of children in armed conflict ", - "values": [ - "International humanitarian law", - "International instruments", - "Rights of the Child" - ] - }, - { - "text": "Consider ratifying the International Convention for the Protection of All Persons from Enforced Disappearance (CED)", - "values": [ - "Enforced disappearances", - "International instruments" - ] - }, - { - "text": "Take into account the concerns of the Special Rapporteur on violence against women regarding the absence of an agency in charge of gathering information on violence against women, particularly regarding homicides in the context of family violence. ", - "values": [ - "Special procedures", - "Women's rights" - ] - }, - { - "text": "Continue improving women's empowerment programmes and address issues of discrimination and domestic violence by intensifying awareness-raising campaigns and providing better access to remedies for all victims of domestic violence, including migrant workers irrespective of their legal status", - "values": [ - "Human rights education and training", - "Migrants", - "Women's rights" - ] - }, - { - "text": "Take further measures to combat discrimination against minorities, and ensure that they are genuinely put into practice in the field ", - "values": [ - "Minorities" - ] - }, - { - "text": "Double efforts towards gender equality and the empowerment of women through education and skills training", - "values": [ - "Right to education", - "Women's rights" - ] - }, - { - "text": "Continue to promote initiatives in defence of international solidarity and equality dialogue at the relevant United Nations organs, with a view to promoting human rights and solidarity among all nations and peoples of goodwill", - "values": [ - "Other" - ] - }, - { - "text": "Promptly create a national mechanism for the prevention of torture with access to all places of deprivation of liberty ", - "values": [ - "Detention", - "Torture and other CID treatment" - ] - }, - { - "text": "That the Government of Slovakia work to raise awareness amongst vulnerable communities of the dangers of human exploitation and to ensure these communities receive adequate support ", - "values": [ - "Human rights education and training" - ] - }, - { - "text": "Pass a law to criminalize violence against women explicitly", - "values": [ - "Women's rights" - ] - }, - { - "text": "Develop support measures for women victims of sexual abuse committed during the war", - "values": [ - "Women's rights" - ] - }, - { - "text": "Strengthen measures to reinforce existing mechanisms on combating all forms of discrimination, particularly racial discrimination, including by adopting a specific law prohibiting incitement to hatred based on racial and religious motives, in accordance with article 20, paragraph 2, of the International Covenant on Civil and Political Rights ", - "values": [ - "International instruments", - "Racial discrimination" - ] - }, - { - "text": "Implement and enforce the domestic violence law of 2013 as well as strengthen the protection and promotion of women's rights through legislative and policy measures and by addressing social and cultural attitudes and practices", - "values": [ - "Rights of the Child", - "Women's rights" - ] - }, - { - "text": "Extend a standing invitation to the United Nations Special Procedures", - "values": [ - "Special procedures" - ] - }, - { - "text": "Accelerate efforts in increasing female representation in top positions in the senior public service to 25 per cent by 2011.", - "values": [ - "Women's rights" - ] - }, - { - "text": "Continue to work with OHCHR and the Office of the United Nations High Commissioner for Refugees to re-establish the humanitarian aid programme for the Western Saharan population", - "values": [ - "Asylum-seekers - refugees" - ] - }, - { - "text": "Continue its efforts to improve the enjoyment of human rights and to raise the living standards of its people", - "values": [ - "General" - ] - }, - { - "text": "Persevere in its praiseworthy efforts to promote women's rights, continue to attach high levels of importance to the human rights culture and pursue its dissemination among young generations within the framework of educational programmes.", - "values": [ - "Human rights education and training", - "Women's rights" - ] - }, - { - "text": "Investigate and prosecute any attacks on - or false allegations in relation to - human rights defenders, in particular those working with communities to protect land, houses and access to natural resources and prevent forced displacement, an issue that has been reported on by the Special Rapporteur and the Committee on Economic, Social and Cultural Rights ", - "values": [ - "Human rights defenders", - "Special procedures" - ] - }, - { - "text": "Push ahead with the reform of the prison system. ", - "values": [ - "Detention" - ] - }, - { - "text": "That measures be taken to eradicate all forms of torture and illtreatment of detainees by military or civilian personnel, in any territory of jurisdiction, and that any such acts be thoroughly investigated", - "values": [ - "Detention", - "Human rights violations by state agents", - "International humanitarian law", - "Torture and other CID treatment" - ] - }, - { - "text": "Identify its needs in terms of technical and financial assistance as well as capacity-building, and seek accordingly the requisite assistance from the relevant organizations ", - "values": [ - "Technical assistance and cooperation" - ] - }, - { - "text": "Continue to update and develop strategies to combat discrimination against women", - "values": [ - "Women's rights" - ] - }, - { - "text": "Adopt legislation to protect persons with physical disabilities to guarantee their well-being and their possible rehabilitation, without any kind of discrimination", - "values": [ - "Disabilities" - ] - }, - { - "text": "Continue to seriously consider setting up a national human rights institution ", - "values": [ - "National Human Rights Institution" - ] - }, - { - "text": "Take measures to eliminate discrimination and xenophobia and to combat the root causes of racial discrimination", - "values": [ - "Racial discrimination" - ] - }, - { - "text": "Undertake an awareness raising campaign about the practice of FGM, as encouraged by the National Consultative Forum", - "values": [ - "Human rights education and training", - "Rights of the Child", - "Torture and other CID treatment", - "Women's rights" - ] - }, - { - "text": "While recognizing the adoption of the National Human Rights Action Plan, and within the context of its implementation, implement awareness- raising campaigns and promote respect of human rights", - "values": [ - "Human rights education and training" - ] - }, - { - "text": "Conduct prompt, impartial and effective investigations into cases of extrajudicial executions and prosecute those responsible ", - "values": [ - "Extrajudicial executions" - ] - }, - { - "text": "Impose an immediate de jure moratorium on executions, with a view to the complete abolition of the death penalty for all crimes", - "values": [ - "Death penalty" - ] - }, - { - "text": "Ratify the Optional Protocol to the Convention against Torture and establish its national preventive mechanism accordingly", - "values": [ - "Detention", - "International instruments", - "Torture and other CID treatment", - "Treaty bodies" - ] - }, - { - "text": "Fully implement the Anti-Trafficking Act No. 11 of 2008", - "values": [ - "Trafficking" - ] - }, - { - "text": "Improve prevention, detection, investigation, prosecution and punishment of those responsible for offences covered under the OP-CRC-SC, including through cooperation with neighbouring countries", - "values": [ - "International instruments", - "Rights of the Child", - "Trafficking" - ] - }, - { - "text": "Introduce gender as an issue in the school curriculum in order to combat stereotypes and cultural factors to inequality ", - "values": [ - "Right to education", - "Women's rights" - ] - }, - { - "text": "Speed up the process of ratifying the Second Optional Protocol to the International Covenant on Civil and Political Rights, aiming at the abolition of the death penalty", - "values": [ - "Death penalty", - "International instruments" - ] - }, - { - "text": "Increase the measures aimed at eliminating corruption in the mechanisms for the processing of residence and work permits for citizens of non-European Union member States ", - "values": [ - "Corruption" - ] - }, - { - "text": "Ensure that women and girls who are victims of rape and other forms of violence benefit from the medical assistance and the psychological support that they need", - "values": [ - "Rights of the Child", - "Women's rights" - ] - }, - { - "text": "Strengthen its efforts in making all forms of sexual violence against women and girls, including marital rape, criminal offences", - "values": [ - "Rights of the Child", - "Women's rights" - ] - }, - { - "text": "Continue to strengthen the general concept recognizing social and ethnic diversity in Thai society and protect fundamental rights ", - "values": [ - "Minorities" - ] - }, - { - "text": "Continue to reinforce policies aimed at improving enrolment rates at primary and secondary schools", - "values": [ - "Right to education" - ] - }, - { - "text": "Revise the Constitution, in accordance with the Convention on the Rights of Persons with Disabilities, to avoid the rejection of naturalization for individuals on the grounds of physical or mental disability ", - "values": [ - "Disabilities", - "International instruments", - "Statelessness and the right to nationality" - ] - }, - { - "text": "Continue efforts in the prevention of violence against children", - "values": [ - "Rights of the Child" - ] - }, - { - "text": "Continue its efforts to harmonize national laws with international treaties ", - "values": [ - "International instruments" - ] - }, - { - "text": "Acknowledge-recognize, accept and fully implement the advisory opinion of the International Court of Justice on the wall.", - "values": [ - "Freedom of movement", - "International instruments" - ] - }, - { - "text": "Continue to increase inputs in education so as to improve the quality and coverage of the education system", - "values": [ - "Right to education" - ] - }, - { - "text": "Put an end to cases of politically-motivated persecution of human rights defenders who advocate for the rights of minorities or the closure or suspension of mass media and restrictions on access to various sources of information for the population", - "values": [ - "Freedom of the press", - "Human rights defenders", - "Minorities" - ] - }, - { - "text": "Avoid the practice of the school segregation of Roma children, for example with primary school teachers, who are speaking their mother tongue, with the objective of achieving an effective learning of the Bulgarian language and other subjects taught", - "values": [ - "Minorities", - "Right to education", - "Rights of the Child" - ] - }, - { - "text": "Speed up the process of ratifying the Optional Protocol to the Convention on the Rights of the Child on the involvement of children in armed conflict", - "values": [ - "International humanitarian law", - "International instruments", - "Rights of the Child" - ] - }, - { - "text": "Intensify its efforts to promote inclusive growth, especially in the rural and mountainous areas", - "values": [ - "Development" - ] - }, - { - "text": "Take positive measures to further reduce infant mortality rates and maternal mortality rates ", - "values": [ - "Right to health", - "Women's rights" - ] - }, - { - "text": "Strengthen national and local policies and measures to protect migrants, especially foreign workers ", - "values": [ - "Labour", - "Migrants" - ] - }, - { - "text": "Take measures to ensure equal access of women to higher education and professional life, including by repealing the restrictions on female students and by lifting bans on women in certain professions", - "values": [ - "Women's rights" - ] - }, - { - "text": "Consider promoting and strengthening vocational education and training opportunities to reduce the high number of school dropouts ", - "values": [ - "Right to education" - ] - }, - { - "text": "Intensify efforts for the effective and rapid social and educational reintegration of child soldiers who remain in military camps ", - "values": [ - "International humanitarian law", - "Rights of the Child" - ] - }, - { - "text": "Continue efforts to recognize decent work, to reduce structural underemployment and gradually expand the purchasing power of labour income, in the context of strengthening the social and solidarity-based economic system", - "values": [ - "Labour" - ] - }, - { - "text": "Ensure that the new Civil and Commercial Code does not allow for deprivation of legal capacity of persons with disabilities", - "values": [ - "Disabilities" - ] - }, - { - "text": "Consider accession to the Optional Protocol to the Convention on the Rights of the Child on the sale of children", - "values": [ - "International instruments", - "Rights of the Child", - "Trafficking" - ] - }, - { - "text": "Designate a new Ombudsman as soon as possible", - "values": [ - "National Human Rights Institution" - ] - }, - { - "text": "Continue to provide greater human rights and anti-discrimination training to law enforcement personnel and include measures to address racism in the National Action Plan for Integration", - "values": [ - "Human rights education and training", - "Racial discrimination" - ] - }, - { - "text": "Continue to strengthen its social policies in order to provide the greatest possible well-being to its people, especially to the most vulnerable sectors", - "values": [ - "ESC rights - general" - ] - }, - { - "text": "Amend the Labour Code to extend legal protection to domestic workers equal to that afforded to other workers and reform the visa sponsorship system so that workers can terminate employment without sponsor consent", - "values": [ - "Labour", - "Migrants" - ] - }, - { - "text": "Consider accession to the International Convention on the Protection of the Rights of All Migrant Workers and Member of Their Families", - "values": [ - "International instruments", - "Labour", - "Migrants" - ] - }, - { - "text": "Take concrete measures to eliminate racial criteria in the approach of the law enforcement officials and combat the excessive use of force by the same officers", - "values": [ - "Human rights violations by state agents", - "Racial discrimination" - ] - }, - { - "text": "Accede to the statute of the International Criminal Court and ratify the Additional Protocols to the Geneva Conventions", - "values": [ - "International instruments", - "Justice" - ] - }, - { - "text": "Implement laws which facilitate access to justice for women in detention, as well as allow women to inherit land and acquire property", - "values": [ - "Detention", - "Right to housing", - "Right to land", - "Women's rights" - ] - }, - { - "text": "Implement its decision on the establishment of a Constitutional Court", - "values": [ - "Justice" - ] - }, - { - "text": "Consider the possibility of adopting further measures for the integral attention and reparation of victims and land restitution, aiming to attend and redress the victims of violence", - "values": [ - "Right to land" - ] - }, - { - "text": "Continue efforts to prevent and eliminate all forms of violence against women", - "values": [ - "Women's rights" - ] - }, - { - "text": "Increase the number of magistrates to alleviate court proceedings, and take measures regarding their election to ensure their independence", - "values": [ - "Justice" - ] - }, - { - "text": "Continue its experimental programme on access to mother tongue education for children belonging to minority groups", - "values": [ - "Minorities", - "Rights of the Child" - ] - }, - { - "text": "Raise awareness about the Law on Reproductive Health and strengthen education efforts in this area, ensure that perpetrators of female genital mutilation are prosecuted, address the health consequences of female genital mutilation and provide medical support to victims ", - "values": [ - "Right to health", - "Rights of the Child", - "Torture and other CID treatment", - "Women's rights" - ] - }, - { - "text": "Continue with enlightened initiatives such as the Yes I Can literacy programme in diverse national, regional, and local realities, a programme aimed at implementing the right to education, broaden the scope of its cooperation in sharing and replicating its home-grown methods of combating illiteracy and the Operation Miracle in the field of health", - "values": [ - "Right to education" - ] - }, - { - "text": "Adopt a policy and an action plan at the federal level to combat discrimination and violence against lesbian, gay, bisexual, transgender and intersex persons, and in particular include them in national surveys on suicides", - "values": [ - "Sexual Orientation and Gender Identity" - ] - }, - { - "text": "Step up its ongoing efforts regarding the birth registration of all children", - "values": [ - "Rights of the Child", - "Statelessness and the right to nationality" - ] - }, - { - "text": "Strengthen efforts to combat domestic violence and violence against women ", - "values": [ - "Women's rights" - ] - }, - { - "text": "Take steps with regard to children, particularly with regard to sexual exploitation and all forms of discrimination, including children with albinism", - "values": [ - "Minorities", - "Rights of the Child" - ] - }, - { - "text": "Ensure the independence of the branches of government, in particular the electoral and judicial branches, ensure due process and avoid arbitrary arrests", - "values": [ - "Detention", - "Justice" - ] - }, - { - "text": "Hold an independent inquiry into the death in prison of journalist Ogulsapar Muradova in September 2006.", - "values": [ - "Extrajudicial executions" - ] - }, - { - "text": "Intensify its efforts to implement migration regulations", - "values": [ - "Migrants" - ] - }, - { - "text": "Continue developing efforts to guarantee the full exercise of the right to freedom of information and expression, promoting the independence and pluralism of the media, and develop awareness programmes about the importance of this human right ", - "values": [ - "Freedom of opinion and expression", - "Freedom of the press", - "Human rights education and training" - ] - }, - { - "text": "Implement the United Nations Declaration on the Rights of Indigenous Peoples at the federal and state levels ", - "values": [ - "Indigenous peoples", - "International instruments" - ] - }, - { - "text": "Continue to design and implement growth and job creation programmes targeting the most disfavoured of the population", - "values": [ - "Development" - ] - }, - { - "text": "Ensure the prevention and effective investigation of forced disappearances of and violence against women", - "values": [ - "Enforced disappearances", - "Women's rights" - ] - }, - { - "text": "Strengthen the fight against impunity by effectively prosecuting those who have committed human rights violations", - "values": [ - "Impunity" - ] - }, - { - "text": "Rapidly implement all provisions of the Agreement on the Resolution of the Conflict in the Republic of South Sudan, including the justice and reconciliation aspects of the Agreement", - "values": [ - "Justice" - ] - }, - { - "text": "Make every effort to reduce discrimination based on sexual orientation and consider abolishing all legislation which entails constraints to the realization of the rights of the lesbian, gay, bisexual and transgender population, including laws which criminalize sexual relations between consenting adults of the same sex ", - "values": [ - "Sexual Orientation and Gender Identity" - ] - }, - { - "text": "Strengthen the institutional measures in the field of human rights within the framework of the National Action Programme and the Justice Reform Support Programme ", - "values": [ - "Justice" - ] - }, - { - "text": "Continue improving security of citizens and enhancing protection of particularly vulnerable groups such as women and children as well as promoting equality and countering discrimination with a focus on racial or religious discrimination and that of persons with albinism ", - "values": [ - "Freedom of religion and belief", - "Minorities", - "Racial discrimination", - "Rights of the Child", - "Women's rights" - ] - }, - { - "text": "Ensure that continuous efforts are undertaken to develop its human capital through education and training and by empowering vulnerable groups ", - "values": [ - "Right to education" - ] - }, - { - "text": "Accelerate efforts aimed at fully implementing the Development Plan for the Reduction of Violence 2010-2014, with a view to, among others, addressing violence against women ", - "values": [ - "Women's rights" - ] - }, - { - "text": "Incorporate the Convention on the Rights of Persons with Disabilities in the national legislation, and take the necessary measures for them to attain work opportunities", - "values": [ - "Disabilities", - "International instruments" - ] - }, - { - "text": "Step up its measures in the area of promoting the right to education by continuing efforts aimed at improving the quality of education and increasing the coverage of secondary and technical education", - "values": [ - "Right to education" - ] - }, - { - "text": "Put an end to the restrictions on freedom of expression, including arrest of journalists and human rights activists", - "values": [ - "Freedom of opinion and expression", - "Freedom of the press", - "Human rights defenders" - ] - }, - { - "text": "Ensure that the commutation of the death penalty continues to be part of the Constitutional review process ", - "values": [ - "Death penalty" - ] - }, - { - "text": "Take additional measures to fight discrimination against minorities, including the Roma population, as well as homosexuals and persons living with HIV-AIDS.", - "values": [ - "HIV - Aids", - "Minorities", - "Sexual Orientation and Gender Identity" - ] - }, - { - "text": "Reconsider the general reservation on the Convention on the Rights of the Child with the aim of lifting it and fully accede to the three Optional Protocols to CRC", - "values": [ - "International humanitarian law", - "International instruments", - "Rights of the Child", - "Trafficking" - ] - }, - { - "text": "Take measures to fully implement the Constitution of 1997 and ensure the rule of law ", - "values": [ - "Justice" - ] - }, - { - "text": "Ratify the two 1966 Covenants and their Optional Protocols", - "values": [ - "CP rights - general", - "Death penalty", - "ESC rights - general", - "International instruments" - ] - }, - { - "text": "Ratify international human rights standards to which it is not yet a State party ", - "values": [ - "International instruments" - ] - }, - { - "text": "Ensure, in law and in practice, that all detainees are afforded fundamental legal safeguards from the outset", - "values": [ - "Detention" - ] - }, - { - "text": "Release immediately and unconditionally all human rights defenders, student activists and political prisoners, and end ongoing trials of political detainees", - "values": [ - "Detention", - "Freedom of association and peaceful assembly", - "Freedom of opinion and expression", - "Human rights defenders" - ] - }, - { - "text": "Introduce a formal and immediate moratorium on executions as a first step towards the abolition of the death penalty and to commute all death sentences to terms of imprisonment, in line with international human rights standards", - "values": [ - "Death penalty" - ] - }, - { - "text": "Take all necessary measures to eliminate definitely practices of female genital mutilation and child marriages", - "values": [ - "Rights of the Child", - "Torture and other CID treatment", - "Women's rights" - ] - }, - { - "text": "Implement the National Strategic Health Plan in order to ensure that all people, regardless of their socioeconomic status, have access to a basic set of effective, efficient and quality health services", - "values": [ - "Right to health" - ] - }, - { - "text": "Continue applying its commitment to allocate 0.7 per cent of its GDP to official development assistance and encourage its partners in the European Union and OECD to replicate this good practice.", - "values": [ - "Development" - ] - }, - { - "text": "Ensure that appropriate penalties are applied for acts such as female genital mutilation, forced marriages and sexual violence.", - "values": [ - "Rights of the Child", - "Torture and other CID treatment", - "Women's rights" - ] - }, - { - "text": "Continue to take concrete measures in order to eliminate discrimination in labour market faced by persons with immigrant background ", - "values": [ - "Migrants", - "Racial discrimination" - ] - }, - { - "text": "Strengthen its cooperation with Treaty Bodies", - "values": [ - "Treaty bodies" - ] - }, - { - "text": "Take the necessary measures to set the minimum age for marriage at 18 years of age", - "values": [ - "Rights of the Child" - ] - }, - { - "text": "Continue its positive engagement with OHCHR and other United Nations agencies to fully realize the targets that it has set for itself, especially on children and women's rights.", - "values": [ - "Rights of the Child", - "Women's rights" - ] - }, - { - "text": "Continue to strengthen efforts to ensure equality of opportunity and eliminate the gender wage gap", - "values": [ - "Women's rights" - ] - }, - { - "text": "Enact a comprehensive national law prohibiting FGM and continue awareness-raising campaigns to eradicate this scourge", - "values": [ - "Human rights education and training", - "Rights of the Child", - "Torture and other CID treatment", - "Women's rights" - ] - }, - { - "text": "Promptly and impartially investigate all allegations of torture and ill-treatment and strictly hold perpetrators accountable", - "values": [ - "Torture and other CID treatment" - ] - }, - { - "text": "Further strengthen its sound educational policies, in particular in the secondary school", - "values": [ - "Right to education" - ] - }, - { - "text": "Ensure, in areas of compact residence of linguistic minorities, conditions for the unhindered use of the native language and to receive education in the mother tongue. ", - "values": [ - "Minorities", - "Right to education" - ] - }, - { - "text": "Pursue efforts to guarantee safety to persons with albinism and prevent their stigmatization and discrimination in their regard, including the implementation of programmes to sensitize the public opinion", - "values": [ - "Human rights education and training", - "Minorities" - ] - }, - { - "text": "Adopt effective measures to guarantee the protection of victims of gender violence, duly investigate allegations and ensure that those responsible be prosecuted and sanctioned", - "values": [ - "Women's rights" - ] - }, - { - "text": "Continue to work towards informing interested countries about the experience of Bait al-Zakat in the humanitarian field, which aims at reducing the suffering of persons and families in need ", - "values": [ - "Other" - ] - }, - { - "text": "Ensure that the revision of the Constitution is firmly based on human rights and complies with international human rights standards", - "values": [ - "International instruments" - ] - }, - { - "text": "Take effective measures to improve the general situation in prisons and particularly the conditions under which women and children are detained.", - "values": [ - "Detention", - "Rights of the Child", - "Women's rights" - ] - }, - { - "text": "Ratify OP-CAT to establish a national independent mechanism for visiting the detention centres ", - "values": [ - "Detention", - "International instruments", - "Torture and other CID treatment" - ] - }, - { - "text": "Increase the research, collection and analysis of data on the prevalence, causes and consequences of violence against women, including information on the relationship between the perpetrator and the victim in cases of violence as well as the possible causes for the reluctance of victims to lodge complaints", - "values": [ - "Women's rights" - ] - }, - { - "text": "Continue its reform process with all possible financial and technical assistance from the regional and international community and relevant agencies for the political, economic and social uplift of its citizens ", - "values": [ - "ESC rights - general", - "Technical assistance and cooperation" - ] - }, - { - "text": "Submit the overdue reports to the Committee on the Elimination of Discrimination against Women and the Committee on the Rights of the Child at the earliest possible stage", - "values": [ - "Rights of the Child", - "Treaty bodies", - "Women's rights" - ] - }, - { - "text": "Put in place and implement national standards and mechanisms to monitor the quality of education", - "values": [ - "Right to education" - ] - }, - { - "text": "Colombia renews its commitment to prevent the recruitment of children and adolescents by illegal armed groups. ", - "values": [ - "International humanitarian law", - "Rights of the Child" - ] - }, - { - "text": "Adopt an NGO law which should take into account the views of civil society stakeholders and provide an enabling framework for the development of civil society in Saudi Arabia", - "values": [ - "Civil society", - "Freedom of association and peaceful assembly" - ] - }, - { - "text": "Set up measures to facilitate and accelerate the implementation of the law on the elimination of violence against women ", - "values": [ - "Women's rights" - ] - }, - { - "text": "Continue its efforts to solve the problems of indigenous peoples, in particular their land issues, and ensure that the Anti-Terrorism Act (Law 18.314) does not undermine their rights.", - "values": [ - "Indigenous peoples" - ] - }, - { - "text": "Continue the measures undertaken to promote the rights of women, including the on-going work on a draft law on the prevention of and fight against violence against women", - "values": [ - "Women's rights" - ] - }, - { - "text": "Continue to strengthen its legislative and institutional framework for the promotion and protection of human rights", - "values": [ - "General" - ] - }, - { - "text": "Continue its efforts of reform in the criminal justice system, from the police to the courts, through the prison administration", - "values": [ - "Detention", - "Justice" - ] - }, - { - "text": "Ensure compliance with international child labour standards, including ILO Convention 182 on the Elimination of the Worst Forms of Child Labour and collaborate with ILO to that effect and implement the relevant recommendations of the Committee on the Rights of the Child and the Human Rights Committee.", - "values": [ - "International instruments", - "Labour", - "Rights of the Child", - "Treaty bodies" - ] - }, - { - "text": "Take the necessary measures to effectively combat discrimination based on sexual orientation in law as well as practice ", - "values": [ - "Sexual Orientation and Gender Identity" - ] - }, - { - "text": "Renew its respect for the rule of law by observing a strict separation between State and party activities and ensuring an independent judiciary and media", - "values": [ - "Freedom of the press", - "Justice" - ] - }, - { - "text": "Adopt a moratorium on executions, as a first step towards abolition of the death penalty, as previously recommended in the first cycle ", - "values": [ - "Death penalty", - "UPR process" - ] - }, - { - "text": "Expeditiously adopt, implement and monitor policies and programmes aimed at combating the sale of children and sexual exploitation and trafficking", - "values": [ - "Rights of the Child", - "Trafficking" - ] - }, - { - "text": "Continue its efforts in giving due attention to the inter-ethnic issues including by ensuring effective implementation of its Policy Framework on Strengthening National Unity and Inter-Ethnic Relations", - "values": [ - "Minorities" - ] - }, - { - "text": "Take the necessary steps to ratify the International Covenant on Civil and Political Rights and accede to the International Covenant on Economic, Social and Cultural Rights, as accepted during the previous universal periodic review of Nauru", - "values": [ - "CP rights - general", - "ESC rights - general", - "International instruments", - "UPR process" - ] - }, - { - "text": "Ratify or accede to the remaining existing international human rights treaties, especially the Optional Protocol to the Convention on the Rights of the Child on the participation of children in armed conflict, the Optional Protocol to the Convention on the Rights of the Child on the sale of children, child prostitution and child pornography, the International Covenant on Civil and Political Rights and its second Optional Protocol, aiming at the abolition of the death penalty, as well as the Convention against Torture", - "values": [ - "International humanitarian law", - "International instruments" - ] - }, - { - "text": "Continue to increase human rights transparency by improving the access of local and international media organisations, engagement with the Office of the High Commissioner for Human Rights, the International Committee of the Red Cross and other relevant international organizations throughout Indonesia ", - "values": [ - "Freedom of the press", - "Technical assistance and cooperation" - ] - }, - { - "text": "Ensure that after independence, no one will be discriminated against because of their\norigin from the other State, respectively", - "values": [ - "Racial discrimination" - ] - }, - { - "text": "While guaranteeing this freedom of speech, strengthen Internet governance to make sure the contents that incite war, racial hatred or defamation of religions are prohibited, and pornographic websites that are harmful to children and minors are banned or restricted", - "values": [ - "Freedom of opinion and expression", - "Racial discrimination" - ] - }, - { - "text": "Speed up its efforts in reviewing the Statutes of the National Commission of Human Rights with a view to making the Commission fully comply with the Paris Principles", - "values": [ - "National Human Rights Institution" - ] - }, - { - "text": "Continue its efforts to improve the quality of education, including the quality and availability of school facilities, educational materials, teaching staff and curricula, prioritizing the most disadvantaged schools", - "values": [ - "Right to education" - ] - }, - { - "text": "Establish a national plan for universal access to education", - "values": [ - "Right to education" - ] - }, - { - "text": "Finalize the National Gender Policy and its Plan of Action, so as to further promote women's rights and create an enabling environment for women", - "values": [ - "Women's rights" - ] - }, - { - "text": "Cooperate with the United Nations Special Procedures ", - "values": [ - "Special procedures" - ] - }, - { - "text": "Fully respect the human rights of asylum seekers, refugees and migrants and to address intolerance, violence by police officers and discrimination in the areas of employment and housing", - "values": [ - "Asylum-seekers - refugees", - "Human rights violations by state agents", - "Labour", - "Migrants", - "Racial discrimination", - "Right to housing" - ] - }, - { - "text": "Continue promoting the work of the National Commissions for Women and for Dalit, through the reinforcement of resources that allows them to work in an efficient manner ", - "values": [ - "Minorities", - "Women's rights" - ] - }, - { - "text": "Study, with a view to withdraw, its reservation to article 4 of the International Convention on the Elimination of All Forms of Racial Discrimination.", - "values": [ - "International instruments", - "Racial discrimination" - ] - }, - { - "text": "Review policies to ensure that the rights of Roma people in migration camps are fully respected and that they are not unlawfully targeted for removal and that removal orders are subject to a full individual assessment ", - "values": [ - "Migrants", - "Minorities" - ] - }, - { - "text": "Take necessary measures to the effective implementation of the Convention on the Rights of Persons with Disabilities, with due regard to the disabled children experiencing discrimination in accessing mainstream education", - "values": [ - "Disabilities", - "International instruments", - "Right to education", - "Rights of the Child" - ] - }, - { - "text": "Ensure effective implementation of CEDAW at the federal, provincial and territorial levels with particular attention to Aboriginal women and girls ", - "values": [ - "Indigenous peoples", - "International instruments", - "Rights of the Child", - "Women's rights" - ] - }, - { - "text": "Continue to seek technical cooperation and assistance from the international community and such agencies as OHCHR in its promotion and protection of human rights, particularly capacity-building for preparing the national reports under human rights conventions to which it is a party and capacity-building for its human rights officers ", - "values": [ - "Technical assistance and cooperation", - "Treaty bodies" - ] - }, - { - "text": "Remove all penalties for women who seek abortion, and for doctors and other medical personnel involved in providing these services", - "values": [ - "Women's rights" - ] - }, - { - "text": "Establish a supported decision-making framework in relation with people with disabilities", - "values": [ - "Disabilities" - ] - }, - { - "text": "Improve further its non-discrimination legislation by criminalizing hate crimes on the grounds of age, disability, sexual orientation and gender identity, while taking the measures necessary to combat discrimination based on race, sex, nationality, ethnicity, religion or any other grounds", - "values": [ - "Freedom of religion and belief", - "Racial discrimination", - "Sexual Orientation and Gender Identity", - "Women's rights" - ] - }, - { - "text": "Lift de jure and de facto restrictions on political parties to allow for genuine political participation and dialogue ", - "values": [ - "Freedom of association and peaceful assembly" - ] - }, - { - "text": "Introduce a moratorium on the use of death penalty and work towards its abolition, including through ratification of the Second Optional Protocol to the International Convention on Civil and Political Rights", - "values": [ - "Death penalty", - "International instruments" - ] - }, - { - "text": "Introduce measures aimed at the elimination of discrimination against women and the improvement of the implementation of existing laws criminalizing rape and domestic violence, including investigations and prosecutions related to violence against women, and also by strengthening the relevant legal framework", - "values": [ - "Women's rights" - ] - }, - { - "text": "Ensure the establishment of an independent national human rights commission, in line with the Paris Principles, by 2012, as stated in the national report ", - "values": [ - "National Human Rights Institution" - ] - }, - { - "text": "Address discrimination against non-citizens, particularly concerning domestic workers, granting them equal protection and rights as to its own citizens ", - "values": [ - "Labour" - ] - }, - { - "text": "Ratify the International Covenant on Civil and Political Rights and the International Convention on the Elimination of All Forms of Racial Discrimination, signed since 2001, as well as the International Covenant on Economic, Social and Cultural Rights, the International Convention on the Protection of the Rights of All Migrant Workers and Members of their Families and the International Convention for the Protection of All Persons from Enforced Disappearance", - "values": [ - "ESC rights - general", - "Enforced disappearances", - "International instruments", - "Labour", - "Migrants", - "Racial discrimination" - ] - }, - { - "text": "Review and amend the Peaceful Assembly and Peaceful Procession Act to bring it in line with international standards on freedom of expression and assembly", - "values": [ - "Freedom of association and peaceful assembly", - "Freedom of opinion and expression" - ] - }, - { - "text": "Take the necessary measures to adequately implement the national plan for the prevention and eradication of domestic violence and violence against women", - "values": [ - "Rights of the Child", - "Women's rights" - ] - }, - { - "text": "Continue the momentum on the provision of quality goods and services, especially in education and health and in the disadvantaged areas that are difficult to access and those with a high preponderance of minorities.", - "values": [ - "Minorities", - "Right to education", - "Right to health" - ] - }, - { - "text": "Take steps to reform the system for juvenile justice to ensure it is brought into line with international standards set out in CRC ", - "values": [ - "International instruments", - "Justice", - "Rights of the Child" - ] - }, - { - "text": "Ensure thorough and impartial investigations into all allegations of attacks and threats against individuals targeted because of their sexual orientation, as in the case of LGBT individuals, and bring to justice those responsible in accordance with international standards of fair trial ", - "values": [ - "Sexual Orientation and Gender Identity" - ] - }, - { - "text": "To continue to develop domestic legislation for further protection of the rights of the child", - "values": [ - "Rights of the Child" - ] - }, - { - "text": "Increase the efforts to promote adolescent health, particularly with respect to reproductive health in order to combat teenage pregnancy ", - "values": [ - "Right to health", - "Rights of the Child" - ] - }, - { - "text": "Establish an inter-institutional coordination mechanism to promote gender equality and the implementation of the Convention on the Elimination of All Forms of Discrimination against Women", - "values": [ - "International instruments", - "Women's rights" - ] - }, - { - "text": "Make every effort to ensure that schools are safe places for children and that they are free from sexual and physical violence, as recommended by CRC ", - "values": [ - "Rights of the Child", - "Treaty bodies" - ] - }, - { - "text": "Adopt a new Labour Code or amend the existing Code soon, so as to improve the conditions and rights of migrant and foreign workers ", - "values": [ - "Labour", - "Migrants" - ] - }, - { - "text": "Ensure the absence of discrimination between women and men in law and in practice and withdraw all reservations to CEDAW", - "values": [ - "International instruments", - "Women's rights" - ] - }, - { - "text": "Adopt a formalized national referral mechanism defining the roles and procedures of all institutions in the identification of victims of trafficking in human beings ", - "values": [ - "Trafficking" - ] - }, - { - "text": "Ratify without delay the Convention on Preventing and Combating Violence against Women and Domestic Violence", - "values": [ - "International instruments", - "Rights of the Child", - "Women's rights" - ] - }, - { - "text": "Take concrete measures to increase access to education and health for all, particularly for the vulnerable segments of society, including women and children in rural and remote areas.", - "values": [ - "Right to education", - "Right to health", - "Rights of the Child", - "Women's rights" - ] - }, - { - "text": "Accelerate its efforts to achieve the MDGs", - "values": [ - "Development" - ] - }, - { - "text": "Combat domestic violence against women and children", - "values": [ - "Rights of the Child", - "Women's rights" - ] - }, - { - "text": "Establish a training programme for penitentiary, judicial and security personnel to ensure its consistent application", - "values": [ - "Detention", - "Justice" - ] - }, - { - "text": "Take measures to strengthen the role and capacity of the Ombudsman to address issues such as non-discrimination", - "values": [ - "National Human Rights Institution" - ] - }, - { - "text": "End the occupation of the Occupied Palestinian Territories and other Arab territories occupied since 1967, including Jerusalem and the Syrian Golan.", - "values": [ - "Right to land" - ] - }, - { - "text": "Step up activities to increase participation of women in public life and decision-making", - "values": [ - "Women's rights" - ] - }, - { - "text": "Ensure that the law is strengthened to also tackle impunity for crimes of sexual exploitation and sale of children.", - "values": [ - "Impunity", - "Rights of the Child", - "Trafficking" - ] - }, - { - "text": "Strengthen the mandate of the Ombudsman to review administrative decisions and align it with the Paris Principles", - "values": [ - "National Human Rights Institution" - ] - }, - { - "text": "Consider acceding to the optional Protocol to the Convention on the Elimination of all Forms of Discrimination against Women ", - "values": [ - "International instruments", - "Women's rights" - ] - }, - { - "text": "Repeal any discriminatory provision in existing laws on sexual orientation and gender identity", - "values": [ - "Sexual Orientation and Gender Identity" - ] - }, - { - "text": "Establish an official moratorium against the death penalty and take the necessary measures in view of its abolition ", - "values": [ - "Death penalty" - ] - }, - { - "text": "Assess legislative initiatives pertaining to civil society in order to make sure that they do not unjustly restrict the scope of action of nongovernmental organizations", - "values": [ - "Civil society" - ] - }, - { - "text": "Establish a mechanism that will meet regularly with the effective participation of civil society organizations and indigenous peoples, and have national reach to implement all Canada's international obligations and facilitate the acceptance of pending commitments", - "values": [ - "Civil society", - "Indigenous peoples" - ] - }, - { - "text": "Incorporate the rights enshrined in the United Nations Declaration on the Rights of Indigenous Peoples into domestic law and ratify ICERD ", - "values": [ - "Indigenous peoples", - "International instruments", - "Racial discrimination" - ] - }, - { - "text": "Further ameliorate the integration process of immigrants and combat all forms of discrimination against them ", - "values": [ - "Migrants", - "Racial discrimination" - ] - }, - { - "text": "Ratify the International Covenant on Civil and Political Rights ", - "values": [ - "CP rights - general", - "International instruments" - ] - }, - { - "text": "Continue its cooperation with the international human rights mechanisms with the aim of strengthening and protecting human rights in Brunei Darussalam ", - "values": [ - "Special procedures", - "Treaty bodies" - ] - }, - { - "text": "Further develop the support and protection system for the victims of domestic violence, including by providing an adequate number of safe houses", - "values": [ - "Rights of the Child", - "Women's rights" - ] - }, - { - "text": "Adopt a national policy on children with disabilities ", - "values": [ - "Disabilities", - "Rights of the Child" - ] - }, - { - "text": "Implement systems to extend vaccination coverage and monitoring with a view to countering outbreaks of polio, measles and other predictable diseases", - "values": [ - "Right to health" - ] - }, - { - "text": "Make the National Plan for the Prevention and Eradication of Commercial Sexual Exploitation of Children operational by ensuring public funding ", - "values": [ - "Labour", - "Rights of the Child" - ] - }, - { - "text": "Take active measures in order to put an immediate end to forced recruitment and use of children in armed conflicts by all factions.", - "values": [ - "International humanitarian law", - "Rights of the Child" - ] - }, - { - "text": "Continue to be committed, via its Equal Treatment Authority, to implement and train its citizens as regards to equal treatment for all, and to eradicate violence and discrimination against women and offer greater protection and equal opportunities to the Roma community ", - "values": [ - "Minorities", - "Women's rights" - ] - }, - { - "text": "Increase its efforts for the social and economic development of its people ", - "values": [ - "Development" - ] - }, - { - "text": "Ratify ILO Freedom of Association and Protection of the Right to Organise Convention (No. 87), ILO Right to Organise and Collective Bargaining Convention (No. 98), and ILO Minimum Age Convention (No. 138)", - "values": [ - "Freedom of association and peaceful assembly", - "International instruments", - "Labour", - "Rights of the Child" - ] - }, - { - "text": "Strengthen programs of public health services, especially those related to reducing maternal and infantile mortality ", - "values": [ - "Right to health", - "Rights of the Child", - "Women's rights" - ] - }, - { - "text": "Develop far-reaching and coordinated policies in order to protect minors against potential offenders and continue existing efforts to prevent and combat human trafficking and new forms of online trafficking", - "values": [ - "Trafficking" - ] - }, - { - "text": "Adopt, as soon as possible, public norms and policies designed to punish physical and psychological abuse against persons with disabilities and take concrete measures to improve treatment and care conditions, including social protection measures", - "values": [ - "Disabilities" - ] - }, - { - "text": "Continue implementing its socio-economic development strategies and plans ", - "values": [ - "Development" - ] - }, - { - "text": "Consider mainstreaming sexual and reproductive health education in schools and offering access to contraception to young people", - "values": [ - "Right to health" - ] - }, - { - "text": "Establish, in close collaboration with the international community, an independent international commission of inquiry or any other similar mechanism enabled to deal with human rights violations and international humanitarian law violations committed by all parties ", - "values": [ - "International humanitarian law", - "Justice" - ] - }, - { - "text": "Adopt legislative measures to establish a comprehensive national system of care for victims of gender violence, including social awareness programs, the empowerment of women and the establishment of a network of shelters or refuges", - "values": [ - "Human rights education and training", - "Women's rights" - ] - }, - { - "text": "Carry out further activities aimed at supporting the rehabilitation and reintegration of remand prisoners and convicts by organizing professional training for them ", - "values": [ - "Detention" - ] - }, - { - "text": "Continue effectively the fight against female genital mutilation", - "values": [ - "Rights of the Child", - "Torture and other CID treatment", - "Women's rights" - ] - }, - { - "text": "Take measures as a matter of priority to ensure that the freedom of expression and freedom of press are guaranteed in accordance with international human rights standards", - "values": [ - "Freedom of opinion and expression", - "Freedom of the press", - "International instruments" - ] - }, - { - "text": "Continue to improve conditions in the country's prisons and detention facilities, especially in provincial detention facilities", - "values": [ - "Detention" - ] - }, - { - "text": "Ratify ICPPED in as timely a fashion as possible", - "values": [ - "Enforced disappearances", - "International instruments" - ] - }, - { - "text": "Ratify the International Convention for the Protection of All Persons from Enforced Disappearance, the Optional Protocol to the Convention against Torture, the Optional Protocol to the Convention on the Elimination of All Forms of Discrimination against Women, and the UNESCO Convention on the Elimination of Discrimination in Education", - "values": [ - "Detention", - "Enforced disappearances", - "International instruments", - "Right to education", - "Torture and other CID treatment", - "Women's rights" - ] - }, - { - "text": "Adopt measures to reduce the negative impact of mining on the environment and the rights of indigenous peoples and their lands, in conformity with international standards", - "values": [ - "Business and human rights", - "Environment", - "Indigenous peoples", - "Right to land" - ] - }, - { - "text": "Strengthen efforts to eliminate patriarchal attitudes and stereotypes that discriminate against women, including through a comprehensive public awareness programme", - "values": [ - "Human rights education and training", - "Women's rights" - ] - }, - { - "text": "Address discriminatory practices towards ethnic and religious minorities, including lifting restrictions on their participation in government and society ", - "values": [ - "Freedom of religion and belief", - "Minorities", - "Racial discrimination" - ] - }, - { - "text": "Consider ratification of core human rights treaties, including ICCPR, ICESCR and ICERD to be followed by their effective implementation", - "values": [ - "CP rights - general", - "ESC rights - general", - "International instruments", - "Racial discrimination" - ] - }, - { - "text": "Continue the process of harmonizing national legislation, including the Criminal Code and Code of Criminal Procedure, with the Constitution and international human rights instruments ratified by Tunisia", - "values": [ - "International instruments", - "Justice" - ] - }, - { - "text": "Take the necessary measures to ensure that the operations of intelligence agencies are monitored by an independent oversight mechanism to ensure transparency and accountability", - "values": [ - "Privacy" - ] - }, - { - "text": "Provide a fair judicial process for female domestic workers who commit crimes punishable under the Saudi law", - "values": [ - "Justice", - "Labour", - "Women's rights" - ] - }, - { - "text": "Cooperate with the Working Group on Enforced or Involuntary Disappearances", - "values": [ - "Enforced disappearances", - "Special procedures", - "Technical assistance and cooperation" - ] - }, - { - "text": "Take appropriate legislative measures to exclude undocumented stay in Italy as an aggravating circumstance for the purposes of sentencing following a criminal conviction", - "values": [ - "Migrants" - ] - }, - { - "text": "Continue its efforts to fully prohibit torture and eliminate all forms of other ill-treatment at every level ", - "values": [ - "Torture and other CID treatment" - ] - }, - { - "text": "Withdraw its reservations to the 1951 Refugee Convention ", - "values": [ - "Asylum-seekers - refugees", - "International instruments" - ] - }, - { - "text": "Prohibit political statements and platforms that promote racism, xenophobia, hate speech, or speech aimed at inciting hatred or intolerance towards ethnic, religious or any other minorities", - "values": [ - "Freedom of religion and belief", - "Minorities", - "Racial discrimination" - ] - }, - { - "text": "Assure transparent and credible elections by ensuring freedom of peaceful assembly and expression for all persons, including members of political parties, candidates and members of the press ", - "values": [ - "Elections", - "Freedom of association and peaceful assembly", - "Freedom of opinion and expression", - "Freedom of the press" - ] - }, - { - "text": "Provide adequate judicial review and compensation for cases of government projects that have negative environmental impact on the land and resources of traditional landowners to ensure that their rights to property and right to environment are duly respected. Engagement with local communities in the decision-making process of any government project should also be promoted ", - "values": [ - "Environment", - "Justice" - ] - }, - { - "text": "Continue its efforts to adopt the National Action Plan to Prevent and Combat Human Trafficking", - "values": [ - "Trafficking" - ] - }, - { - "text": "Take necessary measures to reduce poverty, in particular among women and children", - "values": [ - "Poverty", - "Rights of the Child", - "Women's rights" - ] - }, - { - "text": "Implement measures and awareness-raising campaigns to eradicate female genital mutilation and other harmful practices against women", - "values": [ - "Human rights education and training", - "Rights of the Child", - "Torture and other CID treatment", - "Women's rights" - ] - }, - { - "text": "Include in the Law on Equality four protected criteria - namely social origin, material situation, sexual orientation and health status ", - "values": [ - "Sexual Orientation and Gender Identity" - ] - }, - { - "text": "Follow up on initiatives taken to strengthen the protection of children's rights", - "values": [ - "Rights of the Child" - ] - }, - { - "text": "Promote the rights to freedom of expression, association and assembly without discrimination of members of the LGBT community ", - "values": [ - "Freedom of association and peaceful assembly", - "Freedom of opinion and expression", - "Sexual Orientation and Gender Identity" - ] - }, - { - "text": "Take appropriate steps to accede to the Convention on the Elimination of All Forms of Discrimination against Women ", - "values": [ - "International instruments", - "Women's rights" - ] - }, - { - "text": "Intensify its efforts to eradicate FGM", - "values": [ - "Rights of the Child", - "Torture and other CID treatment", - "Women's rights" - ] - }, - { - "text": "Continue efforts aimed at promoting and protecting human rights on the ground ", - "values": [ - "General" - ] - }, - { - "text": "Take measures to facilitate access to credit for women in rural areas", - "values": [ - "Women's rights" - ] - }, - { - "text": "Continue to strengthen norms, programmes and administrative measures aimed at combating all forms of violence against women and children, including educational and prevention plans", - "values": [ - "Rights of the Child", - "Women's rights" - ] - }, - { - "text": "Continue the efforts in the fight against exclusion and discrimination against persons with disabilities", - "values": [ - "Disabilities" - ] - }, - { - "text": "Grant comprehensive protection to rights of equality and nondiscrimination in its federal law ", - "values": [ - "Other" - ] - }, - { - "text": "Ensure that national legislation complies with international fair trial standards and, inter alia, provides for the presumption of innocence, a competent defence for the accused, true rights to appeal, and the ability to seek pardon and commutation of sentence, particularly in capital punishment cases ", - "values": [ - "Death penalty", - "Justice" - ] - }, - { - "text": "Continue investments toward the achievement of economic, social and cultural rights", - "values": [ - "ESC rights - general" - ] - }, - { - "text": "Guarantee the rights of children in the context of criminal accountability and create the best alternative for improving the current system of youth accountability, in compliance with the Convention on the Rights of the Child", - "values": [ - "International instruments", - "Rights of the Child" - ] - }, - { - "text": "Take concrete steps towards the establishment of a national human rights institution in conformity with the Paris Principles ", - "values": [ - "National Human Rights Institution" - ] - }, - { - "text": "Continue to take steps for economic and political empowerment of women", - "values": [ - "Women's rights" - ] - }, - { - "text": "Continue to work to enhance access to water through efficient water resources management with the support and assistance of the international community", - "values": [ - "Right to water and sanitation" - ] - }, - { - "text": "Promote dialogue within the communities with a view to face the root causes of discrimination and violence", - "values": [ - "Other" - ] - }, - { - "text": "Manifest, as soon as possible, the commitment of the Jamaican Government to establish a national human rights institution, in line with the Paris Principles", - "values": [ - "National Human Rights Institution" - ] - }, - { - "text": "Continue its best poverty eradication strategies", - "values": [ - "Poverty" - ] - }, - { - "text": "Pay special emphasis on informing members of especially the Roma community, the elderly, women and the disadvantaged of their constitutional rights as citizens", - "values": [ - "Minorities", - "Women's rights" - ] - }, - { - "text": "Issue a standing invitation to the special procedures of the Human Rights Council and ensure an enabling environment for the activities of journalists, human rights defenders and other civil society actors", - "values": [ - "Civil society", - "Freedom of the press", - "Human rights defenders", - "Special procedures" - ] - }, - { - "text": "Take further steps to ensure the equal protection of the rights of persons in non-traditional family models, such as unmarried partners, cohabitants and same-sex civil partners", - "values": [ - "Sexual Orientation and Gender Identity" - ] - }, - { - "text": "Redouble its efforts to guarantee the independence of the National Human Rights Commission and provide it with the necessary resources", - "values": [ - "National Human Rights Institution" - ] - }, - { - "text": "Take measures to address the issue of prison overcrowding and poor prison conditions, including providing prisoners with access to medical staff and court-appointed counsel, especially in the Challapalca prison where detainees live under extreme climatic conditions.", - "values": [ - "Detention" - ] - }, - { - "text": "Eliminate fees for birth certificates and facilitate the issuance of birth certificates to all refugee children who do not have any yet", - "values": [ - "Asylum-seekers - refugees", - "Rights of the Child", - "Statelessness and the right to nationality" - ] - }, - { - "text": "Take effective measures to reduce the high maternal mortality rate", - "values": [ - "Right to health", - "Women's rights" - ] - }, - { - "text": "Continue to promote equal opportunities and to fight poverty", - "values": [ - "Poverty" - ] - }, - { - "text": "Persevere in the fight against child poverty and render it a national priority", - "values": [ - "Poverty", - "Rights of the Child" - ] - }, - { - "text": "Establish a comprehensive plan and a system for recording and monitoring developments in the area of preventing xenophobia and discrimination, including hate speech and hate crimes", - "values": [ - "Racial discrimination" - ] - }, - { - "text": "Continue its efforts to promote the full exercise of the right to freedom of information and expression", - "values": [ - "Freedom of opinion and expression" - ] - }, - { - "text": "Take steps leading to a formal abolition of the death penalty ", - "values": [ - "Death penalty" - ] - }, - { - "text": "Further strengthen its programmes and social policies, paying particular attention to the fields of education, health and nutrition, giving priority to the neediest sectors of the population", - "values": [ - "ESC rights - general", - "Right to education", - "Right to food", - "Right to health" - ] - }, - { - "text": "Allow and facilitate immediately the deployment of the UNMISS Regional Protection Force as mandated by the Security Council", - "values": [ - "Other" - ] - }, - { - "text": "Ensure civil society organizations are able to operate freely, including groups that may be critical of the Government, by amending or repealing Presidential Decrees Nos. 16 and 739", - "values": [ - "Civil society", - "Freedom of association and peaceful assembly", - "Freedom of opinion and expression" - ] - }, - { - "text": "Consider signing and ratifying CRPD to enhance the protection of their rights and improve their quality of life ", - "values": [ - "Disabilities", - "International instruments" - ] - }, - { - "text": "Consider treating economic, social and cultural rights on the same footing, and with the same emphasis as civil and political rights", - "values": [ - "ESC rights - general" - ] - }, - { - "text": "Adopt measures to prevent, punish and eliminate all forms of violence against women, including intra- and extramarital rape, domestic violence and degrading treatment ", - "values": [ - "Women's rights" - ] - }, - { - "text": "Undertake a thorough and credible investigation into the disappearance of Sombath Somphone and other cases of purported enforced disappearances", - "values": [ - "Enforced disappearances" - ] - }, - { - "text": "Implement specific legislation to combat violence, in particular sexual violence against women and children ", - "values": [ - "Rights of the Child", - "Women's rights" - ] - }, - { - "text": "Take immediate legal measures to remove restrictions against access of indigenous women and children to appropriate health and education services and employment opportunities ", - "values": [ - "Development", - "Indigenous peoples", - "Right to education", - "Right to health", - "Rights of the Child" - ] - }, - { - "text": "Strengthen its education policies to ensure that no child drops out of school at primary level due to structural reasons", - "values": [ - "Right to education", - "Rights of the Child" - ] - }, - { - "text": "Set the minimum legal age for marriage at 18 years and explicitly prohibit forced early marriage ", - "values": [ - "Rights of the Child", - "Women's rights" - ] - }, - { - "text": "Speed up the process of identification of discriminatory provisions against women ", - "values": [ - "Women's rights" - ] - }, - { - "text": "Undertake a legal reform on the issues of the neglect, abuse and sexual exploitation of children, the lack of conformity of the birth registration system, the absence of legislation on child labour, and the non-existence of a clear definition of the minimum age for criminal responsibility", - "values": [ - "Justice", - "Rights of the Child", - "Statelessness and the right to nationality" - ] - }, - { - "text": "Meet relevant obligations under the International Covenant on Civil and Political Rights, and fulfil its universal periodic review first cyclecommitments to ensure the legitimacy and independence of the judiciary and establish an independent bar association", - "values": [ - "International instruments", - "Justice", - "UPR process" - ] - }, - { - "text": "Review its immigration laws and policies and ensure compliance with its international obligations, especially regarding the rights of children", - "values": [ - "Migrants", - "Rights of the Child" - ] - }, - { - "text": "Step up the efforts to combat all forms and manifestations of terrorism and extremism", - "values": [ - "Public security" - ] - }, - { - "text": "Promote the right of access to information by protecting the freedom of press and the use of mass communication", - "values": [ - "Freedom of opinion and expression", - "Freedom of the press" - ] - }, - { - "text": "Continue to improve its legal system and give particular attention to its human rights laws and regulations in order to make them more mutually cohesive.", - "values": [ - "Justice" - ] - }, - { - "text": "Ratify the Optional Protocol to the Convention on the Rights of the Child related to individual complaints ", - "values": [ - "International instruments", - "Rights of the Child" - ] - }, - { - "text": "Increase efforts to address cases of sexual violence and exploitation against children, such as prostitution, through the judicial system, as recommended by the Committee on the Rights of the Child. ", - "values": [ - "Rights of the Child", - "Treaty bodies" - ] - }, - { - "text": "Prioritize family member tracing when dealing with asylum-seeking unaccompanied children and ensure all relevant processes are in the child's best interests", - "values": [ - "Asylum-seekers - refugees", - "Rights of the Child" - ] - }, - { - "text": "Establish torture as a serious crime punished with appropriate penalties, in keeping with the definition set out in the Convention against Torture", - "values": [ - "International instruments", - "Torture and other CID treatment" - ] - }, - { - "text": "Meet its funding commitments to the Truth and Reconciliation Commission for the duration of its mandate ", - "values": [ - "Justice" - ] - }, - { - "text": "Continue the elaboration and implementation of national action plans in order to improve the situation of children and the protection of their rights ", - "values": [ - "Rights of the Child" - ] - }, - { - "text": "Adopt specific legislation to prevent and punish violence against women.", - "values": [ - "Women's rights" - ] - }, - { - "text": "Gradually consider the ratification of outstanding international human rights instruments ", - "values": [ - "International instruments" - ] - }, - { - "text": "Strengthen the measures aimed at preventing cases of torture and ill- treatment by public officials, and ensure that all allegations are promptly and thoroughly investigated in order to bring to justice those responsible", - "values": [ - "Human rights violations by state agents", - "Torture and other CID treatment" - ] - }, - { - "text": "Ensure that legislation relating to the prison situation and criminal justice is in accordance with international human rights standards", - "values": [ - "Detention" - ] - }, - { - "text": "Prohibit and criminalize explicitly the recruitment and use in hostilities of children under 18 years", - "values": [ - "Rights of the Child" - ] - }, - { - "text": "Further strengthen human rights education and training for the judiciary and law enforcing agencies with the assistance from OHCHR and other relevant international organisations", - "values": [ - "Human rights education and training", - "Technical assistance and cooperation" - ] - }, - { - "text": "Strengthen efforts to combat poverty", - "values": [ - "Poverty" - ] - }, - { - "text": "Take the necessary measures to ensure that the National Human Rights Commission is in conformity with the Paris Principles", - "values": [ - "National Human Rights Institution" - ] - }, - { - "text": "Introduce comprehensive legislation criminalizing violence against women, including marital rape", - "values": [ - "Women's rights" - ] - }, - { - "text": "Further eliminate stereotypical attitudes about the roles and responsibilities of women and men ", - "values": [ - "Women's rights" - ] - }, - { - "text": "Ensure the effective implementation of the national programme for combatting violence against women", - "values": [ - "Women's rights" - ] - }, - { - "text": "Take measures to guarantee full protection of children's human rights by eliminating and reducing child trafficking, violence against children, their sexual abuse and economic exploitation, their ritual killing, infanticide and child labour and by improving the birth registration of all children especially in rural areas", - "values": [ - "Rights of the Child", - "Statelessness and the right to nationality" - ] - }, - { - "text": "Ensure fair trials and strictly respect the absolute prohibition of torture, including ensuring that confessions or information obtained as a result of torture and other ill treatment must not be used as evidence", - "values": [ - "Justice", - "Torture and other CID treatment" - ] - }, - { - "text": "Further revise the current legislation on combating trafficking in persons for a better prosecution of these crimes", - "values": [ - "Trafficking" - ] - }, - { - "text": "Consider the establishment of a moratorium on the use of death penalty with a view to its abolition.", - "values": [ - "Death penalty" - ] - }, - { - "text": "Adhere immediately to the principles of the International Convention on the Rights of All Migrant Workers and Members of their Families, and consider its ratification in a favourable light", - "values": [ - "International instruments", - "Labour", - "Migrants" - ] - }, - { - "text": "Continue improving the situation of education ", - "values": [ - "Right to education" - ] - }, - { - "text": "Step up their efforts in combating trafficking in persons ", - "values": [ - "Trafficking" - ] - }, - { - "text": "Take immediate steps to improve the situation in Southern Thailand so the special security laws can be lifted", - "values": [ - "Public security" - ] - }, - { - "text": "Resolve the problem of lack of capacity in existing centres for registration and processing of asylum applications as well as ensure publication of information on administrative detention of migrants at the federal level", - "values": [ - "Asylum-seekers - refugees", - "Migrants" - ] - }, - { - "text": "Adopt a comprehensive program to fight violence and discrimination against women, with special attention to indigenous women", - "values": [ - "Indigenous peoples", - "Women's rights" - ] - }, - { - "text": "Ensure that the new labour legislation includes provisions prohibiting discrimination both in the employment and the recruitment procedures, as set out in ILO Convention No. 111 ", - "values": [ - "International instruments", - "Labour" - ] - }, - { - "text": "Ensure the prosecution of traffickers, particularly through improved training of law enforcement bodies, protection for victims of human trafficking during criminal proceedings and that victims have access to counselling and receive compensation", - "values": [ - "Trafficking" - ] - }, - { - "text": "Moving forward, the Government is committed to studying the framework for accession to the Convention against Torture and other Cruel, Inhuman or Degrading Treatment or Punishment.", - "values": [ - "International instruments", - "Torture and other CID treatment" - ] - }, - { - "text": "Accelerate the judicial and police reform processes ", - "values": [ - "Justice" - ] - }, - { - "text": "Evaluate the measures taken with regard to the action plan concerning combating human trafficking and strengthen its efforts in this regard through follow-up measures ", - "values": [ - "Trafficking" - ] - }, - { - "text": "Continue its close cooperation with the various Committees of the Council of Europe dedicated to the protection of human rights and the fight against torture ", - "values": [ - "Torture and other CID treatment" - ] - }, - { - "text": "Fully implement legislation, prohibiting female genital mutilation and violence against women and widely disseminate knowledge of it through awareness raising campaigns.", - "values": [ - "Human rights education and training", - "Rights of the Child", - "Torture and other CID treatment", - "Women's rights" - ] - }, - { - "text": "Address concerns about increasing interference by the executive in the judiciary", - "values": [ - "Justice" - ] - }, - { - "text": "Develop alternative solutions to mandatory detention of asylum seekers, particularly in the case of children", - "values": [ - "Asylum-seekers - refugees", - "Detention", - "Rights of the Child" - ] - }, - { - "text": "Repeal corporal punishment of children", - "values": [ - "Rights of the Child", - "Torture and other CID treatment" - ] - }, - { - "text": "Develop a coordinated, inter-agency approach for responding to gender-based violence, with support from international partners, as required", - "values": [ - "Technical assistance and cooperation", - "Women's rights" - ] - }, - { - "text": "Submit their outstanding and long overdue reports to the relevant treaty bodies", - "values": [ - "Treaty bodies" - ] - }, - { - "text": "Intensify strategies aimed at social and family integration of minors detained in the disciplinary section for minors of the Penitentiary Centre ", - "values": [ - "Detention", - "Rights of the Child" - ] - }, - { - "text": "Provide for and ensure the personal security of human rights defenders, witnesses, court officials, prosecutors and others who are subject to threats and other abuses connected with their efforts to support human rights and democracy, to combat impunity", - "values": [ - "Human rights defenders", - "Impunity", - "Justice" - ] - }, - { - "text": "Although there are still some human rights issues that require further dialogue and consideration both nationally, and also with international partners, Tonga is proud of its achievements so far, and it remains committed to protecting its people and all who sojourn into its territory to enjoy the freedoms and protections provided by its 138 year old modern state", - "values": [ - "General" - ] - }, - { - "text": "Take measures to ensure that national laws for the protection against domestic violence are applied at all levels in a coherent and effective manner ", - "values": [ - "Rights of the Child", - "Women's rights" - ] - }, - { - "text": "Unify, both at federal and state level, the criminalization of offenses related to trafficking in persons", - "values": [ - "Trafficking" - ] - }, - { - "text": "Submit its overdue report to the Committee on Economic, Social and Cultural Rights and the Committee against Torture", - "values": [ - "ESC rights - general", - "Torture and other CID treatment", - "Treaty bodies" - ] - }, - { - "text": "Continue in its efforts to implement accepted recommendations of the first cycle of the UPR working group ", - "values": [ - "UPR process" - ] - }, - { - "text": "Work actively to reduce the number of stateless residents in the country", - "values": [ - "Statelessness and the right to nationality" - ] - }, - { - "text": "Change its legislation to ensure the exercise of the political rights in the mother tongue as prescribed in the OSCE report of 7 January 2015", - "values": [ - "Minorities" - ] - }, - { - "text": "Promptly follow up on the findings of the independent investigation into extrajudicial police shootings over the period 2010-2011 in order to hold those responsible to account and to ensure rule of law", - "values": [ - "Extrajudicial executions", - "Human rights violations by state agents" - ] - }, - { - "text": "Promote understanding, tolerance and friendship among the peoples of the world along the ideas of peaceful co-existence and genuine cooperation and partnership", - "values": [ - "Other" - ] - }, - { - "text": "Fully implement Security Council resolution 2023 of 2011, which condemns Eritrea's use of the "diaspora tax" to destabilize the Horn of Africa region and violate the sanctions regime ", - "values": [ - "Other" - ] - }, - { - "text": "Continue to improve the judicial system to guarantee the rights of those in detention or in prison", - "values": [ - "Detention" - ] - }, - { - "text": "Uphold its international obligations to respect the rights to freedom of expression, assembly, and association, and cease arrests, harassment, and detention of individuals with different views ", - "values": [ - "Freedom of association and peaceful assembly", - "Freedom of opinion and expression" - ] - }, - { - "text": "Consider the establishment of a moratorium on executions during the process of consideration by the Government of the recommendations of the Law Commission of Indiaon the issue of the abolition of the death penalty", - "values": [ - "Death penalty" - ] - }, - { - "text": "Ensure and protect freedom of religion, both in legislation and in practice, and take measures to prevent discrimination in practice against persons from all religions and beliefs.", - "values": [ - "Freedom of religion and belief" - ] - }, - { - "text": "Take all measures necessary to eliminate discrimination against women, on the basis of a comprehensive strategy aimed at eliminating discriminatory practices and stereotypes and, also, violence against women", - "values": [ - "Women's rights" - ] - }, - { - "text": "Establish an institutional mechanism to counter racial discrimination and re-activate institutions which have ceased to be operational, particularly the Inter-departmental Working Group against xenophobia and ethnic and racial intolerance", - "values": [ - "Racial discrimination" - ] - }, - { - "text": "Repeal the norms that limit freedom of expression and require journalists to reveal their sources, under penalty of imprisonment ", - "values": [ - "Freedom of opinion and expression", - "Freedom of the press" - ] - }, - { - "text": "Completely eliminate torture and extrajudicial killings.", - "values": [ - "Extrajudicial executions", - "Torture and other CID treatment" - ] - }, - { - "text": "Continue efforts to alleviate poverty as a means to enhance the lives and well-being of the people ", - "values": [ - "Poverty" - ] - }, - { - "text": "Improve the penitentiary system and the situation of detainees ", - "values": [ - "Detention" - ] - }, - { - "text": "Take additional measures as necessary to ensure the full enjoyment of human rights by vulnerable groups that are suffering from discrimination, such as LGBTI persons, including investigation and punishment of cases of discrimination and repealing of laws that criminalize and stigmatize them", - "values": [ - "Sexual Orientation and Gender Identity" - ] - }, - { - "text": "Immediately stop its atrocities and violations of human rights against the Kashmiri people, and allow them to exercise their right to self-determination through a free and fair plebiscite in accordance with the United Nations Security Council resolution", - "values": [ - "CP rights - general", - "Minorities" - ] - }, - { - "text": "Adjust the Penal Code to fully comply with international standards of freedom of expression, and ensure that restrictions imposed in the name of security comply with the character of necessity and proportionality ", - "values": [ - "Freedom of opinion and expression" - ] - }, - { - "text": "Further strengthen human rights, particularly economic, social and cultural rights, in order to increase the quality of life of its people, with the cooperation and technical assistance needed by the country", - "values": [ - "ESC rights - general", - "Technical assistance and cooperation" - ] - }, - { - "text": "Avoid any obstacle to the work exercised by individuals and institutions protecting human rights in Nicaragua ", - "values": [ - "Human rights defenders" - ] - }, - { - "text": "Continue to strengthen the institutional structures and support measures in order to attend to the needs of groups of persons in vulnerable conditions", - "values": [ - "Minorities" - ] - }, - { - "text": "Strengthen the independence and impartiality of the Ombudsman and ensure its full adherence to the Paris Principles", - "values": [ - "National Human Rights Institution" - ] - }, - { - "text": "Ratify CPED and recognize the competence of the Committee to receive and examine communications from individuals or those coming from other States ", - "values": [ - "Enforced disappearances", - "International instruments" - ] - }, - { - "text": "Take measures to develop a comprehensive action plan to combat trafficking and the sexual exploitation of women and girls", - "values": [ - "Rights of the Child", - "Trafficking", - "Women's rights" - ] - }, - { - "text": "Adopt appropriate administrative policies to promote gender equality in public affairs, particularly in the labour market, and enforce strict sanctions against all kinds of discrimination and abuse of women's rights by ensuring that the rights of women are genuinely recognized in national legislation", - "values": [ - "Women's rights" - ] - }, - { - "text": "Continue the effective implementation of the initiative known as "Towards a National Plan to Combat Discrimination"", - "values": [ - "Other" - ] - }, - { - "text": "Improve rights and conditions of migrant workers and consider signing the International Convention on the Protection of the Rights of All Migrant Workers and Members of Their Families", - "values": [ - "International instruments", - "Labour", - "Migrants" - ] - }, - { - "text": "Draw up a plan to manage and mitigate natural disasters together with the regional mechanisms and the United Nations, taking into account the possible large-scale internal and international displacement of population ", - "values": [ - "Environment", - "Internally displaced persons" - ] - }, - { - "text": "Accept, ratify or accede to the Optional Protocol to the Convention on the Elimination of All Forms of Discrimination against Women", - "values": [ - "International instruments", - "Women's rights" - ] - }, - { - "text": "Speed up the efforts of poverty reduction with the assistance of the international community to provide its people with social protection ", - "values": [ - "Poverty", - "Technical assistance and cooperation" - ] - }, - { - "text": "Introduce reforms of domestic laws and regulations aiming at the eliminating all forms of discrimination against women ", - "values": [ - "Women's rights" - ] - }, - { - "text": "Review provisions regarding lengthy pre-trial detention without court and investigation decisions", - "values": [ - "Detention" - ] - }, - { - "text": "Continue efforts aimed at harmonization of legislation and public policies with the Convention on the Rights of the Child", - "values": [ - "International instruments", - "Rights of the Child" - ] - }, - { - "text": "Continue awareness-raising in the area of human rights", - "values": [ - "Human rights education and training" - ] - }, - { - "text": "Carry out an inclusive, evidence-based evaluation of the Danish antiterrorism legislation, as previously recommended", - "values": [ - "Counter-terrorism", - "UPR process" - ] - }, - { - "text": "Continue implementing the national gender mapping in policies to assess the representation of women in positions of responsibility and decision-making", - "values": [ - "Women's rights" - ] - }, - { - "text": "Continue and step up its efforts to address cases of violence against women, particularly by providing legal, medical, rehabilitation and counselling help to the victims ", - "values": [ - "Women's rights" - ] - }, - { - "text": "Completely eradicate the practice of female genital mutilation through education and awareness campaigns in the communities ", - "values": [ - "Human rights education and training", - "Rights of the Child", - "Torture and other CID treatment", - "Women's rights" - ] - }, - { - "text": "Give full support to the Constitution Drafting Assembly and to an inclusive drafting process, leading to a constitution that is fully compliant with international human rights standards", - "values": [ - "International instruments" - ] - }, - { - "text": "Follow up effectively the national plan of action to accelerate the eradication of female genital mutilation and the implementation of preventative measures", - "values": [ - "Rights of the Child", - "Torture and other CID treatment", - "Women's rights" - ] - }, - { - "text": "Establish an NHRI in conformity with the Paris Principles and provide it with the resources it requires for the effective performance of its functions", - "values": [ - "National Human Rights Institution" - ] - }, - { - "text": "Incorporate without delay the Convention on the Elimination of All Forms of Discrimination against Women in its national legislation and make it applicable in its judicial proceedings, as recommended by the Committee on the Elimination of Discrimination against Women", - "values": [ - "International instruments", - "Women's rights" - ] - }, - { - "text": "Ensure that relevant legislation guarantees the exercise of the rights to freedom of expression and association for all individuals, including human rights defenders and journalists", - "values": [ - "Freedom of association and peaceful assembly", - "Freedom of opinion and expression", - "Freedom of the press", - "Human rights defenders" - ] - }, - { - "text": "Current initiatives to devise reforms to the legislative framework dealing with the protection of children a/ who come into conflict with the legal system, and b/ who are in need of care and protection, will be expedited, in line with recommendations made by Committee on the Rights of the Child, the UN Standard Minimum Rules for the Administration of Juvenile Justice and the Guidelines for the Prevention of Juvenile Delinquency", - "values": [ - "Justice", - "Rights of the Child", - "Treaty bodies" - ] - }, - { - "text": "Fulfill obligation under the Convention on the Elimination of All Forms of Discrimination against Women, by adopting and implementing legislation prohibiting female genital mutilation", - "values": [ - "International instruments", - "Rights of the Child", - "Torture and other CID treatment", - "Women's rights" - ] - }, - { - "text": "Maintain records for all persons detained by the security forces.", - "values": [ - "Detention" - ] - }, - { - "text": "Recommended that discrimination on basis of sexual orientation be also included in the draft antidiscrimination bill.", - "values": [ - "Sexual Orientation and Gender Identity" - ] - }, - { - "text": "Take new measures to ensure effective access to identification documents for all citizens", - "values": [ - "Other" - ] - }, - { - "text": "Take further measures to combat racism and all forms of discrimination, especially with respect to women, children, indigenous people and Afro-Bolivians", - "values": [ - "Indigenous peoples", - "Minorities", - "Racial discrimination", - "Rights of the Child", - "Women's rights" - ] - }, - { - "text": "Speed up the preparation of a national human rights promotion and protection strategy ", - "values": [ - "General" - ] - }, - { - "text": "With the support of the international community, including the relevant specialized agencies of the United Nations, strengthen its efforts to implement its national food security-related programmes ", - "values": [ - "Right to food", - "Technical assistance and cooperation" - ] - }, - { - "text": "Accelerate the examination of complaints on discrimination and apply relevant judgments", - "values": [ - "Justice" - ] - }, - { - "text": "Take all the necessary measures to fully implement the National Social Inclusion Strategy", - "values": [ - "General" - ] - }, - { - "text": "Increase efforts to strengthen the respect of women's rights and to promote gender equality.", - "values": [ - "Women's rights" - ] - }, - { - "text": "Continue the implementation of the Basic Plan for gender equality", - "values": [ - "Women's rights" - ] - }, - { - "text": "Ensure sufficient resources so that the National Human Rights Commission (NHRC) can fully carry out its mandate", - "values": [ - "National Human Rights Institution" - ] - }, - { - "text": "Submit its outstanding reports to the Committee on Economic, Social and Cultural Rights, the Human Rights Committee and the Committee against Torture ", - "values": [ - "CP rights - general", - "ESC rights - general", - "Torture and other CID treatment", - "Treaty bodies" - ] - }, - { - "text": "Continue work on the development of the national education system, ensuring access to quality and free education ", - "values": [ - "Right to education" - ] - }, - { - "text": "Expedite efforts towards prohibition of all forms of child labour", - "values": [ - "Labour", - "Rights of the Child" - ] - }, - { - "text": "Develop awareness-raising campaigns and programmes against sexual orientation discrimination", - "values": [ - "Human rights education and training", - "Sexual Orientation and Gender Identity" - ] - }, - { - "text": "Pay specific attention to its human rights obligations in the context of the significant influx of migrants from the Middle East and Northern Africa to the country", - "values": [ - "International instruments", - "Migrants" - ] - }, - { - "text": "Increase the effectiveness of measures taken to prevent manifestations of racial hatred or intolerance, including in the statements of politicians, civil officials or the press and promptly introduce legal ban on the activities of any political parties and organizations that propagate hatred and racial discrimination", - "values": [ - "Human rights violations by state agents", - "Racial discrimination" - ] - }, - { - "text": "Continue implementing the National Strategy Document and Action Plan on Children's Rights", - "values": [ - "Rights of the Child" - ] - }, - { - "text": "Offer longer-term alternatives that would allow trafficking victims to stay in the country on a work or residency permit, rather than solely offering repatriation or asylum", - "values": [ - "Asylum-seekers - refugees", - "Trafficking" - ] - }, - { - "text": "Try to promote gender equality, improve the status of women and eliminate violence against women ", - "values": [ - "Women's rights" - ] - }, - { - "text": "Strictly uphold freedom of the press, including public access to information, and ensure that the complaints made in this regard are properly investigated ", - "values": [ - "Freedom of opinion and expression", - "Freedom of the press" - ] - }, - { - "text": "Continue the democratization process on which it has embarked so courageously.", - "values": [ - "Other" - ] - }, - { - "text": "Take measures aimed at further strengthening of national human rights institutions", - "values": [ - "General" - ] - }, - { - "text": "Address the violation of women's rights, domestic violence and the use of child labour", - "values": [ - "Labour", - "Rights of the Child", - "Women's rights" - ] - }, - { - "text": "Continue the substantive efforts in the area of governance and poverty reduction", - "values": [ - "Poverty" - ] - }, - { - "text": "Further emphasize the quality and sustainability of the achieved targets and progress towards attaining the remaining MDG goals ", - "values": [ - "Development" - ] - }, - { - "text": "Supervise conditions in youth correctional facilities and guarantee that it complies with the Law on Child Care and Protection, in order to determine the progress made at the national level", - "values": [ - "Detention", - "Rights of the Child" - ] - }, - { - "text": "Align the definition of children in all juridical instances and ensure that no life sentence is applied to any child under the age of 18 years", - "values": [ - "Justice", - "Rights of the Child" - ] - }, - { - "text": "Strengthen its cooperation with human rights special procedures and consider issuing a standing invitation ", - "values": [ - "Special procedures" - ] - }, - { - "text": "Ensure that the appointment of its Ombudsman Board's members is in compliance with the Paris Principles", - "values": [ - "National Human Rights Institution" - ] - }, - { - "text": "Create mechanisms to protect and support victims of sexual violence or gender violence", - "values": [ - "Rights of the Child", - "Women's rights" - ] - }, - { - "text": "That, until a moratorium is applied, steps be taken to restrict the number of offences carrying the death penalty", - "values": [ - "Death penalty" - ] - }, - { - "text": "Indonesia is encouraged to consider engaging in further dialogue at the regional and international level, and share best practices, as requested by States during the interactive dialogue", - "values": [ - "Other" - ] - }, - { - "text": "Remove the obligation of healthcare public servants to inform the Office of Immigration about the identity of their patients, as set forth in section 87, paragraph 2 of the Residence Act ", - "values": [ - "Right to health" - ] - }, - { - "text": "Repeal the Regulation of the Minister of Health N. 1636 on Female Genital Mutilation and officially prohibit the increasing practice of female circumcision and other traditional practices inflicting sufferings on women and girls ", - "values": [ - "Rights of the Child", - "Torture and other CID treatment", - "Women's rights" - ] - }, - { - "text": "Take special measures for unemployed women ", - "values": [ - "Women's rights" - ] - }, - { - "text": "Accelerate the adoption of the draft laws on Equality and Anti-discrimination and the Enforcement Monitoring Bodies", - "values": [ - "Other" - ] - }, - { - "text": "Submit outstanding reports to the respective treaty bodies", - "values": [ - "Treaty bodies" - ] - }, - { - "text": "Continue efforts to adequately respond to honour related violence, provide shelters for women in need, raise public awareness and prosecute the perpetrators as a matter of priority", - "values": [ - "Human rights education and training", - "Women's rights" - ] - }, - { - "text": "Take necessary measures to separate incarcerated minors from adults ", - "values": [ - "Detention" - ] - }, - { - "text": "Mainstream disabilities rights into government policies and action plans", - "values": [ - "Disabilities" - ] - }, - { - "text": "Establish a national institution in accordance with the Paris Principles, providing it with the necessary technical and financial resources and request technical cooperation from the Office of the High Commissioner for Human Rights ", - "values": [ - "National Human Rights Institution", - "Technical assistance and cooperation" - ] - }, - { - "text": "Make use of the technical support from OHCHR to finalizing the overdue reports", - "values": [ - "Technical assistance and cooperation", - "Treaty bodies" - ] - }, - { - "text": "Take the necessary measures to eliminate restrictions on the freedom of expression, including those imposed to national and international journalists", - "values": [ - "Freedom of opinion and expression", - "Freedom of the press" - ] - }, - { - "text": "Ensure the equitable distribution of water and food to the entire population, especially during times of drought ", - "values": [ - "Right to food", - "Right to water and sanitation" - ] - }, - { - "text": "Continue with measures for an enabling environment for economic, social and cultural rights of the people of Zimbabwe ", - "values": [ - "ESC rights - general" - ] - }, - { - "text": "Ensure equality, under the law and in practice, of women, and amend all discriminatory legal provisions concerning marriage - including polygamy -, male guardianship, child custody, divorce and inheritance, as recommended by the Committee on the Elimination of Discrimination against Women and the Committee on the Rights of the Child ", - "values": [ - "Treaty bodies", - "Women's rights" - ] - }, - { - "text": "Take steps to ensure that the Domestic Violence and Sexual Offences Bill, and other Bills to protect the rights of women that are currently before Parliament, are enacted without further delay", - "values": [ - "Rights of the Child", - "Women's rights" - ] - }, - { - "text": "Assess the effectiveness of existing legislation to combat racism, hate crime and hate speech", - "values": [ - "Racial discrimination" - ] - }, - { - "text": "Redouble its efforts to facilitate the participation of women in political and public affairs and combat stereotypes on the role of women", - "values": [ - "Women's rights" - ] - }, - { - "text": "Investigate and sanction effectively all reported cases of human rights violations committed during and after the political crisis, and ensure that persons belonging to the armed forces and the police are not excluded from these investigations", - "values": [ - "Human rights violations by state agents" - ] - }, - { - "text": "Ratify and implement ILO Convention 169", - "values": [ - "Indigenous peoples", - "International instruments" - ] - }, - { - "text": "Conclude its own procedures to ratify the Optional Protocol to the Convention on the Rights of Person with Disabilities", - "values": [ - "Disabilities", - "International instruments" - ] - }, - { - "text": "Take tangible measures to ensure that women have access to all public services, in particular to public health services ", - "values": [ - "Right to health", - "Women's rights" - ] - }, - { - "text": "End the discrimination against persons of African descent", - "values": [ - "Racial discrimination" - ] - }, - { - "text": "Carry out efforts in the area of combating discrimination, and provide the Commissioner for the Protection of Equality with all necessary means to carry out its mandate", - "values": [ - "Other" - ] - }, - { - "text": "Ensure the issuance of birth certificates to all children born on its territory, regardless of the status of their parents", - "values": [ - "Rights of the Child", - "Statelessness and the right to nationality" - ] - }, - { - "text": "Redouble efforts towards providing more opportunities for women's active involvement in the economic and political spheres", - "values": [ - "Women's rights" - ] - }, - { - "text": "Work towards the socioeconomic betterment of people from ethnic minority backgrounds", - "values": [ - "ESC rights - general", - "Minorities" - ] - }, - { - "text": "Continue its efforts to implement the strategy of the Ministry of Health, particularly in the area of maternal and child health so as to reduce even further the child mortality rate, which is in connection with the Millennium Development Goal 4 ", - "values": [ - "Right to health", - "Rights of the Child" - ] - }, - { - "text": "Implement measures to prohibit corporal punishment of children in schools", - "values": [ - "Rights of the Child", - "Torture and other CID treatment" - ] - }, - { - "text": "Criminalise all forms of torture and ill- treatment", - "values": [ - "Torture and other CID treatment" - ] - }, - { - "text": "Increase efforts designed to reinforce mutual understanding between the migrant communities and Swiss society in general ", - "values": [ - "Migrants" - ] - }, - { - "text": "Adopt concrete measures to ensure universal access to quality primary education.", - "values": [ - "Right to education" - ] - }, - { - "text": "Ensure that all the courts and the prosecutors' offices of various entities take adequate measures to support and protect witnesses, in order to avoid the transfer of files to these entities resulting in impunity, particularly in cases of sexual violence", - "values": [ - "Impunity", - "Justice", - "Rights of the Child", - "Women's rights" - ] - }, - { - "text": "Continue the process of reforming the judicial system, in keeping with the provisions of the new Constitution", - "values": [ - "Justice" - ] - }, - { - "text": "Take the necessary steps to ensure that all persons in prison or detention centers are treated according to Togolese laws and international obligations", - "values": [ - "Detention" - ] - }, - { - "text": "Provide for a separation of juvenile offenders from adult inmates ", - "values": [ - "Detention", - "Rights of the Child" - ] - }, - { - "text": "Continue taking efforts for the promotion and protection of the rights of children and other vulnerable groups of the society ", - "values": [ - "Rights of the Child" - ] - }, - { - "text": "Enhance and activate laws and legislation in order to combat all forms of discrimination, racism and xenophobia", - "values": [ - "Racial discrimination" - ] - }, - { - "text": "Fast-track the implementation of the Children\u2019s Code in order to curb harmful practices against children, including child, early and forced marriages, the sale of children and the killing of so-called \u201csorcerer\u2019s children\u201c", - "values": [ - "Rights of the Child", - "Torture and other CID treatment", - "Women's rights" - ] - }, - { - "text": "Continue efforts to combat all forms of discrimination which may victimize vulnerable groups such as indigenous peoples and the disabled.", - "values": [ - "Disabilities", - "Indigenous peoples" - ] - }, - { - "text": "Intensify efforts to eradicate all forms of violence against children", - "values": [ - "Rights of the Child" - ] - }, - { - "text": "Speed up the finalisation of the draft law on combating human trafficking and the protection of victims", - "values": [ - "Trafficking" - ] - }, - { - "text": "Study the possibility of creating a follow-up system on international recommendations which includes universal periodic review accepted recommendations", - "values": [ - "UPR process" - ] - }, - { - "text": "Continue to take necessary measures to enable women to be equal partners in development and decision-making ", - "values": [ - "Women's rights" - ] - }, - { - "text": "Provide adequate human and financial resources for the full implementation of the Action Plan Against Human Trafficking for 2008-2009, to establish specialized services to assist the victims of trafficking, and to decrease the vulnerability of women and girls to trafficking", - "values": [ - "Trafficking" - ] - }, - { - "text": "Adopt necessary legislative and administrative measures to guarantee the security and safety of victims of domestic violence and facilitate their access to justice, legal assistance and medical and physiological care.", - "values": [ - "Rights of the Child", - "Women's rights" - ] - }, - { - "text": "Consider extending a standing invitation to all special procedures", - "values": [ - "Special procedures" - ] - }, - { - "text": "Ensure that conscientious objection to military service is available to individuals irrespective of their religion or belief and that the process for consideration applications is under civilian control and to provide a non-punitive civilian alternative service", - "values": [ - "Freedom of religion and belief" - ] - }, - { - "text": "Continue pursuing appropriate, efficient policies aimed at further improving the access of Roma to education and consider the adoption of additional measures, as recommended by the national human rights institutions ", - "values": [ - "Minorities", - "Right to education" - ] - }, - { - "text": "Amend legislation in force to prevent the imposition of the death penalty and life imprisonment for offenses committed by minors under the age of 18 years, with a view to abolishing the death penalty ", - "values": [ - "Death penalty", - "Rights of the Child" - ] - }, - { - "text": "Strengthen cooperation with civil society on promoting nondiscrimination and protecting the rights of migrants, refugees and asylum seekers ", - "values": [ - "Asylum-seekers - refugees", - "Migrants" - ] - }, - { - "text": "Continue to investigate, in an independent and impartial manner, all human rights violations committed during the conflict and its aftermath, and to prosecute perpetrators and ensure proper redress to the victims affected, in this regard", - "values": [ - "Impunity" - ] - }, - { - "text": "Consider signing and ratifying international instruments to which it is not a party, especially the International Covenant on Economic, Social and Cultural Rights, the Convention against Torture and Other Cruel, Inhuman or Degrading Treatment or Punishment and its Optional Protocol, and the Convention on the Rights of Persons with Disabilities ", - "values": [ - "Detention", - "Disabilities", - "ESC rights - general", - "International instruments", - "Torture and other CID treatment" - ] - }, - { - "text": "Continue the efforts to make primary and general secondary education and related training free of charge, with the help of the international community ", - "values": [ - "Right to education", - "Technical assistance and cooperation" - ] - }, - { - "text": "Consider ratifying the Rome Statute of the International Criminal Court, as well as the Second Optional Protocol to the International Covenant on Civil and Political Rights", - "values": [ - "Death penalty", - "International instruments", - "Justice" - ] - }, - { - "text": "Actively engage in the fight against racially motivated crimes ", - "values": [ - "Racial discrimination" - ] - }, - { - "text": "Repeal provisions of the Hadood Ordinances that criminalize non-marital consensual sex and fail to recognize marital rape", - "values": [ - "Rights of the Child", - "Women's rights" - ] - }, - { - "text": "Enact and implement legislation that protects children, and set the minimum age for marriage at 18 for both girls and boys ", - "values": [ - "Rights of the Child" - ] - }, - { - "text": "Strengthen policies and measures aimed at the economic empowerment of the rural population and ensure their access to health-care services, education and social services ", - "values": [ - "Development", - "Right to education", - "Right to health" - ] - }, - { - "text": "Strengthen the independence and mandate of its National Centre for Human Rights so as to enable it to function in compliance with the Paris Principles ", - "values": [ - "National Human Rights Institution" - ] - }, - { - "text": "Enact and enforce legislation to afford legal protection from violence and discrimination to all its citizens, including women, girls, the lesbian, gay, bisexual, transgender and intersex community and religious minorities, including through effective prosecutions in accordance with the rule of law", - "values": [ - "Freedom of religion and belief", - "Minorities", - "Rights of the Child", - "Sexual Orientation and Gender Identity", - "Women's rights" - ] - }, - { - "text": "Combat torture committed in particular by law enforcement officers and in prisons and ensure that such acts not remain unpunished", - "values": [ - "Detention", - "Human rights violations by state agents", - "Torture and other CID treatment" - ] - }, - { - "text": "Continuing to pursue environmental education and sustainable development", - "values": [ - "Development", - "Environment" - ] - }, - { - "text": "Ensure fulfilment of recommendations accepted by Yemen during its previous UPR to cease threats against journalists, to take steps to guarantee and promote freedom of expression and to amend and enforce the Press and Publication Act ", - "values": [ - "Freedom of opinion and expression", - "Freedom of the press", - "UPR process" - ] - }, - { - "text": "In line with the observation made by the Committee on the Elimination of Racial Discrimination, ensure proper investigation and continue its actions to stop hate crimes ", - "values": [ - "Racial discrimination", - "Treaty bodies" - ] - }, - { - "text": "Ensure the application of the legislation against trafficking in persons for purposes of labour and sexual exploitation, by undertaking the greatest efforts for the identification, protection and rehabilitation of victims and the investigation and prosecution of those responsible", - "values": [ - "Labour", - "Trafficking" - ] - }, - { - "text": "Prosecute all acts of domestic and sexual violence against women and girls", - "values": [ - "Rights of the Child", - "Women's rights" - ] - }, - { - "text": "Expedite action on the bill currently under consideration aimed at promoting and protecting the rights of persons with disabilities", - "values": [ - "Disabilities" - ] - }, - { - "text": "Strengthen partnerships between official institutions and the national human rights institutions through the implementation of the bilateral programmes of cooperation", - "values": [ - "National Human Rights Institution", - "Technical assistance and cooperation" - ] - }, - { - "text": "Continue its efforts to fight against poverty ", - "values": [ - "Poverty" - ] - }, - { - "text": "Sign the Optional Protocol to CEDAW and the Optional Protocols to CRC ", - "values": [ - "International instruments", - "Rights of the Child", - "Women's rights" - ] - }, - { - "text": "Adopt measures to curb discrimination against women and violence against children ", - "values": [ - "Rights of the Child", - "Women's rights" - ] - }, - { - "text": "Finalize and adopt the Sexual Offences Bill currently under consideration. ", - "values": [ - "Sexual Orientation and Gender Identity" - ] - }, - { - "text": "Continue the necessary efforts in order to strengthen the right to education, and include within the education process a culture of human rights ", - "values": [ - "Human rights education and training", - "Right to education" - ] - }, - { - "text": "Ensure strict compliance of laws relating to gender-based violence", - "values": [ - "Women's rights" - ] - }, - { - "text": "Work in close collaboration with civil society organizations so as to implement all of the recommendations accepted during the universal periodic review", - "values": [ - "Civil society", - "UPR process" - ] - }, - { - "text": "Provide sufficient resources and capacity building for the Citizens Relations Unit to address dangers of a heavy military presence on the streets designed to curb organised crime", - "values": [ - "Public security" - ] - }, - { - "text": "Tackle advocacy of religious hatred that constitutes incitement to discrimination, hostility or violence in political discourse and in the media", - "values": [ - "Racial discrimination" - ] - }, - { - "text": "Ensure by legislative and other measures that women in Northern Ireland are entitled to safe and legal abortion on equal basis with women living in other parts of the United Kingdom ", - "values": [ - "Women's rights" - ] - }, - { - "text": "Ensure the full protection of the right to freedom of opinion and expression, to peaceful assembly and to freedom of association", - "values": [ - "Freedom of association and peaceful assembly", - "Freedom of opinion and expression" - ] - }, - { - "text": "Share national best practice and policies on ensuring nondiscrimination, including proposals such as to include sexual orientation in the Constitution, with States and relevant international organizations ", - "values": [ - "Sexual Orientation and Gender Identity" - ] - }, - { - "text": "Abolish legal provisions that criminalize the dissemination of information considered to tarnish the Libyan Arab Jamahiriya's reputation abroad, including article 178 of the Libyan Penal Code", - "values": [ - "Freedom of opinion and expression" - ] - }, - { - "text": "Take necessary measures to ensure gender equality in wages in the labour sector", - "values": [ - "Women's rights" - ] - }, - { - "text": "Continue the promulgation and enactment of laws to combat discrimination against women", - "values": [ - "Women's rights" - ] - }, - { - "text": "Ratify, without reservations, the Convention on the Non Applicability of Statutory Limitations to War Crimes and Crimes against Humanity", - "values": [ - "International instruments", - "Justice" - ] - }, - { - "text": "Continue efforts to fight poverty.", - "values": [ - "Poverty" - ] - }, - { - "text": "Ensure that human rights defenders are able to carry out their legitimate work in a secure and free environment.", - "values": [ - "Human rights defenders" - ] - }, - { - "text": "Do not further liberalize abortion and instead implement laws aimed at protecting the right to life of the unborn, recognizing that life starts at conception, and further, affirm that there is no international right to abortion", - "values": [ - "Women's rights" - ] - }, - { - "text": "Take all necessary measures to establish a national human rights institution according to the Paris Principles ", - "values": [ - "National Human Rights Institution" - ] - }, - { - "text": "Adopt a comprehensive anti-discrimination law that addresses the worrying trend of incidents based on gender, sexual orientation, racial and ethnic discrimination ", - "values": [ - "Minorities", - "Racial discrimination", - "Sexual Orientation and Gender Identity" - ] - }, - { - "text": "Consider issuing a standing invitation to the United Nations special procedures ", - "values": [ - "Special procedures" - ] - }, - { - "text": "Fully integrate IDP children in the regular education system ", - "values": [ - "Internally displaced persons", - "Right to education", - "Rights of the Child" - ] - }, - { - "text": "Integrate the various regional and international human rights instruments to which it is a party concerning the death penalty into its domestic legislation ", - "values": [ - "Death penalty", - "International instruments" - ] - }, - { - "text": "Provide free legal aid to women without sufficient means in order to facilitate their access to justice", - "values": [ - "Justice", - "Women's rights" - ] - }, - { - "text": "Continue its efforts to enact laws in the area of equality of opportunity and rights for men and women ", - "values": [ - "Women's rights" - ] - }, - { - "text": "Proposed constitutional reform should provide for the comprehensive protection and promotion of all human rights and fundamental freedoms ", - "values": [ - "General" - ] - }, - { - "text": "Introduce comprehensive legislation on discrimination and equality of men and women", - "values": [ - "Women's rights" - ] - }, - { - "text": "Incorporate a human rights perspective in its legal and regulatory framework on combating substance abuse and undertake transparent narcotic law enforcement, active campaign against drug use to the public, and rehabilitation programmes", - "values": [ - "Public security" - ] - }, - { - "text": "Report regularly to the Committee on the Elimination of Discrimination against Women and the Committee on the Rights of the Child", - "values": [ - "Rights of the Child", - "Treaty bodies", - "Women's rights" - ] - }, - { - "text": "Pursue initiatives aimed at reinforcing the provision of economic, social and cultural rights with a view to promoting sustainable development and transition to a green economy ", - "values": [ - "Development", - "ESC rights - general" - ] - }, - { - "text": "Consider introducing a specific prohibition with respect to the sale of arms when the final destination is a country where children may potentially be recruited or used in hostilities ", - "values": [ - "International humanitarian law", - "Rights of the Child", - "Trafficking" - ] - }, - { - "text": "Continue its policy aimed at diversifying its economy, with the objective of enhancing economic and social rights and the Angolan people's right to development", - "values": [ - "Development" - ] - }, - { - "text": "Establish a national preventive mechanism to prevent torture ", - "values": [ - "Detention", - "Torture and other CID treatment" - ] - }, - { - "text": "Consider legal reform to improve access to justice for the poorest plaintiffs, including measures to address high lawyer fees and the centralization of courts ", - "values": [ - "Justice" - ] - }, - { - "text": "Make greater efforts to promote economic and social rights in a manner conducive to the furtherance of rights in the fields of labour, education, health and housing ", - "values": [ - "Labour", - "Right to education", - "Right to health", - "Right to housing" - ] - }, - { - "text": "Ensure in law and in practice the protection of women against all forms of violence ", - "values": [ - "Women's rights" - ] - }, - { - "text": "Consider establishing mechanisms preventing security forces from using force in an excessive or unjustified manner, especially against peaceful protesters", - "values": [ - "Freedom of association and peaceful assembly", - "Human rights violations by state agents" - ] - }, - { - "text": "Step up efforts to raise awareness through campaigns or other concrete initiatives in order to promote understanding and tolerance toward the Roma minority in the Czech society", - "values": [ - "Human rights education and training", - "Minorities" - ] - }, - { - "text": "Extend a standing invitation to United Nations special procedures ", - "values": [ - "Special procedures" - ] - }, - { - "text": "Ensure that law enforcement officials receive necessary training, including on human rights standards, domestic legal protections, and the appropriate use of force", - "values": [ - "Human rights education and training" - ] - }, - { - "text": "Continue its fight against poverty, lack of adequate food, safe water and sanitation, while paying special attention to the need to introduce a child rights-based approach in all policies", - "values": [ - "Development", - "Poverty", - "Right to food", - "Right to water and sanitation", - "Rights of the Child" - ] - }, - { - "text": "Implement the recommendations contained in the 2013 report of the Inter-American Commission on Human Rights on the status of persons deprived of liberty in Honduras, and that the national penitentiary policy is finalized and implemented accordingly", - "values": [ - "Detention" - ] - }, - { - "text": "Establish an agile and efficient mechanism to respond to the requests for information formulated by special procedures in their communications (allegations and urgent appeals) and assign the means necessary to grant protection to the people and groups referred to in those communications.", - "values": [ - "Special procedures" - ] - }, - { - "text": "Ensure equal access for girls and women to all levels of education in all regions", - "values": [ - "Right to education", - "Rights of the Child", - "Women's rights" - ] - }, - { - "text": "Establish permanent mechanisms to carry out investigations into cases of sexual exploitation, and provide victims with the assistance and services necessary for their rehabilitation ", - "values": [ - "Rights of the Child", - "Women's rights" - ] - }, - { - "text": "Reduce administrative obstacles and registration requirements applicable to peaceful religious activities by registered and non-registered religious groups in order to guarantee freedom of religion or belief ", - "values": [ - "Freedom of religion and belief" - ] - }, - { - "text": "Strengthen its efforts to achieve universal birth registration, including by establishing permanent and automated birth registration services in all pre-and post natal healthcare institutions. These services should be accessible to all people throughout the whole country, including in rural areas ", - "values": [ - "Rights of the Child", - "Statelessness and the right to nationality" - ] - }, - { - "text": "Amend the Family Safety Act to provide anonymity and protection for those who make complaints of family violence under the Act", - "values": [ - "Women's rights" - ] - }, - { - "text": "Incorporate lessons learned from the Ebola crisis in future policies and actions for human rights promotion and protection, including in the Constitutional Review Process", - "values": [ - "Human rights education and training", - "Right to health" - ] - }, - { - "text": "Further work on political, economic and social empowerment of women ", - "values": [ - "Women's rights" - ] - }, - { - "text": "Implement the recommendations of the Special Rapporteur on minority issues to promote linguistic rights of minorities and to take the necessary measures to guarantee quality education in both the mother tongue and the State language", - "values": [ - "Minorities", - "Right to education", - "Special procedures" - ] - }, - { - "text": "Improve the collection of hate-crime data by law enforcement authorities and encourage victims to report hate crimes and incidents ", - "values": [ - "Racial discrimination" - ] - }, - { - "text": "Further strengthen efforts to ensure equal access of girls and women to all levels of education ", - "values": [ - "Right to education", - "Rights of the Child", - "Women's rights" - ] - }, - { - "text": "Strengthen and enforce its various commitments to embracing its cultural diversity and ensuring the safety of and equal opportunities for all citizens ", - "values": [ - "Minorities" - ] - }, - { - "text": "Take further measures to ensure the accessibility of HIV/AIDS-related health services", - "values": [ - "HIV - Aids", - "Right to health" - ] - }, - { - "text": "Do all that is necessary to accelerate the drawing up of the various legal texts to reaffirm and reinforce the equality between all ethnic, cultural and linguistic components of Nepali society ", - "values": [ - "Minorities" - ] - }, - { - "text": "Bring all settlements building in the occupied Palestinian and Arab Territories to a halt", - "values": [ - "Other" - ] - }, - { - "text": "In line with Human Rights Council resolution 9-12, consider elaborating a national human rights programme and plan of action to strengthen the capacity of the State to promote and protect human rights ", - "values": [ - "General" - ] - }, - { - "text": "Recognize under criminal law the explicit prohibition of sexual exploitation and abuse of children, as recommended by the Committee on the Rights of the Child. ", - "values": [ - "Rights of the Child", - "Treaty bodies" - ] - }, - { - "text": "Continue to develop a policy framework and implement a comprehensive strategy to combat domestic violence that includes education and public awareness for rural areas, strengthened mechanisms to hold offenders to account, and enhanced training for law enforcement officials", - "values": [ - "Human rights education and training", - "Rights of the Child", - "Women's rights" - ] - }, - { - "text": "Continue efforts to eradicate the practice of female genital mutilation by, for example, taking into account the lessons learned by other countries in the region that deal with this practice", - "values": [ - "Rights of the Child", - "Torture and other CID treatment", - "Women's rights" - ] - }, - { - "text": "Step up its efforts made to investigate acts of racial aggression and to punish their perpetrators, and attack in a longstanding way the deep causes of this problem in the framework of reforms of justice ", - "values": [ - "Racial discrimination" - ] - }, - { - "text": "Seek to increase women's political participation and representation in decision-making and women's economic empowerment", - "values": [ - "Women's rights" - ] - }, - { - "text": "With the support and cooperation of the international community, continue to combat diseases such as HIV-AIDS, malaria and tuberculosis, with special attention to the vulnerable.", - "values": [ - "HIV - Aids", - "Right to health", - "Technical assistance and cooperation" - ] - }, - { - "text": "Amend the Criminal Code and the Federal Family Code in order to criminalize marital rape and FGM ", - "values": [ - "Rights of the Child", - "Torture and other CID treatment", - "Women's rights" - ] - }, - { - "text": "Strengthen the Third Basic Plan for Gender Equality and raise related measures to combat violence against women, treating the problems of women belonging to minorities in an effective way", - "values": [ - "Minorities", - "Women's rights" - ] - }, - { - "text": "Continue efforts to improve and facilitate access to the Internet and refrain from any restrictions on content other than permitted under international human rights law, in particular ICCPR", - "values": [ - "CP rights - general", - "International instruments" - ] - }, - { - "text": "Continue efforts to prohibit child labour", - "values": [ - "Labour", - "Rights of the Child" - ] - }, - { - "text": "Expedite the national ratification process of key international conventions which will improve Swazi Government's cooperation with the relevant international bodies", - "values": [ - "International instruments" - ] - }, - { - "text": "Put emphasis on this regional task (Asuncion Protocol of 2005 on MERCOSUR) because it will be beneficial for its own process and will also be worthwhile contribution to other member States and will provide a model which other groups of countries can follow, since it is not common for States to work together in an integration model in order to promote human rights.", - "values": [ - "Other" - ] - }, - { - "text": "Intensify ongoing efforts in the fight against racism, particularly against racial violence ", - "values": [ - "Racial discrimination" - ] - }, - { - "text": "Consider criminalising domestic violence, sexual harassment and ensuring that perpetrators are duly prosecuted", - "values": [ - "Rights of the Child", - "Women's rights" - ] - }, - { - "text": "Sign the Optional Protocol to CRC on Communications Procedure ", - "values": [ - "International instruments", - "Rights of the Child" - ] - }, - { - "text": "Implement more efficiently the existing laws which prohibit the corporal punishment of children ", - "values": [ - "Rights of the Child", - "Torture and other CID treatment" - ] - }, - { - "text": "Accede to the Convention on the Rights of Persons with Disabilities.", - "values": [ - "Disabilities", - "International instruments" - ] - }, - { - "text": "Further strengthen efforts to prevent sexual exploitation of children", - "values": [ - "Rights of the Child" - ] - }, - { - "text": "Pursue the ratification of the Optional Protocol to the Convention on the Elimination of All Forms of Discrimination against Women", - "values": [ - "International instruments", - "Women's rights" - ] - }, - { - "text": "Continue to promote the consolidation of its social policies and combat poverty and inequality, which are still present", - "values": [ - "Poverty" - ] - }, - { - "text": "Put in place measures for the safety and security of foreign workers and effectively implement the Anti-Human Trafficking Act", - "values": [ - "Migrants", - "Trafficking" - ] - }, - { - "text": "Repeal the emergency powers and the Sedition Act to bring Brunei's domestic legislation into line with its international human rights commitments on the freedoms of expression, of peaceful assembly and of association ", - "values": [ - "Freedom of association and peaceful assembly", - "Freedom of opinion and expression", - "Freedom of the press", - "International instruments" - ] - }, - { - "text": "Continue efforts to provide comprehensive health care to all people in Nicaragua, including through improving access and services in rural areas, with the aim, inter alia, to close the gap between the infant mortality rate in rural and urban areas", - "values": [ - "Right to health", - "Rights of the Child" - ] - }, - { - "text": "Strengthen existing measures to protect the rights of children and girl child from all forms of abuse and exploitations and also adopt necessary guidelines and procedures to fully enforce the Juvenile Justice Act", - "values": [ - "Justice", - "Rights of the Child", - "Women's rights" - ] - }, - { - "text": "Sign and ratify OP-CEDAW ", - "values": [ - "International instruments", - "Women's rights" - ] - }, - { - "text": "Undertake prompt, thorough and impartial investigations of all human rights violations, in particular against women and children and hold those responsible to account", - "values": [ - "Rights of the Child", - "Women's rights" - ] - }, - { - "text": "Redouble efforts to identify victims of human trafficking among asylum seekers, in particular unaccompanied children", - "values": [ - "Asylum-seekers - refugees", - "Rights of the Child", - "Trafficking" - ] - }, - { - "text": "Strengthen its programmes aimed at providing assistance to women in difficult circumstances, particularly those coming from other countries and who are brought into the territory of Slovakia for the purposes of prostitution.", - "values": [ - "Women's rights" - ] - }, - { - "text": "The delegation expressed the Government's commitment to continue its work towards further improvement of national legislation and practice in human rights, taking into account international standards and commitments.", - "values": [ - "International instruments" - ] - }, - { - "text": "Develop a well-functioning human rights infrastructure, including by establishing a national human rights institution, strengthening the mandate of the Ombudsman", - "values": [ - "National Human Rights Institution" - ] - }, - { - "text": "Consider accepting the individual complaint procedure under article 14 of the International Convention on the Elimination of all Forms of Racial Discrimination.", - "values": [ - "International instruments", - "Racial discrimination" - ] - }, - { - "text": "Strengthen prison reform efforts to protect female prisoners from sexual abuse and violence", - "values": [ - "Detention", - "Women's rights" - ] - }, - { - "text": "In relation to armed conflicts in Darfur, South Kordofan, and Blue Nile, with multiple attacks against the civilian population, take concrete measures for the displaced population and in order to facilitate for humanitarian access ", - "values": [ - "Internally displaced persons", - "International humanitarian law" - ] - }, - { - "text": "Continue hosting and sponsoring international conferences to promote a constructive dialogue among the different religions and beliefs ", - "values": [ - "Freedom of religion and belief" - ] - }, - { - "text": "Continue strengthening efforts for providing quality and accessible health facilities and services to improve the disparity in life expectancy among the populations", - "values": [ - "Right to health" - ] - }, - { - "text": "Take all necessary measures for the effective implementation and dissemination of the Family Protection Act throughout the country, including in the most remote areas. In particular, in this respect, to provide sufficient funding to the department in charge of the implementation of this legislation ", - "values": [ - "Rights of the Child", - "Women's rights" - ] - }, - { - "text": "Maintain its efforts to continue reaching a higher level of human rights standards with regard to the issues of freedom of the media, functioning of the judiciary and the situation of refugees.", - "values": [ - "Asylum-seekers - refugees", - "Freedom of the press", - "Justice" - ] - }, - { - "text": "Take immediate and effective time-bound measures to eradicate the forced labour of, or hazardous work, by children ", - "values": [ - "Labour", - "Rights of the Child" - ] - }, - { - "text": "Revise article 261 bis of the Swiss Penal Code, the legal instrument against racism, in line with the decision of the Grand Chamber of the European Court of Human Rights regarding the Perinçek case to ensure the freedom of expression on a historical issue which is matter of legitimate scholarly debate", - "values": [ - "Freedom of opinion and expression", - "Racial discrimination" - ] - }, - { - "text": "Accelerate the entry into force of the new programme for the protection of refugees and ensure that it guarantees the protection of the best interest of the child and fully complies with international standards regarding unaccompanied migrant children and family reunification", - "values": [ - "Asylum-seekers - refugees", - "Rights of the Child" - ] - }, - { - "text": "Ratify the main human rights instruments, in particular the International Covenant on Economic, Social and Cultural Rights, the International Covenant on Civil and Political Rights and the Convention against Torture", - "values": [ - "CP rights - general", - "ESC rights - general", - "International instruments", - "Torture and other CID treatment" - ] - }, - { - "text": "Take further action to ensure the effective implementation and formulation of legislation that guarantees/ensures equality and protection of women", - "values": [ - "Women's rights" - ] - }, - { - "text": "Continue its efforts in order to eliminate poverty and extreme poverty", - "values": [ - "Poverty" - ] - }, - { - "text": "Continue to develop education policies aimed at ensuring access to education for all, especially the poor and those living in rural areas ", - "values": [ - "Poverty", - "Right to education" - ] - }, - { - "text": "Ensure full implementation of the principle of non-discrimination, inter alia, by amending domestic legislation and increasing awareness among the population ", - "values": [ - "Human rights education and training" - ] - }, - { - "text": "Consider taking all necessary steps to introduce a de jure moratorium on capital executions with a view to fully abolish the death penalty, and to ratify the Second Optional Protocol to the International Covenant on Civil and Political Rights", - "values": [ - "Death penalty", - "International instruments" - ] - }, - { - "text": "Continue to strengthen efforts to eliminate discrimination in employment and occupation faced particularly by women and Roma persons, pursuant to the recommendations of ILO supervisory bodies ", - "values": [ - "Labour", - "Racial discrimination", - "Women's rights" - ] - }, - { - "text": "Continue its efforts to continue raising awareness at the community level and to fully implement its National Action Plan on Violence against Women", - "values": [ - "Women's rights" - ] - }, - { - "text": "Continue its endeavours on development and poverty alleviation throughout the community, notably for vulnerable groups, such as women and children", - "values": [ - "Development", - "Poverty", - "Rights of the Child", - "Women's rights" - ] - }, - { - "text": "Take all necessary measures to ensure that perpetrators of all forms of slavery are systematically brought before justice and that victims benefit from a protection and compensation system ", - "values": [ - "Other" - ] - }, - { - "text": "Recognize the right of refugees to return to their homes ", - "values": [ - "Asylum-seekers - refugees" - ] - }, - { - "text": "Establish concrete measures to guarantee that the rights of asylum seekers and refugees are upheld, particularly women and children in immigration detention or processing centres", - "values": [ - "Asylum-seekers - refugees", - "Detention", - "Migrants", - "Rights of the Child", - "Women's rights" - ] - }, - { - "text": "Amend its national law to guarantee equality between men and women and ensure that customs and traditional practices cannot be used in law to discriminate against women ", - "values": [ - "Women's rights" - ] - }, - { - "text": "Review the implementation of the National Human Rights Action Plan 2009-2012 to assess its effectiveness, evaluate possible strong points or areas for improvement, and identify needs for capacity-building and opportunities for international cooperation in the promotion and protection of human rights", - "values": [ - "Technical assistance and cooperation" - ] - }, - { - "text": "Develop a national plan of action for the implementation of children's rights and adopt a holistic child rights approach ", - "values": [ - "Rights of the Child" - ] - }, - { - "text": "Continue cooperation with the mandate of the Special Rapporteur on the situation of human rights in Cambodia and implement his recommendations ", - "values": [ - "Special procedures" - ] - }, - { - "text": "Consider ratifying ICRMW as well as ILO Convention no.189 on decent work of domestic workers ", - "values": [ - "International instruments", - "Labour", - "Migrants" - ] - }, - { - "text": "Step up efforts to combat racism and ensure elimination of all acts of racial intolerance", - "values": [ - "Racial discrimination" - ] - }, - { - "text": "Continue to develop government-sponsored initiatives which focus solely on ending domestic violence and sexual and gender-based violence, particularly through implementing the recommendations of the Taskforce for Action on Sexual Violence and the National Sexual Violence Prevention Plan ", - "values": [ - "Rights of the Child", - "Women's rights" - ] - }, - { - "text": "In the framework of efforts by the Government to raise school enrolment, strengthen the measures aimed at eliminating social, economic and cultural barriers that are obstacles to access and stay of children in the school system, including through setting up a multisectorial strategy to that end ", - "values": [ - "Right to education", - "Rights of the Child" - ] - }, - { - "text": "Strengthen the efforts to effectively fight child labour and child trafficking by taking more preventive measures and implementing more punitive measures", - "values": [ - "Labour", - "Rights of the Child", - "Trafficking" - ] - }, - { - "text": "Continue its efforts in order to increase the participation of women in decision-making bodies and public institutions ", - "values": [ - "Women's rights" - ] - }, - { - "text": "Continue and strengthen educational measures which promote a more integrated system of education that favours migrants, ethnic minorities, women and girls and the Roma community in particular ", - "values": [ - "Migrants", - "Minorities", - "Right to education", - "Rights of the Child", - "Women's rights" - ] - }, - { - "text": "Implement the large number of European Court of Human Rights decisions like the one concerning the Orphanage on Prince Island, which belongs to the Orthodox Ecumenical Patriarchate, or the ones that have found that Turkey is liable for numerous violations of ECHR articles in Cyprus, namely in the occupied northern part ", - "values": [ - "Other" - ] - }, - { - "text": "Adopt a comprehensive policy against human trafficking and establish a mechanism to provide support to victims, in particular to children exploited in the commercial sex industry and trafficked for prostitution", - "values": [ - "Rights of the Child", - "Trafficking" - ] - }, - { - "text": "Repeal all legislation which undermines the freedom of expression and assembly and ensure that all measures regarding these freedoms are consistent with Thailand's obligations under international law", - "values": [ - "Freedom of association and peaceful assembly", - "Freedom of opinion and expression" - ] - }, - { - "text": "Continue its efforts aimed at ensuring greater respect for the rights of migrants", - "values": [ - "Migrants" - ] - }, - { - "text": "Draft, enact, and implement legislation that provides greater protection for political rights ", - "values": [ - "CP rights - general" - ] - }, - { - "text": "Immediately repeal legislation that provides for the possibility to impose the death penalty for cases related to freedom of speech, in particular section 295C of the Penal Code, in order to ensure compliance with articles 6 and 19 of the International Covenant on Civil and Political Rights", - "values": [ - "Death penalty", - "Freedom of opinion and expression", - "International instruments" - ] - }, - { - "text": "Enact a law prohibiting discrimination, including on the basis of age, gender, religion, sexual orientation or ethnicity, and that other necessary measures be undertaken to ensure gender equality", - "values": [ - "Freedom of religion and belief", - "Minorities", - "Racial discrimination", - "Sexual Orientation and Gender Identity", - "Women's rights" - ] - }, - { - "text": "Adopt a comprehensive law on domestic violence", - "values": [ - "Rights of the Child", - "Women's rights" - ] - }, - { - "text": "Adopt effective legislative measures to guarantee protection of human rights defenders", - "values": [ - "Human rights defenders" - ] - }, - { - "text": "Adopt a national mechanism for the prevention of torture, which should have access to all places of detention, and abrogate the law providing for a statutory limitation regarding acts of torture ", - "values": [ - "Detention", - "Torture and other CID treatment" - ] - }, - { - "text": "Share its experience and lessons learnt in South-South Cooperation in the field of the promotion of the right to education", - "values": [ - "Right to education" - ] - }, - { - "text": "Continue efforts to increase its Official Development Assistance to developing countries, which now stands at 0.4 per-cent of GNI as compared to the agreed 0.7, to assist them to provide for the basic economic, social and cultural rights of their populations", - "values": [ - "Development", - "ESC rights - general" - ] - }, - { - "text": "Continue the policy on the protection and support of the family institution as a fundamental basis of society", - "values": [ - "Other" - ] - }, - { - "text": "Ensure the welfare of all segments of society in an inclusive manner, including those of migrants", - "values": [ - "Migrants" - ] - }, - { - "text": "Continue to maintain contact and constructive dialogue with the human rights treaty bodies", - "values": [ - "Treaty bodies" - ] - }, - { - "text": "Seek to ensure the protection of all child victims and/or witnesses of crimes and comply with the United Nations Guidelines on Justice in Matters involving Child Victims and Witnesses of Crime ", - "values": [ - "Justice", - "Rights of the Child" - ] - }, - { - "text": "Consider signing the Convention on the Protection of Persons from Enforced Disappearance.", - "values": [ - "Enforced disappearances", - "International instruments" - ] - }, - { - "text": "Designate members of the Supreme Court and the Constitutional Tribunal who are of proven technical ability and are independent of any external influence", - "values": [ - "Justice" - ] - }, - { - "text": "Adopt, as a matter of urgency, a national law against racism, discrimination and xenophobia.", - "values": [ - "Racial discrimination" - ] - }, - { - "text": "Consider improving existing administrative frameworks to better manage and process refugees and asylum seekers in the country ", - "values": [ - "Asylum-seekers - refugees" - ] - }, - { - "text": "Ratify the Convention against Torture and Other Cruel, Inhuman or Degrading Treatment or Punishment and the International Convention for the Protection of All Persons from Enforced Disappearance", - "values": [ - "Enforced disappearances", - "International instruments", - "Torture and other CID treatment" - ] - }, - { - "text": "Ratify those treaties which have not yet been ratified, such as the Optional Protocol to CESCR and CRPD and its Optional Protocol", - "values": [ - "Disabilities", - "ESC rights - general", - "International instruments" - ] - }, - { - "text": "Ratify as soon as possible the Convention on the Rights of Persons with Disabilities, without any reservation ", - "values": [ - "Disabilities", - "International instruments" - ] - }, - { - "text": "Further strengthen its efforts on implementing the first cycle's recommendation no 4 on protection of witnesses and victim", - "values": [ - "Justice" - ] - }, - { - "text": "Become a party to the UNESCO Convention against Discrimination in Education ", - "values": [ - "International instruments", - "Right to education" - ] - }, - { - "text": "Further strengthen the institutions and mechanisms to ensure the implementation and follow-up of human rights public policies", - "values": [ - "General" - ] - }, - { - "text": "Consider ratification of the Optional Protocol to the Convention on the Elimination of All Forms of Discrimination against Women.", - "values": [ - "International instruments", - "Women's rights" - ] - }, - { - "text": "Enact laws which fully abolish child, early and forced marriage", - "values": [ - "Rights of the Child", - "Women's rights" - ] - }, - { - "text": "Continue the provision of free and universal access to public health ", - "values": [ - "Right to health" - ] - }, - { - "text": "Develop and adopt further measures to prevent and combat sexual violence against women", - "values": [ - "Women's rights" - ] - }, - { - "text": "Consider establishing a formal moratorium on executions of persons condemned to death and examine the possibility of abolishing the death penalty", - "values": [ - "Death penalty" - ] - }, - { - "text": "Continue its efforts aimed at eliminating child labour and ensuring an education with dignity and of quality for Ecuadorian children and adolescents", - "values": [ - "Labour", - "Right to education", - "Rights of the Child" - ] - }, - { - "text": "Continue its close cooperation with OHCHR", - "values": [ - "Other" - ] - }, - { - "text": "Effectively implement the national plan against discrimination with the active participation of all interested groups", - "values": [ - "Other" - ] - }, - { - "text": "Take steps to reduce the employment gap among immigrants through provision of employment opportunities ", - "values": [ - "Development", - "Migrants" - ] - }, - { - "text": "Ensure that any person, including human rights defenders, members of civil society and journalists can exercise their legitimate activities without fear of reprisals, as well as ensure their rights to freedom of expression and peaceful assembly, in line with the obligations under the International Covenant on Civil and Political Rights ", - "values": [ - "Civil society", - "Freedom of association and peaceful assembly", - "Freedom of opinion and expression", - "Human rights defenders", - "International instruments" - ] - }, - { - "text": "Amend its Constitution to include sex and gender as prohibited grounds of discrimination", - "values": [ - "Sexual Orientation and Gender Identity", - "Women's rights" - ] - }, - { - "text": "Adopt necessary measures to secure full respect for freedom of expression.", - "values": [ - "Freedom of opinion and expression" - ] - }, - { - "text": "Review, amend and repeal its national discriminatory laws and regulations against persons of certain religious backgrounds, in particular Muslim migrants ", - "values": [ - "Freedom of religion and belief", - "Migrants", - "Racial discrimination" - ] - }, - { - "text": "Enhance efforts to ensure the safety and rights of migrants", - "values": [ - "Migrants" - ] - }, - { - "text": "Encourage States that had not yet done so to become parties to the major human rights instruments and, accordingly, to comply with their obligations thereunder", - "values": [ - "International instruments" - ] - }, - { - "text": "Sign and ratify both Optional Protocols to the ICCPR", - "values": [ - "CP rights - general", - "Death penalty", - "International instruments" - ] - }, - { - "text": "Further the on-going reform process in order to consolidate democracy and rule of law ", - "values": [ - "Justice" - ] - }, - { - "text": "Take the necessary measures to ensure due process and independence of witnesses, judges and prosecutors", - "values": [ - "Justice" - ] - }, - { - "text": "Enforce its law on human trafficking to institute a process enabling law enforcement officials to document human trafficking cases and refer victims for assistance to increase efforts to raise public awareness about labour trafficking and to prosecute public officials suspected of trafficking-related complicity", - "values": [ - "Trafficking" - ] - }, - { - "text": "Intensify efforts to ensure better integration of minorities.", - "values": [ - "Minorities" - ] - }, - { - "text": "Review and amend its laws to ensure gender equality in all its legislation, amongst others, in the Nationality Law, and guarantee that all Kuwaiti women are able to transfer nationality to their children and ensure to all Kuwaiti women equal access to their social and economic rights ", - "values": [ - "Statelessness and the right to nationality", - "Women's rights" - ] - }, - { - "text": "Dedicate more resources to fight against negative stereotypes in the media, against the most affected minority groups (lesbian, gay, bisexual, transgender and intersex persons, Gypsies, Muslims, refugees and persons granted asylum)", - "values": [ - "Minorities", - "Sexual Orientation and Gender Identity" - ] - }, - { - "text": "Ratify the the Optional Protocol to the Convention against Torture and establish a strong and independent national preventive mechanism", - "values": [ - "Detention", - "International instruments", - "Torture and other CID treatment" - ] - }, - { - "text": "Take measures with a view to preventing and combating of arbitrary arrest, violence, abuse and exploitation of migrants ", - "values": [ - "Migrants" - ] - }, - { - "text": "Improve the critical situation for women by taking measures including the elimination of forced and early marriage and female genital mutilation, as well as by increasing the representation of women in the political decision-making process ", - "values": [ - "Rights of the Child", - "Torture and other CID treatment", - "Women's rights" - ] - }, - { - "text": "Give priority to facilitating the visits requested by Special Rapporteurs of the Human Rights Council", - "values": [ - "Special procedures" - ] - }, - { - "text": "Continue efforts to ensure the right to education", - "values": [ - "Right to education" - ] - }, - { - "text": "Guarantee the right to freedom of expression in the country, including by putting an end to all acts of intimidation and harassment carried out by security forces against journalists, and by prosecuting those held responsible", - "values": [ - "Freedom of opinion and expression", - "Freedom of the press", - "Human rights violations by state agents" - ] - }, - { - "text": "Adopt a national policy pertaining to children with disability, to take measures to tackle discrimination and to promote gender equality in the field of education and to guarantee a favourable climate for the activities of human rights defenders, journalists and other actors in civil society", - "values": [ - "Civil society", - "Disabilities", - "Freedom of the press", - "Human rights defenders", - "Rights of the Child", - "Women's rights" - ] - }, - { - "text": "Develop and implement a comprehensive strategy to protect human rights defenders, including those working on behalf of the rights of lesbian, gay, bisexual and transgender persons and ensure the effective investigation of alleged attacks against human rights defenders.", - "values": [ - "Human rights defenders", - "Sexual Orientation and Gender Identity" - ] - }, - { - "text": "Continue taking effective measures to eliminate discrimination against Bedouin women and strengthen the respect of their fundamental rights through concrete and voluntary measures", - "values": [ - "Minorities", - "Women's rights" - ] - }, - { - "text": "Initiate the procedures aimed at ratifying the Convention against Torture", - "values": [ - "International instruments", - "Torture and other CID treatment" - ] - }, - { - "text": "Continue to strengthen the successful social policies undertaken to meet the needs of its people, especially in the most needy areas of society, that unfair economic sanctions imposed should be lifted and international cooperation should be provided without any condition ", - "values": [ - "Other" - ] - }, - { - "text": "Ensure that it (the National Council for Human Rights) effectively performs its tasks and avoid duplication with other human rights bodies", - "values": [ - "National Human Rights Institution" - ] - }, - { - "text": "Decriminalize homosexuality by abrogating the legal provision that currently penalizes sexual relations with persons of the same sex, and sign the joint statement made in the General Assembly in December 2008 on human rights, sexual orientation and gender identity ", - "values": [ - "Sexual Orientation and Gender Identity" - ] - }, - { - "text": "Establish a national human rights institution and consider designating the national preventative mechanism under the Optional Protocol to the Convention against Torture and Other Cruel, Inhuman or Degrading Treatment or Punishment ", - "values": [ - "Detention", - "International instruments", - "National Human Rights Institution", - "Torture and other CID treatment" - ] - }, - { - "text": "Continue to improve socioeconomic development strategies and plans in order to avoid xenophobia and other forms of intolerance towards foreigners in South Africa", - "values": [ - "Development", - "Racial discrimination" - ] - }, - { - "text": "Put in place a comprehensive strategy for dealing with issues of racism and racial discrimination ", - "values": [ - "Racial discrimination" - ] - }, - { - "text": "Seek technical and financial support from the international community to achieve the MDGs and overcome its economic difficulties exacerbated by the current financial crisis.", - "values": [ - "Development", - "Technical assistance and cooperation" - ] - }, - { - "text": "Ensure that persons with disabilities enjoy the right to access to justice, including simplified legal actions for reporting cases of discrimination as well as remedies when denied reasonable claims, and that persons with intellectual or psychosocial disabilities can act as witnesses in their own claims", - "values": [ - "Disabilities" - ] - }, - { - "text": "Prioritize the finalization of the National Human Rights Action Plan for the Promotion and Protection of Human Rights ", - "values": [ - "General" - ] - }, - { - "text": "Continue with the campaign to eliminate all forms of discrimination, particularly from school age and through human rights education", - "values": [ - "Human rights education and training" - ] - }, - { - "text": "Adopt further measures to combat violence and sexual abuse against girls and women, as well as violence and discrimination based on sexual orientation", - "values": [ - "Rights of the Child", - "Sexual Orientation and Gender Identity", - "Women's rights" - ] - }, - { - "text": "Enhance protection of the rights of the child, including by abolishing child labour, combating malnutrition and shielding child perpetrators during detention", - "values": [ - "Detention", - "Labour", - "Right to food", - "Rights of the Child" - ] - }, - { - "text": "Mainstream human rights in development planning by incorporating cross-cutting issues and promote the right to development", - "values": [ - "Development" - ] - }, - { - "text": "Implement recommendations made by independent electoral observation missions in relation to the conduct of the October 28th Ukrainian parliamentary elections, as a matter of priority", - "values": [ - "Elections" - ] - }, - { - "text": "Take legal and institutional measures to ensure that the reform of the security sector guarantees the strengthening of civil, institutional and legal control of the security forces, as well as their operation within the framework of international human rights obligations", - "values": [ - "International instruments", - "Public security" - ] - }, - { - "text": "Take all necessary measures to ensure that the Office of the National Ombudsman is totally independent in terms of its funding.", - "values": [ - "National Human Rights Institution" - ] - }, - { - "text": "Consider ratifying the Second Optional Protocol to the ICCPR", - "values": [ - "Death penalty", - "International instruments" - ] - }, - { - "text": "Give favourable consideration to the return from Nepal of those refugees with compelling humanitarian needs ", - "values": [ - "Asylum-seekers - refugees" - ] - }, - { - "text": "Investigate fully the reported extrajudicial killings by the Police and bring any persons found guilty to justice", - "values": [ - "Extrajudicial executions", - "Human rights violations by state agents" - ] - }, - { - "text": "Adopt the national anti-torture bill and establish an effective national preventive mechanism", - "values": [ - "Detention", - "Torture and other CID treatment" - ] - }, - { - "text": "Refrain from evicting Arab residents from their homes in Jerusalem.", - "values": [ - "Right to housing" - ] - }, - { - "text": "Guarantee the right to freedom of expression and allow the use of social media without undue restrictions and limitations", - "values": [ - "Freedom of opinion and expression" - ] - }, - { - "text": "Ensure that Constitutional reforms guarantee equal protections, rights and treatment of all individuals, without distinction", - "values": [ - "General" - ] - }, - { - "text": "Take all the necessary measures to identify those responsible for the violations of human rights attributed to policemen and provide a fair compensation for the victims ", - "values": [ - "Human rights violations by state agents" - ] - }, - { - "text": "Continue to help ethnic groups to increase awareness of their rights and responsibilities so that they can improve their living conditions and better enjoy their rights.", - "values": [ - "Minorities" - ] - }, - { - "text": "Recommended that polygamy be eliminated.", - "values": [ - "Women's rights" - ] - }, - { - "text": "Continue its efforts in the domain of access to housing, vital for the realization of several other rights, in order to meet the needs for adequate housing at an affordable price for all segments of the American society ", - "values": [ - "Right to housing" - ] - }, - { - "text": "Strengthen policies that guarantee the human rights of migrant workers ", - "values": [ - "Labour", - "Migrants" - ] - }, - { - "text": "Ratify the Convention on the Rights of Persons with Disabilities and the Optional Protocol to the International Covenant on Economic, Social and Cultural Rights ", - "values": [ - "Disabilities", - "ESC rights - general", - "International instruments" - ] - }, - { - "text": "Lift restrictions on the rights to freedom of opinion and expression, and to take steps to promote freedom of the press in all forms of media", - "values": [ - "Freedom of opinion and expression", - "Freedom of the press" - ] - }, - { - "text": "Accept a visit by the Special Rapporteur on Freedom of Religion or Belief, and to consider giving a standing invitation to Special Procedures ", - "values": [ - "Freedom of religion and belief", - "Special procedures" - ] - }, - { - "text": "Strive to obtain additional assistance from the relevant international institutions in order to confront the problem of poverty and unemployment in the country ", - "values": [ - "Development", - "Poverty", - "Technical assistance and cooperation" - ] - }, - { - "text": "Implement the principle of non-discrimination guaranteed by the Constitution, and guarantee the rights of Bidouns to their nationality", - "values": [ - "Minorities" - ] - }, - { - "text": "Continue its efforts to apply legislation that protects children from economic exploitation and from exposure to hazardous or abusive labour", - "values": [ - "Labour", - "Rights of the Child" - ] - }, - { - "text": "Take concrete steps to eliminate gender-based violence, in particular female genital mutilation", - "values": [ - "Rights of the Child", - "Torture and other CID treatment", - "Women's rights" - ] - }, - { - "text": "Continue its efforts to promulgate laws against human trafficking and on domestic workers", - "values": [ - "Trafficking" - ] - }, - { - "text": "Take all measures to ensure the effective prohibition of female genital mutilation, including, among others, the implementation of awareness-raising programmes for the population about its terrible effects ", - "values": [ - "Human rights education and training", - "Rights of the Child", - "Torture and other CID treatment", - "Women's rights" - ] - }, - { - "text": "Provide financial support to the implementation of the plan of action for vulnerable children", - "values": [ - "Rights of the Child" - ] - }, - { - "text": "Continue efforts to ensure the enrolment of all segments of society in education", - "values": [ - "Right to education" - ] - }, - { - "text": "Continue its admirable international efforts to tackle global warming, including by reminding developed countries and major emitting States of their obligation to help promote and protect human rights in Solomon Islands by reducing greenhouse gas emissions to safe levels ", - "values": [ - "Environment" - ] - }, - { - "text": "Legally abolish the death penalty for all offenses and accede to the Second Optional Protocol to the ICCPR", - "values": [ - "Death penalty", - "International instruments" - ] - }, - { - "text": "Introduce alternatives to imprisonment for minor offences with a view to reducing overcrowding and improving the situation of prisoners in general", - "values": [ - "Detention" - ] - }, - { - "text": "Continue efforts to strengthen national human rights institutions", - "values": [ - "National Human Rights Institution" - ] - }, - { - "text": "Continue its efforts towards enhancing the access to secondary education, particularly for students from rural areas ", - "values": [ - "Right to education" - ] - }, - { - "text": "Comply with its obligations with respect to the right to freedom of expression and information", - "values": [ - "Freedom of opinion and expression" - ] - }, - { - "text": "Request the necessary aid and technical assistance to the international development, to support the initiatives of the National Development Plan", - "values": [ - "Development", - "Technical assistance and cooperation" - ] - }, - { - "text": "Exert further efforts to improve prison conditions ", - "values": [ - "Detention" - ] - }, - { - "text": "Take urgent steps to abolish the system of guardianship", - "values": [ - "Women's rights" - ] - }, - { - "text": "Intensify efforts and effective measures on social and economic development while protecting all vulnerable groups such as women, children, persons with disabilities and migrants, from all forms of discrimination", - "values": [ - "Disabilities", - "ESC rights - general", - "Migrants", - "Racial discrimination", - "Rights of the Child", - "Women's rights" - ] - }, - { - "text": "Lift reservations to articles 9 and 16 of the Convention on the Elimination of All Forms of Discrimination against Women relating to nationality and to discrimination in family relations", - "values": [ - "International instruments", - "Women's rights" - ] - }, - { - "text": "Continue efforts made towards the promotion of a culture of gender equality in society through awareness-raising campaigns", - "values": [ - "Human rights education and training", - "Women's rights" - ] - }, - { - "text": "That the forces of a free society human rights defenders, journalists and lawyers working in defence of a free media, civil liberties and human rights in Kyrgyzstan be allowed to operate in the country", - "values": [ - "Freedom of the press", - "Human rights defenders" - ] - }, - { - "text": "Take all necessary measures to prevent torture and accept the longstanding request of the Special Rapporteur on torture and other cruel, inhuman or degrading treatment or punishment to visit Uzbekistan ", - "values": [ - "Special procedures", - "Torture and other CID treatment" - ] - }, - { - "text": "Implement the recommendations of the Committee on the Rights of the Child, including taking adequate legislative measures to ensure explicit prohibition of sexual exploitation and abuse of children under criminal law, ensuring that children are not criminalized or penalized, and intensify efforts in for implementation of laws and policies protecting children against economic exploitation.", - "values": [ - "Rights of the Child", - "Treaty bodies" - ] - }, - { - "text": "Ratify the core international human rights instruments such as ICCPR", - "values": [ - "CP rights - general", - "International instruments" - ] - }, - { - "text": "Continue its efforts in order to strengthen legislation to prevent and punish the use of boys and girls in pornography ", - "values": [ - "Rights of the Child" - ] - }, - { - "text": "Speed up the revision of the Constitution of the Republic of Malawi and ensure harmonization of laws in line with its international obligations regarding the definition of the child", - "values": [ - "International instruments", - "Rights of the Child" - ] - }, - { - "text": "Adopt the measures necessary to abolish the caste system, given that, in many cases, it is conducive to the enduring existence of various forms of slavery ", - "values": [ - "Other" - ] - }, - { - "text": "Continue strengthening institutions to eliminate discrimination and violence against women, in particular sexual violence, and adopt specific measures to achieve gender equality in the labour market", - "values": [ - "Labour", - "Women's rights" - ] - }, - { - "text": "Take steps to effectively prevent child labour and protect children from exploitation, especially from work in hazardous labour conditions", - "values": [ - "Labour", - "Rights of the Child" - ] - }, - { - "text": "Establish a moratorium on executions with a view to abolishing the death penalty.", - "values": [ - "Death penalty" - ] - }, - { - "text": "Continue to combat terrorism in all its manifestations ", - "values": [ - "Public security" - ] - }, - { - "text": "Accept as many requests as possible, of special procedures of the Human Rights Council to visit Malaysia", - "values": [ - "Special procedures" - ] - }, - { - "text": "Take further steps to ensure full implementation of the Elimination of Violence against Women law also taking into account the respect for the provisions contained in international treaties that Afghanistan has signed ", - "values": [ - "Women's rights" - ] - }, - { - "text": "Consider favourably acceding to the International Convention on the Protection of the Rights of All Migrant Workers and Members of Their Families", - "values": [ - "International instruments", - "Labour", - "Migrants" - ] - }, - { - "text": "Take measures to eliminate discrimination against castes and high degree of poverty suffered by castes.", - "values": [ - "Minorities", - "Poverty", - "Racial discrimination" - ] - }, - { - "text": "Continue making efforts to reform the judicial system with a view to further improving its efficient management including measures to ensure timely due process ", - "values": [ - "Justice" - ] - }, - { - "text": "Accelerate the process of acceding to the two international human rights covenants and also to strengthen the rights of persons with disabilities", - "values": [ - "Disabilities", - "International instruments" - ] - }, - { - "text": "Formally abolish the death penalty in law", - "values": [ - "Death penalty" - ] - }, - { - "text": "Consider ratifying the International Covenant on Civil and Political Rights and the International Covenant on Economic, Social and Cultural Rights in a timely manner.", - "values": [ - "CP rights - general", - "ESC rights - general", - "International instruments" - ] - }, - { - "text": "Continue to place importance on secure economic development, including through infrastructure development in rural areas, in order to ensure that people living in these areas fully enjoy their economic and social rights ", - "values": [ - "Development", - "ESC rights - general" - ] - }, - { - "text": "Address urgently the intensive use of chemicals in agriculture", - "values": [ - "Environment" - ] - }, - { - "text": "Ethiopia had also adopted the first National Human Rights Action Plan for the year 2013-2015 and was committed to build on the achievements and remarkable advances registered in meeting many of the Millennium Development Goals", - "values": [ - "Development" - ] - }, - { - "text": "Reinforce the judicial system, by strengthening the bodies responsible for ensuring the defence of victims of human rights abuses", - "values": [ - "Justice" - ] - }, - { - "text": "Provide support to the Human Rights and Public Administration Commission to ensure its functioning", - "values": [ - "National Human Rights Institution" - ] - }, - { - "text": "Continue to cooperate with the United Nations and other international organizations to strengthen human rights ", - "values": [ - "Other" - ] - }, - { - "text": "Provide equal rights for all citizens of Israel regardless of their origin and confession, allowing them equal access to employment, education and other socio-economic rights as well as participation in political processes", - "values": [ - "ESC rights - general", - "Elections", - "Freedom of religion and belief", - "Labour", - "Minorities", - "Right to education" - ] - }, - { - "text": "Take more effective procedures to counter discrimination and xenophobia ", - "values": [ - "Racial discrimination" - ] - }, - { - "text": "Continue the promotion and protection of human rights through intensifying human rights education and enhancing public awareness ", - "values": [ - "Human rights education and training" - ] - }, - { - "text": "Continue developing national policies with a gender perspective to guarantee the rights of women", - "values": [ - "Women's rights" - ] - }, - { - "text": "Continue implementing all possible measures they can in order to improve the education system in the country", - "values": [ - "Right to education" - ] - }, - { - "text": "Intensify its raising awareness actions and take necessary measures to ensure that the most exposed persons to discrimination are aware of existing remedies and procedures ", - "values": [ - "Justice" - ] - }, - { - "text": "Guarantee the freedom of the media, ensuring their protection from any political interference and promoting the establishment of an independent press council", - "values": [ - "Freedom of the press" - ] - }, - { - "text": "Improve protections for victims of domestic violence, including by ensuring timely investigations, prosecuting perpetrators, and training police in risk-based assessments", - "values": [ - "Human rights education and training", - "Rights of the Child", - "Women's rights" - ] - }, - { - "text": "Continue to enhance its financial and technical capacities through, among others, constant constructive engagement with regional and international development partners", - "values": [ - "Technical assistance and cooperation" - ] - }, - { - "text": "Continue the measures with regard to strengthening self-reliance of the returning refugees and IDPs", - "values": [ - "Asylum-seekers - refugees", - "Internally displaced persons" - ] - }, - { - "text": "Consider expediting the ratification of the Rome Statute of the International Criminal Court ", - "values": [ - "International instruments", - "Justice" - ] - }, - { - "text": "Ratify the Convention on the Elimination of All Forms of Discrimination against Women ", - "values": [ - "International instruments", - "Women's rights" - ] - }, - { - "text": "Continue its work to fill the gaps in legislation and national policies that prevent the full implementation of CEDAW ", - "values": [ - "International instruments", - "Women's rights" - ] - }, - { - "text": "Continue efforts to submit national reports concerning specific human rights treaties", - "values": [ - "Treaty bodies" - ] - }, - { - "text": "Take steps to fully and effectively implement the 2013 Freedom of Information Act, including by repealing criminal libel laws and the 1965 Public Order Act", - "values": [ - "Freedom of opinion and expression", - "Freedom of the press" - ] - }, - { - "text": "Revise the 1991 Penal Code and abolish the penalization of apostasy", - "values": [ - "Freedom of religion and belief" - ] - }, - { - "text": "Consider completing the process of ratification of the Convention against Torture and Other Cruel, Inhuman or Degrading Treatment or Punishment", - "values": [ - "International instruments", - "Torture and other CID treatment" - ] - }, - { - "text": "Ratify promptly the International Convention on the Protection of the Rights of All Migrant Workers and Members of Their Families and the Optional Protocol to the International Covenant on Civil and Political Rights", - "values": [ - "CP rights - general", - "International instruments", - "Labour", - "Migrants" - ] - }, - { - "text": "Consider ratification of the International Convention on the Protection of the Rights of All Migrant Workers and Members of Their Families", - "values": [ - "International instruments", - "Labour", - "Migrants" - ] - }, - { - "text": "Put in place a National Human Rights Commission ", - "values": [ - "National Human Rights Institution" - ] - }, - { - "text": "Continue pursuing appropriate, efficient policies under the National Strategy for the Integration of Roma Communities aimed at further improving the access of Roma to education and, based on the evaluation of the impact of the existing policies, consider the adoption of additional measures ", - "values": [ - "Minorities", - "Right to education" - ] - }, - { - "text": "Strengthen the efforts aimed at ensuring equal access to citizenship and ensure that the administrative procedures and legislative provisions on citizenship do not put at a disadvantage persons of non-Croat ethnic origin", - "values": [ - "Minorities", - "Statelessness and the right to nationality" - ] - }, - { - "text": "Strengthen the mechanisms to ensure the safe and independent participation of civil society organizations in human rights discussions in the country and in their cooperation with the various United Nations mechanisms", - "values": [ - "Civil society", - "Special procedures", - "Treaty bodies", - "UPR process" - ] - }, - { - "text": "Continue and step up efforts already under way to make sure that there is better access and better quality for health and education services for all citizens", - "values": [ - "Right to education", - "Right to health" - ] - }, - { - "text": "Protect, inter alia, the rights of disabled persons, including living conditions in residential and mental health institutions, and promote their social integration.", - "values": [ - "Disabilities", - "Right to housing" - ] - }, - { - "text": "Extend a standing and permanent invitation to the special procedures of the Human Rights Council", - "values": [ - "Special procedures" - ] - }, - { - "text": "Take steps to ensure that civil society organizations freely can access and utilize funding, including from foreign sources", - "values": [ - "Civil society", - "Freedom of association and peaceful assembly" - ] - }, - { - "text": "Lift severe restrictions on freedom of expression, both online and offline, and take concrete measures to protect journalists and media workers from violence and arbitrary detention without an official charge ", - "values": [ - "Detention", - "Freedom of opinion and expression", - "Freedom of the press" - ] - }, - { - "text": "Penalize rape, whoever is responsible, including marital rape", - "values": [ - "Rights of the Child", - "Women's rights" - ] - }, - { - "text": "Ensure, with effective measures, the demobilization of all child soldiers and secure their rehabilitation and social integration ", - "values": [ - "International humanitarian law", - "Rights of the Child" - ] - }, - { - "text": "Extend an invitation to the Special Rapporteur on trafficking in persons, especially women and children ", - "values": [ - "Rights of the Child", - "Special procedures", - "Women's rights" - ] - }, - { - "text": "Consider designing operative mechanisms to ensure that boys, girls and adolescents who are victims of the armed conflict be a priority in programmes to restore their rights and reparation programmes, taking into account the right to family reunification, health, education and psychosocial care", - "values": [ - "International humanitarian law", - "Right to education", - "Right to health", - "Rights of the Child" - ] - }, - { - "text": "Revise the 2009 Primary School Reform Bills, so that mainstream schools can better accommodate the needs of pupils with a disability ", - "values": [ - "Disabilities", - "Right to education", - "Rights of the Child" - ] - }, - { - "text": "Pay more attention to combating HIV/AIDS, malaria, communicable and non-communicable diseases and strengthening the pharmaceutical sector", - "values": [ - "HIV - Aids", - "Right to health" - ] - }, - { - "text": "Fully involve civil society in the follow-up to this universal periodic review ", - "values": [ - "Civil society", - "UPR process" - ] - }, - { - "text": "Introduce necessary measures in the field of anti-discrimination and equal remuneration for men and women for work of equal value ", - "values": [ - "Women's rights" - ] - }, - { - "text": "Persist in its efforts to combat the structural causes of racial discrimination against indigenous peoples, in order to ensure access to quality education and health services", - "values": [ - "Indigenous peoples", - "Racial discrimination", - "Right to education", - "Right to health" - ] - }, - { - "text": "Take the legislative and administrative measures necessary to fully guarantee freedom of religion in the country, in particular to prevent any form of discrimination or undue obstacles in the registration of associations of religious minorities ", - "values": [ - "Freedom of religion and belief", - "Minorities" - ] - }, - { - "text": "Accelerate the process of establishment of the national human rights institution", - "values": [ - "National Human Rights Institution" - ] - }, - { - "text": "Consider ratifying the Optional Protocol to the Convention on the Rights of the Child on a communications procedure", - "values": [ - "International instruments", - "Rights of the Child" - ] - }, - { - "text": "Take steps to further improve judicial procedures to safeguard human rights", - "values": [ - "Justice" - ] - }, - { - "text": "Establish an independent mechanism empowered to receive complaints relating to violence and ill-treatment by law enforcement officers, and conduct timely, impartial and exhaustive inquiries into such complaints", - "values": [ - "Human rights violations by state agents", - "Torture and other CID treatment" - ] - }, - { - "text": "Take the necessary steps towards ratifying CRPD", - "values": [ - "Disabilities", - "International instruments" - ] - }, - { - "text": "Accede to the Optional Protocol to the Convention against Torture and Other Cruel, Inhuman or Degrading Treatment or Punishment (OPCAT), establishing its national preventive mechanism accordingly", - "values": [ - "Detention", - "International instruments", - "Torture and other CID treatment" - ] - }, - { - "text": "Issue a standing invitation to all special procedures and respond positively to all outstanding visit requests ", - "values": [ - "Special procedures" - ] - }, - { - "text": "Take appropriate legal and administrative measures to ensure equal opportunities to access decent work for people with disabilities", - "values": [ - "Disabilities" - ] - }, - { - "text": "Take the necessary measures to ensure easy and effective access to the free birth register, especially for those births outside hospitals ", - "values": [ - "Right to health", - "Rights of the Child" - ] - }, - { - "text": "Implement the recommendations of the Commission of Inquiry on Voting Patterns and Electoral Violence", - "values": [ - "Elections" - ] - }, - { - "text": "Consider establishing additional national human rights mechanisms to promote and protect human rights ", - "values": [ - "National Human Rights Institution" - ] - }, - { - "text": "Intensify efforts in the direction of sensitizing all stakeholders to prevent FGM ", - "values": [ - "Rights of the Child", - "Torture and other CID treatment", - "Women's rights" - ] - }, - { - "text": "Ratify the International Convention for the Protection of All Persons from Enforced Disappearance and recognize the competence of the Committee (in conformity with articles 31 and 32) ", - "values": [ - "Enforced disappearances", - "International instruments", - "Treaty bodies" - ] - }, - { - "text": "Continue its work for the clarification of all operational aspects of specific laws regarding gender equality and improve the implementation of these measures", - "values": [ - "Women's rights" - ] - }, - { - "text": "Continue with its policy agenda to strengthen the specialized justice system to protect women", - "values": [ - "Justice", - "Women's rights" - ] - }, - { - "text": "Consider establishing a Constitutional Commission to conduct a comprehensive review of the Constitution, thereby ensuring that it is reflective of the will and aspirations of the citizens of Fiji, seeing that this might help to bring about a more stable political structure", - "values": [ - "Other" - ] - }, - { - "text": "Ratify the International Convention for the Protection of All Persons from Enforced Disappearance as soon as possible ", - "values": [ - "Enforced disappearances", - "International instruments" - ] - }, - { - "text": "Guarantee a safe, free and independent environment for journalists and ensure that all cases of threats, violence, attacks and killings against journalists are investigated by independent and impartial bodies ", - "values": [ - "Freedom of the press" - ] - }, - { - "text": "Make it a government priority to stop impunity for gender-based violence and to take immediate and concrete steps to investigate crimes and bring those responsible to justice.", - "values": [ - "Impunity", - "Women's rights" - ] - }, - { - "text": "Further accelerate the reform of the justice system to ensure equal treatment for all citizens while continuing to pay specific attention to women and children ", - "values": [ - "Justice", - "Rights of the Child", - "Women's rights" - ] - }, - { - "text": "Abolish the death penalty and ratify the Optional Protocol to the International Covenant on the Civil and Political Rights", - "values": [ - "Death penalty", - "International instruments" - ] - }, - { - "text": "Take measures to combat violence against women and children and to ensure effective complaint mechanisms for victims", - "values": [ - "Rights of the Child", - "Women's rights" - ] - }, - { - "text": "Refuse any attempts to enforce principles outside internationally binding mechanisms, as per the internationally recognized human rights principles", - "values": [ - "Other" - ] - }, - { - "text": "Consider the possibility of acceding to the Optional Protocol of the Convention against Torture with a view to strengthening preventive activities ", - "values": [ - "Detention", - "International instruments", - "Torture and other CID treatment" - ] - }, - { - "text": "Continue its efforts to guarantee access to justice and the provision of timely, efficient, effective and high-quality services ", - "values": [ - "Justice" - ] - }, - { - "text": "Ensure that cases of domestic violence against women and girls are carefully investigated and that the perpetrators and collaborators are brought to justice", - "values": [ - "Rights of the Child", - "Women's rights" - ] - }, - { - "text": "Uphold the rights to freedom of expression, assembly and association and allow restrictions only when prescribed by law and in line with international human rights standards", - "values": [ - "Freedom of association and peaceful assembly", - "Freedom of opinion and expression", - "International instruments" - ] - }, - { - "text": "Ratify without reservations the following conventions and protocols: CEDAW, the ICESCR, the Convention on the Rights of the Child, the Convention on the Rights of Persons with Disabilities, the International Convention on the Protection of the Rights of All Migrant Workers and Members of Their Families, the International Convention for the Protection of All Persons from Enforced Disappearance, the Statute of the International Criminal Court, those of the ILO, the United Nations Declaration on Indigenous Peoples, and all those from the Inter-American Human Rights System", - "values": [ - "International instruments" - ] - }, - { - "text": "Continue to step up measures aimed at eradicating discrimination and social prejudices against ethnic minorities and persons with disabilities ", - "values": [ - "Disabilities", - "Minorities", - "Racial discrimination" - ] - }, - { - "text": "Design and implement its action plan for strengthening legal and institutional frameworks to combat racism and racial discrimination, ensuring that all legal provisions are fully applied, that racism and racial discrimination are actively monitored and that training is carried out for all relevant authorities to provide equal access to legal redress for all victims of crime", - "values": [ - "Racial discrimination" - ] - }, - { - "text": "Implement fully its obligations under the Convention on the Rights of Persons with Disabilities,", - "values": [ - "Disabilities", - "International instruments" - ] - }, - { - "text": "Implement with no exception the principle of non-refoulement in the context of asylum seeking procedures", - "values": [ - "Asylum-seekers - refugees" - ] - }, - { - "text": "Stop and prevent violations and abuses of children's rights, including by actively preventing and combating the recruitment and use of children in hostilities", - "values": [ - "International humanitarian law", - "Rights of the Child" - ] - }, - { - "text": "Recommended an exchange of respective experiences at the international level on the issue of communication between Governments and civil societies. ", - "values": [ - "Civil society" - ] - }, - { - "text": "Continue to implement agreed recommendations and other domestic and international obligations such as treaty body reporting", - "values": [ - "Treaty bodies" - ] - }, - { - "text": "Continue to consolidate existing legal and institutional frameworks to further improve the situation of women in society. ", - "values": [ - "Women's rights" - ] - }, - { - "text": "Define, prohibit and punish the trafficking of persons and child prostitution ", - "values": [ - "Rights of the Child", - "Trafficking" - ] - }, - { - "text": "Ratify the Optional Protocols to the Convention on the Rights of the Child and strengthen the legal framework in line with the provisions of the Convention on the Rights of the Child. Strengthen efforts to end and prevent the recruitment and use of children", - "values": [ - "International humanitarian law", - "International instruments", - "Rights of the Child" - ] - }, - { - "text": "Abolish the death penalty and provide the families of the executed persons with relevant declassified information", - "values": [ - "Death penalty" - ] - }, - { - "text": "Take measures aimed at establishing a national human rights institution in compliance with the Paris Principles", - "values": [ - "National Human Rights Institution" - ] - }, - { - "text": "Implement a health reform based on the principle of universal access to care ", - "values": [ - "Right to health" - ] - }, - { - "text": "Consider taking all measures necessary to ensure humanitarian access to prisoners, and to fully abide by its international obligations concerning consular help provided to foreign nationals in detention", - "values": [ - "Detention" - ] - }, - { - "text": "Take the measures necessary, in accordance with the recommendation made by CESCR, to strengthen the national health system on the basis of equity and accessibility, guaranteeing essential health services for the entire population, in particular vulnerable groups", - "values": [ - "Right to health", - "Treaty bodies" - ] - }, - { - "text": "Fully implement without further delay Act 779 on violence against women ", - "values": [ - "Women's rights" - ] - }, - { - "text": "Intensify efforts towards the total eradication of female genital mutilation", - "values": [ - "Rights of the Child", - "Torture and other CID treatment", - "Women's rights" - ] - }, - { - "text": "Continue and intensify work to improve the situation of indigenous people with special efforts to tackle poverty among them, to improve their access to education beyond high school and to give them constitutional recognition", - "values": [ - "Indigenous peoples", - "Poverty", - "Right to education" - ] - }, - { - "text": "Take all appropriate measures to prevent, investigate and punish manifestations of violence, intolerance and discrimination against lesbian, gay, bisexual, transgender and intersex people", - "values": [ - "Sexual Orientation and Gender Identity" - ] - }, - { - "text": "End its occupation of Palestinian and Arab territory", - "values": [ - "Other" - ] - }, - { - "text": "Continue intensifying its cooperation with the UN human rights mechanisms", - "values": [ - "Special procedures", - "Treaty bodies", - "UPR process" - ] - }, - { - "text": "Consider ratifying the third Optional Protocol to the Convention on the Rights of the Child", - "values": [ - "International instruments", - "Rights of the Child" - ] - }, - { - "text": "Take additional measures aiming at addressing female genital mutilation, including its eventual ban in the long run", - "values": [ - "Rights of the Child", - "Torture and other CID treatment", - "Women's rights" - ] - }, - { - "text": "Implement a strict legislative framework which ensures that evictions and relocations are legal, negotiated and fairly compensated ", - "values": [ - "Right to land" - ] - }, - { - "text": "Effectively coordinate its efforts to prevent child abuse and provide the needed assistance in that area.", - "values": [ - "Rights of the Child" - ] - }, - { - "text": "Ensure that the National Intelligence and Security Agency refrains from detaining journalists, closing media outlets, confiscating media equipment and other law enforcement activities which are beyond its mandate", - "values": [ - "Detention", - "Freedom of the press", - "Human rights violations by state agents" - ] - }, - { - "text": "Take specific measures to address the high incidence of violence against women and children, as a matter of priority", - "values": [ - "Rights of the Child", - "Women's rights" - ] - }, - { - "text": "Officially seek to renew its request for assistance to the OHCHR in this respect and also through the UPR Trust Fund established specifically to assist in the implementation of recommendations emanating from the UPR.", - "values": [ - "Technical assistance and cooperation", - "UPR process" - ] - }, - { - "text": "Strengthen school infrastructure, taking into account the concerns of women and girls, particularly as regards access to appropriate sanitation facilities", - "values": [ - "Right to education", - "Right to water and sanitation", - "Women's rights" - ] - }, - { - "text": "Make every effort to preserve the climate of peace achieved by the Comprehensive Peace\nAgreement during the six years of transition", - "values": [ - "Other" - ] - }, - { - "text": "Ensure respect of the independence of the National Human Rights Commission in accordance with the Paris Principles ", - "values": [ - "National Human Rights Institution" - ] - }, - { - "text": "Accelerate the process for the adoption of the national human rights action plan for Liberia and the adoption of the proposed children's act", - "values": [ - "Rights of the Child" - ] - }, - { - "text": "Continue the elaboration of the National Disability Policy and ensure effective implementation in line with the Convention on the Rights of Persons with Disabilities, and accede to the Optional Protocol to the Convention", - "values": [ - "Disabilities", - "International instruments" - ] - }, - { - "text": "Speedily operationalize the National Commission for Human Rights", - "values": [ - "National Human Rights Institution" - ] - }, - { - "text": "Facilitate women's access to justice and employment", - "values": [ - "Women's rights" - ] - }, - { - "text": "Undertake a review of its readmission agreements with respect to refugees and asylum-seekers, and amend them as necessary to ensure that they contain human rights guarantees in line with international standards ", - "values": [ - "Asylum-seekers - refugees" - ] - }, - { - "text": "Continue consolidating further an education system in accordance with its population's needs as the only way to move toward a true development with a human face, for which the international community should provide its assistance and cooperation without condition to address the teacher shortage and the current infrastructure needs in the area of education ", - "values": [ - "Right to education", - "Technical assistance and cooperation" - ] - }, - { - "text": "Abolish the use of solitary confinement for minors in the juvenile justice system", - "values": [ - "Detention", - "Justice", - "Rights of the Child" - ] - }, - { - "text": "Ratify those international instruments, which have not yet been ratified ", - "values": [ - "International instruments" - ] - }, - { - "text": "Promote land use management for better safeguarding of property rights", - "values": [ - "Right to land" - ] - }, - { - "text": "Continue taking strong measures with a view to fully combating sexual exploitation and sale of children.", - "values": [ - "Rights of the Child", - "Trafficking" - ] - }, - { - "text": "Continue its efforts in establishing a National Human Rights Institution, in line with the Paris Principles", - "values": [ - "National Human Rights Institution" - ] - }, - { - "text": "Continue its efforts to ensure the rights to trial without undue delay and to a fair trial", - "values": [ - "Justice" - ] - }, - { - "text": "Abolish all practices of forced treatment, including non-consensual castrations, sterilizations and abortions, and eliminate the possibility for third parties such as guardians, doctors and courts to approve such practices, as recommended by the Committee on the Rights of Persons with Disabilities", - "values": [ - "Disabilities", - "Right to health", - "Treaty bodies" - ] - }, - { - "text": "Ratify International Labour Organization (ILO) Convention No. 169 concerning Indigenous and Tribal Peoples in Independent Countries ", - "values": [ - "Indigenous peoples", - "International instruments" - ] - }, - { - "text": "Set a timeframe for the ratification of the ICCPR and the CAT", - "values": [ - "CP rights - general", - "International instruments", - "Torture and other CID treatment" - ] - }, - { - "text": "Declare a moratorium on the application of the death penalty with a view to its definitive abolition", - "values": [ - "Death penalty" - ] - }, - { - "text": "Encourage the use of non-custodial options when sentencing or determining pretrial measures involving pregnant prisoners and prisoners with children and where women are detained, put in place policies to ensure that all children are able to maintain contact with their mothers ", - "values": [ - "Detention", - "Rights of the Child" - ] - }, - { - "text": "Take all measures necessary to provide adequate access to justice and enhance the protection of its civilian population from violence", - "values": [ - "Justice" - ] - }, - { - "text": "Double its efforts in combating HIV/AIDS ", - "values": [ - "HIV - Aids" - ] - }, - { - "text": "Strengthen the achievements in the area of consolidation of human rights", - "values": [ - "General" - ] - }, - { - "text": "Give positive consideration to ratifying the Optional Protocol to the Convention against Torture (OPCAT), the Convention on the Rights of Persons with Disabilities (CRPD) and the International Convention for the Protection of All Persons from Enforced Disappearance (CED)", - "values": [ - "Detention", - "Disabilities", - "Enforced disappearances", - "International instruments", - "Torture and other CID treatment" - ] - }, - { - "text": "Promote the participation of women in public affairs and increase their representation in the elected councils", - "values": [ - "Women's rights" - ] - }, - { - "text": "Examine allegations of ill-treatment and torture in custody and failures to ensure fair trial guarantees to those arrested and prosecuted following the 2010 violence", - "values": [ - "Justice", - "Torture and other CID treatment" - ] - }, - { - "text": "To develop monitoring mechanisms for following up the implementation of recommendations from the universal periodic review", - "values": [ - "UPR process" - ] - }, - { - "text": "Enact the law on abolishment of the death penalty", - "values": [ - "Death penalty" - ] - }, - { - "text": "Efforts will be made, in conjunction with the legislature and the executive authority, to create special legislation to harmonize the domestic laws on children's rights in keeping with the Convention on the Rights of the Child, the two Optional Protocols thereto and the other conventions which deal with the subject of children.", - "values": [ - "International instruments", - "Rights of the Child" - ] - }, - { - "text": "Attach greater relevance and adopt measures to guarantee the enjoyment of all economic, social and cultural rights of its population", - "values": [ - "ESC rights - general" - ] - }, - { - "text": "Make primary education compulsory, ensuring particularly the inclusion of girls and persons with disabilities in the educational system", - "values": [ - "Disabilities", - "Right to education", - "Rights of the Child", - "Women's rights" - ] - }, - { - "text": "Provide access to the means of communication to all groups of society so that they may exercise fully their right to freedom of expression ", - "values": [ - "Freedom of opinion and expression" - ] - }, - { - "text": "Establish a moratorium on executions with a view to abolish capital punishment ", - "values": [ - "Death penalty" - ] - }, - { - "text": "Continue strengthening the national human rights institutions and promoting and protecting the rights of all segments of the population ", - "values": [ - "General" - ] - }, - { - "text": "Amend the Bar Council Act to ensure the Bar Council's independence, and commit to improving legal education and continuing legal professional development, including with regard to international human rights law and the United Nations human rights mechanisms", - "values": [ - "Justice", - "Special procedures", - "Treaty bodies", - "UPR process" - ] - }, - { - "text": "Take more effective measures to combat, or even eradicate hate crimes and speeches against minority groups in Norway, putting the accent on prevention of and follow-up to these acts ", - "values": [ - "Minorities", - "Racial discrimination" - ] - }, - { - "text": "Step up measures to establish trust between religious communities within the country", - "values": [ - "Freedom of religion and belief" - ] - }, - { - "text": "Address the issue of demand in the destination country in order to be successful in the fight against trafficking in persons. ", - "values": [ - "Trafficking" - ] - }, - { - "text": "Envisage implementing, with assistance from OHCHR, international human rights and humanitarian law training and awareness-raising programmes for State officials in charge of security, law enforcement personnel and members of the judiciary ", - "values": [ - "Human rights education and training", - "International humanitarian law", - "Justice", - "Technical assistance and cooperation" - ] - }, - { - "text": "Consider extending the National Action Plan to protect and assist in the recovery and reintegration of victims of human trafficking beyond 2013", - "values": [ - "Trafficking" - ] - }, - { - "text": "Take urgent measures to amend criminal legislation which criminalizes freedom of expression and opinion online and in different social media", - "values": [ - "Freedom of opinion and expression" - ] - }, - { - "text": "Continue its efforts to create an inclusive society for persons with disabilities through the National Council for the Protection of Persons with Disabilities which monitors the implementation of the policies", - "values": [ - "Disabilities" - ] - }, - { - "text": "Take more effective measures to increase the involvement of the indigenous peoples, minorities and vulnerable groups in the civil service, law enforcement agencies and local authorities", - "values": [ - "Indigenous peoples", - "Minorities" - ] - }, - { - "text": "Take measures to incorporate the provisions of the Convention on the Rights of the Child into Swedish law", - "values": [ - "International instruments", - "Rights of the Child" - ] - }, - { - "text": "Intensify efforts aimed at promoting and protecting the rights of women, combating domestic violence and promoting gender equality ", - "values": [ - "Women's rights" - ] - }, - { - "text": "Cooperate more closely with the Committee against Torture especially by setting up a national complaint registration and investigation system and a national preventive mechanism.", - "values": [ - "Torture and other CID treatment", - "Treaty bodies" - ] - }, - { - "text": "Pursue ratification of international human rights instruments and ensure their implementation", - "values": [ - "International instruments" - ] - }, - { - "text": "Ensure the effective investigation of cases of violence against women, prosecute and punish perpetrators", - "values": [ - "Women's rights" - ] - }, - { - "text": "Address the problem of discrimination against minorities and implement the recommendations made by the Or Commission in 2003 in this regard.", - "values": [ - "Minorities" - ] - }, - { - "text": "Continue its efforts to provide full access to education, the labour market and public life for persons with disabilities", - "values": [ - "Disabilities", - "Labour", - "Right to education" - ] - }, - { - "text": "Reinforce its collaboration with the treaty bodies ", - "values": [ - "Treaty bodies" - ] - }, - { - "text": "Strengthen measures to combat human trafficking, including violence against migrants", - "values": [ - "Migrants", - "Trafficking" - ] - }, - { - "text": "Develop the capacity of the justice sector to ensure that court cases are brought to trial in a reasonable time", - "values": [ - "Justice" - ] - }, - { - "text": "Establish mechanisms to ensure easy and effective access to birth registration of all children and the effective and free provision of birth certificates", - "values": [ - "Rights of the Child", - "Statelessness and the right to nationality" - ] - }, - { - "text": "Ensure effective law enforcement and prevention and protection measures to bridge the gap between legislation and practice in combating violence against women", - "values": [ - "Women's rights" - ] - }, - { - "text": "Adoption of new codes - the Criminal Code, the Code of Criminal Procedure and the Code of Military Justice - bills on which have been tabled in the National Assembly (last quarter of 2009)", - "values": [ - "Justice" - ] - }, - { - "text": "Promote legislation on corporate social responsibility and the dissemination of guiding principles on business and human rights with a view to improving safety in the work place and working conditions for employees ", - "values": [ - "Business and human rights", - "Labour" - ] - }, - { - "text": "Repeal sections of the Malaysian Penal Code that criminalize consensual same-sex conduct between adults", - "values": [ - "Sexual Orientation and Gender Identity" - ] - }, - { - "text": "Take all measures necessary to bring its domestic law into conformity with the Convention on the Rights of the Child and to adopt provisions in its Criminal Code to also protect boys against sexual exploitation ", - "values": [ - "International instruments", - "Rights of the Child" - ] - }, - { - "text": "Allow the return of the refugees", - "values": [ - "Asylum-seekers - refugees" - ] - }, - { - "text": "Further implement integrated education and address the negative impact of ethnic segregation in schools, including through implementing common activities and policies to promote interaction between children of all linguistic and ethnic backgrounds ", - "values": [ - "Minorities", - "Right to education" - ] - }, - { - "text": "Strengthen governmental measures to guarantee the effective implementation of the human rights of migrants in accordance with the existing international instruments in this area ", - "values": [ - "International instruments", - "Migrants" - ] - }, - { - "text": "Establish an independent national human rights institution in line with the Paris Principles and by strengthening results-based human rights monitoring throughout the country ", - "values": [ - "National Human Rights Institution" - ] - }, - { - "text": "Extend an open invitation to the special procedures of United Nations Human Rights Council", - "values": [ - "Special procedures" - ] - }, - { - "text": "Take measures to combat domestic violence, in particular against children, including the usage of corporal punishment", - "values": [ - "Rights of the Child", - "Torture and other CID treatment", - "Women's rights" - ] - }, - { - "text": "Improve the protection of the rights of women and girls, including by effectively addressing gender-based violence, particularly domestic violence, and by advancing programmes and training to counter discrimination with regard to women's employment and financial access", - "values": [ - "Human rights education and training", - "Rights of the Child", - "Women's rights" - ] - }, - { - "text": "Consider an alternative to indefinite preventive detention such as criminal prosecutions", - "values": [ - "Detention" - ] - }, - { - "text": "Develop a coordinated national strategy for ensuring the protection of all human rights and civil liberties", - "values": [ - "CP rights - general" - ] - }, - { - "text": "Simplify procedures for the registration and creation of political parties", - "values": [ - "Freedom of association and peaceful assembly" - ] - }, - { - "text": "Establish, through these efforts to address the issue of witness protection legislatively and administratively, a witness protection system ", - "values": [ - "Justice" - ] - }, - { - "text": "Continue implementing the National Sustainable Development Strategy as a means to fight poverty", - "values": [ - "Development", - "Poverty" - ] - }, - { - "text": "Review and change national and local legislation with a view to reducing social, economic and ethnic divides within Liberian society", - "values": [ - "ESC rights - general" - ] - }, - { - "text": "The delegation stressed that, in the addendum, the Government committed to continue promoting a national discussion concerning the signature and ratification of international instruments, subject to the procedure established by the Constitution.", - "values": [ - "International instruments" - ] - }, - { - "text": "Protect the right to the family, being the natural and fundamental group of society based upon the stable relationship between a woman and a man ", - "values": [ - "Other" - ] - }, - { - "text": "Sign and ratify, within the optimal time frame, the International Convention on the Protection of All Persons from Enforced Disappearance ", - "values": [ - "Enforced disappearances", - "International instruments" - ] - }, - { - "text": "Accede to the Convention on the Protection and Punishment of the Crime of Genocide and the Convention on the Status of Refugees.", - "values": [ - "Asylum-seekers - refugees", - "International instruments", - "Justice" - ] - }, - { - "text": "Ensure the allocation of necessary resources in order to implement measures planned under the National Human Rights Action Plan", - "values": [ - "General" - ] - }, - { - "text": "Ensure full support to the Constitution Drafting Assembly in order to deliver a constitution that fully complies with international democratic standards and safeguards the human rights of all on an equal footing, including women, minorities and vulnerable groups", - "values": [ - "Minorities", - "Women's rights" - ] - }, - { - "text": "Consider extending an open and standing invitation to the Special Procedures of the United Nations ", - "values": [ - "Special procedures" - ] - }, - { - "text": "Strengthen the SAFENET Referral Network system for women who are victims of domestic violence and sexual abuse and consider establishing in all provinces shelters accessible to all women, including those with disabilities", - "values": [ - "Disabilities", - "Women's rights" - ] - }, - { - "text": "Take more effective measures to eliminate discrimination against non-citizens in relation to working conditions and work requirements, including employment rules and practices with discriminatory purposes or effects - and that legislation prohibiting discrimination in employment and all discriminatory practices in the labour market be fully implemented in practice and that further measures be taken to reduce unemployment among immigrants ", - "values": [ - "Migrants" - ] - }, - { - "text": "Monitor the customary law to ensure that traditional practices be aligned with its obligations in the area of human rights, especially with the provisions of international instruments to which Ghana is a State party", - "values": [ - "International instruments" - ] - }, - { - "text": "Take urgent action to ensure the full independence, autonomy and impartiality of the judicial system and the electoral authority, especially with regard to the Supreme Court of Justice and the National Electoral Council", - "values": [ - "Justice" - ] - }, - { - "text": "End discrimination against members of the Rohingya population and members of other minority groups, including by providing a pathway to or restoring citizenship for stateless persons without requiring them to accept ethnic designations they do not agree with, removing restrictions on freedom of movement, and revising discriminatory legislation, including the 1982 Citizenship Act and the four "race and religion" laws", - "values": [ - "Freedom of religion and belief", - "Minorities", - "Racial discrimination", - "Statelessness and the right to nationality" - ] - }, - { - "text": "Put an end to violations and atrocities committed by governmental and loyalist forces in the context of the internal conflict in eastern Ukraine", - "values": [ - "Human rights education and training" - ] - }, - { - "text": "Continue social-economic reforms directed towards the creation of new jobs, fighting poverty, increasing the quality of education and medical care", - "values": [ - "Development", - "Poverty", - "Right to education", - "Right to health" - ] - }, - { - "text": "Seriously consider the possibility to abolish capital punishment", - "values": [ - "Death penalty" - ] - }, - { - "text": "Consider taking steps to decriminalize consensual same sex relations and abolish any discriminatory legislation and practices against lesbian, gay, bisexual, transgender and intersex people", - "values": [ - "Sexual Orientation and Gender Identity" - ] - }, - { - "text": "Repeal article 230 of the Criminal Code criminalizing same-sex sexual relation", - "values": [ - "Sexual Orientation and Gender Identity" - ] - }, - { - "text": "Ratify the Second Optional Protocol to the International Covenant on Civil and Political Rights Aimed at the Abolition of the Death Penalty (ICCPR-OP 2).", - "values": [ - "Death penalty", - "International instruments" - ] - }, - { - "text": "Consider acceding to the remaining major international human rights law instruments", - "values": [ - "International instruments" - ] - }, - { - "text": "Extend a standing invitation to all special procedures of the Human Rights Council.", - "values": [ - "Special procedures" - ] - }, - { - "text": "Consider ratification of the Optional Protocol to the Convention on the Elimination of All Forms of Discrimination against Women and take measures in order to combat discrimination against women", - "values": [ - "International instruments", - "Women's rights" - ] - }, - { - "text": "Take all measures necessary to guarantee that cases of harassment and threats against human rights defenders and non-governmental organization activists are investigated and prosecuted appropriately, and that reparation is guaranteed for the victims", - "values": [ - "Civil society", - "Human rights defenders" - ] - }, - { - "text": "Address the status of persons belonging to minorities within Slovakia through greater engagement and effective use of European Union funds, expert level cooperation and strengthening of national procedures.", - "values": [ - "Minorities" - ] - }, - { - "text": "Develop a legislation that sets the line between freedom of expression and hate speech and set up a strong mechanism to monitor all manifestations of intolerance, racism, xenophobia especially against Muslims", - "values": [ - "Freedom of opinion and expression", - "Freedom of religion and belief", - "Racial discrimination" - ] - }, - { - "text": "Accompany the informal moratorium on death penalty, maintained since 1997, by a commitment to the adoption of the necessary measures to establish a formal moratorium, with a view to eventually abolishing the death penalty", - "values": [ - "Death penalty" - ] - }, - { - "text": "Repeal section 146 of the Criminal Code, which criminalizes sexual relations between consenting adults of the same sex ", - "values": [ - "Sexual Orientation and Gender Identity" - ] - }, - { - "text": "Ratify the Rome Statute of the ICC and accede to the Agreement on the Privileges and Immunities of the ICC", - "values": [ - "International instruments", - "Justice" - ] - }, - { - "text": "Further guarantee the status and rights of national ethnic and linguistic minorities on the legislative and judicial front as well as in the policy front", - "values": [ - "Minorities" - ] - }, - { - "text": "Abide by its international obligations with regard to the procedures for arrest and detention, to guarantee human rights and fundamental freedoms and to exercise the task of governing with due respect for the rule of law", - "values": [ - "Detention", - "International instruments", - "Justice" - ] - }, - { - "text": "Adopt a formal moratorium on the death penalty with a view to fully abolishing capital punishment, both in practice and in law, for all cases and under all circumstances", - "values": [ - "Death penalty" - ] - }, - { - "text": "Continue to adopt legislation and strengthen policies to promote the protection of, and respect for the rights of women and their role in society and in the development process, and review related legislation in order to ensure that there is no deterioration in the legal status of women ", - "values": [ - "Women's rights" - ] - }, - { - "text": "Continue providing important assistance for the development of countries in the South, particularly in the areas regarding fundamental rights", - "values": [ - "Development", - "Technical assistance and cooperation" - ] - }, - { - "text": "Improve data collection regarding domestic violence and gender-based violence", - "values": [ - "Rights of the Child", - "Women's rights" - ] - }, - { - "text": "Accelerate the process of establishing the national institution for the protection of human rights in conformity with the Paris Principles ", - "values": [ - "National Human Rights Institution" - ] - }, - { - "text": "Establish an inclusive process to follow up on the universal periodic review recommendations ", - "values": [ - "UPR process" - ] - }, - { - "text": "Step up the efforts to combat female genital mutilation", - "values": [ - "Rights of the Child", - "Torture and other CID treatment", - "Women's rights" - ] - }, - { - "text": "Intensify its efforts to protect the rights of other vulnerable groups, especially persons with disability, minorities and indigenous peoples so as to allow them equal access to social, educational, health and other services", - "values": [ - "Disabilities", - "Indigenous peoples", - "Minorities" - ] - }, - { - "text": "Establish a national human rights institution in accordance with the Paris Principles so as to facilitate the application of the main international human rights instruments.", - "values": [ - "National Human Rights Institution" - ] - }, - { - "text": "Revise its legislation related to abortion regarding victims of rape, especially victims that are minors and when the health of the woman is seriously at risk", - "values": [ - "Rights of the Child", - "Women's rights" - ] - }, - { - "text": "Step up efforts to eliminate discrimination against indigenous children, Afro-descendant children and migrant children ", - "values": [ - "Indigenous peoples", - "Migrants", - "Minorities", - "Racial discrimination", - "Rights of the Child" - ] - }, - { - "text": "Maintain and strengthen cooperation with various United Nations mechanisms, as well as financial institutions, in order to overcome the challenges faced in the peace and national reconciliation process", - "values": [ - "Justice" - ] - }, - { - "text": "Bahrain commits to completing work on the implementation of the recommendations of the Bahrain Independent Commission of Inquiry. ", - "values": [ - "Justice" - ] - }, - { - "text": "Enact a comprehensive strategy in order that the rights of children are further protected and widened", - "values": [ - "Rights of the Child" - ] - }, - { - "text": "Complete the process of judicial reform and enact essential legislation such as a new penal code, an anti-corruption law and legislation to guarantee and safeguard the independence and impartiality of the court system, court personnel and judges in accordance with international standards \n\n", - "values": [ - "Corruption", - "Justice" - ] - }, - { - "text": "Continue reform programmes with the support of the international community, as reflected in the Government's Development Strategies Plan and Policies, in its efforts to further advance human rights and improve the well-being of its people ", - "values": [ - "Development" - ] - }, - { - "text": "Eliminate the death penalty in all circumstances", - "values": [ - "Death penalty" - ] - }, - { - "text": "Promote the need for practical educational measures to spread a culture of human rights and raise students' awareness of these rights ", - "values": [ - "Human rights education and training" - ] - }, - { - "text": "Take vigorous measures to protect people suffering from albinism against the different forms of violence of which they are victims", - "values": [ - "Minorities" - ] - }, - { - "text": "Further strengthen the conditions in which lawyers exercise their functions", - "values": [ - "Justice" - ] - }, - { - "text": "Increase the coverage and accessibility of medical services for women, with a special focus on the needs of indigenous women and women in rural areas", - "values": [ - "Indigenous peoples", - "Right to health", - "Women's rights" - ] - }, - { - "text": "Ratify the Convention on the Rights of Persons with Disabilities as soon as possible ", - "values": [ - "Disabilities", - "International instruments" - ] - }, - { - "text": "Provide equal legal protections and access to public services to all its citizens, particularly its minorities and indigenous peoples", - "values": [ - "Indigenous peoples", - "Minorities" - ] - }, - { - "text": "Intensify awareness-raising campaigns to strengthen the protection of children's rights", - "values": [ - "Human rights education and training", - "Rights of the Child" - ] - }, - { - "text": "Undertake concrete steps in order to prevent violence against women, including domestic violence, also through awareness-raising and educational efforts", - "values": [ - "Human rights education and training", - "Women's rights" - ] - }, - { - "text": "Intensify its efforts to fight poverty and for the prosperity and welfare of all its citizens", - "values": [ - "Poverty" - ] - }, - { - "text": "Extend an open and standing invitation to all special procedures, welcoming with satisfaction the official invitation to the Special Rapporteur on the question of torture in 2010 ", - "values": [ - "Special procedures", - "Torture and other CID treatment" - ] - }, - { - "text": "Ratify the Rome Statute of the ICC and the Agreement on the Privileges and Immunities of the ICC, and to fully align its national legislation with all of the obligations under the Statute", - "values": [ - "International instruments", - "Justice" - ] - }, - { - "text": "Strengthen facilities for children in conflict with the law", - "values": [ - "Justice", - "Rights of the Child" - ] - }, - { - "text": "Keep promoting progress in lesbian, gay, bisexual, transgender and intersex issues, especially in preventing discrimination based on gender or sexual orientation", - "values": [ - "Sexual Orientation and Gender Identity" - ] - }, - { - "text": "Establish a programme to monitor places of detention and a human rights training programme for staff working in places of detention.", - "values": [ - "Detention", - "Human rights education and training" - ] - }, - { - "text": "Become a party to CPED, the Rome Statute of the ICC and the Convention against Discrimination in Education ", - "values": [ - "Enforced disappearances", - "International instruments", - "Justice", - "Right to education" - ] - }, - { - "text": "Ensure that all issues related to migration, asylum seeking and border management are addressed in accordance with respective obligations under applicable international law", - "values": [ - "Asylum-seekers - refugees", - "Migrants" - ] - }, - { - "text": "Promote cultural diversity and acceptance of multiculturalism ", - "values": [ - "Other" - ] - }, - { - "text": "Continue its efforts to ensure equality for women with the assistance from the international community", - "values": [ - "Technical assistance and cooperation", - "Women's rights" - ] - }, - { - "text": "Facilitate the effective access to justice for women in cases of sexual harassment", - "values": [ - "Women's rights" - ] - }, - { - "text": "Redouble efforts to devise a comprehensive national strategy and ensure implementation of action plans for the protection of the rights of the child, particularly in the area of prevention from child labour, violence and abuse", - "values": [ - "Labour", - "Rights of the Child" - ] - }, - { - "text": "Ratify the Rome Statute of the ICC ", - "values": [ - "International instruments", - "Justice" - ] - }, - { - "text": "Move towards the establishment of a national human rights institution in accordance with the Paris Principles", - "values": [ - "National Human Rights Institution" - ] - }, - { - "text": "Consider ratifying or acceding to: OP-ICCPR 2, OP-CAT, ICRMW, CED and OP-ICCPR 1", - "values": [ - "International instruments" - ] - }, - { - "text": "Continue to safeguard the choice of health-care workers to have recourse to the principle of conscientious objection ", - "values": [ - "Freedom of religion and belief", - "Right to health" - ] - }, - { - "text": "Take additional measures to improve the situation of migrant domestic workers by extending the application of the Private Sector Labour Law to include domestic workers", - "values": [ - "Labour", - "Migrants" - ] - }, - { - "text": "Amend article 41(2) of the Constitution on the role and status of women by moving to a more gender-neutral wording of the article ", - "values": [ - "Women's rights" - ] - }, - { - "text": "Take additional steps to combat the impunity which has contributed to the rise in femicide and the attacks on human rights defenders.", - "values": [ - "Human rights defenders", - "Impunity", - "Women's rights" - ] - }, - { - "text": "Continue its efforts to implement the MDGs at the national level ", - "values": [ - "Development" - ] - }, - { - "text": "Ensure that access to legal abortion is available on equal terms in all regions across the country", - "values": [ - "Women's rights" - ] - }, - { - "text": "To further build up on its effort to fully protect human rights in the country", - "values": [ - "General" - ] - }, - { - "text": "Continue the efforts to reduce the unemployment rate, eradicate poverty, and give priority to the protection and promotion of economic, social and cultural rights of people", - "values": [ - "Development", - "ESC rights - general", - "Poverty" - ] - }, - { - "text": "Identify and implement legal and procedural machinery to monitor and sanction cases of torture in keeping with national legislation and international commitments ", - "values": [ - "Torture and other CID treatment" - ] - }, - { - "text": "Take measures allowing the exercise of the lawful activities of human rights defenders, in a favourable legal and administrative environment", - "values": [ - "Human rights defenders" - ] - }, - { - "text": "Increase investment in education and improve its work to eliminate illiteracy in rural areas ", - "values": [ - "Right to education" - ] - }, - { - "text": "Elaborate a Plan of Action for the implementation and monitoring of the Law on preventing and combating domestic violence, and allocate adequate budgetary resources for its implementation", - "values": [ - "Rights of the Child", - "Women's rights" - ] - }, - { - "text": "Intensify in practice sanctions in cases of domestic violence, bridekidnapping, forced marriage, polygamy and discrimination against women due to sexual orientation, as well as promote mechanisms of protection that guarantee the rights of victims of domestic violence ", - "values": [ - "Rights of the Child", - "Sexual Orientation and Gender Identity", - "Women's rights" - ] - }, - { - "text": "Implement recommendations made by Special Rapporteur on freedom of peaceful assembly and association regarding governmental oversight and regulations of non-governmental organizations", - "values": [ - "Civil society", - "Freedom of association and peaceful assembly", - "Special procedures" - ] - }, - { - "text": "Ensure religious freedom and tolerance, by measures such as decriminalizing blasphemy and protecting the rights of religious minorities, atheists and agnostics", - "values": [ - "Freedom of religion and belief", - "Minorities" - ] - }, - { - "text": "Continue reinforcing the work of the National Commission for the Prevention of Torture and Other Cruel, Inhuman or Degrading Treatment", - "values": [ - "Torture and other CID treatment" - ] - }, - { - "text": "Adopt a National Action Plan to implement the Guiding Principles on Business and Human Rights", - "values": [ - "Business and human rights" - ] - }, - { - "text": "Continue and step up efforts to promote reconciliation, accountability and human rights, above all through national initiatives such as the national policy on reconciliation", - "values": [ - "Justice" - ] - }, - { - "text": "Ensure that the rights of detainees sentenced to death be duly respected", - "values": [ - "Death penalty" - ] - }, - { - "text": "Increase government spending on education to provide compulsory public and private education", - "values": [ - "Right to education" - ] - }, - { - "text": "Ratify and implement in national norms ILO Convention 169", - "values": [ - "Indigenous peoples", - "International instruments" - ] - }, - { - "text": "Consider signing the Optional Protocol to the Convention against Torture.", - "values": [ - "Detention", - "International instruments", - "Torture and other CID treatment" - ] - }, - { - "text": "Take concrete measures to guarantee access to safe drinking water and sanitation for all, particularly for those in rural areas", - "values": [ - "Right to water and sanitation" - ] - }, - { - "text": "Guarantee separated families fundamental right to know the fate of their family members across the border and to communicate and regularly meet together ", - "values": [ - "Other" - ] - }, - { - "text": "Ensure that the provisions of all international human rights treaties, once ratified, are incorporated into domestic law ", - "values": [ - "International instruments" - ] - }, - { - "text": "Respond positively to all outstanding requests of special procedures and extend a standing invitation to all special procedure mandate holders", - "values": [ - "Special procedures" - ] - }, - { - "text": "Halt prosecutions of individuals for possessing seditious material critical of the State and the royal family \n\n", - "values": [ - "Freedom of opinion and expression" - ] - }, - { - "text": "Start implementing the plan of action for peace, justice and reconciliation", - "values": [ - "Justice" - ] - }, - { - "text": "Consider introducing laws to specifically prevent and prosecute \u201chonour\u201c killings and prosecute those that order or sanction violence against women", - "values": [ - "Women's rights" - ] - }, - { - "text": "Establish an official moratorium on the death penalty", - "values": [ - "Death penalty" - ] - }, - { - "text": "Take the measures required to arrange a visit to the country as soon as possible by the Special Rapporteur on the independence of judges and lawyers to the country", - "values": [ - "Justice", - "Special procedures" - ] - }, - { - "text": "Set up a national mechanism for the prevention of torture and other cruel inhumane or degrading treatment or punishment, as required by article 3 of the Optional Protocol to the Convention against Torture and Other Cruel, Inhuman or Degrading Treatment or Punishment", - "values": [ - "Detention", - "International instruments", - "Torture and other CID treatment" - ] - }, - { - "text": "Strengthen the national plan for combating discrimination through the incorporation of indicators and monitoring measures, through determination of the authorities responsible for its implementation and through a time frame for achievement of the goals", - "values": [ - "Other" - ] - }, - { - "text": "Strengthen measures to prevent violence against women, in particular by raising awareness of the fact that discrimination and violence against women is unacceptable, and implement legislation on violence against women and girls. Make more efforts to create a unified register on violence against women", - "values": [ - "Human rights education and training", - "Rights of the Child", - "Women's rights" - ] - }, - { - "text": "Strengthen measures to combat violence against women, including through the assessment of the implementation of the Domestic Violence Prevention Act and its related Programme, and consider seeking international cooperation on this matter", - "values": [ - "Rights of the Child", - "Technical assistance and cooperation", - "Women's rights" - ] - }, - { - "text": "Develop programmes based on employability, entrepreneurship and microfinance in order to enable young people to get better access to the labour market", - "values": [ - "Development" - ] - }, - { - "text": "Strengthen the coordination effort by the Higher Council for Prisons with a view to improve the state of prisons in particular, the problems of overcrowding and violence in prisons in the country ", - "values": [ - "Detention" - ] - }, - { - "text": "Take the measures necessary to make sure that the upcoming presidential and legislative elections present all guarantees of freedom, regularity and transparency, and, to this end, notably accept the presence of international observers ", - "values": [ - "Elections" - ] - }, - { - "text": "Adopt appropriate legislation on trafficking in human beings, prohibit the use, procuring or offering of children for prostitution and ensure that children under the age of 14 are not engaged in child labour ", - "values": [ - "Labour", - "Rights of the Child", - "Trafficking" - ] - }, - { - "text": "Strengthen the role of the Ombudsman, in particular its powers of investigation in cases involving politicians ", - "values": [ - "National Human Rights Institution" - ] - }, - { - "text": "Take necessary measures to speed up gender equality in practice, especially in access to professions, including at the highest level, to property, capital, medical services and housing", - "values": [ - "Women's rights" - ] - }, - { - "text": "Take effective measures to prevent any violence against journalists or human rights defenders", - "values": [ - "Freedom of the press", - "Human rights defenders" - ] - }, - { - "text": "Continue to improve Roma conditions, access to housing, water, sanitation, education and employment and make further efforts to combat all forms of intolerance and racism against them", - "values": [ - "Labour", - "Minorities", - "Right to education", - "Right to housing", - "Right to water and sanitation" - ] - }, - { - "text": "Continue working with its development partners to invest in the education sector", - "values": [ - "Right to education" - ] - }, - { - "text": "Repeal all laws and policies that discriminate against human rights defenders", - "values": [ - "Human rights defenders" - ] - }, - { - "text": "Ensure thorough and impartial investigation into all allegations of attacks and threats against individuals targeted because of their sexual orientation or gender identity", - "values": [ - "Sexual Orientation and Gender Identity" - ] - }, - { - "text": "Make the necessary efforts to improve the specific conditions of persons with disabilities in order to improve their life, stability and integration within society. ", - "values": [ - "Disabilities" - ] - }, - { - "text": "Implement the mechanisms for guaranteeing the legal residency of minorities living in Slovenia to ensure that they have access to essential services and employment opportunities", - "values": [ - "Minorities" - ] - }, - { - "text": "Take steps to ratify the International Labour Organization Domestic Workers Convention, 2011 (No. 189)", - "values": [ - "International instruments", - "Labour" - ] - }, - { - "text": "Remove the outstanding reservations on articles 2 - f -, 5, 11 - 1 - - d -, 11 - 2 - and 16 of the Convention on the Elimination of All Forms of Discrimination against Women as a matter of urgency ", - "values": [ - "International instruments", - "Women's rights" - ] - }, - { - "text": "Decriminalize consensual adult same-sex relations by amending sections 56 and 57 of the Offences against the Person Act and take all necessary steps to ensure the enjoyment of their rights by all persons without discrimination on grounds of sexual orientation or gender identity", - "values": [ - "Sexual Orientation and Gender Identity" - ] - }, - { - "text": "Respect its obligations under the Second Optional Protocol to the International Covenant on Civil and Political Rights and refrain from the plans to reimpose the death penalty", - "values": [ - "Death penalty", - "International instruments" - ] - }, - { - "text": "Take concrete measures to address the issue of violence against the Rohingya, including addressing the accountability of perpetrators as well as individuals who feed polarization through hate speech", - "values": [ - "Freedom of religion and belief", - "Minorities", - "Racial discrimination" - ] - }, - { - "text": "Investigate all allegations of torture and sexual violence committed in the context of the June 2010 conflict", - "values": [ - "Rights of the Child", - "Torture and other CID treatment", - "Women's rights" - ] - }, - { - "text": "Lift immediately the blockade on the Gaza strip, and stop any Israeli attacks on the Gaza strip", - "values": [ - "Other" - ] - }, - { - "text": "Continue to implement policies to ensure the availability and affordability of education to all Indonesians, in particular those in the remote regions and those with special needs", - "values": [ - "Right to education" - ] - }, - { - "text": "Enhance and strength national programs to combat violence against women and also to continue the much valuable efforts that enable women to participate in legislative council and decision making positions ", - "values": [ - "Women's rights" - ] - }, - { - "text": "Adopt a specific law on domestic violence and abolish the provisions allowing a rapist to escape punishment by marrying the victim, remove discriminatory legislative provisions that place the burden of proof solely on the victim ", - "values": [ - "Women's rights" - ] - }, - { - "text": "Continue promoting gender equality through specific laws, plans and programmes", - "values": [ - "Women's rights" - ] - }, - { - "text": "Eradicate child labour starting with taking steps to finalize the National child labour policy and to implement the plan of action to eliminate the worst forms of child labour", - "values": [ - "Labour", - "Rights of the Child" - ] - }, - { - "text": "Strengthen the state of laws and good governance, including further capacity-building for law enforcement mechanisms and national institutions on human rights ", - "values": [ - "Justice" - ] - }, - { - "text": "Continue its efforts to further reduce poverty, particularly in rural areas", - "values": [ - "Poverty" - ] - }, - { - "text": "Cooperate with the international community and neighbouring countries particularly in the fight against transborder organized crime, and fight against trafficking in women and children.", - "values": [ - "Public security", - "Trafficking" - ] - }, - { - "text": "Encourage Liberia, with the support of relevant United Nations agencies, particularly the UNHCR, to make greater efforts in finding durable solutions for refugees", - "values": [ - "Asylum-seekers - refugees" - ] - }, - { - "text": "Attach further importance to the culture of human rights through the educational and mass media institutions", - "values": [ - "Human rights education and training" - ] - }, - { - "text": "Look to ensure the avoidance of national service conscripts being used as forced labour for private enterprises and to end the recruitment of children under the age of 18 into military service and training ", - "values": [ - "Rights of the Child" - ] - }, - { - "text": "Continue efforts to address gender-related killing of women and girls", - "values": [ - "Rights of the Child", - "Women's rights" - ] - }, - { - "text": "Implement the ratification of CRPD", - "values": [ - "Disabilities", - "International instruments" - ] - }, - { - "text": "Consider the ratification of the Convention on the Rights of Persons with Disabilities and the Optional Protocol thereto.", - "values": [ - "Disabilities", - "International instruments" - ] - }, - { - "text": "Take further steps to establish and implement laws against domestic violence and the trafficking of women and children, and to ensure that existing laws prohibiting female genital mutilation are reviewed and enforced throughout the country.", - "values": [ - "Rights of the Child", - "Torture and other CID treatment", - "Trafficking", - "Women's rights" - ] - }, - { - "text": "Guarantee that defamation is punishable only through civil law and that the compensation awarded is proportionate to the damage caused", - "values": [ - "Freedom of opinion and expression" - ] - }, - { - "text": "Implement all necessary measures to ensure full protection of human rights and promote national reconciliation", - "values": [ - "Justice" - ] - }, - { - "text": "Consider developing a national plan of action on business and human rights", - "values": [ - "Business and human rights" - ] - }, - { - "text": "Seek technical assistance from OHCHR and from the Special Rapporteur on the promotion and protection of the right to freedom of opinion and expression on possible ways to adjust the Press Law ", - "values": [ - "Freedom of opinion and expression", - "Freedom of the press", - "Special procedures", - "Technical assistance and cooperation" - ] - }, - { - "text": "Consider ratifying CAT.", - "values": [ - "International instruments", - "Torture and other CID treatment" - ] - }, - { - "text": "Conduct a policy of zero tolerance towards the trafficking in women and girl children, child prostitution and the production of pornography involving children", - "values": [ - "Rights of the Child", - "Trafficking", - "Women's rights" - ] - }, - { - "text": "Ensure the full protection of children's rights, in particular of children who are victims of the internal armed conflict, and adequately address all situations of violence against women.", - "values": [ - "International humanitarian law", - "Rights of the Child", - "Women's rights" - ] - }, - { - "text": "Take necessary measures to ensure that law enforcement officials receive the necessary training ", - "values": [ - "Human rights education and training" - ] - }, - { - "text": "Continue the country's policy in promoting the full religious freedom of all citizens", - "values": [ - "Freedom of religion and belief" - ] - }, - { - "text": "Ratify the Rome Statute of the International Criminal Court and fully align its legislation with all obligations under the Rome Statute", - "values": [ - "International instruments", - "Justice" - ] - }, - { - "text": "Consider the ratification of the Optional Protocol to the Convention on the Rights of Persons with Disabilities", - "values": [ - "Disabilities", - "International instruments" - ] - }, - { - "text": "Adopt measures to secure the freedom of religion and belief ", - "values": [ - "Freedom of religion and belief" - ] - }, - { - "text": "Take all relevant measures to fight against sexual violence and bring perpetrators to justice", - "values": [ - "Women's rights" - ] - }, - { - "text": "Ratify the Optional Protocol to the Convention against Torture and Other Cruel, Inhuman or Degrading Treatment or Punishment and to establish the national preventive mechanism accordingly", - "values": [ - "Detention", - "International instruments", - "Torture and other CID treatment" - ] - }, - { - "text": "Strengthen the efforts to resolve the political crisis of the country and address, with the assistance of the international community, the issue of insecurity", - "values": [ - "Public security", - "Technical assistance and cooperation" - ] - }, - { - "text": "Enact legislation that includes protection from discrimination on the basis of intersex status", - "values": [ - "Sexual Orientation and Gender Identity" - ] - }, - { - "text": "Ensure that all criminal law provisions, including Articles 126, 135, 137 and 173 of the Penal Code, which impose harsh penalties for a wide range of legitimate expression, are fully consistent with the full enjoyment of the right to freedom of opinion and expression, and the right to freedom of peaceful assembly and association", - "values": [ - "Freedom of association and peaceful assembly", - "Freedom of opinion and expression" - ] - }, - { - "text": "Continue strengthening the measures taken in the framework of combating violence against women and children", - "values": [ - "Rights of the Child", - "Women's rights" - ] - }, - { - "text": "Ratify the International Convention on the Protection of All Persons from Enforced Disappearance in a timely manner, as was recommended during the previous review ", - "values": [ - "Enforced disappearances", - "International instruments", - "UPR process" - ] - }, - { - "text": "Deliver a clear message to all prison managers and staff that all forms of ill-treatment are unacceptable and will result in sanctions", - "values": [ - "Detention", - "Human rights violations by state agents", - "Torture and other CID treatment" - ] - }, - { - "text": "Strengthen its international cooperation for the sustainable development of the countries of the South", - "values": [ - "Development" - ] - }, - { - "text": "Continue its efforts towards eradicating discrimination and violence against women and girls, including by fully implementing the laws against rape and \u201chonour\u201c crimes and thoroughly investigating and prosecuting all violations of those laws", - "values": [ - "Rights of the Child", - "Women's rights" - ] - }, - { - "text": "Enact a new water law as soon as possible giving effect to the right to water, as recommended by the Independent Expert on the issue of human rights obligations relating to the enjoyment of a safe, clean, healthy and sustainable environment and the Independent Expert on the issue of human rights obligations related to access to safe drinking water and sanitation", - "values": [ - "Environment", - "Right to water and sanitation", - "Special procedures" - ] - }, - { - "text": "Repeal or amend articles 106 and 110 of the Criminal Code to avoid restrictions on freedom of expression", - "values": [ - "Freedom of opinion and expression", - "Justice" - ] - }, - { - "text": "Implement the normative framework in order to ensure protection of the victims of trafficking", - "values": [ - "Trafficking" - ] - }, - { - "text": "Speed up the legal process toward the abolition of the death penalty (including in the Penal Code) with the cooperation of the Office of the High Commissioner and the donors, and establish an official moratorium on the death penalty, including of minors, to be taken into account in all peace negotiations or agreements with the rebel factions", - "values": [ - "Death penalty", - "Rights of the Child", - "Technical assistance and cooperation" - ] - }, - { - "text": "Establish an independent investigation mechanism for allegations of torture and other cruel and inhuman or degrading treatment committed by police forces and to prevent such violations by public agents", - "values": [ - "Human rights violations by state agents", - "Torture and other CID treatment" - ] - }, - { - "text": "Adopt a national plan of action on the prevention and protection from all forms of violence, including domestic violence", - "values": [ - "Rights of the Child", - "Women's rights" - ] - }, - { - "text": "Adopt legal provisions that guarantee migrant workers the right to join trade unions ", - "values": [ - "Labour", - "Migrants" - ] - }, - { - "text": "Intensify efforts to ensure equal opportunities for men and women in both the private and public sectors, including by expanding measures that facilitate women's re-entry into the workforce after childbirth.", - "values": [ - "Women's rights" - ] - }, - { - "text": "Take steps to put in place public order legislation which respects the right of assembly and demonstration while safeguarding citizen's rights to protection and safety ", - "values": [ - "Freedom of association and peaceful assembly" - ] - }, - { - "text": "Take the measures necessary to ensure that the traditional indigenous justice system complies with the provisions of the international human rights treaties that Bolivia has ratified", - "values": [ - "Indigenous peoples", - "International instruments" - ] - }, - { - "text": "Use fully the National Human Rights Institute as a fundamental piece of the comprehensive strategy for the protection of human rights ", - "values": [ - "National Human Rights Institution" - ] - }, - { - "text": "Continue efforts aimed at improving access to malaria diagnosis and related treatment by 2020", - "values": [ - "Right to health" - ] - }, - { - "text": "Finalize the efforts to ratify the Convention against Torture and Other Cruel, Inhuman or Degrading Treatment or Punishment, as well as other international instruments, as recommended by relevant treaty bodies", - "values": [ - "International instruments", - "Torture and other CID treatment", - "Treaty bodies" - ] - }, - { - "text": "Take measures to ensure the universal access to healthcare services, paying particular attention to the needs of persons living in rural and remote areas", - "values": [ - "Right to health" - ] - }, - { - "text": "Ensure that the rights of women and girls are protected during the recovery process, including protecting them from violence ", - "values": [ - "Rights of the Child", - "Women's rights" - ] - }, - { - "text": "Implement, as soon as possible, the recommendations of the international commission of inquiry concerning the events of 28 September 2009", - "values": [ - "Justice" - ] - }, - { - "text": "Decriminalize sexual relations between consenting adults of the same sex and repeal all discriminatory provisions relative to lesbian, gay, bisexual and transgender people ", - "values": [ - "Sexual Orientation and Gender Identity" - ] - }, - { - "text": "Implement the outstanding legislative and administrative reforms required under the Convention on the Rights of the Child, in particular all the necessary measures to prevent and address violence against children and child abuse ", - "values": [ - "International instruments", - "Rights of the Child" - ] - }, - { - "text": "Accede to the Convention against Torture and Other Cruel, Inhuman or Degrading Treatment or Punishment.", - "values": [ - "International instruments", - "Torture and other CID treatment" - ] - }, - { - "text": "Continue to promote awareness campaigns on the question of HIV/AIDS and the rights of people who suffer from it ", - "values": [ - "HIV - Aids" - ] - }, - { - "text": "Maintain its efforts in the area of combating trafficking in persons, especially women and children, including through a victim-oriented approach and an enhanced level of international and regional cooperation", - "values": [ - "Rights of the Child", - "Technical assistance and cooperation", - "Trafficking", - "Women's rights" - ] - }, - { - "text": "Ensure that women are proportionately represented in all aspects of Norwegian political and public life, including migrant and minority women, as recommended by the Committee on the Elimination of Discrimination against Women", - "values": [ - "Migrants", - "Minorities", - "Treaty bodies", - "Women's rights" - ] - }, - { - "text": "Take appropriate steps to amend regulations that discriminate against women", - "values": [ - "Women's rights" - ] - }, - { - "text": "Continue its efforts to restore the A status to the Senegalese Human Rights Committee before the International Coordinating Committee of National Human Rights Institutions", - "values": [ - "National Human Rights Institution" - ] - }, - { - "text": "Strengthen the institution to enable Zimbabwe to defend its sovereignty and protect the human rights of its people", - "values": [ - "General" - ] - }, - { - "text": "That federal and state authorities impose a moratorium on executions with a view to abolishing the death penalty nationwide", - "values": [ - "Death penalty" - ] - }, - { - "text": "Accelerate the implementation of the national strategy for Roma integration and fight against discrimination in employment, education and health care", - "values": [ - "Labour", - "Minorities", - "Racial discrimination", - "Right to education", - "Right to health" - ] - }, - { - "text": "Adopt further measures to foster inter-religious communication and public culture of promoting socio-cultural and religious diversity", - "values": [ - "Freedom of religion and belief" - ] - }, - { - "text": "Enhance efforts to fight all forms of discrimination against women by ensuring effective implementation of existing legislation", - "values": [ - "Women's rights" - ] - }, - { - "text": "Ensure, in the context of the reform of the Penal Code and the Code of Criminal Procedure, to harmonize the Senegalese legislation with international law", - "values": [ - "Justice" - ] - }, - { - "text": "Revise the Islamic Penal Code provisions that are discriminatory against women and girls, take urgent legislative steps to specifically criminalize domestic violence, including marital rape", - "values": [ - "Rights of the Child", - "Women's rights" - ] - }, - { - "text": "Continue its efforts in the area of gender equality and protection of women and children as well as the human rights training activities for members of the armed and security forces, magistrates, judicial officials and prison authorities ", - "values": [ - "Human rights education and training", - "Women's rights" - ] - }, - { - "text": "Adopt the Act on the Prevention of Human Trafficking and Protection of Victims", - "values": [ - "Trafficking" - ] - }, - { - "text": "Increase the input in education and give importance to the inclusive education for disabled children to ensure their healthy development", - "values": [ - "Disabilities", - "Right to education", - "Rights of the Child" - ] - }, - { - "text": "Continue to further enhance its dialogue with civil society and stakeholders to implement policies and measures for the promotion of the rights of women, children and persons with disabilities, who are socially vulnerable", - "values": [ - "Civil society", - "Disabilities", - "Rights of the Child", - "Women's rights" - ] - }, - { - "text": "Abolish the criminal laws as the "National Security Law"", - "values": [ - "Public security" - ] - }, - { - "text": "Take active measures to find a solution in Nepal and Bhutan for the remaining number of refugees", - "values": [ - "Asylum-seekers - refugees" - ] - }, - { - "text": "Continue to strive for a careful balance between measures taken against harmful traditional practices and respect for traditional cultural and spiritual beliefs", - "values": [ - "Rights of the Child", - "Torture and other CID treatment", - "Women's rights" - ] - }, - { - "text": "Ensure the protection and welfare of civilians in the Occupied Palestinian Territories.", - "values": [ - "Other" - ] - }, - { - "text": "Continue to take actions to address the issue of gender pay gap, improve the access to decent work for marginalized women, and ensure adequate social protection system for women in vulnerable situations", - "values": [ - "Women's rights" - ] - }, - { - "text": "Remove the barriers that hinder the effective accessibility of boys and girls with disabilities to education ", - "values": [ - "Disabilities", - "Right to education", - "Rights of the Child" - ] - }, - { - "text": "Continue its implementation of the national strategy for social integration and development", - "values": [ - "Development" - ] - }, - { - "text": "Continue to strengthen the works towards preventing and combatting child pornography and human trafficking, as well as implement assistance programmes for victims", - "values": [ - "Rights of the Child", - "Trafficking" - ] - }, - { - "text": "Close Guantanamo and secret detention centres", - "values": [ - "Counter-terrorism", - "Detention" - ] - }, - { - "text": "Continue to promote and protect its rich historical and cultural heritage", - "values": [ - "Other" - ] - }, - { - "text": "Enforce the implementation of the National Prison Policy at all levels and work towards establishing more juvenile courts and juvenile retention homes especially on Zanzibar", - "values": [ - "Justice", - "Rights of the Child" - ] - }, - { - "text": "Set up an independent national human rights institution, in accordance with the Paris Principles", - "values": [ - "National Human Rights Institution" - ] - }, - { - "text": "Adopt additional measures to protect religious, cultural and ethnic minorities subjected to discrimination", - "values": [ - "Freedom of religion and belief", - "Migrants", - "Racial discrimination" - ] - }, - { - "text": "Reinforce and consolidate recovery of the country and national reconciliation and remedy past human rights violations through the establishment of a transitional justice strategy", - "values": [ - "Justice" - ] - }, - { - "text": "Enforce regulations to protect foreign workers, particularly regarding work conditions and occupational and safety standards, and prosecute violations", - "values": [ - "Labour", - "Migrants" - ] - }, - { - "text": "Ratify ILO Convention No. 169, concerning Indigenous and Tribal Peoples in Independent Countries", - "values": [ - "Indigenous peoples", - "International instruments" - ] - }, - { - "text": "Continue to pursue appropriate policies to improve conditions in its detention facilities ", - "values": [ - "Detention" - ] - }, - { - "text": "Ensure an effective and independent mechanism that examines the compatibility between popular initiatives and obligations under international human rights law", - "values": [ - "Other" - ] - }, - { - "text": "Ratify the ICCPR as soon as possible", - "values": [ - "CP rights - general", - "International instruments" - ] - }, - { - "text": "Withdraw the reservations made to the Convention against Torture, the International Convention on the Elimination of All Forms of Racial Discrimination", - "values": [ - "International instruments", - "Racial discrimination", - "Torture and other CID treatment" - ] - }, - { - "text": "Extend a permanent invitation to the Special Procedures ", - "values": [ - "Special procedures" - ] - }, - { - "text": "Repeal the laws that criminalize consensual sexual activities between people of the same sex, and protect lesbian, gay, bisexual and transsexual persons from discrimination and violence ", - "values": [ - "Sexual Orientation and Gender Identity" - ] - }, - { - "text": "Include in its next review report measures taken to comply with the recommendations of treaty bodies, especially with regard to the situation of human rights in the Occupied Palestinian Territories.", - "values": [ - "Treaty bodies" - ] - }, - { - "text": "Establish an environment where a judge can make a fair and appropriate decision without intimidation.", - "values": [ - "Justice" - ] - }, - { - "text": "Pay attention to the enforcement of laws against racial discrimination in the labour market, the development of a comprehensive anti-discrimination legislation and adoption of a comprehensive policy to ensure effective implementation of the principles of equality and non-discrimination in respect of all ", - "values": [ - "Racial discrimination" - ] - }, - { - "text": "Ensure that children are not treated as adult offenders in the administration of juvenile justice and that they are deprived of their liberty only as a measure of last resort", - "values": [ - "Justice", - "Rights of the Child" - ] - }, - { - "text": "Take measures to prevent child trafficking and sexual exploitation through education programmes and development of support services of assistance, rehabilitation and protection", - "values": [ - "Human rights education and training", - "Rights of the Child", - "Trafficking" - ] - }, - { - "text": "Fully implement the recommendations from the first universal periodic review cycle still pending, namely those regarding the strengthening of the Criminal Code provisions against gender-based violence and hate crimes", - "values": [ - "Racial discrimination", - "UPR process", - "Women's rights" - ] - }, - { - "text": "Strengthen human rights training aimed at teachers in order to eliminate discriminatory treatment of children of specific castes, as well as appropriately follow-up on the results of the training that has occurred thus far ", - "values": [ - "Minorities", - "Rights of the Child" - ] - }, - { - "text": "Ensure that people with severe mental disorders and/or in poor health, especially those whose state of health is at risk of further deterioration due to their incarceration, are not imprisoned", - "values": [ - "Detention", - "Disabilities", - "Right to health" - ] - }, - { - "text": "Continue to implement its decision No. 908 of 2007 regarding the coverage of certain costs for persons with special needs ", - "values": [ - "Other" - ] - }, - { - "text": "Adopt measures designed to overcome gender discrimination stemming from national legislation and customary law in the area of marriage and family relations ", - "values": [ - "Women's rights" - ] - }, - { - "text": "Take all the necessary steps to ensure the prompt and independent investigation of all allegations concerning intimidation, threats and attacks against journalists, media workers and human rights defenders", - "values": [ - "Freedom of the press", - "Human rights defenders" - ] - }, - { - "text": "Take legal and administrative measures to guarantee the principle of non-refoulement and the adequate and fair treatment for those requesting international protection", - "values": [ - "Asylum-seekers - refugees", - "International instruments" - ] - }, - { - "text": "Ratify the CRPD", - "values": [ - "Disabilities", - "International instruments" - ] - }, - { - "text": "Explicitly prohibit in national legislation corporal punishment in all settings, including at home", - "values": [ - "Rights of the Child", - "Torture and other CID treatment" - ] - }, - { - "text": "Take further steps to implement a policy of free compulsory education as established by the Indonesian Government over a period of 12 years so that all Indonesian children may have access to education ", - "values": [ - "Right to education", - "Rights of the Child" - ] - }, - { - "text": "Increase its investment in education so that future generations are better able to engage in the social and economic development of the country and to further take steps to eradicate corporal punishment in schools", - "values": [ - "Development", - "Right to education", - "Torture and other CID treatment" - ] - }, - { - "text": "Swiftly adopt the necessary implementing legislation to ensure effective prevention of violence against women and punishment of the offenders", - "values": [ - "Women's rights" - ] - }, - { - "text": "Continue its measures in the field of social security and health", - "values": [ - "ESC rights - general", - "Right to health" - ] - }, - { - "text": "Continue its efforts to follow-up on the implementation of the National Action Plan for the Promotion and Protection of Human Rights", - "values": [ - "General" - ] - }, - { - "text": "Consider the introduction of a complaint mechanism for children at the domestic level, as well as signature and ratification of the third Optional Protocol to the Convention on the Rights of the Child on a communications procedure", - "values": [ - "International instruments", - "Rights of the Child" - ] - }, - { - "text": "Ratify the 1951 Convention relating to the Status of Refugees ", - "values": [ - "Asylum-seekers - refugees", - "International instruments" - ] - }, - { - "text": "Develop policies to improve information infrastructure for the benefit of the Cuban society ", - "values": [ - "Freedom of opinion and expression" - ] - }, - { - "text": "Sign and ratify the 1951 Convention relating to the Status of Refugees, and enact domestic refugee law in line with international standards", - "values": [ - "Asylum-seekers - refugees", - "International instruments" - ] - }, - { - "text": "Establish a de jure moratorium on capital executions and commute the existing death sentences with a view to fully abolishing the death penalty", - "values": [ - "Death penalty" - ] - }, - { - "text": "Further improve accessibility of persons with disabilities to infrastructure, training and education", - "values": [ - "Disabilities", - "Right to education" - ] - }, - { - "text": "Incorporate human rights education and awareness training into the school curriculum through cooperation with and assistance from the international community ", - "values": [ - "Human rights education and training", - "Right to education", - "Technical assistance and cooperation" - ] - }, - { - "text": "Continue to take the necessary measures in the area of Official Development Assistance (ODA) to meet its voluntary commitments undertaken in this field", - "values": [ - "Development" - ] - }, - { - "text": "Continue efforts in enhancing the welfare of all segments of society and their rights based on national context and characteristics", - "values": [ - "General" - ] - }, - { - "text": "Continue to promote human rights education", - "values": [ - "Human rights education and training" - ] - }, - { - "text": "Abolish the death penalty definitively in accordance with the Second Optional Protocol to ICCPR ", - "values": [ - "Death penalty", - "International instruments" - ] - }, - { - "text": "Within the context of paragraph 1 (a) of resolution 9-12 of the HRC, to review the nature of reservations to CEDAW and the CRC", - "values": [ - "International instruments", - "Rights of the Child", - "Statelessness and the right to nationality", - "Women's rights" - ] - }, - { - "text": "Integrate children with disabilities in the national education system", - "values": [ - "Disabilities", - "Right to education", - "Rights of the Child" - ] - }, - { - "text": "Take urgent measures to eradicate child labour and child trafficking", - "values": [ - "Labour", - "Rights of the Child", - "Trafficking" - ] - }, - { - "text": "Incorporate women in all aspects of political, economic and social life ", - "values": [ - "Women's rights" - ] - }, - { - "text": "Put an end to mandatory religion courses for the "Alevis"", - "values": [ - "Freedom of religion and belief" - ] - }, - { - "text": "Step up its efforts to fight against certain forms and manifestations of racism and xenophobia, urge high-ranking State officials to take clear position against these scourges, and take necessary measures to accelerate implementation of the law on the reception and the integration of foreigners", - "values": [ - "Migrants", - "Racial discrimination" - ] - }, - { - "text": "Step up its cooperation with special procedures mandate holders and eventually consider extending a standing invitation to all special procedures mandate holders of the Human Rights Council", - "values": [ - "Special procedures" - ] - }, - { - "text": "Review the 2011 Religion Law with a view to ensuring conformity with the Constitution and international human rights standards", - "values": [ - "Freedom of religion and belief", - "International instruments" - ] - }, - { - "text": "Further increase efforts, including through legislative measures, to end discrimination against women", - "values": [ - "Women's rights" - ] - }, - { - "text": "Fully and effectively implement the Freedom of Mass Media and Access to Information Proclamation ", - "values": [ - "Freedom of opinion and expression", - "Freedom of the press" - ] - }, - { - "text": "Ensure the effective investigation of all reports of domestic and sexual violence against women and girls, the prosecution of perpetrators and the delivery of sentences that are commensurate with the gravity of the crimes committed ", - "values": [ - "Rights of the Child", - "Women's rights" - ] - }, - { - "text": "Establish effective complaint mechanisms for the victims of torture, with a special focus on persons in detention, so that any misconduct by police, prison or detention staff receives a full and independent investigation and regular punishment", - "values": [ - "Detention", - "Human rights violations by state agents", - "Torture and other CID treatment" - ] - }, - { - "text": "Intensify its efforts in combating gender-based violence in all its forms ", - "values": [ - "Women's rights" - ] - }, - { - "text": "Address the discriminatory situation of women belonging to minorities, including Roma women", - "values": [ - "Minorities", - "Racial discrimination", - "Women's rights" - ] - }, - { - "text": "Encourage the Parliament to speed up consultations underway to ensure the appointment and functioning of an ombudsman ", - "values": [ - "National Human Rights Institution" - ] - }, - { - "text": "Intensify efforts on gender equality", - "values": [ - "Women's rights" - ] - }, - { - "text": "Consider favourably accession to the Rome Statute of the International Criminal Court", - "values": [ - "International instruments", - "Justice" - ] - }, - { - "text": "Recommended that provisions of the law on the work of foreign journalists be extended to Chinese journalists", - "values": [ - "Freedom of the press" - ] - }, - { - "text": "Adopt measures to combat and eradicate cases of xenophobia against the Roma minority", - "values": [ - "Minorities", - "Racial discrimination" - ] - }, - { - "text": "Lift the general reservation to CEDAW and amend national legislation accordingly ", - "values": [ - "International instruments", - "Women's rights" - ] - }, - { - "text": "Review and where necessary abolish the laws resulting in impunity for those who committed crimes during the dictatorships, in particular the Law on the Expiry of the Punitive Claims of the State, No. 15848, and remove all obstacles to finding the truth about the past, in particular with regard to families of victims of enforced disappearance", - "values": [ - "Enforced disappearances", - "Impunity", - "Justice" - ] - }, - { - "text": "Take further steps to increase participation by women in Parliament, and in government leadership positions, including through further consideration of temporary special measures", - "values": [ - "Women's rights" - ] - }, - { - "text": "Establish a national preventive mechanism that has adequate resources and is in conformity with the requirements, set out in the Optional Protocol to the Convention against Torture, of full legal, functional and financial independence and of staff composition, immunities and privileges", - "values": [ - "Detention", - "International instruments", - "Torture and other CID treatment" - ] - }, - { - "text": "Step up efforts to update periodic reports to the human rights treaty bodies", - "values": [ - "Treaty bodies" - ] - }, - { - "text": "Continue the efforts to eliminate corruption through access to public information", - "values": [ - "Corruption", - "Freedom of opinion and expression" - ] - }, - { - "text": "Ratify the International Convention on the Elimination of All Forms of Racial Discrimination and the International Covenant on Economic, Social and Cultural Rights", - "values": [ - "ESC rights - general", - "International instruments", - "Racial discrimination" - ] - }, - { - "text": "Strengthen actions and programmes of the national government to make the Colombian society more equal and free from poverty ", - "values": [ - "Poverty" - ] - }, - { - "text": "Take measures to reform the Judicial Service Commission, so as to ensure an independent and impartial judiciary which respects fundamental rights", - "values": [ - "Justice" - ] - }, - { - "text": "Recommended that Mali be provided with the necessary technical assistance it is seeking in order to promote human rights in the country.", - "values": [ - "Technical assistance and cooperation" - ] - }, - { - "text": "Ratify those international human rights instruments which have not been ratified", - "values": [ - "International instruments" - ] - }, - { - "text": "Devise plans and strategies, especially for the promotion of gender equality and upholding children's rights ", - "values": [ - "Rights of the Child", - "Women's rights" - ] - }, - { - "text": "Take necessary measures to prevent any threat against human rights defenders and ensure their effective protection", - "values": [ - "Human rights defenders" - ] - }, - { - "text": "Allocate adequate financial resources and ensure effective coordination among State institutions mandated to strengthen the implementation of the rights of the child", - "values": [ - "Rights of the Child" - ] - }, - { - "text": "Tackle negative attitudes related to gender and discrimination against women through human rights training of law enforcement and judicial bodies' agents", - "values": [ - "Human rights education and training", - "Women's rights" - ] - }, - { - "text": "Take more steps in the fight against HIV/AIDS by carrying out sensitization programmes and also learning from the best practices available in this area", - "values": [ - "HIV - Aids", - "Human rights education and training" - ] - }, - { - "text": "Accede to the 1954 Convention relating to the Status of Stateless Persons and the 1961 Convention on the Reduction of Statelessness ", - "values": [ - "International instruments", - "Statelessness and the right to nationality" - ] - }, - { - "text": "Undertake further steps to preserve and promote the traditional means of livelihood of the Sami people, such as reindeer grazing and fishing ", - "values": [ - "Indigenous peoples" - ] - }, - { - "text": "Consider prioritizing acquiescence to the Convention of the Rights of the Child, CEDAW, the ILO Convention No. 111 on Discrimination in Respect of Employment and Occupation so as to further strengthen its national framework for human rights, but also to assist in achieving their universality", - "values": [ - "International instruments", - "Labour", - "Rights of the Child", - "Women's rights" - ] - }, - { - "text": "Continue with plans aiming at the protection of the rights of the child, particularly those regarding to live and grow in a family ", - "values": [ - "Rights of the Child" - ] - }, - { - "text": "Fulfil its obligations to the International Criminal Tribunal for the Former Yugoslavia and other related bodies", - "values": [ - "Justice" - ] - }, - { - "text": "Address, in a comprehensive manner, the rise of negative attitudes towards immigrants as reported in the 2009 Spanish Racism and Xenophobia Report ", - "values": [ - "Migrants", - "Racial discrimination" - ] - }, - { - "text": "Fully abolish the death penalty", - "values": [ - "Death penalty" - ] - }, - { - "text": "Ensure that the complaints mechanisms of the Ombudsman are easily accessible to all in need, including children ", - "values": [ - "National Human Rights Institution" - ] - }, - { - "text": "Continue in its efforts to ensure an inclusive education system, particularly with respect to students with special educational needs and for those students most in need of financial assistance", - "values": [ - "Right to education" - ] - }, - { - "text": "Use the new national plan of action on human rights and international humanitarian law to address the issue of extrajudicial killings comprehensively", - "values": [ - "Extrajudicial executions", - "International humanitarian law", - "International instruments" - ] - }, - { - "text": "Investigate the cases and assess the possibility of making improvements to the facilities in local prisons ", - "values": [ - "Detention" - ] - }, - { - "text": "Adopt a comprehensive anti-discrimination act prohibiting discrimination based on sexual orientation, gender, religion, belief, and race", - "values": [ - "Freedom of religion and belief", - "Racial discrimination", - "Sexual Orientation and Gender Identity", - "Women's rights" - ] - }, - { - "text": "Review the legislation applicable to crimes of terrorism, including the criminal code and the law on prevention of terrorism to ensure that they are in line with international human rights standards and standards for combating organized crime", - "values": [ - "International instruments", - "Public security" - ] - }, - { - "text": "Intensify its efforts to counter the widespread practice of forced recruitment of children by non-state armed groups, and ensure that all demobilized children are given protection, reintegration and rehabilitation assistance ", - "values": [ - "International humanitarian law", - "Rights of the Child" - ] - }, - { - "text": "Continue to cooperate with the United Nations human rights mechanisms within the framework of the implementation of ratified international instruments", - "values": [ - "International instruments", - "Technical assistance and cooperation" - ] - }, - { - "text": "Further undergo awareness raising activities for overcoming the traditional stereotypes regarding the roles and responsibilities of women and men in the family and society, and for strengthening the principle of shared responsibility", - "values": [ - "Human rights education and training", - "Women's rights" - ] - }, - { - "text": "Take necessary measures to guarantee all children the right to education", - "values": [ - "Right to education", - "Rights of the Child" - ] - }, - { - "text": "Complete the ongoing discussions on the conclusion of an agreement with the Muslim community in Luxembourg, as has been done with the other religions ", - "values": [ - "Freedom of religion and belief", - "Minorities" - ] - }, - { - "text": "Disclose detailed data on the use of the death penalty and the modalities of the executions", - "values": [ - "Death penalty" - ] - }, - { - "text": "Continue reinforcing the enjoyment by people with disabilities of all their political, social and economic rights", - "values": [ - "Disabilities", - "ESC rights - general" - ] - }, - { - "text": "Ensure the implementation of the National Gender-Based Violence Action Plan and put a halt on gender-based violence", - "values": [ - "Rights of the Child", - "Women's rights" - ] - }, - { - "text": "Consider extending a standing invitation to all special procedures of the human Right Council", - "values": [ - "Special procedures" - ] - }, - { - "text": "Work on setting up a national mechanism for the reporting and the follow up in the framework of the international human rights instruments", - "values": [ - "International instruments", - "UPR process" - ] - }, - { - "text": "Take all necessary measures to ensure effective implementation of the Caste-based Discrimination and Untouchability Act of 2011 and to eliminate all forms of discrimination against women", - "values": [ - "Minorities", - "Racial discrimination", - "Women's rights" - ] - }, - { - "text": "Take steps to ratify the core human rights conventions, in particular the Convention against Torture and Other Cruel, Inhuman or Degrading Treatment or Punishment ", - "values": [ - "International instruments", - "Torture and other CID treatment" - ] - }, - { - "text": "Strengthen the judiciary in order to fight against impunity and all forms of crime", - "values": [ - "Impunity" - ] - }, - { - "text": "Decriminalize consensual same-sex activity between adults", - "values": [ - "Sexual Orientation and Gender Identity" - ] - }, - { - "text": "Take new, additional measures, to ensure that the military exercises full control over Civilian Armed Forces Geographical Units and the police over Civilian Volunteer Organizations, holding these units accountable for the Philippines' obligations under international human rights law ", - "values": [ - "International instruments", - "Public security" - ] - }, - { - "text": "Continue and strengthen efforts and completely stem acts of torture and ensure that detainees have access to effective legal remedy", - "values": [ - "Torture and other CID treatment" - ] - }, - { - "text": "Conduct public campaigns to promote cultural diversity and tolerance towards minorities and victims of hate crimes", - "values": [ - "Minorities", - "Racial discrimination" - ] - }, - { - "text": "Continue its endeavours in the field of human rights specially when one takes into account the fact that the government has been promoting Human Rights under special circumstances of a country in transition from a long period of military rule to a fully fledged democracy", - "values": [ - "General" - ] - }, - { - "text": "Impose a moratorium on executions with a view to abolishing the death penalty ", - "values": [ - "Death penalty" - ] - }, - { - "text": "Follow other principles enshrined in the United Nations Declaration on the Rights of Indigenous Peoples", - "values": [ - "Indigenous peoples", - "International instruments" - ] - }, - { - "text": "Establish a follow up committee to review all recommendations made during the review process with a view to forming a national plan of action for the next four years", - "values": [ - "UPR process" - ] - }, - { - "text": "That the new Commission be equipped with all the necessary safeguards to ensure its true independence in accordance with the Paris Principles ", - "values": [ - "National Human Rights Institution" - ] - }, - { - "text": "Redouble its efforts in favor of the respect of the rights of indigenous peoples, in line with the provisions of the United Nations Declaration on the Rights of Indigenous Peoples", - "values": [ - "Indigenous peoples", - "International instruments" - ] - }, - { - "text": "Strengthen the capacity to adequately protect and promote human rights in cooperation\nwith OHCHR", - "values": [ - "General" - ] - }, - { - "text": "Implement fully the 1997 Constitution and the rights that it enshrines, including allowing independent political parties and non-government organizations to function freely ", - "values": [ - "Civil society", - "Freedom of association and peaceful assembly" - ] - }, - { - "text": "Increase the percentage of overall government spending dedicated to health and education", - "values": [ - "Right to education", - "Right to health" - ] - }, - { - "text": "Reinforce plans and programmes to strengthen and guarantee the independence and effectiveness of judicial institutions, by providing them with adequate structures and financial resources", - "values": [ - "Justice" - ] - }, - { - "text": "Effectively achieve greater access to employment to persons with disabilities, particularly women ", - "values": [ - "Development", - "Disabilities", - "Women's rights" - ] - }, - { - "text": "Consider withdrawing the reservations to articles 7 and 16 of CEDAW", - "values": [ - "International instruments", - "Women's rights" - ] - }, - { - "text": "Continue in its efforts to accelerate the achievement of substantive equality for women and men, with a greater focus on women, especially minority women, in decision-making policy positions in the public and private sectors", - "values": [ - "Minorities", - "Women's rights" - ] - }, - { - "text": "Strengthen efforts in the elimination of child labour, including enforcing legislation on the minimum age of work", - "values": [ - "Labour", - "Rights of the Child" - ] - }, - { - "text": "Continue its efforts to bring its penitentiaries and detention centres into compliance with international human rights standards ", - "values": [ - "Detention", - "International instruments" - ] - }, - { - "text": "Amend the Criminal Code so that it explicitly provides sanctions against organizations propagating racist ideas as well as hate speech", - "values": [ - "Racial discrimination" - ] - }, - { - "text": "Implement public policies to improve the human rights situation of persons, particularly children, with disabilities, to allow this sector of the population to participate in the economic, social and cultural life on an equal basis ", - "values": [ - "Disabilities", - "ESC rights - general", - "Rights of the Child" - ] - }, - { - "text": "Expedite the adoption of the Prevention and Combating of Hate Crimes and Hate Speech Bill", - "values": [ - "Racial discrimination" - ] - }, - { - "text": "Prohibit corporal punishment of children in all settings, as previously recommended ", - "values": [ - "Rights of the Child", - "Torture and other CID treatment", - "UPR process" - ] - }, - { - "text": "Strengthen its efforts to ensure that all war crimes trials are carried out in a non-discriminatory manner and that all cases of war crimes are effectively investigated and prosecuted, irrespective of the ethnicity of the victims and perpetrators involved", - "values": [ - "Justice" - ] - }, - { - "text": "Strengthen its cooperation with the special procedures of the Human Rights Council by extending a standing invitation to all special procedures mandate holders", - "values": [ - "Special procedures" - ] - }, - { - "text": "Investigate and bring to justice those responsible for reported abuses in the aftermath of violations of constitutional order that occurred on 28 June 2009", - "values": [ - "Justice" - ] - }, - { - "text": "Accelerate the process to establish a transitional justice system that includes an equal participation of women, that relies on personnel trained to deal with cases of sexual violence and violence against women, and whose rulings are transparent and public", - "values": [ - "Justice", - "Women's rights" - ] - }, - { - "text": "Elaborate and adopt a plan which promotes a greater and wider understanding of discrimination and intolerance and its various manifestations and also adopt administrative measures which allow the combating of discrimination on the basis of ethnicity, nationality or language", - "values": [ - "Minorities", - "Racial discrimination" - ] - }, - { - "text": "Ratify other human rights conventions to which Algeria is not yet a State party", - "values": [ - "International instruments" - ] - }, - { - "text": "Ensure that all prisoners are provided with the minimum standards of humane treatment, in particular that they are not subject to torture or inhumane or degrading treatment such as forced hard labour or food quotas", - "values": [ - "Detention", - "Labour", - "Right to food", - "Torture and other CID treatment" - ] - }, - { - "text": "In the current world economic crisis, to step up its efforts for the protection of economic, social and cultural rights for the most vulnerable segments of the population including the migrants ", - "values": [ - "ESC rights - general", - "Migrants" - ] - }, - { - "text": "Amend those articles of the draft media law and the draft cybercrime law that are inconsistent with international standards of freedom of expression ", - "values": [ - "Freedom of opinion and expression", - "Freedom of the press" - ] - }, - { - "text": "Take measures to increase the attendance rates of Roma students and their retention in school by, inter alia, providing sufficient comprehensive measures to cover education- related expenses and raising awareness of the importance of education among Roma families", - "values": [ - "Minorities", - "Right to education" - ] - }, - { - "text": "Establish an interministerial committee responsible for the implementation of its international obligations, inter alia, for coordinating the drafting of the national reports to the treaty bodies and for organizing country visits by the Council's special procedures ", - "values": [ - "International instruments", - "Special procedures", - "Treaty bodies" - ] - }, - { - "text": "Adopt a comprehensive law to fight discrimination, pursuing to the recommendations issued both by the Committee on the Elimination of Racial Discrimination and the Committee on the Elimination of Discrimination against Women", - "values": [ - "Racial discrimination", - "Treaty bodies", - "Women's rights" - ] - }, - { - "text": "Intensify the efforts to eradicate domestic violence, through education and legal measures and the implementation of a plan of action ", - "values": [ - "Rights of the Child", - "Women's rights" - ] - }, - { - "text": "Ratify those conventions which Palau has not ratified, as previously recommended", - "values": [ - "International instruments", - "UPR process" - ] - }, - { - "text": "Incorporate in its legislation and take positive measures to implement the rights contained in the Convention on the Rights of Persons with Disabilities", - "values": [ - "Disabilities", - "International instruments" - ] - }, - { - "text": "Step up information on sexual and reproductive health, including modern contraceptive methods, in particular for women living in rural areas ", - "values": [ - "Right to health", - "Rights of the Child", - "Women's rights" - ] - }, - { - "text": "Guarantee the right to food through self-sufficiency production projects, eliminating in this manner all forms of quotas and limits imposed by the State, and additionally enabling access to the various international organizations and United Nations agencies that work on all aspects of sustainable development and food security ", - "values": [ - "Development", - "Right to food" - ] - }, - { - "text": "Enact broad anti-discrimination legislation that explicitly prohibits discrimination based on sexual orientation and gender identity", - "values": [ - "Sexual Orientation and Gender Identity" - ] - }, - { - "text": "Enhance its efforts to encourage people to enrol their children in schools as well as to improve access to education", - "values": [ - "Right to education", - "Rights of the Child" - ] - }, - { - "text": "Ratify the optional protocol to CAT which it signed in 2008", - "values": [ - "Detention", - "International instruments", - "Torture and other CID treatment" - ] - }, - { - "text": "Prevent the indefinite detention of persons with mental disabilities", - "values": [ - "Detention", - "Disabilities" - ] - }, - { - "text": "Further facilitate a conducive environment for relevant human rights-related organizations to help implement the recommendations received during the UPR process ", - "values": [ - "Civil society", - "UPR process" - ] - }, - { - "text": "Have an independent body to promptly and thoroughly investigate all allegations of torture and ill-treatment by the police ", - "values": [ - "Human rights violations by state agents", - "Torture and other CID treatment" - ] - }, - { - "text": "Guarantee that all the Government\u2019s methods of combating the use of illegal drugs are brought into line with international standards", - "values": [ - "Other" - ] - }, - { - "text": "Introduce a mandatory appeal system in capital cases and to ensure that inmates themselves, their families and their legal representatives are provided with adequate information about a pending execution and to allow a last family visit or communication with the convicted person", - "values": [ - "Death penalty" - ] - }, - { - "text": "Abolish legislative provisions that grant state officials immunity from prosecution, notably by repealing Decrees 14/1969 and 69/2008", - "values": [ - "Human rights violations by state agents", - "Impunity" - ] - }, - { - "text": "Take measures to provide redress to victims of trafficking in persons and adopt specific policies to fight against forced labour and prostitution", - "values": [ - "Labour", - "Trafficking" - ] - }, - { - "text": "Eliminate corporal punishment from Bahamas legislation in accordance with the Convention against Torture and Other Cruel, Inhuman or Degrading Treatment or Punishment and the Convention on the Rights of the Child.", - "values": [ - "International instruments", - "Rights of the Child", - "Torture and other CID treatment" - ] - }, - { - "text": "Continue its efforts to empower women ", - "values": [ - "Women's rights" - ] - }, - { - "text": "Consider ratifying the International Convention for the Protection of All Persons from Enforced Disappearance and recognize the competence of its Committee", - "values": [ - "Enforced disappearances", - "International instruments", - "Treaty bodies" - ] - }, - { - "text": "Establish adequate mechanisms to identify potential asylum-seekers in border procedures, undertake measures aimed at avoiding prolongation of administrative detention of asylum-seekers and at improving the living conditions and treatment of asylum-seekers and refugees ", - "values": [ - "Asylum-seekers - refugees", - "Detention" - ] - }, - { - "text": "Seek financial and technical assistance necessary to meet the challenges identified by the World Food Programme, namely the persistent food deficits, recurring drought and high malnutrition rates ", - "values": [ - "Right to food", - "Technical assistance and cooperation" - ] - }, - { - "text": "Increase and consolidate programmes and social measures aimed at reducing poverty and social exclusion based on just distribution of national wealth, which will make it possible to move towards the greatest possible wellbeing for their people, for which it is necessary to count on international cooperation and technical assistance ", - "values": [ - "Poverty", - "Technical assistance and cooperation" - ] - }, - { - "text": "Strengthen policies towards provision of care and support to children infected by HIV/AIDS, particularly those orphaned", - "values": [ - "HIV - Aids", - "Rights of the Child" - ] - }, - { - "text": "Reinforce policies and programmes developed to address poverty, homelessness, food insecurity as well as access to quality health-care services and education, with special focus on the most disadvantage groups, such as Aboriginal peoples ", - "values": [ - "Indigenous peoples", - "Poverty", - "Right to education", - "Right to food", - "Right to health", - "Right to housing" - ] - }, - { - "text": "Adopt measures to prevent, eliminate and end impunity for all forms of sexual violence, including by improving the investigation and prosecution of sexual offenders and ensuring that penalties are applied consistently", - "values": [ - "Impunity" - ] - }, - { - "text": "Continue programmes on human rights education, including on prevention", - "values": [ - "Human rights education and training" - ] - }, - { - "text": "Continue to attach particular priority to the strengthening of national capacities, both legislative and institutional, in the area of human rights, with the support of the international community ", - "values": [ - "Technical assistance and cooperation" - ] - }, - { - "text": "Thoroughly reform the legal framework regulating the founding and operation of independent media enterprises", - "values": [ - "Freedom of the press" - ] - }, - { - "text": "Ensure that an Australian cannot be deprived of citizenship other than in exceptional circumstances and within the framework of a specific legal procedure", - "values": [ - "Statelessness and the right to nationality" - ] - }, - { - "text": "Abolish, modify or introduce legislation, measures and practices to ensure the effective elimination of all forms of legal discrimination against women and to allow for their full participation in society, including in decision-making and political processes, on an equal basis with men", - "values": [ - "Women's rights" - ] - }, - { - "text": "Put emphasis on the rights of women and children, and continue to work to eliminate sexual violence under the Stamp it Out policy and implement it in a comprehensive manner ", - "values": [ - "Rights of the Child", - "Women's rights" - ] - }, - { - "text": "Strengthen policies and further seek international cooperation to ensure the human rights of Internally Displaced Persons, including measures for their return or resettlement", - "values": [ - "Internally displaced persons", - "Technical assistance and cooperation" - ] - }, - { - "text": "Take proper action to improve the situation of stateless persons, including by recognizing their civil and political rights", - "values": [ - "CP rights - general", - "Statelessness and the right to nationality" - ] - }, - { - "text": "Intensify efforts to prevent and combat violence against women and girls", - "values": [ - "Rights of the Child", - "Women's rights" - ] - }, - { - "text": "Ratify as soon as possible the CED", - "values": [ - "Enforced disappearances", - "International instruments" - ] - }, - { - "text": "Adopt the measures required to combat all forms of violence against women, including domestic violence and violence in marriage, both in law and in practice", - "values": [ - "Women's rights" - ] - }, - { - "text": "Ratify the remaining core human rights treaties, such as ICCPR and CAT", - "values": [ - "CP rights - general", - "International instruments", - "Torture and other CID treatment" - ] - }, - { - "text": "Consider further steps to engage women in politics in order to increase the number of women in decision-making positions ", - "values": [ - "Women's rights" - ] - }, - { - "text": "Continue to build up comprehensive efforts aimed at eliminating trafficking in persons, both at the national and international levels ", - "values": [ - "Trafficking" - ] - }, - { - "text": "Strengthen efforts to combat violence against women, inter alia, by ratifying the Council of Europe Convention on Preventing and Combating Violence against Women and Domestic Violence", - "values": [ - "International instruments", - "Rights of the Child", - "Women's rights" - ] - }, - { - "text": "Amend the Marriage Law in the Faroe Islands to allow for same sex marriages", - "values": [ - "Sexual Orientation and Gender Identity" - ] - }, - { - "text": "Continue to prioritise Malaysia's policies aimed at further improving the socio-economic condition of its citizens", - "values": [ - "ESC rights - general" - ] - }, - { - "text": "Implement recommendations made by the national reform committee tasked with reviewing the Domestic Violence Protection Orders Act, continue to develop a National Action Plan on Domestic Violence, train police on domestic violence issues and seek to expedite criminal trials, where appropriate ", - "values": [ - "Rights of the Child", - "Women's rights" - ] - }, - { - "text": "Continue strengthening the mechanisms for assistance to victims of trafficking, with special emphasis on children victims of this crime", - "values": [ - "Rights of the Child", - "Trafficking" - ] - }, - { - "text": "Double efforts in order to raise awareness on human rights for all categories of the society", - "values": [ - "Human rights education and training" - ] - }, - { - "text": "Consider ratifying human rights instruments to which it is not yet a State Party", - "values": [ - "International instruments" - ] - }, - { - "text": "Bring to justice people who have being identified by the Truth Commission as having committed human rights violations", - "values": [ - "Justice" - ] - }, - { - "text": "Laws should be enacted that would prohibit civilians being tried in military courts in the future", - "values": [ - "Justice" - ] - }, - { - "text": "Continue to build, fairly distribute and judiciously apply the resources in the National Education Fund, to ensure that the right of education of all Haitians is protected and promoted at all times without discrimination", - "values": [ - "Right to education" - ] - }, - { - "text": "Take the necessary measures for the prompt ratification of the Rome Statute as well as the adoption of legislation to implement the Statute ", - "values": [ - "International instruments", - "Justice" - ] - }, - { - "text": "Recommended that limits be set for pre-trial detention, according to minimum international standards.", - "values": [ - "Detention" - ] - }, - { - "text": "Ratify and implement the ICESCR ", - "values": [ - "ESC rights - general", - "International instruments" - ] - }, - { - "text": "Ensure equal access to quality health-care services, including by promoting training and capacity-building of medical personnel and students ", - "values": [ - "Right to health" - ] - }, - { - "text": "Ban child marriages and amend Law 422 of 2002 on the protection of minors in conflict with the law in order to raise the minimum age of criminal responsibility in compliance with international standards", - "values": [ - "Rights of the Child", - "Women's rights" - ] - }, - { - "text": "In line with its previous commitments, take all measures to ensure that freedom of expression, including on the Internet, is fully guaranteed in law and practice by bringing its legislation in line with the obligations of Viet Nam under ICCPR ", - "values": [ - "Freedom of opinion and expression", - "International instruments", - "UPR process" - ] - }, - { - "text": "Allocate the necessary resources to ensure the appropriate functioning of the National Council on Civic Education", - "values": [ - "Right to education" - ] - }, - { - "text": "Strengthen measures to combat discrimination and facilitate victims' access to remedies", - "values": [ - "Other" - ] - }, - { - "text": "Continue its efforts to strengthen the institutional and legal framework for human rights protection", - "values": [ - "General" - ] - }, - { - "text": "Ensure that perpetrators of gender-specific violence and rape of minors are held accountable for their actions and improve the access to health services and economic assistance for victims", - "values": [ - "Rights of the Child", - "Women's rights" - ] - }, - { - "text": "Accede to the First OP to the ICCPR", - "values": [ - "CP rights - general", - "International instruments" - ] - }, - { - "text": "Ratify the Rome Statute of the International Criminal Court, the Convention against Torture and the Optional Protocol to the Convention against Torture ", - "values": [ - "Detention", - "International instruments", - "Justice", - "Torture and other CID treatment" - ] - }, - { - "text": "Intensify efforts to address socioeconomic rights, particularly access to health and education", - "values": [ - "ESC rights - general", - "Right to education", - "Right to health" - ] - }, - { - "text": "Consider a moratorium on the imposition of the death penalty, as a step towards completely abolishing it ", - "values": [ - "Death penalty" - ] - }, - { - "text": "Take proper legal measures, including compensations on the attacks on foreign nationals resulting in loss of life and damage to property in parts of the country", - "values": [ - "Other" - ] - }, - { - "text": "Integrate the different agreements and treaties to which it is party in its domestic legislation and become party to other international instruments in the area of human rights.", - "values": [ - "International instruments" - ] - }, - { - "text": "Enhance measures to encourage participation of women in the labour market without gender discrimination, including by reducing the wage gap between men and women ", - "values": [ - "Women's rights" - ] - }, - { - "text": "Accede to the following human rights instruments: CRPD, the ICERD and the OP-CRC-SC ", - "values": [ - "Disabilities", - "International instruments", - "Racial discrimination", - "Rights of the Child", - "Trafficking" - ] - }, - { - "text": "Review urgently the use of death penalty with a view to a moratorium and abolition.", - "values": [ - "Death penalty" - ] - }, - { - "text": "Build enough housing facilities so offenders under the age of 18 are housed separately from the general prison population", - "values": [ - "Detention", - "Rights of the Child" - ] - }, - { - "text": "During the consultation on human rights defenders referred to by the Minister of Human Rights, invite the Special Rapporteur on human rights defenders to help establish laws and structures which will be in accordance with the realities of the country. ", - "values": [ - "Human rights defenders", - "Special procedures" - ] - }, - { - "text": "Respect in law and in practice international standards for freedom of peaceful assembly, and open a dialogue with civil society representatives to establish a list of sites, in particular in the centre of Baku, where demonstrations can take place freely", - "values": [ - "Civil society", - "Freedom of association and peaceful assembly" - ] - }, - { - "text": "Continue efforts to eradicate literacy rates", - "values": [ - "Right to education" - ] - }, - { - "text": "Consider introducing a moratorium on executions as a first step towards the abolition of the death penalty, and commute all death sentences to terms of imprisonment", - "values": [ - "Death penalty" - ] - }, - { - "text": "Reinvigorate the dialogue with neighbouring countries in order to allow for the return of Bhutanese refugees still living in camps across the border ", - "values": [ - "Asylum-seekers - refugees" - ] - }, - { - "text": "Ensure the speedy implementation of the measures of the national Roma Strategy. ", - "values": [ - "Minorities" - ] - }, - { - "text": "Continue its targeted efforts to combat trafficking in persons, above all women and young girls", - "values": [ - "Rights of the Child", - "Trafficking", - "Women's rights" - ] - }, - { - "text": "The Government is firmly committed to improving existing conditions to satisfy international human rights standards in the operation of lock-ups and correctional facilities, however, the chief obstacles to this goal include the outdated physical infrastructure of the lock-ups and prisons and the inadequacy of human and financial resources to supervise and operate lock-ups and prisons.", - "values": [ - "Detention", - "International instruments" - ] - }, - { - "text": "Adopt comprehensive anti-discrimination legislation", - "values": [ - "Other" - ] - }, - { - "text": "Take immediate measures with a view to lifting the blockade and guarantee freedom of movement of goods and persons between Gaza and West bank, including East Jerusalem", - "values": [ - "Freedom of movement" - ] - }, - { - "text": "That relevant civil society groups are consulted in implementation of recommendations by treaty monitoring bodies and that their views are given due consideration ", - "values": [ - "Civil society", - "Treaty bodies" - ] - }, - { - "text": "Consider accepting the jurisdiction of the treaty bodies to receive complaints, conduct inquiries and take urgent actions", - "values": [ - "Treaty bodies" - ] - }, - { - "text": "Strengthen the national human rights institution and strengthen its independence", - "values": [ - "National Human Rights Institution" - ] - }, - { - "text": "Seek technical assistance and support from OHCHR and other relevant United Nations bodies, agencies and founds including for the preparation of overdue reports to the treaty bodies", - "values": [ - "Technical assistance and cooperation", - "Treaty bodies" - ] - }, - { - "text": "Formally repeal section 377 A of the Penal Code criminalising homosexual acts", - "values": [ - "Sexual Orientation and Gender Identity" - ] - }, - { - "text": "Remove, or at least extend, the 35-day statute of limitations of reporting rape cases", - "values": [ - "Rights of the Child", - "Women's rights" - ] - }, - { - "text": "Introduce a human rights-based approach to all climate change-related policies and programmes, including in disaster-risk reduction measures", - "values": [ - "Environment" - ] - }, - { - "text": "Continue its efforts in protecting the rights of women and children ", - "values": [ - "Rights of the Child", - "Women's rights" - ] - }, - { - "text": "Continue taking measures and setting awareness programs aimed at enhancing women's rights in different spheres including programmes that aim at clearing the misconception between Islamic sharia and negative cultural norms", - "values": [ - "Human rights education and training", - "Women's rights" - ] - }, - { - "text": "Continue efforts to reform the public education system and improve the quality of public education to achieve equal opportunities between social classes", - "values": [ - "Right to education" - ] - }, - { - "text": "Consider the possibility to allocate financial resources to implement the Law against Femicide and other Forms of Violence against Women and establish mechanisms to coordinate and monitor its enforcement", - "values": [ - "Women's rights" - ] - }, - { - "text": "Provide more resources and intensify implementation of programmes that would better ensure protection of women and children from abuse and violence", - "values": [ - "Rights of the Child", - "Women's rights" - ] - }, - { - "text": "Promote the exercise of freedom of expression without undue restrictions, by amending or repealing the 2013 Organic Act on Communication", - "values": [ - "Freedom of opinion and expression" - ] - }, - { - "text": "Continue with the complete incorporation into domestic law of the rights enshrined in the International Covenant on Civil and Political Rights and the International Covenant on Economic, Social and Cultural Rights", - "values": [ - "CP rights - general", - "ESC rights - general", - "International instruments" - ] - }, - { - "text": "Continue its active engagement with the United Nations human rights mechanisms for the protection and promotion of human rights ", - "values": [ - "Special procedures", - "Treaty bodies", - "UPR process" - ] - }, - { - "text": "Speed up the drafting of the strategy to protect human rights and civil rights ", - "values": [ - "CP rights - general" - ] - }, - { - "text": "Ratify the Optional Protocol to the Convention on the Elimination of All forms of Discrimination against Women", - "values": [ - "International instruments", - "Women's rights" - ] - }, - { - "text": "Step up efforts to improve health services and reduce the maternal mortality rate, including through the allocation of increased resources for health-care provision in rural areas ", - "values": [ - "Right to health", - "Women's rights" - ] - }, - { - "text": "Finalize working on the implementation of the recommendations of the BICI and to implement the outcome of the national conciliation dialogue ", - "values": [ - "Justice" - ] - }, - { - "text": "Redouble efforts to eliminate discrimination against minority children, including children of African descent and children with disabilities, and improve their socioeconomic conditions as earlier recommended by the Committee on the Rights of the Child", - "values": [ - "Disabilities", - "ESC rights - general", - "Minorities", - "Racial discrimination", - "Rights of the Child", - "Treaty bodies" - ] - }, - { - "text": "Continue pursuing appropriate policies and programmes to accommodate the needs of mentally disabled children", - "values": [ - "Disabilities", - "Rights of the Child" - ] - }, - { - "text": "Conduct awareness-raising campaigns against the discrimination of persons with albinism", - "values": [ - "Human rights education and training", - "Minorities" - ] - }, - { - "text": "Take additional measures to more actively promote the full and equal participation of women in bodies where members are elected or nominated ", - "values": [ - "Women's rights" - ] - }, - { - "text": "Consider extending a standing invitation to special procedures mandate holders of the Human Rights Council", - "values": [ - "Special procedures" - ] - }, - { - "text": "Continue the reform of the judiciary, law enforcement and penitentiary system, as well as continue the policy to reduce crime and corruption", - "values": [ - "Corruption", - "Detention", - "Justice" - ] - }, - { - "text": "Repeal all legal provisions criminalising sexual activity between consenting adults and encourage the Malawi Human Rights Commission to include in its mandate the protection of the rights of the lesbian, gay, bisexual, transgender and intersex community", - "values": [ - "National Human Rights Institution", - "Sexual Orientation and Gender Identity" - ] - }, - { - "text": "Take concrete measures to allow the United Nations Special Rapporteur on the situation of human rights in Eritrea to fully implement her mandate, including granting her unfettered access to the country ", - "values": [ - "Special procedures" - ] - }, - { - "text": "Continue supporting the efforts made by SERNAM in advancing women's rights, including by providing the necessary budget allocation as well as human resources ", - "values": [ - "Women's rights" - ] - }, - { - "text": "Promote greater tolerance and understanding among the majority population about the rights of the Roma community, migrants and asylum seekers.", - "values": [ - "Asylum-seekers - refugees", - "Migrants", - "Minorities" - ] - }, - { - "text": "Conduct a human rights education campaign among the law enforcement officials, to ensure permanent democratic freedoms in political life and in the work of the security forces, not just during electoral periods", - "values": [ - "Human rights education and training" - ] - }, - { - "text": "The MSAR [Macao Special Administrative Region] Government shall continue to dedicate great attention to the preservation and promotion of Macao's historic buildings and heritage, namely to the sites ("Historic Centre of Macao") included in the UNESCO World Heritage List. The annual international arts events that are currently hosted in Macao will be improved. Studies will be made with a view to promote new museums and artistic and cultural events that have good potential for Macao's cultural development and economic diversification.", - "values": [ - "Other" - ] - }, - { - "text": "Refrain from recourse to arbitrary detention and follow due process in all judicial cases, in accordance with international standards, in particular with relation to the arbitrary arrest of political opposition members, who should be immediately released", - "values": [ - "Detention", - "Freedom of opinion and expression" - ] - }, - { - "text": "Enact laws to ensure gender equality in wages and to reduce domestic violence and follow-up application ", - "values": [ - "Rights of the Child", - "Women's rights" - ] - }, - { - "text": "Establish a National Human Rights Institution in accordance with the Paris Principles, in order to strengthen the national system of human rights alongside the recently established Ministry of Human Rights", - "values": [ - "National Human Rights Institution" - ] - }, - { - "text": "Adopt the necessary policies to correct existing deficiencies in access to water and sanitation of the population ", - "values": [ - "Right to water and sanitation" - ] - }, - { - "text": "Increase efforts to implement the recommendations of treaty bodies and include general non-discrimination provisions for all Israeli citizens in the framework of basic law", - "values": [ - "Treaty bodies" - ] - }, - { - "text": "Establish a National Human Rights Institution fully compliant with the Paris Principles", - "values": [ - "National Human Rights Institution" - ] - }, - { - "text": "Certify that all its policies on the Roma are in line with the ICERD", - "values": [ - "International instruments", - "Minorities" - ] - }, - { - "text": "Take clear steps to ensure that Somali security forces (and militias under its purview) comply with international human rights law and international humanitarian law, including by integrating human rights training into security sector reform programmes ", - "values": [ - "Human rights education and training", - "International humanitarian law" - ] - }, - { - "text": "Ratify OP2-ICCPR ", - "values": [ - "Death penalty", - "International instruments" - ] - }, - { - "text": "Prioritize the need to become party to the Convention on the Prevention and Punishment of the Crime of Genocide, taking into account the fact that the Commonwealth of Dominica is party to the Rome Statute of the International Criminal Court", - "values": [ - "International instruments", - "Justice" - ] - }, - { - "text": "Ensure prompt investigations into attacks and threats against human rights defenders, indigenous people, and journalists as well as to ensure that they can carry out their activities without fear of reprisals", - "values": [ - "Freedom of the press", - "Human rights defenders", - "Indigenous peoples" - ] - }, - { - "text": "Abolish the death penalty, and in an intermediate phase, adopt an immediate moratorium on executions", - "values": [ - "Death penalty" - ] - }, - { - "text": "Ratify the UNESCO Convention against Discrimination in Education and ensure that primary education is free and compulsory for all", - "values": [ - "International instruments", - "Right to education" - ] - }, - { - "text": "Continue the selection process for a new Ombudsman, with a view to its appointment at the earliest possible, in line with the constitutional requirements and the Paris Principles", - "values": [ - "National Human Rights Institution" - ] - }, - { - "text": "Improve the situation of refugees by facilitating their registration and by renewing residency permits, by setting up an effective mechanism for birth registration to avoid statelessness of newborn children, and by allowing refugees, including Palestinian refugees, access to segments of the official labour market", - "values": [ - "Asylum-seekers - refugees", - "Labour", - "Rights of the Child", - "Statelessness and the right to nationality" - ] - }, - { - "text": "Continue to focus on human rights education through awareness-raising campaigns as well as necessary legislation", - "values": [ - "Human rights education and training" - ] - }, - { - "text": "Develop human rights education and training and include the aspects of women's and children's rights in education curricula", - "values": [ - "Human rights education and training", - "Rights of the Child", - "Women's rights" - ] - }, - { - "text": "Strengthen the independence and the mandate of its national human rights institution and provide it with adequate financial and human resources to assist it in meeting the standards required by the Paris Principles ", - "values": [ - "National Human Rights Institution" - ] - }, - { - "text": "Step up its attention and develop programmes for the social protection of citizens that suffer discrimination and social inequalities and eliminate all discriminatory provisions in legislation in some states", - "values": [ - "ESC rights - general" - ] - }, - { - "text": "Amend the law concerning "certificates of character" so as not to hamper the rehabilitation and reintegration of former convicts in the labour market", - "values": [ - "Justice" - ] - }, - { - "text": "Take further measures aimed at raising awareness about human rights among the population at large", - "values": [ - "Human rights education and training" - ] - }, - { - "text": "Put into place specific legislation to prevent, investigate and punish violence against women", - "values": [ - "Women's rights" - ] - }, - { - "text": "Establish a national human rights institution which is in conformity with the Paris Principles", - "values": [ - "National Human Rights Institution" - ] - }, - { - "text": "Consider acceding to OP-CEDAW and OP-CAT", - "values": [ - "Detention", - "International instruments", - "Torture and other CID treatment", - "Women's rights" - ] - }, - { - "text": "Assess the implementation and effectiveness of laws aimed at ending and preventing all forms of discrimination, in particular against women and Dalits, and take concrete steps to translate anti-discrimination efforts into effective practice on the ground", - "values": [ - "Minorities", - "Racial discrimination", - "Women's rights" - ] - }, - { - "text": "Consider reverting to the moratorium on executions and take steps towards the abolition of the death sentence", - "values": [ - "Death penalty" - ] - }, - { - "text": "Continue its fight against terrorism", - "values": [ - "Public security" - ] - }, - { - "text": "Encourage Liberia to strengthen its judicial system, especially in view of promoting accountability, in order to bring to justice those committing violence against women and children", - "values": [ - "Justice", - "Rights of the Child", - "Women's rights" - ] - }, - { - "text": "Develop legislation to explicitly prohibit all forms of corporal punishment of children in all settings, in accordance with the recommendations of the Committee on the Rights of the Child ", - "values": [ - "Rights of the Child", - "Treaty bodies" - ] - }, - { - "text": "Criminalise domestic and marital violence ", - "values": [ - "Rights of the Child", - "Women's rights" - ] - }, - { - "text": "Establish a moratorium on the use of the death penalty in order to avoid irreparable errors .", - "values": [ - "Death penalty" - ] - }, - { - "text": "In light of exceptional circumstances, appeal to the international community for its consent to cancelling Sudan's debt, which would constitute remarkable progress towards achievement of the Millennium Development Goals, ensure conditions of an equitable economic development and have a positive impact on the enjoyment of human rights for millions of Sudanese ", - "values": [ - "Development" - ] - }, - { - "text": "Continue to take measures within the framework of the Plan of Action on Education for All (2003-2015) in order to promote the right to education especially for women and girls ", - "values": [ - "Right to education", - "Rights of the Child", - "Women's rights" - ] - }, - { - "text": "Adopt concrete measures to prevent and combat all forms of discrimination against persons with an immigrant background ", - "values": [ - "Migrants", - "Racial discrimination" - ] - }, - { - "text": "Continue its efforts to establish a national human rights institution, with a mandate to promote and protect human rights in conformity with the Paris Principles", - "values": [ - "National Human Rights Institution" - ] - }, - { - "text": "Review the national legislation to bring it into conformity with international human rights instruments, in particular with the Second Optional Protocol to the International Covenant on Civil and Political Rights, aiming at the abolition of the death penalty", - "values": [ - "Death penalty", - "International instruments" - ] - }, - { - "text": "Ensure the dissemination of information about protective measures that are available and the legal framework in place to protect women, also among the rural population of the country ", - "values": [ - "Women's rights" - ] - }, - { - "text": "Ratify ICESCR and its Optional Protocol and ICERD ", - "values": [ - "ESC rights - general", - "International instruments", - "Racial discrimination" - ] - }, - { - "text": "Continue progress in the promotion of women's and children's rights, in accordance with Islamic Shari'a and its international commitments ", - "values": [ - "Rights of the Child", - "Women's rights" - ] - }, - { - "text": "Amend laws and change policies and practices that either expressly discriminate against or perpetuate discrimination against and the marginalization of women ", - "values": [ - "Women's rights" - ] - }, - { - "text": "Continue its efforts to complete the implementation of the voluntary pledges", - "values": [ - "UPR process" - ] - }, - { - "text": "Ratify core international human rights treaties, in particular ICCPR and ICESCR", - "values": [ - "CP rights - general", - "ESC rights - general", - "International instruments" - ] - }, - { - "text": "Repeal legislation relating to so-called "pre-criminal social dangerousness", as provided for in Articles 72, 73 and 74 of the Cuban Penal Code ", - "values": [ - "Freedom of association and peaceful assembly" - ] - }, - { - "text": "Continue efforts to revise and implement the single parent family support law with a view of introducing measures to ensure that women, in particular single mothers, can have access without fear of discrimination to employment, equal pay and matrimonial rights, as a follow up to recommendations contained in paragraphs 124.28, 124.29, 124.36 and 124.47 of the report of the Working Group on the Universal Periodic Review from the previous cycle", - "values": [ - "UPR process", - "Women's rights" - ] - }, - { - "text": "Strengthen measures to eliminate customary practices leading to violence, in particular vendetta and honour killings and domestic violence, and ensure effective access of potential and actual victims to protection ", - "values": [ - "Justice" - ] - }, - { - "text": "Continue intensifying the efforts to prevent, punish and eradicate all forms of violence against women ", - "values": [ - "Women's rights" - ] - }, - { - "text": "Provide due legal protection against discrimination on all grounds on its soil", - "values": [ - "Other" - ] - }, - { - "text": "Adopt a National Action Plan on Human Rights Education ", - "values": [ - "Right to education" - ] - }, - { - "text": "Finalize the establishment of the Independent National Commission of Human Rights with wide civil society involvement regarding nominations", - "values": [ - "Civil society", - "National Human Rights Institution" - ] - }, - { - "text": "Continue efforts to fight violence against women, including by raising awareness on the fight against female genital mutilation", - "values": [ - "Human rights education and training", - "Rights of the Child", - "Torture and other CID treatment", - "Women's rights" - ] - }, - { - "text": "Intensify efforts to prevent and investigate cases of sexual abuse of children, particularly those living on the street, so as to punish the perpetrators, and provide assistance and protection to victims", - "values": [ - "Rights of the Child" - ] - }, - { - "text": "As previously recommended, provide the necessary resources and technical capacity for Zimbabwe's Human Rights Commission to function as provided for in the Constitution", - "values": [ - "National Human Rights Institution" - ] - }, - { - "text": "Take all necessary measures to ensure that the Criminal Code prohibits all crimes against persons or against property on the basis of their actual or perceived sexual orientation or gender identity", - "values": [ - "Sexual Orientation and Gender Identity" - ] - }, - { - "text": "Consider taking comprehensive measures to address indigenous peoples' claims, giving due consideration to the United Nations Declaration on the Rights of Indigenous Peoples ", - "values": [ - "Indigenous peoples", - "International instruments" - ] - }, - { - "text": "Share with other States its expertise and achievements in the management of institutions providing special needs education ", - "values": [ - "Right to education" - ] - }, - { - "text": "Give urgent attention to the full implementation of ILO Convention 169, especially with regard to prior consultation on legislative and administrative measures that may affect indigenous communities ", - "values": [ - "Indigenous peoples", - "International instruments" - ] - }, - { - "text": "Implement fully and effectively the recommendations by the Special Rapporteur on torture and other cruel, inhuman or degrading treatment or punishment in his 2003 report and the Committee against Torture in its concluding observations in 2011 ", - "values": [ - "Special procedures", - "Torture and other CID treatment", - "Treaty bodies" - ] - }, - { - "text": "Seek to ensure access to education for all children and to improve the educational infrastructure and the quality of education", - "values": [ - "Right to education", - "Rights of the Child" - ] - }, - { - "text": "Consider ratifying the International Covenant on Civil and Political Rights and its Second Optional Protocol, aiming at the abolition of the death penalty", - "values": [ - "CP rights - general", - "Death penalty", - "International instruments" - ] - }, - { - "text": "Double its efforts in combating violence and the excessive use of force by law enforcement officers based on racial profiling through training, sensitization and community outreach, as well as ensuring proper investigation and prosecution when cases occur", - "values": [ - "Human rights violations by state agents" - ] - }, - { - "text": "Continue its efforts to bring about gender equality and empowerment of women", - "values": [ - "Women's rights" - ] - }, - { - "text": "Continue to increase education quality and participation as a means to combat poverty and child labour ", - "values": [ - "Labour", - "Poverty", - "Right to education", - "Rights of the Child" - ] - }, - { - "text": "Take further appropriate measures to improve the situation of children, in particular children victims of war, children living and-or working in the streets, minors in prison and AIDS orphans.", - "values": [ - "Rights of the Child" - ] - }, - { - "text": "Take all necessary measures to prevent further civilian casualties by foreign military forces in Afghanistan.", - "values": [ - "International humanitarian law" - ] - }, - { - "text": "Allocate adequate resources to realize the Sustainable Development Goal targets to reduce maternal mortality and end preventable deaths of newborns and children under 5", - "values": [ - "Development", - "Rights of the Child", - "Women's rights" - ] - }, - { - "text": "Continue the efforts to promote and protect traditional family values", - "values": [ - "Other" - ] - }, - { - "text": "Avoid and prevent judicial pressure on human rights defenders, journalists and other activists, taking into account international standards in this respect", - "values": [ - "Freedom of the press", - "Human rights defenders" - ] - }, - { - "text": "Ratify the Second Optional Protocol to the International Civil and Political Rights aiming at the formal abolition of the death penalty in the country", - "values": [ - "Death penalty", - "International instruments" - ] - }, - { - "text": "Adopts practical measures to implement the Law on Domestic Violence (and its legal instruments), and that Angola allocates a multi-annual budget to the Ministry involved to this effect", - "values": [ - "Rights of the Child", - "Women's rights" - ] - }, - { - "text": "Maintain its effective protection for the family as the fundamental and natural unit of society", - "values": [ - "Other" - ] - }, - { - "text": "Continue to collaborate with sporting associations with a view to promoting tolerance and diversity", - "values": [ - "Other" - ] - }, - { - "text": "Take further efforts to promote and protect women's rights, including measures to prevent trafficking in women ", - "values": [ - "Trafficking", - "Women's rights" - ] - }, - { - "text": "Enforce the Trafficking and Smuggling Persons Order to hold accountable labour and sex traffickers ", - "values": [ - "Trafficking" - ] - }, - { - "text": "Take all necessary measures to establish and finance anti-corruption courts", - "values": [ - "Corruption", - "Justice" - ] - }, - { - "text": "Take more effective measures in order to eradicate illiteracy and to address the obstacles preventing access to education", - "values": [ - "Right to education" - ] - }, - { - "text": "Take measures to ensure that torture is defined and listed as a specific offence within Benin's criminal law.", - "values": [ - "Torture and other CID treatment" - ] - }, - { - "text": "Effectively implement the recent legislation on strengthening women rights and adequately fund the newly established National Commission on the Status of Women", - "values": [ - "Women's rights" - ] - }, - { - "text": "Consider ratifying outstanding human rights treaties and the Rome Statute of the International Criminal Court and withdraw existing reservations to treaties, to which Viet Nam is a party ", - "values": [ - "International instruments", - "Justice" - ] - }, - { - "text": "Establish an independent national human rights institution that complies with the Paris Principles.", - "values": [ - "National Human Rights Institution" - ] - }, - { - "text": "Ensure access to justice for all the population, especially for victims of sexual and gender-based violence", - "values": [ - "Rights of the Child", - "Women's rights" - ] - }, - { - "text": "Ensure all cases of human rights violations are impartially investigated and prosecuted in proportion with the crimes committed ", - "values": [ - "Justice" - ] - }, - { - "text": "Ensure the principles of equality and non-discrimination by including the principle in the Basic Law and legislation", - "values": [ - "Other" - ] - }, - { - "text": "Accelerate the implementation of the policy on free education, in order to ensure that all children, particularly those from disadvantaged households, are not deprived of their right to education", - "values": [ - "Right to education", - "Rights of the Child" - ] - }, - { - "text": "Commit internationally to the rights of the LGBT community by signing the Joint Statement on LGBT human rights from the March 2011 session of the Human Rights Council", - "values": [ - "Sexual Orientation and Gender Identity" - ] - }, - { - "text": "Continue its efforts in the context of the Sustainable Development Goals, taking into consideration a human rights perspective", - "values": [ - "Development" - ] - }, - { - "text": "Conduct further work to ensure equality of men and women", - "values": [ - "Women's rights" - ] - }, - { - "text": "Continuity of the standing invitation for mandate holders of human rights special procedures ", - "values": [ - "Special procedures" - ] - }, - { - "text": "Continue the ratification process of the main international human rights instruments", - "values": [ - "International instruments" - ] - }, - { - "text": "Continue its efforts to guarantee access to justice to all", - "values": [ - "Justice" - ] - }, - { - "text": "(1) Attained universal basic education. (2) Reduced illiteracy among 15- to 24-year-olds to 1 per cent. (3) Reached gross coverage levels of 100 per cent for basic education (preschool, primary and lower secondary) and 93 per cent for higher secondary (middle school) education. (4) Established an average of 10.6 years' schooling among the 15- to 24-year-old age group. (5) Reduced the repeat rate in basic and middle education to 2.3 per cent.", - "values": [ - "Right to education" - ] - }, - { - "text": "Implement active policies and awareness campaigns in order to overcome the situation of discrimination against women", - "values": [ - "Human rights education and training", - "Women's rights" - ] - }, - { - "text": "Provide universal access to family planning and reproductive health for young women and quality education on these issues ", - "values": [ - "Right to health", - "Women's rights" - ] - }, - { - "text": "Take all measures to eliminate child labour and illegal mining ", - "values": [ - "Business and human rights", - "Environment", - "Labour", - "Rights of the Child" - ] - }, - { - "text": "Continue to strengthen measures and plans to address and effectively eradicate the causes of domestic violence against women, including training and capacity-building programmes on human rights for civil servants of the State that address this issue ", - "values": [ - "Women's rights" - ] - }, - { - "text": "Finally, Ambassador Roux, stressed that Belgium has voluntarily committed itself to submit a mid-term report to the Human Rights Council in 2013, to provide an overview on the progress achieved.", - "values": [ - "UPR process" - ] - }, - { - "text": "Continue its efforts in the area of the right to education, in particular, the integration of human rights in sectorial strategies for education, by guaranteeing the inclusion of modules on human rights in the school curricula ", - "values": [ - "Human rights education and training", - "Right to education" - ] - }, - { - "text": "Continue and strengthen its efforts directed to the further promotion and protection of human rights.", - "values": [ - "General" - ] - }, - { - "text": "Maintain the moratorium and ultimately move to abolish the death penalty in law ", - "values": [ - "Death penalty" - ] - }, - { - "text": "Conclude and adopt the Children's Code as a matter of priority ", - "values": [ - "Rights of the Child" - ] - }, - { - "text": "Establish an NHRI, in accordance with the United Arab Emirates' engagement in the first cycle of the UPR ", - "values": [ - "National Human Rights Institution", - "UPR process" - ] - }, - { - "text": "Continue to guarantee the allocation of adequate resources for the effective implementation of educational programmes, and intensify its efforts to address low enrolment rates in primary and basic education", - "values": [ - "Right to education" - ] - }, - { - "text": "Fully protect members of opposition groups, political activists and journalists who are exercising their rights to freedom of expression, association and peaceful assembly from arbitrary detention ", - "values": [ - "Detention", - "Freedom of association and peaceful assembly", - "Freedom of opinion and expression", - "Freedom of religion and belief" - ] - }, - { - "text": "Redouble its efforts and allocate more resources to address the problem of violence against women and children in this area, in particular through increasing women's empowerment, public awareness, education and training as well as increase vigilance and monitoring by the relevant authorities", - "values": [ - "Rights of the Child", - "Women's rights" - ] - }, - { - "text": "Step up programmes against extreme poverty and improve the quality of life of the population ", - "values": [ - "Poverty" - ] - }, - { - "text": "Set measures to prevent violence against children and prohibit corporal punishment of children", - "values": [ - "Rights of the Child", - "Torture and other CID treatment" - ] - }, - { - "text": "Continue efforts to ensure transparent adjudication of members of the security forces for human rights abuses, and continue efforts to reform the civilian police", - "values": [ - "Human rights violations by state agents", - "Justice" - ] - }, - { - "text": "Continue strengthening the work and cooperation ties among the Haitian human rights organisations and the Human Rights Section of MINUSTAH", - "values": [ - "Civil society" - ] - }, - { - "text": "Strengthen the comprehensive health-care system to elevate the level of health services", - "values": [ - "Right to health" - ] - }, - { - "text": "Pursue vigorously preventive and awareness-raising policies in combating discrimination based on race or ethnicity, in addition to the measures already taken", - "values": [ - "Human rights education and training", - "Racial discrimination" - ] - }, - { - "text": "Publically denounce crimes committed against LGBTs and to conduct thorough investigations into and prosecutions of these attacks ", - "values": [ - "Sexual Orientation and Gender Identity" - ] - }, - { - "text": "Consider not reinstating the death penalty, as per the bill introduced before the Seventeenth Congress", - "values": [ - "Death penalty" - ] - }, - { - "text": "Proceed with the ratification of the Optional Protocol to the Convention against Torture, the Convention on the Rights of Persons with Disabilities and its optional protocol, the International Convention for the Protection of All Persons from Enforced Disappearance, the International Convention on the Protection of the Rights of All Migrant Workers and Members of Their Families and the Optional Protocol to the International Covenant on Economic, Social and Cultural Rights", - "values": [ - "International instruments" - ] - }, - { - "text": "Establish and appoint an Ombudsman on the rights of girls, boys and adolescents", - "values": [ - "National Human Rights Institution", - "Rights of the Child" - ] - }, - { - "text": "Sign and ratify the International Convention on the Protection of the Rights of All Migrant Workers and Members of their Families and incorporate it into law", - "values": [ - "International instruments", - "Labour", - "Migrants" - ] - }, - { - "text": "Increase its efforts to promote civil registration of the Timorese population, particularly of children", - "values": [ - "Rights of the Child" - ] - }, - { - "text": "Consider abolishing the death penalty ", - "values": [ - "Death penalty" - ] - }, - { - "text": "Establish a legal system to protect the rights of migrant workers, consistent with international standards in this area and in particular as regards to working time and access to services and legal means to ensure the respect for contracts", - "values": [ - "Labour", - "Migrants" - ] - }, - { - "text": "Redouble actions to improve the compliance with the human right to water", - "values": [ - "Right to water and sanitation" - ] - }, - { - "text": "Take steps to ensure the successful implementation of the national plan for the advancement of Bahraini women 2013-2022", - "values": [ - "Women's rights" - ] - }, - { - "text": "Continue efforts to fight right-wing extremism.", - "values": [ - "Racial discrimination" - ] - }, - { - "text": "Continue reforms in the education sector with a view to further enhancing the quality of education ", - "values": [ - "Right to education" - ] - }, - { - "text": "Effectuate the expansion of the mandate of the CHRAJ mandate", - "values": [ - "National Human Rights Institution" - ] - }, - { - "text": "In the spirit of its Constitution, which guarantees equal rights to all minorities, further invest in dedicated human rights training of police officials to register and investigate cases of discrimination and violence and to hold them accountable when they fail to do so", - "values": [ - "Human rights education and training", - "Human rights violations by state agents", - "Justice" - ] - }, - { - "text": "Consider the possibility of repealing the death penalty from its legal system ", - "values": [ - "Death penalty" - ] - }, - { - "text": "Continue the support, care and the rehabilitation of disabled persons and those with special needs, and continue to support them directly or through associations and specialized rehabilitation centres ", - "values": [ - "Disabilities" - ] - }, - { - "text": "Proceed to the development of a new National Human Rights Plan and implement the National Strategy for the Elimination of Violence against Women", - "values": [ - "Women's rights" - ] - }, - { - "text": "Further reduce the offences punishable by death penalty", - "values": [ - "Death penalty" - ] - }, - { - "text": "Use a national mechanism for social security needs of the most vulnerable groups", - "values": [ - "Minorities" - ] - }, - { - "text": "Finalize all outstanding cases of discrimination that have occurred since 2006.", - "values": [ - "Other" - ] - }, - { - "text": "Continue its leadership and international cooperation in the international agenda for the development of countries of the South", - "values": [ - "Development" - ] - }, - { - "text": "Government's efforts to ensure quality service delivery in the justice sector also include measures to strengthen the independence of the judiciary in line with the United Nations Basic Principles on the Independence of the Judiciary", - "values": [ - "Justice" - ] - }, - { - "text": "Cooperate with the United Nations special procedures, and follow up on the requests of visits of special rapporteurs, as announced today", - "values": [ - "Special procedures" - ] - }, - { - "text": "Present, before the next review, the combined report to the Committee on the Rights of the Child", - "values": [ - "Rights of the Child", - "Treaty bodies" - ] - }, - { - "text": "Enhance measures in combatting trafficking in person, particularly women and children, through proper investigation and prosecution in all cases of human trafficking", - "values": [ - "Rights of the Child", - "Trafficking", - "Women's rights" - ] - }, - { - "text": "Ensure in law and practice that journalists and other persons can freely exercise their right to freedom of expression", - "values": [ - "Freedom of opinion and expression", - "Freedom of the press" - ] - }, - { - "text": "Establish a moratorium of the death penalty as a first step to its abolishing", - "values": [ - "Death penalty" - ] - }, - { - "text": "Ratify the Optional Protocol to the Convention on the Rights of the Child on a communications procedure, which was signed in 2013", - "values": [ - "International instruments", - "Rights of the Child" - ] - }, - { - "text": "Pursue efforts regarding the fight on violence against women", - "values": [ - "Women's rights" - ] - }, - { - "text": "Take steps, including by implementation of gender quotas for candidates presented for election by political parties to increase women's representation in public and political life", - "values": [ - "Elections", - "Women's rights" - ] - }, - { - "text": "Expedite the Government\u2019s responsibility in combating terrorism and violent extremism", - "values": [ - "Counter-terrorism" - ] - }, - { - "text": "Concretize the visit of special procedures on racism and enforce disappearances", - "values": [ - "Enforced disappearances", - "Racial discrimination", - "Special procedures" - ] - }, - { - "text": "Continue on the path of dialogue with its immediate neighbours and with the European Union, with a view to ensuring that together they continue to meet the challenges of migration in the humane and constructive spirit to which they are all committed ", - "values": [ - "Migrants" - ] - }, - { - "text": "Pay special attention to the promotion of the rights of women and girls by adding a gender perspective to all national strategies and action plans, including development projects", - "values": [ - "Rights of the Child", - "Women's rights" - ] - }, - { - "text": "Eliminate the practice of indefinite internships for graduates of universities and technical schools and replace these with paid employment opportunities, both in the public and private sectors", - "values": [ - "Development" - ] - }, - { - "text": "Enforce the legislative efforts regarding the security of human rights defenders, with a view to effectively implementing measures and programmes ", - "values": [ - "Human rights defenders" - ] - }, - { - "text": "Continue reforms in the system of the law enforcement agencies and the judicial system", - "values": [ - "Justice" - ] - }, - { - "text": "Consider amending the juvenile justice law to cover all children under the age of 18 years", - "values": [ - "Justice", - "Rights of the Child" - ] - }, - { - "text": "Align its national legislation with the ratified international human rights treaties", - "values": [ - "International instruments" - ] - }, - { - "text": "End the use of military technology and weaponry that have proven to be indiscriminate and cause excessive and disproportionate damage to civilian life ", - "values": [ - "International humanitarian law" - ] - }, - { - "text": "Take prompt and effective steps to protect human rights defenders from violent attacks", - "values": [ - "Human rights defenders" - ] - }, - { - "text": "Ensure that the right to freedom of religion and belief is guaranteed and respected", - "values": [ - "Freedom of religion and belief" - ] - }, - { - "text": "Pay special attention to accessibility and the physical environment of educational establishments in line with the suggestions of the National Council for Children", - "values": [ - "Right to education", - "Rights of the Child" - ] - }, - { - "text": "Undertake all measures to ensure the establishment of the national human rights commission with the support of the international community ", - "values": [ - "National Human Rights Institution", - "Technical assistance and cooperation" - ] - }, - { - "text": "Encourage the continued taking of measures relating to discrimination against women in particular to raise the age of marriage to 18 for women as for men.", - "values": [ - "Rights of the Child", - "Women's rights" - ] - }, - { - "text": "Ensure that the proceedings of customary courts are in line with the domestic courts", - "values": [ - "Justice" - ] - }, - { - "text": "Continue efforts aimed at improving the national nutrition consumption including accelerating the process of adopting a national policy paper on this matter ", - "values": [ - "Right to food" - ] - }, - { - "text": "Consider recognizing the competence of the Committee on the Elimination of Racial Discrimination to receive and consider individual complaints", - "values": [ - "Racial discrimination", - "Treaty bodies" - ] - }, - { - "text": "Further invest in the fight against domestic violence by, inter alia, establishing shelters for victims and providing support to non-governmental organizations working in that field", - "values": [ - "Civil society", - "Women's rights" - ] - }, - { - "text": "Provide a more orderly process for refugees-asylum applicants and ensure that repatriations are carried out in line with UNHCR guidelines.", - "values": [ - "Asylum-seekers - refugees" - ] - }, - { - "text": "Accelerate the alignment of national legislation with a bearing on human rights to the new Constitution, which was adopted in 2014, including provisions relating to the prevention and criminalization of violence against women and children", - "values": [ - "Rights of the Child", - "Women's rights" - ] - }, - { - "text": "Amend the Penal Code to prohibit corporal punishment", - "values": [ - "Torture and other CID treatment" - ] - }, - { - "text": "Ensure that persons with disabilities enjoy their rights in detention centres", - "values": [ - "Detention", - "Disabilities" - ] - }, - { - "text": "Increase its efforts to prevent and combat violence against women and human trafficking and adopt a National Plan of Action for the advancement of the human rights of women ", - "values": [ - "Trafficking", - "Women's rights" - ] - }, - { - "text": "Prohibit early and forced marriage", - "values": [ - "Rights of the Child", - "Women's rights" - ] - }, - { - "text": "Allegations of excessive use of force and torture should be subject to effective and independent investigation in a timely manner in order to bring to justice those responsible for those acts ", - "values": [ - "Torture and other CID treatment" - ] - }, - { - "text": "Ensure gender equality in all aspects of family-related matters and raise the minimum age of marriage", - "values": [ - "Rights of the Child", - "Women's rights" - ] - }, - { - "text": "Continue to train law enforcement officials and to raise awareness on all human rights issues", - "values": [ - "Human rights education and training" - ] - }, - { - "text": "Ensure that all national legislation complies with international standards on freedom of expression and media freedom, and take steps to prevent arbitrary suspension of media outlets", - "values": [ - "Freedom of opinion and expression", - "Freedom of the press" - ] - }, - { - "text": "Adopt legislation that criminalizes domestic violence in all provinces and ensure, promote and facilitate the effective implementation of this legislation by, inter alia, providing training for law enforcement officers", - "values": [ - "Rights of the Child", - "Women's rights" - ] - }, - { - "text": "Continue with efforts related to the enhancement of harmony between various religious and ethnical sects", - "values": [ - "Freedom of religion and belief" - ] - }, - { - "text": "Strengthen efforts to adequately implement policy, legislative, regulatory and administrative measures to combat discrimination, towards social inclusion", - "values": [ - "Other" - ] - }, - { - "text": "Strengthen human rights protections for lesbian, gay, bisexual and transgender persons, in line with Croatia's international obligations and commitments as well as with domestic legislation", - "values": [ - "Sexual Orientation and Gender Identity" - ] - }, - { - "text": "Continue its efforts in eradicating poverty, with a focus to addressing the issue of inadequate housing affecting minority groups in the country ", - "values": [ - "Minorities", - "Poverty", - "Right to housing" - ] - }, - { - "text": "Continue with the current efforts to implement the national plan to combat HIV/AIDS", - "values": [ - "HIV - Aids" - ] - }, - { - "text": "Continue its efforts in responding to the ongoing violence by extremist groups against Christians and other minorities, by working to enforce human rights standards in protecting vulnerable populations, by prosecuting promoters of violence, and by promoting interreligious dialogue", - "values": [ - "Freedom of religion and belief", - "Minorities" - ] - }, - { - "text": "Operationalize the National Human Rights Institution and the National Child Rights Committee", - "values": [ - "National Human Rights Institution", - "Rights of the Child" - ] - }, - { - "text": "Pay attention to the needs of persons living in rural areas, especially women, to ensure that they have access to medical and sanitary services, education and income generating projects", - "values": [ - "Development", - "Right to education", - "Right to health", - "Women's rights" - ] - }, - { - "text": "Continue its efforts in the fight against corruption ", - "values": [ - "Corruption" - ] - }, - { - "text": "Continue to make efforts to further promote women's rights and eliminate discrimination ", - "values": [ - "Women's rights" - ] - }, - { - "text": "Continue efforts to combat trafficking in human beings", - "values": [ - "Trafficking" - ] - }, - { - "text": "Continue its efforts to adopt a development policy to reduce poverty in order to protect and promote human rights", - "values": [ - "Poverty" - ] - }, - { - "text": "Make plans to sign and ratify the Optional Protocols to the core human rights treaties, as well as to abolish the death penalty since the effective moratorium does not seem to discourage lower courts from handing down sentences ", - "values": [ - "Death penalty", - "International instruments" - ] - }, - { - "text": "Ensure stronger coordination between entities dealing with issues relating to children and provide sufficient resources at the national as well as local level, including the provision of temporary shelters ", - "values": [ - "Rights of the Child" - ] - }, - { - "text": "Continue addressing the problem of child abuse, inter alia, through nationwide strategies aimed at improving the protection of children against abuse and neglect ", - "values": [ - "Rights of the Child" - ] - }, - { - "text": "Take urgent measures for the investigation and punishment of acts of hate and discrimination towards migrants, refugees and minorities, and strengthen its awareness-raising programmes for the population in general and for public officials", - "values": [ - "Asylum-seekers - refugees", - "Human rights education and training", - "Migrants", - "Minorities", - "Racial discrimination" - ] - }, - { - "text": "Continue to strengthen programmes aimed at extending the framework of economic and social right to all citizens, and to improve living standards for those with limited income ", - "values": [ - "ESC rights - general" - ] - }, - { - "text": "Develop and encourage tolerance between religious groups and fully guarantee the right to freedom of conscience and religion", - "values": [ - "Freedom of religion and belief" - ] - }, - { - "text": "Refrain from issuing new concessions for projects in Mayan territories without the free, prior and informed consent of the relevant Mayan community", - "values": [ - "Indigenous peoples" - ] - }, - { - "text": "Consider enacting Venice Commission recommendations to bring some of its laws formally in line with its already democratic practices", - "values": [ - "Corruption" - ] - }, - { - "text": "Continue its efforts in strengthening the institutional human rights system through decentralization process, in particular by establishing a number of governmental human rights institutions in all its regions", - "values": [ - "Other" - ] - }, - { - "text": "Continue its laudable efforts to fight all forms of violence against women and girls ", - "values": [ - "Rights of the Child", - "Women's rights" - ] - }, - { - "text": "Take into account the recommendation made by the Human Rights Committee that it incorporate all substantive provisions of ICCPR into its national legislation, unless already done.", - "values": [ - "CP rights - general", - "International instruments", - "Treaty bodies" - ] - }, - { - "text": "Continue to provide funds for the functioning of the National Independent Human Rights Commission", - "values": [ - "National Human Rights Institution" - ] - }, - { - "text": "Continue strengthening compensation and reintegration of victims of terrorism, which has led to migration and internal displacement", - "values": [ - "Internally displaced persons", - "Migrants", - "Public security" - ] - }, - { - "text": "Give priority to addressing all forms of violence against women and girls, inter alia, by providing redress and protection services to victims of such crimes ", - "values": [ - "Rights of the Child", - "Women's rights" - ] - }, - { - "text": "Sign and ratify the International Convention on the Protection of the Rights of All Migrant Workers and Members of Their Families ", - "values": [ - "International instruments", - "Labour", - "Migrants" - ] - }, - { - "text": "Proceed with international cooperation and with the United Nations specialised agencies to enhance the government efforts in providing free education and eliminate illiteracy", - "values": [ - "Right to education", - "Technical assistance and cooperation" - ] - }, - { - "text": "The Government is however committed to protecting all members of society from harassment, discrimination and violence regardless of sexual orientation", - "values": [ - "Sexual Orientation and Gender Identity" - ] - }, - { - "text": "Establish appropriate shelters and social services for victims of domestic violence, as well as a system of victim compensation and reintegration ", - "values": [ - "Rights of the Child", - "Women's rights" - ] - }, - { - "text": "Raise the minimum age of criminal responsibility to an internationally accepted level, and in line with the Convention on the Rights of the Child, the Beijing rules and Riyadh guidelines", - "values": [ - "International instruments", - "Justice", - "Rights of the Child" - ] - }, - { - "text": "Extend full cooperation to the United Nations special procedures, and ensure that overdue reports to the United Nations treaty bodies are submitted as a matter of priority ", - "values": [ - "Special procedures", - "Treaty bodies" - ] - }, - { - "text": "Invest in and upgrade human rights training of the police and the staff of penal institutions ", - "values": [ - "Human rights education and training" - ] - }, - { - "text": "Consider social policies that facilitate the integration of migrants and asylum seekers", - "values": [ - "Asylum-seekers - refugees", - "Migrants" - ] - }, - { - "text": "Promote the welfare of detainees, and continue with the reforms necessary for the protection of their rights by improving conditions in detention facilities and continuous staff training", - "values": [ - "Detention" - ] - }, - { - "text": "Abstain from any practice that could endanger the lives of civilians", - "values": [ - "Other" - ] - }, - { - "text": "Consider recognizing same-sex couples ", - "values": [ - "Sexual Orientation and Gender Identity" - ] - }, - { - "text": "Improve its cooperation with the United Nations treaty and charter- based bodies by extending an open invitation to Special Procedures, to accept those requests already pending, and to continue to submit its future reports to the treaty bodies on time", - "values": [ - "Special procedures", - "Treaty bodies" - ] - }, - { - "text": "Effectively fight violence against women and take substantive measures to combat sexual exploitation and sexual crimes against children", - "values": [ - "Rights of the Child", - "Women's rights" - ] - }, - { - "text": "Improve access to legal assistance and ensure compensation for victims, especially female victims of sexual violence", - "values": [ - "Justice", - "Rights of the Child", - "Women's rights" - ] - }, - { - "text": "Genuine and full commitment to treaties combating terrorism and relative international resolutions to combat terrorism, its financing and support in all aspects ", - "values": [ - "Public security" - ] - }, - { - "text": "Sign and ratify the Optional Protocol to the Convention against Torture and Other Cruel, Inhuman or Degrading Treatment or Punishment", - "values": [ - "Detention", - "International instruments", - "Torture and other CID treatment" - ] - }, - { - "text": "Formulate executive plans for attaining the MDG on primary and free education by 2015", - "values": [ - "Right to education" - ] - }, - { - "text": "Ensure the prosecution and punishment of perpetrators of human trafficking, and provide adequate assistance and protection services to victims", - "values": [ - "Trafficking" - ] - }, - { - "text": "Further support the work of the Afghanistan Independent Human Rights Commission by employing a transparent and participatory selection process for the Commission's members ", - "values": [ - "National Human Rights Institution" - ] - }, - { - "text": "Bring the legislation on police in line with international standards ", - "values": [ - "General" - ] - }, - { - "text": "Design training programs on human rights for police and security forces, to guarantee better protection of human rights standards", - "values": [ - "Human rights education and training" - ] - }, - { - "text": "Continue to strengthen measures to promote tolerance and respect for cultural diversity and to counter prejudice, stereotypes, discrimination, racism, and Islamophobia", - "values": [ - "Freedom of religion and belief", - "Racial discrimination" - ] - }, - { - "text": "Take appropriate measures and continue working towards improving conditions in prisons and detention centres.", - "values": [ - "Detention" - ] - }, - { - "text": "Ratify the Domestic Workers Convention, 2011 (No. 189)", - "values": [ - "International instruments", - "Labour" - ] - }, - { - "text": "Follow up on the recommendation made by the Committee against torture to adopt all necessary measures to prevent, combat and punish violence against women and children.", - "values": [ - "Rights of the Child", - "Treaty bodies", - "Women's rights" - ] - }, - { - "text": "Promptly implement the action plan between the Sudan and the United Nations to end child recruitment and criminalize in domestic law the recruitment and use of children by the security forces and other groups", - "values": [ - "Human rights violations by state agents", - "International humanitarian law", - "Rights of the Child" - ] - }, - { - "text": "Take further measures to combat and prevent all forms of discrimination and social stigmatization, including on the grounds of sexual orientation and gender identity", - "values": [ - "Sexual Orientation and Gender Identity" - ] - }, - { - "text": "Accelerate efforts to ensure economic and social rights ", - "values": [ - "ESC rights - general" - ] - }, - { - "text": "Continue to implement programmes and measures to prevent and combat HIV/AIDS", - "values": [ - "HIV - Aids" - ] - }, - { - "text": "Continue its efforts for the establishment of a national human rights mechanism in full compliance with the Paris Principles ", - "values": [ - "National Human Rights Institution" - ] - }, - { - "text": "Promote and respect the basic rights of persons with disabilities without distinction", - "values": [ - "Disabilities" - ] - }, - { - "text": "Put into place domestic measures and mechanisms aimed at strengthening accountability and ensure redress and reparations for victims of possible human rights violations", - "values": [ - "Justice" - ] - }, - { - "text": "Continue enhancing the process of combating different forms of discrimination, particularly by facilitating access to justice for all Rwandan people", - "values": [ - "Justice" - ] - }, - { - "text": "Ensure that victims [women who are victims of violence] receive adequate assistance, including psychosocial counselling", - "values": [ - "Women's rights" - ] - }, - { - "text": "Monitor acts and public statements of hatred against ethnic and religious groups, to take necessary measures to combat them and to bring those responsible before justice, in conformity with international standards", - "values": [ - "Freedom of religion and belief", - "Minorities", - "Racial discrimination" - ] - }, - { - "text": "Ratify the Protocol to the African Charter on Human and Peoples' Rights on the Rights of Women in Africa and adopt the necessary legislation for its implementation ", - "values": [ - "International instruments", - "Women's rights" - ] - }, - { - "text": "Further reinforce measures to combat trafficking of women and children, as well as penalties commensurate with the seriousness of such acts ", - "values": [ - "Rights of the Child", - "Trafficking", - "Women's rights" - ] - }, - { - "text": "Advance in the adoption of a law prohibiting discrimination against women and establish a legal framework that favours political and economic participation of women on equal terms", - "values": [ - "Women's rights" - ] - }, - { - "text": "Continue making efforts to align its legislation with the obligations emanating from the Convention on the Elimination of All Forms of Discrimination against Women ", - "values": [ - "International instruments", - "Women's rights" - ] - }, - { - "text": "Investigate promptly allegations of torture and ill-treatment and facilitate visits by the Special Rapporteur on the question of torture to all detention facilities in Iraq", - "values": [ - "Special procedures", - "Torture and other CID treatment" - ] - }, - { - "text": "Continue to regularly invite mandate holders of the Special Procedures", - "values": [ - "Special procedures" - ] - }, - { - "text": "Ratify as soon as possible the Council of Europe Convention on Preventing and Combating Violence against Women and Domestic Violence (the Istanbul Convention)", - "values": [ - "International instruments", - "Rights of the Child", - "Women's rights" - ] - }, - { - "text": "Take the necessary measures to promote and protect the human rights of migrants in the country", - "values": [ - "Migrants" - ] - }, - { - "text": "Step up efforts to meet the basic needs of society's exposed groups, in particular the millions of migrants and seafarers ", - "values": [ - "Migrants" - ] - }, - { - "text": "Ensure that members of the security forces suspected of violations of human rights or humanitarian law be rapidly handed over to justice for investigation and judgement, severe vetting action linked to recruiting and promotion is encouraged.", - "values": [ - "Human rights violations by state agents" - ] - }, - { - "text": "Continue the implementation of the plan on the deinstitutionalization and transformation of social welfare homes and on legal persons performing social welfare activities for 2011-2016, with a view to reducing the number of children in institutions", - "values": [ - "ESC rights - general", - "Rights of the Child" - ] - }, - { - "text": "Continue to address reinstating of the rule of law through a fair and transparent electoral process and governance reform, reducing poverty which has caused worsening security, establishing basic infrastructure and creating jobs, with the support of the United Nations and the international community.", - "values": [ - "Elections", - "Poverty" - ] - }, - { - "text": "Formalize the moratorium on the death penalty as a step towards its full abolition", - "values": [ - "Death penalty" - ] - }, - { - "text": "Hold, with the help of the relevant United Nations agencies, more seminars and training courses on human rights issues", - "values": [ - "Human rights education and training", - "Technical assistance and cooperation" - ] - }, - { - "text": "Modify or abolish blasphemy laws that limit the right to freedom of religion or belief", - "values": [ - "Freedom of opinion and expression", - "Freedom of religion and belief" - ] - }, - { - "text": "Ratify the Optional Protocol to the Convention on the Elimination of All Forms of Discrimination against Women", - "values": [ - "Women's rights" - ] - }, - { - "text": "Finalize the procedures of submitting the Bill on Human Trafficking to Parliament for discussion and the adoption at the earliest possible time ", - "values": [ - "Trafficking" - ] - }, - { - "text": "Accede to and fully align national legislation with the Rome Statute of the International Criminal Court", - "values": [ - "International instruments", - "Justice" - ] - }, - { - "text": "Put in place a coordinated action plan for preparedness to the risks of natural catastrophes", - "values": [ - "Environment" - ] - }, - { - "text": "Abolish definitely death penalty", - "values": [ - "Death penalty" - ] - }, - { - "text": "Establish an independent body for investigating complaints about the actions of law enforcement officials ", - "values": [ - "Human rights violations by state agents", - "Justice" - ] - }, - { - "text": "Ratify the Second Optional Protocol to the International Covenant on Civil and Political Rights", - "values": [ - "CP rights - general", - "International instruments" - ] - }, - { - "text": "Strengthen institutions dealing with the rights of persons with disabilities", - "values": [ - "Disabilities" - ] - }, - { - "text": "That the Bill on corporal punishment of children currently under consideration, explicitly prohibit all forms of corporal punishment in all settings, and enact this Bill as a matter of priority", - "values": [ - "Rights of the Child", - "Torture and other CID treatment" - ] - }, - { - "text": "Take appropriate measures to ensure that primary education is totally free of charges", - "values": [ - "Right to education" - ] - }, - { - "text": "Free comprehensive health care for life and free education for the nation's children up to 14 years of age (a far-sighted policy dating back to 1875) points to a progressive domestic realisation of the rights set out in the International Covenant on Economic, Social and Cultural Rights (ICESCR) even though the Kingdom has not ratified this treaty. The development of these policies was accompanied by clear and attainable targets that have been monitored and evaluated on the way forward", - "values": [ - "International instruments", - "Right to education", - "Right to health", - "Rights of the Child" - ] - }, - { - "text": "Continue the harmonization of domestic law with regard to its international obligations on human rights.", - "values": [ - "International instruments" - ] - }, - { - "text": "Take legislative and administrative measures to ban racial profiling in law enforcement ", - "values": [ - "Racial discrimination" - ] - }, - { - "text": "Promote the full access of Roma children to education at all levels by introducing a concrete action plan with the budgetary means to achieve this goal. Efforts to decrease the rate of dropouts of Roma children should be intensified further", - "values": [ - "Minorities", - "Right to education", - "Rights of the Child" - ] - }, - { - "text": "Adhere to the initiative on Voluntary Principles on Security and Human Rights", - "values": [ - "Business and human rights" - ] - }, - { - "text": "Step-up its efforts to guarantee civil, political, economic, social and cultural rights of the Iraqi people, including equality before the law without discrimination of any kind and take appropriate measures to respect international human rights instruments and United Nations Treaty Bodies recommendations", - "values": [ - "CP rights - general", - "ESC rights - general", - "International instruments", - "Treaty bodies" - ] - }, - { - "text": "Speed up the process of reinstating the citizenship of approximately 60,000 Greek citizens who were deprived of Greek citizenship, because of the later repelled article 19 of the Greek Citizenship Law. Create a mechanism to compensate their losses in terms of ownership rights that occurred as a result of the process ", - "values": [ - "Other" - ] - }, - { - "text": "Expand access to education for children and youth, and provide vocational training as a means to improve their future employability", - "values": [ - "Right to education", - "Rights of the Child" - ] - }, - { - "text": "Finalize the development of the third National Anti-Corruption Strategic Action Plan and strengthen the scope of action of the Prevention and Combating of Corruption Bureau", - "values": [ - "Corruption" - ] - }, - { - "text": "Ensure the effective implementation of the National Strategy to Combat Trafficking in Persons", - "values": [ - "Trafficking" - ] - }, - { - "text": "Continue to fully involve NGOs, CSOs and private sector in the follow up to this UPR and in promoting human rights at all levels", - "values": [ - "Civil society", - "UPR process" - ] - }, - { - "text": "Pursue efforts to prevent and combat human trafficking, exploitation of persons and other contemporary forms of slavery, including sexual exploitation, and provide support and protection to victims, paying particular attention to vulnerable groups such as indigenous people, children, women, people with disabilities and non-nationals", - "values": [ - "Disabilities", - "Indigenous peoples", - "Rights of the Child", - "Trafficking", - "Women's rights" - ] - }, - { - "text": "Guarantee that the new constitution clearly and expressly recognizes the fundamental principle of the separation of powers, establishes checks and balances and guarantees the independence of the judiciary and the courts, while ensuring that all stakeholders have a place at the table when drafting the new constitution", - "values": [ - "Justice" - ] - }, - { - "text": "Take and strengthen the implementation of measures to combat all forms of violence against women, particularly sexual violence", - "values": [ - "Women's rights" - ] - }, - { - "text": "Develop targeted public campaigns to address gender stereotypes and discriminatory practices", - "values": [ - "Human rights education and training" - ] - }, - { - "text": "Maintain its commitment to achieving concrete political reform based on respect of the legitimate rights and aspirations of all its citizens, consistent with Bahrain\u2019s international obligations and acceptance of the findings and recommendations of the 2011 report of the Bahrain Independent Commission of Inquiry", - "values": [ - "International instruments", - "Justice" - ] - }, - { - "text": "Guarantee effective compliance with the precautionary measures of the Inter-American Commission on Human Rights", - "values": [ - "Other" - ] - }, - { - "text": "Ratify the Rome Statute on the Establishment of the ICC", - "values": [ - "International instruments", - "Justice" - ] - }, - { - "text": "Continue efforts to increase the participation of women in leadership at the local government level", - "values": [ - "Women's rights" - ] - }, - { - "text": "Take the necessary steps to achieve the total abolition of the death penalty", - "values": [ - "Death penalty" - ] - }, - { - "text": "Switzerland is prepared to consider acceding to the first Optional Protocol to the International Covenant on Civil and Political Rights. ", - "values": [ - "CP rights - general", - "International instruments" - ] - }, - { - "text": "Undertake more effective measures to address the problems of sexual abuse and violence against women and girls, including through strengthening of law enforcement and the judicial system and intensive media and education programmes aimed at increasing public awareness and sensitivity on the rights of women and girls", - "values": [ - "Human rights education and training", - "Rights of the Child", - "Women's rights" - ] - }, - { - "text": "Take steps to promote economic growth with a more equitable distribution of resources, to ensure social and economic rights for all", - "values": [ - "Development", - "ESC rights - general" - ] - }, - { - "text": "Effectively implement its international obligations to ensure the protection of human rights defenders and others exercising their rights to freedom of opinion and expression, peaceful assembly and association in compliance with international human rights law", - "values": [ - "Freedom of association and peaceful assembly", - "Freedom of opinion and expression", - "Human rights defenders", - "International instruments" - ] - }, - { - "text": "Strengthen in the field the rights of persons with disabilities despite difficulties", - "values": [ - "Disabilities" - ] - }, - { - "text": "Develop a comprehensive strategy to eliminate discrimination against women and girls in the area of education, to prevent the increase of illiteracy among females", - "values": [ - "Right to education", - "Rights of the Child", - "Women's rights" - ] - }, - { - "text": "Take the necessary measures to repeal all legal provisions that establish differences between children born in wedlock and children born out of wedlock, in particular those contained in the Family Code that were discriminatory against such children", - "values": [ - "Rights of the Child" - ] - }, - { - "text": "Accede to the ICESCR and bring national legislation in compliance with relevant provisions of this Covenant ", - "values": [ - "ESC rights - general", - "International instruments" - ] - }, - { - "text": "Increase efforts to guarantee and protect freedom of religion and belief, in line with its obligations under the International Covenant on Civil and Political Rights", - "values": [ - "CP rights - general", - "Freedom of religion and belief", - "International instruments" - ] - }, - { - "text": "Consider ratifying the Second Optional Protocol to the International Covenant on Civil and Political Rights with a view to abolishing the death penalty and establish an official moratorium on the death penalty", - "values": [ - "Death penalty", - "International instruments" - ] - }, - { - "text": "Set up a National Human Rights Institution in conformity with the Paris Principles", - "values": [ - "National Human Rights Institution" - ] - }, - { - "text": "Establish a policy that allows to decrease the high levels of overcrowding conditions in detention centres", - "values": [ - "Detention" - ] - }, - { - "text": "Reinforce and make more accessible to victims [of rape] the health-care services", - "values": [ - "Right to health", - "Women's rights" - ] - }, - { - "text": "Improve the administration of justice, including the establishment of a system of inspection of detention centres and a system to follow-up complaints of allegations of torture", - "values": [ - "Detention", - "Torture and other CID treatment" - ] - }, - { - "text": "Continue with its permanent system to follow-up the recommendations, which were created by the Presidential Human Rights Commission, and includes the participation of the Civil Society and will permit to submit a mid-term report on the progress made to implement the received recommendations", - "values": [ - "Civil society", - "UPR process" - ] - }, - { - "text": "Reform the juvenile justice system in accordance with, among others, the Convention on the Rights of the Child, the Beijing Rules and Riyadh Guidelines ", - "values": [ - "International instruments", - "Rights of the Child" - ] - }, - { - "text": "Define the minimum age for criminal responsibility in compliance with international standards", - "values": [ - "Rights of the Child" - ] - }, - { - "text": "Strengthen measures to raise awareness on the situation of albinos, prevent crimes against them and ensure material assistance to the victims.", - "values": [ - "Human rights education and training", - "Minorities" - ] - }, - { - "text": "Take the necessary steps to ensure that all the operations of intelligence agencies are monitored by an independent oversight mechanism", - "values": [ - "Privacy" - ] - }, - { - "text": "Take initiatives to improve recruitment and retention of female police officers ", - "values": [ - "Women's rights" - ] - }, - { - "text": "Continue to pursue its search for ways and means to restore peace throughout the country as peace is quite essential for development and human rights protection. ", - "values": [ - "Other" - ] - }, - { - "text": "Adopt a de jure moratorium on the use of the death penalty with a view to its abolition", - "values": [ - "Death penalty" - ] - }, - { - "text": "Continue its efforts on further improving the judicial system with practical measures", - "values": [ - "Justice" - ] - }, - { - "text": "Realize a law on associations and establishment of civil society to enable them to work in independence without being supervised by official authorities ", - "values": [ - "Civil society", - "Freedom of association and peaceful assembly" - ] - }, - { - "text": "Take further measures for the sustainable development of the Roma community with a focus on their integration into mainstream society ", - "values": [ - "Minorities" - ] - }, - { - "text": "Take appropriate measures to enforce the law criminalizing trials by ordeal", - "values": [ - "Justice" - ] - }, - { - "text": "Legally recognize same-sex marriage", - "values": [ - "Sexual Orientation and Gender Identity" - ] - }, - { - "text": "The State also desires to establish permanent institutions that would ensure timely submission of human rights reports, both to international and regional human rights mechanisms.", - "values": [ - "Treaty bodies" - ] - }, - { - "text": "Continue active cooperation with human rights mechanisms", - "values": [ - "Technical assistance and cooperation" - ] - }, - { - "text": "Take the necessary measures for setting up a comprehensive national strategy to prevent and address all forms of violence against women and children", - "values": [ - "Rights of the Child", - "Women's rights" - ] - }, - { - "text": "Ensure the effective implementation of the national strategy to combat maternal and infant mortality and to increase access for women and girls to basic health-care services ", - "values": [ - "Right to health", - "Rights of the Child", - "Women's rights" - ] - }, - { - "text": "Continue its efforts in the fight against violence and discrimination against women, and ensure the effective implementation of existing legislation, particularly legislation on the minimum legal age of marriage", - "values": [ - "Rights of the Child", - "Women's rights" - ] - }, - { - "text": "Harmonize domestic legislation with the Convention on the Rights of the Child ", - "values": [ - "International instruments", - "Rights of the Child" - ] - }, - { - "text": "Continue building the national capacity to counter trafficking in human beings", - "values": [ - "Trafficking" - ] - }, - { - "text": "Respect the provisions of the Maseru Facilitation Declaration and ensure an environment for free, fair and democratic elections", - "values": [ - "Elections" - ] - }, - { - "text": "Work to share and implement best practices in the area of promoting the rights of children with disabilities", - "values": [ - "Disabilities", - "Rights of the Child" - ] - }, - { - "text": "Strengthen the institutional and legal framework to counter all forms of discrimination based on considerations of race, ethnic origin, religion or colour", - "values": [ - "Freedom of religion and belief", - "Minorities", - "Racial discrimination" - ] - }, - { - "text": "Ratify the Optional Protocol to the Convention on the Elimination of All Forms of Discrimination against Women and the Optional Protocol to the Convention on the Rights of the Child on the involvement of children in armed conflict", - "values": [ - "International humanitarian law", - "International instruments", - "Rights of the Child", - "Women's rights" - ] - }, - { - "text": "Continue its measures for the overall alleviation of poverty in the country ", - "values": [ - "Poverty" - ] - }, - { - "text": "Continue providing specialized assistance to young people ", - "values": [ - "Other" - ] - }, - { - "text": "Ensure that each case of torture or ill-treatment by police officers is seriously investigated, prosecuted and punished and that adequate reparation should be granted to victims.", - "values": [ - "Human rights violations by state agents", - "Torture and other CID treatment" - ] - }, - { - "text": "Strengthen safeguards against potential refoulement of persons in need of international protection, including by closely monitoring the situation in the countries of origin of the asylum-seekers", - "values": [ - "Asylum-seekers - refugees" - ] - }, - { - "text": "Adopt a strategy to ameliorate the living conditions of the Roma population, in particular, amending legislation to ensure access to basic social services, condemn discrimination and to register undocumented Roma refugees.", - "values": [ - "Minorities" - ] - }, - { - "text": "Establish and implement integrated strategies for the prevention of child abuse, suicide among young people and unwanted pregnancies among girls and young people", - "values": [ - "Rights of the Child", - "Women's rights" - ] - }, - { - "text": "Step up measures to combat acts of racism by the law enforcement bodies, including against Travellers", - "values": [ - "Human rights violations by state agents", - "Minorities", - "Racial discrimination" - ] - }, - { - "text": "Repeal all provisions that discriminate against persons on the grounds of their sexual orientation, including in the Domestic Violence Act (Protection Orders) and the Sexual Offences and Domestic Violence Act", - "values": [ - "Sexual Orientation and Gender Identity" - ] - }, - { - "text": "Strengthen programmes providing equal access to health, education and social services for migrants and asylum seekers and their children", - "values": [ - "Asylum-seekers - refugees", - "ESC rights - general", - "Migrants", - "Right to education", - "Right to health", - "Rights of the Child" - ] - }, - { - "text": "Maintain and strengthen the measures undertaken to date to ensure the effective promotion and protection of women rights, which obviously requires the provision of the necessary minimum resources for this purposes, as well as the financial support from the international community", - "values": [ - "Technical assistance and cooperation", - "Women's rights" - ] - }, - { - "text": "Strengthen the application in all its territory of the Convention on the Rights of Persons with Disabilities, guaranteeing that the different measures initiated are in line with the approach defined in the Convention", - "values": [ - "Disabilities", - "International instruments" - ] - }, - { - "text": "Continue to increase and consolidate the Green Morocco and housing social programs which are essential for the eradication of poverty and social exclusion ", - "values": [ - "Poverty", - "Right to housing" - ] - }, - { - "text": "Reform the regime of defamation offences, which has a chilling effect on freedom of expression", - "values": [ - "Freedom of opinion and expression" - ] - }, - { - "text": "Further enhance the integration of indigenous peoples and communities of migrants by granting them more rights and by combating discrimination and racism ", - "values": [ - "Indigenous peoples", - "Migrants", - "Racial discrimination" - ] - }, - { - "text": "End urgently night arrests of Palestinian children, the admissibility in evidence in military courts of written confessions in Hebrew signed by them, their solitary confinement and the denial of access to family members or to legal representation", - "values": [ - "Detention", - "Justice", - "Rights of the Child" - ] - }, - { - "text": "Endow the competent authorities with more resources to apply the law that sanctions female genital mutilation, in particular in the most isolated areas", - "values": [ - "Rights of the Child", - "Torture and other CID treatment", - "Women's rights" - ] - }, - { - "text": "Take concrete legislative measures to improve occupational health and safety, including fire safety and protection against toxic chemicals, and to safeguard the rights of workers, such as the freedom of association ", - "values": [ - "Freedom of association and peaceful assembly", - "Labour", - "Right to health" - ] - }, - { - "text": "Adopt further measures which aim to combat discrimination in education, combat illiteracy and promote gender equality ", - "values": [ - "Right to education", - "Women's rights" - ] - }, - { - "text": "Step up its efforts to protect the rights of migrant workers and fight against exploitation, ill-treatment and abuse by their employers ", - "values": [ - "Labour", - "Migrants", - "Torture and other CID treatment" - ] - }, - { - "text": "Provide all necessary resources, including financial and human resources, to the National Human Rights Commission to enhance its activities", - "values": [ - "National Human Rights Institution" - ] - }, - { - "text": "Strengthen policies related to the fight against discrimination against indigenous and Afro-Brazilian children and others in vulnerable situations from an integral and intersectoral perspective", - "values": [ - "Indigenous peoples", - "Minorities", - "Racial discrimination", - "Rights of the Child" - ] - }, - { - "text": "In order to promote an effective gender equality, develop policy, legislative and administrative measures to ensure a better representation of women in decision-making and managerial positions in all sectors of public administration and, so far as possible, in the private sector ", - "values": [ - "Women's rights" - ] - }, - { - "text": "Adopt and establish all the necessary legal and institutional framework to protect and shelter victims of all forms of exploitation and harassment ", - "values": [ - "General" - ] - }, - { - "text": "To reflect in domestic law-in particular the Penal Code and Code of Criminal Procedure-Bahrain's obligations under international human rights laws and conventions ", - "values": [ - "International instruments" - ] - }, - { - "text": "Accelerates moves to end child and forced marriage, revise the 1971 Marriage Law Act, tightens legislation and enforcement to protect against female genital mutilation, and in the process, collaborate with civil society organizations at community level", - "values": [ - "Civil society", - "Rights of the Child", - "Torture and other CID treatment", - "Women's rights" - ] - }, - { - "text": "Consider the ratification of the ICRMW", - "values": [ - "International instruments", - "Labour", - "Migrants" - ] - }, - { - "text": "Continue its efforts in the area of physical interconnection regarding the technology and transport, which would ensure a better use of the resources of the country and would benefit the vulnerable sectors of the population ", - "values": [ - "Other" - ] - }, - { - "text": "Continue the efforts of women's empowerment and ensure their enjoyment of their legitimate rights ", - "values": [ - "Women's rights" - ] - }, - { - "text": "Adopt more substantive measures against racism and xenophobia and establish corresponding mechanisms for monitoring and ensuring accountability ", - "values": [ - "Racial discrimination" - ] - }, - { - "text": "Encourage declaring an immediate moratorium on all executions and wished Pakistan to move towards abolishing the death penalty.", - "values": [ - "Death penalty" - ] - }, - { - "text": "Put in place necessary mechanisms to ensure successful implementation of various strategies and legal reforms being considered to end child marriage", - "values": [ - "Rights of the Child" - ] - }, - { - "text": "The delegation indicated the Government's commitment to the promotion of sexual and reproductive health. That included the protection of the right of women to have control over and decide freely and responsibly on matters related to their sexuality, the timing and number of children, free of coercion, discrimination and violence.", - "values": [ - "Right to health", - "Women's rights" - ] - }, - { - "text": "Investigate complaints and possible violations of human rights committed by State security agencies in order to punish those responsible and avoid impunity ", - "values": [ - "Human rights violations by state agents", - "Impunity" - ] - }, - { - "text": "Follow through on recommendations of different treaty bodies regarding the possibility of considering exceptions to the general prohibition of abortion, especially in cases of therapeutic abortion and pregnancies resulting from rape and incest", - "values": [ - "Rights of the Child", - "Treaty bodies", - "Women's rights" - ] - }, - { - "text": "Ensure the full enjoyment of civil and political rights with a view to the elections scheduled for June 2010, and adopt the measures necessary to prosecute and punish those responsible for the violent events of 28 September 2009", - "values": [ - "CP rights - general", - "Elections" - ] - }, - { - "text": "Take urgent and immediate steps to end its occupation of all Palestinian and Arab Territories occupied since 1967", - "values": [ - "Other" - ] - }, - { - "text": "Continue to promote women's political participation and representation at national and local levels, including in the cabinet, political parties and the judicial system", - "values": [ - "Women's rights" - ] - }, - { - "text": "Incorporate the social protection scheme, the "Universal Child Allowance" into law and extend it to cover children of marginalized groups including migrant workers and children of parents deprived of their liberty", - "values": [ - "Labour", - "Migrants", - "Rights of the Child" - ] - }, - { - "text": "Continue to implement measures to enhance national capacities for the promotion and protection of human rights", - "values": [ - "General" - ] - }, - { - "text": "Recommended that Colombian justice complete its work designed to establish the truth, putting an end to impunity and protect the human rights.", - "values": [ - "Impunity", - "Justice" - ] - }, - { - "text": "Continue its efforts aimed at combating the persistence of discriminatory stereotypes concerning the roles and responsibilities of women and men in the family and in society", - "values": [ - "Women's rights" - ] - }, - { - "text": "Continue its efforts aimed at improving access to health services", - "values": [ - "Right to health" - ] - }, - { - "text": "Consider the use of alternative measures to detention for migrants and refugees by ensuring that vulnerable persons and children never remain detained", - "values": [ - "Asylum-seekers - refugees", - "Detention", - "Migrants", - "Rights of the Child" - ] - }, - { - "text": "Share its experiences with other interested countries concerning its efforts to protect human rights, given all its efforts in that area", - "values": [ - "General" - ] - }, - { - "text": "Continue to pursue the adoption and implementation of administrative measures aimed at the promotion and protection of the rights of the child", - "values": [ - "Rights of the Child" - ] - }, - { - "text": "Continue its efforts to establish a national human rights institution, in line with the Paris Principles", - "values": [ - "National Human Rights Institution" - ] - }, - { - "text": "Continue working in the improvement of prison conditions", - "values": [ - "Detention" - ] - }, - { - "text": "Ratify and accede to the International Convention for the Protection of All Persons from Enforced Disappearance and the Convention on the Rights of Persons with Disabilities and withdraw reservations to the Convention against Torture and the International Convention on the Protection of the Rights of All Migrant Workers and Members of Their Families", - "values": [ - "Disabilities", - "Enforced disappearances", - "International instruments", - "Labour", - "Migrants", - "Torture and other CID treatment" - ] - }, - { - "text": "Eliminate all forms of discrimination particularly against vulnerable children", - "values": [ - "Rights of the Child" - ] - }, - { - "text": "Introduce human rights education for all government officials and departments and ensure that a human rights-based approach is mainstreamed across government policy.", - "values": [ - "Human rights education and training" - ] - }, - { - "text": "Continue implementing the national strategy to enhance access to health services in rural areas", - "values": [ - "Right to health" - ] - }, - { - "text": "Criminalize the discrimination and violence based on sexual orientation and gender identity, including hate crimes", - "values": [ - "Sexual Orientation and Gender Identity" - ] - }, - { - "text": "Intensify its efforts to prevent human trafficking.", - "values": [ - "Trafficking" - ] - }, - { - "text": "Continue the public political debate to go from the current de facto abolition to the definitive abolition of the death penalty in the country", - "values": [ - "Death penalty" - ] - }, - { - "text": "Accede to the International Convention on the Rights on the Protection of all Migrant Workers and Members of their Families as an additional fundamental step for the protection of human rights", - "values": [ - "International instruments", - "Labour", - "Migrants" - ] - }, - { - "text": "Submit all overdue reports to United Nations human rights convention treaty bodies and answer the questionnaires sent by special procedure mandate holders.", - "values": [ - "Special procedures", - "Treaty bodies" - ] - }, - { - "text": "Further improve the legal framework on the rights of persons with disabilities, in line with the provisions of international conventions", - "values": [ - "Disabilities" - ] - }, - { - "text": "Take steps to make the judiciary more representative of Mauritanian society in terms of ethnic and social origin, language and gender ", - "values": [ - "Justice" - ] - }, - { - "text": "Take steps to guarantee the political rights of its people, freedom of expression, association and assembly, in particular ", - "values": [ - "Freedom of association and peaceful assembly", - "Freedom of opinion and expression" - ] - }, - { - "text": "Review the imposition of death penalty for offences related to drug trafficking", - "values": [ - "Death penalty", - "Public security" - ] - }, - { - "text": "Enhance its efforts to rebuild state institutions, and in particular a strong, efficient and independent justice system that respects due process and protects the human rights of detainees in line with international standards", - "values": [ - "Detention", - "International instruments" - ] - }, - { - "text": "Consider as a first step to establish a moratorium on the death penalty with a view to its abolition", - "values": [ - "Death penalty" - ] - }, - { - "text": "Establish mechanisms to monitor and evaluate the compliance with its human rights obligations ", - "values": [ - "International instruments" - ] - }, - { - "text": "In line with CERD and CEDAW recommendations, to implement fully the antidiscrimination legislation in the labour market including considering the adoption of temporary special measures.", - "values": [ - "Labour", - "Treaty bodies" - ] - }, - { - "text": "Conduct more active policy against racial discrimination, including putting in place a robust mechanism against racism", - "values": [ - "Racial discrimination" - ] - }, - { - "text": "Investigate all allegations of the use of excessive force, including killings, by law enforcement agents and ensure that they receive training on the appropriate use of force so as to prevent unnecessary causalities ", - "values": [ - "Extrajudicial executions", - "Human rights violations by state agents" - ] - }, - { - "text": "Submit regularly reports to treaty bodies.", - "values": [ - "Treaty bodies" - ] - }, - { - "text": "Ensure integration of human rights culture to law enforcement entities", - "values": [ - "Human rights education and training" - ] - }, - { - "text": "Consider formulating a national strategy to combat trafficking in persons, including women and children ", - "values": [ - "Rights of the Child", - "Trafficking", - "Women's rights" - ] - }, - { - "text": "Share the findings of the special bodies created to stop the persistent pattern of enforced disappearances and the measures put into place to address this problem.", - "values": [ - "Enforced disappearances" - ] - }, - { - "text": "Continue strengthening the system of the effective response and to follow up the international obligations that the Bolivarian Republic of Venezuela took upon itself in the field of human rights", - "values": [ - "General" - ] - }, - { - "text": "Strengthen protection of the freedom of expression by allowing discourse and greater access to information, both online and offline, and ensure the penal code and anti-terror laws are consistent with international obligations", - "values": [ - "Counter-terrorism", - "Freedom of opinion and expression" - ] - }, - { - "text": "Step up efforts to eliminate the gender wage gap and increase the participation of women in public life", - "values": [ - "Women's rights" - ] - }, - { - "text": "Continue implementation of policies to combat discrimination against people from disadvantaged groups, including providing them with access to social security, health services, education and housing ", - "values": [ - "ESC rights - general", - "Right to education", - "Right to health", - "Right to housing" - ] - }, - { - "text": "Implement all provisions in the Convention on the Rights of Persons with Disabilities, among others, the elimination of physical barriers to information, public transportation and buildings ", - "values": [ - "Disabilities", - "International instruments" - ] - }, - { - "text": "Eliminate provisions in national legislation that discriminate against women and other groups such as lesbian, gay, bisexual, transgender and intersex persons, including revising the section 377 A of the Penal Code", - "values": [ - "Sexual Orientation and Gender Identity" - ] - }, - { - "text": "Reinforce the legislative framework and institutional mechanisms aimed at excluding all discriminatory practices that prevent equal access to employment for persons belonging to ethnic, national or religious minorities ", - "values": [ - "Freedom of religion and belief", - "Labour", - "Minorities", - "Racial discrimination" - ] - }, - { - "text": "Establish a National Human Rights Institution in compliance with the Paris Principles", - "values": [ - "National Human Rights Institution" - ] - }, - { - "text": "Revise its legislation and legal practice to ensure that sexual orientation and gender identity as motivation for criminal offence are treated as aggravating circumstances", - "values": [ - "Sexual Orientation and Gender Identity" - ] - }, - { - "text": "Take effective measures for the recognition of all minorities in order to fully protect their rights, their language, religion, culture and identity", - "values": [ - "Minorities" - ] - }, - { - "text": "Amend the Penal Code to provide that crimes motivated by discrimination on any grounds, including disability, gender identity and expression and sexual orientation, are included in the Code and therefore can be investigated and prosecuted as hate crimes", - "values": [ - "Disabilities", - "Racial discrimination", - "Sexual Orientation and Gender Identity" - ] - }, - { - "text": "Continue its efforts to combat discrimination in all its forms", - "values": [ - "Other" - ] - }, - { - "text": "Eliminate the systematic detention at the border of asylum-seekers and migrants in an irregular situation and limit to exceptional cases the deprivation of liberty of asylum-seekers during the period of the determination of their request for asylum ", - "values": [ - "Asylum-seekers - refugees" - ] - }, - { - "text": "Accelerate efforts towards ratification of the International Convention on the Protection of the Rights of All Migrant Workers and Members of Their Families and the Domestic Workers Convention, 2011 (No. 189)", - "values": [ - "International instruments", - "Labour", - "Migrants" - ] - }, - { - "text": "Reinstate the moratorium on executions, with a view to ultimately abolishing the death penalty", - "values": [ - "Death penalty" - ] - }, - { - "text": "Step up efforts to effectively prevent and combat discrimination of persons belonging to national minorities, in particular regarding their access to health care", - "values": [ - "Minorities", - "Racial discrimination", - "Right to health" - ] - }, - { - "text": "Continue developing its policies to ensure the best quality in the sphere of education ", - "values": [ - "Right to education" - ] - }, - { - "text": "Continue strengthening plans and programmes with a view to eradicating domestic violence, especially against women, girls and boys", - "values": [ - "Rights of the Child", - "Women's rights" - ] - }, - { - "text": "Define torture as a federal offense in line with the Convention against Torture and investigate, prosecute and punish those responsible of crimes of extraterritorial torture", - "values": [ - "Torture and other CID treatment" - ] - }, - { - "text": "Introduce a moratorium on executions as an intermediate step towards the abolition of the death penalty, reforming the Criminal Code", - "values": [ - "Death penalty" - ] - }, - { - "text": "Abolish corporal punishments such as flogging and, in a few cases, amputation of limbs, as they are in violation of article 7 of ICCPR.", - "values": [ - "International instruments", - "Torture and other CID treatment" - ] - }, - { - "text": "Redouble efforts to establish safe and neutral corridors for humanitarian evacuations", - "values": [ - "Other" - ] - }, - { - "text": "Continue efforts to promote gender equality", - "values": [ - "Women's rights" - ] - }, - { - "text": "Enhance ongoing efforts regarding human rights education and training for all public officials", - "values": [ - "Human rights education and training" - ] - }, - { - "text": "Commit more resources to housing development for low-income families and focus on committing more resources to the health sector, especially in rural areas and other less-developed areas.", - "values": [ - "Right to health", - "Right to housing" - ] - }, - { - "text": "Take the necessary measures to ensure that all the persons born in Burundi obtain a birth certificate regardless the status of their parents ", - "values": [ - "Rights of the Child" - ] - }, - { - "text": "Continue efforts in strengthening democratic institutions, including through capacity-building in the State legislative, executive as well as judiciary system ", - "values": [ - "Justice" - ] - }, - { - "text": "Further strengthen efforts towards a better promotion of gender equality", - "values": [ - "Women's rights" - ] - }, - { - "text": "Continue its efforts and dedication to ensure education enrolment for all categories of society", - "values": [ - "Right to education" - ] - }, - { - "text": "Enhance the participation of grass-roots people in decision-making processes regarding their welfare", - "values": [ - "CP rights - general" - ] - }, - { - "text": "Take steps to provide adequate protection against sexual and genderbased violence, while ensuring that assistance is available to victims for their physical and mental rehabilitation", - "values": [ - "Women's rights" - ] - }, - { - "text": "Ratify CAT and OP-CAT and subsequently implementing them", - "values": [ - "Detention", - "International instruments", - "Torture and other CID treatment" - ] - }, - { - "text": "More stringent monitoring mechanisms to address the rise in racist and racially-motivated crimes and xenophobic acts, and ensure effective detection, investigation, prosecution, and punishment ", - "values": [ - "Racial discrimination" - ] - }, - { - "text": "Accede to the 1954 Convention relating to the Status of Stateless Persons and the 1961 Convention on the Reduction of Statelessness, in accordance with the commitments made during the Ministerial Conference held in Abidjan on 23 February 2015", - "values": [ - "International instruments", - "Statelessness and the right to nationality" - ] - }, - { - "text": "Share best practices and experience in the field of MDG 1with interested countries, inter alia by contributing actively to the strengthening of South-South cooperation in this regard.", - "values": [ - "Development" - ] - }, - { - "text": "Intensify its efforts to implement the pending recommendations", - "values": [ - "UPR process" - ] - }, - { - "text": "Take concrete action to bring to justice those who committed human rights violations against the members of the Turkish minority in the period 1984-1989 before the natural extinction of both the victims and perpetrators of the said events", - "values": [ - "Justice", - "Minorities" - ] - }, - { - "text": "Combat all forms of discrimination, including against albinos and persons with disabilities", - "values": [ - "Disabilities", - "Minorities" - ] - }, - { - "text": "Urgently address the shortage of medical services and satisfy people's basic necessities in the spirit of the 2015 recommendations by the Committee on Economic, Social and Cultural Rights", - "values": [ - "Right to health", - "Treaty bodies" - ] - }, - { - "text": "Increase the visibility of Slovenian television programmes throughout the Friuli-Venezia Giulia autonomous region, as stipulated in article 19 of law No. 103-75", - "values": [ - "Minorities" - ] - }, - { - "text": "Put in place a national human rights institution which is in conformity with the Paris Principles", - "values": [ - "National Human Rights Institution" - ] - }, - { - "text": "Ratify the Rome Statute of ICC and incorporate it into its national law ", - "values": [ - "International instruments", - "Justice" - ] - }, - { - "text": "Address the concerns and, as necessary, implement recommendations of Treaty Bodies and United Nations agencies by taking any necessary steps to ensure that no individual is exposed to the dangers of torture or cruel, inhuman or degrading treatment or punishment when extradited or deported ", - "values": [ - "Torture and other CID treatment", - "Treaty bodies" - ] - }, - { - "text": "Ensure for asylum-seeking children effective and non-discriminatory access to education", - "values": [ - "Asylum-seekers - refugees", - "Racial discrimination", - "Right to education", - "Rights of the Child" - ] - }, - { - "text": "Adopt and implement improvements to the legislation relating to children, in particular, increase the minimum age of criminal responsibility to an internationally acceptable level, address the high rate of child labour, prohibit the forced marriage of children, and end violence and sexual exploitation, including abuse, neglect and ill-treatment", - "values": [ - "Justice", - "Labour", - "Rights of the Child", - "Torture and other CID treatment", - "Women's rights" - ] - }, - { - "text": "Define and prohibit discrimination against women", - "values": [ - "Women's rights" - ] - }, - { - "text": "Create a legislative framework that guarantees freedom of information favouring the establishment of private media ", - "values": [ - "Freedom of opinion and expression", - "Freedom of the press" - ] - }, - { - "text": "Ratify the Optional Protocol to CED", - "values": [ - "Enforced disappearances", - "International instruments" - ] - }, - { - "text": "Issue a national action plan for countering discrimination as well as hate crimes, including indicators for success", - "values": [ - "Racial discrimination" - ] - }, - { - "text": "Remove the provisions concerning criminal libel against journalists", - "values": [ - "Freedom of the press" - ] - }, - { - "text": "Move forward in establishing a system of monitoring and systematic repression of hate crimes, noting that this question is one of the Government's priorities ", - "values": [ - "Racial discrimination" - ] - }, - { - "text": "Put in place measures that ensure and protect the family as a natural nucleus of society and provide a family-friendly environment for the children in Liberia", - "values": [ - "Other" - ] - }, - { - "text": "Consider ratifying the Optional Protocol to the International Covenant on Economic, Social and Cultural Rights as recommended by the CRC ", - "values": [ - "ESC rights - general", - "International instruments", - "Treaty bodies" - ] - }, - { - "text": "Develop further its bilateral and multilateral cooperation and exchanges, notably in the area of economic, social and cultural rights ", - "values": [ - "ESC rights - general" - ] - }, - { - "text": "Underscore discipline and respect by youth for the aged under Brunei's Care for the Elderly Project, bearing in mind that an older person or parent who is abused by a caregiver would still feel humiliated, however much he or she is fed", - "values": [ - "Other" - ] - }, - { - "text": "Take additional measures to ensure the integration of indigenous peoples in public institutions", - "values": [ - "Indigenous peoples" - ] - }, - { - "text": "Croatia remains committed to continue to build effective and efficient asylum system, in particular through the strengthening of institutional framework, training of responsible officials as well as ameliorating conditions for the accommodation of asylum seekers awaiting the outcome of the process.", - "values": [ - "Asylum-seekers - refugees" - ] - }, - { - "text": "Continue to make its best efforts to abolish all types of discriminatory practices against women and children, which notably includes female genital mutilation (FGM), early marriage and domestic violence ", - "values": [ - "Rights of the Child", - "Torture and other CID treatment", - "Women's rights" - ] - }, - { - "text": "Adopt the measures necessary to prevent cases of lynching, in particular through the strengthening of the police and justice sectors", - "values": [ - "Justice" - ] - }, - { - "text": "Ensure that all acts of torture are specific offences under its criminal law ", - "values": [ - "Torture and other CID treatment" - ] - }, - { - "text": "Establish clear procedures to ensure that evictions of displaced persons are carried out respecting international norms and guaranteeing the rights to decent housing and work, and the access to health services and education ", - "values": [ - "Internally displaced persons" - ] - }, - { - "text": "Strengthen the Special Prosecutor for Attention to Crimes against Freedom of Expression (FEADLE), and ensure reparation for the victims, as well as provide the mechanism for the protection of human rights defenders with the necessary support to fulfil its mandate ", - "values": [ - "Freedom of opinion and expression", - "Human rights defenders" - ] - }, - { - "text": "Intensify efforts to promote and protect the rights of persons with disabilities", - "values": [ - "Disabilities" - ] - }, - { - "text": "Amend its Anti-Discrimination Act to expand the grounds of discrimination explicitly prohibited by the Act", - "values": [ - "Other" - ] - }, - { - "text": "Strengthen the efforts to improve living standards of economically vulnerable population", - "values": [ - "Poverty" - ] - }, - { - "text": "Consider comments of the Special Rapporteur on health regarding the negative impacts that the Trans Pacific Partnership agreements would have on access to medicines", - "values": [ - "Right to health", - "Special procedures" - ] - }, - { - "text": "Consider taking all necessary steps to introduce a de jure moratorium on executions with a view to fully abolishing the death penalty", - "values": [ - "Death penalty" - ] - }, - { - "text": "Apply a dignified and humanitarian treatment, which respects the universal principles of human rights, to refugees in the detention centres, with measures such as ending immediate deportations at sea and land borders, the deportations and arrests of migrant children and refugees and the greatest possible protection for unaccompanied children ", - "values": [ - "Asylum-seekers - refugees", - "Detention", - "Migrants", - "Rights of the Child" - ] - }, - { - "text": "Amend and adapt its law to give fair and equal treatment to all citizens, including women and those of religious and ethnic minorities", - "values": [ - "Freedom of religion and belief", - "Minorities", - "Women's rights" - ] - }, - { - "text": "Take measures to put an end to racial discrimination and to make the required declaration that recognizes the competence of the Committee on the Elimination of All Forms of Racial Discrimination in order to receive and review communications", - "values": [ - "Racial discrimination", - "Treaty bodies" - ] - }, - { - "text": "Promptly investigate all allegations of human rights violations, including in the three southernmost provinces, and bring perpetrators to justice ", - "values": [ - "Other" - ] - }, - { - "text": "Further ensure, in a sustainable way, the education in minority languages", - "values": [ - "Minorities", - "Right to education" - ] - }, - { - "text": "Bring its legislation into conformity with its commitment to equality and non-discrimination, by prohibiting discrimination based on sexual orientation", - "values": [ - "Sexual Orientation and Gender Identity" - ] - }, - { - "text": "Adopt and implement the Law on Protection from Discrimination and ensure effective access to judicial remedies for victims of discrimination. ", - "values": [ - "Other" - ] - }, - { - "text": "Take further measures in the same direction of the previous ones for the social reintegration of juvenile delinquents", - "values": [ - "Justice", - "Rights of the Child" - ] - }, - { - "text": "Continue its effort to prevent domestic violence and further promote gender equality", - "values": [ - "Rights of the Child", - "Women's rights" - ] - }, - { - "text": "Recognize the competence of the Committee on Enforced Disappearances", - "values": [ - "Enforced disappearances", - "Treaty bodies" - ] - }, - { - "text": "Continue its favourable policies with concrete initiatives aimed at the most vulnerable groups such as women, children and minorities ", - "values": [ - "Minorities", - "Rights of the Child", - "Women's rights" - ] - }, - { - "text": "Take measures to prevent and address violence against women and girls and ensure that perpetrators are prosecuted and adequately punished", - "values": [ - "Rights of the Child", - "Women's rights" - ] - }, - { - "text": "Investigate and prosecute police misconduct, in accordance with international standards, and strengthen institutional capacities to fight against corruption among police officials", - "values": [ - "Corruption", - "Human rights violations by state agents" - ] - }, - { - "text": "Encourage and strengthen cooperation and coordination with civil society and the NGOs in the field of human rights", - "values": [ - "Civil society" - ] - }, - { - "text": "End all practices of arbitrary abduction, torture and murder in detention facilities. All persons unjustifiably detained must be released immediately, all others must be treated according to international standards. Full international monitoring must be permitted", - "values": [ - "Detention", - "Enforced disappearances", - "Extrajudicial executions", - "Torture and other CID treatment" - ] - }, - { - "text": "Continue enhancing its efforts to strengthen the family institution and to empower women and ensure their enjoyment of their legitimate rights and ensure women's effective participation in decision-making ", - "values": [ - "Women's rights" - ] - }, - { - "text": "Allow women to participate fully and equally in society by abolishing the guardianship system, appointing more women to positions of authority, and increasing freedom of movement", - "values": [ - "Freedom of movement", - "Women's rights" - ] - }, - { - "text": "Provide a follow-up report about the strengthening of the efforts and actions taken on the ground to ensure the rights of minorities, and specifically Roma.", - "values": [ - "Minorities" - ] - }, - { - "text": "Withdraw reservation to article 22 of the Convention on the Rights of the Child ", - "values": [ - "International instruments", - "Rights of the Child" - ] - }, - { - "text": "Promote and protect the rights of vulnerable peoples, the right to education and to right to development to bring down poverty in urban and rural areas simultaneously while maintaining peace, stability and protection of the environment ", - "values": [ - "Development", - "Poverty", - "Right to education" - ] - }, - { - "text": "Continue the work for enhanced protection for victims of domestic violence and take measures with a focus on prevention and accountability in regards to domestic violence ", - "values": [ - "Rights of the Child", - "Women's rights" - ] - }, - { - "text": "Respect the right of the Palestinians to self-determination and the establishment of their independent State with Jerusalem as its capital.", - "values": [ - "Other" - ] - }, - { - "text": "Strengthen efforts to assist Palestinians living in Lebanon who are lacking identity documents so that it will be possible for them to live a decent life", - "values": [ - "Asylum-seekers - refugees" - ] - }, - { - "text": "Establish a follow-up mechanism for the National Health and Social Welfare Policy and Plan (2011-2021)", - "values": [ - "Right to health" - ] - }, - { - "text": "Amend or repeal article 16 of the Constitution and amend all Personal Laws to remove discriminatory provisions against women as well as barriers to engaging in the political process", - "values": [ - "Women's rights" - ] - }, - { - "text": "Adapt the Citizenship Act of 1982 in order to put an end to the statelessness of the Rohingya population ", - "values": [ - "Minorities", - "Statelessness and the right to nationality" - ] - }, - { - "text": "Ratify swiftly the Optional Protocol to the Convention on the Rights of the Child on a communications procedure", - "values": [ - "International instruments", - "Rights of the Child" - ] - }, - { - "text": "Continue to implement the National Action Plan for the Promotion and Protection of Human Rights", - "values": [ - "General" - ] - }, - { - "text": "Eliminate use of the death penalty", - "values": [ - "Death penalty" - ] - }, - { - "text": "Continue with the positive steps it has taken in the implementation of the Bangalore Principles of Judicial Conduct", - "values": [ - "Justice" - ] - }, - { - "text": "Implement further measures, with regard to maternal mortality and child mortality, to save mother and child ", - "values": [ - "Rights of the Child", - "Women's rights" - ] - }, - { - "text": "Ensure that legislative measures are taken in order to improve the protection of the human rights of inmates and detainees, including passing the Malawi Prison Bill into law ", - "values": [ - "Detention" - ] - }, - { - "text": "Make all possible efforts to combat HIV-AIDS and to prevent the mother-to-child transmission of the virus, and request technical and financial assistance from international agencies, including WHO and UNICEF ", - "values": [ - "HIV - Aids", - "Technical assistance and cooperation" - ] - }, - { - "text": "Raise the age of criminal responsibility from now 7 to 12 years as the absolute minimum as recommended by the CRC ", - "values": [ - "Justice", - "Rights of the Child", - "Treaty bodies" - ] - }, - { - "text": "Continue to implement the Justice Sector Reform Strategy with a view to further strengthening the independence, accountability and transparency of the judiciary", - "values": [ - "Justice" - ] - }, - { - "text": "Establish a mechanism for automatic judicial review of expulsion orders", - "values": [ - "Justice" - ] - }, - { - "text": "Sign and ratify the Second Optional Protocol to the International Covenant on Civil and Political Rights, aiming at the abolition of the death penalty, as well as eliminate definitively the death penalty in all cases", - "values": [ - "Death penalty", - "International instruments" - ] - }, - { - "text": "Continue to strengthen its relationship with indigenous peoples ", - "values": [ - "Indigenous peoples" - ] - }, - { - "text": "Finalize the five-year national plan for the prevention and gradual eradication of the worst forms of child labour and the protection of adolescent workers, and take appropriate measures to implement it", - "values": [ - "Labour", - "Rights of the Child" - ] - }, - { - "text": "Announce a moratorium on the death penalty with a view to its eventual abolition", - "values": [ - "Death penalty" - ] - }, - { - "text": "Disseminate better and ensure full observation of the Declaration on Human Rights Defenders ", - "values": [ - "Human rights defenders", - "International instruments" - ] - }, - { - "text": "Ensure a national mechanism for transitional justice and national reconciliation, starting with the immediate release of the conflict mapping report of the Human Rights Commission and ensure adequate security assistance for its staff ", - "values": [ - "Justice", - "National Human Rights Institution" - ] - }, - { - "text": "Continue implementing programmes and measures to ensure the enjoyment of quality health and education services for the whole of its population ", - "values": [ - "Right to education", - "Right to health" - ] - }, - { - "text": "Implement the CERD and the CEDAW recommendations on adequate and accessible health services in order to lower the high maternal and infant mortality among the indigenous population", - "values": [ - "Indigenous peoples", - "Right to health", - "Rights of the Child", - "Treaty bodies", - "Women's rights" - ] - }, - { - "text": "Kyrgyzstan is firmly committed to protecting and promoting all human rights and fundamental freedoms.", - "values": [ - "General" - ] - }, - { - "text": "Take measures to change laws that discriminate against women", - "values": [ - "Women's rights" - ] - }, - { - "text": "Accelerate the process to establish a human rights commission in accordance with the Paris Principles", - "values": [ - "National Human Rights Institution" - ] - }, - { - "text": "Revise the procedures governing registration of civil society organizations to ensure transparent, non-discriminatory, expeditious and inexpensive procedures that allow for appeal and are in conformity with international human rights standards ", - "values": [ - "Civil society", - "International instruments" - ] - }, - { - "text": "Continue efforts in supporting persons with disabilities and ensuring their contribution in social life, as effective partners", - "values": [ - "Disabilities" - ] - }, - { - "text": "Suspend the interception, holding and use of communications, including the surveillance and extraterritorial interception and the scope of the surveillance operations against citizens, institutions and representatives of other countries, which violate the right to privacy, international laws and the principle of State sovereignty recognized in the Charter of the United Nations", - "values": [ - "Privacy" - ] - }, - { - "text": "Allocate sufficient resources for the effective implementation of the National Plan of Action for Children ", - "values": [ - "Rights of the Child" - ] - }, - { - "text": "Continue with the implementation of policies and good practices that contribute to improving the living conditions of people with disabilities, children and the elderly ", - "values": [ - "Disabilities", - "Rights of the Child" - ] - }, - { - "text": "Duly safeguard freedom of speech and the right to information in the fight against an emerging brand of criminality in the context of cybercrime, through the adoption and implementation of suitable regulations", - "values": [ - "Freedom of opinion and expression" - ] - }, - { - "text": "Further strengthen the promotion and protection of rights of foreign workers", - "values": [ - "Labour", - "Migrants" - ] - }, - { - "text": "Keep up its good work in upholding the rights of women, among other vulnerable groups", - "values": [ - "Women's rights" - ] - }, - { - "text": "Improve law enforcement and judicial responses to human trafficking and gender-based violence, increase resources for victims services, and implement programmes to combat human trafficking in the mining sector", - "values": [ - "Trafficking", - "Women's rights" - ] - }, - { - "text": "Approve and implement the programme for the protection of journalists, in consultation with the latter", - "values": [ - "Freedom of the press" - ] - }, - { - "text": "Search the consent of Belgian Muslims on any initiative to codify the practice of Islam", - "values": [ - "Freedom of religion and belief" - ] - }, - { - "text": "Ratify and implement other international human rights treaties and their protocols, as previously recommended", - "values": [ - "International instruments", - "UPR process" - ] - }, - { - "text": "Support fully to the adoption of the necessary information educational measures to promote racial, ethnic and religious tolerance, with the emphasis on those characteristics that are results of natural-historical development", - "values": [ - "Freedom of religion and belief", - "Racial discrimination" - ] - }, - { - "text": "Intensify measures to improve access by minority groups and indigenous people to basic social services, such as health, education, employment, and occupation ", - "values": [ - "Indigenous peoples", - "Minorities" - ] - }, - { - "text": "Restore the rule of law and the independence and impartiality of the judicial system", - "values": [ - "Justice" - ] - }, - { - "text": "Strengthen the Sex Discrimination Act as indicated in the national report, and consider the adoption of temporary special measures, as recommended by the Committee on the Elimination of All Forms of Discrimination against Women ", - "values": [ - "Treaty bodies", - "Women's rights" - ] - }, - { - "text": "Redouble efforts to reduce the maternal mortality rate and increase the health budget in order to guarantee a national health system based on equity and accessibility, as stated in paragraph 48 of the national report", - "values": [ - "Right to health", - "Women's rights" - ] - }, - { - "text": "Take measures to produce data adequate for combating discrimination and violence against minorities more efficiently", - "values": [ - "Minorities", - "Racial discrimination" - ] - }, - { - "text": "Increase the effectiveness of investigations in order to hold accountable perpetrators of killings motivated by gender prejudice", - "values": [ - "Women's rights" - ] - }, - { - "text": "Lift the remaining reservations to the Convention on the Elimination of All Forms of Discrimination against Women, as well as the reservations made to the Convention on the Rights of the Child", - "values": [ - "International instruments", - "Rights of the Child", - "Women's rights" - ] - }, - { - "text": "Raise the minimum age of criminal responsibility to an internationally acceptable level", - "values": [ - "Justice", - "Rights of the Child" - ] - }, - { - "text": "Ensure equal access to employment, housing and education to ethnic minorities, especially women ", - "values": [ - "Labour", - "Minorities", - "Right to education", - "Right to health", - "Right to housing" - ] - }, - { - "text": "Introduce specific education programmes and sensitivity trainings for all relevant judiciary and police personnel aimed specifically at the protection of human rights of non-governmental organization activists and members of minorities, including national minorities and persons of minority sexual orientation and gender identity.", - "values": [ - "Civil society", - "Human rights education and training", - "Minorities", - "Sexual Orientation and Gender Identity" - ] - }, - { - "text": "Strengthen legal and administrative provisions to eliminate all forms of discrimination based on sex and gender ", - "values": [ - "Women's rights" - ] - }, - { - "text": "Implement the observations of the Human Rights Committee by adopting the necessary legislation to ensure that no one is extradited to a State where they would be in danger of the death penalty", - "values": [ - "Death penalty", - "Treaty bodies" - ] - }, - { - "text": "Ensure that education is free and compulsory, with special focus on the enrolment of girls in schools ", - "values": [ - "Right to education", - "Rights of the Child", - "Women's rights" - ] - }, - { - "text": "Improve overall conditions of prisons and adopt relevant measures to tackle the problems such as overcrowding, unsatisfactory state of prisons and shortcomings in the supply of health care ", - "values": [ - "Detention" - ] - }, - { - "text": "Create a more favourable environment for a stronger civil society in the country, including guaranteeing the full legitimacy for human rights defenders to spare them from the harassment they had to face so far and establish closer links with international human rights non-governmental organizations", - "values": [ - "Civil society", - "Human rights defenders" - ] - }, - { - "text": "Further revise the current legislation on personal status, nationality, employment and education in order to reinforce non-discrimination against women", - "values": [ - "Statelessness and the right to nationality", - "Women's rights" - ] - }, - { - "text": "Continue its efforts in protecting and promoting the right to safe drinking water and sanitation nationally and globally ", - "values": [ - "Right to water and sanitation" - ] - }, - { - "text": "Step-up its measures in addressing violence against women, including ensuring protection for the victims of the violence", - "values": [ - "Women's rights" - ] - }, - { - "text": "Observe an official moratorium on executions in order to envisage, ultimately, the final abolition of capital punishment", - "values": [ - "Death penalty" - ] - }, - { - "text": "Allocate adequate resources for ensuring access to safe drinking water and sanitation, to proper health care services for women and children, as well as to affordable and satisfactory education", - "values": [ - "Right to education", - "Right to health", - "Right to water and sanitation", - "Rights of the Child", - "Women's rights" - ] - }, - { - "text": "Prohibit the corporal punishment of children at home, at school, in penal institutions, in alternative-care settings and as a traditional form of sentencing ", - "values": [ - "Rights of the Child", - "Torture and other CID treatment" - ] - }, - { - "text": "Continue and increase its efforts with a view to fully combating trafficking and prostitution, and continue efforts to help women who have been victims of trafficking. ", - "values": [ - "Trafficking", - "Women's rights" - ] - }, - { - "text": "Speed finalizing drafting the special law to prevent and punish crimes of gender based violence in order to put an end and fight violence against women ", - "values": [ - "Women's rights" - ] - }, - { - "text": "Strengthen and improve the capacity and independence of the Ombudsman ", - "values": [ - "National Human Rights Institution" - ] - }, - { - "text": "Continue with its efforts to achieve a real equality between men and women, in particular in the area of labour conditions and remuneration", - "values": [ - "Women's rights" - ] - }, - { - "text": "Act on intensifying national efforts to integrate rights of persons with disabilities within the framework of the legal system according to comprehensive national programmes that respond to their needs", - "values": [ - "Disabilities" - ] - }, - { - "text": "Continue its efforts with a view to ratifying the Convention for the Protection of All Persons from Enforced Disappearance ", - "values": [ - "Enforced disappearances", - "International instruments" - ] - }, - { - "text": "Submit the second and third reports to the Committee on the Rights of the Child", - "values": [ - "Rights of the Child", - "Treaty bodies" - ] - }, - { - "text": "Abolish the death penalty or, otherwise, establish a moratorium", - "values": [ - "Death penalty" - ] - }, - { - "text": "Take all necessary measures to prevent statelessness and allow all residents to fully enjoy their fundamental rights in particular persons of Haitian's descent who have been affected by the ruling of the Constitutional Tribunal of the 23rd of September 2013 ", - "values": [ - "Minorities", - "Statelessness and the right to nationality" - ] - }, - { - "text": "Continue to take action towards a comprehensive gender equality strategy, and introduce effective legislative measures to increase women\u2019s participation in political life and decision-making", - "values": [ - "Women's rights" - ] - }, - { - "text": "Better disseminate and ensure full observance of the Declaration on Human Rights Defenders", - "values": [ - "Human rights defenders", - "International instruments" - ] - }, - { - "text": "Prohibit the detention of unaccompanied children in law and end it in practice, and increase shelter capacity for unaccompanied children seeking asylum", - "values": [ - "Asylum-seekers - refugees", - "Rights of the Child" - ] - }, - { - "text": "Finalize the pending initiatives, including the Federal bill on improving the protection of victims of violence", - "values": [ - "Other" - ] - }, - { - "text": "Ratify the Convention against Torture and Other Cruel, Inhuman or Degrading Treatment or Punishment and ensure that the instrument of ratification is consistent with the Convention", - "values": [ - "International instruments", - "Torture and other CID treatment" - ] - }, - { - "text": "Further promote inter-ethnic harmony and tolerance, particularly with regard to the Serb and Roma minorities ", - "values": [ - "Minorities" - ] - }, - { - "text": "Amend the Criminal Code to criminalize domestic violence clearly and implement a comprehensive strategy to eliminate all forms of violence against women", - "values": [ - "Rights of the Child", - "Women's rights" - ] - }, - { - "text": "Promptly ratify and implement in national laws the outstanding core human rights treaties, including ICCPR and its two optional protocols ", - "values": [ - "CP rights - general", - "Death penalty", - "International instruments" - ] - }, - { - "text": "Continue its effort to ensure rights of migrants in the country as well as abroad", - "values": [ - "Migrants" - ] - }, - { - "text": "Continue efforts to ensure decent living conditions in all reception and detention centres for migrants and asylum seekers by providing adequate healthcare services, food, sanitary conditions and access to transportation", - "values": [ - "Asylum-seekers - refugees", - "Detention", - "Migrants", - "Right to food", - "Right to health", - "Right to water and sanitation" - ] - }, - { - "text": "Consider acceding to the three Optional Protocols to the Convention on the Rights of the Child", - "values": [ - "International instruments", - "Rights of the Child" - ] - }, - { - "text": "Consider possible means of a stricter enforcement of existing laws, with a view to combating different forms of violence against women and girls", - "values": [ - "Rights of the Child", - "Women's rights" - ] - }, - { - "text": "Enact public programs to improve integration of Muslim and other immigrants into Dutch society, and build bridges between communities ", - "values": [ - "Freedom of religion and belief", - "Migrants" - ] - }, - { - "text": "Adhere to the International Covenant on Economic, Social and Cultural Rights, the International Convention for the Protection of All Persons from Enforced Disappearance, the 1951 Refugee Convention and the 1967 Protocol thereto, as well as the United Nations Educational, Scientific and Cultural Organization Convention against Discrimination in Education, as previously recommended", - "values": [ - "Asylum-seekers - refugees", - "ESC rights - general", - "Enforced disappearances", - "International instruments", - "Right to education", - "UPR process" - ] - }, - { - "text": "Consider ratifying the International Convention on the Protection of the Rights of All Migrant Workers and Members of Their Families and the International Labour Organization (ILO) Domestic Workers Convention, 2011 (No. 189)", - "values": [ - "International instruments", - "Labour", - "Migrants" - ] - }, - { - "text": "Pass legislation to ensure that unregistered children are not deprived of their rights, and that concrete steps be taken to decrease current obstacles to child registration ", - "values": [ - "Rights of the Child" - ] - }, - { - "text": "Strengthen domestic legislation to include provisions that provide explicit protection from sexual and gender violence", - "values": [ - "Women's rights" - ] - }, - { - "text": "Continue simplification of procedures for entrepreneurs, including initiatives aiming at strengthening the pioneer role of women", - "values": [ - "Women's rights" - ] - }, - { - "text": "Expedite its work on policy formulation on inclusive education with particular focus on girls", - "values": [ - "Right to education", - "Rights of the Child", - "Women's rights" - ] - }, - { - "text": "Strengthen training within the judiciary on the Convention on the Elimination of All Forms of Discrimination against Women and carry out campaigns on the rights of women and existing resources in cases of gender-based violence or discrimination", - "values": [ - "Human rights education and training", - "International instruments", - "Women's rights" - ] - }, - { - "text": "Continue to make efforts to improve the treatment of detainees in prisons ", - "values": [ - "Detention" - ] - }, - { - "text": "Continue its leading international efforts to tackle global warming, including by reminding developed countries and other major emitting States of their obligation to help promote and protect human rights in Seychelles by reducing greenhouse gas emissions to safe levels ", - "values": [ - "Environment" - ] - }, - { - "text": "Continue to strengthen national human rights institutions, including the independence of the judiciary", - "values": [ - "Justice" - ] - }, - { - "text": "Abolish the death penalty and sign and ratify both Optional Protocols to ICCPR", - "values": [ - "Death penalty", - "International instruments" - ] - }, - { - "text": "Amend the Penal Code in order to criminalize all forms of sexual abuse of children, regardless of the sex of the child, and bring the perpetrators to justice", - "values": [ - "Rights of the Child" - ] - }, - { - "text": "Take urgent steps to establish an independent National Human Rights Institution free from governmental control, and in full compliance with the Paris Principles", - "values": [ - "National Human Rights Institution" - ] - }, - { - "text": "Ensure adequate protection and humanitarian assistance to refugees and IDPS", - "values": [ - "Internally displaced persons" - ] - }, - { - "text": "Consider taking steps to eliminate all mandatory death penalty sentences, and impose a moratorium on the application of the death penalty with the view of abolishing it", - "values": [ - "Death penalty" - ] - }, - { - "text": "Continue close cooperation with various stakeholders and non-governmental organizations in the follow-up of its review. ", - "values": [ - "Civil society", - "UPR process" - ] - }, - { - "text": "Ensure equal opportunities for women in the labour market by eliminating occupational segregation and narrowing the gender pay gap and increase the participation of women in the political sphere, in particular at the higher levels", - "values": [ - "Women's rights" - ] - }, - { - "text": "Give clear instructions to the security forces to always act in compliance with international human rights law, to bring to justice anyone suspected of having committed extrajudicial killings, excessive use of force, torture, rape and other grave human rights violations, and to cooperate with the United Nations Commission of Inquiry ", - "values": [ - "Extrajudicial executions", - "Human rights violations by state agents", - "International instruments", - "Rights of the Child", - "Torture and other CID treatment", - "Women's rights" - ] - }, - { - "text": "Seriously consider ratifying the core human rights treaties it has previously signed. This includes, inter alia, the International Covenant on Civil and Political Rights, the International Convention on the Elimination of All Forms of Racial Discrimination and the Convention against Torture ", - "values": [ - "CP rights - general", - "International instruments", - "Racial discrimination", - "Torture and other CID treatment" - ] - }, - { - "text": "Adopt a legislation to prevent and punish child marriage, by setting 18 as legal age for marriage, for both women and men ", - "values": [ - "Rights of the Child", - "Women's rights" - ] - }, - { - "text": "Urge business enterprises and the private sector to participate in the process of comprehensive human development, based on the principle of corporate social responsibility, including through voluntary and philanthropy initiatives", - "values": [ - "Business and human rights", - "Development" - ] - }, - { - "text": "Ratify the Convention Against Torture and Other Cruel, Inhuman or Degrading Treatment or Punishment and fully implement its provisions ", - "values": [ - "International instruments", - "Torture and other CID treatment" - ] - }, - { - "text": "Take the measures necessary to accelerate the application of the law on the reception and integration of foreigners", - "values": [ - "Migrants" - ] - }, - { - "text": "Investigate all allegations of illegal use of force and ill-treatment by police and security forces, including against migrants, Roma and people of African descent ", - "values": [ - "Human rights violations by state agents", - "Migrants", - "Minorities", - "Torture and other CID treatment" - ] - }, - { - "text": "Resume full cooperation with the Human Rights Council and with OHCHR", - "values": [ - "Special procedures", - "Technical assistance and cooperation", - "UPR process" - ] - }, - { - "text": "Sign and ratify the Second Optional Protocol to the International Covenant on Civil and Political Rights which prohibits the death penalty in all circumstances ", - "values": [ - "Death penalty", - "International instruments" - ] - }, - { - "text": "Continue to prioritize the education and health sectors in its development plans ", - "values": [ - "Right to education", - "Right to health" - ] - }, - { - "text": "Strengthen anti-poverty policies", - "values": [ - "Poverty" - ] - }, - { - "text": "Take effective measures to ensure the full realization of the rights to freedoms of expression, including on internet, assembly and association ", - "values": [ - "Freedom of association and peaceful assembly", - "Freedom of opinion and expression" - ] - }, - { - "text": "Finalize the ongoing legislative reforms, particularly those related to family law, the criminal code and the criminal procedural code", - "values": [ - "Justice" - ] - }, - { - "text": "Consider ratifying the International Covenant on Civil and Political Rights and the Optional Protocols thereto ", - "values": [ - "CP rights - general", - "Death penalty", - "International instruments" - ] - }, - { - "text": "Issue a standing invitation to the Special Procedures of the Human Rights Council", - "values": [ - "Special procedures" - ] - }, - { - "text": "Maintain measures to reduce HIV-AIDS mainly through strategies of abstinence and fidelity as well as through better access to medicines for all people in need, to avoid an increase in the infection rate ", - "values": [ - "HIV - Aids" - ] - }, - { - "text": "Extend an open and standing invitation to the special procedures, as a gesture of Lebanon's openness and commitment to cooperate with the human rights international mechanisms.", - "values": [ - "Special procedures" - ] - }, - { - "text": "Continue steps towards the recovery of physical and moral damage to the religious denominations suffered during the Soviet era", - "values": [ - "Freedom of religion and belief" - ] - }, - { - "text": "Adopt a legislation concerning xenophobia, incitement to hatred and hatred to blacks, and to criminalize racial violence ", - "values": [ - "Racial discrimination" - ] - }, - { - "text": "Ensure the effective implementation of the recently adopted legislation aimed at fighting discrimination and violence against women", - "values": [ - "Women's rights" - ] - }, - { - "text": "Continue cooperation with international human rights institutions and treaty bodies and continue its efforts to spread a culture of human rights and publicize the human rights instruments to which it is a party and build, with the support of OHCHR, the necessary national capacity for the preparation of the periodic reports to treaty bodies", - "values": [ - "International instruments", - "Technical assistance and cooperation", - "Treaty bodies" - ] - }, - { - "text": "Examine and revise the recently adopted Law on Societies to ensure that the provisions of this law are in line with international human rights standards and in particular with the right to the freedom of association enshrined in the ICCPR ", - "values": [ - "Civil society", - "Freedom of association and peaceful assembly", - "International instruments" - ] - }, - { - "text": "Review its legislation criminalizing the termination of pregnancies in all circumstances, including in cases of rape, incest and situations where the life of the mother is at risk, making adequate information on family planning and the regulation of fertility publicly available", - "values": [ - "Rights of the Child", - "Women's rights" - ] - }, - { - "text": "Establish as soon as possible its national plan of action on human rights, in order to coordinate, promote and advance human rights in sustainable manner", - "values": [ - "General" - ] - }, - { - "text": "Repeal legal provisions that criminalize homosexuality, and take all necessary measures to ensure respect for all human rights of lesbian, gay, bisexual, transgender and intersex people, including access to public health services and support initiatives, such as education programmes and the provision of disease and infection care", - "values": [ - "Right to education", - "Right to health", - "Sexual Orientation and Gender Identity" - ] - }, - { - "text": "Put an end to the detention of all migrant children, accompanied or unaccompanied or separated from their family", - "values": [ - "Detention", - "Migrants", - "Rights of the Child" - ] - }, - { - "text": "Accelerate the ratification of the Istanbul Convention of the Council of Europe", - "values": [ - "International instruments", - "Women's rights" - ] - }, - { - "text": "Review the new federal immigration laws so to take into consideration the humanitarian aspects of a possible expulsion of foreign citizens with permanent resident visas, especially if they do not speak the language of their citizenship or have no longer connections with the country of origin of their family", - "values": [ - "Migrants" - ] - }, - { - "text": "Take stronger measures to ensure equal rights and opportunities, regardless of ethnicity and sex ", - "values": [ - "Minorities", - "Women's rights" - ] - }, - { - "text": "Consider ratifying the Optional Protocol to the Convention against Torture ", - "values": [ - "Detention", - "International instruments", - "Torture and other CID treatment" - ] - }, - { - "text": "Provide the necessary support for national human rights bodies to help them do their work", - "values": [ - "General" - ] - }, - { - "text": "Continue its efforts to establish a national human rights institution in accordance with the Paris Principles, which would strengthen the human rights infrastructure within the country ", - "values": [ - "National Human Rights Institution" - ] - }, - { - "text": "Ensure that future generations continue to be informed of all aspects of their history, by taking measures such as the introduction of the topic of comfort women in textbooks for school children", - "values": [ - "Women's rights" - ] - }, - { - "text": "Ensure that Yemeni women enjoy the same rights as men, promote their right to participate in political life on an equal footing with their male counterparts, and protect women against gender-based discrimination and violence ", - "values": [ - "Women's rights" - ] - }, - { - "text": "Ensure that all cases of trafficking and sexual exploitation of children are investigated ", - "values": [ - "Rights of the Child", - "Trafficking" - ] - }, - { - "text": "Extend the juvenile justice system to the whole country and create alternative forms of deprivation of liberty for children in conflict with the law.", - "values": [ - "Justice", - "Rights of the Child" - ] - }, - { - "text": "To undertake substantial measures to combat trafficking through national and international collaboration, including international and national NGOs", - "values": [ - "Civil society", - "Trafficking" - ] - }, - { - "text": "Ensure that detailed investigations are carried out in respect to hate crimes and violence, and racist and xenophobic speeches, as well as ensure that perpetrators are brought to justice", - "values": [ - "Racial discrimination" - ] - }, - { - "text": "Take measures to ensure due process and fair trials, particularly in any proceeding that could entail the application of the death penalty", - "values": [ - "Death penalty", - "Justice" - ] - }, - { - "text": "Ratify the United Nations Educational, Scientific and Cultural Organization (UNESCO) Convention against discrimination in education", - "values": [ - "International instruments", - "Right to education" - ] - }, - { - "text": "Combat violence against women and girls, in particular domestic violence", - "values": [ - "Rights of the Child", - "Women's rights" - ] - }, - { - "text": "Strengthen policies on violence against women by means of effective complaint mechanisms and legal and social counselling", - "values": [ - "Women's rights" - ] - }, - { - "text": "Take immediate measures to make sure that all unaccompanied children are given a guardian and a safe residence when they arrive in Greece ", - "values": [ - "Rights of the Child" - ] - }, - { - "text": "Immediately bring to an end the violence and repression against the civilian population ", - "values": [ - "General" - ] - }, - { - "text": "Release immediately and unconditionally all persons convicted for merely exercising their fundamental rights to freedom of expression and assembly, especially during anti-government protests that began in February 2011 ", - "values": [ - "Freedom of association and peaceful assembly", - "Freedom of opinion and expression" - ] - }, - { - "text": "Continue to cooperate with the United Nations human rights mechanisms within the framework of implementation of ratified international instruments", - "values": [ - "International instruments", - "Special procedures", - "Technical assistance and cooperation", - "Treaty bodies", - "UPR process" - ] - }, - { - "text": "Consider applying a moratorium on executions, with a view to ultimately abolishing the death penalty", - "values": [ - "Death penalty" - ] - }, - { - "text": "Seek technical assistance of the OHCHR, according to its national priority, in order to address the issue of delay in reporting on the Conventions to which it is party", - "values": [ - "Technical assistance and cooperation", - "Treaty bodies" - ] - }, - { - "text": "Continue its efforts to combat domestic violence and gender-based violence", - "values": [ - "Rights of the Child", - "Women's rights" - ] - }, - { - "text": "Continue to pay attention to the rights of employees and requiring employers to provide the necessary protection and safety in the factories and industries ", - "values": [ - "Labour" - ] - }, - { - "text": "Comply with the principles of international cooperation, as defined in Resolution 3074 of the General Assembly, for the extradition of persons accused of crimes against humanity ", - "values": [ - "Justice" - ] - }, - { - "text": "Repeal the right "to administer reasonable punishment" and clearly prohibit corporal punishment in all settings, including in the home", - "values": [ - "Rights of the Child", - "Torture and other CID treatment" - ] - }, - { - "text": "Continue to build partnerships with friendly countries and organizations, and explore all possible avenues of cooperation, either at bilateral, regional or international levels, to improve the country's capacity and to enhance its manpower in order to allow the people of Timor-Leste full enjoyment of their rights ", - "values": [ - "Technical assistance and cooperation" - ] - }, - { - "text": "Consider acceding to all United Nations human rights instruments", - "values": [ - "International instruments" - ] - }, - { - "text": "Continue with its fight against discrimination suffered by minorities", - "values": [ - "Minorities", - "Racial discrimination" - ] - }, - { - "text": "Continue its endeavours for development and poverty alleviation throughout the country", - "values": [ - "Development", - "Poverty" - ] - }, - { - "text": "Promote a reform of the Civil Code to provide full legal capacity to persons with disabilities, and thus ensure their autonomy and improve their social inclusion", - "values": [ - "Disabilities" - ] - }, - { - "text": "Continue implementing programs, in cooperation with specialised organisations of the UN system, aimed at improving living conditions of migrants and providing them with possibilities for repatriation", - "values": [ - "Migrants", - "Technical assistance and cooperation" - ] - }, - { - "text": "Take concrete measures to ensure that women and girls live free from gender-based violence by significantly improving the rates of prosecution and providing adequate services for survivors", - "values": [ - "Rights of the Child", - "Women's rights" - ] - }, - { - "text": "Take an active part in rescue operations at sea particularly for boat people and provide instant refuge for them.", - "values": [ - "Asylum-seekers - refugees" - ] - }, - { - "text": "Fully implement the standing invitation extended to the United Nations human rights special procedures", - "values": [ - "Special procedures" - ] - }, - { - "text": "Continue to take measures for greater participation, involvement and empowerment of women in all socio-economic fields of the country", - "values": [ - "Women's rights" - ] - }, - { - "text": "Reinstate the de facto moratorium on the death penalty with a view to its abolition", - "values": [ - "Death penalty" - ] - }, - { - "text": "Intensify its efforts to protect the rights of the child, especially children in poverty, victims of child prostitution and children with disabilities, undertake a comprehensive review of national legislation to guarantee full implementation of the principle of non-discrimination as well as adopt a national strategy to mitigate against such a situation, as recommended by the Committee of the Rights of the Child in 2004, take all necessary measures to put an end to the practice of child soldiers ", - "values": [ - "International humanitarian law", - "Rights of the Child", - "Treaty bodies" - ] - }, - { - "text": "Strengthen efforts to protect freedom of religion and promote interreligious dialogue", - "values": [ - "Freedom of religion and belief" - ] - }, - { - "text": "Continue to amend and update (criminal and civil) legal codes to protect women from sexual exploitation, gender-based violence and discrimination ", - "values": [ - "Women's rights" - ] - }, - { - "text": "Raise the minimum age of criminal responsibility in accordance with general comment No. 10 [2007] of the Committee on the Rights of the Child", - "values": [ - "Justice", - "Rights of the Child", - "Treaty bodies" - ] - }, - { - "text": "Continue efforts to strengthen human rights", - "values": [ - "General" - ] - }, - { - "text": "Accelerate the demobilization of child combatants and ensure their proper rehabilitation with the support of the international community.", - "values": [ - "Rights of the Child" - ] - }, - { - "text": "Ensure that the new Constitution being formulated and its national legislation is in line with international human rights instruments acceded to by Nepal", - "values": [ - "International instruments" - ] - }, - { - "text": "Adopt appropriate measures to address the expansion of illegal armed groups that have emerged after the demobilization of paramilitary organizations, paying particular attention to combating impunity, ensuring independence of judges and the judiciary system, and providing reparation for victims of such events ", - "values": [ - "International humanitarian law", - "Justice" - ] - }, - { - "text": "Take urgent measures to repeal the norms that discriminate against castes, and investigate and sanction the perpetrators of acts of discrimination and violence against them, in particular against the Dalits", - "values": [ - "Minorities", - "Racial discrimination" - ] - }, - { - "text": "Improve procedures aimed at raising the percentage of children registered at birth. ", - "values": [ - "Rights of the Child" - ] - }, - { - "text": "Intensify its efforts to allow better enjoyment of economic, social and cultural rights giving special attention to combating poverty and improving protection of vulnerable social groups, particularly women and children ", - "values": [ - "ESC rights - general", - "Poverty", - "Rights of the Child", - "Women's rights" - ] - }, - { - "text": "Further improve the social status of persons with disabilities", - "values": [ - "Disabilities" - ] - }, - { - "text": "Protect the human rights defenders and investigate any reported cases of intimidation, harassment and attacks against them", - "values": [ - "Human rights defenders" - ] - }, - { - "text": "Continue favouring the human rights approach in the reconstruction framework ", - "values": [ - "Development" - ] - }, - { - "text": "Share best practices in the promotion and protection of human rights taking into account the multireligious, multi-cultural and multi-ethnic nature of Indian society.", - "values": [ - "Freedom of religion and belief", - "Minorities" - ] - }, - { - "text": "Ensure the equal right to quality education for young mothers and married girls", - "values": [ - "Right to education", - "Rights of the Child", - "Women's rights" - ] - }, - { - "text": "Adopt legislation aimed at protecting children from economic and sexual exploitation ", - "values": [ - "Rights of the Child" - ] - }, - { - "text": "Strictly apply without delay Law No. 82/2013, which criminalizes violence against women", - "values": [ - "Women's rights" - ] - }, - { - "text": "Respect the freedom of opinion and expression and to abstain from imposing penal sanctions on journalists because of their articles.", - "values": [ - "Freedom of opinion and expression", - "Freedom of the press" - ] - }, - { - "text": "Enforce the provisions of the "Law on legal aid" and ensure that practical procedures to obtain free legal aid are enabling applicants to fully enjoy their rights of access to justice", - "values": [ - "Justice" - ] - }, - { - "text": "Take additional measures to implement recommendations on various issues as put forward by the Committee for the Elimination of Discrimination against Women, in particular the low participation of women in decision making bodies and in public life, and the high rates of illiteracy and school dropout among women ", - "values": [ - "Treaty bodies", - "Women's rights" - ] - }, - { - "text": "Undertake measures enabling unrestricted use of Internet to all members of the society", - "values": [ - "Freedom of opinion and expression" - ] - }, - { - "text": "Remove undue restrictions on the organization of peaceful protest in opposition to the Government, and repeal the application of criminal penalties to peaceful participation in unauthorized protests", - "values": [ - "Freedom of association and peaceful assembly" - ] - }, - { - "text": "Enhance efforts to enable the lesbian, gay, bisexual and transgender (LGBT) community to exercise their fundamental freedoms of expression, association and peaceful assembly", - "values": [ - "Freedom of association and peaceful assembly", - "Freedom of opinion and expression", - "Sexual Orientation and Gender Identity" - ] - }, - { - "text": "Implement further policies to ensure gender equality throughout society and strengthen the promotion of the rights of women ", - "values": [ - "Women's rights" - ] - }, - { - "text": "Address overcrowding in prison systems and poor prison conditions, especially to ensure human rights of women prisoners are protected ", - "values": [ - "Detention", - "Women's rights" - ] - }, - { - "text": "Take the necessary measures to guarantee, in all circumstances, full respect for freedom of expression and freedom of the press", - "values": [ - "Freedom of opinion and expression", - "Freedom of the press" - ] - }, - { - "text": "Abolish its political prison camps, where grave human rights violations are ongoing, and release all political prisoners ", - "values": [ - "Detention", - "Freedom of opinion and expression" - ] - }, - { - "text": "Establish a de jure moratorium on the death penalty, with a view to its future abolition", - "values": [ - "Death penalty" - ] - }, - { - "text": "Continue its efforts in the area of human rights with regard to post-incarceration situations in order to ensure a better reintegration into society for prisoners ", - "values": [ - "Detention" - ] - }, - { - "text": "Sign the third OP-CRC-IC", - "values": [ - "International instruments", - "Rights of the Child" - ] - }, - { - "text": "Improve training for police and detention centre personnel, and to modernize its facilities to meet the needs of all prisoners", - "values": [ - "Detention" - ] - }, - { - "text": "Adopt all necessary measures to bring the perpetrators of all serious human rights violations in the country to justice ", - "values": [ - "Justice" - ] - }, - { - "text": "Consider giving a greater role to the private sector in developing the national education and health system ", - "values": [ - "Right to education", - "Right to health" - ] - }, - { - "text": "Increase the level of political participation and decision-making of women and minority groups at governmental level", - "values": [ - "Minorities", - "Women's rights" - ] - }, - { - "text": "Develop, enact and implement a national action plan on business and human rights in order to implement the guiding Principles on Business and Human Rights", - "values": [ - "Business and human rights" - ] - }, - { - "text": "Ensure the elimination of the sale and trafficking of children for sexual exploitation ", - "values": [ - "Rights of the Child", - "Trafficking" - ] - }, - { - "text": "Intensify efforts to combat child trafficking and international child abduction in order to conserve the gains already achieved by the Government in this area ", - "values": [ - "Rights of the Child", - "Trafficking" - ] - }, - { - "text": "Ratify the international instruments it has already signed, in particular the International Convention on the Elimination of All Forms of Racial Discrimination, the Convention against Torture and its Optional Protocol", - "values": [ - "Detention", - "International instruments", - "Racial discrimination", - "Torture and other CID treatment" - ] - }, - { - "text": "Strengthen the capacity of processing, hosting and integrating asylum seekers, in close collaboration with relevant stakeholders", - "values": [ - "Asylum-seekers - refugees" - ] - }, - { - "text": "Strengthen work with international organizations to cooperate in supporting and improving the country's health system", - "values": [ - "Right to health" - ] - }, - { - "text": "Strengthen without delay the measures to fight against sexual violence and amplify efforts to ensure gender equality and women's participation in peacebuilding, as recommended previously", - "values": [ - "Rights of the Child", - "UPR process", - "Women's rights" - ] - }, - { - "text": "Provide all the support to the Inter-Agency Council to enable it to implement the National Directive Mechanism Rules regarding victims of human trafficking", - "values": [ - "Trafficking" - ] - }, - { - "text": "Amend the Sedition Act and the Local Newspapers Order 1958 to strengthen freedom of expression in line with international human rights obligations ", - "values": [ - "Freedom of opinion and expression", - "Freedom of the press", - "International instruments" - ] - }, - { - "text": "Create conditions for the realization of the right to the truth, which is the necessary precondition for the prevention, recognition and punishment of genocide ", - "values": [ - "Justice" - ] - }, - { - "text": "Intensify efforts for drafting a constitution which guarantees the fundamental rights of persons, as well as the separation and independence of the executive, legislative and judicial branches", - "values": [ - "Justice" - ] - }, - { - "text": "Continue to provide protection to victims of trafficking in human beings and to ensure systematic procedures for the identification of victims ", - "values": [ - "Trafficking" - ] - }, - { - "text": "Continue the programmes aimed at promoting the human rights of disabled persons and submit within the set timeframe the initial report to the Committee established by the Convention on the Rights of Persons with Disabilities", - "values": [ - "Disabilities", - "Treaty bodies" - ] - }, - { - "text": "Tunisia has agreed in principle to allow Human Rights Watch to visit prisons. This is part of its cooperation with international human rights organizations, particularly the International Committee of the Red Cross (ICRC), following an agreement signed in April 2005", - "values": [ - "Civil society", - "Detention" - ] - }, - { - "text": "Implement all resolutions adopted by the Council, in particular resolution 7-18, in which the Council requested Israel to cooperate with the Special Rapporteur on the human rights situation in the Palestinian territories occupied since 1967 and to immediately withdraw all legislative and administrative measures aiming at making the occupied East Jerusalem Jewish, including measures that allow archaeological digging around the Aqsa Mosque, the building of a synagogue, the establishment and expansion of settlements and the shutting down of Palestinian institutions.", - "values": [ - "Right to land", - "Special procedures" - ] - }, - { - "text": "Remedy prison overcrowding and its repercussion on the right to health ", - "values": [ - "Detention", - "Right to health" - ] - }, - { - "text": "Continue to improve conditions in Ministry of Justice-operated facilities and hold accountable any law enforcement official suspected of involvement in torture, abuse or coerced confessions", - "values": [ - "Human rights violations by state agents", - "Torture and other CID treatment" - ] - }, - { - "text": "Strengthen the mandate and independence of the National Office against Racial Discrimination in line with the Paris Principles", - "values": [ - "National Human Rights Institution" - ] - }, - { - "text": "Pursue its efforts to guarantee to victims of human rights violations effective, flexible and prompt remedies ", - "values": [ - "Justice" - ] - }, - { - "text": "Provide particular attention to social groups which are in vulnerable situation, such as women, children, persons with disabilities and the elderly", - "values": [ - "Disabilities", - "Rights of the Child", - "Women's rights" - ] - }, - { - "text": "Amend the 2006 law on protecting society from terrorist acts to avoid imposing statelessness on individuals and minimize the negative impact on the families of those affected", - "values": [ - "Counter-terrorism", - "Statelessness and the right to nationality" - ] - }, - { - "text": "Ensure progressive enjoyment of the right to health", - "values": [ - "Right to health" - ] - }, - { - "text": "Investigate thoroughly crimes against women and minorities and fully implement laws intended to enforce constitutional protections for women and minorities, including laws against discrimination", - "values": [ - "Minorities", - "Women's rights" - ] - }, - { - "text": "Fully cooperate with the Independent International Commission of Inquiry established under Human Rights Council resolution S-17/1", - "values": [ - "Technical assistance and cooperation" - ] - }, - { - "text": "Work diligently to stop the war and end the conflict in the Syrian Arab Republic by bringing all efforts to achieve a political settlement by the Syrians themselves and have control over it in accordance with the Geneva communiqué", - "values": [ - "Other" - ] - }, - { - "text": "Establish an independent national human rights institution and ensure that it complies with the Paris Principles.", - "values": [ - "National Human Rights Institution" - ] - }, - { - "text": "Ensure the prosecution and punishment of perpetrators of human trafficking as well as to endure necessary assistance to victims", - "values": [ - "Trafficking" - ] - }, - { - "text": "Allow the access of international media, independent media and diplomats", - "values": [ - "Freedom of the press" - ] - }, - { - "text": "Continue, in cooperation with the relevant international organizations, to improve access to quality health care for all its people", - "values": [ - "Right to health", - "Technical assistance and cooperation" - ] - }, - { - "text": "Accede, as early as possible, to the Convention relating to the Status of Stateless Persons and the Convention on the Reduction of Statelessness ", - "values": [ - "International instruments", - "Statelessness and the right to nationality" - ] - }, - { - "text": "Accept outstanding visit requests by special procedures, and consider extending a standing invitation to regional and international bodies for human rights protection", - "values": [ - "Special procedures" - ] - }, - { - "text": "Engage in consultation with pro-transparency organizations and other relevant stakeholders prior to developing or implementing new legislation on Freedom of Information", - "values": [ - "Civil society", - "Freedom of opinion and expression" - ] - }, - { - "text": "Accede and implement, step by step, the core international human rights treaties", - "values": [ - "International instruments" - ] - }, - { - "text": "Strengthen measures to combat trafficking in persons, in particular those related to the sexual exploitation of women and children", - "values": [ - "Rights of the Child", - "Trafficking", - "Women's rights" - ] - }, - { - "text": "Consider a legal reform in order to address also in an effective way the so-called honour killings or crimes", - "values": [ - "Rights of the Child", - "Women's rights" - ] - }, - { - "text": "Consider establishing an institutional mechanism to ensure respect for diversity and tolerance.", - "values": [ - "General" - ] - }, - { - "text": "Take steps to eliminate violence against women and include in the legislation an explicit prohibition on discrimination against women", - "values": [ - "Women's rights" - ] - }, - { - "text": "Seriously deal with the allegation of systematic and excessive use of force and torture by law enforcing agencies, to end the culture of impunity", - "values": [ - "Human rights violations by state agents", - "Impunity", - "Torture and other CID treatment" - ] - }, - { - "text": "Ensure equal treatment and non-discrimination against women and persons with HIV/AIDS", - "values": [ - "HIV - Aids", - "Women's rights" - ] - }, - { - "text": "Step up efforts to consider acceding to ICRMW ", - "values": [ - "International instruments", - "Labour", - "Migrants" - ] - }, - { - "text": "Take effective measures to ensure the freedom of expression and opinion by amending the press law that allows for a broad interpretation of the vague term humiliation of national institutions and authorizes censorship, the suspension of publishing and imprisonment under the guise of national security and political stability ", - "values": [ - "Freedom of opinion and expression", - "Freedom of the press" - ] - }, - { - "text": "Ratify the Convention on the Rights of Persons with Disabilities and effectively implement the national plan in order to make the education system open to children with disabilities", - "values": [ - "Disabilities", - "International instruments", - "Right to education", - "Rights of the Child" - ] - }, - { - "text": "Attract aid and attention of the international community and donors for further strengthening and supporting human rights institutions working within the framework of the Afghan Government for protection, observance and realization of the human rights ", - "values": [ - "Technical assistance and cooperation" - ] - }, - { - "text": "Adopt measures to strengthen its mechanisms to combat trafficking, with a special focus on trafficking of boys and girls for sexual exploitation", - "values": [ - "Rights of the Child", - "Trafficking" - ] - }, - { - "text": "Become a party to ICCPR-OP 1 - withdrawn in 1997 - and ICCPROP 2 ", - "values": [ - "CP rights - general", - "Death penalty", - "International instruments" - ] - }, - { - "text": "Ratify the Rome Stature of the ICC and accede to the Agreement on the Privileges and Immunities of the ICC", - "values": [ - "International instruments", - "Justice" - ] - }, - { - "text": "Sign and ratify the core international human rights instruments, including the International Convention on the Protection of the Rights of All Migrant Workers and Members of Their Families, the Convention against Torture, the International Convention for the Protection of All Persons from Enforced Disappearance and the International Covenant on Civil and Political Rights", - "values": [ - "CP rights - general", - "Enforced disappearances", - "International instruments", - "Labour", - "Migrants", - "Torture and other CID treatment" - ] - }, - { - "text": "Adopt measures to ensure a fair representation of women in ministerial positions of the country", - "values": [ - "Women's rights" - ] - }, - { - "text": "Continue its efforts to bridge the gaps in the field of health and education in remote areas ", - "values": [ - "Right to education", - "Right to health" - ] - }, - { - "text": "Ratify the Convention against Torture and Other Cruel, Inhuman or Degrading Treatment or Punishment, recalling the commitment undertaken by the Government of the Gambia during the first cycle of the UPR", - "values": [ - "International instruments", - "Torture and other CID treatment", - "UPR process" - ] - }, - { - "text": "Take steps to ratify the Optional Protocol to the Convention on the Rights of the Child on a communications procedure", - "values": [ - "International instruments", - "Rights of the Child" - ] - }, - { - "text": "Ensure that juveniles in detention are housed in separate facilities from adults", - "values": [ - "Detention", - "Rights of the Child" - ] - }, - { - "text": "Adopt and implement legislation ensuring effective protection of LGBT people, inter alia on the prohibition of discrimination and hate crimes, a confidential complaints mechanism and protection of LGBT minors", - "values": [ - "Sexual Orientation and Gender Identity" - ] - }, - { - "text": "Mandate the Constitutional Court to act upon violations of the individual rights and freedoms guaranteed under the Constitution. This possibility should also help to remedy violations of the land and environmental rights of indigenous and herder peoples, including the right to safe drinking water ", - "values": [ - "Indigenous peoples", - "Right to water and sanitation" - ] - }, - { - "text": "Eliminate corporal punishment as a disciplinary measure in the home and take measures to establish a complaints and investigation procedure for acts of violence against children", - "values": [ - "Rights of the Child", - "Torture and other CID treatment" - ] - }, - { - "text": "Continue to mobilize resources and redouble efforts towards the fulfilment of its human rights obligations", - "values": [ - "General" - ] - }, - { - "text": "Reinforce the fight against all forms of racism and discrimination ", - "values": [ - "Racial discrimination" - ] - }, - { - "text": "Give continuity to strengthening national human rights institutions and mechanisms", - "values": [ - "General" - ] - }, - { - "text": "Reform Bruneian laws and policies, such as the Sedition Act, to ensure consistency with international standards ", - "values": [ - "Freedom of opinion and expression", - "Freedom of the press" - ] - }, - { - "text": "Intensify efforts to prevent and combat violence against children, including corporal punishment", - "values": [ - "Rights of the Child", - "Torture and other CID treatment" - ] - }, - { - "text": "Continue taking necessary efforts and action to provide appropriate educational opportunities for persons with disabilities", - "values": [ - "Disabilities", - "Right to education" - ] - }, - { - "text": "Adopt the necessary measures to improve the living conditions of detainees and avoid prison overcrowding", - "values": [ - "Detention" - ] - }, - { - "text": "Hold accountable all persons who are liable for the violation of human rights and humanitarian law", - "values": [ - "International humanitarian law" - ] - }, - { - "text": "Strengthen the system for the protection of persons at risk, notably women and children", - "values": [ - "Rights of the Child", - "Women's rights" - ] - }, - { - "text": "Adopt the necessary measures to protect ethnic and religious minorities from all forms of violence and discrimination", - "values": [ - "Freedom of religion and belief", - "Minorities", - "Racial discrimination" - ] - }, - { - "text": "Take preventive and more effective measures aimed at promoting and protecting human rights, especially in the light of the cases in which the safety and security of civilians is lacking and where the scope of armed conflicts in parts of the country is wider", - "values": [ - "Public security" - ] - }, - { - "text": "Develop awareness-raising campaigns aimed at changing attitudes and behaviours related to domestic violence ", - "values": [ - "Human rights education and training", - "Rights of the Child", - "Women's rights" - ] - }, - { - "text": "Combat early marriages", - "values": [ - "Rights of the Child", - "Women's rights" - ] - }, - { - "text": "Take all necessary measures to prosecute and punish perpetrators of violations of international human rights law and humanitarian law.", - "values": [ - "International humanitarian law", - "International instruments" - ] - }, - { - "text": "Take further measures to tackle hate crimes and racial discrimination, including by promoting an understanding of cultural diversity in society, assisting minority youth to access the labour market and adopting adequate social housing policies", - "values": [ - "Labour", - "Minorities", - "Racial discrimination", - "Right to housing" - ] - }, - { - "text": "Further secure promotion and protection of the rights of women, combat against domestic violence and guarantee gender equality ", - "values": [ - "Women's rights" - ] - }, - { - "text": "Facilitate the active involvement of civil society stakeholders, including human rights non-governmental organizations, in the follow-up to this review ", - "values": [ - "Civil society", - "UPR process" - ] - }, - { - "text": "Address prostitution, pornography and trafficking of children and adolescents for the purpose of sexual exploitation.", - "values": [ - "Rights of the Child" - ] - }, - { - "text": "Make every effort to speed up the process of adoption of the drafts of the children's code and the law on gender equality and women's participation", - "values": [ - "Rights of the Child", - "Women's rights" - ] - }, - { - "text": "Activate the items listed in the Declaration of the Islamic Summit to promote Islamic solidarity and make it a reality where there is peace and coexistence", - "values": [ - "Other" - ] - }, - { - "text": "Ratify the Optional Protocol to the Convention on the Elimination of All Forms of Discrimination against Women and the Optional Protocol to the Convention against Torture", - "values": [ - "Detention", - "International instruments", - "Torture and other CID treatment", - "Women's rights" - ] - }, - { - "text": "Increase efforts to reduce the imprisonment of indigenous Australians", - "values": [ - "Detention", - "Indigenous peoples" - ] - }, - { - "text": "Ensure specific training to police concerning certain types of crimes, in particular rape with regard to the offences reported in the Centre for asylum seekers", - "values": [ - "Asylum-seekers - refugees", - "Human rights education and training" - ] - }, - { - "text": "Ratify, as soon as possible, the International Convention on the Protection of the Rights of All Migrant Workers and Members of Their Families", - "values": [ - "International instruments", - "Labour", - "Migrants" - ] - }, - { - "text": "Keep up its commitment to uphold its human rights treaty obligations and engage constructively with the human rights mechanisms, including the special procedures", - "values": [ - "International instruments", - "Special procedures", - "Treaty bodies", - "UPR process" - ] - }, - { - "text": "Step up measures to fight violence against children, particularly through the implementation of the prohibition of all corporal punishment in all settings, including within the family, in alternative care settings and schools, as set out in the draft children's code", - "values": [ - "Rights of the Child", - "Torture and other CID treatment" - ] - }, - { - "text": "Undertake a review with a view to ensuring a coordinated system bridging gaps, especially with respect to the provision of birth certificates ", - "values": [ - "Rights of the Child" - ] - }, - { - "text": "Take effective measures to provide adequate legal and other assistance for domestic and international trafficking victims, and intensify efforts to identify and prosecute trafficking cases", - "values": [ - "Trafficking" - ] - }, - { - "text": "Envisage the ratification of the International Convention on the Protection of the Rights of All Migrant Workers and Members of Their Families which was signed by Togo in 2001", - "values": [ - "International instruments", - "Labour", - "Migrants" - ] - }, - { - "text": "Repeal criminal sanctions against sexual activity between consenting adults ", - "values": [ - "Justice", - "Sexual Orientation and Gender Identity" - ] - }, - { - "text": "Accede to ICCPR, ICESCR as well as to the Optional Protocol to CEDAW", - "values": [ - "CP rights - general", - "ESC rights - general", - "International instruments", - "Women's rights" - ] - }, - { - "text": "Continue actions and efforts to promote and protect human rights effectively on the ground and towards achieving the objectives set out in its national strategy for sustainable development.", - "values": [ - "Development" - ] - }, - { - "text": "Take all necessary measures to guarantee the protection of the family, and lay down an efficient system for families in order to guarantee the enhancement of social cohesion and prevent family disintegration and social fracturing ", - "values": [ - "Other" - ] - }, - { - "text": "Improve prison conditions by considering the implementation of the relevant concluding observations already made by treaty bodies in this respect", - "values": [ - "Detention", - "Treaty bodies" - ] - }, - { - "text": "Implement the 1951 Convention relating to the Status of Refugees and its 1967 Protocol, and ensure that the refugee recognition procedures be improved in line with international refugee law.", - "values": [ - "Asylum-seekers - refugees", - "International instruments" - ] - }, - { - "text": "Ensure a comprehensive and effective incorporation of children's rights into its legal framework in line with the Convention on the Rights of the Child (CRC), by incorporating children's rights into the Constitution", - "values": [ - "International instruments", - "Rights of the Child" - ] - }, - { - "text": "Step up its cooperation with the Special Procedures of the Human Rights Council by responding positively to the pending visit requests of the Special Procedures mandate holders and eventually consider extending a standing invitation to all the Special Procedures mandate holders of the Human Rights Council", - "values": [ - "Special procedures" - ] - }, - { - "text": "Ratify all the International Conventions it has signed, as well as the ICPPED and the Optional Protocol to CEDAW", - "values": [ - "Enforced disappearances", - "International instruments", - "Women's rights" - ] - }, - { - "text": "Consider ratifying or acceding to other core international treaties to which it is not a party", - "values": [ - "International instruments" - ] - }, - { - "text": "Do everything possible, in cooperation with the Republic of Korea, to ensure that the maximum number of meetings of separated families is organized ", - "values": [ - "Other" - ] - }, - { - "text": "Ratify the International Convention for the Protection of All Persons from Enforced Disappearance as well as the remaining human rights treaties to which it is still not party", - "values": [ - "Enforced disappearances", - "International instruments" - ] - }, - { - "text": "Establish a national human rights institution NHRI in full compliance with the Paris Principles", - "values": [ - "National Human Rights Institution" - ] - }, - { - "text": "Implement the recommendations of the COI", - "values": [ - "Justice" - ] - }, - { - "text": "Adhere to the principles of the Convention on the Rights of Persons with Disabilities, with a view to its early ratification", - "values": [ - "Disabilities", - "International instruments" - ] - }, - { - "text": "Continue its efforts to implement its international human rights obligations ", - "values": [ - "International instruments" - ] - }, - { - "text": "That the measures taken to reduce domestic violence be followed up, adapted and extended on solid empirical bases ", - "values": [ - "Rights of the Child", - "Women's rights" - ] - }, - { - "text": "Abolish stoning and flogging from its legislation, as mentioned by the Committee against Torture", - "values": [ - "Torture and other CID treatment", - "Treaty bodies" - ] - }, - { - "text": "Ratify the International Convention on the Protection of the Rights of All Migrants Workers and Members of their Families", - "values": [ - "International instruments", - "Labour", - "Migrants" - ] - }, - { - "text": "Actively consider appointing a Child Ombudsman as per CRC recommendations ", - "values": [ - "National Human Rights Institution", - "Rights of the Child", - "Treaty bodies" - ] - }, - { - "text": "Ensure that measures limiting freedom of expression on the internet is based on clearly defined criteria in accordance with international human rights standard ", - "values": [ - "Freedom of opinion and expression", - "International instruments" - ] - }, - { - "text": "Ratify ICCPR, ICESCR and its Second Optional Protocol, and CAT ", - "values": [ - "CP rights - general", - "Detention", - "ESC rights - general", - "International instruments", - "Torture and other CID treatment" - ] - }, - { - "text": "Strengthen efforts to reform the justice and security sector with a view to fighting corruption and strengthening the independence of the judiciary, including by fostering effective supervision and disciplinary control of the criminal justice institutions and by providing adequate supply of financial and human resources", - "values": [ - "Corruption", - "Justice" - ] - }, - { - "text": "Seek from the international community the technical assistance necessary to ensure capacity-building in various development fields, in particular those creating work opportunities for young people in cities and rural areas ", - "values": [ - "Development", - "Technical assistance and cooperation" - ] - }, - { - "text": "Ratify the American Convention on Human Rights", - "values": [ - "International instruments" - ] - }, - { - "text": "Consider the possibility of ratifying more human rights treaties, such as the Convention on the Rights of Persons with Disabilities and the Convention relating to the Status of Refugees", - "values": [ - "Asylum-seekers - refugees", - "Disabilities", - "International instruments" - ] - }, - { - "text": "Continue to align its national laws, specially the sub-constitutional legislation and customary legal practices, with its international human rights obligations, particularly in the field of gender equality and prevention of violence against women, where special programmes and policies would be highly welcomed", - "values": [ - "International instruments", - "Women's rights" - ] - }, - { - "text": "Take concrete measures towards protecting children from sexual exploitation, including violence against girls with albinism, through law enforcement and appropriate sanctions, and active awareness campaign and partnership with local communities to combat impunity ", - "values": [ - "Human rights education and training", - "Impunity", - "Minorities", - "Rights of the Child", - "Women's rights" - ] - }, - { - "text": "Establish a moratorium on the use of the death penalty, in accordance with General Assembly resolution 62-149, taking into account that the death penalty has not been applied since 1957 ", - "values": [ - "Death penalty" - ] - }, - { - "text": "Ratify the CRPD ", - "values": [ - "Disabilities", - "International instruments" - ] - }, - { - "text": "Ensure that human rights defenders, lawyers and other civil society actors are able to carry out their legitimate activities without fear or threat of reprisal, obstruction or legal and administrative harassment ", - "values": [ - "Civil society", - "Human rights defenders", - "Justice" - ] - }, - { - "text": "Amend the law against homosexuality and the Penal Code, which criminalizes homosexual conduct", - "values": [ - "Sexual Orientation and Gender Identity" - ] - }, - { - "text": "Ensure that basic education is compulsory and step up its efforts to address the issue of high drop-out rates in schools and in promoting the right of girls to education ", - "values": [ - "Right to education", - "Rights of the Child", - "Women's rights" - ] - }, - { - "text": "Ensure that the principle of "best interest of the child" is well integrated in the draft legislation on juvenile justice and that children in conflict with the law are deprived of their liberty only as a means of the last resort", - "values": [ - "Justice", - "Rights of the Child" - ] - }, - { - "text": "Take additional measures in order to reduce the school dropout rate of Arab-Israeli and Bedouin girls and increase the number of these women in higher education institutions", - "values": [ - "Minorities", - "Right to education", - "Women's rights" - ] - }, - { - "text": "Step up measures to mitigate the negative impacts of economic measures, with an emphasis on improving social protection systems and eradicating poverty", - "values": [ - "Poverty" - ] - }, - { - "text": "Ensure that all abuses against ethnic, linguistic or religious minorities are duly investigated and prosecuted, including in the context of the examination of the situation of the residents of Camp Ashraf", - "values": [ - "Minorities" - ] - }, - { - "text": "End the practice of indefinite national service and initiate demobilization for those who have completed the statutory 18 months of service ", - "values": [ - "CP rights - general" - ] - }, - { - "text": "Increase prosecutions and strengthen sentencing of human trafficking offenders, and fully implement the Palermo Protocol to prohibit and penalise all forms of trafficking", - "values": [ - "International instruments", - "Trafficking" - ] - }, - { - "text": "Strengthen efforts to ensure that investigations into allegations of illtreatment of detainees are timely and effective ", - "values": [ - "Detention", - "Torture and other CID treatment" - ] - }, - { - "text": "Continue efforts to promote the rights of women and children, and address the still high level of maternal mortality", - "values": [ - "Right to health", - "Rights of the Child", - "Women's rights" - ] - }, - { - "text": "Share experiences in promoting agricultural productivity and sustainability, local development and good governance with other developing countries", - "values": [ - "Development", - "Justice" - ] - }, - { - "text": "Further promote human rights education and make primary education free and compulsory", - "values": [ - "Human rights education and training", - "Right to education" - ] - }, - { - "text": "Continue to make efforts to protect migrant workers from all forms of exploitation and abuse, in particular those from the DPR Korea, by improving their working condition in accordance with relevant international standards", - "values": [ - "Labour", - "Migrants" - ] - }, - { - "text": "Continue the process towards the ratification of the International Convention on the Protection of the Rights of All Migrant Workers and Members of Their Families and the ILO Domestic Workers Convention, 2011 (No. 189) ", - "values": [ - "International instruments", - "Labour", - "Migrants" - ] - }, - { - "text": "Undertake further measures aimed at protection of women's rights, including prevention of violence ", - "values": [ - "Women's rights" - ] - }, - { - "text": "Give priority to enhancing its recent policies aimed at increasing agricultural production with a view to reinforcing the right to food and the realization of food security, despite the boycott imposed against Cuba", - "values": [ - "Right to food" - ] - }, - { - "text": "Review school curriculums to ensure that they are sensitive to the needs of minorities and promote human rights and pluralism", - "values": [ - "Minorities", - "Right to education" - ] - }, - { - "text": "Extend an open and permanent invitation to the United Nations special procedures mandate holders ", - "values": [ - "Special procedures" - ] - }, - { - "text": "Continue its efforts to provide free primary education for all throughout the country ", - "values": [ - "Right to education" - ] - }, - { - "text": "Criminalize rape in marriage ", - "values": [ - "Rights of the Child", - "Women's rights" - ] - }, - { - "text": "Consider the enactment of the moratorium on the death penalty under its domestic law", - "values": [ - "Death penalty" - ] - }, - { - "text": "Extend a standing invitation to all United Nations special procedures and ensure that reports are submitted to treaty bodies", - "values": [ - "Special procedures", - "Treaty bodies" - ] - }, - { - "text": "Adopt legislation against child exploitation and sexual abuse, along with measures to disseminate information about the legislation to the population", - "values": [ - "Rights of the Child" - ] - }, - { - "text": "Taking into account the high level of violence which persists in the county, step up efforts to fight crime and tackle impunity with a view to ensuring the rights to life, liberty and security of its citizens", - "values": [ - "Impunity", - "Public security" - ] - }, - { - "text": "Ensure the allocation of adequate resources to national human rights protection bodies, such as the Ombudsman", - "values": [ - "National Human Rights Institution" - ] - }, - { - "text": "Put an end to all forms of violence against Aboriginal women and girls ", - "values": [ - "Indigenous peoples", - "Rights of the Child", - "Women's rights" - ] - }, - { - "text": "Adopt specific measures to ensure the protection of the human rights of children of persons in detention or prison and to improve access to education for children with disabilities ", - "values": [ - "Detention", - "Disabilities", - "Right to education", - "Rights of the Child" - ] - }, - { - "text": "Strengthen and advance its efforts for establishing a juvenile justice system and promote alternative measures to deprivation of liberty for juvenile offenders", - "values": [ - "Justice", - "Rights of the Child" - ] - }, - { - "text": "Apply stronger measures to combat discrimination, xenophobia and incitement to hatred", - "values": [ - "Racial discrimination" - ] - }, - { - "text": "Establish an independent mechanism for human rights in accordance with the Paris Principles ", - "values": [ - "National Human Rights Institution" - ] - }, - { - "text": "Eliminate criminal liability for defamation in the media, and to amend the civil code to ensure that any judgement in a civil libel case is reasonable and proportionate and does not result in the closure of the media outlet in question", - "values": [ - "Freedom of the press" - ] - }, - { - "text": "Adopt laws to forbid harmful traditional practices", - "values": [ - "Torture and other CID treatment" - ] - }, - { - "text": "Adopt policies and legislation aimed at promoting women's rights and combating gender-based discrimination, particularly domestic violence ", - "values": [ - "Women's rights" - ] - }, - { - "text": "Take necessary steps to allow individual complaints mechanisms under United Nations human rights treaties such as the Convention against Torture and Other Cruel, Inhuman or Degrading Treatment or Punishment, the International Covenant on Civil and Political Rights and the Convention on the Rights of the Child", - "values": [ - "CP rights - general", - "International instruments", - "Rights of the Child", - "Torture and other CID treatment" - ] - }, - { - "text": "Fully respect the economic and social rights of migrant workers and their families and ensure their safety and security ", - "values": [ - "Labour", - "Migrants" - ] - }, - { - "text": "Accelerate the adoption of the draft Code on the protection of the child and the draft Code on persons and family", - "values": [ - "Rights of the Child" - ] - }, - { - "text": "Make sure the implementation of the new legislation (the Immigration Amendment Act) will not create unfair discrimination against genuine asylum seekers ", - "values": [ - "Asylum-seekers - refugees", - "Migrants", - "Racial discrimination" - ] - }, - { - "text": "Set up a shelter for victims of sexual abuse and violence", - "values": [ - "Women's rights" - ] - }, - { - "text": "Undertake more effective measures to address the problems of impunity and violence against women and girls, including through the strengthening of law enforcement and the judicial system and intensive media and education programmes aimed at increasing public awareness and sensitivities on the rights of women", - "values": [ - "Human rights education and training", - "Impunity", - "Justice", - "Rights of the Child", - "Women's rights" - ] - }, - { - "text": "Ensure that measures to control irregular migration do not operate to impede access to primary health care, education and judicial authorities", - "values": [ - "Migrants" - ] - }, - { - "text": "Provide for a child-sensitive, accessible complaint mechanism, ensuring a proper redress, rehabilitation and social reintegration and for the child victim of abuse ", - "values": [ - "Rights of the Child" - ] - }, - { - "text": "Implement a policy of maintaining and building prisons, and investing in high quality training of prison staff, increasing their number ", - "values": [ - "Detention" - ] - }, - { - "text": "To fight against child mortality, and thus implement Millennium Development Goal number four, in particular by improving children's living conditions and their access to adequate food ", - "values": [ - "Right to food", - "Rights of the Child" - ] - }, - { - "text": "Continue its initiative on dialogue among cultures, in particular intercultural dialogue on human rights", - "values": [ - "Freedom of religion and belief", - "Minorities" - ] - }, - { - "text": "Strengthen policy that would protect, promote and facilitate the implementation of the right to food, especially for the population who live below poverty line ", - "values": [ - "Poverty", - "Right to food" - ] - }, - { - "text": "Continue its efforts to strengthen the position of women and in particular ensure that perpetrators of honour crimes do not benefit from a reduction of penalty, and take into consideration the recommendations of CEDAW and furthermore also strives to provide victims of honour crimes with the necessary protective shelters", - "values": [ - "Technical assistance and cooperation", - "Treaty bodies", - "Women's rights" - ] - }, - { - "text": "Continue efforts to combat discrimination against women, particularly migrant women", - "values": [ - "Migrants", - "Women's rights" - ] - }, - { - "text": "Lesotho reiterated its commitment to accelerate sustainable economic growth, continue to work on the establishment of the National Human Rights Commission, improve access to justice for all, intensify and continue efforts in the fight against corruption and strive to achieve the objectives of Vision 2020 and the Millennium Development Goals.", - "values": [ - "Corruption", - "Development", - "National Human Rights Institution" - ] - }, - { - "text": "Amend the law on associations to remove undue restrictions on civil society organizations", - "values": [ - "Civil society" - ] - }, - { - "text": "Consider requesting technical assistance from the international community, including from OHCHR, in particular in terms of capacity-building, in order to allow it to overcome the challenges linked to delays in the submission of its reports to human rights mechanisms ", - "values": [ - "Technical assistance and cooperation", - "Treaty bodies", - "UPR process" - ] - }, - { - "text": "Take appropriate measures to further relax restrictions on the freedom of the media", - "values": [ - "Freedom of the press" - ] - }, - { - "text": "Continue to empower women by enhancing their status and increasing their participation in decision-making processes", - "values": [ - "Women's rights" - ] - }, - { - "text": "Strengthen the framework for protecting children's rights, particularly through measures to prevent child abuse, exploitation and violence against children, and consider revising the juvenile justice system to raise the age for criminal responsibility according to the Convention on the Rights of the Child", - "values": [ - "International instruments", - "Justice", - "Rights of the Child" - ] - }, - { - "text": "Establish without further delay the Truth and Reconciliation Commission and Disappearances Commission and ensure their independence from political interference ", - "values": [ - "Justice" - ] - }, - { - "text": "Expand the protection scope for migrants and their families and continue efforts to enhance the safety and welfare of foreign workers ", - "values": [ - "Labour", - "Migrants" - ] - }, - { - "text": "Ratify ILO Convention 169", - "values": [ - "Indigenous peoples", - "International instruments" - ] - }, - { - "text": "Further promote freedom and pluralism of the media as key elements for enabling the exercise of freedom of expression ", - "values": [ - "Freedom of opinion and expression", - "Freedom of the press" - ] - }, - { - "text": "Encourage highly placed State officials and politicians to take a clear stance against racist and xenophobic political discourse", - "values": [ - "Racial discrimination" - ] - }, - { - "text": "Cooperate with special procedures mandate-holders by accepting the visit request made by the Special Rapporteur on the sale of children, child prostitution and child pornography ", - "values": [ - "Rights of the Child", - "Special procedures", - "Trafficking" - ] - }, - { - "text": "Raise the age for all enrolments into armed forces to the age of at least 18 years in line with the CRC recommendation ", - "values": [ - "Rights of the Child", - "Treaty bodies" - ] - }, - { - "text": "Continue to develop the country's economic potential and ensure a dignified standard of living for its citizens, and to adopt further measures necessary to increase the level of access to education and health", - "values": [ - "Development", - "Right to education", - "Right to health" - ] - }, - { - "text": "Conduct an in-depth independent investigation into the disappearances of public figures that occurred in 1999 and 2000 with a view to bringing the authors of those crimes to justice", - "values": [ - "Enforced disappearances" - ] - }, - { - "text": "Ensure the primacy of laws protecting the equality of women over customary practices that are contrary to such principles. ", - "values": [ - "Women's rights" - ] - }, - { - "text": "Sign and ratify the International Convention for the Protection of All Persons from Enforced Disappearance CED", - "values": [ - "Enforced disappearances", - "International instruments" - ] - }, - { - "text": "Respect the universally recognized right to nationality set forth in the Universal Declaration of Human Rights, and stop revoking citizenships, while reinstating citizenships that have already been revoked", - "values": [ - "Other" - ] - }, - { - "text": "Expand efforts to ensure universal access to maternal and child health-care services and facilities, in particular in rural and remote areas ", - "values": [ - "Right to health", - "Rights of the Child", - "Women's rights" - ] - }, - { - "text": "Introduce further measures to raise public awareness about violence against women and children, and strengthen its activities and programs to focus on sexual violence and human trafficking for the purpose of sexual exploitation ", - "values": [ - "Human rights education and training", - "Rights of the Child", - "Trafficking", - "Women's rights" - ] - }, - { - "text": "Ensure equal access to education for girls and children living in the rural areas, including by adopting concrete measures to eliminate early marriages, FGM and other gender discriminative practices which hinder the education of girls", - "values": [ - "Right to education", - "Rights of the Child", - "Torture and other CID treatment", - "Women's rights" - ] - }, - { - "text": "Give the International Labour Organization together with the United Nations access to Uzbekistan with the aim of monitoring the development on the use of child labour and assisting with advice ", - "values": [ - "Labour", - "Rights of the Child" - ] - }, - { - "text": "Make primary education compulsory, in conformity with article 28 of the Convention on the Rights of the Child ", - "values": [ - "International instruments", - "Right to education", - "Rights of the Child" - ] - }, - { - "text": "Revoke the current sponsorship system Kafala and replace it with regulations in accordance with international standards ", - "values": [ - "Labour" - ] - }, - { - "text": "Extend an invitation to the Special Rapporteur on violence against women, its causes and consequences ", - "values": [ - "Special procedures", - "Women's rights" - ] - }, - { - "text": "Create an independent administrative body to regulate broadcast media", - "values": [ - "Freedom of the press" - ] - }, - { - "text": "Enact pending anti-torture legislation ", - "values": [ - "Torture and other CID treatment" - ] - }, - { - "text": "Continue taking measures to uplift education, particularly in rural areas, and increase the enrolment in schools in these regions", - "values": [ - "Right to education" - ] - }, - { - "text": "Take effective measures to implement the provisions in the National Human Rights Action Plan concerning the protection of vulnerable groups, especially concerning the fight against sexual violence against women and girls", - "values": [ - "Rights of the Child", - "Women's rights" - ] - }, - { - "text": "Improve enforcement and coordination of national legislation and policies on the trafficking of persons, especially women and children, and to raise the awareness of this issue amongst the public", - "values": [ - "Human rights education and training", - "Rights of the Child", - "Trafficking", - "Women's rights" - ] - }, - { - "text": "Double its effort in fighting harmful traditional practices ", - "values": [ - "Torture and other CID treatment" - ] - }, - { - "text": "Further its endeavours with regard to the smooth and productive activities of the National Anti-Corruption Commission and the Standing Committee on Trafficking in Persons", - "values": [ - "Corruption", - "Trafficking" - ] - }, - { - "text": "Incorporate provisions from ratified instruments into domestic law and seek the international community to provide the necessary means to tackle difficulties that Tanzania is facing in the area of human rights", - "values": [ - "International instruments", - "Technical assistance and cooperation" - ] - }, - { - "text": "Explicitly prohibit corporal punishment in the family and implement existing prohibitions", - "values": [ - "Rights of the Child", - "Torture and other CID treatment" - ] - }, - { - "text": "Continue its national policy in promoting equal opportunity with respect to employment", - "values": [ - "Development" - ] - }, - { - "text": "Continue its efforts in strengthening the education system and the legal framework to protect the rights of children in accordance with its obligations under the Convention on the Rights of the Child ", - "values": [ - "International instruments", - "Right to education", - "Rights of the Child" - ] - }, - { - "text": "Ensure adequate funding for education to increase the number of schools and teachers and ensure equal access of girls to all levels of education ", - "values": [ - "Right to education", - "Rights of the Child", - "Women's rights" - ] - }, - { - "text": "Strengthen the fight against racism, xenophobia and hate speech", - "values": [ - "Racial discrimination" - ] - }, - { - "text": "Speed up the adoption on anti terrorism law while considering lifting the state of emergency once the law has been passed", - "values": [ - "Counter-terrorism" - ] - }, - { - "text": "Continue with the policies of inclusion of the Roma population", - "values": [ - "Minorities" - ] - }, - { - "text": "Strengthen the protection of people with albinism from violence, abduction, discrimination, stigmatization and related intolerance", - "values": [ - "Minorities" - ] - }, - { - "text": "Cooperate with United Nations human rights mechanisms, in particular COIs of the Human Rights Council", - "values": [ - "Special procedures", - "Treaty bodies", - "UPR process" - ] - }, - { - "text": "Ratify the Optional Protocol to the International Covenant on Economic, Social and Cultural Rights and the Optional Protocol to the Convention on the Rights of the Child on a communications procedure", - "values": [ - "ESC rights - general", - "International instruments", - "Rights of the Child" - ] - }, - { - "text": "On the basis of the UK's commitment to the rule of law, comply with the rulings of the European Court of Human Rights on the cases concerning the United Kingdom, as well as promote the participation and cooperation of the European Union and its Member States with the Court ", - "values": [ - "Other" - ] - }, - { - "text": "Take necessary measures to guarantee the rights to peaceful assembly and association in conformity with the law and the international standards ", - "values": [ - "Freedom of association and peaceful assembly" - ] - }, - { - "text": "Continue its ongoing efforts to improve prison conditions for detainees ", - "values": [ - "Detention" - ] - }, - { - "text": "Enforce and amend, when necessary, the relevant legislation on trafficking in women and girls, and adopt appropriate and efficient policies and programmes to address this situation ", - "values": [ - "Rights of the Child", - "Trafficking", - "Women's rights" - ] - }, - { - "text": "Continue to take measures in order to guarantee universal access to safe drinking water and sanitation", - "values": [ - "Right to water and sanitation" - ] - }, - { - "text": "Develop a national plan against racism and discrimination, in accordance with its international obligations", - "values": [ - "Racial discrimination" - ] - }, - { - "text": "Take measures to combat forced disappearances, collective arrests without a warrant and arbitrary detention without presentation of charges ", - "values": [ - "Detention", - "Enforced disappearances" - ] - }, - { - "text": "Adopt and implement necessary legislative and administrative measures to promote the effective participation of women in the public and political life of the country", - "values": [ - "Women's rights" - ] - }, - { - "text": "End the involvement of military personnel in civilian security work, and train police officers to carry out their responsibility to protect the population efficiently and with integrity", - "values": [ - "Public security" - ] - }, - { - "text": "Put an end to racial and discriminatory measures against the Palestinians in the Occupied State of Palestine, including in East Jerusalem, especially by continuing to building settlements", - "values": [ - "Racial discrimination" - ] - }, - { - "text": "Continue to work for the elimination of discrimination against women, particularly in rural areas", - "values": [ - "Women's rights" - ] - }, - { - "text": "Ensure that amendments to the immigration law are in accordance with existing obligations under the International Covenant for Civil and Political Rights", - "values": [ - "International instruments", - "Migrants" - ] - }, - { - "text": "Consider the possibility of acceding to the International Convention on the Rights of Migrant Workers and Members of Their Families", - "values": [ - "International instruments", - "Labour", - "Migrants" - ] - }, - { - "text": "Consider undertaking studies on children involved in the commercial sex industry, factors luring or compelling them to engage in such crimes, and to take appropriate action.", - "values": [ - "Rights of the Child" - ] - }, - { - "text": "Implement the recommendations made by the Representative of the Secretary-General on the human rights of internally displaced persons following his visit to Georgia on the eviction of IDPs and their relocation ", - "values": [ - "Internally displaced persons" - ] - }, - { - "text": "Increase the number of institutions providing professional services for the upbringing and protection of orphans, protection of homeless children and the rehabilitation of children with disabilities", - "values": [ - "Rights of the Child" - ] - }, - { - "text": "Step up efforts for the implementation of an appropriate legal framework for the protection of women and girls from all forms of gender-based violence", - "values": [ - "Rights of the Child", - "Women's rights" - ] - }, - { - "text": "Ensure that legislation is drafted and enacted to prohibit all corporal punishment of children, including in the home", - "values": [ - "Rights of the Child", - "Torture and other CID treatment" - ] - }, - { - "text": "Strengthen protection of the rights of religious minorities, in particular the conditions for the exercise of freedom of worship, and put an end to all impunity for violations of these rights", - "values": [ - "Freedom of religion and belief", - "Impunity", - "Minorities" - ] - }, - { - "text": "Take steps to strengthen policies aimed at addressing gender-based violence, domestic violence, sexual harassment, rape and child sexual abuse", - "values": [ - "Rights of the Child", - "Women's rights" - ] - }, - { - "text": "Continue the process to ensure the compliance of the National Commission on Human Rights with the Paris Principles", - "values": [ - "National Human Rights Institution" - ] - }, - { - "text": "Continue to take measures to protect the rights of children, women and refugees", - "values": [ - "Asylum-seekers - refugees", - "Rights of the Child", - "Women's rights" - ] - }, - { - "text": "Continue making efforts to realize the right to education of children, particularly those from remote rural areas", - "values": [ - "Right to education", - "Rights of the Child" - ] - }, - { - "text": "Restoring security and social cohesion by strengthening the capacity of actors in the criminal justice system", - "values": [ - "Justice" - ] - }, - { - "text": "Continue to provide assistance to developing countries as a means to improve the enjoyment of human rights in other parts of the world.", - "values": [ - "Development" - ] - }, - { - "text": "Respect all obligations under the Convention against Torture and other Cruel, Inhuman or Degrading treatment or punishment, trying to avoid, by all means, incidents of torture in police custody, and, on the presumption that these may have taken place, that these crimes remain unpunished", - "values": [ - "Detention", - "Human rights violations by state agents", - "International instruments", - "Torture and other CID treatment" - ] - }, - { - "text": "Take further targeted measures to promote inclusive education for all", - "values": [ - "Right to education" - ] - }, - { - "text": "Establish guidelines for training on human rights in primary and secondary education, with homogenous curricula in all the educational centres ", - "values": [ - "Human rights education and training" - ] - }, - { - "text": "Ratify the Optional Protocol to the Convention on Torture and Other Cruel, Inhumane or Degrading Treatment or Punishment", - "values": [ - "Detention", - "International instruments", - "Torture and other CID treatment" - ] - }, - { - "text": "Remove all administrative and legislative provisions that restrict the rights the Human Rights Defenders and ensure that civil society organizations can operate freely and without discrimination or undue restriction", - "values": [ - "Civil society", - "Human rights defenders" - ] - }, - { - "text": "Continue its efforts in tackling HIV/AIDS", - "values": [ - "HIV - Aids" - ] - }, - { - "text": "Implement the "National Health Policy" as a way of promoting the right to health", - "values": [ - "Right to health" - ] - }, - { - "text": "Sustain and scale up the ongoing efforts to attain the Sustainable Development Goals, such as access to drinking water, food security, access to health care and education", - "values": [ - "Development", - "Right to education", - "Right to food", - "Right to health", - "Right to water and sanitation" - ] - }, - { - "text": "Combat human trafficking, "death squads", violence and related sexual exploitation ", - "values": [ - "Rights of the Child", - "Trafficking", - "Women's rights" - ] - }, - { - "text": "Continue its efforts to implement the strategic plan to combat trafficking in persons", - "values": [ - "Trafficking" - ] - }, - { - "text": "Consider accession to the Agreement on the Privileges and Immunities of the International Criminal Court", - "values": [ - "International instruments", - "Justice" - ] - }, - { - "text": "Enhance efforts to improve women's rights and to combat human trafficking, sexual violence, domestic violence and the exploitation of women and children", - "values": [ - "Rights of the Child", - "Trafficking", - "Women's rights" - ] - }, - { - "text": "Make an immediate commitment to holistic and wide-ranging reform of the security agencies and the criminal justice sector, underpinned by wide consultation and transparency ", - "values": [ - "Justice", - "Public security" - ] - }, - { - "text": "Ratify the 1960 Convention against Discrimination in Education ", - "values": [ - "International instruments", - "Right to education" - ] - }, - { - "text": "Adopt a national action plan on human rights", - "values": [ - "General" - ] - }, - { - "text": "Promulgate, as soon as possible, the new integral law on the sale of children, sexual exploitation and trafficking, and to take concrete and immediate actions to strengthen the National Council against Human Trafficking", - "values": [ - "Rights of the Child", - "Trafficking" - ] - }, - { - "text": "Consider accession to the International Convention on the Protection of the Rights of All Migrant Workers and Members of Their Families and ILO Convention No. 189", - "values": [ - "International instruments", - "Labour", - "Migrants" - ] - }, - { - "text": "Speed up the review process of its Constitution and include special considerations regarding equality between men and women", - "values": [ - "Women's rights" - ] - }, - { - "text": "Give particular attention to all measures to improve the human rights situation in Western Sahara, in particular develop and implement independent and credible measures to ensure full respect for human rights and guaranteeing such basic rights as freedom of association and expression ", - "values": [ - "Freedom of association and peaceful assembly", - "Freedom of opinion and expression" - ] - }, - { - "text": "Remove undue restrictions and infringements to the enjoyment of freedoms of expression, association and peaceful assembly", - "values": [ - "Freedom of association and peaceful assembly", - "Freedom of opinion and expression" - ] - }, - { - "text": "Maintain, and if possible increase, the levels of investment in education for all", - "values": [ - "Right to education" - ] - }, - { - "text": "Guarantee the freedom of all individuals to practice their religion or belief", - "values": [ - "Freedom of religion and belief" - ] - }, - { - "text": "Take specific measures to counter serious violations of the human rights of women, such as gender-based violence, inadequate after-care for victims of such crimes, forced marriage, and female genital mutilation ", - "values": [ - "Rights of the Child", - "Torture and other CID treatment", - "Women's rights" - ] - }, - { - "text": "Ensure that the independence of the judiciary is fully guaranteed in its legal framework ", - "values": [ - "Justice" - ] - }, - { - "text": "Reinforce measures aiming at the protection of the rights of migrants and asylum seekers and the improvement of their conditions", - "values": [ - "Asylum-seekers - refugees", - "Migrants" - ] - }, - { - "text": "Continue positive steps for the promotion and protection of human rights", - "values": [ - "General" - ] - }, - { - "text": "Consider ratifying the International Convention on the Protection of the Rights of All Migrant Workers and Members of Their Families (ICRMW) ", - "values": [ - "International instruments", - "Labour", - "Migrants" - ] - }, - { - "text": "Redouble its efforts in the areas of wealth distribution and poverty eradication by allocating adequate human and financial resources to the vulnerable segments of society", - "values": [ - "Poverty" - ] - }, - { - "text": "Enact public awareness campaigns and government training, as well as increased enforcement of anti-discrimination and hate crime laws, in order to decrease anti-Semitism and discrimination against members of ethnic minority groups ", - "values": [ - "Freedom of religion and belief", - "Human rights education and training", - "Minorities", - "Racial discrimination" - ] - }, - { - "text": "Put in place new mechanisms that allow victims of hate crimes to be informed quickly and accurately of the changes in their cases, to be heard in the context of legal proceedings and to receive appropriate legal and psychological assistance", - "values": [ - "Racial discrimination" - ] - }, - { - "text": "Fully guarantee freedom of expression and refrain from arbitrary arrest of journalists", - "values": [ - "Detention", - "Freedom of opinion and expression", - "Freedom of the press" - ] - }, - { - "text": "Continue its ongoing efforts in tackling the issue of trafficking in persons including prosecution of the perpetrators ", - "values": [ - "Trafficking" - ] - }, - { - "text": "Continue its efforts on the ratification of other human rights instruments and relevant protocols", - "values": [ - "International instruments" - ] - }, - { - "text": "Accede to the Convention on the Non-Applicability of Statutory Limitations to War Crimes and Crimes against Humanity without making any reservations, and incorporate it into its national legislation", - "values": [ - "International instruments", - "Justice" - ] - }, - { - "text": "Consider the ratification of the Convention on Migrant Workers and Members of Their Families", - "values": [ - "International instruments", - "Labour", - "Migrants" - ] - }, - { - "text": "Take immediate measures to introduce a formal moratorium on executions and take concrete steps towards the total abolition of the death penalty", - "values": [ - "Death penalty" - ] - }, - { - "text": "Establish a control mechanism for the police authorities with regard to signs of possible torture and ill-treatment committed by individual members", - "values": [ - "Torture and other CID treatment" - ] - }, - { - "text": "Disseminate the results of the UPR and hold periodical comprehensive consultations, including with civil society sectors ", - "values": [ - "Civil society", - "UPR process" - ] - }, - { - "text": "Continue the efforts to ensure full respect for freedom of expression and of the press, in accordance with Albania's international obligations ", - "values": [ - "Freedom of the press" - ] - }, - { - "text": "Ensure that the crime of torture is punished in accordance with the comprehensive definition as contained in Article 1 of the International Convention Against Torture", - "values": [ - "International instruments", - "Torture and other CID treatment" - ] - }, - { - "text": "Proceed to the ratification of the Second Optional Protocol to the International Covenant on Civil and Political Rights aiming at the abolition of the death penalty", - "values": [ - "Death penalty", - "International instruments" - ] - }, - { - "text": "Cease bombardments, the use of chemical weapons, attacks against civilians and immediately lift all sieges", - "values": [ - "International humanitarian law" - ] - }, - { - "text": "Denounce more forcefully all verbal and physical attacks on human rights defenders ", - "values": [ - "Human rights defenders" - ] - }, - { - "text": "Adopt legislation prohibiting the dissemination of ideas and expressions of racial hatred and violence against any group of persons", - "values": [ - "Racial discrimination" - ] - }, - { - "text": "Continue taking steps in order to reinforce women\u2019s representation in leadership and decision-making positions", - "values": [ - "Women's rights" - ] - }, - { - "text": "Accede to ICCPR and ICESCR in the near future and ensure their effective implementation ", - "values": [ - "CP rights - general", - "ESC rights - general", - "International instruments" - ] - }, - { - "text": "Consider adopting a standing invitation to human rights special procedures.", - "values": [ - "Special procedures" - ] - }, - { - "text": "Strengthen protection for victims of human trafficking by providing temporary residency in order to promote cooperation with law enforcement and establish legal alternatives to their deportation to countries where they may face retribution or hardship", - "values": [ - "Trafficking" - ] - }, - { - "text": "Continue to take stronger efforts and measures to improve women's status and promote gender equality", - "values": [ - "Women's rights" - ] - }, - { - "text": "Finalize and submit the treaty body periodic reports as a matter of priority ", - "values": [ - "Treaty bodies" - ] - }, - { - "text": "Call upon the international community to pay attention to the existing difficulties at the present stage of its development and provide assistance to it in accordance with its national priorities, in the realms of human rights education and training to relevant bodies of the public sector as well as national capacity-building with respect to preparing periodic reports under the international treaties that Eritrea is party to ", - "values": [ - "Human rights education and training", - "Technical assistance and cooperation", - "Treaty bodies" - ] - }, - { - "text": "Continue to protect the rights of its children, by implementing successful programs that ensure 100% access to birth registration, as well as strengthening the legal framework that guarantees the universal right to education and promote emphasis on care, access and opportunities ", - "values": [ - "Right to education", - "Rights of the Child", - "Statelessness and the right to nationality" - ] - }, - { - "text": "Ratify CAT, as well as its Optional Protocol ", - "values": [ - "Detention", - "International instruments", - "Torture and other CID treatment" - ] - }, - { - "text": "Ensure that all relevant laws, codified and customary, are brought into compliance with the Convention on the Rights of the Child and ensure strict application of the Children's Law", - "values": [ - "International instruments", - "Rights of the Child" - ] - }, - { - "text": "Ratify the Kampala Amendments to the Rome Statute of the International Criminal Court on the crime of aggression ", - "values": [ - "International instruments", - "Justice" - ] - }, - { - "text": "Continue to work to prevent and combat incidents of racist and anti- semitic and extremist expressions and actions which have occurred in Switzerland in recent times", - "values": [ - "Racial discrimination" - ] - }, - { - "text": "Take steps to improve the prison conditions in order to meet all international standards", - "values": [ - "Detention" - ] - }, - { - "text": "Specifically prohibit corporal punishment in institutions ", - "values": [ - "Torture and other CID treatment" - ] - }, - { - "text": "Consider the legal abolition of the death penalty", - "values": [ - "Death penalty" - ] - }, - { - "text": "Step up efforts to fight unlawful treatment of and violence against children, including sexual abuse", - "values": [ - "Rights of the Child" - ] - }, - { - "text": "Continue to strengthen social policies for the eradication of poverty, in order to increase the quality of life of its people, especially the most vulnerable", - "values": [ - "Poverty" - ] - }, - { - "text": "Continue to carry out comprehensive reviews and studies on its existing legislation and level of preparedness, moving towards accessions of international human rights instruments as it deems appropriate, in the context of its institutional and legal framework, resources, and national priorities", - "values": [ - "International instruments" - ] - }, - { - "text": "Continue to provide adequate training, particularly in human rights, to the national police and defence force ", - "values": [ - "Human rights education and training" - ] - }, - { - "text": "Ensure birth registrations while strengthening the implementation of mobile registration units of civil status", - "values": [ - "Rights of the Child", - "Statelessness and the right to nationality" - ] - }, - { - "text": "Extend invitations in a timely manner to the Special Procedures thematic mandate holders who have requested to visit the country ", - "values": [ - "Special procedures" - ] - }, - { - "text": "Withdraw reservations to the Convention on the Elimination of all forms of Discrimination against Women and ratify its Optional Protocol ", - "values": [ - "International instruments", - "Women's rights" - ] - }, - { - "text": "Ensure the timely and unimpeded passage of humanitarian relief and guarantee the safety of humanitarian workers in the conflict zones", - "values": [ - "International humanitarian law" - ] - }, - { - "text": "Establish policies and initiatives to address discrimination based on sexual orientation and gender identity", - "values": [ - "Sexual Orientation and Gender Identity" - ] - }, - { - "text": "Adopt the draft revised criminal code, which defines and criminalizes torture ", - "values": [ - "Torture and other CID treatment" - ] - }, - { - "text": "Amend the Law on Equality in order to widen the list of possible discrimination criteria", - "values": [ - "Other" - ] - }, - { - "text": "Continue to strengthen human rights institutions to ensure the continued promotion and protection of human rights throughout society ", - "values": [ - "General" - ] - }, - { - "text": "Continue the process for the ratification of the Second Optional Protocol to the International Covenant on Civil and Political Rights, aiming at the abolition of the death penalty, there being a draft law which was formulated in 2011 ", - "values": [ - "Death penalty", - "International instruments" - ] - }, - { - "text": "Provide special training to police officers and prosecutors dealing with cases of sexual and domestic violence against women", - "values": [ - "Human rights education and training", - "Women's rights" - ] - }, - { - "text": "Continue to strengthen efforts to protect the rights of foreign workers ", - "values": [ - "Migrants" - ] - }, - { - "text": "Continue the legal reforms and improve public freedoms and human rights ", - "values": [ - "Justice" - ] - }, - { - "text": "Step up its efforts for the mobilizations of resources and necessary international assistance for a successful implementation of the Human Rights National Programme and related activities ", - "values": [ - "Technical assistance and cooperation" - ] - }, - { - "text": "Ratify the Second Optional Protocol to the International Covenant on Civil and Political Rights, aiming at the abolition of the death penalty, as well as the Optional Protocol to the Convention on the Elimination of All Forms of Discrimination against Women", - "values": [ - "Death penalty", - "International instruments", - "Women's rights" - ] - }, - { - "text": "Harmonize civil, religious and customary legislation with articles 15 and 16 of the Convention on the elimination of all forms of discrimination against women (CEDAW), specifically through revising and amending the current version of the bill on Marriage and Divorce, ensuring that it does not discriminate against women ", - "values": [ - "International instruments", - "Women's rights" - ] - }, - { - "text": "Revitalize endeavours intended for eradication of the wage gap between men and women that has reportedly stalled ", - "values": [ - "Women's rights" - ] - }, - { - "text": "Consider reducing the administrative processes for the registration of political parties", - "values": [ - "Freedom of association and peaceful assembly" - ] - }, - { - "text": "Revise laws and policies regarding public order policing and the use of force, including lethal force by law enforcement officials", - "values": [ - "Human rights violations by state agents" - ] - }, - { - "text": "Take further steps to advance women in leadership positions in politics and the economy and create favourable conditions for their participation in the electoral process", - "values": [ - "Elections", - "Women's rights" - ] - }, - { - "text": "Issue a permanent open invitation to the Special proceduress ", - "values": [ - "Special procedures" - ] - }, - { - "text": "Continue efforts to amend the Human Rights Commission Act to be fully in line with the Paris Principles", - "values": [ - "National Human Rights Institution" - ] - }, - { - "text": "Respond positively to pending requests by several United Nations Special Rapporteurs to visit", - "values": [ - "Special procedures" - ] - }, - { - "text": "Continue implementing policies that will enhance and develop women's capacity as key partners in the development process", - "values": [ - "Women's rights" - ] - }, - { - "text": "Undertake the corresponding measures to improve the birth registry system as recommended by the Committee on the Rights of the Child ", - "values": [ - "Rights of the Child", - "Treaty bodies" - ] - }, - { - "text": "Follow up on the recommendations set out in the March 2010 report of the OSCE Office for Democratic Institutions and Human Rights regarding shortcomings in Armenia's justice system ", - "values": [ - "Justice" - ] - }, - { - "text": "Strengthen State mechanisms related to the care for the most vulnerable groups in need of protection, such as women, children and persons with disabilities", - "values": [ - "Disabilities", - "Rights of the Child", - "Women's rights" - ] - }, - { - "text": "Albania extended a standing invitation to all special procedure mandate holders and consequently, two Special Rapporteurs visited the country. The Government pledged that it would continue working with the special procedure mandate holders in order to implement their recommendations. ", - "values": [ - "Special procedures" - ] - }, - { - "text": "Establish a single independent human rights institution with a broad mandate, in line with the Paris Principles or another specialised body, to consider, issue opinions, and make recommendations on complaints submitted by women alleging violations of human rights ", - "values": [ - "National Human Rights Institution", - "Women's rights" - ] - }, - { - "text": "Strengthen the independence of the judiciary further", - "values": [ - "Justice" - ] - }, - { - "text": "Pursue national efforts to reduce the rate of maternal and infant mortality", - "values": [ - "Right to health", - "Rights of the Child", - "Women's rights" - ] - }, - { - "text": "Take comprehensive measures to address the use of excessive force by the police and ensure the investigation and the prosecution of all such acts", - "values": [ - "Human rights violations by state agents" - ] - }, - { - "text": "Continue their efforts to address the concerns especially in the fields of combating racism, discrimination, xenophobia, Islamophobia and the protection of the members of more fragile groups, such as migrants", - "values": [ - "Freedom of religion and belief", - "Migrants", - "Racial discrimination" - ] - }, - { - "text": "Consider a moratorium on the use of death penalty, and its eventual abolition", - "values": [ - "Death penalty" - ] - }, - { - "text": "Sign and ratify CPRD", - "values": [ - "Disabilities", - "International instruments" - ] - }, - { - "text": "Take appropriate legislative measures to ensure that no person can be subject to criminal sanctions for same-sex activity between consenting adults.", - "values": [ - "Sexual Orientation and Gender Identity" - ] - }, - { - "text": "Take all measures to protect women against all forms of sexual violence and bring to an end the related impunity ", - "values": [ - "Impunity", - "Women's rights" - ] - }, - { - "text": "Take all appropriate legal and administrative measures to bring justice for the people, in particular for vulnerable groups living in remote and rural areas ", - "values": [ - "Justice" - ] - }, - { - "text": "Continue its efforts to combat impunity for serious human rights violations ", - "values": [ - "Impunity" - ] - }, - { - "text": "Fight impunity by thorough and impartial investigations on all the allegations of human rights violations, including when these allegations involve members of security forces or settlers", - "values": [ - "Human rights violations by state agents", - "Impunity" - ] - }, - { - "text": "Enhance capacity of health centres and health service providers, with a view to improving access to quality health services of people, particularly in the rural areas", - "values": [ - "Right to health" - ] - }, - { - "text": "Take concrete actions to implement the Public Policy and National Action Plan on Human Rights and to ensure that all forms of discrimination against Afro-Honduran peoples and other minority groups is eliminated", - "values": [ - "Minorities", - "Racial discrimination" - ] - }, - { - "text": "Consider ways to ensure the meaningful involvement of the Roma community in the implementation of the strategy and to focus more on efforts to change negative attitudes in Swedish society towards the Roma", - "values": [ - "Minorities" - ] - }, - { - "text": "Take effective steps to address educational needs of disabled children", - "values": [ - "Disabilities", - "Right to education", - "Rights of the Child" - ] - }, - { - "text": "Ensure the protection of human rights defenders", - "values": [ - "Human rights defenders" - ] - }, - { - "text": "Effectively address through legislation and policies the sexual exploitation of children, including child pornography ", - "values": [ - "Rights of the Child" - ] - }, - { - "text": "Provide material and psychological support to victims of sexual violence and undertake extensive educational campaigns to inform women of their rights", - "values": [ - "Women's rights" - ] - }, - { - "text": "Strengthen police training on how to investigate sexual and gender-based violence, including against children, and ensure that perpetrators of these acts are appropriately prosecuted", - "values": [ - "Human rights education and training", - "Rights of the Child", - "Women's rights" - ] - }, - { - "text": "Pursue cooperation with human rights mechanisms", - "values": [ - "General" - ] - }, - { - "text": "Fully and transparently investigate alleged grave breaches of international humanitarian law during the conflict", - "values": [ - "International humanitarian law" - ] - }, - { - "text": "Establish effective mechanisms to address the problems faced by street children ", - "values": [ - "Rights of the Child" - ] - }, - { - "text": "Take measures to ensure that the media work freely and prevent any intimidation of journalists", - "values": [ - "Freedom of the press" - ] - }, - { - "text": "Take steps to meet international standards for prison and detention centre conditions ", - "values": [ - "Detention" - ] - }, - { - "text": "Strengthen the response against the HIV/AIDS pandemic by combating discriminatory attitudes and stigmatization of persons living with the virus. The guides on HIV and human rights are a valuable tool for this goal", - "values": [ - "HIV - Aids" - ] - }, - { - "text": "Seek technical and financial assistance from all friendly States and relevant international agencies to assist its efforts in fighting against drug trafficking ", - "values": [ - "Public security", - "Technical assistance and cooperation" - ] - }, - { - "text": "Enforce proper amendments to the Criminal Code in order to put it into line with the provisions enshrined, inter alia, in the Constitution of Chad and to continue reinforcing the legal framework to protect women's rights, with the aim of effectively addressing any act of violence against women, including female genital mutilations and early and forced marriages, a practice which is sadly still too much widespread in the country", - "values": [ - "Rights of the Child", - "Torture and other CID treatment", - "Women's rights" - ] - }, - { - "text": "(1) To offer better care to victims. (2) To train and graduate 1,000 community outreach workers to deal with mines every year. (3) To train 10 new 40-member humanitarian demining teams. (4) To set up an emergency response team. (5) To adapt policy to new challenges.(6) To destroy the remaining 26 minefields by 1 March 2011.", - "values": [ - "International humanitarian law" - ] - }, - { - "text": "Take the steps necessary to ensure that its upcoming presidential elections are free, fair and in line with international standards, in full respect of article 25 of the International Covenant on Civil and Political Rights, including by allowing opposition parties to freely participate", - "values": [ - "Elections", - "International instruments" - ] - }, - { - "text": "Further develop and implement comprehensive policies to prevent violence against children", - "values": [ - "Rights of the Child" - ] - }, - { - "text": "Continue with its international commitment to promoting a spirit of tolerance and dialogue ", - "values": [ - "General" - ] - }, - { - "text": "Take necessary steps to set up the Truth and Reconciliation Commission and the Commission on the Inquiry on Disappearances since the failure to act on human rights abuses undermines respect for the rule of law ", - "values": [ - "Enforced disappearances", - "Justice" - ] - }, - { - "text": "Continue to work towards achieving gender equality and the attainment of the MDGs for all Algerians, especially for the rural poor ", - "values": [ - "Development", - "Women's rights" - ] - }, - { - "text": "Increase all kinds of measures to effectively combat impunity regarding acts of violence against women, as well as to prevent, investigate, prosecute and sanction the acts of violence perpetrated against women by State agents and other persons ", - "values": [ - "Human rights violations by state agents", - "Impunity", - "Women's rights" - ] - }, - { - "text": "Adopt legislation ensuring protection of human rights of ethnic communities, including their participation in government decisions", - "values": [ - "Minorities" - ] - }, - { - "text": "Ensure the right of individuals and organizations to defend and promote human rights, including protection and promotion of the rights of freedom of expression, assembly and association ", - "values": [ - "Civil society", - "Freedom of association and peaceful assembly", - "Freedom of opinion and expression", - "Human rights defenders" - ] - }, - { - "text": "Continue efforts on the international level in the fight against impunity", - "values": [ - "Impunity" - ] - }, - { - "text": "Pass legislation, without undue delay, to confirm the official status of the National Programme for the Protection of Human Rights Defenders, and give priority to its wide implementation ", - "values": [ - "Human rights defenders" - ] - }, - { - "text": "Enhance its efforts to raise school attendance rates, especially among girls, and reduce the drop-out rate", - "values": [ - "Right to education", - "Rights of the Child", - "Women's rights" - ] - }, - { - "text": "Step up its efforts to counter discrimination and violence on the basis of sexual orientation or gender identity, and to structurally collect data and provide statistics and information in this regard", - "values": [ - "Sexual Orientation and Gender Identity" - ] - }, - { - "text": "Develop and assess its strategies to combat human trafficking", - "values": [ - "Trafficking" - ] - }, - { - "text": "Adopt a law against all forms of discrimination, including discrimination based on sexual orientation and gender identity", - "values": [ - "Sexual Orientation and Gender Identity" - ] - }, - { - "text": "Continue the revision of the Shia Personal Status Law and harmonize it with the international treaties signed by Afghanistan.", - "values": [ - "Women's rights" - ] - }, - { - "text": "Consider ratifying the International Covenant on Civil and Political Rights, the International Covenant on Economic, Social and Cultural Rights and the Convention against Torture and Other Cruel, Inhuman or Degrading Treatment or Punishment", - "values": [ - "CP rights - general", - "ESC rights - general", - "International instruments", - "Torture and other CID treatment" - ] - }, - { - "text": "Continue to engage its international partners with the view to strengthening the capacity and enlarging the resource base of the Commission", - "values": [ - "National Human Rights Institution" - ] - }, - { - "text": "Take particular and additional measures to consolidate national unity, stability of internal security and support solidarity to spread the culture of peaceful coexistence and strengthen the values of conciliation", - "values": [ - "Public security" - ] - }, - { - "text": "Revise the Penal Code Order of 2013 to prohibit torture or other cruel, inhuman or degrading treatment or punishment and to bring Brunei's domestic legislation into line with its international human rights commitments on the freedoms of religion and of expression ", - "values": [ - "Freedom of opinion and expression", - "Freedom of religion and belief", - "Freedom of the press" - ] - }, - { - "text": "Keep on taking efforts in favour of the promotion and protection of the rights of women and children ", - "values": [ - "Rights of the Child", - "Women's rights" - ] - }, - { - "text": "Extend standing invitations to all special procedure mandate holders of the United Nations", - "values": [ - "Special procedures" - ] - }, - { - "text": "Put an end to the widespread gender discrimination which particularly affects girls living in rural areas", - "values": [ - "Rights of the Child", - "Women's rights" - ] - }, - { - "text": "Pursue its efforts in promoting education and training in human rights, in particular for the capacity-building of law enforcement officials", - "values": [ - "Human rights education and training" - ] - }, - { - "text": "Improve police responses to violence against foreigners", - "values": [ - "Other" - ] - }, - { - "text": "Take legal measures aimed at preventing ethnically motivated crimes", - "values": [ - "Minorities", - "Racial discrimination" - ] - }, - { - "text": "Align national laws and regulations on freedom of expression with international human rights standards", - "values": [ - "Freedom of opinion and expression" - ] - }, - { - "text": "Amend the Criminal Code to prohibit racist organizations and establish criminal liability for hate speech with racist content and incitement to hatred", - "values": [ - "Racial discrimination" - ] - }, - { - "text": "Recommended that the National Security Act be brought in line with international standards regarding clarity of criminal law, and that active steps be taken to introduce alternatives to military service for conscientious objectors", - "values": [ - "Freedom of religion and belief" - ] - }, - { - "text": "Take steps to ensure that civil society can operate without intimidation and to ensure freedom of the press, including for independent media ", - "values": [ - "Civil society", - "Freedom of the press" - ] - }, - { - "text": "Take all required measures to halt the exploitation of migrants, asylum seekers and refugees and facilitate their integration into society", - "values": [ - "Asylum-seekers - refugees", - "Migrants" - ] - }, - { - "text": "Continue efforts to ensure that those subject to administrative detention are provided free legal assistance. ", - "values": [ - "Detention" - ] - }, - { - "text": "Take additional measures on domestic violence", - "values": [ - "Rights of the Child", - "Women's rights" - ] - }, - { - "text": "Sign and ratify the Convention on the Elimination of All Forms of Discrimination against Women (CEDAW) and incorporate its provisions into domestic law ", - "values": [ - "International instruments", - "Women's rights" - ] - }, - { - "text": "Facilitate holding peaceful protests, protect all peaceful demonstrators from violence and arbitrary arrest and fight impunity for the use of excessive force against protestors by law-enforcement personnel", - "values": [ - "Detention", - "Freedom of association and peaceful assembly", - "Human rights violations by state agents", - "Impunity" - ] - }, - { - "text": "Continue efforts to execute the national media strategy in cooperation with all relevant partners", - "values": [ - "Poverty" - ] - }, - { - "text": "Strengthen further authorities' efforts to combat racism in the field of sports, including through legislative measures", - "values": [ - "Racial discrimination" - ] - }, - { - "text": "Adopt proper measures in order to discourage the practice of early and forced marriages", - "values": [ - "Rights of the Child", - "Women's rights" - ] - }, - { - "text": "Continue its poverty reduction policy, particularly for vulnerable groups in isolated and rural areas", - "values": [ - "Poverty" - ] - }, - { - "text": "Adopt legal provisions for reduced working hours, additional paid holidays or another form of compensation in dangerous and unhealthy occupations ", - "values": [ - "Labour" - ] - }, - { - "text": "Abolish capital punishment and ratify the Second Optional Protocol to the International Covenant on Civil and Political Rights", - "values": [ - "Death penalty", - "International instruments" - ] - }, - { - "text": "Take all measures to hold free and fair elections in 2013", - "values": [ - "Elections" - ] - }, - { - "text": "Continue to work at the provincial level to execute memorandums of understanding to combat violence against women and children", - "values": [ - "Rights of the Child", - "Women's rights" - ] - }, - { - "text": "Prohibit by law the practice of corporal punishment of children as a disciplinary method", - "values": [ - "Rights of the Child", - "Torture and other CID treatment" - ] - }, - { - "text": "Systematically and continuously integrate a gender perspective in the follow up process to the UPR.", - "values": [ - "UPR process", - "Women's rights" - ] - }, - { - "text": "Take effective measures to strengthen the capacity of the newly established human rights institutions including the Ministry of Human Rights and Civil Liberties, and the national observatory on violence against women and children", - "values": [ - "National Human Rights Institution", - "Rights of the Child", - "Women's rights" - ] - }, - { - "text": "Revise the procedures governing registration of civil society organizations to ensure transparent, non-discriminatory, expeditious and affordable procedures that conform to international human rights standards", - "values": [ - "Civil society", - "International instruments" - ] - }, - { - "text": "Adopt and implement an effective strategy to combat domestic violence ", - "values": [ - "Rights of the Child", - "Women's rights" - ] - }, - { - "text": "Take concrete steps to provide for the protection and equal treatment of lesbian, gay, bisexual and transgender persons ", - "values": [ - "Sexual Orientation and Gender Identity" - ] - }, - { - "text": "Actively protect the rights to freedom of expression and to peaceful assembly by ensuring that any restriction on those rights is lawful, necessary and proportionate ", - "values": [ - "Freedom of association and peaceful assembly", - "Freedom of opinion and expression" - ] - }, - { - "text": "Fully abolish the death penalty.", - "values": [ - "Death penalty" - ] - }, - { - "text": "Continue to work towards reaching the MDGs of universal primary education, gender equality in access to education, and further reduction in infant mortality ", - "values": [ - "Right to education", - "Right to health", - "Rights of the Child", - "Women's rights" - ] - }, - { - "text": "Continue its close cooperation with the mechanisms and special procedures of the Council, with a view to achieving incremental improvements, particularly with regard to the promotion and protection of the human rights situation of its people.", - "values": [ - "Special procedures" - ] - }, - { - "text": "To reinforce affirmative action measures to facilitate women's access to employment", - "values": [ - "Women's rights" - ] - }, - { - "text": "Continue to intensify its efforts to combating poverty", - "values": [ - "Poverty" - ] - }, - { - "text": "Enact a law on the protection of human rights defenders, with emphasis on those defenders facing greater risks, including those working on minority rights and the rights of scheduled castes and tribes ", - "values": [ - "Human rights defenders", - "Indigenous peoples", - "Minorities" - ] - }, - { - "text": "Undertake effective measures to further strengthen the existing mechanisms for consultation with the indigenous population on issues which have an impact on the economic and social aspects of the indigenous population ", - "values": [ - "Indigenous peoples" - ] - }, - { - "text": "Ratify the Convention on the Elimination of All Forms of Discrimination against Women to ensure full gender equality and adopt a comprehensive national action plan with clear goals and deadlines to eliminate all forms of violence against women, including sexual violence and female genital mutilation", - "values": [ - "International instruments", - "Rights of the Child", - "Torture and other CID treatment", - "Women's rights" - ] - }, - { - "text": "Adopt laws and executive measures that guarantee that migrant persons with disabilities and with special needs are guaranteed all their rights and to, in particular, protect them", - "values": [ - "Disabilities", - "Migrants" - ] - }, - { - "text": "Systematically collect data on racially motivated hate crimes ", - "values": [ - "Racial discrimination" - ] - }, - { - "text": "Consider the recommendation of various treaty bodies regarding the elimination of pre-military training in schools", - "values": [ - "Right to education", - "Treaty bodies" - ] - }, - { - "text": "Consider an early ratification of the third Optional Protocol to CRC on a communications procedure ", - "values": [ - "International instruments", - "Rights of the Child" - ] - }, - { - "text": "Work with the African Union to establish a hybrid court and the commission for truth, reconciliation and healing within the time frame set out in the peace agreement", - "values": [ - "Justice" - ] - }, - { - "text": "Intensify efforts to eliminate all forms of discrimination against women ", - "values": [ - "Women's rights" - ] - }, - { - "text": "Sign and ratify OP-ICESCR, OP-CAT and CED ", - "values": [ - "Detention", - "ESC rights - general", - "Enforced disappearances", - "International instruments", - "Torture and other CID treatment" - ] - }, - { - "text": "[Ratify] The ILO Indigenous and Tribal Peoples Convention 1989, (No. 169), and the International Convention on the Protection of the Rights of All Migrant Workers and Members of Their Families", - "values": [ - "Indigenous peoples", - "International instruments", - "Labour", - "Migrants" - ] - }, - { - "text": "Expressly prohibit corporal punishment in all settings", - "values": [ - "Torture and other CID treatment" - ] - }, - { - "text": "Enhance its awareness-raising campaign to combat negative stereotyping against women and prohibit violence against women", - "values": [ - "Human rights education and training", - "Women's rights" - ] - }, - { - "text": "Take additional measures to prevent all manifestations of hate speech and criminalize incitement to violence and discrimination", - "values": [ - "Racial discrimination" - ] - }, - { - "text": "Accelerate the process of the ratification of ICRMW", - "values": [ - "International instruments", - "Labour", - "Migrants" - ] - }, - { - "text": "Respect the institutions of the Slovenian minority by special treatment and inclusion in decision-making processes kindergartens, schools and theatres", - "values": [ - "Minorities" - ] - }, - { - "text": "Take all necessary measures to ensure to its indigenous peoples the full enjoyment of all their human rights, including economic, social and cultural rights, so that their quality of life is similar to the rest of citizens ", - "values": [ - "ESC rights - general", - "Indigenous peoples" - ] - }, - { - "text": "Further strengthen the independence of the judiciary", - "values": [ - "Justice" - ] - }, - { - "text": "Ratify, as soon as possible, the International Convention for the Protection of All Persons from Enforced Disappearance and ratify the Optional Protocol to the Convention against Torture and other Cruel, Inhuman or Degrading Treatment or Punishment", - "values": [ - "Detention", - "Enforced disappearances", - "International instruments", - "Torture and other CID treatment" - ] - }, - { - "text": "Analyse the possibility of ratifying the Convention on the Protection of the Rights of All Migrant Workers and Members of Their Families", - "values": [ - "International instruments", - "Labour", - "Migrants" - ] - }, - { - "text": "Intensify efforts for the early establishment of a national independent human rights institution in accordance with the Paris Principles", - "values": [ - "National Human Rights Institution" - ] - }, - { - "text": "Sign and ratify the Second Optional Protocol to the International Covenant on Civil and Political Rights, aiming at the abolition of the death penalty ", - "values": [ - "Death penalty", - "International instruments" - ] - }, - { - "text": "Allow a Syrian-led transition to take place that will initiate change in laws and lead to the formation of an inclusive and representative government that adheres to the rule of law and upholds the rights of members of religious and ethnic minorities", - "values": [ - "Freedom of religion and belief", - "Minorities" - ] - }, - { - "text": "Take more effective measures to combat racial discrimination and intolerance against migrants, and improve the legislative framework with the aim of fostering social acceptance of migrants", - "values": [ - "Migrants", - "Racial discrimination" - ] - }, - { - "text": "Facilitate the return to Rwanda of Rwandan migrant workers who are not in possession of valid travel documents", - "values": [ - "Labour", - "Migrants" - ] - }, - { - "text": "As for human rights education, [the delegation] said that San Marino was committed to the promotion of human rights in education by implementing relevant projects, including training for teachers and the involvement of families.", - "values": [ - "Human rights education and training" - ] - }, - { - "text": "Make the necessary efforts to repeal all legal provisions which can be applied to criminalize consensual sexual activity between adults of the same sex ", - "values": [ - "Sexual Orientation and Gender Identity" - ] - }, - { - "text": "Expedite action taken to modify legislation to promote equality between men, women and children in matters of inheritance and succession", - "values": [ - "Rights of the Child", - "Women's rights" - ] - }, - { - "text": "Revise its legislation on violence against women in order to strengthen the rights of victims and to fight the impunity of perpetrators ", - "values": [ - "Impunity", - "Women's rights" - ] - }, - { - "text": "Consistently address and prosecute incidents of violence against persons with albinism and take measures to comprehensively protect their human rights", - "values": [ - "Minorities" - ] - }, - { - "text": "Strengthen efforts to eliminate exploitative child labour", - "values": [ - "Labour", - "Rights of the Child" - ] - }, - { - "text": "Repeal the law criminalizing same-sex relations among consenting adults", - "values": [ - "Sexual Orientation and Gender Identity" - ] - }, - { - "text": "Adopt a law prohibiting participation of minor girls in initiation rites", - "values": [ - "Rights of the Child", - "Torture and other CID treatment", - "Women's rights" - ] - }, - { - "text": "Make the process of recognition of professional qualifications acquired abroad more flexible, to facilitate access to the labour market for refugees, asylum seekers and provisionally admitted persons", - "values": [ - "Asylum-seekers - refugees", - "Labour" - ] - }, - { - "text": "Promote and increase training programmes for security personnel, including human rights education and training", - "values": [ - "Human rights education and training" - ] - }, - { - "text": "Accelerate its ratification process of the Optional Protocol to the Convention on the Elimination of All Forms of Discrimination against Women", - "values": [ - "International instruments", - "Women's rights" - ] - }, - { - "text": "Modify the Law on the Protection against Domestic Violence and promote the prosecution for these crimes", - "values": [ - "Rights of the Child", - "Women's rights" - ] - }, - { - "text": "Remove all restrictions, in law and in practice, which prevent the full enjoyment of the right to freedom of association", - "values": [ - "Freedom of association and peaceful assembly" - ] - }, - { - "text": "Investigate and prosecute all those, including Government officials and paramilitary members, suspected of having mistreated, tortured or killed anyone, including demonstrators, political activists, human rights defenders and journalists", - "values": [ - "Extrajudicial executions", - "Freedom of the press", - "Human rights defenders", - "Human rights violations by state agents", - "Torture and other CID treatment" - ] - }, - { - "text": "Continue practical efforts to improve the overall human rights situation in the country.", - "values": [ - "General" - ] - }, - { - "text": "Finalize the draft national gender policy and its action plan", - "values": [ - "Women's rights" - ] - }, - { - "text": "Take further steps to protect the rights of the child, prevent child abuse, exploitation and violence", - "values": [ - "Rights of the Child" - ] - }, - { - "text": "Review the Children Act of 2012 in order to decriminalize consensual sexual relations between minors of the same sex", - "values": [ - "Sexual Orientation and Gender Identity" - ] - }, - { - "text": "Increase the minimum age of criminal responsibility from 10 to 18 years", - "values": [ - "Justice", - "Rights of the Child" - ] - }, - { - "text": "Step up efforts to combat all forms of discrimination towards women, in particular by re-examining its reservations to the Convention on the Elimination of all Forms of Discrimination against Women, with a view to withdrawing them", - "values": [ - "International instruments", - "Women's rights" - ] - }, - { - "text": "Intensify measures to raise awareness of domestic violence, including through training for judges, prosecutors, police and health officers", - "values": [ - "Human rights education and training", - "Rights of the Child", - "Women's rights" - ] - }, - { - "text": "Continue with its policy of recognition and promotion of the rights of nature, the promotion of the use of non-pollutant or of low impact technology and alternative energies ", - "values": [ - "Environment" - ] - }, - { - "text": "Take necessary steps to ensure that all allegations of torture are duly investigated, perpetrators prosecuted and the victims duly compensated", - "values": [ - "Torture and other CID treatment" - ] - }, - { - "text": "Continue to fight poverty through its national poverty reduction strategy", - "values": [ - "Poverty" - ] - }, - { - "text": "Ratify the Rome statue of the International Criminal Court, including its Agreement on Privileges and Immunities ", - "values": [ - "International instruments", - "Justice" - ] - }, - { - "text": "Take additional measures in order to provide for the basic needs of the population and to ensure economic, social and cultural rights, with the assistance of international donors and the relevant international organizations", - "values": [ - "ESC rights - general", - "Technical assistance and cooperation" - ] - }, - { - "text": "Ratify OP-ICESCR, the Rome Statute of the ICC as well as the 1954 Convention relating to the Status of Stateless Persons and the 1961 Convention on the Reduction of Statelessness ", - "values": [ - "ESC rights - general", - "International instruments", - "Justice", - "Statelessness and the right to nationality" - ] - }, - { - "text": "Ensure accountability for human rights abuses, to strengthen the rule of law and break the pervasive cycle of impunity that hinders reconciliation and limits Haiti's economic development", - "values": [ - "Impunity", - "Justice" - ] - }, - { - "text": "Revise the Personal and Family Code to fully align it with international human rights standards, including with women's rights as set out in CEDAW", - "values": [ - "International instruments", - "Women's rights" - ] - }, - { - "text": "Take the necessary measures to eliminate and penalize all forms of hazardous child labour", - "values": [ - "Labour", - "Rights of the Child" - ] - }, - { - "text": "Continue constructive cooperation with the United Nations human rights mechanisms", - "values": [ - "Special procedures", - "Technical assistance and cooperation", - "Treaty bodies", - "UPR process" - ] - }, - { - "text": "Strengthen the measures aimed at protecting vulnerable populations and so guarantee their full access to public services", - "values": [ - "Minorities" - ] - }, - { - "text": "Namibia remains committed to implementing the recommendations that enjoyed her support during the first cycle of the UPR and to participating in the second cycle of the UPR in an open and constructive manner.", - "values": [ - "UPR process" - ] - }, - { - "text": "As for the special procedures, we reaffirm our commitment and willingness to consider any request for a country visit by any United Nations rapporteur.", - "values": [ - "Special procedures" - ] - }, - { - "text": "Take measures to explore means to ensure the full implementation of its international human rights obligations by all constituent units of the Swiss Confederation", - "values": [ - "General" - ] - }, - { - "text": "Prevent child marriage by increasing the minimum age restriction of marriage to 18 for girls so as to have the same age restriction for both genders", - "values": [ - "Rights of the Child", - "Women's rights" - ] - }, - { - "text": "Condemn and put an end to unresolved homicides and enforced disappearances", - "values": [ - "Enforced disappearances", - "Extrajudicial executions" - ] - }, - { - "text": "Continue with the implementation of its National Development Plan (NDP) which promotes greater public-private partnership and the continuation of its export-led and market-driven development ", - "values": [ - "Development" - ] - }, - { - "text": "Seek support from the international community, and in particular the United Nations organs and programmes, in relation to human rights training - work against sexual violence, especially violence perpetrated against women - measures against child labour - the eradication of the phenomenon of child soldiers - security - assistance to families and communities in combating the effects of poverty and AIDS - education - and juvenile justice. ", - "values": [ - "Technical assistance and cooperation" - ] - }, - { - "text": "Take additional legal and other measures to reduce pre-trial detention and overcrowding in detention facilities through increased resort to alternative forms of punishment ", - "values": [ - "Detention" - ] - }, - { - "text": "Adopt appropriate laws to combat violence against women in general and domestic violence in particular ", - "values": [ - "Women's rights" - ] - }, - { - "text": "Continue applying its socio-economic and development strategies and plans in the country ", - "values": [ - "Development" - ] - }, - { - "text": "Modify the Citizenship Law of 1982 to ensure all minorities equal rights as citizens and remove all restrictions imposed on the Muslim minority in Rakhine State ", - "values": [ - "Freedom of religion and belief", - "Minorities" - ] - }, - { - "text": "Improve the struggle against poverty, improve the fate of individuals and communities fighting for access to land in rural zones, and protect them against evictions, intimidations, threats and killings ", - "values": [ - "Poverty", - "Right to housing", - "Right to land" - ] - }, - { - "text": "Take steps to integrate in national legislation the provisions of both Optional Protocols to the CRC, once ratified, and to strengthen relevant national implementation mechanisms ", - "values": [ - "International instruments", - "Rights of the Child" - ] - }, - { - "text": "Establish a national human rights institution in accordance with the Paris Principles\n", - "values": [ - "National Human Rights Institution" - ] - }, - { - "text": "Continue exerting increased efforts in the implementation of the Sustainable Development Goals", - "values": [ - "Development" - ] - }, - { - "text": "Take all the necessary steps in order to ensure the independence of the judiciary", - "values": [ - "Justice" - ] - }, - { - "text": "Ensure the effective implementation of the Protection Mechanism, under the Human Rights Defenders and Journalists Protection Act, to reduce impunity, especially the crimes against defenders of the human rights of migrants", - "values": [ - "Freedom of the press", - "Human rights defenders", - "Impunity", - "Migrants" - ] - }, - { - "text": "Guarantee freedom of expression, association and peaceful assembly for journalists, activists, human rights defenders and for participants in demonstrations", - "values": [ - "Freedom of association and peaceful assembly", - "Freedom of opinion and expression", - "Freedom of the press", - "Human rights defenders" - ] - }, - { - "text": "Raise awareness in the society, among people of all ages, to enable them to recognize the importance of civil society organizations and their role in the dynamics of Bahraini society", - "values": [ - "Human rights education and training" - ] - }, - { - "text": "Take measures to ensure the full enjoyment of all human rights by members of indigenous communities.", - "values": [ - "Indigenous peoples" - ] - }, - { - "text": "Consider revising its law prohibiting people from wearing religious symbols in public schools", - "values": [ - "Freedom of religion and belief", - "Right to education" - ] - }, - { - "text": "Continue to implement its plan to combat discrimination against women", - "values": [ - "Women's rights" - ] - }, - { - "text": "Work towards amending national legislation to bring it into line with international human rights instruments to which it is a party ", - "values": [ - "International instruments" - ] - }, - { - "text": "Address inequalities in access to health services, in particular with regard to children affected by HIV/AIDS ", - "values": [ - "HIV - Aids", - "Right to health", - "Rights of the Child" - ] - }, - { - "text": "Accelerate the procedure for the adoption of the bill reviewing the age of criminal responsibility", - "values": [ - "Justice", - "Rights of the Child" - ] - }, - { - "text": "Ensure the right of national minorities living in territories of compact residences to receive services from the State and municipality in their mother tongue, accede to the UNESCO Convention against Discrimination in Education, reconsider the decision on the closure of gymnasiums that have less than 120 pupils ", - "values": [ - "International instruments", - "Minorities" - ] - }, - { - "text": "Continue to fight HIV-AIDS with the support of the international community ", - "values": [ - "HIV - Aids" - ] - }, - { - "text": "Continue strengthening its efforts to improve the socio-economic conditions of its people especially on promoting the rights to education for all its young citizens", - "values": [ - "ESC rights - general", - "Right to education" - ] - }, - { - "text": "Intensify and widen its campaign on the human rights education and awareness creation as well as address the challenges mentioned in its report ", - "values": [ - "Human rights education and training" - ] - }, - { - "text": "Step up efforts to improve health services for all its citizens, especially in the rural areas ", - "values": [ - "Right to health" - ] - }, - { - "text": "Take stronger actions to put an end to cases of abuses and ill treatment allegedly committed by police forces and prison guards, especially against juveniles ", - "values": [ - "Detention", - "Human rights violations by state agents", - "Rights of the Child", - "Torture and other CID treatment" - ] - }, - { - "text": "Consider acceding to CPED and OP-CAT", - "values": [ - "Detention", - "Enforced disappearances", - "International instruments", - "Torture and other CID treatment" - ] - }, - { - "text": "Consider ratifying the Convention on the Rights of the Child and the Rome Statute of the International Criminal Court", - "values": [ - "International instruments", - "Justice", - "Rights of the Child" - ] - }, - { - "text": "Adopt a national plan to protect women against violence", - "values": [ - "Women's rights" - ] - }, - { - "text": "Adopt effective measures to combat all forms of ill-treatment of children, including corporal punishment", - "values": [ - "Rights of the Child", - "Torture and other CID treatment" - ] - }, - { - "text": "The universal periodic review was a dynamic process of consultation of independent institutions monitoring compliance of human rights in Luxembourg. This consultation process also involved civil society organizations engaged in the promotion and protection of human rights. It was a beneficial exercise for the country. Luxembourg pledged to continue this consultation on a regular basis in order to ensure an appropriate follow-up to the review report and outcome", - "values": [ - "Civil society", - "UPR process" - ] - }, - { - "text": "Ensure the full application of the law in order to prevent child, early and forced marriage and to bring perpetrators of sexual violence perpetuated against children to justice", - "values": [ - "Rights of the Child", - "Women's rights" - ] - }, - { - "text": "Expedite the on-going internal proceedings and ratify the CRPD and its Optional Protocol enabling individual complaints ", - "values": [ - "Disabilities", - "International instruments" - ] - }, - { - "text": "Multiply the activities undertaken to increase the participation of women in political life and in decision-making", - "values": [ - "Women's rights" - ] - }, - { - "text": "Strengthen efforts to combat maternal mortality", - "values": [ - "Right to health", - "Women's rights" - ] - }, - { - "text": "Fully align its national legislation with the Rome Statute of the International Criminal Court (ICC)", - "values": [ - "International instruments", - "Justice" - ] - }, - { - "text": "Ensure comprehensive human rights training for teachers with a view to preventing any excessive use of force", - "values": [ - "Human rights education and training" - ] - }, - { - "text": "Remove disparities in the implementation of anti -racism legislation, policies, programmes and best practices, and ensure, without discrimination, the enjoyment of all people living under its jurisdiction of the rights set forth in ICERD by, inter alia, adopting new federal laws ", - "values": [ - "International instruments", - "Racial discrimination" - ] - }, - { - "text": "Investigate, in full consultation with stakeholders, the possibility of a universal basic income as a replacement of the existing social protection system", - "values": [ - "Other" - ] - }, - { - "text": "Double the efforts to protect and strengthen the rights of persons with disabilities", - "values": [ - "Disabilities" - ] - }, - { - "text": "Take the necessary measures to combat all forms of intolerance and offences motivated by hatred or racial considerations", - "values": [ - "Racial discrimination" - ] - }, - { - "text": "Ensure the prompt implementation of the provisions of the Rome Statue in the national law ", - "values": [ - "International instruments", - "Justice" - ] - }, - { - "text": "Continue to take legislative as well as policy measures to combat child labour and to ratify ILO Conventions 138 concerning Minimum Age for Admission to Employment and 182 concerning the prohibition and immediate action for the elimination of the worst forms of child labour and elaborate a timeline for the ratification of these instruments ", - "values": [ - "International instruments", - "Labour", - "Rights of the Child" - ] - }, - { - "text": "Integrate human rights education into primary and secondary school curricula", - "values": [ - "Human rights education and training" - ] - }, - { - "text": "Continue to ensure its compliance with its human rights obligations, especially those enshrined in ICCPR and other human rights agreements to which it is a state party", - "values": [ - "CP rights - general", - "International instruments" - ] - }, - { - "text": "Ensure that the freedom of expression is implemented fully, especially in publicly owned media", - "values": [ - "Freedom of opinion and expression", - "Freedom of the press" - ] - }, - { - "text": "Continue its efforts in the promotion and protection of the rights of persons with disabilities, including its early ratification of Convention on the Rights of Persons with Disabilities (CRPD)", - "values": [ - "Disabilities", - "International instruments" - ] - }, - { - "text": "Expedite the development of the National Human Rights Action Plan", - "values": [ - "General" - ] - }, - { - "text": "Improve the health sector by increasing the national budget for health and ensuring full and equal access to health in line with the health sector development plan", - "values": [ - "Right to health" - ] - }, - { - "text": "Continue efforts aimed at the broader and more just redistribution of national wealth", - "values": [ - "Development" - ] - }, - { - "text": "Further raise the quality of education on human rights for law enforcement officials and those directly involved with inmates ", - "values": [ - "Detention", - "Human rights education and training" - ] - }, - { - "text": "Extend an open invitation to special procedures on human rights", - "values": [ - "Special procedures" - ] - }, - { - "text": "Take steps to submit overdue reports to treaty bodies", - "values": [ - "Treaty bodies" - ] - }, - { - "text": "Ratify the Rome Statute of the ICC and accede to the Agreement on Privileges and Immunities of the ICC", - "values": [ - "International instruments", - "Justice" - ] - }, - { - "text": "Increase efforts to ensure the registration of all children at birth ", - "values": [ - "Rights of the Child", - "Statelessness and the right to nationality" - ] - }, - { - "text": "Continue the efforts to harmonize national legislation with international standards in the field of human rights", - "values": [ - "International instruments" - ] - }, - { - "text": "Intensify its efforts to combat discrimination ", - "values": [ - "Other" - ] - }, - { - "text": "Encourage better protection of children's rights", - "values": [ - "Rights of the Child" - ] - }, - { - "text": "Promulgate and implement specific laws to punish violence against women ", - "values": [ - "Women's rights" - ] - }, - { - "text": "Cooperate with Treaty Bodies in submitting its reports regularly", - "values": [ - "Treaty bodies" - ] - }, - { - "text": "Implement comprehensive awareness raising strategies for hospital staff, administrators and other health professionals regarding their responsibilities to register births and facilitate the issuance of birth certificates, without any delay ", - "values": [ - "Rights of the Child" - ] - }, - { - "text": "Redouble its efforts to ensure access to health services in the country ", - "values": [ - "Right to health" - ] - }, - { - "text": "Consider signing and ratifying the Convention on the Protection of All Persons from Enforced Disappearance", - "values": [ - "Enforced disappearances", - "International instruments" - ] - }, - { - "text": "Strengthen intersectoral campaigns to counter violence against women", - "values": [ - "Women's rights" - ] - }, - { - "text": "Continue to encourage the initiatives aimed at disseminating the values of respect and religious tolerance in the community", - "values": [ - "Freedom of religion and belief" - ] - }, - { - "text": "Adopt and implement Penal Code reforms and other measures in compliance with international human rights standards in order to combat violence against children in all its forms, and provide adequate reintegration and rehabilitation for the victims ", - "values": [ - "International instruments", - "Rights of the Child" - ] - }, - { - "text": "Transfer the functions of the Korean Communications Standards Commission to an independent commission", - "values": [ - "Other" - ] - }, - { - "text": "Ratify the International Covenant on Civil and Political Rights also with a view to help ensure equal rights of, and end discrimination against lesbian, gay, bisexual, transgender and intersex persons", - "values": [ - "CP rights - general", - "International instruments", - "Sexual Orientation and Gender Identity" - ] - }, - { - "text": "Consider accession to the ICRMW in order to prevent discrimination, and to ensure equal access to just conditions of work and basic social services, particularly for migrants in vulnerable situations", - "values": [ - "International instruments", - "Labour", - "Migrants" - ] - }, - { - "text": "Enhance its efforts to provide equal educational opportunities for children with disabilities, including by abolishing the practice of corrective and auxiliary schools, by providing the necessary support and by ensuring that teachers are trained to educate children with disabilities in regular schools", - "values": [ - "Disabilities", - "Right to education", - "Rights of the Child" - ] - }, - { - "text": "Effectively protect and guarantee the safety and human rights of migrants, especially women and children, including those that are in transit in the national territory, ensuring their access to justice, education, health and civil registry, incorporating the principle of the best interest of the child and the family unit", - "values": [ - "Migrants", - "Rights of the Child", - "Women's rights" - ] - }, - { - "text": "Ensure that civil society is involved in the implementation of the outcome of the review.", - "values": [ - "Civil society", - "UPR process" - ] - }, - { - "text": "Strengthen efforts to prevent and combat all forms of discrimination and violence against women and children and other vulnerable groups, by adopting comprehensive legislation and launching awareness-raising campaigns. Ensure that women victims of violence receive appropriate help and perpetrators are brought to justice", - "values": [ - "Human rights education and training", - "Rights of the Child", - "Women's rights" - ] - }, - { - "text": "Design and implement a sexual and reproductive health program for adolescents", - "values": [ - "Right to health", - "Rights of the Child" - ] - }, - { - "text": "Take the necessary measures to strengthen the independence and mandate of the Slovak National Centre for Human Rights and ensure that it complies with the Paris Principles ", - "values": [ - "National Human Rights Institution" - ] - }, - { - "text": "Continue to place emphasis on the rights of women and children in its policies and programmes", - "values": [ - "Rights of the Child", - "Women's rights" - ] - }, - { - "text": "Consider setting as its standards of protection for the rights of migrant workers those enshrined in the ICRMW and ILO Convention 189 on Decent Work for Domestic Workers ", - "values": [ - "International instruments", - "Labour", - "Migrants" - ] - }, - { - "text": "Include sale and abduction of children in the data collection system of the National Commission for the Care and Social Reintegration of Child Victims of Trafficking with a view to guarantee the operational continuity and effectiveness of the commitments undertaken through the cooperation agreements to combat trafficking in children ", - "values": [ - "Rights of the Child", - "Trafficking" - ] - }, - { - "text": "Adopt legislation that clearly defines and criminalizes torture", - "values": [ - "Torture and other CID treatment" - ] - }, - { - "text": "Ensure full compliance with the laws on child labour and implement its national plan of action on the elimination of the worst forms of child labour, strengthen the legislation prohibiting child labour with priority for the situation of children in domestic work, increase the number of labour inspections, and ensure that fines and criminal sanctions against persons who use illegal child labour are imposed ", - "values": [ - "Labour", - "Rights of the Child" - ] - }, - { - "text": "Continue to improve mechanisms for monitoring cases of discrimination on the grounds of origin or ethnicity by governmental and private entities", - "values": [ - "Racial discrimination" - ] - }, - { - "text": "Follow up on the request of the Inter-American Court to remove the mandatory death sentences for murder and treason and to ratify the Optional Protocols to the International Covenant on Civil and Political Rights and to abolish the death penalty", - "values": [ - "Death penalty", - "International instruments" - ] - }, - { - "text": "Adopt a law abolishing the death penalty ", - "values": [ - "Death penalty" - ] - }, - { - "text": "Enhance provision of human rights education and training at appropriate levels of the education system and relevant public officials ", - "values": [ - "Human rights education and training" - ] - }, - { - "text": "Continue to protect vulnerable groups, such as women", - "values": [ - "Women's rights" - ] - }, - { - "text": "Continue to carry out necessary reforms to end prison overcrowding, including the launching of a new plan for the renovation and new construction of prisons with conditions comparable to those of the European Union average providing them with the material and human resources appropriate for its proper functioning ", - "values": [ - "Detention" - ] - }, - { - "text": "Strengthen the labor inspections' mechanisms and step up the efforts to prevent child labor ", - "values": [ - "Labour", - "Rights of the Child" - ] - }, - { - "text": "Put in place necessary measures, including legal measures, in order to ensure that women and girls can under no circumstances be criminally prosecuted for seeking or undergoing an abortion", - "values": [ - "Rights of the Child", - "Women's rights" - ] - }, - { - "text": "Ensure full protection and realization of the right to freedom of expression and plurality of information sources as well as the right to peaceful assembly and association in compliance with international standards. ", - "values": [ - "Freedom of association and peaceful assembly", - "Freedom of opinion and expression" - ] - }, - { - "text": "Take all measures to respect freedom of expression", - "values": [ - "Freedom of opinion and expression" - ] - }, - { - "text": "Enact legislation criminalizing torture and amend all relevant laws to fully comply with the obligations under CAT ", - "values": [ - "International instruments", - "Torture and other CID treatment" - ] - }, - { - "text": "Further develop the quality education policies in the country, paying special attention to providing school services to children in remote and difficult locations ", - "values": [ - "Right to education", - "Rights of the Child" - ] - }, - { - "text": "Continue its efforts and momentum on the current human rights programme, with more focus on social inclusion, participation of the Roma in employment opportunity, adequate housing, gender equality and capacity building for national human rights institutions in the country ", - "values": [ - "Development", - "Minorities", - "Right to housing", - "Women's rights" - ] - }, - { - "text": "Further increase investment so as to improve education in rural areas", - "values": [ - "Right to education" - ] - }, - { - "text": "Continue its efforts to eradicate negative impacts inflicted by external coercive economic sanctions", - "values": [ - "Other" - ] - }, - { - "text": "Take the necessary steps for the ratification of ICESCR, ICCPR, ICERD and CAT ", - "values": [ - "CP rights - general", - "ESC rights - general", - "International instruments", - "Racial discrimination", - "Torture and other CID treatment" - ] - }, - { - "text": "Ratify the Second Optional Protocol to the International Covenant on Civil and Political Rights, aiming at the Abolition of the Death Penalty ", - "values": [ - "Death penalty", - "International instruments" - ] - }, - { - "text": "Continue to strengthen its cooperation with the Human Rights Council and its mechanisms", - "values": [ - "Special procedures", - "UPR process" - ] - }, - { - "text": "Strengthen measures and strategies to combat trafficking in persons, particularly slavery, and the various infringements of the rights of women, and especially girls, particularly in the area of combating female genital mutilation ", - "values": [ - "Rights of the Child", - "Torture and other CID treatment", - "Trafficking", - "Women's rights" - ] - }, - { - "text": "Respond positively to the request for a visit of the Special Rapporteur on freedom of religion or belief ", - "values": [ - "Freedom of religion and belief", - "Special procedures" - ] - }, - { - "text": "Create and strengthen, where appropriate, legislative and other measures to address the sexual exploitation of women and girls", - "values": [ - "Rights of the Child", - "Women's rights" - ] - }, - { - "text": "Ratify the Indigenous and Tribal Peoples Convention No. 169.", - "values": [ - "Indigenous peoples", - "International instruments" - ] - }, - { - "text": "Continue its efforts to improve the guarantees on the rights of women through the revision of all discriminatory laws ", - "values": [ - "Women's rights" - ] - }, - { - "text": "Reinforce the Ombudsman on Equal Opportunities, including through providing this office with adequate funding in order to ensure its compliance with international standards in this regard", - "values": [ - "National Human Rights Institution" - ] - }, - { - "text": "Provide the NHRC with adequate funding and autonomy to ensure that the Commission can properly fulfil its mandate ", - "values": [ - "National Human Rights Institution" - ] - }, - { - "text": "Tirelessly pursue its policy of promoting the rights of women, in particular by eliminating illiteracy and, if possible, by extending projects like the Project for the Promotion of Self-Employment for Rural Women PRAMUR to women in urban areas ", - "values": [ - "Women's rights" - ] - }, - { - "text": "Grant the National Human Rights Commission autonomy and independence in accordance with the Paris Principles", - "values": [ - "National Human Rights Institution" - ] - }, - { - "text": "Prohibit harmful practices, including by adopting additional measures to fight against all forms of violence against women and girls", - "values": [ - "Rights of the Child", - "Torture and other CID treatment", - "Women's rights" - ] - }, - { - "text": "Consider strengthening its National Action Plan against Racism", - "values": [ - "Racial discrimination" - ] - }, - { - "text": "Facilitate an inclusive national dialogue on female genital mutilation and put in place, in cooperation with tribal chiefs, religious leaders and women's groups, effective measures to eliminate the practice ", - "values": [ - "Rights of the Child", - "Torture and other CID treatment", - "Women's rights" - ] - }, - { - "text": "Recommended that the prohibition of discrimination be strengthened in the context of the current constitutional-review and furthermore that Specific legislation be adopted to ensure the full implementation of CEDAW on the ground.", - "values": [ - "International instruments", - "Women's rights" - ] - }, - { - "text": "Intensify efforts to improve the existing conditions in detention centres and prisons", - "values": [ - "Detention" - ] - }, - { - "text": "Review the Employment of Young Persons and Children\u2019s Act with a view to including in its domestic labour and family-based enterprises and improve its data collection mechanisms on violations of the Act", - "values": [ - "Labour", - "Rights of the Child" - ] - }, - { - "text": "Accede to the Convention on the Rights of Persons with Disabilities while bringing the Mental Health Act of 2001 into line with the provisions of this Convention", - "values": [ - "Disabilities", - "International instruments", - "Right to health" - ] - }, - { - "text": "Step up efforts to implement effectively the National Strategy and Action Plan for the Decade of Roma Inclusion with a view to improving the living conditions of the Roma community and, if necessary, to adopt measures to improve the education of Roma children ", - "values": [ - "Minorities", - "Right to education" - ] - }, - { - "text": "Review laws and decrees currently in force restricting the freedoms of religion, opinion, and of expression, in order to prevent any risk of discrimination ", - "values": [ - "Freedom of opinion and expression", - "Freedom of religion and belief" - ] - }, - { - "text": "Sign and ratify the CPED", - "values": [ - "Enforced disappearances", - "International instruments" - ] - }, - { - "text": "Allow independent access to United Nations entities, including OHCHR, to all areas, to enable them to monitor the prevailing human rights situation", - "values": [ - "Technical assistance and cooperation" - ] - }, - { - "text": "Pursue with resolve its efforts towards the eradication of corruption.", - "values": [ - "Corruption" - ] - }, - { - "text": "Continue efforts on judicial reform, ensuring meaningful, independent accountability mechanisms and improved transparency throughout the judicial process ", - "values": [ - "Justice" - ] - }, - { - "text": "Continue efforts to reduce statelessness and to facilitate access to citizenship for long-term residents in Estonia", - "values": [ - "Statelessness and the right to nationality" - ] - }, - { - "text": "Ratify and implement ICCPR and ICESCR as soon as possible as well as to facilitate public dissemination of these treaties and ensure that all Cubans are aware of the rights contained therein ", - "values": [ - "CP rights - general", - "ESC rights - general", - "International instruments" - ] - }, - { - "text": "Recommended that further measures be adopted to overcome stereotypes and to reinforce the implementation of constitutional and legal guarantees with a view to ensuring that all human rights of women are safeguarded throughout its territory.", - "values": [ - "Women's rights" - ] - }, - { - "text": "Continue strengthening protective measures and legal rights for women", - "values": [ - "Women's rights" - ] - }, - { - "text": "Ensure that all forms of discrimination based on gender or sexual orientation are fully prohibited, implement the legal protection foreseen and provide assistance to victims of gender-based, sexual or domestic violence", - "values": [ - "Sexual Orientation and Gender Identity", - "Women's rights" - ] - }, - { - "text": "Continue its search for creative and integrated solutions to the root causes that lead to disproportionate incarceration rates of the Maori population ", - "values": [ - "Indigenous peoples" - ] - }, - { - "text": "Adopt a comprehensive code against discrimination in all its forms", - "values": [ - "Other" - ] - }, - { - "text": "Continue to raise awareness regarding the criminal nature of domestic violence and take measures to prosecute those responsible for such actions", - "values": [ - "Human rights education and training", - "Rights of the Child", - "Women's rights" - ] - }, - { - "text": "Ensure access to reproductive health care, including high-quality prenatal care, and information on sexual and reproductive health, contraception and emergency contraception, and safe abortion to all women without discrimination", - "values": [ - "Right to health", - "Women's rights" - ] - }, - { - "text": "Pay attention to the recommendations made by the Human Rights Committee in 2011, on the legislative reforms to be adopted to guarantee legal equality between men and women, in particular the new Criminal Code, and the Code of the Person and Family", - "values": [ - "Treaty bodies", - "Women's rights" - ] - }, - { - "text": "Continue improving the protection of its citizens from violent crime in urban and rural areas, as laid out in the key national priorities for 2009 to 2014 ", - "values": [ - "Public security" - ] - }, - { - "text": "Consider the ratification of the Rome Statue of the ICC and prepare a law on cooperation between the state and the ICC ", - "values": [ - "International instruments", - "Justice" - ] - }, - { - "text": "Take measures to end the practice of guardianship and abolish existing legal provisions that require a guardian's authorization", - "values": [ - "Women's rights" - ] - }, - { - "text": "Continue its efforts in order to reduce stereotypical approaches to the roles and responsibilities of women", - "values": [ - "Women's rights" - ] - }, - { - "text": "Consider early ratification of international conventions like the International Covenant on Economic, Social and Cultural Rights, the Convention on the Rights of the Child and the Convention on the Elimination of All forms of Discrimination against Women", - "values": [ - "ESC rights - general", - "International instruments", - "Rights of the Child", - "Women's rights" - ] - }, - { - "text": "Continue to prioritise public spending on social programmes in order to consolidate the gains made in reducing poverty, increasing access to health services as well as access to social security coverage", - "values": [ - "ESC rights - general", - "Poverty", - "Right to health" - ] - }, - { - "text": "Implement public awareness campaigns to promote tolerance and respect for cultural diversity and to counter prejudice, stereotypes, discrimination, racism and Islamophobia", - "values": [ - "Freedom of religion and belief", - "Human rights education and training", - "Racial discrimination" - ] - }, - { - "text": "Continue its efforts to promote and protect the economic, social and cultural rights of its people and share its experience in poverty reduction and agricultural development.", - "values": [ - "ESC rights - general", - "Poverty" - ] - }, - { - "text": "Establish a national human rights institution in line with the Paris Principles and develop a comprehensive national human rights action plan", - "values": [ - "National Human Rights Institution" - ] - }, - { - "text": "Strengthen efforts to eradicate discrimination, hatred, stigmatization on racial grounds and racially-motivated violence, the propagation of prejudice and stereotypes about refugees and asylum seekers through speeches, websites and social networks, the increase of Islamophobia, and ensure that any act of discrimination or violence motivated by the national or ethnic identity of the victim is investigated and punished", - "values": [ - "Asylum-seekers - refugees", - "Freedom of religion and belief", - "Racial discrimination" - ] - }, - { - "text": "Take the necessary measures to combat corruption, address its causes and eradicate its roots", - "values": [ - "Corruption", - "Justice" - ] - }, - { - "text": "Ratify or access, as appropriate, the Convention on Migrant Workers", - "values": [ - "International instruments", - "Labour", - "Migrants" - ] - }, - { - "text": "Adopt clear measures to guarantee the rights of all refugees and asylum seekers and protection, and not to classify them and arrest them as illegal immigrants", - "values": [ - "Asylum-seekers - refugees", - "Migrants" - ] - }, - { - "text": "Take the necessary measures to remove the death penalty from existing laws and sign and ratify ICCPR-OP2 aiming at the abolition of the death penalty", - "values": [ - "Death penalty", - "International instruments" - ] - }, - { - "text": "Protect the human rights of journalists and human rights defenders and ensure that they are able to carry out peaceful activities without harassment, threat of detention or imprisonment.", - "values": [ - "Freedom of the press", - "Human rights defenders" - ] - }, - { - "text": "Continue giving consideration to ratify the other remaining (human rights) instruments in a progressive manner", - "values": [ - "International instruments" - ] - }, - { - "text": "Follow-up on the commitment of abolishing death penalty by ratifying the second Optional Protocol of the International Covenant on Civil and Political Rights whose aim is to abolish the death penalty for all crimes in all circumstances", - "values": [ - "Death penalty", - "International instruments" - ] - }, - { - "text": "Guarantee the fight against impunity by ensuring that all those responsible for crimes are prosecuted and tried, in particular by speeding up, with the support of the African Union, the establishment of a hybrid court as foreseen in the peace agreement", - "values": [ - "Impunity", - "Justice" - ] - }, - { - "text": "Review legislation to ensure it does not discriminate unfavourably against women and introduce laws to unequivocally prohibit violence against women.", - "values": [ - "Women's rights" - ] - }, - { - "text": "Increase efforts to reduce poverty and stimulate development of the most marginalized groups, particularly indigenous communities, involving them in the decisions regarding their rights and interests ", - "values": [ - "Indigenous peoples", - "Poverty" - ] - }, - { - "text": "Ensure an adequate publicity and carry out awareness campaigns in order to increase the understanding among the population on the rights of LGBT persons ", - "values": [ - "Human rights education and training", - "Sexual Orientation and Gender Identity" - ] - }, - { - "text": "Continue to promote its progressive improvements to provide adequate access to its population to basic and quality health-care services ", - "values": [ - "Right to health" - ] - }, - { - "text": "Take effective and coordinated measures on the issue of violence against women and domestic violence, including ratification of the Istanbul Convention on preventing and combating violence against women and domestic violence", - "values": [ - "International instruments", - "Women's rights" - ] - }, - { - "text": "Continue to pursue policies that will expand opportunities for all children of school-going age to access high quality education, in particular those with special-education needs", - "values": [ - "Right to education", - "Rights of the Child" - ] - }, - { - "text": "Adopt a moratorium on the death penalty with a view to its abolition", - "values": [ - "Death penalty" - ] - }, - { - "text": "Continue contribute to the integration of the Roma and the Sinti into local communities, and to give them access to housing, work, education and professional training", - "values": [ - "Minorities" - ] - }, - { - "text": "Step up its efforts to complete the process of setting up the national mechanism for the prevention of torture and thus confirm its regional leadership in this respect", - "values": [ - "Torture and other CID treatment" - ] - }, - { - "text": "Continue its positive approach in combating poverty by providing the necessary support in rural infrastructure and its national employment policy to reduce unemployment", - "values": [ - "Development", - "Poverty" - ] - }, - { - "text": "Amend the draft Criminal Code and Code of Criminal Procedure to bring it into line with the Second Optional Protocol to the International Covenant on Civil and Political Rights on the abolition of the death penalty and adopt them as soon as possible and initiate an awareness campaign so that the public in Benin are aware of the impact of these changes", - "values": [ - "Death penalty", - "International instruments" - ] - }, - { - "text": "Continue to put in place public policies and programmes on human rights, including on the effective role of parliamentarians in the promotion and protection of human rights", - "values": [ - "General" - ] - }, - { - "text": "Persevere in including the needs of vulnerable groups in efforts to reduce poverty, particularly of persons with disabilities", - "values": [ - "Disabilities", - "Poverty" - ] - }, - { - "text": "Redouble its efforts to ensure that actions of police forces and detention conditions are fully in line with international human rights norms ", - "values": [ - "Detention", - "Human rights violations by state agents", - "International instruments" - ] - }, - { - "text": "Reconsider the possibility of ratifying the International Convention on the Protection of the Rights of All Migrant Workers and Members of Their Families", - "values": [ - "International instruments", - "Labour", - "Migrants" - ] - }, - { - "text": "Continue its efforts to increase the awareness on human rights through training and capacity-building for those involved in law enforcement and the judiciary, with the support of the international community ", - "values": [ - "Human rights education and training", - "Technical assistance and cooperation" - ] - }, - { - "text": "Ratify promptly the International Convention for the Protection of All Persons from Enforced Disappearance, the Optional Protocol to the Convention against Torture, and the Convention relating to the Status of Refugees", - "values": [ - "Asylum-seekers - refugees", - "Detention", - "Enforced disappearances", - "International instruments", - "Torture and other CID treatment" - ] - }, - { - "text": "Intensify its efforts in the area of human rights education and capacity-building, and organize training seminars on human rights for those working in relevant institutions and bodies ", - "values": [ - "Human rights education and training" - ] - }, - { - "text": "Better ensure the effective enforcement of laws against sexual harassment and adopt additional preventive and protective measures to combat sexual violence in the workplace ", - "values": [ - "Women's rights" - ] - }, - { - "text": "Further improve the rights of immigrants", - "values": [ - "Migrants" - ] - }, - { - "text": "Comply with the minimum international standards regarding capital executions, also by further implementing the already existing national legislation that protects juveniles and mentally impaired from being sentenced to death ", - "values": [ - "Death penalty", - "Disabilities", - "Rights of the Child" - ] - }, - { - "text": "Take effective legal steps to eliminate child and forced marriage", - "values": [ - "Rights of the Child", - "Women's rights" - ] - }, - { - "text": "Ensure that government entities budget more resources to implement the national action plan to reduce violence against women, increase support and legal protection for victims and improve national data collection", - "values": [ - "Women's rights" - ] - }, - { - "text": "Implement a standing invitation to all the Special Procedures of the Human Rights Council", - "values": [ - "Special procedures" - ] - }, - { - "text": "Consider an early ratification of the newest international human right instrument - the third Optional Protocol to the Convention on the Rights of the Child on a communication procedure ", - "values": [ - "International instruments", - "Rights of the Child" - ] - }, - { - "text": "Take specific measures to promote access to health-care services, especially in rural areas", - "values": [ - "Right to health" - ] - }, - { - "text": "Strengthen measures to systematically integrate gender in public policies and, where appropriate, through gender-sensitive budgeting ", - "values": [ - "Women's rights" - ] - }, - { - "text": "Complete the process of fully implementing its obligations under the Rome Statute into domestic law, in particular by adopting provisions allowing for full cooperation with the International Criminal Court ", - "values": [ - "International instruments", - "Justice" - ] - }, - { - "text": "Develop efficient programmes designed to enhance the human rights knowledge of law enforcement officials", - "values": [ - "Human rights education and training" - ] - }, - { - "text": "Consider adopting measures to enhance the fight against domestic violence", - "values": [ - "Rights of the Child", - "Women's rights" - ] - }, - { - "text": "Consider adapting the Marriage Act of 1971 and set a minimum marriage age at 18 years for boys and girls according to international standards", - "values": [ - "Rights of the Child" - ] - }, - { - "text": "Strengthen the legal framework in order to reduce the adverse effects affecting victims of domestic violence, in particular women", - "values": [ - "Rights of the Child", - "Women's rights" - ] - }, - { - "text": "Submit its first report to the UN Committee against Torture, which is overdue since 2003, in order to initiate the valuable dialogue with the Committee", - "values": [ - "Torture and other CID treatment", - "Treaty bodies" - ] - }, - { - "text": "The National Transitional Council (NTC) should work with international partners to establish a Central African Republic-owned security force that can ensure the long term protection of the Central African Republic population from attacks by individual and groups ", - "values": [ - "Public security" - ] - }, - { - "text": "Strengthen the institutional and operational capacity for the administration of justice and request the International community to provide Mozambique with technical assistance", - "values": [ - "Justice", - "Technical assistance and cooperation" - ] - }, - { - "text": "Take measures to facilitate access to justice for victims of sexual violence, such as by issuing the medical certificates necessary to lodge complaints for sexual violence ", - "values": [ - "Justice", - "Rights of the Child", - "Women's rights" - ] - }, - { - "text": "Ratify the Optional Protocol to CRC on a communication procedures to further ensue the rights of children victims", - "values": [ - "International instruments", - "Rights of the Child" - ] - }, - { - "text": "Ensure that war crimes and crimes against humanity are punished by acceding to the Rome Statute establishing the ICC", - "values": [ - "International instruments", - "Justice" - ] - }, - { - "text": "Apply effectively policies against racism and hate speech", - "values": [ - "Racial discrimination" - ] - }, - { - "text": "Continue efforts to maintain harmony and tolerance among different ethnic and religious groups in the country, and share its good experience with other countries in this area", - "values": [ - "Freedom of religion and belief", - "Minorities" - ] - }, - { - "text": "Intensify efforts to consolidate a broad national multisectoral strategy to combat structural discrimination, including verbal expressions, against indigenous peoples, Afro-descendants and other vulnerable groups, considering their specific needs and capacities, through the empowerment of their rights and fair reparation mechanisms", - "values": [ - "Indigenous peoples", - "Minorities", - "Racial discrimination" - ] - }, - { - "text": "Continue its efforts to further improve the standards of living of its population, including by improving access to education and health services", - "values": [ - "Right to education", - "Right to health" - ] - }, - { - "text": "Establish rules that limit preventive custody in the absence of formal criminal charges ", - "values": [ - "Detention" - ] - }, - { - "text": "Request the technical assistance of United Nations bodies in implementing ratified international instruments and for the effective functioning of structures which have been put in place", - "values": [ - "International instruments", - "Technical assistance and cooperation" - ] - }, - { - "text": "Acknowledge the harm done to the victims of sterilization, in particular Roma, and to bring perpetrators to Justice and provide reparations to the victims.", - "values": [ - "Minorities", - "Torture and other CID treatment" - ] - }, - { - "text": "Abolish articles 301 and 318 of the Penal Code, which limit freedom of expression ", - "values": [ - "Freedom of opinion and expression" - ] - }, - { - "text": "Continue strengthening measures to address and lessen the HIV/AIDS impact on women and children, in particular the mother-to-child- transmission", - "values": [ - "HIV - Aids", - "Rights of the Child", - "Women's rights" - ] - }, - { - "text": "A review of federal and state legislation with a view to restricting the number of offences carrying the death penalty ", - "values": [ - "Death penalty" - ] - }, - { - "text": "Consider sharing its experience and best practices in its efforts to strengthen the human rights values in the society through relevant United Nations mechanisms ", - "values": [ - "Special procedures", - "Treaty bodies", - "UPR process" - ] - }, - { - "text": "Continue its efforts to combat racism, intolerance and discrimination as well as to strive towards the integration of Roma and immigrants ", - "values": [ - "Minorities", - "Racial discrimination" - ] - }, - { - "text": "Continue to improve its legal instruments in the field of human rights and social protection", - "values": [ - "General" - ] - }, - { - "text": "Continue to consider entering into the International Covenant on Economic, Social and Cultural Rights.", - "values": [ - "ESC rights - general", - "International instruments" - ] - }, - { - "text": "Include a definition of torture into the Criminal Code, in line with article 1 of the Convention against Torture ", - "values": [ - "International instruments", - "Torture and other CID treatment" - ] - }, - { - "text": "Continue efforts to strengthen the legislative and institutional basis of the national system for the protection of human rights", - "values": [ - "General" - ] - }, - { - "text": "Urgently enact the Sexual Offences and Domestic Violence Bill, and ensure that all domestic legislation is brought into conformity with the country's commitments under the Convention on the Elimination of All Forms of Discrimination against Women ", - "values": [ - "International instruments", - "Rights of the Child", - "Women's rights" - ] - }, - { - "text": "Take appropriate measures with a view to facilitating access to work for women ", - "values": [ - "Women's rights" - ] - }, - { - "text": "Extend an open and standing invitation to all special procedures and respond positively to the visit request by the Working Group on Arbitrary Detention ", - "values": [ - "Detention", - "Special procedures" - ] - }, - { - "text": "Reform its education and training programmes, including those for the media and security officials, so that these programmes contribute more to the promotion of tolerance among nationalities and ethnic and religious groups", - "values": [ - "Freedom of religion and belief", - "Minorities", - "Right to education" - ] - }, - { - "text": "Consider ratifying the UNESCO Convention against Discrimination in Education", - "values": [ - "International instruments", - "Right to education" - ] - }, - { - "text": "Continue efforts in the promotion of women rights ", - "values": [ - "Women's rights" - ] - }, - { - "text": "Put in place awareness raising programmes targeting the police forces in order to prevent torture and other cruel, inhuman or degrading treatment or punishment, as well as to create effective investigation mechanisms to combat impunity in this area", - "values": [ - "Human rights education and training", - "Impunity", - "Torture and other CID treatment" - ] - }, - { - "text": "Continue to promote economic rights in order to improve the living conditions of the population", - "values": [ - "ESC rights - general" - ] - }, - { - "text": "Consider the further harmonization of the prohibition of corporal punishment of children with international standards", - "values": [ - "Rights of the Child", - "Torture and other CID treatment" - ] - }, - { - "text": "Continue its consideration to ratify the International Convention on the Protection of the Rights of All Migrant Workers and Their Families", - "values": [ - "International instruments", - "Labour", - "Migrants" - ] - }, - { - "text": "Take steps to prevent the harassment or discrimination of lesbian, gay, bisexual, transgender and intersex persons and prosecute perpetrators", - "values": [ - "Sexual Orientation and Gender Identity" - ] - }, - { - "text": "Combat violence against women by putting an end to impunity in this area", - "values": [ - "Impunity", - "Women's rights" - ] - }, - { - "text": "Work on adopting new laws to promote gender equality, women's participation in public affairs and punish domestic violence ", - "values": [ - "Women's rights" - ] - }, - { - "text": "Remove from its legislation and practice all civil and criminal provisions which constitute discrimination towards women and girls", - "values": [ - "Rights of the Child", - "Women's rights" - ] - }, - { - "text": "Create the national council of women for the follow-up of the implementation of the Equal Rights and Opportunities Act", - "values": [ - "Women's rights" - ] - }, - { - "text": "Continue programmes and policies for the economic empowerment of women", - "values": [ - "Women's rights" - ] - }, - { - "text": "Accede to the international treaties on human rights and ratify ICCPR", - "values": [ - "CP rights - general", - "International instruments" - ] - }, - { - "text": "Create in Parliament a process to control the conformity of laws with the international commitments of the country in the field of human rights", - "values": [ - "International instruments" - ] - }, - { - "text": "Consider adopting all necessary measures to achieve the non-discrimination, protection and integration of the LGBT population", - "values": [ - "Sexual Orientation and Gender Identity" - ] - }, - { - "text": "Establish an independent body to deal with complaints and investigations concerning impunity of the forces of law and order when they carry out heinous actions, and train the police to use force in accordance with international human rights standards ", - "values": [ - "Human rights education and training", - "Human rights violations by state agents", - "Impunity", - "International instruments", - "Justice" - ] - }, - { - "text": "Establish an adequate mechanism to ensure an effective response to sexual and domestic violence", - "values": [ - "Rights of the Child", - "Women's rights" - ] - }, - { - "text": "Take all necessary measures to ensure that the human right to non-discrimination is applied and that the human rights of all persons, including lesbian, gay, bisexual, transgender and intersex persons, are fully respected and protected", - "values": [ - "Sexual Orientation and Gender Identity" - ] - }, - { - "text": "Consider positively the ratification of the conventions on enforced disappearance, the migrant workers, refugees, statelessness and the reduction of cases of statelessness, and the Optional Protocol to CAT ", - "values": [ - "International instruments", - "Statelessness and the right to nationality" - ] - }, - { - "text": "Investigate thoroughly all deaths, both those involving State security forces allegedly killing suspects in self-defence and those perpetrated by unknown assassins", - "values": [ - "Extrajudicial executions", - "Human rights violations by state agents" - ] - }, - { - "text": "Consider, in its spirit of commitment, the possibility of acceding to CMW ", - "values": [ - "International instruments", - "Migrants" - ] - }, - { - "text": "Accede to regional and international treaties to which it is not party, including the International Convention on the Protection of the Rights of All Migrant Workers and Members of Their Families and the International Convention for the Protection of All Persons from Enforced Disappearance, and include the provisions of these instruments in its domestic legislation ", - "values": [ - "Enforced disappearances", - "International instruments", - "Labour", - "Migrants" - ] - }, - { - "text": "Continue implementing programmes to realize the right to education for all, including by increasing budget allocation for education and training programmes for all children in the country", - "values": [ - "Right to education", - "Rights of the Child" - ] - }, - { - "text": "Repeal or amend the Sedition Act and the Newspaper Act 1958 to ensure that they conform with international human rights standards, including by guaranteeing the right to freedom of expression ", - "values": [ - "Freedom of opinion and expression", - "Freedom of the press", - "International instruments" - ] - }, - { - "text": "Increase the focus, targeted efforts and effective measures regarding eliminating discrimination, and to make further efforts and measures to promote the rights of minorities, inter alia, ethnic minorities.", - "values": [ - "Minorities", - "Racial discrimination" - ] - }, - { - "text": "Criminalize explicitly domestic violence and marital rape and make sure that the definition of rape is in line with international standards, and take steps to facilitate the reporting of domestic and sexual violence and protect victims", - "values": [ - "Rights of the Child", - "Women's rights" - ] - }, - { - "text": "Continue to promote and strengthen the realization of women's rights, with special attention on equal rights and opportunities in the labour market ", - "values": [ - "Women's rights" - ] - }, - { - "text": "Ensure independence and adequate financial resources for the Sudanese Human Right's Commission", - "values": [ - "National Human Rights Institution" - ] - }, - { - "text": "Strengthen efforts towards elimination of violence against women", - "values": [ - "Women's rights" - ] - }, - { - "text": "Take the necessary measures to combat incidents of ritual killings of children and adults in various parts of Uganda and to ensure effective investigation and prosecution of these crimes ", - "values": [ - "Rights of the Child" - ] - }, - { - "text": "Adopt the measures necessary to combat discrimination of all kinds, including those based on sexual orientation, gender, colour, religion and political opinion.", - "values": [ - "Freedom of opinion and expression", - "Freedom of religion and belief", - "Racial discrimination", - "Sexual Orientation and Gender Identity", - "Women's rights" - ] - }, - { - "text": "Step up efforts to eliminate occupational exclusion, to ensure equal pay for work of equal value to men and women.", - "values": [ - "Women's rights" - ] - }, - { - "text": "Expedite the development of a national plan for human rights education", - "values": [ - "Right to education" - ] - }, - { - "text": "Strengthen its cooperation with the United Nations Support Mission in Libya and the Office of the United Nations High Commissioner for Human Rights in order to resume capacity-building of national institutions dealing with human rights, transitional justice and the rule of law, according to its Government's expressed wishes", - "values": [ - "Justice", - "Technical assistance and cooperation" - ] - }, - { - "text": "Strengthen the fight against discrimination affecting the Roma minority in access to housing, employment, education, social services and participation in public life ", - "values": [ - "ESC rights - general", - "Labour", - "Minorities", - "Right to education", - "Right to housing" - ] - }, - { - "text": "Provide access to Ingushetia for the United Nations Working Group on enforced disappearances and the Special Rapporteurs on torture and extrajudicial, summary or arbitrary executions", - "values": [ - "Detention", - "Enforced disappearances", - "Extrajudicial executions", - "Special procedures", - "Torture and other CID treatment" - ] - }, - { - "text": "Continue to promote gender equality and ensure equal opportunities for all women and girls", - "values": [ - "Rights of the Child", - "Women's rights" - ] - }, - { - "text": "Amend its domestic law to prohibit discrimination based on disability, and adopt a national plan to address the needs of the disabled community ", - "values": [ - "Disabilities" - ] - }, - { - "text": "Ratify ILO Convention No. 189 concerning decent work for female and male domestic workers ", - "values": [ - "International instruments", - "Labour" - ] - }, - { - "text": "Take the necessary measures for the abolition of death penalty", - "values": [ - "Death penalty" - ] - }, - { - "text": "Ratify the Optional Protocol to the Convention on the Elimination of All Forms of Discrimination against Women and further strengthen efforts on gender issues", - "values": [ - "Women's rights" - ] - }, - { - "text": "Consider the possibility of ratifying CRPD and its Optional Protocol, CED, OP-CESCR", - "values": [ - "Disabilities", - "ESC rights - general", - "Enforced disappearances", - "International instruments" - ] - }, - { - "text": "Extend/Issue a standing invitation to the Special Procedures of the Human Rights Council ", - "values": [ - "Special procedures" - ] - }, - { - "text": "Formally accept a request to visit by the Special Rapporteur on extrajudicial, summary or arbitrary executions and issue an invite in 2016", - "values": [ - "Extrajudicial executions", - "Special procedures" - ] - }, - { - "text": "Close Guantanamo and secret centers of detention in the world, punish agents that torture, disappear and execute persons who have been arbitrarily detained, and compensate victims", - "values": [ - "Detention", - "Enforced disappearances", - "Extrajudicial executions", - "Human rights violations by state agents", - "Torture and other CID treatment" - ] - }, - { - "text": "Continue its efforts to combat discrimination and ensure that manifestations of racial, ethnic and religious hatred are promptly investigated and acted upon accordingly, and in this regard, intensify its efforts in enacting anti-discrimination laws ", - "values": [ - "Freedom of religion and belief", - "Racial discrimination" - ] - }, - { - "text": "Take special and effective measures to guarantee freedom of religion", - "values": [ - "Freedom of religion and belief" - ] - }, - { - "text": "Seek the assistance of the international community to effectively support its efforts to face material, technical and financial challenges, which remain the major handicap to promoting fundamental human rights in the country. ", - "values": [ - "Technical assistance and cooperation" - ] - }, - { - "text": "Continue its efforts in order to eliminate child marriage", - "values": [ - "Rights of the Child" - ] - }, - { - "text": "Provide adequate health care for children with low economic status, as well as children who are not documented", - "values": [ - "Right to health", - "Rights of the Child" - ] - }, - { - "text": "Establish legislation to monitor and address human trafficking", - "values": [ - "Trafficking" - ] - }, - { - "text": "Criminalize all acts of sexual violence and rape in marriage ", - "values": [ - "Rights of the Child", - "Women's rights" - ] - }, - { - "text": "Continue to address the promotion and protection of the rights of persons with disabilities by developing specific employment programmes", - "values": [ - "Disabilities", - "Labour" - ] - }, - { - "text": "Implement the EU Directive on trafficking in human beings by April 2013 and sign the Council of Europe Convention on Preventing and Combating Violence Against Women and Domestic Violence ", - "values": [ - "Rights of the Child", - "Trafficking", - "Women's rights" - ] - }, - { - "text": "Intensify its efforts to counter gender discrimination ", - "values": [ - "Women's rights" - ] - }, - { - "text": "Consider ratifying ICERD, CAT and CRPD and the Optional Protocol thereto, as a further step towards fulfilling its pledge to advance human rights", - "values": [ - "Detention", - "Disabilities", - "International instruments", - "Racial discrimination", - "Torture and other CID treatment" - ] - }, - { - "text": "Ratify the United Nations Educational, Scientific and Cultural Organization (UNESCO) Convention against Discrimination in Education (1960) ", - "values": [ - "International instruments", - "Right to education" - ] - }, - { - "text": "Raise social awareness against any form of xenophobic and racist thinking and attitudes for the benefit of sustainable development and regional stability", - "values": [ - "Development", - "Racial discrimination" - ] - }, - { - "text": "Bring its legislation on the determination of the status of refugees and stateless persons in line with international standards", - "values": [ - "Asylum-seekers - refugees", - "Statelessness and the right to nationality" - ] - }, - { - "text": "Fully investigate abuses by law enforcement officials, namely extra judicial killings, acts of torture and ill-treatment of detainees and arbitrary detentions and human rights violations and ensure that the perpetrators are duly punished", - "values": [ - "Detention", - "Extrajudicial executions", - "Torture and other CID treatment" - ] - }, - { - "text": "Continue the measures implemented for the right to water and sanitation within the framework of General Assembly resolution 64/292 ", - "values": [ - "Right to water and sanitation" - ] - }, - { - "text": "Allocate sufficient resources to ensure the effective implementation of the torture prevention mechanism", - "values": [ - "Torture and other CID treatment" - ] - }, - { - "text": "Amend the 2011 Transnational Crime Bill to prohibit all forms of human trafficking by removing migration as a necessary element of human trafficking, prescribe penalties that are commensurate with those prescribed for other serious crimes, and publicly report any investigations, prosecutions, convictions, or sentences of trafficking offenders under this law, or other statute ", - "values": [ - "Trafficking" - ] - }, - { - "text": "Informs of the measures that will be enforced to support the health system", - "values": [ - "Right to health" - ] - }, - { - "text": "Reform judicial practices under its anti-terrorism law, so that the law cannot be used as a pretext for arrests without warrants and lengthy detentions without trial, in violation of due process rights", - "values": [ - "Counter-terrorism", - "Detention" - ] - }, - { - "text": "Ensure that the provisions contained in the international human rights instruments which Botswana has ratified are transposed into national law ", - "values": [ - "International instruments" - ] - }, - { - "text": "Enact legislation explicitly prohibiting female genital mutilation, and ensure that offenders are prosecuted and punished ", - "values": [ - "Rights of the Child", - "Torture and other CID treatment", - "Women's rights" - ] - }, - { - "text": "Solicit assistance from the international community in the framework of technical and financial assistance to strengthen its capacity in the area of human rights and promotion, in order to allow the reform of the security sector and restore the rule of law, a sine qua non condition for a real enjoyment of human rights", - "values": [ - "Justice", - "Public security", - "Technical assistance and cooperation" - ] - }, - { - "text": "Re-introduce the moratorium on executions with a view to definitively abolishing the death penalty", - "values": [ - "Death penalty" - ] - }, - { - "text": "Cease immediately the expansion of settlements and the operations of destruction, inter alia, in East Jerusalem of houses belonging to Palestinian families.", - "values": [ - "Right to housing", - "Right to land" - ] - }, - { - "text": "Consider establishing a national action plan on the rights of the child ", - "values": [ - "Rights of the Child" - ] - }, - { - "text": "Reform existing laws that can be used to discriminate against lesbian, gay, bisexual, transgender and intersex persons, including article 534 of the Lebanese Penal Code criminalising "sexual acts against nature"", - "values": [ - "Sexual Orientation and Gender Identity" - ] - }, - { - "text": "Withdraw support from the proposed amendment that would curtail the power of the Ombudsman Commission, especially its ability to investigate independently human rights violations ", - "values": [ - "National Human Rights Institution" - ] - }, - { - "text": "Continue to promote human rights education at all levels and strengthen human rights training and capacity-building for public sector officials", - "values": [ - "Human rights education and training" - ] - }, - { - "text": "Support the United Nations Declaration on the Rights of Indigenous Peoples.", - "values": [ - "Indigenous peoples", - "International instruments" - ] - }, - { - "text": "Carry out awareness-raising campaigns in relation to the lack of deterrent effects in the application of the capital punishment and establish a de jure moratorium aiming the total abolition of the death penalty", - "values": [ - "Death penalty" - ] - }, - { - "text": "Adhere to the Convention against Torture and to the International Convention for the Protection of All Persons from Enforced Disappearance", - "values": [ - "Enforced disappearances", - "International instruments", - "Torture and other CID treatment" - ] - }, - { - "text": "Consider ratifying ILO Convention No. 118 on Equality of Treatment ", - "values": [ - "International instruments", - "Labour" - ] - }, - { - "text": "Additionally, in view of the existence of the dualist system for the implementation of international conventions, enact domestic laws to make sure that there is real enforcement of the international instruments that Saint Lucia is party to ", - "values": [ - "International instruments" - ] - }, - { - "text": "Ensure the establishment of a moratorium of the death penalty in those states that have not abolished it yet", - "values": [ - "Death penalty" - ] - }, - { - "text": "Progressively accomplish human rights goals as set forth in Human Rights Council resolution 9-12, in particular increased cooperation with all mechanisms of the United Nations human rights system, including special procedures and treaty bodies", - "values": [ - "Special procedures", - "Treaty bodies", - "UPR process" - ] - }, - { - "text": "Adopt and implement appropriate efficient policies and programmes strengthen its efforts in raising public awareness to eliminate child labour ", - "values": [ - "Human rights education and training", - "Labour", - "Rights of the Child" - ] - }, - { - "text": "Enact specific legislation to prohibit racism and racial discrimination ", - "values": [ - "Racial discrimination" - ] - }, - { - "text": "Adopt and implement the Children's Bill", - "values": [ - "Rights of the Child" - ] - }, - { - "text": "Address the gap that prevents transgender persons from legal recognition", - "values": [ - "Sexual Orientation and Gender Identity" - ] - }, - { - "text": "Take proactive measures to ensure the equality of women in all matters related to property inheritance.", - "values": [ - "Women's rights" - ] - }, - { - "text": "Ratify the OP-ICESCR, OP-CAT and CPED. Ratify furthermore the Rome Statute that Israel signed in 2000", - "values": [ - "Detention", - "ESC rights - general", - "Enforced disappearances", - "International instruments", - "Justice", - "Torture and other CID treatment" - ] - }, - { - "text": "Take the necessary measures to combat discrimination against women, strengthen its domestic legislation on the rights of women and adequately enforce CEDAW provisions", - "values": [ - "International instruments", - "Women's rights" - ] - }, - { - "text": "Consider the implementation of initiatives aimed at identifying needs on the situation of gender related human rights, in order to acquire information to strengthen the national legislation and public policies in this area", - "values": [ - "Women's rights" - ] - }, - { - "text": "Continue strengthening the capacity of government institutions, including the judiciary, police, prison service and government ministries, on the application of a human rights-based approach", - "values": [ - "Detention", - "Human rights education and training", - "Justice" - ] - }, - { - "text": "While commending ongoing efforts of the Government, strengthen the efforts aimed at protecting Amerindians from marginalization and at defending their issues and not subject them to any discrimination ", - "values": [ - "Minorities" - ] - }, - { - "text": "Finalise the consideration to become a party to the Convention on the Rights of Persons with Disabilities ", - "values": [ - "Disabilities", - "International instruments" - ] - }, - { - "text": "Ensure that criminal provisions are not misused to curb the ability of human rights defenders or other protesters to exercise their rights to freedom of expression, assembly and association and that appropriate authorities reconsider the cases of those arrested and prosecuted ", - "values": [ - "Freedom of association and peaceful assembly", - "Freedom of opinion and expression", - "Human rights defenders" - ] - }, - { - "text": "Install mechanisms to ensure the compatibility of popular initiatives with the human rights commitments of Switzerland", - "values": [ - "Other" - ] - }, - { - "text": "Facilitate the active involvement of civil society stakeholders, including human rights non-governmental organizations, in the follow-up to this review, especially to address violence against women and children and child abuse ", - "values": [ - "Civil society", - "Rights of the Child", - "UPR process", - "Women's rights" - ] - }, - { - "text": "Implement the recommendation of the Committee on the Elimination of Racial Discrimination to declare illegal and prohibit organizations which promote and incite racial discrimination", - "values": [ - "Racial discrimination", - "Treaty bodies" - ] - }, - { - "text": "Step up the fight against corruption, including in ensuring a level playing field and competitive bidding in public procurement", - "values": [ - "Corruption" - ] - }, - { - "text": "Continue to introduce effective measures to combat all forms of discrimination, hate speech and hate crime, both online and offline, and ensure that such crimes are effectively investigated", - "values": [ - "Racial discrimination" - ] - }, - { - "text": "Commitment to raising the age for compulsory education to 18 years.", - "values": [ - "Right to education", - "Rights of the Child" - ] - }, - { - "text": "Make available to the Office of the Ombudsman appropriate means and sufficient financial resources to accomplish its missions", - "values": [ - "National Human Rights Institution" - ] - }, - { - "text": "Share best practices in promoting religious tolerance and harmony in society", - "values": [ - "Freedom of religion and belief" - ] - }, - { - "text": "Adopt a comprehensive anti-discrimination law that will protect the rights of all migrants", - "values": [ - "Migrants", - "Racial discrimination" - ] - }, - { - "text": "Strengthen actions on equal opportunities ", - "values": [ - "Development" - ] - }, - { - "text": "Take actions to improve sexual and reproductive health and rights according to previous recommendations and formulate a national strategy on sexual and reproductive health and rights, and integrate sexual and reproductive health into the next national health programme for 2026-2036", - "values": [ - "Right to health", - "Rights of the Child", - "Women's rights" - ] - }, - { - "text": "Pay close attention to the problem of violation of the rights of Roma, to their social situation, medical care, and their possibility to obtain adequate education", - "values": [ - "Minorities", - "Right to education", - "Right to health" - ] - }, - { - "text": "Seek and avail itself of technical assistance opportunities for training of personnel in international human rights treaty monitoring and reporting", - "values": [ - "Human rights education and training", - "Technical assistance and cooperation", - "Treaty bodies" - ] - }, - { - "text": "Respect freedom of religion and belief, revise the text of the 2006 Ordinance, and suspend its application in the meantime. ", - "values": [ - "Freedom of religion and belief" - ] - }, - { - "text": "Urgently amend relevant legislation to expressly prohibit corporal punishment in schools and at home and implement educational measures promoting positive and non-violent forms of discipline", - "values": [ - "Human rights education and training", - "Rights of the Child", - "Torture and other CID treatment" - ] - }, - { - "text": "Ensure that children under 18 are handled by the juvenile justice system in all circumstances", - "values": [ - "Justice", - "Rights of the Child" - ] - }, - { - "text": "Continue efforts to fight violence against women and children ", - "values": [ - "Rights of the Child", - "Women's rights" - ] - }, - { - "text": "Continue its efforts to bring the NHRI in line with the Paris Principles", - "values": [ - "National Human Rights Institution" - ] - }, - { - "text": "Expedite the implementation of all measures to address the situation of vulnerable groups in particular women and children.", - "values": [ - "Rights of the Child", - "Women's rights" - ] - }, - { - "text": "Abolish capital punishment, and as an interim measure, introduce a moratorium on the death penalty", - "values": [ - "Death penalty" - ] - }, - { - "text": "Take steps to open prompt, impartial, thorough and effective investigations into alleged violations of international human rights law committed by law enforcement agencies in order to bring all the perpetrators to justice", - "values": [ - "Human rights violations by state agents" - ] - }, - { - "text": "Ensure freedom of expression and information through the independence and pluralism of the media ", - "values": [ - "Freedom of the press" - ] - }, - { - "text": "Continue taking comprehensive measures to better integrate persons with disabilities into society", - "values": [ - "Disabilities" - ] - }, - { - "text": "Expedite the efforts to ratify the ICCPR", - "values": [ - "CP rights - general", - "International instruments" - ] - }, - { - "text": "Protect and promote rights of all minorities including Rohingya Muslims", - "values": [ - "Freedom of religion and belief", - "Minorities" - ] - }, - { - "text": "Amend relevant national legislation in line with the Convention against Torture", - "values": [ - "International instruments", - "Torture and other CID treatment" - ] - }, - { - "text": "Appoint the members of the Human Rights Commission and provide the necessary means for its functioning and independence", - "values": [ - "National Human Rights Institution" - ] - }, - { - "text": "Revise the Press Code and other relevant legislation so that they would allow the enjoyment of freedom of information in line with international standards ", - "values": [ - "Freedom of opinion and expression" - ] - }, - { - "text": "Accelerate the elaboration of a national plan of action with a view to instilling a culture of human rights", - "values": [ - "General" - ] - }, - { - "text": "Review the legislation on defamation and strengthen the training for judges on the implementation of freedom of expression", - "values": [ - "Freedom of opinion and expression", - "Human rights education and training", - "Justice" - ] - }, - { - "text": "Take all necessary steps to ensure that key government institutions responsible for tackling human trafficking - especially of women and children - are properly funded", - "values": [ - "Rights of the Child", - "Trafficking", - "Women's rights" - ] - }, - { - "text": "Continue to consolidate the rights of women and people belonging to vulnerable groups, including indigenous peoples and persons of diverse sexual orientation and gender identity, both within its legal framework and in practice", - "values": [ - "Indigenous peoples", - "Sexual Orientation and Gender Identity", - "Women's rights" - ] - }, - { - "text": "Create an environment more conducive to stronger civil society in the country, including by guaranteeing the full legitimacy of human rights defenders, in accordance to the United Nations Declaration on Human Rights Defenders, to spare them the intimidation to which they have thus far been subjected", - "values": [ - "Civil society", - "Human rights defenders", - "International instruments" - ] - }, - { - "text": "Continue efforts for developing trust among the population with regard to the judiciary ", - "values": [ - "Justice" - ] - }, - { - "text": "Release political prisoners", - "values": [ - "Detention", - "Freedom of opinion and expression" - ] - }, - { - "text": "Codify torture as an offence in law, in keeping with the definition set out in CAT", - "values": [ - "International instruments", - "Torture and other CID treatment" - ] - }, - { - "text": "Revise the legislation linked to apostasy and blasphemy to ensure its conformity with international obligations related to freedom of religion or belief", - "values": [ - "Freedom of religion and belief" - ] - }, - { - "text": "Adopt a national action plan on gender mainstreaming", - "values": [ - "Women's rights" - ] - }, - { - "text": "Create a compliant mechanism to determine reparations for the victims of sexual violence", - "values": [ - "Women's rights" - ] - }, - { - "text": "Maintain the quality of public health of the country as a priority ", - "values": [ - "Right to health" - ] - }, - { - "text": "Conduct awareness-raising activities to change socio-cultural practices and stereotypes that impinge on gender equality ", - "values": [ - "Human rights education and training", - "Women's rights" - ] - }, - { - "text": "Engage the civil society in the process of implementation of the UPR recommendations", - "values": [ - "Civil society", - "UPR process" - ] - }, - { - "text": "Formulate a systematic approach toward eradication of stereotypes regarding women in society creating a climate of zero tolerance for violence against women", - "values": [ - "Women's rights" - ] - }, - { - "text": "Consider establishing a de jure moratorium on capital punishment and commute the existing death sentences", - "values": [ - "Death penalty" - ] - }, - { - "text": "Ensure that children with disabilities are able to exercise their right to education and provide their inclusion in the mainstream education system", - "values": [ - "Disabilities", - "Right to education", - "Rights of the Child" - ] - }, - { - "text": "Grant full access to all prison facilities in the country to the representatives of ICRC and other international mechanisms, such as the Special Rapporteurs on torture, and human rights defenders, and the Working Group on Arbitrary Detention in accordance with their request ", - "values": [ - "Detention", - "Human rights defenders", - "Special procedures", - "Torture and other CID treatment" - ] - }, - { - "text": "Continue its efforts to raise public awareness of human rights", - "values": [ - "Human rights education and training" - ] - }, - { - "text": "Respect international provisions in the area of the protection of minorities and vulnerable groups, particularly Pygmies and Mbororo", - "values": [ - "Indigenous peoples", - "Minorities" - ] - }, - { - "text": "Adopt the draft law on the prevention of torture and ensure that it complies with the provisions of the Convention against Torture and Other Cruel, Inhuman or Degrading Treatment or Punishment", - "values": [ - "Torture and other CID treatment" - ] - }, - { - "text": "Continue to intensify endeavours for combating poverty at local level and for integration of vulnerable population into the economy", - "values": [ - "Poverty" - ] - }, - { - "text": "Investigate all human rights violations committed by security forces in 2009, and establish reparation mechanisms for victims ", - "values": [ - "Human rights violations by state agents" - ] - }, - { - "text": "Step up efforts to achieve an effective participation of minorities in political life", - "values": [ - "Minorities" - ] - }, - { - "text": "Review and eliminate laws that discriminate against women, especially in issues of inheritance, and bring in line with international standards ", - "values": [ - "Women's rights" - ] - }, - { - "text": "Adopt the Special Rapporteur's (regarding trafficking in persons) recommendation to intensify efforts to eliminate all forms of violence against women and girls, and to bring perpetrators to account", - "values": [ - "Rights of the Child", - "Special procedures", - "Trafficking", - "Women's rights" - ] - }, - { - "text": "Define enforced disappearance as a criminal offence in the Penal Code", - "values": [ - "Enforced disappearances" - ] - }, - { - "text": "Strengthen access for persons with disabilities in all areas, particularly their political participation such as voting ", - "values": [ - "Disabilities", - "Elections" - ] - }, - { - "text": "Deploy more efforts in order to address the problem of street children and child work and to devise training programs and to improve qualifications of those working in the field in order to receive the necessary technical cooperation assistance from human rights mechanisms and other relevant organisations", - "values": [ - "Rights of the Child", - "Technical assistance and cooperation" - ] - }, - { - "text": "Align its national legislation with international standards to uphold freedom of assembly and association ", - "values": [ - "Freedom of association and peaceful assembly" - ] - }, - { - "text": "Continue to promote and protect effectively, in law and in practice, the human rights of women and of internally displaced persons ", - "values": [ - "Internally displaced persons", - "Women's rights" - ] - }, - { - "text": "Take decisive steps to end violence against women, for instance by sending a strong public message of zero tolerance and by working together with men and women to break the cycle of violence", - "values": [ - "Women's rights" - ] - }, - { - "text": "Continue efforts to ratify CPED", - "values": [ - "Enforced disappearances", - "International instruments" - ] - }, - { - "text": "Modify the penal code in order to restore access to legal and safe therapeutic abortion and the right for the victims of sexual abuse to a legal, safe and unconditioned abortion", - "values": [ - "Women's rights" - ] - }, - { - "text": "Malaysia reiterated its commitment not to reintroduce broad powers of preventive detention and refuted the allegation that the POCA amendments marked the return of the repealed Internal Security Act 1960.", - "values": [ - "Detention" - ] - }, - { - "text": "Strengthen the legislative framework through the criminalization of all forms of violence against women and children, including within the family, and foresee infrastructures to shelter victims", - "values": [ - "Rights of the Child", - "Women's rights" - ] - }, - { - "text": "Set up adequate mechanisms that allow for the development of legislation and support prevention and protection policies for children in all fields", - "values": [ - "Rights of the Child" - ] - }, - { - "text": "Incorporate its international obligations under human rights instruments into domestic law", - "values": [ - "International instruments" - ] - }, - { - "text": "Ratify the human rights instruments to which it is not yet party, in particular the International Convention on the Protection of the Rights of All Migrant Workers and Members of Their Families", - "values": [ - "International instruments", - "Labour", - "Migrants" - ] - }, - { - "text": "Ensure that children living or working in the street be provided with adequate protection, assistance, nutrition and shelter as well as with health care and educational opportunities ", - "values": [ - "Rights of the Child" - ] - }, - { - "text": "Promote and amend legislation to guarantee the protection of citizens who have been discriminated against based on their sexual orientation, gender identity or the fact that they are infected with HIV-AIDS ", - "values": [ - "HIV - Aids", - "Sexual Orientation and Gender Identity" - ] - }, - { - "text": "Prohibit corporal punishment of children in all settings, including in the home", - "values": [ - "Rights of the Child", - "Torture and other CID treatment" - ] - }, - { - "text": "Ensure independent access by international humanitarian agencies to assess the well-being of prisoners detained without trial, or in continued detention following the acquittal or commuting of their sentences ", - "values": [ - "Detention", - "Justice" - ] - }, - { - "text": "Continue the work aimed at amending rules regarding the stay of proceedings in cases of \u201cminor\u201c violence in relationships and regarding the categorization of such cases", - "values": [ - "Other" - ] - }, - { - "text": "Continue implementing the policy of free, public, compulsory education, redefining the length and cycles, including by allocating sufficient budget and resources", - "values": [ - "Right to education" - ] - }, - { - "text": "Design and adopt programmes of action on child labour, as requested by the Committee on the Rights of the Child and ILO.", - "values": [ - "Labour", - "Rights of the Child", - "Treaty bodies" - ] - }, - { - "text": "Continue its action to promote freedom of expression and to accelerate the adoption of new law of press ", - "values": [ - "Freedom of opinion and expression", - "Freedom of the press" - ] - }, - { - "text": "Establish a robust and well-resourced national preventive mechanism in accordance with the Optional Protocol to the Convention against Tortureand Other Cruel, Inhuman or Degrading Treatment or Punishment", - "values": [ - "Detention", - "International instruments", - "Torture and other CID treatment" - ] - }, - { - "text": "Make continued efforts to eradicate poverty and extreme poverty ", - "values": [ - "Poverty" - ] - }, - { - "text": "Integrate the Istanbul Protocol into the training of personnel", - "values": [ - "Human rights education and training" - ] - }, - { - "text": "Adopt a new action plan against trafficking, reduce the time taken to issue residence permits and remove disparities thereof between cantons and remove structural and individual obstacles to work and training for migrants to combat racial discrimination through legal and administrative measures", - "values": [ - "Human rights education and training", - "Migrants", - "Racial discrimination", - "Trafficking" - ] - }, - { - "text": "Continue improving the outreach to all ethnic communities to actively participate in the political process so as to strengthen Ethiopia's democracy and prevent potential conflicts ", - "values": [ - "Minorities" - ] - }, - { - "text": "Continue its efforts to improve the living conditions of migrants in detention and to bring its immigration detention system in line with the international human rights law and standards", - "values": [ - "Detention", - "International instruments", - "Migrants" - ] - }, - { - "text": "Adopt a broadly applicable anti-discrimination law, including a comprehensive definition of discrimination, with a view to ensuring the prohibition of all forms of direct and indirect discrimination, including on the basis of age, gender, religion, sexual orientation, ethnicity or nationality", - "values": [ - "Freedom of religion and belief", - "Minorities", - "Racial discrimination", - "Sexual Orientation and Gender Identity", - "Women's rights" - ] - }, - { - "text": "Invite special procedures to visit Fiji, in particular the Special Rapporteur on the independence of judges and lawyers and the Special Rapporteur on the promotion and protection of the right to freedom of opinion and expression", - "values": [ - "Freedom of opinion and expression", - "Justice", - "Special procedures" - ] - }, - { - "text": "Continue human rights education to all Guatemalans, in order for this generation and future generations to leave behind forever the culture of violence inherited from years of internal armed conflict.", - "values": [ - "Human rights education and training" - ] - }, - { - "text": "Continue its efforts aimed at eliminating discrimination and preventing violence against women and children, as well as taking further measures, with a longer-term strategy, aimed at protecting women\u2019s rights", - "values": [ - "Women's rights" - ] - }, - { - "text": "Bring rape laws in line with international standards and remove the 35-day limitation on lodging a complaint of rape with the police", - "values": [ - "Women's rights" - ] - }, - { - "text": "Accelerate the ratification of the ICRMW", - "values": [ - "International instruments", - "Labour", - "Migrants" - ] - }, - { - "text": "Fully implement its international obligations to ensure the protection of human rights defenders and other civil society actors while exercising their human rights, including the freedoms of expression, association and assembly", - "values": [ - "Civil society", - "Freedom of association and peaceful assembly", - "Freedom of opinion and expression", - "Human rights defenders" - ] - }, - { - "text": "Further promote freedom of expression, association and the press", - "values": [ - "Freedom of association and peaceful assembly", - "Freedom of opinion and expression", - "Freedom of the press" - ] - }, - { - "text": "Adopt additional public policies aimed at eradicating discrimination against women in rural areas", - "values": [ - "Women's rights" - ] - }, - { - "text": "Take further steps in order to encourage women\u2019s access to work and eliminate the gender pay gap", - "values": [ - "Labour", - "Women's rights" - ] - }, - { - "text": "Continue its work to ratify the Law on Adoption and the Hague Convention on the Protection of Children and Co-operation in Respect of Intercountry Adoption ", - "values": [ - "International instruments", - "Rights of the Child" - ] - }, - { - "text": "Continue to improve the human rights situation in the country, in the light of the improvements made so far ", - "values": [ - "General" - ] - }, - { - "text": "Strengthen legal and policy frameworks and programmes for the promotion and the protection of the rights of people of African Descent, including through promoting the employment of people of African Descent in public administration and private enterprises, and promoting the integration of women of African descent into the labour market ", - "values": [ - "Labour", - "Minorities", - "Women's rights" - ] - }, - { - "text": "Sign and ratify the Optional Protocol of the International Covenant on Economic, Social and Cultural Rights allowing individual complaints of alleged violations of these rights to be heard by CESCR ", - "values": [ - "ESC rights - general", - "International instruments" - ] - }, - { - "text": "Establish a special entity entrusted with promoting women's rights or, alternatively, to expand the functions of the Equal Opportunities Commission", - "values": [ - "Women's rights" - ] - }, - { - "text": "Adopt a moratorium on executions with a view to fully abolishing the death penalty ", - "values": [ - "Death penalty" - ] - }, - { - "text": "Further ensure access to compulsory education and equal learning opportunities for all children", - "values": [ - "Right to education", - "Rights of the Child" - ] - }, - { - "text": "Accede to the 1954 Convention relating to the Status of Stateless Persons and to the 1961 Convention on the Reduction of Statelessness ", - "values": [ - "International instruments", - "Statelessness and the right to nationality" - ] - }, - { - "text": "Ratify CEDAW and adopt legislation to protect victims of domestic violence ", - "values": [ - "International instruments", - "Women's rights" - ] - }, - { - "text": "Ratify the three optional protocols to the Convention on the Rights of the Child: the Optional Protocol on the sale of children, the Optional Protocol on the involvement of children in armed conflict, and the third Optional Protocol on a communications procedure", - "values": [ - "International humanitarian law", - "International instruments", - "Labour", - "Rights of the Child", - "Trafficking" - ] - }, - { - "text": "Continue its efforts in promoting and protecting human rights through a regional framework, enhancing capacity-building and dialogue to empower States to solve their own human rights challenges with international assistance", - "values": [ - "Technical assistance and cooperation" - ] - }, - { - "text": "Ratify the Rome Statue of the International Criminal Court in accordance with the commitment made in the National Human Rights Action Plan", - "values": [ - "International instruments", - "Justice" - ] - }, - { - "text": "Intensify its actions to combat violence against women and counter discrimination against women", - "values": [ - "Women's rights" - ] - }, - { - "text": "Step up its social integration policies and education programmes to eradicate the current situation of children living on the street who are victims of sexual exploitation and physical abuse", - "values": [ - "Rights of the Child" - ] - }, - { - "text": "Take measures and develop appropriate mechanisms to enable the development of legislation and policies for the protection of children in all fields ", - "values": [ - "Rights of the Child" - ] - }, - { - "text": "Take concrete measures to raise public awareness about LGBT rights, including the guarantee of the right of assembly and association", - "values": [ - "Freedom of association and peaceful assembly", - "Human rights education and training", - "Sexual Orientation and Gender Identity" - ] - }, - { - "text": "Continue its active engagement with the human rights mechanisms of UN for the protection and promotion of human rights ", - "values": [ - "Special procedures", - "Treaty bodies", - "UPR process" - ] - }, - { - "text": "Continue maximum efforts to ensure freedom from discrimination for certain minorities, especially school age children and women", - "values": [ - "Minorities", - "Racial discrimination", - "Rights of the Child", - "Women's rights" - ] - }, - { - "text": "Cooperate with all treaty bodies, including by submitting its initial report, which has been overdue since 2003, to the Committee against Torture", - "values": [ - "Torture and other CID treatment", - "Treaty bodies" - ] - }, - { - "text": "Expeditiously approve the draft bill to create a national mechanism for the prevention of torture ", - "values": [ - "Torture and other CID treatment" - ] - }, - { - "text": "To improve logistical and financial resources", - "values": [ - "Other" - ] - }, - { - "text": "Adopt appropriate policies to ensure the protection of all ethnic and religious minorities, and ensure their enjoyment of the necessary legal protection to address any discrimination they may face", - "values": [ - "Freedom of religion and belief", - "Minorities" - ] - }, - { - "text": "Enforce legislation to prevent sexual violence and sexual exploitation", - "values": [ - "Women's rights" - ] - }, - { - "text": "Analyse the adoption of legal provisions and administrative actions to strengthen the free enjoyment of the rights of freedom of expression and association, as well as the independence and impartiality of the judiciary", - "values": [ - "Freedom of association and peaceful assembly", - "Freedom of opinion and expression", - "Justice" - ] - }, - { - "text": "Within the framework of a broad political dialogue, facilitate the participation of all sectors of the society in the political process, including through support for the independence of the judiciary and the press and freedom of expression and assembly ", - "values": [ - "Freedom of association and peaceful assembly", - "Freedom of opinion and expression", - "Freedom of the press", - "Justice" - ] - }, - { - "text": "Allocate more resources, including through multilateral cooperation, to enhance the implementation of its respective laws, combating impunity, and to raise human rights and rule of law awareness where needed.", - "values": [ - "Human rights education and training", - "Impunity" - ] - }, - { - "text": "Intensify its efforts to promote inter-ethnic harmony through education, and implement concrete measures for the integration of minorities into Croatian society", - "values": [ - "Minorities", - "Right to education" - ] - }, - { - "text": "Consider the ratification of the Protocol to the African Charter on Human and Peoples\u2019 Rights on the Rights of Women in Africa", - "values": [ - "International instruments", - "Women's rights" - ] - }, - { - "text": "Investigate all allegations of murder of civilians, torture, ill-treatment, sexual violence and arbitrary detentions carried out by the Malian army, police or other bodies under the control of the Government and ensure that perpetrators of crimes are brought to justice ", - "values": [ - "Detention", - "Human rights violations by state agents", - "Torture and other CID treatment", - "Women's rights" - ] - }, - { - "text": "Intensify efforts for restoring security and improving the humanitarian situation in the country", - "values": [ - "International humanitarian law", - "Public security" - ] - }, - { - "text": "Take all steps available to eradicate the use of torture and ill treatment by public officials, and prosecute and punish those responsible ", - "values": [ - "Human rights violations by state agents", - "Torture and other CID treatment" - ] - }, - { - "text": "Continue to implement measures to promote women's participation in society", - "values": [ - "Women's rights" - ] - }, - { - "text": "Step up its efforts to ratify the Optional Protocol to the Convention on the Elimination of All Forms of Discrimination against Women", - "values": [ - "International instruments", - "Women's rights" - ] - }, - { - "text": "Take urgent measures against prison overcrowding by favouring alternative measures to separate persons ", - "values": [ - "Detention" - ] - }, - { - "text": "Guyana voluntarily commits to consider this [Ratify ILO Convention No. 169] and report in one year's time to the UNHRC and the ILO.", - "values": [ - "Indigenous peoples", - "International instruments" - ] - }, - { - "text": "Expedite the repeal and reform of discriminatory legislation, with a focus on the adoption of outstanding bills, particularly those affecting women and children ", - "values": [ - "Rights of the Child", - "Women's rights" - ] - }, - { - "text": "Guarantee the rights of the child and create the best alternative for improving the current system of youth accountability, in compliance with the International Convention on the Rights of the Child", - "values": [ - "International instruments", - "Justice", - "Rights of the Child" - ] - }, - { - "text": "Raise the minimum age for marriage for both boys and girls to 18 ", - "values": [ - "Rights of the Child" - ] - }, - { - "text": "Enact specific legislation in domestic law to criminalize the offence of torture which is fully compliant with the requirements of the Convention against Torture ", - "values": [ - "International instruments", - "Torture and other CID treatment" - ] - }, - { - "text": "Further pursue efforts to develop education, particularly in rural areas of the country", - "values": [ - "Right to education" - ] - }, - { - "text": "Provide more financial and technical support for the preservation of Lao traditional and cultural heritage", - "values": [ - "ESC rights - general" - ] - }, - { - "text": "Adopt plans and programmes related to trafficking in persons ", - "values": [ - "Trafficking" - ] - }, - { - "text": "Strengthen its efforts to eradicate poverty and hunger in the country", - "values": [ - "Poverty" - ] - }, - { - "text": "Remove reservations to article 2 and article 16.1(c) of the Convention on the Elimination of All Forms of Discrimination against Women", - "values": [ - "International instruments", - "Women's rights" - ] - }, - { - "text": "Speed up measures to ensure reintegration into the community of minors giving up their weapons, making it possible to comply with the agreements undertaken by the Government and the Union of Democratic Forces for Unity with the United Nations. and conclude and implement these agreements in the case of other remaining irregular forces.", - "values": [ - "Rights of the Child" - ] - }, - { - "text": "Cooperate with special procedures mandate holders by responding positively to requests for information and visits ", - "values": [ - "Special procedures" - ] - }, - { - "text": "Ensure that cases of torture and ill-treatment are effectively investigated and that the perpetrators are prosecuted, and adapt the national definition of torture to that contained in the Convention against Torture ", - "values": [ - "International instruments", - "Torture and other CID treatment" - ] - }, - { - "text": "Establish a moratorium on the death penalty aiming at its complete abolition in all states", - "values": [ - "Death penalty" - ] - }, - { - "text": "Withdraw its reservations and interpretative statement with respect to Article 4 of the ICERD ", - "values": [ - "International instruments", - "Racial discrimination" - ] - }, - { - "text": "Ratify the International Convention for the Protection of All Persons from Enforced Disappearance", - "values": [ - "Enforced disappearances", - "International instruments" - ] - }, - { - "text": "Establish without delay a national preventive mechanism in accordance with the Optional Protocol to the Convention against Torture with adequate personnel and financial resources for its effective and independent work", - "values": [ - "Detention", - "International instruments", - "Torture and other CID treatment" - ] - }, - { - "text": "Take steps to ensure that the current economic crisis does not erode human rights, in particular by developing a National Action Plan on Human Rights as well as by providing continued support and shared experience on human rights worldwide", - "values": [ - "General" - ] - }, - { - "text": "Establish an independent monitoring mechanism for all places of detention, in keeping with the provisions of the Optional Protocol to the Convention against Torture, in order to effectively prevent torture", - "values": [ - "Detention", - "International instruments", - "Torture and other CID treatment" - ] - }, - { - "text": "Accelerate its efforts to finalize the national anti-corruption policy and mechanisms for monitoring its implementation.", - "values": [ - "Corruption" - ] - }, - { - "text": "Consider ratifying ICERD ", - "values": [ - "International instruments", - "Racial discrimination" - ] - }, - { - "text": "Investigate cases of deaths of migrants by customs and border patrols, particularly those where there have been indications of an excessive use of force, and ensure accountability and adequate reparation to the families of the victims", - "values": [ - "Extrajudicial executions", - "Human rights violations by state agents", - "Migrants" - ] - }, - { - "text": "Take measures on the exercise of religious freedom and make norms and rules more flexible in order to preserve the rights of religious groups with a small number of believers and avoid their being subject to discrimination.", - "values": [ - "Freedom of religion and belief" - ] - }, - { - "text": "Enhancing food security by improving agricultural productivity and introducing high value cash crops, better farm management practices, irrigation and water harvesting.", - "values": [ - "Development" - ] - }, - { - "text": "Protect children accused of witchcraft from ill-treatment and abuse, as previously recommended", - "values": [ - "Rights of the Child", - "Torture and other CID treatment", - "UPR process", - "Women's rights" - ] - }, - { - "text": "Take steps to improve access to buildings for people with a disability", - "values": [ - "Disabilities" - ] - }, - { - "text": "Ratify the Optional Protocol to the Convention on the Elimination of all Forms of Discrimination against Women ", - "values": [ - "International instruments", - "Women's rights" - ] - }, - { - "text": "Proceed with early conclusion of major international human rights treaties, including the Convention on the Rights of Persons with Disabilities", - "values": [ - "Disabilities", - "International instruments" - ] - }, - { - "text": "Continue to improve access to education through various programs and initiatives", - "values": [ - "Right to education" - ] - }, - { - "text": "Publish the results of the study carried out by the Government in order to detect on Polish territory any secret detention centres for foreign citizens accused of terrorist activities.", - "values": [ - "Counter-terrorism" - ] - }, - { - "text": "Increase efforts for the protection of women victims of gender violence, ensuring that perpetrators face the required trials and training the authorities involved on the subject of the protection and prevention of violence against women ", - "values": [ - "Women's rights" - ] - }, - { - "text": "Continue providing support to the vulnerable group of people who have sought refuge on its territory", - "values": [ - "Asylum-seekers - refugees" - ] - }, - { - "text": "Take appropriate measures to eradicate the practice of ritual infanticide once and for all", - "values": [ - "Rights of the Child" - ] - }, - { - "text": "Ensure that the hotline established to respond to migrant workers' complaints provides appropriate interpretation, to the extent possible ", - "values": [ - "Labour", - "Migrants" - ] - }, - { - "text": "Extend an invitation to visit to the Working Group on the issue of discrimination against women in law and in practice to visit", - "values": [ - "Special procedures", - "Women's rights" - ] - }, - { - "text": "Strengthen measures to protect children from the worst forms of labour, and ensure full implementation of the Children's Protection and Welfare Act", - "values": [ - "Labour", - "Rights of the Child" - ] - }, - { - "text": "Take further action to combat corruption especially in the public sector.", - "values": [ - "Corruption" - ] - }, - { - "text": "Continue efforts for implementation of the National Strategy for the Inclusion of Roma, Sinti, and Travellers and to further promote Roma inclusion in local communities, with specific regard to providing necessary assistance and support to children and adolescents in the field of education", - "values": [ - "Minorities", - "Right to education", - "Rights of the Child" - ] - }, - { - "text": "Ensure respect of fair and equitable judicial proceedings", - "values": [ - "Justice" - ] - }, - { - "text": "Develop legislation guaranteeing workers' rights, including for migrant workers, and enhance efforts to combat fraudulent recruitment", - "values": [ - "Labour", - "Migrants" - ] - }, - { - "text": "Amend the Criminal Code in order to for it to contain a specific provision stating that a child victim of prostitution should not be prosecuted and criminalizing the offences of offering, obtaining and providing a child for prostitution ", - "values": [ - "Rights of the Child", - "Trafficking" - ] - }, - { - "text": "Pass legislation to raise the legal age of marriage to 18 and to eliminate the practice of forced and temporary marriages", - "values": [ - "Rights of the Child" - ] - }, - { - "text": "Immediately end all infringement on the rights to freedom of expression, association and peaceful assembly under section 44 of the 2014 interim constitution, the Computer Crimes Act, and articles 112 and 116 of the Penal Code - and unconditionally release persons detained or imprisoned for exercising these rights", - "values": [ - "Detention", - "Freedom of association and peaceful assembly", - "Freedom of opinion and expression" - ] - }, - { - "text": "Extend an invitation to the Special Rapporteur on the rights of indigenous peoples to visit Indonesia, including Papua, in line with the openness of Indonesia to collaborate with special procedure mandate holders", - "values": [ - "Indigenous peoples", - "Special procedures" - ] - }, - { - "text": "Make sure that all de facto detention facilities fall under the responsibility and direct authority of the government", - "values": [ - "Detention" - ] - }, - { - "text": "Intensify the efforts aimed at fighting all forms of discrimination, especially by strengthening the national legislative framework", - "values": [ - "Other" - ] - }, - { - "text": "Exert further efforts to ensure return and resettlement of the remaining internally displaced persons", - "values": [ - "Internally displaced persons" - ] - }, - { - "text": "Bring national legislation in line with the provisions of the international instruments, and ensure its implementation in practice ", - "values": [ - "International instruments" - ] - }, - { - "text": "Halt the systematic use of detention of asylum seekers at the borders", - "values": [ - "Asylum-seekers - refugees", - "Detention" - ] - }, - { - "text": "Continue taking measures to protect social rights, including the rights of children, women and persons with disabilities", - "values": [ - "Disabilities", - "Rights of the Child", - "Women's rights" - ] - }, - { - "text": "Ensure effective coordination at the federal, regional and community levels when monitoring the incidence of unlawful ethnic profiling and racism, especially in the context of recent terrorist threats", - "values": [ - "Counter-terrorism", - "Minorities", - "Racial discrimination" - ] - }, - { - "text": "Launch and implement a National Human Rights Action Plan in order to improve the promotion and protection of human rights, with the participation of civil society", - "values": [ - "Civil society" - ] - }, - { - "text": "Take efforts to organize more training programmes for national personnel working in the areas of judicial affairs and law enforcement, in accordance with international human rights principles ", - "values": [ - "Human rights education and training" - ] - }, - { - "text": "Continue promoting the rights of lesbian, gay, bisexual, transgender and intersex persons and protect them from violence and social and cultural discrimination", - "values": [ - "Sexual Orientation and Gender Identity" - ] - }, - { - "text": "Further continue internal consultations and request the technical assistance of relevant UN institutions with regards to the accession to the core international human rights treaties ", - "values": [ - "International instruments", - "Technical assistance and cooperation" - ] - }, - { - "text": "Amend the statute of the National Children's Rights Commission (NCRC) to include legal competencies to undertake institutional interventions against ministries working with children's rights and receive complaints of rights violations ", - "values": [ - "National Human Rights Institution", - "Rights of the Child" - ] - }, - { - "text": "Activate efforts to improve the living conditions of detainees pretrial and after conviction and also to implement all the requirements of minimum standards of treatment of inmates", - "values": [ - "Detention" - ] - }, - { - "text": "Allow individuals to peacefully exercise their right to freedom of expression ", - "values": [ - "Freedom of opinion and expression" - ] - }, - { - "text": "Continue supporting the activities of centres aimed at strengthening the rights of and opportunities for women and child victims of violence", - "values": [ - "Rights of the Child", - "Women's rights" - ] - }, - { - "text": "Take concrete steps to eliminate arbitrary detention as a form of persecution of political and civic dissent and release and fully rehabilitate all those sentenced directly or indirectly for their political and civic activities", - "values": [ - "Detention", - "Freedom of opinion and expression" - ] - }, - { - "text": "Ratify the first Optional Protocol to ICCPR before the next UPR cycle ", - "values": [ - "CP rights - general", - "International instruments", - "UPR process" - ] - }, - { - "text": "Give positive consideration to the prompt ratification of CRPD ", - "values": [ - "Disabilities", - "International instruments" - ] - }, - { - "text": "Take action to combat violence based on sexual orientation and gender identity and repeal all provisions criminalizing sexual activity between consenting adults ensure non-discrimination in access to adequate housing and remedies for forced evictions on the basis of sexual orientation", - "values": [ - "Right to housing", - "Sexual Orientation and Gender Identity" - ] - }, - { - "text": "Continue working on the ongoing reform of the judicial system to promote compliance by the courts with international standards", - "values": [ - "Justice" - ] - }, - { - "text": "Fully prohibit corporal punishment against children in all settings, including at home", - "values": [ - "Rights of the Child", - "Torture and other CID treatment" - ] - }, - { - "text": "Increase the age of criminal responsibility, which is now set at 7 years, to conform to international standards ", - "values": [ - "Justice", - "Rights of the Child" - ] - }, - { - "text": "Implement the national prevention mechanism adopted in 2012 in application of the Optional Protocol of the Convention against Torture", - "values": [ - "Detention", - "International instruments", - "Torture and other CID treatment", - "Treaty bodies" - ] - }, - { - "text": "Assign a government department the mandate of promoting and protecting the rights of disabled persons", - "values": [ - "Disabilities" - ] - }, - { - "text": "Ratify the Istanbul Convention", - "values": [ - "International instruments", - "Women's rights" - ] - }, - { - "text": "Remain committed to helping the poor to access education and health care ", - "values": [ - "Right to education", - "Right to health" - ] - }, - { - "text": "Take additional steps to clear up the backlog of cases in the justice system, ensure the effective implementation of the Constitutional Law on the Rights of National Minorities, and take additional measures to ensure the effective integration of minorities into society", - "values": [ - "Justice", - "Minorities" - ] - }, - { - "text": "Introduce a specific article on domestic violence in the framework of the forthcoming reform of the criminal code", - "values": [ - "Rights of the Child", - "Women's rights" - ] - }, - { - "text": "Take further steps to eliminate abuses of the rights of the child", - "values": [ - "Rights of the Child" - ] - }, - { - "text": "Take effective action to eliminate the phenomenon of female genital mutilation", - "values": [ - "Rights of the Child", - "Torture and other CID treatment", - "Women's rights" - ] - }, - { - "text": "Fully implement the reforms necessary to establish an independent, effective and transparent judicial system that would not only strengthen Ukraine\u2019s capacity to fight corruption, but would also establish an overarching framework for upholding the rule of law and protecting fundamental rights and freedoms", - "values": [ - "Corruption", - "Justice" - ] - }, - { - "text": "Continue to take measures with a strong social impact to improve the economic situation of the Haitian people, by focusing on vulnerable groups, particularly women, children and persons with disabilities", - "values": [ - "Disabilities", - "ESC rights - general", - "Rights of the Child", - "Women's rights" - ] - }, - { - "text": "Implement legislation that increases protection of the rights of persons belonging to minority religious groups, including the status of their places of worship", - "values": [ - "Freedom of religion and belief", - "Minorities" - ] - }, - { - "text": "Promote the participation of persons with disabilities and integrate them more widely in Bahraini society", - "values": [ - "Disabilities" - ] - }, - { - "text": "Introduce a moratorium on the death penalty with a view to its abolition", - "values": [ - "Death penalty" - ] - }, - { - "text": "Deepen efforts to prevent and sanction harmful traditional practices, such as [", - "values": [ - "Women's rights" - ] - }, - { - "text": "Strengthen human rights education as a pillar of prevention of gender-based violence", - "values": [ - "Human rights education and training", - "Women's rights" - ] - }, - { - "text": "Continue to develop the legal and institutional framework for the promotion and protection of human rights and develop social justice ", - "values": [ - "General" - ] - }, - { - "text": "Ensure the immediate and unconditional release of all political prisoners, human rights defenders and detainees and make incommunicado detentions illegal", - "values": [ - "Detention", - "Freedom of opinion and expression", - "Human rights defenders" - ] - }, - { - "text": "Establish a national human rights institution in full compliance with the Paris Principles", - "values": [ - "National Human Rights Institution" - ] - }, - { - "text": "Continue to develop and expand programmes for the protection of indigenous peoples ", - "values": [ - "Indigenous peoples" - ] - }, - { - "text": "Revoke the new Ministerial Order No. 530 of 6 October 2008 restricting political assembly.", - "values": [ - "Freedom of association and peaceful assembly" - ] - }, - { - "text": "Further strengthen measures to protect human rights defenders", - "values": [ - "Human rights defenders" - ] - }, - { - "text": "Take further measures to provide women and men with equal opportunities in the labour market for example by improving the availability, affordability and quality of childcare ", - "values": [ - "Women's rights" - ] - }, - { - "text": "Accelerate the process undertaken to align its legislation with the new Constitution", - "values": [ - "General" - ] - }, - { - "text": "Consider ratifying or acceding to ILO Convention No. 169 on indigenous and tribal peoples in independent countries. Peru is ready to share its experience on this issue with Panama", - "values": [ - "Indigenous peoples", - "International instruments" - ] - }, - { - "text": "Enact legislation prohibiting all forms of traditional practice of FGM in line with recommendations made by CEDAW and the Committee on the Rights of the Child ", - "values": [ - "Rights of the Child", - "Torture and other CID treatment", - "Treaty bodies", - "Women's rights" - ] - }, - { - "text": "Give priority to the implementation of outstanding necessary improvements of prisons conditions.", - "values": [ - "Detention" - ] - }, - { - "text": "Take more effective measures in order to fight, and even to eradicate, crimes and hate speech against minorities, focusing on prevention and following-up these acts", - "values": [ - "Minorities", - "Racial discrimination" - ] - }, - { - "text": "Clarify the status of the relationship between San Marino's international obligations and its domestic legislation, to ensure that those international obligations are given effect by domestic courts, and to carry out a comprehensive review of its ius commune in order to identify provisions of domestic legislation that contradict principles and provisions of the Conventions, as recommended by the Human Rights Committee, the Committee on Economic, Social and Cultural Rights and the Committee on the Rights of the Child, respectively", - "values": [ - "Treaty bodies" - ] - }, - { - "text": "Face up to and reflect on history, sincerely apologize on the issue of \u201ccomfort women\u201c, make compensations to the victims, and ensure the right of the public to information in this regard", - "values": [ - "Women's rights" - ] - }, - { - "text": "Continue to refine its policies to counter hate crimes in communities, particularly those motivated by race and religion, and to share its best practices with other Member States", - "values": [ - "Freedom of religion and belief", - "Racial discrimination" - ] - }, - { - "text": "Take steps to clarify land rights and the land use situation, taking into consideration all stakeholders that are affected by the decision-making related to land ownership and use", - "values": [ - "Right to land" - ] - }, - { - "text": "Continue implementing programmes and measures designed to ensure universal access for its population to education, health and social security services ", - "values": [ - "Right to education", - "Right to health" - ] - }, - { - "text": "Enact a law on access to freedom of information in line with international standards", - "values": [ - "Freedom of opinion and expression" - ] - }, - { - "text": "Remedy the lack of coordination between the main human rights institutions", - "values": [ - "Other" - ] - }, - { - "text": "Continue its efforts to reduce maternal morbidity", - "values": [ - "Right to health", - "Women's rights" - ] - }, - { - "text": "Expedite the ongoing process and establish a clear timeline to establish a truth-seeking commission and an Office on Reparations as well as a special court to investigate allegations of serious human rights violations", - "values": [ - "Justice" - ] - }, - { - "text": "Combat discrimination against women through anti-trafficking legislation, by ensuring women's entitlement to land in the Land Law, and by curbing domestic violence and violations of reproductive rights ", - "values": [ - "Right to health", - "Right to land", - "Rights of the Child", - "Trafficking", - "Women's rights" - ] - }, - { - "text": "Enact legislation explicitly prohibiting female genital mutilation - strengthen awareness-raising and educational efforts to eliminate that practice and its underlying cultural justification - and ensure that offenders are prosecuted and punished ", - "values": [ - "Human rights education and training", - "Rights of the Child", - "Torture and other CID treatment", - "Women's rights" - ] - }, - { - "text": "Take measures to raise awareness in the population with a view to eliminating stigmatization and discrimination suffered by persons with disabilities", - "values": [ - "Disabilities" - ] - }, - { - "text": "Consider the repeal of provisions allowing for the death penalty.", - "values": [ - "Death penalty" - ] - }, - { - "text": "Continue to carry out mine-awareness campaigns and undertake, as a priority, demining programmes to demine the approximately 30,000 minefields throughout the country, as well as lend psychological and social assistance to the children affected, as recommended by the Committee on the Rights of the Child", - "values": [ - "International humanitarian law", - "Treaty bodies" - ] - }, - { - "text": "Further empower its Special Court on Rape and Other Forms of Violence, enforce the laws against female genital mutilation and increase its efforts to create national public awareness programmes about sexual and gender-based violence", - "values": [ - "Human rights education and training", - "Rights of the Child", - "Torture and other CID treatment", - "Women's rights" - ] - }, - { - "text": "Harmonize federal and state laws with international human rights instruments ", - "values": [ - "International instruments" - ] - }, - { - "text": "Ensure an equal participation between men and women in politics", - "values": [ - "Women's rights" - ] - }, - { - "text": "Take the necessary legislative and other measures to prevent children from being engaged in child labour", - "values": [ - "Labour", - "Rights of the Child" - ] - }, - { - "text": "Strengthen and promote respect for civil and political rights through the judicial process regarding complaints initiated regarding the violation of such rights ", - "values": [ - "CP rights - general" - ] - }, - { - "text": "Terminate the practice of holding persons suffering from mental illness in prisons and prison psychiatric wards ", - "values": [ - "Detention" - ] - }, - { - "text": "Implement at the federal level a moratorium on executions ", - "values": [ - "Death penalty" - ] - }, - { - "text": "Grant full access for humanitarian aid to the population in need in Darfur", - "values": [ - "Other" - ] - }, - { - "text": "Work closely with the European Union to create a comprehensive antitrafficking-in persons network", - "values": [ - "Trafficking" - ] - }, - { - "text": "Accede to the Second Optional Protocol to the International Covenant on Civil and Political Rights, aimed at abolishing the death penalty", - "values": [ - "Death penalty", - "International instruments" - ] - }, - { - "text": "Promote the human rights education and awareness-raising", - "values": [ - "Human rights education and training" - ] - }, - { - "text": "Strengthen measures to promote women's economic and political participation in the country", - "values": [ - "Women's rights" - ] - }, - { - "text": "Continue efforts to efficiently combat discrimination against non-Muslim minorities", - "values": [ - "Freedom of religion and belief", - "Minorities", - "Racial discrimination" - ] - }, - { - "text": "Strengthen the capacity for following up on recommendations made by treaty bodies and during the universal periodic review", - "values": [ - "Treaty bodies", - "UPR process" - ] - }, - { - "text": "Strengthen and expand the education infrastructure in order to offer quality inclusive education to all children on its territory", - "values": [ - "Right to education", - "Rights of the Child" - ] - }, - { - "text": "Adopt legislation and policy measures to effectively promote and protect human rights for refugees, migrants and ethnic minorities", - "values": [ - "Asylum-seekers - refugees", - "Migrants", - "Minorities" - ] - }, - { - "text": "Continue efforts in empowering those sections of the society that require special treatment ", - "values": [ - "Other" - ] - }, - { - "text": "Adopt a family law that ensures equal rights between men and women and which protects girls from early and forced marriage", - "values": [ - "Rights of the Child", - "Women's rights" - ] - }, - { - "text": "Sign and ratify CED, as it constitutes an important instrument for the prevention against torture ", - "values": [ - "Enforced disappearances", - "International instruments" - ] - }, - { - "text": "Recommended the continuation of the moratorium on death penalty. ", - "values": [ - "Death penalty" - ] - }, - { - "text": "Implement withdrawal of reservations on ICERD", - "values": [ - "International instruments", - "Racial discrimination" - ] - }, - { - "text": "Strengthen existing policies to combat human trafficking", - "values": [ - "Trafficking" - ] - }, - { - "text": "Draw up an integrated and comprehensive human rights plan of action", - "values": [ - "General" - ] - }, - { - "text": "Request the necessary assistance from various United Nations bodies in order to take up the various challenges mentioned in its national report ", - "values": [ - "Technical assistance and cooperation" - ] - }, - { - "text": "Continue its efforts to stop the recruitment and use of children by all parties involved in the conflict in the country and work closely with OHCA, UNICEF and other relevant parties to demobilize children from the military and other armed groups. ", - "values": [ - "International humanitarian law", - "Rights of the Child" - ] - }, - { - "text": "Make ragging of students an offence and conduct awareness-raising campaigns against ragging ", - "values": [ - "Human rights education and training" - ] - }, - { - "text": "Ratify the Rome Statute of the International Criminal Court, fully align its national legislation with the obligations under the Rome Statute and accede to the Agreement on the Privileges and Immunities of the International Criminal Court", - "values": [ - "International instruments", - "Justice" - ] - }, - { - "text": "Intensify its efforts to totally eliminate slavery and slavery-like practices in the country", - "values": [ - "Other" - ] - }, - { - "text": "Continue to ensure better protection of the rights of all citizens through the implementation of the national action plans recently adopted, in particular those relating to efforts to ensure the conditions for durable and sustainable socio-economic growth with a view to a significant reduction in poverty and the achievement of the Millennium Development Goals", - "values": [ - "Development", - "Poverty" - ] - }, - { - "text": "Hold open and transparent elections ", - "values": [ - "Elections" - ] - }, - { - "text": "Make public, so as to ensure transparency, the conclusions and recommendations of the different national fact-finding commissions", - "values": [ - "Justice" - ] - }, - { - "text": "Strengthen legislation and policy on gender equality and the prevention and punishment of gender-based violence", - "values": [ - "Women's rights" - ] - }, - { - "text": "Recognise the competence of CED in conformity with articles 31 and 32", - "values": [ - "Enforced disappearances", - "International instruments" - ] - }, - { - "text": "Continue towards the implementation of the OP-CAT, the First Optional Protocol to the ICCPR and the Optional Protocol to CEDAW", - "values": [ - "CP rights - general", - "Detention", - "International instruments", - "Torture and other CID treatment", - "Women's rights" - ] - }, - { - "text": "Take the necessary measures to accede to the International Covenant on Economic, Social and Cultural Rights of 1966", - "values": [ - "ESC rights - general", - "International instruments" - ] - }, - { - "text": "Ratify as soon as possible the Optional Protocol to the Convention against Torture and Other Cruel, Inhuman or Degrading Treatment or Punishment", - "values": [ - "Detention", - "International instruments", - "Torture and other CID treatment" - ] - }, - { - "text": "Promptly and impartially investigate any allegations of violence or reprisals against journalists and human rights defenders and ensure that perpetrators are held accountable", - "values": [ - "Freedom of the press", - "Human rights defenders" - ] - }, - { - "text": "Establish a State institution responsible for policy development, follow-up and coordination of actions in the area of human rights ", - "values": [ - "Other" - ] - }, - { - "text": "Work more actively to accede to the core international human rights instruments", - "values": [ - "International instruments" - ] - }, - { - "text": "Accede to regional and international treaties to which it is not party, including the Rome Statute of the International Criminal Court, and include the provisions of these instruments in its domestic legislation", - "values": [ - "International instruments", - "Justice" - ] - }, - { - "text": "Accede to CEDAW ", - "values": [ - "International instruments", - "Women's rights" - ] - }, - { - "text": "Take legislative and practical measures with a view to the realization of the right to freedom of religion and belief ", - "values": [ - "Freedom of religion and belief" - ] - }, - { - "text": "Strengthen the legal framework for the protection of the rights of children and the rights of other vulnerable groups such as women, the elderly, people with disabilities and the community of Travellers ", - "values": [ - "Disabilities", - "Minorities", - "Rights of the Child", - "Women's rights" - ] - }, - { - "text": "Take effective measures to combat racist propaganda and the xenophobic material on the Internet ", - "values": [ - "Racial discrimination" - ] - }, - { - "text": "Sign the Second Optional Protocol to ICCPR, Aiming at the Abolition of the Death Penalty ", - "values": [ - "Death penalty", - "International instruments" - ] - }, - { - "text": "Accelerate the political, socio-economic and administrative reform to fulfil socio-economic needs of the people", - "values": [ - "ESC rights - general" - ] - }, - { - "text": "Respect the ruling of the International Court of Justice of the Hague, of 27 June 1986, which orders the United States Government to compensate Nicaragua for the terrorist acts that the people of Nicaragua suffered on those years from the part of the American President Ronald Reagan ", - "values": [ - "Justice" - ] - }, - { - "text": "Allocate necessary resources to the education and health sectors in order to achieve the Millennium Development Goals, reaching at a minimum the regional average level of investment in these sectors, while ensuring data collection that allows progress to be measured ", - "values": [ - "Right to education", - "Right to health" - ] - }, - { - "text": "Thoroughly investigate and promptly prosecute cases of femicide and other acts of violence against women", - "values": [ - "Women's rights" - ] - }, - { - "text": "Continue cooperation with international human rights mechanisms", - "values": [ - "Special procedures", - "Treaty bodies", - "UPR process" - ] - }, - { - "text": "Consider developing Human Rights Indicators as suggested by the OHCHR as an instrument that allows for a more precise and coherent evaluation of national human rights policies", - "values": [ - "General" - ] - }, - { - "text": "Undertake the appropriate measures to prevent and combat domestic violence and sexual violence committed by military personnel and police officers against young girls and adolescents", - "values": [ - "Human rights violations by state agents", - "Rights of the Child", - "Women's rights" - ] - }, - { - "text": "Continue exercising its sovereign right of implementing its penal code in conformity with the universally agreed human rights standards, including the application of the death penalty.", - "values": [ - "Death penalty" - ] - }, - { - "text": "Step efforts concerning accession to core human rights treaties, particularly Convention on the Elimination of All Forms of Discrimination against Women and the Convention against Torture, before the third cycle review", - "values": [ - "International instruments", - "Torture and other CID treatment", - "UPR process", - "Women's rights" - ] - }, - { - "text": "Continue taking further measures to eliminate female genital mutilation", - "values": [ - "Rights of the Child", - "Torture and other CID treatment", - "Women's rights" - ] - }, - { - "text": "Facilitate the implementation of the mandate of the National Committee against Human Trafficking with concrete measures and avoid impunity", - "values": [ - "Impunity", - "Trafficking" - ] - }, - { - "text": "While carrying out measures to combat violence, ensure full respect for human dignity and the protection of human rights ", - "values": [ - "Public security" - ] - }, - { - "text": "Ireland has chosen to prepare and submit a voluntary interim report on Ireland's progress in implementing its commitments", - "values": [ - "UPR process" - ] - }, - { - "text": "Pursue its efforts, despite constraints, with the assistance and cooperation of the international community, to combat poverty, particularly among women, including material and non material poverty (in terms of exclusion)", - "values": [ - "Poverty", - "Women's rights" - ] - }, - { - "text": "Adopt strong anti-discrimination policies and address hate crimes by ensuring that such incidents are thoroughly investigated ", - "values": [ - "Racial discrimination" - ] - }, - { - "text": "Take necessary measures to allow the enjoyment of civil and political rights by all, including the right to participate in political and public affairs", - "values": [ - "CP rights - general" - ] - }, - { - "text": "Consider the possibility of strengthening focused social assistance to poor families with children", - "values": [ - "Poverty", - "Rights of the Child" - ] - }, - { - "text": "Adopt a zero-tolerance approach to the continuing problem of torture, and to the practice of impunity, as recommended by the Committee Against Torture and the Special Rapporteur", - "values": [ - "Impunity", - "Special procedures", - "Torture and other CID treatment", - "Treaty bodies" - ] - }, - { - "text": "Continue to intensify efforts to achieve equality and non discrimination in the framework of equality and equity between men and women", - "values": [ - "Women's rights" - ] - }, - { - "text": "Undertake actions to improve the competency and capacity of its judicial sector including sensitizing judicial personnel on issues concerning vulnerable groups", - "values": [ - "Justice" - ] - }, - { - "text": "Take all appropriate measures in order to prevent the transfer of unaccompanied minors to Sweden and provide those who are already in the country with the necessary humanitarian support", - "values": [ - "Asylum-seekers - refugees", - "Migrants", - "Rights of the Child" - ] - }, - { - "text": "Continue its efforts to ensure that national laws are consistent with international obligations, and to further their implementation on the ground", - "values": [ - "General" - ] - }, - { - "text": "Request technical assistance from the United Nations programmes, funds and bodies to comply with the commitments made in terms of human rights such as the presentation of reports, and the drafting of plans and programmes to strengthen human rights", - "values": [ - "Technical assistance and cooperation" - ] - }, - { - "text": "Ratify the Council of Europe Convention on the Protection of Children against Sexual Exploitation and Sexual Abuse ", - "values": [ - "Rights of the Child" - ] - }, - { - "text": "Continue to provide well-coordinated financial and other appropriate assistance to sections of its society, such as single-parent families, large families and families of foreign origin ", - "values": [ - "Other" - ] - }, - { - "text": "Lift its general and its specific reservations to CEDAW", - "values": [ - "International instruments", - "Statelessness and the right to nationality", - "Women's rights" - ] - }, - { - "text": "Take legal measures to provide appropriate facilities and support for children, particularly children with disabilities as the most vulnerable group of children", - "values": [ - "Disabilities", - "Rights of the Child" - ] - }, - { - "text": "Ensure that women who are victims of trafficking are recognized as such and provided with protection and assistance ", - "values": [ - "Trafficking", - "Women's rights" - ] - }, - { - "text": "Eliminate from national legislation the death penalty", - "values": [ - "Death penalty" - ] - }, - { - "text": "Enhance efforts in order to better serve the interests of the child on the issue of adoption", - "values": [ - "Rights of the Child" - ] - }, - { - "text": "Effectively cooperate with the Special Rapporteur on the rights to freedom of peaceful assembly and of association", - "values": [ - "Freedom of association and peaceful assembly", - "Special procedures" - ] - }, - { - "text": "Create a system to collect updated and disaggregated data on the situation of the rights of the child ", - "values": [ - "Rights of the Child" - ] - }, - { - "text": "Take measures to strengthen and guarantee the autonomy, independence and impartiality of the judiciary, including transparent and impartial procedures for appointment and dismissal of judicial officers", - "values": [ - "Human rights violations by state agents", - "Justice" - ] - }, - { - "text": "Ratify the Convention against Torture and Other Cruel, Inhuman or Degrading Treatment or Punishment, that it has already signed", - "values": [ - "International instruments", - "Torture and other CID treatment" - ] - }, - { - "text": "Organize inclusive consultations with journalists and media in order to resolve disputes that exist concerning the new media law", - "values": [ - "Freedom of the press" - ] - }, - { - "text": "In the context of the fight against terrorism, that the use of force be in line with the United Nations Charter and international human rights law and with due respect for the necessity and proportionality criteria", - "values": [ - "Counter-terrorism", - "International instruments" - ] - }, - { - "text": "Recognize gender identity as possible ground for discrimination and gender identity and sexual orientation as an aggravating circumstance for hate crime ", - "values": [ - "Sexual Orientation and Gender Identity" - ] - }, - { - "text": "Develop a comprehensive national action plan on human rights", - "values": [ - "General" - ] - }, - { - "text": "Implement an effective birth registration policy for the whole country in order to consolidate the rights of children ", - "values": [ - "Rights of the Child", - "Statelessness and the right to nationality" - ] - }, - { - "text": "Ratify the Optional Protocol to the Convention Against Torture and Other Cruel, Inhuman or Degrading Treatment or Punishment", - "values": [ - "Detention", - "International instruments", - "Torture and other CID treatment" - ] - }, - { - "text": "Continue to pay attention to all aspects of gender equality, in particular to the recommendations of the working group established by the Gender Equality Committee on the integration of gender equality aspects into process and content of all educational levels until 2020", - "values": [ - "Right to education", - "Women's rights" - ] - }, - { - "text": "Amend the Public Order Management Act, 2013, and the Non-Governmental Organizations Act, 2016, to ensure free assembly and association in line with international human rights standards", - "values": [ - "Civil society", - "Freedom of association and peaceful assembly" - ] - }, - { - "text": "Continue its positive engagement to increase women's representation in political and public life", - "values": [ - "Women's rights" - ] - }, - { - "text": "Enhance its efforts to maintain its zero tolerance policy towards violations of human rights by law enforcement agencies, including through the implementation of the Police Reform Act ", - "values": [ - "Human rights violations by state agents" - ] - }, - { - "text": "Give special emphasis to employment, access to health care and the right to housing in the application of the national strategy on the inclusion of Travellers and Roma", - "values": [ - "Labour", - "Minorities", - "Right to health", - "Right to housing" - ] - }, - { - "text": "Implement the recommendations of the Council.", - "values": [ - "Other" - ] - }, - { - "text": "Continue to empower the Roma minority and provide them with a greater role in society", - "values": [ - "Minorities" - ] - }, - { - "text": "Incorporate the provisions of CAT into domestic law", - "values": [ - "International instruments", - "Torture and other CID treatment" - ] - }, - { - "text": "Strengthen its efforts to ensure that youth and children who come into contact with the justice system enjoy adequate protection and are subject to courts specialized in juvenile justice", - "values": [ - "Labour", - "Rights of the Child" - ] - }, - { - "text": "Create and maintain, in law and in practice, a safe and enabling environment, in which human rights defenders and civil society can operate free from hindrance and insecurity, in accordance with Human Rights Council resolutions 22/6 and 27/31", - "values": [ - "Civil society", - "Human rights defenders" - ] - }, - { - "text": "Redoubling efforts and measures to combat hate crimes and xenophobia", - "values": [ - "Racial discrimination" - ] - }, - { - "text": "Seek the cooperation of UN agencies, such as ILO, to combat child labour", - "values": [ - "Labour", - "Rights of the Child", - "Technical assistance and cooperation" - ] - }, - { - "text": "Work with the United Nations special procedures and maintain its willingness to cooperate with these mechanisms ", - "values": [ - "Special procedures" - ] - }, - { - "text": "Take measures to ensure full enjoyment of freedom of expression, particularly freedom of the press, and bring to an end the restrictions on internet access", - "values": [ - "Freedom of opinion and expression", - "Freedom of the press" - ] - }, - { - "text": "Ratify the Optional Protocol to the Convention on the Rights of the Child on the sale of children, child prostitution and child pornography and sign and ratify the Optional Protocol to the Convention on the Rights of the Child on a communications procedure", - "values": [ - "International instruments", - "Rights of the Child", - "Trafficking" - ] - }, - { - "text": "Ensure access to clean drinking water is provided to the whole population", - "values": [ - "Right to water and sanitation" - ] - }, - { - "text": "Zambia will remain committed to protecting the rights of all citizens without any form of discrimination", - "values": [ - "Other" - ] - }, - { - "text": "Put in place labour laws which would include a minimum age of employment, and which protect children from commercial exploitation", - "values": [ - "Labour", - "Rights of the Child" - ] - }, - { - "text": "Initiate investigations into all allegations of torture or other forms of ill-treatment and bring to justice, prosecute and punish all alleged perpetrators of torture or other forms of ill-treatment", - "values": [ - "Torture and other CID treatment" - ] - }, - { - "text": "Incorporate in domestic law the crime of torture and a definition comprising the elements of Article 1 of the United Nations Convention against Torture", - "values": [ - "International instruments", - "Torture and other CID treatment" - ] - }, - { - "text": "Implement legal measures to limit the government's ability to deny an organization's license for political, religious, or arbitrary reasons and to not unnecessarily restrict the ability of Algerian NGOs to receive funding from foreign partners ", - "values": [ - "Civil society", - "Freedom of association and peaceful assembly" - ] - }, - { - "text": "Continue its efforts to ensure that the Equality and Anti-Discrimination Ombudsperson's office has adequate resources to promote its work ", - "values": [ - "National Human Rights Institution" - ] - }, - { - "text": "Review its criminal law legislation to abolish the death penalty in order to reflect its international commitment done by the ratification of the Second Optional Protocol to the International Covenant on Civil and Political Rights", - "values": [ - "Death penalty", - "International instruments" - ] - }, - { - "text": "Consider lifting existing reservations to the international human rights treaties", - "values": [ - "International instruments" - ] - }, - { - "text": "Act so that the right to life and physical integrity is effectively guaranteed and all instances of the State respect and protect the right of everyone to the freedom of expression ", - "values": [ - "Freedom of opinion and expression" - ] - }, - { - "text": "Consider ratifying CPED", - "values": [ - "Enforced disappearances", - "International instruments" - ] - }, - { - "text": "Undertake immediate measures to deal with the problem of discrimination, facilitate access of women to education and health and fully ensure the protection of women", - "values": [ - "Women's rights" - ] - }, - { - "text": "Amend the law "On counteracting extremist activities" to define extremism in terms of actual use of violence", - "values": [ - "Other" - ] - }, - { - "text": "Consider the elaboration of a national and regional strategy for the prevention of trafficking in human beings and further promote human rights based approach to victims of trafficking", - "values": [ - "Trafficking" - ] - }, - { - "text": "Transmit its overdue reports to the Human Rights Committee, the Committee on Economic, Social and Cultural Rights, the Committee on the Elimination of Racial Discrimination (CERD) and the Committee against Torture in order to share experience and progress in these domains", - "values": [ - "Treaty bodies" - ] - }, - { - "text": "Study the possibility of creating a national system for the follow-up of international recommendations", - "values": [ - "Special procedures", - "Treaty bodies", - "UPR process" - ] - }, - { - "text": "Accept, ratify to or accede, as appropriate, the International Convention for the Protection of All Persons from Enforced Disappearance", - "values": [ - "Enforced disappearances", - "International instruments" - ] - }, - { - "text": "Take all the necessary legislative and other measures in order to guarantee the full independence and impartiality of the judiciary in line with the Basic Principles on the Independence of the Judiciary (endorsed by General Assembly resolutions), including by establishing an independent body responsible for the appointment, promotion, suspension and removal of judges", - "values": [ - "Justice" - ] - }, - { - "text": "Reduce the judicial backlog ", - "values": [ - "Justice" - ] - }, - { - "text": "Consider developing a national action plan for children as recommended by CRC ", - "values": [ - "Rights of the Child", - "Treaty bodies" - ] - }, - { - "text": "Lobby for and implement a comprehensive anti-discrimination law that provides effective protection against discrimination against persons with disabilities", - "values": [ - "Disabilities" - ] - }, - { - "text": "Elaborate an action plan for ensuring free access to the electronic media and for liberalizing the electronic media ownership rules", - "values": [ - "Freedom of the press" - ] - }, - { - "text": "Ratify the Convention relating to the Status of Refugees and its Protocol", - "values": [ - "Asylum-seekers - refugees", - "International instruments" - ] - }, - { - "text": "Speed up the ratification of ICPPED", - "values": [ - "Enforced disappearances", - "International instruments" - ] - }, - { - "text": "Continue reforms aimed at the effective implementation of policies protecting and promoting human rights, through the full realization of the National Human Rights Action Plan, and by working closely with, inter alia, United Nations special procedures and mechanisms", - "values": [ - "Special procedures", - "UPR process" - ] - }, - { - "text": "Ensure access of women to education and control of resources with a view to promptly eliminating inequality between men and women ", - "values": [ - "Women's rights" - ] - }, - { - "text": "Remove the regulations which enable the implementation of the death penalty for intentional murder and remove the power of the President to commute death sentences, and renew its commitment to a moratorium on the death penalty", - "values": [ - "Death penalty" - ] - }, - { - "text": "Step up efforts towards the prevention and suppression of human trafficking and the smuggling of migrants by air, land and sea", - "values": [ - "Migrants", - "Trafficking" - ] - }, - { - "text": "Continue its positive efforts to increase the culture of the human rights of the Libyan people ", - "values": [ - "Other" - ] - }, - { - "text": "Amend and-or adopt and implement legislation providing for the full application of the juvenile justice infrastructure and system, in accordance with the provisions of CRC and other international standards ", - "values": [ - "International instruments", - "Justice", - "Rights of the Child" - ] - }, - { - "text": "Withdraw the reservations to CEDAW, in particular articles 2(f), 9 and 15 paragraph 2", - "values": [ - "International instruments", - "Women's rights" - ] - }, - { - "text": "Improve the condition of access of vulnerable persons, particularly those with disabilities, pregnant women, children and the elderly, to healthcare ", - "values": [ - "Disabilities", - "Right to health", - "Rights of the Child", - "Women's rights" - ] - }, - { - "text": "Strengthen its public health system with a view to providing free, quality, basic health services to all and reduce child mortality", - "values": [ - "Right to health", - "Rights of the Child" - ] - }, - { - "text": "Continue to consult stakeholders in the follow-up to the Universal Periodic Review outcome.", - "values": [ - "Civil society", - "UPR process" - ] - }, - { - "text": "Consider reviewing the legislation on the minimum age for criminal responsibility.", - "values": [ - "Rights of the Child" - ] - }, - { - "text": "Prevent arbitrary and extrajudicial blocking of websites and ensure that national security concerns are not invoked to stifle peaceful dissent and criticism of the Government or to restrict the right to freedom of religion or belief", - "values": [ - "Freedom of opinion and expression", - "Freedom of religion and belief" - ] - }, - { - "text": "Deepen in actions and measures intended to accede to the Convention on the Rights of Persons with Disabilities and guarantee the full exercise of human rights of persons with disabilities", - "values": [ - "Disabilities", - "International instruments" - ] - }, - { - "text": "Consider acceding to the International Covenant on Civil and Political Rights", - "values": [ - "CP rights - general", - "International instruments" - ] - }, - { - "text": "Implement the United Nations Declaration on the Rights of Indigenous Peoples", - "values": [ - "Indigenous peoples", - "International instruments" - ] - }, - { - "text": "Follow up on the recommendations of the Committee on the Elimination of Discrimination against Women on redoubling national efforts in favour of gender equality, in particular through education and awareness-raising campaigns - the investigation and punishment of violations of the rights of women and girls, in particular sexual violence - and the rehabilitation and compensation of victims ", - "values": [ - "Human rights education and training", - "Rights of the Child", - "Treaty bodies", - "Women's rights" - ] - }, - { - "text": "Take all measures necessary to ensure full respect for freedom of religion or belief and freedom from discrimination on the basis of religion, including by way of allowing non-Muslims to become citizens and withdrawing its reservation to article 18 of ICCPR ", - "values": [ - "Freedom of religion and belief", - "International instruments", - "Statelessness and the right to nationality" - ] - }, - { - "text": "Take steps to ensure that prisoners and detainees under the age of 18 are housed separately from the general prison population ", - "values": [ - "Detention", - "Rights of the Child" - ] - }, - { - "text": "Continue to promote and strengthen the rights of Indigenous peoples", - "values": [ - "Indigenous peoples" - ] - }, - { - "text": "Continue efforts through education and awareness-raising initiatives to improve the effective implementation of the laws on domestic violence and on female genital mutilation, and eliminate discrimination based on sex from legislation", - "values": [ - "Human rights education and training", - "Rights of the Child", - "Torture and other CID treatment", - "Women's rights" - ] - }, - { - "text": "Cooperate fully with the International Criminal Court and its Prosecutor and provide it with the necessary support pursuant to Security Council resolution 1593 (2005) ", - "values": [ - "Justice" - ] - }, - { - "text": "Fully implement the 2002 legislation banning female genital mutilation and enhance awareness raising campaigns so as to combat this practice and other traditions harmful to women's health and dignity. ", - "values": [ - "Human rights education and training", - "Rights of the Child", - "Torture and other CID treatment", - "Women's rights" - ] - }, - { - "text": "Guarantee the right to access to justice and effective remedies to all indigenous women who were victims of violence", - "values": [ - "Indigenous peoples", - "Women's rights" - ] - }, - { - "text": "Become party to OP-CAT and CPED ", - "values": [ - "Detention", - "Enforced disappearances", - "International instruments", - "Torture and other CID treatment" - ] - }, - { - "text": "Adopt a comprehensive anti-discrimination law enforced uniformly throughout the Confederation", - "values": [ - "Other" - ] - }, - { - "text": "Harmonize national legislation governing registration and funding of NGOs with the Venice Commission recommendations, with a view to ensuring a free and open space for its civil society ", - "values": [ - "Civil society", - "Freedom of association and peaceful assembly", - "International instruments" - ] - }, - { - "text": "Make every effort to repeal the application of the death penalty", - "values": [ - "Death penalty" - ] - }, - { - "text": "Continue its efforts to achieve the results of the national dialogue to reach a comprehensive and sustainable peace in all regions of Sudan", - "values": [ - "General" - ] - }, - { - "text": "Adopt measures to prevent and eradicate violence against women and girls, especially the adoption of legislation, the establishment of more shelters and the training of judges, prosecutors and police officers", - "values": [ - "Human rights education and training", - "Rights of the Child", - "Women's rights" - ] - }, - { - "text": "Ensure the protection of the minors, including through adopting juvenile justice system and increasing the age of criminal responsibility for children ", - "values": [ - "Justice", - "Rights of the Child" - ] - }, - { - "text": "Reconsider the inclusion of apostasy, witchcraft and heresy as capital offences in its updated penal code", - "values": [ - "Death penalty", - "Freedom of religion and belief", - "Rights of the Child", - "Women's rights" - ] - }, - { - "text": "Ensure that the legislation and the State respect articles 19 and 21 of International Covenant on Civil and Political Rights, which guarantee freedom of expression and freedom of association and assembly", - "values": [ - "Freedom of association and peaceful assembly", - "Freedom of opinion and expression", - "International instruments" - ] - }, - { - "text": "Develop a national action plan on business and human rights in order to prevent development projects from violating the rights of traditional populations, indigenous peoples and workers and causing damage to the environment, and in order to ensure an effective remedy with meaningful consultations with the affected communities", - "values": [ - "Business and human rights", - "Indigenous peoples" - ] - }, - { - "text": "Step up its efforts to protect its indigenous peoples and install an effective system of consultations with indigenous peoples.", - "values": [ - "Indigenous peoples" - ] - }, - { - "text": "Take concrete steps to make other forms of alternative care more accessible, i.e. promote guardianship and foster care systems as well as develop community based family support services that prevent the abandonment of children from their families", - "values": [ - "Rights of the Child" - ] - }, - { - "text": "Address the issue of marital rape by including the necessary provisions in domestic law", - "values": [ - "Rights of the Child", - "Women's rights" - ] - }, - { - "text": "Continue adopting measures aiming at the protection of children and youth, in particular on their right to education ", - "values": [ - "Right to education", - "Rights of the Child" - ] - }, - { - "text": "Encourage closer civil society participation in the follow-up to the recommendations of the Human Rights Council", - "values": [ - "Civil society", - "Special procedures", - "UPR process" - ] - }, - { - "text": "Enforce more effectively the implementation of law 99-05, which prohibits Female Genital Mutilation (FGM) and undertake an awareness-raising campaign ", - "values": [ - "Human rights education and training", - "Rights of the Child", - "Torture and other CID treatment", - "Women's rights" - ] - }, - { - "text": "Enhance the level of cooperation with different United Nations treaty bodies and special procedures ", - "values": [ - "Special procedures", - "Treaty bodies" - ] - }, - { - "text": "Remove restrictions on the ability of journalists to report and criticize government policy freely and without of fear of repression, intimidation, imprisonment or threat.", - "values": [ - "Freedom of the press" - ] - }, - { - "text": "Continue its efforts in the protection and promotion of human rights", - "values": [ - "General" - ] - }, - { - "text": "Strengthen the legislation in the area of marriage in accordance with the Convention on the Elimination of All Forms of Discrimination against Women", - "values": [ - "International instruments", - "Women's rights" - ] - }, - { - "text": "Undertake appropriate electoral and legislative reforms to enhance the scope for political representation of the indigenous people, particularly women. ", - "values": [ - "Indigenous peoples", - "Women's rights" - ] - }, - { - "text": "Establish and provide adequate resources for a sufficient number of safe houses to shelter victims of domestic violence.", - "values": [ - "Right to housing", - "Rights of the Child", - "Women's rights" - ] - }, - { - "text": "Incorporate a prohibition to indefinite detention of migrants in the 2016 Declaration on Immigration and search for alternatives to detention", - "values": [ - "Detention", - "Migrants" - ] - }, - { - "text": "Review and abolish all legal provisions that restrict the rights of human rights defenders promoting the rights of the Roma community", - "values": [ - "Human rights defenders", - "Minorities" - ] - }, - { - "text": "Make the necessary legislative changes, including restricting the scope of the Public Order Act, to ensure the fullest possible freedoms of association and expression, and to ensure the police enforce these and other laws in a proportionate manner, including in Western Province", - "values": [ - "Freedom of association and peaceful assembly", - "Freedom of opinion and expression" - ] - }, - { - "text": "Adopt a comprehensive national action plan to promote and protect women's rights ", - "values": [ - "Women's rights" - ] - }, - { - "text": "Cease the harassment and intimidation of media institutions", - "values": [ - "Freedom of the press" - ] - }, - { - "text": "Assist and encourage the Federal state's authorities to implement the General Law for Women's Access to a Life Free of Violence as a matter of urgency, and where it has been incorporated in states' legislation, ensure that appropriate regulations are elaborated to ensure its effective implementation", - "values": [ - "Women's rights" - ] - }, - { - "text": "Continue to strengthen its anti-racism and anti-discriminatory policies and measures, especially for the Roma and other minorities ", - "values": [ - "Minorities", - "Racial discrimination" - ] - }, - { - "text": "Raise awareness, through the media and educational means, of the value of human rights and respect for human rights, as well as violence against women ", - "values": [ - "Human rights education and training", - "Women's rights" - ] - }, - { - "text": "Actively support the non-governmental organizations that have effective programmes in promoting human rights and inter-ethnic tolerance in Transnistria", - "values": [ - "Civil society" - ] - }, - { - "text": "Continue to enhance the capacity building of its national human rights institutions with the support of the international community, including OHCHR, and seek the effective contribution of OHCHR to strengthen the NHRC.", - "values": [ - "National Human Rights Institution", - "Technical assistance and cooperation" - ] - }, - { - "text": "Review current legislation, policies and programmes relating to maternity and parental leave with a view to ensuring an adequate period of infant and early childhood care while mitigating the negative impacts on career advancement", - "values": [ - "Rights of the Child", - "Women's rights" - ] - }, - { - "text": "Bring its criminal laws on criminalization of consenting relations between adults of the same sex, and on offences of indecent assault and serious indecency that are defined vaguely, into line with international norms with respect to privacy and non-discrimination", - "values": [ - "Privacy", - "Sexual Orientation and Gender Identity" - ] - }, - { - "text": "Become a party to the 1951 Refugee Convention and 1967 Refugee Protocol ", - "values": [ - "Asylum-seekers - refugees", - "International instruments" - ] - }, - { - "text": "Expedite internal procedures related to the establishing of the national preventive mechanism under the Optional Protocol to the Convention against Torture and Other Cruel, Inhuman or Degrading Treatment or Punishment", - "values": [ - "Detention", - "International instruments", - "Torture and other CID treatment" - ] - }, - { - "text": "Continue to address the problems faced by the girl child and the suggestions by the CRC that local, religious and other leaders should take a more active role in supporting the efforts to prevent and eliminate discrimination against the girl child", - "values": [ - "Rights of the Child", - "Technical assistance and cooperation", - "Treaty bodies", - "Women's rights" - ] - }, - { - "text": "Do more to ensure the effective prosecution of domestic violence cases", - "values": [ - "Rights of the Child", - "Women's rights" - ] - }, - { - "text": "Amend the Internet Law in order to guarantee the free exercise of freedom of expression, among others, by ensuring that the Telecommunications Authority cannot block websites without judicial authorization", - "values": [ - "Freedom of opinion and expression" - ] - }, - { - "text": "Bring the existing criminal provisions that could be seen as inconsistent with the Israeli Basic Law on Human Dignity and Liberty and basic human rights law provisions guaranteeing freedom of speech into conformity with modern human rights law standards", - "values": [ - "Freedom of opinion and expression" - ] - }, - { - "text": "Adopt the abolition of the death penalty, or at least a moratorium on its application, as it has already done twice in 1977 and 1998 ", - "values": [ - "Death penalty" - ] - }, - { - "text": "Increase cooperation with the United Nations treaty bodies and special procedures, in particular in implementing their recommendations and decisions ", - "values": [ - "Special procedures", - "Treaty bodies" - ] - }, - { - "text": "Proceed with the ratification of relevant international instruments not yet ratified and monitor implementation of instruments already ratified", - "values": [ - "International instruments" - ] - }, - { - "text": "Grant free and unfettered access to the Special Rapporteur on the situation of human rights in the Democratic People's Republic of Korea and to all special procedures mandate-holders ", - "values": [ - "Special procedures" - ] - }, - { - "text": "Repeal all provisions providing for mandatory death sentences with a view to abolishing them", - "values": [ - "Death penalty" - ] - }, - { - "text": "Strive to provide adequate housing in order to fulfil the right of families to decent housing conditions", - "values": [ - "Right to housing" - ] - }, - { - "text": "Investigate all cases of violations of human rights in all counterterrorism settings related to lengthy secret detentions, extraordinary renditions, and the possible application of torture against individuals, and bring those responsible of such violations to justice ", - "values": [ - "Counter-terrorism", - "Detention", - "Torture and other CID treatment" - ] - }, - { - "text": "Raise the age of criminal responsibility of children from 7 to 12 years, as recommended by the Committee on the Rights of the Child", - "values": [ - "Justice", - "Rights of the Child", - "Treaty bodies" - ] - }, - { - "text": "Strengthens technical cooperation with the Office of the High Commissioner for Human Rights in various relevant fields", - "values": [ - "Other" - ] - }, - { - "text": "Give momentum to the process of completing the drafting of a National Human Rights Action Plan (NAHRAP) which would enable the country to address all human rights concerns in a comprehensive and holistic manner", - "values": [ - "General" - ] - }, - { - "text": "Ensure that its legislation addresses all forms of violence, explicitly prohibits corporal punishment in all settings and includes measures to raise awareness of positive, non-violent and participatory forms of child-rearing throughout the Kingdom, in particular in Aruba and in the Caribbean Netherlands", - "values": [ - "Rights of the Child", - "Torture and other CID treatment" - ] - }, - { - "text": "Pay special attention to helping Dalit children, girls, and children belonging to ethnic minorities to complete their education cycle, and to ensure their employment opportunities after education in order to enable them to claim their rights and work as agents of change for their communities ", - "values": [ - "Minorities", - "Right to education", - "Rights of the Child", - "Women's rights" - ] - }, - { - "text": "Amend the Press and Publications Law to promote an open and free press, including by broadening the definition of a journalist and by removing fines and the requirement for permission prior to publication, and ensuring freedom of Internet media", - "values": [ - "Freedom of the press" - ] - }, - { - "text": "Accede to CRPD ", - "values": [ - "Disabilities", - "International instruments" - ] - }, - { - "text": "Adhere to all Protocols to the International Covenant on Civil and Political Rights and to the International Covenant on Economic, Social and Cultural Rights ", - "values": [ - "CP rights - general", - "ESC rights - general", - "International instruments" - ] - }, - { - "text": "Intensify its efforts to create a culture of tolerance in society through, inter alia, the use of public and private media ", - "values": [ - "Freedom of the press" - ] - }, - { - "text": "Take steps to fully implement and enforce laws on violence against women and to ensure that victims were able to benefit from the existing legislative framework ", - "values": [ - "Women's rights" - ] - }, - { - "text": "Take further steps to strengthen its social protection programs, in favour of the most vulnerable sectors of the population", - "values": [ - "ESC rights - general" - ] - }, - { - "text": "Repeal or amend the 2002 Press Law eliminating all restrictions upon the freedom of the press not in line with relevant provisions of the ICCPR", - "values": [ - "Freedom of the press", - "International instruments" - ] - }, - { - "text": "Take steps to address challenges faced by Roma women and girls in the areas of health care and employment", - "values": [ - "Labour", - "Minorities", - "Right to health", - "Rights of the Child", - "Women's rights" - ] - }, - { - "text": "Accede to the Second Optional Protocol to the International Covenant on Civil and Political Rights and adjust the legislation, and in the meantime, officially enshrine the current de facto moratorium on the death penalty ", - "values": [ - "Death penalty", - "International instruments" - ] - }, - { - "text": "Implement more rigorously the existing mechanisms to protect and assist children living and/or working on the streets ", - "values": [ - "Rights of the Child" - ] - }, - { - "text": "Ratify the Kampala amendments to the Rome Statute, if possible with a view to contributing to the activation of the jurisdiction of the ICC over the crime of aggression at the beginning of 2017 ", - "values": [ - "International instruments", - "Justice" - ] - }, - { - "text": "Proceed with the early ratification of the remaining important international human rights treaties, in particular the Convention on the Rights of Persons with Disabilities and the International Convention for the Protection of All Persons from Enforced Disappearance", - "values": [ - "Disabilities", - "Enforced disappearances", - "International instruments" - ] - }, - { - "text": "Continue guaranteeing the enjoyment of economic, social and cultural rights in order to reach the MDGs ", - "values": [ - "ESC rights - general" - ] - }, - { - "text": "Give more attention to improving the status of women and children", - "values": [ - "Rights of the Child", - "Women's rights" - ] - }, - { - "text": "Continue to work on the protection of women's rights and the implementation of the National Plan of Action for Securing Gender Equality", - "values": [ - "Women's rights" - ] - }, - { - "text": "Take further measures to prevent impunity of the perpetrators of the post-election violence", - "values": [ - "Impunity" - ] - }, - { - "text": "Promote understanding, tolerance and friendship between nations and racial and ethnic groups", - "values": [ - "Minorities" - ] - }, - { - "text": "Strengthening coordination and effectiveness in official development assistance", - "values": [ - "Development" - ] - }, - { - "text": "Release all detained human rights defenders and political prisoners", - "values": [ - "Detention", - "Freedom of opinion and expression", - "Human rights defenders" - ] - }, - { - "text": "Consider the ratification of the main international human rights instruments to which it is not yet a State Party", - "values": [ - "International instruments" - ] - }, - { - "text": "Conclude the enactment of the bill to establish a policy against harassment in the public sector", - "values": [ - "Other" - ] - }, - { - "text": "Strengthen the implementation of policies to fight domestic violence", - "values": [ - "Rights of the Child", - "Women's rights" - ] - }, - { - "text": "Maintain positive efforts to improve the functioning of its education system, particularly by increasing school attendance rates", - "values": [ - "Right to education" - ] - }, - { - "text": "Engage civil society in a follow-up of its UPR ", - "values": [ - "Civil society", - "UPR process" - ] - }, - { - "text": "Apply the recommendations that, on the new immigration policy, have made several treaty bodies, particularly the request for ratification of the Convention on the Protection of the Rights of All Migrant Workers and Members of Their Families", - "values": [ - "International instruments", - "Labour", - "Migrants", - "Treaty bodies" - ] - }, - { - "text": "Accelerate the improvement of the judicial, policial and prison systems and training to the police force in line with international human rights standards", - "values": [ - "Detention", - "Human rights education and training", - "International instruments", - "Justice" - ] - }, - { - "text": "Enact comprehensive legislation addressing the situation of the "erased", ensuring them appropriate assistance and protection", - "values": [ - "Other" - ] - }, - { - "text": "Establish a national human rights institution, in accordance with the Paris Principles, to provide additional protection for the human rights of its citizens ", - "values": [ - "National Human Rights Institution" - ] - }, - { - "text": "Consider signature and ratification of the Optional Protocol to the Convention on the Elimination of All Forms of Discrimination against Women ", - "values": [ - "International instruments", - "Women's rights" - ] - }, - { - "text": "Establish a national human rights institution in accordance with the Paris Principles", - "values": [ - "National Human Rights Institution" - ] - }, - { - "text": "Maintain the moratorium on the death penalty, followed by the definitive abolition of the death penalty", - "values": [ - "Death penalty" - ] - }, - { - "text": "Ratify the Optional Protocol to CRPD ", - "values": [ - "Disabilities", - "International instruments" - ] - }, - { - "text": "Facilitate access to justice through additional measures, which could reduce structural obstacles such as the cost and the cumbersome nature of the procedures ", - "values": [ - "Justice" - ] - }, - { - "text": "Continue its efforts to implement the plan for equal opportunities 2011-2020 ", - "values": [ - "General" - ] - }, - { - "text": "Continue working towards the elimination of the user-pay policy for education with the aim of providing free primary education, as per Millennium Development Goal 2 ", - "values": [ - "Right to education" - ] - }, - { - "text": "Take measures to promote a safe and enabling environment for journalists to perform their work independently and without undue interference", - "values": [ - "Freedom of the press" - ] - }, - { - "text": "Establish additional standards to guarantee the swift and appropriate appointment of guardians to unaccompanied minors", - "values": [ - "Rights of the Child" - ] - }, - { - "text": "Publish official figures concerning executions and death sentences.", - "values": [ - "Death penalty" - ] - }, - { - "text": "Adopt a moratorium on the death penalty with the clear objective of its complete abolition", - "values": [ - "Death penalty" - ] - }, - { - "text": "Continue to make progress in measures to prevent discrimination against any person due to its sexual orientation or gender identity ", - "values": [ - "Sexual Orientation and Gender Identity" - ] - }, - { - "text": "Recommended that a strategy of assistance and prevention be developed for street children in order to protect and guarantee their rights, involving community-based associations and other civil society organizations.", - "values": [ - "Civil society", - "Rights of the Child" - ] - }, - { - "text": "Fulfil its commitments to build improved detention facilities ", - "values": [ - "Detention" - ] - }, - { - "text": "Continue efforts to strengthen the legal framework to combat torture, which had proved to be successful in reducing the number of complaints", - "values": [ - "Torture and other CID treatment" - ] - }, - { - "text": "Guarantee that no women belonging to minority groups, including Roma, can be subject to practices of forced sterilization and that victims of such practices are provided with the necessary reparation.", - "values": [ - "Minorities", - "Torture and other CID treatment", - "Women's rights" - ] - }, - { - "text": "Ensure that all allegations of excessive use of force, torture and cruel and other forms of ill treatment, including in detention places and prisons, committed by law enforcement personnel are thoroughly and objectively investigated, bringing alleged perpetrators to justice and providing appropriate remedies to victims ", - "values": [ - "Detention", - "Human rights violations by state agents", - "Torture and other CID treatment" - ] - }, - { - "text": "Follow-up on the recommendations made by CEDAW to address all forms of violence against women and girls, adopt and enact legislation in this area ", - "values": [ - "Rights of the Child", - "Treaty bodies", - "Women's rights" - ] - }, - { - "text": "Take into account human rights education and training in its national education and training programs ", - "values": [ - "Human rights education and training", - "Right to education" - ] - }, - { - "text": "Recognise the competence of treaty bodies to examine individual complaints by ratifying the respective optional protocols, in particular OPCAT", - "values": [ - "Detention", - "International instruments", - "Torture and other CID treatment", - "Treaty bodies" - ] - }, - { - "text": "Evaluate measures taken to prevent stereotyping attitudes with regard to gender roles in the family and society, and strengthen efforts to implement the National Action Plan on Gender Equality and achieve a comprehensive and systematic approach to gender equality policies ", - "values": [ - "Women's rights" - ] - }, - { - "text": "Put an emphasis on the training of those responsible for the protection of the rights of women and children", - "values": [ - "Rights of the Child", - "Women's rights" - ] - }, - { - "text": "Sign and ratify the International Convention for the Protection of All Persons from Enforced Disappearance (ICPPED)", - "values": [ - "Enforced disappearances", - "International instruments" - ] - }, - { - "text": "Continue implementing its comprehensive national strategy aimed at combating short- and long-term unemployment", - "values": [ - "Development" - ] - }, - { - "text": "Draft a concrete strategy to ensure that it will eventually submit all pending reports to treaty bodies ", - "values": [ - "Treaty bodies" - ] - }, - { - "text": "Take legislative measures to eliminate discrimination against women, particularly in the area of marriage and divorce", - "values": [ - "Women's rights" - ] - }, - { - "text": "Continue to promote and support programmes such as the Jobs Access Gateway to equip persons with disabilities with the appropriate skills to secure gainful employment", - "values": [ - "Disabilities", - "Labour" - ] - }, - { - "text": "Establish a national preventive mechanism according to the Optional Protocol to the Convention against Torture and Other Cruel, Inhuman or Degrading Treatment or Punishment.", - "values": [ - "Detention", - "International instruments", - "Torture and other CID treatment" - ] - }, - { - "text": "Adopt measures and safeguards to ensure the exercise, in conditions of equality, of the legal capacity and recognition before the law of persons with disabilities", - "values": [ - "Disabilities" - ] - }, - { - "text": "Consider the possibility of ratifying OP-CAT and OP-ICCPR ", - "values": [ - "CP rights - general", - "Detention", - "International instruments", - "Torture and other CID treatment" - ] - }, - { - "text": "Increase its efforts to implement the National Plan to Combat Trafficking in Persons", - "values": [ - "Trafficking" - ] - }, - { - "text": "Accede to/ratify the 1961 Convention on the Reduction of Statelessness", - "values": [ - "International instruments", - "Statelessness and the right to nationality" - ] - }, - { - "text": "Ensure that the Non-Discrimination Ombudsman has the necessary information and resources to make decisions related to mandatory deportations, and can ensure that these are carried out respecting the rights of those concerned", - "values": [ - "National Human Rights Institution" - ] - }, - { - "text": "Implement recommendations of the 2012 European Union election observation mission promoting inclusiveness and transparency of the election process", - "values": [ - "Elections" - ] - }, - { - "text": "Accede to the ICRMW ", - "values": [ - "International instruments", - "Labour", - "Migrants" - ] - }, - { - "text": "Consider ratification of the Optional Protocol to the International Covenant on Economic, Social and Cultural Rights ", - "values": [ - "ESC rights - general", - "International instruments" - ] - }, - { - "text": "Strengthen actions aimed at implementing social inclusion and development policies to reduce levels of inequality and poverty", - "values": [ - "Development", - "Poverty" - ] - }, - { - "text": "Pass laws at the national and state levels to address domestic violence and other forms of violence against women", - "values": [ - "Women's rights" - ] - }, - { - "text": "Implement the road map for the country's transition to a green economy through the various measures planned", - "values": [ - "Development", - "Environment" - ] - }, - { - "text": "Step up its further efforts to combat trafficking in persons including continue the practice of developing national plans of actions and other strategies in this area ", - "values": [ - "Trafficking" - ] - }, - { - "text": "Adopt a specific law prohibiting incitement to racial and religious hatred, in accordance with article 20, paragraph 2, of the International Covenant of Civil and Political Rights.", - "values": [ - "Freedom of religion and belief", - "International instruments", - "Racial discrimination" - ] - }, - { - "text": "Consider intensifying the implementation of its programmes and policies aimed at combating violence against women", - "values": [ - "Women's rights" - ] - }, - { - "text": "Implement the recommendations of the Jamaican Justice System Reform Task Force report and provide the justice system with adequate resources and structures to do this effectively ", - "values": [ - "Justice" - ] - }, - { - "text": "Explain clearly relevant facts and circumstances to address concerns expressed by United Nations human rights mechanisms", - "values": [ - "Special procedures", - "Treaty bodies", - "UPR process" - ] - }, - { - "text": "That anti-minority attacks be publicly condemned by authorities, and that such attacks are investigated in order to bring the perpetrators to justice ", - "values": [ - "Minorities" - ] - }, - { - "text": "Strengthen efforts to implement the key reforms, including the police reform ", - "values": [ - "Justice" - ] - }, - { - "text": "Ratify the Convention on the Elimination of All Forms of Discrimination against Women and adopt a National Action Plan on Security Council Resolution 1325 on women, peace and security", - "values": [ - "International instruments", - "Women's rights" - ] - }, - { - "text": "Continue to strengthen its leadership in enhancing regional inclusive mechanisms for the protection of migrant workers through legally binding instruments", - "values": [ - "International instruments", - "Labour", - "Migrants" - ] - }, - { - "text": "Adopt legislation to limit the use of solitary confinement and abolish solitary confinement of children", - "values": [ - "Detention", - "Rights of the Child" - ] - }, - { - "text": "Revise the Penal Code as well as other laws so that they comply with international freedom of expression standards and prevent the harassment of human rights defenders, journalists and NGOs ", - "values": [ - "Civil society", - "Freedom of opinion and expression", - "Freedom of the press", - "Human rights defenders" - ] - }, - { - "text": "Ensure the equitable treatment of all people through an improved justice system and increased respect for human rights within the police and security forces, including the ratification of OP-CAT", - "values": [ - "Detention", - "Human rights education and training", - "International instruments", - "Torture and other CID treatment" - ] - }, - { - "text": "Sign and ratify: the Optional Protocol to the International Covenant on Civil and Political Rights, the Optional Protocol to the International Covenant on Economic, Social and Cultural Rights, and the Optional Protocol to CEDAW, the International Convention on the Protection of the Rights of All Migrant Workers and Members of Their Families, the Optional Protocols to the Convention on the Rights of the Child, the Convention on the Rights of Persons with Disabilities and the Optional Protocol thereto, and the International Convention for the Protection of All Persons from Enforced Disappearance", - "values": [ - "International instruments" - ] - }, - { - "text": "Insist more on measures aiming to combat the demand and provide information and services to victims of trafficking ", - "values": [ - "Trafficking" - ] - }, - { - "text": "Take the necessary steps for timely ratification of CAT ", - "values": [ - "International instruments", - "Torture and other CID treatment" - ] - }, - { - "text": "Ensure that the executed persons' bodies are handed over for private burial", - "values": [ - "Death penalty" - ] - }, - { - "text": "Translate, publish and make available to the citizens of the country the assessments and recommendations made by relevant international human rights bodies, including the Human Rights Council's universal periodic review", - "values": [ - "Treaty bodies", - "UPR process" - ] - }, - { - "text": "Increase the capacity building and technical assistance to enable the country to implement its national priorities including the National Strategic Plan in the sphere of education", - "values": [ - "Right to education" - ] - }, - { - "text": "Vigorously investigate all reports of sorcery-related killings to ensure that the perpetrators are brought to justice, and develop and implement strategies, including for social and cultural change, to prevent further killings ", - "values": [ - "Justice" - ] - }, - { - "text": "Ensure the protection of the rights of minorities", - "values": [ - "Minorities" - ] - }, - { - "text": "Establish a moratorium on the execution of the death penalty", - "values": [ - "Death penalty" - ] - }, - { - "text": "Combat the sale and trafficking in children and strengthen partnerships with all stakeholders so as to provide child victims with recovery and social reintegration services and programmes ", - "values": [ - "Rights of the Child", - "Trafficking" - ] - }, - { - "text": "Prioritize the social sectors such as health and education in government spending and seek international cooperation to improve the livelihood of its people", - "values": [ - "Right to education", - "Right to health", - "Technical assistance and cooperation" - ] - }, - { - "text": "Add the possibility of a life sentence without parole to the range of penalties for heinous crimes.", - "values": [ - "Justice" - ] - }, - { - "text": "Continue its leading international efforts to tackle global warming, including by reminding developed countries and other major emitting States of their obligation to help promote and protect human rights by reducing greenhouse gas emissions to safe levels ", - "values": [ - "Environment" - ] - }, - { - "text": "Further work on the protection and rights of the child by ensuring that the necessary capacity and infrastructure are in place so that legislation related to the obligations of Saint Kitts and Nevis under the Convention on the Rights of the Child, which has been already been passed by parliament, can be proclaimed and implemented as soon as possible", - "values": [ - "International instruments", - "Rights of the Child" - ] - }, - { - "text": "Establish an effective and inclusive process for follow up on the recommendations resulting from the present review", - "values": [ - "UPR process" - ] - }, - { - "text": "Share its plans and practices in eradicating poverty in a time-bound manner as is reflected in the works of the special Committee for the Eradication of Absolute Poverty and five-track partnerships", - "values": [ - "Poverty" - ] - }, - { - "text": "Continue promoting and protecting the rights of minorities by fully integrating minorities in all socio-economic aspects in addition to education, medical service and employment", - "values": [ - "ESC rights - general", - "Labour", - "Minorities", - "Right to education" - ] - }, - { - "text": "Provide human rights training to Government officials and teachers ", - "values": [ - "Human rights education and training" - ] - }, - { - "text": "Protect the Christian and other religious minorities by fostering a climate of religious tolerance and respect in the country ", - "values": [ - "Freedom of religion and belief", - "Minorities" - ] - }, - { - "text": "Carry on its efforts and action in the promotion of social security and labour policy", - "values": [ - "ESC rights - general", - "Labour" - ] - }, - { - "text": "Review and implement the national human rights strategy in collaboration with the National Commission on Human Rights and Freedoms, and with reliance upon civil society, to ensure a long lasting and sustainable framework for the application and protection of human rights for the people of Cameroon", - "values": [ - "Civil society", - "National Human Rights Institution" - ] - }, - { - "text": "Initiate sectoral policies taking into account the needs of certain vulnerable groups", - "values": [ - "Minorities" - ] - }, - { - "text": "Ratify the Council of Europe Framework Convention for the Protection of National Minorities", - "values": [ - "International instruments", - "Minorities" - ] - }, - { - "text": "Continue implementing the obligations under the international human rights treaties ratified by the Lao People's Democratic Republic", - "values": [ - "International instruments" - ] - }, - { - "text": "Consider ratifying the Rome Statute of the International Criminal Court ", - "values": [ - "International instruments", - "Justice" - ] - }, - { - "text": "Further promote human rights culture in the country", - "values": [ - "ESC rights - general" - ] - }, - { - "text": "Increase efforts to promote and protect the rights of vulnerable groups such as children, women, people with disabilities and the elderly ", - "values": [ - "Disabilities", - "Rights of the Child", - "Women's rights" - ] - }, - { - "text": "Improve the living conditions of asylum-seekers and refugees ", - "values": [ - "Asylum-seekers - refugees" - ] - }, - { - "text": "Draw up a national plan for children to ensure systematic efficient implementation of the new legislation introduced in this area", - "values": [ - "Rights of the Child" - ] - }, - { - "text": "Decriminalize defamation in line with international standards ", - "values": [ - "Freedom of opinion and expression" - ] - }, - { - "text": "San Marino is indeed committed to collaborating with the United Nations Human Rights Treaty Monitoring Bodies, although the shortage of human resources within the San Marino Administration will not allow to submit more than one report per year.", - "values": [ - "Treaty bodies" - ] - }, - { - "text": "Establish an independent national human rights institution and another institution to advocate the rights of the child", - "values": [ - "National Human Rights Institution", - "Rights of the Child" - ] - }, - { - "text": "Continue to prioritize resources to equip its young people with the necessary education and skills to thrive in the global economy", - "values": [ - "Right to education" - ] - }, - { - "text": "Continue its exceptional efforts in combating poverty and developing the education system, and in addition, continue to enhance its efforts related to preserving the environment", - "values": [ - "Environment", - "Poverty", - "Right to education" - ] - }, - { - "text": "Undertake a comprehensive review of arrangements for the appointment, training and transfer of judges, with a view to ensuring their independence and their full understanding and application of human rights obligations", - "values": [ - "Justice" - ] - }, - { - "text": "Introduce specific legislation prohibiting discrimination based on gender identity or intersex status", - "values": [ - "Sexual Orientation and Gender Identity" - ] - }, - { - "text": "Ratify ILO Conventions No. 87 and No. 98", - "values": [ - "Freedom of association and peaceful assembly", - "International instruments", - "Labour" - ] - }, - { - "text": "Introduce legislation at the earliest opportunity to give the Children's Commissioner for England an explicit role of promoting and protecting children's rights in line with the CRC and to make the Commissioner more independent from Government and more accountable to Parliament ", - "values": [ - "International instruments", - "Rights of the Child" - ] - }, - { - "text": "Earmark human and financial resources for combating violence against women by creating shelters for and providing assistance to victims", - "values": [ - "Women's rights" - ] - }, - { - "text": "Continue its efforts to combat unemployment, and to work on laying the ground for suitable economic environment that creates more job opportunities for youth ", - "values": [ - "Development" - ] - }, - { - "text": "Implement the recommendations of the European Commission for Democracy through Law (Venice Commission) related to reforms in the system of appointments and probation periods of judges", - "values": [ - "International instruments", - "Justice" - ] - }, - { - "text": "To carry out an annual review of the human rights situation in the country and report as appropriate", - "values": [ - "General" - ] - }, - { - "text": "Make continued efforts for the sustainable development of the health sector so as to ensure provision of high-quality medical services to all citizens", - "values": [ - "Right to health" - ] - }, - { - "text": "Undertake the necessary measures to advance in the eradication of child labour, by applying the 2008 law to protect children, which prohibits child labour ", - "values": [ - "Labour", - "Rights of the Child" - ] - }, - { - "text": "Ratify OP-CRC-SC and sign and ratify OP-CRC-IC ", - "values": [ - "International instruments", - "Rights of the Child", - "Trafficking" - ] - }, - { - "text": "Accord higher priority to the investigation and prosecution of domestic violence cases", - "values": [ - "Rights of the Child", - "Women's rights" - ] - }, - { - "text": "Consider the establishment of a national human rights institution that will be granted accreditation status by the International Coordinating Committee of National Institutions for the Promotion and Protection of Human Rights", - "values": [ - "National Human Rights Institution" - ] - }, - { - "text": "Increase social and economic initiatives to reinforce the full enjoyment of human rights by internally displaced persons, in particular minorities, such as indigenous peoples and Afro descendents.", - "values": [ - "Indigenous peoples", - "Internally displaced persons", - "Minorities" - ] - }, - { - "text": "Put in place an independent police complaints commission ", - "values": [ - "Justice" - ] - }, - { - "text": "Recalling General Assembly Resolution 62-149, reinstate its moratorium on the death penalty with a view to its abolition.", - "values": [ - "Death penalty" - ] - }, - { - "text": "Abide by the standards of the International Labour Organization (ILO) in the area of child employment and prohibit child prostitution and punish perpetrators of such acts ", - "values": [ - "International instruments", - "Labour", - "Rights of the Child" - ] - }, - { - "text": "Effectively implement the law on violence against women", - "values": [ - "Women's rights" - ] - }, - { - "text": "Step-up socioeconomic policies to enable the active participation of people of African descent in economic, social and political sphere", - "values": [ - "Minorities" - ] - }, - { - "text": "Suspend executions of persons whose age is subject to doubt, having in mind the establishment of a special commission to determine the age of accused suspected of being a minor at the time of commitment of the crime ", - "values": [ - "Death penalty", - "Rights of the Child" - ] - }, - { - "text": "Accede to the Convention on the Prevention and Punishment of the Crime of Genocide ", - "values": [ - "International instruments", - "Justice" - ] - }, - { - "text": "Seek technical assistance and cooperation to combat the high prevalence of non-communicable diseases and its root causes", - "values": [ - "Technical assistance and cooperation" - ] - }, - { - "text": "Accede to the international treaties on human rights and ratify ICPPED", - "values": [ - "Enforced disappearances", - "International instruments" - ] - }, - { - "text": "Include in the future census a question on national ethnicity ", - "values": [ - "Minorities" - ] - }, - { - "text": "Take all necessary measures to bring its legislation on child labour in line with international obligations and continue implementing the programmes that provide education facilities for working children", - "values": [ - "Labour", - "Right to education", - "Rights of the Child" - ] - }, - { - "text": "Expedite the introduction of a statelessness determination procedure and ensure that it is in line with international standards and guidance from the Office of the United Nations High Commissioner for Refugees", - "values": [ - "Asylum-seekers - refugees", - "Statelessness and the right to nationality" - ] - }, - { - "text": "Conclude the ratification process of OP-CAT and the Convention for the Protection of All Persons from Enforced Disappearances (CED), as earlier as possible ", - "values": [ - "Detention", - "Enforced disappearances", - "International instruments", - "Torture and other CID treatment" - ] - }, - { - "text": "Mitigate the effects of the financial crisis on its efforts to address the issues of child poverty and street children ", - "values": [ - "Poverty", - "Rights of the Child" - ] - }, - { - "text": "Involve civil society organizations in the follow-up to the Universal Periodic Review.", - "values": [ - "Civil society", - "UPR process" - ] - }, - { - "text": "Continue to provide social security protection to mothers of children with severe disabilities ", - "values": [ - "Disabilities", - "Rights of the Child", - "Women's rights" - ] - }, - { - "text": "Repeal the death penalty, as previously recommended", - "values": [ - "Death penalty" - ] - }, - { - "text": "Consider the possibility of acceding to ICERD and CAT", - "values": [ - "International instruments", - "Racial discrimination", - "Torture and other CID treatment" - ] - }, - { - "text": "The Government would like to pledge to the people of Somalia and to the international community at large that when Somalia re-emerges as a full-fledged and functional state, it will rebuild on a solid foundation of human rights and IHL.", - "values": [ - "International humanitarian law" - ] - }, - { - "text": "Continue their efforts aiming at protecting freedom of expression and end practices that threaten the right to freedom of expression, including threats against journalists and media", - "values": [ - "Freedom of opinion and expression", - "Freedom of the press" - ] - }, - { - "text": "Take more decisive steps towards implementing the National Programme for the Protection of Human Rights Defenders", - "values": [ - "Human rights defenders" - ] - }, - { - "text": "Consider the possibility of ratifying the main human rights international instruments, particularly the International Covenant on Civil and Political Rights and its Optional Protocols, the International Covenant on Economic, Social and Cultural Rights, the Convention against Torture and Other Cruel, Inhuman or Degrading Treatment or Punishment, the International Convention on the Elimination of All Forms of Racial Discrimination, the International Convention on the Elimination of All Forms of Discrimination against Women and its Optional Protocols, and the International Convention for the Protection of All Persons from Enforced Disappearance", - "values": [ - "International instruments" - ] - }, - { - "text": "Ensure, with the support of the international technical assistance, access for the entire population, including internally displaced persons, to drinking water and sanitation, food and nutrition, as well as health services", - "values": [ - "Internally displaced persons", - "Right to food", - "Right to health", - "Right to water and sanitation", - "Technical assistance and cooperation" - ] - }, - { - "text": "Continue making every effort to ensure greater protection against child prostitution and pornography", - "values": [ - "Rights of the Child" - ] - }, - { - "text": "Following up on a 2010 recommendation, fully implement the National Plan for the Prevention and Gradual Eradication of the Worst Forms of Child Labour and the Protection of Adolescent Workers", - "values": [ - "Labour", - "Rights of the Child" - ] - }, - { - "text": "Consider ratifying the Convention on the Rights of Persons with Disabilities in the future", - "values": [ - "Disabilities", - "International instruments" - ] - }, - { - "text": "Fight against terrorism with all possible means", - "values": [ - "Public security" - ] - }, - { - "text": "Continue with its efforts to promote women's participation in the political sphere", - "values": [ - "Women's rights" - ] - }, - { - "text": "Continue to strengthen the rule of law in the country by swiftly adopting the Criminal Code and the Code of Criminal Procedure", - "values": [ - "Justice" - ] - }, - { - "text": "Adopt measures in order to appropriately receive children and adolescents deported from another country", - "values": [ - "Rights of the Child" - ] - }, - { - "text": "Expedite the necessary process to ratify the Convention on the Rights of Persons with Disabilities ", - "values": [ - "Disabilities", - "International instruments" - ] - }, - { - "text": "Establish effective coordination and monitoring structures to ensure Convention on the Rights of the Child implementation across national and local governments", - "values": [ - "International instruments", - "Rights of the Child" - ] - }, - { - "text": "Ensure access to justice, investigating an alarming pattern of violence afflicting indigenous women throughout the country and allegations of an inadequate response by authorities, as well as addressing the root causes of violence against indigenous women in order to end all forms of violence against Aboriginal women and girls ", - "values": [ - "Indigenous peoples", - "Rights of the Child", - "Women's rights" - ] - }, - { - "text": "Eliminate all forms of discrimination against Roma, migrants and asylum seekers ", - "values": [ - "Asylum-seekers - refugees", - "Migrants", - "Minorities", - "Racial discrimination" - ] - }, - { - "text": "Continue with its full cooperation with the human rights international mechanisms, particularly with the treaty bodies ", - "values": [ - "Treaty bodies" - ] - }, - { - "text": "Increase measures to tackle illegal land evictions, including those against indigenous people, and consider fortifying the legislative framework consistently with international standards ", - "values": [ - "Indigenous peoples", - "Right to land" - ] - }, - { - "text": "Further efficiently address violence against women, through facilitation of the reporting of domestic and sexual violence and providing support services to victims", - "values": [ - "Rights of the Child", - "Women's rights" - ] - }, - { - "text": "Abolish death penalty or at least to establish a moratorium on executions", - "values": [ - "Death penalty" - ] - }, - { - "text": "Create an environment conducive to the unhindered work of all political parties, free from intimidation and harassment of those critical of the government, release all those imprisoned for their political views and foster a culture of political dialogue and political pluralism", - "values": [ - "Civil society", - "Freedom of association and peaceful assembly", - "Freedom of opinion and expression" - ] - }, - { - "text": "Adopt a moratorium on executions with a view to the definitive abolition of the death penalty ", - "values": [ - "Death penalty" - ] - }, - { - "text": "Decriminalize apostasy ", - "values": [ - "Freedom of religion and belief" - ] - }, - { - "text": "Ensure full protection of the human rights of all people in Ghana, including lesbian, gay, bisexual and transgender people, women, and persons with disabilities, by eliminating discriminatory legislation, prohibiting discrimination based on sexual orientation and gender identity, and effectively implementing existing laws and policies on gender and disabilities", - "values": [ - "Disabilities", - "Sexual Orientation and Gender Identity", - "Women's rights" - ] - }, - { - "text": "Regarding the Khmer Rouge tribunal, make further efforts for smooth court proceedings and the early completion of its work, in view of its unexpected delay ", - "values": [ - "Justice" - ] - }, - { - "text": "Strengthen efforts to prevent and combat all kinds of discrimination, in particular against women and lesbian, gay, bisexual, transgender and intersex persons", - "values": [ - "Sexual Orientation and Gender Identity" - ] - }, - { - "text": "Address more effectively entrenched discriminatory practices against women in the political, economic and social spheres, particularly in terms of the gender pay gap and social security", - "values": [ - "Labour", - "Women's rights" - ] - }, - { - "text": "Ensure that allegations of torture and ill-treatment are promptly and impartially investigated, and that perpetrators are held accountable", - "values": [ - "Torture and other CID treatment" - ] - }, - { - "text": "Withdraw the reservations made to articles 21 and 22 of CAT and ratify its Optional Protocol", - "values": [ - "Detention", - "International instruments", - "Torture and other CID treatment" - ] - }, - { - "text": "Continue fighting violence against women ", - "values": [ - "Women's rights" - ] - }, - { - "text": "Further develop measures to generate better conditions for the activities of organizations on the rights of women", - "values": [ - "Women's rights" - ] - }, - { - "text": "Pursue the effort to increase the standard of living of all Liberians with specific programmes in the areas of accommodation, health, education and other basic social services", - "values": [ - "Right to education", - "Right to health", - "Right to housing" - ] - }, - { - "text": "Abolish the death penalty in order to perpetuate the de facto moratorium on executions ", - "values": [ - "Death penalty" - ] - }, - { - "text": "Take further measures to improve the treatment of persons arrested, detained or imprisoned, including by strengthening the National Preventive Mechanism", - "values": [ - "Detention", - "Torture and other CID treatment" - ] - }, - { - "text": "The Government has highly valued the participation and contribution of the representatives of the civil society in the early stages of the review process, namely in carrying out an objective assessment of the human rights situation before being reviewed and it has been committed to continue the established cooperation with the civil society during the follow-up process. ", - "values": [ - "Civil society", - "UPR process" - ] - }, - { - "text": "Review national legislation so as to reduce the high levels of female mortality caused by illegal abortion in the country, as well as the imprisonment of women for this reason", - "values": [ - "Detention", - "Women's rights" - ] - }, - { - "text": "Strengthen the forum for dialogue between civil society and the Government ", - "values": [ - "Civil society" - ] - }, - { - "text": "Consider ratifying human rights treaties to which Guinea-Bissau is not yet a party, such as the Convention on the Rights of Persons with Disabilities", - "values": [ - "Disabilities", - "International instruments" - ] - }, - { - "text": "With assistance from the Office of the High Commissioner for Human Rights, move to speed up the signing and ratification of ICESCR, ICCPR, CAT and its Optional Protocol, and CRPD ", - "values": [ - "International instruments" - ] - }, - { - "text": "Consider issues related to the access of asylum seekers, taking into account obligations under the international treaties", - "values": [ - "Asylum-seekers - refugees", - "International instruments" - ] - }, - { - "text": "Ensure compliance with its international obligations on the right to a fair and timely trial based on clear charges and independent investigations, respecting the right of access and contact to lawyers and family", - "values": [ - "Justice" - ] - }, - { - "text": "Step up the implementation of measures to combat, prevent and punish acts of child abuse, child neglect and domestic violence ", - "values": [ - "Rights of the Child" - ] - }, - { - "text": "Take measures to prevent that migrant women who are victims of sexual and domestic violence or trafficking are at risk of deportation if such incidents are reported.", - "values": [ - "Migrants", - "Trafficking", - "Women's rights" - ] - }, - { - "text": "Establish a de jure moratorium on the use of the death penalty as a step towards its abolition ", - "values": [ - "Death penalty" - ] - }, - { - "text": "Take all possible measures to ensure respect and promotion of international human rights law, international humanitarian law and international refugee law.", - "values": [ - "Asylum-seekers - refugees", - "International humanitarian law", - "International instruments" - ] - }, - { - "text": "Further implement the National Education Strategic Plan 2011-2013 ", - "values": [ - "Right to education" - ] - }, - { - "text": "Encourage racial, ethnic and religious tolerance, especially among youth ", - "values": [ - "Freedom of religion and belief", - "Minorities", - "Racial discrimination" - ] - }, - { - "text": "Continue the ratification of international legal instruments on human rights which it is not yet a party to, in order to bring its legislation in line with universally acceptable standards", - "values": [ - "International instruments" - ] - }, - { - "text": "Consider further action to fully understand the causes of inequality faced by indigenous people and take steps to minimize the effects.", - "values": [ - "Indigenous peoples" - ] - }, - { - "text": "Take all the necessary measures to combat violence and discrimination against children ", - "values": [ - "Rights of the Child" - ] - }, - { - "text": "Strengthen cooperation with the international community and organizations including the United Nations Children's Fund (UNICEF), OHCHR and ILO with a view to building capacity and getting technical advice and assistance on matters related to addressing trafficking in persons ", - "values": [ - "Technical assistance and cooperation", - "Trafficking" - ] - }, - { - "text": "Ratify the United Nations Educational, Scientific and Cultural Organization (UNESCO) Convention against Discrimination in Education (1960) and incorporate it into law", - "values": [ - "International instruments", - "Right to education" - ] - }, - { - "text": "Improve and make clearer the legislation to support the freedom of assembly", - "values": [ - "Freedom of association and peaceful assembly" - ] - }, - { - "text": "Ensure that thorough, prompt, and impartial investigations are carried out in all cases of alleged arbitrary detentions, extrajudicial killings and other excessive use of force by police, and that perpetrators are brought to justice ", - "values": [ - "Detention", - "Extrajudicial executions", - "Human rights violations by state agents" - ] - }, - { - "text": "Authorize the detention of asylum seekers only in exceptional situations, and limit its duration ", - "values": [ - "Asylum-seekers - refugees" - ] - }, - { - "text": "Continue to develop inclusive education for the sake of children with disabilities", - "values": [ - "Disabilities", - "Rights of the Child" - ] - }, - { - "text": "Take the necessary measures to ensure the protection of all people from enforced disappearance and following the request of the High Commissioner for Human Rights, establish a special inquiry team, enjoying enough independence, to investigate the allegations of extrajudicial executions ", - "values": [ - "Enforced disappearances", - "Extrajudicial executions" - ] - }, - { - "text": "Further ensure that racially motivated crimes are effectively prosecuted and punished and that research to evaluate the incidence of racial discrimination is conducted with the aim of adopting targeted measures to eliminate such discrimination ", - "values": [ - "Racial discrimination" - ] - }, - { - "text": "Ratify the Second Optional Protocol to the International Covenant on Civil and Political Rights, and abolish the death penalty", - "values": [ - "Death penalty", - "International instruments" - ] - }, - { - "text": "Take immediate and long term actions to eliminate discrimination and violence against women, narrow the gender gap in economic and social settings, and undertake public campaigns against gender-based violence", - "values": [ - "Human rights education and training", - "Women's rights" - ] - }, - { - "text": "Consider seeking membership in the International Labour Organization with a view to ratifying the Organization's fundamental Conventions", - "values": [ - "International instruments", - "Labour" - ] - }, - { - "text": "Establish an independent witness protection agency that is free of political influence", - "values": [ - "Justice" - ] - }, - { - "text": "Commute all remaining death sentences into life imprisonment and consider ratifying the Second Optional Protocol to the International Covenant on Civil and Political Rights, aiming at the abolition of the death penalty", - "values": [ - "Death penalty", - "International instruments" - ] - }, - { - "text": "Establish an accredited national human rights institution in the near future", - "values": [ - "National Human Rights Institution" - ] - }, - { - "text": "Encourage reporting of cases of domestic and sexual violence against women and girls, and ensure that complaints are investigated and the perpetrators are punished with penalties proportional to the seriousness of the offence ending the culture of impunity", - "values": [ - "Impunity", - "Rights of the Child", - "Women's rights" - ] - }, - { - "text": "Declare a moratorium on the application of death penalty, as a first step towards its abolition", - "values": [ - "Death penalty" - ] - }, - { - "text": "Enhance efforts to provide adequate protection to human rights defenders and to improve the human rights situations of ethnic and religious groups in certain regions, including Papua ", - "values": [ - "Freedom of religion and belief", - "Human rights defenders" - ] - }, - { - "text": "Ensure the incorporation into the domestic legal system of the principles and provisions of the Convention on the Rights of the Child (CRC) ", - "values": [ - "International instruments", - "Rights of the Child" - ] - }, - { - "text": "Adopt all the practical measures to end corporal punishment in all places and act drastically against all forms of corporal punishments in school, promoting forms of nonviolent disciplinary measures as alternatives and launch public information campaigns to raise awareness about its harmful effects ", - "values": [ - "Human rights education and training", - "Rights of the Child", - "Torture and other CID treatment" - ] - }, - { - "text": "Install a vetting mechanism to remove persons responsible for serious human rights and child rights violations from the security forces", - "values": [ - "Human rights violations by state agents", - "Rights of the Child" - ] - }, - { - "text": "Adopt concrete measures to end, as a matter of priority, the enrolment of children in armed forces, including ratifying and implementing the Optional Protocol to the Convention on the Rights of the Child on the involvement of children in armed conflict", - "values": [ - "International humanitarian law", - "International instruments", - "Rights of the Child" - ] - }, - { - "text": "Continue to combat poverty, with due regard for regional particularities", - "values": [ - "Poverty" - ] - }, - { - "text": "Strengthen cooperation with UN human rights mechanisms, treaty bodies and special procedures", - "values": [ - "Special procedures", - "Treaty bodies", - "UPR process" - ] - }, - { - "text": "Improve prison conditions by reducing overcrowding and ensuring access to adequate medical treatment.", - "values": [ - "Detention" - ] - }, - { - "text": "Continue strengthening judicial and administrative measures initiated to ensure the effective investigation and punishment of those responsible for acts of violence, in particular those targeting human rights defenders", - "values": [ - "Human rights defenders" - ] - }, - { - "text": "Halt and prevent attacks against civilians, including the use of rape as a weapon of war, and to allow humanitarian access to all areas ", - "values": [ - "International humanitarian law" - ] - }, - { - "text": "Accede to the human rights treaties to which it is not a party yet, particularly the International Convention on the Protection of the Rights of All Migrant Workers and Members of Their Families ", - "values": [ - "International instruments", - "Labour", - "Migrants" - ] - }, - { - "text": "Take additional measures to improve the Nigerian criminal justice system", - "values": [ - "Justice" - ] - }, - { - "text": "That the rights of journalists to report, comment on and criticize government policy freely and without fear, be respected", - "values": [ - "Freedom of the press" - ] - }, - { - "text": "Consider implementing the pertinent recommendations of the Independent Expert on minority issues, with a view to guaranteeing equal treatment of all ethnic groups in the country ", - "values": [ - "Minorities", - "Special procedures" - ] - }, - { - "text": "Intensify its efforts to combat all forms of trafficking in women and girls through, inter alia, the adoption of the bill on all forms of trafficking, ensuring that the new law provides for the prosecution and punishment of perpetrators of such acts and the effective protection of victims", - "values": [ - "Rights of the Child", - "Trafficking", - "Women's rights" - ] - }, - { - "text": "Continue its efforts aimed at the promotion of human rights expertise and education and public awareness about human rights protection", - "values": [ - "Human rights education and training" - ] - }, - { - "text": "Improve fair access to and the quality and sustainability of primary education", - "values": [ - "Right to education" - ] - }, - { - "text": "Ratify the Second Optional Protocol of the ICCPR, and formally establish a moratorium on the use of the death penalty with a view to its abolition ", - "values": [ - "Death penalty", - "International instruments" - ] - }, - { - "text": "Ensure equality and non-discrimination between men and women as regards access to land, employment, and economic and political participation", - "values": [ - "Women's rights" - ] - }, - { - "text": "Further strengthen measures to eliminate traditional harmful practices which are discriminatory against women and girls in particular child marriages, dowry related murders and honour killings ", - "values": [ - "Rights of the Child", - "Torture and other CID treatment", - "Women's rights" - ] - }, - { - "text": "Continue to promote the fight against poverty, inequality and social exclusion at the national, regional and international levels ", - "values": [ - "Poverty" - ] - }, - { - "text": "Promote a comprehensive policy of sensitization to the fight against domestic violence ", - "values": [ - "Rights of the Child", - "Women's rights" - ] - }, - { - "text": "Continue adopting the necessary measures to provide access to basic services to its population, with a particular focus on the most vulnerable groups, in order to move towards the realization of a life with dignity for its people", - "values": [ - "Minorities" - ] - }, - { - "text": "Continue to cooperate with the United Nations and other international organizations to strengthen human rights in Bolivia", - "values": [ - "Other" - ] - }, - { - "text": "Continue to train public officials on human rights", - "values": [ - "Human rights education and training" - ] - }, - { - "text": "Consider establishing a child rights sub-commission within the Korean National Human Rights Commission", - "values": [ - "National Human Rights Institution", - "Rights of the Child" - ] - }, - { - "text": "Continue strengthening the cooperation with the Office of the High Commissioner, through joint activities to improve national capacities in the field of human rights", - "values": [ - "Technical assistance and cooperation" - ] - }, - { - "text": "Ratify the OP-CAT ", - "values": [ - "Detention", - "International instruments", - "Torture and other CID treatment" - ] - }, - { - "text": "Address the problem of Roma children dropping out of school, and promote the Roma language in the school system", - "values": [ - "Minorities", - "Right to education", - "Rights of the Child" - ] - }, - { - "text": "Ratify the Second Optional Protocol to ICCPR with the aim of total abolition of the death penalty", - "values": [ - "Death penalty", - "International instruments" - ] - }, - { - "text": "Take all necessary measures to ensure freedom of expression and the right to participate in political and public affairs by journalists, based on the provisions of the ICCPR ", - "values": [ - "Freedom of opinion and expression", - "Freedom of the press", - "International instruments" - ] - }, - { - "text": "Increase awareness raising programmes and campaigns to promote tolerance and respect for diversity among its population ", - "values": [ - "Human rights education and training" - ] - }, - { - "text": "Stop and redress the violation of Roma children's rights to education and freedom from discrimination in policy, law and practice to ensure that anti-discrimination policies can be effectively implemented in practice", - "values": [ - "Minorities", - "Right to education", - "Rights of the Child" - ] - }, - { - "text": "Deepen cooperation with international and regional human rights mechanisms\n\n", - "values": [ - "General" - ] - }, - { - "text": "Redouble its efforts to guarantee the freedom of association, also by improving the environment for NGOs to freely carry out their activities", - "values": [ - "Civil society", - "Freedom of association and peaceful assembly" - ] - }, - { - "text": "Raise the minimum age of criminal responsibility to comply with international standards ", - "values": [ - "Justice", - "Rights of the Child" - ] - }, - { - "text": "In conformity with article 77 of ICRMW, declare that it recognizes the competence of the Committee to receive and examine the communications that allege that the rights of individuals protected by this Convention have been violated ", - "values": [ - "International instruments", - "Labour", - "Migrants", - "Treaty bodies" - ] - }, - { - "text": "Address violations in the past and encourage adequate parliamentary procedures on laws drafted to ensure political stability and reduce potential domestic tensions ", - "values": [ - "Justice" - ] - }, - { - "text": "Consider the establishment of a de jure moratorium on the use of the death penalty with a view to abolishing capital punishment in national legislation.", - "values": [ - "Death penalty" - ] - }, - { - "text": "Repeal the criminalization of sexual relations between persons of the same sex", - "values": [ - "Sexual Orientation and Gender Identity" - ] - }, - { - "text": "Ensure judicial independence and diversity in judicial appointments", - "values": [ - "Justice" - ] - }, - { - "text": "Respect and protect the right to freedom of expression and strengthen the protection of journalists, civil society activists and human rights defenders against attacks", - "values": [ - "Civil society", - "Freedom of the press", - "Human rights defenders", - "Justice" - ] - }, - { - "text": "Improve the access of disabled children to education by increasing the number of specialized educational teams and customized facilities", - "values": [ - "Disabilities", - "Right to education", - "Rights of the Child" - ] - }, - { - "text": "Redouble its efforts in designing a comprehensive health programme, including through providing access to safe drinking water and sanitation ", - "values": [ - "Right to health", - "Right to water and sanitation" - ] - }, - { - "text": "Ratify promptly the Convention against Torture and Other Cruel, Inhuman or Degrading Treatment or Punishment", - "values": [ - "International instruments", - "Torture and other CID treatment" - ] - }, - { - "text": "Secure a safe environment for human rights defenders who support torture victims and ensure that there is sufficient support for civil society organizations working in the field of rehabilitation of torture victims", - "values": [ - "Civil society", - "Human rights defenders", - "Torture and other CID treatment" - ] - }, - { - "text": "Continue strengthening the role and contribution of the family in society ", - "values": [ - "Other" - ] - }, - { - "text": "Effectively combat negative attitudes based on sex, age, race, nationality, ethnicity, religion and disability, especially to prevent discrimination against children of minority groups, refugee children and children with disabilities ", - "values": [ - "Asylum-seekers - refugees", - "Disabilities", - "Freedom of religion and belief", - "Minorities", - "Racial discrimination", - "Rights of the Child" - ] - }, - { - "text": "Ensure the comprehensive and effective incorporation of children's rights into Ireland's legal framework in line with the United Nations Convention on the Rights of the Child by incorporating children's rights into the Constitution", - "values": [ - "International instruments", - "Rights of the Child" - ] - }, - { - "text": "Move quickly to establish a national human rights institution in full compliance with the Paris Principles", - "values": [ - "National Human Rights Institution" - ] - }, - { - "text": "Enact the Affirmative Action Bill promoting women in governance and decision-making positions", - "values": [ - "Women's rights" - ] - }, - { - "text": "Strengthen the protection of minorities by having a fully inclusive electoral roll without discrimination or religious bias and by establishing an independent National Commission for Minorities from all faith communities, which should appoint its own representatives", - "values": [ - "Elections", - "Freedom of religion and belief", - "Minorities" - ] - }, - { - "text": "Intensify its efforts in fighting terrorism, and identify gaps in promotion and protection of human rights implementation and seek assistance from the international community", - "values": [ - "Public security", - "Technical assistance and cooperation" - ] - }, - { - "text": "Expedite steps being taken to establish an independent National Human Rights Institution ", - "values": [ - "National Human Rights Institution" - ] - }, - { - "text": "Continue to place people at the centre of development in a harmonious society for all so that this approach can further progress the economic, social and cultural rights", - "values": [ - "ESC rights - general" - ] - }, - { - "text": "Take immediate action to respect, protect and fulfil the right to food ", - "values": [ - "Right to food" - ] - }, - { - "text": "Ensure respect for and protection of human rights for all detainees including by guaranteeing detention conditions in compliance with domestic as well as international law and standards and by protecting against cruel and inhuman treatment", - "values": [ - "Detention", - "Torture and other CID treatment" - ] - }, - { - "text": "Continue efforts to guarantee the rights of persons with disabilities, and improve their social integration", - "values": [ - "Disabilities" - ] - }, - { - "text": "Abolish article 92-6 of the Military Criminal Act, which views consensual same-sex intimacy in the armed forces as a criminal offence, in order to comply with international human rights standards", - "values": [ - "Sexual Orientation and Gender Identity" - ] - }, - { - "text": "Put an end to all practices that threaten the right to freedom of expression, including threats against journalists and media outlets ", - "values": [ - "Freedom of opinion and expression", - "Freedom of the press" - ] - }, - { - "text": "Repeal article 92(6) of the Military Criminal Act prohibiting and punishing consensual sexual activity between people of the same sex in the military", - "values": [ - "Sexual Orientation and Gender Identity" - ] - }, - { - "text": "Ratify the Optional Protocol to the Convention against Torture and establish the national preventive mechanism at the earliest possible", - "values": [ - "Detention", - "International instruments", - "Torture and other CID treatment" - ] - }, - { - "text": "Continue efforts to strengthen human rights institutions, including the judiciary and the Ministry of Women and Human Rights in order to ensure effective protection and promotion of human rights", - "values": [ - "Justice", - "Women's rights" - ] - }, - { - "text": "Adopt the necessary and appropriate measures to ensure that all branches of the government, Parliament and judiciary apply the Convention on the Elimination of All Forms of Discrimination against Women, and harmonize domestic legislation with that Convention ensuring that discriminatory dispositions against women are repealed", - "values": [ - "International instruments", - "Women's rights" - ] - }, - { - "text": "Extend a standing invitation to human rights special procedures.", - "values": [ - "Special procedures" - ] - }, - { - "text": "Adopt and implement the United Nations Declaration on the Rights of Indigenous Peoples ", - "values": [ - "Indigenous peoples" - ] - }, - { - "text": "Accede to the Rome Status of the International Criminal Court", - "values": [ - "International instruments", - "Justice" - ] - }, - { - "text": "Demonstrate respect for freedom of religion or belief by recognizing the legal status of other faiths in addition to Catholicism", - "values": [ - "Freedom of religion and belief" - ] - }, - { - "text": "Abolish the death penalty.", - "values": [ - "Death penalty" - ] - }, - { - "text": "Study the possibility of a law that specifically addresses the situation of domestic workers, in order to preserve their fundamental rights and protect them from possible abuses by their employers.", - "values": [ - "Labour" - ] - }, - { - "text": "Adopt as soon as possible and effectively implement the national action plan 2015-2019 against gender-based violence", - "values": [ - "Rights of the Child", - "Women's rights" - ] - }, - { - "text": "Raise the age of criminal responsibility so that it complies with relevant international standards.", - "values": [ - "Rights of the Child" - ] - }, - { - "text": "Make available the necessary resources to the National Unit to Combat Trafficking in Persons, the National Observatory on Gender Parity, the Human Rights Directorate and the National Human Rights Advisory Council to ensure that they fulfil their important roles", - "values": [ - "Trafficking", - "Women's rights" - ] - }, - { - "text": "Continue to reinforce the pillars of peace throughout the country, in implementation of the CPA ", - "values": [ - "Other" - ] - }, - { - "text": "Continue guaranteeing the access to cultural values in all its manifestations ", - "values": [ - "ESC rights - general" - ] - }, - { - "text": "Further strengthen the capacities and independence of the judicial system and to effectively combat corruption within the judiciary.", - "values": [ - "Corruption", - "Justice" - ] - }, - { - "text": "Request from the international community all necessary aid and technical assistance to enable Lebanon to meet its international commitments on human rights", - "values": [ - "Technical assistance and cooperation" - ] - }, - { - "text": "Continue to increase education investment and provide better universal primary education", - "values": [ - "Right to education" - ] - }, - { - "text": "Continue efforts to address racism, discrimination and xenophobia", - "values": [ - "Racial discrimination" - ] - }, - { - "text": "Carry out the necessary reforms for the consolidation of the rule of law, by rapidly proposing a draft constitution", - "values": [ - "Justice" - ] - }, - { - "text": "Undertake a national awareness campaign about the lasting negative effects of gender-based violence", - "values": [ - "Women's rights" - ] - }, - { - "text": "Recommended that civil society be fully involved in the follow-up to the Universal Periodic Review process.", - "values": [ - "Civil society", - "UPR process" - ] - }, - { - "text": "Promote and facilitate universal access to birth registration, especially for people living in extreme poverty, belonging to religious minorities or living in remote areas of the country, through the implementation of mobile units and carrying out awareness-raising campaigns", - "values": [ - "Human rights education and training", - "Minorities", - "Poverty", - "Statelessness and the right to nationality" - ] - }, - { - "text": "Continue its efforts for addressing the challenges of refugees and IDPs in the country ", - "values": [ - "Asylum-seekers - refugees", - "Internally displaced persons" - ] - }, - { - "text": "Continue its efforts in implementing the Plan on Human Rights Education as part of the State's human rights education system", - "values": [ - "Human rights education and training" - ] - }, - { - "text": "Accede to OP-CEDAW", - "values": [ - "International instruments", - "Women's rights" - ] - }, - { - "text": "Repeal the provisions of the Towns Act and Villages Act of 1907, under which forced labour for the military is currently codified ", - "values": [ - "Labour" - ] - }, - { - "text": "Further its endeavours with regard to the smooth and productive activities of the bodies involved in the promotion and protection of human rights within the country", - "values": [ - "General" - ] - }, - { - "text": "Step up efforts to fight torture.", - "values": [ - "Torture and other CID treatment" - ] - }, - { - "text": "Prohibit discrimination and the use of stereotypes against minority groups, so as not to qualify them publicly as "enemies", particularly in the media ", - "values": [ - "Minorities" - ] - }, - { - "text": "Ensure full implementation of the rights of minorities on its territory in accordance with the provisions of the Treaty of Saint-Germain and Austrian State Treaty ", - "values": [ - "Minorities" - ] - }, - { - "text": "Establish without delay a legal moratorium on the application of the death penalty with a view to its subsequent abolition", - "values": [ - "Death penalty" - ] - }, - { - "text": "Continue to intensify its efforts to prevent and combat disparities against children belonging to vulnerable groups, including children of indigenous groups, children with disabilities as well as those living in remote areas", - "values": [ - "Disabilities", - "Indigenous peoples", - "Rights of the Child" - ] - }, - { - "text": "Strengthen the awareness campaigns on the rights of indigenous populations and persons of African descent, notably through the implementation of the provisions of the specific laws adopted in this domain ", - "values": [ - "Indigenous peoples", - "Minorities" - ] - }, - { - "text": "Continue its cooperation with the mechanisms of the Human Rights Council ", - "values": [ - "Special procedures", - "UPR process" - ] - }, - { - "text": "Reform its National Human Rights Commission to regain its A status and promote and protect human rights", - "values": [ - "National Human Rights Institution" - ] - }, - { - "text": "Review Article 373 of the Criminal Code so that it cannot be abused for persecution of persons belonging to sexual minorities.", - "values": [ - "Sexual Orientation and Gender Identity" - ] - }, - { - "text": "Continue its initiatives to improve the living standards of its people, especially in meeting the basic needs of vulnerable groups ", - "values": [ - "Development" - ] - }, - { - "text": "Step up efforts within the framework of the Alliance of Civilizations for the promotion of the dialogue and rapprochement between religions and peoples", - "values": [ - "Freedom of religion and belief" - ] - }, - { - "text": "Improve prison conditions, including by responding effectively to prisoners' complaints ", - "values": [ - "Detention" - ] - }, - { - "text": "Amend the Anti-Discrimination Act to ensure that all grounds of discrimination are subject to prohibition ", - "values": [ - "Other" - ] - }, - { - "text": "Adjust the Criminal Code to what is set out in articles 2 and 3 of OPCRC-SC, by criminalizing the offences enshrined in that Protocol ", - "values": [ - "International instruments", - "Rights of the Child" - ] - }, - { - "text": "Accept article 14 of the International Convention on the Elimination of All Forms of Racial Discrimination.", - "values": [ - "International instruments", - "Racial discrimination" - ] - }, - { - "text": "Consider at least further restricting the use of the death penalty only for the most serious crimes, as stated in article 6 of ICCPR with a view to soon adopting a de facto moratorium on executions ", - "values": [ - "Death penalty", - "International instruments" - ] - }, - { - "text": "Investigate and prosecute all cases of arbitrary detention in psychiatric hospitals and social care institutions, in line with the recommendation made by the Special Rapporteur on violence against women", - "values": [ - "Detention", - "Right to health", - "Special procedures" - ] - }, - { - "text": "Strengthen efforts towards the realization of the rights to education and the highest attainable standard of physical and mental health in the post- Ebola recovery period", - "values": [ - "Right to education", - "Right to health" - ] - }, - { - "text": "Introduce alternatives to military service to protect conscientious objectors", - "values": [ - "Freedom of religion and belief" - ] - }, - { - "text": "Undertake actions, with the support of the international community, aimed at improving access to health for the population", - "values": [ - "Right to health", - "Technical assistance and cooperation" - ] - }, - { - "text": "Amend its criminal laws so that sexual activity between consenting adults is not a criminal offence.", - "values": [ - "Sexual Orientation and Gender Identity" - ] - }, - { - "text": "Provide human rights training and education for members of the judiciary, police and prison personnel, in particular focusing on the protection of human rights of women, children, ethnic minorities, and LGBT and ensure through investigation and prosecution of any misconduct towards these persons.", - "values": [ - "Human rights education and training", - "Minorities", - "Rights of the Child", - "Sexual Orientation and Gender Identity", - "Women's rights" - ] - }, - { - "text": "Strengthen its efforts to combine social security and poverty alleviation measures with the free and compulsory education programme that will enable the provision of the free education for all children", - "values": [ - "Poverty", - "Right to education", - "Rights of the Child" - ] - }, - { - "text": "Develop and implement policies to protect the rights of the child which fully take into account the implications of the increasing number of HIV-AIDS orphans ", - "values": [ - "HIV - Aids", - "Rights of the Child" - ] - }, - { - "text": "Continue efforts made to achieve ratification of the International Convention for the Protection of All Persons from Enforced Disappearance and the acceptance of the competence of its Committee ", - "values": [ - "Enforced disappearances", - "International instruments", - "Treaty bodies" - ] - }, - { - "text": "Intensify the initiatives to enforce its legislation aimed at combating racial discrimination and take measures to combat racist speech of politicians as well as manifestations of racism in the media, in particular by prosecuting those responsible", - "values": [ - "Racial discrimination" - ] - }, - { - "text": "Continue cooperation programmes with ILO with a view to further developing the National Programme for Decent Work ", - "values": [ - "Labour" - ] - }, - { - "text": "Take all necessary measures to guarantee freedom of the press, in particular by repealing the criminalization of defamation so it is only covered by civil law, and introduce simplified and more transparent procedures for obtaining broadcasting licenses ", - "values": [ - "Freedom of opinion and expression", - "Freedom of the press" - ] - }, - { - "text": "Accelerate the development and adoption of the Children's Code ", - "values": [ - "Rights of the Child" - ] - }, - { - "text": "Continue efforts to strive for all citizens to live in harmony without discrimination against any races and nationalities", - "values": [ - "Racial discrimination" - ] - }, - { - "text": "Further strengthen its role as an international centre for higher education ", - "values": [ - "Other" - ] - }, - { - "text": "Ensure that safe legal abortions are available and accessible in practice, in keeping with the 1993 Act on Family Planning and consistent with Poland\u2019s obligations under articles 12 and 16 of the Convention on the Elimination of All Forms of Discrimination against Women", - "values": [ - "Women's rights" - ] - }, - { - "text": "Commit to action plans for indentifying, releasing and ensuring reintegration, and prevent the further recruitment of children. ", - "values": [ - "Rights of the Child" - ] - }, - { - "text": "Continue its efforts for an adequate training in the field of juvenile justice", - "values": [ - "Justice", - "Rights of the Child" - ] - }, - { - "text": "Seek the assistance of the international community to meet the Millennium Development Goals ", - "values": [ - "Development", - "Technical assistance and cooperation" - ] - }, - { - "text": "Ratify the remaining international human rights instruments, in particular the Second Optional Protocol to the International Covenant on Civil and Political Rights and the Optional Protocol to the Convention on the Rights of Persons with Disabilities\n", - "values": [ - "Death penalty", - "Disabilities", - "International instruments" - ] - }, - { - "text": "Ensure that national security shall be pursued in full compliance with international human rights obligations, including the right to a fair trial, the rights to information, freedom of assembly and association and freedom of expression", - "values": [ - "Freedom of association and peaceful assembly", - "Freedom of opinion and expression", - "International instruments", - "Justice" - ] - }, - { - "text": "To draw up a table showing the concordance between national legislation and international human rights instruments, particularly the Convention on the Elimination of Discrimination against Women and the Convention on the Rights of the Child", - "values": [ - "International instruments", - "Rights of the Child", - "Women's rights" - ] - }, - { - "text": "Take all necessary action to tackle problems of persistence of extrajudicial executions, cases of torture and brutality as well as impunity, by ensuring particularly impartiality of investigations and prosecution of those responsible ", - "values": [ - "Extrajudicial executions", - "Impunity", - "Torture and other CID treatment" - ] - }, - { - "text": "Eliminate all forced labour and hazardous child labour and implement recommendations of the ILO supervisory bodies", - "values": [ - "International instruments", - "Labour", - "Rights of the Child" - ] - }, - { - "text": "Amend the Non-Governmental Organizations Act, adopted in January 2016, which restricts the right to freedom of association, to bring it into conformity with the Constitution and the International Covenant on Civil and Political Rights", - "values": [ - "Civil society", - "Freedom of association and peaceful assembly", - "International instruments" - ] - }, - { - "text": "Consider redoubling its efforts in the fight against terrorism", - "values": [ - "Public security" - ] - }, - { - "text": "Continue to implement its efforts to attain the constitutional recognition of indigenous peoples ", - "values": [ - "Indigenous peoples" - ] - }, - { - "text": "Adopt measures to combat the problem of police abuse, through norms aiming at sanctioning such conduct and to prevent such abuses, strengthening the training of law enforcement officials", - "values": [ - "Human rights violations by state agents" - ] - }, - { - "text": "Adopt comprehensive anti-discrimination legislation that includes all the grounds for discrimination", - "values": [ - "Other" - ] - }, - { - "text": "Boost the process of adopting and implementing strategies and projects to combat poverty ", - "values": [ - "Poverty" - ] - }, - { - "text": "Take measures to promote tolerance in this regard, which would encourage more effective educational programmes for the prevention of HIV-AIDS.", - "values": [ - "HIV - Aids" - ] - }, - { - "text": "Take steps to effectively implement the ban on discrimination contained in the anti-discrimination law and the law on schools ", - "values": [ - "Right to education" - ] - }, - { - "text": "Respect article 5(a) of the Convention on the Elimination of All Forms of Discrimination against Women calling for countries to take appropriate measures to change socio-cultural stereotypes and practices.", - "values": [ - "International instruments", - "Women's rights" - ] - }, - { - "text": "Sign and ratify CEDAW", - "values": [ - "International instruments", - "Women's rights" - ] - }, - { - "text": "Ensure that the operations of intelligence agencies are monitored by an independent oversight mechanism to ensure transparency and accountability", - "values": [ - "Privacy" - ] - }, - { - "text": "Continue efforts to raise awareness and educate about human rights at all levels", - "values": [ - "Human rights education and training" - ] - }, - { - "text": "Establish a specific action plan to combat gender-based violence with a special system of prevention for this type of violence and also broaden the network of assistance for victims of sexual violence or gender-based violence", - "values": [ - "Women's rights" - ] - }, - { - "text": "Continue to empower women and broaden the scope for their participation in society ", - "values": [ - "Women's rights" - ] - }, - { - "text": "Take effective measures to put an end to discrimination on grounds of racial or ethnic origin, skin colour, socioeconomic status, gender, religion or other status in the fields of employment and education", - "values": [ - "Freedom of religion and belief", - "Racial discrimination", - "Women's rights" - ] - }, - { - "text": "Implement fully the Law on the Elimination of Violence against Women and refrain from approving any new legislation which may compromise the implementation of the Convention on the Elimination of All Forms of Discrimination against Women, to which Afghanistan is party ", - "values": [ - "International instruments", - "Women's rights" - ] - }, - { - "text": "Plan concrete actions which could be taken to improve protection of and support to victims of domestic violence as well as to ensure that legal aid is available to all victims of violence in order to ensure a comprehensive approach to domestic violence", - "values": [ - "Justice", - "Rights of the Child", - "Women's rights" - ] - }, - { - "text": "Decriminalize homosexual conduct by repealing relevant provisions within the Offences against the Person Act that may be used to criminalize homosexual conduct between consenting adults ", - "values": [ - "Sexual Orientation and Gender Identity" - ] - }, - { - "text": "Guarantee the full recognition of sexual and reproductive rights ", - "values": [ - "Right to health", - "Rights of the Child", - "Women's rights" - ] - }, - { - "text": "Launch awareness campaigns in order to encourage parents to send their children to school including girls ", - "values": [ - "Right to education", - "Rights of the Child", - "Women's rights" - ] - }, - { - "text": "Take all necessary measures to put an end to arbitrary arrests and prolonged detention without charge and without trial, especially for political reasons ", - "values": [ - "Detention", - "Freedom of opinion and expression" - ] - }, - { - "text": "Ratify the International Convention for the Protection of All Persons from Enforced Disappearance, the International Convention on the Protection of the Rights of All Migrant Workers and their Families, the Optional Protocol to the Convention against Torture and Other Cruel, Inhuman or Degrading Treatment or Punishment, the Convention relating to the Status of Refugees of 1951 ", - "values": [ - "International instruments" - ] - }, - { - "text": "Proceed as soon as possible to the establishment of a national human rights institution in conformity with the Paris Principles", - "values": [ - "National Human Rights Institution" - ] - }, - { - "text": "Ensure equal access in practice to rights for persons belonging to all minorities throughout Albania, especially the right of education in and teaching of the minority languages ", - "values": [ - "Minorities", - "Right to education" - ] - }, - { - "text": "Modernize and simplify the civil registry system ", - "values": [ - "Other" - ] - }, - { - "text": "Consider reaccession to ICCPR-OP 1, as well as the ratification of the Second Optional Protocol to ICCPR, with a view to entirely abolishing capital punishment", - "values": [ - "CP rights - general", - "Death penalty", - "International instruments" - ] - }, - { - "text": "Take necessary measures aimed at prohibiting all forms of corporal punishment against children", - "values": [ - "Rights of the Child", - "Torture and other CID treatment" - ] - }, - { - "text": "Ratify and implement ICCPR without reservations or delay", - "values": [ - "CP rights - general", - "International instruments" - ] - }, - { - "text": "Pursue its efforts to broadly reduce poverty", - "values": [ - "Poverty" - ] - }, - { - "text": "Afford adequate resources to the Commission for Protection against Discrimination in order for this important institution to fulfil its mandate effectively", - "values": [ - "National Human Rights Institution" - ] - }, - { - "text": "Make further efforts to protect and integrate into society disadvantaged women, such as rural women, women with disabilities and women in detention, by adopting targeted policies for them, in particular in the areas of education, employment, health care and social security", - "values": [ - "Women's rights" - ] - }, - { - "text": "Take all necessary measures to ensure that its national legislation and policies are brought in line with the obligations as set out in the Convention on the Elimination of All Forms of Discrimination against Women, and to adequately fund the institutions responsible for implementation of this framework", - "values": [ - "International instruments", - "Women's rights" - ] - }, - { - "text": "Raise the legal age of criminal responsibility, develop a system of alternative sentencing for juvenile offenders and ensure that prison sentences for offenders below the age of 18 are only used as a last resort.", - "values": [ - "Rights of the Child" - ] - }, - { - "text": "Ensure that the activities of transnational corporations and other business enterprises do not have a negative impact on the enjoyment of rights of indigenous peoples, and other ethnic groups ", - "values": [ - "Business and human rights", - "Indigenous peoples", - "Minorities" - ] - }, - { - "text": "Consider extending a standing invitation to all the special procedures mandate holders of the Human Rights Council", - "values": [ - "Special procedures" - ] - }, - { - "text": "Review legislations to ensure that all persons with disabilities have a right to vote, and that they can participate in political and public life", - "values": [ - "Disabilities", - "Elections" - ] - }, - { - "text": "Consider ratifying other international human rights conventions, including ILO Convention No. 189", - "values": [ - "International instruments", - "Labour" - ] - }, - { - "text": "Apply consistent and non-discriminatory citizenship policies and practices", - "values": [ - "Other", - "Statelessness and the right to nationality" - ] - }, - { - "text": "Take appropriate measures to abolish the illegal practice of making women take pregnancy test to gain employment, as previously recommended", - "values": [ - "UPR process", - "Women's rights" - ] - }, - { - "text": "Modify its legal framework in order to protect sexual minorities against discrimination", - "values": [ - "Sexual Orientation and Gender Identity" - ] - }, - { - "text": "Carry on intensifying programs and activities aiming at raising human rights awareness", - "values": [ - "Human rights education and training" - ] - }, - { - "text": "Step up efforts to consolidate the rule of law and national human rights protection institutions ", - "values": [ - "General" - ] - }, - { - "text": "Continue strengthening national strategies to combat child labour", - "values": [ - "Labour", - "Rights of the Child" - ] - }, - { - "text": "Take comprehensive measures to eliminate violence against women and children, in particular by adopting a national strategy to combat violence against women, as recommended by the Committee on the Elimination of Discrimination against Women ", - "values": [ - "Rights of the Child", - "Treaty bodies", - "Women's rights" - ] - }, - { - "text": "Continue strengthening the actions aimed at the eradication of poverty and the policies to guarantee equity in wealth distribution and access to the economic and social well-being for the entire population", - "values": [ - "Poverty" - ] - }, - { - "text": "Abolish the death penalty, introducing in the meantime a formal moratorium ", - "values": [ - "Death penalty" - ] - }, - { - "text": "Development of training programmes for judges, personnel of the judiciary, penitentiaries and police forces, regarding the implementation and interpretation of the laws criminalizing racism-related offences", - "values": [ - "Human rights education and training", - "Racial discrimination" - ] - }, - { - "text": "Continue its national housing policy to address the housing shortage", - "values": [ - "Right to housing" - ] - }, - { - "text": "Take concrete steps towards the abolition of the death penalty and corporal punishment, including ratifying the Convention against Torture and its Optional Protocol", - "values": [ - "Death penalty", - "Detention", - "International instruments", - "Torture and other CID treatment" - ] - }, - { - "text": "Strengthen the national plans and policies to prevent acts of discrimination and violence motivated by racial and/or religious hatred, xenophobia, homophobia and gender grounds", - "values": [ - "Freedom of religion and belief", - "Racial discrimination", - "Sexual Orientation and Gender Identity" - ] - }, - { - "text": "Make declarations under article 14 of the International Convention on the Elimination of All Forms of Racial Discrimination and article 22 of the Convention against Torture, to recognize the individual complaints mechanisms under those treaties ", - "values": [ - "International instruments", - "Racial discrimination", - "Torture and other CID treatment" - ] - }, - { - "text": "Consider abolishing capital punishment", - "values": [ - "Death penalty" - ] - }, - { - "text": "Become soon a Party to the core international Conventions on human rights that Malaysia has not ratified yet", - "values": [ - "International instruments" - ] - }, - { - "text": "Implement the Security Council resolutions on Women, Peace and Security, in particular by supporting the participation of women in peace negotiations and ensuring the necessary framework to increase the participation of women in political and judicial life and within security institutions of the country, taking into account their security as well as their personal dignity ", - "values": [ - "Women's rights" - ] - }, - { - "text": "Intensify efforts to combat hate-crime, and domestic violence ", - "values": [ - "Racial discrimination", - "Rights of the Child", - "Women's rights" - ] - }, - { - "text": "Take steps to combat religious intolerance, as exemplified by the characterization in textbooks of missionary activities as a national threat ", - "values": [ - "Freedom of religion and belief" - ] - }, - { - "text": "Take concrete measures to address the high rate of unemployment among persons with disabilities and the special needs of children with disabilities at schools.", - "values": [ - "Disabilities", - "Right to education", - "Rights of the Child" - ] - }, - { - "text": "Establish as a first step, a moratorium on all executions followed by a complete abolition of the death penalty", - "values": [ - "Death penalty" - ] - }, - { - "text": "Abolish the death penalty in legislation in order to respect the obligations arising from the ratification of the second Optional Protocol by Liberia", - "values": [ - "Death penalty", - "International instruments" - ] - }, - { - "text": "Take steps to ensure implementation of Domestic Violence Act and Sexual Offences Act", - "values": [ - "Rights of the Child", - "Women's rights" - ] - }, - { - "text": "Step up effort to prevent and combat sexual exploitation and trafficking in women and children, including by ensuring that all allegations of trafficking and sexual abuses are investigated and the perpetrators are brought to justice and punished ", - "values": [ - "Rights of the Child", - "Trafficking", - "Women's rights" - ] - }, - { - "text": "Take budgetary, administrative and legislative measures to guarantee access to witnesses and victims of trafficking in persons to legal aid, protection and rehabilitation services", - "values": [ - "Justice", - "Trafficking" - ] - }, - { - "text": "Conduct a national program or campaign to raise awareness about and encourage compliance with the new laws, along with similar campaigns directed towards judges and other operators of the law ", - "values": [ - "Justice" - ] - }, - { - "text": "Establish clearly defined programmes to ensure improvement of the labour situation of migrant women in situations of vulnerability ", - "values": [ - "Labour", - "Migrants", - "Women's rights" - ] - }, - { - "text": "Take more efficient measures to prevent and eliminate manifestations of racism, xenophobia and intolerance in political speech ", - "values": [ - "Racial discrimination" - ] - }, - { - "text": "Issue a standing invitation to all United Nations Special Procedures ", - "values": [ - "Special procedures" - ] - }, - { - "text": "Continue its efforts to prevent and punish all forms of violence against women and girls, particularly indigenous women and girls ", - "values": [ - "Indigenous peoples", - "Rights of the Child", - "Women's rights" - ] - }, - { - "text": "Ratify the Rome Statute of the International Criminal Court and the Agreement on Privileges and Immunities of the International Criminal Court", - "values": [ - "International instruments", - "Justice" - ] - }, - { - "text": "Sign and ratify the Optional Protocol to ICCPR", - "values": [ - "CP rights - general", - "International instruments" - ] - }, - { - "text": "Continue to combat intolerance based on ethnic origin and ensure the full respect of the human rights of the so-called "erased" people", - "values": [ - "Minorities", - "Racial discrimination" - ] - }, - { - "text": "Consider abolishing restrictive requirements such as no objection certificates or security clearance certificates when individuals apply for higher education, jobs, business licences and travel documents ", - "values": [ - "Labour" - ] - }, - { - "text": "Continue efforts in providing necessary care for persons with disabilities in line with its obligations under CRPD", - "values": [ - "Disabilities", - "International instruments" - ] - }, - { - "text": "Strengthen measures combating all forms of violence against women and children, especially through the reinforcement of the legal framework in this field ", - "values": [ - "Rights of the Child", - "Women's rights" - ] - }, - { - "text": "Ensure that everyone can peacefully exercise the right of freedom of expression in conformity with the ICCPR ", - "values": [ - "Freedom of opinion and expression", - "International instruments" - ] - }, - { - "text": "Consolidate all positive realizations achieved during the period of political transformation, especially in the human rights field", - "values": [ - "General" - ] - }, - { - "text": "End the two-year regulatory gap and promulgate new electoral regulations so that Turkish citizens belonging to non-Muslim communities be able to manage their charitable foundations", - "values": [ - "Elections", - "Freedom of association and peaceful assembly", - "Freedom of religion and belief" - ] - }, - { - "text": "Continue to develop its social protection policy and continuously monitor and evaluate its social cash transfer programme in this regard", - "values": [ - "ESC rights - general" - ] - }, - { - "text": "Ensure an effective monitoring mechanism to oversee the implementation of the National Child Labour Policy", - "values": [ - "Labour", - "Rights of the Child" - ] - }, - { - "text": "Take the necessary measures to ensure respect for human rights, including the rights of women, political rights, the rights of persons in detention and the right of freedom of expression as it pertains to the press and other media ", - "values": [ - "Detention", - "Freedom of opinion and expression", - "Freedom of the press", - "Women's rights" - ] - }, - { - "text": "Continue efforts to promote and protect the rights of women and address legislative gaps related to the issue", - "values": [ - "Women's rights" - ] - }, - { - "text": "Intensify its efforts to further combat gender discrimination ", - "values": [ - "Women's rights" - ] - }, - { - "text": "Take all measures necessary to eliminate discrimination against women in all areas, including access to land and employment, as well as economic and political participation", - "values": [ - "Women's rights" - ] - }, - { - "text": "Strengthen the protection of migrant women from gender-based violence", - "values": [ - "Migrants", - "Women's rights" - ] - }, - { - "text": "Eliminate legislation criminalizing sexual relations between persons of the same sex, as well as discriminatory legislation on the ground of sexual orientation", - "values": [ - "Sexual Orientation and Gender Identity" - ] - }, - { - "text": "Pursue efforts by taking the appropriate measures favourable to the schooling of girls and their retention at school, in particular by fighting the practice of vidomegons", - "values": [ - "Right to education", - "Women's rights" - ] - }, - { - "text": "Fulfil its obligations under international human rights law and review its national legislation, as a matter of urgency, to decriminalize same-sex relationships and prohibit discrimination on any grounds, including sexual orientation ", - "values": [ - "International instruments", - "Sexual Orientation and Gender Identity" - ] - }, - { - "text": "Intensify its efforts in the area of institutional and legislative development", - "values": [ - "Justice" - ] - }, - { - "text": "Adopt initiatives to ensure gender-sensitive poverty eradication programmes and strategies ", - "values": [ - "Poverty" - ] - }, - { - "text": "Study the possibility of ratifying the International Convention on the Protection of All Persons from Enforced Disappearance (CED), the Second Optional Protocol to the International Covenant on Civil and Political Rights (ICCPR-OP2), the Optional Protocol to the Convention against Torture (OP- CAT), the Optional Protocol to the International Covenant on Civil and Political Rights (ICCPR-OP1), the Optional Protocol to the International Covenant on Economic, Social and Cultural Rights (OP-ICESCR), the International Convention on the Protection of the Rights of All Migrant Workers and Members of Their Families (ICRMW), and the Optional Protocol to the Convention on the Rights of Persons with Disabilities (OP-CRPD) ", - "values": [ - "International instruments" - ] - }, - { - "text": "Entrench in the standard procedures that every person arrested be given a copy of the arrest warrant and no person should be held incommunicado. In any event, all detention should be subject to effective monitoring by an independent body ", - "values": [ - "Detention" - ] - }, - { - "text": "Carry out awareness programmes and sensitivity training on violence and discrimination for law enforcement, judicial and other authorities to prevent discrimination in society based on sexual orientation or gender", - "values": [ - "Human rights education and training", - "Sexual Orientation and Gender Identity" - ] - }, - { - "text": "Continue to bring about the major legislative amendments relating to human rights and the rule of law, in conformity with international principles and standards", - "values": [ - "Justice" - ] - }, - { - "text": "Sign and ratify the 1951 Convention relating to the Status of Refugees and its 1967 Protocol and ensure their effective implementation at the national level", - "values": [ - "Asylum-seekers - refugees", - "International instruments" - ] - }, - { - "text": "Continue efforts to establish a moratorium and eventually abolish capital punishment in all states", - "values": [ - "Death penalty" - ] - }, - { - "text": "Speed up and finalize the process of criminalizing the practice of FGM and take practical steps to eradicate it", - "values": [ - "Rights of the Child", - "Torture and other CID treatment", - "Women's rights" - ] - }, - { - "text": "Ensure protection of women and girls from all forms of violence, including sexual violence ", - "values": [ - "Rights of the Child", - "Women's rights" - ] - }, - { - "text": "Intensify its efforts to deal with discrimination to ensure that indigenous peoples and people of African descent fully enjoy economic, social and cultural rights, as enshrined in the Universal Declaration on Human Rights", - "values": [ - "ESC rights - general", - "Indigenous peoples", - "International instruments", - "Minorities", - "Racial discrimination" - ] - }, - { - "text": "Improve and extend the Anti-Trafficking in Persons Task Force to cover every part of the country and amend its legislation to ensure that child trafficking in all its forms is comprehensively defined and criminalized", - "values": [ - "Rights of the Child", - "Trafficking" - ] - }, - { - "text": "Take measures to protect journalists from acts of violence and intimidation", - "values": [ - "Freedom of the press" - ] - }, - { - "text": "Continue efforts to eradicate poverty, paying special attention to the situation of street children and children with disabilities", - "values": [ - "Disabilities", - "Poverty", - "Rights of the Child" - ] - }, - { - "text": "Establish and implement, based on the performance assessment of the October 2011 Social Emergency Plan, effective economic strategies for sustainable recovery and development that integrate elements of poverty alleviation and protection of human rights", - "values": [ - "Poverty" - ] - }, - { - "text": "Consider establishing a new moratorium on executions, with a view to abolishing the death penalty in the future", - "values": [ - "Death penalty" - ] - }, - { - "text": "Enact the legal act of the Human Rights and Public Administration Commission to ensure its independence and its formal access by the population", - "values": [ - "National Human Rights Institution" - ] - }, - { - "text": "Immediately lift restrictions on freedom of expression, association and peaceful assembly, and on the ability of journalists to report on and criticize Government policy freely, without fear of repression", - "values": [ - "Freedom of association and peaceful assembly", - "Freedom of opinion and expression", - "Freedom of the press" - ] - }, - { - "text": "Establish an independent and effective national investigative mechanism", - "values": [ - "National Human Rights Institution" - ] - }, - { - "text": "Cooperate responsibly with the international community", - "values": [ - "Technical assistance and cooperation" - ] - }, - { - "text": "Work towards strengthening the national reconciliation in order to bring the country out of the cycle of violence", - "values": [ - "Justice" - ] - }, - { - "text": "Recognize the Roma as minority and continue to improve the standards in housing, education and health care", - "values": [ - "Minorities", - "Right to education", - "Right to health", - "Right to housing" - ] - }, - { - "text": "Continue to promote the rights of vulnerable groups, especially women, children and persons with disabilities", - "values": [ - "Disabilities", - "Rights of the Child", - "Women's rights" - ] - }, - { - "text": "Ratify as early as possible all international human rights instruments that Angola has signed, and incorporate the provisions of these conventions into national legislation", - "values": [ - "International instruments" - ] - }, - { - "text": "Finalize the procedure of adoption of the Optional Protocol to CEDAW", - "values": [ - "International instruments", - "Women's rights" - ] - }, - { - "text": "Consider reviewing laws regarding abortion, removing punitive provisions against women who have had an abortion and medical professionals who have exercised their professional responsibilities", - "values": [ - "Women's rights" - ] - }, - { - "text": "Colombia will continue to make efforts to protect the general public from these bands. It appeals for international support in combating the drug trafficking which supports their existence and ensuring that the logistics, money and individuals involved in the violence have nowhere to go. Particular attention will be paid to the pursuit of strategies to prevent recruitment and the effects of doing so on women and girls.", - "values": [ - "Rights of the Child", - "Trafficking", - "Women's rights" - ] - }, - { - "text": "Adopt legislation on access to vocational training and develop programmes to improve the integration of foreigners and minority children in schools", - "values": [ - "Migrants", - "Minorities", - "Right to education", - "Rights of the Child" - ] - }, - { - "text": "Consider extending a standing invitation to United Nations human rights special procedures", - "values": [ - "Special procedures" - ] - }, - { - "text": "Continue efforts to ensure better living conditions in detention ", - "values": [ - "Detention" - ] - }, - { - "text": "Continue its fight against discrimination against women ", - "values": [ - "Women's rights" - ] - }, - { - "text": "Stop all ill-treatment, particularly in prisons and improve detention conditions, respecting its obligations under the Convention against Torture and Other Cruel, Inhuman or Degrading Treatment or Punishment and its Optional Protocol", - "values": [ - "Detention", - "International instruments", - "Torture and other CID treatment" - ] - }, - { - "text": "Accord priority to the provision of required resources in order to ensure the effective implementation of the Comprehensive Act on the Protection of Children and Adolescents", - "values": [ - "Rights of the Child" - ] - }, - { - "text": "Repeal or urgently amend the Suppression of Terrorism Act of 2008 and other pieces of security legislation to bring them in line with international human rights standards", - "values": [ - "Counter-terrorism", - "International instruments" - ] - }, - { - "text": "Enact a national migrant legislation to protect the rights of migrant workers and ensure that migrant workers who wish to pursue claim against employers are not forced to repatriate without access to justice", - "values": [ - "Labour", - "Migrants" - ] - }, - { - "text": "Do more to prohibit persistent forms of discrimination, such as issues of discrimination in inheritance rights, and to strengthen the principle of equality for women, particularly at top levels of political party leadership ", - "values": [ - "Women's rights" - ] - }, - { - "text": "Intensify measures to ensure that indigenous peoples' rights are respected at the community level", - "values": [ - "Indigenous peoples" - ] - }, - { - "text": "Complete the process of ratification of international legal instruments", - "values": [ - "International instruments" - ] - }, - { - "text": "Continue its efforts to improve the living conditions of the people, including by creating the resources necessary to realize the right to adequate housing", - "values": [ - "Right to housing" - ] - }, - { - "text": "Continue with the efforts aimed at ensuring timely cooperation with treaty bodies, regarding the submission of its overdue national reports", - "values": [ - "Treaty bodies" - ] - }, - { - "text": "Adopt national legislation that grants legal effect to the protection of refugees and the respect for the principle of non-refoulement in accordance with the relevant international instruments", - "values": [ - "Asylum-seekers - refugees", - "International instruments" - ] - }, - { - "text": "Effectively implement as soon as possible the Comprehensive Program to Prevent, Address, Punish and Eliminate Violence against Women", - "values": [ - "Women's rights" - ] - }, - { - "text": "Guarantee the return of the San communities to the Kalahari reserve, and facilitate their access to safe drinking water and sanitation", - "values": [ - "Indigenous peoples", - "Right to water and sanitation" - ] - }, - { - "text": "Fully implement the commitments agreed to in Human Rights Council resolution 30/1", - "values": [ - "Justice" - ] - }, - { - "text": "Review its legislation to ensure respect of the reproductive rights of women and girls ", - "values": [ - "Rights of the Child", - "Women's rights" - ] - }, - { - "text": "Strengthen efforts to prevent, investigate effectively, prosecute and punish all hate crimes, as well as acts of racial discrimination, xenophobia and related intolerance", - "values": [ - "Racial discrimination" - ] - }, - { - "text": "Abolish the mandatory minimum sentencing of juvenile offenders", - "values": [ - "Justice", - "Rights of the Child" - ] - }, - { - "text": "Decriminalize abortion in all circumstances and ensure that women and girls can access safe and legal abortion", - "values": [ - "Women's rights" - ] - }, - { - "text": "Make efforts to resolve difficulties in repossessing property and acquiring citizenship for returnees, in order to ensure the successful integration of minorities into Croatian society", - "values": [ - "Minorities", - "Statelessness and the right to nationality" - ] - }, - { - "text": "Review the anti-terrorism law and its implementation in order to ensure it cannot be abused for harassment, detention and prosecution of dissenters", - "values": [ - "Counter-terrorism" - ] - }, - { - "text": "Consider ratifying the International Convention on the Protection of the Rights of All Migrant Workers and Their Families as well as the ILO Convention 189", - "values": [ - "International instruments", - "Labour", - "Migrants" - ] - }, - { - "text": "Uphold the de facto moratorium on executions with a view to abolishing the death penalty as soon as possible", - "values": [ - "Death penalty" - ] - }, - { - "text": "Implement policies and actions aimed at the effective integration of the Roma community which would include the employment, education, security, social and health sectors, emphasis on the promotion of the Roma language, and the regularization of their identity documents", - "values": [ - "Minorities" - ] - }, - { - "text": "That the second National Human Rights Action Plan should take into account the recommendations formulated by treaty bodies and special procedures", - "values": [ - "Special procedures", - "Treaty bodies" - ] - }, - { - "text": "Strengthen efforts to promote orderly development of Internet and protect the legitimate rights and interest of ordinary people while reinforcing the legislation on Internet information protection and supervision", - "values": [ - "Freedom of opinion and expression" - ] - }, - { - "text": "Adopt necessary and effective measures to eradicate child labor in the framework of social and poverty reduction programmes", - "values": [ - "Labour", - "Poverty", - "Rights of the Child" - ] - }, - { - "text": "Take the necessary measures to avoid the stigmatization of migrants and ethnic or religious minorities living in the country and to ensure that they do not become the subject of racism, racial discrimination, xenophobia and other forms of related intolerance, including the prohibition of any organization and propaganda based on racist or xenophobic ideologies", - "values": [ - "Freedom of religion and belief", - "Migrants", - "Minorities", - "Racial discrimination" - ] - }, - { - "text": "Place additional efforts and attention to primary education, especially in rural areas ", - "values": [ - "Right to education" - ] - }, - { - "text": "That legislation in Belarus regarding the registration of non-governmental organizations be streamlined and made less burdensome ", - "values": [ - "Civil society" - ] - }, - { - "text": "Ratify the Convention against Torture and Other Cruel, Inhuman or Degrading Treatment or Punishment and its the Optional Protocol ", - "values": [ - "Detention", - "International instruments", - "Torture and other CID treatment" - ] - }, - { - "text": "Continue efforts to combat discrimination against women and eliminate all forms of discrimination against them, especially domestic violence", - "values": [ - "Rights of the Child", - "Women's rights" - ] - }, - { - "text": "Adopt comprehensive legislation on gender equality and include the ground of "sex" among grounds of non-discrimination, in article 29 of the Constitution, in order to guarantee women better protection against discrimination", - "values": [ - "Women's rights" - ] - }, - { - "text": "Take further steps in promoting political participation of women ", - "values": [ - "Women's rights" - ] - }, - { - "text": "Take immediate and concrete steps for justice and fight against impunity for the crimes and human rights violations that were committed against unarmed civilians in Conakry in 2009", - "values": [ - "Impunity", - "Justice" - ] - }, - { - "text": "Include civil society and human rights defenders in the political dialogue and in the development of legislation, through an open and transparent consultation processes", - "values": [ - "Civil society", - "Human rights defenders" - ] - }, - { - "text": "Further strengthen national human rights institutions and mechanisms, especially on capacity-building for law enforcement and judicial systems in the fields of child labour, trafficking women and organized crimes ", - "values": [ - "Labour", - "National Human Rights Institution", - "Public security", - "Rights of the Child", - "Trafficking", - "Women's rights" - ] - }, - { - "text": "Take measures in order to ratify the Protocol to Prevent, Suppress and Punish Trafficking in Persons, Especially Women and Children ", - "values": [ - "International instruments", - "Trafficking" - ] - }, - { - "text": "Enact the law on the establishment of a moratorium on the death penalty as soon as possible", - "values": [ - "Death penalty" - ] - }, - { - "text": "Ensure freedom of expression online and offline, including media freedom, by repealing or amending the Criminal Code of Kazakhstan to be compatible with international human rights law", - "values": [ - "Freedom of opinion and expression", - "Freedom of the press", - "International instruments" - ] - }, - { - "text": "Enact legislation to prohibit discrimination, including based on sexual orientation and gender identity", - "values": [ - "Sexual Orientation and Gender Identity" - ] - }, - { - "text": "Effectively implement the current legislation on protection of women against domestic violence, ensure that the police effectively investigate complaints and increase the number, coverage and capacity of shelters for victims of domestic violence", - "values": [ - "Rights of the Child", - "Women's rights" - ] - }, - { - "text": "Consider taking appropriate legislative steps to allow civil law marriage in Israel", - "values": [ - "CP rights - general" - ] - }, - { - "text": "Amend the Criminal Code so that crimes against humanity and all war crimes are defined as crimes under national law ", - "values": [ - "International humanitarian law", - "Justice" - ] - }, - { - "text": "Ensure that the fundamental legal safeguards for persons detained by the police are respected", - "values": [ - "Detention" - ] - }, - { - "text": "Accelerate measures to ensure adequate conditions for prisoners", - "values": [ - "Detention" - ] - }, - { - "text": "Continue efforts to strengthen its new statute of the CNDHC in accordance with the Paris Principles ", - "values": [ - "National Human Rights Institution" - ] - }, - { - "text": "Continue its efforts in further enhancing the protection of economic, social and cultural rights of its people", - "values": [ - "ESC rights - general" - ] - }, - { - "text": "Bring its legislation on the rights of children during the asylum procedure in line with the Convention on the Rights of the Child", - "values": [ - "International instruments", - "Rights of the Child" - ] - }, - { - "text": "Withdraw reservations to the International Convention on the Elimination of All Forms of Racial Discrimination and the Convention against Torture", - "values": [ - "International instruments", - "Racial discrimination", - "Torture and other CID treatment" - ] - }, - { - "text": "Accede to the International Covenant on Civil and Political Rights, the International Covenant on Economic, Social and Cultural Rights, the Convention against Torture and the Convention on the Rights of Persons with Disabilities", - "values": [ - "CP rights - general", - "Disabilities", - "ESC rights - general", - "International instruments", - "Torture and other CID treatment" - ] - }, - { - "text": "Grant missions sent by the International Committee of the Red Cross full access to prisons and detention centers for independent monitoring ", - "values": [ - "Detention" - ] - }, - { - "text": "Comply with the principle of non-refoulement", - "values": [ - "Asylum-seekers - refugees" - ] - }, - { - "text": "Fully implement Presidential Directive 7 of 1999, and, in particular, give public recognition and support to human rights defenders, sanction those who make unsubstantiated allegations against human rights defenders, strengthen the protection programme and investigate and punish crimes against human rights defenders.", - "values": [ - "Human rights defenders" - ] - }, - { - "text": "Pass legislation that recognizes the rights of indigenous communities to express their opinion and to consultations", - "values": [ - "Freedom of opinion and expression", - "Indigenous peoples" - ] - }, - { - "text": "Strengthen the education system by making it mandatory and free of cost", - "values": [ - "Right to education" - ] - }, - { - "text": "Deal with the issue of irregular migration sympathetically and consider further legislative protection of their fundamental human rights", - "values": [ - "Migrants" - ] - }, - { - "text": "Continue to work towards the creation of an enabling environment for women and children and girls and addressing the problem of social exclusion that could hinder the full realization of women's rights", - "values": [ - "Rights of the Child", - "Women's rights" - ] - }, - { - "text": "Implement comprehensive measures, in particular in rural areas, to initiate a change with regard to the widely accepted subordination of women and its stereotypes in the country ", - "values": [ - "Women's rights" - ] - }, - { - "text": "Bring its legal definition of torture into line with the Convention against Torture and Other, Cruel, Inhuman or Degrading Treatment or Punishment", - "values": [ - "International instruments", - "Torture and other CID treatment" - ] - }, - { - "text": "Continue efforts to further implement the National Development Plan for the period 2013-2015", - "values": [ - "Development" - ] - }, - { - "text": "Ensure, in accordance with articles 5 and 7 of ICCPR, freedom from torture, while in detention, for all, regardless also of sexual orientation", - "values": [ - "Detention", - "International instruments", - "Sexual Orientation and Gender Identity", - "Torture and other CID treatment" - ] - }, - { - "text": "Adopt further anti-discrimination measures, including implementing the Council of Europe's recommendation for Switzerland to adopt comprehensive anti-discrimination legislation and prohibit discrimination regarding employment and accommodation in civil matters ", - "values": [ - "Other" - ] - }, - { - "text": "Put an end to arbitrary detention of refugees and asylum seekers, and stop detention of children on the grounds of migration control", - "values": [ - "Asylum-seekers - refugees", - "Detention", - "Rights of the Child" - ] - }, - { - "text": "Strengthen measures taken to fight poverty and unemployment, including through the intensified implementation of programmes in the National Development Plan for 2012-2015 in order to combat poverty and foster development", - "values": [ - "Development", - "Poverty" - ] - }, - { - "text": "Encourage the Government to cooperate with all special procedures mandate holders", - "values": [ - "Special procedures" - ] - }, - { - "text": "Ratify the Rome Statue of the International Criminal Court, as committed by Mozambique in its 2011 universal periodic review", - "values": [ - "International instruments", - "Justice", - "UPR process" - ] - }, - { - "text": "Adopt, as soon as possible, a de jure moratorium on the death penalty with a view to its definitive abolition, and accede to the Second Optional Protocol to the International Covenant on Civil and Political Rights, which prohibits the death penalty in all circumstances ", - "values": [ - "Death penalty", - "International instruments" - ] - }, - { - "text": "Enact measures to create safe school environments for girls and promote the right to education for girls on an equal basis with boys ", - "values": [ - "Right to education", - "Rights of the Child", - "Women's rights" - ] - }, - { - "text": "Expedite the process of establishing a mechanism to coordinate and monitor the implementation of a new national human rights action plan 2017- 2020", - "values": [ - "General" - ] - }, - { - "text": "Consider the possibility to ratify OP-CAT", - "values": [ - "Detention", - "International instruments", - "Torture and other CID treatment" - ] - }, - { - "text": "Take further concrete steps to ensure the rights of all its citizens in relation to the 24-year rule ", - "values": [ - "Migrants" - ] - }, - { - "text": "Launch specific targeted initiatives and formulate policies to combat intolerance, racism, xenophobia, in particular against Muslims", - "values": [ - "Freedom of religion and belief", - "Racial discrimination" - ] - }, - { - "text": "Sign and ratify the Optional Protocol to the International Covenant on Economic, Social and Cultural Rights (OP-ICESCR) and OP-CRPD ", - "values": [ - "Disabilities", - "ESC rights - general", - "International instruments" - ] - }, - { - "text": "Sign and ratify the Convention for the Protection of All Persons from Enforced Disappearance ", - "values": [ - "Enforced disappearances", - "International instruments" - ] - }, - { - "text": "Continue its action to align, to strengthen and to make compatible national legislation with its international obligations in accordance with the treaties to which it is a party", - "values": [ - "International instruments" - ] - }, - { - "text": "Ensure impartiality and due process in the procedures by which broadcasting laws are enforced", - "values": [ - "Freedom of the press" - ] - }, - { - "text": "Continue its implementation of the timetable for restoring democracy without delay ", - "values": [ - "General" - ] - }, - { - "text": "Pursue its efforts to implement the National Plan of Action for the promotion and protection of human rights", - "values": [ - "General" - ] - }, - { - "text": "Continue efforts in the fight against social inequality and poverty ", - "values": [ - "Poverty" - ] - }, - { - "text": "Continue constructive cooperation with the universal mechanisms for the promotion and protection of human rights and also the practice of cooperation with civil society", - "values": [ - "Civil society", - "Technical assistance and cooperation", - "UPR process" - ] - }, - { - "text": "End its illegal and unlawful occupation of all Palestinian and Arab Territories occupied since 1967, including Jerusalem", - "values": [ - "Other" - ] - }, - { - "text": "Continue to implement measures aimed at further promoting and protecting children's rights, and intensify efforts to ensure further opportunities for access to higher education", - "values": [ - "Rights of the Child" - ] - }, - { - "text": "Continue taking all necessary measures to incorporate the rights of disabled persons in all aspects of public policies, including by strengthening the national secretariat for persons with disabilities to standardize protocols and guidelines for the implementation of rehabilitation services at the national level", - "values": [ - "Disabilities" - ] - }, - { - "text": "Ensure that the decisions of the customary courts may be challenged before common law courts", - "values": [ - "Justice" - ] - }, - { - "text": "Continue with international support its efforts to complete its human rights architecture and to spread human rights culture in Uzbekistan, as well as providing the necessary training and capacity building to law enforcement and the members of the judiciary in the area of human rights.", - "values": [ - "Human rights education and training", - "Technical assistance and cooperation" - ] - }, - { - "text": "Consider ratifying the International Convention on the Elimination of All Forms of Racial Discrimination, the International Covenant on Economic, Social and Cultural Rights and the International Convention on the Protection of the Rights of All Migrant Workers and Members of Their Families", - "values": [ - "ESC rights - general", - "International instruments", - "Labour", - "Migrants", - "Racial discrimination" - ] - }, - { - "text": "Withdraw its reservations to CRC ", - "values": [ - "International instruments", - "Rights of the Child" - ] - }, - { - "text": "Adopt measures to further the enjoyment of economic, social and cultural rights by indigenous peoples", - "values": [ - "ESC rights - general", - "Indigenous peoples" - ] - }, - { - "text": "Recommended removing restrictions on freedom of information and expression", - "values": [ - "Freedom of opinion and expression" - ] - }, - { - "text": "Fully implement the already existing and recently amended legislation to combat racism and xenophobia", - "values": [ - "Racial discrimination" - ] - }, - { - "text": "Continue to support ethnic and religious tolerance within a diversified society ", - "values": [ - "Freedom of religion and belief", - "Minorities" - ] - }, - { - "text": "Continue measures to increase access to health services for all, and enhance quality while giving special attention to the groups in vulnerable situations", - "values": [ - "Right to health" - ] - }, - { - "text": "Ratify CAT and its Optional Protocol ", - "values": [ - "Detention", - "International instruments", - "Torture and other CID treatment" - ] - }, - { - "text": "Continue making progress in the protection of women rights, consolidating existing institutional mechanisms", - "values": [ - "Women's rights" - ] - }, - { - "text": "Combat more effectively the sexual exploitation of children and child labour, by improving the implementation of the February 2013 law against smuggling and trafficking in persons, and by strengthening coordination among the agencies comprising the national coalition against trafficking in persons ", - "values": [ - "Labour", - "Rights of the Child", - "Trafficking" - ] - }, - { - "text": "Ensure that there is no difference between the acceptable age of marriage for girls and boys in all its territories and that young girls are not subjected to early marriage", - "values": [ - "Rights of the Child", - "Women's rights" - ] - }, - { - "text": "Maintain updating the economic model, as a way to preserve the gains achieved by the Cuban people and to continue developing the broad potentials of Cuba and human resources ", - "values": [ - "Other" - ] - }, - { - "text": "Establish a moratorium on the death penalty as in interim measure towards the abolition of the capital punishment", - "values": [ - "Death penalty" - ] - }, - { - "text": "Implement the obligations undertaken on signing the Convention against Torture and Other Cruel, Inhuman and Degrading Treatment or Punishment ", - "values": [ - "International instruments", - "Torture and other CID treatment" - ] - }, - { - "text": "Continue its efforts to combat religious and hate crimes and invite State high officials to take a clear position against those crimes ", - "values": [ - "Freedom of religion and belief", - "Racial discrimination" - ] - }, - { - "text": "Continue efforts in modernizing the justice system.", - "values": [ - "Justice" - ] - }, - { - "text": "Cooperate with the United Nations to end the recruitment of child soldiers", - "values": [ - "International humanitarian law", - "Rights of the Child" - ] - }, - { - "text": "Ratify the Optional Protocol to the Convention on the Rights of the Child on the involvement of children in armed conflict, and the Optional Protocol to the Convention on the Rights of the Child on the sale of children, child prostitution and child pornography", - "values": [ - "International humanitarian law", - "International instruments", - "Rights of the Child", - "Trafficking" - ] - }, - { - "text": "Ratify the Optional Protocol to the Convention on the Elimination of All Forms of Discrimination against Women (CEDAW).", - "values": [ - "International instruments", - "Women's rights" - ] - }, - { - "text": "Take effective steps to ensure that the Peruvian National Police, armed forces, municipal security officers, and prison guards refrain from all cruel and inhuman treatment of citizens and prisoners", - "values": [ - "Detention", - "Human rights violations by state agents", - "Torture and other CID treatment" - ] - }, - { - "text": "Develop a strategy to eradicate the process of child trafficking, child prostitution, and child pornography in the process of the development of the national plan of actions on combating trafficking in human beings ", - "values": [ - "Rights of the Child", - "Trafficking" - ] - }, - { - "text": "Take steps to strengthen and promote the rights of journalists and bloggers to freely exercise their right to freedom of expression", - "values": [ - "Freedom of opinion and expression", - "Freedom of the press" - ] - }, - { - "text": "Take all measures necessary to ensure full respect for the freedom of expression in accordance with Kyrgyzstan's international obligations ", - "values": [ - "Freedom of opinion and expression" - ] - }, - { - "text": "Make every effort to submit the reports to the treaty bodies in a timely fashion, and increase its level of response to the questionnaires sent by special procedures.", - "values": [ - "Special procedures", - "Treaty bodies" - ] - }, - { - "text": "Continue efforts to mainstream human rights into general policies", - "values": [ - "General" - ] - }, - { - "text": "Pursue the process of reconciliation and consolidate the peace building measures embarked on since the end of the conflict", - "values": [ - "Justice" - ] - }, - { - "text": "Provide more care and attention to the rights of the elderly.", - "values": [ - "Other" - ] - }, - { - "text": "Reinforce and systematize age verification procedures for the recruitment into the armed forces", - "values": [ - "Other" - ] - }, - { - "text": "Continue the process of making domestic laws compliant with the international conventions to which Afghanistan is party ", - "values": [ - "International instruments" - ] - }, - { - "text": "Ensure that allegations of the ill treatment of persons detained by the security-police forces are investigated and that perpetrators are held accountable ", - "values": [ - "Detention", - "Human rights violations by state agents" - ] - }, - { - "text": "Accept an independent international human rights mechanism on the ground as soon as possible.", - "values": [ - "National Human Rights Institution" - ] - }, - { - "text": "Progressively realize the right to education for all, by creating conditions in which the most vulnerable receive access to basic education, and in this context, to implement a policy to also encourage girls to attend school", - "values": [ - "Right to education", - "Rights of the Child", - "Women's rights" - ] - }, - { - "text": "Continue with all necessary efforts for the swift adoption and implementation of laws and programmes for the defence and promotion of human rights.", - "values": [ - "General" - ] - }, - { - "text": "Incorporate the content of the International Convention on the Elimination of All Forms of Racial Discrimination ICERD in the Human Rights Act of 1999 and ensure that its provisions prevail over inconsistent domestic legislation as highlighted by the relevant treaty bodies ", - "values": [ - "International instruments", - "Racial discrimination", - "Treaty bodies" - ] - }, - { - "text": "Take effective measures to improve prison conditions", - "values": [ - "Detention" - ] - }, - { - "text": "Strengthen health policies and programmes with a view to reducing preventable maternal mortality and morbidity", - "values": [ - "Right to health", - "Women's rights" - ] - }, - { - "text": "Continue to incorporate economic, social and cultural rights in the national strategy to combat drug trafficking ", - "values": [ - "ESC rights - general", - "Public security" - ] - }, - { - "text": "Italy is committed to promoting LGBT rights, combating discrimination on the ground of sexual orientation and guaranteeing the implementation of relevant legislation already in force, to ensure gender equality, including the prevention and removal of discriminatory conducts for reasons directly or indirectly based on sex, racial or ethnic origin, religion or belief, age or sexual orientation", - "values": [ - "Freedom of religion and belief", - "Racial discrimination", - "Sexual Orientation and Gender Identity", - "Women's rights" - ] - }, - { - "text": "Strengthen the judiciary by implementing a transparent, merit-based and clearly defined selection process for Supreme Court justices", - "values": [ - "Justice" - ] - }, - { - "text": "Continue efforts to improve national mechanisms for the promotion and protection of human rights", - "values": [ - "General" - ] - }, - { - "text": "Accelerate the ratification process of ICCPR", - "values": [ - "CP rights - general", - "International instruments" - ] - }, - { - "text": "Step up cooperation with special procedures mandate holders by responding positively to the pending visit requests and eventually consider extending a standing invitation to all special procedures mandate holders of the Human Rights Council ", - "values": [ - "Special procedures" - ] - }, - { - "text": "Continue its international cooperation to contribute to the development of the world economy ", - "values": [ - "Development" - ] - }, - { - "text": "Prevent and pursue through the appropriate judicial means all violent acts against religious and tribal minorities, Dalits and lower castes", - "values": [ - "Freedom of religion and belief", - "Indigenous peoples", - "Minorities", - "Racial discrimination" - ] - }, - { - "text": "Continue to work on implementing the accepted recommendations by the LLRC Reconciliation", - "values": [ - "Justice" - ] - }, - { - "text": "Revise the status of the Icelandic Human Rights Centre with the goal of ensuring full compliance with the Paris Principles", - "values": [ - "National Human Rights Institution" - ] - }, - { - "text": "Strengthen the legislative process under way related to the education sector", - "values": [ - "Right to education" - ] - }, - { - "text": "Put an end to all United States military presence in foreign territories, which is the root cause of human rights abuses, including homicide and rape", - "values": [ - "International humanitarian law" - ] - }, - { - "text": "Develop a national policy for the protection of human rights defenders and bring to justice all perpetrators of attacks on or threats against human rights defenders to combat impunity", - "values": [ - "Human rights defenders", - "Impunity" - ] - }, - { - "text": "Increase efforts to raise awareness of the precedence of constitutional law over customary laws and practices to promote gender equality.", - "values": [ - "Women's rights" - ] - }, - { - "text": "Implement the recommendations of the Director of Public Prosecutions and adopt legislation allowing for prosecution of perpetrators of domestic violence without victim-lodged complaints", - "values": [ - "Rights of the Child", - "Women's rights" - ] - }, - { - "text": "Develop a concrete action plan to encourage and support women's active involvement in economic and political life, including effective measures to increase women's involvement in the economy and formal political institutions by addressing existing legal, social, and cultural barriers", - "values": [ - "CP rights - general", - "ESC rights - general", - "Women's rights" - ] - }, - { - "text": "Include in the Children's Protection and Welfare Bill the prevention of the worst forms of child labour and the provision of equal access to education for all children ", - "values": [ - "Labour", - "Right to education", - "Rights of the Child" - ] - }, - { - "text": "Ensure separation of juvenile offenders from adult inmates ", - "values": [ - "Detention", - "Rights of the Child" - ] - }, - { - "text": "Halt operations aimed at silencing dissent in Balochistan and ensure laws are fully equally enforced to investigate and prosecute those responsible for torture and enforced disappearances nationwide", - "values": [ - "Enforced disappearances", - "Torture and other CID treatment" - ] - }, - { - "text": "Ensure that there is a strict respect of the separation of powers and that laws are not applied selectively", - "values": [ - "Justice" - ] - }, - { - "text": "Consider ratifying the Convention against Torture in a timely manner.", - "values": [ - "International instruments", - "Torture and other CID treatment" - ] - }, - { - "text": "Remove, in legislation and in practice, all restrictions preventing the full enjoyment of the freedom of expression as guaranteed under the International Covenant on Civil and Political Rights and other international documents", - "values": [ - "Freedom of opinion and expression", - "International instruments" - ] - }, - { - "text": "Implement reforms on judicial independence and rule of law recommended by the International Bar Association Human Rights Institute in 2015", - "values": [ - "Justice" - ] - }, - { - "text": "Investigate thoroughly incidents of trafficking in human beings and ensure that the perpetrators are subject to proportionate punishment", - "values": [ - "Trafficking" - ] - }, - { - "text": "Allow reform of the food market in order to ensure adequate food production for its population", - "values": [ - "Right to food" - ] - }, - { - "text": "Ensure the Marriage, Divorce and Family Relations Bill's implementation throughout the country", - "values": [ - "Women's rights" - ] - }, - { - "text": "Namibia remains committed to enhancing efforts towards the promotion and protection of human rights in order to improve the quality of life for the Namibian people.", - "values": [ - "General" - ] - }, - { - "text": "Review and amend the public Order and Security Act and the Private Voluntary Organisation Act that impose considerable restrictions to the work of human rights defenders in order to bring them into line with the international standards and respect for freedom of association ", - "values": [ - "Freedom of association and peaceful assembly", - "Human rights defenders" - ] - }, - { - "text": "Undertake sustained efforts to increase institutional capacity and the broadest dissemination of human rights culture ", - "values": [ - "Human rights education and training" - ] - }, - { - "text": "Repeal or revise legislation, notably the relevant provisions of the Aceh Islamic Criminal Code, which criminalizes sexual relations among consenting adults of the same sex, as well as legislation that discriminates on the basis of sexual orientation or gender identity", - "values": [ - "Sexual Orientation and Gender Identity" - ] - }, - { - "text": "Strengthen its efforts to eliminate persistence of patriarchal attitudes and stereotypes regarding the roles and the responsibilities of women and men", - "values": [ - "Women's rights" - ] - }, - { - "text": "Accelerate its efforts to establish the national human rights institution in line with the Paris Principles ", - "values": [ - "National Human Rights Institution" - ] - }, - { - "text": "Increase education on human rights to raise public awareness and the capacity of relevant legal agencies to better ensure the rights and basic freedoms of the people within the nation's rule of law ", - "values": [ - "Human rights education and training" - ] - }, - { - "text": "Strengthen and share with countries of the region the Government's policies and strategies to combat organized crime at the regional level, and continue regional workshops to share experience for the transfer of knowledge in systems of public security and criminal justice", - "values": [ - "Public security" - ] - }, - { - "text": "Adopt the necessary legislative and policy measures to combat any form of discrimination, including by guaranteeing access to justice and recognizing the right to due reparation for victims", - "values": [ - "Justice" - ] - }, - { - "text": "Strengthen efforts to combat violence against women, including by ensuring that rape within marriage, defined as being when one of the spouses does not consent, is a criminal offence", - "values": [ - "Women's rights" - ] - }, - { - "text": "Develop a legal framework to prevent and combat violence against women and domestic violence", - "values": [ - "Rights of the Child", - "Women's rights" - ] - }, - { - "text": "Pay particular priority for improving reception conditions for refugees and migrants and continue its efforts for a more efficient asylum procedure", - "values": [ - "Asylum-seekers - refugees", - "Migrants" - ] - }, - { - "text": "That the temporary Government draw upon the expertise of the Office for Democratic Institutions and Human Rights and the High Commissioner on National Minorities of the Organization for Security and Cooperation in Europe, and the Venice Commission of the Council of Europe with regard to the constitutional reform and rapid democratic elections ", - "values": [ - "Elections", - "Minorities" - ] - }, - { - "text": "Ensures full and effective implementation of the 2011 Caste-based Discrimination and Untouchability Act", - "values": [ - "Minorities", - "Racial discrimination" - ] - }, - { - "text": "Strengthen the status and role of the national human rights institution", - "values": [ - "National Human Rights Institution" - ] - }, - { - "text": "Take concrete measures with a view to decriminalizing consensual same-sex relations and abolishing any discriminatory legislation against lesbian, gay, bisexual, transgender and intersex persons, even if such laws are not applied in practice", - "values": [ - "Sexual Orientation and Gender Identity" - ] - }, - { - "text": "All necessary measures be taken to address all forms of violence against Aboriginal women and girls ", - "values": [ - "Indigenous peoples", - "Rights of the Child", - "Women's rights" - ] - }, - { - "text": "Intensify efforts to ensure the appropriate functioning of the organization in charge of receiving gender-based violence complaints", - "values": [ - "Women's rights" - ] - }, - { - "text": "Review and repeal the legislation that criminalizes consensual sexual behaviour between people of the same sex, and prohibit degrading practices imposed on people of the lesbian, gay, bisexual, transgender and intersex community, such as forced anal examinations", - "values": [ - "Sexual Orientation and Gender Identity" - ] - }, - { - "text": "Investigate and prevent impunity in cases of human rights violations committed by law enforcement officials, throughout the national territory", - "values": [ - "Human rights violations by state agents", - "Impunity" - ] - }, - { - "text": "Oversee the citizenship policy regarding the granting of citizenship to stateless persons in order to ensure that it corresponds with the Convention on the Reduction of Statelessness ", - "values": [ - "Statelessness and the right to nationality" - ] - }, - { - "text": "Ensure free functioning of political parties, including those in the opposition", - "values": [ - "Other" - ] - }, - { - "text": "Increase constructive cooperation with United Nations human rights mechanisms ", - "values": [ - "Special procedures", - "Treaty bodies", - "UPR process" - ] - }, - { - "text": "Strengthen efforts to combat trafficking in human beings with full cooperation of countries in source, transit and destination ", - "values": [ - "Trafficking" - ] - }, - { - "text": "Ensure equal access of girls and women to all levels and fields of education", - "values": [ - "Right to education", - "Rights of the Child", - "Women's rights" - ] - }, - { - "text": "Continue to take concrete measures towards substantial improvement in the field of criminal justice, especially education on human rights law as well as enhancement of ability for criminal investigation.", - "values": [ - "Human rights education and training", - "Justice" - ] - }, - { - "text": "Prohibit and characterize domestic violence and marital rape as crimes", - "values": [ - "Rights of the Child", - "Women's rights" - ] - }, - { - "text": "Further intensify efforts to ensure equitable access to health and education to all", - "values": [ - "Right to education", - "Right to health" - ] - }, - { - "text": "Continue implementation of established programmes for the socioeconomic development of the country, which contribute to the protection of human rights, and complete the development of the national strategic plan of action in the field of human rights", - "values": [ - "Development", - "ESC rights - general" - ] - }, - { - "text": "Clarify the status of all political parties and introduce multi-party democratic elections", - "values": [ - "Elections" - ] - }, - { - "text": "Include sexual orientation and gender identity as prohibited grounds for discrimination in legislation and equality initiatives ", - "values": [ - "Sexual Orientation and Gender Identity" - ] - }, - { - "text": "Establish immediately a process to review all draft legislation, before it is adopted, so as to ensure compliance with Afghanistan's international obligations", - "values": [ - "General" - ] - }, - { - "text": "Sign the Council of Europe Convention on Violence against Women and Domestic Violence", - "values": [ - "Women's rights" - ] - }, - { - "text": "Ensure that all living in Cuba can fully enjoy their rights to freedom of expression, association and peaceful assembly ", - "values": [ - "Freedom of association and peaceful assembly", - "Freedom of opinion and expression" - ] - }, - { - "text": "Recommended ratifying OP-CAT and setting up an independent national mechanism for oversight in places of detention", - "values": [ - "Detention", - "International instruments", - "Torture and other CID treatment" - ] - }, - { - "text": "Accelerate and strengthen legislative and educational actions to combat discrimination in all its forms", - "values": [ - "Racial discrimination" - ] - }, - { - "text": "Ratify the Optional Protocol to the Convention against Torture (OPCAT) and thereby set a useful precedent for other States who may be considering ratification. ", - "values": [ - "Detention", - "International instruments", - "Torture and other CID treatment" - ] - }, - { - "text": "Intensify its national efforts to strengthen human rights and training", - "values": [ - "Human rights education and training" - ] - }, - { - "text": "Share its best practices in the area of combating trafficking in women and children with other countries in contemporary situation ", - "values": [ - "Rights of the Child", - "Trafficking", - "Women's rights" - ] - }, - { - "text": "Expedite the adoption of the national legislation on human trafficking and the draft national policy on special protection that was finalized in 2013", - "values": [ - "Trafficking" - ] - }, - { - "text": "Continue the significant progress made in fighting trafficking", - "values": [ - "Trafficking" - ] - }, - { - "text": "Accede to the Optional Protocol to the International Covenant on Economic, Social and Cultural Rights ", - "values": [ - "ESC rights - general", - "International instruments" - ] - }, - { - "text": "Set up a NHRI in accordance with the Paris Principles", - "values": [ - "National Human Rights Institution" - ] - }, - { - "text": "Take concrete measures to combat the recruitment and use of children in hostilities and ensure their return to their families ", - "values": [ - "Rights of the Child" - ] - }, - { - "text": "Request the international community, led by the major industrialized economies, to help promote and protect human rights in Vanuatu by reducing greenhouse gas emissions to safe levels that are consistent with full enjoyment of human rights, and by funding adaptation measures to help it cope with those changes that are already taking place.", - "values": [ - "Environment" - ] - }, - { - "text": "Address the wage gender gaps and improve the status of women in the labour market", - "values": [ - "Women's rights" - ] - }, - { - "text": "Continue using its sovereign right to apply the death penalty as a tool of criminal justice in accordance with proper safeguards specified under International Human Rights Law ", - "values": [ - "Death penalty", - "International instruments" - ] - }, - { - "text": "Strengthen all types of measures aimed at the universal registration of children across the country, among others, through a broader use of the mobile birth registration system, promoting new awareness-raising strategies on the importance of birth registration and ensuring that it remains free ", - "values": [ - "Rights of the Child", - "Statelessness and the right to nationality" - ] - }, - { - "text": "Further enhance measures to combat and prevent discrimination against vulnerable groups", - "values": [ - "Minorities" - ] - }, - { - "text": "Take all measures in further implementing the Action Plan for the Protection of Human Rights in Georgia, in particular by allocating sufficient funding from its national budget", - "values": [ - "General" - ] - }, - { - "text": "Impose a moratorium on the death penalty with a view to abolishing the capital punishment. Further with regards to numerous cases of juvenile offenders facing the death penalty ", - "values": [ - "Death penalty" - ] - }, - { - "text": "Develop programmes to effectively improve access to health services, employment and housing for Roma persons", - "values": [ - "Minorities" - ] - }, - { - "text": "Intensify cooperation with the international community in order to ensure access of international human rights and humanitarian actors and monitoring mechanisms to the whole territory of Ukraine within its internationally recognized borders with the aim to monitor, report on and address the human rights situation", - "values": [ - "Technical assistance and cooperation" - ] - }, - { - "text": "Criminalize female genital mutilation", - "values": [ - "Rights of the Child", - "Torture and other CID treatment", - "Women's rights" - ] - }, - { - "text": "Adopt Legislation to implement the Rome Statute ", - "values": [ - "International instruments", - "Justice" - ] - }, - { - "text": "Continue with the ratification of the main international instruments relating to human rights, primarily, the Rome Statute of the International Criminal Court ", - "values": [ - "International instruments", - "Justice" - ] - }, - { - "text": "Eliminate restrictions on the activities of human rights NGOs.", - "values": [ - "Civil society" - ] - }, - { - "text": "The delegation reassured Finland's commitment to full and effective implementation of the 1951 Geneva Convention related to the status of refugees and to respecting the principle of non-refoulement. ", - "values": [ - "Asylum-seekers - refugees", - "International instruments" - ] - }, - { - "text": "Before a moratorium is introduced, to take all necessary measures to ensure that any use of the death penalty complies with minimum standards under international law relating to the death penalty such as under article 6 and 14 of the International Covenant on Civil and Political Rights ", - "values": [ - "Death penalty", - "International instruments" - ] - }, - { - "text": "Authorize ICRC to visit all places where persons may be deprived of their liberty ", - "values": [ - "Detention" - ] - }, - { - "text": "Deal with the influx of illegal migrants, taking a fair and humane approach, and treat these immigrants and asylum seekers, particularly the most vulnerable persons -- children and pregnant women -- in the most proper manner, especially by providing them with the medical and psychological assistance that they deserve and need.", - "values": [ - "Asylum-seekers - refugees", - "Migrants" - ] - }, - { - "text": "Adopt safeguards to ensure that asylum seekers are not returned to countries where they will face persecution", - "values": [ - "Asylum-seekers - refugees" - ] - }, - { - "text": "Increase efforts to combat trafficking in persons, particularly to protect women and children ", - "values": [ - "Rights of the Child", - "Trafficking", - "Women's rights" - ] - }, - { - "text": "Criminalize and effectively combat incitement to racial hatred, xenophobia and religious intolerance - including by prohibiting racist and xenophobic organizations and prosecuting perpetrators ", - "values": [ - "Freedom of religion and belief", - "Racial discrimination" - ] - }, - { - "text": "Abolish the death penalty with respect to all forms of crime", - "values": [ - "Death penalty" - ] - }, - { - "text": "Costa Rica will continue working to establish an inter-institutional human rights commission, which will, inter alia, publicize and follow up on the recommendations from treaty bodies and the Universal Periodic Review,", - "values": [ - "National Human Rights Institution", - "Treaty bodies", - "UPR process" - ] - }, - { - "text": "Continue considering the ratification of the main human rights instruments to which it is not yet a party", - "values": [ - "International instruments" - ] - }, - { - "text": "Continue efforts to implement the aims of the 2020 Development Plan ", - "values": [ - "Development" - ] - }, - { - "text": "Push forward for the elimination of discriminatory provisions affecting lesbian, gay, bisexual, transgender and intersex persons", - "values": [ - "Sexual Orientation and Gender Identity" - ] - }, - { - "text": "Review and ease restrictions on Eritrean and international non-governmental organizations ", - "values": [ - "Civil society" - ] - }, - { - "text": "Finalize and adopt the Federal Constitution, without delay, in coordination with the Federal Government, regional administrations, civil society and the Somali public", - "values": [ - "General" - ] - }, - { - "text": "Take necessary steps domestically to ensure compliance with the obligations under the international human rights instruments to which it is a party", - "values": [ - "International instruments" - ] - }, - { - "text": "Continue supporting the family institution, which is one of the most important units in achieving goals of sustainable development goals in any State", - "values": [ - "Development" - ] - }, - { - "text": "Take measures to promote and protect freedom of expression", - "values": [ - "Freedom of opinion and expression" - ] - }, - { - "text": "Expedite implementation of the recommendations contained in the 2007-2011 Enabling Masterplan to improve the lives of persons with disabilities ", - "values": [ - "Disabilities" - ] - }, - { - "text": "Guarantee fundamental freedoms, in particular freedom of expression, which will contribute to the reconciliation process ", - "values": [ - "Freedom of opinion and expression", - "Justice" - ] - }, - { - "text": "Strengthen initiatives aimed at intercultural and inter-religious dialogue that promote mutual understanding between different communities, and adopt projects that contribute to integration", - "values": [ - "Freedom of religion and belief", - "Minorities" - ] - }, - { - "text": "Continue taking measures aimed at the ratification of the Optional Protocol to the Convention on the Elimination of All Forms of Discrimination against Women", - "values": [ - "International instruments", - "Women's rights" - ] - }, - { - "text": "Take urgent steps to incorporate the prohibition of female genital mutilation in its law and enforce it", - "values": [ - "Rights of the Child", - "Torture and other CID treatment", - "Women's rights" - ] - }, - { - "text": "Devote increased attention to spreading a human rights culture through educational institutions and media", - "values": [ - "Human rights education and training" - ] - }, - { - "text": "Eliminate any legislation or measures that discriminate on the basis of religion", - "values": [ - "Freedom of religion and belief", - "Racial discrimination" - ] - }, - { - "text": "End all settlement activities in the occupied Arab territories, including the West Bank and East Jerusalem", - "values": [ - "Other" - ] - }, - { - "text": "Continue programmes aimed at improving the level of education through financial support, especially for girls belonging to poor families ", - "values": [ - "Poverty", - "Right to education", - "Rights of the Child", - "Women's rights" - ] - }, - { - "text": "Strengthen oversight mechanisms to ensure that the National Civilian Police, in carrying out its activities, fully respects human rights and the rule of law", - "values": [ - "Justice" - ] - }, - { - "text": "Give continuity and strengthen positive measures underway to increase the quality and accessibility of health services for all citizens ", - "values": [ - "Right to health" - ] - }, - { - "text": "That Namibia's education policies which were designed for inclusivity, be evaluated by the Government for effectiveness in relation to access and affordability for minority cultural groups", - "values": [ - "Minorities", - "Right to education" - ] - }, - { - "text": "Continue efforts to harmonize its legislation and ensure equality between men and women, particularly in marriage and family relations", - "values": [ - "Women's rights" - ] - }, - { - "text": "Proceed with the ratification of the Optional Protocol to the Convention against Torture and Other Cruel, Inhuman or Degrading Treatment or Punishment", - "values": [ - "Detention", - "International instruments", - "Torture and other CID treatment" - ] - }, - { - "text": "Safeguard the rights to peaceful assembly, freedom of opinion and expression and freedom of the press", - "values": [ - "Freedom of association and peaceful assembly", - "Freedom of opinion and expression", - "Freedom of the press" - ] - }, - { - "text": "Continue its positive engagement toward the total eradication of excision by 2015 as indicated in national Action Plan", - "values": [ - "Rights of the Child", - "Torture and other CID treatment", - "Women's rights" - ] - }, - { - "text": "Recommended the reduction of the great number of crimes which are subject to capital punishment, specifically, first of all, economic crimes, as well as abolishing the death penalty and increasing transparency on this issue by publishing national official statistics", - "values": [ - "Death penalty" - ] - }, - { - "text": "Ensure that all persons, including members of the national army, the police and intelligence service, who are suspected of having committed crimes of international law and other grave human rights violations, are brought before the courts in fair trials that do not lead to the death penalty", - "values": [ - "Death penalty", - "Human rights violations by state agents", - "Justice" - ] - }, - { - "text": "Provide the Special Office for Children with a mandate and additional powers to enable it to provide advisory and legal assistance in a wider range of cases", - "values": [ - "Rights of the Child" - ] - }, - { - "text": "Continue to work constructively with the United Nations on the implementation of the monitoring and reporting mechanism of Security Council resolution 1612 (2005) on children and armed conflict.", - "values": [ - "International humanitarian law", - "Rights of the Child" - ] - }, - { - "text": "Guarantee the recognition of the rights of ethnic minorities to express their own culture and identity", - "values": [ - "Minorities" - ] - }, - { - "text": "Educate the public and law enforcement on women's legal rights, particularly in cases of rape and domestic violence, while undertaking to develop and implement a holistic strategy to prevent family violence, with the participation of all stakeholders", - "values": [ - "Women's rights" - ] - }, - { - "text": "Further continue improving health infrastructural institutions to withstand diseases like the Ebola pandemic", - "values": [ - "Right to health" - ] - }, - { - "text": "Take legislative measures to prohibit all forms of FGM and ensure that perpetrators of this harmful practice are brought to justice ", - "values": [ - "Rights of the Child", - "Torture and other CID treatment", - "Women's rights" - ] - }, - { - "text": "Continue efforts to strengthen equality between men and women and in combatting trafficking in persons", - "values": [ - "Trafficking", - "Women's rights" - ] - }, - { - "text": "Introduce effective and comprehensive measures to prevent violence against children and to eliminate the worst forms of child labour", - "values": [ - "Labour", - "Rights of the Child" - ] - }, - { - "text": "Take further efforts to improve the conditions of migrants and asylum seekers who arrive to the Italian territories, and ensure that they are provided with their guaranteed rights", - "values": [ - "Asylum-seekers - refugees", - "Migrants" - ] - }, - { - "text": "Call upon the international community, in particular the bilateral partners of Jamaica, to offer all the necessary development support and cooperation to Jamaica for the implementation of the universal periodic review recommendations in country-driven and country-owned approaches, as forcefully stressed by the Honourable Minister ", - "values": [ - "Technical assistance and cooperation", - "UPR process" - ] - }, - { - "text": "Repeal all legal provisions criminalizing consensual sexual activity between men and combat discrimination on the basis of sexual orientation", - "values": [ - "Sexual Orientation and Gender Identity" - ] - }, - { - "text": "Accede to the Second Optional Protocol to the International Covenant on Civil and Political Rights Aimed at the Abolition of the Death Penalty (ICCPR-OP 2).", - "values": [ - "Death penalty", - "International instruments" - ] - }, - { - "text": "Abolish corporal punishment for children", - "values": [ - "Rights of the Child", - "Torture and other CID treatment" - ] - }, - { - "text": "Ratify and implement ICCPR", - "values": [ - "CP rights - general", - "International instruments" - ] - }, - { - "text": "Conduct active reforms in the fight against prison overcrowding", - "values": [ - "Detention" - ] - }, - { - "text": "Ratify the Second Optional Protocol to the International Covenant on Civil and Political rights, aiming at the abolition of the death penalty", - "values": [ - "Death penalty", - "International instruments" - ] - }, - { - "text": "Consolidate programs to benefit and protect the elderly ", - "values": [ - "Other" - ] - }, - { - "text": "Pursue all efforts to fight gender-based violence", - "values": [ - "Women's rights" - ] - }, - { - "text": "Develop additional measures to provide assistance to victims of sexual abuse and sexual violence", - "values": [ - "Rights of the Child", - "Women's rights" - ] - }, - { - "text": "Implement the June 2014 recommendations of the Special Rapporteur on the rights to freedom of peaceful assembly and of association to allow for peaceful political opposition, and for civil society and journalists to register and participate in civic life freely", - "values": [ - "Civil society", - "Freedom of association and peaceful assembly", - "Special procedures" - ] - }, - { - "text": "Take concrete measures to improve the independence of the judiciary", - "values": [ - "Justice" - ] - }, - { - "text": "Eliminate all barriers to students' access to education in all provinces", - "values": [ - "Right to education" - ] - }, - { - "text": "Through its membership of the Human Rights Council, the Libyan Arab Jamahiriya will seek to enhance the Council's efficiency in the interest of working in a transparent, non-selective and non-politicized manner to promote and protect human rights the world over, in accordance with relevant international conventions and instruments. ", - "values": [ - "International instruments" - ] - }, - { - "text": "Consider establishing an independent national human rights institution in full compliance with the Paris Principles ", - "values": [ - "National Human Rights Institution" - ] - }, - { - "text": "Establish transitional justice mechanisms as a key element to the administration of justice and re-establishment of the rule of law.", - "values": [ - "Justice" - ] - }, - { - "text": "Speed up the process of establishing a national human rights institution in conformity with the Paris Principles", - "values": [ - "National Human Rights Institution" - ] - }, - { - "text": "Continue to improve its efforts regarding the integration of citizen of Muslim confession within the German society while at the same time ensuring enjoyment of their human rights including the right to freedom of religious practices", - "values": [ - "Freedom of religion and belief", - "Minorities" - ] - }, - { - "text": "Strengthen efforts to ensure the rights of migrants ", - "values": [ - "Migrants" - ] - }, - { - "text": "Adopt further measures to ensure protection of the human rights of children leaving care in particular through the provision of education, health and psycho-social support ", - "values": [ - "Rights of the Child" - ] - }, - { - "text": "Comply with the recommendations of the Inter-American Commission on Human Rights and the Truth and Reconciliation Commission to ensure that security strategies promote prevention and are implemented by properly organized and trained civil police forces and not military forces", - "values": [ - "Justice", - "Public security" - ] - }, - { - "text": "Study the possibility of a universal basic income programme in all regions with a view to phasing out the existing social protection system, in full consultation with key stakeholders", - "values": [ - "ESC rights - general" - ] - }, - { - "text": "Take further measures to increase the participation of women in political life", - "values": [ - "Women's rights" - ] - }, - { - "text": "Step up its measures in promoting and protecting the rights of children living in rural areas including through ensuring equal access to education between children living in urban and rural areas", - "values": [ - "Right to education", - "Rights of the Child" - ] - }, - { - "text": "Take into account and integrate in its National Action Plan for the Equality between Men and Women, the recommendations arising on this issue during this second UPR ", - "values": [ - "UPR process", - "Women's rights" - ] - }, - { - "text": "Incorporate into the national legislation the definition of torture under the Convention against Torture and Other Cruel, Inhuman or Degrading Treatment or Punishment, and ensure that any statement made as a result of torture will not be used as evidence in any judicial proceeding in accordance with article 15 of the said Convention", - "values": [ - "International instruments", - "Torture and other CID treatment" - ] - }, - { - "text": "Adopt a national action plan against racism", - "values": [ - "Racial discrimination" - ] - }, - { - "text": "Improve prison conditions and adopt concrete measures to eliminate overcrowding in compliance with international standards", - "values": [ - "Detention" - ] - }, - { - "text": "Review the system of sponsorship for domestic workers in order to protect them against abuse from employers", - "values": [ - "Labour" - ] - }, - { - "text": "Take concrete measures to align Zimbabwe's domestic laws, including customary laws with international human rights instruments that it is party to, to ensure harmonization with the protections guaranteed in the Constitution ", - "values": [ - "International instruments" - ] - }, - { - "text": "Fully align its national legislation with the Rome Statute of the ICC and accede to the Agreement on the Privileges and Immunities of the Court (APIC) ", - "values": [ - "International instruments", - "Justice" - ] - }, - { - "text": "Take necessary measures aimed at verifying alleged human rights violations committed by members of the security services", - "values": [ - "Human rights violations by state agents" - ] - }, - { - "text": "Take immediate steps to ensure the full implementation of the recently formulated National Plan of Action for the eradication of female genital mutilation from Yemen", - "values": [ - "Rights of the Child", - "Torture and other CID treatment", - "Women's rights" - ] - }, - { - "text": "Establish effective mechanisms of transitional justice. ", - "values": [ - "Justice" - ] - }, - { - "text": "Continue efforts to intensify the investigation and prosecution of racial hatred and related violence through criminal legal proceedings and other measures. ", - "values": [ - "Racial discrimination" - ] - }, - { - "text": "Ratify the Optional Protocol to the International Covenant on Economic, Social and Cultural Rights, as well as the Optional Protocol to the Convention on the Rights of the Child on a communications procedure", - "values": [ - "ESC rights - general", - "International instruments", - "Rights of the Child" - ] - }, - { - "text": "Consider ratifying the Convention on the Rights of Persons with Disabilities, with particular consideration for widening accessibility for all, as mentioned in the article 9 of the Convention, in order that persons with disability could live independently and contribute to their local community", - "values": [ - "Disabilities", - "International instruments" - ] - }, - { - "text": "Consider accession to the Second Optional Protocol to the International Covenant on Civil and Political Rights with the aim of abolishing the death penalty and introducing an official moratorium on executions", - "values": [ - "Death penalty", - "International instruments" - ] - }, - { - "text": "Fully align its national legislation with the Rome Statute, including by incorporating the definition of crimes and principles and acceding to the Agreement on Privileges and Immunities of the Court (APIC) ", - "values": [ - "International instruments", - "Justice" - ] - }, - { - "text": "Cooperate with the Special Rapporteur on the situation of human rights in Belarus and issue a standing invitation to special procedures or, if this is not agreeable, accept the special rapporteurs who have requested a visit", - "values": [ - "Special procedures" - ] - }, - { - "text": "Take further measures to guarantee the rights to expression, assembly, association and belief", - "values": [ - "Freedom of association and peaceful assembly", - "Freedom of opinion and expression", - "Freedom of religion and belief" - ] - }, - { - "text": "Facilitate, without further ado, the visit of the Special Rapporteur on summary executions and the Special Rapporteur on torture", - "values": [ - "Extrajudicial executions", - "Special procedures", - "Torture and other CID treatment" - ] - }, - { - "text": "Continue efforts to close gaps that still exist in the working conditions of non-regular as opposed to regular workers", - "values": [ - "Labour" - ] - }, - { - "text": "Become a party to ICCPR, ICESCR and the Optional Protocols to CRC ", - "values": [ - "CP rights - general", - "ESC rights - general", - "International instruments", - "Rights of the Child" - ] - }, - { - "text": "Continue to strengthen the participation of women in the workplace and in the economic sphere, as well as its care for workers from other countries", - "values": [ - "Women's rights" - ] - }, - { - "text": "Adopt legislative and public policy measures aimed at eliminating discrimination against children in situation of vulnerability, including children of immigrant families ", - "values": [ - "Migrants", - "Rights of the Child" - ] - }, - { - "text": "Harmonize its various strategies on children and families under a comprehensive national plan of action for children, and further consider the accession to OP-CRC-SC ", - "values": [ - "International instruments", - "Rights of the Child", - "Trafficking" - ] - }, - { - "text": "Increase resources to protect the rights and living conditions of people in detention and prisoners", - "values": [ - "Detention" - ] - }, - { - "text": "Step up the progress made over the last decade in the field of equality and women's rights ", - "values": [ - "Women's rights" - ] - }, - { - "text": "Adopt legislation against gender violence", - "values": [ - "Women's rights" - ] - }, - { - "text": "Keep the Human Rights Council informed about the follow-up to the "Talent to the Top" charter and inform it of the results obtained by signatories ", - "values": [ - "Other" - ] - }, - { - "text": "Continue to work to improve the human and material situation that resulted from the economic sanctions during the 1990s ", - "values": [ - "General" - ] - }, - { - "text": "Reinforce its efforts to meet the commitment to ensure free basic education, particularly primary education, and to address gender disparities ", - "values": [ - "Right to education", - "Women's rights" - ] - }, - { - "text": "Consider ratifying all three Optional Protocols to the CRC", - "values": [ - "International instruments", - "Rights of the Child" - ] - }, - { - "text": "Ensure that all the cases of civilians, in trials before the National Safety Court for crimes allegedly committed during protests in 2011, are referred to civilian courts", - "values": [ - "Justice" - ] - }, - { - "text": "Accede to the International Covenant on Civil and Political Rights and the International Covenant on Economic, Social and Cultural ", - "values": [ - "CP rights - general", - "ESC rights - general", - "International instruments" - ] - }, - { - "text": "Give priority to implementing recommendations connected to economic, social and cultural rights, whose implementation was delayed because of the political crisis", - "values": [ - "ESC rights - general" - ] - }, - { - "text": "Implement effectively the action plan launched by the Committee to Eradicate Sexual Exploitation of Children and Adolescents in 2007.", - "values": [ - "Rights of the Child" - ] - }, - { - "text": "Continue its efforts to ratify international human rights treaties", - "values": [ - "International instruments" - ] - }, - { - "text": "Include human rights education in school curricula ", - "values": [ - "Human rights education and training" - ] - }, - { - "text": "Enhance its efforts to strengthen the effectiveness of its human rights institution to bring it fully into line with the Paris Principles", - "values": [ - "National Human Rights Institution" - ] - }, - { - "text": "Conduct in-depth examinations into how race-related issues were affecting law enforcement and the administration of justice, both at the federal and state levels", - "values": [ - "Justice", - "Racial discrimination" - ] - }, - { - "text": "Speed up the establishment of a National Institution for Human Rights as a new independent concerned party involved in monitoring and promoting human rights in accordance with the Paris Principles, enact laws against any kind of discrimination against indigenous peoples, Roma minorities and foreigners, which most notably in the areas of education, health and employment ", - "values": [ - "Indigenous peoples", - "Migrants", - "National Human Rights Institution", - "Right to education", - "Right to health" - ] - }, - { - "text": "Ratify the International Convention for the Protection of All Persons from Enforced Disappearance, Convention on the Rights of Persons with Disabilities, and the Optional Protocol to the Convention on the Rights of the Child on the involvement of children in armed conflict", - "values": [ - "Disabilities", - "Enforced disappearances", - "International humanitarian law", - "International instruments", - "Rights of the Child" - ] - }, - { - "text": "Continue efforts to address the issue of overcrowded prisons and take action to improve the conditions in prisons and detention centres", - "values": [ - "Detention" - ] - }, - { - "text": "Consider signing and ratifying CEDAW and consider especially article 15 and 16 thereof which relate to the equal right of women to administer property and the equal rights of both spouses in respect of the ownership, acquisition, management, enjoyment and disposition of property.", - "values": [ - "International instruments", - "Women's rights" - ] - }, - { - "text": "Strengthen measures to combat poverty, in particular poverty of women and children", - "values": [ - "Poverty", - "Rights of the Child", - "Women's rights" - ] - }, - { - "text": "Redouble efforts to heighten awareness of the population against FGM and excision ", - "values": [ - "Human rights education and training", - "Rights of the Child", - "Torture and other CID treatment", - "Women's rights" - ] - }, - { - "text": "Fully abolish death penalty in the law and ratify the Second Optional Protocol to the International Covenant on Civil and Political Rights, aiming at the abolition of the death penalty", - "values": [ - "Death penalty", - "International instruments" - ] - }, - { - "text": "Establish provisions for conscientious objections to military service and bring an end to indefinite, involuntary conscription or national service ", - "values": [ - "Freedom of religion and belief", - "International humanitarian law", - "Labour", - "Rights of the Child" - ] - }, - { - "text": "Continue to pay special attention to the needs of rural women ensuring that they participate in decision-making processes and have full access to justice, education, health services and financial facilities", - "values": [ - "Women's rights" - ] - }, - { - "text": "Intensify efforts aimed at eliminating historical and structural discrimination against Roma, and prevent racist and hate speech and crimes against religious minorities and their property", - "values": [ - "Freedom of religion and belief", - "Minorities", - "Racial discrimination" - ] - }, - { - "text": "Further strengthen specific plans for the demobilization of children and their social reintegration ", - "values": [ - "International humanitarian law", - "Rights of the Child" - ] - }, - { - "text": "End discrimination in law and practice against women and girls, including by allowing women to pass their nationality onto their children in an equal manner with men", - "values": [ - "Rights of the Child", - "Statelessness and the right to nationality", - "Women's rights" - ] - }, - { - "text": "Take action against the worrying increase and public use of hate speech, most often addressed at migrants, asylum seekers but also civil society organizations and vulnerable groups", - "values": [ - "Asylum-seekers - refugees", - "Civil society", - "Migrants", - "Racial discrimination" - ] - }, - { - "text": "Continue efforts towards the promotion and preservation of the Saharo-Hassani cultural heritage, as enshrined in the 2011 Constitution", - "values": [ - "Minorities" - ] - }, - { - "text": "Take the necessary measures to remove difficulties facing persons with disabilities, including improving access to public spaces and services and empowering children and women with disabilities to exercise their rights", - "values": [ - "Disabilities", - "Rights of the Child", - "Women's rights" - ] - }, - { - "text": "Amend the Penal Code to decriminalize witchcraft", - "values": [ - "Rights of the Child", - "Women's rights" - ] - }, - { - "text": "Develop and make public clear indicators to monitor progress in the implementation of the national human rights plan and allocate necessary resources to support implementation", - "values": [ - "General" - ] - }, - { - "text": "Scale up efforts to provide high-quality goods and services, especially in the areas of education and health", - "values": [ - "Right to education", - "Right to health" - ] - }, - { - "text": "Continue efforts to amend national laws and legislation in order to ensure that they are in conformity with the recommendations made by treaty bodies ", - "values": [ - "Treaty bodies" - ] - }, - { - "text": "Ratify the Council of Europe Convention on Preventing and Combating Violence against Women and Domestic Violence ", - "values": [ - "International instruments", - "Rights of the Child", - "Women's rights" - ] - }, - { - "text": "Decriminalize consensual sexual relations between same-sex adults, and combat cases of discrimination against those persons", - "values": [ - "Sexual Orientation and Gender Identity" - ] - }, - { - "text": "Ensure that minority children enjoy the right to education without discrimination, in line with the recommendations by the Committee on Economic, Social and Cultural Rights and the Committee on the Elimination of Racial Discrimination", - "values": [ - "Minorities", - "Racial discrimination", - "Right to education", - "Rights of the Child", - "Treaty bodies" - ] - }, - { - "text": "Develop and implement public awareness campaigns and education programs to promote diversity and inclusion, while combatting racism, xenophobia and homophobia", - "values": [ - "Human rights education and training", - "Racial discrimination", - "Sexual Orientation and Gender Identity" - ] - }, - { - "text": "Ensure that no legislation discriminates between men and women, and enact legislation to prevent violence against people based on sexual orientation", - "values": [ - "Sexual Orientation and Gender Identity", - "Women's rights" - ] - }, - { - "text": "Take measures to ensure the access of migrants and non-citizens, especially children, to justice, employment, education, housing and health services ", - "values": [ - "Migrants", - "Rights of the Child" - ] - }, - { - "text": "Modify the legislation which restrains freedom of expression and peaceful assembly", - "values": [ - "Freedom of association and peaceful assembly", - "Freedom of opinion and expression" - ] - }, - { - "text": "Continue efforts to provide improved assistance to victims of trafficking ", - "values": [ - "Trafficking" - ] - }, - { - "text": "Reinforce existing non-discrimination legislation and take all necessary measures to prevent discrimination on the grounds of sexual orientation ", - "values": [ - "Sexual Orientation and Gender Identity" - ] - }, - { - "text": "Continue the close cooperation with OHCHR and the international community in order to face the challenges in terms of transitional justice for human rights violations occurred during the current crisis ", - "values": [ - "Justice", - "Technical assistance and cooperation" - ] - }, - { - "text": "Continue to provide resources and develop strategies for youth development, including for the achievement of a greater higher education completion rate for all, the retention of pregnant girls and adolescent mothers in school, the provision of technical and vocational skills and the expansion of social and economic opportunities for youth", - "values": [ - "ESC rights - general", - "Right to education", - "Rights of the Child", - "Women's rights" - ] - }, - { - "text": "Take steps to ensure that recent amendments to the Criminal Code of 2011 are in compliance with international obligations regarding freedom of assembly and freedom of conscience ", - "values": [ - "Freedom of association and peaceful assembly", - "Freedom of religion and belief" - ] - }, - { - "text": "Undertake efforts to prevent violence against children, including sexual violence", - "values": [ - "Rights of the Child" - ] - }, - { - "text": "Speed up efforts in the ratification of the International Convention on the Protection of the Rights of All Migrant Workers and Members of their Families", - "values": [ - "International instruments", - "Labour", - "Migrants" - ] - }, - { - "text": "Continue the work on inter-family violence and the implementation of public policies for rural women", - "values": [ - "Rights of the Child", - "Women's rights" - ] - }, - { - "text": "Respond sincerely to the recommendations of the United Nations mechanisms (Special Rapporteur on violence against women, the Committee on the Elimination of Discrimination against Women and the Committee against Torture) on the issue of comfort women during the Second World War.", - "values": [ - "Special procedures", - "Treaty bodies", - "Women's rights" - ] - }, - { - "text": "Immediately ban the use of pellet guns and hold accountable perpetrators who have used lethal force against unarmed civilians in \u201cIndian-Occupied Kashmir\u201c", - "values": [ - "Human rights violations by state agents" - ] - }, - { - "text": "Take all the necessary measures to ensure that the right to education is enjoyed by all children ", - "values": [ - "Right to education", - "Rights of the Child" - ] - }, - { - "text": "Continue to strengthen the steps already made for the creation of a national human rights institution in conformity with the Paris Principles", - "values": [ - "National Human Rights Institution" - ] - }, - { - "text": "Allow for the full independence and effective functioning of the judiciary to ensure fundamental rights and freedoms for all persons such as, inter alia, the freedom of expression or opinion, association, and peaceful assembly, particularly in the context of future electoral processes ", - "values": [ - "Elections", - "Freedom of association and peaceful assembly", - "Freedom of opinion and expression", - "Justice" - ] - }, - { - "text": "Accede to the Rome Statute as well as the Agreement on Privileges and Immunities of the International Criminal Court (APIC) ", - "values": [ - "International instruments", - "Justice" - ] - }, - { - "text": "Ratify the Protocol No. 12 to the Council of Europe Convention for the Protection of Human Rights and Fundamental Freedoms", - "values": [ - "International instruments" - ] - }, - { - "text": "Continue its efforts in improving the level of education for girls ", - "values": [ - "Right to education", - "Rights of the Child", - "Women's rights" - ] - }, - { - "text": "Continue the implementation of the policy aimed at improving the judicial system, reforming the law enforcement bodies and reducing the crime rate and corruption ", - "values": [ - "Corruption", - "Justice", - "Public security" - ] - }, - { - "text": "Guarantee freedom of expression and opinion, especially for journalists, writers and editors ", - "values": [ - "Freedom of opinion and expression", - "Freedom of the press" - ] - }, - { - "text": "Re-establish the moratorium on executions and consider the abolition of the death penalty, as requested by the European Union.", - "values": [ - "Death penalty" - ] - }, - { - "text": "Request from OHCHR the necessary support for the process of ratification of a greater number of international human rights instruments", - "values": [ - "International instruments", - "Technical assistance and cooperation" - ] - }, - { - "text": "Continue to combat violence against women and promote their empowerment", - "values": [ - "Women's rights" - ] - }, - { - "text": "Ratify the optional protocols of the human rights conventions to which Japan is a party", - "values": [ - "International instruments" - ] - }, - { - "text": "Bolster mandatory human rights training for the security forces and strengthen mechanisms to investigate alleged abuses committed by security forces ", - "values": [ - "Human rights education and training", - "Human rights violations by state agents" - ] - }, - { - "text": "Develop a comprehensive and coherent national strategy and plan of action to combat human trafficking of women and children", - "values": [ - "Rights of the Child", - "Trafficking", - "Women's rights" - ] - }, - { - "text": "Take necessary further steps to combat poverty and to address socio-economic inequality", - "values": [ - "Poverty" - ] - }, - { - "text": "Consider to abolish the death penalty in line with the country's new reality ", - "values": [ - "Death penalty" - ] - }, - { - "text": "Design and implement educational programmes promoting greater inclusiveness in classrooms ", - "values": [ - "Right to education" - ] - }, - { - "text": "Take necessary measures to ensure the right of indigenous peoples affected by planned economic or development projects to be adequately and fairly consulted, in accordance with the commitments undertaken by ratifying ILO Convention No. 169 concerning Indigenous and Tribal Peoples", - "values": [ - "Indigenous peoples", - "International instruments" - ] - }, - { - "text": "Ensure effective implementation and enforcement of the Child care and Protection Act", - "values": [ - "Rights of the Child" - ] - }, - { - "text": "Step up cooperation with human rights bodies and consider extending a standing invitation to special procedures mandate holders, so as to enhance technical assistance and contribute to the overall improvement of standard setting in the country ", - "values": [ - "Special procedures" - ] - }, - { - "text": "Continue pursuing initiatives aimed at improving the educational system with a view to further developing technical and vocational education and training", - "values": [ - "Right to education" - ] - }, - { - "text": "Strengthen the criminal procedural code and the code of practice of lawyers and ensure that they are in line with international standards", - "values": [ - "Justice" - ] - }, - { - "text": "Adopt legislation prohibiting discrimination on the grounds of sexual orientation and gender identity, introducing also awareness-raising programs that promote respect for sexual diversity", - "values": [ - "Human rights education and training", - "Sexual Orientation and Gender Identity" - ] - }, - { - "text": "Strengthen the Roma Council, and to ensure that the Council is consulted in connection with any process that has an impact on Roma rights", - "values": [ - "Minorities" - ] - }, - { - "text": "Adopt all necessary measures to ensure that journalists have the freedom to practise their profession in line with existing international standards.", - "values": [ - "Freedom of the press" - ] - }, - { - "text": "Carry out work on the promotion of racial, national and religious tolerance, especially among the youth", - "values": [ - "Freedom of religion and belief", - "Racial discrimination" - ] - }, - { - "text": "Formulate and implement a disarmament control and reduction policy", - "values": [ - "Public security" - ] - }, - { - "text": "Address the recommendations from treaty bodies to which it is a State Party", - "values": [ - "Treaty bodies" - ] - }, - { - "text": "Strengthen the measures to fight hate speech, targeting of persons on the ground of their ethnicity, religion or sexual orientation, particularly Roma, Muslim and lesbian, gay, bisexual, transgender and intersex persons, as well as asylum seekers and migrants", - "values": [ - "Asylum-seekers - refugees", - "Migrants", - "Minorities", - "Racial discrimination", - "Sexual Orientation and Gender Identity" - ] - }, - { - "text": "Continue to advance health services and better guarantee the right to health of the people", - "values": [ - "Right to health" - ] - }, - { - "text": "Create tools to effectively address domestic violence", - "values": [ - "Rights of the Child", - "Women's rights" - ] - }, - { - "text": "Continue to fully implement the 2011 National Education Law and provide training for a sufficient number of teachers for education in or of minority languages ", - "values": [ - "Minorities", - "Right to education" - ] - }, - { - "text": "Take the necessary measures towards a primary education fully free of charge", - "values": [ - "Right to education" - ] - }, - { - "text": "Adhere and adopt national legislation in line with the Rome Statute, including the incorporation of the provisions for swift cooperation with the International Criminal Court", - "values": [ - "International instruments", - "Justice" - ] - }, - { - "text": "The Government is strongly committed to progressively realizing the rights of differently abled persons.", - "values": [ - "Disabilities" - ] - }, - { - "text": "Strengthen the training of the police, prosecutors and the judiciary in the area of gender based violence", - "values": [ - "Women's rights" - ] - }, - { - "text": "Take all possible measures to eliminate stereotypes and practices which contribute to discrimination against women ", - "values": [ - "Women's rights" - ] - }, - { - "text": "Report back to the Human Rights Council on the concrete steps taken to implement the action plan mentioned in the report and on the difference this has made for the situation on the ground", - "values": [ - "General" - ] - }, - { - "text": "Adopt and promulgate as soon as possible the draft law on all forms of discrimination and to include in this draft law discrimination on the basis of sexual orientation and gender identity ", - "values": [ - "Sexual Orientation and Gender Identity" - ] - }, - { - "text": "Intensify efforts to prosecute cases of hate crimes, either on the basis of race or religious belief", - "values": [ - "Freedom of religion and belief", - "Racial discrimination" - ] - }, - { - "text": "Review the order, 39/GM/2003 (despacho) banning pregnant girls to attend day schools", - "values": [ - "Right to education", - "Rights of the Child", - "Women's rights" - ] - }, - { - "text": "Promptly ratify the International Convention on the Protection of the Rights of All Migrant Workers and Members of Their Families", - "values": [ - "International instruments", - "Labour", - "Migrants" - ] - }, - { - "text": "Effectively prevent and prosecute female genital mutilation", - "values": [ - "Rights of the Child", - "Torture and other CID treatment", - "Women's rights" - ] - }, - { - "text": "Criminalize torture", - "values": [ - "Torture and other CID treatment" - ] - }, - { - "text": "To encourage the early adoption of the Law on Combating Corruption, Embezzlement and Illegal Enrichment,", - "values": [ - "Corruption" - ] - }, - { - "text": "Continue to strengthen its efforts and its track on socio-economic and political reforms in the bid to enhance the promotion and protection of fundamental human rights and freedoms ", - "values": [ - "General" - ] - }, - { - "text": "Strengthen efforts to uphold the Act on the Foreign Workers Employment in order to ensure the effective protection of the rights of foreign workers in the country.", - "values": [ - "Labour", - "Migrants" - ] - }, - { - "text": "Take further action to put in place measures to monitor, detect and condemn manifestations of racism, discrimination and xenophobia and adopt a national plan addressing and combating racism and discrimination against ethnic minorities", - "values": [ - "Minorities", - "Racial discrimination" - ] - }, - { - "text": "Adopt a moratorium on executions to allow a comprehensive public debate on the issue and to consider establishing an official death penalty review body to make public recommendations for its reform", - "values": [ - "Death penalty", - "International instruments" - ] - }, - { - "text": "Give specific attention to the implementation of the plan aimed at eliminating worst form of child labour by 2016 and all forms of child labour by 2020, including prohibiting child labour in the informal sector", - "values": [ - "Labour", - "Rights of the Child" - ] - }, - { - "text": "Revise article 336 of the penal code in order to define the crime of rape as a non-consensual sexual relationship", - "values": [ - "Justice", - "Women's rights" - ] - }, - { - "text": "Design and implement policies to prevent and combat discrimination on any grounds, including based on sexual orientation and gender identity", - "values": [ - "Racial discrimination", - "Sexual Orientation and Gender Identity" - ] - }, - { - "text": "Continue efforts towards combating violence against women and children ", - "values": [ - "Rights of the Child", - "Women's rights" - ] - }, - { - "text": "In its commitment to democratic principles and values and the defence of human rights, make the greatest efforts to ensure a national dialogue that facilitates guaranteeing full respect for human rights, independence of powers and institutional strengthening of the country", - "values": [ - "General" - ] - }, - { - "text": "Move towards the ratification of the Convention on the Protection of the Rights of All Migrant and Their Families Workers ", - "values": [ - "International instruments", - "Labour", - "Migrants" - ] - }, - { - "text": "Consider ratifying the Second Optional Protocol to the International Covenant on Civil and Political Rights aiming at the abolition of the death penalty", - "values": [ - "Death penalty", - "International instruments" - ] - }, - { - "text": "Develop regulations that recognize the right to provide and receive quality care services and the right not to provide care when it presents an impediment to the full exercise of citizenship", - "values": [ - "Right to health" - ] - }, - { - "text": "Improve access to education and health for minorities and ensure non-discrimination in access to employment and accommodation for migrants ", - "values": [ - "Migrants", - "Minorities", - "Racial discrimination", - "Right to education", - "Right to health", - "Right to housing" - ] - }, - { - "text": "Eliminate discriminatory practices against women in relation to rights to succession, inheritance and possession of land", - "values": [ - "Right to land", - "Women's rights" - ] - }, - { - "text": "Formulate a national human rights action plan ", - "values": [ - "General" - ] - }, - { - "text": "Take measures to ensure that its national legislation is fully aligned with the international human rights obligations undertaken, including laws affecting the realisation of the freedom of expression and assembly ", - "values": [ - "Freedom of association and peaceful assembly", - "Freedom of opinion and expression", - "International instruments" - ] - }, - { - "text": "Continue to promote its social and economic development and try to eliminate poverty so as to lay a solid foundation for the full enjoyment of all human rights by its population", - "values": [ - "Development", - "ESC rights - general", - "Poverty" - ] - }, - { - "text": "Share with the least developed countries its efforts to overcome its challenges in enhancing economic cooperation with other developing and developed countries at bilateral, regional and multilateral levels.", - "values": [ - "Development" - ] - }, - { - "text": "Ratify the Optional Protocol to the International Covenant on Economic, Social and Cultural Rights, the Optional Protocol to the Convention on the Rights of the Child on a communications procedure and the International Convention for the Protection of All Persons from Enforced Disappearance", - "values": [ - "ESC rights - general", - "Enforced disappearances", - "International instruments", - "Rights of the Child" - ] - }, - { - "text": "Cease harassment and discrimination by police of members of ethnic minorities and peaceful religious adherents under the pretext of combating violent extremism, and grant registration to peaceful religious groups", - "values": [ - "Freedom of religion and belief", - "Human rights violations by state agents", - "Minorities", - "Racial discrimination" - ] - }, - { - "text": "Undertake further measures to consolidate the national health system in order to cut down on the spread of serious diseases ", - "values": [ - "Right to health" - ] - }, - { - "text": "Strengthen mechanisms to promote the full and effective participation of women in different spheres, thus guaranteeing their effective incorporation into public life", - "values": [ - "Women's rights" - ] - }, - { - "text": "Proceed to the review of the Bill of Rights Act of 1990 in order to incorporate ratified international agreements on economic, social and cultural rights ", - "values": [ - "ESC rights - general" - ] - }, - { - "text": "Investigate credible allegations of extrajudicial killings and introduce an independent complaint mechanism on the conduct of the security forces ", - "values": [ - "Extrajudicial executions", - "Human rights violations by state agents", - "Justice" - ] - }, - { - "text": "Ensure that ethnic minorities are granted fundamental rights and are enabled to enjoy their culture, religion and their language freely and without any form of discrimination ", - "values": [ - "ESC rights - general", - "Freedom of religion and belief", - "Minorities", - "Racial discrimination" - ] - }, - { - "text": "Narrow the definition of terrorist activity within international practice to exclude journalism ", - "values": [ - "Counter-terrorism", - "Freedom of the press" - ] - }, - { - "text": "Continue applying the provisions of the Penal Code regarding FGM, bringing to justice and punishing perpetrators of those crimes, their accomplices and those who do not denounce them, intensify awareness raising campaigns and training with a view to explain that FGM is a form of discrimiantion and violence based on gender, and thus eradicate this practice and the cultural justifications in which it is based", - "values": [ - "Human rights education and training", - "Rights of the Child", - "Torture and other CID treatment", - "Women's rights" - ] - }, - { - "text": "With the assistance of the international community, increases activities aimed at incorporating human rights education in the official school curricula and strengthen the capacity of national authorities to promote the enjoyment of human rights.", - "values": [ - "Human rights education and training", - "Technical assistance and cooperation" - ] - }, - { - "text": "Guarantee to prisoners access to basic medical care and adequate food ", - "values": [ - "Detention" - ] - }, - { - "text": "Implement the National Human Rights Plan of Action, highlighting the importance of maintaining a dialogue as a tool towards the implementation of the national human rights agenda, as well as its commitment to strengthen the National Human Rights Council in this regard", - "values": [ - "General" - ] - }, - { - "text": "Adopt the definition of torture used in article 1 of CAT ", - "values": [ - "International instruments", - "Torture and other CID treatment" - ] - }, - { - "text": "Intensify actions to curb racial violence and establish an independent monitoring mechanism to carry out investigations of complaints of poor police performance.", - "values": [ - "Racial discrimination" - ] - }, - { - "text": "Increase its political and financial commitment aimed at ensuring the full development of children and their families ", - "values": [ - "Rights of the Child" - ] - }, - { - "text": "Further intensify its efforts to combat human trafficking in line with implementing the National Plan and address properly protection of victims of human trafficking", - "values": [ - "Trafficking" - ] - }, - { - "text": "Continue combating violence against women and domestic violence, taking into account the vulnerability of migrant women and adopting new legislative measures in support of this group", - "values": [ - "Migrants", - "Women's rights" - ] - }, - { - "text": "Take further steps to eliminate discrimination against vulnerable or marginalized groups, including on the basis of gender or caste, by enacting laws to criminalize all forms of discrimination", - "values": [ - "Minorities", - "Women's rights" - ] - }, - { - "text": "Guarantee the establishment of a safe and enabling environment for the work of human rights defenders, specifically through the adoption of a law for the protection and recognition of human rights defenders", - "values": [ - "Human rights defenders" - ] - }, - { - "text": "Take additional measures so that the National Human Rights Commission complies with the Paris Principles, gets adequate resources, is composed of independent members, and has a broad human rights mandate and a specific mandate on gender equality", - "values": [ - "National Human Rights Institution", - "Women's rights" - ] - }, - { - "text": "Continue taking necessary measures to fully eradicate child labour, without exception, in conformity with ILO Convention No. 138, ratified by the Plurinational State of Bolivia", - "values": [ - "International instruments", - "Labour", - "Rights of the Child" - ] - }, - { - "text": "Abolish the death penalty and terminate public executions ", - "values": [ - "Death penalty" - ] - }, - { - "text": "Establish accountability for conflict-era human rights abuses through the formation of the Truth and Reconciliation Commission and Disappearance Commission, as agreed to in the Comprehensive Peace Agreement ", - "values": [ - "Justice" - ] - }, - { - "text": "Continue to work in a concrete manner toward improving the status of women ", - "values": [ - "Women's rights" - ] - }, - { - "text": "Strengthen the judicial system in compliance with international standards, as planned, which would also lower the high percentage of pre-trial detainees and support the fight against impunity", - "values": [ - "Detention", - "Impunity", - "Justice" - ] - }, - { - "text": "Review the Public Order Management Act in order to repeal the disciplines which allow public authorities to prohibit, without due justification, peaceful protests, thus better protecting freedom of expression and of assembly", - "values": [ - "Freedom of association and peaceful assembly", - "Freedom of opinion and expression" - ] - }, - { - "text": "Strengthen its efforts in combating trafficking and consider the provision of shelters for such victims ", - "values": [ - "Trafficking" - ] - }, - { - "text": "Take additional measures to eliminate criminal networks involved in the sale of children, including for the purposes of illegal adoption", - "values": [ - "Rights of the Child", - "Trafficking" - ] - }, - { - "text": "Continue efforts to enhance the empowerment of women and the elimination of discrimination and violence against women", - "values": [ - "Women's rights" - ] - }, - { - "text": "Strengthen law enforcement in order to provide adequate protection, guarantee the minimum wage and work safety, and to ensure equal access to health services and justice for migrant workers", - "values": [ - "Justice", - "Labour", - "Migrants", - "Right to health" - ] - }, - { - "text": "Step up efforts to address discrimination and social exclusion faced by persons belonging to the Roma minority with particular emphasis on integrated schooling and social housing", - "values": [ - "Minorities", - "Racial discrimination", - "Right to education", - "Right to housing" - ] - }, - { - "text": "Improve the living conditions in centres for asylum-seekers and revise existing system of dealing with individual complaints including the need to ensure that legal advice services are available in those centres ", - "values": [ - "Asylum-seekers - refugees" - ] - }, - { - "text": "Further strengthen programmes to address child labour, in particular through inspection, investigation, and preventative measures such as improving socioeconomic conditions for children and ensuring access to education", - "values": [ - "Labour", - "Right to education", - "Rights of the Child" - ] - }, - { - "text": "Guarantee that lesbian, gay, bisexual, transgender and intersex persons fully enjoy their human rights, on equal terms, by repealing norms that criminalize and stigmatize them", - "values": [ - "Sexual Orientation and Gender Identity" - ] - }, - { - "text": "Undertake a revision of its reservations to the International Covenant on Civil and Political Rights and other core international human rights treaties with a view to deepen and broaden the human rights protection in the country", - "values": [ - "CP rights - general", - "International instruments" - ] - }, - { - "text": "Enhance its cooperation with United Nations human rights bodies and other regional/international partners, particularly in providing the police force with appropriate training in contemporary custodial and interrogation techniques in accordance with international human rights standards", - "values": [ - "Human rights education and training", - "International instruments", - "Technical assistance and cooperation", - "Treaty bodies" - ] - }, - { - "text": "Consider adopting measures to prohibit any form of racial profiling by police and law enforcement officials", - "values": [ - "Human rights violations by state agents", - "Racial discrimination" - ] - }, - { - "text": "Establish an independent Truth and Reconciliation Commission and take immediate action to account for the missing and ensure reparations to victims, including family members of the disappeared", - "values": [ - "Justice" - ] - }, - { - "text": "In accordance with the Action Plan for Children's Rights (2013-2017), apply legal and administrative measures to effectively prevent early marriages", - "values": [ - "Rights of the Child" - ] - }, - { - "text": "Enhance gender equality in the public and private sectors", - "values": [ - "Women's rights" - ] - }, - { - "text": "Successfully implement the important initiative of the National Human Rights Action Plan", - "values": [ - "General" - ] - }, - { - "text": "Adopt a relevant law to create appropriate conditions for the integration of the Meskhetian Turks returnees", - "values": [ - "Minorities" - ] - }, - { - "text": "Develop and apply, as a matter of priority, strategies aimed at combating sexual violence against women, and especially girls, and ensure that they are provided with support for physical and mental health", - "values": [ - "Right to health", - "Rights of the Child", - "Women's rights" - ] - }, - { - "text": "Consider drafting a law that makes basic education mandatory and free", - "values": [ - "Right to education" - ] - }, - { - "text": "Explicitly prohibit corporal punishment, under any circumstances, for boys and girls", - "values": [ - "Rights of the Child", - "Torture and other CID treatment" - ] - }, - { - "text": "Continue efforts to remove landmines and other explosive remnants of war", - "values": [ - "International humanitarian law" - ] - }, - { - "text": "Continue efforts to achieve universal primary education in line with the vision of the National Plan of "Education for all"", - "values": [ - "Right to education" - ] - }, - { - "text": "Endeavour to establish a human rights institution in the country in accordance with the Paris Principles ", - "values": [ - "National Human Rights Institution" - ] - }, - { - "text": "The Royal Government will introduce a systematic procedure on anti-corruption by strengthening the law enforcement through education, accountability and institutional capacity building with the support and participation from the public and the private sectors.", - "values": [ - "Corruption" - ] - }, - { - "text": "Intensify efforts to implement the national action plan to combat trafficking, particularly by bringing to justice and systematically convicting those individuals held responsible", - "values": [ - "Trafficking" - ] - }, - { - "text": "Take measures in the legislative sphere and policy measure to strengthen mechanisms for combating trafficking", - "values": [ - "Trafficking" - ] - }, - { - "text": "Continue addressing the HIV/AIDS impact on women and children as a priority, in particular, the mother-to-child transmission", - "values": [ - "HIV - Aids" - ] - }, - { - "text": "Ratify the OP-CAT, the Optional Protocol to CRPD, OP-CRC-SC, the International Convention on the Protection of the Rights of All Migrant Workers and Members of Their Families, and CED ", - "values": [ - "International instruments" - ] - }, - { - "text": "Ensure the immediate and urgent provision of essential medicines and medical materials to its population, including by deploying necessary resources and by accepting international assistance and cooperation", - "values": [ - "Right to health", - "Technical assistance and cooperation" - ] - }, - { - "text": "Amend the legislation to allow the change of the civil identity without need of previous surgery", - "values": [ - "Sexual Orientation and Gender Identity" - ] - }, - { - "text": "Criminalize human trafficking ", - "values": [ - "Trafficking" - ] - }, - { - "text": "Withdraw reservations to CAT", - "values": [ - "International instruments", - "Torture and other CID treatment" - ] - }, - { - "text": "Take further steps to reduce the gender wage gap", - "values": [ - "Women's rights" - ] - }, - { - "text": "Ratify the Rome Statute on the International Criminal Court and its Agreement on Privileges and Immunities", - "values": [ - "International instruments", - "Justice" - ] - }, - { - "text": "Strengthen the combat against traditional practices such as early marriage, forced marriage or polygamy, which persist despite dispositions existing in the Civil Code ", - "values": [ - "Rights of the Child", - "Women's rights" - ] - }, - { - "text": "Ratify and domesticate ILO Convention on Domestic Workers No. 189", - "values": [ - "International instruments", - "Labour" - ] - }, - { - "text": "Continue efforts to ensure that children are protected from all forms of violence and exploitation, particularly from child labour in hazardous conditions", - "values": [ - "Labour", - "Rights of the Child" - ] - }, - { - "text": "Ensure the effective implementation of the Inclusive Education Action Plan for 2016-2018 and monitor the impact of reforms aiming at the inclusion of Romani pupils in mainstream schools", - "values": [ - "Minorities", - "Right to education", - "Rights of the Child" - ] - }, - { - "text": "Incorporate domestic violence into its criminal laws ", - "values": [ - "Rights of the Child", - "Women's rights" - ] - }, - { - "text": "Promote and protect the human rights of all persons belonging to vulnerable groups ", - "values": [ - "Minorities" - ] - }, - { - "text": "Strengthen access to the national education system for all children and adolescents with disabilities, ensuring an inclusive education", - "values": [ - "Disabilities", - "Right to education", - "Rights of the Child" - ] - }, - { - "text": "Maintain its good example in observing the legal safeguards surrounding the application of death penalty", - "values": [ - "Death penalty" - ] - }, - { - "text": "Guarantee the free exercise of freedoms of expression and opinion", - "values": [ - "Freedom of opinion and expression" - ] - }, - { - "text": "Prohibit corporal punishment of children at home and other alternative care settings, as it had committed to do in the UPR", - "values": [ - "Rights of the Child", - "Torture and other CID treatment", - "UPR process" - ] - }, - { - "text": "Strengthen the capacity of the Office of the Human Rights Advocate ", - "values": [ - "National Human Rights Institution" - ] - }, - { - "text": "Increase resources allocated to the education sector for better quality of education and encourage the authorities to continue their efforts in this area ", - "values": [ - "Right to education" - ] - }, - { - "text": "Engage members of the international donors and seek technical assistance and capacity building to address the problem of food security and access to clean and fresh water", - "values": [ - "Right to food", - "Right to water and sanitation", - "Technical assistance and cooperation" - ] - }, - { - "text": "Improve access of victims of domestic violence to effective protection and redress, strengthen the capacity for prosecution of perpetrators of domestic violence and criminalize marital rape", - "values": [ - "Rights of the Child", - "Women's rights" - ] - }, - { - "text": "A participatory and inclusive process in the follow-up to the UPR, including the full range of civil society, as well as the United Nations Human Rights system ", - "values": [ - "Civil society", - "UPR process" - ] - }, - { - "text": "Continue efforts to prohibit and eliminate child marriage", - "values": [ - "Rights of the Child" - ] - }, - { - "text": "Continue with measures already put in place to ensure the integration and welfare of marginalized and vulnerable members of society through adult literacy, community health insurance and provision of decent shelter to the poor and disadvantaged population", - "values": [ - "ESC rights - general", - "Poverty", - "Right to health", - "Right to housing" - ] - }, - { - "text": "Take all necessary measures to prevent the reappearance of Nazism in order to eradicate the root cause of all racially motivated criminal acts ", - "values": [ - "Racial discrimination" - ] - }, - { - "text": "Initiate a national dialogue on a universal basic income", - "values": [ - "Development" - ] - }, - { - "text": "Further improve relations and cooperation between law enforcement officials and the Roma and other minority groups and ", - "values": [ - "Minorities" - ] - }, - { - "text": "Widely disseminate the main human rights texts, particularly by providing courses on human rights in school curricula to make all social categories aware of their rights.", - "values": [ - "Human rights education and training" - ] - }, - { - "text": "Raise public awareness of the rights of persons with disabilities", - "values": [ - "Disabilities", - "Human rights education and training" - ] - }, - { - "text": "Seek the assistance of the international community so that it can build its capacities and can fulfill its obligation regarding the promotion and protection of its people's human rights, in particular in economic, social and cultural terms, on the basis of its national priorities", - "values": [ - "ESC rights - general", - "Technical assistance and cooperation" - ] - }, - { - "text": "Consider the possibility of ratifying CED", - "values": [ - "Enforced disappearances", - "International instruments" - ] - }, - { - "text": "Continue hosting refugees coming from the Horn of Africa, in particular from Somalia, with the concrete and timely support of the international community, particularly Arab countries.", - "values": [ - "Asylum-seekers - refugees", - "Technical assistance and cooperation" - ] - }, - { - "text": "Accelerate its efforts to ratify CEDAW ", - "values": [ - "International instruments", - "Women's rights" - ] - }, - { - "text": "Strengthen its efforts in the area of human rights education, training of public officials and on the participation of civil society in the promotion and protection of human rights, including through international and regional cooperation.", - "values": [ - "Civil society", - "Human rights education and training" - ] - }, - { - "text": "Consider establishing, as soon as possible in 2010, a full constitutional assembly that will shape the future of Fiji for Fijians and by Fijians", - "values": [ - "CP rights - general" - ] - }, - { - "text": "Continue the efforts to combat hate speech, racism, xenophobia and all forms of discrimination against refugees and migrants", - "values": [ - "Asylum-seekers - refugees", - "Migrants", - "Racial discrimination" - ] - }, - { - "text": "Strengthen domestic mechanisms to prevent illegal detention in the office premises of law enforcement agencies by introducing in the criminal legislation penalties for misconduct/illegal conduct, including the use of violence", - "values": [ - "Detention", - "Human rights violations by state agents" - ] - }, - { - "text": "Step up efforts to review its domestic legislations and policies with a view to ratifying ICRMW ", - "values": [ - "International instruments", - "Labour", - "Migrants" - ] - }, - { - "text": "Continue its efforts to prevent discrimination against Roma", - "values": [ - "Minorities", - "Racial discrimination" - ] - }, - { - "text": "Accept different opinion if it is expressed by human rights defenders through peaceful demonstration", - "values": [ - "Freedom of opinion and expression", - "Human rights defenders" - ] - }, - { - "text": "Accede and adapt its national legislation to the Rome Statute of the International Criminal Court, including by incorporating provisions to cooperate with the Court ", - "values": [ - "International instruments", - "Justice" - ] - }, - { - "text": "Step up efforts towards the adoption of legislation fully in line with the principle of gender equality", - "values": [ - "Women's rights" - ] - }, - { - "text": "Strengthen and expands protections and programmes addressing gender-based violence and sexual exploitation of children, including victims of trafficking, by ensuring that survivors have access to shelter, as well as to justice, health-care services, and support services ", - "values": [ - "Justice", - "Right to health", - "Rights of the Child", - "Trafficking", - "Women's rights" - ] - }, - { - "text": "Strengthen its legal and institutional frameworks with respect to the implementation of human rights and the right to water and sanitation", - "values": [ - "Right to water and sanitation" - ] - }, - { - "text": "Adopt a law against different types of discrimination and for equality in the public and private sector, and the monitoring of complaints", - "values": [ - "Other" - ] - }, - { - "text": "A thorough reform of the current penitentiary system which is obsolete and insufficient ", - "values": [ - "Detention" - ] - }, - { - "text": "Ensure that allegations of abuse of prisoners are subject to effective and independent investigations ", - "values": [ - "Detention" - ] - }, - { - "text": "Enact legislation enabling political parties to register and contest elections", - "values": [ - "Elections", - "Freedom of association and peaceful assembly" - ] - }, - { - "text": "Revise the legal framework on the rights of women and implement policies to eradicate discriminatory practices, including the necessary arrangements and adjustments as regard inheritance issues", - "values": [ - "Women's rights" - ] - }, - { - "text": "Incorporate in its legislation the 1996 Supreme Court judgement that corporal punishment was not a legitimate method of discipline in the home, and criminalize corporal punishment in all cases, including in education", - "values": [ - "Rights of the Child", - "Torture and other CID treatment" - ] - }, - { - "text": "Intensify efforts in the fight against trafficking in persons, in particular women and children", - "values": [ - "Rights of the Child", - "Trafficking", - "Women's rights" - ] - }, - { - "text": "Consider giving voting rights to long-term non-citizen residents in local elections and setting up adequate mechanisms enabling non-citizens to be consulted and to participate actively in the political decision-making process at the local level.", - "values": [ - "Migrants" - ] - }, - { - "text": "Amend domestic legislation so that the minimum age for marriage is set at 18 years ", - "values": [ - "Rights of the Child" - ] - }, - { - "text": "Increase public awareness of human rights", - "values": [ - "Human rights education and training" - ] - }, - { - "text": "To boost the financial support that the Ministry of Foreign Affairs gives to French non-governmental organizations that promote human rights throughout the world, in particular through a "call for human rights projects".", - "values": [ - "Civil society" - ] - }, - { - "text": "Strengthen efforts to ensure that People of African Descent participate and integrate in the economic, political, social and cultural spheres of Guyanese society", - "values": [ - "Minorities" - ] - }, - { - "text": "Develop strategies, containing both legal and social measures, to eliminate discriminatory stereotyping of the roles of women and violence against them", - "values": [ - "Women's rights" - ] - }, - { - "text": "Continue to implement measures aimed at reducing the unemployment rate ", - "values": [ - "Development" - ] - }, - { - "text": "Adopt as a matter of priority, legislative and other measures to guarantee gender equality and strengthen efforts to eradicate customs and traditions that discriminate against women, in particular cases or early or forced marriage", - "values": [ - "Rights of the Child", - "Women's rights" - ] - }, - { - "text": "Consider ratifying international instruments particularly the Convention on the Elimination of All Forms of Discrimination against Women", - "values": [ - "International instruments", - "Women's rights" - ] - }, - { - "text": "Continue to combat discrimination and violence against women, notably through the prevention of certain abusive socio-cultural practices, through the revision of discriminatory provisions in the Civil Code and the development of legislation against domestic violence ", - "values": [ - "Women's rights" - ] - }, - { - "text": "Take steps to ratify [the remaining five core UN human rights treaties namely] the Convention on the Rights of Persons with Disabilities ", - "values": [ - "Disabilities", - "International instruments" - ] - }, - { - "text": "Accelerate the process towards ratification of the Convention on the Rights of Persons with Disabilities ", - "values": [ - "Disabilities", - "International instruments" - ] - }, - { - "text": "Adopt and fully implement as soon as possible the national action plan against domestic violence", - "values": [ - "Rights of the Child", - "Women's rights" - ] - }, - { - "text": "Guarantee the right to freedom of expression, online and offline, to fully ensure that journalists can pursue their profession without harassment and fear of reprisals, and review its legislation to bring it in line with international human rights standards", - "values": [ - "Freedom of opinion and expression", - "Freedom of the press", - "International instruments" - ] - }, - { - "text": "Pursue with determination the implementation of its reforms of the judicial and security sectors ", - "values": [ - "Justice" - ] - }, - { - "text": "Take appropriate action in order to combat all forms of discrimination and violence against women and girls", - "values": [ - "Rights of the Child", - "Women's rights" - ] - }, - { - "text": "Give continuity to strengthening national human rights mechanisms", - "values": [ - "General" - ] - }, - { - "text": "Prohibit and punish the use of racial profiling in all programs that enable local authorities with the enforcement of immigration legislation and provide effective and accessible recourse to remedy human rights violations occurred under these programs ", - "values": [ - "Racial discrimination" - ] - }, - { - "text": "Provide the necessary resources to the Permanent Multisectoral Commission in Charge of Follow-up to the Convention on the Rights of Persons with Disabilities, with an expanded structure that allows the participation of all the stakeholders", - "values": [ - "Disabilities", - "International instruments" - ] - }, - { - "text": "Continue to promote the rights of children by fighting effectively against corporal punishment", - "values": [ - "Rights of the Child", - "Torture and other CID treatment" - ] - }, - { - "text": "Develop and implement policies to ensure gender equality throughout society and strengthen the promotion and protection of the rights of women, especially women from indigenous communities ", - "values": [ - "Indigenous peoples", - "Women's rights" - ] - }, - { - "text": "Continue the cooperation in health matters with the developing countries, particularly LDCs", - "values": [ - "Development" - ] - }, - { - "text": "Step up its efforts to sign and ratify the other human rights instruments which it has committed to sign and ratify", - "values": [ - "International instruments" - ] - }, - { - "text": "Improve cooperation with the United Nations Treaty Bodies, by agreeing on the timeliness for submitting overdue reports and consider the need for external assistance to that end", - "values": [ - "Technical assistance and cooperation", - "Treaty bodies" - ] - }, - { - "text": "Bring the prison and detention conditions in line with international human rights norms and standards, including the Nelson Mandela Rules", - "values": [ - "Detention" - ] - }, - { - "text": "Continue its effort to promote equality between men and women ", - "values": [ - "Women's rights" - ] - }, - { - "text": "Follow up on the recommendation of the Committee on Economic, Social and Cultural Rights regarding the elimination of all forms of forced labour", - "values": [ - "Labour", - "Treaty bodies" - ] - }, - { - "text": "El Salvador will subscribe to the Optional Protocol to the Convention against Torture and will recognize the competence of the Convention under its articles 21 and 22", - "values": [ - "Detention", - "International instruments", - "Torture and other CID treatment" - ] - }, - { - "text": "Consider modifying or repealing discriminatory legislation, including discriminatory provisions in the Personal Status Law and the Nationality Law ", - "values": [ - "General", - "Statelessness and the right to nationality" - ] - }, - { - "text": "Continue to work to ensure sustainable economic and social development, eradicate poverty and establish a solid material basis for the full enjoyment of human rights for all the population ", - "values": [ - "Development", - "Poverty" - ] - }, - { - "text": "Reinforce the impartiality of the judiciary promoting an appointment system by competitive examinations at all levels of the judiciary", - "values": [ - "Justice" - ] - }, - { - "text": "Develop and adopt legal and administrative measures aimed at making its education premises accessible and, on the other hand, at training teachers, with a view to guaranteeing full access to education to people with disabilities", - "values": [ - "Disabilities", - "Right to education" - ] - }, - { - "text": "Continue efforts in adopting required measures to ensure child care, including for disabled children, and ensure their rights in education and health ", - "values": [ - "Disabilities", - "Right to education", - "Right to health", - "Rights of the Child" - ] - }, - { - "text": "Strive to put into practice the economic rights of individuals and make all possible efforts to overcome the difficulties with which the economy is confronted owing to the global financial crisis", - "values": [ - "ESC rights - general" - ] - }, - { - "text": "Conduct thorough and impartial investigation into all allegations of torture and physical abuse, and bring to justice anyone suspected of having committed excessive use of force, torture and other human rights violations ", - "values": [ - "Torture and other CID treatment" - ] - }, - { - "text": "Consider amending its legal provisions to further ensure protection of children's rights, especially by raising the minimum working age in agricultural and domestic service", - "values": [ - "Labour", - "Rights of the Child" - ] - }, - { - "text": "Issue a standing invitation to the HRC special procedures mandate holders ", - "values": [ - "Special procedures" - ] - }, - { - "text": "Ratify the Optional Protocol to the Convention against Torture (OPCAT)", - "values": [ - "Detention", - "International instruments", - "Torture and other CID treatment" - ] - }, - { - "text": "Take steps to ensure access to safe drinking water for all the indigenous communities", - "values": [ - "Indigenous peoples", - "Right to water and sanitation" - ] - }, - { - "text": "Sign and ratify the Arms Trade Treaty", - "values": [ - "International instruments", - "Public security" - ] - }, - { - "text": "Continue striving for the necessary disarmament, demobilization and reintegration of all elements of Seleka as a precondition to enable guaranteeing humanitarian assistance and the defence of human rights", - "values": [ - "Public security" - ] - }, - { - "text": "Reinforce the measures to protect the rights of child, inter alia by expediting the adoption of the revised draft law on the fundamentals of protection of the rights of the child", - "values": [ - "Rights of the Child" - ] - }, - { - "text": "Strengthen the institutional capacity of the Independent National Commission on Human Rights established in 2011, the Ministry of Justice and the judiciary", - "values": [ - "Justice", - "National Human Rights Institution" - ] - }, - { - "text": "Put an end to the use of discriminatory ethnic profiling by inserting the necessary legal safeguards against the abuse and deliberate targeting of certain ethnic and religious groups ", - "values": [ - "Freedom of religion and belief", - "Minorities", - "Racial discrimination" - ] - }, - { - "text": "Following the lifting of the State of Emergency in February 2011, promptly take measures to bring all other legislation and decrees in conformity with its international obligations aimed at fully ensuring freedom of expression, including on the internet, and freedom of peaceful assembly and of association ", - "values": [ - "Freedom of association and peaceful assembly", - "Freedom of opinion and expression" - ] - }, - { - "text": "Continue to participate actively in meetings of the Economic and Social Council and its various commissions and in the General Assembly and Security Council.", - "values": [ - "Other" - ] - }, - { - "text": "Accede to the Rome Statute of the International Criminal Court ", - "values": [ - "International instruments", - "Justice" - ] - }, - { - "text": "Consider the adoption of a national strategy to move forward in the promotion and protection of the rights of the elderly", - "values": [ - "Other" - ] - }, - { - "text": "Launch investigations of human rights violations and return to adherence to democratic principles, including through ensuring genuine periodic elections", - "values": [ - "Elections", - "Justice" - ] - }, - { - "text": "Take all necessary measures to protect women and children from violence, particularly sexual abuse and exploitation, including through the adoption of awareness-raising programmes, as well as by means of sexual education policies", - "values": [ - "Human rights education and training", - "Rights of the Child", - "Women's rights" - ] - }, - { - "text": "Institute measures to remove existing structural and legislative barriers for women in the labour market", - "values": [ - "Labour", - "Women's rights" - ] - }, - { - "text": "Raise the minimum age of criminal responsibility in accordance with international standards, which should allow Botswana to withdraw its reservation to article 1 of the Convention on the Rights of the Child", - "values": [ - "International instruments", - "Justice", - "Rights of the Child" - ] - }, - { - "text": "Make specific efforts to combat discrimination and to improve the levels of education and health of its people", - "values": [ - "Right to education", - "Right to health" - ] - }, - { - "text": "Improve the human-rights capacity-building programme and step up efforts to promote and raise awareness of these rights.", - "values": [ - "Other" - ] - }, - { - "text": "Ensure adequate human rights education and training for all professionals working with children", - "values": [ - "Human rights education and training", - "Rights of the Child" - ] - }, - { - "text": "Incorporate in the domestic legislation the definition of torture, in line with the Convention against Torture and Other Cruel, Inhuman or Degrading Treatment or Punishment, and ensure that no statement made as a result of torture can be invoked as evidence in any judicial proceedings, in conformity with Article 15 of this Convention", - "values": [ - "International instruments", - "Torture and other CID treatment" - ] - }, - { - "text": "Continue its positive efforts in ensuring effective implementation of its National Human Rights Plan, including by seeking necessary technical and financial assistance", - "values": [ - "Technical assistance and cooperation" - ] - }, - { - "text": "Approve a specific law, in line with its international human rights obligations, that prohibits discrimination and incitement to violence based on sexual orientation and gender identity", - "values": [ - "Sexual Orientation and Gender Identity" - ] - }, - { - "text": "Review legislation on migration and refugee status", - "values": [ - "Asylum-seekers - refugees", - "Migrants" - ] - }, - { - "text": "Enact amendments to the Electoral Code and ensure broader participation of all citizens in the electoral process and equal enjoyment of the right to vote and to stand for election", - "values": [ - "Elections" - ] - }, - { - "text": "Remedy the lack of human resources in the area of health, the lack of medication and the lack of infrastructures", - "values": [ - "Right to health" - ] - }, - { - "text": "Ratify the 1960 Convention against Discrimination in Education and accede to the African Union Convention for the Protection and Assistance of Internally Displaced Persons in Africa ", - "values": [ - "Internally displaced persons", - "International instruments", - "Right to education" - ] - }, - { - "text": "Disband the bodies set up by the Haute Autorit\u00c3\u00a9 de la Transition to carry out arrests, detentions and investigations of crimes", - "values": [ - "Justice" - ] - }, - { - "text": "Strengthen cooperation with United Nations human rights mechanisms", - "values": [ - "Special procedures", - "Technical assistance and cooperation", - "Treaty bodies", - "UPR process" - ] - }, - { - "text": "Continue its efforts to overcome constraints and difficulties in order to implement all human rights and fundamental freedoms for everyone.", - "values": [ - "General" - ] - }, - { - "text": "Issue a standing invitation to human rights special procedures ", - "values": [ - "Special procedures" - ] - }, - { - "text": "Continue promoting the right to health of its citizens, particularly maternal and child health services", - "values": [ - "Right to health", - "Rights of the Child", - "Women's rights" - ] - }, - { - "text": "Promulgate and implement as soon as possible the law amending the definition of torture and ensure that it is used to investigate complaints of torture and ill-treatment", - "values": [ - "Torture and other CID treatment" - ] - }, - { - "text": "Work towards the implementation of the recommendations of the Committee on the Rights of the Child.", - "values": [ - "Rights of the Child", - "Treaty bodies" - ] - }, - { - "text": "Include and rank the human rights situation in the United States in the United States Annual Country Reports on Human Rights as was done for the annual report on trafficking of persons", - "values": [ - "Other" - ] - }, - { - "text": "Step up its efforts to combat impunity and to ensure access to justice ", - "values": [ - "Impunity", - "Justice" - ] - }, - { - "text": "Adopt immediate measures to assign an ad litem tutor or adviser to unaccompanied minors independently of whether an application for protection has been submitted", - "values": [ - "Rights of the Child" - ] - }, - { - "text": "Ratify Conventions to which it is not yet party ", - "values": [ - "International instruments" - ] - }, - { - "text": "Ensure freedom of expression, in conformity with obligations under the International Covenant on Civil and Political Rights, in particular in relation to journalists, human rights activists and members of the opposition", - "values": [ - "Freedom of association and peaceful assembly", - "Freedom of opinion and expression", - "Freedom of the press", - "Human rights defenders", - "International instruments" - ] - }, - { - "text": "Continue to strengthen efforts to eliminate all types of violence against children including through the criminalization of corporal punishment", - "values": [ - "Rights of the Child", - "Torture and other CID treatment" - ] - }, - { - "text": "Ensure that all suspects in police custody have prompt and immediate access to a lawyer", - "values": [ - "Detention" - ] - }, - { - "text": "Implement a system for measuring indicators of progress on economic, social and cultural rights", - "values": [ - "ESC rights - general" - ] - }, - { - "text": "Continue its efforts to reduce poverty, especially in fulfilling the rights of vulnerable groups", - "values": [ - "Poverty" - ] - }, - { - "text": "Speed up the process of the ratification of the Optional Protocol to the Convention on the Rights of the Child on a communications procedure", - "values": [ - "International instruments", - "Rights of the Child" - ] - }, - { - "text": "Continue working on programmes to combat discrimination, particularly against persons belonging to minorities or vulnerable groups", - "values": [ - "Freedom of religion and belief", - "Minorities", - "Racial discrimination" - ] - }, - { - "text": "Take the necessary constitutional measures to bring the Convention on the Rights of the Child into force", - "values": [ - "International instruments", - "Rights of the Child" - ] - }, - { - "text": "Increase the human and financial resources made available to the office of the ombudsperson to enable it to fulfil its expanded mandate", - "values": [ - "National Human Rights Institution" - ] - }, - { - "text": "Continue its efforts to improve access to health services for indigenous peoples ", - "values": [ - "Indigenous peoples", - "Right to health" - ] - }, - { - "text": "Recognize the competence of the Committee against Torture to examine complaints against Israel.", - "values": [ - "Torture and other CID treatment", - "Treaty bodies" - ] - }, - { - "text": "Continue its efforts to assure birth registration of all children including the children of undocumented migrants ", - "values": [ - "Migrants", - "Rights of the Child", - "Statelessness and the right to nationality" - ] - }, - { - "text": "Formulate human rights training programmes to spread awareness among the civil service, particularly law enforcement officials and members of the judiciary ", - "values": [ - "Human rights education and training" - ] - }, - { - "text": "Consider acceding to CAT, OP-CAT, CRPD and OP-CEDAW ", - "values": [ - "Detention", - "Disabilities", - "International instruments", - "Torture and other CID treatment", - "Women's rights" - ] - }, - { - "text": "Continue making efforts to provide human rights education to law enforcement personnel", - "values": [ - "Human rights education and training" - ] - }, - { - "text": "Establish an independent, impartial and credible national human rights institution in line with the Paris Principles", - "values": [ - "National Human Rights Institution" - ] - }, - { - "text": "Take necessary measures to ensure that perpetrators of human rights violations are prosecuted to put an end to their impunity ", - "values": [ - "Impunity" - ] - }, - { - "text": "Continue implementing the universal pension for older persons, and ensure that it reaches all intended recipients", - "values": [ - "ESC rights - general" - ] - }, - { - "text": "Review and where necessary adapt school and early childhood education curricula, teaching and school practices to foster the elimination of gender-based discrimination and stereotyping, as well as to promote the empowerment of girls from an early age", - "values": [ - "Right to education", - "Rights of the Child", - "Women's rights" - ] - }, - { - "text": "Increase efforts to address the serious problem of violence against children, including by ensuring full legal protection against the sexual abuse of children", - "values": [ - "Rights of the Child" - ] - }, - { - "text": "Fully implement the relevant laws, policies and programmes aimed at combating domestic violence in the country", - "values": [ - "Rights of the Child", - "Women's rights" - ] - }, - { - "text": "Take action to improve prison conditions and implement recommendations made by the Committee against Torture and by the Human Rights Committee.", - "values": [ - "CP rights - general", - "Detention", - "Torture and other CID treatment", - "Treaty bodies" - ] - }, - { - "text": "Intensify the efforts for the prevention, punishment and eradication of all forms of violence against women, with a special attention to their greater vulnerability in the aftermath of the earthquake", - "values": [ - "Women's rights" - ] - }, - { - "text": "Continue its efforts to consolidate social policies in favour of the most vulnerable sectors of its people, counting on the assistance and cooperation of the community of nations, as requested by the country", - "values": [ - "Technical assistance and cooperation" - ] - }, - { - "text": "Establish a National Human Rights Institution in conformity with the Paris Principles", - "values": [ - "National Human Rights Institution" - ] - }, - { - "text": "Constructively engage to garner technical and financial support from the United Nations agencies and the wider international community for the more effective promotion and protection of human rights", - "values": [ - "Technical assistance and cooperation" - ] - }, - { - "text": "Take measures to ensure for victims effective recourse against any act of torture, particularly those committed in detention centres ", - "values": [ - "Detention", - "Torture and other CID treatment" - ] - }, - { - "text": "Take steps to integrate a gender perspective throughout all areas of government, including through the application of gender-based analysis to the development of legislation, policy and programmes\n\n", - "values": [ - "Women's rights" - ] - }, - { - "text": "Pass a law to criminalize all forms of human trafficking and ratify the 2000 Protocol to Prevent, Suppress and Punish Trafficking in Persons, especially Women and Children, Supplementing the United Nations Convention against Transnational Organized Crime", - "values": [ - "International instruments", - "Rights of the Child", - "Trafficking", - "Women's rights" - ] - }, - { - "text": "Ensure the freedom of religion and belief for all citizens of Iran", - "values": [ - "Freedom of religion and belief" - ] - }, - { - "text": "Accede to the international treaties on human rights and ratify CAT", - "values": [ - "International instruments", - "Torture and other CID treatment" - ] - }, - { - "text": "Continue spreading best practices in the field of enhancement of the already existing solid institutional framework", - "values": [ - "General" - ] - }, - { - "text": "Make education one of its top priorities, and reinforce - equitable access to higher education - based on academic and educational standards ", - "values": [ - "Right to education" - ] - }, - { - "text": "Adopt the draft anti-discrimination law with provisions prohibiting sexual harassment as soon as possible", - "values": [ - "Women's rights" - ] - }, - { - "text": "Take further steps to prevent racially motivated violence through awareness-raising activities and improve the employment situation of immigrants, as well as to combat violence in general and strengthen the prosecution of those who still engage in it ", - "values": [ - "Migrants", - "Racial discrimination" - ] - }, - { - "text": "Fully implement the normative framework and related policies aimed at preventing violence against women, in particular by addressing the factors which may still prevent women from filing complaints regarding episodes of violence ", - "values": [ - "Women's rights" - ] - }, - { - "text": "Continue providing spaces for dialogue between civil society and the State to discuss human rights issues, such as the National Round table on Safeguards", - "values": [ - "Civil society" - ] - }, - { - "text": "Ratify the Council of Europe Convention on Preventing and Combating Violence against Women and Domestic Violence in a timely manner", - "values": [ - "International instruments", - "Rights of the Child", - "Women's rights" - ] - }, - { - "text": "Consider issuing a standing invitation to Special Procedures mandate holders ", - "values": [ - "Special procedures" - ] - }, - { - "text": "Ratify the International Covenant on Economic, Social and Cultural Rights ", - "values": [ - "ESC rights - general", - "International instruments" - ] - }, - { - "text": "Fully respect all international obligations by accepting the legally binding United Nations documents and by its membership in the United Nations, especially articles 1, 3, 6 and 15 of the International Covenant on Civil and Political Rights, and by respecting the decisions of the other United Nations bodies and other organizations at the national level, especially, the decisions of the Human Rights Court in Strasbourg, in regard to minority rights", - "values": [ - "CP rights - general", - "International instruments", - "Minorities" - ] - }, - { - "text": "Continuation of cooperation between governmental and nongovernmental institutions, considering the dialogue and cooperation among them", - "values": [ - "Civil society" - ] - }, - { - "text": "Ensure that unaccompanied migrant children receive free legal representation", - "values": [ - "Justice", - "Migrants", - "Rights of the Child" - ] - }, - { - "text": "Seek the assistance and necessary expertise of United Nations specialized agencies in building and strengthening institutions to rehabilitate those engaged in drug-related crimes ", - "values": [ - "Public security", - "Technical assistance and cooperation" - ] - }, - { - "text": "Effectively implement protection mechanisms for victims of domestic violence and provide them with the necessary funding", - "values": [ - "Rights of the Child", - "Women's rights" - ] - }, - { - "text": "Continue work to ensure prison and detention centre conditions comply with the United Nations Standard Minimum Rules for the Treatment of Prisoners", - "values": [ - "Detention" - ] - }, - { - "text": "Continue to review its legislation and implement practical measures, such as those contained in Kuwait's next Development plan, to eliminate discrimination against women, and to protect and empower Kuwaiti women", - "values": [ - "Women's rights" - ] - }, - { - "text": "Cooperate in the follow-up to this review", - "values": [ - "UPR process" - ] - }, - { - "text": "Take further steps leading to a formal abolition of the death penalty, commuting all existing sentences to life imprisonment terms ", - "values": [ - "Death penalty" - ] - }, - { - "text": "Foresee protection measures for human rights defenders, in accordance with international commitments", - "values": [ - "Human rights defenders" - ] - }, - { - "text": "Continue its endeavour to build a sound social security system and supporting services commensurate with national conditions, as well as its level of social and economic development", - "values": [ - "ESC rights - general" - ] - }, - { - "text": "Continue programmes to foster economic growth and reduce unemployment", - "values": [ - "Development" - ] - }, - { - "text": "Carry out independent investigations into serious abuses against participants in peaceful demonstrations, and hold the perpetrators accountable for their crimes", - "values": [ - "Freedom of association and peaceful assembly" - ] - }, - { - "text": "Effectively fight impunity for cases of extrajudicial killings and enforced disappearance committed by the armed forces and the police, as well as non-state actors ", - "values": [ - "Enforced disappearances", - "Extrajudicial executions", - "Human rights violations by state agents", - "Impunity" - ] - }, - { - "text": "Decriminalize sexual activity between same-sex consenting adults and ensure the protection of human rights for sexual minorities in conformity with the State's human rights obligations ", - "values": [ - "Sexual Orientation and Gender Identity" - ] - }, - { - "text": "Regarding the use of excessive force by the police, implement an independent complaint mechanism, which will investigate any allegation concerning violence, acts of torture and other mistreatments by the police ", - "values": [ - "Human rights violations by state agents", - "Torture and other CID treatment" - ] - }, - { - "text": "Ratify both Protocols to the Convention on the Rights of the Child (CRC) (CRC-OP-AC and the Optional Protocol on the sale of children, child prostitution and child pornography, CRC-OP-SC)", - "values": [ - "International humanitarian law", - "International instruments", - "Rights of the Child", - "Trafficking" - ] - }, - { - "text": "Take further measures to protect the collective property rights of all indigenous citizens ", - "values": [ - "Indigenous peoples" - ] - }, - { - "text": "Abolish the death penalty and, as interim steps, reduce the number of crimes for which the death penalty can be imposed and publish figures on executions", - "values": [ - "Death penalty" - ] - }, - { - "text": "Introduce a moratorium on the death penalty with a view to ending its application", - "values": [ - "Death penalty" - ] - }, - { - "text": "Labor and Employment - We are committed to protecting all individuals, including members of racial minorities, from workplace discrimination. From 2011-2013, EEOC received 293,086 individual complaints of discrimination, resolved 320,890 charges, and recovered a total of $1.1 billion for affected employees through the administrative process. Over this three-year period, EEOC filed 603 lawsuits on behalf of individuals subjected to workplace discrimination, resolved 817 such lawsuits, and recovered an additional $173.8 million for affected workers. In 2013, DOJ collected record civil penalties from employers in resolving employment discrimination claims based on citizenship status or national origin, and in 2014, it secured a record amount of back pay for these discrimination victims.", - "values": [ - "Labour", - "Minorities", - "Racial discrimination" - ] - }, - { - "text": "Fee free basic education policy and community schools.", - "values": [ - "Right to education" - ] - }, - { - "text": "Remove vague provisions in the Anti-Terrorism Proclamation that can be used to criminalize the exercise of the right to freedom of expression and association and ensure that criminal prosecutions do not limit the freedom of expression of civil society, opposition politicians and independent media ", - "values": [ - "Civil society", - "Counter-terrorism", - "Freedom of association and peaceful assembly", - "Freedom of opinion and expression", - "Freedom of the press" - ] - }, - { - "text": "Revise the minimum wage to guarantee the protection of workers by ensuring a decent standard of living, in consultation with all relevant stakeholders", - "values": [ - "Labour" - ] - }, - { - "text": "Continue taking measures aimed to stop the spread of HIV/AIDS and to prevent mother-to-child transmission", - "values": [ - "HIV - Aids", - "Women's rights" - ] - }, - { - "text": "Continue the work to further social and economic integration of the Roma population, reduce direct and indirect school segregation of Roma children and actively promote Roma participation in society through education", - "values": [ - "Minorities", - "Racial discrimination", - "Right to education", - "Rights of the Child" - ] - }, - { - "text": "Make further efforts to enhance awareness of rights of women and children as contained in the newly adopted laws", - "values": [ - "Human rights education and training", - "Rights of the Child", - "Women's rights" - ] - }, - { - "text": "Review legislation governing radio, television and communication. ", - "values": [ - "Freedom of the press" - ] - }, - { - "text": "Pursue efforts to ensure the smooth functioning and full independence of the Human Rights Commission, in conformity with the Paris Principles", - "values": [ - "National Human Rights Institution" - ] - }, - { - "text": "Establish a legal definition of torture in line with article 1 of CAT, and independent mechanisms to investigate and prosecute related cases ", - "values": [ - "International instruments", - "Torture and other CID treatment" - ] - }, - { - "text": "Further accelerate its pro-people, pro-poor socio-economic policies ", - "values": [ - "Poverty" - ] - }, - { - "text": "Continuing and strengthening its efforts to achieve gender equality in Government and public services at all levels, to this end, the newly elected Parliament, the Knesset, had 21 women, among the largest number of women members in the history of Israel, and 3 more than in the previous Knesset", - "values": [ - "Women's rights" - ] - }, - { - "text": "Take the necessary measures to create a safe and favourable environment for civil society by respecting the human rights of all individuals, in particular the rights to freedom of expression and association", - "values": [ - "Civil society", - "Freedom of association and peaceful assembly", - "Freedom of opinion and expression" - ] - }, - { - "text": "Continue the judiciary system reform to reinforce its efficiency, notably to improve access to justice for all", - "values": [ - "Justice" - ] - }, - { - "text": "Ensure the implementation of the legislation related to the 60 judicial reform measures as established at the end of 2008", - "values": [ - "Justice" - ] - }, - { - "text": "Consider the ratification of the International Convention for the Protection of all Persons from Enforced Disappearance", - "values": [ - "Enforced disappearances", - "International instruments" - ] - }, - { - "text": "Continue efforts to promote opportunities for productive and paid employment for persons with disabilities", - "values": [ - "Disabilities", - "Labour" - ] - }, - { - "text": "Take concrete measures aiming at improving the access of women and children to justice ", - "values": [ - "Justice", - "Rights of the Child", - "Women's rights" - ] - }, - { - "text": "Accomplish the human rights goals set out in Human Rights Council resolution 9-12", - "values": [ - "General" - ] - }, - { - "text": "Take more effective measures to strengthen family institution and inculcate good moral values and effective ways to protect and promote the rights of the child", - "values": [ - "Rights of the Child" - ] - }, - { - "text": "Establish a moratorium on the application of the death penalty", - "values": [ - "Death penalty" - ] - }, - { - "text": "Envisage ratifying the International Convention on the Protection of the Rights of All Migrant Workers and Members of Their Families ", - "values": [ - "International instruments", - "Labour", - "Migrants" - ] - }, - { - "text": "Child and maternal mortality are the key indicators for the country's level of development as they reveal the state of quality of health of health services and health programmes. Lesotho will reduce child and maternal mortality by at least 25 percent by 2017.", - "values": [ - "Right to health", - "Rights of the Child", - "Women's rights" - ] - }, - { - "text": "Continue to enhance its education system and ensure equal access to quality education for all, particularly women and girls ", - "values": [ - "Right to education", - "Rights of the Child", - "Women's rights" - ] - }, - { - "text": "Continue addressing gender inequalities in the labour market, in particular with a view to accelerating women's representation in high ranking, decision making posts ", - "values": [ - "Women's rights" - ] - }, - { - "text": "Strengthen its efforts to eliminate discrimination against women in law and practice", - "values": [ - "Women's rights" - ] - }, - { - "text": "Adopt a comprehensive Child Code, ensuring that it covers all of the provisions of the Convention on the Rights of the Child ", - "values": [ - "International instruments", - "Rights of the Child" - ] - }, - { - "text": "Advance in the allocation to the judiciary of the necessary financial resources with a view to achieving its full independence, as well as guaranteeing due transparency and efficiency in the administration of justice", - "values": [ - "Justice" - ] - }, - { - "text": "Undertake further actions to combat discrimination against women and to ensure equality for women on the ground, and in this regard take into account the recommendations of the Committee on the Elimination of Discrimination against Women.", - "values": [ - "Treaty bodies", - "Women's rights" - ] - }, - { - "text": "Grant due process rights to all detainees held in both military and police facilities, including those held in administrative detention, disclose all unofficial detention sites, and facilitate effective and independent monitoring of detainees", - "values": [ - "Detention" - ] - }, - { - "text": "Continue the comprehensive efforts to improve the system of education.", - "values": [ - "Right to education" - ] - }, - { - "text": "Take the necessary steps, including requesting technical assistance, to comply with reporting obligations to the United Nations treaty monitoring bodies ", - "values": [ - "Technical assistance and cooperation", - "Treaty bodies" - ] - }, - { - "text": "Recommended the issuance and implementation of a standing invitation to special procedures.", - "values": [ - "Special procedures" - ] - }, - { - "text": "Take steps to combat child abuse and child labour", - "values": [ - "Labour", - "Rights of the Child" - ] - }, - { - "text": "Re-evaluate the recent amendments to the Press and Publications Law, the Law of Information System Crimes and the Penal Code which threaten the right to freedom of expression, in particular online", - "values": [ - "Freedom of opinion and expression", - "Freedom of the press" - ] - }, - { - "text": "Adopt legislation against torture, accede to the OP-CAT", - "values": [ - "Detention", - "International instruments", - "Torture and other CID treatment" - ] - }, - { - "text": "Develop, at the regional level, the State's institutions in charge of the reconstruction of historical memory of violations of human rights committed during the armed conflict ", - "values": [ - "Justice" - ] - }, - { - "text": "Thailand will strengthen the implementation of the National Human Rights Action Plan", - "values": [ - "General" - ] - }, - { - "text": "Strengthen the measures for the protection of the rights of the child, also in order to prevent the practice of early marriage", - "values": [ - "Rights of the Child" - ] - }, - { - "text": "Continue its efforts to further strengthen the judiciary ", - "values": [ - "Justice" - ] - }, - { - "text": "Continue its efforts to eradicate poverty with the support and cooperation of the international community", - "values": [ - "Poverty", - "Technical assistance and cooperation" - ] - }, - { - "text": "Accelerate the process of adopting a relevant legislative and regulatory framework for combating racial discrimination", - "values": [ - "Racial discrimination" - ] - }, - { - "text": "Introduce human rights education and training into school curriculums, in accordance with article 29 of the Convention on the Rights of the Child", - "values": [ - "Human rights education and training", - "International instruments" - ] - }, - { - "text": "Strengthen efforts to prevent and combat all forms of discrimination and violence against women and children, in particular, practices such as female genital mutilation and child and early forced marriage. Ensure that victims of such violence receive appropriate help and that perpetrators are brought to justice", - "values": [ - "Rights of the Child", - "Torture and other CID treatment", - "Women's rights" - ] - }, - { - "text": "Undertake harmonization of Libya's nationality law to place women on an equal footing with men regarding the right to acquire, change or pass on their nationality", - "values": [ - "Women's rights" - ] - }, - { - "text": "Harmonize domestic legislation with the Convention on the Rights of the Child through technical assistance and establish laws that regulate areas that are not yet regulated, such as child pornography or disability ", - "values": [ - "International instruments", - "Rights of the Child" - ] - }, - { - "text": "Take more active measures to decrease the level of unemployment of migrants, particularly among women and young people", - "values": [ - "Development", - "Migrants", - "Women's rights" - ] - }, - { - "text": "Implement, fully and without delay, the law against \u201chonour\u201c crimes, which resolved an ambiguity that had allowed perpetrators to be pardoned by relatives of the victim", - "values": [ - "Women's rights" - ] - }, - { - "text": "Continue its efforts to implement the national action plan to combat trafficking in persons", - "values": [ - "Trafficking" - ] - }, - { - "text": "Further promote cooperation with the Human Rights Council special procedures, including facilitating the visits of the mandates holders to the country", - "values": [ - "Special procedures" - ] - }, - { - "text": "Fully implement the 2006 High Court ruling and allow all San individuals who want to live on the Central Kalahari Game Reserve to do so", - "values": [ - "Indigenous peoples" - ] - }, - { - "text": "Continue and deepen its current health plans, the main objective of which is to facilitate the access of the population to modern and quality health services", - "values": [ - "Right to health" - ] - }, - { - "text": "Eliminate the provision of the death penalty from the Constitution of the Republika Srpska", - "values": [ - "Death penalty" - ] - }, - { - "text": "Sign and ratify the Convention on the Rights of Persons with Disabilities ", - "values": [ - "Disabilities", - "International instruments" - ] - }, - { - "text": "Continue to review national legislation in order to ensure that it is in line with the State's international human rights obligations ", - "values": [ - "International instruments" - ] - }, - { - "text": "Focus further on training for magistrates and law-enforcement officers regarding trafficking in persons", - "values": [ - "Human rights education and training", - "Trafficking" - ] - }, - { - "text": "Strengthen measures, both in regard to policy and legislation, to combat discrimination and violence against women.", - "values": [ - "Women's rights" - ] - }, - { - "text": "Intensify its efforts to create awareness regarding the primacy of constitutional law with respect to customary laws and practices", - "values": [ - "Justice" - ] - }, - { - "text": "Continue efforts to provide comprehensive primary education", - "values": [ - "Right to education" - ] - }, - { - "text": "End detention of asylum-seekers at borders and create alternatives to detention for asylum-seeking families", - "values": [ - "Asylum-seekers - refugees", - "Detention" - ] - }, - { - "text": "Continue its efforts to deepen and strengthen human rights in the country", - "values": [ - "General" - ] - }, - { - "text": "Ensure that no forced evictions or restrictions on access to adequate housing are imposed on the basis of sexual orientation", - "values": [ - "Right to housing", - "Sexual Orientation and Gender Identity" - ] - }, - { - "text": "Review its legislation to ensure that restrictions on the freedom of expression do not go beyond those permitted by the ICCPR, even though Kiribati has not yet ratified it ", - "values": [ - "Freedom of opinion and expression", - "International instruments" - ] - }, - { - "text": "Expedite the establishment of the national human rights institution and make if fully compliant with the Paris Principles", - "values": [ - "National Human Rights Institution" - ] - }, - { - "text": "Take the necessary measures to stop malpractices by police officers, especially identity searches based on racial profiling of Muslims and people from Arab or African descent ", - "values": [ - "Freedom of religion and belief", - "Human rights violations by state agents", - "Minorities", - "Racial discrimination" - ] - }, - { - "text": "Continue, in cooperation with UNESCO and other relevant international organisations, to promote universal access to education and improve the quality of its education system", - "values": [ - "Right to education", - "Technical assistance and cooperation" - ] - }, - { - "text": "Greenland and Faroe Islands to ratify the following international instruments: Optional Protocol to the Convention on the Rights of the Child on the sale of children, child prostitution and child pornography, Protocol to Prevent, Suppress and Punish Trafficking in Persons, Especially Women and Children, and ensure their application ", - "values": [ - "International instruments", - "Rights of the Child", - "Trafficking" - ] - }, - { - "text": "Increase the promotion and build public awareness of the Human Rights Desk, so that aggrieved persons are aware of it as a channel of redress ", - "values": [ - "Human rights education and training" - ] - }, - { - "text": "The Committee on the Elimination of All Forms of Racial Discrimination pointed out that Bahraini law provides no definition of racial discrimination that includes the criteria set out in article 1 of the Convention. The Committee also asked for additional information on housing. The Kingdom of Bahrain will duly include in its next report to the Committee additional information on the follow-up to the Committee's concluding observations and recommendations. ", - "values": [ - "International instruments", - "Racial discrimination", - "Right to housing", - "Treaty bodies" - ] - }, - { - "text": "Educate domestic workers on regulations regarding domestic workers by making it available in all languages and take all necessary measures to implement the regulations in practice", - "values": [ - "Labour" - ] - }, - { - "text": "Explicitly prohibit all forms of corporal punishment in the upbringing and education of children", - "values": [ - "Right to education", - "Rights of the Child", - "Torture and other CID treatment" - ] - }, - { - "text": "Introduce an immediate moratorium on the use of the death penalty with a view to its abolition ", - "values": [ - "Death penalty" - ] - }, - { - "text": "Review its approach towards religious groups and practitioners, including those not organized in the officially recognized churches", - "values": [ - "Freedom of religion and belief" - ] - }, - { - "text": "Take effective measures to prevent and prosecute manifestations of racism, xenophobia and intolerance", - "values": [ - "Racial discrimination" - ] - }, - { - "text": "Revise the law on "foreign agents" and adopt measures in order to facilitate and enhance dialogue and practical cooperation between Government and civil society ", - "values": [ - "Civil society", - "Freedom of association and peaceful assembly" - ] - }, - { - "text": "Put an end to impunity whenever it occurs, investigate all complaints of torture and ill-treatment by law enforcement officers, prosecute and punish those responsible and ensure that information obtained under torture is not admissible in courts", - "values": [ - "Human rights violations by state agents", - "Impunity", - "Justice", - "Torture and other CID treatment" - ] - }, - { - "text": "Continue efforts to ensure the protection of all human rights defenders and reporters.", - "values": [ - "Human rights defenders" - ] - }, - { - "text": "Take the necessary steps to bring the Office of the Ombudsman into compliance with the Paris Principles", - "values": [ - "National Human Rights Institution" - ] - }, - { - "text": "Adopt measures aimed at combating racism and hate crimes, in addition to strengthening and ensuring access to fair and effective mechanisms for reparation for the victims of such violence", - "values": [ - "Racial discrimination" - ] - }, - { - "text": "Strengthen measures to avoid hate speeches of all kinds in political messages and in the media", - "values": [ - "Racial discrimination" - ] - }, - { - "text": "Continue efforts and engage in a structured interfaith dialogue, including religious minorities", - "values": [ - "Freedom of religion and belief", - "Minorities" - ] - }, - { - "text": "Take measures to safeguard freedom of expression and protect human rights defenders, and effectively investigate allegations of attacks on journalists, media personnel and human rights defenders and prosecute those responsible.", - "values": [ - "Freedom of opinion and expression", - "Freedom of the press", - "Human rights defenders" - ] - }, - { - "text": "Abolish discriminatory laws against women, maintain the Personal Statute Law, and ensure that the rights it sets forth for women are enshrined in the new Constitution ", - "values": [ - "Women's rights" - ] - }, - { - "text": "Take measures to ensure free and fair elections in the future ", - "values": [ - "Elections" - ] - }, - { - "text": "Take the necessary measures in favor of the right to work and fair conditions of work so that workers belonging to minorities, in particular women and undocumented migrant workers, do not become victims of discriminatory treatment and abuse in the work place and enjoy the full protection of the labour legislation, regardless of their migratory status", - "values": [ - "Labour", - "Migrants", - "Minorities", - "Women's rights" - ] - }, - { - "text": "Sign and ratify the third Optional Protocol to the Convention on the Rights of the Child", - "values": [ - "International instruments", - "Rights of the Child" - ] - }, - { - "text": "Align the legislative amendments to the Constitution with the Convention on the Elimination of All Forms of Discrimination against Women, reforming the laws that are discriminatory to women", - "values": [ - "International instruments", - "Women's rights" - ] - }, - { - "text": "Continue giving the broadest possible scope, flexibility and coverage to its immigration policy", - "values": [ - "Migrants" - ] - }, - { - "text": "Formally abolish the death penalty ", - "values": [ - "Death penalty" - ] - }, - { - "text": "Ensure a holistic approach to the prevention of violence against women and girls, including harmful practices", - "values": [ - "Rights of the Child", - "Women's rights" - ] - }, - { - "text": "Establish specific legal provisions in order to define and protect the rights and freedoms of refugees", - "values": [ - "Asylum-seekers - refugees" - ] - }, - { - "text": "Put in place a national policy for protection and assistance for street children and persons with albinism", - "values": [ - "Minorities", - "Rights of the Child" - ] - }, - { - "text": "Allow the visit of the Special Rapporteur on torture and other cruel, inhuman or degrading treatment or punishment, whose request had been pending for 18 years, in line with India's standing invitation issued in 2011 to all Special Procedures of the HRC ", - "values": [ - "Special procedures", - "Torture and other CID treatment" - ] - }, - { - "text": "The Executive and Judicial authorities in Uruguay should continue to cooperate to facilitate investigations into serious violations of human rights, including cases of involuntary disappearances that occurred during the era of Operation Condor ", - "values": [ - "Justice" - ] - }, - { - "text": "Consider how to deal with minor delinquency in order to provide sentences suited to the age of offenders, to educate them and lead to their social reintegration.", - "values": [ - "Justice", - "Rights of the Child" - ] - }, - { - "text": "Provide all unaccompanied children with appropriate legal guardians, as required by Bulgarian law, to ensure their basic needs are met and their best interests protected", - "values": [ - "Rights of the Child" - ] - }, - { - "text": "Consider ratifying those main international instruments to which it is not party, particularly the Convention against Torture and Other Cruel, Inhuman or Degrading Treatment or Punishment and its Optional Protocol, the International Convention on the Protection of the Rights of All Migrant Workers and Members of Their Families, the Optional Protocols to the International Covenant on Civil and Political Rights and the International Covenant on Economic, Social and Cultural Rights and to the Convention on the Elimination of All Forms of Discrimination against Women ", - "values": [ - "International instruments" - ] - }, - { - "text": "Combat gender inequality and discriminatory practices in the areas of work, the family, social roles and personal integrity, by amending vague or non-existing legislation and rules addressing pervasive stereotypes", - "values": [ - "Women's rights" - ] - }, - { - "text": "Continue its efforts to combat trafficking in human beings and prosecute traffickers ", - "values": [ - "Trafficking" - ] - }, - { - "text": "Ensure that services for persons with disabilities support to the greatest extent possible their independence and that more community-based living choices are created for them in compliance with the Convention on the Rights of Persons with Disabilities", - "values": [ - "Disabilities", - "International instruments" - ] - }, - { - "text": "Step up its efforts to further reduce poverty, particularly in rural areas, and to improve the well-being of the people ", - "values": [ - "Poverty" - ] - }, - { - "text": "Ensure that all provisions of the International Covenant on Economic, Social and Cultural Rights are given full effect in its domestic legal order, and in that regard ensure the justiciability of those rights", - "values": [ - "ESC rights - general", - "International instruments" - ] - }, - { - "text": "Continue with major coordinated efforts of the State, civil society and other relevant actors to fulfil the Plurinational Plan for Children, Childhood and Adolescence, implementation expected from 2014 to 2025, while considering the importance deserved by the empowerment of beneficiaries, and the sensitization of society for a proper inclusion", - "values": [ - "Civil society", - "Rights of the Child" - ] - }, - { - "text": "Facilitate a visit to Fiji by the Special Rapporteur on the independence of judges and lawyers", - "values": [ - "Justice", - "Special procedures" - ] - }, - { - "text": "Continue to implement the National Basic Education Development Strategy, especially in the areas of enrolment and improvement of quality of education ", - "values": [ - "Right to education" - ] - }, - { - "text": "Endeavour to implement the recommendations by CEDAW to eliminate all forms of stereotypical attitudes against Women", - "values": [ - "Treaty bodies", - "Women's rights" - ] - }, - { - "text": "Become party to the Convention against Torture and Other Cruel, Inhuman or Degrading Treatment or Punishment as well as its Optional Protocol ", - "values": [ - "Detention", - "International instruments", - "Torture and other CID treatment" - ] - }, - { - "text": "Continue to fully cooperate with the Independent Expert on the situation of human rights in\nSudan", - "values": [ - "Special procedures" - ] - }, - { - "text": "Consider ratifying those international human rights instruments to which it is not yet a party", - "values": [ - "International instruments" - ] - }, - { - "text": "Strengthen protection mechanisms for women victims of violence, from the first moment of the complaint", - "values": [ - "Justice", - "Women's rights" - ] - }, - { - "text": "Continue to implement the HIV/AIDS prevention, care and treatment programmes to further reduce the prevalence", - "values": [ - "HIV - Aids" - ] - }, - { - "text": "Continue with its efforts to cooperate fully with special procedures mandate-holders that have requested access to the country to observe the situation of human rights and implement their recommendations ", - "values": [ - "Special procedures" - ] - }, - { - "text": "Adopt measures to end threats against and harassment of human rights defenders, journalists and judges, in accordance with the 1998 General Assembly declaration on human rights defenders, such as the establishment of a mechanism to effectively implement the precautionary measures requested by the Inter-American Commission on Human Rights", - "values": [ - "Freedom of the press", - "Human rights defenders", - "Justice" - ] - }, - { - "text": "Ensure a participatory and inclusive process with civil society in the implementation of the universal periodic review recommendations, including organizations representing minorities", - "values": [ - "Civil society", - "Minorities", - "UPR process" - ] - }, - { - "text": "Repeal all provisions of domestic law that criminalise same sex relations between consenting adults including the Sexual Offences Act", - "values": [ - "Sexual Orientation and Gender Identity" - ] - }, - { - "text": "Bolster capacity to oversee working and living conditions of migrant workers by employing more inspectors to oversee implementation of labour laws.", - "values": [ - "Labour", - "Migrants" - ] - }, - { - "text": "Enact legislation to explicitly prohibit corporal punishment of children", - "values": [ - "Rights of the Child" - ] - }, - { - "text": "Continue conducting training and dissemination programmes on obligations and commitments on human rights for government officials and stakeholders at the national and local levels", - "values": [ - "Human rights education and training" - ] - }, - { - "text": "Ensure the respect of human rights by law enforcement bodies and strengthen efforts to guarantee the impartiality of investigations and prosecution of police officers involved in acts of violence ", - "values": [ - "Human rights violations by state agents", - "Justice" - ] - }, - { - "text": "Set up a national programme to fight violence against women, especially domestic violence", - "values": [ - "Women's rights" - ] - }, - { - "text": "Continue to apply programmes and measures to guarantee the enjoyment of the right to education and the right to health ", - "values": [ - "Right to education", - "Right to health" - ] - }, - { - "text": "Repeal the Interventionist Decree against the Bolivarian Republic of Venezuela and unilateral coercive measures imposed on sovereign countries", - "values": [ - "Other" - ] - }, - { - "text": "Abolish all legal provisions limiting the freedom of expression and freedom of the press, and take all necessary measures to facilitate the work of human rights defenders, journalists and civil society", - "values": [ - "Civil society", - "Freedom of opinion and expression", - "Freedom of the press", - "Human rights defenders" - ] - }, - { - "text": "Combat discrimination on account of nationality, ethnic or religious affiliation, and sexual orientation or gender identity", - "values": [ - "Freedom of religion and belief", - "Minorities", - "Racial discrimination", - "Sexual Orientation and Gender Identity" - ] - }, - { - "text": "Consider formulating a strategy against trafficking in persons", - "values": [ - "Trafficking" - ] - }, - { - "text": "Enhance cooperation with the Human Rights Council and continue to fully engage in the international human rights mechanisms", - "values": [ - "Special procedures", - "Technical assistance and cooperation", - "Treaty bodies", - "UPR process" - ] - }, - { - "text": "Increase efforts to investigate and criminally prosecute forced labour offenses and sentence convicted offenders to adequate terms of imprisonment", - "values": [ - "Labour" - ] - }, - { - "text": "Continue its efforts in the field of health, despite constraints, with the assistance and cooperation of the international community", - "values": [ - "Right to health", - "Technical assistance and cooperation" - ] - }, - { - "text": "Take necessary measures to ratify the International Covenant on Economic, Social and Cultural Rights and the Optional Protocol to the Convention on the Rights of the Child on a communications procedure", - "values": [ - "ESC rights - general", - "International instruments", - "Rights of the Child" - ] - }, - { - "text": "Ensure the necessary legislation is passed to ensure the Registered Partnership Act comes into force", - "values": [ - "Sexual Orientation and Gender Identity" - ] - }, - { - "text": "Continue its efforts to eradicate poverty", - "values": [ - "Poverty" - ] - }, - { - "text": "Ratify the Protocol to the African Charter on Human and Peoples\u2019 Rights on the Rights of Women in Africa", - "values": [ - "International instruments", - "Women's rights" - ] - }, - { - "text": "Allow for a free and unimpeded access of humanitarian organisations, medical teams and ambulances", - "values": [ - "Other" - ] - }, - { - "text": "Adopt and duly implement measures to eradicate female genital mutilation, including public awareness-raising campaigns against this phenomenon ", - "values": [ - "Human rights education and training", - "Rights of the Child", - "Torture and other CID treatment", - "Women's rights" - ] - }, - { - "text": "Guarantee and protect freedom of religion or conscience for all its citizens ", - "values": [ - "Freedom of religion and belief" - ] - }, - { - "text": "Take all necessary steps to ratify the Rome Statute of the International Criminal Court ", - "values": [ - "International instruments", - "Justice" - ] - }, - { - "text": "Take further measures to implement the 2010 recommendations by the Committee on the Rights of the Child, especially related to the domestication of the CRC, the right of the child to education, nutrition and health, and protecting girls from early marriage", - "values": [ - "International instruments", - "Right to education", - "Right to health", - "Rights of the Child", - "Treaty bodies" - ] - }, - { - "text": "Continue the positive experience of organizing human rights capacity-building programmes for law enforcement agencies", - "values": [ - "Human rights education and training" - ] - }, - { - "text": "Consider seeking technical assistance from the international community for the ratification of international treaties and conventions and the subsequent national implementation of obligations and commitments resulting therefrom, which include the creation of national capacity and human rights training ", - "values": [ - "Human rights education and training", - "International instruments", - "Technical assistance and cooperation" - ] - }, - { - "text": "Enforce the provisions of the Criminal Code by prosecuting domestic and sexual violence against women and girls and punishing the perpetrators ", - "values": [ - "Rights of the Child", - "Women's rights" - ] - }, - { - "text": "Investigate cases of excessive use of force during arrest, detention and questioning of suspects ", - "values": [ - "Detention", - "Human rights violations by state agents" - ] - }, - { - "text": "Promote human rights education and training at all levels, including for Government officials, in order to raise awareness about human rights for all ", - "values": [ - "Human rights education and training" - ] - }, - { - "text": "Take the necessary measures to avoid detention of asylum-seekers and to avoid situations which may equate the condition of immigrants to that of felons ", - "values": [ - "Asylum-seekers - refugees", - "Migrants" - ] - }, - { - "text": "Enact specific laws to prohibit and punish all forms of trafficking in persons, to increase the capacity of law enforcement officials to identify and protect victims, and to systematically collect data on trafficking offenses and prosecution efforts", - "values": [ - "Trafficking" - ] - }, - { - "text": "With the world financial crisis and the paucity of international cooperation it receives as a middle-income country, Costa Rica faces serious challenges in ensuring the best possible protection and promotion of human rights. Nevertheless, it has maintained its commitment to spare no effort in developing plans and activities to improve the welfare of its inhabitants.", - "values": [ - "General" - ] - }, - { - "text": "Adopt the revised Law against Domestic Violence, enhance awareness -raising campaigns about domestic violence, and expand services and protection for victims", - "values": [ - "Rights of the Child", - "Women's rights" - ] - }, - { - "text": "Continue to implement the "Bogeumjari Housing" project which ensures solid and affordable housing to low income families by 2018", - "values": [ - "Right to housing" - ] - }, - { - "text": "Give emphasis on allocating adequate National Funding for the response of the HIV/AIDS problems to implement all required actions in the country", - "values": [ - "HIV - Aids" - ] - }, - { - "text": "Become a party to the outstanding core international human rights treaties ", - "values": [ - "International instruments" - ] - }, - { - "text": "Protect Mayan customary property rights in accordance with Mayan customary laws and land tenure practices in consultation with affected Mayan people of the whole Toledo district.", - "values": [ - "Indigenous peoples", - "Right to land" - ] - }, - { - "text": "Continue introducing measures needed to close the gender pay gap", - "values": [ - "Women's rights" - ] - }, - { - "text": "Take concrete measures to address the absence of adequate infrastructure for the reception, registration and housing of refugees and asylum seekers", - "values": [ - "Asylum-seekers - refugees" - ] - }, - { - "text": "Work towards the economic empowerment of women and their enhanced presence in decision-making positions", - "values": [ - "Women's rights" - ] - }, - { - "text": "Ratify the Optional Protocol to the Convention against Torture and make this a priority line of action of the Government", - "values": [ - "Detention", - "International instruments", - "Torture and other CID treatment" - ] - }, - { - "text": "Ratify the International Convention on the Protection of the Rights of All Migrant Workers and Members of Their Families and the Convention on the Rights of Persons with Disabilities ", - "values": [ - "Disabilities", - "International instruments", - "Labour", - "Migrants" - ] - }, - { - "text": "Stop all settlement activities.", - "values": [ - "Right to land" - ] - }, - { - "text": "Ensure immediate access to a freely chosen counsel within the first hour of the procedure, including during the first interrogations and until the end of the judicial process, as well as access to all the official documents of the procedure", - "values": [ - "Justice" - ] - }, - { - "text": "Develop the legislative framework aimed at combating corruption", - "values": [ - "Corruption" - ] - }, - { - "text": "Take on board the continued concerns of the Human Rights Treaty Bodies in regard to femicide and other forms of violence against women, and take further measures to eradicate such violence, including those to prevent incidents from arising, as well as investigation and punishment of offenders", - "values": [ - "Treaty bodies", - "Women's rights" - ] - }, - { - "text": "Combat effectively racial discrimination, xenophobic words and deeds, and strike down on hate crimes through legislation, law enforcement and administrative measures", - "values": [ - "Racial discrimination" - ] - }, - { - "text": "Continue to consider the potential for its accession to the International Covenant on Civil and Political Rights and the International Covenant on Economic, Social and Cultural Rights, which are the most fundamental human rights conventions ", - "values": [ - "CP rights - general", - "ESC rights - general", - "International instruments" - ] - }, - { - "text": "Expand coverage and access to services that prevent the transmission of HIV from mother to child.", - "values": [ - "HIV - Aids" - ] - }, - { - "text": "Ensure the full implementation of the recently adopted regulations referring to the Criminal Code ", - "values": [ - "Justice" - ] - }, - { - "text": "Accede to CAT ", - "values": [ - "International instruments", - "Torture and other CID treatment" - ] - }, - { - "text": "Continue to enhance its partnership with specialized agencies of the United Nations in order to implement human rights and boost its cooperationwith special procedures mandate holders of the Human Rights Council", - "values": [ - "Special procedures" - ] - }, - { - "text": "Consider making racist motivation a specific aggravating circumstance in sentencing", - "values": [ - "Justice", - "Racial discrimination" - ] - }, - { - "text": "Initiate a reform of police custody by considering to reduce its maximum duration to 48 hours, while allowing the presence of a lawyer and making the legal grounds and records of arrest available to the families and the defence ", - "values": [ - "Detention" - ] - }, - { - "text": "The Government of Kiribati commits to continuing and completing work on the implementation of the key priorities under the Kiribati Development Plan. Kiribati commits to working with partners nationally, regionally and internationally to implement its human rights obligations.", - "values": [ - "General" - ] - }, - { - "text": "Cooperate with the United Nations and international organizations to confront challenges and obstacles in the area of human rights, and to share good practices with other countries in that regard", - "values": [ - "Technical assistance and cooperation" - ] - }, - { - "text": "Step up its efforts to ensure adequate access to quality basic health and education services, particularly for those living in isolated rural areas and for vulnerable groups.", - "values": [ - "Right to education", - "Right to health" - ] - }, - { - "text": "Continue its efforts to fight against trafficking in persons and protect the rights of migrants", - "values": [ - "Migrants", - "Trafficking" - ] - }, - { - "text": "Focus on education as the most important part of a long term sustainable solution for the Roma population and have patience and perseverance with this work. Roma children must be given the same opportunities and not put in schools aimed at mentally challenged students ", - "values": [ - "Minorities", - "Right to education", - "Rights of the Child" - ] - }, - { - "text": "Strengthen its commitment to ensuring that the fundamental rights of minorities are better respected ", - "values": [ - "Minorities" - ] - }, - { - "text": "Ratify the International Convention on the Protection of the Rights of All Migrant Workers and Members of Their Families, and, by taking that measure, clearly demonstrate its firm and decisive commitment to protecting migrant groups and to finding solutions to problems that may arise, by fully respecting the fundamental freedoms of those affected ", - "values": [ - "International instruments", - "Labour", - "Migrants" - ] - }, - { - "text": "Continue to take steps, in particular within the national Action Plan against domestic violence, and ensure that victims have effective access to complaint mechanisms ", - "values": [ - "Rights of the Child", - "Women's rights" - ] - }, - { - "text": "Submit its delayed reports to the Committee against Torture.", - "values": [ - "Torture and other CID treatment", - "Treaty bodies" - ] - }, - { - "text": "Accede to and ratify OPCRC-AC ", - "values": [ - "International instruments", - "Rights of the Child" - ] - }, - { - "text": "Ratify or access, as appropriate, the Optional Protocol to the International Covenant of Social, Economic and Cultural Rights", - "values": [ - "ESC rights - general", - "International instruments" - ] - }, - { - "text": "Take further steps to ensure the right to education for all, especially through increasing the literacy rate", - "values": [ - "Right to education" - ] - }, - { - "text": "Further assist the efforts carried out by the new Non-Discrimination Ombudsman in providing legal protection and remedies against all forms of discrimination", - "values": [ - "National Human Rights Institution" - ] - }, - { - "text": "Continue measures to train the national police forces in order to enable them to fulfil their tasks in an adequate and proportionate manner, in accordance with the principles of the rule of law", - "values": [ - "Human rights education and training" - ] - }, - { - "text": "Intensify its efforts to alleviate the remaining obstacles to access to health care for pregnant women and mothers in order to decrease significantly the rate of maternal mortality", - "values": [ - "Right to health", - "Women's rights" - ] - }, - { - "text": "Take steps towards full abolition of capital punishment, with immediate effect in particular towards juvenile offenders", - "values": [ - "Death penalty", - "Rights of the Child" - ] - }, - { - "text": "Strengthen programmes to fight against poverty", - "values": [ - "Poverty" - ] - }, - { - "text": "Continue progress in harmonizing its legislation on child labour with international standards", - "values": [ - "Labour", - "Rights of the Child" - ] - }, - { - "text": "Adopt specific legislation criminalizing acts of domestic and sexual violence, including marital rape, investigate the incidents and ensure adequate remedies for victims", - "values": [ - "Rights of the Child", - "Women's rights" - ] - }, - { - "text": "Ratify the Kampala amendments to the Rome Statute", - "values": [ - "International instruments", - "Justice" - ] - }, - { - "text": "Continue to refuse to apply any standards or principles that are outside the international principles and standards agreed upon in the field of human rights, including any attempt to impose any foreign values and customs on the Emirati people.", - "values": [ - "General" - ] - }, - { - "text": "Take all necessary steps to ensure that its national human rights institution is fully effective and independent in accordance with the Paris Principles ", - "values": [ - "National Human Rights Institution" - ] - }, - { - "text": "Establish the National Observatory of violence against women", - "values": [ - "Women's rights" - ] - }, - { - "text": "Repeal article 278 of the Criminal Code and prohibit corporal punishment in all settings including the home, and improve the accessibility and resourcing of education to all communities, especially those located in remote areas", - "values": [ - "Right to education", - "Rights of the Child", - "Torture and other CID treatment" - ] - }, - { - "text": "Consider seeking assistance to build adequate capacity to develop and retain appropriate human resources to eradicate poverty ", - "values": [ - "Poverty", - "Technical assistance and cooperation" - ] - }, - { - "text": "Carry out efforts to ratify the Optional Protocols to the Convention on the Rights of the Child and the Convention on the Elimination of All Forms of Discrimination against Women", - "values": [ - "International humanitarian law", - "International instruments", - "Labour", - "Rights of the Child", - "Trafficking", - "Women's rights" - ] - }, - { - "text": "Establish a moratorium on death penalty as a first step towards its total abolition", - "values": [ - "Death penalty" - ] - }, - { - "text": "Fully cooperate with the Office of the Prosecutor of the International Criminal Court in line with the obligations of Kenya under the Rome Statute", - "values": [ - "International instruments", - "Justice" - ] - }, - { - "text": "Foster national strategies to combat child labour", - "values": [ - "Labour", - "Rights of the Child" - ] - }, - { - "text": "Strengthen democracy, good governance, the rule of law and human rights through bilateral and multilateral cooperation, particularly through the United Nations", - "values": [ - "Justice" - ] - }, - { - "text": "Adopt effective measures to overcome the inequality affecting women in accordance with the provisions of the CEDAW and recommendations of UNDP-UNIFEM ", - "values": [ - "International instruments", - "Women's rights" - ] - }, - { - "text": "Consider ratifying the 1951 Convention relating to the Status of Refugees and its 1967 Protocol, and allowing refugees and other migrants to seek employment while they await resettlement or other durable solutions", - "values": [ - "Asylum-seekers - refugees", - "International instruments", - "Migrants" - ] - }, - { - "text": "Continue to positively engage the United Nations human rights mechanisms and instruments", - "values": [ - "Special procedures", - "Treaty bodies", - "UPR process" - ] - }, - { - "text": "Establish an immediate moratorium on the death penalty, with a view to its final abolition in the future", - "values": [ - "Death penalty" - ] - }, - { - "text": "Establish a national consultative body to provide a platform for all national stakeholders to be consulted on and involved in the implementation of the democratic reform process ", - "values": [ - "Other" - ] - }, - { - "text": "Strengthen efforts to eliminate child labour, in particular by addressing the root causes of child economic exploitation through poverty eradication and access to education ", - "values": [ - "Labour", - "Rights of the Child" - ] - }, - { - "text": "Enhance accessibility of the United Nations human rights system for all members of Danish society by ensuring the translation into Danish of its UPR outcome, relevant treaty body concluding observations and special procedure country reports ", - "values": [ - "Special procedures", - "Treaty bodies", - "UPR process" - ] - }, - { - "text": "Step up efforts on monitoring and evaluation of the activities related to women's empowerment and child protection through development of an appropriate monitoring system ", - "values": [ - "Rights of the Child", - "Women's rights" - ] - }, - { - "text": "Review all laws on public assemblies including the Law No. 10 of 1914 on gatherings and the Law No. 107 of 2013 on public meetings to align them with Egypt's international human rights obligations", - "values": [ - "Freedom of association and peaceful assembly", - "International instruments" - ] - }, - { - "text": "Ratify the Optional Protocols to the Convention on the Rights of the Child on the involvement of children in armed conflict and on the sale of children, child prostitution and child pornography ", - "values": [ - "International instruments", - "Rights of the Child", - "Trafficking" - ] - }, - { - "text": "Continue with its work in the area of women's rights adopting a gender perspective in all public and private scenarios and encouraging the empowerment of women with a view to challenging the current inequality in the society", - "values": [ - "Women's rights" - ] - }, - { - "text": "Prioritize and fund information campaigns for non-discrimination and universal access for lesbian, gay, bisexual, transgender and intersex groups in Ghana", - "values": [ - "Sexual Orientation and Gender Identity" - ] - }, - { - "text": "Continue to combat poverty with the full support and cooperation of the international community ", - "values": [ - "Poverty", - "Technical assistance and cooperation" - ] - }, - { - "text": "Continue strengthening the legal and administrative measures to fight against various forms of discrimination and xenophobia", - "values": [ - "Racial discrimination" - ] - }, - { - "text": "Continue to promote the work of the High Council for Human Rights to achieve the establishment of an NHRI, as well as the timely implementation of a national plan for human rights", - "values": [ - "National Human Rights Institution" - ] - }, - { - "text": "Integrate the CAT in the domestic legislation ", - "values": [ - "International instruments", - "Torture and other CID treatment" - ] - }, - { - "text": "Eliminate all forms of corporal punishment with a view to abolishing them ", - "values": [ - "Torture and other CID treatment" - ] - }, - { - "text": "Take actions to combat discrimination and violence against women, calling for measures to promote gender equality in the public, economic and private spheres", - "values": [ - "Women's rights" - ] - }, - { - "text": "Take measures to ensure non-discrimination against women within all sectors of society, particularly with regard to access to education and employment, and to amend and align all existing laws in this regard", - "values": [ - "Women's rights" - ] - }, - { - "text": "Ratify the International Convention on the Elimination of All Forms of Racial Discrimination, the International Covenant on Economic, Social and Cultural Rights and its Optional Protocol and the three Optional Protocols to the Convention on the Rights of the Child", - "values": [ - "ESC rights - general", - "International instruments", - "Racial discrimination", - "Rights of the Child" - ] - }, - { - "text": "Continue to take measures to reduce maternal and child mortality to achieve the objectives of the sustainable development goals 2030", - "values": [ - "Development", - "Right to health", - "Rights of the Child", - "Women's rights" - ] - }, - { - "text": "Establish an interreligious council to facilitate interreligious dialogue and harmony", - "values": [ - "Freedom of religion and belief" - ] - }, - { - "text": "Take measures to criminalize domestic violence in accordance with the recommendations of the Committee on Economic, Social and Cultural Rights. to continue to fund and set up victim-centric services for women and children dealing with domestic violence.", - "values": [ - "Rights of the Child", - "Treaty bodies", - "Women's rights" - ] - }, - { - "text": "Alleviate the overcrowding of detention centres and to review the conditions of detention centres so that they are in conformity with minimum international standards.", - "values": [ - "Detention" - ] - }, - { - "text": "Institute appropriate reforms to ensure the full independence of the judiciary", - "values": [ - "Justice" - ] - }, - { - "text": "Publicly condemn all forms of violence and discrimination based on sexual orientation, and investigate and prosecute all reported attacks and threats against individuals based on their sexual orientation ", - "values": [ - "Sexual Orientation and Gender Identity" - ] - }, - { - "text": "Continue to carry out policies aimed at improving its judicial system, reforming the law enforcement bodies and reducing the level of crime and corruption ", - "values": [ - "Corruption", - "Justice" - ] - }, - { - "text": "Accelerate the implementation of the advanced regionalization, as a means to further promote the participation of citizens, especially women and youths, from the 12 regions of the Kingdom in the political and economic governance of the country", - "values": [ - "Women's rights" - ] - }, - { - "text": "Consider acceding to the International Convention on the Protection of the Rights of All Migrant Workers and Members of Their Families (ICRMW)", - "values": [ - "International instruments", - "Labour", - "Migrants" - ] - }, - { - "text": "Set up State and District Commissioners for the Protection of Child Rights in all States and Districts ", - "values": [ - "Rights of the Child" - ] - }, - { - "text": "Continue to finalize the establishment of the Constitutional Court and expedite the overhaul of the laws that are inconsistent with the Constitution and international human rights standards so as to expand on the environment that is conducive for the further implementation of recommendations made in the context of the universal periodic review", - "values": [ - "International instruments", - "UPR process" - ] - }, - { - "text": "Develop a lasting protection mechanism for small children against food insecurity, through strategies aimed at facilitating access to food through fair agricultural policies", - "values": [ - "Right to food", - "Rights of the Child" - ] - }, - { - "text": "Implement the recommendations made by the members of the working group on enforced or involuntary disappearances following their visit in 2007", - "values": [ - "Enforced disappearances", - "Special procedures" - ] - }, - { - "text": "Take further measures to ensure that any efforts to counter terrorism are carried out in full compliance with its human rights obligations, including respect for due process and freedom of expression and assembly ", - "values": [ - "Counter-terrorism", - "Freedom of association and peaceful assembly", - "Freedom of opinion and expression" - ] - }, - { - "text": "Strengthen the legal mechanisms for combating terrorism and extremism", - "values": [ - "Public security" - ] - }, - { - "text": "Continue to strengthen its successful national policies, to promote equality in the areas of education, health and employment of women and girls", - "values": [ - "Development", - "Right to education", - "Right to health", - "Rights of the Child", - "Women's rights" - ] - }, - { - "text": "Make operational a standing committee to receive complaints and petitions as well as redress cases of human rights violations, including by appointing independent members of the standing committee created to address human rights violation and providing adequate resources, to hold those violators accountable ", - "values": [ - "Justice" - ] - }, - { - "text": "Liechtenstein will continue to pay particular attention to the promotion of women's participation at all levels and in all areas of public life, including through special measures", - "values": [ - "Women's rights" - ] - }, - { - "text": "Extend the scope of health insurance coverage for poor families ", - "values": [ - "Poverty", - "Right to health" - ] - }, - { - "text": "Continue to expand the opportunities for women's political and public participation, employment and education", - "values": [ - "Women's rights" - ] - }, - { - "text": "Call for enhanced cooperation and support from the international community and relevant United Nations agencies to strengthen the capacity of existing oversight mechanisms that serve to promote and protect human rights in Bhutan, in keeping with domestic requirements ", - "values": [ - "Technical assistance and cooperation" - ] - }, - { - "text": "Consider an early ratification of the newest international HR instrument -the third OP to CRC on a communication procedure ", - "values": [ - "International instruments", - "Rights of the Child" - ] - }, - { - "text": "Implement the full abolition of the death penalty ", - "values": [ - "Death penalty" - ] - }, - { - "text": "Consider the establishment of a permanent governmental mechanism to implement the universal periodic review recommendations", - "values": [ - "UPR process" - ] - }, - { - "text": "Strengthen its child protection system by explicitly prohibiting all forms of corporal punishment of children in all settings", - "values": [ - "Rights of the Child", - "Torture and other CID treatment" - ] - }, - { - "text": "Incorporate in its legislation, at all levels, including at the level of the Constitution, provisions banning discrimination on the grounds of sex and gender", - "values": [ - "Women's rights" - ] - }, - { - "text": "Ensure accountability for all acts of torture that occur within the framework of the fight against terrorism", - "values": [ - "Counter-terrorism", - "Torture and other CID treatment" - ] - }, - { - "text": "Pursue efforts aiming towards putting an end to social inequality ", - "values": [ - "Development" - ] - }, - { - "text": "Ensure the respect for freedom of religion or belief for all its citizens", - "values": [ - "Freedom of religion and belief" - ] - }, - { - "text": "Consider ratifying the Rome Statute on the International Criminal Court", - "values": [ - "International instruments", - "Justice" - ] - }, - { - "text": "Coordinate efforts in a manner that promotes the effective enjoyment of economic, social and cultural rights, and tackle obstacles in that regard", - "values": [ - "ESC rights - general" - ] - }, - { - "text": "Adopt specific legislation and measures under the Human Rights National Plan to help prevent, prosecute and punish domestic violence against women and also to end discrimination against women within the society", - "values": [ - "Rights of the Child", - "Women's rights" - ] - }, - { - "text": "Ensure greater policy and institutional control over the State Security Corps and Forces in order to avoid cases of excessive use of force and abuse against detainees", - "values": [ - "Detention", - "Human rights violations by state agents" - ] - }, - { - "text": "Take concrete steps to encourage broader participation of women in decision-making processes", - "values": [ - "Women's rights" - ] - }, - { - "text": "Abolish the death penalty or establish a moratorium on its use", - "values": [ - "Death penalty" - ] - }, - { - "text": "Continue the implementation of the laws on the protection of women", - "values": [ - "Women's rights" - ] - }, - { - "text": "Intensify efforts and strengthen policies and strategies to address the sale and trafficking of persons, especially women and children ", - "values": [ - "Rights of the Child", - "Trafficking", - "Women's rights" - ] - }, - { - "text": "Continue its efforts to promote domestic peace and reconciliation processes in order to foster an enabling environment for human rights development", - "values": [ - "Justice" - ] - }, - { - "text": "Continue intensifying its efforts in combating human trafficking", - "values": [ - "Trafficking" - ] - }, - { - "text": "Take immediate steps to allocate proper budgetary resources to ensure protection of the rights to food, health, water and sanitation", - "values": [ - "Right to food", - "Right to health", - "Right to water and sanitation" - ] - }, - { - "text": "Continue its efforts to strengthen the rule of law and good governance", - "values": [ - "Justice" - ] - }, - { - "text": "Ratify the CED and investigate all allegations of forced disappearances ", - "values": [ - "Enforced disappearances", - "International instruments" - ] - }, - { - "text": "Take the necessary measures to ensure universal birth registration, regardless of the immigration status of the parents", - "values": [ - "Rights of the Child", - "Statelessness and the right to nationality" - ] - }, - { - "text": "Put measures in place to better protect religious freedom, including through bringing the older Penal Code, which prohibits conversion from Islam, in line with the Constitution, and enabling people of all religions to practice religion openly without risking discrimination ", - "values": [ - "Freedom of religion and belief" - ] - }, - { - "text": "Bahrain is currently examining the idea of creating an inter-ministerial human rights mechanism to guarantee the implementation of the recommendations made by the international treaty bodies to which Bahrain reports.", - "values": [ - "Treaty bodies" - ] - }, - { - "text": "Strengthen effective legal and administrative measures to address all forms of violence against children and, in particular, discrimination against children belonging to minorities, especially Roma and foreign children ", - "values": [ - "Minorities", - "Rights of the Child" - ] - }, - { - "text": "Set up the independent body in order to investigate alleged abuses of power by law enforcement officials ", - "values": [ - "Human rights violations by state agents", - "Justice" - ] - }, - { - "text": "Abolish the death penalty by law", - "values": [ - "Death penalty" - ] - }, - { - "text": "Continue reinforcing the plans and programs for the eradication of corporal punishment of children in the schools as well as in the home", - "values": [ - "Rights of the Child", - "Torture and other CID treatment" - ] - }, - { - "text": "Review its position on the recognition of the rights of minorities and that it begin collecting data on the socio-economic status of the population, disaggregated by ethnic identity, confession and gender, in order to identify social problems affecting ethnic and religious minorities.", - "values": [ - "Minorities" - ] - }, - { - "text": "Abolish the death penalty, through the accession to the Second Optional Protocol to the International Covenant on Civil and Political Rights, aiming at the abolition of the death penalty and maintain the de facto moratorium on executions until ratification", - "values": [ - "Death penalty", - "International instruments" - ] - }, - { - "text": "Conduct a comprehensive study to assess the scope and nature of sexual exploitation of children, in order to able to develop necessary measures to protect children from sexual exploitation", - "values": [ - "Rights of the Child" - ] - }, - { - "text": "Ratify the Domestic Workers Convention, 2011 (No. 189) of the International Labour Organization", - "values": [ - "International instruments", - "Labour" - ] - }, - { - "text": "Continue to ensure respected principles of social equality and guarantee access to justice for vulnerable groups", - "values": [ - "ESC rights - general", - "Justice" - ] - }, - { - "text": "Reduce the list of crimes punishable by death penalty, in particular economic crimes and those linked to drugs, and examine the possibility of introducing a moratorium ", - "values": [ - "Death penalty" - ] - }, - { - "text": "Step up efforts and legislation to combat human trafficking", - "values": [ - "Trafficking" - ] - }, - { - "text": "Re-examine laws on strikes to allow greater flexibility ", - "values": [ - "Labour" - ] - }, - { - "text": "Step up efforts to combat and eliminate child, early and forced marriages", - "values": [ - "Rights of the Child", - "Women's rights" - ] - }, - { - "text": "Consider implementing the existing legislation on non-discrimination with respect to all children within its jurisdiction ", - "values": [ - "Rights of the Child" - ] - }, - { - "text": "Implement successfully the national human rights policy and continue the process of incorporation of international human rights instruments into the national legislation ", - "values": [ - "International instruments" - ] - }, - { - "text": "Request technical assistance and technical cooperation to the United Nations in order to, among other objectives, develop a national action plan to implement the Convention on the Rights of the Child, establish an independent national human rights institution, carry out public policies that prevent abuse and neglect of children, and address the problems faced by children with disabilities", - "values": [ - "Disabilities", - "International instruments", - "National Human Rights Institution", - "Rights of the Child", - "Technical assistance and cooperation" - ] - }, - { - "text": "Strengthen and intensify its actions to prevent and by reduce violence against children", - "values": [ - "Rights of the Child" - ] - }, - { - "text": "Intensify its efforts to address the issue of impunity.", - "values": [ - "Impunity" - ] - }, - { - "text": "Continue current efforts to increase the representation of women in decision-making positions, including in Parliament and in State executive organs", - "values": [ - "Women's rights" - ] - }, - { - "text": "Take steps to protect human rights defenders from harassment and intimidation", - "values": [ - "Human rights defenders" - ] - }, - { - "text": "Continue its endeavours to ratify the ICCPR in the very near future", - "values": [ - "CP rights - general", - "International instruments" - ] - }, - { - "text": "Further its endeavours with regard to the strengthening of the normative and institutional framework for the protection and promotion of human rights ", - "values": [ - "General" - ] - }, - { - "text": "Increase efforts to address the serious problem of the situation of internally displaced persons, which causes much suffering to the individuals, families and communities affected.", - "values": [ - "Internally displaced persons" - ] - }, - { - "text": "Rapidly implement the recently adopted criminal procedure code ", - "values": [ - "Justice" - ] - }, - { - "text": "Envisage actions to abolish capital punishment", - "values": [ - "Death penalty" - ] - }, - { - "text": "Criminalise domestic violence and adequately investigate and sanctioning those responsible for the death and disappearance of indigenous women", - "values": [ - "Indigenous peoples", - "Women's rights" - ] - }, - { - "text": "Promote a full registration of children so as to confront the situation of food insecurity and malnutrition", - "values": [ - "Right to food", - "Rights of the Child", - "Statelessness and the right to nationality" - ] - }, - { - "text": "Enact a Juvenile Justice Law compliant with international standards, to consolidate the legal framework surrounding the protection of the rights of children and to ensure the proper functioning of a juvenile justice system in the country ", - "values": [ - "Justice", - "Rights of the Child" - ] - }, - { - "text": "Withdraw its reservations to article 10, paragraph 1, of CRC ", - "values": [ - "International instruments", - "Rights of the Child" - ] - }, - { - "text": "Continue strengthening the participation of women in decision making processes", - "values": [ - "Women's rights" - ] - }, - { - "text": "Establish measures to combat discrimination and violence against women", - "values": [ - "Women's rights" - ] - }, - { - "text": "Allocate adequate budgetary resources for the effective implementation of the national action plan on eradication of violence against women and to ensure that sufficient safe shelters for women are available", - "values": [ - "Women's rights" - ] - }, - { - "text": "Ensure that all persons suspected of having committed or being accomplices of crimes against international law are brought to national courts and judged in accordance with international norms", - "values": [ - "Justice" - ] - }, - { - "text": "Take measures to ensure the protection of journalists and human rights defenders", - "values": [ - "Freedom of the press", - "Human rights defenders" - ] - }, - { - "text": "Improve promptly both the prison system itself and the treatment of all prisoners to meet international recognized standards ", - "values": [ - "Detention" - ] - }, - { - "text": "Implement measures, including through legislation, to protect all citizens from discrimination due to their religious beliefs - and prosecute those involved in the persecution of religious groups ", - "values": [ - "Freedom of religion and belief" - ] - }, - { - "text": "Review of all relevant legislation and procedures to ensure systematic incorporation of international human rights obligations and their implementation on all levels of the government", - "values": [ - "International instruments" - ] - }, - { - "text": "Continue its efforts in addressing the challenges regarding the improvement of the protection of children against abuse and neglect", - "values": [ - "Rights of the Child" - ] - }, - { - "text": "Ratify the Convention against Torture Articles 21 and 22", - "values": [ - "International instruments", - "Torture and other CID treatment" - ] - }, - { - "text": "That the international community redouble cooperation with Nicaragua and eliminate any political conditioning of aid", - "values": [ - "Development" - ] - }, - { - "text": "Prioritize the reduction of its judicial backlog ", - "values": [ - "Justice" - ] - }, - { - "text": "Take steps to increase the participation of women in politics, including through the implementation of measures on affirmative action or quotas", - "values": [ - "Women's rights" - ] - }, - { - "text": "Step up its efforts for the protection and assistance of trafficking victims, including through adequate state financing for victims' shelters ", - "values": [ - "Trafficking" - ] - }, - { - "text": "Define the scope of defamation and disinformation charges to ensure that these do not impinge on freedom of expression and give clear guidance to judicial officials so that these provisions do not result in a large number of cases where the charges are disproportionate ", - "values": [ - "Freedom of opinion and expression" - ] - }, - { - "text": "Promote regional development in indigenous areas and strengthening local economies and improve living conditions to them", - "values": [ - "Indigenous peoples" - ] - }, - { - "text": "Take further steps to consider adhering to the Convention on the Rights of Persons with Disabilities", - "values": [ - "Disabilities", - "International instruments" - ] - }, - { - "text": "Continue to work to combat violence against women", - "values": [ - "Women's rights" - ] - }, - { - "text": "Consider ratifying the International Convention on the Protection of All Persons from Enforced Disappearance", - "values": [ - "Enforced disappearances", - "International instruments" - ] - }, - { - "text": "Continue the efforts in the field of the promotion and protection of the rights of vulnerable groups of the population, particularly children, women and persons with disabilities ", - "values": [ - "Disabilities", - "Rights of the Child", - "Women's rights" - ] - }, - { - "text": "Give special attention particularly to the education of girls and women ", - "values": [ - "Right to education", - "Rights of the Child", - "Women's rights" - ] - }, - { - "text": "Urgently abolish article193-1 of the Criminal Code, which criminalizes activities by non-registered organizations and generally end the pattern of obstruction, harassment and intimidation of civil society organizations promoting and defending human rights, including trade unions, environmental groups, lesbian, gay, bisexual, transgender and intersex groups and human rights groups", - "values": [ - "Civil society", - "Freedom of association and peaceful assembly", - "Labour", - "Sexual Orientation and Gender Identity" - ] - }, - { - "text": "Apply alternative measures to the detention of asylum-seekers and irregular immigrants, including children and other vulnerable people, and establish a mechanism to examine this practice ", - "values": [ - "Asylum-seekers - refugees", - "Detention", - "Migrants", - "Rights of the Child" - ] - }, - { - "text": "Respect the right to freedom of expression by abolishing the prison sentence for press-related offences", - "values": [ - "Freedom of opinion and expression", - "Freedom of the press" - ] - }, - { - "text": "Adopt an action plan to address the situation of Dalits and eliminate discrimination against them, including by ensuring access to safe drinking water and sanitation ", - "values": [ - "Minorities", - "Racial discrimination", - "Right to health", - "Right to water and sanitation" - ] - }, - { - "text": "While acknowledging the efforts made by the Government of Indonesia, it was recommended that such efforts continue to ensure the promotion and protection of all the components of the Indonesian people.", - "values": [ - "General" - ] - }, - { - "text": "Increase the provision of legal advice to indigenous peoples with due translation services reaching especially indigenous women of the most remote communities ", - "values": [ - "Indigenous peoples", - "Women's rights" - ] - }, - { - "text": "Continue its actions to ensure effective respect of the rights of the child and to fight, in particular, against early marriages by adopting rapidly and implementing the marriage bill", - "values": [ - "Rights of the Child" - ] - }, - { - "text": "Ensure women's equal access to employment", - "values": [ - "Women's rights" - ] - }, - { - "text": "Have a regular dialogue with human rights defenders on an equal footing with them", - "values": [ - "Human rights defenders" - ] - }, - { - "text": "Make means available to give effect to the norm which raises the minimum age for military service and guarantees that minors not be subjected to any treatment that violates fundamental human rights and that they be ensured the right not to do their military service", - "values": [ - "Rights of the Child" - ] - }, - { - "text": "Continue strengthening social security to cover all segments of society ", - "values": [ - "ESC rights - general" - ] - }, - { - "text": "Take all necessary measures to ensure that all cases of societal violence are effectively investigated and perpetrators prosecuted and punished", - "values": [ - "Other" - ] - }, - { - "text": "Poland will continue to participate in the World Programme for Human Rights Education, within the first stage of which education on human rights has been introduced into the core curricula of general education at primary and middle schools. Moreover, the Ministry of National Education has launched a number of other measures to promote education on human rights and the rights of child. Training to prepare activities for the advancement of human rights and combating discrimination in local communities has been carried out under numerous projects", - "values": [ - "Human rights education and training" - ] - }, - { - "text": "Continue to strengthen the guarantee of women's rights and promote the social status of women, in accordance with the relevant international treaties ", - "values": [ - "International instruments", - "Women's rights" - ] - }, - { - "text": "Continue to take measures to enhance the respect for human rights anchored on the rule of law and good governance", - "values": [ - "Justice" - ] - }, - { - "text": "Intensify the efforts to integrate human rights education in the national curriculum", - "values": [ - "Human rights education and training" - ] - }, - { - "text": "Prohibit all forms of corporal punishment of children in any context (including in the home) ", - "values": [ - "Rights of the Child", - "Torture and other CID treatment" - ] - }, - { - "text": "Further enhance efforts to reduce infant and maternal mortality", - "values": [ - "Right to health", - "Rights of the Child", - "Women's rights" - ] - }, - { - "text": "More resources be allocated to Human Rights education in parts of the country that have for a long time been under rebel control or have endured destabilization as a results of many years of civil strife ", - "values": [ - "Human rights education and training" - ] - }, - { - "text": "Adopt the law on quotas which aims to reserve seats for women in legislative bodies of the central and state governments", - "values": [ - "Women's rights" - ] - }, - { - "text": "Strengthen legislation on the prohibition of torture and improve conditions of detention in prisons", - "values": [ - "Detention", - "Torture and other CID treatment" - ] - }, - { - "text": "Provide the necessary assistance to the victims of violence, including through adoption of rehabilitation and reintegration programmes ", - "values": [ - "Justice" - ] - }, - { - "text": "Ratify the Optional Protocol to the Covenant on Economic, Social and Cultural Rights", - "values": [ - "ESC rights - general", - "International instruments" - ] - }, - { - "text": "Regarding human trafficking and violence against women and children, take further legislative steps, where necessary, and accelerate efforts for their effective implementation ", - "values": [ - "Rights of the Child", - "Trafficking", - "Women's rights" - ] - }, - { - "text": "Address the excessive use of force by law-enforcement officers by ensuring public agents are held to account for allegations of misconduct, abuse and violence", - "values": [ - "Human rights violations by state agents" - ] - }, - { - "text": "While promoting the rights of freedom of opinion and expression, pay due attention to commiserating responsibility and respect for others.", - "values": [ - "Freedom of opinion and expression" - ] - }, - { - "text": "Continue strengthening frameworks of cooperation between law enforcement apparatuses and civil society, in order to have further meaningful dialogue to address all relevant human rights challenges in the country", - "values": [ - "Civil society" - ] - }, - { - "text": "Improve conditions of detention and imprisonment, inter alia by ensuring an adequate nutrition of detainees and by reducing overcrowding in prisons", - "values": [ - "Detention" - ] - }, - { - "text": "Develop and enhance laws to protect the freedom of belief, freedom of expression and freedom of the press", - "values": [ - "Freedom of opinion and expression", - "Freedom of religion and belief", - "Freedom of the press" - ] - }, - { - "text": "Respect fully the principle of non-refoulement and ensure effective access to asylum procedures, taking into account the objectives of UNHCR's 10-Point Plan on Mixed Migration ", - "values": [ - "Asylum-seekers - refugees" - ] - }, - { - "text": "Take concrete measures aimed at reducing the poverty rate and further increasing access to education and health care for all, particularly for vulnerable segments of the society including women and children.", - "values": [ - "Poverty", - "Right to education", - "Right to health", - "Rights of the Child", - "Women's rights" - ] - }, - { - "text": "Continue to put forward effective measures to eliminate violence against women", - "values": [ - "Women's rights" - ] - }, - { - "text": "Protect the rights of those facing the death penalty, including through strengthened application of international safeguards in the use of the death penalty ", - "values": [ - "Death penalty" - ] - }, - { - "text": "Prosecute effectively all security agents that have allegedly tortured or otherwise abused protestors ", - "values": [ - "Human rights violations by state agents", - "Torture and other CID treatment" - ] - }, - { - "text": "Take prompt measures to put an end to the current overcrowding and precarious conditions of prisoners ", - "values": [ - "Detention" - ] - }, - { - "text": "Make further efforts to properly handle the case of discrimination and violence against women, including the prosecution of alleged perpetuators", - "values": [ - "Women's rights" - ] - }, - { - "text": "Collect disaggregated data on the dissemination of hate speech against minorities ", - "values": [ - "Minorities", - "Racial discrimination" - ] - }, - { - "text": "Ratify the Optional Protocol to the Convention against Torture and Other Cruel, Inhuman or Degrading Treatment or Punishment OP-CAT ", - "values": [ - "Detention", - "International instruments", - "Torture and other CID treatment" - ] - }, - { - "text": "Educate prison populations on the HIV-AIDS virus and respect sanitary conditions of prisons.", - "values": [ - "Detention", - "HIV - Aids" - ] - }, - { - "text": "Continue to implement the necessary measures to ensure the right to education for all citizens", - "values": [ - "Right to education" - ] - }, - { - "text": "Use the three-year grant to further raise the quality of education, thereby ensuring the right to education ", - "values": [ - "Right to education" - ] - }, - { - "text": "Establish a formal moratorium on the death penalty with a view to ratifying the Second Optional Protocol to the International Covenant on Civil and Political Rights, aiming at the abolition of death penalty", - "values": [ - "Death penalty", - "International instruments" - ] - }, - { - "text": "Amend the Law on Television and Radio broadcasting as soon as possible to ensure that the licenses of international broadcasters can be renewed", - "values": [ - "Freedom of the press" - ] - }, - { - "text": "Seek the necessary technical, material and financial assistance in order to implement the recommendations it has endorsed", - "values": [ - "Technical assistance and cooperation" - ] - }, - { - "text": "Ensure access to education for girls and prevent early school dropout, including by reinforcing the Federal Government of Nigeria Gender Education Project", - "values": [ - "Right to education", - "Rights of the Child", - "Women's rights" - ] - }, - { - "text": "Intensify efforts to combat the manifestation of servitude", - "values": [ - "Labour" - ] - }, - { - "text": "Continue efforts in order to achieve the MDGs ", - "values": [ - "Development" - ] - }, - { - "text": "Establish a moratorium on all the executions and, eventually, abolish death penalty", - "values": [ - "Death penalty" - ] - }, - { - "text": "Harmonize Mexican law with the Convention on the Rights of Persons with Disabilities", - "values": [ - "Disabilities", - "International instruments" - ] - }, - { - "text": "Intensify measures to promote the rule of law while consolidating peace and stability through dialogue and national reconciliation mechanisms.", - "values": [ - "Justice" - ] - }, - { - "text": "Recommend, with regard to corruption, that the Government translate its intentions into tangible results and measures.", - "values": [ - "Corruption" - ] - }, - { - "text": "Reconsider ratification of the International Convention on the Protection of the Rights of All Migrant Workers and Members of Their Families", - "values": [ - "International instruments", - "Labour", - "Migrants" - ] - }, - { - "text": "Ratify the International Convention for the Protection of All Persons from Enforced Disappearance and the Optional Protocol to the Convention against Torture, and bring its national legislation into compliance with all obligations", - "values": [ - "Detention", - "Enforced disappearances", - "International instruments", - "Torture and other CID treatment" - ] - }, - { - "text": "Ensure in practice that all reports of torture or ill-treatment are duly investigated in a prompt, exhaustive, impartial and independent manner, and that those responsible are brought to justice", - "values": [ - "Torture and other CID treatment" - ] - }, - { - "text": "Implement necessary policies and programmes to address the issues of ill treatment of children, including sexual abuse, and child prostitution ", - "values": [ - "Rights of the Child" - ] - }, - { - "text": "Continue strengthening government capacity to effectively investigate and prosecute all crimes, including labour law violations", - "values": [ - "Labour" - ] - }, - { - "text": "Adopt and implement legislation to eliminate discrimination against persons with disabilities", - "values": [ - "Disabilities" - ] - }, - { - "text": "Italy is firmly committed to the promotion and protection of human rights and to fully cooperate with international mechanisms such as the UPR aimed at monitoring national progress in this field.", - "values": [ - "UPR process" - ] - }, - { - "text": "Intensify its efforts to promote and protect the full enjoyment of the right to education and take further steps to make access to education easier for all, including by allocating adequate resources and by reinforcing teacher training", - "values": [ - "Right to education" - ] - }, - { - "text": "Consider alternative, effective interventions for persons who violate national laws or norms regarding religious or cultural sensibilities through publication or posting of offensive material ", - "values": [ - "Freedom of opinion and expression" - ] - }, - { - "text": "Continue to improve the living conditions of the Roma population", - "values": [ - "Minorities" - ] - }, - { - "text": "Abolish death the penalty.", - "values": [ - "Death penalty" - ] - }, - { - "text": "Take measures to improve the enforcement of existing laws criminalizing rape and domestic violence, including by thoroughly investigating and prosecuting all acts of violence against women", - "values": [ - "Rights of the Child", - "Women's rights" - ] - }, - { - "text": "Step up its efforts in promoting and protecting migrant workers ", - "values": [ - "Labour", - "Migrants" - ] - }, - { - "text": "Continue its dialogue with indigenous persons", - "values": [ - "Indigenous peoples" - ] - }, - { - "text": "End the execution of mentally-ill persons and minors", - "values": [ - "Death penalty", - "Disabilities", - "Rights of the Child" - ] - }, - { - "text": "Establish a formal moratorium on the use of the death penalty with a view to ratifying the second Optional Protocol to the International Covenant on Civil and Political Rights ", - "values": [ - "Death penalty", - "International instruments" - ] - }, - { - "text": "Redouble efforts to implement the recommendations of the Committee on the Rights of the Child concerning the application of environmental rules to ensure universal access to drinking water and sanitation ", - "values": [ - "Right to water and sanitation", - "Treaty bodies" - ] - }, - { - "text": "Complete the process of establishing a coordinating body under the auspices of the Prime Minister's Office to monitor and report progress on human rights", - "values": [ - "General" - ] - }, - { - "text": "Take further effective measures to end impunity in cases of violence and torture committed by security forces ", - "values": [ - "Human rights violations by state agents", - "Impunity", - "Torture and other CID treatment" - ] - }, - { - "text": "Intensify its efforts towards abolishing the death penalty including through holding public consultations on a referendum on its abolition in accordance with Ghana\u2019s Constitution", - "values": [ - "Death penalty" - ] - }, - { - "text": "Tighten the criminal responsibility for the crimes related to the sexual exploitation of children", - "values": [ - "Rights of the Child" - ] - }, - { - "text": "Undertake every effort to promote awareness of the rights of the child", - "values": [ - "Rights of the Child" - ] - }, - { - "text": "Intensify its efforts to prevent, combat and eliminate torture and accede to the Optional Protocol to the Convention against Torture", - "values": [ - "Detention", - "International instruments", - "Torture and other CID treatment" - ] - }, - { - "text": "Continue measures aimed at the promotion of civic responsibility to improve responsible citizenship through a culture of values and respect for human rights", - "values": [ - "Human rights education and training" - ] - }, - { - "text": "Consider establishing an adequate policy for a universal basic income for all its citizens ", - "values": [ - "Poverty" - ] - }, - { - "text": "Ensure reform efforts respect and strengthen judicial independence and improve delivery of justice", - "values": [ - "Justice" - ] - }, - { - "text": "Ensure the respect of rights and fundamental freedoms of the whole population and adopt all the necessary measures to guarantee the accountability of the authors of crimes, acts of violence, and all human rights violations", - "values": [ - "Justice" - ] - }, - { - "text": "Adopt legal measures to ensure equality between men and women regarding nationality rights", - "values": [ - "Statelessness and the right to nationality", - "Women's rights" - ] - }, - { - "text": "Review criminal justice procedures to reduce the length of detention without trial and replace preliminary inquiries with sufficient hearings in the High Court", - "values": [ - "Detention", - "Justice" - ] - }, - { - "text": "Continue with appropriate measures to eradicate discrimination and violence against women. ", - "values": [ - "Women's rights" - ] - }, - { - "text": "Further strengthen measures against torture and ill-treatment, including accession to the Optional Protocol to the Convention against Torture in the near future, and that it establish an effective national preventative mechanism.", - "values": [ - "Detention", - "International instruments", - "Torture and other CID treatment" - ] - }, - { - "text": "Combat violence against women, in particular female genital mutilation, by ensuring that these are systematically brought to justice and by raising awareness", - "values": [ - "Human rights education and training", - "Rights of the Child", - "Torture and other CID treatment", - "Women's rights" - ] - }, - { - "text": "Review laws and regulations that call for immediate and automatic deportation of migrant workers on health grounds", - "values": [ - "Labour", - "Migrants" - ] - }, - { - "text": "Continue to implement the Strategy for Roma Integration up to 2020", - "values": [ - "Minorities" - ] - }, - { - "text": "Implement the Convention on the Rights of the Child through the harmonization of its national laws to ensure that the minimum age for marriage is established at 18 years for both girls and boys and remove barriers to birth registration", - "values": [ - "International instruments", - "Rights of the Child", - "Statelessness and the right to nationality" - ] - }, - { - "text": "Promote dialogue between all sides to foster understanding and unity", - "values": [ - "Other" - ] - }, - { - "text": "Step up the awareness-raising campaigns concerning human rights by translating international instruments concerning human rights into the various national languages ", - "values": [ - "Human rights education and training" - ] - }, - { - "text": "Complete the process of bringing the national human rights institution into compliance with the Paris Principles and allocating it the adequate resources", - "values": [ - "National Human Rights Institution" - ] - }, - { - "text": "Eritrea is fully committed to the achievement of the MDGs", - "values": [ - "Development" - ] - }, - { - "text": "Enhance its efforts to reduce the health hazards posed by industrial activities", - "values": [ - "Business and human rights", - "Right to health" - ] - }, - { - "text": "Continue its efforts to reduce migration cost and provide greater skills development to aspiring migrant workers ", - "values": [ - "Labour", - "Migrants" - ] - }, - { - "text": "Share its positive experiences and best practices with other countries regarding the high level of ethnic and religious tolerance", - "values": [ - "Freedom of religion and belief" - ] - }, - { - "text": "Continue efforts to abolish the death penalty.", - "values": [ - "Death penalty" - ] - }, - { - "text": "Formulate and implement a national plan of action for the protection of the civil rights of lesbians, gays, bisexuals and transgender (LGBT) persons", - "values": [ - "Sexual Orientation and Gender Identity" - ] - }, - { - "text": "Continue enhancing and promoting human rights through expanding and broadening human rights education and awareness-raising programmes in the country ", - "values": [ - "Human rights education and training" - ] - }, - { - "text": "Establish an immediate de jure moratorium on the use of the death penalty", - "values": [ - "Death penalty" - ] - }, - { - "text": "Speed up ongoing processes leading up to the ratification of the Optional Protocol to the Convention against Torture and other Cruel, Inhuman or Degrading Treatment or Punishment", - "values": [ - "International instruments", - "Torture and other CID treatment", - "Treaty bodies" - ] - }, - { - "text": "Continue to promote economic and social development in an effort to eliminate poverty and further improve the living standards of the people ", - "values": [ - "Development", - "Poverty" - ] - }, - { - "text": "Avoid the practice of preventive detention or use such type of detention as a measure of last resort ", - "values": [ - "Detention" - ] - }, - { - "text": "Amend the Penal Code to include a definition of torture in conformity with the Convention against Torture and conduct independent and prompt investigation of all claims of torture and ill-treatment", - "values": [ - "International instruments", - "Justice", - "Torture and other CID treatment" - ] - }, - { - "text": "Take steps to alternate male and female candidates on the electoral in order to ensure a more equitable representation, with a view to follow-up on the recommendations contained in paragraphs 116.28 and 116.29 of the report of the Working Group on the Universal Periodic Review from the second cycle", - "values": [ - "UPR process", - "Women's rights" - ] - }, - { - "text": "Intensify efforts to investigate and prosecute perpetrators of child sexual abuse and provide specialized assistance to victims ", - "values": [ - "Rights of the Child" - ] - }, - { - "text": "Introduce effective legislative measures to increase women's participation in political life and decision-making", - "values": [ - "Women's rights" - ] - }, - { - "text": "Improve health-care institutions with the aim of reducing maternal mortality", - "values": [ - "Right to health", - "Women's rights" - ] - }, - { - "text": "Increase efforts to fight corruption effectively, the national anti-corruption bureau and the specialized anti-corruption prosecutor\u2019s office, established in 2015, should intensify their work in prosecuting high-level corruption in the Government, parliament and the courts. The establishment of the separate anti-corruption court would be the right step in this direction", - "values": [ - "Corruption", - "Justice" - ] - }, - { - "text": "Review national legislation and develop awareness and training programmes in order to eliminate legal and de facto discrimination against boys and girls with disabilities and as well as with respect to those children living in the poorest areas of the country ", - "values": [ - "Disabilities", - "Rights of the Child" - ] - }, - { - "text": "Take the necessary measures to guarantee full conformity of the national human rights institution with the Paris Principles", - "values": [ - "National Human Rights Institution" - ] - }, - { - "text": "Step up efforts to prevent the diversion of public funds and to combat cases of corruption ", - "values": [ - "Corruption" - ] - }, - { - "text": "Ensure that special attention is paid to cases where the age of alleged juvenile offenders is in dispute, while fully respecting international human rights law ", - "values": [ - "International instruments", - "Justice", - "Rights of the Child" - ] - }, - { - "text": "Continue to play an active role in promoting international cooperation to combat climate change.", - "values": [ - "Environment" - ] - }, - { - "text": "Take effective measures to ensure that conditions of detention at Her Majesty's Prison are in conformity with United Nations Standard Minimum Rules for the Treatment of Prisoners, including by reducing overcrowding", - "values": [ - "Detention" - ] - }, - { - "text": "Monitor the activities of overseas Swiss companies", - "values": [ - "Business and human rights" - ] - }, - { - "text": "Take appropriate measures to prevent and punish all forms of ill treatment by law enforcement officials", - "values": [ - "Human rights violations by state agents" - ] - }, - { - "text": "Take necessary measures to implement a national public awareness campaign on human rights, especially women and children's rights ", - "values": [ - "Human rights education and training", - "Rights of the Child", - "Women's rights" - ] - }, - { - "text": "Ratify the Second Optional Protocol to the International Covenant on Civil and Political Rights, aimed at abolishing the death penalty ", - "values": [ - "Death penalty", - "International instruments" - ] - }, - { - "text": "Take further measures to address violence against women, domestic violence and sexual abuse and harassment, including awareness-raising campaigns in society at large and provide protection measures for the victims.", - "values": [ - "Human rights education and training", - "Women's rights" - ] - }, - { - "text": "Continue its current efforts in the fields of social cohesion and quality of basic education", - "values": [ - "Right to education" - ] - }, - { - "text": "Find ways to improve the detention conditions of minors, including counselling services.", - "values": [ - "Detention", - "Rights of the Child" - ] - }, - { - "text": "Release immediately and unconditionally all political prisoners, members of the opposition, human rights defenders and activists, ensure their full rehabilitation, and lift travel and other restrictions imposed on political prisoners who have been pardoned", - "values": [ - "Detention", - "Freedom of opinion and expression", - "Human rights defenders" - ] - }, - { - "text": "Ensure that children with disabilities are able to exercise their right to education and provide for their inclusion in the mainstream education system ", - "values": [ - "Disabilities", - "Right to education", - "Rights of the Child" - ] - }, - { - "text": "Respect the right to vote of all inmates", - "values": [ - "Detention", - "Elections" - ] - }, - { - "text": "Intensify its fight against discrimination of which people of African descent are victims and take appropriate measures to reduce inequalities affecting them in the areas of employment, housing and education ", - "values": [ - "Labour", - "Minorities", - "Racial discrimination", - "Right to education", - "Right to housing" - ] - }, - { - "text": "Consider the possibility of acceding to all the international human rights treaties and conventions to which it is not yet party", - "values": [ - "International instruments" - ] - }, - { - "text": "Continue the process of strengthening free health care and free education in remote areas as well as strengthening the kidu welfare system for the benefit of vulnerable populations ", - "values": [ - "Right to education", - "Right to health" - ] - }, - { - "text": "Fully implement the recommendations on human rights defenders it accepted during the previous UPR, including investigating fully and effectively violations committed against human rights defenders and journalists and bringing to justice those responsible", - "values": [ - "Freedom of the press", - "Human rights defenders", - "UPR process" - ] - }, - { - "text": "Make further efforts to protect children against all risks of sexual or economic exploitation", - "values": [ - "Rights of the Child" - ] - }, - { - "text": "Elaborate further concrete, meaningful practical measures and mechanisms that effectively prevent any ill-treatment by the police and prison guards, including the possibility of revision of the practice of incommunicado detention", - "values": [ - "Detention", - "Human rights violations by state agents", - "Torture and other CID treatment" - ] - }, - { - "text": "Continue its positive measures in further promoting and protecting the rights of persons with disabilities, including by ensuring effective implementation of its Law on Employment as well as providing the necessary vocational training to them", - "values": [ - "Disabilities" - ] - }, - { - "text": "Implement the commitment taken in 2011 to ensure gender equality", - "values": [ - "Women's rights" - ] - }, - { - "text": "Consider acceding to ILO Convention No. 189 (2011) concerning decent work for domestic workers ", - "values": [ - "International instruments", - "Labour" - ] - }, - { - "text": "Continue efforts to eliminate discrimination against women", - "values": [ - "Women's rights" - ] - }, - { - "text": "Continue unabated its commitment to tackle the problem of sexual exploitation of children and child labour ", - "values": [ - "Labour", - "Rights of the Child" - ] - }, - { - "text": "Step up the fight against trafficking in persons and the unlawful smuggling of migrants through various modalities ", - "values": [ - "Migrants", - "Trafficking" - ] - }, - { - "text": "Give adequate training and instruction to law enforcing bodies and to the judiciary on how to address complaints stemming from racially motivated crimes", - "values": [ - "Human rights education and training", - "Racial discrimination" - ] - }, - { - "text": "Additional steps be put in place to protect women's rights more effectively in rural areas in particular", - "values": [ - "Women's rights" - ] - }, - { - "text": "Continue the reform process of the justice system", - "values": [ - "Justice" - ] - }, - { - "text": "Ratify or accede to the Rome Statute of ICC and to implement it fully at national level and to accede to the Agreement on Privileges and Immunities of ICC", - "values": [ - "International instruments", - "Justice" - ] - }, - { - "text": "Reinforce efforts in combating all manifestations of racism, xenophobia and other related intolerance", - "values": [ - "Racial discrimination" - ] - }, - { - "text": "Promote freedom for trade unions to ensure fair treatment in the event of labour disputes, especially when they involve migrant workers, and ensure that all domestic labour laws fully comply with the Covenant on Economic, Social and Cultural Rights ", - "values": [ - "International instruments", - "Labour", - "Migrants" - ] - }, - { - "text": "Ensure accountability for hate speech including in political discourse, prohibiting organizations promoting and inciting racial hatred, in line with article 4 (b) of the Convention on the Elimination of All Forms of Racial Discrimination and ratify ICRMW", - "values": [ - "International instruments", - "Racial discrimination" - ] - }, - { - "text": "Ensure that all detainees suspected of a crime are brought before a court of law as soon as possible", - "values": [ - "Justice" - ] - }, - { - "text": "Consider additional measures of protection for displaced persons ", - "values": [ - "Internally displaced persons" - ] - }, - { - "text": "Strengthen its programmes and adopt further measures for combating HIV/AIDS, malaria and cholera ", - "values": [ - "HIV - Aids", - "Right to health" - ] - }, - { - "text": "Pursue an open dialogue with human rights defenders, in particular in Cabinda, where, in the aftermath of the recent deplorable attack on the Togolese football team, human rights defenders are reportedly being detained without evidence as to their complicity", - "values": [ - "Human rights defenders" - ] - }, - { - "text": "Continue to promote the rights of women and children", - "values": [ - "Rights of the Child", - "Women's rights" - ] - }, - { - "text": "Repeal the application of the death penalty in all areas", - "values": [ - "Death penalty" - ] - }, - { - "text": "Continue contributing to the Office of High Commissioner for Human Rights ", - "values": [ - "Technical assistance and cooperation" - ] - }, - { - "text": "Establish a mechanism to increase the participation of women, particularly indigenous women, in key positions of the three powers of the Republic and in decision-making processes", - "values": [ - "Women's rights" - ] - }, - { - "text": "Carry out the work to eliminate expressions of hatred, racial and religious discrimination", - "values": [ - "Freedom of religion and belief", - "Racial discrimination" - ] - }, - { - "text": "Ensure that all counter-narcotics operations are conducted in conformity with constitutional protections and international human rights obligations", - "values": [ - "International instruments", - "Other", - "Public security" - ] - }, - { - "text": "Reform legislation in the area of the rights of freedom of conscience and belief", - "values": [ - "Freedom of religion and belief" - ] - }, - { - "text": "Intensify efforts to make primary education compulsory, free of all costs and accessible to all children, with the implementation of additional measures to ensure the right to education for children from ethnic minorities", - "values": [ - "Minorities", - "Right to education", - "Rights of the Child" - ] - }, - { - "text": "Recommended that a mechanism be established with a view to verifying that political parties and social institutions do not adopt racist or xenophobic programmes. ", - "values": [ - "Racial discrimination" - ] - }, - { - "text": "Halt all public executions, and intensify efforts to ensure that no detainee is subject to torture or cruel, inhuman or degrading treatment or punishment ", - "values": [ - "Death penalty", - "Detention", - "Justice", - "Torture and other CID treatment" - ] - }, - { - "text": "Continue its cooperation with international human rights mechanisms", - "values": [ - "Special procedures", - "Treaty bodies", - "UPR process" - ] - }, - { - "text": "Accelerate efforts providing maternal and child health services, as well as to significantly reduce under five child mortality rates", - "values": [ - "Right to health", - "Rights of the Child", - "Women's rights" - ] - }, - { - "text": "Increase support to children with disabilities to live in the community to avoid institutionalization", - "values": [ - "Disabilities", - "Rights of the Child" - ] - }, - { - "text": "Promote responsible freedom of expression and effectively use the Cyber Security Strategy of Latvia 2014-2018 as a platform to combat hate crimes in the virtual environment", - "values": [ - "Freedom of opinion and expression" - ] - }, - { - "text": "Complete the amendments expected to be carried out on the crime of rape in the Criminal Code of the Faroe Islands", - "values": [ - "Women's rights" - ] - }, - { - "text": "Make prioritized efforts to achieve Millennium Development Goals as soon as possible ", - "values": [ - "Development" - ] - }, - { - "text": "Ratify the International Convention on the Protection of All Persons from Enforced Disappearance and the Optional Protocol to the International Covenant on Economic, Social and Cultural Rights", - "values": [ - "ESC rights - general", - "Enforced disappearances", - "International instruments" - ] - }, - { - "text": "Put an end to attacks on civilians and grant unfettered access to humanitarian organizations and independent international human rights monitors, particularly the Commission of Inquiry", - "values": [ - "Other" - ] - }, - { - "text": "Include "gender reassignment" as a ground for protection in domestic anti-discrimination legislation ", - "values": [ - "Women's rights" - ] - }, - { - "text": "Continue applying programmes and measures to improve the enjoyment of the right to education and the right to health, including addressing the HIV/AIDs pandemic", - "values": [ - "Development", - "HIV - Aids", - "Right to health" - ] - }, - { - "text": "Continue efforts to close the gap in opportunities and life outcomes between Indigenous and non-Indigenous Australians, according to the Close the Gap Campaign and its Progress and Priorities report 2015", - "values": [ - "Indigenous peoples" - ] - }, - { - "text": "Continue working on the harmonization of its domestic normative framework with its international obligations to which it is a State party, taking into account the recommendations made by treaty bodies and special procedures mandate holders", - "values": [ - "International instruments", - "Special procedures", - "Treaty bodies" - ] - }, - { - "text": "Take further measures to develop an effective implementation and monitoring mechanism for the law on domestic violence, especially to grant access to justice for women victims of violence and guarantee their protection ", - "values": [ - "Rights of the Child", - "Women's rights" - ] - }, - { - "text": "Criminalize hate speech and incitement to hatred which leads to imminent violence", - "values": [ - "Racial discrimination" - ] - }, - { - "text": "Extend an invitation to the Special Rapporteur on extrajudicial, summary or arbitrary executions for an official visit in line with United Nations terms of reference without any further delay", - "values": [ - "Extrajudicial executions", - "Special procedures" - ] - }, - { - "text": "Take further steps to promote the protection of human rights, such as becoming a party in a timely manner to the main international human rights instruments, including, inter alia, the International Covenant on Economic, Social and Cultural Rights and the International Convention on the Elimination of All Forms of Racial Discrimination, and by continuing to work to ensure the conformity of the domestic legal system with international human rights instruments ", - "values": [ - "ESC rights - general", - "International instruments", - "Racial discrimination" - ] - }, - { - "text": "Take actions aimed at putting an end to discrimination based on sexual orientation, beginning by eliminating the criminalization of consensual sexual relationships between adults of the same gender", - "values": [ - "Sexual Orientation and Gender Identity" - ] - }, - { - "text": "Continue promoting the rights of children, particularly in guaranteeing their access to quality education, so as to ensure that they would be able to enter the workforce with the necessary skills", - "values": [ - "Right to education", - "Rights of the Child" - ] - }, - { - "text": "Promote and protect human rights and fundamental freedoms by applying the measures stipulated in the law to combat terrorism, drug trafficking and other threats against the national security.", - "values": [ - "Counter-terrorism", - "Public security" - ] - }, - { - "text": "Step up efforts to adopt a comprehensive Anti-Discrimination Bill in line with the relevant international human rights instruments", - "values": [ - "International instruments" - ] - }, - { - "text": "Address effectively the concerns expressed in 2006 by the Special Representative of the Secretary-General on the situation of human rights defenders and invite him to visit the country.", - "values": [ - "Human rights defenders", - "Special procedures" - ] - }, - { - "text": "Undertake an in-depth study on trafficking and exploitation of children, particularly with regard to sexual abuse, child prostitution and child pornography, as a basis for urgent remedial action in this regard.", - "values": [ - "Rights of the Child", - "Trafficking" - ] - }, - { - "text": "Continue the efforts which aim at expanding the inclusion of the general public in the decision-making process", - "values": [ - "Other" - ] - }, - { - "text": "Ratify without reservations the Convention on the Rights of Persons with Disabilities and the Optional Protocol thereto", - "values": [ - "Disabilities", - "International instruments" - ] - }, - { - "text": "Continue to exercise its right to self-determination and independence and to move forward with its sovereign commitment to positioning its legal system so as to meet the needs of its people, as is already being done", - "values": [ - "Other" - ] - }, - { - "text": "Ensure that the definition of minorities used in all laws provides for full protection against any discrimination.", - "values": [ - "Minorities" - ] - }, - { - "text": "Adopt specific legislation on domestic violence, especially violence against women", - "values": [ - "Rights of the Child", - "Women's rights" - ] - }, - { - "text": "Continue with the full implementation of the Law against Femicide and other forms of violence against women", - "values": [ - "Women's rights" - ] - }, - { - "text": "Elaborate a comprehensive and multidisciplinary strategy to prevent and address exploiting young citizens through illegal migration", - "values": [ - "Migrants" - ] - }, - { - "text": "Recognize the mandate of the Special Rapporteur on the situation of human rights in the Democratic People's Republic of Korea, issue an invitation to him to visit the country, and permit him to work unhindered", - "values": [ - "Special procedures" - ] - }, - { - "text": "Finalize the process of revision of the Statute of the National Commission of Human Rights to bring it into compliance with the Paris Principles", - "values": [ - "National Human Rights Institution" - ] - }, - { - "text": "Step up efforts in the area of combating trafficking in human beings, including measures on the protection, reintegration and rehabilitation of victims of human trafficking ", - "values": [ - "Trafficking" - ] - }, - { - "text": "Ratify the Second Optional Protocol to the International Covenant on Civil and Political Rights, aiming at the abolition of the death penalty (ICCPR-OP 2)", - "values": [ - "Death penalty", - "International instruments" - ] - }, - { - "text": "Implement fully the bill on access to information and take effective measures to protect freedom of the press by investigating all reported incidents of intimidation or harassment of journalists ", - "values": [ - "Freedom of opinion and expression", - "Freedom of the press" - ] - }, - { - "text": "Continue with the efforts to ratify the CRPD and the International Convention on the Protection of the Rights of All Migrant Workers and Members of Their Families (ICRMW) ", - "values": [ - "Disabilities", - "International instruments", - "Labour", - "Migrants" - ] - }, - { - "text": "Strengthen measures taken to protect vulnerable groups", - "values": [ - "Minorities" - ] - }, - { - "text": "Amend its law on domestic violence to include a specific definition on domestic violence as a criminal offence", - "values": [ - "Rights of the Child", - "Women's rights" - ] - }, - { - "text": "Ensure adequate human rights protection for the migrant populations residing or transiting through its borders", - "values": [ - "Migrants" - ] - }, - { - "text": "Continue to allocate financial assistance for developing countries in the framework of Official Development Assistance (ODA) and meet the commitment made in this regard at the international level ", - "values": [ - "Technical assistance and cooperation" - ] - }, - { - "text": "Adopt effective measures to prevent discrimination and violence against women, including the adoption of a relevant strategy and a plan of action in this field ", - "values": [ - "Women's rights" - ] - }, - { - "text": "Take measures to address the problem of violence against children and ensure there is a national system for receiving, monitoring and investigating complaints ", - "values": [ - "Rights of the Child" - ] - }, - { - "text": "Implement the rulings of the Inter-American Court of Human Rights regarding indigenous land claims by the YakyeAxa and Sawhoyamaxa Indigenous communities promptly and effectively", - "values": [ - "Freedom of opinion and expression", - "Indigenous peoples" - ] - }, - { - "text": "Continue its work to combat societal discrimination and xenophobia ", - "values": [ - "Racial discrimination" - ] - }, - { - "text": "Step up efforts to fight against torture, by implementing the anti-torture law adopted in 2013, and through the systematic prosecution of perpetrators of such acts whoever they may be", - "values": [ - "Torture and other CID treatment" - ] - }, - { - "text": "Take measures to combat norms, practices and stereotypes that cause discrimination and violence based on sexual orientation and gender identity", - "values": [ - "Sexual Orientation and Gender Identity" - ] - }, - { - "text": "Continue with its efforts regarding violence within the family and with the enforcement of the three categories of aggravating circumstances included in the Italian Criminal Code, in order to prevent violence in all its forms", - "values": [ - "Rights of the Child", - "Women's rights" - ] - }, - { - "text": "Adopt effective measures to prevent discrimination against women, including by ensuring equal access to education and employment opportunities ", - "values": [ - "Women's rights" - ] - }, - { - "text": "Adopt amendments to the Marriage and Family Relations Act in line with previous efforts and add a provision that prohibits other forms of demeaning treatment of children, such as psychological violence", - "values": [ - "Rights of the Child" - ] - }, - { - "text": "Ratify the Rome Statute and fully cooperate with the International Criminal Court that those responsible for crimes under international law are prosecuted and justice for the victims is guaranteed", - "values": [ - "International instruments", - "Justice" - ] - }, - { - "text": "Continue to step up its protection of children's rights and eliminate child labour", - "values": [ - "Labour", - "Rights of the Child" - ] - }, - { - "text": "Continue its efforts for the elimination of discrimination against women ", - "values": [ - "Women's rights" - ] - }, - { - "text": "Increase efforts to prevent and punish perpetrators of racially motivated acts of violence against members of the Roma/Sinti, Muslim, Jewish Communities, as well as German nationals of foreign origin ", - "values": [ - "Freedom of religion and belief", - "Minorities", - "Racial discrimination" - ] - }, - { - "text": "Develop and adopt legislation that would recognize explicitly hatred on the basis of sexual orientation and gender identity as a motive and make it an aggravated circumstance in a crime", - "values": [ - "Sexual Orientation and Gender Identity" - ] - }, - { - "text": "Ratify the Convention on the Elimination of All Forms of Discrimination against Women and prohibit female genital mutilation ", - "values": [ - "International instruments", - "Rights of the Child", - "Torture and other CID treatment", - "Women's rights" - ] - }, - { - "text": "Improve respect for human rights in its justice system, including by ensuring that all allegations of torture are thoroughly investigated and that any perpetrators brought to justice, and by promoting the use of forensic evidence in courts", - "values": [ - "Justice", - "Torture and other CID treatment" - ] - }, - { - "text": "Ratify ICMW as early as possible ", - "values": [ - "Migrants" - ] - }, - { - "text": "Consider the possibility of signing and ratifying International Convention for the protection of all persons against enforced disappearances and to accept the competence of its committee", - "values": [ - "Enforced disappearances", - "International instruments" - ] - }, - { - "text": "Recommended ratifying the Optional Protocol to CEDAW (OPCEDAW) and facilitating the visit of the Special Rapporteur on violence against women, its causes and consequences", - "values": [ - "International instruments", - "Special procedures", - "Women's rights" - ] - }, - { - "text": "Strive to accede to core human rights instruments relevant to the enjoyment of human rights for all persons", - "values": [ - "International instruments" - ] - }, - { - "text": "Establish the Truth and Reconciliation Commission and the Commission of Inquiry on Disappearances as stipulated in the 2006 Comprehensive Peace Agreement ", - "values": [ - "Justice" - ] - }, - { - "text": "Ensure that business companies, particularly those working in mining, respect the human rights, following the guiding principles on business and human rights", - "values": [ - "Business and human rights", - "Development" - ] - }, - { - "text": "Decriminalize defamation and revise the provisions of articles 400 and 403 of the newly adopted Criminal Code which could be abused to limit the rights to freedom of expression, assembly and association", - "values": [ - "Freedom of association and peaceful assembly", - "Freedom of opinion and expression" - ] - }, - { - "text": "Take further measures to eliminate racial discrimination in all of its forms and manifestations, in particular, by prohibiting the practice of race profiling in law enforcement, as recommended by the United Nations treaty bodies", - "values": [ - "Racial discrimination", - "Treaty bodies" - ] - }, - { - "text": "Become a party to ICESCR ", - "values": [ - "ESC rights - general", - "International instruments" - ] - }, - { - "text": "Continue to work with all neighbouring countries to find a lasting solution to illegal and economic migrants through the bilateral process, based on agreements already reached between the Governments of Bhutan and Nepal", - "values": [ - "Migrants" - ] - }, - { - "text": "Continue taking concrete measures to promote civil, political, economic, social, environmental and cultural rights ", - "values": [ - "CP rights - general", - "ESC rights - general" - ] - }, - { - "text": "Ratify as soon as possible the International Convention on the Protection of All Persons from Enforced Disappearances, major instrument in fighting impunity, and recognize the competence of the Committee on Enforced Disappearances", - "values": [ - "Enforced disappearances", - "Impunity", - "International instruments", - "Treaty bodies" - ] - }, - { - "text": "Take further steps to eradicate impunity for killings", - "values": [ - "Impunity" - ] - }, - { - "text": "Strengthen the institutional infrastructure for ensuring, promoting and protecting human rights ", - "values": [ - "General" - ] - }, - { - "text": "Consider establishing a national human rights institution in line with the Paris Principles ", - "values": [ - "National Human Rights Institution" - ] - }, - { - "text": "Overhaul fundamentally legislation on abortion, in the first place with regard to victims of rape, especially victims that are minors, as well as concerning pregnancies which seriously endanger the health of the woman ", - "values": [ - "Women's rights" - ] - }, - { - "text": "Work towards empowering the institutions that uphold the promotion of human rights, good governance and the rule of law ", - "values": [ - "Justice" - ] - }, - { - "text": "Ensure that Germany's law and policies are consistent with CEDAW and ICERD by revising or revoking laws and regulations that hinder access to equal opportunities ", - "values": [ - "International instruments", - "Racial discrimination", - "Women's rights" - ] - }, - { - "text": "Ensure the enjoyment of the right to freedom of religion by everyone, including persons belonging to religious minorities, by punishing those who harass or incite hate speech against religious minorities", - "values": [ - "Freedom of religion and belief", - "Minorities" - ] - }, - { - "text": "Complete and enact the draft media law reform, such that it includes measures to increase media ownership transparency and financial transparency ", - "values": [ - "Freedom of the press" - ] - }, - { - "text": "Take the necessary measures for the ratification of the International Convention for the Protection of All Persons from Enforced Disappearance ", - "values": [ - "Enforced disappearances", - "International instruments" - ] - }, - { - "text": "In the context of its efforts to achieve social development, Qatar is committed to maintaining the family as a strong and cohesive unit and to providing the family with support, welfare and protection. ", - "values": [ - "Other" - ] - }, - { - "text": "Significantly improve its cooperation with the United Nations treaty bodies by agreeing on timelines for submitting overdue reports and, if need be, identify needs for assistance to that end ", - "values": [ - "Technical assistance and cooperation", - "Treaty bodies" - ] - }, - { - "text": "Ratify the Optional Protocol to the Convention on the Rights of the Child on the Sale of Children, Child Prostitution and Child Pornography", - "values": [ - "International instruments", - "Rights of the Child", - "Trafficking" - ] - }, - { - "text": "Continue efforts to hold a national dialogue to strengthen constitutional democracy, a participant and protagonist in the Bolivarian Republic of Venezuela", - "values": [ - "Other" - ] - }, - { - "text": "Take measures to ensure the respect of freedom of religion and to end all types of reprisals against those who converted from Islam ", - "values": [ - "Freedom of religion and belief" - ] - }, - { - "text": "Accede and bring into line its legislation with the Rome Statute of the International Criminal Court ", - "values": [ - "International instruments", - "Justice" - ] - }, - { - "text": "Consider acceding to the main human rights instruments to which it is not a party, in particular the Convention against Torture and Other Cruel, Inhuman or Degrading Treatment or Punishment and its Optional Protocol ", - "values": [ - "Detention", - "International instruments", - "Torture and other CID treatment" - ] - }, - { - "text": "Ratify the Convention on the Elimination of All forms of Discrimination against Women as soon as possible", - "values": [ - "International instruments", - "Women's rights" - ] - }, - { - "text": "Repeal all provisions that criminalise consensual same-sex conduct and ensure that anti-discrimination laws cover sexual orientation ", - "values": [ - "Sexual Orientation and Gender Identity" - ] - }, - { - "text": "Amend the list of hazardous work to prohibit children under the age of 18 from working in all listed sectors", - "values": [ - "Labour", - "Rights of the Child" - ] - }, - { - "text": "Adopt laws to implement the conventions it has ratified", - "values": [ - "International instruments" - ] - }, - { - "text": "Take measures to integrate technical vocational education and training into formal education", - "values": [ - "Right to education" - ] - }, - { - "text": "Develop and implement a new disarmament, demobilization and reintegration programme for dealing with armed groups, ensuring that former combatants are given realistic opportunities to reintegrate into the community and that children involved with armed groups are treated in line with international law", - "values": [ - "International humanitarian law", - "Rights of the Child" - ] - }, - { - "text": "Continue to integrate technology into education through the Ceibal Centre", - "values": [ - "Right to education" - ] - }, - { - "text": "Promote greater representation of women in professional education, in decision-making positions in Government and in Parliament", - "values": [ - "Women's rights" - ] - }, - { - "text": "Bring its national legislation into line with the Rome Statute, including by incorporating provisions to promptly and fully cooperate with the International Criminal Court", - "values": [ - "International instruments", - "Justice" - ] - }, - { - "text": "Implement the policy for employment of persons with disabilities and the National Roma Integration Strategy 2011-2020", - "values": [ - "Disabilities", - "Minorities" - ] - }, - { - "text": "Implement outcome-oriented programmes to empower women's participation in the work force and in political sphere", - "values": [ - "Women's rights" - ] - }, - { - "text": "Continue efforts to implement strategies aimed at establishing more human rights institutions, including speeding up the process to establish the national human rights institution ", - "values": [ - "National Human Rights Institution" - ] - }, - { - "text": "Give individuals, groups and organs of society the legitimacy and recognition to promote human rights and to express their opinions or dissent publicly.", - "values": [ - "Human rights defenders" - ] - }, - { - "text": "Ratify the Convention against Torture and Other Cruel, Inhuman or Degrading Treatment or Punishment and end impunity for security forces accused of committing human rights violations ", - "values": [ - "Human rights violations by state agents", - "Impunity", - "International instruments", - "Torture and other CID treatment" - ] - }, - { - "text": "Consider establishing a moratorium on executions of the death penalty with the aim of abolishing it", - "values": [ - "Death penalty" - ] - }, - { - "text": "Ensure effective implementation of the juvenile justice law by providing training to law enforcement officials and judges and by establishing separate detention facilities for minors", - "values": [ - "Detention", - "Human rights education and training", - "Justice", - "Rights of the Child" - ] - }, - { - "text": "Take legal and practical steps to protect women and children from domestic violence, for example by prohibiting corporal punishment of children and marital rape", - "values": [ - "Rights of the Child", - "Torture and other CID treatment", - "Women's rights" - ] - }, - { - "text": "Continue efforts to implement the development policy as defined in the Act on Missions, Great Missions and Micro-missions of 2014", - "values": [ - "Development" - ] - }, - { - "text": "Strictly implement the criminal provisions concerning hate speech and hate crimes, while conducting awareness-raising campaigns promoting tolerance", - "values": [ - "Human rights education and training", - "Racial discrimination" - ] - }, - { - "text": "Continue the efforts made within the framework of fighting violence against women ", - "values": [ - "Women's rights" - ] - }, - { - "text": "Develop a comprehensive strategy to combat racial discrimination from a broader perspective, not limited to right wing ideologies, and that takes into account indirect, structural and institutional discrimination. Prohibit policies of ethnic discriminatory profiling by the police ", - "values": [ - "Human rights violations by state agents", - "Racial discrimination" - ] - }, - { - "text": "Continue to address outstanding barriers to ratification of the Convention on the Rights of Persons with Disabilities, including legislative changes that need to be undertaken in view of enabling ratification", - "values": [ - "Disabilities", - "International instruments" - ] - }, - { - "text": "To establish a focal point within the Ministry of Foreign Affairs to provide coordination with stakeholders and the international community", - "values": [ - "Civil society" - ] - }, - { - "text": "Increase women in decision-making process", - "values": [ - "Women's rights" - ] - }, - { - "text": "Extend the implementation of the recommendations issued by United Nations treaty bodies and by the Human Rights Council ", - "values": [ - "Treaty bodies" - ] - }, - { - "text": "Implement all necessary measures to combat trafficking and smuggling of persons, and prevent the human rights abuse and the exploitation of migrants", - "values": [ - "Migrants", - "Trafficking" - ] - }, - { - "text": "Adopt appropriate measures to reduce the high rate of people living in extreme poverty", - "values": [ - "Poverty" - ] - }, - { - "text": "Pursue progress in terms of the right to intercultural and inclusive education", - "values": [ - "Right to education" - ] - }, - { - "text": "Take further steps to integrate the best interests of the child at all stages of the asylum and migration process, in line with human rights obligations under the CRC, and to ensure special protection for unaccompanied asylum-seeking children ", - "values": [ - "Asylum-seekers - refugees", - "International instruments", - "Migrants", - "Rights of the Child" - ] - }, - { - "text": "Enact the necessary legislation in view of its ratification of the OP- CRC-SC", - "values": [ - "International instruments", - "Rights of the Child" - ] - }, - { - "text": "Continue to reform and upgrade its detention system in order to improve the situation of inmates.", - "values": [ - "Detention" - ] - }, - { - "text": "Promote the rights of persons with disabilities to ensure their social integration", - "values": [ - "Disabilities" - ] - }, - { - "text": "Allow the opening of independent investigations on allegations of crimes committed in the Centre for asylum seekers", - "values": [ - "Asylum-seekers - refugees", - "Human rights violations by state agents" - ] - }, - { - "text": "Continue to work to strengthen national human rights mechanisms", - "values": [ - "General" - ] - }, - { - "text": "Enhance the efforts against trafficking in persons and strengthen programmes that provide assistance and aid to its victims ", - "values": [ - "Trafficking" - ] - }, - { - "text": "Adopt measures to curb ill-treatment meted out by police officers to persons deprived of their civil liberties", - "values": [ - "Human rights violations by state agents", - "Torture and other CID treatment" - ] - }, - { - "text": "Comply with its international obligations for the exercise of freedom of expression, ensuring the right to seek receive and impart information and ideas, including by electronic means and from foreign sources, and to act against any form of harassment and intimidation of journalists.", - "values": [ - "Freedom of opinion and expression", - "Freedom of the press" - ] - }, - { - "text": "Early ratification and full implementation of the Optional Protocol to the Convention on the Rights of the Child on the involvement of children in armed conflict", - "values": [ - "International humanitarian law", - "International instruments", - "Rights of the Child" - ] - }, - { - "text": "Extend open and standing invitations to the special procedures ", - "values": [ - "Special procedures" - ] - }, - { - "text": "Consider extending a standing invitation to all special procedures of the Council.", - "values": [ - "Special procedures" - ] - }, - { - "text": "Conduct a review of legislation to ensure that it complies with article 19 of ICCPR, which protects the right to freedom of expression", - "values": [ - "Freedom of opinion and expression", - "International instruments" - ] - }, - { - "text": "Take the necessary steps to proclaim the Juvenile Justice Act which was passed in 2012", - "values": [ - "Justice", - "Rights of the Child" - ] - }, - { - "text": "Step up its effort to combat trafficking in persons, inter alia, through the development of international cooperation with interested Governments, international organizations and non-governmental organizations", - "values": [ - "Civil society", - "Trafficking" - ] - }, - { - "text": "Ensure the use of electronic monitoring systems in centres and institutions that provide social care", - "values": [ - "ESC rights - general" - ] - }, - { - "text": "Decriminalise as soon as possible sexual relations between consent adults of same sex and repeal the 2006 law", - "values": [ - "Sexual Orientation and Gender Identity" - ] - }, - { - "text": "Revoke the national system to register the entry and exit of citizens of 25 countries from the Middle-East, South Asia and North Africa, and eliminate racial and other forms of profiling and stereotyping of Arabs, Muslims and South Asians as recommended by CERD", - "values": [ - "Minorities", - "Racial discrimination", - "Treaty bodies" - ] - }, - { - "text": "Continue its efforts to promote and protect human rights and to strengthen good governance and respect for the rule of law ", - "values": [ - "Justice" - ] - }, - { - "text": "Issue and implement a standing invitation to all United Nations Special Procedures ", - "values": [ - "Special procedures" - ] - }, - { - "text": "Recognize the right to assembly of members of non-political groups by ensuring that such groups do not have to notify the police in advance of any gathering as currently required by the Schedule to the Public Order and Security Act ", - "values": [ - "Freedom of association and peaceful assembly" - ] - }, - { - "text": "Consolidate the process of updating its national legislation in accordance with its international commitments.", - "values": [ - "International instruments" - ] - }, - { - "text": "Take all measures to address and prevent abduction of children, child trafficking, sexual abuse and exploitation and child labour, including the prosecution of perpetrators of such acts, and to protect and reintegrate child victims.", - "values": [ - "Rights of the Child" - ] - }, - { - "text": "Further enhance national policies to promote the rights of women and children", - "values": [ - "Rights of the Child", - "Women's rights" - ] - }, - { - "text": "Decriminalize consensual sexual relations between adults of the same sex, and abolish all legal provisions discriminating against homosexual, bisexual or transsexual persons ", - "values": [ - "Sexual Orientation and Gender Identity" - ] - }, - { - "text": "Evaluate the possibility of increasing its efforts to prevent, criminalize and eliminate all forms of violence against women, including measures aimed at the promotion of their rights and the elimination of patriarchal and discriminatory stereotypes ", - "values": [ - "Women's rights" - ] - }, - { - "text": "Continue with the positive work already being implemented to combat domestic violence, in particular against foreign, minority and indigenous workers and through ensuring that victims have support, care and redress for the abuse", - "values": [ - "Indigenous peoples", - "Minorities", - "Rights of the Child", - "Women's rights" - ] - }, - { - "text": "Review its legal framework to provide for a better protection and promotion of women's rights ", - "values": [ - "Women's rights" - ] - }, - { - "text": "Create an independent human rights institution ", - "values": [ - "National Human Rights Institution" - ] - }, - { - "text": "Establish effective child abuse reporting mechanisms and ensure the appropriate remedy and rehabilitation for child victims", - "values": [ - "Rights of the Child" - ] - }, - { - "text": "Integrate all groups that constitute Latvian society in national socioeconomic plans ", - "values": [ - "ESC rights - general" - ] - }, - { - "text": "Ratify or accede to the Rome Statute of the ICC, the International Convention for the Protection of All Persons from Enforced Disappearance (CPED), the Optional Protocol to CRC on the involvement of children in armed conflict (OP-CRC-AC)", - "values": [ - "Enforced disappearances", - "International humanitarian law", - "International instruments", - "Justice", - "Rights of the Child" - ] - }, - { - "text": "Take further measures in combating gender-based violence, domestic violence, ill-treatment and abuse of children including sexual abuse ", - "values": [ - "Rights of the Child", - "Women's rights" - ] - }, - { - "text": "Continue its efforts to effectively protect children's rights and to combat child trafficking, child prostitution and pornography", - "values": [ - "Rights of the Child", - "Trafficking" - ] - }, - { - "text": "Continue its efforts to strengthen its institutional human rights infrastructures, in particular those aimed at the establishment of a family court in order to deal with resolving family disputes ", - "values": [ - "Other" - ] - }, - { - "text": "Continue its efforts in combating discrimination.", - "values": [ - "Other" - ] - }, - { - "text": "Recognize the competence of the Committee on Enforced Disappearances (CED), ensure the integration of the Convention in the domestic legal framework and create an official register of disappeared persons", - "values": [ - "Enforced disappearances", - "International instruments", - "Treaty bodies" - ] - }, - { - "text": "Develop and implement a comprehensive and interdisciplinary action plan aimed at combating violence against women, in consultation with victims and women organizations, and based on the recommendations made by the United Nations and the Inter-American human rights system ", - "values": [ - "Civil society", - "Women's rights" - ] - }, - { - "text": "Establish an independent body responsible for the appointment, promotion, transfer and discharge of judges ", - "values": [ - "Justice" - ] - }, - { - "text": "Implement the designed public policy and launch a comprehensive awareness-raising campaign to end gender-based violence that includes sexual violence and feminicide", - "values": [ - "Human rights education and training", - "Women's rights" - ] - }, - { - "text": "Step up efforts to provide greater access to education and health ", - "values": [ - "Right to education", - "Right to health" - ] - }, - { - "text": "Design an adequate mechanism for assisting street children so that they can benefit from aid and reintegration services ", - "values": [ - "Rights of the Child" - ] - }, - { - "text": "Establish, as rapidly as possible, the independent children's commission responsible for investigating violations of children's rights and monitoring the implementation of the 2008 Child Act", - "values": [ - "Rights of the Child" - ] - }, - { - "text": "Under the Constitution, the Government recognizes the right of the people to health services, and its obligation to take every step reasonable and necessary to provide said services with the health care system including 2 hospitals in the urban centers and 58 health centers in the outer islands. The Government therefore provides free medical services to its people. Where these services cannot be provided, there are referral programs for patients to Honolulu, Philippines, and Taiwan. In renegotiating the Compact of Free Association with the United States, the RMI Government had maintained that one of its priority areas was health. From the Fiscal Year 2004 through 2009, one (1) new Health Center was constructed including five (5) maintenance projects for 46 outer island dispensaries using Compact public infrastructure funding. Planning already initiated for a new hospital in Majuro, and the hospital redevelopment project for the new hospital aims for ground breaking in early 2011. ", - "values": [ - "Right to health" - ] - }, - { - "text": "Consider accession to the Second Optional Protocol to the International Covenant on Civil and Political Rights, a de facto and de jure moratorium on the imposition of the death penalty and converting capital offences to life imprisonment sentences", - "values": [ - "Death penalty", - "International instruments" - ] - }, - { - "text": "Ensure that a framework policy to protect child rights according to international standards is adopted and a national campaign to promote awareness of child rights is undertaken ", - "values": [ - "Human rights education and training", - "Rights of the Child" - ] - }, - { - "text": "Redouble efforts to eliminate child labour ", - "values": [ - "Labour", - "Rights of the Child" - ] - }, - { - "text": "Continue developing policies and programmes to enhance protection and advancement of women's rights ", - "values": [ - "Women's rights" - ] - }, - { - "text": "Ensure that all allegations of excessive use of force, including torture and ill-treatment, by police are effectively investigated and that those responsible are brought to justice and victims receive adequate reparation", - "values": [ - "Human rights violations by state agents", - "Torture and other CID treatment" - ] - }, - { - "text": "Finish the training process for government and federal officials in order to launch as soon as possible the process of ratification of the CPED, and accept the competence of its monitoring body ", - "values": [ - "Enforced disappearances", - "International instruments" - ] - }, - { - "text": "Set up an awareness campaign to prevent violence against women ", - "values": [ - "Human rights education and training", - "Women's rights" - ] - }, - { - "text": "Further its efforts to address ethnic and racial profiling, particularly in stop and search operations carried out by police and customs and immigration officials ", - "values": [ - "Human rights violations by state agents", - "Racial discrimination" - ] - }, - { - "text": "Continue to prioritise policies aimed at improving the enjoyment of economic, social and cultural rights by its citizens", - "values": [ - "ESC rights - general" - ] - }, - { - "text": "Improve prisons and the living and health conditions in detention facilities and, in particular, end overcrowding and the lack of sanitation, enable easy visits by the relatives of children and prohibit and punish prison officers for acts of torture and ill-treatment", - "values": [ - "Detention", - "Human rights violations by state agents", - "Right to water and sanitation", - "Rights of the Child", - "Torture and other CID treatment" - ] - }, - { - "text": "Formally incorporate education about child sexual abuse and its prevention into the training of teachers and other professionals working with children, health professionals, lawyers and police officers", - "values": [ - "Human rights education and training", - "Rights of the Child" - ] - }, - { - "text": "Ratify the International Convention on the Protection of All Persons from Forced Disappearance.", - "values": [ - "Enforced disappearances", - "International instruments" - ] - }, - { - "text": "Continue strengthening efforts to ensure the economic, social and cultural rights of citizens", - "values": [ - "ESC rights - general" - ] - }, - { - "text": "Cease application of life imprisonment without parole for juvenile offenders and to review all existing sentences to provide for a possibility of parole ", - "values": [ - "Detention", - "Justice", - "Rights of the Child" - ] - }, - { - "text": "Strengthen efforts to improve access to housing, health services, education and employment for both the Roma and Egyptian communities ", - "values": [ - "Labour", - "Minorities", - "Right to education", - "Right to health", - "Right to housing" - ] - }, - { - "text": "Thoroughly investigate all allegations of sexual violence and bring perpetrators of such crimes to justice, in accordance with international standards, as recommended previously in 2009", - "values": [ - "Rights of the Child", - "UPR process", - "Women's rights" - ] - }, - { - "text": "Revise the minimum required length of legal residence for migrants to access a disability or elderly pension and for their children to benefit from the program of universal child allowance", - "values": [ - "Disabilities", - "Migrants", - "Rights of the Child" - ] - }, - { - "text": "Realize further campaigns and awareness-raising efforts to disseminate information on human rights, equality and anti discrimination.", - "values": [ - "Human rights education and training" - ] - }, - { - "text": "Take up the commitment to address, in a framework of shared but differentiated responsibility and along with the international community, the world problem of climate change and its negative impact", - "values": [ - "Environment" - ] - }, - { - "text": "Submit its initial report to the Committee against Torture which is fifteen years overdue ", - "values": [ - "Torture and other CID treatment", - "Treaty bodies" - ] - }, - { - "text": "Continue to implement specific measures to raise awareness of human rights standards, particularly as regards antidiscrimination, and educate the society and train professionals working in this field ", - "values": [ - "Human rights education and training" - ] - }, - { - "text": "React positively to requests for visits in 2010 by the Special Rapporteur on the independence of judges and lawyers and by the Special Rapporteur on torture and other cruel, inhuman or degrading treatment or punishment", - "values": [ - "Justice", - "Special procedures", - "Torture and other CID treatment" - ] - }, - { - "text": "Implement the recommendations of the Special Rapporteur on the Right to Food in the report on his visit to the country", - "values": [ - "Special procedures" - ] - }, - { - "text": "Continue the work to achieve equal representation for men and women not only in the National Assembly, but also at all the levels of State powers.", - "values": [ - "Women's rights" - ] - }, - { - "text": "Continue the implementation of existing programmes and projects to enhance various socio-economic rights with a view to achieving the Millennium Development Goals ", - "values": [ - "Development", - "ESC rights - general" - ] - }, - { - "text": "Step up measures to prevent suicide, especially among young people", - "values": [ - "Other" - ] - }, - { - "text": "Continue its efforts to prevent impunity for perpetrators of human trafficking and towards the principle of non-criminalization of victims", - "values": [ - "Impunity", - "Trafficking" - ] - }, - { - "text": "Ratify the Second Optional Protocol to ICCPR as soon as possible ", - "values": [ - "Death penalty", - "International instruments" - ] - }, - { - "text": "Review counter-terrorism legislation", - "values": [ - "Counter-terrorism" - ] - }, - { - "text": "Consider further improving existing legislation in order to close the gaps in the protection of women against discrimination ", - "values": [ - "Women's rights" - ] - }, - { - "text": "Continue effective efforts to combat trafficking in human beings", - "values": [ - "Trafficking" - ] - }, - { - "text": "Continue with the process of harmonizing national laws, regulations and legislations with the provisions of the international human rights treaties to which it is a party and take appropriate measures in this regard ", - "values": [ - "International instruments" - ] - }, - { - "text": "Take steps to further strengthen the impartiality and independence of the judiciary by implementing existing judicial procedures, and by promptly and thoroughly investigating any allegations or complaints of corruption in its courts", - "values": [ - "Corruption", - "Justice" - ] - }, - { - "text": "Establish an effective National Preventative Mechanism within the one year deadline established by the Optional Protocol to the Convention against Torture and Other Cruel, Inhuman or Degrading Treatment or Punishment (OPCAT) and hold early civil society consultations on the sort of mechanism that would be most appropriate", - "values": [ - "Detention", - "International instruments", - "Torture and other CID treatment" - ] - }, - { - "text": "Step up their efforts and undertake credible investigations and prosecutions against members of both sides of the post-electoral conflict, including the security forces, thus contributing to the end of impunity", - "values": [ - "Impunity", - "Justice" - ] - }, - { - "text": "Increase its efforts to promote tolerance and anti-discriminatory attitudes among all the population and promote respect for human rights and social cohesion", - "values": [ - "General" - ] - }, - { - "text": "Actively promote and ensure marginalized and vulnerable groups are both effectively and meaningfully involved in the national reconciliation process ", - "values": [ - "Justice" - ] - }, - { - "text": "Adopt the draft law establishing quotas for women in elections, putting them in an advantageous position, as follow-up to paragraphs 108.42, 108.50 and 108.87 of the recommendations from the second cycle", - "values": [ - "Women's rights" - ] - }, - { - "text": "Submit its report under the International Covenant on Civil and Political Rights as soon as possible, seeking technical support, if necessary ", - "values": [ - "CP rights - general", - "Treaty bodies" - ] - }, - { - "text": "Continue and intensify efforts for further promotion of economic, social and cultural rights with a view to better realize the Millennium Development Goals. In this context we recommend Gambia to benefit from technical and financial assistance by the international community, which is vital to this crucial endeavor", - "values": [ - "ESC rights - general", - "Technical assistance and cooperation" - ] - }, - { - "text": "Continue to take active measures to ensure the effective implementation of the 2009 Law Combating Domestic Violence", - "values": [ - "Rights of the Child", - "Women's rights" - ] - }, - { - "text": "Engage in national consultations with relevant stakeholders to consider the possible ratification of the ICRMW ", - "values": [ - "International instruments", - "Labour", - "Migrants" - ] - }, - { - "text": "Impartially investigate all allegations of extra-judicial killings and arbitrary executions, to prosecute those responsible, and accept the requests for a visit by the Special Rapporteur on extrajudicial, summary or arbitrary execution, and the Working Group on Enforced or Involuntary Disappearances ", - "values": [ - "Extrajudicial executions", - "Special procedures" - ] - }, - { - "text": "End all violations of Muslim and Christian holy sites", - "values": [ - "Freedom of religion and belief" - ] - }, - { - "text": "Extend a standing invitation to all special procedures of the United Nations", - "values": [ - "Special procedures" - ] - }, - { - "text": "Implement policies that reverse the inequality of opportunities and treatment between women and men in terms of access to employment", - "values": [ - "Women's rights" - ] - }, - { - "text": "Take further concrete steps to ensure that existing human rights legislation is implemented and enforced ", - "values": [ - "General" - ] - }, - { - "text": "Adopt a national plan to combat social exclusion and vulnerability of women belonging to Muslim communities, Roma women, migrants and women living in rural areas", - "values": [ - "Freedom of religion and belief", - "Migrants", - "Minorities", - "Women's rights" - ] - }, - { - "text": "Swiftly adopt the law on the protection of human rights defenders by the Ivorian Parliament, and its immediate implementation ", - "values": [ - "Human rights defenders" - ] - }, - { - "text": "Revive efforts to develop a national action plan on combating gender-based violence", - "values": [ - "Women's rights" - ] - }, - { - "text": "Expedite the enactment of the proposed Women Empowerment and Gender Equality Bill", - "values": [ - "Women's rights" - ] - }, - { - "text": "Adopt further measures to ensure accountability of the police for their proper, sensitive and effective conduct in cases of violence against women and to ensure better accessibility to protected housing for victims of domestic violence ", - "values": [ - "Justice", - "Women's rights" - ] - }, - { - "text": "Develop appropriate mechanisms to receive complaints from victims and provide adequate investigation and prosecution.", - "values": [ - "Justice" - ] - }, - { - "text": "Regarding the "Caprivi" trial provide adequate compensation for the 35 persons acquitted who had spent long periods in remand detention", - "values": [ - "Detention", - "Justice" - ] - }, - { - "text": "Prioritize law reform process", - "values": [ - "Justice" - ] - }, - { - "text": "Adopt legislative and practical measures to combat accusations against children for witchcraft by, inter alia, criminalizing the witchcraft accusations, providing protection to children, and by awareness-raising, including in cooperation with civil society", - "values": [ - "Civil society", - "Human rights education and training", - "Justice", - "Rights of the Child", - "Women's rights" - ] - }, - { - "text": "Strengthen legal and institutional measures to prevent and suppress manifestations of racism, xenophobia and intolerance ", - "values": [ - "Racial discrimination" - ] - }, - { - "text": "Swiftly promulgate the statute on civil societies, which will enable the civil society to perform its tasks effectively and in full autonomy ", - "values": [ - "Civil society" - ] - }, - { - "text": "Consider ratifying or acceding to: OP-CAT", - "values": [ - "Detention", - "International instruments", - "Torture and other CID treatment" - ] - }, - { - "text": "Further improve the professionalism of the police force.", - "values": [ - "Public security" - ] - }, - { - "text": "Provide more resources for the pursuit of all MDGs and the promotion of economic, social and cultural rights for the population, particularly social vulnerable groups and those who live in remote areas ", - "values": [ - "ESC rights - general" - ] - }, - { - "text": "Ratify the International Convention for the Protection of All Persons from Enforced Disappearance as well as the Second Optional Protocol to the International Covenant on Civil and Political Rights, aiming at abolition of the death penalty ", - "values": [ - "Death penalty", - "Enforced disappearances", - "International instruments" - ] - }, - { - "text": "Investigate and prosecute all allegations of professional misconduct, and implement extensive human rights education and training programmes for law enforcement personnel to prevent this negative phenomenon ", - "values": [ - "Human rights education and training", - "Human rights violations by state agents" - ] - }, - { - "text": "Carry on its efforts on education and training for the population ", - "values": [ - "Right to education" - ] - }, - { - "text": "Continue efforts in combating discrimination against women in all levels ", - "values": [ - "Women's rights" - ] - }, - { - "text": "Ensure that victims of hate crimes have access to assistance and protection, including counselling and legal assistance ", - "values": [ - "Racial discrimination" - ] - }, - { - "text": "Extend an open invitation to all of the special procedures of the Human Rights Council ", - "values": [ - "Special procedures" - ] - }, - { - "text": "Increase international, regional and bilateral cooperation to prevent human trafficking", - "values": [ - "Trafficking" - ] - }, - { - "text": "Cooperate fully with the United Nations treaty bodies", - "values": [ - "Treaty bodies" - ] - }, - { - "text": "Ratify the International Convention for the Protection of All Persons from Enforced Disappearance and recognize the competence of the Committee on Enforced Disappearances (in accordance with articles 31 and 32 of this instrument)", - "values": [ - "Enforced disappearances", - "International instruments", - "Treaty bodies" - ] - }, - { - "text": "Implement the accepted recommendations from the first universal periodic review of increasing the oversight of extracting and logging industries as well as related enterprises and businesses, with a view to mitigating the adverse human rights effects on affected populations and reducing its negative impact in the environment establishing more rigorous and transparent measures ", - "values": [ - "Business and human rights", - "Environment", - "UPR process" - ] - }, - { - "text": "Conduct impartial and objective investigations of all cases of cruel treatment of adopted children in order to eliminate impunity for such crimes", - "values": [ - "Impunity", - "Rights of the Child", - "Torture and other CID treatment" - ] - }, - { - "text": "Implement a system of budget monitoring, accountability and transparency for each of the three islands and the Union Government as a whole.", - "values": [ - "Corruption" - ] - }, - { - "text": "Continue to give greater prominence to gender equality and ensure the National Women's Institute is adequately resourced ", - "values": [ - "Women's rights" - ] - }, - { - "text": "Accelerate the analysis process for the ratification of international human rights treaties to which it is not yet a party and take appropriate measures for reporting progress on the implementation of the instruments to which it is already a party", - "values": [ - "International instruments" - ] - }, - { - "text": "Consider legislative measures to deal with sexual harassment.", - "values": [ - "Women's rights" - ] - }, - { - "text": "Take the necessary steps to ensure equal access to employment and training opportunities to the Kalinago people and persons with disabilities", - "values": [ - "Disabilities", - "Indigenous peoples", - "Labour" - ] - }, - { - "text": "Continue its efforts for stability, national reconciliation and the protection of human rights", - "values": [ - "Justice" - ] - }, - { - "text": "Elaborate an inclusive strategy for the protection of children, particularly concerning all forms of violence, abuse, and access to education without discrimination", - "values": [ - "Right to education", - "Rights of the Child" - ] - }, - { - "text": "Continue its work towards the eradication of acts of racism and other forms of discrimination and intolerance", - "values": [ - "Racial discrimination" - ] - }, - { - "text": "Increase efforts to prevent and sanction gender violence and sexual abuse", - "values": [ - "Women's rights" - ] - }, - { - "text": "Consider ratifying the Optional Protocol to the Convention on Persons with Disabilities ", - "values": [ - "Disabilities", - "International instruments" - ] - }, - { - "text": "Strengthen ongoing schemes to reduce unemployment, particularly among the youth", - "values": [ - "Development" - ] - }, - { - "text": "Guarantee that hate to foreigners and racial and religious extremism are not obstacles in dealing with refugees and asylum seekers", - "values": [ - "Asylum-seekers - refugees", - "Freedom of religion and belief", - "Racial discrimination" - ] - }, - { - "text": "Adopt appropriate measures to disseminate widely and ensure full observance of the Declaration on Human Rights Defenders.", - "values": [ - "Human rights defenders" - ] - }, - { - "text": "Re-consider the approach on the nature of prohibition of torture and to review the non-refoulement principles in its domestic legislation", - "values": [ - "Torture and other CID treatment" - ] - }, - { - "text": "Take further measures with a view to ensure that all children enjoy equal access to health services", - "values": [ - "Right to health", - "Rights of the Child" - ] - }, - { - "text": "Continue its efforts to ensure adequate protection for vulnerable persons living in difficult conditions", - "values": [ - "Minorities" - ] - }, - { - "text": "Continue to enhance its legislative and protection frameworks to combat and prevent all forms of trafficking in persons", - "values": [ - "Trafficking" - ] - }, - { - "text": "Design a strategy against trafficking and sexual exploitation of women and girls covering the proper detection and protection of victims, with an impact on the whole country", - "values": [ - "Rights of the Child", - "Trafficking", - "Women's rights" - ] - }, - { - "text": "Remain steadfast in pursuing its impressive policies aimed at gender equality, particularly by strengthening measures to curb gender-based violence and by reducing maternal mortality", - "values": [ - "Right to health", - "Women's rights" - ] - }, - { - "text": "Step up efforts to ensure protection of journalists and human rights defenders", - "values": [ - "Freedom of the press", - "Human rights defenders" - ] - }, - { - "text": "Implement and enforce the changes to the Criminal Code which criminalize all forms of trafficking and raise prison sentences for anyone committing the offense of trafficking in persons ", - "values": [ - "Trafficking" - ] - }, - { - "text": "Strengthen the adoption of measures aimed at ensuring greater education coverage ", - "values": [ - "Right to education" - ] - }, - { - "text": "Continue advancing measures to ensure the right to freedom of association and expression for all Rwandans, guaranteeing an adequate environment for the activities of opposition sectors or parties", - "values": [ - "Freedom of association and peaceful assembly", - "Freedom of opinion and expression" - ] - }, - { - "text": "Further enhance efforts to develop the human rights education system and to strengthen a culture of human rights ", - "values": [ - "Human rights education and training" - ] - }, - { - "text": "Continue and strengthen social dialogue to support further enjoyment of economic social and cultural rights by large segments of the Georgian population ", - "values": [ - "ESC rights - general" - ] - }, - { - "text": "Allow the access of international observers to the places of detention", - "values": [ - "Detention" - ] - }, - { - "text": "Encourage awareness of the state language within the society as a whole ", - "values": [ - "Other" - ] - }, - { - "text": "Expand micro-credit and financing schemes, with a view to expanding the formal economy in the country and gradually reducing the inequality in income distribution", - "values": [ - "Development" - ] - }, - { - "text": "Amend the Labour Code so that compulsory arbitration may only be imposed on worker and employer organizations in the case of national or local crisis ", - "values": [ - "Labour" - ] - }, - { - "text": "Take concrete measures to prohibit and eliminate child or forced marriage", - "values": [ - "Rights of the Child", - "Women's rights" - ] - }, - { - "text": "Conduct a wider review of its penal code in assessing its effectiveness to address domestic violence cases", - "values": [ - "Rights of the Child", - "Women's rights" - ] - }, - { - "text": "Allow for a requested visit by the Working Group on Arbitrary Detention \n", - "values": [ - "Detention", - "Special procedures" - ] - }, - { - "text": "Consider policies and legal provisions to encourage equal pay practices ", - "values": [ - "Women's rights" - ] - }, - { - "text": "Pursue with resolution the positive efforts aimed at restoring a normal constitutional life by emphasizing the democratic foundation and respect for human rights ", - "values": [ - "General" - ] - }, - { - "text": "Strengthen policy that would protect and promote food security as well as increase in the access to adequate, clean and safe drinking water especially for the population who live below poverty line ", - "values": [ - "Poverty", - "Right to food", - "Right to water and sanitation" - ] - }, - { - "text": "Continue the efforts towards raising the enrolment rate for children in schools, particularly for girls", - "values": [ - "Right to education", - "Rights of the Child", - "Women's rights" - ] - }, - { - "text": "Continue its engagement with the international community to ensure that it delivers on its promises to support the post-referendum political transition ", - "values": [ - "Elections" - ] - }, - { - "text": "Strengthen sexual and reproductive health services to ensure that women who qualify for legal abortion services are able to access safe, timely, quality and free services in all Mexican states", - "values": [ - "Right to health", - "Women's rights" - ] - }, - { - "text": "Fully align its national legislation with the obligations arising from the Rome Statute", - "values": [ - "International instruments", - "Justice" - ] - }, - { - "text": "Share its experience and best practices with other interested countries, regarding the protection and consolidation of the rights of persons with disabilities", - "values": [ - "Disabilities" - ] - }, - { - "text": "Pay more attention, at all administrative levels, to the rights of indigenous peoples, especially to ensure their land rights ", - "values": [ - "Indigenous peoples", - "Right to land" - ] - }, - { - "text": "Amend the current Employment Permit System Act to ensure that an application for a visa extension or a renewal is not restricted or refused to migrant workers who have changed jobs", - "values": [ - "Labour", - "Migrants" - ] - }, - { - "text": "Review its legislation with a view to prohibiting all forms of corporal punishment of children", - "values": [ - "Rights of the Child", - "Torture and other CID treatment" - ] - }, - { - "text": "Enact legislation to ensure that all persons may freely exercise their religion in public and build places of worship ", - "values": [ - "Freedom of religion and belief" - ] - }, - { - "text": "Reinstate juvenile courts and raise the age of criminal responsibility to 14 years, for all crimes, in line with international standards", - "values": [ - "International instruments", - "Rights of the Child" - ] - }, - { - "text": "Adopt measures to guarantee the rights of persons with disabilities, in particular, to fight against all forms of discrimination faced by women with disabilities, and regarding the lack of equal opportunities for minors with disabilities, with a particular attention to albino children ", - "values": [ - "Disabilities", - "Rights of the Child", - "Women's rights" - ] - }, - { - "text": "Complaints of harassment of journalists and human rights defenders receive prompt response and adequate measures for their safety be taken.", - "values": [ - "Freedom of the press", - "Human rights defenders" - ] - }, - { - "text": "Take concrete measures in order to ensure that any interference with the right to privacy comply with the principles of legality, proportionality and necessity, regardless of the nationality or location of the individuals affected", - "values": [ - "Privacy" - ] - }, - { - "text": "Take action in order to provide for effective education programmes with regard to HIV-AIDS prevention.", - "values": [ - "HIV - Aids" - ] - }, - { - "text": "Conclude the investigation of the stadium massacre to ensure that those culpable be held to account", - "values": [ - "Justice" - ] - }, - { - "text": "Increase efforts to improve the whole system with regard to the indigenous peoples", - "values": [ - "Indigenous peoples" - ] - }, - { - "text": "Enhance cooperation with the relevant United Nation organizations to continue the efforts to reduce maternal and child mortality and improve the access of children to health care ", - "values": [ - "Right to health", - "Rights of the Child", - "Technical assistance and cooperation", - "Women's rights" - ] - }, - { - "text": "Work actively to abolish legal and factual discrimination based on ethnicity, gender and caste, inter alia, by developing effective and independent mechanisms for the implementation of the Caste-based Discrimination and Untouchability Act", - "values": [ - "Minorities", - "Racial discrimination", - "Women's rights" - ] - }, - { - "text": "Strengthen legislation aimed at the protection of children from all forms of ill-treatment and violence", - "values": [ - "Rights of the Child" - ] - }, - { - "text": "Secure greater investment in the education sector, without delay, in order to achieve the Education for All goal by 2015 ", - "values": [ - "Right to education" - ] - }, - { - "text": "Cooperate closely with civil society and NGOs in the follow-up to this review ", - "values": [ - "Civil society", - "UPR process" - ] - }, - { - "text": "Continue to make efforts to guarantee equality between men and women so that women may play important roles in the decision-making processes of public institutions ", - "values": [ - "Women's rights" - ] - }, - { - "text": "Do not detain migrants other than in exceptional cases, limit this detention to six months and bring detention conditions into line with international standards in the field of human rights ", - "values": [ - "Detention", - "International instruments", - "Migrants" - ] - }, - { - "text": "Undertake the necessary steps to change traditional customs and patriarchal practices that violate the human rights of girls and women ", - "values": [ - "Rights of the Child", - "Women's rights" - ] - }, - { - "text": "Investigate promptly, thoroughly and impartially all acts of brutality and excessive use of force by law enforcement personnel ", - "values": [ - "Human rights violations by state agents" - ] - }, - { - "text": "Take measures to ensure that the Constitutional Court, which is provided for under the Constitution, becomes functional as soon as possible", - "values": [ - "Justice" - ] - }, - { - "text": "Step up its efforts to combat discrimination and intolerance, particularly towards migrants, foreigners, asylum seekers and refugees", - "values": [ - "Asylum-seekers - refugees", - "Migrants", - "Minorities", - "Racial discrimination" - ] - }, - { - "text": "Continue its efforts to eradicate the practice of female genital mutilation, encouraging the strengthening of its efforts for the total emancipation of women and their full participation in public affairs ", - "values": [ - "Rights of the Child", - "Torture and other CID treatment", - "Women's rights" - ] - }, - { - "text": "Define incitement to violence on grounds of sexual orientation and gender identity as a criminal offence", - "values": [ - "Sexual Orientation and Gender Identity" - ] - }, - { - "text": "Continue its efforts to include awareness of human rights within the school curricula", - "values": [ - "Human rights education and training" - ] - }, - { - "text": "Reject the proposed amendment to the media law to ensure a safe operating environment for journalists", - "values": [ - "Freedom of the press" - ] - }, - { - "text": "This is not to say that Government believes that there is no room for further improvement in the development of economic, social and cultural rights in Tonga. Rather that the Government has taken and will continue to take a range of measures by the adoption of policies and where capacity allows the change of laws that advance the economic, social and cultural well being of the people of Tonga. Further discussion on economic, social and cultural rights and the extent to which they ought to be justiciable is likely to arise in the course of the public consultation on a possible Bill of Rights and Responsibilities either separated from or incorporated into new Constitutional arrangements", - "values": [ - "ESC rights - general" - ] - }, - { - "text": "Recognize the rights of the Palestinian people to self-determination and respect their right to establish an independent state of which East Jerusalem is the capital", - "values": [ - "Other" - ] - }, - { - "text": "Ensure that freedom of opinion and expression are encouraged and protected, including for individuals and organizations communicating via online public platforms", - "values": [ - "Freedom of opinion and expression", - "Freedom of the press" - ] - }, - { - "text": "Implement reforms to reduce processing times for judicial cases and reduce perceptions of unfairness in the judicial system", - "values": [ - "Justice" - ] - }, - { - "text": "Raise the capacity and effectiveness of investigation and prosecution of all allegations of torture and ill-treatment by members of both State security forces and private companies and strengthen legal safeguards available for victims of torture and ill-treatment", - "values": [ - "Human rights violations by state agents", - "Torture and other CID treatment" - ] - }, - { - "text": "Revise its social benefit programmes for assisting vulnerable families", - "values": [ - "Minorities" - ] - }, - { - "text": "Ensure that foreign women who become victims of domestic violence, sexual abuse, trafficking in human beings and other forms of violence are guaranteed access to justice", - "values": [ - "Justice", - "Rights of the Child", - "Women's rights" - ] - }, - { - "text": "Continue its work to achieve the highest quality at all levels of education ", - "values": [ - "Right to education" - ] - }, - { - "text": "Increase technical cooperation on human rights issues including by granting access to the Special Rapporteur on the human rights situation ", - "values": [ - "Special procedures" - ] - }, - { - "text": "Amend its sanction and regulation system (on freedom of press) so it falls within the purview of the judicial authority and not the administrative authority ", - "values": [ - "Freedom of the press" - ] - }, - { - "text": "Take the necessary legal and policy measures to end discrimination, including of women, children and Dalits ", - "values": [ - "Minorities", - "Rights of the Child", - "Women's rights" - ] - }, - { - "text": "Eliminate definitively and without further delay capital punishment from the military code", - "values": [ - "Death penalty" - ] - }, - { - "text": "Take appropriate measures to bring domestic law into full compliance with the International Covenant on Civil and Political Rights.", - "values": [ - "CP rights - general", - "International instruments" - ] - }, - { - "text": "Take further steps to create better work opportunities for the members of minority groups", - "values": [ - "Labour", - "Minorities" - ] - }, - { - "text": "Devote an adequate share of the national budget to social policies, prioritizing measures that improve access to food, health, education, housing, water and sanitation, especially for the most vulnerable ", - "values": [ - "Right to education", - "Right to food", - "Right to health", - "Right to housing", - "Right to water and sanitation" - ] - }, - { - "text": "Consider utilizing the Yogyakarta Principles on the Application of International Human Rights Law in relation to Sexual Orientation and Gender Identity as a guide to assist in policy development ", - "values": [ - "International instruments", - "Sexual Orientation and Gender Identity" - ] - }, - { - "text": "Renew efforts to ratify OP-CAT, to establish a national preventive mechanism regarding torture, and ensure investigation and prosecution in cases of extra-judicial killing and torture, notably those implicating state agents", - "values": [ - "Detention", - "Extrajudicial executions", - "Human rights violations by state agents", - "International instruments", - "Torture and other CID treatment" - ] - }, - { - "text": "Consider becoming party to the Optional Protocol to the Convention on the Rights of the Child and that relating to persons with disabilities, both of which relate to individual grievance procedures ", - "values": [ - "Disabilities", - "International instruments", - "Rights of the Child" - ] - }, - { - "text": "Solve the situation of statelessness of the different populations living in the territory by recognizing their ties and long stay in the country", - "values": [ - "Statelessness and the right to nationality" - ] - }, - { - "text": "Continue positive ongoing efforts with a view to ensuring the access of all citizens to health ", - "values": [ - "Right to health" - ] - }, - { - "text": "Become a party to and implement the Convention against Torture and Other Cruel, Inhuman or Degrading Treatment or Punishment ", - "values": [ - "International instruments", - "Torture and other CID treatment" - ] - }, - { - "text": "Start a public information campaign to combat discrimination based on sexual orientation ", - "values": [ - "Sexual Orientation and Gender Identity" - ] - }, - { - "text": "Lower the amount of workers needed to form a trade union and repeal policies which result in exerting influence over the appointment of union leaders, in order to strengthen the full enjoyment of the right to freedom of association ", - "values": [ - "Freedom of association and peaceful assembly", - "Labour" - ] - }, - { - "text": "Take concrete measures to ensure effective implementation of the Act prohibiting female genital mutilation, including by investigating relevant incidents and prosecuting perpetrators as well as by rehabilitating victims", - "values": [ - "Rights of the Child", - "Torture and other CID treatment", - "Women's rights" - ] - }, - { - "text": "Consider adhering to the human rights instruments to which it is not yet party, particularly the Optional Protocol to the Convention against Torture and Other Cruel, Inhuman or Degrading Treatment or Punishment ", - "values": [ - "Detention", - "International instruments", - "Torture and other CID treatment" - ] - }, - { - "text": "Take concrete measures such as the establishment of a computerized database on prisoners, to improve the functioning of prisons and the conditions of detainees", - "values": [ - "Detention" - ] - }, - { - "text": "Abrogate all discriminatory laws against non-Jewish children", - "values": [ - "Racial discrimination", - "Rights of the Child" - ] - }, - { - "text": "Establish a NHRI in accordance with the Paris Principles through expeditious efforts. ", - "values": [ - "National Human Rights Institution" - ] - }, - { - "text": "Intensify its efforts to provide oversight over British companies operating abroad with regard to any negative impact of their activities on the enjoyment of human rights, particularly in conflict areas, which includes situations of foreign occupation, where there are heightened risks of human rights abuses", - "values": [ - "Business and human rights" - ] - }, - { - "text": "Authorities ensure separate incarceration of juveniles and adults and of pre-trial detainees and convicted prisoners", - "values": [ - "Detention", - "Rights of the Child" - ] - }, - { - "text": "Adopt and effectively implement comprehensive legislation criminalising rape, domestic violence, sexual harassment and other forms of violence", - "values": [ - "Rights of the Child", - "Women's rights" - ] - }, - { - "text": "Continue its process of supporting integration for newly arrived immigrants, particularly those from ethnic minority backgrounds ", - "values": [ - "Migrants", - "Minorities" - ] - }, - { - "text": "Comply without exception with the principle of non-refoulement when people are in danger of being tortured or ill-treated", - "values": [ - "Asylum-seekers - refugees", - "Torture and other CID treatment" - ] - }, - { - "text": "Carry out all necessary efforts aimed at achieving the ratification of the human rights treaties signed by Angola between 2013 and 2014", - "values": [ - "International instruments" - ] - }, - { - "text": "Conduct thorough and objective investigation of facts concerning use of torture against imprisoned persons in the secret prisons of United States of America and detainees of the detention centres in Bagram and Guantanamo, bring those who are responsible for these violations to justice, and undertake all necessary measures to provide redress to those whose rights were violated, including payment of necessary compensation ", - "values": [ - "Detention", - "Human rights violations by state agents", - "Torture and other CID treatment" - ] - }, - { - "text": "Adopt the draft Law on protection of children from corporal punishment ", - "values": [ - "Rights of the Child", - "Torture and other CID treatment" - ] - }, - { - "text": "Continue its efforts to promote equal opportunities of those with migrant background and for their participation in the social, economic and cultural life in Germany", - "values": [ - "ESC rights - general", - "Migrants" - ] - }, - { - "text": "Publicly condemn any attack or intimidation of journalists and human rights defenders, investigate such acts and bring perpetrators to justice", - "values": [ - "Freedom of the press", - "Human rights defenders" - ] - }, - { - "text": "Step up efforts to provide equal access to education and health care to all children, irrespective of their immigration status ", - "values": [ - "Migrants", - "Right to education", - "Right to health", - "Rights of the Child" - ] - }, - { - "text": "Take concrete steps to end ethnic segregation in schools, include diversity and tolerance education in primary school curricula, and submit outstanding reports to the implementation on the UNESCO Convention against Discrimination in Education", - "values": [ - "Human rights education and training", - "Minorities", - "Racial discrimination", - "Right to education" - ] - }, - { - "text": "Continue to implement policies and develop infrastructure that increase access to employment, particularly for youths", - "values": [ - "Development" - ] - }, - { - "text": "Ensure that everyone, including human rights defenders, members of civil society and journalists can exercise their legitimate activities, even their rights to freedoms of expression and assembly in accordance with the obligations under the International Covenant on Civil and Political Rights ", - "values": [ - "Civil society", - "Freedom of association and peaceful assembly", - "Freedom of opinion and expression", - "Freedom of the press", - "Human rights defenders", - "International instruments" - ] - }, - { - "text": "Enact laws and take appropriate measures in order to criminalize hate speech", - "values": [ - "Racial discrimination" - ] - }, - { - "text": "Intensify efforts to guarantee gender equality and to empower women, including by developing its national policy on gender equality and by continuing the work currently underway in the Intersectoral Commission to Eradicate Violence against women and the Legal Commission on Equity for Women in Congress ", - "values": [ - "Women's rights" - ] - }, - { - "text": "Take measures to eliminate discrimination against indigenous people and ensure their easy access to justice and the right to property", - "values": [ - "Indigenous peoples", - "Racial discrimination" - ] - }, - { - "text": "Take appropriate measures to develop an environment conducive to the empowerment of civil society", - "values": [ - "Civil society" - ] - }, - { - "text": "Continue its positive efforts in addressing the issue of violence against women, including ensuring the effective implementation of recommendations made by its national platform to end gender-based violence which was introduced in October 2011", - "values": [ - "Women's rights" - ] - }, - { - "text": "Take all appropriate measures to end domestic violence", - "values": [ - "Rights of the Child", - "Women's rights" - ] - }, - { - "text": "Continue efforts to promote education for all and especially ensure access to education for girls", - "values": [ - "Right to education", - "Rights of the Child", - "Women's rights" - ] - }, - { - "text": "Continue its efforts in advancing its Constitutional Review process including constitutional issues affecting the Maori people ", - "values": [ - "Indigenous peoples" - ] - }, - { - "text": "Bring the definition of torture in domestic law into line with the definition in article 1 of CAT", - "values": [ - "International instruments", - "Torture and other CID treatment" - ] - }, - { - "text": "Continue to work to include the norms of the Convention for the Elimination of Discrimination against Women in domestic law", - "values": [ - "International instruments", - "Women's rights" - ] - }, - { - "text": "Redouble its efforts for the ratification of the International Convention on the Protection of the Rights of All Migrant Workers and Members of Their Families", - "values": [ - "International instruments", - "Labour", - "Migrants" - ] - }, - { - "text": "Rapidly complete the process of harmonizing national legislation with CAT with respect to the definition of torture", - "values": [ - "International instruments", - "Torture and other CID treatment" - ] - }, - { - "text": "Acknowledge the existence of human rights violations taking place in the Democratic People's Republic of Korea and act immediately on the recommendations of the COI", - "values": [ - "Justice" - ] - }, - { - "text": "Continue its efforts to promote religious freedom, and continue to broaden the space for interfaith dialogue ", - "values": [ - "Freedom of religion and belief" - ] - }, - { - "text": "Establish efficient mechanisms to investigate and punish hate crimes, racial harassment and racial discrimination against minorities and vulnerable groups", - "values": [ - "Minorities", - "Racial discrimination" - ] - }, - { - "text": "Immediately establish a de jure moratorium on capital executions, and commute all death sentences pronounced to date into penalties of deprivation of liberty with a view to abolishing the death penalty ", - "values": [ - "Death penalty" - ] - }, - { - "text": "Take the necessary measures to ensure that birth registration is obligatory and free for all children", - "values": [ - "Rights of the Child", - "Statelessness and the right to nationality" - ] - }, - { - "text": "Consider expediting the process to pass the 108th Constitutional Amendment Bill which seeks to reserve a significant portion of seats for women at the Lower House and state legislative assemblies and consider the ratification of the Optional Protocol to Convention on the Elimination of All Forms of Discrimination against Women ", - "values": [ - "International instruments", - "Women's rights" - ] - }, - { - "text": "Take further appropriate and effective measures to eliminate discrimination against Roma and ensure in particular their access to education, healthcare and employment without discrimination", - "values": [ - "Minorities", - "Racial discrimination", - "Right to education", - "Right to health" - ] - }, - { - "text": "Step up efforts in strengthening its National Human Rights Commission in line with the Paris Principles", - "values": [ - "National Human Rights Institution" - ] - }, - { - "text": "Actively combat domestic violence and violence against children", - "values": [ - "Rights of the Child" - ] - }, - { - "text": "Cooperate with international and regional organizations and diplomatic missions to tackle problems experienced by asylum seekers, refugees and foreigners who lose their documents in the country", - "values": [ - "Asylum-seekers - refugees", - "Migrants" - ] - }, - { - "text": "Ensure best protection of human rights and follow-up to the implementation of international instruments.", - "values": [ - "International instruments" - ] - }, - { - "text": "Continue its engagement with relevant United Nations bodies and other related international organisations to fulfil its commitment to promote and protect the rights of its people, especially the vulnerable groups", - "values": [ - "Technical assistance and cooperation" - ] - }, - { - "text": "Consider seriously an immediate moratorium on executions as a first step to the abolition of the death penalty and add the possibility of a life sentence without parole to the range of penalties for vicious crimes", - "values": [ - "Death penalty" - ] - }, - { - "text": "Continue its constructive role and contribution in the promotion and protection of human rights in the region ", - "values": [ - "Other" - ] - }, - { - "text": "Ratify the Protocol to the Covenant on Economic, Social and Cultural Rights ", - "values": [ - "ESC rights - general", - "International instruments" - ] - }, - { - "text": "Step up efforts to improve its legal and institutional frameworks for protection against discrimination", - "values": [ - "Other" - ] - }, - { - "text": "Lift restrictions to freedom of movement and local orders", - "values": [ - "Freedom of movement" - ] - }, - { - "text": "Encouraged Benin, in particular in the areas of economic, social and cultural rights, to continue achieving its progress.", - "values": [ - "ESC rights - general" - ] - }, - { - "text": "Strengthen the vigilance of the authorities and take effective measures to address the serious issue of domestic violence against women.", - "values": [ - "Women's rights" - ] - }, - { - "text": "Issue a standing invitation to all mandate holders of the Human Rights Council ", - "values": [ - "Special procedures" - ] - }, - { - "text": "Speed up the process of ratification of the conventions it has signed, and consider acceding to other international human rights instruments to which it is not yet a party, such as the International Convention on the Protection of the Rights of All Migrant Workers and Members of Their Families (ICRMW)", - "values": [ - "International instruments", - "Labour", - "Migrants" - ] - }, - { - "text": "In light of the upcoming elections, implement key OSCE commitments for democratic elections ", - "values": [ - "Elections" - ] - }, - { - "text": "Keep up its efforts in raising awareness among law enforcement officers and security personnel throughout the country", - "values": [ - "Human rights education and training" - ] - }, - { - "text": "Extend a standing invitation to all special procedure mandate holders ", - "values": [ - "Special procedures" - ] - }, - { - "text": "Strengthen human rights training for security forces and prison officials", - "values": [ - "Human rights education and training" - ] - }, - { - "text": "Strengthen the independence, pluralism and resources of the National Human Rights Commission", - "values": [ - "National Human Rights Institution" - ] - }, - { - "text": "Work towards ensuring that its National Human Rights Commission accords in full with the Paris Principles ", - "values": [ - "National Human Rights Institution" - ] - }, - { - "text": "Complete the process of adopting the Children\u2019s Code currently under examination by the State Council and the criminal laws sanctioning domestic violence and trafficking in persons", - "values": [ - "Rights of the Child", - "Trafficking" - ] - }, - { - "text": "Ratify the Optional Protocol to the Convention on the Rights of Persons with Disabilities (OP-CRPD) ", - "values": [ - "Disabilities", - "International instruments" - ] - }, - { - "text": "Strengthen its efforts to address unequal access to the labour market and educational opportunities.", - "values": [ - "Labour", - "Right to education" - ] - }, - { - "text": "Ensure that provisions in the security package are in full compliance with its obligations under international law", - "values": [ - "Public security" - ] - }, - { - "text": "Further strengthen efforts in eliminating economic exploitation of children, including child labour, by implementing more effective measures on poverty eradication and access to education ", - "values": [ - "Rights of the Child" - ] - }, - { - "text": "Amend expeditiously the Births and Deaths Registration Act to ensure that all children born in Zimbabwe, regardless of their parents' origin, are issued with birth certificates", - "values": [ - "Rights of the Child", - "Statelessness and the right to nationality" - ] - }, - { - "text": "Continue with reforms and practical measures in line with international standards in order to reach gender equality ", - "values": [ - "Women's rights" - ] - }, - { - "text": "Submit the various overdue reports to the relevant treaty bodies", - "values": [ - "Treaty bodies" - ] - }, - { - "text": "Respect and fully guarantee the rights to freedom of expression, freedom of association and freedom of assembly, in particular in the context of measures undertaken to respond to violent extremism and terrorism", - "values": [ - "Counter-terrorism", - "Freedom of association and peaceful assembly", - "Freedom of opinion and expression" - ] - }, - { - "text": "Strengthen accountability and integrity standards within the judiciary by ensuring merit-based appointments and promoting career development", - "values": [ - "Justice" - ] - }, - { - "text": "Expedite the completion, and followed by the enactment of, the draft "Law on the Prevention of Human Trafficking and Protection of Victims"", - "values": [ - "Trafficking" - ] - }, - { - "text": "Decriminalize defamation and place it under the Civil Code in accordance with international standards ", - "values": [ - "Freedom of opinion and expression" - ] - }, - { - "text": "High priority is given to the fight against domestic violence, forced marriages and trafficking in human beings, including through the strengthening of provisions for the investigation of and punishments for such crimes, the provision of support and protection to the victims, and raising public awareness of them ", - "values": [ - "Human rights education and training", - "Rights of the Child", - "Trafficking", - "Women's rights" - ] - }, - { - "text": "Continue its efforts for all children to have access to education and health", - "values": [ - "Right to education", - "Right to health", - "Rights of the Child" - ] - }, - { - "text": "Continued efforts towards achieving the development goals in accordance with Tanzania's specific vision", - "values": [ - "Development" - ] - }, - { - "text": "Promote human rights through education and training", - "values": [ - "Human rights education and training" - ] - }, - { - "text": "Take appropriate measures to address discrimination against immigrants and asylum seekers in accessing to public services, housing, health and employment, in accordance with a concern expressed by the Committee on the Elimination of Racial Discrimination ", - "values": [ - "Asylum-seekers - refugees", - "Migrants", - "Racial discrimination", - "Treaty bodies" - ] - }, - { - "text": "Take further measures to protect the rights of human rights defenders and ensure that they, and also journalists, can be active in the country without facing threats to their safety. ", - "values": [ - "Freedom of the press", - "Human rights defenders" - ] - }, - { - "text": "Ratify the International Covenant on Civil and Political Rights, the International Covenant on Economic, Social and Cultural Rights, the International Convention on the Elimination of All Forms of Racial Discrimination, the Convention against Torture and Other Cruel, Inhuman or Degrading Treatment or Punishment and the Optional Protocol thereto, the Convention on the Rights of Persons with Disabilities, the International Convention for the Protection of All Persons from Enforced Disappearance, the Optional Protocol to the Convention on the Elimination of All Forms Discrimination against Women, and the Optional Protocols to the Convention on the Rights of the Child", - "values": [ - "International instruments" - ] - }, - { - "text": "Make efforts aimed at broadening the scope of application of freedom of expression", - "values": [ - "Freedom of opinion and expression" - ] - }, - { - "text": "Design a complete strategy against all forms of discrimination, including traditional and modern forms of slavery, which include practices of early and forced marriages, servitude, and forced labour of children", - "values": [ - "Labour", - "Racial discrimination", - "Rights of the Child", - "Women's rights" - ] - }, - { - "text": "Refrain from applying anti-terrorism legislation to Mapuche individuals in the context of intercultural conflicts, including land disputes, and increase political dialogue on indigenous issues ", - "values": [ - "Counter-terrorism", - "Indigenous peoples", - "Right to land" - ] - }, - { - "text": "Ratify, as early as possible, the International Convention on the Rights of All Migrant Workers and Members of Their families ", - "values": [ - "International instruments", - "Labour", - "Migrants" - ] - }, - { - "text": "Consider introducing specific provisions in the Islamic Penal Code about investigation, prosecution and punishment of perpetrators of domestic violence", - "values": [ - "Rights of the Child", - "Women's rights" - ] - }, - { - "text": "Achieve the remaining target of boys and girls primary and secondary education, and address the quality and inequality in education", - "values": [ - "Right to education", - "Rights of the Child" - ] - }, - { - "text": "Continue pursuing and enhancing housing programmes, which appear to have yielded good results ", - "values": [ - "Right to housing" - ] - }, - { - "text": "As a high priority, ratify OP-CAT and establish a National Preventative Mechanism ", - "values": [ - "Detention", - "International instruments", - "Torture and other CID treatment" - ] - }, - { - "text": "Avoid mandatory deprivation of liberty for asylum and refuge applicants while their petitions are processed", - "values": [ - "Asylum-seekers - refugees", - "Detention" - ] - }, - { - "text": "Submit the overdue report to the relevant United Nations treaty bodies", - "values": [ - "Treaty bodies" - ] - }, - { - "text": "Continue to encourage and support initiatives and activities to promote religious respect and tolerance", - "values": [ - "Freedom of religion and belief" - ] - }, - { - "text": "Reinforce efforts aimed at safeguarding rights of persons with disabilities, including guaranteeing their access to inclusive education", - "values": [ - "Disabilities", - "Right to education" - ] - }, - { - "text": "Strive to minimize human rights violation in its attempt to restore law and order in the country ", - "values": [ - "Justice" - ] - }, - { - "text": "Take concrete measures to ensure that justice be rendered to the victims of human rights abuses during the period of the war for independence as well as for their families and survivors ", - "values": [ - "Justice" - ] - }, - { - "text": "Submit overdue reports to the United Nations treaty bodies as a matter of priority ", - "values": [ - "Treaty bodies" - ] - }, - { - "text": "Provide public information on the number of detention camps, including administrative detention centres for drug treatment set up by the police, the military and the Ministry of Labour, on the number of persons detained therein, as well as on all forms of work in which detainees are involved ", - "values": [ - "Detention" - ] - }, - { - "text": "Provide access to legal status for asylum seekers and refugees without discrimination", - "values": [ - "Asylum-seekers - refugees", - "Racial discrimination" - ] - }, - { - "text": "Strengthen actions to promote and protect rights of women and child ", - "values": [ - "Rights of the Child", - "Women's rights" - ] - }, - { - "text": "Midterm report", - "values": [ - "UPR process" - ] - }, - { - "text": "Remove all anti-personnel mines and explosive remnants of war to prevent the falling of new casualties ", - "values": [ - "International humanitarian law" - ] - }, - { - "text": "Take the lead in addressing public trust in the media outlets ", - "values": [ - "Freedom of the press" - ] - }, - { - "text": "Continue to adopt measures to further improve the lives of vulnerable people in the country", - "values": [ - "Other" - ] - }, - { - "text": "Strengthen legislation against discrimination by adopting a comprehensive law against racism, racial discrimination, xenophobia and related intolerance", - "values": [ - "Racial discrimination" - ] - }, - { - "text": "Continue to further ensure access to sanitation facilities for girls, especially in rural schools ", - "values": [ - "Right to education", - "Right to health", - "Right to water and sanitation", - "Rights of the Child", - "Women's rights" - ] - }, - { - "text": "Do more to promote and protect freedom of religion or belief, including by safeguarding personal access to, and use and ownership of, religious literature and materials.", - "values": [ - "Freedom of religion and belief" - ] - }, - { - "text": "Allow the visits of human rights special procedures that are pending to take place in a timely manner and consider issuing a standing invitation to the human rights special procedures", - "values": [ - "Special procedures" - ] - }, - { - "text": "Continue its efforts aimed at improving the access of vulnerable populations and groups to the justice system ", - "values": [ - "Justice" - ] - }, - { - "text": "Implement further measures to stop female genital mutilation altogether. ", - "values": [ - "Rights of the Child", - "Torture and other CID treatment", - "Women's rights" - ] - }, - { - "text": "Adopt and implement a National Policy for persons with disabilities", - "values": [ - "Disabilities" - ] - }, - { - "text": "Redouble its efforts to fight racial discrimination, including through support to relevant NGOs ", - "values": [ - "Civil society", - "Racial discrimination" - ] - }, - { - "text": "Strengthen implementation of its obligations under the Convention on the Rights of the Child by adopting legislation based on the Organization of Eastern Caribbean States model Children (Care and Adoption) Bill, model Status of Children Bill, and model Child Justice Bill", - "values": [ - "International instruments", - "Rights of the Child" - ] - }, - { - "text": "Continue an inclusive process in the follow-up on UPR recommendations", - "values": [ - "UPR process" - ] - }, - { - "text": "Continue and strengthen its efforts to achieve gender equality in Government and public services at all levels.", - "values": [ - "Women's rights" - ] - }, - { - "text": "Stops acts of torture by United States government officials, not only in its sovereign territory, but also on foreign soil", - "values": [ - "Human rights violations by state agents", - "Torture and other CID treatment" - ] - }, - { - "text": "Ratify the Optional Protocol to the Convention against Torture and ensure a timely establishment of an effective national preventive mechanism", - "values": [ - "Detention", - "International instruments", - "Torture and other CID treatment" - ] - }, - { - "text": "Complete the new Constitution on time and take into account that peaceful coexistence requires that the right to freedom of religion for all citizens be clearly included and formulated according to international standards ", - "values": [ - "Freedom of religion and belief" - ] - }, - { - "text": "Increase the number of available shelters for victims of violence and their children", - "values": [ - "Rights of the Child", - "Women's rights" - ] - }, - { - "text": "Further promote gender equality so that women play a greater role in economic and social development ", - "values": [ - "Development", - "ESC rights - general", - "Women's rights" - ] - }, - { - "text": "Strengthen existing mechanisms in the current social, political and economic structures of the Fijian society to safeguard the rights of ethnic minorities", - "values": [ - "Minorities" - ] - }, - { - "text": "Implement a national programme devoted to eliminating the trafficking in women and girls and their involvement in acts of sexual exploitation while, at the same time, addressing the root causes of such crimes, and to include measures aimed at the social reintegration and rehabilitation of such individuals", - "values": [ - "Rights of the Child", - "Trafficking", - "Women's rights" - ] - }, - { - "text": "Consider establishing explicit legislation or policies that prohibit discrimination based on sexual orientation or gender identity", - "values": [ - "Sexual Orientation and Gender Identity" - ] - }, - { - "text": "Implement measures to reduce the gender pay gap and strengthen women's roles in leadership and managerial positions", - "values": [ - "Women's rights" - ] - }, - { - "text": "Modify legislation with respect to the death penalty, eliminating its mandatory application, ensuring that legislation is compatible with article 6 of the International Covenant on Civil and Political Rights.", - "values": [ - "Death penalty", - "International instruments" - ] - }, - { - "text": "Protect and promote the right of Nigerians to practice their religious faith or beliefs, including by enhancing the dialogue between different faith communities to address interreligious tensions - particularly those in the Middle Belt States - and to combat all forms of extremism", - "values": [ - "Freedom of religion and belief" - ] - }, - { - "text": "Respect freedom of expression, assembly and association, in particular by not prosecuting people on the sole grounds of their membership of a political movement, and by implementing the recommendations of the Special Rapporteur on the promotion and protection of the right to freedom of opinion and expression following his visit ", - "values": [ - "Freedom of association and peaceful assembly", - "Freedom of opinion and expression", - "Special procedures" - ] - }, - { - "text": "Issue a standing invitation to all special procedures of the Human Rights Council ", - "values": [ - "Special procedures" - ] - }, - { - "text": "Comply fully with its obligations under the ICCPR and the recommendation of HR Committee", - "values": [ - "CP rights - general", - "International instruments", - "Treaty bodies" - ] - }, - { - "text": "Implement in good faith relevant provisions of the Resolution 1648 (2009) adopted by the Parliamentary Assembly of the Council of Europe", - "values": [ - "International humanitarian law" - ] - }, - { - "text": "Rescind the recent amendments to the Penal Code, Press and Publications Law and the Law of Information System Crimes", - "values": [ - "Freedom of the press" - ] - }, - { - "text": "Ratify the Convention on the Elimination of All Forms of Racial Discrimination the Convention against Torture and Other Cruel, Inhuman or Degrading Treatment or Punishment and its Optional Protocol", - "values": [ - "Detention", - "International instruments", - "Racial discrimination", - "Torture and other CID treatment" - ] - }, - { - "text": "Strengthen and intensify actions to combat domestic violence ", - "values": [ - "Rights of the Child", - "Women's rights" - ] - }, - { - "text": "Establish a law to criminalize all forms of violence against women", - "values": [ - "Women's rights" - ] - }, - { - "text": "Re-establish the moratorium on death penalty in all cases. If not, extend that moratorium to the cases that are contrary to international law, including the death penalty for sexual orientation", - "values": [ - "Death penalty" - ] - }, - { - "text": "Strengthen the mandate of the Special Office for Children and give the Office additional powers to provide advisory and legal assistance in a wider range of cases", - "values": [ - "Rights of the Child" - ] - }, - { - "text": "Eradicate the practice of criadazgo and other forms of child labor", - "values": [ - "Labour", - "Rights of the Child" - ] - }, - { - "text": "Redouble its efforts to meet socioeconomic needs of its citizens ", - "values": [ - "ESC rights - general" - ] - }, - { - "text": "Meet its reporting obligations under the Convention on the Rights of the Child.", - "values": [ - "International instruments", - "Rights of the Child" - ] - }, - { - "text": "While continuing to protect freedom of opinion and expression consistent with article 73 of the Constitution, maintain article 233 (a) of the General Penal Code and article 27 of the Media Act, which explicitly prohibit hate speech and direct incitement to hatred ", - "values": [ - "Racial discrimination" - ] - }, - { - "text": "Give particular attention to potential discrimination based on multiple grounds ", - "values": [ - "Other" - ] - }, - { - "text": "Prioritize the implementation of measures to address all forms of violence against women in the family and in society and to ensure that women victims of violence have immediate means for protection and reparation.", - "values": [ - "Women's rights" - ] - }, - { - "text": "Combat violence against women and children, by implementing existing legislation and adopting comprehensive measures to address all forms of domestic violence", - "values": [ - "Rights of the Child", - "Women's rights" - ] - }, - { - "text": "Take the necessary steps to ensure police and security forces operate with greater respect for human rights, such as including comprehensive human rights and rule-of-law components in training for security forces ", - "values": [ - "Human rights education and training" - ] - }, - { - "text": "Consider the abolition of the death penalty and not ending the existing moratorium", - "values": [ - "Death penalty" - ] - }, - { - "text": "Fully cooperate with the commission of inquiry established by Human Rights Council resolution 31/20", - "values": [ - "Technical assistance and cooperation" - ] - }, - { - "text": "Redouble its efforts to prevent and eliminate all signs of racism and xenophobia", - "values": [ - "Racial discrimination" - ] - }, - { - "text": "Strengthen the national mechanisms for the access to appropriate education, including in rural regions", - "values": [ - "Right to education" - ] - }, - { - "text": "Continue to help the least developed countries affected by the world economic and financial crisis, and modify its development assistance to continue to increase the amount allocated for agriculture and stabilize populations in their countries of origin ", - "values": [ - "Development" - ] - }, - { - "text": "Improve access to drinking water and sanitation in rural areas and urban settlements as well as in key areas such as schools in order to bring about the realization of the right to drinking water and the right to sanitation", - "values": [ - "Right to water and sanitation" - ] - }, - { - "text": "Continue its efforts to develop an action plan to eliminate child labour and to give priority to inclusive education for all ", - "values": [ - "Labour", - "Right to education", - "Rights of the Child" - ] - }, - { - "text": "Cooperate fully with the ICC investigation, in accordance with Kenya's obligations under the Rome Statute, and establish a credible local tribunal in parallel ", - "values": [ - "International instruments", - "Justice" - ] - }, - { - "text": "Put an end and abolish the administrative detention of minors and separate them from adults in detention", - "values": [ - "Detention", - "Rights of the Child" - ] - }, - { - "text": "Continue its efforts in addressing the harmful practice of female genital mutilation and ensure that all such cases are promptly investigated and prosecuted and that victims have access to social and medical services", - "values": [ - "Rights of the Child", - "Torture and other CID treatment", - "Women's rights" - ] - }, - { - "text": "Develop and implement gender equality policies, particularly in the labour market, and policies to fight sexual and domestic violence ", - "values": [ - "Women's rights" - ] - }, - { - "text": "Consider the possibility of establishing a moratorium on the carrying out of death sentences and evaluate the possibility of legally abolishing the death penalty", - "values": [ - "Death penalty" - ] - }, - { - "text": "Promptly take effective measures to safeguard the work of human rights defenders, including by ensuring that witness protection and the protection of human rights defenders who assist witnesses are a priority for the Government ", - "values": [ - "Human rights defenders" - ] - }, - { - "text": "Strengthen cooperation with United Nations human rights mechanisms, including by permitting visits from mandate holders ", - "values": [ - "Special procedures" - ] - }, - { - "text": "Continue its efforts to implement policies to enhance the protection of women against violence ", - "values": [ - "Women's rights" - ] - }, - { - "text": "Make food security a national priority and give all the required support to policies and programmes of the fight against malnutrition throughout the country", - "values": [ - "Right to food" - ] - }, - { - "text": "Issue, as a matter of priority, an invitation for the Special Rapporteurs on torture, human trafficking, migrants, and for the Independent Expert on the minority issues", - "values": [ - "Migrants", - "Minorities", - "Special procedures", - "Torture and other CID treatment", - "Trafficking" - ] - }, - { - "text": "Ensure that violations committed by members of the security forces are subject to legal proceedings", - "values": [ - "Human rights violations by state agents" - ] - }, - { - "text": "Swiftly ratify the Optional Protocol to the the Convention on the Rights of the Child on the involvement of children in armed conflict", - "values": [ - "International humanitarian law", - "International instruments", - "Rights of the Child" - ] - }, - { - "text": "Formulate a national policy on sexual education.", - "values": [ - "Right to education", - "Right to health" - ] - }, - { - "text": "Consider enacting specific legislation which prohibits discrimination against certain groups of children, particularly girls, children with disabilities and children living with HIV/AIDS", - "values": [ - "Disabilities", - "HIV - Aids", - "Rights of the Child", - "Women's rights" - ] - }, - { - "text": "Establish an immediate moratorium on the use of the death penalty with a view to abolishing it", - "values": [ - "Death penalty" - ] - }, - { - "text": "Implement in a comprehensive manner the national plan against female genital mutilation and allocate adequate resources to this end ", - "values": [ - "Rights of the Child", - "Torture and other CID treatment", - "Women's rights" - ] - }, - { - "text": "Continue with the efforts of providing equal access to education by all national races in the country", - "values": [ - "Minorities", - "Right to education" - ] - }, - { - "text": "Intensify policies for job creation and programmes for the social reintegration of young people, especially those who were child soldiers during the civil war ", - "values": [ - "Development", - "International humanitarian law", - "Rights of the Child" - ] - }, - { - "text": "Study the possibility of accepting the competence of the Committee against Torture", - "values": [ - "Torture and other CID treatment", - "Treaty bodies" - ] - }, - { - "text": "Revise the Charities and Societies Proclamation and Anti-Terrorism Proclamation to create a framework conducive to the work of NGOs and other civil society organizations, and ensure the protection of journalists and political opponents from all forms of repression ", - "values": [ - "Freedom of association and peaceful assembly" - ] - }, - { - "text": "Ensure that a gender perspective is fully integrated in the next stages of the review, including in the outcome of the Universal Periodic Review and that the gender perspective be systematically and continuously integrated in this follow-up process.", - "values": [ - "UPR process", - "Women's rights" - ] - }, - { - "text": "Take effective steps for the country's legal framework to protect the rights of lesbian, gay, bisexual, transgender and intersex people", - "values": [ - "Sexual Orientation and Gender Identity" - ] - }, - { - "text": "Allow the inclusion of all political opposition actors in the process of National Dialogue on Development", - "values": [ - "Freedom of association and peaceful assembly" - ] - }, - { - "text": "Declare a moratorium to abolish capital punishment and commute such punishment to deprivation of liberty ", - "values": [ - "Death penalty" - ] - }, - { - "text": "Continue the implementation of the Strategic Plan on Equality of Opportunity 2014-2016 to achieve equal opportunity for women and men, in particular to reduce the pay gap", - "values": [ - "Women's rights" - ] - }, - { - "text": "Criminalize violence against women and provide significant penalties under the law for that crime ", - "values": [ - "Women's rights" - ] - }, - { - "text": "Enact the draft law on sexual harassment in the workplace", - "values": [ - "Women's rights" - ] - }, - { - "text": "Continue its efforts to consolidate the legislative framework in the field of the protection against discrimination, in particular in relation to the employment of non-nationals ", - "values": [ - "Labour", - "Migrants" - ] - }, - { - "text": "Continue to implement the laws and policies prohibiting direct and indirect discrimination, on the rights of persons with disabilities, on equal opportunities for women and men on child protection as well as action plans to better protect the rights of women, children and persons with disabilities", - "values": [ - "Disabilities", - "Rights of the Child", - "Women's rights" - ] - }, - { - "text": "Comply with the provisional measures prescribed by the International Court of Justice", - "values": [ - "International instruments", - "Justice" - ] - }, - { - "text": "Continue its progress in promoting and protecting women's rights with the consolidation of the institutional mechanisms and the implementation of laws which are being positively promoted", - "values": [ - "Women's rights" - ] - }, - { - "text": "Urgently adopt effective measures to combat sexual violence in the whole territory, to ensure accountability for those responsible of such crimes and to ensure total redress for victims, by guaranteeing sufficient financial resources to implement such measures", - "values": [ - "Rights of the Child", - "Women's rights" - ] - }, - { - "text": "Further expand the universal child allowance programme coverage and incorporate a large number of eligible children and adolescents, especially those from marginalized groups and as yet undocumented children", - "values": [ - "Rights of the Child" - ] - }, - { - "text": "Declare an official moratorium on the death penalty", - "values": [ - "Death penalty" - ] - }, - { - "text": "Ensure that the Attorney General's Office and other offices thoroughly and aggressively investigate murders, corruption and organized crime, and prosecute alleged perpetrators", - "values": [ - "Corruption", - "Justice" - ] - }, - { - "text": "Ensure the full exercise of the right to freedom of expression, association and peaceful assembly and take steps to create a safe environment for human rights defenders and journalists", - "values": [ - "Freedom of association and peaceful assembly", - "Freedom of opinion and expression", - "Freedom of the press", - "Human rights defenders" - ] - }, - { - "text": "Step up efforts for a rapid and definitive application of the country's Constitution, ensuring that it incorporates the principles and commitments arising from international human rights instruments to which Eritrea is signatory or has acceded ", - "values": [ - "International instruments" - ] - }, - { - "text": "Endeavour to implement the obligations under article 14 of ICCPR, which comprehensively guarantees the right to a fair trial and the rights of the accused", - "values": [ - "International instruments", - "Justice" - ] - }, - { - "text": "Encourage the adoption and implementation of legislation to combat all forms of discrimination, in compliance with international human rights standards and in line with Paraguay's commitments", - "values": [ - "International instruments" - ] - }, - { - "text": "Continue to fight against female genital mutilation", - "values": [ - "Rights of the Child", - "Torture and other CID treatment", - "Women's rights" - ] - }, - { - "text": "Pursue preventative measures on domestic violence such as community education and police training", - "values": [ - "Human rights education and training", - "Rights of the Child", - "Women's rights" - ] - }, - { - "text": "Cooperate with the Special Rapporteurs, such as the Special Rapporteur on torture, who have been refused access to Iran since 2005, despite the standing invitation extended to them", - "values": [ - "Special procedures", - "Torture and other CID treatment" - ] - }, - { - "text": "Accede to the Optional Protocol to the Convention against Torture and establish a national prevention mechanism meeting the guidelines and requirements as set out in this instrument", - "values": [ - "Detention", - "International instruments", - "Torture and other CID treatment" - ] - }, - { - "text": "Make progress with the qualitative census of indigenous peoples from El Salvador", - "values": [ - "Indigenous peoples" - ] - }, - { - "text": "Continue strengthening the national human rights institutions ", - "values": [ - "National Human Rights Institution" - ] - }, - { - "text": "Further increase its efforts to end the segregation of Roma children in schools by tasking an appropriate authority with the clear responsibility of identifying segregation and giving schools binding guidelines to end segregating practices ", - "values": [ - "Minorities", - "Right to education", - "Rights of the Child" - ] - }, - { - "text": "Take all the necessary measures to establish a moratorium on the death penalty as a first step towards its total abolition", - "values": [ - "Death penalty" - ] - }, - { - "text": "Continue increasing the allocation of additional resources to improve the living conditions of the Roma population in the informal settlements, by strengthening their security of tenancy and ensuring the human right to drinking water and sanitation and access to electricity", - "values": [ - "Minorities", - "Right to housing", - "Right to water and sanitation" - ] - }, - { - "text": "Fight against women trafficking and enhance, in this regard, regional cooperation", - "values": [ - "Trafficking", - "Women's rights" - ] - }, - { - "text": "Take measures to foster the participation of women in all sectors of the society on the basis of a gender equality policy, including through the application of affirmative actions and quotas", - "values": [ - "Women's rights" - ] - }, - { - "text": "Pass the necessary legislation as soon as possible to enable the ratification of the Convention on the Rights of Persons with Disabilities ", - "values": [ - "Disabilities", - "International instruments" - ] - }, - { - "text": "Consider ratifying or acceding to, as appropriate, the two Optional Protocols to CRC ", - "values": [ - "International instruments", - "Rights of the Child" - ] - }, - { - "text": "Increase identification campaigns in rural areas of mainly indigenous persons, in order to guarantee their political rights and access to education, health and social programmes", - "values": [ - "Indigenous peoples", - "Right to education", - "Right to health" - ] - }, - { - "text": "Take all necessary steps to ensure that persons between the age of 14 and 18 are under all circumstances tried by a specialized juvenile justice system, that the best interests of the juvenile offenders are given the highest priority so they can successfully be reintegrated into society, and that deprivation of liberty of children is used only as a measure of last resort.", - "values": [ - "Justice", - "Rights of the Child" - ] - }, - { - "text": "Continue to improve its national laws and regulations for the protection and promotion of human rights", - "values": [ - "General" - ] - }, - { - "text": "Implement additional specific measures with a view to the total eradication of the phenomenon of street children and to ensure conditions for their full enjoyment of all human rights, particularly with regard to health, education, housing, food and others ", - "values": [ - "Rights of the Child" - ] - }, - { - "text": "Adopt a law prohibiting all forms of discrimination, including discrimination based on sexual orientation and gender identity", - "values": [ - "Sexual Orientation and Gender Identity" - ] - }, - { - "text": "Ratify the Rome Statute of the International Criminal Court, signed in 1998", - "values": [ - "International instruments", - "Justice" - ] - }, - { - "text": "Adopt legislative and administrative measures to prevent any form of discrimination against minority ethnic groups in education, health, employment, housing and other areas ", - "values": [ - "Labour", - "Minorities", - "Racial discrimination", - "Right to education", - "Right to health", - "Right to housing" - ] - }, - { - "text": "Increase its efforts to ensure respect for the fundamental human rights for people without legal status ", - "values": [ - "Other" - ] - }, - { - "text": "Strengthen its efforts to fulfil its obligations under CEDAW", - "values": [ - "International instruments", - "Women's rights" - ] - }, - { - "text": "Further develop measures to combat HIV/AIDS, with special focus on reducing infant and child mortality ", - "values": [ - "HIV - Aids", - "Rights of the Child" - ] - }, - { - "text": "Take measures to ensure access to education, including higher education, for children from national minorities and other vulnerable groups such as refugees and asylum seekers", - "values": [ - "Asylum-seekers - refugees", - "Minorities", - "Right to education", - "Rights of the Child" - ] - }, - { - "text": "Eliminate discrimination on the basis of language in the areas of education and employment", - "values": [ - "Labour", - "Minorities", - "Right to education" - ] - }, - { - "text": "Adopt administrative, budgetary, legislative and awareness-raising measures that ensure the right to birth registration of children of indigenous or African origin and from rural areas", - "values": [ - "Indigenous peoples", - "Minorities", - "Rights of the Child", - "Statelessness and the right to nationality" - ] - }, - { - "text": "Release persons detained for reasons related to their opinions or peaceful political activities ", - "values": [ - "Detention", - "Freedom of association and peaceful assembly", - "Freedom of opinion and expression" - ] - }, - { - "text": "Take measures to address concerns of racial discrimination in the application of its national policies ", - "values": [ - "Racial discrimination" - ] - }, - { - "text": "Respect the inalienable rights of Palestinians and end all occupation of occupied Arab territories.", - "values": [ - "Right to land" - ] - }, - { - "text": "Establish an independent investigation mechanism to effectively prevent torture and ill-treatment in detention, train personnel and guarantee effective legal representation and remedies for detainees", - "values": [ - "Detention", - "Human rights education and training", - "Torture and other CID treatment" - ] - }, - { - "text": "Step up its efforts in providing equal opportunities to education and work to both vulnerable groups and minorities ", - "values": [ - "Minorities", - "Right to education" - ] - }, - { - "text": "Continue raising awareness of the culture of human rights", - "values": [ - "Human rights education and training" - ] - }, - { - "text": "Strengthen gender awareness through the incorporation of content with a human rights approach into formal and informal education in order to eradicate violence against women ", - "values": [ - "Human rights education and training", - "Women's rights" - ] - }, - { - "text": "Take further steps to fully implement a National Action Plan for better integration and protection of the rights of immigrant minorities ", - "values": [ - "Migrants", - "Minorities" - ] - }, - { - "text": "Process expeditiously requests by refugees for family reunification to ensure that unaccompanied minors are able to reunite with their families", - "values": [ - "Asylum-seekers - refugees", - "Rights of the Child" - ] - }, - { - "text": "Establish follow-up to carry through the teaching and training strategy", - "values": [ - "Other" - ] - }, - { - "text": "Double efforts in combatting corruption through improving the capacity of the National Secretariat to Combat Corruption", - "values": [ - "Corruption" - ] - }, - { - "text": "Consider ratifying those international instruments to which it is not yet a party, and which aim to protect the rights of minority groups ", - "values": [ - "International instruments", - "Minorities" - ] - }, - { - "text": "Continue implementing mechanisms for the prior consultation and participation of indigenous peoples in decision-making related to the enjoyment of their ancestral rights in accordance with its domestic law", - "values": [ - "Indigenous peoples" - ] - }, - { - "text": "Continue its efforts on the implementation of the National Policy on Climate Change on reducing deforestation in the Amazon region", - "values": [ - "Environment" - ] - }, - { - "text": "Immediately close down all political prison camps, and release all prisoners of conscience, including relatives being held on the basis of guilt-by association ", - "values": [ - "Detention", - "Freedom of opinion and expression", - "Freedom of religion and belief" - ] - }, - { - "text": "Take all necessary measures to ensure accountability for unlawful use of force and extrajudicial killings by police officers, including diligent criminal investigation, prosecution and punishment of perpetrators ", - "values": [ - "Human rights violations by state agents" - ] - }, - { - "text": "Consolidate programmes to ensure a system of inclusive education for children with disabilities throughout the country", - "values": [ - "Disabilities", - "Rights of the Child" - ] - }, - { - "text": "Respond regularly to questionnaires sent by special procedures mandate holders.", - "values": [ - "Special procedures" - ] - }, - { - "text": "Further promote the law on the minimum age of marriage at 18 years ", - "values": [ - "Rights of the Child", - "Women's rights" - ] - }, - { - "text": "Provide refugee children with access to social services, such as health and education", - "values": [ - "Asylum-seekers - refugees", - "Right to education", - "Right to health" - ] - }, - { - "text": "Pursue appropriate, efficient policies to eliminate the social exclusion of the most vulnerable groups, in particular mentally disabled children, immigrant and refugee children and children from ethnic minorities at schools ", - "values": [ - "Disabilities", - "Migrants", - "Minorities", - "Rights of the Child" - ] - }, - { - "text": "The Ministry of Disaster Management and Human Rights will organize a regional seminar for parliamentarians on a human rights related theme in 2008.", - "values": [ - "Other" - ] - }, - { - "text": "Continue to promote the implementation of the necessary basic, legal and social structures to enable people to live a decent life", - "values": [ - "General" - ] - }, - { - "text": "Recommend that the National Committee to Combat Human Trafficking carry out further efforts to implement its mandate, taking into account the standards contained in the international and regional conventions to which Oman is a party", - "values": [ - "International instruments", - "Trafficking" - ] - }, - { - "text": "Continue the process aimed at establishing a Truth and Reconciliation Commission ", - "values": [ - "Justice" - ] - }, - { - "text": "Continue its cooperation with the Human Rights Council and its mechanisms and extend an open invitation to the Special Procedures", - "values": [ - "Special procedures", - "UPR process" - ] - }, - { - "text": "Request technical assistance with regard to the human rights of persons with disabilities so as to ensure that it has the resources and capacity necessary to make their rights effective ", - "values": [ - "Disabilities", - "Technical assistance and cooperation" - ] - }, - { - "text": "Seriously combat human trafficking and sexual exploitation, ensure victim assistance, prosecute human traffickers, as well as enhance further cooperation with the countries concerned", - "values": [ - "Trafficking" - ] - }, - { - "text": "Develop, with the support of relevant UN agencies, a comprehensive plan for the provision of adequate housing with basic services, both in temporary shelters and impoverished neighbourhoods, and ensure better coordination among agencies involved in such effort", - "values": [ - "Right to housing", - "Technical assistance and cooperation" - ] - }, - { - "text": "Ensure that any persons involved in racial discrimination acts are investigated and prosecuted, and, if found guilty of such incidents, punished with appropriate penalties ", - "values": [ - "Racial discrimination" - ] - }, - { - "text": "Improve the quality of basic education through programmes to ensure that teachers have adequate content knowledge and appropriate training, as well as by prioritizing the most disadvantaged schools in infrastructure and other improvement programmes", - "values": [ - "Right to education" - ] - }, - { - "text": "Reinforce judicial reforms initiated in 2009 with a view to ensuring the judiciary's independence, transparency, efficiency and accessibility", - "values": [ - "Justice" - ] - }, - { - "text": "Adopt legislation to prevent discrimination on the grounds of sexual orientation in the same manner as existing legislation to protect against discrimination on the grounds of ethnicity, gender and religion ", - "values": [ - "Freedom of religion and belief", - "Racial discrimination", - "Sexual Orientation and Gender Identity" - ] - }, - { - "text": "Give a strong response to hate speech, including in offline and online media and systematically denounce expressions of intolerance by opinion leaders ", - "values": [ - "Racial discrimination" - ] - }, - { - "text": "Develop and carry out a plan for implementation of the Anti-Discrimination Law, including positive and preventive actions. In particular, address discrimination based on gender identity and sexual orientation ", - "values": [ - "Sexual Orientation and Gender Identity" - ] - }, - { - "text": "Raise the minimum age for employment from 14 to 16, so that it conforms with the age of completion of compulsory education ", - "values": [ - "Labour", - "Rights of the Child" - ] - }, - { - "text": "Continue to work with the United Nations Mission in Liberia and other partners to prepare for the national takeover, including concrete measures to reduce gender-based violence and to strengthen the justice and security sectors", - "values": [ - "Justice", - "Public security", - "Women's rights" - ] - }, - { - "text": "Facilitate effective coordination between the Confederation, cantons and civil society to ensure the compatibility of popular initiatives with its obligations under international human rights", - "values": [ - "Other" - ] - }, - { - "text": "Cyprus is determined to intensify its efforts to safeguard human rights and is committed to continue working for the further advancement of raising awareness and education on human rights, despite the current economic constrains which have negatively affected the country's economy and social cohesion.", - "values": [ - "Human rights education and training" - ] - }, - { - "text": "Strengthen education and training in human rights, in particular in the judiciary and in the security forces and military ", - "values": [ - "Human rights education and training" - ] - }, - { - "text": "Ratify the Optional Protocol to the Convention on the Rights of the Child on the involvement of children in armed conflict", - "values": [ - "International humanitarian law", - "International instruments", - "Justice" - ] - }, - { - "text": "Intensify efforts to raise awareness among the public of the importance of birth registration and the birth registration process", - "values": [ - "Human rights education and training", - "Rights of the Child", - "Statelessness and the right to nationality" - ] - }, - { - "text": "Accelerate the ratification process of the Convention against Torture and Other Cruel, Inhuman or Degrading Treatment or Punishment ", - "values": [ - "International instruments", - "Torture and other CID treatment" - ] - }, - { - "text": "Implement and enforce the law against female genital mutilation as soon as possible", - "values": [ - "Rights of the Child", - "Torture and other CID treatment", - "Women's rights" - ] - }, - { - "text": "Consider establishing a moratorium on executions with a view to abolishing the death penalty", - "values": [ - "Death penalty" - ] - }, - { - "text": "Pursue its efforts, and continue, to guarantee all human rights - and accede to the International Convention on the Protection of the Rights of All Migrant Workers and Members of Their Families ", - "values": [ - "International instruments", - "Labour", - "Migrants" - ] - }, - { - "text": "Submit a report on the human rights situation in the OPT since Israel assumed the responsibility for this territory as the occupying power", - "values": [ - "Other" - ] - }, - { - "text": "Further speed up efforts to prevent and eliminate trafficking in persons ", - "values": [ - "Trafficking" - ] - }, - { - "text": "Further improve the application of the act criminalizing violence against women", - "values": [ - "Women's rights" - ] - }, - { - "text": "Condemn discrimination, particularly that based on sexual orientation and identity", - "values": [ - "Sexual Orientation and Gender Identity" - ] - }, - { - "text": "Adopt a National Action Plan on Security Council resolution 1325 (2000) on women, peace and security ", - "values": [ - "Women's rights" - ] - }, - { - "text": "Enhance its efforts to support social rights for women, such as the right to education and health", - "values": [ - "Right to education", - "Right to health", - "Women's rights" - ] - }, - { - "text": "Ensure the access of all migrants, without discrimination and irrespective of their legal status, to health and education", - "values": [ - "Migrants" - ] - }, - { - "text": "Continue the Public Security and the Criminal Justice System reforms", - "values": [ - "Justice" - ] - }, - { - "text": "Consider the recommendation of the Committee on Rights of the Child (Committee on the CRC) to raise the minimum age of voluntary military recruitment ", - "values": [ - "International humanitarian law", - "Rights of the Child", - "Treaty bodies" - ] - }, - { - "text": "Continue to implement the International Health Regulations and maintain its commitment to guarantee access for the rural population to medical care and services", - "values": [ - "Right to health" - ] - }, - { - "text": "Thoroughly investigate all allegations of mistreatment of prisoners ", - "values": [ - "Detention", - "Human rights violations by state agents", - "Torture and other CID treatment" - ] - }, - { - "text": "Review its body of legislation prohibiting discrimination on any grounds, and in this regard, expressly prohibit discrimination due to disability, age, religious belief, sexual orientation or gender identity", - "values": [ - "Disabilities", - "Freedom of religion and belief", - "Racial discrimination", - "Sexual Orientation and Gender Identity" - ] - }, - { - "text": "Intensify its efforts to implement the National Action Plan for Gender Equality for 2013-2015", - "values": [ - "Women's rights" - ] - }, - { - "text": "Accede to the Rome Statute of the International Criminal Court and fully align its legislation with all obligations under the Rome Statute", - "values": [ - "International instruments", - "Justice" - ] - }, - { - "text": "Establish a habeas corpus mechanism for preventing arbitrary detention", - "values": [ - "Detention" - ] - }, - { - "text": "Enhance efforts to promote human rights ", - "values": [ - "General" - ] - }, - { - "text": "Action in order to build broad support for LGBT-rights in the new comprehensive anti-discrimination law ", - "values": [ - "Sexual Orientation and Gender Identity" - ] - }, - { - "text": "Ensure adequate resources for poverty alleviation programmes, in line with the commitments to pursue inclusive economic development", - "values": [ - "Poverty" - ] - }, - { - "text": "Take further appropriate actions to combat gender based violence, discrimination and legalize domestic violence", - "values": [ - "Rights of the Child", - "Women's rights" - ] - }, - { - "text": "Further effective action by public authorities to protect the lesbian, gay, bisexual and transgender community from discrimination", - "values": [ - "Sexual Orientation and Gender Identity" - ] - }, - { - "text": "Enact a comprehensive anti-discrimination law designed to prevent, combat and punish all forms of violence against women and girls, including domestic and sexual violence, and discriminatory infringements of the right to education ", - "values": [ - "Right to education", - "Rights of the Child", - "Women's rights" - ] - }, - { - "text": "Continue to maintain annual economic growth of average of 8%", - "values": [ - "Development" - ] - }, - { - "text": "Step up efforts to prevent torture and ill treatment.", - "values": [ - "Torture and other CID treatment" - ] - }, - { - "text": "Guarantee the right to education for children of migrant workers", - "values": [ - "Labour", - "Migrants", - "Right to education", - "Rights of the Child" - ] - }, - { - "text": "Ensure that community development councils channel funds for their projects to address the problem of chronic malnutrition, particularly among the indigenous and rural populations", - "values": [ - "Indigenous peoples", - "Right to food" - ] - }, - { - "text": "Adopt in line with the 2030 Agenda all legislative and political measures as needed to guarantee universal access to sexual and reproductive health, according to the Plan of Action of the Beijing Conference", - "values": [ - "Right to health" - ] - }, - { - "text": "Strengthen the criminal justice system in the country, to promptly and effectively investigate all alleged cases of enforced disappearances, disproportionate use of force, attacks, threats, harassments against human rights defenders, and ensure that perpetrators are brought to justice and victims receive reparations", - "values": [ - "Enforced disappearances", - "Human rights defenders", - "Justice" - ] - }, - { - "text": "Ensure that the Prevention and Combating of Hate Crimes and Hate Speech Bill is in conformity with the International Convention on the Elimination of All Forms of Racial Discrimination and make every effort to expedite its enactment", - "values": [ - "International instruments", - "Racial discrimination" - ] - }, - { - "text": "Continue efforts to elaborate uniform strategies and programmes for the promotion of human rights in all regions, in spite of the nation's diversity and complexity ", - "values": [ - "General" - ] - }, - { - "text": "Ratify and accede to the International Convention on the Protection of the Rights of All Migrant Workers and Members of Their Families", - "values": [ - "International instruments", - "Labour", - "Migrants" - ] - }, - { - "text": "Apply positive measures in order to ensure appropriate conditions for persons in detention, with involvement of public monitoring commissions ", - "values": [ - "Detention" - ] - }, - { - "text": "Adopt, in close consultation with the Ombudsman Board and civil society, a national action plan on human rights containing specific implementation targets and measurable indicators", - "values": [ - "Civil society", - "National Human Rights Institution" - ] - }, - { - "text": "Increase budget allocation to the education sector to ensure a fully free and inclusive education for all children", - "values": [ - "Right to education", - "Rights of the Child" - ] - }, - { - "text": "Consolidate the progress achieved in the field of human rights education and training, by regularly organizing, with the assistance of the international community, seminars and awareness-raising workshops on human rights, particularly for members of the security forces and the judiciary ", - "values": [ - "Human rights education and training", - "Technical assistance and cooperation" - ] - }, - { - "text": "Undertake further measures in accordance with the "National Strategy on Children's Rights and its Action Plan" in order to ensure the rights of the children and combat early marriage", - "values": [ - "Rights of the Child" - ] - }, - { - "text": "Adopt a comprehensive sexual and reproductive health policy for adolescents", - "values": [ - "Right to health", - "Rights of the Child", - "Women's rights" - ] - }, - { - "text": "Take adequate measures to combat illiteracy and guarantee to all citizens the enjoyment of the right to education, especially for poor people, those living in rural areas or indigenous minorities ", - "values": [ - "Indigenous peoples", - "Poverty", - "Right to education" - ] - }, - { - "text": "Continue to take necessary measures to combat racism and hate crimes ", - "values": [ - "Racial discrimination" - ] - }, - { - "text": "Continue its cooperation with the treaty bodies and submit its outstanding reports", - "values": [ - "Treaty bodies" - ] - }, - { - "text": "Recommended taking the steps needed freedom of association in all its forms", - "values": [ - "Freedom of association and peaceful assembly" - ] - }, - { - "text": "Continue the process of constitutional reforms, including consideration of a new Bill of Rights that will, amongst others, guarantee the right to life and the right to non-discrimination on any ground", - "values": [ - "General", - "Justice" - ] - }, - { - "text": "Take serious measures to address such irresponsible acts as the recent publication of an outrageous poster of Prophet Muhammad as well as a blasphemous video message by one of the Swedish political parties, which merely perpetuate religious hatred and intolerance ", - "values": [ - "Freedom of religion and belief", - "Racial discrimination" - ] - }, - { - "text": "Adopt further legislative measures in order to combat racist, xenophobic and Islamophobic acts and manifestations, particularly against Muslim sanctities including in the political arena and in the media ", - "values": [ - "Freedom of religion and belief", - "Minorities", - "Racial discrimination" - ] - }, - { - "text": "Redouble its efforts to reduce poverty and increase national spending on education to eliminate the high level of illiteracy. ", - "values": [ - "Poverty", - "Right to education" - ] - }, - { - "text": "Continue with the de facto moratorium on the death penalty", - "values": [ - "Death penalty" - ] - }, - { - "text": "Continue to apply specific legislation to improve the conditions of detainees and ensure the full respect of due process for them", - "values": [ - "Detention" - ] - }, - { - "text": "Continue strengthening the effort to take measures to protect the rights of migrants", - "values": [ - "Migrants" - ] - }, - { - "text": "Take steps to strengthen and reform the judiciary to reduce the numbers of pre-trial detainees, particularly minors", - "values": [ - "Detention", - "Justice", - "Rights of the Child" - ] - }, - { - "text": "Strengthen the Slovenian Human Rights Ombudsman", - "values": [ - "National Human Rights Institution" - ] - }, - { - "text": "Continue its efforts to launch and implement a national human rights action plan in order to improve promotion and protection of human rights", - "values": [ - "General" - ] - }, - { - "text": "Seek technical assistance from the international donor community including relevant UN agencies and funds for building capacity for government officials, particularly law enforcement, legal and judicial personnel ", - "values": [ - "Justice", - "Technical assistance and cooperation" - ] - }, - { - "text": "Maintain State preschool and general education institutions with education/teaching in minority languages, including the Russian language", - "values": [ - "Minorities", - "Right to education" - ] - }, - { - "text": "Continue developing its successful programmes for the implementation of the Convention on the Rights of Persons with Disabilities ", - "values": [ - "Disabilities", - "International instruments" - ] - }, - { - "text": "Continue to strengthen education cooperation with international educational organizations ", - "values": [ - "Right to education" - ] - }, - { - "text": "Continue to pursue social policies in keeping with well-established family values, and not to be intimidated by suggestions on social norms that are controversial, non- universal and specific to certain societies", - "values": [ - "Other" - ] - }, - { - "text": "Continue its engagement with the Human Rights Council by bringing into domestic law the recommendations accepted in its first universal periodic review process", - "values": [ - "UPR process" - ] - }, - { - "text": "Ensure that women in customary marriages enjoy the same rights as those in civil marriages ", - "values": [ - "Women's rights" - ] - }, - { - "text": "Take the necessary measures to fight marginalization of Romani individuals by addressing intolerance and discrimination, and improve their opportunities for education and employment", - "values": [ - "Labour", - "Minorities", - "Racial discrimination", - "Right to education" - ] - }, - { - "text": "On 7 November 2013, BiH became the 6th member state of the CoE to ratify the CoE Istanbul Convention. Accordingly, BiH committed itself to undertake legislative and other measures to ensure the legal, institutional and organisational framework for the prevention of violence against women, protection of victims of violence and punishing perpetrators of violence. The Strategy for implementation of the CoE Istanbul Convention was developed and some entity strategies and action plans were also developed and implemented to combat domestic violence.", - "values": [ - "Rights of the Child", - "Women's rights" - ] - }, - { - "text": "Implement all the necessary measures to set up a National Mechanism of Prevention in line with the provisions of the Optional Protocol to the Convention against Torture", - "values": [ - "Detention", - "International instruments", - "Torture and other CID treatment" - ] - }, - { - "text": "Develop a more gender balanced land ownership law, building on the recommendation of its Royal Land Commission regarding land allotment ", - "values": [ - "Right to land", - "Women's rights" - ] - }, - { - "text": "Continue to enhance the effectiveness of measures taken to improve access to health services in remote and rural areas", - "values": [ - "Right to health" - ] - }, - { - "text": "Strengthen and expand the Mechanism to Protect Human Rights Defenders and Journalists including by providing it with adequate resources and powers to carry out its work and creating a mechanism for consultation with indigenous and other communities affected by land transactions", - "values": [ - "Freedom of the press", - "Human rights defenders", - "Indigenous peoples", - "Right to land" - ] - }, - { - "text": "Promote and carry out comprehensive education and training in human rights in the Spanish education system and in programmes for public employees, armed forces and military personnel at every level ", - "values": [ - "Human rights education and training" - ] - }, - { - "text": "Make those responsible for gross violations of human rights in American prisons and prisons under the jurisdiction of America outside its territory accountable", - "values": [ - "Detention", - "Justice" - ] - }, - { - "text": "Continue to give full attention to this most important issue (domestic violence) and to fully implement the Domestic Violence Act and its roadmap", - "values": [ - "Rights of the Child", - "Women's rights" - ] - }, - { - "text": "Consider ratifying the international human rights conventions to which the Central African Republic has not yet been a party", - "values": [ - "International instruments" - ] - }, - { - "text": "Consider the formulation and implementation of public policies aimed at ensuring women's enjoyment of their human rights in the area of equality ", - "values": [ - "Women's rights" - ] - }, - { - "text": "Formulate goals and policy guidelines for the promotion of the rights of indigenous peoples and cooperation between government and indigenous peoples ", - "values": [ - "Indigenous peoples" - ] - }, - { - "text": "Draw up and implement with external assistance, a comprehensive plan to address the problems faced by persons living with albinism, to include: massive public awareness campaign, free healthcare services, including preventive cancer treatment, protection mechanisms, investigation and prosecution of perpetrators of violence against them ", - "values": [ - "Human rights education and training", - "Minorities", - "Right to health" - ] - }, - { - "text": "Adopt the measures necessary to stop domestic violence, in particular with regard to the rights of women, and take measures aimed at protecting the victims of domestic violence ", - "values": [ - "Women's rights" - ] - }, - { - "text": "Carry out national information campaigns designed to promote a culture that values diversity, understanding and tolerance ", - "values": [ - "Human rights education and training" - ] - }, - { - "text": "Cooperate with United Nations agencies, regional bodies and development partners in building capacities, training and exchanging human rights expertise and experiences with other Pacific Island countries", - "values": [ - "Technical assistance and cooperation" - ] - }, - { - "text": "Continue providing assistance to IDP returnees in particular with housing, livelihoods and economic empowerment", - "values": [ - "Internally displaced persons" - ] - }, - { - "text": "Take necessary measures to ensure that all persons detained by the police are fully informed of their fundamental rights from the very outset of their deprivation of liberty ", - "values": [ - "Detention" - ] - }, - { - "text": "Take opportunities, offered within the framework of international cooperation and assistance, to step up its development programmes and its programmes to fight poverty and ensure reconstruction", - "values": [ - "Poverty" - ] - }, - { - "text": "Continue to promote and protect human rights internationally through bilateral and multilateral dialogue to enhance human right capacity regionally across the Asia-Pacific and globally through the AusAID programme ", - "values": [ - "General" - ] - }, - { - "text": "Introduce further measures to strengthen the employment opportunities and self-reliance options for persons with disabilities", - "values": [ - "Development", - "Disabilities" - ] - }, - { - "text": "Contribute effectively in the operationalization of the right to development at the international level ", - "values": [ - "Development" - ] - }, - { - "text": "Economic development thrives more effectively where good governance and the rule of law are maintained therefore promoting democracy, peace and stability by fighting crime and enhancing the role of Parliament, accountability and transparency will remain the Government's priority.", - "values": [ - "Development" - ] - }, - { - "text": "Continue to implement plans adopted in the area of housing and rehabilitation, particularly the plan launched in 2011 aimed at preventing the construction of new slums ", - "values": [ - "Right to housing" - ] - }, - { - "text": "Enact specific legislation to criminalize all forms of violence against women ", - "values": [ - "Women's rights" - ] - }, - { - "text": "Redouble its efforts to succeed in the national reconciliation process ", - "values": [ - "Justice" - ] - }, - { - "text": "Provide human rights training with regard to the protection of vulnerable groups, in particular women, children, indigenous peoples and persons of minority sexual orientation or gender identity to law enforcement officials, judicial officers and all State officials", - "values": [ - "Human rights education and training", - "Indigenous peoples", - "Rights of the Child", - "Sexual Orientation and Gender Identity", - "Women's rights" - ] - }, - { - "text": "Develop a national action plan for the implementation of the Guiding Principles on Business and Human Rights", - "values": [ - "Business and human rights" - ] - }, - { - "text": "Step up measures to bring to justice persons who instigate others to commit acts of self-immolation", - "values": [ - "Other" - ] - }, - { - "text": "Sign the Convention against Torture", - "values": [ - "International instruments", - "Torture and other CID treatment" - ] - }, - { - "text": "Pay increased attention to matters of gender parity", - "values": [ - "Women's rights" - ] - }, - { - "text": "Implement the recommendation of the Committee on the Elimination of Racial Discrimination (CERD) to adopt specific legislation to outlaw direct and indirect racial discrimination, and guarantee access to effective protection and remedies through competent national courts", - "values": [ - "Justice", - "Racial discrimination", - "Treaty bodies" - ] - }, - { - "text": "Take the necessary measures to fight against impunity for human rights violations, regardless of who the perpetrators are", - "values": [ - "Impunity" - ] - }, - { - "text": "Investigate cases of police abuse to prevent impunity and put an end to ill treatment by police", - "values": [ - "Human rights violations by state agents", - "Impunity" - ] - }, - { - "text": "Continue its good efforts to address violence against women and domestic violence", - "values": [ - "Rights of the Child", - "Women's rights" - ] - }, - { - "text": "Facilitate the establishment of private media organisations by eliminating legislative and administrative obstacles", - "values": [ - "Freedom of the press" - ] - }, - { - "text": "Fully disclose the abuse of torture by its Intelligence Agency, ensure the accountability of the persons responsible, and agree to unrestricted visit by the Special Rapporteur on torture and other cruel, inhuman or degrading treatment or punishment to Guantanamo facilities", - "values": [ - "Detention", - "Human rights violations by state agents", - "Special procedures", - "Torture and other CID treatment" - ] - }, - { - "text": "Strengthen measures in order to ensure that all children have a valid birth certificate and deploy additional and more coordinated efforts to protect children from early and forced marriages ", - "values": [ - "Rights of the Child", - "Women's rights" - ] - }, - { - "text": "Improve conditions in prisons and detention centres ", - "values": [ - "Detention" - ] - }, - { - "text": "Take all necessary legal and other measures to effectively implement reparation programmes for victims of past human rights violations during the 1980-2000 period and report back about the results to the Human Rights Council", - "values": [ - "Justice" - ] - }, - { - "text": "Intensify its efforts on the improvement of mechanisms to further protect the rights of children and the advancement of the economic well-being and standard of living of the poor", - "values": [ - "Poverty", - "Rights of the Child" - ] - }, - { - "text": "Continue to improve its public policies aimed at combating violence against women", - "values": [ - "Women's rights" - ] - }, - { - "text": "Accelerate steps towards adopting the human rights policy and national action plan for the protection and the promotion of human rights, and devise programmes for their implementation ", - "values": [ - "General" - ] - }, - { - "text": "Strengthen the gender perspective within regional integration processes", - "values": [ - "Women's rights" - ] - }, - { - "text": "Take measures to protect women and girls from domestic violence and to ensure that acts of such violence are fully investigated and those responsible are held accountable ", - "values": [ - "Rights of the Child", - "Women's rights" - ] - }, - { - "text": "Ratify the Convention on the Rights of Persons with Disabilities, as previously recommended", - "values": [ - "Disabilities", - "International instruments", - "UPR process" - ] - }, - { - "text": "Ensure effective coordination at the federal, regional and community levels for the implementation of the Convention on the Rights of the Child, the Convention on the Elimination of All Forms of Discrimination against Women, and the International Covenant on Economic, Social and Cultural Rights", - "values": [ - "ESC rights - general", - "Rights of the Child", - "Women's rights" - ] - }, - { - "text": "Ratify the Optional Protocol to International Covenant on Economic, Social and Cultural Rights", - "values": [ - "ESC rights - general", - "International instruments" - ] - }, - { - "text": "Embark on substantial reform of its judicial system in order to achieve progressive development for human rights ", - "values": [ - "Justice" - ] - }, - { - "text": "Ensure prompt thorough, independent and transparent investigations into all allegations of rape, torture or other ill-treatment by law enforcement officials, hold those responsible to account and provide reparations and redress to the victims ", - "values": [ - "Human rights violations by state agents", - "Torture and other CID treatment" - ] - }, - { - "text": "Review the effectiveness of existing legislation to combat racism, hate crime and hate speech", - "values": [ - "Racial discrimination" - ] - }, - { - "text": "Consider elaborating a comprehensive national plan to prevent and combat violence against women, and consider the necessary legislative updates", - "values": [ - "Women's rights" - ] - }, - { - "text": "Adopt a comprehensive strategy on the situation of Aboriginal people at the federal level, to intensify the monitoring of the Nutrition North Canada Program, launched in 2011 and to develop a national plan of action", - "values": [ - "Indigenous peoples", - "Right to food" - ] - }, - { - "text": "Strengthen the Government's strategy on new migrants by considering the possibility of ratifying ICRMW.", - "values": [ - "International instruments", - "Labour", - "Migrants" - ] - }, - { - "text": "Continue reform of the Iraqi Armed Forces and Security Services in accordance with article 9(1)(a) of the Iraqi Constitution to include all components of the Iraqi people, creating a force which ensures security and stability for all individuals equally and throughout Iraq, thereby eliminating the need for the use of militias ", - "values": [ - "Public security" - ] - }, - { - "text": "Adopt more effective legal measures to combat domestic violence ", - "values": [ - "Rights of the Child", - "Women's rights" - ] - }, - { - "text": "Continue with its efforts to further promote and protect human rights and freedoms ", - "values": [ - "General" - ] - }, - { - "text": "Improve the infrastructures for the shelters accommodating persons with albinism by providing them with access to drinking water, locked of doors, adequate light and safety", - "values": [ - "Minorities", - "Right to housing", - "Right to water and sanitation" - ] - }, - { - "text": "Continue to support indigenous institutions that bring cohesion to communities, such as the National Congress of the First Peoples of Australia", - "values": [ - "Indigenous peoples" - ] - }, - { - "text": "Develop projects for the transfer of technology with the Ethiopian diaspora, with the aim of supporting the establishment of productive projects in the communities from which they originate ", - "values": [ - "Other" - ] - }, - { - "text": "Ensure the institutionalization of an independent national human rights commission in accordance with the Paris Principles", - "values": [ - "National Human Rights Institution" - ] - }, - { - "text": "Make progress in providing gender equality that is inclusive and explicitly rejects historical discrimination ", - "values": [ - "Women's rights" - ] - }, - { - "text": "Review and reform its legislation in order to abolish the death penalty and, in the meantime, maintain the de facto moratorium, with a view to abolishing the practice in the future, avoiding, in particular, the possibility of children being sentenced to death", - "values": [ - "Death penalty", - "Rights of the Child" - ] - }, - { - "text": "Establish mechanisms to receive, verify and investigate complaints of child ill-treatment and provide psychological and other support to victims of abuses ", - "values": [ - "Rights of the Child", - "Torture and other CID treatment" - ] - }, - { - "text": "Enact legislation to prohibit corporal punishment of children in all settings, including at home and in care institutions ", - "values": [ - "Rights of the Child", - "Torture and other CID treatment" - ] - }, - { - "text": "Continue the efforts of the Government to ensure the improvement of its educational and health systems, as well as progress on other socio-economic and cultural rights", - "values": [ - "ESC rights - general", - "Right to education", - "Right to health" - ] - }, - { - "text": "Adopt the draft amendments to the Code of Criminal Procedure and allow victims of human rights violations to participate in court proceedings", - "values": [ - "Justice" - ] - }, - { - "text": "Increase programs of obstetric, prenatal and neonatal care and attendance at deliveries by medical and paramedical professionals in order to continue reducing maternal, foetal and new-born mortality ", - "values": [ - "Right to health", - "Rights of the Child", - "Women's rights" - ] - }, - { - "text": "Promote national reconciliation by investigating crimes, accountability measures and reparation for victims ", - "values": [ - "Justice" - ] - }, - { - "text": "Take the necessary measures to accelerate processing of court cases in respect of the right to access to justice and right to a fair trial", - "values": [ - "Justice" - ] - }, - { - "text": "Ensure that efficient procedures and responsive mechanisms for effective and equal access to lawyers are provided for at all stages of legal proceedings ", - "values": [ - "Justice" - ] - }, - { - "text": "Ensure that International Criminal Court arrest warrants are executed regardless of rank - the Rome Statute is enacted into domestic law - demobilization and reintegration are accelerated - and the Security Council's recommendations on military officer screening and transitional justice are implemented", - "values": [ - "International instruments", - "Justice" - ] - }, - { - "text": "Continue the reforms aimed at protecting and promoting human rights, particularly the strengthening of legislation and judicial guarantees", - "values": [ - "Justice" - ] - }, - { - "text": "Unify, on the basis of objective criteria, the various definitions of feminicide in the different Criminal Codes of the country", - "values": [ - "Women's rights" - ] - }, - { - "text": "Take measures to combat intrafamily violence ", - "values": [ - "Rights of the Child", - "Women's rights" - ] - }, - { - "text": "Establish a de jure moratorium on the application of the death penalty aimed at its definitive abolition in line with the recommendations of the Truth and Reconciliation Commission ", - "values": [ - "Death penalty", - "Justice" - ] - }, - { - "text": "Extend a standing invitation to the Special Procedures of the Human Rights Council ", - "values": [ - "Special procedures" - ] - }, - { - "text": "Take judicial and other measures to put an end to the recruitment of child soldiers in all parts of its territory, and accordingly give further appropriate directions to the security forces and police to ensure their implementation", - "values": [ - "International humanitarian law", - "Rights of the Child" - ] - }, - { - "text": "Strengthen existing law and practice to guarantee the right to freedom of religion or belief for all citizens and residents, in particular by prosecuting and punishing all cases of religiously motivated violence", - "values": [ - "Freedom of religion and belief" - ] - }, - { - "text": "Provide prison guards and law enforcement officials in general, with human rights training specifically focusing on protection of human rights of women, children, national minorities and persons of minority sexual orientation or gender identity. and further to ensure investigation and punishment of all cases of violation of human rights by this personnel ", - "values": [ - "Human rights education and training", - "Human rights violations by state agents", - "Minorities", - "Rights of the Child", - "Sexual Orientation and Gender Identity", - "Women's rights" - ] - }, - { - "text": "Continue to strive for the inclusion of a gender perspective in all of its development plans and programmes, with positive measures to achieve the effective promotion and protection of the rights of women", - "values": [ - "Women's rights" - ] - }, - { - "text": "In cases when the Finnish authorities decide that the separation of children from their natural family is necessary for the best interests of the child, adopt that measure according to a decision taken by a judicial authority, as required by the provisions of article 9 of the Convention on the Rights of the Child", - "values": [ - "International instruments", - "Rights of the Child" - ] - }, - { - "text": "Develop policies to effectively prevent violence against women, in particular domestic violence and also provide shelters and assistance to victims", - "values": [ - "Women's rights" - ] - }, - { - "text": "Continue the reforms undertaken in the field of education ", - "values": [ - "Right to education" - ] - }, - { - "text": "Consider ratifying other human rights core instruments, namely, the Convention against Torture, the International Convention on the Protection of the Rights of All Migrant Workers and Members of their Families, and the Convention on the Rights of Persons with Disabilities ", - "values": [ - "Disabilities", - "International instruments", - "Labour", - "Migrants", - "Torture and other CID treatment" - ] - }, - { - "text": "Continue its policies in improving women's rights", - "values": [ - "Women's rights" - ] - }, - { - "text": "Ensure full respect for minority rights in the new constitution ", - "values": [ - "Minorities" - ] - }, - { - "text": "Combat more effectively and decisively prejudices such as racism, racial discrimination, xenophobia and other related forms of intolerance", - "values": [ - "Racial discrimination" - ] - }, - { - "text": "Decriminalize sexual activity between consenting adults of the same sex, and address hate crimes on the grounds of sexual orientation and gender identity, as matter of urgency, as previously recommended", - "values": [ - "Sexual Orientation and Gender Identity", - "UPR process" - ] - }, - { - "text": "Consider ratifying the Kampala Convention ", - "values": [ - "Internally displaced persons", - "International instruments" - ] - }, - { - "text": "Ensure that its policies, legislation, regulations and enforcement measures effectively serve to prevent and address the heightened risk of business involvement in abuses in conflict situations, which includes situations of foreign occupation", - "values": [ - "Business and human rights" - ] - }, - { - "text": "Continue with its efforts to achieve the ratification of the CRPD", - "values": [ - "Disabilities", - "International instruments" - ] - }, - { - "text": "Implement a ban on racist organizations and activities", - "values": [ - "Racial discrimination" - ] - }, - { - "text": "Repeal articles 400 and 403 of the Criminal Code to guarantee the right to peaceful assembly and freedom of association for all citizens, including human rights defenders", - "values": [ - "Freedom of association and peaceful assembly", - "Human rights defenders" - ] - }, - { - "text": "Adopt Government policies and legislations to address the pay gap between men and women ", - "values": [ - "Women's rights" - ] - }, - { - "text": "Continue the initiatives directed towards the promotion and protection of the rights of the national minorities", - "values": [ - "Minorities" - ] - }, - { - "text": "Continue the implementation of initiatives to strengthen national unity and promote inter-ethnic tolerance and respect", - "values": [ - "Minorities" - ] - }, - { - "text": "Review legislation and practice on the protection of human rights of asylum- seekers with a view to ensuring effective access to appeal against negative decisions of the Visa and Refugee Commission and upholding of the principle of non-refoulement ", - "values": [ - "Asylum-seekers - refugees" - ] - }, - { - "text": "Create a positive environment for the activities of human rights organizations and other independent non-governmental organizations, notably by eliminating obstacles to their official registration ", - "values": [ - "Civil society" - ] - }, - { - "text": "Adopt national measures in order to promote access to more women to positions of responsibility", - "values": [ - "Women's rights" - ] - }, - { - "text": "Continue the search for measures to address the high cost of health services and the existing quality disparity in the market for such services", - "values": [ - "Right to health" - ] - }, - { - "text": "Abolish the death penalty in law and ratify the Second Optional Protocol to the International Covenant on Civil and Political Rights ", - "values": [ - "Death penalty", - "International instruments" - ] - }, - { - "text": "Proceed with the efforts aimed to restore security and achieve national reconciliation, as they are considered two conditions for any serious national project aiming to promote human rights ", - "values": [ - "Justice" - ] - }, - { - "text": "Further strengthen the promotion of environmental rights through their incorporation into social and economic development plans in the entire Kingdom", - "values": [ - "Environment" - ] - }, - { - "text": "Take urgent steps to ensure that women victims of wartime violence have access to justice and reparation, including adequate psychosocial and economic support, as well as access to health-care services", - "values": [ - "Women's rights" - ] - }, - { - "text": "Ratify the Rome Statute and take necessary measures to ensure its implementation in the national legislation ", - "values": [ - "International instruments", - "Justice" - ] - }, - { - "text": "The removal of blanket restrictions on abortion for United States foreign assistance to permit its use for safe abortion in cases of rape, life or health endangerment and incest in countries where abortion is legal", - "values": [ - "Women's rights" - ] - }, - { - "text": "Strengthen policies that guarantee the prevalence of human rights in combating terrorism ", - "values": [ - "Counter-terrorism" - ] - }, - { - "text": "Investigate and prosecute those responsible for the attacks on peaceful lesbian and gay activists and ensure that future LGBT gatherings, including the annual GayFests, are both permitted and protected by the Romanian authorities.", - "values": [ - "Sexual Orientation and Gender Identity" - ] - }, - { - "text": "Take all necessary measures and implement all necessary programmes to overcome the obstacles that prevent women's status from progressing further", - "values": [ - "Women's rights" - ] - }, - { - "text": "Consider ratifying the International Convention on the protection of the rights of Migrant Workers and Members of their Families", - "values": [ - "International instruments", - "Labour", - "Migrants" - ] - }, - { - "text": "Incorporate relevant materials in the school curriculum to combat negative preconception against sections of the French society of migrant background, to complement the national action plan against racism and anti- Semitism ", - "values": [ - "Migrants", - "Racial discrimination" - ] - }, - { - "text": "Pursue efforts to fight violence against women ", - "values": [ - "Women's rights" - ] - }, - { - "text": "Amend article 10 (c) of the 1963 citizenship act to bring it into line with international standards", - "values": [ - "Statelessness and the right to nationality" - ] - }, - { - "text": "Review relevant legislation and its application in order to eliminate impunity for hate crimes based on sexual orientation and gender identity", - "values": [ - "Sexual Orientation and Gender Identity" - ] - }, - { - "text": "Accede and fully align its national legislation with the Rome Statute of the International Criminal Court, including by incorporating provisions to cooperate promptly and fully with the Court, and investigate and prosecute genocide, crimes against humanity and war crimes effectively before its national courts", - "values": [ - "International instruments", - "Justice" - ] - }, - { - "text": "Assess the possibility of extending an invitation to the United Nation special procedures, with thanks for the information provided regarding the invitation to the Independent Expert on the issue of human rights obligations related to access to safe drinking water and sanitation ", - "values": [ - "Right to water and sanitation", - "Special procedures" - ] - }, - { - "text": "Set the universal minimum age for marriage to 18 years, in line with the Civil Marriage Law", - "values": [ - "Rights of the Child" - ] - }, - { - "text": "Reform the Nationality Act to include safeguards against statelessness, so that children born in Tonga's territory, who would otherwise be stateless, can acquire Tongan nationality ", - "values": [ - "Rights of the Child", - "Statelessness and the right to nationality" - ] - }, - { - "text": "Address challenges of water and sanitation in favelas by full implementation of the National Sanitation Plan", - "values": [ - "Right to water and sanitation" - ] - }, - { - "text": "Strengthen the policies and actions to combat violence against women", - "values": [ - "Women's rights" - ] - }, - { - "text": "Continue to work on programmes to motivate and promote education for young people", - "values": [ - "Right to education" - ] - }, - { - "text": "Put an end to the recruitment and use of children by all parties to the conflict in the Syrian Arab Republic. Children should be treated primarily as victims and those in detention should be freed and put in the care of those responsible for child protection", - "values": [ - "International humanitarian law", - "Rights of the Child" - ] - }, - { - "text": "Commute all death sentences to terms of imprisonment", - "values": [ - "Death penalty" - ] - }, - { - "text": "Consider establishing a national human rights institution", - "values": [ - "National Human Rights Institution" - ] - }, - { - "text": "Proceed to the ratification the Second Optional Protocol to the International Covenant on Civil and Political Rights aiming at the abolition of the death penalty", - "values": [ - "Death penalty", - "International instruments" - ] - }, - { - "text": "Undertake additional measures to support migrants and in particular to implement the corresponding recommendations of the treaty bodies, such as recommendations of the CRC on support for the families of migrants", - "values": [ - "Migrants", - "Treaty bodies" - ] - }, - { - "text": "Step up efforts to eliminate discrimination against women and girls, including against rural and indigenous women, improve women's access to education and guarantee their right to health, including the sexual and reproductive rights ", - "values": [ - "Indigenous peoples", - "Right to education", - "Right to health", - "Rights of the Child", - "Women's rights" - ] - }, - { - "text": "Submit efforts towards promotion of gender equality", - "values": [ - "Women's rights" - ] - }, - { - "text": "Bring its Criminal Code fully in line with the Convention against Torture, particularly to include acts aimed at obtaining information from, punishing or intimidating a third person, and explicitly prohibit the use as evidence of any statement made under duress or as a result of torture", - "values": [ - "Human rights violations by state agents", - "Justice", - "Torture and other CID treatment" - ] - }, - { - "text": "Take further measures to improve the security of journalists and to ensure that violations of the rights of journalists are fully and promptly investigated and that any one found responsible is brought to justice according to international standards ", - "values": [ - "Freedom of the press" - ] - }, - { - "text": "Adopt a National Action Plan on Security Council resolution 1325 on women, peace and security", - "values": [ - "Women's rights" - ] - }, - { - "text": "Repeal Articles 42.1 and 40.3.3 of the Constitution", - "values": [ - "Rights of the Child", - "Women's rights" - ] - }, - { - "text": "Improve the protection of children, strengthen early detection and counsel for victims of child sexual abuse, raise public awareness about the harmful effects of corporal punishment", - "values": [ - "Human rights education and training", - "Rights of the Child", - "Torture and other CID treatment" - ] - }, - { - "text": "Provide sufficient resources for the effective functioning of the child protection system, including through training of social workers, standards to limit the case load per social worker and their adequate remuneration", - "values": [ - "Rights of the Child" - ] - }, - { - "text": "Develop, as part of the drafting process of a framework for Libya's political transition, an agenda on transitional justice and accountability, which includes investigations of all allegations of torture, to hold those responsible to account, and to provide redress and reparation for victims", - "values": [ - "Justice", - "Torture and other CID treatment" - ] - }, - { - "text": "Amend the Criminal Code, as announced in the national report, and introduce a separate provision on trafficking of human beings", - "values": [ - "Trafficking" - ] - }, - { - "text": "Amend article 134 of the Penal Code of Oman and any other legislation that disproportionately restricts the right to freedom of association", - "values": [ - "Freedom of association and peaceful assembly" - ] - }, - { - "text": "Maintain its policy of respect and tolerance of all religious without discrimination including the right not to profess any religion", - "values": [ - "Freedom of religion and belief" - ] - }, - { - "text": "Introduce a moratorium on all executions and introduce legislation to abolish the death penalty", - "values": [ - "Death penalty" - ] - }, - { - "text": "Do its utmost to guarantee that children, regardless of their descent status, are treated equally in law and in practice ", - "values": [ - "Rights of the Child" - ] - }, - { - "text": "Undertake a comprehensive review of legislation with a view to ensuring de jure and de facto equality between men and women", - "values": [ - "Women's rights" - ] - }, - { - "text": "Establish dedicated mechanisms for the provision of remedies to victims of racial discrimination and facilitate their access to the justice system, and to ensure the reporting of hate crimes", - "values": [ - "Racial discrimination" - ] - }, - { - "text": "Continue its efforts in implementing the outstanding recommendations from the previous universal periodic review cycle", - "values": [ - "UPR process" - ] - }, - { - "text": "Continue efforts for the prompt adoption of the Law on Juvenile Justice", - "values": [ - "Freedom of opinion and expression", - "Freedom of the press" - ] - }, - { - "text": "Review the anti-terrorist legislation in order to bring it in line with international standards", - "values": [ - "Counter-terrorism" - ] - }, - { - "text": "Guarantee due process, prohibit in law the use of torture and other forms of cruel treatments, in accordance with the Convention against Torture", - "values": [ - "International instruments", - "Justice", - "Torture and other CID treatment" - ] - }, - { - "text": "Allocate adequate resources to ensure the effective implementation of the Combatting Trafficking in Persons Act (2011) ", - "values": [ - "Trafficking" - ] - }, - { - "text": "Uphold women's rights so that women can fully participate in the social, cultural, economic and political spheres of their society", - "values": [ - "Women's rights" - ] - }, - { - "text": "Take measures to combat the use of torture and related acts", - "values": [ - "Torture and other CID treatment" - ] - }, - { - "text": "Consider the possibility of issuing a standing invitation to the Special Rapporteurs as a way for the system to cooperate in defining the Government's policies for human rights", - "values": [ - "Special procedures" - ] - }, - { - "text": "Recommended a moratorium on executions with a view to abolishing the death penalty, as provided by General Assembly resolution 62-149.", - "values": [ - "Death penalty" - ] - }, - { - "text": "Expand its outreach and political reconciliation efforts as broadly as possible as part of comprehensive efforts to stabilize Somalia", - "values": [ - "Other" - ] - }, - { - "text": "Close down immediately all political prison camps and labour camps and unconditionally release all prisoners of conscience, including relatives that have been held on the basis of "guilt by association" ", - "values": [ - "Detention", - "Freedom of opinion and expression" - ] - }, - { - "text": "Ratify the Rome Statute of the International Criminal Court, as recommended previously ", - "values": [ - "International instruments", - "Justice", - "UPR process" - ] - }, - { - "text": "Examination of the idea of creating a national action plan to implement the outcome of the universal periodic review", - "values": [ - "UPR process" - ] - }, - { - "text": "Assess the impact of the minimum age limit for overseas spouses or fiancés on the prevention of forced marriage and review its policy in this regard ", - "values": [ - "Rights of the Child", - "Women's rights" - ] - }, - { - "text": "Properly disseminate the National Strategy for the Prevention and Eradication of Child Labour among all central, local institutions and civil society", - "values": [ - "Labour", - "Rights of the Child" - ] - }, - { - "text": "Continue repealing discriminatory laws and to allocate adequate budget for the implementation of its National Gender Programme to ensure non-discrimination against women", - "values": [ - "Women's rights" - ] - }, - { - "text": "Enhance the protection for children, including by improving the investigation, prosecution and prevention of violence against children ", - "values": [ - "Rights of the Child" - ] - }, - { - "text": "Undertake all efforts to relax censorship and to grant oppositional groups the possibility to establish their own media outlets ", - "values": [ - "Freedom of the press" - ] - }, - { - "text": "Take additional and concrete efforts to eradicate human trafficking, prosecute traffickers under criminal law and protect and provide victims with adequate support throughout the criminal proceedings", - "values": [ - "Trafficking" - ] - }, - { - "text": "Establish an independent National Preventive Mechanism in compliance with the Optional Protocol to the Convention against Torture requirements", - "values": [ - "Detention", - "International instruments", - "Torture and other CID treatment" - ] - }, - { - "text": "Conduct independent investigations into allegations of police misconduct, and create an independent body to investigate complaints against members of the police force", - "values": [ - "Human rights violations by state agents" - ] - }, - { - "text": "Allow access to its detention centers by independent organizations and to arrested foreigners by their diplomatic representatives in accordance with its international human rights obligations", - "values": [ - "Detention", - "International instruments" - ] - }, - { - "text": "Continue to work on providing health and education services for remote areas ", - "values": [ - "Right to education", - "Right to health" - ] - }, - { - "text": "Implement a strategy aimed at improving detention conditions by reducing prison overcrowding and ensuring that female detainees can be guarded by female correctional officers ", - "values": [ - "Detention", - "Women's rights" - ] - }, - { - "text": "Continue strengthening institutional frameworks, including by finalizing the bill on an NHRI in line with the Paris Principles and the National Strategic Action Plan on Human Rights", - "values": [ - "National Human Rights Institution" - ] - }, - { - "text": "Consider withdrawing its reservations to article 4 (a) of ICERD ", - "values": [ - "International instruments", - "Racial discrimination" - ] - }, - { - "text": "Submit its overdue reports to the human rights monitoring bodies", - "values": [ - "Treaty bodies" - ] - }, - { - "text": "Adopt comprehensive national legislation against discrimination", - "values": [ - "Other" - ] - }, - { - "text": "Consider abolishing the requirements for medical interventions for transgender people who wish to obtain legal recognition of their gender", - "values": [ - "Sexual Orientation and Gender Identity" - ] - }, - { - "text": "Take measures to tackle racial discrimination and to combat more resolutely all forms of racism, xenophobia and religious intolerance against foreigners and religious minorities, including Muslims ", - "values": [ - "Freedom of religion and belief", - "Minorities", - "Racial discrimination" - ] - }, - { - "text": "Become a member of the International Labour Organization and the respective conventions ", - "values": [ - "International instruments", - "Labour" - ] - }, - { - "text": "Continue to work towards overcoming the challenges identified in paragraph 167 of its national report that affect the quality of implementation of the provisions of international human rights agreements ", - "values": [ - "International instruments" - ] - }, - { - "text": "Take appropriate measures to strengthen the implementation of the 2011 Act on Support for Family and Alternative Care Systems", - "values": [ - "Rights of the Child" - ] - }, - { - "text": "Take necessary steps to become a party to the International Convention on the Protection of the Rights of All Migrant Workers and Members of Their Families", - "values": [ - "International instruments", - "Labour", - "Migrants" - ] - }, - { - "text": "Strengthen the Truth, Justice and Reconciliation Commission, as well as other institutions supporting democratic governance ", - "values": [ - "Justice" - ] - }, - { - "text": "Continue its efforts to enhance the protection of children and improve their well-being", - "values": [ - "Rights of the Child" - ] - }, - { - "text": "Enact the legislation as it will help to protect the women of Tajikistan from domestic violence, in line with CEDAW and ICCPR, to which Tajikistan is a signatory", - "values": [ - "International instruments", - "Women's rights" - ] - }, - { - "text": "Criminalize public incitement of acts against persons on the basis of sexual orientation or gender identity ", - "values": [ - "Sexual Orientation and Gender Identity" - ] - }, - { - "text": "Protect the economic, social and cultural rights of the Sami people from the negative effects that may result from logging and other activities carried out by private agents", - "values": [ - "ESC rights - general", - "Indigenous peoples" - ] - }, - { - "text": "Continue implementing actions to ratify the Optional Protocol to the Convention on the Rights of the Child on the sale of children, child prostitution and child pornography ", - "values": [ - "International instruments", - "Rights of the Child", - "Trafficking" - ] - }, - { - "text": "Ensure a favourable climate for the activities of human rights defenders, journalists and other civil society actors ", - "values": [ - "Civil society", - "Freedom of the press", - "Human rights defenders" - ] - }, - { - "text": "Decriminalize unauthorized travel ", - "values": [ - "Freedom of movement" - ] - }, - { - "text": "Allocate an appropriate amount of funds to the courts and provide adequate human and material resources to enable the judiciary to properly perform its functions ", - "values": [ - "Justice" - ] - }, - { - "text": "Establish and implement regulations to ensure that the business sector complies with international and national human rights, labour, environment and other standards", - "values": [ - "Business and human rights" - ] - }, - { - "text": "Sign and ratify the International Covenant on Civil and Political Rights, the International Covenant on Economic, Social and Cultural Rights, and the International Convention for the Protection of All Persons from Enforced Disappearance", - "values": [ - "CP rights - general", - "ESC rights - general", - "Enforced disappearances", - "International instruments" - ] - }, - { - "text": "Take measures to ensure reparation to victims of acts of torture committed under United States' control and allow access to the International Committee of the Red Cross to detention facilities under the control of the United States", - "values": [ - "Detention", - "Torture and other CID treatment" - ] - }, - { - "text": "Consider ratification of ILO convention on decent work for domestic workers ", - "values": [ - "International instruments", - "Labour" - ] - }, - { - "text": "Continue to promote the empowerment of women", - "values": [ - "Women's rights" - ] - }, - { - "text": "Continue to promote access to health", - "values": [ - "Right to health" - ] - }, - { - "text": "Ensure all persons who are held in custody have the benefit, from the very outset of their deprivation of liberty, of all the fundamental legal safeguards", - "values": [ - "Detention" - ] - }, - { - "text": "Commit completely to implement the outcome of the first UPR ", - "values": [ - "UPR process" - ] - }, - { - "text": "Fully implement any judgment by the European Court of Human Rights regarding the "foreign agent" law ", - "values": [ - "Civil society", - "Freedom of association and peaceful assembly" - ] - }, - { - "text": "Ratify or access, as appropriate, the Optional Protocol to the Convention on Torture", - "values": [ - "Detention", - "International instruments", - "Torture and other CID treatment" - ] - }, - { - "text": "Continue its efforts for promotion of human rights with particular attention to the fulfilment of the NHRAP for 2012 - 2015", - "values": [ - "General" - ] - }, - { - "text": "Speed up efforts towards the establishment of an independent national human rights institution in conformity with the Paris Principles", - "values": [ - "National Human Rights Institution" - ] - }, - { - "text": "Undertake effective measures to ensure the implementation of legislation guaranteeing the principle of non-discrimination, adopting a comprehensive strategy to eliminate all forms of discrimination, particularly on the basis of gender, and strengthen its efforts aimed at harmonizing its national legislation with ratified international instruments ", - "values": [ - "Women's rights" - ] - }, - { - "text": "Strengthen a multisectoral response at all levels in addressing the gender-based violence", - "values": [ - "Women's rights" - ] - }, - { - "text": "Provide humanitarian assistance at the extent possible to neighbouring countries which need assistance because of man-made or natural catastrophes ", - "values": [ - "Other" - ] - }, - { - "text": "Continue placing special emphasis on the victim-oriented approach to address the challenges of human trafficking in the country ", - "values": [ - "Trafficking" - ] - }, - { - "text": "Continue to protect the natural family and marriage, formed by a husband and a wife, as the basic cell of society, as well as the right to life ", - "values": [ - "Other" - ] - }, - { - "text": "Create a system, to include training for law enforcement, legal professionals and health care personnel, for providing legal and medical aid to survivors of gender based violence, including rape and sexual violence, domestic violence, and female genital mutilation", - "values": [ - "Rights of the Child", - "Torture and other CID treatment", - "Women's rights" - ] - }, - { - "text": "Continue its positive efforts to improve the human rights situation in its country", - "values": [ - "General" - ] - }, - { - "text": "Continue to conduct outreach activities to raise awareness of people on human rights ", - "values": [ - "Human rights education and training" - ] - }, - { - "text": "Put in place measures to eliminate harmful traditional practices and raise awareness for attitudes to change in relation to discriminatory gender roles", - "values": [ - "Human rights education and training", - "Torture and other CID treatment", - "Women's rights" - ] - }, - { - "text": "Implement public policies so as to protect the work of human rights defenders in line with international standards, and implement measures aimed at the effective reduction of attacks and at their independent and effective investigation", - "values": [ - "Human rights defenders" - ] - }, - { - "text": "Make every possible effort in order to reduce the detention period of asylum seekers, especially regarding unaccompanied children and pregnant women, and treat them with most proper manner", - "values": [ - "Asylum-seekers - refugees", - "Detention", - "Rights of the Child", - "Women's rights" - ] - }, - { - "text": "Further intensify investigation, prosecution and adequate sanctions in all cases of human trafficking", - "values": [ - "Trafficking" - ] - }, - { - "text": "Adopt and ensure full implementation of the public policy for the protection of human rights defenders as well as the protocol of the Public Prosecutor\u2019s Office on the investigation of cases against human rights defenders", - "values": [ - "Human rights defenders" - ] - }, - { - "text": "Expedite the implementation of the legal guarantees to ensure the independence of the judiciary ", - "values": [ - "Justice" - ] - }, - { - "text": "In conclusion, the head of delegation reconfirmed the Government's commitment and full respect of international standards of human rights and its commitment to cooperation with international mechanisms and civil society organizations. ", - "values": [ - "Civil society", - "International instruments" - ] - }, - { - "text": "Continue its efforts to increase the level of employment of persons with disabilities in the open labour market and take specific measures for women with disabilities", - "values": [ - "Disabilities", - "Women's rights" - ] - }, - { - "text": "Enact specific legislation regarding trafficking in persons ", - "values": [ - "Trafficking" - ] - }, - { - "text": "Undertake a participatory process in the implementation of the UPR recommendations", - "values": [ - "UPR process" - ] - }, - { - "text": "Continue to take steps towards eliminating gender-based violence, including through strengthening domestic laws and policies to protect women", - "values": [ - "Women's rights" - ] - }, - { - "text": "Continue to work by including human rights in general policies and placing people at the core of development", - "values": [ - "General" - ] - }, - { - "text": "Continue the consultation with civil society in a follow-up to its universal periodic review ", - "values": [ - "Civil society", - "UPR process" - ] - }, - { - "text": "Expand its School Feeding Programme and integrate it with local agricultural production", - "values": [ - "Right to food" - ] - }, - { - "text": "Strengthen the measures to prevent and combat femicide and other forms of gender-based violence", - "values": [ - "Women's rights" - ] - }, - { - "text": "Continue its national policy to promote equal opportunities and treatment with respect to employment", - "values": [ - "Development" - ] - }, - { - "text": "Ensure that, in practice, girls have equal access to education.", - "values": [ - "Right to education", - "Rights of the Child", - "Women's rights" - ] - }, - { - "text": "Continue its constructive and cooperative dialogue with the UN human rights system", - "values": [ - "Special procedures", - "Treaty bodies", - "UPR process" - ] - }, - { - "text": "Adopt a definition of torture which is fully in compliance with article 1 of the Convention against Torture, its inclusion as a specific crime in Thailand's legislation, and undertake prompt, thorough and impartial investigation of all allegations of torture and ill-treatment", - "values": [ - "International instruments", - "Torture and other CID treatment" - ] - }, - { - "text": "Implement alternative measures to the deprivation of liberty, especially with regard to minors.", - "values": [ - "Justice", - "Rights of the Child" - ] - }, - { - "text": "Adopt and implement measures to protect women and children from domestic violence ", - "values": [ - "Rights of the Child", - "Women's rights" - ] - }, - { - "text": "Implement the 1997 Constitution and publicly affirm the right to freedom of expression, opinion, religion, association and movement ", - "values": [ - "Freedom of association and peaceful assembly", - "Freedom of movement", - "Freedom of opinion and expression", - "Freedom of religion and belief" - ] - }, - { - "text": "Take the necessary measures to amend national laws that allow discrimination against women so that those laws are in line with international human rights standards, and criminalize domestic violence ", - "values": [ - "Women's rights" - ] - }, - { - "text": "Consider the possibility of signing or ratifying the International Covenant on Civil and Political Rights (ICCPR), the International Covenant on Economic, Social and Cultural Rights (ICESCR), the International Convention on the Elimination of All Forms of Racial Discrimination (ICERD), the Convention against Torture and Other Cruel, Inhuman or Degrading Treatment or Punishment (CAT) and the International Convention for the Protection of All Persons from Enforced Disappearance ", - "values": [ - "CP rights - general", - "ESC rights - general", - "Enforced disappearances", - "International instruments", - "Racial discrimination", - "Torture and other CID treatment" - ] - }, - { - "text": "Intensify the progress made to eliminate poverty by identifying the critical bottlenecks in society", - "values": [ - "Poverty" - ] - }, - { - "text": "Put in practice a broad system of alternative measures to deprivation of liberty of minors so that it is used only as a last resort, for the shortest time possible and in the appropriate conditions", - "values": [ - "Justice", - "Rights of the Child" - ] - }, - { - "text": "Ensure that the rights of all its people to freedom of expression, religion, and peaceful assembly are respected ", - "values": [ - "Freedom of association and peaceful assembly", - "Freedom of opinion and expression", - "Freedom of religion and belief" - ] - }, - { - "text": "Undertake a serious and credible study on the extent of violence against women, particularly the impact of humanitarian crisis on the issue, with a view to develop meaningful strategies to curb and eradicate violence against women", - "values": [ - "Women's rights" - ] - }, - { - "text": "Take the necessary steps aimed at revising the relevant legislation with a view to decriminalize abortion within reasonable gestational limits", - "values": [ - "Women's rights" - ] - }, - { - "text": "Continue to strengthen its comprehensive free health-care system by taking the necessary steps to increase the number of qualified local health personnel in the country ", - "values": [ - "Right to health" - ] - }, - { - "text": "Render more effective the implementation of article 333 of the Criminal Code, which imposes severe sanctions for the practice of FGM. ", - "values": [ - "Rights of the Child", - "Torture and other CID treatment", - "Women's rights" - ] - }, - { - "text": "Implement the 2013 Public Benefits Organizations Act, and ensure that any amendments to the Act are undertaken in consultation with civil society", - "values": [ - "Civil society", - "Freedom of association and peaceful assembly" - ] - }, - { - "text": "Extend the rights guaranteed in Iranian legislation to all religious groups, including the Baha'i community", - "values": [ - "Freedom of religion and belief", - "Minorities" - ] - }, - { - "text": "Ratify the Convention on the Rights of Persons with Disabilities and develop public awareness campaigns about the rights and participation of such persons", - "values": [ - "Disabilities", - "Human rights education and training", - "International instruments" - ] - }, - { - "text": "Play an effective role to operationalize the right to development at the international level", - "values": [ - "Development" - ] - }, - { - "text": "Expedite the process of reconciliation and transitional justice, including through the commencement of the operation of the Office of Missing Persons, the enactment of the new counter-terrorism legislation, as well as the additional release of land to the people in the northern and eastern provinces of the country", - "values": [ - "Counter-terrorism", - "Justice", - "Right to land" - ] - }, - { - "text": "Israel remains committed to the principle of accountability and will continue to conduct investigations regarding any alleged violation of domestic or international laws.", - "values": [ - "International instruments", - "Justice" - ] - }, - { - "text": "Establish a comprehensive national birth registration system for foreign nationals to ensure the births of their children are registered", - "values": [ - "Rights of the Child", - "Statelessness and the right to nationality" - ] - }, - { - "text": "Adopt legislation to address sexual harassment, especially in the workplace", - "values": [ - "Labour", - "Women's rights" - ] - }, - { - "text": "Intensify efforts to prevent statelessness, including through ensuring proper, affordable and accessible birth registration of all children born in Indonesia", - "values": [ - "Rights of the Child", - "Statelessness and the right to nationality" - ] - }, - { - "text": "Take the necessary action to publish the report of the Subcommittee on Prevention of Torture and Other Cruel, Inhuman or Degrading Treatment or Punishment in order to assist a dialogue on the implementation of the Subcommittee\u2019s recommendations", - "values": [ - "Torture and other CID treatment" - ] - }, - { - "text": "Commit fully to protecting and promoting indigenous rights through appropriate measures in law, policy and practice ", - "values": [ - "Indigenous peoples" - ] - }, - { - "text": "Put an end to corporal punishment and other forms of violence in schools", - "values": [ - "Rights of the Child", - "Torture and other CID treatment" - ] - }, - { - "text": "Carry out necessary reforms to address stigma against persons with disabilities in order to strengthen implementation of the Convention on the Rights of Persons with Disabilities", - "values": [ - "Disabilities" - ] - }, - { - "text": "Oversee the strengthening of technical cooperation between Bhutan and various United Nations organs to enhance capacity in the field of exchange of technology and information ", - "values": [ - "Technical assistance and cooperation" - ] - }, - { - "text": "Expedite the implementation of new constitutional provisions which have included innovative measures in the sphere of human rights", - "values": [ - "International instruments" - ] - }, - { - "text": "Allocate sufficient resources to implement its youth policy to ensure meaningful use of youth delegates participating in international forums, and inclusion of youth in rural areas and strengthen political impartiality and independence of youth representation", - "values": [ - "Other" - ] - }, - { - "text": "End its severe restrictions and surveillance of the Internet, hence guaranteeing free, unrestricted access for all its citizens to Internet and Social Media", - "values": [ - "Freedom of opinion and expression", - "Privacy" - ] - }, - { - "text": "Finalize the legislation needed to establish a national human rights institution in accordance with the Paris Principles.", - "values": [ - "National Human Rights Institution" - ] - }, - { - "text": "Strengthen the implementation of the second National Plan of Action by relevant Government agencies", - "values": [ - "General" - ] - }, - { - "text": "Lift all its reservations to the Convention on the Elimination of All Forms of Discrimination against Women", - "values": [ - "International instruments", - "Women's rights" - ] - }, - { - "text": "Consider issuing a standing invitation to United Nations human rights special procedures ", - "values": [ - "Special procedures" - ] - }, - { - "text": "Strengthen the Penal Code as an effective instrument in combating hate speech", - "values": [ - "Racial discrimination" - ] - }, - { - "text": "Continue working towards peace through dialogue ", - "values": [ - "International humanitarian law" - ] - }, - { - "text": "Accede to the Protocol to Prevent, Suppress and Punish Trafficking in Persons, Especially Women and Children, supplementing the United Nations Convention against Transnational Organized Crime, and implement the Protocol in its domestic law, with penalties commensurate with this serious crime ", - "values": [ - "International instruments", - "Trafficking" - ] - }, - { - "text": "Become party to the Optional Protocol to the Convention on the Rights of the Child on the Sale of Children, Child Prostitution and Child Pornography ", - "values": [ - "International instruments", - "Rights of the Child", - "Trafficking" - ] - }, - { - "text": "Step up its efforts in order to raise the level of employment and education of indigenous peoples and to react to the difficulties facing people living in isolated communities ", - "values": [ - "Development", - "Indigenous peoples", - "Right to education" - ] - }, - { - "text": "As recommended by CRC, solicit and receive technical and financial assistance from the international community, particularly from United Nations bodies and programmes, to give tangible form to various sections of the poverty reduction strategy paper, especially restoration of security, consolidation of peace and prevention of conflict, promotion of good governance, reconstruction of the economy and diversification and development of human capital", - "values": [ - "Justice", - "Poverty", - "Technical assistance and cooperation", - "Treaty bodies" - ] - }, - { - "text": "Support and implement the United Nations Declaration on the Rights of Indigenous Peoples", - "values": [ - "Indigenous peoples", - "International instruments" - ] - }, - { - "text": "Allow freedom of expression, freedom of the media and of assembly", - "values": [ - "Freedom of association and peaceful assembly", - "Freedom of opinion and expression", - "Freedom of the press" - ] - }, - { - "text": "Request and be extended all its assessed needs, including all possible technical, human and financial resources, to complement its efforts to strengthen the human rights infrastructure in accordance with its Constitution and international standards", - "values": [ - "General" - ] - }, - { - "text": "Establish measures to promote tolerance of ethnic and religious diversity in society", - "values": [ - "Freedom of religion and belief", - "Minorities" - ] - }, - { - "text": "Pay more attention to fighting against extreme poverty", - "values": [ - "Poverty" - ] - }, - { - "text": "Ratify the second Optional Protocol to the International Covenant on Economic, Social and Cultural Rights on the abolition of capital punishment ", - "values": [ - "Death penalty", - "International instruments" - ] - }, - { - "text": "Recommended that Benin, following the recommendation of the Committee against Torture,establish without further delay an effective and independent national preventive mechanism.", - "values": [ - "Torture and other CID treatment", - "Treaty bodies" - ] - }, - { - "text": "Continue its efforts to strengthen the educational and health sectors and raise awareness regarding human rights issues ", - "values": [ - "Human rights education and training", - "Right to education", - "Right to health" - ] - }, - { - "text": "Apply the Recommended Principles and Guidelines of OHCHR when addressing the issue of trafficking", - "values": [ - "Trafficking" - ] - }, - { - "text": "Continue efforts aimed at combating racism, racial discrimination and xenophobia through measures that would lead to harmony", - "values": [ - "Racial discrimination" - ] - }, - { - "text": "Step up efforts to investigate racist attacks and punish the perpetrators and tackle the underlying causes of issues of racist discrimination and racist attacks as part of its ongoing reform of the justice system.", - "values": [ - "Racial discrimination" - ] - }, - { - "text": "Take steps to ensure the availability of adequate food and freedom from hunger for its citizens", - "values": [ - "Right to food" - ] - }, - { - "text": "Adopt a national strategy in the field of domestic violence ", - "values": [ - "Rights of the Child", - "Women's rights" - ] - }, - { - "text": "Immediately ban anti-immigrant and anti-Muslim political discourse propagated by some political parties including Sweden Democrats", - "values": [ - "Freedom of religion and belief", - "Migrants", - "Racial discrimination" - ] - }, - { - "text": "Strengthen awareness-raising and training in the human rights area, in particular for judges and law enforcement personnel ", - "values": [ - "Human rights education and training" - ] - }, - { - "text": "Canada's police, correctional services and institutions responsible for national security and public safety are firmly committed to ensuring safety with due respect for human rights", - "values": [ - "Public security" - ] - }, - { - "text": "Consider establishing a national policy of protection of human rights defenders.", - "values": [ - "Human rights defenders" - ] - }, - { - "text": "Continue its policy of tolerance and diversity among the different ethnic and religious groups", - "values": [ - "Freedom of religion and belief", - "Minorities" - ] - }, - { - "text": "Adopt a comprehensive legal instrument which recognizes the rights of persons belonging to minority groups, including Roma, and offers the necessary protection, in particular to children, as recommended by the Committee on the Rights of the Child.", - "values": [ - "Minorities", - "Rights of the Child", - "Treaty bodies" - ] - }, - { - "text": "Provide human rights training specifically focused on protection of the human rights of women, children and other vulnerable groups to civil servants, military forces and police, prison and judicial staff and ensure their full accountability for any violations of human rights in all situations ", - "values": [ - "Human rights education and training", - "Human rights violations by state agents", - "Rights of the Child", - "Women's rights" - ] - }, - { - "text": "Take further measures aimed at ensuring the right to education for all and promote human rights education and training ", - "values": [ - "Human rights education and training", - "Right to education" - ] - }, - { - "text": "Consider the ratification of ICCPR and the Covenant on Economic, Social and Cultural Rights (ICESCR), the International Convention on the Protection of the Rights of All Migrant Workers and Members of Their Families and CRPD ", - "values": [ - "CP rights - general", - "Disabilities", - "ESC rights - general", - "International instruments", - "Labour", - "Migrants" - ] - }, - { - "text": "Continue the ratification of international human rights instruments, considering, in particular, ratification of the Rome Statute ", - "values": [ - "International instruments", - "Justice" - ] - }, - { - "text": "Consider ratifying the ICRMW", - "values": [ - "International instruments", - "Labour", - "Migrants" - ] - }, - { - "text": "Codify and harmonize national legislation, including customary law, in conformity with Somalia's international obligations and the existing international standards in the field of human rights ", - "values": [ - "International instruments" - ] - }, - { - "text": "Adopt necessary measures to ensure a gender perspective in providing assistance to victims of trafficking in persons including through capacity-building of the Prosecutor\u2019s office personnel and members of the national police", - "values": [ - "Trafficking", - "Women's rights" - ] - }, - { - "text": "Fully fund and implement the Anti-Gender-Based Violence Act, the Gender Equity and Equality Act and other legislation and policies to protect girls from child, early and forced marriage and other forms of abuse", - "values": [ - "Rights of the Child", - "Women's rights" - ] - }, - { - "text": "Continuing to implement the project "Uruguay, united in putting an end to violence against women, children and adolescents" 2012-2014", - "values": [ - "Rights of the Child", - "Women's rights" - ] - }, - { - "text": "Adopt the necessary additional measures to effectively prevent and combat sexual violence against women, particularly minors.", - "values": [ - "Rights of the Child", - "Women's rights" - ] - }, - { - "text": "Increase the sentences for the crime of smuggling of persons, and provide more training for judges, police and investigators on this issue", - "values": [ - "Human rights education and training", - "Trafficking" - ] - }, - { - "text": "Implement the recommendations of the Human Rights Committee, by prosecuting and sentencing, as appropriate, the perpetrators of the extrajudicial executions of December 1982 and the Moiwana massacre in 1986", - "values": [ - "Extrajudicial executions", - "Treaty bodies" - ] - }, - { - "text": "Observe all human rights principles and international conventions, and raise awareness among the population regarding human rights values", - "values": [ - "Human rights education and training", - "International instruments" - ] - }, - { - "text": "Take legislative measures to ensure non-discrimination against children in all settings and fully implement the provisions of the Convention on the Rights of the Child", - "values": [ - "International instruments", - "Rights of the Child" - ] - }, - { - "text": "Strengthen the independence and autonomy of the National Commission on Human Rights, granting it with resources so that it can act effectively", - "values": [ - "National Human Rights Institution" - ] - }, - { - "text": "Take effective measures to prevent the dissemination of racist and xenophobic speeches on the Internet and through the media ", - "values": [ - "Racial discrimination" - ] - }, - { - "text": "Keep on encouraging the third basic plan for gender equality and implementing it continuously", - "values": [ - "Women's rights" - ] - }, - { - "text": "Further strengthen the implementation of some of the provisions of the law on comprehensive protection measures to tackle gender-based violence ", - "values": [ - "Women's rights" - ] - }, - { - "text": "Pursue, as a matter of priority, the ratification of OP-CAT, recommended in 2010 by the Committee against Torture, and include in the national Criminal Code a definition of torture as contained in the Convention against Torture ", - "values": [ - "Detention", - "International instruments", - "Torture and other CID treatment", - "Treaty bodies" - ] - }, - { - "text": "Strive to maintain a constructive working relationship with the Special Rapporteur on the situation of human rights in Cambodia in respect of his independence and that of OHCHR", - "values": [ - "Special procedures" - ] - }, - { - "text": "Consider the ratification of the Second Optional Protocol to the International Covenant on Civil and Political Rights ", - "values": [ - "Death penalty", - "International instruments" - ] - }, - { - "text": "Establish mechanisms to disseminate information about the consequences of acts of violence against children ", - "values": [ - "Rights of the Child" - ] - }, - { - "text": "Continue to ensure equal rights for women in society ", - "values": [ - "Women's rights" - ] - }, - { - "text": "Continue to strengthen the institutional framework so that the State is able to respond adequately and efficiently to future challenges in areas of public health, education, culture, environment and State administration ", - "values": [ - "Environment", - "Right to education", - "Right to health" - ] - }, - { - "text": "Continue making efforts in raising the quality of education and to ensure that secondary education is fully free and accessible to all children", - "values": [ - "Right to education", - "Rights of the Child" - ] - }, - { - "text": "Provide all necessary assistance in order that the national human rights institution is able to operate at full capacity and continue judicial reforms, including the increased capacity building of judicial institutions", - "values": [ - "Justice", - "National Human Rights Institution" - ] - }, - { - "text": "From the federal level, to provide guidance to all states on the adoption of practical measures to ensure the implementation of these legislative changes at the local level to family law\nthat results in real or de facto discrimination\nagainst women and girls, and to legislation that\nprevents women%u2019s access to justice.", - "values": [ - "Justice" - ] - }, - { - "text": "Enact legislation recognizing the legitimate work of human rights defenders and ensuring their life, security and integrity, and conduct prompt, impartial and effective investigations into allegations of threats, attacks and violence against them ", - "values": [ - "Human rights defenders" - ] - }, - { - "text": "Continue to combat violence against children", - "values": [ - "Rights of the Child" - ] - }, - { - "text": "Further improve social security, health and employment of the population", - "values": [ - "Development", - "ESC rights - general", - "Right to health" - ] - }, - { - "text": "Complete the review of the Children and Adolescents Code, and develop the law prohibiting corporal punishment and humiliating treatment towards boys, girls and adolescents", - "values": [ - "Rights of the Child", - "Torture and other CID treatment" - ] - }, - { - "text": "Enhance the promotion and protection of the rights of women and girls, including through the elimination of violence against them", - "values": [ - "Rights of the Child", - "Women's rights" - ] - }, - { - "text": "Reinforce action of the authorities to combat violence against persons with albinism", - "values": [ - "Minorities" - ] - }, - { - "text": "Develop cooperation with the ICRC, allowing it access to all places where persons are or may be deprived of their liberty ", - "values": [ - "Detention" - ] - }, - { - "text": "Increase efforts to stop traffickers, including law enforcement measure and border security, as appropriate, take measures to investigate, prosecute and penalize those agents who accept bribes or otherwise facilitate trafficking, increase efforts to implement the new anti-trafficking law, expand antitrafficking training for judges and law enforcement personnel and increase victim services and protection efforts.", - "values": [ - "Trafficking" - ] - }, - { - "text": "Amend the related legislation to establish an immediate moratorium on the death penalty with a view to abolishing capital punishment generally in line with the General Assembly resolutions 62-149 and 63-168 as well as ICCPR-OP 2 ", - "values": [ - "Death penalty", - "International instruments" - ] - }, - { - "text": "Work to continue its ongoing efforts in the media sector to develop the capacities of professional associations in this field", - "values": [ - "Freedom of the press" - ] - }, - { - "text": "Bring its law in conformity with its international human rights obligations by repealing all laws which result in, or are likely to result in the discrimination, prosecution and punishment of people solely for their sexual orientation or gender identity", - "values": [ - "International instruments", - "Sexual Orientation and Gender Identity" - ] - }, - { - "text": "Strengthen the mechanisms set up by the "Commission of Human Rights and Integration", to ensure the best possible monitoring and evaluation of the human rights situation in the country", - "values": [ - "General" - ] - }, - { - "text": "Adopt a comprehensive law on environmental protection to provide the necessary basis for continued sustainable development ", - "values": [ - "Development", - "Environment" - ] - }, - { - "text": "Continue with the education process, dissemination of information and awareness raising for families, local leaders, civil society and all relevant actors, in order to eradicate the practice known as "Wahaya" or 5th wife", - "values": [ - "Civil society", - "Human rights education and training", - "Rights of the Child", - "Torture and other CID treatment", - "Women's rights" - ] - }, - { - "text": "Adopt and implement a national protocol to guarantee equal access to therapeutic abortion for women and girls as part of sexual and reproductive health services", - "values": [ - "Right to health", - "Rights of the Child", - "Women's rights" - ] - }, - { - "text": "Abolish death penalty for all crimes and meanwhile put in place a de jure moratorium on executions, as provided by five resolutions adopted by the General Assembly of the United Nations, including the most recent resolution 69/186 of 18 December 2014", - "values": [ - "Death penalty" - ] - }, - { - "text": "Reduce child mortality and malnutrition to achieve the 2015 national Millennium Development Goals", - "values": [ - "Right to food", - "Right to health", - "Rights of the Child" - ] - }, - { - "text": "Enhance the training of athletes with disabilities and further promote their participation in international sporting events ", - "values": [ - "Disabilities" - ] - }, - { - "text": "Enact the statute of the Human Rights Commission whose mandates are in line with the Paris Principles and draw up a comprehensive national human rights' plan of action ", - "values": [ - "National Human Rights Institution" - ] - }, - { - "text": "Undertake all necessary measures to prevent discrimination and violence against LGBTI persons", - "values": [ - "Sexual Orientation and Gender Identity" - ] - }, - { - "text": "Actively seek, with the help of the international community, a resolution to restore the natural environment, affected by the nuclear testing of the United States on the Marshall Islands", - "values": [ - "Environment", - "Technical assistance and cooperation" - ] - }, - { - "text": "Continue efforts aimed at promoting the rights of children, women, migrants and national minorities", - "values": [ - "Migrants", - "Minorities", - "Rights of the Child", - "Women's rights" - ] - }, - { - "text": "Operationalize the "human rights action plan" that was issued by "Federal Government in October 2012" which includes many issues, among them, the commitment to protect the right to freedom of religion and belief, and measures to combat religious bias and discrimination based on religion and belief", - "values": [ - "Freedom of religion and belief", - "Racial discrimination" - ] - }, - { - "text": "Strengthen initiatives to promote equality and fight against discrimination, particularly those aimed at expanding political participation, whether from a gender ethnic, regional or social perspective", - "values": [ - "Women's rights" - ] - }, - { - "text": "Foster reconciliation through accelerated implementation of Human Rights Council resolution 30/1, including by launching the Office of Missing Persons, ending military involvement in civilian functions, returning lands to civilian owners, and establishing a judicial mechanism with the participation of foreign investigators, prosecutors and judges", - "values": [ - "Justice", - "Right to land" - ] - }, - { - "text": "Adopt measure to promote and facilitate the use of indigenous peoples' languages ", - "values": [ - "Indigenous peoples" - ] - }, - { - "text": "Redouble its efforts in implementing such policy as the Fiji National Gender Policy through a set of clear and measurable strategies", - "values": [ - "Women's rights" - ] - }, - { - "text": "Better educate security and law enforcement authorities at all levels about the basic rights of the citizens, take each reported case seriously and impartially investigate and punish those found guilty of such actions ", - "values": [ - "Human rights education and training", - "Justice" - ] - }, - { - "text": "Accede to the Agreement on the Privileges and Immunities of the ICC", - "values": [ - "International instruments", - "Justice" - ] - }, - { - "text": "Ratify and implement ICCPR and ICESCR as soon as possible and accelerate the ratification of ICCPR ", - "values": [ - "CP rights - general", - "ESC rights - general", - "International instruments" - ] - }, - { - "text": "Overcome its delay in the submission of its reports to the Treaty Bodies", - "values": [ - "Treaty bodies" - ] - }, - { - "text": "Decriminalize same-sex relationships between consenting adults and strengthen efforts to address inequality and discrimination based on sexual orientation", - "values": [ - "Sexual Orientation and Gender Identity" - ] - }, - { - "text": "Identify a priority list of areas in which assistance and aid are most crucially needed and approach bilateral, regional and international partners and stakeholders, as appropriate ", - "values": [ - "Technical assistance and cooperation" - ] - }, - { - "text": "Further promote the position of women in decision-making, and to guarantee equal remuneration between men and women", - "values": [ - "Women's rights" - ] - }, - { - "text": "Continue the endeavours that have been made to keep all persons informed and aware of the possibility of gaining access to educational and cultural institutions ", - "values": [ - "ESC rights - general", - "Right to education" - ] - }, - { - "text": "Consider ratifying the International Covenant on Economic, Social and Cultural Rights and the Convention against Torture", - "values": [ - "ESC rights - general", - "International instruments", - "Torture and other CID treatment" - ] - }, - { - "text": "Adopt effective measures to prevent torture and other forms of ill treatment and to limit the period of time for which people can be held in police custody or pre-trial detention", - "values": [ - "Detention", - "Torture and other CID treatment" - ] - }, - { - "text": "Accelerate the passage of the gender equality bill", - "values": [ - "Women's rights" - ] - }, - { - "text": "Ratify the Optional Protocol to the International Covenant on Economic, Social and Cultural Rights", - "values": [ - "ESC rights - general", - "International humanitarian law" - ] - }, - { - "text": "Step up its policies to address racial discrimination, racial profiling and hate speech, especially against Muslim women, minority group women and asylum seeking women", - "values": [ - "Asylum-seekers - refugees", - "Freedom of religion and belief", - "Minorities", - "Racial discrimination", - "Women's rights" - ] - }, - { - "text": "Further develop the quality of education and health-care policies in the country ", - "values": [ - "Right to education", - "Right to health" - ] - }, - { - "text": "Eliminate all forms of violence against children by adopting proper legislation and ensure its implementation", - "values": [ - "Rights of the Child" - ] - }, - { - "text": "Consider a formal moratorium on executions of all persons condemned with the death penalty and examine the possibility of abolishing the death penalty ", - "values": [ - "Death penalty" - ] - }, - { - "text": "Guarantee respect for human rights in the fight against terrorism and ensure that all perpetrators of violations, including extrajudicial executions, are prosecuted", - "values": [ - "Counter-terrorism", - "Extrajudicial executions" - ] - }, - { - "text": "Continue efforts made to achieve the goals of Vision 2016.", - "values": [ - "General" - ] - }, - { - "text": "Speed up the rebuilding and compensation process in the aftermath of the Canterbury earthquakes ", - "values": [ - "Development" - ] - }, - { - "text": "Continue with its efforts to protect and integrate in the society all persons with disabilities ", - "values": [ - "Disabilities" - ] - }, - { - "text": "Expedite the creation of the national human rights mechanism that complies with the Paris Principles", - "values": [ - "National Human Rights Institution" - ] - }, - { - "text": "Take further steps to ensure a safe and enabling environment for human rights defenders", - "values": [ - "Human rights defenders" - ] - }, - { - "text": "Adopt legislation that prohibits discrimination on the basis of sexual orientation and gender identity, and reinforce existing constitutional provisions that prohibit discrimination based on race and national origin", - "values": [ - "Racial discrimination", - "Sexual Orientation and Gender Identity" - ] - }, - { - "text": "Become a party to remaining human rights instruments and consider withdrawing its reservations, in particular to International Covenant on Civil and Political Rights", - "values": [ - "CP rights - general", - "International instruments" - ] - }, - { - "text": "Consider adopting additional measures to promote and protect the rights of persons with disabilities", - "values": [ - "Disabilities" - ] - }, - { - "text": "Advance in the commitment to incorporate into the national human rights law the United Nations Guiding Principles on Business and Human Rights, with special attention to labour rights, rights of indigenous communities and environmental rights", - "values": [ - "Business and human rights", - "Environment", - "Indigenous peoples", - "Labour" - ] - }, - { - "text": "Continue to strengthen its national human rights institution, namely the Commission on Human Rights and Administrative Justice, for the Commission to further develop a national human rights action plan which incorporates the Sustainable Development Goals", - "values": [ - "National Human Rights Institution" - ] - }, - { - "text": "Consider definitely abolishing the death penalty in its domestic legislation", - "values": [ - "Death penalty" - ] - }, - { - "text": "Ensure that there are no practices that discriminate on the basis of ethnic or national origin regarding the expulsion of immigrants ", - "values": [ - "Migrants", - "Racial discrimination" - ] - }, - { - "text": "Establish a national human rights institution with a broad mandate and sufficient resources, in compliance with the Paris Principles, that includes a concrete mandate regarding the rights of women", - "values": [ - "National Human Rights Institution" - ] - }, - { - "text": "Follow-up on the recommendations of the Committee on Rights of the Child to devote greater resources to the improvement of the quality of the educational system", - "values": [ - "Right to education", - "Rights of the Child", - "Treaty bodies" - ] - }, - { - "text": "Release all remaining political prisoners", - "values": [ - "Detention", - "Freedom of opinion and expression" - ] - }, - { - "text": "Continue to take measures to promote economic, social and cultural rights ", - "values": [ - "ESC rights - general" - ] - }, - { - "text": "Take more concrete measures to eliminate employment and wage gaps, to increase school enrolment rates of indigenous children, and review the justice system", - "values": [ - "Indigenous peoples", - "Women's rights" - ] - }, - { - "text": "Continue to take effective measures to safeguard the rights and status of the unemployed and vulnerable groups, through focused social assistance and income support", - "values": [ - "ESC rights - general" - ] - }, - { - "text": "Consider positively the ratification of the Migrant Workers Convention ", - "values": [ - "International instruments", - "Labour", - "Migrants" - ] - }, - { - "text": "Come to a more streamlined and transparent registration process and visa issuing for clergy and religious personnel in general", - "values": [ - "Freedom of movement", - "Freedom of religion and belief" - ] - }, - { - "text": "Promote increase autonomy to persons with disabilities in the fields of health, employment and education as additional steps following the ratification of the Convention on the Rights of Persons with Disabilities", - "values": [ - "Disabilities", - "International instruments", - "Labour", - "Right to education", - "Right to health" - ] - }, - { - "text": "Intensify cooperation particularly at the regional and bilateral level with neighbouring States in the effort to find a lasting solution to the issue of the Myanmar refugees ", - "values": [ - "Asylum-seekers - refugees" - ] - }, - { - "text": "Repeal laws criminalizing abortion in cases of rape, incest and severe fetal impairment and eliminate all punitive measures", - "values": [ - "Women's rights" - ] - }, - { - "text": "Energetically drive forward judicial reform, combat corruption and enhance the capacity of the judiciary ", - "values": [ - "Corruption", - "Justice" - ] - }, - { - "text": "Ratify the main international human rights instruments, particularly CRPD and its Optional Protocol ", - "values": [ - "Disabilities", - "International instruments" - ] - }, - { - "text": "Study the possibility of signing and ratifying ICRMW ", - "values": [ - "International instruments", - "Labour", - "Migrants" - ] - }, - { - "text": "Ensure that Aboriginal and other indigenous communities are accorded equal access to services including to judicial remedies for discrimination and racism", - "values": [ - "Indigenous peoples", - "Racial discrimination" - ] - }, - { - "text": "Conclude the process of ratifying the Optional Protocol to CEDAW, as well as OP-CRC-AC, and the Optional Protocol to CRPD ", - "values": [ - "Disabilities", - "International humanitarian law", - "International instruments", - "Rights of the Child", - "Women's rights" - ] - }, - { - "text": "Fully implement the international obligations emanating from the Convention on the Prevention and Punishment of the Crime of Genocide", - "values": [ - "International instruments", - "Justice" - ] - }, - { - "text": "Take measures to ensure freedom of association, peaceful assembly and demonstration ", - "values": [ - "Freedom of association and peaceful assembly" - ] - }, - { - "text": "Take further measures for both the quantitative and qualitative improvement of education.", - "values": [ - "Right to education" - ] - }, - { - "text": "Ratify the Convention on the Protection of the Rights of All Migrant Workers and Members of their Families", - "values": [ - "International instruments", - "Labour", - "Migrants" - ] - }, - { - "text": "Continue to support a high level of socio-economic protection", - "values": [ - "ESC rights - general" - ] - }, - { - "text": "Ratify the Optional Protocol to the Convention on the Rights of Persons with Disabilities (OP-CRPD)", - "values": [ - "Disabilities", - "International instruments" - ] - }, - { - "text": "Take steps to fully integrate Roma children in its education system, including by ending discrimination and segregation of Roma children in schools", - "values": [ - "Minorities", - "Racial discrimination", - "Right to education", - "Rights of the Child" - ] - }, - { - "text": "Finalize and implement the National Action Plan on Human Rights, as referred to in paragraphs 80 and 81 of the national report", - "values": [ - "General" - ] - }, - { - "text": "Strengthen legislation on freedom of expression and conscience", - "values": [ - "Freedom of opinion and expression", - "Freedom of religion and belief" - ] - }, - { - "text": "Continue efforts towards the establishment and implementation of an effective regulatory frame work for holding companies registered in Canada accountable for the human rights impact of their operations ", - "values": [ - "Business and human rights" - ] - }, - { - "text": "Ensure the right of persons with disabilities to live independently through the development of a national action plan for deinstitutionalization and for the inclusion of persons with disabilities into their communities", - "values": [ - "Disabilities" - ] - }, - { - "text": "Take steps to remedy the shortcomings related to the definition of torture and to the Criminal Procedure Code, which did not ensure that evidence obtained from torture is not invoked in any legal proceedings, to ensure conformity with the provisions of the Convention against Torture ", - "values": [ - "International instruments", - "Torture and other CID treatment" - ] - }, - { - "text": "Cooperate with the special procedures of the Council, schedule pending visits as soon as possible, including of the representative of the United Nations High Commissioner for Human Rights, and ensure the independence of the Ombudsman of the Bolivarian Republic of Venezuela", - "values": [ - "Special procedures", - "Technical assistance and cooperation" - ] - }, - { - "text": "Prioritize its legislation and policies, and empower the National Commission against Discrimination to combat discrimination against women, with particular attention to indigenous communities", - "values": [ - "Indigenous peoples", - "Women's rights" - ] - }, - { - "text": "Address in legislation all forms of gender-based violence, both within as well as outside of marriage", - "values": [ - "Women's rights" - ] - }, - { - "text": "Increase respect for the rights of all citizens by strengthening anti-discrimination legislation and enforcement mechanisms and ensuring law enforcement provides universal equal treatment and due process", - "values": [ - "Other" - ] - }, - { - "text": "Extend a standing invitation to the human rights mechanisms of the United Nations", - "values": [ - "Special procedures" - ] - }, - { - "text": "Ensure effective legal protection for victims of discrimination ", - "values": [ - "Other" - ] - }, - { - "text": "Accelerate the process of considering the Education Bill currently under consideration at the Ministry of Education", - "values": [ - "Right to education" - ] - }, - { - "text": "Consider the definitive abolition of the death penalty in its domestic legislation and its accession to the related international instrument on the matter", - "values": [ - "Death penalty", - "International instruments" - ] - }, - { - "text": "Take legal and administrative steps to ensure that every refugee child born in Lebanon is properly registered by the authorities and issued with the documents to prove it, without prejudice to the question of permanent residency or acquisition of citizenship", - "values": [ - "Asylum-seekers - refugees", - "Rights of the Child", - "Statelessness and the right to nationality" - ] - }, - { - "text": "Reform the juvenile justice system and ensure the separation of children from adults in detention places, including by taking measures to reduce prison overcrowding", - "values": [ - "Detention", - "Justice", - "Rights of the Child" - ] - }, - { - "text": "Consider using the Yogyakarta Principles on the Application of International Human Rights Law in relation to Sexual Orientation and Gender Identity as a guide to assist Czech human rights policies.", - "values": [ - "International instruments", - "Sexual Orientation and Gender Identity" - ] - }, - { - "text": "Accept the support of OHCHR in the area of dissemination of human rights in order to support its culture and education programmes ", - "values": [ - "Human rights education and training", - "Technical assistance and cooperation" - ] - }, - { - "text": "Take additional measures to combat human trafficking, including the provision of training for police in dealing with victims of human trafficking and sexual abuse, and the implementation of a system of witness protection in cases of trafficking.", - "values": [ - "Human rights education and training", - "Trafficking" - ] - }, - { - "text": "Strengthen enforcement of its existing legal framework protecting the equality of women in employment, particular for those in unskilled and lowwage position ", - "values": [ - "Women's rights" - ] - }, - { - "text": "Continue policies to combat trafficking, and promote assistance to victims", - "values": [ - "Trafficking" - ] - }, - { - "text": "Share its experience with other States, on protecting human rights in the context of their violation on the Internet.", - "values": [ - "Freedom of opinion and expression" - ] - }, - { - "text": "Ensure that Roma children have equal opportunities in access to quality education at all levels", - "values": [ - "Minorities", - "Right to education", - "Rights of the Child" - ] - }, - { - "text": "Pursue efforts to reform the justice system with a view to guaranteeing access to justice to all, including through providing qualified staff", - "values": [ - "Justice" - ] - }, - { - "text": "Continue to engage multilateral, regional and bilateral partners with a view to build its capacity and its resources for the effective implementation of its anti-human trafficking programmes as well as disaster risk reduction measures and climate change adaption and mitigation programmes", - "values": [ - "Environment", - "Technical assistance and cooperation", - "Trafficking" - ] - }, - { - "text": "Fully cooperate with the International Criminal Court. ", - "values": [ - "Justice" - ] - }, - { - "text": "Step up its efforts to ease access by people to sanitation and drinking water", - "values": [ - "Right to water and sanitation" - ] - }, - { - "text": "Investigate thoroughly all allegations of mistreatment of prisoners ", - "values": [ - "Detention" - ] - }, - { - "text": "Ratify the Convention on the Protection of Persons with Disabilities.", - "values": [ - "Disabilities", - "International instruments" - ] - }, - { - "text": "Continue to implement the law on Prevention and Punishment of Gender-based Violence and encourage zero-tolerance among law enforcing agencies for gender-based violence. Eliminate, as a first step, judicial and administrative barriers that prevent women from accessing safe and legal abortions, and protect women from being reported and arrested or going to jail for unsafe abortion as well as to review the penal code in order to decriminalize abortion", - "values": [ - "Detention", - "Right to health", - "Women's rights" - ] - }, - { - "text": "Continue efforts to diminish the proportion of the urban population living in slums, so as to fulfil the rights of families to decent housing conditions ", - "values": [ - "Right to housing" - ] - }, - { - "text": "Take further measures to reduce the inequality between sexes, sensitize the population in this regard and ensure that these measures are effectively implemented", - "values": [ - "Women's rights" - ] - }, - { - "text": "End the policy of Judaizing Jerusalem and end all the violations against the sanctity of the Al-Aqsa mosque and other places of worship", - "values": [ - "Freedom of religion and belief" - ] - }, - { - "text": "Continue efforts to ensure an enabling environment for journalists", - "values": [ - "Freedom of the press" - ] - }, - { - "text": "Put an end to all human rights violations", - "values": [ - "General" - ] - }, - { - "text": "Fully implement the Government agreement to create a national human rights mechanism that complies with the Paris Principles", - "values": [ - "National Human Rights Institution" - ] - }, - { - "text": "Take measures to combat the underlying causes which impede girls from completing their education ", - "values": [ - "Right to education", - "Rights of the Child", - "Women's rights" - ] - }, - { - "text": "Continue the protection of women, migrants, persons with disabilities and elderly people, groups which are particularly vulnerable in this moment of economic and financial crisis ", - "values": [ - "Disabilities", - "Migrants", - "Women's rights" - ] - }, - { - "text": "Undertake further steps to encourage a higher proportion of women in managerial positions in the public institutions and the private business", - "values": [ - "Women's rights" - ] - }, - { - "text": "Intensify efforts in the promotion of the rights of persons with disabilities ", - "values": [ - "Disabilities" - ] - }, - { - "text": "Adopt legislative and practical measures towards ensuring equality and equal opportunity in the fields of employment, education, health care and housing for all ethnic groups ", - "values": [ - "Labour", - "Minorities", - "Right to education", - "Right to health", - "Right to housing" - ] - }, - { - "text": "Continue strengthening the judicial system in order to put a real end to impunity for human rights violations", - "values": [ - "Impunity", - "Justice" - ] - }, - { - "text": "Bring, in the context of a constitutional review, the Public Order Act governing public assemblies in line with the principles of the Constitution ", - "values": [ - "Freedom of association and peaceful assembly" - ] - }, - { - "text": "Ratify and adapt its national legislation to the Arms Trade Treaty", - "values": [ - "International instruments", - "Public security" - ] - }, - { - "text": "Continue to make efforts to promote the rights of children so as to improve their situation, particularly in the areas of education and health care ", - "values": [ - "Right to education", - "Right to health", - "Rights of the Child" - ] - }, - { - "text": "Enact appropriate measures and legislation to fight against all forms of discrimination and violence against women", - "values": [ - "Women's rights" - ] - }, - { - "text": "Treat violence against women as a criminal offence, and enact the existing draft Bill on Social and Legal Protection against Domestic Violence ", - "values": [ - "Rights of the Child", - "Women's rights" - ] - }, - { - "text": "Adopt concrete measures against gender discrimination, which hinders equal access for women to justice", - "values": [ - "Women's rights" - ] - }, - { - "text": "Continue efforts to fight against torture", - "values": [ - "Torture and other CID treatment" - ] - }, - { - "text": "Take necessary measures to ensure full enjoyment of the right to life, physical integrity and security of all persons ", - "values": [ - "Other" - ] - }, - { - "text": "Ensure that non-governmental organizations and human rights defenders can freely conduct their activities", - "values": [ - "Civil society", - "Freedom of association and peaceful assembly", - "Human rights defenders" - ] - }, - { - "text": "Remove all existing restrictions on political activities and ensure that political parties and political activists can carry out their legitimate activities on an equal footing, without fear of reprisals or prosecution ", - "values": [ - "Freedom of association and peaceful assembly" - ] - }, - { - "text": "Continue to pursue policies that will increase enrolment in schools of school-going aged children, in particular girls, and children from indigenous communities and minorities", - "values": [ - "Indigenous peoples", - "Minorities", - "Right to education", - "Rights of the Child", - "Women's rights" - ] - }, - { - "text": "Extend a standing invitation to all special procedure mandate holders", - "values": [ - "Special procedures" - ] - }, - { - "text": "Implement effectively its commitments relating to freedom of religion as contained in the ICCPR, to which Uzbekistan is a party.", - "values": [ - "Freedom of religion and belief", - "International instruments" - ] - }, - { - "text": "Withdraw its reservations to the Convention against Torture", - "values": [ - "International instruments", - "Torture and other CID treatment" - ] - }, - { - "text": "Establish the National Human Rights Institution as endorsed by the National Executive Council in 1997, and recommended in the universal periodic review in 2011", - "values": [ - "National Human Rights Institution", - "UPR process" - ] - }, - { - "text": "Review and revise the Code of Civil Procedure, as necessary, to ensure that persons with disabilities are not deprived of their right to vote on the basis of disability", - "values": [ - "Disabilities" - ] - }, - { - "text": "Consider launching an action plan to combat domestic violence in Greenland ", - "values": [ - "Rights of the Child", - "Women's rights" - ] - }, - { - "text": "Restore the protection of civil and political rights by ensuring that the Constitution meets Thailand's international human rights obligations and end the present prosecution of civilians in military courts", - "values": [ - "CP rights - general", - "International instruments", - "Justice" - ] - }, - { - "text": "Continue its efforts to achieve full compliance with the rights of the child despite widespread poverty ", - "values": [ - "Poverty", - "Rights of the Child" - ] - }, - { - "text": "Step up its efforts towards the ratification of other international human rights treaties that it is not yet a state party", - "values": [ - "International instruments" - ] - }, - { - "text": "Respect the rights of the Palestinian people to self-determination and to have their sovereign independent state with East Jerusalem as its capital", - "values": [ - "Other" - ] - }, - { - "text": "Continue efforts made to promote and protect the rights of persons with disabilities ", - "values": [ - "Disabilities" - ] - }, - { - "text": "Remove restrictions on freedom of religion or belief and amend legislation that discriminates against persons belonging to minorities.", - "values": [ - "Freedom of religion and belief", - "Minorities" - ] - }, - { - "text": "Take measures to improve the situation of underreporting of cases of violence and discrimination against lesbian, gay, bisexual, transgender and intersex people, and develop policies to punish and prevent those actions", - "values": [ - "Sexual Orientation and Gender Identity" - ] - }, - { - "text": "Step up its cooperation with the special procedures of the Human Rights Council by responding positively to the pending visits' requests and consider extending a standing invitation to all the special procedures mandate holders ", - "values": [ - "Special procedures" - ] - }, - { - "text": "Adopt a national strategy to continue and intensify the deinstitutionalization process aimed at replacing current shelters with alternative housing and means of care better suited to meeting the needs of orphans and-or persons with mental disabilities", - "values": [ - "Disabilities", - "Rights of the Child" - ] - }, - { - "text": "Take measures to ensure universal vaccination coverage", - "values": [ - "Right to health" - ] - }, - { - "text": "Provide additional and sustained political and financial support to the justice system, including the Prosecutor's Office", - "values": [ - "Justice" - ] - }, - { - "text": "Continue to effectively address the precarious situation of the Guaran\u00c3\u00ad indigenous peoples", - "values": [ - "Indigenous peoples" - ] - }, - { - "text": "Continue its efforts directed towards fighting the trafficking of persons", - "values": [ - "Trafficking" - ] - }, - { - "text": "Continue improving the living standards of its people, including an improvement of access to basic health and education services", - "values": [ - "Right to education", - "Right to health" - ] - }, - { - "text": "Repeal all provisions that discriminate against persons on the basis of their sexual orientation or gender identity, particularly those which criminalise consensual adult same-sex relations", - "values": [ - "Sexual Orientation and Gender Identity" - ] - }, - { - "text": "Consider the ratification of the International Convention on the Protection of the Rights of All Migrant Workers and Members of Their Families, recognizing the jurisdiction to receive individual complaints, as previously recommended", - "values": [ - "International instruments", - "Labour", - "Migrants" - ] - }, - { - "text": "Expand channels and mechanism of direct dialogue between the Government and the population", - "values": [ - "Other" - ] - }, - { - "text": "Decriminalize sexual relations between consenting adults of the same sex and amend national legislation to include sexual orientation and gender as prohibited grounds for discrimination", - "values": [ - "Sexual Orientation and Gender Identity" - ] - }, - { - "text": "Increase the participation of women in decision-making bodies and ensure that people with disabilities can participate in the voting process", - "values": [ - "Disabilities", - "Women's rights" - ] - }, - { - "text": "Prosecute perpetrators of human trafficking", - "values": [ - "Trafficking" - ] - }, - { - "text": "Make further efforts to accede and fully align its national legislation with the Rome Statute of the International Criminal Court", - "values": [ - "International instruments", - "Justice" - ] - }, - { - "text": "Ensure the effective implementation of inclusive policies on the issue of gender to foster the participation of women in the economic and political life of the country, with concrete measures and an adequate timetable for compliance", - "values": [ - "Women's rights" - ] - }, - { - "text": "Consider acceding to the Second Optional Protocol to the International Covenant on Civil and Political Rights.", - "values": [ - "Death penalty", - "International instruments" - ] - }, - { - "text": "Cooperate fully with the Special Procedures of the Human Rights Council and ensure everyone enjoys the right to unhindered access to and communication with the United Nations, its representatives and mechanisms, including by preventing and ensuring adequate protection against reprisals", - "values": [ - "Civil society", - "Special procedures", - "Treaty bodies", - "UPR process" - ] - }, - { - "text": "Accede to the Convention against Torture and Other Cruel, Inhuman or Degrading Treatment or Punishment as soon as possible ", - "values": [ - "International instruments", - "Torture and other CID treatment" - ] - }, - { - "text": "Combat the persistence of racist stereotypes and hate speech against the Amazigh, asylum seekers, refugees and sub-Saharan Africans", - "values": [ - "Freedom of religion and belief", - "Indigenous peoples", - "Migrants", - "Minorities" - ] - }, - { - "text": "Formalise the de facto moratorium as a step towards the complete abolition of the death penalty ", - "values": [ - "Death penalty" - ] - }, - { - "text": "Ensure the protection of freedom of opinion and expression", - "values": [ - "Freedom of opinion and expression" - ] - }, - { - "text": "Take measures to decriminalize homosexuality and take special measures of non-discrimination with regard to lesbian, gay, bisexual, transgender and intersex persons", - "values": [ - "Sexual Orientation and Gender Identity" - ] - }, - { - "text": "Take special measures to guarantee Roma children equal access to inclusive quality education and ensure full participation of the Roma themselves in these efforts", - "values": [ - "Minorities", - "Right to education", - "Rights of the Child" - ] - }, - { - "text": "Consider ratifying the International Convention on the Elimination of All Forms of Racial Discrimination, the Convention against Torture and Other Cruel, Inhuman or Degrading Treatment or Punishment, and the Convention on the Rights of Persons with Disabilities, as well as the Optional Protocols thereto - the International Convention for the Protection of All Persons from Enforced Disappearance - the First and Second Optional Protocols to the International Covenant on Civil and Political Rights - the Protocols to the Convention on the Elimination of All Forms of Discrimination against Women and to the Convention on the Rights of the Child - and the Rome Statute - accede to the Conventions on refugees and stateless persons - and accomplish the human rights goals set out in Human Rights Council resolution 9-12", - "values": [ - "International instruments" - ] - }, - { - "text": "Create a national human rights institution in compliance with the Paris Principles", - "values": [ - "National Human Rights Institution" - ] - }, - { - "text": "Review the rights of detainees and conditions in local prisons and detention facilities so that they meet international standards, in particular where juvenile offenders are concerned ", - "values": [ - "Detention", - "Rights of the Child" - ] - }, - { - "text": "Continue with concerted action towards combating trafficking in persons, and strengthen relevant frameworks in this regard", - "values": [ - "Trafficking" - ] - }, - { - "text": "Begin a consultative process towards adoption of a National Action Plan on business and human rights", - "values": [ - "Business and human rights" - ] - }, - { - "text": "Formulate a national plan of action for the implementation of accepted recommendations", - "values": [ - "UPR process" - ] - }, - { - "text": "Increase its efforts through targeted and comprehensive measures, especially in education, in order to eliminate traditional harmful practices, such as FGM and early and forced marriage", - "values": [ - "Right to education", - "Rights of the Child", - "Torture and other CID treatment", - "Women's rights" - ] - }, - { - "text": "Ensure the effective protection of migrants, particularly women migrant workers, against discrimination", - "values": [ - "Migrants", - "Women's rights" - ] - }, - { - "text": "Promote the national plan to end human trafficking namely new forms of online human trafficking", - "values": [ - "Trafficking" - ] - }, - { - "text": "Establish a National Commission on Human Rights in accordance with the Paris Principles", - "values": [ - "National Human Rights Institution" - ] - }, - { - "text": "Abolish the death penalty completely and, in the meantime, establish a moratorium on executions as urged by the respective United Nations General Assembly resolutions ", - "values": [ - "Death penalty" - ] - }, - { - "text": "Restructure the Office of the Attorney General in order to separate the functions of the Ministry of Justice and the Attorney General with a view to further guaranteeing the independence of the Attorney General", - "values": [ - "Justice" - ] - }, - { - "text": "Continue developing a State policy based on the historical pillars of Argentina's human rights movement: memory, truth and justice", - "values": [ - "Justice" - ] - }, - { - "text": "Ratify the Optional Protocol to the Convention on the Elimination of All Forms of Discrimination against Women, and continue strengthening the legislation aimed at the elimination of all forms of discrimination against women", - "values": [ - "International instruments", - "Women's rights" - ] - }, - { - "text": "Uphold its commitment to introduce a comprehensive police reform plan and pass the new organic police law by June 2015, and share a benchmarked time-bound plan to remove the military from civilian police duties", - "values": [ - "Justice" - ] - }, - { - "text": "Protect victims by defining hate crimes as crimes under criminal laws ", - "values": [ - "Racial discrimination" - ] - }, - { - "text": "Continue to make further inroads towards combating poverty and also ensuring that its population has an affordable access to a steady supply of water", - "values": [ - "Poverty", - "Right to water and sanitation" - ] - }, - { - "text": "Request and be given, based on its assessed needs, necessary technical and financial assistance to address its human rights concerns", - "values": [ - "General" - ] - }, - { - "text": "Continue to raise the literacy rate amongst women, particularly those living in rural areas", - "values": [ - "Right to education", - "Women's rights" - ] - }, - { - "text": "Abolish any possible legal grounds for differentiated treatment between national and ethno-linguistic minorities", - "values": [ - "Minorities" - ] - }, - { - "text": "Continue to protect and promote human rights ", - "values": [ - "General" - ] - }, - { - "text": "Ratify the Convention against Torture, as well as its Optional Protocol", - "values": [ - "Detention", - "International instruments", - "Torture and other CID treatment" - ] - }, - { - "text": "Request international assistance deemed pertinent to implement measures to improve the human rights situation of children and adolescents ", - "values": [ - "Rights of the Child", - "Technical assistance and cooperation" - ] - }, - { - "text": "Sign the Convention against Torture and Other Cruel, Inhuman or Degrading Treatment or Punishment and its Optional Protocol, the International Convention for the Protection of All Persons from Enforced Disappearance, as well as the Optional Protocols to the Convention on the Rights of the Child", - "values": [ - "Detention", - "Enforced disappearances", - "International instruments", - "Rights of the Child", - "Torture and other CID treatment" - ] - }, - { - "text": "Take measures in law and in practice to decrease child labour, most notably regarding hazardous work", - "values": [ - "Labour", - "Rights of the Child" - ] - }, - { - "text": "Abolish the death penalty in its Constitution. Despite a de facto moratorium, people continue to be sentenced to death", - "values": [ - "Death penalty" - ] - }, - { - "text": "Intensify its efforts made to investigate practices of harassment and aggression against journalists and lawyers and punish their perpetrators ", - "values": [ - "Freedom of the press", - "Justice" - ] - }, - { - "text": "Promote the inclusion and political participation of all ethnic minorities ", - "values": [ - "Minorities" - ] - }, - { - "text": "Take steps to ensure and protect the full independence and impartiality of the judiciary", - "values": [ - "Justice" - ] - }, - { - "text": "Allow for complaints on grounds of discrimination to be taken up by existing mechanisms for the protection of human rights, consistent with procedures available for gender-based discrimination cases, until a national human rights institution compliant with the Paris Principles is established", - "values": [ - "National Human Rights Institution", - "Women's rights" - ] - }, - { - "text": "Continue its existing collaboration with international institutions in the sphere of human rights", - "values": [ - "Technical assistance and cooperation" - ] - }, - { - "text": "Take into thorough consideration the recommendations of the Venice Commission in the process of elaborating national legislation", - "values": [ - "International instruments" - ] - }, - { - "text": "That the necessary measures are implemented to guarantee freedoms of expression, association and peaceful assembly ", - "values": [ - "Freedom of association and peaceful assembly", - "Freedom of opinion and expression" - ] - }, - { - "text": "Continue with the social investment focusing on the most vulnerable sectors of the population, particularly the elderly, women, children and other groups in situation of vulnerability ", - "values": [ - "Rights of the Child", - "Women's rights" - ] - }, - { - "text": "Adopt vigorous measures to combat all forms of discrimination against persons with an immigrant background", - "values": [ - "Migrants", - "Racial discrimination" - ] - }, - { - "text": "Continue the implementation of national educational programmes and strategies in order to ensure that every child has equal access to education", - "values": [ - "Right to education", - "Rights of the Child" - ] - }, - { - "text": "Continue the practice of implementing programmes aimed at further improving the welfare of the population", - "values": [ - "ESC rights - general" - ] - }, - { - "text": "Further strengthen measures aimed at preventing and combating domestic violence", - "values": [ - "Rights of the Child", - "Women's rights" - ] - }, - { - "text": "Specifically prohibit, sanction and effectively prevent the practice of female genital mutilation for children under the age of 18 ", - "values": [ - "Rights of the Child", - "Torture and other CID treatment", - "Women's rights" - ] - }, - { - "text": "Deepen anti-trafficking measures, in particular by ensuring investigation and prosecution of the perpetrators of such crimes", - "values": [ - "Trafficking" - ] - }, - { - "text": "Expedite legislation to criminalize torture and bring perpetrators to justice, in accordance with the Convention against Torture and Other Cruel, Inhuman or Degrading Treatment or Punishment", - "values": [ - "International instruments", - "Torture and other CID treatment" - ] - }, - { - "text": "Give the highest priority to the implementation of the action plan for IDPs ", - "values": [ - "Internally displaced persons" - ] - }, - { - "text": "Continue efforts to advance gender equality and continue tackling the gender equality issues indicated in the national report ", - "values": [ - "Women's rights" - ] - }, - { - "text": "Review its Penal Code, namely article 373, and other laws in order to prevent discrimination against LGBTI persons ", - "values": [ - "Sexual Orientation and Gender Identity" - ] - }, - { - "text": "Closely cooperate with relevant governmental and non-governmental foreign agencies to tackle trafficking in persons and ensure that appropriate protection is rendered to various groups of victims, including victims who are foreign nationals", - "values": [ - "Technical assistance and cooperation", - "Trafficking" - ] - }, - { - "text": "Continue efforts to eliminate gender stereotypes and to repeal all discriminatory legislation against women, in the labour, civil and penal codes", - "values": [ - "Women's rights" - ] - }, - { - "text": "Ban the use of harmful devices such as ultra sound and flash ball devices and taser guns ", - "values": [ - "Torture and other CID treatment" - ] - }, - { - "text": "Continue the work to monitor and evaluate the penitentiary institutions", - "values": [ - "Detention" - ] - }, - { - "text": "Develop a strategic plan for the supply of water and sanitation, in particular for rural communities", - "values": [ - "Right to water and sanitation" - ] - }, - { - "text": "Improve its cooperation with the United Nations treaty bodies by reporting on the implementation of its obligations under the Conventions it has ratified, namely, the International Covenant on Economic, Social and Cultural Rights, the International Covenant on Civil and Political Rights (ICCPR), the International Convention on the Elimination of All Forms of Racial Discrimination (ICERD), CEDAW and the Convention on the Rights of the Child (CRC)", - "values": [ - "International instruments", - "Treaty bodies" - ] - }, - { - "text": "Take all necessary measures to stop acts of torture and Cruel, Inhuman or Degrading Treatment", - "values": [ - "Torture and other CID treatment" - ] - }, - { - "text": "Consider ratifying the ILO Discrimination (Employment and Occupation) Convention, 1958 (No. 111)", - "values": [ - "International instruments", - "Labour" - ] - }, - { - "text": "The Federal Government is actively committed to the creation of a framework to make it easier for men and women to reconcile a career with family commitments. Development of child-care is a political priority.", - "values": [ - "Other" - ] - }, - { - "text": "Give clear orders to the security forces regarding the need to constantly respect international human rights norms, especially the full prohibition of torture and other ill-treatments", - "values": [ - "International instruments", - "Torture and other CID treatment" - ] - }, - { - "text": "Ratify the 1961 Convention on the Reduction of Statelessness and take concrete steps at national level to prevent and eliminate the causes that lead to statelessness", - "values": [ - "International instruments", - "Statelessness and the right to nationality" - ] - }, - { - "text": "Ensure that all refugees within the territory of Pakistan enjoy their basic human rights and are protected from arbitrary arrest, humiliation and enforced expulsion", - "values": [ - "Asylum-seekers - refugees" - ] - }, - { - "text": "Intensify efforts to address gender disparities and combat violence against women including through the strengthening of law enforcement in accordance with its Domestic Violence Act as well as media and education programmes aimed at increasing public awareness and sensitivities on the rights of women", - "values": [ - "Human rights education and training", - "Women's rights" - ] - }, - { - "text": "Intensify efforts to combat racism, racial discrimination and xenophobia", - "values": [ - "Racial discrimination" - ] - }, - { - "text": "Continue paying special attention for the protection of the rights of children ", - "values": [ - "Rights of the Child" - ] - }, - { - "text": "Take into consideration the possibility of abolishing the death penalty", - "values": [ - "Death penalty" - ] - }, - { - "text": "Step up efforts to protect the rights of migrant workers", - "values": [ - "Labour", - "Migrants" - ] - }, - { - "text": "Continue implementing policies to ensure equal opportunities in the job market with particular emphasis on reducing the existing wage gaps.", - "values": [ - "Women's rights" - ] - }, - { - "text": "Carry out broad and systematic awareness-raising campaigns to combat stigmatization, generalization, stereotypes and prejudice against non-citizens", - "values": [ - "Human rights education and training", - "Racial discrimination", - "Statelessness and the right to nationality" - ] - }, - { - "text": "Consider establishing an independent national human rights institution in accordance with the Paris Principles", - "values": [ - "National Human Rights Institution" - ] - }, - { - "text": "Combat gender inequality and discriminatory practices and consider legislative reforms to ensure equality between men and women before the law", - "values": [ - "Women's rights" - ] - }, - { - "text": "Put in place mechanisms for support to victims of human trafficking", - "values": [ - "Trafficking" - ] - }, - { - "text": "Cease the intimidation, harassment and arbitrary detention of human rights defenders, NGO groups, and journalists and provide guarantees for the rights to freedom of expression and peaceful assembly, as well as ending its restrictions and surveillance of the Internet, namely by amending its legislation in order to remove extrajudicial procedures for blocking websites, in line with recommendations made by the OSCE Representative on Freedom of the Media, whose visit authorized by the Belarusian authorities in 2013 was a step in the right direction", - "values": [ - "Civil society", - "Detention", - "Freedom of association and peaceful assembly", - "Freedom of opinion and expression", - "Freedom of the press", - "Human rights defenders" - ] - }, - { - "text": "Intensify its efforts to combat hate speech, racist and xenophobic statements", - "values": [ - "Racial discrimination" - ] - }, - { - "text": "Support the efforts of the judiciary to effectively implement the adopted reforms by ensuring adequate financial support from the Ministry of Justice as foreseen in the national development plan in the area of justice", - "values": [ - "Justice" - ] - }, - { - "text": "Implement measures to improve prison conditions", - "values": [ - "Detention" - ] - }, - { - "text": "Continue to take measures against all forms of discrimination ", - "values": [ - "Other" - ] - }, - { - "text": "Further streamline the Aliens Act to ensure that acts which may lead to expulsion are in line with international refugee and human rights law ", - "values": [ - "Asylum-seekers - refugees", - "International instruments" - ] - }, - { - "text": "Pursue its action plans to protect the rights of the child and of the family ", - "values": [ - "Rights of the Child", - "Women's rights" - ] - }, - { - "text": "Continue efforts to improve the standard of living, providing extensive access for the population to a quality system of education and health protection", - "values": [ - "Right to education", - "Right to health" - ] - }, - { - "text": "Ensure that its national preventive mechanism complies with the Optional Protocol to CAT and sufficient human, financial and logistical resources are granted to it.", - "values": [ - "Detention", - "International instruments", - "Torture and other CID treatment" - ] - }, - { - "text": "Revise the draft State Protection Act so that it contains robust safeguards with respect to the full enjoyment of the right to privacy and other human rights in compliance with international human rights law", - "values": [ - "International instruments", - "Privacy" - ] - }, - { - "text": "Make every possible effort to comply with the recommendations made by the Committee on the Rights of the Child", - "values": [ - "Rights of the Child", - "Treaty bodies" - ] - }, - { - "text": "Abolish all discriminatory legal provisions towards women and increase its efforts in combating all forms of violence against women, including marital rape, child and other forced marriages, and female genital mutilation", - "values": [ - "Rights of the Child", - "Torture and other CID treatment", - "Women's rights" - ] - }, - { - "text": "Consider the establishment of a national human rights institution accredited by the International Coordinating Committee of the National Institutions for the Promotion and Protection of Human Rights", - "values": [ - "National Human Rights Institution" - ] - }, - { - "text": "Take measures in order to strengthen the mechanisms to detect, identify and assist vulnerable migrants at the border, including minors, potential asylum seekers and victims of trafficking", - "values": [ - "Asylum-seekers - refugees", - "Migrants", - "Rights of the Child", - "Trafficking" - ] - }, - { - "text": "Cooperate with other countries that have large communities of migrant workers to find a solution in accordance with international human rights standards ", - "values": [ - "International instruments", - "Labour", - "Migrants" - ] - }, - { - "text": "Adopt quick and effective measures, as well as necessary legislation, in order to explicitly prohibit, prevent, punish and abolish discrimination on any grounds, including on the basis of HIV-AIDS status ", - "values": [ - "HIV - Aids" - ] - }, - { - "text": "Fight against impunity by ensuring that all those who are guilty of human rights violations are brought to justice", - "values": [ - "Impunity" - ] - }, - { - "text": "Continue with action to further reduce maternal and child mortality, and the prevalence rate of HIV and AIDS ", - "values": [ - "HIV - Aids", - "Right to health", - "Rights of the Child", - "Women's rights" - ] - }, - { - "text": "Fully respect the right to freedom of peaceful assembly, effectively investigate all allegations of excessive and disproportionate use of force by law enforcement personnel and ensure that all perpetrators are held accountable for their actions", - "values": [ - "Freedom of association and peaceful assembly", - "Human rights violations by state agents" - ] - }, - { - "text": "Establish a "one stop" centre to handle human rights treaty bodies and reporting obligations ", - "values": [ - "Treaty bodies" - ] - }, - { - "text": "Consider withdrawing the reservations made on the two Conventions it has ratified ", - "values": [ - "International instruments" - ] - }, - { - "text": "Sign and ratify the Second Optional Protocol to the International Covenant on Civil and Political Rights, aimed at abolishing the death penalty ", - "values": [ - "Death penalty", - "International instruments" - ] - }, - { - "text": "Engage in closer contact with United Nations bodies and, inter alia, accept the request by the Special Rapporteur on human rights defenders to visit the country ", - "values": [ - "Human rights defenders", - "Special procedures" - ] - }, - { - "text": "Ensure that law enforcement officials and other relevant actors are adequately trained to investigate and prosecute hate crimes on the basis of sexual orientation and gender identity, including through the promotion of awareness-raising and sensitization campaigns ", - "values": [ - "Human rights education and training", - "Sexual Orientation and Gender Identity" - ] - }, - { - "text": "Publicly recognise the important role of human rights defenders and NGOs in the protection of human rights in Mexico", - "values": [ - "Civil society", - "Human rights defenders" - ] - }, - { - "text": "Continue the momentum on the democratization process and improve the current policies and measures to ensure the equality and the full enjoyment of human rights and fundamental freedoms for all people, in particular the social vulnerable groups, like women and children", - "values": [ - "Rights of the Child", - "Women's rights" - ] - }, - { - "text": "Enhance its cooperation programmes with developing countries ", - "values": [ - "Development" - ] - }, - { - "text": "Strengthen the protection of women from violence, fight against impunity for perpetrators of violence against women and take specific measures for victims ", - "values": [ - "Impunity", - "Women's rights" - ] - }, - { - "text": "Continue to make progress in implementing measures already under way to ensure universal access to health and education", - "values": [ - "Right to education", - "Right to health" - ] - }, - { - "text": "Amend the Sodomy Law so that a sexual relationship between two consenting adults of the same sex is no longer punishable ", - "values": [ - "Sexual Orientation and Gender Identity" - ] - }, - { - "text": "Move on speedily to the ratification and/or application of human rights instruments and optional protocols, particularly the first Optional Protocol to the International Covenant on Civil and Political Rights", - "values": [ - "CP rights - general", - "International instruments" - ] - }, - { - "text": "Ratify the Convention on Protection of Children and Cooperation in respect of Inter-country Adoption", - "values": [ - "International instruments", - "Rights of the Child" - ] - }, - { - "text": "Prioritize policies and programmes on nutrition, vaccination and health workers to reduce maternal, neonatal, and child mortality, and make sufficient budgetary allocations", - "values": [ - "Right to food", - "Right to health", - "Rights of the Child", - "Women's rights" - ] - }, - { - "text": "Reconsider the ratification of the ICRMW in the future", - "values": [ - "International instruments", - "Labour", - "Migrants" - ] - }, - { - "text": "Continue efforts on adopting the National Human Rights Action Plan", - "values": [ - "General" - ] - }, - { - "text": "Share its experience in fighting human trafficking with other States and continue its efforts to fight this social ill in cooperation with the international community ", - "values": [ - "Trafficking" - ] - }, - { - "text": "Reinforce the independence of the judiciary, including bringing to an end the provisional nature of judicial appointments an repealing the provisions of the Supreme Court law that undermine the court's independence ", - "values": [ - "Justice" - ] - }, - { - "text": "Take urgent measures to modify legislation stipulating the precedence of the husband\u2019s decisions over the wife\u2019s decisions with respect to common property, the exercise of parental authority and the custody of children", - "values": [ - "Women's rights" - ] - }, - { - "text": "Further strengthen its successful land reform and resettlement program, which grants land to historically disadvantaged groups", - "values": [ - "Right to land" - ] - }, - { - "text": "Undertake measures, including through human rights education and training, to modify traditional practices that are in conflict with human rights standards which guarantee equality between men and women", - "values": [ - "Human rights education and training", - "Women's rights" - ] - }, - { - "text": "Continue in the path towards the building of socialism, under the principles of solidarity and justice, making headway in the strengthening of participatory and proactive democracy, as a genuine mechanism to ensure citizen participation in public affairs, which has led to better conditions for the promotion and protection of human rights for the Cuban people ", - "values": [ - "General" - ] - }, - { - "text": "Introduce an official moratorium on executions with a view to abolishing the death penalty and commute without delay all death sentences to terms of imprisonment", - "values": [ - "Death penalty" - ] - }, - { - "text": "Continue the progress made towards equality between women and men, by increasing and strengthening the representation of women in politics, the economy, academia and the judiciary. In particular, take specific and concrete measures to eliminate the gender wage gap and withdraw reservations to article 15, paragraph 2, and article 16, paragraph 1 subparagraph h, of the Convention on the Elimination of All Forms of Discrimination against Women", - "values": [ - "International instruments", - "Women's rights" - ] - }, - { - "text": "Eliminate child marriages and increase the minimum age for marriage under exceptional circumstances", - "values": [ - "Rights of the Child" - ] - }, - { - "text": "Ease the heavy administrative burdens on NGOs, such as the yearly registration obligations ", - "values": [ - "Civil society", - "Freedom of association and peaceful assembly" - ] - }, - { - "text": "Ratify, before the next universal periodic review cycle, the Convention against Torture and Other Cruel, Inhuman or Degrading Treatment or Punishment", - "values": [ - "International instruments", - "Torture and other CID treatment", - "UPR process" - ] - }, - { - "text": "Comply effectively with Security Council resolution 1866 (2009) which urges to refrain from the use of force or from any act of ethnic discrimination against persons, to protect those affected, including refugees and IDPs and their property, to ensure their right to freedom of movement and residence within the borders of the State, and to facilitate unimpeded humanitarian assistance in conditions of dignity and security for these vulnerable groups ", - "values": [ - "Freedom of movement", - "Internally displaced persons", - "Racial discrimination" - ] - }, - { - "text": "Ensure the enjoyment of the right to vote both by persons deprived of their liberty and of persons who have completed their prison sentences ", - "values": [ - "Elections" - ] - }, - { - "text": "Continue using its sovereign right to apply the death penalty as a tool of criminal justice in accordance with the proper safeguards specified under international human rights law ", - "values": [ - "Death penalty", - "International instruments" - ] - }, - { - "text": "Strengthen measures to protect women who are victims of or are threatened with violence", - "values": [ - "Women's rights" - ] - }, - { - "text": "Strengthen its human rights infrastructure ", - "values": [ - "General" - ] - }, - { - "text": "Criminalize in national legislation enforced disappearance in conformity with international standards and ratify the International Convention on the Protection of All Persons from Enforced Disappearance", - "values": [ - "Enforced disappearances", - "International instruments" - ] - }, - { - "text": "Establish an independent mechanism in order to identify and take measures against members of the security forces who are responsible for serious human rights violations. ", - "values": [ - "Human rights violations by state agents" - ] - }, - { - "text": "Take necessary measures to ensure gender equality in all spheres, and ensure women's protection against domestic violence", - "values": [ - "Women's rights" - ] - }, - { - "text": "Redouble its efforts to establish the national human rights institution, in line with the Paris Principles", - "values": [ - "National Human Rights Institution" - ] - }, - { - "text": "Continue more efforts to combat discrimination against women ", - "values": [ - "Women's rights" - ] - }, - { - "text": "Consider including provisions to ensure equality of men and women as well as the protection and promotion of women's rights in its new Constitution ", - "values": [ - "Women's rights" - ] - }, - { - "text": "That the international community support Lebanon", - "values": [ - "Technical assistance and cooperation" - ] - }, - { - "text": "Implement a comprehensive policy to fight the trafficking in persons, with special focus on boys, girls and adolescents, with a view to give visibility to the problem and understand the trends, forms and manifestations of the problem of trafficking in the country with a view to ending it", - "values": [ - "Rights of the Child", - "Trafficking" - ] - }, - { - "text": "Ensure all reports of human rights abuses, including those against ethnic and religious minorities, women and girls, are fully investigated and prosecuted", - "values": [ - "Freedom of religion and belief", - "Minorities", - "Rights of the Child", - "Women's rights" - ] - }, - { - "text": "Abolish the death penalty for all crimes", - "values": [ - "Death penalty" - ] - }, - { - "text": "Intensify efforts and measures to ensure the effective promotion of women rights protection, in line with the special customs and values of the Omani society ", - "values": [ - "Women's rights" - ] - }, - { - "text": "Intensify efforts to fully implement legislation to provide free education for all children, to ensure all children have equal access to education", - "values": [ - "Right to education", - "Rights of the Child" - ] - }, - { - "text": "Adopt pertinent legislative measures to prohibit all forms of corporal punishment against children and adolescents in any situation ", - "values": [ - "Rights of the Child", - "Torture and other CID treatment" - ] - }, - { - "text": "Ensure that its legal framework allows for free and independent operation of national and international media in accordance with its international human rights obligations under ICCPR ", - "values": [ - "Freedom of the press", - "International instruments" - ] - }, - { - "text": "Share the process of implementation of the recent Law on Femicide, particularly concerning the training of the judiciary", - "values": [ - "Human rights education and training", - "Women's rights" - ] - }, - { - "text": "Undertake effective efforts and policies to eliminate discriminatory practices, dissemination of hate speech, including threats on resorting to forceful means such as deportation, to stop persistent hostile attitudes on the part of the general public, including attacks towards Roma, Kurds and non-Muslim minorities, also by taking demonstrable steps to prevent and combat such attitudes through information campaigns, awareness-raising and education, among others ", - "values": [ - "Freedom of religion and belief", - "Human rights education and training", - "Minorities", - "Racial discrimination" - ] - }, - { - "text": "Advance in the comprehensive implementation of the new Constitution, consistent with the protection of human rights", - "values": [ - "General" - ] - }, - { - "text": "Continue its efforts to tackle gender-based violence and sexual violence against women and girls", - "values": [ - "Rights of the Child", - "Women's rights" - ] - }, - { - "text": "Create a national human rights institution in accordance with the Paris Principles", - "values": [ - "National Human Rights Institution" - ] - }, - { - "text": "Take further steps to ratify the Optional Protocol to the Convention against Torture", - "values": [ - "International instruments", - "Torture and other CID treatment", - "Treaty bodies" - ] - }, - { - "text": "Take measures aimed at guaranteeing the effective and impartial implementation of legislation and at putting an end to impunity in cases of domestic violence", - "values": [ - "Impunity", - "Rights of the Child", - "Women's rights" - ] - }, - { - "text": "Develop and implement a National Action Plan for Human Rights to further ensure a systematic and comprehensive approach to the promotion and protection of human rights, the Government of Latvia is encouraged to engage civil society in the process", - "values": [ - "Civil society" - ] - }, - { - "text": "Institutionalize systematic training and capacity-building to prevent, respond and monitor gender-based violence", - "values": [ - "Women's rights" - ] - }, - { - "text": "Enact a labour law that applies to nationals and enhance efforts to spread awareness among workers", - "values": [ - "Labour" - ] - }, - { - "text": "Study the possibility of ratifying the following international instruments: the Optional Protocols to ICCPR, CRPD and the Optional Protocol thereto", - "values": [ - "CP rights - general", - "Death penalty", - "Disabilities", - "International instruments" - ] - }, - { - "text": "Fully implement the United Nations Convention against Torture, including by introducing national legislation prohibiting torture, and ensure that ill-treatment in custody is not used as a substitute for proper criminal investigation of suspects", - "values": [ - "International instruments", - "Torture and other CID treatment" - ] - }, - { - "text": "Ensure the effective protection of migrants, particularly women migrant workers, against discrimination", - "values": [ - "Labour", - "Migrants", - "Racial discrimination", - "Women's rights" - ] - }, - { - "text": "Equip all police stations with a women\u2019s desk, private rooms, and a sufficient number of female police officers, with a view to better ensuring women\u2019s and girls\u2019 access to justice", - "values": [ - "Rights of the Child", - "Women's rights" - ] - }, - { - "text": "Continue the implementation of policies addressing issues peculiar to indigenous peoples, particularly women and children", - "values": [ - "Indigenous peoples", - "Rights of the Child", - "Women's rights" - ] - }, - { - "text": "Whilst death penalty remains in place, rigorously apply international standards for fair trial in all death penalty cases and respect national legal procedures and the standards required by the Privy Council and the United Nations for the protection of the rights of prisoners sentenced to death", - "values": [ - "Death penalty", - "Justice" - ] - }, - { - "text": "Decriminalise press offenses", - "values": [ - "Freedom of the press" - ] - }, - { - "text": "Amend its Constitution to abolish the death penalty", - "values": [ - "Death penalty" - ] - }, - { - "text": "Broaden the definition on torture and harshness in a way to encompass all cases of torture by all persons acting in an official capacity.", - "values": [ - "Torture and other CID treatment" - ] - }, - { - "text": "Continue to take measures to protect the rights of women, children and people with disabilities", - "values": [ - "Disabilities", - "Rights of the Child", - "Women's rights" - ] - }, - { - "text": "Revoke the law which criminalizes consensual, non-commercial adult homosexual conduct, as it violates the rights to privacy, and the protection against discrimination ", - "values": [ - "Privacy", - "Sexual Orientation and Gender Identity" - ] - }, - { - "text": "Enhance training methods for collecting evidence against suspected human traffickers to increase successful prosecutions, and ensure convicted trafficking offenders are punished with sentences commensurate with the gravity of the crime", - "values": [ - "Trafficking" - ] - }, - { - "text": "Continue its efforts on the issue of inclusion of children with disabilities in the general school system and reducing the number of schools for children with special educational needs", - "values": [ - "Disabilities", - "Right to education", - "Rights of the Child" - ] - }, - { - "text": "Recommended putting an end to all slavery-related practices in the country.", - "values": [ - "Other" - ] - }, - { - "text": "Repeal section 17 of the Emergency Decree", - "values": [ - "Human rights violations by state agents", - "Justice" - ] - }, - { - "text": "Ratify the international instruments that have not been ratified yet", - "values": [ - "International instruments" - ] - }, - { - "text": "Complete the enactment of the draft child protection act in line with the Convention on the Rights of the Child by including provisions to counter child, early and forced marriage", - "values": [ - "International instruments", - "Rights of the Child", - "Women's rights" - ] - }, - { - "text": "Pursue its efforts aiming at establishing a National Human Rights Institution ", - "values": [ - "National Human Rights Institution" - ] - }, - { - "text": "Address issues of poverty, employment, education and housing of Roma people through effective implementation of integration strategy", - "values": [ - "Minorities", - "Poverty", - "Right to education", - "Right to housing" - ] - }, - { - "text": "Consider becoming a party to the Optional Protocol to the CRC on a communications procedure", - "values": [ - "International instruments", - "Rights of the Child" - ] - }, - { - "text": "In line with its commitment to the human rights of migrants, implement or strengthen existing measures to prevent and sanction acts of discrimination against migrants ", - "values": [ - "Migrants" - ] - }, - { - "text": "Immediately take measures to stop all searches, arrests, detentions, prosecutions and convictions that are arbitrary or inspired by political motives, and to formulate as soon as possible the reforms necessary to ensure the integrity of the administration of justice", - "values": [ - "Detention", - "Justice" - ] - }, - { - "text": "Continue to intensify efforts with positive measures to ensure the effective promotion and protection of women's rights, in harmony with customs and traditional values of its society", - "values": [ - "Women's rights" - ] - }, - { - "text": "Accept, ratify or accede to the Rome Statute of the International Criminal Court", - "values": [ - "International instruments", - "Justice" - ] - }, - { - "text": "Continue its efforts to ensure that perpetrators of hate crimes are brought to justice and proper redress is given to victims, including by adopting measures to better track all reported hate crimes throughout the justice system", - "values": [ - "Justice", - "Racial discrimination" - ] - }, - { - "text": "Include human rights education in the curriculum of schools", - "values": [ - "Human rights education and training" - ] - }, - { - "text": "Consider establishing a formal moratorium on death penalty", - "values": [ - "Death penalty" - ] - }, - { - "text": "Formally establish a moratorium on the application of the death penalty, as a first step towards its definitive abolition", - "values": [ - "Death penalty" - ] - }, - { - "text": "Take concrete measures in implementing the 30 percent quota for women in the nomination lists at national, provincial and local elections as pledged in the National Human Rights Action Plan", - "values": [ - "Elections", - "Women's rights" - ] - }, - { - "text": "Strengthen work on the wide dissemination of information on international norms and standards, and also the international obligations of Ethiopia in the field of promoting and protecting human rights ", - "values": [ - "General" - ] - }, - { - "text": "Consider ratification of the Second Optional Protocol to the International Covenant on Civil and Political Rights, aiming at the abolition of the death penalty with a view to abolish the death penalty", - "values": [ - "Death penalty", - "International instruments" - ] - }, - { - "text": "Protect children and adolescents who are working and are obliged to work, through implementation of real and effective policies that consider their family situation, taking into account the Convention on the Rights of the Child", - "values": [ - "International instruments", - "Labour", - "Rights of the Child" - ] - }, - { - "text": "Adopt and duly implement all measures necessary to prevent torture and other inhuman or degrading treatment, and ensure due accountability for perpetrators of such human rights violations ", - "values": [ - "Torture and other CID treatment" - ] - }, - { - "text": "Multiply actions aimed at reinforcing legislation in the domain of human rights.", - "values": [ - "General" - ] - }, - { - "text": "Continue efforts towards the adoption of a law to combat violence against women that would criminalize domestic violence", - "values": [ - "Rights of the Child", - "Women's rights" - ] - }, - { - "text": "Take further steps to improve the rights of women and children. ", - "values": [ - "Rights of the Child", - "Women's rights" - ] - }, - { - "text": "Adopt and implement a national water strategy and plan of action covering the entire population, and make access to water and sanitation affordable to all ", - "values": [ - "Right to water and sanitation" - ] - }, - { - "text": "Withdraw reservations to the Convention on the Elimination of All Forms of Discrimination against Women", - "values": [ - "International instruments", - "Women's rights" - ] - }, - { - "text": "Take further steps towards ratifying the Optional Protocol to the Convention against Torture", - "values": [ - "Detention", - "International instruments", - "Torture and other CID treatment" - ] - }, - { - "text": "Take necessary measures to resolve and prevent conflicts related to land issues and to complete the land demarcation processes deriving from Article 231 of the 1988 Constitution", - "values": [ - "Right to land" - ] - }, - { - "text": "Continue to strengthen its domestic legislative, institutional and administrative machinery to fight challenges such as poverty, illiteracy, gender disparity and social inequality", - "values": [ - "Poverty", - "Right to education", - "Women's rights" - ] - }, - { - "text": "Ensure that its legislation protects the rights of everyone, regardless of their sexual orientation and gender identity, minority status or any other basis, to freedom of expression and assembly, freedom from discrimination and equality before the law", - "values": [ - "Freedom of association and peaceful assembly", - "Freedom of opinion and expression", - "Minorities", - "Racial discrimination", - "Sexual Orientation and Gender Identity" - ] - }, - { - "text": "Consider the possibility of ratifying the ILO Convention 189", - "values": [ - "International instruments", - "Labour" - ] - }, - { - "text": "Ratify the Convention on the Punishment of the Crime of Genocide", - "values": [ - "International instruments", - "Justice" - ] - }, - { - "text": "Take urgent steps to amend the penal code and eliminate the criminalization of consensual sexual relations between adults of the same sex", - "values": [ - "Sexual Orientation and Gender Identity" - ] - }, - { - "text": "Redouble efforts to diminish the wage gap between men and women and promote a higher representation of women in managerial and decision-making positions both in public administration and in the private sector ", - "values": [ - "Women's rights" - ] - }, - { - "text": "Guarantee independence of justice, equality before the law and supervision of military jurisdictions to fight impunity of crimes committed during the conflict, particularly extrajudicial killings", - "values": [ - "Extrajudicial executions", - "Impunity", - "Justice" - ] - }, - { - "text": "Continue to take effective measures to address the very important issue of the realization of the right to education for all ", - "values": [ - "Right to education" - ] - }, - { - "text": "Set up a federal human rights institution", - "values": [ - "National Human Rights Institution" - ] - }, - { - "text": "Take action to progress its commitment to establish a National Human Rights Institution in accordance with the Paris Principles", - "values": [ - "National Human Rights Institution" - ] - }, - { - "text": "Employ all appropriate ways and means, while reiterating that human rights promotion and protection is a process, to further develop and strengthen a genuine culture of human rights, create greater human rights capacity-building and promote public awareness-raising with a view to the improved promotion and protection of human rights in society", - "values": [ - "Human rights education and training" - ] - }, - { - "text": "Ratify the Optional Protocol to the Convention against Torture and Other Cruel, Inhuman or Degrading Treatment or Punishment without delay", - "values": [ - "Detention", - "International instruments", - "Torture and other CID treatment" - ] - }, - { - "text": "Develop appropriate policies and measures to effectively support ethnic minorities ", - "values": [ - "Minorities" - ] - }, - { - "text": "Adopt a law prohibiting racial discrimination, including criminalizing such behaviour", - "values": [ - "Racial discrimination" - ] - }, - { - "text": "Consider an early ratification of the Optional Protocol to the Convention on the Rights of the Child on the Sale of Children, Child Prostitution and Child Pornography (OP-CRC-SC)", - "values": [ - "International instruments", - "Rights of the Child", - "Trafficking" - ] - }, - { - "text": "Establish an official moratorium on the death penalty with a view to abolishing it", - "values": [ - "Death penalty" - ] - }, - { - "text": "Study the possibility of becoming a party to the following international instruments: the International Convention for the Protection of All Persons from Enforced Disappearance", - "values": [ - "Enforced disappearances", - "International instruments" - ] - }, - { - "text": "Increase significantly, in conformity with international standards, the minimum age of criminal responsibility of children, which is currently 10 years ", - "values": [ - "Justice", - "Rights of the Child" - ] - }, - { - "text": "Continue and enhance efforts to ensure substantive equality between women and men in all spheres and at all levels of society, including awarenessraising campaigns to eliminate stereotypes regarding gender roles ", - "values": [ - "Human rights education and training", - "Women's rights" - ] - }, - { - "text": "Bring its Law on Mass Events into line with the requirements of the International Covenant on Civil and Political Rights\n", - "values": [ - "CP rights - general", - "International instruments" - ] - }, - { - "text": "Adopt and implement legislative and other effective measures to protect women and children from domestic violence and abuse in all forms ", - "values": [ - "Rights of the Child", - "Women's rights" - ] - }, - { - "text": "With the assistance of the international community, to increase efforts at speeding up the implementation of the next phase of its Poverty Reduction Strategy Paper with a view to promoting the right to an adequate standard of living ", - "values": [ - "Poverty", - "Technical assistance and cooperation" - ] - }, - { - "text": "Refrain from the practice of public execution used to intimidate the people, as reported by the Special Rapporteur on the situation of human rights, in contravention of its own penal code, and accept the recommendation of the Committee on Civil and Political Rights to work toward the abolishment of capital punishment ", - "values": [ - "Death penalty", - "Special procedures", - "Treaty bodies" - ] - }, - { - "text": "Increase emphasis on the protection and promotion of human rights, especially in the areas of apprehension and interrogation of suspects and investigating reports of trafficking in persons, as part of the training programs of the Umbutfo Swaziland Defense Force, the Royal Swaziland Police Service and His Majesty's Correctional Services", - "values": [ - "Trafficking" - ] - }, - { - "text": "Ensure equal protection from all forms of discrimination, including by extending the scope of anti-discrimination regulations, by including the grounds of religion and belief, age and gender identity", - "values": [ - "Freedom of religion and belief", - "Racial discrimination", - "Sexual Orientation and Gender Identity" - ] - }, - { - "text": "Take all appropriate measures to promote tolerance, intercultural dialogue and respect for diversity", - "values": [ - "Freedom of religion and belief", - "Minorities" - ] - }, - { - "text": "Continue to implement measures aimed at enhancing the overall wellbeing of its citizens by guaranteeing their social and economic rights", - "values": [ - "ESC rights - general" - ] - }, - { - "text": "Ratify the International Convention for the Protection of All Persons from Enforced Disappearance as soon as possible.", - "values": [ - "Enforced disappearances", - "International instruments" - ] - }, - { - "text": "Ensure that the legislation regarding the rights of minorities and indigenous people continue to be fully implemented, paying special attention to the protection of those people most vulnerable to threats and violence, such as human rights defenders ", - "values": [ - "Human rights defenders", - "Indigenous peoples", - "Minorities" - ] - }, - { - "text": "Remove restrictions related to the activities of journalists, in particular the obligation to register and the high level of qualification required to establish a newspaper, and ensure journalists, in particular those known for their critical position vis-à-vis the Government, the liberty to practice their profession, carry out investigations, and publish the results thereof, without reprisals ", - "values": [ - "Freedom of the press" - ] - }, - { - "text": "Appeal to the international community to take individual and collective initiatives to exempt\nthe debts of Sudan", - "values": [ - "Other" - ] - }, - { - "text": "Strengthen the implementation of the Law for Integral Protection of Children and Adolescents", - "values": [ - "Rights of the Child" - ] - }, - { - "text": "Accede to the Convention on the Non-Applicability of Statutory Limitations to War Crimes and Crimes Against Humanity", - "values": [ - "International humanitarian law", - "International instruments", - "Justice" - ] - }, - { - "text": "Protect the human rights of the most vulnerable persons, including displaced persons, children and women", - "values": [ - "Internally displaced persons", - "Rights of the Child", - "Women's rights" - ] - }, - { - "text": "Share its experiences in provision of free education to all children ", - "values": [ - "Right to education", - "Rights of the Child" - ] - }, - { - "text": "Ratify the Second Optional Protocol to ICCPR aiming at abolishing of the death penalty for all crimes or formalizing the de facto moratorium on the death penalty", - "values": [ - "Death penalty", - "International instruments" - ] - }, - { - "text": "Continue seeking development as well as technical assistance and capacity-building needs from development partners and United Nations specialized agencies with a view to finding solutions to the challenges identified as hindering the enjoyment of human rights", - "values": [ - "Technical assistance and cooperation" - ] - }, - { - "text": "Investigate activities of fabrication and dissemination of false information, and take measures with regard to persons engaged in illegal activities through Internet", - "values": [ - "Other" - ] - }, - { - "text": "Pursue the implementation of the objectives of the National Strategy for Children and Adolescents", - "values": [ - "Rights of the Child" - ] - }, - { - "text": "Continue stepping up efforts to establish an independent National Human Rights Institution in conformity with the Paris Principles", - "values": [ - "National Human Rights Institution" - ] - }, - { - "text": "Implement public awareness campaigns in regard to the absence of deterrent effects of the application of the death penalty and the progressive introduction of a moratorium aiming at the abolition of the death penalty and the ratification of the Second Optional Protocol to the International Covenant on Civil and Political Rights", - "values": [ - "Death penalty", - "Human rights education and training", - "International instruments" - ] - }, - { - "text": "Sustain its designed programmes aimed at the availability and affordability of higher education", - "values": [ - "Right to education" - ] - }, - { - "text": "Consider ratifying the Optional Protocol to the Convention on the Right of the Child on a communications procedure", - "values": [ - "International instruments", - "Rights of the Child" - ] - }, - { - "text": "Continue with the impressive process of granting access to the Internet to its population, in particular to underprivileged communities", - "values": [ - "Other" - ] - }, - { - "text": "Take effective measures to facilitate the return of Meskhetian Turks to Georgia, and to guarantee their rights ", - "values": [ - "Minorities" - ] - }, - { - "text": "Ratify the Optional Protocol to the ICESCR, the Second Optional Protocol to the ICCPR, the Optional Protocol to the Convention against Torture and Other Cruel, Inhuman or Degrading Treatment or Punishment, the International Convention for the Protection of All Persons from Enforced Disappearance, and, finally, the Optional Protocol to the Convention on the Rights of the Child on a communications procedure ", - "values": [ - "International instruments" - ] - }, - { - "text": "In line with previous recommendations made by the Committee on the Rights of the Child, make every effort to reinforce protection of the right to life and development of all children", - "values": [ - "Rights of the Child", - "Treaty bodies" - ] - }, - { - "text": "Take firm measures to end discrimination and violence against women, children and people from vulnerable groups so as to enhance a better respect for their dignity and human rights ", - "values": [ - "Minorities", - "Rights of the Child", - "Women's rights" - ] - }, - { - "text": "Strengthen the implementation of laws prohibiting discrimination and incitement to hatred in order to protect the rights of minorities such as Roma", - "values": [ - "Minorities", - "Racial discrimination" - ] - }, - { - "text": "Review public school curricula in order to eliminate prejudice against religious and other minorities", - "values": [ - "Freedom of religion and belief", - "Minorities", - "Racial discrimination", - "Right to education" - ] - }, - { - "text": "Investigate allegations of rape being used as a weapon of war, and sanction perpetrators. ", - "values": [ - "Rights of the Child", - "Women's rights" - ] - }, - { - "text": "Continue working so that women's rights are fully respected", - "values": [ - "Women's rights" - ] - }, - { - "text": "Pass the bill for the early domestication of the Convention on the Elimination of All Forms of Discrimination against Women ", - "values": [ - "International instruments", - "Women's rights" - ] - }, - { - "text": "Ratify the two optional protocols to the International Covenant on Civil and Political Rights (ICCPR) as well as the Optional Protocol to CAT and make the necessary declarations under article 41 of ICCPR and articles 20, 21 and 22 of CAT ", - "values": [ - "CP rights - general", - "Death penalty", - "Detention", - "International instruments", - "Torture and other CID treatment" - ] - }, - { - "text": "Cooperate fully and effectively with the United Nations treaty bodies and special procedures and ensure that reports are submitted without delay", - "values": [ - "Special procedures", - "Treaty bodies" - ] - }, - { - "text": "Continue reinforcing measures to guarantee respect for the human rights of migrants", - "values": [ - "Migrants" - ] - }, - { - "text": "Comply with the Convention against Torture, criminalise all forms of torture and ill-treatment, ensure places of detention under its control are subject to open and transparent scrutiny by bodies independent of government and undertake prompt and impartial investigations of allegations of torture", - "values": [ - "Detention", - "Torture and other CID treatment" - ] - }, - { - "text": "Take immediate action to ensure essential levels of food supply protecting the most vulnerable groups from hunger and nutritional problems", - "values": [ - "Right to food" - ] - }, - { - "text": "Continue awareness raising and training of the judiciary and law enforcement personnel as regards all forms of violence against women and ex-officio prosecution", - "values": [ - "Human rights education and training", - "Women's rights" - ] - }, - { - "text": "Continue to design and implement policies that incorporate gender perspectives into public policies and promote the empowerment and advancement of women living in rural areas", - "values": [ - "Women's rights" - ] - }, - { - "text": "Continue consolidating and increasing its national social inclusion programmes", - "values": [ - "General" - ] - }, - { - "text": "Strengthen efforts to promote and protect the rights of women, young persons and disabled persons, which are very vulnerable groups in the country", - "values": [ - "Disabilities", - "Rights of the Child", - "Women's rights" - ] - }, - { - "text": "Adopt further measures aimed at better guaranteeing freedom of religion, particularly by eliminating bureaucratic and administrative obstacles, which hinder the activities carried out by religious communities and groups ", - "values": [ - "Freedom of religion and belief" - ] - }, - { - "text": "Revitalize the Social Missions and maintain their characteristic of service to the community ", - "values": [ - "Other" - ] - }, - { - "text": "Guarantee freedom of opinion, expression and belief and refrain from preventing Syrian pilgrims from practicing their religious duties as it constitutes a flagrant violation of freedom of belief and religion as one of the basic freedoms", - "values": [ - "Freedom of opinion and expression", - "Freedom of religion and belief" - ] - }, - { - "text": "Continue its efforts to strengthen the domestic legal system to protect women and girls and promote greater gender equality ", - "values": [ - "Rights of the Child", - "Women's rights" - ] - }, - { - "text": "Further promote identity and culture of different communities and to raise awareness in the society about their historic presence in Egypt and contribution to the society", - "values": [ - "Other" - ] - }, - { - "text": "Ensure free primary education for all without any discrimination, including by increasing funding for education", - "values": [ - "Right to education" - ] - }, - { - "text": "Ensure that all persons detained by the police are fully informed of their fundamental rights from the very outset of their deprivation of liberty", - "values": [ - "Detention" - ] - }, - { - "text": "Continue its efforts to combat xenophobia ", - "values": [ - "Racial discrimination" - ] - }, - { - "text": "Extend legal requirements of barrier-free access for persons with disabilities to private entities that provide goods and services to the public ", - "values": [ - "Disabilities" - ] - }, - { - "text": "Continue to pursue appropriate justice-system reforms with a view to strengthening its efficiency, impartiality and independence ", - "values": [ - "Justice" - ] - }, - { - "text": "Strengthen its internal human rights capacity and mechanisms to ensure timely cooperation with treaty bodies, in particular fulfilling its reporting obligations under treaty bodies", - "values": [ - "Treaty bodies" - ] - }, - { - "text": "Agree to and facilitate an early visit by the UN Special Rapporteur on extrajudicial, summary or arbitrary executions ", - "values": [ - "Extrajudicial executions", - "Special procedures" - ] - }, - { - "text": "Pursue efforts to improve Maori participation in all areas of social life.", - "values": [ - "Indigenous peoples" - ] - }, - { - "text": "Continue its cooperation with civil society organizations in the follow-up to this review", - "values": [ - "Civil society", - "UPR process" - ] - }, - { - "text": "Further implement legislation and policies that protect and promote the health, legal, social, educational, economic and labour rights of migrants, refugees, and asylum seekers", - "values": [ - "Asylum-seekers - refugees", - "Migrants" - ] - }, - { - "text": "Intensify efforts in providing basic services to vulnerable or marginalized groups or communities particularly providing quality health and education services and creating more employment opportunities ", - "values": [ - "Right to education", - "Right to health" - ] - }, - { - "text": "Continue its efforts to increase job opportunities for educated women in the Libyan Arab Jamahiriya ", - "values": [ - "Women's rights" - ] - }, - { - "text": "Accede to the Rome Statute of the ICC and implement it fully at national level and accede to the Agreement on Privileges and Immunities of the Court", - "values": [ - "International instruments", - "Justice" - ] - }, - { - "text": "Abolish the death penalty and accede to the Second Optional Protocol to the International Covenant on Civil and Political Rights ", - "values": [ - "Death penalty", - "International instruments" - ] - }, - { - "text": "Continue its initiatives in the promotion and protection of the people's right to education", - "values": [ - "Right to education" - ] - }, - { - "text": "Take further steps to reduce poverty and extreme poverty ", - "values": [ - "Poverty" - ] - }, - { - "text": "Sensitize law enforcement and judicial authorities towards gender- based violence and increase protection and support services, including prescribing protective measures, for female victims of violence", - "values": [ - "Women's rights" - ] - }, - { - "text": "Consider investing more in health so as to reduce the high mortality rate of children, high maternal mortality, tuberculosis and other communicable and non-communicable diseases", - "values": [ - "Right to health", - "Rights of the Child", - "Women's rights" - ] - }, - { - "text": "Continue efforts to strengthen participatory democracy, as a way to ensuring participation of citizens in public affairs ", - "values": [ - "Elections" - ] - }, - { - "text": "Continue efforts to reform the education system because it is an important element to reduce poverty", - "values": [ - "Development", - "Poverty", - "Right to education" - ] - }, - { - "text": "Comply with the recommendations of the Rapporteur on trafficking in persons, especially in women and children and send an invitation to the Rapporteurs' to perceive the human rights situation in the country", - "values": [ - "Rights of the Child", - "Special procedures", - "Trafficking", - "Women's rights" - ] - }, - { - "text": "Continue implementing measures to eliminate wage inequalities between the genders", - "values": [ - "Women's rights" - ] - }, - { - "text": "Bring its legislation into conformity with its international human rights obligations by criminalizing the practice of female genital mutilation", - "values": [ - "Rights of the Child", - "Torture and other CID treatment", - "Women's rights" - ] - }, - { - "text": "Continue to take measures to ensure that the rights of migrants are observed and not to allow any negative phenomena related to migration, including trafficking in persons", - "values": [ - "Migrants", - "Trafficking" - ] - }, - { - "text": "Address the gaps in the legislation on sexual exploitation of children, including the lack of a clear definition of "child pornography" and "child prostitution" in Luxemburgish legislation", - "values": [ - "Rights of the Child" - ] - }, - { - "text": "Ensure that the legislation for establishing the National Preventative Mechanism is in line with the Optional Protocol to the Convention against Torture", - "values": [ - "Detention", - "International instruments", - "Torture and other CID treatment" - ] - }, - { - "text": "Bring the perpetrators of trafficking of children to justice", - "values": [ - "Rights of the Child", - "Trafficking" - ] - }, - { - "text": "Create an environment that supports inclusive dialogue, instituting legal reforms to promote respect for human rights and fundamental freedoms", - "values": [ - "General" - ] - }, - { - "text": "Assess the possibility of lifting its reservations to the Convention relating to the Status of Refugees", - "values": [ - "Asylum-seekers - refugees", - "International instruments" - ] - }, - { - "text": "Continue its efforts to ensure that all children enjoy equal rights without discrimination ", - "values": [ - "Rights of the Child" - ] - }, - { - "text": "Intensify efforts intended to punish and prevent discrimination based on ethnic grounds in all areas of life, in particular in cases affecting children and women belonging to ethnic minorities, refugees and asylum-seekers and members of migrant families ", - "values": [ - "Asylum-seekers - refugees", - "Migrants", - "Minorities", - "Racial discrimination", - "Rights of the Child", - "Women's rights" - ] - }, - { - "text": "Review recent legislative changes with a view to fully ensuring freedom of assembly and association, in accordance with international obligations ", - "values": [ - "Freedom of association and peaceful assembly" - ] - }, - { - "text": "Recommended improving the freedom of association and freedom to bargain collectively.", - "values": [ - "Freedom of association and peaceful assembly", - "Labour" - ] - }, - { - "text": "Redouble efforts to combat scourges leading to violations of children's rights as listed in paragraph 38 of the national report ", - "values": [ - "Rights of the Child" - ] - }, - { - "text": "Continue to focus on establishing and strengthening institutions of governance with a view to contributing towards adequate protection of human rights and fundamental freedoms for all, provisions of adequate remedies where violations occur, and zero tolerance for impunity", - "values": [ - "Impunity" - ] - }, - { - "text": "Continue with strategies and programmes to put an end to violence against vulnerable groups, particularly women and children, ensuring child protection both online and offline", - "values": [ - "Rights of the Child", - "Women's rights" - ] - }, - { - "text": "Continue taking measures to ensure adequate protection of human rights in actions taken to address climate change", - "values": [ - "Environment" - ] - }, - { - "text": "Ensure that violence against women and girls, including domestic violence and all forms of sexual abuse, constitutes a criminal offence, and that perpetrators are prosecuted and punished", - "values": [ - "Rights of the Child", - "Women's rights" - ] - }, - { - "text": "Ratify the Optional Protocol to the International Covenant on Economic, Social and Cultural Rights and the Optional Protocol to the Convention on the Rights of the Child on a communications procedure ", - "values": [ - "ESC rights - general", - "International instruments", - "Rights of the Child" - ] - }, - { - "text": "Adopt a national plan of action on human rights", - "values": [ - "General" - ] - }, - { - "text": "Implement recent legislation on the rights of the child and strengthen efforts to prevent and combat all forms of discrimination and violence against children and other vulnerable groups, including through awareness-raising campaigns, dedicated training of law-enforcement personnel and adequate support to victims of violence", - "values": [ - "Human rights education and training", - "Rights of the Child" - ] - }, - { - "text": "Ensure that thorough and independent investigations take place into complaints of human rights violations by the police and army forces and that perpetrators are prosecuted and effective remedies are provided to the victims ", - "values": [ - "Human rights violations by state agents" - ] - }, - { - "text": "Give continuity to the strengthening of national human rights institutions and mechanisms", - "values": [ - "General" - ] - }, - { - "text": "Continue to fulfil its pioneering role in providing humanitarian assistance in cases of natural disasters so as to assist the victims, in particular in the developing and least developed countries ", - "values": [ - "Environment", - "Technical assistance and cooperation" - ] - }, - { - "text": "Implement the CEDAW Committee's recommendation with regard to the Act of 1920 which in current form prohibits the advertising of contraceptives and consider establishing and providing adequate resources for a sufficient number of safe houses for victims of domestic violence.", - "values": [ - "Rights of the Child", - "Treaty bodies", - "Women's rights" - ] - }, - { - "text": "Cooperate fully with the Court, including by assisting its proceedings and complying with its rulings", - "values": [ - "International instruments", - "Justice" - ] - }, - { - "text": "Continue to pay attention to women- and children-related issues", - "values": [ - "Rights of the Child", - "Women's rights" - ] - }, - { - "text": "Strengthen measures, including the adoption of necessary legislation, to give effect to the rights enshrined in ICCPR", - "values": [ - "CP rights - general", - "International instruments" - ] - }, - { - "text": "Take immediate and effective steps to address discrimination perpetrated against the Roma people", - "values": [ - "Minorities", - "Racial discrimination" - ] - }, - { - "text": "Continue efforts with a view to guaranteeing the right for an inclusive education to all children, including children belonging to minorities or immigrant children", - "values": [ - "Migrants", - "Minorities", - "Right to education", - "Rights of the Child" - ] - }, - { - "text": "Continue to accede to international human rights instruments, including the Convention against Transnational Organized Crime and the Additional Protocol thereto on the prevention and punishment of trafficking in persons", - "values": [ - "International instruments", - "Trafficking" - ] - }, - { - "text": "Boost its recent ratification of the 2013 Marrakesh Treaty to Facilitate Access to Published Works for Persons Who Are Blind, Visually Impaired, or Otherwise Print Disabled, in order to benefit blind people, people with visual disability or with other difficulties to access printed texts", - "values": [ - "Disabilities", - "International instruments" - ] - }, - { - "text": "Prohibit all corporal punishment of children, including at home, at schools, and as a sentence in courts and work towards a general understanding that corporal punishment of children is not beneficial but rather detrimental to their development", - "values": [ - "Rights of the Child", - "Torture and other CID treatment" - ] - }, - { - "text": "Intensify its efforts to resolve, through bilateral discussions, the issues relating to displaced persons formerly resident in the country and currently living in a neighbouring country", - "values": [ - "Asylum-seekers - refugees" - ] - }, - { - "text": "Adopt a legislative framework for the protection of children, in particular by raising the minimum age of marriage and the age of criminal responsibility", - "values": [ - "Justice", - "Rights of the Child" - ] - }, - { - "text": "Set a clear timeline for the review of legislation carrying the death penalty with the aim of limiting the scope of crimes to which it applies", - "values": [ - "Death penalty" - ] - }, - { - "text": "Adopt measures to eliminate all forms of violence and discrimination against women ", - "values": [ - "Women's rights" - ] - }, - { - "text": "Make appropriate and transparent budget allocations for poverty alleviation, primary education, basic health care and sanitation, to realize fundamental economic and social rights, particularly in respect of the poorest, and fully account for all social spending", - "values": [ - "ESC rights - general", - "Poverty", - "Right to education", - "Right to health", - "Right to water and sanitation" - ] - }, - { - "text": "Combat impunity", - "values": [ - "Impunity" - ] - }, - { - "text": "Continue its efforts within its international initiatives to strengthen economic development and raise the standard of living ", - "values": [ - "Development" - ] - }, - { - "text": "Fully implement and enforce laws on elimination of violence against children", - "values": [ - "Rights of the Child" - ] - }, - { - "text": "Issue a standing invitation to all United Nations special procedures ", - "values": [ - "Special procedures" - ] - }, - { - "text": "Share with other countries its experiences in poverty reduction and agricultural development.", - "values": [ - "Poverty" - ] - }, - { - "text": "Amend current education policies to ensure an inclusive education system and implement concrete measures to increase the participation of children with disability", - "values": [ - "Disabilities", - "Right to education", - "Rights of the Child" - ] - }, - { - "text": "Ratify ILO Conventions Nos. 87, 111, 169 and 189", - "values": [ - "Freedom of association and peaceful assembly", - "Indigenous peoples", - "International instruments", - "Labour" - ] - }, - { - "text": "Establish an independent national human rights institution in accordance with the Paris Principles", - "values": [ - "National Human Rights Institution" - ] - }, - { - "text": "Enhance its efforts in protecting children rights.", - "values": [ - "Rights of the Child" - ] - }, - { - "text": "Finalize the national plan of action for children and adolescents and establish a pertinent monitoring mechanism for its implementation", - "values": [ - "Rights of the Child" - ] - }, - { - "text": "Adopt a legal framework to facilitate the granting of residence permits to child victims of trafficking", - "values": [ - "Rights of the Child", - "Trafficking" - ] - }, - { - "text": "Pay special attention to the situation of domestic violence and its evolution, particularly because of the possible impact of the economic difficulties on families ", - "values": [ - "Rights of the Child", - "Women's rights" - ] - }, - { - "text": "Promote, protect and respect the right to freedom of expression, assembly and association in compliance with country's international HR obligations ", - "values": [ - "Freedom of association and peaceful assembly", - "Freedom of opinion and expression", - "International instruments" - ] - }, - { - "text": "Continue strengthening the quality of education delivery at the basic, secondary and tertiary levels ", - "values": [ - "Right to education" - ] - }, - { - "text": "Continue efforts to activate the Decent Life Fund to finance research in the agricultural sector and help the worst affected countries by world crises ", - "values": [ - "Development" - ] - }, - { - "text": "Take steps to improve prison conditions by reducing overcrowding in line with the United Nations Standard Minimum Rules for the Treatment of Prisoners, implement alternatives to detention, ensure access to a timely trial for those on remand, and address the issue of children living with parents in prison", - "values": [ - "Detention", - "Rights of the Child" - ] - }, - { - "text": "Finalize the National Action Plan on the Rights of the Child, attaching the necessary importance to the issue of unaccompanied children", - "values": [ - "Rights of the Child" - ] - }, - { - "text": "Make the promotion of gender equality an explicit component in all development policies ", - "values": [ - "Women's rights" - ] - }, - { - "text": "Continue attaching its priority towards care for the elderly in order to ensure the quality of life of this group of the population ", - "values": [ - "Other" - ] - }, - { - "text": "Continue to improve its policies and programmes to advance the status of women and girls, and protect children, including those with disabilities", - "values": [ - "Disabilities", - "Rights of the Child", - "Women's rights" - ] - }, - { - "text": "Lift restrictions on the right to freedom of assembly, in line with the ICCPR", - "values": [ - "Freedom of association and peaceful assembly", - "International instruments" - ] - }, - { - "text": "Streamline its domestic legislation for the smooth and immediate implementation of its international obligations by all levels of government", - "values": [ - "General" - ] - }, - { - "text": "Ensure that perpetrators of violence against women are duly prosecuted and convicted ", - "values": [ - "Women's rights" - ] - }, - { - "text": "Accede to the International Covenant on Civil and Political Rights and the International Covenant on Economic, Social and Cultural Rights", - "values": [ - "CP rights - general", - "ESC rights - general", - "International instruments" - ] - }, - { - "text": "Ratify CEDAW, ICESCR, and CRC in token of its commitment to their implementation worldwide, as well as become party to other international human rights conventions as referred to in the OHCHR report", - "values": [ - "ESC rights - general", - "International instruments", - "Rights of the Child", - "Women's rights" - ] - }, - { - "text": "Establish an independent national preventive mechanism in accordance with its obligations under OP-CAT ", - "values": [ - "Detention", - "International instruments", - "Torture and other CID treatment" - ] - }, - { - "text": "Incorporate human rights education and training as a cross-cutting subject at all levels of the formal educational system, in particular at primary and secondary education ", - "values": [ - "Human rights education and training" - ] - }, - { - "text": "Review its laws at the Federal and State levels with a view to bringing them in line with its international human rights obligations ", - "values": [ - "International instruments" - ] - }, - { - "text": "Step up relevant measures to protect the rights of women, children, persons with disabilities, and migrants ", - "values": [ - "Disabilities", - "Migrants", - "Rights of the Child", - "Women's rights" - ] - }, - { - "text": "Release immediately all persons who are detained solely on the basis of their peaceful political activity, ethnicity or religion ", - "values": [ - "Detention", - "Freedom of association and peaceful assembly", - "Freedom of religion and belief", - "Minorities" - ] - }, - { - "text": "Strengthen efforts to bring security sector members to justice in cases of excessive use of force or inappropriate treatment of detainees", - "values": [ - "Detention", - "Human rights violations by state agents" - ] - }, - { - "text": "Take on with determination the pending challenges with regard to children and women as a way to continue giving a good example to the region and the rest of the world in the promotion and protection of human rights.", - "values": [ - "Rights of the Child", - "Women's rights" - ] - }, - { - "text": "Continue its efforts and continue to take initiatives against hate crimes based on sexual orientation or gender identity. Such advances can be achieved by implementing anti-discrimination laws and strengthening financial resources of investigation authorities and the autonomy of the Federal Agency against discrimination ", - "values": [ - "Sexual Orientation and Gender Identity" - ] - }, - { - "text": "Continue its efforts to ensure gender equality and in particular, further promote accountability of the Government, and also promote access to education and health care services.", - "values": [ - "Right to education", - "Right to health", - "Women's rights" - ] - }, - { - "text": "Enact anti-discrimination laws which would better protect the rights of indigenous communities", - "values": [ - "Indigenous peoples", - "Racial discrimination" - ] - }, - { - "text": "Take the necessary steps to ensure that all operations of intelligence agencies are monitored by an independent oversight mechanism", - "values": [ - "Other" - ] - }, - { - "text": "Reflect the abolition of the death penalty in its legislative framework and commute existing death sentences to prison sentences", - "values": [ - "Death penalty" - ] - }, - { - "text": "Withdraw the remaining reservations to the ICCPR and the CAT", - "values": [ - "CP rights - general", - "International instruments", - "Torture and other CID treatment" - ] - }, - { - "text": "Publish case studies and annual statistics of labor disputes brought before the Government, and their manner of disposal.", - "values": [ - "Labour" - ] - }, - { - "text": "Continue consolidating the correct measures taken on economic growth, for the benefit of its people", - "values": [ - "Development" - ] - }, - { - "text": "Continue the implementation of Roma integration policies in all social economic cultural political and educational sectors", - "values": [ - "CP rights - general", - "ESC rights - general", - "Minorities", - "Right to education" - ] - }, - { - "text": "Establish a moratorium on executions towards a complete abolition of the death penalty and commute all sentences to death to jail sentences ", - "values": [ - "Death penalty" - ] - }, - { - "text": "Amend the Federal Anti-Discrimination Law to explicitly provide protection against discrimination in public schooling and to establish independent body to deal with the complaints received in this regard ", - "values": [ - "Other" - ] - }, - { - "text": "Create real space for a multi-party parliamentary election later this year in line with international standards and judged by independent observers to be fully free and fair ", - "values": [ - "Elections", - "Justice" - ] - }, - { - "text": "Ensure equality between men and women in its new Constitution as well as the right of all to be free from discrimination", - "values": [ - "Women's rights" - ] - }, - { - "text": "Decriminalize sexual relations between consenting, same-sex individuals and establish educational programmes and appropriate policies for police that promote the personal security of all Benin citizens regardless of sexual orientation", - "values": [ - "Sexual Orientation and Gender Identity" - ] - }, - { - "text": "Continue cooperating with civil society in the implementation of the outcome process.", - "values": [ - "Civil society", - "UPR process" - ] - }, - { - "text": "Continue the efforts to ensure that the Public Defender of Rights also has the mandate to combat discrimination", - "values": [ - "National Human Rights Institution" - ] - }, - { - "text": "Halt to all executions and establish a moratorium on the death penalty with a view to abolishing capital punishment", - "values": [ - "Death penalty" - ] - }, - { - "text": "Improve law enforcement capacity to protect victims of domestic violence by expanding the ability of the police to investigate cases of suspected domestic violence, including spousal rape, and increasing training and awareness-raising for police", - "values": [ - "Human rights education and training", - "Rights of the Child", - "Women's rights" - ] - }, - { - "text": "Ensure the implementation of its obligations under international humanitarian law vis-a-vis Palestinian people ", - "values": [ - "International humanitarian law" - ] - }, - { - "text": "Adopt comprehensive legal and other measures to combat all forms of violence against women and particularly violence in the home and sexual violence", - "values": [ - "Women's rights" - ] - }, - { - "text": "Include specific references to human rights law in the agreement of ceasefire throughout the country and establish a comprehensive system to monitor its implementation", - "values": [ - "Other" - ] - }, - { - "text": "Continue and strengthen efforts to integrate children with disabilities to mainstream education", - "values": [ - "Disabilities", - "Right to education", - "Rights of the Child" - ] - }, - { - "text": "Amend the law and expressly prohibit corporal punishment", - "values": [ - "Torture and other CID treatment" - ] - }, - { - "text": "Put an end to restrictions hindering the free exercise of the right to freedom of expression, assembly and association", - "values": [ - "Freedom of association and peaceful assembly", - "Freedom of opinion and expression" - ] - }, - { - "text": "Initiate and implement, with OHCHR's assistance, an action plan for the promotion of human rights in the country ", - "values": [ - "Technical assistance and cooperation" - ] - }, - { - "text": "Carry out the necessary step for the ratification of the Convention on the Elimination of All Forms of Discrimination against Women and other human rights treaties", - "values": [ - "International instruments", - "Women's rights" - ] - }, - { - "text": "Adopt comprehensive legislation on hate speech and incitement to hatred", - "values": [ - "Racial discrimination" - ] - }, - { - "text": "Undertake an evaluation of the operation of the specialized courts on violence against women, identify and encourage best practice", - "values": [ - "Women's rights" - ] - }, - { - "text": "Further improve measures to address the problems related to gender issues, including violence against women, through, inter alia, the establishment of effective coordination and the strengthening of an enforcement and judicial system for the greater protection of women and girls ", - "values": [ - "Rights of the Child", - "Women's rights" - ] - }, - { - "text": "Investigate and prosecute allegations of abusive practices by security and law enforcement forces targeted at indigenous people", - "values": [ - "Human rights violations by state agents", - "Indigenous peoples" - ] - }, - { - "text": "Establish clear legislation criminalizing hate crimes and ensure all incidents of religious hate speech are investigated", - "values": [ - "Freedom of religion and belief", - "Racial discrimination" - ] - }, - { - "text": "See that competent institutions carry out a campaign to explain the content of the Constitution distributed to different groups of the society", - "values": [ - "Human rights education and training" - ] - }, - { - "text": "Guarantee the effective implementation of the bill on the protection of human rights defenders, journalists, social communicators and justice officials, including appropriate financing", - "values": [ - "Freedom of the press", - "Human rights defenders", - "Justice" - ] - }, - { - "text": "Build on the positive measures in protecting the rights of the household service workers and continue to step up efforts to protect the rights of migrant workers and their families", - "values": [ - "Labour", - "Migrants" - ] - }, - { - "text": "The Government is also committed to a national media campaign to enhance public awareness about the crime of human trafficking, deter criminals and highlight the existence of help lines and shelters for victims.", - "values": [ - "Human rights education and training", - "Trafficking" - ] - }, - { - "text": "Consider incorporating the UN Rules for the Treatment of Women Prisoners and Non-Custodial Measures for Women Offenders, otherwise known as the Bangkok Rules, as part of its work on the treatment of prisoners, in particular the new Prisons Act 2010 ", - "values": [ - "Detention", - "Women's rights" - ] - }, - { - "text": "Reform its nationality law to ensure that all citizens have equal right to confer nationality to their children and the children born to citizen mothers are no longer at risk of statelessness", - "values": [ - "Rights of the Child", - "Statelessness and the right to nationality", - "Women's rights" - ] - }, - { - "text": "Issue a standing invitation to all thematic special procedures and cooperate fully with the United Nations human rights mechanisms, including the Commission of Inquiry", - "values": [ - "Special procedures", - "Treaty bodies", - "UPR process" - ] - }, - { - "text": "Do everything within its reach to minimize income inequalities between different social classes and geographical regions", - "values": [ - "Poverty" - ] - }, - { - "text": "Consider adopting policies to encourage women and girls to choose non-traditional fields of education, including technical and vocational training", - "values": [ - "Right to education", - "Rights of the Child", - "Women's rights" - ] - }, - { - "text": "Continue creating conditions for the participation of persons with disabilities in the country's public life and in decision-making regarding matters concerning the implementation of their rights", - "values": [ - "Disabilities" - ] - }, - { - "text": "Enhance the dissemination of information and figures regarding children and young persons who fall victims to the struggle against drug-trafficking", - "values": [ - "Public security", - "Rights of the Child" - ] - }, - { - "text": "Accelerate efforts to reduce maternal and infant mortality ", - "values": [ - "Right to health", - "Rights of the Child", - "Women's rights" - ] - }, - { - "text": "Ensure that independent, impartial and effective investigations into the unlawful use of force against women are carried out by Honduran law enforcement officials", - "values": [ - "Women's rights" - ] - }, - { - "text": "Consider ratifying the Convention on the Rights of Persons with Disabilities.", - "values": [ - "Disabilities", - "International instruments" - ] - }, - { - "text": "Remove the provisions that criminalize homosexuality.", - "values": [ - "Sexual Orientation and Gender Identity" - ] - }, - { - "text": "Continue including civil society participation in the UPR process ", - "values": [ - "Civil society", - "UPR process" - ] - }, - { - "text": "Complete the exercises in strengthening national legal and administrative frameworks in order for them to be in line with human rights principles by fully implementing those frameworks, in particular the 2009 law on the Elimination of Violence against Women and the inclusion of restorative justice principles in the 2004 Juvenile Code ", - "values": [ - "Justice", - "Rights of the Child", - "Women's rights" - ] - }, - { - "text": "Continue with relevant consultations and adopt a law on combating trafficking in persons", - "values": [ - "Trafficking" - ] - }, - { - "text": "Adopt and implement legislation setting the minimum age of marriage at 18 years, as recommended by the National Dialogue Conference, and raise awareness of the negative effects of child marriage ", - "values": [ - "Human rights education and training", - "Rights of the Child" - ] - }, - { - "text": "Consider instituting measures to strengthen its institutional and operational capacity in the administration of justice, including the establishment of a juvenile justice system, training of judicial and law enforcement officers who deal with juvenile cases, as well as the development and strengthening of legislative measures to ensure prompt investigation and prosecution of sexual offences against children", - "values": [ - "Human rights education and training", - "Justice", - "Rights of the Child" - ] - }, - { - "text": "Immediately allow the Ministry of Human Rights and domestic and international NGOs greater access to its prisons. subsequently that the President of Yemen establish a commission with the purpose of analyzing the recommendations of the Ministry of Human Rights and NGOs and implementing reforms to bring Yemen's prison system up to internationally recognized standards.", - "values": [ - "Detention" - ] - }, - { - "text": "Ensure access to comprehensive sex education and to sexual and reproductive health services, including contraception", - "values": [ - "Right to health", - "Rights of the Child", - "Women's rights" - ] - }, - { - "text": "Consider signing and-or ratifying ICERD, ICCPR and the Optional Protocols thereto, CAT and the Optional Protocol thereto, the Rome Statute and the Convention for the Prevention and Punishment of the Crime of Genocide ", - "values": [ - "International instruments" - ] - }, - { - "text": "Continue the policy of strengthening guarantees of social and economic rights of citizens, in particular in the area of education, health care, social protection and labour, and give special attention to the vulnerable groups such as children, persons with disabilities and national minorities", - "values": [ - "Disabilities", - "ESC rights - general", - "Minorities", - "Rights of the Child" - ] - }, - { - "text": "Respond positively to the repeated requests for a visit by the Special Rapporteurs on torture and other cruel, inhuman or degrading treatment or punishment on the independence of judges and lawyers on the situation of human rights defenders, on freedom of religion or belief on extrajudicial, summary or arbitrary executions on the sale of children, child prostitution and child pornography and by the Working Group on Arbitrary Detention", - "values": [ - "Special procedures" - ] - }, - { - "text": "Passing of the Anti-Torture Bill and efforts to hold accountable all those committing acts of torture and ensure timely and adequate compensations to victims ", - "values": [ - "Torture and other CID treatment" - ] - }, - { - "text": "Continue the fight against discrimination of women by, inter alia, effectively implementing the law on the protection of women from domestic violence and by strictly enforcing the prohibition of female genital mutilation education, inter alia, by raising awareness among women about the prohibition of FGM", - "values": [ - "Human rights education and training", - "Rights of the Child", - "Torture and other CID treatment", - "Women's rights" - ] - }, - { - "text": "Strengthen its national mechanisms for the prevention of torture, by considering its accession to the Convention against Torture and Other Cruel, Inhuman or Degrading Treatment or Punishment", - "values": [ - "International instruments", - "Torture and other CID treatment" - ] - }, - { - "text": "Strengthen the national plan for the search for missing persons.", - "values": [ - "Other" - ] - }, - { - "text": "Investigate all allegations of torture, and to adopt a definition of torture in keeping with the Convention against Torture and Other Cruel, Inhuman or Degrading Treatment or Punishment, in order to, inter alia, make torture an autonomous offence with adequate sanctions", - "values": [ - "International instruments", - "Torture and other CID treatment" - ] - }, - { - "text": "Continue work on the National plan of action launched regarding the good governance framework within the administration ", - "values": [ - "General" - ] - }, - { - "text": "Fully implement the obligations from the Framework Convention for National Minorities of the Council of Europe and allow the registration of OMO Ilinden PIRIN and allow fully enjoyment of all rights to the Macedonian minority and other minorities, by fulfilling cultural and other related rights", - "values": [ - "Minorities" - ] - }, - { - "text": "Continue its efforts to implement a law to combat child labour by adopting a draft law on prohibition of child labour and tackling its main causes", - "values": [ - "Labour", - "Rights of the Child" - ] - }, - { - "text": "Take all necessary measures to protect the life of human rights defenders, journalists and other threatened persons", - "values": [ - "Extrajudicial executions", - "Freedom of the press", - "Human rights defenders" - ] - }, - { - "text": "Consider ratifying ICESCR, CEDAW and CRC at the earliest", - "values": [ - "ESC rights - general", - "International instruments", - "Rights of the Child", - "Women's rights" - ] - }, - { - "text": "Develop a strategy to combat child labour", - "values": [ - "Labour", - "Rights of the Child" - ] - }, - { - "text": "Take urgent action to introduce an explicit statutory ban on solitary confinement for children in remand prisons and police cells", - "values": [ - "Detention", - "Rights of the Child" - ] - }, - { - "text": "Take additional measures, if not already taken, to reduce the time frame for the process of improving conditions in places of detention.", - "values": [ - "Detention" - ] - }, - { - "text": "Sign and ratify the Convention on the Rights of Persons with Disabilities and its Optional Protocols. Ratify the two Optional Protocols on the Convention on the Rights of the Child", - "values": [ - "Disabilities", - "International instruments", - "Rights of the Child" - ] - }, - { - "text": "Further intensify its efforts in the implementation of laws and policies aimed at promoting and protecting the rights of women, children and other vulnerable groups", - "values": [ - "Rights of the Child", - "Women's rights" - ] - }, - { - "text": "Ratify the Optional Protocols to the Covenant on Civil and Political Rights, the Optional Protocol to the Convention Against Torture and Other Cruel, Inhuman or Degrading Treatment or Punishment and the Rome Statute", - "values": [ - "CP rights - general", - "Detention", - "International instruments", - "Justice", - "Torture and other CID treatment" - ] - }, - { - "text": "Strengthen the domestic legal framework on job protection", - "values": [ - "Labour" - ] - }, - { - "text": "Improve prison conditions by reducing overcrowding, improving sanitation, increasing access to medical care, and reducing the incidence of violence among prisoners", - "values": [ - "Detention", - "Right to water and sanitation" - ] - }, - { - "text": "Establishing a comprehensive system for recording and monitoring developments in the area of prevention of xenophobia and discrimination, including hate crimes", - "values": [ - "Racial discrimination" - ] - }, - { - "text": "Regarding recommendations made by the Human Rights Committee that action be taken to raise the age of criminal responsibility to an acceptable level under international standards, and to reduce domestic violence, take action to address these concerns if they have not been fully addressed ", - "values": [ - "Rights of the Child", - "Treaty bodies", - "Women's rights" - ] - }, - { - "text": "Develop public policies aimed at guaranteeing the rights of persons with disabilities, mainly in education, professional development and participation in social life on an equal footing", - "values": [ - "Disabilities", - "Right to education" - ] - }, - { - "text": "Include the effective prosecution and punishment of traffickers in legislation ", - "values": [ - "Trafficking" - ] - }, - { - "text": "Strengthen efforts to conclude the formation of the Independent National Commission for Human Rights, and ensure that all human and financial resources are provided to ensure the performance of its tasks effectively and in an independent and transparent manner", - "values": [ - "National Human Rights Institution" - ] - }, - { - "text": "Further incorporate the International Convention on the Elimination of All Forms of Racial Discrimination into domestic law", - "values": [ - "International instruments", - "Racial discrimination" - ] - }, - { - "text": "Sri Lanka has commenced work on drafting a constitutional charter on human rights that will strengthen the human rights protection framework in the country and bring Sri Lanka's constitutional human rights guarantees in line with its international obligations. The process includes engaging in consultations with civil society. The draft charter and the process of consultation will foster a national discourse on human rights.", - "values": [ - "Civil society" - ] - }, - { - "text": "With regard to conscientious objection, adapt existing national legislation so that alternative services to military service effectively have a civil nature and that they are placed under the monitoring of civil authorities", - "values": [ - "Freedom of religion and belief" - ] - }, - { - "text": "Pursue efforts with regional and international communities in seeking financial and technical assistance to advance human rights in Papua New Guinea ", - "values": [ - "Technical assistance and cooperation" - ] - }, - { - "text": "Expedite the ratification of the Optional Protocol to CEDAW", - "values": [ - "International instruments", - "Women's rights" - ] - }, - { - "text": "Sign and ratify the ICRMW", - "values": [ - "International instruments", - "Labour", - "Migrants" - ] - }, - { - "text": "Strengthen its measures to address police brutality in accordance with existing international standards governing the use of force", - "values": [ - "Human rights violations by state agents" - ] - }, - { - "text": "Prohibit explicitly corporal punishment of girls and boys in all circumstances, as recommended by the Committee on the Rights of the Child", - "values": [ - "Rights of the Child", - "Torture and other CID treatment", - "Treaty bodies" - ] - }, - { - "text": "Strengthen efforts in order to prevent attacks on human rights defenders", - "values": [ - "Human rights defenders" - ] - }, - { - "text": "Ratify the Convention for the Protection of All Persons from Enforced Disappearance ", - "values": [ - "Enforced disappearances", - "International instruments" - ] - }, - { - "text": "Take necessary steps for the implementation of the relevant legal and policy framework to combat trafficking in persons, identifying victims and providing them with all necessary assistance and support", - "values": [ - "Trafficking" - ] - }, - { - "text": "Continue strengthening its efforts in the promotion and protection of the rights of vulnerable groups, particularly women and persons with disabilities", - "values": [ - "Disabilities", - "Women's rights" - ] - }, - { - "text": "Continue to take measures to advance the empowerment of women without any discrimination", - "values": [ - "Women's rights" - ] - }, - { - "text": "Continue to strengthen efforts to eliminate racial discrimination", - "values": [ - "Racial discrimination" - ] - }, - { - "text": "Consider ratifying those international human rights instruments that the United Kingdom of Great Britain and Northern Ireland has not yet ratified", - "values": [ - "International instruments" - ] - }, - { - "text": "Finalize the drafting and adoption of the Children's Code", - "values": [ - "Rights of the Child" - ] - }, - { - "text": "Ensure that ethnic and religious minorities are granted fundamental rights and end discrimination against persons belonging to these minorities ", - "values": [ - "Freedom of religion and belief", - "Minorities", - "Racial discrimination" - ] - }, - { - "text": "Abolish the anti-human rights \u201cNational Security Law\u201c and other laws which are in contravention of international human rights standards as well as the provocative \u201cNorth Korean Human Rights Act\u201c", - "values": [ - "Freedom of association and peaceful assembly", - "Freedom of opinion and expression" - ] - }, - { - "text": "Consider amendments to its Labour Code to cover and protect domestic workers and prohibit exploitative form of domestic work", - "values": [ - "Labour" - ] - }, - { - "text": "Strengthen efforts in addressing issues of irregular migrants in the country in line with international human rights law obligations", - "values": [ - "International instruments", - "Migrants" - ] - }, - { - "text": "Take all necessary measures to have an independent national human rights institution with "A" status, in accordance with the Paris Principles", - "values": [ - "National Human Rights Institution" - ] - }, - { - "text": "Extend an open invitation to the Special Rapporteurs and to facilitate a visit by the Special Rapporteur on the question of torture", - "values": [ - "Special procedures", - "Torture and other CID treatment" - ] - }, - { - "text": "Continue efforts in eradicating illiteracy and adult education and share its pioneering experience in this field", - "values": [ - "Right to education" - ] - }, - { - "text": "Take immediate measures to address the situation of the continued distortion of the history in Japan, since this is indicative of the refusal to address past violations and the danger of its reoccurrence, and recommended immediate measures to address the situation, as also called for by the Special Rapporteur on contemporary forms of racism.", - "values": [ - "Special procedures" - ] - }, - { - "text": "Implement the 2004 guidelines and reforms in the prison system in Portugal and resolve the serious problems in prisons in an expeditious manner", - "values": [ - "Detention" - ] - }, - { - "text": "Continue its efforts to further improve access to education, housing, social security, health and employment, especially for people living in poverty or extreme poverty, and to increase even more the resources and social benefits aimed at reducing poverty and extreme poverty in the country ", - "values": [ - "Labour", - "Poverty", - "Right to education", - "Right to health", - "Right to housing" - ] - }, - { - "text": "More effectively address and combat domestic violence as perpetuated against women and the elderly", - "values": [ - "Women's rights" - ] - }, - { - "text": "Further strengthen its educational policy in order to provide an inclusive education that meets the needs of its people, ensuring their full and equal access with the necessary assistance and selfless cooperation of the international community", - "values": [ - "Right to education", - "Technical assistance and cooperation" - ] - }, - { - "text": "Take measures to reduce the gender pay gap and eliminate gender-based violence", - "values": [ - "Women's rights" - ] - }, - { - "text": "Serve as a model for the freedom of the press by ensuring that all journalists and media outlets, including those that may be viewed as critical to the Government, are free from harassment.", - "values": [ - "Freedom of the press" - ] - }, - { - "text": "Ensure the full enjoyment of civil and political rights with a view to consolidating the rule of law", - "values": [ - "CP rights - general", - "Justice" - ] - }, - { - "text": "Take steps to reassess the measures needed to ensure that the principle of freedom of religion and belief is implemented without discrimination.", - "values": [ - "Freedom of religion and belief" - ] - }, - { - "text": "Ratify as soon as possible the Convention on the Rights of the Child", - "values": [ - "International instruments", - "Rights of the Child" - ] - }, - { - "text": "Raise the public awareness on the abolition of the death penalty and continue the efforts towards abolishing the death penalty", - "values": [ - "Death penalty" - ] - }, - { - "text": "Continue, in line with what is described in its national report, its efforts to provide greater access to education and employment, in order to reduce the conditions for the progression of criminal organizations ", - "values": [ - "Development", - "Public security", - "Right to education" - ] - }, - { - "text": "Take the necessary measures to open the office of the Federal Ethics and Anti-Corruption Commission in the remaining two national regional states ", - "values": [ - "Corruption" - ] - }, - { - "text": "Issue a standing invitation to the United Nations special procedures", - "values": [ - "Special procedures" - ] - }, - { - "text": "Take measures to ensure the compliance of its legislation against slavery and take effective measures to compensate those who have suffered slavery", - "values": [ - "Other" - ] - }, - { - "text": "Allocate sufficient resources for potable water projects, especially in rural and marginalized areas ", - "values": [ - "Right to water and sanitation" - ] - }, - { - "text": "Cooperate more with the special procedures mandate holders, in order to allow the international community to provide the best possible support in guaranteeing human rights", - "values": [ - "Special procedures" - ] - }, - { - "text": "Abolish anti-conversion laws in relation to religion and grant access to justice to victims of religious violence and discrimination ", - "values": [ - "Freedom of religion and belief", - "Racial discrimination" - ] - }, - { - "text": "Continue strengthening international cooperation in its fight against corruption ", - "values": [ - "Corruption" - ] - }, - { - "text": "Elaborate a national programme to combat the problem of overcrowding of prisons.", - "values": [ - "Detention" - ] - }, - { - "text": "Establish a National Human Rights Institution", - "values": [ - "National Human Rights Institution" - ] - }, - { - "text": "Continue the strengthening of ongoing sound health-care policies with a view to fully satisfying and preserving the health of its people ", - "values": [ - "Right to health" - ] - }, - { - "text": "Strengthen efforts to protect the rights of persons with disabilities, especially focusing on the implementation of CRPD", - "values": [ - "Disabilities", - "International instruments" - ] - }, - { - "text": "Continue efforts towards the consolidation of the rule of law and its mechanisms", - "values": [ - "Justice" - ] - }, - { - "text": "Take the necessary measures to fully implement the 1997 Constitution and thus allow, among others, the existence and independence of political parties and other organs of civil society ", - "values": [ - "Civil society", - "Freedom of association and peaceful assembly" - ] - }, - { - "text": "Take necessary measures to guarantee full respect for freedom of expression and freedom of association", - "values": [ - "Freedom of association and peaceful assembly", - "Freedom of opinion and expression" - ] - }, - { - "text": "Pay attention to the integration into domestic legislation of the commitments undertaken by Turkmenistan by virtue of international conventions on human rights.", - "values": [ - "International instruments" - ] - }, - { - "text": "Deepen efforts to prevent and sanction harmful traditional practices, such as female genital mutilation, the tradition known as trokosi, early forced marriage and accusations of witchcraft and [...], guaranteeing the protection and rehabilitation of victims", - "values": [ - "Rights of the Child", - "Torture and other CID treatment", - "Women's rights" - ] - }, - { - "text": "Put in place a national strategy to combat domestic violence and child abuse ", - "values": [ - "Rights of the Child" - ] - }, - { - "text": "Continue its efforts to promote inter-religious dialogues and reconcile different schools of Islamic thoughts and other religions", - "values": [ - "Freedom of religion and belief" - ] - }, - { - "text": "Continue to make progress in education and health care, with a particular focus on women and girls, in order to achieve quality education and a quality health-care system ", - "values": [ - "Right to education", - "Right to health", - "Rights of the Child", - "Women's rights" - ] - }, - { - "text": "Further progress in the fight against all forms of discrimination and violence against women, putting into operation the Authority for Gender Equality and Action against All Forms of Discrimination", - "values": [ - "Women's rights" - ] - }, - { - "text": "Prevent and combat all forms of discrimination and violence against women and other vulnerable groups", - "values": [ - "Women's rights" - ] - }, - { - "text": "Include in the school system at all levels, appropriate measures in the field of human rights education, in accordance with the Plan of Action of the World Programme for Human Rights Education.", - "values": [ - "Human rights education and training" - ] - }, - { - "text": "Develop concurrently a national follow-up mechanism to ensure effective implementation of accepted recommendations by United Nations agencies and international organizations in the field of human rights", - "values": [ - "Treaty bodies", - "UPR process" - ] - }, - { - "text": "Establish an immediate moratorium on the death penalty", - "values": [ - "Death penalty" - ] - }, - { - "text": "On sexual violence against women, undertake due and timely investigations of all reported cases, punish the perpetrators and implement necessary rehabilitation programmes for the victims - intensify Government efforts to raise public awareness against this negative phenomenon and to fight persistent traditional stereotypes", - "values": [ - "Human rights education and training", - "Women's rights" - ] - }, - { - "text": "Strengthen the legislative framework to better support migrants and migrant workers, particularly through the ratification of the International Convention on the Protection of the Rights of All Migrant Workers and Members of Their Families", - "values": [ - "International instruments", - "Labour", - "Migrants" - ] - }, - { - "text": "Continue action to protect the conditions of migrant workers by improving existing legislation ", - "values": [ - "Labour", - "Migrants", - "Minorities" - ] - }, - { - "text": "Ensure that the Transitional Judicial Council appointed to reform the justice system operates independently of the government ", - "values": [ - "Justice" - ] - }, - { - "text": "Accelerate its efforts to ratify CRPD", - "values": [ - "Disabilities", - "International instruments" - ] - }, - { - "text": "Complete within the envisaged time the comprehensive national programme on human rights protection", - "values": [ - "General" - ] - }, - { - "text": "Take concrete steps to end discrimination against persons with disabilities", - "values": [ - "Disabilities" - ] - }, - { - "text": "Take immediate steps to effectively eradicate and remedy widespread and systematic administrative practices of torture and ill-treatment, especially in detention facilities, suppression of the rights to assembly and freedom of expression, including media freedom and safety of journalists, and of control of judiciary by the executive in line with the United Nations treaty monitoring bodies' recommendations ", - "values": [ - "Detention", - "Freedom of association and peaceful assembly", - "Freedom of opinion and expression", - "Torture and other CID treatment", - "Treaty bodies" - ] - }, - { - "text": "Create mechanisms to end the case backlog at all levels of the judicial system ", - "values": [ - "Justice" - ] - }, - { - "text": "Strengthen its legal and institutional framework to combat racism and racial discrimination to ensure that all legal provisions are fully applied and ensure active monitoring of racism and racial discrimination .", - "values": [ - "Racial discrimination" - ] - }, - { - "text": "Commute the sentences of persons sentenced to death and establish a moratorium on executions as a first step towards abolition of the death penalty", - "values": [ - "Death penalty" - ] - }, - { - "text": "Consider ratifying ILO Convention 189 concerning Decent Work for Domestic Workers ", - "values": [ - "International instruments", - "Labour" - ] - }, - { - "text": "Monitor continuously the extractive activities of oil companies in Mayan territory, which must always respect human rights", - "values": [ - "Business and human rights", - "Indigenous peoples", - "Right to land" - ] - }, - { - "text": "Take the necessary measures to ensure the effective participation of indigenous peoples in the public and political life, including through implementation of the relevant recommendations of human rights treaty bodies and special procedures.", - "values": [ - "Indigenous peoples", - "Special procedures", - "Treaty bodies" - ] - }, - { - "text": "Put in place measures to effectively prevent underage military recruitment ", - "values": [ - "Rights of the Child" - ] - }, - { - "text": "Take the necessary measures to ensure that the Rome Statute is fully implemented in its national legislation ", - "values": [ - "International instruments", - "Justice" - ] - }, - { - "text": "Swiftly ratify the Rome Statute of the International Criminal Court", - "values": [ - "International instruments", - "Justice" - ] - }, - { - "text": "Redouble its efforts to protect the human rights of persons with physical disabilities", - "values": [ - "Disabilities" - ] - }, - { - "text": "Abolish the death penalty in law and ratify the Second Optional Protocol to the ICCPR", - "values": [ - "Death penalty", - "International instruments" - ] - }, - { - "text": "Further efforts to promulgate and implement focused legislation, action-oriented strategies and implementation in accordance with the adopted international standards as regards gender equality and non-discrimination, advancement of persons with disabilities and fully fledged opportunities for ethnic minorities ", - "values": [ - "Disabilities", - "Minorities", - "Racial discrimination", - "Women's rights" - ] - }, - { - "text": "Continue its close cooperation with the United Nations bodies and mechanisms to implement the National Human Rights Action Plan", - "values": [ - "Technical assistance and cooperation" - ] - }, - { - "text": "Continue efforts and initiatives to promote dialogue, peace and tolerance between religions, civilizations and cultures", - "values": [ - "General" - ] - }, - { - "text": "Strengthen the efforts aiming at elimination of existing harmful traditional practices and adopt all necessary measures to provide full protection of children, girls, women and widows from wrongdoings, inspired by these traditions", - "values": [ - "Rights of the Child", - "Torture and other CID treatment", - "Women's rights" - ] - }, - { - "text": "Secure the defence of journalists, media personnel and media company owners against attacks and prosecute those responsible for such attempts, and adopt an information law", - "values": [ - "Freedom of the press" - ] - }, - { - "text": "Continue to implement the integrated development plans of the country, in particular those aimed at satisfy equitable access and improving the quality of education and health services ", - "values": [ - "Development", - "Right to education", - "Right to health" - ] - }, - { - "text": "Adopt the appropriate legislation to deal with genital mutilation ", - "values": [ - "Rights of the Child", - "Torture and other CID treatment", - "Women's rights" - ] - }, - { - "text": "Continue its activities in bridging the gap in economic and social development between rural and urban areas and among geographical regions, as well as its efforts to eradicate poverty through the implementation of alleviation projects and the employment strategy", - "values": [ - "Development", - "ESC rights - general", - "Poverty" - ] - }, - { - "text": "Consolidating medicine distribution channels", - "values": [ - "Right to health" - ] - }, - { - "text": "Issue and implement standing invitation to human rights special procedures ", - "values": [ - "Special procedures" - ] - }, - { - "text": "Abide by all its international obligations and commitments and ensure an early return to constitutional order, the rule of law and respect for human rights ", - "values": [ - "Justice" - ] - }, - { - "text": "Urgently review the Presidential decree expanding the role of military courts with a view to ensuring fair trial guarantees and limiting the jurisdiction of military courts", - "values": [ - "Justice" - ] - }, - { - "text": "Take further action to end discrimination based on gender or sexual orientation in all fields, including in the military", - "values": [ - "Sexual Orientation and Gender Identity" - ] - }, - { - "text": "Ensure, in both legislation and its implementation, freedom of expression and freedom of the press as guaranteed in its Constitution", - "values": [ - "Freedom of opinion and expression", - "Freedom of the press" - ] - }, - { - "text": "Increase the number and quality of gender-sensitive training events on violence against women for the judiciary and law enforcement agencies", - "values": [ - "Human rights education and training", - "Women's rights" - ] - }, - { - "text": "Improve food safety of vulnerable groups, particularly indigenous people, former bonded labourers, Dalits, Muslims, persons with disabilities and those who are infected with HIV/AIDs ", - "values": [ - "Disabilities", - "Freedom of religion and belief", - "HIV - Aids", - "Indigenous peoples", - "Labour", - "Minorities" - ] - }, - { - "text": "Continue advancing in the improvement of detention conditions and in the mechanisms of social reintegration of prisoners and in the reform of the criminal justice system ", - "values": [ - "Detention", - "Justice" - ] - }, - { - "text": "Recommended conducting a nationwide, transparent review of all potentially political cases of past years and releasing all those found to have been incarcerated on politically motivated charges.", - "values": [ - "Justice" - ] - }, - { - "text": "Continue to enhance, with the cooperation of the relevant United Nations agencies, its efforts to eliminate gender-based violence", - "values": [ - "Women's rights" - ] - }, - { - "text": "Consider establishing a national human rights body that institutionalizes its efforts to promote human rights and engage all stakeholders", - "values": [ - "National Human Rights Institution" - ] - }, - { - "text": "Develop a comprehensive strategy to address violence against children", - "values": [ - "Rights of the Child" - ] - }, - { - "text": "Should extend standing invitations to the special procedures mandate holders ", - "values": [ - "Special procedures" - ] - }, - { - "text": "Respond favourably to the request of the Special Rapporteur on the question of torture to visit the country", - "values": [ - "Special procedures", - "Torture and other CID treatment" - ] - }, - { - "text": "Accede to and implement the Rome Statute in national legislation ", - "values": [ - "International instruments", - "Justice" - ] - }, - { - "text": "Uphold freedom of expression in all cases ", - "values": [ - "Freedom of opinion and expression" - ] - }, - { - "text": "Work effectively on incorporating the the Convention on the Rights of the Child into Swedish laws", - "values": [ - "International instruments", - "Rights of the Child" - ] - }, - { - "text": "Revise legislation regarding the sexual and reproductive rights of women, including the abolition of the total ban on abortion, and ensure their access to services necessary for their enjoyment of the highest attainable standard of health", - "values": [ - "Right to health", - "Women's rights" - ] - }, - { - "text": "Commute all death sentences to prison terms and ratify the Second Optional Protocol to the International Covenant on Civil and Political Rights with a view to definitively abolishing the death penalty ", - "values": [ - "Death penalty", - "International instruments" - ] - }, - { - "text": "Adopt legislation which explicitly prohibits corporal punishment of children in all settings, including in the home", - "values": [ - "Rights of the Child", - "Torture and other CID treatment" - ] - }, - { - "text": "Establish public policies to raise awareness for the elimination of cultural practices that are contrary to the rights of women, including premarital contracts determined by a donation", - "values": [ - "Women's rights" - ] - }, - { - "text": "Continue implementing human rights education towards children and women's rights", - "values": [ - "Human rights education and training", - "Rights of the Child", - "Women's rights" - ] - }, - { - "text": "Continue its efforts to achieve equal access for women to the labour market, particularly thoroughly trough vocational training programmes", - "values": [ - "Women's rights" - ] - }, - { - "text": "Take all appropriate measures to eliminate all forms of slavery and ensure that perpetrators of such practices are systematically brought to justice ", - "values": [ - "Other" - ] - }, - { - "text": "Ensure implementation of the Convention on the Rights of Persons with Disabilities ", - "values": [ - "Disabilities", - "International instruments" - ] - }, - { - "text": "Although the establishment and operationalization of the Human Rights Commission has been a lengthy process, the Government remains committed to its operationalization as it will complement the primary role of Government as a responsible agency for the promotion, protection and monitoring of human rights. Lesotho will continue to work with external stakeholders and development partners to operationalize the Commission.", - "values": [ - "National Human Rights Institution" - ] - }, - { - "text": "Ensure that emergency shelters and social housing units meet an adequate standard, especially for families with children ", - "values": [ - "Rights of the Child" - ] - }, - { - "text": "Enhance efforts to curb hate crimes against certain religious communities, ethnic groups and other minorities, including indigenous people", - "values": [ - "Freedom of religion and belief", - "Indigenous peoples", - "Minorities", - "Racial discrimination" - ] - }, - { - "text": "Implement effective mechanisms to prevent and sanction domestic and gender-based violence, including legal and psychological assistance for victims", - "values": [ - "Rights of the Child", - "Women's rights" - ] - }, - { - "text": "Continue its engagement with Governments and civil society organizations on initiatives that help promote and protect human rights", - "values": [ - "Civil society", - "Human rights education and training" - ] - }, - { - "text": "Continue to promote its socio-economic development by reducing poverty, and increasing inputs into health care and education", - "values": [ - "Poverty", - "Right to education", - "Right to health" - ] - }, - { - "text": "Implement the recommendations of the Committee on the Rights of the Child to prioritize effective measures to reduce poverty among indigenous and minority children", - "values": [ - "Indigenous peoples", - "Minorities", - "Poverty", - "Rights of the Child", - "Treaty bodies" - ] - }, - { - "text": "Continue its efforts to ensure non-discrimination among all groups of the society, including Roma communities, including through public awareness-raising campaigns ", - "values": [ - "Human rights education and training", - "Minorities", - "Racial discrimination" - ] - }, - { - "text": "Repeal section 377 of the Indian Penal Code, which criminalizes same-sex conduct between consenting adults, and enact legislation consistent with the Supreme Court\u2019s recognition of the rights of transgender persons", - "values": [ - "Sexual Orientation and Gender Identity" - ] - }, - { - "text": "Ensure respect of the rights of migrant workers and members of their families ", - "values": [ - "Labour", - "Migrants" - ] - }, - { - "text": "Take steps toward accession to the International Convention on the Protection of the Rights of All Migrant Workers and Members of Their Families", - "values": [ - "International instruments", - "Labour", - "Migrants" - ] - }, - { - "text": "Submit the Prisons Bill (2003) to Parliament for its consideration at the earliest opportunity and take meaningful action to deal with prison overcrowding, in particular through reducing the extraordinary periods of pretrial detention faced by many detainees", - "values": [ - "Detention" - ] - }, - { - "text": "Enhance ratification of international human rights instruments", - "values": [ - "International instruments" - ] - }, - { - "text": "Conduct thorough investigations of human rights crimes and abuses perpetrated during the internal armed conflict in the 1990s", - "values": [ - "Impunity" - ] - }, - { - "text": "Improve school infrastructure in rural areas", - "values": [ - "Right to education" - ] - }, - { - "text": "Continue combating the phenomena of racism and xenophobia and promote tolerance between cultures and religions ", - "values": [ - "Freedom of religion and belief", - "Racial discrimination" - ] - }, - { - "text": "Actively consider widening opportunities for foreign inhabitants to participate actively in political life.", - "values": [ - "Migrants" - ] - }, - { - "text": "Fulfil its obligations in accordance with CAT, immediately submit its overdue initial national report to the Committee against Torture and include a specific individual offence criminalizing acts of torture as well as a definition of torture in the national legislation", - "values": [ - "International instruments", - "Torture and other CID treatment", - "Treaty bodies" - ] - }, - { - "text": "Take further measures to prevent human trafficking, strengthen the protection of victims and provide them with redress", - "values": [ - "Justice", - "Trafficking" - ] - }, - { - "text": "Make progress in the drafting and implementation of policies and measures aimed at attaining Sri Lanka\u2019s sustainable development and overcoming challenges of climate change for the protection and promotion of human rights of its population", - "values": [ - "Development", - "Environment" - ] - }, - { - "text": "Provide a follow-up report on efforts and measures to address extrajudicial killings and enforced disappearances taking into account the recommendations of the Special Rapporteur on extrajudicial, summary or arbitrary executions.", - "values": [ - "Enforced disappearances", - "Extrajudicial executions", - "Special procedures" - ] - }, - { - "text": "Strengthen its efforts to ensure that effective protection measures are promptly in place in order to prevent, combat and sanction acts of violence against women and children, notably domestic violence and sexual violence ", - "values": [ - "Rights of the Child", - "Women's rights" - ] - }, - { - "text": "Further strengthen its efforts in the areas of equality between women and men, eradicating violence against women, and promoting rights of the child", - "values": [ - "Rights of the Child", - "Women's rights" - ] - }, - { - "text": "Take effective measures to ensure the full realisation of the right to freedom of expression", - "values": [ - "Freedom of opinion and expression" - ] - }, - { - "text": "Develop a national plan of action on eliminating violence against women ", - "values": [ - "Women's rights" - ] - }, - { - "text": "Facilitate the growth and development of civil society organizations in the country ", - "values": [ - "Civil society" - ] - }, - { - "text": "Significantly improve its cooperation with the United Nations treaty bodies by agreeing on timelines for the submission of overdue reports, and consider the need for external assistance to that end", - "values": [ - "Technical assistance and cooperation", - "Treaty bodies" - ] - }, - { - "text": "Create an environment of freedom of the media, and encourage media to project positive images of women and of the equal status and responsibilities of women and men in the private and public spheres ", - "values": [ - "Freedom of the press", - "Women's rights" - ] - }, - { - "text": "Enforce the International Covenant on Civil and Political Rights fully and accede to its Second Optional Protocol", - "values": [ - "CP rights - general", - "Death penalty", - "International instruments" - ] - }, - { - "text": "Continue its efforts to combat trafficking in persons, especially women and children, by prosecuting the perpetrators", - "values": [ - "Rights of the Child", - "Trafficking", - "Women's rights" - ] - }, - { - "text": "Increase support for programmes and initiatives by strengthening partnerships with relevant stakeholders, United Nations programmes and civil society working to introduce family planning in rural areas", - "values": [ - "Civil society", - "Right to health" - ] - }, - { - "text": "Take into consideration the recommendation of the Committee on Human Rights and explicitly criminalize female genital mutilation", - "values": [ - "International instruments", - "Rights of the Child", - "Torture and other CID treatment", - "Women's rights" - ] - }, - { - "text": "Establish and implement strategies to combat effectively discrimination against ethnic minorities, indigenous people and migrants ", - "values": [ - "Indigenous peoples", - "Migrants", - "Minorities", - "Racial discrimination" - ] - }, - { - "text": "Further pursue measures for the protection of the rights of women and children", - "values": [ - "Rights of the Child", - "Women's rights" - ] - }, - { - "text": "Consider the human rights elements with regard to the amendment of the security bill in the spirit of the new Constitution", - "values": [ - "Public security" - ] - }, - { - "text": "Expedite the process of establishing an independent and effective national human rights institution with a broad human rights mandate, in accordance with the Paris Principles", - "values": [ - "National Human Rights Institution" - ] - }, - { - "text": "Continue policies to strengthen the rights of children ", - "values": [ - "Rights of the Child" - ] - }, - { - "text": "Continue achieving the widest enjoyment possible of human rights and basic freedoms ", - "values": [ - "General" - ] - }, - { - "text": "Continue its efforts to improve access to education, housing and health-care services ", - "values": [ - "Right to education", - "Right to health", - "Right to housing" - ] - }, - { - "text": "Carry out effective investigations with all sectors of the community and ethnic groups in order for all to enjoy their human rights", - "values": [ - "Minorities" - ] - }, - { - "text": "Take further measures to provide protection and assistance to vulnerable social groups, including the elderly, persons with disabilities, poor families, orphans and others ", - "values": [ - "Disabilities", - "Poverty", - "Rights of the Child" - ] - }, - { - "text": "Maintain its policy with regard to access to justice ", - "values": [ - "Justice" - ] - }, - { - "text": "Continue to review its laws and policies to bring them in conformity with the Constitution and to promote the rule of law, inclusiveness and an effective two-tier government", - "values": [ - "Justice" - ] - }, - { - "text": "Strengthen efforts to prevent violence against women", - "values": [ - "Women's rights" - ] - }, - { - "text": "Consider establishing an interministerial committee responsible for the implementation of its international human rights obligations, inter alia, for coordinating the drafting of national reports to the treaty bodies", - "values": [ - "International instruments", - "Treaty bodies" - ] - }, - { - "text": "Issue a standing invitation to all human rights special procedures", - "values": [ - "Special procedures" - ] - }, - { - "text": "Ensure that all public power is exercised with respect for the equal worth of all, and the liberty and dignity of all persons ", - "values": [ - "General" - ] - }, - { - "text": "Apply a human rights approach in its fight against poverty and HIV-AIDS ", - "values": [ - "HIV - Aids", - "Poverty" - ] - }, - { - "text": "Implement the recommendations of the Committee on the Rights of the Child, particularly with regard to street children and child labour", - "values": [ - "Labour", - "Rights of the Child", - "Treaty bodies" - ] - }, - { - "text": "Inform UNESCO on the actions taken to prevent the impunity of the perpetrators of the killings of journalists, and notify UNESCO of the status of the judicial inquiries conducted", - "values": [ - "Extrajudicial executions", - "Freedom of the press", - "Impunity" - ] - }, - { - "text": "Ratify, without making any reservation, the International Convention for the Protection of All Persons from Enforced Disappearance, implement it into national law and recognize the competence of the Committee on Enforced Disappearances to receive and consider from or on behalf of victims or other States parties", - "values": [ - "Enforced disappearances", - "International instruments" - ] - }, - { - "text": "Ratify the UNESCO Convention against Discrimination in Education", - "values": [ - "International instruments", - "Right to education" - ] - }, - { - "text": "Adopt a legal framework to fight violence against women, which establishes sanctions for these acts, ensures access to justice for victims and establishes a system for their protection, compensation and rehabilitation", - "values": [ - "Women's rights" - ] - }, - { - "text": "Start an open, transparent and inclusive consultation on the most appropriate National Preventive Mechanism ", - "values": [ - "Torture and other CID treatment" - ] - }, - { - "text": "Establish an immediate moratorium on the death penalty, as a first step towards its complete abolition, and publish detailed statistics on death sentences and executions", - "values": [ - "Death penalty" - ] - }, - { - "text": "Further its commitment to human rights by becoming a party to the Rome Statute of the International Criminal Court ", - "values": [ - "International instruments", - "Justice" - ] - }, - { - "text": "Remove the bureaucratic obstacles to rendering prompt assistance to immigrants ", - "values": [ - "Migrants" - ] - }, - { - "text": "Consider ratifying ILO Convention No. 189 ", - "values": [ - "International instruments", - "Labour" - ] - }, - { - "text": "Accede to the international human rights instruments, in particular the International Covenant on Civil and Political Rights", - "values": [ - "CP rights - general", - "International instruments" - ] - }, - { - "text": "Continue to move forward in its efforts to achieve full equality in remuneration between men and women ", - "values": [ - "Women's rights" - ] - }, - { - "text": "Decriminalize consensual same-sex activity between adults and take measures to promote tolerance in this regard.", - "values": [ - "Sexual Orientation and Gender Identity" - ] - }, - { - "text": "Identify the needs in terms of assistance and capacity-building in areas deemed priority ", - "values": [ - "Technical assistance and cooperation" - ] - }, - { - "text": "Take measures to eliminate all forms of discrimination against Koreans in Japan.", - "values": [ - "Racial discrimination" - ] - }, - { - "text": "Consider the ratification of the Convention on the Rights of Persons with Disabilities as well as its Optional Protocol.", - "values": [ - "Disabilities", - "International instruments" - ] - }, - { - "text": "Make efforts aimed at preventing and eliminating all forms of discrimination and abuse vis-\u00c3\u00a0-vis children", - "values": [ - "Rights of the Child" - ] - }, - { - "text": "Implement the national preventive mechanism against torture", - "values": [ - "Detention", - "Torture and other CID treatment" - ] - }, - { - "text": "Continue and strengthen the positive ongoing efforts aimed at increasing the school enrolment rate of its citizen, with special emphasis on girls and boys ", - "values": [ - "Right to education", - "Rights of the Child" - ] - }, - { - "text": "Strengthen policies for the promotion of women ", - "values": [ - "Women's rights" - ] - }, - { - "text": "Establish a holistic legal and policy framework to guarantee the equal right of children with disabilities to access good-quality health-care services, public buildings and transportation ", - "values": [ - "Disabilities", - "Rights of the Child" - ] - }, - { - "text": "Speed up the drafting of a law on Anti-Human Trafficking", - "values": [ - "Trafficking" - ] - }, - { - "text": "Conduct a study on the feasibility of inviting officials of the special procedures system for consultations and discussions.", - "values": [ - "Special procedures" - ] - }, - { - "text": "Sign and ratify Convention No. 111 of the International Labour Organization - ILO -, concerning discrimination in respect of employment and occupation", - "values": [ - "International instruments", - "Labour" - ] - }, - { - "text": "Issue a standing invitation ", - "values": [ - "Special procedures" - ] - }, - { - "text": "Continue promulgating laws and enhancing all policies to provide safe protection for women", - "values": [ - "Women's rights" - ] - }, - { - "text": "Ratify the 1954 Convention relating to the Status of Stateless Persons ", - "values": [ - "International instruments", - "Statelessness and the right to nationality" - ] - }, - { - "text": "Enhance freedom of expression", - "values": [ - "Freedom of opinion and expression" - ] - }, - { - "text": "Continue strengthening the programmes carried out for the social protection of all the Kyrgyz people in the fight against poverty and social inequity", - "values": [ - "ESC rights - general", - "Poverty" - ] - }, - { - "text": "Take steps aimed at the elimination of child, early and forced marriage", - "values": [ - "Rights of the Child", - "Women's rights" - ] - }, - { - "text": "Initiate a legislative process to revise the Penal Code in order to limit the death penalty to cases in which the accused has committed an intentional killing as a first step towards abolition of the death penalty", - "values": [ - "Death penalty" - ] - }, - { - "text": "Accede to the international human rights covenants and seek the support of OHCHR for the process of implementation of these treaties at the national level ", - "values": [ - "International instruments", - "Technical assistance and cooperation", - "Treaty bodies" - ] - }, - { - "text": "Continue efforts to implement the action plan 2013-2017 to fight domestic violence", - "values": [ - "Rights of the Child", - "Women's rights" - ] - }, - { - "text": "Consider the possibility of acceding to the Convention on the Rights of Persons with Disabilities.", - "values": [ - "Disabilities", - "International instruments" - ] - }, - { - "text": "Take effective measures to safeguard the rights of prisoners and improve the living conditions for detainees", - "values": [ - "Detention" - ] - }, - { - "text": "Continue to reinforce its national programmes in the area of education and to seek the necessary technical and financial assistance to accompany it in its integration of human rights education and training into its programmes", - "values": [ - "Human rights education and training", - "Right to education", - "Technical assistance and cooperation" - ] - }, - { - "text": "Continue its positive initiatives towards prioritizing minority issues and guaranteeing the security of minorities and ensure that the situation of minorities is dealt with in accordance with human rights", - "values": [ - "Minorities" - ] - }, - { - "text": "Repeal laws that criminalize homosexuality", - "values": [ - "Sexual Orientation and Gender Identity" - ] - }, - { - "text": "Consider ratifying the OP-CEDAW", - "values": [ - "International instruments", - "Women's rights" - ] - }, - { - "text": "Take measures to foster a safe, respectful, enabling environment for civil society, including through adopting laws and policies that support the rights to peaceful assembly, association, expression and information, and through promptly investigating and prosecuting attacks on journalists and members of civil society organizations ", - "values": [ - "Civil society", - "Freedom of association and peaceful assembly", - "Freedom of opinion and expression", - "Freedom of the press" - ] - }, - { - "text": "Introduce reforms to protect economic, social and cultural rights including the right to development and eradicate poverty, tackle unemployment and social inequalities", - "values": [ - "Development", - "ESC rights - general", - "Poverty" - ] - }, - { - "text": "Enhance efforts in a way which guarantees combatting corruption as the government amended its financial and administrative bureau and expand its mandate in accordance with the sultanate decree 27 of 2011", - "values": [ - "Corruption" - ] - }, - { - "text": "Keep on reflecting on whether to further revise the legal framework regarding the stun guns, with a view of limiting their use to situations involving an imminent threat of death or serious injury ", - "values": [ - "Justice", - "Public security" - ] - }, - { - "text": "Incorporate the Convention against Torture into the national legislation", - "values": [ - "International instruments", - "Torture and other CID treatment" - ] - }, - { - "text": "Take appropriate measures to end illegal child labour, not least concerning indigenous children", - "values": [ - "Indigenous peoples", - "Labour", - "Rights of the Child" - ] - }, - { - "text": "Consider modifying or repealing the criminal legislation on defamation to take away the possibility of depriving anyone of his or her liberty on account of opinions", - "values": [ - "Freedom of opinion and expression" - ] - }, - { - "text": "Ratify International Labour Organization (ILO) fundamental conventions.", - "values": [ - "International instruments", - "Labour" - ] - }, - { - "text": "Continue efforts aimed at submitting overdue national human rights reports, and respond positively to requests made by special procedures mandate holders ", - "values": [ - "Special procedures", - "Treaty bodies" - ] - }, - { - "text": "Amend the Penal Code to prohibit the practice of female genital mutilation ", - "values": [ - "Rights of the Child", - "Torture and other CID treatment", - "Women's rights" - ] - }, - { - "text": "Consider ratifying the Optional Protocol to the Convention on the Elimination of All Forms of Discrimination against Women.", - "values": [ - "International instruments", - "Women's rights" - ] - }, - { - "text": "Further strengthen cooperation with human rights mechanisms, improve compliance with treaty body reporting mechanisms and consider accession to the First Optional Protocol to ICCPR ", - "values": [ - "CP rights - general", - "International instruments", - "Special procedures", - "Treaty bodies", - "UPR process" - ] - }, - { - "text": "Protect the right to freedom of expression for journalists ", - "values": [ - "Freedom of opinion and expression", - "Freedom of the press" - ] - }, - { - "text": "Take concrete measures to reduce multi-dimensional poverty ", - "values": [ - "Poverty" - ] - }, - { - "text": "Continue with the work of the Ombudsman in monitoring the rights and guarantees established in the Constitution and international human rights treaties ", - "values": [ - "National Human Rights Institution" - ] - }, - { - "text": "Improve the situation of women and children by implementing Security Council resolution 1325 (2000) on women, peace and security and adopting a relevant national action plan", - "values": [ - "Rights of the Child", - "Women's rights" - ] - }, - { - "text": "Participate actively in the international programmes of technical assistance and capacity-building in the field of human rights ", - "values": [ - "Technical assistance and cooperation" - ] - }, - { - "text": "Fully respect the right to freedom of religion, promotion of tolerance and inter-religious dialogue", - "values": [ - "Freedom of religion and belief" - ] - }, - { - "text": "Adopt measures to protect minorities not explicitly defined in the Constitution, and to adopt additional measures to promote, develop and preserve their ethnic and national identities", - "values": [ - "Minorities" - ] - }, - { - "text": "Adopt specific legislation criminalizing torture", - "values": [ - "Torture and other CID treatment" - ] - }, - { - "text": "Consider ratifying ILO Convention No. 117 on Social Policy ", - "values": [ - "International instruments", - "Labour" - ] - }, - { - "text": "Continue measures to prevent, investigate and prosecute domestic violence offences and strengthen victim care", - "values": [ - "Rights of the Child", - "Women's rights" - ] - }, - { - "text": "Adopt further measures to ensure gender equality in the society, including through implementing and updating, when necessary, the National Strategy to Combat Gender-based Violence", - "values": [ - "Women's rights" - ] - }, - { - "text": "Fully implement the National Policy for Persons with Disabilities ", - "values": [ - "Disabilities" - ] - }, - { - "text": "Establish a formal moratorium on the death penalty with a view to ratifying the Second Optional Protocol to the International Covenant on Civil and Political Rights", - "values": [ - "Death penalty", - "International instruments" - ] - }, - { - "text": "Continue its efforts to improve the public health and education systems, as a mean to reduce poverty and to advance in the economic and social development of the country", - "values": [ - "Development", - "ESC rights - general", - "Poverty", - "Right to education", - "Right to health" - ] - }, - { - "text": "Consider the possibility of adopting measures aimed at abolishing the death penalty ", - "values": [ - "Death penalty" - ] - }, - { - "text": "Intensify its efforts to make effective the work to establish a national human rights commission in compliance with the Paris Principles", - "values": [ - "National Human Rights Institution" - ] - }, - { - "text": "Continue to criminalize and ultimately eradicate sexual and gender- based violence such as female genital mutilation and harmful traditional practices, including trials by ordeal", - "values": [ - "Rights of the Child", - "Torture and other CID treatment", - "Women's rights" - ] - }, - { - "text": "Urgently address the problem of the acceptance by the courts of evidence obtained as a result of ill-treatment in detention ", - "values": [ - "Justice", - "Torture and other CID treatment" - ] - }, - { - "text": "Continue strengthening the measures taken to ensure women\u2019s rights and achieve gender equality", - "values": [ - "Women's rights" - ] - }, - { - "text": "Enact a new law governing access to public information in line with international standards", - "values": [ - "Freedom of opinion and expression" - ] - }, - { - "text": "Ensure adequate resources for poverty alleviation programmes, in line with the commitments to pursue an inclusive growth", - "values": [ - "Poverty" - ] - }, - { - "text": "Continue its efforts regarding the implementation of the national plan to combat human trafficking", - "values": [ - "Trafficking" - ] - }, - { - "text": "Further mainstream the rights of the vulnerable populations into its formulation of the Eighth National Socioeconomic Development Plan for 2016-2020. Enhancing economic and social opportunities for women, children, persons with disabilities, and older persons should be clearly mentioned in the next National Plan in order to ensure full implementation at all levels and in all sectors of society", - "values": [ - "Development", - "Disabilities", - "ESC rights - general", - "Rights of the Child", - "Women's rights" - ] - }, - { - "text": "The effective implementation of the repressive action provided for in the National Action Plan against Racism and Anti Semitism (2012-2014), considering the rise of this phenomenon from another age", - "values": [ - "Racial discrimination" - ] - }, - { - "text": "Ensure that women and women's rights advocates participate in every stage of negotiations concerning a political settlement to the conflict and that the rights of women and girls are respected in any eventual settlement ", - "values": [ - "Rights of the Child", - "Women's rights" - ] - }, - { - "text": "Carry on its efforts in environmental and health policies, and continue to enforce its legislative measures on food security ", - "values": [ - "Right to food", - "Right to health" - ] - }, - { - "text": "Continue with its efforts to tackle corruption and to expedite the establishment of a High Court to deal with serous corruption cases", - "values": [ - "Corruption" - ] - }, - { - "text": "Consider the possibility to establish a de jure moratorium with a view to abolishing the death penalty", - "values": [ - "Death penalty" - ] - }, - { - "text": "Repeal all legal provisions criminalizing sexual activities between people of the same sex", - "values": [ - "Sexual Orientation and Gender Identity" - ] - }, - { - "text": "Adopt the necessary reforms to improve the capacities and effectiveness of the national judiciary system ", - "values": [ - "Justice" - ] - }, - { - "text": "Step up efforts to ensure that primary education is compulsory as well as free of charge, and improve the capacity of all educational institutions, importantly through the increase of budget allocations towards education", - "values": [ - "Right to education" - ] - }, - { - "text": "Continue its efforts to combat trafficking in persons and consider the possibility to accede to the Optional Protocol to the CRC relating to sale of children, child prostitution and child pornography and to the United Nations Protocol to Prevent, Suppress and Punish trafficking in persons, especially women and children", - "values": [ - "International instruments", - "Rights of the Child", - "Trafficking", - "Women's rights" - ] - }, - { - "text": "Put in place effective institutional support for the victims of domestic violence.", - "values": [ - "Rights of the Child", - "Women's rights" - ] - }, - { - "text": "Continue efforts to eradicate poverty and ensure the reduction of inequalities in the distribution of wealth and access to economic and social well-being by all people", - "values": [ - "Poverty" - ] - }, - { - "text": "Work towards early establishment of a national human rights institution", - "values": [ - "National Human Rights Institution" - ] - }, - { - "text": "Ensure that articles on human rights in the new Constitution fully comply with international standards on promotion and protection of human rights", - "values": [ - "International instruments" - ] - }, - { - "text": "Adopt measures, including appropriate legislation, to eliminate all forms of violence against women", - "values": [ - "Women's rights" - ] - }, - { - "text": "Strengthen the measures aimed at prohibiting discrimination based on sexual orientation ", - "values": [ - "Sexual Orientation and Gender Identity" - ] - }, - { - "text": "Advance in the ratification of the Optional Protocol to the Convention against Torture ", - "values": [ - "Detention", - "International instruments", - "Torture and other CID treatment" - ] - }, - { - "text": "Implement more measures to prevent violence against women, such as the training workshops conducted by the Office for the Defence of Indigenous Women\u2019s Rights on the protection of indigenous women", - "values": [ - "Human rights education and training", - "Indigenous peoples", - "Women's rights" - ] - }, - { - "text": "Take measures to enhance the efficiency of the judicial system and reduce overcrowding in prisons", - "values": [ - "Detention", - "Justice" - ] - }, - { - "text": "Establish a human rights unit within the Ministry of Justice.", - "values": [ - "Justice" - ] - }, - { - "text": "Ensure revisions to the Electoral Code that meet internationally recognized democratic standards and hold the parliamentary elections that have been postponed since 2006 as soon as possible in a manner that guarantees the political rights of its citizens.", - "values": [ - "Elections" - ] - }, - { - "text": "Address prison overcrowding by reviewing the use of pre-trial detention ", - "values": [ - "Detention" - ] - }, - { - "text": "Take the appropriate measures to reinstate the legitimate authority, as this is crucial for the strengthening of the country's ability to guarantee human rights", - "values": [ - "Justice" - ] - }, - { - "text": "Sign the Second Optional Protocol to ICCPR (ICCPR-OP2)", - "values": [ - "Death penalty", - "International instruments" - ] - }, - { - "text": "Take steps to ensure that the principle of speedy trials be duly taken into account in the context of the ongoing human rights trials.", - "values": [ - "Justice" - ] - }, - { - "text": "Continue in particular the process of constitutional reform in order to better recognize the rights of indigenous peoples ", - "values": [ - "Indigenous peoples" - ] - }, - { - "text": "The Government of Maldives is committed to improving the domestic legislative framework to safeguard the rights of vulnerable groups in the society. Ensuring the protection of the rights of the children is a key priority of the Maldives, and the new Child Rights Bill in the legislative agenda of the Government, would comply with the Maldives international obligations under CRC. However, ratification of the additional protocols burdens the work of the State. The Government however, reiterates its commitment to promoting the rights of children, and would focus on establishing such procedures.", - "values": [ - "Rights of the Child" - ] - }, - { - "text": "Ratify the International Convention for the Protection of All Persons from Enforced Disappearances ", - "values": [ - "Enforced disappearances", - "International instruments" - ] - }, - { - "text": "Bring the laws regulating the use of force by law enforcement officers in line with international standards, particularly taking into account components of proportionality and necessity, to create an independent oversight mechanism with respect to complaints against criminal conduct by the police", - "values": [ - "Human rights violations by state agents" - ] - }, - { - "text": "Foster the further development of education for girls and the achievement of gender equality", - "values": [ - "Right to education", - "Rights of the Child", - "Women's rights" - ] - }, - { - "text": "Consider issuing a standing invitation ", - "values": [ - "Special procedures" - ] - }, - { - "text": "Consider issuing a standing invitation to special procedures", - "values": [ - "Special procedures" - ] - }, - { - "text": "Strengthen its cooperation with human rights special procedures and consider issuing a standing invitation", - "values": [ - "Special procedures" - ] - }, - { - "text": "Protect and support the family as the natural and fundamental group unit of society and in doing so maintain the definition of marriage as the right of men and women of marriageable age to marry and to found a family, in keeping with article 23 of the International Covenant on Civil and Political Rights", - "values": [ - "Other" - ] - }, - { - "text": "Extend an open and standing invitation to United Nations human rights special procedures mandate holders ", - "values": [ - "Special procedures" - ] - }, - { - "text": "Continue positive efforts to improve economic, social and cultural rights.", - "values": [ - "ESC rights - general" - ] - }, - { - "text": "Encourage Liberia to strengthen its policies to combat against child trafficking", - "values": [ - "Rights of the Child", - "Trafficking" - ] - }, - { - "text": "Convene the Court of Appeal in the interest of addressing the pending appeal to the High Court ruling of 2005 on the case of Teonea v. Kaupule.", - "values": [ - "Freedom of religion and belief" - ] - }, - { - "text": "Improve prison conditions and hold accountable all those who are responsible for torture and discrimination in penitentiary facilities", - "values": [ - "Detention", - "Torture and other CID treatment" - ] - }, - { - "text": "Take measures to ensure the effective implementation of programmes to protect children's rights at the local level, particularly as regards violence, commercial sexual exploitation and child labour ", - "values": [ - "Labour", - "Rights of the Child" - ] - }, - { - "text": "Continue its effort to achieve Millennium Development Goals with a view to improving the situation, particularly in economic and social terms", - "values": [ - "Development" - ] - }, - { - "text": "Consider amending the Penal Code in order to formulate a definition of torture in conformity with article 1 of the Convention against Torture (CAT) ", - "values": [ - "International instruments", - "Torture and other CID treatment" - ] - }, - { - "text": "Conclude without delay the process of revising the Equality Act", - "values": [ - "Women's rights" - ] - }, - { - "text": "Continue its commitment to the programme of land reform.", - "values": [ - "Right to land" - ] - }, - { - "text": "Recognize the United Buddhist Church of Vietnam and allow it to function independently of the Vietnamese Buddhist Sangha as well as allow multiple branches of the Hao Hao and Cao Dai faiths.", - "values": [ - "Freedom of religion and belief" - ] - }, - { - "text": "Establish strict accountability of members of the police and military, prison and detention personnel and the judiciary for any violations of human rights, in particular for torture", - "values": [ - "Human rights violations by state agents", - "Torture and other CID treatment" - ] - }, - { - "text": "Use international technical and financial assistance to try to strengthen the institutional framework for the protection of human rights", - "values": [ - "Technical assistance and cooperation" - ] - }, - { - "text": "Continue strengthening and enhancing women rights through the enactment of relevant necessary laws while providing the necessary administrative and institutional mechanisms", - "values": [ - "Women's rights" - ] - }, - { - "text": "Take vigorous measures to effectively improve living conditions in prisons in order to meet international standards", - "values": [ - "Detention" - ] - }, - { - "text": "Continue efforts towards the abolition of the death penalty", - "values": [ - "Death penalty" - ] - }, - { - "text": "Pursue further policies aimed at improving women's participation in all spheres of public life, including political and professional life ", - "values": [ - "Women's rights" - ] - }, - { - "text": "Keep its efforts for the proper implementation of social security programs", - "values": [ - "ESC rights - general" - ] - }, - { - "text": "Continue to strengthen policies that have led to a decrease of the illiteracy rates", - "values": [ - "Right to education" - ] - }, - { - "text": "Provide enough financial and personnel resources to enable the Attorney General's office, as well as law enforcement authorities, to fight corruption in the country", - "values": [ - "Corruption" - ] - }, - { - "text": "Strengthen measures aiming to make effective the rights of the Child from an integral perspective and based on the Convention on the Rights of the Child, particularly on issue of corporal punishment", - "values": [ - "International instruments", - "Rights of the Child", - "Torture and other CID treatment" - ] - }, - { - "text": "Collaborate in a constructive manner with the International Criminal Court and the Office of the United Nations High Commissioner for Human Rights, which will soon be established in the country ", - "values": [ - "Technical assistance and cooperation" - ] - }, - { - "text": "Implement the provisions of the Optional Protocol to the Convention against Torture", - "values": [ - "Detention", - "International instruments", - "Torture and other CID treatment" - ] - }, - { - "text": "Take further appropriate actions to promote effective implementation of the existing legal framework", - "values": [ - "General" - ] - }, - { - "text": "Intensify efforts to combat all forms of discrimination to make effective the equality of opportunities and treatment among all inhabitants in its territory, with particular care and attention to women and children who are in the situation of more vulnerability, such as those who belong to the Roma people ", - "values": [ - "Minorities", - "Rights of the Child", - "Women's rights" - ] - }, - { - "text": "Pursue efforts to implement the third strategic framework to combat poverty and the national food security strategy", - "values": [ - "Poverty", - "Right to food" - ] - }, - { - "text": "Take further legislative and practical measures to end violence against women, including the phenomenon of bride kidnapping as well as early and forced marriage", - "values": [ - "Rights of the Child", - "Women's rights" - ] - }, - { - "text": "Submit the initial report to the UN Committee against Torture - CAT -, overdue since 2001", - "values": [ - "Torture and other CID treatment", - "Treaty bodies" - ] - }, - { - "text": "Intensify efforts made to achieve further progress in enhancing economic, social and cultural rights, especially the rights of women, children, and disabled ", - "values": [ - "Disabilities", - "ESC rights - general", - "Rights of the Child", - "Women's rights" - ] - }, - { - "text": "Renew its action plan against the sexual exploitation of children for commercial purposes ", - "values": [ - "Labour", - "Rights of the Child" - ] - }, - { - "text": "Reverse the approval of the Prime Minister's Decree on International Non-Governmental Organizations and implement the mechanisms necessary to accelerate the process of legalizing NGOs", - "values": [ - "Civil society", - "Freedom of association and peaceful assembly" - ] - }, - { - "text": "Step up efforts to reduce the infant mortality rate", - "values": [ - "Right to health", - "Rights of the Child" - ] - }, - { - "text": "Take concrete steps to enhance the broad and full participation of civil society in all political and societal life, by ensuring transparent distribution of NGO funding and by safeguarding that the freedoms of expression and association can, in line with the International Covenant on Civil and Political Rights, be exercised in practice, including by taking further steps to ensure prompt investigations of physical attacks and/or threats against civil society actors", - "values": [ - "Civil society", - "Freedom of association and peaceful assembly", - "Freedom of opinion and expression" - ] - }, - { - "text": "Make increased efforts to introduce and effectively carry out new measures to deal with human trafficking of women and children", - "values": [ - "Rights of the Child", - "Trafficking", - "Women's rights" - ] - }, - { - "text": "Conduct an independent, impartial, thorough and effective investigation into cooperation with the American authorities regarding illegal renditions and secret prisons in the context of the fight against terrorism", - "values": [ - "Counter-terrorism", - "Detention" - ] - }, - { - "text": "Continue to combat violence against women and ensure gender equality", - "values": [ - "Women's rights" - ] - }, - { - "text": "Amend the Act No. 107/2013 on the Right to Public Meetings and Peaceful Assemblies", - "values": [ - "Freedom of association and peaceful assembly" - ] - }, - { - "text": "Ensure the elimination of human rights abuses against prisoners and detainees, and to bring to justice those responsible for committing these offences and ensure redress for victims", - "values": [ - "Detention", - "Human rights violations by state agents" - ] - }, - { - "text": "Grant the national preventive mechanism the legal authority and the practical means, including financial, to access all places where the mechanism suspects that persons are deprived or may be deprived of liberty, in accordance with article 4 of the Optional Protocol to the Convention against Torture and Other Cruel, Inhuman or Degrading Treatment or Punishment", - "values": [ - "Detention", - "International instruments", - "Torture and other CID treatment" - ] - }, - { - "text": "Share its experience and good practice in guaranteeing the right to education for all Cubans and in the promotion and protection of the right to health, which has yielded encouraging and positive results, particularly taken into account their under-development status, and to continue cooperation programmes that provide health professionals and technicians to developing countries, and education opportunities in Cuba for students from the developing world", - "values": [ - "Right to education", - "Right to health" - ] - }, - { - "text": "Develop specific awareness raising campaigns to promote tolerance and eliminate discrimination based on sex and gender", - "values": [ - "Human rights education and training", - "Women's rights" - ] - }, - { - "text": "Ensure full and unrestricted access to holy sites for all members of the clergy and worship without discrimination", - "values": [ - "Freedom of religion and belief", - "Racial discrimination" - ] - }, - { - "text": "Continue making progress in the implementation of the National Action Plan for gender equality in the labour market ", - "values": [ - "Women's rights" - ] - }, - { - "text": "Take all procedures to prevent all forms of violence against children and women", - "values": [ - "Rights of the Child", - "Women's rights" - ] - }, - { - "text": "Revoke reservations concerning articles 2 and 16 of CEDAW, and ensure that all women in Iraq are protected from discrimination", - "values": [ - "International instruments", - "Women's rights" - ] - }, - { - "text": "Increase human and financial resources of the Provedoria for Human Rights and Justice to improve the protection of human rights ", - "values": [ - "National Human Rights Institution" - ] - }, - { - "text": "Introduce and publish a national action plan to improve conditions and address over-crowding in prisons, including an increased focus on rehabilitation ", - "values": [ - "Detention" - ] - }, - { - "text": "Continue its efforts in promoting and protecting the rights of the child, including finalizing and implementing the new draft of a national plan to eliminate the worst forms of child labour for the period 2013-2018 ", - "values": [ - "Labour", - "Rights of the Child" - ] - }, - { - "text": "Consolidate its ongoing programmes to promote women\u2019s empowerment and gender equality", - "values": [ - "Women's rights" - ] - }, - { - "text": "Step up efforts to address the problem of high school dropout rates particularly in the secondary schools and continue to invest in education.", - "values": [ - "Right to education" - ] - }, - { - "text": "Continue its steps to consolidate the principles of human rights and public freedoms", - "values": [ - "General" - ] - }, - { - "text": "Ensure the participation of indigenous peoples in the political sphere and continue with the process of transferring land duly demarcated and titled ", - "values": [ - "Indigenous peoples" - ] - }, - { - "text": "Take all necessary steps towards the full implementation of the national system of integral protection of children and adolescents, including through appropriate funding, as provided for in the national policy for the promotion of the integral protection of children and adolescents", - "values": [ - "Rights of the Child" - ] - }, - { - "text": "Seek to enhance overall quality of education and health services offered, in addition to greater enrolment in and access to schools and hospitals ", - "values": [ - "Right to education", - "Right to health" - ] - }, - { - "text": "Implement and adequately fund the National Plan for the Prevention of Domestic Violence and Violence against Women", - "values": [ - "Rights of the Child", - "Women's rights" - ] - }, - { - "text": "Strengthen measures aimed at protecting vulnerable persons", - "values": [ - "Other" - ] - }, - { - "text": "Continue its efforts to enhance the rule of law and ensure peace and safety in its society ", - "values": [ - "Justice", - "Public security" - ] - }, - { - "text": "Strengthen efforts to combat violence against women ", - "values": [ - "Women's rights" - ] - }, - { - "text": "Move forward with a policy of free of charge education", - "values": [ - "Right to education" - ] - }, - { - "text": "Strengthen the text and enforcement of legislation that protects internationally recognized labour rights for all workers, particularly those rights relating to forced labour and freedom of association ", - "values": [ - "Freedom of association and peaceful assembly", - "Labour" - ] - }, - { - "text": "Ratify and effectively implement the Optional Protocol to the Convention on the Rights of the Child on a communications procedure", - "values": [ - "International instruments", - "Rights of the Child" - ] - }, - { - "text": "Increase efforts to end discrimination against women and provide adequate access to health-care services for all women ", - "values": [ - "Right to health", - "Women's rights" - ] - }, - { - "text": "Further promote economic and social development and urge the international community to honour its commitment of assistance, making more investment in the field of welfare and assisting the sustainable development for Afghanistan ", - "values": [ - "Development" - ] - }, - { - "text": "Continue to take positive efforts and measures to maintain access to education for all", - "values": [ - "Right to education" - ] - }, - { - "text": "Accede to the Agreement on Privileges and Immunities of the ICC ", - "values": [ - "International instruments", - "Justice" - ] - }, - { - "text": "Step up its cooperation with the special procedures of the Human Rights Council by responding positively to the pending visit requests of special procedures mandate holders and eventually consider extending a standing invitation to all the special procedures mandate holders of the Human Rights Council", - "values": [ - "Special procedures" - ] - }, - { - "text": "Introduce legislation to make marital rape illegal in all circumstances", - "values": [ - "Women's rights" - ] - }, - { - "text": "Take appropriate measures to institute a National Human Rights Commission with a clear and independent mandate that is in line with the Paris Principles", - "values": [ - "National Human Rights Institution" - ] - }, - { - "text": "Adopt and implement specific legislation on the collection, use and accumulation of metadata and individual profiles, including in security and anti-terrorist activities, guaranteeing the right to privacy, transparency and accountability and the right to decide on the use, correction and deletion of personal data", - "values": [ - "Privacy" - ] - }, - { - "text": "Consider the completion of the ratification process of CRPD in a speedy manner.", - "values": [ - "Disabilities", - "International instruments" - ] - }, - { - "text": "Extend a Standing Invitation to Special Procedures mandate-holders as a way of informing and supporting human rights reforms ", - "values": [ - "Special procedures" - ] - }, - { - "text": "Consider reinforcing the legal framework for the prevention of violence against women ", - "values": [ - "Women's rights" - ] - }, - { - "text": "Increase its cooperation with UNHCR, provide unrestricted access for international humanitarian aid.", - "values": [ - "Asylum-seekers - refugees", - "International humanitarian law" - ] - }, - { - "text": "Urgently take measures necessary to ensure that the United Nations Convention on the Rights of the Child is fully implemented and incorporated into the legal and administrative system of Ireland", - "values": [ - "International instruments", - "Rights of the Child" - ] - }, - { - "text": "Continue the policies that made the progress in terms of special protection of children incorporated in the Code of Children and Adolescents ", - "values": [ - "Rights of the Child" - ] - }, - { - "text": "Although there are no cases of torture in the Kingdom, Bahrain's steadfast desire to enhance the professionalism of law enforcement personnel has prompted it to ask the Office of the United Nations High Commissioner for Human Rights for assistance in developing and improving human rights curricula and training courses.", - "values": [ - "Human rights education and training", - "Technical assistance and cooperation", - "Torture and other CID treatment" - ] - }, - { - "text": "Fully implement international Conventions and standards for the protection of refugees and asylum seekers", - "values": [ - "Asylum-seekers - refugees", - "International instruments" - ] - }, - { - "text": "Implement effectively the law against torture, in particular in sentences for cruel, inhuman or degrading treatment inflicted to drug traffickers", - "values": [ - "Torture and other CID treatment" - ] - }, - { - "text": "Carry out thorough investigations into violations of human rights in the territories of Abkhazia and South Ossetia committed by the Georgian authorities before and during the 2008 conflict", - "values": [ - "Human rights violations by state agents" - ] - }, - { - "text": "Consider ratifying the Optional Protocol to the CRPD", - "values": [ - "Disabilities", - "International instruments" - ] - }, - { - "text": "Commute without delay all death sentences to terms of imprisonment and ratify the Second Optional Protocol to ICCPR ", - "values": [ - "Death penalty", - "International instruments" - ] - }, - { - "text": "Accelerate the study of draft laws aimed at combating racial discrimination, particularly with regard to migrants, and reinforce the protection of foreign workers", - "values": [ - "Labour", - "Migrants", - "Racial discrimination" - ] - }, - { - "text": "Strengthen its legal arsenal through accession to international conventions in the field of the promotion and protection of human rights to which it is not yet a party, especially the International Covenant on Civil and Political Rights and the International Covenant on Economic, Social and Cultural Rights", - "values": [ - "CP rights - general", - "ESC rights - general", - "International instruments" - ] - }, - { - "text": "Continue to strengthen the combat against racial discrimination and intolerance in all manifestations and protect the legitimate rights of the migrants and minority groups", - "values": [ - "Migrants", - "Minorities", - "Racial discrimination" - ] - }, - { - "text": "Consider replacing the National Observatory for Human Rights with a permanent and independent human rights institution, in accordance to the Paris Principles ", - "values": [ - "National Human Rights Institution" - ] - }, - { - "text": "That any draft law that infringes fundamental human rights and violates commitments of Ukraine to international human rights law like the European Convention on Human Rights and the ICCPR be recalled", - "values": [ - "International instruments" - ] - }, - { - "text": "Continue to deepen efforts in the human rights field, in particular economic, social and cultural rights, so as to improve the living conditions of its people, in particular of the most vulnerable sectors", - "values": [ - "Poverty" - ] - }, - { - "text": "Pursue efforts at eliminating all forms of discrimination against women", - "values": [ - "Women's rights" - ] - }, - { - "text": "Work with OHCHR to prepare a common core document as a way to streamline and reduce the burden of treaty-reporting ", - "values": [ - "Technical assistance and cooperation", - "Treaty bodies" - ] - }, - { - "text": "Provide without delay unhindered, safe and sustained access and full cooperation to independent human rights actors, including OHCHR, the Commission of Inquiry and special procedure mandate holders", - "values": [ - "Special procedures", - "Technical assistance and cooperation" - ] - }, - { - "text": "Provide the Ombudsman for Human Rights and Justice with sufficient financial independence in order to guarantee its conformity with the Paris Principles", - "values": [ - "National Human Rights Institution" - ] - }, - { - "text": "Continue to provide free health services, fully implementing the consolidated National Health Policy, which was launched in July 2011", - "values": [ - "Right to health" - ] - }, - { - "text": "Adopt legal measures to eliminate all forms of discrimination against women and girls, including legislation concerning the right of ownership, sharing and inheritance of land for women", - "values": [ - "Right to land", - "Rights of the Child", - "Women's rights" - ] - }, - { - "text": "Pursue its efforts to ratify the Optional Protocol to the Convention against Torture", - "values": [ - "Detention", - "International instruments", - "Torture and other CID treatment" - ] - }, - { - "text": "Put in place more concrete measures to combat violence against women and children", - "values": [ - "Rights of the Child", - "Women's rights" - ] - }, - { - "text": "Ensure the effective implementation of free primary education throughout the country ", - "values": [ - "Right to education" - ] - }, - { - "text": "Immediately end all acts of torture and stop the arrest of human rights defenders, journalists and political dissidents", - "values": [ - "Freedom of association and peaceful assembly", - "Freedom of the press", - "Human rights defenders", - "Torture and other CID treatment" - ] - }, - { - "text": "Take steps to improve the treatment of women prisoners by, inter alia, circulating the United Nations rules for the Treatment of Women Prisoners and Non-custodial Measures for Women Offenders (the Bangkok Rules) and to seek assistance from the Office of the United Nations High Commissioner for Human Rights and the United Nations Office on Drugs and Crime in implementing them ", - "values": [ - "Detention", - "Technical assistance and cooperation", - "Women's rights" - ] - }, - { - "text": "Ratify the Council of Europe Convention on preventing and combating violence against women and domestic violence ", - "values": [ - "Rights of the Child", - "Women's rights" - ] - }, - { - "text": "Intensify measures to prevent and combat mistreatment and sexual abuse against boys and girls in accordance with recommendations by the Committee on the Rights of the Child", - "values": [ - "Rights of the Child", - "Treaty bodies" - ] - }, - { - "text": "Thoroughly investigate cases of alleged discrimination against members of the Jewish and Muslim communities, including people of African descent, and bring the perpetrators of such crimes to justice", - "values": [ - "Freedom of religion and belief", - "Justice", - "Minorities", - "Racial discrimination" - ] - }, - { - "text": "Provide independent investigation into and prosecution of all human rights abuses, and to ensure that all those in detention have the right to habeas corpus and due process", - "values": [ - "Detention" - ] - }, - { - "text": "Improve the domestic legislation regarding working conditions, especially for women and young people", - "values": [ - "Labour", - "Women's rights" - ] - }, - { - "text": "Ratify the 1951 refugee convention and its 1967 protocol, the 1954 and 1961 conventions on statelessness and OP-CAT ", - "values": [ - "Asylum-seekers - refugees", - "Detention", - "International instruments", - "Statelessness and the right to nationality", - "Torture and other CID treatment" - ] - }, - { - "text": "Follow up on the recommendations made by the Committee on the Elimination of Discrimination against Women to put in place a comprehensive policy with the aim of overcoming traditional stereotypes regarding the roles of women and men in society and the family.", - "values": [ - "Treaty bodies", - "Women's rights" - ] - }, - { - "text": "Comply with the principles contained in the Declaration on the rights of indigenous people", - "values": [ - "Indigenous peoples", - "International instruments" - ] - }, - { - "text": "Adopt plans for the promotion and protection of the rights of vulnerable groups, particularly women and children ", - "values": [ - "Rights of the Child", - "Women's rights" - ] - }, - { - "text": "Prioritise the review and implementation of the Prevention Against Torture Bill, ensuring that it complies with the Convention against Torture and Other Cruel, Inhuman or Degrading Treatment of Punishment ", - "values": [ - "International instruments", - "Torture and other CID treatment" - ] - }, - { - "text": "Ratify the Optional Protocol to the Convention on the Rights of the Child on a communications procedure", - "values": [ - "Rights of the Child" - ] - }, - { - "text": "Consider taking additional steps to address discrimination against disabled adult women and Aboriginal women.", - "values": [ - "Disabilities", - "Indigenous peoples", - "Women's rights" - ] - }, - { - "text": "Accede to the Rome Statute of the International Criminal Court (ICC)", - "values": [ - "International instruments", - "Justice" - ] - }, - { - "text": "Establish a moratorium on the application of the death penalty with a view to its abolition ", - "values": [ - "Death penalty" - ] - }, - { - "text": "Pursue the reforms engaged for the protection of children and gender equality ", - "values": [ - "Rights of the Child", - "Women's rights" - ] - }, - { - "text": "Develop legislation and appropriate sentences for juvenile offenders ", - "values": [ - "Justice", - "Rights of the Child" - ] - }, - { - "text": "Continue working towards the ratification of major international human rights instruments, such as CRPD ", - "values": [ - "Disabilities", - "International instruments" - ] - }, - { - "text": "Ratify ICESCR, CERD, CRPD and the International Convention for the Protection of All Persons from Enforced Disappearance (CED), with their respective optional protocols", - "values": [ - "Disabilities", - "ESC rights - general", - "Enforced disappearances", - "International instruments", - "Racial discrimination" - ] - }, - { - "text": "Consider the possibility of establishing a national human rights institution in accordance with the Paris Principles ", - "values": [ - "National Human Rights Institution" - ] - }, - { - "text": "Issue a standing invitation to all UN special procedures", - "values": [ - "Special procedures" - ] - }, - { - "text": "Accelerate reform of the administrative justice system so that all persons have access to legal procedures of appeal", - "values": [ - "Justice" - ] - }, - { - "text": "Continue with the efforts in the realization of the national plan to bring the penal system in conformity with the international standards", - "values": [ - "Detention" - ] - }, - { - "text": "Play an effective role to operationalize the right to development at the international level ", - "values": [ - "Development" - ] - }, - { - "text": "Continue to seek assistance from the international community, with the support of the UN Country Team and particularly the OHCHR, in strengthening its human rights policies, including ratification of the remaining key human rights conventions and implementation of the UPR recommendations that Tajikistan will accept", - "values": [ - "International instruments", - "Technical assistance and cooperation", - "UPR process" - ] - }, - { - "text": "Improve the institutional capacity of the national machinery for the advancement of women, for their active involvement in public life.", - "values": [ - "Women's rights" - ] - }, - { - "text": "Adopt measures to reduce violence against women and girls and violence based on sexual orientation and gender identity", - "values": [ - "Rights of the Child", - "Sexual Orientation and Gender Identity", - "Women's rights" - ] - }, - { - "text": "Allow international independent organizations to visit Cuba", - "values": [ - "Civil society" - ] - }, - { - "text": "Uphold freedoms essential for a stable democracy, including freedoms of speech and assembly", - "values": [ - "Freedom of association and peaceful assembly", - "Freedom of opinion and expression" - ] - }, - { - "text": "Ratify the International Convention for Protection of All Persons from Enforced Disappearance and the Optional Protocol to the Convention against Torture and Other Cruel, Inhuman or Degrading Treatment or Punishment ", - "values": [ - "Detention", - "Enforced disappearances", - "International instruments", - "Torture and other CID treatment" - ] - }, - { - "text": "Continue its efforts to empower women through its work with UNDP which will enable women to become financially independent and improve their managerial skills and productivity", - "values": [ - "Women's rights" - ] - }, - { - "text": "Provide systematic training to judges, prosecutors and lawyers on the application of legislation prohibiting discrimination and violence against women", - "values": [ - "Human rights education and training", - "Women's rights" - ] - }, - { - "text": "Conduct, jointly with Special Procedures of the Human Rights Council, comprehensive and transparent investigations regarding information/reports on participation of the Romanian authorities in CIA secret programs of arbitrary detention and secret transfers of suspects", - "values": [ - "Counter-terrorism", - "Detention", - "Special procedures" - ] - }, - { - "text": "Continue to strengthen educational policies in order to ensure the necessary conditions for full access to education", - "values": [ - "Right to education" - ] - }, - { - "text": "Review the customary practices which are extensive and contrary to the efforts made to improve the situation of women, particularly the tradition of pre-engagement with minor girls", - "values": [ - "Rights of the Child", - "Women's rights" - ] - }, - { - "text": "Take measures to strengthen and guarantee the effective implementation of legal measures against domestic violence, sexual abuse and the exploitation of women and children", - "values": [ - "Rights of the Child", - "Women's rights" - ] - }, - { - "text": "Consider ratifying the International Covenant on Economic, Social and Cultural Rights and the International Covenant on Civil and Political Rights and its Optional Protocols", - "values": [ - "CP rights - general", - "Death penalty", - "ESC rights - general", - "International instruments" - ] - }, - { - "text": "Become a party to CAT ", - "values": [ - "International instruments", - "Torture and other CID treatment" - ] - }, - { - "text": "Take concrete measures to address, once and for all, the Japanese Military Sexual Slavery and other violations committed in the past in other countries including Korea.", - "values": [ - "Women's rights" - ] - }, - { - "text": "Address discrimination, racial profiling by the authorities, Islamophobia and religious intolerance by reviewing all laws and practices that violate the rights of minority groups, with a view to amending them", - "values": [ - "Freedom of religion and belief", - "Minorities", - "Racial discrimination" - ] - }, - { - "text": "Effectively address the problem of domestic violence, especially against women, including by approving the Domestic Violence Bill currently under discussion in Parliament", - "values": [ - "Women's rights" - ] - }, - { - "text": "Continue its efforts to further enhance the role of the Parliament Commissioner for Human Rights and of the national machinery for the advancement of women.", - "values": [ - "National Human Rights Institution", - "Women's rights" - ] - }, - { - "text": "Ratify all the core international human rights treaties to which the country is not yet a party, including the International Covenant on Civil and Political Rights, the International Covenant on Economic, Social and Cultural Rights, the International Convention on the Elimination of All Forms of Racial Discrimination, the Convention against Torture as well as the International Convention for the Protection of All Persons from Enforced Disappearance", - "values": [ - "CP rights - general", - "ESC rights - general", - "Enforced disappearances", - "International instruments", - "Racial discrimination", - "Torture and other CID treatment" - ] - }, - { - "text": "Reach out to the Special Rapporteur on Freedom of Religion and Belief to arrange a visit at the earliest possible opportunity", - "values": [ - "Freedom of religion and belief", - "Special procedures" - ] - }, - { - "text": "Rapidly create a national human rights institution in conformity with Paris Principles ", - "values": [ - "National Human Rights Institution" - ] - }, - { - "text": "Establish a national mechanism for reporting and follow-up, which includes the elements identified in the practical guide prepared by the Office of the High Commissioner", - "values": [ - "UPR process" - ] - }, - { - "text": "Ratify promptly the Optional Protocol to the Convention on the Rights of Persons with Disabilities", - "values": [ - "Disabilities", - "International instruments" - ] - }, - { - "text": "Continue pursuing awareness raising campaigns aimed at eliminating stigmatisation of persons with disabilities, the difficulties they face at the labour market and in general, their exclusion from social life", - "values": [ - "Disabilities", - "Human rights education and training" - ] - }, - { - "text": "Take into consideration, when examining recommendations made during this session of the Working Group, those that are in line with its religious, social and cultural specificities, in particular those emanating from the Islamic Shari'a, which adds to general human rights principles without replacing them ", - "values": [ - "Freedom of religion and belief" - ] - }, - { - "text": "Take all the necessary measures at federal, state and local levels to prevent and eliminate all harmful practices against children", - "values": [ - "Rights of the Child", - "Torture and other CID treatment" - ] - }, - { - "text": "Continue its efforts to combat poverty - ensure sustainable development - improve access to health care and education - and achieve the Millennium Development Goals ", - "values": [ - "Development", - "Poverty", - "Right to education", - "Right to health" - ] - }, - { - "text": "Extend a standing invitation to all mandate holders of the Council", - "values": [ - "Special procedures" - ] - }, - { - "text": "Increase access to primary health care for the populations living in rural areas ", - "values": [ - "Right to health" - ] - }, - { - "text": "Study the possibility of establishing an independent national human rights institution to promote human rights", - "values": [ - "National Human Rights Institution" - ] - }, - { - "text": "Establish a de jure moratorium of the death penalty at the federal level and in the military justice, in view of its abolition and as an example for the States that still retain it", - "values": [ - "Death penalty" - ] - }, - { - "text": "Consider future accession to the ICRMW ", - "values": [ - "International instruments", - "Labour", - "Migrants" - ] - }, - { - "text": "Azerbaijan pledged to pay even greater attention to improving gender equality and the protection of the rights of children, and to improving the social situation of refugees and internally displaced persons.", - "values": [ - "Asylum-seekers - refugees", - "Internally displaced persons", - "Rights of the Child", - "Women's rights" - ] - }, - { - "text": "Continue measures to end trafficking in human beings", - "values": [ - "Trafficking" - ] - }, - { - "text": "Guarantee that the right to worship of minorities, including Muslims, is fully respected in practice", - "values": [ - "Freedom of religion and belief", - "Minorities" - ] - }, - { - "text": "Make efforts to supply quality drinking water and provide adequate cultural facilities to the rural population", - "values": [ - "Right to water and sanitation" - ] - }, - { - "text": "Continue to work with development partners in order to improve its capabilities in implementing its anti-trafficking law", - "values": [ - "Trafficking" - ] - }, - { - "text": "Build on structures already in place and set up a national preventive mechanism in accordance with OP-CAT standards ", - "values": [ - "Detention", - "International instruments", - "Torture and other CID treatment" - ] - }, - { - "text": "Place an absolute ban on death sentences against persons below the age of 18 at the time when the offence was committed", - "values": [ - "Death penalty", - "Rights of the Child" - ] - }, - { - "text": "Further build on progress in relation to child mortality and ensure the implementation of nationwide, high quality and accessible antenatal, neonatal and under-five health services ", - "values": [ - "Right to health", - "Rights of the Child" - ] - }, - { - "text": "Continue the networking by the Fijian Judiciary and Fiji's Human Rights and Anti-Discrimination Commission with relevant international organizations to strengthen the protection and promotion of human rights in the country", - "values": [ - "National Human Rights Institution" - ] - }, - { - "text": "Implement appropriate measures to prevent discrimination against religious minorities", - "values": [ - "Freedom of religion and belief", - "Minorities", - "Racial discrimination" - ] - }, - { - "text": "Promote gender equality and combat discrimination against women ", - "values": [ - "Women's rights" - ] - }, - { - "text": "Adopt measures for the decriminalization of consensual same sex sexual relations", - "values": [ - "Sexual Orientation and Gender Identity" - ] - }, - { - "text": "Reintroduce the moratorium on executions as a first step towards the abolition of the death penalty ", - "values": [ - "Death penalty" - ] - }, - { - "text": "Pursue the initiative to establish Child Desk Officers within the Department of Women's Affairs and intensify efforts to ensure access to free compulsory education for all children in the country.", - "values": [ - "Right to education", - "Rights of the Child" - ] - }, - { - "text": "Strengthen and apply poverty reduction strategies to ensure disadvantaged communities have access to adequate shelter, food, health care and education ", - "values": [ - "Right to education", - "Right to food", - "Right to health", - "Right to housing" - ] - }, - { - "text": "Continue measures to combat terrorism, including the financing of terrorism ", - "values": [ - "Public security" - ] - }, - { - "text": "In line with the Committee on Economic, Social and Cultural Rights recommendation, develop a comprehensive poverty reduction and social inclusion strategy, which should integrate economic, social and cultural rights ", - "values": [ - "ESC rights - general", - "Poverty", - "Treaty bodies" - ] - }, - { - "text": "Continue efforts to ensure the rights of persons with disabilities aiming at the creation of the legal and institutional frameworks for the implementation of the Convention on the Rights of Persons with Disabilities, taking into account the national strategy adopted for 2010-2018 ", - "values": [ - "Disabilities", - "International instruments" - ] - }, - { - "text": "Intensify measures to prevent and sanction violence against lesbian, gay, bisexual, transgender and intersex persons", - "values": [ - "Sexual Orientation and Gender Identity" - ] - }, - { - "text": "Ensure access to health care, adequate housing, education and safe drinking water and sanitation for all, especially people living in - ger - districts ", - "values": [ - "Right to education", - "Right to health", - "Right to housing", - "Right to water and sanitation" - ] - }, - { - "text": "Carry out actions against terrorism in full respect for human rights law and standards and without undue restrictions on fundamental freedoms, such as freedom of expression and freedom of the press, and on civil society space", - "values": [ - "Civil society", - "Counter-terrorism", - "Freedom of association and peaceful assembly", - "Freedom of opinion and expression", - "Freedom of the press" - ] - }, - { - "text": "Ratify as soon as possible the International Covenant on Economic, Social and Cultural Rights", - "values": [ - "ESC rights - general", - "International instruments" - ] - }, - { - "text": "Establish an independent commission of inquiry into the events surrounding the Tivoli Gardens incident in May 2010", - "values": [ - "Justice" - ] - }, - { - "text": "Allocate adequate resources to the National Monitoring Mechanism to ensure it effectively carries out its mandate ", - "values": [ - "Torture and other CID treatment" - ] - }, - { - "text": "Transmit the overdue reports to the Human Rights Committee, the Committee on the Elimination of Discrimination against Women and the Committee against Torture", - "values": [ - "CP rights - general", - "Torture and other CID treatment", - "Treaty bodies", - "Women's rights" - ] - }, - { - "text": "Take more effective measures to eliminate discrimination against noncitizens in relation to working conditions and work requirements, to adopt legislation prohibiting discrimination in employment, and to take further measures to reduce unemployment among immigrants", - "values": [ - "Labour", - "Migrants" - ] - }, - { - "text": "Further strengthen the community-based rehabilitation programme for drug addicts, inpatients and outpatients for their integration into society", - "values": [ - "Right to health" - ] - }, - { - "text": "Increase the age of marriage to 18 years for both boys and girls and harmonize legislation to this effect", - "values": [ - "Rights of the Child" - ] - }, - { - "text": "Cooperate fully with all human rights mechanisms", - "values": [ - "Special procedures", - "Treaty bodies", - "UPR process" - ] - }, - { - "text": "Take necessary measures to ensure that all persons alleged to have committed war crimes are prosecuted in national courts, and that victims are properly compensated", - "values": [ - "Justice" - ] - }, - { - "text": "It renewed Qatar's commitment to further its cooperation and consultation with all UN human rights mechanisms and its support to the Human Rights Council", - "values": [ - "Special procedures", - "Treaty bodies", - "UPR process" - ] - }, - { - "text": "Accelerate its review of the law on sorcery and sorcery-related killings and strengthen the enforcement of relevant legislation", - "values": [ - "Justice" - ] - }, - { - "text": "Ratify the Optional Protocol to the Convention against Torture and Other Cruel, Inhuman or Degrading Treatment of Punishment and the International Convention for the Protection of All Persons from Enforced Disappearances", - "values": [ - "Detention", - "Enforced disappearances", - "International instruments", - "Torture and other CID treatment" - ] - }, - { - "text": "Consolidate a human rights and gender perspective in the social policies practice aiming at gender equality in practice ", - "values": [ - "Women's rights" - ] - }, - { - "text": "Promote the participation of women in the process of national development", - "values": [ - "Women's rights" - ] - }, - { - "text": "Legislative protection for children includes criminal sanctions for all forms of violence against children", - "values": [ - "Rights of the Child" - ] - }, - { - "text": "Allow urgently the development of international operations of food distribution in the whole country - put an end to discrimination in the governmental food distribution, prioritizing children, pregnant women, persons with disabilities and senior citizens ", - "values": [ - "Right to food" - ] - }, - { - "text": "Ensure that the policies aimed at assisting displaced persons take into account the Guiding Principles on Internal Displacement ", - "values": [ - "Internally displaced persons" - ] - }, - { - "text": "Put an immediate end to human rights violations documented in the report of the COI, many of which constitute, in the view of the report, crimes against humanity ", - "values": [ - "Justice" - ] - }, - { - "text": "Continue strengthening tolerance in the Ukrainian society and take measures to prevent integration of nationalistic ideas in the political platforms of the public associations", - "values": [ - "Other" - ] - }, - { - "text": "Undertake a participatory and inclusive process with civil society organizations, including indigenous peoples in the implementation of universal periodic review recommendations ", - "values": [ - "Civil society", - "Indigenous peoples", - "UPR process" - ] - }, - { - "text": "Take measures to accelerate the adoption of a national plan of action to combat trafficking in persons, particularly women and children, in order to prevent this crime, rehabilitate victims and prosecute perpetrators", - "values": [ - "Rights of the Child", - "Trafficking", - "Women's rights" - ] - }, - { - "text": "Allow for the visit of the UN Special Rapporteur on the rights of indigenous peoples", - "values": [ - "Indigenous peoples", - "Special procedures" - ] - }, - { - "text": "Consider reviewing the status and effectiveness of the NHRI to ensure its full compliance with the Paris Principles ", - "values": [ - "National Human Rights Institution" - ] - }, - { - "text": "Continue its efforts in fighting and preventing torture, with emphasis on criminal legislation to guarantee the absolute nature of the prohibition of torture", - "values": [ - "Torture and other CID treatment" - ] - }, - { - "text": "Abolish the death penalty and in the meantime, introduce a moratorium on the death penalty as quickly as possible and sign and ratify the 2nd Optional Protocol to the ICCPR", - "values": [ - "Death penalty", - "International instruments" - ] - }, - { - "text": "Improve the existing procedures for registering children to guarantee equality for children and equal legal treatment without any discrimination", - "values": [ - "Rights of the Child" - ] - }, - { - "text": "Present a standing invitation to all Special Rapporteurs", - "values": [ - "Special procedures" - ] - }, - { - "text": "Continue strengthening the health system and the implementation of the national strategy to fight HIV/AIDs ", - "values": [ - "HIV - Aids", - "Right to health" - ] - }, - { - "text": "Improve the practical application and the incorporation of an inclusive approach to the rights of persons with disabilities in the adoption of the legislative measures to guarantee, in particular, equal access to public services", - "values": [ - "Disabilities" - ] - }, - { - "text": "Consider abolishing the pre-approval requirement for public assemblies altogether and to replace it with an obligation of notification for the organisers of public assemblies.", - "values": [ - "Freedom of association and peaceful assembly" - ] - }, - { - "text": "Ensure the fair trials to all defendants before the Bangladesh International Crimes Tribunal, being judged for crimes against humanity during the Liberation War of 1971 ", - "values": [ - "Justice" - ] - }, - { - "text": "Work with the international community to consider removing the sanctions imposed on the Democratic People's Republic of Korea encouraging it to meaningfully promote and protect human rights in its country", - "values": [ - "General" - ] - }, - { - "text": "Eliminate obstacles to the enjoyment of land property rights for women", - "values": [ - "Women's rights" - ] - }, - { - "text": "Amend the 1982 Citizenship Law to give the Rohingya and all other religious minorities and ethnic groups access to full citizenship rights", - "values": [ - "Freedom of religion and belief", - "Minorities", - "Statelessness and the right to nationality" - ] - }, - { - "text": "Consider the possibility of ratifying the Optional Protocol on the involvement of children in armed conflict", - "values": [ - "International humanitarian law", - "International instruments", - "Rights of the Child" - ] - }, - { - "text": "Accelerate efforts to review the scope and mandate of Ombudsman's institution", - "values": [ - "National Human Rights Institution" - ] - }, - { - "text": "Act upon the resolutions adopted by the Human Rights Council", - "values": [ - "Other" - ] - }, - { - "text": "Enhance cooperation with United Nations special procedures", - "values": [ - "Special procedures" - ] - }, - { - "text": "Improve conditions in prisons and detention centres to comply with international standards", - "values": [ - "Detention" - ] - }, - { - "text": "Put in place appropriate monitoring mechanisms to ensure that the intended objectives of the progressive policy initiatives and measures for the promotion and protection of the welfare and the rights of the vulnerable, including women, girls and children, as well as the scheduled castes and schedules tribes and minorities are well achieved ", - "values": [ - "Indigenous peoples", - "Minorities", - "Rights of the Child", - "Women's rights" - ] - }, - { - "text": "Continue efforts towards the introduction of human rights training in the educational system and training programmes", - "values": [ - "Human rights education and training" - ] - }, - { - "text": "Continue making practical steps aimed at the development of the institutional and human rights infrastructure to better implement its human rights obligations, taking into account applicable international humanitarian law", - "values": [ - "International humanitarian law" - ] - }, - { - "text": "Further promote the human rights of mothers and children ", - "values": [ - "Rights of the Child", - "Women's rights" - ] - }, - { - "text": "Ensure prompt, impartial and full investigations into all complaints and all instances of deaths in custody", - "values": [ - "Detention", - "Extrajudicial executions" - ] - }, - { - "text": "Consider that any person detained by its armed forces is under its jurisdiction, and respect its obligations concerning the human rights of such individuals ", - "values": [ - "International humanitarian law" - ] - }, - { - "text": "Continue with measures undertaken to reduce discrimination against migrants and ethnic minorities", - "values": [ - "Migrants", - "Minorities", - "Racial discrimination" - ] - }, - { - "text": "Consider ratifying the Optional Protocol to the Convention against Torture, the Optional Protocol to the Convention on the Elimination of All Forms of Discrimination against Women and the Second Optional Protocol to the International Covenant on Civil and Political Rights, aiming at the abolition of the death penalty", - "values": [ - "Death penalty", - "Detention", - "International instruments", - "Torture and other CID treatment", - "Women's rights" - ] - }, - { - "text": "Take steps to strengthen the judiciary, by increasing its independence and ensuring compliance with selection and appointment procedures in competitive examinations and working with the Special Rapporteur on the independence of judges and lawyers ", - "values": [ - "Special procedures", - "Torture and other CID treatment" - ] - }, - { - "text": "Accomplish progressively human rights voluntary goals, as set up by Human Rights Council resolution 9-12, including the ratification of the Optional Protocol to CEDAW ", - "values": [ - "International instruments", - "Women's rights" - ] - }, - { - "text": "Take all necessary legislative and practical measures to eradicate violence against women, in all its forms, and to promote gender equality", - "values": [ - "Women's rights" - ] - }, - { - "text": "Pursue its efforts towards ratification to become a State party to the Istanbul Convention in the near future", - "values": [ - "International instruments", - "Women's rights" - ] - }, - { - "text": "Reinforce measures aimed at abolishing female genital mutilation", - "values": [ - "Rights of the Child", - "Torture and other CID treatment", - "Women's rights" - ] - }, - { - "text": "Clearly define criminal offences provided for under article 164 of the Criminal Code, such as the incitement to hatred or discord on ethnic or racial grounds, or affronts to national honour and to religious dignity and believes, so that they are in line with international norms on freedom of expression", - "values": [ - "Freedom of opinion and expression", - "Freedom of religion and belief", - "Minorities", - "Racial discrimination" - ] - }, - { - "text": "Amend further its Law on the Media, the Law on Publication and other related regulations to comply with international human rights standards \n\n", - "values": [ - "Freedom of the press", - "International instruments" - ] - }, - { - "text": "Take steps to ensure media freedom and protection of journalists, including protection from political pressure and undue civil defamation lawsuits", - "values": [ - "Freedom of the press" - ] - }, - { - "text": "Remain committed to poverty reduction, improving the living standards of people and realizing Millennium Development Goals", - "values": [ - "Development", - "Poverty" - ] - }, - { - "text": "Take measures that guarantee access of IDPs to basic services, so that they can leave the camps ", - "values": [ - "Internally displaced persons" - ] - }, - { - "text": "Establish judicial and other mechanisms to investigate allegations of torture, police brutality, and arbitrary detention", - "values": [ - "Detention", - "Human rights violations by state agents", - "Torture and other CID treatment" - ] - }, - { - "text": "Repeal legal provisions that foresee penalties against lesbian, gay, bisexual or transgender persons, in order to respect the principle of non-discrimination", - "values": [ - "Sexual Orientation and Gender Identity" - ] - }, - { - "text": "Elaborate and implement where gaps exist, legislative and administrative measures to outlaw discrimination against women and eliminate gender based violence", - "values": [ - "Women's rights" - ] - }, - { - "text": "Extend a standing invitation to all special procedures and, particularly, allow the entry of the Special Rapporteur on the situation of human rights in Iran", - "values": [ - "Special procedures" - ] - }, - { - "text": "Request technical assistance from OHCHR for the harmonization of domestic legislation with the international human rights standards ", - "values": [ - "International instruments", - "Technical assistance and cooperation" - ] - }, - { - "text": "Consider revising all anti-terrorism legislation to bring it in line with the highest human rights standards.", - "values": [ - "Counter-terrorism" - ] - }, - { - "text": "Strengthen efforts, in the framework of the MDGs, to make basic education generally accessible.", - "values": [ - "Right to education" - ] - }, - { - "text": "Facilitate the effective functioning of the Transitional Government of National Unity, the implementation of the peace agreement and the establishment of the hybrid court by the African Union", - "values": [ - "Justice" - ] - }, - { - "text": "Continue its efforts to guarantee human rights and freedoms as enshrined in the Constitution ", - "values": [ - "Other" - ] - }, - { - "text": "Improve the treatment of all prisoners as regards medical and dental care, heating in winter, cooling in summer as well as the nutritional quality of the food served", - "values": [ - "Detention", - "Right to food", - "Right to health" - ] - }, - { - "text": "Consider introducing a moratorium on capital executions with a view to fully abolishing the death penalty", - "values": [ - "Death penalty" - ] - }, - { - "text": "Expedite amendments to the Human Rights Commission Act and ensure independence for the Commission and further encourage the Commission to reapply for accreditation to the International Coordination Committee", - "values": [ - "National Human Rights Institution" - ] - }, - { - "text": "Consider taking steps to increase opportunities to access higher education", - "values": [ - "Right to education" - ] - }, - { - "text": "Continue initiatives such as the National Women's Bank which have given women income earning opportunities and access to banking services", - "values": [ - "Women's rights" - ] - }, - { - "text": "Accede to the Rome Statute and to the Agreement on the Privileges and Immunities of the Court ", - "values": [ - "International instruments", - "Justice" - ] - }, - { - "text": "Continue with the sensitization programmes in order to increase human rights awareness among the citizens of the country", - "values": [ - "Human rights education and training" - ] - }, - { - "text": "Establish a national human rights institution with a broad mandate and sufficient resources, in accordance with the Paris Principles, which includes concrete mandates regarding the rights of women and social, economic and cultural rights", - "values": [ - "ESC rights - general", - "National Human Rights Institution", - "Women's rights" - ] - }, - { - "text": "Ensure that the Child Work Policy complies with human rights obligations and standards", - "values": [ - "International instruments", - "Rights of the Child" - ] - }, - { - "text": "Ensure implementation of the principle of non-discrimination based on any ground, as provided by the national law in force, in the area of civil and political rights", - "values": [ - "CP rights - general" - ] - }, - { - "text": "Ensure effective protection against abuse of domestic workers and guarantee their right to just and favourable conditions of work ", - "values": [ - "Labour" - ] - }, - { - "text": "Improve detention and prison conditions by, among other things, ensuring detainees receive adequate nutrition, and by reducing overcrowding in places of detention", - "values": [ - "Detention", - "Right to food" - ] - }, - { - "text": "Continue its leadership role in supporting the achievement of the Sustainable Development Goals as exemplified, among others, by the pledge to contribute USD 1.1 billion for SDG 3", - "values": [ - "Development", - "Right to health" - ] - }, - { - "text": "Introduce the automatic acquisition of citizenship together with birth registration for children of foreign parents whose nationality cannot be passed to them, and facilitate the possibility of judicial review for all naturalisation applications which are denied", - "values": [ - "Statelessness and the right to nationality" - ] - }, - { - "text": "Fully implement the Racial Discrimination Act and the revision of federal laws to be compatible with the United Nations Declaration on the Rights of Indigenous Peoples ", - "values": [ - "Indigenous peoples", - "International instruments" - ] - }, - { - "text": "Continue addressing illiteracy, particularly in rural areas", - "values": [ - "Right to education" - ] - }, - { - "text": "Enhance cooperation with the United Nations treaty bodies system and special procedures, through implementation of the recommendations of the treaty bodies and the universal periodic review ", - "values": [ - "Special procedures", - "Treaty bodies", - "UPR process" - ] - }, - { - "text": "Improve on the United Kingdom\u2019s Immigration Act 2016 dealing with refugees to be compatible with United Nations Human Rights Conventions, particularly the Convention on the Rights of the Child", - "values": [ - "Asylum-seekers - refugees", - "International instruments", - "Rights of the Child" - ] - }, - { - "text": "Advance efforts to impose a formal moratorium on executions with a view to acceding to the relevant conventions, including the Second Optional Protocol to the International Covenant on Civil and Political Rights", - "values": [ - "Death penalty", - "International instruments" - ] - }, - { - "text": "Ensure proper implementation of and execution of legal provisions relevant to the protection of women's rights, and child rights specifically and the family in general", - "values": [ - "Rights of the Child", - "Women's rights" - ] - }, - { - "text": "Seek support and assistance from international institutions in dealing with the challenges that constrain the effective realization of certain rights, particularly the right to education and the protection of refugees", - "values": [ - "Asylum-seekers - refugees", - "Right to education", - "Technical assistance and cooperation" - ] - }, - { - "text": "Develop external relations of the national preventative mechanism against torture with national human rights institutions", - "values": [ - "Detention", - "Torture and other CID treatment" - ] - }, - { - "text": "Establish a consolidated framework relating to immigration and asylum issues, including an independent Appeals body", - "values": [ - "Asylum-seekers - refugees", - "Migrants" - ] - }, - { - "text": "Pursue further efforts in order to further bolster economic, social and cultural rights and support the implementation of programmes and national related plans", - "values": [ - "ESC rights - general" - ] - }, - { - "text": "Continue its efforts towards national reconciliation in cooperation with the international community, while fully engaging with all stakeholders", - "values": [ - "Justice" - ] - }, - { - "text": "Continue its efforts in combating human trafficking", - "values": [ - "Trafficking" - ] - }, - { - "text": "Treat all political parties on an equal footing and offer them equal opportunities in line with articles 25 and 26 of ICCPR, including through a transparent and impartial party-registration process ", - "values": [ - "Elections", - "Freedom of association and peaceful assembly", - "International instruments", - "Racial discrimination" - ] - }, - { - "text": "Consolidate the draft national action plan to combat racism, racial discrimination, xenophobia and related intolerance", - "values": [ - "Racial discrimination" - ] - }, - { - "text": "Take appropriate measures for the ratification of the International Convention for the Protection of All Persons from Enforced Disappearance", - "values": [ - "Enforced disappearances", - "International instruments" - ] - }, - { - "text": "Establish systems for monitoring and gathering information with the view to prevent abuse and ill-treatment of children, as well as other situations of negligence or lack of adequate care", - "values": [ - "Rights of the Child", - "Torture and other CID treatment" - ] - }, - { - "text": "Implement stricter policies aimed at ending racial violence as perpetuated against migrants and foreigners", - "values": [ - "Migrants", - "Racial discrimination" - ] - }, - { - "text": "Submit all overdue reports to the relevant United Nations treaty bodies", - "values": [ - "Treaty bodies" - ] - }, - { - "text": "Conduct thorough and impartial investigation into allegations of torture and physical abuse, and to bring to justice anyone suspected of having participated in arbitrary arrests or having committed excessive use of force, torture and other human rights violations ", - "values": [ - "Torture and other CID treatment" - ] - }, - { - "text": "Continue the institutional and judicial reforms aimed at strengthening the rule of law ", - "values": [ - "Justice" - ] - }, - { - "text": "Continue the current efforts to consider the strengthening of environmental legislation and policies, and that the establishment of legal advisory and enforcement capacity on environment should be considered as priority needs and actions ", - "values": [ - "Environment" - ] - }, - { - "text": "Fulfil its international reporting obligations", - "values": [ - "Treaty bodies" - ] - }, - { - "text": "Ensure that government policy on access to food, healthcare and health services, including the Public Distribution System, is free of discrimination and political considerations", - "values": [ - "Right to food", - "Right to health" - ] - }, - { - "text": "Tackle advocacy of religious hatred including that which constitutes incitement to discrimination, hostility or violence in political discourse and in the media", - "values": [ - "Freedom of religion and belief" - ] - }, - { - "text": "Ratify the Convention on the Rights of Persons with Disabilities, the International Convention for the Protection of All Persons from Enforced Disappearance, the Optional Protocol to the Convention against Torture", - "values": [ - "Detention", - "Disabilities", - "Enforced disappearances", - "International instruments", - "Torture and other CID treatment" - ] - }, - { - "text": "Develop a programme for education and human rights training, as that could enhance the capacity of all stakeholders, including civil society, to facilitate such activities and ensure greater awareness among citizens with regard to human rights", - "values": [ - "Civil society", - "Human rights education and training" - ] - }, - { - "text": "Intensify efforts directed to eliminating discrimination against women, including promotion of equal access for women and girls to all levels of education", - "values": [ - "Right to education", - "Rights of the Child", - "Women's rights" - ] - }, - { - "text": "Enact legislation on community-based associations, violence against women, the rights of persons with disabilities, human trafficking, trade unions and health insurance.", - "values": [ - "Disabilities", - "Freedom of association and peaceful assembly", - "Labour", - "Trafficking", - "Women's rights" - ] - }, - { - "text": "Share with all United Nations members, particularly with developing countries, taking into account its sense of solidarity, Cuba's experiences in the promotion and protection of the right to health of millions of people around the world", - "values": [ - "Right to health" - ] - }, - { - "text": "Ensure that judges, lawyers and other justice professionals are fully protected from threats, intimidation and other external pressures that seek to challenge and threaten their independence and impartiality", - "values": [ - "Justice" - ] - }, - { - "text": "Take measures to reduce violence against lesbian, gay, bisexual, transsexual and intersex persons, with a view to reducing homophobic prejudices of the Jamaican society and facilitate their access to all services", - "values": [ - "Sexual Orientation and Gender Identity" - ] - }, - { - "text": "Co-operation with the Special Rapporteur on the situation of human rights in Eritrea ", - "values": [ - "Special procedures" - ] - }, - { - "text": "Continue its endeavours to further enhance the existing mechanisms to advance human rights in Indonesia ", - "values": [ - "General" - ] - }, - { - "text": "Prevent, investigate and prosecute inhumane treatment in prayer camps or witch camps and psychiatric hospitals. Address societal attitudes condoning such violations and abuses of rights of persons with mental disabilities", - "values": [ - "Disabilities", - "Right to health", - "Torture and other CID treatment" - ] - }, - { - "text": "Take steps to ratify the amendments to article 8 of the Rome Statute of the International Criminal Court", - "values": [ - "International instruments", - "Justice" - ] - }, - { - "text": "Promote the ratification of the different international human rights instruments most of which have not been ratified by the country, and continue to cooperate with the Human Rights Council and its mechanisms ", - "values": [ - "International instruments", - "Special procedures", - "UPR process" - ] - }, - { - "text": "Draw up a follow-up plan to the Action Plan to Combat Female Genital Mutilation and Cutting, which includes evaluation mechanisms of outcomes and measures to make effective the punishment of such practices, as well as appropriate budget allocations for its implementation in rural areas", - "values": [ - "Rights of the Child", - "Torture and other CID treatment", - "Women's rights" - ] - }, - { - "text": "Abolish completely and definitively the death penalty for all crimes", - "values": [ - "Death penalty" - ] - }, - { - "text": "El Salvador extended an open and standing invitation to the Human Rights Council special procedures.", - "values": [ - "Special procedures" - ] - }, - { - "text": "Address the due identification and processing of those guilty of human rights violations in conflict situations", - "values": [ - "International humanitarian law", - "Justice" - ] - }, - { - "text": "Take appropriate legislative steps to ensure the full protection of the right to freedom of opinion and expression, in particular with regard to electronic publications and online journalism", - "values": [ - "Freedom of opinion and expression", - "Freedom of the press" - ] - }, - { - "text": "Ensure the judiciary, including the Supreme Council of the Judiciary (CSPJ) is provided with adequate resources and able to operate free from political interference ", - "values": [ - "Justice" - ] - }, - { - "text": "Accede to the 1954 Convention relating to the Status of Stateless Persons", - "values": [ - "International instruments", - "Statelessness and the right to nationality" - ] - }, - { - "text": "Ratify CAT and duly translate the Convention into its domestic legislation to address the crime of torture ", - "values": [ - "International instruments", - "Torture and other CID treatment" - ] - }, - { - "text": "Further strengthen the structure and mandate of the national institution of promotion and protection of human rights", - "values": [ - "National Human Rights Institution" - ] - }, - { - "text": "Ratify the ICCPR, the ICESCR, the CAT and the CERD ", - "values": [ - "CP rights - general", - "ESC rights - general", - "International instruments", - "Racial discrimination", - "Torture and other CID treatment" - ] - }, - { - "text": "Take all the necessary measures to prevent recruitment and use of children, including the criminalisation of such acts", - "values": [ - "International humanitarian law", - "Rights of the Child" - ] - }, - { - "text": "Ensure respect for the rights of migrant workers, improving their working conditions and prosecuting the perpetrators of violence against them", - "values": [ - "Labour", - "Migrants" - ] - }, - { - "text": "Establish an independent national human rights institution in compliance with the Paris Principles in order to further strengthen and institutionalize the government's policies and strategies", - "values": [ - "National Human Rights Institution" - ] - }, - { - "text": "Implement legislation and policies aimed at eliminating sexual and gender-based violence, and increase the capacity of Liberian courts specializing in sexual violence to ensure the expedient processing of rape and other sexual assault cases", - "values": [ - "Rights of the Child", - "Women's rights" - ] - }, - { - "text": "The Federal Government is actively committed to the real achievement of equal rights for men and women and the removal of existing discrepancies.", - "values": [ - "Women's rights" - ] - }, - { - "text": "Continue consultations with numerous stakeholders in its follow-up to universal periodic review reports.", - "values": [ - "Civil society", - "UPR process" - ] - }, - { - "text": "Initiate an awareness-raising campaign on the importance of equal rights for lesbian, gay, bisexual and transgender persons in order to foster a climate of true social acceptance, in the spirit of the Constitution of Equatorial Guinea ", - "values": [ - "Human rights education and training", - "Sexual Orientation and Gender Identity" - ] - }, - { - "text": "Ratify international human rights instruments to which it has not yet adhered to, such as International Covenant on Economic, Social and Cultural Rights, the International Convention on the Elimination of All Forms of Racial Discrimination, the Convention against Torture and Other Cruel, Inhuman or Degrading Treatment or Punishment, as well as their protocols ", - "values": [ - "Detention", - "ESC rights - general", - "International instruments", - "Racial discrimination", - "Torture and other CID treatment" - ] - }, - { - "text": "Enhance the rights of prisoners by adopting measures that include reducing overcrowding in prison facilities, adopting alternative measures to pretrial detention and ensure fair treatment during judicial proceedings at all stages, in line with international treaties", - "values": [ - "Detention", - "International instruments" - ] - }, - { - "text": "Take effective measures to ensure the full realization of the right to freedom of expression, by inter alia reviewing the Printing Presses and Publications Act, the Sedition Act and the Evidence Act", - "values": [ - "Freedom of opinion and expression", - "Freedom of the press" - ] - }, - { - "text": "Reinstate the moratorium on the death penalty and proceed to its complete abolition", - "values": [ - "Death penalty" - ] - }, - { - "text": "Report regularly to human rights treaty bodies and to respond to special procedures' communications and questions. ", - "values": [ - "Special procedures", - "Treaty bodies" - ] - }, - { - "text": "Further consider the implementation of the national plan of action on trafficking in persons, which is currently being drawn up ", - "values": [ - "Trafficking" - ] - }, - { - "text": "Ratify the Convention against Torture and Other Cruel, Inhuman or Degrading Treatment, as previously recommended", - "values": [ - "Torture and other CID treatment", - "UPR process" - ] - }, - { - "text": "Accede to the Second Optional Protocol to the ICCPR", - "values": [ - "Death penalty", - "International instruments" - ] - }, - { - "text": "Take more effective measures to reduce violence against women, especially in the domestic sphere, to eliminate the occurrence of 'feminicidios' and to reduce gender inequality ", - "values": [ - "Women's rights" - ] - }, - { - "text": "Continue increasing concrete measures within the framework of the 2011-2015 Strategy and its plan of action, for the promotion and protection of gender equality and women's rights", - "values": [ - "Women's rights" - ] - }, - { - "text": "Accede, in keeping with the recommendations made by the Committee on Economic, Social and Cultural Rights, to the following International Labour Organization ILO Conventions: Labour Inspection Convention, 1947 Social Security Convention, 1952 Social Policy Convention, 1962 and Equality of Treatment Convention, 1962", - "values": [ - "International instruments", - "Labour", - "Treaty bodies" - ] - }, - { - "text": "Implement the recommendations from CAT, as well as promote the use of the Istanbul protocol to determine cases of torture and to educate forensic experts", - "values": [ - "Torture and other CID treatment", - "Treaty bodies" - ] - }, - { - "text": "Seek additional assistance from various United Nations institutions in order to fully comply with international commitments to protect and promote human rights ", - "values": [ - "Technical assistance and cooperation" - ] - }, - { - "text": "Strengthen the efforts to fight against discrimination, guaranteeing the physical and mental integrity of the population", - "values": [ - "Other" - ] - }, - { - "text": "Continue its work on accession to the International Convention for the Protection of All Persons from Enforced Disappearance", - "values": [ - "Enforced disappearances", - "International instruments" - ] - }, - { - "text": "Speed up its efforts to ensure the proper functioning of the National Human Rights Commission in accordance with the Paris Principles.", - "values": [ - "National Human Rights Institution" - ] - }, - { - "text": "Criminalize domestic violence ", - "values": [ - "Rights of the Child", - "Women's rights" - ] - }, - { - "text": "Implement a legislative framework for an appropriate and meaningful consultation procedure that will ensure genuine, free and informed consent of indigenous peoples in land disputes, as set out in the United Nations Declaration on Indigenous Peoples Rights", - "values": [ - "Indigenous peoples", - "International instruments", - "Right to land" - ] - }, - { - "text": "Improve prison conditions by strengthening preventive measures to protect prisoners from ill-treatment and torture and investigating allegations of abuse", - "values": [ - "Detention", - "Torture and other CID treatment" - ] - }, - { - "text": "Adopt legislation prohibiting acts of discrimination on the grounds of sexual orientation and gender identity, and adopt measures to promote the rights of lesbian, gay, bisexual, transgender and intersex people and prevent their discrimination", - "values": [ - "Sexual Orientation and Gender Identity" - ] - }, - { - "text": "Duly investigate and prosecute all allegations of abuse of domestic workers and provide victims efficient access to justice ", - "values": [ - "Labour" - ] - }, - { - "text": "Sign and ratify the OP-CAT", - "values": [ - "Detention", - "International instruments", - "Torture and other CID treatment" - ] - }, - { - "text": "Sign and ratify CED", - "values": [ - "Enforced disappearances", - "International instruments" - ] - }, - { - "text": "Enhance cooperation with international treaty bodies by submitting overdue reports to CERD, CESCR and HR Committee", - "values": [ - "CP rights - general", - "ESC rights - general", - "Racial discrimination", - "Treaty bodies" - ] - }, - { - "text": "Ensure free and effective birth registration for all children ", - "values": [ - "Rights of the Child", - "Statelessness and the right to nationality" - ] - }, - { - "text": "Consider issuing a standing invitation to all UN human rights special procedures", - "values": [ - "Special procedures" - ] - }, - { - "text": "Continue to invest in education and training", - "values": [ - "Right to education" - ] - }, - { - "text": "Recommended lifting the current reservation to article 8.1(a) of the ICESCR, which ensures the right of everyone to form trade unions and join the trade union of his or her choice and welcomed more information on possible reforms in this area", - "values": [ - "International instruments", - "Labour" - ] - }, - { - "text": "Continue to promote programs and intensify the initiatives aiming at providing health care for motherhood and childhood ", - "values": [ - "Right to health", - "Rights of the Child", - "Women's rights" - ] - }, - { - "text": "Better attract and facilitate the participation of socio-political organizations in the promotion and protection of human rights ", - "values": [ - "Civil society" - ] - }, - { - "text": "Modify the law on oil industries to reflect the opinion of the ECOWAS court, ensuring that the new legislation includes specific protection of the rights of communities affected by the activities of these companies ", - "values": [ - "Business and human rights" - ] - }, - { - "text": "Continue the implementation of ongoing policies and programmes to guarantee access for the entire population to health services and quality education ", - "values": [ - "Right to education", - "Right to health" - ] - }, - { - "text": "Pursue its actions in preventing acts of torture and other cruel, inhuman and degrading treatments in all detention centres", - "values": [ - "Detention", - "Torture and other CID treatment" - ] - }, - { - "text": "Consider its accession to the International Convention on the Protection of the Rights of All Migrant Workers and Member of Their Families", - "values": [ - "International instruments", - "Labour", - "Migrants" - ] - }, - { - "text": "Prioritize efforts to reform the security sector to ensure appropriate training and oversight mechanisms are in place, and to draft new legal provisions to ensure the independence of the judiciary in line with international standards ", - "values": [ - "Justice" - ] - }, - { - "text": "Pursue efficient justice system reforms, with particular focus on ensuring free legal assistance for its underprivileged citizens ", - "values": [ - "Justice" - ] - }, - { - "text": "Continue to work with the World Health Organization and other relevant international agencies to further reduce the prevalence rate of HIV/AIDS and enhance access to quality health services for its people ", - "values": [ - "HIV - Aids", - "Right to health", - "Technical assistance and cooperation" - ] - }, - { - "text": "Ratify the Convention against Torture and Other Cruel, Inhuman or Degrading Treatment or Punishment, as previously recommended ", - "values": [ - "International instruments", - "Torture and other CID treatment", - "UPR process" - ] - }, - { - "text": "Take further legislative steps towards meeting consular notification and access obligations under the Vienna Convention on Consular Relations, by intensifying already significant efforts made towards this goal, as referred in paragraphs 72 and 73 of the National Report", - "values": [ - "Other" - ] - }, - { - "text": "Continue providing the full exercise of women's rights within the framework of the National Gender Policy", - "values": [ - "Women's rights" - ] - }, - { - "text": "Effectively implement the 2007 Domestic Violence Act and strengthen the funding and improve the functioning of the Domestic Violence and Victim Support Units within the Police Service.", - "values": [ - "Rights of the Child", - "Women's rights" - ] - }, - { - "text": "Take steps to ensure equality between men and women that guarantee non-discrimination and gender equality ", - "values": [ - "Women's rights" - ] - }, - { - "text": "Refrain from reintroducing the death penalty", - "values": [ - "Death penalty" - ] - }, - { - "text": "Promote measures to combat the commercial sexual exploitation of children ", - "values": [ - "Labour", - "Rights of the Child" - ] - }, - { - "text": "That no restrictions be put on the media, so that they may operate freely", - "values": [ - "Freedom of the press" - ] - }, - { - "text": "Continue efforts to enhance social dialogue, as well as to ensure adequate protection and promotion of economic rights of the labour force, e.g. through the establishment of an efficient labour inspection mechanism with executive powers", - "values": [ - "Labour" - ] - }, - { - "text": "Sign and ratify, as soon and possible, the International Covenant on Civil and Political Rights and the Convention against Torture and Other Cruel, Inhuman or Degrading Treatment or Punishment ", - "values": [ - "CP rights - general", - "International instruments", - "Torture and other CID treatment" - ] - }, - { - "text": "Adopt appropriate measures to ensure the protection of human rights defenders, journalists and political opponents against acts of violence or intimidation", - "values": [ - "Freedom of the press", - "Human rights defenders" - ] - }, - { - "text": "Provide the national commission for combatting trafficking in persons with the appropriate human and financial resources to enable it to carry out its tasks in the best way", - "values": [ - "Trafficking" - ] - }, - { - "text": "End the continued imposition of the death penalty mostly for drug-related offences", - "values": [ - "Death penalty" - ] - }, - { - "text": "Carry out independent investigations regarding the cases of violations of labour rights in the country, including in the area of forced labour and equal pay between women and men ", - "values": [ - "Labour", - "Women's rights" - ] - }, - { - "text": "Ensure sufficient human resources in the judicial system, including the Supreme Court of the Judiciary, to enable it to operate independently, to decrease the number of persons in preventive custody and to guarantee the right to a fair trial", - "values": [ - "Detention", - "Justice" - ] - }, - { - "text": "Continuing to implement the Comprehensive Programme to Combat Gender-Based Violence", - "values": [ - "Women's rights" - ] - }, - { - "text": "Implement regulations to protect women from torture and abuse in detention facilities, and hold female criminal offenders separately from men, guarded by female guards ", - "values": [ - "Women's rights" - ] - }, - { - "text": "Adopt in its national legislation a definition of inhuman and degrading treatment in accordance with international standards ", - "values": [ - "Torture and other CID treatment" - ] - }, - { - "text": "Consider, in partnership with civil society and women's groups, a better access to support centres, psycho-social and legal services, as well as other services for victims of domestic violence, including in rural areas", - "values": [ - "Rights of the Child", - "Women's rights" - ] - }, - { - "text": "Take the measures that it deems appropriate to ensure, as soon as possible, the harmonization of its national legislation with international human rights instruments to which it is a party, and envisage acceding to other fundamental human rights instruments such as CRPD ", - "values": [ - "Disabilities", - "International instruments" - ] - }, - { - "text": "Strengthen the mandate of its national human rights institution and provide it with adequate support in terms of financial and human resources", - "values": [ - "National Human Rights Institution" - ] - }, - { - "text": "Continue to make efforts to provide care to children with disabilities outside the institutional frameworks", - "values": [ - "Disabilities", - "Rights of the Child" - ] - }, - { - "text": "Withdraw its reservations to the CRC ", - "values": [ - "International instruments", - "Rights of the Child" - ] - }, - { - "text": "Focus on the development of an efficient education system for all throughout the country ", - "values": [ - "Right to education" - ] - }, - { - "text": "Redouble its efforts to firmly combat discriminatory practices ", - "values": [ - "Other" - ] - }, - { - "text": "Enhance the implementation of the laws and regulations of Cyprus in the protection of migrant workers ", - "values": [ - "Labour", - "Migrants" - ] - }, - { - "text": "Proceed with the ratification of, and full alignment of its national legislation with all obligations under, the Rome Statute of the International Criminal Court, including incorporating the Statute\u2019s definition of crimes as amended at the Review Conference of the Rome Statute of the International Criminal Court in 2010 and general principles, as well as adopting provisions enabling cooperation with the Court, and accede to the Agreement on the Privileges and Immunities of the International Criminal Court", - "values": [ - "International instruments", - "Justice" - ] - }, - { - "text": "Pursue its policies aiming at the promotion of dialogue among religions and civilizations, and to activate its role in this regard at the international level ", - "values": [ - "Freedom of religion and belief" - ] - }, - { - "text": "The Government remains committed to not only recognising the important role of women in the country but also towards ensuring their rights continue to be promoted and protected.", - "values": [ - "Women's rights" - ] - }, - { - "text": "Continue submitting reports to various treaty-monitoring bodies in order to honour its commitments through the implementation of the recommendations emerging from those committees.", - "values": [ - "Treaty bodies" - ] - }, - { - "text": "Continue measures on expanding the population's access to the quality services in the area of health and education ", - "values": [ - "Right to education", - "Right to health" - ] - }, - { - "text": "Consider fully utilizing the constitutional amendments more effectively to prevent and investigate human rights violations, punish human rights violators, and provide effective redress and remedy to human rights victims", - "values": [ - "Justice" - ] - }, - { - "text": "Continue to ensure that all pregnant women are provided with diagnosis for HIV/AIDS and access to antiretroviral treatment free of charge, in order to prevent mother-to-child transmission", - "values": [ - "HIV - Aids", - "Women's rights" - ] - }, - { - "text": "Enhance the role of a national authority working on the promotion and respect of human rights", - "values": [ - "General" - ] - }, - { - "text": "Continue working towards the modernization of justice so as to guarantee its independence and impartiality, in particular with regard to vulnerable groups, such as indigenous people and persons with disabilities", - "values": [ - "Disabilities", - "Indigenous peoples", - "Justice" - ] - }, - { - "text": "Continue its cooperation with international human rights bodies and instruments", - "values": [ - "International instruments", - "Technical assistance and cooperation" - ] - }, - { - "text": "Continue its efforts with a view to combating poverty and to make social services accessible for all the components of society", - "values": [ - "Poverty" - ] - }, - { - "text": "Strengthen the legal framework for the protection of children", - "values": [ - "Rights of the Child" - ] - }, - { - "text": "Within the framework of the pertinent mechanisms and instruments, Italy strongly reiterates its continued commitment to actively contribute to the eradication of any forms of racism, in particular against vulnerable groups. However, it should be recalled that together with other countries, Italy decided not to participate in the 2009 Durban Review Conference and therefore is not in a position to adopt or endorse its Outcome Document.", - "values": [ - "Racial discrimination" - ] - }, - { - "text": "Consider undertaking a comprehensive review of its normative framework on sanitation, with a view to ensuring the establishment of a coherent and comprehensive system for the collection, management, treatment and disposal of wastewater in order to prevent the contamination of rivers and other water streams ", - "values": [ - "Right to water and sanitation" - ] - }, - { - "text": "Modify criminal legislation to ensure that domestic violence becomes a crime", - "values": [ - "Rights of the Child", - "Women's rights" - ] - }, - { - "text": "Enact relevant legislation to promote and protect the rights of children in all settings", - "values": [ - "Rights of the Child" - ] - }, - { - "text": "Improve police training in order to raise awareness against racial profiling", - "values": [ - "Human rights education and training", - "Racial discrimination" - ] - }, - { - "text": "Favourably consider revising the new Internet Law in order for its citizens to enjoy better access to the Internet thereby further ensuring their right to freedom of expression and opinion", - "values": [ - "Freedom of opinion and expression" - ] - }, - { - "text": "Ensure the independence of the judiciary in order to safeguard the rule of law by taking immediate steps to ensure that the Constitutional Tribunal is able to deliver effective constitutional reviews", - "values": [ - "Justice" - ] - }, - { - "text": "Respect the principles of human rights and the rule of law in the fight against terrorism", - "values": [ - "Counter-terrorism" - ] - }, - { - "text": "Adopt legislation on trafficking in persons, including for the purpose of the sale of human organs, and investigate all allegations of such crimes ", - "values": [ - "Trafficking" - ] - }, - { - "text": "Step up measures aimed at elimination of violence against women", - "values": [ - "Women's rights" - ] - }, - { - "text": "Cooperate with the international community in order to achieve progress with regard to promotion and protection of human rights and fundamental freedoms in the country ", - "values": [ - "General" - ] - }, - { - "text": "Strengthen the judicial framework, including due process, freedom of expression and freedom of association ", - "values": [ - "Freedom of association and peaceful assembly", - "Freedom of opinion and expression", - "Justice" - ] - }, - { - "text": "Consider ratifying the International Convention on the Protection of the Rights of All Migrant Workers and their Families", - "values": [ - "International instruments", - "Labour", - "Migrants" - ] - }, - { - "text": "The Libyan Government would like to express its thanks to the Working Group on the Universal Periodic Review and reaffirm its commitment to strive to implement those recommendations it has accepted.", - "values": [ - "UPR process" - ] - }, - { - "text": "Enact explicit laws criminalizing organizations and entities promoting or inciting racial or religious hatred, as well as publicly denounce such acts, when they occur, in line with recommendations of the Committee on the Elimination of Racial Discrimination ", - "values": [ - "Freedom of religion and belief", - "Racial discrimination", - "Treaty bodies" - ] - }, - { - "text": "Move forward the ratification of the Optional Protocol the Convention against Torture and Other Cruel, Inhuman or Degrading Treatment or Punishment", - "values": [ - "Detention", - "International instruments", - "Torture and other CID treatment" - ] - }, - { - "text": "Develop disciplinary protocols and manuals for the use of force with strict adherence to human rights", - "values": [ - "Human rights education and training" - ] - }, - { - "text": "Pursue its efforts in the field of promoting the rights of women ", - "values": [ - "Women's rights" - ] - }, - { - "text": "Ratify the Convention on the Rights of Persons with Disabilities and ratify the Optional Protocol to the Convention on the Rights of Persons with Disabilities and adopt a legislation on gender pay equity", - "values": [ - "Disabilities", - "International instruments", - "Women's rights" - ] - }, - { - "text": "Step up efforts to prevent child causalities in counter-terrorism operations, using every method to protect their rights", - "values": [ - "Counter-terrorism", - "Rights of the Child" - ] - }, - { - "text": "Continue efforts towards due protection of women who are part of the victim and witness protection programmes", - "values": [ - "Justice", - "Women's rights" - ] - }, - { - "text": "Intensify efforts to increase the level of well-being of the population and improve the national human rights protection system ", - "values": [ - "General" - ] - }, - { - "text": "Adopt a comprehensive national human rights action plan", - "values": [ - "General" - ] - }, - { - "text": "Continue its efforts in the comprehensive reform process that the Government embarked upon to combat torture and ill-treatment, including the amendment to the Penal Code and the prosecution and punishment of a number of officials for committing torture and ill-treatment", - "values": [ - "Torture and other CID treatment" - ] - }, - { - "text": "Continue its efforts to adopt good governance and strengthen the role of the National Commission for Human Rights ", - "values": [ - "National Human Rights Institution" - ] - }, - { - "text": "Guarantee appropriate funding for the effective and efficient implementation of the judiciary reform and its related Action Plan", - "values": [ - "Justice" - ] - }, - { - "text": "Consider including, in the request to establish a country office of OHCHR, a request for technical assistance and cooperation with a view to the development of a comprehensive strategy, with the participation of civil society, to ensure respect for and the defence of human rights", - "values": [ - "Civil society", - "Technical assistance and cooperation" - ] - }, - { - "text": "Establishment of a national shelter for the rehabilitation of former women prisoners upon release and their reintegration into society ", - "values": [ - "Detention", - "Women's rights" - ] - }, - { - "text": "Withdraw reservations to core human rights instruments such as both 1966 covenants ", - "values": [ - "CP rights - general", - "ESC rights - general", - "International instruments" - ] - }, - { - "text": "Continue efforts aimed at eradicating poverty", - "values": [ - "Poverty" - ] - }, - { - "text": "Continue to make efforts to eradicate violence against women and children and take the necessary measures to provide appropriate treatment for victims of crimes of this sort. ", - "values": [ - "Rights of the Child", - "Women's rights" - ] - }, - { - "text": "Introduce efficient legislative and policy measures that would promote gender equality and eliminate gender-based discrimination, including conducting appropriate awareness-raising campaigns to combat traditional negative stereotypes and attitudes on the role of women in society, with particular focus on rural areas ", - "values": [ - "Women's rights" - ] - }, - { - "text": "Continue to implement effectively the National Action Plan on the Rights of the Child ", - "values": [ - "Rights of the Child" - ] - }, - { - "text": "Set up effective mechanisms for the recovery of indigenous lands ", - "values": [ - "Indigenous peoples", - "Right to land" - ] - }, - { - "text": "Put an end to the trials of civilians by military tribunals", - "values": [ - "Justice" - ] - }, - { - "text": "Cooperate closely with and strengthen the role of the Advisory Commission on Human Rights.", - "values": [ - "National Human Rights Institution" - ] - }, - { - "text": "Establish a channel for the National Human Rights Commission and civil society organizations to participate in the work of the National Human Rights Policy Council on the implementation of recommendations from the Universal Periodic Review and treaty bodies", - "values": [ - "Civil society", - "National Human Rights Institution", - "Treaty bodies", - "UPR process" - ] - }, - { - "text": "Establish a formal moratorium on the death penalty with a view to ratifying the Second Optional Protocol to the International Covenant on Civil and Political Rights ", - "values": [ - "Death penalty", - "International instruments" - ] - }, - { - "text": "Submit its overdue reports to the Human Rights Committee, the Committee on Economic, Social and Cultural Rights, the Committee on the Rights of the Child, the Committee on the Rights of Persons with Disabilities, and the Committee on the Elimination of All Forms of Discrimination against Women ", - "values": [ - "CP rights - general", - "Disabilities", - "ESC rights - general", - "Rights of the Child", - "Treaty bodies", - "Women's rights" - ] - }, - { - "text": "Strengthen the State institutional gender framework and the training of its human resources at the central, departmental and municipal levels to promote gender equity and equality, in order to increase its impact on the transformation of organizational structures, policies and programmes", - "values": [ - "Women's rights" - ] - }, - { - "text": "Ensure that administrative detention complies with Israel's international commitments, and that it remains an exceptional measure and of a limited period, and that it is conducted in the respect of fundamental guarantees, in particular the rights of the defence of detainees and the right to a fair trial within a reasonable time", - "values": [ - "Detention", - "Justice" - ] - }, - { - "text": "Actively implement existing legislation and strategies on violence against children and arrange an adequate juvenile justice system, with emphasis on raising the minimum age of criminal responsibility ", - "values": [ - "Justice", - "Rights of the Child" - ] - }, - { - "text": "Make available adequate resources for the awareness-raising and for the implementation of the National Human Rights Action Plan", - "values": [ - "General" - ] - }, - { - "text": "Consider the creation of additional national mechanisms to promote and protect human rights of vulnerable groups especially women, children, and people with disabilities", - "values": [ - "Disabilities", - "Rights of the Child", - "Women's rights" - ] - }, - { - "text": "Continue its efforts in establishing a national human rights institution", - "values": [ - "National Human Rights Institution" - ] - }, - { - "text": "Implement its commitment to increase the ODA (Official Development Aid) for developing countries, particularly least developed countries ", - "values": [ - "Development" - ] - }, - { - "text": "Take further measures to prevent and combat the sexual exploitation of children", - "values": [ - "Rights of the Child" - ] - }, - { - "text": "Continue empowering Bahraini women in the economic, political and social spheres", - "values": [ - "Women's rights" - ] - }, - { - "text": "Continue taking measures that guarantee the right to education of its population ", - "values": [ - "Right to education" - ] - }, - { - "text": "Continue its measures in promoting gender equality through the implementation of its National Gender Policy Action Plan for the period 2011 to 2021 ", - "values": [ - "Women's rights" - ] - }, - { - "text": "Revise the "Law on public associations" in order to guarantee the full enjoyment of the right to freedom of association in conformity with international rights and standards", - "values": [ - "Freedom of association and peaceful assembly", - "International instruments" - ] - }, - { - "text": "Take all possible steps in strengthening the capacity of Government Agencies identified for the implementation of the recommendations of the LLRC Action Plan", - "values": [ - "Justice" - ] - }, - { - "text": "Ensure democratic participation of members of all ethnic minorities and allow unhindered access to all minority areas, including Tibet ", - "values": [ - "Minorities" - ] - }, - { - "text": "Take necessary measures in the light of the law of 2009 and, in particular, reform the sponsorship system in order to protect employees in the event of conflict", - "values": [ - "Labour" - ] - }, - { - "text": "Early establishment of a National Human Rights Institution in Belgium", - "values": [ - "National Human Rights Institution" - ] - }, - { - "text": "Take note of the recommendations of the Committee on the Rights of the Child in the National Plan for the application of the CRC until 2016 ", - "values": [ - "International instruments", - "Rights of the Child", - "Treaty bodies" - ] - }, - { - "text": "Apply the Guiding Principles on Internal Displacement to all those impacted by the Fukushima Daiichi nuclear disaster in order to ensure full and equal participation for both women and men in decision-making processes regarding their resettlement", - "values": [ - "Internally displaced persons", - "Women's rights" - ] - }, - { - "text": "Explore the feasibility of establishing a network of mobile clinics in order to reach out to the widely dispersed population ", - "values": [ - "Right to health" - ] - }, - { - "text": "In line with its tradition as a resettlement country, reverse its policies of mandatory detention and offshore processing", - "values": [ - "Asylum-seekers - refugees", - "Detention", - "Migrants" - ] - }, - { - "text": "Establish a moratorium on the application of the death penalty with a view to abolishing it", - "values": [ - "Death penalty" - ] - }, - { - "text": "Revise the 2009 Law on non-governmental organizations so as to ensure that it complies with international human rights law ", - "values": [ - "Civil society", - "International instruments" - ] - }, - { - "text": "Abide by international humanitarian law, including by refraining from all deliberate, indiscriminate and disproportionate attacks against the civilian population and civilian infrastructure such as medical facilities", - "values": [ - "International humanitarian law" - ] - }, - { - "text": "Raise the minimum age for domestic work to 18 years of age, and strongly reconsider increasing the minimum wage in this sector", - "values": [ - "Labour", - "Rights of the Child" - ] - }, - { - "text": "Investigate and prosecute all perpetrators of violence and hate crimes against Roma ", - "values": [ - "Minorities", - "Racial discrimination" - ] - }, - { - "text": "Create a national registry of persons with albinism to prevent the killing of women and girls with albinism that are used for rituals", - "values": [ - "Minorities", - "Rights of the Child", - "Women's rights" - ] - }, - { - "text": "Analyse the possibility of ratifying the 1990 International Convention on the Protection of the Rights of All Migrant Workers and Members of Their Families ", - "values": [ - "International instruments", - "Labour", - "Migrants" - ] - }, - { - "text": "Respond favourably to the requests of the Special Rapporteur on trafficking in persons, especially women and children, to visit the country ", - "values": [ - "Rights of the Child", - "Special procedures", - "Trafficking", - "Women's rights" - ] - }, - { - "text": "Continue implementing the political empowerment programme launched in 2006 in promoting awareness and education in human rights, and ensure greater participation in accordance with best practices and standards in this field", - "values": [ - "Human rights education and training" - ] - }, - { - "text": "Prohibit and punish corporal punishment both in the home, as well as in public institutions such as schools and prisons ", - "values": [ - "Detention", - "Rights of the Child", - "Torture and other CID treatment" - ] - }, - { - "text": "Accede to the Second Optional Protocol to the International Covenant on Civil and Political Rights and abolish the death penalty in the domestic legislation", - "values": [ - "Death penalty", - "International instruments" - ] - }, - { - "text": "Continue to pay special attention to the situation of the Roma minority by strengthening its efforts to provide equal access to citizenship without discrimination based on ethnicity", - "values": [ - "Minorities", - "Racial discrimination", - "Statelessness and the right to nationality" - ] - }, - { - "text": "Ratify the Optional Protocol to the Convention against Torture and Other Cruel, Inhuman or Degrading Treatment or Punishment. Optional Protocol to the Convention against Torture (OPCAT) and implement the national prevention mechanism foreseen in this instrument", - "values": [ - "Detention", - "International instruments", - "Torture and other CID treatment" - ] - }, - { - "text": "Complete the procedure of accession to the Second Optional Protocol to the International Covenant on Civil and Political Rights, aiming at the abolition of the death penalty, to formalize the de facto moratorium on the death penalty ", - "values": [ - "Death penalty", - "International instruments" - ] - }, - { - "text": "Continue and strengthen its efforts regarding the prohibition of female genital mutilation", - "values": [ - "Rights of the Child", - "Torture and other CID treatment", - "Women's rights" - ] - }, - { - "text": "Provide appropriate services with the necessary resources, including to train and raise the awareness of the judiciary and the public, in order to ensure that these new measures adopted to fight racial discrimination or gender/sexual identity discrimination are effective", - "values": [ - "Human rights education and training", - "Racial discrimination", - "Sexual Orientation and Gender Identity" - ] - }, - { - "text": "Continue its cooperation with the UN human rights mechanisms as part of its on-going efforts to promote human rights ", - "values": [ - "Special procedures", - "Treaty bodies", - "UPR process" - ] - }, - { - "text": "Reform the judicial system to guarantee its neutrality and independence and assure access to justice for persons belonging to minorities and vulnerable groups", - "values": [ - "Justice", - "Minorities" - ] - }, - { - "text": "Continue efforts with regard to the ratification and implementation of the core human rights treaties and develop further the institutional framework for the implementation of human rights standards contained therein", - "values": [ - "International instruments" - ] - }, - { - "text": "Study the possibility of adopting new measures to strengthen the fight against discrimination, particularly with regards to persons of African descent", - "values": [ - "Minorities", - "Racial discrimination" - ] - }, - { - "text": "Take further measures to proceed with its judicial reform, to address land issues and to combat corruption, as these are important for the promotion and protection of human rights as well as the consolidation of democracy ", - "values": [ - "Corruption", - "Justice", - "Right to land" - ] - }, - { - "text": "Take, together with sensitization and awareness-raising campaigns, the necessary legislative measures to prohibit FGM.", - "values": [ - "Human rights education and training", - "Rights of the Child", - "Torture and other CID treatment", - "Women's rights" - ] - }, - { - "text": "Continue to implement legal and administrative measures to protect women from domestic and sexual violence", - "values": [ - "Rights of the Child", - "Women's rights" - ] - }, - { - "text": "Prosecute and convict perpetrators of domestic violence ", - "values": [ - "Rights of the Child", - "Women's rights" - ] - }, - { - "text": "Continue efforts to increase awareness on the rights of women and protection of the health of mothers and children, particularly in the remote regions of the country", - "values": [ - "Human rights education and training", - "Right to health", - "Rights of the Child", - "Women's rights" - ] - }, - { - "text": "Adopt comprehensive legislation or policies with a view to facilitating durable solutions for internally displaced persons ", - "values": [ - "Internally displaced persons" - ] - }, - { - "text": "Consider incorporating the "Bangkok Rules", to its internal regulations for the treatment of women prisoners", - "values": [ - "Detention", - "Women's rights" - ] - }, - { - "text": "Increase measures to prevent the "loan or rental of children" for sexual exploitation, carrying out forced labour activities and begging, as recommended by the Committee on the Rights of the Child ", - "values": [ - "Labour", - "Rights of the Child", - "Treaty bodies" - ] - }, - { - "text": "Promote, protect and respect the right to freedom of expression, assembly and association in compliance with the country\u2019s international human rights obligations", - "values": [ - "Freedom of association and peaceful assembly", - "Freedom of opinion and expression" - ] - }, - { - "text": "Consider ratifying the Optional Protocol to the International Covenant on Civil and Political Rights", - "values": [ - "CP rights - general", - "International instruments" - ] - }, - { - "text": "Strengthen its policy aimed at preventing torture, ill-treatment and other cruel or inhumane treatment by the sentence-execution officers in Georgian penitentiary establishments", - "values": [ - "Detention", - "Torture and other CID treatment" - ] - }, - { - "text": "Continue to call on the international community and donor countries to finance projects such as the initiative launched by the Government in 2006 to improve the lives of the Palestinian refugees and the living conditions in camps, and similar initiatives to ensure a life in dignity for Palestinian refugees until the time of their return to their Palestinian homeland, in cooperation with the international community", - "values": [ - "Asylum-seekers - refugees", - "Technical assistance and cooperation" - ] - }, - { - "text": "Improve conditions of detention and reduce the duration of detention with faster legal proceedings and investing into infrastructure to address prison overcrowding", - "values": [ - "Detention" - ] - }, - { - "text": "Ratify the Convention on the Rights of the Child and the Optional Protocol to the Convention against Torture and Other Cruel, Inhuman or Degrading Treatment or Punishment", - "values": [ - "Detention", - "International instruments", - "Rights of the Child", - "Torture and other CID treatment" - ] - }, - { - "text": "Adopt further measures to provide members of the police, prison and judicial staff with human rights training with specifically focused on protection of human rights of women, children, ethnic or national minorities, and also of persons of minority sexual orientation or gender identity ", - "values": [ - "Human rights education and training", - "Minorities", - "Rights of the Child", - "Sexual Orientation and Gender Identity", - "Women's rights" - ] - }, - { - "text": "Include in Swiss law provisions against hate crime and a provision to protect against discrimination and hate speech against specific groups including women, persons with disabilities and refugees", - "values": [ - "Asylum-seekers - refugees", - "Disabilities", - "Racial discrimination", - "Women's rights" - ] - }, - { - "text": "Continue to take steps to raise education standards", - "values": [ - "Right to education" - ] - }, - { - "text": "Ratify other important international human rights instruments, such as CRPD", - "values": [ - "Disabilities", - "International instruments" - ] - }, - { - "text": "Continue all efforts to provide accessible health care and medications to all citizens", - "values": [ - "Right to health" - ] - }, - { - "text": "Continue improving the conditions in prisons, particularly to focus on conditions around pretrial detention", - "values": [ - "Detention" - ] - }, - { - "text": "Comply with the obligations of an occupying power, in line with international humanitarian law, providing water and sanitation to the occupied population ", - "values": [ - "International humanitarian law", - "Right to water and sanitation" - ] - }, - { - "text": "Ban in law and prevent activities of the extremist organizations ", - "values": [ - "Racial discrimination" - ] - }, - { - "text": "Consider the possibility of adapting national legislation in order to allow for the ratification of ICRMW", - "values": [ - "International instruments", - "Labour", - "Migrants" - ] - }, - { - "text": "Continue working on the design of public policies to ensure access and continuance of children and adolescents in the different educational levels, especially children belonging to indigenous peoples and who are poor", - "values": [ - "Indigenous peoples", - "Poverty", - "Right to education", - "Rights of the Child" - ] - }, - { - "text": "Ensure that human rights abuses committed against human rights defenders, trade unionists and other advocacy groups are investigated thoroughly and those responsible are prosecuted.", - "values": [ - "Human rights defenders", - "Labour" - ] - }, - { - "text": "Recommended the decriminalization of defamation.", - "values": [ - "Freedom of opinion and expression" - ] - }, - { - "text": "Accede to the Rome Statute of the International Criminal Court", - "values": [ - "International instruments", - "Justice" - ] - }, - { - "text": "Conduct further human rights education activities for public servants, in particular law enforcement officers, with a view to keeping up with the constitutional and legal reform as well as newly joined international human rights legal instruments", - "values": [ - "Human rights education and training", - "International instruments" - ] - }, - { - "text": "Continue to take effective measures to overcome and solve the problem of income inequality in the country", - "values": [ - "Development" - ] - }, - { - "text": "Accede to or ratify the following international instruments: the Optional Protocol to the International Covenant on Economic, Social and Cultural Rights, the Optional Protocol to the Convention on the Elimination of all Forms of Discrimination Against Women, the Optional Protocol to the Convention against Torture and Other Cruel, Inhuman or Degrading Treatment or Punishment, and the International Convention for the Protection of All Persons from Enforced Disappearance", - "values": [ - "Detention", - "ESC rights - general", - "Enforced disappearances", - "International instruments", - "Torture and other CID treatment", - "Women's rights" - ] - }, - { - "text": "Continue the positive developments in the protection of foreign workers ", - "values": [ - "Migrants" - ] - }, - { - "text": "Accelerate the process of ratification as the concerned groups require the imminent protection of the Convention on the Rights of Persons with Disabilities", - "values": [ - "Disabilities", - "International instruments" - ] - }, - { - "text": "Align its norms to the human rights based approach in light of the new challenges faced", - "values": [ - "Other" - ] - }, - { - "text": "Put an end to unlimited detention on remand and free all persons detained without official accusation and trial", - "values": [ - "Detention", - "Justice" - ] - }, - { - "text": "Maintain the positive efforts of integrating a human rights approach into education policies at various levels", - "values": [ - "Human rights education and training" - ] - }, - { - "text": "Bring to account individuals and groups who use inflammatory rhetoric. ", - "values": [ - "Other" - ] - }, - { - "text": "Consider establishing an official moratorium on the use of death penalty with a view to abolishing it ", - "values": [ - "Death penalty" - ] - }, - { - "text": "Continue actions to improve compliance with the human right to water, in the framework of General Assembly resolution 64/292", - "values": [ - "Right to water and sanitation" - ] - }, - { - "text": "Provide all means and resources to allow children with disabilities to enjoy the right to education and have access to sport activities", - "values": [ - "Disabilities", - "Rights of the Child" - ] - }, - { - "text": "Take further steps to protect the LGBT population from intolerance, hate speech, and physical attacks as well as to ensure the better inclusion of the LBGT population and to promote tolerance in this regard ", - "values": [ - "Sexual Orientation and Gender Identity" - ] - }, - { - "text": "Amend its legislation, including the Public Order and Security Act, to enshrine the rights to freedom of peaceful assembly and of association and to freedom of expression ", - "values": [ - "Freedom of association and peaceful assembly", - "Freedom of opinion and expression" - ] - }, - { - "text": "Amend the law on citizenship in such a way that ensures that all Lebanese women, regardless of the nationality of their husband, can pass on their citizenship to their children and husbands", - "values": [ - "Women's rights" - ] - }, - { - "text": "Consider the possibility of ratifying the international Convention on the Protection of the Rights of All Migrant Workers and Members of Their Families ", - "values": [ - "International instruments", - "Labour", - "Migrants" - ] - }, - { - "text": "Provide for conscientious objectors various forms of alternative service which are compatible with the reasons for conscientious objection, of a non-combatant or civilian character, in the public interest and not of a punitive nature", - "values": [ - "Freedom of religion and belief" - ] - }, - { - "text": "Implement fully and immediately measures of protection for victims of domestic violence ", - "values": [ - "Rights of the Child", - "Women's rights" - ] - }, - { - "text": "With reference to the situation of children in detention, follow-up the recommendations in chapter VI of the Human Rights Council resolution on the Rights of the Child adopted in March 2012 ", - "values": [ - "Detention", - "Rights of the Child" - ] - }, - { - "text": "Develop awareness raising programmes against the scourge of gender-based violence amongst public officials, law enforcement personnel and members of the judiciary", - "values": [ - "Human rights education and training", - "Women's rights" - ] - }, - { - "text": "Focus on strengthening the legal framework, the institutions and the judiciary to guarantee an independent judicial system and the right to fair trial guaranteed by articles 9 and 14 of the International Covenant on Civil and Political Rights", - "values": [ - "CP rights - general", - "Justice" - ] - }, - { - "text": "Strengthen measures to ensure that the Roma population can fully enjoy their economic, social and cultural rights in a way comparable to the rest of the population", - "values": [ - "ESC rights - general", - "Minorities" - ] - }, - { - "text": "Continue implementing the 3N Initiative to guarantee the exercise of the right to food", - "values": [ - "Right to food" - ] - }, - { - "text": "Further develop policies and measures to promote the rights of the national minorities", - "values": [ - "Minorities" - ] - }, - { - "text": "Condemn publicly and take action to stop, including through full cooperation with the United Nations and regionally mandated investigations, all human rights abuses and violations of international humanitarian law, including abductions, torture and other ill-treatment, and attacks on civilians and on civilian objects such as medical facilities", - "values": [ - "International humanitarian law", - "Technical assistance and cooperation", - "Torture and other CID treatment" - ] - }, - { - "text": "Draft a comprehensive national plan of action on business and human rights, that would take into account the United Nations Guiding Principles in this regard", - "values": [ - "Business and human rights" - ] - }, - { - "text": "Continue efforts to enhance the welfare of migrant workers, including the domestic workers, and further strengthen the mechanism to prevent their possible exploitation", - "values": [ - "Labour", - "Migrants" - ] - }, - { - "text": "Accede to the Optional Protocol to the Convention on the Rights of the Child on the sale of children, child prostitution and child pornography ", - "values": [ - "International instruments", - "Rights of the Child", - "Trafficking" - ] - }, - { - "text": "Expedite the submission of reports to treaty bodies", - "values": [ - "Treaty bodies" - ] - }, - { - "text": "Take concrete actions to end the increasing gender gap in the area of employment and pay, thus ensuring equal remuneration for men and women", - "values": [ - "Women's rights" - ] - }, - { - "text": "Facilitate the registration of non-governmental organizations, and amend the Criminal Code, which criminalizes the activity of non-registered non-governmental organizations", - "values": [ - "Civil society" - ] - }, - { - "text": "Work to ensure executing the constitutional reform that aims at improving the level of compulsory education in order to ensure that education will contribute in the promotion of the principles of cultural diversity, equality in enjoying rights, and the importance of the family and others", - "values": [ - "ESC rights - general", - "Right to education" - ] - }, - { - "text": "Avoid besieging, and ensure for the population access to food, basic services and medical assistance", - "values": [ - "International humanitarian law" - ] - }, - { - "text": "Raise the age of criminal responsibility so that it complies with international standards as set out by the Convention on the Rights of the Child", - "values": [ - "International instruments", - "Justice", - "Rights of the Child" - ] - }, - { - "text": "Continue its efforts regarding access to health, environmental protection and the right to education, calling for technical and financial assistance to accompany the Government's efforts in these fields", - "values": [ - "Environment", - "Right to education", - "Right to health", - "Technical assistance and cooperation" - ] - }, - { - "text": "Provide unhindered access by the Netherlands Institute for Human Rights to places of detention to further strengthen its role in promoting human rights in the country", - "values": [ - "Detention" - ] - }, - { - "text": "Accede to the 1951 Convention on the Status of Refugees", - "values": [ - "Asylum-seekers - refugees", - "International instruments" - ] - }, - { - "text": "Share its successful experiences on poverty reduction, food security and the fight against epidemics", - "values": [ - "Poverty", - "Right to food", - "Right to health" - ] - }, - { - "text": "Sign the International Covenant on Civil and Political Rights and the International Covenant on Economic, Social and Cultural Rights.", - "values": [ - "CP rights - general", - "ESC rights - general", - "International instruments" - ] - }, - { - "text": "Ensure investigation of all cases of alleged violence against journalists.", - "values": [ - "Freedom of the press" - ] - }, - { - "text": "Provide better guarantees for the independence of the judiciary, including by reforming the Magistrates' High Council ", - "values": [ - "Justice" - ] - }, - { - "text": "Ensure in practice the accountability of law enforcement officers in cases of abuse", - "values": [ - "Human rights violations by state agents" - ] - }, - { - "text": "Give priority to the implementation of the National Action Plan for the reform of the asylum system and migration management ", - "values": [ - "Asylum-seekers - refugees", - "Migrants" - ] - }, - { - "text": "Act to eliminate differences in human rights between the European and Caribbean Netherlands", - "values": [ - "Other" - ] - }, - { - "text": "Address urgently the issue of impunity by strengthening the rule of law, including through a review of the judicial system", - "values": [ - "Impunity", - "Justice" - ] - }, - { - "text": "Establish a National Action Plan for the Implementation of Security Council Resolution 1325", - "values": [ - "Women's rights" - ] - }, - { - "text": "Continue its ongoing efforts towards the promotion and protection of the rights of indigenous persons, through law and practice, including by giving constitutional recognition", - "values": [ - "Indigenous peoples" - ] - }, - { - "text": "Accelerate the process of adopting a new federal Constitution", - "values": [ - "General" - ] - }, - { - "text": "Continue to further promote access to and quality of health facilities and services, particularly in providing efficient care for children and mothers", - "values": [ - "Right to health", - "Rights of the Child", - "Women's rights" - ] - }, - { - "text": "Ensure prompt registration of all new-born children", - "values": [ - "Rights of the Child" - ] - }, - { - "text": "Continue concentrating efforts towards older persons, with a view to adequately addressing the challenge resulting from an increasing number of elderly adults", - "values": [ - "Other" - ] - }, - { - "text": "Spare no efforts to firmly combat the practice of arbitrary and summary executions and the climate of impunity which prevails on its territory, with the assistance of the international community ", - "values": [ - "Extrajudicial executions", - "Impunity", - "Technical assistance and cooperation" - ] - }, - { - "text": "Further develop its sound and successful social policies to support the population, especially those most in need", - "values": [ - "ESC rights - general" - ] - }, - { - "text": "Formulate a national work plan for the implementation of the United Nations Guiding Principles on Business and Human Rights to ensure that multinational companies headquartered in Japan do not violate human rights", - "values": [ - "Business and human rights" - ] - }, - { - "text": "Lift all restrictions on movements of foreign journalists and international organizations defending human rights ", - "values": [ - "Civil society", - "Freedom of the press" - ] - }, - { - "text": "Continue to address the remaining challenges, including in empowering women and ensuring gender equality in purposeful manner ", - "values": [ - "Women's rights" - ] - }, - { - "text": "Step up its efforts to prevent cases of arbitrary arrests, detention and torture, and that those responsible be brought to justice", - "values": [ - "Detention", - "Torture and other CID treatment" - ] - }, - { - "text": "Seek technical assistance from the Office of the High Commissioner for Human Rights and the international community aimed for better strengthening and consolidation of the national human rights framework", - "values": [ - "Technical assistance and cooperation" - ] - }, - { - "text": "Take measures in order to allow the adoption of children by same-sex couples ", - "values": [ - "Sexual Orientation and Gender Identity" - ] - }, - { - "text": "Review existing land concessions and cancel or sanction those found to be violating the law", - "values": [ - "Right to land" - ] - }, - { - "text": "Take further steps in bringing domestic legislation and policies in line with its obligations under core human rights instruments such as the Convention against Torture and the CRPD", - "values": [ - "Disabilities", - "International instruments", - "Torture and other CID treatment" - ] - }, - { - "text": "Develop a strategy for achieving the complete eradication of the practice of slavery and all its forms and remedy its after-effects on women and children ", - "values": [ - "Rights of the Child", - "Women's rights" - ] - }, - { - "text": "Implement the opinions of the Working Group on Arbitrary Detention on individuals and release the individuals concerned ", - "values": [ - "Detention", - "Special procedures" - ] - }, - { - "text": "Drive forward legislative reforms and adopt administrative measures to eradicate torture in law and in practice", - "values": [ - "Torture and other CID treatment" - ] - }, - { - "text": "Continue further improvement of human rights in the country", - "values": [ - "General" - ] - }, - { - "text": "Address concerns over migrant detention centre conditions, including by guaranteeing the right to obtain speedy judicial review of the lawfulness of any detention and to be released if detention is determined unlawful ", - "values": [ - "Detention", - "Migrants" - ] - }, - { - "text": "Conduct thorough and impartial investigation into allegations that the police or any person of the justice system has taken part in discriminatory actions", - "values": [ - "Human rights violations by state agents" - ] - }, - { - "text": "Consolidate the progress made towards reaching the Millennium Development Goals and in the improvement of human development indicators", - "values": [ - "Development" - ] - }, - { - "text": "Align its national legislation with the Rome Statute, including by incorporating provisions to cooperate promptly and fully with the International Criminal Court and investigate and prosecute genocide, crimes against humanity and war crimes effectively before its national courts", - "values": [ - "International instruments", - "Justice" - ] - }, - { - "text": "Have competent bodies investigate all pending complaints about torture and enforced or involuntary disappearance and bring the perpetrators to trial ", - "values": [ - "Enforced disappearances", - "Torture and other CID treatment" - ] - }, - { - "text": "Prohibit racial discrimination and racist hate speech, as well as broaden the protection afforded by law", - "values": [ - "Racial discrimination" - ] - }, - { - "text": "Consider ratifying the Second Optional Protocol to ICCPR", - "values": [ - "Death penalty", - "International instruments" - ] - }, - { - "text": "Put an end to any discrimination against same-sex sexual activity between consenting adults, in particular by revising any discriminatory legislation, and adopt measures to promote tolerance in this regard.", - "values": [ - "Sexual Orientation and Gender Identity" - ] - }, - { - "text": "Continue to seek support to address the issue of internally displaced persons", - "values": [ - "Internally displaced persons" - ] - }, - { - "text": "Allocate more resources to support the on-going reform process aimed at consolidating democracy and the rule of law ", - "values": [ - "Justice" - ] - }, - { - "text": "Intensify the fight against the exploitation of children in all its forms ", - "values": [ - "Rights of the Child" - ] - }, - { - "text": "Ratify the Rome Statute that it signed on 20 December 2000", - "values": [ - "International instruments", - "Justice" - ] - }, - { - "text": "Undertake more effective measures to address the problems of impunity and violence against women and girls, including by strengthening law enforcement and the judicial system ", - "values": [ - "Impunity", - "Justice", - "Rights of the Child", - "Women's rights" - ] - }, - { - "text": "Follow up on the request of the Human Rights Committee, suggesting the complete incorporation of the provisions of the Convention on the Elimination of All Forms of Discrimination against Women in its national legislation", - "values": [ - "International instruments", - "Women's rights" - ] - }, - { - "text": "Strengthen support measures for vulnerable persons", - "values": [ - "Minorities" - ] - }, - { - "text": "Take practical steps to fulfil its reporting obligations to the different United Nations treaty bodies and to seek technical assistance from OHCHR in this regard", - "values": [ - "Technical assistance and cooperation", - "Treaty bodies" - ] - }, - { - "text": "Withdraw its interpretative declaration on the International Convention on the Elimination of All Forms of Racial Discrimination and its reservation to article 4", - "values": [ - "International instruments", - "Racial discrimination" - ] - }, - { - "text": "Abolish the death penalty and, in any event, establish a moratorium as an interim measure towards full abolition ", - "values": [ - "Death penalty" - ] - }, - { - "text": "Repeal provisions for mandatory death penalty ", - "values": [ - "Death penalty" - ] - }, - { - "text": "Investigate all cases of violence and xenophobic attacks, including any type of participation in these crimes by the forces of public order and of the staff of detention centres", - "values": [ - "Detention", - "Human rights violations by state agents", - "Racial discrimination" - ] - }, - { - "text": "Continue efforts to strengthen the rule of law by ensuring greater effectiveness and transparency in the judicial system, combating corruption, and investigating all reports of abuse and torture by police", - "values": [ - "Corruption", - "Human rights violations by state agents", - "Justice", - "Torture and other CID treatment" - ] - }, - { - "text": "Continue to promote women empowerment", - "values": [ - "Women's rights" - ] - }, - { - "text": "Take necessary measures and steps to improve legislation on the right to health and ensure access for all persons to health services without discrimination ", - "values": [ - "Right to health" - ] - }, - { - "text": "Devise and implement an appropriate determination procedure to identify stateless persons within the Bahamas and afford them adequate protection", - "values": [ - "Statelessness and the right to nationality" - ] - }, - { - "text": "Continue its efforts to mitigate the negative impacts of the economic crisis and austerity measures on the most disadvantaged segments of the population", - "values": [ - "Development", - "ESC rights - general" - ] - }, - { - "text": "Continue trainings and human rights education of the judiciary ", - "values": [ - "Human rights education and training" - ] - }, - { - "text": "Increase efforts aiming to guarantee the right to freedom of religion and belief", - "values": [ - "Freedom of religion and belief" - ] - }, - { - "text": "Enhance activities aimed at eliminating discrimination against women, which particularly affects women from lower castes", - "values": [ - "Minorities", - "Women's rights" - ] - }, - { - "text": "Take measures to fully guarantee the respect of freedom of expression and of freedom of association and assembly", - "values": [ - "Freedom of association and peaceful assembly", - "Freedom of opinion and expression" - ] - }, - { - "text": "Declare a moratorium on the death penalty with a view to abolishing it, and commute the death penalty sentence by prison sentences", - "values": [ - "Death penalty" - ] - }, - { - "text": "Intensify its efforts to combat racial discrimination, xenophobia and intolerance, and to encourage high level politicians to take a clear stand against these scourges ", - "values": [ - "Racial discrimination" - ] - }, - { - "text": "Support the efforts made to establish the procedures for transitional justice under the 2000 Arusha agreements, in particular setting up methods for national consultations, as called for by the Security Council in its resolution 1606 (2005).", - "values": [ - "Justice" - ] - }, - { - "text": "Continue its commitment to resolving the issue of abuse of power and excessive use of force.", - "values": [ - "Human rights violations by state agents", - "Justice" - ] - }, - { - "text": "Take further necessary measures to increase and strengthen the participation of women in designing and implementing local development plans, and pay special attention to the needs of rural women ", - "values": [ - "Women's rights" - ] - }, - { - "text": "Adopt international human right standards to deal with the problem of female genital mutilation", - "values": [ - "Rights of the Child", - "Torture and other CID treatment", - "Women's rights" - ] - }, - { - "text": "Take necessary measures to eliminate worst forms of child labour, specifically in mining, forced begging, and commercial sexual exploitation", - "values": [ - "Business and human rights", - "Labour", - "Rights of the Child" - ] - }, - { - "text": "Consider ratifying the Convention against Transnational Organized Crime and its Protocol", - "values": [ - "International instruments", - "Trafficking" - ] - }, - { - "text": "Ratify the Council of Europe Convention on Preventing and Combating Violence against Women and Domestic Violence (The Istambul Convention)", - "values": [ - "International instruments", - "Rights of the Child", - "Women's rights" - ] - }, - { - "text": "Speed up the adoption of the draft law on exempting disabled children from transportation costs within and outside cities ", - "values": [ - "Disabilities", - "Rights of the Child" - ] - }, - { - "text": "Focus on addressing discrimination against persons with disabilities", - "values": [ - "Disabilities" - ] - }, - { - "text": "Consider the possibility of ratifying ICRMW of 1990", - "values": [ - "International instruments", - "Labour", - "Migrants" - ] - }, - { - "text": "Issue a standing invitation to the special procedures of the United Nations Human Rights Council and enhance its cooperation with all human rights bodies", - "values": [ - "Special procedures", - "Treaty bodies" - ] - }, - { - "text": "Further strengthen its norms, in conformity with the provisions of the Refugee Conventions, including procedures for asylum request, non-refoulement and access to legal advice, among others", - "values": [ - "Asylum-seekers - refugees", - "International instruments" - ] - }, - { - "text": "Take efficient measures to combat corruption.", - "values": [ - "Corruption" - ] - }, - { - "text": "Call for the international community to provide full technical and financial support as a way of improving the national machinery for the advancement of women.", - "values": [ - "Technical assistance and cooperation", - "Women's rights" - ] - }, - { - "text": "Fully implement the measures of the National Action Plan on Gender Equality for 2007-2013, especially those regarding the rights of women in the labour market ", - "values": [ - "Women's rights" - ] - }, - { - "text": "Introduce a formal moratorium on executions", - "values": [ - "Death penalty" - ] - }, - { - "text": "Make efforts to review existing relevant legislation to secure the full exercise of the freedom of expression and association", - "values": [ - "Freedom of association and peaceful assembly", - "Freedom of opinion and expression" - ] - }, - { - "text": "Consider establishing a human rights watchdog at the national level, with a proper mandate and adequate resources, in line with the Paris Principles", - "values": [ - "National Human Rights Institution" - ] - }, - { - "text": "Eliminate reported discrimination against religious minorities such as the Baha'is and offer better legal protection to such communities", - "values": [ - "Freedom of religion and belief", - "Minorities", - "Racial discrimination" - ] - }, - { - "text": "Significantly simplify the procedures for the registration of civil society associations, organizations and foundations and ensure that the legal and political framework is in line with international standards", - "values": [ - "Civil society", - "Freedom of association and peaceful assembly" - ] - }, - { - "text": "Continue taking steps to reduce gender-based violence and promoting gender equality", - "values": [ - "Women's rights" - ] - }, - { - "text": "Eliminate from legislation the concept of preventive detention on the grounds of threats to public security or property and ensure due process in all detentions", - "values": [ - "Detention" - ] - }, - { - "text": "Keep carrying out the relevant measures, including better social services for dealing with the problems of Moroccans living abroad ", - "values": [ - "Other" - ] - }, - { - "text": "Establish an inclusive dialogue on the universal basic income as a tool to improve the current social security system, in consultation with all stakeholders", - "values": [ - "Other" - ] - }, - { - "text": "Expedite the adoption of laws and programmes designed to ensure effective access to justice for all victims of wartime sexual violence, including adequate reparation", - "values": [ - "Justice", - "Rights of the Child", - "Women's rights" - ] - }, - { - "text": "Guarantee the freedom of expression and peaceful assembly, as well as the free activity of human rights defenders, to independent journalists and political opponents ", - "values": [ - "Freedom of association and peaceful assembly", - "Freedom of opinion and expression", - "Freedom of the press", - "Human rights defenders" - ] - }, - { - "text": "Better deploy resources, including manpower, to enhance the capacity of the Office of the Ombudsman ", - "values": [ - "National Human Rights Institution" - ] - }, - { - "text": "Revise vague national security laws that are used to suppress universal rights, and unconditionally release all political prisoners, such as Dr. Cu Huy Ha Vu, Le Quoc Quan, Dieu Cay and Tran Huynh Duy Thuc ", - "values": [ - "Detention", - "Freedom of opinion and expression" - ] - }, - { - "text": "Provide additional and adequate resources to the Ombudsperson\u2019s Office, in order to enable the institution to perform the mandate of the National Preventive Mechanism effectively", - "values": [ - "Detention", - "Torture and other CID treatment" - ] - }, - { - "text": "Continue to increase efforts to prevent and fight trafficking in persons, including by adopting measures necessary for the prosecution and punishment of perpetrators of trafficking in persons, and to ensure the provision of the access to shelter and rehabilitation to victims ", - "values": [ - "Trafficking" - ] - }, - { - "text": "Ensure thorough and independent investigations into violent deaths and commit to bringing to justice those involved in abuses, including security forces", - "values": [ - "Human rights violations by state agents" - ] - }, - { - "text": "Continue strengthening legislation aimed at protecting victims of domestic violence", - "values": [ - "Rights of the Child", - "Women's rights" - ] - }, - { - "text": "Abolish military training for children", - "values": [ - "Rights of the Child" - ] - }, - { - "text": "Redouble its efforts to implement the principle of equal pay for work of equal value, including through the further development of the Equal Pay Programme", - "values": [ - "Labour" - ] - }, - { - "text": "Implement measures to eliminate the practice of customary law and traditional codes of conduct discriminating against women ", - "values": [ - "Women's rights" - ] - }, - { - "text": "Continue activities to increase access for children to education, promote maternal and infant health, and eradicate trafficking in persons ", - "values": [ - "Right to education", - "Right to health", - "Rights of the Child", - "Trafficking", - "Women's rights" - ] - }, - { - "text": "Typify the crimes of international law, enacting and enforcing legislation defining and criminalizing torture, enforced disappearance, genocide and crimes against humanity, and ensure the non-application of statutes of limitation, amnesties, pardons prior to conviction and immunities", - "values": [ - "Enforced disappearances", - "Justice", - "Torture and other CID treatment" - ] - }, - { - "text": "Complete its procedure to accede to CEDAW ", - "values": [ - "International instruments", - "Women's rights" - ] - }, - { - "text": "Take legal measures in order to combat racist, xenophobic and Islamophobic acts and their manifestations", - "values": [ - "Freedom of religion and belief", - "Racial discrimination" - ] - }, - { - "text": "Redouble its efforts to eliminate any remaining forms of discrimination and xenophobia", - "values": [ - "Racial discrimination" - ] - }, - { - "text": "Ratify the Convention against Torture and Other Cruel, Inhuman or Degrading Treatment or Punishment and its Optional Protocol, the Convention on the Rights of Persons with Disabilities, the International Convention on the Protection of all Persons from Enforced Disappearance and the Rome Statute ", - "values": [ - "Detention", - "Disabilities", - "Enforced disappearances", - "International instruments", - "Justice", - "Torture and other CID treatment" - ] - }, - { - "text": "Adopt necessary measures and legislation to protect the rights of all migrant workers in the country", - "values": [ - "Labour", - "Migrants" - ] - }, - { - "text": "Accede to the Convention on the Rights of Persons with Disabilities", - "values": [ - "Disabilities", - "International instruments" - ] - }, - { - "text": "Take further steps to encourage migrant children in all federal states to strive for higher education or to complete professional training after leaving school ", - "values": [ - "Migrants", - "Right to education", - "Rights of the Child" - ] - }, - { - "text": "Continue to work over the challenges and the constraints it is facing in its endeavour to promote and protect human rights", - "values": [ - "General" - ] - }, - { - "text": "Accelerate efforts to prevent minors from being subjected to forced or hazardous domestic labour ", - "values": [ - "Labour", - "Rights of the Child" - ] - }, - { - "text": "Ratify the International Convention for the Protection of All Persons from Enforced Disappearance, the International Convention on the Protection of the Rights of All Migrant Workers and Members of Their Families", - "values": [ - "Enforced disappearances", - "International instruments", - "Labour", - "Migrants" - ] - }, - { - "text": "Enhanced and steadier efforts by the Democratic People's Republic of Korea and the other relevant stakeholders towards constructive engagement in genuine dialogue and effective cooperation in order to settle the matters of mutual concern", - "values": [ - "General" - ] - }, - { - "text": "Take the necessary measures to prevent domestic violence, through the creation of a national action plan, in particular Finland was urged that the violence not be classified depending on the degree of violence or threat used by the author ", - "values": [ - "Rights of the Child", - "Women's rights" - ] - }, - { - "text": "Review the incommunicado detention regime by ensuring that access to legal assistance upon detention is not delayed, that detainees have the possibility to communicate with a lawyer of their own choice in private and that they are brought in front of a judge within 72 hours", - "values": [ - "Detention" - ] - }, - { - "text": "Make progress in the abolition of the death penalty through ratification of the Second Optional Protocol to the International Covenant on Civil and Political Rights, aiming at the abolition of the death penalty, recognizing the existing moratorium", - "values": [ - "Death penalty", - "International instruments" - ] - }, - { - "text": "Undertake a thorough assessment of the issue of trafficking in persons and take adequate measures, including enactment of adequate legislation to combat the practice as recommended by the UNHCR ", - "values": [ - "Trafficking" - ] - }, - { - "text": "Allocate sufficient resources to national institutions responsible for implementing the national strategic plan to eliminate gender-based violence", - "values": [ - "Women's rights" - ] - }, - { - "text": "Continue the current practice of granting clemency and commuting death sentences, establish an official moratorium on executions and continue the public discourse to finally abolish the death penalty", - "values": [ - "Death penalty" - ] - }, - { - "text": "To provide training for members of the Interministerial Support Committee for the Preparation of Reports", - "values": [ - "Treaty bodies", - "UPR process" - ] - }, - { - "text": "Continue with measures to improve the conditions of access to education and to health services for all, without discrimination ", - "values": [ - "Right to education", - "Right to health" - ] - }, - { - "text": "Amend section 377 of the Penal Code in order to decriminalize consensual sexual activity among persons of the same sex", - "values": [ - "Sexual Orientation and Gender Identity" - ] - }, - { - "text": "Intensify the efforts to criminalize and diminish all types of violence against women", - "values": [ - "Women's rights" - ] - }, - { - "text": "Ratify the Optional Protocol to the International Covenant on Economic, Social and Cultural Rights and the International Convention on the Protection of the Rights of All Migrant Workers and Members of Their Families.", - "values": [ - "ESC rights - general", - "International instruments", - "Labour", - "Migrants" - ] - }, - { - "text": "Ensure that civil society actors, including marginalized groups like those representing LGBT persons, are included in the implementation and follow-up of human rights obligations, including UPR recommendations", - "values": [ - "Civil society", - "Sexual Orientation and Gender Identity", - "UPR process" - ] - }, - { - "text": "Ensure a rapid return to constitutional rule through the organization of free and transparent elections", - "values": [ - "Elections" - ] - }, - { - "text": "Ensure refugee/asylum-seekers get their rights", - "values": [ - "Asylum-seekers - refugees" - ] - }, - { - "text": "Work out methods for implementing the relevant regulations on social security for religious staff", - "values": [ - "Labour" - ] - }, - { - "text": "Investigate and prosecute those responsible for abductions and forced disappearances and increase awareness of the State security services about these offences", - "values": [ - "Enforced disappearances" - ] - }, - { - "text": "Immediately and unconditionally release the estimated 2,200 political prisoners ", - "values": [ - "Detention", - "Freedom of opinion and expression" - ] - }, - { - "text": "Continue strengthening its efforts to combat trafficking in persons, including through regional and international cooperation ", - "values": [ - "Technical assistance and cooperation", - "Trafficking" - ] - }, - { - "text": "Work to hold perpetrators of xenophobic violence to account", - "values": [ - "Racial discrimination" - ] - }, - { - "text": "Continue its investigations of public servants and political leaders who have links with paramilitary groups.", - "values": [ - "Justice" - ] - }, - { - "text": "Impose a moratorium on executions with a view to abolishing the death penalty nationwide", - "values": [ - "Death penalty" - ] - }, - { - "text": "Further enhance its efforts in social protection and security for people living in poverty, such as considering formulating the necessary poverty alleviation and homelessness strategies ", - "values": [ - "Poverty", - "Right to housing" - ] - }, - { - "text": "Continue the efforts to develop the health and education public services ", - "values": [ - "Right to education", - "Right to health" - ] - }, - { - "text": "Ratify the International Convention on the Rights of All Migrant Workers and Members of Their Families and the ILO Domestic Workers Convention, 2011 (No. 189)", - "values": [ - "International instruments", - "Labour", - "Migrants" - ] - }, - { - "text": "Adopt legislative measures necessary so that journalists are not persecuted while exercising their profession and violations of the limits on freedom of expression are not sanctioned criminally ", - "values": [ - "Freedom of opinion and expression", - "Freedom of the press" - ] - }, - { - "text": "Reform the Labour Code so that it ensures the protection of the labour rights of all workers, including domestic and construction workers, and put in place mechanisms to improve enforcement of the law ", - "values": [ - "Labour" - ] - }, - { - "text": "Strengthen the protection of women and children by modifying section 375 of the Penal Code, which does not recognize marital rape even when the spouse is a minor ", - "values": [ - "Rights of the Child", - "Women's rights" - ] - }, - { - "text": "Adopt a comprehensive programme on sexual and reproductive health and rights, based on international human rights and WHO standards, and involve non-governmental organizations working on women's rights and on reproductive rights in the preparation and implementation of this programme ", - "values": [ - "Civil society", - "International instruments", - "Right to health", - "Rights of the Child", - "Women's rights" - ] - }, - { - "text": "Share experiences in the implementation of the Zero Malnutrition Programme and the Juana Azurduy voucher programme, which has reduced the maternal mortality and child malnutrition rates", - "values": [ - "Right to food", - "Right to health", - "Rights of the Child", - "Women's rights" - ] - }, - { - "text": "Introduce a closer cooperation with special procedures and provide them with a standing invitation ", - "values": [ - "Special procedures" - ] - }, - { - "text": "Liechtenstein will intensify its examination of the necessary implementation measures with a view to a possible accession to the Convention on the Rights of Persons with Disabilities and its Optional Protocol", - "values": [ - "Disabilities", - "International instruments" - ] - }, - { - "text": "Complete the enactment of the draft child protection act", - "values": [ - "Rights of the Child" - ] - }, - { - "text": "Increase attention to the integration process for refugees", - "values": [ - "Asylum-seekers - refugees" - ] - }, - { - "text": "Increase the capacity of the Ombudsman's Office, the Belize Police Department's Professional Standards Board, and other human rights-related institutions through internal efforts and by seeking assistance in these areas from international development partners", - "values": [ - "National Human Rights Institution", - "Technical assistance and cooperation" - ] - }, - { - "text": "Take measures to fight against and prevent child ill-treatment, in particular abuse of street children", - "values": [ - "Rights of the Child", - "Torture and other CID treatment" - ] - }, - { - "text": "Continue its measures in favour of economic, social and cultural rights ", - "values": [ - "ESC rights - general" - ] - }, - { - "text": "Take all the necessary measures including law reform initiatives to eliminate violence against children in all its forms, including corporal punishment", - "values": [ - "Rights of the Child", - "Torture and other CID treatment" - ] - }, - { - "text": "With reference to a recommendation of the ICJ (International Commission of Jurists), adopt legislation to enable registered South African companies to be held liable for violations of human and labour rights beyond South Africa's borders ", - "values": [ - "Business and human rights", - "Labour" - ] - }, - { - "text": "Take measures to protect the independence and impartiality of the judiciary", - "values": [ - "Justice" - ] - }, - { - "text": "Finland renewed its commitment, presented during the first universal periodic review of Finland, regarding the development assistance objective, as further elaborated in the national report for the second universal periodic review.", - "values": [ - "Development", - "UPR process" - ] - }, - { - "text": "Namibia shall continue to engage constructively in the deliberations of the Human Rights Council, its subsidiary bodies and mechanisms.", - "values": [ - "Special procedures", - "UPR process" - ] - }, - { - "text": "Continue working with the national mechanisms that defend the social rights of the most vulnerable groups of the population", - "values": [ - "ESC rights - general" - ] - }, - { - "text": "Strengthen legislation and establish clear guidelines and measures to prevent child exploitation and their commercial sexual exploitation", - "values": [ - "Rights of the Child" - ] - }, - { - "text": "Ratify CEDAW and its Optional Protocol", - "values": [ - "International instruments", - "Women's rights" - ] - }, - { - "text": "Continue providing training in international humanitarian law to judges, prosecutors, the police and the defence forces ", - "values": [ - "Human rights education and training", - "International humanitarian law" - ] - }, - { - "text": "Strengthen women's participation in politics ", - "values": [ - "Women's rights" - ] - }, - { - "text": "Further protect and promote the rights of minorities in the country", - "values": [ - "Minorities" - ] - }, - { - "text": "Enforce fully recently introduced legislation to protect women and girls from gender-based violence, including prosecutions for individuals suspected of human trafficking", - "values": [ - "Rights of the Child", - "Trafficking", - "Women's rights" - ] - }, - { - "text": "That all parties to the conflict in Libya cease violations of international humanitarian and human rights law, including attacks on civilians, as in line with previous appeals by the High Commissioner", - "values": [ - "International humanitarian law", - "International instruments" - ] - }, - { - "text": "Prepare and adopt legal and administrative measures with a view to investigating and prosecuting acts of discrimination, stigmatization and violence against LGBTI persons", - "values": [ - "Sexual Orientation and Gender Identity" - ] - }, - { - "text": "Take effective measures to deal with violence against women and girls ", - "values": [ - "Rights of the Child", - "Women's rights" - ] - }, - { - "text": "Comply with the UN Special Rapporteur's recommendation to adopt and implement a national water strategy and plan of action covering the entire population ", - "values": [ - "Right to water and sanitation", - "Special procedures" - ] - }, - { - "text": "Ratify promptly the Optional Protocol to the Convention on the Rights of the Child on the involvement of children in armed conflict", - "values": [ - "International humanitarian law", - "International instruments", - "Rights of the Child" - ] - }, - { - "text": "Take effective measures to improve conditions of detention, in particular to reduce overcrowding and violent crimes in prisons, as well as to improve prisoners' access to educational and health services ", - "values": [ - "Detention" - ] - }, - { - "text": "Continue taking efficient measures to eliminate prohibited child labour and prostitution, and to combat the phenomenon of children living in the street, and monitor appropriately the efficiency of measures taken ", - "values": [ - "Labour", - "Rights of the Child" - ] - }, - { - "text": "Adopt a National Plan of Action as well as a specific Law to combat the sale of children, child prostitution and child pornography ", - "values": [ - "Rights of the Child", - "Trafficking" - ] - }, - { - "text": "Standing invitation to special procedures: the Government was considering with interest the possibility of extending a standing invitation to the special procedures in the near future.", - "values": [ - "Special procedures" - ] - }, - { - "text": "Strengthen the implementation of its Human Trafficking and Transportation (Control) Act 2007 and its Regulation 2008 ", - "values": [ - "Trafficking" - ] - }, - { - "text": "Continue efforts for judicial reforms, particularly through strengthening the independence of judges and enhancing their capacities", - "values": [ - "Justice" - ] - }, - { - "text": "Ensure that all complaints on gender-based violence, regardless of perpetrators, be investigated and brought to justice ", - "values": [ - "Women's rights" - ] - }, - { - "text": "Release individuals incarcerated for publicly expressing their opinions and ensure due process for other detainees ", - "values": [ - "Detention", - "Freedom of opinion and expression" - ] - }, - { - "text": "Continue the positive work in combating racial discrimination and other forms of intolerance", - "values": [ - "Racial discrimination" - ] - }, - { - "text": "Consider the abolition of the death penalty.", - "values": [ - "Death penalty" - ] - }, - { - "text": "Enter into further agreements with countries hosting its migrants workers", - "values": [ - "Labour", - "Migrants" - ] - }, - { - "text": "Ratify the International Convention for the Protection of All Persons from Enforced Disappearance and recognise the competence of the Committee on Enforced Disappearances", - "values": [ - "Enforced disappearances", - "International instruments", - "Treaty bodies" - ] - }, - { - "text": "Continue improving all the conditions for worship, and strengthen awareness and dissemination of the values of tolerance and peace", - "values": [ - "Freedom of religion and belief" - ] - }, - { - "text": "Consider ratifying the International Labour Organization Domestic Workers Convention, 2011 (No. 189) ", - "values": [ - "International instruments", - "Labour" - ] - }, - { - "text": "Review laws and measures to ensure that restrictions imposed on freedom of expression are in conformity with the ICCPR to which Pakistan is signatory.", - "values": [ - "CP rights - general", - "Freedom of opinion and expression", - "International instruments" - ] - }, - { - "text": "Repeal penal sanctions on homosexuality in the police force", - "values": [ - "Sexual Orientation and Gender Identity" - ] - }, - { - "text": "Ensure equality of the rights of children born out of wedlock in unions which have not been sanctioned by courts", - "values": [ - "Rights of the Child" - ] - }, - { - "text": "Work to combat the danger of Islamophobia in society and political discourse and establish a comprehensive system for recording and monitoring racist crimes committed in Austria ", - "values": [ - "Freedom of religion and belief" - ] - }, - { - "text": "Continue cooperation and strengthen human rights dialogue with relevant international human rights mechanisms despite all obstacles and existing challenges while remaining confident of its will and its way to proceed according to its needs and national priorities ", - "values": [ - "General" - ] - }, - { - "text": "Promote gender equality in all socioeconomic spheres", - "values": [ - "Women's rights" - ] - }, - { - "text": "Continue the efforts to enhance women's education through the effective programmes adopted by the Yemeni Government ", - "values": [ - "Right to education", - "Women's rights" - ] - }, - { - "text": "Further efforts to establish a national human rights institution in full compliance with the Paris Principles in order to deepen the scope of the human rights protection in the Republic of Yemen ", - "values": [ - "National Human Rights Institution" - ] - }, - { - "text": "Step up efforts towards establishment of a national human rights institution in line with the Paris Principles", - "values": [ - "National Human Rights Institution" - ] - }, - { - "text": "Forcefully denounce attacks against human rights defenders and that State authorities give human rights defenders legitimacy and recognition through supportive statements. ", - "values": [ - "Human rights defenders" - ] - }, - { - "text": "Continue work aimed at ratification of international instruments, including the Convention on the Rights of Persons with Disabilities and the Second Optional Protocol to the International Covenant on Civil and Political Rights", - "values": [ - "Death penalty", - "Disabilities", - "International instruments" - ] - }, - { - "text": "Continue its reforms to improve policies and programmes towards promotion and protection of all human rights", - "values": [ - "General" - ] - }, - { - "text": "Accelerate tackling gender inequality, effectively protect women's rights and strike down at violence against women", - "values": [ - "Women's rights" - ] - }, - { - "text": "Ensure that multinational business enterprises and their subsidiaries are legally accountable for any violations of children\u2019s rights and human rights in general", - "values": [ - "Business and human rights" - ] - }, - { - "text": "Modify articles 6 and 9 of the bill repealing the Decree No. 100/187/91 on the regulation of public manifestations and public meetings, which would allow especially authorities to "delegate one or more official(s) mandated to attend to any public meeting and ensure the conformity with its obligations regarding human rights" ", - "values": [ - "Freedom of association and peaceful assembly" - ] - }, - { - "text": "Continue its efforts to throw light on the violations of the right to life, personal integrity and freedom perpetrated under its jurisdiction, in accordance with what has been requested in successive United Nations General Assembly resolutions ", - "values": [ - "General" - ] - }, - { - "text": "Harmonize its national laws in line with the Convention on the Rights of the Child and the Convention on the Elimination of All Forms of Discrimination against Women in accordance with relevant guidelines by Treaty bodies", - "values": [ - "International instruments", - "Rights of the Child", - "Treaty bodies", - "Women's rights" - ] - }, - { - "text": "Continue the implementation of bilingual education with adequate resources ", - "values": [ - "Right to education" - ] - }, - { - "text": "Assign the necessary human and financial resources for the prompt implementation of the National Strategy to Prevent Chronic Malnutrition 2016-2020", - "values": [ - "Right to food" - ] - }, - { - "text": "Set up an independent body responsible for human rights", - "values": [ - "National Human Rights Institution" - ] - }, - { - "text": "Strengthen efforts to bring national legislation into line with the Constitution and with its international human rights obligations, especially with regard to the right to freedoms of assembly, expression and association", - "values": [ - "Freedom of association and peaceful assembly", - "Freedom of opinion and expression", - "International instruments" - ] - }, - { - "text": "Take measures to reduce inequalities between social categories, in particular regarding the youth ", - "values": [ - "Development" - ] - }, - { - "text": "Complete the ratification process of OP-ICESCR ", - "values": [ - "ESC rights - general", - "International instruments" - ] - }, - { - "text": "Ensure that all perpetrators of trafficking in persons are investigated and prosecuted, and provide adequate protection, reparation and compensation and rehabilitation to the victims", - "values": [ - "Trafficking" - ] - }, - { - "text": "Immediately return civilian prosecutions to civilian courts and rescind Orders 3/2558 and 13/2559 of the National Council for Peace and Order ", - "values": [ - "Justice" - ] - }, - { - "text": "Adopt a criminal code which clearly defines a number of criminal offences that affect women and girls, and which includes clear guidelines on enforcement mechanisms, monitoring and coordination bodies, and sanctions for perpetrators", - "values": [ - "Rights of the Child", - "Women's rights" - ] - }, - { - "text": "Consider allocating adequate funding to anti-trafficking initiatives in order to ensure the successful implementation of the national action plan for the period 2016-2020", - "values": [ - "Trafficking" - ] - }, - { - "text": "Respect the provisions of the International Covenant on Civil and Political Rights and the Convention against Torture, and the recommendations of intergovernmental human rights mechanisms, and also cooperate with special procedures \n", - "values": [ - "CP rights - general", - "International instruments", - "Special procedures", - "Torture and other CID treatment" - ] - }, - { - "text": "Take all necessary steps to eliminate harmful practices towards girls, as well as release all children who are subjected to the trokosi practice", - "values": [ - "Rights of the Child", - "Torture and other CID treatment", - "Women's rights" - ] - }, - { - "text": "Promote gender equality including through an awareness-raising programme to combat negative stereotyping against women", - "values": [ - "Human rights education and training", - "Women's rights" - ] - }, - { - "text": "Reinforce the independence of the judiciary ", - "values": [ - "Justice" - ] - }, - { - "text": "Establish strategies to sustain and reinforce progress recently made in the area of food security ", - "values": [ - "Right to food" - ] - }, - { - "text": "Strengthen measures aimed at poverty eradication and improvement of access to social services", - "values": [ - "Poverty" - ] - }, - { - "text": "Ratify the Protocol of 2014 to the Forced Labour Convention of the International Labour Organization and build criminal justice capabilities to increase the investigation, prosecution and conviction of perpetrators of modern slavery", - "values": [ - "International instruments", - "Labour", - "Trafficking" - ] - }, - { - "text": "Take the necessary measures to ensure that minorities have access to employment ", - "values": [ - "Labour", - "Minorities" - ] - }, - { - "text": "Preserve the natural institution of the family ", - "values": [ - "Other" - ] - }, - { - "text": "Establish a database of all cases of violence against children and explicitly prohibit all forms of corporal punishment of children under 18 years of age in all settings", - "values": [ - "Rights of the Child", - "Torture and other CID treatment" - ] - }, - { - "text": "Further strengthen the measures to fight human trafficking ", - "values": [ - "Trafficking" - ] - }, - { - "text": "Adopt a legislative framework on minorities and indigenous peoples consistent with human rights", - "values": [ - "Indigenous peoples", - "Minorities" - ] - }, - { - "text": "Improve the social protection system with a view to extending social and medical coverage to everyone", - "values": [ - "Right to health" - ] - }, - { - "text": "Continue efforts taken towards the ratification of international human rights instruments and harmonization of national legislation", - "values": [ - "International instruments" - ] - }, - { - "text": "Examine relevant laws and measures to guarantee that restrictions imposed on freedom of expression are in line with the International Covenant on Civil and Political Rights (ICCPR), to which Yemen is party.", - "values": [ - "Freedom of opinion and expression", - "International instruments" - ] - }, - { - "text": "Decriminalize same-sex relations between consenting adults and ensure that no person is subject to arbitrary arrest or detention because of their sexual orientation or gender identity ", - "values": [ - "Sexual Orientation and Gender Identity" - ] - }, - { - "text": "Adopt a comprehensive gender equality law that contains a definition of discrimination against women in accordance with CEDAW ", - "values": [ - "International instruments", - "Women's rights" - ] - }, - { - "text": "Strengthen efforts to prevent and combat arbitrary detentions, extrajudicial executions and excessive use of force by the security forces", - "values": [ - "Detention", - "Extrajudicial executions", - "Human rights violations by state agents" - ] - }, - { - "text": "Give the required attention to promoting women's participation at the decision-making level in both the public and private sectors ", - "values": [ - "Women's rights" - ] - }, - { - "text": "Ensure proper implementation of the law on reparation for acts of discrimination against people of African descent ", - "values": [ - "Minorities", - "Racial discrimination" - ] - }, - { - "text": "Continue and strengthen its efforts in favour of the elderly", - "values": [ - "Other" - ] - }, - { - "text": "Redouble efforts to promote and protect the rights of vulnerable groups such as children, women, people with disabilities and aged persons", - "values": [ - "Disabilities", - "Rights of the Child", - "Women's rights" - ] - }, - { - "text": "Consider the possibility of strengthening targeted social assistance to low-income families with children ", - "values": [ - "Poverty" - ] - }, - { - "text": "Continue to actively engage its international partners with the view to seek technical and other assistance to build and strengthen institutional and operational capacities for human rights", - "values": [ - "Technical assistance and cooperation" - ] - }, - { - "text": "Refrain from the harassment, intimidation and arbitrary detention of human rights activities ", - "values": [ - "Detention", - "Human rights defenders" - ] - }, - { - "text": "Adopt measures, compatible with international norms, to guarantee the freedom of information", - "values": [ - "Freedom of opinion and expression" - ] - }, - { - "text": "Take the measures necessary to combat violence against women effectively, increase women's participation in all fields and bring national legislation into line with CEDAW", - "values": [ - "International instruments", - "Women's rights" - ] - }, - { - "text": "Consider acceding to ICESCR and ICRMW ", - "values": [ - "ESC rights - general", - "International instruments", - "Labour", - "Migrants" - ] - }, - { - "text": "Adopt measures to protect the rights of certain vulnerable groups of children, in particular, girls, children born out of wedlock, and children with disabilities", - "values": [ - "Disabilities", - "Rights of the Child", - "Women's rights" - ] - }, - { - "text": "Follow up on the recommendations made by the Representative of the Secretary-General on the human rights of internally displaced persons, particularly those relating to the need to adopt measures for reconciliation and to implement a comprehensive strategy for the internally displaced", - "values": [ - "Internally displaced persons", - "Special procedures" - ] - }, - { - "text": "Enact the Domestic Violence Bill into law, ensuring that future cases of domestic violence are dealt with decisively", - "values": [ - "Rights of the Child", - "Women's rights" - ] - }, - { - "text": "Ratify or accede as appropriate to the Rome Statute of the International Criminal Court, OP-CAT and ICCPR-OP1 and ICCPR- OP2 ", - "values": [ - "CP rights - general", - "Death penalty", - "Detention", - "International instruments", - "Justice", - "Torture and other CID treatment" - ] - }, - { - "text": "Take steps to ensure non-discrimination based on sexual orientation and gender identity including in the proposed civil and criminal laws ", - "values": [ - "Sexual Orientation and Gender Identity" - ] - }, - { - "text": "Step up its efforts to ratify international human rights instruments that it is not yet a party to, particularly the International Convention on the Protection of the Rights of All Migrant Workers and Members of their Families", - "values": [ - "International instruments", - "Labour", - "Migrants" - ] - }, - { - "text": "Proceed towards the criminalization of rape and violent attacks as crimes against physical and mental integrity of women and as a form of discrimination based on the grounds of sex and gender", - "values": [ - "Women's rights" - ] - }, - { - "text": "Complete the common core of its international obligations on human rights with the ratification of CPED, OP-CAT and the Optional Protocol to CRPD ", - "values": [ - "Detention", - "Disabilities", - "Enforced disappearances", - "International instruments", - "Torture and other CID treatment" - ] - }, - { - "text": "Consider the adoption of policies and laws to prevent and combat violence against women ", - "values": [ - "Women's rights" - ] - }, - { - "text": "Promote a legal framework giving legal certitude in terms of property, in particular with regard to land ownership and protection against force evictions and recognition of the rights of indigenous people, pastoralists, hunters and gathering peoples ", - "values": [ - "Indigenous peoples", - "Right to land" - ] - }, - { - "text": "Adopt plans and programmes for awareness education in the field of promotion of human rights and fundamental freedoms, and ensure the follow- up and implementation of recommendations and proposals made concerning human rights", - "values": [ - "Human rights education and training", - "UPR process" - ] - }, - { - "text": "Ensure the full implementation of the recently adopted law on sexual and gender-based violence against women and pursue efforts aimed at eradicating these vices", - "values": [ - "Women's rights" - ] - }, - { - "text": "Follow up on the recommendation of the Committee on the Elimination of Discrimination against Women to withdraw its declaration to the effect that obligations pursuant to CEDAW are subject to the Constitution.", - "values": [ - "International instruments", - "Treaty bodies", - "Women's rights" - ] - }, - { - "text": "Introduce legislation that recognises the diversity of forms of partnerships and that provides same sex couples with the same rights and social security as couples of the opposite sex, as previously recommended", - "values": [ - "Sexual Orientation and Gender Identity", - "UPR process" - ] - }, - { - "text": "Take concrete steps to ensure a safe and enabling environment for human rights defenders and other civil society actors, journalists and members of the opposition, while also ensuring that independent civil society can meaningfully participate in all stages of the universal periodic review process without hindrance and fear of reprisals", - "values": [ - "Civil society", - "Freedom of the press", - "Human rights defenders", - "UPR process" - ] - }, - { - "text": "Expedite the implementation of an efficient and autonomous National Preventive Mechanism, as stipulated in the OP-CAT and ensure that it enjoys the independence, resources and other conditions needed to fulfil its task", - "values": [ - "Detention", - "International instruments", - "Torture and other CID treatment" - ] - }, - { - "text": "Intensify efforts to eliminate excessive use of force by law enforcement officials and protect women in detention, and ensure that relevant allegations are investigated, in order to strengthen accountability and prevent future violations ", - "values": [ - "Detention", - "Human rights violations by state agents", - "Women's rights" - ] - }, - { - "text": "Abandon the practice of applying the so-called retrogressive measures whereby members of national minorities are deprived of their rights and freedoms which they had been enjoying and exercising earlier, sometimes for many decades", - "values": [ - "Minorities" - ] - }, - { - "text": "Continue addressing the existence of certain practices and stereotypes derived from cultural practices which could result in discrimination against women and girls", - "values": [ - "Rights of the Child", - "Women's rights" - ] - }, - { - "text": "Improve the population's access to safe drinking water", - "values": [ - "Right to water and sanitation" - ] - }, - { - "text": "Review the compatibility of its legislative framework to combat terrorism with its international obligations in the field of human rights and remedy any possible gaps ", - "values": [ - "Counter-terrorism" - ] - }, - { - "text": "Reinforce the measures to improve conditions of detention, especially for persons with disabilities and the young, as well as to eliminate corporal punishment", - "values": [ - "Detention", - "Disabilities", - "Torture and other CID treatment" - ] - }, - { - "text": "Continue to cooperate with the international community, including the mechanisms of the Human Rights Council and of the United Nations", - "values": [ - "Special procedures", - "Technical assistance and cooperation", - "Treaty bodies", - "UPR process" - ] - }, - { - "text": "Allocate more resources to its human rights bodies in order to ensure their effective functioning in line with international standards", - "values": [ - "General" - ] - }, - { - "text": "Improve detention conditions by a variety of measures, including reducing overcrowding, separating men and women in facilities and ensuring that people have access to legal counsel.", - "values": [ - "Detention" - ] - }, - { - "text": "Continue efforts already embarked upon to ensure protection and promotion of all human rights", - "values": [ - "General" - ] - }, - { - "text": "Undertake campaigns to encourage greater women's participation in politics ", - "values": [ - "Women's rights" - ] - }, - { - "text": "Lift the measures in force that imply the discrimination and rejection of migrants and refugees, in particular those concerning to the use of force against them", - "values": [ - "Asylum-seekers - refugees", - "Migrants" - ] - }, - { - "text": "Increase cooperation with OHCHR and the special procedures of the Human Rights Council ", - "values": [ - "Special procedures" - ] - }, - { - "text": "Trafficking of human beings, particularly women and children, is emerging as one of the most urgent issues of today and involves the gross violation of human rights of vulnerable segments of the society. In line with Sri Lanka's policy of open and constructive engagement with the international community and its commitment to enforce global standards, Sri Lanka will work closely with its partners to combat this heinous activity.", - "values": [ - "Rights of the Child", - "Trafficking", - "Women's rights" - ] - }, - { - "text": "Codify the principles of gender equality in all areas of its national legal framework ", - "values": [ - "Women's rights" - ] - }, - { - "text": "Adopt legislative and public policy measures to combat discrimination against ethnic minorities, and guarantee the respect of their civil and political rights", - "values": [ - "CP rights - general", - "Minorities", - "Racial discrimination" - ] - }, - { - "text": "Fully respect the spirit and letter of the 2013 Constitution, and ratify the Convention against Torture", - "values": [ - "International instruments", - "Torture and other CID treatment" - ] - }, - { - "text": "Support the integration of the Roma and other minorities in Government institutions, by recruiting and promoting these minorities in the police, in the education sector and the public service ", - "values": [ - "Minorities", - "Racial discrimination" - ] - }, - { - "text": "Ratify the International Convention for the Protection of All Persons from Enforced Disappearance in a timely fashion ", - "values": [ - "Enforced disappearances", - "International instruments" - ] - }, - { - "text": "Strengthen policies for access to health-care services, especially for children with low economic and social status and undocumented children", - "values": [ - "Right to health", - "Rights of the Child" - ] - }, - { - "text": "Continue its efforts on further strengthening the rights of women, children and persons with disabilities", - "values": [ - "Disabilities", - "Rights of the Child", - "Women's rights" - ] - }, - { - "text": "Review its sentencing policy for perpetrators of human trafficking and strengthen assistance measures to victims", - "values": [ - "Trafficking" - ] - }, - { - "text": "Strengthen the policies and programmes aimed at giving the Roma population equal opportunities in the access to services", - "values": [ - "Minorities" - ] - }, - { - "text": "Establish an independent body to monitor the implementation of the CRC and adopt a National Plan of Action on Children", - "values": [ - "International instruments", - "Rights of the Child" - ] - }, - { - "text": "Continue to address the concerns of disadvantaged and vulnerable persons as a matter of priority, through programs aimed at promoting their fundamental human rights", - "values": [ - "Minorities" - ] - }, - { - "text": "Revise its penal code to ensure that its legislation on child pornography covers representation of a child by whatever means for primarily sexual purposes ", - "values": [ - "Rights of the Child" - ] - }, - { - "text": "Continue efforts which aim to alleviate poverty", - "values": [ - "Poverty" - ] - }, - { - "text": "Continue its efforts to protect the human rights of foreigners - including refugees- and prevent discrimination against them in both law and practice", - "values": [ - "Asylum-seekers - refugees", - "Migrants" - ] - }, - { - "text": "Adopt measures to guarantee Roma children the right to education in their own language and in a relevant way with their own culture ", - "values": [ - "Minorities", - "Right to education", - "Rights of the Child" - ] - }, - { - "text": "Ratify and implement the ILO Convention concerning Freedom of Association and Protection of the Right to Organise (Convention 87), ILO Convention concerning the Application of the Principles of the Right to Organise and to Bargain Collectively (Convention 98), ILO Convention concerning Forced or Compulsory Labour (Convention 29), and ILO Convention concerning the Abolition of Forced Labour (Convention 105)", - "values": [ - "Freedom of association and peaceful assembly", - "International instruments", - "Labour" - ] - }, - { - "text": "Strengthen actions that aim at eliminating cultural patterns that discriminate against women, promoting adequate access to judicial protection in order to prevent cases of violence affecting their life, health and integrity remaining unpunished", - "values": [ - "Women's rights" - ] - }, - { - "text": "Cease to hinder the freedom of movement of UNAMID and humanitarian agencies ", - "values": [ - "Freedom of movement" - ] - }, - { - "text": "Take all legal measures available to prohibit FGM and ensure effective implementation, particularly in terms of prevention, awareness-raising, monitoring and sanctions ", - "values": [ - "Rights of the Child", - "Torture and other CID treatment", - "Women's rights" - ] - }, - { - "text": "Intensify efforts to accelerate the implementation of governmental measures and actions to ensure compliance with international standards for persons deprived of their liberty as soon as possible ", - "values": [ - "Detention" - ] - }, - { - "text": "Continue the implementation of measures to improve the capacity and effectiveness of its judicial system ", - "values": [ - "Justice" - ] - }, - { - "text": "Ratify the Optional Protocol to the Convention against Torture and the Rome Statute of the International Criminal Court ", - "values": [ - "Detention", - "International instruments", - "Justice", - "Torture and other CID treatment" - ] - }, - { - "text": "Protect the right to freedom of assembly and association in particular of those campaigning against discrimination based on sexual orientation", - "values": [ - "Freedom of association and peaceful assembly", - "Sexual Orientation and Gender Identity" - ] - }, - { - "text": "Maintain the protection of the right to life from conception to natural death following article 15 of the Slovak constitution that states: "Human life is worthy of protection even prior to birth" ", - "values": [ - "Other" - ] - }, - { - "text": "Improve the legislative and judicial sectors of Jordan particularly in the areas of gender mainstreaming, sexual harassment and economic exploitation of children", - "values": [ - "Rights of the Child", - "Women's rights" - ] - }, - { - "text": "Duly consider the recommendations contained in the report of the Truth, Justice and Reconciliation Commission", - "values": [ - "Justice" - ] - }, - { - "text": "Increase efforts to improve the rights of the child, notably through the effective application of the prohibition of child labour, as well as the rights of women", - "values": [ - "Labour", - "Rights of the Child", - "Women's rights" - ] - }, - { - "text": "End the occupation of all Palestinian territories, the Syrian Arab Golan, and the occupied Lebanese territories", - "values": [ - "Other" - ] - }, - { - "text": "Continue its cooperation with United Nations human rights instruments ", - "values": [ - "Special procedures", - "Treaty bodies", - "UPR process" - ] - }, - { - "text": "It is committed to supporting the higher national anti-corruption authority in discharging its mandate to the full", - "values": [ - "Corruption" - ] - }, - { - "text": "Sign and ratify the Optional Protocol to the International Covenant on Economic, Social and Cultural Rights as soon as possible, to allow individual complaints of alleged violations of such rights to be heard by CESCR ", - "values": [ - "ESC rights - general", - "International instruments", - "Treaty bodies" - ] - }, - { - "text": "Improve conditions in prisons centers, including alternative mechanism to deprivation of liberty such as community services ", - "values": [ - "Detention" - ] - }, - { - "text": "Take measures to protect journalists from harassment and attacks and ensure independent, credible investigations of alleged cases and the prosecution of offenders", - "values": [ - "Freedom of the press" - ] - }, - { - "text": "Take steps to ratify and implement ICCPR", - "values": [ - "CP rights - general", - "International instruments" - ] - }, - { - "text": "Further develop economic assistance programmes for the elderly and persons with disabilities", - "values": [ - "Disabilities" - ] - }, - { - "text": "Take steps to protect and promote the freedom of expression and association of all peaceful defenders of human rights in the country ", - "values": [ - "Freedom of association and peaceful assembly", - "Freedom of opinion and expression", - "Human rights defenders" - ] - }, - { - "text": "Control its borders, effectively, to prevent the movement of terrorist groups, including those benefiting from transnational organized crime", - "values": [ - "Public security" - ] - }, - { - "text": "Continue to strengthen the institutional structures and support measures for the full implementation of ratified international instruments. We likewise suggest placing special emphasis on persons with disabilities, victims of family and sexual violence, and all persons susceptible of or in a situation of vulnerability and discrimination", - "values": [ - "Disabilities", - "International instruments", - "Minorities" - ] - }, - { - "text": "Establish acts with racist motivation as a criminal offences", - "values": [ - "Racial discrimination" - ] - }, - { - "text": "Ensure full respect of human rights, including the right to privacy and the right to freedom of expression, in all aspects of internet regulation, and adherence of any restrictions of those rights to the principles of legality, necessity and proportionality", - "values": [ - "Freedom of opinion and expression", - "Privacy" - ] - }, - { - "text": "Further the implementation of the Framework Convention for the Protection of National Minorities and of the laws on the prohibition of discrimination, especially those related to hate crimes ", - "values": [ - "Minorities", - "Racial discrimination" - ] - }, - { - "text": "Carry out a prompt implementation of the judicial reform to ensure that complaints in cases of torture, arbitrary detention and forced disappearances are exhaustively investigated", - "values": [ - "Detention", - "Enforced disappearances", - "Justice", - "Torture and other CID treatment" - ] - }, - { - "text": "Work towards the effective implementation of the national development plan that was adopted in March 2012 in its six points", - "values": [ - "Development" - ] - }, - { - "text": "Adhere to the principles of ICMW in view of its possible ratification ", - "values": [ - "International instruments", - "Migrants" - ] - }, - { - "text": "Ensure the full operationalization of the National Policy and Action Plan on Human Rights", - "values": [ - "General" - ] - }, - { - "text": "Identify, together with OHCHR, the possible areas for cooperation in the field of human rights ", - "values": [ - "Technical assistance and cooperation" - ] - }, - { - "text": "Strengthen the implementation of legislation aimed at the elimination of violence against women and increase funding for assistance to the victims, in particular with regard to domestic violence and bride kidnapping", - "values": [ - "Rights of the Child", - "Women's rights" - ] - }, - { - "text": "Review the cases of detention of individuals found to be deprived of their liberty for reasons which might be associated with the peaceful exercise of human rights and freedoms", - "values": [ - "Detention" - ] - }, - { - "text": "Seek the technical advice of the United Nations High Commissioner for Refugees to identify, prevent and reduce statelessness, protect stateless persons and address the statelessness situation ", - "values": [ - "Statelessness and the right to nationality", - "Technical assistance and cooperation" - ] - }, - { - "text": "Continue to apply and strengthen programmes and public policies on social development, inclusion, the reduction of poverty and inequality, and non-discrimination", - "values": [ - "Development", - "Poverty" - ] - }, - { - "text": "Incorporate the principle of gender equality into all areas of law by repealing or amending all existing discriminatory legislation, in order to achieve full de jure equality for women in Lesotho, in compliance with the State's international treaty obligations", - "values": [ - "International instruments", - "Women's rights" - ] - }, - { - "text": "Amend the Labour Law of the Industrial Complex of Kaesong and incorporate the minimum age of 18 years for work hazardous to the health, security or morality of minors ", - "values": [ - "Labour" - ] - }, - { - "text": "Continue to be actively engaged in regional human rights bodies, particularly those concerning the promotion and protection of the rights of women and combating trafficking in persons ", - "values": [ - "Trafficking", - "Women's rights" - ] - }, - { - "text": "Carry on its important achievement in supporting vulnerable groups, especially those living in rural areas.", - "values": [ - "Minorities" - ] - }, - { - "text": "Ensure that all acts of violence against women and girls are criminalized, that perpetrators are prosecuted and punished, and that victims of violence have access to immediate measures of protection, reparations and social reintegration ", - "values": [ - "Rights of the Child", - "Women's rights" - ] - }, - { - "text": "Take all necessary measures to ensure the safety of human rights defenders and ensure that they have a favourable working environment.", - "values": [ - "Human rights defenders" - ] - }, - { - "text": "Revise the National Human Rights Commission to ensure that it is in conformity with the Paris Principles ", - "values": [ - "National Human Rights Institution" - ] - }, - { - "text": "Utilize human rights training and education as a way to mainstream the promotion of the rights of women and children", - "values": [ - "Human rights education and training", - "Rights of the Child", - "Women's rights" - ] - }, - { - "text": "Ensure that freedom of expression is protected both offline and online and amend or remove vague provisions in the penal code, as well as new legislation to make sure that limitations on freedom of expression are strictly in line with ICCPR ", - "values": [ - "Freedom of opinion and expression", - "International instruments" - ] - }, - { - "text": "Adopt legislation on comprehensive protection of children's and adolescents' rights", - "values": [ - "Rights of the Child" - ] - }, - { - "text": "Withdraw its reservations to CRC", - "values": [ - "International instruments", - "Rights of the Child", - "Statelessness and the right to nationality" - ] - }, - { - "text": "Investigate all cases of politically motivated violence, including the circumstances surrounding the disappearance of human rights defender Itai Dzamara, and ensure that those responsible are brought to justice", - "values": [ - "Enforced disappearances" - ] - }, - { - "text": "Consider ratifying the International Labour Organization (ILO) Domestic Workers Convention, 2011 (No. 189), and the Protocol to Prevent, Suppress and Punish Trafficking in Persons, Especially Women and Children, supplementing the United Nations Convention against Transnational Organized Crime ", - "values": [ - "International instruments", - "Labour", - "Rights of the Child", - "Trafficking", - "Women's rights" - ] - }, - { - "text": "Establish an inclusive social dialogue so as to achieve the goals of building up a rainbow nation where all people are free and equal in rights ", - "values": [ - "General" - ] - }, - { - "text": "Urgently strengthen its commitment to the international human rights system in order to receive specialized help, through the extension of a standing invitation to all special procedures ", - "values": [ - "Special procedures" - ] - }, - { - "text": "Continue its efforts to improve the penitentiary system and health services and offer greater protection to children, in particular those who are the victims of trafficking in persons ", - "values": [ - "Detention", - "Right to health", - "Rights of the Child", - "Trafficking" - ] - }, - { - "text": "Increase the budget for prisons to add new bed space and staff, provide training for prison personnel and explore other types of detention for nonviolent offenders to reduce the burden on prison facilities and staff", - "values": [ - "Detention" - ] - }, - { - "text": "Allow for the distribution of condoms within its prisons in order to stem the prevalence of HIV-AIDS in these institutions.", - "values": [ - "HIV - Aids" - ] - }, - { - "text": "Reinforce its legislative framework and institutional mechanisms to combat all discriminatory practices and measures based on race, colour, religion and origin or other status ", - "values": [ - "Freedom of religion and belief", - "Minorities", - "Racial discrimination" - ] - }, - { - "text": "Continue improving the quality of education by providing periodic teacher training, including instructions regarding the equal treatment of girls and boys and the importance of gender equality", - "values": [ - "Right to education", - "Rights of the Child" - ] - }, - { - "text": "Consider, within the context of continuing its judicial and legislative reforms, elaborating and adopting a Criminal Code that ensures equal and objective judgement of crimes", - "values": [ - "Justice" - ] - }, - { - "text": "Continue to support overseas territories to abide with basic human rights protection for all ", - "values": [ - "Other" - ] - }, - { - "text": "Take necessary measures to provide reproductive health-care services for women and girls in line with its Convention on the Elimination of All Forms of Discrimination against Women obligations", - "values": [ - "International instruments", - "Women's rights" - ] - }, - { - "text": "Continue making efforts to seek the necessary resources to lead the Gambia towards development", - "values": [ - "Development" - ] - }, - { - "text": "Continue implementing measures to comprehensively address the phenomenon of unaccompanied migrant children", - "values": [ - "Migrants", - "Rights of the Child" - ] - }, - { - "text": "Continue efforts to combat impunity for serious violations of human rights committed during the events of 2011 and 2013", - "values": [ - "Impunity" - ] - }, - { - "text": "Reinforce mechanisms for monitoring violence and sexual abuse within the family ", - "values": [ - "Rights of the Child", - "Women's rights" - ] - }, - { - "text": "Intensify efforts to prevent and combat discrimination against persons with immigration backgrounds", - "values": [ - "Migrants", - "Racial discrimination" - ] - }, - { - "text": "Prosecute all cases of human rights violations, war crimes and crimes against humanity in a non-discriminatory and impartial manner, consistent with the requirements under the International Covenant on Civil and Political Rights", - "values": [ - "International instruments", - "Justice" - ] - }, - { - "text": "Sign and ratify the third Optional Protocol to the Convention on the Rights of the Child on a communications procedure, without reservations", - "values": [ - "International instruments", - "Rights of the Child" - ] - }, - { - "text": "Continue its cooperation with the United Nations and international organizations and overcome the remaining constraints and challenges", - "values": [ - "Technical assistance and cooperation" - ] - }, - { - "text": "Ratify the remaining international human rights instruments, in particular the two Optional Protocols to the Convention on the Rights of the Child ", - "values": [ - "International instruments", - "Rights of the Child" - ] - }, - { - "text": "Repeal Sections 9 (1) and 15 (A) (1) of the Prevention of Terrorism Act to ensure that detainees are held only in recognized places of detention, with regularized procedures and safeguards to protect detainees including access to legal representation and systematic notification to families of detainee whereabouts", - "values": [ - "Counter-terrorism", - "Detention" - ] - }, - { - "text": "Grant migrants facing expulsion procedures the right to have their cases examined by a competent authority", - "values": [ - "Migrants" - ] - }, - { - "text": "Guyana had voluntarily committed to hold consultations on 28 of the 55 recommendations. Those included recommendations on the abolition of the death penalty, on the abolition of corporal punishment, on the decriminalization of consensual same-sex adult sexual relations and on discrimination against lesbian, gay, bisexual and transgender (LGBT) persons, and on the age of criminality.", - "values": [ - "Death penalty", - "Sexual Orientation and Gender Identity", - "Torture and other CID treatment" - ] - }, - { - "text": "Continue to implement the 2016-2020 National Strategy to put an end to violence against children", - "values": [ - "Rights of the Child" - ] - }, - { - "text": "Bring conditions in detention centres in line with international standards", - "values": [ - "Detention" - ] - }, - { - "text": "Continue its cooperation with the international human rights mechanisms ", - "values": [ - "Special procedures", - "Treaty bodies" - ] - }, - { - "text": "Speed up the process of creating a National Human Rights Commission in conformity with the Paris Principles", - "values": [ - "National Human Rights Institution" - ] - }, - { - "text": "Strengthen literary programmes for women and girls living in rural communities", - "values": [ - "Right to education", - "Women's rights" - ] - }, - { - "text": "Amend its laws and set up a legal framework that respects and promotes freedom of expression in conformity with its international obligations", - "values": [ - "Freedom of opinion and expression" - ] - }, - { - "text": "Accelerate the full implementation of the Plan for Equal Opportunities for Persons with Disabilities 2009-2018 and the strategy for the integration of persons with disabilities", - "values": [ - "Disabilities" - ] - }, - { - "text": "Scale up efforts to ensure that all children are issued with a birth certificate", - "values": [ - "Rights of the Child", - "Statelessness and the right to nationality" - ] - }, - { - "text": "Intensify its efforts to guarantee to its people the right to food and all other human rights.", - "values": [ - "Right to food" - ] - }, - { - "text": "Further develop projects concerning relations between different religious and ethnic communities, in line with relevant recommendations of the Special Rapporteur on freedom of religion or belief ", - "values": [ - "Freedom of religion and belief", - "Special procedures" - ] - }, - { - "text": "Ensure that the police are trained to deal impartially with women reporting gender based violence, and that all such complaints are fully investigated and prosecuted", - "values": [ - "Women's rights" - ] - }, - { - "text": "Redouble its efforts to continue to incorporate into its educational system, at all levels, respect for human rights, especially those related to non-discrimination and tolerance for diversity ", - "values": [ - "Human rights education and training" - ] - }, - { - "text": "Continue its policies and efforts to enhance the solidarity and equality among its diverse population ", - "values": [ - "General" - ] - }, - { - "text": "Strengthen protection for journalists, which is essential to the full respect of fundamental freedoms, in particular by rapidly realizing the programme of protection for journalists, for which much effort has already been made", - "values": [ - "Freedom of the press" - ] - }, - { - "text": "Continue to provide technical and financial assistance for the development of agricultural production in the context of the enjoyment of the right to decent food, in particular with support for medium-sized and small enterprises", - "values": [ - "Right to food" - ] - }, - { - "text": "Share its experience in combating terrorism ", - "values": [ - "Public security" - ] - }, - { - "text": "Stop the land segregation that has fomented the building of walls and barriers in areas such as Presov, Michalovce, Partizanske or Trebisov", - "values": [ - "Right to land" - ] - }, - { - "text": "Take the necessary measures to strengthen capabilities for the promotion and protection of the environment", - "values": [ - "Environment" - ] - }, - { - "text": "Ratify the International Convention for the Protection of All Persons from Enforced Disappearance CED and accept the competence of the Committee on Enforced Disappearance.", - "values": [ - "Enforced disappearances", - "International instruments" - ] - }, - { - "text": "Promote equal treatment before the law, including through social protection, the right to birth registration, and the right to an equal use of natural resources ", - "values": [ - "Environment", - "Rights of the Child", - "Statelessness and the right to nationality" - ] - }, - { - "text": "Amend relevant domestic legislation so as to offer married women the same level of protection against coerced sex as to unmarried women and remove the law which discriminates against a wife's and female child's right to inherit property", - "values": [ - "Rights of the Child", - "Women's rights" - ] - }, - { - "text": "Continue its efforts in strengthening the education system including to consider and implement the recommendations made by the Special Rapporteur on the Right to Education to further promote the right to education for all in Senegal", - "values": [ - "Rights of the Child", - "Special procedures" - ] - }, - { - "text": "Ensure women an equal treatment with respect to men, especially with regard to the rights to food, education and work", - "values": [ - "Women's rights" - ] - }, - { - "text": "Improve access to health, education and social welfare for vulnerable groups, including for those in rural areas, ethnic minorities, women, migrants and refugees", - "values": [ - "Asylum-seekers - refugees", - "Migrants", - "Minorities", - "Right to education", - "Right to health", - "Women's rights" - ] - }, - { - "text": "Take all necessary measures to eliminate racial discrimination and segregation of Roma in education", - "values": [ - "Minorities", - "Racial discrimination", - "Right to education" - ] - }, - { - "text": "Argentina undertakes to continue promoting the reforms needed to guarantee the full implementation of the right to information by making all information from the public and private sectors public and available to citizens in general", - "values": [ - "Freedom of opinion and expression" - ] - }, - { - "text": "Ratify the Rome Statute of the International Criminal Court (ICC) and fully align its national legislation with all obligations under the Rome Statute, including by incorporating provisions to cooperate promptly and fully with the ICC, and to investigate and prosecute genocide, crimes against humanity and war crimes effectively before its national courts", - "values": [ - "International instruments", - "Justice" - ] - }, - { - "text": "Further improve good governance and the rule of law in the context of the next Poverty Reduction Programme (PARP) ", - "values": [ - "Justice", - "Poverty" - ] - }, - { - "text": "Give priority to the objective of attaining an inclusive and equitative education system that affords all citizens of the country access to high quality free primary education", - "values": [ - "Right to education" - ] - }, - { - "text": "Formalize its commitment to the abolition of the death penalty by ratifying the Second Optional Protocol to the International Covenant on Civil and Political Rights", - "values": [ - "Death penalty", - "International instruments" - ] - }, - { - "text": "Effectively investigate and prosecute crimes and violations against human right defenders and journalists, and punish those responsible. Complaints of harassment of human rights defenders must receive a prompt response and adequate measures for their safety should be taken ", - "values": [ - "Freedom of the press", - "Human rights defenders" - ] - }, - { - "text": "That human rights defenders must be protected and allowed to conduct their work without hindrance, intimidation or harassment ", - "values": [ - "Human rights defenders" - ] - }, - { - "text": "Intensify efforts to improve the existing situation in prisons and detention centres ", - "values": [ - "Detention" - ] - }, - { - "text": "Prohibit corporal punishment", - "values": [ - "Torture and other CID treatment" - ] - }, - { - "text": "Ensure that the recently adopted legislation on the minimum legal age to work is properly applied", - "values": [ - "Labour", - "Rights of the Child" - ] - }, - { - "text": "Introduce policies aimed at ending discrimination against individuals on the basis of their gender identity or sexual orientation, and repeal legislation criminalizing homosexuality ", - "values": [ - "Sexual Orientation and Gender Identity" - ] - }, - { - "text": "Accept the requests to visit the country made by some special procedures, including the request made by the Special Rapporteur on the promotion of truth, justice, reparation and guarantees of non-recurrence", - "values": [ - "Justice", - "Special procedures" - ] - }, - { - "text": "Safeguard rights of religious minorities by institutionalizing interreligious dialogue", - "values": [ - "Freedom of religion and belief", - "Minorities" - ] - }, - { - "text": "Establish a Human Rights Institute and provide closer cooperation with special procedures ", - "values": [ - "National Human Rights Institution", - "Special procedures" - ] - }, - { - "text": "Adopt laws against domestic violence and against the sexual abuse of women and children", - "values": [ - "Rights of the Child", - "Women's rights" - ] - }, - { - "text": "Further consolidate measures to promote and protect the rights of migrants, including through monitoring mechanisms and awareness-raising of the public ", - "values": [ - "Human rights education and training", - "Migrants" - ] - }, - { - "text": "Open a formal, independent and objective inquiry into the election-related violence and the allegations of serious violations of human rights", - "values": [ - "Elections" - ] - }, - { - "text": "Carry on its efforts in strengthening the links between higher education and the labour market\n", - "values": [ - "Development", - "Right to education" - ] - }, - { - "text": "Action plan for implementation covering both cycles of the universal periodic review as well as other mechanisms", - "values": [ - "UPR process" - ] - }, - { - "text": "Step up awareness-raising and preventive measures on the issue of domestic violence", - "values": [ - "Human rights education and training", - "Rights of the Child", - "Women's rights" - ] - }, - { - "text": "Grant access, as a matter of priority, to the Special Rapporteur on the situation of human rights in DPRK ", - "values": [ - "Special procedures" - ] - }, - { - "text": "The Government facilitate a visit by the Special Rapporteur on the situation of human rights defenders ", - "values": [ - "Human rights defenders", - "Special procedures" - ] - }, - { - "text": "Ratify the OP-CAT and criminalize torture ", - "values": [ - "Detention", - "International instruments", - "Torture and other CID treatment" - ] - }, - { - "text": "Continue to work with and seek the support of the international community for technical and financial assistance to overcome grave challenges of poverty and unemployment ", - "values": [ - "Development", - "Poverty", - "Technical assistance and cooperation" - ] - }, - { - "text": "Continue efforts and activities to raise awareness of human rights in the country", - "values": [ - "Human rights education and training" - ] - }, - { - "text": "Ratify the Convention against Torture and Other Cruel, Inhuman or Degrading Treatment or Punishment and ensure its full implementation in law and practice", - "values": [ - "International instruments", - "Torture and other CID treatment" - ] - }, - { - "text": "Establish a national human rights institution in conformity with the Paris Principles, with a mandate to receive and handle individual complaints, monitor the human rights situation, coordinate with the thematic mechanisms and collaborate with the Government and other entities in the drafting, dissemination and implementation of human rights legislation ", - "values": [ - "National Human Rights Institution" - ] - }, - { - "text": "Consider establishing an independent body to safeguard the independence of the judiciary", - "values": [ - "Justice" - ] - }, - { - "text": "Improve the quality, availability and accessibility of primary health-care services, to reduce high rates of infant and maternal mortality", - "values": [ - "Right to health", - "Rights of the Child", - "Women's rights" - ] - }, - { - "text": "Repeal articles 236 and 230 of the Criminal Code to put an end to the criminalization of adultery and same-sex relationships, as well as to methods of collecting evidence that constitute a violation of the dignity and physical integrity of persons", - "values": [ - "Sexual Orientation and Gender Identity", - "Torture and other CID treatment" - ] - }, - { - "text": "Continue cooperating with the special procedures of the Human Rights Council on the basis of its national priorities ", - "values": [ - "Special procedures" - ] - }, - { - "text": "Make every effort to seek peace with all actors concerned in order to be able to re-begin the construction of the country both politically, socially and economically", - "values": [ - "Public security" - ] - }, - { - "text": "Take effective measures to enhance the health-care sector", - "values": [ - "Right to health" - ] - }, - { - "text": "Ratify other human rights conventions, particularly the Convention against Torture and the International Convention on the Protection of the Rights of All Migrant Workers and Members of Their Families", - "values": [ - "International instruments", - "Labour", - "Migrants", - "Torture and other CID treatment" - ] - }, - { - "text": "Set up clear regulatory frameworks for the activities of the security companies in order to ensure their legal accountability regarding human rights abuses", - "values": [ - "Public security" - ] - }, - { - "text": "Bring into line with international best practices the methods of combating the use of illegal drugs in the Philippines, namely in terms of prevention and alternative sanctions", - "values": [ - "Other", - "Public security" - ] - }, - { - "text": "Strengthen measures aimed at social protection of refugees, migrant workers and members of their families", - "values": [ - "Asylum-seekers - refugees", - "Labour", - "Migrants" - ] - }, - { - "text": "Canada remained deeply committed to preventing and reducing all forms of violence against women and girls, working across jurisdictions to protect communities and ensure the safety of women and girls", - "values": [ - "Rights of the Child", - "Women's rights" - ] - }, - { - "text": "Remove restrictions on civil society, including the prohibition on NGOs receiving foreign funds, restrictions on volunteer work outside business hours, and obstacles to official registration of NGOs, in line with the rights to freedom of association and of expression", - "values": [ - "Civil society", - "Freedom of association and peaceful assembly", - "Freedom of opinion and expression" - ] - }, - { - "text": "Strengthen the implementation of the third National Human Rights Plan of Action by all relevant government agencies", - "values": [ - "General" - ] - }, - { - "text": "Continue making efforts to reduce the gap in female participation in the labour market, in the context of the National Policy on Gender Equality ", - "values": [ - "Women's rights" - ] - }, - { - "text": "Strengthen the independence of the judiciary, notably by ensuring that magistrates are not dismissed arbitrarily from their functions", - "values": [ - "Justice" - ] - }, - { - "text": "Amend the Suppression of Terrorism Act of 2008, and the Sedition and Subversive Activities Act of 1938 to guarantee the freedoms of expression, association and assembly", - "values": [ - "Counter-terrorism", - "Freedom of association and peaceful assembly", - "Freedom of opinion and expression" - ] - }, - { - "text": "Redouble efforts to reduce the number of maternal deaths by training birth attendants and establishing more obstetric clinics, with particular attention to indigenous women and peoples", - "values": [ - "Indigenous peoples", - "Right to health", - "Women's rights" - ] - }, - { - "text": "Maintain the good inter-ethnic relations model to achieve full reconciliation and integration. To do this, it is recommended to facilitate and promote access to ethnic, religious and political minorities to education, health care, justice, property and public positions", - "values": [ - "Freedom of religion and belief", - "Minorities" - ] - }, - { - "text": "Strengthen its internal human rights monitoring system by proceeding with the accreditation of the National Human Rights Commission with A category rating according to the Paris Principles", - "values": [ - "National Human Rights Institution" - ] - }, - { - "text": "Extend the mandate of the Federal Commission to deal with complaints of racism and incitement to xenophobia", - "values": [ - "National Human Rights Institution", - "Racial discrimination" - ] - }, - { - "text": "Consider ratifying the OP-CAT", - "values": [ - "Detention", - "International instruments", - "Torture and other CID treatment" - ] - }, - { - "text": "Implement tangible measures against discrimination of women, including the adoption of legislation to promote gender balance and steps to strengthen the position of the Ombudsman office on gender equality", - "values": [ - "National Human Rights Institution", - "Women's rights" - ] - }, - { - "text": "Consolidate the progress made within the framework of literacy programmes", - "values": [ - "Right to education" - ] - }, - { - "text": "Adopt measures to end the recruitment and participation of children in military activities", - "values": [ - "International humanitarian law", - "Rights of the Child" - ] - }, - { - "text": "Step up its efforts with effective measures for the promotion of the rights of vulnerable groups, especially through education and health", - "values": [ - "Minorities" - ] - }, - { - "text": "Enhance the programmes aimed at protecting children from all forms of abuse ", - "values": [ - "Rights of the Child" - ] - }, - { - "text": "Widen the scope of international obligations through accession to the remaining international treaties, such as the International Convention on the Protection of the Rights of All Migrant Workers and Members of Their Families, and the Optional Protocol to the Convention on the Rights of the Child on a communications procedure and the Optional Protocol to the International Covenant on Economic, Social and Cultural Rights", - "values": [ - "ESC rights - general", - "International instruments", - "Labour", - "Migrants", - "Rights of the Child" - ] - }, - { - "text": "Complete the process of aligning its national legislation with the provisions of the Rome Statute ", - "values": [ - "International instruments", - "Justice" - ] - }, - { - "text": "Endeavour to tackle issues of discrimination, particularly discrimination on grounds of ethnicity and linguistic traditions", - "values": [ - "Minorities", - "Racial discrimination" - ] - }, - { - "text": "Ratify the Statute of ICC signed in 1998", - "values": [ - "International instruments", - "Justice" - ] - }, - { - "text": "Recognize the competence of the Convention against Enforced Disappearance's monitoring body to receive and consider communications submitted by individuals claiming to be victims of violations of the provisions of this Convention, in compliance with Article 31 ", - "values": [ - "Enforced disappearances", - "International instruments" - ] - }, - { - "text": "Ratify pertinent conventions, and proceed with harmonization of national legislation.", - "values": [ - "International instruments" - ] - }, - { - "text": "Ratify the Rome Statute of the International Criminal Court and the Agreement on the Privileges and Immunities of the International Criminal Court ", - "values": [ - "International instruments", - "Justice" - ] - }, - { - "text": "Consider acceding to the Rome Statute of ICC", - "values": [ - "International instruments", - "Justice" - ] - }, - { - "text": "Continue to combat human trafficking and to make it a priority of the various governmental agencies entrusted with implementing the third action plan to combat human trafficking, for the period from 2009 to 2011", - "values": [ - "Trafficking" - ] - }, - { - "text": "Review of alternative ways to handle petty crime and of measures to improve the situation of inmates in prisons ", - "values": [ - "Detention", - "Justice" - ] - }, - { - "text": "Accept the competence of the Committee against Torture to conduct confidential inquiries and to receive and consider communications from States or individuals", - "values": [ - "Torture and other CID treatment", - "Treaty bodies" - ] - }, - { - "text": "End military attacks against the civilian Palestinian population.", - "values": [ - "Public security" - ] - }, - { - "text": "Participate actively in the international programmes of technical assistance and capacity building in the field of human rights", - "values": [ - "Technical assistance and cooperation" - ] - }, - { - "text": "Develop effective law enforcement tools to monitor and prevent online hate crimes", - "values": [ - "Racial discrimination" - ] - }, - { - "text": "Canada is committed to addressing its human rights challenges in an open, transparent and collaborative fashion.", - "values": [ - "General" - ] - }, - { - "text": "Continue its efforts and carry out education, information and awareness-raising activities aimed at an effective fight against female genital mutilations", - "values": [ - "Human rights education and training", - "Rights of the Child", - "Torture and other CID treatment", - "Women's rights" - ] - }, - { - "text": "Reform the justice system, ensuring its compliance with international standards for fair trial", - "values": [ - "Justice" - ] - }, - { - "text": "Speed up the procedures to complete the process of the ratification of the Convention on the Rights of Persons with Disabilities", - "values": [ - "Disabilities", - "International instruments" - ] - }, - { - "text": "Adopt a National Action Plan on Security Council Resolution 1325 (2000) on Women, Peace and Security", - "values": [ - "Women's rights" - ] - }, - { - "text": "Further improve the judiciary system of the country and strengthen human rights education for its citizens, especially judicial personnel", - "values": [ - "Human rights education and training", - "Justice" - ] - }, - { - "text": "Continue efforts aimed at improving the situation of migrant workers in its territory ", - "values": [ - "Labour", - "Migrants" - ] - }, - { - "text": "Introduce special measures in areas where women are under-represented or disadvantaged and raise awareness among parliamentarians and other government organs", - "values": [ - "Women's rights" - ] - }, - { - "text": "Undertake significant further activities to amend electoral legislation regarding the members of the Bosnia and Herzegovina Presidency and the delegates of the House of Peoples, to ensure full compliance with the European Convention on Human Rights", - "values": [ - "Elections" - ] - }, - { - "text": "Consider establishing a national human rights institution pursuant to the Paris Principles ", - "values": [ - "National Human Rights Institution" - ] - }, - { - "text": "Ratify ICCPR and its Optional Protocols, CEDAW and its Optional Protocol, CAT, two Optional Protocols to CRC, 1951 Convention relating to the Status of Refugees and its 1967 Protocol as well as the 1954 Convention relating to the Status of Stateless Persons and the 1961 Convention on the Reduction of Statelessness ", - "values": [ - "Asylum-seekers - refugees", - "CP rights - general", - "International instruments", - "Rights of the Child", - "Statelessness and the right to nationality", - "Torture and other CID treatment", - "Women's rights" - ] - }, - { - "text": "Adopt a comprehensive law on the trafficking in persons, including women and children", - "values": [ - "Rights of the Child", - "Trafficking", - "Women's rights" - ] - }, - { - "text": "Adopt legislation to prohibit female genital mutilation and measures to eradicate this practice, including campaigns to increase awareness of this issue.", - "values": [ - "Human rights education and training", - "Rights of the Child", - "Torture and other CID treatment", - "Women's rights" - ] - }, - { - "text": "Continue strengthening its successful national education policy, with a view to achieve full school inclusion at all levels, so as to advance towards greater social welfare for its people", - "values": [ - "Right to education" - ] - }, - { - "text": "Adopt a national plan with provisions to implement the legislations on women's rights", - "values": [ - "Women's rights" - ] - }, - { - "text": "Raise the minimum age for marriage of both sexes to bring it in line with international standards ", - "values": [ - "Rights of the Child" - ] - }, - { - "text": "Disseminate the outcome of the review through the national mass media in order to inform the public at large of its presentation made today, the achievements made and recommendations which are going to be implemented in the next period.", - "values": [ - "UPR process" - ] - }, - { - "text": "Ratify CAT and accede to its Optional Protocol ", - "values": [ - "Detention", - "International instruments", - "Torture and other CID treatment" - ] - }, - { - "text": "Issue clear, public orders to end the recruitment of child soldiers, ensure their swift release and investigate and prosecute the commanders responsible. Ratify the Optional Protocol to the Convention on the Rights of the Child on the involvement of children in armed conflict", - "values": [ - "International humanitarian law", - "International instruments", - "Rights of the Child" - ] - }, - { - "text": "Ratify the International Convention for the Protection of All Persons from Enforced Disappearance signed in 2008, as well as the Rome Statute signed in 2000", - "values": [ - "Enforced disappearances", - "International instruments", - "Justice" - ] - }, - { - "text": "Repeal the provisions criminalising homosexuality", - "values": [ - "Sexual Orientation and Gender Identity" - ] - }, - { - "text": "Adopt a national action plan to prevent trafficking in persons and assist the victims of this crime ", - "values": [ - "Trafficking" - ] - }, - { - "text": "Implement measures to facilitate the renovation of the infrastructure for the supply of water in the occupied Arab territories", - "values": [ - "Right to water and sanitation" - ] - }, - { - "text": "Implement the recommendations under the United Nations Convention against Corruption peer review process conducted in April 2015 and in particular review its legal framework to criminalize the bribery of foreign officials and officials of international organizations and pass legislation that allows for the forfeiture of unexplained wealth by public officials", - "values": [ - "Corruption" - ] - }, - { - "text": "Consider ratifying the 1951 Convention relating to the Status of Refugees and its Protocol", - "values": [ - "Asylum-seekers - refugees", - "International instruments" - ] - }, - { - "text": "Continue to adopt legislation that guarantees freedom of media", - "values": [ - "Freedom of the press" - ] - }, - { - "text": "Take all necessary measures to protect human rights defenders through the removal of legal and policy measures which inhibit the ability of defenders to carry out their vital work in safety, without fear of interference, obstruction or harassment of any kind, including by finalizing the public policy for the protection of human rights defenders with strong participation by civil society and an adequate budgetary allocation", - "values": [ - "Human rights defenders" - ] - }, - { - "text": "Strengthen the protection of LGBT individuals", - "values": [ - "Sexual Orientation and Gender Identity" - ] - }, - { - "text": "Proceed with the internal measures necessary to comply with the obligations arising from the Optional Protocol to the International Covenant on Economic, Social and Cultural Rights", - "values": [ - "ESC rights - general", - "International instruments" - ] - }, - { - "text": "Continue to improve its policies to protect and promote the rights of women and their empowerment ", - "values": [ - "Women's rights" - ] - }, - { - "text": "Take the necessary steps to abolish the death penalty ", - "values": [ - "Death penalty" - ] - }, - { - "text": "Explicitly prohibit torture and enforced disappearances as criminal offences under Nepali law", - "values": [ - "Enforced disappearances", - "Torture and other CID treatment" - ] - }, - { - "text": "Continue to work on the creation of a national legal framework for the protection of minorities, including immigrants and refugees, thus protection from violence and appropriate treatment within society", - "values": [ - "Asylum-seekers - refugees", - "Migrants", - "Minorities" - ] - }, - { - "text": "Develop and implement a National Action Plan on Human Rights to further ensure systematic and comprehensive approach for the promotion and protection of human rights, with the full engagement of the civil society", - "values": [ - "General" - ] - }, - { - "text": "Implement the national action plan for persons with disabilities", - "values": [ - "Disabilities" - ] - }, - { - "text": "Adopt measures to strengthen the rule of law, prevent human rights violations, including enforced disappearances, extrajudicial executions and torture, ensure punishment of those responsible, and include, inter alia, systematic review of all detention areas. establish an independent complaint mechanism in prisons, and prompt, impartial investigation into allegations of torture as well as protection for witnesses and others alleging torture or ill-treatment against reprisals, intimidation and threats", - "values": [ - "Detention", - "Enforced disappearances", - "Extrajudicial executions", - "Justice", - "Torture and other CID treatment" - ] - }, - { - "text": "Further strengthen the protection of the rights and dignity of foreigners when subjected to identity controls or expulsion procedures", - "values": [ - "Migrants" - ] - }, - { - "text": "Abolish permanently the death penalty and ratify the Second Optional Protocol to the International Covenant on Civil and Political Rights, aiming at the abolition of the death penalty ", - "values": [ - "Death penalty", - "International instruments" - ] - }, - { - "text": "Strengthen the efforts to combat poverty", - "values": [ - "Poverty" - ] - }, - { - "text": "Adopt a comprehensive law on gender equality and against discrimination, consistent with the Convention on the Elimination of All Forms of Discrimination against Women", - "values": [ - "International instruments", - "Women's rights" - ] - }, - { - "text": "Release all children from immigration detention as a matter of priority", - "values": [ - "Detention", - "Migrants", - "Rights of the Child" - ] - }, - { - "text": "Implement a national plan of action to fight against trafficking of women for sexual exploitation ", - "values": [ - "Trafficking", - "Women's rights" - ] - }, - { - "text": "Continue devising strategies and programmes to put an end to poverty for vulnerable groups, particularly women and children, and implement them ", - "values": [ - "Poverty", - "Rights of the Child", - "Women's rights" - ] - }, - { - "text": "Strengthen measures to protect children who are victims of abuse, following, the recommendations of the Committee on the Rights of Children, UNIFEM and UNICEF, among others ", - "values": [ - "Rights of the Child", - "Treaty bodies" - ] - }, - { - "text": "Continue its efforts to increase the participation of women in political life and in decision-making positions", - "values": [ - "Women's rights" - ] - }, - { - "text": "Adopt a comprehensive strategy to fight against all forms of racism and xenophobia", - "values": [ - "Racial discrimination" - ] - }, - { - "text": "Undertake a comprehensive set of measures to tackle racial discrimination and combat more resolutely all forms and manifestations of racism, racial discrimination, xenophobia and religious intolerance against foreigners and religious minorities, such as Muslims ", - "values": [ - "Freedom of religion and belief", - "Migrants", - "Minorities", - "Racial discrimination" - ] - }, - { - "text": "Adopt and implement efficient policies aimed at eliminating genderbased violence, combating traditional stereotypes through targeted human rights educational campaigns, and guaranteeing for victims access to justice and rehabilitation", - "values": [ - "Human rights education and training", - "Women's rights" - ] - }, - { - "text": "Take concrete steps to adopt the legislation necessary to follow up to Prime Minister Renzi's announcement to work on the recognition of same-sex relationships in Italy, as part of Italy's efforts to further strengthen measures to combat discrimination and violence based on sexual orientation and gender identity", - "values": [ - "Sexual Orientation and Gender Identity" - ] - }, - { - "text": "As per the Constitution of the Maldives, everyone has the right to education without discrimination of any kind. The Maldives offers free education up to higher secondary level, and free local and international exams to all children, adopting a policy of "No Child Left Behind". This policy includes catering for children with special education needs, and teaching civic education, life skills and human rights, with a view to building a productive, respectful, and responsible future generation. The Government is committed to accelerate the ratification process of UNESCO convention against discrimination in Education. As the Constitution and regulations stand, no discrimination exists. Government is taking efforts to make education more accessible to vulnerable groups in society, like persons with disabilities, children of poor families", - "values": [ - "Disabilities", - "Poverty", - "Right to education", - "Rights of the Child" - ] - }, - { - "text": "Repeal the legislation that exempts spouses of minors from prosecution for sexual offences against their spouse", - "values": [ - "Rights of the Child" - ] - }, - { - "text": "Decriminalize defamation ", - "values": [ - "Freedom of opinion and expression" - ] - }, - { - "text": "Take all the necessary measures to bring to an end attacks on journalists and ensure that the Information and Communication Act is in line with the human rights obligations of Kenya, in particular press freedom", - "values": [ - "Freedom of opinion and expression", - "Freedom of the press" - ] - }, - { - "text": "Step up its efforts to raise awareness on the issue of human trafficking, in particular sex trafficking, targeting the general public as well as potential clients of the sex trade ", - "values": [ - "Trafficking" - ] - }, - { - "text": "Extend policies and strategies of gender equality to all levels of the public administration, including affirmative measures for women in all ministries ", - "values": [ - "Women's rights" - ] - }, - { - "text": "Respect the freedom of religion", - "values": [ - "Freedom of religion and belief" - ] - }, - { - "text": "Adopt a comprehensive strategy to combat violence against women and a comprehensive law on violence against women that specifically criminalize domestic violence", - "values": [ - "Women's rights" - ] - }, - { - "text": "Continue strengthening its efforts to provide the office of the Ombudsman with sufficient resources to enable it to effectively carry out its tasks", - "values": [ - "National Human Rights Institution" - ] - }, - { - "text": "Cooperate with the United Nations Special Rapporteur on the situation of human rights in the country by providing unimpeded access to visit and report on the human rights situation throughout the country", - "values": [ - "Special procedures" - ] - }, - { - "text": "Continue promoting opportunities for women and men in the labour market ", - "values": [ - "Women's rights" - ] - }, - { - "text": "Vigorously investigate and prosecute trafficking offenders, under the recently passed Trafficking in Persons Act", - "values": [ - "Trafficking" - ] - }, - { - "text": "Continue to enact specific legislation to implement the Convention on the Rights of the Child", - "values": [ - "International instruments", - "Rights of the Child" - ] - }, - { - "text": "Specifically prohibit the practice of female genital mutilation", - "values": [ - "Rights of the Child", - "Torture and other CID treatment", - "Women's rights" - ] - }, - { - "text": "Criminalize the sale of children ", - "values": [ - "Rights of the Child", - "Trafficking" - ] - }, - { - "text": "Further increase its efforts towards the finalization of the new National Human Rights Plan 2017-2021", - "values": [ - "General" - ] - }, - { - "text": "Continue efforts to safeguard the dignity and protect the rights of foreign workers, including through requisite institutional and legislative measures", - "values": [ - "Labour", - "Migrants" - ] - }, - { - "text": "Pursue efforts, with the support of the international community, for the submission of the reports that were due to the treaty bodies, including the Human Rights Committee and the Committee against Torture", - "values": [ - "Civil society", - "Technical assistance and cooperation", - "Torture and other CID treatment", - "Treaty bodies" - ] - }, - { - "text": "Take adequate measures to combat human trafficking ", - "values": [ - "Trafficking" - ] - }, - { - "text": "Strengthen the legal context, the institutions and the resources of the judicial system to guarantee an independent judiciary", - "values": [ - "Justice" - ] - }, - { - "text": "Implement measures to ensure the full enjoyment of rights by persons with disabilities, especially regarding inclusive education", - "values": [ - "Disabilities", - "Right to education" - ] - }, - { - "text": "Duly implement and review when necessary the law criminalizing violence against women, adopted in April 2007, to ensure due investigations and the punishment of all perpetrators and to prevent further occurrence of these violations as well as to establish a functioning rehabilitation scheme for the victims \n\n", - "values": [ - "Women's rights" - ] - }, - { - "text": "Create care mechanisms for the communities affected by the conflict, including psychiatric care", - "values": [ - "Right to health" - ] - }, - { - "text": "Strengthen the position and the participation of women in public life by introducing regulations guaranteeing their participation", - "values": [ - "Women's rights" - ] - }, - { - "text": "Take effective measures for integration of migrants in Norway through, among others, non-discriminatory access to education, housing and employment ", - "values": [ - "Migrants" - ] - }, - { - "text": "Take further urgent steps to eradicate de facto discrimination reportedly suffered by various groups, including peoples of African descent in rural and remote areas of the country ", - "values": [ - "Minorities", - "Racial discrimination" - ] - }, - { - "text": "Establish a legal framework to fight against forced labour and to ban child labour", - "values": [ - "Labour", - "Rights of the Child" - ] - }, - { - "text": "Consider legislative and administrative measures to combat violence on the basis of gender identity or sexual orientation", - "values": [ - "Sexual Orientation and Gender Identity" - ] - }, - { - "text": "Finalize the process of establishing a national human rights institution in accordance with the Paris Principles as soon as possible ", - "values": [ - "National Human Rights Institution" - ] - }, - { - "text": "Continue its positive approach with regard to the promotion of human rights through its education system ", - "values": [ - "Human rights education and training" - ] - }, - { - "text": "Promote and protect the rights of the peasants and other persons working in rural areas ", - "values": [ - "Other" - ] - }, - { - "text": "Put an end to the discrimination against the Muslims of Rohingya", - "values": [ - "Freedom of religion and belief", - "Minorities", - "Racial discrimination" - ] - }, - { - "text": "Strengthen the capacities of its National Human Rights Commission, make it more independent and bring it in conformity with the Paris Principles", - "values": [ - "National Human Rights Institution" - ] - }, - { - "text": "Cease the application of corporal punishment in accordance with its international human rights obligations", - "values": [ - "International instruments", - "Torture and other CID treatment" - ] - }, - { - "text": "Ratify the Arms Trade Treaty", - "values": [ - "International instruments", - "Public security" - ] - }, - { - "text": "Carry out training activities and exchange of experiences on human rights with other countries of the Pacific Islands", - "values": [ - "Human rights education and training", - "Technical assistance and cooperation" - ] - }, - { - "text": "Put into place independent bodies responsible for investigating complaints of ill-treatment inflicted by the police and take all measures to ensure that criminal complaints filed against the authorities responsible for law enforcement are treated with attention and due diligence", - "values": [ - "Human rights violations by state agents" - ] - }, - { - "text": "Step up its efforts to prevent torture and ill-treatment by ensuring that allegations of torture and ill-treatment are systematically investigated and the perpetrators are prosecuted and punished and that victims are compensated in an adequate and equitable manner", - "values": [ - "Torture and other CID treatment" - ] - }, - { - "text": "Adopt a national plan to combat human trafficking", - "values": [ - "Trafficking" - ] - }, - { - "text": "Increase efforts to guarantee women\u2019s access to justice, protection and other remedies and put in place stronger mechanisms to protect women and girls from gender-based violence and provide redress to victims", - "values": [ - "Rights of the Child", - "Women's rights" - ] - }, - { - "text": "Make efforts to reach the quotas established by the Southern African Development Community with regard to the integration of women in all sectors of society ", - "values": [ - "Women's rights" - ] - }, - { - "text": "Repeal all provisions which criminalize sodomy and other sexual activities between consenting adults ", - "values": [ - "Sexual Orientation and Gender Identity" - ] - }, - { - "text": "Continue its contribution at the international level to efforts aimed at fighting hunger in\naccordance with the outcome of the World Food Summits as well as relevant resolutions of the\nGeneral Assembly and the Human Rights Council ", - "values": [ - "Right to food" - ] - }, - { - "text": "Consider adhering to and/or ratifying all those international human rights instruments that have not been adhered to and/or ratified ", - "values": [ - "International instruments" - ] - }, - { - "text": "Continue efforts aiming at enhancing human rights education especially for children", - "values": [ - "Human rights education and training", - "Rights of the Child" - ] - }, - { - "text": "Ensure the enjoyment of economic, social and cultural rights in equal conditions for minorities, particularly their right to work and to education", - "values": [ - "ESC rights - general", - "Labour", - "Minorities", - "Right to education" - ] - }, - { - "text": "Enact specific legislation to prohibit discrimination against persons based on sex, race, colour, religion, national origin and sexual orientation", - "values": [ - "Freedom of religion and belief", - "Minorities", - "Racial discrimination", - "Sexual Orientation and Gender Identity", - "Women's rights" - ] - }, - { - "text": "(In order to enhance and consolidate efforts to promote and protect human rights). Create a national human rights institution ", - "values": [ - "National Human Rights Institution" - ] - }, - { - "text": "Continue to provide, in accordance with its obligations under international human rights law, the widest possible protection and support for the family as the natural and fundamental unit of society ", - "values": [ - "Other" - ] - }, - { - "text": "Strengthen measures aimed at respecting the rights of people with disabilities, particularly children ", - "values": [ - "Disabilities", - "Rights of the Child" - ] - }, - { - "text": "Continue to take measures to implement the recommendations of the Special Rapporteur on the question of torture and the Working Group on Arbitrary Detention to fully afford detained immigrants the right to contact their consular representatives", - "values": [ - "Detention", - "Migrants", - "Special procedures", - "Torture and other CID treatment" - ] - }, - { - "text": "Promptly ratify the Convention on the Elimination of All forms of Discrimination against Women and the Convention on the Rights of Persons with Disabilities, as well as other core human rights conventions, such as the International Covenant on Economic, Social and Cultural Rights and the Convention on the Rights of the Child", - "values": [ - "Disabilities", - "ESC rights - general", - "International instruments", - "Women's rights" - ] - }, - { - "text": "Deal with cases of violence and discrimination based on sexual orientation, both in law and in practice, by publishing disaggregated data on complaints of violence against LGBTI persons", - "values": [ - "Sexual Orientation and Gender Identity" - ] - }, - { - "text": "Continue to consolidate its social policies to improve the living conditions of its people, in particular for those most in need, with the support of the cooperation and solidarity of the international community", - "values": [ - "Technical assistance and cooperation" - ] - }, - { - "text": "Prohibit and punish all acts of torture perpetrated by security services, government armed forces or affiliated militias", - "values": [ - "Human rights violations by state agents", - "Torture and other CID treatment" - ] - }, - { - "text": "Strengthen the human rights education and training of military forces and police, prison and judicial staff, and ensure their accountability for any violations of human rights, in particular for violence or sexual violence against women, children and persons of minority sexual orientation or gender identity ", - "values": [ - "Human rights education and training", - "Human rights violations by state agents", - "Rights of the Child", - "Sexual Orientation and Gender Identity", - "Women's rights" - ] - }, - { - "text": "Support the efforts to promote and protect the rights of vulnerable groups such as children, women, disabled persons and the elderly ", - "values": [ - "Disabilities", - "Rights of the Child", - "Women's rights" - ] - }, - { - "text": "Ensure that the national preventive mechanism against torture becomes operational at the earliest possible time, in particular by completing the process of recruitment of members of the Council for the Prevention of Torture", - "values": [ - "Detention", - "Torture and other CID treatment" - ] - }, - { - "text": "Ensure equal access to education of vulnerable people including women, children and persons with disabilities", - "values": [ - "Disabilities", - "Right to education", - "Rights of the Child", - "Women's rights" - ] - }, - { - "text": "Ensure the enjoyment by the Palestinians of all their cultural and religious rights, as contained in the Universal Declaration for Human Rights, and allow them to have access to all places of worship, in accordance with the Fourth Geneva Convention, without any restriction, and in order to preserve the cultural heritage, take all measures to protect these places and preserve their dignity.", - "values": [ - "Freedom of religion and belief", - "International instruments" - ] - }, - { - "text": "Take measures to ensure the right to work of persons belonging to the Roma community, particularly by giving further encouragement to municipalities, associations and non-governmental organizations to find jobs for them. ", - "values": [ - "Minorities" - ] - }, - { - "text": "Continue to step up poverty reduction efforts to improve the people's living standards ", - "values": [ - "Poverty" - ] - }, - { - "text": "Amend section 5 of the Sexual Offences Act 2009 in order to ensure that sexual intercourse by a husband with his wife without her consent is a criminal offence in all circumstances", - "values": [ - "Women's rights" - ] - }, - { - "text": "Continue to undertake effective plans and programmes to ensure the achievement of the Millennium Development Goals, especially in terms of health through measures to increase access to health services for the public ", - "values": [ - "Development", - "Right to health" - ] - }, - { - "text": "Continue the implementation of all obligations of the CRC, in particular to combat violence against children and forced labour", - "values": [ - "International instruments", - "Labour", - "Rights of the Child" - ] - }, - { - "text": "Enact comprehensive legislation against discrimination to avoid any kind of discrimination on the grounds of religion, sexual orientation and gender identity, language, political conviction or physical or mental disability", - "values": [ - "Disabilities", - "Freedom of opinion and expression", - "Freedom of religion and belief", - "Minorities", - "Racial discrimination", - "Sexual Orientation and Gender Identity" - ] - }, - { - "text": "Continue its efforts to develop the work of its national institution for human rights, as an effective human rights watchdog", - "values": [ - "National Human Rights Institution" - ] - }, - { - "text": "Consider reviewing the legal age of criminal responsibility with a view to ensuring full protection for juveniles in conflict with the law", - "values": [ - "Justice", - "Rights of the Child" - ] - }, - { - "text": "Formulate specific technical assistance requests in order to promote the achievement of the Millennium Development Goals and to address them to relevant United Nations bodies and mechanisms, in particular to OHCHR", - "values": [ - "Development", - "Technical assistance and cooperation" - ] - }, - { - "text": "Consider ratifying the Convention on the Rights of Persons with Disabilities and the Optional Protocol to the Convention against Torture.", - "values": [ - "Detention", - "Disabilities", - "International instruments", - "Torture and other CID treatment" - ] - }, - { - "text": "Advance in the adoption of measures that are considered necessary to combat the discrimination that suffer the non-Jewish sectors of the population", - "values": [ - "Minorities", - "Racial discrimination" - ] - }, - { - "text": "Continue the expansion of broad band connectivity to Internet and confront the limitations imposed by the blockade ", - "values": [ - "Freedom of opinion and expression" - ] - }, - { - "text": "Adhere to main international human rights instruments so that it can continue to promote women's rights and develop programmes for the rights of children, and pursue the efforts to disseminate a human rights culture in the executive branches of the Government ", - "values": [ - "Human rights education and training", - "International instruments", - "Rights of the Child", - "Women's rights" - ] - }, - { - "text": "Pursue efforts to ensure that complaints in cases of torture, arbitrary detention and disappearances are duly investigated", - "values": [ - "Detention", - "Enforced disappearances", - "Torture and other CID treatment" - ] - }, - { - "text": "Take all necessary measures to eliminate gender-based violence, including violence against foreign women, and to assess the workings of the relevant specialized courts in this regard", - "values": [ - "Women's rights" - ] - }, - { - "text": "Further work on improving the judicial system by providing capacity-building assistance and training in the field of human rights", - "values": [ - "Human rights education and training", - "Justice" - ] - }, - { - "text": "Accept a visit by the working group on arbitrary detention to investigate the detention conditions of prisoners", - "values": [ - "Detention" - ] - }, - { - "text": "Continue its work to improve the scope of education and its quality at every level", - "values": [ - "Right to education" - ] - }, - { - "text": "With respect to the draft law on the press currently under exam, repeal restrictions to freedom of expression and ensure that it comply with international norms ", - "values": [ - "Freedom of opinion and expression", - "Freedom of the press" - ] - }, - { - "text": "It was recommended that additional capacity-building measures be taken in support of programmes and projects on women and children", - "values": [ - "Rights of the Child", - "Women's rights" - ] - }, - { - "text": "Provide, in accordance with its obligations under international human rights law instruments, effective protection for the family as the fundamental and natural unit of society ", - "values": [ - "International instruments" - ] - }, - { - "text": "Strengthen its cooperation with the special procedures mandate holders by responding positively to the pending visit requests and eventually consider extending a standing invitation to all of them ", - "values": [ - "Special procedures" - ] - }, - { - "text": "Ratify the CPED, OP-CAT and the Rome Statue of the ICC ", - "values": [ - "Detention", - "Enforced disappearances", - "International instruments", - "Justice", - "Torture and other CID treatment" - ] - }, - { - "text": "Proceed with the promulgation of the necessary laws in order to abolish the male guardianship system while, in parallel, the stereotypes affecting women's enjoyment of their rights, including their personal status law, should be remedied", - "values": [ - "Women's rights" - ] - }, - { - "text": "Continue efforts in safeguarding the welfare of all segments of society and the protection of their rights ", - "values": [ - "General" - ] - }, - { - "text": "Implement the recommendation of the Committee on the Elimination of Racial Discrimination to take all preventive measures to put an end to racist incidents involving members of security forces or other public officials", - "values": [ - "Human rights violations by state agents", - "Racial discrimination", - "Treaty bodies" - ] - }, - { - "text": "Argentina undertakes to continue developing institutional mechanisms, with the participation of civil society, to comply with the decisions of regional and international human rights organizations, including by developing compliance charts that show the agencies in charge, the measures to be taken and the corresponding deadlines", - "values": [ - "Civil society" - ] - }, - { - "text": "Condemn and investigate the frequent acts of violence and expression of hatred against religious minorities", - "values": [ - "Freedom of religion and belief", - "Minorities", - "Racial discrimination" - ] - }, - { - "text": "Establish a moratorium on executions and initiate a broad public debate on the question of the death penalty with a view to its final abolition", - "values": [ - "Death penalty" - ] - }, - { - "text": "Step up its measures to combat racism, racial discrimination and xenophobia especially against the Muslim, indigenous and minority communities in the country ", - "values": [ - "Freedom of religion and belief", - "Indigenous peoples", - "Minorities", - "Racial discrimination" - ] - }, - { - "text": "Accelerate its work in forming a special commission to supervise the Constitutional reform which was announced by the President in 2010, its membership should include various structure of the population", - "values": [ - "Other" - ] - }, - { - "text": "Combat domestic violence", - "values": [ - "Rights of the Child", - "Women's rights" - ] - }, - { - "text": "Improve the quality of health services and education for the population, and particularly for children ", - "values": [ - "Right to education", - "Right to health", - "Rights of the Child" - ] - }, - { - "text": "Adopt comprehensive anti-discrimination strategies ", - "values": [ - "Other" - ] - }, - { - "text": "Complete the process of establishing the National Human Rights Institution in accordance with the Paris Principles", - "values": [ - "National Human Rights Institution" - ] - }, - { - "text": "Proceed towards finalizing the ratification process of the Convention on the Rights of Persons with Disabilities ", - "values": [ - "Disabilities", - "International instruments" - ] - }, - { - "text": "Amend the Penal Code to broaden the definition of rape by including a range of sexual acts, including marital rape, and by making the offence gender-neutral", - "values": [ - "Women's rights" - ] - }, - { - "text": "Implement education and awareness-raising programmes on gender equality in the framework of efforts to combat stereotypes conducive to domestic violence and discrimination against women ", - "values": [ - "Human rights education and training", - "Women's rights" - ] - }, - { - "text": "Implement the Law on Access to information as well as the National Strategy to prevent and fight early and forced marriage", - "values": [ - "Freedom of opinion and expression", - "Rights of the Child", - "Women's rights" - ] - }, - { - "text": "Ratify and implement OP-CRC-SC on the sale of the children, child prostitution and child pornography ", - "values": [ - "International instruments", - "Rights of the Child", - "Trafficking" - ] - }, - { - "text": "Continue the campaign put in case for the widespread access to potable water and electricity in the rural area ", - "values": [ - "Right to water and sanitation" - ] - }, - { - "text": "Further improve access to education for children by increasing the number of primary and secondary schools and by strengthening its higher education system", - "values": [ - "Right to education", - "Rights of the Child" - ] - }, - { - "text": "Ensure that due legal process, including transparency during police investigations is afforded to all, including those critical of the Government ", - "values": [ - "Justice" - ] - }, - { - "text": "Repeal the sections of its Criminal Code that criminalize consensual homosexual activity", - "values": [ - "Sexual Orientation and Gender Identity" - ] - }, - { - "text": "Ensure access to justice for victims of sexual violence, ensuring the effective implementation of laws protecting women", - "values": [ - "Rights of the Child", - "Women's rights" - ] - }, - { - "text": "Adopt a National Action Plan to implement Security Council resolution 1325 [2000] on Women and Peace and Security", - "values": [ - "Women's rights" - ] - }, - { - "text": "Continue looking into the feasibility of ratifying the Convention against Torture and the International Convention on the Protection of the Rights of all Migrant Workers and Members of Their Families", - "values": [ - "International instruments", - "Labour", - "Migrants", - "Torture and other CID treatment" - ] - }, - { - "text": "Adopt a national strategy to combat violence against women and to ensure equal participation of women in political and social life ", - "values": [ - "Women's rights" - ] - }, - { - "text": "Strengthen the mandate of the National Human Rights Commission of Korea to conduct visits and investigations to places of detention so as to effectively function as a national torture preventive mechanism and consequently to consider acceding to the Optional Protocol to the Convention against Torture and Other Cruel, Inhuman or Degrading Treatment or Punishment", - "values": [ - "Detention", - "International instruments", - "National Human Rights Institution", - "Torture and other CID treatment", - "Treaty bodies" - ] - }, - { - "text": "Accede to the Convention against Torture and Other Cruel, Inhuman or Degrading Treatment or Punishment ", - "values": [ - "International instruments", - "Torture and other CID treatment" - ] - }, - { - "text": "Continue consideration of the establishment of an NHRI to contribute to awareness-raising and the spread of a human rights culture in the United Arab Emirates society", - "values": [ - "National Human Rights Institution" - ] - }, - { - "text": "Consider adopting new legislation to counter all forms of discrimination against women and reserve a quota of non-executive board seats for women", - "values": [ - "Women's rights" - ] - }, - { - "text": "Urgently accelerate the establishment of a national mechanism to combat torture, as well as guarantee its independence and the availability of the necessary resources to enable it to perform its functions", - "values": [ - "Detention", - "Torture and other CID treatment" - ] - }, - { - "text": "Actively conduct education and awareness campaigns on the issue of child prostitution, particularly in well-known meeting places of foreign crew members. These campaigns should make clear that under Kiribati Law, the crime of sex trafficking includes subjecting a child to prostitution even in the absence of transnational movement or the use of force or coercion", - "values": [ - "Human rights education and training", - "Rights of the Child", - "Trafficking" - ] - }, - { - "text": "Collaborate with various United Nations human rights mechanisms and submit outstanding reports to treaty bodies", - "values": [ - "Special procedures", - "Treaty bodies", - "UPR process" - ] - }, - { - "text": "Develop a national action plan to address the needs of victims of trafficking in human beings", - "values": [ - "Trafficking" - ] - }, - { - "text": "Guarantee access and freedom of movement to the inhabitants of Gaza and the West Bank notwithstanding the necessary security measures.", - "values": [ - "Freedom of movement" - ] - }, - { - "text": "Respect its commitments and take necessary measures to combat incitement to discrimination and violence in the media", - "values": [ - "Other" - ] - }, - { - "text": "Decriminalize homosexuality and sign the joint declaration of the United Nations General Assembly of 18 December 2008 regarding human rights, sexual orientation and gender identity", - "values": [ - "Sexual Orientation and Gender Identity" - ] - }, - { - "text": "Review the legal framework on asylum, migration and immigration and repeal the provisions on denial of stay in the country and expulsion for reasons of national security which contravene the international standards to which Denmark is a party", - "values": [ - "Asylum-seekers - refugees", - "Migrants" - ] - }, - { - "text": "Transform its de facto moratorium on the application of the death penalty into definitive abolition", - "values": [ - "Death penalty" - ] - }, - { - "text": "Enact specific labour legislation concerning foreign and domestic workers which guarantees their rights according to international human rights standards ", - "values": [ - "International instruments", - "Labour", - "Migrants" - ] - }, - { - "text": "Consider adopting and implementing law on the independent functioning and organization of the National Council in order to reflect changes already made to the Constitution in 2002", - "values": [ - "Other" - ] - }, - { - "text": "Intensify gender efforts, amending relevant legal provisions which establish subordination to male guardianship and adopt a comprehensive gender policy and awareness campaigns aimed at all areas of society and public administration ", - "values": [ - "Women's rights" - ] - }, - { - "text": "Combat violence against women through coordinated and comprehensive preventive measures and ensure access to justice and remedy for victims", - "values": [ - "Women's rights" - ] - }, - { - "text": "Combat hate speech and hate crime, including in the political sphere, and, to this end, collect and evaluate hate speech and hate crime data, and promote inter-ethnic and interreligious tolerance, in particular in the education system", - "values": [ - "Freedom of religion and belief", - "Minorities", - "Racial discrimination" - ] - }, - { - "text": "Ratify the optional protocols to the International Covenant on Civil and Political Rights ICCPR, the International Covenant on Economic, Social and Cultural Rights ICESCR and the Convention on the Elimination of All Forms of Discrimination against Women", - "values": [ - "CP rights - general", - "ESC rights - general", - "International instruments", - "Women's rights" - ] - }, - { - "text": "Sign and ratify the core international instruments, including International Convention on the Elimination of All Forms of Racial Discrimination", - "values": [ - "International instruments", - "Racial discrimination" - ] - }, - { - "text": "Take the necessary measures to ensure that the law concerning trafficking is effectively implemented ", - "values": [ - "Trafficking" - ] - }, - { - "text": "Continue its full cooperation with ICC", - "values": [ - "International instruments", - "Justice" - ] - }, - { - "text": "Improve the situation of prisoners in the country, implementing the recommendations made by the European Committee for the Prevention of Torture after its visit in September 2015, such as to reduce the levels of violence and to decrease rates of overcrowding in multiple cells", - "values": [ - "Detention", - "Torture and other CID treatment" - ] - }, - { - "text": "Establish a prosecution mechanism for perpetrators of violence against women and girls", - "values": [ - "Rights of the Child", - "Women's rights" - ] - }, - { - "text": "Amend its laws to remove mandatory sentences relating to the death penalty and recognize an official moratorium on its use.", - "values": [ - "Death penalty" - ] - }, - { - "text": "Train educators and health workers in identifying signs of sexual abuse in children ", - "values": [ - "Rights of the Child" - ] - }, - { - "text": "Undertake more effective measures to address the problems of trafficking, sexual abuse and exploitation of women and children, including through ensuring effective implementation of the relevant legislations and undertaking intensive media and education programmes aimed to increasereness and sensitivities on the rights of women and children ", - "values": [ - "Human rights education and training", - "Rights of the Child", - "Trafficking", - "Women's rights" - ] - }, - { - "text": "Continue its advocacy for interfaith dialogue, and to share its best practices and experiences with other countries", - "values": [ - "Freedom of religion and belief" - ] - }, - { - "text": "Ratify the International Convention for the Protection of All Persons from Enforced Disappearance and recognize the competence of the Committee on Enforced Disappearances, as provided for in articles 31 and 32 of the Convention, as early as possible ", - "values": [ - "Enforced disappearances", - "International instruments", - "Treaty bodies" - ] - }, - { - "text": "Continue the efforts aimed at ratifying the CPED as well as the main international instruments on human rights, to which the country is not yet a party ", - "values": [ - "Enforced disappearances", - "International instruments" - ] - }, - { - "text": "Consider establishing an independent national human rights institution accredited by ICC and in conformity with the Paris Principles ", - "values": [ - "National Human Rights Institution" - ] - }, - { - "text": "The Government will continue to promote inclusive economic growth with the capacity to generate productive employment and reduce poverty.", - "values": [ - "Development", - "Poverty" - ] - }, - { - "text": "Abolish the death penalty it has reintroduced in law", - "values": [ - "Death penalty" - ] - }, - { - "text": "Specify the criteria that apply to the consideration of violence when extending residence permits for victims of domestic violence, to facilitate their fair, standardised and transparent application", - "values": [ - "Asylum-seekers - refugees" - ] - }, - { - "text": "Continue the implementation of the Historical Memory Act despite the economic crisis", - "values": [ - "Justice" - ] - }, - { - "text": "Decriminalize homosexuality and ensure that the authors of violence against homosexuals are brought to justice", - "values": [ - "Sexual Orientation and Gender Identity" - ] - }, - { - "text": "Participate actively in international cooperation to encourage and protect economic, social and cultural rights and to share positive experiences with other countries.", - "values": [ - "ESC rights - general" - ] - }, - { - "text": "Ensure that the draft law on non-governmental organizations does not make their working conditions more difficult and respect their freedom of expression and association ", - "values": [ - "Civil society", - "Freedom of association and peaceful assembly", - "Freedom of opinion and expression" - ] - }, - { - "text": "Take further steps to ensure that juvenile courts are set up and that children are separated from adults in detention facilities.", - "values": [ - "Detention", - "Justice", - "Rights of the Child" - ] - }, - { - "text": "Ratify the Optional Protocol to CEDAW, which was signed in 2001", - "values": [ - "International instruments", - "Women's rights" - ] - }, - { - "text": "Increase attention to the protection of trafficked women and children ", - "values": [ - "Rights of the Child", - "Trafficking", - "Women's rights" - ] - }, - { - "text": "Reconsider restrictions on undocumented migrants' access to publicly supported healthcare ", - "values": [ - "Migrants", - "Right to health" - ] - }, - { - "text": "Address the problem of discrimination against women, particularly in the labour market, with regard to the gender-based wage gap", - "values": [ - "Labour", - "Women's rights" - ] - }, - { - "text": "Take immediate and concrete steps to rectify the deficiencies in Argentinian prisons, detention centres and police stations, such as overcrowding, poor access to health services, insufficient food, bad ventilation, precarious sanitary conditions and squalor", - "values": [ - "Detention", - "Right to food", - "Right to health", - "Right to water and sanitation" - ] - }, - { - "text": "Take additional serious measures to combat xenophobia, hate speech and discrimination based on race, nationality, ethnicity and religion", - "values": [ - "Freedom of religion and belief", - "Racial discrimination" - ] - }, - { - "text": "Review legislation such as the recently adopted Act on the protection and advancement of persons with disabilities to prohibit efficiently discrimination against persons with disabilities, to guarantee equal treatment and equal opportunity and protect them from harassment, violence and abuse in all aspects of life", - "values": [ - "Disabilities" - ] - }, - { - "text": "Accept more efforts to increase girls\u2019 secondary education, including ensuring that schools are girl-friendly in all parameters", - "values": [ - "Right to education", - "Women's rights" - ] - }, - { - "text": "Ensure the independence of the Office of the Ombudsman in accordance with the Paris Principles ", - "values": [ - "National Human Rights Institution" - ] - }, - { - "text": "Develop a comprehensive national strategy to prevent all forms of violence against children, with particular attention to its gender dimension", - "values": [ - "Rights of the Child", - "Women's rights" - ] - }, - { - "text": "Continue its efforts to build up capacities and knowledge of human rights in its public sector", - "values": [ - "Human rights education and training" - ] - }, - { - "text": "Take concrete actions to fight against human trafficking and illegal migrants, to implement international obligations and defend normal order of international migration", - "values": [ - "Migrants", - "Trafficking" - ] - }, - { - "text": "Ratify the Second Optional Protocol to the International Covenant on Civil and Political Rights aiming at the abolition of the death penalty.", - "values": [ - "Death penalty", - "International instruments" - ] - }, - { - "text": "Consider discontinuing measures that curtail human rights and fundamental freedoms ", - "values": [ - "General" - ] - }, - { - "text": "Keep legal and procedural efforts to implement measures for women's access to a broader range of jobs and to address the causes of the concentration of women in the informal sector ", - "values": [ - "Women's rights" - ] - }, - { - "text": "Give positive consideration to the request to carry out a visit to the country by the Special Rapporteur on the question of the trafficking of persons", - "values": [ - "Special procedures", - "Trafficking" - ] - }, - { - "text": "Pursue the implementation of the right to education for all with a particular attention given to the realization of this right for girls", - "values": [ - "Right to education", - "Rights of the Child", - "Women's rights" - ] - }, - { - "text": "Reject the Anti-Homosexuality Bill and decriminalize homosexual relationships between consenting adults ", - "values": [ - "Sexual Orientation and Gender Identity" - ] - }, - { - "text": "Continue and strengthen the efforts to combat against all kinds of gender violence and approve education and awareness-raising policies in that area", - "values": [ - "Human rights education and training", - "Women's rights" - ] - }, - { - "text": "Continue the promotion and protection of the rights of migrant workers at all levels, in particular through the agenda on migrants\u2019 health", - "values": [ - "Labour", - "Migrants", - "Right to health" - ] - }, - { - "text": "Allocate adequate resources to ensure the effective implementation of the National Action Plans to combat Violence Against Women, Violence Against Children and Female Genital Mutilation ", - "values": [ - "Rights of the Child", - "Torture and other CID treatment", - "Women's rights" - ] - }, - { - "text": "Fulfil its reporting obligations under treaty bodies", - "values": [ - "Treaty bodies" - ] - }, - { - "text": "While the HRCM continues to face criticism regarding its role in the institutional framework, primarily due to lack of awareness about the mandate and activities of the Commission, the Government is committed to working constructively with the HRCM, even in cases where both parties may not agree.", - "values": [ - "National Human Rights Institution" - ] - }, - { - "text": "Continue and strengthen strategies and programs for comprehensive development, especially in the rural and less developed areas of the country", - "values": [ - "Development" - ] - }, - { - "text": "Safeguard and expand religious freedom by revising national legislation so that it recognizes and protects all forms of religion or belief, theistic, atheistic and non-theistic, as set out in article 18 of the Universal Declaration of Human Rights, including for those outside the six officially recognized religions", - "values": [ - "Freedom of religion and belief", - "International instruments" - ] - }, - { - "text": "Adopt legislative and policy measures to combat all forms of discrimination and violence against women", - "values": [ - "Women's rights" - ] - }, - { - "text": "Respect its human rights obligations and commitment without exception or ulterior consideration and take steps to address double standard and politicization in its human rights policies", - "values": [ - "Other" - ] - }, - { - "text": "Guarantee in an effective manner and in line with the Constitution of Benin and the international instruments to which it is a party, the rights of workers including the right to strike, freedom of association and peaceful assembly", - "values": [ - "Freedom of association and peaceful assembly", - "International instruments", - "Labour" - ] - }, - { - "text": "In relation to violence against women, provide victims with full access to the judicial system, compensation and health services", - "values": [ - "Women's rights" - ] - }, - { - "text": "Continue to apply programmes and measures to ensure the enjoyment of the right to education and the right to health", - "values": [ - "Right to education", - "Right to health" - ] - }, - { - "text": "Step up efforts to ensure the right to education, including the participation of all school-age children, particularly girls, to attend schools", - "values": [ - "Poverty", - "Right to education", - "Rights of the Child", - "Women's rights" - ] - }, - { - "text": "Ensure that the upcoming elections are democratic, transparent and fair in order to allow for a definitive return by Guinea to the democratic international and regional arena, in line with the Ouagadougou Agreement of 15 January 2010 ", - "values": [ - "Elections" - ] - }, - { - "text": "Continue efforts to eradicate poverty and ensure sustainable development ", - "values": [ - "Development", - "Poverty" - ] - }, - { - "text": "Organize training sessions and workshops on human rights for the competent authorities to combat terrorism while respecting the rule of law ", - "values": [ - "Counter-terrorism", - "Human rights education and training" - ] - }, - { - "text": "Take the necessary measures for the adoption of laws on the new Criminal Code, trafficking in persons and the prison system", - "values": [ - "Detention", - "Justice", - "Trafficking" - ] - }, - { - "text": "Ensure better protection for persons with disabilities and the elderly ", - "values": [ - "Disabilities" - ] - }, - { - "text": "Issue an open invitation to Special Procedures", - "values": [ - "Special procedures" - ] - }, - { - "text": "Through the national strategy against corruption 2012-2015, take the measures necessary to ensure the implementation of the recommendations relating the cooperation and verification mechanism (CVM) issued by the European Commission, and including continuing efforts to prevent and combat corruption in the political and judicial sectors", - "values": [ - "Corruption" - ] - }, - { - "text": "In the implementation of public policies, give consideration to the characteristics, needs and aspirations of the beneficiaries in order to ensure the exercise of their rights, particularly economic, social and cultural rights.", - "values": [ - "ESC rights - general" - ] - }, - { - "text": "Continue to consider ratifying the Rome Statute of the International Criminal Court ", - "values": [ - "International instruments", - "Justice" - ] - }, - { - "text": "Engage members of the international community, including international organizations, with a view to capacity-building support and technical assistance, particularly with regard to the development of economic and human resources and poverty reduction", - "values": [ - "Development", - "Poverty", - "Technical assistance and cooperation" - ] - }, - { - "text": "Continue working to achieve all the Millennium Development Goals", - "values": [ - "Development" - ] - }, - { - "text": "In accordance with the recommendations of the Committee on the Elimination of Racial Discrimination, carry out public awareness-raising campaigns to fight discrimination and hate speech - these kind of policies could be complemented by adopting and implementing legislative measures, promote an inclusive educational system which does not leave behind migrant children or children with special needs ", - "values": [ - "Human rights education and training", - "Migrants", - "Racial discrimination", - "Rights of the Child", - "Treaty bodies" - ] - }, - { - "text": "Improve the condition of detainees, prevent cruel treatment in detention places and ensure the adequate level of medical services to detainees ", - "values": [ - "Detention", - "Right to health" - ] - }, - { - "text": "Accelerate the judicial reform, reduce the number of preventive detentions and strengthen efforts to put an end to impunity for police and security forces for any illegal act committed by their members", - "values": [ - "Detention", - "Human rights violations by state agents", - "Impunity", - "Justice" - ] - }, - { - "text": "Meet its deadline and complete actions to which it committed in the three general areas described in the March 2010 Matrix: electoral reform, economic governance, and combating corruption ", - "values": [ - "Corruption", - "Development", - "Elections" - ] - }, - { - "text": "Accelerate the building of more general and community hospitals and clinics under the Healthcare 2020 Master plan", - "values": [ - "Right to health" - ] - }, - { - "text": "Adopt measures to promote and protect the rights of migrants and ensure that unaccompanied minors and families with children are not detained", - "values": [ - "Detention", - "Migrants", - "Rights of the Child" - ] - }, - { - "text": "Continue its efforts to enhance the position of women and to provide protection from violence, including by the full implementation of the 2009 Law on Combating Domestic Violence ", - "values": [ - "Women's rights" - ] - }, - { - "text": "Implement the national action plan to combat discrimination in all its forms", - "values": [ - "Other" - ] - }, - { - "text": "Accede to the 1951 Geneva Convention relating to the Status of Refugees and its 1967 Protocol", - "values": [ - "Asylum-seekers - refugees", - "International instruments" - ] - }, - { - "text": "Seek assistance and technical expertise from the OHCHR to develop a common core document so as to streamline treaty reporting ", - "values": [ - "Technical assistance and cooperation", - "Treaty bodies" - ] - }, - { - "text": "Increase efforts for the efficient implementation of the right to education of members of the Roma minority, as recommended by the Committee on the Rights of the Child and Council of Europe's Commissioner for Human Rights", - "values": [ - "Minorities", - "Right to education", - "Treaty bodies" - ] - }, - { - "text": "Consider signing and ratifying the new Optional Protocol to the Convention on the Rights of the Child on a communications procedure ", - "values": [ - "International instruments", - "Rights of the Child" - ] - }, - { - "text": "Comply with the recommendations of the Committee on the Rights of the Child and the Committee on the Elimination of All Forms of Discrimination against Women concerning the sterilization of women and girls with disabilities", - "values": [ - "Disabilities", - "Rights of the Child", - "Torture and other CID treatment", - "Treaty bodies", - "Women's rights" - ] - }, - { - "text": "Enhance efforts to provide human rights training for law enforcement agencies", - "values": [ - "Human rights education and training" - ] - }, - { - "text": "Step up the efforts to fight against discrimination by refraining from contradictory legislation and by amending the anti-discrimination legislation to include explicit references to sexual orientation and gender identity as possible grounds of discrimination ", - "values": [ - "Sexual Orientation and Gender Identity" - ] - }, - { - "text": "Prevent early, child and forced marriages by passing into law and effectively enforcing a minimum age of 18 for marriage", - "values": [ - "Rights of the Child", - "Women's rights" - ] - }, - { - "text": "Promptly ratify the ICESCR", - "values": [ - "ESC rights - general", - "International instruments" - ] - }, - { - "text": "Continue to take effective measures to increase enrolment in primary and secondary schools, reduce the high rate of students dropping out or repeating years, in particular in rural areas, and find ways to address the lack of school infrastructure in those areas ", - "values": [ - "Right to education" - ] - }, - { - "text": "Guarantee freedom of expression, association and peaceful assembly for all individuals and promote meaningful dialogue that embraces and allows freely organized advocacy of diverging views by civil society", - "values": [ - "Civil society", - "Freedom of association and peaceful assembly", - "Freedom of opinion and expression" - ] - }, - { - "text": "Monitor the functioning of media regulatory bodies and the application of penalties in order to ensure they remain separated from outside influence", - "values": [ - "Freedom of the press" - ] - }, - { - "text": "Continue its positive measures, including through developing activities of the Ombudsman on the Rights of the Child ", - "values": [ - "National Human Rights Institution", - "Rights of the Child" - ] - }, - { - "text": "Adopt the judicial and administrative measures necessary to make effective the investigations before tribunals and sanctions for declarations of incitement to racial hatred and other acts of discrimination against minorities", - "values": [ - "Justice", - "Minorities", - "Racial discrimination" - ] - }, - { - "text": "Initiate the drafting and adoption of national refugee legislation based on the 1951 Geneva Convention relating to the Status of Refugess and its 1967 Protocol", - "values": [ - "Asylum-seekers - refugees", - "International instruments" - ] - }, - { - "text": "Ratify the Optional Protocol to Convention against Torture ", - "values": [ - "Detention", - "International instruments", - "Torture and other CID treatment" - ] - }, - { - "text": "Effectively investigate and prosecute complaints concerning the harassment, intimidation and arbitrary arrest of human rights defenders, and to punish those responsible", - "values": [ - "Human rights defenders" - ] - }, - { - "text": "Maintain and strengthen the harmonization process of the criminal legislation of the country with international standards", - "values": [ - "Justice" - ] - }, - { - "text": "Collect and publish statistics on hate crimes, and develop a specific national action plan against racism and xenophobia ", - "values": [ - "Racial discrimination" - ] - }, - { - "text": "Enhance its cooperation programmes and its assistance to developing countries ", - "values": [ - "Development" - ] - }, - { - "text": "Make further efforts to ensure that the abortion laws are brought in line with Chile's human rights obligations ", - "values": [ - "Women's rights" - ] - }, - { - "text": "Conduct immediate and impartial investigation of all reports on torture and cruel, inhuman or degrading treatment, bring those found guilty to justice and provide compensation to victims ", - "values": [ - "Torture and other CID treatment" - ] - }, - { - "text": "Repeal all legal provisions that discriminate against persons on the grounds of their sexual orientation or gender identity", - "values": [ - "Sexual Orientation and Gender Identity" - ] - }, - { - "text": "Strengthen the judicial and law enforcement system and eliminate corruption", - "values": [ - "Corruption", - "Justice" - ] - }, - { - "text": "Extend an open invitation to all special procedures of the Human Rights Council, and within the framework of this cooperation, allow the Special Rapporteur on the situation of human rights in the Democratic People's Republic of Korea to visit the country", - "values": [ - "Special procedures" - ] - }, - { - "text": "Continue to promote education in the area of human rights by including it in the school curriculum", - "values": [ - "Human rights education and training" - ] - }, - { - "text": "Reinforce policies to address the needs of migrants and refugees by providing for the safe and voluntary return of refugees and internally displaced persons to their homes and ensuring the rehabilitation of affected areas in accordance with international law", - "values": [ - "Asylum-seekers - refugees", - "Internally displaced persons", - "Migrants" - ] - }, - { - "text": "Ensure fair trial guarantees for prisoners subject to criminal prosecution, including those detained after last year\u2019s presidential election", - "values": [ - "Detention", - "Justice" - ] - }, - { - "text": "Strengthen measures to abolish servitude and forced labour in the country, with the assistance of the International Labour Organization, and to seek technical assistance in the reintegration of programmes aimed at exploited children, juvenile justice and follow-up to the study on violence against children", - "values": [ - "Justice", - "Labour", - "Rights of the Child", - "Technical assistance and cooperation" - ] - }, - { - "text": "Identify needs in terms of strengthening necessary capacities to overcome the current shortcomings of the normative and institutional framework for the promotion and protection of human rights and request appropriate technical assistance, including for the establishment of a national human rights institution ", - "values": [ - "National Human Rights Institution", - "Technical assistance and cooperation" - ] - }, - { - "text": "Consider ratifying ICPPED", - "values": [ - "Enforced disappearances", - "International instruments" - ] - }, - { - "text": "Adopt and actively pursue a focused national strategy on combating all forms of violence against women, which would promote awareness - raising activities related to the Law to Combat Domestic Violence", - "values": [ - "Women's rights" - ] - }, - { - "text": "Increase its efforts to close the economic gender gap in order to bring about greater gender equality", - "values": [ - "Women's rights" - ] - }, - { - "text": "Ensure compliance with the provisions against torture laid down in the Penal Code and the prosecution of all perpetrators and establish a monitoring mechanism in order to verify this compliance. ", - "values": [ - "Torture and other CID treatment" - ] - }, - { - "text": "Adopt a plan to reduce maternal mortality and to equally decriminalize abortion in cases of incest or rape ", - "values": [ - "Women's rights" - ] - }, - { - "text": "Adopt measures to address the high rate of early marriages among girls in the northern states of Nigeria, including a review of legislation permitting marriage of those under 18 years of age and undertaking awareness-raising programmes on the negative implications of early marriage", - "values": [ - "Human rights education and training", - "Rights of the Child" - ] - }, - { - "text": "Continue efforts to eliminate all forms of discrimination against persons with disabilities, in line with best practices and international standards", - "values": [ - "Disabilities" - ] - }, - { - "text": "Fully respect diplomatic courtesy and abide by the provisions of the Vienna Convention on Diplomatic Relations and the Vienna Convention on Consular Relations", - "values": [ - "International instruments" - ] - }, - { - "text": "Take all necessary measures in order to strengthen the role and operation of the Ombudsman's Office", - "values": [ - "National Human Rights Institution" - ] - }, - { - "text": "Intensify efforts to spread a culture of human rights through educational curricula and awareness-raising campaigns", - "values": [ - "Human rights education and training" - ] - }, - { - "text": "Consider the possibility of ratifying ICRMW (1990), and acceding to the Convention on the Reduction of Statelessness (1961)", - "values": [ - "International instruments", - "Labour", - "Migrants", - "Statelessness and the right to nationality" - ] - }, - { - "text": "Take further steps to bring to justice the perpetrators of human rights violations, particularly those named in the United Nations Commission of Inquiry report into the crimes of 28 September 2009", - "values": [ - "Justice" - ] - }, - { - "text": "Review its national legislation in order to ensure its full alignment with obligations under the Rome Statute, including incorporating the Rome Statute definition of crimes and general principles, as well as adopting provisions enabling cooperation with the Court", - "values": [ - "International instruments", - "Justice" - ] - }, - { - "text": "Ensure that all trials, including those of persons charged with terrorism or in connection with membership of banned religious organizations, uphold international standards of fair trial ", - "values": [ - "Counter-terrorism", - "Justice" - ] - }, - { - "text": "Enhance efforts to eliminate existing discriminatory stereotypes regarding the roles and responsibilities of women and men in family as well as in society at large ", - "values": [ - "Women's rights" - ] - }, - { - "text": "Take effective measures to ensure that the National Human Rights Action Plan fully embraces the recommendations already accepted by Turkey within the framework of the UPR", - "values": [ - "UPR process" - ] - }, - { - "text": "Accede to ICCPR, ICESCR and CAT ", - "values": [ - "CP rights - general", - "ESC rights - general", - "International instruments", - "Torture and other CID treatment" - ] - }, - { - "text": "Allocate more resources for establishing shelters for women subject to domestic violence and provide accommodation services for girls deprived of access to education", - "values": [ - "Rights of the Child", - "Women's rights" - ] - }, - { - "text": "Continue to take a comprehensive approach through its law and justice, civil society and health programs to address the high incidence of domestic violence, particularly in strengthening women's access to the formal justice system ", - "values": [ - "Civil society", - "Justice", - "Rights of the Child", - "Women's rights" - ] - }, - { - "text": "Strengthen efforts for the full implementation of the National Action Plan for Children", - "values": [ - "Rights of the Child" - ] - }, - { - "text": "Implement a more inclusive governance system that promotes further representation of women into the national institutions", - "values": [ - "Women's rights" - ] - }, - { - "text": "Take all necessary measures to ratify and implement the Convention on the Rights of Persons with Disabilities", - "values": [ - "Disabilities", - "International instruments" - ] - }, - { - "text": "Enhance efforts to facilitate the regularization of Bidouns, so that they can fully enjoy their rights", - "values": [ - "Minorities" - ] - }, - { - "text": "Criminalize all forms of trafficking in children", - "values": [ - "Rights of the Child", - "Trafficking" - ] - }, - { - "text": "Endorse the final outcome document approved during the Durban Review Conference, in view of its unanimous adoption.", - "values": [ - "Racial discrimination" - ] - }, - { - "text": "Put forward extensive efforts to strengthen cooperation with the United Nations human rights mechanisms, particularly by issuing a standing invitation to the special procedures and recognizing the mandate of the Special Rapporteur on the situation of human rights in Belarus", - "values": [ - "Special procedures", - "Treaty bodies", - "UPR process" - ] - }, - { - "text": "Ensure the best interest of the child in all matters related to immigration ", - "values": [ - "Migrants", - "Rights of the Child" - ] - }, - { - "text": "Take measures to ensure that the national mechanism for the prevention of torture and other cruel, inhuman and degrading treatment is provided with sufficient resources to operate effectively", - "values": [ - "Detention", - "Torture and other CID treatment" - ] - }, - { - "text": "Ratify the Convention on the Rights of Persons with Disabilities, signed in 2007", - "values": [ - "Disabilities", - "International instruments" - ] - }, - { - "text": "Step up its efforts towards the ratification of other human rights conventions, particularly the Convention on the Elimination of All Forms of Discrimination against Women and the International Convention on the Protection of the Rights of All Migrant Workers and Members of Their Families", - "values": [ - "International instruments", - "Labour", - "Migrants", - "Women's rights" - ] - }, - { - "text": "Ensure that it grants the right to peaceful assembly and freedom of expression in accordance with its international obligations", - "values": [ - "Freedom of association and peaceful assembly", - "Freedom of opinion and expression" - ] - }, - { - "text": "Allocate sufficient funds for the implementation of the State Programme and establish training and awareness-raising projects for law enforcement officials dealing with victims of trafficking.", - "values": [ - "Human rights education and training", - "Trafficking" - ] - }, - { - "text": "Continue to give priority to the fulfilment of the basic rights of its citizens, particularly to food and to an adequate standard of living, by intensifying the implementation of comprehensive poverty-alleviation programs ", - "values": [ - "Poverty", - "Right to food" - ] - }, - { - "text": "Continue to strengthen the democratic experience that it has embarked upon", - "values": [ - "General" - ] - }, - { - "text": "Step up the review of the 2007 law to combat slavery in order to ensure that exhaustive, impartial, and effective investigations can be carried out of all alleged slavery crimes", - "values": [ - "Other" - ] - }, - { - "text": "Release bloggers and activists currently detained under the Emergency Law and cease its arrests and detentions of political activists", - "values": [ - "Detention", - "Freedom of association and peaceful assembly" - ] - }, - { - "text": "Complete the drafting of the anti-discrimination act as soon as possible to ensure that Roma will not be discriminated in the field of employment, health care, education, housing and the administration of Justice.", - "values": [ - "Minorities", - "Racial discrimination" - ] - }, - { - "text": "Enhance cooperation with all human rights mechanisms particularly by issuing a standing invitation to the special procedures mandate holders ", - "values": [ - "Special procedures" - ] - }, - { - "text": "Strengthen its approach in the area of migration by acceding to ICRMW and ask for the assistance of competent international institutions ", - "values": [ - "International instruments", - "Labour", - "Migrants", - "Technical assistance and cooperation" - ] - }, - { - "text": "Bearing in mind the accusations of war crimes and crimes against humanity, incorporate the Rome Statute into the internal legislation as soon as possible. ", - "values": [ - "International instruments", - "Justice" - ] - }, - { - "text": "Continue to improve its education system and ensure access to quality education for all ", - "values": [ - "Right to education" - ] - }, - { - "text": "Continue efforts to combat human trafficking and provide all necessary requirements to ensure the implementation of the strategic plan on this matter", - "values": [ - "Trafficking" - ] - }, - { - "text": "Fully guarantee freedom of association, including for non-governmental organizations working on human rights, notably by simplifying the registration process for NGOs", - "values": [ - "Civil society", - "Freedom of association and peaceful assembly" - ] - }, - { - "text": "The Government provides free access to health and medical services. To alleviate capacity constraints and improve services available, the government facilitates partnerships with both Taiwan and Australia for specialized medical teams to visit and provide specialized medical services. There is a team of Cuban doctors permanently based in Tarawa. The Government also continues to approve increased scholarship allocations for medical and nursing training overseas, mainly in Australia and Cuba.", - "values": [ - "Right to health" - ] - }, - { - "text": "Ratify the Hague Convention on Protection of Children and Cooperation in respect of Inter-country Adoption ", - "values": [ - "Rights of the Child" - ] - }, - { - "text": "Continue its efforts to strengthen the judicial system to enhance public security and the rule of law", - "values": [ - "Justice", - "Public security" - ] - }, - { - "text": "Continue its programme on human rights education and public awareness-raising ", - "values": [ - "Human rights education and training" - ] - }, - { - "text": "Implement the right to life, freedom of expression and opinion and the freedom of assembly in day-to-day practice", - "values": [ - "Freedom of association and peaceful assembly", - "Freedom of opinion and expression" - ] - }, - { - "text": "An early harmonization of anti-discrimination legislation along with adequate action to address racism, xenophobia and related intolerance against migrant communities and ethnic minorities, including the Roma community", - "values": [ - "Migrants", - "Minorities", - "Racial discrimination" - ] - }, - { - "text": "Ensure inclusive campaigning before the 2015 elections and grant all political parties equal access to the media ", - "values": [ - "Elections", - "Freedom of association and peaceful assembly" - ] - }, - { - "text": "Consider ratifying the Second Optional Protocol to the International Covenant on Civil and Political Rights Aimed at the Abolition of the Death Penalty (ICCPR-OP 2).", - "values": [ - "Death penalty", - "International instruments" - ] - }, - { - "text": "Improve domestic mechanisms for the implementation of its international obligations in the field of human rights", - "values": [ - "International instruments" - ] - }, - { - "text": "Respond favourably to the requests of the Special Rapporteurs on torture and on the situation of human rights defenders to visit the country ", - "values": [ - "Human rights defenders", - "Special procedures", - "Torture and other CID treatment" - ] - }, - { - "text": "Strengthen its efforts, including with the international cooperation, aimed at preventing, sanctioning and eradicating all forms of violence against women, including the Female Genital Mutilation, and also adopt measures to harmonize the legal recognition of civil, political, economic and social rights between women and men ", - "values": [ - "Rights of the Child", - "Technical assistance and cooperation", - "Torture and other CID treatment", - "Women's rights" - ] - }, - { - "text": "Continue the dialogue with the different Venezuelan stakeholders in a spirit of respect, peace and reconciliation, and with a view to achieving the political and economic stability of the Bolivarian Republic of Venezuela, which will allow further progress in the promotion and protection of all human rights for all Venezuelan women and men", - "values": [ - "Justice" - ] - }, - { - "text": "Further engage constructively with civil society in its human rights activities in the country ", - "values": [ - "Civil society" - ] - }, - { - "text": "Adopt the draft law on trafficking in persons ", - "values": [ - "Trafficking" - ] - }, - { - "text": "Provide financial support to the Slovenian-language music school in the province of Carinthia on the basis of the same criteria as applied to the German-language music school ", - "values": [ - "Minorities" - ] - }, - { - "text": "Continue efforts in strengthening its national framework to ensure that the principles of inclusivity and non-discrimination are incorporated fully, including through, inter alia, the ratification of the ICRMW and the possibility of the inclusion of the ECOSOC rights in the national human rights norms ", - "values": [ - "International instruments", - "Labour", - "Migrants" - ] - }, - { - "text": "Lift the state of emergency and to take the measures necessary to reestablish a constitutional order complying with the rule of law, before the date indicated recently by the Government", - "values": [ - "Justice" - ] - }, - { - "text": "Consider expediting the adoption of a third national human rights action plan as an extension of the second, which served for the period 2012-2016", - "values": [ - "General" - ] - }, - { - "text": "Consider adhering to the Optional Protocols to ICESR and CRPD as soon as possible as well as the Optional Protocols to ICCPR and to CED", - "values": [ - "CP rights - general", - "Disabilities", - "ESC rights - general", - "Enforced disappearances", - "International instruments" - ] - }, - { - "text": "Derogate the legislation that criminalizes the LGBT community, and put an end to the defamatory and harassing campaigns against them", - "values": [ - "Sexual Orientation and Gender Identity" - ] - }, - { - "text": "Continue to carry out human rights campaigns to improve the human rights awareness of the general public", - "values": [ - "Human rights education and training" - ] - }, - { - "text": "Abstain from applying legislation that criminalizes homosexuality ", - "values": [ - "Sexual Orientation and Gender Identity" - ] - }, - { - "text": "Take further steps in view of the ratification of CRPD as soon as possible within a 10 years' timeframe", - "values": [ - "Disabilities", - "International instruments" - ] - }, - { - "text": "Give greater prominence and allocate adequate resources to the implementation of policies that strengthen the State's institutional gender framework using training courses that promote gender equality ", - "values": [ - "Women's rights" - ] - }, - { - "text": "Speed up formalities for the submission of pending reports to CEDAW", - "values": [ - "Treaty bodies", - "Women's rights" - ] - }, - { - "text": "Accede to ICERD and CAT", - "values": [ - "International instruments", - "Racial discrimination", - "Torture and other CID treatment" - ] - }, - { - "text": "Continue working to ensure coordination between various relevant national mechanisms for further integration of human rights principles", - "values": [ - "General" - ] - }, - { - "text": "Enhance the Independent Commission's Investigation, processing and reporting of human rights abuses by State and non-State actors, including investigations of the allegations of arbitrary arrest and detentions associated with the spring protests", - "values": [ - "Detention", - "Human rights violations by state agents" - ] - }, - { - "text": "Continue working for the promotion and protection of the rights of indigenous peoples, peasants and other persons working in rural areas", - "values": [ - "Indigenous peoples" - ] - }, - { - "text": "Continue its support for the foundations that provide services to women and children victims of abuse and violence", - "values": [ - "Rights of the Child", - "Women's rights" - ] - }, - { - "text": "Adopt and develop a comprehensive national action plan that addresses traditional harmful practices and gender-based violence against women and girls", - "values": [ - "Rights of the Child", - "Torture and other CID treatment", - "Women's rights" - ] - }, - { - "text": "Explicitly prohibit corporal punishment in all settings, including the home ", - "values": [ - "Rights of the Child", - "Torture and other CID treatment" - ] - }, - { - "text": "Investigate all allegations of excessive use of force, racially motivated violence and ill-treatment by law enforcement officials and bring those responsible to justice", - "values": [ - "Human rights violations by state agents", - "Racial discrimination", - "Torture and other CID treatment" - ] - }, - { - "text": "Take further steps to address issues of violence against women, including to finalize the Women's Right Bill, the Domestic Violence Bill and the Children's Act, as early as possible, and consider withdrawing its reservation to article 16 of CEDAW", - "values": [ - "International instruments", - "Rights of the Child", - "Women's rights" - ] - }, - { - "text": "Further its measures aimed at reduction of poverty and dealing with food insecurity and access to water resources ", - "values": [ - "Right to food", - "Right to water and sanitation" - ] - }, - { - "text": "Continue its efforts to ratify ICRMW", - "values": [ - "International instruments", - "Labour", - "Migrants" - ] - }, - { - "text": "Strengthen its cooperation with countries in the region to prevent and combat trafficking, in particular of women", - "values": [ - "Trafficking", - "Women's rights" - ] - }, - { - "text": "Further improve the coverage of reproductive, maternal, newborn, child and adolescent health services in the country", - "values": [ - "Right to health", - "Rights of the Child", - "Women's rights" - ] - }, - { - "text": "Consider developing a system of alternative sentencing to effectively reduce the number of women and children held in prison", - "values": [ - "Detention", - "Rights of the Child", - "Women's rights" - ] - }, - { - "text": "Continue efforts of poverty reduction and granting basic needs and services for the vulnerable groups of the society", - "values": [ - "Poverty" - ] - }, - { - "text": "Refrain from imposing disproportionate or discriminatory restrictions on freedom of association and reject draft laws on money laundering, treason and foreign agents", - "values": [ - "Freedom of association and peaceful assembly" - ] - }, - { - "text": "Address the arbitrary and excessive use of force by law enforcement agencies, in particular the military, by providing effective human rights-sensitive training and additional resources, and setting up accountability mechanisms", - "values": [ - "Human rights education and training", - "Human rights violations by state agents" - ] - }, - { - "text": "Implement the recently approved legislation on discrimination and violence against women and on prohibition of Genital Female Mutilation ", - "values": [ - "Rights of the Child", - "Torture and other CID treatment", - "Women's rights" - ] - }, - { - "text": "Continue the efforts aiming at further promoting the rights of persons with disabilities and increasing their employment and their integration to the labour market", - "values": [ - "Disabilities", - "Labour" - ] - }, - { - "text": "Take appropriate legislative measures to void the legislation requiring human rights organizations that receive foreign funding to register as "foreign agents" ", - "values": [ - "Civil society", - "Freedom of association and peaceful assembly" - ] - }, - { - "text": "Intensify the efforts undertaken to make progress in the area of gender equality, especially with regard to the equality of women before the law, equal access to judicial processes and participation in the education system at all levels.", - "values": [ - "Justice", - "Right to education", - "Women's rights" - ] - }, - { - "text": "Prevent child marriage by having a minimum age restriction of marriage at 18 without any exception", - "values": [ - "Rights of the Child", - "Women's rights" - ] - }, - { - "text": "Adopt provisions prohibiting polygamy, early marriage and female genital mutilation", - "values": [ - "Rights of the Child", - "Torture and other CID treatment", - "Women's rights" - ] - }, - { - "text": "Review the Ukrainian legislative framework on asylum and refugees, so as to ensure respect of the principle of non-refoulement and that asylum seekers are not deported to countries where they might find themselves at risk", - "values": [ - "Asylum-seekers - refugees" - ] - }, - { - "text": "Ratify the Framework Convention for the Protection of National Minorities", - "values": [ - "International instruments", - "Minorities" - ] - }, - { - "text": "Incorporate international human rights treaties into national law", - "values": [ - "International instruments" - ] - }, - { - "text": "Take the measures necessary to eliminate the possibility of exercising the right to conscientious objection to compulsory military service", - "values": [ - "Freedom of religion and belief" - ] - }, - { - "text": "Do everything in its power to improve detention conditions and to prosecute any perpetrators of ill-treatment. ", - "values": [ - "Detention", - "Torture and other CID treatment" - ] - }, - { - "text": "Consider to adjust its legislation in order to specifically define the trafficking in human beings for the purpose of sexual exploitation ", - "values": [ - "Trafficking" - ] - }, - { - "text": "Undertake special measures concerning employment, social welfare and protection of the rights of vulnerable groups, in particular women and persons with disabilities ", - "values": [ - "Disabilities", - "Women's rights" - ] - }, - { - "text": "Emergency powers should not be abused or used against journalists and bloggers in their exercise of their right to freedom of expression", - "values": [ - "Freedom of opinion and expression", - "Freedom of the press" - ] - }, - { - "text": "Fully implement the Convention on the Rights of Persons with Disabilities", - "values": [ - "Disabilities", - "International instruments" - ] - }, - { - "text": "Develop a comprehensive strategy to eliminate discriminatory gender stereotypes ", - "values": [ - "Women's rights" - ] - }, - { - "text": "Incorporate the principle of equality between women and men into the Constitution", - "values": [ - "Women's rights" - ] - }, - { - "text": "Strengthen the office of the Ombudsman in the protection of the rights of nationals", - "values": [ - "National Human Rights Institution" - ] - }, - { - "text": "Seek appropriate technical assistance, from the international community or development partners, regarding international reporting obligations, including overdue ones, and capacity building for training of local staff and for the implementation of international commitments within domestic legislation as highlighted in paragraph 113 of the national report ", - "values": [ - "Technical assistance and cooperation", - "Treaty bodies" - ] - }, - { - "text": "Ensure that the rights of women and ethnic minorities are not undermined as a result of the recently introduced set of Protection of Race and Religion laws", - "values": [ - "Freedom of religion and belief", - "Minorities", - "Racial discrimination", - "Women's rights" - ] - }, - { - "text": "Do not lower the minimum age of criminal responsibility for children", - "values": [ - "Rights of the Child" - ] - }, - { - "text": "Combat more actively the stereotypes and prejudices to which lesbian, gay, bisexual, transgender and intersex persons are subject, organizing public awareness campaigns and ensuring that the perpetrators of acts of violence on the grounds of sexual orientation are prosecuted and punished", - "values": [ - "Human rights education and training", - "Sexual Orientation and Gender Identity" - ] - }, - { - "text": "Enhance legislative reforms amongst others by taking measures to ensure in the short term, as well as legally and in practice, the registration of fully independent human rights NGOs", - "values": [ - "Civil society", - "Freedom of association and peaceful assembly" - ] - }, - { - "text": "Allow children of Greek citizens working in Istanbul to attend the Greek minority schools. So far, only children of employees of the Consulate of Greece are allowed ", - "values": [ - "Minorities", - "Right to education", - "Rights of the Child" - ] - }, - { - "text": "Establish and implement comprehensive measures to prevent violence against women and implement effective measures of support for victims of domestic violence", - "values": [ - "Rights of the Child", - "Women's rights" - ] - }, - { - "text": "Continue efforts to empower rural and peasant women as part of development programs, including the Green Revolution and Transformation of Agriculture, which aim to ensure food security and reduction of poverty", - "values": [ - "Development", - "Poverty", - "Women's rights" - ] - }, - { - "text": "Strengthen legislation and policies on gender equality as well as the prevention and repression of gender-based violence", - "values": [ - "Women's rights" - ] - }, - { - "text": "Urge to take measures for the introduction of specific modules on human rights at all levels of education, and to continue its cooperation with international and regional human rights mechanisms, boost the national framework of humanitarian consultation created by the decree of 23 January 2013 and to strengthen the role of NGOs' interface and civil society ", - "values": [ - "Civil society", - "Human rights education and training", - "Technical assistance and cooperation" - ] - }, - { - "text": "To further continue the efforts to punish those responsible for the breaking of the retaining walls in Jacarei and Mariana, and to ensure that the victims of this event are guaranteed their right to access to justice, and their right to fair compensation, remediation and reparations for the damage caused. We recommend that Brazil share these acquired experiences through its constructive and substantive participation in the Intergovernmental Working Group established through resolution 26/9 of the Human Rights Council", - "values": [ - "Business and human rights" - ] - }, - { - "text": "Take all appropriate steps to accede to the Rome Statute", - "values": [ - "International instruments", - "Justice" - ] - }, - { - "text": "Accede to the 1951 Convention relating to the Status of Refugees and its 1967 Protocol, to the 1954 Convention relating to the Status of Stateless Persons and to the 1961 Convention on the Reduction of Statelessness ", - "values": [ - "Asylum-seekers - refugees", - "International instruments", - "Statelessness and the right to nationality" - ] - }, - { - "text": "Continue to ensure the full participation of NGOs, civil society organizations and the private sector in the follow up to this universal periodic review and in promoting human rights ", - "values": [ - "Civil society", - "UPR process" - ] - }, - { - "text": "Redouble efforts to combat violence against women and the worst forms of child labour, and provide shelter services to victims of these crimes", - "values": [ - "Labour", - "Rights of the Child", - "Women's rights" - ] - }, - { - "text": "Complete the procedures for ratifying the Convention against Torture and Other Cruel, Inhuman and Degrading Treatment or Punishment and the Convention on the Protection of All Persons from Enforced Disappearance.", - "values": [ - "Enforced disappearances", - "International instruments", - "Torture and other CID treatment" - ] - }, - { - "text": "Continue the moratorium on death penalty", - "values": [ - "Death penalty" - ] - }, - { - "text": "Promote greater accountability for the failure of police officers to comply with professional standards of conduct, and carry out full, impartial and independent investigations where the use of force results in the killing of civilians ", - "values": [ - "Extrajudicial executions", - "Human rights violations by state agents" - ] - }, - { - "text": "Step up efforts towards the completion of the institutional framework for the promotion and protection of human rights, including the formulation of a national human rights action plan", - "values": [ - "General" - ] - }, - { - "text": "Further strengthen institutional building in public health to ensure people\u2019s right to health", - "values": [ - "Right to health" - ] - }, - { - "text": "Further address the elimination of violence against children, including sexual violence", - "values": [ - "Rights of the Child" - ] - }, - { - "text": "Advance in the establishment of the national mechanism for the prevention of torture envisioned in Law No. 26827", - "values": [ - "Detention", - "Torture and other CID treatment" - ] - }, - { - "text": "Take immediate actions to establish a minimum age of 18 for recruitment and ensure that those still fighting are demobilized, and take measures to prevent recruitment of minors in refugee camps.", - "values": [ - "Rights of the Child" - ] - }, - { - "text": "Take action to ensure the legal age of marriage of 18 years is enforced nationwide for both boys and girls", - "values": [ - "Rights of the Child", - "Women's rights" - ] - }, - { - "text": "Accede to the United Nations Convention relating to the Status of Stateless Persons of 1954 and to the Convention on the Reduction of Statelessness of 1961 ", - "values": [ - "International instruments", - "Statelessness and the right to nationality" - ] - }, - { - "text": "Consider acceding to the Rome Statute", - "values": [ - "International instruments", - "Justice" - ] - }, - { - "text": "Continue exploring possibilities to extend its international commitments by ratifying the Optional Protocols to ICCPR ", - "values": [ - "CP rights - general", - "Death penalty", - "International instruments" - ] - }, - { - "text": "Continue efforts to combat gender inequality in the workplace and implement measures to increase representation of women at senior level and managerial positions in government and other sectors", - "values": [ - "Women's rights" - ] - }, - { - "text": "Take new measures to promote access to justice, in particular for rural communities and women", - "values": [ - "Justice", - "Women's rights" - ] - }, - { - "text": "Prioritize efforts to achieve the maternal health and basic education Millennium Development Goals ", - "values": [ - "Right to education", - "Right to health", - "Women's rights" - ] - }, - { - "text": "Ensure that the right to conscientious objection to military service is observed", - "values": [ - "Freedom of religion and belief" - ] - }, - { - "text": "Take serious measures to resolve the conflict in a peaceful manner by complying with the Government\u2019s obligations under the Minsk package of measures and by initiating their implementation", - "values": [ - "Other" - ] - }, - { - "text": "Adopt legislative provisions in order to prohibit, sanction and effectively prevent the practice of female genital mutilation ", - "values": [ - "Rights of the Child", - "Torture and other CID treatment", - "Women's rights" - ] - }, - { - "text": "Guarantee that cases of persecution and threats against human rights defenders are properly investigated and prosecuted, and if need be compensate victims", - "values": [ - "Human rights defenders" - ] - }, - { - "text": "Step up the efforts to combat all forms of discrimination and favour equality of opportunities and treatment, with special care and attention to those who are in a more vulnerable situation, such as persons belonging to the Roma community", - "values": [ - "Minorities", - "Racial discrimination" - ] - }, - { - "text": "Ratify the Rome Statute of the International Criminal Court. ", - "values": [ - "International instruments", - "Justice" - ] - }, - { - "text": "Step up its efforts to consolidate political, social, economic and cultural freedoms and freedom of the media", - "values": [ - "CP rights - general", - "ESC rights - general", - "Freedom of the press" - ] - }, - { - "text": "Implement efficiently recently ratified international conventions, especially in the field of child rights ", - "values": [ - "International instruments", - "Rights of the Child" - ] - }, - { - "text": "Put an end to its actions against the realization of the rights of peoples to a healthy environment, peace, development and self-determination ", - "values": [ - "Development", - "Environment" - ] - }, - { - "text": "Continue implementing measures in its ongoing efforts to eliminate discrimination and all forms of violence against women and children, and, in particular, undertake appropriate measures to prevent and combat ill treatment, sexual abuse and violence against children, as well as rehabilitate child victims", - "values": [ - "Rights of the Child", - "Torture and other CID treatment", - "Women's rights" - ] - }, - { - "text": "Consider submitting an interim report on the implementation of UPR recommendations", - "values": [ - "UPR process" - ] - }, - { - "text": "Continue ongoing efforts to establish a national human rights institution and ensure the provision of the necessary resources to such an institution", - "values": [ - "National Human Rights Institution" - ] - }, - { - "text": "Further open its doors to cooperation with human rights and humanitarian organizations, including by extending an open invitation to Special Procedures and by providing full access to representatives of the International Committee of the Red Cross", - "values": [ - "Detention", - "Special procedures" - ] - }, - { - "text": "Continue efforts to promote gender equality and criminalize violence against women", - "values": [ - "Justice", - "Women's rights" - ] - }, - { - "text": "Align its legislation to prohibit all forms of discrimination against children, in particular any discrimination that stigmatizes them as witches, and guarantee that minors benefit from concrete legal and social protection against rituals that endanger their lives", - "values": [ - "Rights of the Child" - ] - }, - { - "text": "To not yield to the pressure to reintroduce the death penalty and maintain its abolition, in accordance with the global trend towards abolition ", - "values": [ - "Death penalty" - ] - }, - { - "text": "Become a party to the International Convention on the Protection of the Rights of All Migrant Workers and Members of Their Families ", - "values": [ - "International instruments", - "Labour", - "Migrants" - ] - }, - { - "text": "Take all necessary measures to put an end to extrajudicial killings, investigate all reported cases, and ensure that all suspected perpetrators are brought to justice", - "values": [ - "Extrajudicial executions" - ] - }, - { - "text": "Develop and adopt legislation in the area of protection of the rights of migrants, refugees, asylum seekers and stateless persons in accordance with relevant international standards", - "values": [ - "Asylum-seekers - refugees", - "Migrants", - "Statelessness and the right to nationality" - ] - }, - { - "text": "Take the necessary measures to promote the rights of persons with disabilities", - "values": [ - "Disabilities" - ] - }, - { - "text": "Take immediate measures in order to comply fully with the Optional Protocol to the Convention on the Rights of the Child on the involvement of children in armed conflict (OP-CRC-AC) ", - "values": [ - "International humanitarian law", - "International instruments", - "Rights of the Child" - ] - }, - { - "text": "Continue to take the necessary steps to further strengthen its public health-care system", - "values": [ - "Right to health" - ] - }, - { - "text": "Consider ratifying or acceding to the core international human rights treaties", - "values": [ - "International instruments" - ] - }, - { - "text": "Fully implement its national human rights plan to strengthen institutional coordination and monitoring of human rights policies in the Bolivarian Republic of Venezuela, particularly with regard to social protection programmes that support older persons and persons with disabilities", - "values": [ - "Disabilities" - ] - }, - { - "text": "Continue its efforts to provide greater access to education and employment", - "values": [ - "Development", - "Right to education" - ] - }, - { - "text": "Cambodia also took upon itself implementation of universal periodic review recommendations addressing socio-economic development issues, such as poverty reduction, education, health, gender, the rights of the child and other economic, social and cultural rights. Such issues would remain top priorities for the Government.", - "values": [ - "Development", - "ESC rights - general" - ] - }, - { - "text": "Accelerate the reduction of preventable maternal, new-born and child mortality in the country", - "values": [ - "Right to health", - "Rights of the Child", - "Women's rights" - ] - }, - { - "text": "Strengthen the measures to ensure the protection of people with albinism, including by expediting the investigation and prosecution of all cases and effectively fighting impunity", - "values": [ - "Impunity", - "Minorities" - ] - }, - { - "text": "Continue, in collaboration with the National Commission for Women and Children and other\nrelevant stakeholders, to pursue public advocacy campaigns and promote greater awareness and\nunderstanding of the rights of victims of violence against women ", - "values": [ - "Human rights education and training", - "Women's rights" - ] - }, - { - "text": "Impose an immediate official moratorium on the death penalty with a view to abolishing capital punishment entirely as recommended by the Constitution Review Commission, while commuting the existing sentences to life imprisonment terms", - "values": [ - "Death penalty" - ] - }, - { - "text": "Allocate a major proportion of its budget to public health, emphasizing the supply of safe drinking water and sanitation services ", - "values": [ - "Right to health", - "Right to water and sanitation" - ] - }, - { - "text": "Take effective measures to safeguard the basic rights of prisoners, provide them with adequate nutritious food and sanitation, and separate juvenile and adult prisoners", - "values": [ - "Detention", - "Right to water and sanitation", - "Rights of the Child" - ] - }, - { - "text": "Further enhance measures to prevent the exploitation of children for the purposes of prostitution and pornography, as well as to prosecute persons who are guilty of the exploitation or ill treatment of children", - "values": [ - "Rights of the Child" - ] - }, - { - "text": "Abolish its extrajudicial and extraterritorial laws and refrain from the application of unilateral measures against other countries ", - "values": [ - "Other" - ] - }, - { - "text": "Undertake efforts to combat illegal trafficking of persons, in particular those indicated in the United Nations Convention against Transnational Organized Crime and the Protocols Thereto ", - "values": [ - "International instruments", - "Trafficking" - ] - }, - { - "text": "Continue to enhance laws and policies of access to education for the most disadvantaged learners, as done through the Alternative Learning System", - "values": [ - "Right to education" - ] - }, - { - "text": "Identify through its domestic discussion effective ways and means to prevent and suppress manifestation of racism, xenophobia and intolerance", - "values": [ - "Racial discrimination" - ] - }, - { - "text": "Adopt the necessary measures to convert the Swiss Resource Centre for Human Rights into a national human rights institution in compliance with the Paris Principles, giving it a broad human rights mandate", - "values": [ - "National Human Rights Institution" - ] - }, - { - "text": "Implement the recommendation of its National Dialogue Conference to set the minimum marriage age at 18 years in line with its obligation under the Convention on the Rights of the Child to take measures with a view to abolishing practices detrimental to the health of children ", - "values": [ - "International instruments", - "Right to health", - "Rights of the Child" - ] - }, - { - "text": "Continue the efforts to abolish the death penalty", - "values": [ - "Death penalty" - ] - }, - { - "text": "Consider positively the establishment of the moratorium on the death penalty with a view to its abolition ", - "values": [ - "Death penalty" - ] - }, - { - "text": "Continue addressing, as a priority, the enjoyment by all people of the right to food and to ensure food security ", - "values": [ - "Right to food" - ] - }, - { - "text": "Extend an open invitation to all special procedures of the Human Rights Council and establish an adequate mechanism to bring to date all national reports to the Committees and to respond to information requests of the special procedures", - "values": [ - "Special procedures" - ] - }, - { - "text": "Increase efforts aiming at building the capacity of the judicial personnel technically and administratively", - "values": [ - "Justice" - ] - }, - { - "text": "Legislation for the eradication of FGM as well as to take effective measure to raise awareness of the people", - "values": [ - "Human rights education and training", - "Rights of the Child", - "Torture and other CID treatment", - "Women's rights" - ] - }, - { - "text": "Guarantee that all human rights defenders in Honduras are able to carry out their legitimate human rights activities according to the Declaration on Human Rights Defenders", - "values": [ - "Human rights defenders", - "International instruments" - ] - }, - { - "text": "Continue efforts to fully eradicate sexual mutilation.", - "values": [ - "Rights of the Child", - "Torture and other CID treatment", - "Women's rights" - ] - }, - { - "text": "Consider the review of the land laws in order to address the immediate needs of internally displaced persons", - "values": [ - "Internally displaced persons", - "Right to land" - ] - }, - { - "text": "Implement the recommendations issued by the Venice Commission and the European Commission with regard to the rule of law", - "values": [ - "International instruments", - "Justice" - ] - }, - { - "text": "Take all necessary measures to guarantee the full and effective implementation of laws on the protection of women and girls so as to strengthen the rights of victims, but also to fight against the impunity of perpetrators of violence against them", - "values": [ - "Impunity", - "Rights of the Child", - "Women's rights" - ] - }, - { - "text": "Step up efforts to tackle the socioeconomic gap and discrimination on the basis of ethnic origin, race or language, especially with regard to education and employment", - "values": [ - "Labour", - "Racial discrimination", - "Right to education" - ] - }, - { - "text": "Ensure a successful completion and adoption of a Federal Constitution in line with the Federal Government's agenda and Vision 2016", - "values": [ - "General" - ] - }, - { - "text": "Consider taking targeted measures to combat violence against children, to conduct awareness campaigns on children's right to freedom from violence and to offer protection to children who are victims of violence", - "values": [ - "Rights of the Child" - ] - }, - { - "text": "Take into consideration the comments made by CRC with respect to the adoption of a global strategy in order to eliminate all forms of discrimination against vulnerable groups of children", - "values": [ - "Rights of the Child", - "Treaty bodies" - ] - }, - { - "text": "Redouble its efforts to combat corruption and promote good governance with a view to achieving substantial improvements in this regard", - "values": [ - "Corruption", - "Justice" - ] - }, - { - "text": "Safeguard separation of powers and independence of jurisdictions ", - "values": [ - "Justice" - ] - }, - { - "text": "Investigate allegations of forced recruitment of children and hold to account any persons found in violation of CRC and its Optional Protocol.", - "values": [ - "International instruments", - "Rights of the Child" - ] - }, - { - "text": "Establish relevant prison facilities for the Juvenile population", - "values": [ - "Detention", - "Rights of the Child" - ] - }, - { - "text": "Rescind the Public Emergency Regulations 2009 and not replace them with equivalent measures", - "values": [ - "Justice" - ] - }, - { - "text": "Ensure the effective respect of the constitutional prohibition of torture", - "values": [ - "Torture and other CID treatment" - ] - }, - { - "text": "Ensure that victims of grave violations receive timely, effective and appropriate services through the monitoring, reporting and response system for children affected by conflict", - "values": [ - "International humanitarian law", - "Rights of the Child" - ] - }, - { - "text": "Pay special attention to the rights of Roma children to education, and implement the relevant policy instruments to ensure their enjoyment of the rights as enshrined in the Estonian Constitution ", - "values": [ - "Minorities", - "Right to education", - "Rights of the Child" - ] - }, - { - "text": "Meet the stated commitment from the Common Minimum Program of 2004 to dedicate 3 percent of India's GDP to health and 6 percent to education ", - "values": [ - "Right to education", - "Right to health" - ] - }, - { - "text": "Amend the Mass Media Proclamation so that the space for free media is widened, and refrain from invoking the Anti-Terrorism Proclamation to stifle independent journalists ", - "values": [ - "Counter-terrorism", - "Freedom of the press" - ] - }, - { - "text": "Take further measures to guarantee that detained juvenile offenders are separated from adults", - "values": [ - "Detention", - "Rights of the Child" - ] - }, - { - "text": "Consider the possibility of establishing a national human rights institution in conformity with international standards ", - "values": [ - "International instruments", - "National Human Rights Institution" - ] - }, - { - "text": "Stipulate a clear definition of the crime of torture in its national legal framework in compliance with the Convention against Torture and Cruel, Inhuman or Degrading Treatment or Punishment and ensures investigation of all allegations of torture and ill-treatment, bring perpetrators to justice in compliance with international fair trial standards, providing rehabilitation to victims", - "values": [ - "International instruments", - "Torture and other CID treatment" - ] - }, - { - "text": "Adopt a law on violence against women and girls in all settings as well as a strategy for its implementation", - "values": [ - "Rights of the Child", - "Women's rights" - ] - }, - { - "text": "Review all laws and practices that discriminate on the basis of gender and bring them in line with international standards, including legislation with regard to marriage, divorce and inheritance", - "values": [ - "Women's rights" - ] - }, - { - "text": "Take measures in order to ensure that freedom of assembly and association can be exercised in line with international obligations and refrain from imposing restrictions on civil society and human rights defenders", - "values": [ - "Civil society", - "Freedom of association and peaceful assembly", - "Human rights defenders" - ] - }, - { - "text": "Continue its efforts to ensure the enrolment of all segments of the society in education ", - "values": [ - "Right to education" - ] - }, - { - "text": "Take more effective measures in order to bring the Ombudsman's Office into compliance with the Paris Principles ", - "values": [ - "National Human Rights Institution" - ] - }, - { - "text": "Take steps to ensure that prompt, effective and impartial investigations are carried out into the killings of all Somali civil-society actors and journalists ", - "values": [ - "Civil society", - "Extrajudicial executions", - "Freedom of the press" - ] - }, - { - "text": "Prevent and combat racism and hate speech, including through human rights education and training, and by promoting tolerance", - "values": [ - "Human rights education and training", - "Racial discrimination" - ] - }, - { - "text": "Consider becoming a party to the 1951 Convention relating to the Status of Refugees and the Protocol thereto ", - "values": [ - "Asylum-seekers - refugees", - "International instruments" - ] - }, - { - "text": "Continue its efforts to further strengthen the education sector ", - "values": [ - "Right to education" - ] - }, - { - "text": "Ensure effective implementation of the ILO Forced Labour Convention no. 29 and the ILO Convention no. 100 concerning Equal Remuneration for Men and Women Workers for Work of Equal Value ", - "values": [ - "International instruments", - "Labour", - "Women's rights" - ] - }, - { - "text": "Continue its reflections and work with a view to having a written Constitution ", - "values": [ - "General" - ] - }, - { - "text": "Ensure that the recently adopted Child Protection Code is duly implemented to prevent child labour", - "values": [ - "Labour", - "Rights of the Child" - ] - }, - { - "text": "Take measures to ensure the full implementation of the principles and provisions of the Convention on the Rights of the Child. Intensify efforts to establish an Ombudsman for Children to deal with complaints of violations of the rights of the child, particularly those related to child exploitation and sexual violence ", - "values": [ - "International instruments", - "National Human Rights Institution", - "Rights of the Child" - ] - }, - { - "text": "Codify and harmonize the national legislation to expressly prohibit discrimination, and in accordance with the existing international human rights standards ", - "values": [ - "International instruments" - ] - }, - { - "text": "Consider the ratification of ILO Convention 189 concerning decent work for domestic workers", - "values": [ - "International instruments", - "Labour" - ] - }, - { - "text": "Strengthen its National Strategy for Older Persons based on Government resolution 49/2011 ", - "values": [ - "Other" - ] - }, - { - "text": "The UK is committed to updating the Working Group on progress through a midterm report in 2014. As well as updating the Working Group on progress on the recommendation the UK accepted at its 2012 review it will also provide updates on its position against those recommendations the UK didn't accept. This is part of a commitment to NHRIs and NGOs to keep all recommendations under review and recognition that the main objective of the UPR - of continual improvement of human rights ", - "values": [ - "Civil society", - "National Human Rights Institution", - "UPR process" - ] - }, - { - "text": "Give continuity to the strengthening of national human rights institutions and mechanisms to further promote and protect human rights in the country", - "values": [ - "General" - ] - }, - { - "text": "Take measures including investigation of unfair dismissal of judges and ensure the independence and impartiality of the judicial system", - "values": [ - "Justice" - ] - }, - { - "text": "Continue to harmonize its national legislation with the provisions of the Convention against Torture and Other Cruel, Inhuman or Degrading Treatment or Punishment ", - "values": [ - "International instruments", - "Torture and other CID treatment" - ] - }, - { - "text": "Explore the possibility of seeking the accreditation of the High Council for Human Rights as Iran's NHRI through the International Coordinating Committee for NHRIs", - "values": [ - "National Human Rights Institution" - ] - }, - { - "text": "Adopt and implement, through an inclusive process, a revised Access to Information Act and Media Service Bill in line with international human rights law and standards", - "values": [ - "Freedom of opinion and expression", - "Freedom of the press", - "International instruments" - ] - }, - { - "text": "Extend the mandate of the Ombudsman for Human Rights in accordance with article 2 of the Paris Principles and guarantee its independence", - "values": [ - "National Human Rights Institution" - ] - }, - { - "text": "Apply international human rights and humanitarian law in the Occupied Palestinian Territories and the occupied Syrian Golan.", - "values": [ - "International humanitarian law" - ] - }, - { - "text": "Enact legislation to fully operationalize the Human Rights and Public Administration Commission, to provide it adequate funding, and to clarify its mandate to civil society and the international community", - "values": [ - "National Human Rights Institution" - ] - }, - { - "text": "Align its national legislation with international human rights standards ", - "values": [ - "International instruments" - ] - }, - { - "text": "Enforce legislation on equality and non-discrimination and adopt measures to combat Islamophobia.", - "values": [ - "Freedom of religion and belief" - ] - }, - { - "text": "Undertake prompt and impartial investigations into cases of excessive use of force by law enforcement officials, and that those found responsible be brought to justice and convicted and that the victims and their families be adequately compensated ", - "values": [ - "Human rights violations by state agents" - ] - }, - { - "text": "Redouble its efforts to provide quality education for children and implement programmes that would encourage them to go to school ", - "values": [ - "Right to education", - "Rights of the Child" - ] - }, - { - "text": "Ensure, through a coordinated and comprehensive institutional effort, access to justice for women who have been victims of violence", - "values": [ - "Justice", - "Women's rights" - ] - }, - { - "text": "Keep the policies adopted to ensure the participation of women in all public affairs, including in the exercise of public posts", - "values": [ - "Women's rights" - ] - }, - { - "text": "Ratify ICCPR-OP2 ", - "values": [ - "Death penalty", - "International instruments" - ] - }, - { - "text": "Evaluate the possibility of establishing a legal description of discrimination taking into account international legal standards in this area", - "values": [ - "Other" - ] - }, - { - "text": "That further efforts be deployed to assure that the respect of fundamental rights of the child and the fight against violence, sexual exploitation, human trafficking, child labour and any other form of child exploitation remain a priority of the Government", - "values": [ - "Labour", - "Rights of the Child", - "Trafficking" - ] - }, - { - "text": "Provide full citizenship and rights for the Bidoun population", - "values": [ - "Minorities" - ] - }, - { - "text": "Intensify its efforts to combat human trafficking.", - "values": [ - "Trafficking" - ] - }, - { - "text": "Ratify the ICESCR ", - "values": [ - "ESC rights - general", - "International instruments" - ] - }, - { - "text": "Strengthen its efforts in promoting the right to health, including access to a comprehensive health care ", - "values": [ - "Right to health" - ] - }, - { - "text": "Launch additional awareness programmes that aim at enhancing the degree of awareness of women's rights and address the misconception between sharia law and negative cultural patterns", - "values": [ - "Human rights education and training", - "Women's rights" - ] - }, - { - "text": "Take measures to recognize and protect the rights of sexual and gender minorities and that the law prohibiting same-sex marriages be abrogated", - "values": [ - "Sexual Orientation and Gender Identity" - ] - }, - { - "text": "In order to ensure freedom of expression, fully implement provisions of the Constitution of Belarus on freedom of expression, protect all journalists from harassment, and create an enabling environment for the operation of free media through, inter alia, the simplification of registration and accreditation procedures", - "values": [ - "Freedom of opinion and expression", - "Freedom of the press" - ] - }, - { - "text": "Implement the national disability inclusive policy", - "values": [ - "Disabilities" - ] - }, - { - "text": "Strengthen the measures aimed at guaranteeing and reinforcing the rights of older persons", - "values": [ - "Other" - ] - }, - { - "text": "Inform families about the whereabouts of persons in detention facilities and regularly publish lists of detainees who have died in detention facilities operated by the Government and militias affiliated with it", - "values": [ - "Detention", - "Human rights violations by state agents" - ] - }, - { - "text": "Continue efforts to raise awareness and to train those working in the field of human rights", - "values": [ - "Human rights education and training" - ] - }, - { - "text": "Revise Law 5651, and ensure that government statements and actions fully respect freedom of opinion and expression ", - "values": [ - "Freedom of opinion and expression" - ] - }, - { - "text": "Continue efforts to insure that victims of human rights violation are provided with efficient, flexible and instant compensation ", - "values": [ - "Justice" - ] - }, - { - "text": "Speed up efforts towards the adoption of a new national action plan in the area of disability, in line with the provisions of the Convention on the Rights of Persons with Disabilities", - "values": [ - "Disabilities", - "International instruments" - ] - }, - { - "text": "Guarantee equal treatment and non discrimination of women also with regard to areas concerning personal status, particularly, adoption, marriage, divorce and inheritance according to international human rights standards", - "values": [ - "International instruments", - "Women's rights" - ] - }, - { - "text": "Ratify or accede to, as appropriate, the Optional Protocol to ICESCR, CED, ICRMW, and the Optional Protocol to CRPD", - "values": [ - "Disabilities", - "ESC rights - general", - "Enforced disappearances", - "International instruments", - "Labour", - "Migrants" - ] - }, - { - "text": "Strengthen the implementation measures taken to fight child labour", - "values": [ - "Labour", - "Rights of the Child" - ] - }, - { - "text": "Strengthen the enforcement of the Domestic Violence Act and adopt the Sexual Offences Bill", - "values": [ - "Women's rights" - ] - }, - { - "text": "Take steps to ensure that full respect for the freedom of expression, including on the Internet, is implemented in current preparations for media law reform.", - "values": [ - "Freedom of opinion and expression", - "Freedom of the press" - ] - }, - { - "text": "Review the 2009 Media Law in conformity with international standards, reform the High Media Council in order to strengthen its credibility and independence, and conduct impartial investigations into the cases of harassment and intimidation of journalists ", - "values": [ - "Freedom of the press" - ] - }, - { - "text": "Continue its efforts of implementing the recommendations of the National Plan of Action", - "values": [ - "General" - ] - }, - { - "text": "Explore ways to partner with the international community in the context of international cooperation in the provision of technical assistance to deal with challenges caused by the difficult economic situation.", - "values": [ - "Technical assistance and cooperation" - ] - }, - { - "text": "Continue to promote efforts to fight FGM", - "values": [ - "Rights of the Child", - "Torture and other CID treatment", - "Women's rights" - ] - }, - { - "text": "Ratify the Convention against Torture and the Optional Protocol thereto ", - "values": [ - "Detention", - "International instruments", - "Torture and other CID treatment" - ] - }, - { - "text": "Review its Penal Code to align it with the Constitution", - "values": [ - "Justice" - ] - }, - { - "text": "Share with the international community their good practices in matters of access to health, particularly the advantages of the teleprimary care system", - "values": [ - "Right to health" - ] - }, - { - "text": "Accelerate efforts to incorporate the Convention on the Rights of Persons with Disabilities into national law", - "values": [ - "Disabilities", - "International instruments" - ] - }, - { - "text": "Ensure early identification of victims of trafficking and provide adequate medical, legal and social assistance, including shelter ", - "values": [ - "Trafficking" - ] - }, - { - "text": "Continue on the path to development and democracy ", - "values": [ - "Development" - ] - }, - { - "text": "Decriminalize the organization and participation in activities of unregistered associations by repealing article 193-1 of the Criminal Code", - "values": [ - "Civil society", - "Freedom of association and peaceful assembly" - ] - }, - { - "text": "Extend a standing invitation to all Special Rapporteurs of the Human Rights Council ", - "values": [ - "Special procedures" - ] - }, - { - "text": "Ensure that members of the Roma community, and members of other vulnerable groups, are protected from violence and attack, including when these groups wish to assembly, hold events or organize demonstrations ", - "values": [ - "Freedom of association and peaceful assembly", - "Minorities" - ] - }, - { - "text": "Include provisions in domestic legislation to define discrimination against women and to eliminate all discrimination related to the possession, sharing, ownership and inheritance of land.", - "values": [ - "Women's rights" - ] - }, - { - "text": "Pursue the process of reconciliation ", - "values": [ - "Justice" - ] - }, - { - "text": "Bring the electoral system in line with its OSCE commitments and principles for democratic elections, in close cooperation with the Office for Democratic Institutions and Human Rights", - "values": [ - "Elections" - ] - }, - { - "text": "Consider ratifying Convention No. 169 of the International Labour Organization - ILO - ", - "values": [ - "Indigenous peoples", - "International instruments" - ] - }, - { - "text": "Intensify its efforts to fight against racism, intolerance and xenophobia in society", - "values": [ - "Racial discrimination" - ] - }, - { - "text": "Consider further cooperation with the international human rights monitoring mechanisms, including treaty bodies and Special procedures of the Human Rights Council", - "values": [ - "Special procedures", - "Treaty bodies", - "UPR process" - ] - }, - { - "text": "Redouble efforts in sex education and access to sexual and reproductive health in the whole country with a view to reducing maternal mortality and combating AIDS, early pregnancies, abortions carried out in situations of risk, child marriages and violence and sexual exploitation", - "values": [ - "HIV - Aids", - "Right to health", - "Rights of the Child", - "Women's rights" - ] - }, - { - "text": "Identify a follow up body which includes the Government, Civil Society, International Organizations and possibly representatives of agreeable donor countries, in order to fully implement the international recommendations, including those from the UPR", - "values": [ - "Civil society", - "UPR process" - ] - }, - { - "text": "Adopt a moratorium on the death penalty and commute capital punishment to alternative penalties", - "values": [ - "Death penalty" - ] - }, - { - "text": "Focus on the development of law enforcement capacities in order to fight impunity ", - "values": [ - "Impunity" - ] - }, - { - "text": "Continue its efforts in improving the situation of women ", - "values": [ - "Women's rights" - ] - }, - { - "text": "Strengthen efforts to ensure that women in rural communities have better access to education and literacy and vocational training programmes ", - "values": [ - "Right to education", - "Women's rights" - ] - }, - { - "text": "Continue efforts for the protection and promotion of the rights of migrants", - "values": [ - "Migrants" - ] - }, - { - "text": "Implement recommendations and decision of human rights protection mechanisms, including special procedures ", - "values": [ - "Special procedures" - ] - }, - { - "text": "Intensify efforts to carry out necessary reforms in the security sector", - "values": [ - "Public security" - ] - }, - { - "text": "Ensure equal rights of lesbian, gay, bisexual and transgender people by legally recognizing same-sex marriage and civil partnerships", - "values": [ - "Sexual Orientation and Gender Identity" - ] - }, - { - "text": "Continue its effort in combating violence against women, especially domestic violence, by effectively enforcing its law and undertaking necessary legislative review, and ensure the protection of the rights of the victims", - "values": [ - "Women's rights" - ] - }, - { - "text": "Continue its dialogue on the national reconciliation process through the work of the Dialogue, Truth and Reconciliation Commission by ensuring that the search for truth is a fundamental principle of the Commission, so that it produces recommendations for fair and unbiased actions, and adopt these recommendations at the earliest ", - "values": [ - "Justice" - ] - }, - { - "text": "Ensure that same-sex partners are provided with equal rights and responsibilities as opposite-sex partners.", - "values": [ - "Sexual Orientation and Gender Identity" - ] - }, - { - "text": "Become a party to all outstanding international human rights treaties, particularly the OP-CAT, the First Optional Protocol to the ICCPR and the Optional Protocol to CEDAW", - "values": [ - "CP rights - general", - "Detention", - "International instruments", - "Torture and other CID treatment", - "Women's rights" - ] - }, - { - "text": "Eliminate legal provisions which criminalize sodomy and other sexual activities between consenting adults ", - "values": [ - "Sexual Orientation and Gender Identity" - ] - }, - { - "text": "Provide medical follow-up for HIV-positive mothers and respective infected children.", - "values": [ - "HIV - Aids" - ] - }, - { - "text": "Strengthen the integration of indigenous peoples and immigrants, giving more rights to these categories", - "values": [ - "Indigenous peoples", - "Migrants" - ] - }, - { - "text": "Facilitate the registration of NGOs", - "values": [ - "Civil society", - "Freedom of association and peaceful assembly" - ] - }, - { - "text": "Achieve MDGs in order to design and implement comprehensive prevention programmes, and address food insecurity and malnutrition by adopting policies at federal and provincial levels to make vaccines mandatory", - "values": [ - "Development", - "Right to food", - "Right to health" - ] - }, - { - "text": "Implement the human rights provisions contained in the core treaties and take advantage of the technical assistance that has already been offered to it ", - "values": [ - "Technical assistance and cooperation", - "Treaty bodies" - ] - }, - { - "text": "Extend a standing invitation to special procedures mandate holders as a way of informing and supporting human rights reforms ", - "values": [ - "Special procedures" - ] - }, - { - "text": "Consider issuing a standing invitation to Special Procedures ", - "values": [ - "Special procedures" - ] - }, - { - "text": "Eliminate the disparities in access to services by Aboriginal and Torres Strait Islander children and their families, especially by reviewing the Australian birth registration process in order to ensure that all children are registered at birth", - "values": [ - "Indigenous peoples", - "Rights of the Child", - "Statelessness and the right to nationality" - ] - }, - { - "text": "Establish an independent mechanism to monitor the rights of the child, in accordance with the Convention on the Rights of the Child and the recommendations from the Committee on the Rights of the Child", - "values": [ - "International instruments", - "Rights of the Child", - "Treaty bodies" - ] - }, - { - "text": "Take urgent measures to fight trafficking in persons, particularly women and children, including through international and regional cooperation, also with countries of destination in order to prevent the spread of this phenomenon and work to prosecute perpetrators", - "values": [ - "Rights of the Child", - "Trafficking", - "Women's rights" - ] - }, - { - "text": "Establish a comprehensive and institutionalized national social security policy", - "values": [ - "ESC rights - general" - ] - }, - { - "text": "Take necessary measures to increase the number of gynaecologists in the Brazilian prison system", - "values": [ - "Detention", - "Women's rights" - ] - }, - { - "text": "Continue to cooperate with other countries in the health sector", - "values": [ - "Right to health", - "Technical assistance and cooperation" - ] - }, - { - "text": "Ratify the Second Optional Protocol to the International Covenant on Civil and Political Rights, aiming at the abolition of the death penalty, and the Convention against Torture, as well as its Optional Protocol", - "values": [ - "Death penalty", - "Detention", - "International instruments", - "Torture and other CID treatment" - ] - }, - { - "text": "Continue strengthening the institutional mechanism for the promotion and protection of human rights ", - "values": [ - "General" - ] - }, - { - "text": "Actively monitor compliance and enforce employment safety regulations, especially in the construction and mechanical industries", - "values": [ - "Labour" - ] - }, - { - "text": "Explicitly prohibit the corporal punishment of children in the home and in all alternative care settings ", - "values": [ - "Rights of the Child", - "Torture and other CID treatment" - ] - }, - { - "text": "Ensure that prompt, impartial and thorough investigations are carried out into all allegations of human rights violations by security forces and that the perpetrators are brought to justice, as accepted in the previous review", - "values": [ - "Human rights violations by state agents", - "UPR process" - ] - }, - { - "text": "Step up its efforts in empowering grassroots communities and increase rural infrastructure investments towards improving productivity and poverty reduction", - "values": [ - "Poverty" - ] - }, - { - "text": "Implement effective measures against domestic violence, including spousal rape, bring perpetrators to justice, and develop public education campaigns in this area", - "values": [ - "Human rights education and training", - "Rights of the Child", - "Women's rights" - ] - }, - { - "text": "Adhere to OP-CAT and consequently establish a national mechanism responsible to conduct visits to detention centres", - "values": [ - "Detention", - "International instruments", - "Torture and other CID treatment" - ] - }, - { - "text": "Sign the Treaty on the Prohibition of Nuclear Weapons", - "values": [ - "International instruments" - ] - }, - { - "text": "Continue its policy aiming at incorporating women's issues in its comprehensive development plans. enhance healthcare services for women, increase their access to credit, promote rural women and enhance women's access to education.", - "values": [ - "Women's rights" - ] - }, - { - "text": "Consider the possibility of drafting specific legislation on violence against women, including domestic violence and sexual abuse to intensify the public awareness campaign in that regard to develop a human rights training and education programme for public officers and to offer legal services for victims", - "values": [ - "Human rights education and training", - "Women's rights" - ] - }, - { - "text": "Consider extending systematic training on human rights to all police and prison officers", - "values": [ - "Human rights education and training" - ] - }, - { - "text": "Increase public expenditure on education and undertake additional efforts to improve the functioning of the education system, in order to ensure quality education for all children", - "values": [ - "Right to education", - "Rights of the Child" - ] - }, - { - "text": "Repeal or amend all laws that restrict the freedoms of expression, association or assembly, including decree No. 31 of 2013, Law No. 34 of 2014, and Law No. 26 of 2015", - "values": [ - "Freedom of association and peaceful assembly", - "Freedom of opinion and expression" - ] - }, - { - "text": "Continue the implementation of the national strategy to combat violence in intimate relations for 2009-2012 ", - "values": [ - "Women's rights" - ] - }, - { - "text": "Ensure prompt and effective investigations into allegations of excessive use of force, and enforcement of judicial summons and prosecution of abuses committed", - "values": [ - "Human rights violations by state agents" - ] - }, - { - "text": "Ensure the preservation of the cultural and religious heritage in the occupied State of Palestine, particularly in the Holy City of Jerusalem", - "values": [ - "ESC rights - general", - "Freedom of religion and belief" - ] - }, - { - "text": "Continue efforts to prevent human trafficking and protect the rights of victims, and provide them with necessary assistance", - "values": [ - "Trafficking" - ] - }, - { - "text": "Intensify its efforts to close the gender gap in education, in particular at higher levels, for which\nit is necessary to have international cooperation and technical assistance so that it can face up to the\nshortage of teachers and infrastructure needs in order to eradicate illiteracy and achieve full access to\nscientific knowledge for its population by using modern teaching methods ", - "values": [ - "Right to education", - "Technical assistance and cooperation", - "Women's rights" - ] - }, - { - "text": "That Greenland reform and upgrade municipal competences and accountability in order to apply constructive measures and to promote protection of the child against violence, and to assist families in rehabilitation efforts on substance abuse and addiction", - "values": [ - "Rights of the Child" - ] - }, - { - "text": "Expand the abolition of the death penalty to the military justice code", - "values": [ - "Death penalty" - ] - }, - { - "text": "Consider ratifying CAT and its Optional Protocol, and CRPD ", - "values": [ - "Detention", - "Disabilities", - "International instruments", - "Torture and other CID treatment" - ] - }, - { - "text": "Increase investment in and maintain school infrastructure", - "values": [ - "Right to education" - ] - }, - { - "text": "Issue a standing invitation to the Special Procedures of the United Nations Human Rights Council", - "values": [ - "Special procedures" - ] - }, - { - "text": "Accelerate its efforts to achieve conformity with the provisions of OP- CAT regarding a national mechanism for the prevention of torture ", - "values": [ - "International instruments", - "Torture and other CID treatment" - ] - }, - { - "text": "Take effective and concrete measures to eradicate torture in prison bodies", - "values": [ - "Detention", - "Torture and other CID treatment" - ] - }, - { - "text": "Intensify its efforts for a new comprehensive legislation on tackling discrimination", - "values": [ - "Other" - ] - }, - { - "text": "Implement the recommendations of the Constitutional Review Commission speedily", - "values": [ - "Justice" - ] - }, - { - "text": "Carry out actions to improve the current strategy to combat trafficking in human beings, taking into account, among other, intensifying investigations, training professional staff and creating assistance centres ", - "values": [ - "Trafficking" - ] - }, - { - "text": "Abrogate the practice of threatening witnesses and relatives of victims of human rights violations and attacks on human rights lawyers that seek judicial remedies in response to human rights violations ", - "values": [ - "Justice" - ] - }, - { - "text": "Expedite the ratification of the Optional Protocol to the Convention on the Rights of the Child on the involvement of children in armed conflict ", - "values": [ - "International humanitarian law", - "International instruments", - "Rights of the Child" - ] - }, - { - "text": "Continue implementing policies for the sound expansion and strengthening of special indigenous jurisdiction", - "values": [ - "Indigenous peoples" - ] - }, - { - "text": "Sign and ratify the Optional Protocol to the ICESCR ", - "values": [ - "ESC rights - general", - "International instruments" - ] - }, - { - "text": "Adopt a moratorium on executions and abolish the death penalty", - "values": [ - "Death penalty" - ] - }, - { - "text": "Share its experience with other developing countries in the area of poverty eradication, in particular, urban poverty", - "values": [ - "Poverty" - ] - }, - { - "text": "Enact comprehensive anti-discrimination legislation, including a prohibition on discrimination on grounds of ethnicity, sexual orientation and gender identity", - "values": [ - "Minorities", - "Racial discrimination", - "Sexual Orientation and Gender Identity" - ] - }, - { - "text": "Take into account the United Nations Declaration on the Rights of Indigenous Peoples in the implementation of its public policies", - "values": [ - "Indigenous peoples", - "International instruments" - ] - }, - { - "text": "Continue to work for the implementation of its National Strategy to Prevent Chronic Malnutrition 2016-2020 and strengthen its Food Aid Programme to prevent food insecurity", - "values": [ - "Right to food" - ] - }, - { - "text": "Take steps to establish an independent national human rights institution in keeping with the Paris Principles", - "values": [ - "National Human Rights Institution" - ] - }, - { - "text": "Implement the National Action Plan to address violence related to accusations of sorcery, including by ensuring adequate funding", - "values": [ - "Rights of the Child", - "Women's rights" - ] - }, - { - "text": "Implement the United Nations Basic Principles on the Independence of the Judiciary and the Role of Lawyers ", - "values": [ - "Justice" - ] - }, - { - "text": "Continue to strengthenits efforts to combat trafficking and abuses of labour rights, particularly against vulnerable migrants ", - "values": [ - "Labour", - "Migrants", - "Trafficking" - ] - }, - { - "text": "Continue its efforts in achieving the MDGs, in particular in the area of the health of its population ", - "values": [ - "Development", - "Right to health" - ] - }, - { - "text": "Finalize the national action plan on education for all and improve the quality of education", - "values": [ - "Right to education" - ] - }, - { - "text": "Adopt a national plan of action for the rights of children", - "values": [ - "Rights of the Child" - ] - }, - { - "text": "Sign and ratify the Palermo Protocol ", - "values": [ - "International instruments", - "Trafficking" - ] - }, - { - "text": "Continue efforts to implement the plan of action for judicial reform and prison systems", - "values": [ - "Detention", - "Justice" - ] - }, - { - "text": "Continue its efforts, in cooperation with all relevant stakeholders, to prevent the sale of children, child prostitution and child pornography", - "values": [ - "Rights of the Child", - "Trafficking" - ] - }, - { - "text": "Consider taking all necessary steps to introduce a de jure moratorium on capital executions with a view to fully abolishing the death penalty and ratifying the Second Optional Protocol to the International Covenant on Civil and Political Rights", - "values": [ - "Death penalty", - "International instruments" - ] - }, - { - "text": "Enact without delay national legislation on domestic violence and marital rape and all forms of sexual abuse, and ensure equal rights for women, in law and in practice, in the areas of land ownership, inheritance, marriage and the protection of women and children, as recommended by the Committee on the Elimination of Discrimination against Women ", - "values": [ - "Rights of the Child", - "Treaty bodies", - "Women's rights" - ] - }, - { - "text": "Redouble efforts to implement anti-discrimination laws and policies, including through more intensive public awareness campaign", - "values": [ - "Other" - ] - }, - { - "text": "Continue its efforts with a view to the effective implementation of the United Nations Declaration on Human Rights Education and Training", - "values": [ - "Human rights education and training", - "International instruments" - ] - }, - { - "text": "Continue its efforts to combat all forms of discrimination and consider specific measures in order to promote tolerance and non-discrimination on the grounds of sexual orientation.", - "values": [ - "Sexual Orientation and Gender Identity" - ] - }, - { - "text": "Systematically implement the ratified human rights treaties with the assistance of relevant Special Rapporteurs and OHCHR ", - "values": [ - "International instruments", - "Special procedures", - "Technical assistance and cooperation" - ] - }, - { - "text": "Consider early ratification of the ICCPR and ICESCR", - "values": [ - "CP rights - general", - "ESC rights - general", - "International instruments" - ] - }, - { - "text": "Study meticulously the report of the Public Defender's Office and enact the recommendations made therein to ensure that the human rights of all people deprived of their liberty are effectively protected ", - "values": [ - "Detention" - ] - }, - { - "text": "Compliance with international obligations, design and implementation of a follow-up system of international commitments", - "values": [ - "Other" - ] - }, - { - "text": "Adopt a national plan of action against sexual exploitation of children and against child labour. Raise the minimum age of criminal responsibility to internationally accepted standards and ensure that juvenile justice protection is accorded to all children up to the age of 18 years, as previously recommended", - "values": [ - "Justice", - "Labour", - "Rights of the Child", - "UPR process" - ] - }, - { - "text": "Raise awareness among its people of laws and regulations so that they can exercise their rights effectively and adequately ", - "values": [ - "Human rights education and training" - ] - }, - { - "text": "Impose a moratorium on executions with a view to abolishing the death penalty entirely, in line with the UN Assembly General resolutions 62/149, 63/168 and 65/206, commuting all death sentences to life imprisonment terms", - "values": [ - "Death penalty" - ] - }, - { - "text": "Step up its efforts to protect human rights in the territory under its control, to prevent all abuses and to hold those responsible accountable", - "values": [ - "General" - ] - }, - { - "text": "Continue to implement appropriate policies and programmes to combat violence and abuse against children, and ensure recovery and social integration for victims ", - "values": [ - "Rights of the Child" - ] - }, - { - "text": "Conduct a public awareness campaign regarding domestic violence, ensuring that citizens understand the protection afforded to them under the law ", - "values": [ - "Human rights education and training", - "Rights of the Child", - "Women's rights" - ] - }, - { - "text": "Investigate and punish cases involving the intimidation, harassment, persecution and torture of journalists, activists and human rights defenders, as well as participants in demonstrations ", - "values": [ - "Freedom of association and peaceful assembly", - "Freedom of the press", - "Human rights defenders" - ] - }, - { - "text": "Take all necessary measures to end restrictions on the rights to freedom of expression and peaceful assembly.", - "values": [ - "Freedom of association and peaceful assembly", - "Freedom of opinion and expression" - ] - }, - { - "text": "Continue to work to end intolerance and social discrimination against Roma and, in this regard, ensure that police and local authorities are trained to respond appropriately to allegations of crimes involving Roma and avoid inappropriate ethnic profiling", - "values": [ - "Minorities", - "Racial discrimination" - ] - }, - { - "text": "Guarantee the full independence of the judiciary system, in accordance with relevant international standards", - "values": [ - "Justice" - ] - }, - { - "text": "Strengthen human and financial resources earmarked for the new services responsible for human rights within the Ministry of Justice", - "values": [ - "Justice" - ] - }, - { - "text": "Strengthen and amend when necessary its Second National Plan on Human Trafficking and Sex Trafficking, 2006-2010, as well as the law on anti-trafficking passed in 2008, and ensure their due implementation ", - "values": [ - "Trafficking" - ] - }, - { - "text": "Further promote gender equality and involvement of women in politics and public services", - "values": [ - "Women's rights" - ] - }, - { - "text": "Take efficient steps to secure the protection of women, also when abuse happens within the family", - "values": [ - "Women's rights" - ] - }, - { - "text": "Pursue its efforts aimed at allowing all children to have access to schooling and address disparities in access to education", - "values": [ - "Right to education", - "Rights of the Child" - ] - }, - { - "text": "Provide an update at the mid-term review on which specific measures it has put in place to combat trafficking of children and child prostitution ", - "values": [ - "Rights of the Child", - "Trafficking" - ] - }, - { - "text": "The Kingdom of Morocco takes this opportunity to reiterate its pledges to ensure greater recognition and protection of human rights, thereby enhancing the promotion of human rights within the country, and undertakes to continue and intensify its frank and constructive dialogue at the international level, inter alia with the United Nations human rights bodies.", - "values": [ - "Treaty bodies" - ] - }, - { - "text": "Continue to prioritize health care in the national budget", - "values": [ - "Right to health" - ] - }, - { - "text": "Consider the possibility of ratifying International Convention for the Protection of All Persons from Enforced Disappearance CED, as well as accepting the competency of the relevant Committee \n\n", - "values": [ - "Enforced disappearances", - "International instruments" - ] - }, - { - "text": "Encourage the development of integrationist multiracial organizations, including political parties, in line with ICERD and in accordance with a previous recommendation of the Committee on the Elimination of Racial Discrimination", - "values": [ - "International instruments", - "Racial discrimination", - "Treaty bodies" - ] - }, - { - "text": "Adopt legislative and other measures to explicitly prohibit and eradicate female genital mutilation, and reinforce awareness and education programmes about its harmful effects ", - "values": [ - "Human rights education and training", - "Rights of the Child", - "Torture and other CID treatment", - "Women's rights" - ] - }, - { - "text": "Develop a comprehensive and coordinated programme to fight human trafficking, adopt effective measures to prevent and eradicate human trafficking and organize specialized training for law enforcement and immigration officials and other State officials who enter into contact with victims of human trafficking on issues relating to the identification of victims, the conduct of investigations, criminal prosecutions and punishment of perpetrators", - "values": [ - "Human rights education and training", - "Trafficking" - ] - }, - { - "text": "Establish measures for displaced persons to have particularly better access to the land and to improve their shelters and infrastructures nearby ", - "values": [ - "Internally displaced persons", - "Right to land" - ] - }, - { - "text": "Limit the use and duration of administrative detention", - "values": [ - "Detention" - ] - }, - { - "text": "Take even further measures to continue to address issues of data on trafficking in women and girls in line with recommendations of the Committee on the Elimination of Discrimination against Women ", - "values": [ - "Rights of the Child", - "Trafficking", - "Treaty bodies", - "Women's rights" - ] - }, - { - "text": "Intensify efforts in order to reach universal water coverage as well as signing and ratifying the Optional Protocol to the ICESCR ", - "values": [ - "ESC rights - general", - "International instruments", - "Right to water and sanitation" - ] - }, - { - "text": "Strengthen control and supervision mechanisms for the police, particularly through the Standing Committee for Police Monitoring and its Investigation Service", - "values": [ - "Public security" - ] - }, - { - "text": "Finalize the child protection protocol and establish the "Approved Schools" for juveniles as provided for by Government in the Juvenile Act ", - "values": [ - "Right to education", - "Rights of the Child" - ] - }, - { - "text": "Strengthen initiatives to sensitize the population about the criminal nature of domestic violence and bring those responsible for this crime to justice", - "values": [ - "Rights of the Child", - "Women's rights" - ] - }, - { - "text": "Continue efforts in implementing CAT and its Optional Protocol with more concrete actions", - "values": [ - "Detention", - "International instruments", - "Torture and other CID treatment" - ] - }, - { - "text": "Continue strengthening the national regime aimed at combatting all racial discrimination practices, in conformity with ICERD ", - "values": [ - "International instruments", - "Racial discrimination" - ] - }, - { - "text": "Undertake measures to promote tolerance and non-discrimination on grounds of sexual orientation or identity in line with the Yogyakarta Principles ", - "values": [ - "Sexual Orientation and Gender Identity" - ] - }, - { - "text": "Support the independence of judiciary and combat impunity", - "values": [ - "Impunity" - ] - }, - { - "text": "Continue strengthening the steps taken to ensure the protection of children in conflict with the law, including considering adopting restorative justice principles", - "values": [ - "International humanitarian law", - "Justice", - "Rights of the Child" - ] - }, - { - "text": "Continue efforts already underway to improve the living standards of its people and to ensure the social protection of its people based on a vigorous development of the economy and an appropriate distribution of wealth", - "values": [ - "Development" - ] - }, - { - "text": "Adopt a zero-tolerance policy towards corruption", - "values": [ - "Corruption" - ] - }, - { - "text": "Ensure that all former girl soldiers as well as any girls and young women who were exploited in the armed forces as slaves for labour or sexual exploitation are included in programmes for reintegration of former soldiers ", - "values": [ - "Rights of the Child", - "Women's rights" - ] - }, - { - "text": "Ratify and implement the Convention of the Rights of Persons with Disabilities ", - "values": [ - "Disabilities", - "International instruments" - ] - }, - { - "text": "Effectively implement the international instruments ratified that focus on the protection of the child and children's rights.", - "values": [ - "International instruments", - "Rights of the Child" - ] - }, - { - "text": "Adopt necessary measures to avoid criminalization of irregular migration, de-facto indefinite detention without the provision of all legal safeguards for undocumented migrants and asylum seekers ", - "values": [ - "Asylum-seekers - refugees", - "Detention", - "Migrants" - ] - }, - { - "text": "Take steps to ensure an adequate political participation of ethnic minority groups as well as measures to effectively prevent the loss of land, property and resources of ethnic minority groups through, i.e. confiscation", - "values": [ - "Minorities" - ] - }, - { - "text": "Conduct a time-bound review of legislation at state level which discriminates against women", - "values": [ - "Women's rights" - ] - }, - { - "text": "Allowing the legal status of same-sex couples, and in that regard pass a law on civil union or registered partnership", - "values": [ - "Sexual Orientation and Gender Identity" - ] - }, - { - "text": "Consider adopting a national action plan against racism, xenophobia and related intolerance", - "values": [ - "Racial discrimination" - ] - }, - { - "text": "Amend the media law in line with previous recommendations to ensure that all media laws are in line with the right to freedom of opinion and expression", - "values": [ - "Freedom of opinion and expression", - "Freedom of the press", - "UPR process" - ] - }, - { - "text": "Enact specific legislation to criminalize all forms of violence against women, including within households", - "values": [ - "Women's rights" - ] - }, - { - "text": "Put in place a national comprehensive plan for civil status registration and the right to identity, which includes awareness raising-campaigns for parents, guardians and other responsible persons, which will help to speed up the registration of births.", - "values": [ - "Human rights education and training", - "Rights of the Child", - "Statelessness and the right to nationality" - ] - }, - { - "text": "Intensify the investigation and punishment of cases of discrimination and gender violence", - "values": [ - "Women's rights" - ] - }, - { - "text": "Ratify the Council of Europe Convention on Preventing and Combating Violence against Women and Domestic Violence without further delay", - "values": [ - "International instruments", - "Rights of the Child", - "Women's rights" - ] - }, - { - "text": "Adopt specific legislation to combat violence against women, including social exclusion of women accused of witchcraft ", - "values": [ - "Rights of the Child", - "Women's rights" - ] - }, - { - "text": "Adopt specific gender equality legislation in line with the provisions of the Convention on the Elimination of All Forms of Discrimination against Women, including by defining discrimination against women in accordance with article 1 of the Convention", - "values": [ - "International instruments", - "Women's rights" - ] - }, - { - "text": "Make additional efforts to improve the conditions of its prisons and detention centres toward elimination of overcrowding, improved sanitary conditions, and a strengthened system for medical care", - "values": [ - "Detention" - ] - }, - { - "text": "Continue strengthening measures aimed at addressing impunity for sexual and gender-based violence, including expediting the adoption of the national gender policy and the national strategy to combat gender-based violence", - "values": [ - "Impunity", - "Rights of the Child", - "Women's rights" - ] - }, - { - "text": "Take all necessary steps towards acceding to the Rome Statute", - "values": [ - "International instruments", - "Justice" - ] - }, - { - "text": "Intensify its on-going efforts to close the gap in opportunities and life outcomes between Indigenous and non-Indigenous peoples, especially in the areas of housing, land title, health care, education and employment ", - "values": [ - "Indigenous peoples" - ] - }, - { - "text": "Intensify its efforts to combat corruption in order to ensure the independence, effectiveness and quality of the judicial system.", - "values": [ - "Corruption" - ] - }, - { - "text": "Consider acceding to CAT", - "values": [ - "International instruments", - "Torture and other CID treatment" - ] - }, - { - "text": "Take all necessary measures to fully implement the Convention on the Rights of the Child, including by prohibiting corporal punishment of children in all settings", - "values": [ - "International instruments", - "Rights of the Child", - "Torture and other CID treatment" - ] - }, - { - "text": "Ratify, in the context of its continued effort to improve the situation of children, the Optional Protocols to the relevant Convention and 1993 Hague Convention on Protection of Children and Cooperation in Respect of Intercountry Adoption ", - "values": [ - "International instruments", - "Rights of the Child" - ] - }, - { - "text": "Punish domestic violence, as well as promote awareness-raising campaigns on gender violence, including \u201chonour\u201c crimes", - "values": [ - "Human rights education and training", - "Rights of the Child", - "Women's rights" - ] - }, - { - "text": "Further protect children's rights - in particular, fully implement the prohibition of child labour and adopt legislation providing for responsibility for the use of child labour ", - "values": [ - "Labour", - "Rights of the Child" - ] - }, - { - "text": "Seek technical assistance from the United Nations to reform the judiciary, to establish accessible judicial remedies as well as to alleviate poverty", - "values": [ - "Justice", - "Poverty", - "Technical assistance and cooperation" - ] - }, - { - "text": "Continue its efforts to eliminate poverty, ensure the right to food and housing for its population and promote harmony among various communities", - "values": [ - "Poverty", - "Right to food", - "Right to housing" - ] - }, - { - "text": "Repeal all provisions in laws that criminalize same sex relations between consenting adults and ensure the rights of those persons are protected", - "values": [ - "Sexual Orientation and Gender Identity" - ] - }, - { - "text": "Issue a standing invitation to the human rights special procedures ", - "values": [ - "Special procedures" - ] - }, - { - "text": "Make progress in the effective realization of human rights to safe drinking water and sanitation through increasing the public water infrastructures, particularly in rural areas and in informal urban settlements, through the adequate training and awareness-raising on sanitation of the local communities who benefit from these services", - "values": [ - "Right to water and sanitation" - ] - }, - { - "text": "Modify Law 107 on the Rights to Public Meetings, bring it in line with international standards", - "values": [ - "Freedom of association and peaceful assembly" - ] - }, - { - "text": "Recruit minorities in the police and establish a body tasked to carry out inquiries into cases of police brutality.", - "values": [ - "Human rights violations by state agents", - "Minorities" - ] - }, - { - "text": "The Federated States of Micronesia made the following voluntary pledges: (a) Ratify and accede to the two Protocols to the Convention on the Rights of the Child, (b) Sign and ratify the Convention on the Rights of Persons with Disabilities, (c) Ratify and accede to the Protocol to Prevent, Suppress and Punish Trafficking in Persons, Especially Women and Children, supplementing the United Nations Convention against Transnational Organized Crime, (d) Ratify and accede to the Convention against Torture and Other Cruel, Inhuman or Degrading Treatment or Punishment.", - "values": [ - "International instruments" - ] - }, - { - "text": "Guarantee freedom of assembly and association, including through immediate alignment of national legislation, in particular the Public Order and Security Act, with international standards", - "values": [ - "Freedom of association and peaceful assembly" - ] - }, - { - "text": "Put an end to acts of repression against ethnic and religious minorities, in particular Baha'is, and take effective measures to put an end to discriminatory policies against them", - "values": [ - "Freedom of religion and belief", - "Minorities", - "Racial discrimination" - ] - }, - { - "text": "Establish promptly national human rights institution in accordance with the Paris Principles.", - "values": [ - "National Human Rights Institution" - ] - }, - { - "text": "Continue its important efforts in fighting terrorism, with adequate support and understanding of the country's constraints from the international community.", - "values": [ - "Public security" - ] - }, - { - "text": "Strengthen its support to the Office of the Children's Rights Ombudsman", - "values": [ - "National Human Rights Institution", - "Rights of the Child" - ] - }, - { - "text": "Adhere to the global trend against the capital punishment by establishing a moratorium on its use ", - "values": [ - "Death penalty" - ] - }, - { - "text": "Continue strengthening the integration programmes of national minorities to ensure their economic, social and cultural rights", - "values": [ - "ESC rights - general", - "Minorities" - ] - }, - { - "text": "Further develop policies and programmes to alleviate and eradicate poverty, with special emphasis on vulnerable groups, by taking forward initiatives such as the National Action Plan and Programme against Corruption", - "values": [ - "Corruption", - "Poverty" - ] - }, - { - "text": "Pursue its efforts, with the assistance of OHCHR, to abide by the timeline described in item 2 of paragraph 105 of the national report relating to its reporting to treaty bodies", - "values": [ - "Technical assistance and cooperation", - "Treaty bodies" - ] - }, - { - "text": "Finalize the preparation of the elections, which have been postponed many times, so that they can be held quickly ", - "values": [ - "Elections" - ] - }, - { - "text": "Decriminalize consensual sexual relations, including by repealing the provisions in articles 489 to 493 of the Criminal Code prohibiting same-sex sexual relations, sexual relations outside marriage and adultery", - "values": [ - "Sexual Orientation and Gender Identity" - ] - }, - { - "text": "Strengthen efforts to address violence against women, including sex trafficking, by improving prevention efforts, providing comprehensive specialized services to survivors, and continuing to investigate and prosecute instances of criminal violence against women ", - "values": [ - "Trafficking", - "Women's rights" - ] - }, - { - "text": "Take measures to combat discrimination against women in recruitment, employment, career advancement and pay ", - "values": [ - "Women's rights" - ] - }, - { - "text": "Ensure the observance of the principles of international humanitarian law by all parties in conflict", - "values": [ - "International humanitarian law" - ] - }, - { - "text": "Ratify the Optional Protocol to the ICESCR and the Optional Protocol to the Convention on the Rights of the Child on a communications procedure", - "values": [ - "ESC rights - general", - "International instruments", - "Rights of the Child" - ] - }, - { - "text": "Seek the necessary financial support, technical assistance and capacity-building from relevant UN and other international organizations to promote the right to an adequate standard of living", - "values": [ - "Technical assistance and cooperation" - ] - }, - { - "text": "Take effective measures towards the prohibition of discrimination on the basis of sex, sexual orientation and gender identity, and holding accountable individuals responsible for acts of violence committed against lesbian, gay, bisexual, transgender and intersex persons", - "values": [ - "Sexual Orientation and Gender Identity" - ] - }, - { - "text": "Adopt necessary measures for free and compulsory registration of all children, including late registration, bringing forward new and more targeted campaigns to raise awareness among families, training social workers and health professionals and civil servants in charge of the registration and birth certificates and providing the necessary resources to establish registration offices in all the country", - "values": [ - "Rights of the Child", - "Statelessness and the right to nationality" - ] - }, - { - "text": "Issue travel and identification documents to all Lao Hmong returnees in a timely manner, and guarantee freedom of movement ", - "values": [ - "Asylum-seekers - refugees", - "Freedom of movement", - "Indigenous peoples" - ] - }, - { - "text": "Integrate indigenous and Muslim women in all realms of political and public life", - "values": [ - "Freedom of religion and belief", - "Indigenous peoples", - "Women's rights" - ] - }, - { - "text": "Accede to the Rome Statute of ICC", - "values": [ - "International instruments", - "Justice" - ] - }, - { - "text": "Continue to ensure the independence of the media and the press", - "values": [ - "Freedom of the press" - ] - }, - { - "text": "Continue applying the measures necessary to reduce the risks of contracting infectious sexually transmitted diseases and HIV, through its preventive health care services", - "values": [ - "HIV - Aids", - "Right to health" - ] - }, - { - "text": "Consider, in the area of administration of justice, the protection of children and adolescents in juvenile detention centres ", - "values": [ - "Detention", - "Justice", - "Rights of the Child" - ] - }, - { - "text": "Sustain and promote the Government's socioeconomic developmental policies by means of, inter alia, devoting more attention to any possible discrepancy between urban and rural areas in this regard", - "values": [ - "Development", - "ESC rights - general" - ] - }, - { - "text": "Cooperate with special procedures by extending a standing invitation to them", - "values": [ - "Special procedures" - ] - }, - { - "text": "Ombudsman service", - "values": [ - "National Human Rights Institution" - ] - }, - { - "text": "Continue to cooperate with human rights mechanisms and the international community in promoting and safeguarding the rights of multiethnic people in Myanmar ", - "values": [ - "Minorities" - ] - }, - { - "text": "Take efforts in the area of promotion and protection of women's rights so as to ensure that women are fully integrated into the development dynamics of the country", - "values": [ - "Women's rights" - ] - }, - { - "text": "The Government is committed to reducing maternal morbidity and infant mortality and to promoting children's healthy development and has established an intersectoral commission to promote and safeguard sexual and reproductive rights.", - "values": [ - "Right to health", - "Rights of the Child", - "Women's rights" - ] - }, - { - "text": "Repeal article 230 of the Tunisian Criminal Code and eliminate discriminatory practices based on sexual orientation and gender identity, such as anal inspections", - "values": [ - "Sexual Orientation and Gender Identity" - ] - }, - { - "text": "Encourage the adoption of alternatives to the deprivation of liberty, and of agreements allowing sentences to be served in countries of origin and the possibility of reintegration of foreign prisoners", - "values": [ - "Detention", - "Justice" - ] - }, - { - "text": "Conduct public awareness campaigns and education programmes on human rights issues targeting all sectors of the population", - "values": [ - "Human rights education and training" - ] - }, - { - "text": "Rescind legislation that curbs the civil rights of Russia's LGBTI community ", - "values": [ - "Sexual Orientation and Gender Identity" - ] - }, - { - "text": "Continue to provide basic healthcare service for people living in rural areas and increase its focus on vulnerable groups such as women, children and minorities ", - "values": [ - "Minorities", - "Right to health", - "Rights of the Child", - "Women's rights" - ] - }, - { - "text": "Continue efforts to improve access to health care, in particularly to combat malaria, HIV/AIDS and tuberculosis", - "values": [ - "HIV - Aids", - "Right to health" - ] - }, - { - "text": "Prepare a comprehensive road map to reform the judiciary sector with timelines and benchmarks and clear tasking for national agencies, and involve development partners in this process", - "values": [ - "Justice" - ] - }, - { - "text": "Accede to and fully align its national legislation with the Rome Statute of the International Criminal Court, including by incorporating provisions to cooperate promptly and fully with the Court", - "values": [ - "International instruments", - "Justice" - ] - }, - { - "text": "Accede to the First Optional Protocol to the International Covenant on Civil and Political Rights", - "values": [ - "CP rights - general", - "International instruments" - ] - }, - { - "text": "Respond favorably to the requests for visit of the country and also facilitate the visits of the Special Rapporteur on migrants, Special Rapporteur on torture and the Special Rapporteur on freedom of peaceful assembly and of association ", - "values": [ - "Freedom of association and peaceful assembly", - "Migrants", - "Special procedures", - "Torture and other CID treatment" - ] - }, - { - "text": "Establish specific mechanisms for the investigation and punishment of possible cases of discrimination against lesbian, gay, bisexual, transgender and intersex persons, particularly with regard to issues in relation to the administration", - "values": [ - "Sexual Orientation and Gender Identity" - ] - }, - { - "text": "Take adequate measures to train the police and other officials who deal with the issue of domestic violence ", - "values": [ - "Rights of the Child", - "Women's rights" - ] - }, - { - "text": "Urgently and comprehensively bring conditions for the prison population into line with international human rights standards", - "values": [ - "Detention", - "International instruments" - ] - }, - { - "text": "Eliminate discriminatory laws and adopt legislation on the status of all languages existing in Georgia ", - "values": [ - "Minorities" - ] - }, - { - "text": "Ensure thorough, independent and impartial investigations into the mass killings in Raba'a Square in 2013 and make the perpetrators accountable", - "values": [ - "Extrajudicial executions" - ] - }, - { - "text": "Take prompt action to implement the Family Protection Act.", - "values": [ - "Rights of the Child", - "Women's rights" - ] - }, - { - "text": "Take all possible measures to guarantee security and protection of civilians, particularly while conducting military operations, and pay special attention to the basic needs of persons", - "values": [ - "International humanitarian law" - ] - }, - { - "text": "Strengthen cooperation with international organizations, particularly in the areas of health, education and food", - "values": [ - "Right to education", - "Right to food", - "Right to health", - "Technical assistance and cooperation" - ] - }, - { - "text": "Remove restrictions on activities by the media and allow them an independent and critical coverage of Government's action ", - "values": [ - "Freedom of the press" - ] - }, - { - "text": "Take measures to better protect vulnerable populations, by promoting the integration of young people and by combating violence against women and gender disparities in terms of professional integration - in line with the development of the framework for the organization of the justice system", - "values": [ - "Justice", - "Labour", - "Women's rights" - ] - }, - { - "text": "Continue its efforts to combat discrimination, xenophobia and racism against non-citizens", - "values": [ - "Racial discrimination" - ] - }, - { - "text": "Ensure and strengthen the independence of its national human rights infrastructure ", - "values": [ - "General" - ] - }, - { - "text": "Simplify NGO registration requirements and remove the NGO Board from the supervision of security organizations ", - "values": [ - "Civil society", - "Freedom of association and peaceful assembly" - ] - }, - { - "text": "Place emphasis on linking the objective of poverty eradication to those of eliminating child labour and increasing school enrolment ", - "values": [ - "Labour", - "Poverty", - "Right to education", - "Rights of the Child" - ] - }, - { - "text": "Provide adequate resources to the National Human Rights Commission, regardless of the enactment of an amended bill for the establishment and organization of the Commission", - "values": [ - "National Human Rights Institution" - ] - }, - { - "text": "Take effective measures, in line with the Committee on the Rights of the Child, to protect all children from torture, cruel and degrading treatment, particularly from members of the military ", - "values": [ - "Rights of the Child", - "Torture and other CID treatment", - "Treaty bodies" - ] - }, - { - "text": "Implement fully the following recommendations of the Committee on the Rights of the Child: a ensure adequate resources to investigate cases of sexual abuse and exploitation and prosecute and impose adequate sentences for such crimes - b make combating discrimination against vulnerable girls a national priority and adopt a comprehensive strategy to eliminate discrimination on any grounds against all vulnerable groups - c enhance the security in refugee camps and take all necessary measures to protect girls against sexual exploitation, establish accessible complaints mechanisms, investigate cases of abuse fully and prosecute the perpetrators ", - "values": [ - "Rights of the Child", - "Treaty bodies" - ] - }, - { - "text": "Continue its efforts to overcome discrimination and social exclusion on the basis of gender, caste, class, ethnic group, disability or geographic situation, in order to ensure the respect of civil, political, economic, social and cultural rights ", - "values": [ - "CP rights - general", - "Disabilities", - "ESC rights - general", - "Racial discrimination", - "Women's rights" - ] - }, - { - "text": "Ensure that safe and legal abortions are accessible in practice by creating clear, legally binding regulations for the implementation of the 1993 Act on Family Planning", - "values": [ - "Women's rights" - ] - }, - { - "text": "Ensure that access to legal assistance upon detention is not delayed, that detainees have the possibility to communicate with a lawyer in private and that they are brought in front of a judge within 72 hours, as stipulated by law ", - "values": [ - "Detention" - ] - }, - { - "text": "Exchange information with other countries with regard to best practice in protection of foreign workers", - "values": [ - "Labour", - "Migrants" - ] - }, - { - "text": "Undertake more effective measures to address the problems of sexual abuse and violence against women and girls ", - "values": [ - "Rights of the Child", - "Women's rights" - ] - }, - { - "text": "As appears in its second national report, urge the Federate States of Micronesia to continue studying the possibility of applying for membership ofthe International Labour Organization [ILO], with a view to ratifying its fundamental conventions", - "values": [ - "International instruments", - "Labour" - ] - }, - { - "text": "Pay special attention in the adoption of laws and their implementation to change of negative social practices particularly with respect to, torture and ill treatment in detention, sexual violence and discrimination against women and the protection of children ", - "values": [ - "Detention", - "Rights of the Child", - "Torture and other CID treatment", - "Women's rights" - ] - }, - { - "text": "Revise its Intended Nationally Determined Contribution to be in line with a fair approach taken by other industrialised countries, so as to be consistent with the full enjoyment of human rights by its people and those in neighbouring countries", - "values": [ - "Development" - ] - }, - { - "text": "Continue to take all necessary steps to promptly establish a national human rights institution compliant with the Paris Principles", - "values": [ - "National Human Rights Institution" - ] - }, - { - "text": "Take measures to ensure international humanitarian aid reaches the most vulnerable and needy", - "values": [ - "Other" - ] - }, - { - "text": "Continue its efforts to develop and implement sustainable solutions engaging relevant provincial government, as well as representatives of Aboriginals, on issues such as guaranteeing the property rights for Aboriginals and their participation on issues related to natural resources development ", - "values": [ - "Development", - "Indigenous peoples", - "Right to land" - ] - }, - { - "text": "Fast-track the development of infrastructure in remote rural areas, with a view to ensuring the practical enjoyment of economic and social rights to benefit the people living in remote rural areas.", - "values": [ - "Development", - "ESC rights - general" - ] - }, - { - "text": "Continue to consider ratifying the Convention on the Rights of Persons with Disabilities", - "values": [ - "Disabilities", - "International instruments" - ] - }, - { - "text": "Give favourable consideration to prohibit the death penalty and corporal punishment in the Constitution and Ethiopian legislation in the area of the right to life ", - "values": [ - "Death penalty", - "Torture and other CID treatment" - ] - }, - { - "text": "Enhance the promotion and protection of women's rights, including addressing violence against women and femicide", - "values": [ - "Women's rights" - ] - }, - { - "text": "Fulfil its long-standing pledge for constructing a mosque in Athens, and open one of the historical mosques in Thessaloniki to worship, as well as allocating a cemetery for Muslims in both cities", - "values": [ - "Freedom of religion and belief" - ] - }, - { - "text": "Train its lawyers and judges on the interpretation of human rights in accordance with the principle of international human rights law", - "values": [ - "Human rights education and training", - "International instruments" - ] - }, - { - "text": "Exert its utmost efforts to eradicate the persistent widespread phenomenon of child labour", - "values": [ - "Labour", - "Rights of the Child" - ] - }, - { - "text": "Ratify the remaining Optional Protocol to the Convention on the Rights of the Child as well as the International Convention for the Protection of All Persons from Enforced Disappearance", - "values": [ - "Enforced disappearances", - "International instruments", - "Rights of the Child" - ] - }, - { - "text": "Take steps to end discrimination and segregation suffered by Roma children in the school system in accordance with its international obligations", - "values": [ - "Minorities", - "Racial discrimination", - "Right to education", - "Rights of the Child" - ] - }, - { - "text": "Implement public education and promote awareness programmes and sensitivity training on violence and discrimination based on sexual orientation and gender identity to law enforcement, judicial and other authorities ", - "values": [ - "Human rights education and training", - "Sexual Orientation and Gender Identity" - ] - }, - { - "text": "Further strengthen accountability for human rights violations by the police and implement a national prevention mechanism against torture ", - "values": [ - "Human rights violations by state agents", - "Torture and other CID treatment" - ] - }, - { - "text": "Ensure full respect for freedom of expression and opinion, including the freedom of the media, and guarantee unfettered access for all persons in Iran to domestic and foreign media information, both offline and online", - "values": [ - "Freedom of opinion and expression", - "Freedom of the press" - ] - }, - { - "text": "Continue the authorities' efforts to prevent and combat torture both at the federal and state levels ", - "values": [ - "Torture and other CID treatment" - ] - }, - { - "text": "Continue its efforts to prevent and properly criminalize torture and illtreatment by state agents, investigate, appropriately prosecute and punish those responsible, and compensate the victims", - "values": [ - "Human rights violations by state agents", - "Torture and other CID treatment" - ] - }, - { - "text": "Adopt comprehensive measures to combat paedophilia", - "values": [ - "Rights of the Child" - ] - }, - { - "text": "Apply its current anti racism legislation in an effective way and take new structural measures specifically to counter discrimination ", - "values": [ - "Racial discrimination" - ] - }, - { - "text": "Provide appropriate employment opportunities for women and work to achieve equal wages for men and women ", - "values": [ - "Women's rights" - ] - }, - { - "text": "Adopt swiftly the necessary legislation and develop a comprehensive anti-trafficking strategy and plan of action to combat trafficking of children and women, especially for the purpose of sexual exploitation ", - "values": [ - "Rights of the Child", - "Trafficking", - "Women's rights" - ] - }, - { - "text": "Undertake efforts to combat gender inequality by legislating laws that would ensure gender equality and to enable women to participate in governmental legislative positions in the country", - "values": [ - "Elections", - "Women's rights" - ] - }, - { - "text": "Take measures to prevent risks of violence against foreigners, migrants or asylum seekers", - "values": [ - "Asylum-seekers - refugees", - "Migrants" - ] - }, - { - "text": "Conduct prompt and full investigation into extrajudicial executions and political killings and ensure that those responsible are prosecuted and afforded a fair trial free of political interference ", - "values": [ - "Extrajudicial executions", - "Justice" - ] - }, - { - "text": "Establish a National Human Rights Commission", - "values": [ - "National Human Rights Institution" - ] - }, - { - "text": "Ratify the Optional Protocol to International Covenant on Economic Social and Cultural Rights (ICESCR-OP) ", - "values": [ - "ESC rights - general", - "International instruments" - ] - }, - { - "text": "Work with the EU and the UN for further participation of other important human rights mechanisms, including the protocols to the CRC ", - "values": [ - "International instruments", - "Rights of the Child" - ] - }, - { - "text": "Strengthen national bodies responsible for ensuring the protection of persons with disabilities against all forms of violations and to promote their full integration into society", - "values": [ - "Disabilities" - ] - }, - { - "text": "Adopt urgent reforms of the Penal Code and other relevant legislation to restore the rights of women, girls, and adolescent victims of rape and other forms of violence against them, to receive protection, legal assistance and health care, including access to legal and safe therapeutic abortion, and their full rehabilitation and reinsertion", - "values": [ - "Rights of the Child", - "Women's rights" - ] - }, - { - "text": "Continue its work for the full realization of human rights of the Traveller community in the country ", - "values": [ - "Minorities" - ] - }, - { - "text": "Place special emphasis on women and children when formulating policies to protect the rights of migrant workers", - "values": [ - "Labour", - "Migrants", - "Rights of the Child", - "Women's rights" - ] - }, - { - "text": "Continue efforts to enhance enrolment of girls in school and minimize the dropout rate, and enhance literacy levels especially among women ", - "values": [ - "Right to education", - "Rights of the Child", - "Women's rights" - ] - }, - { - "text": "Ratify the Optional Protocol of the CRPD", - "values": [ - "Disabilities", - "International instruments" - ] - }, - { - "text": "Pursue efforts initiated to limit the flow of migration, especially of unaccompanied children, and continue implementing the legislative framework to achieve a quality education for children", - "values": [ - "Migrants", - "Right to education", - "Rights of the Child" - ] - }, - { - "text": "Continue to combat hate crimes and hate speech, and ensure that the provisions of the Prevention and Combating of Hate Crimes and Hate Speech Bill cannot be used to restrict the rights to freedom of expression and religion", - "values": [ - "Freedom of opinion and expression", - "Freedom of religion and belief", - "Racial discrimination" - ] - }, - { - "text": "Acknowledge and guarantee the indigenous peoples' rights, including by fully engaging indigenous peoples of the country in decision-making in all the matters that affect them", - "values": [ - "Indigenous peoples" - ] - }, - { - "text": "Consider possibilities of the abolition of the death penalty in law", - "values": [ - "Death penalty" - ] - }, - { - "text": "Stop the participation of members of the Estonian armed forces in annual so called remembrance events glorifying the former legionaries of "Waffen SS" and Nazi collaborators", - "values": [ - "Other" - ] - }, - { - "text": "Ensure in practice that all women are able to exercise their legal right to a safe abortion, without discrimination of any kind", - "values": [ - "Women's rights" - ] - }, - { - "text": "Become a State party to the Optional Protocol to the International Covenant on Economic, Social and Cultural Rights ", - "values": [ - "ESC rights - general", - "International instruments" - ] - }, - { - "text": "Cooperate fully with the International Criminal Court throughout the process ", - "values": [ - "International instruments", - "Justice" - ] - }, - { - "text": "Accede to and fully align national legislation with the Rome Statute", - "values": [ - "International instruments", - "Justice" - ] - }, - { - "text": "Consider the timely ratification of the major international human rights instruments, including the International Covenant on Economic, Social and Cultural Rights (ICESCR), the International Covenant on Civil and Political Rights (ICCPR) and the Convention against Torture and Other Cruel, Inhuman or Degrading Treatment or Punishment (CAT)", - "values": [ - "CP rights - general", - "ESC rights - general", - "International instruments", - "Torture and other CID treatment" - ] - }, - { - "text": "Guarantee mechanisms of access to justice for the most vulnerable sectors of the population", - "values": [ - "Justice" - ] - }, - { - "text": "Take steps to prevent and combat hostile attitudes against persons belonging to non-Muslim minorities, by putting in place awareness-raising campaigns as well as education and training programmes for judges and law enforcement agents ", - "values": [ - "Human rights education and training", - "Minorities" - ] - }, - { - "text": "Become a party to the Optional Protocol to the Convention against Torture and Other Cruel, Inhuman or Degrading Treatment or Punishment ", - "values": [ - "Detention", - "International instruments", - "Torture and other CID treatment" - ] - }, - { - "text": "Continue the reforms aimed at limiting the use of preventive detention and implement a uniform penal system", - "values": [ - "Detention" - ] - }, - { - "text": "Continue in the positive policy of granting Kuwaiti women more rights, in particular the right to participate in political life, which contribute to getting more women in leading positions in society ", - "values": [ - "Women's rights" - ] - }, - { - "text": "Step up its efforts to eliminate the pay gap between men and women", - "values": [ - "Women's rights" - ] - }, - { - "text": "Ensure all irregular migrants have equal access to and protection under Australian law ", - "values": [ - "Migrants" - ] - }, - { - "text": "Intensify its efforts to improve the situation with respect to violence against women and girls, as well as to undertake awareness campaigns, human rights education and training programmes for members of the police and to provide greater resources to the judicial services entrusted with addressing those issues", - "values": [ - "Human rights education and training", - "Rights of the Child", - "Women's rights" - ] - }, - { - "text": "Accede to all human rights instruments to which it is not yet a party, specifically the Optional Protocol to the Convention Against Torture, the International Convention on the Protection of the Rights of All Migrant Workers and Members of their Families, and the International Convention for the Protection of All Persons from Enforced Disappearance", - "values": [ - "Detention", - "Enforced disappearances", - "International instruments", - "Labour", - "Migrants", - "Torture and other CID treatment" - ] - }, - { - "text": "Take immediate effective legal and practical measures to prevent and combat trafficking in persons, in particular women and children, and make the offenders accountable", - "values": [ - "Rights of the Child", - "Trafficking", - "Women's rights" - ] - }, - { - "text": "Undertake continued and enhanced efforts to protect and provide redress to women suffering from violence and to continue raising awareness, through training and other means, in the judicial system, including police, of the necessity to act against this violence ", - "values": [ - "Human rights education and training", - "Women's rights" - ] - }, - { - "text": "Despite the volume of work performed there is still much to do in this field [equal oportunities for persons with disabilities], the State is committed to ensure the continuity of those activities.", - "values": [ - "Disabilities" - ] - }, - { - "text": "Continue its initiatives to enhance access to universal basic education for ten years for both boys and girls", - "values": [ - "Right to education" - ] - }, - { - "text": "Conduct thorough criminal investigation and prosecution of the police officers involved in the mistreatment of six Roma minors in Kosice.", - "values": [ - "Human rights violations by state agents", - "Minorities" - ] - }, - { - "text": "Take measures to prohibit hate speech, racist and xenophobic acts and their manifestation ", - "values": [ - "Racial discrimination" - ] - }, - { - "text": "Encourage the implementation of an inclusive social policy framework for the enjoyment of all rights, notably the rights of people in vulnerable situations, and foster the training of all law enforcement officers in order to maintain peace", - "values": [ - "Human rights education and training" - ] - }, - { - "text": "Ratify other human rights conventions to which Indiais not yet a State party", - "values": [ - "International instruments" - ] - }, - { - "text": "Continue the consolidation of effective policies in the framework of the National Strategy for Childhood and Adolescence (2010-2030), enabling the participation of the whole society in the fight for recognition of the rights of boys, girls and adolescents who find themselves in a situation of extreme vulnerability.", - "values": [ - "Rights of the Child" - ] - }, - { - "text": "Consider the report of the High Commissioner on sexual orientation and gender identity and determine which of the recommendations can be taken into account in the further detailing of government policies", - "values": [ - "Sexual Orientation and Gender Identity" - ] - }, - { - "text": "Cooperate fully with the office of the High Commissioner for Human Rights in Cambodia and accept the visit requests by the special rapporteurs ", - "values": [ - "Special procedures", - "Technical assistance and cooperation" - ] - }, - { - "text": "Independent human rights monitors be allowed unrestricted access to all detention facilities and that such facilities are appropriately funded and comply with international standards of care and treatment of prisoners ", - "values": [ - "Detention" - ] - }, - { - "text": "Protect the rights of lesbian, gay, bisexual, transgender and intersex persons through the adoption of a comprehensive anti-discrimination law that prohibits all forms of discrimination, including based on sexual orientation and gender identity, and abolish article 92-6 of the Military Criminal Act, which criminalizes consensual same-sex relations", - "values": [ - "Sexual Orientation and Gender Identity" - ] - }, - { - "text": "Share its experience with other countries concerning preventive measures against affronts to human dignity and against racism as mentioned in paragraphs 110 and 111 of the national report (A-HRC-WG.6-5-MCO-1).", - "values": [ - "Racial discrimination" - ] - }, - { - "text": "Pay particular attention to the interests of children, especially with respect to health care and education, in its further work on improving the population's living standards", - "values": [ - "Right to education", - "Right to health", - "Rights of the Child" - ] - }, - { - "text": "Ratify ICCPR-OP 2, aiming at the abolition of the death penalty", - "values": [ - "Death penalty", - "International instruments" - ] - }, - { - "text": "Ratify the core international human rights treaties, signed by Sao Tome and Principe, as well as accede to the Optional Protocol to the Convention on the Rights of the Child on the sale of children, child prostitution and child pornography and the Optional Protocol to the Convention on the Rights of the Child on the involvement of children in armed conflict", - "values": [ - "International humanitarian law", - "International instruments", - "Rights of the Child", - "Trafficking" - ] - }, - { - "text": "Consider establishing a separate national human rights institution at the very earliest ", - "values": [ - "National Human Rights Institution" - ] - }, - { - "text": "Continue working to provide asylum and refugee status to all of those persons who need it", - "values": [ - "Asylum-seekers - refugees" - ] - }, - { - "text": "Continue the effective application of anti-trafficking law to prosecute human trafficking and refer victims to protection services", - "values": [ - "Trafficking" - ] - }, - { - "text": "Share with other countries its successes and good practices on the guiding principles of solidarity and socialism.", - "values": [ - "General" - ] - }, - { - "text": "Comply with international obligations, and ensure full and unhampered enjoyment of freedom of expression", - "values": [ - "Freedom of opinion and expression" - ] - }, - { - "text": "Mainstream gender equality policies in the education sector, ensuring that gender issues and sensitivity training become an integral, substantive and mandatory component of all teacher training at all levels", - "values": [ - "Human rights education and training", - "Women's rights" - ] - }, - { - "text": "Disseminate publically the report of its Truth and Reconciliation Commission and implement the recommendations it proposed", - "values": [ - "Justice" - ] - }, - { - "text": "Promote the exercise by the Roma of their economic, social and cultural rights, in particular by implementing programmes to facilitate birth registration and the issuing identity documents for this sector of the population. ", - "values": [ - "Minorities", - "Statelessness and the right to nationality" - ] - }, - { - "text": "Redouble efforts to implement laws and policies countrywide to promote gender equality", - "values": [ - "Women's rights" - ] - }, - { - "text": "Increase efforts to criminalize human trafficking and take necessary measures for its prevention", - "values": [ - "Trafficking" - ] - }, - { - "text": "Ensure that there is an accessible mechanism to register cases of domestic violence and provide legal, medical and psychological advice to victims ", - "values": [ - "Justice", - "Rights of the Child", - "Women's rights" - ] - }, - { - "text": "Consider the possibility of ratifying OP-CAT, ICRMW, ICCPR-OP2, the Rome Statute of ICC and the Conventions on Statelessness", - "values": [ - "International instruments" - ] - }, - { - "text": "Complete the process of ratification of the two Optional Protocols to the CRC", - "values": [ - "International humanitarian law", - "International instruments", - "Rights of the Child", - "Trafficking" - ] - }, - { - "text": "Accede to the International Convention for the Protection of the Rights of All Migrant Workers and Members of Their Families (ICMW)", - "values": [ - "International instruments", - "Labour", - "Migrants" - ] - }, - { - "text": "Work towards ensuring full respect for the human rights of indigenous people, and continue the ongoing consultations and with a serious pace with the indigenous peoples, regarding the implementation of legislation entitled "Towards a better future"", - "values": [ - "Indigenous peoples" - ] - }, - { - "text": "Continue its mainstreaming of climate change adaptation across developmental activities with the assistance of the international community", - "values": [ - "Environment", - "Technical assistance and cooperation" - ] - }, - { - "text": "Strengthen the system of accountability of all this personnel members of the police, military, prison and detention staff and judiciary in order to ensure effective, independent and impartial investigation of any violations of human rights by them ", - "values": [ - "Human rights violations by state agents" - ] - }, - { - "text": "Improve conditions of reception and detention of refugees and migrants in accordance with international standards", - "values": [ - "Asylum-seekers - refugees", - "Detention", - "Migrants" - ] - }, - { - "text": "Continue working on national programmes directed to protect the rights of the country's minorities ", - "values": [ - "Minorities" - ] - }, - { - "text": "Establish effective mechanisms to prohibit violence against women and girls, including traditional practices, such as FGM and continue awareness-raising campaigns to eradicate such practices", - "values": [ - "Human rights education and training", - "Rights of the Child", - "Torture and other CID treatment", - "Women's rights" - ] - }, - { - "text": "Continue efforts to eliminate discrimination against women and establish full gender equality, especially in the labour market and at the salary level", - "values": [ - "Labour", - "Women's rights" - ] - }, - { - "text": "Review reservations to CEDAW", - "values": [ - "International instruments", - "Women's rights" - ] - }, - { - "text": "Ratify the ILO Indigenous and Tribal Peoples Convention, 1989 (No. 169)", - "values": [ - "Indigenous peoples", - "International instruments", - "Labour" - ] - }, - { - "text": "Take steps to ensure that legislation protects the full rights of sexual minorities ", - "values": [ - "Sexual Orientation and Gender Identity" - ] - }, - { - "text": "Speed up efforts to ratify CRPD and its Optional Protocol (OP-CRPD)", - "values": [ - "Disabilities", - "International instruments" - ] - }, - { - "text": "Consider devoting priority attention to the elimination of all forms of violence against women, in particular domestic violence, by establishing comprehensive measures, including specific legislation", - "values": [ - "Women's rights" - ] - }, - { - "text": "Increase public awareness-raising and training of officials designed to tackle cultural justifications for FGM and discrimination against women, with the aim of increasing the number of reported cases under article 333 of the Criminal Code ", - "values": [ - "Human rights education and training", - "Rights of the Child", - "Torture and other CID treatment", - "Women's rights" - ] - }, - { - "text": "Ratify the Convention relating to the Status of Stateless Persons ", - "values": [ - "International instruments", - "Statelessness and the right to nationality" - ] - }, - { - "text": "Stop all criminal prosecutions, arrests and all other forms of intimidation of individuals as a result of the peaceful exercise of their rights to freedom of expression, freedom of association, and assembly, or freedom of religion and belief", - "values": [ - "Freedom of association and peaceful assembly", - "Freedom of opinion and expression", - "Freedom of religion and belief" - ] - }, - { - "text": "Develop targeted technical assistance programmes to strengthen the national human rights architecture", - "values": [ - "Technical assistance and cooperation" - ] - }, - { - "text": "Take measures to ensure the independence and impartiality of the role of the judiciary", - "values": [ - "Justice" - ] - }, - { - "text": "Provide unhindered access to the United Nations and other international organizations, and accede to the call of the High Commissioner for Human Rights to allow an OHCHR fact-finding mission to \u201cIndian-Occupied Kashmir\u201c to investigate and report on the human rights situation there", - "values": [ - "International humanitarian law", - "Special procedures", - "Technical assistance and cooperation" - ] - }, - { - "text": "Grant jurisdiction to its civil authorities over the acts committed by members of armed forces when performing law enforcement functions", - "values": [ - "Human rights violations by state agents" - ] - }, - { - "text": "Redouble efforts to resolve the problem of indigenous lands and prioritize support for the National Indigenous Institute ", - "values": [ - "Indigenous peoples" - ] - }, - { - "text": "Ensure adequate reception conditions so that asylum seekers receive support in line with the requirements of the European Convention for the Protection of Human Rights and Fundamental Freedoms and of European Union law", - "values": [ - "Asylum-seekers - refugees", - "International instruments" - ] - }, - { - "text": "Adopt suitable measures and mechanisms, including the allocation of financial resources to prevent and combat effectively trafficking in persons", - "values": [ - "Trafficking" - ] - }, - { - "text": "Consider the establishment of an independent police complaints mechanism.", - "values": [ - "Justice" - ] - }, - { - "text": "Intensify existing efforts and take additional administrative and legislative measures necessary to ensure birth registration of all children born in Timor-Leste, particularly those born in homes", - "values": [ - "Rights of the Child", - "Statelessness and the right to nationality" - ] - }, - { - "text": "Finalize the national action plan to combat sexual violence and take appropriate measures to prevent and protect all civilians from all forms of violence and to fight impunity ", - "values": [ - "Impunity", - "Rights of the Child", - "Women's rights" - ] - }, - { - "text": "Ratify the Council of Europe Convention on Preventing and Combating Violence against Women and Domestic Violence (Istanbul Convention) ", - "values": [ - "International instruments", - "Rights of the Child", - "Women's rights" - ] - }, - { - "text": "Redouble its efforts to enforce more effectively the specific existing legislation and fully implement, among others, the Strategic National Plan for the Reduction of Maternal and Child Mortality, the National Plan for the Prevention of teenagers' pregnancy, and the Strategic Plan for the Prevention, Detection, Attention and Punishment of Violence against Women and Domestic Violence. In particular, the Dominican Republic could provide adequate resources to the relevant Ministries to ensure an effective assistance to victims ", - "values": [ - "Right to health", - "Rights of the Child", - "Women's rights" - ] - }, - { - "text": "Continue its efforts to promote and protect the rights of national minorities.", - "values": [ - "Minorities" - ] - }, - { - "text": "Continue its efforts to ensure universal, compulsory, free high-quality education in all areas and to reduce the financial barriers to accessing education", - "values": [ - "Right to education" - ] - }, - { - "text": "Continue making efforts to guarantee all Ecuadorians the right to free intercultural, diverse and participative communication in all environments and media and the right to search, receive, exchange produce and circulate truthful, verified, timely, contextualized and plural information ", - "values": [ - "Freedom of opinion and expression", - "Freedom of the press" - ] - }, - { - "text": "Continue efforts to empower women and promote their participation in society, in particular, political life, decision making, and accessing high level posts", - "values": [ - "Women's rights" - ] - }, - { - "text": "Reform, as a matter of urgency, the law that criminalizes sexual relations between adults of the same sex ", - "values": [ - "Sexual Orientation and Gender Identity" - ] - }, - { - "text": "That the newly established Department of Women, Children and People with Disabilities be empowered to coordinate actions amongst various Government agencies to address the issue of gender-based violence ", - "values": [ - "Disabilities", - "Rights of the Child", - "Women's rights" - ] - }, - { - "text": "Continue efforts to adopt measures to avoid the stigmatization of the Rastafarian community ", - "values": [ - "Minorities" - ] - }, - { - "text": "Take steps, including legislation and sufficient funding, to ensure that all Canadians have full and equal access to clean water and sanitation, in line with the United Nations resolution passed in 2012,recognizing the human right to water and sanitation ", - "values": [ - "Right to water and sanitation" - ] - }, - { - "text": "Continue efforts to effectively prevent human trafficking and reinforce law enforcement and the training of police", - "values": [ - "Trafficking" - ] - }, - { - "text": "Ensure that all women have access to quality sexual and reproductive health services, including comprehensive sexuality education and modern contraceptive methods", - "values": [ - "Right to health", - "Women's rights" - ] - }, - { - "text": "Pursue and strengthen the financial support it is already providing for the fight against poverty in developing countries.", - "values": [ - "Poverty" - ] - }, - { - "text": "Continue work on the protection of the rights of persons with disabilities", - "values": [ - "Disabilities" - ] - }, - { - "text": "Take efficient measures to improve the harsh conditions of custody centres in particular for minorities, migrants and asylum-seekers ", - "values": [ - "Asylum-seekers - refugees", - "Detention", - "Migrants", - "Minorities" - ] - }, - { - "text": "Step up protection for persons with disabilities with a rights-based approach in order to ensure their full integration into society", - "values": [ - "Disabilities" - ] - }, - { - "text": "The delegation stated that Brunei intended to withdraw its reservations to Article 20, paragraphs 1 and 2, of the Convention on the Rights of the Child (CRC) relating to the protection of a child without a family, and Article 21 (a) on adoption, and that it was working towards ratifying the Optional Protocol to the Convention on the Rights of the Child on the involvement of children in armed conflict (OP-CRC-AC).", - "values": [ - "International humanitarian law", - "International instruments", - "Rights of the Child" - ] - }, - { - "text": "Consider establishing a national human rights institution in compliance with the Paris Principles.", - "values": [ - "National Human Rights Institution" - ] - }, - { - "text": "Allow all persons of foreign origin who have been abducted, as well as their descendants, to return freely to their countries of origin", - "values": [ - "Enforced disappearances" - ] - }, - { - "text": "Ensure proper training on human rights to members of armed forces, the police, and prison staff and court staff", - "values": [ - "Human rights education and training" - ] - }, - { - "text": "Allow access to the Special Rapporteur on extrajudicial, summary or arbitrary executions and remove conditions on her proposed visit that could compromise her impartiality", - "values": [ - "Extrajudicial executions", - "Special procedures" - ] - }, - { - "text": "Fully cooperate with international mechanisms of accountability, including the International Criminal Court, in order to ensure that those responsible for international crimes committed in Darfur are brought to justice ", - "values": [ - "Justice" - ] - }, - { - "text": "Step up its efforts towards ratifying the Convention on the Elimination of All Forms of Discrimination against Women", - "values": [ - "International instruments", - "Women's rights" - ] - }, - { - "text": "Strengthen its efforts to reduce maternal mortality rates", - "values": [ - "Right to health", - "Women's rights" - ] - }, - { - "text": "Amend the labour code and visa sponsorship system to accord the necessary legal protection to migrant domestic workers on an equal footing with other workers", - "values": [ - "Labour", - "Migrants" - ] - }, - { - "text": "Consider ratification of the Optional Protocol to the Convention on the Elimination of All Forms of Discrimination against Women and the Optional Protocol to the Convention against Torture and Other Cruel, Inhuman or Degrading Treatment or Punishment", - "values": [ - "International instruments", - "Torture and other CID treatment", - "Treaty bodies", - "Women's rights" - ] - }, - { - "text": "Elaborate specific policies and programmes aimed at ensuring that its applicable human rights obligations are not violated in situations of armed conflict.", - "values": [ - "International humanitarian law" - ] - }, - { - "text": "Ensure independent and effective investigations in cases of torture and ill-treatment in order to combat impunity in such cases, and to ensure that victims of torture obtain adequate compensation and rehabilitation", - "values": [ - "Impunity", - "Torture and other CID treatment" - ] - }, - { - "text": "Continue the efforts to improve the health care especially of children and the elderly persons, as well as those suffering from HIV", - "values": [ - "HIV - Aids", - "Right to health", - "Rights of the Child" - ] - }, - { - "text": "Design awareness-raising campaign on cultural diversity and continue its efforts to end discrimination and xenophobia against minorities ", - "values": [ - "Human rights education and training", - "Minorities", - "Racial discrimination" - ] - }, - { - "text": "Continue implementing its basic education strategy and enhancing educational opportunities in deprived areas in order to support education in the country.", - "values": [ - "Right to education" - ] - }, - { - "text": "Maintain and strengthen the economic and social model freely chosen by the Cuban people, and continue to advance in the full participation of the people in public affairs ", - "values": [ - "ESC rights - general" - ] - }, - { - "text": "Decriminalize consensual sexual relations between same-sex adults", - "values": [ - "Sexual Orientation and Gender Identity" - ] - }, - { - "text": "Continue its efforts to take legislative measures for the protection and promotion of the rights of the child, by expediting the ratification process of the Optional Protocol to the Convention on the Rights of the Child on the involvement of children in armed conflict and the Optional Protocol to the Convention on the Rights of the Child on the sale of children, child prostitution and child pornography", - "values": [ - "International humanitarian law", - "International instruments", - "Rights of the Child", - "Trafficking" - ] - }, - { - "text": "Resume the measures of social protection and care for the most disadvantaged affected by the international economic and financial crisis", - "values": [ - "ESC rights - general" - ] - }, - { - "text": "Criminalize domestic violence against women, ratify the Optional Protocol to CEDAW", - "values": [ - "International instruments", - "Women's rights" - ] - }, - { - "text": "Implement and strengthen measures aimed at combating poverty, with particular attention to women and persons living in rural areas", - "values": [ - "Poverty", - "Women's rights" - ] - }, - { - "text": "Speed up the ratification procedure of the International Convention for the Protection of All Persons from Enforced Disappearance", - "values": [ - "Enforced disappearances", - "International instruments" - ] - }, - { - "text": "Increase the efforts to reduce maternal mortality, prioritizing actions that promote access to sexual and reproductive health centres", - "values": [ - "Right to health", - "Women's rights" - ] - }, - { - "text": "Engage in an all-inclusive and participatory reform process and ensure that all sections of the population, including women, persons with disabilities, minority and indigenous groups and civil society organisations are brought on board ", - "values": [ - "Civil society", - "Disabilities", - "Indigenous peoples", - "Minorities", - "Women's rights" - ] - }, - { - "text": "Take all necessary steps to establish an effective national preventive mechanism to improve prisoners' conditions, both their physical conditions and their legal rights including due process ", - "values": [ - "Detention" - ] - }, - { - "text": "Reinforce its efforts to protect the rights of people with disabilities and to oversee the work of mental health residential facilities, and amend its legal framework to ensure that it contains human rights guarantees in line with international standards", - "values": [ - "Disabilities" - ] - }, - { - "text": "Consider establishing a national human rights institution in compliance with the Paris Principles", - "values": [ - "National Human Rights Institution" - ] - }, - { - "text": "Ratify the main international human rights instruments so as to harmonize domestic legislation with international standards for human rights protection ", - "values": [ - "International instruments" - ] - }, - { - "text": "Continue addressing accountability issues and implementation of the LLRC Action Plan as planned", - "values": [ - "Justice" - ] - }, - { - "text": "Undertake relevant reforms that guarantee the independence and impartiality of the judiciary and ensure that it is free from political control and interference ", - "values": [ - "Justice" - ] - }, - { - "text": "Ensure the full enjoyment of rights of non-citizen residents and linguistic minorities and facilitate their integration into society", - "values": [ - "Minorities", - "Statelessness and the right to nationality" - ] - }, - { - "text": "Adopt and fully implement a new action plan on the gender equality for the next period lasting till 2020", - "values": [ - "Women's rights" - ] - }, - { - "text": "Amend press law to comply with ICCPR.", - "values": [ - "Freedom of the press", - "International instruments" - ] - }, - { - "text": "Carry out full investigations into alleged acts of brutality in detention, to hold to account those responsible, and to put an immediate end to immunity for members of the police and the military", - "values": [ - "Detention", - "Human rights violations by state agents", - "Justice" - ] - }, - { - "text": "Ratify the Council of Europe Convention on Preventing and Combating Violence against Women and Domestic Violence (the Istanbul Convention)", - "values": [ - "International instruments", - "Women's rights" - ] - }, - { - "text": "Consider revising the Sedition Act and the Newspaper Act to ensure that they conform with international human rights standards", - "values": [ - "Freedom of opinion and expression", - "Freedom of the press", - "International instruments" - ] - }, - { - "text": "Guyana is primarily committed to the implementation of the recently adopted Rights of Persons with Disabilities Act. This statute has been carefully scrutinised and found to be in compliance with the Convention. Guyana will continue to actively consider ratifying the Convention.", - "values": [ - "Disabilities", - "International instruments" - ] - }, - { - "text": "Adopt new measures to ensure greater participation and representation of women in the Public Administration, as well as equal remuneration for men and women ", - "values": [ - "Women's rights" - ] - }, - { - "text": "Ensure fair and rapid justice for all perpetrators of human rights violations", - "values": [ - "Justice" - ] - }, - { - "text": "Put an end to the violations of the right to peaceful assembly and freedom of expression, torture and other ill-treatment", - "values": [ - "Freedom of association and peaceful assembly", - "Freedom of opinion and expression", - "Torture and other CID treatment" - ] - }, - { - "text": "Ensure the full respect of the freedoms of association and peaceful demonstration in compliance with the international commitments of Uganda, in particular in the implementation of the Public Order Management Act of 2013", - "values": [ - "Freedom of association and peaceful assembly" - ] - }, - { - "text": "Continue its efforts to improve and ensure access to education for all children and to include human rights teaching in school programs", - "values": [ - "Human rights education and training" - ] - }, - { - "text": "Fully implement the recommendations of the Convention on the Elimination of All Forms of Discrimination against Women issued in 2013 regarding the situation of women, including temporary special measures to ensure non-discrimination of women belonging to minorities, and allocating adequate funding for the national action plans and strategies aimed at eliminating all forms of discrimination against women belonging to the Roma population", - "values": [ - "International instruments", - "Minorities", - "Racial discrimination", - "Women's rights" - ] - }, - { - "text": "Recommended correcting the shortcoming in the Code of Criminal Procedure, notably the need to respect requirements for serving warrants of arrest at all times, including on Sundays and holidays, and to address the current possibility for police officers to proceed to an arrest without a warrant", - "values": [ - "Justice" - ] - }, - { - "text": "Speed up the process for the ratification of the Convention against Torture and Other Cruel, Inhuman or Degrading Treatment or Punishment", - "values": [ - "International instruments", - "Torture and other CID treatment" - ] - }, - { - "text": "Continue providing targeted support for cultural diversity in all schools ", - "values": [ - "ESC rights - general" - ] - }, - { - "text": "Consider increasing funding for the National Plan to Combat HIV and AIDS and urge the international community to do more to assist ", - "values": [ - "HIV - Aids", - "Technical assistance and cooperation" - ] - }, - { - "text": "Take measures to eliminate the discrimination and stigmatization against lesbian, gay, bisexual, transsexual and intersex persons", - "values": [ - "Sexual Orientation and Gender Identity" - ] - }, - { - "text": "Accelerate the implementation of the National Action Plan for Migration Management ", - "values": [ - "Migrants" - ] - }, - { - "text": "Take steps to strengthen the criminal justice system and, in addition, co-operate fully with MINURCAT's efforts in this area.", - "values": [ - "Justice" - ] - }, - { - "text": "Seek technical assistance from relevant United Nations agencies in order to better implement its international human rights obligations", - "values": [ - "International instruments", - "Technical assistance and cooperation" - ] - }, - { - "text": "Ensure a human rights culture, inter alia, by strengthening the antidiscriminatory legislative framework and ensuring its effective implementation ", - "values": [ - "General" - ] - }, - { - "text": "Work to ensure that freedom of opinion and expression are protected", - "values": [ - "Freedom of opinion and expression" - ] - }, - { - "text": "Request the international community to do its part and show its goodwill by believing in and expressing support for democratic and human rights reform in Fiji", - "values": [ - "Technical assistance and cooperation" - ] - }, - { - "text": "Ratify, as soon as possible, the Convention on the Rights of Persons with Disabilities", - "values": [ - "Disabilities", - "International instruments" - ] - }, - { - "text": "Draft legislation in line with the international standards in the area of combating discrimination against women ", - "values": [ - "Women's rights" - ] - }, - { - "text": "Ratify the Rome Statute of the International Criminal Court in its 2010 version, including the Kampala amendments on the crime of aggression, and review its national legislation in order to ensure full alignment with the Statute", - "values": [ - "International instruments", - "Justice" - ] - }, - { - "text": "Implement measures to facilitate the handling and investigation of complaints in an understandable fashion for children, ensure the adequate prosecution of perpetrators of child abuse and neglect, and provide services for physical and psychological recovery as well as the social reintegration of victims of sexual abuse", - "values": [ - "Rights of the Child" - ] - }, - { - "text": "Prohibit corporal punishment of children in all settings", - "values": [ - "Rights of the Child", - "Torture and other CID treatment" - ] - }, - { - "text": "Ratify the Rome Statute of ICC ", - "values": [ - "International instruments", - "Justice" - ] - }, - { - "text": "Accelerate the work aimed at strengthening its capacity to report on some treaties ", - "values": [ - "Treaty bodies" - ] - }, - { - "text": "Improve programs for social reintegration of detainees ", - "values": [ - "Detention" - ] - }, - { - "text": "Implement human rights awareness and anti-discrimination education programs, particularly with respect to ending discrimination on the basis of sexual orientation", - "values": [ - "Human rights education and training", - "Sexual Orientation and Gender Identity" - ] - }, - { - "text": "Increase its efforts aiming at training and qualifying judicial staff in the area of human rights", - "values": [ - "Human rights education and training" - ] - }, - { - "text": "In cooperation with ILO and other relevant international organizations, continue to provide vocational training, especially for the youth, to build up a skilled workforce to support its development ", - "values": [ - "Labour", - "Technical assistance and cooperation" - ] - }, - { - "text": "Address the situation of persons with albinism, assuring them protection against attacks and killings", - "values": [ - "Minorities" - ] - }, - { - "text": "Accede and fully align its national legislation with the Rome Statute of the International Criminal Court", - "values": [ - "International instruments", - "Justice" - ] - }, - { - "text": "Restore officially the moratorium on executions, which had been in place since 2006, throughout the whole country", - "values": [ - "Death penalty" - ] - }, - { - "text": "Amend its National Human Rights Commission Act in order to guarantee the independence and financial autonomy of this Commission", - "values": [ - "National Human Rights Institution" - ] - }, - { - "text": "Guyana supported Recommendation 70.43 on increasing the age of criminality and volunteered to report the outcomes of the on-going consultations in relation to the new draft Juvenile Justice Bill.", - "values": [ - "Detention", - "Justice", - "Rights of the Child" - ] - }, - { - "text": "Continue to promote and protect the rights of children while developing special programmes targeting vulnerable children", - "values": [ - "Rights of the Child" - ] - }, - { - "text": "Effectively eliminate segregation of Roma within the education system, inter alia, by fully and swiftly implementing the National Action Plan for Inclusive Education aiming at addressing issues identified by the European Court for Human Rights", - "values": [ - "Minorities", - "Right to education" - ] - }, - { - "text": "Ensure progress in combating trafficking in persons and overcoming violence against women and children. ", - "values": [ - "Rights of the Child", - "Trafficking", - "Women's rights" - ] - }, - { - "text": "Reduce the inequalities in the labour market by adopting and implementing an effective strategy, with special attention to women ", - "values": [ - "Women's rights" - ] - }, - { - "text": "Establish a moratorium on the death penalty with a view to definitively abolishing the death penalty", - "values": [ - "Death penalty" - ] - }, - { - "text": "Develop an instrument to monitor the implementation and verification of the recommendations from the previous and current universal periodic reviews, paying special attention to the ratification of international human rights instruments which are pending, including the Optional Protocol to the Convention against Torture", - "values": [ - "Detention", - "International instruments", - "Torture and other CID treatment", - "UPR process" - ] - }, - { - "text": "Take further steps to reduce gender-based discrimination in the workforce", - "values": [ - "Women's rights" - ] - }, - { - "text": "Take effective measures to improve the access of children to education ", - "values": [ - "Right to education", - "Rights of the Child" - ] - }, - { - "text": "Undertake more effective measures to address the problems of impunity, violence and trafficking in women and girls, including through the strengthening of law enforcement and the judicial system and intensive media and education programmes aimed at increasing public awareness on the rights of women ", - "values": [ - "Human rights education and training", - "Impunity", - "Justice", - "Rights of the Child", - "Trafficking", - "Women's rights" - ] - }, - { - "text": "Continue its cooperation with OHCHR ", - "values": [ - "Technical assistance and cooperation" - ] - }, - { - "text": "Intensify training and education efforts in the field of human rights", - "values": [ - "Human rights education and training" - ] - }, - { - "text": "Review the proposed amendment of Spain's national security law to ensure the right of an individual to seek asylum", - "values": [ - "Asylum-seekers - refugees" - ] - }, - { - "text": "Increase efforts to prevent domestic violence and, inter alia, to strengthen action to assist victims, and take into account the recommendations of the Human Rights Committee ", - "values": [ - "Rights of the Child", - "Treaty bodies", - "Women's rights" - ] - }, - { - "text": "Strongly encouraged to abolish the death penalty, and while awaiting such decision, to adopt a moratorium on executions", - "values": [ - "Death penalty" - ] - }, - { - "text": "Consider expediting the adoption of draft law on domestic violence", - "values": [ - "Rights of the Child", - "Women's rights" - ] - }, - { - "text": "Adopt measures that ensure that people with disabilities enjoy their rights on an equal footing, including free access to health and on the basis of their informed consent, access to education, employment and social security, as well as full participation in the political, social and economic life of the country ", - "values": [ - "Disabilities" - ] - }, - { - "text": "Further implement relevant measures to protect women's and children's rights to improve women's status in economic, social and family life, and to combat violence against women ", - "values": [ - "ESC rights - general", - "Rights of the Child", - "Women's rights" - ] - }, - { - "text": "Improve the working capacity of the national mechanism on the prevention of torture, by strengthening the visits to detention and police centres", - "values": [ - "Detention", - "Torture and other CID treatment" - ] - }, - { - "text": "Pursue steps made with the aim of addressing the effects of climate change on the population", - "values": [ - "Environment" - ] - }, - { - "text": "Adopt the National Action Plan for equal opportunities for persons with disabilities ", - "values": [ - "Disabilities" - ] - }, - { - "text": "Fully incorporate the major human rights treaties that the Lao People's Democratic Republic has ratified into its domestic laws and allocate adequate human and financial resources to implement the laws", - "values": [ - "International instruments" - ] - }, - { - "text": "Accede to and implement OP-CAT ", - "values": [ - "Detention", - "International instruments", - "Torture and other CID treatment" - ] - }, - { - "text": "Intensify ongoing efforts to adjust domestic legislation to international standards", - "values": [ - "General" - ] - }, - { - "text": "Strengthen mechanisms guaranteeing judicial independence, including fully empowering the Government anti-corruption unit to act against corruption within the judiciary ", - "values": [ - "Corruption", - "Justice" - ] - }, - { - "text": "Engage actively to implement treaty body recommendations", - "values": [ - "Treaty bodies" - ] - }, - { - "text": "Continue to enhance gender equality and the empowerment of women", - "values": [ - "Women's rights" - ] - }, - { - "text": "Renew invitation to the Special Procedures of the Council which participated in the preparation of a joint study on secret detention to enable them to conduct in situ investigations of facts contained in document A/HRC/13/42 concerning Lithuania ", - "values": [ - "Counter-terrorism", - "Detention", - "Special procedures" - ] - }, - { - "text": "Accede to all core United Nations human rights instruments as soon as possible, particularly those it agreed to enact during its 2011 universal periodic review appearance", - "values": [ - "International instruments", - "UPR process" - ] - }, - { - "text": "Amend legislation to prohibit the caning of minors ", - "values": [ - "Rights of the Child", - "Torture and other CID treatment" - ] - }, - { - "text": "Ensure the entry into force of the Act on the Comprehensive Protection of Persons with Disabilities ", - "values": [ - "Disabilities" - ] - }, - { - "text": "Respect the right to a fair trial, notably by ensuring that legal procedures are respected ", - "values": [ - "Justice" - ] - }, - { - "text": "Respect citizens' constitutional right to recall a referendum by allowing the collection of signatures to proceed", - "values": [ - "Elections" - ] - }, - { - "text": "Continue efforts in the frame of the realization of the rights to health and education ", - "values": [ - "Right to education", - "Right to health" - ] - }, - { - "text": "Effectively implement the recent legislation on police reform and witness protection", - "values": [ - "Justice" - ] - }, - { - "text": "Design and implement strategies to tackle sexual and gender-based violence, including addressing related stigma towards victims and survivors, as per the National Human Rights Action Plan, the National Plan of Action for addressing Sexual and Gender-Based Violence and the Declaration on Preventing Sexual Violence in Conflict", - "values": [ - "Women's rights" - ] - }, - { - "text": "Continue its humanitarian aid to least developed countries", - "values": [ - "Development" - ] - }, - { - "text": "Increase its efforts to make sure that all children have access to primary education, while continuing its partnership for the National School Canteen Programme to address the serious problem of child malnutrition", - "values": [ - "Right to education", - "Right to food", - "Rights of the Child" - ] - }, - { - "text": "Take measures to eliminate discrimination against vulnerable groups of the population, taking into account the content of the Durban Declaration and Programme of Action of 2001 and the outcome document of the Durban Review Conference in 2009", - "values": [ - "Racial discrimination" - ] - }, - { - "text": "Raise public awareness on the rights of persons with disabilities", - "values": [ - "Disabilities", - "Human rights education and training" - ] - }, - { - "text": "Based on the level of economic and social development, further improve social security of the vulnerable groups including the elderly, women, children and persons with disabilities", - "values": [ - "Development", - "Disabilities", - "ESC rights - general", - "Rights of the Child", - "Women's rights" - ] - }, - { - "text": "Continue adopting laws and policies to promote and protect the rights of women and their role in society, particularly in education health and employment", - "values": [ - "Women's rights" - ] - }, - { - "text": "Ratify without delay the Optional Protocol to the Convention against Torture, as well as the International Convention for the Protection of All Persons from Enforced Disappearance, and expedite the harmonization of legislation in accordance with them", - "values": [ - "Enforced disappearances", - "International instruments", - "Torture and other CID treatment", - "Treaty bodies" - ] - }, - { - "text": "Continue its efforts in combating human trafficking, including through training for law enforcement officials and cooperation with countries of transit and destination", - "values": [ - "Human rights education and training", - "Trafficking" - ] - }, - { - "text": "Adopt legislation that combats discrimination based on sexual orientation and gender identity and protects the rights of lesbian, gay, bisexual, and transgender persons", - "values": [ - "Sexual Orientation and Gender Identity" - ] - }, - { - "text": "Continue to take concrete measures in accordance with obligations under the relevant international treaties to protect women's rights and raise their social status", - "values": [ - "Women's rights" - ] - }, - { - "text": "Further strengthen the independence and capacity of the institutions for the promotion and protection of human rights", - "values": [ - "General" - ] - }, - { - "text": "Revise the Public Order Management Act to guarantee a proportionate use of force by the security forces and mainstream human rights and humanitarian law in the training of the security forces", - "values": [ - "Human rights education and training" - ] - }, - { - "text": "Continue efforts to strengthen criminal justice system and judicial institutions", - "values": [ - "Justice" - ] - }, - { - "text": "Take steps to establish an independent national human rights institution", - "values": [ - "National Human Rights Institution" - ] - }, - { - "text": "Continue the process for the establishment of a national human rights institution in conformity with the Paris Principles ", - "values": [ - "National Human Rights Institution" - ] - }, - { - "text": "Increase the work on promotion of women's participation in the labour market", - "values": [ - "Labour", - "Women's rights" - ] - }, - { - "text": "Sign and ratify the Council of Europe Convention on Action against Trafficking in Human Beings and the Palermo Protocol", - "values": [ - "International instruments", - "Trafficking" - ] - }, - { - "text": "Develop a national strategy that specifically addresses racism and racial discrimination", - "values": [ - "Racial discrimination" - ] - }, - { - "text": "Consider reinstating the policy of seeking clemency for all Canadian citizens sentenced to death in other countries", - "values": [ - "Death penalty" - ] - }, - { - "text": "Review current prison safety and conditions and consider developing an action plan to address increases in self-harm and suicide as well as overcrowding in prisons in the United Kingdom", - "values": [ - "Detention" - ] - }, - { - "text": "Adopt a national strategy on slavery in line with the recommendation of the Special Rapporteur on contemporary forms of slavery ", - "values": [ - "Special procedures" - ] - }, - { - "text": "Raise the minimum age of criminal responsibility", - "values": [ - "Rights of the Child" - ] - }, - { - "text": "Fight stigmatisation, terrorisation and harassment of minorities, especially Rohingya Muslims and ensure these crimes do not remain unpunished", - "values": [ - "Freedom of religion and belief", - "Minorities", - "Racial discrimination" - ] - }, - { - "text": "Continue efforts to ensure respect and protection of the rights and fundamental freedoms of the entire population, especially of vulnerable groups, and to ensure compliance with international humanitarian law", - "values": [ - "International humanitarian law" - ] - }, - { - "text": "Take further measures to combat ill-treatment of prisoners and detainees by the police, including improved police training, intensified courses on practical aspects of police ethics and specialized courses on hate crime investigation", - "values": [ - "Detention", - "Human rights education and training", - "Human rights violations by state agents", - "Torture and other CID treatment" - ] - }, - { - "text": "Take into account recommendations made by treaty bodies and special procedures, especially those relating to women and children, in developing a national action plan for human rights", - "values": [ - "Special procedures", - "Treaty bodies" - ] - }, - { - "text": "Enhance its efforts aimed at preventing and combating and bringing to justice perpetrators of hate crimes, as well as acts of racism, xenophobia and discrimination against vulnerable groups, including lesbian, gay, bisexual, transgender and intersex individuals", - "values": [ - "Racial discrimination", - "Sexual Orientation and Gender Identity" - ] - }, - { - "text": "Implement expeditiously the law prohibiting female genital mutilation and bring the perpetrators to justice", - "values": [ - "Rights of the Child", - "Torture and other CID treatment", - "Women's rights" - ] - }, - { - "text": "Take effective measures to ensure that lawyers can defend their clients without fear of harassment and can participate in the management of their own professional organisations", - "values": [ - "Justice" - ] - }, - { - "text": "Provide legal protection against forced evictions", - "values": [ - "Right to housing" - ] - }, - { - "text": "Strengthen efforts to fulfil obligations in accordance with the Convention on the Elimination of All Forms of Discrimination against Women, and the Convention on the Rights of the Child ", - "values": [ - "International instruments", - "Rights of the Child", - "Women's rights" - ] - }, - { - "text": "Amend the law to ensure greater guarantees for freedom of opinion and expression in line with article 15 (1)", - "values": [ - "Freedom of opinion and expression" - ] - }, - { - "text": "Abolish the death penalty and in the interim rigorously apply international standards for fair trial in all death penalty cases and respect national legal procedures and the standards required by the Privy Council and the United Nations for the protection of the rights of prisoners sentenced to death", - "values": [ - "Death penalty" - ] - }, - { - "text": "Continue supporting and cooperating with the UNDP in projects aiming at strengthening the institutional capacity of the justice system", - "values": [ - "Justice", - "Technical assistance and cooperation" - ] - }, - { - "text": "Put in place measures to combat persistent attitudes and stereotypes regarding the role and responsibilities of women in society", - "values": [ - "Women's rights" - ] - }, - { - "text": "Continue the review of genocide ideology and related laws, and rigorously apply the provisions of article 20 of ICCPR by taking strictly necessary and proportionate measures ", - "values": [ - "International instruments", - "Justice" - ] - }, - { - "text": "Consider the ratification of the international instruments to which it is not yet a party ", - "values": [ - "International instruments" - ] - }, - { - "text": "Ratify the Kampala amendments to the Rome Statute, if possible with a view to contributing to the activation of the jurisdiction of the International Criminal Court over the crime of aggression at the beginning of 2017 ", - "values": [ - "International instruments", - "Justice" - ] - }, - { - "text": "Intensify cooperation with the United Nations treaty bodies by submitting overdue national periodic reports to appropriate committees in the near future", - "values": [ - "Technical assistance and cooperation", - "Treaty bodies" - ] - }, - { - "text": "Further criminalize violence against women and girls, prosecute perpetrators and adopt legislation on sexual harassment ", - "values": [ - "Rights of the Child", - "Women's rights" - ] - }, - { - "text": "Prohibit all forms of corporal punishment against children, both boys and girls", - "values": [ - "Rights of the Child", - "Torture and other CID treatment" - ] - }, - { - "text": "Continue its efforts aiming at the elimination of discrimination against women by further aligning its legislation and national policies to the provisions of the Convention on the Elimination of All Forms of Discrimination against Women", - "values": [ - "International instruments", - "Women's rights" - ] - }, - { - "text": "Place importance on the review of the Law on Civil Associations to ensure a more effective working environment for them ", - "values": [ - "Civil society", - "Freedom of association and peaceful assembly" - ] - }, - { - "text": "Abolish capital punishment in national legislation ", - "values": [ - "Death penalty" - ] - }, - { - "text": "Actively enhance respect for the rights of women, including access to education and equal treatment in custody cases, and by creating support mechanisms for divorcees and women victims of violence, particularly sexual violence.", - "values": [ - "Women's rights" - ] - }, - { - "text": "Convert the present de facto moratorium on executions into a formal moratorium", - "values": [ - "Death penalty" - ] - }, - { - "text": "Ratify as soon as possible the Optional Protocol to the Convention on Torture and Other Cruel, Inhumane or Degrading Treatment or Punishment, and create an independent national mechanism for monitoring detention centres ", - "values": [ - "Detention", - "International instruments", - "Torture and other CID treatment" - ] - }, - { - "text": "Protect the group of persons with albinism to prevent murders and mutilations through the starting of an education and awareness-raising campaign to prevent their stigmatization, guarantee their safety and facilitate access to education and employment", - "values": [ - "Human rights education and training", - "Labour", - "Minorities", - "Right to education" - ] - }, - { - "text": "Ensure the effective enforcement of domestic legislation and further strive to eradicate human trafficking through cooperation with the international community, including by accepting a visit by the Special Rapporteur ", - "values": [ - "Special procedures", - "Trafficking" - ] - }, - { - "text": "Ratify the following international treaties to which it is not yet a party: the Optional Protocol to the International Covenant on Economic, Social and Cultural Rights, the Optional Protocol to the Convention against Torture, the International Convention on the Protection of the Rights of All Migrant Workers and Members of Their Families, and the International Convention for the Protection of All Persons from Enforced Disappearance", - "values": [ - "International instruments" - ] - }, - { - "text": "Elaborate and implement an effective strategy to fight child poverty", - "values": [ - "Poverty", - "Rights of the Child" - ] - }, - { - "text": "Bahrain is currently examining the need for comprehensive national action plan on human rights", - "values": [ - "General" - ] - }, - { - "text": "Complement its signature of ICESCR by ratifying it and recognizing the justiciability of these rights in its domestic legal systems", - "values": [ - "ESC rights - general", - "International instruments" - ] - }, - { - "text": "Strengthen the participation of women in political and private decision-making centres, in particular in the diplomatic and judicial fields", - "values": [ - "Women's rights" - ] - }, - { - "text": "Consider ratifying all outstanding international human rights instruments, and update domestic legislation to bring it into line with the provisions of these international treaties ", - "values": [ - "International instruments" - ] - }, - { - "text": "Implement the 2006-2016 Programme for Children and Youth", - "values": [ - "Rights of the Child" - ] - }, - { - "text": "Amend the lese majesty law to bring it in line with international human rights standards, allow media to function independently and free of prior censorship or interference by law enforcement agencies and release all those who have been jailed for exercising their rights to freedom of expression", - "values": [ - "Freedom of opinion and expression", - "Freedom of the press", - "International instruments" - ] - }, - { - "text": "Stress and promote access to health services, including by training medical staff", - "values": [ - "Right to health" - ] - }, - { - "text": "Strengthen its policy to combat racism, racial discrimination, xenophobia and related intolerance", - "values": [ - "Racial discrimination" - ] - }, - { - "text": "Continue to implement the National Strategy for Gender Equality 2020", - "values": [ - "Women's rights" - ] - }, - { - "text": "Strengthen the mandate of the Commission of Human Rights in view of its full independence and conformity with the Paris Principles", - "values": [ - "National Human Rights Institution" - ] - }, - { - "text": "Strengthen measures to combat violence against women and children ", - "values": [ - "Rights of the Child", - "Women's rights" - ] - }, - { - "text": "Continue its support for the Second Optional Protocol to the International Covenant on Civil and Political Rights", - "values": [ - "Death penalty", - "International instruments" - ] - }, - { - "text": "Review its body of legislation prohibiting discrimination to ensure equal protection on all grounds, and in this regard, consider elaborating a single comprehensive act covering all grounds for possible discrimination ", - "values": [ - "Other" - ] - }, - { - "text": "The Government is committed to addressing issues for people with disabilities, for example by providing easy access through the Class Rehabilitation Program that includes ramp access for children with disabilities.", - "values": [ - "Disabilities", - "Rights of the Child" - ] - }, - { - "text": "Continue protecting its population from the effects of unilateral coercive measures imposed on the country and consider establishing a national mechanism to monitor and assess the negative impact of such measures on the country", - "values": [ - "Other" - ] - }, - { - "text": "Take measures to ensure that hate crimes and discrimination based on sexual orientation or gender identity are vigorously investigated and appropriately prosecuted", - "values": [ - "Sexual Orientation and Gender Identity" - ] - }, - { - "text": "Continue to provide support for human rights education and training domestically in order to enhance awareness and respect for human rights", - "values": [ - "Human rights education and training" - ] - }, - { - "text": "Ensure equal opportunities in the labour market, particularly by promoting access to work for the various social groups ", - "values": [ - "Labour" - ] - }, - { - "text": "Work more to join the international treaties on human rights", - "values": [ - "International instruments" - ] - }, - { - "text": "Intensify effort to raise the level of attendance of girls in school through the modification of traditional customs and beliefs that hinder girls from attending school", - "values": [ - "Right to education", - "Rights of the Child", - "Women's rights" - ] - }, - { - "text": "Ensure that legitimate acts of political dissent are not criminalized and freedom of opinion, of the media and of assembly are fully respected when applying the Terrorist Act of 2009, in line with the NHRAP ", - "values": [ - "Counter-terrorism", - "Freedom of association and peaceful assembly", - "Freedom of opinion and expression", - "Freedom of the press" - ] - }, - { - "text": "Ratify the Optional Protocol to the Convention on the Rights of the Child on the participation of children in armed conflict and the Optional Protocol to the Convention on the Rights of the Child on the sale of children, child prostitution and child pornography", - "values": [ - "International humanitarian law", - "International instruments", - "Rights of the Child", - "Trafficking" - ] - }, - { - "text": "Improve health care ", - "values": [ - "Right to health" - ] - }, - { - "text": "Consider the establishment of a clear regulatory framework to guarantee that the activities carried out by the enterprises under its jurisdiction do not have a negative impact on human rights abroad", - "values": [ - "Business and human rights" - ] - }, - { - "text": "Continue its efforts to ensure free medical services of high quality for its population ", - "values": [ - "Right to health" - ] - }, - { - "text": "Seek the technical and financial assistance of United Nations partners and specialized agencies to improve its education system so as to reduce illiteracy and school drop-out rates, particularly of girls", - "values": [ - "Right to education", - "Technical assistance and cooperation" - ] - }, - { - "text": "Accede to OP-CAT and the optional protocols to the treaties to which it is a Contracting Party in order to recognize the competence of Treaty Bodies in complaints, inquiry and urgent action procedures ", - "values": [ - "Detention", - "International instruments", - "Torture and other CID treatment", - "Treaty bodies" - ] - }, - { - "text": "Continue efforts to guarantee the full inclusion of persons with disabilities in all spheres of society", - "values": [ - "Disabilities" - ] - }, - { - "text": "Ratify the Convention against Torture ", - "values": [ - "International instruments", - "Torture and other CID treatment" - ] - }, - { - "text": "Submit overdue reports to the human rights treaty bodies", - "values": [ - "Treaty bodies" - ] - }, - { - "text": "Take part in international activities to promote and protect human rights on the basis of an equitable and mutually respectful dialogue.", - "values": [ - "General" - ] - }, - { - "text": "Consider an early ratification of the Optional Protocols to ICCPR and ICESCR, CAT and the Rome Statute ", - "values": [ - "CP rights - general", - "ESC rights - general", - "International instruments", - "Justice", - "Torture and other CID treatment" - ] - }, - { - "text": "Bring the Ombudsman institution in line with the Paris Principles", - "values": [ - "National Human Rights Institution" - ] - }, - { - "text": "Intensify measures, including human rights training, to raise awareness of gender equality", - "values": [ - "Human rights education and training", - "Women's rights" - ] - }, - { - "text": "Pursue its efforts in the area of child and maternal mortality to reach a significant decrease of mother, new-born and children deaths ", - "values": [ - "Right to health", - "Rights of the Child", - "Women's rights" - ] - }, - { - "text": "Speed up the development of the "open-doors-regime" project to accommodate persons awaiting deportation ", - "values": [ - "Migrants" - ] - }, - { - "text": "Provide all outstanding reports to the treaty bodies and respond to the long-standing requests for visits by special procedures", - "values": [ - "Special procedures", - "Treaty bodies" - ] - }, - { - "text": "Achieve the harmonization of national legislation with the Rome Statute", - "values": [ - "International instruments", - "Justice" - ] - }, - { - "text": "Continue reinforcing the normative framework in order to combat all forms of discrimination, including those on the grounds of sexual orientation and gender identity", - "values": [ - "Sexual Orientation and Gender Identity" - ] - }, - { - "text": "Increase protection for women victims of domestic violence by implementing the existing legislation, investigating and punishing the perpetrators, creating a sufficient number of shelters and providing police protection", - "values": [ - "Rights of the Child", - "Women's rights" - ] - }, - { - "text": "Initiate visits of the Human Rights Council special procedures on the right to education and adequate housing and food with a view to developing more effective measures to drop poverty levels", - "values": [ - "Poverty", - "Right to education", - "Right to food", - "Right to housing", - "Special procedures" - ] - }, - { - "text": "Accede to OP-CAT ", - "values": [ - "Detention", - "International instruments", - "Torture and other CID treatment" - ] - }, - { - "text": "Consider new concrete guarantees so that human rights defenders can do their work", - "values": [ - "Human rights defenders" - ] - }, - { - "text": "Take measures to effectively eliminate forced child labour, including forced begging by talibé children, pursuant to the recommendations of ILO supervisory bodies", - "values": [ - "Labour", - "Rights of the Child" - ] - }, - { - "text": "Ensure the allocation of sufficient resources to increase the quality of education, including for improving schools' infrastructure", - "values": [ - "Right to education" - ] - }, - { - "text": "Review the Suppression of Terrorism Act and Sedition and Subversive Activities Act so that they do not impede the right to freedom of expression as guaranteed under the International Covenant on Civil and Political Rights and are fully aligned with Swaziland's Constitution and contain safeguards against any arbitrary abuse directed against dissent or criticism of the authorities or the Government ", - "values": [ - "Counter-terrorism", - "Freedom of opinion and expression", - "International instruments" - ] - }, - { - "text": "Take measurable steps to fully implement the Elimination of Violence Against Women law, and investigate thoroughly all suspected cases of gender based violence and violence against defenders of women's rights and bring those responsible to justice", - "values": [ - "Women's rights" - ] - }, - { - "text": "Strengthen the resources of the National Commission on Human Rights", - "values": [ - "National Human Rights Institution" - ] - }, - { - "text": "Continue its efforts to meet the benchmarks of the action plan regarding the building of the housing units for the returnees", - "values": [ - "Asylum-seekers - refugees", - "Right to housing" - ] - }, - { - "text": "Continue to take all necessary measures to ensure that no person is discriminated against by the State, including persons affected by HIV/AIDS", - "values": [ - "HIV - Aids" - ] - }, - { - "text": "Allocate sufficient resources for the implementation of the national action plan towards the well-being of the Maldivian child 2001-2010", - "values": [ - "Rights of the Child" - ] - }, - { - "text": "Effectively integrate the Roma into society.", - "values": [ - "Minorities" - ] - }, - { - "text": "Recommended the withdrawal of the reservation on article 22 of the International Covenant on Civil and Political Rights within a specific timeframe. ", - "values": [ - "CP rights - general", - "International instruments" - ] - }, - { - "text": "Start the ratification process of the international instruments already signed", - "values": [ - "International instruments" - ] - }, - { - "text": "Further cooperate with the international community in holding accountable those responsible for violations against human rights and humanitarian law ", - "values": [ - "International humanitarian law", - "International instruments" - ] - }, - { - "text": "Address the issues of child abuse, child trafficking, sexual exploitation and involuntary servitude by strict enforcement of national legislation adopted in conformity with relevant international instruments, and through adoption and implementation of a comprehensive action plan to combat these issues, including awareness-raising and education of parents, law enforcement staff and members of the judiciary. ", - "values": [ - "Human rights education and training", - "Rights of the Child", - "Trafficking" - ] - }, - { - "text": "Strengthen the National Institute for Older Persons as a policymaking institution on ageing and old age", - "values": [ - "Other" - ] - }, - { - "text": "Continue its efforts and take measures to guarantee protection of human rights of indigenous persons and increasingly vulnerable persons", - "values": [ - "Indigenous peoples" - ] - }, - { - "text": "Take concrete measures aimed at effectively fighting against genderbased violence, including social awareness-raising campaigns and training programmes targeting law enforcement officials", - "values": [ - "Human rights education and training", - "Women's rights" - ] - }, - { - "text": "Continue the reform of the judiciary in order to give more independence to the justice system, and improve the witness protection system ", - "values": [ - "Justice" - ] - }, - { - "text": "Continue its fight against poverty with international community's support", - "values": [ - "Poverty", - "Technical assistance and cooperation" - ] - }, - { - "text": "Eliminate discriminatory legal provisions in matters relating to family and marriage, for example by raising the minimum age of marriage for both men and women to 18 years, eliminating the concepts of modesty, virtue and public scandal from the characterization of sexual offences and making marital rape an offence under the Penal Code, as recommended by the Committee on the Elimination of Discrimination against Women", - "values": [ - "Rights of the Child", - "Treaty bodies", - "Women's rights" - ] - }, - { - "text": "Put in place a policy of fighting discrimination based on sexual orientation and gender identity that would guarantee the rights of LGBT persons to freedoms of expression, association and peaceful assembly", - "values": [ - "Freedom of association and peaceful assembly", - "Freedom of opinion and expression", - "Sexual Orientation and Gender Identity" - ] - }, - { - "text": "Take specific measures to protect women from being victim of discrimination and violence, including the appropriate investigation of such cases as well as the prosecution and punishment of perpetrators", - "values": [ - "Women's rights" - ] - }, - { - "text": "Continue reviewing the procedures regarding requests for asylum in the light of the 1951 Convention relating to the Status of Refugees and its 1967 Protocol.", - "values": [ - "Asylum-seekers - refugees", - "International instruments" - ] - }, - { - "text": "Bhutan became an Observer to the International Labour Organization (ILO) in June this year with a view to becoming a member in the near future.", - "values": [ - "International instruments", - "Labour" - ] - }, - { - "text": "Continue its efforts to ensure equal access to housing and protection from discrimination and segregation on the basis of race or any other prohibited ground of discrimination", - "values": [ - "Racial discrimination", - "Right to housing" - ] - }, - { - "text": "Continue its measures in order to increase opportunities for consultations on child rights issues with relevant stakeholders ", - "values": [ - "Rights of the Child" - ] - }, - { - "text": "Continue to focus on developing its economy, increasing employment, strengthening poverty eradication and raising the standard of living of its people", - "values": [ - "Development", - "Poverty" - ] - }, - { - "text": "Take measures to separate juvenile detainees from adults in all places of detention", - "values": [ - "Detention", - "Rights of the Child" - ] - }, - { - "text": "Investigate thoroughly all cases of the detention of persons who have entered Canada, including Russian citizens, on non-security grounds and also information about cruel treatment vis-à these people, pressure being used against them and demands that they provide personal informaiton and the unjustified searches that have been carried out as well", - "values": [ - "Detention", - "Torture and other CID treatment" - ] - }, - { - "text": "Continue efforts to further reduce the pay gap between women and men", - "values": [ - "Women's rights" - ] - }, - { - "text": "Adopt and implement appropriate measures, in compliance with international standards, to eliminate reported torture, ill-treatment and other excessive force by law enforcement personnel against suspects, and ensure due accountability for such misconduct, as stipulated in the country's Constitution, and promptly establish the Police Complaint Commission, as provided in the Police Act ", - "values": [ - "Human rights violations by state agents", - "Torture and other CID treatment" - ] - }, - { - "text": "Take effective measures to combat human trafficking, including the adoption of relevant laws ", - "values": [ - "Trafficking" - ] - }, - { - "text": "Continue to implement policies and programmes to promote gender equality and to provide more opportunities for women to improve their social, economic and political standing in society", - "values": [ - "Women's rights" - ] - }, - { - "text": "Accelerate its efforts in women's empowerment and gender equality, including through the updated National Strategy for the Advancement of Women in the United Arab Emirates, 2013-2017", - "values": [ - "Women's rights" - ] - }, - { - "text": "Withdraw its reservations to article 9 paragraph 2 of the Convention on the Elimination of All Forms of Discrimination against Women", - "values": [ - "International instruments", - "Women's rights" - ] - }, - { - "text": "Continue to strengthen the capacity of the Commission of Human Rights and Good Governance, including through the collaboration with Regional organizations and United Nations institutions", - "values": [ - "National Human Rights Institution" - ] - }, - { - "text": "Take forward and continue with its efforts to establish a national human rights institution in accordance with the Paris Principles.", - "values": [ - "National Human Rights Institution" - ] - }, - { - "text": "Take all appropriate measures, including the revision of legislation, the initiation of a comprehensive study on child abuse, ill treatment and domestic violence, to prevent and combat ill treatment within, inter alia, the family and institutions, as well as the sexual abuse of children", - "values": [ - "Rights of the Child", - "Torture and other CID treatment", - "Women's rights" - ] - }, - { - "text": "Review periodically its migration policy in order to face the new challenges posed by this phenomenon", - "values": [ - "Migrants" - ] - }, - { - "text": "Take further action in order to encourage equal opportunities for both men and women, for instance through more equal salary levels and enhanced childcare services in order to improve reconciliation of work and family life. The National Action Plan on Gender Equality in the Employment Market ought to be fully implemented without delay", - "values": [ - "Women's rights" - ] - }, - { - "text": "Prohibit, in law and in practice, discrimination in employment of persons with disabilities, and adopt legislative measures to ensure their insertion in the labour market", - "values": [ - "Disabilities", - "Labour" - ] - }, - { - "text": "Adopt measures to guarantee the freedom of the press in line with international standards", - "values": [ - "Freedom of the press" - ] - }, - { - "text": "Ensure respect for European and international conventions for the protection of human rights within the framework of treatment of migrants who are affected by the deportation decisions ", - "values": [ - "Migrants" - ] - }, - { - "text": "Establish national legislation to implement the provisions of the Convention on Refugees ", - "values": [ - "Asylum-seekers - refugees", - "International instruments" - ] - }, - { - "text": "Intensify efforts to foster national unity and harmony, including by promoting dialogue among societies of different ethnicity and faith", - "values": [ - "Freedom of religion and belief", - "Minorities" - ] - }, - { - "text": "Continue strengthening its social policies in favour of the most vulnerable sectors of its people, with emphasis on national minorities", - "values": [ - "Minorities" - ] - }, - { - "text": "Consider the recommendation made by UNHCR to ratifying the Conventions relating to refugees and stateless persons ", - "values": [ - "Asylum-seekers - refugees", - "International instruments", - "Statelessness and the right to nationality" - ] - }, - { - "text": "Announce a moratorium on the death penalty with a view to its eventual abolition. Pending this, take urgent steps to reduce its application, in line with international minimum standards", - "values": [ - "Death penalty" - ] - }, - { - "text": "Aim to eliminate segregated education, which is not based on strict individual assessment, and draft a national strategy for the introduction of an inclusive education ", - "values": [ - "Right to education" - ] - }, - { - "text": "Improve the precarious situation of indigenous peoples and Afro- descendent communities", - "values": [ - "Indigenous peoples", - "Minorities" - ] - }, - { - "text": "Enact effective legislation aligned with international standards to combat the use of illegal drugs", - "values": [ - "Other" - ] - }, - { - "text": "To increase the financial and material resources allocated to the Interministerial Support Committee", - "values": [ - "Treaty bodies", - "UPR process" - ] - }, - { - "text": "Pursue its efforts to combat poverty.", - "values": [ - "Poverty" - ] - }, - { - "text": "Guarantee civilians to be tried by their natural judge and not by military commissions", - "values": [ - "Counter-terrorism", - "Justice" - ] - }, - { - "text": "Continue taking measures to integrate international human rights laws and standards (for treaties it is a party to) into the framework of its domestic law ", - "values": [ - "International instruments" - ] - }, - { - "text": "Ensure that children with disabilities have access to inclusive education ", - "values": [ - "Disabilities", - "Right to education", - "Rights of the Child" - ] - }, - { - "text": "Strengthen the legislation against discrimination and adopt effective measures to combat racism, racial discrimination and xenophobia", - "values": [ - "Racial discrimination" - ] - }, - { - "text": "Ensure the transparency, effectiveness, impartiality and independence in the processes of investigation of human rights violations", - "values": [ - "Justice" - ] - }, - { - "text": "Intensify efforts to prosecute all alleged crimes of torture and illegal detention perpetrated by armed and security forces", - "values": [ - "Human rights violations by state agents", - "Torture and other CID treatment" - ] - }, - { - "text": "Continue implementing polices that will make it possible to increase the accessibility and quality of health care services ", - "values": [ - "Right to health" - ] - }, - { - "text": "Agree to visits of other rapporteurs who have requested access to Turkmenistan in the last five years.", - "values": [ - "Special procedures" - ] - }, - { - "text": "Ensure that rights to health, education and jobs for the indigenous community and afro-descendant community are respected and guaranteed", - "values": [ - "Indigenous peoples", - "Minorities", - "Right to education", - "Right to health" - ] - }, - { - "text": "Consider effective implementation of the Private Sector Labour Act, with a view to addressing problems faced by migrant labour and also address the negative aspects of the sponsorship system", - "values": [ - "Labour", - "Migrants" - ] - }, - { - "text": "Ratify at the earliest the Agreement on the Privileges and Immunities of the International Criminal Court and take, if the need arises, requested measures to fully integrate the Rome Statute in domestic legislation ", - "values": [ - "International instruments", - "Justice" - ] - }, - { - "text": "Perform systematically a study of the impact of all measures (laws and decrees) regarding women's rights ", - "values": [ - "Women's rights" - ] - }, - { - "text": "The aim with these programmes is to reduce the poverty index to 28 per cent and the extreme poverty index to 8.8 per cent by 2015, as called for by the first of the eight Millennium Development Goals.", - "values": [ - "Poverty" - ] - }, - { - "text": "Respect and implement Supreme Court decisions on unresolved articles of the Media law", - "values": [ - "Freedom of the press" - ] - }, - { - "text": "Establish a fully independent human rights institution in compliance with the Paris Principles", - "values": [ - "National Human Rights Institution" - ] - }, - { - "text": "Accelerate the process of legislative compliance review, mentioned in the state report, in order to ratify the core human rights treaties, in particular the ICCPR ", - "values": [ - "CP rights - general", - "International instruments" - ] - }, - { - "text": "Continue measures to protect the rights of migrant workers, including combatting racism, xenophobia and religious intolerance", - "values": [ - "Freedom of religion and belief", - "Labour", - "Migrants", - "Racial discrimination" - ] - }, - { - "text": "Continue making efforts to increase the political participation of women, the percentage of women and young people in positions at all levels of society and the participation of women in the labour market under equal conditions ", - "values": [ - "Women's rights" - ] - }, - { - "text": "Ratify the ILO Indigenous and Tribal Peoples Convention, 1989 (No. 169) and Domestic Workers Convention, 2011 (No. 189) ", - "values": [ - "Indigenous peoples", - "International instruments", - "Labour" - ] - }, - { - "text": "Continue to pay special attention to the victims of human trafficking and harmonize its national legislation with international instruments to which it is a party and recommendations made on this matter by treaty bodies", - "values": [ - "International instruments", - "Trafficking", - "Treaty bodies" - ] - }, - { - "text": "Consider the establishment of legislation providing for access to basic services for undocumented migrants, particularly health services, in conformity with the Affordable Care Act", - "values": [ - "Migrants", - "Right to health" - ] - }, - { - "text": "Take additional measures to support access to education of minority children to help them to maintain and develop their own traditions and languages ", - "values": [ - "Minorities", - "Right to education", - "Rights of the Child" - ] - }, - { - "text": "Make sure that basic living conditions are met in prisons by providing food, drinking water and medical assistance", - "values": [ - "Detention", - "Right to food", - "Right to health", - "Right to water and sanitation" - ] - }, - { - "text": "Provide the necessary resources to the health system, in order to strengthen it, and especially in order to lower child and maternal mortality rates", - "values": [ - "Right to health", - "Rights of the Child", - "Women's rights" - ] - }, - { - "text": "Extend a standing invitation to the Special Procedures of the Human Rights Council", - "values": [ - "Special procedures" - ] - }, - { - "text": "Promote the rights of disabled people, inter alia, through the ratification and implementation of the Convention on the Rights of the Persons with Disabilities", - "values": [ - "Disabilities", - "International instruments" - ] - }, - { - "text": "Continue to implement policies that would further encourage women's full and active participation in its society and economy", - "values": [ - "Women's rights" - ] - }, - { - "text": "Continue efforts to combat poverty through the Poverty Reduction Strategy Paper and the third edition of the Growth Strategy for Poverty Reduction covering the period 2011-2014", - "values": [ - "Poverty" - ] - }, - { - "text": "Review article 109.7 of the Organic Code of the Judiciary with a view towards guaranteeing judicial independence, including through the independent selection of judicial authorities", - "values": [ - "Justice" - ] - }, - { - "text": "Incorporate into domestic law the provisions of the treaties that Botswana has freely acceded", - "values": [ - "International instruments" - ] - }, - { - "text": "Take all appropriate steps to prevent the arbitrary arrest, torture and other ill treatment of those exercising their fundamental rights to, inter alia, freedom of expression or opinion and assembly, and bring perpetrators of such acts to justice, in accordance with international standards of fair trial ", - "values": [ - "Detention", - "Freedom of association and peaceful assembly", - "Freedom of opinion and expression", - "Torture and other CID treatment" - ] - }, - { - "text": "Reinforce the judicial system which ensures that serious human rights perpetrators are brought to justice", - "values": [ - "Justice" - ] - }, - { - "text": "Make effective the legislation that provides free birth registration, for example through mass awareness-raising campaigns", - "values": [ - "Rights of the Child", - "Statelessness and the right to nationality" - ] - }, - { - "text": "Strengthen the implementation of the existing programmes for poverty eradication, especially those directed towards the most vulnerable populations ", - "values": [ - "Poverty" - ] - }, - { - "text": "Step up efforts to protect trade unionists.", - "values": [ - "Labour" - ] - }, - { - "text": "Carry out the national consultations on the death penalty, which it had engaged to hold during the eighth session of the Working Group on the UPR, so as to continue advancing towards the abolition of the death penalty", - "values": [ - "Death penalty" - ] - }, - { - "text": "Provide incentives for the Roma community to build their capacity to participate in civil society.", - "values": [ - "Minorities" - ] - }, - { - "text": "Establish a National Prevention Mechanism in accordance with the Optional Protocol to the Convention against Torture", - "values": [ - "Detention", - "International instruments", - "Torture and other CID treatment" - ] - }, - { - "text": "Improve the human rights elements of its training for law enforcement personnel ", - "values": [ - "Human rights education and training" - ] - }, - { - "text": "Continue its active engagement with its international and regional partners to implement technical cooperation and assistance programs on human rights protection", - "values": [ - "Technical assistance and cooperation" - ] - }, - { - "text": "Take concrete measures to reduce child and maternal mortality rates", - "values": [ - "Right to health", - "Rights of the Child", - "Women's rights" - ] - }, - { - "text": "Consider extending a standing invitation to the mandate holders of all special procedures of the Human Rights Council", - "values": [ - "Special procedures" - ] - }, - { - "text": "Step up the implementation of current national plans for addressing the challenges and disparities in health, education, employment and gender equality, especially for the vulnerable groups of women, children, migrants, ethnic and indigenous people in the country", - "values": [ - "Development", - "Right to education", - "Right to health", - "Women's rights" - ] - }, - { - "text": "Make all efforts to accelerate an inclusive political process that returns Mali to a constitutional State", - "values": [ - "Other" - ] - }, - { - "text": "Continue to train law enforcement officials and human rights teachers and to raise awareness of the need for tolerance and harmony among races and ethnic groups and for intercultural relations ", - "values": [ - "Human rights education and training", - "Minorities" - ] - }, - { - "text": "Ensure the protection of persons with disabilities", - "values": [ - "Disabilities" - ] - }, - { - "text": "Establish an appropriate mechanism for the protection and the promotion of children rights ", - "values": [ - "Rights of the Child" - ] - }, - { - "text": "Engage a civil society in the follow-up implementation process of the universal periodic review recommendations", - "values": [ - "Civil society", - "UPR process" - ] - }, - { - "text": "Increase its efforts at enhancing the role of women in high-level decision-making.", - "values": [ - "Women's rights" - ] - }, - { - "text": "Present its standing invitation to the special procedures of the United Nations Human Rights Council", - "values": [ - "Special procedures" - ] - }, - { - "text": "Consider the ratification of those human rights instruments to which it is not yet a Party", - "values": [ - "International instruments" - ] - }, - { - "text": "Continue to practice the adoption and implementation of national action plans in various areas of human rights to implement certain recommendations accepted in the framework of the Universal Periodic Review ", - "values": [ - "UPR process" - ] - }, - { - "text": "The MSAR government is committed to continuing to adopt the measures necessary to ensure the protection and implementation of the fundamental rights and freedoms of the residents of the Region.", - "values": [ - "General" - ] - }, - { - "text": "Consider taking necessary steps to guarantee access to fundamental social human rights, such as health care and education, for foreign residents, including their children, regardless of their migratory status", - "values": [ - "Migrants", - "Rights of the Child" - ] - }, - { - "text": "Take appropriate measures to ensure that obligations under the ICRMW are incorporated into domestic laws", - "values": [ - "International instruments", - "Labour", - "Migrants" - ] - }, - { - "text": "Take measures to effectively implement the Plan of Action for Child ", - "values": [ - "Rights of the Child" - ] - }, - { - "text": "Set up an alternative service for conscientious objectors to the compulsory military service in order to guarantee their right to freedom of expression", - "values": [ - "Freedom of opinion and expression", - "Freedom of religion and belief" - ] - }, - { - "text": "Take adequate measures to combat all forms of racial discrimination, racism and xenophobia on the basis of ethnicity ", - "values": [ - "Racial discrimination" - ] - }, - { - "text": "Continue its efforts to further the promotion of education", - "values": [ - "Right to education" - ] - }, - { - "text": "Advocate for the revision of labour code provisions to ensure the full application of the principle of "equal pay for equal work" for both men and women", - "values": [ - "Women's rights" - ] - }, - { - "text": "Continue pursuing appropriate policies designed to provide for equal opportunities to members of the Traveller community, with special focus on access to health care, education and housing, including ensuring Travellers' participation in public life related decision-making process ", - "values": [ - "Minorities", - "Right to education", - "Right to health", - "Right to housing" - ] - }, - { - "text": "Make more accessible and transparent the procedures for granting of residence permits by clarifying the criteria for awarding status, giving reasons for refusal, and improving the information given to foreigners on the remedies available to them ", - "values": [ - "Migrants" - ] - }, - { - "text": "Undertake further efforts to promote the tasks of all government departments that provide public services", - "values": [ - "Other" - ] - }, - { - "text": "Take measures to effectively prevent and prosecute acts of domestic and sexual violence and assist victims of such violence", - "values": [ - "Rights of the Child", - "Women's rights" - ] - }, - { - "text": "Take continuous measures to secure social infrastructure and means of livelihood at resettlement sites as this is expected to become even more vital", - "values": [ - "Right to housing" - ] - }, - { - "text": "Adopt a national plan of action to enhance the protection of human rights defenders and independent journalists", - "values": [ - "Freedom of the press", - "Human rights defenders" - ] - }, - { - "text": "Move to increase monitoring and enforcement of its system of child protection, building on its recent commendable amendments to the criminal code which tightened penalties for child molestation, with the aim of decreasing the level of child physical and sexual abuse and neglect ", - "values": [ - "Rights of the Child" - ] - }, - { - "text": "Respect and ensure respect of international humanitarian law, particularly the 1949 Geneva Conventions and the Optional Protocol I thereto, including in the Occupied Palestine Territories.", - "values": [ - "International humanitarian law", - "International instruments" - ] - }, - { - "text": "Ensure that the Independent Police Investigative Directorate investigates all allegations of torture", - "values": [ - "Torture and other CID treatment" - ] - }, - { - "text": "Adopt all the necessary measures to lift reservations to the Convention on the Elimination of all Forms of Discrimination against Women", - "values": [ - "International instruments", - "Women's rights" - ] - }, - { - "text": "Intensify efforts to improve the living standards in detention facilities ", - "values": [ - "Detention" - ] - }, - { - "text": "Plan at the regional and national levels for an increase in population though its inclusion into economic, social and political strategies, in consultation with all stakeholders", - "values": [ - "General" - ] - }, - { - "text": "Maintain the leadership in the process for the elaboration of a legally binding instrument on transnational companies and human rights", - "values": [ - "Business and human rights" - ] - }, - { - "text": "Continue its efforts to establish an institutional and legislative framework for the provision of affordable legal aid and awareness services for all", - "values": [ - "Justice" - ] - }, - { - "text": "Extend measures to combat discrimination to the entire vulnerable population, which is victim of stereotypes and discrimination, particularly discrimination based on sexual orientation, and thus amend the criminalization established in the Penal Code relating to that sector of the population", - "values": [ - "Sexual Orientation and Gender Identity" - ] - }, - { - "text": "Continue with overall education regarding the rights of children with developing the preventive assistance concerning the use of drugs ", - "values": [ - "Public security", - "Rights of the Child" - ] - }, - { - "text": "Reinforce policies to ensure that all children born in Zimbabwe, regardless of their parents' origins, are issued with birth certificates", - "values": [ - "Rights of the Child", - "Statelessness and the right to nationality" - ] - }, - { - "text": "Continue its policy in favour of children, in particular the fight already initiated by the Government against child labour ", - "values": [ - "Labour", - "Rights of the Child" - ] - }, - { - "text": "Improve women's access to high quality health care and health-related services", - "values": [ - "Right to health", - "Women's rights" - ] - }, - { - "text": "Take the necessary measures to change the structures that prevent the implementation of CEDAW, including with regard to violence or murders linked to witchcraft ", - "values": [ - "International instruments", - "Rights of the Child", - "Women's rights" - ] - }, - { - "text": "Take measures to strengthen legal and institutional mechanisms aimed at preventing, punishing and eliminating all forms of discrimination, including discrimination based on gender, racial and national origin, and religion ", - "values": [ - "Freedom of religion and belief", - "Minorities", - "Racial discrimination", - "Women's rights" - ] - }, - { - "text": "Consider prohibiting corporal punishment of children in all forms regardless of settings ", - "values": [ - "Rights of the Child", - "Torture and other CID treatment" - ] - }, - { - "text": "Bring its definition of torture into line with that of CAT and accelerate judicial reforms so that acts of torture are not subject to negative prescriptions ", - "values": [ - "International instruments", - "Torture and other CID treatment" - ] - }, - { - "text": "Continue to bring down poverty in urban and rural areas along with the maintenance of peace and stability and protection of the environment to boost up the country's socio-economic development, industrialization and modernization to achieve the MDGs.", - "values": [ - "Development", - "Environment", - "Poverty" - ] - }, - { - "text": "Continue efforts to combat trafficking of women and children, including the establishment of a national plan of action to combat trafficking", - "values": [ - "Rights of the Child", - "Trafficking", - "Women's rights" - ] - }, - { - "text": "Ratify the African Union Convention for the Protection and Assistance of Internally Displaced Persons in Africa, in the light of the ongoing review of Kenya's refugee law", - "values": [ - "Asylum-seekers - refugees", - "International instruments" - ] - }, - { - "text": "Specify the definition and legal scope of the term "divisionism" and revise Law 18/2008 punishing the crime of "genocide ideology" in order to prevent its abuse for political or partisan purpose", - "values": [ - "Justice" - ] - }, - { - "text": "Put an immediate end to the censorship of Fijian media, and to allow the people of Fiji and the media the right to freedom of expression, which includes the right to express criticism of the Government without fear of arrest, intimidation or punishment", - "values": [ - "Freedom of opinion and expression", - "Freedom of the press" - ] - }, - { - "text": "Increase access to food, healthcare, education, and adequate housing, throughout the country", - "values": [ - "Right to education", - "Right to food", - "Right to health" - ] - }, - { - "text": "Go further and tackle the challenges which still persist concerning the rights of migrants, refugees, asylum seekers and their families and consider an eventual withdrawal of its reservations to the Convention on the Rights of the Child and a declaration in support of article 14 of ICERD ", - "values": [ - "Asylum-seekers - refugees", - "International instruments", - "Migrants", - "Rights of the Child" - ] - }, - { - "text": "Maintain article 266(b) of the Criminal Code and adopt measures to avoid that the shelving of cases related to racial or religious hatred does not dissuade victims from continuing to file complaints, and does not lead to impunity for the perpetrators of such crimes ", - "values": [ - "Freedom of religion and belief", - "Impunity", - "Racial discrimination" - ] - }, - { - "text": "Effectively implement the 2009 anti-discrimination law, especially regarding the treatment of complaints about discrimination", - "values": [ - "Other" - ] - }, - { - "text": "Continue efforts for the reintegration of former child offenders in the society", - "values": [ - "Rights of the Child" - ] - }, - { - "text": "Continue with its efforts to promote and protect the right to work, the right to health and the right to education of its people in order to maintain an adequate standard of living for all", - "values": [ - "Labour", - "Right to education", - "Right to health" - ] - }, - { - "text": "Revoke any existing travel bans on human rights defenders and to guaranty the rights to freedom of expression and information of its citizens, in conformity with article 19 of the Covenant, and thus ensure that the media is able to operate without interference", - "values": [ - "Freedom of movement", - "Freedom of opinion and expression", - "Human rights defenders", - "International instruments" - ] - }, - { - "text": "Establish a national mechanism to prevent torture competent to visit detention centres and monitor the situation of detainees", - "values": [ - "Detention", - "Torture and other CID treatment" - ] - }, - { - "text": "Continue to improve the criminal justice system for children, including by making the court more child-friendly, and to come up with specialized response to children in conflict with the law", - "values": [ - "Justice", - "Rights of the Child" - ] - }, - { - "text": "Accede to the Rome Statute of the International Criminal Court and incorporate it in the national legislation, and to the Convention on the Non-Applicability of Statutory Limitations to War Crimes and Crimes against Humanity", - "values": [ - "International instruments", - "Justice" - ] - }, - { - "text": "Guarantee the fundamental rights of all persons living in Botswana and thereby decriminalize sexual relations of consenting adults of the same sex", - "values": [ - "Sexual Orientation and Gender Identity" - ] - }, - { - "text": "Upgrade primary and secondary health-care infrastructure and increase budgetary allocations to the Ministry of Health and Child Care in line with regional and international obligations", - "values": [ - "Right to health", - "Rights of the Child" - ] - }, - { - "text": "Adopt a definition of torture in conformity with the Convention against Torture and Other Cruel, Inhuman or Degrading Treatment or Punishment", - "values": [ - "International instruments", - "Torture and other CID treatment" - ] - }, - { - "text": "Continue efforts to ensure that primary education becomes free and compulsory for all children ", - "values": [ - "Right to education", - "Rights of the Child" - ] - }, - { - "text": "Devote attention to education and awareness-raising in the area of international humanitarian law and on human rights principles generally among the members of Government army and security forces as well as the AMISOM peacekeeping force ", - "values": [ - "Human rights education and training", - "International humanitarian law" - ] - }, - { - "text": "Conclude the survey of the ownership of lands traditionally occupied by indigenous communities as envisioned in Law No. 26160 in order to fully guarantee the rights of indigenous people, especially territorial rights and the right to previous consultation, in compliance with international treaties ratified by Argentina as well as the national constitution", - "values": [ - "Indigenous peoples", - "Right to land" - ] - }, - { - "text": "Take further steps so as to enact a comprehensive and general legislation for the prevention of gender-based violence", - "values": [ - "Women's rights" - ] - }, - { - "text": "Continue its efforts initiated to better protect the rights of vulnerable groups, particularly women and children", - "values": [ - "Rights of the Child", - "Women's rights" - ] - }, - { - "text": "Take effective legal and practical measures to prevent and combat dissemination of racist, xenophobic and Islamophobic propaganda in particular in press and on the Internet ", - "values": [ - "Racial discrimination" - ] - }, - { - "text": "Enact and implement the necessary regulations to protect expatriated domestic workers, in particular foreign female domestic helpers, as one of the most vulnerable segments in Kuwaiti society, from exploitation, violence and abuse, and to prevent human trafficking ", - "values": [ - "Labour", - "Migrants", - "Trafficking", - "Women's rights" - ] - }, - { - "text": "Continue acceding to international human rights treaties, strengthen the process of reforms, and pay more attention on the problems related to indigenous people in Rakhine state", - "values": [ - "Indigenous peoples", - "International instruments" - ] - }, - { - "text": "Sign and ratify the Optional Protocol to the Convention against Torture (OP-CAT), accede to the International Convention for the Protection of All Persons from Enforced Disappearance (CED) and ratify the Rome Statute of the International Criminal Court ", - "values": [ - "Detention", - "Enforced disappearances", - "International instruments", - "Justice", - "Torture and other CID treatment" - ] - }, - { - "text": "Fully investigate all allegations of persecution based on gender and sexual orientation", - "values": [ - "Sexual Orientation and Gender Identity" - ] - }, - { - "text": "Accede to and fully align its national legislation with the Rome Statute, including by incorporating provisions to cooperate promptly and fully with the ICC in investigations and prosecutions and accede to the Agreement on the Privileges and Immunities of the International Criminal Court", - "values": [ - "International instruments", - "Justice" - ] - }, - { - "text": "Continue to develop actions to improve the right to food of the whole population, including through the implementation of the National Program of Food and Nutritional Security", - "values": [ - "Right to food" - ] - }, - { - "text": "Continue its efforts in combating trafficking in persons including strengthening the preventive measures on sexual exploitation of women and children", - "values": [ - "Rights of the Child", - "Trafficking", - "Women's rights" - ] - }, - { - "text": "Take the necessary steps to complete the establishment of the national human rights institution, and make it fully functional, in line with the Paris Principles ", - "values": [ - "National Human Rights Institution" - ] - }, - { - "text": "Guarantee the rights to freedom of expression and Covenant on Civil and Political Rights and thus ensure that the media are able to operate without interference.", - "values": [ - "Freedom of opinion and expression", - "Freedom of the press", - "International instruments" - ] - }, - { - "text": "Adopt specific laws to eliminate other forms of discrimination to supplement existing legislation on gender discrimination in the country", - "values": [ - "Women's rights" - ] - }, - { - "text": "Consider ratifying the Rome Statute establishing the International Criminal Court.", - "values": [ - "International instruments", - "Justice" - ] - }, - { - "text": "Ensure the full implementation of juvenile justice standards ", - "values": [ - "Justice", - "Rights of the Child" - ] - }, - { - "text": "Invite the Special Rapporteur on the rights to freedom of peaceful assembly and of association to visit the country ", - "values": [ - "Freedom of association and peaceful assembly", - "Special procedures" - ] - }, - { - "text": "Meanwhile, provide information to concerned families, so that they can know in advance the date of execution of their relatives", - "values": [ - "Death penalty" - ] - }, - { - "text": "Ensure a safe working environment for human rights defenders, by modifying the legislation that allows the denial of legal registration of organizations specialized in reproductive and sexual rights of women as well as associations defending the rights of lesbian, gay, bisexual, transgender and intersex persons", - "values": [ - "Civil society", - "Human rights defenders", - "Right to health", - "Sexual Orientation and Gender Identity", - "Women's rights" - ] - }, - { - "text": "Promptly ratify the Optional Protocol to the Convention against Torture", - "values": [ - "International instruments", - "Torture and other CID treatment", - "Treaty bodies" - ] - }, - { - "text": "In response to the growing needs of older persons, consider developing a master plan that would bring under its wing the various initiatives designed to protect the rights of older persons", - "values": [ - "Other" - ] - }, - { - "text": "Take action to establish a National Human Rights Institution, in accordance with the Paris Principles", - "values": [ - "National Human Rights Institution" - ] - }, - { - "text": "Become a party to the Optional Protocol to the Convention against Torture ", - "values": [ - "Detention", - "International instruments", - "Torture and other CID treatment" - ] - }, - { - "text": "Put in place technical assistance programmes to strengthen the capacity of the Ombudsman", - "values": [ - "National Human Rights Institution" - ] - }, - { - "text": "Guarantee the free, open and transparent nature of future presidential elections so that they are properly carried out and credible ", - "values": [ - "Elections" - ] - }, - { - "text": "Step up cooperation with the special procedures mandate holders by responding positively to the pending visit requests", - "values": [ - "Special procedures" - ] - }, - { - "text": "Take measures to address the problem of discrimination and racially motivated acts ", - "values": [ - "Racial discrimination" - ] - }, - { - "text": "Financial and other resources required will be made available by the Government to the Ministries and agencies identified as implementing agencies of the NHRAP and the National Plan of Action to Implement the Recommendations of the Lessons Learnt and Reconciliation Commission, to support the implementation of these Plans", - "values": [ - "Justice" - ] - }, - { - "text": "Continue to implement reforms in the judiciary ", - "values": [ - "Justice" - ] - }, - { - "text": "Increase the availability of preschool facilities in rural areas", - "values": [ - "Right to education" - ] - }, - { - "text": "Step up its cooperation with the Special Procedures and eventually consider extending a standing invitation to all the Special Procedures mandate holders of the Human Rights Council", - "values": [ - "Special procedures" - ] - }, - { - "text": "Define rape criminally based on the lack of voluntary consent ", - "values": [ - "Women's rights" - ] - }, - { - "text": "Ensure the full participation of women in the review of customary laws and practices, and discourage the persistence of practices detrimental to women's rights.", - "values": [ - "Women's rights" - ] - }, - { - "text": "Continue to develop measures aimed at strengthening the rights of women, non-discrimination and the elimination of obstacles created by socio- cultural models and stereotypes ", - "values": [ - "Women's rights" - ] - }, - { - "text": "Continue to strengthen the victim and witness protection programme under the Justice and Peace Law and allocate sufficient resources.", - "values": [ - "Justice" - ] - }, - { - "text": "Step up its efforts to combat racism and xenophobia and ensure that racially-motivated crimes are promptly detected, investigated and sanctioned ", - "values": [ - "Racial discrimination" - ] - }, - { - "text": "Facilitate the work of non-governmental organizations and other relevant civil society groups in the country ", - "values": [ - "Civil society" - ] - }, - { - "text": "Continue on its efforts in combating harmful traditional practices ", - "values": [ - "Torture and other CID treatment" - ] - }, - { - "text": "Approve and implement a law on the protection of human rights defenders, journalists, social communicators and justice officials, and provide adequate human and financial resources to establish an effective State mechanism to protect those at risk", - "values": [ - "Freedom of the press", - "Human rights defenders", - "Justice" - ] - }, - { - "text": "Strengthen anti-terrorism by incorporating capacity with other African States to fight the scourge of terror ", - "values": [ - "Public security" - ] - }, - { - "text": "Step up the process of elaboration of the action plan on the implementation of the Convention on the Rights of Persons with Disabilities with a clearly defined time frame", - "values": [ - "Disabilities", - "International instruments" - ] - }, - { - "text": "Continue the integration of human rights education in the remaining grades in schools.", - "values": [ - "Human rights education and training" - ] - }, - { - "text": "Prioritize training for the judiciary and the police on how to treat victims of trafficking as well as domestic violence ", - "values": [ - "Rights of the Child", - "Trafficking", - "Women's rights" - ] - }, - { - "text": "Make more efforts to safeguard the benefits that would go to those who live in rural areas to ensure their economic and social rights", - "values": [ - "ESC rights - general" - ] - }, - { - "text": "Adopt further legislative and educational measures that diminish economic inequality, joblessness and discrimination, especially for the Roma, Sinti, and Travel communities", - "values": [ - "Development", - "Minorities", - "Racial discrimination" - ] - }, - { - "text": "Establish the Anti-Gender-Based Violence Fund as provided for in the Act of 2011", - "values": [ - "Women's rights" - ] - }, - { - "text": "Continue to step up efforts to combat human trafficking", - "values": [ - "Trafficking" - ] - }, - { - "text": "Accelerate the process of withdrawal of reservations to the Convention on the Elimination of all Forms of Discrimination against Women", - "values": [ - "International instruments", - "Women's rights" - ] - }, - { - "text": "Repeal laws that criminalize consensual same sex adult sexual relations ", - "values": [ - "Sexual Orientation and Gender Identity" - ] - }, - { - "text": "Continue its efforts directed towards the fight against trafficking in persons", - "values": [ - "Trafficking" - ] - }, - { - "text": "Consider the necessary legislations and policies to effectively guarantee the protection and promotion of freedoms of expression, peaceful assembly and association", - "values": [ - "Freedom of association and peaceful assembly", - "Freedom of opinion and expression" - ] - }, - { - "text": "Ratify or accede to the main instruments on human rights, in particular the International Convention on the Elimination of All Forms of Racial Discrimination ", - "values": [ - "International instruments", - "Racial discrimination" - ] - }, - { - "text": "Focus on economic, social and cultural rights as a first step towards achieving programmes within the framework of the United Nations 2030 Sustainable Development Agenda", - "values": [ - "Development", - "ESC rights - general" - ] - }, - { - "text": "Effectively monitor and evaluate the 2016-2017 National Action Plan against Human Trafficking and provide an update in a subsequent universal periodic review report", - "values": [ - "Trafficking", - "UPR process" - ] - }, - { - "text": "Provide for adequate and consistent funding to all schools and learning institutions and ensure accountability and transparency in such funding", - "values": [ - "Right to education" - ] - }, - { - "text": "Continue its efforts in eliminating discrimination and preventing violence against women and children ", - "values": [ - "Rights of the Child", - "Women's rights" - ] - }, - { - "text": "Promote further women's rights in the field of education and health", - "values": [ - "Right to education", - "Right to health", - "Women's rights" - ] - }, - { - "text": "Pursue its action to ensure the right to education for all towards the realization of the Millennium Development Goals and to extend this fundamental right to children of illegal migrants ", - "values": [ - "Migrants", - "Right to education", - "Rights of the Child" - ] - }, - { - "text": "Continue to create a safe and enabling environment for civil society in order to help the country's ongoing transition to democracy", - "values": [ - "Civil society" - ] - }, - { - "text": "Strengthen ongoing efforts to bring EHRC into conformity with the Paris Principles ", - "values": [ - "National Human Rights Institution" - ] - }, - { - "text": "Adopt and effectively implement a national action plan on the rights of the child with special attention to protection of the rights of children in institutional care and children with disabilities", - "values": [ - "Disabilities", - "Rights of the Child" - ] - }, - { - "text": "Invite the Special Rapporteur on freedom of religion or belief to visit the country and fully cooperate with her ", - "values": [ - "Freedom of religion and belief", - "Special procedures" - ] - }, - { - "text": "Ratify the International Convention on the Rights of All Migrant Workers and Members of their Families", - "values": [ - "International instruments", - "Labour", - "Migrants" - ] - }, - { - "text": "Continue to take measures to fight against poverty ", - "values": [ - "Poverty" - ] - }, - { - "text": "Prevent and combat racial prejudice and take the necessary measures to ensure effective protection against discrimination, in particular in the fields of employment, housing, health and education, to ensure capacity-building and the empowerment of indigenous peoples ", - "values": [ - "Indigenous peoples" - ] - }, - { - "text": "Ratify the International Convention on the Protection of the Rights of All Migrant Workers and Members of Their Families and ILO Convention No. 169", - "values": [ - "Indigenous peoples", - "International instruments", - "Labour", - "Migrants" - ] - }, - { - "text": "Continue strengthening efforts aimed at promoting food security and eradicate all forms of malnutrition, in particular among children under the age of 5", - "values": [ - "Right to food" - ] - }, - { - "text": "Institute policies and initiatives to address discrimination based on sexual orientation or gender identity", - "values": [ - "Sexual Orientation and Gender Identity" - ] - }, - { - "text": "Focus on the successful implementation of the Act on Promotion of Women\u2019s Participation and Advancement in the Workplace as well as to share its best practices of their experiences in the achievement of women employees in the country", - "values": [ - "Labour", - "Women's rights" - ] - }, - { - "text": "Implement further necessary legislative and administrative reforms in order to ensure that all trials take place according to international standards for a fair, independent and impartial trial, including those that involve persons accused of religious extremism or members of unregistered organizations ", - "values": [ - "Civil society", - "Freedom of religion and belief", - "Justice" - ] - }, - { - "text": "Increase the number of childcare facilities and ensure that the most disadvantaged groups also have access to childcare subsidies under the Working Families Scheme ", - "values": [ - "Rights of the Child" - ] - }, - { - "text": "Ratify the Rome Statute of the ICC", - "values": [ - "International instruments", - "Justice" - ] - }, - { - "text": "Intensify its efforts to combat terrorism", - "values": [ - "Public security" - ] - }, - { - "text": "Consider the introduction of a moratorium on the use of the death penalty in the national criminal system", - "values": [ - "Death penalty" - ] - }, - { - "text": "Establish effective and transparent mechanisms to prevent violence, in particular against women, girls and boys, and ensure that these mechanisms are allocated with the necessary capacity and resources to be operational", - "values": [ - "Rights of the Child", - "Women's rights" - ] - }, - { - "text": "Continue actions aimed at peaceful coexistence between different ethnic and religious groups in the country", - "values": [ - "Freedom of religion and belief", - "Minorities" - ] - }, - { - "text": "Cooperate closely with the United Nations human rights mechanisms in Mali", - "values": [ - "Special procedures", - "Technical assistance and cooperation", - "Treaty bodies", - "UPR process" - ] - }, - { - "text": "Abolish the death penalty once and for all, sign and ratify the second Optional Protocol to ICCPR", - "values": [ - "Death penalty", - "International instruments" - ] - }, - { - "text": "Strengthen its legal arsenal by acceding to the Optional Protocol to the International Covenant on Economic, Social and Cultural Rights and ratifying the International Convention for the Protection of All Persons from Enforced Disappearance ", - "values": [ - "ESC rights - general", - "Enforced disappearances", - "International instruments" - ] - }, - { - "text": "Enact the Family Safety Bill without delay", - "values": [ - "Rights of the Child", - "Women's rights" - ] - }, - { - "text": "Formulate a national plan of action to combat racism and xenophobia", - "values": [ - "Racial discrimination" - ] - }, - { - "text": "The Government reaffirms its commitment to promoting respect for the dignity of human person and it will therefore work to reduce the number of situations that threaten the human rights paradigm.", - "values": [ - "General" - ] - }, - { - "text": "Continue promoting initiatives aimed at empowering women of the country in their economic, political and social level ", - "values": [ - "Women's rights" - ] - }, - { - "text": "Continue efforts to achieve a fair socioeconomic order to continue the struggle against social disparity, promoting equality", - "values": [ - "ESC rights - general" - ] - }, - { - "text": "Closely collaborate with UNICEF and UNAIDS in order to implement programmes aimed at reducing the cases of Mother-toChild HIV Infections ", - "values": [ - "HIV - Aids" - ] - }, - { - "text": "Intensify efforts to combat trafficking in person inter alia by renewing individual invitations to the Special Rapporteur on trafficking in persons and the Special Rapporteur on the sale of children, child prostitution and child pornography. Bring the criminal law into full conformity with the provisions of the Optional Protocol to the Convention on the Rights of the child relating to sale of children, child prostitution and child pornography ", - "values": [ - "International instruments", - "Rights of the Child", - "Special procedures", - "Trafficking" - ] - }, - { - "text": "Take the necessary steps towards the establishment of a national human rights institution in accordance with the Paris Principles ", - "values": [ - "National Human Rights Institution" - ] - }, - { - "text": "Review its penitentiary policy to become more gender-sensitive and child-friendly, taking on board the interests of mother-prisoners and their minor children ", - "values": [ - "Detention", - "Rights of the Child", - "Women's rights" - ] - }, - { - "text": "Strengthen measures to ensure gender equality, particularly in the transmission of nationality to the children of women married to non-citizens ", - "values": [ - "Rights of the Child", - "Women's rights" - ] - }, - { - "text": "Continue to take positive measures to better protect the right of its people to education, health care, employment, housing and food, etc.", - "values": [ - "Labour", - "Right to education", - "Right to food", - "Right to health" - ] - }, - { - "text": "Redouble its efforts to obtain, in law and in practice, the inclusion of migrants in all spheres, in particular of women in the labour market", - "values": [ - "Labour", - "Migrants", - "Women's rights" - ] - }, - { - "text": "Set up an independent and impartial commission of inquiry on any alleged case of forced disappearance or extrajudicial execution ", - "values": [ - "Enforced disappearances", - "Extrajudicial executions" - ] - }, - { - "text": "Allocate additional resources to the judicial system as necessary to ensure timely due process ", - "values": [ - "Justice" - ] - }, - { - "text": "Consider establishing an independent human rights institution in conformity with the Paris Principles ", - "values": [ - "National Human Rights Institution" - ] - }, - { - "text": "Continue its efforts in addressing historical injustices and protecting the rights of the victims of such injustices, both at the national and international levels", - "values": [ - "Justice" - ] - }, - { - "text": "Ensure that the use of administrative detention is minimised and that human rights are fully respected in the fight against terrorism", - "values": [ - "Counter-terrorism", - "Detention" - ] - }, - { - "text": "Ratify the Rome Statute of the ICC in its 2010 version, including the amendments on the crime of aggression, and review its national legislation in order to ensure full alignment with the Statute ", - "values": [ - "International instruments", - "Justice" - ] - }, - { - "text": "Protect the rights of women by ensuring their participation in political life and in all the peace and reconciliation processes as well as equal opportunities in the area of education and employment ", - "values": [ - "Women's rights" - ] - }, - { - "text": "Consider the possibility of strengthening the necessary measures for the protection and integration of LGBT persons", - "values": [ - "Sexual Orientation and Gender Identity" - ] - }, - { - "text": "Continue the efforts embarked to ratify International Convention for the Protection of All Persons from Enforced Disappearance (CPED)", - "values": [ - "Enforced disappearances", - "International instruments" - ] - }, - { - "text": "Redouble its efforts for the implementation of all economic, social and cultural rights for its population", - "values": [ - "ESC rights - general" - ] - }, - { - "text": "Set up effective legislative or others measures to protect women and children against domestic violence and all forms of ill-treatment", - "values": [ - "Rights of the Child", - "Women's rights" - ] - }, - { - "text": "Strengthen Government oversight of its rough diamond sector, as well as its engagement in collaborative initiatives to enhance the enforcement of the certification scheme in the West African region", - "values": [ - "Business and human rights" - ] - }, - { - "text": "Strengthen its institutions and ratify key treaties, including the Optional Protocol to the Convention against Torture.", - "values": [ - "Detention", - "International instruments", - "Torture and other CID treatment" - ] - }, - { - "text": "Respect fully press freedom and freedom of expression in accordance with international law", - "values": [ - "Freedom of opinion and expression" - ] - }, - { - "text": "Continue to give absolute priority to programmes to combat poverty", - "values": [ - "Poverty" - ] - }, - { - "text": "Revise and harmonize legislation on sexual and domestic violence with a view to penalizing all acts of violence committed against women", - "values": [ - "Women's rights" - ] - }, - { - "text": "Take all the necessary measures to protect journalists and human rights defenders from threats and attacks, and ensure that the perpetrators of such violence are brought to justice", - "values": [ - "Freedom of the press", - "Human rights defenders" - ] - }, - { - "text": "Confirm its commitment towards the abolition of the death penalty by ratifying the Second Optional Protocol to the International Covenant on Civil and Political Rights, which abolishes the death penalty under all circumstances ", - "values": [ - "Death penalty", - "International instruments" - ] - }, - { - "text": "Examine the incompatibilities of national legislation that prevent its adherence to the ILO and ratify its Conventions, in particular ILO Conventions No. 111 and No. 87 ", - "values": [ - "International instruments", - "Labour" - ] - }, - { - "text": "Continue to discuss human rights issues frankly with the international community and the European Union, and in so doing find constructive ways of making progress on its international obligations and make tangible improvements on the ground ", - "values": [ - "General" - ] - }, - { - "text": "The introduction of the National Action Plan for Democracy and Human Rights, targeting four priority areas: Governance and democracy, the promotion of economic, social, cultural and environmental rights, the promotion of the rights of specific groups (children, persons with disabilities, older persons and refugees) and the strengthening of the legal and institutional framework for the promotion and protection of human rights", - "values": [ - "Asylum-seekers - refugees", - "Disabilities", - "ESC rights - general", - "Rights of the Child" - ] - }, - { - "text": "Continue the ongoing efforts to promote inclusive education ", - "values": [ - "Right to education" - ] - }, - { - "text": "Intensify efforts to develop a national human rights action plan", - "values": [ - "General" - ] - }, - { - "text": "Increase access to health services in rural areas, in particular to reduce maternal mortality and morbidity", - "values": [ - "Right to health", - "Women's rights" - ] - }, - { - "text": "Take measures to guarantee effective access to justice and protection for women victims of gender-based violence", - "values": [ - "Women's rights" - ] - }, - { - "text": "Repeal all provisions that criminalize sexual activity between consenting adults in conformity with international obligations ", - "values": [ - "Sexual Orientation and Gender Identity" - ] - }, - { - "text": "Ratify and accede to the International Convention on the Protection of All Persons from Enforced Disappearance", - "values": [ - "Enforced disappearances", - "International instruments" - ] - }, - { - "text": "Continue to strengthen democratic institutions and pursue efforts to promote civil society and the media", - "values": [ - "Civil society", - "Freedom of the press" - ] - }, - { - "text": "Continue its efforts in favour of the education of children, especially in the rural parts of the country", - "values": [ - "Right to education", - "Rights of the Child" - ] - }, - { - "text": "Continue its efforts to raise the minimum age of criminal responsibility", - "values": [ - "Justice", - "Rights of the Child" - ] - }, - { - "text": "Accelerate the process of bringing the status of the Human Rights Commissioner in line with the Paris Principles and strengthening the mandate of the Commissioner in compliance with the Paris Principles", - "values": [ - "National Human Rights Institution" - ] - }, - { - "text": "Ensure effectiveness, proper functioning and independence of its national human rights institution ", - "values": [ - "National Human Rights Institution" - ] - }, - { - "text": "Continue their efforts with determination for further progress in fighting against corruption", - "values": [ - "Corruption" - ] - }, - { - "text": "Standardize the legal definition of the child in order to harmonize the national legislation with international law and facilitate its implementation", - "values": [ - "Rights of the Child" - ] - }, - { - "text": "Ratify the Optional Protocol to CEDAW", - "values": [ - "International instruments", - "Women's rights" - ] - }, - { - "text": "Improve conditions to combat the higher rate of poverty, especially in the rural areas", - "values": [ - "Poverty" - ] - }, - { - "text": "Continue its efforts to combat racism against foreigners", - "values": [ - "Migrants", - "Racial discrimination" - ] - }, - { - "text": "Continue taking measures to eliminate racial and ethnic discrimination", - "values": [ - "Racial discrimination" - ] - }, - { - "text": "Ratify the Convention on the Rights of Persons with Disabilities and the Optional Protocol thereto as well as the Optional Protocol to the Convention against Torture.", - "values": [ - "Detention", - "Disabilities", - "International instruments", - "Torture and other CID treatment" - ] - }, - { - "text": "Continue to engage its regional and bilateral partners with a view to building capacity and mobilizing resources in support of efforts to fulfil its human rights obligations", - "values": [ - "Technical assistance and cooperation" - ] - }, - { - "text": "Take genuine steps towards the ratification of treaties and optional protocols to conventions that the United States has already signed, but not yet ratified", - "values": [ - "International instruments" - ] - }, - { - "text": "Make further progress in the reduction of the scope of capital offences in Chinese legislation", - "values": [ - "Death penalty" - ] - }, - { - "text": "Continue leading the international dialogue in an effort to reduce the effects of climate change and to adopt effective adaptation measures", - "values": [ - "Environment" - ] - }, - { - "text": "Continue to strengthen provisions to address domestic violence, and programmes to reinforce mechanisms for the protection of women and children ", - "values": [ - "Rights of the Child", - "Women's rights" - ] - }, - { - "text": "Continue working at the national and international levels of the issue of human rights and climate change", - "values": [ - "Environment" - ] - }, - { - "text": "Improve and ensure adequate access to health care and education for children", - "values": [ - "Right to education", - "Right to health", - "Rights of the Child" - ] - }, - { - "text": "Continue working on the legislation on domestic violence crimes, particularly regarding the inclusion of a definition of sexual violence that also encompasses any non-consented sexual act within marriage", - "values": [ - "Rights of the Child", - "Women's rights" - ] - }, - { - "text": "Work towards enforcing Human Righst Council resolution 16/18 concerning combating intolerance, negative stereotyping and stigmatization of, and discrimination, incitement to violence and violence against, persons based on religion or belief", - "values": [ - "Freedom of religion and belief", - "Racial discrimination" - ] - }, - { - "text": "Realize its commitments particularly those related to legislative and judicial reform anti-corruption ", - "values": [ - "Corruption", - "Justice" - ] - }, - { - "text": "Continue strengthening its efforts in providing quality health facilities and services, particularly to address maternal and child mortality rates ", - "values": [ - "Right to health", - "Rights of the Child", - "Women's rights" - ] - }, - { - "text": "Lobby for and implement access to information legislation to encourage greater transparency and government ability", - "values": [ - "Justice" - ] - }, - { - "text": "Strengthen measures to reduce poverty", - "values": [ - "Poverty" - ] - }, - { - "text": "Develop a strategy or a national plan for the deinstitutionalization of children from residential care institutions to foster families", - "values": [ - "Rights of the Child" - ] - }, - { - "text": "Consider establishing an independent body with the right to undertake unannounced visits to all places of deprivation of liberty, including police stations and pretrial detention facilities, with a view to an early ratification of OP-CAT", - "values": [ - "Detention", - "International instruments", - "Torture and other CID treatment" - ] - }, - { - "text": "Intensify efforts to find a sustainable solution to\nthe situation of Bhutanese refugees in Nepal, in agreement with neighbouring States ", - "values": [ - "Asylum-seekers - refugees" - ] - }, - { - "text": "Ensure migrants found at sea are afforded the full measures of protection they are entitled to under international law ", - "values": [ - "Migrants" - ] - }, - { - "text": "Complete the process aimed at the abolition of the death penalty", - "values": [ - "Death penalty" - ] - }, - { - "text": "Review the provisions of domestic criminal law in line with international provisions in order to introduce the corresponding amendments, in particular the effective adoption of the habeas corpus procedure", - "values": [ - "Justice" - ] - }, - { - "text": "Take further initiatives to address the phenomena of poverty and unemployment", - "values": [ - "Development", - "Poverty" - ] - }, - { - "text": "Continue working on the welfare of children and women ", - "values": [ - "Rights of the Child", - "Women's rights" - ] - }, - { - "text": "Accelerate the process of ratification of the International Covenant on Civil and Political Rights and the International Covenant on Economic, Social and Cultural Rights, the International Convention on the Elimination of All Forms of Racial Discrimination and the Convention against Torture", - "values": [ - "CP rights - general", - "ESC rights - general", - "International instruments", - "Racial discrimination", - "Torture and other CID treatment" - ] - }, - { - "text": "Guarantee the rights of Colombians affected by the land border closure, including family reunification and recovery of their belongings", - "values": [ - "Other" - ] - }, - { - "text": "Continue its effort to protect the rights of women, children and vulnerable groups", - "values": [ - "Rights of the Child", - "Women's rights" - ] - }, - { - "text": "Ensure the prompt, impartial and effective investigation into and put a stop to the arbitrary detention, harassment and persecution of human rights defenders", - "values": [ - "Detention", - "Human rights defenders" - ] - }, - { - "text": "Set up an independent commission to monitor and identify cases of torture and ill-treatment perpetrated by law enforcement officials.", - "values": [ - "Torture and other CID treatment" - ] - }, - { - "text": "Review school textbooks to introduce a gender-equality perspective and promote citizenship and openness to the outside world", - "values": [ - "Right to education" - ] - }, - { - "text": "Eliminate violence against women in all its manifestations", - "values": [ - "Women's rights" - ] - }, - { - "text": "Amend its domestic laws to ensure that all people in the country are able to enjoy their fundamental human rights ", - "values": [ - "General" - ] - }, - { - "text": "Consider acceding to ICESCR, the International Convenant on Civil and Political Rights (ICCPR), the Convention against Torture and Other Cruel, Inhuman or Degrading Treatment or Punishment (CAT), and ICRMW ", - "values": [ - "CP rights - general", - "ESC rights - general", - "International instruments", - "Labour", - "Migrants", - "Torture and other CID treatment" - ] - }, - { - "text": "Ensure efforts to continue amending the Electoral Law of 2010 with the aim that Jordanians of all ethnic origins as well as non-national residents are proportionally represented in national affairs", - "values": [ - "Elections", - "Minorities" - ] - }, - { - "text": "Put in place a special law that will take into consideration the land rights of the pygmy communities", - "values": [ - "Indigenous peoples" - ] - }, - { - "text": "Ratify the CAT and the second Optional Protocol to ICCPR", - "values": [ - "Death penalty", - "International instruments", - "Torture and other CID treatment" - ] - }, - { - "text": "Take steps to ensure a reduction in the attacks on human rights defenders and to bring the perpetrators of such attacks to justice.", - "values": [ - "Human rights defenders" - ] - }, - { - "text": "Reinforce its efforts to fight impunity regarding cases of enforced disappearance by bringing all responsible persons to justice", - "values": [ - "Enforced disappearances", - "Impunity" - ] - }, - { - "text": "Continue to accede to the main international human rights instruments, to which it is not yet a party, in particular the International Convention for the Protection of All Persons from Enforced Disappearance ", - "values": [ - "Enforced disappearances", - "International instruments" - ] - }, - { - "text": "Enact a non-discriminatory law on succession, inheritance and land-rights issues", - "values": [ - "Right to land" - ] - }, - { - "text": "Put in place the recommendation made in 2011 by the Constitutional Review Commission, in concrete regarding the abolition of the death penalty", - "values": [ - "Death penalty" - ] - }, - { - "text": "Ratify the Optional Protocol to the Convention against Torture (OP CAT), which was signed already in 2005", - "values": [ - "Detention", - "International instruments", - "Torture and other CID treatment" - ] - }, - { - "text": "Include those affected by the phosphate extraction industry in the negotiations on their settlement and the acquisition of alternative farm lands for them", - "values": [ - "Business and human rights", - "Right to land" - ] - }, - { - "text": "Seek the assistance of the international community in adapting to climate change and developing its capacities to address the adverse effects of climate change on the enjoyment by its citizens of their human rights", - "values": [ - "Environment", - "Technical assistance and cooperation" - ] - }, - { - "text": "Consider extending a standing invitation to special procedures", - "values": [ - "Special procedures" - ] - }, - { - "text": "Adopt legislation for the legal recognition and protection of human rights defenders, as well as to repeal the legislation which restricts the right to defend and promote human rights ", - "values": [ - "Human rights defenders" - ] - }, - { - "text": "Intensify its efforts to ensure provision of education in minority languages", - "values": [ - "Minorities", - "Right to education" - ] - }, - { - "text": "Taking into account the determination of the Government to protect the right to life and the danger of the practice of illegal abortions, provide guarantees in legislation for the mental and physical integrity of women, especially children who have undesired pregnancies ", - "values": [ - "Rights of the Child", - "Women's rights" - ] - }, - { - "text": "Continue its efforts to improve the livelihood of refugees and IDPs by taking measures aimed at further improving the health-care system in refugee settlements, ensuring that all refugees attain the highest level of access to health services", - "values": [ - "Asylum-seekers - refugees", - "Internally displaced persons", - "Right to health" - ] - }, - { - "text": "Enhance the efficiency of the judiciary and secure access to concrete remedies for victims of human rights violations.", - "values": [ - "Justice" - ] - }, - { - "text": "Investigate the reports of "knife stabbings" against people mainly from sub-Saharan Africa and ensure that the perpetrators are prosecuted and, when convicted, punished with appropriate penalties", - "values": [ - "Minorities", - "Racial discrimination" - ] - }, - { - "text": "Continue its national efforts to focus on the quality and sustainability of development targets ", - "values": [ - "Development" - ] - }, - { - "text": "Extend a standing invitation to special-procedure mandate holders as a way of informing and supporting human rights reforms ", - "values": [ - "Special procedures" - ] - }, - { - "text": "Continue to seek technical cooperation and assistance in the field of human rights education and training ", - "values": [ - "Human rights education and training", - "Technical assistance and cooperation" - ] - }, - { - "text": "Ensure in the elaboration and implementation of the national land policy that economic, social and cultural as well as civil and political rights of all affected persons are fully respected, including by applying international standards such as the guidelines on land tenure and on responsible investment in agriculture of the Food and Agriculture Organization of the United Nations, in particular by providing full, adequate and effective compensation for expropriations and by recognizing and protecting customary land rights", - "values": [ - "Right to land" - ] - }, - { - "text": "Criminalize marital rape and establish a common minimum age for marriage at 18 years old", - "values": [ - "Rights of the Child", - "Women's rights" - ] - }, - { - "text": "The RMI is committed to abiding by the principles of the main human rights treaties and in continuing efforts in ratifying or acceding to the said treaties.", - "values": [ - "International instruments" - ] - }, - { - "text": "Take the necessary measures to combat land and water pollution caused by dangerous industrial waste", - "values": [ - "Business and human rights", - "Environment", - "Right to land", - "Right to water and sanitation" - ] - }, - { - "text": "Continue strengthening the programmes developed for the promotion of employment, right to food and social assistance for national minorities and other vulnerable sectors of the population", - "values": [ - "Development", - "ESC rights - general", - "Minorities", - "Right to food" - ] - }, - { - "text": "Ratify the Convention on the Rights of Persons with Disabilities and ensure that persons with disabilities are free from all forms of discrimination and social exclusion", - "values": [ - "Disabilities", - "International instruments" - ] - }, - { - "text": "Consider intensifying Government efforts towards the effective and successful integration of historically marginalized Rwandans", - "values": [ - "Minorities" - ] - }, - { - "text": "Step up its efforts to ensure equal treatment of women and girls, particularly by ratifying the Convention to Eliminate All Forms of Discrimination against Women", - "values": [ - "International instruments", - "Rights of the Child", - "Women's rights" - ] - }, - { - "text": "Bring official development assistance up to the internationally committed 0.7% of GNI", - "values": [ - "Development" - ] - }, - { - "text": "Amend its legislation for the legal recognition of same-sex couples ", - "values": [ - "Sexual Orientation and Gender Identity" - ] - }, - { - "text": "Implement further actions in promoting social and work security, as well as efforts to spread the country\u2019s growth model in rural areas", - "values": [ - "Development" - ] - }, - { - "text": "Establish and make operational the Commission of Inquiry, and any additional transitional justice mechanism required, to address human rights violations before and after 2012", - "values": [ - "Justice" - ] - }, - { - "text": "Bring the juvenile criminal justice in line with international standards", - "values": [ - "Justice" - ] - }, - { - "text": "Consider issuing a standing invitation to all United Nations human rights special procedures ", - "values": [ - "Special procedures" - ] - }, - { - "text": "Address the issue of hate crime and racist and xenophobic discourse", - "values": [ - "Racial discrimination" - ] - }, - { - "text": "Provide all unaccompanied children with appropriate legal guardians, as required by Bulgarian law and ensure their basic needs are met", - "values": [ - "Rights of the Child" - ] - }, - { - "text": "Adopt quick and effective measures, as well as necessary legislation, in order to explicitly prohibit, prevent, punish and abolish discrimination on any grounds, including on the basis of HIV/AIDS status, as previously recommended", - "values": [ - "HIV - Aids", - "UPR process" - ] - }, - { - "text": "Investigate allegations of international humanitarian law and human rights violations by armed and security forces in a prompt, transparent and impartial manner and ensure that perpetrators of violations are brought to justice ", - "values": [ - "Human rights violations by state agents", - "International humanitarian law" - ] - }, - { - "text": "Adopt all necessary measures to address the concerns of the Committee on Economic, Social and Cultural Rights about the extent of corruption in Ukraine and its adverse impact on the enjoyment of all human rights", - "values": [ - "Corruption", - "Treaty bodies" - ] - }, - { - "text": "Grant access to detainees to ICRC, according to the usual terms of the Committee, as well as to international monitors.", - "values": [ - "Detention" - ] - }, - { - "text": "Introduce a definition of torture into its criminal code that is in line with Article 1 of the Convention against Torture and other Cruel, Inhuman or Degrading Treatment or Punishment, establish an effective mechanism to investigate credible allegations of torture, ensuring that perpetrators are held to account, and put in place the necessary arrangement to ratify the Optional Protocol to the Convention against Torture and other Cruel, Inhuman or Degrading Treatment or Punishment ", - "values": [ - "Detention", - "International instruments", - "Torture and other CID treatment" - ] - }, - { - "text": "Take the necessary measures to ensure the primacy of civil and political authority ", - "values": [ - "Other" - ] - }, - { - "text": "Ratify and implement the Optional Protocol to the Convention on the Rights of the Child on the involvement of children in armed conflict", - "values": [ - "International humanitarian law", - "International instruments", - "Rights of the Child" - ] - }, - { - "text": "Pass the draft domestic violence legislation before Parliament to criminalise domestic violence, better protect victims and ensure perpetrators are prosecuted", - "values": [ - "Rights of the Child", - "Women's rights" - ] - }, - { - "text": "Design and implement public policies and programmes to address violence against women, in particular measures against the practice of FGM and actions of protection and reparation for women victims", - "values": [ - "Rights of the Child", - "Torture and other CID treatment", - "Women's rights" - ] - }, - { - "text": "Continue its role in promoting dialogue between different religions and civilizations, based on the principle of peaceful coexistence and a culture of moderation and tolerance ", - "values": [ - "Other" - ] - }, - { - "text": "Establish an independent national institution in compliance with the Paris Principles", - "values": [ - "National Human Rights Institution" - ] - }, - { - "text": "Grant Palestinian refugees the right to own land", - "values": [ - "Asylum-seekers - refugees", - "Right to land" - ] - }, - { - "text": "Continue the actions taken to combat human trafficking, particularly for forced prostitution, begging and underpaid work", - "values": [ - "Labour", - "Trafficking" - ] - }, - { - "text": "Continue to further strengthen the rule of law to provide a safe and stable living environment for its people", - "values": [ - "Justice", - "Public security" - ] - }, - { - "text": "Continue its ongoing efforts to protect the rights of persons with disabilities through relevant laws and regulations", - "values": [ - "Disabilities" - ] - }, - { - "text": "Establish a national human rights institution accredited by the International Coordinating Committee of National Institutions for the promotion and protection of human rights", - "values": [ - "National Human Rights Institution" - ] - }, - { - "text": "Implement ECRI's recommendation to continue to monitor hate crimes and to work with the community to increase understanding of the impact of such offences, and to pursue efforts to improve the police gathering of evidence of racist motivations ", - "values": [ - "Racial discrimination" - ] - }, - { - "text": "Further mainstream human rights throughout its administration, both at national and provincial levels, to ensure that legal reforms result in improved human rights protection, especially for women and lesbian, gay, bisexual, transgender and intersex persons", - "values": [ - "Sexual Orientation and Gender Identity", - "Women's rights" - ] - }, - { - "text": "Provide improved training for officials regarding human rights, including racial discrimination and xenophobia issues.", - "values": [ - "Human rights education and training", - "Racial discrimination" - ] - }, - { - "text": "Continue and strengthen the ongoing efforts aimed at increasing the accessibility and quality of health services and education for all its citizens", - "values": [ - "Right to education", - "Right to health" - ] - }, - { - "text": "Ratify the OP-CAT as recommended previously in 2009 and take policy measures to prevent torture and illtreatment ", - "values": [ - "Detention", - "International instruments", - "Torture and other CID treatment", - "UPR process" - ] - }, - { - "text": "Harmonize domestic legislation in order that statements obtained under torture are not used as evidence in legal proceedings", - "values": [ - "Torture and other CID treatment" - ] - }, - { - "text": "Decriminalize defamation and misinformation and remove all undue restrictions on freedom of expression from the Penal Code, the Law on Publications and the newly adopted Internet law in conformity with the country's international human rights obligations", - "values": [ - "Freedom of opinion and expression", - "International instruments" - ] - }, - { - "text": "Review its birth registration system to safeguard the human rights of unwed mothers and children by (i) ensuring immediate birth registration is available to all children regardless of the parents legal status, (ii) ensuring that the birth registration accurately indicates the biological parent(s) of the child, and (iii) taking steps to prevent birth registration of children by third parties, such as adoptive parents, that could result in the occurrence of de facto adoptions in the absence of proper judicial oversight, which could also put children at risk of being trafficked", - "values": [ - "Rights of the Child", - "Statelessness and the right to nationality" - ] - }, - { - "text": "Adopt specific measures to protect boys, girls and adolescents from all violence against them, to eradicate child labour, to combat the exploitation of boys, girls and adolescents and to prohibit all forms of corporal punishment", - "values": [ - "Labour", - "Rights of the Child", - "Torture and other CID treatment" - ] - }, - { - "text": "Ensure that its climate change-related policies are informed by its human rights commitments and obligations", - "values": [ - "Environment" - ] - }, - { - "text": "Continue promoting and encouraging locally-based and member-driven civil societies in the country ", - "values": [ - "Civil society" - ] - }, - { - "text": "Ensure for every citizen the exercise of his or her right to freedom of expression ", - "values": [ - "Freedom of opinion and expression" - ] - }, - { - "text": "Address prison overcrowding by giving preference to alternatives to imprisonment when feasible in light of the United Nations Standard Minimum Rules for Non-Custodial Measures", - "values": [ - "Detention" - ] - }, - { - "text": "Strengthen measures to combat impunity within the security forces and bring all perpetrators to account", - "values": [ - "Human rights violations by state agents", - "Impunity" - ] - }, - { - "text": "Ensure in practice regular access to all places of detention, including police stations", - "values": [ - "Detention" - ] - }, - { - "text": "Devote more efforts to reduce social exclusion and better integrate its growing immigrant population into all aspects of society ", - "values": [ - "Migrants" - ] - }, - { - "text": "Seek to improve health outcomes for children, including by improving immunization rates and ensuring that development assistance funding reaches children in the outer islands ", - "values": [ - "Right to health", - "Rights of the Child" - ] - }, - { - "text": "Undertake a deeper dialogue with representatives of the Sami Parliament and increase efforts to give additional responsibilities to this Parliament to strengthen the self-determination of the Sami people", - "values": [ - "Indigenous peoples" - ] - }, - { - "text": "Meet the aspirations of groups that are the victim of discrimination ", - "values": [ - "Other" - ] - }, - { - "text": "Adopt laws to increase the age of criminal responsibility", - "values": [ - "Justice", - "Rights of the Child" - ] - }, - { - "text": "Take concrete measures to protect the rights of foreign workers ", - "values": [ - "Labour", - "Migrants" - ] - }, - { - "text": "Strengthen and continue sharing its experience and the promotion of the role of gender in the national leadership", - "values": [ - "Women's rights" - ] - }, - { - "text": "Conduct mandatory human rights training for law enforcement agencies, including training on hate crimes", - "values": [ - "Human rights education and training", - "Racial discrimination" - ] - }, - { - "text": "Make improvements to the security and justice sectors, including in areas of law, doctrine, training and equipment, that are necessary to protect demonstrators and consistent with international human rights obligations ", - "values": [ - "Freedom of association and peaceful assembly", - "International instruments" - ] - }, - { - "text": "Undertake efforts to enforce the prohibitions on child labour, especially in its worst forms ", - "values": [ - "Labour", - "Rights of the Child" - ] - }, - { - "text": "Continue the adoption of special measures aimed at improving the quality of life of children with disabilities", - "values": [ - "Disabilities", - "Rights of the Child" - ] - }, - { - "text": "Consider ratifying the Optional Protocol to the Convention against Torture and Other Cruel, Inhuman or Degrading Treatment or Punishment ", - "values": [ - "Detention", - "International instruments", - "Torture and other CID treatment" - ] - }, - { - "text": "Agree that the visit requested in 2007 by the Special Rapporteur on violence against women be carried out, and use the opportunity to organize transparent consultations with all stakeholders", - "values": [ - "Special procedures", - "Women's rights" - ] - }, - { - "text": "Continue developing the human rights legal framework ", - "values": [ - "General" - ] - }, - { - "text": "Prevent the excessive use of force by the police and investigate all complaints thoroughly", - "values": [ - "Human rights violations by state agents" - ] - }, - { - "text": "Commute all existing death sentences and re-introduce a moratorium on executions with a view to the abolition of the death penalty.", - "values": [ - "Death penalty" - ] - }, - { - "text": "Redouble its efforts in strengthening its educational system including accelerating the implementation of all the recommendations deriving from its National Forum on Education held in 2008 ", - "values": [ - "Right to education" - ] - }, - { - "text": "Intensify its efforts to humanize its penitentiary system ", - "values": [ - "Detention" - ] - }, - { - "text": "Strengthen the independence of the Human Rights Commission of Maldives and work with it to improve the human rights education of the judiciary and the public ", - "values": [ - "Human rights education and training", - "National Human Rights Institution" - ] - }, - { - "text": "Uphold the independence of the judiciary, including by maintaining the procedures of nominations and promotions of judges by decisions of the judiciary in accordance with the Polish Constitution and international standards", - "values": [ - "Justice" - ] - }, - { - "text": "Step up cooperation with treaty bodies", - "values": [ - "Treaty bodies" - ] - }, - { - "text": "Repeal the National Security Service Act, 2014, or reform it in order to comply with international, regional and national human rights law standards", - "values": [ - "International instruments", - "Public security" - ] - }, - { - "text": "Continue strengthening programmes for the integration of national minorities, including the Roma, in order to ensure their economic social and cultural rights", - "values": [ - "ESC rights - general", - "Human rights education and training", - "Minorities" - ] - }, - { - "text": "Ensure that the constitutional amendment prohibiting speech that would violate the dignity of the Hungarian nation cannot be used to silence criticism and limit freedom of expression as guaranteed under the International Covenant on Civil and Political Rights ", - "values": [ - "CP rights - general", - "Freedom of opinion and expression", - "International instruments" - ] - }, - { - "text": "Ratify the International Convention on the Protection of the Rights of all Migrant Workers and members of their families", - "values": [ - "International instruments", - "Labour", - "Migrants" - ] - }, - { - "text": "Finalize the establishment procedure for the national human rights institution according to the Paris Principles", - "values": [ - "National Human Rights Institution" - ] - }, - { - "text": "Sign and ratify CEDAW and its Optional Protocol, CED, the Convention on the Rights of Persons with Disabilities (CRPD) and its Optional Protocol, OP-CAT, the Optional Protocol to the CRC on the sale of children, and ratify CRC and its Optional Protocol on the involvement of children in armed conflict and OP-ICESCR ", - "values": [ - "International instruments" - ] - }, - { - "text": "Redraft the Equal Opportunity Plan for persons with disabilities to bring it into line with the General Law on Person with Disability", - "values": [ - "Disabilities" - ] - }, - { - "text": "Consider a moratorium on death penalty with a view to abolishing it in the future", - "values": [ - "Death penalty" - ] - }, - { - "text": "Consider establishing, at the earliest, a national human rights institution that is compliant with the Paris Principles", - "values": [ - "National Human Rights Institution" - ] - }, - { - "text": "Increase efforts to provide care to trafficking victims and end the practice of jailing children found in prostitution and increase efforts to raise awareness among vulnerable populations of the danger of trafficking.", - "values": [ - "Rights of the Child", - "Trafficking" - ] - }, - { - "text": "Continue working for the promotion of international solidarity and eradication of poverty.", - "values": [ - "Poverty" - ] - }, - { - "text": "Combat sexual violence and exploitation, particularly through the implementation of procedures and policies to prevent such offences, facilitate their reporting and provide care to child victims", - "values": [ - "Rights of the Child" - ] - }, - { - "text": "Continue to implement measures to enhance the protection of women and girls against violence", - "values": [ - "Rights of the Child", - "Women's rights" - ] - }, - { - "text": "Take further concrete measures to strengthen relevant legislation to combat discrimination.", - "values": [ - "Other" - ] - }, - { - "text": "End violence and discrimination against migrants", - "values": [ - "Migrants" - ] - }, - { - "text": "Provide full respect of minority rights guaranteed by positive legislation, including the right to use minority languages and scripts, specifically the Cyrillic script", - "values": [ - "ESC rights - general", - "Minorities" - ] - }, - { - "text": "Continue implementing educational policies in the area of health and education ", - "values": [ - "Right to education", - "Right to health" - ] - }, - { - "text": "Ensure that indigenous peoples are fully involved in the process of drafting legislative or administrative measures that could affect them, and that projects affecting them would be subjected to a process of prior consultation", - "values": [ - "Indigenous peoples" - ] - }, - { - "text": "Complete the process of drafting a bill on the rights of IDPs having consulted all relevant stakeholders.", - "values": [ - "Internally displaced persons" - ] - }, - { - "text": "Implement the National Strategy for the Social Inclusion of Roma community in order to achieve the objectives provided for their social community", - "values": [ - "Minorities" - ] - }, - { - "text": "Take all possible measures to implement the recommendations of the UPR process.", - "values": [ - "UPR process" - ] - }, - { - "text": "Adopt specific legislation prohibiting discrimination against women on the basis of gender or marital status ", - "values": [ - "Women's rights" - ] - }, - { - "text": "Ratify the Optional Protocols to the Convention on the Elimination of All Forms of Discrimination against Women, the Convention against Torture and Other Cruel, Inhuman or Degrading Treatment or Punishment and the Convention on the Rights of Persons with Disabilities, as well as the two Optional Protocols to the Convention on the Rights of the Child", - "values": [ - "Disabilities", - "International instruments", - "Rights of the Child", - "Torture and other CID treatment", - "Women's rights" - ] - }, - { - "text": "Further intensify its efforts to promote gender equality and to combat gender-based violence, including the rapes of minors and the most frequently reported cases of sexual and gender-based violence", - "values": [ - "Rights of the Child", - "Women's rights" - ] - }, - { - "text": "Comply with the principles of ICRMW. ", - "values": [ - "International instruments", - "Labour", - "Migrants" - ] - }, - { - "text": "Become a party to the ICCPR, the ICESCR, the ICERD and the CAT, as well as the Rome Statute of the ICC ", - "values": [ - "CP rights - general", - "ESC rights - general", - "International instruments", - "Justice", - "Racial discrimination", - "Torture and other CID treatment" - ] - }, - { - "text": "Continue to take measures to ensure freedom of the media and press freedom", - "values": [ - "Freedom of the press" - ] - }, - { - "text": "Ensure equal access to education for all vulnerable people, including women, children and persons with disabilities", - "values": [ - "Disabilities", - "Right to education", - "Rights of the Child", - "Women's rights" - ] - }, - { - "text": "Continue its programme of prison modernization, ensuring thorough staff training and investigations of alleged staff misconduct ", - "values": [ - "Detention", - "Human rights education and training", - "Human rights violations by state agents" - ] - }, - { - "text": "Consider ratifying the Inter-American Convention on Human Rights", - "values": [ - "International instruments" - ] - }, - { - "text": "Consider taking further steps towards the ratification of international human rights instruments that it is not yet a party to", - "values": [ - "International instruments" - ] - }, - { - "text": "Further develop strategies to improve health services for all its citizens, especially in relation to combating maternal mortality ", - "values": [ - "Right to health", - "Women's rights" - ] - }, - { - "text": "Improve the space for free operation of independent media, including state media, reinforce monitoring and sanctioning of abuses of media legislation and create an enabling working environment for journalists", - "values": [ - "Freedom of the press" - ] - }, - { - "text": "Ensure an inclusive education system, in order to allow all children to attend classes, in particular pregnant girls", - "values": [ - "Right to education", - "Rights of the Child", - "Women's rights" - ] - }, - { - "text": "As a way to strengthen Article 69 of the 2010 Child Act, remove from national legislation all forms of corporal punishment and abolish corporal punishment in the penal system", - "values": [ - "Rights of the Child", - "Torture and other CID treatment" - ] - }, - { - "text": "Intensify its efforts to support the rights of persons with disabilities to social integration and self-reliance", - "values": [ - "Disabilities" - ] - }, - { - "text": "Conduct an investigation into the facts of the recent incidents and prevent impunity for abuses committed ", - "values": [ - "Impunity" - ] - }, - { - "text": "Stop massive surveillance activities both inside and outside its territory to avoid violating the right to privacy of its citizens and those of other countries", - "values": [ - "Privacy" - ] - }, - { - "text": "Further improve the birth registration system so as to reach universal birth registration for children in rural areas and asylum-seeking and refugee children", - "values": [ - "Asylum-seekers - refugees", - "Rights of the Child", - "Statelessness and the right to nationality" - ] - }, - { - "text": "The Maldives notes the challenges and limitations faced, as a small island developing state and in fulfilling its reporting obligations under international conventions, due to lack of expertise, human resources, among other issues. However, with the limited human resources the Maldives is committed in submitting its initial report under the CAT.", - "values": [ - "International instruments", - "Torture and other CID treatment" - ] - }, - { - "text": "Provide appropriate assistance and rehabilitation to the victims of terrorism according to relevant national laws and within the available resources", - "values": [ - "Public security" - ] - }, - { - "text": "Continue to cooperate with the United Nations and other international organizations to strengthen human rights in Nepal ", - "values": [ - "Other" - ] - }, - { - "text": "Further strengthen its measures to combat all forms of trafficking in persons and protect and rehabilitate its victims", - "values": [ - "Trafficking" - ] - }, - { - "text": "Ensure that administrative detention is carried out in accordance with international human rights standards", - "values": [ - "Detention", - "International instruments" - ] - }, - { - "text": "Take all the necessary measures to end the escalation of violence and immediately cease armed hostilities", - "values": [ - "Other" - ] - }, - { - "text": "Revise the proposed amendments to the Danish Aliens Act with respect to unaccompanied children seeking asylum ", - "values": [ - "Asylum-seekers - refugees", - "Rights of the Child" - ] - }, - { - "text": "Continue in its efforts in protecting general freedoms and basic rights in all areas that the Constitution emphasised in harmony with the principles of human rights", - "values": [ - "General" - ] - }, - { - "text": "Follow up the CERD and other human rights bodies and mechanisms' relevant recommendations towards enhancing de jure and de facto equal protection of indigenous peoples, including the Maya, Xinca and Garifuna peoples.", - "values": [ - "Indigenous peoples", - "Treaty bodies" - ] - }, - { - "text": "Continue efforts towards ratifying the CPED and accept the competence of its Committee ", - "values": [ - "Enforced disappearances", - "International instruments", - "Treaty bodies" - ] - }, - { - "text": "Apply a new moratorium against the death penalty with a view to its definitive abolition", - "values": [ - "Death penalty" - ] - }, - { - "text": "With the assistance from UNICEF and other relevant United Nations agencies continue to improve access to education, including skill training programmes for all", - "values": [ - "Right to education", - "Technical assistance and cooperation" - ] - }, - { - "text": "Revise the press law to comply with international standards concerning the media freedoms ", - "values": [ - "Freedom of the press" - ] - }, - { - "text": "Further strengthen its cooperation with the special procedures", - "values": [ - "Special procedures" - ] - }, - { - "text": "Continue its policy to establish an environment for constructive dialogue and trust between the different religions in the country", - "values": [ - "Freedom of religion and belief" - ] - }, - { - "text": "Amend the Penal Code, particularly Sections 365 and 365A, to decriminalize consensual same-sex conduct as well as displays of affection", - "values": [ - "Sexual Orientation and Gender Identity" - ] - }, - { - "text": "Intensify efforts to eliminate discrimination against indigenous children, Afro-descendant children, migrant children and children with disabilities ", - "values": [ - "Disabilities", - "Indigenous peoples", - "Migrants", - "Minorities", - "Racial discrimination", - "Rights of the Child" - ] - }, - { - "text": "Establish mechanisms ensuring that street children are provided with clothing, housing, health and educational services ", - "values": [ - "Rights of the Child" - ] - }, - { - "text": "Study the possibility of becoming party to the following international instruments: the Convention on the Rights of Persons with Disabilities, the Optional Protocol to the Convention on the Rights of Persons with Disabilities ", - "values": [ - "Disabilities", - "International instruments" - ] - }, - { - "text": "Establish an accessibility strategy for persons with disabilities through a national plan", - "values": [ - "Disabilities" - ] - }, - { - "text": "Continue its efforts to provide free health care for children and combat child malnutrition by facilitating access to food", - "values": [ - "Right to food", - "Right to health", - "Rights of the Child" - ] - }, - { - "text": "Seek the necessary financial and material support from the international community to fulfil its humanitarian responsibilities.", - "values": [ - "Technical assistance and cooperation" - ] - }, - { - "text": "Continue the process of ratification of international human rights instruments, in particular the Second Optional Protocol to the International Covenant on Civil and Political Rights, aiming at the abolition of the death penalty and, as a first step, establish a moratorium on executions", - "values": [ - "Death penalty", - "International instruments" - ] - }, - { - "text": "Review relevant legal provisions and practices with a view to ensuring strict compliance with the principle of non-refoulement", - "values": [ - "Asylum-seekers - refugees" - ] - }, - { - "text": "Reinforce its efforts to ensure the thorough investigation and prosecution of crimes of gender-based and domestic violence and guarantee access to justice for victims", - "values": [ - "Impunity", - "Rights of the Child", - "Women's rights" - ] - }, - { - "text": "Take the necessary measures to remedy the low participation of women in public and political life", - "values": [ - "Women's rights" - ] - }, - { - "text": "Continue taking the necessary measures to protect vulnerable groups, including women, children and any other minority, whose rights could be violated ", - "values": [ - "Minorities", - "Rights of the Child", - "Women's rights" - ] - }, - { - "text": "Enact draft law No. 3590 related to the commission on the search for victims of enforced disappearance and other disappearances, which is currently under consideration by the Congress", - "values": [ - "Enforced disappearances" - ] - }, - { - "text": "Accelerate the implementation of the national plan to combat female genital mutilation so that this practice is eradicated and effectively criminalized, and additionally, strengthen education and awareness-raising programmes", - "values": [ - "Human rights education and training", - "Rights of the Child", - "Torture and other CID treatment", - "Women's rights" - ] - }, - { - "text": "Explicitly prohibit all corporal punishment of children, including in the home", - "values": [ - "Rights of the Child", - "Torture and other CID treatment" - ] - }, - { - "text": "Repeal all provisions in domestic legislation criminalizing consensual sexual activity between same sex adults and combat discrimination against LGBT through political, legislative and administrative measures ", - "values": [ - "Sexual Orientation and Gender Identity" - ] - }, - { - "text": "Consider ratifying the ILO Domestic Workers Convention, 2011 (No. 189)", - "values": [ - "International instruments", - "Labour" - ] - }, - { - "text": "Investigate all allegations of sexual exploitation and abuse by South African peacekeepers, prosecute and punish offenders, take measures within SA peacekeeping contingents to prevent future offences, and report the results back to UN peacekeeping authorities ", - "values": [ - "Other" - ] - }, - { - "text": "Amend its laws that discriminate against women, and decriminalize consensual same-sex conduct", - "values": [ - "Sexual Orientation and Gender Identity", - "Women's rights" - ] - }, - { - "text": "Review the definition of "genocide ideology" in the homonymous 2008 law so that it allows for diversity of opinion ", - "values": [ - "Justice" - ] - }, - { - "text": "Ensure the prosecution and punishment of perpetrators of human trafficking, and ensure necessary assistance and protection services to victims", - "values": [ - "Trafficking" - ] - }, - { - "text": "Continue to implement measures to fill whatever protection gaps regarding persons of African-descent", - "values": [ - "Minorities" - ] - }, - { - "text": "Abolish the death penalty and commute existing death penalties sentences to prison sentences", - "values": [ - "Death penalty" - ] - }, - { - "text": "Continue to undertake awareness-raising and prevention campaigns aimed at addressing gender-based violence and discrimination against women ", - "values": [ - "Women's rights" - ] - }, - { - "text": "Strengthen the existing mechanisms to prevent the excessive use of force and discriminatory practices in police work", - "values": [ - "Human rights violations by state agents" - ] - }, - { - "text": "Repeal or modify the blasphemy laws in order to bring them into line with the principles related to freedom of thought, conscience and religion and, in particular, with its obligations under the International Covenant on Civil and Political Rights", - "values": [ - "Freedom of opinion and expression", - "Freedom of religion and belief", - "International instruments" - ] - }, - { - "text": "Consider ratifying the Convention on the Prevention and Punishment of the Crime of Genocide", - "values": [ - "International instruments", - "Justice" - ] - }, - { - "text": "Continue its efforts to establish an educational system in conformity with international standards, especially, as recommended by the Committee of the Rights of the Child, through the inclusion of human rights education in the curricula.", - "values": [ - "Human rights education and training", - "Right to education", - "Treaty bodies" - ] - }, - { - "text": "Continue in its efforts with regard to the ratification of the Convention on the Rights of Persons with Disabilities and the Bill on the protection, autonomy and promotion of the rights and freedoms of persons with disabilities ", - "values": [ - "Disabilities", - "International instruments" - ] - }, - { - "text": "Take steps to protect people from acts of terrorism, through domestic legislation", - "values": [ - "Other" - ] - }, - { - "text": "Establish measures at the national and state level to remove obstacles in terms of access by the population to pain palliative medicines ", - "values": [ - "Right to health" - ] - }, - { - "text": "Put in place legislation that protects children from labour exploitation through a minimum working age, consistent with its international legal obligations", - "values": [ - "Labour", - "Rights of the Child" - ] - }, - { - "text": "Ensure a sustained human rights training for law enforcement officers in order to curb killings, brutality and the excessive use of force targeting racial and ethnic minorities, particularly African Americans", - "values": [ - "Extrajudicial executions", - "Human rights education and training", - "Human rights violations by state agents", - "Minorities", - "Racial discrimination" - ] - }, - { - "text": "Assign the necessary resources to complete the implementation of the Law on the Prevention of ill-treatment in the heart of the family and of the child, particularly in the field of the sensitizing and educating people on countering violence against children", - "values": [ - "Rights of the Child", - "Torture and other CID treatment" - ] - }, - { - "text": "Continue efforts to ensure the voluntary return of refugees while guaranteeing their economic and social integration, and take advantage of the financial and technical assistance available to accompany its efforts ", - "values": [ - "Asylum-seekers - refugees" - ] - }, - { - "text": "Bring its national legislation into conformity with its commitment to equality and non-discrimination, by repealing the provision of Palau's Penal Code which continues to criminalize sexual relations between consenting adults of the same sex ", - "values": [ - "Sexual Orientation and Gender Identity" - ] - }, - { - "text": "That the President of the Gambia repeal provisions in the Criminal Code which criminalize consensual same-sex sexual conduct", - "values": [ - "Sexual Orientation and Gender Identity" - ] - }, - { - "text": "Continue to demonstrate its commitment to democratic rule, rule of law, and accountable governance by holding free, fair and peaceful elections in February 2015", - "values": [ - "Elections", - "Justice" - ] - }, - { - "text": "Abolish the death penalty as the final form of punishment and establish a moratorium on the use of the death penalty in accordance with General Assembly resolution 62-149", - "values": [ - "Death penalty" - ] - }, - { - "text": "Step up efforts in ratifying the International Convention on the Protection of the Rights of All Migrant Workers and Members of Their Families", - "values": [ - "International instruments", - "Labour", - "Migrants" - ] - }, - { - "text": "Continue strengthening the programme on primary education and ensure full school attendance by children deprived of education at the primary and secondary levels", - "values": [ - "Right to education", - "Rights of the Child" - ] - }, - { - "text": "Take all necessary measures to ensure the effective enforcement of Law L010/AN/2000, with a view to the eradication of FGM, and to undertake additional awareness raising measures about the risks and harm associated with this practice as well as its prohibition", - "values": [ - "Rights of the Child", - "Torture and other CID treatment", - "Women's rights" - ] - }, - { - "text": "Continue programmes and actions to promote and protect economic, social and cultural rights, in particular in the area of health, education and food", - "values": [ - "ESC rights - general", - "Right to education", - "Right to food", - "Right to health" - ] - }, - { - "text": "Allocate adequate human and material resources to the national human rights commission", - "values": [ - "National Human Rights Institution" - ] - }, - { - "text": "Follow-up the recommendations of the Committee on the Elimination of Discrimination against Women to resolve the issue of inequality between women and men, particularly in the area of employment, and to intensify its efforts to eliminate violence against women ", - "values": [ - "Treaty bodies", - "Women's rights" - ] - }, - { - "text": "Continue in its efforts to ensure full access to education enrolment to all and to remove any obstacles that minority communities may face, particularly in reference to equal access to education for women and girls", - "values": [ - "Minorities", - "Right to education", - "Rights of the Child", - "Women's rights" - ] - }, - { - "text": "Increase efforts to enhance the protection of the human rights of migrants and hold open consultations with civil society on the ICRMW", - "values": [ - "Civil society", - "International instruments", - "Labour", - "Migrants" - ] - }, - { - "text": "Make a concerted effort to tackle impunity nationwide", - "values": [ - "Impunity" - ] - }, - { - "text": "Take steps to continue to strengthen the operation of domestic human rights institutions, including the Human Rights Ministry, National Human Rights Commission and the Commission of the Status of Women", - "values": [ - "National Human Rights Institution", - "Women's rights" - ] - }, - { - "text": "Continue efforts in the field of health in the framework of the National Health and Social Welfare Policy and Plan 2011-2021", - "values": [ - "Right to health" - ] - }, - { - "text": "Limit the use of prolonged periods of pre-trial detention for nonnationals", - "values": [ - "Detention", - "Migrants" - ] - }, - { - "text": "Continue to undertake measures to support and protect the rights of persons with disabilities", - "values": [ - "Disabilities" - ] - }, - { - "text": "Abolish the death penalty under the military legislation ", - "values": [ - "Death penalty" - ] - }, - { - "text": "Effectively integrate the Rome Statute and the Convention for the Protection of All Persons from Enforced Disappearances in its domestic legislation ", - "values": [ - "Enforced disappearances", - "International instruments", - "Justice" - ] - }, - { - "text": "Continue in the cooperation with Special Procedures and the mechanisms, and consider issuing invitations to the special Rapporteurs ", - "values": [ - "Special procedures" - ] - }, - { - "text": "Reform its legislation with a view to establish the prohibition of all forms of corporal punishment of children, an indispensable component for the prevention and elimination of violence against children, as well as for the respect for children's rights, dignity and physical integrity", - "values": [ - "Rights of the Child", - "Torture and other CID treatment" - ] - }, - { - "text": "Take further steps to combat and prevent domestic violence and ensure that victims have effective access to complaints mechanisms ", - "values": [ - "Rights of the Child", - "Women's rights" - ] - }, - { - "text": "Implement the recommendations of the Committee on the Elimination of Racial Discrimination regarding migrants, refugees and asylum-seekers.", - "values": [ - "Asylum-seekers - refugees", - "Migrants", - "Treaty bodies" - ] - }, - { - "text": "Speed up consideration of the ratification of the Rome Statute of the ICC", - "values": [ - "International instruments", - "Justice" - ] - }, - { - "text": "Take measures to facilitate the treatment, education, aftercare and social reintegration of drug abusers, as an alternative to deprivation of liberty, and in penitentiary centres", - "values": [ - "Public security", - "Right to health" - ] - }, - { - "text": "Investigate and sanction the cases of attacks, threats, harassment or intimidation against journalists, lawyers and human rights defenders", - "values": [ - "Freedom of the press", - "Human rights defenders" - ] - }, - { - "text": "Continue addressing the challenges in reducing multi-dimensional poverty ", - "values": [ - "Poverty" - ] - }, - { - "text": "Continue to implement the National Human Rights Action Plan", - "values": [ - "General" - ] - }, - { - "text": "Pay greater attention to the construction of sanitation facilities and housing constructions in rural areas ", - "values": [ - "Right to housing", - "Right to water and sanitation" - ] - }, - { - "text": "Accede to the Optional Protocol to the Convention against Torture, and to establish an effective national preventive mechanism ", - "values": [ - "Detention", - "International instruments", - "Torture and other CID treatment" - ] - }, - { - "text": "In line with its standing invitation to special procedures, engage with and accept visits by special procedures", - "values": [ - "Special procedures" - ] - }, - { - "text": "Continue to combat gender violence and promote equal opportunity for women and girls", - "values": [ - "Rights of the Child", - "Women's rights" - ] - }, - { - "text": "Intensify measures to combat the manifestation of racism and anti-Semitism, including by police officers ", - "values": [ - "Human rights violations by state agents", - "Racial discrimination" - ] - }, - { - "text": "Take further steps to ensure that the indigenous peoples justice system is at all times compliant with due process and other guarantees established in the International Covenant on Civil and Political Rights", - "values": [ - "Indigenous peoples", - "International instruments" - ] - }, - { - "text": "Guarantee the right to manifest one's religion or belief", - "values": [ - "Freedom of religion and belief" - ] - }, - { - "text": "Take appropriate steps in order to prevent, identify and address situations of risk of suicide in persons with disabilities", - "values": [ - "Disabilities" - ] - }, - { - "text": "Reassess media legislation provisions and guarantee freedom of expression ", - "values": [ - "Freedom of opinion and expression", - "Freedom of the press" - ] - }, - { - "text": "Develop more legislative guarantees in order to fully comply with the provisions of the Framework Convention for the Protection of National Minorities and the European Charter for Regional or Minority Languages.", - "values": [ - "Minorities" - ] - }, - { - "text": "Finalize its plan to elaborate a national law on assistance and protection of IDPs.", - "values": [ - "Internally displaced persons" - ] - }, - { - "text": "Ratify the Optional Protocol to the International Covenant on Economic, Social and Cultural Rights and accept its investigation and communication procedure", - "values": [ - "ESC rights - general", - "International instruments" - ] - }, - { - "text": "Continue its efforts to strengthen gender equality, especially in education, while ensuring the enrollment and retention of girls in school", - "values": [ - "Right to education", - "Rights of the Child", - "Women's rights" - ] - }, - { - "text": "Address the rights of those individuals detained while awaiting trials, in particular foreigners, whose cases often experience prolonged delays", - "values": [ - "Detention", - "Justice", - "Migrants" - ] - }, - { - "text": "Take all necessary measures to effectively fight against torture and ill-treatment, particularly in the police and penitentiary domains", - "values": [ - "Detention", - "Human rights violations by state agents", - "Torture and other CID treatment" - ] - }, - { - "text": "Continue with the policy to reduce violence against children and young people", - "values": [ - "Rights of the Child" - ] - }, - { - "text": "Enhance the transparency of its public decision-making and the use of public resources for public purposes ", - "values": [ - "Other" - ] - }, - { - "text": "Consider establishing a moratorium on executions with a view to abolishing the death penalty, in accordance with General Assembly resolution 62-149.", - "values": [ - "Death penalty" - ] - }, - { - "text": "Redouble its efforts under the project to reform the educational system, including by redressing the gap in school attendance between males and females working to effectively guarantee the rights of women and girls in the field of education by addressing societal and cultural constraints.", - "values": [ - "Right to education", - "Rights of the Child", - "Women's rights" - ] - }, - { - "text": "Ensure that the law enforcement, security and judicial authorities have the necessary knowledge and skills to address hate crimes against immigrants, asylum seekers and refugees by providing mandatory training and guidelines", - "values": [ - "Asylum-seekers - refugees", - "Human rights education and training", - "Migrants", - "Racial discrimination" - ] - }, - { - "text": "Issue an invitation to the Special Rapporteur on Torture to visit Kyrgyzstan in 2010 ", - "values": [ - "Special procedures", - "Torture and other CID treatment" - ] - }, - { - "text": "Fully cooperate with the International Criminal Court and protect witnesses", - "values": [ - "Justice" - ] - }, - { - "text": "Introduce legal provisions effectively guaranteeing the safety of human rights defenders", - "values": [ - "Human rights defenders" - ] - }, - { - "text": "Consider ratifying the Second Optional Protocol to the International Covenant on Civil and Political Rights aiming at the abolition of death penalty", - "values": [ - "Death penalty", - "International instruments" - ] - }, - { - "text": "Continue to work on effective measures to ensure legal and judicial advances in the fight against hate crime, including hate crime related to racial discrimination or sexual orientation and gender identity", - "values": [ - "Racial discrimination", - "Sexual Orientation and Gender Identity" - ] - }, - { - "text": "Intensify efforts to implement the country's international commitments, as well as the corresponding national strategies and plans of action regarding children's rights", - "values": [ - "Rights of the Child" - ] - }, - { - "text": "Continue efforts to promote and protect the rights of vulnerable groups, particularly women and children ", - "values": [ - "Rights of the Child", - "Women's rights" - ] - }, - { - "text": "Accelerate efforts to establish an independent national human rights institution which is in conformity with the Paris Principles", - "values": [ - "National Human Rights Institution" - ] - }, - { - "text": "Enhance its engagement with the ASEAN Intergovernmental Commission on Human Rights ", - "values": [ - "Other" - ] - }, - { - "text": "Continue with its plans to provide health care, especially for the elimination of polio, and reduce the death rate", - "values": [ - "Right to health" - ] - }, - { - "text": "Strengthen its efforts to promote the independence of the judiciary", - "values": [ - "Justice" - ] - }, - { - "text": "Engage further in the common fight for the prohibition of torture, ensuring accountability and victims' compensation and enable the Special Rapporteur on torture and other cruel, inhuman or degrading treatment or punishment to visit every part of the detention facility at Guantanamo Bay and to conduct unmonitored interviews", - "values": [ - "Detention", - "Special procedures", - "Torture and other CID treatment" - ] - }, - { - "text": "Strengthen the deployment of specific measures to foster the rights of vulnerable social groups, including children, adolescents, women, refugees and internally displaced people, as well as persons with disabilities", - "values": [ - "Asylum-seekers - refugees", - "Disabilities", - "Internally displaced persons", - "Rights of the Child", - "Women's rights" - ] - }, - { - "text": "Continue efforts towards gender equality, including ensuring effective review and control by domestic civil courts of inheritance and family matters determined by religious bodies for Muslim minority women in Thrace", - "values": [ - "Freedom of religion and belief", - "Minorities", - "Women's rights" - ] - }, - { - "text": "Establish, as soon as possible, a moratorium on the execution of the death penalty with a view to its abolition in the future ", - "values": [ - "Death penalty" - ] - }, - { - "text": "Continue to adopt policies and legislations to guarantee the equality for women in all spheres and that they benefit from judicial remedies against any discriminatory practice or violence", - "values": [ - "Women's rights" - ] - }, - { - "text": "Continue its efforts to establish a national human rights institution, as this was an accepted recommendation from the first review", - "values": [ - "National Human Rights Institution", - "UPR process" - ] - }, - { - "text": "Repeal articles 12 and 15 of the Sexual Offence Act of 1995 that criminalize sexual relations between consenting individuals of the same sex, which are contradictory to the commitment of non-discrimination", - "values": [ - "Sexual Orientation and Gender Identity" - ] - }, - { - "text": "Continue to engage with the Office of the High Commissioner for Human Rights and other UN agencies to enhance the promotion and protection of human rights within the country ", - "values": [ - "Technical assistance and cooperation" - ] - }, - { - "text": "Ensure effective implementation of enacted legislation affecting women's human rights, and expedite the enactment of the Marriage and Divorce Bill, the Sexual Offences Bill and a witness protection law", - "values": [ - "Women's rights" - ] - }, - { - "text": "Review and repeal local by-laws that may limit rights guaranteed by the Constitution, especially as they relate to the rights of women, sexual minorities and religious minorities", - "values": [ - "Freedom of religion and belief", - "Sexual Orientation and Gender Identity", - "Women's rights" - ] - }, - { - "text": "Give more budgetary allocation to the training of police officers and the judiciary to ensure that women have equal and substantive access to justice under the Family Protection Act", - "values": [ - "Women's rights" - ] - }, - { - "text": "Take further effective measures to promote and protect the rights and wellbeing of children, protect children from violence, including ensuring their access to health care and education", - "values": [ - "Right to education", - "Right to health", - "Rights of the Child" - ] - }, - { - "text": "Release all Arab prisoners and ensure that they are treated in accordance with international humanitarian law and international human rights law", - "values": [ - "Detention", - "International humanitarian law", - "International instruments" - ] - }, - { - "text": "Welcome the visit of the Special Rapporteur on the independence of judges and lawyers, in order to provide expertise and assistance in the process of maintaining an independent judiciary", - "values": [ - "Justice", - "Special procedures" - ] - }, - { - "text": "Follow the principle of applying limits on freedoms to those organizations and entities that are involved in spread of hate speech, make xenophobic or defamatory statements and incite discrimination and violence ", - "values": [ - "Racial discrimination" - ] - }, - { - "text": "Punish the practice of female genital mutilation and any harmful practices for physical and psychological health of girls and women", - "values": [ - "Rights of the Child", - "Torture and other CID treatment", - "Women's rights" - ] - }, - { - "text": "Become a party to CAT and accommodate visits by the Special Rapporteur", - "values": [ - "International instruments", - "Special procedures", - "Torture and other CID treatment" - ] - }, - { - "text": "Safeguard the activities of human rights defenders", - "values": [ - "Human rights defenders" - ] - }, - { - "text": "Adopt legislation that is conducive to the development and safeguarding of today\u2019s strong and vibrant NGO community in Ukraine", - "values": [ - "Civil society" - ] - }, - { - "text": "Ratify the ICPPED and modify the legislation accordingly, conduct independent and in-depth investigations on the cases of disappearances, in order to prosecute the perpetrators", - "values": [ - "Enforced disappearances", - "International instruments" - ] - }, - { - "text": "Continue with its efforts to address the widening inequality and unbalanced distribution of income among people", - "values": [ - "Development" - ] - }, - { - "text": "Mauritius then stated that it is committed to the protection of children from any form of abuse and exploitation and that a National Child Protection Strategy has been initiated in this regard.", - "values": [ - "Rights of the Child" - ] - }, - { - "text": "Increase the number of schools providing education in minority languages, especially in the regions with concentrated minority populations", - "values": [ - "Minorities", - "Right to education" - ] - }, - { - "text": "Prevent, investigate and punish cases of torture and other ill-treatment, such as extra-judicial executions and enforced disappearances to this end, establish a national mechanism for the prevention of torture and ill-treatment", - "values": [ - "Enforced disappearances", - "Extrajudicial executions", - "Torture and other CID treatment" - ] - }, - { - "text": "Continue to disseminate the culture of human rights", - "values": [ - "Human rights education and training" - ] - }, - { - "text": "Prepare as a matter of priority a transparent and well-administered system of rules for verifying candidates' eligibility, in close connection with the assessment of the disarmament process and the strengthening of the capacity of the Electoral Complaints Committee. ", - "values": [ - "Elections" - ] - }, - { - "text": "Lesotho will continue to reduce environmental degradation.", - "values": [ - "Environment" - ] - }, - { - "text": "Continue with its efforts to protect all children, protect the rights and interests of children and provide vulnerable children with better access to childhood services", - "values": [ - "Rights of the Child" - ] - }, - { - "text": "Establish a moratorium on the death penalty, in view of its definitive abolition", - "values": [ - "Death penalty" - ] - }, - { - "text": "Consider the possibility of re-establishing the Church of Saint Paul in Tarsus, currently functioning as a museum, as a place of worship ", - "values": [ - "Other" - ] - }, - { - "text": "Continue effective efforts to protect and promote cultural rights with a view to ensuring access of all Cubans to cultural values in all their manifestations", - "values": [ - "ESC rights - general" - ] - }, - { - "text": "Continue in its efforts to fulfil its commitments in the area of human rights and persevere in seeking technical assistance from the Office of the United Nations High Commissioner for Human Rights OHCHR for developing and drafting national reports for the treaty bodies to which it is a party ", - "values": [ - "Technical assistance and cooperation", - "Treaty bodies" - ] - }, - { - "text": "Continue to strengthen the response of its criminal justice system to violent crimes against women and girls, in particular measures to support capacity to investigate, prosecute and punish such crimes", - "values": [ - "Justice", - "Rights of the Child", - "Women's rights" - ] - }, - { - "text": "Further strengthen cooperation with the UN human rights mechanisms, particularly Special Procedures and try to respond in a timely manner to the questionnaires sent by the Special Procedures", - "values": [ - "Special procedures", - "Treaty bodies", - "UPR process" - ] - }, - { - "text": "Consider the formulation of a comprehensive national human rights plan of action", - "values": [ - "General" - ] - }, - { - "text": "Ensure greater participation of internally displaced persons in decision-making related to projects affecting them, particularly those concerning access to adequate housing", - "values": [ - "Internally displaced persons", - "Right to housing" - ] - }, - { - "text": "Set up a national human rights institution in line with the Paris Principles", - "values": [ - "National Human Rights Institution" - ] - }, - { - "text": "Enact legislation that also allows non-Muslims to acquire Maldivian citizenship ", - "values": [ - "Freedom of religion and belief", - "Statelessness and the right to nationality" - ] - }, - { - "text": "Further improve the social and economic situation of women, in particular in rural areas, so as to eliminate their vulnerability to traffickers", - "values": [ - "Trafficking", - "Women's rights" - ] - }, - { - "text": "Take the necessary steps to ratify CAT", - "values": [ - "International instruments", - "Torture and other CID treatment" - ] - }, - { - "text": "Share its experiences of, in particular, international volunteers, whether armed fighters or doctors, and tell through multiple media whether the internet or illustrated stories, of the experiences, values and the ethics of the Cuban struggle", - "values": [ - "Other" - ] - }, - { - "text": "Consider acceding to the Convention relating to the Status of Refugees ", - "values": [ - "Asylum-seekers - refugees", - "International instruments" - ] - }, - { - "text": "Amend or repeal article 230 of the Criminal Code to end criminalization of same-sex sexual relations", - "values": [ - "Sexual Orientation and Gender Identity" - ] - }, - { - "text": "Enhance cooperation with labour-sending countries to ensure foreign workers go through proper and legal channels to work in Singapore and continue efforts to protect the rights of all foreign workers from exploitation ", - "values": [ - "Labour", - "Migrants" - ] - }, - { - "text": "Implement in national legislation the prohibition and criminalization of all types of violence against women and children, specially indigenous women and children, in accordance with the commitments acquired in the corresponding Conventions", - "values": [ - "Indigenous peoples", - "International instruments", - "Rights of the Child", - "Women's rights" - ] - }, - { - "text": "Consider a large-scale transfer of land for civilian use in the northern and eastern provinces of the country", - "values": [ - "Right to land" - ] - }, - { - "text": "Strengthen prevention and effectiveness of investigation of cases of police violence thorough improved supervision and human rights training of law enforcement personnel, namely the military police, and ensure accountability for any acts of police violence", - "values": [ - "Human rights education and training", - "Human rights violations by state agents" - ] - }, - { - "text": "Ratify the OP- CRC-SC", - "values": [ - "International instruments", - "Rights of the Child" - ] - }, - { - "text": "Intensify its efforts to eliminate all forms of discrimination against women, inter alia, by advocating and promoting women's empowerment, and through capacity-building, gender-sensitivity training, and public awareness-raising activities ", - "values": [ - "Human rights education and training", - "Women's rights" - ] - }, - { - "text": "Intensify ongoing efforts to eradicate the illicit use of drugs and other psychotropic substances, especially among juveniles", - "values": [ - "Public security" - ] - }, - { - "text": "Review article 7 of the Labour Law and expand its coverage to include migrant workers", - "values": [ - "Labour", - "Migrants" - ] - }, - { - "text": "Accede to the Optional Protocol to the Convention against Torture and other Cruel, Inhuman or Degrading Treatment or Punishment", - "values": [ - "Detention", - "International instruments", - "Torture and other CID treatment" - ] - }, - { - "text": "Continue to prioritize policies aimed at enhancing the access of all children to education", - "values": [ - "Right to education", - "Rights of the Child" - ] - }, - { - "text": "Adopt a comprehensive national strategy against trafficking in persons", - "values": [ - "Trafficking" - ] - }, - { - "text": "Continue to expand the cooperation with the special procedures of the Human Rights Council", - "values": [ - "Special procedures" - ] - }, - { - "text": "Develop provisions of a training programme to raise the awareness of the judiciary to the racial dimension of crime and to ensure that judges take into account racist motivation as an aggravating circumstance when they sentence in criminal cases", - "values": [ - "Human rights education and training", - "Justice", - "Racial discrimination" - ] - }, - { - "text": "Expand programmes of education on religious tolerance in schools and monitor and protect the rights of religious minorities-promotion of the culture of religious tolerance should become the priority of the Federal, State and Local Governments", - "values": [ - "Freedom of religion and belief", - "Minorities" - ] - }, - { - "text": "Continue its efforts to make access to education easier for all, including by allocating adequate resources for education for the people ", - "values": [ - "Right to education" - ] - }, - { - "text": "Intensify measures to tackle racism and xenophobia ", - "values": [ - "Racial discrimination" - ] - }, - { - "text": "Take the necessary measures to combat discrimination based on sexual orientation and gender identity and to repeal legislation criminalizing consensual sexual relations between persons of the same sex, in accordance with the constitutional provision on the elimination of discrimination", - "values": [ - "Sexual Orientation and Gender Identity" - ] - }, - { - "text": "Ensure that the freedom of expression, press freedom and internet freedom will not result in racism, intolerance and hatred against minority groups ", - "values": [ - "Minorities", - "Racial discrimination" - ] - }, - { - "text": "Brief regularly the Council on the follow up of universal periodic review recommendations ", - "values": [ - "UPR process" - ] - }, - { - "text": "Step up efforts to fight racial prejudice and violence, xenophobia and intolerance", - "values": [ - "Racial discrimination" - ] - }, - { - "text": "Take measures to improve the situation of persons belonging to the Roma and other minorities", - "values": [ - "Minorities" - ] - }, - { - "text": "Put an end to the legal discrimination against lesbian, gay, bisexual, transgender and intersex persons and to the criminalization of homosexuality", - "values": [ - "Sexual Orientation and Gender Identity" - ] - }, - { - "text": "Continue its efforts to eradicate poverty and uplift the standards of living for all Malaysian people with more focus on the vulnerable and disadvantaged groups of people", - "values": [ - "Poverty" - ] - }, - { - "text": "Consider ratifying OP-CRC-AC and CRPD", - "values": [ - "Disabilities", - "International humanitarian law", - "International instruments", - "Rights of the Child" - ] - }, - { - "text": "Step up its efforts to encourage enterprises to take positive measures to narrow the gender pay gap, including regarding women\u2019s access to managerial positions", - "values": [ - "Women's rights" - ] - }, - { - "text": "Consider the elimination of cruel punishment, including juvenile execution and stoning", - "values": [ - "Death penalty", - "Rights of the Child", - "Torture and other CID treatment" - ] - }, - { - "text": "Take further steps to promote integration of asylum seekers, migrants and refugees and their participation in political, cultural and economic life, including by increasing their access to affordable health-care services and to the employment market", - "values": [ - "Asylum-seekers - refugees", - "Labour", - "Migrants", - "Right to health" - ] - }, - { - "text": "Strengthen human rights training and education in school programmes and training programmes for the security forces", - "values": [ - "Human rights education and training" - ] - }, - { - "text": "Ratify the Second Optional to the International Covenant on Civil and Political Rights, aiming at the abolition of the death penalty, the Optional Protocol to the Convention against Torture and Other Cruel, Inhuman or Degrading Treatment or Punishment, and the Optional Protocol to the International Covenant on Economic, Social and Cultural Rights", - "values": [ - "Death penalty", - "Detention", - "ESC rights - general", - "International instruments", - "Torture and other CID treatment" - ] - }, - { - "text": "Put in place safeguards to ensure that freedom of assembly is not adversely affected in the implementation of the Public Processions and Meetings Bill ", - "values": [ - "Freedom of association and peaceful assembly" - ] - }, - { - "text": "Review the budgets and social laws taking into account gender issues ", - "values": [ - "Women's rights" - ] - }, - { - "text": "Further work on the improvement of the penitentiary situation in the country ", - "values": [ - "Detention" - ] - }, - { - "text": "Review the imposition of the death penalty", - "values": [ - "Death penalty" - ] - }, - { - "text": "Adopt necessary measures to enhance the courts' competence and functioning as far as the administration of justice is concerned, including the training of the staff in courts in the area of human rights ", - "values": [ - "Human rights education and training", - "Justice" - ] - }, - { - "text": "Increase the measures undertaken to promote the right to education with the aim of ensuring a high level enrolment of children in schools", - "values": [ - "Right to education", - "Rights of the Child" - ] - }, - { - "text": "Continue to provide adequate funding to its anti-human trafficking programmes and free legal aid system", - "values": [ - "Justice", - "Trafficking" - ] - }, - { - "text": "Take the necessary measures to ensure that journalists, human rights defenders and activists of the civil society can freely practice their peaceful activities and without fear of administrative or other reprisals", - "values": [ - "Civil society", - "Freedom of association and peaceful assembly", - "Freedom of the press", - "Human rights defenders" - ] - }, - { - "text": "Continue to implement appropriate measures to promote further participation of women in various sectors of society and women's employment both within Government and in the private sector", - "values": [ - "Women's rights" - ] - }, - { - "text": "Allocate sufficient resources to specialized courts and tribunals with jurisdiction over femicide and other forms of violence against women, and move towards the full implementation of the Law against Femicide and Other Forms of Violence against Women", - "values": [ - "Women's rights" - ] - }, - { - "text": "Consider how best the specific needs of individuals belonging to minorities could be addressed in order to ensure their equal enjoyment of all human rights, as provided for in the Constitution.", - "values": [ - "Minorities" - ] - }, - { - "text": "Continue strengthening the policies in favour of the rights of peasants and other persons working in rural areas", - "values": [ - "Other" - ] - }, - { - "text": "Take the necessary steps to act in compliance with the verdict rendered in 2007 by the Inter-American Court of Human Rights in the Saramaka People case and to respect the right of indigenous people and Maroons to land ", - "values": [ - "Indigenous peoples", - "Right to land" - ] - }, - { - "text": "Continue to study how it could further improve the integration of migrants in its society, with a view to providing them with equal access to all basic social services and just conditions of work", - "values": [ - "Labour", - "Migrants" - ] - }, - { - "text": "Implement accepted UPR recommendations on the decriminalization of defamation, and repeal provisions of the Criminal Code on the defamation of public officials and of the Law on the Leader of the Nation, which introduced a new article into the Criminal Code prohibiting and punishing insults against the honour of the President", - "values": [ - "Freedom of opinion and expression", - "UPR process" - ] - }, - { - "text": "Request cooperation and technical assistance from the relevant UN bodies for the removal of land mines and the demarcation of border zones, as well as to improve the distribution of drinking water and the access to sanitation services", - "values": [ - "International humanitarian law", - "Right to water and sanitation" - ] - }, - { - "text": "Encourage racial, ethnic and religious tolerance, especially young people ", - "values": [ - "Freedom of religion and belief", - "Minorities", - "Racial discrimination" - ] - }, - { - "text": "Continue its efforts to narrow the gap in opportunities and life outcomes between indigenous and non-indigenous Australians ", - "values": [ - "Indigenous peoples" - ] - }, - { - "text": "While continuing its positive initiatives, invest more rigour in evaluating the outcomes of planned activities in many of these areas: prisons conditions, criminal justice system, juvenile justice system, violence and extrajudicial killings committed by state military police, torture, protection of human rights defenders, violence against women, indigenous communities, rural violence and land conflict, child and slave labour, impunity for those involved with human trafficking and corruption.", - "values": [ - "General" - ] - }, - { - "text": "Strengthen measures to combat the phenomena of xenophobia ", - "values": [ - "Racial discrimination" - ] - }, - { - "text": "Remove restrictive limitations on the establishment of political parties or membership therein, and cease the dissolution by law of opposition political societies", - "values": [ - "Freedom of association and peaceful assembly" - ] - }, - { - "text": "Make further progress in fulfilling its commitment to close the Guantanamo detention facility and abide by the ban on torture and inhumane treatment of all individuals in detention", - "values": [ - "Detention", - "Torture and other CID treatment" - ] - }, - { - "text": "Reinvigorate efforts to fulfil article VII of the Dayton Accords, guaranteeing refugees the right to return to their homes of origin", - "values": [ - "Asylum-seekers - refugees" - ] - }, - { - "text": "Provide human rights defenders, including defence attorneys and political figures detained as a result of their political activities, such as Burzurgmehr Yorov, Shuhrat Qudratov, and Ishoq Tabarov and his sons, with fair, open, and transparent trials, including the substantive protections and procedural guarantees in accordance with Tajikistan's international obligations ", - "values": [ - "Freedom of association and peaceful assembly", - "Human rights defenders", - "Justice" - ] - }, - { - "text": "Raise awareness on the impact of climate change ", - "values": [ - "Environment" - ] - }, - { - "text": "Protect the rights of people with disabilities ", - "values": [ - "Disabilities" - ] - }, - { - "text": "Consider ratifying the ICESCR and continue to strengthen institutions of democratic governance", - "values": [ - "ESC rights - general", - "International instruments" - ] - }, - { - "text": "Adopt measures to eliminate the economic, social and cultural barriers which exist between different ethnic and religious groups with the aim of facilitating coexistence between them", - "values": [ - "ESC rights - general", - "Freedom of religion and belief", - "Minorities" - ] - }, - { - "text": "Consider an early release of detainees who are of old age or in fragile health", - "values": [ - "Detention" - ] - }, - { - "text": "Increase efforts aimed at the realization of further progress in the process of strengthening economic, social and cultural rights, including in particular the rights of women and children and persons with disabilities", - "values": [ - "Disabilities", - "ESC rights - general", - "Rights of the Child", - "Women's rights" - ] - }, - { - "text": "Allow the United Nations special procedures - especially the Working Group on Arbitrary Detention and the Special Rapporteur on torture - to visit the country ", - "values": [ - "Detention", - "Special procedures", - "Torture and other CID treatment" - ] - }, - { - "text": "Adopt the decrees on the national preventive mechanism and ensure its financial and administrative independence", - "values": [ - "Detention", - "Torture and other CID treatment" - ] - }, - { - "text": "Continue efforts to adopt the requisite measures to enable people with disabilities, especially children, to have access to the necessary education and health care, and to combat any discrimination against them ", - "values": [ - "Disabilities", - "Right to education", - "Right to health", - "Rights of the Child" - ] - }, - { - "text": "Complete as soon as possible a general framework of measures to ensure equality of chances for people with disabilities ", - "values": [ - "Disabilities" - ] - }, - { - "text": "Extend a standing invitation to United Nations special procedure mandate holders", - "values": [ - "Special procedures" - ] - }, - { - "text": "Adopt legislation against discrimination", - "values": [ - "Sexual Orientation and Gender Identity" - ] - }, - { - "text": "Improve identification of victims of trafficking in human beings by setting up a coherent national mechanism of identification and referral of such cases, including among unaccompanied minors, irregular migrants and asylum seekers", - "values": [ - "Asylum-seekers - refugees", - "Migrants", - "Rights of the Child", - "Trafficking" - ] - }, - { - "text": "Bring its laws and practice fully in conformity with article 19 of the ICCPR ", - "values": [ - "Freedom of opinion and expression", - "International instruments" - ] - }, - { - "text": "Encourage the private capital to contribute to the national development process through the funding of charity work", - "values": [ - "Development" - ] - }, - { - "text": "Enhance the cooperation with civil society", - "values": [ - "Civil society" - ] - }, - { - "text": "Pay due attention to the recommendations made by the Special Rapporteur on torture ", - "values": [ - "Special procedures", - "Torture and other CID treatment" - ] - }, - { - "text": "Take sincere efforts to hold accountable those police and law enforcement officers responsible for the torture and ill-treatment of detainees ", - "values": [ - "Detention", - "Human rights violations by state agents", - "Torture and other CID treatment" - ] - }, - { - "text": "The Congo reiterates its commitment to cooperate with all United Nations bodies in general, and with those of the Human Rights Council in particular.", - "values": [ - "Special procedures", - "Treaty bodies", - "UPR process" - ] - }, - { - "text": "Promote the integration of Roma children in the educational system under the same conditions as the other children", - "values": [ - "Minorities", - "Right to education", - "Rights of the Child" - ] - }, - { - "text": "Consider adopting measures to counter discrimination against the descendants of slaves and the persistence of the caste system", - "values": [ - "Racial discrimination" - ] - }, - { - "text": "Improve the living conditions of asylum-seekers ", - "values": [ - "Asylum-seekers - refugees" - ] - }, - { - "text": "Continue its efforts to ratify CPED ", - "values": [ - "Enforced disappearances", - "International instruments" - ] - }, - { - "text": "Take necessary measures to ensure that no child is subject to religious practice that confines their religious freedom or the liberty of parents to ensure the religious and moral education of their children in conformity with their own convictions", - "values": [ - "Freedom of religion and belief", - "Rights of the Child" - ] - }, - { - "text": "Extend a standing invitation to all special procedures and respond positively to pending visit requests", - "values": [ - "Special procedures" - ] - }, - { - "text": "Strengthen legislation on the prevention and combat of sexual harassment, trafficking in persons and sexual tourism", - "values": [ - "Trafficking" - ] - }, - { - "text": "That the legislation related to violence against women, which would be promulgated based on the voluntary pledges made by Egypt, include provisions aimed at eliminating de jure and de facto discrimination against women", - "values": [ - "Women's rights" - ] - }, - { - "text": "Effectively implement the 2006 law on sexual violence and train judicial officials in its application. ", - "values": [ - "Human rights education and training", - "Women's rights" - ] - }, - { - "text": "Guarantee human rights defenders full legitimacy and protection, in accordance with the United Nations Declaration on Human Rights Defenders", - "values": [ - "Human rights defenders", - "International instruments" - ] - }, - { - "text": "Prevent discrimination on grounds of sexual orientation and protect the rights of lesbian, gay, bisexual, transgender and intersex (LGBTI) people, including their right to freedom of expression and peaceful assembly ", - "values": [ - "Freedom of association and peaceful assembly", - "Freedom of opinion and expression", - "Sexual Orientation and Gender Identity" - ] - }, - { - "text": "Consider establishing a permanent inter-ministerial committee responsible for the implementation of its international human rights obligations", - "values": [ - "International instruments", - "Special procedures", - "Treaty bodies", - "UPR process" - ] - }, - { - "text": "Integrate the gender perspective in the follow-up process to the UPR. ", - "values": [ - "UPR process", - "Women's rights" - ] - }, - { - "text": "Redouble its efforts in the area of poverty eradication and income disparity, including by allocating adequate human and financial resources and providing support and material assistance to the marginalized and disadvantage groups in the country", - "values": [ - "Poverty" - ] - }, - { - "text": "Abolish the death penalty for all crimes, including war crimes, treason and terrorist acts", - "values": [ - "Death penalty" - ] - }, - { - "text": "Consider accepting individual complaints mechanisms such as those provided for in the International Convention on the Elimination of All Forms of Racial Discrimination, the Convention against Torture and other Cruel, Inhuman or Degrading Treatment or Punishment, the International Covenant on Civil and Political Rights and the Convention on the Elimination of All Forms of Discrimination against Women ", - "values": [ - "CP rights - general", - "International instruments", - "Racial discrimination", - "Torture and other CID treatment", - "Women's rights" - ] - }, - { - "text": "Encourage initiatives aimed at promoting respect and religious tolerance and cultural diversity", - "values": [ - "Freedom of religion and belief" - ] - }, - { - "text": "Make a serious review of the compatibility of the 2010 National Security Act with international standards in international human rights instruments to which Sudan is a party ", - "values": [ - "International instruments", - "Public security" - ] - }, - { - "text": "Ensure effective implementation of its domestic laws on the protection of the family and prevention of violence against women and children", - "values": [ - "Rights of the Child", - "Women's rights" - ] - }, - { - "text": "Extend an open invitation to all special procedures mechanisms of the United Nations", - "values": [ - "Special procedures" - ] - }, - { - "text": "Continue its efforts to combat racial and ethnic discrimination, in particular through programmes promoting tolerance in public education", - "values": [ - "Human rights education and training", - "Racial discrimination" - ] - }, - { - "text": "Continue making progress in eradicating poverty, through the application of their social policies aimed at increasing the living standards of its people, in particular the most vulnerable sectors of the population", - "values": [ - "Poverty" - ] - }, - { - "text": "Strengthen efforts to investigate all allegations of torture, summary executions, enforced disappearance and other abuses, and to bring those responsible to justice", - "values": [ - "Enforced disappearances", - "Extrajudicial executions", - "Torture and other CID treatment" - ] - }, - { - "text": "Continue with the efforts to strengthen access to justice for juveniles in conflict with the law and share best practices with the wider region", - "values": [ - "Justice", - "Rights of the Child" - ] - }, - { - "text": "Provide more effective powers to the person primarily responsible for the national preventive mechanism against human rights violations and make it possible for her to monitor all State organs ", - "values": [ - "Other" - ] - }, - { - "text": "Carry out training to identify acts of torture for law enforcement personnel, the Office of the Director of Public Prosecutions, doctors, psychologists and any officials during the detention process. Additionally establish a complaints and follow-up mechanism", - "values": [ - "Detention", - "Human rights education and training", - "Torture and other CID treatment" - ] - }, - { - "text": "Give the highest priority to addressing the fundamental inequalities between some of its citizens including through its policy agenda focused on five key areas of economic development: education, citizen empowerment and protection of the vulnerable, resolution of land claims and reconciliation, governance and self government.", - "values": [ - "Development" - ] - }, - { - "text": "Adopt a national action plan to combat violence against women and a law on domestic violence", - "values": [ - "Rights of the Child", - "Women's rights" - ] - }, - { - "text": "Adopt the Anti-discrimination Act as a matter of priority while encompassing also grounds for discrimination on the basis of sexual orientation", - "values": [ - "Sexual Orientation and Gender Identity" - ] - }, - { - "text": "Strengthen the poverty reduction programmes by paying specific attention to the economic, social and cultural rights of the most disadvantaged and fighting against regional disparities in terms of their development", - "values": [ - "Development", - "ESC rights - general", - "Poverty" - ] - }, - { - "text": "Continue to address remaining social inequalities and unequal access to opportunities and services by the poor and the marginalized ", - "values": [ - "Poverty" - ] - }, - { - "text": "Further facilitate favourable grounds for minority religious groups to choose, change and follow their own religion or belief without any form of restriction", - "values": [ - "Freedom of religion and belief", - "Minorities" - ] - }, - { - "text": "Expediently attend to the issue of forced labour as raised by the ILO Committee of Experts ", - "values": [ - "Labour" - ] - }, - { - "text": "Take forward the concept of environmental rights at the Human Rights Council, bearing in mind Costa Rica's historic leadership on this issue", - "values": [ - "Environment" - ] - }, - { - "text": "Propose concrete dates for visits by the Special Rapporteurs on freedom of opinion and expression, and freedom of association and assembly, respectively", - "values": [ - "Freedom of association and peaceful assembly", - "Freedom of opinion and expression", - "Special procedures" - ] - }, - { - "text": "Guarantee the right to freedom of expression, including freedom of the press, association and peaceful assembly and align its legislation with its obligations and commitments based on relevant international law", - "values": [ - "Freedom of association and peaceful assembly", - "Freedom of opinion and expression", - "Freedom of the press" - ] - }, - { - "text": "Actively engage with public councils under the State bodies while developing measures aimed at ensuring human rights in a more comprehensive manner", - "values": [ - "Other" - ] - }, - { - "text": "Strengthen legal mechanisms to combat gender violence including the dedication of the requisite resources ", - "values": [ - "Women's rights" - ] - }, - { - "text": "Continue its engagement with the international community to combat poverty, including by devising special social schemes for families living in extreme poverty ", - "values": [ - "Poverty" - ] - }, - { - "text": "Continue to take effective measures to fully implement its SigTierras programme in order to ensure that rural women have equal access to land titles", - "values": [ - "Right to land", - "Women's rights" - ] - }, - { - "text": "Bring an end to arbitrary detentions, particularly on the grounds of political opinion, investigate allegations of torture and ill-treatment in prisons and bring those responsible to justice", - "values": [ - "Detention", - "Freedom of opinion and expression", - "Human rights violations by state agents", - "Torture and other CID treatment" - ] - }, - { - "text": "Take further measures to promote inter-religious dialogue and cultural diversity", - "values": [ - "Freedom of religion and belief" - ] - }, - { - "text": "Continue efforts to provide better living standards and share its experience of a developed health care with other countries, in particular, within the region", - "values": [ - "Right to health" - ] - }, - { - "text": "Take further steps to strengthen the delivery of health-care services and improve health-care infrastructure", - "values": [ - "Right to health" - ] - }, - { - "text": "Disseminate the report presented by the Mexican Government, as well as the observations and final recommendations resulting from the UPR, at the national level", - "values": [ - "UPR process" - ] - }, - { - "text": "Repeal the legal provisions that allow the death penalty and declare a moratorium on executions ", - "values": [ - "Death penalty" - ] - }, - { - "text": "Seek, as necessary, international assistance in the elaboration and implementation of programmes for the promotion of human rights", - "values": [ - "Technical assistance and cooperation" - ] - }, - { - "text": "Continue with determination to promote and protect human rights in the land of Teranga, with the support of the international community ", - "values": [ - "Minorities", - "Technical assistance and cooperation" - ] - }, - { - "text": "Stop violating the right to food and using starvation, hunger and malnutrition as a means to ensure its control over the population", - "values": [ - "Right to food" - ] - }, - { - "text": "Refrain from further budgetary cuts for the national council for women", - "values": [ - "Women's rights" - ] - }, - { - "text": "Ensure progress in the investigations into the murders committed during the Maidan revolution in Odessa in May 2014, and into the murder of journalist Pavel Sheremet on 20 July 2016", - "values": [ - "Other" - ] - }, - { - "text": "Sign and ratify the Council of Europe Convention on Preventing and Combatting Violence against Woman and Domestic Violence ", - "values": [ - "Women's rights" - ] - }, - { - "text": "Regarding refugees, the National Assembly passed Law 74/2013 permitting refugees to apply for residence after three years of living on Panamanian soil. The Government has also improved the process for determining refugee status so that it is in accordance with international standards. In addition, the delegation committed itself to the prompt adoption of a decree regulating the mechanism to determine statelessness.", - "values": [ - "Asylum-seekers - refugees", - "Statelessness and the right to nationality" - ] - }, - { - "text": "Take further steps in combating trafficking in persons.", - "values": [ - "Trafficking" - ] - }, - { - "text": "Establish preventive measures such as the creation of the national action plan for the prevention of sexual violence as well as public information campaigns on domestic violence so as to facilitate the implementation of the Sexual Offences Act", - "values": [ - "Rights of the Child", - "Women's rights" - ] - }, - { - "text": "Adopt a national strategy to combat trafficking in persons", - "values": [ - "Trafficking" - ] - }, - { - "text": "Remove all restrictions of freedom of association and assembly, including by refraining from penalizing peaceful political opposition activities, remove restrictions on independent media, including international journalists, and end harassment, religious discrimination, arbitrary arrest, torture, and imprisonment of peaceful political activities by ethnic minorities ", - "values": [ - "Detention", - "Freedom of association and peaceful assembly", - "Freedom of religion and belief", - "Freedom of the press", - "Minorities", - "Torture and other CID treatment" - ] - }, - { - "text": "Establish a moratorium on executions with a view to abolishing the death penalty, and guarantee that no individual under the age of 18 at the time of their alleged crime is sentenced to death, in line with its obligations under the Convention on the Rights of the Child", - "values": [ - "Death penalty", - "International instruments", - "Rights of the Child" - ] - }, - { - "text": "Launch a credible and impartial investigation and prosecute those responsible for attacks on peaceful protesters", - "values": [ - "Freedom of association and peaceful assembly" - ] - }, - { - "text": "Continue to make comprehensive efforts in economic and social development ", - "values": [ - "Development", - "ESC rights - general" - ] - }, - { - "text": "Develop, with the assistance of the international community, a long-term strategy to eliminate poverty and improve the standard of living of its people ", - "values": [ - "Poverty" - ] - }, - { - "text": "Continue to implement the adopted HIV/AIDS response strategies, with a view to further reducing new infections", - "values": [ - "HIV - Aids" - ] - }, - { - "text": "Carry out all efforts to reduce overcrowding in prisons and to ensure that imprisonment is a measure of last resort", - "values": [ - "Detention" - ] - }, - { - "text": "Amend the Personal Status Law of 1992 and the Citizenship Law of 1990 to prevent discrimination and violence against women in marriage, divorce, guardianship, testimony, property, nationality, child custody and inheritance, and repeal all discriminatory provisions of the Penal Code, including articles 232, 273 and 275, as recommended by the CEDAW Committee, and the proposed amendment to article 26 of the Penal Code.", - "values": [ - "Statelessness and the right to nationality", - "Treaty bodies", - "Women's rights" - ] - }, - { - "text": "Take additional measures to guarantee access for all citizens to safe drinking water and sanitation ", - "values": [ - "Right to water and sanitation" - ] - }, - { - "text": "Adopt a comprehensive anti-discrimination law which includes all grounds for discrimination", - "values": [ - "Other" - ] - }, - { - "text": "Ratify the Convention against Torture and typify torture as a crime by modifying its Criminal Code", - "values": [ - "International instruments", - "Torture and other CID treatment" - ] - }, - { - "text": "Operationalize the Technological University", - "values": [ - "Right to education" - ] - }, - { - "text": "Expedite enactment of planned legislation to establish a Human Rights Commission", - "values": [ - "National Human Rights Institution" - ] - }, - { - "text": "Ensure participation of indigenous peoples in the decision-making and their equal representation in the governance of the country", - "values": [ - "Elections", - "Indigenous peoples" - ] - }, - { - "text": "Continue its measures with regard to the promotion and protection of children's rights and combating violence against women ", - "values": [ - "Rights of the Child", - "Women's rights" - ] - }, - { - "text": "Take immediate measures to ensure that the national regulations pertaining to the Internet guarantee freedom of expression ", - "values": [ - "Freedom of opinion and expression" - ] - }, - { - "text": "Take all relevant measures to avoid prolongation of administrative detention of asylum-seekers during which the freedom of movement is considerably restricted ", - "values": [ - "Asylum-seekers - refugees", - "Detention", - "Freedom of movement" - ] - }, - { - "text": "Consider implementing the recently adopted United Nations Rules for the Treatment of Women Prisoners and Non-custodial Measures for Women Offenders (the Bangkok Rules), and seek necessary support from such relevant agencies as the United Nations Office on Drugs and Crime and OHCHR", - "values": [ - "Detention", - "Technical assistance and cooperation", - "Women's rights" - ] - }, - { - "text": "Continue its efforts aimed at implementing the national policy of gender equality adopted by the Government in March 2013", - "values": [ - "Women's rights" - ] - }, - { - "text": "Accede to and implement all core human rights treaties", - "values": [ - "International instruments" - ] - }, - { - "text": "Establish a national human rights institution in accordance with the Paris Principles and provide it with the resources necessary for an effective action", - "values": [ - "National Human Rights Institution" - ] - }, - { - "text": "Continue efforts to ensure the safety, security and dignity of foreign migrant workers, including women domestic workers, through requisite institutional and legislative measures", - "values": [ - "Labour", - "Migrants" - ] - }, - { - "text": "Intensify cooperation between the Inter-Religious Dialogue Group and the National Andorra Commission for the United Nations Educational, Scientific and Cultural Organization", - "values": [ - "Freedom of religion and belief" - ] - }, - { - "text": "Follow up on its initiatives in the fight against the trafficking in persons, especially women and children", - "values": [ - "Rights of the Child", - "Trafficking", - "Women's rights" - ] - }, - { - "text": "Facilitate an environment for local and international civil society organizations to fulfil their role", - "values": [ - "Civil society", - "Freedom of association and peaceful assembly" - ] - }, - { - "text": "Continue its commendable efforts to empower women in social, political, economic and public life, including by continuing its positive campaigning to raise awareness of women's rights ", - "values": [ - "Human rights education and training", - "Women's rights" - ] - }, - { - "text": "Take immediate measures in order to comply with obligations under international humanitarian law and international human rights law", - "values": [ - "International humanitarian law" - ] - }, - { - "text": "Take all the necessary measures to bring its national human rights institution in line with the Paris Principles", - "values": [ - "National Human Rights Institution" - ] - }, - { - "text": "Seek the assistance of the international community to help Uganda enact laws for the promotion and protection of human rights", - "values": [ - "Technical assistance and cooperation" - ] - }, - { - "text": "Continue to uphold and enact national laws and legislation in accordance with universally agreed human rights standards it has ratified ", - "values": [ - "International instruments" - ] - }, - { - "text": "Strengthen measures to assist families most in need in the context of the economic and financial crisis ", - "values": [ - "Development" - ] - }, - { - "text": "Continue to fight against racist crimes and hate speech", - "values": [ - "Racial discrimination" - ] - }, - { - "text": "Formulate awareness-raising activities as part of efforts to prevent the practice of child marriage, and consider improving the availability of antenatal and postnatal services to women ", - "values": [ - "Human rights education and training", - "Right to health", - "Rights of the Child", - "Women's rights" - ] - }, - { - "text": "Establish specific laws against domestic violence and the sexual abuse of women in all states in the Federation", - "values": [ - "Women's rights" - ] - }, - { - "text": "Adopt the necessary measures to eliminate in the legislation and in practice the crimes motivated by the sexual orientation of persons", - "values": [ - "Sexual Orientation and Gender Identity" - ] - }, - { - "text": "Take urgent action to protect human rights defenders, non- governmental organizations and journalists, and to investigate and prosecute all who threaten them", - "values": [ - "Civil society", - "Freedom of the press", - "Human rights defenders" - ] - }, - { - "text": "Strengthen rule of law and the administration of justice by consolidating concrete measures in the legal reform", - "values": [ - "Justice" - ] - }, - { - "text": "Ensure the right of indigenous people to their ancestral lands through the implementation of the relevant legislation with measurable targets and effective data collection ", - "values": [ - "Indigenous peoples", - "Right to land" - ] - }, - { - "text": "Address the root causes of prostitution by adopting measures enhancing women's economic opportunities", - "values": [ - "Women's rights" - ] - }, - { - "text": "Take necessary measures to improve the human rights situation of inmates by improving conditions in prison establishments, including by ensuring appropriate infrastructure ", - "values": [ - "Detention" - ] - }, - { - "text": "Increase the capacity for investigation and prosecution of all complaints of torture, attach special attention to allegations of torture of persons belonging to ethnic minorities, and bring the definition of torture in the Criminal Code fully in line with CAT", - "values": [ - "International instruments", - "Minorities", - "Torture and other CID treatment" - ] - }, - { - "text": "Ensure that cases of torture will be systematically investigated and perpetrators held accountable", - "values": [ - "Torture and other CID treatment" - ] - }, - { - "text": "Ratify as soon as possible important international human rights instruments to which it is not yet a party, inter alia, CAT, CRPD and CED, and issue a standing invitation to special procedures ", - "values": [ - "Disabilities", - "Enforced disappearances", - "International instruments", - "Special procedures", - "Torture and other CID treatment" - ] - }, - { - "text": "Tackle the ongoing issues of irregular migrants and seriously prosecute traffickers who prey on and take advantage of those vulnerable persons", - "values": [ - "Migrants", - "Trafficking" - ] - }, - { - "text": "Consider taking further action to better ensure gender equality at work ", - "values": [ - "Women's rights" - ] - }, - { - "text": "Eliminate all forms of discrimination against the Roma community, religious minorities, and migrants, and ensure equal opportunities for the enjoyment of economic, social and cultural rights, including education, health and housing", - "values": [ - "Migrants", - "Minorities" - ] - }, - { - "text": "Adopt specific labour legislation to protect the rights of domestic workers, including mechanisms for complaints and sanctions for law violations", - "values": [ - "Labour" - ] - }, - { - "text": "Introduce legislation, uniformly across the Confederation, that explicitly protects LGBT persons from discrimination, and take into account the issues faced by LGBT persons when creating a general act on equal treatment", - "values": [ - "Sexual Orientation and Gender Identity" - ] - }, - { - "text": "Ratify the International Convention on the Elimination of All Forms of Racial Discrimination", - "values": [ - "International instruments", - "Racial discrimination" - ] - }, - { - "text": "Take the necessary measures to guarantee women the right to transfer their nationality to their children born in the territory, regardless of the status or nationality of the father", - "values": [ - "Women's rights" - ] - }, - { - "text": "Continue to mobilize resources and seek the necessary support to enhance its capacity to fulfil its human rights obligations", - "values": [ - "Technical assistance and cooperation" - ] - }, - { - "text": "Increase resource allocation and accessibility to public health services", - "values": [ - "Right to health" - ] - }, - { - "text": "Intensify its public policies in the area of homeless migrant children, by identifying the number of homeless children and their specific needs, and by guaranteeing their right to health, education and housing ", - "values": [ - "Migrants", - "Right to education", - "Right to health", - "Right to housing", - "Rights of the Child" - ] - }, - { - "text": "Take effective legislative, administrative and judicial measures against the propagation of racial and religious hatred in the media and through the Internet ", - "values": [ - "Freedom of religion and belief", - "Racial discrimination" - ] - }, - { - "text": "Implement programmes to increase the human rights awareness of village and community leaders, and develop measures to ensure that decisions made by village courts are in line with international standards, particularly the principle of non-discrimination, and, at the same time, take measures to promote among its citizens greater awareness of their rights and access to the formal judicial system ", - "values": [ - "Human rights education and training", - "Justice" - ] - }, - { - "text": "Continue to implement measures aimed at addressing women's occupational segregation and the diversification of their academic and professional choices, including in non-traditional fields", - "values": [ - "Women's rights" - ] - }, - { - "text": "Extend an invitation to the special procedures", - "values": [ - "Special procedures" - ] - }, - { - "text": "Deepen measures which are considered as necessary to reduce maternal mortality rates and to prevent teenage pregnancy", - "values": [ - "Right to health", - "Rights of the Child", - "Women's rights" - ] - }, - { - "text": "Develop a favourable environment for the functioning of all non-governmental organizations and political parties, including simplifying registration procedures ", - "values": [ - "Civil society" - ] - }, - { - "text": "Consider acceding to the remaining international human rights treaties", - "values": [ - "International instruments" - ] - }, - { - "text": "Intensify its development programmes focusing on alleviating poverty and ensuring adequate standards of life for Fijians, while seeking technical and financial assistance, whenever needed, from the relevant United Nations bodies", - "values": [ - "Poverty", - "Technical assistance and cooperation" - ] - }, - { - "text": "Implement the Government's plan to have a comprehensive legislation against discrimination", - "values": [ - "Other" - ] - }, - { - "text": "Continue the efforts in the field of education including providing a high quality of education system that is inclusive, universal and free ", - "values": [ - "Right to education" - ] - }, - { - "text": "Adopt complete legislation against discrimination dealing with all parts of life explicitly and prohibiting discrimination on all grounds, notably based on race, sexual orientation and gender identity", - "values": [ - "Racial discrimination", - "Sexual Orientation and Gender Identity" - ] - }, - { - "text": "Work on the implementation of the Agenda on Women, Peace and Security so as to ensure effective participation of women in all areas of decision-making processes", - "values": [ - "Women's rights" - ] - }, - { - "text": "Continue its efforts to prevent, punish and eradicate violence against boys and girls", - "values": [ - "Rights of the Child" - ] - }, - { - "text": "Consider ratifying the Second Optional Protocol to the International Covenant on Civil and Political Rights (ICCPR), aiming at the abolition of the death penalty ", - "values": [ - "Death penalty", - "International instruments" - ] - }, - { - "text": "Take effective measures to safeguard the full enjoyment of civil and political rights of its people ", - "values": [ - "CP rights - general" - ] - }, - { - "text": "Abrogate all penal provisions criminalizing sexual relations between consenting adults of the same sex", - "values": [ - "Sexual Orientation and Gender Identity" - ] - }, - { - "text": "Increase cooperation with the special procedures. ", - "values": [ - "Special procedures" - ] - }, - { - "text": "Accede to the Convention against Torture and Other Cruel, Inhuman or Degrading Treatment or Punishment and its Optional Protocol, and the International Convention on the Protection of the Rights of All Migrant Workers and Members of their Families", - "values": [ - "Detention", - "International instruments", - "Labour", - "Migrants", - "Torture and other CID treatment" - ] - }, - { - "text": "Conclude domestic processes relating to signing the Convention on the Rights of Persons with Disabilities", - "values": [ - "Disabilities", - "International instruments" - ] - }, - { - "text": "Adopt a law on child protection that provides guidance or directives regarding the roles and responsibilities of government agencies", - "values": [ - "Rights of the Child" - ] - }, - { - "text": "Persevere in implementing its Action Plan and ensure its wide dissemination among the local population, in all the official languages of the country", - "values": [ - "Minorities" - ] - }, - { - "text": "Strengthen international and regional cooperation in the protection and promotion of human rights", - "values": [ - "Technical assistance and cooperation" - ] - }, - { - "text": "The Royal Government will actively and deeply reform land management by focusing on the management, organization, utilization and distribution of land in order to achieve national goals for poverty reduction, food security and the protection of environment and natural resources, keeping in line with the process of socio-economic development and in accordance with the free market principles.", - "values": [ - "Development", - "Environment", - "Poverty", - "Right to food", - "Right to land" - ] - }, - { - "text": "Accede to the ICRMW", - "values": [ - "International instruments", - "Labour", - "Migrants" - ] - }, - { - "text": "Provide the necessary human means and resources for the effective implementation of the Sexual Offences Act and the national policy on domestic violence", - "values": [ - "Rights of the Child", - "Women's rights" - ] - }, - { - "text": "Strengthen the judiciary system in order to address violence against women and children and high rates of children facing sexual abuse", - "values": [ - "Justice", - "Rights of the Child", - "Women's rights" - ] - }, - { - "text": "Establish indicators to measure child poverty and consider adopting additional measures for reducing poverty amongst youth ", - "values": [ - "Poverty", - "Rights of the Child" - ] - }, - { - "text": "Increase the independence of media from the State, including by allowing privately-run media.", - "values": [ - "Freedom of the press" - ] - }, - { - "text": "Enhance its poverty eradication efforts by continuously allocating sufficient annual budget dedicated to poverty eradication programmes", - "values": [ - "Poverty" - ] - }, - { - "text": "Implement measures for the improvement of prison facilities and thus reduce overcrowding in line with the United Nations Standard Minimum Rules for the Treatment of Prisoners (the Nelson Mandela Rules)", - "values": [ - "Detention" - ] - }, - { - "text": "Immediately release all prisoners held in arbitrary detention and recompense them as requested by the Working Group on Arbitrary Detention ", - "values": [ - "Detention", - "Special procedures" - ] - }, - { - "text": "Revise its Law to Counter Information Technology Crimes to protect online expression and allow internet access without blocking content", - "values": [ - "Freedom of opinion and expression", - "Privacy" - ] - }, - { - "text": "Fully recognize the right of conscientious objection to military service without discrimination as to the religion or belief on which the objection is based, and provide civilian alternative service compatible with international standards ", - "values": [ - "Freedom of religion and belief" - ] - }, - { - "text": "Remove restrictions on the ability of journalists to report and criticize Government policy freely and without fear of repression.", - "values": [ - "Freedom of the press" - ] - }, - { - "text": "Ensure that persons belonging to religious minorities are free to practice their faith", - "values": [ - "Freedom of religion and belief", - "Minorities" - ] - }, - { - "text": "Expand the national programme on the prevention of human trafficking, particularly the use of children and women for sexual purposes, with a view to dealing with all violations of provisions of the Palermo Protocol, in line with the recommendations of the Committee on the Rights of the Child", - "values": [ - "International instruments", - "Trafficking", - "Treaty bodies" - ] - }, - { - "text": "Strengthen the work of all existing national human rights institutions in the Syrian Arab Republic", - "values": [ - "General" - ] - }, - { - "text": "Introduce measures to reduce detention of individuals solely for immigration purposes and consider other alternatives than detention to use when possible ", - "values": [ - "Detention" - ] - }, - { - "text": "Accede to the Second Optional Protocol to the International Covenant on Civil and Political Rights aimed at abolishing the death penalty", - "values": [ - "Death penalty", - "International instruments" - ] - }, - { - "text": "Continue increasing assistance for vulnerable persons", - "values": [ - "Minorities" - ] - }, - { - "text": "Continue targeted policies and initiatives to encourage greater participation of women in the electoral process", - "values": [ - "Women's rights" - ] - }, - { - "text": "Strengthen national measures to address abuses towards children and end corporal punishment", - "values": [ - "Rights of the Child" - ] - }, - { - "text": "Meet the target of allocating 15 per cent of Government spending to health, in accordance with the Abuja Declaration", - "values": [ - "Right to health" - ] - }, - { - "text": "Civil society be actively involved in the implementation of the review.", - "values": [ - "UPR process" - ] - }, - { - "text": "Take necessary measures in order to prevent and combat sexual exploitation and abuse of vulnerable people especially in Greenland", - "values": [ - "Rights of the Child", - "Women's rights" - ] - }, - { - "text": "Adopt an anti-discrimination law that can be widely applied", - "values": [ - "Other" - ] - }, - { - "text": "Request the necessary assistance from the international community to allow it to strengthen its capacities and to assist it in overcoming the difficulties and constraints it faces in the area of human rights ", - "values": [ - "Technical assistance and cooperation" - ] - }, - { - "text": "Continue to play an active role in the works of the Human Rights Council and continue to contribute in solving the issues relating to human rights in a fair, objective and non-selective manner", - "values": [ - "Other" - ] - }, - { - "text": "Maintain support for National Council and Institutions charged with the promotion and protection of human rights", - "values": [ - "National Human Rights Institution" - ] - }, - { - "text": "Continue combating all forms of discrimination and promoting gender equality", - "values": [ - "Women's rights" - ] - }, - { - "text": "Include a gender-perspective in the follow-up process to the UPR review.", - "values": [ - "UPR process", - "Women's rights" - ] - }, - { - "text": "Continue making progress in the efforts needed to have a National Human Rights Institution in conformity with the Paris Principles ", - "values": [ - "National Human Rights Institution" - ] - }, - { - "text": "Adopt measures to eradicate in a definitive manner the practice of female genital mutilation ", - "values": [ - "Rights of the Child", - "Torture and other CID treatment", - "Women's rights" - ] - }, - { - "text": "Continue putting in place measures aimed at preventing violence and racial discrimination against Afro-Brazilians and at protecting their cultural heritage sites and places of worship", - "values": [ - "Freedom of religion and belief", - "Minorities", - "Racial discrimination" - ] - }, - { - "text": "Continue efforts to guarantee health care at both levels identified ", - "values": [ - "Right to health" - ] - }, - { - "text": "Strengthen measures to combat discrimination, with special attention to the situation of minorities, by adopting laws and policies for the effective promotion and protection of their rights", - "values": [ - "Minorities", - "Racial discrimination" - ] - }, - { - "text": "Expeditiously conclude and approve the draft law for moral and material reparations to victims of violations of human rights", - "values": [ - "Justice" - ] - }, - { - "text": "Consider passing a domestic violence law which makes reporting of violence within the family and especially against women and children mandatory, and which creates a regime of family violence restraining orders designed to protect the family against further violence", - "values": [ - "Rights of the Child", - "Women's rights" - ] - }, - { - "text": "Step up the process of establishment of the country's national human rights institution that is compliant with the Paris Principles", - "values": [ - "National Human Rights Institution" - ] - }, - { - "text": "Continue its activities in full cooperation with NGOs and civil society organizations in order to guarantee the effective and equal application of all human rights ", - "values": [ - "Civil society" - ] - }, - { - "text": "Continue its efforts in ensuring that the education system will benefit all groups in the society regardless of their backgrounds ", - "values": [ - "Right to education" - ] - }, - { - "text": "Ensure that government officials take a firm and consistent stance condemning anti-Muslim and anti-migrant hate speech", - "values": [ - "Freedom of religion and belief", - "Migrants", - "Racial discrimination" - ] - }, - { - "text": "Continue efforts to implement the development goals and the institutional, administrative reforms it has undertaken.", - "values": [ - "Development" - ] - }, - { - "text": "Continue promoting the right to work including to reduce the unemployment rate", - "values": [ - "Development" - ] - }, - { - "text": "Extend its anti-discrimination laws and hate crime legislation", - "values": [ - "Racial discrimination" - ] - }, - { - "text": "Eliminate legal sanctions against consensual sex acts between adults in private ", - "values": [ - "Sexual Orientation and Gender Identity" - ] - }, - { - "text": "Strengthen measures to reform its legal framework to protect human rights in consideration of political, legal and social perception", - "values": [ - "General" - ] - }, - { - "text": "Develop a national strategy to include in the school system at all levels appropriate measures in the field of human rights education, in accordance with the Plan of Action 2005-2009 of the World Programme for Human Rights Education", - "values": [ - "Human rights education and training" - ] - }, - { - "text": "Adopt necessary measures to improve conditions in prisons and other places of detention", - "values": [ - "Detention" - ] - }, - { - "text": "Take measures both in legislation and practice to ensure the rights of children, including access to education and health, birth registration, combating child labour and violence against them ", - "values": [ - "Labour", - "Right to education", - "Right to health", - "Rights of the Child", - "Statelessness and the right to nationality" - ] - }, - { - "text": "Implement comprehensive legislation to effectively combat the widespread cases of violence against women and offer further protection to victims of domestic violence", - "values": [ - "Rights of the Child", - "Women's rights" - ] - }, - { - "text": "Effectively to implement the new regulations on health services and medical care that gives the right to all persons in the country to receive urgent medical attention and be examined by specialized care services ", - "values": [ - "Right to health" - ] - }, - { - "text": "Ensure the non-discriminatory approach, particularly in employment, education and housing as well as access to justice of the undocumented and irregular migrants ", - "values": [ - "Development", - "Justice", - "Migrants", - "Right to education", - "Right to housing" - ] - }, - { - "text": "Ratify or accede to the main instruments on human rights, in particular the Convention against Torture and Other Cruel, Inhuman or Degrading Treatment or Punishment", - "values": [ - "International instruments", - "Torture and other CID treatment" - ] - }, - { - "text": "Ensure equality among women and men in their family relations and continue to combat violence against women and children ", - "values": [ - "Rights of the Child", - "Women's rights" - ] - }, - { - "text": "Continue to promote measures in order to strengthen the educational system ", - "values": [ - "Right to education" - ] - }, - { - "text": "Consider, as appropriate, learning and adopting, in accordance with national conditions, the best practices of other developing countries on the functioning of the oversight mechanisms", - "values": [ - "Other" - ] - }, - { - "text": "Continue to engage in poverty elimination to narrow the gap between its cities and rural areas and raise people's living standards", - "values": [ - "Poverty" - ] - }, - { - "text": "Urgently adopt legislation to ban FGM", - "values": [ - "Rights of the Child", - "Torture and other CID treatment", - "Women's rights" - ] - }, - { - "text": "Guarantee fully the rights to freedom of assembly and association and ensure that the alleged perpetrators of human rights violations in this context are brought to justice", - "values": [ - "Freedom of association and peaceful assembly" - ] - }, - { - "text": "Adopt appropriate measures for the protection of women ", - "values": [ - "Women's rights" - ] - }, - { - "text": "Review its legislation and policies in order to create a free, safe and enabling environment for journalists, bloggers and others to exercise fully their right to freedom of expression", - "values": [ - "Freedom of opinion and expression", - "Freedom of the press" - ] - }, - { - "text": "Investigate all cases of ill treatment and abuse, such as enforced disappearances, cases of torture, arrests without warrants and extrajudicial killings by the police as well as the national army and ensure the delivery of justice regarding these serious human rights violations ", - "values": [ - "Enforced disappearances", - "Extrajudicial executions", - "Human rights violations by state agents", - "Torture and other CID treatment" - ] - }, - { - "text": "Enact, with immediate effect, the new Media Law which could help to promote and protect freedom of expression", - "values": [ - "Freedom of opinion and expression", - "Freedom of the press" - ] - }, - { - "text": "Submit its overdue reports to the treaty bodies, including the Committee on the Elimination of Discrimination against Women and the Committee on the Rights of the Child", - "values": [ - "Rights of the Child", - "Treaty bodies", - "Women's rights" - ] - }, - { - "text": "Include in its national criminal legislation, a definition of torture, in compliance with the provisions of the Convention against Torture", - "values": [ - "International instruments", - "Torture and other CID treatment" - ] - }, - { - "text": "Legally establish an independent judiciary and ensure that all laws are in line with the principles of international law ", - "values": [ - "Justice" - ] - }, - { - "text": "Take urgent measures to guarantee better conditions of detention and that the application of preventive detention is not the norm, strictly limiting its duration through alternative non-custodial measures", - "values": [ - "Detention" - ] - }, - { - "text": "Abolish entirely the death penalty from its legislation", - "values": [ - "Death penalty" - ] - }, - { - "text": "Circulate and implement the Bangkok Rules on the treatment of women prisoners and non-custodial measures for women offenders as part of its reform of the judicial system ", - "values": [ - "Detention", - "Women's rights" - ] - }, - { - "text": "Continue to promote the rights of women and girls, the elderly and children", - "values": [ - "Rights of the Child", - "Women's rights" - ] - }, - { - "text": "Ensure strong public statements recognizing the legitimate and important role of human rights defenders and that all alleged attacks against human rights defenders are promptly and thoroughly investigated and that perpetuators are held accountable", - "values": [ - "Human rights defenders" - ] - }, - { - "text": "Refrain from adopting any legislation, such as the draft law on "foreign agents" and the draft law on "dissemination of information about non-traditional sexual relations" that will limit the fundamental rights to freedom of expression, association and assembly", - "values": [ - "Freedom of association and peaceful assembly", - "Freedom of opinion and expression", - "Sexual Orientation and Gender Identity" - ] - }, - { - "text": "Lesotho was committed to preventing illicit trafficking of conventional arms. The International Convention on Certain Conventional Weapons had been ratified and the Arms Trade Treaty had been signed.", - "values": [ - "Public security" - ] - }, - { - "text": "Work on strengthening international cooperation in the field of human rights", - "values": [ - "Technical assistance and cooperation" - ] - }, - { - "text": "Ensure that the domestic legislation concerning discrimination is consistent with that contained in the International Convention on the Elimination of all Forms of Racial Discrimination (ICERD) which deals furthermore with all forms of direct or indirect discrimination based on age, sex, religion and sexual orientation", - "values": [ - "International instruments", - "Racial discrimination", - "Sexual Orientation and Gender Identity", - "Women's rights" - ] - }, - { - "text": "Establish without delay an effective, well-resourced and staffed national preventive mechanism according to the Optional Protocol to the Convention against Torture", - "values": [ - "Detention", - "International instruments", - "Torture and other CID treatment" - ] - }, - { - "text": "Continue its efforts aimed at eradicating poverty and extreme poverty, with a special attention to rural areas", - "values": [ - "Poverty" - ] - }, - { - "text": "Pursue efforts to strengthen national reconciliation and ensure the achievement of transitional justice", - "values": [ - "Justice" - ] - }, - { - "text": "Facilitate the development, in law and practice, of a safe and enabling environment in which both civil society and human rights defenders can operate free from fear, hindrance and insecurity", - "values": [ - "Civil society", - "Human rights defenders" - ] - }, - { - "text": "Continue, with all necessary determination, the efforts already undertaken to remedy the excessive length of court procedures and difficulties faced in prosecuting war crimes ", - "values": [ - "Justice" - ] - }, - { - "text": "Launch an impartial, efficient and in-depth investigation on the case of Sombath Somphone in accordance with the international obligations of the Lao People's Democratic Republic, and submit the results of the investigation in a transparent manner", - "values": [ - "Enforced disappearances" - ] - }, - { - "text": "Continue efforts aiming at enhancing human rights education, including training and capacity-building for the public sector", - "values": [ - "Human rights education and training" - ] - }, - { - "text": "Clarify the definition of torture in its penal code, and enforce an absolute prohibition of torture under any circumstances ", - "values": [ - "Torture and other CID treatment" - ] - }, - { - "text": "Extend a standing invitation to the special procedures of the United Nations", - "values": [ - "Special procedures" - ] - }, - { - "text": "Adopt a comprehensive strategy to fight against female genital mutilation, including the punishment of its perpetrators, educational and awareness-raising programmes as well as medical support to women and girls affected", - "values": [ - "Human rights education and training", - "Rights of the Child", - "Torture and other CID treatment", - "Women's rights" - ] - }, - { - "text": "Become a party to CAT as well as OP-CAT", - "values": [ - "Detention", - "International instruments", - "Torture and other CID treatment" - ] - }, - { - "text": "Complete the process of the ratification of CRPD", - "values": [ - "Disabilities", - "International instruments" - ] - }, - { - "text": "Continue with measures to strengthen independent and impartial investigations into human rights abuses ", - "values": [ - "Justice" - ] - }, - { - "text": "Expedite action on the ratification process of the International Convention on the Protection of the Rights of All Migrant Workers and Members of Their Families", - "values": [ - "International instruments", - "Labour", - "Migrants" - ] - }, - { - "text": "Ratify the International Convention for the Protection of All Persons from Enforced Disappearance and the Rome Statute of International Criminal Court", - "values": [ - "Enforced disappearances", - "International instruments", - "Justice" - ] - }, - { - "text": "Raise the age for criminal responsibility of boys and girls and eliminate corporal punishment against minors from the domestic legislation of the Bahamas", - "values": [ - "Justice", - "Rights of the Child", - "Torture and other CID treatment" - ] - }, - { - "text": "Take the necessary measures to ensure that all persons born in Luxembourg obtain a nationality if otherwise they would become stateless, and regardless of the immigration status of their parents", - "values": [ - "Migrants", - "Rights of the Child", - "Statelessness and the right to nationality" - ] - }, - { - "text": "Further sensitize the Croatian public to the asylum question, in order to facilitate the integration of asylum seekers", - "values": [ - "Asylum-seekers - refugees" - ] - }, - { - "text": "Eliminate the harmful practice of early marriage and raise awareness among the public and parents for the effective protection of minor girls", - "values": [ - "Human rights education and training", - "Rights of the Child", - "Women's rights" - ] - }, - { - "text": "Establish a comprehensive child labour policy ", - "values": [ - "Labour", - "Rights of the Child" - ] - }, - { - "text": "Develop a national strategy for education in human rights within the school system, in accordance with the World Programme and Plan of Action, with the full participation of all", - "values": [ - "Human rights education and training" - ] - }, - { - "text": "Take more resolute legal and practical measures to combat intolerance based on ethnic origin and take further steps to promote mutual understanding and respect between persons belonging to various groups", - "values": [ - "Minorities" - ] - }, - { - "text": "Continue effective policies aimed at ensuring rights of persons with disabilities through instruments that are in line with respective international conventions as well as by developing and implementing national programs", - "values": [ - "Disabilities" - ] - }, - { - "text": "Complete the ratification process of ICRMW, as recommended by several treaty bodies and special rapporteurs", - "values": [ - "International instruments", - "Labour", - "Migrants", - "Special procedures", - "Treaty bodies" - ] - }, - { - "text": "Disseminate human rights culture through training and awareness programs to the benefit of the law enforcement officials and to all segments of Yemeni society ", - "values": [ - "Human rights education and training" - ] - }, - { - "text": "Do its utmost to submit regular reports to the treaty bodies. ", - "values": [ - "Treaty bodies" - ] - }, - { - "text": "Complete the processes it is undertaking regarding anti-racism", - "values": [ - "Racial discrimination" - ] - }, - { - "text": "Designate a national preventive mechanism, to safeguard the rights of detainees and to prevent any acts of torture ", - "values": [ - "Detention", - "Torture and other CID treatment" - ] - }, - { - "text": "Engage the civil society in the follow-up implementation process of the recommendations raised during the universal periodic review", - "values": [ - "Civil society", - "UPR process" - ] - }, - { - "text": "Consider responding affirmatively to the visits requested by human rights mandate holders, within the context of its cooperation with OHCHR ", - "values": [ - "Special procedures" - ] - }, - { - "text": "With the support of the international community, persevere in its efforts in education in order to guarantee the realization of this right for all and integrate education and human rights training in its curriculum. ", - "values": [ - "Human rights education and training", - "Right to education", - "Technical assistance and cooperation" - ] - }, - { - "text": "Introduce measures to ensure equal rights for women in the area of employment, in order to ensure equal pay for equal work and better enforcement of laws to protect women from discrimination ", - "values": [ - "Women's rights" - ] - }, - { - "text": "Reverse its position favouring a three-year extension for the Transitional Federal Parliament and instead adopt a one-year extension coupled with governmental reforms and benchmarks, including the completion of a national Constitution within one year, and elections for the President and Speaker of Parliament in summer 2011", - "values": [ - "Elections" - ] - }, - { - "text": "Continue efforts aimed at combating and eliminating discrimination against women in order to ensure full gender equality in life and in public policies", - "values": [ - "Women's rights" - ] - }, - { - "text": "Adopt and implement, through an inclusive and a participatory process, national policies for the protection of women, including women human rights defenders, against any form of discrimination or violence, committed either in public or at the domestic level", - "values": [ - "Human rights defenders", - "Women's rights" - ] - }, - { - "text": "Take into account the resolutions approved by the Council, which covers a series of important issues and offers significant recommendations to promote and protect the rights of children", - "values": [ - "Rights of the Child" - ] - }, - { - "text": "Prevent acts of torture and ill-treatment of children living in the occupied State of Palestine and eliminate these acts which constitute a flagrant violation of article 37 (a) of the CRC, and article 32 the Fourth Geneva Convention", - "values": [ - "International humanitarian law", - "International instruments", - "Rights of the Child", - "Torture and other CID treatment" - ] - }, - { - "text": "Continue the process of eliminating the differences between the Caribbean and the European parts of the Netherlands as soon as possible", - "values": [ - "Other" - ] - }, - { - "text": "Continue to implement its socio-economic development strategies and plans for the country ", - "values": [ - "Development" - ] - }, - { - "text": "Intensify efforts to uphold the respect for the rule of law by ensuring an independent and well functioning judicial system.", - "values": [ - "Justice" - ] - }, - { - "text": "Strengthen its awareness-raising and education programmes, prevent and eradicate harmful traditional practices and ensure that victims have access to remedies and rehabilitation mechanisms", - "values": [ - "Human rights education and training", - "Torture and other CID treatment" - ] - }, - { - "text": "Review the procedure for the selection of the ombudsman and, more broadly, the selection, training and status of judges, taking into account the recommendations of the Venice Commission", - "values": [ - "Human rights education and training" - ] - }, - { - "text": "Ratify the Convention for the Elimination of the Enforced Disappearances of Persons", - "values": [ - "Enforced disappearances", - "International instruments" - ] - }, - { - "text": "Consolidate poverty reduction programmes, as Panama is on track to meet Millennium Development Goal 1, related to extreme poverty", - "values": [ - "Poverty" - ] - }, - { - "text": "Review its national legislation to ensure full alignment with the Rome Statute of the International Criminal Court", - "values": [ - "International instruments", - "Justice" - ] - }, - { - "text": "Alleviate administrative procedure for peaceful assemblies and adopt effective measures to prevent use of force against peaceful protestors by the law enforcement personnel", - "values": [ - "Freedom of association and peaceful assembly", - "Human rights violations by state agents" - ] - }, - { - "text": "Avail itself of technical assistance from OHCHR towards implementation of its obligations under international laws and treaties", - "values": [ - "International instruments", - "Technical assistance and cooperation" - ] - }, - { - "text": "Incorporate a gender perspective in negotiating and implementing any settlement accords ", - "values": [ - "Women's rights" - ] - }, - { - "text": "Take effective measures to systematically tackle impunity by improving training, including human rights training, of security and law enforcement officials", - "values": [ - "Human rights education and training", - "Impunity" - ] - }, - { - "text": "Continue its work in creating and using opportunities to encourage and defend the rights of women, including the voluntary obligations which are set out in the national report.", - "values": [ - "Women's rights" - ] - }, - { - "text": "Establish awareness campaigns on discrimination against members of the Roma community", - "values": [ - "Human rights education and training", - "Minorities", - "Racial discrimination" - ] - }, - { - "text": "Step up its efforts to ratify ICRMW", - "values": [ - "International instruments", - "Labour", - "Migrants" - ] - }, - { - "text": "Redouble its efforts to advance women's rights, including by improving legal systems regulating marriage and family relations in a way that eliminates discrimination against women", - "values": [ - "Women's rights" - ] - }, - { - "text": "Ensure amendments to the Law 84 of 2002 are consistent with Egypt's Constitution and Egypt's international obligations", - "values": [ - "Civil society", - "Freedom of association and peaceful assembly" - ] - }, - { - "text": "Adopt measures to strengthen the administration of justice and the national human rights commission, to enforce the action of the State against organized crime", - "values": [ - "Justice", - "National Human Rights Institution", - "Public security" - ] - }, - { - "text": "Develop and implement the national anti-violence action plan at the earliest possible date", - "values": [ - "Rights of the Child", - "Women's rights" - ] - }, - { - "text": "Recommended as a first step that a moratorium on executions be established", - "values": [ - "Death penalty" - ] - }, - { - "text": "Ratify the International Convention on the Protection of the Rights of All Migrant Workers and Members of Their Families, the International Convention for the Protection of All Persons from Enforced Disappearance and the Optional Protocol to the Convention against Torture", - "values": [ - "Enforced disappearances", - "International instruments", - "Labour", - "Migrants", - "Torture and other CID treatment", - "Treaty bodies" - ] - }, - { - "text": "Strengthen efforts to stop extrajudicial killings and enforced disappearances in the country", - "values": [ - "Enforced disappearances", - "Extrajudicial executions" - ] - }, - { - "text": "Take immediate steps to end the use of torture and other illtreatment of detainees in political prison camps, including forced labour and denial of food quotas", - "values": [ - "Detention", - "Freedom of opinion and expression", - "Labour", - "Right to food", - "Torture and other CID treatment" - ] - }, - { - "text": "Criminalize discrimination based on caste, gender, religion, ethnicity, political belief or disabilities ", - "values": [ - "Disabilities", - "Freedom of association and peaceful assembly", - "Freedom of religion and belief", - "Racial discrimination", - "Women's rights" - ] - }, - { - "text": "Implement recommendations of the United Nations human rights bodies concerning the establishment of an independent national human rights institute in line with the Paris Principles", - "values": [ - "National Human Rights Institution", - "Treaty bodies" - ] - }, - { - "text": "Increase the age of leaving care to 18 years and enact and implement legislation aimed at improving support for children in care as well as after leaving care, in particular with regard to access to education and vocational training", - "values": [ - "Rights of the Child" - ] - }, - { - "text": "Fiji is committed to inviting special mandate holders and will endeavour to invite one special mandate holder per year for key areas which are identified as a priority of the Fijian Government, such as areas concerning socio-economic rights, e.g. sanitation and water.", - "values": [ - "ESC rights - general", - "Right to water and sanitation", - "Special procedures" - ] - }, - { - "text": "Ensure that police conduct is in accordance with international human rights standards through human rights training for all police and security officers", - "values": [ - "Human rights education and training", - "International instruments" - ] - }, - { - "text": "Continue to develop national mechanisms to combat trafficking in human beings, including by conducting a thorough investigation into reports of cases of human trafficking and by establishing a legal framework for the protection of child victims of human trafficking", - "values": [ - "Rights of the Child", - "Trafficking" - ] - }, - { - "text": "Strengthen existing measures to guarantee the adequate functioning of the penitentiary system, including training of personnel, effective separation of executive and judicial powers, establishment of mechanisms for accountability and separation of the civil and military systems of administration of justice ", - "values": [ - "Detention", - "Justice" - ] - }, - { - "text": "Continue efforts to develop its human capital through education, training and empowering vulnerable groups", - "values": [ - "Minorities", - "Right to education" - ] - }, - { - "text": "Continue to protect and promote the rights of migrant workers ", - "values": [ - "Labour", - "Migrants" - ] - }, - { - "text": "Decriminalize sexual activities between consenting adults and raise further awareness to promote tolerance in this area", - "values": [ - "Sexual Orientation and Gender Identity" - ] - }, - { - "text": "Take concrete steps to ensure freedom of the media and investigate any intimidation and\narbitrary detention of journalists and human rights defenders with a view to bringing such practices to\nan end", - "values": [ - "Detention", - "Freedom of the press", - "Human rights defenders" - ] - }, - { - "text": "Redoubling efforts to increase women's representation in society", - "values": [ - "Women's rights" - ] - }, - { - "text": "Adopt comprehensive laws against child labour", - "values": [ - "Labour", - "Rights of the Child" - ] - }, - { - "text": "Ratify the ILO Conventions nos. 169 and 189 ", - "values": [ - "Indigenous peoples", - "International instruments", - "Labour" - ] - }, - { - "text": "Continue strengthening with specific measures the implementation of the two-year programme of action to promote the rights and inclusion of persons with disabilities", - "values": [ - "Disabilities" - ] - }, - { - "text": "Remove all restrictions on girls' access to education ", - "values": [ - "Right to education", - "Rights of the Child", - "Women's rights" - ] - }, - { - "text": "Extend an open invitation to all mechanisms and special procedures mandate holders ", - "values": [ - "Special procedures" - ] - }, - { - "text": "Exhaustively conduct human rights education and awareness-raising activities to inform all citizens of their rights.", - "values": [ - "Human rights education and training" - ] - }, - { - "text": "Invite the Special Rapporteur on the situation of human rights in Eritrea to visit the country ", - "values": [ - "Special procedures" - ] - }, - { - "text": "Ensure that all children are registered at birth and make every effort to register all persons previously not registered ", - "values": [ - "Rights of the Child" - ] - }, - { - "text": "Ratify at the earliest the OP-CAT", - "values": [ - "Detention", - "International instruments", - "Torture and other CID treatment" - ] - }, - { - "text": "Respond positively to requests of visits made by United Nations special procedures and to consider issuing a standing invitation to them", - "values": [ - "Special procedures" - ] - }, - { - "text": "Continue taking further steps at the legislative level, that take into consideration the recent developments and the economic and social conditions of vulnerable families and provide better protection for children", - "values": [ - "Development", - "ESC rights - general", - "Rights of the Child" - ] - }, - { - "text": "Respect all United Nations resolutions and its obligations under international human rights law and international humanitarian law, with a view to guaranteeing fundamental rights and freedoms to all Palestinians in the Occupied Palestinian Territories, including East Jerusalem, by combating all forms of discrimination. and ensure the enjoyment of the rights of the Palestinian people, inter alia, to housing, education, health, freedom of expression and freedom of movement", - "values": [ - "International humanitarian law", - "International instruments" - ] - }, - { - "text": "Take adequate measures to combat racial discrimination in order to combat all forms of such discrimination ", - "values": [ - "Racial discrimination" - ] - }, - { - "text": "Continue pursuing efficient, appropriate policies to provide for a better protection of migrant workers, this most vulnerable workforce ", - "values": [ - "Labour", - "Migrants" - ] - }, - { - "text": "Continue with the reform of the judiciary and civil service and build a State based fully on the rule of law.", - "values": [ - "Justice" - ] - }, - { - "text": "Organize targeted vocational training programmes, in particular for young people, to increase the employability of the members of the Roma community and improve their access to the labour market.", - "values": [ - "Labour", - "Minorities" - ] - }, - { - "text": "Take appropriate measures in the field of education, in particular to combat illiteracy ", - "values": [ - "Right to education" - ] - }, - { - "text": "Impose a nationwide moratorium on executions and commute existing death sentences to imprisonment term with a view to abolish the capital punishment entirely ", - "values": [ - "Death penalty" - ] - }, - { - "text": "Continue the efforts to combat school dropout, in particular in the countryside", - "values": [ - "Right to education" - ] - }, - { - "text": "Significantly improve its cooperation with the United Nations treaty bodies by agreeing on timelines for submitting overdue reports and, if need be, identify needs for assistance to that end ", - "values": [ - "Treaty bodies" - ] - }, - { - "text": "Ratify outstanding core international human rights instruments ", - "values": [ - "International instruments" - ] - }, - { - "text": "Raise the minimum age of marriage to 18 years for both sexes ", - "values": [ - "Rights of the Child" - ] - }, - { - "text": "Accede to the 1951 Convention relating to the Status of Refugees, 1954 Convention relating to the Status of Stateless Persons and 1961 Convention on the Reduction of Statelessness", - "values": [ - "Asylum-seekers - refugees", - "International instruments", - "Statelessness and the right to nationality" - ] - }, - { - "text": "Proceed to adopt a national work plan for children's rights in the juvenile justice system", - "values": [ - "Justice", - "Rights of the Child" - ] - }, - { - "text": "Intensify its efforts to promote economic development", - "values": [ - "Development", - "ESC rights - general" - ] - }, - { - "text": "Fully cooperate with the International Criminal Court and fully align its national legislation with the obligations under the Rome Statute and definitions of crimes and principles ", - "values": [ - "International instruments", - "Justice" - ] - }, - { - "text": "Continue its efforts and its contribution at the international level aimed at strengthening the United Nations human rights machinery, particularly with a view to contributing towards making it function on the basis of non-politicization, respectful dialogue and good faith cooperation and to working towards the realization of the developing countries interests", - "values": [ - "Other" - ] - }, - { - "text": "Strengthen measures to combat racial discrimination, xenophobia and other forms of intolerance, in all aspects of society, including through targeted legislative measures", - "values": [ - "Racial discrimination" - ] - }, - { - "text": "Provide human rights training to law enforcement officials to end incidents of police brutality and excessive use of force", - "values": [ - "Human rights education and training", - "Human rights violations by state agents" - ] - }, - { - "text": "Strengthen equality between men and women, including equality in their rights to an inheritance ", - "values": [ - "Women's rights" - ] - }, - { - "text": "Implement the decision of the Supreme Court of 26 February 2015 [with regard to the incompatibility of the Truth and Reconciliation Commission and the Commission on Disappearances with Nepal's international obligations], as soon as possible", - "values": [ - "Enforced disappearances", - "Justice" - ] - }, - { - "text": "Continue its efforts to widen the protection of human rights and the security of its citizen in the country as a means of consolidating social justice ", - "values": [ - "General" - ] - }, - { - "text": "To call on Malawi to appeal to the international community to fully understand the many challenges faced by the Government of Malawi and consequently provide the necessary technical assistance ", - "values": [ - "Technical assistance and cooperation" - ] - }, - { - "text": "Ensure that the International Commission against Impunity in Guatemala is able to perform its work effectively", - "values": [ - "Impunity" - ] - }, - { - "text": "Maintain education and training in human rights in those programmes for different persons working in the civil service and administration and the population as a whole ", - "values": [ - "Human rights education and training" - ] - }, - { - "text": "Take necessary measures to effectively combat violence against women and girls and enact legislation on domestic violence", - "values": [ - "Rights of the Child", - "Women's rights" - ] - }, - { - "text": "Continue to address the effects of unilateral blockade of the United States of America ", - "values": [ - "Other" - ] - }, - { - "text": "Take the necessary measures to effectively fight against discrimination by public and private actors", - "values": [ - "Other" - ] - }, - { - "text": "The ratification of the Convention on the Rights of Persons with Disabilities", - "values": [ - "Disabilities", - "International instruments" - ] - }, - { - "text": "Ratify the Convention against Torture, and subsequently ensure the adoption of provisions that expressly prohibit torture in police settings", - "values": [ - "Detention", - "International instruments", - "Torture and other CID treatment" - ] - }, - { - "text": "Continue its efforts to implement the National Human Rights Action Plan", - "values": [ - "General" - ] - }, - { - "text": "Ratify the ICPPED and define the crime of enforced disappearances as an offence in view of investigating and punishing such acts of crime", - "values": [ - "Enforced disappearances", - "International instruments" - ] - }, - { - "text": "Continue consultations on the rights of persons with disabilities with a view to implementing non-discriminatory policies and legislation", - "values": [ - "Disabilities" - ] - }, - { - "text": "Consider establishing a National Human Rights Institution and committing to full integration of gender perspective in all efforts vested in the implementation of the Millennium Development Goals", - "values": [ - "Development", - "National Human Rights Institution", - "Women's rights" - ] - }, - { - "text": "Recommend that the use of intimidation against journalists should cease and should lead to a climate of tolerance so that opinions from opposition politicians can be freely expressed", - "values": [ - "Freedom of the press" - ] - }, - { - "text": "Implement effective policies to tackle cases of physical, psychological and sexual abuse against children", - "values": [ - "Rights of the Child" - ] - }, - { - "text": "Adopt and implement comprehensive policy measures, including appropriate awareness-raising campaigns, to overcome negative gender-based stereotypical attitudes about the roles of women ", - "values": [ - "Human rights education and training", - "Women's rights" - ] - }, - { - "text": "Step up efforts to combat trafficking in human beings, including broadening international cooperation on this matter", - "values": [ - "Technical assistance and cooperation", - "Trafficking" - ] - }, - { - "text": "Conduct campaigns for the elimination of discrimination against women.", - "values": [ - "Human rights education and training", - "Women's rights" - ] - }, - { - "text": "Undertake further steps to prevent gender-based violence and combat preventable maternal mortality and morbidity", - "values": [ - "Right to health", - "Women's rights" - ] - }, - { - "text": "Abolish de jure the death penalty and proceed to ratify the Second Optional Protocol to the International Covenant on Civil and Political Rights", - "values": [ - "Death penalty", - "International instruments" - ] - }, - { - "text": "Continue its efforts to reduce the number of children without parental care particularly by stepping up the work already undertaken to overcome this phenomena", - "values": [ - "Rights of the Child" - ] - }, - { - "text": "Continue efforts aimed at reinforcing women's access to positions of responsibility and decision-making", - "values": [ - "Women's rights" - ] - }, - { - "text": "Establish a moratorium on the death penalty as a way of achieving its full abolition", - "values": [ - "Death penalty" - ] - }, - { - "text": "Tackle impunity by investigating and timely prosecuting those responsible for acts of violence and human rights violations, in particular those committed by law enforcement and other authorities, and pay special attention to women and children to avoid that they are subjected to sexual abuse in detention", - "values": [ - "Detention", - "Human rights violations by state agents", - "Impunity", - "Rights of the Child", - "Women's rights" - ] - }, - { - "text": "Put an end to extrajudicial executions and torture, in particular in the context of the fight against drugs", - "values": [ - "Extrajudicial executions", - "Torture and other CID treatment" - ] - }, - { - "text": "Review asylum procedures with a view to expediting the decisions in the cases of children asylum seekers as quickly as possible and facilitating family reunion of vulnerable children in an efficient and appropriate manner ", - "values": [ - "Asylum-seekers - refugees", - "Rights of the Child" - ] - }, - { - "text": "Bring national legislation into line with the international instruments it has ratified", - "values": [ - "International instruments" - ] - }, - { - "text": "Develop appropriate legal frameworks for the enjoyment of the right to work and to just and favourable conditions of work to all migrant workers especially domestic workers", - "values": [ - "Labour", - "Migrants" - ] - }, - { - "text": "Continue to improve employment opportunities and remove barriers to employment for persons with disabilities", - "values": [ - "Disabilities", - "Labour" - ] - }, - { - "text": "Ensure the full enjoyment of freedom of expression for all and protect the freedom of the media ", - "values": [ - "Freedom of opinion and expression", - "Freedom of the press" - ] - }, - { - "text": "Issue a standing invitation to all United Nations special procedure mandate holders", - "values": [ - "Special procedures" - ] - }, - { - "text": "Raise public awareness of hate speech against lesbian, gay, bisexual and transgender persons and take steps to increase reporting of hate crimes against lesbian, gay, bisexual and transgender persons", - "values": [ - "Sexual Orientation and Gender Identity" - ] - }, - { - "text": "Adopt as soon as possible a draft law introducing criminal responsibility for the use of torture by law enforcement officers", - "values": [ - "Human rights violations by state agents", - "Torture and other CID treatment" - ] - }, - { - "text": "Foster its holistic approach on gender equality, in particular empowering women's social and economic rights and fighting domestic violence", - "values": [ - "ESC rights - general", - "Rights of the Child", - "Women's rights" - ] - }, - { - "text": "Respect and promote the democratic principle of the right to participate in public and political life without discrimination, so that everyone can pursue their activities freely and without fear of intimidation ", - "values": [ - "Freedom of association and peaceful assembly" - ] - }, - { - "text": "Promote education for all without discrimination ", - "values": [ - "Right to education" - ] - }, - { - "text": "Continue to work with regional and international partners to ensure amicable solutions to remaining post-referendum issues ", - "values": [ - "Elections" - ] - }, - { - "text": "Take steps to fully implement the Law against Discrimination by introducing additional enabling legislation and strengthening the institution of the Human Rights and Freedoms Ombudsman", - "values": [ - "National Human Rights Institution" - ] - }, - { - "text": "Accede to the following international instruments: Optional Protocol to the Covenant on Civil and Political Rights, Second Optional Protocol to the Covenant on Civil and Political Rights, Optional Protocol to the Convention on the Elimination of Discrimination against Women, Convention against Torture, Optional Protocol to the Convention against Torture, International Convention on the Protection of the Rights of All Migrant Workers and Members of Their Families", - "values": [ - "International instruments" - ] - }, - { - "text": "Continue with efforts to stop the recruitment and use of children in the country and to work closely with the United Nations and other relevant parties to ensure their demobilization ", - "values": [ - "Rights of the Child" - ] - }, - { - "text": "Continue to support programmes that ensure religious coexistence and working on developing an interreligious dialogue", - "values": [ - "Freedom of religion and belief" - ] - }, - { - "text": "Pay increased attention to persons with disabilities and their related needs.", - "values": [ - "Disabilities" - ] - }, - { - "text": "Continue with measures the Government is taking to meet the challenges the country faces in the field of human rights in order to consolidate the progress that has been achieved", - "values": [ - "General" - ] - }, - { - "text": "Adopt legislative measures to counter sexual harassment in the workplace, including penalties and opportunities for women victims to report such situations", - "values": [ - "Women's rights" - ] - }, - { - "text": "Ensure that freedoms of association and peaceful assembly are respected and protected, including by repealing or amending the Suppression of Terrorism Act of 2008 and the Public Order Act", - "values": [ - "Counter-terrorism", - "Freedom of association and peaceful assembly" - ] - }, - { - "text": "Take further measures towards the full realization of the national strategy for the protection of persons with disabilities", - "values": [ - "Disabilities" - ] - }, - { - "text": "In line with an earlier recommendation made by the Human Rights Committee, exercise the full authority of the law and all means at its command, while ensuring respect for human rights, to eradicate the scourge of violence", - "values": [ - "Treaty bodies" - ] - }, - { - "text": "Continue to increase the inputs of financial and human resources into education so as to improve educational standards and reduce drop-out rates", - "values": [ - "Right to education" - ] - }, - { - "text": "Consider issuing, upon request, provisional work permits in favor of asylum seekers", - "values": [ - "Asylum-seekers - refugees" - ] - }, - { - "text": "Ratify CEDAW and CAT", - "values": [ - "International instruments", - "Torture and other CID treatment", - "Women's rights" - ] - }, - { - "text": "Continue to consolidate efforts to combat extreme poverty and improve the economic situation in the country, while ensuring that marginalized sectors, including persons with disabilities and migrants, are given equal and fair access to labour opportunities", - "values": [ - "Disabilities", - "Labour", - "Migrants", - "Poverty" - ] - }, - { - "text": "In line with the commitment to a government more accountable to the citizens, the MSAR Government shall strengthen its accountability system for bureau directors, department heads and division chiefs in systemic and disciplinary terms.", - "values": [ - "Other" - ] - }, - { - "text": "Step up efforts to improve prison conditions and police cells, in order to decongest prisons", - "values": [ - "Detention" - ] - }, - { - "text": "Review the Anti-terrorism Law Number 13, ensuring its compliance with international human rights law", - "values": [ - "Counter-terrorism", - "International instruments" - ] - }, - { - "text": "Finalize and enact draft legislation that prohibit all forms of human trafficking and that trafficking in children is effectively investigated and prosecuted. To this end, we recommend that all law enforcement officers and the judiciary receive adequate training on human trafficking and that protective services are provided to the witnesses and victims of trafficking", - "values": [ - "Rights of the Child", - "Trafficking" - ] - }, - { - "text": "Prepare and adopt national legislation establishing an effective asylum procedure and ensuring protection of all human rights of asylum-seekers.", - "values": [ - "Asylum-seekers - refugees" - ] - }, - { - "text": "Continue its renewed efforts and commitments to lead Nicaragua towards good living, prosperity and happiness, through the paths of reconciliation and national unity, equality, solidarity, sustainable development and further promotion and protection of human rights ", - "values": [ - "General" - ] - }, - { - "text": "Abolish customary laws and practices that establish child marriage and also the payment of a bride price", - "values": [ - "Rights of the Child", - "Women's rights" - ] - }, - { - "text": "Integrate human rights education into the education system and in the military training institutions", - "values": [ - "Human rights education and training" - ] - }, - { - "text": "Ensure that sexual orientation and gender identity are explicitly included throughout the anti-discrimination laws and programmes.", - "values": [ - "Sexual Orientation and Gender Identity" - ] - }, - { - "text": "Pass legislation, namely the Family Violence Bill, to strengthen reporting on, and investigations of, incidents of family violence and increase protections for victims", - "values": [ - "Rights of the Child", - "Women's rights" - ] - }, - { - "text": "Continue its efforts at the international level directed towards the prevention of massive, gross and systematic violations of human rights and promote educational programmes and projects to that effect", - "values": [ - "Human rights education and training", - "Justice" - ] - }, - { - "text": "Continue to take measures to protect children against economic exploitation and violence", - "values": [ - "Rights of the Child", - "Trafficking" - ] - }, - { - "text": "Make further efforts to expand the democratic space for media and civil society, in order to ensure that their freedom of expression is in keeping with international standards", - "values": [ - "Civil society", - "Freedom of opinion and expression", - "Freedom of the press" - ] - }, - { - "text": "Intensify efforts to meet the Millennium Development Goals within the remaining period", - "values": [ - "Development" - ] - }, - { - "text": "Address the high incarceration rate of children, ensure that the privacy of children is protected.", - "values": [ - "Rights of the Child" - ] - }, - { - "text": "Consider ratification of the Optional Protocol to the Convention on the Rights of the Child on a communications procedure", - "values": [ - "International instruments", - "Rights of the Child" - ] - }, - { - "text": "Take further measures to promote and protect the rights of women and children ", - "values": [ - "Rights of the Child", - "Women's rights" - ] - }, - { - "text": "Ensure full birth registration, including by retroactive registration, and access to public services, including to education for children lacking documentation", - "values": [ - "Right to education", - "Rights of the Child", - "Statelessness and the right to nationality" - ] - }, - { - "text": "Enhance access to justice for foreign workers", - "values": [ - "Justice", - "Labour", - "Migrants" - ] - }, - { - "text": "Abolish the death penalty and consider commuting all death sentences imposed on persons convicted of drug offences", - "values": [ - "Death penalty" - ] - }, - { - "text": "Implement the 2008 recommendation of the Human Rights Committee by decriminalizing sexual relations between consenting adults of the same sex ", - "values": [ - "Sexual Orientation and Gender Identity", - "Treaty bodies" - ] - }, - { - "text": "Intensify efforts to create more employment opportunities for all, including the women population", - "values": [ - "Development", - "Women's rights" - ] - }, - { - "text": "Adopt a more supportive policy with regard to human rights defenders and as part of it, form a network of independent and specialized lawyers to provide legal aid for them ", - "values": [ - "Human rights defenders" - ] - }, - { - "text": "Abolish capital punishment and ratify the Second Optional Protocol to the International Covenant on Civil and Political Rights, aiming at the abolition of the death penalty", - "values": [ - "Death penalty", - "International instruments" - ] - }, - { - "text": "Respect and protect the right of human rights defenders and journalists to undertake their legitimate work without the fear of harassment, intimidation or reprisals", - "values": [ - "Freedom of the press", - "Human rights defenders" - ] - }, - { - "text": "Establish a national human rights institution in conformity with the Paris Principles", - "values": [ - "National Human Rights Institution" - ] - }, - { - "text": "Ratify the Optional Protocol of 1999 to CEDAW", - "values": [ - "International instruments", - "Women's rights" - ] - }, - { - "text": "Due to the criminalization of irregular residency in the country, design alternatives for the detention of irregular or undocumented immigrants ", - "values": [ - "Detention", - "Migrants" - ] - }, - { - "text": "Consider the progressive ratification of pending human rights international treaties ", - "values": [ - "International instruments" - ] - }, - { - "text": "Continue taking measures to ensure the right to food for its people and implement MDGs", - "values": [ - "Development", - "Right to food" - ] - }, - { - "text": "Take measures to safeguard the human rights of prisoners, and to separate juvenile and adult prisoners ", - "values": [ - "Detention", - "Rights of the Child" - ] - }, - { - "text": "Explore the possibility of utilizing human rights training and programmes, and other similar efforts to further mainstream the promotion of the rights of women and children", - "values": [ - "Human rights education and training", - "Rights of the Child", - "Women's rights" - ] - }, - { - "text": "Take the necessary measures to ensure that the Child Rights Act of 2003 is incorporated in the legal system of the States and applied by all other entities", - "values": [ - "Rights of the Child" - ] - }, - { - "text": "Conduct effective investigation and where appropriate, bring to justice persons or groups of individuals who incite intolerance and spread racist, xenophobic and anti-Semitic speech", - "values": [ - "Freedom of religion and belief", - "Racial discrimination" - ] - }, - { - "text": "Further improve the birth registration system as to ensure universal birth registration to all children born in the territory of the Republic of Korea, regardless of the status of the parents", - "values": [ - "Rights of the Child", - "Statelessness and the right to nationality" - ] - }, - { - "text": "Continue to take necessary measures to ensure the provision of inclusive quality education to all children including children with disabilities and adopt legislation in this regard", - "values": [ - "Disabilities", - "Right to education", - "Rights of the Child" - ] - }, - { - "text": "Permit unimpeded humanitarian access for civil society, NGOs and United Nations agencies, without threat of harassment or violence, to ensure the provision of vital supplies and assistance to populations in need", - "values": [ - "Civil society" - ] - }, - { - "text": "Publish and implement a plan for human rights defenders addressing how the government will allow them to operate freely, independently without any harassment or interference and with details of how investigations will be pursued", - "values": [ - "Human rights defenders" - ] - }, - { - "text": "Go beyond the advances made in reparations and attention to those who have suffered political violence triggered by non-State actors", - "values": [ - "Other" - ] - }, - { - "text": "Open up channels of dialogue and cooperation with all human rights mechanisms of the United Nations and with OHCHR", - "values": [ - "Special procedures", - "Technical assistance and cooperation", - "Treaty bodies", - "UPR process" - ] - }, - { - "text": "Adopt urgent measures to make progress on the elimination of all forms of discrimination, stigmatization and violence against people on the basis of their sexual orientation and gender identity and to promote the respect of the rights of all persons by society", - "values": [ - "Sexual Orientation and Gender Identity" - ] - }, - { - "text": "Adopt a formal moratorium on the application of the death penalty, while it awaits de jure abolition", - "values": [ - "Death penalty" - ] - }, - { - "text": "Take urgent measures to counter overcrowding, in particular by focusing on alternative measures to detention, and to guarantee the access of prisoners to basic health care and an adequate diet", - "values": [ - "Detention", - "Right to health" - ] - }, - { - "text": "Continue the efforts aimed at strengthening the fight against torture, in compliance with international law ", - "values": [ - "Torture and other CID treatment" - ] - }, - { - "text": "Continue to promote educational strategies that aim to improve the quality of education and increase enrolment rates, especially for women, children from rural areas and the poorest children, in order to avoid their economic exploitation and trafficking", - "values": [ - "Poverty", - "Rights of the Child", - "Trafficking", - "Women's rights" - ] - }, - { - "text": "Continue on its constructive path to promoting equality and non-discrimination ", - "values": [ - "Racial discrimination" - ] - }, - { - "text": "Intensify the dialogue with persons belonging to national minorities on the opportunities for the teaching of and in minority languages and, where appropriate, take the necessary steps to address any shortcomings ", - "values": [ - "Minorities", - "Right to education" - ] - }, - { - "text": "Consider accepting jurisdiction of the Committee against Torture to receive specific cases as well as the ratification of the Optional Protocol to the Convention against Torture (OP-CAT) within a reasonable timeframe", - "values": [ - "Detention", - "International instruments", - "Torture and other CID treatment", - "Treaty bodies" - ] - }, - { - "text": "Continue efforts to promote the status of women in society and their effective participation in the decision-making process of the country ", - "values": [ - "Women's rights" - ] - }, - { - "text": "Speed up the ratification process of the Optional Protocol to the International Covenant on Economic, Social and Cultural Rights, which establishes a communication procedure", - "values": [ - "ESC rights - general", - "International instruments" - ] - }, - { - "text": "Consider enabling children to move between streams at a later age, noting the Special Rapporteur's observation on the right to education and particularly the young age that children are selected for streaming into the academic and non-academic schools", - "values": [ - "Right to education", - "Rights of the Child", - "Special procedures" - ] - }, - { - "text": "Set a time frame for the enactment and implementation of a law on associations which respects international human rights standards", - "values": [ - "Civil society", - "Freedom of association and peaceful assembly", - "International instruments" - ] - }, - { - "text": "Support women\u2019s conflict prevention efforts and provide technical assistance on conflict resolution processes to countries emerging from conflict in order to promote women\u2019s effective participation", - "values": [ - "Women's rights" - ] - }, - { - "text": "Permit the establishment of an OHCHR presence to monitor the human rights situation in the country as well as to take measures to improve the humanitarian access, with particular regards to ensuring that access to vulnerable populations and ensuring the safety of humanitarian workers.", - "values": [ - "Technical assistance and cooperation" - ] - }, - { - "text": "Adopt an indefinite moratorium on the death penalty and commute current convictions to achieve its total abolition ", - "values": [ - "Death penalty" - ] - }, - { - "text": "Decriminalize sexual activity between consenting adults and repeal all provisions of the newly enacted Penal Code that discriminate against women and sexual minorities and introduce cruel or inhuman forms of punishment", - "values": [ - "Sexual Orientation and Gender Identity", - "Torture and other CID treatment", - "Women's rights" - ] - }, - { - "text": "Take the necessary measures to ensure universal birth registration, including for children born out of wedlock and regardless of the parents' immigration status", - "values": [ - "Migrants", - "Rights of the Child", - "Statelessness and the right to nationality" - ] - }, - { - "text": "Consider ratifying the International Convention on the Protection of the Rights of All Migrant Workers and Members of Their Families and International Labour Organization Convention No. 189", - "values": [ - "International instruments", - "Labour", - "Migrants" - ] - }, - { - "text": "Speed up the promulgation of equality laws, specially the revision of the Persons and Family Code, as well as the law on inheritance, matrimonial regimes and gifts and bequests ", - "values": [ - "Women's rights" - ] - }, - { - "text": "Continue guaranteeing the provision of health, food and social protection services in favour of the Nicaraguan people ", - "values": [ - "ESC rights - general", - "Right to food", - "Right to health" - ] - }, - { - "text": "Take all necessary measures to fight against manifestation of religious intolerance and to thoroughly investigate all cases of religious hatred, including acts of vandalism of religious sites", - "values": [ - "Freedom of religion and belief" - ] - }, - { - "text": "Intensify its awareness-raising campaign on the harmful effect of corporal punishment and on the use of alternative and non-violent forms of discipline in a manner consistent with the child's dignity ", - "values": [ - "Human rights education and training", - "Rights of the Child", - "Torture and other CID treatment" - ] - }, - { - "text": "Pursue the full implementation of its expressed commitment to prohibit all forms of violence against women, and to prevent illegal trafficking of women and girls, and take into account in this regard, among others, the recommendations of the United Nations treaty bodies", - "values": [ - "Trafficking", - "Treaty bodies", - "Women's rights" - ] - }, - { - "text": "Implement measures to reduce poverty and instances of social exclusion among indigenous people and Afro-Honduran communities", - "values": [ - "Indigenous peoples", - "Minorities" - ] - }, - { - "text": "Combat and address acts of racial hatred", - "values": [ - "Racial discrimination" - ] - }, - { - "text": "Ratify the main international instruments, in particular the International Covenant on Civil and Political Rights, the International Covenant on Economic, Social and Cultural Rights and the Convention against Torture, and to progress in their implementation.", - "values": [ - "CP rights - general", - "ESC rights - general", - "International instruments", - "Torture and other CID treatment" - ] - }, - { - "text": "Intensify programmes to combat poverty with the assistance of the international community, as needed", - "values": [ - "Poverty" - ] - }, - { - "text": "Improve the organization and management of, and service to pilgrimage to Saudi Arabia to provide convenience and guarantee for Muslims to complete their pilgrimage smoothly", - "values": [ - "Freedom of religion and belief" - ] - }, - { - "text": "Intensify its efforts to respect and uphold freedom of expression, including political expression, and the freedom to manifest one's religious belief, for all its citizens, including by ensuring effective state protection for minorities ", - "values": [ - "Freedom of opinion and expression", - "Freedom of religion and belief", - "Minorities" - ] - }, - { - "text": "Strengthen technical cooperation with United Nations organizations to help address domestic and sexual violence issues, in particular violence against women and girls, and to ensure perpetrators are brought to justice", - "values": [ - "Rights of the Child", - "Technical assistance and cooperation", - "Women's rights" - ] - }, - { - "text": "Expedite a process related to the establishment of the national secretariat for indigenous peoples", - "values": [ - "Indigenous peoples" - ] - }, - { - "text": "Ensure that corporal punishment is explicitly prohibited in all schools and educational institutions and all other institutions and forms of alternative care", - "values": [ - "Rights of the Child" - ] - }, - { - "text": "Strengthen efforts to reduce the maternal mortality rate, giving particular emphasis to reducing the number of deaths caused by unsafe abortions", - "values": [ - "Right to health", - "Women's rights" - ] - }, - { - "text": "Fully align national legislation with the Rome Statute of the International Criminal Court and ratify the Kampala Amendments to the Rome Statute ", - "values": [ - "International instruments", - "Justice" - ] - }, - { - "text": "Continue to guarantee the rights of persons with disabilities, notably by improving their quality of life", - "values": [ - "Disabilities" - ] - }, - { - "text": "Improve equal access to justice, including legal assistance and information and education about legal and human rights, to those who cannot afford private representation ", - "values": [ - "Human rights education and training", - "Justice" - ] - }, - { - "text": "Ensure access to safe abortion services and remove punitive provisions imposed on women who undergo abortions", - "values": [ - "Women's rights" - ] - }, - { - "text": "Continue its efforts to combat racial discrimination and related intolerance ", - "values": [ - "Racial discrimination" - ] - }, - { - "text": "Continue with the fundamental legislative amendments related to human rights", - "values": [ - "General" - ] - }, - { - "text": "Step up cooperation with the relevant international mechanisms, particularly the Committee on the Elimination of Discrimination against Women and the future Working Group of the Human Rights Council to combat discrimination against women in law and practice ", - "values": [ - "Treaty bodies", - "Women's rights" - ] - }, - { - "text": "Withdraw the reservations to articles 26 (c), 37 and 40 of the Convention on the Rights of the Child and ratify the Optional Protocol to the Convention on the Rights of the Child on a communications procedure", - "values": [ - "International instruments", - "Rights of the Child" - ] - }, - { - "text": "Implement a moratorium on the use of the capital punishment with a view to its abolition ", - "values": [ - "Death penalty" - ] - }, - { - "text": "Set up the TRC Follow-up Committee and continue to implement all of the TRC recommendations ", - "values": [ - "Justice" - ] - }, - { - "text": "Intensify its efforts in promoting equal opportunity and treatment for women in other aspects, such as employment, education and family life, as well as to adopt necessary legislation to prohibit and criminalize all forms of violence against women and domestic violence ", - "values": [ - "Women's rights" - ] - }, - { - "text": "Exert all its efforts, in law and practice, to combat racism, xenophobia and Islamophobia, and to eliminate all forms of discrimination against migrants, and to avoid subjecting asylum seekers and stateless persons to prolonged and/or repeat unlawful detention", - "values": [ - "Migrants", - "Racial discrimination" - ] - }, - { - "text": "Confidence-building and stabilization measures: implementation of the action plan for IDPs and conflict-affected communities, including host communities.", - "values": [ - "Internally displaced persons" - ] - }, - { - "text": "Increase efforts to combat all forms of discrimination, intolerance, racism, xenophobia and Islamophobia, including by taking further legislative measures to create policies to combat discrimination in the media and the political arena", - "values": [ - "Freedom of religion and belief", - "Racial discrimination" - ] - }, - { - "text": "Undertake education programmes on a human rights-based handling of asylum-seekers and refugees and build institutional capacity for the development of a national refugee status determination procedure ", - "values": [ - "Asylum-seekers - refugees", - "Human rights education and training" - ] - }, - { - "text": "Continue efforts to reduce illiteracy by implementing measures to ensure girl's and women's access to all levels of education ", - "values": [ - "Right to education", - "Rights of the Child", - "Women's rights" - ] - }, - { - "text": "Further step up its efforts to prevent and eradicate trafficking in persons and consider the possibility of developing a national action plan and of inviting the Special Rapporteur on trafficking in persons, especially in women and children ", - "values": [ - "Rights of the Child", - "Special procedures", - "Trafficking", - "Women's rights" - ] - }, - { - "text": "Ensure by law that employers leave passports in the possession of the workers themselves ", - "values": [ - "Labour" - ] - }, - { - "text": "Norway converts this recommendation [2] into a voluntary commitment, as follows: "Norway is currently in the process of considering ratification of the Optional Protocol to the Convention on Torture and Other Cruel, Inhumane or Degrading Treatment or Punishment. This matter is a high-priority task for the Government."", - "values": [ - "Detention", - "International instruments", - "Torture and other CID treatment" - ] - }, - { - "text": "Continue exerting more efforts to develop law combating trafficking in persons and smuggling of migrants", - "values": [ - "Migrants", - "Trafficking" - ] - }, - { - "text": "Establish a moratorium on the death penalty with a view to its abolition and sign and ratify the ICCPR-OP 2", - "values": [ - "Death penalty", - "International instruments" - ] - }, - { - "text": "Adopt policy and legislative measures to establish a specific framework for the protection against discrimination based on sexual preference along with the abrogation of criminal provisions that criminalize consensual relations between adults of the same sex", - "values": [ - "Sexual Orientation and Gender Identity" - ] - }, - { - "text": "Take the necessary measures to maintain existing and/or set up new anti-violence shelters to assist and protect women victims of violence", - "values": [ - "Women's rights" - ] - }, - { - "text": "Withdraw reservations to the International Covenant on Civil and Political Rights ICCPR, within the context of Human Rights Council resolution 9-12", - "values": [ - "CP rights - general", - "International instruments" - ] - }, - { - "text": "Implement fully the Sexual Offences Act through the national plan for the prevention of sexual violence and the establishment of a unit against sexual offences", - "values": [ - "Rights of the Child", - "Women's rights" - ] - }, - { - "text": "Continue to reinforce actions aimed at protecting children against violence, cruelty, exploitation, demoralisation, neglect and other forms of maltreatment ", - "values": [ - "Rights of the Child" - ] - }, - { - "text": "Continue efforts aimed at fostering inclusive social dialogue with all ethnic groups in Brazilian society", - "values": [ - "Minorities" - ] - }, - { - "text": "Fast-track the process to sign and ratify international treaties related to the Convention on the Elimination of All Forms of Discrimination against Women", - "values": [ - "International instruments", - "Women's rights" - ] - }, - { - "text": "With regard to the concerns expressed in the Italian-Libyan agreement to prevent ships with immigrants from sailing to Italy, to ensure that intercepted persons have access to proper assessment of their asylum claims in accordance with international human rights standards", - "values": [ - "International instruments", - "Migrants" - ] - }, - { - "text": "Continue efforts to address FGM, early marriage, and violence against women and girls which remain deeply rooted, according to reports ", - "values": [ - "Rights of the Child", - "Torture and other CID treatment", - "Women's rights" - ] - }, - { - "text": "Consider the complete abolition of capital punishment in its internal legislation. ", - "values": [ - "Death penalty" - ] - }, - { - "text": "Adopt an action plan to fight racial discrimination", - "values": [ - "Racial discrimination" - ] - }, - { - "text": "Remedy school dropouts, especially in the rural areas", - "values": [ - "Right to education" - ] - }, - { - "text": "Fully address the issue of enforced disappearances in close cooperation with human rights mechanisms", - "values": [ - "Enforced disappearances" - ] - }, - { - "text": "Continue its efforts to strengthen the fight against the discriminations to which women are victims", - "values": [ - "Women's rights" - ] - }, - { - "text": "Ratify the Optional Protocol to the CRC on a communications procedure ", - "values": [ - "International instruments", - "Rights of the Child" - ] - }, - { - "text": "Invest more in the achievement of the MDGs to increase the quality of life and enjoyment of all human rights, particularly cultural, economic and social rights of all Cape Verdeans", - "values": [ - "Development", - "ESC rights - general" - ] - }, - { - "text": "Address issues of environmental degradation and disaster management, in order to ensure the protection of the environment ", - "values": [ - "Environment" - ] - }, - { - "text": "Seek and receive assistance from the international community, in particular the relevant United Nations funds and programmes, to help it achieve MDG 1.", - "values": [ - "Development", - "Technical assistance and cooperation" - ] - }, - { - "text": "Continue efforts to strengthen the right to health and overcome the obstacles that it is facing in this regard", - "values": [ - "Right to health" - ] - }, - { - "text": "Effectively implement existing laws in the area of domestic violence and strengthen the prevention activities and protect victims including through the establishment of protection facilities in remote areas", - "values": [ - "Rights of the Child", - "Women's rights" - ] - }, - { - "text": "Conduct an awareness and education campaign to prevent violence against women and prosecute those who commit crimes of violence against women", - "values": [ - "Human rights education and training", - "Women's rights" - ] - }, - { - "text": "Increase efforts to promote the enjoyment of economic, social and cultural rights", - "values": [ - "ESC rights - general" - ] - }, - { - "text": "Strengthen efforts to protect the rights of people with albinism and other vulnerable and minority groups", - "values": [ - "Minorities" - ] - }, - { - "text": "Continue its efforts to guarantee the rights of women", - "values": [ - "Women's rights" - ] - }, - { - "text": "Take the necessary steps to ensure the prison in Kingstown meets international minimum standards and adheres to the Mandela Rules", - "values": [ - "Detention" - ] - }, - { - "text": "Continue to intensify its efforts to further promote and protect women's rights by allocating the necessary resources and to implement awareness-raising activities on the importance of women's participation in the decision-making process, and to take measures to increase their participation in political and public life ", - "values": [ - "Women's rights" - ] - }, - { - "text": "Continue strengthening the institutional capacity in the human rights sector in the country, particularly through promotion, dissemination and human rights education in the various national institutions, and establish follow-up mechanisms for human rights recommendations", - "values": [ - "Human rights education and training", - "Special procedures", - "Treaty bodies", - "UPR process" - ] - }, - { - "text": "Continue to invest resources to expand social programmes that promote and protect the human rights of older persons in Guatemala, in particular those living in poverty, to allow them to age with dignity", - "values": [ - "Other" - ] - }, - { - "text": "Accept the establishment of a permanent human rights component in the United Nations Mission for the Referendum in Western Sahara (MINURSO), being the only peacekeeping mission not having this component ", - "values": [ - "Other" - ] - }, - { - "text": "Initiation, in 2007, of a review process in Mali within the framework of the New Partnership for Africa's Development (NEPAD) African Peer Review Mechanism", - "values": [ - "Other" - ] - }, - { - "text": "Guarantee to Rohingya and other ethnic minorities the full enjoyment of their civil and political rights, in particular the right to vote in the forthcoming elections", - "values": [ - "CP rights - general", - "Elections", - "Freedom of religion and belief", - "Minorities" - ] - }, - { - "text": "Demonstrate its commitment toward protecting and promoting human rights and fundamental freedoms by acceding to, without delay, the International Covenant on Civil and Political Rights and the International Covenant on Economic, Social and Cultural Rights", - "values": [ - "CP rights - general", - "ESC rights - general", - "International instruments" - ] - }, - { - "text": "Strengthen efforts to reduce poverty in rural areas and bridge the wealth gap between rural and urban areas ", - "values": [ - "Poverty" - ] - }, - { - "text": "Create an independent body to investigate cases of torture and guarantee compensation for victims. Additionally, bring conditions of detention in line with international standards and ensure respect for the judicial guarantees of detainees ", - "values": [ - "Detention", - "Torture and other CID treatment" - ] - }, - { - "text": "Increase its cooperation with the treaty bodies and consider adding to the number of international human rights instruments to which it is a party, for instance, by adhering to ICCPR, CAT and ICERD", - "values": [ - "CP rights - general", - "Racial discrimination", - "Torture and other CID treatment", - "Treaty bodies" - ] - }, - { - "text": "Amend the Law on the Elimination of All Forms of Discrimination to include a mechanism of fines and other sanctions for use by the Public Defender's Office in the event of discriminatory actions", - "values": [ - "Racial discrimination" - ] - }, - { - "text": "Abolish the death penalty and commute to prison terms the death sentences that have already been pronounced", - "values": [ - "Death penalty" - ] - }, - { - "text": "Finalize the new draft Constitution by continuing to adopt an inclusive approach", - "values": [ - "General" - ] - }, - { - "text": "Investigate all cases of xenophobic violence and attacks against migrants", - "values": [ - "Migrants", - "Racial discrimination" - ] - }, - { - "text": "Introduce and implement a comprehensive legal framework to protect women and girls against all forms of gender-based violence and, in particular, introduce legislation that prohibits domestic violence ", - "values": [ - "Rights of the Child", - "Women's rights" - ] - }, - { - "text": "Organize visits of the Special Rapporteurs on contemporary forms of racism, rights of migrants and torture to the country", - "values": [ - "Migrants", - "Racial discrimination", - "Special procedures", - "Torture and other CID treatment" - ] - }, - { - "text": "Develop, in collaboration with the National Commission for Human Rights, an operational and comprehensive human rights strategy", - "values": [ - "National Human Rights Institution" - ] - }, - { - "text": "Share additional information about the Equal Opportunities Act and its targeted groups", - "values": [ - "Minorities", - "Women's rights" - ] - }, - { - "text": "Consider abolishing the death penalty or establishing a moratorium ", - "values": [ - "Death penalty" - ] - }, - { - "text": "Immediately release all children recruited into the Transitional Federal Government's security forces and the establishment of rigorous vetting procedures to ensure that the armed forces and police do not include persons under the age of 18 ", - "values": [ - "Rights of the Child" - ] - }, - { - "text": "Restore Slovenian names to road signs in villages in the Resia-Rezija community", - "values": [ - "Minorities" - ] - }, - { - "text": "Put an end to extra-judicial executions and prosecute the perpetrators of such acts by means of a fair trial", - "values": [ - "Extrajudicial executions", - "Justice" - ] - }, - { - "text": "Legally recognize marriage between persons of the same sex", - "values": [ - "Sexual Orientation and Gender Identity" - ] - }, - { - "text": "Work with religious leaders on an urgent basis to promote religious tolerance, restore inter-religious harmony and to prevent a cycle of violence and reprisals", - "values": [ - "Freedom of religion and belief" - ] - }, - { - "text": "Use all appropriate policies to ensure equal access for everyone to employment, regardless of racial or religious origins ", - "values": [ - "Development", - "Freedom of religion and belief", - "Minorities" - ] - }, - { - "text": "Eliminate all discriminatory elements still present in some state laws", - "values": [ - "Other" - ] - }, - { - "text": "Sign and ratify CRPD and its Optional Protocol ", - "values": [ - "Disabilities", - "International instruments" - ] - }, - { - "text": "Continue to implement the National Social Welfare Policy for Persons with Disabilities", - "values": [ - "Disabilities" - ] - }, - { - "text": "Consider ways forward for the ratification of the International Convention on the Protection of the Rights of All Migrant Workers and Members of Their Families", - "values": [ - "International instruments", - "Labour", - "Migrants" - ] - }, - { - "text": "Sustain efforts to align the domestic legal framework with international human rights standards", - "values": [ - "International instruments" - ] - }, - { - "text": "Continue efforts to provide basic health and education services for vulnerable segments of its population, and continue its commitment to a people-oriented development policy by tackling poverty-related issues through investment in social infrastructure and by addressing the probable shortcomings in this regard ", - "values": [ - "Poverty", - "Right to education", - "Right to health" - ] - }, - { - "text": "Italy worked closely with the UN system and its Treaty Bodies to actively respond to their recommendations. It regularly submitted periodic reports and is committed to submit by 2014 the reports concerning the implementation of ICCPR and CAT.", - "values": [ - "CP rights - general", - "Torture and other CID treatment", - "Treaty bodies" - ] - }, - { - "text": "Fully align its national legislation with all obligations under the Rome Statute including incorporating the Rome Statute definition of crimes and general principles, as well as adopting provisions enabling cooperation with the Court ", - "values": [ - "International instruments", - "Justice" - ] - }, - { - "text": "Adopt political, legislative and administrative measures guaranteeing a higher representation of women in decision-making, as well as in senior positions in all areas of the public administration ", - "values": [ - "Women's rights" - ] - }, - { - "text": "Take measures to eliminate corporal punishment that could lead to torture and cruel, inhuman or degrading treatment for victims, mainly children", - "values": [ - "Rights of the Child", - "Torture and other CID treatment" - ] - }, - { - "text": "Bring its law on mass media in line with international standards on press freedom and ensure that civil society and human rights defenders can peacefully and without fear of arbitrary arrest exercise their right to freedom of expression, assembly and association, in conformity with the International Covenant on Civil and Political Rights", - "values": [ - "Detention", - "Freedom of association and peaceful assembly", - "Freedom of opinion and expression", - "Freedom of the press", - "Human rights defenders", - "International instruments" - ] - }, - { - "text": "Strengthen efforts to fully implement the recommendations adopted by the CRC and to prohibit all forms of violence against children.", - "values": [ - "Rights of the Child", - "Treaty bodies" - ] - }, - { - "text": "Strengthen the independent functioning of the judiciary in order to reduce delays in judicial proceedings, enhance transparency of the processes and guarantee the right to speedy trial", - "values": [ - "Justice" - ] - }, - { - "text": "Step up efforts to ensure the access of all children to quality education, regardless of social status, gender or ethnicity", - "values": [ - "Right to education", - "Rights of the Child" - ] - }, - { - "text": "Guarantee that de facto moratorium on executions will continue and consider abolishing the death penalty ", - "values": [ - "Death penalty" - ] - }, - { - "text": "Take measures to enable Muslims to convert to religions other than Islam and to allow those of other faiths to proselytize", - "values": [ - "Freedom of religion and belief", - "Minorities" - ] - }, - { - "text": "Sign, ratify or accede to the Optional Protocol to the Convention against Torture and Other Cruel, Inhuman or Degrading Treatment or Punishment", - "values": [ - "Detention", - "International instruments", - "Torture and other CID treatment" - ] - }, - { - "text": "Prioritize the implementation of human trafficking protection and rehabilitation programmes ", - "values": [ - "Trafficking" - ] - }, - { - "text": "That the Government has a continued focus on the situation of the San people and their rights in Botswana", - "values": [ - "Indigenous peoples" - ] - }, - { - "text": "Consider the ratification of the Convention on the Protection of the Rights of All Migrant Workers and Members of Their Families ", - "values": [ - "International instruments", - "Labour", - "Migrants" - ] - }, - { - "text": "Sign and ratify the Optional Protocol to the International Covenant on Economic, Social and Cultural Rights, the International Convention for the Protection of All Persons from Enforced Disappearance, as well as intensify its efforts for the prompt ratification of the Convention on the Rights of Persons with Disabilities and its Optional Protocol", - "values": [ - "Disabilities", - "ESC rights - general", - "Enforced disappearances", - "International instruments" - ] - }, - { - "text": "Continue all relevant efforts in order to better address domestic violence", - "values": [ - "Rights of the Child", - "Women's rights" - ] - }, - { - "text": "Continue its efforts to implement the adopted National Strategies aiming at providing further protection and promotion for human rights in the country", - "values": [ - "General" - ] - }, - { - "text": "End the recruitment of children and their participation in armed groups ", - "values": [ - "Rights of the Child" - ] - }, - { - "text": "Continue to eradicate corruption in all its form, through the appropriate legislation", - "values": [ - "Corruption" - ] - }, - { - "text": "End the prevailing climate of impunity regarding violence against women, by ensuring that such cases are investigated thoroughly, that those responsible are brought to justice and that survivors have access to justice, effective remedies and appropriate support services", - "values": [ - "Impunity", - "Women's rights" - ] - }, - { - "text": "The existing women's and children units in the country which are staffed with police officers be strengthened with sufficient human and logistical resources ", - "values": [ - "Rights of the Child", - "Women's rights" - ] - }, - { - "text": "Intensify its efforts to combat all discrimination based on social, racial, ethnic, linguistic and religious grounds ", - "values": [ - "Freedom of religion and belief", - "Minorities", - "Racial discrimination" - ] - }, - { - "text": "Incorporate gender policies in all development plans and projects ", - "values": [ - "Women's rights" - ] - }, - { - "text": "Pursue its efforts in strengthening women's rights, including through the adoption of a draft framework law to combat violence against women", - "values": [ - "Women's rights" - ] - }, - { - "text": "Protect the rights of indigenous peoples through the implementation of prior consultation mechanisms as established in the ILO Indigenous and Tribal Peoples Convention, 1989 (No. 169)", - "values": [ - "Indigenous peoples", - "International instruments" - ] - }, - { - "text": "Take effective measures to reinforce its domestic legislation concerning domestic violence against women.", - "values": [ - "Women's rights" - ] - }, - { - "text": "Consider adopting new specific legislation to strengthen measures aimed at prosecuting offenders and increasing support to victims of sexual violence and abuse and promote awareness raising-campaigns and educational programs, notably in schools", - "values": [ - "Human rights education and training", - "Rights of the Child", - "Women's rights" - ] - }, - { - "text": "Implement training programmes for information technology to help combat electronic crimes", - "values": [ - "Other" - ] - }, - { - "text": "Ratify the Optional Protocol to the Convention against Torture ", - "values": [ - "Detention", - "International instruments", - "Torture and other CID treatment" - ] - }, - { - "text": "Integrate child soldiers in the society and the education system", - "values": [ - "International humanitarian law", - "Right to education", - "Rights of the Child" - ] - }, - { - "text": "Continue consulting and involving indigenous people in all debates and decision-making processes with direct impact on them ", - "values": [ - "Indigenous peoples" - ] - }, - { - "text": "Continue efforts in poverty eradication through effective implementation of its Strategic Framework for Poverty Eradication as well as the National Strategy on Food Security and the Strategy for the Rural Sector", - "values": [ - "Poverty", - "Right to food" - ] - }, - { - "text": "Establish a legal framework on the right to food, building on the draft food and nutrition bill and integrating a gender perspective through a consultative process with relevant stakeholders", - "values": [ - "Right to food", - "Women's rights" - ] - }, - { - "text": "Take all the necessary measures to ensure de jure and de facto gender equality, with special attention to narrowing gaps in the participation in the public sphere and labour market ", - "values": [ - "Women's rights" - ] - }, - { - "text": "Continue its efforts in poverty reduction paying particular attention, inter alia, to vulnerable groups such as children, women, persons with disabilities and ethnic minorities", - "values": [ - "Disabilities", - "Minorities", - "Poverty", - "Rights of the Child", - "Women's rights" - ] - }, - { - "text": "Approve, as soon as possible, the draft law against assault and gender-based political violence", - "values": [ - "Women's rights" - ] - }, - { - "text": "Improve and strengthen good governance, institutions and the rule of law for long-term stability ", - "values": [ - "Justice" - ] - }, - { - "text": "Ensure that appropriate policies and procedures are put in place so that the National Assembly approves, implements and enforces, in a consultative and transparent manner, the six laws replacing Law 30 ", - "values": [ - "Labour" - ] - }, - { - "text": "Speed up internal procedures towards the approval of the draft bill to abolish the death penalty", - "values": [ - "Death penalty" - ] - }, - { - "text": "Enhance efforts by law enforcement authorities to eradicate the practice of female genital mutilation", - "values": [ - "Rights of the Child", - "Torture and other CID treatment", - "Women's rights" - ] - }, - { - "text": "Allocate increased human and financial resources in order to strengthen the independence of its judicial system", - "values": [ - "Justice" - ] - }, - { - "text": "Review its legislation to ensure all forms of hatred against minorities are prohibited by law", - "values": [ - "Minorities" - ] - }, - { - "text": "Continue to actively promote the explicit abolition of corporal punishment against children in its domestic legislation, aiming at its full and complete prohibition", - "values": [ - "Rights of the Child", - "Torture and other CID treatment" - ] - }, - { - "text": "Enhance efforts in the provision of adequate housing for its people", - "values": [ - "Right to housing" - ] - }, - { - "text": "Ensure full enjoyment of human rights and fundamental freedoms by immigrants within the immigration procedure, including their rights for adequate remedies in case of an excess of power by immigration authorities", - "values": [ - "Migrants" - ] - }, - { - "text": "Ensure the swift implementation and enforcement of legislation criminalizing all forms of violence against women, including domestic violence", - "values": [ - "Rights of the Child", - "Women's rights" - ] - }, - { - "text": "Establish a national human rights public body in conformity with the Paris Principles, with the assistance of the international community if necessary ", - "values": [ - "National Human Rights Institution", - "Technical assistance and cooperation" - ] - }, - { - "text": "Undertake measures that would allow citizens to have access to public information, in particular on alleged violations of human rights", - "values": [ - "Freedom of opinion and expression" - ] - }, - { - "text": "Allow and facilitate the visit of special procedures mandate holders who have asked for it", - "values": [ - "Special procedures" - ] - }, - { - "text": "Seek to further targeted technical assistance and capacity-building towards its key initiatives in meeting its human rights obligations at the national, regional and international levels ", - "values": [ - "International instruments", - "Technical assistance and cooperation" - ] - }, - { - "text": "Provide international support to help overcome impediments to the promotion and protection of human rights", - "values": [ - "Technical assistance and cooperation" - ] - }, - { - "text": "Enhance efforts in order to better address the issue of domestic violence", - "values": [ - "Rights of the Child", - "Women's rights" - ] - }, - { - "text": "Examine the possibility of drafting and adopting a special law to combat trafficking in persons", - "values": [ - "Trafficking" - ] - }, - { - "text": "Ratify the Rome Statute establishing the International Criminal Court ", - "values": [ - "International instruments", - "Justice" - ] - }, - { - "text": "Eliminate discriminatory stereotypes based on gender", - "values": [ - "Women's rights" - ] - }, - { - "text": "Strengthen mechanisms to prevent domestic violence, particularly, focusing on awareness-raising to heighten awareness of this issue", - "values": [ - "Human rights education and training", - "Rights of the Child", - "Women's rights" - ] - }, - { - "text": "Take all necessary measures to ensure the protection and non-discrimination of religious minorities, including by immediately ending production of Government-controlled media programmes spreading misinformation about religious minorities and inciting hatred against them", - "values": [ - "Freedom of religion and belief", - "Minorities", - "Racial discrimination" - ] - }, - { - "text": "Continue its efforts in advancing the right to education, including in ensuring access and permanence of education, especially for girls, women and children with disabilities ", - "values": [ - "Disabilities", - "Right to education", - "Rights of the Child", - "Women's rights" - ] - }, - { - "text": "Ratify the core international human rights instruments such as ICPPED", - "values": [ - "Enforced disappearances", - "International instruments" - ] - }, - { - "text": "Appeal to the international community to provide necessary assistance, in accordance with Chad's enormous needs.", - "values": [ - "Technical assistance and cooperation" - ] - }, - { - "text": "Adopt measures to ensure the protection of religious minorities, including Ahmadis, Christians, Hindus and Sikhs, prevent the abuse of blasphemy legislation, halt forced conversions, and take necessary steps to prevent violence against members of religious minority communities", - "values": [ - "Freedom of religion and belief", - "Minorities" - ] - }, - { - "text": "Redouble efforts aimed at fully implementing the Action Programme to Eliminate Child labour in Namibia 2008-2012 ", - "values": [ - "Labour", - "Rights of the Child" - ] - }, - { - "text": "Spare no efforts in creating conditions conducive to the peaceful and democratically credible holding of the 2015 presidential elections, in particular by convening a solid voter registration process reforming as necessary the National Election Commission", - "values": [ - "Elections" - ] - }, - { - "text": "Accede to the Convention on the Protection of the Rights of All Migrant Workers and Members of Their Families as a fundamental step in the protection of human rights ", - "values": [ - "International instruments", - "Labour", - "Migrants" - ] - }, - { - "text": "Seek to protect human rights defenders especially journalists and trade union members", - "values": [ - "Freedom of the press", - "Human rights defenders", - "Labour" - ] - }, - { - "text": "Continue to implement the poverty reduction strategy to further lower the rate of poverty.", - "values": [ - "Poverty" - ] - }, - { - "text": "Establish a national human rights institution, with the support of international technical and financial assistance", - "values": [ - "National Human Rights Institution", - "Technical assistance and cooperation" - ] - }, - { - "text": "Grant the Ecumenical Patriarchate an adequate legal personality", - "values": [ - "Freedom of religion and belief" - ] - }, - { - "text": "Take new actions to put an end to violence against women and to combat trafficking in human beings", - "values": [ - "Trafficking", - "Women's rights" - ] - }, - { - "text": "Take further legislative and policy measures to protect the rights of children, including by ensuring that Liberia meets its obligations under the CRC and the Optional Protocol on the sale of children, child prostitution and child pornography", - "values": [ - "International instruments", - "Rights of the Child", - "Trafficking" - ] - }, - { - "text": "Consider how the riches of the country can best contribute to social and economic rights for all ", - "values": [ - "ESC rights - general" - ] - }, - { - "text": "Continue strengthening the legal safeguards against ill treatment, and pursue efforts to reduce incidents of ill treatment by law enforcement personnel", - "values": [ - "Human rights violations by state agents", - "Torture and other CID treatment" - ] - }, - { - "text": "Increase public awareness campaigns against female genital mutilation", - "values": [ - "Human rights education and training", - "Rights of the Child", - "Torture and other CID treatment", - "Women's rights" - ] - }, - { - "text": "Define racial discrimination as an offence in domestic law in keeping with CERD's observation in 2010", - "values": [ - "Racial discrimination", - "Treaty bodies" - ] - }, - { - "text": "Facilitate immediate access for victims of sexual violence to available services", - "values": [ - "Rights of the Child", - "Women's rights" - ] - }, - { - "text": "Considering ratification of unratified human rights instruments subject to evaluations done by the government", - "values": [ - "International instruments" - ] - }, - { - "text": "Make the necessary declarations under article 41 of ICCPR ", - "values": [ - "CP rights - general", - "International instruments" - ] - }, - { - "text": "Adopt measures aimed at establishing the necessary legal and administrative institutions to guarantee the rights of migrants and asylum seekers, particularly the right to due process and respect for the principle of non-refoulement ", - "values": [ - "Asylum-seekers - refugees", - "Migrants" - ] - }, - { - "text": "Continue with its ongoing impressive efforts to ensure that the bottom 70 per cent of the elderly aged over 65 are provided with basic income, as set out by its basic pension scheme", - "values": [ - "Other" - ] - }, - { - "text": "Sanction very severely cases involving domestic violence and forced marriages, and ensure that there is a proper legal framework for protecting women against violence ", - "values": [ - "Rights of the Child", - "Women's rights" - ] - }, - { - "text": "Strengthen further the capacity of the National Bureau of Gender Policy ", - "values": [ - "Women's rights" - ] - }, - { - "text": "Increase efforts to ensure non-discrimination, particularly in the areas of access to justice, property rights and housing rights", - "values": [ - "Justice", - "Right to housing" - ] - }, - { - "text": "Ratify the United Nations Convention on the Rights of Persons with Disabilities ", - "values": [ - "Disabilities", - "International instruments" - ] - }, - { - "text": "Align its legislation and practice with international standards with regard to prisons.", - "values": [ - "Detention" - ] - }, - { - "text": "Raise the age of criminality", - "values": [ - "Justice", - "Rights of the Child" - ] - }, - { - "text": "Continue its efforts in addressing the increasing anti-Semitic incidents", - "values": [ - "Freedom of religion and belief", - "Racial discrimination" - ] - }, - { - "text": "Review related laws to provide for a better protection and promotion of women's rights ", - "values": [ - "Women's rights" - ] - }, - { - "text": "Further strengthen the successful implementation of the Vision 2030 Strategic Plan, in the fight against poverty", - "values": [ - "Development", - "Poverty" - ] - }, - { - "text": "Switzerland makes a voluntary commitment to ratify the Optional Protocol to the Convention on the Elimination of All Forms of Discrimination against Women.", - "values": [ - "International instruments", - "Women's rights" - ] - }, - { - "text": "Intensify efforts to enhance the independence, efficiency and accountability of the judiciary", - "values": [ - "Justice" - ] - }, - { - "text": "Intensify efforts to improve and ensure access to education for all children and to include human rights subjects in the school curricula", - "values": [ - "Human rights education and training", - "Right to education", - "Rights of the Child" - ] - }, - { - "text": "Further consolidate its successful health programmes that provide medical care that is universal, free and of quality for all Bhutanese", - "values": [ - "Right to health" - ] - }, - { - "text": "Strengthen its efforts to prevent racism and related phenomena ", - "values": [ - "Racial discrimination" - ] - }, - { - "text": "To consider without delay the possibility of establishing an interministerial mechanism to hold regular meetings on the preparation of reports on the human rights situation in France for submission to international bodies, and to examine, in conjunction with the Advisory Commission, modalities for follow-up on recommendations made by those bodies and by the competent national institutions, including the Commission", - "values": [ - "National Human Rights Institution", - "Treaty bodies" - ] - }, - { - "text": "Ratify the Rome Statute of the International Criminal Court and accede to the Agreement on Privileges and Immunities of the Court", - "values": [ - "International instruments", - "Justice" - ] - }, - { - "text": "Develop a national strategy for ensuring the eradication, in law and in practice, of all violence against women, including domestic violence and the practice of female genital mutilation, as recommended by CEDAW ", - "values": [ - "Rights of the Child", - "Torture and other CID treatment", - "Treaty bodies", - "Women's rights" - ] - }, - { - "text": "Eliminate the requirement of regularity to consider acts of domestic violence as a crime from the Law 20.066 on domestic violence ", - "values": [ - "Rights of the Child", - "Women's rights" - ] - }, - { - "text": "Apply the Fourth Geneva Convention in relation to the OPT", - "values": [ - "International humanitarian law", - "International instruments" - ] - }, - { - "text": "Pursue efforts to fully recognize women rights, their empowerment and participation in decision-making", - "values": [ - "Women's rights" - ] - }, - { - "text": "Decriminalize consensual same-sex activity between adults and eliminate legal provisions discriminatory to women and religious, national and other minorities", - "values": [ - "Minorities", - "Racial discrimination", - "Sexual Orientation and Gender Identity", - "Women's rights" - ] - }, - { - "text": "Issue an open and standing invitation to United Nations human rights special procedures mandate holders", - "values": [ - "Special procedures" - ] - }, - { - "text": "Keep on its endeavours on the development of policies in line with the 2012 General Juvenile System development programme ", - "values": [ - "Justice", - "Rights of the Child" - ] - }, - { - "text": "Seek international assistance in order to address the challenges of extreme poverty and HIV-AIDS, in particular to ensure the supply of antiretroviral drugs ", - "values": [ - "HIV - Aids", - "Poverty", - "Technical assistance and cooperation" - ] - }, - { - "text": "Further strengthen efforts to implement the principles contained in the Law on Anti-Discrimination, including by combatting discrimination against members of the LGBT community", - "values": [ - "Sexual Orientation and Gender Identity" - ] - }, - { - "text": "Continue interacting constructively with the special procedure mechanisms of the Human Rights Council", - "values": [ - "Special procedures" - ] - }, - { - "text": "Enhance the legislation on gender and domestic violence by criminalizing sexual harassment in all its forms and by adopting a specific definition of domestic violence as a criminal offence, covering both physical and psychological violence ", - "values": [ - "Women's rights" - ] - }, - { - "text": "Share its experiences and good practices with regard to the right to health, in particular the primary, maternal and child care programs as well as HIV-AIDS control programs and in view of the growing aging population", - "values": [ - "HIV - Aids", - "Right to health", - "Rights of the Child", - "Women's rights" - ] - }, - { - "text": "Protect rights of migrants and their families ", - "values": [ - "Migrants" - ] - }, - { - "text": "Consider the revision of the Investigatory Powers Act 2016 with a view to protecting the right to privacy, including by prohibiting mass surveillance activities and the collection of communications data without warrants", - "values": [ - "Privacy" - ] - }, - { - "text": "Establish the requisite national asylum legislation and refugee status determination procedure in order to uphold its international obligations more fully in the area of refugee protection ", - "values": [ - "Asylum-seekers - refugees" - ] - }, - { - "text": "Consider ratifying the conventions on refugees and on stateless persons and OP-CAT", - "values": [ - "Asylum-seekers - refugees", - "Detention", - "International instruments", - "Statelessness and the right to nationality", - "Torture and other CID treatment" - ] - }, - { - "text": "Take the necessary measures to eliminate cases of torture in prisons", - "values": [ - "Detention", - "Torture and other CID treatment" - ] - }, - { - "text": "Implement laws combating child and early and forced marriage and female genital mutilation", - "values": [ - "Rights of the Child", - "Torture and other CID treatment", - "Women's rights" - ] - }, - { - "text": "Continue efforts to promote and strengthen human rights, in particular by focusing on the economic growth and by improving the well-being of the population", - "values": [ - "ESC rights - general" - ] - }, - { - "text": "Ratify the Optional Protocols to the Convention on the Rights of the Child, as previously recommended", - "values": [ - "International humanitarian law", - "International instruments", - "Labour", - "Rights of the Child", - "Trafficking", - "UPR process" - ] - }, - { - "text": "Continue on the constructive path of promoting equality and non-discrimination, including through advancing the rights of indigenous peoples", - "values": [ - "Indigenous peoples" - ] - }, - { - "text": "Review its Police Act to enhance its citizens' ability to exercise the right to peaceful assembly", - "values": [ - "Freedom of association and peaceful assembly" - ] - }, - { - "text": "Enhance its successful experience in the field of rehabilitation of suspected and imprisoned persons for terrorism and to expand it to other penal affairs and to exchange its experience in this field with other countries ", - "values": [ - "Public security" - ] - }, - { - "text": "Take effective measures to eliminate discrimination against the children of indigenous peoples, in particular the Himba and San communities", - "values": [ - "Indigenous peoples", - "Rights of the Child" - ] - }, - { - "text": "Increase efforts in order not to use declarations of persons affirming having confessed under torture as evidence in judicial procedures, and carry out the corresponding thorough investigations", - "values": [ - "Human rights violations by state agents", - "Justice", - "Torture and other CID treatment" - ] - }, - { - "text": "Take the measures necessary in the context of the judicial reform and the reform of the national judicial council to guarantee the separation of powers and the independence of the judicial system", - "values": [ - "Justice" - ] - }, - { - "text": "Consider enacting legislation that addresses crimes based on sexual orientation", - "values": [ - "Sexual Orientation and Gender Identity" - ] - }, - { - "text": "Continue its efforts in providing access and quality education for children, and implement programmes that would further encourage them, especially girls, to go to school", - "values": [ - "Right to education", - "Rights of the Child", - "Women's rights" - ] - }, - { - "text": "Pursue efforts to eliminate child labour and to enable their reintegration in the school system", - "values": [ - "Labour", - "Right to education", - "Rights of the Child" - ] - }, - { - "text": "Continue measures underway to address land issues, including amending the Prescription Ordinance, whereby displaced landowners will be able to defeat the adverse claims based on the running of time", - "values": [ - "Internally displaced persons", - "Right to land" - ] - }, - { - "text": "Continue the work for eradication of violence against women and children, including sexual violence", - "values": [ - "Rights of the Child", - "Women's rights" - ] - }, - { - "text": "Continue its efforts aimed at ensuring respect for, and eradication of discrimination against, indigenous peoples and persons of African descent, in particular women and girls ", - "values": [ - "Indigenous peoples", - "Racial discrimination", - "Rights of the Child", - "Women's rights" - ] - }, - { - "text": "Continue its fight against any form of violence against children, women, migrants, and persons with disabilities", - "values": [ - "Disabilities", - "Migrants", - "Rights of the Child", - "Women's rights" - ] - }, - { - "text": "Ratify the International Covenant on Economic, Social and Cultural Rights and the Optional Protocol, and opt-in to the enquiry and inter-state mechanisms ", - "values": [ - "ESC rights - general", - "International instruments" - ] - }, - { - "text": "Ratify the International Convention on the Elimination of All Forms of Racial Discrimination", - "values": [ - "International instruments", - "Racial discrimination" - ] - }, - { - "text": "Reinstate the moratorium on the death penalty", - "values": [ - "Death penalty" - ] - }, - { - "text": "Ratify ICCPR-OP2 and abolish the death penalty", - "values": [ - "Death penalty", - "International instruments" - ] - }, - { - "text": "Take concrete steps to assure freedom of expression and to guarantee the protection of peaceful protesters", - "values": [ - "Freedom of association and peaceful assembly", - "Freedom of opinion and expression" - ] - }, - { - "text": "Set up special units in the justice and health systems to deal with gender-based violence and discrimination", - "values": [ - "Rights of the Child", - "Women's rights" - ] - }, - { - "text": "Give due attention to the results of the expert group examining the possibility of the construction of a new prison", - "values": [ - "Detention" - ] - }, - { - "text": "Strengthen its role in maintaining peace and security in the Horn of Africa ", - "values": [ - "Public security" - ] - }, - { - "text": "Ensure that the basic civil and political rights of civil society organizations are protected in line with the obligations set out in the International Covenant on Civil and Political Rights ", - "values": [ - "CP rights - general", - "Civil society", - "International instruments" - ] - }, - { - "text": "Guarantee the constitutional rights of Indigenous peoples including by ensuring the National Indian Foundation has the necessary resources to carry out its work, particularly relating to the demarcation of Indigenous lands, and take measures to conclude investigations into all killings of Indigenous Peoples", - "values": [ - "Indigenous peoples", - "Justice", - "Right to land" - ] - }, - { - "text": "Strengthen the coordination of federal and provincial mechanisms in order to remove disparities in the implementation of anti-racism legislation, policies, and programmes, and ensure the enjoyment on an equal footing within all provinces and territories of the rights set forth in the International Convention on the Elimination of All Forms of Racial Discrimination (ICERD), including by considering to adopt new federal laws", - "values": [ - "International instruments", - "Racial discrimination" - ] - }, - { - "text": "Immediately adopt policies to guide the equitable use of the performance and accountability systems of the State justice institutions", - "values": [ - "Justice" - ] - }, - { - "text": "To the extent possible, and taking into account the human resources constraints, fulfil its reporting obligations to the relevant treaty bodies and to seek assistance from OHCHR in this regard", - "values": [ - "Technical assistance and cooperation", - "Treaty bodies" - ] - }, - { - "text": "Adopt a legal moratorium on the use of death penalty. ", - "values": [ - "Death penalty" - ] - }, - { - "text": "Take further action to prevent impunity of torture and ill treatment and give follow up to the recommendations of the United Nations Special Rapporteur on Torture", - "values": [ - "Impunity", - "Special procedures", - "Torture and other CID treatment" - ] - }, - { - "text": "Ensure that due process of law is observed in all judicial proceedings, including by bringing detainees before an independent judge within 72 hours and by refraining from torture and other cruel, inhuman or degrading treatment in order to extract confessions", - "values": [ - "Detention", - "Justice", - "Torture and other CID treatment" - ] - }, - { - "text": "Intensify efforts to establish a National Human Rights Commission in order to consolidate and secure the gains made in promoting and protecting the human rights of the people of Tuvalu ", - "values": [ - "National Human Rights Institution" - ] - }, - { - "text": "Adopt further measures to combat all forms of discrimination, including discrimination based on sexual orientation and gender identity", - "values": [ - "Sexual Orientation and Gender Identity" - ] - }, - { - "text": "Adopt appropriate measures to disseminate widely and ensure full observance of the Declaration on Human Rights Defenders ", - "values": [ - "Human rights defenders", - "International instruments" - ] - }, - { - "text": "Re-establish, as quickly as possible, the conditions guaranteeing an independent and impartial judiciary", - "values": [ - "Justice" - ] - }, - { - "text": "Become party to the International Convention on the Protection of the Rights of All Migrant Workers and Members of Their Families ", - "values": [ - "International instruments", - "Labour", - "Migrants" - ] - }, - { - "text": "Accede, as accepted during the previous cycle, to the International Convention for the Protection of All Persons from Enforced Disappearance", - "values": [ - "Enforced disappearances", - "International instruments", - "UPR process" - ] - }, - { - "text": "Continue taking measures to promote and empower women and to enable them to participate in a more effective manner in public life", - "values": [ - "Women's rights" - ] - }, - { - "text": "Swiftly decriminalize sexual behaviour between consenting adults of the same sex", - "values": [ - "Sexual Orientation and Gender Identity" - ] - }, - { - "text": "Redouble its efforts to address sexual violence in correction and detention facilities as well as to address the problem of prison conditions, with a view to preserving the rights and dignity of all those deprived of their liberty ", - "values": [ - "Detention" - ] - }, - { - "text": "Take all necessary measures to effectively implement the Child Care and Protection Act", - "values": [ - "Rights of the Child" - ] - }, - { - "text": "Accede to and fully align its national legislation with the Rome Statute of the International Criminal Court", - "values": [ - "International instruments", - "Justice" - ] - }, - { - "text": "Adopt a law on the bar association that recognizes the right of the bar to self-government and guarantees proper representativeness by regular elections and regional representation ", - "values": [ - "Justice" - ] - }, - { - "text": "Incorporate a human rights-based approach in its every effort to achieve sustainable security and development, particularly in anti-terrorism operations", - "values": [ - "Counter-terrorism" - ] - }, - { - "text": "End impunity and ensure that perpetrators of incitement to hatred and violence are brought to justice in compliance with international law", - "values": [ - "Impunity", - "Racial discrimination" - ] - }, - { - "text": "Mainstream climate change in all development activities in view of the situation of Cape Verde", - "values": [ - "Environment" - ] - }, - { - "text": "Ensure nationwide, systematic and regular collection of disaggregated data on all forms of slavery", - "values": [ - "Other" - ] - }, - { - "text": "Adopt legislation that prevents discrimination against women, eliminates female genital mutilation/cutting and prevents forced marriages", - "values": [ - "Rights of the Child", - "Torture and other CID treatment", - "Women's rights" - ] - }, - { - "text": "Allow members of the LGBT communities the right to freedom of expression and assembly ", - "values": [ - "Freedom of association and peaceful assembly", - "Freedom of opinion and expression", - "Sexual Orientation and Gender Identity" - ] - }, - { - "text": "Provide for the effective participation of civil society in the implementation of the women, peace and security agenda", - "values": [ - "Civil society", - "Women's rights" - ] - }, - { - "text": "Intensify current efforts to improve the exercise of the rights of persons with disabilities ", - "values": [ - "Disabilities" - ] - }, - { - "text": "Continue its commitment in assisting the enrolment of poor children in education and ensuring their health care ", - "values": [ - "Right to education", - "Right to health", - "Rights of the Child" - ] - }, - { - "text": "Adopt comprehensive anti-discrimination legislation, including on discrimination based on sexual orientation or gender identity, and repeal any laws which result in, or are likely to result in, the discrimination, prosecution and punishment of people solely for their sexual orientation or gender identity", - "values": [ - "Sexual Orientation and Gender Identity" - ] - }, - { - "text": "Ratify the Rome Statute and take the necessary measures to ensure the full implementation of the Statute in its national legislation", - "values": [ - "International instruments", - "Justice" - ] - }, - { - "text": "Promote the implementation of the police and the judiciary reforms", - "values": [ - "Justice" - ] - }, - { - "text": "End Israeli violations in the Occupied Syrian Golan.", - "values": [ - "General" - ] - }, - { - "text": "Protect and promote cultural rights in order to ensure access for all Cubans to cultural values in all its manifestations ", - "values": [ - "Other" - ] - }, - { - "text": "Ensure the accessibility of school environments, the provision of reasonable accommodation, accessible and adapted materials and curricula, and the compulsory pre-service and in-service training of all teachers on inclusive education and take measures to implement the recommendations of the Committee on the Rights of Persons with Disabilities in this regard", - "values": [ - "Disabilities", - "Right to education", - "Treaty bodies" - ] - }, - { - "text": "Implement the law to establish a national human rights institution consistent with the Paris Principles", - "values": [ - "National Human Rights Institution" - ] - }, - { - "text": "Continue taking active measures aimed at eradicating discrimination against Afro-Brazilian women based on their gender and ethnicity", - "values": [ - "Minorities", - "Racial discrimination", - "Women's rights" - ] - }, - { - "text": "Draft implementation instructions and provide police and the public training on the Domestic Violence Act", - "values": [ - "Human rights education and training", - "Rights of the Child", - "Women's rights" - ] - }, - { - "text": "Exert more efforts to protect cultures, especially those of ethnic minorities, and to promote the protection of cultural relics", - "values": [ - "ESC rights - general", - "Minorities" - ] - }, - { - "text": "Guarantee fully the right to freedoms of assembly, association and expression, in conformity with the International Covenant on Civil and Political Rights ", - "values": [ - "Freedom of association and peaceful assembly", - "Freedom of opinion and expression", - "International instruments" - ] - }, - { - "text": "Adopt measures, together with non-governmental organizations and anticorruption groups, with a view to combating corruption, particularly within the judicial system, in order to promote the respect of human rights.", - "values": [ - "Civil society", - "Corruption" - ] - }, - { - "text": "Ratify the international human rights instruments to which it is not yet party, especially those relating to migrant workers and members of their family ", - "values": [ - "International instruments", - "Labour", - "Migrants" - ] - }, - { - "text": "Evaluate to repeal the criminalization of same-sex relations", - "values": [ - "Sexual Orientation and Gender Identity" - ] - }, - { - "text": "Increase the security in the shelters for unaccompanied migrant children, investigate cases of disappearances of children from these centres", - "values": [ - "Enforced disappearances", - "Migrants", - "Rights of the Child" - ] - }, - { - "text": "Continue its efforts in gender mainstreaming in education and employment", - "values": [ - "Labour", - "Right to education", - "Women's rights" - ] - }, - { - "text": "Continue to mainstream human rights in the public sector ", - "values": [ - "Other" - ] - }, - { - "text": "Prohibit policies and practices of racial segregation that disproportionately affect the Palestinian population in the OPT ", - "values": [ - "Racial discrimination" - ] - }, - { - "text": "Investigate all alleged human rights violations and to bring all those responsible to justice", - "values": [ - "Justice" - ] - }, - { - "text": "Encourage the active participation of the Roma population in the decision-making regarding measures that affect them", - "values": [ - "Minorities" - ] - }, - { - "text": "Amend the relevant laws in order to identify racial discrimination as a criminal offence", - "values": [ - "Racial discrimination" - ] - }, - { - "text": "Continue to promote gender equality and actively implement the national plan for the advancement of Bahraini women 2013-2022", - "values": [ - "Women's rights" - ] - }, - { - "text": "Implement the recommendations of the Committee on the Rights of the Child contained in paragraph 65 of document CRC-C-QAT-CO-2", - "values": [ - "Rights of the Child", - "Treaty bodies" - ] - }, - { - "text": "Develop a redress mechanism to address all forms of discrimination and human rights violations in post-earthquake reconstruction efforts", - "values": [ - "Other" - ] - }, - { - "text": "Recommended that all cases of rape and other forms of sexual violence be investigated in an expeditious, effective and impartial manner by an independent body and that all accused be prosecuted", - "values": [ - "Rights of the Child", - "Women's rights" - ] - }, - { - "text": "Take a comprehensive approach to combating trafficking in women and girls involving source, transit and destination countries.", - "values": [ - "Rights of the Child", - "Trafficking", - "Women's rights" - ] - }, - { - "text": "Strengthen domestic legislations to prevent sexual violence against women and provide necessary support to the victims", - "values": [ - "Women's rights" - ] - }, - { - "text": "Accede to the Rome Statute of the International Criminal Court and ratify the CAT ", - "values": [ - "International instruments", - "Justice", - "Torture and other CID treatment" - ] - }, - { - "text": "Continue to combat maternal and child mortality", - "values": [ - "Right to health", - "Rights of the Child", - "Women's rights" - ] - }, - { - "text": "Take all necessary steps to ensure freedom of speech as guaranteed by international conventions to which the Gambia is a signatory", - "values": [ - "Freedom of opinion and expression", - "International instruments" - ] - }, - { - "text": "Take steps to prevent child, early and forced marriage, including through education and awareness campaigns", - "values": [ - "Human rights education and training", - "Rights of the Child", - "Women's rights" - ] - }, - { - "text": "Establish shelters and other facilities for victims of violence, including domestic and sexual violence, and ensure their adequate medical, psychological, legal and financial support, and combat domestic and sexual violence through, inter alia, public awareness campaigns, education, and the promotion of equal and non-discriminatory access to employment opportunities, health infrastructure, water and sanitation facilities, and justice ", - "values": [ - "Right to water and sanitation", - "Rights of the Child", - "Women's rights" - ] - }, - { - "text": "Continue its efforts in finding ways to improve the protection of children victims of abuse and to enhance family institutions and reinforce moral values as an effective mean to promote and protect child rights", - "values": [ - "Rights of the Child" - ] - }, - { - "text": "Consider re-acceding to the American Convention on Human Rights and accepting the contentions jurisdiction of the Inter American Court of Human Rights", - "values": [ - "International instruments" - ] - }, - { - "text": "Enact legislation to explicitly prohibit corporal punishment of children in all settings, including the home and in schools", - "values": [ - "Rights of the Child", - "Torture and other CID treatment" - ] - }, - { - "text": "Continue making progress on its reform agenda and to become a role model for the region, including through strengthening the independence, effectiveness and transparency of its oversight bodies, and cooperating with the United Nations system", - "values": [ - "Justice", - "Technical assistance and cooperation" - ] - }, - { - "text": "Speed up the implementation of human rights legislations into concrete policies", - "values": [ - "General" - ] - }, - { - "text": "Develop a National Plan of Action on eliminating violence against women and strengthen efforts to fulfil its obligations under CEDAW ", - "values": [ - "International instruments", - "Women's rights" - ] - }, - { - "text": "Examine the possibility of abolishing the death penalty", - "values": [ - "Death penalty" - ] - }, - { - "text": "Finalize the adoption of the National Action Plan on Gender based Violence", - "values": [ - "Women's rights" - ] - }, - { - "text": "Build on reconciliation among different sectors in the society, based on the principles of democracy, rule of law and tolerance, in order to facilitate the political and social stability and economic development", - "values": [ - "Development", - "Justice" - ] - }, - { - "text": "Prepare a draft amendment to the Foreigners Act prohibiting the detention of families with minors and unaccompanied minors for the purposes of return and asylum proceedings", - "values": [ - "Asylum-seekers - refugees", - "Rights of the Child" - ] - }, - { - "text": "Exhaustively investigate the killings of women on gender grounds", - "values": [ - "Women's rights" - ] - }, - { - "text": "Consider the possibility of improving the conditions of detention and of reforming its penitentiary system", - "values": [ - "Detention" - ] - }, - { - "text": "Ensure the Commission's independence in accordance with the Paris Principles", - "values": [ - "National Human Rights Institution" - ] - }, - { - "text": "Continue its efforts to engage with various ethnic groups and address their humanitarian and socio-economic needs as an integral part of its democratization and reconciliation process ", - "values": [ - "Minorities" - ] - }, - { - "text": "Sign and ratify the main regional and international human rights instruments ", - "values": [ - "International instruments" - ] - }, - { - "text": "Guarantee the indigenous people's rights by fully engaging indigenous peoples of the country in decision-making in all the matters that affect them", - "values": [ - "Indigenous peoples" - ] - }, - { - "text": "Take all appropriate actions in order to become a party to the International Covenant on Economic, Social and Cultural Rights", - "values": [ - "ESC rights - general", - "International instruments" - ] - }, - { - "text": "Continue to ratify relevant international conventions", - "values": [ - "International instruments" - ] - }, - { - "text": "Request technical assistance and cooperation, as deemed appropriate, from the international community, including relevant United Nations and other specialized agencies, with a view to ensuring the promotion and protection of the full spectrum of human rights of its people ", - "values": [ - "Technical assistance and cooperation" - ] - }, - { - "text": "Progressively develop existing capacity to effectively tackle modern slavery in fulfilment of its shared treaty obligations, building resilience across the entire Kingdom of the Netherlands", - "values": [ - "International instruments", - "Labour" - ] - }, - { - "text": "Make its immigration procedures more transparent and objective and take concrete measures to avoid the misuse of procedures to profile on the basis of race, religion and origin", - "values": [ - "Migrants" - ] - }, - { - "text": "Extend immediate and unrestricted access to United Nations special procedures and to OHCHR, in order to enable them to carry out their mandates ", - "values": [ - "Special procedures" - ] - }, - { - "text": "Consider the abolishment of the death penalty ", - "values": [ - "Death penalty" - ] - }, - { - "text": "Promote educative programmes to reduce discrimination and prejudicestowards persons with disabilities, and ensure that all members of society, including those with disabilities, are able to enjoy equal participation in the presidential vote in 2010 ", - "values": [ - "Disabilities", - "Elections", - "Human rights education and training" - ] - }, - { - "text": "Accede to CRPD and ICESR.", - "values": [ - "Disabilities", - "ESC rights - general", - "International instruments" - ] - }, - { - "text": "Continue its efforts to implement programmes and activities aimed at adjusting Zambia\u2019s Correctional Service to the United Nations Standard Minimum Rules for the Treatment of Prisoners, including by adequate funding and training of officers", - "values": [ - "Detention" - ] - }, - { - "text": "Sign and ratify the Optional Protocol to the International Covenant on Economic, Social and Cultural Rights, ratify the Optional Protocol to the Convention against Torture and the International Convention for the Protection of All Persons from Enforced Disappearance", - "values": [ - "Detention", - "ESC rights - general", - "Enforced disappearances", - "International instruments", - "Torture and other CID treatment" - ] - }, - { - "text": "Uphold full freedom of expression, via the internet and other forms of media, including by allowing access to social networking and other blocked sites and by ensuring that national and foreign journalists can operate without fear of harassment ", - "values": [ - "Freedom of opinion and expression", - "Freedom of the press" - ] - }, - { - "text": "Continue to attach importance to promoting agricultural production and to strengthening international cooperation so as to reduce hunger and poverty and guarantee people's daily necessities ", - "values": [ - "Poverty", - "Right to food" - ] - }, - { - "text": "Finalize and enact the draft law prohibiting all forms of trafficking and develop formal procedures for identifying trafficking victims among vulnerable populations such as females in prostitution, street children and Pygmies, and train police and social workers to implement these procedures.", - "values": [ - "Human rights education and training", - "Trafficking" - ] - }, - { - "text": "Ensure independent investigations into all cases of torture or unlawful killings and that all those suspected of being responsible are brought to justice in trials that observe international fair trial standards", - "values": [ - "Torture and other CID treatment" - ] - }, - { - "text": "Allocate sufficient budget to the educational system so that all children, particularly the most vulnerable, have access to education", - "values": [ - "Right to education", - "Rights of the Child" - ] - }, - { - "text": "Abrogate or amend the Internal Security Act and all legislation allowing for detention without trial ", - "values": [ - "Detention" - ] - }, - { - "text": "Implement the recommendations of the Committee on Economic, Social and Cultural Rights, specifically recommendations 21 and 22", - "values": [ - "ESC rights - general", - "Treaty bodies" - ] - }, - { - "text": "Prioritize legislation on women's rights and domestic violence, and implement domestic policies aimed at eliminating violence against women ", - "values": [ - "Women's rights" - ] - }, - { - "text": "Adopt a law that guarantees freedom of information", - "values": [ - "Freedom of opinion and expression" - ] - }, - { - "text": "Receive special rapporteurs from the Human Rights Council as well as from the African Commission on Human Rights", - "values": [ - "Special procedures" - ] - }, - { - "text": "Increase the efficiency of court case management, thereby ensuring access to trial without undue delay", - "values": [ - "Justice" - ] - }, - { - "text": "Provide legal assistance and support to victims of domestic violence, including outside of the metropolitan area ", - "values": [ - "Rights of the Child", - "Women's rights" - ] - }, - { - "text": "Request technical assistance from OHCHR regarding the preparation of reports which need to be submitted to treaty bodies ", - "values": [ - "Technical assistance and cooperation", - "Treaty bodies" - ] - }, - { - "text": "Strengthen the literacy programmes for women and girls, in particular in rural areas", - "values": [ - "Right to education", - "Rights of the Child", - "Women's rights" - ] - }, - { - "text": "Establish a moratorium on executions with a view to abolishing the death penalty, and commute sentences to the death penalty to prison terms", - "values": [ - "Death penalty" - ] - }, - { - "text": "Establish a moratorium on the death penalty, as a first step towards complete abolition of this practice and accession to the Second Optional Protocol of the ICCPR ", - "values": [ - "Death penalty", - "International instruments" - ] - }, - { - "text": "Take necessary measures to eradicate the trend and/or the dissemination, through the media and by public officials, of stereotypes that might encourage discrimination against migrants, especially migrant women ", - "values": [ - "Migrants", - "Racial discrimination", - "Women's rights" - ] - }, - { - "text": "Continue its solid efforts to strengthen the protection of the rights of the child, particularly with regard to child trafficking and child sex tourism", - "values": [ - "Rights of the Child", - "Trafficking" - ] - }, - { - "text": "Take concrete measures to improve the protection of women against gender-based violence and to ensure that perpetrators are held accountable ", - "values": [ - "Women's rights" - ] - }, - { - "text": "Step up efforts to combat all forms of discrimination towards women, in particular, by adopting legislation prohibiting traditional harmful practices, such as FGM", - "values": [ - "Torture and other CID treatment", - "Women's rights" - ] - }, - { - "text": "Continue its efforts in preventing and prosecuting hate crimes", - "values": [ - "Racial discrimination" - ] - }, - { - "text": "Strengthen the means and measures to combat violence against women", - "values": [ - "Women's rights" - ] - }, - { - "text": "Consider the possibility of ratifying the International Covenant on Civil and Political Rights and its Optional Protocols, the Convention against Torture and Other Cruel, Inhuman or Degrading Treatment or Punishment and its Optional Protocol, the Optional Protocols to the Convention on the Rights of the Child, the International Convention on the Protection of the Rights of All Migrant Workers and Members of Their Families, the Convention on the Rights of Persons with Disabilities and its Optional Protocol, and the International Convention for the Protection of All Persons from Enforced Disappearance ", - "values": [ - "International instruments" - ] - }, - { - "text": "Continue to take measures for improving quality of education, and reducing inequality of education caused by income level and social status", - "values": [ - "Right to education" - ] - }, - { - "text": "Continue to work closely with civil society to fight the propagation of HIV-AIDS, without which the 6th objective of the MDGs will be difficult to achieve.", - "values": [ - "Civil society", - "HIV - Aids" - ] - }, - { - "text": "Review and repeal all legal provisions which discriminate against women, especially provisions in the Family Code, Penal Code and tax law, with a view to achieving de jure equality", - "values": [ - "Women's rights" - ] - }, - { - "text": "Further improve unemployment insurance and elevate the level of unified planning for unemployment insurance funds", - "values": [ - "Development" - ] - }, - { - "text": "Share its experience with interested countries in the area of fighting corruption", - "values": [ - "Corruption" - ] - }, - { - "text": "Develop and adopt measures to tackle gender-based violence by increasing women's access to justice and widening coverage of community policy and victim support units in rural areas", - "values": [ - "Women's rights" - ] - }, - { - "text": "Revise legislation on abortion to ensure that all women have access to abortion and health care in order to reduce maternal mortality", - "values": [ - "Right to health", - "Women's rights" - ] - }, - { - "text": "Extend the new labour law for the private sector to cover all groups, including domestic workers", - "values": [ - "Labour" - ] - }, - { - "text": "Ensure that all national legislation currently in force relating to children is in conformity with the Convention on the Rights of the Child, guaranteeing that the principles and provisions of that Convention and its protocols are applicable to every child in its territory ", - "values": [ - "International instruments", - "Rights of the Child" - ] - }, - { - "text": "Establish a national human rights institution in accordance with the Paris Principles and begin procedures as soon as possible to have it accredited it by the International Coordinating Committee of National Institutions.", - "values": [ - "National Human Rights Institution" - ] - }, - { - "text": "Consider the possibility of establishing an independent national human rights institution in line with the Paris Principles", - "values": [ - "National Human Rights Institution" - ] - }, - { - "text": "Strengthen the capacity of the Independent National Commission on Human Rights, providing it with the necessary means to allow it to coordinate human rights monitoring, investigation and field activities", - "values": [ - "National Human Rights Institution" - ] - }, - { - "text": "Step up the efforts concerning the investigations of human rights violations and crimes against humanity that occurred during the military dictatorship between 1976 and 1983, and continue the prosecution of those responsible for these violations, strengthening the pillar on memory, truth, justice and reparatory policies of the action plan on human rights", - "values": [ - "Human rights violations by state agents", - "Justice" - ] - }, - { - "text": "Strengthen its policy to fight poverty in rural areas", - "values": [ - "Poverty" - ] - }, - { - "text": "Urgently release those being held in detention or imprisonment for exercising their right to freedom of expression", - "values": [ - "Detention", - "Freedom of opinion and expression" - ] - }, - { - "text": "Expedite the necessary process to ratify the UN Convention on the Rights of Persons with Disabilities and step up its efforts to address specific needs of persons with disabilities", - "values": [ - "Disabilities", - "International instruments" - ] - }, - { - "text": "Allow bloggers, journalists, other internet users and non-governmental organizations (NGOs) to promote and protect human rights specifically by ensuring that laws concerning the Internet comply with the freedom of expression and information", - "values": [ - "Civil society", - "Freedom of opinion and expression", - "Freedom of the press" - ] - }, - { - "text": "Strengthen efforts to eliminate early and forced marriage", - "values": [ - "Rights of the Child", - "Women's rights" - ] - }, - { - "text": "Complete its process to conform the National Human Rights Commission to the Paris Principles ", - "values": [ - "National Human Rights Institution" - ] - }, - { - "text": "Take more steps towards full implementation of CEDAW recommendations ", - "values": [ - "Treaty bodies", - "Women's rights" - ] - }, - { - "text": "Strengthen promotion of healthy lifestyles of adolescents and prevention of harmful habits", - "values": [ - "Other" - ] - }, - { - "text": "Harmonize its domestic legal framework concerning freedom of religion and belief with its international obligations ", - "values": [ - "Freedom of religion and belief" - ] - }, - { - "text": "Decriminalize consensual same-sex activity between adults ", - "values": [ - "Sexual Orientation and Gender Identity" - ] - }, - { - "text": "Ratify international human rights treaties: the Optional Protocol to the Convention against Torture and Other Cruel, Inhuman or Degrading Treatment or Punishment", - "values": [ - "Detention", - "International instruments", - "Torture and other CID treatment" - ] - }, - { - "text": "Establish an official moratorium to abolish the death penalty, as called for in five General Assembly resolutions, including most recently resolution 69/186 of 18 December 2014", - "values": [ - "Death penalty" - ] - }, - { - "text": "Sign the Optional Protocol to the Convention on the Elimination of All Forms of Discrimination against Women.", - "values": [ - "International instruments", - "Women's rights" - ] - }, - { - "text": "Increase efforts to swiftly ratify fundamental treaties on human rights, such as ICCPR and ICESCR, also by taking advantage of the available international technical assistance to address possible shortcomings in fulfilling the requirements of the international treaties ", - "values": [ - "CP rights - general", - "ESC rights - general", - "International instruments", - "Technical assistance and cooperation" - ] - }, - { - "text": "Continue to improve the condition of all migrants, particularly with regard to access to health, education and other social services, and accelerate efforts towards accession to ICRMW ", - "values": [ - "ESC rights - general", - "International instruments", - "Labour", - "Migrants", - "Right to education", - "Right to health" - ] - }, - { - "text": "Implement all the recommendations of the United Nations Committee against Torture ", - "values": [ - "Torture and other CID treatment", - "Treaty bodies" - ] - }, - { - "text": "Abolish definitely the death penalty from its national legislation ", - "values": [ - "Death penalty" - ] - }, - { - "text": "Adopt and implement appropriate, efficient measures ensuring that all allegations of sexual violence against women are properly registered, prosecuted and their perpetrators duly convicted, including a provision of victims' access to redress and social support services ", - "values": [ - "Women's rights" - ] - }, - { - "text": "Adopt a national gender policy and an action plan aimed to ensure equality between men and women within the framework of domestic law ", - "values": [ - "Women's rights" - ] - }, - { - "text": "Adopt legislation providing for the right to collective bargaining and prohibiting acts of anti-union discrimination", - "values": [ - "Freedom of association and peaceful assembly", - "Labour" - ] - }, - { - "text": "Enhance and expand its health-care system to cover the whole country", - "values": [ - "Right to health" - ] - }, - { - "text": "Continue to take steps to uphold freedom of expression by reviewing restrictive articles of its recent Cyber Crime law and consider updating the 1980 Media Law, ensuring that new legislation be aligned with article 19 of the ICCPR ", - "values": [ - "Freedom of opinion and expression", - "Freedom of the press", - "International instruments" - ] - }, - { - "text": "Reinforce policies to fight against human trafficking and migrant smuggling", - "values": [ - "Migrants", - "Trafficking" - ] - }, - { - "text": "Continue and enhance efforts to reduce the poverty level, especially for vulnerable groups, so as to boost employment, improve access to health and increase available social housing.", - "values": [ - "Poverty", - "Right to health", - "Right to housing" - ] - }, - { - "text": "Take measures towards the adherence to the World Health Organization standards on health service delivery", - "values": [ - "Right to health" - ] - }, - { - "text": "Implement the recommendations made by the International Ombudsman Institute on its fact-finding mission to Poland with regard to the Human Rights Commissioner", - "values": [ - "National Human Rights Institution", - "Technical assistance and cooperation" - ] - }, - { - "text": "Strengthen the laws ensuring the reduction of unemployment rates and increase employment opportunities to contribute to the achievement of sustainable development", - "values": [ - "Development" - ] - }, - { - "text": "Review and update the Public Order and Security Act and the Private Voluntary Organizations Act to be in line with international human rights standards", - "values": [ - "Civil society", - "Freedom of opinion and expression", - "International instruments" - ] - }, - { - "text": "Continue to strengthen regulation of the penitentiary facilities to fully ensure the rights of and conditions for detained persons ", - "values": [ - "Detention" - ] - }, - { - "text": "In accordance with national circumstances, continue to strengthen mutual respect and tolerance and different cultures among religions and maintain social plurality while maintaining improved family harmony and respect for women", - "values": [ - "Freedom of religion and belief", - "Women's rights" - ] - }, - { - "text": "Adopt a national strategy on sexual and reproductive health and rights ", - "values": [ - "Right to health", - "Rights of the Child", - "Women's rights" - ] - }, - { - "text": "Improve legislation in the area of the protection of the rights of the national minorities ", - "values": [ - "Minorities" - ] - }, - { - "text": "Continue efforts to ratify the Optional Protocol to the Convention on the Rights of the Child on a communications procedure", - "values": [ - "International instruments", - "Rights of the Child" - ] - }, - { - "text": "Combat discrimination, in particular against minorities and immigrants", - "values": [ - "Migrants", - "Minorities", - "Racial discrimination" - ] - }, - { - "text": "Continue to enhance its institutions in the field of child protection and stop their exploitation", - "values": [ - "Rights of the Child" - ] - }, - { - "text": "Ensure that any legislation, regulation or measures concerning the media fully respect the right to freedom of opinion and expression, including freedom of the media, in accordance with article 19 of ICCPR, including by preserving the ability of the media to investigate and report on public officials without fear of penalty", - "values": [ - "Freedom of opinion and expression", - "Freedom of the press" - ] - }, - { - "text": "Ensure proper investigation, prosecution and adequate sanctions in all cases of human trafficking, including through the training of relevant personnel", - "values": [ - "Trafficking" - ] - }, - { - "text": "Step up efforts towards gender equality", - "values": [ - "Women's rights" - ] - }, - { - "text": "Take concrete measures to guarantee respect for the rights and fundamental freedoms of all the population, and take the necessary actions to investigate and punish those responsible for the kidnapping of refugees, arbitrary detention, torture, executions and enforced disappearances", - "values": [ - "Asylum-seekers - refugees", - "Detention", - "Enforced disappearances", - "Extrajudicial executions", - "Torture and other CID treatment" - ] - }, - { - "text": "Establish a National Mechanism for the Prevention of Torture", - "values": [ - "Detention", - "Torture and other CID treatment" - ] - }, - { - "text": "Complement the efforts necessary to the establishment of the national human rights institution in line with the Paris Principles", - "values": [ - "National Human Rights Institution" - ] - }, - { - "text": "Take necessary steps to prevent torture and other human rights violations by law enforcement and security services, in accordance with Swaziland's obligations under the Convention against Torture and Other Cruel Inhuman or Degrading Treatment or Punishment, including by ensuring impartial investigations of all allegations, prosecuting perpetrators, and implementing human rights training programs ", - "values": [ - "Human rights education and training", - "Human rights violations by state agents", - "International instruments", - "Torture and other CID treatment" - ] - }, - { - "text": "Adopt immediate measures to abolish corporal punishment as a disciplinary measure, and intensify efforts to educate the population on the negative effects of corporal punishment on the development of the child", - "values": [ - "Human rights education and training", - "Rights of the Child", - "Torture and other CID treatment" - ] - }, - { - "text": "Take the necessary legislative measures and enact policies that recognise the diversity of families and provide same sex couples with the same rights and social security benefits as heterosexual couples", - "values": [ - "Sexual Orientation and Gender Identity" - ] - }, - { - "text": "Continue suspending capital death penalties by establishing, as a first step, a moratorium on all executions, and by subsequently abolishing the death penalty completely ", - "values": [ - "Death penalty" - ] - }, - { - "text": "Share experience with states within the region and benefit from their experiences in combating female genital mutilation ", - "values": [ - "Rights of the Child", - "Torture and other CID treatment", - "Women's rights" - ] - }, - { - "text": "Examine the allegations of intimidating independent media by State institutions and ensure that appointments of members of the Broadcasting Council are made with an emphasis on the impartiality and professionalism of the candidates", - "values": [ - "Freedom of the press" - ] - }, - { - "text": "Conclude a thorough and impartial judicial investigation into the acts of violence in Pando", - "values": [ - "Justice" - ] - }, - { - "text": "Make efforts to speedily draft and implement the new law on the right to assembly with fewer demands regarding prior registration and fewer requirements for information concerning, for example, the participants in an assembly, and to clarify policy intentions for State authorities or others entrusted with implementing decisions under the new law", - "values": [ - "Freedom of association and peaceful assembly" - ] - }, - { - "text": "Continue the consideration of ratification of the main international instruments on human rights, notably the ICESCR and ICCPR", - "values": [ - "CP rights - general", - "ESC rights - general", - "International instruments" - ] - }, - { - "text": "Enshrine the right to education in its Constitution and allow pregnant girls to pursue their education in schools of their choice", - "values": [ - "Right to education", - "Rights of the Child", - "Women's rights" - ] - }, - { - "text": "Continue implementing the National Policy on Social Protection to ensure that sustainable development in Saint Lucia is inclusive and equitable", - "values": [ - "Development" - ] - }, - { - "text": "Ensure further effective implementation of the recently established programmes/policies on the protection of the principles and the rights of minorities that requires an equal approach and respect for each minority's different characteristics ", - "values": [ - "Minorities" - ] - }, - { - "text": "Albania has been also committed to strengthen the United Nations human rights system, including boosting the capacity of the Human Rights Council to respond effectively to gross human rights violations, strengthening cooperation with the United Nations human rights mechanisms, working towards further advancement of international human rights norms and standards, strengthening efforts to promote gender equality, empower women and to promote the rights of the most vulnerable groups and strengthening the protection and promotion of the rights of older persons.", - "values": [ - "International instruments", - "Special procedures", - "Treaty bodies", - "UPR process", - "Women's rights" - ] - }, - { - "text": "Respect international provisions in the area of non-discrimination against homosexuals", - "values": [ - "Sexual Orientation and Gender Identity" - ] - }, - { - "text": "Step up its collaborative efforts at the regional and international level, including in the ASEAN-Senior Officials Meeting on Transnational Crimes (SOMTC) Working Group on Trafficking in Persons ", - "values": [ - "Trafficking" - ] - }, - { - "text": "Review and possibly amend media legislation, in particular the 2009 Media Law, in order to lift undue restrictions on journalists ", - "values": [ - "Freedom of the press" - ] - }, - { - "text": "Protect and promote reproductive rights without any discrimination, recognising reproductive rights include the right to the highest attainable standard of sexual and reproductive health, the right of all to decide freely and responsibly the number, spacing and timing of their children, as well as decide on matters related to their sexuality, and to have the information and means to do so free from discrimination, violence or coercion", - "values": [ - "Sexual Orientation and Gender Identity", - "Women's rights" - ] - }, - { - "text": "Further develop, with international support, a human rights training and capacity-building exercise for judiciary and law enforcement personnel.", - "values": [ - "Human rights education and training", - "Technical assistance and cooperation" - ] - }, - { - "text": "Seek out international technical assistance and cooperation and use this to consolidate the National Policy for Children and Youth with an infrastructure that meets its needs and the participation of all sectors in the society in the fight for the recognition of children's rights, with particular attention to those who are placed in a situation of extreme vulnerability ", - "values": [ - "Rights of the Child", - "Technical assistance and cooperation" - ] - }, - { - "text": "Accelerate the process of passing a legislation to reform the mandatory minimum sentences begun with the Smart on Crime initiative", - "values": [ - "Justice" - ] - }, - { - "text": "Take steps to implement a juvenile justice system, and introduce training programmes for all personnel involved in working with children in jail ", - "values": [ - "Human rights education and training", - "Justice", - "Rights of the Child" - ] - }, - { - "text": "Explicitly prohibit all corporal punishment of children in all settings, including the home", - "values": [ - "Rights of the Child", - "Torture and other CID treatment" - ] - }, - { - "text": "Continue to pursue policies with the view of better promoting participation of women in the political life", - "values": [ - "Women's rights" - ] - }, - { - "text": "Be a pioneer country in ratifying the ICRMW", - "values": [ - "International instruments", - "Labour", - "Migrants" - ] - }, - { - "text": "Amend the Protection of Employment Act to include a prohibition against sexual harassment in the workplace", - "values": [ - "Women's rights" - ] - }, - { - "text": "Create a national public service network covering sports for both the urban and rural areas", - "values": [ - "Other" - ] - }, - { - "text": "Adopt a national programme of action on the fight against corruption", - "values": [ - "Corruption" - ] - }, - { - "text": "Take concrete measures to ensure free reporting by the media and ensure due process and the independence of the justice system", - "values": [ - "Freedom of the press", - "Justice" - ] - }, - { - "text": "Continue efforts aimed at acceding to other international conventions, especially ICCPR and ICESCR", - "values": [ - "CP rights - general", - "ESC rights - general", - "International instruments" - ] - }, - { - "text": "Ratify the International Convention on the Protection of the Rights of Migrant Workers and Members of Their Families", - "values": [ - "International instruments", - "Labour", - "Migrants" - ] - }, - { - "text": "Implement a protection policy for human rights defenders, in coordination with civil society", - "values": [ - "Civil society", - "Human rights defenders" - ] - }, - { - "text": "Take effective measures to prevent the excessive use of force and to protect the human rights of persons in detention facilities", - "values": [ - "Detention" - ] - }, - { - "text": "Inform the Council on the relevant mechanisms on the Kingdom's progress in the field of dissemination of human rights culture and human rights education", - "values": [ - "Human rights education and training" - ] - }, - { - "text": "Continue human rights training of police forces.", - "values": [ - "Human rights education and training" - ] - }, - { - "text": "Establish a National Human Rights Institution in full accordance with the Paris Principles", - "values": [ - "National Human Rights Institution" - ] - }, - { - "text": "Guarantee freedom of expression, notably by combating attacks against journalists and ensuring that journalists, opinion makers and members of the political opposition are free to express their views", - "values": [ - "Freedom of association and peaceful assembly", - "Freedom of opinion and expression", - "Freedom of the press" - ] - }, - { - "text": "Allocate the human and technical resources necessary to strengthen the fight against gender violence at all levels of government and the justice system", - "values": [ - "Women's rights" - ] - }, - { - "text": "Continue studying the issue of the accession to the International Convention on the Protection of the Rights of All Migrant Workers and Members of Their Families", - "values": [ - "International instruments", - "Labour", - "Migrants" - ] - }, - { - "text": "Review its legislation in order to protect and promote the right to freedom of opinion and expression, including on the Internet, also providing protection to journalists against harassment by police and other authorities", - "values": [ - "Freedom of opinion and expression", - "Freedom of the press", - "Human rights violations by state agents" - ] - }, - { - "text": "Strengthen its policy for the full guarantee of the rights of the child, with attention to combating child labour and the implementation of the Guidelines for the Alternative Care of Children, in accordance with Human Rights Council resolution 11-7 and draft resolution A-C.3-64-L.50 of the General Assembly. ", - "values": [ - "Rights of the Child" - ] - }, - { - "text": "Open television broadcasting frequencies to private providers ", - "values": [ - "Freedom of the press" - ] - }, - { - "text": "Ratify the OP-CAT as recommended previously in 2009 ", - "values": [ - "Detention", - "International instruments", - "Torture and other CID treatment", - "UPR process" - ] - }, - { - "text": "Undertake measures targeted at vulnerable groups, particularly children, in order to prevent trafficking in human beings for labour and sexual exploitation ", - "values": [ - "Labour", - "Rights of the Child", - "Trafficking" - ] - }, - { - "text": "Intensify its efforts to combat cases of torture and other ill-treatment by state agents, by establishing a training plan in the field of human rights for the State's security forces ", - "values": [ - "Human rights violations by state agents" - ] - }, - { - "text": "Ensure free legal assistance for underprivileged citizens ", - "values": [ - "Justice" - ] - }, - { - "text": "Increase the number of home shelters in order to replace protective custody for women at risk of violence", - "values": [ - "Women's rights" - ] - }, - { - "text": "Continue to improve the training and specialization of investigators, prosecutors and judges to tackle crimes of trafficking in persons, including with a focus on women and children", - "values": [ - "Rights of the Child", - "Trafficking", - "Women's rights" - ] - }, - { - "text": "Take measures to improve the participation of all stakeholders, with a focus on women and indigenous people in decision making processes that could have an impact on future development of rural communities", - "values": [ - "Indigenous peoples", - "Women's rights" - ] - }, - { - "text": "Take all the necessary measures to complete the alignment of its legislation with all the obligations under the Rome Statute of the International Criminal Court", - "values": [ - "International instruments", - "Justice" - ] - }, - { - "text": "Step up its efforts towards the full implementation of the Anti- Human Trafficking Act of 2008, and consider ratifying OP-CRC-AC and OP- CRC-SC", - "values": [ - "International humanitarian law", - "International instruments", - "Rights of the Child", - "Trafficking" - ] - }, - { - "text": "Take further measures to safeguard those Hondurans living abroad, particularly as regards to child's protection, and providing comprehensive protection for migrant boys, girls and non-accompanied adolescents once they are repatriated", - "values": [ - "Migrants", - "Rights of the Child" - ] - }, - { - "text": "Take immediate steps to stop extrajudicial killings and to conduct an independent and impartial inquiry into all enforced disappearances and extrajudicial killings so that the perpetrators of these crimes are brought to justice", - "values": [ - "Enforced disappearances", - "Extrajudicial executions" - ] - }, - { - "text": "Introduce prompt constitutional and legislative measures ensuring that "popular initiatives" do not violate the human rights of certain individuals or groups", - "values": [ - "Other" - ] - }, - { - "text": "Allow international NGOs to visit Bahrain and to carry out their human rights work without restrictions, including by abolishing the current five-day limit for such visits", - "values": [ - "Civil society" - ] - }, - { - "text": "Strengthen the social welfare system to protect children in the most affected communities from harmful practices, violence and exploitation ", - "values": [ - "Rights of the Child", - "Torture and other CID treatment" - ] - }, - { - "text": "Swiftly ratify CEDAW ", - "values": [ - "International instruments", - "Women's rights" - ] - }, - { - "text": "Increase its capacity to prevent child prostitution, protect victims, continue to raise awareness and prosecute perpetrators ", - "values": [ - "Human rights education and training", - "Rights of the Child" - ] - }, - { - "text": "Treat offenders under the age of 18 in police custody and detention differently from adults.", - "values": [ - "Detention", - "Rights of the Child" - ] - }, - { - "text": "Continue efforts to guarantee the representation in political and public life of women belonging to disadvantaged groups like women with disabilities, ethnic minorities, Roma people and migrants", - "values": [ - "Disabilities", - "Migrants", - "Minorities", - "Women's rights" - ] - }, - { - "text": "Adopt the bill on gender equality with a view to ensuring gender parity, particularly in the participation to governance and to the nomination of positions within the public sector", - "values": [ - "Elections", - "Women's rights" - ] - }, - { - "text": "Further improve the administration of justice and the rule of law including by setting up appropriate mechanisms in order to ensure adequate and independent investigation of police use of force, police misconduct and police-related deaths ", - "values": [ - "Human rights violations by state agents", - "Justice" - ] - }, - { - "text": "Continue to make efforts to curb violence against women, especially with regard to the prohibition of female genital mutilation, at the national level", - "values": [ - "Rights of the Child", - "Torture and other CID treatment", - "Women's rights" - ] - }, - { - "text": "Sign, ratify and implement CED as soon as possible and cooperate actively with the Working Group on enforced or involuntary disappearances ", - "values": [ - "Enforced disappearances", - "International instruments", - "Special procedures" - ] - }, - { - "text": "To inform CNCDH, as often as possible in advance, of the preparation of draft laws where the Commission could usefully play its role of providing advice on all matters relating to its area of competence", - "values": [ - "National Human Rights Institution" - ] - }, - { - "text": "Guarantee the protection of all people against enforced disappearances and guarantee the rights of persons with disabilities", - "values": [ - "Disabilities", - "Enforced disappearances" - ] - }, - { - "text": "Enforce the economic independence of women and vulnerable groups by adopting appropriate plans to combat poverty", - "values": [ - "Poverty", - "Women's rights" - ] - }, - { - "text": "Continue efforts undertaken in the promotion of the rights of the Child and, in this regard, to encourage to ratify the two Optional Protocols to the Convention of the Rights of the Child", - "values": [ - "International humanitarian law", - "International instruments", - "Labour", - "Rights of the Child", - "Trafficking" - ] - }, - { - "text": "Take measures to ensure non-discrimination on grounds of sexual orientation and gender identity ", - "values": [ - "Sexual Orientation and Gender Identity" - ] - }, - { - "text": "Repeal sections of the Penal Code that criminalize sexual activities between consenting adults of the same sex and withdraw the two bills currently before the House of Representatives that would further criminalize same-sex relations", - "values": [ - "Sexual Orientation and Gender Identity" - ] - }, - { - "text": "Adopt, in consultation with indigenous peoples, a national action plan for the implementation of the UNDRIP ", - "values": [ - "Indigenous peoples", - "International instruments" - ] - }, - { - "text": "Continue to fight corruption at all levels and to accede to relevant international and regional instruments in this regard.", - "values": [ - "Corruption" - ] - }, - { - "text": "Develop a fully fledged legal aid system in the context of policy custody, to ensure that persons who are not in a position to pay for a lawyer can effectively benefit, if they so wish, from the assistance of a lawyer throughout their police custody ", - "values": [ - "Justice" - ] - }, - { - "text": "Repeal administrative measures that promote acts that undermine human rights, such as incentives for the military in accordance to the number of deaths inflicted in combat.", - "values": [ - "Justice" - ] - }, - { - "text": "Strengthen the work of the Human Rights Commission in line with the Paris Principles ", - "values": [ - "National Human Rights Institution" - ] - }, - { - "text": "Continue its efforts to reduce overcrowding in prisons and improve detention conditions, including by promoting diversion and other alternatives to detention where possible", - "values": [ - "Detention" - ] - }, - { - "text": "Consider ratification of the Council of Europe Convention on Preventing and Combating Violence against Women and Domestic Violence (the Istanbul Convention)", - "values": [ - "International instruments", - "Rights of the Child", - "Women's rights" - ] - }, - { - "text": "Ratify the Optional Protocol to the Convention on the Rights of the Child on the sale of children, child prostitution and child pornography signed in 2000", - "values": [ - "International instruments", - "Rights of the Child", - "Trafficking" - ] - }, - { - "text": "Ratify the Optional Protocol to the International Covenant on Economic, Social and Cultural Rights and accept its procedures on investigation and communications between States ", - "values": [ - "ESC rights - general", - "International instruments" - ] - }, - { - "text": "Guarantee, in its legislation, freedoms of expression, assembly and association, put an end to acts of violence and harassment against independent journalists and human rights defenders and release them, when appropriate ", - "values": [ - "Freedom of association and peaceful assembly", - "Freedom of opinion and expression", - "Freedom of the press", - "Human rights defenders" - ] - }, - { - "text": "Protect women from sexual violence by expanding the scope of the anti-domestic violence law to other situations than cohabitant couples and by explicitly criminalizing marital rape", - "values": [ - "Rights of the Child", - "Women's rights" - ] - }, - { - "text": "Provide training to security forces, prosecutors, judges and social workers to prevent discrimination based on sexual orientation and gender identity", - "values": [ - "Human rights education and training", - "Sexual Orientation and Gender Identity" - ] - }, - { - "text": "Strengthen its work to promote a human rights culture throughout the country and ensure rule of law and equal treatment before the law", - "values": [ - "Human rights education and training", - "Justice" - ] - }, - { - "text": "Consider the possibility of ratifying the International Convention for the Protection of All Persons from Enforced Disappearance (CPED)", - "values": [ - "Enforced disappearances", - "International instruments" - ] - }, - { - "text": "Adopt a definition of torture fully in compliance with article 1 of the Convention against Torture and other Cruel, Inhuman or Degrading Treatment or Punishment ", - "values": [ - "International instruments", - "Torture and other CID treatment" - ] - }, - { - "text": "Consider ratification of the International Covenant on Civil and Political Rights and its second Optional Protocol, with the view of total abolition of the death penalty", - "values": [ - "Death penalty", - "International instruments" - ] - }, - { - "text": "Strengthen existing law and practice to counteract trafficking in human beings for sexual and labour exploitation, particularly of young women", - "values": [ - "Labour", - "Rights of the Child", - "Trafficking", - "Women's rights" - ] - }, - { - "text": "Consider ratifying the Second Optional Protocol to ICCPR and the 1951 Convention relating to the Status of Refugees and its 1967 Protocol ", - "values": [ - "Asylum-seekers - refugees", - "Death penalty", - "International instruments" - ] - }, - { - "text": "Take effective measures to prevent and prohibit racial profiling by the police ", - "values": [ - "Human rights violations by state agents", - "Racial discrimination" - ] - }, - { - "text": "Continue to engage its partners with the view to build capacity and mobilize resources in support of its development efforts and in fulfilling its human rights obligations", - "values": [ - "Technical assistance and cooperation" - ] - }, - { - "text": "Better fight against discrimination against women", - "values": [ - "Women's rights" - ] - }, - { - "text": "Establish a commission to investigate the alleged human rights violations in 2011 and ensure that all perpetrators are brought to justice ", - "values": [ - "Justice" - ] - }, - { - "text": "Further strengthen their cooperation with the treaty bodies of the United Nations", - "values": [ - "Treaty bodies" - ] - }, - { - "text": "Take concrete measures to improve access to decent work for all women, eliminate all discrimination against women at work, and create more socioeconomic opportunities for disenfranchised women", - "values": [ - "Labour", - "Women's rights" - ] - }, - { - "text": "Strengthen measures to combat violence against women, and abuse and neglect of children ", - "values": [ - "Rights of the Child", - "Women's rights" - ] - }, - { - "text": "Continue its efforts to further accelerate its ongoing process to promote and protect human rights and freedoms ", - "values": [ - "General" - ] - }, - { - "text": "Finalize at its earliest the process of appointment of the Ombudsman and ensure that the institution fully complies with the Paris Principles", - "values": [ - "National Human Rights Institution" - ] - }, - { - "text": "Continue to work towards the protection and defence of the rights of migrants", - "values": [ - "Migrants" - ] - }, - { - "text": "Continue its efforts to expand the coverage of and access to basic health services", - "values": [ - "Right to health" - ] - }, - { - "text": "Maintain a public and accessible list of all detainees in the country, including those that were detained for incidents related with the armed conflict", - "values": [ - "Detention" - ] - }, - { - "text": "Ensure universal design and accessibility obligations in voting procedures, including accessible facilities and voting material", - "values": [ - "Elections" - ] - }, - { - "text": "Accelerate the drafting process of a bill on domestic violence and take appropriate measures in order to effectively prevent gender discrimination ", - "values": [ - "Rights of the Child", - "Women's rights" - ] - }, - { - "text": "Ratify CAT as soon as possible", - "values": [ - "International instruments", - "Torture and other CID treatment" - ] - }, - { - "text": "Continue improving the business environment to stimulate job opportunities ", - "values": [ - "Development" - ] - }, - { - "text": "Take further measures to combat trafficking in persons, particularly women and children, and sexual exploitation, by ensuring effective enforcement of the Criminal Act and providing victims with necessary assistance and protection throughout the process of investigation and trial", - "values": [ - "Rights of the Child", - "Trafficking", - "Women's rights" - ] - }, - { - "text": "Reconsider its stance and endorse the United Nations Declaration on the Rights of Indigenous Peoples ", - "values": [ - "Indigenous peoples", - "International instruments" - ] - }, - { - "text": "In light of what is provided in article 7 of the Convention on the Rights of the Child and with the support of the international community, improve the system of birth registration including by intensifying efforts to sensitize and mobilize public opinion regarding the advantages of birth registration in the process of establishing children's identity and the enjoyment of their rights ", - "values": [ - "International instruments", - "Rights of the Child", - "Statelessness and the right to nationality", - "Technical assistance and cooperation" - ] - }, - { - "text": "Continue its efforts in promoting human rights, especially by integrating into school programmes the fundamental principles of human rights and strengthening the education on these rights in parallel campaigns and educational measures", - "values": [ - "Human rights education and training" - ] - }, - { - "text": "Implement the law against corruption", - "values": [ - "Corruption" - ] - }, - { - "text": "Continue its efforts to ensure full access to education", - "values": [ - "Right to education" - ] - }, - { - "text": "Further continue providing capacity building training to law enforcement agencies to raise the level of professionalism and efficiency in carrying out their duties", - "values": [ - "Public security" - ] - }, - { - "text": "Make efforts to guarantee gender wage equality, including those aimed at women\u2019s access to management positions", - "values": [ - "Women's rights" - ] - }, - { - "text": "Establish the national human rights institution in accordance with the Paris Principles ", - "values": [ - "National Human Rights Institution" - ] - }, - { - "text": "Abrogate legislation criminalizing homosexuality, in order to fully respect the principles of equality and non-discrimination for all persons", - "values": [ - "Sexual Orientation and Gender Identity" - ] - }, - { - "text": "Ensure domestic institutions protect, promote and monitor the rights of women and girls and strengthen equality between men and women by ensuring the full participation of women in policy and decision-making processes", - "values": [ - "Rights of the Child", - "Women's rights" - ] - }, - { - "text": "Establish as soon as possible a national human rights institution in accordance with the Paris Principles, with a broad mandate and sufficient resources", - "values": [ - "National Human Rights Institution" - ] - }, - { - "text": "Implement the recommendations of the Special Rapporteur on the question of torture.", - "values": [ - "Special procedures", - "Torture and other CID treatment" - ] - }, - { - "text": "Cooperate with all United Nations special procedures and mechanisms", - "values": [ - "Special procedures" - ] - }, - { - "text": "Intensify efforts to ensure gender equality and eliminate sexual and gender-based violence, including through considering development of a national action plan on implementation of Security Council resolution 1325 (2000)", - "values": [ - "Women's rights" - ] - }, - { - "text": "Include in the plan outlined by the Attorney-General for the early ratification of the Convention on the Rights of Persons with Disabilities measures to increase the proportion of children with disabilities attending school", - "values": [ - "Disabilities", - "International instruments", - "Rights of the Child" - ] - }, - { - "text": "Undertake awareness-raising campaigns to sensitize the security forces and to ensure the effective prosecution of perpetrators of sexual violence ", - "values": [ - "Human rights education and training", - "Rights of the Child", - "Women's rights" - ] - }, - { - "text": "Adopt comprehensive legislation on the prohibition of racial discrimination and xenophobia", - "values": [ - "Racial discrimination" - ] - }, - { - "text": "Adopt and implement the plan of action against early marriages", - "values": [ - "Rights of the Child" - ] - }, - { - "text": "Expand possibilities for the education of minorities, including learning minority languages, promoting identities and supporting minority cultures ", - "values": [ - "Minorities", - "Right to education" - ] - }, - { - "text": "Accelerate the procedure relating to the abolition of the death penalty, as quickly as possible", - "values": [ - "Death penalty" - ] - }, - { - "text": "Take concrete measures to improve services for migrants and to ensure full respect of the human rights of migrants.", - "values": [ - "Migrants" - ] - }, - { - "text": "Review its practice of returning aliens to regions where they may encounter real risks of persecution or serious harm, particularly in Iraq ", - "values": [ - "Asylum-seekers - refugees" - ] - }, - { - "text": "Take all necessary practical measures to tackle forced labour, modern slavery and human trafficking in line with the 2014 Protocol to the Forced Labour Convention, 1930 (No. 29)", - "values": [ - "Labour", - "Trafficking" - ] - }, - { - "text": "Pursue the implementation of strategies and action plans in favour of the socio-economic and cultural development", - "values": [ - "ESC rights - general" - ] - }, - { - "text": "Take measures to address the high repetition rates and the high dropout levels in schools, especially of girls in vulnerable situations or facing multiple forms of discrimination, as recommended by the Committee on the Elimination of Discrimination against Women, including further incentives for parents to send their children, boys and girls, to school.", - "values": [ - "Right to education", - "Rights of the Child", - "Treaty bodies", - "Women's rights" - ] - }, - { - "text": "Take necessary measures for strengthening its specialized juvenile justice system in compliance with the Convention on the Rights of the Child", - "values": [ - "International instruments", - "Justice", - "Rights of the Child" - ] - }, - { - "text": "Ensure that children with disabilities are protected from all forms of violence and receive suitable inclusive education and training", - "values": [ - "Disabilities", - "Right to education", - "Rights of the Child" - ] - }, - { - "text": "Adopt legislative, administrative and financial arrangements to ensure the independence of the Judiciary and abolish any power of appointment, rating and control by the Executive on judges and on the High Council of the Judiciary ", - "values": [ - "Justice" - ] - }, - { - "text": "Continue its efforts to achieve sustainable economic development, improving education and training, protection and empowerment of vulnerable groups, such as women and the poor ", - "values": [ - "Development", - "Poverty", - "Right to education", - "Women's rights" - ] - }, - { - "text": "Strengthen educational measures and intensify cooperation with civil society organizations and the media, with a view to eradicating traditional stereotypes that perpetuate discrimination and violence against women", - "values": [ - "Civil society", - "Human rights education and training", - "Women's rights" - ] - }, - { - "text": "Strengthen the implementation of the second National Human Human Rights Plan of Action by all relevant Government agencies ", - "values": [ - "General" - ] - }, - { - "text": "Adopt specific law on domestic violence ", - "values": [ - "Rights of the Child", - "Women's rights" - ] - }, - { - "text": "Repeal the Amendment of slavery against agricultural workers, especially women and children", - "values": [ - "Labour", - "Rights of the Child", - "Women's rights" - ] - }, - { - "text": "Further continue boosting the birth registration rate by the existing nationwide awareness campaigns among the citizens", - "values": [ - "Human rights education and training", - "Rights of the Child", - "Statelessness and the right to nationality" - ] - }, - { - "text": "Take measures to limit the use of pretrial detention and improve conditions of detention", - "values": [ - "Detention" - ] - }, - { - "text": "Adopt the necessary measures to guarantee access to justice for women", - "values": [ - "Justice", - "Women's rights" - ] - }, - { - "text": "Widen the access to legal assistance for prisoners, and continue to assist with their rehabilitation into society to reduce recidivism", - "values": [ - "Detention" - ] - }, - { - "text": "Concentrate more resources for the assurance of economic and social rights and for the implementation of MDGs, in particular in the fields of education, healthcare and social security", - "values": [ - "ESC rights - general", - "Right to education", - "Right to health" - ] - }, - { - "text": "Implementing the 11 steps towards a country free of domestic violence as part of the strategy for life and living together to which the Government has committed itself", - "values": [ - "Rights of the Child", - "Women's rights" - ] - }, - { - "text": "Review practices of detention without a court order and address the issue of unduly protracted detentions", - "values": [ - "Detention" - ] - }, - { - "text": "Adopt a comprehensive national action plan on the prevention of racism, racial discrimination, xenophobia and intolerance as recommended by the Committee on the Rights of the Child", - "values": [ - "Racial discrimination", - "Treaty bodies" - ] - }, - { - "text": "Amend domestic legislation to remove all forms of gender-based discrimination and protect the rights of women and children", - "values": [ - "Rights of the Child", - "Women's rights" - ] - }, - { - "text": "Ensure that the education system has all means to implement an inclusive education policy, since a high percentage of children with disabilities is currently excluded from the school system ", - "values": [ - "Disabilities", - "Right to education", - "Rights of the Child" - ] - }, - { - "text": "Continue efforts to improve the status of women and to empower them.", - "values": [ - "Women's rights" - ] - }, - { - "text": "Launch information campaigns about HIV/AIDS, through the media and through door to door action on how to prevent the transmission of the virus, namely by the use of condoms", - "values": [ - "HIV - Aids" - ] - }, - { - "text": "Maintain and strengthen efforts towards the establishment of a fully fledged National Human Rights Institution ", - "values": [ - "National Human Rights Institution" - ] - }, - { - "text": "Establish a fully independent electoral commission allowing for open participation of all political parties and objective certification of election results", - "values": [ - "Elections" - ] - }, - { - "text": "Intensify its efforts for the promotion of gender equality consistent with the obligations of Afghanistan under CEDAW, including through the review and elimination of laws, customs and practices that lead to discrimination against women and girls, making available effective legal remedies for the victims of discrimination and violence, and actively promoting the participation of women and girls in different fields such as education, labour and political life.", - "values": [ - "International instruments", - "Rights of the Child", - "Women's rights" - ] - }, - { - "text": "Ensure that the draft Law on Preventing and Combatting Discrimination is adopted without delay", - "values": [ - "Other" - ] - }, - { - "text": "Consider the withdrawal of reservations to CEDAW Convention", - "values": [ - "International instruments", - "Women's rights" - ] - }, - { - "text": "Redouble its efforts to ratify the Convention against Torture and Other Cruel, Inhuman or Degrading Treatment or Punishment", - "values": [ - "International instruments", - "Torture and other CID treatment" - ] - }, - { - "text": "Continue cooperating with the Human Rights Council and its mechanisms ", - "values": [ - "Special procedures", - "UPR process" - ] - }, - { - "text": "Strengthen efforts to integrate Roma and Sinti communities through positive action in the areas of education, employment, housing and social services", - "values": [ - "Minorities" - ] - }, - { - "text": "Review the current regional offshore processing arrangement, and policy of mandatory detention of refugees, stateless persons and migrants, and uphold all human rights obligations towards refugees, stateless persons and migrants, including the principle of non-refoulement", - "values": [ - "Asylum-seekers - refugees", - "Detention", - "Migrants", - "Statelessness and the right to nationality" - ] - }, - { - "text": "Enact laws and policies to combat the problem of sexual harassment in the workplace and in public life", - "values": [ - "Women's rights" - ] - }, - { - "text": "Adopt a new national plan of action on children with adequate follow-up mechanisms for full implementation", - "values": [ - "Rights of the Child" - ] - }, - { - "text": "Revise its asylum law to be consistent with the recommendations of the Swiss Refugee Aid on care and support for unaccompanied minor asylum seekers", - "values": [ - "Asylum-seekers - refugees" - ] - }, - { - "text": "Revise the national list of safe countries in order to avoid the high number of unadmitted requests that have been pointed out by the Helsinki Committee of Hungary", - "values": [ - "Asylum-seekers - refugees" - ] - }, - { - "text": "Continue empowering women, children and underprivileged sections of society ", - "values": [ - "Rights of the Child", - "Women's rights" - ] - }, - { - "text": "Consider issuing standing invitations to all Special Procedures", - "values": [ - "Special procedures" - ] - }, - { - "text": "Extend an open and permanent invitation to all special procedures, and respond positively to requests for visits not yet agreed upon ", - "values": [ - "Special procedures" - ] - }, - { - "text": "Review existing restrictions on freedom of expression, participation in the political process and the media, and amend or abolish any undue or excessive restrictions which may exist ", - "values": [ - "Freedom of opinion and expression", - "Freedom of the press" - ] - }, - { - "text": "Accede to the Rome Statute and fully align its national legislation with the Statute", - "values": [ - "International instruments", - "Justice" - ] - }, - { - "text": "Repeal sections 61 and 62 of the "Offences Against the Persons Act 1861", which criminalize consensual same-sex relations", - "values": [ - "Sexual Orientation and Gender Identity" - ] - }, - { - "text": "Continue their active partnership with the international communities in the field of humanitarian affairs", - "values": [ - "Technical assistance and cooperation" - ] - }, - { - "text": "Consider enhancing cooperation with countries of origin of migrant workers including on refining the process aimed at protecting such workers from exploitation, with a view to better managing the broad range of challenges in dealing with migrant workers ", - "values": [ - "Labour", - "Migrants" - ] - }, - { - "text": "Consider ratifying the Optional Protocol to CAT", - "values": [ - "Detention", - "International instruments", - "Torture and other CID treatment" - ] - }, - { - "text": "Recognize the competence of the treaty bodies to receive and examine complaints from individuals, by ratifying the relevant treaties", - "values": [ - "International instruments", - "Treaty bodies" - ] - }, - { - "text": "Consider signing and ratifying the International Covenant on Economic, Social and Cultural Rights ", - "values": [ - "ESC rights - general", - "International instruments" - ] - }, - { - "text": "Strengthen public education initiatives to ensure citizens are aware of rights associated with the new Anti-Discrimination Law and continue to promote equality through appropriate legislation, policy and practice ", - "values": [ - "Human rights education and training" - ] - }, - { - "text": "Continue reforms with a view to ensuring the promotion and the enjoyment of human rights for the Saudi people", - "values": [ - "General" - ] - }, - { - "text": "Ratify ICESCR and ICCPR at the earliest possible date ", - "values": [ - "CP rights - general", - "ESC rights - general", - "International instruments" - ] - }, - { - "text": "Ensure that any reform of the juvenile justice system explicitly takes into account the differentiated needs of girls and boys ", - "values": [ - "Justice", - "Rights of the Child" - ] - }, - { - "text": "Take the necessary measures to guarantee its citizens' right to equality before the law, to be presumed innocent until proven guilty, and to a fair and public trial, as well as the right to freedom from arbitrary arrest or detention ", - "values": [ - "Detention", - "Justice" - ] - }, - { - "text": "Make sure all women and young girls have easy access to information on crisis pregnancy options by health-providers", - "values": [ - "Right to health", - "Rights of the Child", - "Women's rights" - ] - }, - { - "text": "Investigate all cases of domestic violence, in collaboration with the civil society engaged in this field and todevelop a comprehensive national strategy to facilitate equal access of girls and women to all levels and fields of education", - "values": [ - "Civil society", - "Right to education", - "Rights of the Child", - "Women's rights" - ] - }, - { - "text": "Favourably consider ratifying ICRMW", - "values": [ - "International instruments", - "Labour", - "Migrants" - ] - }, - { - "text": "Continue raising awareness of trafficking in persons and migrant workers, particularly women and children, who are a vulnerable group in the society and deserve all possible help", - "values": [ - "Labour", - "Migrants", - "Rights of the Child", - "Trafficking", - "Women's rights" - ] - }, - { - "text": "Consider participation of the Parliament in a human rights commissioner's appointment process ", - "values": [ - "Other" - ] - }, - { - "text": "Investigate, prosecute and punish all cases of summary and extrajudicial executions, and provide adequate compensation to victims ", - "values": [ - "Extrajudicial executions" - ] - }, - { - "text": "Take further steps in fighting against domestic violence, including by raising public awareness ", - "values": [ - "Human rights education and training", - "Rights of the Child", - "Women's rights" - ] - }, - { - "text": "Complete the process of aligning national legislation with its obligations under the Rome Statute and the CAT", - "values": [ - "International instruments", - "Justice", - "Torture and other CID treatment" - ] - }, - { - "text": "Continue its efforts aimed at promoting education in rural areas, in particular for women, as contained in the Ninth Strategic Development Plan, as well as extending this plan if necessary ", - "values": [ - "Right to education", - "Women's rights" - ] - }, - { - "text": "Consider improving the basic pension scheme for the elderly, in consultation with their representatives within the associations, so as to guarantee them sufficient resources to cover their living expenses", - "values": [ - "Other" - ] - }, - { - "text": "Prohibit Government employees from requesting guardians' permission to allow women to conduct official business, particularly in situations such as filing complaints for domestic violence", - "values": [ - "Women's rights" - ] - }, - { - "text": "Take effective measures to reduce child marriage", - "values": [ - "Rights of the Child" - ] - }, - { - "text": "Establish mechanisms for the independent appointment and dismissal of judges and for the punishment of corruption among judges, and expand efforts to protect judges from insurgent attacks and to increase salaries for judges, prosecutors and members of the Ministry of Justice.", - "values": [ - "Corruption", - "Justice" - ] - }, - { - "text": "Adopt an Organization for Security and Cooperation in Europe High Commissioner on National Minorities-compliant strategy on national minorities as soon as possible, in order to clearly affirm the commitment of the Republic of Moldova to national minorities' rights", - "values": [ - "Minorities" - ] - }, - { - "text": "Sign and ratify CAT, CED and ratify CRPD ", - "values": [ - "Disabilities", - "Enforced disappearances", - "International instruments", - "Torture and other CID treatment" - ] - }, - { - "text": "Eliminate the persistent wage gap for labour between women and men by eliminating the significant segregation between the genders on the labour market", - "values": [ - "Women's rights" - ] - }, - { - "text": "Ratify at its earliest opportunity other core human rights instruments, particularly, those to which it is already a signatory, namely CEDAW, Convention on the Rights of the Child, ICESCR, and the Convention on the Rights of Persons with Disabilities", - "values": [ - "Disabilities", - "ESC rights - general", - "International instruments", - "Rights of the Child", - "Women's rights" - ] - }, - { - "text": "Take the necessary steps to accede or ratify the core international human rights instruments that they are not yet acceded to", - "values": [ - "International instruments" - ] - }, - { - "text": "With the objective of establishing a national human rights institution in accordance with the Paris Principles, ask for the assistance of OHCHR.", - "values": [ - "National Human Rights Institution", - "Technical assistance and cooperation" - ] - }, - { - "text": "Encourage the National Assembly to pass legislation that would enable Armenia to more fully comply with its international human rights obligations, including expanding the definition of torture in its domestic law to include crimes committed by public officials in their official capacities, and criminalizing domestic violence", - "values": [ - "Human rights violations by state agents", - "International instruments", - "Rights of the Child", - "Torture and other CID treatment", - "Women's rights" - ] - }, - { - "text": "Ensure that violence directed against political activists, regardless of political affiliation, and human rights defenders will not be tolerated and that perpetrators will be held accountable in accordance with the law", - "values": [ - "Freedom of association and peaceful assembly", - "Human rights defenders" - ] - }, - { - "text": "Strengthen procedures for the investigation and punishment of any misconduct by police, prison and judicial personnel, including through strengthening the overview role of the Ombudsman.", - "values": [ - "Human rights violations by state agents", - "National Human Rights Institution" - ] - }, - { - "text": "Bring to justice all alleged perpetrators of extrajudicial executions, acts of torture, ill treatment, rape and other grave human rights violations - ensure that victims of these violations benefit from full reparation and that families of those who died receive adequate compensation - and reinforce the protection of vulnerable groups, particularly women ", - "values": [ - "Extrajudicial executions", - "Rights of the Child", - "Torture and other CID treatment", - "Women's rights" - ] - }, - { - "text": "Increase the percentage of the national budget for health to 15 per cent as per the Abuja Declaration on Roll Back Malaria in Africa", - "values": [ - "Right to health" - ] - }, - { - "text": "Consider establishing the post of an ombudsman to coordinate and monitor the performance of its institutions, assess the outcome and impact of various initiatives, and provide periodic reports", - "values": [ - "National Human Rights Institution" - ] - }, - { - "text": "Continue strengthening national democratic institutions ", - "values": [ - "General" - ] - }, - { - "text": "Continue the efforts to promote in the international agenda the issue of the fight against trafficking in persons", - "values": [ - "Trafficking" - ] - }, - { - "text": "Sustain its efforts with regard to health and education", - "values": [ - "Right to education", - "Right to health" - ] - }, - { - "text": "Increase the participation of its citizens in governance in line with the pledge in the previous round of the universal periodic review and support the National Human Rights Commission", - "values": [ - "Civil society", - "National Human Rights Institution", - "UPR process" - ] - }, - { - "text": "Adopt measures to guarantee that statutory law prevails in case of conflict with customary practices, especially in family relations, implement awareness campaigns to better inform persons regarding the rights enshrined in CEDAW, provide training for customary and traditional courts administrators regarding CEDAW as well as statutory law which promotes and guarantees the rights of women and girls, including with respect to marriage and family relations", - "values": [ - "International instruments", - "Women's rights" - ] - }, - { - "text": "Take practical measures to collect and publish statistics on racist incidents, and based on data collection ", - "values": [ - "Racial discrimination" - ] - }, - { - "text": "Take targeted measures or affirmative action, where necessary, to ensure active participation of women in the labour market and to close the wage gap between women and men.", - "values": [ - "Women's rights" - ] - }, - { - "text": "Continue its efforts in the field of education and human rights training particularly for law enforcement officers", - "values": [ - "Human rights education and training" - ] - }, - { - "text": "Standardize the legal requirements for migrant workers, taking into account the time of residence, in particular with regard to the obligation to pass the exam of knowledge of the Russian language ", - "values": [ - "Labour", - "Migrants" - ] - }, - { - "text": "Establish guidelines on the procedure to be followed to ensure that foreigners with no legal residency can request judicial review of the administrative expulsion orders", - "values": [ - "Migrants" - ] - }, - { - "text": "Guarantee women's representation in all decision-making levels in line with the United Nations Security Council Resolution 1325 and related resolutions as well as on the Convention of the Elimination of All Forms of Discrimination against Women ", - "values": [ - "International instruments", - "Women's rights" - ] - }, - { - "text": "Decriminalize consensual homosexual relations between adults", - "values": [ - "Sexual Orientation and Gender Identity" - ] - }, - { - "text": "Pay attention to the effects of climate change on environment and social development", - "values": [ - "Environment" - ] - }, - { - "text": "Establish a moratorium with a view to abolishing the death penalty and ratifying the Second Optional Protocol of ICCPR", - "values": [ - "Death penalty", - "International instruments" - ] - }, - { - "text": "Enhance efforts to curb hate crimes against certain religious communities, ethnic groups and other minorities including indigenous people", - "values": [ - "Freedom of religion and belief", - "Indigenous peoples", - "Minorities", - "Racial discrimination" - ] - }, - { - "text": "Expedite the process for drafting and adopting legislation on the punishment of torture", - "values": [ - "Torture and other CID treatment" - ] - }, - { - "text": "Allocate the resources necessary for the successful realization of the Strategy of the Health Protection System 2014-2020, which is aimed at strengthening maternal and child health", - "values": [ - "Right to health", - "Rights of the Child", - "Women's rights" - ] - }, - { - "text": "Prohibit corporal punishment by law, protect victims, and punish perpetrators ", - "values": [ - "Torture and other CID treatment" - ] - }, - { - "text": "Continue the dialogue with Haiti and the efforts made to date, with the support of the international community, in order to deal with the migration problems affecting the Dominican Republic ", - "values": [ - "Migrants", - "Technical assistance and cooperation" - ] - }, - { - "text": "Accede to the first Optional Protocol to the International Covenant on Civil and Political Rights", - "values": [ - "CP rights - general", - "International instruments" - ] - }, - { - "text": "Continue to take measures to ensure the social protection of the most vulnerable groups of the population, including persons with disabilities and the elderly ", - "values": [ - "Disabilities" - ] - }, - { - "text": "Improve detention conditions, in particular by allowing all detainees to refer their case to a judge and by abolishing all forms of arbitrary or secret detention ", - "values": [ - "Detention" - ] - }, - { - "text": "Improve the conditions in correctional and other detention facilities", - "values": [ - "Detention" - ] - }, - { - "text": "Pursue efforts to adopt international human rights instruments to which the country is not yet a party", - "values": [ - "International instruments" - ] - }, - { - "text": "Strengthen institutional capacities to investigate and prosecute all allegations of corruption and mismanagement of funds", - "values": [ - "Corruption" - ] - }, - { - "text": "Address the specific needs of children with disabilities in all areas, in particular education", - "values": [ - "Disabilities", - "Right to education", - "Rights of the Child" - ] - }, - { - "text": "Speedily enact the respective policies and bills on legal aid and transitional justice to fulfil the constitutional mandate to provide justice for all", - "values": [ - "Justice" - ] - }, - { - "text": "Ensure that the draft law on ensuring equal rights and equal opportunities for men and women is finalized in accordance with international protection standards and that it is adopted as soon as possible ", - "values": [ - "Women's rights" - ] - }, - { - "text": "Define torture according to article 1 of the CAT", - "values": [ - "International instruments", - "Torture and other CID treatment" - ] - }, - { - "text": "Ensure the principle of equality before the law and respect for the fundamental rights of all citizens without distinction of any kind, such as sex, race, religion or belief ", - "values": [ - "Freedom of religion and belief", - "Minorities", - "Racial discrimination", - "Women's rights" - ] - }, - { - "text": "Refrain from adopting the discriminatory draft law on "formation of positive attitude to non-traditional sexual relations"", - "values": [ - "Sexual Orientation and Gender Identity" - ] - }, - { - "text": "Provide greater protections and assistance for member of vulnerable groups and uphold the rights of vulnerable groups by combating gender-based violence, child labour, statelessness, and human trafficking more broadly ", - "values": [ - "Rights of the Child", - "Statelessness and the right to nationality", - "Trafficking", - "Women's rights" - ] - }, - { - "text": "Become party to the Convention on the Rights of Persons with Disabilities ", - "values": [ - "Disabilities", - "International instruments" - ] - }, - { - "text": "Recommended that the issue of improvement of women's rights to be considered as one of the main priorities in the Government's human rights policies.", - "values": [ - "Women's rights" - ] - }, - { - "text": "Allow protest actions in Baku city in accordance with Resolution 1917 of January 2013 of the Parliamentary Assembly of the Council of Europe", - "values": [ - "Freedom of association and peaceful assembly" - ] - }, - { - "text": "Continue to take action at all levels to address the interlinked root causes of preventable mortality and morbidity of children under 5 and consider applying the "Technical guidance on the application of a human rights-based approach to the implementation of policies and programmes to reduce and eliminate preventable mortality and morbidity of children under 5 years of age", A/HRC/27/31", - "values": [ - "Right to health", - "Rights of the Child" - ] - }, - { - "text": "Ratify the Convention against Torture and Other Cruel, Inhuman or Degrading Treatment or Punishment and other international instruments as soon as possible and as a priority.", - "values": [ - "International instruments", - "Torture and other CID treatment" - ] - }, - { - "text": "Revise the Internet Law so that the powers of the authorities to block or remove the Internet content are exercised strictly in line with international standards on the right to freedom of expression and ensure that the internet can serve as a platform for free exchange of information, including dissenting views", - "values": [ - "Freedom of opinion and expression" - ] - }, - { - "text": "Ratify the International Convention on the Protection of the Rights of all Migrant Workers and Members of their Families", - "values": [ - "International instruments", - "Labour", - "Migrants" - ] - }, - { - "text": "Facilitate the access to UNHCR", - "values": [ - "Asylum-seekers - refugees" - ] - }, - { - "text": "Continue to take measures to increase the representation and participation of persons with disabilities", - "values": [ - "Disabilities" - ] - }, - { - "text": "Decriminalize sexual activities between consenting adults of the same sex, as previously recommended", - "values": [ - "Sexual Orientation and Gender Identity", - "UPR process" - ] - }, - { - "text": "Take further steps to improve equality between women and men", - "values": [ - "Women's rights" - ] - }, - { - "text": "Expand human rights education for law enforcement officers", - "values": [ - "Human rights education and training" - ] - }, - { - "text": "Provide more allocations for social expenditures that could sufficiently benefit women and children, in particular, from the poor, rural and vulnerable sections of society.", - "values": [ - "Rights of the Child", - "Women's rights" - ] - }, - { - "text": "Strengthen implementation of the human right to sanitation at the national level as well as the promotion of hygiene", - "values": [ - "Right to health", - "Right to water and sanitation" - ] - }, - { - "text": "Ratify the CAT, clearly criminalize torture and ban all kinds of corporal punishment", - "values": [ - "International instruments", - "Torture and other CID treatment" - ] - }, - { - "text": "Speed up internal discussions for the early signing and ratification of OPCAT and establish, accordingly, the national prevention mechanism ", - "values": [ - "Detention", - "International instruments", - "Torture and other CID treatment" - ] - }, - { - "text": "Continue efforts to protect effectively women, children, and ethnic minorities\u2019 rights, and combat discrimination they are facing", - "values": [ - "Minorities", - "Racial discrimination", - "Rights of the Child", - "Women's rights" - ] - }, - { - "text": "Agree to the re-establishment of an international human rights monitoring presence in the country.", - "values": [ - "Technical assistance and cooperation" - ] - }, - { - "text": "Ramp up the quality and access to health care and legal services in rural areas", - "values": [ - "Right to health" - ] - }, - { - "text": "Continue harmonizing its legislation with international human rights treaties by taking into consideration specificities of its society and requirement of modernization", - "values": [ - "International instruments" - ] - }, - { - "text": "Work for more diversified ownership of the media, and thoroughly investigate cases of intimidation-harassment against journalists, in order to fully ensure freedom of the press", - "values": [ - "Freedom of the press" - ] - }, - { - "text": "Intensify efforts to fight racism and xenophobia", - "values": [ - "Racial discrimination" - ] - }, - { - "text": "Measurably improve access to the legal system for Roma individuals and other individuals belonging to groups facing discrimination, and carry out a campaign to increase awareness among these minorities of their rights and means of redress when infringements occur", - "values": [ - "Minorities", - "Racial discrimination" - ] - }, - { - "text": "Eliminate religious discrimination in access to education", - "values": [ - "Freedom of religion and belief", - "Racial discrimination", - "Right to education" - ] - }, - { - "text": "Ratify the OP-CAT and work towards the establishment of a national preventive mechanism in line with the Optional Protocol", - "values": [ - "Detention", - "International instruments", - "Torture and other CID treatment" - ] - }, - { - "text": "Continue its efforts in the fight against slavery and human trafficking, promoting a culture of respect, equality and tolerance", - "values": [ - "Trafficking" - ] - }, - { - "text": "Consider establishing legislation defining and prohibiting discrimination in all forms.", - "values": [ - "Other" - ] - }, - { - "text": "Step up necessary measures to promote equality between men and women, strengthen the ongoing efforts in prevention of domestic violence, and ensure the adequate representation of women in high-level policy and decision-making institutions ", - "values": [ - "Women's rights" - ] - }, - { - "text": "Increase measures on the right to education to ensure equal access to education for all children ", - "values": [ - "Right to education", - "Rights of the Child" - ] - }, - { - "text": "Adopt a national legislation complying with international human rights standards, to ensure freedom of assembly as enshrined in the Constitution, in particular by guaranteeing human rights NGOs the right to freely carry out their activities", - "values": [ - "Civil society", - "Freedom of association and peaceful assembly", - "International instruments" - ] - }, - { - "text": "Improve conditions in Swaziland's prisons and detentions centres", - "values": [ - "Detention" - ] - }, - { - "text": "Ensure the allocation of adequate resources to the Counselling Center against Domestic Violence, in order to enable its full functioning", - "values": [ - "Rights of the Child", - "Women's rights" - ] - }, - { - "text": "Become a party to OP-CEDAW", - "values": [ - "International instruments", - "Women's rights" - ] - }, - { - "text": "Continue giving due attention to the issue of violence against children by ensuring effective implementation of the Strategy for Preventing and Combating Violence against Children", - "values": [ - "Rights of the Child" - ] - }, - { - "text": "Develop a national strategy to tackle modern slavery, including ratification of the 2014 ILO protocol to the Forced Labour Convention, and increased efforts to protect rural workers and women at risk of trafficking", - "values": [ - "Labour", - "Trafficking", - "Women's rights" - ] - }, - { - "text": "Continue its progressive efforts and measures to implement the second NHRAP", - "values": [ - "General" - ] - }, - { - "text": "Adopt specific legislation on violence against women and forced marriages, in conformity with CEDAW and CRC, in order to prevent and to combat discrimination against women", - "values": [ - "International instruments", - "Rights of the Child", - "Women's rights" - ] - }, - { - "text": "Strengthen efforts to increase women's access to health-care facilities and medical assistance in order to address the prevailing high maternal mortality rate", - "values": [ - "Right to health", - "Women's rights" - ] - }, - { - "text": "Intensify efforts to ratify the Optional Protocol to the Convention against Torture and Other Cruel, Inhuman or Degrading Treatment or Punishment", - "values": [ - "Detention", - "International instruments", - "Torture and other CID treatment" - ] - }, - { - "text": "Envisage taking measures to remedy the discrimination made between European foreigners and those from developing countries, including in the area of family reunification and gaps in protection this has led to.", - "values": [ - "Migrants" - ] - }, - { - "text": "Ratify the Protocol to the African Charter on Human and Peoples' Rights on the Rights of Women in Africa and enact and enforce laws and regulations that prohibit all forms of violence against women", - "values": [ - "International instruments", - "Women's rights" - ] - }, - { - "text": "Take all necessary measures to protect and promote the right of children, including their right to acquire a nationality and to be registered at birth, combat child marriages and finalize the implementation of the national plan of action for vulnerable children for the period 2014-2018", - "values": [ - "Rights of the Child" - ] - }, - { - "text": "Reconsider the Protection of State Information Bill to ensure its conformity with ICCPR, in particular by removing excessive penalties for publication of classified information and the inclusion of a public interest defence ", - "values": [ - "Freedom of opinion and expression", - "International instruments" - ] - }, - { - "text": "On the Equality Body, the delegation highlighted that equality was a constitutional right in Slovenia. Measures to combat discrimination were included in various national policies and in legislation. The government was committed to strengthening the equality protection mechanisms and was currently considering different options for this.", - "values": [ - "Other" - ] - }, - { - "text": "Keep the moratorium on the death penalty and intensify dialogue on capital punishment and its impact, towards its full abolition for all crimes", - "values": [ - "Death penalty" - ] - }, - { - "text": "Adopt subnational actions plans for strengthening implementation of laws prohibiting harmful practices, including but not limited to: trokosi, female genital mutilation, child, early and forced marriage, widowhood rites and practices related to \u201cwitchcraft\u201c", - "values": [ - "Rights of the Child", - "Torture and other CID treatment", - "Women's rights" - ] - }, - { - "text": "Consider the progressive ratification of the main international human rights treaties that are still pending, which may require technical assistance ", - "values": [ - "International instruments", - "Technical assistance and cooperation" - ] - }, - { - "text": "Continue its efforts in the field of women's rights in order to, amongst other things, enforce the 2007 Domestic Violence Act and laws prohibiting harmful practices against women, including trokosi and female genital mutilation", - "values": [ - "Rights of the Child", - "Torture and other CID treatment", - "Women's rights" - ] - }, - { - "text": "Strengthening the efficiency of the judicial system, while making sure the rights of everyone to a fair trial is not compromised", - "values": [ - "Justice" - ] - }, - { - "text": "Take steps to improve the equality of access to various forms of education and employment for all women", - "values": [ - "Women's rights" - ] - }, - { - "text": "Further strengthen cooperation with the Human Rights Council and its mechanism", - "values": [ - "Special procedures", - "Technical assistance and cooperation", - "UPR process" - ] - }, - { - "text": "Improve access to justice for victims of sexual violence, particularly in rural areas", - "values": [ - "Women's rights" - ] - }, - { - "text": "Continue working particularly with regard to protecting the rights of victims of sexual violence and domestic violence, in particular through training of health, police and judicial personnel", - "values": [ - "Human rights education and training", - "Rights of the Child", - "Women's rights" - ] - }, - { - "text": "Continue to strengthen its efforts against the excessive use of force by law enforcement agents, especially by taking measures allowing the identification of officials, establishing procedures to ensure the independence of investigations, as well as by improving data collection and information ", - "values": [ - "Human rights violations by state agents" - ] - }, - { - "text": "Continue its cooperation with the High Commissioner in order to benefit from technical assistance necessary to help create a solid legal framework, strengthen national structures for human rights, and ensure the efficient administration of justice in the fight against impunity, abuses and all other attacks on human rights", - "values": [ - "Impunity", - "Justice", - "Technical assistance and cooperation" - ] - }, - { - "text": "Adopt a comprehensive approach to the security situation which ensures that the perpetrators of violence are brought to justice and that the security forces' rules of engagement take full account of due process and human rights", - "values": [ - "Public security" - ] - }, - { - "text": "Take all appropriate measures to develop a framework of law prohibiting trafficking and other forms of exploitations, and incorporate into such legislation the comprehensive protection of children as well as the development and implementation of a reintegration assistance programme for victimized persons", - "values": [ - "Rights of the Child", - "Trafficking" - ] - }, - { - "text": "Implement the Strategy for Improvement of the Position of Roma and Egyptians in Montenegro 2012-2016", - "values": [ - "Minorities" - ] - }, - { - "text": "Accelerate the adoption of the national action plan on human rights which was presented to the Icelandic Parliament", - "values": [ - "General" - ] - }, - { - "text": "Seek technical and capacity-building assistance to increase its capacity for the implementation of its treaty obligations ", - "values": [ - "International instruments", - "Technical assistance and cooperation" - ] - }, - { - "text": "Continue to ensure food security for the elderly, persons with disabilities and persons at risk", - "values": [ - "Disabilities", - "Right to food" - ] - }, - { - "text": "Ratify the Optional Protocol to the Convention against Torture and Other Cruel, Inhuman or Degrading Treatment or Punishment", - "values": [ - "Detention", - "International instruments", - "Torture and other CID treatment" - ] - }, - { - "text": "Address the phenomenon of discrimination and negative attitude based on nationality, ethnicity or religion by criminalizing the so-called hate speech", - "values": [ - "Freedom of religion and belief", - "Racial discrimination" - ] - }, - { - "text": "Abolish all legislation that discriminates against women", - "values": [ - "Women's rights" - ] - }, - { - "text": "Continue its four-year food safety program, foreseen in 2012, in order to continue improving nutrition and access to locally produced food for the most vulnerable households in Haiti", - "values": [ - "Right to food" - ] - }, - { - "text": "Introduce a law allowing for family reunions as well as a law granting refugees the right to work", - "values": [ - "Asylum-seekers - refugees", - "Labour" - ] - }, - { - "text": "Allocate financial and human resources to the implementation of the Gender Equality Act and amend all laws that discriminate against women, in particular the Citizen Act", - "values": [ - "Women's rights" - ] - }, - { - "text": "Take further concrete measures to advance the personal status of women, including their right to transfer nationality to their children", - "values": [ - "Statelessness and the right to nationality", - "Women's rights" - ] - }, - { - "text": "Continue its efforts to ensure the success of transitional justice and national reconciliation in order to promote and protect human rights", - "values": [ - "Justice" - ] - }, - { - "text": "Accept Articles 76 and 77 of the ICRMW", - "values": [ - "International instruments", - "Labour", - "Migrants" - ] - }, - { - "text": "Ensure the promotion and protection of reproductive rights of women in agreement with international standards", - "values": [ - "Right to health", - "Women's rights" - ] - }, - { - "text": "Facilitate that different civil society actors express their views and opinions with responsibility and objectivity ", - "values": [ - "Civil society" - ] - }, - { - "text": "Prohibit corporal punishment in law as previously recommended", - "values": [ - "Torture and other CID treatment", - "UPR process" - ] - }, - { - "text": "Ensure access to education of all children, including those in hard-to-reach areas, by increasing investments in education infrastructure and training of educators and pursuing all possible avenues for international cooperation", - "values": [ - "Right to education", - "Rights of the Child", - "Technical assistance and cooperation" - ] - }, - { - "text": "Complete the process of the national legislation's full alignment with all obligations under the Rome Statute", - "values": [ - "International instruments", - "Justice" - ] - }, - { - "text": "Continue its efforts to further improve its relevant legal and administrative frameworks and policies, in conformity with its international commitments", - "values": [ - "International instruments" - ] - }, - { - "text": "Establish effective vetting procedures to ensure that the Somali national armed forces and police do not include persons under the age of 18", - "values": [ - "Rights of the Child" - ] - }, - { - "text": "Advance towards the derogation of the provisions that criminalize consenting same-sex relations between adults", - "values": [ - "Sexual Orientation and Gender Identity" - ] - }, - { - "text": "Continue strengthening its social policies with a view of increasing the standard of living of its people, especially the most vulnerable", - "values": [ - "ESC rights - general" - ] - }, - { - "text": "Ratify-accede-adhere the International Convention on the Protection of the Rights of All Migrant Workers and Members of their Families bearing in mind the voluntary commitment in its candidature to the Human Rights Council to work for the universal ratification of all United Nations human rights instruments and actively encourage countries which are not yet party to them to ratify them.", - "values": [ - "International instruments", - "Labour", - "Migrants" - ] - }, - { - "text": "Ratify the Agreement on the Privileges and Immunities of the ICC (APIC)", - "values": [ - "International instruments", - "Justice" - ] - }, - { - "text": "Ensure better access to health care and education by women and girls, especially in rural areas ", - "values": [ - "Right to education", - "Right to health", - "Rights of the Child", - "Women's rights" - ] - }, - { - "text": "Concentrate on the implementation of the international human rights instruments that have been ratified by Turkmenistan ", - "values": [ - "International instruments" - ] - }, - { - "text": "Continue to seek development and technical assistance for capacity-building from development partners, with a view to finding solutions to the identified challenges militating against the fulfilment of its commitments ", - "values": [ - "Technical assistance and cooperation" - ] - }, - { - "text": "Pay particular attention to tackle the pay gap between men and women through reinforced policy measures ", - "values": [ - "Women's rights" - ] - }, - { - "text": "Take further measures to ensure the freedom of children from all physical or mental violence, injury or abuse, neglect or negligent treatment, maltreatment or exploitation, in accordance with the Convention on the Rights of the Child, including by ensuring the full legal prohibition of all corporal punishment of children", - "values": [ - "International instruments", - "Rights of the Child", - "Torture and other CID treatment" - ] - }, - { - "text": "Genuinely articulate the Child and Adolescent Protection Act 2009, providing it with the necessary human and financial resources for its effective implementation at all levels of government", - "values": [ - "Rights of the Child" - ] - }, - { - "text": "Further strengthening social security programs for mothers of children with severe disabilities ", - "values": [ - "Disabilities", - "Rights of the Child", - "Women's rights" - ] - }, - { - "text": "Guarantee effective access to justice for victims of gender violence, shelters for such victims and police protection", - "values": [ - "Rights of the Child", - "Women's rights" - ] - }, - { - "text": "Ensure that the draft electoral law under the new constitution and the process of appointments guarantee the independence of the judiciary", - "values": [ - "Elections", - "Justice" - ] - }, - { - "text": "Ensure fair distribution of national income, taking special account of southern regions, which were hurt by long years of war ", - "values": [ - "Development" - ] - }, - { - "text": "Restart the dialogue with media representatives on the road map for the implementation of the activities to safeguard freedom of expression in the country, those activities which are a priority in the framework of the High Level Accession Dialogue", - "values": [ - "Freedom of opinion and expression", - "Freedom of the press" - ] - }, - { - "text": "Continue its efforts to combat violations of women's rights, including through raising public awareness", - "values": [ - "Human rights education and training", - "Women's rights" - ] - }, - { - "text": "Promote policies and educational campaigns for the promotion and protection of the rights of women, and ensure that all allegations of violence against women are promptly, thoroughly and effectively investigated, that perpetrators are held accountable and that women victims of violence obtain adequate redress, including compensation and rehabilitation", - "values": [ - "Women's rights" - ] - }, - { - "text": "Continue its efforts in enhancing the capacity of law enforcement officials in the field of the rule of law and human rights through increasing training activities", - "values": [ - "Other" - ] - }, - { - "text": "Ensure the enjoyment of the right to work and to just and favourable conditions of work to all migrant workers, especially domestic workers ", - "values": [ - "Labour", - "Migrants" - ] - }, - { - "text": "While acknowledging the efforts to cooperate with special procedures, consider issuing a standing invitation to the special procedures mandate holders", - "values": [ - "Special procedures" - ] - }, - { - "text": "Additional reform of the Penal Code to raise the age of sexual consent and prohibit spousal rape", - "values": [ - "Rights of the Child", - "Women's rights" - ] - }, - { - "text": "Take adequate measures to eradicate FGM", - "values": [ - "Rights of the Child", - "Torture and other CID treatment", - "Women's rights" - ] - }, - { - "text": "Take appropriate additional measures to address violence and abuse of women and children ", - "values": [ - "Rights of the Child", - "Women's rights" - ] - }, - { - "text": "Continue to review and periodically assess its immigration laws and policies, taking into consideration the recommendations made by relevant United Nations agencies, human rights treaty bodies and special procedures, and to ensure that the rights of migrants are fully safeguarded, in accordance with international human rights standards", - "values": [ - "International instruments", - "Migrants", - "Special procedures", - "Treaty bodies" - ] - }, - { - "text": "Instate an official moratorium on executions with a view to abolishing capital punishment, abolish the automatic sentencing to capital punishment for drug traffickers and commute all capital punishments to life prison sentences", - "values": [ - "Death penalty" - ] - }, - { - "text": "Adapt its normative framework to ensure that all categories of workers enjoy protection from exploitation and forced labour", - "values": [ - "Labour" - ] - }, - { - "text": "Pursue its substantial efforts to alleviate the suffering and to improve the living conditions of IDPs and refugees ", - "values": [ - "Asylum-seekers - refugees", - "Internally displaced persons" - ] - }, - { - "text": "Take steps to avoid discrimination and violation of the human rights of the LGBT population ", - "values": [ - "Sexual Orientation and Gender Identity" - ] - }, - { - "text": "Ratify ILO Convention No. 182 (1999), concerning the prohibition and immediate action for the elimination of the worst forms of child labour, and No. 138 (173) on the minimum age for admission to employment ", - "values": [ - "International instruments", - "Labour", - "Rights of the Child" - ] - }, - { - "text": "Ensure a favourable environment for the activities of human rights defenders, journalists and other civil society actors ", - "values": [ - "Civil society", - "Freedom of association and peaceful assembly", - "Freedom of the press", - "Human rights defenders" - ] - }, - { - "text": "Noting the Government's commitment to the promotion and protection of the right to freedom of opinion and expression, continue ensuring that exercise of this right does not impact negatively on other fundamental rights, including the right to privacy and freedom of religion or belief, among others ", - "values": [ - "Freedom of opinion and expression", - "Freedom of religion and belief", - "Privacy" - ] - }, - { - "text": "Strengthen the institutional framework for the protection of children's rights by setting up welcome centres and socio-professional training ", - "values": [ - "Rights of the Child" - ] - }, - { - "text": "Elaborate clear medical guidelines on access to legal abortion and consider reviewing the law relating to abortion, including to ensure access to legal abortion in cases of pregnancy resulting from rape ", - "values": [ - "Women's rights" - ] - }, - { - "text": "Abolish all provisions that criminalize consensual same-sex relationships and adopt a national policy to promote tolerance and address discrimination and violence against lesbian, gay, bisexual, transgender and intersex persons", - "values": [ - "Sexual Orientation and Gender Identity" - ] - }, - { - "text": "Take effective measures to prevent and eliminate discrimination on the grounds of religion and belief in the recognition, exercise and enjoyment of human rights and fundamental freedoms in all fields of civil, economic, political, social and cultural life", - "values": [ - "Freedom of religion and belief" - ] - }, - { - "text": "Repeal the provisions establishing different categories of citizenship and remove any indication of ethnicity in identity documents", - "values": [ - "Minorities", - "Statelessness and the right to nationality" - ] - }, - { - "text": "Redouble efforts to reduce abuse of drugs and other psychotropic substances, in particular by children, adolescents and youths ", - "values": [ - "Public security", - "Rights of the Child" - ] - }, - { - "text": "Adhere to principles of the International Convention on the Protection of the Rights of All Migrant Workers and Members of Their Families ICRMW and consider favourably possibly ratifying it ", - "values": [ - "International instruments", - "Labour", - "Migrants" - ] - }, - { - "text": "Continue investigating crimes of sexual violence arising from the armed conflict, to prosecute those responsible and to provide reparations to victims", - "values": [ - "Rights of the Child", - "Women's rights" - ] - }, - { - "text": "Respond positively to all pending visit requests of special procedures and extend a standing invitation to the mandate holders", - "values": [ - "Special procedures" - ] - }, - { - "text": "Implement the recommendations by the United Nations Treaty Bodies regarding the protection of human rights defenders and journalists", - "values": [ - "Freedom of the press", - "Human rights defenders", - "Treaty bodies" - ] - }, - { - "text": "Continue its efforts to increase school attendance rates and solve the issues of access to educational establishments, without overlooking the need to continually monitor the implementation of the sectoral action plan to promote women and gender equality", - "values": [ - "Right to education", - "Women's rights" - ] - }, - { - "text": "Promote education for all, especially for indigenous and tribal children, as well as step up efforts to preserve languages of the indigenous communities", - "values": [ - "Indigenous peoples", - "Right to education", - "Rights of the Child" - ] - }, - { - "text": "Establish an institutional mechanism for further strengthening the protection of children", - "values": [ - "Rights of the Child" - ] - }, - { - "text": "Continue with efforts to advance the rights of women and combat discrimination against women and girls, in particular to achieve equal access to education and prevent girls dropping out of school", - "values": [ - "Right to education", - "Rights of the Child", - "Women's rights" - ] - }, - { - "text": "Accept individual applications procedures provided for in human rights instruments ", - "values": [ - "International instruments" - ] - }, - { - "text": "Continue strengthening its institutional framework in conformity with the Convention on the Rights of Persons with Disabilities", - "values": [ - "Disabilities", - "International instruments" - ] - }, - { - "text": "Continue efforts to inform the wider society about the laws concerned and about the rights of women in general, and widely use the mass media to raise awareness of gender equality and publish the appropriate documents in ethnic minority languages", - "values": [ - "Minorities", - "Women's rights" - ] - }, - { - "text": "Accede to the CED and ILO Convention No. 169", - "values": [ - "Enforced disappearances", - "Indigenous peoples", - "International instruments" - ] - }, - { - "text": "Promote initiatives aimed at ensuring that there are equal conditions of employment for women ", - "values": [ - "Women's rights" - ] - }, - { - "text": "Continue consultations with non-governmental organisations and civil society in the follow up", - "values": [ - "Civil society", - "UPR process" - ] - }, - { - "text": "Allocate available resources and strengthen the preventive functioning of its national preventive mechanism under the Optional Protocol to the Convention against Torture ", - "values": [ - "Detention", - "International instruments", - "Torture and other CID treatment" - ] - }, - { - "text": "Accede to ICESCR, the CRC and ILO convention No. 111", - "values": [ - "ESC rights - general", - "International instruments", - "Labour", - "Rights of the Child" - ] - }, - { - "text": "Announce an immediate moratorium and initiate a policy review with the intention of abolishing the death penalty by December 2013 and then ratify the ICCPR-OP 2 by December 2014", - "values": [ - "Death penalty", - "International instruments" - ] - }, - { - "text": "The Government was also ensuring that under the Five-Year Plan more emphasis was placed on gender issues and women's empowerment in all policies and national plans. The Government had also pledged to explore the adoption of a quota system for women's participation in the electoral process. ", - "values": [ - "Women's rights" - ] - }, - { - "text": "Continue to implement National Social Inclusion Strategy", - "values": [ - "General" - ] - }, - { - "text": "Ratify the Convention against Torture, the Convention on the Protection of All Persons from Enforced Disappearance and the Convention on the Protection of the Rights of All Migrant Workers and Members of Their Families", - "values": [ - "Enforced disappearances", - "International instruments", - "Labour", - "Migrants", - "Torture and other CID treatment" - ] - }, - { - "text": "Maintain the de facto moratorium on the death penalty and consider abolishing the death penalty all together", - "values": [ - "Death penalty" - ] - }, - { - "text": "Continue to strengthen national human rights mechanisms to protect the most vulnerable sectors of society", - "values": [ - "Minorities" - ] - }, - { - "text": "Strengthen Government efforts to ensure protection and provide redress to victims of domestic violence", - "values": [ - "Rights of the Child", - "Women's rights" - ] - }, - { - "text": "Improve the quality of the electoral process and ensure implementation of recommendations of Election Observation Missions, especially with regard to equal political participation of women, participation of independent election observers, respect for freedom of assembly and expression and revision of campaign finance regulations", - "values": [ - "Elections", - "Freedom of association and peaceful assembly", - "Freedom of opinion and expression", - "Women's rights" - ] - }, - { - "text": "Repeal the amendments to the Criminal Code that criminalizes "illegal entry" and introduces "transit zones" at the border and a list of "safe countries"", - "values": [ - "Asylum-seekers - refugees" - ] - }, - { - "text": "Intensify the process to conform the National Human Rights Commission with the Paris Principles", - "values": [ - "National Human Rights Institution" - ] - }, - { - "text": "Amend the discriminatory provisions against women in the legislation and take steps to fight violence against women and harmful practices, such as child marriage and crimes committed in the name of "honour"", - "values": [ - "Rights of the Child", - "Torture and other CID treatment", - "Women's rights" - ] - }, - { - "text": "Strengthen the capacities of the judiciary, including by increasing the personnel and improving its working conditions ", - "values": [ - "Justice" - ] - }, - { - "text": "Give a high priority to the ratification of the Optional Protocol to the Convention on the Elimination of All Forms of Discrimination against Women", - "values": [ - "International instruments", - "Women's rights" - ] - }, - { - "text": "Implement the Strategic Plan on Equality of Opportunity 2014-2016 with the aim to eliminate any remaining gender-based discrimination", - "values": [ - "Women's rights" - ] - }, - { - "text": "Include sex and disability as grounds for non-discrimination in the Constitution", - "values": [ - "Disabilities", - "Women's rights" - ] - }, - { - "text": "Bring the constitution into line with the Sejdic and Finci decision of the European Court of Human Rights", - "values": [ - "General" - ] - }, - { - "text": "Reform the relevant legal framework to fully ensure the application of the principles of non-discrimination and equality in the enjoyment of civil, political, economic, social and cultural rights for persons in vulnerable situations, especially women, children and persons with disabilities", - "values": [ - "CP rights - general", - "Disabilities", - "ESC rights - general", - "Rights of the Child", - "Women's rights" - ] - }, - { - "text": "Fully respect the rights of all citizens to freedom of assembly and association, including by allowing labour, political and civil groups to assemble peacefully, free from Government interference in accordance with international human rights standards", - "values": [ - "Freedom of association and peaceful assembly", - "International instruments", - "Labour" - ] - }, - { - "text": "Continue efforts to eradicate gender-based violence, including domestic violence, by raising awareness in society, ensuring due diligence in the prosecution and trial of those who commit such acts and providing relevant training to the competent authorities regarding the protection and prevention of violence against women and girls", - "values": [ - "Human rights education and training", - "Rights of the Child", - "Women's rights" - ] - }, - { - "text": "Keep pursuing its efforts to promote and facilitate school enrolment and attendance, especially among children from poor families", - "values": [ - "Poverty", - "Right to education", - "Rights of the Child" - ] - }, - { - "text": "Avoid applying severe restrictions on freedom of assembly and prohibiting peaceful demonstrations, and take the necessary measures to make procedures for the registration of non-governmental organizations more flexible and to ensure that they can carry out their work without undue interference", - "values": [ - "Civil society", - "Freedom of association and peaceful assembly" - ] - }, - { - "text": "Establish the institution of a children's ombudsman ", - "values": [ - "National Human Rights Institution", - "Rights of the Child" - ] - }, - { - "text": "Take measures to ensure the full independence of the judiciary and to ensure that guarantees of fair trail for everyone are implemented ", - "values": [ - "Justice" - ] - }, - { - "text": "Continue to take effective measures ensuring the realization of the right to work for its citizens including through national programmes to promote decent work and full and productive employment especially for women and young people", - "values": [ - "Development", - "Women's rights" - ] - }, - { - "text": "Involve indigenous peoples and peasant communities in the implementation and planning of projects related to the extractive sector", - "values": [ - "Business and human rights", - "Indigenous peoples" - ] - }, - { - "text": "Draw up concrete and effective strategies to fight against domestic violence", - "values": [ - "Rights of the Child", - "Women's rights" - ] - }, - { - "text": "Enact legislation to address the status of children born out of wedlock ", - "values": [ - "Rights of the Child" - ] - }, - { - "text": "Look to replicate successful programmes that aim to keep adolescents out of the prison system wherever possible ", - "values": [ - "Detention", - "Rights of the Child" - ] - }, - { - "text": "Adopt and implement the legislation and policies concerning children, especially concerning birth registration, violence against children, juvenile justice, street children to name just a few", - "values": [ - "Rights of the Child", - "Statelessness and the right to nationality" - ] - }, - { - "text": "Promptly ratify the International Convention on the Elimination of All Forms of Racial Discrimination", - "values": [ - "International instruments", - "Racial discrimination" - ] - }, - { - "text": "Take measures to increase the coverage of persons with disabilities in the employment system, by creating barrier-free environments in favour of persons with disabilities, and effectively complying with its obligations in the framework of CRPD ", - "values": [ - "Disabilities", - "International instruments" - ] - }, - { - "text": "Provide the National Commission of Inquiry with the necessary resources to promptly, thoroughly, and independently investigate allegations of gross human rights abuses by all parties", - "values": [ - "Justice" - ] - }, - { - "text": "Establish a moratorium on executions with a view to abolishing the death penalty and supporting the United Nations General Assembly resolution on the moratorium on the use of the death penalty ", - "values": [ - "Death penalty", - "International instruments" - ] - }, - { - "text": "Take further steps to address discrimination against women, with a particular focus on reducing violence against women", - "values": [ - "Women's rights" - ] - }, - { - "text": "Intensify its efforts to wealth distribution and poverty eradication, especially assistance to the marginalized and disadvantaged groups", - "values": [ - "Poverty" - ] - }, - { - "text": "Accelerate the process of ratification of the Optional Protocol to the Convention against Torture", - "values": [ - "Detention", - "International instruments", - "Torture and other CID treatment" - ] - }, - { - "text": "Strengthen cooperation with Human Rights Council treaty monitoring bodies", - "values": [ - "Treaty bodies" - ] - }, - { - "text": "Increase the effectiveness in preventing any cases of xenophobia or racial discrimination that have been demonstrated by officials and increase its activities to combat these scourges ", - "values": [ - "Human rights violations by state agents", - "Racial discrimination" - ] - }, - { - "text": "Investigate and prosecute crimes of trafficking in persons and provide effective support and rehabilitation for the victims", - "values": [ - "Trafficking" - ] - }, - { - "text": "Adopt effective measures to fight violence against women ", - "values": [ - "Women's rights" - ] - }, - { - "text": "Pursue its efforts in combating racism, in particular to guarantee an effective follow up to the outcome of the Durban Conference ", - "values": [ - "Racial discrimination" - ] - }, - { - "text": "Review and update its anti-hate speech legislation to provide equal protection to all religious minorities ", - "values": [ - "Freedom of religion and belief", - "Minorities", - "Racial discrimination" - ] - }, - { - "text": "Take measures to prevent human rights violations based on sexual orientation and gender identity ", - "values": [ - "Sexual Orientation and Gender Identity" - ] - }, - { - "text": "Place greater emphasis on assisting former girl soldiers to reintegrate into society ", - "values": [ - "Rights of the Child", - "Women's rights" - ] - }, - { - "text": "Step up its efforts and strengthen its measures to ensure gender equality by ratifying the Optional Protocol to the Convention on the Elimination of All Forms of Discrimination against Women ", - "values": [ - "International instruments", - "Women's rights" - ] - }, - { - "text": "Maintain and step up its efforts to prevent, punish and eliminate all forms of violence against women ", - "values": [ - "Women's rights" - ] - }, - { - "text": "Following the parliamentary elections held on 29 October 2016, implement the constitutional reforms approved by the people of Iceland at the 2012 referendum", - "values": [ - "Elections" - ] - }, - { - "text": "Have further legal procedures to combat racial discrimination and develop a plan to combat racism, as recommended by the Committee on the Rights of the Child", - "values": [ - "Racial discrimination", - "Treaty bodies" - ] - }, - { - "text": "Strengthen the implementation of measures and provisions to eradicate all forms of discrimination and sexual violence against women and girls, including the development of programs of dissemination, prevention and assistance", - "values": [ - "Rights of the Child", - "Women's rights" - ] - }, - { - "text": "Ensure the independence of the judiciary, without any political intervention ", - "values": [ - "Justice" - ] - }, - { - "text": "Bring those State agents who have committed human rights violations, particularly those named in the United Nations Commission of Inquiry report, to justice ", - "values": [ - "Human rights violations by state agents" - ] - }, - { - "text": "Carry out an awareness-raising and information campaign aimed at resisting customs and traditions, which have given rise to discriminatory practices and violence against women, especially in the family environment ", - "values": [ - "Human rights education and training", - "Women's rights" - ] - }, - { - "text": "Take measures to raise awareness of existing legal provisions against hate speech, and to take prompt action to bring those responsible for breaking the law to justice", - "values": [ - "Racial discrimination" - ] - }, - { - "text": "Make economic, social and cultural rights a first priority, which means allocating sufficient resources", - "values": [ - "ESC rights - general" - ] - }, - { - "text": "Continue its efforts to reduce all forms of violence against women, in particular by providing adequate resources to the police and the judiciary and through special training for law enforcement officials dealing with violence against women \n\n", - "values": [ - "Human rights education and training", - "Women's rights" - ] - }, - { - "text": "Give priority attention to the further improvement of the quality and accessibility of medical care and education, particularly in rural areas ", - "values": [ - "Right to education", - "Right to health" - ] - }, - { - "text": "Bring the national human rights body in line with the Paris Principles, as recommended in the first universal periodic review cycle in 2011", - "values": [ - "National Human Rights Institution", - "UPR process" - ] - }, - { - "text": "Consider becoming a party to the human rights instruments it has not yet ratified", - "values": [ - "International instruments" - ] - }, - { - "text": "Analyse the possibility of creating a system for the monitoring of international recommendations which would facilitate the systematization of the tracking of the recommendations of the treaty bodies and the mechanisms of the Human Rights Council", - "values": [ - "Treaty bodies" - ] - }, - { - "text": "Continue its efforts towards aligning its national legislation to international human rights law and, in this regard, lift the general reservation to CEDAW and reconsider policies which limit the rights of women to act as autonomous and equal members of the Saudi society", - "values": [ - "International instruments", - "Women's rights" - ] - }, - { - "text": "Continue the measures in favour of different religious groups for the exercise of freedom of religion and conscience", - "values": [ - "Freedom of religion and belief" - ] - }, - { - "text": "Review legislation which establishes direct and indirect discrimination of national and religious minorities", - "values": [ - "Freedom of religion and belief", - "Minorities", - "Racial discrimination" - ] - }, - { - "text": "Take the necessary measures to ensure the respect of the Convention on the Rights of the Child to make sure minors are not imprisoned with adults", - "values": [ - "Detention", - "International instruments", - "Rights of the Child" - ] - }, - { - "text": "Extend a standing invitation to special procedure mandate-holders as a way of informing and supporting human rights reforms ", - "values": [ - "Special procedures" - ] - }, - { - "text": "Implement measures to assist states and local governments in combating excessive use of force by the police and eliminating racial profiling", - "values": [ - "Human rights violations by state agents", - "Racial discrimination" - ] - }, - { - "text": "Continue strengthening education policies to ensure the schooling of all children ", - "values": [ - "Right to education", - "Rights of the Child" - ] - }, - { - "text": "Consider acceding to the international human rights treaties to which it is not yet a party and strengthen efforts to obtain technical assistance from OHCHR and international donors ", - "values": [ - "International instruments", - "Technical assistance and cooperation" - ] - }, - { - "text": "Take urgent action to reduce the number of offences punishable by death, and to entirely ban the execution of such sentences in case of juveniles", - "values": [ - "Death penalty", - "Rights of the Child" - ] - }, - { - "text": "Increase its efforts to raise awareness about domestic violence and encourage victims of domestic violence to report the abuse to the proper authorities ", - "values": [ - "Human rights education and training", - "Rights of the Child", - "Women's rights" - ] - }, - { - "text": "Monitor enforcement of environmental legislation to protect the rights of local communities and prevent environmental degradation", - "values": [ - "Environment" - ] - }, - { - "text": "Keep on efforts both on legal and procedural grounds to improve conditions of detention and to speed up the adoption of the draft criminal code", - "values": [ - "Detention", - "Justice" - ] - }, - { - "text": "Take measures to improve conditions related to treatment of inmates within prisons, through increasing the capacity as already initiated by the Government and through measures for maintaining order within prisons", - "values": [ - "Detention" - ] - }, - { - "text": "Continue to strengthen and provide further resources to the National Commission for the Protection of Children and Young People at Risk in order to protect the rights of neglected and abused children ", - "values": [ - "National Human Rights Institution", - "Rights of the Child" - ] - }, - { - "text": "Make efforts to abolish the death penalty and to ratify ICCPR-OP 2.", - "values": [ - "Death penalty", - "International instruments" - ] - }, - { - "text": "Ensure punishment of persons responsible for serious violations of human rights.", - "values": [ - "Justice" - ] - }, - { - "text": "Amend laws that still contain provisions that discriminate against lesbians, gays, transsexuals and bisexuals", - "values": [ - "Sexual Orientation and Gender Identity" - ] - }, - { - "text": "Take measures to protect the best interests of babies and children affected by parental detention or imprisonment.", - "values": [ - "Rights of the Child" - ] - }, - { - "text": "Increase the minimum age of marriage and of criminal responsibility in line with international standards", - "values": [ - "Justice", - "Rights of the Child" - ] - }, - { - "text": "Cease all intimidation or repression against human rights defenders, journalists and Non-Governmental Organizations ", - "values": [ - "Civil society", - "Freedom of the press", - "Human rights defenders" - ] - }, - { - "text": "Protect the judiciary against all interference from bodies belonging to other branches of government", - "values": [ - "Justice" - ] - }, - { - "text": "Appoint, by consensus among all political forces in the country, an independent mediator ombudsman", - "values": [ - "National Human Rights Institution" - ] - }, - { - "text": "Strengthen cooperation with the United Nations human rights mechanisms, particularly the United Nations special procedures mandate holders ", - "values": [ - "Special procedures", - "Treaty bodies", - "UPR process" - ] - }, - { - "text": "Provide police, gendarmerie and the armed forces with clear instructions and the necessary training to act in accordance with International Human Rights standards ", - "values": [ - "Human rights education and training", - "International instruments" - ] - }, - { - "text": "Continue to intensify cooperation with civil society organisations in order to debate on human rights issues and coordinate their follow-up and implementation on the ground", - "values": [ - "Civil society" - ] - }, - { - "text": "Ratify or accede to, where appropriate, the International Convention for the Protection of All Persons from Enforced Disappearance ", - "values": [ - "Enforced disappearances", - "International instruments" - ] - }, - { - "text": "Continue efforts to ensure further social and economic development that is sustainable", - "values": [ - "Development", - "ESC rights - general" - ] - }, - { - "text": "Adopt legal provisions prohibiting traditional harmful practices against women, including adequate sanctions for violations of these provisions", - "values": [ - "Torture and other CID treatment", - "Women's rights" - ] - }, - { - "text": "Speed up the registration in the pipeline in order to deal with the pending challenges in the promotion and protection of human rights", - "values": [ - "Other" - ] - }, - { - "text": "Take measures to control domestic violence, specifically for the rights of women ", - "values": [ - "Women's rights" - ] - }, - { - "text": "Ratify the Optional Protocols to the International Covenant on Civil and Political Rights and to the Convention against Torture", - "values": [ - "Death penalty", - "International instruments", - "Torture and other CID treatment" - ] - }, - { - "text": "Consolidate the progress made towards reaching the Sustainable Development Goals and in the improvement of human development indicators", - "values": [ - "Development" - ] - }, - { - "text": "Continue its achievements in the field of Human Rights.", - "values": [ - "General" - ] - }, - { - "text": "Keep raising the quality of public health in the country, as a permanent priority ", - "values": [ - "Right to health" - ] - }, - { - "text": "Take further measures to strengthen the mechanisms for the protection of social rights, in particular rights of children, women and persons with disabilities ", - "values": [ - "Disabilities", - "Rights of the Child", - "Women's rights" - ] - }, - { - "text": "Review its legislation regulating the functioning of NGOs, in particular the Federal Law on Non-Commercial Organizations, with a view to bringing it into accordance with international human rights law ", - "values": [ - "Civil society", - "Freedom of association and peaceful assembly", - "International instruments" - ] - }, - { - "text": "Develop a strategy to improve living conditions of persons deprived of their liberty, to combat malnutrition, lack of hygiene and to end the detention of children with adults", - "values": [ - "Detention", - "Rights of the Child" - ] - }, - { - "text": "Become a party to and implement the Convention on the Rights of Persons with Disabilities as a matter of priority and further include persons with disabilities throughout this process ", - "values": [ - "Disabilities", - "International instruments" - ] - }, - { - "text": "Continue with the current efforts against the practice of domestic violence ", - "values": [ - "Rights of the Child", - "Women's rights" - ] - }, - { - "text": "Further facilitate access to health services and education, especially for women and children ", - "values": [ - "Right to education", - "Right to health", - "Rights of the Child", - "Women's rights" - ] - }, - { - "text": "Raise the age of criminal responsibility to 18 years for all types of offenses", - "values": [ - "Rights of the Child" - ] - }, - { - "text": "Consider the possibility of expressing its consent to ratify he Convention against Torture and Other Cruel, Inhuman or Degrading Treatment or Punishment", - "values": [ - "International instruments", - "Torture and other CID treatment" - ] - }, - { - "text": "Scale up its efforts to ensure equal protection against all forms of discrimination", - "values": [ - "Other" - ] - }, - { - "text": "Investigate all reports of extrajudicial killings in an independent and transparent manner and commit to bring to justice members of the security forces found to have been involved in such violations", - "values": [ - "Extrajudicial executions", - "Human rights violations by state agents" - ] - }, - { - "text": "Consider establishing a moratorium on the death penalty", - "values": [ - "Death penalty" - ] - }, - { - "text": "Issue open and permanent invitations to the special procedures. ", - "values": [ - "Special procedures" - ] - }, - { - "text": "Strengthen the capacities of judicial institutions in order to bring those responsible for sexual violence to justice ", - "values": [ - "Rights of the Child", - "Women's rights" - ] - }, - { - "text": "Bring the Law on Peaceful Assembly into compliance with international human rights standards ", - "values": [ - "Freedom of association and peaceful assembly", - "International instruments" - ] - }, - { - "text": "Pursue efforts to combat sexual exploitation of children", - "values": [ - "Rights of the Child" - ] - }, - { - "text": "Refrain from any steps to extend the application of the death penalty or otherwise alter the legal system in a manner that would violate human rights ", - "values": [ - "Death penalty" - ] - }, - { - "text": "Set out how it will act against the culture of impunity, including for perpetrators of extrajudicial killings ", - "values": [ - "Extrajudicial executions", - "Impunity" - ] - }, - { - "text": "Review the provisions of the Penal Code to ensure the effective exercise of freedom of opinion and expression without fear of reprisals in accordance with international standards", - "values": [ - "Freedom of opinion and expression" - ] - }, - { - "text": "Amend the Law on Societies to remove undue restrictions and facilitate the ability of civil society organizations to seek, secure and use resources, including foreign funding, in order to ensure the full enjoyment of the right to peaceful assembly and association", - "values": [ - "Civil society", - "Freedom of association and peaceful assembly" - ] - }, - { - "text": "Take all necessary measures to continue the effective implementation of the Integration Strategy and increase involvement of representatives of minority groups and civil society throughout this process ", - "values": [ - "Civil society", - "Minorities" - ] - }, - { - "text": "Continue to fight human trafficking in all its forms paying special attention to the situation of the victims ", - "values": [ - "Trafficking" - ] - }, - { - "text": "Ensure that relevant criminal law provisions and policy directives are effectively implemented", - "values": [ - "Justice" - ] - }, - { - "text": "Enact legislation dealing with prohibiting violence against women and implement it in law and practice ", - "values": [ - "Women's rights" - ] - }, - { - "text": "Ratify ILO Convention No. 169 ", - "values": [ - "Indigenous peoples", - "International instruments" - ] - }, - { - "text": "Consider adhering to the Rome Statute ", - "values": [ - "International instruments", - "Justice" - ] - }, - { - "text": "Reinforce its efforts to regulate labor relations in a framework that safeguards dignity and rights and is consistent with international standards, in particular with regard to ancillary or domestic workers", - "values": [ - "Labour" - ] - }, - { - "text": "Reform the penal code in line with international standards for freedom of expression, including by revising national security provisions", - "values": [ - "Counter-terrorism", - "Freedom of opinion and expression" - ] - }, - { - "text": "Make the efforts necessary to adopt the law on the protection and well-being of children in the near future, and make every effort to ensure that it is successfully implemented ", - "values": [ - "Rights of the Child" - ] - }, - { - "text": "Consider establishing in its domestic legal system norms that strengthen the fight against discrimination ", - "values": [ - "Other" - ] - }, - { - "text": "To evaluate, and monitor the effectiveness of the measures taken with regard to combating trafficking of human beings, the protection of victims, and bring to justice those involved in human trafficking ", - "values": [ - "Trafficking" - ] - }, - { - "text": "Speed up preparation of the strategy on the prevention and suppression of violence against women and violence in the family", - "values": [ - "Rights of the Child", - "Women's rights" - ] - }, - { - "text": "Ensure the rights of indigenous peoples, also by resolving all relevant problems to land titles and other environmental issues that affect their rights to their natural resources", - "values": [ - "Environment", - "Indigenous peoples", - "Right to land" - ] - }, - { - "text": "Take actions to strengthen the implementation of the ILO Indigenous and Tribal Peoples Convention, 1989 (No. 169), together with the employment of effective measures to protect the territory of isolated indigenous peoples. This includes revising overlapping land rights to further progress the assigning of territory to indigenous peoples in order to prevent land conflicts", - "values": [ - "Indigenous peoples", - "International instruments", - "Right to land" - ] - }, - { - "text": "Take steps to reduce the incidence of preventative and pre-trial detention ", - "values": [ - "Detention" - ] - }, - { - "text": "Continue measures for the adoption of the new National Action Plan on Human Rights ", - "values": [ - "General" - ] - }, - { - "text": "Ensure a proportionate use of the force from the security forces", - "values": [ - "Human rights violations by state agents" - ] - }, - { - "text": "Report to the Human Rights Council about further concrete steps that will be taken to implement the ratified international conventions in domestic law.", - "values": [ - "International instruments" - ] - }, - { - "text": "Continue its efforts, with the support of the international community, to eradicate poverty, increase literacy and enrolment rates and improve access to basic health services.", - "values": [ - "Poverty" - ] - }, - { - "text": "Promote and support programs for the youth ", - "values": [ - "Other" - ] - }, - { - "text": "Consider ratification of the Rome Statute of the International Criminal Court and its Agreement on Privileges and Immunities", - "values": [ - "International instruments", - "Justice" - ] - }, - { - "text": "Take further steps to address discrimination against women and people belonging to vulnerable groups including children, minorities and indigenous people.", - "values": [ - "Indigenous peoples", - "Minorities", - "Rights of the Child", - "Women's rights" - ] - }, - { - "text": "Put into effect first cycle recommendations 87.23 and 88.50, and develop policy and programmatic responses to the needs of lesbian, gay, bisexual, transgender and intersex (LGBTI) persons", - "values": [ - "Sexual Orientation and Gender Identity", - "UPR process" - ] - }, - { - "text": "Continue its endeavours to ensure access to food for all its citizens as a fundamental human right ", - "values": [ - "Right to food" - ] - }, - { - "text": "Adopt a zero-tolerance policy towards corruption ", - "values": [ - "Corruption" - ] - }, - { - "text": "Continue with its efforts to promote the rights of persons with disabilities and eliminate discrimination", - "values": [ - "Disabilities" - ] - }, - { - "text": "Take credible steps towards gender mainstreaming and reinforcing the principle of equal pay for equal work", - "values": [ - "Women's rights" - ] - }, - { - "text": "Consider an early ratification of the newest international human rights instrument - the third OP to CRC on a communication procedure ", - "values": [ - "International instruments", - "Rights of the Child" - ] - }, - { - "text": "Ensure that laws enacted to regulate non-governmental organizations will not undermine their independence or unduly restrict their activities in the defence of human rights", - "values": [ - "Civil society", - "Freedom of association and peaceful assembly" - ] - }, - { - "text": "Ratify ILO Convention No. 169 on indigenous and tribal peoples", - "values": [ - "Indigenous peoples", - "International instruments" - ] - }, - { - "text": "Ensure the availability of textbooks in their mother tongue for the national minorities", - "values": [ - "Minorities", - "Right to education" - ] - }, - { - "text": "Ensure and apply transparent and non-discriminatory decision-making processes with regard to the registration of media outlets and the accreditation of foreign journalists", - "values": [ - "Freedom of opinion and expression", - "Freedom of the press" - ] - }, - { - "text": "Ensure better representation of women in the peace process", - "values": [ - "Women's rights" - ] - }, - { - "text": "Rehabilitate and socially integrate women and girl victims of trafficking ", - "values": [ - "Rights of the Child", - "Trafficking", - "Women's rights" - ] - }, - { - "text": "Reconsider its position and abolish the death penalty, if necessary by initially establishing a moratorium on executions in line with General Assembly resolution 63-168 on the moratorium on the use of the death penalty ", - "values": [ - "Death penalty" - ] - }, - { - "text": "Ensure a safe environment for civil society participation, particularly the protection of persons contributing to the work of the Human Rights Council", - "values": [ - "Civil society" - ] - }, - { - "text": "Accelerate its accession to the ICCPR and ICESCR", - "values": [ - "CP rights - general", - "ESC rights - general", - "International instruments" - ] - }, - { - "text": "Implement measures to reduce the high drop-out rate among girls from schools, ensuring free primary education", - "values": [ - "Right to education", - "Women's rights" - ] - }, - { - "text": "That complaints of threats, harassment and intimidation of human right defenders, journalists and lawyers receive a prompt response and that adequate measures for their safety are taken", - "values": [ - "Freedom of the press", - "Human rights defenders", - "Justice" - ] - }, - { - "text": "Lift reservations to CEDAW.", - "values": [ - "International instruments", - "Statelessness and the right to nationality", - "Women's rights" - ] - }, - { - "text": "Continue legislating so that there is no discrimination against lesbian, gay, bisexual, transgender and intersex persons in the field of pensions", - "values": [ - "Sexual Orientation and Gender Identity" - ] - }, - { - "text": "Prohibit discrimination on the basis of gender, disability and sexual orientation in the Constitution", - "values": [ - "Sexual Orientation and Gender Identity" - ] - }, - { - "text": "Seek alternatives to detaining asylum seekers and migrants, particularly children. Take immediate and effective measures to ensure that conditions of detention are fully consistent with UN Standard Minimum Rules for the Treatment of Prisoners", - "values": [ - "Asylum-seekers - refugees", - "Detention", - "International instruments", - "Migrants", - "Rights of the Child" - ] - }, - { - "text": "Redouble its efforts in formulating the National Human Rights Action Plan", - "values": [ - "General" - ] - }, - { - "text": "Take effective measures to further implement the normative framework for combating violence against women, including by allocating sufficient resources for the construction of shelters for victims", - "values": [ - "Women's rights" - ] - }, - { - "text": "Improve the socio-economic situation with the support of the international community.", - "values": [ - "Development", - "Technical assistance and cooperation" - ] - }, - { - "text": "Continue to implement measures to eliminate discrimination, including on the basis of ethnic or religious background", - "values": [ - "Freedom of religion and belief", - "Minorities", - "Racial discrimination" - ] - }, - { - "text": "Take all appropriate measures to protect children's rights, especially by ensuring their access to primary education", - "values": [ - "Right to education", - "Rights of the Child" - ] - }, - { - "text": "Step up efforts to ensure accountability and fight impunity and, among other steps in this regard, ratify the Rome Statute of the ICC and the Agreement on Privileges and Immunities of the ICC", - "values": [ - "Impunity", - "International instruments", - "Justice" - ] - }, - { - "text": "Put in place stringent measures to ensure that children and youths are not recruited into the abhorrent practices incompatible with Ugandan law and culture ", - "values": [ - "Rights of the Child" - ] - }, - { - "text": "Examine the possibility for creating a follow up system for international recommendations, including accepted universal periodic review recommendations", - "values": [ - "UPR process" - ] - }, - { - "text": "Review and reform its national legislation with a view to eradicating all discrimination on the basis of sexual orientation and gender identity", - "values": [ - "Sexual Orientation and Gender Identity" - ] - }, - { - "text": "Continue efforts as to ensure that MDG1 and national targets can be achieved as planned", - "values": [ - "Development" - ] - }, - { - "text": "Extend the Anti-Trafficking in Persons Task Force to cover every part of the country and ensure that child trafficking in all its forms is comprehensively defined and criminalized", - "values": [ - "Rights of the Child", - "Trafficking" - ] - }, - { - "text": "Continue to create an enabling climate for religious and cultural tolerance and understanding at the grass roots level ", - "values": [ - "Freedom of religion and belief" - ] - }, - { - "text": "Abolish the death penalty in law and ratify ICCPR-OP-2", - "values": [ - "Death penalty", - "International instruments" - ] - }, - { - "text": "Affirm their commitment to an inclusive society by continuing to support National Anti-Racism Strategies and programmes aimed at building social cohesion and community harmony", - "values": [ - "Racial discrimination" - ] - }, - { - "text": "Immediately implement Security Council resolution 1325 (2000) and related resolutions on women and peace and security, including by taking special measures to protect women and girls from gender-based violence and to hold perpetrators of such acts accountable ", - "values": [ - "Rights of the Child", - "Women's rights" - ] - }, - { - "text": "Take further steps aiming at the abolition of the death penalty", - "values": [ - "Death penalty" - ] - }, - { - "text": "Ensure adequate publicity and awareness of the convictions for female genital mutilation (FGM) in order to induce a deterrent effect on concerned communities", - "values": [ - "Rights of the Child", - "Torture and other CID treatment", - "Women's rights" - ] - }, - { - "text": "Harmonize legislation on asylum seekers and refugees in line with the international framework in force", - "values": [ - "Asylum-seekers - refugees" - ] - }, - { - "text": "Investigate and punish the cases of intimidation, harassment, persecution, torture and enforced disappearances, especially against political dissidents, journalists, ethnic and religious minorities and human rights defenders", - "values": [ - "Enforced disappearances", - "Freedom of opinion and expression", - "Freedom of the press", - "Human rights defenders", - "Minorities", - "Torture and other CID treatment" - ] - }, - { - "text": "Take additional measures to fight early pregnancies", - "values": [ - "Right to health", - "Rights of the Child", - "Women's rights" - ] - }, - { - "text": "Prioritize its efforts on the situation in the rural area, where the number of literacy rate is still relatively lower than those in the urban area", - "values": [ - "Right to education" - ] - }, - { - "text": "Respect the Paris Principles and put in place national mechanisms and institutions to monitor and follow up on the implementation of its international obligations ", - "values": [ - "National Human Rights Institution" - ] - }, - { - "text": "Respond to all the cases submitted by the Working Group on Enforced or Involuntary Disappearances, sign and ratify CED, and fully recognize the competency of the Committee ", - "values": [ - "Enforced disappearances", - "International instruments", - "Special procedures" - ] - }, - { - "text": "Sign and ratify the two International Covenants, CAT, CRPD and their respective Optional Protocols, and CED, and ratify the two Optional Protocols to CRC and CEDAW and its Optional Protocol ", - "values": [ - "International instruments" - ] - }, - { - "text": "Take all necessary steps to fully commit to end impunity for international crimes by acceding to the Rome Statute of the ICC and to fully align its national legislation with all obligations under the Rome Statute ", - "values": [ - "Impunity", - "International instruments", - "Justice" - ] - }, - { - "text": "Continue working in order to establish a national human rights institution in line with the Paris Principles, taking into account the recommendations from the treaty bodies in this regard ", - "values": [ - "National Human Rights Institution", - "Treaty bodies" - ] - }, - { - "text": "Further strengthen its engagement in the promotion of prevention of atrocities by undertaking efforts to prevent atrocities at the national level, since history shows that no country is immune to atrocities", - "values": [ - "Other" - ] - }, - { - "text": "Support comprehensively increased efficiency in fighting violence against children", - "values": [ - "Rights of the Child" - ] - }, - { - "text": "Advance the implementation of the Convention on the Rights of Persons with Disabilities by improving the inclusion of children and persons with disabilities in education and employment", - "values": [ - "Disabilities", - "International instruments", - "Labour", - "Right to education", - "Rights of the Child" - ] - }, - { - "text": "Advance towards the abolition of capital punishment by decreeing a de jure moratorium", - "values": [ - "Death penalty" - ] - }, - { - "text": "Take steps to ensure by both legislative and non-legislative measures, including initiatives for the promotion of multiculturalism, the protection of all religions and faiths and the non-escalation of hatred among people of different religions and faiths, based on the tenets of understanding, mutual acceptance and respect ", - "values": [ - "Freedom of religion and belief" - ] - }, - { - "text": "Continue its efforts to accelerate the achievement of the MDGs targets, particularly those health related MDGs ", - "values": [ - "Development", - "Right to health" - ] - }, - { - "text": "Increase dialogue and consultations with civil society organizations in the design of follow-up measures and implementation of the UPR towards strengthening the impact of the human rights policies, as set out in Resolution 5-1 of the Council", - "values": [ - "Civil society", - "UPR process" - ] - }, - { - "text": "Work towards a moratorium on executions with a view of abolishing the death penalty", - "values": [ - "Death penalty" - ] - }, - { - "text": "Ensure that reports of human rights violations by the police, the army and the National Intelligence Agency relating to unlawful arrest, detention, and torture of journalists, human rights defenders and opposition members are investigated and those responsible are brought to justice", - "values": [ - "Detention", - "Freedom of the press", - "Human rights defenders", - "Human rights violations by state agents", - "Torture and other CID treatment" - ] - }, - { - "text": "Pursue their policies to combat child labour and ill-treatment of children in all its forms", - "values": [ - "Labour", - "Rights of the Child", - "Torture and other CID treatment" - ] - }, - { - "text": "Redouble its efforts to advance women's rights and eliminate harmful practices", - "values": [ - "Torture and other CID treatment", - "Women's rights" - ] - }, - { - "text": "Sign, ratify and implement into its national legislation key human rights treaties, such as the two Optional Protocols to ICCPR", - "values": [ - "CP rights - general", - "Death penalty", - "International instruments" - ] - }, - { - "text": "Promote the institutionalization of the agency for social inclusion of Roma communities.", - "values": [ - "Minorities" - ] - }, - { - "text": "Continue with the projects and programs for the protection of indigenous communities, particularly in the field of education of their children", - "values": [ - "Indigenous peoples", - "Right to education", - "Rights of the Child" - ] - }, - { - "text": "Accelerate the process of legal reform with the aim of harmonizing the internal regulations with the Convention on the Elimination of All Forms of Discrimination against Women", - "values": [ - "International instruments", - "Women's rights" - ] - }, - { - "text": "Adopt measures to safeguard the independence of the judiciary in line with the provisions of the United Nations Basic Principles on the Independence of the Judiciary", - "values": [ - "Justice" - ] - }, - { - "text": "Provide adequate funding and human resources to its national human rights institution to enable it to fully implement its mandate", - "values": [ - "National Human Rights Institution" - ] - }, - { - "text": "Continue its ongoing initiative to conduct a complete overhaul of the justice and legal systems, in accordance with provisions enshrined in the recently adopted Constitution", - "values": [ - "Justice" - ] - }, - { - "text": "Investigate harassment and attacks against journalists and human rights defenders in order to bring those liable to justice ", - "values": [ - "Freedom of the press", - "Human rights defenders" - ] - }, - { - "text": "Continue the efforts to combat extreme poverty within the Sustainable Development Goals framework", - "values": [ - "Development", - "Poverty" - ] - }, - { - "text": "Cooperate with the international community to guarantee the return of all Muslim refugees and displaced persons, and guarantee the cooperation with all sides, and allow them full access to humanitarian assistance", - "values": [ - "Asylum-seekers - refugees", - "Freedom of religion and belief", - "Internally displaced persons", - "Technical assistance and cooperation" - ] - }, - { - "text": "Adopt measures which are conducive to the creation of an independent national human rights institution in conformity with the Paris Principles", - "values": [ - "National Human Rights Institution" - ] - }, - { - "text": "Ensure that any measure limiting freedom of expression, assembly and association on the Internet is based on clearly defined criteria in accordance with international law including international human rights law", - "values": [ - "Freedom of association and peaceful assembly", - "Freedom of opinion and expression" - ] - }, - { - "text": "Recommended that the national action plan on human rights reflect concrete steps towards the ratification of the ICCPR", - "values": [ - "CP rights - general", - "International instruments" - ] - }, - { - "text": "Identify the root causes of trafficking in persons and sexual exploitation of children in order to provide appropriate solutions", - "values": [ - "Rights of the Child", - "Trafficking" - ] - }, - { - "text": "Expedite its implementation of the measures to ensure equality for men and women ", - "values": [ - "Women's rights" - ] - }, - { - "text": "Pay special attention to the needs of rural women and women heads of households, ensuring that they participate in decision-making processes and have full access to justice, education, health services and credit facilities, and eliminate all forms of discrimination against women with respect to ownership and inheritance of land ", - "values": [ - "Women's rights" - ] - }, - { - "text": "Accelerate its current efforts to sign and ratify the CED ", - "values": [ - "Enforced disappearances", - "International instruments" - ] - }, - { - "text": "Evaluate the use of arraigo", - "values": [ - "Detention" - ] - }, - { - "text": "Consider, as necessary, strengthening anti-discrimination policies and measures, paying particular attention to reception centres for asylum seekers and within the national programme against Racial Discrimination, Xenophobia and related intolerance ", - "values": [ - "Asylum-seekers - refugees", - "Racial discrimination" - ] - }, - { - "text": "Carry out investigations, in accordance with international norms, regarding the perpetrators, police or military, of the violence which resulted in serious injuries or deaths during demonstrations and as appropriate bring those responsible to justice", - "values": [ - "Extrajudicial executions", - "Freedom of association and peaceful assembly", - "Human rights violations by state agents" - ] - }, - { - "text": "Announce a moratorium on the death penalty with a view to its eventual abolition. Pending this, Germany recommends taking appropriate steps to reduce its application, to respect international minimum standards and, in particular, to ensure that the death penalty is not imposed on persons under the age of 18 at the time of infringing penal law. Due process of law should be guaranteed in all judicial proceedings ", - "values": [ - "Death penalty", - "Rights of the Child" - ] - }, - { - "text": "Strengthen efforts to implement the Hague Convention of 1980 on the Civil Aspects of International Child Abduction", - "values": [ - "International instruments", - "Rights of the Child" - ] - }, - { - "text": "Ratify the Convention for the Elimination of the Enforced Disappearances of Persons ", - "values": [ - "Enforced disappearances", - "International instruments" - ] - }, - { - "text": "Consider enacting comprehensive equality legislation that will provide effective remedies and address discrimination on all grounds", - "values": [ - "Other" - ] - }, - { - "text": "Prosecute or extradite for trial Luis Posada Carriles and dozens of other well-known terrorists living in impunity in the United States", - "values": [ - "Counter-terrorism" - ] - }, - { - "text": "Investigate thoroughly cases of female genital mutilation and bring the perpetrators to justice", - "values": [ - "Rights of the Child", - "Torture and other CID treatment", - "Women's rights" - ] - }, - { - "text": "Extend an open invitation to the United Nations special procedures ", - "values": [ - "Special procedures" - ] - }, - { - "text": "Ratify and accede to the Convention against Torture, the International Convention on the Protection of the Rights of All Migrant Workers and Members of Their Families and the International Convention for the Protection of All Persons from Enforced Disappearance", - "values": [ - "Enforced disappearances", - "International instruments", - "Labour", - "Migrants", - "Torture and other CID treatment" - ] - }, - { - "text": "Continue taking measures aimed at eliminating historical injustices and inequalities in all sectors, especially in the health and education sectors, in order to improve the living standards of all its people", - "values": [ - "Right to education", - "Right to health" - ] - }, - { - "text": "Publicly support human rights advocacy and create a safe environment for all who promote human rights. ", - "values": [ - "Human rights defenders" - ] - }, - { - "text": "Consider raising the age of criminal responsibility.", - "values": [ - "Rights of the Child" - ] - }, - { - "text": "Take immediate steps to end the persecution of human rights defenders ", - "values": [ - "Human rights defenders" - ] - }, - { - "text": "Further reduce the number of crimes carrying the death penalty and publish figures on death verdicts ", - "values": [ - "Death penalty" - ] - }, - { - "text": "Amend its Criminal Code to define torture as a crime in accordance with the definition in the Convention against Torture, including abolishing or revising article 44.1 of the Code so that there is no impunity for human rights violations ", - "values": [ - "International instruments", - "Torture and other CID treatment" - ] - }, - { - "text": "Further focus on the respect of human rights", - "values": [ - "General" - ] - }, - { - "text": "Establish a national human rights institution fully compliant with the Paris Principles by elaborating an action plan for the protection and promotion of human rights ", - "values": [ - "National Human Rights Institution" - ] - }, - { - "text": "Adopt measures to combat violence against women, including domestic violence", - "values": [ - "Women's rights" - ] - }, - { - "text": "Enforce effectively all relevant laws criminalizing violence against women and domestic violence", - "values": [ - "Rights of the Child", - "Women's rights" - ] - }, - { - "text": "Continue combating discrimination and violence against women and girls by elaborating effective laws and implementing them effectively", - "values": [ - "Rights of the Child", - "Women's rights" - ] - }, - { - "text": "Decriminalize consensual same-sex relations between males, investigate all incidents and acts of violence suspected of being motivated on the grounds of sexual identity, and take all necessary measures to ensure the full enjoyment of human rights by lesbian, gay, bisexual and transgender persons, as stipulated by the principle of non-discrimination established under international human rights law and articulated in the Yogyakarta principles", - "values": [ - "International instruments", - "Sexual Orientation and Gender Identity" - ] - }, - { - "text": "Work to ensure that the Independent Commission of Investigations receives appropriate resourcing and support to enable it to effectively perform its functions ", - "values": [ - "Justice" - ] - }, - { - "text": "Take urgent measures to repeal laws that discriminate against women in matters such as marriage and family relations", - "values": [ - "Women's rights" - ] - }, - { - "text": "Consider the elaboration of specific legislative guidelines for codification of discretionary penalties and dissemination of such guidelines among all judges, lawyers and prosecutors concerned ", - "values": [ - "Justice" - ] - }, - { - "text": "Share its experiences in teachers and professors' training, and in adults' education ", - "values": [ - "Right to education" - ] - }, - { - "text": "Continue enhancing legislation and policies to fight the scourge of gender-based violence at its roots, and in particular strengthen awareness-raising campaigns both in the media and in educational establishments ", - "values": [ - "Human rights education and training", - "Women's rights" - ] - }, - { - "text": "Immediately introduce an alternative military service option for conscientious objectors, ensuring it has a non-combatant or civilian character and is not of a punitive nature", - "values": [ - "Freedom of religion and belief" - ] - }, - { - "text": "Consider removing the rules which allow the criminalization of religious activities merely on the basis of lack of legal registration required for religious group ", - "values": [ - "Freedom of religion and belief" - ] - }, - { - "text": "Accede to ILO Convention No. 189", - "values": [ - "International instruments", - "Labour" - ] - }, - { - "text": "Review its procedures, practices and legislation", - "values": [ - "Privacy" - ] - }, - { - "text": "Strengthen national capacities in order to ensure respect for due process and access to justice for all, including through the application of custody hearings and the provision of affordable access to legal counselling", - "values": [ - "Justice" - ] - }, - { - "text": "Provide training on the rights of the child to public officials and civil servants", - "values": [ - "Human rights education and training", - "Rights of the Child" - ] - }, - { - "text": "Adopt all necessary measures to tackle the root causes of the problems of child prostitution, sexual tourism, use of children in pornography and trafficking in women, stepping up its efforts to improve the economic situation", - "values": [ - "Rights of the Child", - "Trafficking", - "Women's rights" - ] - }, - { - "text": "Adopt a national plan of action to combat violence against women and girls and to ensure that all victims of gender-based violence have effective access to legal assistance and protection measures ", - "values": [ - "Rights of the Child", - "Women's rights" - ] - }, - { - "text": "Continue its efforts on enhanced enforcement, institutional capacity-building and awareness-raising in the fight against corruption", - "values": [ - "Corruption" - ] - }, - { - "text": "Take all necessary measures, as appropriate, to ensure the legal protection of foreign workers through policies designed at preventing any form of abuse", - "values": [ - "Labour", - "Migrants" - ] - }, - { - "text": "Delete the crime of witchcraft from the penal code", - "values": [ - "Rights of the Child", - "Women's rights" - ] - }, - { - "text": "Continue strengthening the legislation for the elimination of all forms of discrimination against women", - "values": [ - "Women's rights" - ] - }, - { - "text": "Achieve the implementation of the national strategy for persons with disabilities and introduce a legal regime of subsidized transport for persons with disabilities", - "values": [ - "Disabilities" - ] - }, - { - "text": "Enact and implement legislation to prohibit corporal punishment of children in all settings", - "values": [ - "Rights of the Child", - "Torture and other CID treatment" - ] - }, - { - "text": "Take all necessary measures to provide individuals that are under threat of being forcibly evicted with full protection against forced eviction in line with international obligations and commitments", - "values": [ - "Right to housing" - ] - }, - { - "text": "Make torture a criminal offence in accordance with the Convention against Torture", - "values": [ - "International instruments", - "Torture and other CID treatment" - ] - }, - { - "text": "Remove all restrictions, in law and in practice, which prevent full enjoyment of the rights to freedom of expression and association and create an enabling environment for civil society", - "values": [ - "Civil society", - "Freedom of association and peaceful assembly", - "Freedom of opinion and expression" - ] - }, - { - "text": "Deepen the process of ensuring effective reparation for the wounded and the families of those killed during the revolution by providing adequate medical support and rehabilitation", - "values": [ - "Justice", - "Right to health" - ] - }, - { - "text": "Strengthen the enforcement of existing legislation prohibiting female genital mutilation and at the same time enhance awareness-raising activities by focusing on the health risks of this harmful practice", - "values": [ - "Human rights education and training", - "Rights of the Child", - "Torture and other CID treatment", - "Women's rights" - ] - }, - { - "text": "Repeal all discriminatory laws with regard to women and promote access to education at all levels ", - "values": [ - "Women's rights" - ] - }, - { - "text": "Adhere to the Additional Protocols I and II to the Geneva Conventions", - "values": [ - "International humanitarian law", - "International instruments" - ] - }, - { - "text": "Provide greater support for foster care as an alternative to institutionalization of children.", - "values": [ - "Rights of the Child" - ] - }, - { - "text": "Step up efforts for comprehensive protection of women and girls, in particular against sexual violence", - "values": [ - "Rights of the Child", - "Women's rights" - ] - }, - { - "text": "Continue to develop the capacity of special institutions that take care of persons with disabilities, including those health and education institutions", - "values": [ - "Disabilities", - "Right to education", - "Right to health" - ] - }, - { - "text": "Step up the efforts of the competent ministries to effectively train professionals, such as judges, prosecutors and police officers, for prompt and independent investigation and effective prosecution of racist and hate crimes", - "values": [ - "Human rights education and training", - "Racial discrimination" - ] - }, - { - "text": "Take active measures to ensure full and effective participation of women at all levels of public and political life", - "values": [ - "Women's rights" - ] - }, - { - "text": "Extend the exclusion of death penalty to all crimes committed by persons with mental illness", - "values": [ - "Death penalty", - "Disabilities" - ] - }, - { - "text": "Continue the resettlement of all internally displaced persons as a result of the conflict and guarantee the transfer or compensate those people who cannot return to their places of origin", - "values": [ - "Internally displaced persons" - ] - }, - { - "text": "Consider signing and/or ratifying the ICRMW", - "values": [ - "International instruments", - "Labour", - "Migrants" - ] - }, - { - "text": "Strengthen its efforts in protecting women's rights.", - "values": [ - "Women's rights" - ] - }, - { - "text": "Proceed to the ratification of the International Convention for the Protection of the Rights of All Migrant Workers and Members of Their Families, in conformity with recommendation No. 1737, of 17 March 2006, of the Council of Europe Parliamentary Assembly, of which Sweden is an active member", - "values": [ - "International instruments", - "Labour", - "Migrants" - ] - }, - { - "text": "Continue to develop the relevant programs to implement CRPD", - "values": [ - "Disabilities", - "International instruments" - ] - }, - { - "text": "Consider ratifying the Convention on the Rights of Persons with Disabilities shortly", - "values": [ - "Disabilities", - "International instruments" - ] - }, - { - "text": "Look into the current regulatory framework so as to remove parts of the legislation that may challenge freedom of speech and independence of the press and other media ", - "values": [ - "Freedom of opinion and expression", - "Freedom of the press" - ] - }, - { - "text": "Ensure that allegations of abuse by members of security forces are investigated in a prompt, thorough, credible and impartial manner, that those responsible, including officials with oversight responsibility are disciplined or prosecuted in accordance with international standards, and that victims of abuse receive adequate compensation by the State", - "values": [ - "Human rights violations by state agents" - ] - }, - { - "text": "Continue human rights education and training programmes, including for security and law enforcement officials ", - "values": [ - "Human rights education and training" - ] - }, - { - "text": "Continue applying a gender perspective in its policies and programmes, including in the follow-up to the results of the UPR, and continue its actions, particularly through awareness-raising campaigns and public education programmes, to work towards the eradication of stereotypes associated with traditional roles of men and women in the family", - "values": [ - "Human rights education and training", - "UPR process", - "Women's rights" - ] - }, - { - "text": "Establish a moratorium with a view to the abolition of the death penalty. ", - "values": [ - "Death penalty" - ] - }, - { - "text": "Develop a national asylum seeker plan and become a party to the Convention Relating to the Status of Stateless Persons along with the Convention on the Reduction of Statelessness", - "values": [ - "International instruments", - "Statelessness and the right to nationality" - ] - }, - { - "text": "Consider ratifying the International Convention on the Protection of the Rights of Migrant Workers and Members of Their Families and ILO Convention No. 189 ", - "values": [ - "International instruments", - "Labour", - "Migrants" - ] - }, - { - "text": "Continue to adopt measures to strengthen the criminal justice system, in order to ensure accountability for crimes committed", - "values": [ - "Justice" - ] - }, - { - "text": "Ratify ICCPR and ICESCR and other core international human rights treaties, such as CAT, CRPD and ICERD, and their optional protocols, and withdraw its reservations on key principles of CRC and CEDAW ", - "values": [ - "International instruments" - ] - }, - { - "text": "Continue to pay special attention to access to education for all children regardless of their ethnic origin and at all education levels, preschool, primary and secondary.", - "values": [ - "Right to education", - "Rights of the Child" - ] - }, - { - "text": "Consider mainstreaming sexual and reproductive health education in schools and improving access to contraception for adults and young people", - "values": [ - "Right to health" - ] - }, - { - "text": "Step up work to combat stigmatization, discrimination, inequality and gender-based violence in the national legislation and policy of Swaziland", - "values": [ - "Women's rights" - ] - }, - { - "text": "Strengthen the cooperation with OHCHR", - "values": [ - "Technical assistance and cooperation" - ] - }, - { - "text": "Ensure accountability for all crimes committed, regardless of the perpetrator, including in cases of violence against women and sexual violence ", - "values": [ - "Women's rights" - ] - }, - { - "text": "Continue its efforts to address all forms of violence against women and girls", - "values": [ - "Rights of the Child", - "Women's rights" - ] - }, - { - "text": "Prohibit all forms of corporal punishment of children in all settings, including alternative care settings ", - "values": [ - "Rights of the Child", - "Torture and other CID treatment" - ] - }, - { - "text": "Take the measures necessary to ensure the free and fair election of a new legislative power, and to take the steps necessary to re-establish an independent judiciary in accordance with international human rights standards", - "values": [ - "Elections", - "International instruments", - "Justice" - ] - }, - { - "text": "Accede to the Optional Protocol to the Convention against Torture and other Cruel, Inhuman or Degrading Treatment or Punishment (OPCAT).", - "values": [ - "Detention", - "International instruments", - "Torture and other CID treatment" - ] - }, - { - "text": "Issue a standing invitation to the mandate holders of the Council ", - "values": [ - "Special procedures" - ] - }, - { - "text": "Abolish all unconstitutional discriminatory practices connected with the songbun system and terminate the punishment based on collective guilt", - "values": [ - "Justice" - ] - }, - { - "text": "Accede to the Optional Protocol to the Convention on the Rights of the Child CRC on the sale of children, child prostitution and child pornography", - "values": [ - "International instruments", - "Rights of the Child", - "Trafficking" - ] - }, - { - "text": "Apply rigorously the law on the prevention and punishment of violence against women", - "values": [ - "Women's rights" - ] - }, - { - "text": "Repeal provisions criminalizing sexual relations between consenting adults of the same sex, to respect the principles of equality and nondiscrimination among all people", - "values": [ - "Sexual Orientation and Gender Identity" - ] - }, - { - "text": "Ensure equality of men and women in practice and bring domestic legislation into line with the recommendations of the Committee on the Elimination of Discrimination against Women ", - "values": [ - "Treaty bodies", - "Women's rights" - ] - }, - { - "text": "The instrument of ratification for the Optional Protocol to the Convention on the Rights of the Child on the involvement of children in armed conflict would be submitted within three months", - "values": [ - "International humanitarian law", - "International instruments", - "Rights of the Child" - ] - }, - { - "text": "Take all the necessary measures to end the employment of sexual violence in a widespread and systematic manner, as a tactic of war, as well as rape and sexual abuses against women and girls, and ensure that perpetrators are prosecuted", - "values": [ - "Rights of the Child", - "Women's rights" - ] - }, - { - "text": "Delete or amend all legal provisions on peaceful assemblies, which restrict the exercise of the rights to freedom of expression and assembly", - "values": [ - "Freedom of association and peaceful assembly", - "Freedom of opinion and expression" - ] - }, - { - "text": "Further efforts in this positive direction with a view to strengthen national health-care programmes so that health care is easily accessible, available and affordable for all members of society", - "values": [ - "Right to health" - ] - }, - { - "text": "Ensure the independence and effectiveness of the National Commission on Human Rights, in particular through the allocation of adequate resources in order to bring it into conformity with the Paris Principles", - "values": [ - "National Human Rights Institution" - ] - }, - { - "text": "Adopt measures to reduce the number of children without birth registration", - "values": [ - "Rights of the Child", - "Statelessness and the right to nationality" - ] - }, - { - "text": "Initiate a bill to reform of the Criminal Code in order to incorporate as soon as possible the criminalization of torture in line with the definition set forth in Article 1 of the Convention against Torture and Other Cruel, Inhuman or Degrading Treatment or Punishment", - "values": [ - "International instruments", - "Torture and other CID treatment" - ] - }, - { - "text": "Fully ensure freedom of religion for all, without discrimination", - "values": [ - "Freedom of religion and belief" - ] - }, - { - "text": "Pursue appropriate policies, such as its National Gender Policy, including public-oriented awareness campaigns to overcome the prevalence of patriarchal ideology with firmly entrenched stereotypes regarding the roles and responsibilities of women and men in the family and society ", - "values": [ - "Human rights education and training", - "Women's rights" - ] - }, - { - "text": "Enhance cooperation with the human rights special procedures", - "values": [ - "Special procedures" - ] - }, - { - "text": "Continue to implement sustainable policies to alleviate poverty and increase employment opportunities", - "values": [ - "Development", - "Poverty" - ] - }, - { - "text": "Continue to develop programmes under way pursuing the noble objective to achieve the maximum availability of higher education to every Cuban", - "values": [ - "Right to education" - ] - }, - { - "text": "Develop a comprehensive strategy to reduce domestic violence in Tuvalu, including by raising public awareness of the issue and identifying ways to combat such violence.", - "values": [ - "Human rights education and training", - "Rights of the Child", - "Women's rights" - ] - }, - { - "text": "Institute a formal reconciliation process leading to an agreement with Aboriginal and Torres Strait Islander people ", - "values": [ - "Indigenous peoples" - ] - }, - { - "text": "Ratify the ICESCR as soon as possible ", - "values": [ - "ESC rights - general", - "International instruments" - ] - }, - { - "text": "Implement article 2 (a) of the Convention on the Elimination of All Forms of Discrimination against Women by prohibiting discrimination between men and women in its Constitution and other appropriate legislation so as to ensure gender equality.", - "values": [ - "International instruments", - "Women's rights" - ] - }, - { - "text": "Adopt a progressive Traveller Roma inclusion strategy with clear goals, indicators, timeframes, and budget in consultation with affected groups", - "values": [ - "Minorities" - ] - }, - { - "text": "Increase measures aimed at decreasing the high number of women who are victims of domestic violence", - "values": [ - "Rights of the Child", - "Women's rights" - ] - }, - { - "text": "Pursue commitments to the promotion and protection of the universal values of human rights, especially through strengthening of the rule of law.", - "values": [ - "Justice" - ] - }, - { - "text": "Make every effort to finalize policies in the areas of disability, inclusive education, child labor, gender equality and women's development and to progress in achieving measurable results in their implementation within the time frame prior to its next UPR", - "values": [ - "Disabilities", - "Labour", - "Right to education", - "Rights of the Child", - "UPR process", - "Women's rights" - ] - }, - { - "text": "Take further steps to ensure the impartiality and independence of the judiciary in accordance with international standards", - "values": [ - "Justice" - ] - }, - { - "text": "Study the possibility of ratifying the Optional Protocol to the Convention on the Rights of Persons with Disabilities and the International Convention for the Protection of All Persons from Enforced Disappearance ", - "values": [ - "Disabilities", - "Enforced disappearances", - "International instruments" - ] - }, - { - "text": "Ensure the adequate financial resources for the national human rights institutions", - "values": [ - "General" - ] - }, - { - "text": "Reconsider the recommendation made from its first UPR cycle on the collection of statistics based on the notions of ethnic origin or identity and in accordance with conditions of confidentiality and objectivity as given in the French Council of State's opinion of 1 April 2010", - "values": [ - "Minorities", - "UPR process" - ] - }, - { - "text": "Align its legislation to the definition of discrimination against women in accordance with Article 1 of the Convention on the Elimination of All Forms of Discrimination against Women, and adopt laws and policies for the full participation of women in both public and private decision spaces", - "values": [ - "International instruments", - "Women's rights" - ] - }, - { - "text": "Develop even closer co-operation with civil society on human rights related issues", - "values": [ - "Civil society" - ] - }, - { - "text": "Become a party to CEDAW", - "values": [ - "International instruments", - "Women's rights" - ] - }, - { - "text": "Continue with the legal and administrative steps to finally prohibit fully corporal punishment of children", - "values": [ - "Rights of the Child", - "Torture and other CID treatment" - ] - }, - { - "text": "Consider developing a strategy that ensures that the experiences of community practitioners are taken into account in the development of its national strategies to improve health standards in maternal neo-natal and child health.", - "values": [ - "Right to health", - "Rights of the Child", - "Women's rights" - ] - }, - { - "text": "Include in the Charter of Rights Bill, currently before Parliament, a specific prohibition of discrimination on the grounds of sexual orientation and repeal all legal provisions criminalizing consensual relations between adults of the same sex, and combat this type of discrimination through awareness-raising campaigns and education programmes in school ", - "values": [ - "Human rights education and training", - "Sexual Orientation and Gender Identity" - ] - }, - { - "text": "Continue to strengthen measures aimed at protecting and rehabilitating women victims of sexual and domestic violence", - "values": [ - "Rights of the Child", - "Women's rights" - ] - }, - { - "text": "Adopt legislative measures to guarantee that unaccompanied undocumented children are cared for", - "values": [ - "Migrants", - "Rights of the Child" - ] - }, - { - "text": "Ratify the Optional Protocol to CEDAW to provide greater protection to women", - "values": [ - "International instruments", - "Women's rights" - ] - }, - { - "text": "Take measures to strengthen the independence and functioning of the country's judiciary, in particular to substantively reduce the time spent by persons in pretrial detention", - "values": [ - "Detention", - "Labour" - ] - }, - { - "text": "Recommended that the Uzbek Government allow independent investigations of labour rights abuses.", - "values": [ - "Labour" - ] - }, - { - "text": "Increase measures to guarantee equal opportunities for women and men in the labour market and provide the General Inspection of Labour with necessary human and financial resources requested to supervise and sanction discriminatory practices against women in the field of labour", - "values": [ - "Labour", - "Women's rights" - ] - }, - { - "text": "Continue implementing throughout the country the criminal accusatory system, ensuring the same criminal procedure for the whole population", - "values": [ - "Justice" - ] - }, - { - "text": "Respect at least the minimum standards and the provisions of ICCPR and CRC concerning the death penalty, for as long as it is maintained", - "values": [ - "Death penalty", - "International instruments" - ] - }, - { - "text": "Ensure that laws are fully and consistently enforced to provide adequate protections for members of religious minorities, scheduled castes, and adivasi groups, as well as, women, trafficking victims, and LGBT citizens", - "values": [ - "Freedom of religion and belief", - "Indigenous peoples", - "Minorities", - "Sexual Orientation and Gender Identity", - "Trafficking", - "Women's rights" - ] - }, - { - "text": "Issue a standing invitation to all the Special Procedures and accept their requests when they seek to visit Malaysia", - "values": [ - "Special procedures" - ] - }, - { - "text": "Continue the efforts aiming to eliminate all forms of discrimination and violence against women ", - "values": [ - "Women's rights" - ] - }, - { - "text": "Ensure the processing of asylum-seekers' claims in accordance with the United Nations Refugee Convention and that they are detained only when strictly necessary ", - "values": [ - "Asylum-seekers - refugees", - "International instruments" - ] - }, - { - "text": "Strengthen human rights education by providing special programmes for law enforcement officials and the judiciary ", - "values": [ - "Human rights education and training" - ] - }, - { - "text": "Aim at enhancing social cohesion through laws and policies to meet the changing political, economic and social demands of the people to safeguard social harmony", - "values": [ - "General" - ] - }, - { - "text": "Proceed to a de jure moratorium on the death penalty at the earliest possible date, with a view to its final abolition and, in this regard, sign and ratify the Second Optional Protocol to the International Covenant on Civil and Political Rights ", - "values": [ - "Death penalty", - "International instruments" - ] - }, - { - "text": "Guarantee the civil registration of children born out of marriage, as well as of refugee and stateless children", - "values": [ - "Rights of the Child", - "Statelessness and the right to nationality" - ] - }, - { - "text": "Accelerate the establishment and the effective implementation of a solid public defence system in all states, in agreement with recommendations 119.31, 119.10, 119.12 and 119.14 from the second cycle", - "values": [ - "Justice" - ] - }, - { - "text": "Extend an open ended and standing invitation to United Nations special procedures", - "values": [ - "Special procedures" - ] - }, - { - "text": "Take all necessary, prompt and effective measures to remedy the problem of the length of the judicial procedure ", - "values": [ - "Justice" - ] - }, - { - "text": "Consider amending its domestic laws to grant Omani women equal rights with men with regard to transmission of their nationality to their children, as previously recommended", - "values": [ - "Rights of the Child", - "Statelessness and the right to nationality", - "UPR process", - "Women's rights" - ] - }, - { - "text": "Adopt a comprehensive anti-discrimination legislation to address all forms of discrimination, hate speech and negative stereotypes", - "values": [ - "Racial discrimination" - ] - }, - { - "text": "Adopt measures to promote gender equality and non- discrimination, particularly in the area of employment ", - "values": [ - "Women's rights" - ] - }, - { - "text": "Continue implementing the recommendations of the Committee on the Rights of the Child on protecting street children", - "values": [ - "Rights of the Child", - "Treaty bodies" - ] - }, - { - "text": "Take steps to issue standing invitations to all special procedures", - "values": [ - "Special procedures" - ] - }, - { - "text": "Ensure that the Human Rights Commission is made fully compliant with the Paris Principles ", - "values": [ - "National Human Rights Institution" - ] - }, - { - "text": "Guarantee freedom of expression and association through amending the media laws (that is the Cybercrime Act, Statistics Act, both of 2015 and Newspaper Act of 1976) and to ensure a conducive environment for civil society organizations, human rights defenders and media to operate freely in accordance with the Constitution of the United Republic of Tanzania and the United Nations declaration on human rights defenders ", - "values": [ - "Civil society", - "Freedom of association and peaceful assembly", - "Freedom of opinion and expression", - "Freedom of the press", - "Human rights defenders", - "International instruments" - ] - }, - { - "text": "Continue efforts to implement the national action plan for the implementation of the Convention on the Rights of Persons with Disabilities", - "values": [ - "Disabilities", - "International instruments" - ] - }, - { - "text": "Take appropriate measures to fully guarantee the safety of journalists and human rights defenders so that they can carry out their activities without fear of persecution or restriction", - "values": [ - "Freedom of the press", - "Human rights defenders" - ] - }, - { - "text": "Give a positive response to the visit request of the Working Group on Arbitrary Detention", - "values": [ - "Detention", - "Special procedures" - ] - }, - { - "text": "Continue and finalize the procedure for the decriminalization of press offenses", - "values": [ - "Freedom of the press" - ] - }, - { - "text": "Establish a national human rights institution which is in full compliance with the Paris Principles", - "values": [ - "National Human Rights Institution" - ] - }, - { - "text": "Put in place a robust mechanism in order to put an end to racism, racial discrimination and related intolerance, especially against Muslim people and people of African origin", - "values": [ - "Freedom of religion and belief", - "Minorities", - "Racial discrimination" - ] - }, - { - "text": "Consider further improving access to health and education with a focus on improving maternal and new born health facilities and expanding the secondary and tertiary education opportunities for all", - "values": [ - "Right to education", - "Right to health", - "Rights of the Child", - "Women's rights" - ] - }, - { - "text": "Provide basic human rights education to children in primary and secondary schools", - "values": [ - "Human rights education and training" - ] - }, - { - "text": "Ensure that non-Danish residents can also fully enjoy their basic human rights, paying special attention to access to justice ", - "values": [ - "Justice", - "Migrants" - ] - }, - { - "text": "Protect and promote the rights of women, end sexual violence in conflict and do not allow impunity for such crimes", - "values": [ - "Impunity", - "Women's rights" - ] - }, - { - "text": "Continue working on harmonizing its national policies and laws related to children in line with the Convention on the Rights of the Child and the Protocols thereto to which it is a party", - "values": [ - "International humanitarian law", - "International instruments", - "Labour", - "Rights of the Child", - "Trafficking" - ] - }, - { - "text": "Continue to implement its poverty reduction strategy, to enable its people to better enjoy the right to development, providing the necessary foundation for the enjoyment of the other rights", - "values": [ - "Development" - ] - }, - { - "text": "Ensure that the right to freedom of assembly is guaranteed and remove all restrictions to peaceful protests", - "values": [ - "Freedom of association and peaceful assembly" - ] - }, - { - "text": "Enact legislation that explicitly protects LGBT persons from discrimination and ensure that laws that contain discriminatory provisions against LGBT persons are amended", - "values": [ - "Sexual Orientation and Gender Identity" - ] - }, - { - "text": "Conduct a comprehensive study on child abuse, including sexual abuse, and child labour, with a view to identifying enhanced protection measures and ensuring the provision of adequate resources for their implementation ", - "values": [ - "Labour", - "Rights of the Child" - ] - }, - { - "text": "Take measures to foster a safe, respectful, enabling environment for civil society, including through the removal of legal and policy measures, which unwarrantedly limit the right to association", - "values": [ - "Civil society", - "Freedom of association and peaceful assembly" - ] - }, - { - "text": "Focus on marginalised groups or disadvantaged sections of society. Of particular relevance would be measures to improve health and education", - "values": [ - "Right to education", - "Right to health" - ] - }, - { - "text": "Amend the Penal Code to decriminalizing homosexual activity in line with the provisions of ICCPR, particularly articles 2 and 26 ", - "values": [ - "International instruments", - "Sexual Orientation and Gender Identity" - ] - }, - { - "text": "Ensure that proper investigations are conducted in all cases of attacks on journalists, media workers and human rights defenders", - "values": [ - "Freedom of the press", - "Human rights defenders" - ] - }, - { - "text": "Expedite action on the reform process to remove provisions in domestic legislation which discriminate against women. ", - "values": [ - "Women's rights" - ] - }, - { - "text": "Refrain from introducing and/or repeal any legislation that criminalizes sexual activities between consenting adults and take all necessary measures to prevent discrimination on the basis of sexual orientation and/or gender identity or expression", - "values": [ - "Sexual Orientation and Gender Identity" - ] - }, - { - "text": "Strengthen efforts to reduce maternal mortality, including by reviewing the legislation on abortion", - "values": [ - "Right to health", - "Women's rights" - ] - }, - { - "text": "Strengthen its regulatory and policy framework, in accordance with international human rights standards, for the effective protection of asylum seekers and refugees", - "values": [ - "Asylum-seekers - refugees", - "International instruments" - ] - }, - { - "text": "Reject any proposed legislation that would restrict freedom of expression relating to sexual orientation", - "values": [ - "Freedom of opinion and expression", - "Sexual Orientation and Gender Identity" - ] - }, - { - "text": "Consider establishing a National Human Rights Institution in accordance with the Paris Principles", - "values": [ - "National Human Rights Institution" - ] - }, - { - "text": "Step up measures to combat enrolment of children by the belligerents, taking into consideration the concerns expressed by the Committee on the Rights of the Child and the Office for the Coordination of Humanitarian Affairs.", - "values": [ - "Rights of the Child", - "Treaty bodies" - ] - }, - { - "text": "Continue to take the necessary measures in order to better promote women's rights in all spheres of society", - "values": [ - "Women's rights" - ] - }, - { - "text": "Provide protection for the family as a natural and basic unit of society", - "values": [ - "Other" - ] - }, - { - "text": "Share the experiences regarding the first Programme for Children and Youth, in particular the approach of including the recommendations of the Committee on the Rights of the Child", - "values": [ - "Rights of the Child", - "Treaty bodies" - ] - }, - { - "text": "Take concrete steps to promote and protect the right of peaceful assembly, in line with international human rights law and standards", - "values": [ - "Freedom of association and peaceful assembly", - "International instruments" - ] - }, - { - "text": "Submit its outstanding reports to the treaty bodies as soon as possible", - "values": [ - "Treaty bodies" - ] - }, - { - "text": "Ensure that members of the Guyana Police Force are adequately trained on the appropriate use of force and firearms in accordance with international standards ", - "values": [ - "Human rights education and training" - ] - }, - { - "text": "Ratify the Rome Statute of ICC, and ICPPED, as previously recommended", - "values": [ - "Enforced disappearances", - "International instruments", - "Justice", - "UPR process" - ] - }, - { - "text": "Continue promoting respect for human rights and conduct investigations into human rights violations", - "values": [ - "General", - "Impunity" - ] - }, - { - "text": "Ensure implementation of the second phase of the National Action Plan on Gender-based Violence and continue efforts to improve access to justice and shelter for victims of abuse", - "values": [ - "Women's rights" - ] - }, - { - "text": "Allow the exercise of the right to the freedom of expression and the freedom of association and assembly, by fostering and facilitating civil society entities and enabling them to obtain status under law ", - "values": [ - "Civil society", - "Freedom of association and peaceful assembly", - "Freedom of opinion and expression" - ] - }, - { - "text": "Develop a comprehensive strategy to combat all forms of discrimination ", - "values": [ - "Other" - ] - }, - { - "text": "Ratify the two Optional Protocols to the Convention on the Rights of the Child, on the involvement of children in armed conflict (OP-CRC-AC), and on the sale of children, child prostitution and child pornography (OP-CRC-SC)", - "values": [ - "International humanitarian law", - "International instruments", - "Rights of the Child", - "Trafficking" - ] - }, - { - "text": "Give a yearly briefing to the Human Rights Council on the follow-up to the recommendations of this universal periodic review session as a voluntary measure ", - "values": [ - "UPR process" - ] - }, - { - "text": "Provide mandatory human rights training for its police force ", - "values": [ - "Human rights education and training" - ] - }, - { - "text": "Consider taking more resolute action to prevent and punish perpetrators of racially motivated acts of violence against members of the Muslim and Arab communities, the indigenous population, Canadian citizens of foreign origin, foreign workers, refugees and asylum-seekers", - "values": [ - "Asylum-seekers - refugees", - "Freedom of religion and belief", - "Indigenous peoples", - "Migrants", - "Minorities", - "Racial discrimination" - ] - }, - { - "text": "Sri Lanka will continue to work towards the economic development of the Eastern Province, which will uplift standards of living and the realization of social, economic and cultural rights, and also assist strengthening and smooth functioning of democratic institutions. Sri Lanka will also promote the dissemination and inculcation of best practices, good governance and political pluralism, as well as take measures for the rehabilitation and reintegration of ex-combatants, particularly children and young persons", - "values": [ - "Development", - "ESC rights - general", - "Justice", - "Rights of the Child", - "Treaty bodies" - ] - }, - { - "text": "Take measures towards the ratification of the Optional Protocol to the Convention against Torture", - "values": [ - "Detention", - "International instruments", - "Torture and other CID treatment" - ] - }, - { - "text": "Adhere to or ratify the International Convention for the Protection of All Persons from Enforced Disappearance ", - "values": [ - "Enforced disappearances", - "International instruments" - ] - }, - { - "text": "Finalize the development of the Inclusive Education Policy giving effect to the right to education of all school-aged children and young persons", - "values": [ - "Right to education", - "Rights of the Child" - ] - }, - { - "text": "Continue adopting measures to guarantee the rights of persons with disabilities", - "values": [ - "Disabilities" - ] - }, - { - "text": "Formulate effective strategies and programmes in order to provide employment and income-generating opportunities for the population, in particular, the rural population, Dalits and ethnic minorities ", - "values": [ - "Development", - "Minorities" - ] - }, - { - "text": "Step up measures aimed at eliminating violence against women and establish clear monitoring objectives for the implementation of policies against violence against women", - "values": [ - "Women's rights" - ] - }, - { - "text": "Remove restrictions on movement in and out of the capital and derogate Article 62 of the Penal Code, which prohibits leaving the country without State authorization, thereby removing all sanctions against those who decide to leave and to return to their country", - "values": [ - "Freedom of movement" - ] - }, - { - "text": "Adopt legal and practical safeguards to protect freedom of expression and of assembly", - "values": [ - "Freedom of association and peaceful assembly", - "Freedom of opinion and expression" - ] - }, - { - "text": "Take further steps to provide access to education and healthcare for all citizens, particularly in rural areas where there is an immediate need ", - "values": [ - "Right to education", - "Right to health" - ] - }, - { - "text": "Review conditions in prison and detention facilities so that they meet international standards, in particular where juveniles are concerned.", - "values": [ - "Detention" - ] - }, - { - "text": "Continue to strengthen legislative and policy measures to counter violence against women", - "values": [ - "Women's rights" - ] - }, - { - "text": "Decriminalize consensual same-sex conduct between adults", - "values": [ - "Sexual Orientation and Gender Identity" - ] - }, - { - "text": "Take into account the rights of children in climate change strategies", - "values": [ - "Environment", - "Rights of the Child" - ] - }, - { - "text": "Further the promotion and protection of human rights through the consolidation of its domestic human rights institutions with the help of the international community.", - "values": [ - "General", - "Technical assistance and cooperation" - ] - }, - { - "text": "Continue to work on improving the situation of children's rights in particular Roma children's right general public, in political discourse and media presentations, on police brutality and discrimination and to raise awareness of the need to improve the overall situation of human rights.", - "values": [ - "Minorities" - ] - }, - { - "text": "Review and reform its legislation allowing for the detention of asylum seekers on the basis of illegal entry, and ensure that the detention of asylum seekers, particularly of children, be applied only in exceptional circumstances after due diligence", - "values": [ - "Asylum-seekers - refugees", - "Detention" - ] - }, - { - "text": "Prohibit by law all forms of corporal punishment of children, without exception.", - "values": [ - "Rights of the Child", - "Torture and other CID treatment" - ] - }, - { - "text": "In the fight against trafficking in human beings, step up cooperation with countries of origin, protect victims, and prosecute and punish those responsible", - "values": [ - "Trafficking" - ] - }, - { - "text": "Issue a standing invitation to special procedures, giving priority to the Special Rapporteur on the rights to freedom of peaceful assembly and association, and the Special Rapporteur on the situation of human rights defenders", - "values": [ - "Freedom of association and peaceful assembly", - "Human rights defenders", - "Special procedures" - ] - }, - { - "text": "Ensure freedom of expression and access to information by ending the practice of interfering with access to the internet and the practice of censorship in online and print media ", - "values": [ - "Freedom of opinion and expression" - ] - }, - { - "text": "Identify, revise or repeal all provisions of the Penal Code and the Criminal Procedure Code which are in conflict with the Optional Protocol to the International Covenant on Civil and Political Rights on the abolition of the death penalty", - "values": [ - "Death penalty", - "International instruments" - ] - }, - { - "text": "Take measures to ensure the effective investigation and prosecution of human trafficking cases and establish remedy procedures for the victims", - "values": [ - "Trafficking" - ] - }, - { - "text": "Speed up the consideration of the ratification of the International Convention on the Protection of the Rights of All Migrant Workers and Their Families", - "values": [ - "International instruments", - "Labour", - "Migrants" - ] - }, - { - "text": "Intensify its efforts to end discrimination and acts of violence suffered by members of ethnic and religious minorities, particularly the Rohingya", - "values": [ - "Freedom of religion and belief", - "Minorities", - "Racial discrimination" - ] - }, - { - "text": "Strengthen the reform process of the criminal justice system in accordance with international standards, particularly regarding the right to a fair trial, the right to appeal to civilian courts and the right to a public hearing, and abrogate the jurisdiction of the military courts over civilian cases in terrorism-related offences", - "values": [ - "Counter-terrorism", - "Justice" - ] - }, - { - "text": "Sign and ratify the International Convention for the Protection of All Persons from Enforced Disappearance, Convention against Torture and Other Cruel, Inhuman or Degrading Treatment or Punishment and the Convention on the Elimination of All Forms of Discrimination against Women and its Optional Protocol ", - "values": [ - "Enforced disappearances", - "International instruments", - "Torture and other CID treatment", - "Women's rights" - ] - }, - { - "text": "Continue to pursue its social policies upholding the institution of the family in line with traditional family values ", - "values": [ - "Other" - ] - }, - { - "text": "Ratify the Amendments to the Rome Statute of the International Criminal Court on the crime of aggression (the Kampala amendments)", - "values": [ - "International instruments", - "Justice" - ] - }, - { - "text": "Accede to the Convention Against Torture and Other Cruel, Inhuman or Degrading Treatment or Punishment", - "values": [ - "International instruments", - "Torture and other CID treatment" - ] - }, - { - "text": "Consider ratifying more human rights instruments", - "values": [ - "International instruments" - ] - }, - { - "text": "Take measures aimed at the abolition of the death penalty in law and commit to this abolition at the international level, particularly by voting in favour of General Assembly resolutions prescribing a moratorium on this punishment", - "values": [ - "Death penalty" - ] - }, - { - "text": "Take immediate steps to prevent attacks on the human rights defenders and media and take action to investigate such acts", - "values": [ - "Freedom of the press", - "Human rights defenders" - ] - }, - { - "text": "Undertake measures to prevent high incidences of early pregnancy, including comprehensive sexuality education in schools and access to services in support of sexual health and reproductive rights", - "values": [ - "Right to health", - "Rights of the Child", - "Women's rights" - ] - }, - { - "text": "Redouble efforts to improve the conditions of persons deprived of their liberty, in particular by reducing periods of pre-trial detention, facilitating access to justice, and improving the facilities of detention centres", - "values": [ - "Detention", - "Justice" - ] - }, - { - "text": "Consider adhering to the Optional Protocols to ICESR and CRPD as soon as possible.", - "values": [ - "Disabilities", - "ESC rights - general", - "International instruments" - ] - }, - { - "text": "Take policy and other measures which ensure the enjoyment of freedom of expression, opinion and assembly ", - "values": [ - "Freedom of association and peaceful assembly", - "Freedom of opinion and expression" - ] - }, - { - "text": "Increase its efforts in ensuring the protection of children from violence in line with its 2008 National Strategy for Prevention and Protection of Children from Violence and 2010 Action Plan ", - "values": [ - "Rights of the Child" - ] - }, - { - "text": "Continue stepping up efforts to combat trafficking in human beings and adopt a separate plan of action on combating trafficking in human beings to improve coordination at the national level", - "values": [ - "Trafficking" - ] - }, - { - "text": "Establish a formal moratorium on the death penalty with a view to ratifying the Second Optional Protocol to the International Covenant on Civil and Political Rights, aiming at the abolition of the death penalty ", - "values": [ - "Death penalty", - "International instruments" - ] - }, - { - "text": "Ensure the registration of all new born as a way to generate reliable statistics and data", - "values": [ - "Rights of the Child", - "Statelessness and the right to nationality" - ] - }, - { - "text": "Further address the protection of victims' human rights as well as punishment for those responsible, with respect to the high rates of domestic violence", - "values": [ - "Rights of the Child", - "Women's rights" - ] - }, - { - "text": "Continue its ongoing efforts in judicial reform", - "values": [ - "Justice" - ] - }, - { - "text": "Review national legislation in order to ensure equal political participation for ethnic and religious minorities", - "values": [ - "Freedom of religion and belief", - "Minorities" - ] - }, - { - "text": "In accordance with the commitment made after the universal periodic review of 2012, ratify the International Convention for the Protection of All Persons from Enforced Disappearance", - "values": [ - "Enforced disappearances", - "International instruments", - "UPR process" - ] - }, - { - "text": "Introduce necessary reforms to fully abolish the death penalty ", - "values": [ - "Death penalty" - ] - }, - { - "text": "Proceed with the adoption and implementation of a code of conduct for the treatment of asylum seekers, and stop the practice of intercepting and pushing back the boats of the asylum-seekers into international waters, with the implementation of measures consistent with the provisions of international law and international standards", - "values": [ - "Asylum-seekers - refugees" - ] - }, - { - "text": "Adopt the necessary measures in order to better comply with the recommendations on the use of minority languages released by the Council of Europe, with particular reference to the rights of the autochthonous Italian minority", - "values": [ - "Minorities" - ] - }, - { - "text": "Address the geographic inequalities in access to education and school enrolment rates by creating new institutions and expanding the school transport system ", - "values": [ - "Right to education" - ] - }, - { - "text": "Work to develop a technical assistance plan to strengthen its public policies, and present the plan to the donor community for its support ", - "values": [ - "Technical assistance and cooperation" - ] - }, - { - "text": "Honour its pledge to look into abolishing the death penalty", - "values": [ - "Death penalty" - ] - }, - { - "text": "Guarantee that each detainee effectively has the right to contest the legality of his or her arrest. ", - "values": [ - "Detention" - ] - }, - { - "text": "Further strengthen the Government's efforts to protect the rights of children, with particular emphasis on preventing school dropouts and eliminating child labour and sexual exploitation of children. ", - "values": [ - "Labour", - "Rights of the Child" - ] - }, - { - "text": "Finalize and implement a national action plan to follow up the Guiding Principles on Business and Human Rights", - "values": [ - "Business and human rights" - ] - }, - { - "text": "Continue to implement the national programme to eradicate the legacy of slavery adopted in March 2014 and continue raising awareness against all forms of slavery", - "values": [ - "Human rights education and training" - ] - }, - { - "text": "Take measures to include in its legislation a precise definition of the different forms of discrimination ", - "values": [ - "Other" - ] - }, - { - "text": "Redouble its efforts to combat practices of corruption in Lesotho", - "values": [ - "Corruption" - ] - }, - { - "text": "Intensify awareness-raising campaigns to combat racial, Islamophobic and xenophobic stereotypes and condemn strongly and publicly hate speech in the public sphere", - "values": [ - "Human rights education and training", - "Racial discrimination" - ] - }, - { - "text": "That practices and traditional cultural customs are neither harmful to women, nor have a discriminatory impact, since during the Namibian struggle for national liberation women fought alongside and on par with men for the country's independence, and that they receive the necessary merit and attention in society ", - "values": [ - "Torture and other CID treatment", - "Women's rights" - ] - }, - { - "text": "Improve the living conditions of asylum seekers and step up efforts directed towards improving the treatment of asylum seekers and refugees", - "values": [ - "Asylum-seekers - refugees" - ] - }, - { - "text": "Leave the investigation of criminal offences to the existing judicial system, in particular the police and the Prosecutor's Office", - "values": [ - "Justice" - ] - }, - { - "text": "Ensure that juveniles are detained separately from adults, without exception ", - "values": [ - "Detention", - "Rights of the Child" - ] - }, - { - "text": "Expedite the ratification of the Convention against Torture and Other Cruel, Inhuman or Degrading Treatment or Punishment and its Optional Protocol, and adopt robust domestic legislation to this effect ", - "values": [ - "Detention", - "International instruments", - "Torture and other CID treatment" - ] - }, - { - "text": "Smooth the process of the ratification of the Optional Protocol to CEDAW and improve inter-institutional coordination across the civil society organisations, ministerial departments, and other national actors involved in the defence of women's rights", - "values": [ - "Civil society", - "International instruments", - "Women's rights" - ] - }, - { - "text": "Impose a moratorium on executions with a view to abolish the death penalty ", - "values": [ - "Death penalty" - ] - }, - { - "text": "Intensify coordination efforts with various United Nations bodies and mechanisms for the further implementation of the national road map for human rights set out in paragraphs 48 and 49 of the report", - "values": [ - "Technical assistance and cooperation" - ] - }, - { - "text": "Utilize international financial and technical assistance to discharge its human rights reporting obligations", - "values": [ - "Special procedures", - "Technical assistance and cooperation", - "Treaty bodies", - "UPR process" - ] - }, - { - "text": "Promptly ratify the Optional Protocol to the International Covenant on Economic, Social, and Cultural Rights", - "values": [ - "ESC rights - general", - "International instruments" - ] - }, - { - "text": "Carry out investigations into all violations and deaths of persons in custody and in prisons attributable to police officers, and: that perpetrators of such violations are prosecuted. and that victims are paid compensation and have access to independent bodies for investigating those complaints", - "values": [ - "Extrajudicial executions", - "Human rights violations by state agents" - ] - }, - { - "text": "Make fully consistent all domestic anti-terrorism legislation and action with human rights standards ", - "values": [ - "Counter-terrorism" - ] - }, - { - "text": "Promote the elaboration and adoption of a national human rights plan ", - "values": [ - "General" - ] - }, - { - "text": "Develop and implement policies and measures to address inequality between boys and girls in access to education and reported widespread child labour.", - "values": [ - "Labour", - "Right to education", - "Rights of the Child" - ] - }, - { - "text": "Consider the possibility of ratifying the ICRMW and ILO Convention No. 143 on Migrations in Abusive Conditions and the Promotion of Equality of Opportunity and Treatment of Migrant Workers ", - "values": [ - "International instruments", - "Labour", - "Migrants" - ] - }, - { - "text": "Continue action towards the alleviation of poverty", - "values": [ - "Poverty" - ] - }, - { - "text": "Adopt effective measures to prevent and punish all forms of discrimination against minority groups by adding clear provisions to articles 25 to 27 of the Constitution to ensure the prohibition of discrimination on all grounds, including sexual orientation and gender identity, as well as by adding clear protection provisions in criminal laws concerning public assembly, obscenity and public nuisance", - "values": [ - "Minorities", - "Racial discrimination", - "Sexual Orientation and Gender Identity" - ] - }, - { - "text": "Continue its developmental role in the world", - "values": [ - "Development" - ] - }, - { - "text": "Develop and implement preventative and protection policies and measures for the victims of child labour.", - "values": [ - "Labour", - "Rights of the Child" - ] - }, - { - "text": "Prioritize the implementation of its NHRAP and its 12th Five-Year Plan for Economic and Social Development in the ethnic regions of minority groups as well as for other under-privileged communities", - "values": [ - "ESC rights - general", - "Minorities" - ] - }, - { - "text": "Fully and immediately implement all Council resolutions and respect the human rights and fundamental freedoms of the Palestinian people, in particular their right to self-determination.", - "values": [ - "Other" - ] - }, - { - "text": "Eliminate discrimination against women in the area of marriage by eradicating the practices of child, early and forced marriage and by ensuring equal inheritance rights for men and women", - "values": [ - "Rights of the Child", - "Women's rights" - ] - }, - { - "text": "Develop and strengthen the domestic legislation and policy on the protection of women and children with the aim of reducing incidences of exploitation of women and children and violence against women ", - "values": [ - "Rights of the Child", - "Women's rights" - ] - }, - { - "text": "Continue strengthening its efforts to guarantee the promotion and protection of human rights as enshrined in its Constitution ", - "values": [ - "General" - ] - }, - { - "text": "Promptly carry out an in-depth investigation into all allegations of torture and ill-treatment, such as the case of the three persons executed in January 2017, and bring those responsible to justice", - "values": [ - "Impunity", - "Torture and other CID treatment" - ] - }, - { - "text": "Take steps towards the ratification of ICCPR", - "values": [ - "CP rights - general", - "International instruments" - ] - }, - { - "text": "Intensify its efforts to reduce rural-urban income inequalities with support from the international community and other relevant United Nations agencies ", - "values": [ - "Development", - "Technical assistance and cooperation" - ] - }, - { - "text": "Make efforts to do a way with imbalances in approaches to disability, depending on the geographic area and the cause of disability", - "values": [ - "Disabilities" - ] - }, - { - "text": "The Government expresses its commitment to cooperate with the Special Rapporteur [on Contemporary Forms of Racism],including in the event the Special Rapporteur expresses a wish to visit Botswana", - "values": [ - "Racial discrimination", - "Special procedures" - ] - }, - { - "text": "Implement effectively the regulation on domestic workers and persons with similar status and provide the migrant workers with adequate protection from abuse in the part of employers ", - "values": [ - "Labour", - "Migrants" - ] - }, - { - "text": "Facilitate a public debate on the death penalty, with input from the Human Rights Commission, other relevant constitutional bodies and civil society, with a view to ratification of the Second Optional Protocol to the International Covenant on Civil and Political Rights", - "values": [ - "Death penalty", - "International instruments" - ] - }, - { - "text": "Enhance legislation, strategies, national action plans, initiatives and create committees on human rights", - "values": [ - "General" - ] - }, - { - "text": "Consider withdrawing its declaration made upon ratification of the Convention on the Rights of the Child, and continue and complete its review of legislation to ensure full compliance with the Convention", - "values": [ - "International instruments", - "Rights of the Child" - ] - }, - { - "text": "Continue its active cooperation with the United Nations mechanisms and submit its periodic reports to treaty bodies, as appropriate ", - "values": [ - "Treaty bodies" - ] - }, - { - "text": "Continue to strengthen the promotion and protection of the rights of vulnerable groups, such as women, children, persons with disabilities and the elderly ", - "values": [ - "Disabilities", - "Rights of the Child", - "Women's rights" - ] - }, - { - "text": "Ensure equal access to the health care, and enhance the quality of health care services, particularly through increasing of the qualification of professionals", - "values": [ - "Right to health" - ] - }, - { - "text": "Establish a functional registry system reaching the whole population, by, inter alia, extending the time for free birth registration and offering birth certificate establishment procedures for the unregistered", - "values": [ - "Rights of the Child", - "Statelessness and the right to nationality" - ] - }, - { - "text": "Continue the efforts to improve the birth registration figures, having in mind that considerable improvement has already been achieved, as birth registration increased from around 30 per cent in 2000 to over 60 per cent in 2010", - "values": [ - "Rights of the Child", - "Statelessness and the right to nationality" - ] - }, - { - "text": "Establish promptly a national human rights institution in accordance with the Paris Principles, which presumes that it is independent and open to civil society ", - "values": [ - "Civil society", - "National Human Rights Institution" - ] - }, - { - "text": "Report back to the Human Rights Council about further concrete measures or actions taken in regard to ensuring that human rights defenders, including victims of human rights violations, witnesses, prosecutors, forensic experts, journalists and trade union workers, can carry out their human rights work freely and without fear of intimidation.", - "values": [ - "Human rights defenders" - ] - }, - { - "text": "Continue its efforts to reach the threshold of 5.5 per cent share of minorities in the total number of employees, in line with the Action Plan for the Employment of National Minorities in Public Administration Bodies 2011- 2014, in particular in those regions where minorities have significant presence", - "values": [ - "Minorities" - ] - }, - { - "text": "Continue to consider favourably the visits of Human Rights Council special procedure mandate holders, in particular those who asked to visit the country. consider extending an open-ended and permanent invitation to the special procedures.", - "values": [ - "Special procedures" - ] - }, - { - "text": "Continue working to provide State care to vulnerable and minority groups in the country, to ensure they are fully integrated into society ", - "values": [ - "Minorities" - ] - }, - { - "text": "Increase international cooperation devoted to protecting the rights of the child, of women and of migrants workers ", - "values": [ - "Labour", - "Migrants", - "Rights of the Child", - "Women's rights" - ] - }, - { - "text": "Develop a comprehensive strategy for children in street situations, using a child-rights approach and addressing both prevention and response", - "values": [ - "Rights of the Child" - ] - }, - { - "text": "Enact legislation that criminalizes all forms of trafficking in persons and provides appropriate prescribed penalties", - "values": [ - "Trafficking" - ] - }, - { - "text": "Intensify its efforts and measures to consolidate the state of law and its national mechanisms on human rights", - "values": [ - "National Human Rights Institution" - ] - }, - { - "text": "Abolish administrative detention and forced labour without proper trial, access to legal representation and independent supervision", - "values": [ - "Detention" - ] - }, - { - "text": "Take all the necessary measures to put an end to violence committed against women and children", - "values": [ - "Rights of the Child", - "Women's rights" - ] - }, - { - "text": "Step up efforts to accede to the Trafficking in Persons Protocol ", - "values": [ - "International instruments", - "Trafficking" - ] - }, - { - "text": "Replace the Basseterre facility with a new prison that meets international standards, and explore options for public/private partnerships and financing arrangements ", - "values": [ - "Detention" - ] - }, - { - "text": "Improve its fight against illiteracy in order to reverse the current trend ", - "values": [ - "Right to education" - ] - }, - { - "text": "Provide support to countries requesting assistance in case of natural disasters and other ravages of nature ", - "values": [ - "Environment" - ] - }, - { - "text": "Explore diverse options to improve the coordination of human rights, including, but not limited to, the establishment of a single mechanism such as a National Human Rights Institution", - "values": [ - "National Human Rights Institution" - ] - }, - { - "text": "Continue to provide impactful humanitarian assistance to help people and families struck by natural and man-made disasters", - "values": [ - "Development" - ] - }, - { - "text": "Consider ratifying the International Convention on the Protection of the Rights of All Migrant Workers and members of their families", - "values": [ - "International instruments", - "Labour", - "Migrants" - ] - }, - { - "text": "Seek the required technical assistance in order to meet its various human rights obligations", - "values": [ - "Technical assistance and cooperation" - ] - }, - { - "text": "Decriminalize homosexual conduct by reforming the penal code so that for the purposes of prosecution, gross indecency would not apply to private acts between consenting adults", - "values": [ - "Sexual Orientation and Gender Identity" - ] - }, - { - "text": "Continue its internal measures for the adoption of the Family Protection and Domestic Violence Bill ", - "values": [ - "Rights of the Child", - "Women's rights" - ] - }, - { - "text": "Pursue its commitment to ratify other international human rights treaties that it is not yet a state party, including ILO Convention 189", - "values": [ - "International instruments", - "Labour" - ] - }, - { - "text": "Develop a national action plan with concrete goals to tackle the gender pay gap", - "values": [ - "Women's rights" - ] - }, - { - "text": "Devote more efforts to harmonizing gender equality for guaranteeing their equal rights and opportunities in both the legislative and executive branches ", - "values": [ - "Women's rights" - ] - }, - { - "text": "Ratify the Convention on the Rights of Persons with Disabilities and its Optional Protocol. ", - "values": [ - "Disabilities", - "International instruments" - ] - }, - { - "text": "Fully adapt their legislation to the Rome Statute of the International Criminal Court", - "values": [ - "International instruments", - "Justice" - ] - }, - { - "text": "Address all sexual and gender based-violence and discrimination, especially against women, by reforming the Criminal Code and Personals Status Code to bring it into line with the Convention on the Elimination of All Forms of Discrimination against Women, including by criminalizing marital rape and abolishing provisions allowing a perpetrator of sexual violence to escape prosecution by marrying their victim", - "values": [ - "International instruments", - "Women's rights" - ] - }, - { - "text": "Consider undertaking a comprehensive study on the positive implications of the legal system of civil law and Shari'ah law ", - "values": [ - "Freedom of religion and belief", - "Justice" - ] - }, - { - "text": "Continue the work to bring the national legal framework in line with its international obligations", - "values": [ - "General" - ] - }, - { - "text": "Repeal all legislative measures criminalising the exercise of the right of freedom of religion", - "values": [ - "Freedom of religion and belief" - ] - }, - { - "text": "Expand its social protection coverage ", - "values": [ - "ESC rights - general" - ] - }, - { - "text": "Improve on providing health care facilities to all communities in the country", - "values": [ - "Right to health" - ] - }, - { - "text": "Take steps to address problems related to high illiteracy rates in certain parts of the country, as well as the gender gap between boys and girls in secondary and tertiary education.", - "values": [ - "Right to education", - "Rights of the Child" - ] - }, - { - "text": "Implement active policies to speed up and increase the representation of women, in particular in local governments, the judiciary and the health sector.", - "values": [ - "Women's rights" - ] - }, - { - "text": "Speed up the process of approval of the new Domestic Violence Bill", - "values": [ - "Rights of the Child", - "Women's rights" - ] - }, - { - "text": "Examine the possibility of swift ratification of the Rome Statute ", - "values": [ - "International instruments", - "Justice" - ] - }, - { - "text": "Continue to vigorously investigate sex and labour trafficking offences and increase trafficking prosecutions and convictions to continue to provide trafficking awareness training for judges to ensure that a majority of convicted traffickers serve time in prison and to continue to refer a significant number of identified victims for assistance", - "values": [ - "Human rights education and training", - "Trafficking" - ] - }, - { - "text": "Continue to apply programmes and measures to improve the enjoyment of the right to education and the right to health ", - "values": [ - "Right to education", - "Right to health" - ] - }, - { - "text": "Give high priority to the enforcement of the Law on Fighting against Domestic Violence in order to ensure that victims have access to adequate means of protection and compensation ", - "values": [ - "Rights of the Child", - "Women's rights" - ] - }, - { - "text": "Take measures to reduce overincarceration, notably by encouraging the use of alternative sentencing and by making sure that pre-trial hearings are widely used", - "values": [ - "Detention" - ] - }, - { - "text": "Consider the ratification of the ILO Convention 169 on Indigenous and Tribal Peoples in Independent Countries.", - "values": [ - "Indigenous peoples", - "International instruments" - ] - }, - { - "text": "Facilitate the active involvement of civil society stakeholders, including human rights non-governmental organizations in the follow-up to this review ", - "values": [ - "Civil society", - "UPR process" - ] - }, - { - "text": "Ensure that all ill-treatment and sexual violence against children in educational settings is promptly, efficiently and impartially investigated, that perpetrators are brought to justice and that the victims receive reparation and are provided with the protection and support they require", - "values": [ - "Justice", - "Rights of the Child" - ] - }, - { - "text": "Continue its efforts aimed at eliminating poverty and reducing inequality", - "values": [ - "Poverty" - ] - }, - { - "text": "Sign and ratify the Optional Protocol to the International Covenant on Economic, Social and Cultural Rights as soon as possible, allowing individual complaints of alleged violations of Economic, Social and Cultural rights to be heard by the Committee on Economic, Social and Cultural Rights ", - "values": [ - "ESC rights - general", - "Treaty bodies", - "Women's rights" - ] - }, - { - "text": "Adopt comprehensive legislation to counter discrimination and take steps to ensure that equality enshrined in such legislation or in existing law is achieved in practice", - "values": [ - "Other" - ] - }, - { - "text": "Report regularly to the Committee against Torture.", - "values": [ - "Torture and other CID treatment", - "Treaty bodies" - ] - }, - { - "text": "Encourage the legislative measures and policies necessary to ensure the protection and promotion of the rights of boys and girls, in following-up the recommendations received during the previous review cycle", - "values": [ - "Rights of the Child", - "UPR process" - ] - }, - { - "text": "Put in place comprehensive and evidence-based sexual and reproductive health education programmes ", - "values": [ - "Right to health" - ] - }, - { - "text": "Take prompt and effective steps to hold to account perpetrators of corruption, extortion, torture and other forms of violence in the ranks of the judiciary and the police and security forces", - "values": [ - "Corruption", - "Human rights violations by state agents", - "Torture and other CID treatment" - ] - }, - { - "text": "Conclude the ratification process of the International Convention on the Protection of the Rights of All Migrant Workers and Members of Their Families", - "values": [ - "International instruments", - "Labour", - "Migrants" - ] - }, - { - "text": "Guarantee gender equality and women's rights, including sexual and reproductive health rights", - "values": [ - "Right to health", - "Women's rights" - ] - }, - { - "text": "Devote attention to the education of children and use education to spread a human rights culture though school curricula ", - "values": [ - "Human rights education and training", - "Right to education", - "Rights of the Child" - ] - }, - { - "text": "Continue to strengthen the gender approach in all spheres of national life with positive measures to achieve the effective promotion and protection of the rights of women ", - "values": [ - "Women's rights" - ] - }, - { - "text": "Provide all necessary resources to further strengthen the Ombudsman and the Commission for Protection against Discrimination and bring them in line with the Paris Principles", - "values": [ - "National Human Rights Institution" - ] - }, - { - "text": "Take additional measures to protect victims of domestic violence through effective implementation of its legislation", - "values": [ - "Rights of the Child", - "Women's rights" - ] - }, - { - "text": "Ensure a participatory and inclusive process with civil society, including independent nongovernmental organizations, in accordance with the right to freedom of association, in the follow-up of universal periodic review recommendations ", - "values": [ - "Civil society", - "Freedom of association and peaceful assembly", - "UPR process" - ] - }, - { - "text": "Abolish all discriminatory laws and practices in accordance with its international obligations under the Convention on the Elimination of All Forms of Discrimination against Women", - "values": [ - "International instruments", - "Women's rights" - ] - }, - { - "text": "Undertake an independent investigation into the post-electoral violence as well as allegations of human rights violations in the same context, in order to shed light on the involvement and responsibilities of the various actors and bring justice to victims", - "values": [ - "Elections" - ] - }, - { - "text": "Establish a national human rights institution.", - "values": [ - "National Human Rights Institution" - ] - }, - { - "text": "Consider ratifying ICCPR", - "values": [ - "CP rights - general", - "International instruments" - ] - }, - { - "text": "While noting the measures taken by Poland to address the continuing occurrence of violence against children, recommended that measures be taken by the Government to ensure the sufficient legal protection of the freedom of children from physical or mental violence. ", - "values": [ - "Rights of the Child" - ] - }, - { - "text": "Strengthen the employment and education rate among refugees and migrants", - "values": [ - "Asylum-seekers - refugees", - "Labour", - "Migrants", - "Right to education" - ] - }, - { - "text": "Repeal the Sedition Act", - "values": [ - "Freedom of opinion and expression" - ] - }, - { - "text": "Develop a comprehensive plan of action to address violence against women on the basis of the repeated recommendations made by the United Nations and the Inter-American human rights system ", - "values": [ - "Women's rights" - ] - }, - { - "text": "Continue policies for protecting the rights of migrants ", - "values": [ - "Migrants" - ] - }, - { - "text": "Continue its reforms to improve policies and programmes towards the promotion and protection of all human rights", - "values": [ - "General" - ] - }, - { - "text": "Ensure that pregnant girls and young mothers have the opportunity to continue their education", - "values": [ - "Right to education", - "Rights of the Child", - "Women's rights" - ] - }, - { - "text": "Quickly close down Guantanamo prison and follow the provision of the United Nations Charter and the Security Council Resolution by expatriating the terrorist suspect to their country of origin ", - "values": [ - "Counter-terrorism", - "Detention" - ] - }, - { - "text": "Further mainstream human rights in all policies, programmes and activities of the Government ", - "values": [ - "Other" - ] - }, - { - "text": "Intensify programmes to improve the social security system, the housing projects, home sanitation facilities and access to drinking water, as recommended by the Committee on the Rights of the Child ", - "values": [ - "Right to housing", - "Right to water and sanitation", - "Treaty bodies" - ] - }, - { - "text": "Take measures to ensure the independence of the judiciary and consider establishing an independent body responsible for the appointment and promotion of judges", - "values": [ - "Justice" - ] - }, - { - "text": "Sign and ratify the Optional Protocol to the International Covenant on Economic, Social and Cultural Rights (OP-ICESCR) ", - "values": [ - "ESC rights - general", - "International instruments" - ] - }, - { - "text": "Establish, at all levels, a moratorium on executions with a view to completely abolish the death penalty ", - "values": [ - "Death penalty" - ] - }, - { - "text": "Continue work in the fight to eradicate racism, incitement to racial hatred and all forms of discrimination, especially against migrants ", - "values": [ - "Migrants", - "Racial discrimination" - ] - }, - { - "text": "In the area of women's rights, promotion of democratic governance with equal opportunities for men and women, promoting a life free of violence, through the adoption of measures to prevent, eradicate, criminalize and punish violence against women, implementation of public policies and cross-cutting programmes, and the promotion of legislation to eliminate violence against women and children, development of laws and public policies to prevent and eradicate abuse, harassment and sexual exploitation of women and children, promotion of a gender perspective in the education system and in the implementation of social policies in the formal and non-formal education system, eradication of illiteracy, training of public and judicial officials, and in the criminal process of cases of domestic violence and sexual crimes against women and children", - "values": [ - "Human rights education and training", - "Rights of the Child", - "Women's rights" - ] - }, - { - "text": "Continue its policies and efforts to enhance the solidarity and equality among its multi-ethnic population ", - "values": [ - "Minorities" - ] - }, - { - "text": "Take urgent steps to prevent politically motivated and sectarian and religious based violence", - "values": [ - "Freedom of religion and belief" - ] - }, - { - "text": "Promote a culture of non-discrimination and solidarity among its citizens towards migrants", - "values": [ - "Migrants", - "Racial discrimination" - ] - }, - { - "text": "Pursue its efforts to ensure the schooling of girls and the re-schooling of children who have dropped out of or who have never gone to school, with the support of the United Nations.", - "values": [ - "Right to education", - "Rights of the Child", - "Women's rights" - ] - }, - { - "text": "Draw up a plan to assist and protect IDPs in an effective and systematic manner", - "values": [ - "Internally displaced persons" - ] - }, - { - "text": "Raise awareness by the poor and marginalized population of the legal provisions of the Domestic Violence Act, open investigations into all complaints lodged relating to domestic violence, and prosecute all cases and provide victims to appropriate services, especially the possibility to benefit from a free medical report and legal aid ", - "values": [ - "Justice", - "Rights of the Child", - "Women's rights" - ] - }, - { - "text": "Ensure that its new human rights institution is fully compliant with the Paris Principles", - "values": [ - "National Human Rights Institution" - ] - }, - { - "text": "Consider the possibility of signing or acceding to the remaining international human rights treaties, including CRPD, and domesticate them in its national legislation ", - "values": [ - "Disabilities", - "International instruments" - ] - }, - { - "text": "Put in place appropriate mechanisms to ensure effective protection of women exposed to domestic violence, sexual harassment, spousal rape, forced marriage, crimes in the name of honour and other forms of violence ", - "values": [ - "Rights of the Child", - "Women's rights" - ] - }, - { - "text": "Provide comprehensive and effective protection against cases of torture and accountability of perpetrators, in particular for persons in detention or prison facilities", - "values": [ - "Detention", - "Torture and other CID treatment" - ] - }, - { - "text": "Abolish the death penalty in all cases and circumstances", - "values": [ - "Death penalty" - ] - }, - { - "text": "Thoroughly and comprehensively review its legislation regarding the granting of asylum and migration in order to align it with its international obligations and standards", - "values": [ - "Asylum-seekers - refugees", - "International instruments", - "Migrants" - ] - }, - { - "text": "Adopt effective measures against child exploitation and trafficking, including raising public awareness, combating impunity and protecting victims", - "values": [ - "Human rights education and training", - "Impunity", - "Rights of the Child", - "Trafficking" - ] - }, - { - "text": "Educate the national security forces to effectively uphold law and order particularly when policing demonstrations and large crowds by reviewing and enhancing security training programmes on crowd control techniques and implementing non-aggressive strategies", - "values": [ - "Freedom of association and peaceful assembly", - "Human rights education and training" - ] - }, - { - "text": "Continue the current efforts to increase health-care expenditures and ensure universal access to health and adequate training of health personnel ", - "values": [ - "Right to health" - ] - }, - { - "text": "Reconfirms its commitment to protecting the rights of all persons regardless of their sexual orientation or gender identity in anti-discrimination and equal opportunity legislation and bodies ", - "values": [ - "Sexual Orientation and Gender Identity" - ] - }, - { - "text": "Ratify the United Nations Convention against Transnational Organized Crime", - "values": [ - "International instruments", - "Trafficking" - ] - }, - { - "text": "Prohibit in all circumstances the use of the provisions of the Qisas and Diyat law in cases of honour killings.", - "values": [ - "Rights of the Child", - "Women's rights" - ] - }, - { - "text": "In order to combat impunity, support the bill before Congress "to guarantee access to justice for victims of sexual violence, especially sexual violence in the context of armed conflict" ", - "values": [ - "International humanitarian law", - "Rights of the Child", - "Women's rights" - ] - }, - { - "text": "Establish a mechanism for transitional justice ", - "values": [ - "Justice" - ] - }, - { - "text": "Take legislative and administrative measures to ensure the right of association and peaceful protest", - "values": [ - "Freedom of association and peaceful assembly" - ] - }, - { - "text": "Adopt a law on violence against women and ensure its implementation ", - "values": [ - "Women's rights" - ] - }, - { - "text": "Continue its efforts to promote the rights of migrants ", - "values": [ - "Migrants" - ] - }, - { - "text": "Consider the possibility of introducing the necessary constitutional changes to ratify the Rome Statute of the International Criminal Court and develop a law on cooperation between the State and the International Criminal Court ", - "values": [ - "International instruments", - "Justice" - ] - }, - { - "text": "The Government of Vanuatu commits to continuing and completing the implementation identified under the PAA. Furthermore, Vanuatu commits to working with partners nationally, regionally and internationally to implement its human rights obligations.", - "values": [ - "International instruments" - ] - }, - { - "text": "Continue its efforts to provide educational facilities for people with special needs", - "values": [ - "Disabilities", - "Right to education" - ] - }, - { - "text": "Guarantee effectively that education is free for all children. ", - "values": [ - "Right to education", - "Rights of the Child" - ] - }, - { - "text": "Take the steps necessary to protect lesbian, gay, bisexual, transgender and intersex persons from violence and discrimination on the basis of their sexual orientation and gender identity", - "values": [ - "Sexual Orientation and Gender Identity" - ] - }, - { - "text": "Continue the efforts aimed at implementing the Growth and Poverty Reduction Strategic Framework (2012-2017) ", - "values": [ - "Development", - "Poverty" - ] - }, - { - "text": "Continue to promote women's rights and empowerment, with a view to further enhancing their participation in economic and political life", - "values": [ - "Women's rights" - ] - }, - { - "text": "Implement the steps envisaged in the promotion of rights of people with disabilities, with a special emphasis on equal opportunities for children with disabilities ", - "values": [ - "Disabilities", - "Rights of the Child" - ] - }, - { - "text": "Consider additional measures for improving the socioeconomic conditions of the Swedish Roma population", - "values": [ - "ESC rights - general", - "Minorities" - ] - }, - { - "text": "Cooperate with the Commission of Inquiry established by the Human Rights Council", - "values": [ - "Other" - ] - }, - { - "text": "That the Anti-Terror Law be revised or abolished ", - "values": [ - "Counter-terrorism" - ] - }, - { - "text": "Further incorporate human rights education in school curricula ", - "values": [ - "Human rights education and training" - ] - }, - { - "text": "Carry out thorough, transparent and independent investigations into all reports of alleged human rights violations and abuses since March 2011, and bring the perpetrators to justice", - "values": [ - "General" - ] - }, - { - "text": "Develop a national strategy to tackle modern slavery and contribute towards the realization of Sustainable Development Goal 8.7, and, as part of this, ratify the ILO Protocol of 2014 to the Forced Labour Convention, 1930, and build law enforcement capability to further facilitate the investigation, prosecution and conviction of human traffickers", - "values": [ - "Development", - "International instruments", - "Labour", - "Trafficking" - ] - }, - { - "text": "Consider introducing provisions explicitly prohibiting corporal punishment against children", - "values": [ - "Rights of the Child", - "Torture and other CID treatment" - ] - }, - { - "text": "Work to ensure equal access to justice across the Kingdom, including by opening offices to provide easily accessible legal advice and referrals in Saba, Bonaire and Sint Eustatius", - "values": [ - "Justice" - ] - }, - { - "text": "Implement the National Action Plan on Gender-based Violence, including by improving access to justice for victims, providing targeted training and capacity-building to law enforcement and judicial officials, and dedicating sufficient resources to enable key ministries to implement the Action Plan and increase coordination", - "values": [ - "Human rights education and training", - "Women's rights" - ] - }, - { - "text": "Further strategies in cooperation with the International Labour Organisation (ILO) to eradicate child labour", - "values": [ - "International instruments", - "Labour", - "Rights of the Child" - ] - }, - { - "text": "Finalize the ongoing five-year National Action Plan on Human Rights and put in place the necessary mechanisms for its implementation", - "values": [ - "National Human Rights Institution" - ] - }, - { - "text": "Further improve its efforts in regard to the measures on combating gender-based violence ", - "values": [ - "Women's rights" - ] - }, - { - "text": "Continue efforts in child rights protection and improving children's conditions, especially in the education and healthcare fields", - "values": [ - "Right to education", - "Right to health", - "Rights of the Child" - ] - }, - { - "text": "Improve healthcare for infants and children and for people living with HIV/AIDS", - "values": [ - "HIV - Aids", - "Rights of the Child" - ] - }, - { - "text": "Implement its National Plan of Action on Human Rights ", - "values": [ - "General" - ] - }, - { - "text": "Promote and protect the rights of persons with disabilities by, among others, involving persons with disabilities in all phases of ratification of the CRPD and the Palau National Policy on Disability, and ensuring access to education as well as an inclusive education system at all levels for children with disabilities ", - "values": [ - "Disabilities", - "International instruments", - "Right to education" - ] - }, - { - "text": "Increase efforts to eliminate early marriages through, implementation of the relevant recommendation made by the Committee on the Elimination of Discrimination against Women", - "values": [ - "Rights of the Child", - "Treaty bodies", - "Women's rights" - ] - }, - { - "text": "Stop the pressure on mass media, including by closing their bank accounts", - "values": [ - "Freedom of the press" - ] - }, - { - "text": "Adopt a national strategy to combat all forms of violence against women and girls ", - "values": [ - "Rights of the Child", - "Torture and other CID treatment", - "Women's rights" - ] - }, - { - "text": "Continue the efforts to combat cyber-technology crimes, in particular when committed against youth", - "values": [ - "Other" - ] - }, - { - "text": "Harmonize its national human rights institution so that it is in conformity with the Paris Principles", - "values": [ - "National Human Rights Institution" - ] - }, - { - "text": "Continue working at the national level to protect the human rights of migrants, including those who have requested refuge or asylum, and in particular with regard to the principle of non-refoulement", - "values": [ - "Asylum-seekers - refugees", - "Migrants" - ] - }, - { - "text": "Continue commendable efforts to establish the principle of social harmony among the members of the community", - "values": [ - "General" - ] - }, - { - "text": "Make efforts to combat corruption", - "values": [ - "Corruption" - ] - }, - { - "text": "Take the necessary measures to consider lifting the United States reservation to article 5, paragraph 6 of the International Covenant on Civil and Political Rights that bans the imposition of the death penalty for crimes committed by persons under 18", - "values": [ - "Death penalty", - "International instruments", - "Rights of the Child" - ] - }, - { - "text": "Continue to allocate sufficient financial and human resources to the human rights institutions in order for them to be able to fulfil their mandate ", - "values": [ - "National Human Rights Institution" - ] - }, - { - "text": "Establish an independent mechanism to carry out investigations of alleged misconduct by police officers", - "values": [ - "Human rights violations by state agents" - ] - }, - { - "text": "Review laws and regulations on free, prior and informed consultations to ensure they are in line international standards, in consultation with the representatives of the indigenous community, with a view to follow up on recommendations contained in paragraphs 116.108, 116.110, 116.112 and 116.113 of the Report of the Working Group on the Universal Periodic Review from the second cycle", - "values": [ - "Indigenous peoples", - "UPR process" - ] - }, - { - "text": "Pursue its policies regarding human rights education and training for law enforcement officials", - "values": [ - "Human rights education and training" - ] - }, - { - "text": "Uphold the constitutional order and proceed to a military reform ", - "values": [ - "Justice" - ] - }, - { - "text": "Undertake studies to determine the factors of racial disparity in the application of the death penalty, to prepare effective strategies aimed at ending possible discriminatory practices", - "values": [ - "Death penalty", - "Racial discrimination" - ] - }, - { - "text": "Combat discrimination and all types of violence against women in the country, and multiply efforts for the empowerment of women in every area of life", - "values": [ - "Women's rights" - ] - }, - { - "text": "Fulfil its obligation under the Agreement on the Resolution of the Conflict in the Republic of South Sudan to cooperate fully in establishing the hybrid court", - "values": [ - "Justice" - ] - }, - { - "text": "Accede to the 1961 Convention on the Reduction of Statelessness, and streamline the administrative process in order to reduce the number of stateless persons", - "values": [ - "International instruments", - "Statelessness and the right to nationality" - ] - }, - { - "text": "Continue promoting the respect for human rights, welfare and development of its people through education ", - "values": [ - "Human rights education and training" - ] - }, - { - "text": "Take the requisite measures to safeguard the independence of the judiciary, thereby strengthening this branch of Government", - "values": [ - "Justice" - ] - }, - { - "text": "Continue its efforts in the protection of all minors in conflict with law by taking into account the principles of best interest of the child, including the possibility of incorporating the principle of restorative justice in its juvenile justice system ", - "values": [ - "Justice", - "Rights of the Child" - ] - }, - { - "text": "Step up awareness-raising campaigns and encourage dialogue with different religions and ethnic groups to establish legal mechanisms to facilitate access of all migrants to their rights", - "values": [ - "Freedom of religion and belief", - "Human rights education and training", - "Migrants" - ] - }, - { - "text": "Strengthen the necessary measures to fight impunity for the authors of the events occurred in Bocas del Toro in 2010", - "values": [ - "Impunity" - ] - }, - { - "text": "Adopt the draft law on protection of women from domestic violence as soon as possible, and ensure its effective implementation", - "values": [ - "Women's rights" - ] - }, - { - "text": "Take administrative and legal measures against perpetrators of racially motivated acts", - "values": [ - "Racial discrimination" - ] - }, - { - "text": "Accelerate the creation of the Constitutional Court and the Constitutional bodies, ensuring that they and other institutions, including the National Authority for the Prevention of Torture, are independent, adequately resourced and swiftly operational", - "values": [ - "Justice", - "Torture and other CID treatment" - ] - }, - { - "text": "Continue to take positive steps to enhance the enjoyment of economic, social and cultural rights, especially in the areas of health, education and the care of the disabled ", - "values": [ - "Disabilities", - "Right to education", - "Right to health" - ] - }, - { - "text": "Step up efforts to dismantle the new armed groups that have emerged since the demobilization of the paramilitaries.", - "values": [ - "International humanitarian law" - ] - }, - { - "text": "Adopt and implement, by the end of 2014, a law prohibiting all forms of violence against children, including harmful practices and ensure that such legislation is in line with international human rights standards ", - "values": [ - "International instruments", - "Rights of the Child", - "Torture and other CID treatment" - ] - }, - { - "text": "Address concerns regarding discrimination against minorities, including Roma people and develop a comprehensive strategy to combat hate speech, including measures to effectively investigate and prosecute such offences ", - "values": [ - "Minorities", - "Racial discrimination" - ] - }, - { - "text": "Release all persons who are detained solely for having exercised their freedom of expression and to revoke all legal provisions penalizing the right of freedom of expression ", - "values": [ - "Freedom of opinion and expression" - ] - }, - { - "text": "Begin the process of drafting legislation to promote and protect the rights of persons with disabilities", - "values": [ - "Disabilities" - ] - }, - { - "text": "Continue its positive actions for further promoting the rights of disabled people", - "values": [ - "Disabilities" - ] - }, - { - "text": "Continue strengthening measures to combat prejudices and punish crimes motivated by xenophobia", - "values": [ - "Racial discrimination" - ] - }, - { - "text": "Continue the implementation of the recommendations contained in the report of the High Commissioner ", - "values": [ - "Other" - ] - }, - { - "text": "Take measures to protect journalists and human rights defenders from acts of violence, including by investigating attacks and assassinations and strengthening accountability mechanisms", - "values": [ - "Extrajudicial executions", - "Freedom of the press", - "Human rights defenders" - ] - }, - { - "text": "Strengthen the independence of the judiciary by reforming the Judicial Services Commission's process for selecting and appointing judges", - "values": [ - "Justice" - ] - }, - { - "text": "Extend a standing invitation to the special procedures, as accepted during the first cycle of the universal periodic review of Liberia, as previously recommended", - "values": [ - "Special procedures", - "UPR process" - ] - }, - { - "text": "Continue with encouraging the private business sector to continue undertaking relevant measures to employ persons with disabilities, in accordance with the domestic law provisions", - "values": [ - "Disabilities", - "Labour" - ] - }, - { - "text": "Ensure effective prosecution and accountability of perpetrators of genocide, crimes against humanity and war crimes, and fully cooperate with the International Criminal Court under relevant Security Council resolutions", - "values": [ - "International instruments", - "Justice" - ] - }, - { - "text": "Consider ratifying the International Convention on the Protection of the Rights of All Migrant Workers and Members of Their Families, as previously recommended", - "values": [ - "International instruments", - "Labour", - "Migrants" - ] - }, - { - "text": "Continue to improve accessibility to education, especially in the post- conflict and underdeveloped areas", - "values": [ - "Right to education" - ] - }, - { - "text": "Redouble its efforts in the implementation of the plan to rehabilitate detainees through the improvement of national prison system", - "values": [ - "Detention" - ] - }, - { - "text": "Persist in its efforts aimed at the prevention, punishment and eradication of all forms of violence against women as well as its efforts to guarantee equality and ensure equal recognition in the law of civil, political, economic and social rights between men and women", - "values": [ - "Women's rights" - ] - }, - { - "text": "Take additional measures to increase access to free education for children from low-income families and families living in rural areas ", - "values": [ - "Right to education", - "Rights of the Child" - ] - }, - { - "text": "Review the General Equal Treatment Act of 2006 to ensure that it covers all fields of the labour market and to ensure that women are not discriminated against in some professions, and setting up of concrete goals to be achieved in its implementation", - "values": [ - "Women's rights" - ] - }, - { - "text": "Fully implement the Bahrain Independent Commission of Inquiry's (BICI) recommendations that cover a broad range of tasks, including the ensuring of accountability, prevention of the recurrence of human rights violations through law reform and training of law enforcement personnel, and respect of due process ", - "values": [ - "Justice" - ] - }, - { - "text": "Include a prohibition of discrimination of any kind, including discrimination based on sexual orientation and gender identity, in areas outside employment, in line with international standards ", - "values": [ - "Sexual Orientation and Gender Identity" - ] - }, - { - "text": "Maintain its positive efforts in the current process of reviewing its national laws with a view to bringing them in line with its international human rights obligations ", - "values": [ - "International instruments" - ] - }, - { - "text": "Strengthen its efforts on gender issues.", - "values": [ - "Women's rights" - ] - }, - { - "text": "Step up efforts to consider ratify ILO Convention 189", - "values": [ - "International instruments", - "Labour" - ] - }, - { - "text": "Criminalize and punish the practice of acts of racial discrimination", - "values": [ - "Racial discrimination" - ] - }, - { - "text": "Increase efforts to improve the effective protection of LGBT persons, abandon legislation work on draft law no. 8711 on so-called "propaganda of homosexuality" and refrain from other legislation infringing on the human rights and fundamental freedoms of LGBT persons ", - "values": [ - "Sexual Orientation and Gender Identity" - ] - }, - { - "text": "Implement Treaty Body recommendations and develop a National Action Plan to eliminate all forms of discrimination", - "values": [ - "Treaty bodies" - ] - }, - { - "text": "Expedite the establishment of an independent national mechanism for the prevention of torture and bring the law on torture in line with international standards, including by repealing the statute of limitations ", - "values": [ - "Torture and other CID treatment" - ] - }, - { - "text": "Seek technical assistance to meet its human rights obligations, including the submission of its overdue reports to the relevant treaty bodies", - "values": [ - "Technical assistance and cooperation", - "Treaty bodies" - ] - }, - { - "text": "Investigate allegations that stop and search orders disproportionately fall on persons belonging to ethnic, religious and other minorities and introduce adequate safeguards in this regard ", - "values": [ - "Freedom of religion and belief", - "Minorities", - "Racial discrimination" - ] - }, - { - "text": "Take necessary steps to prevent the incidence of acts of violence with racist and xenophobic undertones by security agents against foreigners, immigrants and asylum-seekers, and to bring to justice the perpetrators of such acts", - "values": [ - "Asylum-seekers - refugees", - "Human rights violations by state agents", - "Migrants", - "Racial discrimination" - ] - }, - { - "text": "The delegation of Bulgaria reiterated the commitment of the Government to continue the judicial reforms and strengthen the juvenile justice system in line with international standards. The delegation reported on ongoing measures to strengthen legislation on juvenile justice.", - "values": [ - "Justice", - "Rights of the Child" - ] - }, - { - "text": "Ensure that Parliament adopts all the pending legislation", - "values": [ - "Other" - ] - }, - { - "text": "Establish a moratorium on execution with a view to abolishing the death penalty for all crimes", - "values": [ - "Death penalty" - ] - }, - { - "text": "Complete the process of putting in place the New National Human Rights Institution on the basis of the Paris Principles ", - "values": [ - "National Human Rights Institution" - ] - }, - { - "text": "Undertake the legislative changes necessary for the abolition of the death penalty and establish a formal moratorium in this regard, as well as ratify the Second Optional Protocol to ICCPR", - "values": [ - "Death penalty", - "International instruments" - ] - }, - { - "text": "Consider including the provision on gender equality and non discrimination in its Human Rights and Liberty Law", - "values": [ - "Women's rights" - ] - }, - { - "text": "Continue to implement policies and programmes aimed at reducing poverty, in particular extreme poverty", - "values": [ - "Poverty" - ] - }, - { - "text": "Consider ratifying the Second Optional Protocol to the ICCPR aiming to abolish the death penalty", - "values": [ - "Death penalty", - "International instruments" - ] - }, - { - "text": "Consider enacting, in consultation with civil society, an optional civil code that takes into account Lebanon's international human rights obligations", - "values": [ - "International instruments" - ] - }, - { - "text": "Make every effort possible to ensure the human rights of prisoners and detainees are fully observed in the criminal justice system", - "values": [ - "Detention" - ] - }, - { - "text": "Ensure that the regulation on surveillance does not violate the right to privacy, intimacy and freedom of expression of its citizens", - "values": [ - "Freedom of opinion and expression", - "Privacy" - ] - }, - { - "text": "Rapidly implement the law on freedom of the press in force since January 2013 ", - "values": [ - "Freedom of the press" - ] - }, - { - "text": "Increase efforts to prosecute sex and labour trafficking offenders, as well as assist and protect victims of trafficking ", - "values": [ - "Trafficking" - ] - }, - { - "text": "Intensify its efforts to implement without delay existing laws concerning the protection of the rights of the child, including the births and deaths registration Act of 2004", - "values": [ - "Rights of the Child", - "Statelessness and the right to nationality" - ] - }, - { - "text": "Increase the minimum age of employment to 16 years in line with the observations of the ILO", - "values": [ - "International instruments", - "Labour", - "Rights of the Child" - ] - }, - { - "text": "Continue to adopt effective measures to prevent and eradicate violence against women, children and adolescents and provide protection and assistance to the victims", - "values": [ - "Rights of the Child", - "Women's rights" - ] - }, - { - "text": "Ratify and implement the remaining core human rights treaties, in particular the International Covenant on Economic, Social and Cultural Rights, the International Covenant on Civil and Political Rights and the Convention against Torture, as previously recommended", - "values": [ - "CP rights - general", - "ESC rights - general", - "International instruments", - "Torture and other CID treatment", - "UPR process" - ] - }, - { - "text": "Introduce a moratorium on all executions as a first step towards final abolition of the death penalty ", - "values": [ - "Death penalty" - ] - }, - { - "text": "Improve the functioning and accessibility of the machinery available to victims of rape to ensure that those guilty are brought to justice and punished", - "values": [ - "Rights of the Child", - "Women's rights" - ] - }, - { - "text": "Inform the suspects of their rights and obligations in a timely manner in accordance with the law, as well as to actively create conditions for lawyers to get involved in a lawsuit from the stage of criminal investigation", - "values": [ - "Justice" - ] - }, - { - "text": "Reconsider their reservation from article 2 in the Convention on the Elimination of All Forms of Discrimination against Women, and ensure that all discrimination under customary law comes to an end ", - "values": [ - "International instruments", - "Women's rights" - ] - }, - { - "text": "Pursue all efforts to preserve the progress achieved in a number of areas such as culture, education, health and the fight against social inequality ", - "values": [ - "ESC rights - general", - "Right to education", - "Right to health" - ] - }, - { - "text": "Establish an independent national human rights institution for the protection and promotion of the rights of women", - "values": [ - "National Human Rights Institution", - "Women's rights" - ] - }, - { - "text": "Strengthen women\u2019s rights, in particular with respect to representation in public life, as well as the fight against domestic violence and the wage gap between women and men", - "values": [ - "Rights of the Child", - "Women's rights" - ] - }, - { - "text": "Redouble efforts for the prevention, sanction and eradication of all forms of violence against women and attain equality of rights between men and women in all spheres of life ", - "values": [ - "Women's rights" - ] - }, - { - "text": "Complete its international commitments by ratifying those instruments which it has already signed, and initiate the process for the signing and subsequent ratification of CED and CRPD ", - "values": [ - "Disabilities", - "Enforced disappearances", - "International instruments" - ] - }, - { - "text": "Follow up on cases of discriminatory treatment of the Roma population in the area of employment and provide equal chances and treatment to Roma children with regard to education", - "values": [ - "Labour", - "Minorities", - "Right to education", - "Rights of the Child" - ] - }, - { - "text": "Take steps to promote intercultural and inter-religious dialogue and cooperation to strengthen non-discrimination campaigns and to enhance participation of minorities in public life to promote an inclusive society ", - "values": [ - "Freedom of religion and belief", - "Minorities", - "Racial discrimination" - ] - }, - { - "text": "Strengthen its legislation and assistance to victims of gender-based violence to ensure that the rights of all victims, including former spouses or long-term partners who did not live in a common household, are recognised and that they receive equal treatment", - "values": [ - "Women's rights" - ] - }, - { - "text": "Review conditions in prisons, places of detention and other facilities falling within the scope of CAT-OP with a view to ensuring their full compliance with international standards, in particular as to the use of restraints and with regard to juveniles.", - "values": [ - "Detention", - "International instruments" - ] - }, - { - "text": "Adopt and strengthen existing measures to prevent and combat trafficking in women.", - "values": [ - "Trafficking", - "Women's rights" - ] - }, - { - "text": "Pursue efforts undertaken in the fight against all forms of violence and discrimination against women, especially female genital mutilation", - "values": [ - "Rights of the Child", - "Torture and other CID treatment", - "Women's rights" - ] - }, - { - "text": "Take clear measures to combat trafficking in persons, particularly trafficking of women and children for the purpose of forced labour and sexual trade", - "values": [ - "Labour", - "Rights of the Child", - "Trafficking", - "Women's rights" - ] - }, - { - "text": "Provide the Ombudsman institution with necessary resources to carry out its mandate in an effective way", - "values": [ - "National Human Rights Institution" - ] - }, - { - "text": "Strengthen the role of the Human Rights Defender institution to allow the Defender to increase his monitoring and expand his work to the regions ", - "values": [ - "Human rights defenders" - ] - }, - { - "text": "Encourage the implementation of its national policy on poverty alleviation to realize its goals of eradicating poverty in the country by 2030", - "values": [ - "Poverty" - ] - }, - { - "text": "Pursue its efforts in order to incorporate the provisions of the Convention on the Elimination of All Forms of Discrimination against Women in its national law", - "values": [ - "International instruments", - "Women's rights" - ] - }, - { - "text": "Consider ratifying or accede to the Rome Statute of the ICC, to implement it fully at the national level, and accede to the Agreement on Privileges and Immunities", - "values": [ - "International instruments", - "Justice" - ] - }, - { - "text": "Adopt a moratorium on executions as a first step to the abolition of the death penalty ", - "values": [ - "Death penalty" - ] - }, - { - "text": "Step up efforts in addressing widespread phenomenon of child economic exploitation in the form of child trafficking or child labour as well as child sexual abuse", - "values": [ - "Labour", - "Rights of the Child", - "Trafficking" - ] - }, - { - "text": "San Marino undertakes the commitment to ratify the Convention on the Prevention and Punishment of the Crime of Genocide and, in conformity with Article 5 thereof, to amend the Criminal Code, by enacting the necessary legislation, with a view to introducing the crime of genocide and the other acts enumerated in Article 3.", - "values": [ - "International instruments", - "Justice" - ] - }, - { - "text": "Review the juvenile justice system in order to raise the age of criminal responsibility, in accordance with international standards", - "values": [ - "Justice", - "Rights of the Child" - ] - }, - { - "text": "Immediately implement a formal moratorium on the death penalty with a view to abolishing the practice", - "values": [ - "Death penalty" - ] - }, - { - "text": "Continue working to create a national preventive mechanism against torture ", - "values": [ - "Detention", - "Torture and other CID treatment" - ] - }, - { - "text": "Strengthen the institutional framework for human rights ", - "values": [ - "General" - ] - }, - { - "text": "Continue work on enacting a gender equality bill, as an important step to improve the country's legislation on non-discrimination and gender equality", - "values": [ - "Women's rights" - ] - }, - { - "text": "Strengthen the efforts to allow a greater role for women in social and economic developments", - "values": [ - "Women's rights" - ] - }, - { - "text": "Continue to pay special attention to the protection of the rights of the most vulnerable groups such as persons with disabilities ", - "values": [ - "Disabilities" - ] - }, - { - "text": "More than 3.1 million foreign workers are contractually employed and the Government is fully committed to creating the necessary mechanisms and safeguards to protect all who reside and work in the country.", - "values": [ - "Labour", - "Migrants" - ] - }, - { - "text": "Continue efforts to generate greater inter-institutional coordination and availability of resources for the agencies responsible for the welfare of minors, both girls and boys", - "values": [ - "Rights of the Child" - ] - }, - { - "text": "Deepen the actions that ensure the effective implementation and legislation that guarantee the equality and protection of women", - "values": [ - "Women's rights" - ] - }, - { - "text": "Consider ratifying the International Convention for the Protection of All Persons from Enforced Disappearance and recognize the competence of the Committee on Enforced Disappearance, in conformity with articles 31 and 32 ", - "values": [ - "Enforced disappearances", - "International instruments" - ] - }, - { - "text": "Introduce legislation explicitly prohibiting corporal punishment and promote alternative, non-violent forms of discipline", - "values": [ - "Torture and other CID treatment" - ] - }, - { - "text": "Re-establish the NHRI as a vital, clearly independent institution with a strong mandate and sufficient capacity and resources to strengthen implementation of human rights in the country ", - "values": [ - "National Human Rights Institution" - ] - }, - { - "text": "Amend the laws to include protection for domestic service work ", - "values": [ - "Labour" - ] - }, - { - "text": "Invite the United Nations Special Rapporteur on Torture to conduct an assessment of torture in the country ", - "values": [ - "Special procedures", - "Torture and other CID treatment" - ] - }, - { - "text": "Allocate adequate resources for the health sector as well as to ensure free access to health facilities to the needy", - "values": [ - "Right to health" - ] - }, - { - "text": "Promptly establish a National Human Rights Institution that operates in accordance with the Paris Principles, seeking international assistance as necessary ", - "values": [ - "National Human Rights Institution", - "Technical assistance and cooperation" - ] - }, - { - "text": "Establish, as a matter of priority, a National Human Rights Institution which is fully compliant with the Paris Principles", - "values": [ - "National Human Rights Institution" - ] - }, - { - "text": "Continue progress towards the eradication of poverty, through the application of its laudable social policies, so as to improve the quality of life of its people, in particular in the areas most in need, with the cooperation and assistance as requested by this sovereign nation ", - "values": [ - "Poverty", - "Technical assistance and cooperation" - ] - }, - { - "text": "Draw up an effective and appropriate policy framework and institutional mechanism to fight poverty with a view to attaining Millennium Development Goal 1, with the support and assistance of the international community.", - "values": [ - "Poverty", - "Technical assistance and cooperation" - ] - }, - { - "text": "Continue its engagement with improving the rights of refugees", - "values": [ - "Asylum-seekers - refugees" - ] - }, - { - "text": "Review and reform the Prosecution Office with a view to separating clearly the function of the Minister of Justice and Prosecutor General, in full consultation with key stakeholders", - "values": [ - "Justice" - ] - }, - { - "text": "Protect all detainees, including those in police custody, from excessive use of force", - "values": [ - "Detention", - "Human rights violations by state agents" - ] - }, - { - "text": "Repeal provisions of the Criminal Code, which criminalize sexual conduct between persons of the same sex", - "values": [ - "Sexual Orientation and Gender Identity" - ] - }, - { - "text": "Abolish the death penalty from its penal system in compliance with calls made by various international and regional organs in this regard, such as the Inter-American Commission on Human Rights, and to ratify the Second Optional Protocol to ICCPR ", - "values": [ - "Death penalty", - "International instruments" - ] - }, - { - "text": "Fight against torture, in particular torture against minors ", - "values": [ - "Rights of the Child", - "Torture and other CID treatment" - ] - }, - { - "text": "Sign and ratify the Convention against Torture and other Cruel, Inhuman or Degrading Treatment or Punishment ", - "values": [ - "International instruments", - "Torture and other CID treatment" - ] - }, - { - "text": "Step up efforts to investigate and act upon instances of hate speech and hate crime and to ensure effective access to justice and remedies for victims, including lesbian, gay, bisexual, transgender and intersex persons and members of religious or ethnic minority communities", - "values": [ - "Racial discrimination", - "Sexual Orientation and Gender Identity" - ] - }, - { - "text": "Pursue the fight against poverty and to take policies which favour vulnerable people, and pursue economic cooperation which the country needs", - "values": [ - "Development", - "Poverty" - ] - }, - { - "text": "Take further measures for the rehabilitation and social integration of women and girls who are victims of trafficking ", - "values": [ - "Rights of the Child", - "Trafficking", - "Women's rights" - ] - }, - { - "text": "Subscribe fully to the principle of equality in all areas of life, especially in respect of employment and occupation, and review and adapt the relevant legislation", - "values": [ - "Labour" - ] - }, - { - "text": "Investigate allegations of torture and ensure access to effective remedy for victims", - "values": [ - "Torture and other CID treatment" - ] - }, - { - "text": "Share its good practice in ensuring dignified housing to the most vulnerable groups", - "values": [ - "Right to housing" - ] - }, - { - "text": "Consider the possibility of reviewing these practices and also the idea of implementing labour inspections by qualified professionals and with appropriate funding.", - "values": [ - "Labour" - ] - }, - { - "text": "Consider enacting specific legislation to combat human trafficking", - "values": [ - "Trafficking" - ] - }, - { - "text": "Continue its efforts to combat and prevent discrimination and acts of violence against women", - "values": [ - "Women's rights" - ] - }, - { - "text": "Accede to the Rome Statute of the International Criminal Court, the Agreement on the Privileges and Immunities of the International Criminal Court and the 1968 Convention on the Non-Applicability of Statutory Limitations to War Crimes and Crimes against Humanity, and implement them in national law", - "values": [ - "International humanitarian law", - "International instruments", - "Justice" - ] - }, - { - "text": "Considering strengthening dialogue with the Council and its special procedures, and cooperation with all relevant United Nations special procedures and mechanisms", - "values": [ - "Special procedures", - "Treaty bodies", - "UPR process" - ] - }, - { - "text": "Take effective measures to reduce the high maternal mortality rate ", - "values": [ - "Right to health", - "Women's rights" - ] - }, - { - "text": "Enhance efforts to establish and regularly update a countrywide database of human trafficking and enhance the support and assistance offered to the victims of trafficking", - "values": [ - "Trafficking" - ] - }, - { - "text": "Faithfully implement the national action program for education for all by 2015", - "values": [ - "Right to education" - ] - }, - { - "text": "Address the recommendations of the Committee on the Elimination of Discrimination against Women, the Human Rights Committee and the Committee on Economic, Social and Cultural Rights so as to resolve gender inequality, particularly in the field of employment and representation in high-ranking posts, and to eliminate domestic violence.", - "values": [ - "Treaty bodies", - "Women's rights" - ] - }, - { - "text": "Continue its efforts to promote gender equality and consider appropriate legislative changes, including criminalizing marital rape", - "values": [ - "Rights of the Child", - "Women's rights" - ] - }, - { - "text": "Continue efforts to combat human trafficking, particularly of vulnerable groups, such as women and children", - "values": [ - "Rights of the Child", - "Trafficking", - "Women's rights" - ] - }, - { - "text": "Impose an immediate moratorium on all death sentences", - "values": [ - "Death penalty" - ] - }, - { - "text": "Submit overdue periodic reports, as required by treaties and conventions to which Syria is a party ", - "values": [ - "International instruments", - "Treaty bodies" - ] - }, - { - "text": "Continue to strengthen legislation aimed at the elimination of gender based violence, including through public awareness campaigns", - "values": [ - "Human rights education and training", - "Women's rights" - ] - }, - { - "text": "Bring its legislation into conformity with its support for the General Assembly Statement on Human Rights, Sexual Orientation and Gender Identity and its international human rights obligations, by repealing the provisions which criminalize sexual activity between consenting adults of the same sex ", - "values": [ - "Sexual Orientation and Gender Identity" - ] - }, - { - "text": "Enact legislation that penalizes cases of rape, abuse and incest, to raise awareness on these issues, and to actively pursue the punishment of those guilty of those crimes", - "values": [ - "Rights of the Child", - "Women's rights" - ] - }, - { - "text": "Speed up the adoption of the national anti-terrorism law and start implementation in order to prevent harmful effects on the system of human rights in Somalia", - "values": [ - "Public security" - ] - }, - { - "text": "Fully investigate all complaints of violence perpetrated or facilitated by the security forces, and ensure that suspects are brought before the Courts in a timely manner", - "values": [ - "Human rights violations by state agents" - ] - }, - { - "text": "Commit to preventing further violence and human rights violations in Darfur also through effective cooperation with all relevant international bodies", - "values": [ - "General" - ] - }, - { - "text": "Redouble its efforts and resources to reach the target sets by the Millennium Development Goals for the improvement of the political, economic, social and cultural rights of the Cambodian people ", - "values": [ - "Development" - ] - }, - { - "text": "Better ensure freedom of the press and particularly safeguard the independence of the Media Commission ", - "values": [ - "Freedom of the press" - ] - }, - { - "text": "Progress towards the abolition of the death penalty.", - "values": [ - "Death penalty" - ] - }, - { - "text": "Continue its efforts regarding economic and social rights of the population, including modernizing the education system by enshrining the right to basic education in law", - "values": [ - "ESC rights - general", - "Right to education" - ] - }, - { - "text": "Consider sharing its sustainable development experiences through the help of the relevant\nspecialized agencies ", - "values": [ - "Development" - ] - }, - { - "text": "Sign and ratify the Optional Protocol to the Convention against Torture", - "values": [ - "Detention", - "International instruments", - "Torture and other CID treatment" - ] - }, - { - "text": "Establish the legal conditions that are necessary in order to avoid discrimination of Maroons and indigenous peoples in terms of socio-economic development, health status, and access to health care ", - "values": [ - "Indigenous peoples" - ] - }, - { - "text": "Continue the ongoing efforts, particularly concerning awareness, education and training in the field of human rights", - "values": [ - "Human rights education and training" - ] - }, - { - "text": "Speed up as far as possible the adoption of the draft labour law including the section on domestic workers ", - "values": [ - "Labour" - ] - }, - { - "text": "Continue working with UNICEF and other relevant partners to encourage school enrolment for children to maximize the potential of Madagascar's next generation", - "values": [ - "Right to education", - "Rights of the Child" - ] - }, - { - "text": "Take immediate steps to ensure full protection of civilians in conflict areas and to prevent such conflicts in the future by the creation of a democratic environment with full respect for human rights and fundamental freedoms to all members of society, including members of ethnic minorities ", - "values": [ - "Minorities" - ] - }, - { - "text": "Recognize the United Nations Declaration on the Rights of Indigenous Peoples without conditions or reservations", - "values": [ - "Indigenous peoples", - "International instruments" - ] - }, - { - "text": "Continue on the path chosen and, in particular, foster and promote activities and discussion\non human rights issues domestically and capacity building of institutions ", - "values": [ - "General" - ] - }, - { - "text": "Promote regulations to guarantee the rights of rural women, with an emphasis on care, access to comprehensive health care, quality education, justice, productive resources and employment opportunities", - "values": [ - "Development", - "Justice", - "Right to education", - "Right to health", - "Women's rights" - ] - }, - { - "text": "Review the status of implementation into domestic law of the Convention against Torture and ratify the Optional Protocol to the Convention", - "values": [ - "Detention", - "International instruments", - "Torture and other CID treatment" - ] - }, - { - "text": "Consider the ratification of other core international human rights treaties that it has not yet ratified, especially ICCPR, CAT and CPRD ", - "values": [ - "CP rights - general", - "International instruments", - "Racial discrimination", - "Torture and other CID treatment" - ] - }, - { - "text": "Develop a comprehensive national strategy for combating child, early and forced marriages", - "values": [ - "Rights of the Child", - "Women's rights" - ] - }, - { - "text": "Continue taking further steps for the strengthening of judicial system", - "values": [ - "Justice" - ] - }, - { - "text": "Consider reviewing the Amnesty Law put in place during the military regime.", - "values": [ - "Justice" - ] - }, - { - "text": "Implement its commitment made during the 2010 UPR to ratify and implement the International Convention for the Protection of All Persons from Enforced Disappearance", - "values": [ - "Enforced disappearances", - "International instruments", - "UPR process" - ] - }, - { - "text": "Continue its proactive efforts in order to ensure full gender equality in education and the labour market", - "values": [ - "Women's rights" - ] - }, - { - "text": "Expedite the review of the Constitution and make appropriate amendments in order to align the national legislation and policies with regional and international human rights obligations undertaken by the country", - "values": [ - "International instruments" - ] - }, - { - "text": "Redouble its efforts to eliminate the stigmatization of and discrimination against persons, especially children, infected and affected by HIV-AIDS", - "values": [ - "HIV - Aids", - "Rights of the Child" - ] - }, - { - "text": "Ensure that all laws, regulations and judicial interpretations comply with the Constitution and the ICCPR to ensure that the constitutionally provided right to freedom of expression is fulfilled", - "values": [ - "Freedom of opinion and expression", - "International instruments" - ] - }, - { - "text": "Develop and implement a national strategy to combat human trafficking, particularly of women and girls, with enhanced support services for victims", - "values": [ - "Rights of the Child", - "Trafficking", - "Women's rights" - ] - }, - { - "text": "Take further measures to improve transparency and clarification on its policies and measures to promote gender equality, especially with regard to the implementation of Act No. 2013-33", - "values": [ - "Women's rights" - ] - }, - { - "text": "Continue efforts to combat trafficking in human beings and reinforce measures to provide adequate assistance to victims ", - "values": [ - "Trafficking" - ] - }, - { - "text": "Make every effort to pay due attention to the human rights of asylum seekers and to avoid using disproportionate force on migrants and refugees", - "values": [ - "Asylum-seekers - refugees" - ] - }, - { - "text": "Continue efforts on the operationalization of the National Human Rights Commission in accordance with the Paris Principles", - "values": [ - "National Human Rights Institution" - ] - }, - { - "text": "Accelerate the process of ratification of the Council of Europe Convention on Preventing and Combating Violence against Women and Domestic Violence (the Istanbul Convention)", - "values": [ - "International instruments", - "Rights of the Child", - "Women's rights" - ] - }, - { - "text": "Continue support for agencies such as the Directorate on Corruption and Economic Offences, and for the implementation of the National Anti-Corruption Strategy and Action Plan", - "values": [ - "Corruption" - ] - }, - { - "text": "Ratify the International Convention on the Protection of the Rights of All Migrant Workers and Members of their Families. ", - "values": [ - "International instruments", - "Labour", - "Migrants" - ] - }, - { - "text": "Continue working to combat child, early and forced marriage, to legally prohibit female genital mutilations and to increase support to girls from the poorest households and rural areas who are reportedly more at risk of being subject to these practices", - "values": [ - "Rights of the Child", - "Torture and other CID treatment", - "Women's rights" - ] - }, - { - "text": "Expedite the establishment of a national human rights institution in compliance with the Paris Principles, while taking into account the characteristics of Samoa, including its culture, policies and legislation ", - "values": [ - "National Human Rights Institution" - ] - }, - { - "text": "Ensure equal access to quality education for Roma children", - "values": [ - "Right to education", - "Rights of the Child" - ] - }, - { - "text": "Implement the recommendations of the report of the Bahrain International Commission of Inquiry in such a way to foster a spirit of national unity and consensus conducive to the advancement of the reform process in line with the legitimate aspirations of the people ", - "values": [ - "Justice" - ] - }, - { - "text": "Enhance efforts to prevent and combat violence against women and girls, in particular sexual abuse, domestic violence and femicide, in accordance with the recommendations made by the Committee Against Torture", - "values": [ - "Rights of the Child", - "Treaty bodies", - "Women's rights" - ] - }, - { - "text": "Establish a standing coordination mechanism for the implementation of the recommendations and for the drafting of the reports", - "values": [ - "UPR process" - ] - }, - { - "text": "Continue its efforts aimed at strengthening the work of the National Human Rights Commission and establish a central mechanism for human rights education", - "values": [ - "Human rights education and training", - "National Human Rights Institution" - ] - }, - { - "text": "Review the Law of Political Parties, Public Meetings, and Demonstrations and its compliance with the article 201 of the Constitution", - "values": [ - "Freedom of association and peaceful assembly" - ] - }, - { - "text": "Allow the Saharawi people to freely exercise their inalienable right to self-determination in accordance with General Assembly resolutions and in this context accept a schedule proposed by the Secretary-General on the organization of a referendum on self-determination in Western Sahara", - "values": [ - "Other" - ] - }, - { - "text": "Take immediate steps to ensure that the national regulations relating to the Internet guarantee freedom of expression", - "values": [ - "Freedom of opinion and expression" - ] - }, - { - "text": "Take necessary measures to eradicate violence against women and improve their participation in public life ", - "values": [ - "Women's rights" - ] - }, - { - "text": "Consider extending a standing invitation to all special procedures of the Human Rights Council.", - "values": [ - "Special procedures" - ] - }, - { - "text": "Consider ratifying the ICCPR-OP2, aiming at the abolition of the death penalty", - "values": [ - "Death penalty", - "International instruments" - ] - }, - { - "text": "Continue to prioritise policies aimed at promoting the enjoyment of women's rights and prevention of sexual violence", - "values": [ - "Women's rights" - ] - }, - { - "text": "Continue efforts to protect children talibés against exploitation and end the practice of child begging at the national level", - "values": [ - "Labour", - "Rights of the Child" - ] - }, - { - "text": "Ensure structural and operational independence of the national human rights institution in accordance with the Paris Principles", - "values": [ - "National Human Rights Institution" - ] - }, - { - "text": "Strengthen the national framework for the protection of human rights, including by the adoption of legislation especially for the protection of women and children.", - "values": [ - "Rights of the Child", - "Women's rights" - ] - }, - { - "text": "Respect the right of return for all Palestinian refugees so that they can return to their homeland, and be duly compensated for the damages they and their property suffered from ", - "values": [ - "Asylum-seekers - refugees" - ] - }, - { - "text": "Continue to support the work of the national mechanism for the promotion of the rights of women ", - "values": [ - "Women's rights" - ] - }, - { - "text": "Guarantee that repatriated Afghan refugees, particularly women and girls, have adequate access to sanitation services, education, food, housing, freedom of movement and opportunities ", - "values": [ - "Asylum-seekers - refugees", - "Right to water and sanitation", - "Rights of the Child", - "Women's rights" - ] - }, - { - "text": "Strengthen efforts on the implementation of the Child Care and Protection Act", - "values": [ - "Rights of the Child" - ] - }, - { - "text": "Consider measures to prevent tourist marriages with a view to combating them as considered by the CEDAW Committee.", - "values": [ - "Treaty bodies", - "Women's rights" - ] - }, - { - "text": "Clearly identify the needs regarding technical assistance and capacity-building in the field of human rights ", - "values": [ - "Technical assistance and cooperation" - ] - }, - { - "text": "Implement the national plan of action for human rights for 2012 - 2015 and assess its implementation", - "values": [ - "General" - ] - }, - { - "text": "Put an end to all forms of violence against women and girls belonging to Aboriginal communities ", - "values": [ - "Indigenous peoples", - "Rights of the Child", - "Women's rights" - ] - }, - { - "text": "Modify or repeal Article 230 of the Penal Code in order to decriminalize same-sex relations of consenting adults ", - "values": [ - "Sexual Orientation and Gender Identity" - ] - }, - { - "text": "Remove the reservation to the Convention on the Rights of the Child, and prohibit corporal punishment of children in the home and all other settings", - "values": [ - "Rights of the Child", - "Torture and other CID treatment", - "Women's rights" - ] - }, - { - "text": "As a Small Island Developing State (SIDS), Fiji has seen a significant increase in the frequency and intensity of flash floods and tropical cyclones in the last 5 years. Fiji is committed to reducing carbon emissions through renewable energy (hydro power and bio fuels) and to adapt to climate change particularly to reduce disaster risks. ", - "values": [ - "Environment" - ] - }, - { - "text": "Conduct investigations and initiate prosecutions against alleged perpetrators of extrajudicial executions ", - "values": [ - "Extrajudicial executions" - ] - }, - { - "text": "Respond favourably to the request of special procedures mandate holders to enter the whole country, and fully cooperate with special procedures and other human rights mechanisms, in particular the Special Rapporteur on the situation of human rights in the Democratic People's Republic of Korea", - "values": [ - "Special procedures", - "Treaty bodies", - "UPR process" - ] - }, - { - "text": "Establish a national preventive mechanism and prompt ratification of the Optional Protocol to the Convention against Torture ", - "values": [ - "Detention", - "International instruments", - "Torture and other CID treatment" - ] - }, - { - "text": "Fully comply with its binding international human rights obligations in the light of Iran's commitment towards improving the overall human rights situation in the country", - "values": [ - "International instruments" - ] - }, - { - "text": "Cooperate in the follow-up to this review ", - "values": [ - "UPR process" - ] - }, - { - "text": "Proceed to the immediate closure of prisoner camps", - "values": [ - "Detention" - ] - }, - { - "text": "Provide mandatory sexual education in schools and increase knowledge and awareness about family planning among women and men", - "values": [ - "Right to education", - "Women's rights" - ] - }, - { - "text": "That the National Human Rights Commission find a mechanism for cooperation with OHCHR, especially with regard to programmes and courses relating to human rights", - "values": [ - "Human rights education and training", - "National Human Rights Institution", - "Technical assistance and cooperation" - ] - }, - { - "text": "Enhance cooperation with the United Nations and other specialized agencies with a view to fully implementing national action plans and programmes in the field of human rights, workers' rights, human resource development, education and health, inter alia ", - "values": [ - "Technical assistance and cooperation" - ] - }, - { - "text": "Continue to pursue its outstanding and noble activities within the Human Rights Council", - "values": [ - "Other" - ] - }, - { - "text": "Continue strengthening its development policies, as well as its social protection programmes, that it is already implementing, to give a better quality of life and well-being to its people, and for this purpose it is very important to have the technical cooperation and technical assistance that the country requires", - "values": [ - "Development", - "ESC rights - general", - "Technical assistance and cooperation" - ] - }, - { - "text": "Reinforce the prohibition of torture in the new constitution, which is pending approval", - "values": [ - "Torture and other CID treatment" - ] - }, - { - "text": "Take stronger measures to combat discrimination in both the public and private sectors while promoting greater women's participation at the highest levels of decision-making ", - "values": [ - "Women's rights" - ] - }, - { - "text": "Ensure the right to freedom of expression in the soon to be reviewed provisional constitution and in its federal and regional media legislation", - "values": [ - "Freedom of opinion and expression", - "Freedom of the press" - ] - }, - { - "text": "Extend standing invitations to all special procedures of the Human Rights Council ", - "values": [ - "Special procedures" - ] - }, - { - "text": "Consider the possibility of expressing its consent to be bound by the CRPD", - "values": [ - "Disabilities", - "International instruments" - ] - }, - { - "text": "Give the female population the opportunity to achieve high-level positions with important decision-making levels ", - "values": [ - "Women's rights" - ] - }, - { - "text": "Continue in a permanent manner the human rights education and training programs, disseminating specific information in that regard with training courses for the national and provincial committees, including police officers and the military ", - "values": [ - "Human rights education and training" - ] - }, - { - "text": "Consider ways to strengthen the National Human Rights Commission in line with the principles relating to the status of national institutions for the promotion and protection of human rights (the Paris Principles)", - "values": [ - "National Human Rights Institution" - ] - }, - { - "text": "Institute specific legislative measures aimed at eliminating the practice of discrimination against minority groups, including women and girls", - "values": [ - "Minorities", - "Racial discrimination", - "Rights of the Child", - "Women's rights" - ] - }, - { - "text": "Continue to further promote women's rights and increase their participation in all fields of society", - "values": [ - "Women's rights" - ] - }, - { - "text": "To favour actively the rapid completion of negotiations on an optional protocol to the International Covenant on Economic, Social and Cultural Rights so that all the rights recognized by the Covenant may be included in individual communications", - "values": [ - "ESC rights - general", - "International instruments" - ] - }, - { - "text": "Strengthen the measures for fighting discrimination", - "values": [ - "Other" - ] - }, - { - "text": "Modify the low minimum age for marriage for girls and boys ", - "values": [ - "Rights of the Child" - ] - }, - { - "text": "Respond positively to the calls of the international community for the release of prisoners of conscience and engage in a meaningful and inclusive dialogue with all political parties and ethnic groups and other relevant stakeholders towards democratization and national reconciliation ", - "values": [ - "Detention", - "Freedom of opinion and expression" - ] - }, - { - "text": "Ensure access of Bedouin populations to basic public services, such as sanitation, electricity and water.", - "values": [ - "Minorities", - "Right to health", - "Right to water and sanitation" - ] - }, - { - "text": "Prevent extrajudicial killings by members of the military, including the Presidential guard, and bring to justice those members of the military responsible for extrajudicial killings.", - "values": [ - "Extrajudicial executions", - "Human rights violations by state agents" - ] - }, - { - "text": "Ensure that all racist behaviour is effectively investigated and duly punished", - "values": [ - "Racial discrimination" - ] - }, - { - "text": "Increase its efforts to fight human trafficking", - "values": [ - "Trafficking" - ] - }, - { - "text": "Continue protecting and promoting the rights of migrants ", - "values": [ - "Migrants" - ] - }, - { - "text": "Strengthen measures with regard to the elimination of violence and discrimination against persons belonging to religious minorities", - "values": [ - "Freedom of religion and belief", - "Minorities" - ] - }, - { - "text": "Proceed with its intention to establish an independent national human rights commission.", - "values": [ - "National Human Rights Institution" - ] - }, - { - "text": "Establish an independent NHRI and an effective complaints mechanism", - "values": [ - "National Human Rights Institution" - ] - }, - { - "text": "Repeal or amend all discriminatory provisions against women and girls in national legislation", - "values": [ - "Rights of the Child", - "Women's rights" - ] - }, - { - "text": "Remain engaged in discussion on the human rights of migrants, irrespective of their status", - "values": [ - "Migrants" - ] - }, - { - "text": "Implement amendments to the Labour Code to strengthen legal measures to combat the sale and trafficking of children", - "values": [ - "Rights of the Child", - "Trafficking" - ] - }, - { - "text": "Redouble its efforts to maintain continuing progress in fighting poverty", - "values": [ - "Poverty" - ] - }, - { - "text": "Enhance measures on protecting the rights of children, women and other vulnerable groups", - "values": [ - "Rights of the Child", - "Women's rights" - ] - }, - { - "text": "Invite the Working Group on Enforced or Involuntary Disappearances", - "values": [ - "Enforced disappearances", - "Special procedures" - ] - }, - { - "text": "Reinstate the age of criminal responsibility of 14 years of age as prescribed in the Children's Act", - "values": [ - "Rights of the Child" - ] - }, - { - "text": "Continue working on its national policy on equal opportunities for women in order to enhance their participation and empowerment in public processes", - "values": [ - "Women's rights" - ] - }, - { - "text": "Take steps towards the ratification of ICCPR's two optional protocols", - "values": [ - "CP rights - general", - "Death penalty", - "International instruments" - ] - }, - { - "text": "Guarantee the safety of human rights defenders and journalists and ensure they can freely exercise their activities", - "values": [ - "Freedom of the press", - "Human rights defenders" - ] - }, - { - "text": "Remove all restrictions, in law and in practice, which prevent the full enjoyment of the right to including associating for the purposes of contesting political power, as guaranteed under the International Covenant on Civil and Political Rights, including by revoking the Royal Decree of 1973 ", - "values": [ - "Freedom of association and peaceful assembly", - "International instruments" - ] - }, - { - "text": "Formulate a national work plan to prevent suicide, especially as Switzerland enjoys a high standard of development, progress and prosperity", - "values": [ - "Other" - ] - }, - { - "text": "Continue to develop national strategies and programmes to protect vulnerable populations, particularly women, children, persons with disabilities and elderly people ", - "values": [ - "Disabilities", - "Rights of the Child", - "Women's rights" - ] - }, - { - "text": "Strengthen anti-discrimination legislation to ensure equal access for persons with disabilities to public accommodations, commercial facilities and transportation", - "values": [ - "Disabilities" - ] - }, - { - "text": "Take measures to guarantee the right to peaceful assembly and avoid abuses in police activities and, if such abuses occur, ensure that they do not go unpunished", - "values": [ - "Freedom of association and peaceful assembly", - "Human rights violations by state agents" - ] - }, - { - "text": "Ratify the Optional Protocol to the Convention against Torture and establish a national preventive mechanism accordingly, and ensure that prompt, thorough and impartial investigations are carried out into all allegations of torture", - "values": [ - "Detention", - "International instruments", - "Torture and other CID treatment" - ] - }, - { - "text": "Continue its financial commitment to international development through its overseas development assistance programmes ", - "values": [ - "Development" - ] - }, - { - "text": "Step up its efforts in the field of the protection of the rights of children, particularly against domestic violence ", - "values": [ - "Rights of the Child", - "Women's rights" - ] - }, - { - "text": "Take further legislative measures to formulate policies on the prevention of discrimination and violence against migrant women and child workers and also guarantee their right to education and health", - "values": [ - "Labour", - "Migrants", - "Right to education", - "Right to health", - "Rights of the Child", - "Women's rights" - ] - }, - { - "text": "Explore the possibilities for technical support, for instance through the Working Group on Enabling and Protecting Civil Society of the Community of Democracies ", - "values": [ - "Civil society", - "Technical assistance and cooperation" - ] - }, - { - "text": "Further strengthen the public awareness about the human rights of migrant workers and other minority groups", - "values": [ - "Human rights education and training", - "Labour", - "Migrants", - "Minorities" - ] - }, - { - "text": "Continue to promote economic and social sustainable development and poverty reduction, to lay a solid foundation for the enjoyment of all human rights by its people", - "values": [ - "Development", - "Poverty" - ] - }, - { - "text": "Ratify the Rome Statute and cooperate fully with the International Criminal Court in order, inter alia, to hold to account those responsible for crimes against humanity", - "values": [ - "International instruments", - "Justice" - ] - }, - { - "text": "Abolish religious discrimination in the schools", - "values": [ - "Freedom of religion and belief", - "Right to education" - ] - }, - { - "text": "Bhutan recognizes the need for a comprehensive Social Security Policy and is committed to taking incremental steps towards realizing this goal.", - "values": [ - "ESC rights - general" - ] - }, - { - "text": "Develop and strengthen international human rights standards among Afghan citizens ", - "values": [ - "Human rights education and training" - ] - }, - { - "text": "Continue to strengthen its policies and measures for the empowerment of women", - "values": [ - "Women's rights" - ] - }, - { - "text": "Step up the necessary measures to strengthen the powers of the National Human Rights Commission, in conformity with the Paris Principles, providing it with human and financial resources, independence and pluralism in its composition", - "values": [ - "National Human Rights Institution" - ] - }, - { - "text": "Ensure that international norms on freedom of religion and belief and cult are fully respected, including the rights of religious minorities", - "values": [ - "Freedom of religion and belief", - "Minorities" - ] - }, - { - "text": "Continue to strengthen the technical capacity and expertise of Ministries and other governmental organs and other institutions with competence in the field of human rights", - "values": [ - "Human rights education and training" - ] - }, - { - "text": "Introduce a new media law removing all prison penalties for defamation and libel and guaranteeing the right to be informed by all means, including the internet", - "values": [ - "Freedom of opinion and expression", - "Freedom of the press" - ] - }, - { - "text": "Continue its efforts to establish a legal framework to protect human rights by ratifying core instruments, especially the International Covenant on Economic, Social and Cultural Rights ", - "values": [ - "ESC rights - general", - "International instruments" - ] - }, - { - "text": "Implement specific steps to combat the high level of deaths of indigenous persons in places of detention ", - "values": [ - "Detention", - "Indigenous peoples" - ] - }, - { - "text": "Withdraw all its reservations to the Convention on the Rights of the Child ", - "values": [ - "International instruments", - "Rights of the Child" - ] - }, - { - "text": "Share its experiences and good practices in international cooperation aimed at implementing the right to health of millions of people, through initiatives such as the Comprehensive Health Programme and Operation Miracle, among others", - "values": [ - "Right to health" - ] - }, - { - "text": "Accede to the OP-CAT and to establish its national preventive mechanism accordingly", - "values": [ - "Detention", - "International instruments", - "Torture and other CID treatment" - ] - }, - { - "text": "Adopt stand-alone legislation on domestic violence and set up a specialized referral system for victims of domestic abuse, wherein violence will be qualified as a criminal and civil offence subject to prosecution and punishment", - "values": [ - "Rights of the Child", - "Women's rights" - ] - }, - { - "text": "The Lao PDR will endeavour to incorporate provisions of the conventions to which it is a party into domestic legislation, and to enhance the implementation of those conventions in the country in a more effective way.", - "values": [ - "International instruments" - ] - }, - { - "text": "Accede to the second Optional Protocol to the International Covenant on Economic, Social and Cultural Rights on the abolition of capital punishment ", - "values": [ - "Death penalty", - "International instruments" - ] - }, - { - "text": "Further reinforce efforts to combat human trafficking and to protect victims of such crime, especially women and children ", - "values": [ - "Rights of the Child", - "Trafficking", - "Women's rights" - ] - }, - { - "text": "Respect the minimum standards for the death penalty ", - "values": [ - "Death penalty" - ] - }, - { - "text": "Take further structural measures and provide adequate resources to protect women and children from domestic violence.", - "values": [ - "Rights of the Child", - "Women's rights" - ] - }, - { - "text": "Preventing and combating the crime of trafficking in persons, effective implementation of a national plan of action to combat the crime of trafficking in persons", - "values": [ - "Trafficking" - ] - }, - { - "text": "Fulfil the promise of shortly setting up an independent national human rights commission ", - "values": [ - "National Human Rights Institution" - ] - }, - { - "text": "Double its efforts to enhance the enjoyment of women of their legitimate rights and protect them from all forms of violations", - "values": [ - "Women's rights" - ] - }, - { - "text": "Make efforts to strengthen the legislative framework to protect the lesbian, gay, bisexual, transgender and intersex community from all forms of discrimination and intimidation or violence by amending laws which criminalize consensual same-sex relations", - "values": [ - "Sexual Orientation and Gender Identity" - ] - }, - { - "text": "Continue efforts to combat trafficking in women and children in the framework of implementation of the national legislation and international obligations of the country ", - "values": [ - "Rights of the Child", - "Trafficking", - "Women's rights" - ] - }, - { - "text": "Pursue its positive efforts to promote and protect the right to education, including the education of girls", - "values": [ - "Right to education", - "Rights of the Child" - ] - }, - { - "text": "Provide and improve training programmes on human rights for the judiciary, law enforcement personnel and lawyers ", - "values": [ - "Human rights education and training" - ] - }, - { - "text": "Strengthen measures against acts of racism and discrimination, xenophobia and intolerance", - "values": [ - "Racial discrimination" - ] - }, - { - "text": "Re-establish expeditiously constitutional order and the rule of law in the country, and ensure full accountability for all human rights violations following the events of 6 to 7 April 2010 ", - "values": [ - "Justice" - ] - }, - { - "text": "Continue its efforts to reduce the maternal and child mortality rates. ", - "values": [ - "Right to health", - "Rights of the Child", - "Women's rights" - ] - }, - { - "text": "Adopt a national legislation on child protection and further strengthen its regional partnerships to complement national efforts to safeguard the rights of the child", - "values": [ - "Rights of the Child" - ] - }, - { - "text": "Intensify its efforts to achieve the national goals for poverty reduction, food security and socioeconomic development, including through land management reforms ", - "values": [ - "Development", - "Poverty", - "Right to food", - "Right to land" - ] - }, - { - "text": "Strengthen efforts in the fight against all forms of violence against women and to ratify OP-CEDAW", - "values": [ - "International instruments", - "Women's rights" - ] - }, - { - "text": "Integrate into its domestic law the various international human rights instruments to which it is a party", - "values": [ - "International instruments" - ] - }, - { - "text": "Continue ratifying core human rights treaties, namely the International Covenant on Civil and Political Rights and the International Covenant on Economic, Social and Cultural Rights", - "values": [ - "CP rights - general", - "ESC rights - general", - "International instruments" - ] - }, - { - "text": "Continue promoting access to justice as a mean to combat violations of rights, in particular those of persons deprived of their liberty", - "values": [ - "Justice" - ] - }, - { - "text": "Take steps to set up a special section in courts and tribunals to look into issues of human trafficking ", - "values": [ - "Justice", - "Trafficking" - ] - }, - { - "text": "Incorporate the provisions of CEDAW, ratified in 1995, into the domestic legal system ", - "values": [ - "International instruments", - "Women's rights" - ] - }, - { - "text": "Continue efforts to support employment generation among the youth", - "values": [ - "Development" - ] - }, - { - "text": "Implement effectively the United Nations Declaration on the Rights of Indigenous Peoples ", - "values": [ - "Indigenous peoples", - "International instruments" - ] - }, - { - "text": "Take further measures aimed at the protection of women and children's rights, in particular in order to raise awareness of, prevent and protect them from all forms of violence and human trafficking, including among migrants, refugees and asylum seekers", - "values": [ - "Asylum-seekers - refugees", - "Human rights education and training", - "Migrants", - "Rights of the Child", - "Trafficking", - "Women's rights" - ] - }, - { - "text": "Fulfil its international commitments by ratifying the Rome Statute of the International Criminal Court", - "values": [ - "International instruments", - "Justice" - ] - }, - { - "text": "Amend legislation on abortion in order to take into account situations where pregnancy is the result of sexual aggression or incest or when the pregnant woman is in danger, and guarantee the access of all women to sexual and reproductive health", - "values": [ - "Right to health", - "Women's rights" - ] - }, - { - "text": "Modify its national law to define rape as a criminal offense", - "values": [ - "Women's rights" - ] - }, - { - "text": "Implement progressively and effectively the legislations and policies on trafficking in persons", - "values": [ - "Trafficking" - ] - }, - { - "text": "Ensure the full implementation of legislation prohibiting discrimination in employment and all discriminatory practices in the labour market and that further measures be taken to reduce unemployment among minority groups", - "values": [ - "Labour", - "Minorities" - ] - }, - { - "text": "Take more effective measures to prevent and supress manifestations of racism, xenophobia and intolerance and encourage a positive climate of dialogue in this regard", - "values": [ - "Racial discrimination" - ] - }, - { - "text": "Adhere to or ratify the International Convention on the Protection of the Rights of All Migrant Workers and Members of Their Families ", - "values": [ - "International instruments", - "Labour", - "Migrants" - ] - }, - { - "text": "Take all the necessary measures for the establishment of a moratorium on death penalty in Iraq, as a first step towards its abolition", - "values": [ - "Death penalty" - ] - }, - { - "text": "Continue to include human rights in school curriculums", - "values": [ - "Human rights education and training" - ] - }, - { - "text": "Establish effective measures to ensure access of women to decision-making positions", - "values": [ - "Women's rights" - ] - }, - { - "text": "The delegation reaffirmed its commitment to implement its human rights obligations and to continue to work closely with the Council.", - "values": [ - "General" - ] - }, - { - "text": "Continue to allocate the required funding for the implementation of projects to increase the integration of human rights into public policies", - "values": [ - "General" - ] - }, - { - "text": "Ensure religious minorities, including other Christians, are not discriminated against based on their faith ", - "values": [ - "Freedom of religion and belief", - "Minorities" - ] - }, - { - "text": "Make serious efforts to ensure that every individual has access to legal recourse for human rights violations through the formal judicial system, especially residents of districts and rural areas ", - "values": [ - "Justice" - ] - }, - { - "text": "Adopt all the measures necessary to combat discrimination in all its forms, including racism and xenophobia ", - "values": [ - "Racial discrimination" - ] - }, - { - "text": "Ensure that the judicial definitions contained in human rights treaties are incorporated effectively and in a timely fashion in its national legislation", - "values": [ - "International instruments" - ] - }, - { - "text": "Re-establish a moratorium on executions with a view of abolishing the death penalty", - "values": [ - "Death penalty" - ] - }, - { - "text": "The State is committed to improving its cooperation with the special procedures and to ensuring transparency in its dealings with them.", - "values": [ - "Special procedures" - ] - }, - { - "text": "Consider applying the Yogyakarta Principles on the Application of International Human Rights Law in relation to Sexual Orientation and Gender Identity as a guide to assist in policy development.", - "values": [ - "International instruments", - "Sexual Orientation and Gender Identity" - ] - }, - { - "text": "consider ratifying the Convention on the Rights of Persons with Disabilities", - "values": [ - "Disabilities", - "International instruments" - ] - }, - { - "text": "Respect and guarantee the universal right of its citizens in Zanzibar to elect their government through genuinely free and fair elections", - "values": [ - "Elections" - ] - }, - { - "text": "Step up efforts to guarantee access to medical care for the rural population", - "values": [ - "Right to health" - ] - }, - { - "text": "Provide the office of the Ombudsman with the human and financial resources necessary for it to exercise its mandate in accordance with the principles relating to the status of national institutions for the promotion and protection of human rights", - "values": [ - "National Human Rights Institution" - ] - }, - { - "text": "Ensure due investigation of all allegations of human rights violations following the events of September 2009 and prosecute the perpetrators in accordance with international standards ", - "values": [ - "Justice" - ] - }, - { - "text": "Continue its efforts to improve conditions in detention facilities in line with the Bangkok Rules", - "values": [ - "Detention" - ] - }, - { - "text": "Take necessary measures to ensure the effective implementation of the law relating to violence against women, notably by guaranteeing access to justice for victims", - "values": [ - "Justice", - "Women's rights" - ] - }, - { - "text": "Ensure the adoption of legislation that prohibits child, early and forced marriage", - "values": [ - "Rights of the Child", - "Women's rights" - ] - }, - { - "text": "Ratify the first Optional Protocol to the International Covenant on Civil and Political Rights and sign and ratify the second Optional Protocol to ICCPR", - "values": [ - "CP rights - general", - "Death penalty", - "International instruments" - ] - }, - { - "text": "Consider ratifying the remaining instruments in a progressive manner and have them effectively incorporated in the national legislation for effective implementation", - "values": [ - "International instruments" - ] - }, - { - "text": "Effectively implement the General Education Act, in particular by taking measures to improve school enrolment rates", - "values": [ - "Right to education" - ] - }, - { - "text": "Do not sentence minors to capital punishment", - "values": [ - "Death penalty", - "Rights of the Child" - ] - }, - { - "text": "Continue efforts to increase women's participation in political life, both in elected positions and in discretionary appointments", - "values": [ - "Women's rights" - ] - }, - { - "text": "Ensure that the police force, the Directorate of Public Prosecution and the Uganda Human Rights Commission investigate all allegations of torture to hold perpetrators accountable", - "values": [ - "National Human Rights Institution", - "Torture and other CID treatment" - ] - }, - { - "text": "Take legislative and other measures to address discrimination, racial hatred and incitement, and investigate reported cases", - "values": [ - "Racial discrimination" - ] - }, - { - "text": "Continue with the implementation of the new Civil and the Civil Procedure Codes, and the Criminal and the Criminal Procedure Codes, which will ease the jurisdiction procedures", - "values": [ - "Justice" - ] - }, - { - "text": "Do not discriminate against women in different political economic and social areas", - "values": [ - "Women's rights" - ] - }, - { - "text": "Take the necessary measures to continue its efforts to prevent, punish and eradicate all forms of violence against women and, at the same time, take measures to raise the awareness of public officials and society at large about the importance of this problem ", - "values": [ - "Women's rights" - ] - }, - { - "text": "Actively engage in efforts aiming at establishing an effective ban on payments of ransoms by foreign merchant navies, which undermine the human rights of all potential hostages as well as Somalis", - "values": [ - "Public security" - ] - }, - { - "text": "Investigate and punish the violations of human rights committed in the aftermath of the coup d'etat of 28 June 2009", - "values": [ - "Justice" - ] - }, - { - "text": "Ratify as soon as possible ICCPR", - "values": [ - "CP rights - general", - "International instruments" - ] - }, - { - "text": "Reinforce efforts to implement the Law on the Elimination of Violence against Women in order to support the establishment of specialized police and prosecutions units, to track the number of cases brought under the Law, and to investigate provinces or districts with low numbers of prosecutions", - "values": [ - "Women's rights" - ] - }, - { - "text": "Strengthen the monitoring mechanism at the federal and district level to ensure that the programmes on poverty eradication reach the intended target group.", - "values": [ - "Poverty" - ] - }, - { - "text": "Put in place a comprehensive strategy to eliminate patriarchal attitudes and negative stereotypes of women in the Tunisian society as well as eliminate discrimination against women that still exists in the national legislation, in particular concerning marriage, child custody, guardianship, as well as effective and equal access to justice ", - "values": [ - "Women's rights" - ] - }, - { - "text": "Proceed with the full incorporation of human rights treaties to which Tuvalu is a party into its domestic legal system ", - "values": [ - "International instruments" - ] - }, - { - "text": "Take further measures to eradicate discrimination against women, as prescribed by Article 17 of the Omani Basic Statute of the State, as well as by the positive remarks made during the previous round of the universal periodic review in 2011, by considering the withdrawal of its reservation to Article 9 of the Convention on the Elimination of All Forms of Discrimination against Women and allowing women to pass on their citizenship to their children in the same manner as men", - "values": [ - "International instruments", - "Rights of the Child", - "Statelessness and the right to nationality", - "UPR process", - "Women's rights" - ] - }, - { - "text": "Renounce the practices of arbitrary detention and end the use of torture in places of detention", - "values": [ - "Detention", - "Torture and other CID treatment" - ] - }, - { - "text": "Immediately cease all acts of violence and abuses committed against civilians and allow for the effective, timely and unfettered delivery of humanitarian assistance, particularly in hard-to-reach and besieged areas", - "values": [ - "International humanitarian law" - ] - }, - { - "text": "Ratify the International Convention for the Protection of All Persons from Enforced Disappearances", - "values": [ - "Enforced disappearances", - "International instruments" - ] - }, - { - "text": "Continue its on-going efforts to safeguard the rights of women and children", - "values": [ - "Rights of the Child", - "Women's rights" - ] - }, - { - "text": "Ensure that the proposed new Traditional Courts Bill, if adopted, does not violate South Africa's international obligations or its own Constitution in the area of women's rights and gender equality ", - "values": [ - "Women's rights" - ] - }, - { - "text": "Improve judicial processes to minimize the length of pre-trial detention and speed up trials, and consider alternatives to detention to address prison overcrowding", - "values": [ - "Detention", - "Justice" - ] - }, - { - "text": "Continue its efforts to consolidate the rights of persons with disabilities", - "values": [ - "Disabilities" - ] - }, - { - "text": "Continue its efforts to strengthen the right to health at the national level and extend this right to vulnerable groups such as persons with disabilities and old persons ", - "values": [ - "Disabilities", - "Right to health" - ] - }, - { - "text": "Guarantee the exercise of the economic, social and cultural rights of children", - "values": [ - "ESC rights - general", - "Rights of the Child" - ] - }, - { - "text": "Strengthen its actions to eliminate forced and premature marriage", - "values": [ - "Rights of the Child", - "Women's rights" - ] - }, - { - "text": "Request technical support from institutions of the United Nations system to help it consolidate, even more than in the past, its policy for the promotion and respect of human rights ", - "values": [ - "Technical assistance and cooperation" - ] - }, - { - "text": "Repeal order 3/2015 of the National Council for Peace and Order and ensure that all civilians are tried before a civilian court and granted the right to fair trial in line with Thailand's obligations as a State party to the International Covenant on Civil and Political Rights ", - "values": [ - "International instruments", - "Justice" - ] - }, - { - "text": "Make further efforts to end discrimination, domestic violence and violence in schools against women", - "values": [ - "Women's rights" - ] - }, - { - "text": "Revise the Act on the Residence of Foreign Nationals so that migrants and refugees do not pay the costs of their detention", - "values": [ - "Asylum-seekers - refugees", - "Detention", - "Migrants" - ] - }, - { - "text": "Take effective measures to investigate and prosecute war crimes, including rape and other sexual abuse, and ensure that war crimes trials are carried out expeditiously and fairly by an independent and impartial tribunal", - "values": [ - "Justice" - ] - }, - { - "text": "Continue efforts for the creation of a national human rights institution, in accordance with international standards, which contributes to the preparation of an action plan on social welfare, ensuring the inclusion and equal opportunities for all the population, with special attention to minorities", - "values": [ - "Minorities", - "National Human Rights Institution" - ] - }, - { - "text": "Encourage freedom of expression and opinion and strengthen cooperation and coordination with civil society and non-governmental organizations ", - "values": [ - "Civil society", - "Freedom of opinion and expression" - ] - }, - { - "text": "Withdraw the reservations made to the International Covenant on Civil and Political Rights", - "values": [ - "CP rights - general", - "International instruments" - ] - }, - { - "text": "Review manuals, training and rules of engagement of the security apparatus in the light of the principles developed in the Code of Conduct for Law Enforcement Officials and the Basic Principles of the Use of Force and Firearms by Law Enforcement Officials", - "values": [ - "Public security" - ] - }, - { - "text": "Consider amending discriminatory provisions and administrative regulations relating to family, marriage, divorce and share of marital property, with the aim to eliminating discrimination against women", - "values": [ - "Women's rights" - ] - }, - { - "text": "Guarantee the funding of institutions which promote tolerance and the smooth integration of foreigners", - "values": [ - "Migrants" - ] - }, - { - "text": "Strengthen efforts to enforce the criminalization of female genital mutilation ", - "values": [ - "Rights of the Child", - "Torture and other CID treatment", - "Women's rights" - ] - }, - { - "text": "Continue to improve and extend the work of its National Task Force on Trafficking in Persons", - "values": [ - "Trafficking" - ] - }, - { - "text": "Produce the necessary funding in order to concretizing the strategy with the aim of eliminating violence against women and to criminalize such offence ", - "values": [ - "Women's rights" - ] - }, - { - "text": "Combat the sale and trafficking in children more effectively and strengthen partnerships with all stakeholders in order to provide child victims with recovery and social reintegration services and programmes ", - "values": [ - "Rights of the Child", - "Trafficking" - ] - }, - { - "text": "Establish anti-discrimination ombudsmen in each of its cantons ", - "values": [ - "National Human Rights Institution" - ] - }, - { - "text": "Establish a national human rights institution that fully abides by the Paris Principles ", - "values": [ - "National Human Rights Institution" - ] - }, - { - "text": "Address persistent inequalities between women and men in the labour market", - "values": [ - "Women's rights" - ] - }, - { - "text": "Continue efforts made by the State and to increase international cooperation, in order to be exposed to all relevant international experiences", - "values": [ - "Other" - ] - }, - { - "text": "Provide adequate human resources and budget to implement its national anti-trafficking in persons policies and programs", - "values": [ - "Trafficking" - ] - }, - { - "text": "Accelerate the process of establishing of the National Human Rights Institution in accordance with the Paris Principles", - "values": [ - "National Human Rights Institution" - ] - }, - { - "text": "Take all measures necessary to ensure the elimination of violence and discrimination against women, and review its reservation to the Convention on the Elimination of All Forms of Discrimination against Women with a view to withdrawing it ", - "values": [ - "International instruments", - "Women's rights" - ] - }, - { - "text": "Fight impunity for all perpetrators of violations and ratify the Rome Statute", - "values": [ - "Impunity", - "International instruments", - "Justice" - ] - }, - { - "text": "Review provisions to reduce the number of offences that carry the death penalty, particularly those relating to the establishment of groups, organizations or associations ", - "values": [ - "Death penalty" - ] - }, - { - "text": "Respond positively to requests to visit made by the Special Rapporteur on torture and other cruel, inhuman or degrading treatment or punishment ", - "values": [ - "Special procedures", - "Torture and other CID treatment" - ] - }, - { - "text": "Put in place a comprehensive strategy, including legislative measures to eliminate practices and stereotypes that discriminate women, such as polygamy and the bride price ", - "values": [ - "Women's rights" - ] - }, - { - "text": "Adopt effective measures in the structured labour market in order to accelerate the elimination of occupational segregation ", - "values": [ - "Labour" - ] - }, - { - "text": "Continue its cooperation with OHCHR and explore new avenues for human rights cooperation", - "values": [ - "Technical assistance and cooperation" - ] - }, - { - "text": "Make a list of persons in detention, provide access to the International Red Cross to prisons and review all cases of arbitrary arrest or confessions under torture, considering reparation for victims", - "values": [ - "Detention", - "Torture and other CID treatment" - ] - }, - { - "text": "Sign and ratify the Council of Europe Convention on Action against Trafficking in Human Beings ", - "values": [ - "International instruments", - "Trafficking" - ] - }, - { - "text": "Ratify the Rome Statute of the International Criminal Court, including the accession the Agreement on the Privileges and Immunities ", - "values": [ - "International instruments", - "Justice" - ] - }, - { - "text": "Explore the possibility of a universal basic income in place of the existing social protection system, in consultation with all the stakeholders", - "values": [ - "Other" - ] - }, - { - "text": "Include disability as prohibited grounds for discrimination in its Constitution ", - "values": [ - "Disabilities" - ] - }, - { - "text": "Continue strengthening its institutional reform in the field of human rights and, in particular, encourage rapid consideration of the bill for the promotion and protection of the rights of indigenous populations.", - "values": [ - "Indigenous peoples" - ] - }, - { - "text": "Reintroduce the possibility of dual citizenship", - "values": [ - "CP rights - general" - ] - }, - { - "text": "Designate an appropriate institution for the implementation and observance of the Convention on Rights of Persons with Disabilities ", - "values": [ - "Disabilities", - "International instruments" - ] - }, - { - "text": "Establish an official moratorium on executions and ratify the Second Optional Protocol to the International Covenant on Civil and Political Rights, aiming at the abolition of the death penalty, so as to bring national legislation into conformity with the de facto moratorium", - "values": [ - "Death penalty", - "International instruments" - ] - }, - { - "text": "Continue efforts to strengthen legal frameworks and their implementation, through, inter alia, completing the ratification process of the Convention on the Rights of Persons with Disabilities", - "values": [ - "Disabilities", - "International instruments" - ] - }, - { - "text": "In line with article 1 of the French Constitution, take further measures to combat racial discrimination, xenophobia and other forms of intolerance and address related issues such as access to education, employment, housing and health of the people belonging to minority groups", - "values": [ - "Minorities", - "Racial discrimination" - ] - }, - { - "text": "Establish specific measures to investigate alleged cases of ill-treatment of detainees and punish those responsible for such abuses", - "values": [ - "Detention", - "Torture and other CID treatment" - ] - }, - { - "text": "Amend customary law and ensure its compliance with the Convention on the Elimination of All Forms of Discrimination against Women and the Transitional Constitution", - "values": [ - "Women's rights" - ] - }, - { - "text": "Continue working towards the professionalization and the modernization of the judicial system in all areas, including law enforcement and administration of justice", - "values": [ - "Justice" - ] - }, - { - "text": "Continue its special efforts to empower women in various areas, in particular in the labour market ", - "values": [ - "Women's rights" - ] - }, - { - "text": "Ensure the protection and welfare of civilians in the occupied State of Palestine ", - "values": [ - "Other" - ] - }, - { - "text": "Further strengthen the capacities of the Human Rights Institution in line with the Paris Principles", - "values": [ - "National Human Rights Institution" - ] - }, - { - "text": "Further continue fighting harmful traditional practices such as female genital mutilation and witchcraft-associated killings", - "values": [ - "Rights of the Child", - "Torture and other CID treatment", - "Women's rights" - ] - }, - { - "text": "Take the necessary measures to fight all forms of intolerance and hate speech against persons belonging to minorities", - "values": [ - "Minorities", - "Racial discrimination" - ] - }, - { - "text": "Allow an independent body to investigate allegations of torture and to end the impunity of perpetrators", - "values": [ - "Impunity", - "Torture and other CID treatment" - ] - }, - { - "text": "Become party to the Optional Protocols to the International Covenant on Economic, Social and Cultural Rights, and the Convention on the Elimination of All Forms of Discrimination against Women", - "values": [ - "ESC rights - general", - "International instruments", - "Women's rights" - ] - }, - { - "text": "Continue harmonizing national legislation with the Convention on the Rights of Persons with Disabilities (CRPD) ", - "values": [ - "Disabilities", - "International instruments" - ] - }, - { - "text": "Pursue relentlessly the implementation of the national priorities, initiatives and commitments, especially the national process of healing and reconciliation as well as the creation of a Human Rights Commission ", - "values": [ - "Justice", - "National Human Rights Institution" - ] - }, - { - "text": "Continue firmly to combat the scourge of sexual violence and impunity and bring to justice those responsible for grave human rights and international humanitarian law violations", - "values": [ - "Impunity", - "International humanitarian law", - "International instruments", - "Rights of the Child", - "Women's rights" - ] - }, - { - "text": "Ensure the increase of financial resource allocation to the field of public education with a view to improving the quality of education, build an appropriate infrastructure and ensure that compulsory primary education lasts for six years ", - "values": [ - "Right to education" - ] - }, - { - "text": "Expedite, as far as possible, the setting up of the National Human Rights Commission in order to have, together with civil society, a good overview of the situation in the country \n", - "values": [ - "National Human Rights Institution" - ] - }, - { - "text": "Re-establish the moratorium on the death penalty", - "values": [ - "Death penalty" - ] - }, - { - "text": "Ensure cooperation with international actors to help address the situation of food insecurity and public health", - "values": [ - "Right to food", - "Right to health", - "Technical assistance and cooperation" - ] - }, - { - "text": "Step up the efforts to adopt the remaining 120 bills that have been identified by the Government as requiring enactment during its term of office in order to implement the changes provided for in the 2008 Constitution ", - "values": [ - "Justice" - ] - }, - { - "text": "Establish a national human rights institution with a broad mandate and adequate resources, in line with the Paris Principles", - "values": [ - "National Human Rights Institution" - ] - }, - { - "text": "Pursue its cooperation with national councils and civil society organizations", - "values": [ - "Civil society" - ] - }, - { - "text": "Protect women\u2019s rights and promote gender equality by ensuring that all district and provincial laws and regulations align with the Constitution of Indonesia and are consistent with its human rights obligations under the International Covenant on Economic, Social and Cultural Rights and the Convention on the Elimination of All Forms of Discrimination against Women, as well as by improving coordination among responsible agencies and ministries", - "values": [ - "International instruments", - "Women's rights" - ] - }, - { - "text": "Accelerate judicial reforms in order to ensure the independence and impartiality of the system and a corruption-free environment", - "values": [ - "Corruption", - "Justice" - ] - }, - { - "text": "Amend the basic laws and other legislation in order to include the prohibition of discrimination and the principle of equality, in accordance with the recommendations of United Nations human rights treaty bodies", - "values": [ - "Treaty bodies" - ] - }, - { - "text": "Through appropriate international assistance, seek to strengthen its educational system and education for all programmes, including for women and persons with disabilities ", - "values": [ - "Disabilities", - "Right to education", - "Technical assistance and cooperation", - "Women's rights" - ] - }, - { - "text": "Review the legislation to eliminate provisions that may discriminate against women and girls and harmonize it with the Convention on the Elimination of all Forms of Discrimination against Women", - "values": [ - "International instruments", - "Rights of the Child", - "Women's rights" - ] - }, - { - "text": "Share its best practices in terms of promoting education for children with disabilities", - "values": [ - "Disabilities", - "Right to education", - "Rights of the Child" - ] - }, - { - "text": "Ratify the conventions to which it is not yet a party, in keeping with the recommendations accepted during the first cycle of the review", - "values": [ - "International instruments", - "UPR process" - ] - }, - { - "text": "Make efforts to strengthen national capacities in the field of human rights while benefiting from the technical assistance of the Office of the High Commissioner for Human Rights ", - "values": [ - "Technical assistance and cooperation" - ] - }, - { - "text": "Ensure persecution of perpetrators of violence against women", - "values": [ - "Women's rights" - ] - }, - { - "text": "Take appropriate measures to support the cultures of persons belonging to national minorities", - "values": [ - "Minorities" - ] - }, - { - "text": "Implement measures enabling socio-economically disadvantaged persons to receive free legal aid", - "values": [ - "Poverty" - ] - }, - { - "text": "Set up a national human rights institution in accordance with the Paris Principles ", - "values": [ - "National Human Rights Institution" - ] - }, - { - "text": "Undertake investigations in cases where there are credible allegations of human rights violations, implement court orders and establish transitional justice mechanisms ", - "values": [ - "Justice" - ] - }, - { - "text": "Make available in international languages to the rest of the world its experience in economic revolution, modernization and in satisfying the material needs of an enormous rural population", - "values": [ - "Development" - ] - }, - { - "text": "Ratify the International Labour Organization Indigenous and Tribal Peoples Convention, 1989 (No. 169)", - "values": [ - "Indigenous peoples", - "International instruments", - "Labour" - ] - }, - { - "text": "Block acts of violence against religious minorities", - "values": [ - "Freedom of religion and belief", - "Minorities", - "Racial discrimination" - ] - }, - { - "text": "Continue its efforts to strengthen and promote human rights", - "values": [ - "General" - ] - }, - { - "text": "Elaborate State policies and establish mechanisms targeting discrimination against marginalized and vulnerable categories of children ", - "values": [ - "Rights of the Child" - ] - }, - { - "text": "Further address the issue of treatment by law enforcement personnel towards criminal suspects, detainees and prisoners, in line with relevant human rights standards ", - "values": [ - "Detention" - ] - }, - { - "text": "Continue efforts in establishing institutions to protect and guarantee human rights and to provide sufficient resources to these institutions ", - "values": [ - "General" - ] - }, - { - "text": "Finalize the establishment of a national human rights institution in accordance with the Paris Principles", - "values": [ - "National Human Rights Institution" - ] - }, - { - "text": "Approve the draft bill leading to the complete abolition of the death penalty ", - "values": [ - "Death penalty" - ] - }, - { - "text": "Step up cooperation with special procedures.", - "values": [ - "Special procedures" - ] - }, - { - "text": "In conformity with articles 31 and 32 of the CED, recognize the competence of the respective monitoring body to receive and consider communications from individuals and States that allege that they have been victims of violations of the provisions of the Convention ", - "values": [ - "Enforced disappearances", - "International instruments", - "Treaty bodies" - ] - }, - { - "text": "Ensure that sexual relations between consenting adults of the same sex are not punishable by law", - "values": [ - "Sexual Orientation and Gender Identity" - ] - }, - { - "text": "Ensure the full independence and impartiality of the judiciary, in conformity with international standards ", - "values": [ - "Justice" - ] - }, - { - "text": "Ensure that all counter-terrorism measures carried out fully comply with the international law obligations of Kenya", - "values": [ - "Counter-terrorism" - ] - }, - { - "text": "Establish a national human rights mechanism pursuant to the Paris Principles, by drawing up a cooperation agreement between the different Belgian entities, without affecting the operation and independence of existing institutions that have a human rights mandate", - "values": [ - "National Human Rights Institution" - ] - }, - { - "text": "Conduct relevant human rights training for senior police ", - "values": [ - "Human rights education and training" - ] - }, - { - "text": "Decriminalize sodomy or other sexual activity between consenting adults\n", - "values": [ - "Sexual Orientation and Gender Identity" - ] - }, - { - "text": "Ensure that comprehensive measures are in place to thoroughly investigate and provide judicial remedies for cases of violations following the armed conflict", - "values": [ - "Impunity" - ] - }, - { - "text": "Continue to intensify its ongoing efforts to strengthen women's representation in leadership roles and decision-making positions", - "values": [ - "Women's rights" - ] - }, - { - "text": "Complete the process of the national legislation's full alignment with all obligations under the Rome Statute, including acceding to the Agreement on Privileges and Immunities of the International Criminal Court ", - "values": [ - "International instruments", - "Justice" - ] - }, - { - "text": "Take steps to ensure that no woman or girl is subject to criminal sanctions for abortion", - "values": [ - "Women's rights" - ] - }, - { - "text": "Allow independent monitors access to all known and secret detention facilities within one year ", - "values": [ - "Detention" - ] - }, - { - "text": "Undertake efforts to integrate in the Constitution, or other national legislation, the principle of equality between men and women and related regulations ", - "values": [ - "Women's rights" - ] - }, - { - "text": "Continue its efforts to eliminate illiteracy with the support of the international community ", - "values": [ - "Right to education", - "Technical assistance and cooperation" - ] - }, - { - "text": "Become a party to the Convention against Torture and Other Cruel, Inhuman or Degrading Treatment or Punishment and its Optional Protocol", - "values": [ - "Detention", - "International instruments", - "Torture and other CID treatment" - ] - }, - { - "text": "Strengthen the coordination between the National Police and the Public Prosecutor's office ", - "values": [ - "Justice" - ] - }, - { - "text": "Step up its cooperation with the Special Procedures of the Human Rights Council by responding positively to the pending visit requests and eventually consider extending a standing invitation to all the Special Procedures mandate holders of the Human Rights Council", - "values": [ - "Special procedures" - ] - }, - { - "text": "Strengthen the federal mechanism for the protection of defenders and journalists and provide it with preventive capacity, taking into account the threat posed by organized crime networks against freedom of speech and press", - "values": [ - "Freedom of opinion and expression", - "Freedom of the press", - "Human rights defenders" - ] - }, - { - "text": "Continue to promote the empowerment of women and their participation in society", - "values": [ - "Women's rights" - ] - }, - { - "text": "Address overcrowding, sanitation, violence, and medical and psychological care in prisons", - "values": [ - "Detention", - "Right to health", - "Right to water and sanitation" - ] - }, - { - "text": "Give immediate and unfettered access to the Special Rapporteur on the situation of human rights in Iran", - "values": [ - "Special procedures" - ] - }, - { - "text": "Conduct broad and systematic awareness-raising activities to combat stigmatization, clichés, stereotypes and prejudices faced by non-Swiss nationals", - "values": [ - "Human rights education and training", - "Racial discrimination" - ] - }, - { - "text": "Develop and implement a national trafficking plan to combat human trafficking and exploitation, including of women and for the purposes of child labour and domestic work", - "values": [ - "Labour", - "Rights of the Child", - "Trafficking", - "Women's rights" - ] - }, - { - "text": "Cooperate fully with all international human rights mechanisms, including the Commission on Human Rights in South Sudan established by the Human Rights Council", - "values": [ - "Technical assistance and cooperation" - ] - }, - { - "text": "Take necessary measures to ensure that allegations of killings, torture, arbitrary detentions, extrajudicial executions, excessive use of force and ill-treatment of detainees are swiftly investigated and the perpetrators brought to justice", - "values": [ - "Detention", - "Extrajudicial executions", - "Human rights violations by state agents", - "Torture and other CID treatment" - ] - }, - { - "text": "Take steps to ensure the prevention, investigation and prosecution of cases of violence against persons based on sexual orientation and gender identity", - "values": [ - "Sexual Orientation and Gender Identity" - ] - }, - { - "text": "Further enhance Liberia's legal system to promote effective and smooth judicial procedure", - "values": [ - "Justice" - ] - }, - { - "text": "Raise awareness among potential victims of racism and discrimination on the existence and scope of the General Equal Treatment Act (AGG) and of the mechanisms for invoking their rights before the courts ", - "values": [ - "Racial discrimination", - "Women's rights" - ] - }, - { - "text": "Further improve the accessibility and quality of education, and increase the enrolment rate of vulnerable children, including girl children and children of ethnic minorities", - "values": [ - "Minorities", - "Right to education", - "Rights of the Child", - "Women's rights" - ] - }, - { - "text": "Continue its efforts to ensure that its people have access to healthcare services, especially in rural areas", - "values": [ - "Right to health" - ] - }, - { - "text": "Consider acceding to ICMW ", - "values": [ - "International instruments", - "Migrants" - ] - }, - { - "text": "Investigate all allegations of attacks and arbitrary detention of lesbian, gay, bisexual, transgender and intersex persons and bring the perpetrators to justice", - "values": [ - "Detention", - "Sexual Orientation and Gender Identity" - ] - }, - { - "text": "Ratify the Second Optional Protocol to ICCPR aiming at the abolition of the death penalty", - "values": [ - "Death penalty", - "International instruments" - ] - }, - { - "text": "Extend an open and standing invitation to the mandate holders of the United Nations special procedures", - "values": [ - "Special procedures" - ] - }, - { - "text": "Ensure that all minorities, and particularly the Baha'i community, can exercise all of their rights free from discrimination and persecution, in conformity with the recommendations of the Human Rights Committee, the Committee on the Rights of the Child and the Special Rapporteur on adequate housing", - "values": [ - "Freedom of religion and belief", - "Minorities", - "Special procedures", - "Treaty bodies" - ] - }, - { - "text": "Strengthen its efforts to guarantee freedom of assembly and association, to respect the work of human rights defenders, and that legislation concerning NGOs is implemented accordingly", - "values": [ - "Civil society", - "Freedom of association and peaceful assembly", - "Human rights defenders" - ] - }, - { - "text": "Within the spirit of the Durban Review Conference, continue to make all efforts to adopt effective measures to prevent the recurrence of threats against religious minorities, including the Jewish and the Baha'i communities.", - "values": [ - "Freedom of religion and belief", - "Minorities" - ] - }, - { - "text": "Continue the process of ratification of international instruments, especially in the area of human rights", - "values": [ - "International instruments" - ] - }, - { - "text": "Invest further efforts in political empowerment of representatives of minority communities with a view to encourage their meaningful participation in political processes at the local, regional and national levels, and thus provide for their better integration in the society", - "values": [ - "Minorities" - ] - }, - { - "text": "Lift blockades in the Gaza Strip and remove restrictions of movement currently placed in the Occupied Palestine Territories that gravely harm the human rights of Palestinians.", - "values": [ - "Freedom of movement" - ] - }, - { - "text": "Combat the climate of impunity and ensure that racially motivated attacks committed against minorities are systematically investigated, prosecuted and punished according to law", - "values": [ - "Impunity", - "Minorities", - "Racial discrimination" - ] - }, - { - "text": "Continue efforts to pursue the legislative efforts of the sustainable development commission for future generations", - "values": [ - "Development" - ] - }, - { - "text": "Increase level of education to cover disabled children", - "values": [ - "Disabilities", - "Right to education", - "Rights of the Child" - ] - }, - { - "text": "De-criminalize homosexuality, establish a de-facto moratorium on Article 319 of the Penal Code, and ensure that the Code is not used as basis for arbitrary arrests by the police", - "values": [ - "Detention", - "Sexual Orientation and Gender Identity" - ] - }, - { - "text": "Undertake awareness-raising and education on violence against women", - "values": [ - "Human rights education and training", - "Women's rights" - ] - }, - { - "text": "Adopt the necessary legislative and administrative measures to implement those treaties that they have already ratified", - "values": [ - "International instruments" - ] - }, - { - "text": "Establishing an independent commission chaired by a special Prosecutor to help identify and incarcerate the crimes perpetrated by individuals or groups based on racism", - "values": [ - "Justice", - "Racial discrimination" - ] - }, - { - "text": "Implement legislative measures to ensure that persons under 18 years of age cannot be subject to receiving the death penalty", - "values": [ - "Death penalty" - ] - }, - { - "text": "Engage in dialogue with international experts on legal developments, including on the review of its Penal Code to allow less scope for open interpretation of these provisions by judges and courts.", - "values": [ - "Justice" - ] - }, - { - "text": "Consider the possibility of enhancing the measures required for the protection of the rights of the elderly ", - "values": [ - "Other" - ] - }, - { - "text": "Consider ratification of the Optional Protocol to the Convention on the Rights of the Child on a communications procedure (OP-CRC-IC) ", - "values": [ - "International instruments", - "Rights of the Child" - ] - }, - { - "text": "Government is steadfastly committed to eliminate all socially or culturally constructed barriers for persons with disabilities through the Equal Opportunities (Persons with Disability) Act 2000.", - "values": [ - "Disabilities" - ] - }, - { - "text": "Take effective measures to strengthen the institution of family, including awareness-raising activities which should focus on raising awareness in society, especially of young people, on the traditional understanding of family and its social significance ", - "values": [ - "Other" - ] - }, - { - "text": "Resume the dialogue in Tibet", - "values": [ - "Minorities" - ] - }, - { - "text": "Take appropriate measures to ensure equal protection for all victims of human trafficking for sexual exploitation under the age of eighteen years ", - "values": [ - "Rights of the Child", - "Trafficking" - ] - }, - { - "text": "Adopt a comprehensive public policy and law to eradicate female genital mutilation ", - "values": [ - "Rights of the Child", - "Torture and other CID treatment", - "Women's rights" - ] - }, - { - "text": "Issue a standing invitation to all Special Procedures", - "values": [ - "Special procedures" - ] - }, - { - "text": "Implement the Convention on the Elimination of All Forms of Racial Discrimination to end the marginalization of and poverty among migrants who face high levels of unemployment, as compared to persons who are native to the Netherlands", - "values": [ - "International instruments", - "Migrants", - "Poverty", - "Racial discrimination" - ] - }, - { - "text": "Strengthen and implement, with the support of the international community, the commitments it has made in paragraph 90 of its national report.", - "values": [ - "Technical assistance and cooperation" - ] - }, - { - "text": "Put an end by law to death by stoning and reduce the number of crimes that are punishable by the death penalty, excluding the death penalty for crimes related to drugs ", - "values": [ - "Death penalty" - ] - }, - { - "text": "Withdraw its reservations to the CRC and fully incorporate that instrument into its national legislation, as well as consider the ratification of the Optional Protocol to the Convention on the Rights of the Child on the sale of children, child prostitution and child pornography ", - "values": [ - "International instruments", - "Rights of the Child", - "Trafficking" - ] - }, - { - "text": "Formalize a closer cooperation with local and international NGOs, in order to make a better use of available resources, when addressing the difficult humanitarian situation in Greece today ", - "values": [ - "Civil society" - ] - }, - { - "text": "Continue the efforts to combat all forms of discrimination, in particular Islamophobia ", - "values": [ - "Freedom of religion and belief", - "Racial discrimination" - ] - }, - { - "text": "Establish a juvenile judiciary ", - "values": [ - "Justice", - "Rights of the Child" - ] - }, - { - "text": "Reconsider the relevant provisions of the new Constitution in order to ensure keeping access to abortion as a safe and legal option, and to ensure that the same protection and rights apply to every person regardless of their sexual orientation ", - "values": [ - "Sexual Orientation and Gender Identity", - "Women's rights" - ] - }, - { - "text": "Turn more attention to some serious issues of combating impunity for law enforcement personnel and establishing an independent and effective national preventive mechanism", - "values": [ - "Human rights violations by state agents", - "Impunity" - ] - }, - { - "text": "Take further measures to ensure equitable and sustainable poverty reduction giving particular attention to vulnerable groups, especially in rural areas ", - "values": [ - "Poverty" - ] - }, - { - "text": "Consider adopting a law to eliminate violence against women including domestic violence and make more efforts in order to ensure universal access to compulsory education", - "values": [ - "Right to education", - "Women's rights" - ] - }, - { - "text": "Ratify without delay the Optional Protocol to the Convention on the Rights of the Child on the involvement of children in armed conflict", - "values": [ - "International humanitarian law", - "International instruments", - "Rights of the Child" - ] - }, - { - "text": "Continue providing migrants and their families access to education, health care, and housing at par with its citizens", - "values": [ - "Migrants", - "Right to education", - "Right to health", - "Right to housing" - ] - }, - { - "text": "Accept, ratify or accede, as appropriate, to the Convention against Torture", - "values": [ - "International instruments", - "Torture and other CID treatment" - ] - }, - { - "text": "Engage and involve the national parliament in the follow-up process and implementation of the accepted recommendations in the second UPR report of Vanuatu, and as an example, by hosting a briefing on the role of Parliament on the UPR process and implementation ", - "values": [ - "UPR process" - ] - }, - { - "text": "Strengthen the independence of the national human rights institution", - "values": [ - "National Human Rights Institution" - ] - }, - { - "text": "Finalize reforms of the educational system, notably by establishing mandatory schooling for children between 6 and 15 years of age ", - "values": [ - "Right to education", - "Rights of the Child" - ] - }, - { - "text": "Honduras announced that it would submit a mid-term report on the implementation of UPR recommendations. ", - "values": [ - "Asylum-seekers - refugees", - "UPR process" - ] - }, - { - "text": "Take effective measures to prevent human rights violations by the military and security forces, such as further training and establishing more transparent mechanisms for investigating violations", - "values": [ - "Human rights education and training", - "Human rights violations by state agents" - ] - }, - { - "text": "Sign and ratify the Convention on the Elimination of All Forms of Discrimination against Women, and adopt a law prohibiting female genital mutilations ", - "values": [ - "International instruments", - "Rights of the Child", - "Torture and other CID treatment", - "Women's rights" - ] - }, - { - "text": "Continue to make progress on combatting violence against women and on the efforts to sanction and prevent human trafficking", - "values": [ - "Trafficking", - "Women's rights" - ] - }, - { - "text": "Continue its reforms of the judicial system to improve the quality and efficiency of case handling in the courts ", - "values": [ - "Justice" - ] - }, - { - "text": "Consider establishing a national organ to monitor implementation of the recommendations of UN human rights mechanisms ", - "values": [ - "Special procedures", - "Treaty bodies", - "UPR process" - ] - }, - { - "text": "Decriminalize abortion when the pregnancy endangers the mother's life or health, and when it is the result of rape", - "values": [ - "Women's rights" - ] - }, - { - "text": "Fully respect the provisions of international human rights instruments including ICCPR and CAT in the context of counter terrorism measures", - "values": [ - "CP rights - general", - "Counter-terrorism", - "International instruments", - "Torture and other CID treatment" - ] - }, - { - "text": "Accede to the International Convention on the Protection of the Rights of All Migrant Workers and Members of Their Families", - "values": [ - "International instruments", - "Labour", - "Migrants" - ] - }, - { - "text": "Adopt the necessary legal measures to prohibit all forms of violence against children, including corporal punishment in all settings, particularly in the family, schools, alternative childcare and places of detention for juveniles ", - "values": [ - "Rights of the Child", - "Torture and other CID treatment" - ] - }, - { - "text": "Ratify the Optional Protocol to the International Covenant on Economic, Social and Cultural Rights, as a key way of strengthening the functions of the Committee and improving the protection and credibility of these rights ", - "values": [ - "ESC rights - general", - "International instruments", - "Treaty bodies" - ] - }, - { - "text": "Continue its efforts to improve access to quality education for all", - "values": [ - "Right to education" - ] - }, - { - "text": "Decriminalize consensual sexual relations between adults of the same sex", - "values": [ - "Sexual Orientation and Gender Identity" - ] - }, - { - "text": "Consider issuing a standing invitation to the special procedures of the Human Rights Council ", - "values": [ - "Special procedures" - ] - }, - { - "text": "Take measures in order to ensure the compliance with the ILO Convention No. 169 and the Declaration on the Rights of Indigenous Peoples, including the recognition of the right to land and natural resources of all indigenous peoples in Paraguay ", - "values": [ - "Indigenous peoples", - "International instruments" - ] - }, - { - "text": "Establish a national human rights institution with a broad mandate and adequate resources, in line with the Paris Principles, including specific mandates to ensure social, economic and cultural rights, and especially the rights of women", - "values": [ - "ESC rights - general", - "National Human Rights Institution", - "Women's rights" - ] - }, - { - "text": "Full abolition of capital punishment in all cases and circumstances", - "values": [ - "Death penalty" - ] - }, - { - "text": "Hold accountable all parties responsible for violations of human rights, including abduction of civilians, torture and deaths in custody", - "values": [ - "Detention", - "Enforced disappearances", - "Extrajudicial executions", - "Torture and other CID treatment" - ] - }, - { - "text": "Take further steps in order to promote gender equality and eliminate domestic and family violence in the country", - "values": [ - "Rights of the Child", - "Women's rights" - ] - }, - { - "text": "Elaborate a specific law on domestic violence against women ", - "values": [ - "Women's rights" - ] - }, - { - "text": "Ratify core international human rights instruments, including the International Covenant on Civil and Political Rights and its Optional Protocols, the International Covenant on Economic, Social and Cultural Rights and the Convention against Torture and its Optional Protocol", - "values": [ - "CP rights - general", - "Death penalty", - "Detention", - "ESC rights - general", - "International instruments", - "Torture and other CID treatment" - ] - }, - { - "text": "Undertake awareness-raising campaigns to foster equal opportunities and responsibilities for women and men both in private and public spheres", - "values": [ - "Human rights education and training", - "Women's rights" - ] - }, - { - "text": "Take necessary measures to ensure that the prohibition of FGM has the desired effect on the ground.", - "values": [ - "Rights of the Child", - "Torture and other CID treatment", - "Women's rights" - ] - }, - { - "text": "As recommended in the previous review, grant to "non-traditional" religious groups the same rights in practice as those enjoyed by other groups and permit their peaceful activities free from government interference, as prescribed by international law", - "values": [ - "Freedom of religion and belief", - "UPR process" - ] - }, - { - "text": "Criminalize torture in accordance with Article 1 of the Convention against Torture and combat impunity in this field", - "values": [ - "Impunity", - "Torture and other CID treatment" - ] - }, - { - "text": "Adopt a national plan to fight against trafficking in persons", - "values": [ - "Trafficking" - ] - }, - { - "text": "Review the existing mechanism and framework for handling allegations of excessive use of force, including the use of weapons by law enforcement officials, in order to ensure full compliance with the Convention against Torture ", - "values": [ - "Human rights violations by state agents", - "International instruments" - ] - }, - { - "text": "Continue its efforts to improve the health-care system", - "values": [ - "Right to health" - ] - }, - { - "text": "Strengthen its efforts for realizing full immunization in cooperation with the relevant United Nations agencies", - "values": [ - "Right to health", - "Technical assistance and cooperation" - ] - }, - { - "text": "Ratify before the next universal periodic review cycle the Optional Protocol to the Convention against Torture and establish a national preventive mechanism accordingly", - "values": [ - "Detention", - "International instruments", - "Torture and other CID treatment", - "UPR process" - ] - }, - { - "text": "Adopt a strategy so that children of vulnerable groups are not excluded from the education system ", - "values": [ - "Right to education", - "Rights of the Child" - ] - }, - { - "text": "Take measures to eradicate traditional stereotypes of women, especially through educational programmes, and enact legislation on domestic violence and all forms of sexual abuse ", - "values": [ - "Human rights education and training", - "Women's rights" - ] - }, - { - "text": "Implement Recommendation 2010/5 of the Committee of Ministers of the Council of Europe, in particular the issues regarding freedoms of expression and peaceful assembly", - "values": [ - "Freedom of association and peaceful assembly", - "Freedom of opinion and expression" - ] - }, - { - "text": "In order to fully implement an all-encompassing system that spans crime prevention to the eradication of impunity, hold periodic reviews, issue external progress reports and request technical support when necessary. ", - "values": [ - "Impunity", - "Technical assistance and cooperation" - ] - }, - { - "text": "Continue its efforts to achieve gender equality", - "values": [ - "Women's rights" - ] - }, - { - "text": "Ratify ICCPR and the two Optional Protocols thereto, ICESCR and the Optional Protocol thereto, ICERD, the Optional Protocol to CEDAW, CAT and the two Optional Protocols to CRC, as well as CRPD ", - "values": [ - "International instruments" - ] - }, - { - "text": "Intensify its efforts, through legislation and practical measures, to protect children against all forms of violence, including extra-judicial killings in communal conflicts, torture and trafficking", - "values": [ - "Extrajudicial executions", - "Rights of the Child", - "Torture and other CID treatment", - "Trafficking" - ] - }, - { - "text": "Continue the efforts to promote gender equality, with regard to the high female unemployment rates", - "values": [ - "Women's rights" - ] - }, - { - "text": "Continue its efforts for the promotion of human rights", - "values": [ - "General" - ] - }, - { - "text": "Take all necessary measures to ensure the full protection of women from sexual and gender-based violence", - "values": [ - "Women's rights" - ] - }, - { - "text": "Establish effective mechanisms to monitor the situation of human rights in the country and\nallow independent human rights organizations to operate in Bhutan and express their views freely\n", - "values": [ - "Civil society" - ] - }, - { - "text": "Continue strengthening protection policies in favour of boys and girls, women and persons with disabilities", - "values": [ - "Disabilities", - "Rights of the Child", - "Women's rights" - ] - }, - { - "text": "Implement a comprehensive national strategy to prevent trafficking and sexual exploitation of children.", - "values": [ - "Rights of the Child", - "Trafficking" - ] - }, - { - "text": "Accede to the ICCPR and its Optional Protocols, and ICESCR, and adopt measures to promote awareness of the rights contained in these instruments ", - "values": [ - "CP rights - general", - "Death penalty", - "ESC rights - general", - "International instruments" - ] - }, - { - "text": "Continue to promote and protect human rights in all sectors", - "values": [ - "General" - ] - }, - { - "text": "Remove all the obstacles to freedom of information on the Internet, and guarantee freedom of expression, assembly and association for all", - "values": [ - "Freedom of association and peaceful assembly", - "Freedom of opinion and expression" - ] - }, - { - "text": "Launch a judiciary system reform that will ensure accountability for all human rights violations by opening judicial investigations, prosecuting responsible persons as well as awarding reparations to victims, and in particular investigate and judge past crimes and bring the perpetrators of gross human rights violations to justice by, inter alia, activating transnational justice mechanisms ", - "values": [ - "Justice" - ] - }, - { - "text": "Call on the Libyan Arab Jamahiriya to share with other countries, including mine, the Sudan, its experience in achieving an adequate standard of living for low-income families, especially by providing such families with an investment portfolio ", - "values": [ - "Development" - ] - }, - { - "text": "Seek to ensure full participation of the Roma themselves in the efforts to the full realization of the rights of Roma children", - "values": [ - "Minorities", - "Rights of the Child" - ] - }, - { - "text": "Continue to improve standards of living, ensure broad public access to quality education and health services", - "values": [ - "Right to education", - "Right to health" - ] - }, - { - "text": "Strengthen support for lesbian, gay, bisexual, transgender and intersex rights and address the barriers to full participation in daily life", - "values": [ - "Sexual Orientation and Gender Identity" - ] - }, - { - "text": "Adopt the necessary measures to ensure the release of the people deprived of their liberty for motives of conscience ", - "values": [ - "Detention", - "Freedom of opinion and expression" - ] - }, - { - "text": "Consider either reinstating the Council for the Prevention of Racial Discrimination, Xenophobia and Related Intolerance, or establishing an alternative multi-stakeholder institution with the objective of preventing discrimination and intolerance", - "values": [ - "National Human Rights Institution", - "Racial discrimination" - ] - }, - { - "text": "Implement compulsory training programmes for all relevant officials on how to identify, deal with and protect the victims of gender-based violence ", - "values": [ - "Human rights education and training", - "Women's rights" - ] - }, - { - "text": "Continue efforts to improve detention conditions, particularly through the fight against prison overcrowding ", - "values": [ - "Detention" - ] - }, - { - "text": "Reform the press law in order to lift existing restrictions on the media", - "values": [ - "Freedom of the press" - ] - }, - { - "text": "Establish an independent complaints mechanism for persons held in custody ", - "values": [ - "Detention" - ] - }, - { - "text": "Continue its national efforts, with the support and assistance of the international community, for the promotion and protection of human rights, particularly in the realization of economic, social and cultural rights of the people of Kenya", - "values": [ - "ESC rights - general", - "Technical assistance and cooperation" - ] - }, - { - "text": "Take concrete steps to ensure freedom of expression, including for the media, and to ensure that all alleged attacks against journalists and human rights defenders are promptly and independently investigated", - "values": [ - "Freedom of opinion and expression", - "Freedom of the press", - "Human rights defenders" - ] - }, - { - "text": "Extend a standing invitation to the special procedures mandate holders ", - "values": [ - "Special procedures" - ] - }, - { - "text": "Provide the Government office for Gender Equality as well as the ombuds person for gender equality with the necessary authority as well as human and financial resources to carry out their work effectively ", - "values": [ - "Women's rights" - ] - }, - { - "text": "Reinforce the institutional mechanisms and establish planning instruments for ensuring equality between women and men", - "values": [ - "Women's rights" - ] - }, - { - "text": "Continue its efforts to ensure legal ownership and restitution to long-term internally displaced persons and refugees, as provided by international law standards", - "values": [ - "Internally displaced persons" - ] - }, - { - "text": "Intensify efforts to combat ill-treatment by police authorities ", - "values": [ - "Human rights violations by state agents" - ] - }, - { - "text": "Continue supporting the Multicultural Policy and National Anti-Racism Partnership and Strategy including by enacting comprehensive equality legislation", - "values": [ - "Racial discrimination" - ] - }, - { - "text": "Abolish the exit visa system for foreign workers ", - "values": [ - "Labour", - "Migrants" - ] - }, - { - "text": "Take measures to protect the rights of non-citizens and migrant workers, and eliminate discrimination against them in all areas", - "values": [ - "Labour", - "Migrants", - "Racial discrimination", - "Statelessness and the right to nationality" - ] - }, - { - "text": "While implementing anti-terrorism measures, respect international human rights obligations, including the right to a fair trial and the right to freedom and security of the person.", - "values": [ - "Counter-terrorism", - "International instruments", - "Justice" - ] - }, - { - "text": "Harmonize national and regional legislation in order to avoid discriminatory practices against women and indigenous peoples", - "values": [ - "Indigenous peoples", - "Women's rights" - ] - }, - { - "text": "Continue efforts undertaken with a view to incorporating provisions of international instruments into domestic legislation and becoming a party to international instruments to which it is not yet a party.", - "values": [ - "International instruments" - ] - }, - { - "text": "Establish a national human rights institution in compliance with the Paris Principles ", - "values": [ - "National Human Rights Institution" - ] - }, - { - "text": "Continue with the process of dialogue necessary to ensure the establishment of a National Human Rights Institution", - "values": [ - "National Human Rights Institution" - ] - }, - { - "text": "Support a complete moratorium on the death penalty and ratify the Second Optional Protocol to the International Covenant on Civil and Political Rights (ICCPR) ", - "values": [ - "Death penalty", - "International instruments" - ] - }, - { - "text": "Adopt with the support of the international community, strategies aimed at eradicating any practice which violates the rights of women with particular emphasis on prevention, punishment and elimination of any forms of gender-based violence and increase the steps taken to ensure equality before the law of civil, political, economic and social rights for men and women", - "values": [ - "Technical assistance and cooperation", - "Women's rights" - ] - }, - { - "text": "Guarantee that the civil courts' jurisdiction is applied also in cases of police persons (Carabineros) accused of violations of human rights ", - "values": [ - "Human rights violations by state agents", - "Justice" - ] - }, - { - "text": "Timely ratify the Optional Protocols to the CRC.", - "values": [ - "International instruments", - "Rights of the Child" - ] - }, - { - "text": "Put an end, in practice and in law, to systematic discrimination on the basis of race in particular against women of certain vulnerable groups ", - "values": [ - "Minorities", - "Racial discrimination", - "Women's rights" - ] - }, - { - "text": "Accelerate the implementation of its national human rights action plan, and continue strengthening the human rights institutional frameworks", - "values": [ - "General" - ] - }, - { - "text": "Continue to improve prison conditions and the treatment of prisoners in line with human rights standards", - "values": [ - "Detention" - ] - }, - { - "text": "Consider introducing a moratorium on the use of the death penalty with a view to its permanent abolition", - "values": [ - "Death penalty" - ] - }, - { - "text": "Further widen its scope of assistance to women, people with disabilities and other vulnerable groups, in this regard", - "values": [ - "Disabilities", - "Women's rights" - ] - }, - { - "text": "Continue efforts to improve the social security system for better safeguarding the elderly and persons with disabilities", - "values": [ - "Disabilities" - ] - }, - { - "text": "Revoke provisions of the national law enabling the use of corporal punishment ", - "values": [ - "Torture and other CID treatment" - ] - }, - { - "text": "Allow women's participation in alltracks of the national concord government formation process, as well as in decision-making positions", - "values": [ - "Women's rights" - ] - }, - { - "text": "Continue to promote efforts aimed at developing methodological and innovative approaches balancing the short-term needs and the long-term vision in order to establish a sustainable education system", - "values": [ - "Right to education" - ] - }, - { - "text": "Consider the possibility of abolishing the death penalty and acceding to the ICCPR-OP 2, while approving a moratorium in the meantime", - "values": [ - "Death penalty", - "International instruments" - ] - }, - { - "text": "Ensure media freedom by providing full editorial independence to publicly-owned media. Ensure the impartiality of the Independent Broadcasting Authority and enact legislation to facilitate access to information", - "values": [ - "Freedom of opinion and expression", - "Freedom of the press" - ] - }, - { - "text": "Combat impunity, prosecute perpetrators and ensure victims' access to effective remedies in case of journalists, human rights defenders and lawyers who become victims of human rights violations and abuses", - "values": [ - "Freedom of the press", - "Human rights defenders", - "Impunity" - ] - }, - { - "text": "Continue to improve conditions in its prisons, including in relation to overcrowding and specific facilities for offenders with mental health disorders", - "values": [ - "Detention", - "Right to health" - ] - }, - { - "text": "Continue with democratization and reform processes by, inter alia, ensuring an equal playing field for all political parties at all stages of the electoral process and by building a fully civilian parliamentary representation chosen in democratic elections", - "values": [ - "Elections" - ] - }, - { - "text": "Adopt necessary actions to prevent impunity and further violations of privacy committed by private media companies such as News Corporation, through hacking into telephone communications, emails, and voicemails ", - "values": [ - "Business and human rights", - "Impunity", - "Privacy" - ] - }, - { - "text": "Consider imposing a de facto moratorium on the use of the death penalty with a view to its total abolition", - "values": [ - "Death penalty" - ] - }, - { - "text": "Seriously consider issuing an invitation to the Special Rapporteur on the question of torture.", - "values": [ - "Special procedures", - "Torture and other CID treatment" - ] - }, - { - "text": "Take the necessary legal and financial measures to ensure the equal participation of women in all areas ", - "values": [ - "Women's rights" - ] - }, - { - "text": "A policy to combat trafficking in persons, based on prevention, prosecution and the international legal framework. In this connection, alongside the awareness-raising activities, the Government is paying particular attention to compliance with court judgements in cases of trafficking, the protection of victims and witnesses during legal proceedings, and the strengthening of partnerships with countries in the subregion through the exchange of information and mutual legal assistance", - "values": [ - "Human rights education and training", - "Justice", - "Trafficking" - ] - }, - { - "text": "Step up the fight against child pornography to better protect children", - "values": [ - "Rights of the Child" - ] - }, - { - "text": "Continue efforts to protect and promote the rights of the marginalized and vulnerable sections of the society", - "values": [ - "Other" - ] - }, - { - "text": "Ensure prompt, independent and thorough investigations of all allegations of torture and ill treatment allegedly committed by law enforcement officials and punish those responsible ", - "values": [ - "Torture and other CID treatment" - ] - }, - { - "text": "Accelerate the process of consultation with the view to ratifying the Second Optional Protocol to the International Covenant on Civil and Political Rights, aiming at the abolition of the death penalty ", - "values": [ - "Death penalty", - "International instruments" - ] - }, - { - "text": "Continue their efforts to enhance respect and fulfillment of the right to education and to ensure access to education for girls and prevent early school dropout", - "values": [ - "Right to education", - "Rights of the Child", - "Women's rights" - ] - }, - { - "text": "Continue their efforts to increase the representation of women in decision-making positions", - "values": [ - "Women's rights" - ] - }, - { - "text": "Increase the minimum age of criminal responsibility contained in the Law of the Child in accordance with international human rights norms to ensure the protection of the rights of all children", - "values": [ - "International instruments", - "Rights of the Child" - ] - }, - { - "text": "Consider signing and ratifying the International Convention for the Protection of All Persons from Enforced Disappearance.", - "values": [ - "Enforced disappearances", - "International instruments" - ] - }, - { - "text": "Foster the finalization of the existing initiative to set up a National Human Rights Institution in conformity with the Paris Principles", - "values": [ - "National Human Rights Institution" - ] - }, - { - "text": "Seek technical and financial support of the international community to improve its human rights infrastructure ", - "values": [ - "Technical assistance and cooperation" - ] - }, - { - "text": "Publicize the recommendations of the universal periodic review", - "values": [ - "UPR process" - ] - }, - { - "text": "Take a step further by becoming a party to the Optional Protocol to the Convention on the Rights of the Child on a communications procedure ", - "values": [ - "International instruments", - "Rights of the Child" - ] - }, - { - "text": "Ratify the Rome Statute of the International Criminal Court and fully align its national legislation with all obligations under the Rome Statute ", - "values": [ - "International instruments", - "Justice" - ] - }, - { - "text": "Take further measures to protect the rights of detainees, above all those on pretrial detention", - "values": [ - "Detention" - ] - }, - { - "text": "End the torture and other mistreatment of detainees - to this end, allow unimpeded access by independent human rights monitors to all detention facilities - guarantee lawyers free access to police stations and prisons - revise the current application procedures for habeas corpus in order to end arbitrary detention - provide comprehensive human rights training for its security forces - engage an independent monitor to measure the effectiveness of such training - effectively implement legislation that prohibits torture and cruel and degrading treatment - investigate and enforce strict penalties to those who violate the rights of prisoners - provide safe recourse and reparations for those who have suffered cruel or degrading treatment - disallow any confessions obtained through the use of torture - adopt a viable action plan to address the urgent need for comprehensive reform in the penal, law enforcement and judicial systems ", - "values": [ - "Detention", - "Human rights education and training", - "Human rights violations by state agents", - "Torture and other CID treatment" - ] - }, - { - "text": "Launch awareness-raising programs on gender equality", - "values": [ - "Women's rights" - ] - }, - { - "text": "Organise visits of the Working Group on Enforced or Involuntary Disappearances, the Working Group on Arbitrary Detention and the Special Rapporteurs on torture, freedom of peaceful assembly and association, and sale of children, child prostitution and child pornography ", - "values": [ - "Detention", - "Enforced disappearances", - "Freedom of association and peaceful assembly", - "Rights of the Child", - "Special procedures", - "Torture and other CID treatment" - ] - }, - { - "text": "Continue to support the UN human rights funds ", - "values": [ - "Other" - ] - }, - { - "text": "Continue its initiatives aimed at improving the rights of Ugandan women and girls, including through the enforcement of the domestic violence act ", - "values": [ - "Rights of the Child", - "Women's rights" - ] - }, - { - "text": "Give greater consideration to the protection of human rights during judicial processes related to terrorism", - "values": [ - "Counter-terrorism" - ] - }, - { - "text": "Continue efforts aimed at the ratification of the International Convention for the Protection of All Persons from Enforced Disappearance ", - "values": [ - "Enforced disappearances", - "International instruments" - ] - }, - { - "text": "Review its legislation in order to ensure that all legislation, including any laws regulating the internet access to information, comply with international human rights standards protecting freedom of expression and freedom of assembly", - "values": [ - "Freedom of association and peaceful assembly", - "Freedom of opinion and expression", - "International instruments" - ] - }, - { - "text": "Institute appropriate reforms to ensure full impartiality of the judiciary and the separation and independence of powers in accordance with international standards ", - "values": [ - "Justice" - ] - }, - { - "text": "Take measures to reduce the number of crimes committed based on xenophobia and racial intolerance", - "values": [ - "Racial discrimination" - ] - }, - { - "text": "Adopt a law to confirm the official status of the national programme for the protection of human rights defenders ", - "values": [ - "Human rights defenders" - ] - }, - { - "text": "Intensify its on-going efforts towards improving the living conditions of its people, especially the most vulnerable groups", - "values": [ - "Minorities" - ] - }, - { - "text": "Continue to promote the rights of children, with the hope that the pending Child Protection Bill in Parliament and the Child protection policy being formulated will soon be adopted.", - "values": [ - "Rights of the Child" - ] - }, - { - "text": "Undertake comprehensive measures to address violence against women and to ensure that victims have immediate protection", - "values": [ - "Women's rights" - ] - }, - { - "text": "Proceed with ratifying and fully implementing international instruments to which it is a signatory, including CAT ", - "values": [ - "International instruments", - "Torture and other CID treatment" - ] - }, - { - "text": "Ensure that laws, policies and programmes to protect the rights of women, the elderly, persons with disabilities and indigenous people are effectively implemented", - "values": [ - "Disabilities", - "Indigenous peoples", - "Women's rights" - ] - }, - { - "text": "Consider the possible establishment of a national human rights institution, according to the Paris Principles ", - "values": [ - "National Human Rights Institution" - ] - }, - { - "text": "Continue the work according to the National Action Plan II to focus on the situation of orphans and vulnerable children to ensure their access to health care and education", - "values": [ - "Right to education", - "Right to health", - "Rights of the Child" - ] - }, - { - "text": "Consider providing universal free primary education to all children, regardless of their sex, nationality, race or ethnic origin", - "values": [ - "Right to education", - "Rights of the Child" - ] - }, - { - "text": "Further enhance provisions of human rights education and training to its citizens ", - "values": [ - "Human rights education and training" - ] - }, - { - "text": "Increase measures to combat discrimination in all forms", - "values": [ - "Other" - ] - }, - { - "text": "Elaborate and implement an action plan for human rights education", - "values": [ - "Human rights education and training" - ] - }, - { - "text": "Accelerate the process of legal reform and ensure that all discriminatory provisions in the legislation, especially those regarding women, are abrogated ", - "values": [ - "Women's rights" - ] - }, - { - "text": "Cameroon stated that for each accepted or rejected recommendations, it has made clear, precise and realistic commitments. For instance, regarding the issue of homosexuality, Cameroon was committed not to aggravate current criminal penalties, to continue to apply legal provisions, guarantee a fair trial to alleged homosexuals, and continue not to apply any discriminatory measure against them. Regarding the issue of freedom of expression, Cameroon was committed to strengthen the professionalism of journalists, continue to allocate public subsidy to the private media, strengthen the capacity of journalists and human rights defenders in the area of ethics and professional code of conduct, continue to promote freedom of expression and respect the outspokenness of the media, continue to apply measures applicable to press card holders in order to protect the State, and support the mission of the Special Rapporteur on the situation of human rights defenders to take place in Cameroon in October 2013.", - "values": [ - "Freedom of opinion and expression", - "Freedom of the press", - "Human rights defenders", - "Sexual Orientation and Gender Identity", - "Special procedures" - ] - }, - { - "text": "Continue to strengthen the abilities of the law enforcement agents to address the impunity of the perpetrators of sexual and sexist violence and to ensure the protection of the victims of trafficking", - "values": [ - "Impunity", - "Trafficking", - "Women's rights" - ] - }, - { - "text": "Pursue its work, with the proper perspective it shows continuously, particularly in the training of its government staff.", - "values": [ - "Other" - ] - }, - { - "text": "Accelerate its efforts to strengthen the independence of the ombudsman institution", - "values": [ - "National Human Rights Institution" - ] - }, - { - "text": "Recognize the competence of the Committee on Enforced Disappearances.", - "values": [ - "Enforced disappearances", - "International instruments" - ] - }, - { - "text": "Comply with its obligations under article 37 of CRC and article 6 of ICCPR and prohibit executions of persons who, at the time of their offences, were under the age of 18", - "values": [ - "Death penalty", - "International instruments", - "Rights of the Child" - ] - }, - { - "text": "Continue efforts to strengthen the legal and institutional framework in the field of human rights", - "values": [ - "General" - ] - }, - { - "text": "Continue to increase community awareness of domestic violence and give particular attention to the needs of families caring for older persons ", - "values": [ - "Rights of the Child", - "Women's rights" - ] - }, - { - "text": "Continue endeavours to advance the process of political settlement to the Syrian issue", - "values": [ - "Other" - ] - }, - { - "text": "Continue the implementation of measures aimed at fighting poverty as well as enhancing the general well-being of its citizens by ensuring their economic and social rights ", - "values": [ - "ESC rights - general", - "Poverty" - ] - }, - { - "text": "Work proactively with partners to address the violence against Aboriginal women and its root causes", - "values": [ - "Indigenous peoples", - "Women's rights" - ] - }, - { - "text": "Take advantage of the technical assistance available through OHCHR to fulfil its reporting obligations to the various United Nations treaty bodies, as previously recommended", - "values": [ - "Technical assistance and cooperation", - "Treaty bodies", - "UPR process" - ] - }, - { - "text": "Abolish in law and practice female genital mutilation, including through the ratification and implementation of the Maputo Protocol", - "values": [ - "International instruments", - "Rights of the Child", - "Torture and other CID treatment", - "Women's rights" - ] - }, - { - "text": "Actively consider ratifying CRPD ", - "values": [ - "Disabilities", - "International instruments" - ] - }, - { - "text": "Continue consolidating its excellent social protection system for the benefit of its population", - "values": [ - "ESC rights - general" - ] - }, - { - "text": "Fully implement all laws, policies and programmes which have been adopted to strengthen gender equality and the rights of women ", - "values": [ - "Women's rights" - ] - }, - { - "text": "Continue ongoing efforts to assist countries, with their consent, in resolving political disputes as well as in improving their developmental infrastructure ", - "values": [ - "Other" - ] - }, - { - "text": "Fully align its national legislation with the Rome Statute of the ICC and ratify the Agreement on Privileges and Immunities of the Court", - "values": [ - "International instruments", - "Justice" - ] - }, - { - "text": "Take steps to reverse the negative trend of the decrease in vaccination coverage in Ukraine", - "values": [ - "Right to health" - ] - }, - { - "text": "Take all necessary measures to promote women's rights and fight domestic violence and forced marriages", - "values": [ - "Rights of the Child", - "Women's rights" - ] - }, - { - "text": "While noting the involvement of civil society in the preparatory process of the national report, to fully involve civil society in the follow-up to the review", - "values": [ - "Civil society", - "UPR process" - ] - }, - { - "text": "Recommended that Mali's request for technical assistance should be taken on board by the international community.", - "values": [ - "Technical assistance and cooperation" - ] - }, - { - "text": "Take measures to guarantee the representation of minorities in social and political areas", - "values": [ - "CP rights - general", - "Minorities" - ] - }, - { - "text": "Strengthen efforts to prevent and combat every kind of discrimination, including by adopting a comprehensive law and by means of awareness campaigns", - "values": [ - "Human rights education and training" - ] - }, - { - "text": "Ensure that both boys and girls have equal access to education", - "values": [ - "Right to education", - "Rights of the Child", - "Women's rights" - ] - }, - { - "text": "Complement the efforts in the field of the integration of foreigners with an active commitment to fighting discrimination", - "values": [ - "Racial discrimination" - ] - }, - { - "text": "Continue implementing programmes in the area of upgrading penitentiary centres, social reinsertion and prevention of recidivism ", - "values": [ - "Detention" - ] - }, - { - "text": "Exert utmost efforts to eliminate and prevent child labour, in particular in the mining sector, agriculture and as domestic servants ", - "values": [ - "Business and human rights", - "Labour", - "Rights of the Child" - ] - }, - { - "text": "Continue its efforts to increase the education budget to ensure adequate remuneration of teachers and adopt the necessary measures to guarantee education of quality and under equal conditions regardless of the ethnic origin, gender and disability of students", - "values": [ - "Disabilities", - "Minorities", - "Right to education" - ] - }, - { - "text": "Facilitate the realization of economic, social and cultural rights through the reconstruction of the areas affected by earthquakes in 2010 and 2011 ", - "values": [ - "ESC rights - general" - ] - }, - { - "text": "Continue to improve procedures to ensure the rights of people of African descent", - "values": [ - "Minorities", - "Racial discrimination" - ] - }, - { - "text": "Improve the relevant legislation to further combat racial discrimination and incitement to racial hatred in order to effectively protect the rights of ethnic minorities ", - "values": [ - "Minorities", - "Racial discrimination" - ] - }, - { - "text": "Continue paying the necessary attention to improve the enjoyment of human rights by persons with disabilities", - "values": [ - "Disabilities" - ] - }, - { - "text": "Continue implementing programmes to combat malnutrition in hospitals and awareness programmes on nutrition for the population", - "values": [ - "Right to food", - "Right to health" - ] - }, - { - "text": "Implement legal and institutional measures to eliminate the discrimination and the harmful practices and stereotypes against women, particularly the harmful practices in connection with reproductive health, and further increase Government funding for women", - "values": [ - "Right to health", - "Torture and other CID treatment", - "Women's rights" - ] - }, - { - "text": "Continue addressing the equality between women and men through implementation of relevant programs and policies", - "values": [ - "Women's rights" - ] - }, - { - "text": "Ratify the Kampala amendment to the Rome Statute, if possible with a view to contributing to the activation of the jurisdiction of the International Criminal Court over the crime of aggression at the beginning of 2017 ", - "values": [ - "International instruments", - "Justice" - ] - }, - { - "text": "Deepen actions against discrimination and violence suffered by lesbian, gay, bisexual, transgender and intersex persons, in particular, ensure access to courts as well as the investigation and punishment of these acts, and strengthen the assistance provided to victims", - "values": [ - "Sexual Orientation and Gender Identity" - ] - }, - { - "text": "Intensify the efforts, including through increasing the seeking of technical cooperation, for establishing special educational programmes for boys and girls with disabilities ", - "values": [ - "Disabilities", - "Right to education", - "Technical assistance and cooperation" - ] - }, - { - "text": "Continue its efforts to provide health, education and social assistance services in rural areas", - "values": [ - "Right to education", - "Right to health" - ] - }, - { - "text": "Continue the measures to increase women's participation in public and political life ", - "values": [ - "Women's rights" - ] - }, - { - "text": "Consider inviting the United Nations Special Rapporteur on human rights defenders and the Special Rapporteur on human rights defenders of the African Commission on Human Rights for a joint visit ", - "values": [ - "Human rights defenders", - "Special procedures" - ] - }, - { - "text": "Ensure that persons with temporary protection status have the right to immediately initiate family reunification proceedings, and that the age limit for family reunification for children be raised from 15 to 18", - "values": [ - "Asylum-seekers - refugees", - "Rights of the Child" - ] - }, - { - "text": "Ratify the Second Optional Protocol to the International Covenant on Civil and Political Rights aiming at the abolition of to the death penalty ", - "values": [ - "Death penalty", - "International instruments" - ] - }, - { - "text": "Ensure that military personnel assigned to peace missions are provided with adequate training and clear guidance in relation to the protection, rights and needs of women, including issues related to sexual and gender-based violence as well as sexual exploitation and abuse ", - "values": [ - "Human rights education and training", - "Women's rights" - ] - }, - { - "text": "Continue to bring domestic legislation into line with international instruments", - "values": [ - "International instruments" - ] - }, - { - "text": "Urge the United Kingdom to take appropriate measures, including completion of the decolonization process of Mauritius and respect the legitimate right of resettlement of the Chagossians, aimed at bringing the United Kingdom into full compliance with its human rights obligations", - "values": [ - "Indigenous peoples" - ] - }, - { - "text": "Give more freedom to the Rwandan media and human rights activists to operate and engage constructively with decision makers ", - "values": [ - "Freedom of the press", - "Human rights defenders" - ] - }, - { - "text": "Consider including human rights education in the 2015-2020 overall education plan ", - "values": [ - "Human rights education and training" - ] - }, - { - "text": "Continue promoting the participation of civil society in public social policies ", - "values": [ - "Civil society" - ] - }, - { - "text": "Grant unfettered access to Belarus for international human rights monitors", - "values": [ - "Special procedures" - ] - }, - { - "text": "Continue its efforts to protect the rights of women and children", - "values": [ - "Rights of the Child", - "Women's rights" - ] - }, - { - "text": "Guarantee in law and in practice, without any abusive restrictions, freedom of peaceful assembly and freedoms of opinion and expression, on the internet and in the traditional media, in line with the International Covenant on Civil and Political Rights ratified by Kuwait", - "values": [ - "Freedom of association and peaceful assembly", - "Freedom of opinion and expression", - "Freedom of the press", - "International instruments" - ] - }, - { - "text": "Pursue the implementation of the national plans for equality between men and women, for the eradication of domestic and gender-based violence and to combat trafficking in persons, ensuring sufficient financial resources to carry out these plans", - "values": [ - "Rights of the Child", - "Trafficking", - "Women's rights" - ] - }, - { - "text": "Continue to work, with development partners, towards compulsory basic education for all children, building on the progress and reforms to date ", - "values": [ - "Right to education", - "Rights of the Child" - ] - }, - { - "text": "Develop in good time an action plan to prevent the illegal recruitment of children into its forces and establish transparent procedures for the verification and release of children from the Chadian army. ", - "values": [ - "Rights of the Child" - ] - }, - { - "text": "Fully implement the strategy for growth and development of Malawi", - "values": [ - "Development" - ] - }, - { - "text": "Adopt practical and legal measures to strengthen the foundation of the family and avoid resorting to measures and legislation which endanger the very foundation of the family in society", - "values": [ - "Other" - ] - }, - { - "text": "Create and maintain a safe and enabling environment where members of all political parties and civil society organizations can exercise their rights, including to freedom of assembly in a manner which allows legitimate and peaceful dissent", - "values": [ - "Civil society", - "Freedom of association and peaceful assembly" - ] - }, - { - "text": "Adopt all necessary measures to eliminate all forms of discrimination, including indirect discrimination against women, guarantee comprehensive attention to victims of gender-based violence, sexual violence, trafficking in persons and sexual exploitation", - "values": [ - "Trafficking", - "Women's rights" - ] - }, - { - "text": "Take measures to curb incitements of hatred in the British mass media, in line with international standards", - "values": [ - "Racial discrimination" - ] - }, - { - "text": "Provide due process of law for those charged with crimes, and to discontinue the show trials", - "values": [ - "Justice" - ] - }, - { - "text": "Ratify the First Optional Protocol to the International Covenant on Civil and Political Rights ", - "values": [ - "CP rights - general", - "International instruments" - ] - }, - { - "text": "Take necessary measures aimed at eliminating all discriminatory treatment on the basis of sexual orientation or gender identity", - "values": [ - "Sexual Orientation and Gender Identity" - ] - }, - { - "text": "Implement further legislation, law enforcement reform and practical efforts to combat violence against women and to advance gender equality", - "values": [ - "Women's rights" - ] - }, - { - "text": "Establish an independent national human rights institution in line with the Paris Principles, with a mandate and resources to investigate complaints of human rights violations", - "values": [ - "National Human Rights Institution" - ] - }, - { - "text": "Seek the opinion of the concerned parties before the approval of the draft national action plan against domestic violence 2010-2014", - "values": [ - "Rights of the Child", - "Women's rights" - ] - }, - { - "text": "Continue promoting social policies aimed at meeting the needs of its people, especially its indigenous populations, for which it is important to have appropriate technical assistance and international aid in order to continue strengthening capacity in this area ", - "values": [ - "Indigenous peoples", - "Technical assistance and cooperation" - ] - }, - { - "text": "Develop and implement social security reforms to protect the most vulnerable groups and individuals", - "values": [ - "ESC rights - general" - ] - }, - { - "text": "Continue to work on combating trafficking in human beings and illegal drug trafficking", - "values": [ - "Public security", - "Trafficking" - ] - }, - { - "text": "Introduce legislation uniformly across the Confederation that explicitly protects lesbian, gay, bisexual, transgender and intersex persons from discrimination. In preparing this Act, the issues faced by lesbian, gay, bisexual, transgender and intersex persons should be taken into account", - "values": [ - "Sexual Orientation and Gender Identity" - ] - }, - { - "text": "Extend a standing invitation to the United Nations human rights special procedures ", - "values": [ - "Special procedures" - ] - }, - { - "text": "Combat hate speech and statements stigmatizing refugees and asylum seekers", - "values": [ - "Asylum-seekers - refugees", - "Racial discrimination" - ] - }, - { - "text": "Take steps to ensure that the constitutional changes concerning minority rights will not entail lowered guarantees compared to the current legal framework ", - "values": [ - "Minorities" - ] - }, - { - "text": "Establish the Authority for Gender Equality and Action against All Forms of Discrimination", - "values": [ - "Women's rights" - ] - }, - { - "text": "Work with the legislature, as well as domestic and international organizations, to amend legislation in order to promote a flourishing civil society ", - "values": [ - "Civil society" - ] - }, - { - "text": "Establish a moratorium on the death penalty with a view to formally abolishing capital punishment in all cases and circumstances", - "values": [ - "Death penalty" - ] - }, - { - "text": "Recommended ratifying the fundamental labour conventions, in particular ILO Conventions 87 and 98, as well as the Convention on the Protection of the Rights of All Migrant Workers and Members of Their Families.", - "values": [ - "International instruments", - "Labour", - "Migrants" - ] - }, - { - "text": "Further enhance the representation of women in all fields of society", - "values": [ - "Women's rights" - ] - }, - { - "text": "Strengthen the measures to combat child labour and the exploitation of children", - "values": [ - "Labour", - "Rights of the Child" - ] - }, - { - "text": "Include in the Constitution and other legislation provisions prohibiting discrimination against women in matters such as adoption, marriage, divorce, devolution of property, burial and death", - "values": [ - "Women's rights" - ] - }, - { - "text": "Not relax its efforts to eradicate practices such as incitement to hatred and violence from certain far-rights groups, wherever they appear, including on the Internet, where they are especially prevalent ", - "values": [ - "Public security" - ] - }, - { - "text": "Revise its decision not to participate in the Durban Review Conference on racism due to take place in April this year in Geneva", - "values": [ - "Racial discrimination" - ] - }, - { - "text": "Amend article 12 of the Constitution to facilitate the automatic incorporation in the internal legal system of international conventions it has signed up to in the area of human rights", - "values": [ - "International instruments" - ] - }, - { - "text": "Facilitate women's access to justice and mainstream a gender-based approach to justice and employment ", - "values": [ - "Women's rights" - ] - }, - { - "text": "Make further efforts to establish a national mechanism to prevent and prohibit the use of torture", - "values": [ - "Detention", - "Torture and other CID treatment" - ] - }, - { - "text": "Continue efforts in the field of combating human trafficking and fully implement the international conventions in this area that Nigeria is a party to", - "values": [ - "International instruments", - "Trafficking" - ] - }, - { - "text": "Amend the Prison Act of 1936 with a view to a suitable reform of the Thai penitentiary system", - "values": [ - "Detention" - ] - }, - { - "text": "Establish a national human rights body in conformity with the Paris Principles", - "values": [ - "National Human Rights Institution" - ] - }, - { - "text": "Make the conditions for acquiring and transferring nationality the same for men and women.", - "values": [ - "Statelessness and the right to nationality", - "Women's rights" - ] - }, - { - "text": "Evaluate the possibility of ratifying the International Convention on the protection of all persons from enforced disappearances ", - "values": [ - "Enforced disappearances", - "International instruments" - ] - }, - { - "text": "Continue to combat all forms of violence against women", - "values": [ - "Women's rights" - ] - }, - { - "text": "Try all perpetrators of torture, regardless of rank", - "values": [ - "Human rights violations by state agents", - "Torture and other CID treatment" - ] - }, - { - "text": "Review migration policies that exist in the country with a view to ensure the full application of international standards ", - "values": [ - "Migrants" - ] - }, - { - "text": "Continue to accede to core international human rights instruments", - "values": [ - "International instruments" - ] - }, - { - "text": "Implement a new plan against people trafficking for sexual exploitation as soon as possible", - "values": [ - "Trafficking" - ] - }, - { - "text": "Abolish all corporal punishment of children in all settings ", - "values": [ - "Rights of the Child", - "Torture and other CID treatment" - ] - }, - { - "text": "Take into account in the reconstruction plans and programs, the needs and rights of persons with disabilities ", - "values": [ - "Disabilities" - ] - }, - { - "text": "Respect legislation on maximum duration of pretrial detention, and implement alternatives to preventive detention", - "values": [ - "Detention" - ] - }, - { - "text": "Cease the de facto restitution of the death penalty and executions", - "values": [ - "Death penalty" - ] - }, - { - "text": "Continue with the measure carried out in order to ratify the ICRMW", - "values": [ - "International instruments", - "Labour", - "Migrants" - ] - }, - { - "text": "Establish an independent human rights institution ", - "values": [ - "National Human Rights Institution" - ] - }, - { - "text": "Continue its efforts in the promotion and protection of human rights by establishing a national human rights institution based on the Paris Principles", - "values": [ - "National Human Rights Institution" - ] - }, - { - "text": "Continue to intensify efforts to strengthen the rule of law and the criminal justice system by developing the capacity of the judicial, legal and security sectors", - "values": [ - "Justice" - ] - }, - { - "text": "To improve the implementation of the European Convention on Human Rights at national level, Slovakia is committed to ratify the Protocol No. 16 to the European Convention on Human Rights. At the same time, Slovakia will actively promote improvement of the functioning of the regional system of human rights protection established by the European Convention on Human Rights", - "values": [ - "International instruments" - ] - }, - { - "text": "Continue towards ratification and implement of CEDAW ", - "values": [ - "International instruments", - "Women's rights" - ] - }, - { - "text": "Ensure all citizens can freely manifest their beliefs and that adherents of all faiths can fully enjoy their rights to health, education and other public services", - "values": [ - "Freedom of religion and belief", - "Right to education", - "Right to health" - ] - }, - { - "text": "Continue its efforts to finalize the national reconciliation process so as to preserve the promotion and protection of human rights", - "values": [ - "Justice" - ] - }, - { - "text": "Establish an institution specifically addressing the rights of children", - "values": [ - "Rights of the Child" - ] - }, - { - "text": "Assess in an open and transparent manner the consequences of flights conducted over Danish territory and landings that took place in the context of the Central Intelligence Agency extradition programme ", - "values": [ - "Counter-terrorism" - ] - }, - { - "text": "Continue its efforts to promote human rights in all spheres, in particular in regard to protecting the victims of violence", - "values": [ - "General" - ] - }, - { - "text": "Implement the national action plan to combat corruption, including strengthening of laws and enforcement, and provide greater resources to independent anti-corruption bodies", - "values": [ - "Corruption" - ] - }, - { - "text": "Bring the national human rights institution into compliance with the Paris Principles and broaden its mandate to carry out investigations into allegations of torture and ill-treatment", - "values": [ - "National Human Rights Institution", - "Torture and other CID treatment" - ] - }, - { - "text": "Take the necessary measures in order to improve conditions of detention", - "values": [ - "Detention" - ] - }, - { - "text": "Adopt further special measures to prevent, combat and punish hate crimes as well as xenophobia and racism ", - "values": [ - "Racial discrimination" - ] - }, - { - "text": "Consider favourably the ratification of the Optional Protocol to the Convention against Torture", - "values": [ - "Detention", - "International instruments", - "Torture and other CID treatment" - ] - }, - { - "text": "Make procedures for registration of civil society organizations transparent, non-discriminatory and expeditious", - "values": [ - "Civil society", - "Freedom of association and peaceful assembly" - ] - }, - { - "text": "Consider ratifying or acceding to: 1951 Refugee Convention, bearing in mind resolution 9-12 of the Human Rights Council entitled Human rights goals", - "values": [ - "Asylum-seekers - refugees", - "International instruments" - ] - }, - { - "text": "Provide complete and accurate information and access to all methods of family planning irrespective of sex or religion and embed this policy in a legal framework with the adoption of the pending Reproductive Health Bill", - "values": [ - "Right to health", - "Women's rights" - ] - }, - { - "text": "Take effective measures to enhance the access to public services concerning persons who do not speak the official language ", - "values": [ - "Other" - ] - }, - { - "text": "Ensure follow-up of legislative measures for the protection and inclusion of foreigners", - "values": [ - "Migrants" - ] - }, - { - "text": "Maintain its commitment to dedicating 0.7 per cent of gross national income to overseas development assistance in order to support economic and social rights in poor countries ", - "values": [ - "Development" - ] - }, - { - "text": "Seek the assistance of the international community to achieve comprehensive national development", - "values": [ - "Development", - "Technical assistance and cooperation" - ] - }, - { - "text": "Amend the Act on Equal Treatment", - "values": [ - "Other" - ] - }, - { - "text": "Provide for the necessary conditions to be able to limit detention in police cells to the 48-hour term as required by Norwegian law ", - "values": [ - "Detention" - ] - }, - { - "text": "Speed up the process of the on-going consultations on the ratification of the Optional Protocol to the Convention against Torture in the hope that the country ratifies this important instrument for the protection and promotion of human rights", - "values": [ - "Detention", - "International instruments", - "Torture and other CID treatment" - ] - }, - { - "text": "Strengthen its efforts relating to the fight against human trafficking, ensuring that all aspects of the issue, from prevention to the suppression of crimes and the protection of victims, are taken into consideration", - "values": [ - "Trafficking" - ] - }, - { - "text": "Free health service: People have free access to health and medical services that are provided by government. For serious cases where treatment is not available, patients are referred to Fiji and New Zealand for treatment, funded by government.", - "values": [ - "Right to health" - ] - }, - { - "text": "Introduce legislation providing appropriate criminal penalties for acts of torture, establish independent procedures to ensure that all allegations of torture are investigated promptly, thoroughly, impartially and independently, that any officials responsible for torture are held accountable, and that any victims of torture have the right to remedy and reparations", - "values": [ - "Human rights violations by state agents", - "Justice", - "Torture and other CID treatment" - ] - }, - { - "text": "Take necessary measures to enforce the legislation on trafficking and economic exploitation of children, and connected judicial protection of minors", - "values": [ - "Rights of the Child", - "Trafficking" - ] - }, - { - "text": "Continue to strengthen its domestic legal framework and implement its international human rights obligations", - "values": [ - "International instruments" - ] - }, - { - "text": "Investigate all crimes committed in relation to the crises in Mali, in all areas of the country ", - "values": [ - "Justice" - ] - }, - { - "text": "Develop a National Plan to combat trafficking in human beings and protect its victims", - "values": [ - "Trafficking" - ] - }, - { - "text": "Implement existing laws and undertake concerted efforts to combat violent extremism and acts of terrorism", - "values": [ - "Public security" - ] - }, - { - "text": "Implement and enforce provisions on freedom of religious worship set out in the Constitution and international human rights treaties to which it is a party ", - "values": [ - "Freedom of religion and belief", - "International instruments" - ] - }, - { - "text": "Strengthen efforts to combat the spread of HIV-AIDS ", - "values": [ - "HIV - Aids" - ] - }, - { - "text": "Continue its efforts in the development of overall infrastructure in the country and capacity building for its personnel to ensure the provision of the basic needs of its people, particularly for food, energy, education, health care and access to justice ", - "values": [ - "Justice", - "Right to education", - "Right to food", - "Right to health" - ] - }, - { - "text": "Improve access to reproductive health services for pregnant women ", - "values": [ - "Right to health", - "Women's rights" - ] - }, - { - "text": "Continue to develop legislation and policies to ensure effective gender equality and to combat gender violence", - "values": [ - "Women's rights" - ] - }, - { - "text": "Continue with efforts to combat human trafficking, inter alia, consider inviting the Special Rapporteur on trafficking in persons, especially women and children, to the country", - "values": [ - "Rights of the Child", - "Special procedures", - "Trafficking", - "Women's rights" - ] - }, - { - "text": "Recognize civil unions between same-sex persons", - "values": [ - "Sexual Orientation and Gender Identity" - ] - }, - { - "text": "Establish specific legislation to fill the legislative gap of a lack of specific legal provisions to prohibit domestic violence and marital rape ", - "values": [ - "Rights of the Child", - "Women's rights" - ] - }, - { - "text": "Investigate and prosecute racist and xenophobic discourse and incitement to hatred in the media and on the Internet by extremist politicians", - "values": [ - "Racial discrimination" - ] - }, - { - "text": "Consider ratifying of the International Convention on the Rights of All Migrant Workers and Members of Their Families, in accordance with the recommendation of the Parliamentary Assembly of the Council of Europe, as well as the Convention on the Rights of Persons with Disabilities ", - "values": [ - "Disabilities", - "International instruments", - "Labour", - "Migrants" - ] - }, - { - "text": "Ensure that the rights of indigenous people and respect of the environment and biodiversity are taken into due consideration in economic activities", - "values": [ - "Environment", - "Indigenous peoples" - ] - }, - { - "text": "End conflict and violence and reach a political solution through dialogue and national reconciliation in order to bring Syria back to a normal situation", - "values": [ - "General" - ] - }, - { - "text": "Continue its cooperation with the United Nations Development Programme to strengthen the technical and functional capacities of the Ministry of Justice and Human Rights", - "values": [ - "Justice", - "Technical assistance and cooperation" - ] - }, - { - "text": "Carry out the electoral reforms proposed by the Supreme Court of Uganda and independent observers to ensure future elections can be held while respecting human rights", - "values": [ - "Elections" - ] - }, - { - "text": "Reform and strengthen the judiciary to effectively address issues of impunity and victim redress", - "values": [ - "Impunity", - "Justice" - ] - }, - { - "text": "Provide the necessary support, including financial, for the specialized institution to monitor the human rights situation", - "values": [ - "National Human Rights Institution" - ] - }, - { - "text": "Stop the sieges of Syrian cities and towns, including east Aleppo, in breach of international humanitarian law. Humanitarian access must be immediately ensured to all the Syrian people in need", - "values": [ - "International humanitarian law" - ] - }, - { - "text": "Establish a community education program to raise awareness of domestic violence against women and options open to them to bring an end to this crime", - "values": [ - "Human rights education and training", - "Women's rights" - ] - }, - { - "text": "Implement measures to address stereotypes regarding the roles and responsibilities of men and women in society ", - "values": [ - "Women's rights" - ] - }, - { - "text": "Adopt new measures to guarantee a greater presence of and better participation by women and minorities in public administration, particularly in elected positions ", - "values": [ - "Minorities", - "Women's rights" - ] - }, - { - "text": "Continue efforts in enhancing the welfare of all segments of society and protect their rights ", - "values": [ - "ESC rights - general" - ] - }, - { - "text": "Consider ratifying the Rome Statute of the International Criminal Court, the Convention for the Protection of All Persons against Enforced Disappearance, the Convention on the Rights of Persons with Disabilities and the Optional Protocols to the Convention against Torture and the Convention on the Elimination of All Forms of Discrimination against Women", - "values": [ - "International instruments" - ] - }, - { - "text": "Intensify efforts aimed at promoting rights of children, in particular, indigenous children, in terms of access to education and health care", - "values": [ - "Indigenous peoples", - "Right to education", - "Right to health", - "Rights of the Child" - ] - }, - { - "text": "Accede to the Rome Statute of the International Criminal Court (ICC) and harmonise its national legislation with it, including the integration of the provisions to fully cooperate with the Court, and to investigate and prosecute genocide, crimes against humanity and crimes of war before their national courts ", - "values": [ - "International instruments", - "Justice" - ] - }, - { - "text": "Continue increasing the access of women to employment, participation in public life, education, housing and health ", - "values": [ - "Women's rights" - ] - }, - { - "text": "Strengthen measures to expand women's access to land and to microfinance and microcredit at low interest rates ", - "values": [ - "Right to land", - "Women's rights" - ] - }, - { - "text": "Strengthen further the links of cooperation and coordination with civil society as regards the promotion and protection of human rights", - "values": [ - "Civil society" - ] - }, - { - "text": "Implement temporary special measures, including quotas, to achieve gender equality in areas where women are underrepresented or disadvantaged and for women suffering from multiple discrimination, such as Roma women ", - "values": [ - "Minorities", - "Women's rights" - ] - }, - { - "text": "Continue efforts to provide attention to the most disadvantaged sectors", - "values": [ - "General" - ] - }, - { - "text": "Take all available measures to prevent all forms of violence against children and to bring cases of abuse to justice", - "values": [ - "Rights of the Child" - ] - }, - { - "text": "Demonstrate the Government's commitment to uphold international human rights standards by ensuring full respect for the rights of citizens to freedom of speech and peaceful assembly", - "values": [ - "Freedom of association and peaceful assembly", - "Freedom of opinion and expression" - ] - }, - { - "text": "Prohibit the use of solitary confinement for children within the criminal justice system", - "values": [ - "Detention", - "Rights of the Child" - ] - }, - { - "text": "Draft or amend national legislation to prevent incitement to hatred and attacks against all minority groups ", - "values": [ - "Minorities", - "Racial discrimination" - ] - }, - { - "text": "Continue developing the implementation of actions against any kind of discrimination for gender, ethnicity, skin colour, sexual orientation and gender identity, among others", - "values": [ - "Racial discrimination", - "Sexual Orientation and Gender Identity" - ] - }, - { - "text": "Respect the rights of persons living in the area of Fukushima, in particular of pregnant women and children, to the highest level of physical and mental health, notably by restoring the allowable dose of radiation to the 1 mSv/year limit, and by a continuing support to the evacuees and residents", - "values": [ - "Right to health", - "Rights of the Child", - "Women's rights" - ] - }, - { - "text": "Develop and implement, together with the Office of the United Nations High Commissioner for Human Rights, a training course on protecting the human rights of victims of human trafficking for representatives of law enforcement bodies, including those studying at the International Training Centre in Minsk \n", - "values": [ - "Human rights education and training", - "Trafficking" - ] - }, - { - "text": "Modify the Law on marriage and its provisions on conjugal authority, that infringe the principle of equality, by restricting rights such as to apply for bank credits or to acquire properties, for which the husband's written consent is required", - "values": [ - "Women's rights" - ] - }, - { - "text": "Continue improving the living standards of its people through guarantees of the broader implementation of economic, social and cultural rights ", - "values": [ - "ESC rights - general" - ] - }, - { - "text": "Put an end to surgical castration of detained perpetrators of sexual crimes, which is equivalent to degrading treatment under international law", - "values": [ - "Detention", - "Torture and other CID treatment" - ] - }, - { - "text": "Intensify efforts to submit national reports to the various treaty bodies", - "values": [ - "Treaty bodies" - ] - }, - { - "text": "Take measures to amend the Criminal Code to forbid the involvement of children from age 16 to 18 in prostitution ", - "values": [ - "Justice", - "Rights of the Child" - ] - }, - { - "text": "Continue efforts related to combating racist and religious hate speech", - "values": [ - "Racial discrimination" - ] - }, - { - "text": "Take steps to ensure that freedom of religion is respected ", - "values": [ - "Freedom of religion and belief" - ] - }, - { - "text": "Respect the Cuban people's right to self-determination and cease its actions of interference and hostility against Cuba ", - "values": [ - "Other" - ] - }, - { - "text": "Make the necessary legislative changes, including restricting the scope of the Public Order Act, to ensure the freedoms of association and expression are protected, and to ensure the police enforce these and other laws in a proportionate manner", - "values": [ - "Freedom of association and peaceful assembly", - "Freedom of opinion and expression" - ] - }, - { - "text": "Continue the efforts to reduce the illiteracy rate", - "values": [ - "Right to education" - ] - }, - { - "text": "Adopt specific measures to improve effectively the situation of children living in the streets of big cities and children with disabilities ", - "values": [ - "Disabilities", - "Rights of the Child" - ] - }, - { - "text": "Complete its international commitment by ratifying as a priority the International Covenant on Civil and Political Rights and the International Covenant on Economic, Social and Cultural Rights", - "values": [ - "CP rights - general", - "ESC rights - general", - "International instruments" - ] - }, - { - "text": "Review the News Media Law and the Printing and Publication Enterprise Law of 2014, in consultation with media representatives, in order to bring it in conformity with international standards regarding freedom of expression", - "values": [ - "Freedom of opinion and expression", - "Freedom of the press" - ] - }, - { - "text": "Continue to support the UPR as a mechanism for respectful dialogue and exchange", - "values": [ - "UPR process" - ] - }, - { - "text": "Elaborate programmes aimed at elimination of all forms of violence against women and adopt\nthe bill on domestic violence which is supposed to be tabled by 2010 ", - "values": [ - "Women's rights" - ] - }, - { - "text": "Continue its efforts to strengthen economic, social and cultural rights, particularly the rights of women, children and persons with disabilities", - "values": [ - "Disabilities", - "ESC rights - general", - "Rights of the Child", - "Women's rights" - ] - }, - { - "text": "Fulfil the conditions set forth in paragraph 17 of the national report, so as to be able to consider ratification of the International Convention for the Protection of All Persons from Enforced Disappearance, the Optional Protocol to the Convention on the Elimination of All Forms of Discrimination against Women and the Optional Protocol to the Convention against Torture", - "values": [ - "Detention", - "Enforced disappearances", - "International instruments", - "Torture and other CID treatment", - "Women's rights" - ] - }, - { - "text": "Continue implementing as effectively as possible measures aimed at combating trafficking and smuggling of migrants, including children, with a view to sexual exploitation, particularly concerning assistance to the victims ", - "values": [ - "Migrants", - "Rights of the Child", - "Trafficking" - ] - }, - { - "text": "Systematically and continually integrate a gender perspective in the follow-up process to the review.", - "values": [ - "UPR process", - "Women's rights" - ] - }, - { - "text": "Make progress in eradicating violence against women, stepping up actions such as awareness-raising campaigns and the creation of shelters, and implementing measures to contribute to the eradication of female genital mutilation and child marriage", - "values": [ - "Human rights education and training", - "Rights of the Child", - "Torture and other CID treatment", - "Women's rights" - ] - }, - { - "text": "Step up its efforts to prevent and combat domestic violence and to ensure that the perpetrators are promptly brought to justice", - "values": [ - "Rights of the Child", - "Women's rights" - ] - }, - { - "text": "Continue its efforts aimed at combating racism and racial discrimination and xenophobia", - "values": [ - "Racial discrimination" - ] - }, - { - "text": "Develop a comprehensive strategy to address the needs of refugees and internally displaced persons caused by the conflict, including measures to ensure access to the birth registration of all children born in Libya, with emphasis on asylum seekers from sub-Saharan Africa", - "values": [ - "Asylum-seekers - refugees", - "Internally displaced persons", - "Rights of the Child", - "Statelessness and the right to nationality" - ] - }, - { - "text": "Continue to closely monitor hate crime and discrimination cases, including on the Internet and social networks, based on the regular crime prevention strategies adopted by the Government", - "values": [ - "Racial discrimination" - ] - }, - { - "text": "Take the necessary legislative, civil and criminal measures to provide the appropriate protection to women, and children that are victims of sexual abuse ", - "values": [ - "Rights of the Child", - "Women's rights" - ] - }, - { - "text": "Develop health programmes in health-care centres and correctional and rehabilitation centres to accommodate all age groups and people with special needs", - "values": [ - "Right to health" - ] - }, - { - "text": "Recognize and respect the right of the Palestinian people to self-determination.", - "values": [ - "Other" - ] - }, - { - "text": "Update national laws to cover all forms of trafficking, and eliminate cross-border trafficking in persons and forced marriage", - "values": [ - "Trafficking" - ] - }, - { - "text": "Let the decision to grant or withhold bail remain a prerogative of the judiciary ", - "values": [ - "Justice" - ] - }, - { - "text": "Investigate all allegations of persecution based on gender and sexual orientation and that charges be brought against those behind these crimes", - "values": [ - "Sexual Orientation and Gender Identity" - ] - }, - { - "text": "Accept the request for a visit by the Special Rapporteur on the human right to safe drinking water and sanitation", - "values": [ - "Right to water and sanitation", - "Special procedures" - ] - }, - { - "text": "Develop an institutional programme in partnership with the Eritrean diaspora and local communities to develop programmes for production, infrastructure and social development, and eliminate the fee for residing outside of Eritrea ", - "values": [ - "Development" - ] - }, - { - "text": "Continue its efforts to realize the national development goals as stipulated in the country's Vision 2020 and in the Economic Development Poverty Reduction Strategy 2", - "values": [ - "Development", - "Poverty" - ] - }, - { - "text": "Implement fully its 1995 Constitution, including the freedoms of association, expression and assembly, for independent political parties, ethnic and religious groups and NGOs", - "values": [ - "Civil society", - "Freedom of association and peaceful assembly", - "Freedom of opinion and expression", - "Freedom of religion and belief", - "Minorities" - ] - }, - { - "text": "Protect independent journalists and the media against any intimidation or violence, including enforced disappearance", - "values": [ - "Enforced disappearances", - "Freedom of the press" - ] - }, - { - "text": "Demobilize child soldiers by assuring children serving with pro-government militias (forced or voluntary) are released and adequate resources allocated for disarmament, demobilization, reintegration, repatriation and other activities to halt the unlawful recruitment of children", - "values": [ - "International humanitarian law", - "Rights of the Child" - ] - }, - { - "text": "Maintain and enhance its development assistance programs designated to the developing countries", - "values": [ - "Development" - ] - }, - { - "text": "Review the reservation to article 26 of the Refugee Convention to authorize the free movement and residence of persons with recognized refugee status and to also extend this to asylum seekers ", - "values": [ - "Asylum-seekers - refugees", - "International instruments" - ] - }, - { - "text": "Ensure the realization of freedom of the press and the media, in line with ICCPR standards", - "values": [ - "Freedom of the press", - "International instruments" - ] - }, - { - "text": "Consider ratifying the Convention on the Prevention and Punishment of the Crime of Genocide", - "values": [ - "International humanitarian law", - "International instruments", - "Justice" - ] - }, - { - "text": "Strengthen the framework for the protection of refugees and facilitate their integration at the local level", - "values": [ - "Asylum-seekers - refugees" - ] - }, - { - "text": "Continue its focus on the eradication of poverty and in ensuring general well-being of its people.", - "values": [ - "Poverty" - ] - }, - { - "text": "Continue efforts to ensure that women fully participate in society", - "values": [ - "Women's rights" - ] - }, - { - "text": "Continue to improve the conditions of prisoners", - "values": [ - "Detention" - ] - }, - { - "text": "Formally establish a moratorium on the death penalty, with a view to abolishing it completely \n\n", - "values": [ - "Death penalty" - ] - }, - { - "text": "Allow OHCHR to strengthen its presence in Sri Lanka in order to reinforce its cooperation and monitoring given the particular serious human rights situation.", - "values": [ - "Technical assistance and cooperation" - ] - }, - { - "text": "Further strengthen the efforts to eliminate the worst forms of child labour, especially in the rural areas", - "values": [ - "Labour", - "Rights of the Child" - ] - }, - { - "text": "Adopt legal and administrative measures to ensure freedom of movement and other basic rights of refugees, in particular, apply appropriate exemption categories for persons with specific protection needs in order to allow their continued stay in urban centres and avoid forced relocation, avoiding family separations among refugees and asylum seekers", - "values": [ - "Asylum-seekers - refugees", - "Freedom of movement" - ] - }, - { - "text": "Guarantee the rights of the Batwa to the enjoyment of natural resources and provide them with adequate compensation in cases of expropriation", - "values": [ - "Indigenous peoples", - "Right to land" - ] - }, - { - "text": "Continue its effort in the active implementation of the National Strategy for the Fight against Human Trafficking and Illegal Migration ", - "values": [ - "Trafficking" - ] - }, - { - "text": "Continue to intensify efforts to stop human trafficking", - "values": [ - "Trafficking" - ] - }, - { - "text": "Undertake measures to eliminate stigmatization and discrimination against children born out of wedlock by providing legal certainty in respect of their family name", - "values": [ - "Rights of the Child" - ] - }, - { - "text": "Ensure that murder of women in Ciudad Juarez are fully clarified, that those responsible and their accomplices, including civil servants who might have not conducted investigations, are brought to justice and that effective measures are taken to prevent such crimes in Ciudad Juarez", - "values": [ - "Extrajudicial executions", - "Women's rights" - ] - }, - { - "text": "Strengthen the national mechanisms to combat human trafficking and support victims and their rehabilitation", - "values": [ - "Trafficking" - ] - }, - { - "text": "Adopt necessary measures to guarantee the full enjoyment of the rights to freedom of assembly and association, and should not selectively curtail the full enjoyment of these rights, and by reforming the provisions contained in the Public Order and Security Act and more specifically in the Criminal Procedure and Evidence Act, which occasionally have hindered the work of human rights defenders. Rescind the provision contained in Section 121 of the Criminal Procedure Code that can extend to 7 days (in addition to the first 48 hours) the time that security forces can keep a person detained before bringing charges ", - "values": [ - "Freedom of association and peaceful assembly", - "Human rights defenders", - "Justice" - ] - }, - { - "text": "Ratify the Agreement on Privileges and Immunities to the International Criminal Court", - "values": [ - "International instruments", - "Justice" - ] - }, - { - "text": "Continue implementation of the National Strategy for Poverty Eradication", - "values": [ - "Poverty" - ] - }, - { - "text": "Ensure that all cases of gender-based violence are properly investigated, the perpetrators are brought to justice and that its victims have better access to justice, health and social services and State support", - "values": [ - "Justice", - "Right to health", - "Women's rights" - ] - }, - { - "text": "Deal positively with the requests for visits to Iraq by Special Rapporteurs and Representatives of the Secretary General", - "values": [ - "Special procedures" - ] - }, - { - "text": "Conduct a review of the personal status law and other relevant laws, which will remove the provisions that are discriminatory towards women, such as those not granting them guardianship of their children, disabling them from travelling on their own with their children or not allowing them to transfer their citizenship to their children", - "values": [ - "Rights of the Child", - "Statelessness and the right to nationality", - "Women's rights" - ] - }, - { - "text": "Increase its efforts to achieve concrete equality between women and men in the professional framework ", - "values": [ - "Women's rights" - ] - }, - { - "text": "Annul its illegitimate decision to annex the occupied Syrian Golan and end all settlement activities therein.", - "values": [ - "Right to land" - ] - }, - { - "text": "Take measures to improve prison conditions", - "values": [ - "Detention" - ] - }, - { - "text": "Take effective measures to combat violence against women.", - "values": [ - "Women's rights" - ] - }, - { - "text": "Issue a standing invitation for the special procedures, in particular, granting access for the requested visits ", - "values": [ - "Special procedures" - ] - }, - { - "text": "Put in place a comprehensive strategy with a result-oriented approach to eliminate stereotypes that discriminate against women in the family, the workplace, in politics and in collaboration with civil society", - "values": [ - "Civil society", - "Women's rights" - ] - }, - { - "text": "Guarantee immediate and unhindered humanitarian access to populations in need throughout the country and ensure the protection of the civilian population, including of persons in vulnerable situations", - "values": [ - "Other" - ] - }, - { - "text": "Abolish the death penalty and sign and ratify ICCPR-OP-2 ", - "values": [ - "Death penalty", - "International instruments" - ] - }, - { - "text": "Increase efforts to prevent trafficking in women and girls and provide support to victims effectively by implementing the integrated National Plan of Action against Trafficking in Human Beings and fully enforcing the legislation on trafficking ", - "values": [ - "Rights of the Child", - "Trafficking", - "Women's rights" - ] - }, - { - "text": "Include domestic workers in the new draft labour law for the private sector, and ensure comprehensive protection, including a weekly rest day, timely payment of wages in full and limits to working hours ", - "values": [ - "Labour" - ] - }, - { - "text": "Undertake effective measures to improve prison conditions ", - "values": [ - "Detention" - ] - }, - { - "text": "Continue the consolidation of social policies within the framework of the National Strategy for Children and Adolescents to claim the rights of children and adolescents who are in a situation of extreme vulnerability ", - "values": [ - "Rights of the Child" - ] - }, - { - "text": "Continue its efforts to eliminate poverty, especially in remote regions", - "values": [ - "Poverty" - ] - }, - { - "text": "Continue the implementation of concrete measures to realize the United Nations Millennium Development Goals, to strengthen cooperation with international partners ", - "values": [ - "Development", - "Technical assistance and cooperation" - ] - }, - { - "text": "Consider the ratification of the new Optional Protocol to the Convention on the Rights of the Child on a communications procedure ", - "values": [ - "International instruments", - "Rights of the Child" - ] - }, - { - "text": "Continue efforts to maintain harmony among ethnic and religious groups in society", - "values": [ - "Freedom of religion and belief" - ] - }, - { - "text": "Become a party to the Convention on the Rights of the Child", - "values": [ - "International instruments", - "Rights of the Child" - ] - }, - { - "text": "Enhance measures to combat discrimination against women in all sectors of society", - "values": [ - "Women's rights" - ] - }, - { - "text": "Ratify the Convention on the Elimination of All forms of Discrimination against Women and the Convention on the Rights of the Child and ensure their full implementation", - "values": [ - "International instruments", - "Rights of the Child", - "Women's rights" - ] - }, - { - "text": "Intensify its efforts in fighting against discrimination and intolerance, especially towards Muslims, immigrants and people of African descent", - "values": [ - "Freedom of religion and belief", - "Migrants", - "Minorities", - "Racial discrimination" - ] - }, - { - "text": "Increase public awareness measures aimed at discouraging sexual abuse and violence against women", - "values": [ - "Women's rights" - ] - }, - { - "text": "Consider the ratification of all core human rights conventions", - "values": [ - "International instruments" - ] - }, - { - "text": "Redouble efforts to secure support from the United Nations and international organizations in establishing an independent national human rights institution in line with the Paris Principles", - "values": [ - "National Human Rights Institution" - ] - }, - { - "text": "Take the necessary measures in order to reinforce the campaign against discriminatory practices and violence against women.", - "values": [ - "Human rights education and training", - "Women's rights" - ] - }, - { - "text": "Increase the necessary resources to the service of the Coroner to allow him to carry out impartial, swift and effective investigations on all the deaths linked to the conflict in Northern Ireland", - "values": [ - "Justice" - ] - }, - { - "text": "Take more effective measures to ensure that the perpetrators of acts of discrimination, hate crimes and xenophobia are adequately deterred and sanctioned ", - "values": [ - "Racial discrimination" - ] - }, - { - "text": "Implement training programs in the field of human rights for the police and the forces of order, especially directed at improving the treatment of asylum-seekers and immigrants in an irregular situation and consider ratifying the ICRMW of 1990 ", - "values": [ - "Asylum-seekers - refugees", - "Human rights education and training", - "International instruments", - "Labour", - "Migrants" - ] - }, - { - "text": "Request technical assistance from the international community in order to identify useful and good practices for the realization of economic and social rights ", - "values": [ - "ESC rights - general", - "Technical assistance and cooperation" - ] - }, - { - "text": "Take all necessary steps to implement the laws protecting freedom of expression and press, and effectively prevent authorities from violating these rights ", - "values": [ - "Freedom of opinion and expression", - "Freedom of the press" - ] - }, - { - "text": "Continue preventing and combating violence against women, including domestic violence ", - "values": [ - "Rights of the Child", - "Women's rights" - ] - }, - { - "text": "Take legislative and administrative measures to end defamation of religion ", - "values": [ - "Freedom of opinion and expression", - "Freedom of religion and belief" - ] - }, - { - "text": "Sign and ratify the second Optional Protocol to ICCPR", - "values": [ - "Death penalty", - "International instruments" - ] - }, - { - "text": "Continue its efforts to investigate, prosecute and convict trafficking offenders", - "values": [ - "Trafficking" - ] - }, - { - "text": "Continue efforts to ensure that national laws comply with its international human rights obligations", - "values": [ - "International instruments" - ] - }, - { - "text": "Guarantee access to health services for those affected by the Fukushima nuclear accident, as well as for the generations of survivors of the use of nuclear weapons", - "values": [ - "Right to health" - ] - }, - { - "text": "Encourage women's political participation and increase representation of women in decision-making", - "values": [ - "Women's rights" - ] - }, - { - "text": "Step up efforts in formulating protocols to implement the indigenous peoples' right to free, prior and informed consent", - "values": [ - "Indigenous peoples" - ] - }, - { - "text": "Develop a national plan to combat discrimination, including through training for law enforcement agents and legal professionals and a campaign to raise public awareness", - "values": [ - "Human rights education and training" - ] - }, - { - "text": "Consider the repeal of those rules that discriminate against women on the basis of their civil status, religious affiliation, place of residence or membership of any ethnic minority", - "values": [ - "Freedom of religion and belief", - "Minorities", - "Women's rights" - ] - }, - { - "text": "Adopt specific laws that prohibit discrimination and protect girls, children with disabilities and children with HIV/AIDS, undertake, in addition, awareness-raising campaigns to promote the dignity and rights of children with albinism, twins, children with disabilities and children accused of witchcraft, in order to combat the abandonment and/or execution, of which they are victims", - "values": [ - "Disabilities", - "HIV - Aids", - "Human rights education and training", - "Rights of the Child", - "Women's rights" - ] - }, - { - "text": "Ratify the CED", - "values": [ - "Enforced disappearances", - "International instruments" - ] - }, - { - "text": "Include in its national legislation a clear definition of child pornography and review legislation with a view to criminalizing child prostitution, including the adoption of a victim-oriented approach towards children victims of sexual exploitation", - "values": [ - "Rights of the Child" - ] - }, - { - "text": "Submit to Parliament for ratification at the earliest opportunity the International Convention on the Rights of Persons with Disabilities, the International Convention for the Protection of All Persons from Enforced Disappearance and the Optional Protocol to the Convention against Torture and Other Cruel, Inhuman or Degrading Treatment or Punishment, and to transpose in 2008 the provisions of the Rome Statute of the International Criminal Court", - "values": [ - "Detention", - "Disabilities", - "Enforced disappearances", - "International instruments", - "Justice", - "Torture and other CID treatment" - ] - }, - { - "text": "Finalize the draft law amending certain provisions of the 1963 citizenship act to enable Bahraini women married to non-Bahraini men to confer their nationality on their children without any conditions", - "values": [ - "Statelessness and the right to nationality", - "Women's rights" - ] - }, - { - "text": "Consider the ratification of ILO Convention 169", - "values": [ - "Indigenous peoples", - "International instruments" - ] - }, - { - "text": "Take necessary measures to deal with the situation of women in prisons and protect them against all forms of violence, especially against harassment and sexual violence", - "values": [ - "Detention", - "Women's rights" - ] - }, - { - "text": "Continue upholding high standards in ensuring the right to vote, also in the future", - "values": [ - "Elections" - ] - }, - { - "text": "Take additional measures in order to fully implement the national legislation securing gender equality", - "values": [ - "Women's rights" - ] - }, - { - "text": "Continue assessing invitations to human rights special procedures as a measure to strengthen cooperation in areas to be determined by the authorities ", - "values": [ - "Special procedures" - ] - }, - { - "text": "Consider ratifying the fundamental ILO Conventions ", - "values": [ - "International instruments", - "Labour" - ] - }, - { - "text": "Ratify OP-CAT", - "values": [ - "Detention", - "International instruments", - "Torture and other CID treatment" - ] - }, - { - "text": "Ratify the Convention on the Rights of Persons with Disabilities , which Ireland signed on 29 March 2007", - "values": [ - "Disabilities", - "International instruments" - ] - }, - { - "text": "Strengthen efforts to combat racial discrimination, especially against the Roma and Serb minorities, in particular in the areas of education, employment, housing, citizenship and political participation ", - "values": [ - "Minorities", - "Racial discrimination", - "Statelessness and the right to nationality" - ] - }, - { - "text": "Implement effectively the human rights to drinking water and sanitation as embodied in the Constitution", - "values": [ - "Right to water and sanitation" - ] - }, - { - "text": "Decriminalize press crimes and prevent arrests of individuals for expressing opinions including through social media ", - "values": [ - "Freedom of opinion and expression" - ] - }, - { - "text": "Hold those responsible for grave, widespread and systematic violations of human rights, including crimes against humanity, accountable for their depraved actions", - "values": [ - "Justice" - ] - }, - { - "text": "Adopt measures that all cases of violence against women, including sorcery-related and sexual violence are duly investigated and the perpetrators prosecuted and punished, and to ensure a wide availability of assistance and protection programs for the victims ", - "values": [ - "Women's rights" - ] - }, - { - "text": "Increase efforts in the process of technical support and consultation services in order to support the reforms in the area of human rights in order to align them with international standards", - "values": [ - "General" - ] - }, - { - "text": "The Children's Law addresses child labour and exploitation, as does the Anti-Human Trafficking Act. In 2014, Liberia also launched a national policy to fight human trafficking. Liberia is committed to abolishing the worst forms of child labour", - "values": [ - "Labour", - "Rights of the Child", - "Trafficking" - ] - }, - { - "text": "Restrict the application and to consider the possibility of abolition of the death penalty", - "values": [ - "Death penalty" - ] - }, - { - "text": "Continue taking steps to prevent violence against children, child labour and trafficking", - "values": [ - "Labour", - "Rights of the Child", - "Trafficking" - ] - }, - { - "text": "Undertake a comprehensive study of the repercussions of the ban on facial coverings in public spaces for immigrant women and the effect on their access to public services", - "values": [ - "Freedom of religion and belief", - "Migrants", - "Women's rights" - ] - }, - { - "text": "To continue Bolivia's efforts to extradite all persons charged with human rights violations and crimes against humanity.", - "values": [ - "Justice" - ] - }, - { - "text": "Implement the recently adopted rules on the treatment of women prisoners and non-custodial measures for women offenders, otherwise known as the Bangkok Rules, and seek necessary support from such relevant agencies as the United Nations Office on Drugs and Crime (UNODC) and OHCHR ", - "values": [ - "Detention", - "Technical assistance and cooperation", - "Women's rights" - ] - }, - { - "text": "Respect freedom of religion, and assure a fair and transparent trial for members of the Baha'i faith, in full compliance with the commitments undertaken as a State party to the implementation ICCPR and other human rights instruments", - "values": [ - "Freedom of religion and belief", - "International instruments", - "Justice", - "Minorities" - ] - }, - { - "text": "Take the necessary steps to eliminate discrimination against women in all spheres of society, including making legislative amendments", - "values": [ - "Women's rights" - ] - }, - { - "text": "Continue to guarantee the rights of ethnic minorities on an equal footing and in accordance with the law", - "values": [ - "Minorities" - ] - }, - { - "text": "Encourage the adoption in the short term of a bill on the implementation of the Rome Statute", - "values": [ - "International instruments", - "Justice" - ] - }, - { - "text": "Take measures to guarantee that all outstanding allegations of crimes are investigated and to ensure that perpetrators of human rights violations are brought to justice in proceedings which meet with international standards", - "values": [ - "Justice" - ] - }, - { - "text": "Accede to the Optional Protocols to the Convention against Torture, to the International Covenant on Economic, Social and Cultural Rights and to the International Convention for the Protection of All Persons Enforced Disappearance, as recommended by certain treaty bodies ", - "values": [ - "Detention", - "ESC rights - general", - "Enforced disappearances", - "International instruments", - "Torture and other CID treatment", - "Treaty bodies" - ] - }, - { - "text": "Make efforts for early ratification of the Convention on the Rights of Persons with Disabilities ", - "values": [ - "Disabilities", - "International instruments" - ] - }, - { - "text": "Continue to positively consider the accession to the International Covenant on Civil and Political Rights (1966)", - "values": [ - "CP rights - general", - "International instruments" - ] - }, - { - "text": "Take further measures to combat all forms of discrimination against the Roma community and ensure equal opportunities for their enjoyment of economic, social and cultural rights, including education, health, employment and housing", - "values": [ - "ESC rights - general", - "Minorities", - "Racial discrimination" - ] - }, - { - "text": "Address cases of statelessness in the new Constitution's drafting process ", - "values": [ - "Statelessness and the right to nationality" - ] - }, - { - "text": "Guarantee freedom of religion or belief and eliminate all forms of discrimination against people belonging to religious minorities, in particular in the field of religious education", - "values": [ - "Freedom of religion and belief", - "Minorities", - "Racial discrimination" - ] - }, - { - "text": "Develop its third human rights action plan to guide its policy direction and ensure the implementation of programmes for an even more robust promotion and protection of human rights", - "values": [ - "General" - ] - }, - { - "text": "Consider the recommendation of the Committee against Torture with regard to ratification of the Second Optional Protocol to the International Covenant on Civil and Political Rights, aiming at the abolition of the death penalty", - "values": [ - "Death penalty", - "International instruments", - "Treaty bodies" - ] - }, - { - "text": "Adopt the Act and the comprehensive national plan to combat trafficking in persons", - "values": [ - "Trafficking" - ] - }, - { - "text": "Facilitate citizens' access to judicial appeal in cases of restrictions of freedom of assembly", - "values": [ - "Freedom of association and peaceful assembly" - ] - }, - { - "text": "Continue strengthening its successful education policies as well as the social protection programmes being implemented in order to provide the highest quality of life and well-being to its people ", - "values": [ - "Right to education" - ] - }, - { - "text": "Continue its efforts to provide minority and migrant boys and girls the best possible access to the general education that benefits all citizens of the country", - "values": [ - "Migrants", - "Minorities", - "Right to education", - "Rights of the Child" - ] - }, - { - "text": "Strengthen the measures aimed at reducing cases of racial discrimination, both direct and indirect, and investigate speech inciting racial hatred and speech inciting racial violence", - "values": [ - "Racial discrimination" - ] - }, - { - "text": "Ratify all core international instruments on human rights, in particular ICESCR, CEDAW, the Convention on the Rights of the Child", - "values": [ - "ESC rights - general", - "International instruments", - "Rights of the Child", - "Women's rights" - ] - }, - { - "text": "Repeal laws criminalizing consensual, same-sex relationships between adults", - "values": [ - "Sexual Orientation and Gender Identity" - ] - }, - { - "text": "Take all possible measures to abolish the practice of witch camps", - "values": [ - "Women's rights" - ] - }, - { - "text": "Seek the assistance of the local office of the OHCHR to train the officials of its judiciary and the law enforcement body on human rights issues", - "values": [ - "Human rights education and training", - "Justice", - "Technical assistance and cooperation" - ] - }, - { - "text": "Further work to improve women's political participation, educational opportunities and status in marriage and to reduce the maternal mortality rate.", - "values": [ - "Women's rights" - ] - }, - { - "text": "Prosecute the perpetrators of tortures, extrajudicial executions and other serious violations of human rights committed in Guantanamo, Abu Ghraib, Bagram, the NAMA and BALAD camps, and those carried out by the Joint Special Operations Command and the CIA ", - "values": [ - "Detention", - "Extrajudicial executions", - "Torture and other CID treatment" - ] - }, - { - "text": "Adopt the necessary measures to abolish the death penalty and establish a moratorium on executions", - "values": [ - "Death penalty" - ] - }, - { - "text": "Implement educational measures from early childhood rejecting all types of domestic violence and promote the reporting of cases of domestic violence ", - "values": [ - "Rights of the Child", - "Women's rights" - ] - }, - { - "text": "Strengthen its efforts to abolish the death penalty in law", - "values": [ - "Death penalty" - ] - }, - { - "text": "Introduce comprehensive legislation to protect the rights of migrant domestic workers and ensure its effective implementation", - "values": [ - "Labour", - "Migrants" - ] - }, - { - "text": "Adopt more effective measures ensuring that all children throughout the Lithuanian territory enjoy all rights, without discrimination, in line with article 2 of the Convention on the Rights of the Child", - "values": [ - "International instruments", - "Rights of the Child" - ] - }, - { - "text": "Improve detention conditions in the correctional institutions and temporary detention centers of asylum seekers ", - "values": [ - "Asylum-seekers - refugees", - "Detention" - ] - }, - { - "text": "Ensure the protection of human rights defenders and journalists as well as efficient and impartial investigation of threats and attacks targeting them", - "values": [ - "Freedom of the press", - "Human rights defenders" - ] - }, - { - "text": "Incorporate in the national legislation the provisions of the Convention on the Rights of the Child", - "values": [ - "International instruments", - "Rights of the Child" - ] - }, - { - "text": "Continue to promote women\u2019s rights, especially in rural areas", - "values": [ - "Women's rights" - ] - }, - { - "text": "Adhere to the International Convention on the Protection of the Rights of All Migrant Workers and Members of Their Families", - "values": [ - "International instruments", - "Labour", - "Migrants" - ] - }, - { - "text": "Ratify CRPD, which was signed by the Democratic People's Republic of Korea in July 2013", - "values": [ - "Disabilities", - "International instruments" - ] - }, - { - "text": "Maintain its effective protection for the family as the natural and fundamental unit of the society ", - "values": [ - "Other" - ] - }, - { - "text": "Strengthen measures to guarantee the right to an adequate standard of living to indigenous peoples and peasant communities", - "values": [ - "Indigenous peoples" - ] - }, - { - "text": "Take concrete measures to eliminate discriminatory practices against women, and to combat domestic violence", - "values": [ - "Rights of the Child", - "Women's rights" - ] - }, - { - "text": "Take measures to improve the monitoring, identification and care of unaccompanied minors who arrive in the country", - "values": [ - "Migrants", - "Rights of the Child" - ] - }, - { - "text": "Strengthen its efforts to ensure access to education - and to health care - for all its citizens, including those with disabilities, regardless of ethnicity, religion, tribal affiliation or economic status.", - "values": [ - "Right to education", - "Right to health" - ] - }, - { - "text": "Consider reviewing its legislation on abortion in order to take into account situations where pregnancy is the result of rape or incest, or when the pregnant woman's life is in danger", - "values": [ - "Women's rights" - ] - }, - { - "text": "Continue its efforts towards peace and national reconciliation", - "values": [ - "Justice" - ] - }, - { - "text": "Consider establishing a national human rights institution in conformity with the Paris Principles", - "values": [ - "National Human Rights Institution" - ] - }, - { - "text": "Continue to take into account the judicial principles as a complimentary measure to international standards and documenting these measures", - "values": [ - "Justice" - ] - }, - { - "text": "Improve the conditions of migrants' detention centres, especially with regard to the medical and psychological attention, as well as contact with the outside", - "values": [ - "Detention", - "Migrants" - ] - }, - { - "text": "Lift reservations to CEDAW to ensure greater participation by women in public life, non-discrimination and effective protection against violence against women", - "values": [ - "International instruments", - "Statelessness and the right to nationality", - "Women's rights" - ] - }, - { - "text": "Ensure that criminal defamation law is not used to silence critics, and to protect journalists' sources and whistle-blowers", - "values": [ - "Freedom of opinion and expression", - "Freedom of the press" - ] - }, - { - "text": "Guarantee access to prompt and effective investigation by an independent and impartial body for defence lawyers alleging that their access to their clients has been unlawfully obstructed", - "values": [ - "Justice" - ] - }, - { - "text": "Continue its efforts to combat trafficking in persons, especially women and children", - "values": [ - "Rights of the Child", - "Trafficking", - "Women's rights" - ] - }, - { - "text": "Repeal the Armed Forces Special Powers Act or adopt the negotiated amendments to it that would address the accountability of security personnel, the regulation concerning detentions as well as victims' right to appeal in accordance to international standards ", - "values": [ - "Detention", - "Justice" - ] - }, - { - "text": "Sign and ratify OPCAT and establish a national preventive mechanism", - "values": [ - "Detention", - "International instruments", - "Torture and other CID treatment" - ] - }, - { - "text": "Amend article 11, 17 and 42 of the current NGO law 84 of 2002 so as to ensure that NGOs activities and activities of all human rights defenders not be inhibited or their ability to raise finance be impeded", - "values": [ - "Civil society" - ] - }, - { - "text": "Establish and support a national human rights institution in conformity with the Paris Principles", - "values": [ - "National Human Rights Institution" - ] - }, - { - "text": "Continue with the inclusive approach towards children with disabilities, especially in education, as well as increase awareness and training efforts for companies and service providers on the treatment of persons with disabilities and their access to all places, for example, that of persons with guide-dogs", - "values": [ - "Disabilities", - "Human rights education and training", - "Right to education", - "Rights of the Child" - ] - }, - { - "text": "Consider assigning full authority to a body to supervise issues relevant to the protection of unaccompanied immigrant minors in coordination with other agencies", - "values": [ - "Migrants", - "Rights of the Child" - ] - }, - { - "text": "Adopt measures aimed at the identification of victims of human trafficking and provide them with the protection and rehabilitation ", - "values": [ - "Trafficking" - ] - }, - { - "text": "Guarantee in equal fashion for both its national citizens and foreigners residing in Sweden the highest level of health possible, without any form of discrimination, pursuant to its international obligations, particularly those set out in ICESCR ", - "values": [ - "International instruments", - "Migrants", - "Right to health" - ] - }, - { - "text": "Strengthen efforts on youth development and empowerment", - "values": [ - "Development" - ] - }, - { - "text": "Allow access to the country by the Commission of Inquiry", - "values": [ - "Other" - ] - }, - { - "text": "Establish detention facilities for juvenile detainees ", - "values": [ - "Detention", - "Rights of the Child" - ] - }, - { - "text": "Introduce more careful approaches to the questions related to Roma being moved from their camps, as well as further efforts for their integration into French society", - "values": [ - "Minorities" - ] - }, - { - "text": "Ensure prompt and effective investigation of intimidation and threats against journalists ", - "values": [ - "Freedom of the press" - ] - }, - { - "text": "Assess the implementation of the National Action Plan to Combat Female Genital Mutilation/Cutting", - "values": [ - "Rights of the Child", - "Torture and other CID treatment", - "Women's rights" - ] - }, - { - "text": "Comply with its obligations under the ICCPR, particularly by abolishing the penalty of detention for offences of the press", - "values": [ - "Freedom of the press", - "International instruments" - ] - }, - { - "text": "Promote further good practices of social protection and the realization of the right to education through cooperation and experience-sharing with relevant international organizations and countries advanced in the education sphere ", - "values": [ - "Right to education" - ] - }, - { - "text": "Ratify the Rome Statute, which Cote d'Ivoire signed, and transcribe its provisions into national law ", - "values": [ - "International instruments", - "Justice" - ] - }, - { - "text": "Promptly ratify the Optional Protocol to the Convention on the Rights of Persons with Disabilities", - "values": [ - "Disabilities", - "International instruments" - ] - }, - { - "text": "Implement measures to recognize and protect human rights defenders, including those defending the rights of the lesbian, gay, bisexual, transsexual and intersex population", - "values": [ - "Human rights defenders", - "Sexual Orientation and Gender Identity" - ] - }, - { - "text": "Conduct investigations of enforced disappearances and ratify the Convention relative thereto", - "values": [ - "Enforced disappearances", - "International instruments" - ] - }, - { - "text": "Take the necessary concrete steps to facilitate a visit by the UN High Commissioner for Human Rights as soon as possible", - "values": [ - "Technical assistance and cooperation" - ] - }, - { - "text": "Ratify the Optional Protocol to the International Covenant on Economic, Social and Cultural Rights (ICESCR)", - "values": [ - "ESC rights - general", - "International instruments" - ] - }, - { - "text": "The Tunisian authorities are committed to following up and implementing the recommendations made by the two Special Rapporteurs following their visits in order to benefit from their experience and assistance, especially in reviewing relevant Tunisian legislation", - "values": [ - "Special procedures" - ] - }, - { - "text": "Continue taking the necessary steps to achieve universal primary education", - "values": [ - "Right to education" - ] - }, - { - "text": "Ratify the Second Optional Protocol to the International Covenant on Civil and Political Rights, aiming at the abolition of the death penalty, and in the meantime, establish a moratorium on execution", - "values": [ - "Death penalty", - "International instruments" - ] - }, - { - "text": "Continue the efforts on the progress towards the abolishment of the death penalty, based on the Department of Justice's review of how it is being applied in the country", - "values": [ - "Death penalty" - ] - }, - { - "text": "Continue applying measures to improve the rights of persons with disabilities, in particular through the implementation of the policy on disability 2016-2020", - "values": [ - "Disabilities" - ] - }, - { - "text": "There is full complementarity between the Rome Statute and the Crimes Decree, and Fiji commits to keeping current with amendments to the Rome Statute.", - "values": [ - "International instruments", - "Justice" - ] - }, - { - "text": "Ratify the Optional Protocol to the Convention on the Rights of Child on the involvement of children in armed conflict", - "values": [ - "International humanitarian law", - "International instruments", - "Rights of the Child" - ] - }, - { - "text": "Further strengthen human rights, particularly economic, social and cultural rights for its people, for which international cooperation and solidarity are important", - "values": [ - "ESC rights - general", - "Technical assistance and cooperation" - ] - }, - { - "text": "Establish a national mechanism for the prevention of torture ", - "values": [ - "Detention", - "Torture and other CID treatment" - ] - }, - { - "text": "End construction of, and dismantle the already built, illegal separation wall", - "values": [ - "Freedom of movement" - ] - }, - { - "text": "Ratify CAT as well as the Optional Protocol to the Convention against Torture and Other Cruel, Inhuman or Degrading Treatment or Punishment (OP-CAT) ", - "values": [ - "Detention", - "International instruments", - "Torture and other CID treatment" - ] - }, - { - "text": "Continue taking appropriate measures to provide a healthy and safe environment for its citizens", - "values": [ - "General" - ] - }, - { - "text": "Establish government-coordinated measures aimed at prevention of sexual abuse of children", - "values": [ - "Rights of the Child" - ] - }, - { - "text": "Implement the recently approved new Migrants Law and its human rights perspective on the migration issue", - "values": [ - "Migrants" - ] - }, - { - "text": "Implement genuine measures ensuring truly independent judiciary, including establishing transparent procedures and criteria regarding the appointment and dismissal of judges and the use of disciplinary measures ", - "values": [ - "Justice" - ] - }, - { - "text": "Guarantee the independence of various human rights and anti-corruption institutions ", - "values": [ - "Corruption" - ] - }, - { - "text": "Engage in active awareness-raising policy and systematically condemn racist and xenophobic violence ", - "values": [ - "Human rights education and training", - "Racial discrimination" - ] - }, - { - "text": "Consider allocating adequate amounts of its available resources for social services and assistance, and continue stepping up efforts to combat poverty, especially in rural areas", - "values": [ - "Poverty" - ] - }, - { - "text": "Confirm its progress relating to the death penalty by definitively abolishing the death penalty and by ratifying the Second Optional Protocol to ICCPR ", - "values": [ - "Death penalty", - "International instruments" - ] - }, - { - "text": "Intensify its efforts to fight against discrimination and intolerance, particularly against Muslims, immigrants and people of African descent, and encourage senior Government officials and politicians to take a clear position against racist or xenophobic political discourse ", - "values": [ - "Freedom of religion and belief", - "Migrants", - "Minorities", - "Racial discrimination" - ] - }, - { - "text": "Redouble its efforts to overcome the hurdles of racial discrimination and intolerance ", - "values": [ - "Racial discrimination" - ] - }, - { - "text": "Take steps to address reported allegations of child and early and forced marriages", - "values": [ - "Rights of the Child", - "Women's rights" - ] - }, - { - "text": "Respect freedom of expression and religion and non-stigmatization of some sectors of society in combating terrorism ", - "values": [ - "Counter-terrorism" - ] - }, - { - "text": "Follow through on its stated intent to amend its penal code with provisions to prohibit the harmful practice of female genital mutilation ", - "values": [ - "Rights of the Child", - "Torture and other CID treatment", - "Women's rights" - ] - }, - { - "text": "Consider ratification of the Convention against Transnational Organized Crime and its Palermo Protocol ", - "values": [ - "International instruments", - "Public security" - ] - }, - { - "text": "Sign and ratify the Optional Protocol to ICESCR and the Optional Protocol to the Convention on the Rights of the Child on a communications procedure ", - "values": [ - "ESC rights - general", - "International instruments", - "Rights of the Child" - ] - }, - { - "text": "Take necessary measures to enable women to exercise their rights without harassment, coercion, and discrimination ", - "values": [ - "Women's rights" - ] - }, - { - "text": "Ensure that adequate resources are made available to enhance access to counselling and related services for victims of domestic and sexual violence", - "values": [ - "Rights of the Child", - "Women's rights" - ] - }, - { - "text": "Organize awareness-raising campaigns to combat all forms of discrimination including those based on gender, ethnicity, sexual orientation or gender identity", - "values": [ - "Human rights education and training", - "Racial discrimination", - "Sexual Orientation and Gender Identity", - "Women's rights" - ] - }, - { - "text": "The reservation of Ireland to Article 19.2 of the International Covenant on Civil and Political Rights, concerning the licensing of broadcasting enterprises, will be withdrawn", - "values": [ - "Freedom of opinion and expression", - "Freedom of the press" - ] - }, - { - "text": "Improve the operational and financial performance of water supply enterprises to increase water safety and quality", - "values": [ - "Right to water and sanitation" - ] - }, - { - "text": "Continue its efforts to combat trafficking in persons, including by strengthening the legal framework and ensuring the safety and welfare of victims of trafficking", - "values": [ - "Trafficking" - ] - }, - { - "text": "Continue with the implementation of the recommendations of the OHCHR office in Colombia, according to their pertinence to the national reality. ", - "values": [ - "Technical assistance and cooperation" - ] - }, - { - "text": "Open a credible and independent process for investigating the deaths and the events surrounding the March 2009 military coup, as called for by the Special Rapporteur on extrajudicial, summary or arbitrary executions and the Special Rapporteur on freedom of opinion and expression", - "values": [ - "Extrajudicial executions", - "Freedom of opinion and expression", - "Justice", - "Special procedures" - ] - }, - { - "text": "Ensure that police officers having committed acts of torture of illtreatment be prosecuted and punished appropriately ", - "values": [ - "Human rights violations by state agents", - "Torture and other CID treatment" - ] - }, - { - "text": "Fully cooperate with the Independent Expert on the situation of human rights in Sudan ", - "values": [ - "Special procedures" - ] - }, - { - "text": "Adopt and implement a national plan to combat HIV/AIDS, with an emphasis on prevention", - "values": [ - "Human rights defenders" - ] - }, - { - "text": "Widen health care to vulnerable groups, in particular women of minority groups", - "values": [ - "Minorities", - "Women's rights" - ] - }, - { - "text": "Ratify the Second Optional Protocol to the ICCPR, aiming at the abolition of the death penalty", - "values": [ - "Death penalty", - "International instruments" - ] - }, - { - "text": "Review its legislation and practice with a view to ensuring effective access to asylum procedure and upholding the principle of non-refoulement.", - "values": [ - "Asylum-seekers - refugees" - ] - }, - { - "text": "Enable independent NGOs, including international human rights organisations to freely register and to operate in accordance with international law and standards ", - "values": [ - "Civil society", - "Freedom of association and peaceful assembly" - ] - }, - { - "text": "Further strengthen measures to combat poverty, while paying particular attention to persons belonging to vulnerable groups, such as women, children, the elderly and people in rural areas", - "values": [ - "Poverty", - "Rights of the Child", - "Women's rights" - ] - }, - { - "text": "Undertake a revision of the National Human Rights Commission's independence, including its economic independence, in order to bring the Commission's legal foundation de facto into compliance with the Paris Principles", - "values": [ - "National Human Rights Institution" - ] - }, - { - "text": "Remove all exceptions that allow marriage under the age of 18 years", - "values": [ - "Rights of the Child" - ] - }, - { - "text": "Ensure that the justice system has the necessary resources to carry out an independent, impartial and expeditious trial of the December 1982 murders", - "values": [ - "Justice" - ] - }, - { - "text": "Build upon developments in Sarajevo Canton police regarding training, coordination and awareness-raising in tackling discrimination of LGBT persons and implement these practices throughout the judiciary and the police", - "values": [ - "Human rights education and training", - "Sexual Orientation and Gender Identity" - ] - }, - { - "text": "Intensify efforts to strengthen the criminal justice system and reform the juvenile justice system", - "values": [ - "Justice", - "Rights of the Child" - ] - }, - { - "text": "Consider the ratification of the International Convention on the Protection of the Rights of All Migrant Workers and Members of their Families", - "values": [ - "International instruments", - "Labour", - "Migrants" - ] - }, - { - "text": "Consider urgently improvements to conditions for psychiatric patients.", - "values": [ - "Right to health" - ] - }, - { - "text": "Ensure that all allegations of extrajudicial executions, excessive use of force, arbitrary detentions or acts of torture are investigated and bring those responsible to justice", - "values": [ - "Detention", - "Extrajudicial executions", - "Torture and other CID treatment" - ] - }, - { - "text": "Withdraw its reservations to various articles of the Convention on the Rights of the Child", - "values": [ - "International instruments", - "Rights of the Child" - ] - }, - { - "text": "Allocate adequate resources to ensure the continuous and effective implementation of the National Action Plan to Address Gender-Based Violence", - "values": [ - "Women's rights" - ] - }, - { - "text": "Extend invitations to the Special Rapporteur on torture and the Special Rapporteur on human rights defenders", - "values": [ - "Human rights defenders", - "Special procedures" - ] - }, - { - "text": "Undertake credible and independent investigations of alleged human rights violations in the Somali Region ", - "values": [ - "Justice" - ] - }, - { - "text": "Increase its capacity to provide timely reporting to treaty bodies in accordance with its international obligations", - "values": [ - "Treaty bodies" - ] - }, - { - "text": "Fully prosecute extrajudicial killings, enforced disappearances and forced displacements and take strong action to stop their occurrence.", - "values": [ - "Enforced disappearances", - "Extrajudicial executions" - ] - }, - { - "text": "Enhance the quality and access to information and communication technologies", - "values": [ - "Freedom of opinion and expression" - ] - }, - { - "text": "Continue its efforts in relation to its environmental policies", - "values": [ - "Environment" - ] - }, - { - "text": "Revise existing job schemes to ensure access to a wider spectrum of work for people with disabilities than provided for under current legislation, to comply fully with the Convention on the Rights of Persons with Disabilities", - "values": [ - "Disabilities", - "International instruments", - "Labour" - ] - }, - { - "text": "Establish a formal moratorium on executions with a view to ratifying the Second Optional Protocol to the International Covenant on Civil and Political Rights, aiming at the abolition of the death penalty", - "values": [ - "Death penalty", - "International instruments" - ] - }, - { - "text": "Put an end to restrictions imposed on Turkmen or international associations and NGOs, especially those working in the field of human rights, such as the strict control of their activities and their financing ", - "values": [ - "Civil society", - "Freedom of association and peaceful assembly" - ] - }, - { - "text": "Redouble its efforts to create an environment that ensures freedom of expression for journalists and media, including by revising the 2013 law and the 2015 governmental regulation on media, towards encouraging a free and active press", - "values": [ - "Freedom of opinion and expression", - "Freedom of the press" - ] - }, - { - "text": "Enhance endeavours to abolish corporal punishment of children ", - "values": [ - "Rights of the Child", - "Torture and other CID treatment" - ] - }, - { - "text": "Take additional measures to eliminate the phenomenon of domestic violence against women ", - "values": [ - "Women's rights" - ] - }, - { - "text": "Guarantee the transparency of the democratic processes and the full respect of its norms, such as, inter alia, the freedom of expression or opinion and the freedom of assembly and association", - "values": [ - "Freedom of association and peaceful assembly", - "Freedom of opinion and expression" - ] - }, - { - "text": "Envisage the ratification of treaties and other international instruments relating to human rights which Papua New Guinea has not done so yet, notably the Convention against Torture and Other Cruel, Inhuman or Degrading Treatment or Punishment", - "values": [ - "International instruments", - "Torture and other CID treatment" - ] - }, - { - "text": "Continue its active engagement with its international and regional partners towards surmounting technical and financial constraints in implementing the recommendations of the Truth, Justice and Reconciliation Commission, especially those that pertain to human rights", - "values": [ - "Justice" - ] - }, - { - "text": "Criminalise child marriage", - "values": [ - "Rights of the Child" - ] - }, - { - "text": "Continue efforts to consolidate a national human rights institution in accordance with the Paris Principles ", - "values": [ - "National Human Rights Institution" - ] - }, - { - "text": "Provide appropriate solutions to the significant decline in the rate of school attendance in secondary education, especially among girls", - "values": [ - "Right to education", - "Women's rights" - ] - }, - { - "text": "Ensure a credible, independent investigation with international involvement into unlawful killings", - "values": [ - "Extrajudicial executions" - ] - }, - { - "text": "Promote efforts aimed at implementing the Convention on the Rights of the Child", - "values": [ - "International instruments", - "Rights of the Child" - ] - }, - { - "text": "Ensure full application of the 1951 Convention relating to the Status of Refugees", - "values": [ - "Asylum-seekers - refugees", - "International instruments" - ] - }, - { - "text": "Consider establishing a permanent inter-ministerial committee responsible for the implementation of its international human rights obligations, inter alia, for coordinating the drafting of the national reports to the treaty bodies and for organizing country visits by the Council's Special Procedures ", - "values": [ - "Special procedures", - "Treaty bodies" - ] - }, - { - "text": "Overcome stereotypes and stigmas against people living with disabilities, and fully integrate them into society and guarantee the full enjoyment of their rights", - "values": [ - "Disabilities" - ] - }, - { - "text": "Consider issuing a standing invitation to the special procedures mandate holders ", - "values": [ - "Special procedures" - ] - }, - { - "text": "Redouble efforts to ensure access to public places and labour market to persons with disabilities and to ratify the Convention on the Rights of Persons with Disabilities ", - "values": [ - "Disabilities", - "International instruments", - "Labour" - ] - }, - { - "text": "Further improve its cooperation with the special rapporteurs of the United Nations ", - "values": [ - "Special procedures" - ] - }, - { - "text": "Continue to effectively fight against child trafficking and access to education of children with disabilities, and especially girls ", - "values": [ - "Disabilities", - "Right to education", - "Rights of the Child", - "Trafficking", - "Women's rights" - ] - }, - { - "text": "Defend the right to life, based on article 15 of the Constitution.", - "values": [ - "Other" - ] - }, - { - "text": "Create an independent body to investigate all torture allegations, including in Thailand's Deep South, and bring perpetrators to justice", - "values": [ - "Torture and other CID treatment" - ] - }, - { - "text": "Take legal and institutional measures to strengthen the independence of the judges, ensure freedom of expression and lift the restrictions on access to Internet and social media", - "values": [ - "Freedom of opinion and expression", - "Justice" - ] - }, - { - "text": "Develop a National Action Plan on ending violence against women and children ", - "values": [ - "Rights of the Child", - "Women's rights" - ] - }, - { - "text": "Reinforce the rights of women within the labour market, regardless of age or ethnicity.", - "values": [ - "Women's rights" - ] - }, - { - "text": "Adopt the bill on Trafficking of Children", - "values": [ - "Rights of the Child", - "Trafficking" - ] - }, - { - "text": "Take measures to guarantee proper and genuine analysis of each refugee petition on a case-by-case basis ", - "values": [ - "Asylum-seekers - refugees" - ] - }, - { - "text": "Continue to spearhead progress toward gender equality and development for women in areas of education and employment.", - "values": [ - "Labour", - "Right to education", - "Women's rights" - ] - }, - { - "text": "Define the technical and financial needs which are required to help the country to live up to its international obligations under the main human rights instruments ", - "values": [ - "General" - ] - }, - { - "text": "Adopt legislation and a coherent national policy criminalizing female genital mutilation ", - "values": [ - "Rights of the Child", - "Torture and other CID treatment", - "Women's rights" - ] - }, - { - "text": "Further combat racial discrimination and xenophobia, and effectively reduce the number of cases of hate crime", - "values": [ - "Racial discrimination" - ] - }, - { - "text": "Adopt the text on national policy to protect children, completed in 2008, and intensify the fight against trafficking in children and labour affecting children", - "values": [ - "Labour", - "Rights of the Child", - "Trafficking" - ] - }, - { - "text": "Enforce the law prohibiting female genital mutilation", - "values": [ - "Rights of the Child", - "Torture and other CID treatment", - "Women's rights" - ] - }, - { - "text": "Take effective legal measures with a view to the adoption of a national plan of action so that the rights of indigenous peoples will be respected and all forms of violence against Aboriginal women and girls will be ended ", - "values": [ - "Indigenous peoples", - "Rights of the Child", - "Women's rights" - ] - }, - { - "text": "Continue working on the implementation of a national plan to combat violence against children and youth", - "values": [ - "Rights of the Child" - ] - }, - { - "text": "Introduce appropriate measures necessary to allow persons with disabilities to exercise their right to vote ", - "values": [ - "Disabilities", - "Elections" - ] - }, - { - "text": "Establish a national mechanism for the prevention of torture, in line with the Optional Protocol to CAT", - "values": [ - "Detention", - "International instruments", - "Torture and other CID treatment" - ] - }, - { - "text": "Replace criminal defamation laws with civil laws that are more narrowly defined, thus ensuring greater compliance with international obligations under the International Covenant on Civil and Political Rights, including a defence for the accused", - "values": [ - "CP rights - general", - "International instruments" - ] - }, - { - "text": "Consider removing the exception relating to marital rape from the definition of rape in section 375 of the Indian Penal Code", - "values": [ - "Women's rights" - ] - }, - { - "text": "Ratify ICESCR, CAT and CEDAW and CED", - "values": [ - "ESC rights - general", - "Enforced disappearances", - "International instruments", - "Torture and other CID treatment", - "Women's rights" - ] - }, - { - "text": "Consider ratifying fundamental International Labour Organization conventions, and adopt policies to avoid discrimination against foreign workers", - "values": [ - "International instruments", - "Labour", - "Migrants" - ] - }, - { - "text": "Ensure speedy ratification of CAT and the Optional Protocol thereto ", - "values": [ - "Detention", - "International instruments", - "Torture and other CID treatment" - ] - }, - { - "text": "Ratify the Optional Protocol to the Convention on the Rights of Persons with Disabilities, the International Convention for the Protection of All Persons from Enforced Disappearance and the Optional Protocol to the International Covenant on Economic, Social and Cultural Rights", - "values": [ - "Disabilities", - "ESC rights - general", - "Enforced disappearances", - "International instruments" - ] - }, - { - "text": "Take concrete steps to meet its obligations on creating an environment that fosters freedom of expression ", - "values": [ - "Freedom of opinion and expression" - ] - }, - { - "text": "Take the necessary measures to guarantee the right to peacefully demonstrate", - "values": [ - "Freedom of association and peaceful assembly" - ] - }, - { - "text": "Continue to protect and strengthen freedom of the press and media", - "values": [ - "Freedom of the press" - ] - }, - { - "text": "Develop a law criminalizing discrimination based on social origin, racial hatred and acts of violence against indigenous people.", - "values": [ - "Indigenous peoples", - "Minorities", - "Racial discrimination" - ] - }, - { - "text": "Continue to take measures to ensure freedoms of expression and opinion especially of trade unions", - "values": [ - "Freedom of opinion and expression", - "Labour" - ] - }, - { - "text": "Take more effective measures to address the problem of social and economic inequality, in particular in the areas of health, education and employment opportunities between the population in the urban and rural areas", - "values": [ - "ESC rights - general" - ] - }, - { - "text": "Continue its close cooperation with civil society in the follow-up to the UPR session ", - "values": [ - "Civil society", - "UPR process" - ] - }, - { - "text": "Implement fully and effectively the judgments of the European Court of Human Rights on access to abortion", - "values": [ - "International instruments", - "Women's rights" - ] - }, - { - "text": "Adopt an adequate legal framework in line with its commitments under the Palermo Protocol to combat human trafficking ", - "values": [ - "International instruments", - "Trafficking" - ] - }, - { - "text": "Create an appropriate legal framework to guarantee the rights of human rights defenders, and to ensure that violence, threats and intimidation against them will be prosecuted", - "values": [ - "Human rights defenders" - ] - }, - { - "text": "Make the declarations under articles 21 and 22 of CAT and withdraw its reservation with regard to article 20 of CAT, as recommended by the Committee", - "values": [ - "International instruments", - "Torture and other CID treatment", - "Treaty bodies" - ] - }, - { - "text": "Implement the recommendations of treaty bodies with regard to the implementation of Singapore's commitments under CEDAW and CRC ", - "values": [ - "International instruments", - "Rights of the Child", - "Treaty bodies", - "Women's rights" - ] - }, - { - "text": "Continue its efforts to consolidate greater representation of women in decision-making positions, both in public administration and the private sector ", - "values": [ - "Women's rights" - ] - }, - { - "text": "Adopt strict safeguards to ensure that no statement obtained through torture can be used in courts", - "values": [ - "Torture and other CID treatment" - ] - }, - { - "text": "Considers the adoption of a specific law for domestic violence, containing both criminal and civil provisions ", - "values": [ - "Rights of the Child", - "Women's rights" - ] - }, - { - "text": "Continue efforts to build the national human rights institutions and provide the necessary resources to execute their mandate", - "values": [ - "General" - ] - }, - { - "text": "Continue its efforts to ensure an equal opportunity to participate in the political process for all of its citizens ", - "values": [ - "CP rights - general" - ] - }, - { - "text": "Consider eliminating the differences in the legal condition of men and women regarding marriage, divorce, custody and inheritance", - "values": [ - "Women's rights" - ] - }, - { - "text": "Submit initial report on CRC.", - "values": [ - "Rights of the Child", - "Treaty bodies" - ] - }, - { - "text": "Undertake prompt, effective and impartial investigations in the killings of all journalists in the territory under control of the Transitional Federal Government, and investigate threats of violence against them ", - "values": [ - "Extrajudicial executions", - "Freedom of the press" - ] - }, - { - "text": "Take measures to improve the education system and carry out programmes aimed at enhancing awareness about human rights at the national level", - "values": [ - "Human rights education and training" - ] - }, - { - "text": "Further invest in obstetric clinics and in the formation of skilled birth attendants.", - "values": [ - "Right to health" - ] - }, - { - "text": "Analyse the possibility of establishing a national system of follow-up to international recommendations", - "values": [ - "Special procedures", - "Treaty bodies", - "UPR process" - ] - }, - { - "text": "Implement concrete measures to combat religious and ethnic intolerance, restore full citizenship rights of the Rohingya and eliminate requirements for citizenship that discriminate on the basis of race, religion, ethnicity or any other status. Resume recognition of the Rohingya as an ethnic group legitimately residing in Myanmar", - "values": [ - "Freedom of religion and belief", - "Minorities", - "Racial discrimination", - "Statelessness and the right to nationality" - ] - }, - { - "text": "Intensify efforts to fight violence against women by the public awareness-raising campaigns, by adequately resourcing the relevant initiatives and by training law enforcement personnel", - "values": [ - "Human rights education and training", - "Women's rights" - ] - }, - { - "text": "Continue to ensure the budgetary allocations granted to the mechanism for the protection of human rights defenders, and recruit immediately the entire set of specialized staff to guarantee effective work by the mechanism and contribute thus effectively to the protection and security of all human rights defenders", - "values": [ - "Human rights defenders" - ] - }, - { - "text": "Sign and ratify the International Covenant on Civil and Political Rights and the International Covenant on Economic, Social and Cultural Rights", - "values": [ - "CP rights - general", - "ESC rights - general", - "International instruments" - ] - }, - { - "text": "Consider ratifying the Hague Convention", - "values": [ - "International instruments", - "Rights of the Child" - ] - }, - { - "text": "Respond positively and unconditionally to the request of the Special Rapporteur on extrajudicial, summary or arbitrary executions to visit the country", - "values": [ - "Extrajudicial executions", - "Special procedures" - ] - }, - { - "text": "Continue its positive approach towards the establishment of an NHRI in accordance with the Paris Principles ", - "values": [ - "National Human Rights Institution" - ] - }, - { - "text": "Establish appropriate mechanisms to ensure prompt, effective, independent and impartial investigations into all allegations of torture and other ill-treatment at remand and detention facilities, and to ensure that perpetrators are held accountable ", - "values": [ - "Detention", - "Torture and other CID treatment" - ] - }, - { - "text": "Intensify its efforts to eradicate poverty and improve health care facilities for its people", - "values": [ - "Poverty", - "Right to health" - ] - }, - { - "text": "Pursue further its endeavours to combat prison overcrowding and to guarantee that all detainees are treated with dignity", - "values": [ - "Detention" - ] - }, - { - "text": "Establish a national human rights institution which functions in accordance with the Paris Principles", - "values": [ - "National Human Rights Institution" - ] - }, - { - "text": "Continue to increase women's representation in all national decision-making positions to 30 per cent in line with the SADC decision", - "values": [ - "Women's rights" - ] - }, - { - "text": "Abolish the penal law on defamation and ensure, through legislative reform and political change, that freedom of expression, as well as freedom of association and peaceful assembly are guaranteed to all inhabitants, citizens or not, of the country ", - "values": [ - "Freedom of association and peaceful assembly", - "Freedom of opinion and expression" - ] - }, - { - "text": "Carry out a large awareness campaign among the population to change the mindset of those groups which resist women's emancipation and perpetuate practices and customs contrary to human rights", - "values": [ - "Human rights education and training", - "Women's rights" - ] - }, - { - "text": "Continue its efforts to fight discrimination and violence against women", - "values": [ - "Women's rights" - ] - }, - { - "text": "Strengthen the response to various forms of violence against woman and take appropriate measures in order to ensure gender equality in the labor market", - "values": [ - "Women's rights" - ] - }, - { - "text": "Consider ratifying ILO Equal Remuneration Convention", - "values": [ - "International instruments", - "Labour" - ] - }, - { - "text": "Expedite ratification of the Convention against Torture and Other Cruel, Inhuman or Degrading Treatment or Punishment and its Optional Protocol ", - "values": [ - "Detention", - "International instruments", - "Torture and other CID treatment" - ] - }, - { - "text": "Adopt and implement expeditiously the Prisons Bill and Legal Aid Bill and other measures needed towards humanization of its penitentiary system ", - "values": [ - "Detention" - ] - }, - { - "text": "Amend the existing legislation in order to address the gaps in the protection of victims of contemporary slavery, as well as to criminalize child trafficking in accordance with international standards", - "values": [ - "Rights of the Child" - ] - }, - { - "text": "Strengthen the operational and financial capacities of the National Independent Human Rights Commission and ensure that its composition and functioning are in accordance with the Paris Principles ", - "values": [ - "National Human Rights Institution" - ] - }, - { - "text": "Prohibit and criminalize corporal punishment imposed on children athome and school, and increase efforts to raise awareness about the negative effects of this practice ", - "values": [ - "Rights of the Child", - "Torture and other CID treatment" - ] - }, - { - "text": "Incorporate in its legal system the possibility of granting parole to offenders under 18 sentenced to life imprisonment for murder ", - "values": [ - "Justice", - "Rights of the Child" - ] - }, - { - "text": "Ensure basic services for children of irregular migrants, including education, health and medical care ", - "values": [ - "Migrants" - ] - }, - { - "text": "Take all necessary measures, both legislative and educational, to eradicate negative stereotypes and attitudes towards women", - "values": [ - "Women's rights" - ] - }, - { - "text": "Continue efforts to enhance public awareness on issues of ethnic and racial equality and to combat violence against indigenous peoples", - "values": [ - "Human rights education and training", - "Indigenous peoples", - "Racial discrimination" - ] - }, - { - "text": "Seize the opportunity raised by the ongoing review of the Penal Code to consider abolishing capital punishment and acceding to ICCPR-OP 2.", - "values": [ - "Death penalty", - "International instruments" - ] - }, - { - "text": "Accede to the Convention on the Prevention and Punishment of the Crime of Genocide and the Optional Protocols to the International Covenant on Civil and Political Rights (ICCPR) ", - "values": [ - "CP rights - general", - "Death penalty", - "International instruments", - "Justice" - ] - }, - { - "text": "Adopt a comprehensive anti-discrimination legislation that would include also a definition of direct and indirect discrimination and a comprehensive list of grounds for discrimination", - "values": [ - "Other" - ] - }, - { - "text": "Ensure effective implementation of the laws on the elimination of all forms of discrimination and gender equality, including by putting in place effective enforcement mechanisms and raising awareness about the provisions of the legislation", - "values": [ - "Human rights education and training", - "Women's rights" - ] - }, - { - "text": "Ratify before the end of the third UPR cycle those Conventions to which Ghana is a signatory", - "values": [ - "International instruments", - "UPR process" - ] - }, - { - "text": "Continue its implementation of national policies aimed at the protection and promotion of human rights", - "values": [ - "General" - ] - }, - { - "text": "Reinforce the measures to protect the rights and interests of children victims and witnesses of offences prohibited by the Optional Protocol to the Convention on the rights of the Child relating to the sale of children, child prostitution and child pornography, in line with CRC recommendations", - "values": [ - "International instruments", - "Rights of the Child", - "Trafficking", - "Treaty bodies" - ] - }, - { - "text": "Re-consider ratification of the Second Optional Protocol to the International Covenant on Civil and Political Rights, aiming at the abolition of the death penalty", - "values": [ - "Death penalty", - "International instruments" - ] - }, - { - "text": "Expedite the process of returning occupied private properties to their rightful owners, and promote the successful conclusion of ongoing legal proceedings by strengthening the applicable legal framework", - "values": [ - "Right to land" - ] - }, - { - "text": "Consider becoming a party to CAT", - "values": [ - "International instruments", - "Torture and other CID treatment" - ] - }, - { - "text": "Continue efforts to build a legal framework in order to ensure protection for human rights, involving inter alia the ratification of the main international instruments in this area", - "values": [ - "International instruments" - ] - }, - { - "text": "Consider adopting a clear and comprehensive definition of racial discrimination and introduce an overarching provision in its civil and administrative law prohibiting both direct and indirect racial discrimination in all areas of the life", - "values": [ - "Racial discrimination" - ] - }, - { - "text": "Ensure that women and girls in displaced persons camps and in the general population are truly protected against all forms of violence, including early or enforced marriage and ensure that the perpetrators of crimes against women are brought to justice", - "values": [ - "Rights of the Child", - "Women's rights" - ] - }, - { - "text": "Continue to promote the training and education of qualified people, especially in the sphere of health in developing countries ", - "values": [ - "Right to education", - "Right to health" - ] - }, - { - "text": "Review the Penal Code and the Law on Criminal Proceedings in order to overcome shortcomings in the procedure and to ensure the right to fair trial, adequate defence and prompt access to justice for all", - "values": [ - "Justice" - ] - }, - { - "text": "Complete the ratification process for CRPD", - "values": [ - "Disabilities", - "International instruments" - ] - }, - { - "text": "Further enhance its cooperation with OHCHR and the mechanisms of the Human Rights Council ", - "values": [ - "Special procedures", - "Technical assistance and cooperation", - "UPR process" - ] - }, - { - "text": "Prioritize reform of the prison system in order to improve the living conditions of detainees, ensure thorough investigation of any allegation of illtreatment and use of excess force by police forces, and prosecute those who have committed such crimes", - "values": [ - "Detention", - "Human rights violations by state agents" - ] - }, - { - "text": "Continue to cooperate with the United Nations international human rights treaty bodies", - "values": [ - "Treaty bodies" - ] - }, - { - "text": "Organize the work for the adoption of rigorous measures that will contribute to improving the country's legislation in line with international obligations in the field of human rights", - "values": [ - "International instruments" - ] - }, - { - "text": "Ask for further support from the international community to improve its human rights situation through technical assistance as appropriate.", - "values": [ - "Technical assistance and cooperation" - ] - }, - { - "text": "Develop a clear timeline and benchmarks for the full implementation of Sri Lanka\u2019s commitments under Human Rights Council resolution 30/1", - "values": [ - "Justice" - ] - }, - { - "text": "Ensure closer monitoring of the implementation of the National Action Plan for Women by developing the monitoring and evaluation capacity of the Ministry of Women's Affairs and other national entities", - "values": [ - "Women's rights" - ] - }, - { - "text": "Adopt a victim-centred comprehensive national framework against trafficking in persons, especially women and girls", - "values": [ - "Trafficking", - "Women's rights" - ] - }, - { - "text": "Deepen its engagement with and support for civil society actors, human rights defenders and minority groups, and ensure their safety, with specific mechanisms in place if necessary, including through supportive public statements on the important role they play in democracy.", - "values": [ - "Civil society", - "Human rights defenders", - "Minorities" - ] - }, - { - "text": "Consider ratifying the two Optional Protocols to the International Covenant on Civil and Political Rights and, meanwhile, declare an official moratorium on executions with a view to abolishing the death penalty, commuting death sentences to imprisonment", - "values": [ - "Death penalty", - "International instruments" - ] - }, - { - "text": "The Royal Government of Cambodia has made its firm commitment toward the continuation of implementation of its reform program in all sectors in a more in-depth manner, based on four principles - individual rights, liberal democracy and multi-party system and pluralism, clear-cut separation of power and the rule of law as enshrined in the Constitution.", - "values": [ - "Freedom of association and peaceful assembly", - "Justice" - ] - }, - { - "text": "Consolidate laws and regulations to fight all forms of discrimination, racism and xenophobia", - "values": [ - "Racial discrimination" - ] - }, - { - "text": "Accelerate ongoing efforts to address the root causes of poverty and hunger so as to uplift the living standards of the poor", - "values": [ - "Poverty", - "Right to food" - ] - }, - { - "text": "Develop and implement policies to ensure gender equality throughout society and strengthen the promotion and protection of the rights of women, especially women from indigenous communities", - "values": [ - "Indigenous peoples", - "Women's rights" - ] - }, - { - "text": "Consider acceding to the Optional Protocol to the Convention on the Rights of the Child on a communications procedure", - "values": [ - "International instruments", - "Rights of the Child" - ] - }, - { - "text": "Continue to address the inequalities affecting particularly the marginalized Roma community.", - "values": [ - "Minorities" - ] - }, - { - "text": "Further intensify efforts to expedite development through the designed poverty reduction strategies", - "values": [ - "Development", - "Poverty" - ] - }, - { - "text": "Adopt practical measures to promote equal representation of men and women in elected public office and to guarantee equal remuneration and satisfactory working conditions to all citizens", - "values": [ - "Women's rights" - ] - }, - { - "text": "Implement fully the Supreme Court decision regarding sexual and gender minorities", - "values": [ - "Minorities", - "Sexual Orientation and Gender Identity" - ] - }, - { - "text": "Step up its efforts to prohibit and prevent hate speech and racist propaganda including on the internet and to increase public awareness on this issue ", - "values": [ - "Human rights education and training", - "Racial discrimination" - ] - }, - { - "text": "Continue steady enforcement and implementation of measures and legislation designed to promote and protect women's rights ", - "values": [ - "Women's rights" - ] - }, - { - "text": "Carry out an evaluation on ethnic profiling within the police organization", - "values": [ - "Human rights violations by state agents", - "Minorities", - "Racial discrimination" - ] - }, - { - "text": "Continue with the efforts to improve the status of women, including measures for gender equality at all levels in society, with a view to enhancing their contribution to the national development processes", - "values": [ - "Women's rights" - ] - }, - { - "text": "Strengthen the implementation of existing legislation and promote awareness-raising activities aimed at protecting women's rights, at increasing girls' enrolment rate in schools and fighting against all forms of violence against women, including domestic violence", - "values": [ - "Human rights education and training", - "Right to education", - "Rights of the Child", - "Women's rights" - ] - }, - { - "text": "Continue its efforts to enhance the rule of law as enshrined in its Constitution ", - "values": [ - "Justice" - ] - }, - { - "text": "Fully implement the Public Benefit Organizations Act as soon as possible", - "values": [ - "Freedom of association and peaceful assembly" - ] - }, - { - "text": "Pursue efforts to embark on judicial reforms that would help to modernize the human rights system, and to align its law with international legal instruments to which Angola is party", - "values": [ - "Justice" - ] - }, - { - "text": "Carry out reforms to ensure equality for women and prevent their discrimination in law and practice", - "values": [ - "Women's rights" - ] - }, - { - "text": "Ratify the Optional Protocol to the Convention on the Elimination of All Forms of Discrimination against Women ", - "values": [ - "International instruments", - "Women's rights" - ] - }, - { - "text": "Adopt provisions regarding alternatives to custody.", - "values": [ - "Justice" - ] - }, - { - "text": "Take further steps in enhancing the promotion and protection of the rights of the child, with a view to fully eradicating child homelessness", - "values": [ - "Right to housing", - "Rights of the Child" - ] - }, - { - "text": "Halt the use of the death penalty in all circumstances, and take steps towards its abolition, including ratification of the Second Optional Protocol to the International Covenant on Civil and Political Rights", - "values": [ - "Death penalty", - "International instruments" - ] - }, - { - "text": "Consider the possibility of adopting adequate measures to promote social cohesion, with a view to the elimination of all forms of discrimination, including against minority, ethnic and cultural groups", - "values": [ - "Minorities", - "Racial discrimination" - ] - }, - { - "text": "Request assistance from OHCHR in preparing a common core document to streamline treaty reporting ", - "values": [ - "Treaty bodies" - ] - }, - { - "text": "Ratify the International Covenant on Civil and Political Rights and the International Covenant on Economic, Social and Cultural Rights, both signed in 2008, as well as the Convention against Torture and Other Cruel, Inhuman or Degrading Treatment or Punishment, signed in 2000 ", - "values": [ - "CP rights - general", - "ESC rights - general", - "International instruments", - "Torture and other CID treatment" - ] - }, - { - "text": "Ensure that all perpetrators of violations and abuses of the international human rights law and the international humanitarian law from all sides of the conflict are investigated, prosecuted and punished in accordance with international standards and cooperate with the International Criminal Court in this regard", - "values": [ - "International humanitarian law", - "International instruments", - "Justice" - ] - }, - { - "text": "Take steps to ensure that the 2006 Press Law is fully enacted and that independent reporting is recognized", - "values": [ - "Freedom of the press" - ] - }, - { - "text": "Set up prevention, repression and assistance mechanisms to help victims to fight sexual and domestic violence, as well as all types of discrimination against women ", - "values": [ - "Rights of the Child", - "Women's rights" - ] - }, - { - "text": "Continue its efforts to facilitate and promote indigenous peoples' access to education, sanitation, property, and public positions", - "values": [ - "Indigenous peoples", - "Right to water and sanitation" - ] - }, - { - "text": "Continue its efforts in seeking accountability for the past human rights violations and providing redress to their victims ", - "values": [ - "Justice" - ] - }, - { - "text": "Repeal the provisions of the Personal Status Code which prohibit the children of women who have remarried from living with them", - "values": [ - "Rights of the Child", - "Women's rights" - ] - }, - { - "text": "Maintain the sustained growth of the education budget, linked to education policies and collective agreements", - "values": [ - "Right to education" - ] - }, - { - "text": "Consider the possibility of acceding to the Rome Statute of the ICC as well as its Agreement on Privileges and Immunities", - "values": [ - "International instruments", - "Justice" - ] - }, - { - "text": "Continue its efforts so as to realize the right to work, including through technical and vocational education and training", - "values": [ - "Labour" - ] - }, - { - "text": "Take the necessary measures to reduce prejudices and discrimination based on the sexual orientation of the person ", - "values": [ - "Sexual Orientation and Gender Identity" - ] - }, - { - "text": "Adopt a national strategy for the advancement of women, and end prevailing cultural stereotypes of the role of women in all fields", - "values": [ - "Women's rights" - ] - }, - { - "text": "Promote the rights of children in accordance with the recommendations of the Committee on the Rights of the Child", - "values": [ - "Rights of the Child", - "Treaty bodies" - ] - }, - { - "text": "Implement effectively the Human Rights Action Plan and other national action plans, including on the elimination of discrimination against women and on the rights of persons with disabilities", - "values": [ - "Disabilities", - "Women's rights" - ] - }, - { - "text": "Continue to improve living conditions in rural areas through the realization of social infrastructures and guaranteeing better services for its population", - "values": [ - "ESC rights - general" - ] - }, - { - "text": "Ensure timely prosecution of human rights cases before the National Criminal Court and that all alleged violations of human rights, including labour rights, are investigated and prosecuted by the civilian justice system", - "values": [ - "Justice", - "Labour" - ] - }, - { - "text": "Further pursue cooperation with civil society organizations with a view to promoting and protecting human rights in different areas, including the areas of education, health, migrant workers and gender equality ", - "values": [ - "Civil society", - "Labour", - "Migrants", - "Right to education", - "Right to health", - "Women's rights" - ] - }, - { - "text": "Continue strengthening the action plan on the trafficking of human beings in order to prevent this crime, providing protection to victims and punishing the perpetrators", - "values": [ - "Trafficking" - ] - }, - { - "text": "Strengthen its efforts to combat illiteracy", - "values": [ - "Right to education" - ] - }, - { - "text": "Continue to take steps to ensure the full and effective implementation of its Child Care and Protection Act to guard against all forms of child abuse", - "values": [ - "Rights of the Child", - "Torture and other CID treatment" - ] - }, - { - "text": "Take further steps to guarantee the right of children to an adequate standard of living and ensure that children from economically disadvantaged backgrounds are not exploited or abused.", - "values": [ - "Rights of the Child" - ] - }, - { - "text": "Adopt measures to fight violence against women, in particular "honour crimes", by ensuring that perpetrators are brought to justice, and provide redress measures to victims", - "values": [ - "Women's rights" - ] - }, - { - "text": "Guarantee an environment conducive to the work of journalists, human rights defenders and civil society organizations", - "values": [ - "Civil society", - "Freedom of the press", - "Human rights defenders" - ] - }, - { - "text": "Put forward more efforts to eliminate all forms of discrimination against women and ensure greater women's empowerment, representation and advancement in all sectors", - "values": [ - "Women's rights" - ] - }, - { - "text": "Redouble efforts to reduce poverty and malnutrition ", - "values": [ - "Poverty", - "Right to food" - ] - }, - { - "text": "Develop a legislative package for the prevention of and combating of gender-based violence and provide greater financial and human resources to the National Council on Gender Policy", - "values": [ - "Women's rights" - ] - }, - { - "text": "Continue its cooperation with civil society organizations in the follow-up to this review ", - "values": [ - "Civil society", - "UPR process" - ] - }, - { - "text": "Sustain its constructive steps taken in the field of human rights ", - "values": [ - "General" - ] - }, - { - "text": "Adopt further legislation that restricts and prevents minors from all consumption of drugs, alcohol and tobacco", - "values": [ - "Public security", - "Rights of the Child" - ] - }, - { - "text": "Ratify the Rome Statute of the International Criminal Court and accede to the Agreement on Privileges and Immunities of the International Criminal Court", - "values": [ - "International instruments", - "Justice" - ] - }, - { - "text": "Continue its efforts to achieve other Millennium Development Goals, in accordance with the human rights priorities that the State has established in its national policy", - "values": [ - "Development" - ] - }, - { - "text": "Continue its efforts aimed at combating the gender gap by ensuring that girls have equal access to school, especially in rural areas", - "values": [ - "Right to education", - "Rights of the Child", - "Women's rights" - ] - }, - { - "text": "Intensify efforts to combat discrimination against migrants and take measures to support their integration into the community ", - "values": [ - "Migrants", - "Racial discrimination" - ] - }, - { - "text": "Strengthen measures to prevent and combat gender-based violence, including the representation of women in positions of responsibility", - "values": [ - "Women's rights" - ] - }, - { - "text": "Speed up the process to appoint a new Ombudsman", - "values": [ - "National Human Rights Institution" - ] - }, - { - "text": "Strengthen the measures taken aimed at reducing disparities between men and women in the country, particularly regarding access to education, employment and health care ", - "values": [ - "Women's rights" - ] - }, - { - "text": "Consider ratifying the core international human rights treaties: ICESCR, ICCPR, ICERD, CEDAW and CAT ", - "values": [ - "CP rights - general", - "ESC rights - general", - "International instruments", - "Racial discrimination", - "Torture and other CID treatment", - "Women's rights" - ] - }, - { - "text": "Adopt various measures for prevention and early diagnosis of transmissible diseases and pandemics, notably HIV-AIDS, by giving priority to vulnerable groups, particularly national minorities, the poor and sex workers", - "values": [ - "HIV - Aids", - "Minorities", - "Poverty" - ] - }, - { - "text": "Continue efforts to strengthen the commitment to the Agreement on the Resolution of the Conflict in the Republic of South Sudan by returning to a complete ceasefire as soon as possible", - "values": [ - "Other" - ] - }, - { - "text": "Continue its good work in further strengthening the judiciary in the country", - "values": [ - "Justice" - ] - }, - { - "text": "Raise the age when compulsory education ends to at least 16", - "values": [ - "Right to education" - ] - }, - { - "text": "Ratify the Optional Protocol to the Convention on the Rights of Persons with Disabilities (CRPD)", - "values": [ - "Disabilities", - "International instruments" - ] - }, - { - "text": "Develop an adequate identification mechanism for vulnerable persons and grant free legal aid from the beginning of the asylum procedure", - "values": [ - "Asylum-seekers - refugees", - "Justice" - ] - }, - { - "text": "Extend an open and permanent invitation to the United Nations special procedures mandate-holders ", - "values": [ - "Special procedures" - ] - }, - { - "text": "Ratify or accede to CAT, OP-CAT, ICCPR, and lift its broad reservations to CEDAW and CRC", - "values": [ - "CP rights - general", - "Detention", - "International instruments", - "Rights of the Child", - "Torture and other CID treatment", - "Women's rights" - ] - }, - { - "text": "Revise and harmonize anti-discrimination laws to ensure equal protection on all grounds of discrimination ", - "values": [ - "Other" - ] - }, - { - "text": "Favourably consider resuming, as soon as possible, cooperation with OHCHR in Angola", - "values": [ - "Other" - ] - }, - { - "text": "Devote greater attention to the rigorous enforcement of the rights of the autochthonous Italian minority in Slovenia", - "values": [ - "Minorities" - ] - }, - { - "text": "Ensure that all trials, including those of terrorism suspects, comply with international standards for fair trials", - "values": [ - "Counter-terrorism" - ] - }, - { - "text": "Complete the ratification of key international instruments that Sao Tomé and Principe has signed, including the International Covenant on Civil and Political Rights and the International Covenant on Economic, Social and Cultural Rights", - "values": [ - "CP rights - general", - "ESC rights - general", - "International instruments" - ] - }, - { - "text": "Improve the situation of women and enforce specific legislation regarding violence against women and ensuring their sexual and reproductive rights", - "values": [ - "Right to health", - "Women's rights" - ] - }, - { - "text": "Fully implement, once adopted, a draft amendment to the Constitution that would protect against discrimination on the basis of sex and gender, and would seek to protect women's and children's rights regarding family law, sexual offences, domestic violence, property, the right to work, and inheritance law", - "values": [ - "Labour", - "Rights of the Child", - "Sexual Orientation and Gender Identity", - "Women's rights" - ] - }, - { - "text": "Ensure that minority groups, including scheduled castes, are not discriminated against in education, health care, employment and other basic services and that perpetrators of hate crimes against them face the full force of the law", - "values": [ - "Labour", - "Minorities", - "Racial discrimination", - "Right to education", - "Right to health" - ] - }, - { - "text": "Ensure the compatibility of the quota system on the recruitment of foreign labour force with universal human rights standards", - "values": [ - "Labour", - "Minorities" - ] - }, - { - "text": "Assure full respect of freedom of association and peaceful assembly and punish all excessive use of force by security officers against peaceful demonstrators", - "values": [ - "Freedom of association and peaceful assembly", - "Human rights violations by state agents" - ] - }, - { - "text": "Effectively ban torture in all its forms and ratify the OP-CAT", - "values": [ - "Detention", - "International instruments", - "Torture and other CID treatment" - ] - }, - { - "text": "Take all appropriate measures to protect people from all forms of sexual violence", - "values": [ - "Rights of the Child", - "Women's rights" - ] - }, - { - "text": "Cease spying on communications and private data of people in the world", - "values": [ - "Privacy" - ] - }, - { - "text": "Hold security forces and other government officials accountable for human rights violations, including those involving unlawful killings, sexual violence and torture, by credibly investigating and prosecuting offenders as appropriate", - "values": [ - "Extrajudicial executions", - "Human rights violations by state agents", - "Torture and other CID treatment", - "Women's rights" - ] - }, - { - "text": "Consider withdrawing its reservation to article 2 of CEDAW, in line with its Constitution and international human rights instruments ", - "values": [ - "International instruments", - "Women's rights" - ] - }, - { - "text": "Make good use of technical assistance from OHCHR to accede to the International Covenant on Economic, Social and Cultural Rights, the International Convention on the Elimination of All Forms of Racial Discrimination and the Convention against Torture.", - "values": [ - "ESC rights - general", - "International instruments", - "Technical assistance and cooperation", - "Torture and other CID treatment" - ] - }, - { - "text": "Seek further assistance for capacity building and technical assistance in the areas identified in the National Report ", - "values": [ - "Treaty bodies" - ] - }, - { - "text": "Prevent extrajudicial killings and ensure compensation and justice for the families of victims, taking into account the recommendations of the United Nations Special Rapporteur on extrajudicial killings ", - "values": [ - "Extrajudicial executions", - "Special procedures" - ] - }, - { - "text": "Consider ratifying the International Convention on the Elimination of All Forms of Racial Discrimination", - "values": [ - "International instruments", - "Racial discrimination" - ] - }, - { - "text": "Reinforce the policies for the protection against racism, renewing the National Action Plan against Racism (2005- 2008)", - "values": [ - "Racial discrimination" - ] - }, - { - "text": "Protect and respect the freedom of expression and association of human rights defenders and refrain from placing any unnecessary restrictions on their work.", - "values": [ - "Freedom of opinion and expression", - "Human rights defenders" - ] - }, - { - "text": "Take decisive action where possible and introduce measures to ensure that no children under the age of 18 are recruited ", - "values": [ - "Rights of the Child" - ] - }, - { - "text": "In line with previous recommendations of Committee on the Elimination of Discrimination against Women, develop policies and programmes to support the elimination of stereotypes associated with traditional roles and prevent the emergence of new stereotypes that are discriminatory against women ", - "values": [ - "Treaty bodies", - "Women's rights" - ] - }, - { - "text": "Make efforts to maintain the process of introducing legal amendments to protect vulnerable members of society, including children, disabled persons and women, and ensure that the changes are enacted in practice, for example, through the greater representation of women in decision-making processes", - "values": [ - "Disabilities", - "Rights of the Child", - "Women's rights" - ] - }, - { - "text": "Promote progress towards the promotion and protection of human rights", - "values": [ - "General" - ] - }, - { - "text": "Sign and/or ratify the OP-CAT, CPED and ICRMW", - "values": [ - "Detention", - "Enforced disappearances", - "International instruments", - "Labour", - "Migrants", - "Torture and other CID treatment" - ] - }, - { - "text": "Place priority on the vital area of education, especially the education of girls in rural areas", - "values": [ - "Right to education", - "Rights of the Child", - "Women's rights" - ] - }, - { - "text": "Continue implementing measures to protect elderly workers ", - "values": [ - "Labour" - ] - }, - { - "text": "Designate an independent national preventive mechanism in consultation with civil society, take all required measures to effectively prevent torture.", - "values": [ - "Civil society", - "Torture and other CID treatment" - ] - }, - { - "text": "Enhance its efforts to prevent and root out all kind of national and ethnic intolerance, as well as condemn any incitement to ethnic and religious hatred and hate speech against the Roma in particular", - "values": [ - "Freedom of religion and belief", - "Minorities", - "Racial discrimination" - ] - }, - { - "text": "Circulate and implement the United Nations Rules for the Treatment of Women Prisoners and Non-custodial Measures for Women Offenders (Bangkok Rules) as part of its Law and Justice Sector Plan and seek appropriate assistance from OHCHR and the United Nations Office on Drugs and Crime in its implementation ", - "values": [ - "Detention", - "Technical assistance and cooperation", - "Women's rights" - ] - }, - { - "text": "Continue efforts to implement its commitments, as described in paragraphs 67, 71 and 76 of the national report with regard to the protection of displaced persons, women and children.", - "values": [ - "Internally displaced persons", - "Rights of the Child", - "Women's rights" - ] - }, - { - "text": "Continue efforts to sanction discrimination and violence against women and ensure that there are adequate mechanisms for the provision of assistance and protection to women victims of crime", - "values": [ - "Women's rights" - ] - }, - { - "text": "Ensure that international obligations concerning due process and fair trial rights are respected and fulfilled at all times", - "values": [ - "Justice" - ] - }, - { - "text": "Continue efforts aimed at ending the exploitation of children through child prostitution and trafficking, and strengthen measures to fight violence against women and domestic violence", - "values": [ - "Rights of the Child", - "Trafficking", - "Women's rights" - ] - }, - { - "text": "Take the measures necessary to make the ordinary justice system effective and independent of political pressures, devoting particular attention to the problem of violence against women", - "values": [ - "Justice", - "Women's rights" - ] - }, - { - "text": "Take further measures to facilitate access to health-care services for the enjoyment of the right to health by all", - "values": [ - "Right to health" - ] - }, - { - "text": "Repeal the provisions establishing the mandatory detention of persons entering its territory irregularly", - "values": [ - "Detention", - "Migrants" - ] - }, - { - "text": "Issue a comprehensive anti-discrimination law and update the national action plan in order to dedicate special attention to addressing the practices of law-enforcement officials, as well as the legal and practical measures needed to combat incitement and hate crimes ", - "values": [ - "Racial discrimination" - ] - }, - { - "text": "Take all appropriate measures to eliminate illiteracy throughout the country ", - "values": [ - "Right to education" - ] - }, - { - "text": "Continue the extraordinary initiatives of cooperation with developing countries, as a way to achieve the full realization of the right to development", - "values": [ - "Development" - ] - }, - { - "text": "Develop transparent procedures for prior consultations with indigenous peoples on the use of indigenous lands", - "values": [ - "Indigenous peoples", - "Right to land" - ] - }, - { - "text": "Take further actions in protecting the rights of the child by prohibiting all corporal punishment of children as required by the Convention on the Rights of the Child", - "values": [ - "International instruments", - "Rights of the Child" - ] - }, - { - "text": "Amend the Code of Criminal Practice to stipulate that only individuals aged over 18 will be tried as adults. As a result, the executions of any individuals who were less than 18 years old when they committed the crime should be commuted to a custodial sentence", - "values": [ - "Justice", - "Rights of the Child" - ] - }, - { - "text": "Strengthen measures to combat violence against children", - "values": [ - "Rights of the Child" - ] - }, - { - "text": "Amend the trade union act in order to guarantee freedom of association and the effective recognition of the right of collective bargaining", - "values": [ - "Freedom of association and peaceful assembly", - "Labour" - ] - }, - { - "text": "Accede to the Convention against Torture and Other Cruel, Inhuman or Degrading Treatment or Punishment and align its legislation accordingly", - "values": [ - "International instruments", - "Torture and other CID treatment" - ] - }, - { - "text": "Prohibit and eliminate all forms of corporal punishment ", - "values": [ - "Torture and other CID treatment" - ] - }, - { - "text": "Amend the Criminal Law to recognizes hate speech against lesbian, gay, bisexual and transgender persons ", - "values": [ - "Sexual Orientation and Gender Identity" - ] - }, - { - "text": "Take steps toward accession to ILO Convention 189", - "values": [ - "International instruments", - "Labour" - ] - }, - { - "text": "Continue and deepen the measures necessary for the investigation and punishment in the courts of persons suspected of participation in war crimes and crimes against humanity", - "values": [ - "Justice" - ] - }, - { - "text": "Finalize without further delay the fifth report to the Committee on Economic, Social and Cultural Rights, the sixth report to the Human Rights Committee and the third report to the Committee against Torture, overdue since 2012 ", - "values": [ - "CP rights - general", - "ESC rights - general", - "Torture and other CID treatment", - "Treaty bodies" - ] - }, - { - "text": "Continue adopting appropriate measures to secure the human rights of asylum-seekers and irregular migrants ", - "values": [ - "Asylum-seekers - refugees", - "Migrants" - ] - }, - { - "text": "Strengthen the capacity of the Government of Afghanistan to implement its national development strategy, particularly to achieve human rights benchmarks.", - "values": [ - "Development" - ] - }, - { - "text": "Repeal all legal provisions that discriminate against women.", - "values": [ - "Women's rights" - ] - }, - { - "text": "Proceed with the establishment of the Truth and Reconciliation Commission in full transparency and establish an independent special tribunal to examine war crimes, as recommended during the first UPR", - "values": [ - "Justice", - "UPR process" - ] - }, - { - "text": "Cooperate with the special procedure mandate holders of the Human Rights Council by responding positively to their requests for visits", - "values": [ - "Special procedures", - "Technical assistance and cooperation" - ] - }, - { - "text": "Continue to move forward in the promotion and protection of the human rights of the minorities, in particular in the areas of health, employment and housing ", - "values": [ - "Development", - "Minorities", - "Right to health", - "Right to housing" - ] - }, - { - "text": "Increase professional training and adopt guidelines for improving the conduct of police, prosecution, and courts in investigating bias-motivated crimes and cases of domestic violence", - "values": [ - "Human rights education and training", - "Rights of the Child", - "Women's rights" - ] - }, - { - "text": "Repeal immediately the Public Emergency Regulations in force since 10 April 2009", - "values": [ - "Justice" - ] - }, - { - "text": "Reinforce legal protections against discrimination to include sexual orientation and gender identity as prohibited grounds for discrimination ", - "values": [ - "Sexual Orientation and Gender Identity" - ] - }, - { - "text": "Increase children's access to the education system", - "values": [ - "Right to education", - "Rights of the Child" - ] - }, - { - "text": "Continue to achieve its objective of establishing a society free from crimes ", - "values": [ - "Public security" - ] - }, - { - "text": "Make sure that the rules which establish the scope of action of the law and order forces prevent acts of violence against women", - "values": [ - "Women's rights" - ] - }, - { - "text": "Invite the Special Rapporteur on torture without delay and facilitate his visit to the country", - "values": [ - "Special procedures", - "Torture and other CID treatment" - ] - }, - { - "text": "Guarantee freedom of expression and assembly, including by civil society organizations, notably in the context of public gatherings", - "values": [ - "Civil society", - "Freedom of association and peaceful assembly", - "Freedom of opinion and expression" - ] - }, - { - "text": "Continue to strengthen successful programmes to promote employment, food and assistance to the most vulnerable in combating poverty and social inequality ", - "values": [ - "Development", - "Poverty", - "Right to food" - ] - }, - { - "text": "Strengthen poverty reduction policies ", - "values": [ - "Poverty" - ] - }, - { - "text": "Advance in designing a health programme allowing to tackle Malaria, Tuberculosis and HIV/AIDS, and continuing decreasing the child and maternal mortality rates, and increase life expectancy ", - "values": [ - "HIV - Aids", - "Right to health", - "Rights of the Child", - "Women's rights" - ] - }, - { - "text": "Set in place a comprehensive, national coordinated strategy to address gender-based violence in order to ensure the implementation of the legal framework and to tackle the high prevalence of sexual and gender-based violence, including against children", - "values": [ - "Rights of the Child", - "Women's rights" - ] - }, - { - "text": "Put forward every effort to ensure that the election process is both free and fair", - "values": [ - "Elections" - ] - }, - { - "text": "Strengthen legal and other measures to address bias-motivated crimes and ensure the prompt and effective prosecution of racist and xenophobic hate crimes", - "values": [ - "Racial discrimination" - ] - }, - { - "text": "Take concrete measures to guarantee access to justice as well as fair and timely public trials by allocating sufficient resources to the judiciary and by improving the administration of justice", - "values": [ - "Justice" - ] - }, - { - "text": "Discourage State officials from continuing the current practice of instituting lawsuit against journalists and human rights defenders that publish criticism", - "values": [ - "Freedom of the press", - "Human rights defenders" - ] - }, - { - "text": "Pursue efforts to promote the right to work with a view to combating unemployment whose rate has reached 18.8 percent", - "values": [ - "Development" - ] - }, - { - "text": "As a follow-up to the recommendations in paragraphs 106.10 and 106.39 from the first cycle and paragraph 122.77 from the second cycle, establish a systematic consultation and follow-up mechanism with civil society and non-governmental organizations on the implementation of recommendations formulated in the framework of the universal periodic review", - "values": [ - "UPR process" - ] - }, - { - "text": "End the practice of arbitrarily revoking citizenship, especially where this renders individuals stateless and forces them into exile", - "values": [ - "Statelessness and the right to nationality" - ] - }, - { - "text": "Continue efforts to achieve gender equality", - "values": [ - "Women's rights" - ] - }, - { - "text": "Further enhance its measures for the promotion and protection of human rights through, among others, developing a comprehensive human rights national action plan", - "values": [ - "General" - ] - }, - { - "text": "Continue its economic and social policies, and to pay more attention and efforts on improving the quality of life of people living in rural areas and suffering from social exclusion ", - "values": [ - "ESC rights - general" - ] - }, - { - "text": "Invite the African Commission and United Nations special rapporteurs on human rights defenders for a joint visit ", - "values": [ - "Human rights defenders", - "Special procedures" - ] - }, - { - "text": "Continue to seek technical cooperation and assistance from the international community and relevant international and regional stakeholders, particularly UNMIS and UNAMID, for support in strengthening its human rights institutions and implementing the UPR recommendations ", - "values": [ - "Technical assistance and cooperation", - "UPR process" - ] - }, - { - "text": "Ensure that detention centers for migrants and the treatment they receive meet the basic conditions and universal human rights law ", - "values": [ - "Detention", - "Migrants" - ] - }, - { - "text": "Designate legal guardians for all unaccompanied children as required by Bulgarian law, to ensure that their basic needs are met as children and that their interests are protected", - "values": [ - "Rights of the Child" - ] - }, - { - "text": "The delegation stated that the 52 recommendations supported by the Comoros represented a commitment and reiterated their firm intention to implement them. The country was deeply attached to the ideals of human rights and reiterated that the outcome of the review would be fully embraced by the Comoros.", - "values": [ - "General" - ] - }, - { - "text": "Create a system of accountability to investigate and prosecute human rights violators in Nepal's military and law enforcement agencies ", - "values": [ - "Justice" - ] - }, - { - "text": "Intensify its engagement with the international community to share its experiences in strengthening good governance and the land reform programme with a view to effectively fulfilling the Government's duties with accountability and pursuing equitable and efficient management of the distribution and utilization of land ", - "values": [ - "Justice", - "Right to land" - ] - }, - { - "text": "Strengthen training of public order officials, social workers and prosecutors on the way to investigate and verify the complaints of sexual exploitation of children, and prosecute the authors of these offenses, taking into account child sensitivity ", - "values": [ - "Rights of the Child" - ] - }, - { - "text": "Strengthen its cooperation with the Treaty Bodies ", - "values": [ - "Treaty bodies" - ] - }, - { - "text": "In order to eradicate FGM, increase public advocacy and training of judiciary and public officials, traditional leaders and parents, both men and women ", - "values": [ - "Human rights education and training", - "Rights of the Child", - "Torture and other CID treatment", - "Women's rights" - ] - }, - { - "text": "Submit overdue reports to the Human Rights Committee, the Committee on Economic, Social and Cultural Rights and the Committee against Torture", - "values": [ - "CP rights - general", - "ESC rights - general", - "Torture and other CID treatment", - "Treaty bodies" - ] - }, - { - "text": "Strengthen the adoption of socioeconomic programmes which promote the empowerment of women and their participation in public and political life", - "values": [ - "Women's rights" - ] - }, - { - "text": "Repeal articles 227 bis and 239 of the Criminal Code to prevent perpetrators of rape and abduction from avoiding prosecution by marrying their adolescent victims", - "values": [ - "Rights of the Child" - ] - }, - { - "text": "Encourage the participation of women in Parliament and increase of women participation in the different decision making processes", - "values": [ - "Women's rights" - ] - }, - { - "text": "Take necessary measures to open the office of the Federal Ethics and Anti-Corruption Commission in the remaining two national regional States ", - "values": [ - "Corruption" - ] - }, - { - "text": "Bring state laws and federal legislation in line with the framework established by the General Law for Women's Access to a Life Free of Violence", - "values": [ - "Women's rights" - ] - }, - { - "text": "Prohibit executions of minors pursuant to the Children's Act of 2010 ", - "values": [ - "Death penalty", - "Rights of the Child" - ] - }, - { - "text": "Take measures to reduce the number of teenage pregnancies, to provide a sufficient level of youth health services, especially in rural areas, taking into account the recommendations of the Committee on the Rights of the Child, among other bodies ", - "values": [ - "Rights of the Child", - "Treaty bodies" - ] - }, - { - "text": "Amend its legislation on asylum seekers and adopt a national programme for the integration of refugees", - "values": [ - "Asylum-seekers - refugees" - ] - }, - { - "text": "Cooperate with the High Commissioner for Human Rights, treaty bodies and special procedures mandate holders ", - "values": [ - "Special procedures", - "Technical assistance and cooperation", - "Treaty bodies" - ] - }, - { - "text": "Take further steps in advancing the protection of women and children, by ratifying the Optional Protocol to the Convention on the Elimination of All Forms of Discrimination against Women as well as the Optional Protocol to the Convention on the Rights of the Child on the sale of children, child prostitution and child pornography ", - "values": [ - "International instruments", - "Rights of the Child", - "Trafficking", - "Women's rights" - ] - }, - { - "text": "Fully implement all obligations under the Rome Statute in its national legislation, including by incorporating provisions to cooperate promptly and fully with the ICC, and to investigate and prosecute genocide, crimes against humanity and war crimes effectively before its national courts", - "values": [ - "International instruments", - "Justice" - ] - }, - { - "text": "Lift its declarations concerning articles 2 and 15 of the CEDAW and change the legislative provisions that still discriminate against women ", - "values": [ - "International instruments", - "Women's rights" - ] - }, - { - "text": "Promote the reintegration of child soldiers", - "values": [ - "International humanitarian law", - "Rights of the Child" - ] - }, - { - "text": "Issue a standing invitation for United Nations human rights special procedures and accept all request visits by mandate holders", - "values": [ - "Special procedures" - ] - }, - { - "text": "Fully align its national legislation with all obligations under the Rome Statute, including by incorporating provisions on full and prompt cooperation with the ICC ", - "values": [ - "International instruments", - "Justice" - ] - }, - { - "text": "Introduce alternatives to the military service for conscientious objectors, abolish prison sentences and release all persons who have been incarcerated for having refused the military service in the absence of a civilian alternative", - "values": [ - "Freedom of religion and belief" - ] - }, - { - "text": "Take actions at all levels to address the interlinked root causes of preventable mortality and morbidity of children under 5 and consider applying the "Technical guidance on the application of a human rights-based approach to the implementation of policies and programmes to reduce and eliminate preventable mortality and morbidity of children under 5 years of age", A/HRC/27/31", - "values": [ - "Right to health", - "Rights of the Child" - ] - }, - { - "text": "Reinforce efforts to improve the situation of poverty, education, health, gender equality and advancement of women, with assistance from the international community ", - "values": [ - "Poverty", - "Right to education", - "Right to health", - "Technical assistance and cooperation", - "Women's rights" - ] - }, - { - "text": "Investigate allegations of extrajudicial killings, torture and other cruel and inhuman or degrading treatment and bring perpetrators to justice", - "values": [ - "Extrajudicial executions", - "Torture and other CID treatment" - ] - }, - { - "text": "Take steps to ensure the full independence and impartiality of the judiciary", - "values": [ - "Justice" - ] - }, - { - "text": "Address the issue of the use of child labour in the country, while supporting and facilitating children's access to education, in particular in rural areas.", - "values": [ - "Labour", - "Right to education", - "Rights of the Child" - ] - }, - { - "text": "Repeal all national legislation implying the application of the death penalty and declare a de jure moratorium, commute all death sentences to prison sentences, and ratify the Second Optional Protocol to the International Covenant on Civil and Political Rights ", - "values": [ - "Death penalty", - "International instruments" - ] - }, - { - "text": "Actively counter any ethnic strife and armed conflict", - "values": [ - "Minorities" - ] - }, - { - "text": "Consider possible revision of its legislation on administrative restrictions in order to provide a better protection of freedom of religion or belief", - "values": [ - "Freedom of religion and belief" - ] - }, - { - "text": "Implement a national system that will enable the Government to have a better and more fluid relationship with the United Nations human rights bodies, including invitations to the relevant special procedures", - "values": [ - "Special procedures" - ] - }, - { - "text": "Continue efforts related to reducing the crime rate", - "values": [ - "Public security" - ] - }, - { - "text": "Continue its efforts by ratifying the International Convention on the Protection of the Rights of All Migrant Workers and Members of Their Families ", - "values": [ - "International instruments", - "Labour", - "Migrants" - ] - }, - { - "text": "Adopt a comprehensive mental health policy and plan of action based on a human rights approach", - "values": [ - "Right to health" - ] - }, - { - "text": "Revise the Family Law to ensure gender equality ", - "values": [ - "Women's rights" - ] - }, - { - "text": "Guarantee equal rights for all citizens, and fight against all forms of discrimination based on sexual orientation or gender identity", - "values": [ - "Sexual Orientation and Gender Identity" - ] - }, - { - "text": "Strengthen the capacity of the criminal police to deal with crimes related to child pornography on the Internet and inform children and their parents about the safe use of the Internet ", - "values": [ - "Rights of the Child" - ] - }, - { - "text": "Continue efforts with regard to the ratification and implementation of core human rights treaties, and develop further the institutional framework for the implementation of human rights standards contained therein ", - "values": [ - "International instruments" - ] - }, - { - "text": "Seek assistance of the international community in order to be supported in the implementation of recommendations received during this session ", - "values": [ - "Technical assistance and cooperation", - "UPR process" - ] - }, - { - "text": "Strengthen the rule of law as enshrined in the Constitution, and ensure the independence of the judiciary.", - "values": [ - "Justice" - ] - }, - { - "text": "Invite the Special Rapporteur on the independence of judges and lawyers to visit Rwanda", - "values": [ - "Justice", - "Special procedures" - ] - }, - { - "text": "Consider issuing a standing invitation to all special procedures mandate-holders ", - "values": [ - "Special procedures" - ] - }, - { - "text": "Bring the Internet Law in line with International and European standards, including case law of the European Court of Human Rights on the rights to freedom of expression and to privacy", - "values": [ - "Freedom of opinion and expression", - "Privacy" - ] - }, - { - "text": "Implement promptly the United Nations Convention against Corruption ", - "values": [ - "Corruption", - "International instruments" - ] - }, - { - "text": "Continue its positive engagements and close cooperation with the various mechanisms of the Human Rights Council, with a view to improving further the steps currently being undertaken in the promotion and protection of human rights of its people", - "values": [ - "Special procedures", - "UPR process" - ] - }, - { - "text": "Take effective measures to put an end to ethnic and racial profiling", - "values": [ - "Minorities", - "Racial discrimination" - ] - }, - { - "text": "Fully implement the advisory opinion of the ICJ concerning the separation wall", - "values": [ - "Freedom of movement" - ] - }, - { - "text": "Continue efforts to reduce poverty and promote development, with a view to enhancing the effective enjoyment of all human rights for its people, especially economic and social rights", - "values": [ - "Development", - "ESC rights - general", - "Poverty" - ] - }, - { - "text": "Ensure that the 2007 law making slavery a criminal offence is effectively enforced and that all people suspected of slavery are property prosecuted ", - "values": [ - "Other" - ] - }, - { - "text": "Ratify, until the next universal periodic review, ICESCR, the Convention on the Rights of the Child, Protocols I and II of the Geneva Conventions of 12 August 1949, ILO Conventions no. 87 - on freedom of association - and no. 98 - on the right to collective bargaining - as well as withdraw the reservation made to article 4 of the International Convention on the Elimination of Racial Discrimination ", - "values": [ - "International humanitarian law", - "International instruments" - ] - }, - { - "text": "Redouble its efforts in the fight against domestic violence by ensuring effective investigation into incidents of domestic violence and providing adequate support and assistance to victims", - "values": [ - "Rights of the Child", - "Women's rights" - ] - }, - { - "text": "Issue invitations to all special procedures to enable them to visit the country and look into developments in the area of human rights ", - "values": [ - "Special procedures" - ] - }, - { - "text": "Request technical assistance from the relevant international human rights mechanisms, whenever there is a need to carry on building the capacities of the country to face challenges, in particular in the area of the judiciary and the preparation of human rights periodic reports", - "values": [ - "Justice", - "Technical assistance and cooperation", - "Treaty bodies" - ] - }, - { - "text": "Continue increasing the public budget on health, education and social well-being ", - "values": [ - "Right to education", - "Right to health" - ] - }, - { - "text": "Sign and ratify the International Convention for the Protection of All Persons from Enforced Disappearance ", - "values": [ - "Enforced disappearances", - "International instruments" - ] - }, - { - "text": "In view of the increasing challenges posed by climate changes, develop a human rights-based climate change adaptation strategy ", - "values": [ - "Environment" - ] - }, - { - "text": "Continue to take measures to prevent and combat racially motivated crimes as well as hate crimes ", - "values": [ - "Racial discrimination" - ] - }, - { - "text": "Strengthen policies for gender equality to ensure participation of women in the political and labour arenas, both public and private, particularly women from ethnic minorities", - "values": [ - "Minorities", - "Women's rights" - ] - }, - { - "text": "Immediately impose a moratorium on executions, with a view to complete abolition of the death penalty, make public information about past executions and death sentences handed down by the courts, and review the Penal Code and the Misuse of Drugs Act, with a view to repealing all provisions on mandatory death sentencing and removing all presumption of guilt clauses ", - "values": [ - "Death penalty", - "Justice" - ] - }, - { - "text": "Take further efficient measures to ensure that all people deprived of their liberty are held in conditions that meet international standards and that the recommendations of the European Committee for the Prevention of Torture and Inhuman or Degrading Treatment of Punishment regarding per-trial detention are fully implemented.", - "values": [ - "Detention", - "Torture and other CID treatment" - ] - }, - { - "text": "Promptly investigate any continued allegations of child, early and forced marriage, especially in the case of young girls, and undertake measures to prevent girls from being forced to withdraw from school ", - "values": [ - "Right to education", - "Rights of the Child", - "Women's rights" - ] - }, - { - "text": "Develop laws that protect freedom of religion or belief and freedom of expression", - "values": [ - "Freedom of opinion and expression", - "Freedom of religion and belief" - ] - }, - { - "text": "Amend sections 44 (d), 44 (f) and 30 (1) (a) of the Non-Governmental Organizations Act to align them with the Ugandan Constitution and international human rights law ", - "values": [ - "Civil society", - "Freedom of association and peaceful assembly", - "International instruments" - ] - }, - { - "text": "Continue to implement the necessary socio-economic policies to reduce poverty especially among women and children ", - "values": [ - "ESC rights - general", - "Poverty", - "Rights of the Child", - "Women's rights" - ] - }, - { - "text": "Become a party to the CPED", - "values": [ - "Enforced disappearances", - "International instruments" - ] - }, - { - "text": "Increase efforts to pass legislation on sexual and reproductive rights in accordance with the international obligations assumed under the Convention on the Elimination of All Forms of Discrimination against Women", - "values": [ - "Right to health", - "Treaty bodies", - "Women's rights" - ] - }, - { - "text": "Implement freedom of association, expression, assembly and peaceful demonstration in accordance with the International Covenant on Civil and Political Rights", - "values": [ - "CP rights - general", - "Freedom of association and peaceful assembly", - "Freedom of opinion and expression", - "International instruments" - ] - }, - { - "text": "Continue to emphasize the promotion and protection of human rights in areas such as poverty eradication, justice administration, education, public health and gender equality for all, including for those on the Caribbean coast", - "values": [ - "Justice", - "Poverty", - "Right to education", - "Right to health", - "Women's rights" - ] - }, - { - "text": "Establish mechanisms for the identification of victims of trafficking and their protection ", - "values": [ - "Trafficking" - ] - }, - { - "text": "Provide more human rights education and training programmes for law enforcement officials and agents", - "values": [ - "Human rights education and training" - ] - }, - { - "text": "Implement effectively the National Plan of Action on Combating Human Trafficking ", - "values": [ - "Trafficking" - ] - }, - { - "text": "In view of the trajectory in recent years of increased instances of human trafficking to and via Iceland, the government may need to pay continued attention to help victims of trafficking ", - "values": [ - "Trafficking" - ] - }, - { - "text": "Elaborate and implement a national action plan on the use of mercury in the artisanal mining sector in order to protect the health of workers involved in the work of this sector as well as the environment", - "values": [ - "Business and human rights", - "Environment" - ] - }, - { - "text": "Continue with the steps already taken on the right to life, liberty and security of the person and in particular to continue the moratorium on the death penalty and work towards eliminating it", - "values": [ - "Death penalty" - ] - }, - { - "text": "Ensure the allocation of adequate resources for the implementation of Organic Law 1/2004 on measures of protection against gender violence, giving special attention to its accessibility through a national action plan", - "values": [ - "Women's rights" - ] - }, - { - "text": "Continue to work to strengthen national human rights institutions, while consolidating the achievements in human rights ", - "values": [ - "National Human Rights Institution" - ] - }, - { - "text": "Step up and intensify programmes to combat poverty, which would help to improve the enjoyment of economic, social and cultural rights ", - "values": [ - "ESC rights - general", - "Poverty" - ] - }, - { - "text": "Extend measures to address the problem of hate speech, especially by ensuring effective investigations", - "values": [ - "Racial discrimination" - ] - }, - { - "text": "Reinforce efforts to combat discrimination against women.", - "values": [ - "Women's rights" - ] - }, - { - "text": "Further its efforts to ban torture and other ill-treatment in conformity with international human rights standards, while combating terrorism", - "values": [ - "Counter-terrorism", - "Torture and other CID treatment" - ] - }, - { - "text": "Continue the implementation of the national health programme for indigenous peoples in order to reduce inequalities in the health status of indigenous peoples", - "values": [ - "Indigenous peoples", - "Right to health" - ] - }, - { - "text": "Accede to the United Nations Convention against Corruption and ensure a proper audit of funds allocated for social services", - "values": [ - "Corruption", - "International instruments" - ] - }, - { - "text": "Adopt all necessary measures to reduce prejudice and discrimination against the LGBT community, including through the training of the police, prosecutors and judges to respond effectively to violence against LGBT activists and to ensure the adequate protection of LGBT persons in the work place", - "values": [ - "Human rights education and training", - "Sexual Orientation and Gender Identity" - ] - }, - { - "text": "Present its initial report, which is overdue since 2005, to the Committee against Torture", - "values": [ - "Torture and other CID treatment", - "Treaty bodies" - ] - }, - { - "text": "Pursue fulfilling its obligations under international human rights mechanisms in the future", - "values": [ - "Special procedures", - "Treaty bodies", - "UPR process" - ] - }, - { - "text": "Adopt a specific legislation to explicitly prohibit all forms of corporal punishments ", - "values": [ - "Torture and other CID treatment" - ] - }, - { - "text": "Provide the Women and Gender Equality Commission with adequate human, financial and technical resources, so as to consolidate its role in gender promotion and mainstreaming", - "values": [ - "Women's rights" - ] - }, - { - "text": "Adopt measures to criminalize the incitement to imminent violence on the basis of religion and belief", - "values": [ - "Freedom of religion and belief" - ] - }, - { - "text": "Consider the issuance of a standing invitation to the special procedure mandate holders", - "values": [ - "Special procedures" - ] - }, - { - "text": "Share its best practices in the field of human rights ", - "values": [ - "General" - ] - }, - { - "text": "Accede to the Rome Statute of the International Criminal Court and to the Agreement on Privileges and Immunities of the Court", - "values": [ - "International instruments", - "Justice" - ] - }, - { - "text": "Ensure respect for and protection of lesbian, gay, bisexual, transgender and intersex persons through measures such as the decriminalization of homosexual relations in the armed and security forces, the recognition of same-sex couples and the right to change identity for transgender people", - "values": [ - "Sexual Orientation and Gender Identity" - ] - }, - { - "text": "Amend the relevant laws so that all persons with disabilities could vote and stand for election", - "values": [ - "Disabilities", - "Elections" - ] - }, - { - "text": "Speed up the implementation of the national gender policy and to establish the national gender council by providing appropriate resources", - "values": [ - "Women's rights" - ] - }, - { - "text": "Consider to increase the level of official development assistance", - "values": [ - "Technical assistance and cooperation" - ] - }, - { - "text": "Bring its National Human Rights Council in line with the Paris Principles", - "values": [ - "National Human Rights Institution" - ] - }, - { - "text": "Continue efforts to improve opportunities for women in order to ensure that they participate on an equal footing in public life and all sectors of society", - "values": [ - "Women's rights" - ] - }, - { - "text": "Increase women's participation in decision-making positions", - "values": [ - "Women's rights" - ] - }, - { - "text": "Implement previous recommendations to guarantee the protection of the civil and political rights of all minority groups", - "values": [ - "CP rights - general", - "Minorities", - "UPR process" - ] - }, - { - "text": "Continue actions aimed at the eradication of acts of racism and other forms of discrimination and intolerance", - "values": [ - "Racial discrimination" - ] - }, - { - "text": "Adopt immediate measures to put an end to the belief that witchcraft is connected to albinism, with a view to end the killing or maiming of children born with this condition", - "values": [ - "Minorities", - "Rights of the Child" - ] - }, - { - "text": "Take measures to facilitate the effective performance of the functions of the Ombudsman, ensuring the adequate provision of financial resources for its work and an appropriate follow-up of its recommendations ", - "values": [ - "National Human Rights Institution" - ] - }, - { - "text": "Continue to work closely with international human rights institutions", - "values": [ - "Technical assistance and cooperation" - ] - }, - { - "text": "Take steps to put an end to extrajudicial executions, enforced disappearances, illegal arrests and acts of torture perpetrated by the police corps, and private security or paramilitary groups, and to investigate actions of the police dismantling all groups created in the margin of law", - "values": [ - "Enforced disappearances", - "Extrajudicial executions", - "Human rights violations by state agents", - "Torture and other CID treatment" - ] - }, - { - "text": "Consolidate current policies for the preventive risk management of violations to the right to life, to liberty, integrity and personal security ", - "values": [ - "General" - ] - }, - { - "text": "Prioritize combating poverty and unemployment, which are two essential issues to promote social and economic rights, which necessitate the support of the international community and its relevant institutions ", - "values": [ - "Development", - "ESC rights - general", - "Poverty", - "Technical assistance and cooperation" - ] - }, - { - "text": "Continue its efforts aimed at ensuring equal access to education, including to children in vulnerable and disadvantaged situations", - "values": [ - "Right to education", - "Rights of the Child" - ] - }, - { - "text": "Adopt the Media Policy in Parliament ", - "values": [ - "Freedom of the press" - ] - }, - { - "text": "Ensure the protection of journalists, media personnel, civil society activists and human rights defenders against the attacks and prosecute those responsible for such attacks ", - "values": [ - "Civil society", - "Freedom of the press", - "Human rights defenders" - ] - }, - { - "text": "Ensure the implementation of existing laws guaranteeing non- discrimination and adopt appropriate legislation to ensure that all children enjoy all rights, as recommended by the Committee on the Rights of the Child", - "values": [ - "Rights of the Child", - "Treaty bodies" - ] - }, - { - "text": "Prohibit discrimination against persons because of their real or imputed sexual orientation, gender identity or expression, and ensure adequate protection for lesbian, gay, bisexual, transgender and intersex persons, sex workers, and other marginalized groups", - "values": [ - "Sexual Orientation and Gender Identity" - ] - }, - { - "text": "Redouble its efforts to eradicate child labour and all forms of exploitation, abuse and violence against children", - "values": [ - "Labour", - "Rights of the Child" - ] - }, - { - "text": "Reinforce measures to ensure that the judiciary is independent and free of political and economic interference and combat irregularities and delays in the administration of justice", - "values": [ - "Justice" - ] - }, - { - "text": "Continue efforts to restore security and stability and to achieve a national comprehensive reconciliation", - "values": [ - "Justice", - "Public security" - ] - }, - { - "text": "Ensure that the national human rights programme for 2013-2018 takes full account of recommendations accepted by the Government at the 2nd UPR cycle", - "values": [ - "UPR process" - ] - }, - { - "text": "Create national and local-level systems to protect children from all forms of exploitation, including child labour", - "values": [ - "Labour", - "Rights of the Child" - ] - }, - { - "text": "Increase public actions to allow the access to education, health, employment and decent housing for the Roma community, and put emphasis on combating violence against Roma women", - "values": [ - "Minorities", - "Racial discrimination" - ] - }, - { - "text": "Continue defending the country's independence and sovereignty ", - "values": [ - "Other" - ] - }, - { - "text": "Continue implementing strategies and plans for national socio-economic development ", - "values": [ - "Development" - ] - }, - { - "text": "Reduce gradually the number of persons sentenced to death, and ensure that efforts on this matter are pursued", - "values": [ - "Death penalty" - ] - }, - { - "text": "Promote the inclusiveness of persons with disabilities", - "values": [ - "Disabilities" - ] - }, - { - "text": "Implement effectively the Juvenile Justice and Welfare Act as a mandate and do not pass legislation lowering the minimum age of criminal responsibility to avoid further criminalization of minor children and their ill-treatment and abuse in detention facilities", - "values": [ - "Detention", - "Justice", - "Rights of the Child" - ] - }, - { - "text": "Take all necessary measures to prevent, investigate and prosecute violence against lesbian, gay, bisexual, transgender and intersex persons", - "values": [ - "Sexual Orientation and Gender Identity" - ] - }, - { - "text": "Take all necessary steps to ensure the recovery, rehabilitation and reintegration of child soldiers and address the underlying exclusion and marginality, which makes rural children particularly vulnerable to recruitment by armed groups", - "values": [ - "International humanitarian law", - "Rights of the Child" - ] - }, - { - "text": "Ensure all children of asylum seekers are protected", - "values": [ - "Asylum-seekers - refugees", - "Rights of the Child" - ] - }, - { - "text": "Ratify the International Covenant on Civil and Political Rights and its protocols", - "values": [ - "CP rights - general", - "Death penalty", - "International instruments" - ] - }, - { - "text": "Train public officials in human rights, in particular the police and the military, including on the excessive use of force", - "values": [ - "Human rights education and training" - ] - }, - { - "text": "Review some of the laws that have been promulgated that prohibited clothes that reflect a religious connotation", - "values": [ - "Freedom of religion and belief" - ] - }, - { - "text": "Combat child labour with an emphasis on its worst forms in accordance with CRC and ILO standards, and consider seeking technical assistance from ILO on this matter ", - "values": [ - "International instruments", - "Labour", - "Rights of the Child", - "Technical assistance and cooperation" - ] - }, - { - "text": "Provide the necessary assistance to the victims of domestic violence, including through the adoption of rehabilitation and reintegration programmes ", - "values": [ - "Rights of the Child", - "Women's rights" - ] - }, - { - "text": "Extend an open invitation to all Special Procedures of the Human Rights Council ", - "values": [ - "Special procedures" - ] - }, - { - "text": "Establish swiftly a robust national preventive mechanism in accordance with the Optional Protocol to the Convention against Torture", - "values": [ - "Detention", - "International instruments", - "Torture and other CID treatment" - ] - }, - { - "text": "Implement policies to ensure the promotion of the rights of women and children, specifically with regard to combating domestic violence and ending discrimination against women ", - "values": [ - "Rights of the Child", - "Women's rights" - ] - }, - { - "text": "Prevent and combat all forms of discrimination and eliminate violence against women, including domestic violence", - "values": [ - "Rights of the Child", - "Women's rights" - ] - }, - { - "text": "Share other countries' experiences and achievements in the field of managing institutions that provide education for people with special needs", - "values": [ - "Disabilities", - "Right to education" - ] - }, - { - "text": "Fully implement school health policies and the policy on adolescent health to provide reproductive health education for adolescents and prevent teenage pregnancy", - "values": [ - "Right to education", - "Right to health", - "Rights of the Child" - ] - }, - { - "text": "Engage with civil society in the follow-up to and implementation of the universal periodic review process.", - "values": [ - "Civil society", - "UPR process" - ] - }, - { - "text": "Continue to strengthen economic, social and cultural development with full participation of the population in public and security affairs, boost socioeconomic development, industrialization and modernization, and achieve the Millennium Development Goals ", - "values": [ - "Development", - "ESC rights - general" - ] - }, - { - "text": "Develop, in consultation with all relevant actors, including representatives of indigenous communities, a comprehensive action plan to target gender-based violence against women, with clear goals and timelines for their implementation ", - "values": [ - "Indigenous peoples", - "Women's rights" - ] - }, - { - "text": "Take measures to increase the schooling rate, particularly in rural areas", - "values": [ - "Right to education" - ] - }, - { - "text": "Enact the Children's Protection and Welfare Bill 2004 ", - "values": [ - "Rights of the Child" - ] - }, - { - "text": "Ensure the provision of assistance and the accessibility of legal aid to all victims of trafficking, in line with regional and international human rights standards", - "values": [ - "International instruments", - "Trafficking" - ] - }, - { - "text": "Pursue ongoing efforts and negotiations that have as an objective to end the recurring armed conflicts in the eastern province of the country", - "values": [ - "International humanitarian law" - ] - }, - { - "text": "Implement, in cooperation with the international community, effective programmes aimed at reducing poverty, especially in the rural areas of the country ", - "values": [ - "Poverty" - ] - }, - { - "text": "Fulfill specific recommendations of treaty bodies in respect of cases of discrimination against Roma.", - "values": [ - "Minorities", - "Treaty bodies" - ] - }, - { - "text": "Take necessary measures with the aim of ensuring that each case of abuse of power by law enforcement officers is properly investigated and perpetrators brought to justice ", - "values": [ - "Human rights violations by state agents" - ] - }, - { - "text": "Combat racial profiling and Islamophobia on a non-discriminatory basis applicable to all religious groups", - "values": [ - "Freedom of religion and belief", - "Racial discrimination" - ] - }, - { - "text": "Establish an independent national human rights institution to lead, coordinate, develop capacity and assist with human rights implementation", - "values": [ - "National Human Rights Institution" - ] - }, - { - "text": "Amend the concerned legislation with a view to abolishing capital punishment in line with General Assembly resolutions 62-149 and 63-168 and convert the existing death sentences to imprisonment terms", - "values": [ - "Death penalty" - ] - }, - { - "text": "Take all necessary measures for the protection of human rights defenders, particularly by prosecuting the perpetrators of violence against, or intimidation of, them ", - "values": [ - "Human rights defenders" - ] - }, - { - "text": "Continue to pursue its efforts in the fight against HIV-AIDS, particularly in addressing its reported disproportional impact on women", - "values": [ - "HIV - Aids", - "Women's rights" - ] - }, - { - "text": "Implement a comprehensive strategy for birth registration taking into account the particular situation of refugee children, former refugees and migrants", - "values": [ - "Asylum-seekers - refugees", - "Migrants", - "Rights of the Child", - "Statelessness and the right to nationality" - ] - }, - { - "text": "Complete the internal procedure necessary for the ratification of the International Covenant on Civil and Political Rights and the Convention on the Rights of Persons with Disabilities, while putting in place the necessary mechanisms to proceed with the signature and ratification of other international human rights agreements that are still pending", - "values": [ - "CP rights - general", - "Disabilities", - "International instruments" - ] - }, - { - "text": "Align the provisions of the nationality law with international human rights standards so as to enable children born in the territory of Namibia whose parents are unknown to acquire nationality of Namibia", - "values": [ - "International instruments", - "Rights of the Child", - "Statelessness and the right to nationality" - ] - }, - { - "text": "Take the necessary steps to ensure the consolidation of peace, justice and reconciliation in the country", - "values": [ - "Justice" - ] - }, - { - "text": "Amend the Constitution and election laws to permit the members of communities other than the Bosniaks, Serbs and Croats to run for the Presidency or become members of the House of Peoples", - "values": [ - "Elections", - "Minorities" - ] - }, - { - "text": "Align the national legislation with international standards to guarantee freedom of assembly and association, in particular as regards the notification of the organisation of peaceful assemblies", - "values": [ - "Freedom of association and peaceful assembly" - ] - }, - { - "text": "Accept the visit of the Special Rapporteur on Freedom of assembly and association", - "values": [ - "Freedom of association and peaceful assembly", - "Special procedures" - ] - }, - { - "text": "Intensify its efforts to improve health infrastructure as well as the quality and delivery of health services, including access to reproductive health information and contraceptives for women in marginalized areas", - "values": [ - "Right to health", - "Women's rights" - ] - }, - { - "text": "Ratify the Convention Relating to the Status of Refugees and its 1967 Protocol", - "values": [ - "Asylum-seekers - refugees", - "International instruments" - ] - }, - { - "text": "Work on future efforts for the advancement of economic affairs in order to promote the rights related to employment, education, health care and housing ", - "values": [ - "Development", - "Right to education", - "Right to health", - "Right to housing" - ] - }, - { - "text": "Continue to strengthen its measures and mechanisms to overcome the challenges related to the protection of the rights of vulnerable groups, including indigenous women.", - "values": [ - "Women's rights" - ] - }, - { - "text": "Continue to implement the 2012 national anti-trafficking law, through efforts to investigate and prosecute trafficking offenses on the federal and state level", - "values": [ - "Trafficking" - ] - }, - { - "text": "Commute the sentences of the last individuals to be sentenced to death and work to improve the detention conditions in the country\u2019s prisons", - "values": [ - "Death penalty", - "Detention" - ] - }, - { - "text": "Maintain its commitment to the realization of the right to work for all including through technical and vocational training for young people", - "values": [ - "Labour" - ] - }, - { - "text": "Investigate all cases of forced disappearances, put an end to secrete detentions and provide reparation to victims ", - "values": [ - "Detention", - "Enforced disappearances" - ] - }, - { - "text": "Incorporate into domestic law already ratified international human rights conventions", - "values": [ - "International instruments" - ] - }, - { - "text": "Prohibit corporal punishment, especially in schools, in accordance with article 19 of the Convention on the Rights of the Child ", - "values": [ - "International instruments", - "Rights of the Child", - "Torture and other CID treatment" - ] - }, - { - "text": "Include in its national legislation specific and explicit safeguards guaranteeing that no evidence obtained through torture or other ill treatment may be used before the court ", - "values": [ - "Torture and other CID treatment" - ] - }, - { - "text": "Continue its efforts, in light of of the rights to non-discrimination and equality between men and women, to increase citizens' awareness of the necessity of female education.", - "values": [ - "Women's rights" - ] - }, - { - "text": "Take measures to reduce inequalities between men and women, in particular by raising the legal age of marriage to 18 years for all", - "values": [ - "Women's rights" - ] - }, - { - "text": "Reflect the findings of the new action plan to examine gender-based acts of violence and their prosecution and handling in the judicial system in the next national UPR report", - "values": [ - "Justice", - "UPR process", - "Women's rights" - ] - }, - { - "text": "The delegation stated that it wished to restate the commitment of Equatorial Guinea to continue to cooperate with the different bodies of the Human Rights Council, the High Commissioner for Human Rights, and all people with good will that help in making efforts to improve in human rights affairs in the country.", - "values": [ - "Special procedures", - "Technical assistance and cooperation", - "UPR process" - ] - }, - { - "text": "Design a targeted campaign challenging patriarchal attitudes and gender stereotypes", - "values": [ - "Women's rights" - ] - }, - { - "text": "Take appropriate measures towards acceding to other core international human rights instruments, namely the International Covenant on Civil and Political Rights, the International Covenant on Economic, Social and Cultural Rights, the International Convention on the Elimination of All Forms of Racial Discrimination, and the Convention against Torture", - "values": [ - "CP rights - general", - "ESC rights - general", - "International instruments", - "Racial discrimination", - "Torture and other CID treatment" - ] - }, - { - "text": "Implement additional measures aimed at eliminating discrimination and violence based on sexual orientation", - "values": [ - "Sexual Orientation and Gender Identity" - ] - }, - { - "text": "Consider acceding to CAT and the Optional Protocol thereto, while bearing in mind its domestic legislation", - "values": [ - "Detention", - "International instruments", - "Torture and other CID treatment" - ] - }, - { - "text": "Continue the justice sector reform without any deviation", - "values": [ - "Justice" - ] - }, - { - "text": "Ensure that any legislation on NGOs is fully in line with international human rights law, including freedom of expression and freedom of association", - "values": [ - "Civil society", - "Freedom of association and peaceful assembly", - "Freedom of opinion and expression", - "International instruments" - ] - }, - { - "text": "Rescind legal provisions that provide for the criminalization of lesbian, gay, bisexual, transgender and intersex persons following the principle of non-discrimination", - "values": [ - "Sexual Orientation and Gender Identity" - ] - }, - { - "text": "Adopt concrete measures to eliminate differentiation at work and reduce inequality by ensuring the strict implementation of the 2012 Law aimed at reducing wage inequality based on sex", - "values": [ - "Women's rights" - ] - }, - { - "text": "Take further measures to decrease serious challenges in access to justice by victims of domestic violence and human trafficking ", - "values": [ - "Justice", - "Rights of the Child", - "Trafficking", - "Women's rights" - ] - }, - { - "text": "Ratify the International Covenant on Civil and Political Rights and the International Covenant on Economic, Social and Cultural Rights, as well as the International Convention on the Elimination of All Forms of Racial Discrimination", - "values": [ - "CP rights - general", - "ESC rights - general", - "International instruments", - "Racial discrimination" - ] - }, - { - "text": "Consider acceding to the 1951 Convention relating to the Status of Refugees and its Protocol", - "values": [ - "Asylum-seekers - refugees", - "International instruments" - ] - }, - { - "text": "Provide medical and psychological assistance to women who were victims of sexual violations during the conflicts", - "values": [ - "Right to health", - "Women's rights" - ] - }, - { - "text": "Implement the recommendations from the second cycle contained in A/HRC/21/3, paras. 129.62 and 129.65, and unequivocally ban corporal punishment in all places, including at home, in alternative care institutions, in day nurseries and in schools", - "values": [ - "International instruments", - "Rights of the Child", - "Torture and other CID treatment" - ] - }, - { - "text": "Adopt a programme to safeguard the rights of victims of torture and ill-treatment ", - "values": [ - "Torture and other CID treatment" - ] - }, - { - "text": "Cease restricting media outlets from printing opinions critical of the Government of Brunei Darussalam in line with the right to freedom of expression ", - "values": [ - "Freedom of opinion and expression", - "Freedom of the press" - ] - }, - { - "text": "Increase further the efforts aimed at preventing and eradicating human trafficking, including considering the possibility for the development of the national plan of action ", - "values": [ - "Rights of the Child", - "Trafficking", - "Women's rights" - ] - }, - { - "text": "Promote affirmative action for the transgender, transvestite and transsexual population", - "values": [ - "Sexual Orientation and Gender Identity" - ] - }, - { - "text": "Continue to implement the core elements of the Children's Act, which is a great step forwards in the achievement of the Millennium Development Goals ", - "values": [ - "Development", - "Rights of the Child" - ] - }, - { - "text": "Liechtenstein will continue to pay particular attention to the equality of opportunity for women and men in the labour market, taking into account, inter alia, relevant developments in the framework of the European Economic Area", - "values": [ - "Labour", - "Women's rights" - ] - }, - { - "text": "Consider enhancing human rights education through the development of public awareness campaigns and programs at all levels", - "values": [ - "Human rights education and training" - ] - }, - { - "text": "Investigate and prosecute all those responsible for torture and ill-treatment, unlawful killings and widespread arbitrary arrests ", - "values": [ - "Detention", - "Extrajudicial executions", - "Torture and other CID treatment" - ] - }, - { - "text": "Include programmes on human rights education at all levels of the armed forces and police, and to provide assurances of transparency and participation to civil society in every cooperation project related to justice and security", - "values": [ - "Civil society", - "Human rights education and training" - ] - }, - { - "text": "Strengthen its actions against on all forms of discrimination and effectively protect the rights of women, children and immigrants ", - "values": [ - "Migrants", - "Rights of the Child", - "Women's rights" - ] - }, - { - "text": "Continue efforts for the prevention of genocide", - "values": [ - "Justice" - ] - }, - { - "text": "Deepen its engagement and collaboration with communities in the implementation of development projects and social policies which will ensure better buy-in and social outcomes for the affected communities", - "values": [ - "Development" - ] - }, - { - "text": "Strengthen the measures to combat violence against women", - "values": [ - "Women's rights" - ] - }, - { - "text": "Adopt a more comprehensive definition of human trafficking.", - "values": [ - "Trafficking" - ] - }, - { - "text": "Continue to invest more in rural development projects through best practices such as micro credit financing", - "values": [ - "Development" - ] - }, - { - "text": "Positively consider ratifying the International Covenant on Civil and Political Rights, the International Covenant on Economic, Social and Cultural Rights as well as the main human rights treaties to which Fiji is not yet a State party", - "values": [ - "CP rights - general", - "ESC rights - general", - "International instruments" - ] - }, - { - "text": "Continue its efforts to harmonize its national legislation with international human rights instruments ", - "values": [ - "International instruments" - ] - }, - { - "text": "Pursue its efforts in the development of its rural policies to improve the existing strategies and policies and gradually strengthen the right to food for vulnerable groups ", - "values": [ - "Right to food" - ] - }, - { - "text": "Develop programmes and campaigns aiming at combating discrimination against girls in schools ", - "values": [ - "Human rights education and training", - "Right to education", - "Rights of the Child", - "Women's rights" - ] - }, - { - "text": "Pursue the strengthening of its economic and social development ", - "values": [ - "Development" - ] - }, - { - "text": "Prevent the use of torture and ill-treatment on suspects in police custody and prosecute those responsible", - "values": [ - "Detention", - "Human rights violations by state agents", - "Torture and other CID treatment" - ] - }, - { - "text": "Continue to work at the international level in favour of human rights education ", - "values": [ - "Human rights education and training" - ] - }, - { - "text": "Develop and introduce specific measures directed at improving professional training of the staff of the children institutions, improving the legislation and practice in the provision of psychiatric treatment, as well as eradicating discrimination against ethnic minorities ", - "values": [ - "Minorities", - "Racial discrimination", - "Rights of the Child" - ] - }, - { - "text": "Promotion and protection of human rights is a continuous and unending process, and Ghana is committed to ensure that the institutions charged with that responsibility are further strengthened to carry out their mandates effectively", - "values": [ - "General" - ] - }, - { - "text": "Consider fostering national strategies to combat child labour and to promote decent work.", - "values": [ - "Labour", - "Rights of the Child" - ] - }, - { - "text": "Consider adhering to the International Convention on the Protection of the Rights of All Migrant Workers and Their Family Members", - "values": [ - "International instruments", - "Labour", - "Migrants" - ] - }, - { - "text": "Take all appropriate measures to ensure the rights of people with mental or intellectual disabilities", - "values": [ - "Disabilities" - ] - }, - { - "text": "Pursue the policy aimed at improving the position and participation of women in public life, and promote programmes for the protection of the rights of children ", - "values": [ - "Rights of the Child", - "Women's rights" - ] - }, - { - "text": "Enhance efforts to provide appropriate assistance to victims of human trafficking and utilize the OHCHR Recommended Principles and Guidelines on Human Rights and Human Trafficking as a reference ", - "values": [ - "Trafficking" - ] - }, - { - "text": "Make further efforts to ensure equal protection from discrimination", - "values": [ - "Other" - ] - }, - { - "text": "Take practical steps towards the abolishment of the death penalty, and as a first step officially introduce a moratorium on the implementation of death sentences", - "values": [ - "Death penalty" - ] - }, - { - "text": "Establish a national human rights institution based on the Paris Principles", - "values": [ - "National Human Rights Institution" - ] - }, - { - "text": "Develop and adopt comprehensive strategies to address all forms of violence against women, and raise educational awareness to eliminate female genital mutilation", - "values": [ - "Human rights education and training", - "Rights of the Child", - "Torture and other CID treatment", - "Women's rights" - ] - }, - { - "text": "Continue the efforts to enable tangible progress in combating trafficking in persons, especially women and children ", - "values": [ - "Rights of the Child", - "Trafficking", - "Women's rights" - ] - }, - { - "text": "Continue ensuring, through the Vaccination Program, the immunization coverage of the Cuban population", - "values": [ - "Right to health" - ] - }, - { - "text": "Review existing legislation, including the Marriage Law, to comply with the Convention on the Elimination of All Forms of Discrimination against Women ", - "values": [ - "International instruments", - "Women's rights" - ] - }, - { - "text": "Continue to strengthen the role of civil society and cooperation with relevant United Nations human rights mechanisms", - "values": [ - "Civil society", - "Special procedures", - "Treaty bodies", - "UPR process" - ] - }, - { - "text": "Work on increasing racial, ethnic and religious tolerance", - "values": [ - "Minorities", - "Racial discrimination" - ] - }, - { - "text": "Amend the Freedom of Information Act so that it is in compliance with regional and international standards", - "values": [ - "Freedom of opinion and expression" - ] - }, - { - "text": "Promptly ratify the Convention on the Rights of Persons with Disabilities", - "values": [ - "Disabilities", - "International instruments" - ] - }, - { - "text": "Ratify as soon as possible the Convention on the Rights of Persons with Disabilities", - "values": [ - "Disabilities", - "International instruments" - ] - }, - { - "text": "Continue to apply strategies and development plans at the socioeconomic level throughout the country ", - "values": [ - "Development" - ] - }, - { - "text": "Continue to implement the 2011-2015 Health Sector Strategy ", - "values": [ - "Right to health" - ] - }, - { - "text": "Take measures to ensure the provision of assistance to IDPs and the protection of human rights of those providing such assistance.", - "values": [ - "Internally displaced persons" - ] - }, - { - "text": "Step up efforts to promote and protect the right to education and children's rights, including by improving literacy rates and enrolment rates in primary and secondary education", - "values": [ - "Right to education", - "Rights of the Child" - ] - }, - { - "text": "Establish an institution for the promotion and protection of human rights consistent with the Paris Principles", - "values": [ - "National Human Rights Institution" - ] - }, - { - "text": "Early establishment and early operationalization of the national human rights institution", - "values": [ - "National Human Rights Institution" - ] - }, - { - "text": "Eliminate torture, accede to OP-CAT and establish its national preventive mechanism accordingly ", - "values": [ - "Detention", - "International instruments", - "Torture and other CID treatment" - ] - }, - { - "text": "Combat discrimination against Roma and implement special measures in the education, housing, health and employment spheres, as well as investigating and prosecuting all discriminatory acts directed at Roma children", - "values": [ - "Minorities", - "Racial discrimination", - "Rights of the Child" - ] - }, - { - "text": "Ratify the ICRMW, signed in 2007 ", - "values": [ - "International instruments", - "Labour", - "Migrants" - ] - }, - { - "text": "Implement legal reforms recognizing a legally-defined age of minority that prevents early and forced marriage, detention of minors as adults and exposure of minors to the death penalty", - "values": [ - "Death penalty", - "Detention", - "Rights of the Child", - "Women's rights" - ] - }, - { - "text": "Continue implementing policies to protect the rights of women and girls, including legal actions against violence and discrimination", - "values": [ - "Rights of the Child", - "Women's rights" - ] - }, - { - "text": "Undertake a screening of all security forces under international guidance in order to exclude perpetrators of violations of international human rights and humanitarian law from the national security and defence forces", - "values": [ - "Human rights violations by state agents", - "International humanitarian law", - "International instruments" - ] - }, - { - "text": "Share the good practices in the field of international cooperation for the promotion of health services of the meritorious services extended by Medical Brigade Henry Reeve to Pakistan during the 2005 earthquake", - "values": [ - "Right to health" - ] - }, - { - "text": "Implement all the legal measures that can reveal the truth, punish those who are guilty and grant compensation to the victims in order to put an end to impunity ", - "values": [ - "Impunity" - ] - }, - { - "text": "Ratify the Optional Protocol to the International Covenant on Economic Social and Cultural Rights", - "values": [ - "ESC rights - general", - "International instruments" - ] - }, - { - "text": "Amend any article of its Penal Code that can be used to prosecute individuals for the exercise of the rights to freedom of expression, peaceful assembly or association, and bring its laws into line with international standards established by the International Covenant for Civil and Political Rights ", - "values": [ - "Freedom of association and peaceful assembly", - "Freedom of opinion and expression", - "International instruments" - ] - }, - { - "text": "Recommended that concrete measures be taken to improve the handling by police of rape cases and to curb rates of violence, particularly against women and girls. ", - "values": [ - "Rights of the Child", - "Women's rights" - ] - }, - { - "text": "Adopt measures to prevent and mitigate the adverse human rights impact of companies operating in Togo", - "values": [ - "Business and human rights" - ] - }, - { - "text": "Undertake further appropriate measures to improve the situation of children, in particular taking into account the rights and needs of children in its national Poverty Reduction Strategy Paper and in all other programmes intended to improve the standards of living in the country", - "values": [ - "Poverty", - "Rights of the Child" - ] - }, - { - "text": "Continue to improve the working conditions of low-paid migrant labourers, especially those working as domestic help and on infrastructure projects ", - "values": [ - "Labour", - "Migrants" - ] - }, - { - "text": "Continuing efforts aimed at promoting awareness of the culture of human rights in the society", - "values": [ - "Human rights education and training" - ] - }, - { - "text": "Repeal or amend the Internal Security Act so as to abolish all forms of administrative detention ", - "values": [ - "Detention" - ] - }, - { - "text": "Continue promoting and disseminating information on the rights of persons with disabilities, as well as the use of sign language and Braille", - "values": [ - "Disabilities" - ] - }, - { - "text": "Ratify CAT and OP-CAT without delay", - "values": [ - "Detention", - "International instruments", - "Torture and other CID treatment" - ] - }, - { - "text": "Take into full account children, girls in particular, the most marginalised groups, including persons with disabilities, in the strategy and programmes of development in the area of health and education", - "values": [ - "Disabilities", - "Right to education", - "Right to health", - "Rights of the Child", - "Women's rights" - ] - }, - { - "text": "Endeavour to put in place structures that guarantee the citizenship rights of its people", - "values": [ - "Other" - ] - }, - { - "text": "Conduct a national debate on the establishment of a moratorium on the use of the death penalty, with a view to its abolition", - "values": [ - "Death penalty" - ] - }, - { - "text": "To work actively towards political and economic empowerment of women ", - "values": [ - "Women's rights" - ] - }, - { - "text": "Take into account the contributions from this Universal Periodic Review and integrate them into the respective national action plans promoted by the Government in various areas of human rights ", - "values": [ - "UPR process" - ] - }, - { - "text": "Establish mechanisms to monitor, investigate, prosecute and punish incitement to and acts of hatred, intolerance, racism and xenophobia ", - "values": [ - "Racial discrimination" - ] - }, - { - "text": "Take measures for the submission of overdue periodic reports under the treaties and covenants to which Lebanon has become a party", - "values": [ - "Treaty bodies" - ] - }, - { - "text": "Address the issue of violence in schools as matter of priority and take the appropriate measures to put an end to all forms of ill-treatment and abuses, including sexual violence, perpetrated in schools, including the necessary measures to protect the victims and to ensure that those responsible are brought to justice", - "values": [ - "Rights of the Child", - "Torture and other CID treatment" - ] - }, - { - "text": "Thoroughly implement legislation and develop procedures involving civil society to ensure the protection of indigenous people, especially in the context of land disputes and forced evictions", - "values": [ - "Civil society", - "Indigenous peoples", - "Right to land" - ] - }, - { - "text": "Continue to enable women and the disabled and provide them a greater role in society", - "values": [ - "Disabilities", - "Women's rights" - ] - }, - { - "text": "Continue its efforts to complete the accession to the relevant instruments such as the International Convention on the Rights of Persons with Disabilities and its Optional Protocol", - "values": [ - "Disabilities", - "International instruments" - ] - }, - { - "text": "Further increase its efforts to ensure access to education and health care to all including people with disabilities ", - "values": [ - "Disabilities", - "Right to education", - "Right to health" - ] - }, - { - "text": "Immediately establish an official moratorium on executions with a view to abolishing the death penalty", - "values": [ - "Death penalty" - ] - }, - { - "text": "Consider extending a standing invitation to all Special proceduress mandate holders of the Human Rights Council ", - "values": [ - "Special procedures" - ] - }, - { - "text": "Promote freedom of religion within its public bodies and also through public awareness programmes, particularly among the people of the North, once the situation has been stabilized", - "values": [ - "Freedom of religion and belief", - "Human rights education and training" - ] - }, - { - "text": "Ensure protection of the dignity of migrants, displaced persons and refugees, whether they are deprived of movement and freedom or exposed to any risk of death", - "values": [ - "Asylum-seekers - refugees", - "Freedom of movement", - "Internally displaced persons", - "Migrants" - ] - }, - { - "text": "Continue the implementation of its legislative and institutional framework to protect and advance human rights, to ensure practical improvements on the ground", - "values": [ - "General" - ] - }, - { - "text": "Establish an independent mechanism in all cantons of the country with a mandate to investigate all complaints about excessive use of force, cruel treatment and other police abuse", - "values": [ - "Human rights violations by state agents", - "Torture and other CID treatment" - ] - }, - { - "text": "Include a gender perspective in the review follow-up process in a systematic manner.", - "values": [ - "UPR process", - "Women's rights" - ] - }, - { - "text": "Canada is committed to giving careful consideration to the recommendations made during its review and to engaging with civil society and Aboriginal organizations to inform Canada's response and follow-up to the accepted recommendations", - "values": [ - "UPR process" - ] - }, - { - "text": "Establish a national human rights institution, whose functioning is in accordance with the Paris Principles", - "values": [ - "National Human Rights Institution" - ] - }, - { - "text": "Allocate resources to the capacity-building of medical staff with a view to reducing overall morbidity and mortality", - "values": [ - "Right to health" - ] - }, - { - "text": "Take the necessary political and legal provisions to ensure that the implementation of the Media Law of 2014, particularly the requirement of accreditation of journalists and their obligation to defend the public interest and the democratic order, will not be translated into limitations on freedom of expression and the press", - "values": [ - "Freedom of opinion and expression", - "Freedom of the press" - ] - }, - { - "text": "Implement the recommendation of the Commission of Enquiry regarding the events of February 2008.", - "values": [ - "Justice" - ] - }, - { - "text": "Pursue its efforts to combat overcrowding in prisons", - "values": [ - "Detention" - ] - }, - { - "text": "Consider measures aimed at ensuring freedom of religion for groups which will become\nminorities in the two countries after the emergence of the new State", - "values": [ - "Freedom of religion and belief", - "Minorities" - ] - }, - { - "text": "Incorporate sexual violence within the Comprehensive Reparations Programme", - "values": [ - "Justice", - "Women's rights" - ] - }, - { - "text": "Implement the ILO Convention concerning the Minimum Age for Admission to Employment and the prohibition and Immediate Action for the Elimination of the Worst Forms of Child Labour.", - "values": [ - "International instruments", - "Labour", - "Rights of the Child" - ] - }, - { - "text": "Continue to implement the National Strategy for Gender-based Violence", - "values": [ - "Women's rights" - ] - }, - { - "text": "Continue contribution of its efforts to the Human Rights Council and its mechanism", - "values": [ - "Other" - ] - }, - { - "text": "Consider realizing as soon as possible its plans to establish four more women and child\nprotection units in the other major towns ", - "values": [ - "Rights of the Child", - "Women's rights" - ] - }, - { - "text": "Work with the Ombudsman for Children and relevant civil society organizations to create programmes to educate law enforcement officials on how to proactively address the problem of adolescents from ethnic minority backgrounds feeling stigmatized by and lacking trust in the police ", - "values": [ - "Civil society", - "Human rights education and training", - "Minorities", - "National Human Rights Institution", - "Rights of the Child" - ] - }, - { - "text": "More actively conduct education and awareness campaigns on the issue of trafficking in persons and make efforts to study human trafficking in the country, adopt proactive procedures to identify victims of trafficking among vulnerable groups, such as foreign workers and women in prostitution, and investigate trafficking cases", - "values": [ - "Human rights education and training", - "Trafficking" - ] - }, - { - "text": "Extend a standing invitation to the Human Rights Council's Special Procedures", - "values": [ - "Special procedures" - ] - }, - { - "text": "Create a safer working environment for journalists", - "values": [ - "Freedom of the press" - ] - }, - { - "text": "Take further steps on the abolition of the death penalty in accordance with the Constitution and national legislation", - "values": [ - "Death penalty" - ] - }, - { - "text": "Continue to take effective measures to prevent violence against women.", - "values": [ - "Women's rights" - ] - }, - { - "text": "Submission of the outcome document and the action plan to parliament", - "values": [ - "UPR process" - ] - }, - { - "text": "Continue the efforts to ensure the right to adequate housing by continuing to implement plans for the construction and renovation of houses which are provided to the people free of charge ", - "values": [ - "Right to housing" - ] - }, - { - "text": "Develop a strategy to even out the inequality in wages between men and women", - "values": [ - "Women's rights" - ] - }, - { - "text": "Put an end to the glorification of Nazi criminals and other complicit persons, including Stepan Bandera and Roman Shukhevych", - "values": [ - "Other" - ] - }, - { - "text": "Improve access to effective legal remedies for victims of discrimination", - "values": [ - "Other" - ] - }, - { - "text": "Ensure accountability for human rights violations and environmental damage resulting from the global or overseas operations of companies registered or headquartered in the Netherlands", - "values": [ - "Business and human rights", - "Environment" - ] - }, - { - "text": "Continue to implement laws, policies and programmes targeted at combating trafficking in persons, prosecute the identified perpetrators and provide rehabilitation for victims of trafficking in persons", - "values": [ - "Trafficking" - ] - }, - { - "text": "Fully align its national legislation with all obligations under the Rome Statute, including by incorporating provisions to investigate and prosecute genocide, crimes against humanity and war crimes effectively before its national courts ", - "values": [ - "International instruments", - "Justice" - ] - }, - { - "text": "Continue efforts to preserve national, cultural and religious diversity so as to promote harmony among ethnic groups and religions", - "values": [ - "Freedom of religion and belief", - "Minorities" - ] - }, - { - "text": "Decriminalize sexual relations between consenting adults of the same sex as well as abolish other rules which promote discrimination based on sexual orientation ", - "values": [ - "Sexual Orientation and Gender Identity" - ] - }, - { - "text": "Review the legal framework governing broadcast media and, in particular, that the Government review and repeal Article 4 of the Broadcast Act", - "values": [ - "Freedom of the press" - ] - }, - { - "text": "Continue and intensify cooperation with the international community in order to ensure access of international human rights and humanitarian actors and monitoring mechanisms to Abkhazia, Georgia, and Tskhinvali region/South Ossetia, Georgia, to monitor, report and address the human rights situation of internally displaced persons", - "values": [ - "Internally displaced persons", - "Technical assistance and cooperation" - ] - }, - { - "text": "Invite the Special Rapporteur on the situation of human rights in Iran to visit the country and provide him with access to appropriate officials, facilities, and prisoners", - "values": [ - "Detention", - "Special procedures" - ] - }, - { - "text": "Take as soon as possible effective measures to bring conditions of detention in line with international standards, in particular to reduce overcrowding and to abolish the system of 'arraigo' and promote non-custodial measures", - "values": [ - "Detention", - "Justice" - ] - }, - { - "text": "Update national legislation in line with its international commitments, especially with regard to gender equality, protection of the rights of the child and combating violence and forced marriage", - "values": [ - "Rights of the Child", - "Women's rights" - ] - }, - { - "text": "Continue increasing the benefits of its social services for the population to obtain a greater efficiency of its excellent social welfare system ", - "values": [ - "ESC rights - general" - ] - }, - { - "text": "To the current authorities, protect all human rights and respect democratic principles and the rule of law", - "values": [ - "Justice" - ] - }, - { - "text": "Enact an immediate moratorium on executions with a view to ending the use of the death penalty, and accede to the Second Optional Protocol to the International Covenant on Civil and Political Rights, as well as the Sixth and Thirteenth Protocols to the European Convention on Human Rights ", - "values": [ - "Death penalty", - "International instruments" - ] - }, - { - "text": "Ratify the Rome Statute on the creation of the International Criminal Court as well as the International Convention for the Protection of all Persons from Enforced Disappearance ", - "values": [ - "Enforced disappearances", - "International instruments", - "Justice" - ] - }, - { - "text": "Continue to provide adequate policy and institutional support to address the marked disparities in the socio-economic indicators between the indigenous and non-indigenous populations.", - "values": [ - "Indigenous peoples" - ] - }, - { - "text": "Promote initiatives to raise awareness among host communities on the rights of refugees, asylum seekers and unaccompanied children", - "values": [ - "Asylum-seekers - refugees", - "Human rights education and training", - "Rights of the Child" - ] - }, - { - "text": "Create and maintain, in law and in practice, a safe and enabling environment, in which human rights defenders, journalists and civil society can operate free from hindrance and insecurity, in accordance with Human Rights Council resolutions 22/6, 27/5 and 27/31", - "values": [ - "Civil society", - "Freedom of the press", - "Human rights defenders" - ] - }, - { - "text": "Enhance freedom of the media, establish effective protection mechanisms for journalists against attacks and intimidation and grant its people free access to electronic media", - "values": [ - "Freedom of the press" - ] - }, - { - "text": "Adopt effective mechanisms to implement the existing legislation which protects women and children", - "values": [ - "Rights of the Child", - "Women's rights" - ] - }, - { - "text": "Continue its efforts to implement the national plan for the human rights of persons with disabilities and exert further efforts to eliminate discrimination against them and integrate them into society ", - "values": [ - "Disabilities" - ] - }, - { - "text": "Increase efforts to tackle poverty and give its attention to the most vulnerable groups in society, including indigenous groups.", - "values": [ - "Indigenous peoples", - "Poverty" - ] - }, - { - "text": "Enhance activities aimed at eliminating discrimination against women and gender-based violence", - "values": [ - "Women's rights" - ] - }, - { - "text": "Continue the awareness-raising campaign on human rights education ", - "values": [ - "Human rights education and training" - ] - }, - { - "text": "Include in its plan for ratification ICCPR and its two Optional Protocols, ICESCR, CAT, ILO Convention No. 87 (1948) concerning Freedom of Association and Protection of the Right to Organise, and ICRMW ", - "values": [ - "International instruments" - ] - }, - { - "text": "Further address the human rights challenges, strengthen the mechanisms and take appropriate measures to reduce the level of domestic violence, increase the representation of women in the decision-making bodies and provide human rights training for target groups like jurists, police, migrants, minority groups and media as a means of human rights promotion ", - "values": [ - "Human rights education and training", - "Rights of the Child", - "Women's rights" - ] - }, - { - "text": "Address the concerns expressed by the High Commissioner for Human Rights about the use of torture in the Chechen Republic as well as concerns by the Committee Against Torture over many ongoing and consistent allegations of torture and ill-treatment committed by law enforcement personnel as well as reports of torture and ill treatment in unofficial places of detention in the North Caucasus", - "values": [ - "Torture and other CID treatment", - "Treaty bodies" - ] - }, - { - "text": "Ensure that a national human rights institution compliant with the Paris Principles covers all parts of the Netherlands, whether through extension of the mandate of the existing national human rights institution or establishment of similar but separate institutions in the Caribbean territories", - "values": [ - "National Human Rights Institution" - ] - }, - { - "text": "Adopt measures to incorporate the Convention on the Rights of the Child into national legislation", - "values": [ - "International instruments", - "Rights of the Child" - ] - }, - { - "text": "Intensify its efforts to combat human trafficking and sexual exploitation.", - "values": [ - "Trafficking" - ] - }, - { - "text": "Continue efforts to combat poverty through comprehensive programmes aimed at both rural and urban areas", - "values": [ - "Poverty" - ] - }, - { - "text": "Consider creation of additional national mechanisms to promote and protect human rights of vulnerable groups especially women, children and people with disabilities ", - "values": [ - "Disabilities", - "Rights of the Child", - "Women's rights" - ] - }, - { - "text": "Raise the minimum age of criminal responsibility in compliance with international standards ", - "values": [ - "Justice", - "Rights of the Child" - ] - }, - { - "text": "Provide training to judges, prosecutors, law enforcement officials, border guards and social workers in identifying and dealing with victims of trafficking and in anti-trafficking legislation", - "values": [ - "Human rights education and training", - "Trafficking" - ] - }, - { - "text": "Combat poverty and achieve food security with the support and cooperation of the international community", - "values": [ - "Poverty", - "Right to food", - "Technical assistance and cooperation" - ] - }, - { - "text": "Ensure the right to abortion after rape throughout the country in accordance with the recent Federal Supreme Court verdict on this issue", - "values": [ - "Women's rights" - ] - }, - { - "text": "Consider further steps to ensure a high number of women in decision-making positions", - "values": [ - "Women's rights" - ] - }, - { - "text": "Establish a plan of action to implement the Midterm Strategy for the Development of the Roma National Minority of the Slovak Republic, Solidarity- Integrity-Inclusion 2008-2013.", - "values": [ - "Minorities" - ] - }, - { - "text": "Consider holding a referendum on the desirability or otherwise of a written constitution, preferably republican, which includes a bill of rights.", - "values": [ - "Other" - ] - }, - { - "text": "Allow WFP to access those in need ", - "values": [ - "Right to food" - ] - }, - { - "text": "Consider reviewing its law on the minimum age of criminal responsibility, to be in conformity with international human rights standards ", - "values": [ - "International instruments", - "Justice", - "Rights of the Child" - ] - }, - { - "text": "Continue investments to improve public education and public services and facilities", - "values": [ - "Right to education" - ] - }, - { - "text": "Register refugees and provide documentation so they are able to work, access education, and travel", - "values": [ - "Asylum-seekers - refugees", - "Freedom of movement", - "Labour", - "Right to education" - ] - }, - { - "text": "Adopt clear and comprehensive legislation regarding domestic violence, in full compliance with CEDAW recommendations ", - "values": [ - "Rights of the Child", - "Treaty bodies", - "Women's rights" - ] - }, - { - "text": "Ensure that the 2017 law, which is presently being reviewed, on the recognition of the rights of intersex and transgender persons pays the necessary attention to both transgender women and men", - "values": [ - "Sexual Orientation and Gender Identity" - ] - }, - { - "text": "Take all the necessary measures for the prompt establishment of an independent national human rights institution in accordance with the Paris Principles", - "values": [ - "National Human Rights Institution" - ] - }, - { - "text": "Continue with the policies to tackle gender based violence and the programme of "Swift Justice"", - "values": [ - "Justice", - "Women's rights" - ] - }, - { - "text": "Consider continuing to ensure that children are not discriminated against on the basis of their religion or ethnic backgrounds ", - "values": [ - "Rights of the Child" - ] - }, - { - "text": "Take practical measures to ensure the full and proper implementation of the Children\u2019s Code, as recommended by the Committee on the Rights of the Child in 2016", - "values": [ - "Rights of the Child", - "Treaty bodies" - ] - }, - { - "text": "Face up to the challenges and establish appropriate measures to deal with the situation of children in the juvenile justice system, taking fully into account the best interest of the children concerned and ensuring their smooth reintegration into society ", - "values": [ - "Justice", - "Rights of the Child" - ] - }, - { - "text": "Recognize and respect the right of the Palestinian people to self-determination and their right to establish an independent sovereign Palestinian State.", - "values": [ - "Other" - ] - }, - { - "text": "Expedite the reform of its National Human Rights Commission and continue to support the implementation of the Commission's mandates with neutrality and impartiality", - "values": [ - "International instruments", - "National Human Rights Institution" - ] - }, - { - "text": "The Government is committed to addressing disability needs in Fiji and developing a more inclusive society.", - "values": [ - "Disabilities" - ] - }, - { - "text": "Continue to ensure, as established, individual and collective religious assistance to those inmates who request it ", - "values": [ - "Detention", - "Freedom of religion and belief" - ] - }, - { - "text": "Continue its efforts in the field of human rights education and training ", - "values": [ - "Human rights education and training" - ] - }, - { - "text": "Streamline its experience of establishing Inter-ministerial public administration and delegation dealing with human rights in order to make other countries benefit from this experience ", - "values": [ - "Other" - ] - }, - { - "text": "Adopt measures to investigate, prosecute and punish those responsible for serious human rights crimes such as the recruitment of child soldiers, in accordance with international norms and in a transparent manner", - "values": [ - "International humanitarian law", - "Rights of the Child" - ] - }, - { - "text": "Take relevant steps to further promote and protect the rights of women", - "values": [ - "Women's rights" - ] - }, - { - "text": "Ratify the Second Optional Protocol to the International Covenant on Civil and Political Rights and abolish the death penalty without delay", - "values": [ - "Death penalty", - "International instruments" - ] - }, - { - "text": "Ratify the Convention on Cluster Munitions and the Convention on the Prohibition of the Use, Stockpiling, Production and Transfer of Anti-Personnel Mines and on Their Destruction", - "values": [ - "International humanitarian law", - "International instruments" - ] - }, - { - "text": "Finalise the ratification of the Convention against Torture and other Cruel, Inhuman or Degrading Treatment or Punishment ", - "values": [ - "International instruments", - "Torture and other CID treatment" - ] - }, - { - "text": "Continue the reform process in particular in the field of justice, administration, e-governance and social issues", - "values": [ - "Justice" - ] - }, - { - "text": "Harmonize national legislation with human rights treaties, and in particular withdraw reservations to the International Covenant on Civil and Political Rights ", - "values": [ - "CP rights - general", - "International instruments" - ] - }, - { - "text": "Finalize and enact legislation to better protect children, including the draft Law of the Child ", - "values": [ - "Rights of the Child" - ] - }, - { - "text": "Step up efforts to improve conditions in prisons, in particular in relation to overcrowding", - "values": [ - "Detention" - ] - }, - { - "text": "Continue the efforts and successes achieved by the national institutions in undertaking awareness raising campaigns to spread a culture of human rights", - "values": [ - "Human rights education and training" - ] - }, - { - "text": "Ensure that all members of the police and prison officers that commit human rights violations and abuses, such as torture and ill-treatment, are held accountable ", - "values": [ - "Human rights violations by state agents", - "Torture and other CID treatment" - ] - }, - { - "text": "Take further action so as to completely abolish the death penalty after lifting in 2014 its de facto moratorium imposed in 2011", - "values": [ - "Death penalty" - ] - }, - { - "text": "Ensure effective implementation of the National Action Plan to End Sexual Violence in Conflict, including through frequent meetings of the Steering Committee", - "values": [ - "Women's rights" - ] - }, - { - "text": "Prioritize and sufficiently resource the National Human Rights Council and the Office of the Ombudsman ", - "values": [ - "National Human Rights Institution" - ] - }, - { - "text": "Develop campaigns to raise immigrants' awareness of their rights, particularly with regard to their rights to access to health care services ", - "values": [ - "Human rights education and training", - "Migrants", - "Right to health" - ] - }, - { - "text": "Adopt a national action plan to combat racism, racial discrimination, xenophobia and intolerance", - "values": [ - "Racial discrimination" - ] - }, - { - "text": "Review the law on sorcery and sorcery-related killings and investigate, prosecute and punish perpetrators of such crimes", - "values": [ - "Justice" - ] - }, - { - "text": "National human rights institution/civil society involvement in follow-up and implementation", - "values": [ - "Civil society", - "National Human Rights Institution", - "UPR process" - ] - }, - { - "text": "Continue its efforts to introduce a human rights perspective in business and trade ", - "values": [ - "Business and human rights" - ] - }, - { - "text": "Establish a timeline for an early opening of the OHCHR country office with a full mandate", - "values": [ - "Technical assistance and cooperation" - ] - }, - { - "text": "Endeavour to ratify without delay all international human rights statutes that it has yet to sign ", - "values": [ - "International instruments" - ] - }, - { - "text": "Consolidate access to education, especially for the most vulnerable sectors of the population", - "values": [ - "Right to education" - ] - }, - { - "text": "Step up its efforts to halt torture and ill-treatment as well as eradicating impunity for such acts and that alleged perpetrators be brought before justice", - "values": [ - "Impunity", - "Torture and other CID treatment" - ] - }, - { - "text": "Ratify the International Convention on the Protection of the Rights of All Migrant Workers and Members of Their Families, as previously recommended", - "values": [ - "International instruments", - "Labour", - "Migrants" - ] - }, - { - "text": "Establish effective and impartial vetting procedures to ensure that their armed forces and police do not recruit persons under the age of 18 ", - "values": [ - "Rights of the Child" - ] - }, - { - "text": "To examine the possibility of modifying declarations made by the Government regarding articles 13 and 14, paragraph 5, of the International Covenant on Civil and Political Rights.", - "values": [ - "CP rights - general" - ] - }, - { - "text": "Ensure the rights of migrant workers, especially in the sector of agriculture where the use of child labourers is a common practice", - "values": [ - "Labour", - "Migrants", - "Rights of the Child" - ] - }, - { - "text": "Introduce a moratorium and instigate a public debate on the abolition of the death penalty, while also addressing how best to support victims and their families", - "values": [ - "Death penalty" - ] - }, - { - "text": "Develop an effective State family policy based on the prevention of separation of children from parents and early intervention measures, supported by an action plan for implementation and specifically designated funding", - "values": [ - "Rights of the Child" - ] - }, - { - "text": "Take appropriate legislative and policy measures in order to guarantee full respect of human rights, including in the fight against terrorism.", - "values": [ - "Counter-terrorism" - ] - }, - { - "text": "Investigate the disappearance of unaccompanied children from asylum reception centres and search for and identify those who might have been victims of enforced disappearance", - "values": [ - "Asylum-seekers - refugees", - "Enforced disappearances", - "Rights of the Child" - ] - }, - { - "text": "Raising the indicator for Yemeni women's access to health care and services, facilitating their access to economic and environmental resources, encouraging their ntegration into the labour market and ensuring that they have greater access to loans to meet their needs", - "values": [ - "Women's rights" - ] - }, - { - "text": "Develop a rights-based national action plan that provides a framework to address the challenges of climate change, including disaster management and mitigation ", - "values": [ - "Environment" - ] - }, - { - "text": "Strengthen efforts on the empowerment of women by implementing programmes aimed at changing society's perception of women and removing barriers affecting the employment of women", - "values": [ - "Women's rights" - ] - }, - { - "text": "Seek to better enforce statutes protecting immigrant workers from exploitation and mistreatment ", - "values": [ - "Labour", - "Migrants" - ] - }, - { - "text": "Increase women's participation in political and public life", - "values": [ - "Women's rights" - ] - }, - { - "text": "Improve prosecution of all allegations of torture as well as conditions in detention and prison facilities and strengthen legal safeguards available to victims of torture", - "values": [ - "Detention", - "Torture and other CID treatment" - ] - }, - { - "text": "Improve its cooperation with the United Nations Special Rapporteur on the situation of human rights in Myanmar and guarantee the mandate holder regular and unrestrained access to the country ", - "values": [ - "Special procedures" - ] - }, - { - "text": "Continue to work to improve access to justice and economic, social and cultural rights of ethnic minorities and indigenous people", - "values": [ - "ESC rights - general", - "Indigenous peoples", - "Justice" - ] - }, - { - "text": "Provide the National Human Rights Council with the necessary budgetary, administrative and political independence to fully implement its functions", - "values": [ - "National Human Rights Institution" - ] - }, - { - "text": "Enable the Syrian citizens in the occupied Golan to visit their relatives in the motherland through the Al Quneitra crossing", - "values": [ - "Freedom of movement" - ] - }, - { - "text": "Revise the Criminal Procedure Code to allow for a more equal distribution of powers between prosecutors and defence", - "values": [ - "Justice" - ] - }, - { - "text": "Take all possible measures to ensure protection of civilians, in particular vulnerable groups such as children, women and displaced persons.", - "values": [ - "Internally displaced persons", - "International humanitarian law", - "Rights of the Child", - "Women's rights" - ] - }, - { - "text": "Establish its planned national human rights institution in accordance with the Paris Principles.", - "values": [ - "National Human Rights Institution" - ] - }, - { - "text": "Continue its efforts to support persons with disabilities and integrate them in society on an equal footing, as real social partners", - "values": [ - "Disabilities" - ] - }, - { - "text": "Bahrain will explore the possibility of reviewing some of its existing reservations to the treaties to which it is a party. By way of example, Bahrain has already withdrawn its reservation to article 20 of the Convention against Torture.", - "values": [ - "International instruments", - "Torture and other CID treatment" - ] - }, - { - "text": "When elected, the new President seeks early ratification of the Convention against Torture and ratification of the Rome Statute of the International Criminal Court", - "values": [ - "International instruments", - "Justice", - "Torture and other CID treatment" - ] - }, - { - "text": "Adopt and implement stronger legislation on children's rights ", - "values": [ - "Rights of the Child" - ] - }, - { - "text": "Actively pursue efforts to prevent trafficking, including through information campaigns for the general public, including children, aimed at promoting awareness of the dangers associated with all forms of trafficking and to ensure protection and assistance for the victims of trafficking, with full respect for their human rights ", - "values": [ - "Human rights education and training", - "Rights of the Child", - "Trafficking" - ] - }, - { - "text": "Abolish criminal penalties that infringe on the physical integrity of convicts, for example, flogging", - "values": [ - "Torture and other CID treatment" - ] - }, - { - "text": "Implement appropriate policies and measures, including care and rehabilitation, to prevent the sexual exploitation of children ", - "values": [ - "Rights of the Child" - ] - }, - { - "text": "Combat impunity by ensuring that all persons guilty of what could constitute war crimes or crimes against humanity are brought to justice", - "values": [ - "Impunity", - "International humanitarian law", - "Justice" - ] - }, - { - "text": "Become a party to the Rome statute of the ICC", - "values": [ - "International instruments", - "Justice" - ] - }, - { - "text": "Modify the criminal code to decriminalize same-sex sexual activity between consenting adults and to criminalize all forms of sexual abuse of children, regardless of the sex of the child", - "values": [ - "Rights of the Child", - "Sexual Orientation and Gender Identity" - ] - }, - { - "text": "Address the link between tourism and prostitution, including ensuring the effective prosecution and punishment of those who exploit prostitution ", - "values": [ - "Other" - ] - }, - { - "text": "Continue to engage in the effort to designate a national preventive mechanism in Ghana", - "values": [ - "Detention", - "Torture and other CID treatment" - ] - }, - { - "text": "Strengthen measures and take further concrete steps to deal with domestic violence against women by, inter alia, giving adequate follow-up to complaints, providing sufficient resources for proper evidence gathering and ensuring the prosecution of offenders ", - "values": [ - "Women's rights" - ] - }, - { - "text": "Consider taking effective measures to combat the climate of homophobia", - "values": [ - "Sexual Orientation and Gender Identity" - ] - }, - { - "text": "Review the Press and Publications Law in order to fully guarantee freedom of expression", - "values": [ - "Freedom of opinion and expression" - ] - }, - { - "text": "Continue to implement recommendations to which it agreed at its first UPR ", - "values": [ - "UPR process" - ] - }, - { - "text": "Repeal all legal provisions that infringe the freedoms of expression, assembly and association, as guaranteed by the International Covenant on Civil and Political Rights", - "values": [ - "Freedom of association and peaceful assembly", - "Freedom of opinion and expression", - "International instruments" - ] - }, - { - "text": "Take effective measures to cope with the high rate of HIV transmission by strengthening the national strategic plan to combat HIV/AIDS", - "values": [ - "HIV - Aids" - ] - }, - { - "text": "Attempt to restrain any state initiative which approaches immigration issues in a repressive way towards the migrant community and that violates its rights by applying racial profiling, criminalizing undocumented immigration and violating the human and civil rights of persons", - "values": [ - "Migrants", - "Racial discrimination" - ] - }, - { - "text": "Step up efforts to prevent children from being engaged in trafficking, sexual exploitation and prostitution ", - "values": [ - "Rights of the Child" - ] - }, - { - "text": "Ratify the Convention on the Elimination of All Forms of Discrimination against Women, the Convention against Torture and Other Cruel, Inhuman or Degrading Treatment or Punishment and its Optional Protocol", - "values": [ - "Detention", - "International instruments", - "Torture and other CID treatment", - "Women's rights" - ] - }, - { - "text": "Work to address the issue of domestic violence in Poland and ensure support for victims", - "values": [ - "Rights of the Child", - "Women's rights" - ] - }, - { - "text": "Continue to promote opportunities for women in society so that they can actively participate in the decision-making process ", - "values": [ - "Women's rights" - ] - }, - { - "text": "Sign and ratify the Convention on Economic, Social and Cultural Rights as well as the Optional Protocols thereto", - "values": [ - "ESC rights - general", - "International instruments" - ] - }, - { - "text": "Take effective measures to protect children from exploitative forms of labour and work in hazardous areas", - "values": [ - "Labour", - "Rights of the Child" - ] - }, - { - "text": "Continue the on-going process of the exchange of views and experiences with other countries with respect to the improvement of national legislation in the field of human rights", - "values": [ - "Technical assistance and cooperation" - ] - }, - { - "text": "Consider introducing amendments to Ukraine\u2019s Criminal Code with a view to punishing homophobic crimes", - "values": [ - "Sexual Orientation and Gender Identity" - ] - }, - { - "text": "Accept the visit requests by the Special Rapporteur on torture and other cruel, inhuman or degrading treatment or punishment and the Special Rapporteur on extrajudicial, summary or arbitrary executions ", - "values": [ - "Extrajudicial executions", - "Special procedures", - "Torture and other CID treatment" - ] - }, - { - "text": "Consider acceding to the OP-CAT", - "values": [ - "Detention", - "International instruments", - "Torture and other CID treatment" - ] - }, - { - "text": "Continue the efforts made to ratify the following conventions: International Convention for the Protection of All Persons from Enforced Disappearance, International Convention on the Protection of the Rights of All Migrant Workers and Members of Their Families, and Optional Protocol to the Convention against Torture and Other Cruel, Inhuman or Degrading Treatment or Punishment", - "values": [ - "Detention", - "Enforced disappearances", - "International instruments", - "Labour", - "Migrants", - "Torture and other CID treatment" - ] - }, - { - "text": "Immediately stop all unlawful killings and incitement to carry out killings in the name of the anti-drug campaign", - "values": [ - "Extrajudicial executions" - ] - }, - { - "text": "Consider ratifying the International Convention on the Protection of the Rights of All Migrant Workers and Members of their Families that it signed in 2004", - "values": [ - "International instruments", - "Labour", - "Migrants" - ] - }, - { - "text": "Continue to improve integration and fight racial discrimination against less-favoured communities, including by taking further measures to improve the access of immigrants, foreigners and ethnic minorities to adequate housing, education, public services and employment ", - "values": [ - "Migrants", - "Minorities", - "Racial discrimination" - ] - }, - { - "text": "Ensure effective implementation of the existing normative framework guaranteeing women's right to equality, in particular to ensure access to justice, protection and other remedies ", - "values": [ - "Women's rights" - ] - }, - { - "text": "Provide more resources for strategies and programs aimed at fighting against unemployment, especially among young people and to reduce disparities between regions and social groups, especially regarding access to education and health care ", - "values": [ - "Development", - "Right to education", - "Right to health" - ] - }, - { - "text": "Fully cooperate with the Secretary-General, the African Union special envoys and OHCHR on the situation in Western Sahara", - "values": [ - "Technical assistance and cooperation" - ] - }, - { - "text": "Ensure, in accordance with its international obligations, that the right to freedom of expression is fully respected ", - "values": [ - "Freedom of opinion and expression" - ] - }, - { - "text": "To seize the CNCDH as often as possible in the context of law-making so that it efficiently assumes its advisory role", - "values": [ - "National Human Rights Institution" - ] - }, - { - "text": "Consider reviewing its domestic legislation on migration with the aim of aligning it with the international laws and standards ", - "values": [ - "Migrants" - ] - }, - { - "text": "Implement promptly the National Gender Equality and Women's Development Policy ", - "values": [ - "Women's rights" - ] - }, - { - "text": "Criminalise as an offence domestic violence, violence within marriage and all forms of sexual abuse, as well as prohibit and punish by law the practice of early and forced marriages", - "values": [ - "Rights of the Child", - "Women's rights" - ] - }, - { - "text": "Continue strengthening social programmes to realize the interest of the Kuwaiti people", - "values": [ - "ESC rights - general" - ] - }, - { - "text": "Take steps to investigate sexual violations against women and adopt measures to prevent the repetition of acts against civilians by any of the groups in conflict, in compliance to international humanitarian law", - "values": [ - "International humanitarian law", - "Women's rights" - ] - }, - { - "text": "Close as soon as possible the witch camps", - "values": [ - "Women's rights" - ] - }, - { - "text": "Adopt a national action plan against racism, racial discrimination, xenophobia and related intolerance, including religious intolerance and discrimination", - "values": [ - "Freedom of religion and belief", - "Racial discrimination" - ] - }, - { - "text": "Allocate at least 25 per cent of the national budget for education and eliminate all discretional fees in order to ensure free primary education for all children ", - "values": [ - "Right to education", - "Rights of the Child" - ] - }, - { - "text": "Intensify efforts to end discrimination against women and increase women participation in the Government, in decision making positions and other segments of society", - "values": [ - "Women's rights" - ] - }, - { - "text": "Strengthen measures to ensure the full independence of the judiciary", - "values": [ - "Justice" - ] - }, - { - "text": "Work to ensure the independence of the judiciary and to continue with the efforts to fight crime using a preventive approach and a human rights perspective", - "values": [ - "Human rights education and training", - "Justice" - ] - }, - { - "text": "Investigate the numerous cases of aerial bombardments", - "values": [ - "Other" - ] - }, - { - "text": "Sign and ratify the Optional Protocol to the Convention on the Rights of Persons with Disabilities ", - "values": [ - "Disabilities", - "International instruments" - ] - }, - { - "text": "Develop a National Policy on Disability with the assistance of Pacific Islands Forum Secretariat and regional partners, to enhance the development of a National Disability Policy", - "values": [ - "Disabilities", - "Technical assistance and cooperation" - ] - }, - { - "text": "Ratify core international human rights treaties, including the ICCPR, ICESCR, CEDAW", - "values": [ - "CP rights - general", - "ESC rights - general", - "International instruments", - "Women's rights" - ] - }, - { - "text": "In the area of rights of persons with disabilities, full implementation of the Convention on the Rights of Persons with Disabilities, and the promotion of relevant policies and targeted programmes to provide equal access to services and opportunities to persons with disabilities", - "values": [ - "Disabilities", - "International instruments" - ] - }, - { - "text": "Ratify the international treaties to which the state is not yet party, particularly the Convention against Torture, the Convention on the Elimination of All Forms of Discrimination against Women and its Optional Protocol, the Second Optional Protocol to the International Covenant on Civil and Political Rights, aiming at the abolition of the death penalty ", - "values": [ - "Death penalty", - "International instruments", - "Torture and other CID treatment", - "Women's rights" - ] - }, - { - "text": "Introduce a requirement that all deaths in custody be reviewed and investigated by independent bodies tasked with considering prevention of deaths and implement the recommendations of Coronial and other investigations and enquiries ", - "values": [ - "Detention", - "Justice" - ] - }, - { - "text": "Continue the role that the Kuwait Fund for Arab Economic Development is playing in the world", - "values": [ - "Development" - ] - }, - { - "text": "Continue paying attention to achieving comprehensive development through support for a human rights culture through the media and the educational system", - "values": [ - "Human rights education and training" - ] - }, - { - "text": "Correctly address the root causes of racial discrimination and eliminate the frequently occurred excessive use of force by law enforcement against of African Americans and other ethnic minorities", - "values": [ - "Human rights violations by state agents", - "Minorities", - "Racial discrimination" - ] - }, - { - "text": "Continue its efforts to ensure access to water by improving water services", - "values": [ - "Right to water and sanitation" - ] - }, - { - "text": "Ratify the Convention on the Rights of Persons with Disabilities (CRPD) convention and enact legislation to protect persons with disabilities in accordance with CRPD standards ", - "values": [ - "Disabilities", - "International instruments" - ] - }, - { - "text": "Implement a zero tolerance policy to eradicate all forms of sexual and domestic violence against women ", - "values": [ - "Women's rights" - ] - }, - { - "text": "Scale up the human rights protection awareness-raising of vulnerable groups, including migrant workers", - "values": [ - "Human rights education and training", - "Labour", - "Migrants" - ] - }, - { - "text": "As a first step, consider amending their legislation on the death penalty in order to restrict its scope and adjust it to the international minimum standards on the death penalty, and, in the light of the increasing awareness of the international community on the matter, as reflected in General Assembly resolutions approved in 2007 and 2008, consider the establishment of a moratorium on the use of the death penalty with a view to abolishing capital punishment in the national legislation", - "values": [ - "Death penalty" - ] - }, - { - "text": "Strengthen efforts to include Roma children in mainstream education ", - "values": [ - "Minorities", - "Right to education", - "Rights of the Child" - ] - }, - { - "text": "Further strengthen the capacity in implementing the environmental strategies and plan to combat natural disasters", - "values": [ - "Environment" - ] - }, - { - "text": "Sign and ratify ICRMW.", - "values": [ - "International instruments", - "Labour", - "Migrants" - ] - }, - { - "text": "Take appropriate measures to prevent the forced labour of children in the country", - "values": [ - "Labour", - "Rights of the Child" - ] - }, - { - "text": "Provide adequate funding for the national human rights institution and reduce its reliance on external sources", - "values": [ - "National Human Rights Institution" - ] - }, - { - "text": "Ensure the effective implementation of the Children\u2019s Code with a view to protect the rights of this vulnerable group", - "values": [ - "Rights of the Child" - ] - }, - { - "text": "Continue to develop and institute effective mechanisms for improved dialogue and consultation with the Sami people in all areas of Government policy that affect them and in the development of legislation ", - "values": [ - "Indigenous peoples" - ] - }, - { - "text": "Adopt specific legislation to prevent discrimination based on sexual orientation or gender identity", - "values": [ - "Sexual Orientation and Gender Identity" - ] - }, - { - "text": "Fully and thoroughly implement Law No. 97 of 20 June 2008, on the prevention and repression of violence against women and gender violence", - "values": [ - "Women's rights" - ] - }, - { - "text": "Continue promoting and developing the activities of civil society ", - "values": [ - "Civil society" - ] - }, - { - "text": "Ensure proper implementation of the Prevention and Combating of Hate Crimes and Hate Speech Bill and the draft national action plan to combat racism, racial discrimination, xenophobia and related intolerance, once adopted", - "values": [ - "Racial discrimination" - ] - }, - { - "text": "Review the definition of discrimination provided under the section III of the Constitution in terms of its compatibility with the prohibition against discrimination against descent and national or ethnic origin.", - "values": [ - "Racial discrimination" - ] - }, - { - "text": "Ensure the protection of refugees and asylum seekers and reconsider cases in which asylum seekers are to be forcibly returned", - "values": [ - "Asylum-seekers - refugees" - ] - }, - { - "text": "Maintain and further build upon its HIV/AIDS prevention, care and treatment programmes ", - "values": [ - "HIV - Aids" - ] - }, - { - "text": "Continue the efforts to perfect the living conditions of its population, including by improving access to health care services and quality education ", - "values": [ - "Right to education", - "Right to health" - ] - }, - { - "text": "Ensure that its agriculture policies do not undermine the food security or land rights of the most vulnerable and consider applying the technical guidance on the application of a human rights-based approach to the implementation of policies and programmes to reduce and eliminate preventable mortality of children under 5 years age (A/HRC/27/31)", - "values": [ - "Right to food", - "Right to health", - "Right to land", - "Rights of the Child" - ] - }, - { - "text": "Guarantee international humanitarian organizations and human rights monitors immediate access to political prisons and other camps, as well as to their surviving victims, in order to provide primary care", - "values": [ - "Detention" - ] - }, - { - "text": "Take steps to address inequalities affecting human rights in the area of discrimination based on sexual orientation and gender identity", - "values": [ - "Sexual Orientation and Gender Identity" - ] - }, - { - "text": "Ratify the Convention on the Rights of Persons with Disabilities that is has already signed in 2007 ", - "values": [ - "Disabilities", - "International instruments" - ] - }, - { - "text": "Accord priority to the ratification of ICCPR", - "values": [ - "CP rights - general", - "International instruments" - ] - }, - { - "text": "Provide the Ombudsman with the necessary material resources in compliance with the Paris Principles ", - "values": [ - "National Human Rights Institution" - ] - }, - { - "text": "Implement public awareness campaigns to promote tolerance and respect for cultural diversity and to counter prejudice, stereotypes, discrimination, racism, and Islamophobia", - "values": [ - "Freedom of religion and belief", - "Racial discrimination" - ] - }, - { - "text": "Enact legislation to prevent child labour and protect children from commercial sexual exploitation ", - "values": [ - "Labour", - "Rights of the Child" - ] - }, - { - "text": "Continue to increase its efforts to prevent and combat the trafficking in persons", - "values": [ - "Trafficking" - ] - }, - { - "text": "Intensify its efforts regarding the fight against poverty with the aim of achieving the pertinent objectives of the Millennium Development Goals ", - "values": [ - "Poverty" - ] - }, - { - "text": "Further effectively investigate, prosecute and punish all hate crimes and establish an authority where complaints in this regard can be addressed", - "values": [ - "Racial discrimination" - ] - }, - { - "text": "Formulate and implement a law on domestic violence as soon as possible ", - "values": [ - "Rights of the Child", - "Women's rights" - ] - }, - { - "text": "Maintain the moratorium on the use of the death penalty, with a view to abolishing it", - "values": [ - "Death penalty" - ] - }, - { - "text": "Strengthen efforts to implement the legal framework prohibiting child labour", - "values": [ - "Labour", - "Rights of the Child" - ] - }, - { - "text": "Strengthen the national action plan for the protection of women and girls against gender based violence ", - "values": [ - "Rights of the Child", - "Women's rights" - ] - }, - { - "text": "Consider ratifying the International Convention on the Protection of the Rights of All Migrant Workers and Members of Their Families and the ILO Domestic Workers Convention, 2011 (No. 189)", - "values": [ - "International instruments", - "Labour", - "Migrants" - ] - }, - { - "text": "Protect all workers from abuse by prosecuting perpetrators of labour abuses, adopting laws to protect victims, and better apprising foreign workers of their legal rights and remedies", - "values": [ - "Labour", - "Migrants" - ] - }, - { - "text": "Build upon its achievement in the area of human rights education and training, particularly for public officials, to strengthen the fight against alleged police violence ", - "values": [ - "Human rights education and training", - "Human rights violations by state agents" - ] - }, - { - "text": "Continue promoting the knowledge and strengthening the capacities of officials in preventing and handling trafficking in persons, including in implementing special measures and care for trafficking persons, involving vulnerable populations", - "values": [ - "Trafficking" - ] - }, - { - "text": "Take measures to abolish the death penalty", - "values": [ - "Death penalty" - ] - }, - { - "text": "Promote more intercultural education and ensure that marginalized groups enjoy equal rights before the law ", - "values": [ - "Minorities", - "Right to education" - ] - }, - { - "text": "Ratify the Palermo Protocol.", - "values": [ - "International instruments", - "Trafficking" - ] - }, - { - "text": "Review its laws and practices relating to religious groups to ensure that all persons, religious denominations and institutions feel free to associate and practice their religious beliefs", - "values": [ - "Freedom of religion and belief" - ] - }, - { - "text": "Accomplish progressively human rights goals as set forth in resolution 9-12.", - "values": [ - "General" - ] - }, - { - "text": "Continue strengthening small and medium-scale enterprises to create more job opportunities for the youth ", - "values": [ - "Development" - ] - }, - { - "text": "Sustain and strengthen nascent anti-corruption and transparency initiatives, in consultation with civil society, including through follow-on discussions to the national anti-corruption forum held in June", - "values": [ - "Civil society", - "Corruption" - ] - }, - { - "text": "Expeditiously implement actions requested by the International Labour Organization Committee of Experts aimed at combating the sexual abuse and exploitation of children", - "values": [ - "International instruments", - "Rights of the Child" - ] - }, - { - "text": "Continue with the policy of universal coverage of education to reach the rural areas ", - "values": [ - "Right to education" - ] - }, - { - "text": "Adopt provisions to prevent all forms of discrimination against women and girls and, in particular, promote access to higher education for members of the Baha'i community and other religious minorities", - "values": [ - "Freedom of religion and belief", - "Minorities", - "Right to education", - "Rights of the Child", - "Women's rights" - ] - }, - { - "text": "Ensure that no person is detained in secret or in unofficial facilities and to close such facilities", - "values": [ - "Detention", - "Enforced disappearances" - ] - }, - { - "text": "Strengthen the use of modern means of awareness-raising and dissemination with regard to a culture of human rights, notably the rights of vulnerable groups, and the role of institutions for the protection and promotion of human rights ", - "values": [ - "Human rights education and training" - ] - }, - { - "text": "Continue its efforts in implementing the national strategic plan for development which will strengthen the economic, social and cultural rights, particularly by eliminating poverty and attaining education and access to health services", - "values": [ - "Development", - "ESC rights - general", - "Poverty", - "Right to education", - "Right to health" - ] - }, - { - "text": "Continue making progress in implementing the Action Plan on violence against women and girls ", - "values": [ - "Rights of the Child", - "Women's rights" - ] - }, - { - "text": "Take all possible measures to ensure the necessary conditions so that the written press and the electronic media can function properly without any interference.", - "values": [ - "Freedom of the press" - ] - }, - { - "text": "Take steps to abolish the death penalty and increase transparency around its use.", - "values": [ - "Death penalty" - ] - }, - { - "text": "Combat malnutrition and micronutrient deficiencies by ensuring the right to adequate and healthy food", - "values": [ - "Right to food" - ] - }, - { - "text": "Consider a review of the NGO law taking into account, amongst others, the concerns expressed by United Nations rights bodies ", - "values": [ - "Civil society", - "Treaty bodies" - ] - }, - { - "text": "Conduct appropriate programs towards increasing participation and enhance participation of civil society in decision-making and development process ", - "values": [ - "Civil society", - "Development" - ] - }, - { - "text": "Review article 7 of the National Security Act, which restricts freedom of expression", - "values": [ - "Freedom of opinion and expression" - ] - }, - { - "text": "Increase resources to reduce overcrowding and improve health facilities in prisons, and follow the National Commission for the Prevention of Torture recommendations on youths and juveniles in pretrial detention", - "values": [ - "Detention", - "Right to health", - "Rights of the Child" - ] - }, - { - "text": "Move towards the definite abolition of the death penalty and ratify the Second Optional Protocol to the International Covenant on Civil and Political Rights", - "values": [ - "Death penalty", - "International instruments" - ] - }, - { - "text": "Develop necessary institutional infrastructure to promote mutual understanding, tolerance and interreligious dialogue in Maldivian society to contribute to addressing religious extremism and strengthening cultural diversity", - "values": [ - "Freedom of religion and belief" - ] - }, - { - "text": "Comply with the principle of freedom of movement in the Central American region adopted in the framework of the Central American System of Integration ", - "values": [ - "Freedom of movement" - ] - }, - { - "text": "Step up its efforts to achieve universal primary education and increase educational opportunities for illiterate people", - "values": [ - "Right to education" - ] - }, - { - "text": "Take measures to guarantee full access to education and health care for the most vulnerable persons, including refugees and asylum seekers", - "values": [ - "Asylum-seekers - refugees", - "Right to education", - "Right to health", - "Rights of the Child" - ] - }, - { - "text": "Thailand will accelerate efforts to reform the justice system and strengthen law enforcement", - "values": [ - "Justice" - ] - }, - { - "text": "Continue to realize the rights of persons with disabilities, including their right to education, in the framework of the National Plan for the Integration of Persons with Disabilities which it has adopted", - "values": [ - "Disabilities", - "Right to education" - ] - }, - { - "text": "Bring its law in conformity with international human rights law", - "values": [ - "International instruments" - ] - }, - { - "text": "Consider issuing standing invitations to all special procedures and institute measures to ensure women are paid equally as men for the same work", - "values": [ - "Women's rights" - ] - }, - { - "text": "Abolish military conscription and compulsory military training, particularly for children ", - "values": [ - "International humanitarian law", - "Rights of the Child" - ] - }, - { - "text": "Step up measures to achieve MDGs ", - "values": [ - "Development" - ] - }, - { - "text": "Refrain from referring to laws other than the press code when dealing with infractions of the freedom of expression", - "values": [ - "Freedom of opinion and expression" - ] - }, - { - "text": "Take necessary measures to ensure that individuals suspected of committing crimes under international law and other serious human rights violations are thoroughly investigated and brought to justice", - "values": [ - "Justice" - ] - }, - { - "text": "Abolish polygamy and adopt a plan to fight the scourge of female genital mutilation, criminalizing this practice and mobilizing public opinion against it, and adopt measures to reduce violence against women, both rape and domestic violence.", - "values": [ - "Rights of the Child", - "Torture and other CID treatment", - "Women's rights" - ] - }, - { - "text": "Pass and implement its proposed legislation to prevent violence against women and adopt a strategy to properly tackle the unequal status of women in many areas including education, public life and decision-making ", - "values": [ - "Women's rights" - ] - }, - { - "text": "Ensure timely and effective access to government information ", - "values": [ - "Freedom of opinion and expression" - ] - }, - { - "text": "Take the necessary measures to ensure that those responsible for acts of violence and sexual abuse of girls, especially in the education system, are effectively punished and removed from their posts", - "values": [ - "Human rights violations by state agents", - "Rights of the Child", - "Women's rights" - ] - }, - { - "text": "Increase the use and promotion of alternative, non-custodial measures", - "values": [ - "Detention" - ] - }, - { - "text": "Respect freedoms of expression and association, both online and offline, particularly leading up to this year's elections, and release political detainees", - "values": [ - "Detention", - "Elections", - "Freedom of association and peaceful assembly", - "Freedom of opinion and expression" - ] - }, - { - "text": "Strengthen its efforts to address the serious and ongoing problem of domestic violence ", - "values": [ - "Rights of the Child", - "Women's rights" - ] - }, - { - "text": "Look into amending the Personal and Family Code in accordance with international standards on women's human rights", - "values": [ - "International instruments", - "Women's rights" - ] - }, - { - "text": "Stop plans to freeze social spending during the next twenty years, that are inconsistent with the international obligations of the country with more than 16 million persons in extreme poverty", - "values": [ - "ESC rights - general", - "International instruments", - "Poverty" - ] - }, - { - "text": "In keeping with CEDAW recommendations, to ensure that women have access to adequate health and social services, and to take a concrete step to reduce maternal mortality rates", - "values": [ - "Right to health", - "Treaty bodies", - "Women's rights" - ] - }, - { - "text": "Reschedule the postponed visit of the Working Group on Arbitrary Detention and set the date for the visit of the Special Rapporteur on the human rights of migrants", - "values": [ - "Detention", - "Migrants", - "Special procedures" - ] - }, - { - "text": "Consider increased State monitoring of international private security companies, including regulation of their activities.", - "values": [ - "Public security" - ] - }, - { - "text": "Put an end to repression, investigate acts of repudiation and protect all persons who are the targets of intimidation or violence ", - "values": [ - "Rights of the Child", - "Women's rights" - ] - }, - { - "text": "Implement public policies to seek greater gender equality, both in political life and in the enjoyment of rights by women and girls under equal conditions", - "values": [ - "Rights of the Child", - "Women's rights" - ] - }, - { - "text": "Use all the means available to raise the level of human rights awareness ", - "values": [ - "Human rights education and training" - ] - }, - { - "text": "Fully implement the Law on Domestic Violence against Women and disseminate information about this law as widely as possible ", - "values": [ - "Women's rights" - ] - }, - { - "text": "Ratify the Rome Statute ", - "values": [ - "International instruments", - "Justice" - ] - }, - { - "text": "Enhance, through consultation mechanisms, the participation of indigenous peoples in the determination of public policies that affect them ", - "values": [ - "Indigenous peoples" - ] - }, - { - "text": "Repeal all discriminatory laws against women, withdraw all its reservations made to the Convention on the Elimination of All Forms of Discrimination against Women and increase its cooperation with the Committee on the Elimination of Discrimination against Women by implementing all recommendations made in 2007 ", - "values": [ - "International instruments", - "Treaty bodies", - "Women's rights" - ] - }, - { - "text": "Implement the Decision of the African Union on Consolidation of Peace and Security in the Country", - "values": [ - "Public security" - ] - }, - { - "text": "Pursue discussions on the legal framework for the voluntary termination of pregnancy and consider, in this framework, amending its criminal code to provide for voluntary termination of pregnancy", - "values": [ - "Right to health", - "Women's rights" - ] - }, - { - "text": "Continue its committed efforts in economic and social development and improving people's living standard so as to protect effectively the rights of its people ", - "values": [ - "Development" - ] - }, - { - "text": "Ensure that the rights of all children are equally protected under domestic law, regardless of gender, and consider implementing the recommendations of the Committee on the Rights of the Child", - "values": [ - "Rights of the Child", - "Treaty bodies" - ] - }, - { - "text": "Reconsider the abolition of the death penalty as a sentence for various crimes", - "values": [ - "Death penalty" - ] - }, - { - "text": "Become party to the Convention on the Elimination of All Forms of Discrimination against Women ", - "values": [ - "International instruments", - "Women's rights" - ] - }, - { - "text": "Continue the efforts to promote the right to health, in particular by giving priority to primary health care and by strengthening the attention paid to mental health problems. Likewise, promote the right to health of persons with disabilities and lesbian, gay, bisexual, transgender and intersex persons", - "values": [ - "Right to health", - "Sexual Orientation and Gender Identity" - ] - }, - { - "text": "Permit international monitors to examine immigration detention centres.", - "values": [ - "Detention", - "Migrants" - ] - }, - { - "text": "Ratify International Labour Organization (ILO) Convention No. 189 concerning decent work for domestic workers ", - "values": [ - "International instruments", - "Labour" - ] - }, - { - "text": "Ratify the 1961 Convention on the Reduction of Statelessness", - "values": [ - "International instruments", - "Statelessness and the right to nationality" - ] - }, - { - "text": "Take additional measures to combat stigmatization and stereotyping, including through awareness-raising initiatives and to respond to instances of racist remarks or acts by high-level public officials", - "values": [ - "Human rights education and training", - "Racial discrimination" - ] - }, - { - "text": "Take necessary steps to improve treatment of prisoners in compliance with international standards", - "values": [ - "Detention" - ] - }, - { - "text": "Take steps to eradicate discrimination and intolerance against any ethnic, racial or religious group and ensure equal opportunity for their economic, social and security rights", - "values": [ - "ESC rights - general", - "Freedom of religion and belief", - "Minorities", - "Racial discrimination" - ] - }, - { - "text": "Withdraw reservations to CAT and accede to its Optional Protocol ", - "values": [ - "Detention", - "International instruments", - "Torture and other CID treatment" - ] - }, - { - "text": "Uphold and respect the rights of the human person from the moment of conception to natural death ", - "values": [ - "Other" - ] - }, - { - "text": "Continue cooperating with the United Nations and other international organizations to develop its legal and institutional framework with respect to the promotion and protection of human rights in Thailand ", - "values": [ - "Technical assistance and cooperation" - ] - }, - { - "text": "Eliminate all legal provisions and policies which discriminate against adherents of other religions than Islam and adopt a unified law for places of worship", - "values": [ - "Freedom of religion and belief" - ] - }, - { - "text": "Investigate and prosecute all war crimes, regardless of the ethnic origins of the victims and the perpetrators of the crimes", - "values": [ - "Justice" - ] - }, - { - "text": "Reinforce its campaign to raise awareness of human rights issues through the media, at the school level, in youth forums and in community activities", - "values": [ - "Human rights education and training" - ] - }, - { - "text": "Study the possibility of increasing the measures to eliminate all discriminatory treatment based on sexual orientation or gender identity", - "values": [ - "Sexual Orientation and Gender Identity" - ] - }, - { - "text": "Create a system of easy access for the registration of newborns", - "values": [ - "Rights of the Child" - ] - }, - { - "text": "Set up a strategy to promote the rights of women to combat discrimination against women and girls, focusing in particular on matters such as early or forced marriage, sexual violence, equal access to education and equal access to land ownership, inter alia", - "values": [ - "Right to education", - "Right to land", - "Rights of the Child", - "Women's rights" - ] - }, - { - "text": "Modify the domestic legislation to be in accordance with the standards and requirements contained in the international human rights instruments ", - "values": [ - "International instruments" - ] - }, - { - "text": "Continue to promote good governance and rule of law through effective policy coordination at national and atoll levels", - "values": [ - "Justice" - ] - }, - { - "text": "Bulgaria confirms its commitment to consider ratifying the OP to the ICESCR7 and the ICPPED8 . Inter-departmental discussions are being held.", - "values": [ - "ESC rights - general", - "International instruments" - ] - }, - { - "text": "Continue national efforts to realize social and economic development and eradicate poverty, and achieve comprehensive sustainable development for all", - "values": [ - "Development", - "Poverty" - ] - }, - { - "text": "Create wide-ranging protection against the denial of rights to persons with disabilities to facilities and equal rights", - "values": [ - "Disabilities" - ] - }, - { - "text": "Consider ratifying the following international instruments: the International Covenant on Civil and Political Rights and the second Optional Protocol thereto, the International Convention for the Protection of All Persons from Enforced Disappearance and the Optional Protocol to the Convention against Torture, implementing the national preventive mechanism ", - "values": [ - "CP rights - general", - "Death penalty", - "Detention", - "Enforced disappearances", - "International instruments", - "Torture and other CID treatment" - ] - }, - { - "text": "Continue its efforts to ensure the total eradication of the harmful traditional practices of female genital mutilation ", - "values": [ - "Rights of the Child", - "Torture and other CID treatment", - "Women's rights" - ] - }, - { - "text": "Continue its cooperation with the United Nations in the field of human rights", - "values": [ - "Technical assistance and cooperation" - ] - }, - { - "text": "Continues its endeavours in promoting and protecting the human rights of all its citizens in an inclusive manner", - "values": [ - "General" - ] - }, - { - "text": "Expedite the finalization of the national policy on ending violence against women and girls", - "values": [ - "Women's rights" - ] - }, - { - "text": "Eliminate the gender pay gap", - "values": [ - "Women's rights" - ] - }, - { - "text": "Ensure prompt and impartial investigations of allegations of ill treatment, in accordance with its obligations under the Convention against Torture.", - "values": [ - "International instruments", - "Torture and other CID treatment" - ] - }, - { - "text": "Adopt measures to prevent and eliminate the excessive use of force, such as summary executions on the part of the security forces, and ensure that the perpetrators are brought to justice", - "values": [ - "Extrajudicial executions", - "Human rights violations by state agents" - ] - }, - { - "text": "Sign CRPD ", - "values": [ - "Disabilities", - "International instruments" - ] - }, - { - "text": "Take the necessary measures to guarantee the independence and the efficient functioning of the judicial system.", - "values": [ - "Justice" - ] - }, - { - "text": "Recognize that independent and free media are an essential component of a functioning democracy, and allow all journalists and media outlets to operate without fear", - "values": [ - "Freedom of the press" - ] - }, - { - "text": "Continue active work in combating domestic violence", - "values": [ - "Rights of the Child", - "Women's rights" - ] - }, - { - "text": "Consider the adoption of legislation which specifically governs domestic violence and consider the creation of structures for the shelter and protection of victims of violence ", - "values": [ - "Rights of the Child", - "Women's rights" - ] - }, - { - "text": "Arrest and bring to justice members of the armed forces of the Democratic Republic of the Congo who perpetrate sexual violence or any other form of human rights violations, without exception and without regard to their rank. ", - "values": [ - "Human rights violations by state agents", - "Justice" - ] - }, - { - "text": "The delegation highlighted the Government's commitment to strengthening the rule of law and democratic institutions. Fully aware of the existing human rights issues, the Government had strengthened its efforts to improve the respect of human rights and of the rule of law in past years. ", - "values": [ - "Justice" - ] - }, - { - "text": "Step up its efforts to protect the rights and to enhance the safety and welfare of foreign workers in Malaysia, particularly to secure better working conditions for domestic workers and better protection for those undocumented migrants", - "values": [ - "Labour", - "Migrants" - ] - }, - { - "text": "In the context of measures taken to counter terrorism, pay closer attention to the right to privacy in the legislative process ", - "values": [ - "Counter-terrorism", - "Privacy" - ] - }, - { - "text": "Facilitate the development of small businesses for both Italian citizens and migrants and establish programmes to encourage the economic and social integration of refugees", - "values": [ - "Asylum-seekers - refugees", - "ESC rights - general", - "Migrants" - ] - }, - { - "text": "Continue ongoing efforts and adopt effective measures and policies to stop and prevent sexual violence against women and girls ", - "values": [ - "Rights of the Child", - "Women's rights" - ] - }, - { - "text": "Reinstitute the moratorium on the application of the death penalty, reduce the number of crimes punishable by death and, ultimately, consider abolishing the death penalty", - "values": [ - "Death penalty" - ] - }, - { - "text": "Guarantee the right to fair trial and ensure that civilians are tried in civilian courts at all times", - "values": [ - "Justice" - ] - }, - { - "text": "Further protect the freedom of expression and prosecute crimes against journalists as a matter of priority", - "values": [ - "Freedom of opinion and expression", - "Freedom of the press" - ] - }, - { - "text": "Repeal the provisions criminalizing same-sex sexual relations between consenting adults, to respect the principles of equality and non- discrimination among all persons", - "values": [ - "Sexual Orientation and Gender Identity" - ] - }, - { - "text": "Continue efforts aimed at improving social security in the country, especially at this time of economic and financial crisis.", - "values": [ - "Other" - ] - }, - { - "text": "Take the necessary measures to raise awareness among the population against homophobia, and in general, in favour of the non-discrimination on the basis of sexual orientation, undertaking global public awareness campaigns ", - "values": [ - "Human rights education and training", - "Sexual Orientation and Gender Identity" - ] - }, - { - "text": "Promote gender equality in all aspects of life and combat violence against women", - "values": [ - "Women's rights" - ] - }, - { - "text": "Conduct awareness-raising campaigns related to women's rights, in particular aimed at eradicating female genital mutilation", - "values": [ - "Human rights education and training", - "Rights of the Child", - "Torture and other CID treatment", - "Women's rights" - ] - }, - { - "text": "Accelerate steps under way to establish the national human rights commission in accordance with the Paris Principles", - "values": [ - "National Human Rights Institution" - ] - }, - { - "text": "Develop additional programmes to end the practice of using the Juvenile Training Centres to detain children as a form of alternative care ", - "values": [ - "Detention", - "Rights of the Child" - ] - }, - { - "text": "Ensure legislation in the area of freedom of expression is in line with international standards, including by amending the Cyber Crime law and repealing the November 2012 Federal Legal Decree No. 5 on Cyber Crime", - "values": [ - "Freedom of opinion and expression" - ] - }, - { - "text": "Deepen and widen cooperation with the United Nations human rights system, and in particular with the Human Rights Council and its mechanisms", - "values": [ - "Special procedures", - "Treaty bodies", - "UPR process" - ] - }, - { - "text": "Continue its efforts in carrying out various programmes for promoting gender equality, combating negative stereotypes about women and their social role, including for the implementation of the "Female leaders in security and defence" project", - "values": [ - "Women's rights" - ] - }, - { - "text": "Continue with its active efforts to improve its legislation to further promote gender equality and the rights of women", - "values": [ - "Women's rights" - ] - }, - { - "text": "Prohibit the use of public flogging", - "values": [ - "Torture and other CID treatment" - ] - }, - { - "text": "Continue its positive approach in enhancing gender equality and combating gender-based violence including through the finalization, adoption and implementation of its national strategic plan of action to eliminate gender- based violence", - "values": [ - "Women's rights" - ] - }, - { - "text": "Further properly accommodate refugees in the country with the further support of international bodies and donors", - "values": [ - "Asylum-seekers - refugees", - "Technical assistance and cooperation" - ] - }, - { - "text": "To examine the possibility of withdrawing or modifying the reservations entered by the Government regarding articles 14 (2) and 16 of the Convention on the Elimination of All Forms of Discrimination against Women", - "values": [ - "International instruments", - "Women's rights" - ] - }, - { - "text": "Withdraw its Declaration from Articles 12 and 14 of the Convention on the Rights of Persons with Disabilities (CRPD) ", - "values": [ - "Disabilities", - "International instruments" - ] - }, - { - "text": "Adopt a law to abolish the death penalty", - "values": [ - "Death penalty" - ] - }, - { - "text": "Share its expertise in the field of strengthening the judicial system with other countries and continue to train judges to implement international conventions in their judgements", - "values": [ - "International instruments", - "Justice" - ] - }, - { - "text": "Pursue efforts to ratify international human rights instruments", - "values": [ - "International instruments" - ] - }, - { - "text": "Develop and adopt measures to prevent, prosecute and punish acts of torture and ill-treatment of prisoners or criminal suspects ", - "values": [ - "Detention", - "Torture and other CID treatment" - ] - }, - { - "text": "Accelerate the process of reviewing and aligning its domestic laws with the Constitution, particularly those pertaining to the prohibition of torture and the elimination of violence against women", - "values": [ - "Torture and other CID treatment", - "Women's rights" - ] - }, - { - "text": "Establish greater support systems in the form of more secure housing for women seeking shelter from abuse ", - "values": [ - "Right to housing", - "Women's rights" - ] - }, - { - "text": "Complete the reforms of the justice system and ensure the compliance of domestic legislation with the revised Constitution and the new legislation on the judiciary ", - "values": [ - "Justice" - ] - }, - { - "text": "Continue promoting the right of women, especially rural women and guarantee their equality in employment opportunities ", - "values": [ - "Women's rights" - ] - }, - { - "text": "Reply to all outstanding communications sent to Peru by OHCHR", - "values": [ - "Technical assistance and cooperation" - ] - }, - { - "text": "Adopt effective measures to address widespread child pregnancy and ensure access to sexual and reproductive health rights, as well as education programmes", - "values": [ - "Right to health", - "Rights of the Child", - "Women's rights" - ] - }, - { - "text": "Continue its efforts in the promotion and protection of children's rights, including through the implementation of the Plan of Action of Family Institution and Women and public education campaigns on the rights of the child ", - "values": [ - "Rights of the Child" - ] - }, - { - "text": "Establish a national action plan for the implementation of Security Council resolution 1325 (2000) on women, peace and security, as well as explicitly criminalize the recruitment and use of children in hostilities", - "values": [ - "Rights of the Child", - "Women's rights" - ] - }, - { - "text": "Step up its efforts in favour of gender equality and racial equality ", - "values": [ - "Racial discrimination", - "Women's rights" - ] - }, - { - "text": "Continue its efforts to reach the Millennium Development Goals by 2015 and increase the number of its primary and secondary schools and ensure parity at all levels of education, to strengthen higher education, to curb the high rate of illiteracy among women and to reduce child mortality and mortality among the general population of Djibouti ", - "values": [ - "Development", - "Right to education", - "Rights of the Child", - "Women's rights" - ] - }, - { - "text": "Undertake a comprehensive set of measures, in practice and law, including developing a national plan of action against racism, to combat racial discrimination against foreigners and religious minorities, in particular Muslims ", - "values": [ - "Freedom of religion and belief", - "Migrants", - "Minorities", - "Racial discrimination" - ] - }, - { - "text": "Establish a national human rights institution in line with the Paris Principles ", - "values": [ - "National Human Rights Institution" - ] - }, - { - "text": "Decree maternity leave as mandatory ", - "values": [ - "Women's rights" - ] - }, - { - "text": "Take the necessary measures to ensure access to education without discrimination and establish universal free primary education", - "values": [ - "Right to education" - ] - }, - { - "text": "Intensify efforts to combat cases of torture and other ill-treatment by State agents, establishing an independent and effective national mechanism for the prevention of torture", - "values": [ - "Detention", - "Human rights violations by state agents", - "Torture and other CID treatment" - ] - }, - { - "text": "Fight corruption at all levels ", - "values": [ - "Corruption" - ] - }, - { - "text": "Guarantee respect for human rights of foreign citizens, regardless of their immigration status, especially those from vulnerable groups, such as refugees, asylum-seekers and stateless persons, and guarantee respect for the principle of non-refoulement established in the 1951 Convention Relating to the Status of Refugees and its 1967 Protocol ", - "values": [ - "Asylum-seekers - refugees", - "International instruments", - "Migrants", - "Statelessness and the right to nationality" - ] - }, - { - "text": "Adopt legal or/and social awareness-raising measures to reduce violence against women ", - "values": [ - "Women's rights" - ] - }, - { - "text": "Pursue justice-system reforms, in particular with regard to strengthening the independence of the judiciary with focus on eliminating corruption and political interference ", - "values": [ - "Corruption", - "Justice" - ] - }, - { - "text": "Establish State-wide inclusive education, including through the allocation of necessary resources, and provide regular training for school personnel", - "values": [ - "Right to education" - ] - }, - { - "text": "Take all necessary legal and practical measures to eliminate FGM, including considering amendments to the penal code with provisions to specifically prohibit this practice ", - "values": [ - "Rights of the Child", - "Torture and other CID treatment", - "Women's rights" - ] - }, - { - "text": "Fight impunity and hold all officers and persons acting on their behalf accountable for acts of torture and harassment of civilians", - "values": [ - "Human rights violations by state agents", - "Impunity", - "Torture and other CID treatment" - ] - }, - { - "text": "Consider signing and ratifying the International Convention on the Rights of All Migrant Workers and Members of their Families.", - "values": [ - "International instruments", - "Labour", - "Migrants" - ] - }, - { - "text": "Strengthen efforts aimed at improving the national response to the HIV/AIDS epidemic", - "values": [ - "HIV - Aids" - ] - }, - { - "text": "Launch a credible investigation of forced evictions and land conflicts and use the results of this investigation to help draft new legislation, which fully takes the rights of indigenous peoples into account", - "values": [ - "Indigenous peoples", - "Right to land" - ] - }, - { - "text": "Multiply its awareness-raising campaigns and trainings on combating racial discrimination", - "values": [ - "Human rights education and training", - "Racial discrimination" - ] - }, - { - "text": "Ratify core universal human rights instruments, in particular, ICERD and CAT, and fulfil its treaty obligations ", - "values": [ - "International instruments", - "Racial discrimination", - "Torture and other CID treatment" - ] - }, - { - "text": "Argentina, as a federal State, undertakes to continue preparations for the establishment of a permanent body that will coordinate activities and foster dialogue to promote exchanges of information, experiences and good practices with and among the provinces in relation to the promotion and protection of human rights, as well as with the international mechanisms for the protection of universal, regional and subregional human rights", - "values": [ - "Other" - ] - }, - { - "text": "Repeal all provisions which may be applied to criminalize sexual activity between consenting adults", - "values": [ - "Sexual Orientation and Gender Identity" - ] - }, - { - "text": "Analyse the possibility of creating a national human rights network, which among other issues would facilitate, the establishment of a national system for monitoring international recommendations", - "values": [ - "Other" - ] - }, - { - "text": "Continue to develop policies aimed at improving information infrastructure for the benefit of Cuban society ", - "values": [ - "Freedom of opinion and expression" - ] - }, - { - "text": "Ensure an independent and equitable justice for all", - "values": [ - "Justice" - ] - }, - { - "text": "Consider establishing an independent national human rights institution ", - "values": [ - "National Human Rights Institution" - ] - }, - { - "text": "Recommended ratification of the Optional Protocol to CEDAW", - "values": [ - "International instruments", - "Women's rights" - ] - }, - { - "text": "Ensure the prevention and full investigation of hate crimes and violent attacks targeting ethnic and religious minorities, including migrants, refugees and asylum seekers", - "values": [ - "Asylum-seekers - refugees", - "Freedom of religion and belief", - "Migrants", - "Minorities", - "Racial discrimination" - ] - }, - { - "text": "Ensure that the rights of human rights defenders are respected and ensure that the judicial authorities carry out thorough and impartial investigations with respect to threats, intimidation and violence against human rights defenders ", - "values": [ - "Human rights defenders" - ] - }, - { - "text": "Develop a national plan of action to enforce the rights of children in a comprehensive manner and based on the Convention on the Rights of the Child ", - "values": [ - "International instruments", - "Rights of the Child" - ] - }, - { - "text": "Strengthen its cooperation with treaty bodies ", - "values": [ - "Treaty bodies" - ] - }, - { - "text": "Continue to strengthen its activities to ensure there is no discrimination against ethnic minorities in the enjoyment of the full range of human rights, in line with the comments of the Committee on Economic, Social and Cultural Rights, the Committee on the Elimination of Racial Discrimination, the Committee on the Rights of the Child, and the Committee on the Elimination of Discrimination Against Women.", - "values": [ - "Minorities", - "Racial discrimination", - "Treaty bodies" - ] - }, - { - "text": "Proceed with the establishment of a National Preventive Mechanism against Torture in accordance with the Optional Protocol to the Convention against Torture, ensuring their independence, adequate funding and resources, and the development of a detailed plan for its effective implementation ", - "values": [ - "Detention", - "International instruments", - "Torture and other CID treatment" - ] - }, - { - "text": "Investigate all allegations of mistreatment or abuse of detainees by the National Directorate of Security, the Afghan National Police and the Afghan Local Police and ensure that those who commit such acts are held accountable ", - "values": [ - "Detention", - "Human rights violations by state agents" - ] - }, - { - "text": "Ensure the full transposition into national law of the provisions of the CAT ", - "values": [ - "International instruments", - "Torture and other CID treatment" - ] - }, - { - "text": "Pursue ongoing action in favour of training for qualified teaching staff, and provide education opportunities for all segments and social groups in various regions ", - "values": [ - "Right to education" - ] - }, - { - "text": "Strengthen the Judiciary control over detention conditions ", - "values": [ - "Detention", - "Justice" - ] - }, - { - "text": "Establish and set up a national human rights institution in conformity with the Paris Principles", - "values": [ - "National Human Rights Institution" - ] - }, - { - "text": "Implement a comprehensive policy to address serious deficiencies in the judiciary and in the security forces, as recommended by the Jamaican Justice System Reform Task Force ", - "values": [ - "Justice" - ] - }, - { - "text": "Accede to the Rome Statute of the International Criminal Court and implement it into national law", - "values": [ - "International instruments", - "Justice" - ] - }, - { - "text": "Establish an immediate official moratorium on the use of the death penalty with a view to abolishing it and to adhering to the Second Optional Protocol to the International Covenant on Civil and Political Rights", - "values": [ - "Death penalty", - "International instruments" - ] - }, - { - "text": "Strengthen its cooperation with international human rights mechanisms, in particular with the Human Rights Council", - "values": [ - "Special procedures", - "Treaty bodies", - "UPR process" - ] - }, - { - "text": "Complete swiftly all necessary procedures so the national office of human rights begins its work", - "values": [ - "Other" - ] - }, - { - "text": "Continue its efforts to ensure access to education for all children", - "values": [ - "Right to education", - "Rights of the Child" - ] - }, - { - "text": "Introduce and implement a comprehensive legal framework that protects women and girls against all forms of gender-based violence", - "values": [ - "Rights of the Child", - "Women's rights" - ] - }, - { - "text": "Allocate more resources in promoting and protecting human rights in crucial areas such as poverty eradication, justice administration, education, public health and gender equality for all sections of the population ", - "values": [ - "Justice", - "Poverty", - "Right to education", - "Women's rights" - ] - }, - { - "text": "Abolish the laws on sponsorship and include domestic workers in laws that protect workers", - "values": [ - "Labour", - "Migrants" - ] - }, - { - "text": "Strengthen its efforts in order to end discrimination against women, especially by revising the Personal Status Law and granting women the right to confer their nationality", - "values": [ - "Women's rights" - ] - }, - { - "text": "Ratify as soon as possible the third Optional Protocol to the Convention on the Rights of the Child on a communications procedure", - "values": [ - "International instruments", - "Rights of the Child" - ] - }, - { - "text": "Institute comprehensive reporting and statistical analysis of the scale and character of violence against indigenous women, so that a national strategy can be initiated, in consultation with indigenous representatives, to respond to the severity of the issues", - "values": [ - "Indigenous peoples", - "Women's rights" - ] - }, - { - "text": "Step up efforts to close the gender pay gap", - "values": [ - "Women's rights" - ] - }, - { - "text": "Continue strengthening programmes for combating xenophobia, discrimination and violence motivated by the sexual orientation and gender identity of the victims", - "values": [ - "Racial discrimination", - "Sexual Orientation and Gender Identity" - ] - }, - { - "text": "Ensure that Iraq's national legislation guarantees the rights of boys, girls and adolescents and establishes 18 as the age of adulthood, especially regarding penal responsibility", - "values": [ - "Justice", - "Rights of the Child" - ] - }, - { - "text": "Continue promoting its successful programmes and social policies, with international assistance and cooperation, to advance social development and achieve greater well-being of its population", - "values": [ - "Development", - "ESC rights - general", - "Technical assistance and cooperation" - ] - }, - { - "text": "Ensure full and equal access to public health services for Pygmy peoples in all areas of the country in particular by increasing the number of health care facilities and ensure proper registration of children at birth", - "values": [ - "Indigenous peoples", - "Right to health", - "Rights of the Child", - "Statelessness and the right to nationality" - ] - }, - { - "text": "Continue its efforts to improve people's lives and to promote economic and social development", - "values": [ - "Development", - "ESC rights - general" - ] - }, - { - "text": "Continue to support people with disabilities to participate in decisions about their fundamental rights", - "values": [ - "Disabilities" - ] - }, - { - "text": "Further improve its cooperation with all United Nations human rights mechanisms, submitting its overdue reports to treaty bodies, as well as its response to communications of the special procedures", - "values": [ - "Special procedures", - "Treaty bodies", - "UPR process" - ] - }, - { - "text": "Expedite the granting of communal land title to indigenous communities and consider appropriate compensation in this regard", - "values": [ - "Indigenous peoples" - ] - }, - { - "text": "Combat early marriage and the practice of bride price, in line with what was said by the Special Rapporteur on violence against women, its causes and consequences", - "values": [ - "Rights of the Child", - "Special procedures", - "Women's rights" - ] - }, - { - "text": "Reform its administrative justice system, including by eliminating "re-education through labour", and ratify the ICCPR", - "values": [ - "CP rights - general", - "Detention", - "International instruments" - ] - }, - { - "text": "Urgently address the needs of the Rohingya community by: guaranteeing security, ensuring full humanitarian access across Rakhine, removing restrictions on freedom of movement, and establishing a pathway to citizenship", - "values": [ - "Freedom of movement", - "Freedom of religion and belief", - "Minorities", - "Statelessness and the right to nationality" - ] - }, - { - "text": "Speed up the process of establishment of a human rights commission ensuring its independence and full compliance with the Paris principles", - "values": [ - "National Human Rights Institution" - ] - }, - { - "text": "Pass legislation specifically dealing with violence against women, including domestic violence, providing for prosecution of individuals committing acts of violence against women \n\n", - "values": [ - "Women's rights" - ] - }, - { - "text": "Ensure the effective investigation of episodes of violence against women and domestic violence, to bring perpetrators to justice and provide victims with adequate compensation, protection and assistance", - "values": [ - "Women's rights" - ] - }, - { - "text": "Invest more resources towards a better service delivery mechanism that will also ensure that the remaining internally displaced citizens return safely to their territories", - "values": [ - "Internally displaced persons" - ] - }, - { - "text": "Accelerate the adoption of a draft bill on alternative measures to detention as a solution to prison overcrowding ", - "values": [ - "Detention" - ] - }, - { - "text": "Prevent and combat trafficking in persons and intensify the protection of victims", - "values": [ - "Trafficking" - ] - }, - { - "text": "Submit its first report on compliance with the Convention on the Rights of the Child, in line with its commitment as stated in the national report ", - "values": [ - "Rights of the Child", - "Treaty bodies" - ] - }, - { - "text": "Further consolidate its achievements in the fields of ensuring and advancing the full enjoyment of the human rights of vulnerable groups such as children and disabled people as well as in strengthening the rule of law and social cohesion for exhaustively guaranteeing all human rights for her people ", - "values": [ - "Disabilities", - "Rights of the Child" - ] - }, - { - "text": "Intensify the pace of cooperation with the treaty bodies ", - "values": [ - "Treaty bodies" - ] - }, - { - "text": "Allocate the necessary resources to the campaigns, plans and programs which were launched with the aim of strengthening the strife of preventing violence against women ", - "values": [ - "Women's rights" - ] - }, - { - "text": "Continue efforts to prevent various forms of discrimination, including discrimination based on ethnic origin", - "values": [ - "Racial discrimination" - ] - }, - { - "text": "Take concrete measures to ensure the implementation of the action plan for the human rights roadmap and to ensure all its citizens have access to an independent and competent legal aid system", - "values": [ - "Justice" - ] - }, - { - "text": "Redouble its efforts to fully implement, as soon as possible, the plan of action for peace, justice and reconciliation, adopted in 2005", - "values": [ - "Justice" - ] - }, - { - "text": "Take measures to allow peaceful public meetings to be held freely and avoid using politicized charges and vague terminology which prevent citizens from exercising their freedom of assembly and association", - "values": [ - "Freedom of association and peaceful assembly" - ] - }, - { - "text": "Panama reiterates its commitment to consulting with disabled persons' organizations and will strengthen the technical and administrative measures in place to ensure the full exercise of this right.", - "values": [ - "Disabilities" - ] - }, - { - "text": "Continue efforts to fight discrimination and violence against women as well as trafficking in persons", - "values": [ - "Trafficking", - "Women's rights" - ] - }, - { - "text": "Further collaborate with civil society in order to raise awareness and ensure protection and support for victims.", - "values": [ - "Civil society" - ] - }, - { - "text": "Address the issue of youth holistically within national development plans ", - "values": [ - "Rights of the Child" - ] - }, - { - "text": "Establish a moratorium on the application of death penalty with a view to its definitive abolition in legislation and, in this case, sign and ratify the Second Optional Protocol to the International Covenant on Civil and Political Rights ", - "values": [ - "Death penalty", - "International instruments" - ] - }, - { - "text": "Ratify the UNESCO Convention on the Protection and Promotion of Diversity of the Cultural Expression", - "values": [ - "International instruments" - ] - }, - { - "text": "Ensure respect for the rights and fundamental freedoms of lesbian, gay, bisexual, transgender and intersex persons, by investigating and sanctioning acts of discrimination and violence against such persons", - "values": [ - "Sexual Orientation and Gender Identity" - ] - }, - { - "text": "Reinforce human rights training to the law enforcement personnel and to members of security forces and to hold duly accountable all those responsible for extrajudicial killings and other excessive use of force", - "values": [ - "Extrajudicial executions", - "Human rights education and training", - "Human rights violations by state agents", - "Torture and other CID treatment" - ] - }, - { - "text": "Take practical measures to cease the maltreatment of and violence against the refugees, including sexual violence by the officials in detention centres", - "values": [ - "Asylum-seekers - refugees", - "Detention" - ] - }, - { - "text": "Maintain the efforts to meet the basic needs of the poor and other vulnerable groups with the view to achieving an adequate standard of living for all ", - "values": [ - "Poverty" - ] - }, - { - "text": "Prosecute the perpetrators within the security forces who committed violent acts against demonstrators and opposition members, while providing the adequate resources to support impartial investigations and respecting international human rights law", - "values": [ - "Freedom of association and peaceful assembly", - "Human rights violations by state agents", - "International instruments" - ] - }, - { - "text": "Ensure a fair and transparent process for issuing broadcasting licences and guaranteeing the independence of broadcasting regulatory bodies ", - "values": [ - "Freedom of opinion and expression" - ] - }, - { - "text": "Continue working for the enactment into law of the gender equality bill", - "values": [ - "Women's rights" - ] - }, - { - "text": "Restore the confidence of the population in judicial system ", - "values": [ - "Justice" - ] - }, - { - "text": "Continue efforts aimed at combating domestic violence ", - "values": [ - "Women's rights" - ] - }, - { - "text": "Take immediate steps to end violence and discrimination against national or ethnic, linguistic and religious minorities", - "values": [ - "Freedom of religion and belief", - "Minorities", - "Racial discrimination" - ] - }, - { - "text": "Make further efforts for the protection of rights of persons with disabilities and share good experiences in this regard", - "values": [ - "Disabilities" - ] - }, - { - "text": "Establish a regulatory framework for monitoring the activities of multinational companies operating in the country to ensure rights to development", - "values": [ - "Business and human rights", - "Development" - ] - }, - { - "text": "Repeal or amend without delay the Assembly Law of November 2013, with a view to guarantee the right to free assembly and freedom of expression", - "values": [ - "Freedom of association and peaceful assembly", - "Freedom of opinion and expression" - ] - }, - { - "text": "Free without delay prisoners of conscience and those who are arbitrarily detained", - "values": [ - "Detention", - "Freedom of religion and belief" - ] - }, - { - "text": "Promote national reconciliation taking into account and protecting Sri Lanka's ethnic and religious pluralism, ensuring that all religious denominations are granted equal treatment and enjoy their fundamental rights", - "values": [ - "Freedom of religion and belief", - "Minorities" - ] - }, - { - "text": "Pursue the implementation of programs of action aimed at slowing down and controlling the migration flow while continuing engaging with international efforts aimed at addressing the root causes of the illegal migration phenomenon", - "values": [ - "Migrants" - ] - }, - { - "text": "Consider ratifying the Palermo Protocol supplementing the United Nations Convention against Transnational Organized Crime", - "values": [ - "International instruments", - "Trafficking" - ] - }, - { - "text": "Intensify efforts to harmonize its national legislation with international standards, including by providing more training for judicial and law enforcement officials for the effective application of international standards", - "values": [ - "Human rights education and training", - "Justice" - ] - }, - { - "text": "Impose an immediate de jure moratorium on executions, with a view to the complete abolition of the death penalty for all crimes ", - "values": [ - "Death penalty" - ] - }, - { - "text": "Suitably addresses the disproportionate impact of HIV/AIDS on women and girls by increasing its efforts to further reduce the number of women and girls affected by the HIV pandemic and to increase prevention of mother-to-child transmission of HIV and AIDS", - "values": [ - "HIV - Aids", - "Rights of the Child", - "Women's rights" - ] - }, - { - "text": "Sri Lanka will introduce changes in both formal and non-formal educational systems to introduce and/or further develop the human rights content within these programmes with a view to nurturing a culture of human rights in society.", - "values": [ - "Human rights education and training" - ] - }, - { - "text": "Adopt the law on the compliance of the National Human Rights Commission with the Paris Principles", - "values": [ - "National Human Rights Institution" - ] - }, - { - "text": "Continue the institutional framework initiated to establish a National Human Rights Institution in accordance with the Paris Principles", - "values": [ - "National Human Rights Institution" - ] - }, - { - "text": "Continue to enhance its domestic framework to combat child labour through enforcing the relevant legislation ", - "values": [ - "Labour", - "Rights of the Child" - ] - }, - { - "text": "Engage fully with civil society in tackling the issues of housing and justice, and women's and children's rights ", - "values": [ - "Civil society", - "Justice", - "Right to housing", - "Rights of the Child", - "Women's rights" - ] - }, - { - "text": "Create an enabling environment for the independent operation of various media outlets, including guaranteeing their access to effective remedies in cases of alleged political pressure and interference", - "values": [ - "Freedom of the press" - ] - }, - { - "text": "Intensify its efforts to sign and ratify international human rights instruments to which it is not yet a party, particularly those which it committed to sign and ratify", - "values": [ - "International instruments" - ] - }, - { - "text": "Take further steps to reform the judicial and penal system through the training of detention and prison staff, and the creation of adequate incarceration centres so as to avoid the abuse of arbitrary detention and to eliminate the excessive use of force by penitentiary personnel", - "values": [ - "Detention", - "Human rights violations by state agents", - "Justice" - ] - }, - { - "text": "Widely expand access to health services for all, especially for marginalized groups and indigenous peoples", - "values": [ - "Indigenous peoples", - "Right to health" - ] - }, - { - "text": "Consider adhering to the principles of the International Convention on the Protection of the Rights of All Migrant Workers and Members of Their Families ICRMW", - "values": [ - "International instruments", - "Labour", - "Migrants" - ] - }, - { - "text": "Repeal or amend relevant articles of the Penal Code, such as those regarding defamation or the discrediting of judicial decisions, which would bring Cambodia's domestic legislation into line with its international human rights obligations on freedom of expression ", - "values": [ - "Freedom of opinion and expression", - "International instruments" - ] - }, - { - "text": "Focus on refugees from Bhutan in camps in eastern Nepal wishing to return to Bhutan and in particular, at this juncture, on addressing those cases with compelling humanitarian concerns ", - "values": [ - "Asylum-seekers - refugees" - ] - }, - { - "text": "Ensure adequate financial and human resources to effectively implement its National Human Rights Action Plan", - "values": [ - "General" - ] - }, - { - "text": "Take measures to protect victims of trafficking by providing shelters and facilitate the process in order for victims to witness against traffickers in court ", - "values": [ - "Justice", - "Trafficking" - ] - }, - { - "text": "Take necessary measures to ensure that the collection and maintenance of data for criminal purposes do not entail massive surveillance of innocent persons", - "values": [ - "Privacy" - ] - }, - { - "text": "Review its Criminal Code to enhance punishment to combat racially motivated crimes", - "values": [ - "Racial discrimination" - ] - }, - { - "text": "Continue its initiatives in ensuring the provision of quality education for all its people", - "values": [ - "Right to education" - ] - }, - { - "text": "Continue carrying out efforts so that the Philippines Development Plan (2011-2016) is in accordance with its international human rights obligations ", - "values": [ - "International instruments" - ] - }, - { - "text": "Solicit the technical and financial assistance that it believes necessary to accompany it in its projects of human and social development ", - "values": [ - "Technical assistance and cooperation" - ] - }, - { - "text": "Continue the national strategy for combating violence against women", - "values": [ - "Women's rights" - ] - }, - { - "text": "Accede to the Optional Protocol to the Convention on the Rights of the Child on the sale of children", - "values": [ - "International instruments", - "Rights of the Child", - "Trafficking" - ] - }, - { - "text": "Continue its policy and measures to guarantee progress in achieving health-related goals of the MDGs", - "values": [ - "Right to health" - ] - }, - { - "text": "Combat and eliminate the worst forms of child labour, and raise the minimum age for hazardous work to 18", - "values": [ - "Labour", - "Rights of the Child" - ] - }, - { - "text": "Strengthen the cooperation with special procedures by extending a standing invitation", - "values": [ - "Special procedures" - ] - }, - { - "text": "Continue the efforts started in order to fight against discrimination of minorities, especially Roma ", - "values": [ - "Minorities", - "Racial discrimination" - ] - }, - { - "text": "Increase human rights training for law enforcement officials in response to reports of excessive use of force, notably in detention centres and holding areas for migrants.", - "values": [ - "Human rights education and training", - "Migrants" - ] - }, - { - "text": "Investigate and punish all instances of racist statements or of intolerance of ethnic minorities in speeches by politicians and public officials ", - "values": [ - "Minorities", - "Racial discrimination" - ] - }, - { - "text": "Take the provisions of the United Nations Declaration on the Rights of Indigenous Peoples into account in the national legislation, because the Declaration is a United Nations document and represents guidelines for the conduct of States", - "values": [ - "Indigenous peoples", - "International instruments" - ] - }, - { - "text": "Repeal or amend the Societies Order to ensure that it does not violate the right to peaceful association or assembly", - "values": [ - "Freedom of association and peaceful assembly" - ] - }, - { - "text": "Continue the effective implementation of the CRPD", - "values": [ - "Disabilities", - "International instruments" - ] - }, - { - "text": "Continue efforts to combat violence against most vulnerable groups, especially women", - "values": [ - "Women's rights" - ] - }, - { - "text": "Eritrea is committed to halting the spread of HIV and other infectious diseases.", - "values": [ - "HIV - Aids", - "Right to health" - ] - }, - { - "text": "Promote greater citizen participation in the implementation of social programmes initiated by the Government", - "values": [ - "Civil society" - ] - }, - { - "text": "Take appropriate steps to initiate the elaboration of a monitoring mechanism of the human rights situation in the Transnistrian region of the Republic of Moldova, with the involvement of civil society representatives from both banks of the river Nistru", - "values": [ - "Civil society" - ] - }, - { - "text": "Supervise the working conditions of migrant workers effectively", - "values": [ - "Labour", - "Migrants" - ] - }, - { - "text": "Align its national regulations with the ILO Conventions 138 concerning Minimum Age for Admission to Employment and 182 concerning the prohibition and immediate action for the elimination of the worst forms of child labour and elaborate a timeline for the ratification of these instruments ", - "values": [ - "International instruments", - "Labour", - "Rights of the Child" - ] - }, - { - "text": "Ensure that the legislation that provides individual consideration of the status of refugee includes the provision of sufficient resources for its implementation in order to avoid delays in the effective determination of the requests for the concession of refugee status", - "values": [ - "Asylum-seekers - refugees" - ] - }, - { - "text": "Consider actively acceding to the Convention on the Rights of Persons with Disabilities ", - "values": [ - "Disabilities", - "International instruments" - ] - }, - { - "text": "Ratify the Rome Statute of the International Criminal Court and fully align its national legislation with the provisions thereof", - "values": [ - "International instruments", - "Justice" - ] - }, - { - "text": "Prevent and pursue through the judicial process, all violent acts against religious and tribal minorities, Dalits and other casts ", - "values": [ - "Freedom of religion and belief", - "Indigenous peoples", - "Minorities" - ] - }, - { - "text": "Continue taking into account the specific needs of persons with disabilities, either in education or on health ", - "values": [ - "Disabilities", - "Right to education", - "Right to health" - ] - }, - { - "text": "Establish a long term policy for addressing migrant workers ", - "values": [ - "Labour", - "Migrants" - ] - }, - { - "text": "Enact federal and state laws criminalising domestic violence", - "values": [ - "Rights of the Child", - "Women's rights" - ] - }, - { - "text": "Provide human rights training to law enforcement personnel and that measures are taken to ensure that the human rights of migrants are protected at all times and limit the uses of registration numbers to those strictly necessary for the provision of public services.", - "values": [ - "Human rights education and training", - "Migrants" - ] - }, - { - "text": "Protect freedom of assembly and hold accountable any police officers involved", - "values": [ - "Freedom of association and peaceful assembly", - "Human rights violations by state agents" - ] - }, - { - "text": "Continue to take the necessary steps to prevent incidents of acts of violence with racist and xenophobic reasons by security agents against foreigners, immigrants and asylum seekers and to bring to justice the perpetrators of such acts ", - "values": [ - "Asylum-seekers - refugees", - "Human rights violations by state agents", - "Migrants", - "Racial discrimination" - ] - }, - { - "text": "Refrain from all settlement activities in occupied territories", - "values": [ - "Other" - ] - }, - { - "text": "Enhance measures to reduce societal discrimination and incidents of violence against members of ethnic and religious minorities", - "values": [ - "Freedom of religion and belief", - "Minorities", - "Racial discrimination" - ] - }, - { - "text": "Continue the process of ratifying the international conventions to which the State is not yet a party, in particular the International Convention on the Protection of the Rights of All Migrant Workers and Members of Their Families", - "values": [ - "International instruments", - "Labour", - "Migrants" - ] - }, - { - "text": "Guarantee the birth registration of all indigenous and migrant children and the issuance of identity documents that would allow them to have access to social services ", - "values": [ - "Indigenous peoples", - "Migrants", - "Rights of the Child", - "Statelessness and the right to nationality" - ] - }, - { - "text": "Strengthen the implementation of non-discrimination and hate crime legislation by continuing to monitor incidents, by ensuring that racially motivated violence is fully and effectively investigated, and by implementing measures to encourage Roma and other victims to report hate crimes and to ensure their protection from reprisal when they do ", - "values": [ - "Minorities", - "Racial discrimination" - ] - }, - { - "text": "Guarantee the practice of freedom of expression and of the press ", - "values": [ - "Freedom of opinion and expression", - "Freedom of the press" - ] - }, - { - "text": "Pursue its efforts to ensure that victims of ill-treatment and racist behaviour by law enforcement officials receive compensation and that the perpetrators are sanctioned ", - "values": [ - "Human rights violations by state agents", - "Racial discrimination", - "Torture and other CID treatment" - ] - }, - { - "text": "Adopt a law guaranteeing the rights of indigenous people in the country ", - "values": [ - "Indigenous peoples" - ] - }, - { - "text": "Remove the death penalty from its legislation and become a party to the Second Optional Protocol to ICCPR aiming at abolishing the death penalty.", - "values": [ - "Death penalty", - "International instruments" - ] - }, - { - "text": "Take further positive actions in the areas of promoting equal opportunities between men and women and domestic violence", - "values": [ - "Women's rights" - ] - }, - { - "text": "Move to implement the recommendations towards national reconciliation proposed by the Truth, Justice, and Reconciliation Commission", - "values": [ - "Justice" - ] - }, - { - "text": "Establish an official moratorium on executions with a view to abolishing the death penalty and acceding to the Second Optional Protocol to the International Covenant on Civil and Political Rights on the abolition of the death penalty", - "values": [ - "Death penalty", - "International instruments" - ] - }, - { - "text": "Redouble its efforts aimed at an impartial and effective operation of the State bodies at the national and local levels, including at addressing corruption.", - "values": [ - "Corruption" - ] - }, - { - "text": "Take concrete measures to eradicate harmful practices against women and children, especially children with albinism", - "values": [ - "Minorities", - "Rights of the Child", - "Torture and other CID treatment", - "Women's rights" - ] - }, - { - "text": "Improve prison conditions in order to ensure the rights and dignity of all those deprived of their liberty", - "values": [ - "Detention" - ] - }, - { - "text": "Intensify efforts to ensure at least 30 per cent representation of women in central and local state bodies, including at the decision-making level, in line with presidential decree No. 136 of 20 March 2006 ", - "values": [ - "Women's rights" - ] - }, - { - "text": "Continue its efforts to promote gender equality and eliminate discrimination against women and girls ", - "values": [ - "Rights of the Child", - "Women's rights" - ] - }, - { - "text": "Advise potential donor agencies of the type of technical assistance that would help to meet its treaty body reporting obligations.", - "values": [ - "Technical assistance and cooperation", - "Treaty bodies" - ] - }, - { - "text": "Ensure full protection and realization of the right to freedom of expression as well as the right to peacefully assembly and association in accordance with international human rights standards", - "values": [ - "Freedom of association and peaceful assembly", - "Freedom of opinion and expression", - "International instruments" - ] - }, - { - "text": "Take practical steps, including through public information campaigns and greater community-level engagement, to accelerate the eradication of FGM and to reduce the number of child, early and forced marriages", - "values": [ - "Human rights education and training", - "Rights of the Child", - "Torture and other CID treatment", - "Women's rights" - ] - }, - { - "text": "Maintain the moratorium on the application of the death penalty and move towards its complete abolition", - "values": [ - "Death penalty" - ] - }, - { - "text": "Redouble its efforts to guarantee the autonomy, independence and impartiality of the judiciary", - "values": [ - "Justice" - ] - }, - { - "text": "Ratify the International Convention for the Protection of All Persons from the Enforced and Involuntary Disappearance ", - "values": [ - "Enforced disappearances", - "International instruments" - ] - }, - { - "text": "Continue its work in implementing the Judicial Reform Action Plan.", - "values": [ - "Justice" - ] - }, - { - "text": "Continue its efforts to lower unemployment rate of persons with disabilities ", - "values": [ - "Development", - "Disabilities" - ] - }, - { - "text": "Ratify the Second Optional Protocol to the International Covenant on Civil and Political Rights, and consequently amend its national legislation, in particular the Criminal Code ", - "values": [ - "Death penalty", - "International instruments" - ] - }, - { - "text": "Continue ensuring that living conditions in prisons are adequate for the development of the child and try to seek alternative measures to institutional confinement for pregnant women and mothers with young children ", - "values": [ - "Detention", - "Rights of the Child", - "Women's rights" - ] - }, - { - "text": "Ratify the Optional Protocol to the Convention against Torture and Other Cruel, Inhuman or Degrading Treatment or Punishment and establish a national preventive mechanism", - "values": [ - "Detention", - "International instruments", - "Torture and other CID treatment" - ] - }, - { - "text": "Continue its efforts to ensure consistency between national laws and international human rights conventions which it has ratified", - "values": [ - "International instruments" - ] - }, - { - "text": "Ensure access to education, health, cultural life and services for children with disabilities and give them the necessary support to enable them to exercise their rights as active members of their communities", - "values": [ - "Disabilities", - "Rights of the Child" - ] - }, - { - "text": "To strengthen public policy in education at all levels and modalities, especially those aimed at the promotion, dissemination and respect for human rights", - "values": [ - "Human rights education and training" - ] - }, - { - "text": "Continue, in cooperation with the World Health Organization, to improve its national health care system and ensure access to quality health care for all ", - "values": [ - "Right to health" - ] - }, - { - "text": "Expedite the ratification of the Convention on the Rights of the Child", - "values": [ - "International instruments", - "Rights of the Child" - ] - }, - { - "text": "Strengthen ongoing efforts to end the recruitment of child soldiers and ensure the release of all children associated with armed groups", - "values": [ - "International humanitarian law", - "Rights of the Child" - ] - }, - { - "text": "Elaborate and implement a law and programmes to draw attention to the harmful effects of excision ", - "values": [ - "Rights of the Child", - "Torture and other CID treatment", - "Women's rights" - ] - }, - { - "text": "Continue to improve conditions of detention", - "values": [ - "Detention" - ] - }, - { - "text": "Ratify the Optional Protocol to the Convention against Torture and other Cruel, Inhuman or Degrading Treatment or Punishment (OP-CAT) ", - "values": [ - "Detention", - "International instruments", - "Torture and other CID treatment" - ] - }, - { - "text": "Continue its ongoing review of national laws to ensure that they are in line with its international human rights law obligations ", - "values": [ - "International instruments" - ] - }, - { - "text": "Provide greater access to public health services with adequate health coverage, particularly in the outer islands", - "values": [ - "Right to health" - ] - }, - { - "text": "Implement the Prevention and Prohibition of Torture Act, whose definition of torture complies with the Convention against Torture, in order to ensure an effective system for preventing all forms of torture", - "values": [ - "International instruments", - "Torture and other CID treatment" - ] - }, - { - "text": "With the support of the international community, further strengthen the national security forces and law enforcement agencies through various capacity-building measures.", - "values": [ - "Public security", - "Technical assistance and cooperation" - ] - }, - { - "text": "Adhere to the Rome Statute of the ICC", - "values": [ - "International instruments", - "Justice" - ] - }, - { - "text": "Amend provisions under the recently adopted security law to ensure that Kenya's international human rights obligations are respected, in particular with regard to the right to freedom of expression", - "values": [ - "Freedom of opinion and expression", - "International instruments" - ] - }, - { - "text": "In coordination with OHCHR, IOM, ILO and relevant special procedures of the Human Rights Council, develop a comprehensive strategy to protect the rights of migrants and persons belonging to ethnic minorities", - "values": [ - "International instruments", - "Migrants", - "Minorities", - "Special procedures", - "Technical assistance and cooperation" - ] - }, - { - "text": "Fully align its national legislation with the Rome Statute", - "values": [ - "International instruments", - "Justice" - ] - }, - { - "text": "Adopt a comprehensive national legislation to combat all forms of discrimination and to pass national legislation that lives up to the spirit of the Convention on the Rights of Persons with Disabilities", - "values": [ - "Disabilities", - "International instruments" - ] - }, - { - "text": "Further improve the legislative framework to control trafficking in migrant women and their exploitation in prostitution and in inhuman and undignified occupations", - "values": [ - "Trafficking", - "Women's rights" - ] - }, - { - "text": "Strengthen cooperation with the international community and organizations in building capacity in crucial areas, including poverty eradication, justice administration, primary education and gender equality", - "values": [ - "Justice", - "Poverty", - "Right to education", - "Technical assistance and cooperation", - "Women's rights" - ] - }, - { - "text": "Consider extending a standing invitation to all Special Procedures of the Human Rights Council ", - "values": [ - "Special procedures" - ] - }, - { - "text": "Take measures to guarantee effective access to justice for victims of gender-based violence, to provide health and psychological support for victims and to provide protection for women that report cases of gender-based violence ", - "values": [ - "Women's rights" - ] - }, - { - "text": "Reform the Togolese legislation aimed at eliminating discriminatory practices against women in matters of inheritance", - "values": [ - "Women's rights" - ] - }, - { - "text": "Totally abolish corporal punishments, such as flogging and amputations", - "values": [ - "Torture and other CID treatment" - ] - }, - { - "text": "Continue its endeavours in relation to the protection and promotion of the rights of children", - "values": [ - "Rights of the Child" - ] - }, - { - "text": "Continue strengthening the health-care infrastructure", - "values": [ - "Right to health" - ] - }, - { - "text": "Step up efforts to promote and protect the rights of persons with disabilities by, inter alia, providing equal access to education, health and justice services for persons with disabilities, and engaging persons with disabilities or their representatives in the policymaking process", - "values": [ - "Disabilities" - ] - }, - { - "text": "Adopt legal and administrative measures aimed at eliminating from the law on Immigration and International Protection the geographical restrictions in the asylum procedure, guaranteeing adequate and fair treatment to persons seeking international protection", - "values": [ - "Asylum-seekers - refugees" - ] - }, - { - "text": "Criminalize violence against women and girls, female genital mutilation and marital rape", - "values": [ - "Rights of the Child", - "Torture and other CID treatment", - "Women's rights" - ] - }, - { - "text": "Either immediately free political prisoners and human rights activists who have been illegally detained or forced out of the country, or allow them to return to Uzbekistan to enjoy their basic rights and freedoms ", - "values": [ - "Detention", - "Freedom of opinion and expression", - "Human rights defenders" - ] - }, - { - "text": "Ensure full incorporation of CRC into its national legal framework ", - "values": [ - "International instruments", - "Rights of the Child" - ] - }, - { - "text": "Adopt a new law to prohibit trafficking in human beings and increase protection granted to victims", - "values": [ - "Justice", - "Trafficking" - ] - }, - { - "text": "Consider the possible signature and ratification of the International Convention for the Protection of All Persons from Enforced Disappearance (CPED) ", - "values": [ - "Enforced disappearances", - "International instruments" - ] - }, - { - "text": "Ensure the effectiveness of labour law and of the prohibition of child labour, especially child prostitution ", - "values": [ - "Labour", - "Rights of the Child" - ] - }, - { - "text": "Share its best practices acquired in fighting internet spread racism, including the results of the lasts measures that is the ratification of relevant instruments, modification of the Criminal Code, police monitoring of the internet ", - "values": [ - "International instruments", - "Racial discrimination" - ] - }, - { - "text": "Embark on the path to definitely abolishing the death penalty, and ratify the Second Optional Protocol to ICCPR, aiming at the abolition of the death penalty", - "values": [ - "Death penalty", - "International instruments" - ] - }, - { - "text": "Strengthen further its measures, including human rights education and training for public officials and at school, to promote tolerance, respect diversity, equality and combat discrimination", - "values": [ - "Human rights education and training" - ] - }, - { - "text": "Ensure that the legal framework addressing child labour raises the age of compulsory education to correspond to the minimum work age, and establishes specific hazardous occupations or activities prohibited for children", - "values": [ - "Labour", - "Right to education", - "Rights of the Child" - ] - }, - { - "text": "End impunity for all human rights violations and launch credible, transparent and comprehensive investigations into all allegations of violations of international human rights law, including those possibly constituting international crimes", - "values": [ - "Impunity", - "International humanitarian law" - ] - }, - { - "text": "Continue its efforts to combat domestic violence, especially against vulnerable groups such as women and children ", - "values": [ - "Rights of the Child", - "Women's rights" - ] - }, - { - "text": "Assess the possibility of making domestic violence an independent crime, and redouble efforts to ensure the effective implementation of the 2007 Action Plan against Violence ", - "values": [ - "Rights of the Child", - "Women's rights" - ] - }, - { - "text": "Ensure full implementation of international human rights obligations regarding freedom of expression", - "values": [ - "Freedom of opinion and expression", - "International instruments" - ] - }, - { - "text": "Disseminate the five lessons contained in the national report and their rich experience globally as much as possible.", - "values": [ - "UPR process" - ] - }, - { - "text": "Improve access to health services", - "values": [ - "Right to health" - ] - }, - { - "text": "Devote more efforts in the field of harmonizing gender equality for guaranteeing their equal rights", - "values": [ - "Women's rights" - ] - }, - { - "text": "Continue the work already under way aimed at improving the judicial system, including the efforts to establish a new Code of Criminal Procedure", - "values": [ - "Justice" - ] - }, - { - "text": "Fully cooperate with and allow visits by the United Nations Special Rapporteurs", - "values": [ - "Special procedures" - ] - }, - { - "text": "Intensify its efforts to maintain oversight over Netherlands companies operating abroad with regard to any negative impact their activities may have on the enjoyment of human rights, particularly in conflict areas, which includes situations of foreign occupation where there is a heightened risk of human rights abuses", - "values": [ - "Business and human rights" - ] - }, - { - "text": "Strengthen the National Institute for Women with adequate human and logistical resources to enable it to effectively discharge its role ", - "values": [ - "Women's rights" - ] - }, - { - "text": "Give priority to protecting the rights of girl children by ensuring that all girls are registered at birth, implement wide awareness raising campaigns on the human rights of girls and promote their education", - "values": [ - "Human rights education and training", - "Right to education", - "Rights of the Child", - "Women's rights" - ] - }, - { - "text": "Take necessary measures to enforce anti-racist laws in the labour market ", - "values": [ - "Labour", - "Racial discrimination" - ] - }, - { - "text": "Continue actions to improve the situation of women, and take additional actions to eliminate forced or arranged marriage, polygamy and sexual violence ", - "values": [ - "Women's rights" - ] - }, - { - "text": "Replace the Internal Security Act and the Criminal Law (Temporary Provisions) Act with laws that mandate that an accused person has a trial in court", - "values": [ - "Justice" - ] - }, - { - "text": "Take legal measures to deal with intolerance.", - "values": [ - "General" - ] - }, - { - "text": "Consider the possibility of formalizing a moratorium on all pending executions with a view to commuting them and to eventually abolishing the death penalty ", - "values": [ - "Death penalty" - ] - }, - { - "text": "Continue its measures concerning the fight against the de-facto discrimination faced by certain disadvantaged groups of women, especially older women, women with disabilities and migrant women", - "values": [ - "Disabilities", - "Migrants", - "Women's rights" - ] - }, - { - "text": "Follow up to the recommendations formulated by the United Nations High Commissioner for Human Rights in March 2010 aimed at establishing a national plan of action for human rights, and by the Committee against Torture in 2009 with a view to establishing an independent body to investigate allegations of ill treatment and torture", - "values": [ - "Torture and other CID treatment", - "Treaty bodies" - ] - }, - { - "text": "Conclude the project of creating an independent national human rights commission in line with the Paris Principles", - "values": [ - "National Human Rights Institution" - ] - }, - { - "text": "Continue its efforts to promote the harmonization of national legislation with international treaties ", - "values": [ - "International instruments" - ] - }, - { - "text": "Take measures to ensure that the Office of the Equal Opportunities Ombudsperson is strengthened sufficiently to carry out its functions", - "values": [ - "National Human Rights Institution" - ] - }, - { - "text": "Adopt a national action plan to combat and eliminate slavery in all forms and ensure that all victims are provided with assistance and rehabilitation", - "values": [ - "General" - ] - }, - { - "text": "Redouble efforts to enhance the positive results in the area of economic, social and cultural rights to provide more benefits to the most vulnerable populations, in particular children, indigenous peoples, people of African descent and the rural population ", - "values": [ - "ESC rights - general", - "Indigenous peoples", - "Minorities", - "Rights of the Child" - ] - }, - { - "text": "Take measures to ensure the full harmonization of the provisions of the Optional Protocol to the Convention on the Rights of the Child on the involvement of children in armed conflict", - "values": [ - "International humanitarian law", - "International instruments", - "Rights of the Child" - ] - }, - { - "text": "Bring the functioning of the Fiji Human Rights Commission into conformity with the Paris Principles", - "values": [ - "National Human Rights Institution" - ] - }, - { - "text": "Continue to take steps to strengthen the rule of law by ensuring the effective implementation of legal reforms", - "values": [ - "Justice" - ] - }, - { - "text": "Strengthen the actions which ensure the effective implementation of the legislation against discrimination, especially that affecting women immigrants and women members of minority groups ", - "values": [ - "Migrants", - "Minorities", - "Racial discrimination", - "Women's rights" - ] - }, - { - "text": "Prohibit all forms of violence against women by passing and enforcing legislation providing for prevention, the adequate punishment of perpetrators, protection and support for victims, including legal remedies and paying special attention to the protection of minority women", - "values": [ - "Minorities", - "Women's rights" - ] - }, - { - "text": "Continue working with national and state governments and women's groups to remove the reservations to the Convention on the Elimination of All Forms of Discrimination against Women ", - "values": [ - "International instruments", - "Women's rights" - ] - }, - { - "text": "Abolish the system established to call upon citizens to denounce anonymously, on the Ministry's website, migrants suspected of being in an irregular situation.", - "values": [ - "Migrants" - ] - }, - { - "text": "Show understanding and flexibility for refugees and asylum-seekers who are often in an irregular situation and face possible expulsion ", - "values": [ - "Asylum-seekers - refugees" - ] - }, - { - "text": "Continue its efforts to adopt the national action plan on human rights and establish an independent national human rights institution in line with the Paris Principles", - "values": [ - "National Human Rights Institution" - ] - }, - { - "text": "Continue to make progress towards the full recognition of ethnic and cultural diversity that characterizes the Kyrgyz people", - "values": [ - "Minorities" - ] - }, - { - "text": "Ratify the Rome Statute of the International Criminal Court ", - "values": [ - "International instruments", - "Justice" - ] - }, - { - "text": "Pay special attention to women from marginal groups who have been affected by armed conflict and displacement", - "values": [ - "Women's rights" - ] - }, - { - "text": "Ratify core international human rights instruments, in particular the International Covenant on Civil and Political Rights and the International Covenant on Economic, Social and Cultural Rights.", - "values": [ - "CP rights - general", - "ESC rights - general", - "International instruments" - ] - }, - { - "text": "Respond more regularly and in a timely manner to the questionnaires sent by OHCHR ", - "values": [ - "Special procedures" - ] - }, - { - "text": "Abolish corporal punishment, in particular public flogging", - "values": [ - "Torture and other CID treatment" - ] - }, - { - "text": "Create a National Human Rights Institution in conformity with the Paris Principles ", - "values": [ - "National Human Rights Institution" - ] - }, - { - "text": "Improve access to free health care in remote areas ", - "values": [ - "Right to health" - ] - }, - { - "text": "Continue negotiations with a view to peacefully settling the remaining stipulations of the CPA, particularly with regard to issues like border demarcation, foreign debts, oil and water sharing and citizenship, with the understanding that nobody will be stateless ", - "values": [ - "Right to water and sanitation", - "Statelessness and the right to nationality" - ] - }, - { - "text": "Further harmonize its national legislation with the international obligations of Laos under the respective conventions, and accede to instruments allowing for individual complaints", - "values": [ - "International instruments", - "Justice" - ] - }, - { - "text": "Consider taking steps towards the abolishment of death penalty", - "values": [ - "Death penalty" - ] - }, - { - "text": "Continue efforts to promote and protect human rights ", - "values": [ - "General" - ] - }, - { - "text": "Intensify efforts towards providing all children with equal access to education, including the Roma children", - "values": [ - "Minorities", - "Right to education", - "Rights of the Child" - ] - }, - { - "text": "Continue its efforts combating hate crime and glorification of criminals ", - "values": [ - "Racial discrimination" - ] - }, - { - "text": "Strengthen measures to prevent violence against women, in particular by raising awareness of the fact that discrimination and violence against women are unacceptable", - "values": [ - "Women's rights" - ] - }, - { - "text": "Heed the recommendation of its Consultative Commission for Human Rights to introduce compulsory human rights training for civil servants and public employees ", - "values": [ - "Human rights education and training", - "National Human Rights Institution" - ] - }, - { - "text": "Consider taking all necessary steps to introduce a de jure moratorium on capital executions with a view to fully abolishing the death penalty, and ratify the Second Optional Protocol to ICCPR", - "values": [ - "Death penalty", - "International instruments" - ] - }, - { - "text": "Continue efforts to further improve prison conditions and share relevant best practices with the Human Rights Council ", - "values": [ - "Detention" - ] - }, - { - "text": "Ensure that all cases where children have been a victim of domestic violence or witnessed such violence are properly documented and registered and that social recovery and reintegration services of child victims are reinforced", - "values": [ - "Rights of the Child" - ] - }, - { - "text": "Take necessary measures in order to ensure effective protection of journalists and to prevent and punish threats and acts of violence of which they are victims", - "values": [ - "Freedom of the press" - ] - }, - { - "text": "Improve the accessibility for persons with disabilities, particularly children, of education and key services", - "values": [ - "Disabilities", - "Right to education", - "Rights of the Child" - ] - }, - { - "text": "Take all measures to eliminate restrictions to the mobility of migrant workers", - "values": [ - "Labour", - "Migrants" - ] - }, - { - "text": "Continue promoting equality, participation and empowerment of women in public policy-making and decision-taking", - "values": [ - "Women's rights" - ] - }, - { - "text": "Take all necessary measures to promote the rights of women and to counter domestic violence, in particular by preventing and punishing, more effectively, violence within the family", - "values": [ - "Rights of the Child", - "Women's rights" - ] - }, - { - "text": "End discrimination in law and practice against religious and ethnic minorities, in particular against Muslims, and ensure full protection of their rights", - "values": [ - "Freedom of religion and belief", - "Minorities", - "Racial discrimination" - ] - }, - { - "text": "Continue its efforts to promote women's role in social and public life, and protect them from violence ", - "values": [ - "Women's rights" - ] - }, - { - "text": "Investigate and prosecute all perpetrators of violence and intimidation crimes against journalists", - "values": [ - "Freedom of the press" - ] - }, - { - "text": "Ratify Additional Protocol III of the Geneva Conventions of 12 August 1949 ", - "values": [ - "International humanitarian law", - "International instruments" - ] - }, - { - "text": "Make further efforts to improve conditions in penitentiary institutions ", - "values": [ - "Detention" - ] - }, - { - "text": "Carry on the legislative amendments to repeal all discriminatory provisions against women and adopt a comprehensive law on violence against women ", - "values": [ - "Women's rights" - ] - }, - { - "text": "Cease application of torture, other cruel, inhuman or degrading treatment or punishment, and corporal punishment of prisoners in accordance with Article 5 of the Universal Declaration of Human Rights and other international human rights treaties to which it is a party, including CAT and the CRC ", - "values": [ - "Detention", - "International instruments", - "Torture and other CID treatment" - ] - }, - { - "text": "Seek the assistance of the ILO to combat child labour ", - "values": [ - "Labour", - "Rights of the Child", - "Technical assistance and cooperation" - ] - }, - { - "text": "Adopt relevant measures for legislative and criminal justice improvements in relation to concerns expressed by the Committee against Torture in relation to allegations of torture in detention facilities and improper definition of torture in the Criminal Code.", - "values": [ - "Detention", - "Torture and other CID treatment", - "Treaty bodies" - ] - }, - { - "text": "Continue implementing its national laws in accordance with the universally agreed human rights norms and principles ", - "values": [ - "International instruments" - ] - }, - { - "text": "To the international community: assist Guinea technically and financially in meeting the various challenges it faces in the field of human rights ", - "values": [ - "Technical assistance and cooperation" - ] - }, - { - "text": "End grave human rights violations (arbitrary executions, torture, destruction of places of worship and deprivation of the freedom of religion) principally committed by fundamentalist armed groups operating in the north of the country ", - "values": [ - "Extrajudicial executions", - "Freedom of religion and belief", - "Torture and other CID treatment" - ] - }, - { - "text": "Strengthen measures to assist victims of human trafficking, taking into account their fundamental rights and the needs of particularly vulnerable groups such as women domestic workers and sex workers", - "values": [ - "Labour", - "Trafficking", - "Women's rights" - ] - }, - { - "text": "Ratify the CRPD and its Optional Protocol", - "values": [ - "Disabilities", - "International instruments" - ] - }, - { - "text": "Take steps towards the abolition of the death penalty", - "values": [ - "Death penalty" - ] - }, - { - "text": "Consider the establishment of a national human rights institution for the protection and promotion of human rights in accordance with the Paris Principles ", - "values": [ - "National Human Rights Institution" - ] - }, - { - "text": "Take all necessary measures to ensure the protection of the rights of children and to put an end to the recruitment and use of child soldiers", - "values": [ - "International humanitarian law", - "Rights of the Child" - ] - }, - { - "text": "Take appropriate measures against the sharp increase in all hate-related violent crimes especially involving young people", - "values": [ - "Racial discrimination" - ] - }, - { - "text": "The PNDH-3 institutionalized Brazil's voluntary commitment to prepare annual reports on the situation of human rights in the country, in dialogue with civil society. The State will marshal efforts to effectively develop the reports beginning in 2012.", - "values": [ - "Civil society" - ] - }, - { - "text": "Adopt measures, including recommendations by the Committee against Torture, to combat torture and ill-treatment, by ensuring that the National Centre receives adequate resources and access, and by implementing an effective Anti-Torture Action Plan", - "values": [ - "Detention", - "Torture and other CID treatment", - "Treaty bodies" - ] - }, - { - "text": "Take all appropriate and necessary measures for the better and speedy realization of social, economic and cultural rights and particularly the right to development ", - "values": [ - "Development", - "ESC rights - general" - ] - }, - { - "text": "Continue and redouble the efforts to combat racism, racial discrimination and other related forms of intolerance, placing particular attention on the structural elements of discrimination that might affect the effective exercise of the rights to health, education, decent work and participation in decision-making processes by indigenous people and people of African descent", - "values": [ - "Indigenous peoples", - "Labour", - "Minorities", - "Racial discrimination", - "Right to education", - "Right to health" - ] - }, - { - "text": "Strengthen the structures of the human rights commission in order to bring it to full compliance with the Paris Principles and operationalize the anti-corruption commission", - "values": [ - "National Human Rights Institution" - ] - }, - { - "text": "Accede to the two optional protocols to the Convention on the Rights of the Child (CRC)", - "values": [ - "International instruments", - "Rights of the Child" - ] - }, - { - "text": "Accede to the Rome Statute of the ICC ", - "values": [ - "International instruments", - "Justice" - ] - }, - { - "text": "Take regular action to prevent hate speech and to take appropriate and prompt legal measures against those who incite discrimination or violence motivated by racial, ethnic or religious reasons", - "values": [ - "Freedom of religion and belief", - "Racial discrimination" - ] - }, - { - "text": "Continue its efforts to combat discrimination and violence based on gender, race and ethnic origin, among others ", - "values": [ - "Racial discrimination", - "Women's rights" - ] - }, - { - "text": "Strengthen the representation of women in decision-making process", - "values": [ - "Women's rights" - ] - }, - { - "text": "Allocate more financial resources to improve access to and quality of education in the country", - "values": [ - "Right to education" - ] - }, - { - "text": "Accede to the 1954 Convention relating to the Status of Stateless Persons and the 1961 Convention on the Reduction of Statelessness", - "values": [ - "International instruments", - "Statelessness and the right to nationality" - ] - }, - { - "text": "Incorporate its international human rights obligations into domestic law by elaborating a comprehensive, judicially enforceable Human Rights Act to ensure legislative protection of human rights ", - "values": [ - "International instruments" - ] - }, - { - "text": "Give serious consideration to ratifying the Convention on the Rights of Persons with Disabilities and enact law or national policy to ensure the protection and care of persons with physical, sensory, intellectual, or mental disabilities ", - "values": [ - "Disabilities", - "International instruments" - ] - }, - { - "text": "Intensify the fight against cybercrime, especially child pornography on the Internet", - "values": [ - "Rights of the Child" - ] - }, - { - "text": "Establish a special judicial mechanism within its justice system to investigate allegations of sexual violence by members of all armed groups, including the Chadian army.", - "values": [ - "Justice" - ] - }, - { - "text": "Establish an independent international commission of inquiry tasked with the investigation in relation to the events of May 2005 in Andijan and to prosecute and punish all those responsible for human rights violations.", - "values": [ - "Human rights violations by state agents" - ] - }, - { - "text": "Prohibit explicitly in legislation corporal punishment of children in all places, including at home, in schools, criminal institutions and alternative care centres", - "values": [ - "Rights of the Child", - "Torture and other CID treatment" - ] - }, - { - "text": "Ratify or accede to the Convention against Torture and Other Cruel, Inhuman or Degrading Treatment or Punishment, the International Covenant on Economic, Social and Cultural Rights, the International Convention on the Protection of the Rights of All Migrant Workers and Members of Their Families and the International Convention on the Elimination of All Forms of Racial Discrimination ", - "values": [ - "ESC rights - general", - "International instruments", - "Labour", - "Migrants", - "Racial discrimination", - "Torture and other CID treatment" - ] - }, - { - "text": "Continue to take measures to protect the rights of the elderly and persons with disabilities", - "values": [ - "Disabilities" - ] - }, - { - "text": "Adopt measures to eradicate gender discrimination in society, in the family and in the labour market", - "values": [ - "Women's rights" - ] - }, - { - "text": "Ending use of arbitrary detention, torture and excessive force by law enforcement officials ", - "values": [ - "Detention", - "Human rights violations by state agents", - "Torture and other CID treatment" - ] - }, - { - "text": "Increase the efforts to fully implement the Act on Women's Right to a Life Free from Violence, coordinate the programmes and institutions that address violence against women and effectively combat all forms of violence against women", - "values": [ - "Women's rights" - ] - }, - { - "text": "Establish a specific programme to produce opportunities for income for women, mainly in rural areas", - "values": [ - "Women's rights" - ] - }, - { - "text": "Adopt legislation allowing for paternity leave", - "values": [ - "Other" - ] - }, - { - "text": "Strengthen the right to freedom of expression in its new Press Law, as well as allowing foreign media to enter the country and report freely ", - "values": [ - "Freedom of opinion and expression", - "Freedom of the press" - ] - }, - { - "text": "Continue to strengthen its efforts to support women victims of domestic violence and to bring offenders to justice", - "values": [ - "Women's rights" - ] - }, - { - "text": "Consider ratifying or acceding to: 1951 Refugee Convention", - "values": [ - "Asylum-seekers - refugees", - "International instruments" - ] - }, - { - "text": "Establish a permanent independent human rights monitoring body, including child rights monitoring body.", - "values": [ - "National Human Rights Institution", - "Rights of the Child" - ] - }, - { - "text": "Decriminalize abortion, and ensure that girls and women are not subject to reprisals for seeking an abortion under any circumstances ", - "values": [ - "Rights of the Child", - "Women's rights" - ] - }, - { - "text": "Ratify the Rome Statute of the International Criminal Court and incorporate its provisions into national legislation, and accede to the Agreement on Privileges and Immunities of the Court", - "values": [ - "International instruments", - "Justice" - ] - }, - { - "text": "Ensure the full respect for freedom of expression and freedom of assembly for all, including LGBT people", - "values": [ - "Freedom of association and peaceful assembly", - "Freedom of opinion and expression", - "Sexual Orientation and Gender Identity" - ] - }, - { - "text": "Extend standing invitations to the special procedures.", - "values": [ - "Special procedures" - ] - }, - { - "text": "Ensure that adequate medical care is available to all persons in detention facilities maintained by the Government and militias affiliated with it", - "values": [ - "Detention", - "Right to health" - ] - }, - { - "text": "Ratify the 1954 and 1961 Statelessness Conventions ", - "values": [ - "International instruments", - "Statelessness and the right to nationality" - ] - }, - { - "text": "Enhance efforts to combat violence against women", - "values": [ - "Women's rights" - ] - }, - { - "text": "Strengthen the prevention, detection and response to cases of exploitation, sexual abuses and other forms of violence against children", - "values": [ - "Rights of the Child" - ] - }, - { - "text": "Ratify the Optional Protocol to the Convention against Torture and other Cruel, Inhuman or Degrading Treatment or Punishment (OP-CAT)", - "values": [ - "Detention", - "International instruments", - "Torture and other CID treatment" - ] - }, - { - "text": "Revise laws and national, regional and local policies to fully recognize and protect the rights of indigenous peoples in domestic law uniformly throughout the nation", - "values": [ - "Indigenous peoples" - ] - }, - { - "text": "Pursue reforms in the justice sector", - "values": [ - "Justice" - ] - }, - { - "text": "Communicate to the United Nations Secretary-General the withdrawal of its reservations to CEDAW (article 9, paragraph 2, article 16, paragraph 1 (h), and article 16, paragraph 2, as well as its declaration on article 15, paragraph 4).", - "values": [ - "International instruments", - "Statelessness and the right to nationality", - "Women's rights" - ] - }, - { - "text": "Fully respect and promote freedom of expression ", - "values": [ - "Freedom of opinion and expression" - ] - }, - { - "text": "Become a party to CRPD ", - "values": [ - "Disabilities", - "International instruments" - ] - }, - { - "text": "Accelerate the legislative process for the rapid accession to the Rome Statute of the ICC and the Agreement on Privileges and Immunities of the ICC ", - "values": [ - "International instruments", - "Justice" - ] - }, - { - "text": "Eventually consider extending a standing invitation to all the special procedures mandate holders", - "values": [ - "Special procedures" - ] - }, - { - "text": "Implement measures for the early detection and prevention of domestic violence against women and children, including sexual abuse or harassment.", - "values": [ - "Rights of the Child", - "Women's rights" - ] - }, - { - "text": "Make, until its next UPR review, substantial progress towards fulfilling its reporting obligations, including by requesting technical assistance if needed ", - "values": [ - "Technical assistance and cooperation", - "Treaty bodies", - "UPR process" - ] - }, - { - "text": "Implement measures to protect the right to life and freedom of expression of journalists and human rights defenders, ensuring that the perpetrators of violence against them are brought to justice", - "values": [ - "Freedom of opinion and expression", - "Freedom of the press", - "Human rights defenders" - ] - }, - { - "text": "Take measures to fight effectively against impunity, notably for acts of torture and sexual violence, in particular when those incriminated are involved in law enforcement ", - "values": [ - "Human rights violations by state agents", - "Impunity", - "Rights of the Child", - "Torture and other CID treatment", - "Women's rights" - ] - }, - { - "text": "Implement measures to prevent sex-selective abortions, and conduct educational campaigns about gender roles and the value of women and girls ", - "values": [ - "Human rights education and training", - "Rights of the Child", - "Women's rights" - ] - }, - { - "text": "The Portuguese Government is strongly committed to ensuring that all children who live in the Portuguese territory enjoy the right to quality education. ", - "values": [ - "Right to education", - "Rights of the Child" - ] - }, - { - "text": "Ensure that cases of domestic violence, ill treatment, sexual and other abuse within the family are properly investigated and that perpetrators are sanctioned ", - "values": [ - "Rights of the Child", - "Women's rights" - ] - }, - { - "text": "Continue the implementation of the municipal health service program and the national development program 2012-2015", - "values": [ - "Development", - "Right to health" - ] - }, - { - "text": "Consider drawing up a comprehensive human rights' national plan of action ", - "values": [ - "General" - ] - }, - { - "text": "Develop a new human rights action plan under the auspices of the New Zealand Human Rights Commission ", - "values": [ - "National Human Rights Institution" - ] - }, - { - "text": "Revise its legal framework in the area of mass media, free public discussion, and peaceful assembly, with a view to bring in it in compliance with relevant provisions of ICCPR", - "values": [ - "Freedom of association and peaceful assembly", - "Freedom of opinion and expression", - "Freedom of the press", - "International instruments" - ] - }, - { - "text": "Ratify or sign, whichever is applicable, the Optional Protocol to the convention against Torture and the two Protocols of the International Covenant on Civil and Political Rights", - "values": [ - "CP rights - general", - "Death penalty", - "Detention", - "International instruments", - "Torture and other CID treatment" - ] - }, - { - "text": "Enhance the independence of the justice system, particularly with the establishment of an appropriate system of training, nomination, promotion and sanctions against judges", - "values": [ - "Justice" - ] - }, - { - "text": "Repeal past amnesty laws and bring to justice those responsible for human rights violations. Also, steps should be taken to establish an independent complaints mechanism with a mandate to investigate all allegations of human rights violations and abuses by security forces and armed opposition groups ", - "values": [ - "Human rights violations by state agents", - "Justice" - ] - }, - { - "text": "Repeal all relevant legal provisions with a view to eliminate excessive, unjustified detention without raising credible criminal charges and bringing a detainee before a judge in compliance with international fair trial standards", - "values": [ - "Detention" - ] - }, - { - "text": "Ensure proper redress and protection for victims of crimes of domestic and sexual violence", - "values": [ - "Rights of the Child", - "Women's rights" - ] - }, - { - "text": "Continue to cooperate and coordinate with the international community and the United Nations Support Mission in Libya in order to obtain technical assistance to address the challenges faced in the promotion and realization of human rights", - "values": [ - "Technical assistance and cooperation" - ] - }, - { - "text": "Timely cooperate with the monitoring mechanism based on Security Council resolution 1612 (2005) and adopt concrete measures to prevent and punish all kinds of recruitment or use of children in armed conflict.", - "values": [ - "International humanitarian law", - "Rights of the Child" - ] - }, - { - "text": "Further strengthen the promotion and protection of the rights of women", - "values": [ - "Women's rights" - ] - }, - { - "text": "Continue to strengthen its environmental conservation efforts, which contribute to the global efforts to safeguard the common heritage of humankind ", - "values": [ - "Environment" - ] - }, - { - "text": "Adopt necessary measures to ensure that gender equality is a legal and practical reality, combating particularly gender violence", - "values": [ - "Women's rights" - ] - }, - { - "text": "Decriminalize consensual homosexual relations and release those who have been detained for that reason", - "values": [ - "Sexual Orientation and Gender Identity" - ] - }, - { - "text": "Continue to implement development and poverty reduction policies in order to promote peaceful and stable development ", - "values": [ - "Development", - "Poverty" - ] - }, - { - "text": "Launch, with the participation of all media, a process of reflection on the role and responsibility of the media with respect to combating racism, xenophobia and related intolerance ", - "values": [ - "Racial discrimination" - ] - }, - { - "text": "Adopt a National Action Plan on Security Council resolution 1325 on Women, Peace and Security", - "values": [ - "Women's rights" - ] - }, - { - "text": "Assess the possibility of abolishing the death penalty for military crimes and ratifying the Second Optional Protocol to the International Covenant on Civil and Political Rights", - "values": [ - "Death penalty", - "International instruments" - ] - }, - { - "text": "Further ensure effective gender equality into government policies", - "values": [ - "Women's rights" - ] - }, - { - "text": "Ensure full realisation of the rights of "non-citizen" residents and of members belonging to linguistic minorities and contribute to their integration in society", - "values": [ - "Minorities", - "Statelessness and the right to nationality" - ] - }, - { - "text": "Strengthen its efforts in the fight to eliminate violence against women and children ", - "values": [ - "Rights of the Child", - "Women's rights" - ] - }, - { - "text": "Enable the visit by the Special Rapporteur on the promotion and protection of human rights while countering terrorism as soon as possible.", - "values": [ - "Counter-terrorism", - "Special procedures" - ] - }, - { - "text": "Continue to promote and protect the rights of children", - "values": [ - "Rights of the Child" - ] - }, - { - "text": "Intensify its efforts to reinforce the human rights issue in school curricula ", - "values": [ - "Human rights education and training" - ] - }, - { - "text": "Accelerate implementation of the new Constitution and alignment of relevant legislation, including for the various commissions established under the Constitution", - "values": [ - "General" - ] - }, - { - "text": "Continue to create the conditions to facilitate the voluntary reparation of Ivorian refugees in accordance with the Tripartite Agreement", - "values": [ - "Asylum-seekers - refugees" - ] - }, - { - "text": "Continue making progress by ratifying ICRMW ", - "values": [ - "International instruments", - "Labour", - "Migrants" - ] - }, - { - "text": "Continue its efforts to promote the right to children's education and ensure the importance of the principles of children's education in the country", - "values": [ - "Right to education", - "Rights of the Child" - ] - }, - { - "text": "Take concrete steps to include the right to education in the Constitution", - "values": [ - "Right to education" - ] - }, - { - "text": "Provide further resources for the preservation of the languages and culture of national communities, including the German-speaking community, which has for a very long time formed an important part of Slovene society", - "values": [ - "ESC rights - general", - "Minorities" - ] - }, - { - "text": "Sustain and promote the family, based on marriage between a man and a woman, as the natural and fundamental unit of society", - "values": [ - "Other" - ] - }, - { - "text": "Adopt adequate and effective measures to protect infant and maternal health, as well as access to family planning and contraceptive methods ", - "values": [ - "Right to health", - "Rights of the Child", - "Women's rights" - ] - }, - { - "text": "Implement the 2011 recommendations of the International Coordinating Committee of National Institutions for the Promotion and Protection of Human Rights to ensure the high standards and independence of India's National Human Rights Institutions ", - "values": [ - "National Human Rights Institution" - ] - }, - { - "text": "Put forward its best efforts to reform legislation dealing with the relatively high rate of domestic violence against women and ensure that those violations are effectively investigated and perpetrators of such acts are prosecuted", - "values": [ - "Women's rights" - ] - }, - { - "text": "Continue along the path of its humanistic ideal of a rainbow nation, rich in cultural, social and religious diversity and respecting the rights of minorities", - "values": [ - "Minorities" - ] - }, - { - "text": "Initiate national consultations, involving representatives from civil society organizations and human rights defenders, in order to adopt and implement a national system to prevent and fight against torture and all forms of ill-treatment, in line with recommendations submitted by the Committee against Torture and the obligation to establish a National Preventive Mechanism, as contained in the Optional Protocol to the Convention against Torture", - "values": [ - "Civil society", - "Detention", - "Human rights defenders", - "International instruments", - "Torture and other CID treatment", - "Treaty bodies" - ] - }, - { - "text": "Harmonize its legislation, including its customary law practices, with international obligations and standards ", - "values": [ - "General" - ] - }, - { - "text": "Decriminalize homosexuality and oppose all forms of discrimination and abuse against lesbian, gay, bisexual, transgender and intersex persons", - "values": [ - "Sexual Orientation and Gender Identity" - ] - }, - { - "text": "Respond as soon as possible to the request for visits by Special Rapporteurs, such as the Special Rapporteur on violence against women", - "values": [ - "Special procedures", - "Women's rights" - ] - }, - { - "text": "Continue to devote special attention to children in order to realize their best interest ", - "values": [ - "Rights of the Child" - ] - }, - { - "text": "Action to combat impunity for human rights violations, other economic crimes and similar offences.", - "values": [ - "Impunity" - ] - }, - { - "text": "Withdraw the general reservation to CEDAW and those foreseen in relation to articles 9, 15 and 16", - "values": [ - "International instruments", - "Women's rights" - ] - }, - { - "text": "Issue a standing invitation to all UN Special Procedures ", - "values": [ - "Special procedures" - ] - }, - { - "text": "Separate convicted offenders from pretrial detainees ", - "values": [ - "Detention" - ] - }, - { - "text": "Expedite efforts to establish a national human rights institution and a national human rights strategy", - "values": [ - "National Human Rights Institution" - ] - }, - { - "text": "Step up efforts to combat discrimination and violence by adopting measures to raise awareness among the population and public officials of the negative effects of public stigmatization on any grounds, including against individuals on the basis of their sexual orientation or gender identity", - "values": [ - "Human rights education and training", - "Sexual Orientation and Gender Identity" - ] - }, - { - "text": "Intensify efforts in the fight against violence against women and child abuse, to guarantee that normative and institutional measures adopted are effective to address the problem", - "values": [ - "Rights of the Child", - "Women's rights" - ] - }, - { - "text": "Facilitate the work and function of the national human rights institution in accordance with the Paris Principles ", - "values": [ - "National Human Rights Institution" - ] - }, - { - "text": "Continue efforts to step up psychosocial assistance programmes to victims of the conflict, according to their needs", - "values": [ - "Other" - ] - }, - { - "text": "Take further steps to provide access to education for all children", - "values": [ - "Right to education", - "Rights of the Child" - ] - }, - { - "text": "Continue to strengthen measures to provide education of good quality, including the progressive expansion of compulsory education and enrolment for both girls and boys", - "values": [ - "Right to education", - "Rights of the Child" - ] - }, - { - "text": "Implement its intentions to adopt a national plan of action on the interests of the Roma population ", - "values": [ - "Minorities" - ] - }, - { - "text": "Further develop and enhance education ", - "values": [ - "Right to education" - ] - }, - { - "text": "Enact laws to provide for and regulate freedom of assembly and peaceful demonstration in line with ICCPR ", - "values": [ - "Freedom of association and peaceful assembly", - "International instruments" - ] - }, - { - "text": "Take the appropriate measures to implement a separate juvenile justice system, and consider providing separate detention facilities for minor cases in appropriate cases ", - "values": [ - "Detention", - "Justice", - "Rights of the Child" - ] - }, - { - "text": "Strengthen the legal framework and implement measures to combat racism and xenophobia and sanction hate crimes, in particular those against migrants in irregular situations", - "values": [ - "Migrants", - "Racial discrimination" - ] - }, - { - "text": "Take all necessary measures to ensure an independent and effective oversight by all government branches of the overseas surveillance operations of the National Security Agency, especially those carried out under the Executive Order 12333, and guarantee access to effective judicial and other remedies for people whose right to privacy would have been violated by the surveillance activities of the United States", - "values": [ - "Privacy" - ] - }, - { - "text": "Adopt a comprehensive law on violence against women", - "values": [ - "Women's rights" - ] - }, - { - "text": "Follow up the recommendations of the Committee on the Elimination of Racial Discrimination and the Committee on the Elimination of Discrimination against Womenon discrimination against women.", - "values": [ - "Racial discrimination", - "Treaty bodies", - "Women's rights" - ] - }, - { - "text": "Enact legislation and norms prohibiting the creation of associations that promote and disseminate hate speech and racism, consistent with appropriate international instruments", - "values": [ - "International instruments", - "Racial discrimination" - ] - }, - { - "text": "Consider ratification of other core human rights treaties, such as the International Covenant on Social, Economic and Cultural Rights and the Convention on the Rights of Persons with Disabilities ", - "values": [ - "Disabilities", - "ESC rights - general", - "International instruments" - ] - }, - { - "text": "Do its utmost to eliminate forced child labour and intensify its efforts to effectively implement the national legislation, in particular the labour code of 1996, and international conventions ratified by the Government on this subject.", - "values": [ - "Labour", - "Rights of the Child" - ] - }, - { - "text": "Ensure adequate consultations with indigenous peoples in the formulation of policies affecting them", - "values": [ - "Indigenous peoples" - ] - }, - { - "text": "Take strong coordinating measures to protect the right to freedom of religion or belief, including by ensuring that all district and provincial laws and regulations align with the Constitution and international human rights obligations of Indonesia", - "values": [ - "Freedom of religion and belief", - "International instruments" - ] - }, - { - "text": "Exert its utmost efforts in ensuring a free and fair referendum to enable a new constitution to be adopted, in order to establish a firm foundation for the promotion and protection of human rights ", - "values": [ - "General" - ] - }, - { - "text": "Strengthen the moratorium on the death penalty against young people, established in October 2008 limit the crimes punishable by the death penalty to commute death sentences to imprisonment and withdraw its reservations to CRC and specifically prohibit the application of the death penalty to young people in all circumstances", - "values": [ - "Death penalty", - "International instruments", - "Rights of the Child" - ] - }, - { - "text": "Reinforce the measures taken against trafficking children, in particular cross-border trafficking, and child labour.", - "values": [ - "Labour", - "Rights of the Child", - "Trafficking" - ] - }, - { - "text": "Take further measures to protect press freedom, including the protection of journalists from threats by criminal groups", - "values": [ - "Freedom of the press" - ] - }, - { - "text": "Intensify efforts to eradicate differences between employees with permanent contracts and those who do not have permanent employment", - "values": [ - "Labour" - ] - }, - { - "text": "Initiate further studies on methods by which Sami land and resource rights could be established, taking into account the culture of the Sami community ", - "values": [ - "Indigenous peoples", - "Right to land", - "Right to water and sanitation" - ] - }, - { - "text": "Finalize the procedure of accession to the Convention on the Prevention and Punishment of the Crime of Genocide and the Convention 169 concerning Indigenous and Tribal Peoples", - "values": [ - "Indigenous peoples", - "International instruments", - "Justice" - ] - }, - { - "text": "Ensure the right to food and other economic, social and cultural rights, without any kind of discrimination", - "values": [ - "ESC rights - general", - "Right to food" - ] - }, - { - "text": "Explicitly prohibit discrimination against persons with disabilities and discrimination based on religious belief", - "values": [ - "Disabilities", - "Freedom of religion and belief", - "Racial discrimination" - ] - }, - { - "text": "Continue to uphold and respect human rights standards and obligations as it pursues counter-terrorist operations", - "values": [ - "Counter-terrorism" - ] - }, - { - "text": "Within the framework of the National Roma Integration Strategy developed in 2011, intensify its efforts for implementation of their integration policy, especially in the areas of health and education", - "values": [ - "Minorities", - "Right to education", - "Right to health" - ] - }, - { - "text": "Allow access for international organizations to ethnic minority areas ", - "values": [ - "Minorities" - ] - }, - { - "text": "Expedite the adoption of a National Action Plan to protect the rights of children", - "values": [ - "Rights of the Child" - ] - }, - { - "text": "Continue its work to achieve greater access to employment for women with disabilities ", - "values": [ - "Development", - "Disabilities", - "Women's rights" - ] - }, - { - "text": "Complete its transition from a militarized society to a democratic system based on the rule of\nlaw under civilian rule", - "values": [ - "Justice" - ] - }, - { - "text": "Protect the reproductive rights of girls and women, adopting legal reforms that eliminate the requirement for prior judicial authorization for abortion", - "values": [ - "Rights of the Child", - "Women's rights" - ] - }, - { - "text": "Accede to the Convention on the Non-Applicability of Statutory Limitations to War Crimes and Crimes against Humanity", - "values": [ - "International instruments", - "Justice" - ] - }, - { - "text": "Continue and strengthen the actions for the improvement of the living condition of its population", - "values": [ - "Development" - ] - }, - { - "text": "Establish a moratorium with a view to abolishing the death penalty, in accordance with the above- mentioned General Assembly resolutions 62-149 and 63-168", - "values": [ - "Death penalty" - ] - }, - { - "text": "Reconsider the constraints underneath the process of accession to Protocol No. 12 to the European Convention on Human Rights", - "values": [ - "International instruments" - ] - }, - { - "text": "Continue to combat terrorism, separatism and religious extremism and make sure people will enjoy human rights in a peaceful and stable environment ", - "values": [ - "Public security" - ] - }, - { - "text": "Continue to fight against female genital mutilation and early marriages", - "values": [ - "Rights of the Child", - "Torture and other CID treatment", - "Women's rights" - ] - }, - { - "text": "Further expand efforts to provide all its citizens with access to school and to ensure equal enjoyment of the right to education, and increase bilingual education programmes ", - "values": [ - "Right to education" - ] - }, - { - "text": "Study the possibility of formulating national policy on short-, medium- and long-term employment", - "values": [ - "Development" - ] - }, - { - "text": "Review and amend laws such as the Sedition Act, the Printing Press and Publications Act, and the Official Secrets Act, to enable its citizens to exercise fully the right to freedom of opinion and expression, including freedom of the press and freedom of information", - "values": [ - "Freedom of opinion and expression", - "Freedom of the press" - ] - }, - { - "text": "Step up its efforts to establish a national human rights institution that is compliant to the Paris Principles", - "values": [ - "National Human Rights Institution" - ] - }, - { - "text": "Ratify ILO Convention No. 87 on Freedom of Association and Protection of the Right to Organise, and implement it to ensure the right of all workers to freely organize", - "values": [ - "Freedom of association and peaceful assembly", - "International instruments" - ] - }, - { - "text": "Decriminalize of defamation", - "values": [ - "Freedom of opinion and expression" - ] - }, - { - "text": "Step up its cooperation with special procedures mandate holders by responding positively to the pending visit requests of special procedures mandate holders and eventually consider extending a standing invitation to all special procedure mandates holders of the Human Rights Council ", - "values": [ - "Special procedures" - ] - }, - { - "text": "Fight against discrimination based on sexual orientation and gender identity, especially against children, carrying out public awareness programmes and teacher training on this subject", - "values": [ - "Human rights education and training", - "Rights of the Child", - "Sexual Orientation and Gender Identity" - ] - }, - { - "text": "Continue to invest in poverty alleviation policies and to ensure more effective and targeted implementation, so as to reduce social and economic inequality, in particular for rural populations and indigenous peoples", - "values": [ - "Indigenous peoples", - "Poverty" - ] - }, - { - "text": "Ensure effective birth registration of all children, raise the age of criminal responsibility in compliance with CRC and adopt specific measures to strengthen protection of human rights of children from vulnerable groups, such as children in detention, internally displaced children and children of refugees", - "values": [ - "International instruments", - "Rights of the Child", - "Statelessness and the right to nationality" - ] - }, - { - "text": "Take immediate and concrete steps to fulfil the recommendations made by the United Nations Special Rapporteur on Torture in 2012 and 2014, including the establishment of an effective national preventative mechanism", - "values": [ - "Detention", - "Special procedures", - "Torture and other CID treatment" - ] - }, - { - "text": "Continue implementing the good policies for improving the education infrastructure", - "values": [ - "Right to education" - ] - }, - { - "text": "Allow abortion at least when pregnancy poses a risk to the health of the pregnant woman ", - "values": [ - "Right to health", - "Women's rights" - ] - }, - { - "text": "Continue to take measures to safeguard religious freedom and promote tolerance among its inhabitants", - "values": [ - "Freedom of religion and belief" - ] - }, - { - "text": "Consider adopting a national plan to combat trafficking in persons in the context of the measures taken to promote and protect the rights of women and children", - "values": [ - "Rights of the Child", - "Trafficking", - "Women's rights" - ] - }, - { - "text": "Further coordination among relevant national authorities and human rights institutions ", - "values": [ - "National Human Rights Institution" - ] - }, - { - "text": "Hold accountable, in accordance with international standards, all parties responsible for violations of international human rights and humanitarian law and abuses of human rights, and include human rights guarantees in the new Constitution", - "values": [ - "International humanitarian law", - "International instruments" - ] - }, - { - "text": "Ratify the International Convention on the Rights of Persons with Disabilities and its Optional Protocol (OP-CRPD) ", - "values": [ - "Disabilities", - "International instruments" - ] - }, - { - "text": "Further improve the justice system by fully implementing international fair trial standards such as ensuring adequate access of lawyers to their detained clients and that confidentiality of communication between them is protected, to ensure access to justice to all persons, including women and minorities", - "values": [ - "Justice", - "Rights of the Child", - "Women's rights" - ] - }, - { - "text": "Continue to develop appropriate policies to provide equal job opportunities for persons with disabilities", - "values": [ - "Disabilities", - "Labour" - ] - }, - { - "text": "Strengthen the consultation mechanism, especially in terms of economic, social and cultural rights", - "values": [ - "ESC rights - general" - ] - }, - { - "text": "Accede to Protocol No. 12 to the European Convention on Human Rights and ensure implementation of concrete measures against all forms of discrimination", - "values": [ - "International instruments" - ] - }, - { - "text": "Accelerate the introduction of a law on freedom of information in line with international standards ", - "values": [ - "Freedom of opinion and expression" - ] - }, - { - "text": "Recommended further efforts aimed at combating extreme poverty", - "values": [ - "Poverty" - ] - }, - { - "text": "Immediately end attacks on peaceful protesters and activists and bring violators to account", - "values": [ - "Freedom of association and peaceful assembly" - ] - }, - { - "text": "Enact and implement new legislation as well as practical measures to end discriminatory practices against Roma in the education system, in particular provisions of the School Act which lead to Roma children being pushed out of the regular school system and into special educational institutions, thereby perpetuating their segregation.", - "values": [ - "Minorities", - "Right to education" - ] - }, - { - "text": "Sign and ratify the Optional Protocols to the CRC on the sale of children, child prostitution and child pornography and on the involvement of children in armed conflicts, and ratify the United Nations Convention on the Rights of Persons with Disabilities ", - "values": [ - "Disabilities", - "International instruments", - "Rights of the Child", - "Trafficking" - ] - }, - { - "text": "That the current sponsorship system, - kafala', be revoked and replaced with regulations in accordance with international standards", - "values": [ - "Rights of the Child" - ] - }, - { - "text": "Envisage an explicit reference to the ban of child's labour in the national law", - "values": [ - "Labour", - "Rights of the Child" - ] - }, - { - "text": "Further its endeavours with regard to the smooth and productive activity of the Women and Child Protection Division within the country ", - "values": [ - "Rights of the Child", - "Women's rights" - ] - }, - { - "text": "Make an effort to implement all the accepted recommendations", - "values": [ - "UPR process" - ] - }, - { - "text": "Ensure that migrant workers and their families and in particular children have access to sufficient means of subsistence, to housing, to health care and to education", - "values": [ - "Migrants", - "Right to education", - "Right to health", - "Right to housing", - "Rights of the Child" - ] - }, - { - "text": "Legally prohibit the abhorrent practice of corporal punishment of children and adopt an integral law on children, which compiles the provisions of the Convention on the Rights of the Child", - "values": [ - "International instruments", - "Rights of the Child", - "Torture and other CID treatment" - ] - }, - { - "text": "Intensify efforts to combat sexual violence and ill-treatment against women and children, including by providing specific training to law enforcement officers and judges ", - "values": [ - "Rights of the Child", - "Women's rights" - ] - }, - { - "text": "Establish an effective policy and legal framework to prevent and contrast all forms of discrimination and violence against women, including domestic violence, in order to ensure that women victims of violence receive adequate support and offenders are brought to justice", - "values": [ - "Rights of the Child", - "Women's rights" - ] - }, - { - "text": "Submit overdue reports to the relevant United Nations treaty bodies", - "values": [ - "Treaty bodies" - ] - }, - { - "text": "Ensure journalists and the media are able to conduct their work freely and independently", - "values": [ - "Freedom of the press" - ] - }, - { - "text": "Investigate cases of gender violence and bring perpetrators to justice and provide legal and medical support to victims ", - "values": [ - "Women's rights" - ] - }, - { - "text": "Enhance the adoption of measures aimed at preventing the teenage pregnancy incidence", - "values": [ - "Right to health", - "Rights of the Child", - "Women's rights" - ] - }, - { - "text": "Abolish the death penalty in those states where it is still used", - "values": [ - "Death penalty" - ] - }, - { - "text": "Take measures to eliminate traditional practices that are in contradiction with human rights obligations", - "values": [ - "Other" - ] - }, - { - "text": "Continue its efforts to combat sexual exploitation of children and continue to take effective measures to protect children from violence, racism and pornography.", - "values": [ - "Rights of the Child" - ] - }, - { - "text": "Adopt measures to adapt the migratory policies to the standards established by the International Convention on the Protection of the Rights of all Migrant Workers and Members of their Families ", - "values": [ - "International instruments", - "Labour", - "Migrants" - ] - }, - { - "text": "Develop a comprehensive policy to address the issue of gender discrimination in employment.", - "values": [ - "Labour", - "Women's rights" - ] - }, - { - "text": "Adopt appropriate measures to ensure equal enjoyment of the right to freedom of religion or belief ", - "values": [ - "Freedom of religion and belief" - ] - }, - { - "text": "Take concrete measures to strengthen the legislation to combat all forms of discrimination, including those related to sexual orientation, and step up new awareness campaigns to combat all forms of discrimination, including those based on gender, ethnic origin, sexual orientation or gender identity", - "values": [ - "Human rights education and training", - "Minorities", - "Racial discrimination", - "Sexual Orientation and Gender Identity", - "Women's rights" - ] - }, - { - "text": "Take effective measures to prevent any form of discrimination and racism ", - "values": [ - "Racial discrimination" - ] - }, - { - "text": "Abolish the death penalty and accede to the Second Optional Protocol to the International Covenant on Civil and Political Rights", - "values": [ - "Death penalty", - "International instruments" - ] - }, - { - "text": "Consider applying alternative measures to the detention of unaccompanied migrant children ", - "values": [ - "Detention", - "Migrants", - "Rights of the Child" - ] - }, - { - "text": "Step up the efforts to combat terrorism in all its forms", - "values": [ - "Public security" - ] - }, - { - "text": "Improve access for women and girls to basic health-care services", - "values": [ - "Right to health", - "Rights of the Child", - "Women's rights" - ] - }, - { - "text": "Decriminalize homosexuality, and take action to combat violence based on sexual orientation and gender identity", - "values": [ - "Sexual Orientation and Gender Identity" - ] - }, - { - "text": "Encourage the devolved government of Northern Ireland to increase resources and personnel available to the Historical Enquiries Team ", - "values": [ - "Other" - ] - }, - { - "text": "To maintain the momentum on addressing killings of activists and media professionals", - "values": [ - "Extrajudicial executions", - "Freedom of the press" - ] - }, - { - "text": "Pay further attention to the issue of domestic violence, the gender gap in tertiary education and women's participation in politics ", - "values": [ - "Rights of the Child", - "Women's rights" - ] - }, - { - "text": "Continue practical efforts to improve the overall human rights situation in the country by strengthening, inter alia, its effective bilateral and multilateral cooperation ", - "values": [ - "Technical assistance and cooperation" - ] - }, - { - "text": "Consider expediting its work on the draft Bill to make basic education compulsory and free", - "values": [ - "Right to education" - ] - }, - { - "text": "Ensure that the conditions of detention are in conformity with minimum international standards ", - "values": [ - "Detention" - ] - }, - { - "text": "Continue advancing the promotion of laws and initiatives that ban discrimination and incitement to violence on the grounds of sexual orientation and gender identity, in particular in the case of young persons and adolescents", - "values": [ - "Sexual Orientation and Gender Identity" - ] - }, - { - "text": "Implement measures to prevent violence against the LGBT community, through training and advocacy campaigns ", - "values": [ - "Human rights education and training", - "Sexual Orientation and Gender Identity" - ] - }, - { - "text": "Continue close cooperation with various stakeholders and non-governmental organizations in the follow-up of this review ", - "values": [ - "Civil society", - "UPR process" - ] - }, - { - "text": "Continue to enhance its efforts to counter trafficking in persons, including to consider the possibility of inviting the Special Rapporteur on trafficking in persons, especially in women and children ", - "values": [ - "Rights of the Child", - "Special procedures", - "Trafficking", - "Women's rights" - ] - }, - { - "text": "Submit reports to the Committee on the Rights of the Child as soon as possible ", - "values": [ - "Rights of the Child", - "Treaty bodies" - ] - }, - { - "text": "Introduce appropriate legal measures prohibiting all forms of violence against children, ensure accountability and end impunity", - "values": [ - "Impunity", - "Rights of the Child" - ] - }, - { - "text": "Take further efforts in addressing the problem of unemployment, especially among young\npeople", - "values": [ - "Development" - ] - }, - { - "text": "Consider establishing and implementing a comprehensive asylum system consistent with international and regional standards on protection and reception of asylum-seekers and irregular migrants, with an allocation of adequate resources ", - "values": [ - "Asylum-seekers - refugees", - "Migrants" - ] - }, - { - "text": "Consider ratifying the International Covenant on Civil and Political Rights ", - "values": [ - "CP rights - general", - "International instruments" - ] - }, - { - "text": "Further strengthen the National Commission in accordance with the Paris Principles ", - "values": [ - "National Human Rights Institution" - ] - }, - { - "text": "Step up efforts to improve the literacy rate among the indigenous communities and the people who live in rural areas ", - "values": [ - "Indigenous peoples" - ] - }, - { - "text": "Apply the measures envisaged to continue the trend towards poverty reduction in the country", - "values": [ - "Poverty" - ] - }, - { - "text": "Engage substantively with international experts on the development of its media law and work to increase the independence of media institutions.", - "values": [ - "Freedom of the press" - ] - }, - { - "text": "Continue its efforts to consolidate the progress achieved in promoting women's rights and protecting human rights ", - "values": [ - "Women's rights" - ] - }, - { - "text": "Continue the efforts in the field of violence against women and the promotion of equality between women and men", - "values": [ - "Women's rights" - ] - }, - { - "text": "Provide additional resources to the office of the Equality and Anti- Discrimination Ombudsperson in order to combat discrimination and hate crime against migrant Roma ", - "values": [ - "Migrants", - "Minorities", - "National Human Rights Institution", - "Racial discrimination" - ] - }, - { - "text": "Give continuity to the measures for the creation of a more inclusive, plural and cohesive society", - "values": [ - "Other" - ] - }, - { - "text": "Implement the recommendations made by the Special Rapporteur on violence against women in 2008 ", - "values": [ - "Special procedures", - "Women's rights" - ] - }, - { - "text": "Adhere to the principles of the International Convention on the Protection of the Rights of All Migrant Workers and Members of Their Families and positively consider ratifying it", - "values": [ - "International instruments", - "Labour", - "Migrants" - ] - }, - { - "text": "Eliminate discrimination against women, including in the Nationality Act, so as to enable Kuwaiti women to pass on their nationality to their children", - "values": [ - "Women's rights" - ] - }, - { - "text": "Implement measures to ensure that persons with disabilities are enabled to participate in job training, vocational training, literacy and numeracy programmes and set concrete targets measurable within one year to this effect, in consultation with persons with disabilities and their representative organizations ", - "values": [ - "Disabilities" - ] - }, - { - "text": "Guyana made a commitment, before the UPR, that once evidence and witnesses are available all those responsible for the crime wave of 2002-2008 would be brought to justice, whether they were part of the violent criminal gangs or those in the "Phantom Squad". ", - "values": [ - "Justice" - ] - }, - { - "text": "Take further measures to ensure full and consistent protection of human rights in domestic law and policies, taking into account recommendations made by several United Nations human rights bodies in this regard.", - "values": [ - "Treaty bodies" - ] - }, - { - "text": "Broadly share the experience regarding the formulation and implementation of the second National Action Plan for Human Rights ", - "values": [ - "General" - ] - }, - { - "text": "Continue consolidating its correct social programs in favour of its people, in the fight against poverty, exclusion and social injustice underscoring the areas of nutrition, health, education and employment, for which it is important that the Community of Nations provide the cooperation and technical assistance that Guyana requires", - "values": [ - "Development", - "Poverty", - "Right to education", - "Right to food", - "Right to health" - ] - }, - { - "text": "Consider implementing the recommendations of the Special Rapporteur on violence against women and CEDAW.", - "values": [ - "Special procedures", - "Treaty bodies", - "Women's rights" - ] - }, - { - "text": "Promote and protect civil society space and carry out effective and impartial investigations into all cases of intimidation and violence against civil society actors and hold perpetrators of such acts accountable in accordance with international fair trial standards ", - "values": [ - "Civil society", - "Justice" - ] - }, - { - "text": "Strengthen the units for the protection of women and children, granting these the necessary capacity to gather all evidence and investigate all cases of sexual and gender-based violence", - "values": [ - "Rights of the Child", - "Women's rights" - ] - }, - { - "text": "Continue to give priority to tolerance and reconciliation.", - "values": [ - "Justice" - ] - }, - { - "text": "Continue and strengthen the ongoing efforts to combat all sorts of violence against women in society. ", - "values": [ - "Women's rights" - ] - }, - { - "text": "Improve the conditions of detained persons in accordance with the Standard Minimum Rules for the treatment of prisoners", - "values": [ - "Detention" - ] - }, - { - "text": "Strengthen the rule of law by depoliticizing the judiciary and law enforcement and strengthening investigations into corruption and human rights violations and abuses", - "values": [ - "Corruption", - "Justice" - ] - }, - { - "text": "Take the legal measures necessary to establish a moratorium on the use the death penalty", - "values": [ - "Death penalty" - ] - }, - { - "text": "Intensify the implementation of its laws, policies and programmes aimed at combating violence against women", - "values": [ - "Women's rights" - ] - }, - { - "text": "Redouble efforts through legislative measures and public policies to ensure that its legislation is aligned with international human rights obligations", - "values": [ - "International instruments" - ] - }, - { - "text": "Annul the provision of medical treatment without consent as laid down in Icelandic law", - "values": [ - "Right to health" - ] - }, - { - "text": "Ensure the effectiveness of temporary protection centres for children with albinism throughout the country", - "values": [ - "Minorities", - "Rights of the Child" - ] - }, - { - "text": "Ratify and accede to the International Convention for the Protection of All Persons from Enforced Disappearance and withdraw its reservations to articles 2 and 15 of the Convention on the Elimination of All Forms of Discrimination against Women", - "values": [ - "Enforced disappearances", - "International instruments", - "Women's rights" - ] - }, - { - "text": "Amend the Law on Mass Events in order to enable the right to peaceful assembly to be exercised more easily", - "values": [ - "Freedom of association and peaceful assembly" - ] - }, - { - "text": "Ratify the International Covenant on Civil and Political Rights and its two optional protocols", - "values": [ - "CP rights - general", - "Death penalty", - "International instruments" - ] - }, - { - "text": "Continue expanding access to voluntary termination of pregnancy in order to ensure the full recognition of sexual and reproductive rights", - "values": [ - "Right to health", - "Women's rights" - ] - }, - { - "text": "Adopt legislative measures to guarantee the right to education for all migrant boys and girls ", - "values": [ - "Migrants", - "Right to education", - "Rights of the Child" - ] - }, - { - "text": "Amend its criminal legislation to include crimes of hatred and of discrimination on the grounds of sexual orientation and gender identity", - "values": [ - "Sexual Orientation and Gender Identity" - ] - }, - { - "text": "Continue its efforts to combat racial discrimination ", - "values": [ - "Racial discrimination" - ] - }, - { - "text": "Strengthen government policy aimed at ensuring inter-ethnic harmony and culture diversity", - "values": [ - "Minorities" - ] - }, - { - "text": "Respect the rights of Human Rights Defenders and protect them in their everyday struggle ", - "values": [ - "Human rights defenders" - ] - }, - { - "text": "Strengthen its cooperation with treaty bodies, including by agreeing on timelines for the submission of overdue reports ", - "values": [ - "Treaty bodies" - ] - }, - { - "text": "Reinforce efforts aimed at improving the working and living conditions of migrant workers", - "values": [ - "Labour", - "Migrants" - ] - }, - { - "text": "Ratify the Convention for the Protection of All Persons from Enforced Disappearance and establish a national human rights institution which fully complies with the Paris Principles", - "values": [ - "Enforced disappearances", - "International instruments", - "National Human Rights Institution" - ] - }, - { - "text": "Review its Equality Act in relation to gender identity and the rights of intersex persons in the context of rights to health services", - "values": [ - "Right to health", - "Sexual Orientation and Gender Identity" - ] - }, - { - "text": "Further strengthen the protection of the rights and dignity of foreigners subjected to identity checks or expulsion procedures ", - "values": [ - "Migrants" - ] - }, - { - "text": "Immediately lift all Public Emergency Regulations and to abolish any policy or decree that restricts the freedom of the media or the rights of freedom of association and movement", - "values": [ - "Freedom of association and peaceful assembly", - "Freedom of movement", - "Freedom of the press" - ] - }, - { - "text": "Promote the registration of Syrian refugees by the Office of the United Nations High Commissioner for Refugees [UNHCR] in order for the international community to help Lebanon to cope with this humanitarian crisis and to allow the return of Syrians in the country when peace returns. Promote refugee access to livelihoods", - "values": [ - "Asylum-seekers - refugees", - "Technical assistance and cooperation" - ] - }, - { - "text": "Complete the process of aligning its national legislation with the provisions of the Rome Statute, and step up the ratification process of OP-CAT and establish a national preventive mechanism against torture ", - "values": [ - "Detention", - "International instruments", - "Justice", - "Torture and other CID treatment" - ] - }, - { - "text": "Continue strengthening the child protection and persons with disabilities services in order to provide legal protection against all forms of discrimination", - "values": [ - "Disabilities", - "Rights of the Child" - ] - }, - { - "text": "Thoroughly investigate cases of hate crimes and fully prosecute those responsible for acts of incitement to violence", - "values": [ - "Racial discrimination" - ] - }, - { - "text": "Take measures to end internal displacements, and to undertake social housing and land reform initiatives that benefit low-income, vulnerable and marginalized individuals living in informal settlements", - "values": [ - "Internally displaced persons" - ] - }, - { - "text": "Ensure the implementation of laws against corporal punishment by undertaking awareness raising campaigns, encouraging the report of cases and ensuring effective investigation and prosecution of perpetrators", - "values": [ - "Human rights education and training", - "Torture and other CID treatment" - ] - }, - { - "text": "Study the possibility to establish new measures to strengthen respect for the rights of persons with disabilities and fight against the discrimination with which they are faced ", - "values": [ - "Disabilities" - ] - }, - { - "text": "Regularly and in due time deliver reports to the respective treaty bodies regarding the implementation of conventions and optional protocols to which Portugal is a party ", - "values": [ - "Treaty bodies" - ] - }, - { - "text": "Guarantee freedom of expression and protect journalists against any form of intimidation", - "values": [ - "Freedom of opinion and expression", - "Freedom of the press" - ] - }, - { - "text": "Take the measures necessary for the in-service training of the judges regarding judicial improvements on issues of human rights ", - "values": [ - "Human rights education and training" - ] - }, - { - "text": "Take all necessary measures to put an end to acts of intimidation and violence committed against journalists and human rights defenders ", - "values": [ - "Freedom of the press", - "Human rights defenders" - ] - }, - { - "text": "Improve the transparency and efficiency of its judicial system, ensuring a fair, open and prompt process for all sectors of society", - "values": [ - "Justice" - ] - }, - { - "text": "Pursuing a participatory process in implementing the National Development Plan ", - "values": [ - "Development" - ] - }, - { - "text": "Continue its work to strengthen its policies to further promote gender equality and eliminate discrimination and violence against women", - "values": [ - "Women's rights" - ] - }, - { - "text": "Ratify the Convention on Preventing and Combating Violence against Women and Domestic Violence, which was signed in 2013", - "values": [ - "International instruments", - "Rights of the Child", - "Women's rights" - ] - }, - { - "text": "Continue efforts in terms of climate change mitigation strategy, including through assistance to the Samoan population in case of natural disasters and with the support of the international community", - "values": [ - "Environment", - "Technical assistance and cooperation" - ] - }, - { - "text": "Strengthen the functioning of its judiciary and its human rights institutional framework and promote concrete programmes to raise awareness of human rights, in particular among judges and lawyers, but also among the general public.", - "values": [ - "Human rights education and training", - "Justice" - ] - }, - { - "text": "Strengthen its efforts to combat all forms of exploitation of children in line with the Optional Protocol to the Convention on the Rights of the Child on the sale of children, child prostitution and child pornography", - "values": [ - "International instruments", - "Rights of the Child", - "Trafficking" - ] - }, - { - "text": "Consider signing and ratifying the third OP-CRC-IC", - "values": [ - "International instruments", - "Rights of the Child" - ] - }, - { - "text": "Luxembourg pledged to include gender dimensions in the review follow-up, such as in measures under chapter 9 on fundamental rights of the national plan of action for gender equality for 2009-2013, which was to be adopted after the election in 2009", - "values": [ - "UPR process", - "Women's rights" - ] - }, - { - "text": "Abrogate the domestic legislative and regulatory provisions that discriminate against women and children", - "values": [ - "Rights of the Child", - "Women's rights" - ] - }, - { - "text": "Ensure that Slovenia's national legislation is fully harmonized with international standards to comply with its commitments under international treaties, especially with regard to the Convention on the Elimination of All Forms of Discrimination against Women, CRC and ICERD", - "values": [ - "International instruments", - "Racial discrimination", - "Rights of the Child", - "Women's rights" - ] - }, - { - "text": "Take further legal, political and practical measures to reduce the phenomenon of non-citizens", - "values": [ - "Statelessness and the right to nationality" - ] - }, - { - "text": "Consider strengthening the Complaints Office of the National Council for Women and the helpline of the National Council for Children, building on past experience and with a view to strengthening the role and effectiveness of these two institutions throughout the Republic", - "values": [ - "Rights of the Child", - "Women's rights" - ] - }, - { - "text": "Strengthen the investigation capacity, independence and legal framework of the Human Rights and Public Administration Commission in accordance with the Paris Principles, with a view to obtain its accreditation by the ICC", - "values": [ - "National Human Rights Institution" - ] - }, - { - "text": "Ratify the Rome Statute of ICC, while welcoming the fact that the possibility is currently under analysis", - "values": [ - "International instruments", - "Justice" - ] - }, - { - "text": "Take effective measures to end the recruitment of children into the armed forces and affiliated armed groups, and also fight the forced recruitment and abduction of children by non-State armed groups ", - "values": [ - "Rights of the Child" - ] - }, - { - "text": "Continue to advocate for the principle of equality between men and women in the decision making", - "values": [ - "Women's rights" - ] - }, - { - "text": "Consider the extension of a standing invitation to the special procedures of the Council.", - "values": [ - "Special procedures" - ] - }, - { - "text": "Establish a monitoring system for special care institutions for children and develop an action plan to gradually integrate such children in the general school system", - "values": [ - "Right to education", - "Rights of the Child" - ] - }, - { - "text": "As almost 90 per cent of children in Benin have unfortunately been victims of violence at school, organize a national campaign for raising awareness against these unacceptable offences", - "values": [ - "Human rights education and training", - "Rights of the Child" - ] - }, - { - "text": "Make further efforts to address reported cases of obstructions to human rights activities, including attacks and threats against journalists and human rights activists. ", - "values": [ - "Freedom of the press", - "Human rights defenders" - ] - }, - { - "text": "Continue working for the integration and empowerment of women in decision making processes ", - "values": [ - "Women's rights" - ] - }, - { - "text": "Ensure on-going protective measures to maintain and advance the levels of human rights developments", - "values": [ - "General" - ] - }, - { - "text": "Further strengthen its efforts in ensuring the protection of children's rights, including by fully implementing the 2013 Vulnerable Children Bill and by considering implementing the restorative justice principles to all children ", - "values": [ - "Justice", - "Rights of the Child" - ] - }, - { - "text": "Acknowledge the harm done to the victims of sterilization, in particular Roma, and bring perpetrators to Justice and provide reparations to the victims.", - "values": [ - "Minorities", - "Torture and other CID treatment" - ] - }, - { - "text": "Apply a strategy of universal registration of births ", - "values": [ - "Rights of the Child", - "Statelessness and the right to nationality" - ] - }, - { - "text": "Establish the National Human Rights Commission, as soon as possible, which comprises independent and impartial Commissioners and which is compatible with the Paris Principles ", - "values": [ - "National Human Rights Institution" - ] - }, - { - "text": "Consider issuing a standing invitation to all special procedures of the Human Rights Council.", - "values": [ - "Special procedures" - ] - }, - { - "text": "Continue activities to combat traditional practices which are harmful to health", - "values": [ - "Right to health", - "Torture and other CID treatment" - ] - }, - { - "text": "Rapidly accede to the International Convention for the Protection of All Persons from Enforced Disappearance.", - "values": [ - "Enforced disappearances", - "International instruments" - ] - }, - { - "text": "Continue its successful efforts to improve the living conditions of persons with disabilities", - "values": [ - "Disabilities" - ] - }, - { - "text": "Continue efforts aimed at promoting and protecting human rights, especially in the economic and social domains.", - "values": [ - "ESC rights - general" - ] - }, - { - "text": "Ratify without delay the Optional Protocol to the Convention on the Rights of the Child on the involvement of children in armed conflict and the Optional Protocol to the Convention on the Rights of the Child on the sale of children, child prostitution and child pornography", - "values": [ - "International humanitarian law", - "International instruments", - "Rights of the Child", - "Trafficking" - ] - }, - { - "text": "Amend legislation discriminating against women in the fields of inheritance, ownership to land and child support.", - "values": [ - "Women's rights" - ] - }, - { - "text": "Enact and amend legislation to ensure that the prohibition against discrimination is in line with CEDAW, especially with article 1 concerning direct and indirect discrimination in general, and article 16 relating to marriage and family relations", - "values": [ - "International instruments", - "Women's rights" - ] - }, - { - "text": "Investigate cases of disproportionate use of force by police during arrests, custody and interrogations of suspects in particular migrants ", - "values": [ - "Detention", - "Human rights violations by state agents", - "Migrants" - ] - }, - { - "text": "Seek the necessary assistance, with appropriate partners, to fill the low literacy rates, submit its reports to the treaty bodies and implement its strategic framework for growth and the fight against poverty", - "values": [ - "Poverty", - "Right to education", - "Treaty bodies" - ] - }, - { - "text": "Ratify the OP-CEDAW without reservations", - "values": [ - "International instruments", - "Women's rights" - ] - }, - { - "text": "Continue the efforts to review existing legislation related to the family, in particular the regime applicable to children born out of wedlock", - "values": [ - "Rights of the Child" - ] - }, - { - "text": "Continue efforts in establishing stability in the country and in this regard to resume building state institutions", - "values": [ - "Other" - ] - }, - { - "text": "Take the necessary steps to become a party to all major human rights instruments, including the Convention against Torture and Other Cruel, Inhuman or Degrading Treatment or Punishment, the International Convention for the Protection of All Persons from Enforced Disappearance and the Convention on the Rights of Persons with Disabilities and its Optional Protocol ", - "values": [ - "Disabilities", - "Enforced disappearances", - "International instruments", - "Torture and other CID treatment" - ] - }, - { - "text": "Strengthen the legal and institutional framework to combat racism and racial discrimination, ensuring that all legal provisions are applied and that active monitoring of patterns of racism and racial discrimination is carried out ", - "values": [ - "Racial discrimination" - ] - }, - { - "text": "Ratify the International Covenant on Civil and Political Rights and the Convention against Torture", - "values": [ - "CP rights - general", - "International instruments", - "Torture and other CID treatment" - ] - }, - { - "text": "Pursue the successful implementation of the national Action Plan for Human Rights and Vision 2025, which are in line with the Sustainable Development Goals", - "values": [ - "General" - ] - }, - { - "text": "Continue the coordination among print and audio-visual media to raise awareness and deepen understanding of human rights principles, and protect and promote different cultures, traditions and religions as a principal factor of stable relations among the ethnic groups ", - "values": [ - "Freedom of religion and belief", - "Freedom of the press", - "Human rights education and training", - "Minorities" - ] - }, - { - "text": "Engage with the United Nations and development partners when technical support is required", - "values": [ - "Technical assistance and cooperation" - ] - }, - { - "text": "Take steps to enact legislation to enshrine a specific right of non-discrimination on the basis of gender, in accordance with article 1 of the Convention on the Elimination of All Forms of Discrimination against Women.", - "values": [ - "International instruments", - "Women's rights" - ] - }, - { - "text": "Accede to the 1951 Refugee Convention and the 1967 Protocol thereto ", - "values": [ - "Asylum-seekers - refugees", - "International instruments" - ] - }, - { - "text": "Adopt measures to prevent attacks, harassment, arbitrary detention of political activists and journalists ", - "values": [ - "Freedom of the press" - ] - }, - { - "text": "Complete the work towards the establishment of a national strategy on combating violence against children", - "values": [ - "Rights of the Child" - ] - }, - { - "text": "Allow for family reunification for children in as many cases as possible and ensure that Danish jurisprudence on family reunification is in accordance with its human rights obligations ", - "values": [ - "Rights of the Child" - ] - }, - { - "text": "Take steps to increase the protection afforded to women and girl refugees against violence, including by increasing the number of law enforcement officials in refugee camps, and providing effective care for women and girls who are victims of violence ", - "values": [ - "Asylum-seekers - refugees", - "Rights of the Child", - "Women's rights" - ] - }, - { - "text": "Continue to implement measures to advance gender equality in political, administrative and economic spheres", - "values": [ - "Women's rights" - ] - }, - { - "text": "Enforce the measures and policies that Pakistan has undertaken to ensure the participation of minorities in an appropriate way in the political life", - "values": [ - "Minorities" - ] - }, - { - "text": "End immediately the detention of those who are not held in detention centres as foreseen by article 341 of the Penal Code.", - "values": [ - "Detention" - ] - }, - { - "text": "Continue efforts to strengthen legal and institutional frameworks to promote and protect human rights, including through the formulation of a national human rights plan of action, and expediting the amendment process to the law regulating the NHRI so that it is fully in accordance with the Paris Principles ", - "values": [ - "National Human Rights Institution" - ] - }, - { - "text": "Continue to intensify its efforts to ensure that violence, in particular hate-motivated crime, does not occur", - "values": [ - "Racial discrimination" - ] - }, - { - "text": "Continue its efforts to protect the rights of expatriate workers", - "values": [ - "Labour" - ] - }, - { - "text": "Guarantee effective access to justice in cases of human rights violations committed by security forces personnel with regard to the use of torture ", - "values": [ - "Human rights violations by state agents", - "Torture and other CID treatment" - ] - }, - { - "text": "Enact comprehensive legislation that fully guarantees the application of the principle of non-discrimination and to ensure the full enjoyment of all human rights by every member of society", - "values": [ - "Other" - ] - }, - { - "text": "Adopt a law on the Truth and Reconciliation Commission which is in line with international human rights norms and which establishes the impossibility of applying an amnesty for serious human rights violations and international crimes ", - "values": [ - "International instruments", - "Justice" - ] - }, - { - "text": "Ratify, before the next review cycle, the Optional Protocol to the Convention on the Rights of the Child on a communications procedure", - "values": [ - "International instruments", - "Rights of the Child" - ] - }, - { - "text": "Continue the efforts to promote and protect the rights of women, and strengthen measures already adopted aimed at enhancing their political participation", - "values": [ - "Women's rights" - ] - }, - { - "text": "Strengthen the implementation of legislation in the areas of freedom of expression, access to information and non-discrimination and ensure that all relevant laws are fully in line with the Constitution", - "values": [ - "Freedom of opinion and expression" - ] - }, - { - "text": "Accede to the Second Optional Protocol of the ICCPR", - "values": [ - "Death penalty", - "International instruments" - ] - }, - { - "text": "Take immediate measures to improve the physical conditions and security situation in detention and processing centres for asylum seekers, especially for women and children. Invest in finding timely, adequate and durable solutions for refugees", - "values": [ - "Asylum-seekers - refugees", - "Detention", - "Rights of the Child", - "Women's rights" - ] - }, - { - "text": "Step up its efforts towards ratifying the Convention against Torture", - "values": [ - "International instruments", - "Torture and other CID treatment" - ] - }, - { - "text": "Consider taking more strenuous effort to improve the socio-economic conditions of women, in particular, in the areas of reproductive health care services, poverty eradication and access to economic resources such as credit and loan facilities.", - "values": [ - "Women's rights" - ] - }, - { - "text": "Continue its cooperation with the United Nations and international human rights mechanisms to overcome the remaining obstacles and challenges", - "values": [ - "Special procedures", - "Technical assistance and cooperation", - "Treaty bodies", - "UPR process" - ] - }, - { - "text": "Continue strengthening the legislative framework on human rights", - "values": [ - "General" - ] - }, - { - "text": "Participate fully in the development and implementation of the regional Strategic Plan for Building Abuse-free Childhoods, referenced in the UNICEF report ", - "values": [ - "Rights of the Child" - ] - }, - { - "text": "Accept the full implementation of the provisions of the CAT and the ICCRP in overseas territories under its control", - "values": [ - "CP rights - general", - "International instruments", - "Torture and other CID treatment" - ] - }, - { - "text": "Consider withdrawing reservations to the Convention on the Elimination of All Forms of Discrimination against Women", - "values": [ - "International instruments", - "Women's rights" - ] - }, - { - "text": "Design and implement the National Plan on Business and Human Rights in line with the United Nations Guiding Principles on the matter", - "values": [ - "Business and human rights" - ] - }, - { - "text": "Consider extending a standing invitation to the special procedures of the Council.", - "values": [ - "Special procedures" - ] - }, - { - "text": "Adopt further measures to facilitate access for erased persons to Slovenian citizenship", - "values": [ - "Other", - "Statelessness and the right to nationality" - ] - }, - { - "text": "Ratify without reservations the International Convention for the Protection of All Persons from Enforced Disappearance", - "values": [ - "Enforced disappearances", - "International instruments" - ] - }, - { - "text": "Strengthen efforts on combating sexual and gender-based violence as well as female genital mutilation", - "values": [ - "Rights of the Child", - "Torture and other CID treatment", - "Women's rights" - ] - }, - { - "text": "Issue a standing invitation to special procedure mandate holders", - "values": [ - "Special procedures", - "Treaty bodies" - ] - }, - { - "text": "Withdraw the reservations to ICCPR ", - "values": [ - "CP rights - general", - "International instruments" - ] - }, - { - "text": "Continue providing effective protection for the family unit, as the natural and fundamental unit of the society", - "values": [ - "Other" - ] - }, - { - "text": "Strengthen national efforts towards the ratification of the Convention against Torture and Other Cruel, Inhuman or Degrading Treatment or Punishment", - "values": [ - "International instruments", - "Torture and other CID treatment" - ] - }, - { - "text": "Continue its efforts to strengthen the institutional and normative human rights framework with regard to freedom of expression", - "values": [ - "Freedom of opinion and expression" - ] - }, - { - "text": "Proceed with the ratification of the Optional Protocol to the Convention against Torture (OP-CAT) ", - "values": [ - "Detention", - "International instruments", - "Torture and other CID treatment" - ] - }, - { - "text": "Repeal article 230 of the Criminal Code", - "values": [ - "Sexual Orientation and Gender Identity" - ] - }, - { - "text": "Continue with its efforts and initiatives to enact the necessary legislation to protect human rights and promote them and to ensure economic development and a higher standard of living", - "values": [ - "Development" - ] - }, - { - "text": "Strengthen efforts to combat poverty, discrimination and the promotion of the status of women and children ", - "values": [ - "Poverty", - "Rights of the Child", - "Women's rights" - ] - }, - { - "text": "Strengthen the work on aligning the national legislation and legal practice with the international obligations of the Democratic People's Republic of Korea on the protection of human rights", - "values": [ - "International instruments" - ] - }, - { - "text": "Include human rights aspects in all training programmes and extend them to all police units", - "values": [ - "Human rights education and training" - ] - }, - { - "text": "Decriminalize consensual same-sex sexual conduct between adults", - "values": [ - "Sexual Orientation and Gender Identity" - ] - }, - { - "text": "Amend the Criminal Code and Constitution so as to incorporate international standards of freedom of expression, as established in article 19 of the International Covenant on Civil and Political Rights.", - "values": [ - "Freedom of opinion and expression", - "International instruments" - ] - }, - { - "text": "Dismantle the special courts and transfer all cases to the criminal courts or high courts, to comply with human rights obligations regarding fair hearings and due process ", - "values": [ - "Justice" - ] - }, - { - "text": "Enact legislation to directly address the prevention of and protection against domestic violence", - "values": [ - "Rights of the Child", - "Women's rights" - ] - }, - { - "text": "Increase the budget allocated to health from 1 percent of the GDP to 2 percent ", - "values": [ - "Right to health" - ] - }, - { - "text": "Regarding counter-terrorism, Canada is committed to preventing and combating terrorism in a manner that fulfills its international obligations, including its human rights obligations.", - "values": [ - "Counter-terrorism", - "International instruments" - ] - }, - { - "text": "Sign ICCPR and ICESCR ", - "values": [ - "CP rights - general", - "ESC rights - general", - "International instruments" - ] - }, - { - "text": "Take into account the opinions of the Working Group on Arbitrary Detention on the release of around 30 persons detained arbitrarily since the last UPR ", - "values": [ - "Detention", - "Special procedures", - "UPR process" - ] - }, - { - "text": "Continue efforts in promoting gender equality, including ensuring equal pension entitlements for women", - "values": [ - "Women's rights" - ] - }, - { - "text": "Take further measures to ensure protection of property rights, pursuant to international standards, including the provisions in articles 14 and 21 of the African Commission on Human and Peoples' Rights and article 5 of CERD ", - "values": [ - "International instruments", - "Racial discrimination" - ] - }, - { - "text": "Improve the civil registration system in order to register all children at birth", - "values": [ - "Rights of the Child", - "Statelessness and the right to nationality" - ] - }, - { - "text": "Immediately release the remaining political prisoners", - "values": [ - "Detention", - "Freedom of opinion and expression" - ] - }, - { - "text": "Ratify the International Convention for the Protection of All Persons from Enforced Disappearance, the Convention on the Reduction of Statelessness, the Optional Protocol to the Convention against Torture, the Optional Protocol to the Convention on the Elimination of All Forms of Discrimination against Women and the Second Optional Protocol to the International Covenant on Civil and Political Rights", - "values": [ - "International instruments" - ] - }, - { - "text": "Continue with the efforts aimed at tackling discrimination and religious intolerance", - "values": [ - "Freedom of religion and belief" - ] - }, - { - "text": "Share at the international level, with the support of the United Nations, its experiences of bilateral cooperation in the promotion of the right to health, especially in the areas of training of human resources and of support to health services throughout the world", - "values": [ - "Right to health" - ] - }, - { - "text": "Transform the current practice of suspension of all executions into law, and put in place a "de jure" moratorium on executions ", - "values": [ - "Death penalty" - ] - }, - { - "text": "Complete the process of establishing the national human rights commission", - "values": [ - "National Human Rights Institution" - ] - }, - { - "text": "Ensure that the right to participate in public and political life as well as the freedom of the press are not submitted to undue limitations", - "values": [ - "Freedom of the press" - ] - }, - { - "text": "Continue your claims in light of the refusal of transnational companies to repair the serious environmental damage in the Amazon", - "values": [ - "Business and human rights", - "Environment" - ] - }, - { - "text": "Implement the recommendations of the 2013 election observation missions and ensure that elections in 2015 and beyond, are free and fair and preceded by inclusive and free campaigning", - "values": [ - "Elections" - ] - }, - { - "text": "Develop public awareness-raising campaigns on stereotyping and discrimination, and provide mandatory training on human rights for police officers", - "values": [ - "Human rights education and training", - "Racial discrimination" - ] - }, - { - "text": "Take steps to end lengthy pretrial detention and reduce prison overcrowding, such as by increasing the number of court hearings per week and fully implementing pending reforms to the justice system", - "values": [ - "Detention", - "Justice" - ] - }, - { - "text": "Reinstate civilian control of decision-making in relation to applications for conscientious objection to military service, to extend the time during which applications can be made, to remove the exclusion of all those who have ever held a firearms license from being recognized as conscientious objectors, and to equalize the length of alternative and military service", - "values": [ - "Freedom of religion and belief" - ] - }, - { - "text": "Fully involve civil society in the follow-up to this review ", - "values": [ - "Civil society", - "UPR process" - ] - }, - { - "text": "Ratify CEDAW.", - "values": [ - "International instruments", - "Women's rights" - ] - }, - { - "text": "Take measures to strengthen the national human rights institutional framework, in particular by allocating the necessary financial and human resources to ensure effective implementation of the mandates of various human rights mechanisms already established", - "values": [ - "National Human Rights Institution" - ] - }, - { - "text": "Amend the appropriate legislation in order to ensure that the definition of rape covers all cases of non-consensual sexual acts", - "values": [ - "Women's rights" - ] - }, - { - "text": "Continue to promote the rights of vulnerable groups, in particular girls, women, migrants and persons with disabilities", - "values": [ - "Disabilities", - "Migrants", - "Rights of the Child", - "Women's rights" - ] - }, - { - "text": "Continue efforts to combat all forms of violence against women with a particular emphasis on the most vulnerable groups of society", - "values": [ - "Women's rights" - ] - }, - { - "text": "Strengthen strategies to combat manifestations of racism, xenophobia and intolerance, including incitement to hatred, taking into account international human rights standards in this regard", - "values": [ - "International instruments", - "Racial discrimination" - ] - }, - { - "text": "Consider strengthening the independence of the Kiribati National Human Rights Task Force so that it complies with the Paris Principles", - "values": [ - "National Human Rights Institution" - ] - }, - { - "text": "Take all necessary measures to ensure that the press is not the target of undue political pressure and that freedom of the press and freedom of expression are guaranteed ", - "values": [ - "Freedom of opinion and expression", - "Freedom of the press" - ] - }, - { - "text": "Continue appropriate policies to eliminate poverty in Sri Lanka by 2030 as stated in paragraph 87 of the report", - "values": [ - "Poverty" - ] - }, - { - "text": "Continue its current efforts to provide sustainable health care that is effective, efficient, accessible, acceptable and affordable to all citizens ", - "values": [ - "Right to health" - ] - }, - { - "text": "Provide the necessary support to the national unit for combating human trafficking", - "values": [ - "Trafficking" - ] - }, - { - "text": "Consider re-establishing the moratorium on executions with a view to abolishing the death penalty", - "values": [ - "Death penalty" - ] - }, - { - "text": "Comprehensively investigate incidents and allegations of hate crimes and xenophobic attacks and bring their perpetrators to justice", - "values": [ - "Racial discrimination" - ] - }, - { - "text": "Establish an immediate formal moratorium on executions and ratify the Second Optional Protocol to the International Covenant on Civil and Political Rights, aiming at the abolition of the death penalty", - "values": [ - "Death penalty", - "International instruments" - ] - }, - { - "text": "Ensure that measures are in place to fight and eradicate child labour ", - "values": [ - "Labour", - "Rights of the Child" - ] - }, - { - "text": "Secure the human rights of lesbian, gay, bisexual and transgender persons by amending Article 534 of the Lebanese Penal Code and by codifying a protection against the discrimination of lesbian, gay, bisexual and transgender persons into law", - "values": [ - "Sexual Orientation and Gender Identity" - ] - }, - { - "text": "Consider ratifying, as soon as possible, fundamental international human rights instruments and their optional protocols to which Samoa is not yet a party ", - "values": [ - "International instruments" - ] - }, - { - "text": "Take further action to ensure that children who have been subjected to sexual exploitation are treated as victims and that the perpetrators are brought to justice ", - "values": [ - "Rights of the Child" - ] - }, - { - "text": "That CEDAW be incorporated into domestic law and that efforts are also directed towards the need for the passing of all other pending bills that affect the women in Malawi ", - "values": [ - "International instruments", - "Women's rights" - ] - }, - { - "text": "Request technical assistance and cooperation, as deemed appropriate, from the international community, including relevant United Nations and specialized agencies, with a view to ensuring the promotion and protection of the full spectrum of human rights of its people ", - "values": [ - "Technical assistance and cooperation" - ] - }, - { - "text": "Continue the good work in addressing the phenomenon of human trafficking", - "values": [ - "Trafficking" - ] - }, - { - "text": "Reform the judicial system.", - "values": [ - "Justice" - ] - }, - { - "text": "Seek technical assistance through the relevant mechanisms of the United Nations ", - "values": [ - "Technical assistance and cooperation" - ] - }, - { - "text": "Continue with the measures taken to improve the situation of migrants, particularly with a view to reducing the discrimination that they suffer from", - "values": [ - "Migrants", - "Racial discrimination" - ] - }, - { - "text": "Speed up the procedure to adopt the law against the high rate of pregnancy among adolescent girls", - "values": [ - "Right to health", - "Rights of the Child" - ] - }, - { - "text": "Adopt comprehensive measures on the protection of women against any form of public or domestic violence and the implementation of a national policy to protect women at risk and to bring perpetrators to justice, as well as adopt measures for the protection of human rights defenders and journalists", - "values": [ - "Freedom of the press", - "Human rights defenders", - "Women's rights" - ] - }, - { - "text": "Consider ratifying core international human rights treaties to which Singapore is not yet a party (ICCPR, the International Covenant on Economic, Social and Cultural Rights (ICESCR), ICERD), the Optional Protocol to the Convention on the Elimination of All Forms of Discrimination against Women (CEDAW), OP-CRC-SC, and CRPD with its Optional Protocol ", - "values": [ - "International instruments" - ] - }, - { - "text": "Continue to strengthen its programs to enhance tolerance and multiculturalism, with an aim to eliminate negative perceptions that could lead to discrimination or violence, particularly for women and children", - "values": [ - "Rights of the Child", - "Women's rights" - ] - }, - { - "text": "Investigate all allegations of torture and ill-treatment in prisons and places of detention and prosecute persons responsible", - "values": [ - "Detention", - "Torture and other CID treatment" - ] - }, - { - "text": "Adopt a roadmap for the ratification of the International Convention for the Protection of All Persons from Enforced Disappearance", - "values": [ - "Enforced disappearances", - "International instruments" - ] - }, - { - "text": "Adopt practical measures to ensure absolute prohibition of violence against women and cruel treatment of children ", - "values": [ - "Rights of the Child", - "Women's rights" - ] - }, - { - "text": "Take further measures to protect the environment and human health in the context of ensuring effective ways of sustainable development", - "values": [ - "Development", - "Environment", - "Right to health" - ] - }, - { - "text": "Adopt and implement an effective legal framework and undertake appropriate public awareness campaigns to eliminate discrimination against women", - "values": [ - "Human rights education and training", - "Women's rights" - ] - }, - { - "text": "Continue the efforts in favour of the promotion of the rights of women and children, and in the area of the fight against discrimination", - "values": [ - "Rights of the Child", - "Women's rights" - ] - }, - { - "text": "Continue to implement the National Gender Equality and Women's Development Policy, particularly the chapter on violence against women ", - "values": [ - "Women's rights" - ] - }, - { - "text": "Implement the recently adopted United Nations Rules for the Treatment of Women Prisoners and Non-custodial Measures for Women Offenders (the Bangkok Rules) to improve the treatment of female offenders and seek appropriate assistance for its implementation from relevant United Nations agencies", - "values": [ - "Detention", - "Technical assistance and cooperation", - "Women's rights" - ] - }, - { - "text": "Allocate more funds for training of health care staff, including doctors, midwives, nurses, and social workers", - "values": [ - "Right to health" - ] - }, - { - "text": "Carry out investigations into the recent dismissal of three judges and one magistrate so that, if it is appropriate, they are reinstated, and adopt measures to ensure the immovability of members of the judiciary", - "values": [ - "Justice" - ] - }, - { - "text": "Ensure that journalists, human rights defenders and other members of civil society can seek, receive and impart information and carry out their legitimate peaceful activities without hindrance, intimidation, harassment or pressure", - "values": [ - "Civil society", - "Freedom of opinion and expression", - "Freedom of the press", - "Human rights defenders" - ] - }, - { - "text": "Consider the abolition of death penalty and to consider ratifying the Second Optional Protocol to the International Covenant on Civil and Political Rights aiming at the abolition of the death penalty.", - "values": [ - "Death penalty", - "International instruments" - ] - }, - { - "text": "Continue to strengthen oversight of its Technical Intern Training Programme to ensure migrant workers participating in the programme receive full protection and support commensurate with the Government of Japan\u2019s international obligations", - "values": [ - "International instruments", - "Labour", - "Migrants" - ] - }, - { - "text": "Share its experiences in strengthening its judiciary system", - "values": [ - "Justice" - ] - }, - { - "text": "Assign sufficient resources for the implementation of the national gender equality policy, and review judicial procedures to ensure women and girls victims of domestic violence can have access to justice, by providing training to police and judicial staff in order for them to be treated with dignity", - "values": [ - "Human rights education and training", - "Rights of the Child", - "Women's rights" - ] - }, - { - "text": "As recommended by CEDAW, that a definition on discrimination against women in compliance with article 1 of CEDAW be adopted.", - "values": [ - "International instruments", - "Treaty bodies", - "Women's rights" - ] - }, - { - "text": "Ensure that no one is executed for a crime that he/she would have committed when he/she was under the age of 18 years, and commute death sentences already pronounced against minors to appropriate alternative sentences ", - "values": [ - "Death penalty", - "Rights of the Child" - ] - }, - { - "text": "Give more emphasis to the education sector to gradually transform to a quality and advanced education system since education is a vital tool for national development \n\n", - "values": [ - "Right to education" - ] - }, - { - "text": "Continue its efforts to implement the adopted Strategies to eliminate any remaining gender-based discrimination", - "values": [ - "Women's rights" - ] - }, - { - "text": "Step up awareness-raising campaigns on effective methods to combat and fight AIDS", - "values": [ - "HIV - Aids" - ] - }, - { - "text": "Establish a national programme of human rights education and training and call for necessary international assistance in this regard.", - "values": [ - "Human rights education and training" - ] - }, - { - "text": "Guarantee, respect and promote freedom of opinion and expression for all", - "values": [ - "Freedom of opinion and expression" - ] - }, - { - "text": "Consider the possibility of eventual ICRMW ratification.", - "values": [ - "International instruments", - "Labour", - "Migrants" - ] - }, - { - "text": "Strengthen further legislative and institutional mechanisms to combat all forms of exploitation and violation of women's and children's rights", - "values": [ - "Rights of the Child", - "Women's rights" - ] - }, - { - "text": "Intensify its efforts in relation to children\u2019s rights, including, in particular, in the Caribbean countries forming part of the State, including to prohibit corporal punishment in all settings, to develop and implement public awareness programmes, to reduce the rate of children dropping out of school, to intensify efforts to eradicate child labour, to raise the minimum age of recruitment in the military to 18 years and to ratify the Optional Protocol to the Convention on the Rights of the Child on a communications procedure without reservations", - "values": [ - "Human rights education and training", - "International instruments", - "Labour", - "Right to education", - "Rights of the Child", - "Torture and other CID treatment" - ] - }, - { - "text": "Consider ratifying outstanding major human rights instruments such as the CAT, the International Convention for the Protection of all Persons against Enforced Disappearances, the International Convention on the rights of Persons with Disabilities and the Optional Protocols to CEDAW, ICCPR, ICESCR and CRC ", - "values": [ - "International instruments" - ] - }, - { - "text": "Ensure compliance of the National Commission of Human Rights and Freedoms with the Paris Principles ", - "values": [ - "National Human Rights Institution" - ] - }, - { - "text": "Establish a general coordinated strategy on gender issues within all the public institutions", - "values": [ - "Women's rights" - ] - }, - { - "text": "Enforce legislation banning discrimination against Roma community ", - "values": [ - "Minorities", - "Racial discrimination" - ] - }, - { - "text": "Put into practice active policies to allow an increase in the representation of women in elected and decision-making positions, in particular in the public administration.", - "values": [ - "Women's rights" - ] - }, - { - "text": "Find appropriate ways to provide adequate compensation to Maori, in particular for their loss of land.", - "values": [ - "Indigenous peoples" - ] - }, - { - "text": "Ensure that incidents of police abuse of detainees, including cases of abuse directed at immigrants, asylum-seekers and other foreign nationals, are prevented by strengthening legislation to protect the rights of arrested and detained individuals from physical mistreatment and ensuring that they are afforded a full complement of due process rights in accordance with its obligations under the International Covenant on Civil and Political Rights ", - "values": [ - "Asylum-seekers - refugees", - "Human rights violations by state agents", - "International instruments", - "Migrants" - ] - }, - { - "text": "Prioritize the implementation of a comprehensive approach to combat all forms of violence against women, in line with what the Committee on the Elimination of Discrimination against Women recommended ", - "values": [ - "Treaty bodies", - "Women's rights" - ] - }, - { - "text": "Maintain its efforts in upholding national dialogue that would bring the country to a lasting peace, as well as its commitment to continue guaranteeing full exercise of human rights to all its citizens", - "values": [ - "Justice" - ] - }, - { - "text": "Italy abides by its commitment towards the implementation of the constitutional principle of the right to freedom of opinion and expression, including in the press and media sectors, by ensuring pluralism, the widest variety of information and views, including by national, regional and local newspapers, magazines, radio and TV channels, web-based information, and more generally the independence of the media.", - "values": [ - "Freedom of opinion and expression", - "Freedom of the press" - ] - }, - { - "text": "Continue to strengthen normative frameworks for the protection of children from violence and abuse, and develop awareness-raising programmes aimed at educating the public about the harmful effects of corporal punishment and enhancing the capacities of educators and the media to promote good practices and more positive methods of child-rearing", - "values": [ - "Human rights education and training", - "Rights of the Child", - "Torture and other CID treatment" - ] - }, - { - "text": "Strengthen its child protection system by enhancing its efforts to end or limit the institutionalization of children under 3 years of age", - "values": [ - "Rights of the Child" - ] - }, - { - "text": "Develop and implement a plan to reduce overcrowding and improve conditions of detention in the prison system, including by exploring alternatives to preventive detention", - "values": [ - "Detention" - ] - }, - { - "text": "Put a vetting process in place in the Congolese security forces, based on the past record of its members, with the aim of preventing the recruitment of individuals who have committed human rights violations. ", - "values": [ - "Human rights violations by state agents" - ] - }, - { - "text": "Renew the national equality plan, bearing in mind recommendations that have been made to the country in this area ", - "values": [ - "Women's rights" - ] - }, - { - "text": "Deepen measures to ensure the fight against impunity for perpetrators of acts of violence and of all human rights violations", - "values": [ - "Impunity" - ] - }, - { - "text": "Continue adopting measures to facilitate hiring women in labour sectors that have traditionally been exclusively for men, including the armed forces", - "values": [ - "Women's rights" - ] - }, - { - "text": "Expand social security coverage and ensure equal access for ethnic minorities", - "values": [ - "Minorities" - ] - }, - { - "text": "Take all necessary measures towards rigorous implementation of all legislation on gender equality", - "values": [ - "Women's rights" - ] - }, - { - "text": "Ensure an inclusive dialogue with all Nepalese minority groups", - "values": [ - "Minorities" - ] - }, - { - "text": "Take appropriate measures to improve inclusion and social diversity, by conducting public campaigns on racism and xenophobia and include awareness-raising and education in the field of human rights in the curriculum of public schools", - "values": [ - "Human rights education and training" - ] - }, - { - "text": "Continue to pay special attention to issues related to the elimination of discrimination of the Roma who study in the education system", - "values": [ - "Minorities", - "Right to education" - ] - }, - { - "text": "Modify the penal code to legally prohibit all forms of FGM. Complement punitive measures with awareness-raising and educational activities. Consider developing an action plan to intensify efforts for the eradication of FGM", - "values": [ - "Human rights education and training", - "Rights of the Child", - "Torture and other CID treatment", - "Women's rights" - ] - }, - { - "text": "Enact into law the proposed Law on Combating and Preventing Discrimination", - "values": [ - "Other" - ] - }, - { - "text": "Ratify the Rome Statute of the International Criminal Court which it signed in 2000", - "values": [ - "International instruments", - "Justice" - ] - }, - { - "text": "Continue implementing the National Strategy to Eradicate Poverty and continue with its actions aimed at improving the health care coverage", - "values": [ - "Poverty", - "Right to health" - ] - }, - { - "text": "Take measures to ensure the full incorporation of the provisions of the Convention on the Rights of the Child in Swedish legislation", - "values": [ - "International instruments", - "Rights of the Child" - ] - }, - { - "text": "Put more emphasis on employment, especially on reducing the unemployment rate of young people", - "values": [ - "Development" - ] - }, - { - "text": "Accede to the International Convention for the Protection of All Persons from Enforced Disappearance as soon as possible", - "values": [ - "Enforced disappearances", - "International instruments" - ] - }, - { - "text": "Investigate and prosecute all allegations and incidents of acts of violence against women and girls, including domestic violence. Implement targeted training for law enforcement, and engage with community leaders in the development of public education campaigns ", - "values": [ - "Human rights education and training", - "Rights of the Child", - "Women's rights" - ] - }, - { - "text": "Strengthen the right to freedom of expression and peaceful assembly", - "values": [ - "Freedom of association and peaceful assembly", - "Freedom of opinion and expression" - ] - }, - { - "text": "Continue its efforts in order to combat discrimination against women and end all forms of discrimination and violence against women, including domestic violence", - "values": [ - "Rights of the Child", - "Women's rights" - ] - }, - { - "text": "Prioritise the establishment of a national human rights institution, in line with the Paris Principles and ensure the allocation of necessary human and financial resources to this institution", - "values": [ - "National Human Rights Institution" - ] - }, - { - "text": "Ensure that Decree 72, concerning the management, provision and use of Internet services and information online, is implemented in a manner that does not limit individuals' rights to voice their opinions online ", - "values": [ - "Freedom of opinion and expression" - ] - }, - { - "text": "Continue to seek international assistance in order to enhance the capacity to protect human rights in the country ", - "values": [ - "Technical assistance and cooperation" - ] - }, - { - "text": "Implement urgent measures to guarantee birth registration for all children born on its territory", - "values": [ - "Rights of the Child", - "Statelessness and the right to nationality" - ] - }, - { - "text": "Improve the family law in order to develop the rights of women", - "values": [ - "Women's rights" - ] - }, - { - "text": "Take the necessary measures to combat violence against women and discrimination in employment", - "values": [ - "Labour", - "Women's rights" - ] - }, - { - "text": "Strengthen and further develop measures to ensure that all children born within the national territory are registered ", - "values": [ - "Rights of the Child" - ] - }, - { - "text": "Continue to implement its efforts to enhance the protection of children and improve their well-being ", - "values": [ - "Rights of the Child" - ] - }, - { - "text": "Adopt and implement appropriate and efficient measures to address the high incidence of sexual violence against women and girls, including addressing the reported widespread impunity of perpetrators ", - "values": [ - "Impunity", - "Rights of the Child", - "Women's rights" - ] - }, - { - "text": "Improve the conditions in prisons, try all persons held in preventive detention within a reasonable period of time and ensure that juveniles are not held in pre-trial detention ", - "values": [ - "Detention", - "Rights of the Child" - ] - }, - { - "text": "Thailand will withdraw its reservation to article 16 of the Convention on the Elimination of All Forms of Discrimination against Women. It will also withdraw the interpretative declarations to articles 6 and 9 of the International Covenant on Civil and Political Rights and article 18 of the Convention on the Rights of Persons with Disabilities", - "values": [ - "CP rights - general", - "Disabilities", - "International instruments", - "Women's rights" - ] - }, - { - "text": "Regulate and implement the law on access to public information", - "values": [ - "Freedom of opinion and expression" - ] - }, - { - "text": "Consider improving the conditions of detention centres in the country, particularly the Regional Processing Centre, in line with the Standard Minimum Rules for the Treatment of Prisoners", - "values": [ - "Detention" - ] - }, - { - "text": "Further promote tolerance and dialogue between different ethnic and religious groups ", - "values": [ - "Freedom of religion and belief", - "Minorities" - ] - }, - { - "text": "Set up a specialized body on penitentiary administration", - "values": [ - "Detention" - ] - }, - { - "text": "Adhere to the Optional Protocol to the Convention Against Torture", - "values": [ - "Detention", - "International instruments", - "Torture and other CID treatment" - ] - }, - { - "text": "Take urgent steps to bring the Suppression of Terrorism Act 2008 in line with the Constitution", - "values": [ - "Counter-terrorism" - ] - }, - { - "text": "Sign and-or ratify the Second Optional Protocol to ICCPR", - "values": [ - "CP rights - general", - "International instruments" - ] - }, - { - "text": "Issue a standing invitation to all special procedures of the Human Rights Council", - "values": [ - "Special procedures" - ] - }, - { - "text": "Implement strategies aimed at tackling hate speech and xenophobia in all its forms", - "values": [ - "Racial discrimination" - ] - }, - { - "text": "Take immediate steps toward the adoption of the freedom of information Bill, building on its efforts to improve good governance, accountability and transparency", - "values": [ - "Freedom of opinion and expression", - "Justice" - ] - }, - { - "text": "Improve the capacity and training of the security forces in the area of human rights and moderate use of force, both in their response to peaceful protests and in places of detention", - "values": [ - "Human rights education and training" - ] - }, - { - "text": "Pursue its efforts aiming to ensure food security and reaching the MDGs and formulate its specific international cooperation and technical assistance requests to this end ", - "values": [ - "Development", - "Right to food", - "Technical assistance and cooperation" - ] - }, - { - "text": "Strengthen policies on the rights of the child, with attention to the Guidelines for the Alternative Care of Children, according to Human Rights Council resolution 11-7 and General Assembly resolution 64-142", - "values": [ - "Rights of the Child" - ] - }, - { - "text": "Repeal the provisions in the revision of the Penal Code which criminalize defamation of political or religious entities and align its legislation on freedom of expression with international standards in this field", - "values": [ - "Freedom of opinion and expression", - "Freedom of religion and belief" - ] - }, - { - "text": "Ratify the International Convention on the Elimination of All Forms of Racial Discrimination and consider ratifying the International Covenant on Economic, Social and Cultural Rights", - "values": [ - "ESC rights - general", - "International instruments", - "Racial discrimination" - ] - }, - { - "text": "Take measures to guarantee the right to equal education for Roma children ", - "values": [ - "Minorities", - "Right to education" - ] - }, - { - "text": "Adopt legislation prohibiting corporal punishment of children in all settings", - "values": [ - "Rights of the Child", - "Torture and other CID treatment" - ] - }, - { - "text": "Continue its efforts to ensure that women have the fullest access to education", - "values": [ - "Right to education", - "Women's rights" - ] - }, - { - "text": "Allow more freedom of movement of the people and foreigners in the country as a way to generate economic activities ", - "values": [ - "Freedom of movement" - ] - }, - { - "text": "Continue the establishment of development programmes, especially in rural areas", - "values": [ - "Development" - ] - }, - { - "text": "Ratify the International Convention for the Protection of All Persons from Enforced Disappearance, and the Convention on the Rights of Persons with Disabilities and its Optional Protocol ", - "values": [ - "Disabilities", - "Enforced disappearances", - "International instruments" - ] - }, - { - "text": "Attain the human rights goals set by the Human Rights Council in its resolution 9-12.", - "values": [ - "General" - ] - }, - { - "text": "Take all possible measures to protect the rights of expatriate workers, particularly the means for legal redresses", - "values": [ - "Labour", - "Migrants" - ] - }, - { - "text": "Undertake proactive policies to promote the rights of individuals, especially with regard to their sexual orientation and HIV/AIDS status ", - "values": [ - "HIV - Aids", - "Sexual Orientation and Gender Identity" - ] - }, - { - "text": "Consider establishing an independent complaint mechanism specifically devoted to allegations of torture and ill-treatment committed by law enforcement, security, military and prison officials ", - "values": [ - "Detention", - "Human rights violations by state agents", - "Torture and other CID treatment" - ] - }, - { - "text": "Take further measures aimed at achieving equal remuneration for men and women for the same work", - "values": [ - "Women's rights" - ] - }, - { - "text": "Take measures to reduce prison overcrowding in the country, particularly in the Champ-Dollon prison, and ensure that no one is detained preventively beyond 48 hours", - "values": [ - "Detention" - ] - }, - { - "text": "Continue efforts to reduce unemployment rates among youths, including by strengthening vocational training programmes", - "values": [ - "Development" - ] - }, - { - "text": "Reform the 1980 law on publications and all other related laws to take into account the evolution of freedom of expression and opinion.", - "values": [ - "Freedom of opinion and expression" - ] - }, - { - "text": "Review convictions, commute sentences, or drop charges for all persons imprisoned solely for non-violent political expression", - "values": [ - "CP rights - general", - "Detention", - "Freedom of association and peaceful assembly", - "Freedom of opinion and expression" - ] - }, - { - "text": "Continue the development of specific legislation to promote and protect the rights of the child, including civil society participation, preventive measures in education and reinsertion into society of minors in difficult situations", - "values": [ - "Civil society", - "Rights of the Child" - ] - }, - { - "text": "Commit to ensure full compliance with Rule 62 of the Code of Criminal Procedure: "Public action is extinguished by res judicata" to prohibit any possibility that an individual is tried several times for the same offense ", - "values": [ - "Justice" - ] - }, - { - "text": "Reinstate a moratorium on executions", - "values": [ - "Death penalty" - ] - }, - { - "text": "Issue a standing invitation to all special procedures' mandate holders ", - "values": [ - "Special procedures" - ] - }, - { - "text": "Continue to promote good governance", - "values": [ - "Justice" - ] - }, - { - "text": "Continue to enact measures to ensure girls' right to education, namely the reinforcement of security, hiring of more female teachers and improvement of schooling facilities ", - "values": [ - "Right to education", - "Rights of the Child", - "Women's rights" - ] - }, - { - "text": "Ratify the Rome Statute of the ICC and extend an open invitation to the special procedures ", - "values": [ - "International instruments", - "Justice", - "Special procedures" - ] - }, - { - "text": "Ratify the United Nations Convention against Corruption.", - "values": [ - "Corruption", - "International instruments" - ] - }, - { - "text": "Make the Office of Missing Persons fully operational, inter alia by appointing well-qualified independent commissioners and allocating sufficient funds", - "values": [] - }, - { - "text": "Empower women and effectively address discrimination in employment by installing a paid paternity leave of adequate length that is non-transferable and follows directly after maternity leave", - "values": [ - "Women's rights" - ] - }, - { - "text": "Pass a law to criminalize all forms of human trafficking and ratify the Protocol to Prevent Suppress and Punish Trafficking in Persons, Especially Women and Children, supplementing the United Nations Convention against Transnational Organized Crime ", - "values": [ - "International instruments", - "Trafficking" - ] - }, - { - "text": "Consider developing human rights indicators according to the OHCHR framework, as an instrument that would allow for a more precise and coherent evaluation of its national human rights policies", - "values": [ - "Other" - ] - }, - { - "text": "Improve access to education for marginalized groups in order to improve social and economic conditions for them. One group that may benefit from this are the Harratin", - "values": [ - "ESC rights - general", - "Minorities", - "Right to education" - ] - }, - { - "text": "Continue its development assistance to the developing countries for better realization of socio-economic rights as part of a globally inclusive and sustainable development agenda", - "values": [ - "Development" - ] - }, - { - "text": "Implement effectively the National Action Plan for migrants and protect the rights and interests of migrants without prejudice to their status, and minorities including Muslims and Roma population", - "values": [ - "Freedom of religion and belief", - "Migrants", - "Minorities" - ] - }, - { - "text": "Continue to strengthen its social plans and programmes in particular in the area of employment, health and food to ensure the best possible well-being of its people with a special emphasis on the most excluded sectors of the population", - "values": [ - "Development", - "Right to food", - "Right to health" - ] - }, - { - "text": "Continue concerted efforts at the international level for the prevention of genocide", - "values": [ - "Justice" - ] - }, - { - "text": "Consider changes in legislation and practice in order to ensure that individuals who express conscientious objection to compulsory military service on the grounds of freedom of thought, conscience, disability, and/or religion do not face harassment or prosecution, and that they have the opportunity to perform civilian service of equal length to the one of military service", - "values": [ - "Freedom of religion and belief" - ] - }, - { - "text": "Pay attention to prevention and protection measures that address the particular vulnerability of children to trafficking", - "values": [ - "Rights of the Child", - "Trafficking" - ] - }, - { - "text": "Parties involved in the armed conflict, respect civilians and the rules of international humanitarian law, and human rights", - "values": [ - "International humanitarian law" - ] - }, - { - "text": "Ratify the Rome Statute of the International Criminal Court to ensure accountability for, prevention of, and justice for the victims of human rights violations, and fully cooperate with the International Criminal Court", - "values": [ - "International instruments", - "Justice" - ] - }, - { - "text": "Strengthen efforts to fulfil its obligations under the Convention on Elimination of Discrimination against Women, including by adopting and implementing legislation prohibiting female genital mutilation ", - "values": [ - "International instruments", - "Rights of the Child", - "Torture and other CID treatment", - "Women's rights" - ] - }, - { - "text": "Put in place concrete measures to facilitate birth registration by extending the free registration deadline and through multiplication of awareness-raising activities thereon", - "values": [ - "Rights of the Child", - "Statelessness and the right to nationality" - ] - }, - { - "text": "Accede to the International Convention on the Prevention and Punishment of the Crime of Genocide", - "values": [ - "International instruments", - "Justice" - ] - }, - { - "text": "Reinforce the procedural guarantees in the anti-terrorist legislation and ensure that measures provided for by the law are applied in strict accordance with international human rights obligations", - "values": [ - "Counter-terrorism", - "International instruments" - ] - }, - { - "text": "Intensify efforts to eliminate all forms of discrimination against women, inter alia through advocating and promoting women's empowerment, capacity building, gender sensitivity training and public awareness-raising activities", - "values": [ - "Human rights education and training", - "Women's rights" - ] - }, - { - "text": "Provide the commission on gender equality with the necessary infrastructure and budget to carry out its important work, in particular to reduce the pay gap between women and men", - "values": [ - "Women's rights" - ] - }, - { - "text": "Ratify the Optional Protocol to the Convention against Torture with a view to establishing a national preventive mechanism against torture", - "values": [ - "Detention", - "International instruments", - "Torture and other CID treatment", - "Treaty bodies" - ] - }, - { - "text": "Amend legal provisions to guarantee equality between men and women, prevent violence against women, prevent threats to the safety and integrity of persons deprived of their liberty, guarantee non-discrimination on grounds of religion, belief and ethnicity, also for foreign workers, and to achieve effective implementation of these provisions ", - "values": [ - "Freedom of religion and belief", - "Migrants", - "Racial discrimination", - "Women's rights" - ] - }, - { - "text": "Revise the Penal Code in order to bring it into line with international standards and Cambodia's obligations under the International Covenant on Civil and Political Rights ", - "values": [ - "International instruments", - "Justice" - ] - }, - { - "text": "Consider establishing a moratorium on all executions of death penalty, with a view to its abolition", - "values": [ - "Death penalty" - ] - }, - { - "text": "Take further legislative and other steps to enhance women's rights and consider accession by Kuwait to the Optional Protocol to CEDAW (OP-CEDAW) as well as the withdrawal of its reservations to CEDAW ", - "values": [ - "International instruments", - "Women's rights" - ] - }, - { - "text": "Adopt and implement appropriate measures to address the sexual abuse and exploitation of children as well as child labour", - "values": [ - "Labour", - "Rights of the Child" - ] - }, - { - "text": "Continue to adopt the necessary measures for the school enrolment of migrants' children to be mandatory in all federal states in accordance with national legislation and local commitments ", - "values": [ - "Migrants", - "Right to education", - "Rights of the Child" - ] - }, - { - "text": "Create an independent national human rights institution in conformity with the Paris Principles ", - "values": [ - "National Human Rights Institution" - ] - }, - { - "text": "Improve conditions in detention centres and avoid overcrowding, as well as the detention of migrants", - "values": [ - "Detention", - "Migrants" - ] - }, - { - "text": "Request development assistance to achieve the Millennium Development Goals ", - "values": [ - "Development", - "Technical assistance and cooperation" - ] - }, - { - "text": "Guarantee the free exercise of the right to demonstrate, recognized in section 59 of the 2013 Constitution", - "values": [ - "Freedom of association and peaceful assembly" - ] - }, - { - "text": "Consider an early ratification of ICCPR, ICERD and ICESCR ", - "values": [ - "CP rights - general", - "ESC rights - general", - "International instruments", - "Racial discrimination" - ] - }, - { - "text": "Develop the measures in the area of combating human trafficking and this includes by expanding regional and international cooperation", - "values": [ - "Technical assistance and cooperation", - "Trafficking" - ] - }, - { - "text": "Abolish child marriage by having a minimum age of marriage at 18", - "values": [ - "Rights of the Child" - ] - }, - { - "text": "Train police forces, border control agents, judges, lawyers and other relevant authorities to raise awareness on human trafficking and the rights of the victims, ensure that those responsible for the trafficking are investigated and prosecuted and ensure that the victims receive the adequate protection, reparation and compensation ", - "values": [ - "Human rights education and training", - "Trafficking" - ] - }, - { - "text": "Intensify its efforts towards poverty reduction and sustainable development", - "values": [ - "Development", - "Poverty" - ] - }, - { - "text": "Mandate the Office of the Ombudsman or another entity to receive and address complaints by women about discrimination", - "values": [ - "National Human Rights Institution", - "Women's rights" - ] - }, - { - "text": "Develop programs to prevent discrimination based on sexual orientation and gender identity, to punish violence of this kind and ensure that victims receive appropriate support ", - "values": [ - "Sexual Orientation and Gender Identity" - ] - }, - { - "text": "Establish an effective and independent mechanism for investigating complaints against law enforcement officials, increasing public trust that suspected abuses will be properly investigated", - "values": [ - "Human rights violations by state agents" - ] - }, - { - "text": "Take further measures to combat poverty of elderly women, single mothers with children and women with disabilities", - "values": [ - "Disabilities", - "Poverty", - "Rights of the Child", - "Women's rights" - ] - }, - { - "text": "Further strengthen measures to combat hate speech and hate crime", - "values": [ - "Racial discrimination" - ] - }, - { - "text": "Implement effectively the new legal framework to guarantee women a life free from violence, providing all necessary resources to implement programmes for the attention of victims and to undertake training activities on violence and discrimination against women", - "values": [ - "Human rights education and training", - "Women's rights" - ] - }, - { - "text": "Establish a body (ombudsman, commissioner or the like) as a prominent institution to protect the rights of minorities and immigrants", - "values": [ - "Migrants", - "Minorities" - ] - }, - { - "text": "Continue to implement the comments and recommendations of the Committee on the Elimination of Discrimination Against Women and the Committee on the Rights of the Child", - "values": [ - "Rights of the Child", - "Treaty bodies", - "Women's rights" - ] - }, - { - "text": "Accelerate the modernization programme of the religious schools", - "values": [ - "Freedom of religion and belief", - "Right to education" - ] - }, - { - "text": "Take all adequate measures to guarantee the protection and promotion of religious freedom, including by adopting legislation with regard to the recognition of churches and the property rights of religious communities.", - "values": [ - "Freedom of religion and belief" - ] - }, - { - "text": "Prevent torture and ill-treatment in places of detention", - "values": [ - "Detention", - "Torture and other CID treatment" - ] - }, - { - "text": "Urgently take all possible measures to reduce the growth in crime and to establish and implement a clear policy of crime prevention, including reforms of the judiciary and the national police to combat corruption and achieve greater transparency", - "values": [ - "Corruption", - "Public security" - ] - }, - { - "text": "Continue its efforts to guarantee free education at the primary level for all children, giving special attention to minority groups.", - "values": [ - "Minorities", - "Right to education", - "Rights of the Child" - ] - }, - { - "text": "Envisage the creation of a national human rights institution in conformity with the Paris Principles", - "values": [ - "National Human Rights Institution" - ] - }, - { - "text": "Accelerate its efforts towards the adoption of anti-discrimination and children's rights laws ", - "values": [ - "Rights of the Child" - ] - }, - { - "text": "Acceded to the Arms Trade Treaty and sign the Treaty on the Prohibition of Nuclear Weapons", - "values": [ - "International instruments", - "Public security" - ] - }, - { - "text": "Deepen and extend its social policies in order to eradicate extreme poverty, in particular in the rural area", - "values": [ - "Poverty" - ] - }, - { - "text": "Repeal article 92-6 of the Military Criminal Code which criminalizes consensual sexual relations between people of the same sex in the army", - "values": [ - "Sexual Orientation and Gender Identity" - ] - }, - { - "text": "Seek possible ways to speed up the adoption of the religious harmony bill currently discussed by national lawmakers ", - "values": [ - "Freedom of religion and belief" - ] - }, - { - "text": "Fully implement the Domestic Violence Act and the Sexual Offences Act, in order to improve support and access to justice for survivors of gender-based violence", - "values": [ - "Rights of the Child", - "Women's rights" - ] - }, - { - "text": "Take further steps in the area of promotion and protection of the rights of persons with disabilities, to improve accessibility to services, including for persons with disabilities living in disadvantaged areas", - "values": [ - "Disabilities" - ] - }, - { - "text": "Take all necessary legal and other measures to curb violence against women and to provide support for victims of violence against women, and their children ", - "values": [ - "Rights of the Child", - "Women's rights" - ] - }, - { - "text": "Reform laws that contain discriminatory provisions, in particular against Roma people", - "values": [ - "Minorities", - "Racial discrimination" - ] - }, - { - "text": "Strengthen the protection measures for human rights defenders, taking due account of gender and cultural aspects", - "values": [ - "Human rights defenders", - "Women's rights" - ] - }, - { - "text": "Take the necessary steps to ensure the adoption of new legislation to counteract human trafficking", - "values": [ - "Trafficking" - ] - }, - { - "text": "Provide legislation explicitly prohibiting corporal punishment of children, including in the home, and consider awareness-raising activities to increase public knowledge about the issue", - "values": [ - "Human rights education and training", - "Rights of the Child", - "Torture and other CID treatment" - ] - }, - { - "text": "Establish a programme of incentives for permanence within the education system within the Sectoral Strategy for the Prevention and Eradication of Child Labour", - "values": [ - "Labour", - "Right to education", - "Rights of the Child" - ] - }, - { - "text": "Extend an open standing invitation to all special procedures", - "values": [ - "Special procedures" - ] - }, - { - "text": "Guarantee a vibrant civil society and the independence of NGOs by revising laws affecting their registration and operations", - "values": [ - "Civil society", - "Freedom of association and peaceful assembly" - ] - }, - { - "text": "Establish a national plan to ensure universal access to education", - "values": [ - "Right to education" - ] - }, - { - "text": "Continue cooperating with the Office of the High Commissioner for Human Rights (OHCHR) to ensure the best possible solutions for the full protection of human rights by all the citizens of the country", - "values": [ - "Technical assistance and cooperation" - ] - }, - { - "text": "Continue improving its legal human rights framework by ratifying or acceding to core instruments to which it is not yet party ", - "values": [ - "International instruments" - ] - }, - { - "text": "Ratify the Second Optional Protocol to ICCPR, aiming at the abolition of the death penalty", - "values": [ - "Death penalty", - "International instruments" - ] - }, - { - "text": "Implement measures to promote and protect the rights of peasants and other people working in rural areas", - "values": [ - "Labour" - ] - }, - { - "text": "Redouble effort to achieve the appropriate implementation of the Convention of the Rights of the Child, in particular with regard to full exercise of right to education, and the protection of minors from sexual abuse and exploitation and, above all, to put an end to detention of foreign children in closed detention centres, in accordance with the decision of Minister of Migration Policy and Asylum", - "values": [ - "Detention", - "International instruments", - "Right to education", - "Rights of the Child" - ] - }, - { - "text": "Fully respect the right to freedom of expression, association and peaceful assembly by reviewing the laws, policies and programmes that regulate civil society and by amending or repealing any laws that allow the State to use force against peaceful demonstrators, arbitrarily detain protestors, restrict civil space and arbitrarily shut down the activities of civil society organizations. Such laws include articles 336, 339, 345, 346 of the Comprehensive Criminal Code as well as articles 22, 23, 24 of Presidential Decree No. 739", - "values": [ - "Civil society", - "Freedom of association and peaceful assembly", - "Freedom of opinion and expression", - "Human rights violations by state agents" - ] - }, - { - "text": "Continue to promote the modernization of the country's judicial and administrative systems ", - "values": [ - "Justice" - ] - }, - { - "text": "Ratify the Optional Protocol on the involvement of children in armed conflict", - "values": [ - "International humanitarian law", - "International instruments", - "Rights of the Child" - ] - }, - { - "text": "Establish mechanisms for dialogue and raising awareness amongst the Dominican people, in the area of migration such as public campaigns and social fora of dialogue in the areas of discrimination and racism, labour conditions, access to education and health care ", - "values": [ - "Human rights education and training", - "Migrants" - ] - }, - { - "text": "Raise awareness and disseminate in the civil society the norms contained in the CEDAW, in a language accessible and clear for the local people, through partnership collaboration with the civil society ", - "values": [ - "Civil society", - "Human rights education and training", - "International instruments", - "Women's rights" - ] - }, - { - "text": "Ensure respect, in law and in practice, of the freedom of religion and belief", - "values": [ - "Freedom of religion and belief" - ] - }, - { - "text": "Continue its efforts in the fight against maternal mortality, to facilitate women's access to health, and for the enrollment and retention of girls at school and in vocational training centers", - "values": [ - "Right to education", - "Right to health", - "Rights of the Child", - "Women's rights" - ] - }, - { - "text": "Establish an independent national human rights institution in line with the Paris Principles.", - "values": [ - "National Human Rights Institution" - ] - }, - { - "text": "Consider taking necessary measures to accept individual complaints about violations of rights enshrined in Human Rights treaties and protocols ratified by Japan that foresee such a procedure", - "values": [ - "International instruments" - ] - }, - { - "text": "Respond to the legitimate demands of the Syrian people with a credible process for reform", - "values": [ - "General" - ] - }, - { - "text": "Establish a national plan on human rights ", - "values": [ - "General" - ] - }, - { - "text": "Strengthen the National Human Rights Commission (NHRC) to enable it to maintain its A-status accreditation", - "values": [ - "National Human Rights Institution" - ] - }, - { - "text": "Repeal the constitutional provision making it possible to refuse naturalization on the grounds of physical and/or mental disability", - "values": [ - "Disabilities" - ] - }, - { - "text": "Work towards the establishment of a national human rights institution in accordance with the Paris Principles ", - "values": [ - "National Human Rights Institution" - ] - }, - { - "text": "Seek and avail itself of international cooperation to fully implement national action plans and strategies", - "values": [ - "Technical assistance and cooperation" - ] - }, - { - "text": "Continue to implement its National Strategy for Poverty Eradication and ensure access to quality education for all", - "values": [ - "Poverty", - "Right to education" - ] - }, - { - "text": "Adopt and implement efficient measures to eliminate discrimination on any grounds and against all vulnerable groups, with particular care on indigenous population ", - "values": [ - "Indigenous peoples" - ] - }, - { - "text": "Continue the efforts to promote parity between men and women", - "values": [ - "Women's rights" - ] - }, - { - "text": "Pursue its efforts to fight against violence against children ", - "values": [ - "Rights of the Child" - ] - }, - { - "text": "Revise its Law on the Responsibility of Parents for the Upbringing and Education of Children of 2 August 2011, which contains provisions highly endangering the freedom of religion and the aims of the CRC", - "values": [ - "Freedom of religion and belief", - "International instruments", - "Rights of the Child" - ] - }, - { - "text": "Develop a comprehensive national strategy and adopt a national coordinating framework to ban all corporal punishment against children", - "values": [ - "Rights of the Child", - "Torture and other CID treatment" - ] - }, - { - "text": "Investigate incidents of human trafficking and offer full assistance to child trafficking victims", - "values": [ - "Rights of the Child", - "Trafficking" - ] - }, - { - "text": "Take further steps to eliminate discrimination, racism and xenophobia in the country", - "values": [ - "Racial discrimination" - ] - }, - { - "text": "Ratify and/or accede promptly to, as appropriate, the three Optional Protocol to the Convention on the Rights of the Child", - "values": [ - "International humanitarian law", - "International instruments", - "Labour", - "Rights of the Child", - "Trafficking" - ] - }, - { - "text": "The MSAR [Macao Special Administrative Region] Government pledges to increase its fight against corruption. To this end, the scope and powers of the CAC shall be broadened and reinforced. The CAC's jurisdiction will be extended to the private sector, in order for the MSAR Government and the community to play a bigger part in building a probity culture. Anti-corruption mechanisms for administration and financial management systems related to public resources shall be put in place. Additional efforts shall be undertaken, together with the civil society and NGOs, to further promote a corruption-free society and to maximize the effectiveness of publicity campaigns to build a clean society.", - "values": [ - "Civil society", - "Corruption" - ] - }, - { - "text": "Strengthen its efforts to ensure all violent attacks in the West Bank are investigated, and prosecuted by competent authorities", - "values": [ - "Justice" - ] - }, - { - "text": "The removal of legislation that restricts civil society from receiving international funding, and cease unannounced inspections aimed at intimidating civil society organizations ", - "values": [ - "Civil society", - "Freedom of association and peaceful assembly" - ] - }, - { - "text": "Combat poverty, including through the effective implementation of the Benazir Income Support Programme", - "values": [ - "Poverty" - ] - }, - { - "text": "Harmonize its national legislation with the Rome Statute of the International Criminal Court, including measures of cooperation with the Court and to investigate the crime of genocide, crimes against humanity and war crimes", - "values": [ - "International instruments", - "Justice" - ] - }, - { - "text": "Place greater emphasis on sensitization and gather data disaggregated by age, gender and the relationship between victims and offenders in relation to gender-based violence", - "values": [ - "Women's rights" - ] - }, - { - "text": "Seek contributions from the international community in the Government's efforts to promote rights.", - "values": [ - "Technical assistance and cooperation" - ] - }, - { - "text": "Redouble efforts to put in place an environmental regulatory policy to ensure the implementation of this development of plan", - "values": [ - "Environment" - ] - }, - { - "text": "Pursue efforts to combat xenophobia and to train police officers, prosecutors, judges and future legal professionals in the scope and application of the relevant legal framework ", - "values": [ - "Human rights education and training", - "Racial discrimination" - ] - }, - { - "text": "Refrain from criminalizing the legitimate activities of human rights defenders and repeal or amend all laws and policies which restrict their activities and rights, including by ensuring that anti-terrorism legislation is not misused", - "values": [ - "Counter-terrorism", - "Freedom of association and peaceful assembly", - "Human rights defenders" - ] - }, - { - "text": "Adopt the draft law on the marriage of minors", - "values": [ - "Rights of the Child" - ] - }, - { - "text": "Establish a mechanism to protect the rights of persons with disabilities", - "values": [ - "Disabilities" - ] - }, - { - "text": "Adopt a three-tiered classification of murder that will provide sentencing judges with the discretion to impose a sentence other than death and thereby preclude its mandatory imposition", - "values": [ - "Death penalty" - ] - }, - { - "text": "Implement the UN Rules for the Treatment of Women Prisoners and Non-Custodial Measures for Women Offenders, otherwise known as the "Bangkok Rules" ", - "values": [ - "Detention", - "Women's rights" - ] - }, - { - "text": "Ratify the United Nations Convention against Corruption ", - "values": [ - "Corruption", - "International instruments" - ] - }, - { - "text": "Incorporate the principle of gender equality in its domestic law and prohibit by law discrimination on the grounds of gender and domestic violence", - "values": [ - "Rights of the Child", - "Women's rights" - ] - }, - { - "text": "Ensure the representation of women in the state elective and administrative structures by establishing a minimum quota for women", - "values": [ - "Women's rights" - ] - }, - { - "text": "Continue applying the country's strategies and socioeconomic development plans in order to advance towards the materialization of the Millennium Development Goals", - "values": [ - "Development" - ] - }, - { - "text": "Create a national mechanism for the review of complaints of the populations concerning human rights violations", - "values": [ - "Justice" - ] - }, - { - "text": "Raise awareness among religious leaders, magistrates and different political actors with a view to combat sociocultural factors which run counter to the harmonious development of Guinean society", - "values": [ - "Other" - ] - }, - { - "text": "Commute the sentences of inmates on death row", - "values": [ - "Death penalty" - ] - }, - { - "text": "Take concrete steps towards the abolition of the death penalty", - "values": [ - "Death penalty" - ] - }, - { - "text": "Revise the Constitution, in particular its section 79, and other laws and policies as necessary, in order to allow forming of political parties and facilitate and encourage all forms of citizens' participation in political and public life as guaranteed under the International Covenant on Civil and Political Rights and the International Covenant on Economic, Social and Cultural Rights ", - "values": [ - "Freedom of association and peaceful assembly", - "International instruments" - ] - }, - { - "text": "Make a priority the prevention and punishment of all forms of violence against women", - "values": [ - "Women's rights" - ] - }, - { - "text": "Extend an open and standing invitation to the special procedures of the Human Rights Council of the United Nations so that they can assist Saint Kitts and Nevis in complying with its human rights obligations, especially those regarding the implementation of the recommendations expressly accepted by Saint Kitts and Nevis, both in its first universal periodic review cycle as well as in the current one", - "values": [ - "Special procedures", - "UPR process" - ] - }, - { - "text": "Work to eliminate traditional practices and repeal laws detrimental to women and girls", - "values": [ - "Rights of the Child", - "Torture and other CID treatment", - "Women's rights" - ] - }, - { - "text": "Remove all reservations to the Second Protocol to ICCPR aimed at abolishing the death penalty", - "values": [ - "Death penalty", - "International instruments" - ] - }, - { - "text": "Make every possible effort to proceed with the early conclusion of important international human rights treaties in particular the International Convention for the Protection of All Persons from Enforced Disappearance", - "values": [ - "Enforced disappearances", - "International instruments" - ] - }, - { - "text": "Seek technical assistance from OHCHR in regard to human and material constraints faced ", - "values": [ - "Technical assistance and cooperation" - ] - }, - { - "text": "Consider the possibility of signing and-or ratifying the International Convention for the Protection of all Persons from Enforced Disappearance CED", - "values": [ - "Enforced disappearances", - "International instruments" - ] - }, - { - "text": "Continue its positive efforts to promote human rights", - "values": [ - "General" - ] - }, - { - "text": "Adopt additional measures in order to avoid the crime of incitement to hate and to promote the fight against discrimination and racism ", - "values": [ - "Racial discrimination" - ] - }, - { - "text": "End impunity for trafficking by enforcing provisions in the Criminal Code Amendment of 2013", - "values": [ - "Impunity", - "Trafficking" - ] - }, - { - "text": "Prevent all forms of discrimination and vilification and deliberate negative stereotyping of the Roma community, Muslims and migrants", - "values": [ - "Freedom of religion and belief", - "Migrants", - "Minorities", - "Racial discrimination" - ] - }, - { - "text": "Continue on its path of aligning its national legislation with its international obligations according to the instruments to which it has acceded ", - "values": [ - "International instruments" - ] - }, - { - "text": "Enact a law that protects migrants, refugees and asylum seekers", - "values": [ - "Asylum-seekers - refugees", - "Migrants" - ] - }, - { - "text": "Continue the efforts to combat racism, racial discrimination and xenophobia", - "values": [ - "Racial discrimination" - ] - }, - { - "text": "Armenia reaffirmed its commitment to implement all its obligations towards improving the protection and promotion of human rights in the country. Armenia stands ready to fully cooperate with the Council all UN special procedures, and all actors in the field, as well as at the national or international levels, toward achieving prosperity and full enjoyment of all rights by all the citizens in the country.", - "values": [ - "Special procedures" - ] - }, - { - "text": "Extend a standing invitation to the United Nations human rights special procedures so that they can visit the country and assist the Government with its human rights reforms ", - "values": [ - "Special procedures" - ] - }, - { - "text": "Align the Criminal Code with the International Code of Medical Ethics and that Honduras considers to legalize abortion in case of rape or incest", - "values": [ - "Women's rights" - ] - }, - { - "text": "Establish an effective mechanism for coordinating the implementation of child rights policy among relevant institutions at all levels and bring the juvenile justice system in line with the Convention on the Rights of the Child and other relevant standards ", - "values": [ - "International instruments", - "Justice", - "Rights of the Child" - ] - }, - { - "text": "Further increase inputs in education and further improve school enrolment rate", - "values": [ - "Right to education" - ] - }, - { - "text": "Investigate all allegations of police brutality and torture and prosecute all security force officials accused of harsh treatment ", - "values": [ - "Human rights violations by state agents", - "Torture and other CID treatment" - ] - }, - { - "text": "Take further steps in the field of promotion of economic, social and cultural rights, especially in the sector of education, with a special focus on the enrolment of girls and boys in rural areas", - "values": [ - "ESC rights - general", - "Right to education", - "Rights of the Child" - ] - }, - { - "text": "Use the advantage of its matrilineal society to improve women's access to power, especially in relation to land issues, raise the social standing of women and girls, increase access to safe sanitary facilities and encourage the rearing of confident boys and men", - "values": [ - "Rights of the Child", - "Women's rights" - ] - }, - { - "text": "Combat violence against women by implementing the Istanbul Convention, which entered into force August 1, 2014, and finalize Italy's National Action Plan", - "values": [ - "Women's rights" - ] - }, - { - "text": "Ensure through the Labour Code, as well as in practice, the protection of the rights of all workers in Jordan, regardless of their origin", - "values": [ - "Labour", - "Migrants" - ] - }, - { - "text": "Intensify efforts to recognize and highlight the contribution of women to national economic, social and political development, lift women out of poverty and provide victims of violence against women with adequate protection and recourse to justice", - "values": [ - "Women's rights" - ] - }, - { - "text": "Consider adopting a de jure moratorium in view to abolishing the death penalty", - "values": [ - "Death penalty" - ] - }, - { - "text": "Introduce legislation to ensure assistance and protection for unaccompanied children seeking asylum", - "values": [ - "Asylum-seekers - refugees", - "Rights of the Child" - ] - }, - { - "text": "Allow all international human rights organizations wishing to do so to visit the country ", - "values": [ - "Special procedures" - ] - }, - { - "text": "Take further steps to implement the Strategic Development Plan", - "values": [ - "Development" - ] - }, - { - "text": "Step up the process of ratifying the International Convention on the Protection of the Rights of all Migrant Workers and Members of Their Families", - "values": [ - "International instruments", - "Labour", - "Migrants" - ] - }, - { - "text": "Consider the possibility of ratifying the Convention against Torture and the International Convention for the Protection of All Persons from Enforced Disappearance", - "values": [ - "Enforced disappearances", - "International instruments", - "Torture and other CID treatment" - ] - }, - { - "text": "Take steps to eliminate sexual and gender-based violence and ensure that perpetrators are held responsible and that victims have secure access to justice", - "values": [ - "Rights of the Child", - "Women's rights" - ] - }, - { - "text": "Promote a disaster risk awareness campaign throughout the country", - "values": [ - "Environment" - ] - }, - { - "text": "Double its efforts to eliminate the gender wage gap", - "values": [ - "Women's rights" - ] - }, - { - "text": "Ensure that the judiciary is able to function independently, without any interference, whether direct or indirect, free of any restriction or improper influence and to reinstate judges, magistrates and other judicial officers unlawfully removed in April 2009", - "values": [ - "Justice" - ] - }, - { - "text": "Take effective measures to ensure the Hungarian National Police and the hate-crimes expert net improve the enforcement of laws against hate crimes, including by allocating sufficient resources, undertaking thorough investigations and prosecution, and by providing training for the front-line law enforcement", - "values": [ - "Human rights education and training", - "Racial discrimination" - ] - }, - { - "text": "Continue to take active measures to develop remote mountainous areas in order to reduce the gap between mountainous regions and urban regions ", - "values": [ - "Development" - ] - }, - { - "text": "Continue efforts to advance the status of women in rural areas, including access to basic services, and study the possibility of introducing a gender-based approach in the national budget", - "values": [ - "Women's rights" - ] - }, - { - "text": "Ensure full alignment of its national legislation with all obligations under the Rome Statute of the International Criminal Court ", - "values": [ - "International instruments", - "Justice" - ] - }, - { - "text": "Hold an on-time electoral process in 2016 that is fair, transparent, and inclusive", - "values": [ - "Elections" - ] - }, - { - "text": "Consider extending a standing invitation to all special procedures of the United Nations Human Rights Council", - "values": [ - "Special procedures" - ] - }, - { - "text": "Comply with its commitments to guarantee and strengthen the independence of the judiciary", - "values": [ - "Justice" - ] - }, - { - "text": "Introduce measures to promote the full and active participation of women in public life", - "values": [ - "Women's rights" - ] - }, - { - "text": "Continue to pursue the adoption and implementation of legislative or administrative measures aimed at the promotion and protection of the rights of the child ", - "values": [ - "Rights of the Child" - ] - }, - { - "text": "Move forward in the establishment of a national institution that contributes to the full enjoyment of all rights without discrimination, in accordance with the Paris Principles ", - "values": [ - "National Human Rights Institution" - ] - }, - { - "text": "Ratify the United Nations Declaration on the Rights of Indigenous Peoples", - "values": [ - "Indigenous peoples", - "International instruments" - ] - }, - { - "text": "Continue the efforts to strengthen the socioeconomic capacity of the country to promote development and continue fighting against poverty ", - "values": [ - "Poverty" - ] - }, - { - "text": "Take all necessary measures to tackle prejudicial attitudes and ensure the integration of Roma children in the Czech educational system, including early childhood education and care, as provided for in the amended Schools Act", - "values": [ - "Minorities", - "Racial discrimination", - "Right to education" - ] - }, - { - "text": "Establish and resource an independent police complaints commission to track and investigate complaints, in line with section 128 of Malawi's Police Act", - "values": [ - "Justice" - ] - }, - { - "text": "Undertake an independent investigation into allegations of journalists in all parts of Somalia facing severe threats and intimidations by authorities and armed opposition groups alike ", - "values": [ - "Freedom of the press", - "Human rights violations by state agents" - ] - }, - { - "text": "Accede to the International Convention on the Elimination of All Forms of Racial Discrimination", - "values": [ - "International instruments", - "Racial discrimination" - ] - }, - { - "text": "Fully cooperate with United Nations Human Rights mechanisms", - "values": [ - "Special procedures", - "Treaty bodies" - ] - }, - { - "text": "Strengthen oversight with a view to ending excessive use of force by law enforcement bodies, particularly when it is directed to the racial minorities and bring those responsible for violation of laws to justice", - "values": [ - "Human rights violations by state agents", - "Minorities" - ] - }, - { - "text": "Reiterate its recommendation to abolish the death penalty and to ratify the Optional Protocol to the International Covenant on Civil and Political Rights, and duly eliminate provisions concerning the capital punishment from the national criminal law", - "values": [ - "Death penalty", - "International instruments" - ] - }, - { - "text": "Continue to create just and favourable conditions of work", - "values": [ - "Labour" - ] - }, - { - "text": "Extend its sovereign jurisdiction to the protection of the people of the country and take concrete steps to eliminate all negative forces operating in the eastern part of the country", - "values": [ - "Other" - ] - }, - { - "text": "Ratify ICCPR-OP-2 and provide for the de jure abolition of the death penalty", - "values": [ - "Death penalty", - "International instruments" - ] - }, - { - "text": "Promote other durable solutions than resettlement in third countries for the refugees in eastern Nepal in close cooperation with UNHCR and other relevant international organizations ", - "values": [ - "Asylum-seekers - refugees" - ] - }, - { - "text": "Carry out without further delay an independent, credible investigation into the unexplained disappearance of a human rights defender, Sombath Somphone, which occurred on 15 December 2012 in Vientiane", - "values": [ - "Enforced disappearances" - ] - }, - { - "text": "Ratify the Optional Protocol to the International Covenant on Economic, Social and Cultural Rights (OP-ICESCR), already signed by Guinea-Bissau", - "values": [ - "ESC rights - general", - "International instruments" - ] - }, - { - "text": "Continue this important work related to violence against children by undertaking civic education at all levels of society, especially throughout the educational system and justice system, on the negative effects of violence against children ", - "values": [ - "Human rights education and training", - "Rights of the Child" - ] - }, - { - "text": "Organize awareness campaigns for foreign migrant workers about their social and economic rights and ensure that migrant workers enjoy treatment that is not less favourable than that which applies for nationals, including through labour inspections in sectors where migrant workers are employed", - "values": [ - "ESC rights - general", - "Human rights education and training", - "Labour", - "Migrants" - ] - }, - { - "text": "Remain engaged with the international community in encouraging collective action on the issue of human rights and climate change ", - "values": [ - "Environment" - ] - }, - { - "text": "Adopt a comprehensive human rights action plan", - "values": [ - "General" - ] - }, - { - "text": "Ratify individual complaint mechanisms of United Nations treaty bodies", - "values": [ - "Treaty bodies" - ] - }, - { - "text": "Ensure effective implementation of its poverty alleviation policy as well as consider adopting a comprehensive national strategy to ensure food and nutrition security for its people", - "values": [ - "Poverty", - "Right to food" - ] - }, - { - "text": "Expedite establishment of a national human rights institution in accordance with Paris Principles", - "values": [ - "National Human Rights Institution" - ] - }, - { - "text": "Take concrete measures to abolish self-defence militias, to maintain order through regular security forces and to facilitate the end of forced child recruitment by all armed groups.", - "values": [ - "Public security", - "Rights of the Child" - ] - }, - { - "text": "Consider re-examining its reservations to CRC and CEDAW with a view to withdrawing them", - "values": [ - "International instruments", - "Rights of the Child", - "Statelessness and the right to nationality", - "Women's rights" - ] - }, - { - "text": "Implement the anti-trafficking law by investigating all cases of human trafficking", - "values": [ - "Trafficking" - ] - }, - { - "text": "Review the incommunicado detention regime ", - "values": [ - "Detention" - ] - }, - { - "text": "In line with its ongoing efforts, to continue to strengthen its labour laws and to improve the living and working conditions of foreign workers", - "values": [ - "Labour" - ] - }, - { - "text": "Consider taking more resolute action to prevent and punish perpetrators of racially motivated acts of violence against members of the Roma-Sinti, Muslim, Jewish communities, as well as German nationals of foreign origin and asylum seekers", - "values": [ - "Asylum-seekers - refugees", - "Freedom of religion and belief", - "Minorities", - "Racial discrimination" - ] - }, - { - "text": "Further improve the access of minority groups, specially Roma and, in particular, Roma children and adolescents, to education", - "values": [ - "Minorities", - "Right to education", - "Rights of the Child" - ] - }, - { - "text": "Strengthen instruments to protect human rights which could positively improve social, economic and cultural rights ", - "values": [ - "ESC rights - general" - ] - }, - { - "text": "Establish immediately a moratorium on the death penalty as a first step towards the complete abolition of the capital punishment ", - "values": [ - "Death penalty" - ] - }, - { - "text": "Consider ratification of the Optional Protocol to the Convention against Torture (OP-CAT)", - "values": [ - "Detention", - "International instruments", - "Torture and other CID treatment" - ] - }, - { - "text": "Ensure access to an independent lawyer to all persons deprived of their liberty ", - "values": [ - "Detention" - ] - }, - { - "text": "Reinforce the public institutions responsible for the investigations of crimes and the execution of criminal justice, especially in the area of organized criminal activities involving drug and human trafficking, so as to create a more stable and peaceful social environment", - "values": [ - "Justice", - "Public security", - "Trafficking" - ] - }, - { - "text": "Give full protection to asylum seekers in accordance with international law, and abolish the practice of pushing the boats of asylum seekers back at sea", - "values": [ - "Asylum-seekers - refugees" - ] - }, - { - "text": "Respond to the recommendations of the Ombudsman without ignoring them", - "values": [ - "National Human Rights Institution" - ] - }, - { - "text": "Provide adequate support services to protect victims of domestic and sexual violence", - "values": [ - "Rights of the Child", - "Women's rights" - ] - }, - { - "text": "Adopt effective measures to implement political, economic, social and culture rights of aboriginal communities and minorities, as well as prevent discrimination against them ", - "values": [ - "ESC rights - general", - "Indigenous peoples", - "Minorities", - "Racial discrimination" - ] - }, - { - "text": "Build on the achievements of the National Framework for Protection of Australian children [2009-2020]", - "values": [ - "Rights of the Child" - ] - }, - { - "text": "Consider legislative measures to tackle the question of domestic violence ", - "values": [ - "Rights of the Child", - "Women's rights" - ] - }, - { - "text": "Take essential steps to implement the issues raised and recommendations made by the Truth and Reconciliation Commission", - "values": [ - "Justice" - ] - }, - { - "text": "Continue with action to include human rights education in the school curricula ", - "values": [ - "Human rights education and training" - ] - }, - { - "text": "Continue to raise the level of its public services and further improve the quality and coverage of public services in rural areas", - "values": [ - "Poverty" - ] - }, - { - "text": "Develop a national plan to combat gender violence and allow effective implementation of the national and international legal framework, that also involves training of persons employed in the justice system", - "values": [ - "Human rights education and training", - "Women's rights" - ] - }, - { - "text": "Pursue its commitments in the area of international development aid, especially in the area of health and poverty", - "values": [ - "Development", - "Poverty", - "Right to health" - ] - }, - { - "text": "Bring its domestic legislation into line with the Rome Statute of the International Criminal Court", - "values": [ - "International instruments", - "Justice" - ] - }, - { - "text": "Take proper measures to strengthen and enact the legislative framework aiming at protecting the rights of women and to fully implement CEDAW", - "values": [ - "International instruments", - "Women's rights" - ] - }, - { - "text": "Adopt necessary judicial reforms to increase the system's efficiency, in compliance with international standards ", - "values": [ - "Justice" - ] - }, - { - "text": "Show leadership in human rights issues by protecting all human rights within the country, including those LGBT, and the freedom of movement and expression of human rights defenders, starting by organizing a dialogue between government, civil society and interested individuals, on these and other human rights related issues ", - "values": [ - "Civil society", - "Freedom of movement", - "Freedom of opinion and expression", - "Human rights defenders", - "Sexual Orientation and Gender Identity" - ] - }, - { - "text": "Ratify ICCPR-OP2 without reservations aiming at the abolition of the death penalty ", - "values": [ - "Death penalty", - "International instruments" - ] - }, - { - "text": "Consider ratifying all outstanding international human rights instruments, and update domestic legislation to bring it into line with their provisions ", - "values": [ - "International instruments" - ] - }, - { - "text": "Renew its commitment in favour of a national strategy to fight against racism ", - "values": [ - "Racial discrimination" - ] - }, - { - "text": "Consider the creation of a national register of detained persons.", - "values": [ - "Detention" - ] - }, - { - "text": "Adopt a draft law regulating the labour conditions of domestic workers", - "values": [ - "Labour" - ] - }, - { - "text": "Ensure that victims of domestic violence have access to immediate remedies and protection, and review legislation on residence permits with a view to avoiding the effect that the application of the law might have in practice, forcing women to remain in abusive relationships", - "values": [ - "Rights of the Child", - "Women's rights" - ] - }, - { - "text": "Guarantee respect for the rights and fundamental freedoms of the entire population, especially women and children, and take all necessary measures to ensure the fight against impunity of the perpetrators of crimes, acts of violence and all human rights violations ", - "values": [ - "Impunity", - "Rights of the Child", - "Women's rights" - ] - }, - { - "text": "Pursue efforts to honour its commitments under the international human rights conventions to which it is a party, so as to ensure the protection of these rights ", - "values": [ - "International instruments" - ] - }, - { - "text": "Ratify and accede to the international treaties to which it is not yet a party", - "values": [ - "International instruments" - ] - }, - { - "text": "Accelerate the process of passing into law the various rights-based bills before the National Assembly in order to provide broader scope of protection for vulnerable members of society, especially women, children and the disabled", - "values": [ - "Disabilities", - "Rights of the Child", - "Women's rights" - ] - }, - { - "text": "Redouble efforts aimed at the implementation of legal provisions against domestic and gender violence, with particular attention to raising the awareness and proper training of the police", - "values": [ - "Human rights education and training", - "Rights of the Child", - "Women's rights" - ] - }, - { - "text": "Ratify the Rome Statute of the International Criminal Court", - "values": [ - "International instruments", - "Justice" - ] - }, - { - "text": "Promote Human rights education and trainingof public servants, along with the provision of necessary resources, at all levels. Local government employees, who have the most direct effect on its people, most often lack training in human rights or the resources to meet international standards on human rights", - "values": [ - "Human rights education and training" - ] - }, - { - "text": "Improve its cooperation with treaty bodies", - "values": [ - "Treaty bodies" - ] - }, - { - "text": "Ratify, pursuant to the recommendation of the Committee on Economic, Social and Cultural Rights, the Council of Europe Framework Convention for the Protection of National Minorities ", - "values": [ - "Minorities", - "Treaty bodies" - ] - }, - { - "text": "Review its laws relating to abortion and, more specifically, remove punitive provisions imposed on women who undergo abortion and provide them with access to quality services for the management of complications arising from unsafe abortion ", - "values": [ - "Women's rights" - ] - }, - { - "text": "Improve the implementation of the existing framework in order to ensure the protection of human rights defenders and journalists", - "values": [ - "Freedom of the press", - "Human rights defenders" - ] - }, - { - "text": "Establish an effective mechanism to investigate, sanction and repair in case of abuse of power on the part of the police forces and penitentiary forces, to safeguard personal information of victims and those making a complain, and establish administrative sanctions and penal sanctions for the perpetrators", - "values": [ - "Detention", - "Human rights violations by state agents" - ] - }, - { - "text": "Improve implementation of relevant national standards and legislation pertaining to accessibility for people with disabilities, also on the municipal level", - "values": [ - "Disabilities" - ] - }, - { - "text": "Seek technical assistance from the United Nations as outlined in part 12 of its national report. ", - "values": [ - "Technical assistance and cooperation" - ] - }, - { - "text": "Strengthen measures to prevent and punish racism, discrimination and violence against indigenous peoples and people of African descent and violence against women and girls", - "values": [ - "Indigenous peoples", - "Minorities", - "Racial discrimination", - "Women's rights" - ] - }, - { - "text": "Accede to the Rome Statute of the International Criminal Court and to the Agreement on Privileges and Immunities of the Court ", - "values": [ - "International instruments", - "Justice" - ] - }, - { - "text": "Fully align its national legislation with the CEDAW, including by eliminating all discriminatory provisions from national laws and by supporting its full implementation with practical as well as policy measures ", - "values": [ - "International instruments", - "Women's rights" - ] - }, - { - "text": "Join ILO and accede to its core instruments and extend an open invitation, and without restrictions, to ILO officials to analyze the situation of workers' rights in the country ", - "values": [ - "International instruments", - "Labour" - ] - }, - { - "text": "Continue the improvements within the judicial reform process, including by eliminating political influence on the judiciary", - "values": [ - "Justice" - ] - }, - { - "text": "Continue its efforts to build the necessary capacities for the incorporation of human rights in the democratic reform processes and the application of the Constitution", - "values": [ - "General" - ] - }, - { - "text": "Sign or ratify the following international human rights instruments: the Optional Protocols to the Convention on the Rights of the Child, the Convention relating to the Status of Stateless Persons and the Convention on the Reduction of Statelessness, the Optional Protocol to the Convention on the Rights of Persons with Disabilities, the International Convention on the Protection of the Rights of All Migrant Workers and Members of Their Families, the Convention against Torture and Other Cruel, Inhuman or Degrading Treatment or Punishment, the Convention on the Prevention and Punishment of the Crime of Genocide, the Rome Statute of the International Criminal Court, and the Protocol to Prevent, Suppress and Punish Trafficking in Persons, especially Women and Children ", - "values": [ - "International instruments" - ] - }, - { - "text": "Amend all discriminatory provisions in personal status laws in particular issues related to child custody, inheritance and divorce", - "values": [ - "Rights of the Child", - "Women's rights" - ] - }, - { - "text": "Apply aggravating circumstance in hate-motivated crimes as well as prohibit and criminalize racist organizations, hate speech, incitement to hatred and the dissemination of ideas based on racial superiority and hatred", - "values": [ - "Racial discrimination" - ] - }, - { - "text": "Strengthen the human rights education of the law-enforcement agencies, public servants, especially on the rights of women and children", - "values": [ - "Human rights education and training", - "Rights of the Child", - "Women's rights" - ] - }, - { - "text": "Continue the implementation of comprehensive strategies aimed at the protection of children's rights", - "values": [ - "Rights of the Child" - ] - }, - { - "text": "The Government is committed to the establishment of an institutional and legislative framework for the provision of affordable legal aid and awareness services for all. ", - "values": [ - "Justice" - ] - }, - { - "text": "Ratify the Convention on the Rights of Persons with Disabilities and the optional protocol thereto.", - "values": [ - "Disabilities", - "International instruments" - ] - }, - { - "text": "It must be noted that, the Government of the Republic of Azerbaijan is committed to cooperate with UN Human Rights Council, the Office of the High Commissioner for Human Rights and other mechanisms on human rights on protection and promotion of human rights, which is a priority issue for the Republic of Azerbaijan", - "values": [ - "Technical assistance and cooperation" - ] - }, - { - "text": "Undertake more effective measures to address the problems of impunity and violence against women and girls, including through the strengthening of law enforcement and the judicial system and intensive media and education programmes aimed at increasing public awareness and sensitivities on the rights of women", - "values": [ - "Human rights education and training", - "Impunity", - "Rights of the Child", - "Women's rights" - ] - }, - { - "text": "Intensify efforts to combat discrimination on all grounds, including age, religion and sexual orientation", - "values": [ - "Freedom of religion and belief", - "Racial discrimination", - "Sexual Orientation and Gender Identity" - ] - }, - { - "text": "Strengthen national education programmes in favour of girls and persons with disabilities", - "values": [ - "Disabilities", - "Rights of the Child", - "Women's rights" - ] - }, - { - "text": "Consider imposing a moratorium on the application of the death penalty with a view to abolishing it", - "values": [ - "Death penalty" - ] - }, - { - "text": "Elaborate and apply in an effective manner an exhaustive and interdisciplinary action plan to address violence against women", - "values": [ - "Women's rights" - ] - }, - { - "text": "Undertake measures to avoid overcrowding in prisons, including, when appropriate, alternatives of social reintegration instead of imprisonment, as well as avoiding prolonged periods of pretrial detention ", - "values": [ - "Detention" - ] - }, - { - "text": "Take steps to review domestic laws with a view to guaranteeing the right to freedom of expression, association and assembly, including assuring a free and independent media ", - "values": [ - "Freedom of association and peaceful assembly", - "Freedom of opinion and expression", - "Freedom of the press" - ] - }, - { - "text": "Swiftly ratify the Optional Protocol to the Convention on the Rights of Persons with Disabilities, in line with the National Action Plan to Promote Equal Opportunities for Persons with Disabilities (2015-2020)", - "values": [ - "Disabilities", - "International instruments" - ] - }, - { - "text": "Continue the process of ratifying various human rights conventions", - "values": [ - "International instruments" - ] - }, - { - "text": "Provide its civilian courts with jurisdiction over human rights violations committed against civilians by members of the armed security forces to ensure accountability", - "values": [ - "Human rights violations by state agents", - "Justice" - ] - }, - { - "text": "Redouble its efforts to reduce violence against women and domestic violence", - "values": [ - "Rights of the Child", - "Women's rights" - ] - }, - { - "text": "Continue to improve measures, in policy and practice, to increase the participation of women in political life ", - "values": [ - "Women's rights" - ] - }, - { - "text": "Take measures to raise the awareness of its citizens with regard to the rights and judicial procedures in order to improve their access to justice", - "values": [ - "Justice" - ] - }, - { - "text": "Maintain the provisions of article 261 bis of the Criminal Code, in particular the ones providing for liability in cases of denial, trivialization or seeking justification for genocide or other crimes against humanity", - "values": [ - "Justice" - ] - }, - { - "text": "Continue to implement a comprehensive security, economic, political and social welfare plan", - "values": [ - "General" - ] - }, - { - "text": "Accelerate the legislative process for the ratification of the Optional Protocol to the Convention on the Elimination of All Forms of Discrimination against Women ", - "values": [ - "International instruments", - "Women's rights" - ] - }, - { - "text": "Seek international assistance to combat child labour, such as through the International Labour Organization ", - "values": [ - "Rights of the Child", - "Technical assistance and cooperation" - ] - }, - { - "text": "Continue its policies to achieve the goal set in 2006 of building more than 3.5 million dwellings by 2015", - "values": [ - "Development" - ] - }, - { - "text": "Cooperate closely with civil society in the follow-up to the universal periodic review", - "values": [ - "Civil society", - "UPR process" - ] - }, - { - "text": "Take all necessary measures for the protection of the rights of children, to prevent the recruitment of child soldiers by parties to the conflict and to establish mechanisms for the reintegration of demobilized children ", - "values": [ - "International humanitarian law", - "Rights of the Child" - ] - }, - { - "text": "Rapidly implement the recommendations of the Lessons Learnt and Reconciliation Commission", - "values": [ - "Justice" - ] - }, - { - "text": "Consider the ratification of international human rights instruments to which it is still not a party", - "values": [ - "International instruments" - ] - }, - { - "text": "Continue to strengthen its measures and mechanisms to overcome the challenges related to the protection of the rights of vulnerable groups, including indigenous peoples.", - "values": [ - "Indigenous peoples" - ] - }, - { - "text": "Commit to procurement and e-governance reforms, including the full implementation of the Open Government Partnership national action plan and a permanent dialogue mechanism with civil society", - "values": [ - "Civil society" - ] - }, - { - "text": "Promote national efforts aimed at enhancing judicial reform, so as to cater for expanding recourse to courts of law, partly as a result of the growth of the Gambian economy", - "values": [ - "Justice" - ] - }, - { - "text": "Ratify the ICESCR, CEDAW and the Convention of the Rights of the Child at an early stage together with other important human rights conventions", - "values": [ - "ESC rights - general", - "International instruments", - "Rights of the Child", - "Women's rights" - ] - }, - { - "text": "Ensure the full protection of the freedom of expression of its citizens, including the right to peaceful protest, and refrain from and condemn actions intended to intimidate or repress citizens exercising their rights ", - "values": [ - "Freedom of association and peaceful assembly", - "Freedom of opinion and expression" - ] - }, - { - "text": "Pursue efforts to combat extreme poverty, notably within the framework of the Patriotic Agenda 2025", - "values": [ - "Poverty" - ] - }, - { - "text": "Take steps to reduce overcrowding in the prisons by imposing alternative sentences, where possible ", - "values": [ - "Detention" - ] - }, - { - "text": "Continue efforts to ensure decent housing for all citizens ", - "values": [ - "Right to housing" - ] - }, - { - "text": "The Government was committed to offering comprehensive sexual and reproductive health and rights services in tandem with international, regional and national policies. The delegation stated that there had been a decline of more than 50 per cent in child mortality.", - "values": [ - "Right to health", - "Rights of the Child", - "Women's rights" - ] - }, - { - "text": "Continue its efforts in combating trafficking in persons and smuggling of migrants", - "values": [ - "Migrants", - "Trafficking" - ] - }, - { - "text": "Proceed with its review of the Shia Personal Status Law, ensure that it conforms to international commitments and actively works to promote the rights of women.", - "values": [ - "Women's rights" - ] - }, - { - "text": "Seek technical assistance with a view to harmonizing national legislation with ratified international human rights instruments ", - "values": [ - "International instruments", - "Technical assistance and cooperation" - ] - }, - { - "text": "Engage in consultations with the concerned communities and ensure their participation in the decision-making process affecting them, through their direct involvement in the formulation and implementation of mining projects", - "values": [ - "Other" - ] - }, - { - "text": "Formally establish a moratorium on executions at the federal level while engaging with retentionist states to achieve a nationwide moratorium with the objective to ultimately abolish the death penalty nationwide", - "values": [ - "Death penalty" - ] - }, - { - "text": "Strengthen human rights training and awareness programmes for Parliamentarians, judges, civil servants, LEAs, lawyers and journalists", - "values": [ - "Human rights education and training" - ] - }, - { - "text": "Continue its fight against the negative consequences of climate change", - "values": [ - "Environment" - ] - }, - { - "text": "Take further steps to promote and protect the rights of children and women ", - "values": [ - "Rights of the Child", - "Women's rights" - ] - }, - { - "text": "Sign and ratify the Optional Protocol to CRC on a communications procedure ", - "values": [ - "International instruments", - "Rights of the Child" - ] - }, - { - "text": "Take all necessary measures to ensure adequate access to water and sanitation by children with disabilities in all Japanese schools", - "values": [ - "Disabilities", - "Right to water and sanitation", - "Rights of the Child" - ] - }, - { - "text": "Integrate gender perspective when addressing impunity and lack of safety of journalists and human rights defenders", - "values": [ - "Freedom of the press", - "Human rights defenders", - "Impunity", - "Women's rights" - ] - }, - { - "text": "Review and amend relevant legislation, such as the Criminal Code and the Code of Administrative Offences, to enhance the protection and promotion of the rights of lesbian, gay, bisexual, transgender and intersex persons and of individuals belonging to vulnerable, minority populations, including religious communities and ethnic minorities, as well as amend article 1 of the Law on Ensuring Equality to include sexual orientation and gender identity", - "values": [ - "Sexual Orientation and Gender Identity" - ] - }, - { - "text": "Make efforts to guarantee the right to education of children with disabilities, to ensure their integration in society", - "values": [ - "Disabilities", - "Right to education", - "Rights of the Child" - ] - }, - { - "text": "Ensure an effective non-discrimination for persons with disabilities as well as recognition of all persons with disabilities as persons before the law ", - "values": [ - "Disabilities" - ] - }, - { - "text": "Build law enforcement and labour inspection capacity to combat slavery practices, including sexual servitude, and forced child begging, and rehabilitate and integrate victims", - "values": [ - "Labour", - "Rights of the Child" - ] - }, - { - "text": "Ratify ILO Convention No. 138 concerning the minimum age for admission to employment ", - "values": [ - "International instruments", - "Labour", - "Rights of the Child" - ] - }, - { - "text": "Guarantee the right to universal suffrage with a view to holding genuinely free, competitive and democratic elections as soon as possible, and to extend a standing invitation to international electoral observers", - "values": [ - "Elections" - ] - }, - { - "text": "Approve general legislation to combat discrimination, which expressly covers all spheres of life, and defines and prohibits discrimination on any ground, taking measures against all expressions and manifestations of prejudices such as hate speech, racism and xenophobia", - "values": [ - "Racial discrimination" - ] - }, - { - "text": "Consider ratifying the core international human rights instruments and other relevant international conventions", - "values": [ - "International instruments" - ] - }, - { - "text": "Release persons arbitrarily detained and ensure that all complaints of torture and ill-treatment of detainees are investigated promptly, thoroughly and independently", - "values": [ - "Detention", - "Torture and other CID treatment" - ] - }, - { - "text": "Urge the National Assembly to adopt the draft legislation on trafficking in persons", - "values": [ - "Trafficking" - ] - }, - { - "text": "Accelerate the free twelve year compulsory education ", - "values": [ - "Right to education" - ] - }, - { - "text": "Share its experiences in the field of education with other countries", - "values": [ - "Right to education" - ] - }, - { - "text": "Consider extending a standing invitation to special procedures ", - "values": [ - "Special procedures" - ] - }, - { - "text": "The delegation also reiterated Benin's commitment to the UPR as well as its commitment to continue its cooperation with all the mechanisms of the Human Rights Council", - "values": [ - "Special procedures", - "UPR process" - ] - }, - { - "text": "Further enhance and strengthen the work of the ASEAN Intergovernmental Human Rights Commission to effectively promote and protect the human rights and fundamental freedoms of the peoples of ASEAN \n", - "values": [ - "General" - ] - }, - { - "text": "Ratify the Protocol to Prevent, Suppress and Punish Trafficking in Persons", - "values": [ - "International instruments", - "Trafficking" - ] - }, - { - "text": "Remain committed to implementing its human rights obligations and minimizing the impact of the crisis, particularly on the most vulnerable ", - "values": [ - "Development" - ] - }, - { - "text": "Take immediate action to improve national asylum system, including by elaborating a national action plan, to avoid continuation of harsh conditions of detention and treatment of asylum seekers and refugees", - "values": [ - "Asylum-seekers - refugees", - "Detention" - ] - }, - { - "text": "Actively combat all forms of gender-based discrimination and violence, in particular domestic and sexual violence", - "values": [ - "Rights of the Child", - "Women's rights" - ] - }, - { - "text": "Jamaica recognises the aspirational goals of the Optional Protocol and is committed to providing the framework for the achievement of the economic, social and cultural rights embodied in the Covenant. However, Jamaica is not in a position to sign and ratify the Protocol at this time.", - "values": [ - "ESC rights - general", - "International instruments" - ] - }, - { - "text": "Facilitate possible future visits by mandate holders", - "values": [ - "Special procedures" - ] - }, - { - "text": "Repeal article 490 of the Criminal Code criminalizing sexual relationships outside marriage in order to eliminate risks associated with abandonment and institutional stigmatization of children born out of wedlock", - "values": [ - "Rights of the Child", - "Women's rights" - ] - }, - { - "text": "Adopt additional measures for the protection of Roma. Provide Roma with conditions to receive full education and to have access to labour market and health services. Identify and suppress cases of discrimination against Roma, and their forced displacement and segregation. Make efforts to decrease the high level of intolerance towards Roma in the Romanian society", - "values": [ - "Minorities" - ] - }, - { - "text": "Pursue efforts to combat domestic violence, and to place particular emphasis on the implementation of an awareness-raising training policy aimed at contributing to changes in behaviour and of attitudes", - "values": [ - "Human rights education and training", - "Rights of the Child", - "Women's rights" - ] - }, - { - "text": "In order to achieve a full and effective implementation of the Strategic National Plan on Sexual and Reproductive Health, mobilize adequate resources to improve access of women to the justice system", - "values": [ - "Justice", - "Right to health", - "Women's rights" - ] - }, - { - "text": "Take specific and effective measures including legislative action required in order to ensure respect for freedom of expression and the press in accordance with international standards ", - "values": [ - "Freedom of opinion and expression", - "Freedom of the press" - ] - }, - { - "text": "Ensure regular inspection of harvesting practices to monitor and guarantee full compliance with international child labour standards.", - "values": [ - "Labour", - "Rights of the Child" - ] - }, - { - "text": "Take the necessary steps to combat girls' sexual abuse, in particular at school", - "values": [ - "Right to education", - "Rights of the Child", - "Women's rights" - ] - }, - { - "text": "Take all necessary measures to fight efficiently against impunity, notably by providing the necessary means to the organ charged with systematically investigating all allegations of torture and ill-treatment and by clarifying its status ", - "values": [ - "Impunity", - "Torture and other CID treatment" - ] - }, - { - "text": "Formulate a white paper in accordance with the United Nations Declaration on the Rights of Indigenous Peoples and that recommendations from the Committee on the Elimination of Racial Discrimination, the International Labour Organization (ILO) and the African Commission's Working Group on Indigenous Populations/Communities are taken into consideration in this process", - "values": [ - "Indigenous peoples", - "International instruments", - "Treaty bodies" - ] - }, - { - "text": "Clear the backlog of responses to thematic questionnaires from special procedures of the Human Rights Council ", - "values": [ - "Special procedures" - ] - }, - { - "text": "Continue efforts to implement the roadmap to eradicate contemporary forms of slavery as adopted by the Council of Ministers in March 2014", - "values": [ - "Other" - ] - }, - { - "text": "Work with international partners in responding to the protection needs of maritime migrants, asylum seekers and refugees, by developing standardized processing procedures and making necessary upgrades to improve conditions of reception and expulsion centres", - "values": [ - "Asylum-seekers - refugees", - "Migrants" - ] - }, - { - "text": "Continue pursuing the implementation of the national food security strategy and the strategy concerning the rural sector in order to achieve food security and combat poverty", - "values": [ - "Poverty", - "Right to food" - ] - }, - { - "text": "Strengthen the roles of judges and defence lawyers in the criminal procedure, and to guarantee full access for defendants to the legal counsel of their choice", - "values": [ - "Justice" - ] - }, - { - "text": "Strengthen the effectiveness of the Anti-Corruption Prosecutor through public oversight mechanisms for official payments made and for the assets of senior officials of the State", - "values": [ - "Corruption" - ] - }, - { - "text": "Take all measures to immediately put an end to racially motivated violence and ill-treatment by police officers of persons with an immigrant background", - "values": [ - "Human rights violations by state agents", - "Migrants", - "Racial discrimination", - "Torture and other CID treatment" - ] - }, - { - "text": "Take further necessary measures and accede to The Hague Convention on Protection of Children and Cooperation in respect of Intercountry Adoption, as previously recommended", - "values": [ - "International instruments", - "Rights of the Child" - ] - }, - { - "text": "Bring the penal code in conformity with article 5 of the African Charter for the Rights and Welfare of the Child to which Burkina Faso is a party, which prohibits application of the death penalty to minors ", - "values": [ - "Death penalty", - "Rights of the Child" - ] - }, - { - "text": "Strengthen further the measures to combat discrimination against minority communities, including Muslim communities in Australia ", - "values": [ - "Freedom of religion and belief", - "Minorities" - ] - }, - { - "text": "Take all necessary measures to raise the level of involvement of women in public and political life according to the quota stated in the relevant laws", - "values": [ - "Women's rights" - ] - }, - { - "text": "Respond positively, as soon as possible, to unanswered requests for visits by special procedures rapporteurs", - "values": [ - "Special procedures" - ] - }, - { - "text": "Take the legal steps necessary to protect women against domestic violence", - "values": [ - "Women's rights" - ] - }, - { - "text": "Cooperate actively with the special procedures of the United Nations.", - "values": [ - "Special procedures" - ] - }, - { - "text": "Adopt legislation on abortion that is in line with its international human rights obligations, taking into account indicators such as medical risks, rape, incest and ensure improved access to appropriate methods of contraception", - "values": [ - "International instruments", - "Women's rights" - ] - }, - { - "text": "Invite the Special Representative of the Secretary-General on the situation of human rights defenders to conduct an independent visit to Pakistan.", - "values": [ - "Human rights defenders", - "Special procedures" - ] - }, - { - "text": "Involve meaningfully civil society in the process of the preparation of the planned law on protection against domestic violence.", - "values": [ - "Civil society", - "Rights of the Child", - "Women's rights" - ] - }, - { - "text": "Actively combat all indications of inter-ethnic strife, and national and religious intolerance", - "values": [ - "Freedom of religion and belief", - "Minorities", - "Racial discrimination" - ] - }, - { - "text": "Survey the extent of unsafe illegal abortions and introduce measures to safeguard women's universal right to life and health ", - "values": [ - "Women's rights" - ] - }, - { - "text": "Continue taking measures to increase the participation of women in all social and economic spheres of Seychelles and continue implementing regulations to end all forms of discrimination against them", - "values": [ - "Women's rights" - ] - }, - { - "text": "Adopt comprehensive legislation to combat all forms of discrimination, in line with its obligations and international standards", - "values": [ - "Other" - ] - }, - { - "text": "Consider ratifying the outstanding international human rights instruments and further update domestic laws to be in line with the articles of those treaties ", - "values": [ - "International instruments" - ] - }, - { - "text": "Implement effective protective measures as well as immediate, independent and systematic investigations of abuses perpetrated against human rights defenders", - "values": [ - "Human rights defenders" - ] - }, - { - "text": "Ensure that legislation criminalizing female genital mutilation is effectively implemented and that offenders are prosecuted", - "values": [ - "Rights of the Child", - "Torture and other CID treatment", - "Women's rights" - ] - }, - { - "text": "Consider revising its Criminal Code, in particular with a view to decriminalizing sexual relations between consenting adults of the same sex ", - "values": [ - "Sexual Orientation and Gender Identity" - ] - }, - { - "text": "Continue its efforts to curb violence against women and to eliminate their stereotyping role in the society ", - "values": [ - "Women's rights" - ] - }, - { - "text": "Commit to speedily implement an effective asylum system consistent with EU standards ", - "values": [ - "Asylum-seekers - refugees" - ] - }, - { - "text": "Taking into account the high level of infant mortality, disseminate and implement promptly the Plan to Achieve the Millennium Development Goals 4 and 5, using a rights-based approach to maternal and child health ", - "values": [ - "Right to health", - "Rights of the Child", - "Women's rights" - ] - }, - { - "text": "Effectively implement United Nations treaty bodies' recommendations", - "values": [ - "Treaty bodies" - ] - }, - { - "text": "Continue with its sound social programmes and plans undertaken to satisfy the most basic needs of people living in extreme poverty, including food, education, housing, health and work.", - "values": [ - "Poverty" - ] - }, - { - "text": "Follow up on the recommendations by its National Aids Council, and include men having sex with other men in its HIV/AIDS policies", - "values": [ - "HIV - Aids", - "Sexual Orientation and Gender Identity" - ] - }, - { - "text": "Adopt measures to place detainees suffering mental illness in establishments that are separate from common prisons", - "values": [ - "Detention", - "Disabilities" - ] - }, - { - "text": "Accelerate the process of ratification of CRPD", - "values": [ - "Disabilities", - "International instruments" - ] - }, - { - "text": "Amend the Constitution to prohibit discrimination against persons with disabilities.", - "values": [ - "Disabilities" - ] - }, - { - "text": "Continue in its efforts to promote the rights of the child and consider setting up a centralized civil registration system", - "values": [ - "Rights of the Child" - ] - }, - { - "text": "Identify efforts to combat all forms of discrimination and to ensure that hate crimes motivated by racism, xenophobia or other forms of discrimination are effectively investigated and perpetrators are brought to justice", - "values": [ - "Racial discrimination" - ] - }, - { - "text": "Continue its efforts in the struggle for the elimination of all forms of racial discrimination and xenophobia, especially those forms which are a violation of the human rights of minorities", - "values": [ - "Minorities", - "Racial discrimination" - ] - }, - { - "text": "Establish a national human rights institution in conformity with the Paris Principle", - "values": [ - "National Human Rights Institution" - ] - }, - { - "text": "Submit as soon as possible reports complying with its reporting obligations to the respective treaty bodies ", - "values": [ - "Treaty bodies" - ] - }, - { - "text": "Ensure the inclusion in all humanitarian and post-conflict reconstruction efforts of policies to protect the rights of persons with disabilities who belong to the most vulnerable groups in society ", - "values": [ - "Disabilities" - ] - }, - { - "text": "Establish an immediate moratorium on executions with a view to abolishing the death penalty", - "values": [ - "Death penalty" - ] - }, - { - "text": "Continue to strengthen the legal and institutional framework for the promotion and protection of all human rights ", - "values": [ - "General" - ] - }, - { - "text": "Recognize the full and equal enjoyment of human rights by all and immediately abolish the law that criminalizes homosexuality ", - "values": [ - "Sexual Orientation and Gender Identity" - ] - }, - { - "text": "Reschedule the postponed visit of the Working Group on Arbitrary Detention to Nauru", - "values": [ - "Detention", - "Special procedures" - ] - }, - { - "text": "Ensure that perpetrators of crimes of sexual violence are consistently brought to justice, and guarantee the protection of witnesses and survivors", - "values": [ - "Justice", - "Rights of the Child", - "Women's rights" - ] - }, - { - "text": "Continue to address the grievance of and empower vulnerable groups - particularly women, children, indigenous people, and people of African descent - by reducing urban-rural discrepancies and promoting equal access to opportunities for all, especially access to health care, education, employment, housing and social security ", - "values": [ - "Indigenous peoples", - "Minorities", - "Rights of the Child", - "Women's rights" - ] - }, - { - "text": "Continue the efforts to draw up a national plan to provide health care to all without discrimination", - "values": [ - "Right to health" - ] - }, - { - "text": "Prohibit child labour under the age of 15, and of those who have not yet completed compulsory education ", - "values": [ - "Labour", - "Rights of the Child" - ] - }, - { - "text": "Use all appropriate ways and means to further develop and strengthen a culture of human rights, create more human rights capacity-building, and promote human rights public awareness-raising, with a view to the better promotion and protection of all human rights and fundamental freedoms in society at large.", - "values": [ - "Human rights education and training" - ] - }, - { - "text": "Accede to and fully implement the 1954 Convention relating to the Status of Stateless Persons and the 1961 Convention on the Reduction of Statelessness in order to secure the basic rights of stateless persons and introduce a formal procedure to determine statelessness", - "values": [ - "International instruments", - "Statelessness and the right to nationality" - ] - }, - { - "text": "Prohibit by law and in practice corporal punishment of children in all settings, including in orphanages and child welfare centres", - "values": [ - "Rights of the Child", - "Torture and other CID treatment" - ] - }, - { - "text": "Strengthen the capacity of the State Inspectorate for the Protection of Children's Rights", - "values": [ - "Rights of the Child" - ] - }, - { - "text": "Review, adopt and implement the pending draft national policy on persons with disabilities to ensure non-discrimination in education, employment and healthcare", - "values": [ - "Disabilities", - "Labour", - "Right to education", - "Right to health" - ] - }, - { - "text": "Intensify its efforts to appoint the Ombudsman, and ensure the full functioning of the National Human Rights Commission as soon as possible ", - "values": [ - "National Human Rights Institution" - ] - }, - { - "text": "Increase its efforts in the field of violence and domestic violence against women and children aiming for an eradication of both", - "values": [ - "Rights of the Child", - "Women's rights" - ] - }, - { - "text": "Exert efforts to hasten the implementation of the new statute that will ensure the independence and autonomy of the CNDHC in accordance with the Paris Principles ", - "values": [ - "National Human Rights Institution" - ] - }, - { - "text": "Continue to implement policies to fight poverty and promote economic development", - "values": [ - "Development", - "Poverty" - ] - }, - { - "text": "Set the age of marriage in law and in practice to a minimum of 18 years for both sexes, with no exceptions, traditional or otherwise, and raise public awareness of this law", - "values": [ - "Human rights education and training", - "Rights of the Child" - ] - }, - { - "text": "Adopt comprehensive anti-discrimination legislation, including on the basis of sexual orientation and gender identity", - "values": [ - "Sexual Orientation and Gender Identity" - ] - }, - { - "text": "Take the necessary executive and legislative measures to fight child labour, child abuse and trafficking in children", - "values": [ - "Labour", - "Rights of the Child", - "Trafficking" - ] - }, - { - "text": "Take affirmative steps to ensure that individuals' religious refusals are regulated to conform with international human rights standards that protect sexual and reproductive rights and the rights to equality and non- discrimination on the basis of sex, gender, sexual orientation or gender identity", - "values": [ - "Freedom of religion and belief", - "International instruments", - "Sexual Orientation and Gender Identity", - "Women's rights" - ] - }, - { - "text": "Toughen liability for sexual abuse, exploitation and child trafficking", - "values": [ - "Rights of the Child", - "Trafficking" - ] - }, - { - "text": "Ensure free access to information", - "values": [ - "Freedom of opinion and expression" - ] - }, - { - "text": "Establish a clear procedure for the implementation of and financial support for the national strategies and plans for the protection of human rights", - "values": [ - "General" - ] - }, - { - "text": "Extend a standing invitation to United Nations human rights special procedures so that they can visit the country and assist the Government with its human rights reforms ", - "values": [ - "Special procedures" - ] - }, - { - "text": "Share its experiences and best practices with other countries in the area of poverty eradication, especially in developing small and medium-sized enterprises", - "values": [ - "Poverty" - ] - }, - { - "text": "Improve its domestic legal framework on the rights of persons with disabilities in line with the provisions of the relevant international convention", - "values": [ - "Disabilities", - "International instruments" - ] - }, - { - "text": "Further continue taking effective counter-terrorism measures as terrorism is a cause for serious human rights abuses in the country", - "values": [ - "Public security" - ] - }, - { - "text": "Take further measures to protect the rights of migrant workers ", - "values": [ - "Labour", - "Migrants" - ] - }, - { - "text": "Examine the possibility of acceding to the two fundamental international human rights covenants, and request technical assistance from OHCHR in order to fulfil the obligations that this would entail ", - "values": [ - "CP rights - general", - "ESC rights - general", - "International instruments", - "Technical assistance and cooperation" - ] - }, - { - "text": "Amend the relevant labour laws to enhance the protection of the human rights of all migrant workers", - "values": [ - "Labour", - "Migrants" - ] - }, - { - "text": "Improve policies against discrimination through legislation regulating hate crimes, racism, xenophobia and anti-Semitism", - "values": [ - "Freedom of religion and belief", - "Racial discrimination" - ] - }, - { - "text": "Continue and strengthen the cooperation with the Office of the High Commissioner for Human Rights", - "values": [ - "Technical assistance and cooperation" - ] - }, - { - "text": "Create an independent national institution for promotion and protection of human rights in conformity with Paris Principles", - "values": [ - "National Human Rights Institution" - ] - }, - { - "text": "Adopt the necessary implementation legislation for Registered Partnership Act and ensure its full implementation", - "values": [ - "Sexual Orientation and Gender Identity" - ] - }, - { - "text": "Allow and ensure safe and dignified return of ethnically cleansed IDPs and refugees from Georgia's Abkhazia and the Tskhinvali regions and comply fully with respective norms of international humanitarian law and human rights law before and while ending the occupation of these regions", - "values": [ - "Asylum-seekers - refugees", - "Internally displaced persons", - "International humanitarian law", - "International instruments" - ] - }, - { - "text": "Consider ratifying CEDAW, the Convention on the Rights of the Child, and the Convention on the Rights of Persons with Disabilities", - "values": [ - "Disabilities", - "International instruments", - "Rights of the Child", - "Women's rights" - ] - }, - { - "text": "Continue implementing the national laws in accordance with the universally agreed human rights norms and principles", - "values": [ - "General" - ] - }, - { - "text": "Strengthen public education, awareness and capacity building programmes on human rights", - "values": [ - "Human rights education and training" - ] - }, - { - "text": "Continue strengthening its efforts to combat poverty through introducing comprehensive national strategies in order to allocate more resources to social services for vulnerable groups living in rural areas, and increase its efforts to tackle the discrimination against women in all areas ", - "values": [ - "Poverty", - "Women's rights" - ] - }, - { - "text": "Take further measures to encourage and facilitate self-employment among the youth, enabling them to play a greater role in national development", - "values": [ - "Development", - "Labour" - ] - }, - { - "text": "Take all necessary measures to prevent reprisals and inter-communal violence, and to disarm the militias ", - "values": [ - "International humanitarian law", - "Public security" - ] - }, - { - "text": "Adopt measures to improve conditions for prisoners and detainees", - "values": [ - "Detention" - ] - }, - { - "text": "Take measures aimed at abolishing the death penalty", - "values": [ - "Death penalty" - ] - }, - { - "text": "Continue working to fight against human trafficking and share its best practices in that regard", - "values": [ - "Trafficking" - ] - }, - { - "text": "Take steps to protect critical and independent media", - "values": [ - "Freedom of the press" - ] - }, - { - "text": "Issue a favourable response to the request for visits to Myanmar of the representatives of the Secretary-General and Special Rapporteurs, in particular, on the human rights of displaced persons, the right to food (since 2003), freedom of religion and belief (since 2007), extrajudicial, summary or arbitrary executions (since 2007), and on the independence of judges and lawyers ", - "values": [ - "Extrajudicial executions", - "Freedom of religion and belief", - "Internally displaced persons", - "Justice", - "Right to food", - "Special procedures" - ] - }, - { - "text": "Consider the ratification of the International Convention for the Protection of All Persons from Enforced Disappearance CED ", - "values": [ - "Enforced disappearances", - "International instruments" - ] - }, - { - "text": "Ensure that conditions of detention are in line with international norms and standards in particular the detention of migrants and asylum seekers", - "values": [ - "Asylum-seekers - refugees", - "Detention", - "Migrants" - ] - }, - { - "text": "Viet Nam will continue to develop the legal framework on the principle of focusing on human resource to better promote and protect the rights and fundamental freedoms of the people, making sure that national law is compliant with international law and norms.", - "values": [ - "General" - ] - }, - { - "text": "Continue its work on the elimination of discrimination against women", - "values": [ - "Women's rights" - ] - }, - { - "text": "Take the measures necessary to combat violence against women, including the criminalization of domestic violence and marital rape", - "values": [ - "Women's rights" - ] - }, - { - "text": "Sign and ratify the Optional Protocol to the Convention on the Elimination of All Forms of Discrimination against Women and the two Optional Protocols to the Convention on the Rights of the Child", - "values": [ - "International instruments", - "Rights of the Child", - "Women's rights" - ] - }, - { - "text": "Adopt adequate safeguards in the Constitution and in relevant legislation to ensure the independence of judges and magistrates as well as the independent practice of the law profession. Consider extending an invitation to the Special Rapporteur to strengthen such efforts", - "values": [ - "Justice", - "Special procedures" - ] - }, - { - "text": "Take the necessary measures to implement the provisions of the August 2015 peace agreement on justice and reconciliation, which is a prerequisite for improving the situation of human rights in the country", - "values": [ - "Justice" - ] - }, - { - "text": "Maintain the philosophy of putting the people first in its development agenda", - "values": [ - "Development" - ] - }, - { - "text": "Respect and fully engage in international efforts towards a political settlement", - "values": [ - "Other" - ] - }, - { - "text": "Ratify the Optional Protocol to the ICESCR", - "values": [ - "ESC rights - general", - "International instruments" - ] - }, - { - "text": "Grant immediate release and enforceable right to compensation to remedy the arbitrary detention of Israeli citizen, Mr. Ouda Tarabin, imprisoned for over 14 years", - "values": [ - "Detention", - "Justice" - ] - }, - { - "text": "Establish relevant mechanisms, procedures and guidelines to end child sexual exploitation and child labour", - "values": [ - "Labour", - "Rights of the Child" - ] - }, - { - "text": "Further its efforts to effectively eliminate extrajudicial killings ", - "values": [ - "Extrajudicial executions" - ] - }, - { - "text": "Redouble efforts to combat gender-based violence by criminalizing marital rape, thoroughly investigating and prosecuting acts of violence against women, and issuing guidelines for and providing training to law enforcement and judicial officials on handling domestic violence cases in all regions", - "values": [ - "Human rights education and training", - "Rights of the Child", - "Women's rights" - ] - }, - { - "text": "Continue to combat domestic violence and renew the national action plan in this field ", - "values": [ - "Rights of the Child", - "Women's rights" - ] - }, - { - "text": "Elaborate a new general strategy aimed at reducing the less favourable and discriminatory situation of Roma, Sinti and traveller communities", - "values": [ - "Minorities", - "Racial discrimination" - ] - }, - { - "text": "Continue its efforts to upgrade and develop human resources in the health sector and improve health coverage in the country", - "values": [ - "Right to health" - ] - }, - { - "text": "Undertake concrete and positive steps to put an end to all acts of discrimination, violence and other human rights violations against the Rohingyas, other Muslim minorities as well as all minorities in general", - "values": [ - "Freedom of religion and belief", - "Migrants", - "Racial discrimination" - ] - }, - { - "text": "Continue to strengthen its programmes and initiatives geared towards guaranteeing the rights to health and education ", - "values": [ - "Right to education", - "Right to health" - ] - }, - { - "text": "Establish a national mechanism for the prevention of torture, to which it committed itself by signing the Optional Protocol of the Convention against Torture in 2008", - "values": [ - "Detention", - "International instruments", - "Torture and other CID treatment" - ] - }, - { - "text": "Continue efforts to stop violence against women", - "values": [ - "Women's rights" - ] - }, - { - "text": "Take action to ensure that Palestinians are fully able to enjoy their economic, social and cultural rights.", - "values": [ - "ESC rights - general" - ] - }, - { - "text": "Continue and strengthen the programs of the great mission Vivienda Venezuela to structurally solve the problem of housing shortage", - "values": [ - "Right to housing" - ] - }, - { - "text": "Revise all laws relevant to protection from domestic violence", - "values": [ - "Rights of the Child", - "Women's rights" - ] - }, - { - "text": "Consider the abolition of the death penalty in its legislation, and proceed to the ratification of the Second Optional Protocol to the International Covenant on Civil and Political Rights", - "values": [ - "Death penalty", - "International instruments" - ] - }, - { - "text": "Address the problems of maternal mortality and child malnutrition in remote areas of the country ", - "values": [ - "Right to food", - "Right to health", - "Rights of the Child", - "Women's rights" - ] - }, - { - "text": "Seek the support of the Council in the areas highlighted under section VII in its national report.", - "values": [ - "General" - ] - }, - { - "text": "Ratify international human rights instruments to which Canada has not yet become party ", - "values": [ - "International instruments" - ] - }, - { - "text": "Continue to implement legislation recognizing equal rights for same-sex couples", - "values": [ - "Sexual Orientation and Gender Identity" - ] - }, - { - "text": "Promote a secure environment and a stable and sustainable policy to allow the Central African people to benefit from all human rights", - "values": [ - "Public security" - ] - }, - { - "text": "Promote the completion of existing initiatives to reform national legislation so that cases of alleged violation of human rights by the armed forces are considered in civilian courts ", - "values": [ - "Human rights violations by state agents", - "Justice" - ] - }, - { - "text": "Closely monitor the interpretation and application of the 2008 Surveillance Act to prevent any interference with the right to privacy ", - "values": [ - "Privacy" - ] - }, - { - "text": "Take further action to improve living conditions in places of detention.", - "values": [ - "Detention" - ] - }, - { - "text": "Immediately and unconditionally release all prisoners of conscience imprisoned only for exercising their right to freedom of expression, association and peaceful assembly", - "values": [ - "Detention", - "Freedom of association and peaceful assembly", - "Freedom of opinion and expression" - ] - }, - { - "text": "Establish an independent National Human Rights Institution, which can help the government to generate the information necessary for compiling human rights reports", - "values": [ - "National Human Rights Institution", - "Treaty bodies" - ] - }, - { - "text": "Support its Muslim citizens in enabling them to practise their religion ", - "values": [ - "Freedom of religion and belief", - "Minorities" - ] - }, - { - "text": "Work towards setting up programmes to rehabilitate juvenile offenders, and update legislation concerning juveniles ", - "values": [ - "Justice", - "Rights of the Child" - ] - }, - { - "text": "Ratify the Optional Protocol to the Convention against Torture and Other Cruel, Inhuman or Degrading Treatment or Punishment (OP-CAT), as well as the International Convention for the Protection of All Persons from Enforced Disappearance (CPED) ", - "values": [ - "Detention", - "Enforced disappearances", - "International instruments", - "Torture and other CID treatment" - ] - }, - { - "text": "Abolish the death penalty and establish a moratorium on executions as a first step towards abolition of the death penalty", - "values": [ - "Death penalty" - ] - }, - { - "text": "Amend or repeal both the Sedition Act and the Printing Presses and Publication Act, to bring Malaysia's domestic security legislation in line with its international human rights commitments on the freedoms of expression, peaceful assembly, and association", - "values": [ - "Freedom of association and peaceful assembly", - "Freedom of opinion and expression", - "Freedom of the press" - ] - }, - { - "text": "Strengthen awareness and education programmes, prevent harmful traditional practices against women and girls and ensure that victims have access to resources and protection and rehabilitation mechanisms", - "values": [ - "Human rights education and training", - "Torture and other CID treatment", - "Women's rights" - ] - }, - { - "text": "Further strengthen law enforcement and the judicial system in the effort to address impunity and prevent trafficking and domestic violence, as well as the sexual abuse of women and girls", - "values": [ - "Impunity", - "Justice", - "Rights of the Child", - "Trafficking", - "Women's rights" - ] - }, - { - "text": "Continue its efforts to progressively realize the right to education, including by exploring the possibility of providing free education for at the primary level", - "values": [ - "Right to education" - ] - }, - { - "text": "Continue its efforts to promote gender equality, and greater participation of women in the public and private sectors.", - "values": [ - "Women's rights" - ] - }, - { - "text": "Take effective measures to ensure accessibility of safe drinking water and access to adequate sanitation facilities, particularly in remote rural areas ", - "values": [ - "Right to water and sanitation" - ] - }, - { - "text": "Continue taking measures for the protection of the rights of senior citizens, children, persons with disabilities and minorities while giving utmost priority to the provision of social security in all regions of the country ", - "values": [ - "Disabilities", - "Minorities", - "Rights of the Child" - ] - }, - { - "text": "Combat child trafficking by providing training to police officers, prosecutors and judges, by ensuring that those responsible for child trafficking are promptly brought to justice, and by providing adequate victim assistance", - "values": [ - "Rights of the Child", - "Trafficking" - ] - }, - { - "text": "Increase its policing capacity and enhance judicial reforms to enable it to better fight organized crime and human trafficking", - "values": [ - "Public security", - "Trafficking" - ] - }, - { - "text": "Establish a de jure moratorium on executions, with a view to totally and definitively abolishing the death penalty, and commute all death sentences into life imprisonment ", - "values": [ - "Death penalty" - ] - }, - { - "text": "Intensify efforts to effectively prevent trafficking in women and girls and strengthen measures for the rehabilitation and social integration of victims of trafficking", - "values": [ - "Rights of the Child", - "Trafficking", - "Women's rights" - ] - }, - { - "text": "Guarantee effective implementation of regulation to eliminate abusive child labour practices, including measures to ensure that children remain in the educational system", - "values": [ - "Labour", - "Right to education", - "Rights of the Child" - ] - }, - { - "text": "End the practice of indefinite national service and allow substitute service for conscientious objectors", - "values": [ - "Freedom of religion and belief" - ] - }, - { - "text": "Ensure that policies and services relating to mental health treatment and psychiatric institutions comply with international human rights law", - "values": [ - "International instruments", - "Right to health" - ] - }, - { - "text": "Fully involve civil society in the follow-up to the UPR process at the national level", - "values": [ - "Civil society", - "UPR process" - ] - }, - { - "text": "Take effective measures to guarantee respect for the rights of migrant workers ", - "values": [ - "Labour", - "Migrants" - ] - }, - { - "text": "Consider reviewing the definition of national minorities in order to bring it into line with international standards, and take targeted measures to eliminate discrimination based on national and ethnic origin ", - "values": [ - "Minorities", - "Racial discrimination" - ] - }, - { - "text": "Apply the Yogyakarta Principles as a guide for new policies in the area of lesbian, gay, bisexual and transgender rights.", - "values": [ - "Sexual Orientation and Gender Identity" - ] - }, - { - "text": "Give serious consideration to the ratification of the Convention on the Rights of Persons with Disabilities.", - "values": [ - "Disabilities", - "International instruments" - ] - }, - { - "text": "Take necessary measures to fight against any form of intolerance and hate speech targeting persons belonging to minorities", - "values": [ - "Minorities", - "Racial discrimination" - ] - }, - { - "text": "Reinforce efforts in addressing violence against women, including through increasing victims' access to justice ", - "values": [ - "Women's rights" - ] - }, - { - "text": "Adopt legislation to explicitly abolish the death penalty", - "values": [ - "Death penalty" - ] - }, - { - "text": "Ratify the Optional Protocols to the International Covenant on Civil and Political Rights, to the Convention on the Elimination of All Forms of Discrimination against Women, to the Convention against Torture and Other Cruel, Inhuman or Degrading Treatment or Punishment and to the Convention on the Rights of Persons with Disabilities", - "values": [ - "CP rights - general", - "Disabilities", - "International instruments", - "Torture and other CID treatment", - "Women's rights" - ] - }, - { - "text": "Sign and ratify the UNESCO Convention on Discrimination in Education", - "values": [ - "International instruments", - "Right to education" - ] - }, - { - "text": "Further introduce effective measures to enhance gender equity, and to create practical facilities for persons with disabilities to effectively participate in the labour market", - "values": [ - "Women's rights" - ] - }, - { - "text": "Accept and implement the ICJ Advisory Opinion on the Legal Consequences of the Construction of a Wall in the OPT", - "values": [ - "Freedom of movement" - ] - }, - { - "text": "Incorporate economic and social rights in its Human Rights charter ", - "values": [ - "ESC rights - general" - ] - }, - { - "text": "Take firm measures to prevent and stop the recurrence of 'witch hunts'", - "values": [ - "Women's rights" - ] - }, - { - "text": "Review the status and functioning of its National Human Rights Institution to make sure that it is consistent with the Paris Principles", - "values": [ - "National Human Rights Institution" - ] - }, - { - "text": "Continue to promote and enhance interaction and dialogue between the competent national authorities and the civil society organizations", - "values": [ - "Civil society" - ] - }, - { - "text": "Accelerate the process of accession to the International Convention for the Protection of All Persons from Enforced Disappearance", - "values": [ - "Enforced disappearances", - "International instruments" - ] - }, - { - "text": "Continue advancing in the fight against torture and ill-treatment in the administration of justice, of the security forces of the State and in the penitentiary centres", - "values": [ - "Detention", - "Justice", - "Torture and other CID treatment" - ] - }, - { - "text": "Give special attention to the attendance of children to secondary schools", - "values": [ - "Right to education", - "Rights of the Child" - ] - }, - { - "text": "Continue its fight against poverty and the negative impacts of climate change with support from the international community ", - "values": [ - "Environment", - "Poverty", - "Technical assistance and cooperation" - ] - }, - { - "text": "Monitor the incidence of and combat racism and xenophobia ", - "values": [ - "Racial discrimination" - ] - }, - { - "text": "Establish a comprehensive plan on gender equality, especially stressing prosecution of sexual exploitation and prevention of gender violence ", - "values": [ - "Women's rights" - ] - }, - { - "text": "Give continuity to the process to ratify the Convention on the Rights of Persons with Disabilities", - "values": [ - "Disabilities", - "International instruments" - ] - }, - { - "text": "Operationalize its national authority for the protection of detainees", - "values": [ - "Detention" - ] - }, - { - "text": "Submit its overdue initial reports to the Committee on Migrant Workers and the Committee on the Rights of Persons with Disabilities ", - "values": [ - "Disabilities", - "Labour", - "Migrants", - "Treaty bodies" - ] - }, - { - "text": "Focus on eliminating violence and creating safe places for victims of gender-based, sorcery related, and sexual violence", - "values": [ - "Women's rights" - ] - }, - { - "text": "Adopt further measures to ensure that the use of pre-trial detention complies with international standards and to rationalize the system of inspection of prisons and of processing of complaints in cases of alleged mistreatment or torture", - "values": [ - "Detention", - "Torture and other CID treatment" - ] - }, - { - "text": "Continue the actions it has undertaken to overcome the crisis, consolidate the rule of law and fight poverty and unemployment ", - "values": [ - "Development", - "Justice", - "Poverty" - ] - }, - { - "text": "Promptly ratify the International Convention on the Protection of the Rights of All Migrant Workers and Members of Their Families and the Convention against Torture and Other Cruel, Inhuman or Degrading Treatment or Punishment", - "values": [ - "International instruments", - "Labour", - "Migrants", - "Torture and other CID treatment" - ] - }, - { - "text": "Define and prohibit in Armenian legislation, in an explicit and comprehensive manner, discrimination against women and gender-based violence, and adopt social awareness measures ", - "values": [ - "Women's rights" - ] - }, - { - "text": "Continue its efforts to enhance the working conditions of expatriate labourers by issuing legislation and regulations to promote and protect the rights of expatriate workers in Oman Labour Law", - "values": [ - "Labour", - "Migrants" - ] - }, - { - "text": "Continue efforts for the promotion of women's rights ", - "values": [ - "Women's rights" - ] - }, - { - "text": "Amend existing legislation on human trafficking to include a definition of trafficking in line with international law ", - "values": [ - "Trafficking" - ] - }, - { - "text": "Put in place a moratorium on the use of the death penalty, with a view to its abolition", - "values": [ - "Death penalty" - ] - }, - { - "text": "Ratify and implement the CRPD, with active involvement of representatives of persons with disabilities ", - "values": [ - "Disabilities", - "International instruments" - ] - }, - { - "text": "Accelerate the adoption of the project on marriage, divorce and family relations and the establishment of the minimum age of marriage in line with international standards", - "values": [ - "Rights of the Child" - ] - }, - { - "text": "Further intensify efforts in order to prevent and eliminate human trafficking ", - "values": [ - "Trafficking" - ] - }, - { - "text": "Continue providing and improving human rights education and training for judicial and law enforcement officials", - "values": [ - "Human rights education and training" - ] - }, - { - "text": "Take necessary measures to adopt or improve subsidiary laws in the alignment of constitutional and legal amendments related to human rights' improvement", - "values": [ - "General" - ] - }, - { - "text": "Encourage the legislature to adopt international instruments and other human rights initiatives ", - "values": [ - "International instruments" - ] - }, - { - "text": "Adopt a moratorium on the death penalty, as a first step towards its complete and full abolition", - "values": [ - "Death penalty" - ] - }, - { - "text": "Prevent and punish all forms of violence especially that which targets women and girls, and ensure that the criminal code contains provisions covering the various forms of sexual violence", - "values": [ - "Rights of the Child", - "Women's rights" - ] - }, - { - "text": "Strengthen further functioning of the State enforcement agencies with the aim of combating criminality in the country, and ensure full and unhampered access to justice for all members of society", - "values": [ - "Justice", - "Public security" - ] - }, - { - "text": "Intensify efforts to promote policies in the area of prevention, sanction and eradication of all forms of violence against women, including measures aimed at promoting their rights regardless of its religion, race, sexual identity or social condition", - "values": [ - "Freedom of religion and belief", - "Sexual Orientation and Gender Identity", - "Women's rights" - ] - }, - { - "text": "Conclude pending demarcation processes, in particular related to the Guaraní Kaiowá ", - "values": [ - "Indigenous peoples" - ] - }, - { - "text": "Ensure equal treatment and non-discrimination against lesbian, gay, bisexual and transgender persons, and other vulnerable groups", - "values": [ - "Sexual Orientation and Gender Identity" - ] - }, - { - "text": "Withdraw its general reservation to CEDAW", - "values": [ - "International instruments", - "Women's rights" - ] - }, - { - "text": "Ensure the accessibility of appropriate legal aid to safeguard access to justice for all, particularly for the most marginalized groups in society", - "values": [ - "Justice" - ] - }, - { - "text": "Take steps to ensure the operational independence of the Observatory of Places of Deprivation of Liberty by separating it from the executive branch and enabling it to select recruit and remunerate its own staff", - "values": [ - "Detention" - ] - }, - { - "text": "Prevent the continued police brutality and excessive use of force by law enforcement officials, as well as analyse and eliminate its concrete reasons", - "values": [ - "Human rights violations by state agents" - ] - }, - { - "text": "Continue its efforts to implement its Comprehensive Reparations Plan in order to fully ensure the rights of victims of acts of violence", - "values": [ - "Justice" - ] - }, - { - "text": "Ratify the International Convention for the Protection of All Persons from Enforced Disappearance and recognize the competence of its Committee, in accordance with articles 31 and 32 ", - "values": [ - "Enforced disappearances", - "International instruments", - "Treaty bodies" - ] - }, - { - "text": "Continue efforts to strengthen a culture of tolerance to eliminate all forms of discrimination against vulnerable groups ", - "values": [ - "Other" - ] - }, - { - "text": "Intensify efforts and measures to enhance and expand protection for migrant workers in Bahrain ", - "values": [ - "Labour", - "Migrants" - ] - }, - { - "text": "Improve cooperation with the United Nations treaty bodies by agreeing on timelines for submitting overdue reports ", - "values": [ - "Treaty bodies" - ] - }, - { - "text": "Continue the process of reforms in the area of criminal justice in line with the international obligations of Maldives", - "values": [ - "Justice" - ] - }, - { - "text": "Continue its efforts to ratify the main human rights treaties without delay, including the International Covenant on Civil and Political Rights and the International Covenant on Economic, Social and Cultural Rights", - "values": [ - "CP rights - general", - "ESC rights - general", - "International instruments" - ] - }, - { - "text": "Legally ban discriminatory ethnic profiling ", - "values": [ - "Minorities", - "Racial discrimination" - ] - }, - { - "text": "Adopt comprehensive measures to address violence against women and girls", - "values": [ - "Rights of the Child", - "Women's rights" - ] - }, - { - "text": "Continue the policy incorporating inmates to education and job training at different educational levels ", - "values": [ - "Detention", - "Development", - "Right to education" - ] - }, - { - "text": "Finalize the Federal Constitution by the end of 2011 ", - "values": [ - "Other" - ] - }, - { - "text": "Step up efforts to provide information and education on sexually transmitted diseases to its population, as well as to combat stigma against people living with HIV/AIDS", - "values": [ - "HIV - Aids", - "Right to health" - ] - }, - { - "text": "Grant investigative competences to the National Committee to combat violence against women and children created in 2000 ", - "values": [ - "Rights of the Child", - "Women's rights" - ] - }, - { - "text": "Allocate resources and accelerate national programmes on job creation, poverty reduction, decent housing, land restitution, gender equality and improvement of education and health care services", - "values": [ - "ESC rights - general" - ] - }, - { - "text": "Revise the human rights training programmes for the security forces, emphasizing the use of force according to the criteria of necessity and proportionality and putting an end to extra-judicial executions ", - "values": [ - "Extrajudicial executions", - "Human rights education and training", - "Human rights violations by state agents" - ] - }, - { - "text": "Develop strategies to address human rights violations stemming from its political and social instability ", - "values": [ - "General" - ] - }, - { - "text": "Develop a national strategy against racial discrimination, xenophobia and Islamophobia based on a dialogue with non-governmental organizations", - "values": [ - "Freedom of religion and belief", - "Racial discrimination" - ] - }, - { - "text": "Uphold the rule of law, including human rights in domestic law, by immediately reinstating the 1997 Constitution", - "values": [ - "Justice" - ] - }, - { - "text": "Develop programmes to raise awareness on legislation, in the area of gender equality between workers, employers and the judiciary, strengthen the existing measures, and promote new measures to combine family responsibilities with work", - "values": [ - "Women's rights" - ] - }, - { - "text": "Collect statistical data on cases of violence against women, including domestic violence as specific crime and finally establish shelters and safe housing for victims of domestic violence, that would be locally accessible, sufficiently and sustainably funded and of corresponding capacity", - "values": [ - "Women's rights" - ] - }, - { - "text": "Provide primary education accessible to all by making education compulsory at the primary level", - "values": [ - "Right to education" - ] - }, - { - "text": "Ensure comprehensive sexuality education with a view to preventing teen pregnancies and the spread of sexually transmitted infections, in particular HIV", - "values": [ - "HIV - Aids", - "Right to health", - "Rights of the Child", - "Women's rights" - ] - }, - { - "text": "Take the necessary measures to eliminate all discriminatory treatment towards persons with disabilities", - "values": [ - "Disabilities" - ] - }, - { - "text": "Make efforts to address the issue of enforced disappearance, such as ensuring accountability", - "values": [ - "Enforced disappearances" - ] - }, - { - "text": "Effectively implement the Gender Equality and Equity Plan 2010- 2022, by allocating technical and financial resources to achieve the envisaged objectives as well as the reopening of the emergency "line 114" to provide care to women victims of gender violence", - "values": [ - "Women's rights" - ] - }, - { - "text": "Review the compliance of national legislation with its obligations from the Convention on the Elimination of All Forms of Discrimination Against Women CEDAW, and strengthen anti-discrimination legislation and programmes through explicit inclusion of grounds of sexual orientation and gender identity", - "values": [ - "International instruments", - "Sexual Orientation and Gender Identity", - "Women's rights" - ] - }, - { - "text": "Adopt measures to end violations to due process in judicial proceedings", - "values": [ - "Justice" - ] - }, - { - "text": "Ratify the ICCPR, which it signed in 1998 ", - "values": [ - "CP rights - general", - "International instruments" - ] - }, - { - "text": "Conclude the process to create the National Secretariat for Indigenous Peoples", - "values": [ - "Indigenous peoples" - ] - }, - { - "text": "Remove barriers in accessing legal remedies against domestic violence including by improving the collaboration between relevant institutions and revisiting evidentiary requirements , and to ensure that restraining orders are enforced", - "values": [ - "Rights of the Child", - "Women's rights" - ] - }, - { - "text": "Fully implement the OSCE recommendations concerning the reform of election regulations, in close cooperation with the Office for Democratic Institutions and Human Rights ", - "values": [ - "Elections" - ] - }, - { - "text": "Provide foreign married women who are victims of domestic violence with legal safeguards and administrative guidelines for their protection, giving particular consideration to residence permits ", - "values": [ - "Women's rights" - ] - }, - { - "text": "Guinea is committed to doing everything in its power to fully implement the principle of gender equality in its education and legal systems and its institutions. The Government remains very concerned about the issue of violence against women.", - "values": [ - "Women's rights" - ] - }, - { - "text": "Consider ratifying the Optional Protocol to the Convention on the Rights of the Child (CRC) on the involvement of children in armed conflict.", - "values": [ - "International humanitarian law", - "International instruments", - "Rights of the Child" - ] - }, - { - "text": "Take the necessary steps to establish a national human rights institution in line with the Paris Principles, with competence to consider and act on complaints of human rights violations by public authorities, and with adequate financial and human resources", - "values": [ - "Human rights violations by state agents", - "National Human Rights Institution" - ] - }, - { - "text": "Take immediate measures to abolish the death penalty for crimes committed by persons when they were under the age of 18, and place a moratorium on public executions", - "values": [ - "Death penalty", - "Rights of the Child" - ] - }, - { - "text": "Increase its efforts on socio-economic reform and strengthen the law enforcement system toward enhancing national reconciliation, combating violence, illegal armed groups and maintaining public order", - "values": [ - "Justice", - "Public security" - ] - }, - { - "text": "Take effective measures in ensuring that the victims of trafficking, especially women, are protected and supported in an appropriate manner", - "values": [ - "Trafficking", - "Women's rights" - ] - }, - { - "text": "Ratify all international human rights conventions and protocols and those of the International Labour Organization and the Rome Statute of the International Criminal Court", - "values": [ - "International instruments", - "Justice", - "Labour" - ] - }, - { - "text": "Speed up the ratification of the two Optional Protocols to the CRC", - "values": [ - "International instruments", - "Rights of the Child" - ] - }, - { - "text": "Take all necessary measures to effectively abolish early marriages, particularly in terms of prevention, awareness-raising, monitoring and punishment ", - "values": [ - "Human rights education and training", - "Rights of the Child" - ] - }, - { - "text": "Draw up a national health policy in order to reduce the high rate of maternal mortality", - "values": [ - "Right to health", - "Women's rights" - ] - }, - { - "text": "Consider becoming a party to CRPD", - "values": [ - "Disabilities", - "International instruments" - ] - }, - { - "text": "Bahrain is currently examining the idea of drafting a national action plan on human rights education as soon as possible, in conjunction with relevant entities and organizations in Bahrain, and with expert input from the Office of the United Nations High Commissioner for Human Rights", - "values": [ - "Human rights education and training", - "Technical assistance and cooperation" - ] - }, - { - "text": "Review compliance of its criminal and civil codes with provisions on freedom of expression in the International Covenant on Civil and Political Rights", - "values": [ - "Freedom of opinion and expression", - "International instruments" - ] - }, - { - "text": "Criminalize torture and ensure impartial and effective investigations related to allegations of torture and punish the perpetrators of acts of torture", - "values": [ - "Torture and other CID treatment" - ] - }, - { - "text": "Increase its efforts to ensure effective investigation into the high number of homicides and into the abuse of power by police officials and to hold those responsible accountable ", - "values": [ - "Human rights violations by state agents" - ] - }, - { - "text": "Criminalize all forms of violence against women and hold the perpetrators of such violence accountable", - "values": [ - "Women's rights" - ] - }, - { - "text": "Consider ratifying the ILO Domestic Workers Convention, 2011 [No. 189]", - "values": [ - "International instruments", - "Labour" - ] - }, - { - "text": "Enact domestic violence legislation to ensure that women survivors of violence have legal protection from domestic violence", - "values": [ - "Rights of the Child", - "Women's rights" - ] - }, - { - "text": "Create a mechanism to ensure that all internally displaced persons, including 66,151 "Old IDPS" and further 37,123 living with host communities, receive a written statement detailing their entitlements and plans for return to their original homes", - "values": [ - "Internally displaced persons" - ] - }, - { - "text": "In the pledges that it will make to the Human Rights Council during the 2008 elections, Bahrain will confirm its adoption of "good practices".", - "values": [ - "Other" - ] - }, - { - "text": "Incorporate in its Framework a plan to undertake vulnerability assessments and to institute a plan for relocation of Nauruans living in vulnerable or high-risk zone to safer and habitable locations", - "values": [ - "Environment" - ] - }, - { - "text": "Stop the transfer of its population to the occupied territory and put an end to all measures that encourage or perpetuate the settlements", - "values": [ - "Other" - ] - }, - { - "text": "Take all necessary measures to prevent extrajudicial killings and enforced disappearances and carry out impartial investigations to hold perpetrators accountable", - "values": [ - "Enforced disappearances", - "Extrajudicial executions" - ] - }, - { - "text": "Redouble its efforts in maternal health, sexual and reproductive health and comprehensive contraceptive services", - "values": [ - "Right to health", - "Women's rights" - ] - }, - { - "text": "Establish a police complaints authority with active work and necessary technical assistance from the international community", - "values": [ - "Justice", - "Technical assistance and cooperation" - ] - }, - { - "text": "Take all measures to effectively combat all forms of violence and discrimination against women", - "values": [ - "Women's rights" - ] - }, - { - "text": "Implement policies and programmes for the prevention, rehabilitation and social integration of victims of sexual exploitation and abuse, particularly minors ", - "values": [ - "Rights of the Child", - "Women's rights" - ] - }, - { - "text": "Continue efforts to eliminate corporal punishment especially in schools.", - "values": [ - "Rights of the Child", - "Torture and other CID treatment" - ] - }, - { - "text": "Ratify and implement the core human rights instruments, in particular the Convention on the Elimination of All Forms of Discrimination against Women and the Optional Protocol to the Convention against Torture and Other Cruel, Inhuman or Degrading Treatment or Punishment, and abolish the death penalty, as previously recommended", - "values": [ - "Death penalty", - "Detention", - "International instruments", - "Torture and other CID treatment", - "UPR process", - "Women's rights" - ] - }, - { - "text": "Effectively protect the Palestinian population in the occupied West Bank, including East Jerusalem, against any form of discrimination which impairs the equitable access to basic services or natural resources, including water and land, or else the equal enjoyment of fundamental rights and freedoms, particularly the right to equal protection before the law ", - "values": [ - "Racial discrimination", - "Right to land", - "Right to water and sanitation" - ] - }, - { - "text": "Expedite the preparation and adoption of norms and regulations to implement the provisions of the Child Adoption Act and the 2011 Child Care and Protection Act ", - "values": [ - "Rights of the Child" - ] - }, - { - "text": "Repeal the 1980 Law on publications and amend other relevant legislation to ensure it is aligned with international human rights law on the freedom of expression ", - "values": [ - "Freedom of opinion and expression", - "International instruments" - ] - }, - { - "text": "Further strengthen efforts in the field of the right of education, including by increasing the national budget allocation for education and promoting multi-cultural education", - "values": [ - "Right to education" - ] - }, - { - "text": "Make efforts to enforce existing anti-discrimination legislation more effectively, and consider compiling statistics on ethnic minority groups in order to assess the extent and causes of inequality and evaluate the effectiveness of measures in place to address it", - "values": [ - "Minorities", - "Racial discrimination" - ] - }, - { - "text": "Swiftly conclude the process to create a National Human Rights Institution in accordance with the Paris Principles ", - "values": [ - "National Human Rights Institution" - ] - }, - { - "text": "Repeal the provisions of the penal code that penalize same-sex relations between consenting adults and put an end to the detention and harassment of LGBTI activists and allow them to freely exercise their right to assembly and peaceful protest", - "values": [ - "Detention", - "Freedom of association and peaceful assembly", - "Sexual Orientation and Gender Identity" - ] - }, - { - "text": "Implement the recommendation of treaty bodies and special procedures to introduce the offence of torture into the Criminal and Military Criminal Codes, as well as align rules and provisions on the statute of limitations with the Convention against Torture ", - "values": [ - "International instruments", - "Special procedures", - "Torture and other CID treatment" - ] - }, - { - "text": "Protect persons who are marginalized and most vulnerable from intolerance, xenophobia, and other forms of discrimination", - "values": [ - "Racial discrimination" - ] - }, - { - "text": "Increase further pro-poor public spending with a view to implementing the poverty eradication strategy ", - "values": [ - "Poverty" - ] - }, - { - "text": "Reconsider ratifying the International Convention on the Protection of the Rights of all the Migrant Workers and Members of their Families ", - "values": [ - "International instruments", - "Labour", - "Migrants" - ] - }, - { - "text": "Consider stepping up efforts to combat persisting stereotypical cultural attitudes on the role of men and women and continue improving access to the labour market and education for women ", - "values": [ - "Women's rights" - ] - }, - { - "text": "Work closely with humanitarian agencies to ensure their free and unimpeded access to all populations in need and that humanitarian aid is distributed transparently and reaches the most vulnerable citizens", - "values": [ - "Other" - ] - }, - { - "text": "Ratify the Second Optional Protocol to the International Covenant on Civil and Political Rights ", - "values": [ - "Death penalty", - "International instruments" - ] - }, - { - "text": "Bring all legislation concerning communication surveillance in line with international human rights standards, and especially ensure that all communications surveillance requires a test of necessity and proportionality", - "values": [ - "Privacy" - ] - }, - { - "text": "Adopt public policies to increase access to family planning and emergency contraception, comprehensive sexuality education and to decriminalize abortion in the cases of rape, incest, non-viability of the foetus and endangerment to the mother\u2019s health", - "values": [ - "Right to health", - "Women's rights" - ] - }, - { - "text": "Continue its efforts to ratify the International Convention on the Protection of the Rights of All Migrant Workers and Members of Their Families", - "values": [ - "International instruments", - "Labour", - "Migrants" - ] - }, - { - "text": "Call on the international community to provide economic and technical assistance to Turkmenistan to allow it to implement a strategy for economic, political and cultural development until 2020.", - "values": [ - "Development", - "Technical assistance and cooperation" - ] - }, - { - "text": "Broaden criminal legislation regarding racist acts by considering racist motivations of criminal offences as an aggravating circumstance at the time of sentencing.", - "values": [ - "Racial discrimination" - ] - }, - { - "text": "Establish sustainable and effective centres where women whose rights have been violated and who have been victims of abuse and violence can go and find support ", - "values": [ - "Women's rights" - ] - }, - { - "text": "Continue to strengthen its efforts to prevent sexual and gender-based violence by ensuring the provision of financial resources for the full implementation of the legal framework, including mandatory training with a gender perspective of all legal and law enforcement officials and health service personnel in order to ensure that they are able to respond effectively to all forms of violence against women", - "values": [ - "Human rights education and training", - "Women's rights" - ] - }, - { - "text": "Restrict the application of the death penalty to the most serious crimes according to international minimum standards.", - "values": [ - "Death penalty" - ] - }, - { - "text": "Continue with efforts to eliminate all barriers to the effective equality of women", - "values": [ - "Women's rights" - ] - }, - { - "text": "Ensure that the Seychelles Media Commission is balanced and representative by appointing independent and impartial citizens to serve on the Commission ", - "values": [ - "Freedom of the press" - ] - }, - { - "text": "Ensure that the new national plan [on children] of action is equipped with an evaluation mechanism", - "values": [ - "Rights of the Child" - ] - }, - { - "text": "Remove the reservations it has made to CEDAW ", - "values": [ - "International instruments", - "Women's rights" - ] - }, - { - "text": "Adopt and implement a sound legal framework and appropriate policies to address the issue of discriminatory practices against Roma in the education system, utilizing the definition of segregation provided by the case law of the European Court of Human Rights and of the regional court in Presov, including measures to ensure that the court%u2019s definition of ethnic segregation in education is disseminated and promoted to the relevant stakeholders", - "values": [ - "Minorities", - "Racial discrimination", - "Right to education" - ] - }, - { - "text": "Adopt measures necessary to ensure the independence of the Commissioners in accordance with the Paris Principles ", - "values": [ - "National Human Rights Institution" - ] - }, - { - "text": "Implement article 3 of the European Convention on Human Rights and abolish all legal or other restrictions for the release of sick or terminally sick inmates", - "values": [ - "Detention" - ] - }, - { - "text": "Transmit to the Committee on the Rights of the Child the combined third and fourth periodic reports and the reports for the two Optional Protocols to the Convention within the scheduled time", - "values": [ - "International instruments", - "Rights of the Child", - "Treaty bodies" - ] - }, - { - "text": "Eliminate the practice of racial profiling and surveillance by law enforcement officials", - "values": [ - "Human rights violations by state agents", - "Racial discrimination" - ] - }, - { - "text": "Continue to promote gender equality to ensure a level playing field for all women in all wards of the society ", - "values": [ - "Women's rights" - ] - }, - { - "text": "Release, immediately and unconditionally, all detainees, who have participated in peaceful protests lacking credible criminal charges ", - "values": [ - "Detention", - "Freedom of association and peaceful assembly" - ] - }, - { - "text": "Ratify the Council of Europe Convention on the Protection of Children against Sexual Exploitation and Sexual Abuse (the Lanzarote Convention)", - "values": [ - "International instruments", - "Rights of the Child" - ] - }, - { - "text": "Refrain from arbitrary arrests and make every effort to bring detainees before a judge within the statutory deadline of 48 hours ", - "values": [ - "Detention" - ] - }, - { - "text": "Implement, as early as possible, a witness protection programme for women victims of all forms of violence ", - "values": [ - "Women's rights" - ] - }, - { - "text": "Implement policies and measures which comprehensively address hate speech through legislative and institutional frameworks", - "values": [ - "Racial discrimination" - ] - }, - { - "text": "Consider signing and ratifying CEDAW, CRC and the International Convention on the Protection of the Rights of All Migrant Workers and Their Families ", - "values": [ - "International instruments", - "Labour", - "Migrants", - "Rights of the Child", - "Women's rights" - ] - }, - { - "text": "Take steps to eliminate discriminatory practices in housing and employment to fully comply with the 2009 Anti-Discrimination Act", - "values": [ - "Labour", - "Right to housing" - ] - }, - { - "text": "Place a greater focus on the issue of erased persons in the forthcoming period, given the long period of time for which those people have awaited a solution to the problem", - "values": [ - "Other", - "Statelessness and the right to nationality" - ] - }, - { - "text": "Reform the criminal procedure in order to avoid frequent delays of preventive detention ", - "values": [ - "Detention" - ] - }, - { - "text": "Keep under consideration the possible ratification of the International Covenant on Economic, Social and Cultural Rights, the International Convention on the Elimination of All Forms of Racial Discrimination and the International Convention on the Protection of the Rights of All Migrant Workers and Members of Their Families. ", - "values": [ - "ESC rights - general", - "International instruments", - "Labour", - "Migrants", - "Racial discrimination" - ] - }, - { - "text": "Ratify the Optional Protocol to the Convention on the Rights of the Child on the involvement of children in armed conflict and step up efforts to protect children and prevent their recruitment into the armed forces or armed groups and reintegrate them into civilian life in line with the Paris Commitments to protect children from unlawful recruitment or use by armed forces or armed groups and the Principles and Guidelines on Children Associated with Armed Forces or Armed Groups (the Paris Principles)", - "values": [ - "International humanitarian law", - "International instruments", - "Rights of the Child" - ] - }, - { - "text": "Undertake a participatory and inclusive process with all interested civil society organizations in Venezuela in the implementation of UPR recommendations ", - "values": [ - "Civil society", - "UPR process" - ] - }, - { - "text": "Make sufficient judicial staff and facilities available to restore the rule of law and to conduct screening of soldiers and police officers reporting back for duty to ensure that those responsible for human rights violations are excluded from further service and face trial in due process", - "values": [ - "Justice" - ] - }, - { - "text": "Continue efforts to eradicate poverty ", - "values": [ - "Poverty" - ] - }, - { - "text": "Design and implement vetting procedures to ensure that Seleka members responsible for abuses are not integrated into the armed forces and to follow its obligations under the Optional Protocol to the Convention on the Rights of the Child on the involvement of children in armed conflict when considering any recruitment or use of children", - "values": [ - "International humanitarian law", - "Rights of the Child" - ] - }, - { - "text": "Conclude the process leading to the adoption of the bill which seeks to incorporate femicide in the Criminal Code", - "values": [ - "Women's rights" - ] - }, - { - "text": "Take immediate action against discrimination of women by effectively enforcing women's right to equal treatment as it is guaranteed in the Ghanaian constitution, for example, by ensuring and promoting access to education", - "values": [ - "Right to education", - "Women's rights" - ] - }, - { - "text": "Repeal all provisions criminalizing sexual relations between consenting adults of the same sex, and incorporate sexual orientation as a basis for unlawful discrimination in all areas of labour legislation", - "values": [ - "Labour", - "Sexual Orientation and Gender Identity" - ] - }, - { - "text": "Implement programmes focused on employability, entrepreneurship and microfinance to make sure that young people find it easier to join the labour market", - "values": [ - "Development" - ] - }, - { - "text": "Allocate more resources for the implementation of national policies in favour of vulnerable social groups", - "values": [ - "Other" - ] - }, - { - "text": "Amend, without delay, the 2009 Press and Publications Act, to bring it in line with international standards on press freedom and to ensure that no provisions unduly restrict the rights of freedom of expression, assembly and association, in conformity with the International Covenant on Civil and Political Rights ", - "values": [ - "Freedom of association and peaceful assembly", - "Freedom of opinion and expression", - "Freedom of the press", - "International instruments" - ] - }, - { - "text": "Take measures to increase the participation of women in public life, both in terms of legislation and in terms of concrete action", - "values": [ - "Women's rights" - ] - }, - { - "text": "Accelerate the implementation of training and information programmes for law enforcement officers with a view to combating and suppressing the trafficking in women and girls, and to establish child protection networks to that end", - "values": [ - "Human rights education and training", - "Rights of the Child", - "Trafficking", - "Women's rights" - ] - }, - { - "text": "Further pursue investigations on human rights implications of counter-terrorism measures, such as secret detention programs, with a view to identifying allegations of torture or cruel, inhuman or degrading treatment of detainees ", - "values": [ - "Counter-terrorism", - "Detention", - "Torture and other CID treatment" - ] - }, - { - "text": "Adopt and comprehensively implement the draft law on the marriage among same-sex persons ", - "values": [ - "Sexual Orientation and Gender Identity" - ] - }, - { - "text": "Request OHCHR to dispatch a technical assistance team to advise the Government on treaty reporting using the common core documents - the advantages of interaction with special procedures, including country visits - and on the necessary steps for the establishment of a national human rights institution", - "values": [ - "National Human Rights Institution", - "Special procedures", - "Technical assistance and cooperation", - "Treaty bodies" - ] - }, - { - "text": "Implement the voluntary human rights targets approved in Human Rights Council resolution 9-12. ", - "values": [ - "General" - ] - }, - { - "text": "Put in place a moratorium on executions, with a view to ratifying the Second Optional Protocol to the International Covenant on Civil and Political Rights, aiming at the abolition of the death penalty and consider ratifying the Optional Protocol to International Covenant on Economic, Social and Cultural Rights, the Optional Protocol to the Convention on the Rights of the Child on a communications procedure, the Convention relating to the Status of Refugees and its 1967 Protocol, as well as the Rome Statute of the International Criminal Court", - "values": [ - "Asylum-seekers - refugees", - "Death penalty", - "ESC rights - general", - "International instruments", - "Justice", - "Rights of the Child" - ] - }, - { - "text": "Recognize the right to conscientious objection to military service in law and practice ", - "values": [ - "Freedom of religion and belief" - ] - }, - { - "text": "Develop programs allowing girls to stay in the educational system and avoid early drop-outs and the same should be provided for children with disabilities ", - "values": [ - "Disabilities", - "Right to education", - "Rights of the Child", - "Women's rights" - ] - }, - { - "text": "Expand government-funded resettlement services to newly arrived refugees and ensure a right to an adequate standard of living through the establishment of a National Plan of Local Integration", - "values": [ - "Asylum-seekers - refugees", - "Right to housing" - ] - }, - { - "text": "Consider increasing its dialogue with treaty bodies and special procedures.", - "values": [ - "Special procedures", - "Treaty bodies" - ] - }, - { - "text": "Strengthen the efforts of reforming the punitive system, including the development of the prison and detention conditions", - "values": [ - "Detention", - "Justice" - ] - }, - { - "text": "The Government of Tuvalu remains committed and supportive of ongoing national discussions on the potential establishment of a national human rights institution. It is also supportive of a regional human rights commission.", - "values": [ - "National Human Rights Institution" - ] - }, - { - "text": "Establish a moratorium on the death penalty with a view to its abolishing in the shortest delay", - "values": [ - "Death penalty" - ] - }, - { - "text": "Ensure the provision of technical and financial resources to the National Human Rights Commission to enable it to operate effectively and compliant with the Paris Principles and distinguish its roles and responsibilities from that of the Ministry of Human Rights", - "values": [ - "National Human Rights Institution" - ] - }, - { - "text": "Incorporate economic, social and cultural rights in the Bill of Rights Act ", - "values": [ - "ESC rights - general" - ] - }, - { - "text": "Intensify employment programs for youth", - "values": [ - "Rights of the Child" - ] - }, - { - "text": "Step up reform of the justice system with a view to addressing effectively access to justice, interference in judicial proceedings and the backlog of cases", - "values": [ - "Justice" - ] - }, - { - "text": "Continue efforts undertaken to promote the rights of women and children, particularly in areas such as education, safety and health", - "values": [ - "Right to education", - "Right to health", - "Rights of the Child", - "Women's rights" - ] - }, - { - "text": "Take concrete steps to ensure the 2015 national elections are more representative and participative than those in 2010, especially around freedom of assembly, and encourage debate among political parties ", - "values": [ - "Elections" - ] - }, - { - "text": "Ratify the Convention against Torture, the Convention on the Rights of Persons with Disabilities, the International Convention on the Elimination of All Forms of Racial Discrimination, as well as the Rome Statute of the International Criminal Court", - "values": [ - "Disabilities", - "International instruments", - "Justice", - "Racial discrimination", - "Torture and other CID treatment" - ] - }, - { - "text": "Ratify the ICESCR at an early stage ", - "values": [ - "ESC rights - general", - "International instruments" - ] - }, - { - "text": "Improve facilities in places of detention for people with physical disabilities and improve access to adequate care for prisoners with mental health issues ", - "values": [ - "Detention", - "Disabilities", - "Right to health" - ] - }, - { - "text": "Take all possible measures to prevent the recruitment of children and the use of child combatants by the Taliban.", - "values": [ - "Rights of the Child" - ] - }, - { - "text": "Ratify the Rome Statute and the Optional Protocols to ICCPR and the Optional Protocol to ICESCR ", - "values": [ - "CP rights - general", - "Death penalty", - "ESC rights - general", - "International instruments" - ] - }, - { - "text": "Raise public awareness about the equality of rights of women with regard to nationality, consider amending the national legal system to ensure the equal rights for women and men in this area, and continue working and promoting national initiatives aimed at gender equality in the country", - "values": [ - "Human rights education and training", - "Women's rights" - ] - }, - { - "text": "Continue its efforts to realize the goals of poverty reduction and universal access to primary education ", - "values": [ - "Poverty", - "Right to education" - ] - }, - { - "text": "Establish a permanent independent human rights monitoring body.", - "values": [ - "National Human Rights Institution" - ] - }, - { - "text": "Intensify measures aimed at enhancing the equal representation of women in politics and the economy, both at the confederation and cantonal levels", - "values": [ - "Women's rights" - ] - }, - { - "text": "Report regularly to the Committee on the Elimination of Discrimination against Women. to recruit more women for public office and to adopt measures requiring equal pay for equal work.", - "values": [ - "Treaty bodies", - "Women's rights" - ] - }, - { - "text": "Ratify the International Convention on the Protection of the Rights of All Migrants Workers and Members of their Families ", - "values": [ - "International instruments", - "Labour", - "Migrants" - ] - }, - { - "text": "Place high on the agenda the human rights of indigenous peoples when addressing questions of impunity, and improve access to justice for indigenous peoples, including by strengthening public defense for indigenous peoples and providing better translation services", - "values": [ - "Impunity", - "Indigenous peoples", - "Justice" - ] - }, - { - "text": "Adopt further measures to firmly crack down on cult organizations to safeguard freedom of worship and the normal religious order", - "values": [ - "Freedom of religion and belief" - ] - }, - { - "text": "Ensure that measures be taken during military operations aimed at mitigating the impact of the armed conflict on children, by guaranteeing the principles of distinction, proportionality and precaution ", - "values": [ - "International humanitarian law", - "Rights of the Child" - ] - }, - { - "text": "Adopt and implement a national plan for children that includes legislative measures, such as the prohibition of the use of children in armed conflicts ", - "values": [ - "International humanitarian law", - "Rights of the Child" - ] - }, - { - "text": "Guarantee unrestricted and unconditional access for medical personnel and vehicles and humanitarian assistance, particularly in the city of Aleppo, which has been severely affected in recent weeks", - "values": [ - "Other" - ] - }, - { - "text": "Take appropriate measures and develop an action plan while continuing the cooperation with the international community to implement the MDGs, in particular poverty reduction, the right to food and food security ", - "values": [ - "Development", - "Poverty", - "Right to food" - ] - }, - { - "text": "Develop and implement a comprehensive strategy and judicial reforms to effectively reduce the backlog of cases", - "values": [ - "Justice" - ] - }, - { - "text": "Consider adapting domestic legislation to international standards and instruments in the field of refuge and asylum ", - "values": [ - "Asylum-seekers - refugees" - ] - }, - { - "text": "Continue reform towards eventual abolition of the death penalty, including greater transparency around its use ", - "values": [ - "Death penalty" - ] - }, - { - "text": "Establish a national human rights institution that is in line with the Paris Principles and fully independent of Government control", - "values": [ - "National Human Rights Institution" - ] - }, - { - "text": "Set up a comprehensive long-term strategy for refugees and migrants, and to prevent the violation of the principle of non-refoulement/forced return ", - "values": [ - "Asylum-seekers - refugees", - "Migrants" - ] - }, - { - "text": "Promoting primary education for all", - "values": [ - "Right to education" - ] - }, - { - "text": "Take measures necessary to protect the rights of LGBT persons effectively and investigate and prosecute alleged cases of violence and discrimination against LGBT persons", - "values": [ - "Sexual Orientation and Gender Identity" - ] - }, - { - "text": "Increase involvement in matters of State by women and ethnic minorities ", - "values": [ - "Minorities", - "Women's rights" - ] - }, - { - "text": "Increase awareness, including through public campaigns of human rights and fundamental freedom", - "values": [ - "Human rights education and training" - ] - }, - { - "text": "Investigate and prosecute all perpetrators of violence and hate crimes against Roma and amend the Criminal Code so as to introduce and adopt stronger punishments for racially motivated crimes committed by police officers ", - "values": [ - "Human rights violations by state agents", - "Minorities", - "Racial discrimination" - ] - }, - { - "text": "Establish the national mechanism for the prevention of torture, in accordance with OP-CAT", - "values": [ - "Detention", - "International instruments", - "Torture and other CID treatment" - ] - }, - { - "text": "Create effective mechanisms for the social integration of Roma", - "values": [ - "Minorities" - ] - }, - { - "text": "Ensure that religious minorities can freely exercise their right to freedom of thought, conscience and religion", - "values": [ - "Freedom of religion and belief", - "Minorities" - ] - }, - { - "text": "Accelerate the process of alignment of its national legislation with the new Constitution and incorporate its international commitments into domestic law", - "values": [ - "General" - ] - }, - { - "text": "Continue with the actions for the promotion and protection of the rights of indigenous peoples ", - "values": [ - "Indigenous peoples" - ] - }, - { - "text": "Ensure that these crimes against political activists and journalists are independently and impartially investigated and that their perpetrators are brought to justice", - "values": [ - "Freedom of association and peaceful assembly", - "Freedom of the press" - ] - }, - { - "text": "Quickly ratify and implement CAT ", - "values": [ - "International instruments", - "Torture and other CID treatment" - ] - }, - { - "text": "Take further measures to protect and integrate immigrants, asylum-seekers and persons belonging to minorities, including by carrying out investigations into violent attacks against such individuals", - "values": [ - "Asylum-seekers - refugees", - "Migrants", - "Minorities" - ] - }, - { - "text": "Step up the actions in favour of fighting poverty and social exclusion, focusing on minorities and vulnerable persons ", - "values": [ - "Minorities", - "Poverty" - ] - }, - { - "text": "Take promptly any necessary action to comply with any findings of the review of the draft Shia Personal Status Law with the Constitution.", - "values": [ - "Women's rights" - ] - }, - { - "text": "Establish measures and policies to address the stigmatization of persons with albinism and ensure they are effectively protected against discrimination", - "values": [ - "Minorities" - ] - }, - { - "text": "Sign and ratify the Convention against Torture and Other Cruel, Inhuman or Degrading Treatment or Punishment", - "values": [ - "International instruments", - "Torture and other CID treatment" - ] - }, - { - "text": "Continue to strengthen its anti-racist and anti-discrimination measures", - "values": [ - "Racial discrimination" - ] - }, - { - "text": "Implement effective means of dismantling all forms of illegal armed groups that have emerged since the demobilization process began.", - "values": [ - "Justice" - ] - }, - { - "text": "Introduce professional training, capacity-building and cooperation for law enforcement and judicial authorities to identify and address racially motivated crimes ", - "values": [ - "Justice" - ] - }, - { - "text": "Further consolidate their successful programmes and policies, mainly in the field of economic, social and cultural rights, with emphasis on its sounded educational policy for all", - "values": [ - "ESC rights - general", - "Right to education" - ] - }, - { - "text": "Adopt appropriate measures to guarantee the independence and impartiality of the National Human Rights Commission, and ensure its ability to deal with complaints and investigate violations ", - "values": [ - "National Human Rights Institution" - ] - }, - { - "text": "Enhance the engagement towards increasing the role of civil society, especially by widening the space for political debate and ensuring the right of human rights defenders, opposition parties and journalists to freely carry out their activities", - "values": [ - "Civil society", - "Freedom of association and peaceful assembly", - "Freedom of the press", - "Human rights defenders" - ] - }, - { - "text": "Continue providing ODA in line with the United Nations target of 0.7 per cent of GDP ", - "values": [ - "Development" - ] - }, - { - "text": "Continue to enhance efforts to further improve the status of women to enable them to reach their full potential and contribute towards the social and economic development of the country", - "values": [ - "Women's rights" - ] - }, - { - "text": "Sign and ratify the CRPD", - "values": [ - "Disabilities", - "International instruments" - ] - }, - { - "text": "Implement measures to ensure speedier resolution of legal cases, for example, encouraging out of courts settlements and better use of information technology ", - "values": [ - "Justice" - ] - }, - { - "text": "Continue strengthening its correct education policies as well as the social protection programmes which are being implemented, with a view to providing the best standard of living for its people", - "values": [ - "Right to education" - ] - }, - { - "text": "The delegation stated that the new Government was fully committed to the protection of the rights of LGBTI persons.", - "values": [ - "Sexual Orientation and Gender Identity" - ] - }, - { - "text": "Strengthen its efforts to increase the number of women in high-ranking posts, particularly in academia", - "values": [ - "Women's rights" - ] - }, - { - "text": "Continue to address gender inequality ", - "values": [ - "Women's rights" - ] - }, - { - "text": "Abolish juvenile death penalty and corporal punishment", - "values": [ - "Death penalty", - "Rights of the Child", - "Torture and other CID treatment" - ] - }, - { - "text": "Strengthening of efforts to take action against criminals who instigate, intimidate or help others to commit self-immolations", - "values": [ - "Other" - ] - }, - { - "text": "Review the Internal Security Act of 1982 in order to bring it into line with international standards ", - "values": [ - "Public security" - ] - }, - { - "text": "Establish the rule of law and apply it fairly and equally in order to realize national reconciliation", - "values": [ - "Justice" - ] - }, - { - "text": "Implement and enforce national uniform standards of access to buildings, information, and communications for persons with disabilities ", - "values": [ - "Disabilities" - ] - }, - { - "text": "Prohibit absolutely corporal punishment inflicted on children in all environments, as well as the use, acquisition or the offering of children in the production of pornography and pornographic spectacles", - "values": [ - "Rights of the Child", - "Torture and other CID treatment" - ] - }, - { - "text": "Further strengthen access of public services with cultural relevance to its people", - "values": [ - "ESC rights - general" - ] - }, - { - "text": "Implement strategies in combating gender inequality as well as discriminatory practices against women and strengthen the Gender and Family Issues Unit within the Office of the Deputy Prime Minister in both human and financial terms", - "values": [ - "Women's rights" - ] - }, - { - "text": "Improve support to victims of sexual violence and facilitate their access to justice, notably by simplifying the administration of justice and their access to medical and psychosocial care", - "values": [ - "Rights of the Child", - "Women's rights" - ] - }, - { - "text": "Increase its efforts, especially educational and public awareness measures, to improve the realization of women's rights.", - "values": [ - "Human rights education and training", - "Women's rights" - ] - }, - { - "text": "Provide better health provisions in prisons ", - "values": [ - "Detention" - ] - }, - { - "text": "Continue its efforts to adopt the law on Human Trafficking and Protection of Victims", - "values": [ - "Trafficking" - ] - }, - { - "text": "Enable additional resources to strengthen the Human Rights Commission", - "values": [ - "National Human Rights Institution" - ] - }, - { - "text": "Consider the possibility of ratifying the Optional Protocol to the Convention on the Elimination of All Forms of Discrimination against Women, and the Rome Statute", - "values": [ - "International instruments", - "Justice", - "Women's rights" - ] - }, - { - "text": "Deepen the actions taken against discrimination and violence against women, particularly guaranteeing an effective access to courts and strengthening assistance and accompaniment to the victims", - "values": [ - "Women's rights" - ] - }, - { - "text": "Incorporate clear definitions of "sale of children" and "trafficking in children" in the Criminal Code and Anti-trafficking Act respectively, and specify the penalties for offenders, under the Criminal Code, in accordance with the Palermo Protocol", - "values": [ - "International instruments", - "Rights of the Child", - "Trafficking" - ] - }, - { - "text": "Bring the definition of trafficking in its legislation into line with international law - establish better processes to identify victims - and address the special needs of child victims ", - "values": [ - "Rights of the Child", - "Trafficking" - ] - }, - { - "text": "Establish the independent children's commission", - "values": [ - "Rights of the Child" - ] - }, - { - "text": "Hold a transparent and inclusive Constitutional reform process and referendum by ensuring that consultative bodies, such as National and Sector Group Convention, are composed of a representative balance of civil society and government stakeholders", - "values": [ - "Civil society" - ] - }, - { - "text": "Continue to make efforts to guarantee fully the principle of non-discrimination. these efforts will be further boosted by the work of the new Ministry for the Advancement of Woman", - "values": [ - "Women's rights" - ] - }, - { - "text": "Continue to intensify the efforts undertaken in order to promote and protect children's rights, particularly in reference to the implementation of effective measures for eradicating child labour", - "values": [ - "Labour", - "Rights of the Child" - ] - }, - { - "text": "Establish an immediate official moratorium on the use of death penalty", - "values": [ - "Death penalty" - ] - }, - { - "text": "Consolidate the protection of women\u2019s human rights with new mechanisms and laws in this area", - "values": [ - "Women's rights" - ] - }, - { - "text": "Sign and ratify the Optional Protocol to the Convention against Torture and Other Cruel, Inhuman or Degrading Treatment or Punishment as well as ratify the Convention on the Rights of Persons with Disabilities \n", - "values": [ - "Detention", - "Disabilities", - "International instruments", - "Torture and other CID treatment" - ] - }, - { - "text": "Consider further extension for application resolving the status of displaced or internally displaced persons", - "values": [ - "Internally displaced persons" - ] - }, - { - "text": "Introduce a de jure moratorium on the death penalty and to adopt a law abolishing that penalty", - "values": [ - "Death penalty" - ] - }, - { - "text": "Adhere and adapt its national legislation to the Arms Trade Treaty and sign the Treaty on the Prohibition of Nuclear Weapons", - "values": [ - "International instruments", - "Public security" - ] - }, - { - "text": "Take all necessary measures to provide appropriate support to allow disadvantaged families and their children to move out of poverty sustainably and continue to provide assistance to those who remain under the poverty line ", - "values": [ - "Poverty", - "Rights of the Child" - ] - }, - { - "text": "Declare a moratorium on executions with a view to abolishing the death penalty", - "values": [ - "Death penalty" - ] - }, - { - "text": "Take immediate action to accede to the major human rights instruments, leading with the International Covenant on Civil and Political Rights and the International Covenant on Economic, Social and Cultural Rights", - "values": [ - "CP rights - general", - "ESC rights - general", - "International instruments" - ] - }, - { - "text": "Ensure the education and training of girls and women, including access to education on sexual and reproductive health", - "values": [ - "Right to education", - "Right to health", - "Rights of the Child", - "Women's rights" - ] - }, - { - "text": "Take practical measures to provide safer working conditions, suitable for its citizens", - "values": [ - "Labour" - ] - }, - { - "text": "Take the appropriate measures to abolish the death penalty from its criminal justice system", - "values": [ - "Death penalty" - ] - }, - { - "text": "Combat violence against women and trafficking of child victims of prostitution", - "values": [ - "Rights of the Child", - "Trafficking", - "Women's rights" - ] - }, - { - "text": "Continue its positive efforts with a view to promoting equality and nondiscrimination against different national minorities living together in the country", - "values": [ - "Minorities" - ] - }, - { - "text": "Introduce a comprehensive strategy to eliminate patriarchal attitudes and stereotypes that discriminate against women, protect media pluralism and guarantee freedom of speech and access to information and education ", - "values": [ - "Freedom of opinion and expression", - "Freedom of the press", - "Right to education", - "Women's rights" - ] - }, - { - "text": "Interpret the Helms Amendment on the Allocation of Foreign Assistance in such a way that United States foreign assistance enables safe abortion for women and girls who have been raped and impregnated in conflict situations", - "values": [ - "Rights of the Child", - "Women's rights" - ] - }, - { - "text": "Ratify the OP-CRC-SC with a view to providing better implementation to the Convention on the Rights of the Child", - "values": [ - "International instruments", - "Rights of the Child", - "Trafficking" - ] - }, - { - "text": "Ratify the International Covenant on Civil and Political Rights, the International Covenant on Economic, Social and Cultural Rights and the Convention against Torture and Other Cruel, Inhuman or Degrading Treatment or Punishment ", - "values": [ - "CP rights - general", - "ESC rights - general", - "International instruments", - "Torture and other CID treatment" - ] - }, - { - "text": "Continue its efforts in the area of women's rights and ensure the effective implementation of the sixth national action plan on the fight against gender-based violence", - "values": [ - "Women's rights" - ] - }, - { - "text": "Extend an open and standing invitation to all special procedures", - "values": [ - "Special procedures" - ] - }, - { - "text": "Take effective measures to counter Islamophobia and violence against Moslems, and adopt necessary legislation ", - "values": [ - "Racial discrimination" - ] - }, - { - "text": "Properly investigate extrajudicial killings and bring to justice alleged perpetrators, to ensure that all police and counter-terrorism activities are carried out in compliance with the country's international obligations", - "values": [ - "Counter-terrorism", - "Extrajudicial executions" - ] - }, - { - "text": "Continue efforts to eradicate harmful traditional practices such as child marriage and female genital mutilation", - "values": [ - "Rights of the Child", - "Torture and other CID treatment", - "Women's rights" - ] - }, - { - "text": "Ratify the Protocol that establishes a communication procedure relating to the Convention of the Rights of the Child", - "values": [ - "International instruments", - "Rights of the Child" - ] - }, - { - "text": "Continue providing free legal aid to the most vulnerable citizens ", - "values": [ - "Minorities" - ] - }, - { - "text": "Confirm its decision to abolish the death penalty in the international framework by ratifying the Second Optional Protocol to the International Covenant to the Civil and Political Rights aimed at abolishing the death penalty", - "values": [ - "Death penalty", - "International instruments" - ] - }, - { - "text": "Continue to make efforts for the enjoyment of the rights to work, health, education and food", - "values": [ - "Labour", - "Right to education", - "Right to food", - "Right to health" - ] - }, - { - "text": "Fully cooperate with the International Criminal Court for all open cases, especially for the execution of arrest warrants issued by the Court", - "values": [ - "International instruments", - "Justice" - ] - }, - { - "text": "Continue its efforts to eliminate all forms of violence and discrimination against women ", - "values": [ - "Women's rights" - ] - }, - { - "text": "Continue the implementation of the national strategy to encourage women to stand for elections and elected positions ", - "values": [ - "Elections", - "Women's rights" - ] - }, - { - "text": "Positively consider extending a standing invitation to special procedures of the Human Rights Council ", - "values": [ - "Special procedures" - ] - }, - { - "text": "Steps be taken to enhance and strengthen the independence of the judiciary", - "values": [ - "Justice" - ] - }, - { - "text": "Continue efforts to eradicate stereotypes regarding the position of women in society and to set specific goals, targets and time frames to increase the representation of women, including Roma women, in legislative assemblies and government positions", - "values": [ - "Minorities", - "Women's rights" - ] - }, - { - "text": "Further strengthen efforts in the area of preventing and combating illegal migration, including through high-risk sea boats", - "values": [ - "Migrants" - ] - }, - { - "text": "Undertake awareness-raising campaigns on sexual exploitation of children ", - "values": [ - "Human rights education and training", - "Rights of the Child" - ] - }, - { - "text": "Sign and ratify CRPD and OP-CEDAW", - "values": [ - "Disabilities", - "International instruments", - "Women's rights" - ] - }, - { - "text": "Develop new strategies to overcome the difficulties posed by traditional and customary practices which lie in the way of promoting human rights", - "values": [ - "Other" - ] - }, - { - "text": "Repeal criminal provisions against persons based on their sexual orientation ", - "values": [ - "Sexual Orientation and Gender Identity" - ] - }, - { - "text": "Continue the adoption of measures aimed at ensuring the effective implementation of the Law on access to public information in all branches of the State", - "values": [ - "Freedom of opinion and expression" - ] - }, - { - "text": "Improve access to justice of the victims of domestic violence ", - "values": [ - "Rights of the Child", - "Women's rights" - ] - }, - { - "text": "Continue promoting education at all levels, bearing in mind the cooperation of friendly countries ", - "values": [ - "Right to education" - ] - }, - { - "text": "Continue with the proper implementation of the Convention on the Rights of Persons with Disabilities, particularly with regard to the exercise of their political rights ", - "values": [ - "Disabilities", - "International instruments" - ] - }, - { - "text": "Favourably consider the possibility of drawing up a national plan of action to protect the rights of children, as recommended by the Committee on the Rights of the Child", - "values": [ - "Rights of the Child", - "Treaty bodies" - ] - }, - { - "text": "Take further measures to prevent trafficking in persons, in investigating and prosecuting offenders, and provide effective support and redress to victims", - "values": [ - "Trafficking" - ] - }, - { - "text": "Improve detention conditions in general, particularly for women and children", - "values": [ - "Detention", - "Rights of the Child", - "Women's rights" - ] - }, - { - "text": "Adopt more comprehensive legislation to combat trafficking in persons ", - "values": [ - "Trafficking" - ] - }, - { - "text": "Provide state authorities, including law enforcement and judicial officials, with human rights training for the protection of women and members of minority groups, such as lesbian, gay, bisexual, and transgender persons", - "values": [ - "Human rights education and training", - "Minorities", - "Sexual Orientation and Gender Identity", - "Women's rights" - ] - }, - { - "text": "Recognize the competence of the Committee on the Elimination of Racial Discrimination to receive and consider individual complaints.", - "values": [ - "Racial discrimination", - "Treaty bodies" - ] - }, - { - "text": "Investigate all reports of attacks on journalists and human rights defenders, and bring the perpetrators to justice", - "values": [ - "Freedom of the press", - "Human rights defenders" - ] - }, - { - "text": "Take measures aimed at preventing threats and intimidation against journalists and human rights defenders, as well as against opponents of the Government", - "values": [ - "Freedom of the press", - "Human rights defenders" - ] - }, - { - "text": "Ensure adequate training for court officials handling cases of discrimination", - "values": [ - "Human rights education and training" - ] - }, - { - "text": "Implement foster care programmes and alternatives to the penalty of deprivation of liberty", - "values": [ - "Detention" - ] - }, - { - "text": "Strengthen the democratic institutions ", - "values": [ - "General" - ] - }, - { - "text": "Tighten the gap in salaries between men and women to achieve equality ", - "values": [ - "Women's rights" - ] - }, - { - "text": "Issue a bill that criminalizes defamation of religious prophets and symbols as well as criminalizes hate speech in the media which creates incitement to hatred and xenophobia", - "values": [ - "Freedom of opinion and expression", - "Freedom of religion and belief", - "Racial discrimination" - ] - }, - { - "text": "Fully incorporate the provisions of the Convention on the Elimination of All Forms of Discrimination against Women into its domestic legal system, including through the on-going process of the amendment of the Constitution ", - "values": [ - "International instruments", - "Women's rights" - ] - }, - { - "text": "Seek technical assistance from the international community with regard to establishing a National Human Rights Institution, intensifying public awareness in the area of human rights, improving school curriculums and improving financial and social administration in general ", - "values": [ - "National Human Rights Institution", - "Technical assistance and cooperation" - ] - }, - { - "text": "End the deliberate and indiscriminate attacks against civilians in Darfur and prosecute those responsible for these attacks ", - "values": [ - "International humanitarian law" - ] - }, - { - "text": "Reinforce initiative to mobilize assistance and external resources to face tuberculosis, malaria and diarrheal infections ", - "values": [ - "Right to health", - "Technical assistance and cooperation" - ] - }, - { - "text": "Share its experiences in promoting human rights education with other countries ", - "values": [ - "Human rights education and training" - ] - }, - { - "text": "Continue to monitor the implementation of the National Strategy for Combating Violence against Women", - "values": [ - "Women's rights" - ] - }, - { - "text": "Continue the patterns that it has legitimately and sovereignly marked out for its democratic course and good governance, with the effective implementation of the culture of acknowledging and respecting each and every one of the human rights in the idiosyncratic customs of the societies and cultures that compose the mosaic of the State of Equatorial Guinea ", - "values": [ - "Other" - ] - }, - { - "text": "Continue strengthening efforts to ensure a more active role of women in all spheres of society", - "values": [ - "Women's rights" - ] - }, - { - "text": "Make every effort to uphold its clear obligations under international and African human rights treaties to respect the right to life and freedoms of expression and assembly ", - "values": [ - "Freedom of association and peaceful assembly", - "Freedom of opinion and expression", - "Other" - ] - }, - { - "text": "Ensure that evictions from unauthorized Roma camps are carried out in full adherence with the law and work to better integrate Romani individuals into French society through provision of educational and employment opportunities ", - "values": [ - "Labour", - "Minorities", - "Right to education", - "Right to health" - ] - }, - { - "text": "Adopt necessary policy measures to enable women to accede, under equal conditions, to positions of responsibility in the public and private sector ", - "values": [ - "Women's rights" - ] - }, - { - "text": "Ratify the Istanbul Convention of the Council of Europe on violence against women and domestic violence", - "values": [ - "International instruments", - "Women's rights" - ] - }, - { - "text": "Continue to focus on the overall improvement in the quality of education, particularly in rural areas ", - "values": [ - "Right to education" - ] - }, - { - "text": "Ensure the independence of the judiciary and international standards of fair trial, including the right to be speedily tried, the right to be informed of the charges, the right to an adequate defence, the right to legal counsel of one's own choosing, and the right of appeal in front of a higher tribunal ", - "values": [ - "Justice" - ] - }, - { - "text": "Continue its efforts on poverty reduction", - "values": [ - "Poverty" - ] - }, - { - "text": "Seek from the international community, especially United Nations organs and programmes, the necessary technical and financial assistance for the implementation of periodic review recommendations ", - "values": [ - "Technical assistance and cooperation", - "UPR process" - ] - }, - { - "text": "Raise public awareness on the rights of vulnerable groups of people, as stipulated in the Italian legal system", - "values": [ - "Human rights education and training" - ] - }, - { - "text": "Adopt, as soon as possible, the road map that guides political alternation at the end of the mandate of the Transitional Federal Institutions and consider that it should include principles of good governance, creation of institutional capacity and provision of basic social services ", - "values": [ - "Justice" - ] - }, - { - "text": "Continue its efforts in launching the NHRAP", - "values": [ - "General" - ] - }, - { - "text": "Establish systematic registration of all newborn children and adopt further measures, including awareness-raising campaigns, to fight child labour and violence against children.", - "values": [ - "Human rights education and training", - "Labour", - "Rights of the Child" - ] - }, - { - "text": "Strengthen measures to promote and protect the rights of the child, including measures against sexual and labour exploitation", - "values": [ - "Labour", - "Rights of the Child" - ] - }, - { - "text": "Consider ratifying CED and ICRMW ", - "values": [ - "Enforced disappearances", - "International instruments", - "Labour", - "Migrants" - ] - }, - { - "text": "Expand current efforts, as appropriate, to counter online intolerance", - "values": [ - "Other", - "Racial discrimination" - ] - }, - { - "text": "Ratify and implement the CED", - "values": [ - "Enforced disappearances", - "International instruments" - ] - }, - { - "text": "Take early action to become a party to the International Covenant on Economic, Social and Cultural Rights ICESCR and the International Covenant on Civil and Political Rights ICCPR ", - "values": [ - "CP rights - general", - "ESC rights - general", - "International instruments" - ] - }, - { - "text": "Building on its constructive engagement in this session, strengthen its efforts to bring its reporting obligations up to date as soon as possible", - "values": [ - "Treaty bodies" - ] - }, - { - "text": "Adopt the new law on NGOs to fully guarantee to the civil society a set of rights in conformity with international standards", - "values": [ - "Civil society", - "Freedom of association and peaceful assembly" - ] - }, - { - "text": "Guarantee protection of human rights of nomad pastors, most of them of the Fulani ethnicity", - "values": [ - "Minorities" - ] - }, - { - "text": "Work towards ending the prosecution of civilians in military courts and transfer all cases of civilians facing proceedings before military courts to civilians courts", - "values": [ - "Justice" - ] - }, - { - "text": "Ratify the Marrakesh Treaty to Facilitate Access to Published Works for Persons Who Are Blind, Visually Impaired, or Otherwise Print Disabled", - "values": [ - "Disabilities", - "International instruments" - ] - }, - { - "text": "Withdraw reservations from the International Covenant on Economic, Social and Cultural Rights", - "values": [ - "ESC rights - general", - "International instruments" - ] - }, - { - "text": "Move forward with efforts to expand the work of the Sexual and Gender-Based Violence - SGBV - Unit, under the Ministry of Justice, and to create permanent SGBV Units around the country", - "values": [ - "Women's rights" - ] - }, - { - "text": "Strengthen its cooperation with the human rights mechanisms, in particular with the special procedures", - "values": [ - "Special procedures" - ] - }, - { - "text": "Continue its efforts for the implementation of the Sustainable Development Goals, especially those related to education, and for their integration in the national policies", - "values": [ - "Development", - "Right to education" - ] - }, - { - "text": "The Government of Guatemala reiterates its commitment to promoting and protecting human rights, as well as to implementing the recommendations made in the universal periodic review conducted by the United Nations Human Rights Council, so as to ensure the effective implementation of the human rights of all Guatemalans", - "values": [ - "UPR process" - ] - }, - { - "text": "Continue strengthening measures to facilitate access by all to justice", - "values": [ - "Justice" - ] - }, - { - "text": "Deepen measures aimed at guaranteeing the fight against impunity of perpetrators of acts of gender violence and sexual abuse, in particular against women and girls living in the IDP camps", - "values": [ - "Internally displaced persons", - "Rights of the Child", - "Women's rights" - ] - }, - { - "text": "Provide assistance and redress to victims of trafficking in persons ", - "values": [ - "Trafficking" - ] - }, - { - "text": "Establish its national human rights institution in accordance with the Paris Principles before the end of 2010", - "values": [ - "National Human Rights Institution" - ] - }, - { - "text": "Establish a moratorium of capital executions with a view to fully abolish the death penalty ", - "values": [ - "Death penalty" - ] - }, - { - "text": "Consider signing and ratifying ICRMW ", - "values": [ - "International instruments", - "Labour", - "Migrants" - ] - }, - { - "text": "Germany also remained committed to protecting the human rights of all migrants, minorities and religious groups.", - "values": [ - "Freedom of religion and belief", - "Migrants", - "Minorities" - ] - }, - { - "text": "Implement the measures contained in the resolution recently adopted by the Committee of Ministers of the Council of Europe on the implementation by Albania of the Framework Convention for the Protection of National Minorities, in particular those relating to the right of self-identification of minorities in the census processes and creating conditions for education in minority languages, including Macedonian, on the entire territory of the State ", - "values": [ - "Minorities", - "Right to education" - ] - }, - { - "text": "Pursue ongoing efforts to conclude an internationally binding instrument on transnational corporations and business and human rights", - "values": [ - "Business and human rights" - ] - }, - { - "text": "Strengthen the National Commission of Human Rights in accordance with the Paris Principles", - "values": [ - "National Human Rights Institution" - ] - }, - { - "text": "Uphold the rights of persons with disabilities in conformity with the principles of the Convention on the Rights of Persons with Disabilities. Measures will also be taken to secure the rights of persons with mental disabilities.", - "values": [ - "Disabilities", - "International instruments" - ] - }, - { - "text": "Strengthen the measures regarding education and reduction of poverty of minority populations", - "values": [ - "Minorities", - "Poverty", - "Right to education" - ] - }, - { - "text": "Continue to enhance its engagement with its regional and international partners to facilitate building of capacities in countering domestic and gender-based violence and human trafficking, especially of women and children ", - "values": [ - "Rights of the Child", - "Trafficking", - "Women's rights" - ] - }, - { - "text": "Ensure that the protection against violence affecting refugees becomes a visible policy of the Government", - "values": [ - "Asylum-seekers - refugees" - ] - }, - { - "text": "Strengthen measures to bridge the wage gap between women and men, including in the private sector ", - "values": [ - "Women's rights" - ] - }, - { - "text": "In regard to freedom of movement, make more flexible the requirements for those people who change their place of residence within the country so that they have equitable access to social security, health care, education and pensions ", - "values": [ - "Freedom of movement" - ] - }, - { - "text": "Speed up the adoption of the draft law on gender equality and Justice", - "values": [ - "Justice", - "Women's rights" - ] - }, - { - "text": "Create, in close cooperation with "Puntland" and "Somaliland", institutions and mechanisms charged with promoting respect for human rights, recognizing the challenges this imposes ", - "values": [ - "Other" - ] - }, - { - "text": "Enact comprehensive anti-discrimination legislation, including a clear definition of discrimination against women", - "values": [ - "Women's rights" - ] - }, - { - "text": "Fully respect its obligations under international law by guaranteeing the right to seek asylum through an individual, effective process without discrimination", - "values": [ - "Asylum-seekers - refugees", - "Racial discrimination" - ] - }, - { - "text": "Continue to work towards ratification of ILO Convention No. 169 and thereby secure the Sami people's rights", - "values": [ - "Indigenous peoples", - "International instruments" - ] - }, - { - "text": "Continue the policy for the improvement of the situation of women and their integration in public and political life.", - "values": [ - "Women's rights" - ] - }, - { - "text": "Take measures to improve prison conditions, in particular in the areas of food and sanitation, and ensure that the rights of prisoners are respected in accordance with international law standards ", - "values": [ - "Detention", - "Right to water and sanitation" - ] - }, - { - "text": "Ensure that the National Human Rights Institution is in full compliance with the Paris Principles and has a broad and inclusive human rights mandate", - "values": [ - "National Human Rights Institution" - ] - }, - { - "text": "Step up efforts to ratify ICRMW ", - "values": [ - "International instruments", - "Labour", - "Migrants" - ] - }, - { - "text": "Ensure the adoption and implementation of an anti-discrimination law, cohering to international human rights standards", - "values": [ - "International instruments" - ] - }, - { - "text": "Spread the culture of human rights and strengthen religious and faith tolerance", - "values": [ - "Freedom of religion and belief" - ] - }, - { - "text": "Continue efforts to support at the national level, children on the street in order to achieve the objectives set by the Senegalese Government in this area by the end of 2015", - "values": [ - "Rights of the Child" - ] - }, - { - "text": "Allocate more resources for economic and social development measures and policies to better ensure the population's enjoyment of the most essential economic and social rights, notably the rights to food, medical care and employment, and to fight against poverty and illiteracy.", - "values": [ - "Labour", - "Poverty", - "Right to education", - "Right to food", - "Right to health" - ] - }, - { - "text": "Consider establishment of a national human rights institution in accordance with the Paris Principles ", - "values": [ - "National Human Rights Institution" - ] - }, - { - "text": "Ratify the main United Nations human rights instruments, particularly ICRMW", - "values": [ - "International instruments", - "Labour", - "Migrants" - ] - }, - { - "text": "Do everything possible to prevent early and forced marriage and to recognize in its legislation rape within marriage.", - "values": [ - "Rights of the Child", - "Women's rights" - ] - }, - { - "text": "Continue to adopt further measures to guarantee the independence and professionalization of the judicial power", - "values": [ - "Justice" - ] - }, - { - "text": "Effectively implement the National Strategy of Protection against Family Violence 2011-2016", - "values": [ - "Rights of the Child", - "Women's rights" - ] - }, - { - "text": "That Lesotho seeks to increase access to affordable contraceptive methods and antiretroviral treatment and to promote education on sexual and reproductive health", - "values": [ - "Right to health", - "Rights of the Child", - "Women's rights" - ] - }, - { - "text": "Put an end to impunity for reported attacks against members of marginalized communities, including on the grounds of sexual orientation and gender identity, as well as to put in operation awareness-raising efforts in that respect, targeted particularly at law enforcement officials and the judiciary.", - "values": [ - "Human rights education and training", - "Impunity", - "Sexual Orientation and Gender Identity" - ] - }, - { - "text": "Pursue their ongoing efforts to enhance their cooperation with treaty bodies and other relevant human rights mechanisms and to better fulfil their reporting obligations ", - "values": [ - "Special procedures", - "Treaty bodies", - "UPR process" - ] - }, - { - "text": "Give priority to measures that reduce the backlog of court cases and that provide for adequate staffing in law courts ", - "values": [ - "Justice" - ] - }, - { - "text": "Revise the National Security Act of 2010 to bring it in line with international standards, in particular to end immunity provisions and to ensure that human rights violations by armed forces, police and National Intelligence and Security Service, including the Rapid Response Force, are investigated and prosecuted ", - "values": [ - "Human rights violations by state agents" - ] - }, - { - "text": "Undertake a process with a view to repealing the legislation that criminalizes homosexuality and adopt measures to combat discrimination on the ground of sexual orientation", - "values": [ - "Sexual Orientation and Gender Identity" - ] - }, - { - "text": "Promote and guarantee the right to freedom of expression", - "values": [ - "Freedom of opinion and expression" - ] - }, - { - "text": "Provide reassurance that any proposed British Bill of Rights would complement rather than replace the incorporation of the European Convention on Human Rights in Northern Ireland law and acknowledging this is a primary matter for the Northern Ireland Executive and Assembly - that a Bill of Rights for Northern Ireland to reflect the particular circumstances of Northern Ireland should be pursued to provide continuity, clarity and consensus on the legal framework for human rights there", - "values": [ - "Other" - ] - }, - { - "text": "Undertake an impact assessment on the possible consequences of its foreign trade policies and investment agreements on the enjoyment of economic, social and cultural rights by the population of its partner countries", - "values": [ - "ESC rights - general" - ] - }, - { - "text": "Engage closely with civil society in the follow-up on the recommendations of the Human Rights Council", - "values": [ - "Civil society", - "Treaty bodies", - "UPR process" - ] - }, - { - "text": "Continue cooperating constructively with the universal human rights mechanisms and continue the practice of cooperation and dialogue with civil society", - "values": [ - "Civil society", - "Technical assistance and cooperation" - ] - }, - { - "text": "Prohibit all forms of violence against children, including corporal punishment", - "values": [ - "Rights of the Child", - "Torture and other CID treatment" - ] - }, - { - "text": "Accord the same rights and responsibilities to same-sex partners as those accorded to partners of the opposite sex ", - "values": [ - "Sexual Orientation and Gender Identity" - ] - }, - { - "text": "Consider its accession to the International Convention on the Protection of the Rights of All Migrant Workers and Members of their Families, in order to ensure a comprehensive approach to migrant workers' rights", - "values": [ - "International instruments", - "Labour", - "Migrants" - ] - }, - { - "text": "Continue to improve socioeconomic conditions to eradicate inequality in line with the recent reforms undertaken by the Government", - "values": [ - "Development", - "ESC rights - general" - ] - }, - { - "text": "Continue to take necessary measures for carrying those reforms taken towards a consolidated democracy rapidly into effect", - "values": [ - "General" - ] - }, - { - "text": "Further promote employment ", - "values": [ - "Development" - ] - }, - { - "text": "Continue to enhance its domestic framework to eliminate violence against women and to promote gender equality ", - "values": [ - "Women's rights" - ] - }, - { - "text": "Continue implementing the human rights action plan", - "values": [ - "General" - ] - }, - { - "text": "Strengthen the legislation to fight trafficking in persons, especially women and children, ensuring the due punishment of the perpetrators of such crimes and the provision of legal and psychological assistance to victims ", - "values": [ - "Rights of the Child", - "Trafficking", - "Women's rights" - ] - }, - { - "text": "Pay special attention to education and training in the field of human rights, in particular for members of the law enforcement and judiciary bodies", - "values": [ - "Human rights education and training" - ] - }, - { - "text": "Amend or derogate legislation that discriminates against women, and adopt measures to expedite the enactment of outstanding bills in this regard, such as the Gender Equality Bill, the Deceased Estates - Wills, Inheritance and Protections - Bill and the Marriage, Divorce and Family Relations Bill ", - "values": [ - "Women's rights" - ] - }, - { - "text": "Abolish discrimination based on religion or beliefs", - "values": [ - "Freedom of religion and belief" - ] - }, - { - "text": "Regularize as soon as possible the protracted situation of the stateless Bidouns in conformity with its international obligations and commitments and accede to the Convention relating to the Status of Stateless Persons", - "values": [ - "International instruments", - "Minorities", - "Statelessness and the right to nationality" - ] - }, - { - "text": "Increase efforts to combat all forms of violence against women.", - "values": [ - "Women's rights" - ] - }, - { - "text": "Consider ratifying the International Convention for the Protection of All Persons from Enforced Disappearance CED and the Convention on the Rights of Persons with Disabilities CRPD - the two Optional Protocols to the International Covenant on Civil and Political Rights ICCPR - the Optional Protocols to the Convention on the Elimination of All Forms of Discrimination against Women and CRPD - and Convention No. 169 of the International Labour Organization, and accomplish the human rights goals set by Human Rights Council resolution 9-12 ", - "values": [ - "International instruments" - ] - }, - { - "text": "Increase efforts to eliminate all forms of violence against women, especially sexual violence against girls and adolescents", - "values": [ - "Rights of the Child", - "Women's rights" - ] - }, - { - "text": "Accelerate the process of ratification of the Convention against Torture", - "values": [ - "International instruments", - "Torture and other CID treatment" - ] - }, - { - "text": "Strengthen the dialogue with AMISOM with a view to adopting special measures to protect Somali women and girls against sexual exploitation and abuse", - "values": [ - "Rights of the Child", - "Women's rights" - ] - }, - { - "text": "Abolish capital punishment and commute existing death sentences to life imprisonments terms ", - "values": [ - "Death penalty" - ] - }, - { - "text": "Enforce effectively both the existing and new laws to promote and protect the rights of women and children, as well as members of religious minorities, in order to promote tolerance and an inclusive society", - "values": [ - "Freedom of religion and belief", - "Minorities", - "Rights of the Child", - "Women's rights" - ] - }, - { - "text": "Introduce the necessary measures to ensure full respect for the rights of persons with disabilities and women, as well as persons with a different sexual orientation ", - "values": [ - "Disabilities", - "Sexual Orientation and Gender Identity", - "Women's rights" - ] - }, - { - "text": "Seek to end impunity for perpetrators of sexual violence by thoroughly investigating all credible allegations of sexual violence and prosecuting individuals against whom there is sufficient evidence of such abuses, in compliance with its obligations under the International Covenant on Civil and Political Rights regarding due process ", - "values": [ - "Impunity", - "International instruments", - "Rights of the Child", - "Women's rights" - ] - }, - { - "text": "Adopt measures to combat impunity in cases of enforced disappearances during the internal conflict which took place between 1992 and 1998 ", - "values": [ - "Enforced disappearances" - ] - }, - { - "text": "Cooperate fully with the procedures and mechanisms of the Human Rights Council", - "values": [ - "Special procedures", - "UPR process" - ] - }, - { - "text": "Establish an independent national human rights institution in accordance with Paris Principles ", - "values": [ - "National Human Rights Institution" - ] - }, - { - "text": "Continue advancing the right to housing for farmers and herdsmen", - "values": [ - "Right to housing" - ] - }, - { - "text": "Take further legal measures to increase the visibility and transparency of asylum applications, ensuring an open process for claimants and consistency with human rights principles ", - "values": [ - "Asylum-seekers - refugees", - "International instruments" - ] - }, - { - "text": "Extend an open and standing invitation to the special procedures ", - "values": [ - "Special procedures" - ] - }, - { - "text": "Continue with further efforts to guarantee children's rights, particularly in the field of social protection and education", - "values": [ - "ESC rights - general", - "Right to education", - "Rights of the Child" - ] - }, - { - "text": "Continue working for the enjoyment of economic, social and cultural rights in the country", - "values": [ - "ESC rights - general" - ] - }, - { - "text": "Continue its efforts to combat poverty and ensure sustainable development ", - "values": [ - "Development", - "Poverty" - ] - }, - { - "text": "Observe the national law for all young girls with regards to the legal age of marriage and take firm action to prevent young girls from becoming victims of forced and early marriage, particularly in rural areas", - "values": [ - "Rights of the Child", - "Women's rights" - ] - }, - { - "text": "Carry out awareness and education campaigns in favour of non-discrimination based on sexual orientation", - "values": [ - "Human rights education and training", - "Sexual Orientation and Gender Identity" - ] - }, - { - "text": "Identify a set of - universal social services - accessible to all children and families to provide an adequate standard of living", - "values": [ - "Other" - ] - }, - { - "text": "Strengthen efforts to diminish the gap in health care between rural and urban areas", - "values": [ - "Right to health" - ] - }, - { - "text": "Conduct an independent investigation regarding killings, arrests and detentions following the demonstrations following the 2009 presidential elections, including the possible excessive use of force by security forces", - "values": [ - "Detention", - "Elections", - "Extrajudicial executions", - "Human rights violations by state agents" - ] - }, - { - "text": "Consolidate an environment suitable for human rights defenders and establish a mechanism for their protection", - "values": [ - "Human rights defenders" - ] - }, - { - "text": "Take all measures necessary to ensure that the forthcoming presidential elections are peaceful, free and fair and that the right to freedom of assembly is fully respected", - "values": [ - "Elections", - "Freedom of association and peaceful assembly" - ] - }, - { - "text": "Consider ratifying the Palermo Protocol, as well as CRPD ", - "values": [ - "Disabilities", - "International instruments", - "Trafficking" - ] - }, - { - "text": "Take effective and time-bound measures to ensure that children, with particular attention to children of migrant workers, are protected from trafficking and prostitution ", - "values": [ - "Labour", - "Migrants", - "Rights of the Child", - "Trafficking" - ] - }, - { - "text": "Decriminalize homosexuality and revise sections 137A, 153, 154 and 156 of the Penal Code and revise the law on marriage, divorce and family relations in order to bring it in line with the international instruments ratified by Malawi", - "values": [ - "International instruments", - "Sexual Orientation and Gender Identity" - ] - }, - { - "text": "Scale up efforts in Italy to face the scourge of drugs that destroy human beings and societies, and therefore to enact additional legislation that prevents it", - "values": [ - "Public security" - ] - }, - { - "text": "Adopt and enact the legislation banning female genital mutilation at the earliest possible stage", - "values": [ - "Rights of the Child", - "Torture and other CID treatment", - "Women's rights" - ] - }, - { - "text": "Continue its efforts to promote programmes for capacity building for law enforcement officers in the field of human rights ", - "values": [ - "Human rights education and training" - ] - }, - { - "text": "Adopt legislation to prohibit all forms of corporal punishment of children in all settings, and explicitly repeal the right to use force for "prevention or punishment of the minor's misconduct" and for the maintenance of "reasonable discipline" in the Criminal Code", - "values": [ - "Rights of the Child", - "Torture and other CID treatment" - ] - }, - { - "text": "Intensify efforts and cooperative engagement with a view to carrying out the speedy repatriation of already identified illicit funds and proceeds of corruption to countries of origin to aid the latter in the attainment of the Sustainable Development Goals", - "values": [ - "Development" - ] - }, - { - "text": "To achieve by 2008 the modifications to the French legislation to satisfy the requirements of the Rome Statute of the International Criminal Court", - "values": [ - "International instruments", - "Justice" - ] - }, - { - "text": "Strengthen non-discrimination against women, particularly in the workplace", - "values": [ - "Women's rights" - ] - }, - { - "text": "Accede to the ILO Convention No. 189 on domestic workers", - "values": [ - "International instruments", - "Labour" - ] - }, - { - "text": "Strengthen the human rights education training program and expand it to other governmental departments", - "values": [ - "Human rights education and training" - ] - }, - { - "text": "Provide redress to victims of human trafficking", - "values": [ - "Trafficking" - ] - }, - { - "text": "Release persons detained or arrested for political reasons and refrain from and prevent all forms of violence and retaliatory action, evictions, deportations, detention and coercion", - "values": [ - "Detention", - "Freedom of opinion and expression" - ] - }, - { - "text": "Adopt the necessary policies to ensure that children with disabilities are given equal opportunities in education and ensure that they are fully integrated into school systems, free from discrimination of any kind", - "values": [ - "Disabilities", - "Right to education", - "Rights of the Child" - ] - }, - { - "text": "Acknowledge the full applicability of ICCPR to persons subject to its jurisdiction both at home and abroad", - "values": [ - "CP rights - general", - "International instruments" - ] - }, - { - "text": "Strengthen efforts to fulfil its obligations under the Convention on the Rights of the Child", - "values": [ - "International instruments", - "Rights of the Child" - ] - }, - { - "text": "Continue its efforts to implement the judicial reforms undertaken in the last years ", - "values": [ - "Justice" - ] - }, - { - "text": "Call on the international community for assistance in attaining its goals, including the Millennium Development Goals.", - "values": [ - "Development", - "Technical assistance and cooperation" - ] - }, - { - "text": "Take all appropriate measures in the implementation of the 2015 Juvenile Justice Act to give children aged 18 years and below an opportunity for rehabilitation", - "values": [ - "Rights of the Child" - ] - }, - { - "text": "Finalise the accession to the international instruments on the protection of human rights signed by the country, in particular the International Covenant on Civil and Political Rights and its second Optional Protocol aiming at the abolition of the death penalty, the International Covenant on Economic, Social and Cultural Rights, the Convention against Torture and the International Convention on the Elimination of All Forms of Racial Discrimination", - "values": [ - "CP rights - general", - "Death penalty", - "ESC rights - general", - "International instruments", - "Racial discrimination", - "Torture and other CID treatment" - ] - }, - { - "text": "Provide enhanced training to law enforcement, immigration and judicial officials regarding trafficking cases and victims, and provide foreign victims of trafficking with legal alternatives to deportation ", - "values": [ - "Trafficking" - ] - }, - { - "text": "Fully align the national legislation with all obligations arising out of the Rome Statute of the ICC ", - "values": [ - "International instruments", - "Justice" - ] - }, - { - "text": "Strengthening institutional support for the National Human Rights Commission and applying for its accreditation by the International Coordinating Committee of National Human Rights Institutions", - "values": [ - "National Human Rights Institution" - ] - }, - { - "text": "Investigate and prosecute allegations of all hate speech and political discourse against minorities ", - "values": [ - "Minorities", - "Racial discrimination" - ] - }, - { - "text": "Implement the decision of the House of Representatives to set the minimum age of marriage no lower than 17 years.", - "values": [ - "Rights of the Child" - ] - }, - { - "text": "Undertake awareness-raising campaigns for combating stereotypes and violence against gays, lesbians, bisexuals and transsexuals, and ensure access to public services paying attention to the special vulnerability of sexual workers to violence and human rights abuses", - "values": [ - "Human rights education and training", - "Sexual Orientation and Gender Identity" - ] - }, - { - "text": "Take measures to implement the recommendations of the CEDAW Committee in the area of women's rights as soon as possible.", - "values": [ - "Treaty bodies", - "Women's rights" - ] - }, - { - "text": "Prohibit explicitly corporal punishment in all settings, including in the home and as a sentence of the courts", - "values": [ - "Torture and other CID treatment" - ] - }, - { - "text": "Continue to study in depth the steps for the adoption of the legal framework necessary for the application of the Convention on the Rights of Persons with Disabilities", - "values": [ - "Disabilities", - "International instruments" - ] - }, - { - "text": "Increase transparency of its traditional and social media by guaranteeing the rights of Chinese citizens to freely critique any state organ or functionary", - "values": [ - "Freedom of opinion and expression" - ] - }, - { - "text": "Respond and follow-up appropriately the recommendations formulated to the United States by the Special Rapporteur for the Protection of Human Rights and Fundamental Freedoms while Countering Terrorism ", - "values": [ - "Counter-terrorism", - "Special procedures" - ] - }, - { - "text": "Ratify the International Convention on the Rights of All Migrant Workers and Members of Their Families", - "values": [ - "International instruments", - "Labour", - "Migrants" - ] - }, - { - "text": "Ratify the Optional Protocol to the Convention on the Elimination of All Forms of Discrimination against Women, as recommended in the first cycle", - "values": [ - "International instruments", - "UPR process", - "Women's rights" - ] - }, - { - "text": "Prohibit corporal punishment in all settings through the Kingdom of the Netherlands ", - "values": [ - "Torture and other CID treatment" - ] - }, - { - "text": "Consider ways to ensure the outcomes of popular referenda can be implemented in a manner consistent with the international human rights treaties to which Switzerland is a party", - "values": [ - "Other" - ] - }, - { - "text": "Strengthen measures to eradicate patriarchal stereotypes against women, including through education and awareness programs", - "values": [ - "Human rights education and training", - "Women's rights" - ] - }, - { - "text": "Ensure that adequate resources, political commitment and support be given in preparation for the upcoming presidential and parliamentary elections in 2014, which must be held in a free, fair and transparent manner and in accordance with international standards ", - "values": [ - "Elections" - ] - }, - { - "text": "Accelerate the steps currently under way for the establishment of a national human rights institution consistent with the Paris Principles ", - "values": [ - "National Human Rights Institution" - ] - }, - { - "text": "Take steps to resolve the conflicts of competence between civil and Sharia courts, with a view to fully protect human rights", - "values": [ - "Justice" - ] - }, - { - "text": "Redouble its efforts to ensure the rights of LGBTI persons and, in line with the Human Rights Committee's recommendations, combat all forms of social stigmatization of homosexuality, bisexuality and transsexuality, and hate speech, discrimination and violence based on sexual orientation or gender identity", - "values": [ - "Sexual Orientation and Gender Identity", - "Treaty bodies" - ] - }, - { - "text": "Abolish the death penalty and ratify the Second Optional Protocol to the International Covenant on Civil and Political Rights ", - "values": [ - "Death penalty", - "International instruments" - ] - }, - { - "text": "Consider acceding to the Convention Against Torture and Other Cruel, Inhuman or Degrading Treatment or Punishment (CAT).", - "values": [ - "International instruments", - "Torture and other CID treatment" - ] - }, - { - "text": "Improve the conditions of prisoners and pre-trial detainees and prevent any kind of abuse of prisoners by security personnel ", - "values": [ - "Detention", - "Human rights violations by state agents" - ] - }, - { - "text": "Continue reporting on the implementation of human rights treaties to which it is a party ", - "values": [ - "Treaty bodies" - ] - }, - { - "text": "Take steps to improve the access of persons with disabilities to various services", - "values": [ - "Disabilities" - ] - }, - { - "text": "Ensure the safety of all vulnerable groups, including women, journalists, human rights defenders, and ensure respect for fundamental human rights", - "values": [ - "Freedom of the press", - "Human rights defenders", - "Women's rights" - ] - }, - { - "text": "Establish an accessible mechanism to receive complaints of domestic violence which provides protection, psychological counselling, social support and allows for the integration of the victims into the labour market ", - "values": [ - "Justice", - "Women's rights" - ] - }, - { - "text": "Continue its 2012-2016 project on judicial transformation, by inserting changes at the level of the judicial authority by setting up appropriate strategies to enhance access and the expeditious delivery of justice", - "values": [ - "Justice" - ] - }, - { - "text": "Allow for thorough, transparent and independent investigations into all reports of alleged human rights violations and abuses, as well as violations of international humanitarian and human rights law since March 2011, and bring the perpetrators to justice", - "values": [ - "International humanitarian law" - ] - }, - { - "text": "Adopt measures in order for any health decision to depend upon the free and informed consent of the concerned disabled person", - "values": [ - "Disabilities", - "Right to health" - ] - }, - { - "text": "Expand mechanisms aimed at ensuring consultation with people belonging to national minorities and that the representatives of these minorities participate effectively in making decisions that affect them", - "values": [ - "Minorities" - ] - }, - { - "text": "Continue awareness-raising about, and dissemination and teaching of, human rights", - "values": [ - "Human rights education and training" - ] - }, - { - "text": "Intensify the dialogue with religious minorities with a view to fostering a better understanding of peaceful coexistence and religious tolerance ", - "values": [ - "Freedom of religion and belief", - "Minorities" - ] - }, - { - "text": "That the government ends violent suppression of protestors, and arbitrary detention of political activists and journalists", - "values": [ - "Detention", - "Freedom of association and peaceful assembly", - "Freedom of the press", - "Human rights defenders" - ] - }, - { - "text": "Continue strengthening legal and policy protections which guarantee the rights of the child", - "values": [ - "Rights of the Child" - ] - }, - { - "text": "Consider taking steps to formally establish a de jure moratorium on the use of the death penalty with a view to its legal abolition", - "values": [ - "Death penalty" - ] - }, - { - "text": "Continue its engagement by ratifying other international instruments, in particular the International Convention on the Protection of the Rights of All Migrant Workers and Members of Their Families", - "values": [ - "International instruments", - "Labour", - "Migrants" - ] - }, - { - "text": "Strengthen efforts aimed at increasing the representation of women in decision-making processes ", - "values": [ - "Women's rights" - ] - }, - { - "text": "Further strengthen its successful social plans and programs in favour of its people, with a special emphasis on the areas of education, nutrition and health", - "values": [ - "Right to education", - "Right to food", - "Right to health" - ] - }, - { - "text": "Ratify ICRMW, as recommended by the Committee on the Elimination of Racial Discrimination, the Committee on Economic, Social and Cultural Rights and the Committee on the Elimination of Discrimination against Women ", - "values": [ - "International instruments", - "Labour", - "Migrants", - "Racial discrimination", - "Treaty bodies", - "Women's rights" - ] - }, - { - "text": "Continue the progress in the human rights policies, and focus on the practices adopted in various sectors concerned with the advancement of the country such as education, health and care for the elderly", - "values": [ - "Right to education", - "Right to health" - ] - }, - { - "text": "Uphold the standards on the protection of the rights of persons belonging to minorities", - "values": [ - "Minorities" - ] - }, - { - "text": "Consider ratification of the Second Optional Protocol to the International Covenant on Civil and Political Rights with the view to abolishing the death penalty, as signed in 2012", - "values": [ - "Death penalty", - "International instruments" - ] - }, - { - "text": "Eliminate gun violence", - "values": [ - "Public security" - ] - }, - { - "text": "Take concrete measures to protect child victims of sexual exploitation and prostitution", - "values": [ - "Rights of the Child" - ] - }, - { - "text": "Base itself on the cases of certain countries, such as Brazil, in order to eradicate the vestiges of slavery ", - "values": [ - "Other" - ] - }, - { - "text": "Seek to further decrease the number of non-citizens and to improve the social and political rights of non-citizens ", - "values": [ - "Migrants" - ] - }, - { - "text": "Establish effective and speedy measures to guarantee gender equality at all levels of the civil society and State structure, bearing in mind that laws and current policies have not yet produced the desired results ", - "values": [ - "Women's rights" - ] - }, - { - "text": "Continue its efforts on the draft law to set up an independent human rights institution that would function in an independent manner, in accordance with the Paris Principles", - "values": [ - "National Human Rights Institution" - ] - }, - { - "text": "Continue to engage in a national dialogue with a view to promoting respect for diversity and tolerance in line with its obligation under the ICCPR ", - "values": [ - "CP rights - general", - "International instruments" - ] - }, - { - "text": "Continue its efforts to raise awareness as well as effectively enforce the abolishment of female genital mutilation by providing adequate resources and bringing perpetrators of such cruelty to justice ", - "values": [ - "Human rights education and training", - "Rights of the Child", - "Torture and other CID treatment", - "Women's rights" - ] - }, - { - "text": "Strengthen all existing mechanisms within its institutional infrastructure to prevent and combat trafficking in persons by allocating human, technical and financial resources, and ensure comprehensive care and adequate reparation to victims", - "values": [ - "Trafficking" - ] - }, - { - "text": "Strengthen programs aiming at the promotion and protection of children rights ", - "values": [ - "Rights of the Child" - ] - }, - { - "text": "Continue advancing in the modernization and improvement of the penitentiary system, with special attention to the conditions of persons deprived of their liberty ", - "values": [ - "Detention" - ] - }, - { - "text": "Enact specific legislation that prohibits discrimination against women and on the basis of sexual orientation, and develop a system through which all individuals can safely report cases of discrimination and access avenues of redress", - "values": [ - "Sexual Orientation and Gender Identity", - "Women's rights" - ] - }, - { - "text": "Continue its efforts to implement the National Action Plan on Human rights", - "values": [ - "General" - ] - }, - { - "text": "Develop a comprehensive strategy for the environment in order to address the problems of water contamination and air pollution", - "values": [ - "Right to water and sanitation" - ] - }, - { - "text": "Take the necessary measures to bring itself up to date with the reporting obligations to treaty bodies", - "values": [ - "Treaty bodies" - ] - }, - { - "text": "Increase support for the bill introducing financial initiatives for female candidates for political participation, enhance the consultations concerning the institutions of indigenous peoples and continue with the policy of reparation to victims of human rights violations ", - "values": [ - "Indigenous peoples", - "Women's rights" - ] - }, - { - "text": "Create and adopt a law that specifically addresses trafficked persons in the country and abolish all practices of penalizing trafficked women and children for unlawfully exiting the country upon their deportation back to DPRK ", - "values": [ - "Trafficking" - ] - }, - { - "text": "Implement effectively the legislation prohibiting the forced military recruitment of children under the age of 18 ", - "values": [ - "Rights of the Child" - ] - }, - { - "text": "Continue participating in opportunities for the search to an end to the crisis and achieve peace and stability in the country, under the principles of respect of independence, international legality and sovereignty of the Syrian Arab Republic", - "values": [ - "Other" - ] - }, - { - "text": "Take necessary measures to reduce gender gap in the labour market ", - "values": [ - "Women's rights" - ] - }, - { - "text": "Abolish the death penalty, which is still in effect despite the de facto moratorium on capital punishment ", - "values": [ - "Death penalty" - ] - }, - { - "text": "Continue the task of completing the special institutional framework in the areas of judiciary and independent bodies", - "values": [ - "Justice" - ] - }, - { - "text": "Accelerate its ongoing transitional efforts with a view to acceding to the core international human rights treaties", - "values": [ - "International instruments" - ] - }, - { - "text": "Continue implementing measures underway to intensify efforts in providing capacity-building and training programs on human rights for its law enforcement officials as well as judicial and legal officials", - "values": [ - "Human rights education and training" - ] - }, - { - "text": "Support steps regarding the rights of persons with disabilities with administrative arrangements, in order to ensure that these rights are enjoyed by all persons with disabilities within the society, especially children with disabilities", - "values": [ - "Disabilities", - "Rights of the Child" - ] - }, - { - "text": "Intensify efforts to fight against poverty", - "values": [ - "Poverty" - ] - }, - { - "text": "Speed up the implementation of laws enacted regarding the Convention on the Elimination of All Forms of Discrimination against Women, and enact adequate legislation that can put an end to the violence to which they are subjected ", - "values": [ - "International instruments", - "Women's rights" - ] - }, - { - "text": "Ensure effective participation and access to justice, emphasizing the regional priority granted to the combat of violence against women ", - "values": [ - "Justice", - "Women's rights" - ] - }, - { - "text": "Pursue the process of ratification of international human rights instruments ", - "values": [ - "International instruments" - ] - }, - { - "text": "Continue to harmonize its national legislation on children with the international standards contained in the Convention on the Rights of the Child and its Protocols, and any other relevant instrument to which it is party", - "values": [ - "International humanitarian law", - "International instruments", - "Labour", - "Rights of the Child", - "Trafficking" - ] - }, - { - "text": "Implement measures to prevent and punish violence against Roma women so that they are able to enjoy their rights without prejudice.", - "values": [ - "Minorities", - "Women's rights" - ] - }, - { - "text": "Continue providing assistance and sharing its experiences with other countries in the area of human rights education and training ", - "values": [ - "Human rights education and training" - ] - }, - { - "text": "Ratify the OP-CRC-SC", - "values": [ - "International instruments", - "Rights of the Child", - "Trafficking" - ] - }, - { - "text": "Consider ratifying the International Convention on the Protection of the Rights of All Migrant Workers and Members of Their Families (ICRMW) ", - "values": [ - "International instruments", - "Labour", - "Migrants" - ] - }, - { - "text": "Take the necessary measures to effectively promote and strengthen family and moral values", - "values": [ - "Rights of the Child", - "Women's rights" - ] - }, - { - "text": "Conduct a national independent investigation into cases of violence and degrading treatment of persons with disabilities and persons suffering from mental illness in institutions and homes for the disabled", - "values": [ - "Disabilities", - "Justice", - "Torture and other CID treatment" - ] - }, - { - "text": "Ensure effective criminal justice responses to all forms of sexual and gender-based violence, particularly domestic violence and female genital mutilations", - "values": [ - "Rights of the Child", - "Torture and other CID treatment", - "Women's rights" - ] - }, - { - "text": "Train the health care personnel to screen and document instances of domestic violence", - "values": [ - "Rights of the Child", - "Women's rights" - ] - }, - { - "text": "Review legislation, and amend it where necessary, to remove provisions which allow Government and military personnel to act with impunity ", - "values": [ - "Impunity" - ] - }, - { - "text": "Continue with the implementation of recommendations related to the ratification of human rights international instruments ", - "values": [ - "International instruments" - ] - }, - { - "text": "Give further attention to the assistance available to victims of violence against women, especially in the field of psycho-social support", - "values": [ - "Women's rights" - ] - }, - { - "text": "Undertake concrete measures to ensure that the media production and coverage are non-discriminatory and promote positive images of girls and women ", - "values": [ - "Rights of the Child", - "Women's rights" - ] - }, - { - "text": "Ensure that the United States international aid allows access to sexual and reproductive health services for women victims of sexual violence in conflict situations", - "values": [ - "Women's rights" - ] - }, - { - "text": "Adopt national legislation to protect child rights, create follow-up mechanisms, criminalize the worst forms of child labour and accede to international treaties banning this practice ", - "values": [ - "International instruments", - "Labour", - "Rights of the Child" - ] - }, - { - "text": "Maximize legislative, administrative and police measures to combat trafficking of women and girls, which particularly affects foreign women.", - "values": [ - "Rights of the Child", - "Trafficking", - "Women's rights" - ] - }, - { - "text": "Take appropriate measures to ensure the rights of persons with disabilities including through proper infrastructure and facilities that can accommodate their needs in schools and in the workplace", - "values": [ - "Disabilities", - "Labour", - "Right to education" - ] - }, - { - "text": "Continue efforts to reduce poverty and increase, if possible, the necessary resources for current programmes, such as the "Bolsa Familia" ", - "values": [ - "Poverty" - ] - }, - { - "text": "Take measures to provide for the effective protection of human rights and due process of law while guaranteeing freedom of religion and belief for all its population", - "values": [ - "Freedom of religion and belief" - ] - }, - { - "text": "Reinforce efforts to achieve the Millennium Development goals by the target date", - "values": [ - "Development" - ] - }, - { - "text": "Undertake the necessary measures to bring its national legislation in conformity with international human rights conventions", - "values": [ - "International instruments" - ] - }, - { - "text": "Take all necessary measures to prevent and stop domestic violence, including through providing shelters for persons under threat, in coordination with the "Samoa Victims Support Group"", - "values": [ - "Rights of the Child", - "Women's rights" - ] - }, - { - "text": "Accelerate the implementation of its new legislation and intensify its law enforcement efforts targeted at combating all forms of human trafficking and slavery ", - "values": [ - "Trafficking" - ] - }, - { - "text": "Continue its efforts for the protection of the rights of migrant workers", - "values": [ - "Labour", - "Migrants" - ] - }, - { - "text": "Strengthen measures promoting access of vulnerable population to public and social and health services", - "values": [ - "ESC rights - general", - "Right to health" - ] - }, - { - "text": "Continue its efforts to eliminate child marriage, including through considering to set the age of entry into marriage at 18 years", - "values": [ - "Rights of the Child", - "Women's rights" - ] - }, - { - "text": "Strengthen its efforts to address domestic violence through appropriate public awareness campaigns and by ensuring that women are made aware of their rights ", - "values": [ - "Human rights education and training", - "Rights of the Child", - "Women's rights" - ] - }, - { - "text": "Remain unswerving in pursuing measures geared at addressing the challenges that the Government identifies in its national report, in particular relating to good governance and respect for the rule of law ", - "values": [ - "Justice" - ] - }, - { - "text": "Continue efforts to enact a law on the comprehensive protection of the rights of the child", - "values": [ - "Rights of the Child" - ] - }, - { - "text": "Take effective measures to combat violence against women", - "values": [ - "Women's rights" - ] - }, - { - "text": "Issue a standing invitation to special procedures", - "values": [ - "Special procedures" - ] - }, - { - "text": "Remove restrictions on freedom of expression under article 26 of the Constitution", - "values": [ - "Freedom of opinion and expression" - ] - }, - { - "text": "Take all the necessary measures to decriminalize sexual relations between consenting same-sex adults and take additional measures to combat discrimination and violence against lesbian, gay, bisexual and transgender persons", - "values": [ - "Sexual Orientation and Gender Identity" - ] - }, - { - "text": "Continue strengthening measures aimed at addressing issues of domestic violence and female genital mutilation, including raising awareness campaigns, ensuring effective access to justice for victims, and developing a comprehensive support system for gender-based violence victims", - "values": [ - "Human rights education and training", - "Rights of the Child", - "Torture and other CID treatment", - "Women's rights" - ] - }, - { - "text": "Decriminalize sexual relations between consenting adults of the same sex ", - "values": [ - "Sexual Orientation and Gender Identity" - ] - }, - { - "text": "Continue the important process of reconciling the improvement of women\u2019s rights and duties within the provision of sharia law", - "values": [ - "Women's rights" - ] - }, - { - "text": "Take appropriate steps to ensure inclusive education in Czech schools", - "values": [ - "Right to education" - ] - }, - { - "text": "Consolidate its recent progress through implementation of comprehensive anti-discrimination legislation covering sex and sexual orientation, gender identity and intersex status", - "values": [ - "Sexual Orientation and Gender Identity" - ] - }, - { - "text": "Appoint accomplished, independent prosecutors to lead the Prosecutor General and National Anti-Corruption Directorate offices, ensuring they remain free from political interference", - "values": [ - "Corruption" - ] - }, - { - "text": "Ensure the implementation of comprehensive sexuality education for women and girls, including information on sexual and reproductive health and rights", - "values": [ - "Right to health", - "Rights of the Child", - "Women's rights" - ] - }, - { - "text": "Review the penal code to ensure it aligns with Cambodia's obligations under the International Convention on Civil and Political Rights pertaining to freedom of expression and take the necessary actions to amend or repeal any articles which do not meet these obligations ", - "values": [ - "Freedom of opinion and expression", - "International instruments" - ] - }, - { - "text": "Continue increasing efforts to create an independent and autonomous truth commission in accordance with international standards, that may enable the establishment of a fair and transparent mechanism to ensure effective remedy for victims of human rights violations", - "values": [ - "Justice" - ] - }, - { - "text": "Submit overdue reports to the Committee on the Elimination of Racial Discrimination, the Committee on Economic, Social and Cultural Rights, the Human Rights Committee and the Committee on the Elimination of Discrimination against Women", - "values": [ - "ESC rights - general", - "Racial discrimination", - "Treaty bodies", - "Women's rights" - ] - }, - { - "text": "Consider the next phase of the Action Plan on Gender Equality to include comprehensive and achievable goals to combat discrimination towards women in all spheres of life, including work and education", - "values": [ - "Women's rights" - ] - }, - { - "text": "Abolish criminal provisions on defamation and insult ", - "values": [ - "Freedom of opinion and expression" - ] - }, - { - "text": "Vigorously develop the economy, reduce unemployment, guarantee the employment of its people, especially young people, and improve work conditions", - "values": [ - "Development", - "Labour" - ] - }, - { - "text": "Effectively address the difficulties experienced by migrants, particularly women migrants.", - "values": [ - "Migrants", - "Women's rights" - ] - }, - { - "text": "Ensure transparency of institutional reforms and wide participation of NGOs throughout the adoption of the new Constitution", - "values": [ - "General" - ] - }, - { - "text": "Continue the application of the rights related to good living including food sovereignty and healthy environment ", - "values": [ - "Environment", - "Right to food" - ] - }, - { - "text": "Strengthen the independence and effectiveness of the national human rights institution in accordance with the Paris Principles", - "values": [ - "National Human Rights Institution" - ] - }, - { - "text": "Strengthen the legal foundations, including through ratification of relevant international human rights instruments such as the Optional Protocol to the CRC on the Sale of Children, Child Prostitution and Child Pornography", - "values": [ - "International instruments", - "Rights of the Child", - "Trafficking" - ] - }, - { - "text": "Take necessary measures to ensure the right to fair trial", - "values": [ - "Justice" - ] - }, - { - "text": "Further strengthen law enforcement and the judicial system in the efforts to address impunity, prevent domestic violence, and to protect women and children from trafficking as well as physical and sexual exploitation ", - "values": [ - "Impunity", - "Justice", - "Rights of the Child", - "Trafficking", - "Women's rights" - ] - }, - { - "text": "Continue its efforts to ensure that treatment of migrants and asylum-seekers is in accordance with relevant international standards", - "values": [ - "Asylum-seekers - refugees", - "Migrants" - ] - }, - { - "text": "Enhance efforts to ensure equality of opportunity for women and men in the labour market.", - "values": [ - "Labour", - "Women's rights" - ] - }, - { - "text": "Undertake a national process to harmonize legislation, including local laws, with international human rights obligations", - "values": [ - "International instruments" - ] - }, - { - "text": "Continue its efforts to promote gender equality and the empowerment of women ", - "values": [ - "Women's rights" - ] - }, - { - "text": "Continue efforts empowering women in all levels of decision-making and ensuring their participation in politics, the economy and social life", - "values": [ - "Women's rights" - ] - }, - { - "text": "Withdraw the reservation to the Second Protocol to ICCPR and abolish the death penalty for all crimes", - "values": [ - "Death penalty", - "International instruments" - ] - }, - { - "text": "Ensure the full application of the Elimination of Violence against Women Law ", - "values": [ - "Women's rights" - ] - }, - { - "text": "Raise the minimum age of marriage to 18 years and ensure marriage with the legal requirement of free consent of spouses through amendments to the Civil Code and the Family Protection Law", - "values": [ - "Rights of the Child" - ] - }, - { - "text": "Take all necessary steps to ensure that the availability of safe abortion services can be guaranteed, and to sensitize communities to the problems of unsafe abortion", - "values": [ - "Women's rights" - ] - }, - { - "text": "Thoroughly investigate alleged extrajudicial killings and ensure accountability", - "values": [ - "Extrajudicial executions" - ] - }, - { - "text": "Consider adopting legislation or other measures that enable investigation and prosecution for gender-based violence ", - "values": [ - "Women's rights" - ] - }, - { - "text": "Consider ratifying the 1961 Convention on the Reduction of Statelessness", - "values": [ - "International instruments", - "Statelessness and the right to nationality" - ] - }, - { - "text": "Continue cooperating with the international mechanisms in order to promote and protect human rights", - "values": [ - "General" - ] - }, - { - "text": "Intensify efforts on public awareness and capacity building programmes of law enforcement officials in strengthening the implementation of existing law, policies and measures relating to human rights ", - "values": [ - "Justice" - ] - }, - { - "text": "Provide systematic support and assistance to victims of human rights abuses in Transnistria", - "values": [ - "General" - ] - }, - { - "text": "Pursue its efforts, in the African context and through cooperation with concerned European countries, to find collective solutions to address the issue of illegal migration ", - "values": [ - "Migrants" - ] - }, - { - "text": "Carry on its work to implement a national programme for sustainable development that would contribute to the further improvement of the human rights situation in the country ", - "values": [ - "Development" - ] - }, - { - "text": "Continue to fight against all forms of discrimination affecting religious minorities", - "values": [ - "Freedom of religion and belief", - "Racial discrimination" - ] - }, - { - "text": "Address the issue of human rights in the pursuit of economic growth in local areas", - "values": [ - "Development" - ] - }, - { - "text": "Consider withdrawing its reservation to articles 15 (2) and 16 (1) (h) to the Convention on the Elimination of All Forms of Discrimination against Women", - "values": [ - "International instruments", - "Women's rights" - ] - }, - { - "text": "Make further efforts to establish what happened to an opposition leader, those responsible for his disappearance to be prosecuted, to follow-up on the recommendations of the fact-finding commission, and to modify the terms of reference and membership to ensure better the independence of the commission", - "values": [ - "Enforced disappearances", - "Justice" - ] - }, - { - "text": "Fully implement without further delay the provisions on the Law on Gender Equality and include the prohibition of discrimination against women in the new constitution", - "values": [ - "Women's rights" - ] - }, - { - "text": "Maintain as a priority the right of vulnerable persons ", - "values": [ - "Other" - ] - }, - { - "text": "Reduce the prison population ", - "values": [ - "Detention" - ] - }, - { - "text": "Pursue a policy of protecting and promoting the rights of migrant workers", - "values": [ - "Labour", - "Migrants" - ] - }, - { - "text": "Step up efforts to prevent and address bullying in schools, inter alia, by introducing a range of educational and socio-pedagogical methods, and consider introducing appropriate monitoring of anti-bullying strategies in schools", - "values": [ - "Right to education" - ] - }, - { - "text": "Redouble efforts aimed at establishing an independent national human rights institution in compliance with the Paris Principles", - "values": [ - "National Human Rights Institution" - ] - }, - { - "text": "Adopt a proactive approach to implement any recommendations of the Government's commission of enquiry aimed at protecting the rights of detained persons.", - "values": [ - "Detention" - ] - }, - { - "text": "Ratify the CED ", - "values": [ - "Enforced disappearances", - "International instruments" - ] - }, - { - "text": "Do not impede access to detention centres by other national or international oversight mechanisms different from the national preventive mechanism established by the Optional Protocol to the Convention against Torture, and adopt legislation defining and clarifying the role and responsibilities of the Special Prevention Group in respect to the Office of the Ombudsman ", - "values": [ - "Detention", - "International instruments", - "Torture and other CID treatment" - ] - }, - { - "text": "Take further measures to combat gender-based violence, trafficking in women and girls and sexual exploitation", - "values": [ - "Rights of the Child", - "Trafficking", - "Women's rights" - ] - }, - { - "text": "Create a comprehensive policy about violence against women, and especially domestic violence, that prevents, punishes and eradicates these issues, especially in rural areas", - "values": [ - "Human rights education and training", - "Rights of the Child", - "Women's rights" - ] - }, - { - "text": "Expedite the comprehensive reform of the police ", - "values": [ - "Justice" - ] - }, - { - "text": "Redouble its attention with regard to the denial of religious intolerance and xenophobia ", - "values": [ - "Freedom of religion and belief", - "Racial discrimination" - ] - }, - { - "text": "Ensure, through effective measures and consultations, that contested children in a marital dispute have the possibility of maintaining consistent contact with the foreign parent living abroad", - "values": [ - "Rights of the Child" - ] - }, - { - "text": "Consider ratifying, and implementing in national law, the outstanding core international human rights treaties, in particular the Second Optional Protocol to ICCPR - the abolition of the death penalty ", - "values": [ - "Death penalty", - "International instruments" - ] - }, - { - "text": "Extend an open invitation to Special Procedures", - "values": [ - "Special procedures" - ] - }, - { - "text": "Consider accession to the Protocol to the United Nations Convention on Transnational Organized Crime to prevent, suppress and punish trafficking in persons, especially women and children", - "values": [ - "International instruments", - "Trafficking" - ] - }, - { - "text": "Establish a formal moratorium on the death penalty with a view to ratifying the Second Optional Protocol to the International Covenant on Civil and Political Rights, aiming at the abolition of the death penalty", - "values": [ - "Death penalty", - "International instruments" - ] - }, - { - "text": "Fully respect representative democracy, the separation of powers, legal rights, due process, universal human rights and the role of civil society groups and regional bodies", - "values": [ - "Justice" - ] - }, - { - "text": "Consider acceding to the International Covenant on Civil and Political Rights and the International Covenant on Economic, Social and Cultural Rights", - "values": [ - "CP rights - general", - "ESC rights - general", - "International instruments" - ] - }, - { - "text": "Provide access to adequate and affordable housing for everyone ", - "values": [ - "Right to housing" - ] - }, - { - "text": "Implement effectively legislation on violence against women to combat misogynous stereotypes, discrimination and violence", - "values": [ - "Women's rights" - ] - }, - { - "text": "Continue making progress in the implementation of legislative provisions to prohibit and combat discrimination against children with disabilities, children with HIV/AIDS, and girls, in line with the Committee on the Rights of the Child recommendation", - "values": [ - "Disabilities", - "HIV - Aids", - "Rights of the Child", - "Treaty bodies" - ] - }, - { - "text": "Devise plans and strategies enabling it to reach out to remote areas and members of the population and hence improve their living conditions and ensure the protection of their rights.", - "values": [ - "Other" - ] - }, - { - "text": "Provide adequate funding and resources for the work of the Human Rights and Anti-Discrimination Commission", - "values": [ - "National Human Rights Institution" - ] - }, - { - "text": "Continue its reconsideration of laws that restrict the human rights of individuals based on sexual orientation or gender identity, and repeal all such laws ", - "values": [ - "Sexual Orientation and Gender Identity" - ] - }, - { - "text": "(1) To give full effect to the new Code in all areas. (2) To provide backing for the Social Protection System to safeguard boys' rights. (3) To bolster policies on comprehensive social and family protection so as to prevent Recruitment. (4) To bring child labour indices down to 5.1 per cent by 2015.", - "values": [ - "Labour", - "Rights of the Child" - ] - }, - { - "text": "Strengthen measures to promote tolerance and combat attitudes, behaviours and reflexes not covered by the law as well as stereotypes directed, inter alia, at the Muslim minority ", - "values": [ - "Freedom of religion and belief", - "Minorities" - ] - }, - { - "text": "Consider establishing a national human rights institution compliant with the Paris Principles and provided with the necessary resources to adequately carry out its mandate", - "values": [ - "National Human Rights Institution" - ] - }, - { - "text": "Ratify the Rome Statute, including accession to the Agreement on its Privileges and Immunities ", - "values": [ - "International instruments", - "Justice" - ] - }, - { - "text": "Further improve the normative framework in order to better guarantee women's and children's rights ", - "values": [ - "Rights of the Child", - "Women's rights" - ] - }, - { - "text": "Continue its efforts in the area of the right to education, and in allocating the necessary resources to promote this right and improve the quality of education ", - "values": [ - "Right to education" - ] - }, - { - "text": "Address the specific needs of minorities and migrants, particularly women and children ", - "values": [ - "Migrants", - "Minorities", - "Rights of the Child", - "Women's rights" - ] - }, - { - "text": "Continue strengthening its economic and social development", - "values": [ - "Development" - ] - }, - { - "text": "Issue a standing invitation to special procedures mandate holders of the Human Rights Council", - "values": [ - "Special procedures" - ] - }, - { - "text": "Adopt additional measures aimed at developing a global strategy to address all needs and to provide lasting solutions to internally displaced persons", - "values": [ - "Internally displaced persons" - ] - }, - { - "text": "A similar system (as for treaty bodies) be created for the analysis and implementation of the recommendations resulting from the universal periodic review exercise", - "values": [ - "UPR process" - ] - }, - { - "text": "Relaunch the work of the Steering Committee responsible for conceptualizing and adopting the National Human Rights Action Plan", - "values": [ - "General" - ] - }, - { - "text": "Continue to enhance its efforts to eradicate child labour ", - "values": [ - "Labour", - "Rights of the Child" - ] - }, - { - "text": "Ensure gender equality in inheritance matters, as well as the protection of women against harmful traditional practices", - "values": [ - "Torture and other CID treatment", - "Women's rights" - ] - }, - { - "text": "Without further delay, take steps to adopt the laws called for in its Constitution to safeguard the unique status of independent agencies in Tunisia", - "values": [ - "Justice" - ] - }, - { - "text": "Strengthen existing legislation on sexual exploitation and human trafficking, and ensure its full implementation", - "values": [ - "Trafficking" - ] - }, - { - "text": "Review the legislation and adopt measures to ensure equal access to education for disabled children, children with special education needs, children of foreigners or from poor families and/or minorities", - "values": [ - "Disabilities", - "Migrants", - "Minorities", - "Poverty", - "Right to education", - "Rights of the Child" - ] - }, - { - "text": "Consider the ratification of other core international human rights instruments, in particular the International Covenant on Civil and Political Rights, the Convention on the Elimination of All Forms of Racial Discrimination, the International Convention on the Protection of the Rights of\nAll Migrant Workers and Members of Their Families, and the Convention against Torture and Other Cruel, Inhuman or Degrading Treatment or Punishment \n", - "values": [ - "CP rights - general", - "International instruments", - "Labour", - "Migrants", - "Racial discrimination", - "Torture and other CID treatment" - ] - }, - { - "text": "Sign and ratify the Optional Protocol to the Convention against Torture and other Cruel, Inhuman or Degrading Treatment or Punishment", - "values": [ - "Detention", - "International instruments", - "Torture and other CID treatment" - ] - }, - { - "text": "Withdraw its reservations to the International Covenant on Civil and Political Rights", - "values": [ - "CP rights - general", - "International instruments" - ] - }, - { - "text": "Adopt measures of a political and legislative nature, including positive measures in favour of vulnerable groups in order to protect them from discrimination based on belief and cultural stereotypes", - "values": [ - "Freedom of religion and belief", - "Minorities", - "Racial discrimination" - ] - }, - { - "text": "Strengthen the functioning of the National Commission against Racial Discrimination Racism, Xenophobia and Related Forms of Intolerance in favour of intercultural dialogue, tolerance and awareness-raising programmes", - "values": [ - "Freedom of religion and belief", - "Human rights education and training", - "Racial discrimination" - ] - }, - { - "text": "The judiciary and other relevant authorities to provide justice, reparation and rehabilitation to the victims of wartime rape and sexual violence", - "values": [ - "Justice", - "Rights of the Child", - "Women's rights" - ] - }, - { - "text": "Accelerate the ratification process of a number of relevant international legal instruments on human rights, namely OP-ICESCR, OPCAT and the Rome Statute of the ICC", - "values": [ - "Detention", - "ESC rights - general", - "International instruments", - "Justice", - "Torture and other CID treatment" - ] - }, - { - "text": "Release all those who are arbitrarily detained and put an end to torture and other cruel, inhuman or degrading treatment of detainees, including those belonging to the moderate opposition that started the nonviolent protest against the Government", - "values": [ - "Detention", - "Freedom of association and peaceful assembly", - "Freedom of opinion and expression", - "Torture and other CID treatment" - ] - }, - { - "text": "Continue efforts to close the gender gap, especially in workforce participation and equality before the law", - "values": [ - "Women's rights" - ] - }, - { - "text": "Ratify Convention No. 169 of the International Labour Organization", - "values": [ - "Indigenous peoples", - "International instruments" - ] - }, - { - "text": "Ensure the training of prosecutors and security forces so they can identify, investigate and prosecute cases of gender-based violence", - "values": [ - "Human rights education and training", - "Women's rights" - ] - }, - { - "text": "Ensure the full and effective implementation of the Constitution to deliver the better enjoyment of human rights for the people of Turkmenistan.", - "values": [ - "General" - ] - }, - { - "text": "Transfer the administration of land-user rights and land use to the Sami people ", - "values": [ - "Indigenous peoples", - "Right to land" - ] - }, - { - "text": "Consider the possibility of adopting domestic legislation to implement its international commitments and establish procedures for refugees ", - "values": [ - "Asylum-seekers - refugees" - ] - }, - { - "text": "Raise awareness regarding human rights and the rule of law.", - "values": [ - "Justice" - ] - }, - { - "text": "Finalize and adopt before the end of 2015 the national human rights action plan in order to further stimulate the promotion and protection of human rights in the country", - "values": [ - "General" - ] - }, - { - "text": "Continue combating gender stereotypes and all forms of discrimination and violence against women", - "values": [ - "Women's rights" - ] - }, - { - "text": "Take all necessary measures, using the expertise of the Rapporteur on education, to address the causes of the decreasing school attendance and the high wastage rate, including by making available the necessary funding to provide adequate training for teachers and improve the curricula", - "values": [ - "Right to education", - "Special procedures" - ] - }, - { - "text": "Continue its efforts for the effective inclusion of indigenous people and migrants in society", - "values": [ - "Indigenous peoples", - "Migrants" - ] - }, - { - "text": "Build on its rule of law tradition to actively combat corruption and other obstacles to the economic, social, cultural, civil and political rights of its people", - "values": [ - "CP rights - general", - "Corruption", - "ESC rights - general" - ] - }, - { - "text": "Continue with its efforts through the Justice Reform Support Programme to strengthen institutions in the field of human rights ", - "values": [ - "Justice" - ] - }, - { - "text": "Comply fully with its obligations and commitments related to freedom of expression, including for members of the press ", - "values": [ - "Freedom of opinion and expression", - "Freedom of the press" - ] - }, - { - "text": "Create and implement public information programmes to combat anti-Roma prejudice, as recommended by the Human Rights Committee, and to harmonize civil registration procedures, as indicated by the United Nations High Commissioner for Refugees", - "values": [ - "Minorities", - "Treaty bodies" - ] - }, - { - "text": "Reconsider legislation adopted on inspections and audits to NGOs ", - "values": [ - "Civil society" - ] - }, - { - "text": "Consider establishing an NHRI in compliance with the Paris Principles ", - "values": [ - "National Human Rights Institution" - ] - }, - { - "text": "Being aware of the benefits of collaborating with the CSOs, the government is committed to enhancing closer ties with CSOs. ", - "values": [ - "Civil society" - ] - }, - { - "text": "Continue its policy to empower women and respect and protect their rights, including the fight against female genital mutilation", - "values": [ - "Rights of the Child", - "Torture and other CID treatment", - "Women's rights" - ] - }, - { - "text": "Extend standing invitations to special procedures mandate holders to visit the country, who can study the situation on the ground and make recommendations", - "values": [ - "Special procedures" - ] - }, - { - "text": "Adopt standards on trials in criminal cases and also to guarantee the rights of detainees and prisoners, in keeping with best practices and relevant international standards", - "values": [ - "Detention", - "Justice" - ] - }, - { - "text": "Continue developing the institutional framework with respect to the promotion and protection of human rights", - "values": [ - "General" - ] - }, - { - "text": "Thoroughly and impartially investigate and, if credible evidence emerges, prosecute all allegations of human rights violations, in particular enforced disappearances, custodial torture and extra-judicial killings ", - "values": [ - "Enforced disappearances", - "Extrajudicial executions", - "Torture and other CID treatment" - ] - }, - { - "text": "Adopt and implement all necessary measures to effectively prevent domestic violence and gender-based homicides", - "values": [ - "Rights of the Child", - "Women's rights" - ] - }, - { - "text": "Continue its efforts aimed at ratifying the CPED ", - "values": [ - "Enforced disappearances", - "International instruments" - ] - }, - { - "text": "Modify the family law by eliminating discrimination between men and women, and fight effectively domestic violence", - "values": [ - "Women's rights" - ] - }, - { - "text": "Continue to adopt legislation that would eliminate practices and cultural stereotypes that discriminate against women, especially discriminatory practices in the areas of land ownership, assets management and inheritance, all of which restrict women's access to economic resources and, thus, to women's autonomy", - "values": [ - "Women's rights" - ] - }, - { - "text": "Continue efforts to strengthen the institutional framework, including by providing necessary funding and personnel", - "values": [ - "General" - ] - }, - { - "text": "Respect the absolute prohibition on torture and take measures to guarantee punishment of all perpetrators", - "values": [ - "Torture and other CID treatment" - ] - }, - { - "text": "Strengthen efforts to combat violence against women", - "values": [ - "Women's rights" - ] - }, - { - "text": "Continue supporting national initiatives that promote the full respect for human rights in particular the field of the rights of women ", - "values": [ - "Women's rights" - ] - }, - { - "text": "Take steps to protect asylum-seekers and ensure respect for the principle of non-refoulement in accordance with international refugee law and international human rights law ", - "values": [ - "Asylum-seekers - refugees", - "International instruments" - ] - }, - { - "text": "Provide freedom to the people of \u201cPakistan-occupied Kashmir\u201c by ending its illegal and forcible occupation", - "values": [ - "Other" - ] - }, - { - "text": "Adopt a national programme for implementation of the Convention on the Rights of Persons with Disabilities", - "values": [ - "Disabilities", - "International instruments" - ] - }, - { - "text": "Speed up the introduction of a reform of the justice system including the penitentiary centres and national police", - "values": [ - "Detention", - "Justice" - ] - }, - { - "text": "Make the changes necessary to the national legislation so that no crime shall be punished with the death penalty and ratify the Second Optional Protocol to ICCPR", - "values": [ - "Death penalty", - "International instruments" - ] - }, - { - "text": "Promote a culture of tolerance and cooperation among different ethnic and religious groups, and foster greater socio-economic inclusion of the existing minorities ", - "values": [ - "Freedom of religion and belief", - "Minorities" - ] - }, - { - "text": "Establish a de jure moratorium on the use of corporal punishment ", - "values": [ - "Torture and other CID treatment" - ] - }, - { - "text": "Remove provisions in the 1982 Citizenship Law that grant citizenship on the basis of ethnicity or race and amend the Law to avoid statelessness", - "values": [ - "Minorities", - "Statelessness and the right to nationality" - ] - }, - { - "text": "Place a moratorium on the death penalty with the long-term view of repealing it", - "values": [ - "Death penalty" - ] - }, - { - "text": "Intensify efforts in enacting and strengthening appropriate legal framework, which will address gender inequalities, sexual violence and protection of women's rights", - "values": [ - "Women's rights" - ] - }, - { - "text": "Ensure that all persons requesting asylum in Latvia enjoy all procedural guarantees and that decisions on asylum, including those made under accelerated procedures, can be appealed and suspended to avoid the risk of refoulement", - "values": [ - "Asylum-seekers - refugees" - ] - }, - { - "text": "Ensure that the new constitution of the country takes greater account of the dimension of human rights protection and promotion, as well as of democracy ", - "values": [ - "General" - ] - }, - { - "text": "Continue to take measures in order to reduce the rate of mortality due to HIV and AIDS ", - "values": [ - "HIV - Aids" - ] - }, - { - "text": "Continue its efforts and positive initiatives in guaranteeing indigenous peoples' access to education, healthcare and judicial assistance", - "values": [ - "Indigenous peoples" - ] - }, - { - "text": "Condemn acts of violence and human rights violations committed against persons because of their sexual orientation or gender identity and ensure adequate protection for those human rights defenders who work on the rights of Lesbian, Gay, Bisexual and Transgender persons", - "values": [ - "Human rights defenders", - "Sexual Orientation and Gender Identity" - ] - }, - { - "text": "Take all necessary steps to promote an environment which would allow freedom of expression to be enjoyed without undue impediment ", - "values": [ - "Freedom of opinion and expression" - ] - }, - { - "text": "Ratify the Optional Protocol to CRC on the sale of children, child prostitution and child pornography", - "values": [ - "International instruments", - "Rights of the Child", - "Trafficking" - ] - }, - { - "text": "Continue to implement the national integration plan to increase access to education for children of migrant workers", - "values": [ - "Labour", - "Migrants", - "Right to education", - "Rights of the Child" - ] - }, - { - "text": "Continue and intensify efforts in combating poverty experienced by Roma and other disadvantaged members of the population", - "values": [ - "Minorities", - "Poverty" - ] - }, - { - "text": "Consider ratifying the International Convention for the Protection of All Persons from Enforced Disappearance, the Conventions relating to the Status of Refugees and the Status of Stateless Persons and the Rome Statute of the International Criminal Court.", - "values": [ - "Asylum-seekers - refugees", - "Enforced disappearances", - "International instruments", - "Justice", - "Statelessness and the right to nationality" - ] - }, - { - "text": "Pursue the measures in favour of the reinforcement of harmony and tolerance between the different segments of the Moldovan society ", - "values": [ - "General" - ] - }, - { - "text": "Do not to use the genocide ideology law to impede the activities of opposition parties, opposition and civil society", - "values": [ - "Civil society", - "Freedom of association and peaceful assembly" - ] - }, - { - "text": "Continue its efforts to further guarantee freedom of expression ", - "values": [ - "Freedom of opinion and expression" - ] - }, - { - "text": "Prosecute and monitor cases of incitement to racial discrimination and racist propaganda", - "values": [ - "Racial discrimination" - ] - }, - { - "text": "Take steps to eliminate all forms of discrimination against women and girls in relation to marriage, family relations and succession ", - "values": [ - "Rights of the Child", - "Women's rights" - ] - }, - { - "text": "Establish a national action plan to combat racism, racial discrimination, xenophobia and related intolerance consistent with the provisions of the Durban Declaration and Programme of Action", - "values": [ - "Racial discrimination" - ] - }, - { - "text": "Strengthen efforts to find a solution to the unrest in the southern border areas and ensure that justice is achieved for all sides ", - "values": [ - "Justice" - ] - }, - { - "text": "Continue its successful initiatives to fight the worst forms of child labour, in particular child trafficking for the purposes of labour exploitation and prostitution", - "values": [ - "Labour", - "Rights of the Child", - "Trafficking" - ] - }, - { - "text": "Continue improving the "One Mongolia" open national education programme", - "values": [ - "Right to education" - ] - }, - { - "text": "Continue to facilitate access to financing for higher education (university level) to the needy categories ", - "values": [ - "Right to education" - ] - }, - { - "text": "Extend an open and standing invitation to all special procedures ", - "values": [ - "General" - ] - }, - { - "text": "Strengthen its measures on the elimination of the economic exploitation of children, especially those coming from poor and socially marginalized families ", - "values": [ - "Labour", - "Poverty", - "Rights of the Child" - ] - }, - { - "text": "Continue to implement the national action plan to combat racism in order to eliminate xenophobia and Islamophobia", - "values": [ - "Freedom of religion and belief", - "Racial discrimination" - ] - }, - { - "text": "Reinforce awareness-raising and educational programmes to prevent traditional harmful practices against women and girls and to ensure that victims have access to resources and protection and rehabilitation mechanisms", - "values": [ - "Human rights education and training", - "Rights of the Child", - "Torture and other CID treatment", - "Women's rights" - ] - }, - { - "text": "Improve access to justice for women victims of domestic violence and gender-based violence", - "values": [ - "Rights of the Child", - "Women's rights" - ] - }, - { - "text": "Ratify the International Convention on the Protection of All Persons from Forced Disappearance and acknowledge the competency of the Committee provided for in the Convention.", - "values": [ - "Enforced disappearances", - "International instruments" - ] - }, - { - "text": "Harmonize its national legislation with what has been recommended by Committee on the Elimination of Racial Discrimination ", - "values": [ - "Racial discrimination", - "Treaty bodies" - ] - }, - { - "text": "Intensify awareness campaigns aimed at changing social attitudes and behaviour patterns that form the basis for violence against women, including homicides motivated by prejudice against women", - "values": [ - "Human rights education and training", - "Women's rights" - ] - }, - { - "text": "Give the full necessary consideration, in its international cooperation activities in the field of Human Rights with other countries, to aligning its efforts and contributions with the priorities, policies, and national plans of the concerned countries in a spirit of genuine dialogue ", - "values": [ - "Other" - ] - }, - { - "text": "Consider amending its Penal Code and Family Protection Act to ensure that spousal rape is criminalized, and that the definition of rape includes any form of non-consensual penetration of or by a sexual organ and that the definition be gender neutral so that men and boys are also protected by the rape laws", - "values": [ - "Women's rights" - ] - }, - { - "text": "Revoke the President's authority to appoint and dismiss judges", - "values": [ - "Justice" - ] - }, - { - "text": "Reform provisions of the civil code that discriminate against women, such as those that set a minimum age of 12 for marriage, prohibit widows and divorced women from getting married again before 300 days, or provide a food pension for women who lead a disorganized life.", - "values": [ - "Rights of the Child", - "Women's rights" - ] - }, - { - "text": "Give full and prompt implementation to those initiatives aimed at promoting an increased involvement of women in politics ", - "values": [ - "Women's rights" - ] - }, - { - "text": "Take measures to provide Roma with increased opportunities for education and employment", - "values": [ - "Labour", - "Minorities", - "Right to education" - ] - }, - { - "text": "Implement, with the assistance of the international cooperation, a complaints system to guarantee the effective access of women to justice, in accordance with the provisions of the Convention on the Elimination of All Forms of Discrimination against Women ", - "values": [ - "International instruments", - "Technical assistance and cooperation", - "Women's rights" - ] - }, - { - "text": "Continue efforts to disseminate the culture of human rights ", - "values": [ - "Human rights education and training" - ] - }, - { - "text": "Take effective measures to implement the recommendations of the Committee on the Rights of Persons with Disabilities, including with regard to the practice of sterilization of persons with disabilities without their free and informed consent", - "values": [ - "Disabilities", - "Torture and other CID treatment", - "Treaty bodies" - ] - }, - { - "text": "Continue the work on policies for the universal access to health, including the Health System for Indigenous Peoples", - "values": [ - "Indigenous peoples", - "Right to health" - ] - }, - { - "text": "Strictly adhere to international human rights law and international humanitarian law and international refugee law in its fight against terrorism", - "values": [ - "Asylum-seekers - refugees", - "Counter-terrorism", - "International humanitarian law", - "International instruments" - ] - }, - { - "text": "Strive to eradicate the root causes of human trafficking", - "values": [ - "Trafficking" - ] - }, - { - "text": "Respond positively to outstanding requests made by several United Nations Special Procedures, including the Special Rapporteur on freedom of religion or belief, to visit China", - "values": [ - "Freedom of religion and belief", - "Special procedures" - ] - }, - { - "text": "Take the necessary measures to give full effectiveness to the ICESCR in Poland's domestic legal system ", - "values": [ - "ESC rights - general", - "International instruments" - ] - }, - { - "text": "Ratify the Optional Protocol to the Convention against Torture and establish a national preventive mechanism under the Optional Protocol", - "values": [ - "Detention", - "International instruments", - "Torture and other CID treatment" - ] - }, - { - "text": "Review all executive laws relevant to juveniles", - "values": [ - "Justice", - "Rights of the Child" - ] - }, - { - "text": "Initiate investigations into all allegations of torture or other forms of ill-treatment in a thorough, impartial and independent manner and bring to justice, prosecute and punish all alleged perpetrators of torture or other forms of ill-treatment.", - "values": [ - "Torture and other CID treatment" - ] - }, - { - "text": "Ban corporal punishment of children to ensure the full protection and freedom from violence for all children", - "values": [ - "Rights of the Child" - ] - }, - { - "text": "Strengthen the humanistic policies of cooperation and solidarity with the people from the region of the Caribbean and Latin America", - "values": [ - "Other" - ] - }, - { - "text": "Ratify ICRMW ", - "values": [ - "International instruments", - "Labour", - "Migrants" - ] - }, - { - "text": "Continue the efforts to achieve stability in the society", - "values": [ - "Other" - ] - }, - { - "text": "After calling on all its partners to help Burundi with support of all kinds, the head of the delegation reaffirmed the Government's commitment to continuing its policy of strengthening the democratic process and the rule of law, expanding civil liberties and improving the protection of human rights", - "values": [ - "CP rights - general", - "Justice" - ] - }, - { - "text": "Continue to provide better protection for the rights of all its citizens through the implementation of the national action plan against discrimination which reflects the firm resolve of the Government to combat all forms of discrimination on the grounds of origin in accordance with its international obligations ", - "values": [ - "Racial discrimination" - ] - }, - { - "text": "Continue to develop measures to ensure non-discrimination against women and promote gender equality", - "values": [ - "Women's rights" - ] - }, - { - "text": "Take appropriate legislative measures to ban violence against children, including corporal punishment ", - "values": [ - "Rights of the Child", - "Torture and other CID treatment" - ] - }, - { - "text": "[Give full and equal rights to women] In all areas", - "values": [ - "Women's rights" - ] - }, - { - "text": "Continue to deepen awareness-raising measures against racism and xenophobia, particularly with regard to migrants and refugees", - "values": [ - "Asylum-seekers - refugees", - "Human rights education and training", - "Migrants", - "Racial discrimination" - ] - }, - { - "text": "Improve the Law on Gender Equality to be in line with its Law on the Elimination of All Forms of Discrimination and the Convention on the Elimination of All Forms of Discrimination against Women", - "values": [ - "International instruments", - "Women's rights" - ] - }, - { - "text": "Prioritize action to address the concerns raised by the United Nations human rights treaty bodies regarding the situation of women, particularly in the informal sector, and the lack of rights and social benefits, including maternal protections available to them", - "values": [ - "Treaty bodies", - "Women's rights" - ] - }, - { - "text": "Redouble efforts to reduce maternal mortality, including through the recent maternal health ministerial taskforce and the emergency response action plan ", - "values": [ - "Right to health", - "Women's rights" - ] - }, - { - "text": "Take all necessary measures to effectively eliminate the incidence of child, early and forced marriage", - "values": [ - "Rights of the Child", - "Women's rights" - ] - }, - { - "text": "Extend a standing invitation to the Council's Special Procedures", - "values": [ - "Special procedures" - ] - }, - { - "text": "Issue a standing invitation to all thematic special procedures", - "values": [ - "Special procedures" - ] - }, - { - "text": "Move towards the abolition of the death penalty", - "values": [ - "Death penalty" - ] - }, - { - "text": "Continue to make efforts to combat trafficking in persons, including through expanding and strengthening international, regional and bilateral cooperation ", - "values": [ - "Trafficking" - ] - }, - { - "text": "Ratify the CPED, OP-CAT, the Rome Statute of the ICC, and the Additional Protocols I and II of the Geneva Conventions of 12 August 1949", - "values": [ - "Enforced disappearances", - "International humanitarian law", - "International instruments", - "Justice", - "Torture and other CID treatment" - ] - }, - { - "text": "Continue implementation of the national programme to eradicate the legacy of slavery and expand public awareness campaigns against all forms of slavery", - "values": [ - "Human rights education and training" - ] - }, - { - "text": "Continue its efforts in the advancement of the protection of the rights of women, gender equality and the promotion of gender-equal society by implementing the fourth Basic Plan for Gender Equality", - "values": [ - "Women's rights" - ] - }, - { - "text": "Establish a moratorium on death penalty at the federal and states levels with a view to ultimately achieve nationwide legal abolition", - "values": [ - "Death penalty" - ] - }, - { - "text": "Strengthen its human rights framework by establishing a comprehensive legislative scheme for all human rights ", - "values": [ - "Justice" - ] - }, - { - "text": "Continue its efforts in training and capacity-building programmes for government and law enforcement officials in order to strengthen efficiency in the promotion and protection of human rights within the existing laws and policies ", - "values": [ - "Human rights education and training" - ] - }, - { - "text": "Continue to improve the social security system so as to provide better safeguards for the elderly, persons with disabilities and migrants ", - "values": [ - "Disabilities", - "Migrants" - ] - }, - { - "text": "Share its experiences and good practices in promoting human rights and democratic ideas within Islam and eliminating negative references to adherents of other religions in its school curriculum and textbooks", - "values": [ - "Freedom of religion and belief" - ] - }, - { - "text": "Repeal the clause expanding the use of the death penalty for economic crimes", - "values": [ - "Death penalty" - ] - }, - { - "text": "Enforce the ban that does not allow confessions obtained through torture or other unlawful methods to be used as evidence", - "values": [ - "Torture and other CID treatment" - ] - }, - { - "text": "Allow opposition parties to carry out their activities without intimidation or hindrance, and release individuals prosecuted solely for the peaceful and legitimate expression of their views", - "values": [ - "Freedom of association and peaceful assembly", - "Freedom of opinion and expression" - ] - }, - { - "text": "Effectively investigate and prosecute crimes and violations against human rights defenders and journalists, and ensure that those responsible are punished - furthermore adopt appropriate measures to disseminate widely and ensure full observance of the Declaration on Human Rights Defenders ", - "values": [ - "Freedom of the press", - "Human rights defenders", - "International instruments" - ] - }, - { - "text": "Ratify the Second Optional Protocol to the International Covenant on Civil and Political Rights (ICCPR)", - "values": [ - "Death penalty", - "International instruments" - ] - }, - { - "text": "Expand opportunities for training and awareness-raising in the area of human rights for members of the security forces", - "values": [ - "Human rights education and training" - ] - }, - { - "text": "Adopt legislation on the restitution of the properties confiscated during the communist period ", - "values": [ - "Justice" - ] - }, - { - "text": "Ensure that any interference with the right to privacy therein complies with the principles of legality, necessity and proportionality", - "values": [ - "Privacy" - ] - }, - { - "text": "Accede to the 1990 International Convention on the Protection of the Rights of All Migrant Workers and Members of Their Families", - "values": [ - "International instruments", - "Labour", - "Migrants" - ] - }, - { - "text": "Consider ratifying the Convention for the Protection of all Persons against Enforced Disappearance and the Optional Protocol to the Convention on the Elimination of All Forms of Discrimination against Women.", - "values": [ - "Enforced disappearances", - "International instruments", - "Women's rights" - ] - }, - { - "text": "Strengthen its protection of trafficking victims", - "values": [ - "Trafficking" - ] - }, - { - "text": "Adopt a moratorium on the death penalty, as a primary step towards its abolition", - "values": [ - "Death penalty" - ] - }, - { - "text": "Take steps to end the practice of international adoptions where the adoptive applicants are matched with children without having been introduced or had any opportunity to build any relationship with a child prior to the adoption decision", - "values": [ - "Rights of the Child" - ] - }, - { - "text": "Continue efforts in providing all with basic education", - "values": [ - "Right to education" - ] - }, - { - "text": "Ratify a number of international legal instruments and the Second Optional Protocol to the International Covenant on Civil and Political Rights and align its national laws with international standards regarding the abolition of the death penalty", - "values": [ - "Death penalty", - "International instruments" - ] - }, - { - "text": "Monitor the effective application of the anti-discrimination legislation and consider taking special measures to foster the integration process of national and ethnic minorities in society", - "values": [ - "Minorities", - "Racial discrimination" - ] - }, - { - "text": "Adopt the necessary measures in the legislative sphere as well as policy measures and allocation of resources to incorporate and effectively implement the Convention on the Elimination of All Forms of Discrimination against Women in its domestic law ", - "values": [ - "International instruments", - "Women's rights" - ] - }, - { - "text": "Establish a disaggregated database on women heads of households to be used uniformly in welfare and resettlement policies and programmes, including to ensure that women heads of households and internally displaced persons have targeted psychosocial and livelihood assistance, as well as adequate and durable access to housing", - "values": [ - "Internally displaced persons", - "Right to housing", - "Women's rights" - ] - }, - { - "text": "Continue to apply measures to guarantee access to health services and quality education for all its population ", - "values": [ - "Right to education", - "Right to health" - ] - }, - { - "text": "Continue the prioritization of initiatives to combat poverty and ensure programmes aimed at poverty reduction are adequately funded ", - "values": [ - "Poverty" - ] - }, - { - "text": "Adopt further administrative and educational measures to narrow and close the wage gap and enact equal pay for work of equal value.", - "values": [ - "Women's rights" - ] - }, - { - "text": "Consider the ratification of the remaining human rights core international instruments ", - "values": [ - "International instruments" - ] - }, - { - "text": "Pursue its policy aiming at enshrining human rights principles into national legislation in accordance to international standards as well as to continue its constructive cooperation with international human rights mechanisms", - "values": [ - "General", - "International instruments" - ] - }, - { - "text": "The Government reaffirms its commitment to ensure that EAIC will be able to fulfil its statutory function and duties and continues to be allocated the necessary financial and manpower resources in order for it to discharge its mandate effectively and efficiently.", - "values": [ - "Human rights violations by state agents" - ] - }, - { - "text": "Continue efforts to build and strengthen national human rights and democratic institutions ", - "values": [ - "General" - ] - }, - { - "text": "Reconsider its position and abolish the death penalty, if necessary by initially establishing a moratorium on executions ", - "values": [ - "Death penalty" - ] - }, - { - "text": "In line with its commitment under the previous UPR cycle, work towards ensuring free access to the electronic media and liberalize the electronic media ownership rules by drafting a cyber law in accordance with international standards ", - "values": [ - "Freedom of the press", - "UPR process" - ] - }, - { - "text": "Continue efforts and share best practices on combating human trafficking both nationally and internationally by closely cooperating with concerned parties", - "values": [ - "Trafficking" - ] - }, - { - "text": "Cease egregious abuses against prisoners, allow for the immediate, unfettered access to medical services for all detainees and release Syrians who have been arbitrarily imprisoned and held without trial", - "values": [ - "Detention", - "Right to health" - ] - }, - { - "text": "Seek assistance from the international community to take up the various challenges confronting it.", - "values": [ - "Technical assistance and cooperation" - ] - }, - { - "text": "Provide the Office of the Human Rights Commissioner with the means necessary to enable it to carry out its mandate in a full, efficient and independent manner", - "values": [ - "Technical assistance and cooperation" - ] - }, - { - "text": "Formalise the political engagement with relation to the death penalty by signing and ratifying ICCPR- OP 2, aimed at abolishing the death penalty", - "values": [ - "Death penalty", - "International instruments" - ] - }, - { - "text": "Strengthen the state of laws and good governance, especially on the legal enforcement and capacity building for national agencies on human rights ", - "values": [ - "Justice" - ] - }, - { - "text": "Take measures to help effective access to justice for victims of domestic violence and provide immediate means of redress and protection.", - "values": [ - "Rights of the Child", - "Women's rights" - ] - }, - { - "text": "Issue a standing invitation to all special procedures and, in particular, that it seeks visits by the Special Rapporteurs on freedom of religion or belief, freedom of expression, torture and violence against women.", - "values": [ - "Freedom of opinion and expression", - "Freedom of religion and belief", - "Special procedures", - "Torture and other CID treatment", - "Women's rights" - ] - }, - { - "text": "Consider strengthening the positive engagement with civil society, nongovernmental organizations and academic institutions, with a view to enhancing the promotion and protection of human rights and fundamental freedoms of its people", - "values": [ - "Civil society" - ] - }, - { - "text": "Enact a law on asylum seekers and refugees to ensure that migrants enjoy a safe legal status", - "values": [ - "Asylum-seekers - refugees" - ] - }, - { - "text": "Establish a national institution for the promotion and protection of human rights consistent with the Paris Principles", - "values": [ - "National Human Rights Institution" - ] - }, - { - "text": "Eliminate any legislation criminalizing same-sex relations ", - "values": [ - "Sexual Orientation and Gender Identity" - ] - }, - { - "text": "Establish gender equality legislation to better protect the rights of women and girls", - "values": [ - "Rights of the Child", - "Women's rights" - ] - }, - { - "text": "Complete ratification of the Convention on the Rights of Persons with Disabilities ", - "values": [ - "Disabilities", - "International instruments" - ] - }, - { - "text": "Continue reviewing policies for effective implementation of women and child rights", - "values": [ - "Rights of the Child", - "Women's rights" - ] - }, - { - "text": "Focus on economic, social and cultural rights as a first step to lifting the country out of the cycle of poverty and underdevelopment according to the Agenda 2030 on Sustainable Development of the United Nations", - "values": [ - "Development", - "Poverty" - ] - }, - { - "text": "Consider adopting a comprehensive strategy at all levels to combat all forms of violence against women, including domestic violence", - "values": [ - "Women's rights" - ] - }, - { - "text": "Conduct a credible and impartial investigation and address all allegations of human rights violations with a view to bringing the perpetrators to justice", - "values": [ - "General" - ] - }, - { - "text": "Consider increasing efforts to address the sexual exploitation of women and girls", - "values": [ - "Rights of the Child", - "Women's rights" - ] - }, - { - "text": "Ratify international human rights instruments, particularly the Convention against Torture and other Cruel Inhuman or Degrading Treatment or Punishment", - "values": [ - "International instruments", - "Torture and other CID treatment" - ] - }, - { - "text": "Decriminalize abortion in all circumstances and, as a minimum, ensure access to safe abortion also in cases of rape, incest, serious risks to the health of the mother and fatal foetal abnormality", - "values": [ - "Women's rights" - ] - }, - { - "text": "Thoroughly investigate allegations of human rights violations by members of the Afghan National Security Forces, and hold perpetrators accountable ", - "values": [ - "Human rights violations by state agents" - ] - }, - { - "text": "Prepare and implement a specific birth registration strategy for indigenous peoples", - "values": [ - "Indigenous peoples", - "Rights of the Child", - "Statelessness and the right to nationality" - ] - }, - { - "text": "Commute without delay all death sentences to terms of imprisonment and work towards ratification of the Second Optional Protocol to the International Covenant on Civil and Political Rights, aiming at the abolition of the death penalty", - "values": [ - "Death penalty", - "International instruments" - ] - }, - { - "text": "Pursue efforts to overcome challenges relating to improvement of the quality of education and to close the gap between urban, rural and remote areas ", - "values": [ - "Right to education" - ] - }, - { - "text": "Increase input in poverty reduction, implement the Eighth National Socioeconomic Development Plan, increase input in education, and further increase girls enrolment rate", - "values": [ - "Development", - "ESC rights - general", - "Poverty", - "Right to education", - "Rights of the Child", - "Women's rights" - ] - }, - { - "text": "Consider ratifying CAT and OP-CAT, which are already signed", - "values": [ - "Detention", - "International instruments", - "Torture and other CID treatment" - ] - }, - { - "text": "Continue its efforts to address the situation of half the prison population in the country being Maori through, among other things, its Drivers of Crime initiative and Youth Crime Action Plan recently launched ", - "values": [ - "Detention", - "Indigenous peoples" - ] - }, - { - "text": "Extend a standing invitation to all special procedure mandate holders of the Human Rights Council", - "values": [ - "Special procedures" - ] - }, - { - "text": "Consider ratifying the two Optional Protocols to the Convention on the Rights of the Child ", - "values": [ - "International instruments", - "Rights of the Child" - ] - }, - { - "text": "Continue applying the strategies and plans for socio-economic development of the country", - "values": [ - "Development" - ] - }, - { - "text": "Take further measures to redress inequality in job opportunities and social welfare", - "values": [ - "Development" - ] - }, - { - "text": "Continue its impressive efforts towards realization of children rights, and in this context share its experiences on the work of the Ombudsperson for Children", - "values": [ - "National Human Rights Institution", - "Rights of the Child" - ] - }, - { - "text": "Allow full and unfettered access to the United Nations Human Rights Council's Commission of Inquiry established under Human Rights Council resolution S-17/1", - "values": [ - "Technical assistance and cooperation" - ] - }, - { - "text": "Pursue its efforts to promote and facilitate schooling and attendance, especially for disadvantaged families", - "values": [ - "Right to education" - ] - }, - { - "text": "Make further efforts, including in a financial sense, to ensure the smooth implementation and successful conclusion of the Khmer Rouge Tribunal, in cooperation with the international community ", - "values": [ - "Justice" - ] - }, - { - "text": "Ratify the International Covenant on Civil and Political Rights and the Convention against Torture, and ensure full implementation of their provisions ", - "values": [ - "CP rights - general", - "International instruments", - "Torture and other CID treatment" - ] - }, - { - "text": "Guarantee an effective and sufficient specialization of the stakeholders in the juvenile justice system", - "values": [ - "Justice", - "Rights of the Child" - ] - }, - { - "text": "Publish in the Official Journal all international and regional human rights treaties once they are ratified or acceded to by Benin, for their dissemination", - "values": [ - "International instruments" - ] - }, - { - "text": "Implement the 2012 Peace and Reconciliation Commission Act in order to appease the climate of national instability and ensure effectively the promotion and protection of human rights", - "values": [ - "Justice" - ] - }, - { - "text": "Formally abolish any punishment on the grounds of sexual orientation or gender identity", - "values": [ - "Sexual Orientation and Gender Identity" - ] - }, - { - "text": "Pay more attention to the fight against trafficking in children and their sexual exploitation ", - "values": [ - "Rights of the Child", - "Trafficking" - ] - }, - { - "text": "Ratify the Optional Protocol to the Convention on the Rights of the Child on the sale of children, child prostitution and child pornography, sign and ratify the Optional Protocol to the Convention on the Rights of the Child on a communications procedure, adopt respective amendments to the Children's Act of 2001, and fully implement the National Plan of Action on Children 2013-2017", - "values": [ - "International instruments", - "Rights of the Child", - "Trafficking" - ] - }, - { - "text": "Continue with judicial reforms with a view to strengthening human rights safeguards", - "values": [ - "Justice" - ] - }, - { - "text": "Complete the ratification process of the CPED signed in 2007 ", - "values": [ - "Enforced disappearances", - "International instruments" - ] - }, - { - "text": "Eliminate overcrowding in prisons", - "values": [ - "Detention" - ] - }, - { - "text": "Guarantee freedom of speech and eliminate restrictions to the free flow of information, including through the Internet, and stop arrests, prosecution and sanction of individuals for expressing views and opinions", - "values": [ - "Freedom of opinion and expression" - ] - }, - { - "text": "Harmonize national legislation with standards and requirements contemplated in international human rights instruments ratified by Jordan", - "values": [ - "International instruments" - ] - }, - { - "text": "Enhance programs to ensure the right to food and countering malnutrition of the youngest people in Senegal", - "values": [ - "Right to food" - ] - }, - { - "text": "Adoption of the principle of equal pay for equal work, regardless of any differences", - "values": [ - "Labour" - ] - }, - { - "text": "Harmonize national legislation, including in particular human rights legislation, with international human rights standards", - "values": [ - "International instruments" - ] - }, - { - "text": "Engage members of the international community with a view to building capacity, particularly with regard to securing improvements in the human rights situation of its population", - "values": [ - "Other" - ] - }, - { - "text": "Revise and harmonize its anti-discrimination laws to ensure effective protection against all forms of discrimination", - "values": [ - "Other" - ] - }, - { - "text": "Amend current legislation on housing in order to explicitly prohibit all forms of discrimination based on ethnic origin as with regard to access to housing ", - "values": [ - "Racial discrimination", - "Right to housing" - ] - }, - { - "text": "Strengthen its legislative and policy framework to ensure women's rights are promoted and protected as a national priority, and in particular urgently consider criminalizing marital rape", - "values": [ - "Women's rights" - ] - }, - { - "text": "Seek means and guarantees to apply the provisions of the Basic Law of the State and its amendments", - "values": [ - "General" - ] - }, - { - "text": "Amend legislation to ensure that sexual orientation and gender identity are included as prohibited grounds for discrimination ", - "values": [ - "Sexual Orientation and Gender Identity" - ] - }, - { - "text": "Fully ensure everyone's right to exercise freedom of expression, including internet freedom, strengthen the dialogue with civil society and respect the rights of NGOs by eliminating all restrictive impediments ", - "values": [ - "Civil society", - "Freedom of opinion and expression" - ] - }, - { - "text": "Increase funding for education, ensure access to education for all children, overcome gender disparities in access to education and improve the educational infrastructure and the quality of education", - "values": [ - "Right to education", - "Rights of the Child" - ] - }, - { - "text": "Intensify efforts to put an end to racial discrimination, and to this end, fill the legal vacuum by adopting a law that sanctions it", - "values": [ - "Racial discrimination" - ] - }, - { - "text": "Investigate all allegations of torture and ill-treatment in detention facilities, and take appropriate measures to bring perpetrators to justice", - "values": [ - "Detention", - "Torture and other CID treatment" - ] - }, - { - "text": "Create conditions enabling girls to attend school without discrimination", - "values": [ - "Right to education", - "Rights of the Child", - "Women's rights" - ] - }, - { - "text": "Enact legislation that addresses exploitation of children via sexually explicit videos, movies, photos and electronic images ", - "values": [ - "Rights of the Child" - ] - }, - { - "text": "Implement as a priority the National Action Plan against Racism, Xenophobia and Intolerance", - "values": [ - "Racial discrimination" - ] - }, - { - "text": "Consider ratifying the Optional Protocol to the Convention on the Elimination of All Forms of Discrimination against Women (CEDAW)", - "values": [ - "International instruments", - "Women's rights" - ] - }, - { - "text": "Continue to conduct outreach activities to raise the awareness of people on human rights", - "values": [ - "Human rights education and training" - ] - }, - { - "text": "Adopt measures to put an end to all kinds of discrimination, particularly discrimination between men and women in the workplace", - "values": [ - "Women's rights" - ] - }, - { - "text": "Continue upholding the rule of law, raising public awareness of human rights standards, and fighting against discrimination, in particular against minority groups, immigrants, and children with disabilities", - "values": [ - "Disabilities", - "Human rights education and training", - "Justice", - "Migrants", - "Minorities", - "Rights of the Child" - ] - }, - { - "text": "Develop a comprehensive policy, consistent with the provisions of CEDAW, to ensure that there is effective gender equality, and fight genderbased violence while monitoring cases of such violence, and study the reasons why they are rarely reported to the authorities ", - "values": [ - "International instruments", - "Women's rights" - ] - }, - { - "text": "Strengthen protection of children's rights, including the ratification of the Convention on the Rights of the Child, by improving mechanisms and resources for the implementation of existing legislation, and by demonstrating higher conviction rates for crimes against children such as sexual exploitation, child labour, child forced-labour and child trafficking ", - "values": [ - "International instruments", - "Labour", - "Rights of the Child", - "Trafficking" - ] - }, - { - "text": "Delete the crime of apostasy from national legislation", - "values": [ - "Freedom of religion and belief" - ] - }, - { - "text": "Continue its efforts aimed at strengthening the development of children and youth", - "values": [ - "Rights of the Child" - ] - }, - { - "text": "Step up its efforts to ease overcrowding in the prison system and especially look for alternative non-custodial measures for adolescents", - "values": [ - "Detention", - "Rights of the Child" - ] - }, - { - "text": "Ratify and accede to the Convention against Torture and Other Cruel, Inhuman or Degrading Treatment or Punishment, the International Convention on the Protection of the Rights of All Migrant Workers and Members of Their Families and the International Convention for the Protection of All Persons from Enforced Disappearance ", - "values": [ - "Enforced disappearances", - "International instruments", - "Labour", - "Migrants", - "Torture and other CID treatment" - ] - }, - { - "text": "Cooperate with the International Criminal Court ", - "values": [ - "Justice" - ] - }, - { - "text": "Ensure the country-wide and effective implementation of the Law on Domestic Violence, and ensure access of victims to medical -including psychological-, legal and social support", - "values": [ - "Rights of the Child", - "Women's rights" - ] - }, - { - "text": "Amend the Penal Code to exclude drug-trafficking related crimes from those punished by the death penalty", - "values": [ - "Death penalty", - "Public security" - ] - }, - { - "text": "Prevent different forms of danger for children such as life on the streets, domestic violence, child trafficking, child labour, armed conflict, sexual exploitation", - "values": [ - "International humanitarian law", - "Labour", - "Rights of the Child", - "Trafficking" - ] - }, - { - "text": "Consider ratifying OP-CEDAW", - "values": [ - "International instruments", - "Women's rights" - ] - }, - { - "text": "Become party to the Second Optional Protocol to ICCPR, aiming at the abolition of the death penalty", - "values": [ - "Death penalty", - "International instruments" - ] - }, - { - "text": "Adopt and implement temporary special measures in order to accelerate the realization of women's de facto equality with men in all areas, particularly with regard to women's participation in decision-making and access to economic opportunities ", - "values": [ - "Women's rights" - ] - }, - { - "text": "Ensure that the Zimbabwe Human Rights Commission is provided with appropriate support and facilities ", - "values": [ - "National Human Rights Institution" - ] - }, - { - "text": "Conduct more effective campaigns, as well as necessary legal reforms, to eradicate aggressions against minors", - "values": [ - "Rights of the Child" - ] - }, - { - "text": "Continue strengthening the functions of the competent institutions and use of adequate mechanisms to more efficiently combat domestic violence, which mainly affects women and children ", - "values": [ - "Rights of the Child", - "Women's rights" - ] - }, - { - "text": "Place high priority on measures aimed at combating violence against women in the family and in society, increase the population's awareness about violence against women as well as strengthen support programs aimed at the elimination of sexual violence and incest, and prostitution as a form of exploitation", - "values": [ - "Human rights education and training", - "Women's rights" - ] - }, - { - "text": "Provide for the full independence of the judicial branch and the freedom of the press ", - "values": [ - "Freedom of the press", - "Justice" - ] - }, - { - "text": "Ensure the strict observance of its legislation - in particular, effectively guarantee the equality of treatment of men and women at work, as well as equality in access to employment ", - "values": [ - "Women's rights" - ] - }, - { - "text": "Allocate adequate resources to implement affirmative action policies for the protection and advancement of rights of women and girls", - "values": [ - "Rights of the Child", - "Women's rights" - ] - }, - { - "text": "Remain committed to the protection and promotion of human rights and stay constructively engaged with the international community in this regard. ", - "values": [ - "General" - ] - }, - { - "text": "Immediately end extrajudicial executions and the practice of collective punishment ", - "values": [ - "Extrajudicial executions" - ] - }, - { - "text": "Continue to further its efforts to guarantee the rights of the child", - "values": [ - "Rights of the Child" - ] - }, - { - "text": "Continue its efforts in improving the quality of education at all levels as well as in increasing the student's enrolment in secondary education", - "values": [ - "Right to education" - ] - }, - { - "text": "Abolish the practice of arraigo as soon as possible", - "values": [ - "Detention" - ] - }, - { - "text": "Amend the criminal legislation in order to eliminate obstacles to freedom of expression and to freedom of association", - "values": [ - "Freedom of association and peaceful assembly", - "Freedom of opinion and expression" - ] - }, - { - "text": "Impose a formal moratorium on capital punishment with a view to abolishing it entirely in line with General Assembly resolutions 62/149 and 63/168 and the Second Optional Protocol to ICCPR ", - "values": [ - "Death penalty", - "International instruments" - ] - }, - { - "text": "Improve the situation of refugees and asylum seekers", - "values": [ - "Asylum-seekers - refugees" - ] - }, - { - "text": "Continue legislative reforms aimed at improving the electoral process before the presidential and parliamentary elections planned in 2012, by simplifying the registration procedure for political parties, ensuring opposition representation in the Central Electoral Commission and encouraging participation by ethnic minorities in order to ensure that its law, regulations and practice governing the electoral process are in keeping with the International Covenant on Civil and Political Rights", - "values": [ - "Elections", - "Freedom of association and peaceful assembly", - "International instruments", - "Minorities" - ] - }, - { - "text": "Promote awareness and prevention of HIV/AIDS, especially in the rural areas and improve protective and preventive support for AIDS orphans", - "values": [ - "HIV - Aids", - "Rights of the Child" - ] - }, - { - "text": "Address the concerns raised by the Human Rights Committee and the Committee on the Rights of the Child on corporal punishment.", - "values": [ - "Rights of the Child", - "Torture and other CID treatment", - "Treaty bodies" - ] - }, - { - "text": "Strengthen national action plans that promote tolerance and intercultural understanding, in order to prevent and counter racist and xenophobic acts, particularly those arising from political propaganda", - "values": [ - "Racial discrimination" - ] - }, - { - "text": "Strengthen its cooperation with United Nations human rights mechanisms, including by extending a standing invitation to all thematic Special proceduress ", - "values": [ - "Special procedures", - "Treaty bodies", - "UPR process" - ] - }, - { - "text": "Fully implement its obligations under international law, including international humanitarian law, in particular the Fourth Geneva Convention of 1949 relating to treatment of non-combatants in the hands of the occupying power.", - "values": [ - "International humanitarian law", - "International instruments" - ] - }, - { - "text": "Encourage the participation and representation of citizens in all sectors of the society regardless of their origin or religion", - "values": [ - "Freedom of religion and belief" - ] - }, - { - "text": "Implement effectively the Convention on the Elimination of All Forms of Discrimination against Women, in particular by addressing deep rooted stereotypes regarding the roles and responsibilities of women and men in the family and in society", - "values": [ - "International instruments", - "Women's rights" - ] - }, - { - "text": "Become a State party to CED", - "values": [ - "Enforced disappearances", - "International instruments" - ] - }, - { - "text": "Establish a moratorium on executions with a view to abolishing the death penalty in accordance with relevant General Assembly resolutions", - "values": [ - "Death penalty" - ] - }, - { - "text": "In accordance with article 54 of its Constitution, stop using the preventive detention orders by prosecutors as a measure to punish or to prolong the incarceration of activists and protestors", - "values": [ - "Detention", - "Freedom of association and peaceful assembly", - "Human rights defenders" - ] - }, - { - "text": "Further enhance efforts to combat corruption which affects all areas of society and hinders individual and national development", - "values": [ - "Corruption", - "Development" - ] - }, - { - "text": "Continue to fulfil its international human rights commitments and obligations and continue its cooperation with international human rights mechanisms", - "values": [ - "International instruments" - ] - }, - { - "text": "Continue to promote partnerships between the authorities and civil society organizations, to complete the process of return of refugees and displaced persons, to solve the issue of housing accommodation, through accelerated accommodation of the former tenancy right holders and full implementation of the action plan to achieve progress in the implementation of the Housing Care Programme for former tenancy rights holders within and outside the areas of special state concern, as a precondition for the sustainable and dignified return of refugees and displaced persons ", - "values": [ - "Asylum-seekers - refugees", - "Civil society", - "Internally displaced persons", - "Right to housing" - ] - }, - { - "text": "Put in place legislation ensuring the equality of men and women and prohibiting discrimination against women ", - "values": [ - "Women's rights" - ] - }, - { - "text": "Consider the possibility of accession to the Second Optional Protocol to the International Covenant on Civil and Political Rights with a view to abolishing the death penalty.", - "values": [ - "Death penalty", - "International instruments" - ] - }, - { - "text": "The Government of Malaysia underscores its commitment to continue ensuring the promotion and protection of all human rights in the country, taking into account the needs of the most vulnerable and disadvantaged segments as well as society's readiness particularly with regard to certain sensitive issues such as religion, race and rights of refugees or undocumented migrants, among others.", - "values": [ - "Asylum-seekers - refugees", - "Freedom of religion and belief", - "Migrants", - "Minorities" - ] - }, - { - "text": "Share its experiences and best practices internationally on the concept of Gross National Happiness ", - "values": [ - "Other" - ] - }, - { - "text": "Strengthen the implementation of the National Action Plan on Human Rights", - "values": [ - "General" - ] - }, - { - "text": "Ensure sufficient resources for effective functioning of its national preventive mechanism provided for in the Optional Protocol to the Convention against Torture and Other Cruel, Inhuman or Degrading Treatment or Punishment OP-CAT and further strengthen mechanisms for independent investigation of alleged cases of torture and for effective access of victims to remedies with special attention to protection of women, children and persons of minority sexual orientation or gender identity ", - "values": [ - "Detention", - "International instruments", - "Sexual Orientation and Gender Identity", - "Torture and other CID treatment", - "Women's rights" - ] - }, - { - "text": "Review its legislation to ensure that it fully complies with the International Covenant on Civil and Political Rights and international standards on refugees and asylum seekers", - "values": [ - "Asylum-seekers - refugees", - "CP rights - general", - "International instruments" - ] - }, - { - "text": "Implement the recommendations of the Committee against Torture in its 2006 Concluding Observations for Burundi, and ratify the Optional Protocol to the Convention against Torture ", - "values": [ - "Detention", - "International instruments", - "Torture and other CID treatment", - "Treaty bodies" - ] - }, - { - "text": "Establish a separate juvenile justice system to try accused Palestinian children.", - "values": [ - "Justice", - "Rights of the Child" - ] - }, - { - "text": "Continue its efforts to attain the five major national priorities in the areas of public health, education, job creation, the fight against corruption and crime, and ensuring food security ", - "values": [ - "Corruption", - "Development", - "Public security", - "Right to education", - "Right to food", - "Right to health" - ] - }, - { - "text": "Continue utilizing this Inter-ministerial Standing Committee with a view to finalizing other initial and periodic reports to various treaty bodies", - "values": [ - "Treaty bodies" - ] - }, - { - "text": "Amend the Citizenship and Nationality Law to enable Jordanian women to pass on their nationality to their children and spouses on an equal basis with Jordanian men", - "values": [ - "Women's rights" - ] - }, - { - "text": "Improve its cooperation with the United Nations treaty bodies by agreeing on timelines for submitting overdue reports, in particular to the Human Rights Committee and the Committee on the Elimination of Discrimination against Women ", - "values": [ - "CP rights - general", - "Treaty bodies", - "Women's rights" - ] - }, - { - "text": "Consider sharing with other countries the Moroccan experience regarding the protection and promotion of the rights of migrants", - "values": [ - "Migrants" - ] - }, - { - "text": "Strengthen the legal rights framework and enforcement of these rights for migrants, asylum seekers and victims of trafficking ", - "values": [ - "Asylum-seekers - refugees", - "Migrants", - "Trafficking" - ] - }, - { - "text": "Step up efforts to combat impunity and carry out rapid, impartial, effective and in depth inquiries for all past or present allegations of human rights violations committed by security forces and ensure that such violations do not remain unpunished", - "values": [ - "Human rights violations by state agents", - "Impunity" - ] - }, - { - "text": "Further strengthen the institutional anti-discrimination framework by providing awareness-raising campaigns and promoting tolerance and equality based on sex, gender and race.", - "values": [ - "Human rights education and training" - ] - }, - { - "text": "Continue working towards the creation of a national gender policy", - "values": [ - "Women's rights" - ] - }, - { - "text": "Repeal all legislation which may discriminate against lesbian, gay, bisexual, transgender and intersex persons", - "values": [ - "Sexual Orientation and Gender Identity" - ] - }, - { - "text": "Promote new actions and initiatives to continue progressing in its efforts to implement the National Human Rights Strategy", - "values": [ - "General" - ] - }, - { - "text": "Continue to take the necessary steps aimed at ensuring the delivery of relief assistance to those people in need in Darfur ", - "values": [ - "Other" - ] - }, - { - "text": "Consider establishing a national human rights institution in conformity with the Paris Principles ", - "values": [ - "National Human Rights Institution" - ] - }, - { - "text": "Continue implementing further plans and programmes to reduce levels of violence against women and girls ", - "values": [ - "Rights of the Child", - "Women's rights" - ] - }, - { - "text": "Implement reforms to ensure Vanuatu is able to meet its obligations under the United Nations Convention against Torture regarding prosecution for acts of torture, attempt to commit torture, or complicity or participation in torture ", - "values": [ - "International instruments", - "Torture and other CID treatment" - ] - }, - { - "text": "Ensure the use of vocabulary that does not stigmatize children with disabilities or children born out of wedlock", - "values": [ - "Disabilities", - "Rights of the Child" - ] - }, - { - "text": "Continue to take the necessary measures for effectively fighting human trafficking and child labour\n\n", - "values": [ - "Labour", - "Rights of the Child", - "Trafficking" - ] - }, - { - "text": "Give continuity to strengthening national human rights institutions", - "values": [ - "General" - ] - }, - { - "text": "Develop a monitoring system to implement recommendations accepted at the previous universal periodic review cycle and ensure implementation", - "values": [ - "UPR process" - ] - }, - { - "text": "Ratify, without further delay, the Convention against Torture and Other Cruel, Inhuman or Degrading Treatment or Punishment ", - "values": [ - "International instruments", - "Torture and other CID treatment" - ] - }, - { - "text": "Continue to highlight during its negotiations with international creditors, the necessity to protect economic, social and cultural rights in the context of financial aid programme, in accordance with the obligations undertaken by Greece in international human rights conventions", - "values": [ - "ESC rights - general", - "International instruments" - ] - }, - { - "text": "Continue to promote economic and social sustainable development, raise people\u2019s standard of living and lay a solid foundation for the enjoyment of all human rights by its people", - "values": [ - "Development" - ] - }, - { - "text": "Reinforce positive discrimination measures envisioned in favour of indigenous peoples and people of African descent", - "values": [ - "Indigenous peoples", - "Minorities" - ] - }, - { - "text": "Take further effective measures to ensure the equal treatment of women, in accordance with its international obligations under CEDAW ", - "values": [ - "International instruments", - "Women's rights" - ] - }, - { - "text": "Consider enacting legislation which prohibits the use of corporal punishment on children within the family and at school and promotes alternative forms of discipline", - "values": [ - "Rights of the Child", - "Torture and other CID treatment" - ] - }, - { - "text": "Continue to strengthen its education system, including vocational training, with support from the international community", - "values": [ - "Right to education", - "Technical assistance and cooperation" - ] - }, - { - "text": "Consider the ratification of human rights instruments to which it is not yet a party ", - "values": [ - "International instruments" - ] - }, - { - "text": "Continue with its religious education programmes in public schools ", - "values": [ - "Right to education" - ] - }, - { - "text": "Uphold respect for and protection of the rights of all individuals to self-identification, freedom of expression and freedom of association, including for the members of ethnic, religious and linguistic groups that are not officially recognized as minorities", - "values": [ - "Freedom of association and peaceful assembly", - "Freedom of opinion and expression", - "Freedom of religion and belief", - "Minorities" - ] - }, - { - "text": "Take consistent anti-corruption measures to enhance good governance and to promote transparency in the delivery of public services", - "values": [ - "Corruption" - ] - }, - { - "text": "Adopt a comprehensive anti-discrimination law to ensure that the Roma enjoy equal access to employment, education and health care", - "values": [ - "Minorities" - ] - }, - { - "text": "Adopt legislation to eliminate the sterility prerequisite for legal change of gender, in conformity with the Convention for the Protection of Human Rights and Fundamental Freedoms (European Convention on Human Rights)", - "values": [ - "Sexual Orientation and Gender Identity" - ] - }, - { - "text": "Investigate allegations of ill-treatment of children living in centres and homes, and as appropriate, take all necessary corrective measures", - "values": [ - "Rights of the Child", - "Torture and other CID treatment" - ] - }, - { - "text": "Engage with the Human Rights Council's special procedure mandate holders on addressing human rights challenges", - "values": [ - "Special procedures" - ] - }, - { - "text": "Incorporate the Convention on the Elimination of All Forms of Discrimination against Women into national legislation and abolish all discriminatory provisions, in particular with respect to the Personal Status Code in terms of family relations and child marriage", - "values": [ - "International instruments", - "Rights of the Child", - "Women's rights" - ] - }, - { - "text": "Continue developing the Help Line services to prevent drug use and for sex education ", - "values": [ - "Public security", - "Right to health", - "Rights of the Child" - ] - }, - { - "text": "Adopt the law on quotas which aims to reserve at least 33 per cent of seats in legislative bodies of the central and state governments for women", - "values": [ - "Women's rights" - ] - }, - { - "text": "Continue its educational strategies to ensure that all children enrol in school and receive a quality basic education ", - "values": [ - "Right to education", - "Rights of the Child" - ] - }, - { - "text": "Continue efforts to tackle gender discrimination, particularly in the areas of education and employment", - "values": [ - "Women's rights" - ] - }, - { - "text": "Continue with the Constitutional review process aimed at strengthening the legal system and policies on human rights ", - "values": [ - "General" - ] - }, - { - "text": "Ensure the effective implementation of the amendment to article 24 of the Constitution relating to freedom of religion", - "values": [ - "Freedom of religion and belief" - ] - }, - { - "text": "Ensure continued effectiveness of strategies to combat HIV-AIDS, particularly among youth and other specifically affected groups", - "values": [ - "HIV - Aids" - ] - }, - { - "text": "Establish shelters and other support services for victims and implement programmes in order to provide human rights education, in particular to the police, lawyers and judges", - "values": [ - "Human rights education and training" - ] - }, - { - "text": "Continue to fight crimes of human trafficking", - "values": [ - "Trafficking" - ] - }, - { - "text": "Ensure religious minorities, including Christian Protestants, are not discriminated against based on their faith ", - "values": [ - "Freedom of religion and belief", - "Minorities" - ] - }, - { - "text": "Work towards establishing and adopting a national strategy aimed at combating all forms of racism and xenophobia", - "values": [ - "Racial discrimination" - ] - }, - { - "text": "Instruct police officers on an annual basis that any form of illtreatment of detained persons is unacceptable and will be punished", - "values": [ - "Detention", - "Human rights violations by state agents" - ] - }, - { - "text": "Intensify the comprehensive approaches in eliminating sexual exploitation among women and girls", - "values": [ - "Rights of the Child", - "Women's rights" - ] - }, - { - "text": "Amend its legislation in order to increase the minimum age of marriage in line with the international standards", - "values": [ - "Rights of the Child" - ] - }, - { - "text": "Ensure birth registration is available to all its citizens and provide free, inclusive and compulsory education for all children", - "values": [ - "Right to education", - "Rights of the Child", - "Statelessness and the right to nationality" - ] - }, - { - "text": "Cooperate with civil society, non-governmental organizations and other actors to provide sufficient support for victims of domestic violence, inter alia shelters and protection, in order to comply with its international obligations ", - "values": [ - "Civil society", - "Rights of the Child", - "Women's rights" - ] - }, - { - "text": "Consider facilitating visits by human rights mandate holders. ", - "values": [ - "Special procedures" - ] - }, - { - "text": "Ensure that the Legislative Assembly adopts Law 14.352 on the autonomous development of indigenous peoples", - "values": [ - "Indigenous peoples" - ] - }, - { - "text": "Improve domestic mechanisms for the implementation of international human rights obligations", - "values": [ - "International instruments" - ] - }, - { - "text": "Build on this success (achieving a total prohibition of corporal punishment of children in all settings in the European part of the Dutch territory) and ensure that this prohibition is also duly implemented in Aruba and the Netherland Antilles by enacting the necessary legislation in this regard ", - "values": [ - "Rights of the Child", - "Torture and other CID treatment" - ] - }, - { - "text": "Reinforce its training programmes for all law enforcement personnel on the absolute prohibition of torture ", - "values": [ - "Torture and other CID treatment" - ] - }, - { - "text": "Continue the efforts made to achieve the integration of the human rights approach in public policies and in different education levels", - "values": [ - "Human rights education and training" - ] - }, - { - "text": "Reconsider the use of corporal and capital punishment under the Sharia Penal Code ", - "values": [ - "Death penalty" - ] - }, - { - "text": "Consider developing Human Rights Indicators as suggested by OHCHR as an instrument that allows for a more precise and coherent evaluation of national human rights policies", - "values": [ - "Other" - ] - }, - { - "text": "Do its utmost to combat all forms of discrimination, including discrimination based on sexual orientation.", - "values": [ - "Sexual Orientation and Gender Identity" - ] - }, - { - "text": "Amend or repeal the Religious Organisations Act so as to establish a legal framework ensuring that everyone is free to practice his or her own religious faith without penalty ", - "values": [ - "Freedom of religion and belief" - ] - }, - { - "text": "Conduct a comprehensive review and structural reform of the administration of justice with the aim of ensuring judicial independence and reducing the growing number of cases of impunity", - "values": [ - "Impunity", - "Justice" - ] - }, - { - "text": "Fully implement the Constitution to ensure the administration of justice and the rule of law and also establish an independent human rights institution to oversee human rights issues", - "values": [ - "Justice", - "National Human Rights Institution" - ] - }, - { - "text": "Speed up the legislative process to operationalize the draft law amending the nationality act so as to address the problem of statelessness in the country", - "values": [ - "Justice", - "Statelessness and the right to nationality" - ] - }, - { - "text": "Continue developing and implementing measures that allow the inclusion of persons with disabilities", - "values": [ - "Disabilities" - ] - }, - { - "text": "Continue the national debate on the abolition of the death penalty", - "values": [ - "Death penalty" - ] - }, - { - "text": "Ratify the International Convention for the Protection of All Persons from Enforced Disappearance (CPED) ", - "values": [ - "Enforced disappearances", - "International instruments" - ] - }, - { - "text": "Take necessary steps to ratify or accede to other major international human rights instruments which are still outstanding", - "values": [ - "International instruments" - ] - }, - { - "text": "Ensure that members of the security forces who are responsible for violations of human rights are prosecuted", - "values": [ - "Human rights violations by state agents" - ] - }, - { - "text": "Continue its efforts to strengthen mechanisms that could guarantee prompt implementation of judicial resolutions to better protect human rights", - "values": [ - "Justice" - ] - }, - { - "text": "Continue enhancing and expanding health services, in order to prevent and combat diseases which were put in place to serve the people through primary healthcare ", - "values": [ - "Right to health" - ] - }, - { - "text": "Step up efforts to ensure the basic human rights of all detainees by improving the material condition in prison facilities and police detention centres as well as investigating cases regarding ill-treatment and violence in prisons and conducting trainings for prison officers", - "values": [ - "Detention", - "Human rights violations by state agents" - ] - }, - { - "text": "Develop domestic procedures and institutions for asylum in order to grant proper services to persons of concern in need of international protection ", - "values": [ - "Asylum-seekers - refugees" - ] - }, - { - "text": "Develop a national action plan on human rights", - "values": [ - "General" - ] - }, - { - "text": "Continue its effort to combat discrimination and promote equality in accordance with international treaties establishing guarantees of fundamental human rights and freedoms, and equality in the enjoyment of such rights, without privileges or restrictions based on race, colour, political, religious or other belief, gender, sexual orientation, ethnic or social origin, property status, place of residence, language or other grounds ", - "values": [ - "International instruments" - ] - }, - { - "text": "Undertake legal and administrative efforts to end torture and related impunity", - "values": [ - "Impunity", - "Torture and other CID treatment" - ] - }, - { - "text": "Expedite the process to pass the draft gender equality law and to establish clear policies on gender equality and the implementation framework", - "values": [ - "Women's rights" - ] - }, - { - "text": "Adopt and implement targeted measures to address the root causes of slavery, including poverty, inequality and customary norms", - "values": [ - "Poverty" - ] - }, - { - "text": "Put an end to impunity by ensuring impartial investigations and bringing to justice those responsible of extrajudicial executions and torture", - "values": [ - "Extrajudicial executions", - "Impunity", - "Torture and other CID treatment" - ] - }, - { - "text": "Continue its efforts to guarantee progress and improvement of the Cuban society as well as its sustainable development, the improvement of their living standard and progress towards a more just, free, independent and equitable society ", - "values": [ - "Development" - ] - }, - { - "text": "Reduce as much as possible the number of offences punishable by the death penalty with a view to limiting the number of death sentences", - "values": [ - "Death penalty" - ] - }, - { - "text": "Effectively combat racial profiling and the use of excessive force by the police against coloured persons", - "values": [ - "Human rights violations by state agents", - "Minorities", - "Racial discrimination" - ] - }, - { - "text": "Tackle the issue, noted by the Human Rights Committee, that complaints against police officers did not always lead to the imposition of commensurate penalties ", - "values": [ - "Justice", - "Treaty bodies" - ] - }, - { - "text": "Recognize the competence of the Committee on Enforced Disappearances to receive and consider communications from or on behalf of victims and other States parties for violations of the provisions of the Convention, in accordance with articles 31 and 32", - "values": [ - "Enforced disappearances", - "International instruments" - ] - }, - { - "text": "Continue to improve access to education and literacy rates", - "values": [ - "Right to education" - ] - }, - { - "text": "Amend the draft computer crime and cybercrime bill and the Public Order and Security Act so as to align them with the 2013 Constitution", - "values": [ - "Freedom of opinion and expression", - "Privacy" - ] - }, - { - "text": "Adopt a national plan to promote and protect the rights of all women and girls, in particular those victims of the conflict, making sure that resources for its implementation are available", - "values": [ - "Rights of the Child", - "Women's rights" - ] - }, - { - "text": "Continue ensuring the right to safe drinking water and sanitation for all persons", - "values": [ - "Right to water and sanitation" - ] - }, - { - "text": "Consolidate measures taken to protect and promote the rights of children", - "values": [ - "Rights of the Child" - ] - }, - { - "text": "Ratify the Second Protocol to the ICCPR ", - "values": [ - "Death penalty", - "International instruments" - ] - }, - { - "text": "Amend and review all legislative provisions which constitute a de facto discrimination against women and establish a timeline for the adoption of a comprehensive strategy to combat sexual violence including female genital mutilation", - "values": [ - "Rights of the Child", - "Torture and other CID treatment", - "Women's rights" - ] - }, - { - "text": "Amend the Labour Law to embody the principle of equal remuneration between men and women", - "values": [ - "Women's rights" - ] - }, - { - "text": "Guarantee that civic organizations, human rights defenders, political parties and unions are able to carry out their legitimate activities without fear of reprisals, restrictions, judicial harassment and intimidation", - "values": [ - "Civil society", - "Freedom of association and peaceful assembly", - "Human rights defenders", - "Labour" - ] - }, - { - "text": "The draft press law ought not to be unduly restrictive on freedom of expression.", - "values": [ - "Freedom of opinion and expression", - "Freedom of the press" - ] - }, - { - "text": "Raise the education level of the disabled and make sure that school-age disabled children generally receive compulsory education", - "values": [ - "Disabilities", - "Right to education", - "Rights of the Child" - ] - }, - { - "text": "Reinforce further the country's efforts in the area of prevention of trafficking in human beings", - "values": [ - "Trafficking" - ] - }, - { - "text": "Strengthen efforts in the area of integrating human rights education in school curricula", - "values": [ - "Human rights education and training" - ] - }, - { - "text": "Make the necessary amendments to the law on "Advokatura" of 2015 in order to remove any obstacle to the independence of the profession of a lawyer, in parallel with actions promoting the independence of judges", - "values": [ - "Justice" - ] - }, - { - "text": "Investigate all case of threat and attacks against human rights defenders", - "values": [ - "Human rights defenders" - ] - }, - { - "text": "Continue fulfilling its obligations under international treaties as well as considering the possibility of acceding to the Convention against Torture and Other Cruel, Inhuman or Degrading Treatment or Punishment.", - "values": [ - "International instruments", - "Torture and other CID treatment" - ] - }, - { - "text": "Commission a study on the insufficiencies in the implementation of the mandate of the National Mechanism on Torture Prevention due to the limitations of financial and human resources, and inform the Parliament at its next discussion of the annual report of the Mechanism ", - "values": [ - "Detention", - "Torture and other CID treatment" - ] - }, - { - "text": "Strengthen and implement measures to promote gender equality and equity, address the underrepresentation of women in decision-making bodies, gender-based violence and elimination of harmful traditional practices", - "values": [ - "Torture and other CID treatment", - "Women's rights" - ] - }, - { - "text": "Continue adequate measures for addressing the special needs of women and protecting children from violence", - "values": [ - "Rights of the Child", - "Women's rights" - ] - }, - { - "text": "Broaden through an inclusive public debate the access to abortion for pregnant women, in particular in cases of threat to health, rape and incest", - "values": [ - "Women's rights" - ] - }, - { - "text": "Adhere to and adopt national legislation to bring it into line with the Arms Trade Treaty", - "values": [ - "International instruments" - ] - }, - { - "text": "Continue efforts to reduce poverty, particularly through the implementation of the 2011-2015 National Strategy", - "values": [ - "Poverty" - ] - }, - { - "text": "Continue the process of ratifying those human rights instruments to which Nigeria is not yet a State party", - "values": [ - "International instruments" - ] - }, - { - "text": "Take all necessary measures to prevent torture and other cruel, inhuman and degrading treatment or punishment in particular in places of detention.", - "values": [ - "Torture and other CID treatment" - ] - }, - { - "text": "The MSAR [Macao Special Administrative Region] Government commits to improve social rights. Cooperation with the civil society and NGOs will be enhanced.", - "values": [ - "Civil society" - ] - }, - { - "text": "Continue addressing effectively the socio-economic inequalities faced by indigenous people ", - "values": [ - "ESC rights - general", - "Indigenous peoples" - ] - }, - { - "text": "Continue giving priority attention to domestic and gender-based violence, in particular rape and other crimes of sexual violence, at all levels, including such caused by police and the judiciary", - "values": [ - "Human rights violations by state agents", - "Rights of the Child", - "Women's rights" - ] - }, - { - "text": "Take steps for ending forced and temporary marriages that entrap girls in sexual and domestic servitude", - "values": [ - "Rights of the Child", - "Women's rights" - ] - }, - { - "text": "Continue and strengthen cooperation with the UN Human Rights Mechanisms and its various efforts made for human rights capacity-building ", - "values": [ - "Special procedures", - "Treaty bodies" - ] - }, - { - "text": "Address any customary practices that are inconsistent with its obligations under international law, and bring its national law relating to women and children into line with its obligations under international human rights law", - "values": [ - "International instruments", - "Rights of the Child", - "Women's rights" - ] - }, - { - "text": "Repeal of all discriminatory legislation against women, including in the Labour, Civil and Criminal Codes", - "values": [ - "Women's rights" - ] - }, - { - "text": "Amend personal status laws and develop a comprehensive policy at the national level, consistent with the Convention on the Elimination of All Forms of Discrimination against Women, to ensure that women are treated in the same way as men in issues related to child custody, inheritance and divorce", - "values": [ - "International instruments", - "Women's rights" - ] - }, - { - "text": "Adopt the recommendations of the Committee on the Elimination of Racial Discrimination, particularly those calling for officials coming into contact with minority groups to receive human rights training and the recommendation that any organization promoting or inciting discrimination should be declared illegal and prohibited, and the recognition that participation in such organizations is an offence punishable by law.", - "values": [ - "Minorities", - "Racial discrimination", - "Treaty bodies" - ] - }, - { - "text": "Further strengthen mechanisms fostering prosecution of all perpetrators of sexual and gender-based violence", - "values": [ - "Women's rights" - ] - }, - { - "text": "Consider the possibility of ratifying the International Covenant on Economic, Social and Cultural Rights ", - "values": [ - "ESC rights - general", - "International instruments" - ] - }, - { - "text": "Immediately abolish the death penalty and establish a moratorium on all pending executions", - "values": [ - "Death penalty" - ] - }, - { - "text": "Adopt targeted measures to ensure the full implementation of the Convention against Torture and Other Cruel, Inhuman or Degrading Treatment or Punishment including by disseminating information to increase awareness among law enforcement personnel, by making sure that there is no impunity for acts of torture and by providing redress and adequate compensation to victims of torture", - "values": [ - "Impunity", - "International instruments", - "Torture and other CID treatment" - ] - }, - { - "text": "Ratify the Optional Protocol to the Convention on the Rights of the Child on the involvement of children in armed conflict as soon as possible", - "values": [ - "International humanitarian law", - "International instruments", - "Rights of the Child" - ] - }, - { - "text": "Give individuals, groups and organs of the society the legitimacy and the recognition to promote human rights as well as to express their opinions or dissent publicly ", - "values": [ - "Civil society", - "Freedom of opinion and expression" - ] - }, - { - "text": "Follow the recommendations made by OHCHR regarding the human rights situation in the conflict-affected areas of eastern Ukraine, particularly with respect to due process, the treatment of prisoners and detainees, and gender-based and sexual violence", - "values": [ - "Detention", - "Women's rights" - ] - }, - { - "text": "Adopt a comprehensive national strategy to prevent and combat all forms of violence against children", - "values": [ - "Rights of the Child" - ] - }, - { - "text": "Pursue the peace process and national reconciliation.", - "values": [ - "Justice" - ] - }, - { - "text": "Continue to enhance domestic legal frameworks promoting the human rights, security and well-being of refugees and migrants in Lebanon", - "values": [ - "Asylum-seekers - refugees", - "Migrants" - ] - }, - { - "text": "Ratify the 1951 Convention relating to the Status of Refugees and its 1967 Protocol, the 1954 Convention relating to the Status of Stateless Persons and the 1961 Convention on the Reduction of Statelessness", - "values": [ - "Asylum-seekers - refugees", - "International instruments", - "Statelessness and the right to nationality" - ] - }, - { - "text": "Continue to share and extend their experiences and good practices in assisting vulnerable groups, especially through the implementation of the National Social Workers Programme", - "values": [ - "Minorities" - ] - }, - { - "text": "Move forward to make necessary arrangements for the adoption of a comprehensive national policy on persons with disabilities", - "values": [ - "Disabilities" - ] - }, - { - "text": "[Abolishing the prison sentence for press-related offences] In particular those defined as \u201cinsult\u201c, \u201ccontempt\u201c or \u201cdefamation\u201c", - "values": [ - "Freedom of opinion and expression", - "Freedom of the press" - ] - }, - { - "text": "Bring conditions of detention in line with international standards, in particular to reduce overcrowding and promote non-custodial measures ", - "values": [ - "Detention" - ] - }, - { - "text": "Repeal article 227 of the Tunisian Criminal Code, which allows rape offenders to escape justice if they marry their victims", - "values": [ - "Women's rights" - ] - }, - { - "text": "Continue efforts to combat human rights violations in the public administration ", - "values": [ - "Human rights violations by state agents" - ] - }, - { - "text": "Abolish definitively the death penalty, in continuation of the de facto moratorium on executions applied since 2007 ", - "values": [ - "Death penalty" - ] - }, - { - "text": "Consider ratifying the Optional Protocol to the Convention against Torture and the International Convention for the Protection of All Persons from Enforced Disappearance", - "values": [ - "Detention", - "Enforced disappearances", - "International instruments", - "Torture and other CID treatment" - ] - }, - { - "text": "Step up its struggle against racism, inter alia through implementing the recommendations made by the Committee on the Elimination of Racial Discrimination concerning identity documents for Roma as well as those made by the Committee on the Elimination of Discrimination against Women and the Committee on the Representation of Women in Public Services.", - "values": [ - "Minorities", - "Racial discrimination", - "Treaty bodies", - "Women's rights" - ] - }, - { - "text": "Avail itself of additional funds for HIV/AIDS programmes, thereby encouraging the international community to match the funds in the fight against the HIV/AIDS epidemic", - "values": [ - "HIV - Aids" - ] - }, - { - "text": "Take steps to ratify all human rights instruments ", - "values": [ - "International instruments" - ] - }, - { - "text": "Refrain from imposing excessive fines on media outlets fordefamation, while working to adopt the law on defamation, which abolishes criminal liability for defamation and insult", - "values": [ - "Freedom of opinion and expression", - "Freedom of the press" - ] - }, - { - "text": "Work towards disseminating a culture of human rights and national capacity-building through the development of strategies and plans and seek to implement them in cooperation with the relevant United Nations mechanisms", - "values": [ - "Human rights education and training", - "Technical assistance and cooperation" - ] - }, - { - "text": "Continue its efforts in a systematic manner to increase the availability of human rights education and training programmes for the law enforcement and judicial authorities ", - "values": [ - "Human rights education and training" - ] - }, - { - "text": "Give special attention to the role of international cooperation for the enjoyment of economic, social and cultural rights and recommended South Africa to share its experience, programmes and plans in this field with other developing countries.", - "values": [ - "ESC rights - general" - ] - }, - { - "text": "Continue to support media initiatives on self-regulation, including the newly established Tribunal de Etica for print journalists", - "values": [ - "Freedom of the press" - ] - }, - { - "text": "Amend its Constitution and its domestic legislation to prohibit discrimination on the basis of gender, to bring it into line with its CEDAW obligations ", - "values": [ - "International instruments", - "Women's rights" - ] - }, - { - "text": "Set up an independent and impartial inquiry designed to monitor the progress made in the area of the eradication of the practice of discrimination and slavery, which would include civil society and non-governmental organizations that work towards fighting against discriminatory practices and slavery ", - "values": [ - "Civil society" - ] - }, - { - "text": "In line with the recommendations of the Committee on the Elimination of Discrimination against Women, adopt a national plan to eliminate stereotypes regarding the role of women in society, and speed up the reform process to guarantee equality between men and women, including with regard to the transfer of nationality, the custody of children, divorce and inheritance ", - "values": [ - "Rights of the Child", - "Statelessness and the right to nationality", - "Treaty bodies", - "Women's rights" - ] - }, - { - "text": "Continue its policies to eradicate poverty", - "values": [ - "Poverty" - ] - }, - { - "text": "Train and prepare public officials responsible for preparing State reports", - "values": [ - "Treaty bodies" - ] - }, - { - "text": "Provide sufficient protection for victims of domestic violence and ensure proper monitoring of the rehabilitation of persons convicted ", - "values": [ - "Rights of the Child", - "Women's rights" - ] - }, - { - "text": "Implement a systematic plan to train police on human rights and implement tolerance-building programmes.", - "values": [ - "Human rights education and training" - ] - }, - { - "text": "Implement fully the recommendations of the OHCHR field office as a mean to contribute to the improvement of the human rights situation on the ground ", - "values": [ - "Other" - ] - }, - { - "text": "Institutionalize the right to consultation of indigenous peoples and involve civil society and indigenous groups in the elaboration of a functioning consultation mechanism according to the country\u2019s commitments under the ILO Indigenous and Tribal Peoples Convention, 1989 (No. 169)", - "values": [ - "Indigenous peoples", - "International instruments", - "Right to land" - ] - }, - { - "text": "Legislate appropriate regulations to prevent the violations of individual privacy, constant intrusion in and control of cyberspace as well as eavesdropping of communications, by its intelligence and security organizations ", - "values": [ - "Freedom of the press", - "Privacy" - ] - }, - { - "text": "Amend the National Security Law to provide clarity and prevent abusive interpretations of the law", - "values": [ - "Public security" - ] - }, - { - "text": "Continue the establishment of constitutional bodies by completing the legislative process and enacting adequate legislation in this regard", - "values": [ - "Justice" - ] - }, - { - "text": "Banish from its Penal Code the provisions related to corporal punishment, including flogging for sexual intercourse outside of marriage, and death penalty", - "values": [ - "Death penalty", - "Torture and other CID treatment" - ] - }, - { - "text": "Consider the ratification of the Convention against Torture and Other Cruel, Inhuman or Degrading Treatment or Punishment", - "values": [ - "International instruments", - "Torture and other CID treatment" - ] - }, - { - "text": "Ensure the collection of necessary statistical data disaggregated by ethnicity and gender in order to measure, monitor, and remedy ethnic discrimination as proposed by the independent expert on minority issues ", - "values": [ - "Minorities", - "Racial discrimination", - "Special procedures", - "Women's rights" - ] - }, - { - "text": "Undertake a participatory and inclusive process with civil society organizations, including indigenous peoples organizations, in the implementation of universal periodic review recommendations ", - "values": [ - "Civil society", - "Indigenous peoples", - "UPR process" - ] - }, - { - "text": "Take measures to combat de facto and de jure discrimination towards irregular migrants ", - "values": [ - "Migrants" - ] - }, - { - "text": "Strengthen women's representation in the Parliament and Government", - "values": [ - "Women's rights" - ] - }, - { - "text": "Ensure that the rights of all children are equally protected under domestic law, regardless of gender, and consider implementing the recommendations of the Committee on the Rights of the Child ", - "values": [ - "Rights of the Child", - "Treaty bodies" - ] - }, - { - "text": "Repeal legislation criminalizing male homosexuality, and introduce policies aimed at ending discrimination against homosexuals ", - "values": [ - "Sexual Orientation and Gender Identity" - ] - }, - { - "text": "Continue to take effective measures to prevent the Roma from being victims of discrimination, in particular at work", - "values": [ - "Minorities" - ] - }, - { - "text": "Continue efforts in strengthening its national legal frameworks, including by ratifying the ICESCR ", - "values": [ - "ESC rights - general", - "International instruments" - ] - }, - { - "text": "Revise the Penal Code as well as other legislation such as the Family Code to ensure that they are in compliance with international standards ", - "values": [ - "Women's rights" - ] - }, - { - "text": "Abolish the death penalty ", - "values": [ - "Death penalty" - ] - }, - { - "text": "Continue to make progress on the participation and consultation of indigenous peoples, including on mining", - "values": [ - "Business and human rights", - "Indigenous peoples" - ] - }, - { - "text": "Continue its efforts to support Roma-children education, including by increasing the availability of bilingual education ", - "values": [ - "Minorities", - "Right to education", - "Rights of the Child" - ] - }, - { - "text": "Adopt concrete measures to better integrate migrant workers, with special attention to combating human trafficking and discrimination", - "values": [ - "Labour", - "Migrants", - "Racial discrimination", - "Trafficking" - ] - }, - { - "text": "Take further steps to ensure that the legislation on violence against women and girls is fully in line with international standards and includes prohibition of corporal punishment in the home.", - "values": [ - "Rights of the Child", - "Torture and other CID treatment", - "Women's rights" - ] - }, - { - "text": "Continue efforts to eradicate and address cases of domestic violence and child abuse", - "values": [ - "Rights of the Child", - "Women's rights" - ] - }, - { - "text": "Commute the sentences of the inmates currently sentenced to death and, having already acceded to the Second Optional Protocol to the International Covenant on Civil and Political Rights, speed up the adoption of the new Criminal Code to abolish the death penalty", - "values": [ - "Death penalty" - ] - }, - { - "text": "Review its relevant legal framework to safeguard the legitimate exercise of freedom of expression ", - "values": [ - "Freedom of opinion and expression" - ] - }, - { - "text": "Ratify the International Convention for the Protection of All Persons from Enforced Disappearance as early as possible, which Iceland signed in 2008", - "values": [ - "Enforced disappearances", - "International instruments" - ] - }, - { - "text": "Call on the international community to support Thailand's request to benefit from technical assistance and the sharing of best practices, in order to enhance the capacity of Government agencies to effectively enforce laws relating to human rights and to improve the structure of law enforcement agencies to be conducive to a rights-based working culture", - "values": [ - "Technical assistance and cooperation" - ] - }, - { - "text": "Accede to instruments to which it is not yet a party, with priority given to ICCPR and the Rome Statute of the International Criminal Court ", - "values": [ - "CP rights - general", - "International instruments", - "Justice" - ] - }, - { - "text": "Take measures to eradicate traditional stereotypes of women, especially through educational programmes and the enactment of legislation on domestic violence and all forms of sexual violence", - "values": [ - "Women's rights" - ] - }, - { - "text": "Establish a national mechanism to ensure reparation for victims of incitement to hatred, acts of racism and Islamophobia", - "values": [ - "Freedom of religion and belief", - "Racial discrimination" - ] - }, - { - "text": "Consider raising the minimum age for marriage to 18 years for both women and men.", - "values": [ - "Rights of the Child" - ] - }, - { - "text": "Combat impunity of all attacks against human rights defenders, including by investigating the murders of 17 journalists since 1991. Establish a special commission in the Public Prosecutor's Office to bring those responsible to justice", - "values": [ - "Freedom of the press", - "Human rights defenders", - "Impunity" - ] - }, - { - "text": "Strengthen efforts to prevent and combat all forms of discrimination and violence against women and children and other vulnerable groups", - "values": [ - "Rights of the Child", - "Women's rights" - ] - }, - { - "text": "Issue invitations to the Special Rapporteurs to assess the human rights situation in the country", - "values": [ - "Special procedures" - ] - }, - { - "text": "Carry out prompt investigations into all threats and attacks targeting human rights defenders and guarantee that those responsible are brought to justice and punished in a manner commensurate with the gravity of their acts", - "values": [ - "Human rights defenders" - ] - }, - { - "text": "Strengthen multisectoral actions aimed at eradicating gender-based violence, considering the importance of the empowerment of rights and awareness-raising initiatives, with special attention to adequate mechanisms for such purposes", - "values": [ - "Human rights education and training", - "Women's rights" - ] - }, - { - "text": "Develop actions to improve the living conditions of asylum seekers and avoid discrimination on grounds of nationality or country of origin", - "values": [ - "Asylum-seekers - refugees" - ] - }, - { - "text": "Adopt measures to combat discrimination and stereotypes on the role and responsibilities of women in society ", - "values": [ - "Women's rights" - ] - }, - { - "text": "Adopt necessary measures to avoid discrimination, and to protect and integrate the LGBT population ", - "values": [ - "Sexual Orientation and Gender Identity" - ] - }, - { - "text": "Continue efforts to achieve full respect for the human rights of women, particularly those related to combating violence and segregation in the labour market, which implies differential access between men and women to occupations and jobs that play a decisive role in the quality of employment offered to women ", - "values": [ - "Women's rights" - ] - }, - { - "text": "Ensure its immigration system's compliance with international human rights standards ", - "values": [ - "International instruments", - "Migrants" - ] - }, - { - "text": "Guarantee the independence of the judicial system, renounce the staging of collective trials and allow the effective exercise of the right to a defence", - "values": [ - "Justice" - ] - }, - { - "text": "Review the repressive governmental policy designed to suppress the functioning of independent media, journalists and bloggers", - "values": [ - "Freedom of the press" - ] - }, - { - "text": "Introduce in the Criminal Code all necessary amendments aimed at criminalizing acts of torture and the crime of enforced disappearance ", - "values": [ - "Enforced disappearances", - "Torture and other CID treatment" - ] - }, - { - "text": "Raise the minimum age for military recruitment under any circumstances to at least 18 years, and to provide for conscientious objection to military service", - "values": [ - "Freedom of religion and belief", - "Rights of the Child" - ] - }, - { - "text": "Further ensure that everyone is entitled to equal respect and to a fair participation with full enjoyment of equal rights and opportunities in economic, political, social and cultural developments as incorporated in the laws and plans of action ", - "values": [ - "General" - ] - }, - { - "text": "Strictly enforce the 2006 law on sexual violence and its zero tolerance policy ", - "values": [ - "Rights of the Child", - "Women's rights" - ] - }, - { - "text": "Engage with the United Nations, the Organization for Security and Cooperation in Europe and the Council of Europe to ensure that their concerns about the media law are accommodated ", - "values": [ - "Freedom of the press" - ] - }, - { - "text": "Redouble its efforts to protect children, in particular by strengthening their legal protection", - "values": [ - "Rights of the Child" - ] - }, - { - "text": "Review the existing laws and regulations with a view to ensuring full gender equality in all aspects of life", - "values": [ - "Women's rights" - ] - }, - { - "text": "Continue its efforts to combat HIV/AIDS ", - "values": [ - "HIV - Aids" - ] - }, - { - "text": "Draw up plans for the elimination of female genital mutilation practices", - "values": [ - "Rights of the Child", - "Torture and other CID treatment", - "Women's rights" - ] - }, - { - "text": "Ensure that the Law on the right to prior consultation for indigenous or native peoples is applied to all self-identified groups of indigenous peoples, including for mining projects", - "values": [ - "Indigenous peoples" - ] - }, - { - "text": "Raise the minimum age of criminal responsibility to 16 and establish a system of juvenile justice ", - "values": [ - "Justice", - "Rights of the Child" - ] - }, - { - "text": "Continue taking actions to punish human rights violations, such as against the right to food or the right to peace, committed or promoted by actors in the business sector, which are pushing political agendas of destabilization", - "values": [ - "Business and human rights", - "Right to food" - ] - }, - { - "text": "Ensure access of all children to free and compulsory primary education and accede to the UNESCO Convention against Discrimination in Education ", - "values": [ - "International instruments", - "Right to education", - "Rights of the Child" - ] - }, - { - "text": "Finalize the ratification process of OP-CRC-AC", - "values": [ - "International humanitarian law", - "International instruments", - "Rights of the Child" - ] - }, - { - "text": "Strengthen efforts to combat family violence against women and children, especially within indigenous communities", - "values": [ - "Indigenous peoples", - "Rights of the Child", - "Women's rights" - ] - }, - { - "text": "Enact legislation on domestic violence as soon as possible, to further strengthen family counselling centres that assist victims, and to increase the availability of legal aid throughout the country for victims of violence", - "values": [ - "Rights of the Child", - "Women's rights" - ] - }, - { - "text": "Take additional measures in order to improve the implementation of legislation protecting against domestic violence, including through awareness raising campaigns and training on domestic violence for officials ", - "values": [ - "Human rights education and training", - "Rights of the Child", - "Women's rights" - ] - }, - { - "text": "Ensure effective access of children with disabilities to compulsory education, including through the legal amendments to prohibit the denial of access to education for those children because of limited material and other resources", - "values": [ - "Minorities", - "Right to education", - "Rights of the Child" - ] - }, - { - "text": "Develop awareness-raising campaigns aimed at preventing and combating child abuse, ensuring access to redress and social reintegration to the victims ", - "values": [ - "Human rights education and training", - "Rights of the Child", - "Torture and other CID treatment" - ] - }, - { - "text": "Cooperate with special procedures of the Human Rights Council, including by swiftly providing access for special rapporteurs with outstanding requests for visits to Bahrain", - "values": [ - "Special procedures", - "Technical assistance and cooperation" - ] - }, - { - "text": "Develop a national strategy for human rights education in the school system in accordance with the Plan of Action 2005-2009 of the World Programme for Human Rights Education, including the review and revision of curricula and textbooks, the training of teachers, and the practice of human rights in the school community.", - "values": [ - "Human rights education and training" - ] - }, - { - "text": "Combat all forms of trafficking of children, and formulate a policy of child protection to ensure a better system for safeguarding children's rights ", - "values": [ - "Rights of the Child", - "Trafficking" - ] - }, - { - "text": "Speed up its considerations over the signature and ratification of the international human rights covenants", - "values": [ - "International instruments" - ] - }, - { - "text": "Investigate and prosecute incidents of hate speech", - "values": [ - "Racial discrimination" - ] - }, - { - "text": "Continue its efforts to strengthen a culture of tolerance to eliminate all forms of discrimination against vulnerable groups", - "values": [ - "Minorities" - ] - }, - { - "text": "Further strengthen the role of bodies and institutions with competence to combat discrimination, in particular the Commission for Protection against Discrimination", - "values": [ - "Other" - ] - }, - { - "text": "Present to the Parliament, as soon as possible, the Police Complaints Bill which is being prepared, and direct particular attention to increasing the awareness of police agents with respect to human rights principles", - "values": [ - "Human rights education and training" - ] - }, - { - "text": "Continue its efforts to enhance human rights", - "values": [ - "General" - ] - }, - { - "text": "Maintain efforts undertaken to identify human rights violations ", - "values": [ - "General" - ] - }, - { - "text": "Further combat the worst forms of child labour, including trafficking for the purpose of forced labour and prostitution", - "values": [ - "Labour", - "Rights of the Child", - "Trafficking" - ] - }, - { - "text": "Repeal the Proclamation for Registration of Charities and Societies and promote the development of an independent, transparent, and effective civil society and human rights community ", - "values": [ - "Civil society" - ] - }, - { - "text": "Continue its efforts in implementing national policy frameworks to eradicate poverty, unemployment and ensure equality", - "values": [ - "Development", - "Poverty" - ] - }, - { - "text": "Step up efforts against sexual violence and improve social support services to victims ", - "values": [ - "Rights of the Child", - "Women's rights" - ] - }, - { - "text": "Revise its current legislation regarding distribution of property upon divorce in order to correct their inconsistencies with the CEDAW Convention, and in particular the law on alimony so as to take into accounts the situation of divorced women with children ", - "values": [ - "International instruments", - "Rights of the Child", - "Women's rights" - ] - }, - { - "text": "Accede to ICERD and ratify ICCPR, as a matter of priority ", - "values": [ - "CP rights - general", - "International instruments", - "Racial discrimination" - ] - }, - { - "text": "Implement measures to address extrajudicial killings of persons on the basis of their actual or presumed sexual orientation", - "values": [ - "Extrajudicial executions", - "Sexual Orientation and Gender Identity" - ] - }, - { - "text": "Expressly prohibit discrimination against persons with disabilities as well as religious belief, sexual orientation or age, outside the labour market", - "values": [ - "Disabilities", - "Freedom of religion and belief", - "Labour", - "Racial discrimination", - "Sexual Orientation and Gender Identity" - ] - }, - { - "text": "Fully implement its National Plan of Action for human rights and its plans of actions to implement various human rights conventions and treaties ", - "values": [ - "International humanitarian law" - ] - }, - { - "text": "Continue its efforts to implement programmes for the integration of women in development, and the provision of maternal and child health care", - "values": [ - "Development", - "Right to health", - "Rights of the Child", - "Women's rights" - ] - }, - { - "text": "Implement the Seventh National Development Plan (2017-2020) in order to address the human rights challenges that it recognizes as pending", - "values": [ - "Development" - ] - }, - { - "text": "Review its legislation and policy so as to ensure freedom of religion of persons belonging to religious minorities, including Baha'is, as well as protection of their other human rights without any discrimination", - "values": [ - "Freedom of religion and belief", - "Minorities", - "Racial discrimination" - ] - }, - { - "text": "Accede to the request of the Special Rapporteur on the promotion and protection of the right to freedom of opinion and expression, introduced in 2003 and renewed in 2005, to visit the country ", - "values": [ - "Freedom of opinion and expression", - "Special procedures" - ] - }, - { - "text": "Approve, as soon as possible, the law on comprehensive compensation for victims of human rights violations", - "values": [ - "Justice" - ] - }, - { - "text": "Implement follow up mechanisms of the UPR recommendations that allows verifying the implementation and impact of legislation and measures adopted to promote equal rights and non-discrimination for all citizens, in particular vulnerable groups such as: women, children, ethnic minorities, LGBTI community and persons with disabilities ", - "values": [ - "Minorities", - "Racial discrimination", - "Rights of the Child", - "Sexual Orientation and Gender Identity", - "UPR process", - "Women's rights" - ] - }, - { - "text": "Further strengthen freedom of expression and access to public domain information, particularly at the community level and with government departments ", - "values": [ - "Freedom of opinion and expression" - ] - }, - { - "text": "Accelerate efforts aimed at fully implementing the wide range of laws, policies and programmes aimed at strengthening gender equality and women's rights ", - "values": [ - "Women's rights" - ] - }, - { - "text": "Complete the ratification process of the 1993 Hague Convention on Protection of Children and Co-operation in Respect of Intercountry Adoption ", - "values": [ - "International instruments", - "Rights of the Child" - ] - }, - { - "text": "Unify the criminal age in the kingdom\u2019s legislation to uphold the best interest in the treatment of the child in a manner compatible with his age and dignity and to facilitate his rehabilitation and reintegration in society", - "values": [ - "Rights of the Child" - ] - }, - { - "text": "Ensure that all cases of sexual abuse of children are investigated and perpetrators prosecuted, and that victims are adequately compensated and rehabilitated", - "values": [ - "Rights of the Child" - ] - }, - { - "text": "Further fulfil the internationally taken obligations as well as implement the recently ratified international treaties ", - "values": [ - "International instruments" - ] - }, - { - "text": "Implement further measures to tackle the problem of violence against women and combat impunity in this regard.", - "values": [ - "Impunity", - "Women's rights" - ] - }, - { - "text": "Ratify as soon as possible the International Convention for the Protection of All Persons from Enforced Disappearance (ICPPED) and incorporate it in the national legislation as well as recognizing the competence of the Committee on Enforced Disappearances ", - "values": [ - "Enforced disappearances", - "International instruments", - "Treaty bodies" - ] - }, - { - "text": "Ensure inspections of school facilities and establish clear reporting systems for cases of violence in schools", - "values": [ - "Right to education" - ] - }, - { - "text": "Continue efforts in the areas of human rights education and dissemination.", - "values": [ - "Human rights education and training" - ] - }, - { - "text": "Consider an early ratification of the newest international human rights instrument - the third Optional Protocol to the Convention on the Rights of the Child on communication procedure ", - "values": [ - "International instruments", - "Rights of the Child" - ] - }, - { - "text": "Continue to strengthen programmes aimed at creating growth and employment", - "values": [ - "Development" - ] - }, - { - "text": "Ensure that cases of excessive use of force and violence by security forces and prison authorities are immediately stopped and investigated by an independent and impartial authority ", - "values": [ - "Human rights violations by state agents" - ] - }, - { - "text": "Ensure the rule of law, in particular through proper management of judicial structures and systems", - "values": [ - "Justice" - ] - }, - { - "text": "Strengthen measures so that ethnic minorities - Ainu, Ryukyu and Burakumins - can fully enjoy their economic, social and cultural rights", - "values": [ - "ESC rights - general", - "Minorities" - ] - }, - { - "text": "Encourage high-level State officials and politicians to clearly take a position against racist and xenophobic political discourse ", - "values": [ - "Racial discrimination" - ] - }, - { - "text": "Repeal laws that criminalize sexual activity between consenting adults of the same sex", - "values": [ - "Sexual Orientation and Gender Identity" - ] - }, - { - "text": "Undertake an inclusive process with a wide range of civil society representatives when implementing the universal periodic review recommendations", - "values": [ - "Civil society", - "UPR process" - ] - }, - { - "text": "Further develop, enhance and expand awareness-raising campaigns to counter human trafficking ", - "values": [ - "Human rights education and training", - "Trafficking" - ] - }, - { - "text": "Strengthen the laws and mechanisms at the federal and state levels to further combat racial discrimination in all its forms as well as against hate speech and hate crimes, to ensure that people are protected therefrom", - "values": [ - "Racial discrimination" - ] - }, - { - "text": "Adopt legislation and measures to allow the free practice of religions in Sudan and in South\nSudan", - "values": [ - "Freedom of religion and belief" - ] - }, - { - "text": "Further increase its national spending on the health and education sector to meet the targets of the MDGs ", - "values": [ - "Right to education", - "Right to health" - ] - }, - { - "text": "Continue active work to ensure inter-confessional harmony within Pakistan", - "values": [ - "Freedom of religion and belief", - "Minorities" - ] - }, - { - "text": "Continue its efforts to find ways to vindicate human rights of citizens, in particular of the families of the victims of disappearances.", - "values": [ - "Enforced disappearances" - ] - }, - { - "text": "Improve the forms of social security protection applicable to foreign workers who have become unemployed or whose employment has been suspended and who are deprived of the benefits provided to nationals in the same situation", - "values": [ - "Labour", - "Migrants" - ] - }, - { - "text": "Prohibit all corporal punishment of children, including in the home and all other settings, and explicitly repeal the right to discipline children according to "general custom" in the Penal Law", - "values": [ - "Rights of the Child", - "Torture and other CID treatment" - ] - }, - { - "text": "Increase its efforts to fully implement the Maria da Penha Law regarding the rights of women victims of domestic violence ", - "values": [ - "Women's rights" - ] - }, - { - "text": "Ensure that public policies for combating poverty are in accordance with the rights recognized in the International Covenant on Economic, Social and Cultural Rights and that they are not negatively affected by commitments that might be undertaken in the context of trade and investment agreements ", - "values": [ - "International instruments", - "Poverty" - ] - }, - { - "text": "Intensify an all-inclusive transparent process with a view to fulfilling the aspirations of all Syrian people", - "values": [ - "General" - ] - }, - { - "text": "Continue to further enhance its dialogue with civil societies and implement policies and measures in order to enhance the promotion and protection of the rights of women, children and persons with disabilities", - "values": [ - "Disabilities", - "Rights of the Child", - "Women's rights" - ] - }, - { - "text": "Cooperate with the special procedures of the Human Rights Council, including the Special Rapporteur on the situation of human rights in Iran", - "values": [ - "Special procedures" - ] - }, - { - "text": "Adopt and apply legislation that effectively improves detention conditions in prison centres and ensure the respect of judicial guarantees offered to detainees", - "values": [ - "Detention", - "Justice" - ] - }, - { - "text": "Bring all legislation concerning communication surveillance into line with international human rights standards and especially require a test of necessity and proportionality for all communications surveillance", - "values": [ - "Privacy" - ] - }, - { - "text": "Allocate sufficient funds for the effective application of the Violence against Women Act ", - "values": [ - "Women's rights" - ] - }, - { - "text": "Further develop the educational sector and the health sector because they are the key sectors in the development process", - "values": [ - "Right to education", - "Right to health" - ] - }, - { - "text": "Improve prisoners' access to essential services, including health care and rehabilitation ", - "values": [ - "Detention" - ] - }, - { - "text": "Hold the next elections in an inclusive and transparent manner", - "values": [ - "Elections" - ] - }, - { - "text": "Apply harsher sentences for sexual violence and child abuse, with a view to strengthening laws on child protection, as well as developing new avenues for making complaints of child abuse, sexual aggression and incest, which are adapted to children", - "values": [ - "Rights of the Child" - ] - }, - { - "text": "Undertake effective awareness-raising campaigns to address violence against women ", - "values": [ - "Human rights education and training", - "Women's rights" - ] - }, - { - "text": "Establish and strengthen mechanisms that provide support for victims of violence against women and girls, and ensure that they are effectively protected from all forms of violence", - "values": [ - "Rights of the Child", - "Women's rights" - ] - }, - { - "text": "Take steps to seek the Commission's reaccreditation under the Paris Principles", - "values": [ - "National Human Rights Institution" - ] - }, - { - "text": "Elaborate a holistic strategy that includes judicial and social measures to eradicate female genital mutilation", - "values": [ - "Rights of the Child", - "Torture and other CID treatment", - "Women's rights" - ] - }, - { - "text": "Continue providing human rights training to law enforcement officials and judges to reinforce a culture of human rights ", - "values": [ - "Human rights education and training" - ] - }, - { - "text": "Take all practical measures in collaboration with neighbouring countries in order to put an end to the accusations of extrajudicial executions, and more generally, to the abolition in the near future of the death penalty", - "values": [ - "Death penalty" - ] - }, - { - "text": "Ratify the ICRMW and the Conventions on Refugees and Stateless persons", - "values": [ - "Asylum-seekers - refugees", - "International instruments", - "Labour", - "Migrants", - "Statelessness and the right to nationality" - ] - }, - { - "text": "Adopt a law that prohibits corporal punishment against children in all areas of life ", - "values": [ - "Rights of the Child", - "Torture and other CID treatment" - ] - }, - { - "text": "Regarding the legislative framework, Jamaica affirmed its commitment to bringing the country's legal framework into compliance with the provisions of CEDAW.", - "values": [ - "International instruments", - "Women's rights" - ] - }, - { - "text": "Formalize its present de facto moratorium on executions with a view to legislating to abolish the death penalty soon ", - "values": [ - "Death penalty" - ] - }, - { - "text": "Continue its education policy, giving special emphasis to the education of young girls ", - "values": [ - "Right to education", - "Rights of the Child", - "Women's rights" - ] - }, - { - "text": "Positively consider ratifying the Convention on the Rights of Persons with Disabilities to fully ensure the rights of persons with disabilities to education, employment and their participation in political and public life", - "values": [ - "Disabilities", - "International instruments", - "Labour", - "Right to education" - ] - }, - { - "text": "Expedite the adoption of the law to combat violence against women and ensure that it makes all forms of violence against women a criminal offence, including domestic violence and marital rape, and amend the provisions of the Criminal Code in order to eliminate any possibility of impunity for the perpetrators of violence against women", - "values": [ - "Rights of the Child", - "Women's rights" - ] - }, - { - "text": "Intensify its efforts to sensitize and train medical professionals on the criminal nature of prenatal sex selection with a view to ensuring stringent enforcement of the legal prohibition of such practice ", - "values": [ - "Rights of the Child", - "Women's rights" - ] - }, - { - "text": "Intensify efforts in fighting the root causes of violence against women by paying special attention to addressing alcohol and drug abuse", - "values": [ - "Women's rights" - ] - }, - { - "text": "Become party to the Second Optional Protocol to the International Covenant on Civil and Political Rights ", - "values": [ - "Death penalty", - "International instruments" - ] - }, - { - "text": "Continue to develop legislation in order to adapt it to the Convention on the Rights of the Child, in particular in areas such as the care of children who are without protection, protection against abuse and sexual exploitation, birth registration, the prohibition of child labour, the minimum age for criminal responsibility and the administration of justice for minors", - "values": [ - "International instruments", - "Rights of the Child", - "Statelessness and the right to nationality" - ] - }, - { - "text": "Continue its cooperation with different human rights mechanisms of the United Nations in order to promote and protect human rights in the country ", - "values": [ - "Special procedures", - "Treaty bodies", - "UPR process" - ] - }, - { - "text": "Develop and promote national policies in the field of child rights protection, in particular for vulnerable groups of the population", - "values": [ - "Rights of the Child" - ] - }, - { - "text": "Continue implementing policies aimed at intensifying the combat against discrimination, especially with respect to female migrant workers", - "values": [ - "Labour", - "Migrants", - "Women's rights" - ] - }, - { - "text": "Develop and start the implementation of the policy on reducing the wage gap between man and women, including in the sector of low paid women jobs ", - "values": [ - "Women's rights" - ] - }, - { - "text": "Explicitly prohibit by law and criminalize the use of children in hostilities by the armed forces and the recruitment and use of children in hostilities by non-State armed groups ", - "values": [ - "Rights of the Child" - ] - }, - { - "text": "Accede to Optional Protocols 1 and 2 to ICCPR", - "values": [ - "CP rights - general", - "International instruments" - ] - }, - { - "text": "Review its national legislation by enacting specific provisions to cooperate promptly and fully with the International Criminal Court ", - "values": [ - "International instruments", - "Justice" - ] - }, - { - "text": "Continue working, nationally and internationally, in the implementation of the Central America security strategy", - "values": [ - "Public security" - ] - }, - { - "text": "Take measures to implement the recommendations made by the Committee on Economic, Social and Cultural Rights, the Committee against Torture and the Human Rights Committee regarding prison conditions and the treatment of detainees.", - "values": [ - "Detention", - "Treaty bodies" - ] - }, - { - "text": "Carry out an in-depth review of the country's legal system so as to ensure that the Constitution and other national laws are compatible with international human rights obligations and standards. In this connection, amend and-or repeal all laws that have a discriminatory effect, including customary norms", - "values": [ - "International instruments" - ] - }, - { - "text": "Continue with its project on providing health services", - "values": [ - "Right to health" - ] - }, - { - "text": "Complete the process of examining regional and international human rights instruments to which the country is party, so as to revise national legislation and better fulfill its regional and international obligations imposed by such instruments", - "values": [ - "International instruments" - ] - }, - { - "text": "Sign and ratify the Convention against Torture and Other Cruel, Inhuman or Degrading Treatment or Punishment and its Optional Protocol, the International Covenant on Civil and Political Rights and its two Optional Protocols, the Optional Protocol to the International Covenant on Economic, Social and Cultural Rights, the International Convention for the Protection of All Persons from Enforced Disappearance, ratify the Convention on the Rights of Persons with Disabilities and the two Optional Protocols to the Convention on the Rights of the Child ", - "values": [ - "International instruments" - ] - }, - { - "text": "Enhance protection of children from abuse, including prostitution and child pornography ", - "values": [ - "Rights of the Child" - ] - }, - { - "text": "Further develop measures permitting the full inclusion of persons with disabilities in economic, political, social and cultural life, using a human-rights-based approach ", - "values": [ - "Disabilities" - ] - }, - { - "text": "Intensify efforts aimed at efficiently safeguarding the freedom of expression", - "values": [ - "Freedom of opinion and expression" - ] - }, - { - "text": "Implement fully the national human development plan for 2009-2011", - "values": [ - "General" - ] - }, - { - "text": "Study the possibility of being party to the following international instruments: ICCPR, CEDAW and CAT", - "values": [ - "CP rights - general", - "International instruments", - "Torture and other CID treatment", - "Women's rights" - ] - }, - { - "text": "Implement a gender perspective in education at all levels, including teacher training, as well as establish a policy and appropriate measures for including children of all backgrounds in the national education system", - "values": [ - "Right to education", - "Rights of the Child", - "Women's rights" - ] - }, - { - "text": "Take concrete measures to eliminate gender stereotypes and discrimination against women", - "values": [ - "Women's rights" - ] - }, - { - "text": "Make progress in the use of alternative measures to the detention of migrants", - "values": [ - "Detention", - "Migrants" - ] - }, - { - "text": "Continue to work towards improving the living conditions of the Roma population in general and, in particular, of vulnerable children", - "values": [ - "Minorities", - "Rights of the Child" - ] - }, - { - "text": "Thoroughly investigate all allegations of sexual violence and bring perpetrators of such crimes to justice, in accordance with international standards", - "values": [ - "Rights of the Child", - "Women's rights" - ] - }, - { - "text": "Accelerate the process of finalizing its National Policy and Action Plan for human rights, and strengthen its national human rights infrastructure ", - "values": [ - "General" - ] - }, - { - "text": "Take the necessary measures to guarantee the human rights of migrant woman and children, including single mothers and unaccompanied children", - "values": [ - "Migrants", - "Rights of the Child", - "Women's rights" - ] - }, - { - "text": "Continue to improve the lives and well-being of its people to bring about the full enjoyment of their human rights ", - "values": [ - "General" - ] - }, - { - "text": "Guarantee that all those responsible for acts of violence, harassment and sexual abuse of girls, in particular in the educational system, are effectively punished and that the girls receive support, including denouncing these situations, and reparation and protection measures ", - "values": [ - "Rights of the Child" - ] - }, - { - "text": "Take measures to comprehensively address long-standing issues identified under agenda item 4 of the Kenya National Dialogue and Reconciliation, including with regard to judicial and police reform", - "values": [ - "Justice" - ] - }, - { - "text": "Implement the national mechanism established in the Optional Protocol to the Convention against Torture.", - "values": [ - "Detention", - "International instruments", - "Torture and other CID treatment" - ] - }, - { - "text": "Ratify Protocol 12 to the European Convention for the Protection of Human Rights and Fundamental Freedoms, in particular bearing in mind the particular situation of the Roma minority in the country.", - "values": [ - "International instruments", - "Minorities" - ] - }, - { - "text": "Advance in the eradication of violence against women, intensifying actions such as those developed by the Domestic Violence Branch of the Police, and put in place measures that contribute to the elimination of traditional practices such as female gender mutilation, the trokosi practice and forced marriage", - "values": [ - "Rights of the Child", - "Torture and other CID treatment", - "Women's rights" - ] - }, - { - "text": "Strengthen its efforts to eradicate child labour, improving coordination among the numerous national institutions dealing with the rights of the child", - "values": [ - "Labour", - "Rights of the Child" - ] - }, - { - "text": "Expedite the necessary consultative and legislative processes for the establishment of mandatory retirement benefits for all working persons who retire due to old age or disability", - "values": [ - "Disabilities" - ] - }, - { - "text": "Put in place stronger mechanisms to protect women and girls against gender-based violence and provide redress to victims ", - "values": [ - "Rights of the Child", - "Women's rights" - ] - }, - { - "text": "Include in the Anti-discrimination Law a specific prohibition on discrimination on the basis of sexual orientation", - "values": [ - "Sexual Orientation and Gender Identity" - ] - }, - { - "text": "Accelerate development programmes, especially in the rural areas in all regions of the country ", - "values": [ - "Development" - ] - }, - { - "text": "Ensure full and effective implementation of public policies to eradicate racial discrimination in all its manifestations by strengthening the National Institution against Racial Discrimination and the National Council for the Development of Afrodescendant Communities of Venezuela", - "values": [ - "Minorities", - "Racial discrimination" - ] - }, - { - "text": "Ratify the Optional Protocol to the Convention against Torture and Other Cruel, Inhuman or Degrading Treatment or Punishment in order to contribute to the work already done", - "values": [ - "International instruments", - "Torture and other CID treatment", - "Treaty bodies" - ] - }, - { - "text": "Respect reproductive rights of women which include decriminalization of abortions", - "values": [ - "Women's rights" - ] - }, - { - "text": "Explore the possibility of ratifying the International Convention for the Protection of All Persons from Enforced Disappearance", - "values": [ - "Enforced disappearances", - "International instruments" - ] - }, - { - "text": "Ensure that all violence against women and girls constitutes a criminal offence, that victims have access to immediate means of redress and protection, and that all perpetrators are prosecuted", - "values": [ - "Rights of the Child", - "Women's rights" - ] - }, - { - "text": "Take all necessary measures to further promote the rights of women and girls, including abolishing all discriminatory laws, implementing the national action plan to combat sexual violence and ending female genital mutilation", - "values": [ - "Rights of the Child", - "Torture and other CID treatment", - "Women's rights" - ] - }, - { - "text": "Ensure the release of all prisoners and administrative detainees", - "values": [ - "Detention" - ] - }, - { - "text": "Take measures aimed at diminishing threats and intimidation against journalists and civil society, as well as opponents against the Government", - "values": [ - "Civil society", - "Freedom of association and peaceful assembly", - "Freedom of the press" - ] - }, - { - "text": "Initiate legislation to repeal article 193-1 of the Criminal Code, which imposes criminal penalties for participation in unregistered organizations", - "values": [ - "Freedom of association and peaceful assembly" - ] - }, - { - "text": "Accelerate work on the protection of the rights of children and women in particular", - "values": [ - "Rights of the Child", - "Women's rights" - ] - }, - { - "text": "Accelerate the process of accession and then ratify the International Convention for the Protection of All Persons from Enforced Disappearance", - "values": [ - "Enforced disappearances", - "International instruments" - ] - }, - { - "text": "Continue its different reforms for the well-being and the full enjoyment of human rights by its population", - "values": [ - "General" - ] - }, - { - "text": "Continue the enhancement of equal access to opportunities and services by the vulnerable communities ", - "values": [ - "Other" - ] - }, - { - "text": "Adopt a comprehensive national plan to address comprehensively the problem of gender-based violence, whether physical, psychological or sexual, providing to all relevant public services sufficient resources to implement these policies, taking into account the specific circumstances of women and girls who suffer from the most serious vulnerability", - "values": [ - "Rights of the Child", - "Women's rights" - ] - }, - { - "text": "Take necessary measures to ensure the independence and credibility of the bodies that will have primary jurisdiction over validating polling results in the 2012 Presidential and Parliamentary elections, as well as to ensure the appropriate level of security at the polls sufficient for all voters to freely exercise their franchise ", - "values": [ - "Elections" - ] - }, - { - "text": "Intensify measures to prevent and combat harmful traditional practices, including female genital mutilation, which occur especially in rural areas, and to investigate such acts in order to prosecute and punish the perpetrators", - "values": [ - "Rights of the Child", - "Torture and other CID treatment", - "Women's rights" - ] - }, - { - "text": "Consider establishing an independent national human rights institution in accordance with the Paris Principles ", - "values": [ - "National Human Rights Institution" - ] - }, - { - "text": "Continue exploring possibilities to extend its international commitments, in particular to consider ratification of ICCPR and the Rome Statute of the International Criminal Court", - "values": [ - "CP rights - general", - "International instruments", - "Justice" - ] - }, - { - "text": "Review the list of crimes for which the death penalty is imposed, with a view to abolishing capital punishment.", - "values": [ - "Death penalty" - ] - }, - { - "text": "Ratify the Optional Protocol to the Convention against Torture and other Cruel, Inhuman or Degrading Treatment or Punishment for the establishment of a National Preventive Mechanism", - "values": [ - "Detention", - "International instruments", - "Torture and other CID treatment" - ] - }, - { - "text": "Create a national programme to counter violence against women, in particular domestic violence ", - "values": [ - "Rights of the Child", - "Women's rights" - ] - }, - { - "text": "Take legislative and administrative measures to remove legal restrictions and social barriers to women's equal participation in the work force and access to education and government decision-making positions", - "values": [ - "Women's rights" - ] - }, - { - "text": "Speed up its constitutional reforms to abolish the death penalty", - "values": [ - "Death penalty" - ] - }, - { - "text": "Continue with the current law reform effort to include measures protecting against discrimination based on sexual orientation, gender identity or disability", - "values": [ - "Disabilities", - "Sexual Orientation and Gender Identity" - ] - }, - { - "text": "Continue policies aimed at reducing inequalities in access to the full enjoyment of human rights by all social groups with paying special attention to women, children and persons with disabilities ", - "values": [ - "Disabilities", - "Rights of the Child", - "Women's rights" - ] - }, - { - "text": "Support Muslims by enabling them to freely practice their religion", - "values": [ - "Freedom of religion and belief", - "Minorities" - ] - }, - { - "text": "Amend legislation in order to narrow down the criminal offences of "extremist activities" in order to ensure that charges are not applied arbitrarily and that freedom of expression as set out in the ICCPR is not restricted", - "values": [ - "Freedom of opinion and expression", - "International instruments" - ] - }, - { - "text": "Expeditiously and fully implement the Constitution adopted in 1997 and strive for earliest adoption of a penal and criminal procedure code as well as a civil and civil procedure code in accordance with international standards and provide clearly in new legislation for freedom of expression, assembly, movement and belief", - "values": [ - "Freedom of association and peaceful assembly", - "Freedom of movement", - "Freedom of opinion and expression", - "Freedom of religion and belief", - "Justice" - ] - }, - { - "text": "Fully implement the national strategy to prevent domestic violence, and conduct awareness raising campaigns and training on domestic violence for officials ", - "values": [ - "Human rights education and training", - "Rights of the Child", - "Women's rights" - ] - }, - { - "text": "Reform the Native Title Act 1993, amending strict requirements which can prevent the Aboriginal and Torres Strait Islander peoples from exercising the right to access and control their traditional lands and take part in cultural life ", - "values": [ - "Indigenous peoples", - "Right to land" - ] - }, - { - "text": "Envisage to ratify international instruments already signed, in particular the International Covenant on Civil and Political Rights and the International Covenant on Economic, Social and Cultural Rights, and the Convention against Torture and Other Cruel, Inhuman or Degrading Treatment or Punishment ", - "values": [ - "CP rights - general", - "ESC rights - general", - "International instruments", - "Torture and other CID treatment" - ] - }, - { - "text": "Closely involve civil society in the follow-up to the present review", - "values": [ - "Civil society", - "UPR process" - ] - }, - { - "text": "Guarantee basic services to the children of migrants in irregular situations, in particular in the areas of education and health", - "values": [ - "Migrants", - "Right to education", - "Right to health", - "Rights of the Child" - ] - }, - { - "text": "Follow-up on the recommendations formulated by the Committee on the procedural laws to ensure women's access to justice, and to enhance women's awareness of their rights through legal literacy programmes and legal assistance so that they can claim all their rights.", - "values": [ - "Women's rights" - ] - }, - { - "text": "Take urgent measures for the promotion and protection of the rights of the Palestinian population", - "values": [ - "Other" - ] - }, - { - "text": "Amend relevant legislation in order to ensure civil registration for all children, including fatherless children ", - "values": [ - "Rights of the Child" - ] - }, - { - "text": "Accelerate the ratification of the range of international human rights instruments accepted at the universal periodic review in 2010, particularly the optional protocols to the Convention on the Rights of the Child", - "values": [ - "International humanitarian law", - "International instruments", - "Labour", - "Rights of the Child", - "Trafficking", - "UPR process" - ] - }, - { - "text": "Become a State Party to the Convention on the Elimination of All forms of Discrimination against Women", - "values": [ - "International instruments", - "Women's rights" - ] - }, - { - "text": "Take concrete steps to protect members of vulnerable groups from violence, encouraging more reporting of offences, more sympathetic handling of cases by the police and more convictions with appropriate sentences ", - "values": [ - "Minorities" - ] - }, - { - "text": "Enact without delay legislation on domestic violence, including marital rape and all forms of sexual abuse, and strengthen its awareness-raising and educational efforts to address the health consequences of female genital mutilation and provide medical support to those affected by it ", - "values": [ - "Human rights education and training", - "Rights of the Child", - "Torture and other CID treatment", - "Women's rights" - ] - }, - { - "text": "Ensure independent, open and transparent selection procedures based on merit for judges and prosecutors", - "values": [ - "Justice" - ] - }, - { - "text": "Further fulfil the internationally taken obligations as well as join new human rights international instruments ", - "values": [ - "International instruments" - ] - }, - { - "text": "Continue efforts to combat trafficking in women and children, by fully implementing the recently passed law of April 2008, on countering trafficking in persons", - "values": [ - "Rights of the Child", - "Trafficking", - "Women's rights" - ] - }, - { - "text": "Take measures to end impunity for acts of sexual violence against women and girls", - "values": [ - "Impunity", - "Rights of the Child", - "Women's rights" - ] - }, - { - "text": "Continue its poverty reduction programmes", - "values": [ - "Poverty" - ] - }, - { - "text": "Consider ratifying the following international instruments: ICCPR, ICESCR, CAT, ICERD, OP-CEDAW and CED", - "values": [ - "International instruments" - ] - }, - { - "text": "Extend a standing invitation to all special procedures of the Council to further advance the respect of human rights ", - "values": [ - "Special procedures" - ] - }, - { - "text": "Continue its efforts to ensure compliance of its domestic legislation with the Convention on the Rights of the Child, specifically with regard to juvenile Justice.", - "values": [ - "International instruments", - "Justice", - "Rights of the Child" - ] - }, - { - "text": "Enhance its efforts to further promote the human rights of minorities, including citizens of Arab origin, by promoting their participation in politics, the economy and various sectors of society as well as by ensuring their equal access to education, health care and other social services", - "values": [ - "CP rights - general", - "ESC rights - general", - "Minorities", - "Right to education" - ] - }, - { - "text": "Sign and ratify the Rome Statute of the International Criminal Court", - "values": [ - "International instruments", - "Justice" - ] - }, - { - "text": "Pursue efforts to improve the living conditions of women, notably through measures aimed at encouraging women to stand for elective office and to seek public appointments, as well as through measures aimed at facilitating women's access to credit, land, and to basic health services", - "values": [ - "Women's rights" - ] - }, - { - "text": "Allocate greater budget to improving educational facilities, especially in the rural areas, and promote school enrolment at all levels", - "values": [ - "Right to education" - ] - }, - { - "text": "Develop a strategic plan to prevent the high rate of school dropout and eradicate child labour", - "values": [ - "Labour", - "Right to education", - "Rights of the Child" - ] - }, - { - "text": "Establish a minimum age for marriage in line with international standards ", - "values": [ - "Rights of the Child", - "Women's rights" - ] - }, - { - "text": "Implement measures to combat discrimination on the ground of sexual orientation and gender Identity, as well as other human rights violations against the gay, lesbian, bisexual, transsexual and transvestite community.", - "values": [ - "Sexual Orientation and Gender Identity" - ] - }, - { - "text": "Improve its enforcement of regulations to protect foreign workers and extend coverage of minimum wage requirements to include foreign workers ", - "values": [ - "Labour", - "Migrants" - ] - }, - { - "text": "Put an end to the policy of colonization with illegal settlements", - "values": [ - "Other" - ] - }, - { - "text": "Prioritize domestic policies and resourcing aimed at eliminating violence against women and promoting non-discriminatory working relationships and respect for diversity in the workplace ", - "values": [ - "Women's rights" - ] - }, - { - "text": "Explicitly and publicly recognize the legitimacy of the work of human rights defenders, including by making public statements recognizing their contribution to the promotion and protection of human rights and the rule of law", - "values": [ - "Human rights defenders" - ] - }, - { - "text": "Continue tirelessly to address the issue of resettlement of IDPs including by putting in place resources in provisions of basic services and infrastructure development ", - "values": [ - "Internally displaced persons" - ] - }, - { - "text": "Ratify the Optional Protocol to the Convention against Torture and Other Cruel, Inhuman or Degrading Treatment or Punishment and bring detention conditions in places of deprivation of liberty in line with international standards", - "values": [ - "Detention", - "International instruments", - "Torture and other CID treatment" - ] - }, - { - "text": "Continue to give priority to efforts aimed at the recognition and protection of journalists and human rights defenders", - "values": [ - "Freedom of the press", - "Human rights defenders" - ] - }, - { - "text": "Continue to ensure the independence of and support for the Office of the National Commissioner for Human Rights and the Truth and Reconciliation Commission, in order to fulfil their mandates ", - "values": [ - "Justice", - "National Human Rights Institution" - ] - }, - { - "text": "Review the legislation on religious groups and organizations so as to ensure its compliance with ICCPR ", - "values": [ - "Freedom of religion and belief", - "International instruments" - ] - }, - { - "text": "Continue the education reform in order to ensure free primary education for all girls and boys", - "values": [ - "Right to education", - "Rights of the Child" - ] - }, - { - "text": "Continue national efforts that aim to promote a culture of and the principles of human rights, including them in the educational curriculum", - "values": [ - "Human rights education and training" - ] - }, - { - "text": "Establish a moratorium on the death penalty as an interim measure before its abolition and ratify the Second Optional Protocol to the International Covenant on Civil and Political Rights", - "values": [ - "Death penalty", - "International instruments" - ] - }, - { - "text": "Accelerate the process aimed at the establishment of a national human rights institution in conformity with the Paris Principles, and extend a standing invitation to special procedures ", - "values": [ - "National Human Rights Institution", - "Special procedures" - ] - }, - { - "text": "Ensure the full implementation of the Strategic Framework for Growth and Poverty Reduction ", - "values": [ - "Development", - "Poverty" - ] - }, - { - "text": "Establish an effective protection system for human rights defenders and journalists and ensure the free exercise of their rights to freedom of opinion, expression and association", - "values": [ - "Freedom of association and peaceful assembly", - "Freedom of opinion and expression", - "Freedom of the press", - "Human rights defenders" - ] - }, - { - "text": "Further revise its legislation to include protection against all forms of violence against women", - "values": [ - "Women's rights" - ] - }, - { - "text": "Consider acceding to the Optional Protocol the Convention against Torture and Other Cruel, Inhuman or Degrading Treatment or Punishment", - "values": [ - "Detention", - "International instruments", - "Torture and other CID treatment" - ] - }, - { - "text": "Continue its efforts to ratify the Optional Protocol to the Convention against Torture as soon as possible", - "values": [ - "Detention", - "International instruments", - "Torture and other CID treatment" - ] - }, - { - "text": "Take measures conducive to the creation of a national human rights institution in accordance with the Paris Principles.", - "values": [ - "National Human Rights Institution" - ] - }, - { - "text": "Take measures to ensure that journalists exercise their profession freely and fight against impunity of the perpetrators of violence against them", - "values": [ - "Freedom of the press", - "Impunity" - ] - }, - { - "text": "Move with concrete steps - most evidently seen through committed financial resources in the national budget, and appointed experts with concrete mandates - on all four transitional justice mechanisms", - "values": [ - "Justice" - ] - }, - { - "text": "Further strengthen its efforts to address minority issues with the aim of overcoming the remaining obstacles to the full implementation of the human rights of minorities as one of the most vulnerable groups within society ", - "values": [ - "Minorities" - ] - }, - { - "text": "Abolish the death penalty, considering that the moratorium on judicial executions has been in place since 1975", - "values": [ - "Death penalty" - ] - }, - { - "text": "That a mechanism be established at the federal level to ensure comprehensive and coordinated compliance with international human rights instruments at the federal, local and state levels", - "values": [ - "International instruments" - ] - }, - { - "text": "Continue its cooperation with civil society organizations in follow-up to this review ", - "values": [ - "Civil society", - "UPR process" - ] - }, - { - "text": "Consider developing a broad programme on human rights which includes training and capacity-building for the public sector", - "values": [ - "Human rights education and training" - ] - }, - { - "text": "Continue its efforts to further the enforcement of child rights and laws", - "values": [ - "Rights of the Child" - ] - }, - { - "text": "Recognize the principle of non-discrimination, which prohibits discrimination on any ground, including sexual orientation, and to abolish the law that criminalises homosexuality without delay", - "values": [ - "Sexual Orientation and Gender Identity" - ] - }, - { - "text": "Increase the resources allocated to the new Ministry for Temporarily Occupied Territories and Internally Displaced Persons", - "values": [ - "Other" - ] - }, - { - "text": "Take effective measures to fully implement National Rural Health Missions ", - "values": [ - "Right to health" - ] - }, - { - "text": "That further efforts should be taken to improve the detention regime, taking into consideration the recommendations in the UNHCR Position Paper", - "values": [ - "Detention" - ] - }, - { - "text": "Review the use of anti-defamation laws and the registration process for civil society and associations to ensure that such laws are consistent with the right to freedom of expression, association and peaceful assembly, and do not constitute a de facto ban on peaceful public demonstrations", - "values": [ - "Civil society", - "Freedom of association and peaceful assembly", - "Freedom of opinion and expression" - ] - }, - { - "text": "Allow regular access of ICRC to prisons and detention facilities.", - "values": [ - "Detention" - ] - }, - { - "text": "Continue actions to improve the realization of the human right to water, under the framework of General Assembly resolution 64/292", - "values": [ - "Right to water and sanitation" - ] - }, - { - "text": "Continue paying attention to equality of opportunities and creating favourable conditions of people residing in rural and mountainous areas.", - "values": [ - "Other" - ] - }, - { - "text": "Allow NGOs and other actors to bring discrimination cases to court in order to secure increased access to justice for victims of discrimination", - "values": [ - "Civil society", - "Justice" - ] - }, - { - "text": "Elaborate and adopt an action plan for strengthening the promotion and protection of the rights of persons with disabilities in compliance with the 2006 Persons with Disability Act of Ghana", - "values": [ - "Disabilities" - ] - }, - { - "text": "Create a framework for the socioeconomic rehabilitation and reintegration of women victims of sexual violence in the regions affected by the conflict", - "values": [ - "Women's rights" - ] - }, - { - "text": "Consider establishing shelters for victims of domestic violence and reinforce efforts to prevent and combat child abuses, including measures to assist in recovery and reintegration ", - "values": [ - "Rights of the Child", - "Women's rights" - ] - }, - { - "text": "Positively consider requests for country visits of special procedures of the Council and implement the recommendations stemming from United Nations human rights mechanisms ", - "values": [ - "Special procedures", - "Treaty bodies", - "UPR process" - ] - }, - { - "text": "Ratify the Rome Statute of the International Criminal Court, including accession to the Agreement on the Privileges and Immunities", - "values": [ - "International instruments", - "Justice" - ] - }, - { - "text": "Protect minorities and ensure the full enjoyment of their freedom of religion or belief in accordance with international human rights law", - "values": [ - "Freedom of religion and belief", - "International instruments", - "Minorities" - ] - }, - { - "text": "Strengthen efforts to ensure that violations of physical abuse and discrimination of migrant women who come to serve as domestic workers are acted upon and take steps necessary to ensure full enjoyment of human rights of all women in Saudi Arabia ", - "values": [ - "Labour", - "Migrants", - "Women's rights" - ] - }, - { - "text": "Expedite the ratification of the Optional Protocol to the Convention against Torture and establish a National Preventative Mechanism", - "values": [ - "Detention", - "International instruments", - "Torture and other CID treatment" - ] - }, - { - "text": "Pursue efforts to provide education for all people residing in the Lebanese territory", - "values": [ - "Right to education" - ] - }, - { - "text": "Adopt a national plan and legislation against racial discrimination, xenophobia and other forms of intolerance ", - "values": [ - "Racial discrimination" - ] - }, - { - "text": "Continue its endeavours for effective protection of social and economic rights of its citizens", - "values": [ - "ESC rights - general" - ] - }, - { - "text": "Continue focusing efforts to improve the situation of women, especially in rural areas where many head families, with regard to access to educational services, justice and credit mechanisms ", - "values": [ - "Women's rights" - ] - }, - { - "text": "Ensure the independence of the Ukrainian Parliament Commissioner for Human Rights, including financially.", - "values": [ - "National Human Rights Institution" - ] - }, - { - "text": "Respect freedom of opinion and expression, in particular for journalists, and freedom of peaceful demonstration, without recourse to the excessive use of force", - "values": [ - "Freedom of association and peaceful assembly", - "Freedom of opinion and expression", - "Freedom of the press" - ] - }, - { - "text": "End the discriminatory practice of maintaining "black lists" of Russian citizens - natives of the Kazbek district of Georgia - depriving them of the possibility to visit their homes, relatives and the graves of their ancestors", - "values": [ - "Minorities", - "Racial discrimination" - ] - }, - { - "text": "Ratify OP-CAT and designate a National Preventive Mechanism for places of detention ", - "values": [ - "Detention", - "International instruments", - "Torture and other CID treatment" - ] - }, - { - "text": "Continue guaranteeing labour rights", - "values": [ - "Labour" - ] - }, - { - "text": "Finalize the elaboration of the national action plans on children's and human rights", - "values": [ - "Rights of the Child" - ] - }, - { - "text": "Take all necessary measures to ensure that civil society organizations, human rights defenders and journalists are able to carry out their legitimate activities without facing legal or administrative obstructions or fear or threat of reprisals", - "values": [ - "Civil society", - "Freedom of the press", - "Human rights defenders" - ] - }, - { - "text": "Amend the Penal Code to provide that crimes motivated by discrimination on any grounds, gender identity and expression and sexual orientation, are investigated and prosecuted as hate crimes", - "values": [ - "Sexual Orientation and Gender Identity" - ] - }, - { - "text": "Intensify engagement with the international community for ensuring access of international human rights monitoring mechanisms to the Georgian regions of Abkhazia and Tskhinvali region/South Ossetia", - "values": [ - "Technical assistance and cooperation" - ] - }, - { - "text": "Continue to promote sustainable economic and social development, and gradually improve the living standards of the population so as to lay the solid foundation for the enjoyment of all human rights", - "values": [ - "Development" - ] - }, - { - "text": "Host in Cairo the new OHCHR regional office in North Africa, as so pledged in its candidature for membership to the Human Rights Council", - "values": [ - "Other" - ] - }, - { - "text": "Take further steps to remove obstacles that may occur in accessing reproductive health products and services, paying special attention to women who have been victims of rape", - "values": [ - "Right to health", - "Women's rights" - ] - }, - { - "text": "Take further measures to prevent discrimination based on sexual orientation, and that the Equal Opportunities Act allow legal acknowledgement of homosexual couples and their human rights", - "values": [ - "Sexual Orientation and Gender Identity" - ] - }, - { - "text": "Intensify efforts to reduce the use of corporal punishment against minors in state-run institutions through awareness-raising campaigns and training in non-violent forms of discipline", - "values": [ - "Human rights education and training", - "Rights of the Child", - "Torture and other CID treatment" - ] - }, - { - "text": "Actively pursue international cooperation aimed at adapting to the adverse effects of climate change", - "values": [ - "Environment" - ] - }, - { - "text": "Refrain from and prevent any executive interference with lawyers' conduct of their professional duties", - "values": [ - "Justice" - ] - }, - { - "text": "Continue to promote legislation and actions to eliminate discrimination and strengthen the protection of the rights of vulnerable groups including women, children and indigenous peoples", - "values": [ - "Indigenous peoples", - "Rights of the Child", - "Women's rights" - ] - }, - { - "text": "Strengthen its efforts in the fight against women trafficking, a phenomenon that remains of concern", - "values": [ - "Trafficking", - "Women's rights" - ] - }, - { - "text": "Take all institutional measures required to accede to the Convention against Torture", - "values": [ - "International instruments", - "Torture and other CID treatment" - ] - }, - { - "text": "Allow for a visit by OHCHR and other United Nations Special Rapporteurs and experts who have requested access to Iran", - "values": [ - "Special procedures" - ] - }, - { - "text": "Ratify the Rome Statute of the International Criminal Court and fully align its legislation with all the obligations under the Rome Statute, including incorporating the Rome Statute definition of crimes and general principles, as well as adopting provisions enabling cooperation with the Court", - "values": [ - "International instruments", - "Justice" - ] - }, - { - "text": "Continue to invest resources to ensure that all children between the ages of 5 and 16, in particular girls in difficult regions, have access to quality basic and secondary education", - "values": [ - "Right to education", - "Rights of the Child", - "Women's rights" - ] - }, - { - "text": "Strengthen its measures to prevent torture and address the impunity of such acts", - "values": [ - "Impunity", - "Torture and other CID treatment" - ] - }, - { - "text": "Amend the Criminal Code with a view to including all elements of the definition of torture as provided for in article 1 of CAT ", - "values": [ - "International instruments", - "Torture and other CID treatment" - ] - }, - { - "text": "Continue to raise awareness regarding the criminal nature of domestic violence and keep on bringing those responsible before the courts", - "values": [ - "Human rights education and training", - "Rights of the Child", - "Women's rights" - ] - }, - { - "text": "Continue to protect and promote the rights of imprisoned persons so as to make conditions and places of detention more humane", - "values": [ - "Detention" - ] - }, - { - "text": "Address social and cultural stereotypes underpinning discrimination and violence against women and ensure women\u2019s participation in decision-making", - "values": [ - "Women's rights" - ] - }, - { - "text": "Step up human rights education and training for personnel involved in prosecution and law enforcement activities, including the police, armed forces personnel, judges and lawyers ", - "values": [ - "Human rights education and training" - ] - }, - { - "text": "Incorporate the provisions of the Convention on the Rights on the Child, which has been ratified by Palau, into its domestic legislation", - "values": [ - "International instruments", - "Rights of the Child" - ] - }, - { - "text": "Make progress, both at the legislative level and in practice, in ensuring the rights and fundamental freedoms of lesbian, gay, bisexual, transgender and intersex persons", - "values": [ - "Sexual Orientation and Gender Identity" - ] - }, - { - "text": "Combine national and international efforts to combat human trafficking ", - "values": [ - "Trafficking" - ] - }, - { - "text": "Continue taking measures in order to protect the rights of the child, inter alia by ratifying the third Optional Protocol to the Convention on the Rights of the Child", - "values": [ - "International instruments", - "Rights of the Child" - ] - }, - { - "text": "Look to ensure the continued separation of party and State, to allow adequate transparency and space for further democratic growth, including the impartial functioning of the Supreme Electoral Council in line with recommendations made by regional and international institutions ", - "values": [ - "Elections" - ] - }, - { - "text": "Continue its efforts in implementing constitutional and democratic reforms ", - "values": [ - "Other" - ] - }, - { - "text": "Ensure the conformity of the definition of torture in criminal law with the Convention against Torture, that the crime of torture is not subject to the statute of limitations and that the detention facilities are subject to monitoring by impartial and independent mechanisms", - "values": [ - "Detention", - "International instruments", - "Torture and other CID treatment" - ] - }, - { - "text": "Continue strengthening plans to facilitate access to employment for persons who are heads of households", - "values": [ - "Development" - ] - }, - { - "text": "Develop a plan of action to implement the activities of the Decade of People of African Descent, which would, inter alia, address concerns of racial profiling of people of African Descent", - "values": [ - "Racial discrimination" - ] - }, - { - "text": "Intensify efforts made so far to identify and eradicate trafficking in children and women for the sex trade", - "values": [ - "Rights of the Child", - "Trafficking", - "Women's rights" - ] - }, - { - "text": "Take steps to prevent crimes motivated by racial or religious discrimination through education, awareness-raising and training, and ensure that any hate crimes are effectively and promptly investigated", - "values": [ - "Freedom of religion and belief", - "Human rights education and training", - "Racial discrimination" - ] - }, - { - "text": "Identify, in an exhaustive manner, the conditions of application of international law, as well as the efforts made for the effective integration of the international obligations of the country ", - "values": [ - "General" - ] - }, - { - "text": "Step up efforts to protect the rights of Indigenous Peoples, for example, by establishing an independent mechanism to deal with their claims regarding property titles", - "values": [ - "Indigenous peoples", - "Right to land" - ] - }, - { - "text": "Ratify the Convention against Torture and its Optional Protocol", - "values": [ - "Detention", - "International instruments", - "Torture and other CID treatment" - ] - }, - { - "text": "Take all measures necessary to restore an independent judiciary, as well as to prosecute and sanction, in line with international standards, armed forces and security staff members who are guilty of grave crimes and human rights violations ", - "values": [ - "Human rights violations by state agents", - "Justice" - ] - }, - { - "text": "Reinforce its efforts to end impunity concerning serious human rights violations including those perpetrated by high ranking military officers as well as those related to sexual violence against women ", - "values": [ - "Human rights violations by state agents", - "Impunity", - "Women's rights" - ] - }, - { - "text": "Take necessary measures to fully guarantee freedom of expression, in particular freedom of the press", - "values": [ - "Freedom of opinion and expression", - "Freedom of the press" - ] - }, - { - "text": "Consider becoming a party to the International Convention for the Protection of All Persons from Enforced Disappearance and consider ratifying the Optional Protocol to the Convention against Torture", - "values": [ - "Detention", - "Enforced disappearances", - "International instruments", - "Torture and other CID treatment" - ] - }, - { - "text": "Abolish the death penalty in the law", - "values": [ - "Death penalty" - ] - }, - { - "text": "Strictly apply criminal provisions on hate speech and hate crimes, and to conduct awareness-raising campaigns to promote tolerance", - "values": [ - "Human rights education and training", - "Racial discrimination" - ] - }, - { - "text": "Prohibit all corporal punishment of children in all settings and repeal the right to punish children "appropriately and moderately" in the Family Law", - "values": [ - "Rights of the Child", - "Torture and other CID treatment" - ] - }, - { - "text": "Continue its fight against all forms of organized crime, in particular drug trafficking and terrorism ", - "values": [ - "Public security", - "Trafficking" - ] - }, - { - "text": "Preserve the national process of appeasement and reconciliation ", - "values": [ - "Justice" - ] - }, - { - "text": "Repeal legal provisions that criminalize lesbian, gay, bisexual, transgender and intersex persons, in accordance with the principle of non-discrimination", - "values": [ - "Sexual Orientation and Gender Identity" - ] - }, - { - "text": "Abstain from reintroducing of the death penalty", - "values": [ - "Death penalty" - ] - }, - { - "text": "Continue consolidating social protection programmes undertaken in favour of persons with disabilities", - "values": [ - "Disabilities" - ] - }, - { - "text": "In commending their initiatives to promote dialogue between religious and civilizations, to continue its efforts to promote universal peace and tolerance", - "values": [ - "Freedom of religion and belief" - ] - }, - { - "text": "Realize the right to education for all, including human rights education, by inter alia, ensuring the effective implementation of the law providing for free primary education", - "values": [ - "Human rights education and training", - "Right to education" - ] - }, - { - "text": "Continue its efforts to establish legal and institutional mechanisms to protect children from all forms of physical, sexual and psychological violence ", - "values": [ - "Rights of the Child" - ] - }, - { - "text": "Continue its work for the realization of its priorities contained in chapter 6 of its national report", - "values": [ - "ESC rights - general", - "Human rights education and training", - "International instruments" - ] - }, - { - "text": "Adopt measures to reduce the level of unemployment among migrants and provide support for their integration into the labour market ", - "values": [ - "Development", - "Migrants" - ] - }, - { - "text": "Continue to provide educational and training facilities for persons with disabilities, double its efforts to reduce child labour and provide care for vulnerable children in schools and on the streets", - "values": [ - "Disabilities", - "Labour", - "Right to education", - "Rights of the Child" - ] - }, - { - "text": "Take concrete steps to increase the representation of women in decision-making bodies ", - "values": [ - "Women's rights" - ] - }, - { - "text": "Make the necessary adjustments to ratify the International Convention on the Protection of the Rights of All Migrant Workers and Members of Their Families", - "values": [ - "International instruments", - "Labour", - "Migrants" - ] - }, - { - "text": "Strengthen efforts to ensure the functionality of monitoring and reporting mechanism of violations of the rights of the child in the entire country, especially in rural areas ", - "values": [ - "Rights of the Child" - ] - }, - { - "text": "Effectively implement relevant laws governing sexual and gender-based violence", - "values": [ - "Rights of the Child", - "Women's rights" - ] - }, - { - "text": "Demonstrate its commitment to article 69 of its Constitution, article 19 of ICCPR and article 19 of the Universal Declaration of Human Rights by ensuring freedom of expression for members of the press without fear of arbitrary arrest or prosecution, provide for the free flow of information on the Internet and abolish restrictive regulations on blogging and the media", - "values": [ - "Detention", - "Freedom of opinion and expression", - "Freedom of the press", - "International instruments" - ] - }, - { - "text": "Continue national efforts aimed at combating forced labour and taking necessary measures to prevent, suppress and punish trafficking in persons, particularly women and children.", - "values": [ - "Labour", - "Rights of the Child", - "Trafficking", - "Women's rights" - ] - }, - { - "text": "Continue to fight poverty with cooperation from the international community ", - "values": [ - "Poverty", - "Technical assistance and cooperation" - ] - }, - { - "text": "Review and reform the criminal code in order to define and penalize the offence of torture ", - "values": [ - "Torture and other CID treatment" - ] - }, - { - "text": "Take appropriate action to guarantee freedoms of expression, association and assembly - including by allowing independent media, political parties and civil society to operate freely - and ceasing the repression and other ill-treatment of human rights defenders and political activists ", - "values": [ - "Freedom of association and peaceful assembly", - "Freedom of opinion and expression", - "Freedom of the press", - "Human rights defenders", - "Torture and other CID treatment" - ] - }, - { - "text": "Intensify its oversight over Swiss companies operating abroad with regard to any negative impact of their activities on the enjoyment of human rights, particularly in conflict areas, which includes situations of foreign occupation where the risk of human rights abuses is heightened", - "values": [ - "Business and human rights" - ] - }, - { - "text": "Continue considering adhering to the International Convention on the Protection of the Rights of All Migrant Workers and Their Families, as previously recommended", - "values": [ - "International instruments", - "Labour", - "Migrants", - "UPR process" - ] - }, - { - "text": "Revise the legislation to cover all forms of violence against women", - "values": [ - "Women's rights" - ] - }, - { - "text": "Abolish all limitations with respect to freedom of religion and expression", - "values": [ - "Freedom of opinion and expression", - "Freedom of religion and belief" - ] - }, - { - "text": "Continue implementing measures to prevent HIV/AIDS transmission", - "values": [ - "HIV - Aids" - ] - }, - { - "text": "Continue strengthening its efforts to combat domestic violence in all its forms, especially facilitating access by victims to mechanisms for reporting cases ", - "values": [ - "Rights of the Child", - "Women's rights" - ] - }, - { - "text": "Take concrete steps to meet obligations with regard to the creation of an environment that fosters freedom of expression", - "values": [ - "Freedom of opinion and expression" - ] - }, - { - "text": "Consider withdrawing its reservations to various instruments to which it is a party ", - "values": [ - "International instruments" - ] - }, - { - "text": "Take all necessary measures to effectively protect children from sexual exploitation", - "values": [ - "Rights of the Child" - ] - }, - { - "text": "Promote policies to allow indigenous peoples and minorities access to the National Literacy Programme, the National Post-literacy Programme and bilingual intercultural education", - "values": [ - "Indigenous peoples", - "Right to education" - ] - }, - { - "text": "Establish a death penalty moratorium and look for measures for its complete elimination ", - "values": [ - "Death penalty" - ] - }, - { - "text": "Consider acceding to the International Convention for the Protection of All Persons from Enforced Disappearance, as well as the Optional Protocol to the International Covenant on Economic, Social and Cultural Rights and the Optional Protocol to the Convention on the Rights of Persons with Disabilities.", - "values": [ - "Disabilities", - "ESC rights - general", - "Enforced disappearances", - "International instruments" - ] - }, - { - "text": "Make specific efforts to implement the action plan against sexual violence fully and to make this the Government's priority. ", - "values": [ - "Rights of the Child", - "Women's rights" - ] - }, - { - "text": "Step-up efforts aimed at combating and eradicating FGM and other traditional harmful practices", - "values": [ - "Rights of the Child", - "Torture and other CID treatment", - "Women's rights" - ] - }, - { - "text": "Take into account, in its efforts to promote and protect human rights, the specific needs of such vulnerable groups as children, women, persons with disabilities and the elderly ", - "values": [ - "Disabilities", - "Rights of the Child", - "Women's rights" - ] - }, - { - "text": "Continue its efforts to overcome the challenges of extreme poverty with the support and assistance of the international community ", - "values": [ - "Poverty", - "Technical assistance and cooperation" - ] - }, - { - "text": "Take further measures to ensure that children with disabilities have access to transportation, facilities and health services and ensure their integration into the general education system", - "values": [ - "Disabilities", - "Right to education", - "Rights of the Child" - ] - }, - { - "text": "Give more support and consideration to minority groups, including the Muslim community, in particular on financial support, places of worship, cemeteries and other special concerns", - "values": [ - "Freedom of religion and belief", - "Minorities" - ] - }, - { - "text": "Allow the Special Rapporteur on torture to visit the country, and provide him with access to detention facilities", - "values": [ - "Detention", - "Special procedures", - "Torture and other CID treatment" - ] - }, - { - "text": "Introduce a moratorium on the death penalty", - "values": [ - "Death penalty" - ] - }, - { - "text": "Establish more administrative instruments and allocate more funds with a view to effective implementation of legislation on combating violence against women", - "values": [ - "Women's rights" - ] - }, - { - "text": "Intensify efforts in order to eradicate from its legislation and practice all discriminatory laws and adopt a comprehensive strategy on awareness-raising campaigns to eliminate discrimination based on any grounds and against all vulnerable groups, particularly girls with respect to their inheritance and education rights, children born out of wedlock, albinos and those pertaining to the Batwa minority and taken into families under the kafala regime", - "values": [ - "Human rights education and training", - "Minorities", - "Rights of the Child", - "Women's rights" - ] - }, - { - "text": "Free all persons arrested as a result of their political opinion or because they took part in peaceful demonstrations, and ensure that charges against them are dismissed ", - "values": [ - "Freedom of association and peaceful assembly", - "Freedom of opinion and expression" - ] - }, - { - "text": "Take the necessary measures for the prompt and effective operationalization of the independent police complaints commission, including by providing sufficient financial and human resources", - "values": [ - "Justice" - ] - }, - { - "text": "Continue to work with the international community on protection of human rights, environment, disaster risk management, HIV-AIDS and capacity building.", - "values": [ - "Environment", - "HIV - Aids", - "Technical assistance and cooperation" - ] - }, - { - "text": "Take steps to protect victims of violence ", - "values": [ - "Other" - ] - }, - { - "text": "Take more proactive measures to further strengthen the human rights situation in the country and develop a mechanism to monitor and record human rights abuses ", - "values": [ - "Justice" - ] - }, - { - "text": "Engage constructively with international and regional partners to secure support for programs aimed at providing humanitarian assistance to migrants and refugees", - "values": [ - "Asylum-seekers - refugees", - "Migrants", - "Technical assistance and cooperation" - ] - }, - { - "text": "Further promote economic and social rights of minorities and vulnerable groups ", - "values": [ - "ESC rights - general", - "Minorities" - ] - }, - { - "text": "Take steps to criminalize hate crimes, including discrimination based on sexual orientation or gender identity, both in law and speech", - "values": [ - "Sexual Orientation and Gender Identity" - ] - }, - { - "text": "Undertake a comprehensive review of conditions in prisons and underline the importance of an independent, impartial complaint mechanism for the victims of torture", - "values": [ - "Detention", - "Torture and other CID treatment" - ] - }, - { - "text": "Continue taking temporary measures for granting citizenship to children of Bahraini women married to non-Bahrainis until the draft law amending the Nationality Law comes into effect ", - "values": [ - "Women's rights" - ] - }, - { - "text": "Provide adequate protection for witnesses of human rights violations", - "values": [ - "Justice" - ] - }, - { - "text": "Immediately release human rights defenders and other prisoners of conscience, particularly those detained and imprisoned for participating in peaceful demonstrations since March 2011", - "values": [ - "Detention", - "Freedom of association and peaceful assembly", - "Freedom of religion and belief", - "Human rights defenders" - ] - }, - { - "text": "Strengthen its efforts and measures aiming at combating violence against women and girls", - "values": [ - "Rights of the Child", - "Women's rights" - ] - }, - { - "text": "Fully investigate alleged elections irregularities and ensure proper due process is followed in all court challenges", - "values": [ - "Elections" - ] - }, - { - "text": "Fully abolish the death penalty ", - "values": [ - "Death penalty" - ] - }, - { - "text": "Take measures and comprehensive programmes aimed at developing sensitivities among cultures, creating the climate of mutual respect and expanding protection against all forms of discrimination, including profiling on the basis of race, religions or national origin", - "values": [ - "Freedom of religion and belief", - "Minorities", - "Racial discrimination" - ] - }, - { - "text": "Tackle discrimination against the Muslim community and insults against Islamic sanctities and allow all Muslims to practise Islam in accordance with their religious beliefs, without Government interference or approval ", - "values": [ - "Freedom of religion and belief", - "Minorities", - "Racial discrimination" - ] - }, - { - "text": "Make permanent the "pilot" requirement to include persons of both sexes in each list of candidates as it will apply to the national and departmental elections of 2014-2015 ", - "values": [ - "Elections", - "Women's rights" - ] - }, - { - "text": "Take concrete steps to combat impunity with respect to human rights abuses committed by security forces, including dozos, by increasing governmental oversight of their operations, investigating credible allegations, and prosecuting cases where appropriate", - "values": [ - "Human rights violations by state agents", - "Impunity" - ] - }, - { - "text": "Condemn discrimination based on ethnic origin and language in employment and take active measures to prosecute such cases", - "values": [ - "Labour", - "Racial discrimination" - ] - }, - { - "text": "Adopt legislation to guarantee the fulfilment of the collective rights of the indigenous population and Afro-Ecuadoreans, so as to increase affirmative actions in favours of racial and gender equality ", - "values": [ - "Indigenous peoples", - "Minorities", - "Racial discrimination", - "Women's rights" - ] - }, - { - "text": "Ensure transparency and impartiality in the appointment process of judges, implementing clear procedures and objective criteria and ensure that judicial staff are not subject to political interference", - "values": [ - "Justice" - ] - }, - { - "text": "Ratify the ICCPR, ICESCR, CAT, Convention for the Protection of All Persons from Enforced Disappearance (CPED), CERD, the Rome Statute and the 1951 Convention relating to the Status of Refugees", - "values": [ - "International instruments" - ] - }, - { - "text": "Enhance efforts to fight all forms of discrimination against women by ensuring effective implementation of the existing legislation, by implementing a policy of equal work for equal pay, by developing a comprehensive national strategy to facilitate equal access of girls and women to all levels and fields of education", - "values": [ - "Right to education", - "Rights of the Child", - "Women's rights" - ] - }, - { - "text": "Sign and ratify CAT, ICCPR, CED and CRPD", - "values": [ - "CP rights - general", - "Disabilities", - "Enforced disappearances", - "International instruments", - "Torture and other CID treatment" - ] - }, - { - "text": "Put an end to all forms of arbitrary detention, in conformity with the provisions of the International Covenant on Civil and Political Rights and release all prisoners, whose sentence has been extended, without a fair trial, beyond their initial sentence ", - "values": [ - "Detention", - "International instruments" - ] - }, - { - "text": "Adopt a law to prohibit female genital mutilation ", - "values": [ - "Rights of the Child", - "Torture and other CID treatment", - "Women's rights" - ] - }, - { - "text": "Continue promoting and protecting the rights of women through the adoption of adequate laws and the introduction of institutional mechanisms ", - "values": [ - "Women's rights" - ] - }, - { - "text": "Sign and ratify the Convention on the Elimination of All Forms of Discrimination against Women (CEDAW), adopt national plans to combat violence against women, particularly female genital mutilation, and promote equal opportunities for men and women", - "values": [ - "International instruments", - "Women's rights" - ] - }, - { - "text": "Noting the challenge presented to Malta's resources by irregular migration, the Government of Malta nonetheless should continue enhancing efforts to ensure that human rights of migrants are protected", - "values": [ - "Migrants" - ] - }, - { - "text": "Step up efforts to combat crime to work on national plan of action against human trafficking and to prevent sexual slavery and violence in the family", - "values": [ - "Trafficking" - ] - }, - { - "text": "Catch up its delay in the preparation of its initial and periodic reports to be submitted to the various Treaty Bodies", - "values": [ - "Treaty bodies" - ] - }, - { - "text": "Continue ensuring the enjoyment of the right to food and food security for all ", - "values": [ - "Right to food" - ] - }, - { - "text": "Continue efforts to improve the status of women in society and promote gender equality at all levels, thereby enhancing the contribution of women to the development process ", - "values": [ - "Women's rights" - ] - }, - { - "text": "Ensure the effective implementation of the UN Declaration on Human Rights Defenders and improve the protection of human rights defenders", - "values": [ - "International instruments" - ] - }, - { - "text": "Investigate the involvement of the paramilitary Karuna Group of abducting children for use as soldiers", - "values": [ - "International humanitarian law", - "Rights of the Child" - ] - }, - { - "text": "Implement the UN Rules for the Treatment of Women Prisoners and Non-Custodial Measures for Women Offenders, otherwise known as the "Bangkok Rules" and seek appropriate assistance in its implementation from relevant UN agencies in order to further improve treatment of female offenders ", - "values": [ - "Detention", - "Technical assistance and cooperation", - "Women's rights" - ] - }, - { - "text": "Continue pursuing the promotion of human rights, particularly through the consolidation of democratic institutions, freedom of expression, the protection of women, and assistance to indigenous and Afro-Honduran peoples ", - "values": [ - "Freedom of opinion and expression", - "Indigenous peoples", - "Minorities", - "Women's rights" - ] - }, - { - "text": "Continue taking measures to further strengthen its education and health systems", - "values": [ - "Right to education", - "Right to health" - ] - }, - { - "text": "Extend a standing invitation to all HRC Special Procedures", - "values": [ - "Special procedures" - ] - }, - { - "text": "Establish an adequate time frame and a transparent follow-up mechanism for an accelerated implementation of the recommendations by the Independent Commission of Inquiry ", - "values": [ - "Justice" - ] - }, - { - "text": "Fully implement the Domestic Violence Act and ensure the effective functioning of DOVVSU", - "values": [ - "Rights of the Child", - "Women's rights" - ] - }, - { - "text": "Take all measures necessary to ensure full respect for freedom of expression, including freedom of the press, ensuring that no persons are deprived of their liberty solely for having exercised their freedom of expression, their right to peaceful assembly or their right to take part in the Government of their country ", - "values": [ - "Freedom of association and peaceful assembly", - "Freedom of opinion and expression", - "Freedom of the press" - ] - }, - { - "text": "Step up efforts aimed at combating FGM, inter alia by improving the monitoring mechanism, and fighting against the stereotypes and the culture of no-reporting, also through awareness-raising campaigns targeted to communities as well as individuals ", - "values": [ - "Human rights education and training", - "Rights of the Child", - "Torture and other CID treatment", - "Women's rights" - ] - }, - { - "text": "Ensure that the recently adopted law on domestic violence is in full compliance with international standards, and to raise the awareness of legal officials regarding the need to act against violence against women within the family", - "values": [ - "Rights of the Child", - "Women's rights" - ] - }, - { - "text": "Develop concrete measures to enhance and monitor the level of access and quality of health-care services for women", - "values": [ - "Right to health", - "Women's rights" - ] - }, - { - "text": "Continue harmonizing national legislation with the Constitution and international human rights norms", - "values": [ - "International instruments" - ] - }, - { - "text": "Consider ratifying ILO Convention N. 169 ", - "values": [ - "Indigenous peoples", - "International instruments" - ] - }, - { - "text": "Provide adequate budget to existing human rights promotion programs and strengthen their practical application", - "values": [ - "General" - ] - }, - { - "text": "Comply with obligations under international human rights and humanitarian law, and ensure the rights to health, education, work and protection of family rights in the West Bank, including East Jerusalem, the Gaza Strip and the Golan Heights", - "values": [ - "International humanitarian law", - "International instruments", - "Labour", - "Right to education", - "Right to health" - ] - }, - { - "text": "Implement measures to reduce violence against women, including domestic violence, spousal rape and female genital mutilation (FGM)", - "values": [ - "Rights of the Child", - "Torture and other CID treatment", - "Women's rights" - ] - }, - { - "text": "Accede or ratify the following international instruments: International Convention for the Protection of All Persons from Enforced Disappearance, Convention on the Elimination of All Forms of Discrimination against Women, Convention against Torture and Other Cruel, Inhuman or Degrading Treatment or Punishment and the Palermo Protocol to Prevent, Suppress and Punish Trafficking in Persons, Especially Women and Children", - "values": [ - "Enforced disappearances", - "International instruments", - "Torture and other CID treatment", - "Trafficking", - "Women's rights" - ] - }, - { - "text": "Continue its cooperation with the international community and reinforce the role of human rights defenders so that civil society, in particular women, can participate actively in the electoral campaign and in the vote", - "values": [ - "Civil society", - "Human rights defenders", - "Women's rights" - ] - }, - { - "text": "Make the necessary efforts to repatriate foreigners who were forcibly held in the territory of the Democratic People's Republic of Korea and provide all information to the authorities and relatives about the whereabouts of these persons", - "values": [ - "Enforced disappearances" - ] - }, - { - "text": "Create an Ombudsman for the issues of national minorities ", - "values": [ - "Minorities", - "National Human Rights Institution" - ] - }, - { - "text": "Take further measures against racism and extremism and encourage peaceful co-existence between different ethnic groups", - "values": [ - "Minorities", - "Racial discrimination" - ] - }, - { - "text": "Continue the efforts to combat and prevent discrimination under any ground", - "values": [ - "Other" - ] - }, - { - "text": "Continue the work undertaken for the adoption of a new criminal code which guarantees the independence of the judicial system and the holding of fair and just trials", - "values": [ - "Justice" - ] - }, - { - "text": "Ensure a supported decision-making mechanism for people with disabilities", - "values": [ - "Disabilities" - ] - }, - { - "text": "Take administrative and legal measures against perpetrators of racially motivated acts, targeting the Roma, Sinti, migrants and Muslims", - "values": [ - "Freedom of religion and belief", - "Migrants", - "Minorities", - "Racial discrimination" - ] - }, - { - "text": "Step up efforts to ensure ratification of international instruments relating to human rights to which it is not yet a party ", - "values": [ - "International instruments" - ] - }, - { - "text": "Develop a strategy to effectively combat the public expression of racial intolerance ", - "values": [ - "Racial discrimination" - ] - }, - { - "text": "Consolidate its achievements in the human rights field and continue to reinforce its efforts to promote good governance, democracy and rule of law", - "values": [ - "Justice" - ] - }, - { - "text": "Adopt time-bound measures to increase access for Roma children and children with disabilities to inclusive education in mainstream schools.", - "values": [ - "Minorities", - "Right to education", - "Rights of the Child" - ] - }, - { - "text": "Take effective measures to accelerate the consolidation of property rights ", - "values": [ - "Right to housing" - ] - }, - { - "text": "Ratify the Optional Protocol to the Convention on the Rights of the Child on the involvement of children in armed conflict", - "values": [ - "International humanitarian law", - "International instruments", - "Rights of the Child" - ] - }, - { - "text": "Lift the reservations to article 29 (1) of the Convention on the Elimination of All Forms of Discrimination against Women (CEDAW) ", - "values": [ - "International instruments", - "Women's rights" - ] - }, - { - "text": "Revise the Criminal Procedure Code in order to strengthen the role of defence lawyers and extend the power of investigative judges in criminal proceedings", - "values": [ - "Justice" - ] - }, - { - "text": "Ensure that further steps are taken to address anti-discrimination issues and ensure that the National Plan of Action for Equality addresses all areas of the Convention on the Elimination of All Forms of Discrimination against Women", - "values": [ - "International instruments", - "Women's rights" - ] - }, - { - "text": "Include women's rights in the new Constitution, including legislation on measures to eliminate all forms of violence against women ", - "values": [ - "Women's rights" - ] - }, - { - "text": "Continue to step up its efforts to integrate the human rights approach in the study plans and programmes of the national education system ", - "values": [ - "Right to education" - ] - }, - { - "text": "Act on its previous commitment and establish a national preventative mechanism, as defined under OPCAT, and ensure the allocation of adequate resources for its functioning", - "values": [ - "Detention", - "International instruments", - "Torture and other CID treatment", - "UPR process" - ] - }, - { - "text": "Envisage increasing the budget allocation to the Office of the Ombudsman in order to enable it to efficiently investigate human rights matters, and create a National Human Rights Institution in line with the Paris Principles ", - "values": [ - "National Human Rights Institution" - ] - }, - { - "text": "Appoint an Ombudsman and ensure that the institution complies fully with the Paris Principles", - "values": [ - "National Human Rights Institution" - ] - }, - { - "text": "Expand programmes to eliminate the worst forms of child labour to reach more children in agriculture and children exploited in prostitution ", - "values": [ - "Labour", - "Rights of the Child" - ] - }, - { - "text": "Elaborate a national plan of action on children's rights in the juvenile justice system", - "values": [ - "Justice", - "Rights of the Child" - ] - }, - { - "text": "Agree to the requests for a visit by the Special Rapporteur on the situation of human rights ", - "values": [ - "Special procedures" - ] - }, - { - "text": "Revise its Penal Code so as to criminalize all acts of rape without exception and irrespective of the marital status and the gender of the victim ", - "values": [ - "Rights of the Child", - "Women's rights" - ] - }, - { - "text": "Complete the process of full alignment of its national legislation with all obligations under the Rome Statute of the International Criminal Court and ratify the Agreement on Privileges and Immunities of the Court", - "values": [ - "International instruments", - "Justice" - ] - }, - { - "text": "Ratify ILO Convention No. 189 ", - "values": [ - "International instruments", - "Labour" - ] - }, - { - "text": "Extend a standing invitation to all special procedures as soon as possible.", - "values": [ - "Special procedures" - ] - }, - { - "text": "Create and ensure an enabling environment for free and independent media ", - "values": [ - "Freedom of the press" - ] - }, - { - "text": "Take concrete measures to enhance the participation of women in political and public life, including in efforts for conflict resolution and state building", - "values": [ - "Women's rights" - ] - }, - { - "text": "Accede to and fully align its national legislation with all the obligations under the Rome Statute of the ICC", - "values": [ - "International instruments", - "Justice" - ] - }, - { - "text": "Deepen its actions in fighting against child prostitution and trafficking of minors ", - "values": [ - "Rights of the Child", - "Trafficking" - ] - }, - { - "text": "Take necessary action to implement its commitment to extend standing invitations to the Special Procedures of the Human Rights Council ", - "values": [ - "Special procedures" - ] - }, - { - "text": "Make further efforts to strengthen the capacity of human rights institutions", - "values": [ - "National Human Rights Institution" - ] - }, - { - "text": "Consider the possibility of signing and-or ratifying the Convention on the Rights of Persons with Disabilities", - "values": [ - "Disabilities", - "International instruments" - ] - }, - { - "text": "Intensify the efforts to not allow, in practice, the use as evidence confessions obtained under the use of torture or by other illegal methods", - "values": [ - "Torture and other CID treatment" - ] - }, - { - "text": "Extend a standing invitation to all the special procedures of the Human Rights Council ", - "values": [ - "Special procedures" - ] - }, - { - "text": "Strengthen policies and measures to address incidents of discrimination perpetuated against indigenous and Afro-Peruvian women, especially in relation to access to education, employment and health-care services", - "values": [ - "Indigenous peoples", - "Minorities", - "Racial discrimination", - "Right to education", - "Right to health" - ] - }, - { - "text": "Stop arbitrary detention and release all those unfairly and indiscriminately arrested, as previously recommended", - "values": [ - "Detention", - "UPR process" - ] - }, - { - "text": "Adopt appropriate measures to counter discrimination of LGBT people and to develop policies in order to integrate existing legislation against discrimination at various societal levels in Romania", - "values": [ - "Sexual Orientation and Gender Identity" - ] - }, - { - "text": "Take measures to reduce gender imbalance in the legislative and executive branches of Government", - "values": [ - "Women's rights" - ] - }, - { - "text": "Study the possibility of ratifying the International Convention on the Elimination of All Forms of Racial Discrimination", - "values": [ - "International instruments", - "Racial discrimination" - ] - }, - { - "text": "Take a human rights approach to issues of race, citizenship and religion to foster an inclusive society in which all are equally protected ", - "values": [ - "Other", - "Statelessness and the right to nationality" - ] - }, - { - "text": "Continue efforts to safeguard the rights of all segments of society, including foreigners by addressing all forms of hatred and discrimination ", - "values": [ - "Racial discrimination" - ] - }, - { - "text": "Implement an action plan on domestic violence and sexual violence against women, including immigrants and those from minority groups", - "values": [ - "Migrants", - "Minorities", - "Rights of the Child", - "Women's rights" - ] - }, - { - "text": "Accelerate the improvement of the judicial, police, military and prison systems in line with international human rights standards and to investigate all allegations of extrajudicial, summary or arbitrary killings and enforced disappearances and follow-up according to justice requirements", - "values": [ - "Detention", - "Extrajudicial executions", - "International instruments", - "Justice" - ] - }, - { - "text": "Address concerns about family reunification and the best interests of the child in its legislation on refugees", - "values": [ - "Asylum-seekers - refugees", - "Rights of the Child" - ] - }, - { - "text": "Ensure effective implementation of the National Roma Integration Strategy (2012-2020), including by identifying lessons learned and best practices in the implementation of the first phase", - "values": [ - "Minorities" - ] - }, - { - "text": "Continue efforts aimed at ensuring the availability and accessibility of the education system to all children and improvement of school's infrastructure", - "values": [ - "Right to education", - "Rights of the Child" - ] - }, - { - "text": "Undertake specific measures to ensure the implementation of international United Nations and African human rights conventions, and develop and streamline domestic legislation ensuring the constitutional rights of citizens ", - "values": [ - "International instruments" - ] - }, - { - "text": "Effectively address the repressive effect of civil society monitoring procedures and anti-terrorism legislation on the operation of human rights defenders.", - "values": [ - "Civil society", - "Counter-terrorism", - "Human rights defenders" - ] - }, - { - "text": "Take effective measures to ensure a greater political representation and participation of women in public life as well as to address the issue of wage gap between men and women", - "values": [ - "Women's rights" - ] - }, - { - "text": "Recommended that Pakistan share its experience in poverty reduction and mitigation of effects of food inflation.", - "values": [ - "Poverty", - "Right to food" - ] - }, - { - "text": "Ensure the independence of the Human Rights Commission, including through providing regular budgeting for the Commission, and proceed to the immediate appointment of its members ", - "values": [ - "National Human Rights Institution" - ] - }, - { - "text": "Implement a comprehensive legal and policy framework to end practices which are discriminatory and lead to violence against women and girls, including witchcraft killings, rape, domestic violence and practices related to customary ownership and inheritance of land ", - "values": [ - "Right to land", - "Rights of the Child", - "Women's rights" - ] - }, - { - "text": "Strengthen measures to combat more effectively all forms of discrimination and violence against women, taking into account that in this matter, customs and traditions are often the main obstacle to overcome, in order to achieve the objectives", - "values": [ - "Women's rights" - ] - }, - { - "text": "Put forward its best efforts to ensure women's empowerment, representation and advancement, especially in the public sector ", - "values": [ - "Women's rights" - ] - }, - { - "text": "Take all necessary measures to facilitate access for victims to justice and ensure that they obtain redress", - "values": [ - "Justice" - ] - }, - { - "text": "Take targeted measures to fight the use by political parties or their representatives of statements inciting racial hatred and xenophobia ", - "values": [ - "Racial discrimination" - ] - }, - { - "text": "Ensure universal access to quality reproductive and sexual health services, including contraception services, especially to women in rural areas and those living with HIV/AIDS", - "values": [ - "HIV - Aids", - "Right to health", - "Women's rights" - ] - }, - { - "text": "Provide human rights education and training to police officers corrections officers and judicial staff aimed at the protection of women, persons of minority sexual orientation and gender identity and national minorities ", - "values": [ - "Human rights education and training", - "Minorities", - "Sexual Orientation and Gender Identity", - "Women's rights" - ] - }, - { - "text": "Address problems in applying the Violence against Women Act within the courts, towards effectively criminalizing violence against women ", - "values": [ - "Women's rights" - ] - }, - { - "text": "Adopt legislation expanding the verification of personal backgrounds for all acquisitions of firearms", - "values": [ - "Public security" - ] - }, - { - "text": "Undertake extensive advocacy campaigns to encourage greater women's participation in the political process at both the national and local levels ", - "values": [ - "Women's rights" - ] - }, - { - "text": "That relevant laws, including the Public Order Act and the Public Entertainment and Meeting Act not be invoked to curtail the right to freedom of peaceful assembly, including that of civil society ", - "values": [ - "Civil society", - "Freedom of association and peaceful assembly" - ] - }, - { - "text": "Continue working on establishing a national human rights institution, in accordance with the Paris Principles", - "values": [ - "National Human Rights Institution" - ] - }, - { - "text": "Ensure respect for procedural guarantees, including access to a lawyer and an interpreter, for migrants that are detected entering irregularly the autonomous cities", - "values": [ - "Migrants" - ] - }, - { - "text": "Further strengthen its efforts to combat gender discrimination, especially in the labour market ", - "values": [ - "Women's rights" - ] - }, - { - "text": "Take actions to combat discrimination and prejudice by promoting intercultural dialogue in cooperation with the media to prevent racist statements, hate speech and attacks against ethnic minorities and promote respect for cultural diversity ", - "values": [ - "Freedom of religion and belief", - "Minorities", - "Racial discrimination" - ] - }, - { - "text": "Enact comprehensive reforms to address sexual violence and all acts of violence against women, including "honour" crimes, child marriage, female feticide and female infanticide, and to remedy limitations in the definition of rape and the medico forensic procedures adopted for rape cases ", - "values": [ - "Rights of the Child", - "Torture and other CID treatment" - ] - }, - { - "text": "Strengthen measures to promote the rights of indigenous populations of the country, particularly, with respect to their access to the citizenship, land, justice and education ", - "values": [ - "Indigenous peoples", - "Justice", - "Right to education", - "Right to land" - ] - }, - { - "text": "Continue with its efforts to promote and protect human rights and freedoms ", - "values": [ - "General" - ] - }, - { - "text": "Advance in measures of assistance and promotion of the rights of migrants, refugees and asylum seekers, in compliance with current international standards", - "values": [ - "Asylum-seekers - refugees", - "Migrants" - ] - }, - { - "text": "Improve the "Phoenix Programme" in order to facilitate the social integration of women upon their release from prison", - "values": [ - "Detention", - "Women's rights" - ] - }, - { - "text": "Continue consolidating the successful measures established to ensure food security and the welfare of its people ", - "values": [ - "Right to food" - ] - }, - { - "text": "Urgently ratify and implement the Istanbul Convention on preventing and combating violence against women and domestic violence", - "values": [ - "International instruments", - "Rights of the Child", - "Women's rights" - ] - }, - { - "text": "Continue to promote and protect the enjoyment of fundamental freedoms and rights of its citizens in the areas of education and health among others without discrimination", - "values": [ - "Right to education", - "Right to health" - ] - }, - { - "text": "Take further steps to address human rights abuses against women and children, especially domestic violence, forced and early marriages", - "values": [ - "Rights of the Child", - "Women's rights" - ] - }, - { - "text": "Continue its commitment to working within the Organisation of Eastern Caribbean States (OECS) on initiatives such as the OECS Family Law and Domestic Violence Legal and Judicial Reform Project", - "values": [ - "Rights of the Child", - "Women's rights" - ] - }, - { - "text": "Review its restrictive interpretation of therapeutic abortion and decriminalizing abortion in cases of rape, incest and sever fetal impairment", - "values": [ - "Right to health", - "Women's rights" - ] - }, - { - "text": "Suspend the duties of all officers of security forces implicated in cases of enforced disappearance, extrajudicial execution or torture, and ensure that impartial and credible inquiries are carried out so that those responsible for such acts are brought to justice ", - "values": [ - "Enforced disappearances", - "Extrajudicial executions", - "Human rights violations by state agents", - "Torture and other CID treatment" - ] - }, - { - "text": "Revise section 375 of the Penal Code so as to criminalize all acts of rape without exception and irrespective of the marital status and gender of the victim ", - "values": [ - "Rights of the Child", - "Women's rights" - ] - }, - { - "text": "Consider ratification of the International Covenant on Civil and Political Rights and its Optional Protocol", - "values": [ - "CP rights - general", - "Death penalty", - "International instruments" - ] - }, - { - "text": "Take measures to put an end to the culture of impunity of perpetrators of torture and ill-treatment and take among others concrete steps to reform the justice system to guarantee its independence and to promptly investigate allegations of torture and ill-treatment and bring criminal proceedings against those responsible ", - "values": [ - "Impunity", - "Justice", - "Torture and other CID treatment" - ] - }, - { - "text": "Investigate all attacks and hate speech against members of religious minorities, prosecute perpetrators and take steps to prevent reoccurrence", - "values": [ - "Freedom of religion and belief", - "Racial discrimination" - ] - }, - { - "text": "Continue in the successful policy of combating the trafficking of persons at the national level and participate in such efforts at the international level ", - "values": [ - "Trafficking" - ] - }, - { - "text": "Continue efforts for the strengthening of equality between men and women, combating trafficking in human beings and the protection of the rights of national minorities", - "values": [ - "Minorities", - "Trafficking", - "Women's rights" - ] - }, - { - "text": "Implement programmes for human rights education and awareness-raising against discrimination, as well as for the promotion of the rights of women, children and other vulnerable groups", - "values": [ - "Human rights education and training", - "Rights of the Child", - "Women's rights" - ] - }, - { - "text": "Continue to reform the judicial and security systems", - "values": [ - "Justice" - ] - }, - { - "text": "Ensure the independence of the National Human Rights Commission", - "values": [ - "National Human Rights Institution" - ] - }, - { - "text": "Strengthen the cooperation both at national and international levels in fighting against human trafficking equally for the purposes of sexual exploitation and forced labour", - "values": [ - "Labour", - "Trafficking" - ] - }, - { - "text": "Further continue in fighting harmful traditional practices", - "values": [ - "Torture and other CID treatment" - ] - }, - { - "text": "Ensure further protection to refugees and asylum seekers", - "values": [ - "Asylum-seekers - refugees" - ] - }, - { - "text": "Deploy further efforts to prevent child labour and to avoid the drop out from school of minors, with particular reference to the herd boys, ensuring a full implementation of the Education Act of 2010", - "values": [ - "Labour", - "Right to education", - "Rights of the Child" - ] - }, - { - "text": "Afford sufficient legal safeguards so that complaints by foreigners do not have negative consequences regarding their stay in the country, in order to implement penal provisions relative to acts of xenophobia and racial discrimination and to investigate and effectively sanction human rights violations committed against foreigners or persons belonging to minorities", - "values": [ - "Migrants", - "Minorities", - "Racial discrimination" - ] - }, - { - "text": "Call on the international community to assist its economy and provide support to it", - "values": [ - "Technical assistance and cooperation" - ] - }, - { - "text": "Strengthen measures taken to ensure access to education and healthcare within the available means ", - "values": [ - "Right to education", - "Right to health" - ] - }, - { - "text": "Take appropriate and efficient measures with the view to ending the practice of female genital mutilation ", - "values": [ - "Rights of the Child", - "Torture and other CID treatment", - "Women's rights" - ] - }, - { - "text": "Consider reviewing security laws to ensure their conformity with international human rights standards ", - "values": [ - "International instruments", - "Public security" - ] - }, - { - "text": "Remain committed to promoting human rights and engage in a continuous and constructive dialogue with the leading human rights bodies and the international community.", - "values": [ - "General" - ] - }, - { - "text": "Conduct independent investigations into allegations of torture as well as violations of the rights of human rights defenders and independent journalists, including attacks against their lives and their freedom of movement, and take the necessary protection measures ", - "values": [ - "Freedom of movement", - "Freedom of the press", - "Human rights defenders", - "Torture and other CID treatment" - ] - }, - { - "text": "Adopt all necessary measures, in accordance with article 7, paragraph 1, of the Convention on the Rights of the Child, to guarantee the registration of all girls and boys at birth in Solomon Islands, as well as for those persons who have not been registered at birth ", - "values": [ - "International instruments", - "Rights of the Child", - "Statelessness and the right to nationality" - ] - }, - { - "text": "Consider a moratorium on the death penalty", - "values": [ - "Death penalty" - ] - }, - { - "text": "Continue combating acts of xenophobia against migrants, refugees and asylum-seekers ", - "values": [ - "Asylum-seekers - refugees", - "Migrants", - "Racial discrimination" - ] - }, - { - "text": "Continue strengthening the legal framework, including by fully implementing the ratified international human rights instruments, including CEDAW and CRPD", - "values": [ - "Disabilities", - "International instruments", - "Women's rights" - ] - }, - { - "text": "Further strengthen its efforts to enforce the \u201cBoy Bernardo Act\u201c and promote positive, non-violent and participatory forms of child-rearing and discipline", - "values": [ - "Rights of the Child" - ] - }, - { - "text": "Expeditiously and fully implement the 1997 Constitution and the rights that it enshrines in order to end the 23 years of the one-party-State-led transitional period and seek technical assistance from regional bodies and the international community ", - "values": [ - "Freedom of association and peaceful assembly", - "Technical assistance and cooperation" - ] - }, - { - "text": "Continue building the capacity of health and social services to provide care for children with disabilities ", - "values": [ - "Disabilities", - "ESC rights - general", - "Right to health", - "Rights of the Child" - ] - }, - { - "text": "Prohibit all forms of corporal punishment of children in all settings ", - "values": [ - "Rights of the Child", - "Torture and other CID treatment" - ] - }, - { - "text": "Take all appropriate measures to address violence against indigenous women ", - "values": [ - "Indigenous peoples", - "Women's rights" - ] - }, - { - "text": "Reform the laws that hamper the exercise of freedom of expression to ensure that they are in line with international human rights norms", - "values": [ - "Freedom of opinion and expression", - "International instruments" - ] - }, - { - "text": "Guarantee respect for international humanitarian law and human rights and the protection of the civilian population in the context of military actions", - "values": [ - "International humanitarian law" - ] - }, - { - "text": "Adopt measures and take steps aimed at raising public awareness to fight against the climate of homophobia that prevails in the country", - "values": [ - "Human rights education and training", - "Sexual Orientation and Gender Identity" - ] - }, - { - "text": "Continue efforts for the reinforcement of the Rule of Law, the respect and the actual implementation of human rights throughout the country, in particular through the completion of the existing reform process in the field of justice, territorial administration, the civil registry, the Civil Code and the Family Code.", - "values": [ - "Justice" - ] - }, - { - "text": "Consider the accession to the Second Optional Protocol to the International Covenant on Civil and Political Rights, aiming at the abolition of the death penalty", - "values": [ - "Death penalty", - "International instruments" - ] - }, - { - "text": "Sign and ratify the Council of Europe Convention on Preventing and Combating Violence against Women and Domestic Violence (Istanbul Convention) ", - "values": [ - "International instruments", - "Rights of the Child", - "Women's rights" - ] - }, - { - "text": "Establish an independent national human rights institution in line with the Paris Principles and provide it with adequate human and financial resources", - "values": [ - "National Human Rights Institution" - ] - }, - { - "text": "Pursue and finalize the ratification process of the Optional Protocol to the Convention on the Elimination of All Forms of Discrimination against Women", - "values": [ - "International instruments", - "Women's rights" - ] - }, - { - "text": "It also informed about Hungary's intention to submit mid- term report to recap the implementation of the accepted recommendations.", - "values": [ - "UPR process" - ] - }, - { - "text": "Consider the possibility of ratifying the 1951 Convention relating to the Status of Refugees and its 1967 Protocol without reservations", - "values": [ - "Asylum-seekers - refugees", - "International instruments" - ] - }, - { - "text": "Take the necessary steps to ensure that the National Council on Gender Issues becomes fully operational", - "values": [ - "Women's rights" - ] - }, - { - "text": "Continue conducting awareness-raising activities on human rights, especially rights of women, children, minorities and migrants, to law enforcement officers", - "values": [ - "Human rights education and training", - "Migrants", - "Minorities", - "Rights of the Child", - "Women's rights" - ] - }, - { - "text": "Seek the international assistance for strengthening the capabilities of the State structures and security institutions, while continuing its measures in this regard ", - "values": [ - "Technical assistance and cooperation" - ] - }, - { - "text": "Ensure the protection of human rights defenders operating in the country, in accordance with the United Nations Declaration on Human Rights Defenders, to spare them intimidation and harassment", - "values": [ - "Human rights defenders", - "International instruments" - ] - }, - { - "text": "Take further concrete measures to enhance women's access to health care, in particular sexual and reproductive services, as recommended by the Committee on the Elimination of Discrimination against Women, among others.", - "values": [ - "Treaty bodies", - "Women's rights" - ] - }, - { - "text": "Strengthen its partnership with the international community with a view to improving public health of the country ", - "values": [ - "Right to health" - ] - }, - { - "text": "Continue its efforts towards achieving gender equality and the attainment of the MDGs for all Algerians", - "values": [ - "Development", - "Women's rights" - ] - }, - { - "text": "Fast-track the issuance of newly proposed laws such as the child rights law, and the laws regulating centres and institutions for disabled persons", - "values": [ - "Disabilities", - "Rights of the Child" - ] - }, - { - "text": "Consider amending the legislation regarding the transmission of nationality to children of Bahamian mothers born abroad and foreign spouses in order to ensure full and effective equality of rights between men and women in this area", - "values": [ - "Rights of the Child", - "Women's rights" - ] - }, - { - "text": "Implement policies aimed primarily at judicial and police officers, which combat stereotypes that normalize violence against women, in order to create a proper atmosphere for victims to file complaints on such acts ", - "values": [ - "Human rights education and training", - "Women's rights" - ] - }, - { - "text": "Implement the European Committee for the Prevention of Torture and Inhuman or Degrading Treatment or Punishment's recommendation on offering at least 4 m2 per prisoner in multi-occupancy cells", - "values": [ - "Detention", - "International instruments", - "Torture and other CID treatment" - ] - }, - { - "text": "Ratify soon the Council of Europe Convention on Preventing and Combating Violence against Women and Domestic Violence", - "values": [ - "Women's rights" - ] - }, - { - "text": "Continue to examine all potential risks of human rights violations which rejected asylum seekers may face when they are deported to other countries, especially in cases where asylum seekers\u2019 children are concerned", - "values": [ - "Asylum-seekers - refugees", - "Rights of the Child" - ] - }, - { - "text": "Continue ongoing efforts of the Government towards increased realization of the human rights of its people, including through poverty alleviation measures and investment in health and education", - "values": [ - "Poverty", - "Right to education", - "Right to health" - ] - }, - { - "text": "Continue its measures to address all forms of violence against women and girls.", - "values": [ - "Rights of the Child", - "Women's rights" - ] - }, - { - "text": "Ratify the Kampala amendments to the Rome Statute of the International Criminal Court as soon as possible", - "values": [ - "International instruments", - "Justice" - ] - }, - { - "text": "Continue its advocacy campaign to encourage greater participation by women in the political process at the national and local levels ", - "values": [ - "Women's rights" - ] - }, - { - "text": "Take appropriate steps to improve the treatment of detainees", - "values": [ - "Detention" - ] - }, - { - "text": "Continue the investigation of human rights violations, particularly enforced disappearances ", - "values": [ - "Enforced disappearances" - ] - }, - { - "text": "Study the possibility of ratifying the following international instruments: the International Covenant on Civil and Political Rights, the International Covenant on Economic, Social and Cultural Rights, the Convention against Torture and the International Convention for the Protection of All Persons from Enforced Disappearance, as previously recommended", - "values": [ - "CP rights - general", - "ESC rights - general", - "Enforced disappearances", - "International instruments", - "Torture and other CID treatment", - "UPR process" - ] - }, - { - "text": "Ensure that the perpetrators of human rights violations, both past and present, are brought to justice in proceedings which meet international standards of fairness", - "values": [ - "Justice" - ] - }, - { - "text": "Strengthen activities aimed at combating discrimination on any grounds and in all spheres of life", - "values": [ - "Other" - ] - }, - { - "text": "Intensify its efforts to ratify the Optional Protocol to the Convention on the Elimination of All Forms of Discrimination against Women", - "values": [ - "International instruments", - "Women's rights" - ] - }, - { - "text": "Further strengthen national programs to combat poverty and social exclusion in favour of the most vulnerable sectors of the population", - "values": [ - "Poverty" - ] - }, - { - "text": "Consider reviewing the eligibility requirements to the public welfare system, so that the basic human rights of immigrants, including the undocumented, are guaranteed, in particular access to health for women and children", - "values": [ - "Migrants", - "Right to health", - "Rights of the Child", - "Women's rights" - ] - }, - { - "text": "Take further measures for the promotion and protection of human rights, including those of migrants ", - "values": [ - "Migrants" - ] - }, - { - "text": "Take measures to improve working conditions in line with recommendations issued by the Committee on Economic, Social and Cultural Rights, including through the abolition of any kind of forced labour, elimination of fines for labour inactivity, and the abandonment of the widespread use of short-term working contracts", - "values": [ - "Labour", - "Treaty bodies" - ] - }, - { - "text": "Conduct an investigation, bring perpetrators to justice and provide reparation to the victims of sexual violence involving members of the armed forces ", - "values": [ - "Human rights violations by state agents" - ] - }, - { - "text": "Develop a national policy and further measures concerning disabled persons in order to give disabled children access to social and health services.", - "values": [ - "Disabilities", - "Rights of the Child" - ] - }, - { - "text": "Implement transparent and inclusive mechanisms of public consultations with civil society organizations on all issues mentioned above - i.e. gender equality, minority rights, redressing wartime crimes, inclusive quality education for minorities and discrimination against LGBT persons", - "values": [ - "Civil society", - "Justice", - "Minorities", - "Right to education", - "Sexual Orientation and Gender Identity", - "Women's rights" - ] - }, - { - "text": "Continue to improve the conditions of foreign workers ", - "values": [ - "Labour", - "Migrants" - ] - }, - { - "text": "Take all necessary steps to ensure prompt, impartial and transparent investigations into alleged unlawful killings and other abuses during anti-drug operations", - "values": [ - "Extrajudicial executions" - ] - }, - { - "text": "Implement action-oriented measures to strengthen protection and promotion of women's rights in the areas of health and combating violence against women", - "values": [ - "Women's rights" - ] - }, - { - "text": "Ensure full respect for freedom of expression and the press", - "values": [ - "Freedom of opinion and expression", - "Freedom of the press" - ] - }, - { - "text": "Consider ratifying CAT", - "values": [ - "International instruments", - "Torture and other CID treatment" - ] - }, - { - "text": "Repeal article 338 of the penal code, which criminalizes sexual acts between two consenting adults of the same sex", - "values": [ - "Sexual Orientation and Gender Identity" - ] - }, - { - "text": "Take additional measures to protect child victims of violence", - "values": [ - "Rights of the Child" - ] - }, - { - "text": "Adopt a comprehensive anti-discrimination law which would prohibit discrimination on any ground and establish mechanisms to ensure the principles of equality and non-discrimination, and legal remedies in cases of discrimination", - "values": [ - "Other" - ] - }, - { - "text": "Bring its legal framework on political parties into line with the recommendations of the Venice Commission of the Council of Europe and the relevant provisions of the European Convention of Human Rights ", - "values": [ - "Freedom of association and peaceful assembly" - ] - }, - { - "text": "Ratify the Convention on the Rights of Persons with Disabilities and align national legislation and practice with it", - "values": [ - "Disabilities", - "International instruments" - ] - }, - { - "text": "Continue the reform of the judicial system and strengthen legal and material safeguards for the establishment of an independent judiciary, in accordance with the international principles and standards adopted in this area ", - "values": [ - "Justice" - ] - }, - { - "text": "Continue efforts to sensitize the public to combat discrimination on all grounds online to ensure that all rights are respected", - "values": [ - "Other" - ] - }, - { - "text": "Set up a moratorium on all executions with a view to the final abolition of the death penalty", - "values": [ - "Death penalty" - ] - }, - { - "text": "Extend an invitation to the Special Rapporteur on the independence of judges and lawyers to visit Rwanda", - "values": [ - "Justice", - "Special procedures" - ] - }, - { - "text": "Set up a strategic oversight body, such as a commission on violence against women, to ensure greater coherence and more effective protection for women. ", - "values": [ - "Women's rights" - ] - }, - { - "text": "In order to further preserve and protect their local culture and national heritage, accede to the UNESCO Conventions on the Safeguarding of the Intangible Cultural Heritage and the Protection and Promotion of the Diversity of Cultural Expressions ", - "values": [ - "International instruments" - ] - }, - { - "text": "Continue to provide and ensure improved and easily accessible service delivery, especially to marginalized sections of the population", - "values": [ - "Other" - ] - }, - { - "text": "Decriminalize defamation and put in place safeguards ensuring that criticism of or reporting on the activities of state and regional authorities do not lead to persecution or harassment", - "values": [ - "Freedom of opinion and expression" - ] - }, - { - "text": "Take the necessary measures to ensure that the existing national legislation against torture and cruel and inhumane and degrading treatment incorporates the highest international standards in this area ", - "values": [ - "Torture and other CID treatment" - ] - }, - { - "text": "Accede to the Rome Statute of the International Criminal Court, so that the atrocities committed in the Syrian Arab Republic could be the subject of a rigorous and impartial exam by an independent court", - "values": [ - "International instruments", - "Justice" - ] - }, - { - "text": "Take additional measures to improve universal access to primary education ", - "values": [ - "Right to education" - ] - }, - { - "text": "Continue its policies in improving women's rights ", - "values": [ - "Women's rights" - ] - }, - { - "text": "Continue consolidating its successful educational programmes, which provide the whole population with free access to quality education for the purpose of developing an integrated education system based on the principles of accessibility and quality", - "values": [ - "Right to education" - ] - }, - { - "text": "Implement effectively the Law to Protect Family and Prevent Violence against Women", - "values": [ - "Women's rights" - ] - }, - { - "text": "Accede to the Protocol to Prevent, Suppress and Punish Trafficking in Persons, Especially Women and Children, supplementing the United Nations Convention against Transnational Organized Crime", - "values": [ - "International instruments", - "Rights of the Child", - "Trafficking", - "Women's rights" - ] - }, - { - "text": "Ratify the Convention relating to the Status of Stateless Persons and the Convention on the Reduction of Statelessness, with a view to finding a permanent solution to the legal status of Bidouns in Kuwait", - "values": [ - "International instruments", - "Minorities", - "Statelessness and the right to nationality" - ] - }, - { - "text": "Prosecute the perpetrators of forced displacement independently of other possible crimes and human rights violations, instead of considering it an accessory fact or a simple consequence of armed conflict.", - "values": [ - "Internally displaced persons" - ] - }, - { - "text": "Adopt measures that guarantee access to rights for all people returning to the country irrespective of the cessation of the condition of refugees", - "values": [ - "Asylum-seekers - refugees" - ] - }, - { - "text": "Speed up the process of adopting laws that coincide with treaties that Nigeria has recently ratified", - "values": [ - "International instruments" - ] - }, - { - "text": "Ensure provision and adequate and timely assistance, including judiciary assistance and interpreters, to victims of sexual exploitation, both women and children, or other gender-based violence, regardless of their nationality, race or origins", - "values": [ - "Minorities", - "Racial discrimination", - "Rights of the Child", - "Women's rights" - ] - }, - { - "text": "Continue its efforts to organise intensive courses for members of the public prosecutor office in the field of human rights, in line with the steps being made for the independence of the public prosecutor and to separate it from the police", - "values": [ - "Human rights education and training", - "Justice" - ] - }, - { - "text": "Strengthen the technical assistance so as to allow Mali to overcome its difficulties and improve the human rights situation in the country ", - "values": [ - "Technical assistance and cooperation" - ] - }, - { - "text": "Consider signing and ratifying the new Optional Protocol to the CRC on a communications procedure to further ensure the protection of children's rights ", - "values": [ - "International instruments", - "Rights of the Child" - ] - }, - { - "text": "Strengthen fair-trial safeguards, including the non-admissibility before the court of any evidence obtained through torture or ill treatment ", - "values": [ - "Justice", - "Torture and other CID treatment" - ] - }, - { - "text": "Strengthen programmes to combat food insecurity, improve nutrition and access to local food production through the development of the agricultural sector", - "values": [ - "Right to food" - ] - }, - { - "text": "Modify its legislation in such a way as to shift the burden of proof of the guilt of a person facing the death penalty to the prosecution instead of requesting the person to prove its own innocence ", - "values": [ - "Death penalty", - "Justice" - ] - }, - { - "text": "Consider ratifying CAT and OP-CAT, the International Convention on the Protection of the Rights of All Migrant Workers and Members of their Families (ICRMW), and the Protocol to Prevent Suppress and Punish Trafficking in Persons, Especially Women and Children (Palermo Protocol) ", - "values": [ - "Detention", - "International instruments", - "Labour", - "Migrants", - "Torture and other CID treatment", - "Trafficking" - ] - }, - { - "text": "Activate a negotiating process for a peaceful settlement ", - "values": [ - "International humanitarian law" - ] - }, - { - "text": "Intensify its efforts to ensure effective law enforcement for domestic violence against children and women, to bridge the gap between legislation and practice, along with enhancing awareness of victims' rights and training for public officers and legal professions", - "values": [ - "Human rights education and training", - "Rights of the Child", - "Women's rights" - ] - }, - { - "text": "Continue efforts regarding the rights of the child especially in relation to combating child trafficking", - "values": [ - "Rights of the Child", - "Trafficking" - ] - }, - { - "text": "Continue working for a reduction in female unemployment and the elimination of discrimination against women in the labour market and for achieving equality of opportunities", - "values": [ - "Women's rights" - ] - }, - { - "text": "Consider implementing the recommendations of UNHCR, human rights treaty bodies and special procedures with respect to asylum-seekers and irregular immigrants especially children ", - "values": [ - "Asylum-seekers - refugees", - "Migrants", - "Rights of the Child", - "Special procedures", - "Treaty bodies" - ] - }, - { - "text": "Take all the necessary steps to ensure the effective implementation of the Action Plan to halt child recruitment and other violations against children ", - "values": [ - "International humanitarian law", - "Rights of the Child" - ] - }, - { - "text": "Ratify the Protocol to the African Charter on Human and People's Rights on the Rights of Women in Africa ", - "values": [ - "Women's rights" - ] - }, - { - "text": "Establish early a national human rights institution in conformity with the Paris Principles", - "values": [ - "National Human Rights Institution" - ] - }, - { - "text": "Accede to the Convention against Torture and Other Cruel, Inhuman or Degrading Treatment or Punishment and its Optional Protocol", - "values": [ - "Detention", - "International instruments", - "Torture and other CID treatment" - ] - }, - { - "text": "Continue its aspirations to bring women into the mainstream of its national aspirations ", - "values": [ - "Women's rights" - ] - }, - { - "text": "Step up its efforts to protect women and girls from sexual violence in marriage", - "values": [ - "Rights of the Child", - "Women's rights" - ] - }, - { - "text": "Ensure the speedy enactment of the legislation to equip the Human Rights and Public Administration Commission with clear powers and adequate resources to ensure that it is able to work in an accessible, effective, independent and impartial manner", - "values": [ - "National Human Rights Institution" - ] - }, - { - "text": "With regard to extending a standing invitation to Human Rights Council special rapporteurs, the Congolese delegation reiterated its commitment to cooperating with United Nations bodies.", - "values": [ - "Special procedures", - "Treaty bodies", - "UPR process" - ] - }, - { - "text": "Adopt measures to comply with provisions of the new Constitution including on combating discrimination and ensuring equal participation in political and public affairs by all citizens", - "values": [ - "CP rights - general" - ] - }, - { - "text": "Remove the agriculture exemption in the Fair Labour Standards Act which would raise the age for harvesting and hazardous work for hired children taking care to distinguish between farm owner and farm worker children", - "values": [ - "Labour", - "Rights of the Child" - ] - }, - { - "text": "Allow independent international monitoring bodies unconditional access to detention facilities in order to perform their functions", - "values": [ - "Detention" - ] - }, - { - "text": "Permit the establishment of independent media outlets ", - "values": [ - "Freedom of the press" - ] - }, - { - "text": "Continue to expand its health insurance coverage to all citizens, including those in rural areas", - "values": [ - "Right to health" - ] - }, - { - "text": "Adopt public policies that protect against all forms of discrimination and violence based on sexual orientation and gender identity", - "values": [ - "Sexual Orientation and Gender Identity" - ] - }, - { - "text": "Continue cooperating with international human rights mechanisms to strengthen its institutional capacity in the defence and promotion of human rights ", - "values": [ - "General" - ] - }, - { - "text": "Draw up and implement a national plan of action on the implementation of recommendations made in the course of the UPR", - "values": [ - "UPR process" - ] - }, - { - "text": "Abolish the 2010 National Security Act ", - "values": [ - "Public security" - ] - }, - { - "text": "Encourage ratification of CRPD ", - "values": [ - "Disabilities", - "International instruments" - ] - }, - { - "text": "Maintain its policy of broadening and strengthening international cooperation in the sphere of human rights", - "values": [ - "Other" - ] - }, - { - "text": "Make operational in the nearest future the National Commission on Human Rights and the Ombudsman institution ", - "values": [ - "National Human Rights Institution" - ] - }, - { - "text": "Intensify efforts to eliminate all forms of practical discrimination against children ", - "values": [ - "Rights of the Child" - ] - }, - { - "text": "Revise penal legislation which criminalizes sexual orientation with a view to ensuring conformity with article 26 of the International Covenant on Civil and Political Rights ", - "values": [ - "International instruments", - "Sexual Orientation and Gender Identity" - ] - }, - { - "text": "Remove from the final version of the new Constitution all references to traditions or customary law in the field of family and private law which may be conducive to violations of human rights", - "values": [ - "Justice" - ] - }, - { - "text": "Step up measures in combating discrimination, xenophobia and related intolerance against persons belonging to religious and ethnic minorities, particularly Muslims", - "values": [ - "Freedom of religion and belief", - "Minorities", - "Racial discrimination" - ] - }, - { - "text": "Continue to address the problems relating to minority groups including Aboriginal peoples, Metis and African Canadians, as identified in the first cycle of the UPR ", - "values": [ - "Indigenous peoples", - "Minorities", - "UPR process" - ] - }, - { - "text": "Withdraw its reservations made to CEDAW ", - "values": [ - "International instruments", - "Women's rights" - ] - }, - { - "text": "Ensure the effective implementation of the Roma Integration Strategy 2015-2020, with particular attention to equal access to education, health, housing and employment", - "values": [ - "Labour", - "Minorities", - "Right to education", - "Right to health", - "Right to housing" - ] - }, - { - "text": "Continue its judicial reforms, including by strengthening the independence of the judiciary", - "values": [ - "Justice" - ] - }, - { - "text": "Play an active role to ensure inclusive and legitimate democracy in Zanzibar by supporting a reconciliation process in Zanzibar that leads to a truly representative government of national unity, as required by the Constitution of Zanzibar", - "values": [ - "General" - ] - }, - { - "text": "Reinforce policies already in place aimed at preventing and effectively responding to domestic violence against women, including the protection by the State of the displaced surviving victims ", - "values": [ - "Women's rights" - ] - }, - { - "text": "Establish a national human rights institution, in accordance with the Paris principles.", - "values": [ - "National Human Rights Institution" - ] - }, - { - "text": "Consider entering into bilateral and multilateral cooperation agreements with concerned States to address the protection needs of unaccompanied migrant children from Honduras, including their repatriation and reintegration", - "values": [ - "Migrants", - "Rights of the Child" - ] - }, - { - "text": "Put in place effective measures and policies to address discrimination against indigenous peoples", - "values": [ - "Indigenous peoples", - "Racial discrimination" - ] - }, - { - "text": "Fast-track the enactment of the gender equality act", - "values": [ - "Women's rights" - ] - }, - { - "text": "Include specific components in public policies and budgets to address the needs of persons belonging to minorities, including Roma women and children", - "values": [ - "Minorities", - "Rights of the Child", - "Women's rights" - ] - }, - { - "text": "Ensure that security sector reform remains a key priority, the first and most important steps being the adoption of the DRC's national security sector reform plan, coupled with practical measures to ensure the housing, pay and feeding of soldiers, particularly those deployed in the east. ", - "values": [ - "Public security" - ] - }, - { - "text": "Intensify efforts in enhancing the rights of Indigenous Australians: by addressing the underlying causes of their plight, by providing opportunities in health, education, housing and employment, and addressing the high rate of their incarceration in prison", - "values": [ - "Detention", - "Indigenous peoples", - "Labour", - "Right to education", - "Right to health" - ] - }, - { - "text": "That the Sultanate of Oman further pursue the practical measures which it has taken to spread a human rights culture in educational institutions, and use the media for this purpose", - "values": [ - "Human rights education and training" - ] - }, - { - "text": "Allow peaceful opposition groups and parties to operate freely and exercise their rights to freedom of assembly, association, expression, and religion in accordance with international human rights norms", - "values": [ - "Freedom of association and peaceful assembly", - "Freedom of opinion and expression", - "Freedom of religion and belief", - "International instruments" - ] - }, - { - "text": "Take concrete measures to stop extrajudicial killings and invite the Special Rapporteur on extrajudicial, summary or arbitrary executions to visit the country without conditions", - "values": [ - "Extrajudicial executions", - "Special procedures" - ] - }, - { - "text": "Continue to take the necessary measures to combat all forms of violence against women and girls and to reduce discrimination against women, in particular in the job market and in national political life, where women are seriously underrepresented ", - "values": [ - "Rights of the Child", - "Women's rights" - ] - }, - { - "text": "Continue efforts to combat human trafficking", - "values": [ - "Trafficking" - ] - }, - { - "text": "Continue to consider entering into the International Covenant on Civil and Political Rights.", - "values": [ - "CP rights - general", - "International instruments" - ] - }, - { - "text": "Carry out genuine transformation of institutions in order to fully respect the obligations undertaken by Tunisia in international human rights instruments", - "values": [ - "International instruments" - ] - }, - { - "text": "Carry out a comprehensive legal review of its domestic legislation and traditional practices to amend or eliminate those cultural practices and stereotypes which discriminate against women, bearing in mind its condition as State party to the Convention on the Elimination of All Forms of Discrimination against Women, while implementing innovative measures addressed to youth and adults to increase the understanding of the concept of equality between women and men and to present a positive and nonstereotypical image of women ", - "values": [ - "Human rights education and training", - "International instruments", - "Women's rights" - ] - }, - { - "text": "Strengthen the rights of the child, particularly by ensuring the registration of all children on the Civil Register", - "values": [ - "Rights of the Child" - ] - }, - { - "text": "Consider adopting a law on domestic violence and criminalizing different types of violence against women", - "values": [ - "Rights of the Child", - "Women's rights" - ] - }, - { - "text": "Ensure that no child is detained on the basis of his/her immigration status", - "values": [ - "Detention", - "Migrants", - "Rights of the Child" - ] - }, - { - "text": "Promote the culture of human rights through awareness-raising and education, in particular through training programmes for the benefit of law enforcement ", - "values": [ - "Human rights education and training" - ] - }, - { - "text": "Develop and implement a specific national action plan to support the Government\u2019s efforts in tackling human trafficking and strengthening inter-agency coordination", - "values": [ - "Trafficking" - ] - }, - { - "text": "Consider appropriate steps to ensure that the National Human Rights Commission functions in an independent and impartial manner", - "values": [ - "National Human Rights Institution" - ] - }, - { - "text": "Continue to promote the harmonization of laws, so as to make possible the legal framework necessary to implement the Convention against Torture", - "values": [ - "International instruments", - "Torture and other CID treatment" - ] - }, - { - "text": "Consider the establishment of a section within the Ministry of Justice specifically dedicated to human rights", - "values": [ - "Justice" - ] - }, - { - "text": "Accede to the OP-CAT and establish an effective National Preventive Mechanism and further adopt additional measures to ensure its full implementation without any exceptions of the principle of non-refoulement", - "values": [ - "Detention", - "International instruments", - "Torture and other CID treatment" - ] - }, - { - "text": "Request technical assistance from the United Nations to meet its international human rights obligations, as stated by the Committee on the Rights of the Child ", - "values": [ - "International instruments", - "Technical assistance and cooperation", - "Treaty bodies" - ] - }, - { - "text": "Positively consider the establishment of a moratorium on executions ", - "values": [ - "Death penalty" - ] - }, - { - "text": "Strengthen the protection of journalists against harassment, attacks and arbitrary detention, and to establish fair and transparent licensing procedures for private radio and television, and ensure supervision by an independent body, as stated in the press law, in order to prevent discriminatory licensing practices and enhance the diversity of information throughout the country", - "values": [ - "Detention", - "Freedom of the press" - ] - }, - { - "text": "Accelerate the establishment of a national preventive mechanism against torture and the process of creating an integrated and permanent national anti-trafficking structure", - "values": [ - "Detention", - "Torture and other CID treatment" - ] - }, - { - "text": "Ensure that the National Institute for Human Rights continues to accord with the Paris Principles and is sufficiently resourced to further advance human rights in Chile", - "values": [ - "National Human Rights Institution" - ] - }, - { - "text": "Continue taking measures to protect the rights of persons with disabilities ", - "values": [ - "Disabilities" - ] - }, - { - "text": "Make the necessary regulatory adjustments to guarantee that non-convicted prison inmates are separated from convicted ones.", - "values": [ - "Detention" - ] - }, - { - "text": "Strengthen measures to combat racial discrimination, in particular against Portuguese citizens of African descent ", - "values": [ - "Minorities", - "Racial discrimination" - ] - }, - { - "text": "Raise the minimum age of marriage in the national legislation to align it with the definition of a child in the Convention on the Rights of the Child ", - "values": [ - "International instruments", - "Rights of the Child" - ] - }, - { - "text": "Further accelerate the sanitation coverage and the access to safe and sustainable drinking water in rural areas", - "values": [ - "Right to water and sanitation" - ] - }, - { - "text": "Continue to implement measures to strengthen public health services for all its citizens", - "values": [ - "Right to health" - ] - }, - { - "text": "Strengthen measures to eliminate gender-based violence against women", - "values": [ - "Women's rights" - ] - }, - { - "text": "Take steps to ensure the prompt enforcement of the National Action Plan for Women of Afghanistan, the Elimination of Violence Against Women Law and its international CEDAW obligations and reject any further attempts to water down the intentions of those measures ", - "values": [ - "International instruments", - "Women's rights" - ] - }, - { - "text": "Continue developing current projects aimed at reducing poverty", - "values": [ - "Poverty" - ] - }, - { - "text": "Facilitate attempts indicated in the report to the UPR procedure in order to ratify the core human rights instruments, in particular ICCPR and ICESCR", - "values": [ - "CP rights - general", - "ESC rights - general", - "International instruments" - ] - }, - { - "text": "Study the possibility of becoming a party to the following international instruments: ICCPR, ICESCR and CRPD ", - "values": [ - "CP rights - general", - "Disabilities", - "ESC rights - general", - "International instruments" - ] - }, - { - "text": "Ensure that all children have the option to attend a non-denominational school at no extra cost", - "values": [ - "Right to education", - "Rights of the Child" - ] - }, - { - "text": "Continue work towards the improvement of women's rights. In particular, incorporate in law the principle of equality between men and women and ban child marriage", - "values": [ - "Rights of the Child", - "Women's rights" - ] - }, - { - "text": "Continue the study of and the necessary measures to create an adequate climate so as to accede to international human rights instruments to which the country is not yet State party", - "values": [ - "International instruments" - ] - }, - { - "text": "Adopt a national strategy on combating domestic violence", - "values": [ - "Rights of the Child", - "Women's rights" - ] - }, - { - "text": "Conduct prompt and impartial investigations into allegations of torture and ensure that anyone committing such a crime receives a punishment commensurate with the gravity of the act", - "values": [ - "Torture and other CID treatment" - ] - }, - { - "text": "Consider acceding to the Convention relating to the Status of Stateless Persons", - "values": [ - "International instruments", - "Statelessness and the right to nationality" - ] - }, - { - "text": "Consider ways to widen and enhance the effectiveness of measures to promote social inclusion and diversity, guaranteeing the full and effective exercise of human rights by indigenous people, persons of African descent, migrants and refugees, and eradicating all forms of racial discrimination, racism and xenophobia ", - "values": [ - "Asylum-seekers - refugees", - "Indigenous peoples", - "Migrants", - "Minorities", - "Racial discrimination" - ] - }, - { - "text": "Continue its policies and efforts to combat human trafficking especially those of women and children", - "values": [ - "Rights of the Child", - "Trafficking", - "Women's rights" - ] - }, - { - "text": "Consider expediting the ratification of OP-CRPD and the Rome Statute of the ICC", - "values": [ - "Disabilities", - "International instruments", - "Justice" - ] - }, - { - "text": "Provide further support assistance services to better protect victims of domestic violence", - "values": [ - "Rights of the Child", - "Women's rights" - ] - }, - { - "text": "Ensure that human rights defenders and representatives of civil society are effectively protected from any form of intimidation and harassment and engage constructively with them identifying solutions of Venezuela's human rights challenges ", - "values": [ - "Civil society", - "Human rights defenders" - ] - }, - { - "text": "Ensure the successful implementation of their National Action Plan and Strategic Framework on Trafficking in Persons", - "values": [ - "Trafficking" - ] - }, - { - "text": "Cooperate fully with relevant United Nations authorities, in particular by guaranteeing access to the Syrian territory for the Commission of Inquiry", - "values": [ - "Technical assistance and cooperation" - ] - }, - { - "text": "Strengthen measures aimed at ensuring gender equality as well as preventing violence against women ", - "values": [ - "Women's rights" - ] - }, - { - "text": "Workshop to determine how the gender perspective should be incorporated into the action plan for implementation of the universal periodic review recommendations", - "values": [ - "UPR process", - "Women's rights" - ] - }, - { - "text": "Establish a strategy to prevent xenophobic acts and violence involving ethnic or other minorities in consultation with relevant partners, the Slovak Roma community and other national and ethnic groups.", - "values": [ - "Minorities" - ] - }, - { - "text": "Revive efforts to develop a national strategic plan on gender-based violence and ensure appropriate resources for its implementation", - "values": [ - "Women's rights" - ] - }, - { - "text": "Continue the adoption and implementation of public policies aimed at protecting persons with disabilities and ensure their equal access to dignified housing, employment and health ", - "values": [ - "Disabilities" - ] - }, - { - "text": "Guarantee access to health for all", - "values": [ - "Right to health" - ] - }, - { - "text": "Take measures deemed appropriate to guarantee the right of children to food, and to this end, request the assistance of institutions, programmes and international organisms competent on this issue ", - "values": [ - "Right to food" - ] - }, - { - "text": "Consider the ratification of international human rights instruments to which it is not yet a party ", - "values": [ - "International instruments" - ] - }, - { - "text": "Continue applying programmes and measures to prevent and combat the problem of HIV/AIDS ", - "values": [ - "HIV - Aids" - ] - }, - { - "text": "Ratify and implement the International Convention for the Protection of All Persons from Enforced Disappearance", - "values": [ - "Enforced disappearances", - "International instruments" - ] - }, - { - "text": "Take necessary measures to ensure equal treatment as well as consider ways of helping to eradicate stereotypes for women in rural areas ", - "values": [ - "Women's rights" - ] - }, - { - "text": "Continue and intensify its efforts to promote human rights in all areas ", - "values": [ - "General" - ] - }, - { - "text": "Deepen the measures to change traditional practices and stereotypes that violate the civil, political, social and economic rights of women and prevent them from having a situation of equality with regard to men/having equality with men ", - "values": [ - "Women's rights" - ] - }, - { - "text": "Strengthen the promotion of understanding of a dialogue between cultures and religions as a means for the realisation of human rights", - "values": [ - "Freedom of religion and belief" - ] - }, - { - "text": "Guarantee genuine freedom of expression to all political leaders and the media, in light of the next elections ", - "values": [ - "Elections", - "Freedom of opinion and expression", - "Freedom of the press" - ] - }, - { - "text": "Guarantee access to health and education services for migrant children, eliminating administrative obstacles in this area", - "values": [ - "Migrants", - "Right to education" - ] - }, - { - "text": "Strengthen and accelerate legislative and educational actions to prevent violence against women and girls, especially domestic violence", - "values": [ - "Rights of the Child", - "Women's rights" - ] - }, - { - "text": "Ensure the independence of the National Institution for Human Rights and grant it the necessary means to function in accordance with the Paris Principles, and issue a standing invitation to Mandate Holders of the Human Rights Council ", - "values": [ - "National Human Rights Institution" - ] - }, - { - "text": "Pursue efforts undertaken to prevent and more effectively punish acts of domestic violence committed against women and children, through strengthening the legislative arsenal and the resources allocated to the judiciary, police force and justice", - "values": [ - "Rights of the Child", - "Women's rights" - ] - }, - { - "text": "Continue its efforts to eliminate all forms of racial discrimination, xenophobia and intolerance", - "values": [ - "Racial discrimination" - ] - }, - { - "text": "Continue implementing a non-discriminatory and inclusive policy and guarantee quality education to all the girls and boys in its country ", - "values": [ - "Right to education" - ] - }, - { - "text": "Specifically prohibit corporal punishment at home and in schools and undertake appropriate campaigns to educate families on alternative forms of discipline ", - "values": [ - "Rights of the Child", - "Torture and other CID treatment" - ] - }, - { - "text": "Take concrete steps to implement international legal obligations to protect peaceful assembly in line with calls from the United Nations Secretary General and the United Nations High Commissioner for Human Rights", - "values": [ - "Freedom of association and peaceful assembly" - ] - }, - { - "text": "Adopt measures reinforcing the fight against domestic violence", - "values": [ - "Rights of the Child", - "Women's rights" - ] - }, - { - "text": "Promote the process of revising her current laws with a view to ensuring their conformity with the new Constitution and to better protecting and promoting human rights", - "values": [ - "General" - ] - }, - { - "text": "Bring its legislation into line with the international standards related to the prosecution of war crimes of sexual violence", - "values": [ - "International humanitarian law", - "Justice", - "Women's rights" - ] - }, - { - "text": "Fully respect peaceful assembly in accordance with Angolan and international human rights law", - "values": [ - "Freedom of association and peaceful assembly", - "International instruments" - ] - }, - { - "text": "Seek technical assistance to prepare all outstanding reports to treaty bodies", - "values": [ - "Technical assistance and cooperation", - "Treaty bodies" - ] - }, - { - "text": "Sign and ratify the Second Optional Protocol to the International Covenant on Civil and Political Rights", - "values": [ - "Death penalty", - "International instruments" - ] - }, - { - "text": "Take specific measures to eliminate child marriage, early marriage and forced marriage, which remain widespread in a number of communities. These measures require new constitutional and legislative protection as well as commitments in terms of education and health for girls, and the protection against violence, as well as child protection services which must take account of the gender dimension and economic empowerment of women", - "values": [ - "Right to education", - "Right to health", - "Rights of the Child", - "Women's rights" - ] - }, - { - "text": "Ensure a sufficient health budget, full and equal access to health services, in particular adolescent, reproductive and family planning services and relevant education", - "values": [ - "Right to health", - "Women's rights" - ] - }, - { - "text": "Continue to strengthen its labour regulations and improve the working-living conditions of workers.", - "values": [ - "Labour" - ] - }, - { - "text": "Hold free elections, given the importance of democracy for the full realization of human rights", - "values": [ - "Elections" - ] - }, - { - "text": "Extend an open invitation to the Special Procedures and cooperate with the human rights mechanisms of the Human Rights Council, including the Commission of Inquiry, and allow the Office of the High Commissioner for Human Rights access to its territory", - "values": [ - "Special procedures", - "Technical assistance and cooperation", - "UPR process" - ] - }, - { - "text": "Criminalize the practice of female genital mutilation ", - "values": [ - "Rights of the Child", - "Torture and other CID treatment", - "Women's rights" - ] - }, - { - "text": "Abolish the death penalty in all circumstances, although the existence of a moratorium on executions, the commutation of such penalties into prison sentences, and the efforts made to restrict, in the Constitution, the application of the death penalty to a reduced number of crimes, are welcomed", - "values": [ - "Death penalty" - ] - }, - { - "text": "Consider extending invitations to the relevant mandate holders of thematic UN special procedures, and intensify its collaboration with the human rights mechanisms of this organization ", - "values": [ - "Special procedures" - ] - }, - { - "text": "Raise the minimum age of criminal responsibility, and abolish child corporal punishment ", - "values": [ - "Rights of the Child", - "Torture and other CID treatment" - ] - }, - { - "text": "Establish juvenile rehabilitation facilities to ensure the separation of juveniles from adults in prisons in line with the process to improve prisons' overcrowding ", - "values": [ - "Detention", - "Rights of the Child" - ] - }, - { - "text": "Continue working on the elaboration of its national human rights policy for its prompt implementation and take into account the constructive contributions arising from this review in the aforementioned policy", - "values": [ - "General" - ] - }, - { - "text": "Continue positive efforts to increase a culture of human rights principles", - "values": [ - "Human rights education and training" - ] - }, - { - "text": "In regard to immigration and asylum matters generally, steps were being taken to reduce unacceptable delays in parts of the system. Legislation was before Parliament which would simplify procedures so that decisions on asylum, protection and immigration could be taken speedily and in a transparent manner", - "values": [ - "Asylum-seekers - refugees" - ] - }, - { - "text": "Accede to the human rights conventions and protocols to which Kenya is not yet a party ", - "values": [ - "International instruments" - ] - }, - { - "text": "Ensure the prompt, impartial and effective investigation of all attacks and violence against journalists to bring the perpetrators to justice and provide remedies for the victims and their families and, to reform the Penal Code to bring it in line with international standards on freedom of expression", - "values": [ - "Freedom of opinion and expression", - "Freedom of the press" - ] - }, - { - "text": "Ensure victim-sensitive and effective investigation and prosecution of perpetrators", - "values": [ - "Justice" - ] - }, - { - "text": "Put an end to forced evictions and demolition of Roma settlements without previous notice and, if such cases take place, offer alternative housing solutions ", - "values": [ - "Minorities", - "Right to housing" - ] - }, - { - "text": "Ratify the international instruments combating statelessness, and consider a reform of the civil status guaranteeing the rights of all Haitians, including those who live abroad ", - "values": [ - "International instruments", - "Statelessness and the right to nationality" - ] - }, - { - "text": "Continue the implementation of the national action plan against human trafficking that was adopted in 2014", - "values": [ - "Trafficking" - ] - }, - { - "text": "Review security and criminal laws that are open to abuse in the form of the persecution of human rights defenders and political critics", - "values": [ - "Freedom of opinion and expression", - "Human rights defenders" - ] - }, - { - "text": "Ensure that schools and counselling centres receive anti-discrimination training as well as adequate funding and guidance on objective standards and fair processes to support students with special needs", - "values": [ - "Human rights education and training", - "Rights of the Child" - ] - }, - { - "text": "Guarantee the life, integrity and physical safety of children and adolescents placed in State shelters, provide adequate reparation for the damages caused, prohibit corporal punishment of children in all settings, and repeal the legal exemptions endorsed in the Civil Code and Law", - "values": [ - "Rights of the Child", - "Torture and other CID treatment" - ] - }, - { - "text": "Continue, in the framework of the fight against female genital mutilation, its action in the implementation of the second National Action Plan for accelerating the abandonment of this practice until 2015", - "values": [ - "Rights of the Child", - "Torture and other CID treatment", - "Women's rights" - ] - }, - { - "text": "Investigate allegations of executive branch interference in judicial decision-making ", - "values": [ - "Justice" - ] - }, - { - "text": "Take appropriate measures, in accordance with its international obligations, aimed at ensuring universal education, including free and compulsory primary education ", - "values": [ - "Right to education" - ] - }, - { - "text": "Extend a permanent invitation to all special procedures mandate holders", - "values": [ - "Special procedures" - ] - }, - { - "text": "Eliminate all forms of corporal punishment from its legislation", - "values": [ - "Torture and other CID treatment" - ] - }, - { - "text": "Step up efforts to combat poverty in rural areas, particularly among indigenous communities", - "values": [ - "Indigenous peoples", - "Poverty" - ] - }, - { - "text": "Carry out the necessary measures to implement fully the 2009 Act against Torture, making special emphasis in investigation and sanction of those responsible for each crime ", - "values": [ - "Torture and other CID treatment" - ] - }, - { - "text": "Make efforts to adopt comprehensive legislation on violence against women with provisions on domestic violence and marital rape as specific offences in the Criminal Law and punish perpetrators as well as provide assistance and recovery for victims", - "values": [ - "Justice", - "Women's rights" - ] - }, - { - "text": "Submit its reports to the relevant treaty bodies in due time.", - "values": [ - "Treaty bodies" - ] - }, - { - "text": "Implement the 1954 Convention on statelessness to ensure that stateless persons in Britain access British nationality", - "values": [ - "International instruments", - "Statelessness and the right to nationality" - ] - }, - { - "text": "Strengthen efforts to protect freedom of expression, including the safety of journalists", - "values": [ - "Freedom of opinion and expression", - "Freedom of the press" - ] - }, - { - "text": "Review its legislation to ensure the right of all boys and girls to have a nationality and ensure birth registration, regardless of their ethnic origin or their parents' status", - "values": [ - "Minorities", - "Rights of the Child", - "Statelessness and the right to nationality" - ] - }, - { - "text": "Remove from its Religious Organizations Law prohibition on unregistered religious activities, and undue restrictions on religious material, education and attire ", - "values": [ - "Freedom of religion and belief" - ] - }, - { - "text": "Continue advancing in the achievement of the Sustainable Development Goals", - "values": [ - "Development" - ] - }, - { - "text": "Adapt its asylum system to the evolving international protection needs ", - "values": [ - "Asylum-seekers - refugees" - ] - }, - { - "text": "Further strengthen and expand national action plans to reduce child poverty and that of their families ", - "values": [ - "Poverty", - "Rights of the Child" - ] - }, - { - "text": "Continue the efforts to reduce overcrowding and take action to improve the general conditions in prisons and detention centres", - "values": [ - "Detention" - ] - }, - { - "text": "Continue its efforts to protect and promote the rights of children to life and to a sufficient standard of living and education - and seek the assistance of relevant United Nations agencies and programmes for the establishment of reception and training centres for delinquent street children of school age", - "values": [ - "Rights of the Child", - "Technical assistance and cooperation" - ] - }, - { - "text": "Take temporary special measures to address gender equality and consider reintroducing the gender equality bill to Parliament", - "values": [ - "Women's rights" - ] - }, - { - "text": "Strengthen the measures taken to provide free legal aid to women without sufficient means", - "values": [ - "Justice", - "Women's rights" - ] - }, - { - "text": "Speed up the process of ratification of the Optional Protocol to the Convention on the Elimination of All Forms of Discrimination against Women", - "values": [ - "International instruments", - "Women's rights" - ] - }, - { - "text": "Consider implementing school meals programs, especially in rural areas most affected by poverty", - "values": [ - "Poverty", - "Right to education", - "Right to food" - ] - }, - { - "text": "Put in place concrete policies to ensure that human rights defenders can conduct their work freely without any hindrance - in this regard one of the concrete steps to be taken is the establishment of a legal framework for the protection of human rights defenders. ", - "values": [ - "Human rights defenders" - ] - }, - { - "text": "Strengthen cooperation on the issue of refugees on the regional level, and focus on the most vulnerable groups or persons in the collective centres in order to find a just solution for them and close those centres", - "values": [ - "Asylum-seekers - refugees" - ] - }, - { - "text": "The Government of Eritrea, which is currently operating on pre-Constitutional transitional powers, should heed the call of the Special Rapporteur on the situation of human rights in Eritrea to fully implement the Constitution without delay, and subsequently hold elections, thereby ensuring further governance in accordance with international principles to the rule of law ", - "values": [ - "Elections", - "Special procedures" - ] - }, - { - "text": "Abolish definitively the death penalty", - "values": [ - "Death penalty" - ] - }, - { - "text": "In keeping with domestic law and Bahrain's pledges under the international human rights treaties, the periodic review will be used as a further opportunity to promote the use of existing means of redress and explore any concrete measures that may be helpful in this regard.", - "values": [ - "International instruments", - "UPR process" - ] - }, - { - "text": "Continue to engage its multilateral, regional and bilateral partners to strengthen its capacity and resources for the effective implementation of its poverty-alleviation programmes and for meeting its international human rights obligations", - "values": [ - "Poverty" - ] - }, - { - "text": "Step up measures to comprehensively address the problem of trafficking and violence against women, including by increasing public awareness campaigns ", - "values": [ - "Human rights education and training", - "Trafficking", - "Women's rights" - ] - }, - { - "text": "Establish an independent national institute for human rights according to the Paris Principles, which could advise the Government and receive and investigate complaints by the public.", - "values": [ - "National Human Rights Institution" - ] - }, - { - "text": "Continue with the reforms to step up protection and promotion of social and cultural rights and also implement programmes on gender equality ", - "values": [ - "ESC rights - general", - "Women's rights" - ] - }, - { - "text": "Undertake a comprehensive study on child abuse in order to understand its scope and to suggest ways to prevent it.", - "values": [ - "Rights of the Child" - ] - }, - { - "text": "Study the possibility of creating an online system to follow up on international recommendations, which would include the accepted recommendations of the universal periodic review", - "values": [ - "UPR process" - ] - }, - { - "text": "Ensure that the media can operate freely and independently.", - "values": [ - "Freedom of the press" - ] - }, - { - "text": "Intensify efforts against gender violence through reforms that allow the prosecution of perpetrators without requiring that the victim lodge a complaint, guaranteeing sufficient resources for shelters for victims and offering free social assistance and legal advice to victims ", - "values": [ - "Justice", - "Women's rights" - ] - }, - { - "text": "Expedite the provision of all official documents, particularly identity documents to all members of its Baha'i community", - "values": [ - "Freedom of religion and belief", - "Minorities", - "Statelessness and the right to nationality" - ] - }, - { - "text": "Conduct information campaigns so as to familiarize the public and minority groups on the law and legislation relating to racial discrimination", - "values": [ - "Minorities", - "Racial discrimination" - ] - }, - { - "text": "Continue efforts to ensure universal access to quality education and health care", - "values": [ - "Right to education", - "Right to health" - ] - }, - { - "text": "Ensure transparent and effective investigation and prosecution where appropriate of alleged human rights violations by law enforcement officials, particularly in reference to the treatment of members of minority groups", - "values": [ - "Human rights violations by state agents", - "Minorities" - ] - }, - { - "text": "Pursue its excellent policies in the field of economic, social and cultural rights, in order to further increase the living conditions of its people, particularly those of the most vulnerable sectors of the population", - "values": [ - "ESC rights - general" - ] - }, - { - "text": "Ratify the Convention on the Rights of the Child, in particular its Optional Protocol on the sale of children", - "values": [ - "International instruments", - "Rights of the Child", - "Trafficking" - ] - }, - { - "text": "Promote equal opportunities and enhance strategies against discrimination faced by immigrants and minority groups, both ethnic and religious", - "values": [ - "Freedom of religion and belief", - "Migrants", - "Minorities", - "Racial discrimination" - ] - }, - { - "text": "Consider ratifying the ICRMW as well as ratifying the ILO Convention No. 189", - "values": [ - "International instruments", - "Labour", - "Migrants" - ] - }, - { - "text": "Set a timeline for the ratification of the International Covenant on Economic, Social and Cultural Rights.", - "values": [ - "ESC rights - general", - "International instruments" - ] - }, - { - "text": "Ratify OP-ICESCR and the Optional Protocol to the Convention on the Rights of the Child on a communications procedure (OP-CRC-IC) ", - "values": [ - "ESC rights - general", - "International instruments", - "Rights of the Child" - ] - }, - { - "text": "Continue implementing laws in accordance with the universally agreed human rights norms and principles ", - "values": [ - "International instruments" - ] - }, - { - "text": "Step up the implementation of measures to reduce discrimination based on gender and sexual orientation, including awareness activities ", - "values": [ - "Human rights education and training", - "Sexual Orientation and Gender Identity" - ] - }, - { - "text": "Adopt specific legislation on human trafficking ", - "values": [ - "Trafficking" - ] - }, - { - "text": "Maintain the de facto moratorium, to continue consultations on changing the mandatory death sentence for murder and treason, and also take appropriate steps to reach a permanent abolition of the death penalty.", - "values": [ - "Death penalty" - ] - }, - { - "text": "Continue its efforts to reform laws on the rights of women and children in the justice sphere", - "values": [ - "Rights of the Child", - "Women's rights" - ] - }, - { - "text": "Continue efforts to put an end to human trafficking and sexual exploitation of children", - "values": [ - "Rights of the Child" - ] - }, - { - "text": "Fully implement the intention of the Government of Slovenia to resolve the status of socalled erased persons in the near future", - "values": [ - "Other", - "Statelessness and the right to nationality" - ] - }, - { - "text": "Act on its commitment to end impunity in matters of ill treatment and torture by acceding to the UN Convention against Torture ", - "values": [ - "Impunity", - "International instruments", - "Torture and other CID treatment" - ] - }, - { - "text": "Increase the number and capacity of shelters for women who are victims of violence and ensure that all women have non-discriminatory access thereto", - "values": [ - "Women's rights" - ] - }, - { - "text": "Continue to develop the necessary efforts to fully guarantee the rights to legal, social and economic reparation to victims of violence perpetrated in Peru, between 1980 and 2000", - "values": [ - "Justice" - ] - }, - { - "text": "Delete those provisions that could favour discriminatory practices against persons based on their sexual orientation and gender identity", - "values": [ - "Sexual Orientation and Gender Identity" - ] - }, - { - "text": "Adopt tangible actions to assist persons with disabilities, particularly in terms of access to the labour market and the fight against poverty and social exclusion", - "values": [ - "Disabilities", - "Labour", - "Poverty" - ] - }, - { - "text": "Revise or repeal legislation on associations and elaborate a new organic law on associations in conformity with international human rights norms", - "values": [ - "Civil society", - "International instruments" - ] - }, - { - "text": "Enact new legislation for providing early intervention and better protect vulnerable adults from abuse and harm due to neglect and self-neglect", - "values": [ - "Minorities" - ] - }, - { - "text": "Continue to take further steps for enhancing access to justice", - "values": [ - "Justice" - ] - }, - { - "text": "Amend the Special Marriage Act before its next review ", - "values": [ - "Women's rights" - ] - }, - { - "text": "Promote the right to education, inter alia, through combating the challenges of access to schools", - "values": [ - "Right to education" - ] - }, - { - "text": "Reinstate the moratorium on the use of the death penalty as a first step towards its abolition", - "values": [ - "Death penalty" - ] - }, - { - "text": "Cooperate fully with UNAMID in Darfur in order to prevent and prosecute any human rights violations ", - "values": [ - "General" - ] - }, - { - "text": "Intensify awareness-raising and educational campaigns to supplement current programmes aimed at empowering women, with a particular focus on identifying and countering discriminatory perceptions and actions or practices that could endanger the safety and security of women and girls", - "values": [ - "Human rights education and training", - "Rights of the Child", - "Women's rights" - ] - }, - { - "text": "Take further steps to reform the judicial and penal system and create adequate incarceration centres in conformity with international standards", - "values": [ - "Detention", - "Justice" - ] - }, - { - "text": "Ratify and implement the Convention on the Rights of Persons with Disabilities (CRPD) as well as the Optional Protocol thereto", - "values": [ - "Disabilities", - "International instruments" - ] - }, - { - "text": "Accelerate efforts aimed at the promotion and protection of human rights, including through tackling problems of public safety, economic and judicial safety and human development", - "values": [ - "ESC rights - general" - ] - }, - { - "text": "Deepen the legal and administrative measures aiming at facilitating access to Kuwaiti nationality to stateless persons residing in Kuwait, as well as to children of foreign or stateless fathers born in the territory", - "values": [ - "Rights of the Child", - "Statelessness and the right to nationality" - ] - }, - { - "text": "Provide access to education to children", - "values": [ - "Right to education", - "Rights of the Child" - ] - }, - { - "text": "Consider extending a standing permanent invitation to the special procedures of the Human Rights Council ", - "values": [ - "Special procedures" - ] - }, - { - "text": "In line with the Human Rights Committee, put an end to sentences of solitary confinement, and ensure that persons sentenced to life imprisonment benefit from the safeguards of the United Nations Standard Minimum Rules for the Treatment of Prisoners", - "values": [ - "Detention", - "Treaty bodies" - ] - }, - { - "text": "Prepare a study on the scale of direct and indirect racial discrimination in the criminal justice system, especially as far as preliminary detention and imprisonment are concerned", - "values": [ - "Detention", - "Justice", - "Racial discrimination" - ] - }, - { - "text": "Reinstate the moratorium on the death penalty, as a first step towards its complete abolition and accession to the Second Optional Protocol to the International Covenant on Civil and Political Rights", - "values": [ - "Death penalty", - "International instruments" - ] - }, - { - "text": "Ratify the Optional Protocol to the Convention on the Rights of Persons with Disabilities as well as the Optional Protocol to the Convention against Torture and Other Cruel, Inhuman or Degrading Treatment or Punishment", - "values": [ - "Detention", - "Disabilities", - "International instruments", - "Torture and other CID treatment" - ] - }, - { - "text": "Continue efforts to align training programmes for all government officials with international human rights law and incorporate more training in child rights into professional development courses", - "values": [ - "Human rights education and training", - "International instruments", - "Rights of the Child" - ] - }, - { - "text": "Permit and encourage female students to return to formal education after giving birth, in keeping with the recommendation made during the review of the Education Act", - "values": [ - "Right to education", - "Rights of the Child", - "Women's rights" - ] - }, - { - "text": "Establish an alternative service under civilian control for conscientious objectors, in conformity with the international human rights obligations of the Republic of Korea", - "values": [ - "Freedom of religion and belief" - ] - }, - { - "text": "Submit the reports due according to CRC", - "values": [ - "Rights of the Child", - "Treaty bodies" - ] - }, - { - "text": "Reduce the high number of persons in preventive detention and limit its systematic use through alternative options to detention", - "values": [ - "Detention" - ] - }, - { - "text": "Ensure that the freedom of expression and of the press guaranteed in the Constitution are effectively respected ", - "values": [ - "Freedom of opinion and expression", - "Freedom of the press" - ] - }, - { - "text": "Continue effective implementation of article 261 bis of the Criminal Code, which highly contributes to the elimination of impunity and prevents crimes against humanity, in particular genocide ", - "values": [ - "Impunity", - "Justice" - ] - }, - { - "text": "Consider expediting the ratification of the Convention on the Rights of Persons with Disabilities", - "values": [ - "Disabilities", - "International instruments" - ] - }, - { - "text": "Reconsider policies on family, gender equality and non-discrimination", - "values": [ - "Women's rights" - ] - }, - { - "text": "Reinforce measures to prevent violence against foreign domestic workers and bring to justice those responsible for such crimes", - "values": [ - "Labour" - ] - }, - { - "text": "Take effective steps to address the educational needs of all children, even in these difficult conditions", - "values": [ - "Right to education", - "Rights of the Child" - ] - }, - { - "text": "Implement measures in support of enhanced participation of people with disabilities in the workforce", - "values": [ - "Disabilities", - "Labour" - ] - }, - { - "text": "The Government of Bosnia and Herzegovina amend its constitution and the election law to remove discrimination on the basis of ethnicity in politics, in line with the European Court of Human Rights judgements in both Sejdic and Finci v. Bosnia and Herzegovina and Azra Zornic v. Bosnia and Herzegovina", - "values": [ - "Elections", - "Minorities", - "Racial discrimination" - ] - }, - { - "text": "Ensure that conditions are created so that any reports of violations committed by law enforcement officials are investigated independently, impartially and in a timely manner ", - "values": [ - "Human rights violations by state agents" - ] - }, - { - "text": "Implement measures to strengthen women's capacities and empower them to participate in political and economic life, and ratify the Optional Protocol to the Convention on the Elimination of All Forms of Discrimination against Women ", - "values": [ - "International instruments", - "Women's rights" - ] - }, - { - "text": "Share its experiences and best practices in the field of reduction of poverty and improvement of standards of living with other developing countries", - "values": [ - "Poverty" - ] - }, - { - "text": "Step up efforts in the area of combating human trafficking, including training of officials on identifying victims of human trafficking as well as measures for the protection and rehabilitation of victims ", - "values": [ - "Trafficking" - ] - }, - { - "text": "Consider seeking technical assistance from the relevant United Nations agencies to meet its human rights obligations ", - "values": [ - "Technical assistance and cooperation" - ] - }, - { - "text": "Take further concrete steps to promote the rights of disabled persons", - "values": [ - "Disabilities" - ] - }, - { - "text": "Adopt rapidly all the necessary measures to put the law on violence against women into practice", - "values": [ - "Women's rights" - ] - }, - { - "text": "Continue to promote rural development policies for the protection of the rights of peasants and other persons working in rural areas", - "values": [ - "Development" - ] - }, - { - "text": "Continue to consider protection and promotion of human rights in the new constitution", - "values": [ - "General" - ] - }, - { - "text": "Provide asylum seekers and persons awaiting deportation with free legal counsel and provide necessary funding and access to institutions that can provide such counsel ", - "values": [ - "Asylum-seekers - refugees" - ] - }, - { - "text": "Protect human rights defenders from intimidation and violence and ensure prompt, impartial and thorough investigation of allegations of harassment, torture and ill-treatment of human rights defenders", - "values": [ - "Human rights defenders", - "Torture and other CID treatment" - ] - }, - { - "text": "Ratify the International Convention for the Protection of All Persons from Enforced Disappearance without making reservations and recognize the competence of the Committee on Enforced Disappearances to receive and consider communications", - "values": [ - "Enforced disappearances", - "International instruments", - "Treaty bodies" - ] - }, - { - "text": "With regard to Article 16 paragraph 1 (g) of CEDAW, withdraw reservations from the Convention on the Elimination of All Forms of Discrimination against Women, especially in view of the modification of the Swiss naming rights and citizenship law which are foreseen to enter into force in January 2013", - "values": [ - "International instruments", - "Women's rights" - ] - }, - { - "text": "Further its activities aimed at gender mainstreaming in Government policies ", - "values": [ - "Women's rights" - ] - }, - { - "text": "Adopt policies aimed at promoting women's rights and combating domestic and sexual violence ", - "values": [ - "Women's rights" - ] - }, - { - "text": "Increase measures to promote and protect freedom of expression in the country", - "values": [ - "Freedom of opinion and expression" - ] - }, - { - "text": "Amend laws to explicitly prohibit all forms of human trafficking, with a specific focus on child labour and forced begging", - "values": [ - "Labour", - "Rights of the Child", - "Trafficking" - ] - }, - { - "text": "Respect the rights to freedom of expression, association and assembly by allowing human\nrights defenders, political dissidents and journalists to express their views freely in line with\ninternational human rights law", - "values": [ - "Freedom of association and peaceful assembly", - "Freedom of opinion and expression", - "Freedom of the press", - "Human rights defenders", - "International instruments" - ] - }, - { - "text": "Ensure that no restrictions are imposed on the right to freedom of religion and belief, and guarantee greater respect for the right to freedom of expression and freedom of association", - "values": [ - "Freedom of association and peaceful assembly", - "Freedom of religion and belief" - ] - }, - { - "text": "Ratify ICRMW, to ensure a better provision of the rights and concerns of this vulnerable group", - "values": [ - "International instruments", - "Labour", - "Migrants" - ] - }, - { - "text": "That achievements in reducing poverty and illiteracy be emulated by other countries", - "values": [ - "Poverty", - "Right to education" - ] - }, - { - "text": "Continue strengthening its national human rights institutions", - "values": [ - "General" - ] - }, - { - "text": "Continue providing generous support to the Syrian refugees in Turkey", - "values": [ - "Asylum-seekers - refugees" - ] - }, - { - "text": "Continue to pursue open migration policy and regularize existing migrants with irregular status ", - "values": [ - "Migrants" - ] - }, - { - "text": "Revise the decision to reduce the AHRC's funds in order to guarantee its independent and effective functioning", - "values": [ - "National Human Rights Institution" - ] - }, - { - "text": "Consider revising legislation with a view to abolishing the death penalty", - "values": [ - "Death penalty" - ] - }, - { - "text": "Make every effort to fully investigate all threats and attacks against human rights defenders and journalists and bring the perpetrators to justice ", - "values": [ - "Freedom of the press", - "Human rights defenders" - ] - }, - { - "text": "Enforce laws on human trafficking and child labour by holding perpetrators criminally accountable and providing adequate funding to investigate traffickers and protect victims", - "values": [ - "Labour", - "Rights of the Child", - "Trafficking" - ] - }, - { - "text": "Revise national legislations with a view to ensuring it's conformity with the Constitution and with the international human rights obligations of Swaziland ", - "values": [ - "International instruments" - ] - }, - { - "text": "Strengthen the existing cooperation with the United Nations and the human rights mechanisms, so as to ensure further promotion of human rights ", - "values": [ - "Special procedures", - "Treaty bodies", - "UPR process" - ] - }, - { - "text": "Increase its efforts in fighting poverty, particularly of disadvantaged children in the country ", - "values": [ - "Poverty", - "Rights of the Child" - ] - }, - { - "text": "Continue efforts in the educational sector and eradication of illiteracy", - "values": [ - "Right to education" - ] - }, - { - "text": "Continue to cooperate with the United Nations and other international organizations to strengthen human rights", - "values": [ - "Other" - ] - }, - { - "text": "Kuwait remained firmly committed to submitting its periodic reports to treaty bodies", - "values": [ - "Treaty bodies" - ] - }, - { - "text": "Further enhance measures, in cooperation with the international community, to protect and promote the rights of the child, including through strengthening the educational system and the provision of adequate food, housing and health services to the most vulnerable families and groups in society", - "values": [ - "Right to education", - "Right to food", - "Right to health", - "Right to housing", - "Rights of the Child" - ] - }, - { - "text": "Continue its efforts in ensuring the respect and promotion of human rights principles despite all existing challenges and obstacles ", - "values": [ - "General" - ] - }, - { - "text": "Take measures to ratify the International Covenant on Civil and Political Rights and the International Covenant on Economic, Social and Cultural Rights", - "values": [ - "CP rights - general", - "ESC rights - general", - "International instruments" - ] - }, - { - "text": "Repeal all discriminatory provisions in relation to children born out of wedlock", - "values": [ - "Rights of the Child" - ] - }, - { - "text": "Improve reception services at foreigners' registration centres and implement alternative registration services, particularly for asylum seekers with special needs", - "values": [ - "Asylum-seekers - refugees" - ] - }, - { - "text": "Allow national and international NGOs to play a full and active role in promoting and protecting human rights, specifically by expanding registration to all categories of NGOs and social organizations in China and by expanding their freedom to operate effectively", - "values": [ - "Civil society" - ] - }, - { - "text": "Redouble steps taken in providing quality and affordable health and education services, including providing adequate learning opportunities", - "values": [ - "Right to education", - "Right to health" - ] - }, - { - "text": "Continue to accelerate efforts to resolve the situation in the Southern Border Provinces and ensure the reconciliation remains a priority ", - "values": [ - "Justice" - ] - }, - { - "text": "Consider the promotion and protection of the rights of peasants and other people working in rural areas ", - "values": [ - "Other" - ] - }, - { - "text": "Intensify efforts to combat discrimination and ill-treatment of Roma and eliminate segregation of Roma girls in the educational system", - "values": [ - "Minorities", - "Racial discrimination", - "Right to education", - "Rights of the Child", - "Torture and other CID treatment" - ] - }, - { - "text": "Ensure the protection of the rights of domestic migrant workers, the majority of whom are women whose rights are not protected under the 2004 Law on parity ", - "values": [ - "Labour", - "Migrants", - "Women's rights" - ] - }, - { - "text": "Ensure that the country's laws are in compliance with international human rights standards", - "values": [ - "International instruments" - ] - }, - { - "text": "Ratify or accede to the main instruments on human rights, in particular the International Covenant on Economic, Social and Cultural Rights ", - "values": [ - "ESC rights - general", - "International instruments" - ] - }, - { - "text": "Ratify the Optional Protocol to the Convention against Torture and proceed with the corresponding legal reforms in compliance with said Convention", - "values": [ - "Detention", - "International instruments", - "Torture and other CID treatment" - ] - }, - { - "text": "Expedite the appointment of members to the Human Rights Commission so that it may initiate its work ", - "values": [ - "National Human Rights Institution" - ] - }, - { - "text": "Ratify ILO Conventions No. 138 and no. 182 ", - "values": [ - "International instruments", - "Labour", - "Rights of the Child" - ] - }, - { - "text": "Assist the Roma and Ashkali persons displaced from Kosovo to allow them to obtain the necessary official documents to get permanent or temporary resident status in Montenegro", - "values": [ - "Internally displaced persons", - "Minorities" - ] - }, - { - "text": "Incorporate into domestic legislation the crime of torture as defined in CAT ", - "values": [ - "International instruments", - "Torture and other CID treatment" - ] - }, - { - "text": "Show more understanding and flexibility during the expulsions of undocumented people and to take into account the social and humanitarian aspects of these families", - "values": [ - "Migrants" - ] - }, - { - "text": "Ratify the Kampala Amendments to the Rome Statute", - "values": [ - "International instruments", - "Justice" - ] - }, - { - "text": "Integrate the component of human rights education and training into its education system", - "values": [ - "Human rights education and training" - ] - }, - { - "text": "Facilitate the visits of all special procedures that have, to date, requested a visit", - "values": [ - "Special procedures" - ] - }, - { - "text": "Become a party to the Optional Protocols to the ICCPR ", - "values": [ - "CP rights - general", - "Death penalty", - "International instruments" - ] - }, - { - "text": "Continue efforts in the implementation of its National Approach to Eliminating Sexual and Gender Based Violence in Kiribati", - "values": [ - "Rights of the Child", - "Women's rights" - ] - }, - { - "text": "Enhance the facilities, services and opportunities for children and persons with disabilities", - "values": [ - "Disabilities", - "Rights of the Child" - ] - }, - { - "text": "Enhance efforts to achieving the Seven-Step Roadmap as the Government of Myanmar has promised toward building a democratic and ruled-by-law State ", - "values": [ - "Justice" - ] - }, - { - "text": "Ensure that education programmes pay special attention to the prevention of sexual abuse and harassment and enable women to return to school after pregnancy ", - "values": [ - "Right to education", - "Women's rights" - ] - }, - { - "text": "Abolish the death penalty and ratify the Second Optional Protocol to the Second Optional Protocol to the International Covenant on Civil and Political Rights ", - "values": [ - "Death penalty", - "International instruments" - ] - }, - { - "text": "Ratify the International Covenant on Economic, Social and Cultural Rights and the Optional Protocol thereto, the Optional Protocol to the Convention on the Rights of the Child on a communications procedure and the International Covenant on Civil and Political Rights and the Optional Protocols thereto ", - "values": [ - "CP rights - general", - "Death penalty", - "ESC rights - general", - "International instruments", - "Rights of the Child" - ] - }, - { - "text": "Continue working towards the harmonization of its domestic legislation with the international human rights instruments to which it is a State Party", - "values": [ - "International instruments" - ] - }, - { - "text": "Consider participating in core human rights treaties, as well as special procedures of the Human Rights Council.", - "values": [ - "International instruments", - "Special procedures" - ] - }, - { - "text": "Ensure the full implementation of legislation regarding violence against women and prosecute and sanction those responsible for such acts in line with the recommendation made by the Committee on the Elimination of Discrimination against Women", - "values": [ - "Treaty bodies", - "Women's rights" - ] - }, - { - "text": "Promote initiatives aimed at ensuring that there is employment stability for pregnant women ", - "values": [ - "Women's rights" - ] - }, - { - "text": "Provide protection for the family as the natural and fundamental unit of the society", - "values": [ - "Other" - ] - }, - { - "text": "Increase its efforts to combat HIV/AIDS by ensuring access to treatment and adequate health-care facilities and by ensuring that children living with HIV/AIDS have access to proper health care", - "values": [ - "HIV - Aids", - "Right to health", - "Rights of the Child" - ] - }, - { - "text": "Adopt measures to combat discrimination against women in rural areas and to tackle the high mortality rate during childbirth", - "values": [ - "Right to health", - "Women's rights" - ] - }, - { - "text": "Adopt a national action plan for the improvement of the situation for indigenous peoples", - "values": [ - "Indigenous peoples" - ] - }, - { - "text": "Ratify, before the next cycle of the universal periodic review, the Optional Protocol to the Convention against Torture and adopt measures to improve access to justice, redress and rehabilitation for victims of torture", - "values": [ - "International instruments", - "Torture and other CID treatment", - "Treaty bodies", - "UPR process" - ] - }, - { - "text": "Modify its national laws to ensure that mothers can pass on nationality to their offspring regardless of the nationality of the father", - "values": [ - "Rights of the Child", - "Statelessness and the right to nationality", - "Women's rights" - ] - }, - { - "text": "Exert additional efforts to combat discrimination and xenophobia", - "values": [ - "Racial discrimination" - ] - }, - { - "text": "Reach the human rights goals set by the Council in its resolution 9-12.", - "values": [ - "General" - ] - }, - { - "text": "Continue to hold awareness-raising campaigns within Armenian society about the rights of national minorities, with the aim of further enhancing tolerance and non-discrimination in all spheres of public life", - "values": [ - "Human rights education and training", - "Minorities" - ] - }, - { - "text": "Take immediate action to ensure that legal guardians are appointed for unaccompanied minors and that proper accommodation and education are provided", - "values": [ - "Right to education", - "Right to housing", - "Rights of the Child" - ] - }, - { - "text": "Institute human rights education and training of members of civil society as well as of the public service and State-owned entities ", - "values": [ - "Civil society", - "Human rights education and training" - ] - }, - { - "text": "Ensure that all allegations of civilian casualties resulting from military operations on its territory are properly investigated and the perpetrators held accountable.", - "values": [ - "Human rights violations by state agents" - ] - }, - { - "text": "Take the necessary measures to establish a unified system of family courts to ensure full compliance with the State's obligation to protect, respect and enforce the right of access to justice for women, in family matters", - "values": [ - "Justice", - "Women's rights" - ] - }, - { - "text": "Take all necessary measures to prevent torture and other cruel, inhuman or degrading treatment in detention facilities, including through the provision of legal safeguards for detainees and ensure effective investigations into allegations of torture, as well as the prosecution and sentencing of perpetrators", - "values": [ - "Detention", - "Torture and other CID treatment" - ] - }, - { - "text": "Abolish the death penalty and reintroduce the moratorium ", - "values": [ - "Death penalty" - ] - }, - { - "text": "Expedite the adoption process of draft framework law 5125 on disability in order to contribute to the due implementation and fulfilment of the Convention on the Rights of Persons with Disabilities", - "values": [ - "Disabilities" - ] - }, - { - "text": "That further measures be taken in the areas of economic and social rights for women and minorities, including providing equal access to decent work and reducing the number of homeless people ", - "values": [ - "Minorities", - "Right to housing", - "Women's rights" - ] - }, - { - "text": "Strengthen the freedom of expression and the media so that all journalists can carry out their activities freely and without intimidation and those imprisoned in connection with their work can be released without delay", - "values": [ - "Detention", - "Freedom of opinion and expression", - "Freedom of the press" - ] - }, - { - "text": "Improve the protection of children, taking measures to prevent forced and early marriage, and eliminate child labour", - "values": [ - "Labour", - "Rights of the Child", - "Women's rights" - ] - }, - { - "text": "Continue to achieve economic growth aimed at raising the standard of living of the population and improving the social, health and educational situation of poor people", - "values": [ - "Poverty", - "Right to education", - "Right to health" - ] - }, - { - "text": "Speed up the approval process, by the Federal Parliament, of the Convention on Preventing and Combating Violence against Women and Domestic Violence (the Istanbul Convention) and take all the necessary measures to promote women\u2019s rights", - "values": [ - "International instruments", - "Rights of the Child", - "Women's rights" - ] - }, - { - "text": "Continue to implement Child Protection Act", - "values": [ - "Rights of the Child" - ] - }, - { - "text": "Allocate appropriate resources to reducing backlog and delays in the administration of cases in courts", - "values": [ - "Justice" - ] - }, - { - "text": "Establish close cooperation with the United Nations country team and the Committee on the Elimination of Discrimination against Women in order to address concerns raised by them regarding the application of the Act on Sexual Harassment in the Workplace and in Teaching, particularly in the private sector ", - "values": [ - "Treaty bodies", - "Women's rights" - ] - }, - { - "text": "Making more efforts to spread human rights culture in the educational field at various levels", - "values": [ - "Human rights education and training" - ] - }, - { - "text": "Adopt measures that guarantee the rights of citizens to peaceful demonstration and freedom of expression", - "values": [ - "Freedom of association and peaceful assembly", - "Freedom of opinion and expression" - ] - }, - { - "text": "Continue to formulate and implement policies that enhance and develop the capacity of women to fulfil their responsibilities as key partners in the development process", - "values": [ - "Women's rights" - ] - }, - { - "text": "Take steps to ratify the remaining five core UN human rights treaties namely the International Covenant on Economic, Social and Cultural Rights, the International Convention on the Elimination of All Forms of Racial Discrimination, the Convention against Torture and Other Cruel, Inhuman or Degrading Treatment or Punishment, and the International Convention on the Protection of the Rights of All Migrant Workers and Members of Their Families", - "values": [ - "ESC rights - general", - "International instruments", - "Labour", - "Migrants", - "Racial discrimination", - "Torture and other CID treatment" - ] - }, - { - "text": "Continue its efforts in strengthening its national legal frameworks including by taking concrete steps towards the accession of the Convention against Torture", - "values": [ - "International instruments", - "Torture and other CID treatment" - ] - }, - { - "text": "Take effective steps to implement the new legislation enacted in 2009 regarding the family (Lei da Familia), domestic violence (Lei Contra Violência Doméstica) and trafficking (Lei contra Tráfico de Pessoas) to address the issue of sexual abuse, exploitation and trafficking of children in order to hold perpetrators accountable and provide means of redress and protection for victims ", - "values": [ - "Rights of the Child", - "Trafficking", - "Women's rights" - ] - }, - { - "text": "Continue to adequately resource its provincial schools building programme so that more children, particularly those from poor rural communities, can have access to schools that are safe and adequately equipped", - "values": [ - "Right to education", - "Rights of the Child" - ] - }, - { - "text": "Continue strengthening the institutional and administrative capacities of the civil service while expanding the action against corruption, especially in the health-care, education and judiciary sectors ", - "values": [ - "Corruption" - ] - }, - { - "text": "Explore the possibility of consolidating existing Ombudsman institutions and mechanisms into a single national human rights institution in line with the Paris Principles, through accreditation by the International Coordinating Committee of National Human Rights Institutions", - "values": [ - "National Human Rights Institution" - ] - }, - { - "text": "Guarantee that its national mechanism respects all the provisions of the Optional Protocol to the Convention Against Torture, ensuring that it has all the necessary financial and human resources", - "values": [ - "Detention", - "International instruments", - "Torture and other CID treatment" - ] - }, - { - "text": "Develop clear guidelines on how to identify and protect victims of trafficking in persons", - "values": [ - "Trafficking" - ] - }, - { - "text": "Consider ratifying the Optional protocol to Convention on the Rights of the Child ", - "values": [ - "International instruments", - "Rights of the Child" - ] - }, - { - "text": "Hold a public debate on the death penalty, in which all aspects of the issue should be highlighted in a holistic manner", - "values": [ - "Death penalty" - ] - }, - { - "text": "Take urgent steps to adopt all appropriate measures to combat the root causes of political instability in Guinea-Bissau, including tackling illicit drug-related corruption and money-laundering", - "values": [ - "Corruption", - "Public security" - ] - }, - { - "text": "Allocate sufficient resources and adopt effective measures to further establish and implement national strategies on human rights, including a national action plan on human rights, an action plan on children's rights, the National Action Plan on Gender-based Violence and the national action plan for zero hunger", - "values": [ - "Right to food", - "Rights of the Child", - "Women's rights" - ] - }, - { - "text": "Ensure that the Executive continues providing all necessary support to the judiciary to make progress in the investigation of cases of human rights violations which took place during the dictatorship, and that it further continues providing all necessary support to the work of the Comision de Seguimiento de la Comision para la Paz.", - "values": [ - "Justice" - ] - }, - { - "text": "Fully apply the Law of the Child Act", - "values": [ - "Rights of the Child" - ] - }, - { - "text": "Pay special attention to acts of violence against homosexuals ", - "values": [ - "Sexual Orientation and Gender Identity" - ] - }, - { - "text": "Ratify as soon as possible the main international human rights treaties, mainly the International Covenant on Civil and Political Rights and the International Covenant on Economic, Social and Cultural Rights and ensure their effective implementation ", - "values": [ - "CP rights - general", - "ESC rights - general", - "International instruments" - ] - }, - { - "text": "Increase efforts to develop the Swiss Resource Centre for Human Rights into a national human rights institution in compliance with the Paris Principles", - "values": [ - "National Human Rights Institution" - ] - }, - { - "text": "Prosecute the perpetrators of trafficking and sexual exploitation of women and children", - "values": [ - "Rights of the Child", - "Trafficking", - "Women's rights" - ] - }, - { - "text": "Implement the Security Council resolutions on Women, Peace and Security, by ensuring, in particular, participation of women on an equal footing and at every level of responsibility in the reconciliation process ", - "values": [ - "Women's rights" - ] - }, - { - "text": "Improve the prison system and speed up the penal processes so that each person may know judicial resolutions in appropriate times", - "values": [ - "Detention", - "Justice" - ] - }, - { - "text": "Ratify the following international instruments: the International Convention on the Protection of the Rights of All Migrant Workers and Members of their Families (CMW)", - "values": [ - "International instruments", - "Labour", - "Migrants" - ] - }, - { - "text": "Implement effective measures to achieve the aim of increasing the participation of women in governance to 45 per cent in the public sector and over ten per cent in the private sector by 2014 ", - "values": [ - "Women's rights" - ] - }, - { - "text": "Address concerns arising under the Organic Act on Communication (2013) which impose an increased level of self-censorship on media outlets", - "values": [ - "Civil society" - ] - }, - { - "text": "Share with other countries good practices and achieved developments ", - "values": [ - "Development" - ] - }, - { - "text": "Create by law a national institution to ensure the fulfilment and application of human rights for the entire population without distinction of any kind and provide increased financial and human resources to the Office of the Equal Opportunities Ombudsperson", - "values": [ - "National Human Rights Institution" - ] - }, - { - "text": "Review the legislation and national public policies regarding the rights of the child in the light of the Convention on the Rights of the Child and its Optional Protocols", - "values": [ - "International instruments", - "Rights of the Child" - ] - }, - { - "text": "Consider the elimination of the death penalty and, in all events, adjust its implementation to the provisions of Article 6 of the Covenant on Civil and Political Rights", - "values": [ - "Death penalty", - "International instruments" - ] - }, - { - "text": "Continue the efforts undertaken by the Government to guarantee inhabitants access to adequate housing and take the legal measures required to ensure the right to land tenure, in conformity with international law and international standards, and thus avoiding forced evictions", - "values": [ - "Right to housing" - ] - }, - { - "text": "That the National Constituent Assembly seize the opportunity to incorporate into the new Constitution those fundamental rights and guarantees enshrined in the international treaties which it has ratified ", - "values": [ - "International instruments" - ] - }, - { - "text": "Implement fully law No. 38-01 on the protection of the Slovenian minority in Italy, and Law No. 482-99", - "values": [ - "Minorities" - ] - }, - { - "text": "Continue efforts to promote and protect the rights of all segments of the population ", - "values": [ - "General" - ] - }, - { - "text": "Make fully operational the National Observatory for the rights of children and clearly define its coordinating role", - "values": [ - "Rights of the Child" - ] - }, - { - "text": "Consolidate economic, social and cultural rights ", - "values": [ - "ESC rights - general" - ] - }, - { - "text": "Extend and implement a standing invitation to all special procedures of the Human Rights Council", - "values": [ - "Special procedures" - ] - }, - { - "text": "Continue efforts aimed at the implementation of the Millennium Development Goals and achieve prosperity for the people, in particular by facilitating access for the population to the necessary health services", - "values": [ - "Development", - "Right to health" - ] - }, - { - "text": "Explicitly prohibit corporal punishment of children in all settings, including the home and detention facilities ", - "values": [ - "Detention", - "Rights of the Child", - "Torture and other CID treatment" - ] - }, - { - "text": "Deploy all necessary measures to ensure the quick adoption and implementation of the law on nationality to give nationality to children of Bahraini women married to foreigners", - "values": [ - "Rights of the Child", - "Statelessness and the right to nationality" - ] - }, - { - "text": "Strengthen public policies so that children from disadvantaged backgrounds and foreign origin may enjoy the best possible level of education", - "values": [ - "Asylum-seekers - refugees", - "Migrants", - "Right to education", - "Rights of the Child" - ] - }, - { - "text": "Abolish the discriminatory practice of forced and early marriage, high drop-out rates in schools and restrictions to university education for girls, and promote active participation of women in the society", - "values": [ - "Right to education", - "Rights of the Child", - "Women's rights" - ] - }, - { - "text": "Guarantee the free exercise of freedom of expression, particularly by investigating and prosecuting all attacks on journalists ", - "values": [ - "Freedom of opinion and expression", - "Freedom of the press" - ] - }, - { - "text": "Take steps to ensure the provision of adequate shelter, including staffing and durable resources, for victims of domestic violence", - "values": [ - "Rights of the Child", - "Women's rights" - ] - }, - { - "text": "Respond comprehensively toward both terrorism and terrorists", - "values": [ - "Public security" - ] - }, - { - "text": "Reduce the voting age from 20 years to 18 years ", - "values": [ - "Elections" - ] - }, - { - "text": "Refrain from adopting any laws providing for censorship or undue control over the content of the media ", - "values": [ - "Freedom of opinion and expression", - "Freedom of the press" - ] - }, - { - "text": "Ratify the International Convention on the Elimination of All Forms of Racial Discrimination, signed in 2015 ", - "values": [ - "International instruments", - "Racial discrimination" - ] - }, - { - "text": "Ensure the protection of religious minorities in accordance with international human rights standards and obligations, and eliminate discrimination based on religious affiliation ", - "values": [ - "Freedom of religion and belief", - "International instruments", - "Minorities" - ] - }, - { - "text": "Intensify all programmes to eradicate poverty in order to achieve Millennium Development Goals, with technical and material assistance from partners ", - "values": [ - "Poverty", - "Technical assistance and cooperation" - ] - }, - { - "text": "Ensure demobilisation of child soldiers and commit to integrating children in armed groups back into civilian life", - "values": [ - "International humanitarian law", - "Rights of the Child" - ] - }, - { - "text": "Implement a sanitation programme in order to eradicate poliomyelitis and tuberculosis which remain public health problems", - "values": [ - "Right to health", - "Right to water and sanitation" - ] - }, - { - "text": "Ensure the enforcement within the factories of international labour rules and guarantee the safety of workers as well as their right to set up unions ", - "values": [ - "Labour" - ] - }, - { - "text": "Undertake more effective measures to improve the security of women and girls, in particular those who live in the conflict and refugee areas. ", - "values": [ - "Rights of the Child", - "Women's rights" - ] - }, - { - "text": "Further implement its programmes and policies in the field of human rights, in particular the National Plan of Action on the Promotion and Protection of Human Rights", - "values": [ - "General" - ] - }, - { - "text": "Enforce the moratorium on new land concessions announced by the Government of the Lao People's Democratic Republic in June 2012 and reform the current system for the management of land leases and concessions", - "values": [ - "Right to land" - ] - }, - { - "text": "Refrain from stigmatizing and criminalizing the work of NGOs, human rights defenders and journalists", - "values": [ - "Civil society", - "Freedom of the press", - "Human rights defenders" - ] - }, - { - "text": "Further expand human rights education and training programmes", - "values": [ - "Human rights education and training" - ] - }, - { - "text": "Re-impose an immediate formal moratorium on the death penalty with a view of a complete abolition of the capital punishment ", - "values": [ - "Death penalty" - ] - }, - { - "text": "Consider reviewing the law related to abortion to guarantee access to abortion when pregnancy is a result of rape ", - "values": [ - "Women's rights" - ] - }, - { - "text": "Fight malaria and HIV-AIDS with the support of the international community ", - "values": [ - "HIV - Aids", - "Technical assistance and cooperation" - ] - }, - { - "text": "Allocate resources to educational programmes in order to change views and neutralize racist ideas that were spread by extremist groups", - "values": [ - "Racial discrimination" - ] - }, - { - "text": "Strengthen measures to guarantee the right to a nationality and include necessary safeguards to prevent statelessness of those born in the territory of the Dominican Republic ", - "values": [ - "Statelessness and the right to nationality" - ] - }, - { - "text": "Further promote the safety and living conditions of migrants, refugees and asylum seekers arriving in Australia", - "values": [ - "Asylum-seekers - refugees", - "Migrants" - ] - }, - { - "text": "Protect, respect and make a reality human rights for all people, regardless of their sexual orientation or their gender expression or identity", - "values": [ - "Sexual Orientation and Gender Identity" - ] - }, - { - "text": "Pass laws prohibiting female genital mutilation", - "values": [ - "Rights of the Child", - "Torture and other CID treatment", - "Women's rights" - ] - }, - { - "text": "Continue its efforts to promote the full integration of ethnic minorities into Latvian society and facilitate the naturalization and acquisition of citizenship, especially in the case of children ", - "values": [ - "Minorities", - "Rights of the Child" - ] - }, - { - "text": "Study the possibility of ratifying the ICRMW", - "values": [ - "International instruments", - "Labour", - "Migrants" - ] - }, - { - "text": "Address on a priority basis to, at the administrative and legislative level, the issue of the detention of persons with disabilities who have not been convicted", - "values": [ - "Detention", - "Disabilities" - ] - }, - { - "text": "The Government of Andorra has drafted an initial technical report on the possibility of adopting the provisions of the revised European Social Charter it had not previously accepted, taking into account the legislative changes that have occurred in Andorra since it ratified the Charter in 2004. Andorra can accept this recommendation and commits itself to\nratifying new Charter provisions with a view to guaranteeing the rights of workers in accordance with the Charter.", - "values": [ - "Labour" - ] - }, - { - "text": "Intensify efforts to improve the literacy rate among indigenous peoples and those living in the rural areas", - "values": [ - "Indigenous peoples", - "Right to education" - ] - }, - { - "text": "Continue to support children's homes ", - "values": [ - "Rights of the Child" - ] - }, - { - "text": "Work on enacting important and relevant human rights laws, particularly, Disability Act, National Commission for Human Rights Act, and Sexual Offences Act", - "values": [ - "Disabilities", - "Women's rights" - ] - }, - { - "text": "To continue to develop a gender-responsive approach to issues on women and children, including in the judicial system and on violence against women and children", - "values": [ - "Justice", - "Rights of the Child", - "Women's rights" - ] - }, - { - "text": "Continue promoting the right to education, in particular access to education for boys and girls from Afro-Panamanian, indigenous, rural and migrant communities", - "values": [ - "Indigenous peoples", - "Migrants", - "Right to education" - ] - }, - { - "text": "Sign and ratify also remaining core international human rights instruments (OP-ICESCR, ICCPR-OP1 and OP2, OP-CAT) ", - "values": [ - "CP rights - general", - "Death penalty", - "Detention", - "ESC rights - general", - "International instruments", - "Torture and other CID treatment" - ] - }, - { - "text": "As a follow-up to recommendations Micronesia accepted in the course of the first universal periodic review cycle, put forward a concrete plan with regard to the withdrawal of all reservations made to the Convention on the Elimination of All Forms of Discrimination against Women", - "values": [ - "International instruments", - "UPR process", - "Women's rights" - ] - }, - { - "text": "Promulgate the adopted texts in order to make them effective and operational", - "values": [ - "Other" - ] - }, - { - "text": "Adopt a National Action Plan on preventing and combating trafficking in human beings and pursue measures aimed at preventing trafficking and providing appropriate protection to victims", - "values": [ - "Trafficking" - ] - }, - { - "text": "Consider heeding the call of the Committee on the Elimination of Racial Discrimination for the establishment of a national human rights institution in accordance with the Paris Principles", - "values": [ - "National Human Rights Institution", - "Treaty bodies" - ] - }, - { - "text": "Sign ICRMW ", - "values": [ - "International instruments", - "Labour", - "Migrants" - ] - }, - { - "text": "Fully harmonize its domestic legislation in accordance with all its obligations under the Rome Statute, including the obligation to judge genocide, crimes against humanity and war crimes, and do so effectively through its domestic laws ", - "values": [ - "International instruments", - "Justice" - ] - }, - { - "text": "Establish an effective protection system for children", - "values": [ - "Rights of the Child" - ] - }, - { - "text": "Investigate all allegations of human rights violations and other crimes committed on Palestinian land and prosecute those responsible ", - "values": [ - "Other" - ] - }, - { - "text": "Promote tolerance and protect minorities and vulnerable groups", - "values": [ - "Minorities" - ] - }, - { - "text": "Adopt a mechanism for the protection of journalists and release all journalists detained for exercising their freedom of expression", - "values": [ - "Freedom of opinion and expression", - "Freedom of the press" - ] - }, - { - "text": "Take further efforts to protect the special cultures of the indigenous people and enhance protection to the cultural archaeology", - "values": [ - "ESC rights - general", - "Indigenous peoples" - ] - }, - { - "text": "Carry on with the consultations to ratify the major international human rights instruments", - "values": [ - "International instruments" - ] - }, - { - "text": "Tackle the roots of gender inequality through concrete actions aimed at safeguarding women's rights within the family as well as appropriate measures of awareness-raising and human rights education ", - "values": [ - "Human rights education and training", - "Women's rights" - ] - }, - { - "text": "Continue pursuing efforts to combat human trafficking, with emphasis on protection of victims ", - "values": [ - "Trafficking" - ] - }, - { - "text": "Decriminalize homosexuality by abrogating the criminal provision prohibiting sexual relations between consenting adults of the same sex, and subscribe to the General Assembly Declaration of December 2008 on human rights and sexual orientation ", - "values": [ - "Sexual Orientation and Gender Identity" - ] - }, - { - "text": "Abandon the policy and practice of discrimination, forced assimilation and persecution against ethnic and religious minorities ", - "values": [ - "Freedom of religion and belief", - "Minorities", - "Racial discrimination" - ] - }, - { - "text": "Continue its efforts in order to clarify the crimes perpetrated during the armed conflict, in particular regarding enforced disappearances and extrajudicial killings and prosecute those responsible ", - "values": [ - "Enforced disappearances", - "Extrajudicial executions" - ] - }, - { - "text": "Continue its efforts with a view to adopting HIV/AIDS care programs, including support services and effective prevention campaigns ", - "values": [ - "HIV - Aids" - ] - }, - { - "text": "Repeal laws that discriminate against LGBTs", - "values": [ - "Sexual Orientation and Gender Identity" - ] - }, - { - "text": "Review the legislation on blasphemy to align it with the principles of freedom of thought, conscience and religion and inter alia relevant obligations under the ICCPR.", - "values": [ - "CP rights - general", - "Freedom of opinion and expression", - "Freedom of religion and belief", - "International instruments" - ] - }, - { - "text": "Prohibit all discriminatory practices and criminalize defamation, slander and incitement to discrimination, hostility or violence, whether they are public or not, towards a person or a group of persons because of their sexual orientation ", - "values": [ - "Sexual Orientation and Gender Identity" - ] - }, - { - "text": "Review the Libyan Penal Code articles limiting fundamental freedoms and release all individuals held solely for the peaceful exercise of their right to freedom of expression, assembly and association", - "values": [ - "Detention", - "Freedom of association and peaceful assembly", - "Freedom of opinion and expression" - ] - }, - { - "text": "Increase the minimum age of voluntary recruitment into the army to 18 years", - "values": [ - "Rights of the Child" - ] - }, - { - "text": "Consider elaborating an integrated national strategy to address the different forms of violence against women", - "values": [ - "Women's rights" - ] - }, - { - "text": "Provide increased support to the family as the dominant and only natural environment suitable for raising children, to ensure adequate protection", - "values": [ - "Other" - ] - }, - { - "text": "Redouble efforts to end traditional practices against human rights of women such as FGM ", - "values": [ - "Rights of the Child", - "Torture and other CID treatment", - "Women's rights" - ] - }, - { - "text": "Intensify efforts to implement its express commitment to establish a national human rights institution in accordance with the Paris Principles", - "values": [ - "National Human Rights Institution" - ] - }, - { - "text": "Take all appropriate measures, in the fields of legislation, implementation and awareness-raising, to tackle domestic violence against women and children.", - "values": [ - "Human rights education and training", - "Rights of the Child", - "Women's rights" - ] - }, - { - "text": "Ensure that human rights defenders can perform their legitimate duties free from any harassment and intimidation in line with international standards including the UN Declaration on HR Defenders ", - "values": [ - "Human rights defenders", - "International instruments" - ] - }, - { - "text": "Establish an independent mechanism for the monitoring of the situation of persons with disabilities", - "values": [ - "Disabilities" - ] - }, - { - "text": "Continue to implement programmes and measures to combat and prevent racism, racial discrimination and xenophobia, and ensure further progress in terms of equal opportunities", - "values": [ - "Racial discrimination" - ] - }, - { - "text": "Take adequate measures for the safety of civil society, including political activists and journalists, conduct impartial, thorough and effective investigations into all cases of attacks, harassment, and intimidation against them and bring perpetrators of such offenses to justice ", - "values": [ - "Civil society", - "Freedom of association and peaceful assembly", - "Freedom of the press" - ] - }, - { - "text": "Continue efforts for the promotion and protection of rights of women and devise policies for their empowerment", - "values": [ - "Women's rights" - ] - }, - { - "text": "Issue a standing invitation for all special procedures and respond positively to all outstanding invitations ", - "values": [ - "Special procedures" - ] - }, - { - "text": "Continue to ensure the effective implementation of measures such as the establishment of telephone hotlines and care centres for victims of violence, as well as harsher penalties for violence against women and, if necessary, introduce further practical policies to prevent all forms of violence against women, and to support the victims of such abuse", - "values": [ - "Women's rights" - ] - }, - { - "text": "Continue its efforts to raise public awareness and give special attention to the fight against racism, discrimination, xenophobia and intolerance", - "values": [ - "Human rights education and training", - "Racial discrimination" - ] - }, - { - "text": "Immediate implementation of recommendations of LLRC Action Plan including on accountability process, through Sri Lanka's National Plan of Action on Human Rights and other relevant mechanisms", - "values": [ - "Justice" - ] - }, - { - "text": "Address the claims of discriminatory treatment of\nminorities", - "values": [ - "Minorities" - ] - }, - { - "text": "Take necessary measures to implement a gender prospective in education at all levels, including by training teachers", - "values": [ - "Right to education", - "Women's rights" - ] - }, - { - "text": "Take steps to establish an independent national human rights institution in line with the Paris Principles", - "values": [ - "National Human Rights Institution" - ] - }, - { - "text": "Ensure that the establishment of the Independent Human Rights Commission Bill is Paris Principle compliant and that the establishment is in line with a transparent and inclusive nomination and appointment process", - "values": [ - "National Human Rights Institution" - ] - }, - { - "text": "Enhance its engagement with its partners to better protect the rights and welfare of migrant workers and members of their families", - "values": [ - "Labour", - "Migrants" - ] - }, - { - "text": "Promote reproductive and sexual health education for adolescents in view of importance of preventive measures to fight increase sexually transmitted diseases including HIV/AIDS", - "values": [ - "HIV - Aids", - "Right to health" - ] - }, - { - "text": "Ensure that the granting of land concessions or the withdrawal of land titles or the legal rights to land use does not lead to violations of human rights ", - "values": [ - "Right to land" - ] - }, - { - "text": "Create a framework where civil society, including active human rights NGOs, can be included in the follow-up to the UPR without any fear of retaliation", - "values": [ - "Civil society", - "Freedom of association and peaceful assembly", - "UPR process" - ] - }, - { - "text": "Ensure, as recommended by the Committee on the Elimination of Discrimination against Women, that women can have access contraception without requesting their husband\u2019s consent", - "values": [ - "International instruments", - "Right to health", - "Treaty bodies", - "Women's rights" - ] - }, - { - "text": "Implement the constructive recommendations of the LLRC, including the removal of the military from civilian functions, creation of mechanisms to address cases of the missing and detained, issuance of death certificates, land reform, devolution of power, and disarming paramilitaries", - "values": [ - "Justice" - ] - }, - { - "text": "Encourage full implementation of the 2004 Children's Code, in the area of education, prevention and reinsertion", - "values": [ - "Rights of the Child" - ] - }, - { - "text": "Continue to promote gender equality and the empowerment of women especially through access to quality education", - "values": [ - "Right to education", - "Women's rights" - ] - }, - { - "text": "Strengthen its obligations under the Strategy for Roma Integration with a view to effectively combating racism, racial discrimination, xenophobia and other interrelated forms of intolerance ", - "values": [ - "Minorities", - "Racial discrimination" - ] - }, - { - "text": "Implement policies to guarantee the rights of displaced persons and provide durable solutions for return, integration and/or resettlement ", - "values": [ - "Internally displaced persons" - ] - }, - { - "text": "Allow persons originating from countries in conflict and other situations of violence and thus granted temporary subsidiary protection status to initiate family reunification proceedings during their first year in Denmark", - "values": [ - "Asylum-seekers - refugees" - ] - }, - { - "text": "Consider ratifying the Second Optional Protocol to the International Covenant on Civil and Political Rights with a view to total abolishment of the death penalty", - "values": [ - "Death penalty", - "International instruments" - ] - }, - { - "text": "Increase efforts to fulfil engagements and obligation stemming from ratified Conventions.", - "values": [ - "International instruments" - ] - }, - { - "text": "Speed up the birth registration process of women who are not in possession of birth certificates and identity documents, in particular in the rural and remote areas of the country", - "values": [ - "Rights of the Child", - "Statelessness and the right to nationality" - ] - }, - { - "text": "Establish an effective legal and judicial process for investigating cases of child disappearance and to ensure that those found responsible are brought to justice", - "values": [ - "Enforced disappearances", - "Rights of the Child" - ] - }, - { - "text": "Put in place measures to protect members of non-conventional family models from discrimination in terms of employment, immigration, family-related social welfare and other public benefits", - "values": [ - "Sexual Orientation and Gender Identity" - ] - }, - { - "text": "End the paralysis of the Constitutional Tribunal by appointing new judges", - "values": [ - "Justice" - ] - }, - { - "text": "Continue to improve its capacity to uphold human rights, including by increasing the Commission on Human Rights' (CHR) fiscal autonomy and organizational capacity, as well as further efforts to prevent human rights violations by Armed Forces of the Philippines and Philippines National Police personnel", - "values": [ - "National Human Rights Institution" - ] - }, - { - "text": "Continue its efforts towards human rights training, capacity-building and human rights education, especially through integrating human rights in the educational curriculum", - "values": [ - "Human rights education and training" - ] - }, - { - "text": "Continue its efforts to ensure a comprehensive approach to migrant workers' rights by considering its accession to the International Convention on the Protection of the Rights of All Migrant Workers and Members of Their Families", - "values": [ - "International instruments", - "Labour", - "Migrants" - ] - }, - { - "text": "Combat the increasing number of femicide-cases by ensuring the provision of financial resources for the effective implementation of the Law against Femicide and by implementing and adequately funding and coordinating the National Plan for the Prevention of Domestic Violence and Violence against Women", - "values": [ - "Women's rights" - ] - }, - { - "text": "Develop primary health care guaranteeing access to medical services for all children, particularly those from the Roma community", - "values": [ - "Minorities", - "Right to health", - "Rights of the Child" - ] - }, - { - "text": "Apply mandatory training of police in the appropriate use of force ", - "values": [ - "Human rights education and training" - ] - }, - { - "text": "Intensify efforts on social inclusion and protection of the rights of vulnerable groups, in particular, provide equal access to the Roma community in employment, education, housing and social care", - "values": [ - "Labour", - "Minorities", - "Right to education", - "Right to housing" - ] - }, - { - "text": "Make efforts to correct formulations in the Penal Code that cover rape and sexual abuse which make reference to the marital relations between victim and alleged perpetrator that have an actual influence on sentences ", - "values": [ - "Justice", - "Women's rights" - ] - }, - { - "text": "Call on the international community to support Sierra Leone's efforts through development assistance, technical assistance and capacity-building ", - "values": [ - "Technical assistance and cooperation" - ] - }, - { - "text": "Take measures to end and prevent attacks against civilians. Conduct transparent investigations of allegations of human rights violations and abuses, and hold perpetrators accountable ", - "values": [ - "International humanitarian law" - ] - }, - { - "text": "Speed up the establishment of a Truth and Reconciliation Commission ", - "values": [ - "Justice" - ] - }, - { - "text": "Guarantee freedom of peaceful assembly and association by implementing the new Public Order Bill", - "values": [ - "Freedom of association and peaceful assembly" - ] - }, - { - "text": "Urgently develop and implement an action plan to implement the Strategy for the Repatriation of Meskhetians 2014", - "values": [ - "Minorities" - ] - }, - { - "text": "Strengthen the measures taken on the fight against discrimination against women", - "values": [ - "Women's rights" - ] - }, - { - "text": "Step up the fight against communicable and non-communicable diseases, with a view to lowering the particularly high mortality rate", - "values": [ - "Right to health" - ] - }, - { - "text": "Introduction and implementation of fully comprehensive anti- discrimination legislation to include sexual orientation and gender", - "values": [ - "Sexual Orientation and Gender Identity" - ] - }, - { - "text": "Continue the efforts to ratify the Convention on the Rights of Persons with Disabilities ", - "values": [ - "Disabilities", - "International instruments" - ] - }, - { - "text": "Ratify Optional Protocol to the Convention against Torture and Other Cruel, Inhuman or Degrading Treatment or Punishment", - "values": [ - "Detention", - "International instruments", - "Torture and other CID treatment" - ] - }, - { - "text": "Designate an Ombudsperson for children.", - "values": [ - "National Human Rights Institution", - "Rights of the Child" - ] - }, - { - "text": "Take necessary measures, including public campaigns and training of teachers and other teaching staff, to raise awareness of the value of intercultural integration and combat all forms of racism and xenophobia", - "values": [ - "Human rights education and training", - "Racial discrimination" - ] - }, - { - "text": "Continue its efforts to fulfil the economic, social and cultural rights of all", - "values": [ - "ESC rights - general" - ] - }, - { - "text": "Strengthen its measures to eradicate child labour", - "values": [ - "Labour", - "Rights of the Child" - ] - }, - { - "text": "Accompany the implementation of the Convention on the Rights of Persons with Disabilities with sufficient funds and concrete indicators through a new national disability policy (VAMPO) that continues the 2010-2015 policy", - "values": [ - "Disabilities", - "International instruments" - ] - }, - { - "text": "Extend the coverage of gender equality programmes and institutions such as the national council of women into rural areas in order to combat gender-based discrimination and violence", - "values": [ - "Women's rights" - ] - }, - { - "text": "Introduce legislation to prohibit corporal punishment in all areas, including in the family, school and all places of deprivation of liberty, taking into account general comment No. 8 of the Committee ", - "values": [ - "Rights of the Child", - "Torture and other CID treatment", - "Treaty bodies" - ] - }, - { - "text": "Make every effort to completely abolish all forms of discrimination against women ", - "values": [ - "Women's rights" - ] - }, - { - "text": "Adopt legal instructions and orders to all armed forces, military intelligence and allied militia, with the aim to prevent and punish all abuses, including crimes of sexual and gender-based violence", - "values": [ - "Human rights violations by state agents", - "International humanitarian law", - "Rights of the Child", - "Women's rights" - ] - }, - { - "text": "Take effective policy measures in order to combat racism, intolerance, stereotypes and unlawful attitudes against ethnic and religious minorities and take legislative measures that prohibit hate speech", - "values": [ - "Freedom of religion and belief", - "Minorities", - "Racial discrimination" - ] - }, - { - "text": "Investigate all cases of xenophobic violence", - "values": [ - "Racial discrimination" - ] - }, - { - "text": "Establish an effective organization within the Government for implementing the child protection programme as an initial step ", - "values": [ - "Rights of the Child" - ] - }, - { - "text": "Establish a programme of medical, psychological and social assistance for teenage mothers and develop a support network for young women to continue their studies ", - "values": [ - "Women's rights" - ] - }, - { - "text": "Finalize the enactment process of the law on national minorities", - "values": [ - "Minorities" - ] - }, - { - "text": "Apply stronger measures to combat violence against women, as a follow-up to the National Strategy for the Elimination of Violence against Women 2013-2016", - "values": [ - "Women's rights" - ] - }, - { - "text": "Decriminalize consensual sexual relations between consenting adults of the same sex", - "values": [ - "Sexual Orientation and Gender Identity" - ] - }, - { - "text": "Continue its efforts in protecting the rights of persons with disabilities and make its experience available in the framework of sharing best practices ", - "values": [ - "Disabilities" - ] - }, - { - "text": "Decriminalize sexual activity between consenting adults of the same sex", - "values": [ - "Sexual Orientation and Gender Identity" - ] - }, - { - "text": "Fulfil its obligations under the International Covenant on Economic, Social and Cultural Rights so that the Russian-speaking linguistic minority fully enjoys the right to equal opportunities in the labour market", - "values": [ - "International instruments", - "Labour", - "Minorities" - ] - }, - { - "text": "Investigate duly and promptly allegations of misconduct, abuse and violence by public agents and take adequate action against those responsible for such crimes.", - "values": [ - "Human rights violations by state agents" - ] - }, - { - "text": "Take all measures to ensure that the forthcoming elections are peaceful, free and fair and occur in a climate free of intimidation and where the right of assembly is fully respected.", - "values": [ - "Elections", - "Freedom of association and peaceful assembly" - ] - }, - { - "text": "Guarantee freedom of expression, the press, assembly and association, as well as freedom of religion and belief in accordance with the International Covenant on Civil and Political Rights", - "values": [ - "Freedom of association and peaceful assembly", - "Freedom of opinion and expression", - "Freedom of religion and belief", - "Freedom of the press", - "International instruments" - ] - }, - { - "text": "The Albanian Government is committed to implementing the National Strategy and Action Plan for the Decade of Roma Inclusion in order to improve the living standards of Roma community. An effective mechanism is set up to monitor and evaluate the progress at the national level of the National Strategy on Roma and the National Action Plan "Decade of Roma Inclusion" as well as the cooperation among institutions at the central and local level", - "values": [ - "Minorities" - ] - }, - { - "text": "Deepen measures aimed at guaranteeing the rights of migrants, asylum seekers and refugees, particularly to end the acts of discrimination and violence, and to investigate, prosecute and punish the perpetrators", - "values": [ - "Asylum-seekers - refugees", - "Migrants", - "Racial discrimination" - ] - }, - { - "text": "Adopt national policies that protect and guarantee the rights of all migrant workers in Costa Rica, in particular to address the needs of women and children ", - "values": [ - "Labour", - "Migrants", - "Rights of the Child", - "Women's rights" - ] - }, - { - "text": "Promote rights to education and health in disadvantaged and underprivileged areas ", - "values": [ - "Right to education", - "Right to health" - ] - }, - { - "text": "Continue measures to strengthen the independence of the judiciary", - "values": [ - "Justice" - ] - }, - { - "text": "Strengthen measures to reduce the high prevalence of HIV/AIDS among women and mother-to-child transmissions", - "values": [ - "HIV - Aids", - "Women's rights" - ] - }, - { - "text": "Continue its efforts to enhance capacity-building for law enforcement officials in the area of human rights", - "values": [ - "Human rights education and training" - ] - }, - { - "text": "Consider establishing a Wages Commission on Domestic Workers ", - "values": [ - "Labour" - ] - }, - { - "text": "Pursue efforts regarding the fight against extreme poverty", - "values": [ - "Poverty" - ] - }, - { - "text": "Accede to the Rome Statute of the International Criminal Court, including its Agreement on Privileges and Immunities", - "values": [ - "International instruments", - "Justice" - ] - }, - { - "text": "Accede to the ILO Convention 189 ", - "values": [ - "International instruments", - "Labour" - ] - }, - { - "text": "Continue the constitutional reform to create a more comprehensive framework for the promotion and protection of human rights", - "values": [ - "General" - ] - }, - { - "text": "Expedite the investigation of all human rights allegations with a view towards bringing the perpetrators to justice ", - "values": [ - "General" - ] - }, - { - "text": "Fully implement CAT, emphasizing the strengthening of training and capacity building programmes for the police and military officers, and the harmonization of local laws with the Convention ", - "values": [ - "International instruments", - "Torture and other CID treatment" - ] - }, - { - "text": "Criminalize human trafficking, especially child trafficking, while providing protection and assistance to the victims", - "values": [ - "Rights of the Child", - "Trafficking" - ] - }, - { - "text": "Enhance the political participation law", - "values": [ - "Freedom of association and peaceful assembly" - ] - }, - { - "text": "Take further steps to combat extrajudicial killings and enforced disappearances, including by providing sufficient funding to the national police force and by ensuring that alleged perpetrators of extrajudicial killings are swiftly brought to justice ", - "values": [ - "Enforced disappearances", - "Extrajudicial executions" - ] - }, - { - "text": "Continue its efforts to improve the status of women and ensure their full participation in all areas of life", - "values": [ - "Women's rights" - ] - }, - { - "text": "Make additional efforts to fight against homophobia, discrimination and violence against LGBT persons", - "values": [ - "Sexual Orientation and Gender Identity" - ] - }, - { - "text": "Adopt a clear and comprehensive definition of racial discrimination in its legislation", - "values": [ - "Racial discrimination" - ] - }, - { - "text": "Continue combating female genital mutilation", - "values": [ - "Rights of the Child", - "Torture and other CID treatment", - "Women's rights" - ] - }, - { - "text": "Consolidate the achievements made, particularly through gender mainstreaming in all fields, grant autonomy to women, and face challenges arising in this regard, particularly the fight against violence against women ", - "values": [ - "Women's rights" - ] - }, - { - "text": "Ratify the Optional Protocol to the Convention against Torture and establish the national torture preventive mechanism", - "values": [ - "Detention", - "International instruments", - "Torture and other CID treatment" - ] - }, - { - "text": "Accede to and adapt its national legislation to the Rome Statute of the International Criminal Court", - "values": [ - "International instruments", - "Justice" - ] - }, - { - "text": "Submit outstanding reports to treaty bodies and in this regard, the concrete timetable to submit the outstanding reports within the framework of the International Convention on the Elimination of All Forms of Racial Discrimination (December 2008), the International Covenant on Economic, Social and Cultural Rights (December 2008), International Covenant on Civil and Political Rights (June 2009)", - "values": [ - "CP rights - general", - "ESC rights - general", - "Racial discrimination", - "Treaty bodies" - ] - }, - { - "text": "Allow the Commission of Inquiry to go to the Syrian Arab Republic in order to pursue its work and investigations in conformity with the mandate assigned to it by the Human Rights Council, and fully cooperate with the Commission", - "values": [ - "Technical assistance and cooperation" - ] - }, - { - "text": "Reform the Communication Code", - "values": [ - "Freedom of the press" - ] - }, - { - "text": "Ratify the Second Optional Protocol to ICCPR aiming at the abolition of the death penalty ", - "values": [ - "Death penalty", - "International instruments" - ] - }, - { - "text": "Continue its cooperation with the United Nations, other international organizations and human rights mechanisms to overcome remaining constraints and challenges", - "values": [ - "Technical assistance and cooperation" - ] - }, - { - "text": "Facilitate a visit by the Special Rapporteur on the situation of human rights defenders", - "values": [ - "Human rights defenders", - "Special procedures" - ] - }, - { - "text": "Create and implement, in conjunction with all social partners, a holistic policy aimed at progressively eradicate child labour", - "values": [ - "Labour", - "Rights of the Child" - ] - }, - { - "text": "Continue to extend the range of fundamental international instruments to which Sao Tome is already a party ", - "values": [ - "International instruments" - ] - }, - { - "text": "Reform the Penal Code to eliminate homosexuality as a criminal offence ", - "values": [ - "Sexual Orientation and Gender Identity" - ] - }, - { - "text": "Continue its active participation in international human rights cooperation and carry out more international technical assistance programmes in human rights ", - "values": [ - "Technical assistance and cooperation" - ] - }, - { - "text": "Impose a moratorium on the execution of death sentences ", - "values": [ - "Death penalty" - ] - }, - { - "text": "Continue its efforts to eradicate violence against women and children and continue implementing the national strategy to fight against sexual violence in order to eliminate this phenomenon", - "values": [ - "Rights of the Child", - "Women's rights" - ] - }, - { - "text": "Make efforts to ratify ICCPR and ICESCR ", - "values": [ - "CP rights - general", - "ESC rights - general", - "International instruments" - ] - }, - { - "text": "Include a gender perspective into the UPR follow-up process in a systematic and continuous manner.", - "values": [ - "UPR process", - "Women's rights" - ] - }, - { - "text": "Ratify, as soon as possible, the Second Optional Protocol to the International Covenant on Civil and Political Rights ", - "values": [ - "Death penalty", - "International instruments" - ] - }, - { - "text": "Ensure a safe environment for human rights defenders' activities and that perpetrators of the murders, attacks, threats and harassment of human rights defenders be brought to justice.", - "values": [ - "Human rights defenders" - ] - }, - { - "text": "Take adequate measures to protect its population from violence committed by the security forces and establish an independent mechanism for the investigation of complaints regarding abuses carried out by law enforcement officials ", - "values": [ - "Human rights violations by state agents", - "Justice" - ] - }, - { - "text": "Undertake measures to assist and protect the most vulnerable social groups ", - "values": [ - "Minorities" - ] - }, - { - "text": "Consider ratifying the Optional Protocol to the International Covenant on Civil and Political Rights, aiming at the abolition of the death penalty", - "values": [ - "Death penalty", - "International instruments" - ] - }, - { - "text": "Take concrete action to end impunity in Darfur ", - "values": [ - "Impunity" - ] - }, - { - "text": "Counter the trend towards the repression of free speech, including restrictions of web-based media", - "values": [ - "Freedom of opinion and expression" - ] - }, - { - "text": "Work for universal free and compulsory basic education for school-age children", - "values": [ - "Right to education", - "Rights of the Child" - ] - }, - { - "text": "Continue implementing and strengthening measures to promote equality and protection against all forms of discrimination, placing special emphasis on the most vulnerable minority groups ", - "values": [ - "Minorities", - "Racial discrimination" - ] - }, - { - "text": "Continue the provision of social housing to the rural communities with the aim of improving their living conditions ", - "values": [ - "Right to housing" - ] - }, - { - "text": "Give consideration to implement laws prohibiting sexual discrimination and affirmative action policies aimed at increasing women's participation in Parliament ", - "values": [ - "Women's rights" - ] - }, - { - "text": "Take appropriate steps to accelerate the ratification process on the International Convention on the Elimination of All Forms of Racial Discrimination", - "values": [ - "International instruments", - "Racial discrimination" - ] - }, - { - "text": "Put an end to the use of religious profiling in combating terrorism by inserting legal safeguards against abuse and the deliberate targeting of certain religious groups ", - "values": [ - "Counter-terrorism", - "Freedom of religion and belief" - ] - }, - { - "text": "Sign and ratify CAT and ICCPR ", - "values": [ - "CP rights - general", - "International instruments", - "Torture and other CID treatment" - ] - }, - { - "text": "Strengthen measures in response to reported violence against women and girls, and, in the worst cases of honor crimes and end impunity", - "values": [ - "Impunity", - "Rights of the Child", - "Women's rights" - ] - }, - { - "text": "Issue an open invitation to the Special Procedures ", - "values": [ - "Special procedures" - ] - }, - { - "text": "Recommended that the mandate of the Higher Committee on Human Rights and Fundamental Freedoms be aligned with the Paris Principles.", - "values": [ - "National Human Rights Institution" - ] - }, - { - "text": "Continue strengthening the application of the National Action Plan on Human Rights", - "values": [ - "General" - ] - }, - { - "text": "Enact specific legislation to punish violence against women and establish structures for the protection of victims ", - "values": [ - "Women's rights" - ] - }, - { - "text": "Continue to take specific measures to prevent and eliminate racism, racial discrimination, xenophobia and intolerance against migrants, refugees and asylum seekers", - "values": [ - "Asylum-seekers - refugees", - "Migrants", - "Racial discrimination" - ] - }, - { - "text": "Increase the right to education by in-service training of teachers and the expansion of high quality education to include the entire country", - "values": [ - "Right to education" - ] - }, - { - "text": "Ensure that the death penalty is not applied to consensual same-sex relations between adults, and that the Penal Code does not criminalize such activity ", - "values": [ - "Death penalty", - "Sexual Orientation and Gender Identity" - ] - }, - { - "text": "Engage on the path of accession to the Rome Statute", - "values": [ - "International instruments", - "Justice" - ] - }, - { - "text": "Respect article 12 of the Constitution, which protects privacy, and eliminate abuses of this article that lead to arbitrary arrests and prosecutions on charges related to consensual same sex relations ", - "values": [ - "Privacy", - "Sexual Orientation and Gender Identity" - ] - }, - { - "text": "Seek the provision of technical assistance with regard to adolescent health problems, trafficking in persons and prevention and control HIV-AIDS", - "values": [ - "HIV - Aids", - "Right to health", - "Technical assistance and cooperation", - "Trafficking" - ] - }, - { - "text": "Continue to implement the Convention on the Rights of Persons with Disabilities", - "values": [ - "Disabilities", - "International instruments" - ] - }, - { - "text": "Establish a moratorium on the use of the death penalty with a view to abolishing it", - "values": [ - "Death penalty" - ] - }, - { - "text": "Adopt legislation that criminalizes domestic violence and sanctions sexual harassment as a criminal offence, in accordance with the CEDAW provisions ", - "values": [ - "International instruments", - "Women's rights" - ] - }, - { - "text": "Continue its policies and efforts to further promote and protect women's rights", - "values": [ - "Women's rights" - ] - }, - { - "text": "In the coming years, the Government will focus on policies and strategies to enhance the awareness of gender issue, change the mind-set about gender issue, as well as the prejudice about gender, strengthen international cooperation in the gender issue, especially which is related to disadvantaged groups and areas of strategic importance such as education, healthcare and employment.", - "values": [ - "Labour", - "Right to health", - "Technical assistance and cooperation", - "Women's rights" - ] - }, - { - "text": "Strengthen efforts to prevent violence against women and ensure the accountability of all perpetrators while ensuring victims are provided with adequate redress, reparations and access to full rehabilitation ", - "values": [ - "Women's rights" - ] - }, - { - "text": "Take the appropriate measures to improve the conditions of detainees, in particular those awaiting trial", - "values": [ - "Detention" - ] - }, - { - "text": "Step up implementation and enforcement of relevant legislation and other measures to curb instances of domestic violence, child abuse and the sexual exploitation of women and girls ", - "values": [ - "Rights of the Child", - "Women's rights" - ] - }, - { - "text": "Include in its national criminal legislation a definition of torture in compliance with the provisions of the CAT.", - "values": [ - "International instruments", - "Torture and other CID treatment" - ] - }, - { - "text": "Incorporate into its legislation measures of prompt and effective cooperation with the International Criminal Court, as well as, obligations to investigate and prosecute in its territory crimes established in the Rome Statute ", - "values": [ - "International instruments", - "Justice" - ] - }, - { - "text": "Strengthen legislation and improve understanding within society of the issues relating to disability discrimination ", - "values": [ - "Disabilities" - ] - }, - { - "text": "Increase the international cooperation activities aimed at the development of other countries", - "values": [ - "Development", - "Technical assistance and cooperation" - ] - }, - { - "text": "Criminalize marital rape and threats of violence as part of its draft law 103.13 on combating violence against women and implement State-sponsored programmes to support victims", - "values": [ - "Women's rights" - ] - }, - { - "text": "Take the necessary measures to amend existing legislation in order to bring possible restrictions to freedom of expression or assembly in line with international human rights norms and standards", - "values": [ - "Freedom of association and peaceful assembly", - "Freedom of opinion and expression", - "International instruments" - ] - }, - { - "text": "Undertake mental health awareness campaigns to educate communities", - "values": [ - "Human rights education and training", - "Right to health" - ] - }, - { - "text": "Ensure the compilation of detailed statistics on the use of solitary confinement ", - "values": [ - "Detention" - ] - }, - { - "text": "Make the Electoral Commission appointment process more consultative ", - "values": [ - "Elections" - ] - }, - { - "text": "Continue the policy agenda to strengthen the specialized justice system to protect women", - "values": [ - "Justice", - "Women's rights" - ] - }, - { - "text": "Sign and ratify the Convention on Economic, Social and Cultural Rights ", - "values": [ - "ESC rights - general", - "International instruments" - ] - }, - { - "text": "Refrain from interfering in the affairs of religious institutions, especially with respect to the rights of ownership and property.", - "values": [ - "Freedom of religion and belief" - ] - }, - { - "text": "Establish child protection systems in order to reduce the number of cases of maltreatment of children", - "values": [ - "Rights of the Child" - ] - }, - { - "text": "Amend the Nationality Law to ensure that women have the right to pass on their nationality to their children and husband", - "values": [ - "Statelessness and the right to nationality", - "Women's rights" - ] - }, - { - "text": "Continue its efforts to incorporate in-cell sanitation in all prison facilities ", - "values": [ - "Detention", - "Right to water and sanitation" - ] - }, - { - "text": "Cooperate with the treaty bodies and the mechanisms of the Human Rights Council", - "values": [ - "Special procedures", - "Treaty bodies", - "UPR process" - ] - }, - { - "text": "Consider ratifying the International Convention for the Protection of all Persons from Enforced Disappearance CED", - "values": [ - "Enforced disappearances", - "International instruments" - ] - }, - { - "text": "Accede to the international treaties on human rights and ratify the Optional Protocol to ICESCR", - "values": [ - "ESC rights - general", - "International instruments" - ] - }, - { - "text": "Continue its efforts to combat human trafficking and provide assistance to victims, especially women and children ", - "values": [ - "Rights of the Child", - "Trafficking", - "Women's rights" - ] - }, - { - "text": "Continue to intensify its efforts in addressing all the remaining challenges of human rights, in particular, in the fields of promotion of economic growth, social protection and equity with special attention given to women's and children's rights through ongoing programs and plans of action ", - "values": [ - "Development", - "ESC rights - general", - "Rights of the Child", - "Women's rights" - ] - }, - { - "text": "Establish a national human rights institution, in accordance with the Paris Principles, with a broad human rights mandate, and following a participatory process including civil society", - "values": [ - "Civil society", - "National Human Rights Institution" - ] - }, - { - "text": "Take steps to ensure the right to freedom of expression, including by ensuring that journalists can carry out their work independently while protecting their well-being", - "values": [ - "Freedom of opinion and expression", - "Freedom of the press" - ] - }, - { - "text": "Introduce a moratorium on capital executions, with a view to fully abolishing the death penalty", - "values": [ - "Death penalty" - ] - }, - { - "text": "Accelerate efforts to empower those living below the poverty line through alleviation schemes", - "values": [ - "Poverty" - ] - }, - { - "text": "Include specific provisions adequately criminalizing acts of torture in the German Code of Crimes against Criminal Law (CCAIL) as required by CAT ", - "values": [ - "International instruments", - "Torture and other CID treatment" - ] - }, - { - "text": "Continue to promote the right to equal opportunity for, and at, work ", - "values": [ - "Labour" - ] - }, - { - "text": "Continue and consolidate its current programmes for the benefit and protection of elderly persons", - "values": [ - "Other" - ] - }, - { - "text": "Strengthen measures to ensure the full enjoyment of the rights of migrants, and the investigation and punishment of statements that incite to hate and other acts of discrimination against them, particularly those coming from officials of police, judicial and penitentiary organs as well as from immigration services", - "values": [ - "Human rights violations by state agents", - "Migrants" - ] - }, - { - "text": "Adopt practical and legal measures to curb racial discrimination and discrimination against migrants and look at the appeal by UNESCO to ratify the Convention against Discrimination in Education", - "values": [ - "International instruments", - "Migrants", - "Racial discrimination", - "Right to education" - ] - }, - { - "text": "Work for the amelioration of the situation of migrants, particularly with regard to access to, and quality of, the asylum procedure, as well as the conditions in detention centres, and to ensure that full respect for human rights of all migrants and protection is granted to refugees in line with Greece's international obligations", - "values": [ - "Asylum-seekers - refugees", - "Detention", - "Migrants" - ] - }, - { - "text": "Continue advancing in the signing and ratification of the outstanding international human rights treaties", - "values": [ - "International instruments" - ] - }, - { - "text": "Remove all legislative and practical restrictions impeding to freely exercise civil and political rights, in particular those related to freedom of association and expression, with a view to allow the creation of political parties and respect of trade freedoms", - "values": [ - "CP rights - general", - "Freedom of association and peaceful assembly", - "Freedom of opinion and expression", - "Labour" - ] - }, - { - "text": "Eliminate the provisions that criminalize same-sex sexual relations between adults", - "values": [ - "Sexual Orientation and Gender Identity" - ] - }, - { - "text": "Continue reforms to ensure the full independence of judges and the application of fair trial guarantees for everyone", - "values": [ - "Justice" - ] - }, - { - "text": "Take the necessary measures to ensure that the Gabonese laws regarding violence against women, including those prohibiting rape, sexual harassment and domestic violence, are implemented and that those responsible are brought to justice", - "values": [ - "Rights of the Child", - "Women's rights" - ] - }, - { - "text": "Continue strengthening the National Machinery for Women's Rights, conferring on it the authority, visibility and resources necessary to fulfil its purposes ", - "values": [ - "Women's rights" - ] - }, - { - "text": "Amend its criminal procedural code to bring it in line with international human rights standards and conduct a systematic campaign among Saudi Arabian judges to apply this amended Code ", - "values": [ - "International instruments", - "Justice" - ] - }, - { - "text": "End segregation in schools to ensure that one curriculum is taught to all children that promotes tolerance among the different ethnic groups in the country and appreciates their specificities", - "values": [ - "Minorities" - ] - }, - { - "text": "Within the framework of its national Inter-Religious Council and the Institute for Peace and Conflict, continue its commendable efforts in promoting the interethnic, inter-communal and inter-religious harmony", - "values": [ - "Freedom of religion and belief", - "Minorities" - ] - }, - { - "text": "Address the societal acceptance of violence against women and ensure punishment for all perpetrators of violence against women", - "values": [ - "Women's rights" - ] - }, - { - "text": "Continue to strengthen the promotion and protection of the human rights of vulnerable groups\nwithin society, particularly women, children, disabled persons and persons with HIV-AIDS ", - "values": [ - "Disabilities", - "HIV - Aids", - "Rights of the Child", - "Women's rights" - ] - }, - { - "text": "Continue the reform of the judiciary to ensure independence and impartiality of the tribunals", - "values": [ - "Justice" - ] - }, - { - "text": "Strengthen policies and measures, including legislation in the area of domestic violence", - "values": [ - "Rights of the Child", - "Women's rights" - ] - }, - { - "text": "Continue efforts for the promotion of truth, justice and reparation and guaranties of non-repetition related to crimes of the past", - "values": [ - "Justice" - ] - }, - { - "text": "Strengthen public policies aimed at the achievement of gender equality in law and in practice, paying particular attention to the vulnerability of elderly women and women with disabilities and especially with respect to access to education, employment and social services ", - "values": [ - "Disabilities", - "Women's rights" - ] - }, - { - "text": "Continue strengthening the efforts undertaken to help young people and adolescents ", - "values": [ - "Rights of the Child" - ] - }, - { - "text": "Ratify the Rome Statute and fully align its national legislation with all obligations under the Rome Statute ", - "values": [ - "International instruments", - "Justice" - ] - }, - { - "text": "To designate focal points within each relevant Government department and request other stakeholders to designate focal points to follow up and report on the implementation of human rights issues", - "values": [ - "Other" - ] - }, - { - "text": "Take further steps to address discrimination of lesbian, gay, bisexual, transgender and intersex persons in access to goods, employment and services, including healthcare", - "values": [ - "Labour", - "Right to health", - "Sexual Orientation and Gender Identity" - ] - }, - { - "text": "Ensure that criteria for compulsory treatment and detention in legislation and in practice are non-discriminatory and focused on safety, and remove any criteria referring to disability or "serious mental disorder" ", - "values": [ - "Detention", - "Disabilities" - ] - }, - { - "text": "Respond, as soon as possible, to the outstanding communications from the treaty bodies, including those from the Human Rights Committee ", - "values": [ - "CP rights - general", - "Treaty bodies" - ] - }, - { - "text": "Ensure that Komnas Perempuan is in conformity with the Principles relating to the status of national institutions for the promotion and protection of human rights (the Paris Principles)", - "values": [ - "National Human Rights Institution" - ] - }, - { - "text": "Continue consultations in order to achieve abolition of the death penalty ", - "values": [ - "Death penalty" - ] - }, - { - "text": "Repeal or amend legislation, such as the Law on Public Events and Criminal Code 193-1, which represses free expression or opinion, assembly and association, in particular that of human rights defenders and other members of civil society \n", - "values": [ - "Civil society", - "Freedom of association and peaceful assembly", - "Freedom of opinion and expression", - "Human rights defenders" - ] - }, - { - "text": "Abolish corporal punishment as a legal penalty, in particular caning", - "values": [ - "Torture and other CID treatment" - ] - }, - { - "text": "Continue to adopt measures to provide for adequate treatment to refugees, in particular through the adoption of procedures or protection mechanisms to refugee claimants, especially non-accompanied boys, girls and adolescents ", - "values": [ - "Asylum-seekers - refugees", - "Rights of the Child" - ] - }, - { - "text": "Continue the implementation of programmes and plans for the enhancement of education in Liberia at all levels, as well as earmarking more financial resources for this purpose", - "values": [ - "Right to education" - ] - }, - { - "text": "Renew all efforts to foster dialogue and to find a political solution to the ongoing conflict so as to bring stability to society through the protection of the human rights of all civilians", - "values": [ - "Other" - ] - }, - { - "text": "Abolish the capital punishment in all cases and in all circumstances", - "values": [ - "Death penalty" - ] - }, - { - "text": "Ensure the respective participation of national and international NGOs in the follow-up of the universal periodic review process", - "values": [ - "Civil society", - "UPR process" - ] - }, - { - "text": "Strengthen measures against corruption and police excesses", - "values": [ - "Corruption", - "Human rights violations by state agents" - ] - }, - { - "text": "Address discrimination against children through a review and reorientation of policies and launch comprehensive public information campaigns to prevent and combat all forms of discrimination, where needed within the framework of international cooperation ", - "values": [ - "Human rights education and training", - "Rights of the Child" - ] - }, - { - "text": "Remove the reservations to the Convention on the Elimination of All Forms of Discrimination against Women and take temporary special measures in favour of gender equality", - "values": [ - "International instruments", - "Women's rights" - ] - }, - { - "text": "Make further investment in the protection and promotion of women's and children's rights", - "values": [ - "Rights of the Child", - "Women's rights" - ] - }, - { - "text": "Implement legislative instruments in a manner that ensures full freedom of expression, leading to active and genuine civil society participation in the electoral and state-building processes", - "values": [ - "Civil society", - "Elections", - "Freedom of association and peaceful assembly", - "Freedom of opinion and expression" - ] - }, - { - "text": "Strengthen efforts to eliminate child labour ", - "values": [ - "Labour", - "Rights of the Child" - ] - }, - { - "text": "Make further efforts to provide equal access to quality education and health-care services to all, including disabled persons ", - "values": [ - "Disabilities", - "Right to education", - "Right to health" - ] - }, - { - "text": "Intensify the investigation into the disappearance of Sombath Somphone and accept external assistance in the investigation and make the results publicly known, and investigate in a transparent and credible manner all cases of enforced disappearances", - "values": [ - "Enforced disappearances" - ] - }, - { - "text": "The Government of Israel is committed to ensuring that these citizens [Bedouin population] enjoy modern living conditions, and to that end has adopted a comprehensive policy for the immediate improvement in their standards of living.", - "values": [ - "Minorities" - ] - }, - { - "text": "Institute policies and initiatives to address discrimination based on sexual orientation or gender identity ", - "values": [ - "Sexual Orientation and Gender Identity" - ] - }, - { - "text": "With a view to a rapid ratification of the ICCPR, to guarantee the rights of representatives of civil society and human rights defenders organizations to set themselves up and exercise their rights to freedom of expression ", - "values": [ - "Civil society", - "Freedom of opinion and expression", - "Human rights defenders", - "International instruments" - ] - }, - { - "text": "Take measures to guarantee thorough investigation and prosecution of crimes of sexual violence, including relevant training of law enforcement officials, and implement national human rights awareness-raising focused on women's rights ", - "values": [ - "Human rights education and training", - "Women's rights" - ] - }, - { - "text": "Extend an open invitation to the special procedures ", - "values": [ - "Special procedures" - ] - }, - { - "text": "Fully implement the Global Political Agreement (GPA) provisions supporting the Constitutional Parliamentary Committee ", - "values": [ - "Other" - ] - }, - { - "text": "Guarantee equal remuneration for men and women for work of equal value", - "values": [ - "Women's rights" - ] - }, - { - "text": "Ratify other main relevant international instruments such as the Rome Statute of the International Criminal Court", - "values": [ - "International instruments", - "Justice" - ] - }, - { - "text": "Continue to address and implement its plans of action in relevant areas of human rights in particular on the promotion and protection of minorities and other vulnerable groups", - "values": [ - "Minorities" - ] - }, - { - "text": "Continue its efforts to provide free education for all", - "values": [ - "Right to education" - ] - }, - { - "text": "Strengthen measures on rural development", - "values": [ - "Development" - ] - }, - { - "text": "Ensure freedom of the press, and reply to the concerns raised by the experts of the Human Rights Committee in their 2009 report ", - "values": [ - "Freedom of the press", - "Treaty bodies" - ] - }, - { - "text": "Continue its efforts to identify war victims and compensate the damages", - "values": [ - "International humanitarian law", - "Justice" - ] - }, - { - "text": "Consider the possibility of strengthening efforts to ratify the International Convention for the Protection of All Persons from Enforced Disappearances ", - "values": [ - "Enforced disappearances", - "International instruments" - ] - }, - { - "text": "Continue to strengthen its public healthcare system and improve access to healthcare services, particularly for women, children and older persons", - "values": [ - "Right to health", - "Rights of the Child", - "Women's rights" - ] - }, - { - "text": "Ratify the Convention on the Right of Persons with Disabilities and ensure that the rights of such persons are protected in law and in practice ", - "values": [ - "Disabilities", - "International instruments" - ] - }, - { - "text": "Consider adopting the first Optional Protocol to the International Covenant on Civil and Political Rights", - "values": [ - "CP rights - general", - "International instruments" - ] - }, - { - "text": "Continue efforts to strengthen legal and institutional frameworks to promote and protect human rights, including through the ratification of ICRMW", - "values": [ - "International instruments", - "Labour", - "Migrants" - ] - }, - { - "text": "Step up its efforts to increase enrolment and completion rates for primary and secondary schools, especially for girls", - "values": [ - "Right to education", - "Rights of the Child", - "Women's rights" - ] - }, - { - "text": "Continue the revision of anti-terrorism and data protection legislation and policies and repeal the provisions that contravene the applicable international law in areas such as due process and imprisonment, and develop measures to prevent and combat racial profiling by law enforcement bodies", - "values": [ - "Counter-terrorism", - "Detention", - "Human rights violations by state agents", - "Racial discrimination" - ] - }, - { - "text": "Continue appropriate measures to ensure the realization of the socioeconomic rights of its people and to provide adequate resources for vulnerable groups facing economic challenges ", - "values": [ - "ESC rights - general" - ] - }, - { - "text": "Do everything possible to ensure gender equality in the country", - "values": [ - "Women's rights" - ] - }, - { - "text": "Take effective, predominantly legislative steps to protect the rights of persons deprived of their liberty ", - "values": [ - "Detention" - ] - }, - { - "text": "Deepen and widen its efforts, including through providing stronger legal framework by considering the ratification of the UNESCO Convention against Discrimination in Education", - "values": [ - "International instruments", - "Right to education" - ] - }, - { - "text": "Intensify efforts to bring to justice the cases of corruption and revise its sentencing policy for crimes of corruption ", - "values": [ - "Corruption" - ] - }, - { - "text": "Reinforce measures to eradicate poverty across all segments of society, including among the indigenous community", - "values": [ - "Indigenous peoples", - "Poverty" - ] - }, - { - "text": "Continue the process of ratifying international human rights instruments, which have been signed, as well as those that the country is not yet a party to ", - "values": [ - "International instruments" - ] - }, - { - "text": "Emphasize prevention over detention, especially regarding minors in conflict with the law.", - "values": [ - "Detention" - ] - }, - { - "text": "Review the Law on Associations and the Protest law, in order to comply with the Constitution, as well as international law, and immediately release persons detained or imprisoned for exercising their freedom of expression through participating in peaceful protests", - "values": [ - "Detention", - "Freedom of association and peaceful assembly", - "Freedom of opinion and expression" - ] - }, - { - "text": "Become a party to the Convention on the Rights of Persons with Disabilities and the Optional Protocol thereto", - "values": [ - "Disabilities", - "International instruments" - ] - }, - { - "text": "Raise awareness and promote tolerance and diversity in society, and train law enforcement officials in the detection and prosecution of hate speech ", - "values": [ - "Human rights education and training", - "Racial discrimination" - ] - }, - { - "text": "Accede to/or ratify the following international instruments: the Optional Protocols to the Convention on the Elimination of All Forms of Discrimination against Women, Convention against Torture and Other Cruel, Inhuman or Degrading Treatment or Punishment and its Optional Protocol, Convention on the Rights of Persons with Disabilities, Rome Statute of the International Criminal Court, Optional Protocol to the International Covenant on Economic, Social and Cultural Rights, and the second Optional Protocol to the International Covenant on Civil and Political Rights ", - "values": [ - "International instruments" - ] - }, - { - "text": "Carry out the legislative reform to ensure de jure and de facto equality between men and women and adopt a comprehensive law repressing all forms of violence against women", - "values": [ - "Women's rights" - ] - }, - { - "text": "Become a party to other treaties, such as ICCPR and ICESCR, as soon as possible ", - "values": [ - "CP rights - general", - "ESC rights - general", - "International instruments" - ] - }, - { - "text": "Reduce the number of crimes punishable by the death penalty in conformity with the International Covenant on Civil and Political Rights, to which Yemen is party ", - "values": [ - "Death penalty", - "International instruments" - ] - }, - { - "text": "Increase its un-earmarked contribution to the OHCHR", - "values": [ - "Technical assistance and cooperation" - ] - }, - { - "text": "Amend the Criminal Code to ensure equal protection of boys and girls from all forms of sexual abuse and exploitation", - "values": [ - "Rights of the Child" - ] - }, - { - "text": "Review its current legislation in order to bring it fully in line with the principles and provisions of CRC and accede to its two Optional Protocols ", - "values": [ - "International instruments", - "Rights of the Child" - ] - }, - { - "text": "Continue its positive efforts in implementing the Gender Equality Strategy 2006-2016 and take measures to increase women's participation in public and political life", - "values": [ - "Women's rights" - ] - }, - { - "text": "Develop a global strategy to address existing divisions covering all sectors, to overcome all discriminatory practices", - "values": [ - "Other" - ] - }, - { - "text": "Implement the recommendations made by the Special Rapporteur on extrajudicial, summary or arbitrary executions during his recent visit to the Democratic Republic of the Congo", - "values": [ - "Extrajudicial executions", - "Special procedures" - ] - }, - { - "text": "Adopt a specific policy to address the root causes of domestic violence, particularly violence against women and children, and conduct awareness campaigns, particularly in the rural areas", - "values": [ - "Human rights education and training", - "Rights of the Child", - "Women's rights" - ] - }, - { - "text": "Further promote the development of education and protect people\u2019s right to education", - "values": [ - "Right to education" - ] - }, - { - "text": "Establish an effective and inclusive process to follow up on universal periodic review recommendations ", - "values": [ - "UPR process" - ] - }, - { - "text": "Carry out additional national awareness-raising campaigns to combat violence against women and girls", - "values": [ - "Human rights education and training", - "Rights of the Child", - "Women's rights" - ] - }, - { - "text": "Provide general information about anti-discrimination and reform the school curricula to regularly emphasize information about gender equality, lesbian, gay, bisexual and transgender people and ethnic minorities ", - "values": [ - "Minorities", - "Racial discrimination", - "Sexual Orientation and Gender Identity", - "Women's rights" - ] - }, - { - "text": "Further promote and protect the rights of vulnerable groups of the population, including children, persons with disabilities, women and older persons", - "values": [ - "Disabilities", - "Rights of the Child", - "Women's rights" - ] - }, - { - "text": "Take steps to prevent, and ensure accountability for, acts of violence perpetrated against individuals, including on the basis of their sexuality", - "values": [ - "Sexual Orientation and Gender Identity" - ] - }, - { - "text": "Strengthen its efforts against the excessive use of force by police forces", - "values": [ - "Human rights violations by state agents" - ] - }, - { - "text": "Investigate the excessive use of force by the police and prosecute the responsible, with a view to putting an end to such practices", - "values": [ - "Human rights violations by state agents" - ] - }, - { - "text": "Increase efforts in addressing violence against women, including a provision of access to justice and medical care for victims as well as their social reintegration, in particular within the context of the armed conflict", - "values": [ - "International humanitarian law", - "Women's rights" - ] - }, - { - "text": "Strengthen national frameworks and mechanisms to effectively address and combat violence against women and girls", - "values": [ - "Rights of the Child", - "Women's rights" - ] - }, - { - "text": "Continue to adopt strategies to combat discrimination against women", - "values": [ - "Women's rights" - ] - }, - { - "text": "Establish a national human rights institution for the promotion and protection of human rights in accordance with the Paris Principles", - "values": [ - "National Human Rights Institution" - ] - }, - { - "text": "Take measures to protect people with albinism and to develop educational campaigns to promote tolerance and respect for diversity", - "values": [ - "Minorities" - ] - }, - { - "text": "Continue its positive efforts to strengthen the implementation of the National Human Rights Plan by providing the necessary financial and human resources", - "values": [ - "General" - ] - }, - { - "text": "Take urgent measures to prevent cases of ill-treatment and torture by police officers and ensure their accountability for any criminal acts ", - "values": [ - "Human rights violations by state agents", - "Torture and other CID treatment" - ] - }, - { - "text": "Intensify efforts to address violence against women, in particular domestic violence", - "values": [ - "Women's rights" - ] - }, - { - "text": "Reinforce measures designed to prevent and combat the widespread economic exploitation of children, in line with country's international commitments, notably ILO Conventions No. 138 and 182, with particular focus on minors living in earthquake-hit and rural areas ", - "values": [ - "International instruments", - "Labour", - "Rights of the Child" - ] - }, - { - "text": "Repeal the requisite legislation to stop violence and discrimination against religious minorities", - "values": [ - "Freedom of religion and belief" - ] - }, - { - "text": "Take effective measures to make primary education free, enhance the quality of education, improve the literacy rate and increase enrolment in schools by abolishing or rationalizing tuition fees at all levels of the educational system as recommended by the Committee on the Rights of the Child", - "values": [ - "Right to education", - "Treaty bodies" - ] - }, - { - "text": "Collaborate closely with marginalized communities to fix the problems in the justice system that continues to discriminate against them despite recent waves of protest over racial profiling and police killings of unarmed black men", - "values": [ - "Human rights violations by state agents", - "Justice", - "Minorities", - "Racial discrimination" - ] - }, - { - "text": "Initiate and promote a public debate on abortion in cases of diagnosed medical necessity and decriminalize abortion in such cases ", - "values": [ - "Women's rights" - ] - }, - { - "text": "Establish independent mechanisms for complaints and for monitoring conditions in places of detention.", - "values": [ - "Detention" - ] - }, - { - "text": "Provide information, as requested by the International Labour Organization, on the implementation of measures to promote the participation of ethnic minorities in the labour market in the public and private sectors ", - "values": [ - "Labour", - "Minorities" - ] - }, - { - "text": "Maintain the momentum given to positive social policies relating to health care - allocate the necessary resources to ensure the institutional capacity required for its health-care system ", - "values": [ - "Right to health" - ] - }, - { - "text": "Ensure that the best interests of the child are fully considered when deciding on asylum cases and uphold international obligations under the 1951 Convention relating to the Status of Refugees", - "values": [ - "Asylum-seekers - refugees", - "International instruments", - "Rights of the Child" - ] - }, - { - "text": "Significantly strengthen the cooperation between the different actors of the judiciary to avoid long pretrial detention and to ensure every citizen\u2019s right to a fair trial in due time", - "values": [ - "Justice" - ] - }, - { - "text": "Continue efforts to promote and protect human rights", - "values": [ - "General" - ] - }, - { - "text": "Work at reducing the high incidence of all forms of violence against women, prosecute perpetrators of such acts and criminalize all forms of violence against women", - "values": [ - "Women's rights" - ] - }, - { - "text": "Ensure compliance of legislation with its international human rights obligations, by inter alia reviewing the Cybercrime Act and the Statistics Act", - "values": [ - "Freedom of opinion and expression", - "International instruments" - ] - }, - { - "text": "Do more in providing the enabling environment for the institution responsible for the promotion and protection of human rights and by particularly establishing a national human rights commission", - "values": [ - "National Human Rights Institution" - ] - }, - { - "text": "Redouble its efforts to strengthen protection measures to combat all forms of abuse and neglect against children, including all forms of child labour", - "values": [ - "Labour", - "Rights of the Child" - ] - }, - { - "text": "Continue and strengthen its efforts to combat the illegal use of children in armed conflict ", - "values": [ - "International humanitarian law", - "Rights of the Child" - ] - }, - { - "text": "Take legislative measures to explicitly ban corporal punishment in all settings, including the home and penal institutions, set up effective complaints mechanisms and provide training in the identification, reporting and management of cases of ill-treatment to teachers, law enforcement and health professionals ", - "values": [ - "Rights of the Child", - "Torture and other CID treatment" - ] - }, - { - "text": "Apply the methodological proposal to implement the consultation accepted by the Quiché indigenous authorities on those matters related to indigenous people", - "values": [ - "Indigenous peoples" - ] - }, - { - "text": "Take steps to ensure that the National Human Rights Commission is independent, and has civil society representation ", - "values": [ - "Civil society", - "National Human Rights Institution" - ] - }, - { - "text": "Review the practice of protective custody and increase the capacity of existing mechanisms, or establish other efficient protective mechanisms for women at risk of violence that do not victimize them, and ensure strict punishment of perpetrators of any such violence", - "values": [ - "Detention", - "Women's rights" - ] - }, - { - "text": "Do whatever is necessary to continue to promote and protect the fundamental freedoms and human rights of all its citizens", - "values": [ - "General" - ] - }, - { - "text": "Continue efforts to fight effectively against the socio-cultural and religious burden for the elimination of female genital mutilation", - "values": [ - "Rights of the Child", - "Torture and other CID treatment", - "Women's rights" - ] - }, - { - "text": "Strengthen initiatives to combat exclusion, marginalization and poverty, including that of the Roma population, among other groups", - "values": [ - "Minorities", - "Poverty", - "Racial discrimination" - ] - }, - { - "text": "Continue efforts aimed at establishing and implementing a consultation mechanism with indigenous peoples, in accordance with national and international legislation", - "values": [ - "Indigenous peoples" - ] - }, - { - "text": "Continue to implement policies and programmes to guarantee the rights to education, health and food, in addition to combating poverty", - "values": [ - "Poverty", - "Right to education", - "Right to food", - "Right to health" - ] - }, - { - "text": "Take appropriate action to punish people motivated by racial discrimination and xenophobia", - "values": [ - "Racial discrimination" - ] - }, - { - "text": "Ratify the second Optional Protocol to ICCPR ", - "values": [ - "Death penalty", - "International instruments" - ] - }, - { - "text": "Intensify its policies and programs undertaken to ensure the protection of women and children", - "values": [ - "Rights of the Child", - "Women's rights" - ] - }, - { - "text": "Ratify/adhere to the international instruments to which it is not yet a party, such as ICCPR and its Second Optional Protocol, aiming at the abolition of the death penalty, ICESCR, CAT, CED, the International Convention on the Protection of the Rights of All Migrant Workers and Members of Their Families (ICRMW), and the Optional Protocols to CRC ", - "values": [ - "International instruments" - ] - }, - { - "text": "Ensure the full implementation of the adopted law on sexual and gender-based offences against women", - "values": [ - "Women's rights" - ] - }, - { - "text": "Follow-up on the commitment made in the National Human Rights Action Plan to ratify the Rome Statute of the International Criminal Court, and align its national legislation with the provisions of the Court's Statute ", - "values": [ - "International instruments", - "Justice" - ] - }, - { - "text": "Develop a national strategy on water and support the establishment of regional instruments for the management of water and hydro-electrical energy to contribute to improve cooperation between the country and its neighbours", - "values": [ - "Right to water and sanitation" - ] - }, - { - "text": "Strengthen existing legal protections and enhance enforcement to combat discrimination against and mistreatment of women and girls ", - "values": [ - "Rights of the Child", - "Women's rights" - ] - }, - { - "text": "Ratify the Statute of Rome on the International Criminal Court ", - "values": [ - "International instruments", - "Justice" - ] - }, - { - "text": "Ratify the Optional Protocol to the Convention against Torture and the Optional Protocol to the Convention on the Rights of Persons with Disabilities ", - "values": [ - "Detention", - "Disabilities", - "International instruments", - "Torture and other CID treatment" - ] - }, - { - "text": "Prioritize the education of its citizens ", - "values": [ - "Right to education" - ] - }, - { - "text": "Submit overdue initial and periodic reports to the various human rights treaty bodies, some of which have been overdue since 1994", - "values": [ - "Treaty bodies" - ] - }, - { - "text": "Further integrate measures of protection and promotion of human rights, especially economic, social and cultural rights, into the national socio-economic development strategies", - "values": [ - "Development", - "ESC rights - general" - ] - }, - { - "text": "Ensure without delay effective protection of the rights of ethnic and religious minorities ", - "values": [ - "Freedom of religion and belief", - "Minorities" - ] - }, - { - "text": "Recommended that the Government and the Permanent Commission on Law and Justice of the National Assembly should comply with the obligations of United Nations reference texts and immediately work to finalize the legislative procedure underway with a view to the abolition in law of the death penalty.", - "values": [ - "Death penalty" - ] - }, - { - "text": "Encourage the historical political cooperation with the United Nations system in the framework of technical assistance ", - "values": [ - "Technical assistance and cooperation" - ] - }, - { - "text": "Remain vigilant on the issues of blood feud and domestic violence - develop and support programmes to provide help to victims of domestic violence ", - "values": [ - "Rights of the Child", - "Women's rights" - ] - }, - { - "text": "Sign and ratify the International Convention for the Protection of All Persons from Enforced Disappearance, the Optional Protocol to the Convention against Torture and Other Cruel, Inhuman or Degrading Treatment or Punishment, the Optional Protocol to the Convention on the Elimination of All Forms of Discrimination against Women, and to ratify the Optional Protocol to the Convention on the Rights of Persons with Disabilities\n", - "values": [ - "Detention", - "Disabilities", - "Enforced disappearances", - "International instruments", - "Torture and other CID treatment", - "Women's rights" - ] - }, - { - "text": "Take into consideration the full spectrum of international refugee and human rights law and standards when considering issues related to asylum seekers ", - "values": [ - "Asylum-seekers - refugees", - "International instruments" - ] - }, - { - "text": "Continue adopting measures to promote and protect the enjoyment of economic, social and cultural rights ", - "values": [ - "ESC rights - general" - ] - }, - { - "text": "Continue implementing policies to improve the general health of its population", - "values": [ - "Right to health" - ] - }, - { - "text": "Continue strengthening the national infrastructure with an emphasis on the successful educational policy in order to achieve full access", - "values": [ - "Right to education" - ] - }, - { - "text": "Address the infrastructural needs of the country's penitentiary system", - "values": [ - "Detention" - ] - }, - { - "text": "Continue to defend the fundamental values enshrined in its constitutional history and its tradition in its efforts to ensure the full enjoyment of all human rights, in particular economic, social and cultural rights ", - "values": [ - "ESC rights - general" - ] - }, - { - "text": "Promote concerted national efforts aimed at combating violence against women, and providing rehabilitation for perpetrators of such acts", - "values": [ - "Women's rights" - ] - }, - { - "text": "Consider an early ratification of the CAT and OP-CAT, ICCPR- OP2, OP-CEDAW, OP-ICESCR, OPs to CRC improve its cooperation with Special Procedures and other Human Rights mechanisms", - "values": [ - "Detention", - "International instruments", - "Special procedures" - ] - }, - { - "text": "Take steps to improve the access to public information through the establishment of an independent and autonomous body to guarantee timely and effective access in compliance with international standards", - "values": [ - "Freedom of opinion and expression" - ] - }, - { - "text": "Put in place a strategy to combat discriminatory stereotypes and implement, in collaboration with civil society, awareness-raising programs to enhance non-stereotypical portrayals of women and girls", - "values": [ - "Civil society", - "Human rights education and training", - "Rights of the Child", - "Women's rights" - ] - }, - { - "text": "Continue improving reforms to legislation on citizenship and nationality, reducing the cost of procedures and by making the language test less demanding to the minimum indispensable", - "values": [ - "Statelessness and the right to nationality" - ] - }, - { - "text": "Abolish all forms of institutional discrimination against Islamic religious minorities", - "values": [ - "Freedom of religion and belief", - "Minorities", - "Racial discrimination" - ] - }, - { - "text": "Pursue National Economic and Social Development Plans aiming at supporting the poor and the disadvantaged to ensure adequate living standards for all the population ", - "values": [ - "Poverty" - ] - }, - { - "text": "Proceed with the ratification of the Optional Protocol to the Convention against Torture and Other Cruel, Inhuman or Degrading Treatment or Punishment without delay ", - "values": [ - "Detention", - "International instruments", - "Torture and other CID treatment" - ] - }, - { - "text": "Consider the ratification of the International Convention on the Protection of the Rights of All Migrant Workers and Members of Their Families", - "values": [ - "International instruments", - "Labour", - "Migrants" - ] - }, - { - "text": "Take into account international standards and the provisions of the Convention on the Rights of the Child.", - "values": [ - "International instruments", - "Rights of the Child" - ] - }, - { - "text": "Abolish the death penalty within the projected constitutional reform and to ratify the Second Optional Protocol to the International Covenant on Civil and Political Rights and, if it is not the case, consider declaring an official moratorium on the death penalty", - "values": [ - "Death penalty", - "International instruments" - ] - }, - { - "text": "Further strengthen activities towards inclusive education of children with disabilities ", - "values": [ - "Disabilities", - "Right to education", - "Rights of the Child" - ] - }, - { - "text": "Continue to fight the "Upsurge" in Ritual Crimes", - "values": [ - "Other" - ] - }, - { - "text": "Consolidate the gains already made in the sphere of human rights through awareness programmes", - "values": [ - "Human rights education and training" - ] - }, - { - "text": "Reinforce measures aimed at eradicating gender-based violence and labour discrimination against women ", - "values": [ - "Women's rights" - ] - }, - { - "text": "Provide guarantees of a fair trial, allowing access to independent observers during the judicial proceedings amend the provisions of the procedural criminal code that allows the Government to deny the basic right to a lawyer during the accusation period guarantee transparency and accountability and allow lawyers access to relevant information concerning each case investigate and prosecute all public officials and Basij paramilitary members suspected of torture, ill treatment or extrajudicial execution eliminate every restriction on the freedom of expression, particularly with regard to digital media, which runs counter to ICCPR", - "values": [ - "International instruments", - "Justice" - ] - }, - { - "text": "Ratify the International Convention on the Protection of the Rights of All Migrant Workers and Members of Their Families ", - "values": [ - "International instruments", - "Labour", - "Migrants" - ] - }, - { - "text": "Continue to take further measures to enhance women's access to education, health and employment opportunities ", - "values": [ - "Development", - "Right to education", - "Right to health", - "Women's rights" - ] - }, - { - "text": "To encourage the early adoption of the Law on the Prevention and Elimination of All Forms of Racial Discrimination,", - "values": [ - "Racial discrimination" - ] - }, - { - "text": "Accede to the Convention on the Elimination of All Forms of Discrimination against Women and actively fight against violence against women", - "values": [ - "International instruments", - "Women's rights" - ] - }, - { - "text": "Continue to reassess the necessity, and, where the need exists, consider devising programmes that incorporate the prohibition of extrajudicial killings and enforced disappearances for the Philippines Army and National Police, and establish the adequate safeguards and monitoring mechanisms to guarantee compliance", - "values": [ - "Enforced disappearances", - "Extrajudicial executions" - ] - }, - { - "text": "Ensure the full protection of the rights to freedom of expression, association, assembly, religion and belief by all United Arab Emirates residents ", - "values": [ - "Freedom of association and peaceful assembly", - "Freedom of opinion and expression", - "Freedom of religion and belief" - ] - }, - { - "text": "Ratify additional human rights treaties such as the ICESCR, the Convention of the Rights of the Child, the International Convention for the Protection of All Persons from Enforced Disappearances and the Convention on Rights of Persons with Disabilities in order to further strengthen their support to the United Nations Human Rights mechanisms ", - "values": [ - "Disabilities", - "ESC rights - general", - "Enforced disappearances", - "International instruments", - "Rights of the Child" - ] - }, - { - "text": "Deploy further efforts in training security forces in the field of human rights.", - "values": [ - "Human rights education and training" - ] - }, - { - "text": "Continue to cooperate with Special Procedures and mechanisms and consider extending invitations to Special Rapporteurs", - "values": [ - "Special procedures" - ] - }, - { - "text": "Adopt an effective plan of action for the demarcation of indigenous lands and provide the necessary financial resources to ensure an effective policy for the protection of the rights of indigenous peoples and to prevent land-related conflicts", - "values": [ - "Indigenous peoples", - "Right to land" - ] - }, - { - "text": "Continue to conduct awareness-raising campaigns promoting equal conditions and equal responsibilities between women and men both in the private and public sphere with the aim of abolishing the persistence of patriarchal and stereotypical attitudes and achieving greater representation of women in the decision-making and managerial positions ", - "values": [ - "Human rights education and training", - "Women's rights" - ] - }, - { - "text": "Take operational steps to implement the United Nations Declaration on the Rights of Indigenous Peoples, including the recognition of the right to land and natural resources of all indigenous peoples in Panama", - "values": [ - "Indigenous peoples", - "International instruments", - "Right to land" - ] - }, - { - "text": "Further strengthen measures to protect children and women from all forms of violence", - "values": [ - "Rights of the Child", - "Women's rights" - ] - }, - { - "text": "Ratify CRPD and incorporate a disability perspective into its Vision 2050 and other development plans and programmes ", - "values": [ - "Disabilities", - "International instruments" - ] - }, - { - "text": "Strengthen measures aimed at the prevention of unwanted pregnancies, including by increasing knowledge and awareness of family planning", - "values": [ - "Women's rights" - ] - }, - { - "text": "Strengthen measures to respond to gender-based violence in every sphere of public and private life ", - "values": [ - "Women's rights" - ] - }, - { - "text": "Further strengthen the capacities of its prisons with a view to improving the custody conditions of detainees", - "values": [ - "Detention" - ] - }, - { - "text": "Ensure that everyone can peacefully exercise his or her right to the freedom of expression in conformity with the country's obligations under the International Covenant on Civil and Political Rights ", - "values": [ - "Freedom of opinion and expression", - "International instruments" - ] - }, - { - "text": "Actively combat any form of racism, xenophobia and intolerance ", - "values": [ - "Racial discrimination" - ] - }, - { - "text": "Communicate on a regular basis to the Commission on Human Rights of the Philippines a list of all detainees indicating their place of detention ", - "values": [ - "Detention", - "National Human Rights Institution" - ] - }, - { - "text": "Continue efforts to fight discrimination in all spheres of life, also taking measures against all expressions and manifestations of prejudices, such as hate speech, racism and xenophobia", - "values": [ - "Racial discrimination" - ] - }, - { - "text": "Work with OHCHR to prepare a common core document as a way to streamline and reduce the burden of treaty reporting, which will help with the problem, acknowledged in the State report, of overdue treaty reports ", - "values": [ - "Technical assistance and cooperation", - "Treaty bodies" - ] - }, - { - "text": "Ratify the Kampala amendments to the Rome Statute ", - "values": [ - "International instruments", - "Justice" - ] - }, - { - "text": "Continue to deepen measures underway to guarantee greater social inclusion in the national education system.", - "values": [ - "Right to education" - ] - }, - { - "text": "Grant the requests made by the Special Rapporteur on torture and other cruel, inhuman or degrading treatment or punishment in 2005 and 2007 and by the Special Rapporteur on the situation of human rights in Eritrea to visit the country ", - "values": [ - "Special procedures", - "Torture and other CID treatment" - ] - }, - { - "text": "Withdraw reservations to CEDAW as well as to other conventions and ratify the Optional Protocol to CEDAW and other outstanding core human rights instruments ", - "values": [ - "International instruments", - "Women's rights" - ] - }, - { - "text": "Continue its positive efforts to promote and protect children rights and to attain full empowerment of women.", - "values": [ - "Rights of the Child", - "Women's rights" - ] - }, - { - "text": "Establish a formal moratorium with a view to ratifying the Second Optional Protocol to the International Covenant on Civil and Political Rights", - "values": [ - "Death penalty", - "International instruments" - ] - }, - { - "text": "Abolish legislation discriminating against women in the fields of property ownership, access to credit and inheritance", - "values": [ - "Women's rights" - ] - }, - { - "text": "Pursue measures adopted to establish a plan of action to combat child labour, in cooperation with the International Labour Organization (ILO)", - "values": [ - "Labour", - "Rights of the Child" - ] - }, - { - "text": "Enact legislation to protect the land rights of indigenous persons and to ensure that their interests are safeguarded in the context of the exploitation of natural resources", - "values": [ - "Indigenous peoples", - "Right to land" - ] - }, - { - "text": "Intensify efforts in actively promoting inter-ethnic, inter-faith and communal understanding and harmony", - "values": [ - "Freedom of religion and belief", - "Minorities" - ] - }, - { - "text": "Strengthen efforts to eliminate child, early and forced marriage", - "values": [ - "Rights of the Child", - "Women's rights" - ] - }, - { - "text": "Undertake further measures to improve the legislative and regulatory basis with respect to human rights and their effective implementation. ", - "values": [ - "General" - ] - }, - { - "text": "Revise the Criminal Code and the Criminal Procedure Code as part of the ongoing reform of the justice sector", - "values": [ - "Justice" - ] - }, - { - "text": "Adopt an open, merit-based selection process when selecting national candidates for United Nations treaty body elections", - "values": [ - "Treaty bodies" - ] - }, - { - "text": "Decriminalize all homosexual activities and not to adopt any discriminatory measures against people on the basis of their sexual orientation", - "values": [ - "Sexual Orientation and Gender Identity" - ] - }, - { - "text": "Take all necessary actions to end torture and ill-treatment of detainees, ensure that all cases of alleged torture are promptly investigated and that perpetrators are held accountable", - "values": [ - "Detention", - "Torture and other CID treatment" - ] - }, - { - "text": "Continue its work progressing towards implementation of the Convention on the Rights of Persons with Disabilities (CRPD), including through prompt implementation of the new Building Code for the Public Works Department to ensure buildings and amenities are disability-friendly ", - "values": [ - "Disabilities", - "International instruments" - ] - }, - { - "text": "On the basis of the National Human Rights Action Plan, improve and promote more effectively the protection of human rights", - "values": [ - "General" - ] - }, - { - "text": "Consider its strong position and abolish the death penalty, if necessary by initially establishing a moratorium on executions, which would be in line with General Assembly resolution 63-168 on the moratorium on the use of the death penalty.", - "values": [ - "Death penalty" - ] - }, - { - "text": "Regarding persons with disabilities, replace the substituted decision-making system with a supported decision-making one", - "values": [ - "Disabilities" - ] - }, - { - "text": "Stop the policy of colonization through illegal settlement.", - "values": [ - "Right to land" - ] - }, - { - "text": "Continue to fight against human trafficking with the cooperation of international organizations ", - "values": [ - "Technical assistance and cooperation", - "Trafficking" - ] - }, - { - "text": "Undertake further measures for the integration of minorities and the promotion of their representation in Georgian political and public life", - "values": [ - "Minorities" - ] - }, - { - "text": "Study the possibility of becoming a party to the following international instruments: OP-CAT and CED ", - "values": [ - "Detention", - "Enforced disappearances", - "International instruments", - "Torture and other CID treatment" - ] - }, - { - "text": "Reinforce women's rights within the labour market", - "values": [ - "Women's rights" - ] - }, - { - "text": "Legislate stricter sentences for the act of torture and ill-treatment", - "values": [ - "Torture and other CID treatment" - ] - }, - { - "text": "Ensure the enactment of the bill on the Convention on Elimination of All Forms of Discrimination against Women (CEDAW)", - "values": [ - "International instruments", - "Women's rights" - ] - }, - { - "text": "Continue its efforts to further strengthen the National Human Rights Commission in accordance with the Paris Principles", - "values": [ - "National Human Rights Institution" - ] - }, - { - "text": "Intensify efforts in guaranteeing women's rights, including by implementing CEDAW observations to this end, and strengthen measures to fight against the practice of Female Genital Mutilation (FGM)", - "values": [ - "Torture and other CID treatment", - "Treaty bodies", - "Women's rights" - ] - }, - { - "text": "Fully implement international human rights obligations towards minorities related to the use of their mother tongue and culture", - "values": [ - "ESC rights - general", - "Minorities" - ] - }, - { - "text": "Ratify ICESCR", - "values": [ - "ESC rights - general", - "International instruments" - ] - }, - { - "text": "Take legal and practical measures that guarantee women equality in the acquisition of land, in access to the means of production and in political representation", - "values": [ - "Right to land", - "Women's rights" - ] - }, - { - "text": "Finalize issuing a standing invitation to the United Nations mandate holders, which was already declared to be considered after the first round of the universal periodic review", - "values": [ - "Special procedures", - "UPR process" - ] - }, - { - "text": "Release all political prisoners, including Gulgeldy Annaniazov, and account for those prisoners whose fate is unknown ", - "values": [ - "Detention", - "Freedom of opinion and expression" - ] - }, - { - "text": "Adopt follow-up actions to the national justice plan, which include administrative measures to ensure access to the justice system, training programmes, and legislative measures on safeguards to guarantee the independence of the judiciary", - "values": [ - "Justice" - ] - }, - { - "text": "Ensure, as established by the International Convention on the Elimination of All Forms of Racial Discrimination (CERD), access to housing without any discrimination, particularly to the most vulnerable groups, including the Roma ", - "values": [ - "International instruments", - "Minorities", - "Racial discrimination", - "Right to housing" - ] - }, - { - "text": "Consider enacting a law that regulates freedom of the press", - "values": [ - "Freedom of the press" - ] - }, - { - "text": "Expedite the adoption of the law on preventing and combating discrimination with a view to strengthen existing rules and create a real and viable mechanism for prevention and prohibition of discrimination on different grounds", - "values": [ - "Other" - ] - }, - { - "text": "Decriminalize offences related to freedom of expression and guarantee that human rights defenders and journalists can carry out their work in an atmosphere of freedom and security", - "values": [ - "Freedom of opinion and expression", - "Freedom of the press", - "Human rights defenders" - ] - }, - { - "text": "Endeavour to depoliticize the police and military authorities to ensure impartial administration of justice and respect for the right to a fair trial and compliance with minimum guarantees in pre-trial detention", - "values": [ - "Detention", - "Justice" - ] - }, - { - "text": "Incorporate the definition and prohibition of torture and other cruel, inhuman or degrading treatment in national legislation", - "values": [ - "Torture and other CID treatment" - ] - }, - { - "text": "Ratify or accede to, as appropriate, the Second Optional Protocol to the International Covenant on Civil and Political Rights, aiming at the abolition of the death penalty", - "values": [ - "Death penalty", - "International instruments" - ] - }, - { - "text": "Continue the current national debate on the abolition of the death penalty and consider formalizing the de facto moratorium currently observed", - "values": [ - "Death penalty" - ] - }, - { - "text": "Strengthen measures to guarantee a safe and conducive environment for the free expression of civil society ", - "values": [ - "Civil society", - "Freedom of opinion and expression" - ] - }, - { - "text": "Obtain support from the CICIG and enhance judicial power to solve the issue of impunity.", - "values": [ - "Impunity", - "Justice" - ] - }, - { - "text": "Consider abolishing the death penalty and corporal punishment, in particular against children", - "values": [ - "Death penalty", - "Rights of the Child", - "Torture and other CID treatment" - ] - }, - { - "text": "Mobilize sufficient resources for the implementation of the Child Survival Action Plan launched on 7 July 2013", - "values": [ - "Rights of the Child" - ] - }, - { - "text": "Strengthen measures to eliminate discrimination against Roma and children on the basis of religion in health and education sectors", - "values": [ - "Freedom of religion and belief", - "Minorities", - "Racial discrimination", - "Right to education", - "Right to health", - "Rights of the Child" - ] - }, - { - "text": "Establish legal remedies that are accessible to women and ensure that women who report violations are treated in a gender-sensitive manner at all stages of judicial proceedings", - "values": [ - "Women's rights" - ] - }, - { - "text": "Pursue with reforms initiated to ensure the full enjoyment of human rights and fundamental freedoms to its citizens, in particular the harmonization of domestic legislation with its international commitments", - "values": [ - "International instruments" - ] - }, - { - "text": "Consider effective measures to prevent any unreasonable restrictions on the freedom of religion or belief as well as any related discriminatory treatment ", - "values": [ - "Freedom of religion and belief" - ] - }, - { - "text": "Strengthen participation by persons with disabilities in social life", - "values": [ - "Disabilities" - ] - }, - { - "text": "Ratify the American Convention on Human Rights ", - "values": [ - "Other" - ] - }, - { - "text": "Bring its legislation into conformity with its commitment to equality and non-discrimination for all by prohibiting discrimination based on sexual orientation or gender identity ", - "values": [ - "Sexual Orientation and Gender Identity" - ] - }, - { - "text": "Continue work on and consider expansion of its Reach Out to Asia Programme", - "values": [ - "Other" - ] - }, - { - "text": "Recommended that all allegations of torture and ill-treatment by law enforcement officers be investigated.", - "values": [ - "Human rights violations by state agents", - "Torture and other CID treatment" - ] - }, - { - "text": "Deepen legislative measures to eliminate the use of harmful traditional practices associated with the belief in witchcraft, that lead to delays in medical treatment provided to children and unnecessary exacerbation of treatable conditions, as expressed by the Committee on the Rights of the Child", - "values": [ - "Right to health", - "Rights of the Child", - "Torture and other CID treatment", - "Treaty bodies", - "Women's rights" - ] - }, - { - "text": "Consider extending a standing invitation to all special procedures of the Human Rights Council. ", - "values": [ - "Special procedures" - ] - }, - { - "text": "Strengthen measures to prevent and eradicate all manifestations of discrimination, xenophobia and violence against foreign nationals", - "values": [ - "Racial discrimination" - ] - }, - { - "text": "Implement the recommendations made by the European Committee for the Prevention of Torture and Inhuman or Degrading Treatment or Punishment in its September 2010 report, to improve the conditions of detention in its prisons ", - "values": [ - "Detention", - "Torture and other CID treatment", - "Treaty bodies" - ] - }, - { - "text": "Continue to further improve the health care system and guarantee more extensive protection in this area to the Malaysian people", - "values": [ - "Right to health" - ] - }, - { - "text": "Review recent amendments to the Prevention of Crime Act, as well as implementation of the Security Offences Act, for consistency with international human rights", - "values": [ - "Public security" - ] - }, - { - "text": "Continue to bolster its legal arsenal with regard to child labour", - "values": [ - "Labour", - "Rights of the Child" - ] - }, - { - "text": "Adopt necessary measure so that acquisition, possession, use of fire arms by civilian persons can be regulated effectively in order to protect human rights of all persons", - "values": [ - "Public security" - ] - }, - { - "text": "Further intensify its efforts to eliminate structural racism and racial discrimination in all its forms ", - "values": [ - "Racial discrimination" - ] - }, - { - "text": "Enact legislation on violence, including domestic violence against women to take appropriate measures to ensure that domestic laws and customary law, and certain aspects of the Sharia, are applied in ways compatible with the provisions of ICCPR", - "values": [ - "International instruments", - "Women's rights" - ] - }, - { - "text": "Further its endeavours with regard to the smooth and productive activity of the National Legal Aid Services Organization (NLASO) within the country ", - "values": [ - "Justice" - ] - }, - { - "text": "Take further action in ensuring and preserving the political, economic, social and cultural rights of the Crimean Tatars, which would also be conducive to better inter-communal relations", - "values": [ - "ESC rights - general", - "Minorities" - ] - }, - { - "text": "Accelerate the implementation of its national strategy for the reduction of the scale of poverty, including by availing itself of advanced international experience in this regard ", - "values": [ - "Poverty" - ] - }, - { - "text": "Hong Kong Special Administrative Region and Macao Special Administrative Region continue to function according to their realities and preserve different rights of their citizens in accordance with their laws", - "values": [ - "Other" - ] - }, - { - "text": "Ensure that children of minority groups have equal access to education and introduce curricula recognizing their right to use and receive education in their own language ", - "values": [ - "Minorities", - "Right to education", - "Rights of the Child" - ] - }, - { - "text": "Review and harmonize the existing anti-discrimination laws in order to ensure effective and comprehensive protection against all forms of discrimination in law and in practice", - "values": [ - "Other" - ] - }, - { - "text": "Extend a standing invitation to special procedures of the Human Rights Council ", - "values": [ - "Special procedures" - ] - }, - { - "text": "Continue to work to ensure equal rights for women in the workplace through its institutions, norms and public policies", - "values": [ - "Women's rights" - ] - }, - { - "text": "Take steps to put in place legislative and enforcement measures designed to eliminate all forms of violence against women, including sexual violence against women participating in protests and demonstrations", - "values": [ - "Freedom of association and peaceful assembly", - "Women's rights" - ] - }, - { - "text": "Ratify CAT, ICPPED, the Convention on the Rights of Persons with Disabilities (CRPD) and the various Inter-American human rights instruments", - "values": [ - "Disabilities", - "Enforced disappearances", - "International instruments", - "Torture and other CID treatment" - ] - }, - { - "text": "Accelerate the ratification of outstanding international human rights legal instruments", - "values": [ - "International instruments" - ] - }, - { - "text": "The Yemeni Government is studying a European Union initiative to establish an independent national human rights institution that complies with the Paris Principles, and has begun work on establishing a committee composed of representatives of the Ministry of Human Rights and the Office of the Prime Minister to study the feasibility of establishing such an institution in the foreseeable future ", - "values": [ - "National Human Rights Institution" - ] - }, - { - "text": "Extend an open and permanent invitation to special procedures ", - "values": [ - "Special procedures" - ] - }, - { - "text": "Continue working for inclusive education, facilitating the enrolment of children with disabilities and children of Roma ethnicity in regular educational centres", - "values": [ - "Disabilities", - "Minorities", - "Right to education", - "Rights of the Child" - ] - }, - { - "text": "Launch a constitutional reform process to better recognize and protect the rights of the Aboriginals and Torres Strait Islanders which would include a framework covering the principles and objectives of the United Nations Declaration on the Rights of Indigenous Peoples and would take into account the opinions and contributions of indigenous peoples ", - "values": [ - "Indigenous peoples", - "International instruments" - ] - }, - { - "text": "Maintain, as a permanent priority, the quality improvement in public health of the country ", - "values": [ - "Right to health" - ] - }, - { - "text": "Decriminalize conscientious objectors, introduce a genuinely civilian alternative to military service and release those imprisoned for refusing to perform military service", - "values": [ - "Freedom of religion and belief" - ] - }, - { - "text": "Strengthen the Commission on Human Rights and Administrative Justice (CHRAJ) through financial and human resources", - "values": [ - "National Human Rights Institution" - ] - }, - { - "text": "Promote gender equality in relation to bridging the wage gap, especially for women belonging to religious and ethnic minorities", - "values": [ - "Minorities", - "Women's rights" - ] - }, - { - "text": "Ratify Optional Protocol to the Convention on the Rights of Persons with Disabilities ", - "values": [ - "Disabilities", - "International instruments" - ] - }, - { - "text": "Adopt legislation to prohibit corporal punishment in public and private schools ", - "values": [ - "Rights of the Child", - "Torture and other CID treatment" - ] - }, - { - "text": "Consider incorporating sexual and reproductive health education into the school curriculum", - "values": [ - "Right to education", - "Right to health" - ] - }, - { - "text": "Ensure that all judicial bodies carrying out investigations into gender-based violence receive specialized training in order to meet the requirements of the Organic Law on Comprehensive Protection Measures against Gender Violence", - "values": [ - "Women's rights" - ] - }, - { - "text": "Pass legislation implementing the Rome Statute of the International Criminal Court into domestic law", - "values": [ - "International instruments", - "Justice" - ] - }, - { - "text": "Decriminalize consensual same-sex activities between adults and promote tolerance in this regard", - "values": [ - "Sexual Orientation and Gender Identity" - ] - }, - { - "text": "Continue adopting measures to promote equal representation in different spheres of society, as well as efforts to eliminate wage differences based on gender, particularly in the private sector", - "values": [ - "Women's rights" - ] - }, - { - "text": "Step up efforts concerning eradication of child labour, especially by means of targeted programs, such as income transfer conditioned on school attendance", - "values": [ - "Labour", - "Right to education", - "Rights of the Child" - ] - }, - { - "text": "Further strengthen bilateral cooperation, regional and international cooperation with countries of origin, transit and destination in order to more effectively address trafficking in women, and establish rehabilitation programs for social integration and economic autonomy for women victims of sexual exploitation and trafficking ", - "values": [ - "Trafficking", - "Women's rights" - ] - }, - { - "text": "The RMI is committed to properly implementing children's rights and improving the situation of children at the national level.", - "values": [ - "Rights of the Child" - ] - }, - { - "text": "Fully and thoroughly investigate and prosecute incidents and violence against human rights defenders, in particular journalists", - "values": [ - "Freedom of the press", - "Human rights defenders" - ] - }, - { - "text": "Consider new ways of addressing growing economic and social inequities arising out of rapid economic growth and share experiences-results of best practices in addressing poverty. ", - "values": [ - "Development", - "Poverty" - ] - }, - { - "text": "Make more efforts to preserve the environment when applying agricultural development and not to use internationally banned pesticides", - "values": [ - "Environment" - ] - }, - { - "text": "Consider establishing a National Human Rights Institution (NHRI) in accordance with the Paris Principles", - "values": [ - "National Human Rights Institution" - ] - }, - { - "text": "Continue its efforts regarding human trafficking for sexual exploitation, and consider drafting a new version of the comprehensive plan to fight trafficking for sexual exploitation", - "values": [ - "Trafficking" - ] - }, - { - "text": "Re-establish a fully independent National Human Rights Institution in accordance with the Paris Principles ", - "values": [ - "National Human Rights Institution" - ] - }, - { - "text": "Take further effective measures to combat violence against women", - "values": [ - "Women's rights" - ] - }, - { - "text": "Hasten the establishment of a National Human Rights Institution", - "values": [ - "National Human Rights Institution" - ] - }, - { - "text": "Urge Canada to amend its legislation on child prostitution in order to protect a child from prosecution or punishment for prostitution ", - "values": [ - "Rights of the Child" - ] - }, - { - "text": "Enhance its educational system with a focus on further improving literacy rates, with the support of the international community ", - "values": [ - "Right to education" - ] - }, - { - "text": "Continue its efforts in the fight against the terrorist gangs that perpetuate the most heinous crimes against humanity on a daily basis", - "values": [ - "Public security" - ] - }, - { - "text": "Take steps to establish a national human rights institution in accordance with the Paris Principles", - "values": [ - "National Human Rights Institution" - ] - }, - { - "text": "Ensure, through the Ministry of National Education, the inclusion of sexual and reproductive education in the national secondary curriculum as part of the preparation for adult life, which will contribute to prevent, inter alia, early marriage, unwanted pregnancy and the spread of HIV/AIDS among adolescents ", - "values": [ - "HIV - Aids", - "Rights of the Child", - "Women's rights" - ] - }, - { - "text": "Review the definition of torture in its national legislation so that it fully complies with that set out in article 1 of the Convention against Torture and other Cruel, Inhuman or Degrading Treatment or Punishment ", - "values": [ - "International instruments", - "Torture and other CID treatment" - ] - }, - { - "text": "Comply with the provisions of Security Council resolution 2351 of 2017, which extends the mandate of the United Nations Mission for the Referendum in Western Sahara and align itself with the principle of self-determination of the Saharawi people", - "values": [ - "Other" - ] - }, - { - "text": "Establish a strategy to seek the elimination of practices of discrimination against women and eliminate female genital mutilation ", - "values": [ - "Rights of the Child", - "Torture and other CID treatment", - "Women's rights" - ] - }, - { - "text": "Consider the possibility of ratifying the International Convention for the Protection of All Persons from Enforced Disappearance and the International Convention on the Protection of the Rights of All Migrant Workers and Members of Their Families", - "values": [ - "Enforced disappearances", - "International instruments", - "Labour", - "Migrants" - ] - }, - { - "text": "Continue positive efforts directed at eradicating poverty", - "values": [ - "Poverty" - ] - }, - { - "text": "Increase efforts to incorporate into domestic law international legal norms aimed at eliminating cultural or traditional gender-based discrimination, as indicated in the national report ", - "values": [ - "International instruments", - "Women's rights" - ] - }, - { - "text": "Commit to improving the situation of indigenous children, in particular as concerns ill-treatment, trafficking, child labour, illegal adoptions and difficulty in accessing schools and health-care services.", - "values": [ - "Indigenous peoples", - "Rights of the Child" - ] - }, - { - "text": "Improve the access for persons with disabilities to education and health care, with particular focus on children", - "values": [ - "Disabilities", - "Right to education", - "Right to health", - "Rights of the Child" - ] - }, - { - "text": "Strengthen the legal framework to prevent discrimination and violence against women, in particular domestic violence", - "values": [ - "Rights of the Child", - "Women's rights" - ] - }, - { - "text": "Establish a national human rights institution that is fully compliant with the Paris Principles ", - "values": [ - "National Human Rights Institution" - ] - }, - { - "text": "Continue to make efforts to combat gender-based violence ", - "values": [ - "Women's rights" - ] - }, - { - "text": "Continue its process of consultation with civil society in its follow-up to this review ", - "values": [ - "Civil society", - "UPR process" - ] - }, - { - "text": "Abolish the death penalty and ratify the Second Optional Protocol to the International Covenant on Civil and Political Rights", - "values": [ - "Death penalty", - "International instruments" - ] - }, - { - "text": "Undertake further measures to realize its policies in relation to gender equality", - "values": [ - "Women's rights" - ] - }, - { - "text": "Engage in bringing Tajikistan's legislation in line with the country's international and Organization for Security and Cooperation in Europe commitments to protect freedom of religion", - "values": [ - "Freedom of religion and belief" - ] - }, - { - "text": "Take effective measures to remove the obstacles for vulnerable children to accede to quality education ", - "values": [ - "Right to education", - "Rights of the Child" - ] - }, - { - "text": "Recommended that former paramilitary commanders continue to be heard within the framework of the application of the Justice and Peace Law.", - "values": [ - "Justice" - ] - }, - { - "text": "Incorporate its international human rights obligations into domestic laws, in particular with regard to economic, social and cultural rights ", - "values": [ - "ESC rights - general", - "International instruments" - ] - }, - { - "text": "Accede to the 1960 UNESCO Convention against Discrimination in Education.", - "values": [ - "International instruments", - "Right to education" - ] - }, - { - "text": "Strengthen cooperation with the relevant UN human rights mechanisms in areas such as racial discrimination, the restriction on the freedom of religion and belief, human trafficking", - "values": [ - "Freedom of religion and belief", - "Racial discrimination", - "Special procedures", - "Trafficking", - "Treaty bodies", - "UPR process" - ] - }, - { - "text": "Introduce legislative measures to strengthen the rule of law and consolidate cooperation between national and international mechanisms to fight against impunity notably between the ICC, the Special Investigation Unit, and the military court ", - "values": [ - "Impunity", - "International instruments", - "Justice" - ] - }, - { - "text": "Criminalize the corporal punishment of children in all circumstances and places", - "values": [ - "Rights of the Child", - "Torture and other CID treatment" - ] - }, - { - "text": "Work on the establishment of an institution concerned with the implementation of the Convention on the Rights of the Child", - "values": [ - "International instruments", - "Rights of the Child" - ] - }, - { - "text": "Accept the Rome Statute of the International Criminal Court.", - "values": [ - "International instruments", - "Justice" - ] - }, - { - "text": "Continue with the policy of promoting and protecting the rights of women, in accordance with the Constitution of 2014", - "values": [ - "Women's rights" - ] - }, - { - "text": "Further expedite the investigation and trial of the cases of gross human rights violation cases committed during the past military dictatorship to ensure adequate compensation and reparations for the victims and their families.", - "values": [ - "Human rights violations by state agents" - ] - }, - { - "text": "Adopt a moratorium on the death penalty and prohibit public executions, as a first step to abolition", - "values": [ - "Death penalty" - ] - }, - { - "text": "Take early and adequate action to curb structural discrimination against persons of foreign origin in the field of employment", - "values": [ - "Labour", - "Migrants", - "Racial discrimination" - ] - }, - { - "text": "Promote the work of human rights defenders and take all necessary measures to ensure freedom of expression.", - "values": [ - "Freedom of opinion and expression", - "Human rights defenders" - ] - }, - { - "text": "Adhere and adapt its legislation to the Arms Trade Treaty", - "values": [ - "General", - "International instruments" - ] - }, - { - "text": "Continue its efforts to create a national human rights institution as provided for the 1991 Decree, as modified in March 2015", - "values": [ - "National Human Rights Institution" - ] - }, - { - "text": "Consider ratifying two core United Nations human rights instruments, namely the International Covenant on Civil and Political Rights and the International Covenant on Economic, Social and Cultural Rights", - "values": [ - "CP rights - general", - "ESC rights - general", - "International instruments" - ] - }, - { - "text": "Strengthen support for victims of human trafficking", - "values": [ - "Trafficking" - ] - }, - { - "text": "Intensify efforts to tackle femicide and violence against women", - "values": [ - "Women's rights" - ] - }, - { - "text": "The Republic of Kazakhstan, as a democratic State, has pledged to respect and ensure to all individuals within its territory and subject to its jurisdiction the right to freedom of expression. It must be noted, however, that any measures adopted by the Government to restrict such rights are necessary to ensure respect for the rights or reputations of others or for the protection of national security or public order (ordre public) or public health or morals. Such measures are in full conformity with article 19 of the International Covenant on Civil and Political Rights.", - "values": [ - "Freedom of opinion and expression", - "International instruments" - ] - }, - { - "text": "Take all necessary measures to ensure enjoyment of the right to the highest attainable standard of health, without discrimination on the basis of sexual orientation or gender identity", - "values": [ - "Right to health", - "Sexual Orientation and Gender Identity" - ] - }, - { - "text": "Initiate a comprehensive strategy to address manifestation of racism, xenophobia and Islamophobia, especially in view to preventing xenophobic acts", - "values": [ - "Freedom of religion and belief", - "Racial discrimination" - ] - }, - { - "text": "Continue to strengthen its ongoing efforts in the education system, to ensure quality universal primary and secondary education for all children", - "values": [ - "Right to education", - "Rights of the Child" - ] - }, - { - "text": "Ensure that the Truth Commission created in November 2011 be provided with sufficient resources to recognize the right of victims to justice, in particular for crimes with no statute of limitation ", - "values": [ - "Justice" - ] - }, - { - "text": "Restore as soon as possible all fundamental freedoms as guaranteed by Pakistan's Constitution that were suspended at the imposition of the state of emergency in November and December last year. This implies reconfirming the independence of the judiciary and cancelling all remaining charges to human rights defenders.", - "values": [ - "Human rights defenders", - "Justice" - ] - }, - { - "text": "Review the 2016 Immigration Act in order to ensure its compatibility with the Convention on the Rights of the Child", - "values": [ - "Rights of the Child" - ] - }, - { - "text": "Proactively sustain the constitutional federal process in order to reinforce the long-term protection and respect for human rights and to establish the basis for future democratic elections ", - "values": [ - "Elections" - ] - }, - { - "text": "Consider establishing the total prohibition of corporal punishment", - "values": [ - "Torture and other CID treatment" - ] - }, - { - "text": "Continue with its plans to enhance economic development in all regions of Sri Lanka", - "values": [ - "Development" - ] - }, - { - "text": "Consider developing Human Rights Indicators as suggested by the OHCHR) as an instrument that allows for a more precise and coherent evaluation of national human rights policies", - "values": [ - "Other" - ] - }, - { - "text": "Continue the process of reform of the security forces to provide them with better capacity and training on human rights and moderate the use of force ", - "values": [ - "Human rights education and training" - ] - }, - { - "text": "Prosecute security officials involved in torturing, raping or killing", - "values": [ - "Extrajudicial executions", - "Human rights violations by state agents", - "Torture and other CID treatment" - ] - }, - { - "text": "Continue and enhance the ongoing positive efforts aimed at increasing the quality and accessibility of health services for all its citizens ", - "values": [ - "Right to health" - ] - }, - { - "text": "Continue its efforts in the implementation of accepted recommendations from the second cycle and consider sharing good practices in that regard", - "values": [ - "UPR process" - ] - }, - { - "text": "Develop statistics on cases of gender-based violence and analyse why many women do not to denounce abuses", - "values": [ - "Women's rights" - ] - }, - { - "text": "The abolition of the Press Scrutiny Board and the Broadcasting Censorship Board and take concrete steps to ensure that the press and broadcasting media can operate freely", - "values": [ - "Freedom of the press" - ] - }, - { - "text": "Continue working on children's rights taking into account its international obligations on this area ", - "values": [ - "Rights of the Child" - ] - }, - { - "text": "Ensure that the issue of early child marriage is addressed promptly, inter alia by making the minimum age for marriage equal for girls and boys ", - "values": [ - "Rights of the Child" - ] - }, - { - "text": "Ensure respect for freedoms of expression, peaceful assembly, and association by amending aspects of decrees such as the Public Order Act Amendment Decree, the Political Parties Decree, and the Media Industry Development Decree, that unduly restrict fundamental freedoms", - "values": [ - "Freedom of association and peaceful assembly", - "Freedom of opinion and expression" - ] - }, - { - "text": "Ensure that a gender perspective is fully integrated in the next stages of the review, including the outcome of the UPR process.", - "values": [ - "UPR process", - "Women's rights" - ] - }, - { - "text": "Establish or strengthen the machinery for reviewing the accelerated procedure of 48 hours in order to guarantee the rights of the asylum-seekers.", - "values": [ - "Asylum-seekers - refugees" - ] - }, - { - "text": "Continue working to ensure that human rights training is carried out more systematically and made available to all relevant interested parties, including the army and prison staff", - "values": [ - "Human rights education and training" - ] - }, - { - "text": "Strengthen existing efforts to prevent violence against women, including through financial support for shelters for victims of violence ", - "values": [ - "Women's rights" - ] - }, - { - "text": "Re-enforce all laws related to combatting human trafficking ", - "values": [ - "Trafficking" - ] - }, - { - "text": "Issue a standing invitation to special procedures ", - "values": [ - "Special procedures" - ] - }, - { - "text": "Revise national legislation so as to effectively implement the provisions of the Convention on the Rights of Persons with Disabilities", - "values": [ - "Disabilities", - "International instruments" - ] - }, - { - "text": "Complete the ratification process of the Convention on the Rights of Persons with Disabilities ", - "values": [ - "Disabilities", - "International instruments" - ] - }, - { - "text": "Ratify the International Convention for the Protection of All Persons from Enforced Disappearances as soon as possible", - "values": [ - "Enforced disappearances", - "International instruments" - ] - }, - { - "text": "Continue to apply a gender perspective in its policies and programmes, including in the follow-up on the results of the current review, within the context of its National Gender Policy Framework of 2008 and other mechanisms", - "values": [ - "Women's rights" - ] - }, - { - "text": "Accede to the International Convention on the Rights of All Migrant Workers and Members of Their Families ", - "values": [ - "International instruments", - "Labour", - "Migrants" - ] - }, - { - "text": "Continue its efforts to improve standard of living conditions, including promoting social security ", - "values": [ - "ESC rights - general" - ] - }, - { - "text": "Strengthen efforts on the fight of discrimination against women and girls, particularly regarding access to education, health, justice and participation ", - "values": [ - "Rights of the Child", - "Women's rights" - ] - }, - { - "text": "Apply fully existing national regulations forbidding the practice of female genital mutilation and amend national legislation to ensure full access to sexual and reproductive health rights", - "values": [ - "Right to health", - "Rights of the Child", - "Torture and other CID treatment", - "Women's rights" - ] - }, - { - "text": "Immediately and unconditionally release all those who have been detained solely for the peaceful exercise of their right to freedom of expression and assembly", - "values": [ - "Detention", - "Freedom of association and peaceful assembly", - "Freedom of opinion and expression" - ] - }, - { - "text": "Formulate and implement a plan for the integration of people with disabilities into mainstream society ", - "values": [ - "Disabilities" - ] - }, - { - "text": "Continue to promote and protect the rights of vulnerable groups, especially through the ratification of the Convention on the Rights of Persons with Disabilities", - "values": [ - "Disabilities", - "International instruments" - ] - }, - { - "text": "Take practical measures for adopting a non-discriminatory approach towards the Roma minority", - "values": [ - "Minorities", - "Racial discrimination" - ] - }, - { - "text": "Continue to enhance the human rights system according to the universally agreed principles, and refuse the imposition of values outside the legally agreed framework ", - "values": [ - "Poverty" - ] - }, - { - "text": "Take all necessary steps to implement the Committee on the Rights of the Child recommendation to prevent, prohibit and protect the child from all forms of torture or cruel inhuman or degrading treatment or punishment.", - "values": [ - "Rights of the Child", - "Torture and other CID treatment", - "Treaty bodies" - ] - }, - { - "text": "Issue an open and standing invitation to all special procedures ", - "values": [ - "Special procedures" - ] - }, - { - "text": "Adopt an intercultural health policy and strategy with an approach based on gender rights and sensitivity ensuring, inter alia, universal access to sexual and reproductive health, particularly in rural areas", - "values": [ - "Right to health", - "Women's rights" - ] - }, - { - "text": "Ensure respect for freedom of expression, freedom of the press and freedom of association", - "values": [ - "Freedom of association and peaceful assembly", - "Freedom of opinion and expression", - "Freedom of the press" - ] - }, - { - "text": "Eliminate all exceptions permitting the marriage of minors under 18", - "values": [ - "Rights of the Child" - ] - }, - { - "text": "Take measures to ensure full protection of children at all levels and in all spheres and to ensure that the institutions tasked to implement such measures are adequately funded and resourced in order to carry out this function effectively", - "values": [ - "Rights of the Child" - ] - }, - { - "text": "Pursue the necessary procedure to accede to the International Covenant on Economic, Social and Cultural Rights [1966]", - "values": [ - "ESC rights - general", - "International instruments" - ] - }, - { - "text": "Consider a moratorium on executions with a view to the complete abolition of the death penalty in line with General Assembly resolutions 62-149 and 63-168 .", - "values": [ - "Death penalty" - ] - }, - { - "text": "Strengthen the efforts to guarantee to all the population of Sierra Leone access to basic social services within the framework of the MDGs ", - "values": [ - "Development" - ] - }, - { - "text": "Speed up the process of selecting the members of the Human Rights Commission to make it operational", - "values": [ - "National Human Rights Institution" - ] - }, - { - "text": "Intensify efforts to provide easy and free access to registration of birth to all children", - "values": [ - "Rights of the Child", - "Statelessness and the right to nationality" - ] - }, - { - "text": "Continue to implement the discrimination reporting system in order to tackle stigmatization and discrimination of the most vulnerable groups", - "values": [ - "Other" - ] - }, - { - "text": "Repeal article 398 of the Afghan Penal Code with a view to ensuring full accountability for the perpetrators of so-called honour killings ", - "values": [ - "Rights of the Child", - "Women's rights" - ] - }, - { - "text": "Enhance measures on public awareness-raising and professional education to support the implementation of the law of 2010 amending article 319 of the Penal Code to remove the clause which provided a legal defence for the use of corporal punishment in child rearing ", - "values": [ - "Rights of the Child", - "Torture and other CID treatment" - ] - }, - { - "text": "Pay special attention to the adoption of comprehensive measures to address the aggravating problem of trafficking in children. Consider the possibility of sending an invitation to the Special Rapporteur on trafficking in persons, especially in women and children ", - "values": [ - "Rights of the Child", - "Special procedures", - "Trafficking", - "Women's rights" - ] - }, - { - "text": "Continue to improve both the quality and accessibility of education and related facilities ", - "values": [ - "Right to education" - ] - }, - { - "text": "Eliminate the obstacles that hinder the effective implementation of the Anti-Torture Act and fully comply with articles 18 and 19 of the Act, which foresee compensation and rehabilitation of victims", - "values": [ - "Torture and other CID treatment" - ] - }, - { - "text": "The Government was committed to creating about 10,000 jobs per year.", - "values": [ - "Development" - ] - }, - { - "text": "Accede to the Rome Statute of the International Criminal Court and fully implement its provisions", - "values": [ - "International instruments", - "Justice" - ] - }, - { - "text": "Mainstream the issues of immigrant women into its employment policies and programmes", - "values": [ - "Migrants", - "Women's rights" - ] - }, - { - "text": "Continue efforts to promote gender equality in combating discrimination and violence against women and girls, in particular domestic violence and early marriages", - "values": [ - "Rights of the Child", - "Women's rights" - ] - }, - { - "text": "Taking into consideration the reports of the Secretary-General about alleged human rights violations committed by the Forces Nouvelles, take measures to ensure the right to life, physical integrity and security of people ", - "values": [ - "Human rights violations by state agents", - "Other" - ] - }, - { - "text": "Take timely and extensive measures to guarantee to its citizens the right to express dissent", - "values": [ - "Freedom of opinion and expression" - ] - }, - { - "text": "Continue the progressive measures taken to promote the rights of migrant workers and their health", - "values": [ - "Labour", - "Migrants", - "Right to health" - ] - }, - { - "text": "Renew its commitment to freedom of expression and opinion as well as to pluralism, ensure free access to information, and take measures to fight threats and attacks against journalists ", - "values": [ - "Freedom of opinion and expression", - "Freedom of the press" - ] - }, - { - "text": "Ensure a conducive environment for human rights defenders to carry out their legitimate activities without fear or undue hindrance", - "values": [ - "Human rights defenders" - ] - }, - { - "text": "Issue a standing invitation to the special procedure mandate holders", - "values": [ - "Special procedures" - ] - }, - { - "text": "Redouble its advocacy efforts to enhance public awareness on gender equality and women's role in social and economic development. ", - "values": [ - "Human rights education and training", - "Women's rights" - ] - }, - { - "text": "Intensify efforts for the security of human rights defenders and reinforce cooperation with all stakeholders, in particular, the states and the military police. ", - "values": [ - "Human rights defenders" - ] - }, - { - "text": "Consider responding to the request of the United Nations Special Rapporteur on extrajudicial, summary or arbitrary executions to visit the country ", - "values": [ - "Extrajudicial executions", - "Special procedures" - ] - }, - { - "text": "Accede to the key international human rights instruments: the Convention on the Rights of the Child, the International Covenant on Economic, Social and Cultural Rights, the Convention on the Rights of Persons with Disabilities and the Convention on the Elimination of All forms of Discrimination against Women", - "values": [ - "Disabilities", - "ESC rights - general", - "International instruments", - "Rights of the Child", - "Women's rights" - ] - }, - { - "text": "Continue to implement the National Action Plan for Poverty Reduction in order to alleviate poverty and improve the standards of living", - "values": [ - "Poverty" - ] - }, - { - "text": "Continue with its efforts to establish a national human rights institution in line with the Paris Principles", - "values": [ - "National Human Rights Institution" - ] - }, - { - "text": "Expand services and support to prevent violence and discrimination against Aboriginal women and girls ", - "values": [ - "Indigenous peoples", - "Rights of the Child", - "Women's rights" - ] - }, - { - "text": "Undertake information campaigns to prevent discrimination, homophobic and transphobic violence", - "values": [ - "Sexual Orientation and Gender Identity" - ] - }, - { - "text": "Take further measures to prevent the trafficking of children ", - "values": [ - "Rights of the Child", - "Trafficking" - ] - }, - { - "text": "To promote, disseminate and socialize the rights of persons with visual disabilities, promoting the mass use of the Braille system to guarantee their right to information.", - "values": [ - "Disabilities" - ] - }, - { - "text": "Consider ending the use of tasers and full body searches in prisons ", - "values": [ - "Detention", - "Torture and other CID treatment" - ] - }, - { - "text": "Continue the promotion of economic and social development, and maintain domestic peace and stability to provide a solid basis for the protection and promotion of human rights", - "values": [ - "Development", - "ESC rights - general" - ] - }, - { - "text": "Continue increasing efforts countering the trafficking of persons including issuing an invitation to the Special Rapporteur on trafficking in persons, in particular women and children", - "values": [ - "Rights of the Child", - "Special procedures", - "Trafficking", - "Women's rights" - ] - }, - { - "text": "Improve resource allocations for the implementation of laws tackling participation of women in public office", - "values": [ - "Women's rights" - ] - }, - { - "text": "Continue efforts to promote children's rights and the right to education", - "values": [ - "Right to education", - "Rights of the Child" - ] - }, - { - "text": "Turkey is committed to supporting the full and effective participation of persons with disabilities in social life, advancing their rights, protecting their dignity, and promoting their access to employment, education, goods and services.", - "values": [ - "Disabilities" - ] - }, - { - "text": "Consider ratification of or accession to core international human rights conventions, to which Malaysia is not yet a party, including the ICRMW", - "values": [ - "International instruments", - "Labour", - "Migrants" - ] - }, - { - "text": "Continue to develop and implement development programmes and to improve the economic capacities of the entire country, including in the southern provinces of Morocco", - "values": [ - "Development" - ] - }, - { - "text": "Further pursue that its existing legislation at federal, state and local levels fully complies with the Convention on the Rights of the Child", - "values": [ - "International instruments", - "Rights of the Child" - ] - }, - { - "text": "Do more to ensure that children with disabilities are fully integrated into society.", - "values": [ - "Disabilities", - "Rights of the Child" - ] - }, - { - "text": "Conduct impartial and transparent investigations of cases where freedom of expression has been restricted", - "values": [ - "Freedom of opinion and expression" - ] - }, - { - "text": "Establish a National Human Rights Institution in accordance with the Paris Principles, as per the recommendations from its last universal periodic review appearance", - "values": [ - "National Human Rights Institution", - "UPR process" - ] - }, - { - "text": "Reinforce identification of child trafficking victims and ensure that referral and assistance mechanisms are provided and adapted to the victims' needs and best interests", - "values": [ - "Rights of the Child", - "Trafficking" - ] - }, - { - "text": "Take concrete steps towards acceding to/ratifying the Rome Statute of the International Criminal Court ", - "values": [ - "International instruments", - "Justice" - ] - }, - { - "text": "Share the methodology used in the elaboration of the national report as a good practice of the UPR", - "values": [ - "UPR process" - ] - }, - { - "text": "Establish authoritative institutions at national level to combat racism, racial discrimination, xenophobia, anti-Semitism and intolerance and to raise awareness amongst the Andorran population on these manifestations", - "values": [ - "Human rights education and training", - "Racial discrimination" - ] - }, - { - "text": "Continue efforts to guarantee a life with dignity for its citizens ", - "values": [ - "Other" - ] - }, - { - "text": "Strengthen the institutional framework for human rights by establishing a national institution in accordance with the Paris Principles", - "values": [ - "National Human Rights Institution" - ] - }, - { - "text": "Re-enforce measures to combat racism and discrimination against persons of foreign origin, in particular through the prohibition of ethnic profiling and through awareness raising in the security services as to nondiscriminatory measures and methods", - "values": [ - "Human rights violations by state agents", - "Migrants", - "Racial discrimination" - ] - }, - { - "text": "Enhance the coordination of both the central and state governments in an effective manner in order to guarantee the smooth implementation of the 2010 Right of Children to Free and Compulsory Education Act ", - "values": [ - "Right to education", - "Rights of the Child" - ] - }, - { - "text": "Establish a national human rights institution so as to promote human rights and address the many challenges mentioned by Lebanon in its national report ", - "values": [ - "National Human Rights Institution" - ] - }, - { - "text": "Ensure effective implementation of the Roma Integration Strategy for 2015-2020", - "values": [ - "Minorities" - ] - }, - { - "text": "Adopt further measures to fight impunity of persons responsible for torture and extrajudicial killings and to conduct prompt, thorough, independent and impartial investigations into allegations of these crimes ", - "values": [ - "Extrajudicial executions", - "Impunity", - "Torture and other CID treatment" - ] - }, - { - "text": "Evaluate the establishment of mechanisms that allow indigenous peoples to be guaranteed the right to their ancestral lands", - "values": [ - "Indigenous peoples", - "Right to land" - ] - }, - { - "text": "Improve and expand the capacity and coverage of domestic violence shelters as well as rehabilitation centres for domestic violence victims, especially in rural areas", - "values": [ - "Rights of the Child", - "Women's rights" - ] - }, - { - "text": "Adopt a bill criminalizing harmful cultural practices, and abolish child, early and enforced marriage", - "values": [ - "Rights of the Child", - "Torture and other CID treatment", - "Women's rights" - ] - }, - { - "text": "Take concrete actions to reduce the gender gap in decision-making positions as well as to ensure equal remuneration for men and women ", - "values": [ - "Women's rights" - ] - }, - { - "text": "Pursue and intensify its efforts towards strengthening the rights of women and children", - "values": [ - "Rights of the Child", - "Women's rights" - ] - }, - { - "text": "Ensure that human rights defenders can exercise their legitimate activities, including participation in international mechanisms, without being subjected to reprisals", - "values": [ - "Human rights defenders" - ] - }, - { - "text": "Stop taking any penal actions against Palestinian children in military courts and halt detention of all children", - "values": [ - "Detention", - "Justice", - "Rights of the Child" - ] - }, - { - "text": "Combat corruption, ensure the independence of the judiciary. Take steps to increase the effectiveness of the judiciary and prosecutor's office, and the level of professionalism of their staff", - "values": [ - "Corruption", - "Justice" - ] - }, - { - "text": "Continue efforts initiated in order to prosecute all perpetrators of serious human rights violations and provide assistance to victims", - "values": [ - "Justice" - ] - }, - { - "text": "Ensure that capital punishment is not imposed for offences committed by persons under 18 years of age ", - "values": [ - "Death penalty", - "Rights of the Child" - ] - }, - { - "text": "Continue to improve access to healthcare and education ", - "values": [ - "Right to education", - "Right to health" - ] - }, - { - "text": "Implement measures to prevent, punish and eradicate all forms of violence against women, devoting special attention to the situation of women in communities of refugees and internally displaced persons, and also completely eradicate the practice of female genital mutilation ", - "values": [ - "Asylum-seekers - refugees", - "Internally displaced persons", - "Rights of the Child", - "Torture and other CID treatment", - "Women's rights" - ] - }, - { - "text": "Repeal the death penalty from the domestic legal order and ratify the Second Optional Protocol to the International Covenant on Civil and Political Rights", - "values": [ - "Death penalty", - "International instruments" - ] - }, - { - "text": "Establish an independent judiciary and guarantee access to legal counsel and judicial redress to all detainees ", - "values": [ - "Detention" - ] - }, - { - "text": "Further strengthen legal provisions and comprehensive policies and strategies to ensure safety and fulfilment of rights of religious minority ", - "values": [ - "Freedom of religion and belief", - "Minorities" - ] - }, - { - "text": "Widen access to free primary health services and strengthen preventive measures on HIV/AIDS transmission to children ", - "values": [ - "HIV - Aids", - "Right to health", - "Rights of the Child" - ] - }, - { - "text": "Make every possible effort, both at home and at the international level, to raise awareness about the issue of genocide and to combat impunity, with the aim of preventing the recurrence of any acts of genocide ", - "values": [ - "Human rights education and training", - "Impunity" - ] - }, - { - "text": "Continue its efforts to combat trafficking in human beings", - "values": [ - "Trafficking" - ] - }, - { - "text": "Improve its public health system, especially to upgrade the existing facilities in both central and local hospitals nationwide, as well as to put in place measures to reduce infant mortality, malnutrition, and epidemics, especially HIV/AIDS", - "values": [ - "HIV - Aids", - "Right to health", - "Rights of the Child" - ] - }, - { - "text": "Consider extending an open invitation to all Special Procedures mandate holders with the aim of maximizing the efficiency of international cooperation in the national reconstruction and in the promotion and protection of all human rights of the Haitian people ", - "values": [ - "Special procedures" - ] - }, - { - "text": "Improve the conditions of workers and employers so as to enjoy their right to form their own organizations as well as to enjoy appropriate protection against any act of discrimination aimed at undermining freedom of association", - "values": [ - "Freedom of association and peaceful assembly", - "Labour" - ] - }, - { - "text": "Ensure gender equality by including it in the Constitution and enact relevant laws, namely, on the empowerment of women and gender equality, and to combat stereotypes that encourage discrimination against women", - "values": [ - "Women's rights" - ] - }, - { - "text": "Take measures to fully implement the law against discrimination of 2011 ", - "values": [ - "Other" - ] - }, - { - "text": "Place all places of detention under effective judicial supervision and apply international standards for the treatment of detainees", - "values": [ - "Detention" - ] - }, - { - "text": "Study the possibility of ratifying the International Covenant on Economic, Social and Cultural Rights, the Convention for the Protection of All Persons from Enforced Disappearance, the Convention against Torture, and the International Convention on the Protection of the Rights of All Migrant Workers and Members of Their Families ", - "values": [ - "ESC rights - general", - "Enforced disappearances", - "International instruments", - "Labour", - "Migrants", - "Torture and other CID treatment" - ] - }, - { - "text": "Take the necessary measures to ensure that the Independent National Human Rights Commission fully complies with the Paris Principles", - "values": [ - "National Human Rights Institution" - ] - }, - { - "text": "Start awareness campaigns aimed at protecting certain persons and certain groups against stereotyping that associates them with terrorism and to envisage an amendment to the anti-terrorism law to improve a specific clause against discrimination, and to amend relevant legislation or to adopt legislation to criminalise acts of racist violence, consistent with article 4 of ICERD", - "values": [ - "Counter-terrorism", - "Human rights education and training", - "International instruments", - "Minorities", - "Racial discrimination" - ] - }, - { - "text": "Combat impunity in cases of torture ", - "values": [ - "Impunity", - "Torture and other CID treatment" - ] - }, - { - "text": "Close political prison camps, eliminate discrimination based on the "songbun" system and cooperate with human rights mechanisms, including the Special Rapporteur on the situation of human rights in the Democratic People's Republic of Korea ", - "values": [ - "Detention", - "Freedom of opinion and expression", - "Justice", - "Special procedures", - "Treaty bodies", - "UPR process" - ] - }, - { - "text": "Expedite implementation of its voluntary commitments.", - "values": [ - "UPR process" - ] - }, - { - "text": "Consider acceding to the International Convention for the Protection of All Persons from Enforced Disappearance", - "values": [ - "Enforced disappearances", - "International instruments" - ] - }, - { - "text": "Continue pursuing sensitized policies designed for the integration and social inclusion of persons belonging to Romania's Roma community ", - "values": [ - "Minorities" - ] - }, - { - "text": "Investigate, prosecute and punish those responsible for rape and other forms of gender-based violence ", - "values": [ - "Women's rights" - ] - }, - { - "text": "Consider strengthening measures to prevent and protect the human rights of local communities from environmental impacts", - "values": [ - "Environment" - ] - }, - { - "text": "Continue efforts to facilitate the professional, social and economic inclusion of all national and ethnic and other minority groups, including the Serbian minority, represented in Croatia", - "values": [ - "Minorities" - ] - }, - { - "text": "Consider ratifying the International Convention on the Protection of the Rights of All Migrant Workers and Members of Their Families and the Convention against Torture and Other Cruel, Inhuman or Degrading Treatment or Punishment ", - "values": [ - "International instruments", - "Labour", - "Migrants", - "Torture and other CID treatment" - ] - }, - { - "text": "Take adequate measures to better protect the fundamental rights of migrant workers and refugees living in Armenia ", - "values": [ - "Asylum-seekers - refugees", - "Labour", - "Migrants" - ] - }, - { - "text": "Revise the law on marriage so that women and men are treated with equality in the state of marriage ", - "values": [ - "Women's rights" - ] - }, - { - "text": "Strengthen its efforts to address discrimination relating to sexual orientation and gender identity, ensure that all allegations of human rights violations against lesbian, gay, bisexual, transgender and intersex persons are investigated and that effective remedies are made available to victims", - "values": [ - "Sexual Orientation and Gender Identity" - ] - }, - { - "text": "Continue efforts to further reduce child labour and to punish those who employ children, in clear violation of the legislative provisions relating to child labour", - "values": [ - "Labour", - "Rights of the Child" - ] - }, - { - "text": "Implement effective measures to reduce the discrimination against women, including access to health, education, social welfare, justice and administrative services", - "values": [ - "Women's rights" - ] - }, - { - "text": "Adopt regulations recognising the rights of same-sex couples and of self-defined gender or transgender persons ", - "values": [ - "Sexual Orientation and Gender Identity" - ] - }, - { - "text": "Abolish the death penalty in the new Constitution and pending the abolition of the death penalty, establish an official moratorium on the use of the death penalty", - "values": [ - "Death penalty" - ] - }, - { - "text": "Continue to develop a criminal responsibility system that respects the rights of children, with an emphasis on the promotion of educational measures and the gradual decrease in leisure activities", - "values": [ - "Justice", - "Rights of the Child" - ] - }, - { - "text": "Ensure equality of rights is guaranteed to men and women, not just in some areas but in all spheres of life in the country", - "values": [ - "Women's rights" - ] - }, - { - "text": "Amend the Criminal Code to raise the age of criminal responsibility in accordance with international standards", - "values": [ - "Justice", - "Rights of the Child" - ] - }, - { - "text": "Continue efforts to ensure vulnerable children and adolescents in rural communities access quality education and health-care services", - "values": [ - "Right to education", - "Right to health", - "Rights of the Child" - ] - }, - { - "text": "Elaborate a strategy for creating more openness and tolerance in the general public for migrants and their rights ", - "values": [ - "Migrants" - ] - }, - { - "text": "Reach progressively the human rights goals set by the Council in its resolution 9-12.", - "values": [ - "General" - ] - }, - { - "text": "To ratify communication procedures relating to human rights treaties.", - "values": [ - "International instruments" - ] - }, - { - "text": "Continue its efforts to eliminate gender-based violence and enhance public security", - "values": [ - "Public security", - "Rights of the Child", - "Women's rights" - ] - }, - { - "text": "Consider the possibility of ratifying the Convention on the Protection of the Rights of All Migrant Workers and Members of Their Families", - "values": [ - "International instruments", - "Labour", - "Migrants" - ] - }, - { - "text": "Consider adopting laws and policies on the promotion of the full participation of women under equal conditions in decision-making in all sectors of public, political and professional life", - "values": [ - "Women's rights" - ] - }, - { - "text": "Implement the objectives of its 2005 Action Plan on Peace, Justice and Reconciliation and the National Priority Programme no. 6 in relation to human rights, and prosecute persons who committed grave human rights violations or war crimes ", - "values": [ - "Justice" - ] - }, - { - "text": "Devote sufficient resources to the National Human Rights Commission", - "values": [ - "National Human Rights Institution" - ] - }, - { - "text": "Tunisia will pursue, in 2008, its commitment to act for the promotion and respect of human rights, and to develop its cooperation with all the concerned parties at the national, regional and international levels", - "values": [ - "General" - ] - }, - { - "text": "Eliminate legal and political restrictions that discriminate against women on the basis of their personal status, and those that may violate their sexual and reproductive rights", - "values": [ - "Women's rights" - ] - }, - { - "text": "Monitor and evaluate the long-term effects of climate change", - "values": [ - "Environment" - ] - }, - { - "text": "Take concrete measures to ensure the right to education for all, focusing on decreasing the level of dropouts and on improving the quality of education", - "values": [ - "Right to education" - ] - }, - { - "text": "Continue its efforts aimed at combating all forms of discrimination and intolerance, in particular, racism and xenophobia", - "values": [ - "Racial discrimination" - ] - }, - { - "text": "Grant access to international humanitarian agencies such as WFP ", - "values": [ - "Right to food" - ] - }, - { - "text": "Heed the calls of the COI and Human Rights Council resolution 25/25 to end human rights violations, in particular, those that amount to crimes against humanity, and bring perpetrators to justice", - "values": [ - "Justice" - ] - }, - { - "text": "Adopt specific criminal legislation to protect the rights of women", - "values": [ - "Women's rights" - ] - }, - { - "text": "Move towards the adoption of a law that prohibits the work of children below the age of 14, as well as the worst forms of child labour and domestic child labour", - "values": [ - "Labour", - "Rights of the Child" - ] - }, - { - "text": "Swiftly conclude the process of setting up a national human rights institution in compliance with the Paris Principles", - "values": [ - "National Human Rights Institution" - ] - }, - { - "text": "Sign and ratify the Optional Protocol to the Convention on the Elimination of All Forms of Discrimination against Women", - "values": [ - "International instruments", - "Women's rights" - ] - }, - { - "text": "Carry out its engagement, in a constructive dialogue, with the United Nations human rights monitoring bodies ", - "values": [ - "Special procedures", - "Treaty bodies", - "UPR process" - ] - }, - { - "text": "Adopt and implement human trafficking legislation with a special focus on protecting children, in line with Togo's obligations under the Optional Protocol to the Convention on the Rights of the Child on the sale of children, child prostitution and child pornography", - "values": [ - "International instruments", - "Rights of the Child", - "Trafficking" - ] - }, - { - "text": "Create, strengthen and render operational human rights monitoring bodies.", - "values": [ - "Other" - ] - }, - { - "text": "Identify and remove administrative, physical and any other barriers that still impede access to birth registration, thus facilitating for everyone the access to health care and education", - "values": [ - "Right to education", - "Right to health", - "Rights of the Child", - "Statelessness and the right to nationality" - ] - }, - { - "text": "Ensure comprehensive implementation of the international human rights instruments ratified during the past several years", - "values": [ - "International instruments" - ] - }, - { - "text": "Criminalize domestic violence, create conditions in which victims do not fear to report cases of domestic violence, and increase the number of shelters available for victims", - "values": [ - "Rights of the Child", - "Women's rights" - ] - }, - { - "text": "Promote and protect the basic rights of ethnic and religious minorities in law and practice, especially Rohingyas", - "values": [ - "Freedom of religion and belief", - "Minorities" - ] - }, - { - "text": "Respond favourably to requests to visit by the special procedures and extend to them an open invitation", - "values": [ - "Special procedures" - ] - }, - { - "text": "Take measures to hold accountable perpetrators of serious human rights violations by the armed groups and to offer redress to the victims in Northern Mali ", - "values": [ - "International humanitarian law", - "Justice" - ] - }, - { - "text": "Identify priority areas and engage in international cooperation programmes to eradicate extreme poverty and ensure food security ", - "values": [ - "Poverty", - "Right to food" - ] - }, - { - "text": "Lead progress made to a systemic solution of the issue of conscientious objectors", - "values": [ - "Freedom of religion and belief" - ] - }, - { - "text": "Take early action to withdraw the remaining three reservations regarding the Convention on the Rights of the Child", - "values": [ - "International instruments", - "Rights of the Child" - ] - }, - { - "text": "Refrain from restricting freedom of expression, whether it is exercised online or offline, and ensure that journalists and media outlets are able to carry out their work without harassment", - "values": [ - "Freedom of opinion and expression", - "Freedom of the press" - ] - }, - { - "text": "Address gaps in the protection of migrants rights", - "values": [ - "Migrants" - ] - }, - { - "text": "Improve the treatment of prisoners and prison conditions ", - "values": [ - "Detention" - ] - }, - { - "text": "Continue the implementation of the National Strategy and Plan of Action for the Rights of the Child", - "values": [ - "Rights of the Child" - ] - }, - { - "text": "Take steps to align domestic legislation with international standards, particularly with regard to the definition of trafficking in persons, and the application of the principle of equal remuneration of pay for men and women in its labour laws", - "values": [ - "Trafficking", - "Women's rights" - ] - }, - { - "text": "Improve access to primary and secondary education for all children, including those with disabilities", - "values": [ - "Disabilities", - "Right to education", - "Rights of the Child" - ] - }, - { - "text": "Share best practices concerning training of law enforcement officials in human rights ", - "values": [ - "Human rights education and training" - ] - }, - { - "text": "Adopt a national plan of action to combat sexual and gender-based violence, criminalize marital rape as a matter of urgency and strengthen laws and their implementation on trafficking in persons", - "values": [ - "Trafficking", - "Women's rights" - ] - }, - { - "text": "Move swiftly to pass its new Media Law.", - "values": [ - "Freedom of the press" - ] - }, - { - "text": "Strengthen efforts on the eradication of extreme poverty and hunger through the full implementation of the Programme on Accelerated Growth and Employment", - "values": [ - "Poverty", - "Right to food" - ] - }, - { - "text": "Take all necessary measures to abolish the death penalty, including by ratifying the Second Optional Protocol to ICCPR ", - "values": [ - "Death penalty", - "International instruments" - ] - }, - { - "text": "Allocate the resources required for the Sierra Leone Human Rights Commission to carry out its core statutory functions ", - "values": [ - "National Human Rights Institution" - ] - }, - { - "text": "Extend an open and standing invitation to all Special Procedures mandate-holders and fully cooperate with them, permitting them to visit the country", - "values": [ - "Special procedures" - ] - }, - { - "text": "Establish effective procedures and mechanisms to receive, monitor and investigate complaints on ill-treatment and abuse of children, including sexual abuse, through a child-sensitive inquiry and judicial procedure, including the protection of the right to privacy of the child ", - "values": [ - "Justice", - "Rights of the Child", - "Torture and other CID treatment" - ] - }, - { - "text": "Demonstrate its full commitment to implementation of the national plan of action to increase the participation of women in decision-making, in national and regional peace consolidation mechanisms, in United Nations peace operations and in political affairs, by providing the necessary human and financial resources and clear and authoritative mandates to the relevant governmental institutions and mechanisms ", - "values": [ - "Women's rights" - ] - }, - { - "text": "Seek to ratify the Optional Protocol to the Convention to the Elimination of All Forms of Discrimination against Women", - "values": [ - "International instruments", - "Women's rights" - ] - }, - { - "text": "Adopt the necessary regulatory and inspection framework and fully implement the mechanisms already in place to guarantee the same legal protection to domestic workers as to other citizens ", - "values": [ - "Labour" - ] - }, - { - "text": "Review its educational system so that grades obtained in Islamic religion are recorded on school certificates", - "values": [ - "Freedom of religion and belief", - "Right to education" - ] - }, - { - "text": "Continue efforts aimed at improving access to continuing education and training in the area of human rights for judicial and legal officers, including through bilateral and other engagement with partners, in the light of the expressed need for greater capacity-building and technical assistance in key areas of governance ", - "values": [ - "Human rights education and training" - ] - }, - { - "text": "Ensure that all legal standards are in conformity with the Convention on the Elimination of All Forms of Discrimination against Women and actively fight against the practice of female genital mutilation", - "values": [ - "International instruments", - "Rights of the Child", - "Torture and other CID treatment", - "Women's rights" - ] - }, - { - "text": "Set up a national action plan with policies focusing on making the family the fundamental base for childcare, reducing the number of street children and child labor and ensuring the right of the child to education", - "values": [ - "Rights of the Child" - ] - }, - { - "text": "Intensify efforts to guarantee equality and non-discrimination in line with its international obligations by developing public human rights awareness programmes and taking concrete steps to advance the rights of women and girls, members of religious minorities, and lesbian, gay, bisexual, transgender and intersex persons and to combat caste-based discrimination, including to: criminalize marital rape, decriminalize consensual same-sex relations, and establish appropriate policies and practices for registering, investigating and prosecuting violence against women, girls and members of religious minorities", - "values": [ - "Disabilities", - "Freedom of religion and belief", - "International instruments", - "Rights of the Child", - "Sexual Orientation and Gender Identity", - "Women's rights" - ] - }, - { - "text": "Continue efforts aimed at strengthening the protection of human rights, in addition to improving the education and health system", - "values": [ - "Right to education", - "Right to health" - ] - }, - { - "text": "Present the constitutive documents for the establishment of the Malawi Human Rights Commission to the International Coordination Committee of National Human Rights Institutions so that they can be disseminated and their status determined in accordance with the Paris Principles ", - "values": [ - "National Human Rights Institution" - ] - }, - { - "text": "Decriminalize sexual relations between consenting adults of the same sex", - "values": [ - "Sexual Orientation and Gender Identity" - ] - }, - { - "text": "To share with the public sector and with civil society the recommendations and voluntary commitments from the second universal periodic review", - "values": [ - "Civil society", - "UPR process" - ] - }, - { - "text": "Continue measures for the promotion and protection of women's rights in particular in the workplace", - "values": [ - "Women's rights" - ] - }, - { - "text": "Should overlook its legislation on custody and take actions to ensure that the welfare and protection of the children are prioritized in custody cases", - "values": [ - "Rights of the Child" - ] - }, - { - "text": "Continue its collaboration with the human rights mechanisms and become a party to the optional protocols of ICESCR and ICCPR ", - "values": [ - "CP rights - general", - "ESC rights - general", - "International instruments" - ] - }, - { - "text": "Panama makes a voluntary commitment to obtaining approval for the following pending tasks before the second review cycle midterm implementation assessment: Make the minimum age of marriage the same for both men and women, Establish a national mechanism for the prevention of torture, Adopt a law establishing a comprehensive child protection system, and Set up a shelter for victims of trafficking in persons which will provide basic services such as accommodation, food and health care, as well as specialized interdisciplinary assistance.", - "values": [ - "General" - ] - }, - { - "text": "The Ministry of Disaster Management and Human Rights will launch a national human rights awareness campaign to commemorate the sixtieth anniversary of the Universal Declaration of Human Rights in 2008.", - "values": [ - "Human rights education and training" - ] - }, - { - "text": "Ratify Additional Protocol III to the Geneva Conventions of 12 August 1949", - "values": [ - "International humanitarian law", - "International instruments" - ] - }, - { - "text": "Strengthen sound inclusive policies for training those in charge of providing legal aid to the low-income population through the National School for Public Defence", - "values": [ - "Justice" - ] - }, - { - "text": "Expedite the ratification of the two Optional Protocols to CRC ", - "values": [ - "International instruments", - "Rights of the Child" - ] - }, - { - "text": "Ensure protection against exploitation and forced labour for all categories of workers, including farm and domestic workers, through such measures as a review of appropriate labour regulations", - "values": [ - "Labour" - ] - }, - { - "text": "Expand programmes of targeted social assistance to provide the population with education and medical services", - "values": [ - "ESC rights - general", - "Right to education", - "Right to health" - ] - }, - { - "text": "Reduce the number of capital offences and reduce the use of the death penalty. ", - "values": [ - "Death penalty" - ] - }, - { - "text": "Accede to the international treaties on human rights and ratify OPCRC-IC", - "values": [ - "International instruments", - "Rights of the Child" - ] - }, - { - "text": "Through modalities including the Inter-Ministerial Committee on Human Rights and the Consultative Committee on Humanitarian Assistance, Sri Lanka will continue to promote and protect human rights, coordinate humanitarian assistance and facilitate the work of local and international agencies providing such assistance.", - "values": [ - "International humanitarian law" - ] - }, - { - "text": "Determine its technical and financial assistance needs in order to solicit the support from its bilateral and multilateral partners", - "values": [ - "Technical assistance and cooperation" - ] - }, - { - "text": "Step up efforts to prevent and combat modern forms of slavery and human trafficking with special attention to the investigation and prosecution of all cases of sale and trafficking of children, including providing protection of child victims", - "values": [ - "Rights of the Child", - "Trafficking" - ] - }, - { - "text": "Consider ratifying the ILO Convention 169 ", - "values": [ - "Indigenous peoples", - "International instruments" - ] - }, - { - "text": "To implement the newest Racial Discrimination Act, by the constitution of the Institute against Racial Discrimination established in this law, and follow up of the plans and agreements such as the Programme of Action of the World Conference against racism, racial discrimination, xenophobia and related intolerance (Durban Programme of Action)", - "values": [ - "Racial discrimination" - ] - }, - { - "text": "Decriminalize defamation and make it part of the Civil Code", - "values": [ - "Freedom of opinion and expression" - ] - }, - { - "text": "Take immediate steps to put an end to violations of human rights, namely by implementing the recommendations of the report of the COI, established by the Human Rights Council ", - "values": [ - "Justice" - ] - }, - { - "text": "Complete the ratification process of the International Convention for the Protection of All Persons from Enforced Disappearance (CED)", - "values": [ - "Enforced disappearances", - "International instruments" - ] - }, - { - "text": "Declare immediately a moratorium on the application of death penalty and initiate the constitutional and legislative reforms leading to their total abolition", - "values": [ - "Death penalty" - ] - }, - { - "text": "Continue its efforts to strengthen its education system in accordance with the Basic Law on Education", - "values": [ - "Right to education" - ] - }, - { - "text": "Steps to counter negative attitudes and stereotypes towards disabled persons", - "values": [ - "Disabilities" - ] - }, - { - "text": "Ratify other principal international human rights instruments, particularly the ICCPR and the ICESCR", - "values": [ - "CP rights - general", - "ESC rights - general", - "International instruments" - ] - }, - { - "text": "Follow up on the legal framework for gender equality and domestic violence, including its application to law enforcement and judicial authorities handling cases of domestic violence, by taking more effective measures for its enforcement and increasing public awareness about the law in smaller towns and rural areas ", - "values": [ - "Human rights education and training", - "Women's rights" - ] - }, - { - "text": "Take all necessary measures to fully ensure the enjoyment of human rights by persons belonging to the Romani minority, including with regard to combating discrimination and violence against such persons", - "values": [ - "Minorities" - ] - }, - { - "text": "Continue to fight firmly against terrorism so as to provide security guarantees to the people of Lebanon to enjoy all human rights", - "values": [ - "Public security" - ] - }, - { - "text": "Implement the National Action Plan on Human Rights for 2017-2021", - "values": [ - "General" - ] - }, - { - "text": "Consider establishing an independent national human rights institution", - "values": [ - "National Human Rights Institution" - ] - }, - { - "text": "Develop clear medical guidelines on access to legal abortion ", - "values": [ - "Women's rights" - ] - }, - { - "text": "Ensure that the principle of equality between men and women is clearly formulated in the new Constitution and apply it in practice through concrete measures ", - "values": [ - "Women's rights" - ] - }, - { - "text": "To conduct an active campaign against the creation of negative stereotypes in relation to migrants and minorities, to step up measures to prevent discrimination against Muslims and to strengthen the dialogue with the Muslim communities", - "values": [ - "Freedom of religion and belief", - "Migrants", - "Minorities", - "Racial discrimination" - ] - }, - { - "text": "Bring all public buildings up to code so that they are accessible by persons with disabilities, in line with its international obligations and commitments", - "values": [ - "Disabilities" - ] - }, - { - "text": "Promote voter awareness and participation, and ensure free and fair elections, as these conditions are equally important on the local as on the national level ", - "values": [ - "Elections" - ] - }, - { - "text": "Recommended halting forced distribution of passports certifying Russian citizenship among ethnic Georgians In the occupied territories controlled by the Russian armed forces", - "values": [ - "Other", - "Statelessness and the right to nationality" - ] - }, - { - "text": "Regarding to the issue of timely reporting to the United Nations treaty bodies, the delegation stressed the Government's strong commitment to improving the quality of its reports to them.", - "values": [ - "Treaty bodies" - ] - }, - { - "text": "Adopt and implement effective legislation aimed at banning female genital mutilation and punishing the perpetrators", - "values": [ - "Rights of the Child", - "Torture and other CID treatment", - "Women's rights" - ] - }, - { - "text": "Adopt temporary special measures to increase the participation of women in all fields", - "values": [ - "Women's rights" - ] - }, - { - "text": "Introduce more rigorous anti-trafficking laws to better protect women and girls", - "values": [ - "Rights of the Child", - "Trafficking", - "Women's rights" - ] - }, - { - "text": "Continue strengthening Ecuador\u2019s excellent education policy", - "values": [ - "Right to education" - ] - }, - { - "text": "Continue to implement identified measures, plans and policies focusing mainly on poverty eradication", - "values": [ - "Poverty" - ] - }, - { - "text": "Accede to the International Convention [ICRMW]", - "values": [ - "International instruments", - "Labour", - "Migrants" - ] - }, - { - "text": "Consider the establishment or the strengthening of the existing national mechanism for coordination, implementation, reporting and follow-up", - "values": [ - "UPR process" - ] - }, - { - "text": "Ratify the Optional Protocol to the Convention on the Rights of the Child in order to better counter trafficking in children, child prostitution and child pornography ", - "values": [ - "International instruments", - "Rights of the Child", - "Trafficking" - ] - }, - { - "text": "Take steps to ensure that the initial and second reports (overdue since 2001) on the implementation of measures contained in the ICCPR, as well as in the CAT are submitted in the near future.", - "values": [ - "CP rights - general", - "Torture and other CID treatment", - "Treaty bodies" - ] - }, - { - "text": "Reconsider the lèse-majesté and Computer Crime laws in the framework of a public debate open to everyone and transparent, in order to bring them into line with the provisions of the International Covenant on Civil and Political Rights", - "values": [ - "Freedom of opinion and expression", - "International instruments" - ] - }, - { - "text": "Continue to promote gender equality and involvement of women in public services", - "values": [ - "Women's rights" - ] - }, - { - "text": "Further increase its efforts in order to fully implement its own action plan to end gender-based violence", - "values": [ - "Women's rights" - ] - }, - { - "text": "Comprehensive measures including legislative means to ensure independence of media", - "values": [ - "Freedom of the press" - ] - }, - { - "text": "Ratify human rights instruments, particularly CRPD, OP-CAT and the Protocol to Prevent, Suppress and Punish Trafficking in Persons, Especially Women and Children", - "values": [ - "Detention", - "Disabilities", - "International instruments", - "Torture and other CID treatment", - "Trafficking" - ] - }, - { - "text": "Identify concrete measures to combat social and cultural attitudes leading to discrimination and to specifically promote the sexual and reproductive rights of women and girls to work towards equality of pay and conditions for women in the workplace to reduce discrimination against people with HIV-AIDS and to increase the inclusion of lesbian, gay, bisexual and transgender people in the public and private sectors", - "values": [ - "HIV - Aids", - "Right to health", - "Rights of the Child", - "Sexual Orientation and Gender Identity", - "Women's rights" - ] - }, - { - "text": "Make it a government priority to ensure gender equality in all spheres of life, including by formulating a comprehensive strategy to eliminate attitudes and practices that discriminate against women and girls", - "values": [ - "Rights of the Child", - "Women's rights" - ] - }, - { - "text": "Ratify and fully implement, step by step, all core universal human rights treaties ", - "values": [ - "International instruments" - ] - }, - { - "text": "Adopt additional measures to combat all kinds of gender-based violence and to enforce the existing legislation on the matter by, inter alia, promoting awareness campaigns and providing appropriate care to women and girls victims of violence", - "values": [ - "Human rights education and training", - "Rights of the Child", - "Women's rights" - ] - }, - { - "text": "Strengthen the integration of the gender perspective in the formulation and implementation of policies", - "values": [ - "Women's rights" - ] - }, - { - "text": "Conclude the Tripartite Memorandum of Understanding on the future of labour relations in Fiji", - "values": [ - "Labour" - ] - }, - { - "text": "Improve efforts to guarantee the freedom of the press, and take all necessary steps to protect everyone individually or in association with others against any violence, retaliation, adverse discrimination or pressure as a consequence of his or her legitimate exercise of freedom of expression according to international human rights standards", - "values": [ - "Freedom of opinion and expression", - "Freedom of the press", - "International instruments" - ] - }, - { - "text": "Consider the possibility of adopting new measures to improve its human rights protection system ", - "values": [ - "General" - ] - }, - { - "text": "Put an end to racism and racial discrimination, in particular, against the indigenous people, including demolition of buildings and discontinuation of funding to essential and municipal services in indigenous communities pursued by both federal and local governments, as well as the enforced sterilization and adoption of indigenous women and children", - "values": [ - "Indigenous peoples", - "Racial discrimination", - "Right to housing", - "Rights of the Child", - "Torture and other CID treatment", - "Women's rights" - ] - }, - { - "text": "Incorporate in Lesotho's domestic legislation provisions of international legal instruments already ratified", - "values": [ - "International instruments" - ] - }, - { - "text": "Continue efforts to fight terrorism and adopt further programmes and activities to protect society from the phenomenon of terrorism, and fight extremism, which has come to pose a threat to many countries and an obstacle to their development ", - "values": [ - "Counter-terrorism" - ] - }, - { - "text": "Set up credible mechanisms to investigate human rights violations carried out by the security forces in order to allow for the compensation of victims and to bring to justice those responsible for these acts ", - "values": [ - "Human rights violations by state agents" - ] - }, - { - "text": "Heed the call of the Committee on the Rights of the Child for an independent ombudsman for children", - "values": [ - "National Human Rights Institution", - "Rights of the Child", - "Treaty bodies" - ] - }, - { - "text": "Ratify the Convention against Torture, signed in 2000", - "values": [ - "International instruments", - "Torture and other CID treatment" - ] - }, - { - "text": "Continue its effort to create human rights training for national public defence personnel", - "values": [ - "Human rights education and training" - ] - }, - { - "text": "Guarantee freedom of religion or belief and the full respect of the rights of persons belonging to minorities ", - "values": [ - "Freedom of religion and belief", - "Minorities" - ] - }, - { - "text": "Take effective steps to improve prison conditions and to reduce overcrowding", - "values": [ - "Detention" - ] - }, - { - "text": "Bring to a conclusion the legislative process and proceed to implement the bill on the protection of human rights defenders, journalists, those working in the media, and justice officials", - "values": [ - "Freedom of the press", - "Human rights defenders", - "Justice" - ] - }, - { - "text": "Put into place more effective measures to tackle violence against journalists and media personnel", - "values": [ - "Freedom of the press" - ] - }, - { - "text": "Continue putting in place measures to prevent and eliminate racism as well as religious intolerance and hatred", - "values": [ - "Freedom of religion and belief", - "Racial discrimination" - ] - }, - { - "text": "Strengthen efforts to build the rule of law in Bhutan in accordance with international standards,\nintegrating, alongside these, the principles of Gross National Happiness ", - "values": [ - "Justice" - ] - }, - { - "text": "Consider, as appropriate, the accession to core human rights instruments ", - "values": [ - "International instruments" - ] - }, - { - "text": "Review and adapt its Constitution and laws to ensure that discrimination on grounds of sexual orientation and gender identity is prohibited", - "values": [ - "Sexual Orientation and Gender Identity" - ] - }, - { - "text": "Continue the implementation of measures aimed to empower women and their contribution", - "values": [ - "Women's rights" - ] - }, - { - "text": "Adopt appropriate measures to tackle social prejudices, stigmatization, harassment, discrimination and violence against individuals because of their sexual orientation", - "values": [ - "Sexual Orientation and Gender Identity" - ] - }, - { - "text": "Establish a Juvenile Rehabilitation Centre to ensure detention separate from adults and the safety of juvenile offenders whilst in detention and to equip them to be productive citizens on release into society", - "values": [ - "Detention", - "Rights of the Child" - ] - }, - { - "text": "End institutionalization of children under the age of 3", - "values": [ - "Rights of the Child" - ] - }, - { - "text": "Implement the necessary reforms to reduce their greenhouse gas emissions and cooperate with the international community to mitigate threats against human rights resulting from climate change", - "values": [ - "Environment" - ] - }, - { - "text": "Ensure effective and adequate protection of women against domestic violence, including by providing legal assistance and shelters", - "values": [ - "Women's rights" - ] - }, - { - "text": "Investigate all alleged acts of torture and hold accountable State security agents who are found culpable", - "values": [ - "Human rights violations by state agents", - "Torture and other CID treatment" - ] - }, - { - "text": "Further strengthen its efforts to promote equality, non-discrimination and tolerance through the monitoring of racially motivated violence and inclusion of human rights education in school and university curriculum ", - "values": [ - "Human rights education and training", - "Racial discrimination" - ] - }, - { - "text": "Amend the Criminal Code with the view to specifically prohibiting trafficking in human beings as a criminal offence", - "values": [ - "Trafficking" - ] - }, - { - "text": "Implement a national policy on children's rights including the amendment of legislation on juvenile justice and immediately address the reduction of preventive detention for persons under 18 and the harmonization of the age of criminal liability in accordance with the Convention on the Rights of the Child", - "values": [ - "International instruments", - "Justice", - "Rights of the Child" - ] - }, - { - "text": "Implement what came in the women's and children's strategies, and the development of policies and programs that promote these two issues", - "values": [ - "Rights of the Child", - "Women's rights" - ] - }, - { - "text": "Accelerate its process to ratify the Rome Statute", - "values": [ - "International instruments", - "Justice" - ] - }, - { - "text": "Enhance efforts to reduce the high maternal and under-five morbidity and mortality rates", - "values": [ - "Right to health", - "Rights of the Child", - "Women's rights" - ] - }, - { - "text": "Further consolidate its efforts to combat trafficking in persons ", - "values": [ - "Trafficking" - ] - }, - { - "text": "Take steps to eradicate slavery, slavery-like practices and related abuses and discrimination in the country ", - "values": [ - "Other" - ] - }, - { - "text": "Keep efforts to restore basic services in justice, the police and healthcare as a matter of priority", - "values": [ - "Justice", - "Right to health" - ] - }, - { - "text": "Introduce an immediate moratorium on executions with the intention of abolishing the death penalty and improve methods to accurately determine the ages of all defendants, such as by improving birth registration rates ", - "values": [ - "Death penalty", - "Statelessness and the right to nationality" - ] - }, - { - "text": "Take further measures to ensure all women without any discrimination access to adequate obstetric delivery services and sexual and reproductive health services, including safe abortion and gender-sensitive comprehensive contraceptive services ", - "values": [ - "Right to health", - "Women's rights" - ] - }, - { - "text": "Consider ratifying the Optional Protocol to the Convention against Torture and Other Cruel, Inhuman or Degrading Treatment or Punishment and establish a National Preventive Mechanism", - "values": [ - "Detention", - "International instruments", - "Torture and other CID treatment" - ] - }, - { - "text": "Continue to support developing countries in the fight against poverty through its development assistance ", - "values": [ - "Development" - ] - }, - { - "text": "Ensure equal employment opportunities for women, and enhance women's participation in the workforce by recruiting qualified women for expert and supervisory positions in all ministries, diplomatic corps and the judiciary ", - "values": [ - "Women's rights" - ] - }, - { - "text": "Remove restrictions on religious freedoms ", - "values": [ - "Freedom of religion and belief" - ] - }, - { - "text": "Take further steps to ensure the promotion of the values of tolerance, dialogue and mutual understanding at the local level", - "values": [ - "Other" - ] - }, - { - "text": "The Maldives accepts this [100.91] recommendation. The Maldives commits to begin domestic awareness-raising and an open public debate on religious issues. Moreover, bearing in mind that perceptions of human rights and religion in the Maldives are heavily influenced by relevant international debates and norms, the Maldives requests international support to host, in 2012, a major international conference on modern Sharia jurisprudence and human rights.", - "values": [ - "Human rights education and training" - ] - }, - { - "text": "Prepare and adopt the law affirming the right to establish nongovernmental organizations merely upon notification", - "values": [ - "Civil society", - "Freedom of association and peaceful assembly" - ] - }, - { - "text": "Ratify the Rome Statute as soon as possible", - "values": [ - "International instruments", - "Justice" - ] - }, - { - "text": "Establish effective complaint mechanisms for victims of torture", - "values": [ - "Torture and other CID treatment" - ] - }, - { - "text": "Continue strengthening its successful policies developed to increase access to education and health, particularly for women and children as well as consolidating housing for families in need", - "values": [ - "Right to education", - "Right to health", - "Rights of the Child", - "Women's rights" - ] - }, - { - "text": "Adopt additional measures to improve prison conditions, eliminating overcrowding and raising the standards of quality within prisons", - "values": [ - "Detention" - ] - }, - { - "text": "Continue its efforts in its legal reform process to further promote and protect human rights in the country", - "values": [ - "General" - ] - }, - { - "text": "Guarantee an independent and impartial judiciary, including by refraining from undue interference by the executive", - "values": [ - "Justice" - ] - }, - { - "text": "Integrate a gender perspective in the follow-up process to the review.", - "values": [ - "UPR process", - "Women's rights" - ] - }, - { - "text": "Continue with its international cooperation through its assistance in capacity building for human rights protection in different parts of the world ", - "values": [ - "Technical assistance and cooperation" - ] - }, - { - "text": "Continue efforts to advance the right to assembly, especially by adopting measures that allow for the creation of associations, trade unions and envisage the creation of political parties", - "values": [ - "Freedom of association and peaceful assembly" - ] - }, - { - "text": "Continue to support its initiative to establish the special fund for small and medium development projects, which was adopted at the latest Arab Economic Summit ", - "values": [ - "Development" - ] - }, - { - "text": "Commit more resources to the provision of services for children with disabilities.", - "values": [ - "Disabilities", - "Rights of the Child" - ] - }, - { - "text": "Finalize the process already under way for the ratification of the Convention on the Rights of Persons with Disabilities ", - "values": [ - "Disabilities", - "International instruments" - ] - }, - { - "text": "Continue further improvement of the protection and promotion of human rights in the country ", - "values": [ - "General" - ] - }, - { - "text": "Invest further efforts in addressing the root causes of recent racial incidents and expand its capacity in reducing poverty in neighbourhoods experiencing sub/par public services, including access to adequate housing and public safety", - "values": [ - "Poverty", - "Public security", - "Racial discrimination", - "Right to housing" - ] - }, - { - "text": "Take concrete actions to eradicate the use of torture, including through strengthening relevant provisions in national legislation ", - "values": [ - "Torture and other CID treatment" - ] - }, - { - "text": "Ensure that the establishment of its national human rights institutions complies with the Paris Principles", - "values": [ - "National Human Rights Institution" - ] - }, - { - "text": "Consider the possibility of establishing a system to follow up on international recommendations, including universal periodic review accepted recommendations", - "values": [ - "UPR process" - ] - }, - { - "text": "Sign and ratify the Council of Europe Convention on Preventing and Combating Violence against Women and Domestic Violence", - "values": [ - "International instruments", - "Rights of the Child", - "Women's rights" - ] - }, - { - "text": "Implement all measures to combat impunity, initiate proceedings against the perpetrators of human rights violations and provide compensation for victims, as envisaged in the final report of the National Commission to establish the facts on the excesses and abuses committed during the recent event ", - "values": [ - "Impunity", - "Justice", - "National Human Rights Institution" - ] - }, - { - "text": "Ratify the OP-CAT, the ICERD and the Optional Protocols of the ICCPR", - "values": [ - "Death penalty", - "Detention", - "International instruments", - "Racial discrimination", - "Torture and other CID treatment" - ] - }, - { - "text": "Provide sufficient human and financial resources to the National Commission for Human Rights, so as to enable the Commission to carry out its mandate more effectively ", - "values": [ - "National Human Rights Institution" - ] - }, - { - "text": "Promulgate a criminal code and amend the law of criminal procedure to comply with international human rights law", - "values": [ - "International instruments", - "Justice" - ] - }, - { - "text": "Create, if not a national human rights institution, at least one at the level of the group of Islands it belongs to, so that they may more effectively improve their human rights performance and implement their human rights obligations.", - "values": [ - "National Human Rights Institution" - ] - }, - { - "text": "Revoke recently introduced laws that obstruct fundamental freedoms", - "values": [ - "General" - ] - }, - { - "text": "Adopt measures to increase the representation of women in positions of responsibility in the legislative and executive organs, setting specific deadlines for this", - "values": [ - "Women's rights" - ] - }, - { - "text": "Pursue efforts for the advancement and empowerment of women and for the integration of women's needs into development ", - "values": [ - "Women's rights" - ] - }, - { - "text": "Ghana is furthermore committed to ensuring that businesses in the mining sector as well as in the other sectors of the economy give due regard to human rights issues in their operations. Ghana welcomes the Guiding Principles on Business and Human Rights for implementing the United Nations Protect, Respect and Remedy Framework as it will help the country address protection gaps in respect of business-related human rights abuses ", - "values": [ - "Business and human rights", - "Development" - ] - }, - { - "text": "Strengthen measures to combat all forms of discrimination and other related forms of intolerance", - "values": [ - "Other" - ] - }, - { - "text": "Cooperate with the United Nations Independent Expert, including by granting him access to the entire country", - "values": [ - "Special procedures" - ] - }, - { - "text": "Ensure also thorough, independent and impartial investigation of all previous serious violations of human right, including the tragic event of May 2005 in Andijan.", - "values": [ - "Human rights violations by state agents" - ] - }, - { - "text": "Sign, ratify and implement into its national legislation key human rights treaties, such as CAT", - "values": [ - "International instruments", - "Torture and other CID treatment" - ] - }, - { - "text": "Consider ratifying International Labour Organization Convention No. 189 (2011) concerning decent work for domestic workers", - "values": [ - "International instruments", - "Labour" - ] - }, - { - "text": "Continue to strengthen the National Human Rights Commission", - "values": [ - "National Human Rights Institution" - ] - }, - { - "text": "Pay special attention to the condition of persons in prisons and continue its capacity-building policy in the field of health care services. ", - "values": [ - "Detention" - ] - }, - { - "text": "Establish within the Police Service a domestic violence and victims support unit ", - "values": [ - "Rights of the Child", - "Women's rights" - ] - }, - { - "text": "Continue to fully involve the national civil society in the follow-up to the UPR of India as was done for its preparation.", - "values": [ - "Civil society", - "UPR process" - ] - }, - { - "text": "Implement the National Action Plan on Gender-based violence and the national action plan for zero hunger", - "values": [ - "Right to food", - "Women's rights" - ] - }, - { - "text": "Establish a moratorium on executions with a view to abolish the death penalty", - "values": [ - "Death penalty" - ] - }, - { - "text": "Eliminate the death penalty from its national legislation", - "values": [ - "Death penalty" - ] - }, - { - "text": "Incorporate the Convention on the Elimination of All Forms of Discrimination against Women and its Optional Protocol into its national legislation", - "values": [ - "International instruments", - "Women's rights" - ] - }, - { - "text": "In light of the 1 July 2010 amendments to Danish legislation reducing the age for criminal responsibility to 14, bring it into line with the recommendations of the Committee on the Rights of the Child ", - "values": [ - "Justice", - "Rights of the Child", - "Treaty bodies" - ] - }, - { - "text": "Combat all forms of discrimination and abuse against LGBTI persons", - "values": [ - "Sexual Orientation and Gender Identity" - ] - }, - { - "text": "Adopt a comprehensive and integral policy against discrimination in all its forms, especially against women, people of African descent and indigenous peoples, along with a respective plan of action", - "values": [ - "Indigenous peoples", - "Minorities", - "Racial discrimination", - "Women's rights" - ] - }, - { - "text": "Take measures to prevent those involved in law enforcement, politics, the Government and civilians in general from being involved in illicit activities with illegal armed combatants.", - "values": [ - "International humanitarian law" - ] - }, - { - "text": "Ratify both Protocols to the Convention on the Rights of the Child (CRC) (CRC-OP-AC and the Optional Protocol on the sale of children, child prostitution and child pornography, CRC-OP-SC).", - "values": [ - "International humanitarian law", - "International instruments", - "Rights of the Child", - "Trafficking" - ] - }, - { - "text": "Adopt specific legislation to eliminate violence against women, including domestic violence ", - "values": [ - "Women's rights" - ] - }, - { - "text": "Ratify the Second Optional Protocol to the International Covenant on Civil and Political Rights with a view to abolishing the death penalty as soon as possible ", - "values": [ - "Death penalty", - "International instruments" - ] - }, - { - "text": "Ensure that laws combating FGM and forced marriages are compatible with its international human rights obligations and that resources are allocated, including through multilateral international cooperation, to fully implement such laws", - "values": [ - "International instruments", - "Rights of the Child", - "Technical assistance and cooperation", - "Torture and other CID treatment", - "Women's rights" - ] - }, - { - "text": "Accept legal responsibility for and address, once and for all, the Japanese military sexual slavery and other violations committed in the past in other Asian countries including Korea", - "values": [ - "Women's rights" - ] - }, - { - "text": "Bring alleged perpetrators of slavery to justice, and ensure that victims of slavery enjoy full reparations ", - "values": [ - "Other" - ] - }, - { - "text": "Withdraw the general reservation to CRC and CEDAW ", - "values": [ - "International instruments", - "Rights of the Child", - "Women's rights" - ] - }, - { - "text": "Improve the investigation of alleged human rights violations by law enforcement officials, including by establishing an independent mechanism to investigate such allegations with the power to order disciplinary proceedings and refer cases directly to the judicial authorities", - "values": [ - "Human rights violations by state agents" - ] - }, - { - "text": "Strengthen its social security system in order to effectively guarantee the poor population the right to health care and housing so that the results of economic development will benefit the entire population", - "values": [ - "Poverty", - "Right to health", - "Right to housing" - ] - }, - { - "text": "Continue the legal and legislative reforms ", - "values": [ - "Justice" - ] - }, - { - "text": "Give priority attention to the questions of gender equality and discrimination against women ", - "values": [ - "Women's rights" - ] - }, - { - "text": "Improve the system of gathering and analysis of statistics regarding migrants' workers and develop a national strategy for migration in the wider framework of the economic development policies of the country ", - "values": [ - "Development", - "Labour", - "Migrants" - ] - }, - { - "text": "Take appropriate measures to address violence against children. ", - "values": [ - "Rights of the Child" - ] - }, - { - "text": "Revise the Criminal code to include, as criminal offences, all forms of sexual and psychological violence against women and girls, including marital rape", - "values": [ - "Rights of the Child", - "Women's rights" - ] - }, - { - "text": "Ensure that the use of force and firearms is regulated in law in accordance with international standards", - "values": [ - "Public security" - ] - }, - { - "text": "Consider ratifying the International Labour Organization (ILO) Domestic Workers Convention, 2011 (No. 189) ", - "values": [ - "International instruments", - "Labour" - ] - }, - { - "text": "Legislate to remove the death penalty from its statute books and commute to custodial sentences those death sentences that have already been passed down", - "values": [ - "Death penalty" - ] - }, - { - "text": "Consider establishing an independent national human rights institution fully compliant with the principles relating to the status of national institutions for the promotion and protection of human rights ", - "values": [ - "National Human Rights Institution" - ] - }, - { - "text": "Consider the possibility of announcing moratorium on the use of the death penalty ", - "values": [ - "Death penalty" - ] - }, - { - "text": "Ensure that all laws, regulations, policies and practices are consistent with the Convention on the Rights of Persons with Disabilities and with rights to equality generally, as part of, or in addition to, the multitrack strategy referred to in its report ", - "values": [ - "Disabilities", - "International instruments" - ] - }, - { - "text": "Bring the Human Rights and Anti-Discrimination Commission into line with the Paris Principles", - "values": [ - "National Human Rights Institution" - ] - }, - { - "text": "Continue efforts to improve prison conditions ", - "values": [ - "Detention" - ] - }, - { - "text": "Ensure the equal rights of lesbian, gay, bisexual and transgender -LGBT- people by legally recognizing same-sex marriage and civil partnerships", - "values": [ - "Sexual Orientation and Gender Identity" - ] - }, - { - "text": "Continue giving top priority to the issue of unaccompanied asylum seeking minors placed in asylum centres and protecting them from disappearances, including providing the necessary resources, enhancing measures to quickly identify and bolstering previous efforts in this regard ", - "values": [ - "Asylum-seekers - refugees", - "Enforced disappearances", - "Rights of the Child" - ] - }, - { - "text": "Amend the General Scheme of the International Protection Bill to address family reunification, best interests of the child and the legal framework of reception conditions", - "values": [ - "Asylum-seekers - refugees", - "International instruments", - "Rights of the Child" - ] - }, - { - "text": "Continue to fight poverty with the support and cooperation of the international community", - "values": [ - "Poverty", - "Technical assistance and cooperation" - ] - }, - { - "text": "Establish a national preventive mechanism for combating torture in line with the Optional Protocol to the Convention against Torture", - "values": [ - "Detention", - "International instruments", - "Torture and other CID treatment" - ] - }, - { - "text": "Revise the Family Code to prohibit polygamy and the marriage of minors, as well as to guarantee equality between men and women in inheritance matters and in the right to guardianship", - "values": [ - "Women's rights" - ] - }, - { - "text": "Strengthen hate crimes laws to protect against violence motivated by gender identity, sexual orientation and intolerance, and implement public awareness campaigns to include law enforcement officials and to combat intolerance", - "values": [ - "Human rights education and training", - "Sexual Orientation and Gender Identity" - ] - }, - { - "text": "Carry out, with the Special Procedures of the Council, an independent investigation of cases of disappearances and murders of Aboriginal women and girls ", - "values": [ - "Indigenous peoples", - "Rights of the Child", - "Special procedures", - "Women's rights" - ] - }, - { - "text": "Consider ratification of the International Covenant on Economic, Social and Cultural Rights as accepted during the first cycle review", - "values": [ - "ESC rights - general", - "International instruments", - "UPR process" - ] - }, - { - "text": "Establish a compulsory education age that is equal to or higher than the minimum age for employment", - "values": [ - "Right to education" - ] - }, - { - "text": "Speed up the process of adopting the new Penal Code that foresees the abolition of the death penalty ", - "values": [ - "Death penalty" - ] - }, - { - "text": "Approve the national strategy to promote gender mainstreaming and empowerment of women, and to strengthen mechanisms responsible for monitoring its effective implementation", - "values": [ - "Women's rights" - ] - }, - { - "text": "Bring national legislation into line with international commitments made by the Marshall Islands on non-discrimination against women, in particular the Convention on the Elimination of All Forms of Discrimination against Women and continue its efforts to implement the Convention", - "values": [ - "International instruments", - "Women's rights" - ] - }, - { - "text": "Develop plans or strategies to address homelessness and poverty", - "values": [ - "Poverty", - "Right to housing" - ] - }, - { - "text": "Devise more specific measures to eliminate discrimination against women, ethnic minorities, migrants, Muslim and people of African origin ", - "values": [ - "Freedom of religion and belief", - "Migrants", - "Minorities", - "Racial discrimination", - "Women's rights" - ] - }, - { - "text": "Intensify efforts to prevent overcrowding in prisons", - "values": [ - "Detention" - ] - }, - { - "text": "Consider taking necessary steps to develop technical expertise to gain a better understanding of its obligations in ensuring effective implementation of human rights instruments ", - "values": [ - "International instruments" - ] - }, - { - "text": "Take the necessary steps to ratify the International Convention on the Protection of the Rights of All Migrant Workers and Members of Their Families ", - "values": [ - "International instruments", - "Labour", - "Migrants" - ] - }, - { - "text": "Strengthen efforts to prevent and combat all forms of discrimination and violence against women, also by adopting and implementing effective measures on the issue, and ensure that women victims of violence receive appropriate help and that perpetrators are brought to justice", - "values": [ - "Women's rights" - ] - }, - { - "text": "Continue to consolidate its successful health policy, which responds to the health needs of its people ", - "values": [ - "Right to health" - ] - }, - { - "text": "Ensure full respect for freedom of religion or belief and the human rights of the persons belonging to ethnic and religious minorities, in line with international human rights law", - "values": [ - "Freedom of religion and belief", - "International instruments", - "Minorities" - ] - }, - { - "text": "Guarantee freedom of religion and worship to all persons in the country", - "values": [ - "Freedom of religion and belief" - ] - }, - { - "text": "Continue its constructive engagement and cooperation with the international human rights mechanism, including through technical cooperation", - "values": [ - "Special procedures", - "Treaty bodies", - "UPR process" - ] - }, - { - "text": "Continue strengthening national mechanisms to promote and protect human rights ", - "values": [ - "General" - ] - }, - { - "text": "Enhance efforts to implement all international human rights obligations it has undertaken ", - "values": [ - "International instruments" - ] - }, - { - "text": "Take concrete measures to ensure full respect for freedom of expression and of the press and release persons detained for exercising their freedom of expression, or as a result of their political views ", - "values": [ - "Freedom of opinion and expression", - "Freedom of the press" - ] - }, - { - "text": "Thoroughly investigate and prosecute incidents of violence perpetuated against persons with albinism", - "values": [ - "Minorities" - ] - }, - { - "text": "Modify or repeal discriminatory legislation, including discriminatory provisions in its Personal Status Act, Criminal Code and Nationality Act", - "values": [ - "Justice", - "Statelessness and the right to nationality" - ] - }, - { - "text": "Sign and ratify the Convention against Torture as soon as possible and implement its provisions ", - "values": [ - "International instruments", - "Torture and other CID treatment" - ] - }, - { - "text": "Formally declare the moratorium or abolition of the death penalty", - "values": [ - "Death penalty" - ] - }, - { - "text": "Provide more resources to support the effective implementation of the Magna Carta of Women ", - "values": [ - "Women's rights" - ] - }, - { - "text": "Establish a form of vetting mechanism for the promotion and training of the Armed Forces and remove and exclude members of the forces who are suspected of human rights violations, pending judicial investigation. ", - "values": [ - "Human rights violations by state agents" - ] - }, - { - "text": "Redouble efforts to prevent violence against women and take radical measures in the area of criminal legislation with a view to sanctioning very severely all violence against women ", - "values": [ - "Women's rights" - ] - }, - { - "text": "Ensure that it grants the right to freedom of association and the possibility for associations to carry out their work without undue restrictions", - "values": [ - "Freedom of association and peaceful assembly" - ] - }, - { - "text": "Investigate all allegations with respect to torture and inhuman and degrading treatment by Afghan National Police and the National Directorate of Security.", - "values": [ - "Human rights violations by state agents", - "Torture and other CID treatment" - ] - }, - { - "text": "Reinforce efforts at legislative level and political measures to combat trafficking in persons for sexual and labour exploitation", - "values": [ - "Labour", - "Trafficking" - ] - }, - { - "text": "Adopt appropriate legislative or administrative measures for effective access to justice, including the right to legal redress in the courts ", - "values": [ - "Justice" - ] - }, - { - "text": "Pursue and strengthen efforts to combat social practices harmful to women, in particular female genital mutilation but also all other violence against them as well as discrimination in their access to rights in general ", - "values": [ - "Rights of the Child", - "Torture and other CID treatment", - "Women's rights" - ] - }, - { - "text": "Harmonize all laws and regulations in order to ensure equal treatment of persons with disabilities throughout the country, and to eliminate differential treatment of persons with disabilities based on a cause of disability", - "values": [ - "Disabilities" - ] - }, - { - "text": "Persist in implementing measures to remove any salary discrepancies between men and women for equal work", - "values": [ - "Women's rights" - ] - }, - { - "text": "Enhance the protection of migrants and refugees by implementing the law on human trafficking and enhancing the operational capacities of the Commission Nationale d'Eligibilite au Statut de Refugie and the Agence Nationale de Lutte contre la traite des Personnes", - "values": [ - "Asylum-seekers - refugees", - "Migrants", - "Trafficking" - ] - }, - { - "text": "Make greater efforts to protect the access of children to education and implement its new law prohibiting child marriages.", - "values": [ - "Right to education", - "Rights of the Child" - ] - }, - { - "text": "Call on the international community to respond favourably to Bangladesh's request for capacity building and technical assistance to overcome the difficulties and challenges facing the country", - "values": [ - "Technical assistance and cooperation" - ] - }, - { - "text": "Eliminate all forms of violence against women in detention places by some members of the judicial police and the need to prosecute them and avoid impunity", - "values": [ - "Detention", - "Impunity", - "Justice", - "Women's rights" - ] - }, - { - "text": "Accede to and implement the 1954 and 1961 statelessness conventions", - "values": [ - "International instruments", - "Statelessness and the right to nationality" - ] - }, - { - "text": "Adopt an open, merit-based selection process when selecting national candidates for treaty body elections", - "values": [ - "Treaty bodies" - ] - }, - { - "text": "Grant access for the special rapporteur on the Democratic People's Republic of Korea", - "values": [ - "Special procedures" - ] - }, - { - "text": "Ensure that journalists, media workers as well as civil society activists are able to practice their activities freely without any fear for punishment in accordance with international standards", - "values": [ - "Civil society", - "Freedom of the press" - ] - }, - { - "text": "In the implementation of public policy for Roma, to take into account ethnic and cultural diversity and the specificities, needs, lifestyles and identity of the beneficiaries, and to consider the possibility of establishing bilingual compensatory school programmes for Roma children.", - "values": [ - "Minorities", - "Right to education", - "Rights of the Child" - ] - }, - { - "text": "Release or charge and bring before a court - in a manner consistent with international fair trial standards and Iran's own Constitution - all persons detained in connection with the demonstrations following the 2009 presidential elections", - "values": [ - "Detention", - "Elections" - ] - }, - { - "text": "Continue efforts in combating human trafficking and provide the necessary assistance to the victims of trafficking", - "values": [ - "Trafficking" - ] - }, - { - "text": "Continue its recent move of opening up websites with a view to bringing the regulation of Internet use into line with international law.", - "values": [ - "Freedom of opinion and expression" - ] - }, - { - "text": "Develop monitoring capacity and legislation to enhance the prevention, investigation and prosecution of crimes of violence against individuals on the grounds of their sexual orientation or gender identity ", - "values": [ - "Sexual Orientation and Gender Identity" - ] - }, - { - "text": "Step up efforts to disseminate information on the existence of new legislative provisions related to the prevention and prohibition of violence against women, ensuring women are duly informed of all the legal channels available to them", - "values": [ - "Women's rights" - ] - }, - { - "text": "Continue following up on obligations entered into in the various human rights treaties, prioritizing the needs of the most vulnerable segments of the population", - "values": [ - "International instruments" - ] - }, - { - "text": "Continue its positive engagement with neighbouring countries in combating trafficking in persons", - "values": [ - "Trafficking" - ] - }, - { - "text": "Ratify the Optional Protocol to the Convention on the Rights of the Child on the sale of children, child prostitution and child pornography", - "values": [ - "International instruments", - "Labour", - "Rights of the Child", - "Trafficking" - ] - }, - { - "text": "Take effective measures to combat violence against Aboriginal girls and women ", - "values": [ - "Indigenous peoples", - "Rights of the Child", - "Women's rights" - ] - }, - { - "text": "Step up its efforts to implement the Police Powers and Duties Act (PPDA) ", - "values": [ - "Justice" - ] - }, - { - "text": "Amend article 128 of the Criminal Code which identifies the commission of an offence with honourable motives as a mitigating excuse", - "values": [ - "Women's rights" - ] - }, - { - "text": "Repeal all discriminatory provisions against lesbian, gay, bisexual and transgender people ", - "values": [ - "Sexual Orientation and Gender Identity" - ] - }, - { - "text": "Continue to adopt measures to protect the rights of vulnerable groups in rural areas", - "values": [ - "Other" - ] - }, - { - "text": "Lift all restrictions on the activities of civil society and complies with the request by the Human Rights Committee to bring its law, regulations and practice governing the registration of political parties into line with the International Covenant on Civil and Political Rights.", - "values": [ - "Civil society", - "International instruments", - "Treaty bodies" - ] - }, - { - "text": "Continue protecting its population from the effects of the blockade imposed by the United States of America ", - "values": [ - "Other" - ] - }, - { - "text": "Take further steps to improve the quality and accessibility to heath care facilities and services in rural communities", - "values": [ - "Right to health" - ] - }, - { - "text": "Take all steps necessary to reform the discriminatory provisions of penal and civil laws, including with regard to women's equal rights in marriage, access to justice and legal discrimination", - "values": [ - "Justice", - "Women's rights" - ] - }, - { - "text": "Take measures to increase the representation of women, including through temporary special measures", - "values": [ - "Women's rights" - ] - }, - { - "text": "Strengthen cooperation with national and international human rights institutions in order to implement the national human rights action plan", - "values": [ - "National Human Rights Institution", - "Technical assistance and cooperation" - ] - }, - { - "text": "Completely abolish the death penalty in the Criminal Code for all crimes, including in times of war", - "values": [ - "Death penalty" - ] - }, - { - "text": "Launch a comprehensive national policy to universalize the right to civil registration, considering its pivotal role to ensure the realization of other human rights, including to an adequate standard of living", - "values": [ - "Statelessness and the right to nationality" - ] - }, - { - "text": "Adopt measures to reduce gender inequality in the labour market, allowing women and men to reconcile family and professional responsibilities, including by providing sufficient pre-school education facilities and places of childcare", - "values": [ - "Women's rights" - ] - }, - { - "text": "Make the necessary constitutional and legislative amendments in order to decriminalize and remove the ban on abortion", - "values": [ - "Women's rights" - ] - }, - { - "text": "Expedite its efforts to establish an independent national human rights institution in accordance with the Paris Principles", - "values": [ - "National Human Rights Institution" - ] - }, - { - "text": "Strengthen measures to fight discrimination against women and children, particularly in rural areas", - "values": [ - "Rights of the Child", - "Women's rights" - ] - }, - { - "text": "Ensure that all cases of alleged torture are promptly investigated by an independent body, perpetrators are brought to justice and victims of torture are adequately compensated ", - "values": [ - "Torture and other CID treatment" - ] - }, - { - "text": "Adopt social integration policies aimed at preventing girls, boys and adolescents from dropping out of school", - "values": [ - "Right to education", - "Rights of the Child" - ] - }, - { - "text": "Ensure continuous reporting to the public on the status of investigations of cases of arbitrary detention and of extrajudicial killings, and ensure the provision of adequate resources and independent administrative structures for the justice system ", - "values": [ - "Detention", - "Extrajudicial executions" - ] - }, - { - "text": "Step up efforts to ratify the International Covenant on Economic, Social and Cultural Rights, the Convention on the Elimination of All forms of Discrimination against Women and the Convention on the Rights of the Child", - "values": [ - "ESC rights - general", - "International instruments", - "Rights of the Child", - "Women's rights" - ] - }, - { - "text": "Continue its policies to improve access to education for all, including for migrant workers and members of their families", - "values": [ - "Labour", - "Migrants", - "Right to education" - ] - }, - { - "text": "Increase public spending on the health sector in accordance with the 2017 National Health Policy and take further steps to strengthen health facilities", - "values": [ - "Right to health" - ] - }, - { - "text": "Strengthen the implementation in practice, of the law on the eradication of violence against women, particularly through the implementation of strategic action plans and the establishment of units for comprehensive care to victims, with emphasis on regions and localities ", - "values": [ - "Women's rights" - ] - }, - { - "text": "Establish measures to respond more effectively to requests for refuge", - "values": [ - "Asylum-seekers - refugees" - ] - }, - { - "text": "Establish through legislation an independent judiciary and bring the legal framework that governs the organization, functioning and competence of military tribunals into conformity with international principles ", - "values": [ - "Justice" - ] - }, - { - "text": "Strengthen the promotion and protection of women's rights through appropriate legislative and policy measures and by addressing discriminatory social and cultural attitudes and practices ", - "values": [ - "Women's rights" - ] - }, - { - "text": "Bring relevant provisions of the Turkish Criminal Code in line with article 19 of the ICCPR, to ensure freedom of expression and to create an environment conducive to free journalism and media", - "values": [ - "Freedom of opinion and expression", - "Freedom of the press", - "International instruments" - ] - }, - { - "text": "Take measures to combat and abolish all forms of slavery in practice", - "values": [ - "Other" - ] - }, - { - "text": "Harmonize all laws with the Constitution of 2013 and ensure they are implemented in full accordance with human rights", - "values": [ - "General" - ] - }, - { - "text": "Remove from national legislation all provisions relating to the death penalty ", - "values": [ - "Death penalty" - ] - }, - { - "text": "Pass the Affirmative Action Bill speedily to allow the increase of women present in political offices", - "values": [ - "Women's rights" - ] - }, - { - "text": "Sign and ratify the main ILO conventions, and the main international human rights instruments, particularly ICCPR, ICESCR, CAT and the International Convention for the Protection of All Persons from Enforced Disappearance CED ", - "values": [ - "CP rights - general", - "ESC rights - general", - "Enforced disappearances", - "International instruments", - "Labour", - "Torture and other CID treatment" - ] - }, - { - "text": "Ensure that the use of force and fire arms by the security forces is regulated in accordance with the principles of necessity and proportionality and all cases of deaths and excessive use of force by security forces during civil protests are properly investigated. Revoke legal provisions that allow police personnel to provide extraordinary police services to private sector", - "values": [ - "Human rights violations by state agents" - ] - }, - { - "text": "Take immediate steps towards the abolition of the death penalty in law", - "values": [ - "Death penalty" - ] - }, - { - "text": "Sign and ratify the Optional Protocol to the International Covenant on Economic, Social and Cultural Rights, and ratify the International Convention for the Protection of All Persons from Enforced Disappearance", - "values": [ - "ESC rights - general", - "Enforced disappearances", - "International instruments" - ] - }, - { - "text": "Decriminalize press offenses, and to create an action plan aimed at greater media freedom and plurality of media", - "values": [ - "Freedom of the press" - ] - }, - { - "text": "Strengthening efforts to address trafficking in persons, especially women and children, and sexual violence ", - "values": [ - "Rights of the Child", - "Women's rights" - ] - }, - { - "text": "Investigate all cases of violence against women, punish the perpetrators and ensure that victims receive the necessary support and compensation", - "values": [ - "Women's rights" - ] - }, - { - "text": "Actively support the promotion and implementation of the universal human right to safe drinking water and sanitation pursuant to the recommendations made by the Council in its various resolutions on the subject", - "values": [ - "Right to water and sanitation" - ] - }, - { - "text": "Take concrete steps towards operationalizing extended access to free senior high school for all students", - "values": [ - "Right to education" - ] - }, - { - "text": "Continue to prioritize policies aimed at further improving the socioeconomic condition of the Maoris and the Pacific peoples ", - "values": [ - "ESC rights - general", - "Indigenous peoples" - ] - }, - { - "text": "Improve the conditions of detention within prisons, access to health and the respect for the most elementary rights of detainees", - "values": [ - "Detention" - ] - }, - { - "text": "Protect Official Development Assistance from budgetary cuts in the context of the international crisis and make every effort to bring it to the internationally agreed target of 0.7 per cent of GDP ", - "values": [ - "Development" - ] - }, - { - "text": "End the State of Emergency as soon as possible", - "values": [ - "Justice" - ] - }, - { - "text": "Lobby for the passage of and implement legislation creating a national mechanism to prevent torture", - "values": [ - "Torture and other CID treatment" - ] - }, - { - "text": "Sign and ratify the Optional Protocol to the Convention on the Elimination of All Forms of Discrimination against Women and take all appropriate legislative measures", - "values": [ - "International instruments", - "Women's rights" - ] - }, - { - "text": "Recommended that the mechanisms for supervising procedures be established or strengthened, including the procedure for recognition of the status of refugees and deportation of foreigners, with a view to ensuring the right to a hearing and thus close the door to possible abuses and complying with the principle of non-refoulement.", - "values": [ - "Asylum-seekers - refugees" - ] - }, - { - "text": "Guarantee freedom of expression, including in the Internet", - "values": [ - "Freedom of opinion and expression" - ] - }, - { - "text": "Continue working to promote human rights in the country, specifically the rights of minorities ", - "values": [ - "Minorities" - ] - }, - { - "text": "Conclude the ratification process of the Optional Protocol to the Convention on the Rights of Persons with Disabilities ", - "values": [ - "Disabilities", - "International instruments" - ] - }, - { - "text": "Continue the efforts to implement the \u201cWomen Living without Violence\u201c programme launched in 2013", - "values": [ - "Women's rights" - ] - }, - { - "text": "Albanian institutions are committed to implement the recommendations contained in the resolution of the Committee of Ministers of the Council of Europe (adopted in February 2014). In the road map (adopted in May 2014) on the fulfilment of the five priorities of the European Commission are foreseen measures for the protection of minorities. In this framework a Working Group is established with representatives of central institutions and independent institutions in order to evaluate the existing legal and policy framework for the protection of minorities and to present proposals related the improvement of legal framework and policies for minorities. ", - "values": [ - "Minorities" - ] - }, - { - "text": "Further intensify efforts to combat harmful traditional practices affecting children", - "values": [ - "Rights of the Child", - "Torture and other CID treatment" - ] - }, - { - "text": "Review and amend the Comprehensive Act against Violence towards Women (Act 779) to comply with international standards and ensure its effective implementation ", - "values": [ - "Women's rights" - ] - }, - { - "text": "Recommended considering establishing a legal framework for the protection of refugees and applicants for asylum, as well as becoming a State party to the related instruments", - "values": [ - "Asylum-seekers - refugees" - ] - }, - { - "text": "Sign and ratify the Optional Protocol to the Convention on the Rights of the Child on a communication procedure ", - "values": [ - "International instruments", - "Rights of the Child" - ] - }, - { - "text": "Ratify the Council of Europe Convention on Preventing and Combating Violence against Women and Domestic Violence [Istanbul Convention]", - "values": [ - "International instruments", - "Rights of the Child", - "Women's rights" - ] - }, - { - "text": "Undertake a comprehensive review of prison conditions to ensure that all detainees are treated humanely and in compliance with international standards ", - "values": [ - "Detention" - ] - }, - { - "text": "Promote an open environment where individuals can express diverse views without fear of harassment or prosecution ", - "values": [ - "Freedom of opinion and expression" - ] - }, - { - "text": "Implementation of the official languages policy and continuing encouragement of bilingualism, in particular in the security forces, police and within the public service.", - "values": [ - "Minorities" - ] - }, - { - "text": "Ratify the Convention against Torture", - "values": [ - "International instruments", - "Torture and other CID treatment" - ] - }, - { - "text": "Repeal existing legislation that restricts freedoms of expression and of assembly in accordance with Thailand's obligations under international human rights law", - "values": [ - "Freedom of association and peaceful assembly", - "Freedom of opinion and expression", - "International instruments" - ] - }, - { - "text": "Promptly put in place the national strategy for the promotion and protection of human rights that integrates the contributions arising from this review ", - "values": [ - "UPR process" - ] - }, - { - "text": "Continue its efforts to provide universal access to education", - "values": [ - "Right to education" - ] - }, - { - "text": "Adopt a law on rural development, followed by a comprehensive policy and an increase of the budget of the Ministry of Social Development", - "values": [ - "Development" - ] - }, - { - "text": "Continue efforts to change its legal practice in a way which is conducive to markedly reducing the number of the death sentences being imposed and persons executed", - "values": [ - "Death penalty" - ] - }, - { - "text": "Accelerate the implementation of its strategies and national policies aimed at finding effective solutions for the main health problems in the country ", - "values": [ - "Right to health" - ] - }, - { - "text": "Adopt legal and other types of measures for the full implementation of the principles contained in the Convention on the Elimination of All Forms of Discrimination against Women, and eliminate Micronesia's reservations to the Convention, in accordance with the recommendations made by the Committee on the Elimination of Discrimination against Women", - "values": [ - "International instruments", - "Treaty bodies", - "Women's rights" - ] - }, - { - "text": "Step up efforts to improve the functioning of the education system to make it easier for all children, including children with disabilities, to have access to education", - "values": [ - "Disabilities", - "Right to education", - "Rights of the Child" - ] - }, - { - "text": "Continue its educational reform towards comprehensive and inclusive education policies, with a particular focus on vulnerable groups, including children", - "values": [ - "Right to education", - "Rights of the Child" - ] - }, - { - "text": "Take steps to address and eliminate gender-based violence", - "values": [ - "Women's rights" - ] - }, - { - "text": "Ratify promptly the Optional Protocol to the Convention against Torture and other Cruel, inhuman or Degrading Treatment or Punishment", - "values": [ - "Detention", - "International instruments", - "Torture and other CID treatment" - ] - }, - { - "text": "Put forward its utmost efforts to abolish practices such as honor killing, early forced marriage and domestic violence both at the legal and policy levels ", - "values": [ - "Rights of the Child", - "Women's rights" - ] - }, - { - "text": "In regard to the increase in crime rates ensure the adequate functioning of the judicial system in order to combat all forms of impunity and abuse of authority ", - "values": [ - "Human rights violations by state agents", - "Impunity" - ] - }, - { - "text": "Take measures to monitor the implementation of measures aimed at protecting victims of domestic violence", - "values": [ - "Rights of the Child", - "Women's rights" - ] - }, - { - "text": "Continue its efforts to combat social inequality and poverty", - "values": [ - "Poverty" - ] - }, - { - "text": "Increase actions for access to schooling ", - "values": [ - "Right to education" - ] - }, - { - "text": "Strengthen its measures to protect the rights of foreigners, immigrants, asylum-seekers and the Roma as well as enhance its integration programmes to enforce the principles of equality and non-discrimination, which are enshrined in its Constitution ", - "values": [ - "Asylum-seekers - refugees", - "Migrants", - "Racial discrimination" - ] - }, - { - "text": "Strengthen the Government's commitment to ensuring fundamental rights of freedom of expression, peaceful assembly and association, and continue its cooperation with civil society, particularly with human rights defenders, by investing further efforts in creating a favourable environment for the members of the civil society organizations", - "values": [ - "Civil society", - "Freedom of association and peaceful assembly", - "Freedom of opinion and expression", - "Human rights defenders" - ] - }, - { - "text": "Ensure prompt and credible investigation of all alleged cases of sexual violence perpetrated by armed groups regardless their affiliation and provide appropriate redress to victims", - "values": [ - "Justice" - ] - }, - { - "text": "Move towards deinstitutionalisation of all children by investing in and promoting family-based care facilities for children in line with the Guidelines on Alternative Care for Children", - "values": [ - "Rights of the Child" - ] - }, - { - "text": "Work with all sectors to ensure the Human Rights and Equality Commission is an effective agent for enhancing the country's commitment to human rights", - "values": [ - "General" - ] - }, - { - "text": "Establish a national human rights institution, in compliance with the Paris Principles", - "values": [ - "National Human Rights Institution" - ] - }, - { - "text": "Take steps to devise a national strategy for delivering justice, to include the police, the judiciary, civil society and government", - "values": [ - "Justice" - ] - }, - { - "text": "Consider requesting technical cooperation and assistance for the preparation and submission of reports to the United Nations treaty bodies ", - "values": [ - "Technical assistance and cooperation", - "Treaty bodies" - ] - }, - { - "text": "Consider the possibility of acceding to those international instruments it is not yet a party to, through the committee of the Human Rights Commission tasked to examine the compatibility of laws with international conventions and human rights treaties ", - "values": [ - "International instruments", - "Treaty bodies" - ] - }, - { - "text": "Further increase efforts in order to totally eradicate the recruitment or use of children by armed forces and armed groups ", - "values": [ - "International humanitarian law", - "Rights of the Child" - ] - }, - { - "text": "Ratify the Optional Protocol to the Convention against Torture and promptly implement it", - "values": [ - "Detention", - "International instruments", - "Torture and other CID treatment" - ] - }, - { - "text": "Improve its security situation and take necessary steps to enhance greater dialogue between and among various religious groups in the country", - "values": [ - "Freedom of religion and belief" - ] - }, - { - "text": "Consider ratifying ILO Convention No. 169 on Indigenous and Tribal Peoples in Independent Countries.", - "values": [ - "Indigenous peoples", - "International instruments" - ] - }, - { - "text": "Inform the Human Rights Council as part of the reporting process outlined in the National Report, of implementation of LLRC Action Plan recommendations", - "values": [ - "Justice" - ] - }, - { - "text": "Intensify its efforts to ensure that higher education is equally accessible to all, on the basis of capacity", - "values": [ - "Right to education" - ] - }, - { - "text": "Continue to protect the rights of workers and women, emphasize justice for minorities, and strengthen public health", - "values": [ - "Minorities", - "Right to health", - "Women's rights" - ] - }, - { - "text": "Take further steps to bring legislation into line with international human rights norms and standards ", - "values": [ - "International instruments" - ] - }, - { - "text": "Continue its efforts to preserve the nation's ethnic diversity and promote its cultural heritage ", - "values": [ - "Minorities" - ] - }, - { - "text": "Review the provisions of the Criminal Code providing for prison sentences for slander and publication of false information, and introduce amendments in order to concretely protect freedom of expression and of the press", - "values": [ - "Freedom of opinion and expression", - "Freedom of the press" - ] - }, - { - "text": "Consider ratifying International Labour Organization Convention No. 169 (1989) concerning Indigenous and Tribal Peoples in Independent Countries and take operational steps to implement the United Nations Declaration on the Rights of Indigenous Peoples ", - "values": [ - "Indigenous peoples", - "International instruments" - ] - }, - { - "text": "Fairly redistributing the fruits of growth", - "values": [ - "Development" - ] - }, - { - "text": "Closely monitor legal practice in relation to incitement to racial discrimination and prosecute perpetrators", - "values": [ - "Racial discrimination" - ] - }, - { - "text": "Take more adequate measures to provide education to ethnic minorities ", - "values": [ - "Minorities", - "Right to education" - ] - }, - { - "text": "Continue efforts to ensure an institutional and policy framework on business and human rights, following the guidelines adopted by the United Nations", - "values": [ - "Business and human rights" - ] - }, - { - "text": "Continue the "Educate your Child" programme in the prisons", - "values": [ - "Detention", - "Right to education", - "Rights of the Child" - ] - }, - { - "text": "Take appropriate measures to prohibit corporal punishment in all settings", - "values": [ - "Torture and other CID treatment" - ] - }, - { - "text": "Bring the 2014 Act on the Commission on Investigation of Enforced Disappeared Persons, Truth and Reconciliation into compliance with international norms, particularly with regard to the definition of amnesty, witness protection and the delays in processing complaints", - "values": [ - "Enforced disappearances", - "Justice" - ] - }, - { - "text": "Step up its efforts in ensuring universal access to affordable health services particularly for the poor, vulnerable and marginalized groups", - "values": [ - "Poverty", - "Right to health" - ] - }, - { - "text": "Support international efforts to help restore the rule of law and develop transitional justice in the country", - "values": [ - "Justice" - ] - }, - { - "text": "Ensure that conditions of detention are in conformity with the United Nations Standard Minimum Rules of the Treatment of Prisoners", - "values": [ - "Detention" - ] - }, - { - "text": "Lift the obstacles to employ Palestinian refugees, give access to employment to the Palestinian refugees, give access to free education to all children of refugees and enable universal health care", - "values": [ - "Asylum-seekers - refugees", - "Labour", - "Right to education", - "Right to health", - "Rights of the Child" - ] - }, - { - "text": "Adopt a national action plan for protection of the rights of children and adolescents", - "values": [ - "Rights of the Child" - ] - }, - { - "text": "Establish an inter-institutional mechanism with broad civil society representation to follow up on the outcomes of the review", - "values": [ - "Civil society", - "UPR process" - ] - }, - { - "text": "Further strengthen the judicial institutions through the improvement of the remunerations for public defenders and prosecutors", - "values": [ - "Justice" - ] - }, - { - "text": "Pursue this very important work [developing human rights indicators in several key priority areas], which strengthens the human rights implementation on the ground", - "values": [ - "Other" - ] - }, - { - "text": "Continue its close cooperation with the United Nations and NGOs", - "values": [ - "Civil society", - "Technical assistance and cooperation" - ] - }, - { - "text": "Increase efforts in the process of establishing peace and building a strong nation State, and enter into a true commitment to fulfilling national and international human rights obligations ", - "values": [ - "International instruments" - ] - }, - { - "text": "Continue promoting cooperation and dialogue in addressing situations of concern in the Human Rights Council ", - "values": [ - "Other" - ] - }, - { - "text": "Promote the completion of education for children, and remove all hindrances and discrimination against children in fulfilling their right to education", - "values": [ - "Right to education", - "Rights of the Child" - ] - }, - { - "text": "Establish a moratorium on the death penalty as a step towards its abolition", - "values": [ - "Death penalty" - ] - }, - { - "text": "Develop a strategy and national indicators in order to comply with the Sustainable Development Goals", - "values": [ - "Development" - ] - }, - { - "text": "Harmonise anti-discrimination laws and broaden their scope to include as grounds religion, age and sexual orientation", - "values": [ - "Freedom of religion and belief", - "Racial discrimination", - "Sexual Orientation and Gender Identity" - ] - }, - { - "text": "Establish a standing interministerial committee to improve coordination in relation to human rights reporting and follow up on the implementation of recommendations", - "values": [ - "Treaty bodies", - "UPR process" - ] - }, - { - "text": "Take the necessary measures so that all the cantons adopt an approach based on promoting the inclusion of boys and girls with disabilities in schools", - "values": [ - "Disabilities", - "Right to education", - "Rights of the Child", - "Women's rights" - ] - }, - { - "text": "Consider acceding to the Convention the Rights of Persons with Disabilities ", - "values": [ - "Disabilities", - "International instruments" - ] - }, - { - "text": "Adopt a comprehensive strategy to combat all forms of violence against women and girls", - "values": [ - "Rights of the Child", - "Women's rights" - ] - }, - { - "text": "Enact laws to ensure that all women, regardless of their marital status, are provided with the same level of protection against rape and that women are not discriminated against in family inheritances ", - "values": [ - "Women's rights" - ] - }, - { - "text": "Carry out awareness-raising campaigns at the community level regarding women's and girls' rights, and combat any discriminatory practices against women and girls ", - "values": [ - "Human rights education and training", - "Rights of the Child", - "Women's rights" - ] - }, - { - "text": "Step up efforts to ensure substantial improvement in its penal institutions, specifically prohibiting forced labour, and also to establish detention centres for minors", - "values": [ - "Detention" - ] - }, - { - "text": "Continue positive measures in support of vulnerable groups in the areas of access to justice and education", - "values": [ - "Justice", - "Right to education" - ] - }, - { - "text": "Continue its efforts in taking steps to eliminate further racial discrimination, in consultation with national human rights institutions and all other relevant stakeholders", - "values": [ - "National Human Rights Institution", - "Racial discrimination" - ] - }, - { - "text": "Undertake further measures in order to address the problem of shortage of teachers, especially in rural and remote areas ", - "values": [ - "Right to education" - ] - }, - { - "text": "Consider ratifying the Second Optional Protocol to the International Covenant on Civil and Political Rights, aiming at the abolition of the death penalty", - "values": [ - "Death penalty", - "International instruments" - ] - }, - { - "text": "Move forward with constitutional reform, giving all peoples the equal right to run for elected office and the equal right to participation in the political system", - "values": [ - "Elections" - ] - }, - { - "text": "Pay special attention to the preparation, implementation and evaluation of the pilot project for the repatriation of a number of Roma, originally from Serbia, currently living in camps located in central and southern Italy, in order to facilitate the most appropriate remedies for the Roma population in a dignified and efficient manner", - "values": [ - "Minorities" - ] - }, - { - "text": "Accelerate its efforts to achieve remaining Millennium Development Goals targets, as well as achieve the Sustainable Development Goals", - "values": [ - "Development" - ] - }, - { - "text": "Elaborate campaigns and trainings which promote the economic and political empowerment of women, as well as educational programmes that combat stereotypes and gender discrimination from an early age", - "values": [ - "Rights of the Child", - "Women's rights" - ] - }, - { - "text": "Continue building the national human rights institutional framework and ensure its effective functioning", - "values": [ - "National Human Rights Institution" - ] - }, - { - "text": "Strengthen public policies aimed at addressing the high number of people living with HIV/AIDS and not receiving treatment, particularly women, in order to reduce the rates of HIV transmission from mothers to children during childbirth, as well as for lesbian, gay, bisexual, transgender and intersex people, guaranteeing medical care without discrimination based on sexual orientation and gender identity", - "values": [ - "HIV - Aids", - "Right to health", - "Sexual Orientation and Gender Identity", - "Women's rights" - ] - }, - { - "text": "Step up its efforts to bring an end to all forms of child labour", - "values": [ - "Labour", - "Rights of the Child" - ] - }, - { - "text": "Establish a national human rights mechanism in full compliance with the Paris Principles ", - "values": [ - "National Human Rights Institution" - ] - }, - { - "text": "Continue strengthening its education programmes and continue promoting the sound social policies that ensure the provision of health, food and social protection goods and services for the benefit of its people", - "values": [ - "ESC rights - general", - "Right to education", - "Right to food", - "Right to health" - ] - }, - { - "text": "Continue to take all necessary measures to eradicate the practice of ill-treatment of prisoners, excessive force and the use of torture in detention centres and internment centres whether these be temporary or permanent in nature ", - "values": [ - "Detention", - "Torture and other CID treatment" - ] - }, - { - "text": "Ratify the international human rights instruments that have been signed but not yet ratified, particularly the Convention on the Rights of Persons with Disabilities, the Optional Protocol of the Convention Against Torture and the Convention for the Protection of All Persons from Enforced Disappearance", - "values": [ - "Disabilities", - "Enforced disappearances", - "International instruments", - "Torture and other CID treatment" - ] - }, - { - "text": "Pursue its efforts to improve the status of women in order to enable them to reach their full potential and contribute to the social and economic development of the country ", - "values": [ - "Women's rights" - ] - }, - { - "text": "Following the moratorium in force since 2004, undertake further measures to fully abolish the death penalty", - "values": [ - "Death penalty" - ] - }, - { - "text": "Remove the article of the Penal Code criminalizing sexual conduct, which is not in compliance with the Universal Declaration of Human Rights ", - "values": [ - "International instruments", - "Sexual Orientation and Gender Identity" - ] - }, - { - "text": "Work towards further improving women's rights ", - "values": [ - "Women's rights" - ] - }, - { - "text": "Take necessary measures to implement CEDAW, especially with emphasis on issues of violence and abuse based on gender. ", - "values": [ - "International instruments", - "Women's rights" - ] - }, - { - "text": "Undertake the necessary measures to ensure sustainable development in its urban centres, ensuring that there is basic public services for the most vulnerable people, particularly, migrants coming from rural areas", - "values": [ - "Development", - "Migrants" - ] - }, - { - "text": "Ensure, in addition to the full implementation of the Law 6-2006, that no statements or confessions obtained under torture are admitted as evidence ", - "values": [ - "Torture and other CID treatment" - ] - }, - { - "text": "Prioritise efforts to ensure that children with disabilities are afforded the same right to education as all children", - "values": [ - "Disabilities", - "Right to education", - "Rights of the Child" - ] - }, - { - "text": "Ratify the Convention against Torture.", - "values": [ - "International instruments", - "Torture and other CID treatment" - ] - }, - { - "text": "Ratify the Arms Trade Treaty thus strengthening international regulation of the trade and transfer of conventional weapons, including small arms and light weapons", - "values": [ - "International instruments", - "Public security" - ] - }, - { - "text": "Ratify CAT and its Optional Protocol", - "values": [ - "Detention", - "International instruments", - "Torture and other CID treatment" - ] - }, - { - "text": "Adopt and implement, through an inclusive and a participatory process, national policies for the promotion and protection of children's rights, with a particular focus on the right to an adequate standard of living and the right not to be subjected to any form of discrimination, exploitation or violence", - "values": [ - "Rights of the Child", - "Torture and other CID treatment" - ] - }, - { - "text": "Continue its efforts in implementing the national strategy to combat trafficking in persons", - "values": [ - "Trafficking" - ] - }, - { - "text": "Forcefully denounce attacks against human rights defenders, and to ensure State authorities give human rights defenders legitimacy and recognition through supportive statements", - "values": [ - "Human rights defenders" - ] - }, - { - "text": "Adopt laws and implement policies to supress all forms of de facto discrimination against any person or group", - "values": [ - "Other" - ] - }, - { - "text": "Promote gender equality in law and in practice in order to increase the participation of women in the political and economic life of the country", - "values": [ - "Women's rights" - ] - }, - { - "text": "Adopt a national plan against sexual and domestic violence that takes into account the specific needs and vulnerabilities of migrant women and women with disabilities", - "values": [ - "Disabilities", - "Migrants", - "Rights of the Child", - "Women's rights" - ] - }, - { - "text": "Continue dialogue with civil society in the follow-up to and implementation of the review, and establish a standing forum to facilitate such dialogue and enable greater mutual understanding.", - "values": [ - "Civil society" - ] - }, - { - "text": "End the gacaca court system as soon as possible, noting the stated deadline of February 2010 ", - "values": [ - "Justice" - ] - }, - { - "text": "Facilitate the effective coordination between the Confederation, the cantons and civil society in relation to follow-up on the recommendations of the universal periodic review, treaty bodies and the special procedures", - "values": [ - "Special procedures", - "Treaty bodies", - "UPR process" - ] - }, - { - "text": "Take measures to ensure access to basic services by internally displaced persons and refugees", - "values": [ - "Asylum-seekers - refugees", - "Internally displaced persons" - ] - }, - { - "text": "Improve services for victims of family violence, including the provision of separate homes for children away from abusive family members, and shelters for women", - "values": [ - "Rights of the Child", - "Women's rights" - ] - }, - { - "text": "Reduce overcrowding and ensure that prison conditions in Greece meet international human rights standards", - "values": [ - "Detention", - "International instruments" - ] - }, - { - "text": "Strive to guarantee the right to social security and achieve decent standards of living ", - "values": [ - "ESC rights - general" - ] - }, - { - "text": "Continue strengthening its social assistance programmes, in favour of the most vulnerable in the country", - "values": [ - "ESC rights - general" - ] - }, - { - "text": "Introduce laws against female genital mutilation in all states, takes steps to ensure access to justice for women who are victims of violence, and that the Violence Against Persons (Prohibition) Bill is passed by the Senate", - "values": [ - "Rights of the Child", - "Torture and other CID treatment", - "Women's rights" - ] - }, - { - "text": "Continue to implement programmes to improve public access to quality medical and health care services ", - "values": [ - "Right to health" - ] - }, - { - "text": "Raise the minimum age to 18 of young people eager to join the army", - "values": [ - "Rights of the Child" - ] - }, - { - "text": "Review its national laws so that they fully uphold the principle of nondiscrimination, in particular on grounds of gender, personal status and citizenship ", - "values": [ - "Migrants", - "Minorities", - "Women's rights" - ] - }, - { - "text": "Repeal compulsory death penalty and eliminate its application for drug related offences", - "values": [ - "Death penalty" - ] - }, - { - "text": "Decriminalize press offenses, and reform or repeal the Media Law, which limits the freedom of press ", - "values": [ - "Freedom of the press" - ] - }, - { - "text": "Revise its legislation on abortion in order to enable it when the pregnancy is the result of rape or incest, or when it endangers the life or health of the mother ", - "values": [ - "Women's rights" - ] - }, - { - "text": "Continue to strengthen social policy to provide the same opportunities and the same services to all citizens, including peasants and others working in rural areas, in road, education and hospital infrastructure and water supply, sanitation and energy", - "values": [ - "ESC rights - general", - "Right to health", - "Right to water and sanitation" - ] - }, - { - "text": "Take further steps to ratify CEDAW", - "values": [ - "International instruments", - "Women's rights" - ] - }, - { - "text": "A participatory and inclusive process with civil society in the implementation of UPR recommendations", - "values": [ - "Civil society", - "UPR process" - ] - }, - { - "text": "Raise its crime responsibility threshold to comply with international standards", - "values": [ - "Justice", - "Rights of the Child" - ] - }, - { - "text": "The delegation took the opportunity to announce a number of new commitments from the Australian Government, including funding for the Office for the High Commissioner for Human Rights and the Asia Pacific Forum, the establishment of a fulltime Race Discrimination Commissioner at the Australian Human Rights Commission, a commitment to tabling in Parliament concluding observations from treaty bodies and the universal periodic review recommendations, and instituting a systematic process for review of Australia's reservations to human rights treaties.", - "values": [ - "International instruments", - "Racial discrimination", - "Treaty bodies", - "UPR process" - ] - }, - { - "text": "Embody the principles of equality of women and men in the Constitution and other appropriate legislation ", - "values": [ - "Women's rights" - ] - }, - { - "text": "Promote a programmatic approach which includes the protection of the rights of children, gender perspective and education ", - "values": [ - "Right to education", - "Rights of the Child", - "Women's rights" - ] - }, - { - "text": "Continue advancing in policies and programs dignifying and fully realizing the rights of indigenous peoples ", - "values": [ - "Indigenous peoples" - ] - }, - { - "text": "Ensure implementation of its National Education Plan 2010-2019 aiming to provide equal opportunities to boys and girls ", - "values": [ - "Right to education", - "Rights of the Child" - ] - }, - { - "text": "Speed up the adoption by the Congress of the bill on family protection and ensure that this project protect the victims of violence and punish perpetrators. Establish training mechanisms on violence against women for police officers, lawyers and judges ", - "values": [ - "Human rights education and training", - "Women's rights" - ] - }, - { - "text": "Continue with its efforts aimed at eradicating poverty and extreme poverty, in particular in the rural areas", - "values": [ - "Poverty" - ] - }, - { - "text": "Ensure provision of adequate financial and human resources for the implementation of the law on the protection of human rights defenders, journalists, social communicators and justice officials and commit to reviewing its operation, including its consistency with international human rights standards, after a period of initial implementation", - "values": [ - "Freedom of the press", - "Human rights defenders", - "International instruments", - "Justice" - ] - }, - { - "text": "Continue its efforts to develop a modern legal framework for media that take into consideration new social, cultural and political developments while preserving the interests of the State and society", - "values": [ - "Freedom of the press" - ] - }, - { - "text": "Focus on the five priority areas identified by the Government ", - "values": [ - "Detention", - "Justice", - "Public security", - "Treaty bodies", - "Women's rights" - ] - }, - { - "text": "Ask the major industrialized economies to help promote and protect human rights in the country, both by reducing greenhouse gas emissions to - safe - levels that are consistent with the full enjoyment of human rights, and by funding adaptation measures to help the country cope with those changes that are already taking place ", - "values": [ - "Other" - ] - }, - { - "text": "Amend the National Security Act so that it conforms with the Interim National Constitution, the Comprehensive Peace Agreement and the International Covenant on Civil and Political Rights ", - "values": [ - "International instruments", - "Public security" - ] - }, - { - "text": "Voluntary commitments regarding the rights of children, young adolescents and adult senior citizens, development of a concerted agenda and policies for their protection, establishment of an institutional network to eradicate child labour, dissemination of the legal framework which contemplates young people as subjects of rights, through the development of an agenda for social protection and promotion of their rights, as a cross-cutting issue within all state programmes, dissemination of the rights of senior citizens based on the 2002 International Convention of Madrid and the Law on the Senior Adult", - "values": [ - "Rights of the Child" - ] - }, - { - "text": "Further strengthen measures to prevent and combat discrimination and hate crimes against ethnic minorities and other vulnerable groups, including lesbian, gay, bisexual and transgender persons ", - "values": [ - "Minorities", - "Racial discrimination", - "Sexual Orientation and Gender Identity" - ] - }, - { - "text": "Ensure that the national legislation is in line with the obligations of the Convention on the Rights of Persons with Disabilities and its Optional Protocol", - "values": [ - "Disabilities", - "International instruments" - ] - }, - { - "text": "Protect women and girls from child, early and forced marriage", - "values": [ - "Rights of the Child", - "Women's rights" - ] - }, - { - "text": "Ratify the Optional Protocol to the Convention on the Elimination of Discrimination against Women ", - "values": [ - "International instruments", - "Women's rights" - ] - }, - { - "text": "Continue efforts aimed at the humanization of criminal and criminal procedure legislation ", - "values": [ - "Justice" - ] - }, - { - "text": "Continue to take steps to improve overall living conditions for prisoners", - "values": [ - "Detention" - ] - }, - { - "text": "Put an end to any form of discrimination against women, both in practice and in legislation, particularly those remaining in the Code of Personal Status ", - "values": [ - "Women's rights" - ] - }, - { - "text": "Strengthen promotion and protection of persons with disabilities and elderly ", - "values": [ - "Disabilities" - ] - }, - { - "text": "Continue with efforts to empower women economically, politically and socially, and take all necessary measures to eliminate all forms of discrimination against women", - "values": [ - "Women's rights" - ] - }, - { - "text": "Enhance its programmes and initiatives to curb the phenomenon of street children ", - "values": [ - "Rights of the Child" - ] - }, - { - "text": "Take all appropriate measures to combat prejudices and negative stereotypes, which may result in racial discrimination or incitement to racial hatred ", - "values": [ - "Racial discrimination" - ] - }, - { - "text": "Continue and deepen the positive ongoing actions to protect children, including from trafficking and exploitation of minors ", - "values": [ - "Rights of the Child", - "Trafficking" - ] - }, - { - "text": "Consider acceding to the 1951 Convention relating to the Status of Refugees and its 1967 Protocol", - "values": [ - "Asylum-seekers - refugees", - "International instruments" - ] - }, - { - "text": "Strengthen the justice sector in order to avoid imposing the death penalty on those persons wrongly convicted, and reconsider the use of methods which give raise to cruel suffering when this punishment is applied", - "values": [ - "Death penalty" - ] - }, - { - "text": "Increase the budget for health so as to strengthen primary care, in particular in rural areas, including sexual education, and ensure that programmes for family planning and awareness duly take into account the traditions and physical obstacles faced by women in rural areas", - "values": [ - "Right to health", - "Women's rights" - ] - }, - { - "text": "Issue a standing invitation to the United Nations human rights special procedures ", - "values": [ - "Special procedures" - ] - }, - { - "text": "Do its utmost to bring national legislation in line with the Espoo and Aarhus Conventions in order to ensure a general enjoyment of the right to an environment that is safe for life and health", - "values": [ - "Civil society", - "Environment", - "Freedom of opinion and expression" - ] - }, - { - "text": "Issue an open invitation to the UN Special Rapporteurs", - "values": [ - "Special procedures" - ] - }, - { - "text": "Review and if necessary update existing human rights training for police and security forces with the assistance of independent nongovernmental organizations to foster more consistent application of international human rights standards, and ensure that cases of abuse or killings by police are processed in a more timely manner ", - "values": [ - "Civil society", - "Extrajudicial executions", - "Human rights education and training", - "Human rights violations by state agents", - "International instruments" - ] - }, - { - "text": "Take steps to counteract forms of discrimination against indigenous women in rural areas", - "values": [ - "Indigenous peoples", - "Women's rights" - ] - }, - { - "text": "Accede to the International Convention on the Protection of the Rights of All Migrants Workers and Members of Their Families. ", - "values": [ - "International instruments", - "Labour", - "Migrants" - ] - }, - { - "text": "Take steps to ensure the safety of journalists and to properly investigate attacks against them ", - "values": [ - "Freedom of the press" - ] - }, - { - "text": "Develop efficient and transparent mechanisms to prevent violence, particularly against women, girls and boys, and ensure that these mechanisms have the necessary capacity and resources to tackle this issue ", - "values": [ - "Rights of the Child", - "Women's rights" - ] - }, - { - "text": "Tuvalu engaged to come back to the working group with a more formal commitment as to which recommendations and what plan would be the way forward for the country to continue in its efforts to address human rights", - "values": [ - "UPR process" - ] - }, - { - "text": "Adopt all urgent measures to ensure better conditions of detention for the high number of people currently detained, many of whom have not benefited from the guarantees of due process", - "values": [ - "Detention" - ] - }, - { - "text": "Call for the assistance of the High Commissioner for Human Rights, in particular to facilitate the timely submission of its periodic reports to treaty bodies ", - "values": [ - "Technical assistance and cooperation", - "Treaty bodies" - ] - }, - { - "text": "Adhere to the Rome Statute ", - "values": [ - "International instruments", - "Justice" - ] - }, - { - "text": "Consider establishing an independent national human rights institution that could advise the Government and receive and investigate complaints by the public.", - "values": [ - "National Human Rights Institution" - ] - }, - { - "text": "Envisage specific training or awareness campaigns to inform the victims of domestic violence of their rights.", - "values": [ - "Human rights education and training", - "Rights of the Child", - "Women's rights" - ] - }, - { - "text": "Include women in decision-making about maternal health, including in decisions on the design of local health care mechanisms, in a bid to strengthen its efforts to reduce maternal mortality.", - "values": [ - "Right to health", - "Women's rights" - ] - }, - { - "text": "Adopt a national plan of action against racism", - "values": [ - "Racial discrimination" - ] - }, - { - "text": "Continuation and strengthening of measures aimed at promoting equality between men and women", - "values": [ - "Women's rights" - ] - }, - { - "text": "Consider using the OHCHR's Recommended Principles and Guidelines on Human Rights and Human Trafficking as a guide in its antitrafficking measures ", - "values": [ - "Trafficking" - ] - }, - { - "text": "Effectively combat human trafficking and swiftly investigate the whereabouts of kidnapped persons in particular ", - "values": [ - "Trafficking" - ] - }, - { - "text": "Take additional steps to strengthen the sexual and reproductive health and rights of girls and women", - "values": [ - "Right to health", - "Rights of the Child", - "Women's rights" - ] - }, - { - "text": "Continue its efforts to establish a legal framework to protect human rights by ratifying core instruments, especially the International Convention for the Protection of All Persons from Enforced Disappearance ", - "values": [ - "Enforced disappearances", - "International instruments" - ] - }, - { - "text": "Empower the National Human Rights Commission, including by providing adequate budget and office space to conduct sensitization on trafficking and to handle complaints related to trafficking", - "values": [ - "National Human Rights Institution", - "Trafficking" - ] - }, - { - "text": "Continue to make sure that its legislation and practices in the fight against terrorism match its\ninternational obligations related to human rights, international humanitarian law and refugee law\n", - "values": [ - "Asylum-seekers - refugees", - "Counter-terrorism", - "International humanitarian law", - "International instruments" - ] - }, - { - "text": "Address child labour in accordance with its international obligations, notably CRC and ILO Convention No. 182 (1999) concerning the Prohibition and Immediate Action for the Elimination of the Worst Forms of Child Labour ", - "values": [ - "International instruments", - "Labour", - "Rights of the Child" - ] - }, - { - "text": "Consider reviewing existing legislation, including the Marriage Law, to comply with the Convention on the Elimination of All forms of Discrimination against Women", - "values": [ - "International instruments", - "Women's rights" - ] - }, - { - "text": "Request the support of United Nations programmes and agencies to establish programmes and strategies for literacy and employment training in for women in order to improve their conditions and their participation in the development of the country.", - "values": [ - "Technical assistance and cooperation", - "Women's rights" - ] - }, - { - "text": "Take into account its international human rights commitments when conducting the process of institutional and national policies reforms started in 2011 ", - "values": [ - "International instruments" - ] - }, - { - "text": "Accede to and fully align its national legislation with all the obligations under the Rome Statute of the International Criminal Court", - "values": [ - "International instruments", - "Justice" - ] - }, - { - "text": "Increase efforts to combat trafficking against women, and try to eliminate women's vulnerability to exploitation and traffickers ", - "values": [ - "Trafficking", - "Women's rights" - ] - }, - { - "text": "Take all necessary measures to provide street children with protection and rehabilitation", - "values": [ - "Rights of the Child" - ] - }, - { - "text": "Guinea takes this opportunity to reiterate its pledges to recognize, protect and promote human rights in order to better safeguard them within the country, and undertakes to continue to build on its frank and constructive dialogue at the international level, inter alia with the United Nations human rights bodies.", - "values": [ - "General" - ] - }, - { - "text": "Protect the social status of the family as the basic unit of the social structure", - "values": [ - "Other" - ] - }, - { - "text": "Make necessary efforts to reform all legislation that is discriminatory towards women, in particular the nationality act and the family affairs laws", - "values": [ - "Statelessness and the right to nationality", - "Women's rights" - ] - }, - { - "text": "Further strengthen the ongoing policies in the field of education", - "values": [ - "Right to education" - ] - }, - { - "text": "Take all necessary measures to eliminate, combat and sanction all forms of discrimination or violence against women ", - "values": [ - "Women's rights" - ] - }, - { - "text": "Ratify the CED without delay and criminalize enforced disappearances and extrajudicial killings in its national legislation ", - "values": [ - "Enforced disappearances", - "Extrajudicial executions", - "International instruments" - ] - }, - { - "text": "Take effective steps to review and improve the laws unduly restricting freedom of expression, press and association, and prevent authorities from violating these rights ", - "values": [ - "Freedom of association and peaceful assembly", - "Freedom of opinion and expression", - "Freedom of the press" - ] - }, - { - "text": "Adopt a national plan of action on children and children's rights ", - "values": [ - "Rights of the Child" - ] - }, - { - "text": "In the area of application, dissemination and promotion of human rights: domestically, this includes strengthening the response and follow-up to the international commitments taken on by Ecuador, implementation of the evaluation process of the national plan of action, promoting the work of the National Commission for the Application of International Humanitarian Law and, the ratification of the Optional Protocol to the Convention against Torture and the International Convention for the Protection of All Persons from Enforced Disappearance", - "values": [ - "Detention", - "Enforced disappearances", - "International instruments", - "Torture and other CID treatment" - ] - }, - { - "text": "Fulfil its international commitments by ratifying ICERD, CAT, OPCAT, CED, OP-CRC-AC and OP-CRC-SC", - "values": [ - "Detention", - "Enforced disappearances", - "International instruments", - "Racial discrimination", - "Rights of the Child", - "Torture and other CID treatment" - ] - }, - { - "text": "Improve conditions of detention for condemned prisoners regarding communication with the outside world", - "values": [ - "Detention" - ] - }, - { - "text": "Continue to undertake steps to ensure access to quality education for all children", - "values": [ - "Right to education", - "Rights of the Child" - ] - }, - { - "text": "Develop a detailed framework to implement and raise awareness about the Declaration in consultation with indigenous peoples ", - "values": [ - "Indigenous peoples" - ] - }, - { - "text": "Adopt effective steps to promptly eliminate an unacceptable system of non-citizenship. As a priority and urgent step, simplify the naturalization process for persons who have reached retirement age, as well as grant children of non-citizens the right to automatically acquire citizenship at birth ", - "values": [ - "Other" - ] - }, - { - "text": "Intensify efforts in providing capacity building and training programmes on human rights for its law enforcement officials as well as judicial and legal officials in the rural areas ", - "values": [ - "Human rights education and training" - ] - }, - { - "text": "Submit more regularly its reports to the treaty bodies", - "values": [ - "Treaty bodies" - ] - }, - { - "text": "Take all measures necessary to ensure that the forthcoming elections are peaceful, free and fair, while fully guaranteeing the right to take part in the conduct of public affairs and the right to vote ", - "values": [ - "Elections" - ] - }, - { - "text": "Strengthen the independence of the judiciary and the capacity of the judicial system", - "values": [ - "Justice" - ] - }, - { - "text": "Accelerate progress towards abolishing the death penalty", - "values": [ - "Death penalty" - ] - }, - { - "text": "Establish a national human rights institution in order to further strengthen its human rights policies", - "values": [ - "National Human Rights Institution" - ] - }, - { - "text": "Allocate sufficient resources to specialized courts and tribunals with jurisdiction over femicide and other forms of violence against women", - "values": [ - "Justice", - "Women's rights" - ] - }, - { - "text": "Ensure that all those responsible for violations of human rights, including the right to life, liberty and security, be brought to justice", - "values": [ - "Justice" - ] - }, - { - "text": "Continue taking efficient measures against religion-based discriminatory practices in terms of access to the labour market and social integration ", - "values": [ - "Freedom of religion and belief", - "Labour", - "Racial discrimination" - ] - }, - { - "text": "Implement action plan to protect children in areas of armed conflict adopted in March 2016", - "values": [ - "International humanitarian law", - "Rights of the Child" - ] - }, - { - "text": "Continue strengthening its sensible education programmes, as a key element for the development of the country ", - "values": [ - "Right to education" - ] - }, - { - "text": "Establish a comprehensive national policy and guidelines governing adoption in compliance with CRC ", - "values": [ - "International instruments", - "Rights of the Child" - ] - }, - { - "text": "Work actively with international organizations that provide technical assistance to strengthen the protection of human rights", - "values": [ - "Technical assistance and cooperation" - ] - }, - { - "text": "Submit all overdue reports to the relevant treaty bodies", - "values": [ - "Treaty bodies" - ] - }, - { - "text": "Ensure that school textbooks do not contain elements that compromise the objectivity and freedom of historical research as well as the respect of rights and dignity of all", - "values": [ - "Other" - ] - }, - { - "text": "Give a positive response to requests for visits made by the special procedures", - "values": [ - "Special procedures" - ] - }, - { - "text": "Ensure closure of secret and illegal jails and review conditions in all prison and detention facilities with the aim of ensuring their compliance with the Minimum Standard of Treatment of Prisoners and provide effective procedural safeguards against arbitrary detention.", - "values": [ - "Detention" - ] - }, - { - "text": "Provide torture-prevention training for the police, prosecutors and judges and ensure that statements obtained through torture cannot be invoked in criminal proceedings", - "values": [ - "Human rights education and training", - "Justice", - "Torture and other CID treatment" - ] - }, - { - "text": "Take all measures necessary to find a lasting solution to the situation of the repatriated Hmong, notably by settling the question of the legal status of persons concerned and granting refugee status to those to whom the United Nations High Commissioner for Refugees UNHCR has accorded the status of person of concern, in full cooperation with UNHCR, and allowing the delivery of international assistance for resettlement, as proposed by certain States ", - "values": [ - "Asylum-seekers - refugees", - "Indigenous peoples" - ] - }, - { - "text": "Ensure a participatory and inclusive process with civil society, including NGOs who may be critical of the government's efforts, in the follow up of UPR Recommendations", - "values": [ - "Civil society", - "UPR process" - ] - }, - { - "text": "Take all appropriate measures to address violence against women effectively and more specifically to eliminate FGM, including by making its performance a criminal offence ", - "values": [ - "Rights of the Child", - "Torture and other CID treatment", - "Women's rights" - ] - }, - { - "text": "Strengthen its national institutions in charge of the promotion and protection of human rights, with a view to fostering access to justice, particularly for the most vulnerable groups, such as women, older persons, children, indigenous peoples, persons with disabilities, people of African descent and the lesbian, gay, bisexual, transgender and intersex community", - "values": [ - "National Human Rights Institution" - ] - }, - { - "text": "Ensure that the living conditions in all detention or reception centres for migrants are in accordance with international standards and put an end to the practice of issuing expulsion orders before registering applications for asylum", - "values": [ - "Asylum-seekers - refugees", - "Detention", - "Migrants" - ] - }, - { - "text": "Adopt effective measures to bring its national legislation, including customary law, into line with the provisions and principles of the CRC, particularly in the area of child protection and the prevention of corporal punishment, child abuse and child pornography ", - "values": [ - "International instruments", - "Rights of the Child", - "Torture and other CID treatment" - ] - }, - { - "text": "Make official the moratorium on the death penalty with a view to its abolition", - "values": [ - "Death penalty" - ] - }, - { - "text": "Take appropriate action to ensure the protection of migrant workers", - "values": [ - "Labour", - "Migrants" - ] - }, - { - "text": "Following the recommendation of Mexico during the previous cycle regarding the systematic abolition of the detention of migrants and asylum seekers, adopt measures to implement the recommendations of the Office of the United Nations High Commissioner for Refugees and ensure that the access to justice for foreigners does not have negative consequences regarding their stay in the country, even in cases of acts based on xenophobia and racial discrimination", - "values": [ - "Asylum-seekers - refugees", - "Detention", - "Migrants", - "Racial discrimination", - "UPR process" - ] - }, - { - "text": "Strengthen gender equality policies, particularly the promotion of employment of women in all fields", - "values": [ - "Women's rights" - ] - }, - { - "text": "Take effective measures to generate inclusive social practices to ensure the observance of the human rights of indigenous peoples, persons of African descent, migrants and refugees", - "values": [ - "Asylum-seekers - refugees", - "Indigenous peoples", - "Migrants", - "Minorities" - ] - }, - { - "text": "Redouble efforts to eliminate the practices of female genital mutilation and breast ironing ", - "values": [ - "Rights of the Child", - "Torture and other CID treatment", - "Women's rights" - ] - }, - { - "text": "End human rights violations and abuses against civil society, the media and political opposition, repeal the ban on public demonstrations, and ensure individuals are able to exercise their rights to freedom of expression, association and peaceful assembly, free from intimidation and harassment", - "values": [ - "Civil society", - "Freedom of association and peaceful assembly", - "Freedom of opinion and expression", - "Freedom of the press" - ] - }, - { - "text": "Finalize the establishment of the National Human Rights Institution, which will be in compliance with the Paris Principles ", - "values": [ - "National Human Rights Institution" - ] - }, - { - "text": "Further contribute to the global realization of the right to development including through ensuring that its annual ODAs [Official Development Assistance] matches the internationally agreed level of 0.7% of the GDP", - "values": [ - "Development" - ] - }, - { - "text": "Ensure that those suspected of being responsible for crimes under international law in Darfur - particularly those within government security and armed forces - are investigated and prosecuted before independent and impartial courts, without resort to the death penalty ", - "values": [ - "Death penalty", - "International humanitarian law" - ] - }, - { - "text": "Implement policies focused on the integration of children with special needs into the public education system, adapt buildings, and provide training to teachers and educational staff to promote an enabling and inclusive environment for education", - "values": [ - "Disabilities", - "Right to education", - "Rights of the Child" - ] - }, - { - "text": "Continue with its efforts to reduce poverty, in particular, to increase its focus on anti-poverty programmes in rural areas", - "values": [ - "Poverty" - ] - }, - { - "text": "Continue its efforts to promote and protect the rights of persons with disabilities, and share its experiences in this regard. ", - "values": [ - "Disabilities" - ] - }, - { - "text": "Take relevant measures in order to prevent the possible negative impacts of the austerity measures on the human rights situation for the most vulnerable groups, particularly children ", - "values": [ - "Rights of the Child" - ] - }, - { - "text": "Continue organizing thematic meetings, such as the 2009 National Forum on Justice, and whenever appropriate involve civil society as well as other non-governmental stakeholders ", - "values": [ - "Civil society", - "Justice" - ] - }, - { - "text": "Amend the law on the fight against discrimination so that all grounds for discrimination are subject to prohibition ", - "values": [ - "Other" - ] - }, - { - "text": "Continue its effort to improve access to quality health care of its people", - "values": [ - "Right to health" - ] - }, - { - "text": "Continue to increase its efforts to prevent violence against women and girls and conduct thorough, prompt investigations into all reports of such violence, and end impunity for these crimes", - "values": [ - "Impunity", - "Rights of the Child", - "Women's rights" - ] - }, - { - "text": "Seek international cooperation, particularly from Germany, the United Kingdom of Great Britain and Northern Ireland, Australia and New Zealand, to eliminate the effects of the environmental pollution and to create employment what contributes to fight against poverty ", - "values": [ - "Development", - "Environment", - "Poverty" - ] - }, - { - "text": "Consider incorporating the UN Rules for the Treatment of Women Prisoners and Non-Custodial Measures for Women Offenders, otherwise known as the "Bangkok Rules" as part of its policy on the treatment of women prisoners ", - "values": [ - "Detention", - "Women's rights" - ] - }, - { - "text": "Ratify the International Convention on the Protection of the Rights of All Migrant Workers and Members of Their Families, signed in 2013", - "values": [ - "International instruments", - "Labour", - "Migrants" - ] - }, - { - "text": "Strengthen the measures to stop violence against women, including information and awareness-raising programs", - "values": [ - "Human rights education and training", - "Women's rights" - ] - }, - { - "text": "Consider establishing or strengthening a national mechanism responsible for coordination, implementation, reporting and follow-up, in line with the critical elements (best practices) of the OHCHR global study and guide concerning national mechanisms for reporting and follow-up", - "values": [ - "UPR process" - ] - }, - { - "text": "Ratify the core international human rights instruments, including the Convention against Torture, the Convention on the Rights of Persons with Disabilities, all Optional Protocols to the Convention on the Rights of the Child, the Protocol to Prevent, Suppress and Punish Trafficking in Persons, especially Women and Children, supplementing the United Nations Convention against Transnational Organized Crime, and the First Optional Protocol to the International Covenant on Civil and Political Rights, and incorporate them into its national legislation", - "values": [ - "International instruments" - ] - }, - { - "text": "Continue to promote programmes for human rights education and awareness-raising", - "values": [ - "Human rights education and training" - ] - }, - { - "text": "Alleviating extreme poverty and hunger in the country", - "values": [ - "Poverty", - "Right to food" - ] - }, - { - "text": "Bring the national law to conformity with the international human rights standards", - "values": [ - "General", - "International instruments" - ] - }, - { - "text": "Adopt a transparent, independent and impartial mechanism to ensure justice for the victims of the events of 28 September 2009, including the prosecution of those responsible for gross human rights violations, in line with international standards ", - "values": [ - "Justice" - ] - }, - { - "text": "Better integrate the concerns of elderly persons and those with disabilities into public policies", - "values": [ - "Disabilities" - ] - }, - { - "text": "Provide public information on how many detention camps the police and military have in fact set up and how many persons are detained therein.", - "values": [ - "Detention" - ] - }, - { - "text": "Extend the mandate of the Joint Parliamentary Committee on Human Rights to include the domestic consideration and oversight of implementation of recommendations from United Nations human rights mechanisms", - "values": [ - "Special procedures", - "Treaty bodies", - "UPR process" - ] - }, - { - "text": "Close down all camps where prisoners of conscience are held and release unconditionally all political prisoners ", - "values": [ - "Detention", - "Freedom of opinion and expression" - ] - }, - { - "text": "Strengthen its efforts to promote gender equality", - "values": [ - "Women's rights" - ] - }, - { - "text": "Consider accepting the recommendation of the Committee on the Elimination of Racial Discrimination to study ways and means of assessing the extent to which complaints for racially motivated crimes are addressed in an appropriate manner within the criminal justice system.", - "values": [ - "Racial discrimination", - "Treaty bodies" - ] - }, - { - "text": "Inform the Human Rights Council in the next review of Bahrain that will be held after 4 years on the status of adoption of new legislation on female domestic workers", - "values": [ - "Labour", - "Women's rights" - ] - }, - { - "text": "Continue efforts in combating sexual violence against children regardless of the sex of the child starting with the review of related legislation to ensure prosecution of perpetrators and adequate rehabilitation and compensation for the victims", - "values": [ - "Rights of the Child" - ] - }, - { - "text": "Adopt a moratorium on the death penalty with a view to abolishing capital punishment in national legislation", - "values": [ - "Death penalty" - ] - }, - { - "text": "Ensure that cases of violence against women and children are thoroughly investigated, perpetrators are prosecuted and sentenced and victims receive reparation", - "values": [ - "Rights of the Child", - "Women's rights" - ] - }, - { - "text": "Continue its efforts aimed at enacting a new labour law for the private sector to ensure balance between protecting the rights of workers and preserving the interests of employers ", - "values": [ - "Labour" - ] - }, - { - "text": "Prioritize enforcement of its domestic legislation, including the Penal Law, the Rape Law and the National Gender-Based Violence Plan of Action, empower its Special Court for Rape and Other Forms of Violence as well as the Sexual and Gender-Based Violence Unit under the Ministry of Justice, and implement appropriate national public awareness programmes to address violence against women", - "values": [ - "Human rights education and training", - "Women's rights" - ] - }, - { - "text": "Continue its efforts to submit its outstanding periodic reports", - "values": [ - "Treaty bodies" - ] - }, - { - "text": "Continue its efforts with a view to further promoting its position on achieving almost all targets of the MDGs ", - "values": [ - "Development" - ] - }, - { - "text": "Sign and ratify CRPD-OP ", - "values": [ - "Disabilities", - "International instruments" - ] - }, - { - "text": "Continue implementing programmes and measures to improve the enjoyment of the right to education and the right to health ", - "values": [ - "Right to education", - "Right to health" - ] - }, - { - "text": "Continue strengthening the implementation of measures aimed at eliminating harmful and discriminatory practices against women, including measures that favour the participation of women in politics and in the main positions of public administration ", - "values": [ - "Women's rights" - ] - }, - { - "text": "Do not detain migrants other than in exceptional cases, limit this detention to six months and bring detention conditions into line with international standards in the field of human rights, as previously recommended", - "values": [ - "Detention", - "International instruments", - "Migrants", - "UPR process" - ] - }, - { - "text": "Make official the de facto moratorium on the death penalty, which has been applied since 2008, with a view to abolishing it ", - "values": [ - "Death penalty" - ] - }, - { - "text": "Look into the matter of orphans caught up in the battle for property within the Anglican Church and ensure that orphans are being given experienced caretakers and have their basic rights covered ", - "values": [ - "Rights of the Child" - ] - }, - { - "text": "Raise awareness of the danger of intervention in the internal affairs of States and the risk of condoning support to terrorism, as it is a threat to international peace and security", - "values": [ - "Other" - ] - }, - { - "text": "Continue to adopt measures to investigate, prosecute and punish the perpetrators of acts of violence against women", - "values": [ - "Women's rights" - ] - }, - { - "text": "Continue to strengthen and promote the rights of national minorities", - "values": [ - "Minorities" - ] - }, - { - "text": "Ratify the International Covenant on Civil and Political Rights and the International Covenant on Economic, Social and Cultural Rights and their corresponding optional protocols", - "values": [ - "CP rights - general", - "Death penalty", - "ESC rights - general", - "International instruments" - ] - }, - { - "text": "Continue the policy to promote and protect women's rights ", - "values": [ - "Women's rights" - ] - }, - { - "text": "Ratify the Rome Statute of the ICC and fully align its legislation with the Rome Statute", - "values": [ - "International instruments", - "Justice" - ] - }, - { - "text": "Commit to inviting independent international observers to monitor future election processes ", - "values": [ - "Elections", - "Technical assistance and cooperation" - ] - }, - { - "text": "Devise a long-term Government strategy aimed at integration of immigrants ", - "values": [ - "Migrants" - ] - }, - { - "text": "Take action to fully implement and enforce the 2009 Elimination of Violence against Women Law ", - "values": [ - "Women's rights" - ] - }, - { - "text": "Ensure the separation of children from adults detained in police stations and prisons", - "values": [ - "Detention", - "Rights of the Child" - ] - }, - { - "text": "Continue efforts to ensure that the action of police forces and conditions in places of detention meet international human rights standards fully.", - "values": [ - "Detention", - "International instruments", - "Public security" - ] - }, - { - "text": "Strengthen its efforts to promote self-reliance of the returned refugees and IDPs", - "values": [ - "Asylum-seekers - refugees", - "Internally displaced persons" - ] - }, - { - "text": "Improve the situation of the foreign workers including female domestic workers as they constitute a vulnerable group", - "values": [ - "Labour", - "Migrants", - "Women's rights" - ] - }, - { - "text": "Intensify its efforts to protect women from domestic and sexual violence and to ensure that acts of such violence are fully investigated and those responsible held accountable ", - "values": [ - "Women's rights" - ] - }, - { - "text": "Strengthen existing policies aimed at continued improvement of the electoral system, including with the aid of international cooperation, and taking into account a cross-cutting gender perspective", - "values": [ - "Elections", - "Women's rights" - ] - }, - { - "text": "Continue to take measures to protect and promote the human rights of women, including the introduction of legislation to prohibit female genital mutilation", - "values": [ - "Rights of the Child", - "Torture and other CID treatment", - "Women's rights" - ] - }, - { - "text": "Continue and strengthen its efforts, including through the allocation of sufficient resources, to tackle remaining challenges in the field of women's rights ", - "values": [ - "Women's rights" - ] - }, - { - "text": "Step up efforts to strengthen public education, awareness and capacity building programme and skill training particularly aimed at increasing awareness on human rights in the country ", - "values": [ - "Human rights education and training", - "Right to education" - ] - }, - { - "text": "Implement the recommendations raised by CERD as to how to improve the situation of the indigenous communities ", - "values": [ - "Indigenous peoples", - "Treaty bodies" - ] - }, - { - "text": "Despite the fact that Italy had not ratified the International Convention on the Protection of the Rights of All Migrant Workers and Members of Their Families (ICRMW), the Italian legislative framework already guaranteed the rights of regular and irregular migrants. Moreover, Italy was committed to promoting a debate at the European level on that topic.", - "values": [ - "International instruments", - "Labour", - "Migrants" - ] - }, - { - "text": "Ensure that journalists are not harassed or intimidated ", - "values": [ - "Freedom of the press" - ] - }, - { - "text": "Pursue development policies and programmes aimed at poverty eradication ", - "values": [ - "Poverty" - ] - }, - { - "text": "Take all necessary measures to eliminate the practice of children in domestic servitude, which had been referred to by the Special Rapporteur on contemporary forms of slavery as a "modern form of slavery" ", - "values": [ - "Labour", - "Rights of the Child", - "Special procedures" - ] - }, - { - "text": "Strengthen national laws to conform to international standards", - "values": [ - "General" - ] - }, - { - "text": "Incorporate into domestic law and enact the provisions of the international instruments, particularly CAT, CEDAW and CRC", - "values": [ - "International instruments", - "Rights of the Child", - "Torture and other CID treatment", - "Women's rights" - ] - }, - { - "text": "Organize visits to Canada of the Special Rapporteur on the human rights of migrants, the Special Rapporteur on torture, the Special Rapporteur on extrajudicial executions, the Special Rapporteur on trafficking in persons, especially women and children and the Special Rapporteur on sale of children, child prostitution and child pornography ", - "values": [ - "Extrajudicial executions", - "Migrants", - "Rights of the Child", - "Special procedures", - "Trafficking", - "Women's rights" - ] - }, - { - "text": "Complete the trial of former Chadian President Hissène Habré in the framework of the African Extraordinary Chambers to ensure accountability for serious international crimes, in accordance with the due process and international obligations and standards", - "values": [ - "Justice" - ] - }, - { - "text": "Continue its judicial reforms towards a healthy, strong, democratic and efficient juridical system which is necessary as an enabling condition for the promotion and protection of human rights.", - "values": [ - "Justice" - ] - }, - { - "text": "Allow ICRC full and unrestricted access to places of detention ", - "values": [ - "Detention" - ] - }, - { - "text": "Take steps to ensure that all migrant workers, refugees, and asylum seekers are treated in accordance with international human rights standards and that it sign and ratify the 1951 Convention relating to the Status of Refugees and its 1967 Protocol and adopt and implement refugee protection legislation", - "values": [ - "Asylum-seekers - refugees", - "International instruments", - "Labour", - "Migrants" - ] - }, - { - "text": "Take measures to ensure an independent judicial system and the individual's right to a fair trial ", - "values": [ - "Justice" - ] - }, - { - "text": "Take steps to ensure that reports to treaty bodies, including the Committee on the Elimination of Racial Discrimination, the Committee on Economic, Social and Cultural Rights, and the Human Rights Committee, are submitted in a timely fashion", - "values": [ - "ESC rights - general", - "Racial discrimination", - "Treaty bodies" - ] - }, - { - "text": "Ensure the timely, effective, and impartial investigations of all allegations concerning torture and combat impunity in this regard", - "values": [ - "Impunity", - "Torture and other CID treatment" - ] - }, - { - "text": "Continue incorporating into its national legislation measures to protect the rights of women and girls, and punish violence against women ", - "values": [ - "Rights of the Child", - "Women's rights" - ] - }, - { - "text": "Continue efforts to strengthen the legal framework for the promotion of human rights", - "values": [ - "General" - ] - }, - { - "text": "Act on its commitments in Human Rights Council resolution 30/1 including to establish transitional justice mechanisms, and to establish a clear timeline to this end", - "values": [ - "Justice" - ] - }, - { - "text": "Continue promoting measures against extreme poverty and in favour of social inclusion", - "values": [ - "Poverty" - ] - }, - { - "text": "Take measures to further improve the situation of gender equality ", - "values": [ - "Women's rights" - ] - }, - { - "text": "Continue its good practices in human rights education, and enhance programmes on human rights education for the general public and public officials aimed at combating racism, discrimination and xenophobia", - "values": [ - "Human rights education and training", - "Racial discrimination" - ] - }, - { - "text": "Increase efforts to provide adequate social housing to members of the Roma minority living in substandard dwellings.", - "values": [ - "Minorities", - "Right to housing" - ] - }, - { - "text": "Strengthen efforts to fulfil obligations under the Convention on the Elimination of All Forms of Discrimination against Women CEDAW and the Convention on the Rights of the Child CRC ", - "values": [ - "International instruments", - "Rights of the Child", - "Women's rights" - ] - }, - { - "text": "Consider the implementation of the Guidelines for the Appropriate Use and Conditions of Alternative Care for Children, in accordance with Human Rights Council resolution 11-7 and General Assembly resolution 64-142 ", - "values": [ - "Rights of the Child" - ] - }, - { - "text": "Repeal all legal provisions constituting discrimination against lesbian, gay, bisexual and transgender persons ", - "values": [ - "Sexual Orientation and Gender Identity" - ] - }, - { - "text": "Continue to strengthen national efforts to address the phenomenon of trafficking in human beings", - "values": [ - "Trafficking" - ] - }, - { - "text": "Abolish the death penalty and consider ratifying the second Optional Protocol to the ICCPR as well the CAT ", - "values": [ - "Death penalty", - "International instruments", - "Torture and other CID treatment" - ] - }, - { - "text": "Immediately cease its illegal settlement activities", - "values": [ - "Other" - ] - }, - { - "text": "Continue and step up its efforts in the ratification of or accession to the Convention against Torture", - "values": [ - "International instruments", - "Torture and other CID treatment" - ] - }, - { - "text": "Continue to enact legislations and strengthen policies which are necessary to empower women and strengthen their roles in society ", - "values": [ - "Women's rights" - ] - }, - { - "text": "Maintaining its good example of restricting the application of death penalty to the most serious crime and after ensuring the proper due process and judicial safeguards ", - "values": [ - "Death penalty" - ] - }, - { - "text": "Continue efforts to combat HIV/AIDS through the National Parliament Strategy on HIV/AIDS for 2016-2021", - "values": [ - "HIV - Aids" - ] - }, - { - "text": "Strengthen its policies relating to children labour and the elimination of the economic exploitation of children", - "values": [ - "Labour", - "Rights of the Child" - ] - }, - { - "text": "Step up efforts to definitively and rapidly eliminate the practice of female genital mutilation", - "values": [ - "Rights of the Child", - "Torture and other CID treatment", - "Women's rights" - ] - }, - { - "text": "Combat discrimination against children belonging to minorities, indigenous people, and children with disabilities ", - "values": [ - "Disabilities", - "Indigenous peoples", - "Minorities", - "Racial discrimination", - "Rights of the Child" - ] - }, - { - "text": "Strengthen the rule of law by conforming the national legislation to the Rome Statute of the International Criminal Court and by strengthening the accountability mechanisms, as well as ensuring that legislation, bills and other legal documents are accessible to the population", - "values": [ - "International instruments", - "Justice" - ] - }, - { - "text": "Establish an independent national human rights commission in compliance with the Paris Principles.", - "values": [ - "National Human Rights Institution" - ] - }, - { - "text": "Investigate thoroughly the Bocas del Toro Case ", - "values": [ - "Freedom of association and peaceful assembly" - ] - }, - { - "text": "Continue to promote reforms to the Judicial System which incorporate the prioritization of the respect for human rights", - "values": [ - "Justice" - ] - }, - { - "text": "Consider signing and ratifying the Optional Protocol to CRC on a communication procedures to further ensue the rights of children victims ", - "values": [ - "International instruments", - "Rights of the Child" - ] - }, - { - "text": "Establish both domestic violence and marital violence as crimes under domestic law in accordance with international standards", - "values": [ - "Rights of the Child", - "Women's rights" - ] - }, - { - "text": "Continue with the moratorium on the death penalty and continue making efforts towards abolishing it", - "values": [ - "Death penalty" - ] - }, - { - "text": "Improve the legal definition of children at risk of losing parental care, take measures to systematically identify children at risk, and provide adequate support and other services to prevent separation of children from their families ", - "values": [ - "Rights of the Child" - ] - }, - { - "text": "Ensure that education is accessible to all children, including by providing the educational system with necessary resources ", - "values": [ - "Right to education" - ] - }, - { - "text": "Revise the Press and Publication Law with the view to removing criminal liability for activities that constitute the legitimate exercise of freedom of expression ", - "values": [ - "Freedom of opinion and expression", - "Freedom of the press" - ] - }, - { - "text": "Review, with a view to their amendment and elimination, all laws and practices that discriminate against African, Arab and Muslim Americans, as well as migrants, in the administration of justice, including racial and religious profiling ", - "values": [ - "Freedom of religion and belief", - "Migrants", - "Minorities", - "Racial discrimination" - ] - }, - { - "text": "Take steps to implement its road map to combatting human trafficking in order to ensure compliance with minimum standards for the elimination of trafficking, including by establishing an interagency anti-trafficking structure, take steps to reduce the demand for sex trafficking and forced labour, including through public education and advocacy campaigns ", - "values": [ - "Human rights education and training", - "Trafficking" - ] - }, - { - "text": "Strengthen measures to prevent and combat child abuse and ill-treatment.", - "values": [ - "Rights of the Child" - ] - }, - { - "text": "Consider ratifying the Convention on the Prevention and Punishment of the Crime of Genocide ", - "values": [ - "International instruments", - "Justice" - ] - }, - { - "text": "Involve itself in a dialogue process with the different agencies of the United Nations system with a view to constructing permanent institutions and to safeguard civilians and population at risk ", - "values": [ - "International humanitarian law" - ] - }, - { - "text": "Investigate reports of forced or coerced sterilization in HIV-positive women and that it takes steps to ensure women are educated about the effects of sterilization and options available to them ", - "values": [ - "HIV - Aids", - "Women's rights" - ] - }, - { - "text": "Continue its efforts for the proper implementation of the measures adopted for the effective promotion and protection of women's rights, considering the different vulnerability factors to which they may be exposed and the importance of their participation in society", - "values": [ - "Women's rights" - ] - }, - { - "text": "Take measures to ensure that no torture or other cruel, inhuman or degrading treatment or punishment occurs", - "values": [ - "Torture and other CID treatment" - ] - }, - { - "text": "Guarantee the fight against impunity ensuring that all perpetrators of human rights violations are prosecuted, particularly by continuing to cooperate with the International Criminal Court", - "values": [ - "Impunity", - "Justice" - ] - }, - { - "text": "Sign and accede to the International Convention for the Protection of All Persons from Enforced Disappearance", - "values": [ - "Enforced disappearances", - "International instruments" - ] - }, - { - "text": "Continue efforts to finalize and then, of course, adopt a Domestic Violence Act", - "values": [ - "Rights of the Child", - "Women's rights" - ] - }, - { - "text": "Take concrete steps to ensure free and fair elections in 2010, including through full implementation of the electoral Code of Conduct ", - "values": [ - "Elections" - ] - }, - { - "text": "The Government provides compulsory and free primary schools. There needs to be a system of checks to ensure that all children are allowed to go to school. Legislation provides that parents can be taken to court and charged if proved that they purposely hold their children from school. Due to financial constraints, some families may prefer boys go to school whilst girls are 'educated' at home. This practice is fast becoming extinct and education statistics have shown higher number of girls obtaining scholarships in past years. Primary, Secondary, Junior Secondary Schools (JSS) and Tertiary Institutions are highly subsidized by Government through provision of Teacher salaries, free equipment and other teaching materials.", - "values": [ - "Right to education", - "Rights of the Child" - ] - }, - { - "text": "Adopt effective measures to address the high levels of pregnancy among girls and adolescents, and ensure their effective access to sexual and reproductive health care and services and education programmes", - "values": [ - "Right to health", - "Rights of the Child", - "Women's rights" - ] - }, - { - "text": "Decriminalize defamation and place it under the civil code in accordance with international human rights standards", - "values": [ - "Freedom of opinion and expression", - "International instruments" - ] - }, - { - "text": "Create a reliable investigation commission consisting of professional and independent investigators to identify, arrest and prosecute the perpetrators of the Muttur murders", - "values": [ - "Justice" - ] - }, - { - "text": "Increase the efforts towards fighting against human trafficking, including by considering the possibility of the development of state programs and plans of action in this area ", - "values": [ - "Trafficking" - ] - }, - { - "text": "Continue to take measures in positive aspects of the State's approach to the environment", - "values": [ - "Environment" - ] - }, - { - "text": "Give high priority to the creation of an independent national human rights institution in accordance with the Paris Principles and the establishment of an Ombudsman institution", - "values": [ - "National Human Rights Institution" - ] - }, - { - "text": "Ensure that investigations of alleged torture are not carried out by the same authority accused of committing acts of torture", - "values": [ - "Human rights violations by state agents", - "Torture and other CID treatment" - ] - }, - { - "text": "Make the necessary legal amendments to guarantee freedom of association in accordance with article 22 of the ICCPR ", - "values": [ - "Freedom of association and peaceful assembly", - "International instruments" - ] - }, - { - "text": "Swiftly review and pass the anti-corruption law, which would include tough penalties for government corruption and would subject public officials to financial disclosures ", - "values": [ - "Corruption" - ] - }, - { - "text": "Further efforts to engage all appropriate social and political organizations in the promotion and protection of human rights.", - "values": [ - "Civil society" - ] - }, - { - "text": "Adopt legislation to protect LGBT persons against gender-based violence and discrimination ", - "values": [ - "Sexual Orientation and Gender Identity", - "Women's rights" - ] - }, - { - "text": "Develop and implement a national strategy to eliminate stigma and discrimination against people living with HIV/AIDS, and ensure orphaned and vulnerable children have access to health and education services and are protected from violence and abuse", - "values": [ - "HIV - Aids", - "Right to education", - "Right to health", - "Rights of the Child" - ] - }, - { - "text": "Strengthen its legal arsenal by ratifying the Convention against Torture and by acceding to the International Covenant on Economic, Social and Cultural Rights", - "values": [ - "ESC rights - general", - "International instruments", - "Torture and other CID treatment" - ] - }, - { - "text": "Identify the Government department that will be responsible for implementing the new migration and aliens act Law 8764 and determining rules for its implementation ", - "values": [ - "Migrants" - ] - }, - { - "text": "Extend a standing invitation to special mandate holders", - "values": [ - "Special procedures" - ] - }, - { - "text": "Continue taking measures to promote social and cultural rights", - "values": [ - "ESC rights - general" - ] - }, - { - "text": "Consider the request of the Special Rapporteur on the right to food to visit the country", - "values": [ - "Right to food", - "Special procedures" - ] - }, - { - "text": "Provide its existing and new national institutions and bodies for the advancement of women and gender equality with adequate human, technical and budgetary resources", - "values": [ - "Women's rights" - ] - }, - { - "text": "Continue the initiatives to promote and protect its people's right to adequate housing", - "values": [ - "Right to housing" - ] - }, - { - "text": "Provide international support aimed at improving the situation of human rights", - "values": [ - "General" - ] - }, - { - "text": "Create a national human rights institution in conformity with the principles relating to the status of national human rights institutions for the promotion and protection of human rights (Paris Principles)", - "values": [ - "National Human Rights Institution" - ] - }, - { - "text": "Consider ratifying the International Covenant on Economic, Social and Cultural Rights to strengthen the rights of the citizens of Botswana to economic development", - "values": [ - "ESC rights - general", - "International instruments" - ] - }, - { - "text": "Enact the draft law on domestic violence in full compliance with the international human rights standards", - "values": [ - "International instruments", - "Rights of the Child", - "Women's rights" - ] - }, - { - "text": "Further strengthen the education measures and policies for the inclusion of Roma students in the education system, and intensify the literacy campaigns for its population ", - "values": [ - "Minorities", - "Right to education" - ] - }, - { - "text": "Make it a priority on the agenda of the new Government and, if necessary, the Parliament,\nefforts to seek a constructive solution to the refugee problem, respecting the rights of those\nconcerned, and in that context step up dialogue with the international community and the United\nNations humanitarian agencies ", - "values": [ - "Asylum-seekers - refugees" - ] - }, - { - "text": "Continue strengthening the country's successful social policy in favour of the most vulnerable sectors of society, ensuring that they have the assistance and cooperation of the international community that the country requires", - "values": [ - "Technical assistance and cooperation" - ] - }, - { - "text": "Ratify or accede to all the core United Nations human rights instruments listed in the relevant compilation of OHCHR of 12 February 2014, relating to political rights, civil rights, economic and social rights, elimination of racial discrimination, torture, rights of women and genocide ", - "values": [ - "International instruments" - ] - }, - { - "text": "Finalize and submit the reports to CMRW, CERD and CAT ", - "values": [ - "Migrants", - "Racial discrimination", - "Torture and other CID treatment", - "Treaty bodies" - ] - }, - { - "text": "Take due measures to tackle the rising unemployment rates among immigrant caused as a result of financial crisis, given the concerns contained in the National Report", - "values": [ - "Migrants" - ] - }, - { - "text": "Continue its capacity-building programmes related to all aspects of human rights", - "values": [ - "General" - ] - }, - { - "text": "Strengthen efforts to effectively fight against the phenomenon of violence against women ", - "values": [ - "Women's rights" - ] - }, - { - "text": "Continue measures in the field of women and child's rights protection ", - "values": [ - "Rights of the Child", - "Women's rights" - ] - }, - { - "text": "Review the inconsistencies between the Children's Act of 2009 and international obligations under the Convention on the Rights of the Child, such as the prohibition of corporal punishment of children in all settings", - "values": [ - "International instruments", - "Rights of the Child", - "Torture and other CID treatment" - ] - }, - { - "text": "Intensify efforts against sexual abuse and child pornography, with more awareness campaigns about the punitive character of these crimes, particularly in rural areas ", - "values": [ - "Human rights education and training", - "Rights of the Child", - "Women's rights" - ] - }, - { - "text": "Continue to carry out measures in the field of child rights protection ", - "values": [ - "Rights of the Child" - ] - }, - { - "text": "Withdraw the unilateral declaration which seriously limits the scope of the definition of torture under CAT", - "values": [ - "International instruments", - "Torture and other CID treatment" - ] - }, - { - "text": "Take measures to further improve access to education for children with immigrant backgrounds", - "values": [ - "Migrants", - "Right to education", - "Rights of the Child" - ] - }, - { - "text": "Take effective action to protect women and children from sexual violence, including by strengthening and implementing legislation against domestic violence and providing counselling services and safe places for victims ", - "values": [ - "Rights of the Child", - "Women's rights" - ] - }, - { - "text": "Review its legislative and administrative measures with the aim of eliminating gender discrimination ", - "values": [ - "Women's rights" - ] - }, - { - "text": "Allocate adequate funding and provide necessary human resources to fully implement policies and programmes aimed at eradicating all forms of gender-based violence", - "values": [ - "Women's rights" - ] - }, - { - "text": "Ensure that as part of the national disarmament, demobilization and targeted reintegration programme, special attention is given to the rights of women and children, particularly to prevent repeated recruitment by armed groups and to ensure that they can enjoy their fundamental rights ", - "values": [ - "International humanitarian law", - "Rights of the Child", - "Women's rights" - ] - }, - { - "text": "Criminalize domestic violence as a distinct criminal offence and ensure the effective implementation of the action plan on violence ", - "values": [ - "Rights of the Child", - "Women's rights" - ] - }, - { - "text": "Consider poverty reduction strategies that benefit minority groups.", - "values": [ - "Minorities", - "Poverty" - ] - }, - { - "text": "Intensify its efforts with a view to a speedy ratification of CED and withdraw the reservations made to the Convention on the Elimination of All Forms of Discrimination against Women (CEDAW) ", - "values": [ - "Enforced disappearances", - "International instruments", - "Women's rights" - ] - }, - { - "text": "Commits itself [to honour] the conclusions reached, and will establish mechanisms to monitor the recommendations agreed on.", - "values": [ - "UPR process" - ] - }, - { - "text": "Continue its reforms to improve the level and the quality of social protection, education and health", - "values": [ - "Right to education", - "Right to health" - ] - }, - { - "text": "Intensify its efforts to oversee Czech companies operating abroad with regard to any negative impact of their activities on the enjoyment of human rights, particularly in conflict areas which includes situations of foreign occupation, where there are heightened risks of human rights abuses", - "values": [ - "Business and human rights" - ] - }, - { - "text": "Explore all the ways for enabling the development of a pluralistic society in a peaceful environment", - "values": [ - "General" - ] - }, - { - "text": "Enhance its cooperation with the Special Rapporteur on the situation of human rights defenders including by accepting the mandate holder's request to visit the country", - "values": [ - "Human rights defenders", - "Special procedures" - ] - }, - { - "text": "Sign and ratify the International Convention on the Rights of All Migrant Workers and Members of Their Families ", - "values": [ - "International instruments", - "Labour", - "Migrants" - ] - }, - { - "text": "Pass the bill for the early domestication of the Convention on the Elimination of All Forms of Discrimination against Women, without further delay ", - "values": [ - "International instruments", - "Women's rights" - ] - }, - { - "text": "Continue to implement the strategies and plans for the promotion of the economic and social development in the country", - "values": [ - "Development", - "ESC rights - general" - ] - }, - { - "text": "Continue to develop its international, regional and bilateral efforts in the field of human rights ", - "values": [ - "Other" - ] - }, - { - "text": "Become party to the Optional Protocol to CRC on the involvement of children in armed conflict", - "values": [ - "International humanitarian law", - "International instruments", - "Rights of the Child" - ] - }, - { - "text": "Take further steps to combat violence against women", - "values": [ - "Women's rights" - ] - }, - { - "text": "Abide, as an occupying power, by all its obligations under international law in the Palestinian territories ", - "values": [ - "Other" - ] - }, - { - "text": "Proceed with the ratification of the International Convention for the Protection of All Persons from Enforced Disappearance ", - "values": [ - "Enforced disappearances", - "International instruments" - ] - }, - { - "text": "Ensure immediate and unhindered access by the Commission of Inquiry and the special procedures of the Human Rights Council to the country and provide them with all necessary assistance", - "values": [ - "Special procedures", - "Technical assistance and cooperation" - ] - }, - { - "text": "Bring an end to the application of cruel, inhuman or degrading punishments, in particular corporal punishment", - "values": [ - "Torture and other CID treatment" - ] - }, - { - "text": "Introduce a legal ban on various forms of violence against children in all settings", - "values": [ - "Rights of the Child", - "Torture and other CID treatment" - ] - }, - { - "text": "Take a resolute action against any act of religious violence and implement appropriate, efficient measures to prevent intolerance or discrimination on religious grounds ", - "values": [ - "Freedom of religion and belief", - "Racial discrimination" - ] - }, - { - "text": "Decriminalize homosexual relations between consenting adults", - "values": [ - "Sexual Orientation and Gender Identity" - ] - }, - { - "text": "Put an end to all violations of international humanitarian law and human rights committed in the context of the armed conflict and, in particular, take all necessary measures to immediately stop the abduction of children to make them child soldiers, unlawful killings, sexual violence, attacks against civilians, lootings and the destruction of property", - "values": [ - "Enforced disappearances", - "Extrajudicial executions", - "International humanitarian law", - "Rights of the Child", - "Women's rights" - ] - }, - { - "text": "Amend all legislation that discriminates against persons on the grounds of their sexual orientation or gender identity, as well as investigate incidents or acts of violence motivated by homophobia or transphobia and bring to justice those responsible for such acts", - "values": [ - "Sexual Orientation and Gender Identity" - ] - }, - { - "text": "Take further measures to prevent discrimination on the basis of ethnicity ", - "values": [ - "Racial discrimination" - ] - }, - { - "text": "Strengthen its human rights education at the national level and through the school system ", - "values": [ - "Human rights education and training" - ] - }, - { - "text": "Cease the detention of children in immigration detention centres", - "values": [ - "Detention", - "Migrants", - "Rights of the Child" - ] - }, - { - "text": "Ensure free access for foreign journalists to Papua and West Papua ", - "values": [ - "Freedom of the press" - ] - }, - { - "text": "Strengthen professional training to promote the rapid integration of young graduates into the labour force", - "values": [ - "Development" - ] - }, - { - "text": "Revisit relevant policies and practices to create better work conditions for workers and their families.", - "values": [ - "Labour" - ] - }, - { - "text": "Ensure maximum attention to the protection and enjoyment of equal rights for the lesbian, gay, bisexual, transgender and intersex population", - "values": [ - "Sexual Orientation and Gender Identity" - ] - }, - { - "text": "Finalize and implement the National Action Plan on Human Rights, which will undoubtedly bring about tangible improvements in the observance of all categories of human rights", - "values": [ - "General" - ] - }, - { - "text": "Extend the use of alternative detention measures as a step towards compliance with international standards of custody", - "values": [ - "Detention" - ] - }, - { - "text": "Recommended the adoption of further measures to fight impunity of persons responsible of torture and extrajudicial killings and prompt, thorough, independent and impartial investigations into all allegations of these crimes.", - "values": [ - "Extrajudicial executions", - "Impunity", - "Torture and other CID treatment" - ] - }, - { - "text": "Commute all existing death sentences and establish a moratorium on the use of the death penalty as a step towards its abolition, as declared in the Great Green Charter of Human Rights in the Jamahiriyan Era ", - "values": [ - "Death penalty" - ] - }, - { - "text": "Continue to strengthen the effective implementation of its legislation on the rights of women ", - "values": [ - "Women's rights" - ] - }, - { - "text": "Take all necessary steps to strengthen the adequate access to justice especially for vulnerable groups such as women", - "values": [ - "Justice", - "Women's rights" - ] - }, - { - "text": "Continue implementing the national action plan to guide the progressive elimination of child labour", - "values": [ - "Labour", - "Rights of the Child" - ] - }, - { - "text": "Consider additional efforts to increase the role of women in society", - "values": [ - "Women's rights" - ] - }, - { - "text": "Organize regional and local conferences to exchange experiences and opinions on strengthening and promoting human rights", - "values": [ - "Other" - ] - }, - { - "text": "Issue a standing invitation to all the special procedures mandate holders", - "values": [ - "Special procedures" - ] - }, - { - "text": "Establish human rights education and training programmes for police and law enforcement officers ", - "values": [ - "Human rights education and training" - ] - }, - { - "text": "Pursue the implementation of the peace accords with a view to stabilizing and pacifying the eastern part of the Democratic Republic of the Congo and create suitable conditions to ensure and promote respect for international humanitarian law and the protection of the civilian population", - "values": [ - "Internally displaced persons", - "International humanitarian law" - ] - }, - { - "text": "Explicitly prohibit in law any form of corporal punishment or other cruel or degrading punishment of children in all settings", - "values": [ - "Rights of the Child", - "Torture and other CID treatment" - ] - }, - { - "text": "Adopt the bill on persons deprived of liberty", - "values": [ - "Detention" - ] - }, - { - "text": "Continue to take measures to reduce the incidence of violence against women and children, inter alia, by ensuring that law enforcement officials receive human rights training, and to fund recovery and counselling centres for victims of violence", - "values": [ - "Human rights education and training", - "Rights of the Child", - "Women's rights" - ] - }, - { - "text": "Continue its strong emphasis on ensuring access to education for all", - "values": [ - "Right to education" - ] - }, - { - "text": "Carry on with legislative and administrative arrangements suggested by the treaty bodies, in order to further improve effective implementation of the Government's anti-discrimination strategy", - "values": [ - "Treaty bodies" - ] - }, - { - "text": "Consider taking specific steps towards accession to the migrant workers' rights convention or the ICRMW", - "values": [ - "International instruments", - "Labour", - "Migrants" - ] - }, - { - "text": "Undertake effectively policy measures and develop the necessary infrastructure to address issues concerning the rights of persons with disabilities", - "values": [ - "Disabilities" - ] - }, - { - "text": "Permit independence of the media, improves its implementation article 19 of ICCPR and allow the establishment of privately-run media organizations.", - "values": [ - "Freedom of the press", - "International instruments" - ] - }, - { - "text": "Adopt all necessary measures to eradicate and eliminate practices and customs that discriminate against women, in particular forced and early marriage, discriminatory practices in the area of widowhood, the levirate, slavery and female genital mutilation. At the same time, develop awareness and education programmes on the harmful effects of such practices", - "values": [ - "Human rights education and training", - "Rights of the Child", - "Torture and other CID treatment", - "Women's rights" - ] - }, - { - "text": "Consider ensuring that the issue of violence against women be considered by the Human Rights and Anti-Discrimination Commission as one of its priorities", - "values": [ - "Women's rights" - ] - }, - { - "text": "Continue and deepen respect for indigenous peoples, recognizing their cultural wealth and facilitating their participation in national and community issues, particularly issues of direct concern to them such as property and land use, to eliminate all discrimination against indigenous persons or indigenous communities.", - "values": [ - "Indigenous peoples" - ] - }, - { - "text": "Chile is committed to elaborating a National Human Rights Action Plan which, in its methodology, provides for ample consultations with the civil society prior to its launching", - "values": [ - "Civil society" - ] - }, - { - "text": "Strengthen efforts for the protection of the rights of unaccompanied and separated children seeking asylum ", - "values": [ - "Asylum-seekers - refugees", - "Rights of the Child" - ] - }, - { - "text": "Develop a comprehensive policy at the national level, consistent with the provisions of the Convention on the Elimination of All Forms of Discrimination against Women, with the view to achieving gender equality and to combat gender violence", - "values": [ - "International instruments", - "Women's rights" - ] - }, - { - "text": "Take action to improve prison conditions, in particular to improve the conditions of women's detention facilities in accordance with international standards, and ensure protection of human rights of all detainees, including guarantees of due process and protection against cruel and inhumane treatment ", - "values": [ - "Detention", - "Torture and other CID treatment" - ] - }, - { - "text": "Take necessary measures to reduce excessive concentration of media ownership, and develop a new regulatory framework for the creation of new media and the operation of existing ones, in order to ensure genuine freedom of expression", - "values": [ - "Freedom of opinion and expression", - "Freedom of the press" - ] - }, - { - "text": "Comply with international human rights law and international humanitarian law by immediately ceasing its excessive, indiscriminate and disproportionate attacks on civilians", - "values": [ - "International humanitarian law" - ] - }, - { - "text": "Continue efforts to sensitize public officials on the respect for women's rights, in particular the fight against female genital mutilation", - "values": [ - "Rights of the Child", - "Torture and other CID treatment", - "Women's rights" - ] - }, - { - "text": "Strengthen measures to investigate and prosecute cases of domestic violence and provide assistance to women and child victims of violence, in particular social rehabilitation ", - "values": [ - "Rights of the Child", - "Women's rights" - ] - }, - { - "text": "Accelerate the process towards establishing a national human rights institution in accordance with relevant international standards", - "values": [ - "National Human Rights Institution" - ] - }, - { - "text": "Carry out a careful investigation into incidents of unwarranted use of force by law enforcement bodies in response to protests by the opposition during the celebration on 27 August 2016 of Independence Day in Chisinau", - "values": [ - "Freedom of association and peaceful assembly", - "Human rights violations by state agents" - ] - }, - { - "text": "Adopt a clear time-bound plan to become party to CAT as a key step towards demonstrating genuine commitment to protecting human rights", - "values": [ - "International instruments", - "Torture and other CID treatment" - ] - }, - { - "text": "Ensure full respect, in law and in practice, for the freedom of peaceful assembly and of association, consistent with international law ", - "values": [ - "Freedom of association and peaceful assembly" - ] - }, - { - "text": "Set up independent mechanisms to fight against impunity towards perpetrators of human rights violations committed, including those committed before 2009, ratify the Rome Statute of the International Criminal Court ", - "values": [ - "Impunity", - "International instruments", - "Justice" - ] - }, - { - "text": "Further implement effective measures to prevent and prosecute manifestations of racism, racial discrimination and xenophobia, as well as to promote the human rights of vulnerable groups, including migrants, Roma and people of African descent ", - "values": [ - "Migrants", - "Minorities", - "Racial discrimination" - ] - }, - { - "text": "Implement a national action plan to reduce violence against women and children ", - "values": [ - "Rights of the Child", - "Women's rights" - ] - }, - { - "text": "Reconsider, with regard to concerns raised by the International Holocaust Remembrance Alliance, legislation that restricts open and honest scientific research and that can serve to intimidate researchers", - "values": [ - "Other" - ] - }, - { - "text": "Amend the citizenship law of 1969, which prevents women from granting citizenship to their children, to ensure women's right to grant citizenship to their children", - "values": [ - "Rights of the Child", - "Statelessness and the right to nationality", - "Women's rights" - ] - }, - { - "text": "Take further measures to advance the participation of women in decision-making bodies", - "values": [ - "Women's rights" - ] - }, - { - "text": "Focus on improving its reporting to treaty bodies ", - "values": [ - "Treaty bodies" - ] - }, - { - "text": "Enact as a matter of priority a new media law guaranteeing freedom of expression, particularly social media, so people can express views without fear of retribution and with defamation covered under the civil rather than criminal code", - "values": [ - "Freedom of opinion and expression", - "Freedom of the press" - ] - }, - { - "text": "Continue efforts to provide access to health care to all the population under a health insurance system at the national level", - "values": [ - "Right to health" - ] - }, - { - "text": "Ratify the Optional Protocol to the Convention against Torture and other Cruel, Inhuman or Degrading Treatment or Punishment, and introduce effective mechanisms for monitoring the actions of law enforcement officials ", - "values": [ - "Detention", - "International instruments", - "Torture and other CID treatment" - ] - }, - { - "text": "Guarantee the fundamental rights of all the country's inhabitants without discrimination and reform the Citizenship Act accordingly ", - "values": [ - "CP rights - general" - ] - }, - { - "text": "Implement all provisions of the protocol aiming to prevent and punish human trafficking, in particular trafficking in women and children.", - "values": [ - "Rights of the Child", - "Trafficking", - "Women's rights" - ] - }, - { - "text": "Accept as soon as possible the outstanding visit requests from the special rapporteurs ", - "values": [ - "Special procedures" - ] - }, - { - "text": "Ratify the Rome Statute and integrate its provisions in the national legislation", - "values": [ - "International instruments", - "Justice" - ] - }, - { - "text": "Continue the spread of internet connections throughout the rural areas", - "values": [ - "Development" - ] - }, - { - "text": "Continue its constructive engagement with the international community, particularly its development partners, allowing Ghana to pursue other measures to improve the welfare of its people and advance human rights", - "values": [ - "Technical assistance and cooperation" - ] - }, - { - "text": "Continue implementing programmes to improve the way they deal with persons, particularly during security operations and that the Ministry of human rights carry out awareness-raising programmes with the concerned ministries", - "values": [ - "Human rights education and training" - ] - }, - { - "text": "Step up its efforts to protect vulnerable groups in society in accordance with the 2015-2019 National Legislative Programme", - "values": [ - "General" - ] - }, - { - "text": "Consider establishing the national preventive mechanism, with the necessary legal and administrative provisions for its effective functioning in full independence, and sensitizing prison and police officers on a human rights-based approach towards detainees", - "values": [ - "Detention", - "Human rights education and training", - "Torture and other CID treatment" - ] - }, - { - "text": "Align its domestic legislation to international standards so as to fully respect the right to freedom of peaceful assembly and association, in line with the International Covenant on Civil and Political Rights, as well as remove any obstacles to the exercise of the right to freedom of opinion and expression", - "values": [ - "CP rights - general", - "Freedom of association and peaceful assembly", - "Freedom of opinion and expression", - "International instruments" - ] - }, - { - "text": "Take all necessary measures to establish a national committee on the rights of the child at the earliest possible date", - "values": [ - "Rights of the Child" - ] - }, - { - "text": "Sensitize traditional chiefs, religious leaders, women's groups and youth about the consequences of early and forced marriage of girls, and adopt laws and regulations preventing and punishing cases of violations", - "values": [ - "Human rights education and training", - "Rights of the Child", - "Women's rights" - ] - }, - { - "text": "Set up a national human rights institution in accordance with the Paris Principles, as the authorities committed to during the first review", - "values": [ - "National Human Rights Institution", - "UPR process" - ] - }, - { - "text": "Conduct a thorough, transparent investigation into reports of missing persons related to the extensive 2014 security operation, holding accountable the individuals responsible", - "values": [ - "Human rights violations by state agents", - "Justice" - ] - }, - { - "text": "Fully implement the Ghana Child Labour Monitoring System and link these efforts with programmes to promote remediation and ensure adequate resources for the Anti-Human Trafficking Unit for the pursuit of prosecutions", - "values": [ - "Labour", - "Rights of the Child", - "Trafficking" - ] - }, - { - "text": "Ease prison congestion and its impact on mothers with young children.", - "values": [ - "Detention", - "Rights of the Child", - "Women's rights" - ] - }, - { - "text": "Continue on the path of effective realization of the rights of persons with disabilities and take further steps to promote the recruitment and employment of persons with disabilities", - "values": [ - "Disabilities", - "Labour" - ] - }, - { - "text": "Consider the possibility of acceding to CRPD ", - "values": [ - "Disabilities", - "International instruments" - ] - }, - { - "text": "Consider the ratification of the International Convention on the Protection of the Rights of All Migrants Workers and Members of their Families", - "values": [ - "International instruments", - "Labour", - "Migrants" - ] - }, - { - "text": "Continue taking necessary measures to observe the balance between exercising individual rights including the right to freedom of opinion and expression, and the protection of rights and interests of others, including in terms of ensuring their security ", - "values": [ - "Freedom of opinion and expression" - ] - }, - { - "text": "Take more efforts to protect persons with albinism", - "values": [ - "Minorities" - ] - }, - { - "text": "Enact anti-discrimination legislation in the field of access to private and public housing.", - "values": [ - "Right to housing" - ] - }, - { - "text": "Become party to ICMW ", - "values": [ - "International instruments", - "Migrants" - ] - }, - { - "text": "Make efforts to ensure that the police prioritizes and investigates cases of violence and sexual abuse against female domestic workers", - "values": [ - "Labour", - "Women's rights" - ] - }, - { - "text": "Study the possibility of the definitive abolition of the death penalty", - "values": [ - "Death penalty" - ] - }, - { - "text": "Commit fully to the implementation of the United Nations Convention on the Elimination of All Forms of Discrimination Against Women", - "values": [ - "International instruments", - "Women's rights" - ] - }, - { - "text": "Proceed swiftly with the ratification of OP-CAT", - "values": [ - "Detention", - "International instruments", - "Torture and other CID treatment" - ] - }, - { - "text": "Ratify the two Optional Protocols to the CRC on the involvement of children in armed conflict and on the sale of children, child prostitution and child pornography ", - "values": [ - "International instruments", - "Rights of the Child", - "Trafficking" - ] - }, - { - "text": "Guarantee effective consultations with communities that might be affected by development projects and exploitation of natural resources", - "values": [ - "Development", - "Indigenous peoples" - ] - }, - { - "text": "Continue to develop awareness-raising and action programmes for its population, with the necessary international cooperation and solidarity of the community of nations, in order to deal with the impacts of climate change", - "values": [ - "Environment", - "Human rights education and training", - "Technical assistance and cooperation" - ] - }, - { - "text": "Continue attention towards further ratifications, including CAT and ICERD", - "values": [ - "International instruments", - "Racial discrimination", - "Torture and other CID treatment" - ] - }, - { - "text": "Ensure that cases of domestic violence are properly investigated and prosecuted ", - "values": [ - "Rights of the Child", - "Women's rights" - ] - }, - { - "text": "Provide free treatment to women and men living with HIV/AIDS to prevent mother-child transmission ", - "values": [ - "HIV - Aids", - "Women's rights" - ] - }, - { - "text": "Ratify the Optional Protocol to the Convention against Torture and other Cruel, Inhuman and Degrading Treatment or Punishment, the Optional Protocol to the Convention on the Elimination of All Forms of Discrimination against Women, and the Second Optional Protocol to the International Covenant on Civil and Political Rights ", - "values": [ - "Death penalty", - "Detention", - "International instruments", - "Torture and other CID treatment", - "Women's rights" - ] - }, - { - "text": "Implement effectively the National Action Plan for Inclusive Education, including by making available adequate human and financial resources, and strengthen it by developing a concrete timeline with clear targets to put an end to the segregation of Roma children within the mainstream system", - "values": [ - "Minorities", - "Right to education", - "Rights of the Child" - ] - }, - { - "text": "Proceed with the establishment of a national human rights institution in compliance with the Paris Principles and provide it with adequate resources for its efficient functioning", - "values": [ - "National Human Rights Institution" - ] - }, - { - "text": "Ensure that any complaint of violations of international human rights obligations can be examined in Canadian courts and effective adequate remedies will be provided to victims", - "values": [ - "International instruments" - ] - }, - { - "text": "Withdraw the draft law on "formation of positive attitude to non-traditional sexual relations'' and develop and implement comprehensive anti-discrimination legislation, in close cooperation with civil society", - "values": [ - "Civil society", - "Sexual Orientation and Gender Identity" - ] - }, - { - "text": "Adopt the necessary policy measures to promote gender equality, with a particular attention to combating gender violence through education and awareness raising campaigns as well as through comprehensive legal and psychological support to counter this violence ", - "values": [ - "Human rights education and training", - "Women's rights" - ] - }, - { - "text": "Respect all human rights and fundamental freedoms of the Palestinian people, especially their right to self-determination", - "values": [ - "Other" - ] - }, - { - "text": "Organize intensive training courses for judges and the judiciary on human rights principles.", - "values": [ - "Human rights education and training", - "Justice" - ] - }, - { - "text": "Strengthen legislation and adopt a plan of action against sexual abuse and trafficking ", - "values": [ - "Trafficking" - ] - }, - { - "text": "Set up a National Human Rights Institution, in accordance with the Paris Principles", - "values": [ - "National Human Rights Institution" - ] - }, - { - "text": "Increase efforts to effectively prevent trafficking in women and girls for sexual exploitation and domestic servitude and take measures for rehabilitation and social integration of women and girls who are victims of trafficking", - "values": [ - "Rights of the Child", - "Trafficking", - "Women's rights" - ] - }, - { - "text": "Train the public force on human rights principles, in particular on prevention of torture and ill treatment", - "values": [ - "Human rights education and training", - "Torture and other CID treatment" - ] - }, - { - "text": "Further continue promoting gender equality in order to explicitly prohibit all forms of discrimination against women ", - "values": [ - "Women's rights" - ] - }, - { - "text": "Take the necessary measures to ensure the effective implementation of the law prohibiting labour of children under 15 years old, ensuring the perpetrators are properly sanctioned", - "values": [ - "Rights of the Child" - ] - }, - { - "text": "Increase education programmes and awareness-raising of police officers in the field of human rights", - "values": [ - "Human rights education and training" - ] - }, - { - "text": "Continue using the ongoing programmes to ensure universal access for its population to health services", - "values": [ - "Right to health" - ] - }, - { - "text": "Eradicate discriminatory practices in the labour market that detrimentally affect women", - "values": [ - "Women's rights" - ] - }, - { - "text": "Ratify core international human rights instruments, including the International Covenant on Civil and Political Rights and its Optional Protocols, the International Covenant on Economic, Social and Cultural Rights, and the Convention against Torture and its Optional Protocol", - "values": [ - "CP rights - general", - "Death penalty", - "Detention", - "ESC rights - general", - "International instruments", - "Torture and other CID treatment" - ] - }, - { - "text": "Consider the ratification of core human right instruments such as ICERD, CAT, ICRMW and the Second Optional Protocol to ICCPR", - "values": [ - "Death penalty", - "International instruments", - "Labour", - "Migrants", - "Racial discrimination", - "Torture and other CID treatment" - ] - }, - { - "text": "Protect the freedom of association, in accordance with the Egyptian Constitution, by adopting a new NGO law fully in line with international standards and best practices, including on foreign funding", - "values": [ - "Civil society", - "Freedom of association and peaceful assembly" - ] - }, - { - "text": "Increase the effectiveness of the precautionary measures to protect human rights defenders", - "values": [ - "Human rights defenders" - ] - }, - { - "text": "Continue to make efforts to ensure women's participation in political life and in decision-making", - "values": [ - "Women's rights" - ] - }, - { - "text": "Organize programmes about the negative consequences of child marriage and about the importance of education", - "values": [ - "Human rights education and training", - "Rights of the Child" - ] - }, - { - "text": "Continue to ratify the relevant universal human rights instruments to which it is not yet a contracting party", - "values": [ - "International instruments" - ] - }, - { - "text": "Step up efforts to achieve the effective realization of economic, social and cultural rights for the marginalized and vulnerable groups by ensuring that they are provided with adequate access to food, health, education and fair employment ", - "values": [ - "Development", - "Right to education", - "Right to food", - "Right to health" - ] - }, - { - "text": "Continue implementing training programmes on human rights for officials, including for the personnel in charge of receiving and processing gender-based violence complaints", - "values": [ - "Human rights education and training", - "Women's rights" - ] - }, - { - "text": "Continue effectively implementing its action plan to combat human trafficking and further promote gender equality in the country with an increase in funding for the protection and promotion of women's rights ", - "values": [ - "Trafficking", - "Women's rights" - ] - }, - { - "text": "Accede to the Convention on the Rights of Persons with Disabilities and the International Convention for the Protection of All Persons from Enforced Disappearance ", - "values": [ - "Disabilities", - "Enforced disappearances", - "International instruments" - ] - }, - { - "text": "Establish legislation which penalizes early marriage, adopting appropriate measures towards its elimination", - "values": [ - "Rights of the Child" - ] - }, - { - "text": "Elaborate a census, in conjunction with UNDP, UNHCR and civil society, on the number of Roma, in particular refugees and displaced Roma.", - "values": [ - "Minorities" - ] - }, - { - "text": "Involve Romani organizations and communities in the development and implementation of the strategy for Roma inclusion", - "values": [ - "Minorities" - ] - }, - { - "text": "Carry on with projects to decrease the lack of access to safe drinking water and sanitation in order to combat the risk of cholera contamination", - "values": [ - "Right to water and sanitation" - ] - }, - { - "text": "Adopt a national policy to ensure equality between men and women ", - "values": [ - "Women's rights" - ] - }, - { - "text": "Intensify the cooperation with special rapporteurs mandate holders of the United Nations", - "values": [ - "Special procedures" - ] - }, - { - "text": "Strengthen the witness protection programme and address the root causes of this issue in the context of the reform of the judiciary and the armed forces.", - "values": [ - "Justice" - ] - }, - { - "text": "Ratify the Optional Protocol to the Convention against Torture and Other Cruel, Inhuman or Degrading Treatment or Punishment (OP-CAT)", - "values": [ - "Detention", - "International instruments", - "Torture and other CID treatment" - ] - }, - { - "text": "Ensure complete separation of remand and sentenced prisoners, juvenile and adult prisoners and detained immigrants", - "values": [ - "Detention", - "Migrants", - "Rights of the Child" - ] - }, - { - "text": "Develop a gender and culturally differentiated public policy for the protection of human rights defenders, and ensure adequate political support and resources for its implementation", - "values": [ - "Human rights defenders", - "Women's rights" - ] - }, - { - "text": "Ratify the 1960 UNESCO Convention against Discrimination in Education ", - "values": [ - "International instruments", - "Right to education" - ] - }, - { - "text": "Consider ratifying the International Convention on the Rights of All Migrant Workers and Members of Their Families ", - "values": [ - "International instruments", - "Labour", - "Migrants" - ] - }, - { - "text": "Continue undertaking effective actions for the protection and promotion of the rights of women in the country ", - "values": [ - "Women's rights" - ] - }, - { - "text": "Issue a standing invitation for UN human rights special procedures and accept all requested visits by the mandate holders ", - "values": [ - "Special procedures" - ] - }, - { - "text": "Consider additional measures to improve the status of women in all communities with a view to promote equality in law and practice", - "values": [ - "Women's rights" - ] - }, - { - "text": "Provide more specialized detention centres for mentally ill or addict detainees that respect their special needs and circumstances", - "values": [ - "Detention", - "Disabilities" - ] - }, - { - "text": "Strengthen its Domestic Violence Prevention Act with a view to ending domestic and sexual violence against women and children", - "values": [ - "Rights of the Child", - "Women's rights" - ] - }, - { - "text": "Comprehensive training on positive discipline to teachers ", - "values": [ - "Right to education" - ] - }, - { - "text": "Take immediate action to cease the practice of forced labour, including in detention facilities, and take urgent measures to ensure that children are not forced to participate in mobilization projects ", - "values": [ - "Detention", - "Labour", - "Rights of the Child" - ] - }, - { - "text": "End discrimination against Palestinian households and children when loans are made available in areas such as healthcare and create a strategy for children in disadvantaged areas, in particular the Bedouin communities, migrants and asylum seekers", - "values": [ - "Asylum-seekers - refugees", - "Migrants", - "Minorities", - "Rights of the Child" - ] - }, - { - "text": "Ensure full respect for the rights of migrants, including through the strengthening of measures against acts of racial discrimination, xenophobia and intolerance ", - "values": [ - "Migrants", - "Racial discrimination" - ] - }, - { - "text": "Channel social, political and institutional conflicts through dialogue and democratic participation, while ensuring judicial independence and the separation of powers", - "values": [ - "Justice" - ] - }, - { - "text": "Issue a standing invitation to the United Nations human rights special procedures", - "values": [ - "Special procedures" - ] - }, - { - "text": "Consider strengthening the capacity of the Law Commission to enable it to fulfil with diligence its apparently broad mandate", - "values": [ - "Justice" - ] - }, - { - "text": "Apply the Yogyakarta principles as a guide to assist in further policy development", - "values": [ - "Sexual Orientation and Gender Identity" - ] - }, - { - "text": "Full implementation of the new criminal procedure code, and that the independency of judges is strengthened, the role of the public prosecution is balanced and corruption in judiciary system is tackled ", - "values": [ - "Corruption", - "Justice" - ] - }, - { - "text": "Consider the ratification of the Convention on the Rights of Persons with Disabilities ", - "values": [ - "Disabilities", - "International instruments" - ] - }, - { - "text": "Strengthen its efforts to come up with measures to prevent the crime of human trafficking and its participation in bilateral and regional cooperation to address the issue of human trafficking", - "values": [ - "Trafficking" - ] - }, - { - "text": "Sign and ratify OP-CESCR, allowing individual complaints of alleged violations of these rights to be heard by the Committee ", - "values": [ - "ESC rights - general", - "International instruments" - ] - }, - { - "text": "Continue with its efforts to combat short- and long-term unemployment, in consultation with the private sector and the providers of education", - "values": [ - "Development" - ] - }, - { - "text": "Consider issuing a standing invitation to the special procedure mandate holders", - "values": [ - "Special procedures" - ] - }, - { - "text": "Intensify its efforts in the area of combating racism, racial discrimination, xenophobia and related intolerance with a more committed contribution in the preparatory process for the Durban Review Conference with a view to ensuring its success", - "values": [ - "Racial discrimination" - ] - }, - { - "text": "Adopt measures to stamp out discrimination arising as a result of the practice of racist, ethnic, or religious profiling", - "values": [ - "Freedom of religion and belief", - "Racial discrimination" - ] - }, - { - "text": "Adopt the measures necessary to combat all forms of discrimination against migrants ", - "values": [ - "Migrants", - "Racial discrimination" - ] - }, - { - "text": "Strengthen its intervention programmes for young people to increase their awareness of HIV/AIDS and on a wider basis to provide reproductive health counselling where necessary through the various Government social programmes ", - "values": [ - "HIV - Aids" - ] - }, - { - "text": "Continue to implement programmes and measures to guarantee quality health services and quality education free of charge ", - "values": [ - "Right to education", - "Right to health" - ] - }, - { - "text": "Continue to promote its many initiatives for the eradication of all forms of discrimination against women ", - "values": [ - "Women's rights" - ] - }, - { - "text": "Accept to adhere its human rights record to the examination of the human rights experts and the relevant bodies and other United Nations mechanisms on the same manner of all members of the United Nations and in accordance with the existing rules and regulations ", - "values": [ - "Special procedures", - "Treaty bodies", - "UPR process" - ] - }, - { - "text": "Ensure that appropriate resources are provided for the full implementation of laws and programmes to combat trafficking of women and children ", - "values": [ - "Rights of the Child", - "Trafficking", - "Women's rights" - ] - }, - { - "text": "In cooperation with relevant international organizations, continue to improve its people's access to quality and affordable health care ", - "values": [ - "Right to health", - "Technical assistance and cooperation" - ] - }, - { - "text": "Take measures to award Up-Country Tamils with the full set of civil rights, including the right to vote.", - "values": [ - "Elections", - "Minorities" - ] - }, - { - "text": "Take more effective measures to combat racial discrimination and intolerance, including by promptly investigating and taking stern action against perpetrators of racism, xenophobic and discriminatory acts and by promoting intercultural understanding and tolerance between the different ethnic and faith groups in the country", - "values": [ - "Freedom of religion and belief", - "Racial discrimination" - ] - }, - { - "text": "Develop training programmes for the youth so as to improve their access to the labour market ", - "values": [ - "Development" - ] - }, - { - "text": "Pursue the adoption of the draft law on the rights of persons with disabilities in accordance with its international obligations, particularly under the International Convention on the Rights of Persons with Disabilities, ratified in 2009 ", - "values": [ - "Disabilities", - "International instruments" - ] - }, - { - "text": "Continue its efforts to fight the various forms of violence against girls, boys and adolescents and the worst forms of labour and sexual exploitation for commercial purposes, through the implementation of the second national action plan 2012-2014 ", - "values": [ - "Labour", - "Rights of the Child", - "Women's rights" - ] - }, - { - "text": "Consider the possibility of expressing its consent to accede the ICRMW ", - "values": [ - "International instruments", - "Labour", - "Migrants" - ] - }, - { - "text": "Dismantle the separation wall and halt the expansion of illegal settlements", - "values": [ - "Freedom of movement" - ] - }, - { - "text": "Reconsider its decision and permit broadcasting by non-Azeri outlets on FM frequencies", - "values": [ - "Freedom of the press" - ] - }, - { - "text": "Bring the Human Rights Commission in conformity with the Paris Principles ", - "values": [ - "National Human Rights Institution" - ] - }, - { - "text": "Continue consultation with numerous stakeholders in its follow-up to the UPR report", - "values": [ - "UPR process" - ] - }, - { - "text": "Include a definition of torture in the Criminal Code in full compliance with article 1 of the Convention against Torture and Other Cruel, Inhuman or Degrading Treatment or Punishment and investigate all allegations of torture and ill-treatment in an impartial, thorough, transparent, efficient and effective manner so as to bring perpetrators to justice and fight impunity", - "values": [ - "International instruments", - "Torture and other CID treatment" - ] - }, - { - "text": "Implement all necessary measures to eliminate discrimination faced by persons belonging to minorities and persons with an immigrant background ", - "values": [ - "Migrants", - "Minorities" - ] - }, - { - "text": "Complete the process of accession to the Optional Protocol to the Convention on the Rights of the Child on the sale of children", - "values": [ - "International instruments", - "Rights of the Child", - "Trafficking" - ] - }, - { - "text": "Maintain the positive efforts aiming to find durable solutions by way of repatriation, reintegration and resettlement of refugees ", - "values": [ - "Asylum-seekers - refugees" - ] - }, - { - "text": "Fully implement the 2010 National Action Plan for Inclusive Education by mainstreaming Romani students whenever possible", - "values": [ - "Minorities", - "Right to education" - ] - }, - { - "text": "Implement measures to curb abuses against refugees and migrants, including minors, regardless of their immigration status, perpetrated by police authorities, and punish adequately those responsible, so to avoid impunity ", - "values": [ - "Asylum-seekers - refugees", - "Human rights violations by state agents", - "Impunity", - "Migrants", - "Rights of the Child" - ] - }, - { - "text": "Continue efforts to ensure that Jews and Muslims can practice their religion freely", - "values": [ - "Freedom of religion and belief" - ] - }, - { - "text": "Continue efforts in the field of protection of the rights of persons with disabilities ", - "values": [ - "Disabilities" - ] - }, - { - "text": "Re-establish an A-status national human rights institution as soon as possible ", - "values": [ - "National Human Rights Institution" - ] - }, - { - "text": "Put in place a national policy to ensure the rights of lesbian, gay, bisexual, transgender and intersex persons, and punish cases of discrimination and those guilty of discrimination", - "values": [ - "Sexual Orientation and Gender Identity" - ] - }, - { - "text": "Continue to improve the judicial system ", - "values": [ - "Justice" - ] - }, - { - "text": "Take necessary measures to integrate human rights programmes in the curricula", - "values": [ - "Human rights education and training" - ] - }, - { - "text": "Amend or repeal articles 227 and 239 of the Criminal Code to explicitly criminalize marital rape and redefine rape in line with international standards", - "values": [ - "Women's rights" - ] - }, - { - "text": "Sign and ratify the Optional Protocol to the Convention on the Rights of the Child on the sale of children, child prostitution and child pornography", - "values": [ - "Rights of the Child", - "Trafficking" - ] - }, - { - "text": "Reiterate its recommendations to guarantee the right to freedom of expression and conscience of all representatives of civil society, including religious minorities, and to revise the judgments against the prisoners who were convicted for having freely expressed their opinion", - "values": [ - "Civil society", - "Detention", - "Freedom of opinion and expression", - "Freedom of religion and belief", - "Minorities" - ] - }, - { - "text": "Adjust immigration laws to international standards to which Belize is a party, to avoid discrimination against vulnerable groups in particular persons with cognitive disabilities and LGBT", - "values": [ - "Disabilities", - "Sexual Orientation and Gender Identity" - ] - }, - { - "text": "Proceed with the ratification of the Convention on the Rights of Persons with Disabilities and its Optional Protocol", - "values": [ - "Disabilities", - "International instruments" - ] - }, - { - "text": "Stop the sentencing of children to any form of physical punishment.", - "values": [ - "Rights of the Child" - ] - }, - { - "text": "Work further to promote the rights of women and girls", - "values": [ - "Rights of the Child", - "Women's rights" - ] - }, - { - "text": "Continue its efforts to achieve gender equality and tackle discrimination against women in law and in practice", - "values": [ - "Women's rights" - ] - }, - { - "text": "Accede to the OP-CAT and recognize the competence of CAT to receive and consider communications according to articles 21 and 22 of the CAT", - "values": [ - "International instruments", - "Torture and other CID treatment", - "Treaty bodies" - ] - }, - { - "text": "Take concrete legislative measures to grant for the minimum age of admission to employment as laid out by ILO Convention No. 138, in a comprehensive manner ", - "values": [ - "International instruments", - "Labour", - "Rights of the Child" - ] - }, - { - "text": "Consider accession to the remaining core international human rights instruments and withdrawing existing reservations to CEDAW and CRC ", - "values": [ - "International instruments", - "Rights of the Child", - "Statelessness and the right to nationality", - "Women's rights" - ] - }, - { - "text": "Continue with its very constructive and transparent steps and efforts taken to improve the situation of human rights and fundamental freedoms situation in all areas and implement effectively the extremely important recommendations contained in the national report.", - "values": [ - "General", - "UPR process" - ] - }, - { - "text": "Continue strengthening measures to address cases of violence and organized crime", - "values": [ - "Public security" - ] - }, - { - "text": "Conduct consultations involving all stakeholders, including civil society organisations, in order to examine whether Article 40.3.3 of the Constitution could be revised and the legal framework related to abortion broadened", - "values": [ - "Civil society", - "Right to health", - "Women's rights" - ] - }, - { - "text": "Strengthen rules and regulations with regard to hatred, defamation of religions and Islamophobia", - "values": [ - "Freedom of religion and belief", - "Racial discrimination" - ] - }, - { - "text": "Take effective measures to combat the persistence of stereotypes based on racial discrimination and intolerance ", - "values": [ - "Racial discrimination" - ] - }, - { - "text": "Ratify the International Convention on the Protection of the Rights of All Migrant Workers and their families, the Second Optional Protocol to the International Covenant on Civil and Political Rights, the Third Additional Protocol to the Geneva Conventions of 1949, the Conventions on statelessness, and ILO Convention 169", - "values": [ - "International humanitarian law", - "International instruments" - ] - }, - { - "text": "Abrogate national laws which criminalize or discriminate against persons on the grounds of their sexual orientation or gender identity", - "values": [ - "Sexual Orientation and Gender Identity" - ] - }, - { - "text": "Consider taking steps with a view to abolishing death penalty", - "values": [ - "Death penalty" - ] - }, - { - "text": "Provide all necessary means for the implementation of the 2015 anti-slavery law, as well as the 2014 road map on the eradication of the consequences of slavery, including specific measures for the protection of victims and effective access to justice, as well as mandatory training on anti-slavery laws for police, administrative and judicial officials", - "values": [ - "Human rights education and training" - ] - }, - { - "text": "Introduce the office of the Ombudsman for the rights of the child to effectively promote and protect the rights of the child", - "values": [ - "National Human Rights Institution", - "Rights of the Child" - ] - }, - { - "text": "Repeal Order 3/2015 by the National Council for Peace and Order and the 2015 Public Assembly Act, and stop the use of the 2007 Act on Computer-Related Offences as well as Criminal Code Articles 112, 326, and 328 to restrict freedom of expression", - "values": [ - "Freedom of opinion and expression" - ] - }, - { - "text": "Ensure that the efforts made to guarantee freedom of movement are continued ", - "values": [ - "Freedom of movement" - ] - }, - { - "text": "Facilitate access to girls and boys to schools, particularly in rural areas", - "values": [ - "Right to education", - "Rights of the Child" - ] - }, - { - "text": "Consider ratifying the Optional Protocol to the CEDAW as well as the Optional Protocol to the CAT ", - "values": [ - "Detention", - "International instruments", - "Torture and other CID treatment", - "Women's rights" - ] - }, - { - "text": "Further strengthen measures to ensure equal access to health services for all, while giving special attention to the needs of children, women and elderly persons", - "values": [ - "Right to health", - "Rights of the Child", - "Women's rights" - ] - }, - { - "text": "Call on the international community to intensify their support and assistance to enable it to overcome the challenges and obstacles it faces during the implementation of its human rights policies, as stated in paragraph 131 of its national report", - "values": [ - "Technical assistance and cooperation" - ] - }, - { - "text": "Continue with the country's decision to restructure its justice and legal system and ensure that measures taken in this regard are in compliance with human rights instruments ", - "values": [ - "International instruments", - "Justice" - ] - }, - { - "text": "Ratify the Optional Protocol to the CRC on the involvement of children in armed conflict and develop and apply strategies aimed at ending impunity of those responsible for committing grave violations against children in conflict", - "values": [ - "International humanitarian law", - "International instruments", - "Rights of the Child" - ] - }, - { - "text": "Continue its path of developing a financial system that will allow for assisting workers wishing to demand reparations in cases of litigation with their employer ", - "values": [ - "Labour" - ] - }, - { - "text": "Consider amendments to legislation to facilitate the registration of independent media and to guarantee its freedom ", - "values": [ - "Freedom of the press" - ] - }, - { - "text": "Cooperate with the international community, including by providing access to the Special Rapporteur on the situation of human rights in Eritrea, in a transparent manner for the benefit of the human rights of the Eritrean people ", - "values": [ - "Special procedures", - "Technical assistance and cooperation" - ] - }, - { - "text": "Consider ratifying the 1951 Convention relating to the Status of Refugees", - "values": [ - "Asylum-seekers - refugees", - "International instruments" - ] - }, - { - "text": "Establish awareness campaigns on the prohibition of harmful traditional practices such as female genital mutilation and Trokosi", - "values": [ - "Human rights education and training", - "Rights of the Child", - "Torture and other CID treatment", - "Women's rights" - ] - }, - { - "text": "Adopt laws that criminalize all forms of violence against women and girls and review criminal procedures to end impunity for such violations", - "values": [ - "Rights of the Child", - "Women's rights" - ] - }, - { - "text": "Do not undertake criminal proceedings against Palestinian juveniles in military courts", - "values": [ - "Justice", - "Rights of the Child" - ] - }, - { - "text": "Take the necessary steps to prevent the assassination or intimidation of female teachers and students.", - "values": [ - "Women's rights" - ] - }, - { - "text": "Strengthen efforts to eradicate extreme poverty through the amendment of its macro-economic and structural policies", - "values": [ - "Poverty" - ] - }, - { - "text": "Ensure the full alignment of the Human Rights Commission of Sri Lanka in accordance with the Paris Principles", - "values": [ - "National Human Rights Institution" - ] - }, - { - "text": "Further improve the prison conditions in the country ", - "values": [ - "Detention" - ] - }, - { - "text": "Continue improving the accessibility to transport and infrastructure for persons with disabilities", - "values": [ - "Disabilities" - ] - }, - { - "text": "Take effective measures to ensure the equal treatment of women in law and practice, in accordance with its international obligations under the Convention on the Elimination of All Forms of Discrimination against Women", - "values": [ - "International instruments", - "Women's rights" - ] - }, - { - "text": "Establish clear processes and procedures for the selection of independent and impartial members of the National Media Commission", - "values": [ - "Freedom of the press" - ] - }, - { - "text": "Step up efforts to address the unemployment in particular in the rural regions including through special targeted programs to stimulate economic growth and development ", - "values": [ - "Development" - ] - }, - { - "text": "Continue efforts to give special regard to women and children and ensure their enjoyment of human rights and fundamental freedoms. ", - "values": [ - "Rights of the Child", - "Women's rights" - ] - }, - { - "text": "Conduct an evaluation on its anti-trafficking programmes to further strengthen them where appropriate and share its lessons learned in this area ", - "values": [ - "Trafficking" - ] - }, - { - "text": "Strengthen the independence of its judiciary", - "values": [ - "Justice" - ] - }, - { - "text": "Maintain the momentum to protect the rights of women as well as to empower women in the area of economic development through various legislative measures and institutional mechanisms", - "values": [ - "Women's rights" - ] - }, - { - "text": "Continue its efforts to protect persons with disabilities including awareness-raising campaigns about the rights of people with disabilities", - "values": [ - "Disabilities", - "Human rights education and training" - ] - }, - { - "text": "Speed up ratification of the OP-CAT", - "values": [ - "Detention", - "International instruments", - "Torture and other CID treatment" - ] - }, - { - "text": "Keep up the current efforts in order to improve conditions of detention, including limiting the overcrowding in prisons ", - "values": [ - "Detention" - ] - }, - { - "text": "Continue implementing its Programme to Eradicate the Legacy of Slavery ", - "values": [ - "Other" - ] - }, - { - "text": "Circulate and implement the recently adopted rules on the treatment of women prisoners and non-custodial measures for women offenders, otherwise known as the Bangkok Rules, and seek necessary support from such relevant agencies as UNODC and OHCHR ", - "values": [ - "Detention", - "Technical assistance and cooperation", - "Women's rights" - ] - }, - { - "text": "Consider ratifying the Rome Statute, Optional Protocols to the International Covenant on civil and Political Rights, the Convention on the Elimination of All Forms of Discriminations against Women, the Convention against Torture and other Cruel, Inhuman or Degrading Treatment or Punishment and to the Convention on the Rights of Persons with Disabilities\n", - "values": [ - "International instruments" - ] - }, - { - "text": "Ensure that the New Education Sector Plan is well implemented and adequately resourced, in order to raise education standards at all levels in the country", - "values": [ - "Right to education" - ] - }, - { - "text": "Accede to and fully align its national legislation with the Rome Statute of the International Criminal Court, including by incorporating provisions to cooperate promptly and fully with the Court and investigate and prosecute genocide, crimes against humanity and war crimes effectively before its national courts, and accede to the Agreement on Privileges and Immunities of the Court ", - "values": [ - "International instruments", - "Justice" - ] - }, - { - "text": "Study the possibility of strengthening measures to eliminate all discriminatory treatment based on sexual orientation and gender identity", - "values": [ - "Sexual Orientation and Gender Identity" - ] - }, - { - "text": "Keep on its efforts on poverty reduction through the national anti-poverty strategy", - "values": [ - "Poverty" - ] - }, - { - "text": "Intensify efforts to improve the human rights of women, and take measures to combat harmful traditional practices under customary law, such as early and forced marriage, trafficking, polygamy and levirate marriage ", - "values": [ - "Rights of the Child", - "Trafficking", - "Women's rights" - ] - }, - { - "text": "To consider the establishment without delay of an inter-ministerial mechanism that would meet regularly, notably in view to examine, in cooperation with the CNCDH, the follow-up to the recommendations made by human rights treaty bodies and competent national institutions", - "values": [ - "National Human Rights Institution", - "Treaty bodies" - ] - }, - { - "text": "The Lao PDR will continue to disseminate information about human rights conventions to officials, civil servants, officers at the central and local levels and to the general public, including the youth and children.", - "values": [ - "Human rights education and training", - "International instruments" - ] - }, - { - "text": "Ratify as soon as possible the Optional Protocol to the Convention against Torture or other Cruel, Inhuman or Degrading Treatment or Punishment (OP-CAT) ", - "values": [ - "Detention", - "International instruments", - "Torture and other CID treatment" - ] - }, - { - "text": "Implement inclusion measures that ensure access for people with disabilities to better employment opportunities ", - "values": [ - "Disabilities" - ] - }, - { - "text": "Continue its initiatives to guarantee and preserve food self-sufficiency in order to increase the well-being of its population, especially those who are most vulnerable", - "values": [ - "Right to food" - ] - }, - { - "text": "Establish a national mechanism for the protection of the rights of persons with disabilities", - "values": [ - "Disabilities" - ] - }, - { - "text": "Do its utmost to guarantee the holding of open and transparent elections on the dates ", - "values": [ - "Elections" - ] - }, - { - "text": "Take further measures to combat racism and xenophobia and incorporate the International Convention on the Elimination of All Forms of Racial Discrimination into domestic laws", - "values": [ - "International instruments", - "Racial discrimination" - ] - }, - { - "text": "Expedite the setting up of the Human Rights Commission", - "values": [ - "National Human Rights Institution" - ] - }, - { - "text": "See that the legitimate independence of public powers is respected in accordance with its international commitments", - "values": [ - "General" - ] - }, - { - "text": "Ensure that the Law on the Protection of Minors against the Detrimental Effect of Public Information is not applied with a discriminatory effect against lesbian, gay, bisexual, transgender and intersex persons", - "values": [ - "Rights of the Child", - "Sexual Orientation and Gender Identity" - ] - }, - { - "text": "Take adequate measures to combat illiteracy and poverty", - "values": [ - "Poverty", - "Right to education" - ] - }, - { - "text": "Sign and ratify as soon as possible the Council of Europe Framework Convention for the Protection of National Minorities", - "values": [ - "Minorities" - ] - }, - { - "text": "Continue to adopt legislative and policy measures to fight racial discrimination against persons of African descent", - "values": [ - "Minorities", - "Racial discrimination" - ] - }, - { - "text": "Review the possibility of repealing laws that criminalize on the basis of sexual orientation within the military", - "values": [ - "Sexual Orientation and Gender Identity" - ] - }, - { - "text": "Consider acceding to the International Covenant on Civil and Political Rights, International Covenant on Economic, Social and Cultural Rights, and the Optional Protocol to the Convention against Torture and Other Cruel, Inhuman or Degrading Treatment or Punishment", - "values": [ - "CP rights - general", - "Detention", - "ESC rights - general", - "International instruments", - "Torture and other CID treatment" - ] - }, - { - "text": "Fulfil its voluntary pledge on a standing invitation to all the Special Procedures of the Human Rights Council", - "values": [ - "Special procedures" - ] - }, - { - "text": "Integrate into national legislation the principles and provisions of international human rights instruments ratified by Syria, and abolish laws that contradict them", - "values": [ - "International instruments" - ] - }, - { - "text": "Continue its efforts to ensure equal pay to men and women for equal work ", - "values": [ - "Women's rights" - ] - }, - { - "text": "Step up its cooperation with the special procedures of the Human Rights Council by responding positively to the pending visit requests and eventually consider extending a standing invitation to all the special procedures mandate holders of the Human Rights Council ", - "values": [ - "Special procedures" - ] - }, - { - "text": "Abolish legal provisions unduly restricting peaceful demonstrations, remove restrictions on freedom of expression contained in Law 32 of 2006, and allow the opposition greater access to television broadcasts, radio broadcasts and print media", - "values": [ - "Freedom of association and peaceful assembly", - "Freedom of opinion and expression", - "Freedom of the press" - ] - }, - { - "text": "Continue its efforts to develop training programs within the framework of the project entitled "Democratic Citizenship and Human Rights"", - "values": [ - "General" - ] - }, - { - "text": "Take appropriate measures to eliminate all forms of discrimination against women and girls as well as persons with albinism", - "values": [ - "Minorities", - "Rights of the Child", - "Women's rights" - ] - }, - { - "text": "Set up the national human rights institution ", - "values": [ - "National Human Rights Institution" - ] - }, - { - "text": "Continue to develop a gender-responsive approach to issues of violence against women and continue to build supportive environment for women and children within the judicial system. this environment should take into account the special needs for rehabilitation and post-conflict care of women and children in vulnerable situations and conflict areas.", - "values": [ - "Justice", - "Rights of the Child", - "Women's rights" - ] - }, - { - "text": "Put in place a legal mechanism that enables indigenous communities from protecting and claiming their lands", - "values": [ - "Freedom of opinion and expression", - "Indigenous peoples", - "Right to land" - ] - }, - { - "text": "Effectively respect for the rights of all migrant workers and their family members", - "values": [ - "Labour", - "Migrants" - ] - }, - { - "text": "Adopt domestic legislation to absolutely abolish practices of torture on its territory ", - "values": [ - "Torture and other CID treatment" - ] - }, - { - "text": "Provide sufficient resources to the Office of the Ombudsman for its effective functioning.", - "values": [ - "National Human Rights Institution" - ] - }, - { - "text": "Stress cooperation and constructive dialogue between members and non-members of the Human Rights Council with a view to enhancing the effective execution of the Council's mandate", - "values": [ - "Other" - ] - }, - { - "text": "Develop prevention strategies on gender-based violence and establish rehabilitation services for victims of violence", - "values": [ - "Women's rights" - ] - }, - { - "text": "Enact legislation that expressly prohibits discrimination against a person on the basis of sexual orientation or identity ", - "values": [ - "Sexual Orientation and Gender Identity" - ] - }, - { - "text": "Accelerate the full operationalization of the National Institute for Human Rights in the near future ", - "values": [ - "National Human Rights Institution" - ] - }, - { - "text": "Take effective measures to bring conditions of detention in line with international standards, in particular to reduce overcrowding, to improve the situation of juveniles and women in prisons and to promote non-custodial measures ", - "values": [ - "Detention", - "Rights of the Child", - "Women's rights" - ] - }, - { - "text": "Reconsider its withdrawal from the preparatory process of the Durban Review Conference and positively contribute to the global efforts to combat racism, racial discrimination, xenophobia and related intolerance", - "values": [ - "Racial discrimination" - ] - }, - { - "text": "Adopt effective measures to combat violence against women and to fight poverty ", - "values": [ - "Poverty", - "Women's rights" - ] - }, - { - "text": "Take specific measures in follow-up to the recommendations of the Human Rights Committee to the United States in 2014 with regards to capital punishment such as measures to avoid racial bias, to avoid wrongful sentencing to death and to provide adequate compensation if wrongful sentencing happens", - "values": [ - "Death penalty", - "Racial discrimination", - "Treaty bodies" - ] - }, - { - "text": "Continue efforts to implement the total prohibition of torture and illtreatment by integrating CAT into domestic legislation and ratify OP-CAT ", - "values": [ - "Detention", - "International instruments", - "Torture and other CID treatment" - ] - }, - { - "text": "Ensure that the rights of detainees are respected", - "values": [ - "Detention" - ] - }, - { - "text": "Continue efforts to combat harmful traditional practices against women and girls", - "values": [ - "Torture and other CID treatment", - "Women's rights" - ] - }, - { - "text": "Investigate the cases of rendition flights where Finland's participation is suspected and bring to justice those involved, considering additionally the possibility of compensation for victims of torture in conformity with internal legislation and international legislation ", - "values": [ - "Counter-terrorism", - "Torture and other CID treatment" - ] - }, - { - "text": "Adopt a new prison policy in order to improve prison conditions and, if possible, increase the salaries of prison guards and administrative staff ", - "values": [ - "Detention" - ] - }, - { - "text": "Guarantee the protection of all people from discriminatory norms and practices on the grounds of sexual orientation and gender identity in all spheres of life", - "values": [ - "Sexual Orientation and Gender Identity" - ] - }, - { - "text": "Make more efforts to develop poverty reduction strategies and adopt legislations to ensure safe drinking water and sanitation ", - "values": [ - "Poverty", - "Right to water and sanitation" - ] - }, - { - "text": "Continue efforts for international cooperation in the field of human rights and benefit from relevant international experiences", - "values": [ - "General" - ] - }, - { - "text": "Adopt the National Action Plan to combat violence against women, by investigating complaints and instituting criminal proceedings against perpetrators, even in the absence of formal complaints", - "values": [ - "Women's rights" - ] - }, - { - "text": "Enhance its cooperation with OHCHR", - "values": [ - "Technical assistance and cooperation" - ] - }, - { - "text": "Consolidate the legal framework for the promotion and protection of human rights, through the ratification of the Convention on the Protection of the Rights of All Migrant Workers and Members of Their Families ", - "values": [ - "International instruments", - "Labour", - "Migrants" - ] - }, - { - "text": "Apply the standards of CRC to all cases that involve the investigation, the prosecution and the deprivation of liberty of boys and girls, especially in the context of the enforcement of antiterrorist laws ", - "values": [ - "Counter-terrorism", - "International instruments", - "Rights of the Child" - ] - }, - { - "text": "Continue advancing its efforts to improve indicators regarding poverty, illiteracy, schooling, mothers' health and access to water with the cooperation of the international community, in particular the developed countries, which must increase their official development aid and other forms of aid to Bhutan ", - "values": [ - "ESC rights - general", - "Technical assistance and cooperation" - ] - }, - { - "text": "Successfully conclude the second stage of reform in the human rights sphere, in particular the application and practice of the new legislative basis ", - "values": [ - "Justice" - ] - }, - { - "text": "Deepen investigation of cases of human rights violations committed during the conflict, punish the perpetrators and provide adequate reparation to the victims", - "values": [ - "Human rights violations by state agents" - ] - }, - { - "text": "Continue to strengthen measures to protect and promote the welfare and human rights of all expatriate workers in Qatar, especially women domestic workers", - "values": [ - "Labour" - ] - }, - { - "text": "Pursue its land reform and resettlement program in order to enable underprivileged persons to have access to land, given that the right to land is a fundamental human right", - "values": [ - "Right to land" - ] - }, - { - "text": "Ensure the right of association of NGOs working on issues of sexual orientation and gender identity", - "values": [ - "Civil society", - "Freedom of association and peaceful assembly", - "Sexual Orientation and Gender Identity" - ] - }, - { - "text": "Address root causes of discriminations, ensure effective access to justice, establish immediate means of redress and protection of rights of ethno-minorities, in particular, Aboriginals.", - "values": [ - "Indigenous peoples", - "Justice", - "Minorities" - ] - }, - { - "text": "Combat discrimination and violence against women and reinforce their participation in the labour market.", - "values": [ - "Labour", - "Women's rights" - ] - }, - { - "text": "Increase overseas development assistance to aim at achieving the agreed target of 0.7 per cent of GDP", - "values": [ - "Development" - ] - }, - { - "text": "Consider defining rape as a sexual violation in the Criminal Code, irrespective of the degree of violence used or threatened by the perpetrator", - "values": [ - "Women's rights" - ] - }, - { - "text": "Implement recommendations made in the Office of the Ombudswoman's extraordinary report related to human rights complaints on access to education, procedural guarantees in the demolition of illegal dwellings and police conduct ", - "values": [ - "Human rights violations by state agents", - "National Human Rights Institution", - "Right to education", - "Right to housing" - ] - }, - { - "text": "Take all necessary measures to officially withdraw the reservation from paragraph 4 of article 15 of the Convention on the Elimination of All Forms of Discrimination against Women", - "values": [ - "International instruments", - "Women's rights" - ] - }, - { - "text": "Amend legislation infringing freedom of expression, in accordance with the Gambia's international human rights obligations", - "values": [ - "Freedom of opinion and expression" - ] - }, - { - "text": "Systematically consult with civil society and NGOs on the implementation of UPR, United Nations treaty bodies and United Nations special procedures' recommendations ", - "values": [ - "Civil society", - "Special procedures", - "Treaty bodies", - "UPR process" - ] - }, - { - "text": "Refrain from initiating defamation lawsuits against civil society activists and journalists, and put an end to the practice of detaining these individuals engaging in the exercise of their legal civil and political rights", - "values": [ - "CP rights - general", - "Civil society", - "Freedom of the press" - ] - }, - { - "text": "Issue a standing invitation to the special procedures of the Human Rights Council, and in particular accept a visit by the Special Rapporteur on the promotion and protection of the right to freedom of opinion and expression, which has already been requested twice ", - "values": [ - "Freedom of opinion and expression", - "Special procedures" - ] - }, - { - "text": "Extend in the region the positive experience in education and health care, including through special training", - "values": [ - "Right to education", - "Right to health" - ] - }, - { - "text": "Reduce infant mortality rate and improve maternal health care in remote areas", - "values": [ - "Right to health", - "Rights of the Child", - "Women's rights" - ] - }, - { - "text": "Seek to improve prison conditions in Gabon including the availability of appropriate medical care for prisoners and access of prisoners to legal counsel and family", - "values": [ - "Detention", - "Right to health" - ] - }, - { - "text": "Review its newly adopted penal code with a view to ensuring its compliance with the permissible limitations to freedom of expression as stated in ICCPR ", - "values": [ - "Freedom of opinion and expression", - "International instruments" - ] - }, - { - "text": "Release immediately all political prisoners and administrative detainees", - "values": [ - "Detention", - "Freedom of opinion and expression" - ] - }, - { - "text": "Ensure the protection of the rights of children, particularly those in vulnerable situations, and ensure their perpetrators of sexual violence and trafficking are held to account", - "values": [ - "Rights of the Child", - "Trafficking" - ] - }, - { - "text": "Pay attention to the promotion of the rights of the child, particularly children with disabilities, and strengthen efforts to combat violence against children ", - "values": [ - "Disabilities", - "Rights of the Child" - ] - }, - { - "text": "Take measures to further improve access to education especially to women and children", - "values": [ - "Right to education", - "Rights of the Child", - "Women's rights" - ] - }, - { - "text": "Ensure full implementation of its national plans against domestic and gender-based violence to effectively reduce social acceptance of violence against women, including domestic violence, promote equality between women and men, eliminate stereotypes and take measures to raise awareness of existing mechanisms to prevent and combat domestic violence, including by ensuring thorough investigation and prosecution of all acts of violence against women ", - "values": [ - "Rights of the Child", - "Women's rights" - ] - }, - { - "text": "Respect the principles of the protection of persons subjected to detention or imprisonment and implement the recommendation of the Committee against Torture that specific legislation to ban torture be adopted.", - "values": [ - "Detention", - "Torture and other CID treatment", - "Treaty bodies" - ] - }, - { - "text": "Recognize the competence of the Committee on Enforced Disappearances (CPED) to receive and consider communications from or on behalf of victims and other States Parties for violations of the provisions of the Convention", - "values": [ - "Enforced disappearances", - "International instruments", - "Treaty bodies" - ] - }, - { - "text": "Explicitly criminalize spousal rape", - "values": [ - "Women's rights" - ] - }, - { - "text": "Finalize the process of ratification of the Convention against Torture and Other Cruel, Inhuman or Degrading Treatment or Punishment and the International Convention for the Protection of All Persons from Enforced Disappearance", - "values": [ - "Enforced disappearances", - "International instruments", - "Torture and other CID treatment" - ] - }, - { - "text": "Intensify measures to reduce chronic malnutrition of children", - "values": [ - "Right to food", - "Rights of the Child" - ] - }, - { - "text": "Abolish the death penalty and ratify the Second Optional Protocol to the International Covenant on Civil and Political Rights aiming at the abolition of the death penalty", - "values": [ - "Death penalty", - "International instruments" - ] - }, - { - "text": "Set up a national mechanism for preventing torture", - "values": [ - "Detention", - "Torture and other CID treatment" - ] - }, - { - "text": "Continue to strengthen and reform the social protection system to cover all persons, including those from the most disadvantaged and marginalized groups", - "values": [ - "ESC rights - general" - ] - }, - { - "text": "Continue its commitment to the cause of promoting and protecting human rights and fundamental freedoms, and to advance the implementation of policies and measures that reflect this commitment ", - "values": [ - "General" - ] - }, - { - "text": "Continue pursuing and redoubling efforts to establish plans and strategies for the development of the country, concentrating on the improvement of the situation of economic and social rights of its citizens, and seek to benefit from the support and services of OHCHR and the international community. ", - "values": [ - "ESC rights - general", - "Technical assistance and cooperation" - ] - }, - { - "text": "The delegation reiterated the firm commitment of Kyrgyzstan to improving the human rights protection system and ensuring the compliance of national law with the international human rights system.", - "values": [ - "General" - ] - }, - { - "text": "Take measures to prevent the unnecessary admission of children to institutional care and to support the reintegration of children into their biological families ", - "values": [ - "Rights of the Child" - ] - }, - { - "text": "Intensify its efforts on human rights and environment with the newly appointed Independent Expert on Human Rights and Environment of the Council ", - "values": [ - "Environment", - "Special procedures" - ] - }, - { - "text": "Initiate a public debate with a view to abolishing the death penalty de jure, after more than 10 years of de facto moratorium on executions ", - "values": [ - "Death penalty" - ] - }, - { - "text": "Strengthen efforts to combat trafficking in persons, particularly women and children, including through prevention actions ", - "values": [ - "Rights of the Child", - "Trafficking", - "Women's rights" - ] - }, - { - "text": "Provide necessary financial resources for the application of the law concerning femicide, as well as of the National Plan for the Prevention of Domestic Violence and Violence against Women", - "values": [ - "Women's rights" - ] - }, - { - "text": "Maintain the moratorium in the application of the death penalty", - "values": [ - "Death penalty" - ] - }, - { - "text": "Maintain the network of pre-university institutions with access to education in minority languages in line with the recommendation by the Committee on Economic, Social and Cultural Rights on the guarantees for the rights of ethnic minorities", - "values": [ - "Minorities", - "Right to education", - "Treaty bodies" - ] - }, - { - "text": "Intensify labour inspections focusing on child labour and prosecution of violators of child labour legislation", - "values": [ - "Labour", - "Rights of the Child" - ] - }, - { - "text": "Address potential de facto discrimination of women with regard to inheritance.", - "values": [ - "Women's rights" - ] - }, - { - "text": "Undertake the necessary measures to install the adequate legal and administrative framework to facilitate the reporting, investigation and prosecution of domestic violence cases ", - "values": [ - "Rights of the Child", - "Women's rights" - ] - }, - { - "text": "Take all necessary steps to adopt legislative and other measures to explicitly prohibit discrimination on the basis of sexual orientation and gender identity", - "values": [ - "Sexual Orientation and Gender Identity" - ] - }, - { - "text": "Formulate, in cooperation with regional and United Nations mechanisms, a plan for the management and mitigation of natural disasters which includes potential mass displacements of the population ", - "values": [ - "Environment", - "Internally displaced persons", - "Technical assistance and cooperation" - ] - }, - { - "text": "Continue resolutely consolidating the education system in accordance with the particular characteristics and needs of its population", - "values": [ - "Right to education" - ] - }, - { - "text": "Continue to strengthen enforcement of anti-trafficking legislation by investigating and prosecuting offenders, while also reinforcing the mechanisms of support, rehabilitation, protection and redress for victims", - "values": [ - "Trafficking" - ] - }, - { - "text": "Lift laws that are contrary to the state's international obligations to respect, protect and promote freedom of expression and the right of peaceful and legitimate assembly", - "values": [ - "Freedom of association and peaceful assembly", - "Freedom of opinion and expression" - ] - }, - { - "text": "Consider ratifying the Optional Protocols to the Convention against Torture, Convention on the Elimination of Discrimination Against Women and the Convention on the Rights of the Child", - "values": [ - "Detention", - "International instruments", - "Rights of the Child", - "Torture and other CID treatment", - "Women's rights" - ] - }, - { - "text": "Include in its action plans the protection of persons with albinism", - "values": [ - "Minorities" - ] - }, - { - "text": "Explore the possibility of undertaking a comprehensive study on the positive implications of the implementation of a legal system based on civil and Islamic law, and share its experiences and best practices in that regard", - "values": [ - "Justice" - ] - }, - { - "text": "Consider extending a standing invitation to special procedures.", - "values": [ - "Special procedures" - ] - }, - { - "text": "Strengthen the efforts to prevent and combat trafficking in human beings for sexual purposes, with particular attention to children", - "values": [ - "Rights of the Child", - "Trafficking" - ] - }, - { - "text": "Take appropriate and effective measures to improve the welfare of children, including in the fields of health care, adequate living conditions and the right to education", - "values": [ - "Rights of the Child" - ] - }, - { - "text": "Continue with its efforts in enhancing girls' access to primary, secondary and tertiary education", - "values": [ - "Right to education", - "Rights of the Child", - "Women's rights" - ] - }, - { - "text": "Take concrete measures to decriminalize same-sex relations and prevent discrimination based on marital status and sexual orientation", - "values": [ - "Sexual Orientation and Gender Identity" - ] - }, - { - "text": "Intensify its struggle against racism.", - "values": [ - "Racial discrimination" - ] - }, - { - "text": "Ensure minimum reception standards in Federal and Cantonal reception centres across the country", - "values": [ - "Other" - ] - }, - { - "text": "Enhance civilian control over investigation of violations in the army and ensure protection of witnesses and victims ", - "values": [ - "Human rights violations by state agents", - "Justice" - ] - }, - { - "text": "Consider the possibility of ratifying the International Convention for the Protection of All Persons from Enforced Disappearance (CED) ", - "values": [ - "Enforced disappearances", - "International instruments" - ] - }, - { - "text": "Reduce maternal and child mortality in rural and urban areas, through specific plans on sanitary assistance to pregnant women and during the post-natal period ", - "values": [ - "Right to health", - "Rights of the Child", - "Women's rights" - ] - }, - { - "text": "Ensure full implementation of Law 25/11 against Domestic Violence and ensure there are increased protections against all forms of violence faced by women, including internally displaced and refugee women, who are among the most vulnerable", - "values": [ - "Asylum-seekers - refugees", - "Internally displaced persons", - "Rights of the Child", - "Women's rights" - ] - }, - { - "text": "Facilitate access to justice by victims of sexual violence, particularly by reducing delay for hearings victims and improving care for these victims ", - "values": [ - "Justice", - "Rights of the Child", - "Women's rights" - ] - }, - { - "text": "Ratify all core human rights conventions, especially the International Covenant on Civil and Political Rights, the Convention against Torture and the International Covenant on Economic, Social and Cultural Rights", - "values": [ - "CP rights - general", - "ESC rights - general", - "International instruments", - "Torture and other CID treatment" - ] - }, - { - "text": "Develop a package of political measures permitting the independent living of persons with disabilities and prepare a protocol for action to ensure the independent living of persons who do not have family support", - "values": [ - "Disabilities" - ] - }, - { - "text": "Take measures to amend or to eliminate cultural or traditional customs and practices, which discriminate against women", - "values": [ - "Women's rights" - ] - }, - { - "text": "Ratify the Convention relating to the Status of Stateless Persons [1954] and the Convention on the Reduction of Statelessness [1961]", - "values": [ - "International instruments", - "Statelessness and the right to nationality" - ] - }, - { - "text": "Strengthen efforts to ensure the access of children to compulsory education", - "values": [ - "Right to education", - "Rights of the Child" - ] - }, - { - "text": "Take action to address the non-coverage of anti-retroviral treatment for refugees.", - "values": [ - "Asylum-seekers - refugees", - "HIV - Aids" - ] - }, - { - "text": "Ratify the Optional Protocol to CRC on a communications procedure and the Optional Protocol to the International Covenant on Economic, Social and Cultural Rights ", - "values": [ - "ESC rights - general", - "International instruments", - "Rights of the Child" - ] - }, - { - "text": "Lift restrictions on Internet usage such as filtering and surveillance", - "values": [ - "Freedom of opinion and expression", - "Privacy" - ] - }, - { - "text": "Consider becoming party to the Optional Protocol to the Convention against Torture or Other Cruel, Human or Degrading Treatment or Punishment (OPCAT)", - "values": [ - "Detention", - "International instruments", - "Torture and other CID treatment" - ] - }, - { - "text": "Ensure to LGBTI persons the full enjoyment and equal treatment of their human rights by repealing norms that criminalize and stigmatize them", - "values": [ - "Sexual Orientation and Gender Identity" - ] - }, - { - "text": "The RMI is committed to fulfilling its human rights obligations under the CRC and CEDAW and continuing to adhere to the Universal Declaration on Human Rights as well as the United Nations Charter. Due to capacity and resources issues, the RMI has yet to ratify the other core human rights conventions, but is considering doing so.", - "values": [ - "International instruments", - "Rights of the Child", - "Women's rights" - ] - }, - { - "text": "Submit its long-overdue reports to the relevant treaty body mechanisms", - "values": [ - "Treaty bodies" - ] - }, - { - "text": "Recommended to Tonga and to relevant actors to attentively follow-up on the requests for capacity-building and technical assistance on human rights.", - "values": [ - "Technical assistance and cooperation" - ] - }, - { - "text": "Continue efforts to address effectively the socio-economic inequalities of the Roma and to improve their situation.", - "values": [ - "Minorities" - ] - }, - { - "text": "Continue to consolidate its human rights policies, particularly in the sphere of economic, social and cultural rights, in order to continue enhancing the quality of life of its people, especially the most vulnerable sectors of the population", - "values": [ - "ESC rights - general" - ] - }, - { - "text": "Ensure adequate trained prosecutors, judges and staff in the justice systems of the Federation and of Republika Srpska, in order to make timely and efficient progress on war crime cases, including the sensitive handling of those dealing with sexual violence", - "values": [ - "Human rights education and training", - "Justice", - "Women's rights" - ] - }, - { - "text": "Continue efforts to fight against poverty ", - "values": [ - "Poverty" - ] - }, - { - "text": "Continue its efforts to address the issues of overcrowding of prisons and delays in court proceedings.", - "values": [ - "Detention", - "Justice" - ] - }, - { - "text": "Take steps to reduce prison overcrowding, and to ensure that food rations for prisoners meet international standards ", - "values": [ - "Detention", - "Right to food" - ] - }, - { - "text": "Ratify OP-ICESCR, OP-CEDAW and OP-CAT", - "values": [ - "Detention", - "ESC rights - general", - "International instruments", - "Torture and other CID treatment", - "Women's rights" - ] - }, - { - "text": "Take necessary measures to implement the National Disability Policy ", - "values": [ - "Disabilities" - ] - }, - { - "text": "Cooperate with the Special Rapporteur and other United Nations special procedures mandate holders", - "values": [ - "Special procedures" - ] - }, - { - "text": "Take urgent measures to re-establish the independence of the judiciary", - "values": [ - "Justice" - ] - }, - { - "text": "Take practical steps to strengthen the implementation of measures promoting the rights of women and children and eliminating violence against them", - "values": [ - "Rights of the Child", - "Women's rights" - ] - }, - { - "text": "Spread a human rights culture through school curricula ", - "values": [ - "Human rights education and training" - ] - }, - { - "text": "Abide by the laws of war, especially by immediately ending all deliberate, indiscriminate and disproportionate attacks against civilians", - "values": [ - "International humanitarian law" - ] - }, - { - "text": "Follow up on offences linked to trafficking of persons irrespective of the victim\u2019s immigration status, in order to prevent the victim from being criminalized during the procedure", - "values": [ - "Migrants", - "Trafficking" - ] - }, - { - "text": "Drop any disciplinary proceedings against judges perceived as critical of the legality of the coup d'etat", - "values": [ - "Justice" - ] - }, - { - "text": "Work with the international community, including WHO and the Global Fund, to fight diseases through securing relevant expertise ", - "values": [ - "Right to health", - "Technical assistance and cooperation" - ] - }, - { - "text": "Adopt legislation explicitly prohibiting corporal punishment of children, including in the home, and consider awareness-raising activities to increase public knowledge about the issue", - "values": [ - "Human rights education and training", - "Rights of the Child", - "Torture and other CID treatment" - ] - }, - { - "text": "Conduct relevant actions to prevent that minors are referred to detention centers for adults", - "values": [ - "Detention", - "Rights of the Child" - ] - }, - { - "text": "Ensure that life imprisonment sentences cease to be administered to minors and juveniles", - "values": [ - "Justice", - "Rights of the Child" - ] - }, - { - "text": "Strengthen its efforts to combat racist attacks committed by law enforcement personnel, particularly against the Roma, by among others, providing special training to law enforcement personnel aimed at promoting respect for human rights and tolerance for diversity ", - "values": [ - "Human rights education and training", - "Human rights violations by state agents", - "Minorities", - "Racial discrimination" - ] - }, - { - "text": "Continue the realization of measures aimed at promoting tolerance, including religious tolerance, as well as continue its contribution to the dialogue among civilizations at the international level ", - "values": [ - "Freedom of religion and belief" - ] - }, - { - "text": "Continue to promote gender equality in the country and share its experience with other nations ", - "values": [ - "Women's rights" - ] - }, - { - "text": "Consider issuing a standing invitation to special procedures for a visit to the country ", - "values": [ - "Special procedures" - ] - }, - { - "text": "Further progress in the incorporation of the Convention on the Rights of the Child to legislation and national policies", - "values": [ - "International instruments", - "Rights of the Child" - ] - }, - { - "text": "Adopt and implement the national policies on child protection and on the child welfare system", - "values": [ - "Rights of the Child" - ] - }, - { - "text": "Develop alternatives to the mandatory sentencing laws placing children as young as 10 years of age in juvenile detention centres", - "values": [ - "Detention", - "Rights of the Child" - ] - }, - { - "text": "Continue to strengthen its environmental conservation efforts, which contribute significantly to global efforts to safeguard the common heritage of mankind ", - "values": [ - "Environment" - ] - }, - { - "text": "Criminalize racism, in line with international commitments", - "values": [ - "Racial discrimination" - ] - }, - { - "text": "Establish a national human rights institution in line with Paris Principles ", - "values": [ - "National Human Rights Institution" - ] - }, - { - "text": "Step up measures to combat trafficking and smuggling of persons, especially trafficking of children and establish the necessary measures for the prevention, investigation and punishment of persons or groups involved in this crime", - "values": [ - "Rights of the Child", - "Trafficking" - ] - }, - { - "text": "Act more intensively against trafficking of children for sexual exploitation and guarantee their separate detention from adults", - "values": [ - "Detention", - "Rights of the Child", - "Trafficking" - ] - }, - { - "text": "Take the necessary measures so as to ensure that journalists and human rights defenders can do their work independently and without fear of reprisals from the authorities, be they of financial, legal or of another nature ", - "values": [ - "Freedom of the press", - "Human rights defenders" - ] - }, - { - "text": "Take a step further in the area of migrants' rights protection and consider ratifying the ICRMW and ILO Convention no. 189 ", - "values": [ - "International instruments", - "Labour", - "Migrants" - ] - }, - { - "text": "Seek necessary assistance for its efforts to improve human rights in its territory, particularly the rights of migrants and asylum seekers", - "values": [ - "Asylum-seekers - refugees", - "Migrants", - "Technical assistance and cooperation" - ] - }, - { - "text": "Continue to promote international cooperation in the field of human rights in accordance with its national situation ", - "values": [ - "General" - ] - }, - { - "text": "Continue efforts to raise public awareness about human rights including awareness by law enforcement agencies", - "values": [ - "Human rights education and training" - ] - }, - { - "text": "Take concrete and practical measures to combat discrimination in schooling and continue the process of reintegration of the Roma into the school system", - "values": [ - "Minorities", - "Right to education" - ] - }, - { - "text": "Improve the working conditions of judges and prosecutors, especially of prosecutors, in order to further strengthen their independence, and fill vacant positions for judges and prosecutors ", - "values": [ - "Justice" - ] - }, - { - "text": "Continue to implement the National Health Development Plan 2011- 2015 ", - "values": [ - "Right to health" - ] - }, - { - "text": "Take all necessary measures for the effective implementation of the national strategic plan to reduce maternal mortality 2012-2016 ", - "values": [ - "Right to health", - "Women's rights" - ] - }, - { - "text": "Take all measures to abolish the use of the death penalty ", - "values": [ - "Death penalty" - ] - }, - { - "text": "Focus on policies that seek to improve access to, and the quality of, the health and education sectors ", - "values": [ - "Right to education", - "Right to health" - ] - }, - { - "text": "Enhance the promotion and protection of fundamental human rights in accordance with the level of socio-economic development of the country in keeping with international human rights instruments", - "values": [ - "Other" - ] - }, - { - "text": "Repeal the provisions in its Penal Code which criminalize consensual same-sex activities between adults", - "values": [ - "Sexual Orientation and Gender Identity" - ] - }, - { - "text": "Amend the labour law to address the inconsistency with regard to the minimum age to work and the school age for compulsory education, as well as more vigorously enforce the labour laws related to child labour ", - "values": [ - "Labour", - "Right to education", - "Rights of the Child" - ] - }, - { - "text": "Consider ratifying the Convention relating to the Status of Refugees of 1951 and its 1967 Protocol, respecting the principle of non-refoulement of refugees and asylum seekers", - "values": [ - "Asylum-seekers - refugees", - "International instruments" - ] - }, - { - "text": "Consider abolishing the kafala system for all migrant workers and eliminating the exit permit system ", - "values": [ - "Labour", - "Migrants" - ] - }, - { - "text": "Ratify the International Convention for the Protection of All Persons from Enforced Disappearances, the Convention against Torture and other Cruel, Inhuman or Degrading Treatment or Punishment, and the Rome Statute of the International Criminal Court ", - "values": [ - "Enforced disappearances", - "International instruments", - "Justice", - "Torture and other CID treatment" - ] - }, - { - "text": "Consider establishing a comprehensive human rights act as recommended by the National Human Rights Consultative Committee", - "values": [ - "General" - ] - }, - { - "text": "Continue strengthening the implementation of those measures already adopted and adopt new measures, whenever necessary, to ensure the enjoyment of human rights for its population, according particular importance to eradicating violence against women and ensuring the rights of the child.", - "values": [ - "Rights of the Child", - "Women's rights" - ] - }, - { - "text": "Sign and ratify the Optional Protocol to ICESCR and CRPD and ratify CED", - "values": [ - "Disabilities", - "ESC rights - general", - "Enforced disappearances", - "International instruments" - ] - }, - { - "text": "Intensify efforts to prevent and combat violence against women and girls, domestic violence and the violent deaths of women", - "values": [ - "Rights of the Child", - "Women's rights" - ] - }, - { - "text": "Effectively implement legal provisions aimed at eliminating racial discrimination ", - "values": [ - "Racial discrimination" - ] - }, - { - "text": "Continue its efforts to combat the phenomenon of terrorism and money laundering", - "values": [ - "Corruption", - "Public security" - ] - }, - { - "text": "Adopt a permanent moratorium on the death penalty with the view of its future abolition", - "values": [ - "Death penalty" - ] - }, - { - "text": "Take measures to render its criminal law consistent with the prohibition of torture which constitutes a norm of international law", - "values": [ - "Torture and other CID treatment" - ] - }, - { - "text": "Sign and ratify the International Covenant on Civil and Political Rights, International Covenant on Economic, Social and Cultural Rights, International Convention for the Protection of All Persons from Enforced Disappearance, and ratify the Convention on the Rights of Persons with Disabilities ", - "values": [ - "CP rights - general", - "Disabilities", - "ESC rights - general", - "Enforced disappearances", - "International instruments" - ] - }, - { - "text": "End the practice of using criminal defamation laws to restrict freedom of expression and peaceful assembly and association in accordance with international obligations", - "values": [ - "Freedom of association and peaceful assembly", - "Freedom of opinion and expression" - ] - }, - { - "text": "Introduce adequate measures with a view to promoting freedom of expression as well as media freedom ", - "values": [ - "Freedom of opinion and expression", - "Freedom of the press" - ] - }, - { - "text": "Give central attention to the consideration of human rights in the elaboration of a European Pact on Migration and to ensure that in its implementation all human rights are guaranteed for migrants regardless of their status.", - "values": [ - "Migrants" - ] - }, - { - "text": "Take the necessary measures aimed at preventing discrimination against children with disabilities, children living in extreme poverty and street children", - "values": [ - "Disabilities", - "Poverty", - "Rights of the Child" - ] - }, - { - "text": "Strengthen child protection system with effective mechanisms, including investigation of reports of cases of cases of child abuse", - "values": [ - "Rights of the Child" - ] - }, - { - "text": "Continue its UPR consultation process in cooperation with civil society organizations following the adoption of the UPR reports ", - "values": [ - "Civil society", - "UPR process" - ] - }, - { - "text": "End immediately the economic and military blockade of Donbas, stop shelling its territory, and fully implement social and human rights obligations towards the region\u2019s inhabitants", - "values": [ - "Other" - ] - }, - { - "text": "Activate efforts to eradicate the expressions of hatred, persecution and harassment on ethnic, cultural and linguistic grounds through partnerships and establishing trust and dialogue between religions and cultures and see this as of respecting human rights", - "values": [ - "Freedom of religion and belief", - "Racial discrimination" - ] - }, - { - "text": "Ensure the reporting and investigation of cases of violence against women, effective awareness campaign against violence and consolidate measures to address sexual abuses and exploitation of children", - "values": [ - "Human rights education and training", - "Rights of the Child", - "Women's rights" - ] - }, - { - "text": "Enact the Right to Information Bill, which has been reviewed by the Attorney General and was submitted to the Cabinet in May 2017", - "values": [ - "Freedom of opinion and expression" - ] - }, - { - "text": "Ensure that all police officers are aware of and abide by international human rights standards on police use of force", - "values": [ - "Public security" - ] - }, - { - "text": "Review the procedures applicable to the blasphemy laws with a view to containing abuses", - "values": [ - "Freedom of opinion and expression", - "Freedom of religion and belief" - ] - }, - { - "text": "Continue its efforts to implement its strategy to combat terrorism and violent extremism in conjunction with all relevant authorities", - "values": [ - "Counter-terrorism" - ] - }, - { - "text": "Further promote the proper use of technologies, with particular attention to the Internet, based on human values, respect for self and others and children's rights ", - "values": [ - "Other" - ] - }, - { - "text": "Extend a standing invitation to all special procedures of the Human Rights Council as a way of informing and supporting human rights reforms", - "values": [ - "Special procedures" - ] - }, - { - "text": "Develop a national strategy to combat trafficking of women and children, and prohibit and criminalize child exploitation and prostitution ", - "values": [ - "Rights of the Child", - "Trafficking", - "Women's rights" - ] - }, - { - "text": "The delegation stated that Guyana re-affirmed its commitment to holding consultations with civil society, the four Human Rights Commissions, various levels of government and state agencies, and the National Assembly on the follow-up to the UPR process. It also reported its initiatives to strengthen the government-NGO partnership to reduce and prevent domestic and sexual violence.", - "values": [ - "Civil society", - "Rights of the Child", - "UPR process", - "Women's rights" - ] - }, - { - "text": "Continue to exert efforts to combat trafficking in persons through the implementation of the Prevention of Human Trafficking Act in accordance with its obligations under the Palermo Protocol", - "values": [ - "Trafficking" - ] - }, - { - "text": "Take measures to reduce the number of cases of violence against women and bring the perpetrators to justice", - "values": [ - "Women's rights" - ] - }, - { - "text": "Eradicate hate-speech against minorities and establish oversight mechanisms to ensure the elimination of all forms of discrimination ", - "values": [ - "Minorities", - "Racial discrimination" - ] - }, - { - "text": "Adopt legislation prohibiting all forms of corporal punishment of children in all settings", - "values": [ - "Rights of the Child", - "Torture and other CID treatment" - ] - }, - { - "text": "End impunity and hold the perpetrators of enforced disappearance, extrajudicial killings and torture to account and facilitate access to justice for the victims of such violations", - "values": [ - "Enforced disappearances", - "Extrajudicial executions", - "Impunity", - "Justice", - "Torture and other CID treatment" - ] - }, - { - "text": "Ensure the functioning juvenile justice system throughout the country and raise the age of criminal responsibility that comply with the acceptable international standards, as previously recommended", - "values": [ - "Justice", - "Rights of the Child", - "UPR process" - ] - }, - { - "text": "Establish a national commission for human rights, with sufficient guarantees of independence and adequate material and human resources, which would work in close cooperation with the United Nations.", - "values": [ - "National Human Rights Institution" - ] - }, - { - "text": "Take necessary measures to finalize the process of establishing the National Human Rights Commission", - "values": [ - "National Human Rights Institution" - ] - }, - { - "text": "Consider joining the convention on the rights of migrant workers in line with recommendation 1737 of 17 March 2006 of the Parliamentary Assembly of Council of Europe", - "values": [ - "International instruments", - "Labour", - "Migrants" - ] - }, - { - "text": "Continue efforts to protect economic and social rights through the implementation of programmes to fight poverty, in the framework of the national human development initiative", - "values": [ - "Development", - "ESC rights - general", - "Poverty" - ] - }, - { - "text": "Provide the judiciary with all resources and support necessary so that the 338 pending criminal cases may be resolved.", - "values": [ - "Justice" - ] - }, - { - "text": "Submit its periodic reports in a timely manner to treaty bodies ", - "values": [ - "Treaty bodies" - ] - }, - { - "text": "Strengthen institutional mechanisms to address crimes against children, such as trafficking and sexual exploitation of children and adolescents ", - "values": [ - "Rights of the Child", - "Trafficking" - ] - }, - { - "text": "Strengthen the policy of promoting children rights, with special attention to the trafficking in women and children ", - "values": [ - "Rights of the Child", - "Trafficking", - "Women's rights" - ] - }, - { - "text": "Adopt a strategy to combat trafficking in persons, particularly women and children, improve the protection of victims and prosecute and punish perpetrators ", - "values": [ - "Rights of the Child", - "Trafficking", - "Women's rights" - ] - }, - { - "text": "Consider establishing a formal moratorium on executions of persons sentenced to death", - "values": [ - "Death penalty" - ] - }, - { - "text": "Continue to make progress in implementing measures and programmes aimed at preventing and eliminating all forms of violence against women and girls", - "values": [ - "Rights of the Child", - "Women's rights" - ] - }, - { - "text": "Continue efforts to promote health-care facilities, particularly in rural areas with the focus on tackling malnutrition", - "values": [ - "Right to food", - "Right to health" - ] - }, - { - "text": "Establish an independent national human rights institute which would be in full compliance with the Paris Principles", - "values": [ - "National Human Rights Institution" - ] - }, - { - "text": "Enact specific legislation which criminalizes all forms of violence against women, including within households ", - "values": [ - "Women's rights" - ] - }, - { - "text": "Reform the Penal Code with the aim of decriminalizing homosexuality ", - "values": [ - "Sexual Orientation and Gender Identity" - ] - }, - { - "text": "Adopt measures for full implementation of the principles of CEDAW and eliminate its reservations to this instrument so that it can be better implemented ", - "values": [ - "International instruments", - "Statelessness and the right to nationality", - "Women's rights" - ] - }, - { - "text": "Cease the practice of refoulement of refugees and asylum-seekers, which puts at risk their lives and their families' lives ", - "values": [ - "Asylum-seekers - refugees" - ] - }, - { - "text": "Abolish child early forced marriage and the temporary commercial marriage of girls and ensure eradication of female genital mutilation", - "values": [ - "Rights of the Child", - "Torture and other CID treatment", - "Women's rights" - ] - }, - { - "text": "Continue its engagement with the relevant UN agencies in achieving the overall objective of the UN Development Assistance Framework for 2013- 2017", - "values": [ - "Development" - ] - }, - { - "text": "Strengthen its enforcement of domestic laws that protect children from sexual abuses and exploitation, expedite the investigation of reported cases, and bring the perpetrators to justice", - "values": [ - "Rights of the Child" - ] - }, - { - "text": "Work with civil society and local authorities to address domestic and sexual violence and provide the national police's Vulnerable Persons Unit with sufficient resources to maintain an adequate presence around the country", - "values": [ - "Rights of the Child", - "Women's rights" - ] - }, - { - "text": "Continue to cooperate with the International Criminal Court, in particular by taking all necessary measures to ensure the safety and security of witnesses and victims", - "values": [ - "Justice" - ] - }, - { - "text": "Strengthen the rights of journalists and free media. the state as well as the municipal governments should fulfil their responsibility to protect a free media", - "values": [ - "Freedom of the press" - ] - }, - { - "text": "Strengthen and intensify efforts to promote the role of women in society and provide them with equal opportunities in contributing and cooperating in all aspects of life, including policies and national development programmes", - "values": [ - "Women's rights" - ] - }, - { - "text": "Continue to promote dialogue among the various religions and civilizations, and to promote the culture of dialogue and peaceful coexistence", - "values": [ - "Freedom of religion and belief" - ] - }, - { - "text": "Continue its efforts to set up the National Preventive Mechanism against Torture", - "values": [ - "Torture and other CID treatment" - ] - }, - { - "text": "Protect and respect the freedom of expression and association of human rights defenders in accordance with the Declaration on Human Rights Defenders and refrain from placing any unnecessary restrictions on their work.", - "values": [ - "Freedom of opinion and expression", - "Human rights defenders", - "International instruments" - ] - }, - { - "text": "Allow free movement of Albanian and Roma minorities and resolve the problem of lack of identity documents, which constitutes an obstacle to the exercise of their rights", - "values": [ - "Freedom of movement", - "Minorities" - ] - }, - { - "text": "Adopt policies and measures in order to prevent the sexual exploitation of children and to facilitate the social integration of those who were victims of such a crime", - "values": [ - "Rights of the Child" - ] - }, - { - "text": "Continue implementing national policies and programmes to improve the living conditions of the people ", - "values": [ - "General" - ] - }, - { - "text": "Continue its efforts in combating trafficking in persons", - "values": [ - "Trafficking" - ] - }, - { - "text": "Take steps to integrate minority communities in Germany by promoting their access to education, housing, employment and health care ", - "values": [ - "Labour", - "Minorities", - "Right to education", - "Right to health", - "Right to housing" - ] - }, - { - "text": "Continue the good work of providing legislation and policies for gender equality in keeping with international obligations, in particular with regard to violence against women and their heritage rights, and providing policies aimed at women's education, health and equal access to training and labour markets", - "values": [ - "Women's rights" - ] - }, - { - "text": "Implement the Committee against Torture's recommendation with regard to external monitoring of police custody.", - "values": [ - "Detention", - "Treaty bodies" - ] - }, - { - "text": "Introduce law that will criminalize use of children in military actions ", - "values": [ - "Rights of the Child" - ] - }, - { - "text": "Provide constitutional bodies, such as the National Human Rights Commission, and relevant government entities with the necessary mandate to effectively investigate and document all crimes against ethnic and religious minorities with a view to prosecuting those responsible", - "values": [ - "Freedom of religion and belief", - "Minorities", - "National Human Rights Institution", - "Racial discrimination" - ] - }, - { - "text": "Enact legislation to protect equality of rights for women in line with the Convention on the Elimination of All Forms of Discrimination against Women", - "values": [ - "International instruments", - "Women's rights" - ] - }, - { - "text": "Continue working for the neediest sectors of the population, by strengthening social policies", - "values": [ - "ESC rights - general" - ] - }, - { - "text": "Develop appropriate training and awareness-raising measures towards the Roma, ethnic minorities and other marginalized groups and to create a Justice system complying with international standards and ensuring that the perpetrators can be brought to Justice.", - "values": [ - "Justice", - "Minorities" - ] - }, - { - "text": "Ensure that no governmental entity endorses the restriction of freedom of expression in any way whatsoever ", - "values": [ - "Freedom of opinion and expression" - ] - }, - { - "text": "Utmost efforts should be made to address issues affecting children, including poverty, the recruitment of under-age soldiers, and a lack of access to education ", - "values": [ - "International humanitarian law", - "Poverty", - "Right to education", - "Rights of the Child" - ] - }, - { - "text": "Eliminate the practice of unlawful postponement and of refusal to register NGOs, including international NGOs and those critical of the Government and defending human rights ", - "values": [ - "Civil society", - "Freedom of association and peaceful assembly", - "Human rights defenders" - ] - }, - { - "text": "Implement a moratorium on the death penalty, and take steps to accede to the Second Optional Protocol of the ICCPR", - "values": [ - "Death penalty", - "International instruments" - ] - }, - { - "text": "That the perspective of the equality for women be fully included into the follow-up process to this review, including by conducting regular consultation with civil society and women's groups on the implementation of the various related recommendations.", - "values": [ - "Civil society", - "UPR process", - "Women's rights" - ] - }, - { - "text": "Consider amending the National Security Law to prevent arbitrary application and abusive interpretation of the law", - "values": [ - "Public security" - ] - }, - { - "text": "Continue to implement measures which allow all people to have access to health-care service", - "values": [ - "Right to health" - ] - }, - { - "text": "Take the necessary measures to ensure an improved representation of the members of minority groups not only among political ranks but in all social, cultural and economic fields", - "values": [ - "ESC rights - general", - "Minorities" - ] - }, - { - "text": "Step up the process of the creation of a national human rights institution", - "values": [ - "National Human Rights Institution" - ] - }, - { - "text": "Stop the war crimes committed by its troops abroad, including the killings of innocent civilians and prosecute those who are responsible", - "values": [ - "Extrajudicial executions", - "International humanitarian law" - ] - }, - { - "text": "Continue to work to harmonize its legal framework with the international instruments to which it is a State party", - "values": [ - "International instruments" - ] - }, - { - "text": "Reduce violence against women and increase the number of shelters for battered women", - "values": [ - "Women's rights" - ] - }, - { - "text": "Continue to implement plans which offer free and compulsory education in line with MDGs ", - "values": [ - "Right to education" - ] - }, - { - "text": "Enact these treaties (International instruments Nigeria ratified) into its domestic legislation", - "values": [ - "International instruments" - ] - }, - { - "text": "Strengthen efforts in human rights training and education and disseminate awareness of human rights", - "values": [ - "Human rights education and training" - ] - }, - { - "text": "Establish effective mechanisms to investigate, prosecute and punish trafficking offenders", - "values": [ - "Trafficking" - ] - }, - { - "text": "Ensure that all policies concerning Roma are consistent with the provisions of the International Convention on the Elimination of All Forms of Racial Discrimination ", - "values": [ - "International instruments", - "Minorities" - ] - }, - { - "text": "Pursue efforts to foster social integration and reinsertion of recidivist minors.", - "values": [ - "Rights of the Child" - ] - }, - { - "text": "Redouble efforts to promote the status of women", - "values": [ - "Women's rights" - ] - }, - { - "text": "Fully guarantee the independence of the judiciary, in particular by taking concrete measures to ensure that judges can exercise their profession in full impartiality ", - "values": [ - "Justice" - ] - }, - { - "text": "Continue efforts to promote and protect human rights while preserving the institution of the family in all its components and preserving religious tolerance ", - "values": [ - "Freedom of religion and belief" - ] - }, - { - "text": "Continue to develop strategies to protect children, including measures to ensure that children living in the street and in foster care institutions have the right to live in a family and have access to health and education", - "values": [ - "Right to education", - "Right to health", - "Rights of the Child" - ] - }, - { - "text": "Make further efforts to protect and promote women's rights in Sudan ", - "values": [ - "Women's rights" - ] - }, - { - "text": "Implement legislative provisions to prevent the criminalization of irregular migration and to encourage the use of alternative measures to deprivation of liberty, so that the detention of asylum seekers is established as a measure of last resort, while re-establishing the mechanism to determine refugee status", - "values": [ - "Asylum-seekers - refugees", - "Detention", - "Migrants" - ] - }, - { - "text": "Expedite the adoption of a social housing policy that will include the most vulnerable segments of society, such as minorities, in particular Roma as well as persons who live in conditions of extreme poverty, persons with disabilities, migrants and refugees", - "values": [ - "Asylum-seekers - refugees", - "Disabilities", - "Migrants", - "Minorities", - "Poverty", - "Right to housing" - ] - }, - { - "text": "Step up measures to combat trafficking of persons and protect the rights of victims, in particular women and children ", - "values": [ - "Rights of the Child", - "Trafficking", - "Women's rights" - ] - }, - { - "text": "Invite the UN Commission of Inquiry on Human Rights in the Democratic People's Republic of Korea to visit North-Eastern China to meet officials and North Korean citizens who have fled to China", - "values": [ - "Other" - ] - }, - { - "text": "Continue aligning legislation, policies and programmes that anchor the rights of the child in order to stop children from working in harmful conditions, stop early marriages and criminalize all forms of child exploitation", - "values": [ - "Labour", - "Rights of the Child" - ] - }, - { - "text": "Remove all ethnic profiling in the working methods of the police and other officials responsible for law enforcement", - "values": [ - "Human rights violations by state agents", - "Minorities", - "Racial discrimination" - ] - }, - { - "text": "Establish a national child welfare committee, as provided for by the Child Care and Protection Act ", - "values": [ - "Rights of the Child" - ] - }, - { - "text": "Withdraw its interpretive statement on the OP to the CRC on the involvement of children in armed conflict", - "values": [ - "International humanitarian law", - "International instruments", - "Rights of the Child" - ] - }, - { - "text": "Continue its efforts to eliminate stereotypes associated with traditional gender roles in the family and society ", - "values": [ - "Women's rights" - ] - }, - { - "text": "Continue its untiring efforts against the execution of the death penalty - and wishes Spain success with the Prime Minister's initiative which is aimed at achieving the immediate abolition of the death penalty for minors and persons with disabilities, and at achieving a global moratorium by 2015 ", - "values": [ - "Death penalty", - "Disabilities", - "Rights of the Child" - ] - }, - { - "text": "Step up procedures for the ratification of the Convention on the Rights of Persons with Disabilities ", - "values": [ - "Disabilities", - "International instruments" - ] - }, - { - "text": "Develop a national plan of action aimed at fostering a genuine human rights culture and raising human rights public awareness among the society with due regard to national and regional particularities as well as historical, cultural and religious backgrounds", - "values": [ - "Human rights education and training" - ] - }, - { - "text": "Take further steps to devise an effective response to all forms of violence against women, including the criminalization of domestic violence", - "values": [ - "Rights of the Child", - "Women's rights" - ] - }, - { - "text": "Make public statements committing to political pluralism and democracy, and, in support of this commitment, adopt and implement policies to ensure that opposition parties are permitted to participate freely in the political process without fear of retribution ", - "values": [ - "Freedom of association and peaceful assembly" - ] - }, - { - "text": "Alleviate legislative and administrative barriers related to the functioning of NGOs and civil society, recognizing the legitimacy of their work and contribution for the society ", - "values": [ - "Civil society", - "Freedom of association and peaceful assembly" - ] - }, - { - "text": "Provide for legislation ensuring an independent functioning of the National Human Rights Commission according to the Paris Principles", - "values": [ - "National Human Rights Institution" - ] - }, - { - "text": "Appeal to the international community to take individual and collective initiatives to exempt the debts of Sudan ", - "values": [ - "Other" - ] - }, - { - "text": "Engage in awareness-raising activities such as stressing diversity in school curricula in order to alleviate discrimination against lesbian, gay, bisexual and transgender persons ", - "values": [ - "Human rights education and training", - "Right to education", - "Sexual Orientation and Gender Identity" - ] - }, - { - "text": "Establish alternative punishments to the death penalty and suspend the application of the death penalty for less serious offences and for people who were minors at the time of the crimes, in the perspective of a moratorium on executions", - "values": [ - "Death penalty", - "Rights of the Child" - ] - }, - { - "text": "Develop and strengthen appropriate legislative measures to address the issue of sexual abuse and exploitation, ensure prompt prosecution of perpetrators, guarantee that no person under the age of 14 is admitted to employment or work, amend the Constitution to raise the minimum age for engaging in hazardous work to 18 years, and enact and implement legislation to ensure the complete prohibition of corporal punishment ", - "values": [ - "Labour", - "Rights of the Child", - "Torture and other CID treatment" - ] - }, - { - "text": "Accede to the 1967 Protocol relating to the Status of Refugees and related conventions ", - "values": [ - "Asylum-seekers - refugees", - "International instruments" - ] - }, - { - "text": "Continue education and awareness raising campaigns on human rights ", - "values": [ - "Human rights education and training" - ] - }, - { - "text": "Ensure that persons accused of being the authors of or accomplices in crimes against humanity are properly prosecuted ", - "values": [ - "Justice" - ] - }, - { - "text": "Abolish the quota requirement for family reunification", - "values": [ - "Asylum-seekers - refugees", - "Migrants" - ] - }, - { - "text": "Continue to consolidate the Human Rights Network of the Executive branch ", - "values": [ - "Other" - ] - }, - { - "text": "Permit the requested visit by the Special Rapporteur on extrajudicial, summary or arbitrary executions", - "values": [ - "Extrajudicial executions", - "Special procedures" - ] - }, - { - "text": "Implement the recommendations and decisions of its own judicial institutions and of the African Commission on Human and Peoples' Rights, particularly those relating to the rights of indigenous peoples ", - "values": [ - "Indigenous peoples" - ] - }, - { - "text": "Decriminalize same-sex conduct between consenting adults and pass legislation to prohibit discrimination based on sexual orientation or gender identity", - "values": [ - "Sexual Orientation and Gender Identity" - ] - }, - { - "text": "Take necessary measures to ensure the right of other marginalized communities affected by planned economic or development projects to be adequately and fairly consulted", - "values": [ - "Development" - ] - }, - { - "text": "Proceed with the Bill for the establishment of the national human rights institution", - "values": [ - "National Human Rights Institution" - ] - }, - { - "text": "Improve the living conditions and safety situation of IDPs in settlements, to strengthen their protection, particularly of women and girls from sexual violence, including granting IDPs unhindered access to humanitarian assistance ", - "values": [ - "Internally displaced persons", - "Women's rights" - ] - }, - { - "text": "Review and if necessary modify the legislation to ensure the right of every person not to be discriminated against and in particular for the elimination of any form of discrimination against women.", - "values": [ - "Women's rights" - ] - }, - { - "text": "Continue its efforts to combat gender-based violence to provide a safe living environment for women and girls ", - "values": [ - "Rights of the Child", - "Women's rights" - ] - }, - { - "text": "Take measures to fulfill recommendations made by the Committees CEDAW and CERD in respect of the lack of measures aimed at eliminating discrimination against women", - "values": [ - "Treaty bodies", - "Women's rights" - ] - }, - { - "text": "Adopt specific legislation to address all kinds of discrimination, particularly taking into account the rights of persons with disabilities and older persons", - "values": [ - "Disabilities" - ] - }, - { - "text": "Raise the minimum age for marriage to 18 for boys and girls, in accordance with the joint general recommendation No. 31 of the Committee on the Elimination of Discrimination against Women/general comment No. 18 of the Committee on the Rights of the Child (2014) on harmful practices ", - "values": [ - "Rights of the Child", - "Treaty bodies" - ] - }, - { - "text": "Consider ratifying the Convention on the Protection of the Rights of All Migrant Workers and Members of Their Families", - "values": [ - "International instruments", - "Labour", - "Migrants" - ] - }, - { - "text": "Continue to strengthen measures to eliminate all forms of servitude and forced labour, including with international cooperation and assistance, and social programmes aimed at reducing the vulnerability of the victims of that scourge", - "values": [ - "Labour", - "Technical assistance and cooperation" - ] - }, - { - "text": "Continue its efforts aimed at strengthening the institutional capacities of the People's Advocate institution", - "values": [ - "National Human Rights Institution" - ] - }, - { - "text": "Accede to the International Covenant on Civil and Political Rights and its Second Optional Protocol, aiming at the abolition of the death penalty", - "values": [ - "Death penalty", - "International instruments" - ] - }, - { - "text": "Continue reforms to improve the judicial system", - "values": [ - "Justice" - ] - }, - { - "text": "Ensure cooperation and responsiveness of financial institutions in respect of claims for the recovery of funds of illicit origin", - "values": [ - "Other" - ] - }, - { - "text": "Continue its efforts to eliminate discrimination against women and intensify awareness-raising campaigns on women's rights", - "values": [ - "Human rights education and training", - "Women's rights" - ] - }, - { - "text": "Implement the Protection of Children from Sexual Offences Act to increase the protection of children from sexual abuse", - "values": [ - "Rights of the Child", - "Women's rights" - ] - }, - { - "text": "Put in place comprehensive measures to prevent and address domestic violence and ensure that women have access to immediate means of redress and protection and that the perpetrators are prosecuted", - "values": [ - "Rights of the Child", - "Women's rights" - ] - }, - { - "text": "Make progress towards the ratification of pending human rights international instruments, including the Optional Protocol to the Convention against Torture and the International Convention for the Protection of All Persons from Enforced Disappearance", - "values": [ - "Detention", - "Enforced disappearances", - "International instruments", - "Torture and other CID treatment" - ] - }, - { - "text": "Guarantee teaching of minority languages at all elementary levels and enhance knowledge and tolerance in the Serbian society concerning languages and cultures of others ", - "values": [ - "Minorities" - ] - }, - { - "text": "Make all efforts to take the necessary measures to ensure that there is an effective prohibition of female genital mutilation", - "values": [ - "Rights of the Child", - "Torture and other CID treatment", - "Women's rights" - ] - }, - { - "text": "Redouble efforts to improve conditions of detention in prisons, guaranteeing the compatibility of rights with cultural practices.", - "values": [ - "Detention" - ] - }, - { - "text": "Officially and publicly condemn all acts of torture and ill-treatment and ensure transparent, effective and impartial investigations into any alleged cases as well as ratify the Optional Protocol to the Convention against Torture and Other Cruel, Inhuman or Degrading Treatment or Punishment", - "values": [ - "Detention", - "International instruments", - "Torture and other CID treatment" - ] - }, - { - "text": "Continue efforts in the fight against terrorism including assistance to victims of terrorism", - "values": [ - "Public security" - ] - }, - { - "text": "Continue efforts towards achieving a system that provides better protection for children, as well as the promotion and protection of the rights of women ", - "values": [ - "Rights of the Child", - "Women's rights" - ] - }, - { - "text": "Ratify CRPD ", - "values": [ - "Disabilities", - "International instruments" - ] - }, - { - "text": "Implement effective and coordinated measures to prevent violence against women, especially against young women and girls", - "values": [ - "Rights of the Child", - "Women's rights" - ] - }, - { - "text": "Join the Voluntary Principles on Security and Human Rights Initiative in order to promote respect for human rights in the provision of security for extractive industry activities", - "values": [ - "Business and human rights" - ] - }, - { - "text": "Sign and ratify the Second Optional Protocol to CAT, and create an independent mechanism for the monitoring of detention facilities ", - "values": [ - "Detention", - "International instruments", - "Torture and other CID treatment" - ] - }, - { - "text": "Guarantee that religious minorities can freely exercise their right to freedom of thought, conscience and religion in worship, as well as their observance, practice and teaching", - "values": [ - "Freedom of religion and belief", - "Minorities" - ] - }, - { - "text": "Elaborate a plan and a timetable to bring the presentation of reports to treaty bodies up to date.", - "values": [ - "Treaty bodies" - ] - }, - { - "text": "Step up efforts to eliminate discrimination against women and girls in law and in practice also by adopting the pending Bills that have impact on the enjoyment of women's rights related to marriage, recognition of customary marriage, procurement, marital property, divorce and intestate succession", - "values": [ - "Rights of the Child", - "Women's rights" - ] - }, - { - "text": "Adopt legislative and administrative measures to improve the living conditions of indigenous peoples, effectively combat and prevent violent action against indigenous women and girls through legal measures ", - "values": [ - "Indigenous peoples", - "Rights of the Child", - "Women's rights" - ] - }, - { - "text": "Establish effective regulatory mechanisms for promoting development of legal migration and preventing irregular migration and trafficking in human beings", - "values": [ - "Migrants", - "Trafficking" - ] - }, - { - "text": "Continue current efforts to ratify the International Covenant on Economic, Social and Cultural Rights (ICESCR) as well as the International Convention on the Elimination of All Forms of Racial Discrimination (ICERD) as soon as possible ", - "values": [ - "ESC rights - general", - "International instruments", - "Racial discrimination" - ] - }, - { - "text": "Continue with the development and implementation of concrete measures to strengthen the participation of women and young people in decision-making and representation, as well as measures to eliminate gender-based violence and other forms of discrimination", - "values": [ - "Women's rights" - ] - }, - { - "text": "Introduce an official moratorium on the death penalty and resubmit the proposals for a complete abolition of the death penalty to the new Parliament once established ", - "values": [ - "Death penalty" - ] - }, - { - "text": "Sign the International Convention on the Protection of the Rights of All Migrant Workers and Members of Their Families", - "values": [ - "International instruments", - "Labour", - "Migrants" - ] - }, - { - "text": "Investigate and prosecute all perpetrators of serious human rights abuses, especially acts of rape and sexual violence, regardless of their rank and affiliation", - "values": [ - "Human rights violations by state agents", - "Rights of the Child", - "Women's rights" - ] - }, - { - "text": "Strengthen the National Human Rights Commission and the national commission to combat gender-based violence, and the capacities needed to secure advancement in the field of human rights, particularly in the area of human rights of women as well as to increase efforts in order to ban such practices as female genital mutilation", - "values": [ - "National Human Rights Institution", - "Rights of the Child", - "Torture and other CID treatment", - "Women's rights" - ] - }, - { - "text": "Improve children's access to education ", - "values": [ - "Right to education", - "Rights of the Child" - ] - }, - { - "text": "Strengthen its efforts to include women in decision-making processes and high level positions, and to ensure the inclusion of disabled persons in education and employment", - "values": [ - "Disabilities", - "Labour", - "Right to education", - "Women's rights" - ] - }, - { - "text": "Ratify the Protocol to Prevent, Suppress and Punish Trafficking in Persons, Especially Women and Children (the Palermo Protocol)", - "values": [ - "International instruments", - "Rights of the Child", - "Trafficking" - ] - }, - { - "text": "Take the necessary measures so that persons below 18, being under arrest, would not be subject to corporal punishment or other forms of ill-treatment", - "values": [ - "Rights of the Child", - "Torture and other CID treatment" - ] - }, - { - "text": "Take measures to prevent the criminal behaviour of its military and police units assigned in peacekeeping missions, responsible for acts of sexual violence, and enforce the respect for international and human rights law among its peacekeeping units", - "values": [ - "Human rights violations by state agents", - "International humanitarian law", - "International instruments" - ] - }, - { - "text": "Provide protection for elected officials, for members of the opposition and all persons that criticize State institutions against arbitrary detention and ensure that any cases of aggression against them are investigated", - "values": [ - "Detention", - "Freedom of opinion and expression" - ] - }, - { - "text": "Ratify, in particular, ICCPR", - "values": [ - "CP rights - general", - "International instruments" - ] - }, - { - "text": "Implement seriously and immediately the recommendations of the UPR", - "values": [ - "UPR process" - ] - }, - { - "text": "Strengthen efforts to protect its most vulnerable populations, in accordance with obligations under the Convention on the Elimination of All Forms of Discrimination against Women and under the Convention on the Rights of the Child, and adopt specific legislation and programmes targeting gender-based violence, including marital rape", - "values": [ - "International instruments", - "Rights of the Child", - "Women's rights" - ] - }, - { - "text": "Continue with positive actions and programs aimed at guaranteeing universal education and health services of quality to its people as well as those aimed at reducing poverty ", - "values": [ - "Poverty", - "Right to education", - "Right to health" - ] - }, - { - "text": "Ensure that legal advice services are available inside the asylum-seeker and irregular migrant closed detention centres ", - "values": [ - "Asylum-seekers - refugees", - "Migrants" - ] - }, - { - "text": "Extend and implement a standing invitation to human rights special procedures", - "values": [ - "Special procedures" - ] - }, - { - "text": "Stop bombing its own civilian population, including with the use of barrel bombs, chemical weapons and incendiary bombs contrary to international humanitarian law", - "values": [ - "International humanitarian law" - ] - }, - { - "text": "Continue the efforts aimed at holding free, credible and transparent elections, by adopting an inclusive approach bringing together all sectors of Malian society ", - "values": [ - "Elections" - ] - }, - { - "text": "Adopt all necessary political and legislative measures to decriminalize consensual same-sex sexual relations between adults", - "values": [ - "Sexual Orientation and Gender Identity" - ] - }, - { - "text": "Ratify the Optional Protocol to the Convention against Torture and other Cruel, Inhuman or Degrading Treatment", - "values": [ - "Detention", - "International instruments", - "Torture and other CID treatment" - ] - }, - { - "text": "Allow for a more open expression of individual opinions, allow civil society organisations to develop and allow public expression of popular demands", - "values": [ - "Civil society", - "Freedom of opinion and expression" - ] - }, - { - "text": "Intensify efforts to present the cases in court in order to clarify, provide for reparations and punish those responsible ", - "values": [ - "Justice" - ] - }, - { - "text": "Continue measures for the implementation of effective migration policies ", - "values": [ - "Migrants" - ] - }, - { - "text": "Allow migrant domestic workers full access to legal remedies in case of abuse and duly investigate all cases of abuse and bring perpetrators to justice. take effective steps to protect migrant workers from attacks from militia groups, ensure that the pre-departure training centres are operated to meet the basic needs of the workers and do not encourage any form of abuse", - "values": [ - "Justice", - "Labour", - "Migrants" - ] - }, - { - "text": "Guaranteeing the freedom of expression, association and assembly by allowing human rights defenders, political opponents and journalists to express freely their views in line with international human rights law ", - "values": [ - "Freedom of association and peaceful assembly", - "Freedom of opinion and expression", - "Freedom of the press", - "Human rights defenders", - "International instruments" - ] - }, - { - "text": "Let the legislative power complete the process of the adoption of the draft law on the National Mechanism for the Prevention of Torture", - "values": [ - "Detention", - "Torture and other CID treatment" - ] - }, - { - "text": "Accede to the Optional Protocol to Convention on the Elimination of All Forms of Discrimination against Women", - "values": [ - "International instruments", - "Women's rights" - ] - }, - { - "text": "Redouble efforts to implement the National Plan of Action on the Management of Asylum and Migration ", - "values": [ - "Asylum-seekers - refugees", - "Migrants" - ] - }, - { - "text": "Take further steps to eliminate discrimination against the Roma population, especially in the field of health ", - "values": [ - "Minorities", - "Racial discrimination", - "Right to health" - ] - }, - { - "text": "Guarantee the right to food for its citizens on an equal basis and put an end to discriminatory food rationing as a tool to control and exert pressure on its people ", - "values": [ - "Right to food" - ] - }, - { - "text": "Become a party to both CRPD and its Optional Protocol and set a specific time frame for the ratification process ", - "values": [ - "Disabilities", - "International instruments" - ] - }, - { - "text": "Ratify the International Labour Organization Convention No. 169 (1989) concerning Indigenous and Tribal Peoples in Independent Countries ", - "values": [ - "Indigenous peoples", - "International instruments" - ] - }, - { - "text": "Ensure that persons with intellectual and psycho-social disabilities are informed about criminal proceedings and charges against them, and enjoy the right to a fair hearing, and to adequate and effective legal assistance ", - "values": [ - "Disabilities" - ] - }, - { - "text": "Take effective measures to curb racial hatred and religious intolerance, by strengthening its measures to prevent and combat xenophobia and racial prejudice among politicians, public officials and the general public ", - "values": [ - "Freedom of religion and belief", - "Human rights violations by state agents", - "Racial discrimination" - ] - }, - { - "text": "Give space to non-state media, and that make Criminal Code Articles 79, 88 and 258 more specific and consistent with international human rights obligations on freedom of expression ", - "values": [ - "Freedom of opinion and expression", - "Freedom of the press", - "International instruments" - ] - }, - { - "text": "Ratify the International Convention on the Rights of Migrant Workers and Members of Their Families (ICRMW), as previously recommended", - "values": [ - "International instruments", - "Labour", - "Migrants", - "UPR process" - ] - }, - { - "text": "Further continue its efforts in the field of protection and promotion of human rights ", - "values": [ - "General" - ] - }, - { - "text": "Focus on raising awareness among policy implementers about the rule of law for the purpose of ensuring the human rights of Iraqi citizens, combating corruption and restoring public trust in the Government", - "values": [ - "Corruption", - "Justice" - ] - }, - { - "text": "In the general framework of substantial respect for fundamental rights and the principles of democracy and the Constitution, ensure freedom of expression and peaceful assembly and protect the activities of human rights defenders, political activists and journalists", - "values": [ - "Freedom of association and peaceful assembly", - "Freedom of opinion and expression", - "Freedom of the press", - "Human rights defenders" - ] - }, - { - "text": "Redouble efforts in the area of wealth distribution and poverty eradication, including by allocating adequate human and financial resources and by providing support and material assistance to the most marginalized and disadvantaged groups in the country", - "values": [ - "Poverty" - ] - }, - { - "text": "Seriously address the issues of child pornography and human trafficking in girls and boys for sexual purposes, including by encouraging police and border forces to strengthen efforts at fighting these phenomena as well as seeking accountability where lack of state efforts at prosecution could amount to human rights violations ", - "values": [ - "Justice", - "Rights of the Child", - "Trafficking" - ] - }, - { - "text": "Take additional measures to combat violence related to racial discrimination", - "values": [ - "Racial discrimination" - ] - }, - { - "text": "Consider adopting a comprehensive strategy addressing all forms of discrimination, particularly on promoting the rights of women, girls, and children with disabilities, children living in rural areas, children living in poverty, refugee children and children born out of wedlock", - "values": [ - "Asylum-seekers - refugees", - "Disabilities", - "Poverty", - "Racial discrimination", - "Rights of the Child", - "Women's rights" - ] - }, - { - "text": "Continue to deploy efforts to increase equity and equality between men and women in public service, particularly with the establishment of the High State Council for Equality and move forward with measures and legislation for social integration of migrant workers", - "values": [ - "Labour", - "Migrants", - "Women's rights" - ] - }, - { - "text": "Take steps to halt all intimidations and harassment by law enforcement officials against human rights defenders", - "values": [ - "Human rights defenders", - "Human rights violations by state agents" - ] - }, - { - "text": "The State under review will involve civil society and national human rights institutions in consultation and socialization of the Universal Periodic Review procedure until its next Universal Periodic Review.", - "values": [ - "Civil society", - "National Human Rights Institution", - "UPR process" - ] - }, - { - "text": "Remove the discriminatory restrictions on access to the labour market for Palestinian refugees", - "values": [ - "Asylum-seekers - refugees", - "Labour" - ] - }, - { - "text": "Ratify the ILO Convention No. 155 on Occupational Safety and Health ", - "values": [ - "International instruments", - "Right to health" - ] - }, - { - "text": "Further consolidate its national human rights infrastructure, including support to the Commission on Human Rights ", - "values": [ - "National Human Rights Institution" - ] - }, - { - "text": "Implement further measures to close the gender pay gap", - "values": [ - "Women's rights" - ] - }, - { - "text": "Provide by law unobstructed access to legal counsel throughout all phases of criminal investigation, trial and appeal, ensure the accused is informed of this right immediately upon arrest, and give defendants and their lawyers unrestricted access to the full case file and all evidence against the accused", - "values": [ - "Detention", - "Justice" - ] - }, - { - "text": "Speed up the study on the possibility of ratifying the Optional Protocol to the Convention against Torture", - "values": [ - "Detention", - "International instruments", - "Torture and other CID treatment" - ] - }, - { - "text": "Continue further on its effort to establish synergy between different institutions in the country ", - "values": [ - "Other" - ] - }, - { - "text": "Consider taking all necessary measures to eliminate violence and discrimination against women in all areas of public and private life", - "values": [ - "Women's rights" - ] - }, - { - "text": "Display greater firmness in preventing abuses of police custody, torture and ill-treatment and brings criminal proceedings against the perpetrators of such violations.", - "values": [ - "Detention", - "Torture and other CID treatment" - ] - }, - { - "text": "Improve the legal protection of migrant workers, apply the provisions of the labour laws that prohibit the retention of passports of migrant workers, strengthen institutional controls for the protection of migrant workers, and remove or amend the requirement for foreign nationals to obtain their sponsor's consent in order to obtain exit visas ", - "values": [ - "Labour", - "Migrants" - ] - }, - { - "text": "Further strengthen its efforts to review its legislative framework and make necessary adjustments to it in order to ensure that it is in conformity with Afghanistan's international human rights obligations ", - "values": [ - "International instruments" - ] - }, - { - "text": "Improve its social security system and provide necessary social protection to vulnerable groups", - "values": [ - "ESC rights - general" - ] - }, - { - "text": "Persevere in the strengthening of its aid to development, considered as fundamental, in particular the assistance and relief in case of natural disasters", - "values": [ - "Development", - "Environment", - "Technical assistance and cooperation" - ] - }, - { - "text": "Take necessary steps to ensure that individuals suspected of committing crimes under international law and other civil and human rights violations are thoroughly investigated and brought to justice", - "values": [ - "Justice" - ] - }, - { - "text": "Further strengthen the law reforms and policy aimed at protecting the people's rights and for the betterment of the poor and other disadvantaged groups ", - "values": [ - "Poverty" - ] - }, - { - "text": "Take steps to strengthen the right to a fair trial and improve prison conditions through adherence to: the Basic Principles on the Independence of the Judiciary and the Basic Principles on the Role of Lawyers, the International Covenant on Civil and Political Rights, and the Standard Minimum Rules on the Treatment of Prisoners ", - "values": [ - "Detention", - "International instruments", - "Justice" - ] - }, - { - "text": "Adopt a law to protect human rights defenders that includes special protection for vulnerable groups of defenders, including women defenders and those who express themselves through the Internet and social media", - "values": [ - "Human rights defenders", - "Women's rights" - ] - }, - { - "text": "Ratify the Convention against Discrimination in Education ", - "values": [ - "International instruments", - "Right to education" - ] - }, - { - "text": "Continue efforts to reduce poverty and limit disparities in education and income", - "values": [ - "Poverty", - "Right to education" - ] - }, - { - "text": "Retract the draft legislation on civil society organizations, which threatens their independence by enabling the Government to dissolve them without a court order or refuse to license new organizations on grounds, including "national unity"", - "values": [ - "Civil society", - "Freedom of association and peaceful assembly" - ] - }, - { - "text": "Review legislation which impacts on the exercise of the right to freedom of religion and belief, and review the implementation of this legislation, in order to ensure consistency with Kazakhstan's international human rights obligations", - "values": [ - "Freedom of religion and belief", - "International instruments" - ] - }, - { - "text": "Improve the functioning of the National Electoral Commission and Zanzibar Electoral Commission, ensuring their decision-making processes are fully transparent and impartial", - "values": [ - "Elections" - ] - }, - { - "text": "Continue building the social structure of the country, focusing on the promotion and protection of the family as the vital unit of the society", - "values": [ - "Other" - ] - }, - { - "text": "Improve the legal basis that would ensure respect for the privacy of individuals", - "values": [ - "Privacy" - ] - }, - { - "text": "Bring its legislation on rape in line with international law and abolish all references to the status of married couple ", - "values": [ - "Women's rights" - ] - }, - { - "text": "Take urgent measures to resolve the problem of overcrowding in the prisons of the country", - "values": [ - "Detention" - ] - }, - { - "text": "Establish a simple and accessible procedure of birth registration to guarantee that all children have access to it", - "values": [ - "Rights of the Child", - "Statelessness and the right to nationality" - ] - }, - { - "text": "Continue making efforts to reduce disparities in infant mortality rates between rural and urban areas in the country", - "values": [ - "Right to health", - "Rights of the Child" - ] - }, - { - "text": "Implement measures to protect the right to life and freedom of expression of human rights defenders, and ensure that the perpetrators of violence are brought to justice", - "values": [ - "Freedom of opinion and expression", - "Human rights defenders" - ] - }, - { - "text": "Investigate in a prompt, transparent and impartial manner allegations of violations of international law and human rights by armed and security forces and establish procedures for verification and oversight to ensure that perpetrators of grave violations are removed from these forces", - "values": [ - "Human rights violations by state agents", - "International humanitarian law" - ] - }, - { - "text": "Continue to adopt effective legislative measures to ensure women's security and rights, and strengthen the national mechanism on gender policies", - "values": [ - "Women's rights" - ] - }, - { - "text": "Make additional efforts to achieve the Millennium Development Goals ", - "values": [ - "Development" - ] - }, - { - "text": "Strengthen protection of ethnic minorities' religious, socio-economic and political rights, ensuring reports of violations are promptly and transparently investigated", - "values": [ - "CP rights - general", - "ESC rights - general", - "Freedom of religion and belief", - "Minorities" - ] - }, - { - "text": "Urgently submit the overdue reports to treaty bodies ", - "values": [ - "Treaty bodies" - ] - }, - { - "text": "Continue to make every effort to ensure full cooperation with the International Criminal Tribunal for the Former Yugoslavia", - "values": [ - "Justice" - ] - }, - { - "text": "Strengthen cooperation with OHCHR with a view to building capacity in the area of human rights.", - "values": [ - "Technical assistance and cooperation" - ] - }, - { - "text": "Continue towards providing safe drinking water in the inhabited areas", - "values": [ - "Right to water and sanitation" - ] - }, - { - "text": "Take further steps to ensure the conditions in detention centres and prisons meet domestic and international standards, and implement measures to reduce prolonged pretrial detention ", - "values": [ - "Detention" - ] - }, - { - "text": "Promote human rights education and training in all types of education, as well as for public officials in order to generate a greater understanding about human rights and help cultivate a human rights culture within the society", - "values": [ - "Human rights education and training" - ] - }, - { - "text": "Make all possible efforts to prevent the spread of HIV-AIDS, and request technical and financial assistance from the United Nations and the relevant international organizations, including the World Health Organization, in order to achieve this goal and overcome this obstacle ", - "values": [ - "HIV - Aids", - "Technical assistance and cooperation" - ] - }, - { - "text": "Continue more budget allocation in the health sector", - "values": [ - "Right to health" - ] - }, - { - "text": "Continue implementing the recommendations of the BICI ", - "values": [ - "Justice" - ] - }, - { - "text": "Reconsider, in the same spirit of openness, the possibility of ratifying the International Convention on the Protection of the Rights of All Migrant Workers and Members of Their Families, in accordance with paragraph 12.1 of recommendation no. 1737 of 17 March 2006 of the Parliamentary Assembly of the Council of Europe, of which Spain is an active member ", - "values": [ - "International instruments", - "Labour", - "Migrants" - ] - }, - { - "text": "Continue to work to combat poverty", - "values": [ - "Poverty" - ] - }, - { - "text": "Prevent deaths in custody and punish those responsible for such deaths", - "values": [ - "Detention", - "Extrajudicial executions" - ] - }, - { - "text": "Establish a national human rights institution accredited by the International Coordinating Committee for the promotion and protection of human rights ", - "values": [ - "National Human Rights Institution" - ] - }, - { - "text": "Ratify the Rome Statute of the ICC to be a front runner again within ASEAN ", - "values": [ - "International instruments", - "Justice" - ] - }, - { - "text": "Take effective measures to combat persisting hostile attitudes and discrimination towards the Roma, Kurds and persons belonging to non-Muslim minorities ", - "values": [ - "Minorities" - ] - }, - { - "text": "Take appropriate measures to prevent land grabbing and illegal logging and ensure that future actions are based on a respect for fundamental human rights and environmental protection", - "values": [ - "Environment", - "Right to land" - ] - }, - { - "text": "Step up efforts towards improvement of living conditions of the prison population", - "values": [ - "Detention" - ] - }, - { - "text": "Ensure equal protection against all forms of discrimination, including on the basis of age, religion, sexual orientation and gender identity", - "values": [ - "Freedom of religion and belief", - "Sexual Orientation and Gender Identity" - ] - }, - { - "text": "Take urgent steps toward the full and prompt implementation of the recommendations of the Committee against Torture.", - "values": [ - "Torture and other CID treatment", - "Treaty bodies" - ] - }, - { - "text": "Implement various awareness-raising programmes, with a special emphasis on programmes for children", - "values": [ - "Rights of the Child" - ] - }, - { - "text": "If the military involvement in combating organized crimes is necessary, the expanded role of the military must be counterbalanced by measures to reinforce the protection of human rights ", - "values": [ - "Justice" - ] - }, - { - "text": "(1) Completing the policy-formulation process in conjunction with the indigenous authorities (2) Entrenching prior consultation procedures in accordance with the most recent constitutional jurisprudence. (3) Improving the communication channels established between the Government and the ethnic authorities,16 and relations at all levels. (4) Strengthening the indigenous and Afro-Colombian authorities. (5) Ensuring that the indigenous and Afro-Colombian communities really do have a right to land. (6) Combating the poverty that affects the indigenous and Afro-Colombian communities. (7) Defining mechanisms for coordination between the ordinary and indigenous court systems.", - "values": [ - "Indigenous peoples", - "Minorities", - "Poverty", - "Right to land" - ] - }, - { - "text": "Continue commitment against all forms of violence against women, particularly sexual violence, female genital mutilations and forced marriage", - "values": [ - "Rights of the Child", - "Torture and other CID treatment", - "Women's rights" - ] - }, - { - "text": "Promote gender equality by taking specific measures in this direction in the field of employment, in particular by considering setting up a procedure to receive and process allegations of individual discrimination.", - "values": [ - "Women's rights" - ] - }, - { - "text": "Increase funding for NGOs to provide sustainable care to trafficking victims", - "values": [ - "Civil society", - "Trafficking" - ] - }, - { - "text": "Sign or ratify the following international conventions: OP-CAT and CED ", - "values": [ - "Detention", - "Enforced disappearances", - "International instruments", - "Torture and other CID treatment" - ] - }, - { - "text": "Re-establish constitutional order by supporting the current political process, the transitional institutions and the enforcement mechanisms, and support the implementation of the Libreville agreements and the N'Djamena roadmap", - "values": [ - "Justice" - ] - }, - { - "text": "Take all necessary measures to promote the rights of women and to effectively combat domestic violence", - "values": [ - "Rights of the Child", - "Women's rights" - ] - }, - { - "text": "Continue to strengthen its policies and programmes to increase access to quality education ", - "values": [ - "Right to education" - ] - }, - { - "text": "Continue its efforts to improve education in the country, to enhance the number of girls enrolled in pre-primary and primary education and to ensure a compulsory and free education", - "values": [ - "Right to education", - "Women's rights" - ] - }, - { - "text": "Ratify all of the most significant international human rights instruments, in particular the International Covenant on Civil and Political Rights.", - "values": [ - "CP rights - general", - "International instruments" - ] - }, - { - "text": "Finalize the process of accession to the Convention on the Rights of Persons with Disabilities at its earliest", - "values": [ - "Disabilities", - "International instruments" - ] - }, - { - "text": "Halt relocations of families to uninhabitable sites and consider evictions as a last recourse, as was requested by the Secretary-General ", - "values": [ - "Right to housing" - ] - }, - { - "text": "Continue its cooperation with the United Nations and other international organizations", - "values": [ - "Technical assistance and cooperation" - ] - }, - { - "text": "Improve the social security system and make it easily accessible.", - "values": [ - "ESC rights - general" - ] - }, - { - "text": "Consolidate the Federal National System, including by supporting States to set up Local Preventive Mechanisms", - "values": [ - "Torture and other CID treatment" - ] - }, - { - "text": "That the United Nations Declaration on the Rights of Indigenous People be used as a guide to interpret the State obligations under the Convention relating to indigenous peoples ", - "values": [ - "Indigenous peoples", - "International instruments" - ] - }, - { - "text": "Fully criminalize domestic violence against women and children, including marital rape, and ensure that such acts are tried by criminal courts as opposed to a family tribunal", - "values": [ - "Rights of the Child", - "Women's rights" - ] - }, - { - "text": "Increase action to tackle violations of religious freedom especially, but not only, against members of religious minorities", - "values": [ - "Freedom of religion and belief", - "Minorities" - ] - }, - { - "text": "Endeavour to sustain its Senior Citizens Activity Centre to enable youth to learn from the experience of the elderly ", - "values": [ - "Other" - ] - }, - { - "text": "Draw up a National Plan for Equal Opportunities and Rights and implement the Plan for Access to Justice and Legal Protection for Persons with Disabilities", - "values": [ - "Disabilities", - "Justice" - ] - }, - { - "text": "Implement the necessary measures to fulfil CRPD so there may be full realization of the rights of this important segment of the population ", - "values": [ - "Disabilities", - "International instruments" - ] - }, - { - "text": "Cooperate further with the Special Procedures and with all the human rights mechanisms ", - "values": [ - "Special procedures" - ] - }, - { - "text": "Concentrate on the poorest and most vulnerable ", - "values": [ - "Poverty" - ] - }, - { - "text": "Redouble its efforts to improve the enforcement of the minimum legal age for marriage, and remove discrimination based on gender in this respect", - "values": [ - "Rights of the Child", - "Women's rights" - ] - }, - { - "text": "Take further steps to solve the problem of overcrowding in prisons and to ensure legal responsibility for the spread of racial and religious intolerance through the press ", - "values": [ - "Detention", - "Freedom of religion and belief" - ] - }, - { - "text": "Enhance ongoing efforts to strengthen the protection of foreign workers, so as to ensure the continuous improvement of working and housing conditions while continuously monitoring labour law violations ", - "values": [ - "Labour", - "Migrants", - "Right to housing" - ] - }, - { - "text": "Take all measures to guarantee freedoms of expression and association.", - "values": [ - "Freedom of association and peaceful assembly", - "Freedom of opinion and expression" - ] - }, - { - "text": "Make sincere efforts to build up levels of confidence and reconciliation among religious groups through dialogue between religious leaders", - "values": [ - "Freedom of religion and belief" - ] - }, - { - "text": "Adopt a national action plan for business and human rights, building on the Guiding Principles on Business and Human Rights", - "values": [ - "Business and human rights" - ] - }, - { - "text": "Continue current efforts to increase the literacy rate and promote universal access to education", - "values": [ - "Right to education" - ] - }, - { - "text": "Continue efforts to combat gender stereotyping and gender inequality across the board and work towards empowerment of women in all spheres of society, including addressing sexual harassment in the work place", - "values": [ - "Women's rights" - ] - }, - { - "text": "Continue its socio-economic programmes, reforms and initiatives with a view to enhancing the protection and promotion of fundamental human rights and freedoms", - "values": [ - "ESC rights - general" - ] - }, - { - "text": "Continue its efforts in the protection of children, including through the finalization of its Children's Bill aimed at consolidating the various legislation on children's rights and harmonizing all laws in line with the Convention on the Rights of the Child", - "values": [ - "International instruments", - "Rights of the Child" - ] - }, - { - "text": "Although the RMI is committed to implementing the Special Rapporteur's recommendations, inadequate resources have been an impediment in effective implementation.", - "values": [ - "Special procedures" - ] - }, - { - "text": "Sign and ratify the United Nations Convention on the Rights of Persons with Disabilities.", - "values": [ - "Disabilities", - "International instruments" - ] - }, - { - "text": "Back efforts to counter child malnutrition and continue to strengthen programmes to eradicate poverty and extreme poverty", - "values": [ - "Poverty", - "Right to food", - "Rights of the Child" - ] - }, - { - "text": "Reform the Law on Public Associations to bring it in line with its obligations under the ICCPR, including by simplifying the legal and procedural requirements for registration by civil society organizations and minimizing reporting obligations to authorities ", - "values": [ - "Civil society", - "Freedom of association and peaceful assembly", - "International instruments" - ] - }, - { - "text": "Ensure that adequate resources are invested for the effective implementation of the National Human Rights Action Plan 2017-2021, in particular at the provincial level", - "values": [ - "General" - ] - }, - { - "text": "Continue working for the full realization of the human right to water and sanitation", - "values": [ - "Right to water and sanitation" - ] - }, - { - "text": "Provide comprehensive protection for women exposed to violence", - "values": [ - "Women's rights" - ] - }, - { - "text": "Seek to continue to provide satisfactory conditions of operation to the United Nations aid agencies working in the country ", - "values": [ - "Other" - ] - }, - { - "text": "Legally prohibit female genital mutilation, in accordance with international standards and in line with the recommendations contained in paragraph 21 of the 2009 CEDAW report", - "values": [ - "Rights of the Child", - "Torture and other CID treatment", - "Treaty bodies", - "Women's rights" - ] - }, - { - "text": "Take further steps to ensure the implementation of the Declaration on the Rights of Indigenous Peoples ", - "values": [ - "Indigenous peoples", - "International instruments" - ] - }, - { - "text": "Accede to the Optional Protocol to the Convention on the Rights of the Child on the involvement of children in armed conflict", - "values": [ - "International humanitarian law", - "International instruments", - "Rights of the Child" - ] - }, - { - "text": "Introduce a definition of torture in its Penal Code that covers all of the elements contained in article 1 of the Convention against Torture ", - "values": [ - "International instruments", - "Torture and other CID treatment" - ] - }, - { - "text": "Adopt the draft gender equality act", - "values": [ - "Women's rights" - ] - }, - { - "text": "Make further efforts to promote gender equality and protect all women and girls from all forms of violence", - "values": [ - "Rights of the Child", - "Women's rights" - ] - }, - { - "text": "Expand the scope of the compulsory course on family life education to provide a comprehensive and age-appropriate education on sexual and reproductive health and rights and to ensure unimpeded access to sexual and reproductive health services, including to safe and legal abortions", - "values": [ - "Right to health", - "Women's rights" - ] - }, - { - "text": "Provide adequate training for inspectors and officers-in-charge to tackle child poverty and child labour, and ensure that special needs of children are addressed", - "values": [ - "Human rights education and training", - "Labour", - "Poverty", - "Rights of the Child" - ] - }, - { - "text": "Investigate and publish the findings on the State's participation in the rendition and secret detention programmes of CIA, in particularly, on the presumed existence of secret detention centres on the national territory ", - "values": [ - "Counter-terrorism", - "Detention" - ] - }, - { - "text": "Provide victims of torture with adequate reparation in accordance with international human rights obligations", - "values": [ - "International instruments", - "Torture and other CID treatment" - ] - }, - { - "text": "Ratify the international instruments to which it is not yet a party ", - "values": [ - "International instruments" - ] - }, - { - "text": "Continue to develop measures that guarantee inclusive education for children and girls with disabilities without discrimination, with particular emphasis on rural areas", - "values": [ - "Disabilities", - "Right to education", - "Rights of the Child", - "Women's rights" - ] - }, - { - "text": "Work to ensure that constitutional guarantees of the inviolability of freedom of thought, conscience and religions are carried out for all", - "values": [ - "Freedom of religion and belief" - ] - }, - { - "text": "Consider the establishment of a national human rights institution.", - "values": [ - "National Human Rights Institution" - ] - }, - { - "text": "Ensure effective registration of all children born in the country, regardless of their ethnic origin and without any discrimination, in accordance with Article 7 of the Convention on the Rights of the Child", - "values": [ - "International instruments", - "Minorities", - "Racial discrimination", - "Rights of the Child" - ] - }, - { - "text": "Consider favourably the request for visits also by other mandate holders, including the United Nations Special Rapporteur on the promotion and protection of the right to freedom of opinion and expression ", - "values": [ - "Freedom of opinion and expression", - "Special procedures" - ] - }, - { - "text": "Enhance the law on the freedom of the media and promulgate laws on the freedom of expression", - "values": [ - "Freedom of opinion and expression", - "Freedom of the press" - ] - }, - { - "text": "Respect the human rights of the Rohingya Muslims and other minorities in Myanmar in accordance with Human Rights Council resolution 22/95 of April 2015", - "values": [ - "Freedom of religion and belief", - "Minorities" - ] - }, - { - "text": "Establish an effective and inclusive process that includes independent non-governmental organizations, not funded by Governments, to follow up on the recommendations resulting from the present review", - "values": [ - "Civil society", - "UPR process" - ] - }, - { - "text": "Take measures to change social and cultural attitudes that are the root cause of most forms of violence against women", - "values": [ - "Women's rights" - ] - }, - { - "text": "Take measures to ensure that all the legislation, especially on press and media, including digital media, is fully aligned with its international human rights obligations", - "values": [ - "Freedom of the press", - "International instruments" - ] - }, - { - "text": "Strengthen national legislation to combat domestic violence, child prostitution, trafficking and child labour", - "values": [ - "Labour", - "Rights of the Child", - "Trafficking", - "Women's rights" - ] - }, - { - "text": "Ratify the Second Optional Protocol to the International Covenant on Civil and Political Rights, aiming at the abolition of the death penalty (ICCPR- OP2)", - "values": [ - "Death penalty", - "International instruments" - ] - }, - { - "text": "Make available to the Human Rights Council, as an example of sharing best practices, some of its initiatives relating to combating racism and xenophobia as well as promoting tolerance and coexistence among ethnic and religious minorities.", - "values": [ - "Freedom of religion and belief", - "Minorities", - "Racial discrimination" - ] - }, - { - "text": "Continue to take steps to gradually bridge the gap in the standard of living between urban and rural areas ", - "values": [ - "Development" - ] - }, - { - "text": "Establish effective and impartial procedures to ensure that the armed forces and the police do not recruit persons under the age of 18 ", - "values": [ - "Rights of the Child" - ] - }, - { - "text": "Strengthen efforts to prevent child marriage, including by combating stereotypes through diversified awareness-raising campaigns", - "values": [ - "Human rights education and training", - "Rights of the Child" - ] - }, - { - "text": "Review criminal and civil justice procedures in order to improve the efficiency of the judiciary with a view to significantly reducing the backlog before the courts, and the time taken for cases to be continued, before its next Universal Periodic Review", - "values": [ - "Justice", - "UPR process" - ] - }, - { - "text": "Continue its efforts to eradicate child sex tourism including through strengthening the relevant penal legislative frameworks", - "values": [ - "Rights of the Child" - ] - }, - { - "text": "Consider creating an independent national human rights institution that operates in accordance with the Paris Principles ", - "values": [ - "National Human Rights Institution" - ] - }, - { - "text": "Invite the Special Rapporteur on the situation of human rights in Belarus to visit the country to demonstrate the Government's commitment to respecting human rights", - "values": [ - "Special procedures" - ] - }, - { - "text": "Strengthen its national child protection system and ensure its full implementation - intensify its efforts to raise public awareness against trafficking in children for sexual exploitation and forced labour within its National Strategy for the Fight against Trafficking in Human Beings as well as other policies and programmes - and adopt appropriate rehabilitation and reintegration mechanisms for the victims ", - "values": [ - "Human rights education and training", - "Rights of the Child" - ] - }, - { - "text": "Continue to adopt legislative and executive measures against gender based violence, with special attention to migrants", - "values": [ - "Migrants", - "Women's rights" - ] - }, - { - "text": "Respect the rights of unions, especially by refraining from arrest and arbitrary detention of, physical violence against and harassment of union representatives and from preventing union action", - "values": [ - "Detention", - "Labour" - ] - }, - { - "text": "Continue the implementation of laws to combat violence and discrimination against women", - "values": [ - "Women's rights" - ] - }, - { - "text": "Recommended analysing the possibility of ratifying human rights instruments which are considered relevant in strengthening its promotion and protection, highlighting: ICCPR, International Convention for the Protection of All Persons Against Enforced Disappearances, and assess the possibility of accepting the competency of the Committee on Enforced Disappearances in accordance with the Convention, and the Protocol to Prevent, Suppress and Punish Trafficking in Persons, especially Women and Children, supplementing the Convention against Transnational Organised Crime", - "values": [ - "International instruments" - ] - }, - { - "text": "Ensure continuous progress in the area of the right to education, including the inclusion of human rights education in the curriculum ", - "values": [ - "Human rights education and training", - "Right to education" - ] - }, - { - "text": "Provision of support for the implementation of the Ten-Year Justice Development Programme (PRODEJ) and other programmes for the promotion and protection of human rights", - "values": [ - "Justice" - ] - }, - { - "text": "Guarantee freedom of assembly and association, including by protecting protestors from ill-treatment and by investigating allegations of abuse by officials promptly, thoroughly and independently", - "values": [ - "Freedom of association and peaceful assembly", - "Human rights violations by state agents", - "Torture and other CID treatment" - ] - }, - { - "text": "Increase its efforts in protecting the human rights of the poor and the disadvantaged, particularly women and children", - "values": [ - "Poverty", - "Rights of the Child", - "Women's rights" - ] - }, - { - "text": "Continue the process of establishing a national human rights institution ", - "values": [ - "National Human Rights Institution" - ] - }, - { - "text": "Improve the situation for and empower women and girls, by creating a more non-discriminatory environment, ensuring equal representation and the right to education, as well as addressing issues such as gender-based violence, including honour crimes, FGM and child marriage", - "values": [ - "Right to education", - "Rights of the Child", - "Torture and other CID treatment", - "Women's rights" - ] - }, - { - "text": "Identify its needs in terms of technical and financial assistance to improve prison conditions and consequently seek assistance from relevant international institutions and programmes competent in this area ", - "values": [ - "Detention", - "Technical assistance and cooperation" - ] - }, - { - "text": "Implement the outstanding recommendations contained in the December 2011 report of the Working Group on Enforced or Involuntary Disappearances", - "values": [ - "Enforced disappearances", - "Special procedures" - ] - }, - { - "text": "Continue to further enhance access to education and health services in rural areas", - "values": [ - "Right to education", - "Right to health" - ] - }, - { - "text": "Further strengthen the work of national councils for equality to promote inclusive society", - "values": [ - "Civil society", - "General" - ] - }, - { - "text": "Continue strengthening the freedom of the media and the rights of media workers", - "values": [ - "Freedom of the press" - ] - }, - { - "text": "Take additional measures to reform the justice system and enable women to accede to judicial positions.", - "values": [ - "Justice", - "Women's rights" - ] - }, - { - "text": "Endeavour to implement the remaining recommendations of the previous UPR review ", - "values": [ - "UPR process" - ] - }, - { - "text": "Continue efforts to combat discrimination against women and eliminate all forms of violence against them, in particular domestic violence", - "values": [ - "Rights of the Child", - "Women's rights" - ] - }, - { - "text": "Encourage Tunisia to work closely with international human rights bodies particularly with relation to the follow-up of UPR recommendations.", - "values": [ - "UPR process" - ] - }, - { - "text": "Take further measures and strengthen its legislation to prevent and punish all forms of violence against women and girls", - "values": [ - "Rights of the Child", - "Women's rights" - ] - }, - { - "text": "Work towards taking measures in relation to the psychological and physical impact of domestic violence on children.", - "values": [ - "Rights of the Child" - ] - }, - { - "text": "Remove legislative and other regulations which limit the legitimate exercise of the rights to freedom of expression, association and assembly and ensure that legislation is in accordance with the Russian Federation's commitments and obligations under international law ", - "values": [ - "Freedom of association and peaceful assembly", - "Freedom of opinion and expression", - "International instruments" - ] - }, - { - "text": "Continue to seek assistance to build enough capacity to develop appropriate human rights indices", - "values": [ - "Technical assistance and cooperation" - ] - }, - { - "text": "Take measures to punish reported cases of abuses by national security forces.", - "values": [ - "Human rights violations by state agents" - ] - }, - { - "text": "Establish without further delay shelters to protect women and girls from violence and effectively implement the legislation already adopted", - "values": [ - "Rights of the Child", - "Women's rights" - ] - }, - { - "text": "Consider ratifying those international human rights instruments to which it is not yet a party, among them the International Convention on the Protection of the Rights of All Migrant Workers and Members of Their Families", - "values": [ - "International instruments", - "Labour", - "Migrants" - ] - }, - { - "text": "Promote concrete action to combat inequality and guarantee the participation of women in social, cultural, political and economic development through affirmative action programmes", - "values": [ - "Women's rights" - ] - }, - { - "text": "Take further steps to adopt special and concrete measures to ensure the adequate development and protection of the Sami people ", - "values": [ - "Indigenous peoples" - ] - }, - { - "text": "Accelerate the drafting of the new Statute of the CNDHC, in accordance with the Paris Principles", - "values": [ - "National Human Rights Institution" - ] - }, - { - "text": "Uphold the commitment as to the realization of the human rights to safe drinking water and sanitation", - "values": [ - "Right to water and sanitation" - ] - }, - { - "text": "Promote educational opportunities to all children in accordance with the Incheon Declaration on Education 2030", - "values": [ - "Right to education", - "Rights of the Child" - ] - }, - { - "text": "Continue the process of taking measures at the national level as well as the national dialogue under the guidance of its legitimate authorities as a means of a political solution to the situation in the country", - "values": [ - "General" - ] - }, - { - "text": "Respect international human rights obligations regarding the right to privacy when intercepting digital communications of individuals, collecting personal data or requiring disclosure of personal data from third parties", - "values": [ - "Privacy" - ] - }, - { - "text": "Take all measures necessary to eradicate gender violence, including the classification of femicide and its adequate penalization", - "values": [ - "Extrajudicial executions", - "Women's rights" - ] - }, - { - "text": "Improve hygiene conditions, nutrition and access to drinking water in schools", - "values": [ - "Right to food", - "Right to water and sanitation" - ] - }, - { - "text": "Adopt measures to combat cases of torture and ill-treatment in the detention centres ", - "values": [ - "Detention", - "Torture and other CID treatment" - ] - }, - { - "text": "Refrain from institutionalizing children with disabilities, and ensure sufficient alternative family- and community-based care options for children with disabilities", - "values": [ - "Disabilities", - "Rights of the Child" - ] - }, - { - "text": "Fully implement the proposals made by the National Task Force on Police Reforms ", - "values": [ - "Justice" - ] - }, - { - "text": "Ratify promptly the ILO Convention 169 ", - "values": [ - "Indigenous peoples", - "International instruments" - ] - }, - { - "text": "Strengthen the protection of people with disabilities, step up exchange of experience with other States in the field of protection of rights of children with disabilities", - "values": [ - "Disabilities", - "Rights of the Child", - "Technical assistance and cooperation" - ] - }, - { - "text": "Develop a programme on food security with a view to the realization of the universal human right to food", - "values": [ - "Right to food" - ] - }, - { - "text": "Follow through with a recommendation accepted by Saint Kitts and Nevis during its previous universal periodic review to ratify the Optional Protocol to the Convention on the Rights of the Child on children in armed conflict and the Optional Protocol to the Convention on the Rights of the Child on the sale of children, child prostitution and child pornography", - "values": [ - "International humanitarian law", - "International instruments", - "Rights of the Child", - "Trafficking", - "UPR process" - ] - }, - { - "text": "Adopt the draft National Policy on Children Protection", - "values": [ - "Rights of the Child" - ] - }, - { - "text": "Take necessary measures to end harmful traditional practices against women, sexual harassment in public and work places and domestic violence", - "values": [ - "Torture and other CID treatment", - "Women's rights" - ] - }, - { - "text": "Continue to strengthen educational policies.", - "values": [ - "Right to education" - ] - }, - { - "text": "Ensure that administrative detention is carried out in accordance with international human rights standards.", - "values": [ - "Detention", - "International instruments" - ] - }, - { - "text": "Continue implementing programmes aimed at guaranteeing quality education to all the population, with an emphasis on access, school enrolment and decreasing school drop outs", - "values": [ - "Right to education" - ] - }, - { - "text": "Implement its commitment under the first universal periodic review to ratify the Convention on the Rights of Persons with Disabilities, ensuring the rights and voices of people with a disability lead this process", - "values": [ - "Disabilities", - "International instruments", - "UPR process" - ] - }, - { - "text": "Pursue their efforts to reinforce legislative and institutional guarantees for human rights defenders and journalists exercising their right to freedom of expression and strengthen the fight against impunity in this regard", - "values": [ - "Freedom of opinion and expression", - "Freedom of the press", - "Human rights defenders", - "Impunity" - ] - }, - { - "text": "Continue the efforts to combat corruption in the framework of legislative, administrative and political reform programmes", - "values": [ - "Corruption" - ] - }, - { - "text": "Noting the responsibility to protect human rights defenders, develop a specific regulatory framework to ensure the security of journalists and civil society, and also of members of the political opposition. ", - "values": [ - "Civil society", - "Freedom of the press", - "Human rights defenders" - ] - }, - { - "text": "Ratify the Optional Protocol to the Convention on the Rights of the Child on the sale of children, child prostitution and child pornography and the Optional Protocol to the Convention on the Rights of the Child on the involvement of children in armed conflict ", - "values": [ - "International humanitarian law", - "International instruments", - "Rights of the Child", - "Trafficking" - ] - }, - { - "text": "Sign and ratify CED ", - "values": [ - "Enforced disappearances", - "International instruments" - ] - }, - { - "text": "Take further measures to address the issue of violence against children, including trafficking and sexual abuse ", - "values": [ - "Rights of the Child", - "Trafficking" - ] - }, - { - "text": "Continue implementing necessary measures to guarantee the safety of its citizens and to preserve the peaceful atmosphere and internal order and confidence in both the criminal justice system and the police system", - "values": [ - "Justice", - "Public security" - ] - }, - { - "text": "Consider inadmissible, the confessions obtained under torture or ill treatment and allow all detainees to prepare their defense and communicate with a lawyer of their choice", - "values": [ - "Detention", - "Torture and other CID treatment" - ] - }, - { - "text": "Continue to assess effectively the protection of the rights of the child, including child trafficking, the fight against child prostitution and pornography and child labour.", - "values": [ - "Labour", - "Rights of the Child", - "Trafficking" - ] - }, - { - "text": "That Abdulhadi Al Khawaja be transferred to the Danish authorities for medical treatment, in line with the agreement reached on March 14th", - "values": [ - "Human rights defenders" - ] - }, - { - "text": "Establish a moratorium on capital punishment, commuting such crimes to sentences of deprivation of liberty if not, to find a way to harmonize criminal and penal norms and laws with international human rights law", - "values": [ - "Death penalty", - "International instruments" - ] - }, - { - "text": "Ratify the ILO fundamental conventions on labour rights and social security and the UNESCO ones relating to corporal punishment", - "values": [ - "International instruments", - "Labour", - "Rights of the Child" - ] - }, - { - "text": "Comply with the rulings of the Inter-American Court of Human Rights, as established by article 23 of the Constitution ", - "values": [ - "Other" - ] - }, - { - "text": "Envisage the adoption of a national plan for the promotion of the rights of the child and call for international assistance to allow it implement such a plan", - "values": [ - "Rights of the Child", - "Technical assistance and cooperation" - ] - }, - { - "text": "Take immediate steps to make domestic violence - including psychological abuse - beatings - rape, including marital rape - and sexual assault -- a criminal offence ", - "values": [ - "Rights of the Child", - "Women's rights" - ] - }, - { - "text": "Including sexual orientation and gender identity in hate speech provisions, by making provisions in law for same-sex civil partnership or marriage, and by making arrangements for the relevant Polish authorities to provide Polish citizens wishing to marry or otherwise register a same-sex relationship abroad with all necessary documentation", - "values": [ - "Sexual Orientation and Gender Identity" - ] - }, - { - "text": "Make further efforts to overcome the difficult issue of discrimination on the grounds of religion, gender, race or otherwise ", - "values": [ - "Freedom of religion and belief", - "Racial discrimination", - "Women's rights" - ] - }, - { - "text": "Support the amendment of relevant provisions of the Labour Code, curb unwarranted intervention by security forces and end anti-union discriminatory practices", - "values": [ - "Labour" - ] - }, - { - "text": "Ensure the adoption of the legal aid system that is now in preparation, which should improve the protection of victims of discrimination and introduce broader legal advice options for people in need, as from 1 July 2018", - "values": [ - "Justice" - ] - }, - { - "text": "Identify cases of racism and xenophobia and combat them, as well as continue to foster intercultural understanding and tolerance ", - "values": [ - "Racial discrimination" - ] - }, - { - "text": "Ensure the primacy of fulfilling the right to education for all children, continue to dedicate more resources to eradicate illiteracy among children and adults, and improve the number of children completing their education", - "values": [ - "Right to education", - "Rights of the Child" - ] - }, - { - "text": "Launch public information campaigns and work with religious leaders to raise awareness of the legal rights for women and girls guaranteed in Afghanistan's Constitution, including the legal age for marriage.", - "values": [ - "Human rights education and training", - "Rights of the Child", - "Women's rights" - ] - }, - { - "text": "Continue programmes and measures aimed at eliminating poverty and increasing the socio-economic development of the country ", - "values": [ - "Development", - "Poverty" - ] - }, - { - "text": "Continue determinedly its effective measures to achieve the Millennium Development Goals, including the fight against poverty, male/female equality and access to education without discrimination", - "values": [ - "Development", - "Poverty", - "Right to education", - "Women's rights" - ] - }, - { - "text": "Publish the recommendations of the Leveson Inquiry on the establishment of a regulatory regime for ethical media ", - "values": [ - "Freedom of the press" - ] - }, - { - "text": "Intensify its efforts in combating and preventing trafficking in persons, especially women and children", - "values": [ - "Rights of the Child", - "Trafficking", - "Women's rights" - ] - }, - { - "text": "Continue to take further action to combat the prevalence of HIV-AIDS among children and discrimination against people living with HIV-AIDS by providing adequate treatment and information", - "values": [ - "HIV - Aids", - "Rights of the Child" - ] - }, - { - "text": "Take all necessary measures to provide effective birth registration ", - "values": [ - "Rights of the Child", - "Statelessness and the right to nationality" - ] - }, - { - "text": "Continue to provide adequate human and other resources to its anti-human trafficking programmes", - "values": [ - "Trafficking" - ] - }, - { - "text": "Continue to combat violence against women and implement a national awareness plan to for the elimination of cultural and traditional practices harmful to women, including female genital mutilation ", - "values": [ - "Rights of the Child", - "Torture and other CID treatment", - "Women's rights" - ] - }, - { - "text": "Ratify the Convention against Torture Other Cruel, Inhuman or Degrading Treatment or Punishment and its Optional Protocol, as well as the Optional Protocol to the International Covenant on Economic, Social and Cultural Rights", - "values": [ - "Detention", - "ESC rights - general", - "International instruments", - "Torture and other CID treatment" - ] - }, - { - "text": "Seek technical and financial assistance envisaged within the UPR framework for support of the implementation of recommendations which Somalia accepts as well as commitments made outside this review ", - "values": [ - "Technical assistance and cooperation", - "UPR process" - ] - }, - { - "text": "Consider the ratification of CPED and the International Convention on the Protection of the Rights of All Migrant Workers and Members of Their Families (ICRMW) ", - "values": [ - "International instruments", - "Labour", - "Migrants" - ] - }, - { - "text": "Continue taking legislative and law enforcement measures aimed at the harmonization of inter-ethnic relations ", - "values": [ - "Minorities" - ] - }, - { - "text": "Ratify and incorporate into domestic legislation the core human rights treaties, including CAT and CRC ", - "values": [ - "International instruments", - "Rights of the Child", - "Torture and other CID treatment" - ] - }, - { - "text": "Take the measures necessary to accelerate the enactment of the bill on sexual offenses and domestic violence", - "values": [ - "Rights of the Child", - "Women's rights" - ] - }, - { - "text": "Pay special attention to ensure that children of migrant background are not denied academic opportunities based primarily on their acquired proficiency in the German language", - "values": [ - "Migrants" - ] - }, - { - "text": "Continue to adhere to the stipulations of the Ouagadougou Agreement and to its commitment to support and start elections on 27 June 2010 ", - "values": [ - "Elections" - ] - }, - { - "text": "Make necessary amendments to the constitution to ensure full integration of all national minorities", - "values": [ - "Minorities" - ] - }, - { - "text": "Guarantee the protection of child rights and provide adequate juvenile justice facilities", - "values": [ - "Justice", - "Rights of the Child" - ] - }, - { - "text": "Ratify the Optional Protocol to the Convention against Torture.", - "values": [ - "Detention", - "International instruments", - "Torture and other CID treatment" - ] - }, - { - "text": "Prohibit by law corporal punishment against children in all settings and contexts, including in the home, and repeal all exceptions to its use", - "values": [ - "Rights of the Child", - "Torture and other CID treatment" - ] - }, - { - "text": "Continue to consolidate its education policies to improve the living conditions of its people, in particular of the neediest sectors of the population ", - "values": [ - "Right to education" - ] - }, - { - "text": "Strengthen measures taken at national level to ensure food security in the country ", - "values": [ - "Right to food" - ] - }, - { - "text": "Provide adequate resourcing to the Commission on Human Rights and allow it to investigate alleged extrajudicial killings", - "values": [ - "Extrajudicial executions", - "National Human Rights Institution" - ] - }, - { - "text": "Sign, ratify and implement ICCPR, ICESCR, ICERD, CAT and CRPD ", - "values": [ - "CP rights - general", - "Disabilities", - "ESC rights - general", - "International instruments", - "Racial discrimination", - "Torture and other CID treatment" - ] - }, - { - "text": "Establish a National Mechanism, as requested in the report of the Lessons Learnt and Reconciliation Commission, in order to shed light on the fate of all disappeared persons and detained persons and to cooperate with the ICRC and the Working Group on Enforced or Involuntary Disappearance", - "values": [ - "Detention", - "Enforced disappearances", - "Justice", - "Special procedures" - ] - }, - { - "text": "Take the necessary measures to effectively eliminate the worst forms of child labour", - "values": [ - "Labour", - "Rights of the Child" - ] - }, - { - "text": "Strengthen its cooperation with the mechanisms of the United Nations system as well as the financial institutions in order to take up the multiple challenges", - "values": [ - "Technical assistance and cooperation" - ] - }, - { - "text": "Enhance its efforts at the local level to better carry out the campaign against domestic violence ", - "values": [ - "Rights of the Child", - "Women's rights" - ] - }, - { - "text": "Promote the adoption of measures to combat discrimination against women and promote gender equality", - "values": [ - "Women's rights" - ] - }, - { - "text": "Undertake a review of the communications surveillance laws, policies and practices with a view to upholding the right to privacy in line with international human rights law", - "values": [ - "Privacy" - ] - }, - { - "text": "Consider ratifying ILO Convention 189", - "values": [ - "International instruments", - "Labour" - ] - }, - { - "text": "Issue an open and standing invitation to all special procedures", - "values": [ - "Special procedures" - ] - }, - { - "text": "Take appropriate legislative and regulatory measures to fight against discrimination and strengthen the protection and integration of persons with disabilities", - "values": [ - "Disabilities" - ] - }, - { - "text": "Continue its efforts to tackle human trafficking, especially of children, through the effective implementation of the recovery and reintegration programme for trafficked persons", - "values": [ - "Rights of the Child", - "Trafficking" - ] - }, - { - "text": "Withdraw its reservation to article 16 of CEDAW and introduce legislative reforms to give women equal rights in marriage, divorce, property relations, child custody and inheritance", - "values": [ - "International instruments", - "Women's rights" - ] - }, - { - "text": "Recommended the adoption of a moratorium leading to abolition of the death penalty.", - "values": [ - "Death penalty" - ] - }, - { - "text": "Improve conditions of detention", - "values": [ - "Detention" - ] - }, - { - "text": "Ratify the Convention against Torture and Other Cruel, Inhuman or Degrading Treatment or Punishment urgently and in accordance with its commitments from the 2012 universal periodic review", - "values": [ - "International instruments", - "Torture and other CID treatment", - "UPR process" - ] - }, - { - "text": "Study the possibility of ratifying the CRPD ", - "values": [ - "Disabilities", - "International instruments" - ] - }, - { - "text": "Create and maintain, in law and in practice, a safe and enabling environment in which human rights defenders and civil society can operate free from hindrance and insecurity, in accordance with Human Rights Council resolutions 22/6 and 27/31", - "values": [ - "Civil society", - "Human rights defenders" - ] - }, - { - "text": "Put in place a policy for the protection of children and adolescents, with a view to better protecting them against acts of violence and crimes committed against them, as well as in relation to the large number of early pregnancies", - "values": [ - "Rights of the Child", - "Torture and other CID treatment" - ] - }, - { - "text": "Address the negative impacts of unilateral economic measures and natural calamities that affect the country ", - "values": [ - "Other" - ] - }, - { - "text": "Consider the abolition of the criminalization of therapeutic abortion in accordance with the recommendations made by various treaty bodies", - "values": [ - "Rights of the Child", - "Treaty bodies", - "Women's rights" - ] - }, - { - "text": "Further strengthen its cooperation with the Special Rapporteur on Cambodia and consider inviting special procedures thematic mandate holders in order to benefit from their expertise ", - "values": [ - "Special procedures" - ] - }, - { - "text": "Make case law from Danish courts and administrative organs publicly available and free of charge", - "values": [ - "Justice" - ] - }, - { - "text": "Continue with actions aimed at safeguarding due process in all judicial instances", - "values": [ - "Justice" - ] - }, - { - "text": "Design and implement measures to allow the exercise of cultural and religious life of ethnic and religious minorities, such as the Rastafari and Garifuna, without obstacles or stigmatization", - "values": [ - "Freedom of religion and belief", - "Minorities" - ] - }, - { - "text": "Protect the human rights of all individuals, including LGBT individuals, and take appropriate steps to help ensure that protection is provided to the victim and perpetrators are identified and prosecuted ", - "values": [ - "Sexual Orientation and Gender Identity" - ] - }, - { - "text": "Further combat gender-based violence and violence linked with sorcery by strengthening, in partnership with civil society and relevant United Nations entities, the mechanism of application of the principle of responsibility", - "values": [ - "Technical assistance and cooperation", - "Women's rights" - ] - }, - { - "text": "Take concrete measures aimed at making responses from the judicial system to violations and resulting compensations quicker and more efficient ", - "values": [ - "Justice" - ] - }, - { - "text": "Consider legislation which prohibits all forms of violence against children, including corporal punishment, and which promotes alternative forms of discipline", - "values": [ - "Rights of the Child", - "Torture and other CID treatment" - ] - }, - { - "text": "Redouble efforts to eliminate inequalities between men and women regarding salary remuneration and participation in high-level employment positions", - "values": [ - "Labour", - "Women's rights" - ] - }, - { - "text": "Ensure the safe return of demobilized child soldiers to their families and ensure their access to education", - "values": [ - "International humanitarian law", - "Right to education", - "Rights of the Child" - ] - }, - { - "text": "Continue deploying its best efforts for the eradication of stereotypes, prejudices and negative attitudes of patriarchal, racial and gender-based nature", - "values": [ - "Racial discrimination", - "Women's rights" - ] - }, - { - "text": "Protect girls from early or forced marriages both in law and in practice", - "values": [ - "Rights of the Child", - "Women's rights" - ] - }, - { - "text": "Allow for the full independence and effective functioning of the judiciary, the Attorney General's office and the Ministry of Justice, without any interference of the military in judicial or political affairs ", - "values": [ - "Justice" - ] - }, - { - "text": "Implement the recommendation of the United Nations Special Rapporteur on the rights of indigenous peoples concerning the bill for the autonomous development of indigenous peoples and the restitution of lands to indigenous communities ", - "values": [ - "Indigenous peoples", - "Right to land", - "Special procedures" - ] - }, - { - "text": "Strengthen awareness and prevention measures to address violence against women", - "values": [ - "Human rights education and training", - "Women's rights" - ] - }, - { - "text": "Continue to take all necessary steps to ensure political stability and the creation of an environment conducive to the promotion and protection of human rights", - "values": [ - "Justice", - "Public security" - ] - }, - { - "text": "Implement legal safeguards to ensure protection of human rights defenders against abuse of provisions for criminal prosecution and release all prisoners of conscience", - "values": [ - "Detention", - "Freedom of religion and belief", - "Human rights defenders" - ] - }, - { - "text": "Protect the rights of minorities, in particular by providing access to basic services for the Roma minority, including the ability for stateless Roma to obtain Croatian nationality, in accordance with its human rights obligations", - "values": [ - "Minorities", - "Statelessness and the right to nationality" - ] - }, - { - "text": "Strengthen and closely monitor laws protecting girls and women from female genital mutilation through dedicated programmes and mechanisms", - "values": [ - "Rights of the Child", - "Torture and other CID treatment", - "Women's rights" - ] - }, - { - "text": "Adopt the necessary measures to inform women and girls about their rights related to access to sexual and reproductive health services, including the possibility of abortion, as established by domestic legislation", - "values": [ - "Right to health", - "Rights of the Child", - "Women's rights" - ] - }, - { - "text": "Continue its policies to combat violence against women and take further steps to promote their access to justice ", - "values": [ - "Justice", - "Women's rights" - ] - }, - { - "text": "Seek accreditation for the Office of the Ombudsman with the International Coordinating Committee of National Institutions for the Promotion and Protection of Human Rights", - "values": [ - "National Human Rights Institution" - ] - }, - { - "text": "Redouble on-going efforts to improve the quality of life of the most vulnerable groups, in particular indigenous peoples and people of African descent ", - "values": [ - "Indigenous peoples", - "Minorities" - ] - }, - { - "text": "Continue to work on the dissemination of the culture of human rights", - "values": [ - "Human rights education and training" - ] - }, - { - "text": "Continue its efforts in the domain of development aid, in particular in favour of the least developed countries ", - "values": [ - "Development" - ] - }, - { - "text": "Consider ways and means to ensure the right to education of children with disabilities, also in collaboration with the relevant international organizations and agencies", - "values": [ - "Disabilities", - "Right to education", - "Rights of the Child" - ] - }, - { - "text": "Take further steps to protect the rights of persons with disabilities and the rights of women and children, including through strengthening support services", - "values": [ - "Disabilities", - "Rights of the Child", - "Women's rights" - ] - }, - { - "text": "Cooperate with the United Nations and Human Rights Council mechanisms, particularly the Commission of Inquiry established by the Human Rights Council", - "values": [ - "Special procedures", - "Technical assistance and cooperation", - "Treaty bodies", - "UPR process" - ] - }, - { - "text": "Expedite the implementation of the Extended National Strategic Framework on HIV/AIDS that was adopted in 2014", - "values": [ - "HIV - Aids" - ] - }, - { - "text": "Prosecute and punish perpetrators of acts of torture in accordance with the law", - "values": [ - "Torture and other CID treatment" - ] - }, - { - "text": "Provide more opportunities for women to gain access to leading positions in both the political and economic spheres and strengthen funding and visibility of the national institutions that promote gender equality ", - "values": [ - "Women's rights" - ] - }, - { - "text": "Guarantee freedom of expression and assembly for all political parties, media and human rights defenders ", - "values": [ - "Freedom of association and peaceful assembly", - "Freedom of opinion and expression", - "Freedom of the press", - "Human rights defenders" - ] - }, - { - "text": "Ratify the conventions to which it is not yet a party", - "values": [ - "International instruments" - ] - }, - { - "text": "Continue to address the marginalization and exclusion of women in the economic, social and political spheres, with special attention paid to eliminating the harmful practice of child marriage", - "values": [ - "Rights of the Child", - "Women's rights" - ] - }, - { - "text": "Bring the minimum criminal age of responsibility and the minimum age for marriage into line with CRC, and ban any form of corporal punishment ", - "values": [ - "Rights of the Child", - "Torture and other CID treatment" - ] - }, - { - "text": "The ruling political party has committed to field at least 30 per cent women candidates at the next round of national elections in 2013.", - "values": [ - "Elections", - "Women's rights" - ] - }, - { - "text": "Strengthen the implementation of measures aimed at promoting and safeguarding gender equality", - "values": [ - "Women's rights" - ] - }, - { - "text": "Release all political prisoners", - "values": [ - "Detention", - "Freedom of opinion and expression" - ] - }, - { - "text": "Ratify the Rome Statute of the International Criminal Court (ICC) ", - "values": [ - "International instruments", - "Justice" - ] - }, - { - "text": "Continue the reform of the judicial system, to improve conditions of detention in prisons, and better separate civil and military jurisdictions", - "values": [ - "Detention", - "Justice" - ] - }, - { - "text": "Take the measures required to raise awareness among the population of the rights of persons with disabilities and to guarantee the effective exercise of their rights", - "values": [ - "Disabilities" - ] - }, - { - "text": "Adopt an action plan to implement the recommendations and voluntary commitments undertaken during its first Universal Periodic Review ", - "values": [ - "UPR process" - ] - }, - { - "text": "Consider stepping up efforts to achieve free and universal birth registration by, among other measures, harmonizing State and local Government entities' legislation pertaining to civil registration and eliminating remaining obstacles that prevent Roma women from registering births and obtaining birth certificates for their children", - "values": [ - "Minorities", - "Rights of the Child", - "Statelessness and the right to nationality", - "Women's rights" - ] - }, - { - "text": "Adopt the proposed national action plan for human rights", - "values": [ - "General" - ] - }, - { - "text": "Adhere to the Rome Statue of the International Criminal Court ", - "values": [ - "International instruments", - "Justice" - ] - }, - { - "text": "Ratify the Convention on the Elimination of the Worst Forms of Child Labour ILO Convention No. 182, CED, ICERD, CAT and its Optional Protocol, the ICRMW and CRPD", - "values": [ - "International instruments" - ] - }, - { - "text": "Amend the Law of Marriage Act of 1971 and increase the minimum marital age for girls, as well as prevent child, early and forced marriage", - "values": [ - "Rights of the Child" - ] - }, - { - "text": "Continue promoting, by all appropriate means, the independence and impartiality of the judiciary", - "values": [ - "Justice" - ] - }, - { - "text": "Revise the Constitution to add gender and disability as grounds for which no one may be discriminated", - "values": [ - "Disabilities" - ] - }, - { - "text": "Ensure the independence of the judicial system and ensure the rules of fair trial and the rights of the defence", - "values": [ - "Justice" - ] - }, - { - "text": "Provide greater support to the National Human Rights Commission to ensure its independence", - "values": [ - "National Human Rights Institution" - ] - }, - { - "text": "Repeal the amendment which requires NGOs that accept foreign funding to register and identify themselves as "foreign agents", as well as the amended definition of treason", - "values": [ - "Civil society", - "Freedom of association and peaceful assembly" - ] - }, - { - "text": "Continue its policies aimed at ensuring the enjoyment by all segments of society of their rights to food and social services", - "values": [ - "Right to food" - ] - }, - { - "text": "Continue with the policies promoting the human rights of vulnerable groups, in particular indigenous peoples, peasants and other persons working in rural areas", - "values": [ - "Indigenous peoples", - "Minorities" - ] - }, - { - "text": "Accede to the Rome Statute and adapt national legislation, including by incorporating provisions to rapidly and fully cooperate with the International Criminal Court", - "values": [ - "International instruments", - "Justice" - ] - }, - { - "text": "Abolish the death penalty and ratify ICCPR and its Second Optional Protocol ", - "values": [ - "Death penalty", - "International instruments" - ] - }, - { - "text": "Examine the possibility of joining the Convention on Migrant Workers and Members of Their Families", - "values": [ - "International instruments", - "Labour", - "Migrants" - ] - }, - { - "text": "Expand further the efforts and resources allocated to programmes devoted to promoting youth employment, particularly of young people with disabilities", - "values": [ - "Disabilities", - "Labour" - ] - }, - { - "text": "Ratify the Convention relating to the Status of Stateless Persons and the Convention on the Reduction of Statelessness ", - "values": [ - "International instruments", - "Statelessness and the right to nationality" - ] - }, - { - "text": "Make progress in harmonizing its legislation on the rights of women, non-discrimination and gender equality", - "values": [ - "Women's rights" - ] - }, - { - "text": "Put in place measures to protect refugees and asylum-seeking women and girls from economic and sexual exploitation, gender-based violence, including sexual abuse, as well as child and forced marriage and discrimination", - "values": [ - "Asylum-seekers - refugees", - "Rights of the Child", - "Women's rights" - ] - }, - { - "text": "Consider amending the Sexual Offences Act to include inter-marital rape in all circumstances", - "values": [ - "Women's rights" - ] - }, - { - "text": "Systematically condemn all manifestations of racism and xenophobia in political discourse and adopt effective measures to fight against this phenomenon ", - "values": [ - "Racial discrimination" - ] - }, - { - "text": "Reinstitute its suspension of implementation of the Sharia Penal Code. Conduct a comprehensive review of the new Penal Code in relation to obligations under international law ", - "values": [ - "Justice" - ] - }, - { - "text": "Continue measures to improve the education system and ensure universal access to quality education ", - "values": [ - "Right to education" - ] - }, - { - "text": "Ratify ILO Convention No. 189 on Decent Work for Domestic Workers ", - "values": [ - "International instruments", - "Labour" - ] - }, - { - "text": "Further advance in eradicating poverty through its accurate social policies to increase the quality of life of its people, particularly of the most vulnerable", - "values": [ - "Poverty" - ] - }, - { - "text": "Adopt additional measures to eliminate the worst forms of child labor and bring the minimum age of access to employment into line with international standards", - "values": [ - "Labour", - "Rights of the Child" - ] - }, - { - "text": "Employ further measures to ensure the security of religious minorities, including Buddhists and Hindus ", - "values": [ - "Freedom of religion and belief", - "Minorities" - ] - }, - { - "text": "Redouble efforts to seek assistance from its partners, including the United Nations, as the country is confronted with limited capacity in the implementation of many programmes in the field of human rights ", - "values": [ - "Technical assistance and cooperation" - ] - }, - { - "text": "Establish a national preventive mechanism that would constitutionally-institutionally guarantee the rights of all people, particularly the rights of minorities ", - "values": [ - "Minorities" - ] - }, - { - "text": "Simplify access to public administrative services for Crimean residents and enable Ukrainian citizens to move smoothly between Crimea and the rest of Ukraine, recognizing General Assembly resolutions 68/262 and 71/205 and Ukraine\u2019s sovereignty over Crimea", - "values": [ - "Other" - ] - }, - { - "text": "Introduce for adoption a comprehensive, all-inclusive antidiscrimination law that includes protection against discrimination on the grounds of sexual orientation and gender identity ", - "values": [ - "Sexual Orientation and Gender Identity" - ] - }, - { - "text": "Further strengthen the impartiality of the judicial system", - "values": [ - "Justice" - ] - }, - { - "text": "Promote human rights education and capacity-building ", - "values": [ - "Human rights education and training" - ] - }, - { - "text": "Establish a mechanism for monitoring the number of cases and scope of abuse and strengthen the measures of protection from domestic violence ", - "values": [ - "Rights of the Child", - "Women's rights" - ] - }, - { - "text": "Redouble efforts in combating corruption at all levels", - "values": [ - "Corruption" - ] - }, - { - "text": "Promote continuous and regular training programs for judicial and public magistrates and allocate sufficient resources to improve working conditions", - "values": [ - "Human rights education and training" - ] - }, - { - "text": "Continue its efforts to promote and improve the situation of women and to combat discrimination against them", - "values": [ - "Women's rights" - ] - }, - { - "text": "Ensure implementation of environment protection legislation", - "values": [ - "Environment" - ] - }, - { - "text": "Ensure that Decrees No. 982 and No. 812, with regard to the freedom of association, freedom of assembly and freedom of expression, are not applied to block the legitimate work of NGOs ", - "values": [ - "Civil society", - "Freedom of association and peaceful assembly", - "Freedom of opinion and expression" - ] - }, - { - "text": "Reduce the backlog of the submission of reports to treaty bodies", - "values": [ - "Treaty bodies" - ] - }, - { - "text": "Consider becoming party to important international legal instruments to which it is not yet a party", - "values": [ - "International instruments" - ] - }, - { - "text": "Continue its efforts to adopt a development policy to meet the needs of the people to reduce poverty in order to protect and promote human rights", - "values": [ - "Development", - "Poverty" - ] - }, - { - "text": "Counter harassment, threats and wiretapping of investigating journalists, bloggers and NGO representatives", - "values": [ - "Civil society", - "Freedom of association and peaceful assembly", - "Freedom of the press" - ] - }, - { - "text": "Allow independent observers access to places of detention ", - "values": [ - "Detention" - ] - }, - { - "text": "Remove disproportionate restrictions, such as those identified by the Human Rights Committee, on non-citizens and provide for the possibility of judicial review of all refusals of naturalisation", - "values": [ - "Statelessness and the right to nationality", - "Treaty bodies" - ] - }, - { - "text": "Ensure that all girls and women have access to comprehensive sexual and reproductive health promotion and care, including access to modern contraceptive methods", - "values": [ - "Right to health", - "Women's rights" - ] - }, - { - "text": "Ensure that obligations regarding freedom of assembly and freedom of expression, to which Azerbaijan committed on becoming a member of the Council of Europe, are implemented consistently and transparently ", - "values": [ - "Freedom of association and peaceful assembly", - "Freedom of opinion and expression" - ] - }, - { - "text": "Continue to share its experiences for the promotion of human rights in the region and the world ", - "values": [ - "General" - ] - }, - { - "text": "Reinforce protection against trafficking in persons by adopting specific legislative measures to prevent, combat and punish human trafficking", - "values": [ - "Trafficking" - ] - }, - { - "text": "Abolish the death penalty in conformity with the Second Optional Protocol to the International Covenant on Civil and Political Rights", - "values": [ - "Death penalty", - "International instruments" - ] - }, - { - "text": "Take measures to ensure equal access to education, especially for those living in rural areas", - "values": [ - "Right to education" - ] - }, - { - "text": "Continue working to eradicate all forms of discrimination against women, especially in the workplace", - "values": [ - "Women's rights" - ] - }, - { - "text": "Continue efforts in implementation of the National Action Plan to end Gender Based Violence Against Women", - "values": [ - "Women's rights" - ] - }, - { - "text": "Fully implement the National Strategy for the protection and promotion of children's rights", - "values": [ - "Rights of the Child" - ] - }, - { - "text": "Reintroduce a moratorium on executions with a view to abolition of the death penalty", - "values": [ - "Death penalty" - ] - }, - { - "text": "Deposit at the earliest possible date its instrument of ratification to OP-CAT ", - "values": [ - "Detention", - "International instruments", - "Torture and other CID treatment" - ] - }, - { - "text": "Implement the Convention on the Rights of Child in the context of its national policy on children", - "values": [ - "International instruments", - "Rights of the Child" - ] - }, - { - "text": "Ensure that the implementation of indigenous systems of justice conforms to international human rights standards, including those set out in the Convention on the Elimination of All Forms of Discrimination against Women", - "values": [ - "Indigenous peoples", - "International instruments" - ] - }, - { - "text": "Continue and strengthen its efforts to avoid ill-treatment of prisoners, while ensuring that all cases of abuse and excessive use of force by authorities be investigated and appropriate measures be taken.", - "values": [ - "Detention" - ] - }, - { - "text": "Keep the direct fight against corruption as a means of ensuring the legality and trust in government and judicial institutions ", - "values": [ - "Corruption", - "Justice" - ] - }, - { - "text": "Continue the Housing for All policy led by the Government to eradicate by 2030 the problem of homelessness, in conformity with Sustainable Development Goal 11 of the 2030 Agenda", - "values": [ - "Development", - "Right to housing" - ] - }, - { - "text": "Implement more effective protection measures to address the problem of the sexual harassment and the trafficking in women women, and, in that\ncontext, to implement the recommendations of the Committee on the Elimination of Discrimination against Women and the Human Rights Committee\n", - "values": [ - "Trafficking", - "Treaty bodies", - "Women's rights" - ] - }, - { - "text": "Intensify efforts to consolidate economic and social rights, especially in the area of health, education, housing and unemployment ", - "values": [ - "Development", - "Right to education", - "Right to health", - "Right to housing" - ] - }, - { - "text": "Establish a moratorium on the use of the death penalty in view of its abolition", - "values": [ - "Death penalty" - ] - }, - { - "text": "Accomplish progressively the human right goals as set up by Human Rights Council resolution 9-12.", - "values": [ - "General" - ] - }, - { - "text": "Consider the ratification of the Optional Protocol to the Convention against Torture and Other Cruel, Inhuman or Degrading Treatment or Punishment OPCAT, the Optional Protocol to the Convention on the Rights of the Child on the involvement of children in armed conflict OP-CRC-AC, the Convention on the Rights of Persons with Disabilities CRPD and the Optional Protocol to the International Covenant on Economic, Social and Cultural Rights OPA-ICESCR", - "values": [ - "Detention", - "Disabilities", - "ESC rights - general", - "International instruments", - "Rights of the Child", - "Torture and other CID treatment" - ] - }, - { - "text": "Take additional crucial measures to fight hate speech and prosecute and punish perpetrators of hate crimes", - "values": [ - "Racial discrimination" - ] - }, - { - "text": "Sign the Optional Protocols to the Convention on the Rights of the Child", - "values": [ - "International humanitarian law", - "International instruments", - "Labour", - "Rights of the Child", - "Trafficking" - ] - }, - { - "text": "Involve civil society organizations in its follow-up to the universal periodic review", - "values": [ - "UPR process" - ] - }, - { - "text": "Harmonize its legislation with its human rights obligations towards individual protesters exercising their freedom of expression and opinion and to curtail excessive pretrial detention.", - "values": [ - "Detention", - "Freedom of opinion and expression" - ] - }, - { - "text": "Continue the efforts to implement plans and programmes for the promotion and protection of human rights of persons that are in conditions of vulnerability", - "values": [ - "Human rights education and training" - ] - }, - { - "text": "Establish rapidly an impartial national human rights institution in line with the Paris Principles", - "values": [ - "National Human Rights Institution" - ] - }, - { - "text": "Attend to the appointment of members of the NHRC to enable it to commence its work", - "values": [ - "National Human Rights Institution" - ] - }, - { - "text": "Permit the TCRT full access to assistance from the United Nations Office of the High Commissioner for Human Rights, other United Nations agencies, foreign governments and human rights organizations ", - "values": [ - "Justice", - "Technical assistance and cooperation" - ] - }, - { - "text": "Promote equal opportunities for ethnic and national minorities, in particular in the area of education, vocational training and employment", - "values": [ - "Labour", - "Minorities", - "Right to education" - ] - }, - { - "text": "Ratify the two Optional Protocols to the Convention on the Rights of the Child, on the involvement of children in armed conflict and on the sale of children, child prostitution and child pornography", - "values": [ - "International humanitarian law", - "International instruments", - "Rights of the Child", - "Trafficking" - ] - }, - { - "text": "Establish an independent and effective oversight mechanism", - "values": [ - "Privacy" - ] - }, - { - "text": "Prepare a holistic childhood plan with a particular attention to the problem of child labour", - "values": [ - "Labour", - "Rights of the Child" - ] - }, - { - "text": "Ratify the International Covenant on Economic, Social and Cultural Rights (ICESR), which has been signed but not ratified.", - "values": [ - "ESC rights - general", - "International instruments" - ] - }, - { - "text": "Enhance the adoption and implementation of measures to fight domestic violence against women and to protect the victims of domestic violence", - "values": [ - "Rights of the Child", - "Women's rights" - ] - }, - { - "text": "Enhance efforts to ensure the protection of children's rights, as outlined in the Convention on the Rights of the Child and its Optional Protocols", - "values": [ - "International humanitarian law", - "International instruments", - "Labour", - "Rights of the Child", - "Trafficking" - ] - }, - { - "text": "Open crossing points.", - "values": [ - "Freedom of movement" - ] - }, - { - "text": "Issue legislation regarding the status of refugees in order to deal with the refugee situation in the country ", - "values": [ - "Asylum-seekers - refugees" - ] - }, - { - "text": "Consider giving special attention to the rights of women and girls with disabilities, including their reproductive rights, the right to be free from violence, to work, to receive education and to participate in decision-making", - "values": [ - "Disabilities", - "Right to education", - "Rights of the Child", - "Women's rights" - ] - }, - { - "text": "Bring its legislation into line with its international obligations, notably those arising from the Second Optional Protocols to the ICCPR", - "values": [ - "Death penalty", - "International instruments" - ] - }, - { - "text": "Take concrete measures aiming at reducing overcrowding in the prisons of the country and ensuring that conditions of detention are in conformity with the human rights of persons deprived of their liberty ", - "values": [ - "Detention" - ] - }, - { - "text": "Consider access to asylum procedures for victims of trafficking ", - "values": [ - "Trafficking" - ] - }, - { - "text": "Further strengthen its efforts to prevent torture and ill treatment in places of deprivation of liberty, combat trafficking in persons and promote gender parity", - "values": [ - "Torture and other CID treatment", - "Trafficking", - "Women's rights" - ] - }, - { - "text": "Amend the civil and military penal codes to bring them into line with CAT, to which Nicaragua is party, and bring to justice those responsible for acts of torture", - "values": [ - "International instruments", - "Torture and other CID treatment" - ] - }, - { - "text": "Introduce awareness-raising programmes aimed at positive contributions of persons with disabilities together with further measures to enhance their participation in decision-making processes.", - "values": [ - "Disabilities", - "Human rights education and training" - ] - }, - { - "text": "Continue making further efforts to promote the enjoyment of economic, social and cultural rights", - "values": [ - "ESC rights - general" - ] - }, - { - "text": "Continue the efforts directed towards eliminating child labour ", - "values": [ - "Labour", - "Rights of the Child" - ] - }, - { - "text": "Adopt special measures to alleviate and remedy disparities in the enjoyment of human rights affecting vulnerable groups, which include immigrants, foreigners and ethnic minorities such as the Ciganos and Roma communities ", - "values": [ - "Migrants", - "Minorities" - ] - }, - { - "text": "Strengthen the national policies on gender to reduce discrimination against women and increase their participation in the political and economic spheres", - "values": [ - "Women's rights" - ] - }, - { - "text": "Establish measures to integrate informal economic activities in the national economy thus allowing inter alia access to credit and financial services and simplifying the procedures of access to appropriate training", - "values": [ - "Development" - ] - }, - { - "text": "Enact legislation to guarantee the prohibition of torture and ill treatment, as recognized in the Constitution, and in line with the Convention against Torture", - "values": [ - "International instruments", - "Torture and other CID treatment" - ] - }, - { - "text": "Ratify CAT.", - "values": [ - "International instruments", - "Torture and other CID treatment" - ] - }, - { - "text": "Accede and ratify the main human rights instruments, including the International Covenant on Civil and Political Rights and the Optional Protocol to the Convention on the Rights of the Child on the sale of children, child prostitution and child pornography", - "values": [ - "CP rights - general", - "International instruments", - "Rights of the Child", - "Trafficking" - ] - }, - { - "text": "Take effective measures to combat direct and indirect discrimination against persons living in the ger districts", - "values": [ - "Other" - ] - }, - { - "text": "Take immediate steps to ensure that the Malagasy population has the freedom to assemble and peacefully express their views", - "values": [ - "Freedom of association and peaceful assembly", - "Freedom of opinion and expression" - ] - }, - { - "text": "Implement further policies to support food production, such as farm insurance, access to credit and the purchase of food by the Government to ensure a stable market for family farmers ", - "values": [ - "Right to food" - ] - }, - { - "text": "Expressly prohibit by law corporal punishments in all areas", - "values": [ - "Torture and other CID treatment" - ] - }, - { - "text": "Continue efforts to combat terrorism in the framework of respecting human rights norms", - "values": [ - "Public security" - ] - }, - { - "text": "Accede to the ILO Convention No. 182 concerning the Prohibition and Immediate Action for the Elimination of the Worst Forms of Child Labour, ratify the Statute of the International Criminal Court and the Convention against Torture and Other Cruel, Inhuman or Degrading Treatment or Punishment and its Optional Protocol, the International Convention on the Protection of the Rights of All Migrant Workers and Members of Their Families, and the ILO Convention No. 189 concerning Decent Work for Domestic Workers ", - "values": [ - "International instruments" - ] - }, - { - "text": "Ratify pending international human rights instruments, particularly the two Optional Protocols to ICCPR and the Optional Protocol to CAT ", - "values": [ - "CP rights - general", - "Death penalty", - "Detention", - "International instruments", - "Torture and other CID treatment" - ] - }, - { - "text": "Take serious measures to end violence against women and children", - "values": [ - "Rights of the Child", - "Women's rights" - ] - }, - { - "text": "Ratify the Optional Protocol to the International Covenant on Economic, Social and Cultural Rights and opt in to the inquiry and inter-state procedures", - "values": [ - "ESC rights - general", - "International instruments" - ] - }, - { - "text": "Continue appropriate institutional work to build the rule of law and consolidate good governance, taking into account the promotion of the principles of human rights and fundamental freedoms in the country", - "values": [ - "Justice" - ] - }, - { - "text": "Restructure and give new impetus to the National Human Rights Commission", - "values": [ - "National Human Rights Institution" - ] - }, - { - "text": "End all forms of corporal punishment of children in all settings, including in the home and in schools, by enforcing its prohibition ", - "values": [ - "Rights of the Child", - "Torture and other CID treatment" - ] - }, - { - "text": "Continue efforts to combat trafficking in human beings, particularly the exploitation of children, by reinforcing the fight against traffickers", - "values": [ - "Rights of the Child", - "Trafficking" - ] - }, - { - "text": "Ratify the Optional Protocol to the Convention against Torture and Other Cruel, Inhuman and or Degrading Treatment or Punishment, and the International Convention for the Protection of All Persons from Enforced Disappearance", - "values": [ - "Detention", - "Enforced disappearances", - "International instruments", - "Torture and other CID treatment" - ] - }, - { - "text": "Launch an awareness raising programme on protection of enjoyment of human rights by persons of minority sexual orientation and gender identity for law enforcement personnel as part of a wider comprehensive campaign to prevent and punish any acts of ill-treatment in detention against persons perceived as belonging to these groups.", - "values": [ - "Detention", - "Human rights education and training", - "Sexual Orientation and Gender Identity" - ] - }, - { - "text": "Continue its efforts to reform its human rights institutions in line with the principles relating to the status of national institutions for the promotion and protection of human rights (the Paris Principles)", - "values": [ - "National Human Rights Institution" - ] - }, - { - "text": "Take measures to make access available to people with disabilities, on an equal footing, to education, employment, housing, transport and cultural life and facilitate their access to public places and services", - "values": [ - "Disabilities" - ] - }, - { - "text": "Bring about a change in attitudes with a view to eliminating persistent stereotypical attitudes about the roles and responsibilities of women and men in the family and in society ", - "values": [ - "Women's rights" - ] - }, - { - "text": "Accelerate the process of withdrawal of declarations under article 2 of the Convention on the Rights of the Child concerning non-discrimination principle, which limits the enjoyment of the Convention rights by children who do not have Belgian nationality ", - "values": [ - "International instruments", - "Rights of the Child" - ] - }, - { - "text": "Apply and provide follow-up to plans to eradicate child labour.", - "values": [ - "Labour", - "Rights of the Child" - ] - }, - { - "text": "Continue the policy of inclusive education, especially in rural areas", - "values": [ - "Right to education" - ] - }, - { - "text": "Continue to strengthen its efforts to ensure that all police and security officers receive human rights training.", - "values": [ - "Human rights education and training" - ] - }, - { - "text": "Continue its efforts for the judicial reforms to promote and protect the independence of judiciary", - "values": [ - "Justice" - ] - }, - { - "text": "Ratify the Protocol to Prevent, Suppress and Punish Trafficking in Persons, Especially Women and Children", - "values": [ - "International instruments", - "Rights of the Child", - "Trafficking", - "Women's rights" - ] - }, - { - "text": "Continue efforts to improve the living conditions of elderly persons", - "values": [ - "Other" - ] - }, - { - "text": "Facilitate reintegration of IDPs in areas of return.", - "values": [ - "Internally displaced persons" - ] - }, - { - "text": "Continue its development activities in Northern Rakhine State ", - "values": [ - "Development" - ] - }, - { - "text": "Initiate investigations as soon as possible to determine responsibilities in cases of allegations of abuse and torture by Congolese security forces - especially in prisons - and prosecute the perpetrators of such crimes", - "values": [ - "Detention", - "Human rights violations by state agents", - "Torture and other CID treatment" - ] - }, - { - "text": "Strengthen efforts to overcome the bottlenecks that slow down the process of implementation of the country\u2019s international obligations in the field of human rights", - "values": [ - "International instruments" - ] - }, - { - "text": "Develop a strategy to guarantee the rights of women in the labour market and increase the effectiveness of measures to prevent and reduce poverty among vulnerable groups of women", - "values": [ - "Labour", - "Poverty", - "Women's rights" - ] - }, - { - "text": "Enact efficient legislation to prohibit and prevent the employment of children as domestic workers", - "values": [ - "Labour", - "Rights of the Child" - ] - }, - { - "text": "Continue its efforts in drafting the Human Trafficking Legislation, with the active participation of the civil society", - "values": [ - "Civil society", - "Trafficking" - ] - }, - { - "text": "Ensure that birth registration is stepped up through an ongoing campaign and the efficient use of resources and that the right to sustainable nutrition, public health and basic education is secured for all children ", - "values": [ - "Rights of the Child", - "Statelessness and the right to nationality" - ] - }, - { - "text": "Revise the law on abortion in order to identify other circumstances in which abortion could be permitted, particularly abortion in cases of pregnancy resulting from rape or incest ", - "values": [ - "Women's rights" - ] - }, - { - "text": "Take measures to prevent ethnic profiling by law enforcement officials and private businesses and provide effective remedies for victims ", - "values": [ - "Racial discrimination" - ] - }, - { - "text": "Ensure the protection of refugees, migrants and their families in full compliance with international standards", - "values": [ - "Asylum-seekers - refugees", - "Migrants" - ] - }, - { - "text": "Consider ratifying the International Convention on the Protection of the Rights of All Migrants Workers and Members of Their Families ", - "values": [ - "International instruments", - "Labour", - "Migrants" - ] - }, - { - "text": "Continue efforts to prevent violence and sexual abuse against boys and girls, and increase its efforts to bring to justice those responsible ", - "values": [ - "Rights of the Child" - ] - }, - { - "text": "Take effective steps to prevent arbitrary use of existing regulations to discriminate against LGBT people, including their rights to freedom of expression and peaceful assembly ", - "values": [ - "Freedom of association and peaceful assembly", - "Freedom of opinion and expression", - "Sexual Orientation and Gender Identity" - ] - }, - { - "text": "Ensure the full implementation of women\u2019s rights, in particular in relation to effective access to sexual and reproductive health and rights", - "values": [ - "Right to health", - "Women's rights" - ] - }, - { - "text": "Proceed with the closure of Guantanamo at the earliest possible date and bring to trial promptly in accordance with the applicable rules of international law the detainees held there", - "values": [ - "Detention" - ] - }, - { - "text": "Consider an early ratification of the third Optional Protocol to the Convention on the Rights of the Child on a communications procedure (OP- CRC-IC)", - "values": [ - "International instruments", - "Rights of the Child" - ] - }, - { - "text": "Stop detention of minors in adult prisons ", - "values": [ - "Detention", - "Rights of the Child" - ] - }, - { - "text": "Sign and ratify the Convention on the Rights of Persons with Disabilities and the Optional Protocol to the International Covenant on Economic, Social and Cultural Rights", - "values": [ - "Disabilities", - "ESC rights - general", - "International instruments" - ] - }, - { - "text": "Strengthen gender equality policies with a view to narrowing the gender gap in all areas of society ", - "values": [ - "Women's rights" - ] - }, - { - "text": "Ensure the rights to freedoms of expression, association and peaceful assembly, both online and offline, in particular by revoking the use of military force to control public order and ceasing State security raids such as Operation Liberation and Protection of the People", - "values": [ - "Freedom of association and peaceful assembly", - "Freedom of opinion and expression", - "Human rights violations by state agents" - ] - }, - { - "text": "Give due attention, in the welcome and trend-setting constitutional revision exercise, to the need to ensure maximum coherence, in conformity with international law, between the human rights obligations of Norway and its other international obligations, such as trade obligations undertaken at the level of the World Trade Organization ", - "values": [ - "General" - ] - }, - { - "text": "Address effectively the issue of excessive use of force by the police, especially during demonstrations and protests, as well as human rights violations and ill-treatment in detention ", - "values": [ - "Detention", - "Freedom of association and peaceful assembly", - "Human rights violations by state agents", - "Torture and other CID treatment" - ] - }, - { - "text": "Consider abolishing the death penalty under any circumstance", - "values": [ - "Death penalty" - ] - }, - { - "text": "Consider bringing national legislation relating to trafficking in and sale of children in line with the Optional Protocol to the CRC, on the sale of children, child prostitution and child pornography ", - "values": [ - "International instruments", - "Rights of the Child", - "Trafficking" - ] - }, - { - "text": "Develop the penal legislation concerning discrimination and violence against women in a comprehensive manner", - "values": [ - "Women's rights" - ] - }, - { - "text": "Ensure the establishment of an inclusive education system", - "values": [ - "Right to education" - ] - }, - { - "text": "Strengthen efforts and take measures towards adoption of the law to fight discrimination", - "values": [ - "Other" - ] - }, - { - "text": "Strengthen cooperation with human rights mechanisms and to continue the efforts initiated in order to combat discrimination against ethnic minorities ", - "values": [ - "Minorities", - "Racial discrimination", - "Special procedures", - "Treaty bodies", - "UPR process" - ] - }, - { - "text": "Release all persons imprisoned or detained on the grounds of their sexual orientation or gender identity", - "values": [ - "Sexual Orientation and Gender Identity" - ] - }, - { - "text": "In the light of the current reform of the Criminal Code and the Code on Criminal Proceedings, do not include any discriminatory provisions against women ", - "values": [ - "Women's rights" - ] - }, - { - "text": "Take concrete steps to abolish the death penalty", - "values": [ - "Death penalty" - ] - }, - { - "text": "Continue its national efforts to improve access to justice and provide necessary training for personnel working in that field", - "values": [ - "Human rights education and training", - "Justice" - ] - }, - { - "text": "Continue efforts to promote and protect human rights in line with international standards ", - "values": [ - "General" - ] - }, - { - "text": "Ratify the Rome Statute of the International Criminal Court and bring national legislation into conformity with its provisions", - "values": [ - "International instruments", - "Justice" - ] - }, - { - "text": "Adopt the necessary measures to address the issues of sexual exploitation of children and traditional practices of violence against children such as the abandonment of twins, as a matter of priority, including at the level of accountability", - "values": [ - "Rights of the Child" - ] - }, - { - "text": "Ratify the international human rights instruments, particularly the International Covenant on Civil and Political Rights ", - "values": [ - "CP rights - general", - "International instruments" - ] - }, - { - "text": "Continue paying particular attention to the conditions of vulnerable groups, such as persons with disabilities and indigenous peoples, in particular Afro-descendants ", - "values": [ - "Disabilities", - "Indigenous peoples", - "Minorities" - ] - }, - { - "text": "Continue efforts to prevent, punish and eliminate all forms of violence against women, and to overcome the stereotypes that cause gender discrimination ", - "values": [ - "Women's rights" - ] - }, - { - "text": "Carry on with the ratification of international conventions and treaties to which it is not a party to ", - "values": [ - "International instruments" - ] - }, - { - "text": "Strengthen its efforts and establish and implement policies and measures to address discrimination based on sexual orientation and gender identity ", - "values": [ - "Sexual Orientation and Gender Identity" - ] - }, - { - "text": "Elevate penal responsibility to the level of international standards and delete the marital prerogative in customary and religious marriage.", - "values": [ - "Detention", - "Women's rights" - ] - }, - { - "text": "Ratify ICESCR, ICERD, ICCPR and CAT ", - "values": [ - "CP rights - general", - "ESC rights - general", - "International instruments", - "Racial discrimination", - "Torture and other CID treatment" - ] - }, - { - "text": "Continue to adopt measures aiming at further refining its judicial system, reforming law enforcement bodies and curbing crime and corruptions levels ", - "values": [ - "Corruption", - "Justice" - ] - }, - { - "text": "Step up efforts to fight female genital mutilation", - "values": [ - "Rights of the Child", - "Torture and other CID treatment", - "Women's rights" - ] - }, - { - "text": "Further strengthen the rule of law and institutions to enforce social cohesion, tolerance and equality in order to comprehensively guarantee human rights for her people, in particular the vulnerable groups", - "values": [ - "Justice" - ] - }, - { - "text": "Continue full and effective implementation of the decisions of the European Court of Human Rights ", - "values": [ - "Other" - ] - }, - { - "text": "Establish legislative and institutional guarantees to ensure that the popular initiatives are compatible with the obligations under international human rights law", - "values": [ - "Other" - ] - }, - { - "text": "Introduce a formal moratorium on the death penalty with a view to its abolition. ", - "values": [ - "Death penalty" - ] - }, - { - "text": "Implement additional measures to ensure equal access for girls and women to all levels of\neducation, including provision of incentives to girls and their families to remain in school, development\nof non-formal educational opportunities to reduce illiteracy among girls and women and increased\naccess to adult education ", - "values": [ - "Right to education", - "Rights of the Child", - "Women's rights" - ] - }, - { - "text": "Enact legislation which would, in line with Article 1 of the Convention against Torture (CAT), prevent and eliminate torture, and ratify OP-CAT at the earliest opportunity ", - "values": [ - "Detention", - "International instruments", - "Torture and other CID treatment" - ] - }, - { - "text": "Increase ongoing action to eliminate discrimination against women at all levels in society", - "values": [ - "Women's rights" - ] - }, - { - "text": "Take all necessary steps to promptly adopt and implement a comprehensive national disability policy in full compliance with international standards", - "values": [ - "Disabilities" - ] - }, - { - "text": "Start full cooperation with the Commission of Inquiry, including by ensuring access to the country so that it may carry out its mandate", - "values": [ - "Technical assistance and cooperation" - ] - }, - { - "text": "Effectively investigate and prosecute crimes and violations against human rights defenders and punish those responsible ", - "values": [ - "Human rights defenders" - ] - }, - { - "text": "Take efficient measures to overcome the consequences of food and financial crises", - "values": [ - "Right to food" - ] - }, - { - "text": "Follow up and reinforce actions aimed at improving the living conditions of the population and the situation of migrants", - "values": [ - "Migrants" - ] - }, - { - "text": "Include Afro-Argentinians to reflect the historical memory of Afro- Argentinians", - "values": [ - "Minorities" - ] - }, - { - "text": "Request technical assistance and cooperation as deemed appropriate from the international community, including relevant United Nation and specialized agencies in respect of capacity development for human rights implementation", - "values": [ - "Technical assistance and cooperation" - ] - }, - { - "text": "Continue to develop the preventive educational and social reinsertion approach as a priority channel to prevent crime", - "values": [ - "Right to education" - ] - }, - { - "text": "Ensure the full protection of refugees and displaced persons by strengthening the appropriate mechanisms of attention to safeguard optimal standards in their living conditions", - "values": [ - "Asylum-seekers - refugees", - "Internally displaced persons" - ] - }, - { - "text": "Continue the efforts to combat the practice of female genital mutilation", - "values": [ - "Rights of the Child", - "Torture and other CID treatment", - "Women's rights" - ] - }, - { - "text": "Establish a system of support for its victims and potential victims, including a network of shelters, use awareness-raising campaigns to uproot societal acceptability of violence against women, and ensure strict punishment of all its perpetrators, in particular in cases of so-called honour crimes", - "values": [ - "Human rights education and training", - "Rights of the Child", - "Women's rights" - ] - }, - { - "text": "Make effective efforts to respect its international obligations not to forcibly return any individual to a country where he or she may be at risk of serious human rights violations, including torture or other ill-treatment.", - "values": [ - "Torture and other CID treatment" - ] - }, - { - "text": "Continue to further its efforts to promote and protect the rights of women and children", - "values": [ - "Rights of the Child", - "Women's rights" - ] - }, - { - "text": "Ensure freedom of religion or belief, including access to places of worship", - "values": [ - "Freedom of religion and belief" - ] - }, - { - "text": "Formulate a national plan to combat violence against children, including corporal punishment and sexual abuse, which includes considerations on prevention, care and reparation ", - "values": [ - "Rights of the Child", - "Torture and other CID treatment" - ] - }, - { - "text": "Increase public awareness about the prohibition of gender discrimination, in particular in the areas of education and employment ", - "values": [ - "Women's rights" - ] - }, - { - "text": "Pursue and increase its efforts undertaken in the field of education, water and sanitation", - "values": [ - "Right to education", - "Right to water and sanitation" - ] - }, - { - "text": "Strengthen the institutional framework to combat all forms of racial discrimination and incitement to hatred, in particular against migrants", - "values": [ - "Migrants", - "Racial discrimination" - ] - }, - { - "text": "Sign and ratify CRPD ", - "values": [ - "Disabilities", - "International instruments" - ] - }, - { - "text": "Further enhance its efforts to ensure adequate legal protection for all segments of the population", - "values": [ - "Justice" - ] - }, - { - "text": "Continue partnership with civil society organizations in putting in place a legal and institutional system of support for their development ", - "values": [ - "Civil society" - ] - }, - { - "text": "Promote new actions and initiatives to continue progressing in its efforts to achieve the widest possible enjoyment of all human rights and fundamental freedoms for all ", - "values": [ - "General" - ] - }, - { - "text": "Adopt specific and comprehensive legislation against direct and indirect discrimination", - "values": [ - "Other" - ] - }, - { - "text": "Harmonization of domestic law with international human rights norms, amendments to the Criminal Code, adoption of the anti-discrimination law and, promoting the adoption of a law on crimes against humanity with a view to incorporating the provisions of the Rome Statute of the International Criminal Court", - "values": [ - "International instruments", - "Justice" - ] - }, - { - "text": "Strengthen measures to combat and prevent racism, racial discrimination, xenophobia and related intolerance", - "values": [ - "Racial discrimination" - ] - }, - { - "text": "Ensure that the National Sustainable Development Strategy consider, in particular, the role of women in national development, including their participation in the political process, at all levels ", - "values": [ - "Women's rights" - ] - }, - { - "text": "Adopt a concerted strategy to reduce the prison population, as overcrowding in prisons remains an issue in Benin", - "values": [ - "Detention" - ] - }, - { - "text": "Define professional legal standards and disciplinary procedures in conformity with the Basic Principles on the Role of Lawyers", - "values": [ - "Justice" - ] - }, - { - "text": "Strengthen the legal framework to prevent and combat violence against women and domestic violence", - "values": [ - "Women's rights" - ] - }, - { - "text": "Make accessible to the general public and teach human rights in school and university establishments, as well as in the professional sector", - "values": [ - "Human rights education and training" - ] - }, - { - "text": "Withdraw its reservations to CRC and CEDAW that are contrary to their objective and scope ", - "values": [ - "International instruments", - "Rights of the Child", - "Statelessness and the right to nationality", - "Women's rights" - ] - }, - { - "text": "Consider ratification of the third OP to the CRC on a communications procedure ", - "values": [ - "International instruments", - "Rights of the Child" - ] - }, - { - "text": "Abolish all discriminatory customary laws and practices that violate the rights of women, in accordance with international obligations under the Convention on the Elimination of All Forms of Discrimination against Women", - "values": [ - "International instruments", - "Women's rights" - ] - }, - { - "text": "Reopen investigations on secret CIA prisons and study all elements regarding Lithuanian sites", - "values": [ - "Counter-terrorism", - "Detention" - ] - }, - { - "text": "Continue efforts to ensure the implementation of the Sustainable Development Goals for the entire population", - "values": [ - "Development" - ] - }, - { - "text": "Take action to establish an independent national human rights institution in accordance with the Paris Principles.", - "values": [ - "National Human Rights Institution" - ] - }, - { - "text": "Move quickly to introduce comprehensive anti-discrimination legislation to provide equal protection against discrimination for all persons and on all grounds, including sexual orientation or gender identity", - "values": [ - "Sexual Orientation and Gender Identity" - ] - }, - { - "text": "Take the necessary measures to ensure that the Persons with Disability Act (2006) is in line with the Convention on the Rights of Persons with Disabilities", - "values": [ - "Disabilities", - "Rights of the Child" - ] - }, - { - "text": "Proceed to ratification of the Convention on the Rights of Persons with Disabilities ", - "values": [ - "Disabilities", - "International instruments" - ] - }, - { - "text": "Continue the implementation of the national health care programme ", - "values": [ - "Right to health" - ] - }, - { - "text": "Ratify the Convention against Torture and Other Cruel, Inhuman or Degrading Treatment or Punishment and its Optional Protocol, and prohibit all corporal punishment of children in all settings, including at home environment", - "values": [ - "Detention", - "International instruments", - "Rights of the Child", - "Torture and other CID treatment" - ] - }, - { - "text": "Continue its fight against poverty ", - "values": [ - "Poverty" - ] - }, - { - "text": "Recommended that features of Tuvalu's legal framework, which incorporates customary law but excludes those precepts which may be perceived as violations of human rights, and which always give precedence to the interpretation of law that is compatible with the international obligations, be singled out as good practices in the field of human rights.", - "values": [ - "Justice" - ] - }, - { - "text": "The Lao PDR will cooperate and support the work of the UN human rights mechanisms, including the Human Rights Council, fulfill the reporting obligations under human rights treaties, cooperate with the Special Procedures by extending invitation to Special Rapporteurs on thematic issues to visit the country as appropriate", - "values": [ - "Special procedures", - "Treaty bodies", - "UPR process" - ] - }, - { - "text": "Give priority to free education in the national budget allocations and take measures to prevent school drop out. ", - "values": [ - "Right to education" - ] - }, - { - "text": "Consider ratifying the Second Optional Protocol to the International Covenant on Civil and Political Rights and establish a de jure moratorium on the death penalty with the view of total abolition thereof", - "values": [ - "Death penalty", - "International instruments" - ] - }, - { - "text": "Consider implementing a model of consensus-seeking and shared responsibility for good living", - "values": [ - "Other" - ] - }, - { - "text": "Establish a federal moratorium on the death penalty with a view to the total abolition of the death penalty in the United States", - "values": [ - "Death penalty" - ] - }, - { - "text": "Continue efforts to strengthen the institutional and legal basis in the area of the promotion and protection of human rights ", - "values": [ - "General" - ] - }, - { - "text": "Continue to take measures to ensure that alleged human rights violations by the police and security services are properly investigated and prosecuted ", - "values": [ - "Human rights violations by state agents" - ] - }, - { - "text": "Respect and promote the right to freedom of expression, peaceful assembly and association in line with its international human rights obligations ", - "values": [ - "Freedom of association and peaceful assembly", - "Freedom of opinion and expression", - "International instruments" - ] - }, - { - "text": "Continue its efforts to prevent and combat domestic violence", - "values": [ - "Rights of the Child", - "Women's rights" - ] - }, - { - "text": "Further step up efforts to punish and stop extremist crimes, counter racism and xenophobia, and promote greater respect and tolerance for cultural diversity in society", - "values": [ - "Racial discrimination" - ] - }, - { - "text": "Adopt urgent measures to address the increasing vulnerability of journalists working in the country, including at the legal level - see crimes of press - and by protecting them from suppression and impunity", - "values": [ - "Freedom of the press", - "Impunity" - ] - }, - { - "text": "Examine the possibility of establishing national helplines for victims of trafficking and domestic violence", - "values": [ - "Rights of the Child", - "Trafficking", - "Women's rights" - ] - }, - { - "text": "Carry out a constructive and a cooperative engagement with the Committee on the Rights of the Persons with Disabilities, in particular with regard to the persons with psychological disabilities", - "values": [ - "Disabilities", - "Treaty bodies" - ] - }, - { - "text": "Consider ratifying the Optional Protocol to the Convention on the Rights of the Child on the sale of children, child prostitution and child pornography ", - "values": [ - "International instruments", - "Rights of the Child", - "Trafficking" - ] - }, - { - "text": "Immediately establish a moratorium on executions with a view to definitely abolishing death penalty and to adhering to the second Optional Protocol to the International Covenant on Civil and Political Rights ", - "values": [ - "Death penalty", - "International instruments" - ] - }, - { - "text": "Improve the collection of data on hate crimes and incidents, work to find the reasons behind the unreported cases, encourage victims to report and if necessary take measures to protect them", - "values": [ - "Racial discrimination" - ] - }, - { - "text": "Consider additional safeguards for minorities in the criminal justice system, namely to introduce guarantees with respect to the right to use a minority language in all stages of the criminal proceedings", - "values": [ - "Detention", - "Justice", - "Minorities" - ] - }, - { - "text": "Continue to consolidate its national human rights infrastructure ", - "values": [ - "General" - ] - }, - { - "text": "Build on existing inclusion strategies by implementing public awareness campaigns and education programmes to promote diversity and tolerance, while condemning racism and xenophobia", - "values": [ - "Human rights education and training", - "Racial discrimination" - ] - }, - { - "text": "Upgrade its human rights body into an independent and credible National Human Rights Institution in accordance with the Paris Principles ", - "values": [ - "National Human Rights Institution" - ] - }, - { - "text": "Restore democracy and the rule of law indispensable for the full enjoyment of human rights, harmed by the parliamentary coup d\u2019état against President Dilma Rousseff", - "values": [ - "Justice" - ] - }, - { - "text": "Restore the term "race" as a ground of discrimination in accordance with the International Convention on the Elimination of All Forms of Racial Discrimination (ICERD)", - "values": [ - "International instruments", - "Racial discrimination" - ] - }, - { - "text": "Ensure to all child and adolescent victims of trafficking the protection of their rights, access to justice and psychosocial rehabilitation", - "values": [ - "Justice", - "Rights of the Child", - "Trafficking" - ] - }, - { - "text": "Protect human rights defenders and journalists from violence and arbitrary arrests, to address impunity for crimes against human rights defenders and journalists and to notify the United Nations Educational, Scientific and Cultural Organization of the status of the judicial inquiry into the murder of journalists ", - "values": [ - "Freedom of the press", - "Human rights defenders", - "Impunity" - ] - }, - { - "text": "Continue to strengthen its efforts to promote and protect fundamental freedoms and rights guaranteed under ICCPR ", - "values": [ - "CP rights - general", - "International instruments" - ] - }, - { - "text": "Continue the programme of the provision of quality education including new investments in the development of education ", - "values": [ - "Right to education" - ] - }, - { - "text": "Submit its overdue report under ICCPR ", - "values": [ - "CP rights - general", - "Treaty bodies" - ] - }, - { - "text": "Enhance efforts to find a prompt solution for the return or resettlement of people living in refugee camps in eastern Nepal ", - "values": [ - "Asylum-seekers - refugees" - ] - }, - { - "text": "Ratify the Second Optional Protocol to the International Covenant on Civil and Political Rights with the view to abolishing the death penalty, signed in 2012, and also amend national criminal legislation on that basis as currently under discussion in the National Assembly", - "values": [ - "Death penalty", - "International instruments" - ] - }, - { - "text": "Intensify efforts to provide appropriate vocational training and employment for youths", - "values": [ - "Labour" - ] - }, - { - "text": "Pay special attention to the social and economic integration of the population in rural regions of the country through the development of the infrastructure and change of the regulatory framework in all spheres of life and sustenance", - "values": [ - "Development", - "ESC rights - general" - ] - }, - { - "text": "Continue to strengthen awareness-raising campaigns to combat discriminatory practices against women, which still continue despite significant legislative measures that have already been adopted", - "values": [ - "Human rights education and training", - "Women's rights" - ] - }, - { - "text": "Strengthen complementarity between governmental bodies so as to strengthen capacities of the institutions which deal with the needs of persons with disabilities", - "values": [ - "Disabilities" - ] - }, - { - "text": "Introduce to its criminal legislation aggravating circumstances on the grounds of racial discrimination, as recommended by the Committee on the Elimination of Racial Discrimination.", - "values": [ - "Racial discrimination", - "Treaty bodies" - ] - }, - { - "text": "Remove legislation which discriminates against individuals on the basis of their sexual orientation or gender identity ", - "values": [ - "Sexual Orientation and Gender Identity" - ] - }, - { - "text": "Take legislative measures to ensure that children older than 14 years of age are effectively protected from sexual exploitation", - "values": [ - "Rights of the Child" - ] - }, - { - "text": "Make further efforts to obtain \u201cA\u201c status in conformity with the Paris Principles for the National Human Rights Commission", - "values": [ - "National Human Rights Institution" - ] - }, - { - "text": "Increase human and financial investments to support effective implementation of National Policies for Women and Gender Equality and Child Protection", - "values": [ - "Rights of the Child", - "Women's rights" - ] - }, - { - "text": "Ensure a higher level of awareness of the population in order to overcome stigmatization", - "values": [ - "Human rights education and training" - ] - }, - { - "text": "Provide adequate protection for human rights defenders and marginalized groups against racially motivated violence", - "values": [ - "Human rights defenders", - "Minorities", - "Racial discrimination" - ] - }, - { - "text": "Actively address issues of freedom of expression and association in Nauru, and support political representation for all Nauruan", - "values": [ - "Elections", - "Freedom of association and peaceful assembly", - "Freedom of opinion and expression" - ] - }, - { - "text": "Consider decriminalizing sexual relations between consented adults of the same sex ", - "values": [ - "Sexual Orientation and Gender Identity" - ] - }, - { - "text": "Continue efforts to support the role of regional committees of the National Human Rights Council, especially in the southern provinces", - "values": [ - "National Human Rights Institution" - ] - }, - { - "text": "Continue to carry out the system of regional autonomy in ethnic areas and give more favourable conditions to ethnic minorities for participating in the fields of politics, economy and culture", - "values": [ - "CP rights - general", - "Development", - "ESC rights - general", - "Minorities" - ] - }, - { - "text": "Ensure that the draft amendments to the Code on Children and Adolescents explicitly prohibit corporal punishment of children in all settings, including in the home, and that they are enacted as a matter of priority", - "values": [ - "Rights of the Child", - "Torture and other CID treatment" - ] - }, - { - "text": "Ratify the First Optional Protocol to the International Covenant on Civil and Political Rights, the Optional Protocol to the Convention on the Elimination of All Forms of Discrimination against Women, the Optional Protocol to the Convention against Torture and the Optional Protocol to the Convention on the Rights of Persons with Disabilities", - "values": [ - "Death penalty", - "Disabilities", - "International instruments", - "Torture and other CID treatment", - "Treaty bodies", - "Women's rights" - ] - }, - { - "text": "Fight against human trafficking, especially in women and children ", - "values": [ - "Rights of the Child", - "Trafficking", - "Women's rights" - ] - }, - { - "text": "Seek multilateral and bilateral cooperation with a view to achieving progressively full realization of the rights contained in the ICESCR ", - "values": [ - "ESC rights - general", - "International instruments" - ] - }, - { - "text": "Adopt practical measures to combat violence against women and children, particularly female genital mutilation", - "values": [ - "Rights of the Child", - "Torture and other CID treatment", - "Women's rights" - ] - }, - { - "text": "Not allow the nullification of the signatures already collected to form a minority association, and not raise the threshold of signatures needed on application forms.", - "values": [ - "Minorities" - ] - }, - { - "text": "Bring down the unemployment rate", - "values": [ - "Development" - ] - }, - { - "text": "Issue a standing invitation to all special procedures mandate holders and respond positively to requests for their visits ", - "values": [ - "Special procedures" - ] - }, - { - "text": "Continue the consolidation of the National Human Rights Commission of Korea in accordance with the principles relating to the status of national institutions for the promotion and protection of human rights (the Paris Principles), paying particular attention to the appointment of the Chairperson of the Commission, in consultation with civil society groups and other relevant stakeholders", - "values": [ - "National Human Rights Institution" - ] - }, - { - "text": "Continue strengthening the family and family values, including by protecting and ensuring the welfare of the family members, particularly children", - "values": [ - "Rights of the Child" - ] - }, - { - "text": "Internalise as soon as possible the following international human rights treaties: the International Covenant on Civil and Political Rights, the International Covenant on Economic, Social and Cultural Rights, the Convention against Torture and Other Cruel, Inhuman or Degrading Treatment or Punishment, the International Convention on the Elimination of All Forms of Racial Discrimination, the Convention on the Rights of the Child and the Convention on the Elimination of All Forms of Discrimination against Women", - "values": [ - "International instruments" - ] - }, - { - "text": "Make more efforts in law making and law enforcement to combat incitement to racial and religious discrimination in the internet ", - "values": [ - "Freedom of religion and belief", - "Racial discrimination" - ] - }, - { - "text": "Pursue the implementation of the national programmes for alleviating poverty and improving living conditions, which will result in improvements in the lives of Kenyan children ", - "values": [ - "Development", - "Poverty", - "Rights of the Child" - ] - }, - { - "text": "Continue with national programmes already undertaken to reduce any form of discrimination against women until it is totally eliminated", - "values": [ - "Women's rights" - ] - }, - { - "text": "Continue to cooperate with the United Nations Human Rights special procedures ", - "values": [ - "Special procedures" - ] - }, - { - "text": "Ratify the Convention on the Rights of Persons with Disabilities, the Optional Protocol to the Convention against Torture ", - "values": [ - "Detention", - "Disabilities", - "International instruments", - "Torture and other CID treatment" - ] - }, - { - "text": "Intensify investigations of cases on trafficking of human beings for the purpose of labour exploitation and investigate all reports on alleged involvement of state officials in offenses related to human trafficking ", - "values": [ - "Human rights violations by state agents", - "Labour", - "Trafficking" - ] - }, - { - "text": "Implement the recommendations of the Committee on the Rights of the Child on street children and their sexual exploitation, child prostitution, violence against children and child labour.", - "values": [ - "Rights of the Child", - "Treaty bodies" - ] - }, - { - "text": "Pursue, with additional support from its development partners, the implementation of a national strategy for sustainable development, including poverty reduction, which is a fundamental condition for promoting human rights ", - "values": [ - "Development", - "Poverty" - ] - }, - { - "text": "Create a more diverse, inclusive police force, reflective of society ", - "values": [ - "Justice" - ] - }, - { - "text": "To draw up a national action plan for the implementation of recommendations resulting from national consultations on corruption and financial crime (2009-2013)", - "values": [ - "Corruption" - ] - }, - { - "text": "Combat the crimes of abduction of and trafficking in women, provide women victims with physical and psychological rehabilitation services with a view to their integration into the society, continue improving the pension system covering urban and rural areas", - "values": [ - "Trafficking", - "Women's rights" - ] - }, - { - "text": "Continue efforts to improve the mental health sector and combat maternal mortality", - "values": [ - "Right to health", - "Women's rights" - ] - }, - { - "text": "Strengthen promotional policies for women", - "values": [ - "Women's rights" - ] - }, - { - "text": "Continue to address gender inequality in the work place, and in particular, occupational segregation and the gender wage gap", - "values": [ - "Women's rights" - ] - }, - { - "text": "Strengthen measures to combat violence against women, particularly that related to female genital mutilation", - "values": [ - "Torture and other CID treatment", - "Women's rights" - ] - }, - { - "text": "Find the necessary means to improve the health sector, providing access to all citizens", - "values": [ - "Right to health" - ] - }, - { - "text": "Prohibit discrimination on the basis of sexual orientation and gender identity, particularly concerning the enjoyment of the right to health", - "values": [ - "Right to health", - "Sexual Orientation and Gender Identity" - ] - }, - { - "text": "Ratify the Optional Protocol to the Convention on the Rights of the Child (CRC) on a communications procedure", - "values": [ - "International instruments", - "Rights of the Child" - ] - }, - { - "text": "Reconsider their reservations to ICCPR and CRC ", - "values": [ - "CP rights - general", - "International instruments", - "Rights of the Child" - ] - }, - { - "text": "Continue efforts towards the elimination of violence against women in all conflict areas, female genital mutilation and early and forced marriage ", - "values": [ - "Rights of the Child", - "Torture and other CID treatment", - "Women's rights" - ] - }, - { - "text": "Ratify promptly the International Convention on the Protection of the Rights of All Migrant Workers and Members of Their Families", - "values": [ - "International instruments", - "Labour", - "Migrants" - ] - }, - { - "text": "Reform the registration process to make it easier for organizations to register and work freely.", - "values": [ - "Civil society" - ] - }, - { - "text": "Recommended an open standing invitation to special procedures visiting the country, particularly relating to the fundamental rights and freedoms of indigenous peoples and the rights of migrants", - "values": [ - "Indigenous peoples", - "Migrants", - "Special procedures" - ] - }, - { - "text": "Step up efforts to strengthen the process of national reconciliation ", - "values": [ - "Justice" - ] - }, - { - "text": "Continue efforts to promote and protect the rights of women and children on all levels ", - "values": [ - "Rights of the Child", - "Women's rights" - ] - }, - { - "text": "Ratify the Optional Protocol to the Convention against Torture (OPCAT) and ICCPR-OP 1 ", - "values": [ - "CP rights - general", - "Detention", - "International instruments", - "Torture and other CID treatment" - ] - }, - { - "text": "Consider expediting the ratifications of the core human rights treaties to which it is not yet a party, as recommended previously", - "values": [ - "International instruments", - "UPR process" - ] - }, - { - "text": "Bring legislation, including the Criminal Code, in line with the provisions of the International Convention on the Elimination of All Forms of Racial Discrimination", - "values": [ - "International instruments", - "Racial discrimination" - ] - }, - { - "text": "Ensure independent investigations of all cases of violence and discrimination against ethnic and religious minorities", - "values": [ - "Freedom of religion and belief", - "Minorities", - "Racial discrimination" - ] - }, - { - "text": "Guarantee freedom of peaceful assembly", - "values": [ - "Freedom of association and peaceful assembly" - ] - }, - { - "text": "Give due consideration to ensuring a safe and enabling environment for civil society", - "values": [ - "Civil society" - ] - }, - { - "text": "Adopt all necessary measures in order to ensure full protection of the children and the enjoyment of all rights by the children of Colombia ", - "values": [ - "Rights of the Child" - ] - }, - { - "text": "Consider ratifying the First OP-ICCPR and the Second OP-ICCPR, the OP-CAT, the OP-CEDAW, and the International Convention on the Protection of All Persons from Enforced Disappearance", - "values": [ - "CP rights - general", - "Detention", - "Enforced disappearances", - "International instruments", - "Women's rights" - ] - }, - { - "text": "Train members of the judiciary and law enforcement officials to make them aware of all types of violence against women, and strengthen public awareness campaigns", - "values": [ - "Human rights education and training", - "Women's rights" - ] - }, - { - "text": "Explicitly prohibit, in all fields, corporal punishment for children and adolescents, particularly in view of section 226 of the Penal Code, which permits reasonable punishments in penal institutions and by decree of Island Councils ", - "values": [ - "Rights of the Child", - "Torture and other CID treatment" - ] - }, - { - "text": "Fulfill its pledge to review the reservations which it has entered to human rights treaties with a view to withdrawing them", - "values": [ - "International instruments" - ] - }, - { - "text": "Take all necessary measures to prohibit the use, procuring or offering of a child for the purpose of the production and trafficking of drugs ", - "values": [ - "Rights of the Child", - "Trafficking" - ] - }, - { - "text": "Strengthen the measures to combat violence against women as well as support victims and survivors of such violence", - "values": [ - "Women's rights" - ] - }, - { - "text": "Ratify the Convention on the Rights of Persons with Disabilities and prioritize measures to further strengthen the existing framework, including to increase the meaningful participation of the persons with disabilities in policy making", - "values": [ - "Disabilities", - "International instruments" - ] - }, - { - "text": "Strengthen the protection of lesbian, gay, bisexual, transgender and intersex people and work towards the full implementation of the current laws", - "values": [ - "Sexual Orientation and Gender Identity" - ] - }, - { - "text": "Take measures aimed at eliminating torture and other forms of ill-treatment", - "values": [ - "Torture and other CID treatment" - ] - }, - { - "text": "Submit overdue reports to The Human Rights Committee, Committee on the Elimination of Racial Discrimination, Committee Against Torture and Committee on Economic Social and Cultural Rights", - "values": [ - "CP rights - general", - "ESC rights - general", - "Racial discrimination", - "Torture and other CID treatment", - "Treaty bodies" - ] - }, - { - "text": "Adopt the Penal Code and apply its provisions relating to violence against women, including female genital mutilations and other sexual violence, early and enforced marriage", - "values": [ - "Rights of the Child", - "Torture and other CID treatment", - "Women's rights" - ] - }, - { - "text": "Redouble efforts aimed at increasing women's access to employment, participation in public life, education, housing and health ", - "values": [ - "Women's rights" - ] - }, - { - "text": "Continue to improve the condition of women and ensure their effective participation in political life by appointing them to political positions of responsibility", - "values": [ - "Women's rights" - ] - }, - { - "text": "Deal with the issue of trafficking in persons, particularly women and children for sexual exploitation, with the full cooperation of countries in the trafficking chain.", - "values": [ - "Rights of the Child", - "Trafficking", - "Women's rights" - ] - }, - { - "text": "Step up legislative and programme reform including the development of criteria for the implementation of policy in order to guarantee the rights of lesbian, gay, bisexual, transgender and intersex populations", - "values": [ - "Sexual Orientation and Gender Identity" - ] - }, - { - "text": "Continue bringing national legislation into line with changes in its economic model and in accordance with the treaties to which it is party ", - "values": [ - "International instruments" - ] - }, - { - "text": "Continue its efforts to eradicate absolute poverty \n", - "values": [ - "Poverty" - ] - }, - { - "text": "Issue a standing invitation to the United Nations special procedure mandate holders ", - "values": [ - "Special procedures" - ] - }, - { - "text": "Consider ratifying the International Covenant on Civil and Political Rights and the International Covenant on Economic, Social and Cultural Rights, as recommended during the first cycle ", - "values": [ - "CP rights - general", - "ESC rights - general", - "International instruments", - "UPR process" - ] - }, - { - "text": "Continue efforts undertaken for the protection and realization of the rights of the child, particularly regarding access to education.", - "values": [ - "Right to education", - "Rights of the Child" - ] - }, - { - "text": "Take necessary legislative measures to bring existing laws and regulations into conformity with the human rights provisions in the new Constitution.", - "values": [ - "General" - ] - }, - { - "text": "Recommended repealing Hadood and Zina Ordinances.", - "values": [ - "Women's rights" - ] - }, - { - "text": "Effectively implement the Anti-Torture Act with a special focus on the responsibility of superior officers, access to medical services and the establishment of a sufficiently resourced rehabilitation programme for victims ", - "values": [ - "Torture and other CID treatment" - ] - }, - { - "text": "Conclude as soon as possible the ratification process of the Optional Protocol to the International Covenant of Economic, Social and Cultural Rights ", - "values": [ - "ESC rights - general", - "International instruments" - ] - }, - { - "text": "Take concrete measures for the improvement of the socio-economic status of Roma communities.", - "values": [ - "Minorities" - ] - }, - { - "text": "Strengthen its criminal investigation and prosecuting capacities in order to prevent and eliminate arbitrary detention and extrajudicial killings", - "values": [ - "Detention", - "Extrajudicial executions" - ] - }, - { - "text": "Take action to effectively prevent and fight violence against women, particularly domestic violence", - "values": [ - "Women's rights" - ] - }, - { - "text": "Continue the promotion of human rights, justice and law ", - "values": [ - "General" - ] - }, - { - "text": "Strengthen measures to protect women victims of rape during conflict, by integrating these measures in legislation", - "values": [ - "Women's rights" - ] - }, - { - "text": "Implement policies to ensure women's equality with regard to working positions and the home and seek to protect women from all forms of violence", - "values": [ - "Women's rights" - ] - }, - { - "text": "Establish a national human rights institution", - "values": [ - "National Human Rights Institution" - ] - }, - { - "text": "Take effective measures for the full enjoyment of human rights by the Roma, Ashkali and Egyptian minorities, especially to guarantee their economic, social and cultural rights.", - "values": [ - "Minorities" - ] - }, - { - "text": "Continue to act upon the recommendations of the Committee on the Elimination of Discrimination against Women. ", - "values": [ - "Treaty bodies", - "Women's rights" - ] - }, - { - "text": "Take more active measures to abolish all forms of slavery in practice", - "values": [ - "Other" - ] - }, - { - "text": "Consider ratifying Protocol No. 12 to the Convention for the Protection of Human Rights and Fundamental Freedoms and the Council of Europe Convention on Preventing and Combating Violence against Women and Domestic Violence", - "values": [ - "International instruments", - "Rights of the Child", - "Women's rights" - ] - }, - { - "text": "It is committed to accession to the protocols of the Convention on the Rights of the Child.", - "values": [ - "International instruments", - "Rights of the Child" - ] - }, - { - "text": "Fight discrimination against LGBT persons both in law and in practice, as it impacts on the possibilities of education, justice and access to health services, with emphasis on the difficulties faced by transgender people ", - "values": [ - "Sexual Orientation and Gender Identity" - ] - }, - { - "text": "Adopt and implement legal and practical measures to ensure the protection of religious minorities, including Christians, Ahmadis, Hindus and Sikhs, in line with paragraph 34 of the concluding observations of the Human Rights Committee", - "values": [ - "Freedom of religion and belief", - "Minorities" - ] - }, - { - "text": "Issue an open and standing invitation to all special procedures of the Human Rights Council ", - "values": [ - "Special procedures" - ] - }, - { - "text": "Consider reviewing policies on the detention of migrants that might imply their criminalization based on their migration status and promoting the creation of regular pathways for the admission and regularization of undocumented migrants", - "values": [ - "Detention", - "Migrants" - ] - }, - { - "text": "Further refine its requirements for international assistance", - "values": [ - "Technical assistance and cooperation" - ] - }, - { - "text": "Take steps to ratify the Rome Statute of the International Criminal Court ", - "values": [ - "International instruments", - "Justice" - ] - }, - { - "text": "Sign and ratify CAT and its Optional Protocol, and establish a national preventive mechanism", - "values": [ - "Detention", - "International instruments", - "Torture and other CID treatment" - ] - }, - { - "text": "Seek to enhance its programmes on human rights education and training in schools and for public officials, in cooperation with the international community ", - "values": [ - "Human rights education and training" - ] - }, - { - "text": "Reprioritize resources to increase the budget for basic education, including the provision of additional tuition assistance to orphans and vulnerable children ", - "values": [ - "Right to education", - "Rights of the Child" - ] - }, - { - "text": "Ensure the amendment of the law on domestic violence and its prevention", - "values": [ - "Rights of the Child", - "Women's rights" - ] - }, - { - "text": "Include sexual orientation in non-discrimination laws and equality initiatives", - "values": [ - "Sexual Orientation and Gender Identity" - ] - }, - { - "text": "Continue its efforts in reforming Djibouti's Criminal Code and the Code of Criminal Procedure by incorporating a clear definition of torture and an explicit prohibition of torture and other ill-treatment in its domestic law ", - "values": [ - "Torture and other CID treatment" - ] - }, - { - "text": "Continue public policies aimed at the reduction of illiteracy rates", - "values": [ - "Right to education" - ] - }, - { - "text": "Investigate the disappearance of U.S. citizens Alhaji Ceesay and Ebrima Jobe", - "values": [ - "Enforced disappearances" - ] - }, - { - "text": "Continue amending and improving the project of the Protection of State Information Bill as this law, in the form proposed to the Parliament earlier this year, has the potential to undermine the right to access to information and freedom of expression under the pretext of national security and national interest ", - "values": [ - "Freedom of opinion and expression" - ] - }, - { - "text": "Ensure that tourism development in the Central Kalahari Reserve allows indigenous peoples to continue with its traditional practices, including hunting and harvesting for subsisting, as well as access to water", - "values": [ - "Indigenous peoples", - "Right to food", - "Right to water and sanitation" - ] - }, - { - "text": "Prohibit non-consensual treatments, such as forced medication and confinement", - "values": [ - "Right to health", - "Torture and other CID treatment" - ] - }, - { - "text": "Pursue efforts to combat all forms of discrimination, in particular those based on ethnic origin.", - "values": [ - "Racial discrimination" - ] - }, - { - "text": "Take all necessary measures to fight against discrimination and violence against women and to accept individual complaints procedure relating to the Optional Protocol to the Convention on the Elimination of All Forms of Discrimination Against Women", - "values": [ - "International instruments", - "Women's rights" - ] - }, - { - "text": "Ensure that extrajudicial killings are properly investigated and that the persons responsible are held to account in accordance with due process and the rule of law", - "values": [ - "Extrajudicial executions" - ] - }, - { - "text": "Adopt clear and enforceable provisions criminalizing violence against women, including domestic and sexual violence", - "values": [ - "Women's rights" - ] - }, - { - "text": "Establish a moratorium on the death penalty, and take all necessary measures for its abolition", - "values": [ - "Death penalty" - ] - }, - { - "text": "Establish a monitoring mechanism to oversee the effective implementation of the Child Labour (Prohibition and Regulation) Amendment Act, the National Child Labour Policy and the Accessible IndiaCampaign to prevent exploitation of children and protect the rights of persons with disabilities", - "values": [ - "Disabilities", - "Labour", - "Rights of the Child" - ] - }, - { - "text": "Continue ongoing efforts in order to fully apply the constitutional protection regarding family and children ", - "values": [ - "Rights of the Child" - ] - }, - { - "text": "Promote employment, the right to health and judicial fairness for Maori and the Pacific Islanders and raise the level of education for their children ", - "values": [ - "Indigenous peoples", - "Justice", - "Labour", - "Right to education", - "Right to health", - "Rights of the Child" - ] - }, - { - "text": "Develop a comprehensive strategy to prevent sexual exploitation of children and their cruel treatment and increase criminal liability for these crimes", - "values": [ - "Rights of the Child" - ] - }, - { - "text": "Take steps to address the culture of impunity for human rights violations by law enforcement agencies", - "values": [ - "Human rights violations by state agents", - "Impunity" - ] - }, - { - "text": "Incorporate the Sustainable Development Goals in development policies and programmes", - "values": [ - "Development" - ] - }, - { - "text": "Consider stepping up measures to address trafficking vulnerabilities of women and children ", - "values": [ - "Rights of the Child", - "Trafficking", - "Women's rights" - ] - }, - { - "text": "Observe international standards in the regard of migrant workers and members of their families", - "values": [ - "Labour", - "Migrants" - ] - }, - { - "text": "Fully implement the Education for Persons with Special Educational Needs Act 2004 as soon as possible ", - "values": [ - "Disabilities", - "Right to education" - ] - }, - { - "text": "Exchange with other States its successful experience in the field of food security ", - "values": [ - "Right to food" - ] - }, - { - "text": "Consider including human rights education in its school programmes", - "values": [ - "Human rights education and training" - ] - }, - { - "text": "Further scale up the work against the harmful traditional practice of female genital mutilation", - "values": [ - "Rights of the Child", - "Torture and other CID treatment", - "Women's rights" - ] - }, - { - "text": "Ratify both CAT and OP-CAT, and revise its domestic laws to include the provisions of CAT", - "values": [ - "Detention", - "International instruments", - "Torture and other CID treatment" - ] - }, - { - "text": "Ensure that LGBT people can express themselves freely for example, in the Belgrade Pride in 2013 ", - "values": [ - "Freedom of association and peaceful assembly", - "Sexual Orientation and Gender Identity" - ] - }, - { - "text": "Strengthen and standardize measures with a view to ensuring better protection of migrants, refugees and asylum seekers throughout its entire territory", - "values": [ - "Asylum-seekers - refugees", - "Migrants" - ] - }, - { - "text": "Increase the minimum age of criminal responsibility and marriage to 18", - "values": [ - "Justice", - "Rights of the Child" - ] - }, - { - "text": "Recommend greater investment in the education sector and improvement of the quality and coverage of Rwanda's early childhood care and education", - "values": [ - "Right to education", - "Rights of the Child" - ] - }, - { - "text": "Make further efforts to ensure the implementation of the legal framework which guarantees human rights, including the Constitution ", - "values": [ - "General" - ] - }, - { - "text": "Accelerate, as appropriate, the pursuit of the worthy objectives set out in the National Development Plan 2008-2011 ", - "values": [ - "Development" - ] - }, - { - "text": "Take concrete and immediate measures to guarantee the independence and the impartiality of the judiciary", - "values": [ - "Justice" - ] - }, - { - "text": "Accede to the International Convention on the Protection of the Rights of All Migrant Workers and Members of Their Families, as another significant step in the protection of human rights", - "values": [ - "International instruments", - "Labour", - "Migrants" - ] - }, - { - "text": "Take measures to effectively guarantee freedom of expression, assembly and association, prevent censorship and undue control of the media, protect journalists and investigate all attacks against them", - "values": [ - "Freedom of association and peaceful assembly", - "Freedom of opinion and expression", - "Freedom of the press" - ] - }, - { - "text": "Make a long-term plan for the step-by-step ratification of or accession to all core international human rights instruments", - "values": [ - "International instruments" - ] - }, - { - "text": "Stay the course to implement legal, institutional, economic and social reforms to combat corruption, in particular, intensify efforts and strengthen programmes to combat corruption at all levels", - "values": [ - "Corruption" - ] - }, - { - "text": "Cease the recruitment and use of children in armed conflict", - "values": [ - "International humanitarian law", - "Rights of the Child" - ] - }, - { - "text": "Adopt provisions prohibiting polygamy, early marriages, female genital mutilation and levirate", - "values": [ - "Rights of the Child", - "Torture and other CID treatment", - "Women's rights" - ] - }, - { - "text": "Take concrete steps to tackle human trafficking, in particular by strengthening the work of the National Steering Committee on Anti-Human Trafficking", - "values": [ - "Trafficking" - ] - }, - { - "text": "Improve health-care efforts, especially to reduce child mortality and the prevalence rate of HIV and AIDS ", - "values": [ - "HIV - Aids", - "Right to health", - "Rights of the Child" - ] - }, - { - "text": "Take measures to bring the situation of persons in custody in line with international standards, including the length of pre-trial detention", - "values": [ - "Detention" - ] - }, - { - "text": "Sign and ratify core international human rights instruments, including the International Covenant on Civil and Political Rights (ICCPR) and the International Covenant on Economic, Social and Cultural Rights (ICESCR)", - "values": [ - "CP rights - general", - "ESC rights - general", - "International instruments" - ] - }, - { - "text": "Align the national anti-discrimination legislation with the European Union standards, in particular in relation to the rights of LGBTI persons", - "values": [ - "Sexual Orientation and Gender Identity" - ] - }, - { - "text": "Develop national human rights indicators, as suggested by the OHCHR, as an instrument that allows for a more precise and coherent evaluation of its national human rights policies", - "values": [ - "General" - ] - }, - { - "text": "Train security forces to respect freedoms of expression and assembly", - "values": [ - "Freedom of association and peaceful assembly", - "Freedom of opinion and expression", - "Human rights education and training" - ] - }, - { - "text": "Step up consultations to better prepare national opinion for the ratification of the Second Optional Protocol to the International Covenant on Civil and Political Rights, aiming at the abolition of the death penalty ", - "values": [ - "Death penalty", - "International instruments" - ] - }, - { - "text": "Continue to strengthen measures to improve access to justice and education to women and girls in rural areas", - "values": [ - "Justice", - "Right to education", - "Rights of the Child", - "Women's rights" - ] - }, - { - "text": "Take firm measures to combat cross-border trafficking in women for sexual and other exploitative purposes and align its Criminal Code with the international and European Union law on trafficking in human beings", - "values": [ - "Trafficking", - "Women's rights" - ] - }, - { - "text": "Undertake legislative amendments to ensure migrant women and girls have equal access to nationals to public health-care services", - "values": [ - "Migrants", - "Right to health", - "Women's rights" - ] - }, - { - "text": "To take all measures to prevent any kind of reappearance of Nazism and not to let any such acts go unpunished.", - "values": [ - "Racial discrimination" - ] - }, - { - "text": "Adopt a national plan to support the rights of children and to protect them from all forms of abuse, exploitation and violence", - "values": [ - "Rights of the Child" - ] - }, - { - "text": "Establish its national preventive mechanism according to the Protocol to the Convention against Torture", - "values": [ - "Detention", - "International instruments", - "Torture and other CID treatment" - ] - }, - { - "text": "Become party to ICERD", - "values": [ - "International instruments", - "Racial discrimination" - ] - }, - { - "text": "Put in place technical assistance programmes in order to strengthen Fiji's national capacities in the area of human rights", - "values": [ - "Technical assistance and cooperation" - ] - }, - { - "text": "Continue working on the full implementation of the National Plan against Racism and All Forms of Discrimination ", - "values": [ - "Racial discrimination" - ] - }, - { - "text": "Continue work in areas of discrimination against women and children", - "values": [ - "Rights of the Child", - "Women's rights" - ] - }, - { - "text": "Launch a Universal Birth Registration Strategy to improve the level of birth registration in the country ", - "values": [ - "Rights of the Child", - "Statelessness and the right to nationality" - ] - }, - { - "text": "Consider taking necessary measures to prevent and combat discrimination towards minorities, and positively consider the recommendation of the Committee on the Elimination of Racial Discrimination on the prevention of segregation of Roma children in the field of education ", - "values": [ - "Minorities", - "Racial discrimination", - "Rights of the Child", - "Treaty bodies" - ] - }, - { - "text": "Take immediate measures to end discrimination against its citizens for the alleged sins of their grandparents under the songbun system, ensure gender equality in practice, and address violence against women and girls", - "values": [ - "Justice", - "Rights of the Child", - "Women's rights" - ] - }, - { - "text": "Complete the process of fully implementing its obligations under the Rome Statute into domestic law, in particular by adopting provisions that allow for full cooperation with the International Criminal Court", - "values": [ - "International instruments", - "Justice" - ] - }, - { - "text": "Change its policy in order for the commutation of death sentences to be effectively claimed for all Canadian citizens sentenced to the death penalty abroad ", - "values": [ - "Death penalty" - ] - }, - { - "text": "Formulate a national plan to address violence against children that will include aspects of prevention, care and reparations as well as launch public awareness programmes on child abuse ", - "values": [ - "Rights of the Child" - ] - }, - { - "text": "Use consultations to ensure that a truth and reconciliation commission and a special tribunal be established as soon as possible.", - "values": [ - "Justice" - ] - }, - { - "text": "Continue international cooperation and support international efforts to reach a peaceful and comprehensive settlement to the crisis in the Syrian Arab Republic", - "values": [ - "Technical assistance and cooperation" - ] - }, - { - "text": "Improve the situation of workers, in particular migrant workers, by providing them with the necessary protection", - "values": [ - "Labour", - "Migrants" - ] - }, - { - "text": "Consider measures to make the Continuing Committee of Officials on Human Rights more operational, ensure its better accessibility for the civil society enabling thus a permanent dialogue process on international human rights obligations including those from the Universal Periodic Review", - "values": [ - "Civil society", - "International instruments", - "UPR process" - ] - }, - { - "text": "Adopt legislation clearly prohibiting all corporal punishment of children in all settings", - "values": [ - "Rights of the Child", - "Torture and other CID treatment" - ] - }, - { - "text": "Take all appropriate measures for the effective implementation of its voluntary commitment in terms of international cooperation to work towards food security and gender equality", - "values": [ - "Right to food", - "Technical assistance and cooperation", - "Women's rights" - ] - }, - { - "text": "Increase its efforts on strengthening protection of children's rights in such areas as child labor, domestic violence, trafficking and sexual exploitation", - "values": [ - "Labour", - "Rights of the Child", - "Trafficking" - ] - }, - { - "text": "Continue to integrate human rights approaches into its policies and education at various levels ", - "values": [ - "Human rights education and training" - ] - }, - { - "text": "Harmonize anti-discrimination laws", - "values": [ - "Other" - ] - }, - { - "text": "Continue to ensure effective protection of victims of domestic violence", - "values": [ - "Rights of the Child", - "Women's rights" - ] - }, - { - "text": "Continue to meet the basic needs of vulnerable groups in the country, especially women, children, the elderly and persons with disabilities ", - "values": [ - "Disabilities", - "Rights of the Child", - "Women's rights" - ] - }, - { - "text": "Continue its combat against the use of child labour, especially in the mining industry and cocoa production, including implementation of measures on their rehabilitation, reintegration and education", - "values": [ - "Business and human rights", - "Labour", - "Right to education", - "Rights of the Child" - ] - }, - { - "text": "Adopt the measures necessary to combat de facto and de jure discrimination against migrants in irregular situations", - "values": [ - "Migrants", - "Racial discrimination" - ] - }, - { - "text": "Strengthen existing mechanisms as well as create new legal policies that prevent and combat human trafficking", - "values": [ - "Trafficking" - ] - }, - { - "text": "Pursue its efforts to create a national human rights institution under the Pacific Plan.", - "values": [ - "National Human Rights Institution" - ] - }, - { - "text": "Adopt all necessary measures to ensure that the press could work freely.", - "values": [ - "Freedom of the press" - ] - }, - { - "text": "Set up an independent human rights institution in charge of coordinating the implementation of human rights in the whole country", - "values": [ - "National Human Rights Institution" - ] - }, - { - "text": "Strengthen and where appropriate develop mechanisms to address impunity and incidences particularly of trafficking in persons and gender violence including sexual violence against women and children including through capacity building and technical assistance as requested by the TFG from relevant multilateral and bilateral partners", - "values": [ - "Impunity", - "Rights of the Child", - "Technical assistance and cooperation", - "Trafficking", - "Women's rights" - ] - }, - { - "text": "Consider the possibility of ratification of the Convention on the Rights of Persons with Disabilities ", - "values": [ - "Disabilities", - "International instruments" - ] - }, - { - "text": "Address the cultural and economic situation of ethnic minorities ", - "values": [ - "ESC rights - general", - "Minorities" - ] - }, - { - "text": "Improve access of women to reproductive health and related services, in particular in the case of women living in rural areas, as well as adopt measures to banish the practice of female genital mutilation ", - "values": [ - "Right to health", - "Rights of the Child", - "Torture and other CID treatment", - "Women's rights" - ] - }, - { - "text": "Strengthen its measures to ensure that poverty does not preclude children from attending school and that schools are free from discrimination for girls and boys alike ", - "values": [ - "Rights of the Child" - ] - }, - { - "text": "Adopt an effective legal framework for the protection of human rights activists in line with the Declaration on Human Rights Defenders. ", - "values": [ - "Human rights defenders", - "International instruments" - ] - }, - { - "text": "Ratify the Kampala Amendments to the Rome Statute of the International Criminal Court ", - "values": [ - "International instruments", - "Justice" - ] - }, - { - "text": "Declare a moratorium on the death penalty", - "values": [ - "Death penalty" - ] - }, - { - "text": "Continue taking appropriate measures to narrow the gap between the rich and the poor. The international community must also rise to the occasion and help Nepal in its efforts ", - "values": [ - "Poverty", - "Technical assistance and cooperation" - ] - }, - { - "text": "Combat child poverty, in particular that which affects Maori children, those who live in the Pacific islands and children with disabilities ", - "values": [ - "Disabilities", - "Indigenous peoples", - "Poverty", - "Rights of the Child" - ] - }, - { - "text": "Continue consolidating its health system, particularly in the mother-child area", - "values": [ - "Right to health", - "Rights of the Child", - "Women's rights" - ] - }, - { - "text": "Engage actively in the fight against the misuse of power by the security forces ", - "values": [ - "Human rights violations by state agents" - ] - }, - { - "text": "Continue to be supported in its endeavours to address the issue of violence against women", - "values": [ - "Women's rights" - ] - }, - { - "text": "Increase the representation of women in decision-making positions", - "values": [ - "Women's rights" - ] - }, - { - "text": "Further continue its efforts to improve the rights of children, ensure that the Omani Law of the Child is enforced and consider developing a comprehensive national plan of action for children", - "values": [ - "Rights of the Child" - ] - }, - { - "text": "Deepen its efforts to improve accountability structures with the view to eradicate impunity", - "values": [ - "Impunity" - ] - }, - { - "text": "Consider the visits by the special rapporteurs on human rights defenders, extrajudicial, summary or arbitrary executions, independence of judges and lawyers, and the Working Group on Arbitrary Detentions.", - "values": [ - "Detention", - "Extrajudicial executions", - "Human rights defenders", - "Justice", - "Special procedures" - ] - }, - { - "text": "Pursue its awareness-raising efforts on the importance of birth registration, provide birth certificates and protect persons from the consequences of non-registration", - "values": [ - "Human rights education and training", - "Rights of the Child", - "Statelessness and the right to nationality" - ] - }, - { - "text": "Continue to prioritise the fight against poverty and hunger within the framework of the National Development Plan", - "values": [ - "Poverty", - "Right to food" - ] - }, - { - "text": "Undertake appropriate measures to further improve the condition of detainees in prisons as stipulated in the United Nations standard minimum rules for the treatment of prisoners.", - "values": [ - "Detention" - ] - }, - { - "text": "Make even greater efforts in the right to education.", - "values": [ - "Right to education" - ] - }, - { - "text": "Strengthen its efforts to reform its criminal procedure law in order to guarantee a fair and timely legal process ", - "values": [ - "Justice" - ] - }, - { - "text": "Address improving the conditions in its penitentiary facilities as outlined in the Government's Law and Justice Sector Plan ", - "values": [ - "Detention" - ] - }, - { - "text": "Put an end to the occupation of all Arab and Palestinian territories, including the Syrian Golan", - "values": [ - "Other" - ] - }, - { - "text": "Take necessary measures to implement a national public awareness campaign on children's rights", - "values": [ - "Human rights education and training", - "Rights of the Child" - ] - }, - { - "text": "Establish a de jure moratorium on the death penalty with a view to its abolishment and ensure the death penalty is commuted to prison penalties", - "values": [ - "Death penalty" - ] - }, - { - "text": "Accelerate the reforms aimed at ensuring the independence of the judiciary ", - "values": [ - "Justice" - ] - }, - { - "text": "Abolish the death penalty in domestic law for all crimes, adopt an immediate official moratorium on executions and commute without delay all death sentences into prison sentences", - "values": [ - "Death penalty" - ] - }, - { - "text": "Initiate a process of revision of the Penal Code and laws on publications which includes civil society and international experts and is based on international standards", - "values": [ - "Civil society", - "Justice" - ] - }, - { - "text": "Protect migrant workers from exploitation by ensuring that applicable laws and practices conform to international labour standards set by ILO", - "values": [ - "International instruments", - "Labour", - "Migrants" - ] - }, - { - "text": "Accelerate efforts in establishing a national network of schools that guarantee equality of access to children irrespective of their religious, cultural or social background", - "values": [ - "Right to education", - "Rights of the Child" - ] - }, - { - "text": "Improve and ensure access to complaint mechanisms for detainees in case of mistreatment.", - "values": [ - "Detention" - ] - }, - { - "text": "Adopt concrete policy measures to eradicate the clandestine practice of female mutilation and to allocate human and financial resources to relevant authorities to succeed", - "values": [ - "Rights of the Child", - "Torture and other CID treatment", - "Women's rights" - ] - }, - { - "text": "Introduce measures to address issues related to the treatment of persons with disabilities, including considering the implementation of recommendations from both the Australian Law Reform Commission's report on Equality, Capacity and Disability in Commonwealth Laws, and the Senate inquiry into high levels of violence and abuse of persons with disabilities in institutional and residential settings", - "values": [ - "Disabilities" - ] - }, - { - "text": "Ratify the three remaining core ILO conventions and enforce ratified conventions and the relevant labour laws effectively, with a special focus on the elimination of forced labour (ILO Convention No. 29), while continuing to work in close and active cooperation with ILO and other international organizations ", - "values": [ - "International instruments", - "Labour" - ] - }, - { - "text": "Investigate allegations of abuses against workers of the Olympic Complex of Sochi ", - "values": [ - "Labour" - ] - }, - { - "text": "Adequately resource and implement the Mental Health Act of 2007", - "values": [ - "Right to health" - ] - }, - { - "text": "Strengthen the independence and impartiality of the judiciary", - "values": [ - "Justice" - ] - }, - { - "text": "Intensify efforts to ensure gender equality and eliminate sexual and gender-based violence", - "values": [ - "Women's rights" - ] - }, - { - "text": "Step up efforts aimed at strengthening the independence of both of the judiciary and the media ", - "values": [ - "Freedom of the press", - "Justice" - ] - }, - { - "text": "Adopt legal measures and other measures to supervise the implementation of the CRC in the occupied Arab territories and, in conformity with this convention, apply a definition of the child as a person under the age of 18 in the Palestinian territories as well", - "values": [ - "International instruments", - "Rights of the Child" - ] - }, - { - "text": "Set up plans promoting inclusive education of ethnic minorities, which have high levels of school dropout", - "values": [ - "Minorities", - "Right to education" - ] - }, - { - "text": "Step up efforts to tackle the practice of early and forced marriages", - "values": [ - "Rights of the Child", - "Women's rights" - ] - }, - { - "text": "Acknowledge the harm done to the victims of discrimination against Roma, bring the perpetrators to justice and provide reparations to the victims", - "values": [ - "Minorities", - "Racial discrimination" - ] - }, - { - "text": "Continue the efforts of the Government to endow the national human rights institution with sufficient budgetary resources", - "values": [ - "National Human Rights Institution" - ] - }, - { - "text": "Hold security forces and government officials accountable for human rights violations and abuses", - "values": [ - "Human rights violations by state agents" - ] - }, - { - "text": "Consider positively declaring a moratorium on the application of the death penalty with a view to abolishing it", - "values": [ - "Death penalty" - ] - }, - { - "text": "Continue its efforts to ensure that children with disabilities exercise their right to education to the fullest extent possible and facilitate their integration into the general education system ", - "values": [ - "Disabilities", - "Right to education", - "Rights of the Child" - ] - }, - { - "text": "Ratify/accede to the Rome Statute of the International Criminal Court, to implement it fully at national level and to accede to the Agreement on the Privileges and Immunities of the International Criminal Court", - "values": [ - "International instruments", - "Justice" - ] - }, - { - "text": "Adopt measures to eliminate all forms of violence against women including by ensuring that the perpetrators are prosecuted and punished and that the required protection and assistance is provided for the victims", - "values": [ - "Women's rights" - ] - }, - { - "text": "Continue and intensify efforts to promote access for persons of foreign origin to the public function, especially among the most disadvantaged", - "values": [ - "Minorities" - ] - }, - { - "text": "Introduce appropriate law to prohibit racially motivated activities and to punish perpetrators of such acts, including law enforcement agents ", - "values": [ - "Human rights violations by state agents", - "Racial discrimination" - ] - }, - { - "text": "Strengthen measures to eradicate violence against women and children, especially those belonging to indigenous peoples and diverse ethnic groups ", - "values": [ - "Indigenous peoples", - "Minorities", - "Rights of the Child", - "Women's rights" - ] - }, - { - "text": "Commit to implementing the recommendations made after the review of its report submitted to the Committee against Torture and end physical and mental torture of Arab prisoners", - "values": [ - "Detention", - "Torture and other CID treatment", - "Treaty bodies" - ] - }, - { - "text": "Sign or ratify the following international convention: CRPD ", - "values": [ - "Disabilities", - "International instruments" - ] - }, - { - "text": "Take measures to further reduce women's illiteracy rate and increase girls' school enrolment rate", - "values": [ - "Right to education", - "Rights of the Child", - "Women's rights" - ] - }, - { - "text": "Become a party to the Second Optional Protocol to the International Covenant on Civil and Political Rights", - "values": [ - "Death penalty", - "International instruments" - ] - }, - { - "text": "Stop the aerial bombardments and the indiscriminate attacks against civilians", - "values": [ - "International humanitarian law" - ] - }, - { - "text": "Become a party to the remaining United Nations Human Rights instruments ", - "values": [ - "International instruments" - ] - }, - { - "text": "Elaborate a gender-sensitive approach in the programmes and policies which address human rights discrimination and take the necessary actions to raise awareness on attitudes and stereotypes targeting women and sexual minorities in society", - "values": [ - "Human rights education and training", - "Sexual Orientation and Gender Identity", - "Women's rights" - ] - }, - { - "text": "Take measures to ensure that security forces, including police, armed forces and Basij, do not use excessive force against those exercising their right to freedom of expression, association and assembly", - "values": [ - "Freedom of association and peaceful assembly", - "Freedom of opinion and expression", - "Human rights violations by state agents" - ] - }, - { - "text": "Take the necessary steps to combat sexual trafficking and abuses of children, including through improving the judicial system, strengthening the relevant government institutions and providing educational treatment and restorative support to the victims", - "values": [ - "Justice", - "Rights of the Child", - "Trafficking" - ] - }, - { - "text": "Create independent focal points on the human rights of children to monitor and ensure the implementation of the Convention on the Rights of the Child and the Optional Protocols thereto", - "values": [ - "International instruments", - "Rights of the Child" - ] - }, - { - "text": "Pursue its efforts in the promotion and enhancement of human rights by taking necessary measures to achieve this goal", - "values": [ - "General" - ] - }, - { - "text": "(1) Effectively preventing displacement. (2) Making rights-enjoyment indicators consistent. (3) Consolidating the income-generation, re-housing and return programmes and the time forcibly displaced persons have access to them. (4) Reinforcing the differentiated approach. (5) Applying reparation policy to the displaced population.", - "values": [ - "Internally displaced persons" - ] - }, - { - "text": "Withdraw its reservations to various international human rights instruments so as to allow complaints both by individuals and from other States parties", - "values": [ - "International instruments" - ] - }, - { - "text": "Adopt temporary special measures in all areas in which women are underrepresented, especially in the labour market and higher education ", - "values": [ - "Women's rights" - ] - }, - { - "text": "Ensure that perpetrators of violence, including against non-ethnic Germans, are identified and prosecuted to the fullest extent of the law", - "values": [ - "Minorities", - "Racial discrimination" - ] - }, - { - "text": "The subject of special protection for same-sex couples has appeared on the public agenda in Colombia, and has led to important developments in jurisprudence. The Constitutional Court has on various occasions upheld the right of same-sex couples to equality. It has recognized that a de facto marital union (and the ensuing property rights), access to the mandatory health scheme and access to a survivor's pension must be safeguarded for same-sex couples on the same terms as for heterosexual couples. Colombia now faces the challenge of continuing to advance in this area.", - "values": [ - "Sexual Orientation and Gender Identity" - ] - }, - { - "text": "Allocate more resources to social protection, including cash transfers to the most vulnerable groups in the society", - "values": [ - "ESC rights - general" - ] - }, - { - "text": "Make further efforts to promote the culture of human rights and human rights education", - "values": [ - "Human rights education and training" - ] - }, - { - "text": "Set the minimum age for contracting marriage at 18 years for girls and boys ", - "values": [ - "Rights of the Child" - ] - }, - { - "text": "Promote legislation conforming fully to the Convention on the Elimination of All Forms of Discrimination against Women", - "values": [ - "International instruments", - "Women's rights" - ] - }, - { - "text": "Prior to the next cycle of the UPR for Fiji, take further steps in the consideration of extending an invitation to special rapporteurs", - "values": [ - "Special procedures", - "UPR process" - ] - }, - { - "text": "Ensure prompt, impartial and comprehensive investigations of all complaints of torture or cruel, inhuman or degrading treatment or punishment of persons subjected to any form of arrest, detention or imprisonment ", - "values": [ - "Torture and other CID treatment" - ] - }, - { - "text": "Take necessary measures to ensure that the National Human Rights Institution is brought into compliance with the Paris Principles", - "values": [ - "National Human Rights Institution" - ] - }, - { - "text": "Ensure that the Protection of State Information Bill, when adopted, fully complies with international human rights law ", - "values": [ - "Freedom of opinion and expression", - "International instruments" - ] - }, - { - "text": "Ban child marriage", - "values": [ - "Rights of the Child", - "Women's rights" - ] - }, - { - "text": "Accede to the core international human rights instruments in a timely manner ", - "values": [ - "International instruments" - ] - }, - { - "text": "Implement further reforms to ensure full recognition of the rights of the Kurdish and other minorities, including by withdrawing its reservation to article 27 of the ICCPR ", - "values": [ - "International instruments", - "Minorities" - ] - }, - { - "text": "Undertake effective measures against torture and ill-treatment including human rights training of law enforcement bodies ", - "values": [ - "Human rights education and training", - "Torture and other CID treatment" - ] - }, - { - "text": "Strengthen domestic legislation on the prevention of torture in accordance with CAT ", - "values": [ - "International instruments", - "Torture and other CID treatment" - ] - }, - { - "text": "Ratify/accede to OP-CAT", - "values": [ - "Detention", - "International instruments", - "Torture and other CID treatment" - ] - }, - { - "text": "Accelerate the establishment of a national commission on persons with disabilities", - "values": [ - "Disabilities" - ] - }, - { - "text": "Continue promoting the sound social policies implemented to eradicate poverty and inequality", - "values": [ - "Poverty" - ] - }, - { - "text": "Ensure that all human rights defenders, including individuals cooperating with UN HR mechanisms, are protected effectively from unjustified criminalization, harassment or intimidation and can perform freely their legitimate duties", - "values": [ - "Human rights defenders", - "Special procedures", - "Treaty bodies", - "UPR process" - ] - }, - { - "text": "Continue its efforts to promptly complete the legal procedures to establish a National Preventive Mechanism", - "values": [ - "Torture and other CID treatment" - ] - }, - { - "text": "Continue its efforts to ensure the right to education for all people", - "values": [ - "Right to education" - ] - }, - { - "text": "Enact draft human trafficking legislation to improve prosecution of trafficking offenders and protections for victims of forced labour and sex trafficking", - "values": [ - "Labour", - "Trafficking" - ] - }, - { - "text": "Continue to guarantee non-discrimination for all and share further experiences with regard to the new integration policies with regard to guaranteeing human rights", - "values": [ - "Racial discrimination" - ] - }, - { - "text": "Take additional measures to prevent the poor and marginalized children from early entry into the labour market and provide incentives for them to enrol in school", - "values": [ - "Labour", - "Right to education", - "Rights of the Child" - ] - }, - { - "text": "Step up its efforts to protect the rights of the child, especially those living in situations of poverty, victims of child prostitution, and children with disabilities. In this regard, conduct a comprehensive review of its national legislation to guarantee the full application of the principle of nondiscrimination and adopt a national strategy to remedy this situation as recommended by the Committee on the Rights of the Child in 2004 ", - "values": [ - "Rights of the Child", - "Treaty bodies" - ] - }, - { - "text": "Continue its efforts to take the necessary measures to combat the trafficking and smuggling of persons and to protect and assist the victims ", - "values": [ - "Trafficking" - ] - }, - { - "text": "Continue human rights education and training \n\n", - "values": [ - "Human rights education and training" - ] - }, - { - "text": "Positively consider the establishment of a national human rights institution in accordance with the Paris Principles", - "values": [ - "National Human Rights Institution" - ] - }, - { - "text": "Increase government spending on education and in the fight against AIDS, tuberculosis and malaria", - "values": [ - "HIV - Aids", - "Right to education", - "Right to health" - ] - }, - { - "text": "Improve the health-care infrastructure, particularly by paying special attention to enhancing access to health care for women in poor and rural areas", - "values": [ - "Right to health", - "Women's rights" - ] - }, - { - "text": "Invite the Special Rapporteur on trafficking in persons, especially women and children, to visit the country.", - "values": [ - "Special procedures", - "Trafficking" - ] - }, - { - "text": "Allow for the full independence and effective functioning of the Fiji Human Rights Commission to ensure that the fundamental rights and freedoms of all persons, including, inter alia, freedom of religion or belief, expression or opinion, association and peaceful assembly, are respected", - "values": [ - "Freedom of association and peaceful assembly", - "Freedom of opinion and expression", - "Freedom of religion and belief", - "National Human Rights Institution" - ] - }, - { - "text": "Strengthen the measures to combat violence against women, especially domestic violence", - "values": [ - "Women's rights" - ] - }, - { - "text": "Strengthen efforts at maintaining an efficient, impartial and independent judiciary as a critical pillar in the administration of justice", - "values": [ - "Justice" - ] - }, - { - "text": "Separate children from adults in detention in line with the recommendations of the Committee on the Rights of Children, enhance training programmes on relevant international standards for all professionals involved with the system of juvenile justice and ensure the full implementation of juvenile justice standards of the Convention on the Rights of the Child ", - "values": [ - "Detention", - "Human rights education and training", - "International instruments", - "Rights of the Child", - "Treaty bodies" - ] - }, - { - "text": "Further strengthen the institutional framework for the protection of freedoms of press and expression and guarantee these rights to all citizens", - "values": [ - "Freedom of opinion and expression", - "Freedom of the press" - ] - }, - { - "text": "Take the necessary legislative, administrative and financial measures to ensure the independence of the judiciary, including ending administrative and financial control by the executive and ensuring that the Higher Council of the Judiciary is not under the authority of the executive ", - "values": [ - "Justice" - ] - }, - { - "text": "Speed up the consideration of accession to the Optional Protocol to the Convention on the Rights of the Child on the sale of children", - "values": [ - "International instruments", - "Rights of the Child", - "Trafficking" - ] - }, - { - "text": "Continue to promote the right to social security and adequate standard of living for its people", - "values": [ - "ESC rights - general" - ] - }, - { - "text": "Keep studying the legal norms on the forms of employment of persons with disabilities and update them when necessary ", - "values": [ - "Development", - "Disabilities" - ] - }, - { - "text": "Continue and further intensify the programs on combating HIV/AIDS ", - "values": [ - "HIV - Aids" - ] - }, - { - "text": "Implement all international resolutions confirming the need to preserve the character and characteristics of Jerusalem, not to change its legal status and to preserve its Islamic and Christian spiritual monuments and symbols.", - "values": [ - "Freedom of religion and belief" - ] - }, - { - "text": "Implement laws and policies to protect children from economic exploitation, including from all forms of child labor and child begging, and that aim at ensuring that street children go to school", - "values": [ - "Labour", - "Right to education", - "Rights of the Child" - ] - }, - { - "text": "Abrogate or amend legislation, such as the Internal Security Act (ISA), that restricts fundamental freedoms in the name of national security or the economic life of the state, fosters the arbitrary arrest and detention of persons without granting access to judicial review, hinders the right to a fair trial, and acts to repress the free expression of human rights defenders and other members of civil society", - "values": [ - "Civil society", - "Detention", - "Freedom of opinion and expression", - "Human rights defenders", - "Justice" - ] - }, - { - "text": "Adopt effective measures to eradicate violence against the lesbian, gay, bisexual, transsexual and intersex group, as well as the inclusion within the Charter of Rights adopted in 2011 of a provision for no discrimination on grounds of sexual orientation", - "values": [ - "Sexual Orientation and Gender Identity" - ] - }, - { - "text": "Take further measures to increase the political representation of indigenous peoples, and expand the dialogue with these communities so that they can better represent their perspectives in the decision-making process", - "values": [ - "Indigenous peoples" - ] - }, - { - "text": "Ensure the application in the private sector of the provisions against sexual harassment of the Labour and Employment Relations Act", - "values": [ - "Women's rights" - ] - }, - { - "text": "Deepen awareness measures against racial discrimination and xenophobia, particularly by criminalizing behaviors such as incitement to hatred", - "values": [ - "Freedom of religion and belief", - "Racial discrimination" - ] - }, - { - "text": "Investigate killings and violence against journalists and hold perpetrators accountable", - "values": [ - "Extrajudicial executions", - "Freedom of the press" - ] - }, - { - "text": "Take effective measures to combat child labor and sexual exploitation of children as well as forced marriages ", - "values": [ - "Labour", - "Rights of the Child", - "Women's rights" - ] - }, - { - "text": "Strengthen efforts for the prevention of cases of intercommunal violence", - "values": [ - "Public security" - ] - }, - { - "text": "Make every effort to put an end to the cases of kidnapping of citizens, trafficking in persons, human smuggling, and similar offences ", - "values": [ - "Trafficking" - ] - }, - { - "text": "Take all measures necessary to ensure the rights of the Roma people under article 27 of the International Covenant on Civil and Political Rights, specifically by amending the 1999 Act, which lays down this creation of connection with a specific territory", - "values": [ - "International instruments", - "Minorities" - ] - }, - { - "text": "Speed up the implementation of ICRMW, to which the Dominican Republic has committed itself to acceding ", - "values": [ - "International instruments", - "Labour", - "Migrants" - ] - }, - { - "text": "Take new measures to eliminate all forms of discrimination against women and to promote their participation in public life, including in decision-making positions and governmental functions", - "values": [ - "Women's rights" - ] - }, - { - "text": "Adopt a progressive strategy aimed at increasing educational opportunities and improving the housing and living conditions of the Roma community", - "values": [ - "Minorities", - "Right to education", - "Right to housing" - ] - }, - { - "text": "Engage firmly against sexual violence, ensure the right of victims to obtain justice and redress, combat persistent impunity and strengthen the capacities of the national agency fighting against sexual violence", - "values": [ - "Impunity", - "Rights of the Child", - "Women's rights" - ] - }, - { - "text": "Continue implementation of the National Monitoring and Evaluation Plan for the National Operational Plan for HIV and AIDS (2012-2016) ", - "values": [ - "HIV - Aids" - ] - }, - { - "text": "Guarantee the closure of the Saint Patrick's Institution and the effective implementation of the Children (Amendment) Act of 2015 and the Prisons Act of 2015 ", - "values": [ - "Detention", - "Rights of the Child" - ] - }, - { - "text": "Withdraw reservations to Convention on the Elimination of all forms of Discrimination against Women ", - "values": [ - "International instruments", - "Women's rights" - ] - }, - { - "text": "Strengthen and widen the scope of the awareness campaigns against child abuse, as well as the establishment of the Action Team on Child Protection to oversee cases of abuse, including corporal punishment ", - "values": [ - "Rights of the Child", - "Torture and other CID treatment" - ] - }, - { - "text": "Consider, possibly within the framework of a desirable re-orientation of European policy, ratifying the International Convention on the Protection of the Rights of All Migrant Workers and Members of Their Families, even if initially with reservations", - "values": [ - "International instruments", - "Labour", - "Migrants" - ] - }, - { - "text": "Mobilize adequate resources to complete its second National Action Plan on Fundamental and Human Rights", - "values": [ - "General" - ] - }, - { - "text": "Make primary education free throughout the territory", - "values": [ - "Right to education" - ] - }, - { - "text": "Reinforce the mechanisms for combating racism, racial discrimination, xenophobia and other forms of intolerance which affect migrants, foreigners and ethnic minorities ", - "values": [ - "Migrants", - "Minorities", - "Racial discrimination" - ] - }, - { - "text": "Allocate adequate financial resources for the Human Rights Defender and ensure the continuity of work of the regional offices", - "values": [ - "National Human Rights Institution" - ] - }, - { - "text": "Continue reinforcing and protecting the rights of migrants", - "values": [ - "Migrants" - ] - }, - { - "text": "Continue ensuring systematic training for all personnel working in the juvenile justice system, including police, lawyers and judges ", - "values": [ - "Human rights education and training", - "Justice", - "Rights of the Child" - ] - }, - { - "text": "Ensure all relevant domestic laws include disability as a prohibited ground of discrimination ", - "values": [ - "Disabilities" - ] - }, - { - "text": "Take measures to ensure respect for the basic rights of the people, such as their rights to food and safe drinking water, as well as welfare, such as health care, during times of conflict", - "values": [ - "Right to food", - "Right to health", - "Right to water and sanitation" - ] - }, - { - "text": "Abolish the death penalty and sign and ratify the Second Optional Protocol to ICCPR", - "values": [ - "Death penalty", - "International instruments" - ] - }, - { - "text": "Continue its efforts to ensure women\u2019s equal participation in the workforce and generate employment opportunities for women in rural areas", - "values": [ - "Labour", - "Women's rights" - ] - }, - { - "text": "Strengthen efforts to fulfil its obligations under CEDAW, including by full implementation of the Domestic Violence Act", - "values": [ - "International instruments", - "Rights of the Child", - "Women's rights" - ] - }, - { - "text": "Amend legislation and regulations in order to ensure universal birth registration for children born in its territory", - "values": [ - "Rights of the Child", - "Statelessness and the right to nationality" - ] - }, - { - "text": "Take effective measures to significantly reduce the number of extrajudicial executions and bring those responsible before civil jurisdiction.", - "values": [ - "Extrajudicial executions" - ] - }, - { - "text": "Redouble efforts to combat discrimination against indigenous peoples and people of African descent and, in addition, continue to strengthen the national institute against discrimination, xenophobia and racism", - "values": [ - "Indigenous peoples", - "Minorities", - "Racial discrimination" - ] - }, - { - "text": "Harmonize its process of political, socio-economic and administrative reforms made in accordance with its international human rights obligations", - "values": [ - "International instruments" - ] - }, - { - "text": "Continue to implement measures aimed at guaranteeing universal access to health services", - "values": [ - "Right to health" - ] - }, - { - "text": "Continue its efforts to eradicate domestic violence by putting in place mechanisms to survey the proper implementation of the protocols of action by government agencies and apply appropriate sanctions where such implementation is not in line with the prescribed rules ", - "values": [ - "Rights of the Child", - "Women's rights" - ] - }, - { - "text": "Accompany the policy of setting up provincial committees with sensitization campaigns against gender-based violence and discrimination to better prevent the voluntary recruitment of children in armed groups", - "values": [ - "Human rights education and training", - "Rights of the Child", - "Women's rights" - ] - }, - { - "text": "Ensure systematic provision of adequate information to all refugees and migrants arriving in Greece on asylum procedures, the Eurpoean Union relocation scheme and family reunification possibilities", - "values": [ - "Asylum-seekers - refugees", - "Migrants" - ] - }, - { - "text": "Accelerate the amendments to the relevant legal texts necessary to bring them into conformity with the National Programme on Preventing and Combating Violence against Women", - "values": [ - "Women's rights" - ] - }, - { - "text": "Hold security personnel accountable for human rights violations ", - "values": [ - "Human rights violations by state agents" - ] - }, - { - "text": "Implement the new law (on the protection of human rights defenders, journalist, social communicators and justice officials) through an open consultation and participation process with civil society", - "values": [ - "Civil society", - "Freedom of the press", - "Human rights defenders", - "Justice" - ] - }, - { - "text": "Continue cooperating with the special procedures of the Human Rights Council, in accordance with its voluntary commitment to keeping the invitation to these procedures open", - "values": [ - "Special procedures" - ] - }, - { - "text": "Explore ways of providing the necessary resources to ensure the independent and effective operation of the ombudsman's office", - "values": [ - "National Human Rights Institution" - ] - }, - { - "text": "Ensure that all women and girls have access to affordable and modern contraceptive methods", - "values": [ - "Right to health", - "Women's rights" - ] - }, - { - "text": "Consider the ratification of International Labour Organization Convention No. 169", - "values": [ - "Indigenous peoples", - "International instruments" - ] - }, - { - "text": "Ensure adequate health and counselling support for adolescent mothers and take further steps to encourage the girls' return to school upon delivering their child ", - "values": [ - "Right to education", - "Rights of the Child", - "Women's rights" - ] - }, - { - "text": "Enforce the legal and institutional framework on combating discrimination ", - "values": [ - "Other" - ] - }, - { - "text": "Be complimented for its pioneering and considerable experience in the area of ending employment of children in camel racing.", - "values": [ - "Labour", - "Rights of the Child" - ] - }, - { - "text": "Take effective measures to reduce and combat malaria, HIV/AIDS and tuberculosis", - "values": [ - "HIV - Aids", - "Right to health" - ] - }, - { - "text": "Investigate all allegations of torture and ill-treatment during interrogations in some detention facilities by the police and security forces", - "values": [ - "Detention", - "Human rights violations by state agents", - "Torture and other CID treatment" - ] - }, - { - "text": "Increase efforts to provide human rights education to everyone involved in the judicial process, particularly people working in prisons ", - "values": [ - "Detention", - "Human rights education and training" - ] - }, - { - "text": "Recognize and respect the rights of the Palestinian people to self determination", - "values": [ - "Other" - ] - }, - { - "text": "Take further necessary measures to protect the rights of foreign workers in general and domestic workers in particular ", - "values": [ - "Labour", - "Migrants" - ] - }, - { - "text": "Respond effectively to discrimination and violence against LGBT persons and ensure their safety during public events such as the Belgrade Pride Parade ", - "values": [ - "Sexual Orientation and Gender Identity" - ] - }, - { - "text": "Take measures for improving the access of children to the basic social services", - "values": [ - "Rights of the Child" - ] - }, - { - "text": "Improve reproductive health education and access to adequate health care and treatment for HIV-positive mothers to prevent mother to child transmission", - "values": [ - "HIV - Aids", - "Right to health", - "Rights of the Child", - "Women's rights" - ] - }, - { - "text": "Continue to carry out various programs for the advancement of the status of women and children in the Sultanate", - "values": [ - "Rights of the Child", - "Women's rights" - ] - }, - { - "text": "Adopt measures to guarantee the independence of the judiciary", - "values": [ - "Justice" - ] - }, - { - "text": "The closure of Guantanamo prison as the detention conditions violate the UDHR and ICCPR and the European Convention on Human Rights - ECHR - and all other related human rights instruments", - "values": [ - "Detention", - "International instruments" - ] - }, - { - "text": "Continue ensuring a high level of social welfare, health and education services for Kuwait's population", - "values": [ - "ESC rights - general", - "Right to education", - "Right to health" - ] - }, - { - "text": "Consider the possibility of acceding to the Optional Protocol to the Convention on the Rights of the Child on the sale of children", - "values": [ - "International instruments", - "Rights of the Child", - "Trafficking" - ] - }, - { - "text": "Make additional efforts to strengthen the judicial system, carrying out its reform and the training of judges ", - "values": [ - "Justice" - ] - }, - { - "text": "Reduce the number of persons in the detention centres for migrants and create alternative measures to detention, especially for families with children or unaccompanied minors ", - "values": [ - "Detention", - "Migrants", - "Rights of the Child" - ] - }, - { - "text": "Continue its efforts to combat overcrowding of prisons in order to facilitate the successful reinsertion into society of previously convicted persons ", - "values": [ - "Detention" - ] - }, - { - "text": "To reform, in accordance with the Constitution, the institutions of the Judicial Organ,", - "values": [ - "Justice" - ] - }, - { - "text": "Take necessary measures to fight against discriminatory practices of the police based on ethnic origin", - "values": [ - "Human rights violations by state agents", - "Minorities", - "Racial discrimination" - ] - }, - { - "text": "Consider establishing a national human rights institution in accordance with the Paris Principles", - "values": [ - "National Human Rights Institution" - ] - }, - { - "text": "Continue efforts to implement the 2007 law on domestic violence and prohibit dehumanizing practices against women and girls", - "values": [ - "Rights of the Child", - "Women's rights" - ] - }, - { - "text": "Continue to strengthen its cooperation with United Nations human rights mechanisms, in particular by accepting country visits of special rapporteurs", - "values": [ - "Special procedures", - "Technical assistance and cooperation" - ] - }, - { - "text": "Ensure increased transparency and oversight exercised by civil society of the conditions, in which asylum seekers are kept and treated ", - "values": [ - "Asylum-seekers - refugees", - "Civil society" - ] - }, - { - "text": "Promote a wide as possible consultation process that includes religious leaders, traditional leaders, members of the security forces, staff members of the administration of justice, as well as civil society in order to determine the Government's needs in the fight against slavery and related practices ", - "values": [ - "Civil society" - ] - }, - { - "text": "Take meaningful steps to guarantee in practice the equal and effective enjoyment of culture, profession and practice of religion and use of language by all persons, including those claiming to belong to ethnic, religious and linguistic minorities", - "values": [ - "Freedom of religion and belief", - "Minorities" - ] - }, - { - "text": "Take appropriate action to establish a juvenile justice system", - "values": [ - "Justice", - "Rights of the Child" - ] - }, - { - "text": "Consider the possibility of acceding to the International Covenant on Economic, Social and Cultural Rights, the International Convention on the Protection of the Rights of All Migrant Workers and Members of Their Families", - "values": [ - "ESC rights - general", - "International instruments", - "Labour", - "Migrants" - ] - }, - { - "text": "Continue adopting measures to strengthen institutions in the field of aging ", - "values": [ - "Other" - ] - }, - { - "text": "Take all the necessary measures to implement the Convention on the Rights of Persons with Disabilities at the domestic level ", - "values": [ - "Disabilities", - "International instruments" - ] - }, - { - "text": "Ratify the International Convention on the Protection of all Persons from Enforced Disappearances, the International Covenant on Economic, Social and Cultural Rights and the Convention on the Rights of Persons with Disabilities", - "values": [ - "Disabilities", - "ESC rights - general", - "Enforced disappearances", - "International instruments" - ] - }, - { - "text": "Increase its efforts to fight unemployment, especially among young people", - "values": [ - "Development" - ] - }, - { - "text": "Take administrative and legal measures against perpetrators of racially motivated acts, targeting migrants and minority communities ", - "values": [ - "Migrants", - "Minorities", - "Racial discrimination" - ] - }, - { - "text": "Maintain the age of criminal responsibility for children as it currently stands", - "values": [ - "Rights of the Child" - ] - }, - { - "text": "Continue efforts in implementing and enforcing the national strategy to end violence against children for the period of 2016-2020", - "values": [ - "Rights of the Child" - ] - }, - { - "text": "Repeal the death penalty provision in the constitution of Republika Srpska, so that the existing moratorium gives way to the full abolition of the death penalty", - "values": [ - "Death penalty" - ] - }, - { - "text": "Be assisted by the international community in its efforts to design policies and programmes to ensure suitable solutions are found to deal sensitively with children victims of abuse, including training law enforcement officials, social workers and members of the judiciary on how to receive, monitor, investigate and prosecute complaints ", - "values": [ - "Human rights education and training", - "Rights of the Child", - "Technical assistance and cooperation" - ] - }, - { - "text": "Set measurable objectives and allocate the necessary resources to ensure the effective implementation of the national Roma integration strategy, including with respect to existing initiatives in the various regions aimed at preventing the segregation of Roma children in schools ", - "values": [ - "Minorities", - "Rights of the Child" - ] - }, - { - "text": "Meet all reporting obligations under the core universal human rights treaties and comply fully with the Special Procedures' requests, in the spirit of good faith and cooperation with all relevant mechanisms", - "values": [ - "International instruments", - "Special procedures" - ] - }, - { - "text": "Continue to incorporate the provisions of the human rights conventions, to which it is a party, in its national laws and development policies", - "values": [ - "International instruments" - ] - }, - { - "text": "Ratify the Protocol to the African Charter on Human and Peoples Rights on the Rights of Women in Africa", - "values": [ - "Women's rights" - ] - }, - { - "text": "Accelerate the process of drafting of the constitution, as it plays an extremely important role for the stability of Libya", - "values": [ - "Other" - ] - }, - { - "text": "Promptly follow-up on the recommendations of the Special Rapporteur on violence against women and ensure early enforcement of the Family Protection Act", - "values": [ - "Special procedures", - "Women's rights" - ] - }, - { - "text": "Study the possibility of becoming a party to the Convention for the Protection of All Persons from Enforced Disappearance ", - "values": [ - "Enforced disappearances", - "International instruments" - ] - }, - { - "text": "Raise the minimum age of criminal responsibility to an acceptable level, in compliance with international standards \n", - "values": [ - "Rights of the Child" - ] - }, - { - "text": "Give due attention to the issue of the practice of sponsorship for foreigners, considering that this practice can give rise to serious human rights violations of foreign workers", - "values": [ - "Labour", - "Migrants" - ] - }, - { - "text": "Ratify ICCPR, ICESCR, CERD, CAT and the Rome Statute ", - "values": [ - "CP rights - general", - "ESC rights - general", - "International instruments", - "Justice", - "Racial discrimination", - "Torture and other CID treatment" - ] - }, - { - "text": "Establish a governmental authority to support and advise single mothers and their children", - "values": [ - "Rights of the Child", - "Women's rights" - ] - }, - { - "text": "Concerning the deprivation of liberty of minors, develop and prioritize alternative measures allowing the reintegration of the child into the society and only deprive minors of their liberty as a last resort ", - "values": [ - "Detention", - "Rights of the Child" - ] - }, - { - "text": "Establish an ombudsman institution at the earliest opportunity.", - "values": [ - "National Human Rights Institution" - ] - }, - { - "text": "Strengthen measures to foster training and awareness of public officials, particularly police and justice officials, on relevant human rights issues", - "values": [ - "Human rights education and training" - ] - }, - { - "text": "Extend an invitation to the Working Group on enforced or involuntary disappearances, Independent Expert on minority issues, Special Rapporteur on the right to food, and the Special Rapporteur on the rights of indigenous peoples in order that they visit Indonesia, particularly Papua ", - "values": [ - "Enforced disappearances", - "Indigenous peoples", - "Minorities", - "Right to food", - "Special procedures" - ] - }, - { - "text": "Expedite the ratification of the Istanbul Convention and criminalize domestic violence in order to provide more comprehensive coverage for combating violence against women and girls", - "values": [ - "International instruments", - "Rights of the Child", - "Women's rights" - ] - }, - { - "text": "As a follow-up to the recommendations made in paragraphs 90.45, 90.46, 90.47, 90.48, 90.49, 90.57 and 90.60 of the report of the Working Group on the second review cycle of Poland A/HRC/21/14, reinstate the Council for the Prevention of Racial Discrimination, Xenophobia and Related Intolerance, with a view to addressing racism in sport to demonstrate the authorities\u2019 seriousness in combating such prejudices, in full consultation with key stakeholders", - "values": [ - "National Human Rights Institution", - "Racial discrimination", - "UPR process" - ] - }, - { - "text": "Continue its on-going review of national laws to ensure that they are in line with its international human rights law obligations ", - "values": [ - "International instruments" - ] - }, - { - "text": "Implement the Guiding Principles on Internal Displacement, enact a national law on internal displacement with provisions for protecting displaced children, effectively address the basic needs of persons affected by internal displacement, and take every measure to ensure the protection of civilians.", - "values": [ - "Internally displaced persons", - "Rights of the Child" - ] - }, - { - "text": "Put in place protection measures to prevent, combat and punish perpetrators of violence against women and children, and conduct a campaign to raise awareness on violence against women", - "values": [ - "Human rights education and training", - "Rights of the Child", - "Women's rights" - ] - }, - { - "text": "Improve the structures surrounding the situation for refugees, towards ensuring full respect in accordance with Turkey's obligations under international human rights and refugee law for the right of all persons to seek asylum as well as for the enjoyment of other rights of persons seeking asylum", - "values": [ - "Asylum-seekers - refugees", - "International instruments" - ] - }, - { - "text": "Take measures to include a definition of torture in line with article 7 of the International Covenant on Civil and Political Rights in domestic legislation.", - "values": [ - "International instruments", - "Torture and other CID treatment" - ] - }, - { - "text": "Ensure respect for the right to freedom of expression and assembly, notably during the electoral campaign ", - "values": [ - "Elections", - "Freedom of association and peaceful assembly", - "Freedom of opinion and expression" - ] - }, - { - "text": "Ensure that detainees are afforded fundamental legal and procedural safeguards from the outset of their deprivation of liberty", - "values": [ - "Detention" - ] - }, - { - "text": "Step up its efforts to improve legal aid for destitute people in order to guarantee access to justice and a fair trial for all", - "values": [ - "Justice" - ] - }, - { - "text": "Sign and ratify the Optional Protocol to the International Covenant on Civil and Political Rights", - "values": [ - "CP rights - general", - "International instruments" - ] - }, - { - "text": "Investigate all reports of domestic violence, including the same-sex couples", - "values": [ - "Rights of the Child", - "Sexual Orientation and Gender Identity", - "Women's rights" - ] - }, - { - "text": "Reduce to the minimum possible the administrative detention of migrants, asylum seekers and refugees and only employ such measures in exceptional cases ", - "values": [ - "Asylum-seekers - refugees", - "Detention", - "Migrants" - ] - }, - { - "text": "Continue with the implementation of literacy and remedial education, especially in rural areas", - "values": [ - "Right to education" - ] - }, - { - "text": "Consider the possibility of adopting the necessary measures to eliminate all discriminatory treatment and criminalization based on sexual orientation", - "values": [ - "Sexual Orientation and Gender Identity" - ] - }, - { - "text": "Re-establish a moratorium on executions with a view to abolishing the death penalty", - "values": [ - "Death penalty" - ] - }, - { - "text": "Take into consideration the possibility to amend its criminal code in order to abolish the death penalty", - "values": [ - "Death penalty" - ] - }, - { - "text": "Establish the new National Human Rights Institution in such a way that it can operate effectively and independently, in full compliance with the Paris Principles ", - "values": [ - "National Human Rights Institution" - ] - }, - { - "text": "Strengthen cooperation with human rights mechanisms, which will be helpful to achieve further improvements in various areas.", - "values": [ - "Special procedures" - ] - }, - { - "text": "Continue its efforts to promote and protect the rights of vulnerable groups and provide them with more equal opportunities for advancement", - "values": [ - "Minorities" - ] - }, - { - "text": "Formally abolish the death penalty and ratify the Second Optional Protocol to the International Covenant on Civil and Political Rights", - "values": [ - "Death penalty", - "International instruments" - ] - }, - { - "text": "Strengthen the relevant legislative and implementation frameworks regarding the violence against women ", - "values": [ - "Women's rights" - ] - }, - { - "text": "Following the universal periodic review process, several measures were currently being taken towards further promoting children's rights through several preliminary means. A draft bill on the establishment of a new youth court had been prepared and was currently under review, and additional issues, such as necessary adaptations to probation officers' reports, were being evaluated", - "values": [ - "Rights of the Child", - "UPR process" - ] - }, - { - "text": "Ensure that all killings by law enforcement personnel are properly registered and thoroughly, independently investigated ", - "values": [ - "Human rights violations by state agents" - ] - }, - { - "text": "Accelerate efforts to provide effective structures for identification, care and accommodation to protect and support vulnerable migrant and refugee arrivals, including victims of torture, unaccompanied minors, and persons with disabilities", - "values": [ - "Asylum-seekers - refugees", - "Disabilities", - "Migrants", - "Rights of the Child", - "Torture and other CID treatment" - ] - }, - { - "text": "Enact legislation allowing human rights NGOs to monitor and visit detention centres", - "values": [ - "Civil society", - "Detention" - ] - }, - { - "text": "Ensure that any law governing the Internet is in compliance with the international human rights obligations of Viet Nam as a State party to ICCPR ", - "values": [ - "Freedom of opinion and expression", - "International instruments" - ] - }, - { - "text": "Take the necessary measures to guarantee the freedom of expression of journalists, workers, media and members of the opposition, and allow them to operate without being intimidated or arbitrarily arrested and detained ", - "values": [ - "Detention", - "Freedom of association and peaceful assembly", - "Freedom of opinion and expression", - "Freedom of the press", - "Labour" - ] - }, - { - "text": "Continue to promote human rights education and training for both Government officials and the general public in order to ensure the further nurturing of a human rights culture within the country", - "values": [ - "Human rights education and training" - ] - }, - { - "text": "Continue further with its initiative to promote community cohesion and social harmony", - "values": [ - "Other" - ] - }, - { - "text": "Take further practical steps to enhance the administration of juvenile justice ", - "values": [ - "Justice", - "Rights of the Child" - ] - }, - { - "text": "Continue its constructive efforts to promote the rights of migrants and refugees through initiatives permitting the preservation of the legal framework and its effective implementation ", - "values": [ - "Asylum-seekers - refugees", - "Migrants" - ] - }, - { - "text": "Increase efforts to prevent sexual and gender violence, especially regarding groups at risk, such as child girls refugees, and decrease gender inequality through urgently improving legislation and educational programmes", - "values": [ - "Human rights education and training", - "Rights of the Child", - "Women's rights" - ] - }, - { - "text": "Share with regional and other interested countries its good practices regarding the protection of the cultural heritage of members of traditional minorities", - "values": [ - "Minorities" - ] - }, - { - "text": "Sign and ratify the Optional Protocol to the International Covenant on Civil and Political Rights ", - "values": [ - "CP rights - general", - "International instruments" - ] - }, - { - "text": "Investigate all allegations of torture by the police and prosecute the perpetrators", - "values": [ - "Human rights violations by state agents", - "Torture and other CID treatment" - ] - }, - { - "text": "Promote further human rights education and training for law enforcement agents", - "values": [ - "Human rights education and training" - ] - }, - { - "text": "Create more human rights curricula for the different stages of education, including university education.", - "values": [ - "Human rights education and training" - ] - }, - { - "text": "Formulate programmes for the effective implementation of the National Plan on the Rights of Persons with Disabilities ", - "values": [ - "Disabilities" - ] - }, - { - "text": "Withdraw reservations to the Convention on the Elimination of All Forms of Discrimination against Women, the International Covenant on Civil and Political Rights and the Convention on the Rights of the Child", - "values": [ - "International instruments", - "Rights of the Child", - "Women's rights" - ] - }, - { - "text": "Expedite the establishment of a national human rights institution that is fully compliant with the Paris Principles ", - "values": [ - "National Human Rights Institution" - ] - }, - { - "text": "Consider early ratification of the International Covenant on Civil and Political Rights and the International Covenant on Economic, Social and Cultural Rights ", - "values": [ - "CP rights - general", - "ESC rights - general", - "International instruments" - ] - }, - { - "text": "Pursue the integration of human rights education and training in school programmes and other sectors such as the administration of justice and the police ", - "values": [ - "Human rights education and training" - ] - }, - { - "text": "Stop the implementation of counter-insurgency programmes that target human rights defenders and civilians", - "values": [ - "Human rights defenders" - ] - }, - { - "text": "Ensure a conducive climate to the work of the human rights defenders, civil society activists and journalists ", - "values": [ - "Civil society", - "Freedom of the press", - "Human rights defenders" - ] - }, - { - "text": "Establish an effective and inclusive process with independent nongovernmental organizations to follow up on the universal periodic review recommendations ", - "values": [ - "Civil society", - "UPR process" - ] - }, - { - "text": "Strengthen the coordination between the different authorities intervening in the combat against trafficking, including those in charge of assisting and protecting victims, in particular children", - "values": [ - "Rights of the Child", - "Trafficking" - ] - }, - { - "text": "Set up an independent national human rights institution in compliance with the Paris Principles", - "values": [ - "National Human Rights Institution" - ] - }, - { - "text": "Undertake urgent investigation on the allegation of secret flights of the CIA and take measures to prevent the use of its airports for such purposes.", - "values": [ - "Counter-terrorism" - ] - }, - { - "text": "Increase women's representation in decision-making positions", - "values": [ - "Women's rights" - ] - }, - { - "text": "Consider the establishment of an independent mechanism for children and provide it with necessary human and financial resources", - "values": [ - "Rights of the Child" - ] - }, - { - "text": "Continue reviewing the legislation that has discriminatory consequences on women", - "values": [ - "Women's rights" - ] - }, - { - "text": "Include persons with albinism in decision-making processes concerning their protection and rights", - "values": [ - "Minorities" - ] - }, - { - "text": "Conduct a review of prison conditions in the country's various detention facilities and implement a plan for addressing overcrowding", - "values": [ - "Detention" - ] - }, - { - "text": "Promptly complete the process of ratification of other fundamental instruments, in particular the ICCPR and ICESCR, and consider ratifying the CAT, the CERD and the Rome Statute", - "values": [ - "CP rights - general", - "ESC rights - general", - "International instruments", - "Justice", - "Racial discrimination", - "Torture and other CID treatment" - ] - }, - { - "text": "Take efficient measures to ensure that domestic violence is prosecuted as a breach of the law and that perpetrators are brought to justice", - "values": [ - "Rights of the Child", - "Women's rights" - ] - }, - { - "text": "Increase its efforts to reduce poverty within society and fight against unemployment", - "values": [ - "Poverty" - ] - }, - { - "text": "Adopt a comprehensive anti-discrimination law affording protection to all individuals, irrespective of their sexual orientation or gender identity", - "values": [ - "Sexual Orientation and Gender Identity" - ] - }, - { - "text": "Take additional measures that aim at implementing labour laws that the Kingdom has ratified, especially those regarding ending all sorts of discrimination at work and equal remuneration", - "values": [ - "Labour", - "Women's rights" - ] - }, - { - "text": "Criminalize gender violence and modify the definition of rape to define it as non-consensual sex within or outside marriage", - "values": [ - "Rights of the Child", - "Women's rights" - ] - }, - { - "text": "Reinforce institutional and administrative measures, including the reestablishment of the Council for the Prevention of Racial Discrimination, Xenophobia and Related Intolerance", - "values": [ - "National Human Rights Institution", - "Racial discrimination" - ] - }, - { - "text": "Ratify the Second Optional Protocol to the International Covenant on Civil and Political Rights, relating to the abolition of death penalty", - "values": [ - "Death penalty", - "International instruments" - ] - }, - { - "text": "Ratify the Optional Protocol to the Convention on the Rights of the Child on the involvement of children in armed conflict, signed in 2004, and implement the necessary domestic measures for its implementation", - "values": [ - "International humanitarian law", - "International instruments", - "Rights of the Child" - ] - }, - { - "text": "Ensure that all migrant workers, refugees and asylum seekers are treated in accordance with international standards, including respecting the principle of non-refoulement", - "values": [ - "Asylum-seekers - refugees", - "Labour", - "Migrants" - ] - }, - { - "text": "Move to discretionary sentencing for drug trafficking charges", - "values": [ - "Death penalty" - ] - }, - { - "text": "Commit itself to releasing all Arab prisoners and detainees in Israeli prisons imprisoned for years without trial. enable ICRC to provide for needs and health care in conformity with Council resolution 7-30, as the state of health is deteriorating on an ongoing basis.", - "values": [ - "Detention", - "Justice", - "Right to health" - ] - }, - { - "text": "Continue efforts to establish a national human rights institution that is in line with the Paris Principles and allocate adequate resources", - "values": [ - "National Human Rights Institution" - ] - }, - { - "text": "Further simplify the process of media registration and lower fees for broadcasting licensing ", - "values": [ - "Freedom of the press" - ] - }, - { - "text": "Address the high rate of homicides in Brazil's overcrowded prisons ", - "values": [ - "Detention" - ] - }, - { - "text": "In line with the Human Rights Committee, decriminalize consensual same-sex sexual relations between adults and put an end to prejudices and social stigmatization of homosexuality", - "values": [ - "Sexual Orientation and Gender Identity", - "Treaty bodies" - ] - }, - { - "text": "Take appropriate legislative and practical measures to improve living conditions through its prisons systems, in particular with regard to access to health care and education ", - "values": [ - "Detention" - ] - }, - { - "text": "Consider the creation of an ombudsman for children\u2019s rights in order to further advance the status of children", - "values": [ - "National Human Rights Institution", - "Rights of the Child" - ] - }, - { - "text": "Ratify the CED, the first OP-ICCPR and OP-ICESCR ", - "values": [ - "CP rights - general", - "ESC rights - general", - "Enforced disappearances", - "International instruments" - ] - }, - { - "text": "Address the issues raised by the Special Rapporteur on the right to food concerning the deep and severe food insecurity faced by Aboriginal peoples across Canada living both on and off reserves, in remote and urban areas, especially for children ", - "values": [ - "Indigenous peoples", - "Right to food", - "Rights of the Child", - "Special procedures" - ] - }, - { - "text": "Continue incorporating the ratified human rights treaties into national legislation and institutions, with more focus on administration of justice, disparities reduction, employment for the youth and adequate housing and social welfare ", - "values": [ - "Development", - "ESC rights - general", - "International instruments", - "Justice", - "Right to housing" - ] - }, - { - "text": "Grant Palestinians economic, social and cultural rights as well as civil and political rights. allow Palestinians to reach places of worship, and protect religious freedom in accordance with article 27 of the Fourth Geneva Convention, as the occupying power, and bear its responsibility in this respect. and allow the international community organizations, particularly ICRC, to ascertain the health conditions of Arab detainees in Israeli prisons.", - "values": [ - "CP rights - general", - "Detention", - "ESC rights - general", - "Freedom of religion and belief", - "International humanitarian law", - "International instruments" - ] - }, - { - "text": "Continue its efforts in addressing the welfare of expatriate labours ", - "values": [ - "Labour", - "Migrants" - ] - }, - { - "text": "Conduct public awareness campaigns within the refugee community on the importance of registration and ensure strong implementation of the Action Plan for Solving the Status of Internally Displaced Persons", - "values": [ - "Asylum-seekers - refugees", - "Internally displaced persons" - ] - }, - { - "text": "Review regularly the application of the National Security Act, to ensure its consistency with human rights principles", - "values": [ - "Public security" - ] - }, - { - "text": "Intensify efforts to combat family and sexual domestic violence and violence against women, by integrating these issues into the training of law for the enforcement officials and magistrates", - "values": [ - "Human rights education and training", - "Rights of the Child", - "Women's rights" - ] - }, - { - "text": "Strengthen efforts to fulfil obligations under the Convention on the Rights of the Child", - "values": [ - "International instruments", - "Rights of the Child" - ] - }, - { - "text": "Strongly recommended that Cuba allow the exercise of the right to freedom of expression, and freedom of association and assembly, by enabling such entities to obtain legal status under national law without requiring government affiliation vis-a-vis a State counterpart", - "values": [ - "Freedom of association and peaceful assembly", - "Freedom of opinion and expression" - ] - }, - { - "text": "Study the possibility to repeal the death penalty from its legal system ", - "values": [ - "Death penalty" - ] - }, - { - "text": "Revise laws to expressly prohibit discrimination on the basis of sexual orientation, gender identity and intersex status", - "values": [ - "Sexual Orientation and Gender Identity" - ] - }, - { - "text": "Consider the issuance of a standing invitation to special procedures mandate holders", - "values": [ - "Special procedures" - ] - }, - { - "text": "Remove the death penalty and corporal punishment from Mauritanian laws", - "values": [ - "Death penalty", - "Torture and other CID treatment" - ] - }, - { - "text": "Ensure the Constitution\u2019s provisions on freedom of the press, freedom of opinion and expression and freedom of assembly and association are respected, including for people who want to express their views on the situation of and in Western Sahara", - "values": [ - "Freedom of association and peaceful assembly", - "Freedom of opinion and expression", - "Freedom of the press" - ] - }, - { - "text": "Ensure that rape within marriage is a punishable offence under its legal code", - "values": [ - "Rights of the Child", - "Women's rights" - ] - }, - { - "text": "Strengthen its cooperation with the Office of the High Commission on Human Rights and seek international assistance for the implementation of the Plan of Action on Human Rights", - "values": [ - "Technical assistance and cooperation" - ] - }, - { - "text": "Continue its positive efforts to reduce domestic violence throughout the country", - "values": [ - "Women's rights" - ] - }, - { - "text": "Prohibit corporal punishment of children in all settings and ensure protection against child labour and child prostitution ", - "values": [ - "Labour", - "Rights of the Child", - "Torture and other CID treatment" - ] - }, - { - "text": "Consider the ratification of the Convention on the Prevention and Punishment of the Crime of Genocide ", - "values": [ - "International instruments", - "Justice" - ] - }, - { - "text": "Ensure the effective and independent functioning of the national preventive mechanism under the Optional Protocol to the Convention against Torture", - "values": [ - "Detention", - "International instruments", - "Torture and other CID treatment", - "Treaty bodies" - ] - }, - { - "text": "Investigate allegations of torture and ill treatment and bring to justice those responsible in line with international standards.", - "values": [ - "Torture and other CID treatment" - ] - }, - { - "text": "Enact law providing for full citizenship rights for the children of Bahrain mothers and non-Bahrain fathers ", - "values": [ - "Women's rights" - ] - }, - { - "text": "Establish a national human rights institution in conformity with the Paris Principles on the status of national institutions for the promotion and protection of human rights", - "values": [ - "National Human Rights Institution" - ] - }, - { - "text": "Strengthen efforts to prevent and punish human trafficking, as well as to protect trafficking victims thorough effective assistance provision, elimination of their stigmatization and cooperation with countries of origin ", - "values": [ - "Trafficking" - ] - }, - { - "text": "Reconsider its reservations to ICCPR, especially with regard to article 102 b and its compatibility with article 37c of the Convention of Rights of the Child with regard to the separation of children from adults in detention centres ", - "values": [ - "CP rights - general", - "International instruments", - "Rights of the Child" - ] - }, - { - "text": "Continue national policies to put an end to poverty through initiatives on development", - "values": [ - "Development", - "Poverty" - ] - }, - { - "text": "Pursue its commitment to developing human resources and to strengthening national social and political institutions in order to enhance its capacity to fulfil its international human rights obligations", - "values": [ - "International instruments" - ] - }, - { - "text": "Continue its efforts to complete the ratification process for CRPD ", - "values": [ - "Disabilities", - "International instruments" - ] - }, - { - "text": "Step up, with the support of OHCHR and other international partners, the activities to establish a national human rights institution in conformity with the Paris Principles", - "values": [ - "National Human Rights Institution" - ] - }, - { - "text": "In line with the recommendations from the first universal periodic review accepted by Palau, establish an independent national human rights institution to lead, coordinate, develop capacities and help strengthen implementation of human rights throughout the country, and provide the Ombudsman Office with sufficient financial and human resources to strengthen its independence and capabilities", - "values": [ - "National Human Rights Institution", - "UPR process" - ] - }, - { - "text": "Consider ratifying ILO Convention No. 169, concerning Indigenous and Tribal Peoples, and take operational steps to implement the United Nations Declaration on the Rights of Indigenous\nPeoples, including through constitutional and statutory recognition of land and resource rights and effective political participation \n", - "values": [ - "Indigenous peoples", - "International instruments" - ] - }, - { - "text": "Clearly define the mandate and the responsibilities of the national mechanism for the advancement of women and allocating the necessary resources to enable it to promote equality and mainstreaming gender equality and ensuring coordination of activities in this field", - "values": [ - "Women's rights" - ] - }, - { - "text": "Efforts should continue to be perused in order to provide opportunities of adequate education for persons with disabilities ", - "values": [ - "Disabilities", - "Right to education" - ] - }, - { - "text": "Increase efforts to put the Domestic Violence Act into practice through public policies ", - "values": [ - "Rights of the Child", - "Women's rights" - ] - }, - { - "text": "Consider to establish a national human rights institution in line with the Paris Principles", - "values": [ - "National Human Rights Institution" - ] - }, - { - "text": "Continue its efforts in order to strengthen the protection of victims of trafficking", - "values": [ - "Trafficking" - ] - }, - { - "text": "Abrogate without delay the legislative and regulatory provisions that discriminate women, and adopt new laws in accordance with the principle of gender equality, as set out by CEDAW, ratified by Swaziland", - "values": [ - "International instruments", - "Women's rights" - ] - }, - { - "text": "Take measures to secure the rights of due process guaranteed by ICCPR", - "values": [ - "International instruments", - "Justice" - ] - }, - { - "text": "Take all necessary measures to protect journalists from harassment and attacks and to ensure that all allegations of violence and intimidation of journalists are promptly and impartially investigated and perpetrators brought to justice", - "values": [ - "Civil society", - "Freedom of the press" - ] - }, - { - "text": "Abolish any discriminatory measures that target Muslims and Arabs at airports", - "values": [ - "Freedom of religion and belief", - "Minorities", - "Racial discrimination" - ] - }, - { - "text": "Review the requirements for migrants and asylum-seekers to obtain permanent residence and citizenship and consider removing retroactive elements of these requirements ", - "values": [ - "Asylum-seekers - refugees", - "Migrants" - ] - }, - { - "text": "Continue to fight HIV-AIDS with the support and cooperation of the international community ", - "values": [ - "HIV - Aids", - "Technical assistance and cooperation" - ] - }, - { - "text": "Investigate all cases of ill-treatment, human rights violations committed by law enforcement agencies and prosecute those responsible", - "values": [ - "Human rights violations by state agents", - "Torture and other CID treatment" - ] - }, - { - "text": "Take immediate steps towards holding democratic elections and returning Fiji to constitutional rule", - "values": [ - "Elections" - ] - }, - { - "text": "Take appropriate measures to ensure that all children enjoy all human rights, without discrimination ", - "values": [ - "Rights of the Child" - ] - }, - { - "text": "Continue to pursue an integrated approach to cases of compounded vulnerability caused by multiple and intersecting forms of discrimination ", - "values": [ - "Other" - ] - }, - { - "text": "To improve the material working and living conditions of judges", - "values": [ - "Justice" - ] - }, - { - "text": "Ensure the establishment of an independent supervision mechanism which would have access to all detention centres with a view to facilitating the prompt ratification of OP-CAT ", - "values": [ - "Detention", - "International instruments", - "Torture and other CID treatment" - ] - }, - { - "text": "Strengthen the role of the technical committee on legal medicine in order to avoid any death sentences to minors, and establish a moratorium on executions from the perspective of the final abolition of the death penalty ", - "values": [ - "Death penalty", - "Rights of the Child" - ] - }, - { - "text": "Consider the possibility of signing and ratifying the main universal human rights instruments to which it is not yet a party ", - "values": [ - "International instruments" - ] - }, - { - "text": "Establish an independent National Human Rights Institution, in compliance with the Principles relating to the status of National Institutions of promotion and protection of human rights", - "values": [ - "National Human Rights Institution" - ] - }, - { - "text": "Continue efforts with the aim of establishing protection campaigns and programmes for women against domestic violence ", - "values": [ - "Women's rights" - ] - }, - { - "text": "Speed up implementation of policies and measures in poverty reduction, malnutrition eradication and food security", - "values": [ - "Poverty", - "Right to food" - ] - }, - { - "text": "Address discrimination against women in Law No. 24 for 2010 on the Libyan Nationality so that women can transfer their nationality to their children and foreign spouses, and acquire, change or retain their nationality, on an equal basis with men, in line with article 9 of the Convention on the Elimination of All Forms of Discrimination against Women", - "values": [ - "International instruments", - "Women's rights" - ] - }, - { - "text": "Ensure that all legislation and programmes in support of the Justice and Peace process comply with international standards.", - "values": [ - "Justice" - ] - }, - { - "text": "In efforts to tackle the problem of illiteracy, continue to promote access to quality education in rural areas, which would bring long-term benefits to women, youths and indigenous groups in rural areas", - "values": [ - "Indigenous peoples", - "Right to education", - "Women's rights" - ] - }, - { - "text": "Complete the ongoing compensation process so that as many victims of gross human rights violation committed during the past military dictatorship as possible can benefit from the reparation measures.", - "values": [ - "Justice" - ] - }, - { - "text": "Implement measures to ensure girls' and women's access to all levels of education and ensure a higher level of women's participation in public life ", - "values": [ - "Right to education", - "Rights of the Child", - "Women's rights" - ] - }, - { - "text": "Continue improving the protection of labour rights, in particular regarding foreign and domestic workers, by ratifying and implementing ILO Convention No. 189 concerning Decent Work for Domestic Workers", - "values": [ - "International instruments", - "Labour", - "Migrants" - ] - }, - { - "text": "Continue to provide access to health services for the elderly under the National Programme for Health Care of the Elderly", - "values": [ - "Right to health" - ] - }, - { - "text": "Establish an independent inquiry into abuses allegedly committed by a Phantom Squad between 2002 and 2008, and ensure all those responsible are brought to justice ", - "values": [ - "Justice" - ] - }, - { - "text": "On lesbian, gay, bisexual and transgender (LGBT): stop arresting individuals based on their sexual orientation, gender identity or appearance and repeal legislative measures that criminalize consensual homosexual conduct ", - "values": [ - "Sexual Orientation and Gender Identity" - ] - }, - { - "text": "Take additional effective legislative and administrative measures to promote gender equality", - "values": [ - "Women's rights" - ] - }, - { - "text": "Address appropriately the issue of overcrowding as one of the major problems faced by the prisons which seriously affects the lives of the inmates in maintaining a good health standard", - "values": [ - "Detention" - ] - }, - { - "text": "Ensure full compliance of domestic legislation and relevant procedures with juvenile justice standards of the Convention on the Rights of the Child.", - "values": [ - "International instruments", - "Rights of the Child" - ] - }, - { - "text": "Address the violent conflicts between nomadic pastoralists and sedentary farmers as a matter of urgency, bring to justice those responsible for the killings and human rights violations and compensate victims", - "values": [ - "Extrajudicial executions", - "Justice" - ] - }, - { - "text": "Include the criminalization of all forms of racial discrimination in the draft bill on the elimination of all forms of discrimination, expected to be adopted by the Legislature, as recommended by the Special Rapporteur on indigenous people, the High Commissioner for Human Rights and the United Nations country team, if that has not yet been done", - "values": [ - "Racial discrimination", - "Special procedures" - ] - }, - { - "text": "Amend Law No. 5651, widely known as the Internet Law, to ensure the right to seek, receive, and impart information in the exercise of freedom of opinion and expression", - "values": [ - "Freedom of opinion and expression" - ] - }, - { - "text": "Take steps to combat the persecution of persons on the basis of their sexual orientation or gender identity, in particular by removing Article 319.3 from the Penal Code so as to decriminalise consensual sexual conduct between persons of the same sex", - "values": [ - "Sexual Orientation and Gender Identity" - ] - }, - { - "text": "Intensify efforts to achieve the MDGs", - "values": [ - "Development" - ] - }, - { - "text": "Investigate all complaints of human rights violations committed by state security agencies and ensure that cases of violations are brought before the courts", - "values": [ - "Human rights violations by state agents", - "Justice" - ] - }, - { - "text": "Prioritize the reform of the prison system and ensure respect for and protection of the human rights of all detainees ", - "values": [ - "Detention" - ] - }, - { - "text": "Take all necessary measures to safeguard the full enjoyment of human rights by women and girls, including by promptly and independently investigating all allegations of sexual and gender-based violence and bringing perpetrators of such crimes to justice, in accordance with international standards", - "values": [ - "Rights of the Child", - "Women's rights" - ] - }, - { - "text": "Develop a simplified, effective birth registration system through which all can access a birth certificate, including a complaints handling mechanism", - "values": [ - "Rights of the Child", - "Statelessness and the right to nationality" - ] - }, - { - "text": "Continue the efforts initiated to ratify CPED, as well as the main international instruments on human rights to which the country is not yet a party", - "values": [ - "Enforced disappearances", - "International instruments" - ] - }, - { - "text": "Implement its road map against impunity for sexual violence, the law on sexual violence as well as other applicable laws, policies and programmes in compliance with international human rights standards to hold all offenders fully accountable and punished - implement an open, effective mechanism of access to justice for the victims in an expeditious manner - and establish a functioning rehabilitation scheme for the victims", - "values": [ - "Impunity", - "International instruments", - "Justice", - "Rights of the Child", - "Women's rights" - ] - }, - { - "text": "Ensure full compliance of the substitute detention system (Daiyo Kangoku) with all guarantees contained in article 14 of ICCPR", - "values": [ - "Detention", - "International instruments" - ] - }, - { - "text": "To counter allegations of torture and ill-treatment in prison facilities, allow ICRC and other international observers to have immediate, full and genuine access to all detention facilities to ensure proper treatment of prisoners", - "values": [ - "Detention", - "Torture and other CID treatment" - ] - }, - { - "text": "Ensure that the National Human Rights Commission has sufficient resources, personnel and a clear mandate to carry out its work in line with the Paris Principles", - "values": [ - "National Human Rights Institution" - ] - }, - { - "text": "Put an end to all practices of torture, align its definition of torture with article 1 of the Convention against Torture and other Cruel, Inhuman or Degrading Treatment or Punishment and ratify the Optional Protocol to the Convention against Torture and other Cruel, Inhuman or Degrading Treatment or Punishment ", - "values": [ - "Detention", - "International instruments", - "Torture and other CID treatment" - ] - }, - { - "text": "Develop and implement a plan to provide accommodation and assistance to those with disabilities", - "values": [ - "Disabilities" - ] - }, - { - "text": "Legally prohibit any form of corporal punishment of children and adolescents", - "values": [ - "Rights of the Child", - "Torture and other CID treatment" - ] - }, - { - "text": "Ensure that all people, including migrants, are allowed to practice their religion or belief freely, including by enacting legislation that explicitly protects the right to freedom of religion or belief ", - "values": [ - "Freedom of religion and belief", - "Migrants" - ] - }, - { - "text": "Continue efforts to combat discrimination and promote greater social integration of immigrants, and indigenous and minority groups", - "values": [ - "Indigenous peoples", - "Migrants", - "Minorities", - "Racial discrimination" - ] - }, - { - "text": "Eradicate the death penalty as a type of punishment from the legal system after wide consultation with countries which recently took the same step ", - "values": [ - "Death penalty" - ] - }, - { - "text": "Continue legislative reforms aimed at guaranteeing the effective implementation of the rights and obligations contained in international instruments, such as CEDAW, CRC and CAT ", - "values": [ - "International instruments", - "Rights of the Child", - "Torture and other CID treatment", - "Women's rights" - ] - }, - { - "text": "Improve implementation and enforcement of the Law on the Elimination of All Forms of Discrimination, particularly in its application towards the protection of individuals belonging to sexual and religious minority groups", - "values": [ - "Freedom of religion and belief", - "Minorities", - "Racial discrimination", - "Sexual Orientation and Gender Identity" - ] - }, - { - "text": "Continue to reinforce strategies to avoid the prolonged stay of migrants, particularly unaccompanied minors, in centres without the necessary care infrastructure", - "values": [ - "Migrants", - "Rights of the Child" - ] - }, - { - "text": "Step up the education and awareness-raising campaigns so as to prevent ill treatment of boys and girls, in accordance with recommendations of the Committee on the Rights of the Child ", - "values": [ - "Human rights education and training", - "Rights of the Child", - "Treaty bodies" - ] - }, - { - "text": "Undertake a legislative review aimed at eliminating all forms of discrimination against women, particularly in relation to the Penal Code and inheritance laws ", - "values": [ - "Women's rights" - ] - }, - { - "text": "Continue to provide sufficient funding for its human rights programmes and activities", - "values": [ - "General" - ] - }, - { - "text": "Consider the recommendation of UNESCO to ratify the Convention against Discrimination in Education", - "values": [ - "International instruments", - "Right to education" - ] - }, - { - "text": "Fully implement the plan of action to combat the recruitment and use of child soldiers", - "values": [ - "International humanitarian law", - "Rights of the Child" - ] - }, - { - "text": "Withdraw its reservations to article 4 of the ICERD and article 27 of the ICCPR, and adopt immediate and positive measures to eliminate all forms of discrimination, xenophobia and stigmatisation", - "values": [ - "CP rights - general", - "International instruments", - "Racial discrimination" - ] - }, - { - "text": "Consider issuing a standing invitation to special procedures mandate holders", - "values": [ - "Special procedures" - ] - }, - { - "text": "Take measures to fight discrimination against women particularly in rural areas", - "values": [ - "Women's rights" - ] - }, - { - "text": "Create an independent and effective body for the investigation of cases of the use of torture and degrading treatment, including against journalists", - "values": [ - "Freedom of the press", - "Justice", - "Torture and other CID treatment" - ] - }, - { - "text": "Ratify OP-CEDAW", - "values": [ - "International instruments", - "Women's rights" - ] - }, - { - "text": "Become party to the core human rights instruments ", - "values": [ - "International instruments" - ] - }, - { - "text": "Put into practice the plan to set up an institution dealing with matters related to justice and human rights ", - "values": [ - "National Human Rights Institution" - ] - }, - { - "text": "Make progress on the abolition of the death penalty", - "values": [ - "Death penalty" - ] - }, - { - "text": "Continue efforts aimed at effectively fighting against maternal and child mortality", - "values": [ - "Right to health", - "Rights of the Child", - "Women's rights" - ] - }, - { - "text": "Work towards repealing regional or local by-laws discriminating against persons based on their sexual orientation or gender identity", - "values": [ - "Sexual Orientation and Gender Identity" - ] - }, - { - "text": "Engage in dialogue and offer assistance to the autonomous authorities of the Faroe Islands and Greenland to introduce legislative changes in favour of women's rights and equality", - "values": [ - "Women's rights" - ] - }, - { - "text": "Strengthen the Gender Equality Council", - "values": [ - "Women's rights" - ] - }, - { - "text": "Take all necessary measures to promote women's rights and fight against domestic violence", - "values": [ - "Women's rights" - ] - }, - { - "text": "Introduce federal legislation criminalising violence against women", - "values": [ - "Women's rights" - ] - }, - { - "text": "Continue to move towards the promotion of women's rights and further strengthen equality between women and men as well as efforts undertaken aimed at putting an end to certain customary social practices which sometimes stand in the way of the effective implementation of human rights, such as honour crime and crimes of revenge", - "values": [ - "Rights of the Child", - "Women's rights" - ] - }, - { - "text": "Redouble its efforts regarding trafficking, with a special focus on trafficking in children", - "values": [ - "Rights of the Child", - "Trafficking" - ] - }, - { - "text": "Apply the 2008-2013 National Strategy on children right's protection and promotion which should ensure that special attention will be paid to children belonging to the most vulnerable groups, such as children living in poverty, Roma children, children with disabilities, children with HIV/AIDS and streets children ", - "values": [ - "Disabilities", - "HIV - Aids", - "Minorities", - "Poverty", - "Rights of the Child" - ] - }, - { - "text": "Establish a national mechanism to coordinate and implement policies and programmes to combat child exploitation ", - "values": [ - "Rights of the Child" - ] - }, - { - "text": "Increase inputs to help to improve the living standards of people living in poverty and create more job opportunities for women, youth and other special groups ", - "values": [ - "Development", - "Poverty", - "Women's rights" - ] - }, - { - "text": "Consider enacting specific legislation on domestic violence to hold perpetrators accountable for their behaviour", - "values": [ - "Rights of the Child", - "Women's rights" - ] - }, - { - "text": "Take further steps to protect right to assembly in line with their international obligations under the International Covenant on Civil and Political Rights and the provisions in the Ugandan constitution ", - "values": [ - "Freedom of association and peaceful assembly", - "International instruments" - ] - }, - { - "text": "Consider contributing to the objective of mainstreaming the right to development in its ODA programmes and policies ", - "values": [ - "Development" - ] - }, - { - "text": "Intensify its efforts to ratify the Convention against Torture and other Cruel, Inhuman or Degrading Treatment or Punishment", - "values": [ - "International instruments", - "Women's rights" - ] - }, - { - "text": "Provide full access to justice to people belonging to racial and religious minorities and to combat racial and religious profiling and strengthen anti-discrimination legislation", - "values": [ - "Freedom of religion and belief", - "Minorities", - "Racial discrimination" - ] - }, - { - "text": "Prioritize people-centred and results based socioeconomic development planning in line with the Vision Burundi 2025", - "values": [ - "Development" - ] - }, - { - "text": "Decriminalize sexual relation between consenting adults of the same sex", - "values": [ - "Sexual Orientation and Gender Identity" - ] - }, - { - "text": "Adopt legislative measures necessary to strengthen access to public information", - "values": [ - "Freedom of opinion and expression" - ] - }, - { - "text": "Implement the provisions in the African Union's Maputo protocol into its national legislation, including women's rights to medical abortion in cases of sexual assault, rape, incest and where the life of the mother or the foetus is in danger", - "values": [ - "International instruments", - "Women's rights" - ] - }, - { - "text": "Put in place effective measures to reduce inconsistencies between laws and practice, in order to tackle gender stereotyping and traditional attitudes that conflict with human rights", - "values": [ - "Women's rights" - ] - }, - { - "text": "Ensure continuous schooling of children following the decision on placement in alternative care", - "values": [ - "Rights of the Child" - ] - }, - { - "text": "Strengthen cooperation with human rights bodies, continue to cooperate with the United Nations special procedures and maintain the standing invitation to the thematic procedures mandate holders ", - "values": [ - "Special procedures" - ] - }, - { - "text": "Extend an invitation to the Special Rapporteur on Torture ", - "values": [ - "Special procedures", - "Torture and other CID treatment" - ] - }, - { - "text": "Improve the prison system and the situation of prisoners based on the 2013 report of EHRC on the situation of human rights in the country's prisons ", - "values": [ - "Detention", - "National Human Rights Institution" - ] - }, - { - "text": "Finalize the internal procedures in order to adopt a specific legislation on gender equality", - "values": [ - "Women's rights" - ] - }, - { - "text": "Reiterate the recommendation to ratify the Rome Statute", - "values": [ - "International instruments", - "Justice" - ] - }, - { - "text": "Consider ratifying the Convention on the Rights of Persons with Disabilities as soon as possible.", - "values": [ - "Disabilities", - "International instruments" - ] - }, - { - "text": "Strengthen policies and activities that support the Roma, to achieve the objectives of the Decade of Roma Inclusion ", - "values": [ - "Minorities" - ] - }, - { - "text": "Eradicate in law and in practice all forms of discrimination, including traditional slavery, the caste system and develop a national strategy on slavery, as recommended by the Special Rapporteur on slavery", - "values": [ - "Special procedures" - ] - }, - { - "text": "Continue to promote the ratification of the International Convention on the Rights of Migrant Workers and Member of Their Families", - "values": [ - "International instruments", - "Labour", - "Migrants" - ] - }, - { - "text": "Implement special detention and internment centres for boys and girls, with a view to avoiding their future criminalization and to promote the reintegration into society", - "values": [ - "Detention", - "Rights of the Child" - ] - }, - { - "text": "Accelerate the process for the ratification of the Optional Protocol to the Convention on the Rights of the Child on a communications procedure", - "values": [ - "International instruments", - "Rights of the Child" - ] - }, - { - "text": "Ensure freedom of assembly and association and recognize the importance of trade unions and a diverse civil society in a democracy ", - "values": [ - "Civil society", - "Labour" - ] - }, - { - "text": "Conclude as soon as possible the process towards the ratification of the ILO Convention (169) on indigenous and tribal peoples in independent countries and carry out the necessary internal normative adjustments to this end ", - "values": [ - "Indigenous peoples", - "International instruments" - ] - }, - { - "text": "Adopt a law prohibiting corporal punishment against children in all spheres\n\n", - "values": [ - "Rights of the Child", - "Torture and other CID treatment" - ] - }, - { - "text": "Strengthen its measures to combat racism and discrimination in all its forms against migrants and asylum seekers", - "values": [ - "Asylum-seekers - refugees", - "Migrants", - "Racial discrimination" - ] - }, - { - "text": "Fight against impunity through conducting exhaustive investigations of all allegations of human rights violations", - "values": [ - "Impunity" - ] - }, - { - "text": "Work to abolish laws that restricts freedom of expression, information and freedom of media, and establish laws that will guarantee these rights in line with international human rights standards ", - "values": [ - "Freedom of opinion and expression", - "Freedom of the press", - "International instruments" - ] - }, - { - "text": "Ensure the full exercise of freedom of expression for independent journalists and media, inter alia, by taking into due consideration the recommendations of the Council of Europe Commissioner for Human Rights", - "values": [ - "Freedom of opinion and expression", - "Freedom of the press" - ] - }, - { - "text": "Continue to tackle the prejudice, stigmatization and discrimination suffered by some asylum seekers, migrants and refugees", - "values": [ - "Asylum-seekers - refugees", - "Migrants", - "Racial discrimination" - ] - }, - { - "text": "Maintain efforts to promote and protect the rights of children, young people, persons with disabilities and women, and seek to overcome the low representation of women ", - "values": [ - "Disabilities", - "Rights of the Child", - "Women's rights" - ] - }, - { - "text": "Share positive experiences and best practices with other countries regarding racial and religious tolerance ", - "values": [ - "Freedom of religion and belief", - "Racial discrimination" - ] - }, - { - "text": "Take appropriate measures and allocate required resources in the interest of achieving the millennium development goal on universal primary education ", - "values": [ - "Right to education" - ] - }, - { - "text": "Continue efforts to combat human trafficking, in particular exploitation of children and women, by stepping up the efforts to combat impunity of traffickers and regional cooperation", - "values": [ - "Impunity", - "Rights of the Child", - "Trafficking", - "Women's rights" - ] - }, - { - "text": "Study the possibility to establish new measures to eliminate all discriminatory treatment against women with disabilities ", - "values": [ - "Disabilities", - "Women's rights" - ] - }, - { - "text": "Continue to reinforce the development policy on primary education ", - "values": [ - "Right to education" - ] - }, - { - "text": "Promptly ratify the Optional Protocol to the Convention on the Elimination of All Forms of Discrimination against Women", - "values": [ - "International instruments", - "Women's rights" - ] - }, - { - "text": "Strengthen the legal framework for women's rights and its implementation ", - "values": [ - "Women's rights" - ] - }, - { - "text": "Continue pursuing the realization of the full range of human rights and fundamental freedoms for the Bhutanese people, in accordance with the country's international human rights obligations\n", - "values": [ - "International instruments" - ] - }, - { - "text": "Continue proactive measures to promote rights of indigenous peoples as well as of the Afro-Brazilian population and ensure their well-being", - "values": [ - "Indigenous peoples", - "Minorities" - ] - }, - { - "text": "Accede to the Second Optional Protocol to the International Covenant on Civil and Political Rights, aiming at the abolition of the death penalty, and take the necessary steps to remove the death penalty from Latvia's justice system ", - "values": [ - "Death penalty", - "International instruments" - ] - }, - { - "text": "Ensure the effective functioning of the Truth and Reconciliation Commission and full implementation of its recommendations, including prosecution of those responsible for violent insurgency", - "values": [ - "Justice" - ] - }, - { - "text": "Encourage the Government to develop a child-friendly centre for disaster risk protection", - "values": [ - "Environment", - "Rights of the Child" - ] - }, - { - "text": "Further improve human rights records in the country ", - "values": [ - "Other" - ] - }, - { - "text": "Safeguard the family institution and matrimony as the conjugal union between a man and a woman, based on the free consent as requested by the human nature and idiosyncrasy of the Ecuadorian people ", - "values": [ - "Other" - ] - }, - { - "text": "Redouble efforts to prevent suicide and detect mental illness in children and youth, promoting the close involvement of parents, teachers and school authorities in schools", - "values": [ - "Right to health", - "Rights of the Child" - ] - }, - { - "text": "Further consider initiatives to improve access to education for girls", - "values": [ - "Right to education", - "Rights of the Child", - "Women's rights" - ] - }, - { - "text": "Take measures to combat the stigmatization and discrimination associated with people living with tuberculosis and HIV as well as persons living with mental illness", - "values": [ - "HIV - Aids", - "Right to health" - ] - }, - { - "text": "Give priority to measures that may guarantee access to safe drinking water for all citizens", - "values": [ - "Right to water and sanitation" - ] - }, - { - "text": "Improve cooperation with the United Nations treaty bodies, including by incorporating and implementing international human rights law standards ", - "values": [ - "International instruments", - "Treaty bodies" - ] - }, - { - "text": "Ratify the three optional protocols to the Convention on the Rights of the Child", - "values": [ - "International humanitarian law", - "International instruments", - "Labour", - "Rights of the Child", - "Trafficking" - ] - }, - { - "text": "Ensure protection of freedom of expression and association, and take action to protect journalists ", - "values": [ - "Freedom of association and peaceful assembly", - "Freedom of opinion and expression", - "Freedom of the press" - ] - }, - { - "text": "Respond positively to requests to visit made by the Special Rapporteur on violence against women, it causes and consequences", - "values": [ - "Special procedures", - "Women's rights" - ] - }, - { - "text": "Take the necessary measures to combat violence against women", - "values": [ - "Women's rights" - ] - }, - { - "text": "Put in place a monitoring mechanism for the assessment of the situation of the protection of children, and strengthen the capacity of State and private institutions working on children's rights ", - "values": [ - "Rights of the Child" - ] - }, - { - "text": "Promote and ensure freedom of religion for all individuals of all faiths ", - "values": [ - "Freedom of religion and belief" - ] - }, - { - "text": "Provide training to security forces, penitentiary services, prosecutors and judges in order to reduce the cases of institutional violence and discrimination based on sexual orientation, gender identity and expression", - "values": [ - "Human rights education and training", - "Sexual Orientation and Gender Identity" - ] - }, - { - "text": "Redouble efforts to combat trafficking in persons and smuggling of migrants", - "values": [ - "Migrants", - "Trafficking" - ] - }, - { - "text": "Thoroughly and timely implement standing invitations to special procedures.", - "values": [ - "Special procedures" - ] - }, - { - "text": "Continue to pursue and redouble efforts to put in place the country's development plans and strategies with a focus on improving the situation of economic and social rights of its citizens ", - "values": [ - "Development", - "ESC rights - general" - ] - }, - { - "text": "Adopt procedures to better identify victims of trafficking among vulnerable groups such as foreign workers and those engaged in prostitution", - "values": [ - "Migrants", - "Trafficking", - "Women's rights" - ] - }, - { - "text": "Continue commitment to human rights through the ratification of the International Convention on the Protection of the Rights of All Migrant Workers and Members of Their Families in accordance with recommendation 1737 of 17 March 2006, adopted by the Parliamentary Assembly of the Council Europe, of which Denmark is a member ", - "values": [ - "International instruments", - "Labour", - "Migrants" - ] - }, - { - "text": "Consider the ratification of the core human rights instruments to which it is not yet a State party", - "values": [ - "International instruments" - ] - }, - { - "text": "Enhance initiatives designed to halt the trafficking and sexual exploitation of children and adolescents in the country, particularly through the strengthening of its justice system and the adoption of appropriate legislation on the matter ", - "values": [ - "Justice", - "Rights of the Child", - "Trafficking" - ] - }, - { - "text": "Canada is strongly committed to taking action with Aboriginal and non-Aboriginal groups to prevent and stop violence against Aboriginal women and girls and there are many FPT legislative and administrative measures in place to address this pressing issue", - "values": [ - "Indigenous peoples", - "Rights of the Child", - "Women's rights" - ] - }, - { - "text": "Continue to improve access to food, especially in rural areas, for persons living in extreme poverty ", - "values": [ - "Poverty", - "Right to food" - ] - }, - { - "text": "Move swiftly to put in place policies and procedures that will better protect the private and financial information of international human rights defenders and activists who take refuge in Lithuania", - "values": [ - "Human rights defenders" - ] - }, - { - "text": "Consider establishing a national human rights institution, in accordance to the Paris Principles", - "values": [ - "National Human Rights Institution" - ] - }, - { - "text": "Increase its efforts to raise awareness of and prevent the spread of HIV-AIDS and provide adequate treatment and alternative care opportunities for children", - "values": [ - "HIV - Aids", - "Rights of the Child" - ] - }, - { - "text": "Outlaw corporal punishment in the context of juvenile justice, school education and at home ", - "values": [ - "Justice", - "Right to education", - "Rights of the Child", - "Torture and other CID treatment" - ] - }, - { - "text": "Ensure a thorough and timely investigation by the Ministry of Justice and Social Welfare of the allegations in the detainee report and subsequently reform the practices of the Correctional Services officers and police forces as needed.", - "values": [ - "Detention" - ] - }, - { - "text": "Amend the 2010 National Security Act, by removing immunities for members of the National Intelligence and Security Services and withdrawing its powers of arrest and detention ", - "values": [ - "Detention", - "Public security" - ] - }, - { - "text": "Establish policies to improve healthcare and general welfare of indigenous children", - "values": [ - "Indigenous peoples", - "Rights of the Child" - ] - }, - { - "text": "Commute all death sentences and take concrete measures to abolish the death penalty", - "values": [ - "Death penalty" - ] - }, - { - "text": "Improve conditions for detainees in Irish prisons to bring them in line with international standards", - "values": [ - "Detention" - ] - }, - { - "text": "Redouble its efforts in the area of wealth distribution and poverty eradication, including by allocating adequate human and financial resources and providing support and material assistance to the vulnerable groups in the rural areas ", - "values": [ - "Poverty" - ] - }, - { - "text": "Continue and strengthen efforts in the fight for gender equality", - "values": [ - "Women's rights" - ] - }, - { - "text": "Take all necessary measures to ensure that it fulfils all of its obligations under international human rights instruments, particularly the International Covenant on Economic Social and Cultural Rights and the International Covenant on Civil and Political Rights with regard to the situation in Gaza.", - "values": [ - "CP rights - general", - "ESC rights - general", - "International instruments" - ] - }, - { - "text": "Take all appropriate measures to enable and facilitate the acquisition of Slovenian citizenship by the "erased persons", paying particular attention to the children of "erased persons" in 1992, who are still stateless. Ensure compensation for all "erased persons" and, in this regard, review their compensation schemes, on the basis of the amounts and criteria established by the European Court of Human Rights and ensure the implementation of measures to reintegrate "erased persons"", - "values": [ - "Rights of the Child", - "Statelessness and the right to nationality" - ] - }, - { - "text": "Consider cooperation with, for example, the Special Rapporteur on the question of torture and the Special Rapporteur on the promotion and protection of human rights while countering terrorism.", - "values": [ - "Counter-terrorism", - "Special procedures", - "Torture and other CID treatment" - ] - }, - { - "text": "Revise existing laws identified in its national report as being discriminatory against women ", - "values": [ - "Women's rights" - ] - }, - { - "text": "Continue to implement the National Action Plan to Combat Trafficking in Persons 2015-2019", - "values": [ - "Trafficking" - ] - }, - { - "text": "Continue its efforts for further strengthening of human rights institutions for the effective realization of all human rights in the country", - "values": [ - "General" - ] - }, - { - "text": "Take the necessary measures to ensure the protection of human rights defenders that are at risk ", - "values": [ - "Human rights defenders" - ] - }, - { - "text": "Ratify CRPD and its Optional Protocol ", - "values": [ - "Disabilities", - "International instruments" - ] - }, - { - "text": "Continue implementing the project "Uruguay, united in putting an end to violence against women, children and adolescents" 2012-2014 ", - "values": [ - "Rights of the Child", - "Women's rights" - ] - }, - { - "text": "Continue policies aimed at reducing inequalities in access to the full enjoyment of human rights by all the social groups with special attention paid to women, children and persons with disabilities ", - "values": [ - "Disabilities", - "Rights of the Child", - "Women's rights" - ] - }, - { - "text": "Adopt measures to strengthen the national human rights infrastructure, and continue its efforts to spread a culture of human rights and to build the necessary institutions and provide the necessary training and capacity building to the concerned departments", - "values": [ - "Human rights education and training" - ] - }, - { - "text": "Ratify the Optional Protocol to ICCPR (ICCPR-OP-1) as soon as possible", - "values": [ - "CP rights - general", - "International instruments" - ] - }, - { - "text": "Continue to scale up national efforts to eliminate poverty particularly targeting disadvantaged groups, with the support of the international community.", - "values": [ - "Poverty" - ] - }, - { - "text": "Adopt further measures to ensure the protection of the human rights of the children of persons in detention or prison", - "values": [ - "Detention", - "Rights of the Child" - ] - }, - { - "text": "Extend an invitation to the Special Rapporteur on torture and other cruel, inhuman or degrading treatment or punishment, the Special Rapporteur on the independence of judges and lawyers, and the Special Rapporteur on the right of everyone to the enjoyment of the highest attainable standard of physical and mental health", - "values": [ - "Justice", - "Right to health", - "Special procedures", - "Torture and other CID treatment" - ] - }, - { - "text": "Continue its efforts to combat discrimination and ensure equal treatment of all ethnicities and minorities", - "values": [ - "Minorities", - "Racial discrimination" - ] - }, - { - "text": "Proceed swiftly with the Optional Protocol of the CRPD", - "values": [ - "Disabilities", - "International instruments" - ] - }, - { - "text": "Continue its national reforms with an aim to ratify the ICCPR", - "values": [ - "CP rights - general", - "International instruments" - ] - }, - { - "text": "Implement the recommendations made by the Committee on the Rights of the Child, especially eradicate traditional practices such as female genital mutilation, sexual exploitation, corporal punishment in children's education and forced child begging ", - "values": [ - "Labour", - "Rights of the Child", - "Torture and other CID treatment", - "Treaty bodies", - "Women's rights" - ] - }, - { - "text": "Continue to ensure legal protection for women and girls subjected to gender-based violence and trafficking", - "values": [ - "Rights of the Child", - "Trafficking", - "Women's rights" - ] - }, - { - "text": "Consider ratifying ILO Convention No. 169 as a matter of priority ", - "values": [ - "Indigenous peoples", - "International instruments" - ] - }, - { - "text": "Take all possible measures to ensure the protection of and respect for the rights of women and children at legal and practical level ", - "values": [ - "Rights of the Child", - "Women's rights" - ] - }, - { - "text": "Consider the ratification of and accession to the outstanding major international human rights instruments ", - "values": [ - "International instruments" - ] - }, - { - "text": "Enact legislation with a view to prohibiting corporal punishment of children in all settings", - "values": [ - "Rights of the Child", - "Torture and other CID treatment" - ] - }, - { - "text": "Intensify its efforts to ensure that education, health, employment and social protection programmes are inclusive and not discriminatory. Apply also these measures to all the countries and territories that form the kingdom of the Netherlands ", - "values": [ - "Labour", - "Right to education", - "Right to health" - ] - }, - { - "text": "Take the necessary steps towards the establishment of a national human rights institution (NHRI), in accordance with the principles relating to the status of national institutions for the promotion and protection of human rights (Paris Principles) ", - "values": [ - "National Human Rights Institution" - ] - }, - { - "text": "Adopt appropriate legislation to render the Commission of human rights and public administration (HRPAC) fully operational, as well as to strengthen its capacities, and to allocate the necessary financial resources so that it is in full compliance with the Paris Principles as a national human rights institution ", - "values": [ - "National Human Rights Institution" - ] - }, - { - "text": "Ratify the Protocol to Prevent, Suppress and Punish Trafficking in Persons, especially Women and children, a protocol to the Convention against Transnational Organized Crime ", - "values": [ - "International instruments", - "Trafficking" - ] - }, - { - "text": "Carry out the necessary nation-wide consultations to find an alternative to the death penalty, and, as far as possible, explore the possibility of establishing a moratorium on the capital punishment", - "values": [ - "Death penalty" - ] - }, - { - "text": "Conduct awareness and education campaigns on gender-based violence and create accessible complaints mechanisms for reporting sexual and domestic violence", - "values": [ - "Human rights education and training", - "Rights of the Child", - "Women's rights" - ] - }, - { - "text": "Disclose the findings of the Commission of Inquiry established to investigate cases of excessive use of force by police", - "values": [ - "Human rights violations by state agents" - ] - }, - { - "text": "Continue to improve the social security system, and take further steps to guarantee the rights of persons with disabilities and other vulnerable groups", - "values": [ - "Disabilities" - ] - }, - { - "text": "Ensure better protection of journalists and combat abuse and violence to which they are subject ", - "values": [ - "Freedom of the press" - ] - }, - { - "text": "Finalize the procedure to establish a national human rights institution in full compliance with the Paris Principles", - "values": [ - "National Human Rights Institution" - ] - }, - { - "text": "Strengthen efforts to secure human rights for immigrants in irregular situations ", - "values": [ - "Migrants" - ] - }, - { - "text": "Further strengthen the legal framework for the promotion and protection of human rights, including by completing the ratification process of the International Convention on the Protection of the Rights of All Migrant Workers and the Members of Their Families and the Convention of the Rights of Persons with Disabilities", - "values": [ - "Disabilities", - "International instruments", - "Labour", - "Migrants" - ] - }, - { - "text": "Consider enacting a comprehensive law prohibiting the practice of female genital mutilation", - "values": [ - "Rights of the Child", - "Torture and other CID treatment", - "Women's rights" - ] - }, - { - "text": "Continue efforts to harmonize nation legislation with international conventions to which Benin is a party", - "values": [ - "International instruments" - ] - }, - { - "text": "Review its Constitution and legislation to ensure that discrimination on the basis of sexual orientation and gender identity is prohibited", - "values": [ - "Sexual Orientation and Gender Identity" - ] - }, - { - "text": "Reinforce its policies and strategies to eliminate all sorts of discrimination against the Roma community.", - "values": [ - "Minorities" - ] - }, - { - "text": "Step up its efforts towards ratification of the first Optional Protocol to ICCPR", - "values": [ - "CP rights - general", - "International instruments" - ] - }, - { - "text": "Give special attention to families as the foundation of the well-being of the country", - "values": [ - "Other" - ] - }, - { - "text": "Continue to expand the new accusatory system to those provinces and districts where the system is not yet in place", - "values": [ - "Justice" - ] - }, - { - "text": "Continue to promote legislation and actions to eliminate discrimination and strengthen protection of rights of vulnerable groups such as women, children and people with disabilities ", - "values": [ - "Disabilities", - "Rights of the Child", - "Women's rights" - ] - }, - { - "text": "Take further steps for the ratification of several international treaties in the field of human rights that were signed by Slovenia since the first UPR cycle", - "values": [ - "International instruments", - "UPR process" - ] - }, - { - "text": "Implement the recommendations included in the OHCHR report on street children (A/HRC/19/35) ", - "values": [ - "Rights of the Child" - ] - }, - { - "text": "Implement human rights training programmes for the security forces, emphasizing the use of force according to the criteria of necessity and proportionality", - "values": [ - "Human rights education and training" - ] - }, - { - "text": "Adopt a comprehensive policy to protect the rights of persons with disabilities, and to build on measures already adopted such as the establishment of the General Directorate for persons with disabilities", - "values": [ - "Disabilities" - ] - }, - { - "text": "Establish an official moratorium on executions and abolish the death penalty for all crimes", - "values": [ - "Death penalty" - ] - }, - { - "text": "Extend an open invitation to the Special Rapporteur on Torture to visit the country", - "values": [ - "Special procedures", - "Torture and other CID treatment" - ] - }, - { - "text": "Promote the active participation of civil society in the process of follow-up to the UPR", - "values": [ - "UPR process" - ] - }, - { - "text": "Extend a standing invitation to all human rights special procedures ", - "values": [ - "Special procedures" - ] - }, - { - "text": "Launch awareness raising programmes on a national level regarding women", - "values": [ - "Human rights education and training", - "Women's rights" - ] - }, - { - "text": "Ratify the Framework Convention on Tobacco Control of the World Health Organization", - "values": [ - "International instruments", - "Right to health" - ] - }, - { - "text": "Combat better against racial discrimination", - "values": [ - "Racial discrimination" - ] - }, - { - "text": "Expedite the finalization of the policy addressing the situation of refugees and IDPs", - "values": [ - "Asylum-seekers - refugees", - "Internally displaced persons" - ] - }, - { - "text": "Develop a broad national multisectoral strategy to address the rights of indigenous peoples, Afro-descendants and other vulnerable groups subject to discrimination", - "values": [ - "Indigenous peoples", - "Minorities", - "Racial discrimination" - ] - }, - { - "text": "Prioritize an education agenda", - "values": [ - "Right to education" - ] - }, - { - "text": "Consider ratifying the Kampala Convention and drawing up a plan of action for internally displaced persons ", - "values": [ - "Internally displaced persons", - "International instruments" - ] - }, - { - "text": "Deploy the necessary efforts to improve the functioning of the courts dealing with sexual crimes in the country, while intensifying public awareness-raising campaigns aimed at reducing the underutilization of these courts", - "values": [ - "Human rights education and training", - "Justice" - ] - }, - { - "text": "Sign and ratify the Rome Statute of the International Criminal Court ", - "values": [ - "International instruments", - "Justice" - ] - }, - { - "text": "Allocate sufficient funds for the effective protection of victims who report gender-based violence and focus on training and education in order to prevent such acts of violence, especially within the family", - "values": [ - "Rights of the Child", - "Women's rights" - ] - }, - { - "text": "Ratify Second Optional Protocol to ICCPR, aiming at abolishing the death penalty for all crimes or formalize the de facto moratorium on the death penalty ", - "values": [ - "Death penalty", - "International instruments" - ] - }, - { - "text": "Put forward more efforts to eliminate all forms of violence and discrimination against women and to ensure greater women's empowerment, representation and advancement in all sectors to comply with the new Constitution", - "values": [ - "Women's rights" - ] - }, - { - "text": "Ensure that women have full access to justice, obtain equal legal capacity and are treated equally in courts", - "values": [ - "Women's rights" - ] - }, - { - "text": "Take the necessary steps to ensure that citizens can fully enjoy the rights to freedom of expression and freedom of religion.", - "values": [ - "Freedom of opinion and expression", - "Freedom of religion and belief" - ] - }, - { - "text": "Take all measures necessary to ratify the Rome Statute of the ICC ", - "values": [ - "International instruments", - "Justice" - ] - }, - { - "text": "Consider adopting legal provisions to ensure that primary education is free and compulsory for all children without discrimination ", - "values": [ - "Right to education", - "Rights of the Child" - ] - }, - { - "text": "Evaluate the possibility of ratifying the International Convention for the Protection of All Persons from Enforced Disappearance ", - "values": [ - "Enforced disappearances", - "International instruments" - ] - }, - { - "text": "Ensure that human rights bodies such as the Public Prosecutor's Office and the Judiciary have the necessary financial and human resources as well as human rights training to guarantee their independence and impartiality so that they can perform their work effectively", - "values": [ - "Human rights education and training" - ] - }, - { - "text": "Study the possibility of ratifying the Second Optional Protocol to the International Covenant on Civil and Political Rights", - "values": [ - "Death penalty", - "International instruments" - ] - }, - { - "text": "Strengthen and broaden the Strategic Plan to effectively implement the prohibition of female genital mutilation, promoting a change in custom", - "values": [ - "Rights of the Child", - "Torture and other CID treatment", - "Women's rights" - ] - }, - { - "text": "Strengthen the measures on combating domestic and other forms of gender-based violence", - "values": [ - "Women's rights" - ] - }, - { - "text": "Issue a standing invitation to the special procedures mandate holders", - "values": [ - "Special procedures" - ] - }, - { - "text": "Work on the strengthening international cooperation in the field of human rights ", - "values": [ - "Technical assistance and cooperation" - ] - }, - { - "text": "Reconsider both the bans on students wearing ostentatious, religious symbols in public schools and on full-face concealment in public spaces to ensure expression of freedom of religion or belief", - "values": [ - "Freedom of opinion and expression", - "Freedom of religion and belief", - "Right to education" - ] - }, - { - "text": "Guarantee freedom of opinion and expression in accordance with the International Covenant on Civil and Political Rights", - "values": [ - "Freedom of opinion and expression", - "International instruments" - ] - }, - { - "text": "Take human rights into account in the constitutional process, particularly those of women and marginalized or vulnerable groups ", - "values": [ - "Women's rights" - ] - }, - { - "text": "Sign, ratify and implement in national law ICESCR, ICCPR and their Optional Protocols ", - "values": [ - "CP rights - general", - "Death penalty", - "ESC rights - general", - "International instruments" - ] - }, - { - "text": "Ensure women's participation in public, constitutional, and transitional justice processes", - "values": [ - "Women's rights" - ] - }, - { - "text": "Remove legal provisions that restrict the right to freedom of religion or belief, including article 9(d) of the Constitution, which bars non-Muslims from being Maldivian citizens ", - "values": [ - "Freedom of religion and belief", - "Minorities" - ] - }, - { - "text": "Ensure that gender issues are appropriately addressed in its future programmes ", - "values": [ - "Women's rights" - ] - }, - { - "text": "Fully align its national legislation with all obligations under the Rome Statute of the International Criminal Court, including incorporating the Rome Statute definition of crimes and general principles, as well as adopting provisions enabling cooperation with the Court ", - "values": [ - "International instruments", - "Justice" - ] - }, - { - "text": "Take appropriate measures to effectively support the cultures of persons belonging to national minorities, in particular by preserving their languages ", - "values": [ - "ESC rights - general", - "Minorities" - ] - }, - { - "text": "Share best practices in the wide variety of measures it has taken to combat trafficking in persons ", - "values": [ - "Trafficking" - ] - }, - { - "text": "Adopt legal and policy measures for the protection of human rights defenders", - "values": [ - "Human rights defenders" - ] - }, - { - "text": "Take measures to protect the rights of the internally displaced, through comprehensive attention and reparation, in particular access to basic services", - "values": [ - "Internally displaced persons" - ] - }, - { - "text": "Maintain its efforts in the area of combating trafficking in persons, especially women and children, based on the relevant National Action Plan endorsed in 2012", - "values": [ - "Rights of the Child", - "Trafficking", - "Women's rights" - ] - }, - { - "text": "Continue to work in the area of defence and protection of boys and girls", - "values": [ - "Rights of the Child" - ] - }, - { - "text": "Continue its efforts in promoting human rights and gender equality, and ensure that women can be involved in the labour market ", - "values": [ - "Women's rights" - ] - }, - { - "text": "Strengthen the National Human Rights Commission in line with the Paris Principles", - "values": [ - "National Human Rights Institution" - ] - }, - { - "text": "Ensure that civil society organizations and journalists can exercise their freedom of expression and participate in peaceful public gatherings and demonstrations", - "values": [ - "Civil society", - "Freedom of association and peaceful assembly", - "Freedom of opinion and expression", - "Freedom of the press" - ] - }, - { - "text": "Issue clear directives to all health officials prohibiting the sterilization of women living with HIV/AIDS without their informed consent ", - "values": [ - "HIV - Aids", - "Torture and other CID treatment", - "Women's rights" - ] - }, - { - "text": "Combat the trafficking of children, including the problem of combatting the forced begging of children", - "values": [ - "Labour", - "Rights of the Child", - "Trafficking" - ] - }, - { - "text": "Take further measures to improve the condition of the reception centres for asylum seekers and ensure asylum seekers have access to adequate standard of living", - "values": [ - "Asylum-seekers - refugees", - "Detention", - "Right to housing" - ] - }, - { - "text": "Take all measures to implement the National Action Plan for Children ", - "values": [ - "Rights of the Child" - ] - }, - { - "text": "Promote more equal representation of men and women in top positions ", - "values": [ - "Women's rights" - ] - }, - { - "text": "Consider amending articles 98 and 340 of its Criminal Code in order to abolish all kinds of legal protection for perpetrators of honour killings", - "values": [ - "Rights of the Child", - "Women's rights" - ] - }, - { - "text": "Apply the relevant international experience in ensuring the protection of human rights in the zones of environmental crisis", - "values": [ - "Environment" - ] - }, - { - "text": "Put forward the utmost efforts to implement all recommendations made by the human rights mechanisms to provide people in the occupied territories with the civil, political, economic, social and cultural rights in equal manners ", - "values": [ - "CP rights - general", - "ESC rights - general", - "Special procedures", - "Treaty bodies", - "UPR process" - ] - }, - { - "text": "Pursue measures to include and protect minorities ", - "values": [ - "Minorities" - ] - }, - { - "text": "Undertake effective measures to guarantee access to education for juveniles in the penitentiary system", - "values": [ - "Detention", - "Right to education", - "Rights of the Child" - ] - }, - { - "text": "Implement the recommendation given by the Committee on the Elimination of Discrimination against Women (CEDAW) to conduct a comprehensive study on the situation of minority women and develop a national strategy to improve the living conditions for minority women", - "values": [ - "Minorities", - "Treaty bodies", - "Women's rights" - ] - }, - { - "text": "Continue the approach of cooperation, mutual respect and non-politicization of human rights issues", - "values": [ - "Other" - ] - }, - { - "text": "Scale up effective measures to further increase women's representation and their meaningful participation in decision-making level in the public and private sectors", - "values": [ - "Women's rights" - ] - }, - { - "text": "Modify its legislation on nationality so as to guarantee equal rights for men and women with respect to the handing down of nationality to their children and spouses", - "values": [ - "Women's rights" - ] - }, - { - "text": "Continue to develop education, health so that people can enjoy education and health of higher quality ", - "values": [ - "Right to education", - "Right to health" - ] - }, - { - "text": "Agree to the requests for visit by the Special Rapporteur on the right to food ", - "values": [ - "Right to food", - "Special procedures" - ] - }, - { - "text": "Expedite its accession to CRPD and other outstanding human rights treaties, particularly those that it had committed to during the last UPR", - "values": [ - "Disabilities", - "International instruments", - "UPR process" - ] - }, - { - "text": "Carry out credible and transparent investigations into the killings of politicians and members of the armed forces in June 2009, and bring to justice the perpetrators of these crimes ", - "values": [ - "Justice" - ] - }, - { - "text": "Step up the process of creating the Authority for Gender Equality and Action against All Forms of Discrimination", - "values": [ - "Women's rights" - ] - }, - { - "text": "Consider the ratification of the Protocol to Prevent, Suppress and Punish Trafficking in Persons, especially Women and Children", - "values": [ - "International instruments", - "Rights of the Child", - "Trafficking", - "Women's rights" - ] - }, - { - "text": "Combat corruption in the judicial system and promote justice", - "values": [ - "Corruption", - "Justice" - ] - }, - { - "text": "Introduce a moratorium on the death penalty in all cases, including penalties for the crime of terrorism and war crimes, although the abolition of the death penalty for civilians is noted with satisfaction", - "values": [ - "Death penalty" - ] - }, - { - "text": "Make teaching on genocide and crimes against humanity a part of curriculum in public schools", - "values": [ - "Human rights education and training" - ] - }, - { - "text": "Continue the practice of constructive engagement by the country with relevant international human rights mechanisms", - "values": [ - "Special procedures", - "Treaty bodies", - "UPR process" - ] - }, - { - "text": "Vigorously investigate and prosecute prison and police officials guilty of the mistreatment of detainees and prisoners. ", - "values": [ - "Detention" - ] - }, - { - "text": "Further strengthen the human rights institutions to ensure better protection of the rights of children, women and indigenous people", - "values": [ - "Indigenous peoples", - "Rights of the Child", - "Women's rights" - ] - }, - { - "text": "Achieve exemplary harmony by aligning national legislations with international treaties and protocols that it has ratified", - "values": [ - "International instruments" - ] - }, - { - "text": "Pass comprehensive and specific legislation on violence against women that contains both criminal and civil provisions", - "values": [ - "Women's rights" - ] - }, - { - "text": "Establish an effective independent monitoring mechanism to investigate complaints of torture", - "values": [ - "Torture and other CID treatment" - ] - }, - { - "text": "Consider the possibility of acceding to the Optional Protocol to the Convention on the Rights of the Child on the sale of children, child prostitution and child pornography.", - "values": [ - "International instruments", - "Rights of the Child", - "Trafficking" - ] - }, - { - "text": "Take decisive measures to ensure the prevention of cases of harassment and intimidation of human rights defenders, including through a high-level public campaign in support of the positive role of civil society, and specifically denouncing these attacks and through independent investigation and prosecution of perpetrators", - "values": [ - "Human rights defenders" - ] - }, - { - "text": "Ensure full abolition of all forms of early and forced marriages", - "values": [ - "Rights of the Child", - "Women's rights" - ] - }, - { - "text": "Make greater efforts to establish a national institution for human rights and cooperate with the Office of the United Nations High Commissioner for Human Rights and other relevant United Nations organs, and seek from the international community the necessary financial support to attain that objective ", - "values": [ - "National Human Rights Institution", - "Technical assistance and cooperation" - ] - }, - { - "text": "Continue strengthening the national human rights institution in line with the Paris Principles ", - "values": [ - "National Human Rights Institution" - ] - }, - { - "text": "Consider signing and-or ratifying the Rome Statute of the International Criminal Court", - "values": [ - "International instruments", - "Justice" - ] - }, - { - "text": "Continue to address violence against women including measures to ensure that domestic violence and rapes are duly reported", - "values": [ - "Rights of the Child", - "Women's rights" - ] - }, - { - "text": "Implement their "Diversity Enriches" programme to promote inclusion, tolerance and integration of people from different backgrounds, nationalities, religions, genders and sexual orientations", - "values": [ - "Freedom of religion and belief", - "Racial discrimination", - "Sexual Orientation and Gender Identity" - ] - }, - { - "text": "Strengthen cooperation with the international community and the United Nations human rights bodies in order to consolidate and promote human rights in the country ", - "values": [ - "Treaty bodies" - ] - }, - { - "text": "Proceed to the ratification of the International Convention for the Protection of All Persons against Enforced Disappearance and the Convention on the Rights of persons with disabilities, and ensure the transposition into national law of the ratified treaties", - "values": [ - "Disabilities", - "Enforced disappearances", - "International instruments" - ] - }, - { - "text": "Systematically collect data on violence against women, sexual violence and trafficking", - "values": [ - "Trafficking", - "Women's rights" - ] - }, - { - "text": "Strengthen its efforts on gender equality, including in combating negative stereotypes about women on their social roles and in ensuring wider employment opportunities for women", - "values": [ - "Women's rights" - ] - }, - { - "text": "Provide training for the judiciary and public officials, as well as health service providers to deal with victims of violence", - "values": [ - "Justice" - ] - }, - { - "text": "Accelerate its accession to several international human rights instruments in order to make up for the backlog in this area ", - "values": [ - "International instruments" - ] - }, - { - "text": "Call upon the Working Group on the Universal Periodic Review to consider its request, contained in paragraph 92 of its national report, related to its needs in the field of capacity-building and technical cooperation ", - "values": [ - "Technical assistance and cooperation", - "UPR process" - ] - }, - { - "text": "Ratify the Optional Protocol to the Convention on the Elimination of All Forms of Discrimination against Women, signed by Chile in 1999 ", - "values": [ - "International instruments", - "Women's rights" - ] - }, - { - "text": "Sign and ratify the International Convention on the Elimination of All Forms of Racial Discrimination", - "values": [ - "International instruments", - "Racial discrimination" - ] - }, - { - "text": "Continue to develop its health-care undertakings to better guarantee people\u2019s right to health", - "values": [ - "Right to health" - ] - }, - { - "text": "Ratify without reservations the Convention on the Elimination of All Forms of Discrimination against Women and its Optional Protocol, and the Protocol to the African Charter on Human and People's Rights on the Rights of Women in Africa ", - "values": [ - "International instruments", - "Women's rights" - ] - }, - { - "text": "Thailand will become a party to the Convention for the Protection of All Persons from Enforced Disappearance, ILO Conventions No. 87 on Freedom of Association and Protection of the Right to Organise and No. 98 on the Right to Organise and Collective Bargaining", - "values": [ - "Enforced disappearances", - "Freedom of association and peaceful assembly", - "International instruments", - "Labour" - ] - }, - { - "text": "Commit itself to respecting freedom of expression and opinion for all, in particular for members of the opposition ", - "values": [ - "Freedom of opinion and expression" - ] - }, - { - "text": "Continue to effectively combat arbitrary arrest and pursue redeployment of the administration to reduce these practices as much as possible ", - "values": [ - "Detention" - ] - }, - { - "text": "Share its experience and good practices in the area of social protection and health, particularly on programmes to control epidemics, including HIV-AIDS programs and the special attention provided to those affected", - "values": [ - "HIV - Aids", - "Right to health" - ] - }, - { - "text": "Continue its efforts to further advance its justice system", - "values": [ - "Justice" - ] - }, - { - "text": "Extend, before the end of 2016, a standing invitation to the Special Rapporteur on the promotion and protection of the right to freedom of opinion and expression as well as to the Working Group on Enforced or Involuntary Disappearances", - "values": [ - "Enforced disappearances", - "Freedom of opinion and expression", - "Special procedures" - ] - }, - { - "text": "Take appropriate measures to guarantee and promote freedom of expression and pluralism of information.", - "values": [ - "Freedom of opinion and expression" - ] - }, - { - "text": "Take all necessary measures to guarantee that the mandatory limits for pre-trial detention are respected in practice, and seek international assistance to address the issue of corporal punishment as well as the one of street children ", - "values": [ - "Detention", - "Rights of the Child", - "Technical assistance and cooperation", - "Torture and other CID treatment" - ] - }, - { - "text": "Promote awareness-raising campaigns on preventing discrimination and bullying based on sexual orientation and gender identity to the broader public, and in particular to students and teachers", - "values": [ - "Human rights education and training", - "Sexual Orientation and Gender Identity" - ] - }, - { - "text": "Sign and ratify the Istanbul Convention of the Council of Europe on preventing and combating violence against women and domestic violence", - "values": [ - "International instruments", - "Rights of the Child", - "Women's rights" - ] - }, - { - "text": "Continue to seriously combat trafficking in persons, implementing legislation in this area, the National Plan against Trafficking in persons (2008-2016) the on-line police system to receive complaints of victims of trafficking in persons and to fight this scourge ", - "values": [ - "Trafficking" - ] - }, - { - "text": "Continue to work on the promotion of human rights in the region of Transnistria, integral part of the territory of the Republic of Moldova. This commitment was undertaken upon accession to the Human Rights Council ", - "values": [ - "General" - ] - }, - { - "text": "Provide adequate resources to the National Human Rights Commission and appoint independent and credible commissioners", - "values": [ - "National Human Rights Institution" - ] - }, - { - "text": "Extend the standing invitation to all the mechanisms and special procedures of the Human Rights Council", - "values": [ - "Special procedures" - ] - }, - { - "text": "Continue strengthening the participation of women, and especially, ensure the adoption of the framework legislation on prevention, sanction and elimination of violence against women and girls", - "values": [ - "Rights of the Child", - "Women's rights" - ] - }, - { - "text": "Ratify the ICRMW and the UNESCO Convention against Discrimination in Education", - "values": [ - "International instruments", - "Labour", - "Migrants", - "Right to education" - ] - }, - { - "text": "Continue efforts to ensure that people belonging to minority groups are not discriminated against in the criminal justice system.", - "values": [ - "Minorities" - ] - }, - { - "text": "Take concrete steps to improve access to decent work and other economic opportunities for women in achieving gender equality", - "values": [ - "Women's rights" - ] - }, - { - "text": "Continue its efforts to ensure due commemoration of the Holocaust", - "values": [ - "Other" - ] - }, - { - "text": "Fully implement certain recommendations to which it has committed itself", - "values": [ - "General" - ] - }, - { - "text": "Move towards ratification of the ICCPR at the earliest possible date", - "values": [ - "CP rights - general", - "International instruments" - ] - }, - { - "text": "Continue its efforts towards people with special needs, and ensure that they are exempted from paying some expenses", - "values": [ - "Other" - ] - }, - { - "text": "Take measures to address all allegations of abuse or intimidation against human rights defenders by the security forces, and integrate human rights education into police training programmes", - "values": [ - "Human rights defenders", - "Human rights education and training", - "Human rights violations by state agents" - ] - }, - { - "text": "Continue the practice of implementing programmes aimed at further improving the welfare of the population", - "values": [ - "Development" - ] - }, - { - "text": "Expedite the efforts in combating corruption and in consolidating the rule of law", - "values": [ - "Corruption", - "Justice" - ] - }, - { - "text": "Reduce controls on its population, including the closure of markets, suppression of criticism of Government policies, lack of alternative media and harsh penalties on those who access external information ", - "values": [ - "Freedom of opinion and expression", - "Freedom of the press" - ] - }, - { - "text": "Continue measures to close gaps in birth and civil registration", - "values": [ - "Statelessness and the right to nationality" - ] - }, - { - "text": "Continue its positive efforts in promoting and protecting the human rights of its people ", - "values": [ - "General" - ] - }, - { - "text": "Ensure that victims of human trafficking are never detained and that their rights relating to medical follow-up, residence and work permit are respected ", - "values": [ - "Trafficking" - ] - }, - { - "text": "Continue efforts to incorporate a human rights perspective in the on- going processes of law and institutional reform", - "values": [ - "Justice" - ] - }, - { - "text": "Establish and enforce explicit legal protection against female genital mutilation", - "values": [ - "Rights of the Child", - "Torture and other CID treatment", - "Women's rights" - ] - }, - { - "text": "Issue a standing invitation to all mandate holders and allow a visit by the Special Rapporteurs on Freedom of Opinion and Expression and on Human Rights Defenders ", - "values": [ - "Freedom of opinion and expression", - "Human rights defenders", - "Special procedures" - ] - }, - { - "text": "Strengthen laws to ensure the protection of children from child labour and trafficking of children for purposes of sexual exploitation by establishing programmes for reinsertion in school and rehabilitation", - "values": [ - "Labour", - "Rights of the Child", - "Trafficking" - ] - }, - { - "text": "Continue its efforts to end female genital mutilation, inter alia through enforcement of legislation and implementation of programmes sensitizing the population about its harmful effects ", - "values": [ - "Rights of the Child", - "Torture and other CID treatment", - "Women's rights" - ] - }, - { - "text": "Speed up its efforts to establish a NHRI in accordance with the Paris Principles and provide sufficient resources for it to be effective ", - "values": [ - "National Human Rights Institution" - ] - }, - { - "text": "Pursue efforts to ensure that labour relations between workers and employers are in line with international labour standards", - "values": [ - "Labour" - ] - }, - { - "text": "Speedily implement provisions related to the intention of the Government to abolish capital punishment. ", - "values": [ - "Death penalty" - ] - }, - { - "text": "Ratify and implement OP-CAT at the earliest possible date", - "values": [ - "Detention", - "International instruments", - "Torture and other CID treatment" - ] - }, - { - "text": "Continue its efforts to ratify CPED, International Convention on the Protection of the Rights of All Migrant Workers and Members of Their Families (ICRMW), OP-ICESCR and, the Optional Protocol to the Convention against Torture and other Cruel, Inhuman or Degrading Treatment or Punishment (OP-CAT) ", - "values": [ - "International instruments" - ] - }, - { - "text": "Ratify the ILO Work on Fishing Convention, 2007 (N0. 188)", - "values": [ - "Environment", - "International instruments", - "Labour" - ] - }, - { - "text": "Enact laws and legislation on freedom of expression in line with both articles 19 and 20 of the ICCPR ", - "values": [ - "Freedom of opinion and expression", - "International instruments" - ] - }, - { - "text": "Take further action towards gender equality, including a legal provision on the minimum age for marriage ", - "values": [ - "Rights of the Child" - ] - }, - { - "text": "Incorporate a comprehensive definition of discrimination into national legislation", - "values": [ - "Other" - ] - }, - { - "text": "Adopt appropriate measures to ensure the protection of human rights defenders, journalists and members of the political opposition from acts of aggression and intimidation and abstain from taking any restrictive measures or reprisals against human rights defenders, notably those who cooperate with the Human Rights Council", - "values": [ - "Human rights defenders" - ] - }, - { - "text": "Take further steps to protect the human rights of those who live in rural areas where respect for basic human rights, especially with regard to women and children, remains impeded under customary law.", - "values": [ - "Rights of the Child", - "Women's rights" - ] - }, - { - "text": "Improve gender representation at all levels of society ", - "values": [ - "Women's rights" - ] - }, - { - "text": "Take effective legislative, administrative and other measures to prevent, investigate and punish acts of torture or ill-treatment and to ratify the Optional Protocol to the Convention against Torture", - "values": [ - "Detention", - "International instruments", - "Torture and other CID treatment" - ] - }, - { - "text": "Increase the level of social investment in accordance with the Extractive Industries Transparency Initiative with a view to guaranteeing the progressive realization of economic, social and cultural rights by establishing priorities to eradicate poverty and guaranteeing access to basic social necessities ", - "values": [ - "Business and human rights", - "ESC rights - general", - "Poverty" - ] - }, - { - "text": "Continue with actions aimed at the protection of migrant workers, especially domestic workers, from mistreatment and abuse ", - "values": [ - "Labour", - "Migrants" - ] - }, - { - "text": "Consider adopting a national legislation on combating sexual harassment", - "values": [ - "Women's rights" - ] - }, - { - "text": "Adopt regulations to operationalize constitutional amendments related to slave labour", - "values": [ - "Labour" - ] - }, - { - "text": "Set a concrete time frame and take concrete actions in order to resolve the abduction issue as soon as possible, including ensuring the immediate return of Japanese and other abductees \n\n", - "values": [ - "Other" - ] - }, - { - "text": "Ratify the CERD, the ICCPR and the Optional Protocols thereto, the ICESCR, the CAT and the Optional Protocol thereto, the Optional Protocols to the CRC, the Convention on the Rights of Persons with Disabilities and the Optional Protocol thereto, and the International Convention for the Protection of All Persons from Enforced Disappearance ", - "values": [ - "International instruments" - ] - }, - { - "text": "Update and enact the pending disaster management bill with a view to realizing these basic rights to clean and safe drinking water and the right to a clean environment", - "values": [ - "Environment", - "Right to water and sanitation" - ] - }, - { - "text": "Take effective steps to improve accountability with a view to eradicating impunity ", - "values": [ - "Impunity" - ] - }, - { - "text": "Take measures to achieve timely registration of all births and create an adequate and credible birth registration system ", - "values": [ - "Rights of the Child", - "Statelessness and the right to nationality" - ] - }, - { - "text": "In line with the resolution by the Parliamentary Assembly of the Council of Europe adopted on 2 October 2012, amend the new law on NGOs so that it cannot be used as an instrument of repression and intimidation of NGOs and civil society ", - "values": [ - "Civil society", - "Freedom of association and peaceful assembly" - ] - }, - { - "text": "Accelerate the Parliamentary adoption procedure of the reform Sexual Offences and Domestic Violence Bill", - "values": [ - "Rights of the Child", - "Women's rights" - ] - }, - { - "text": "Establish the moratorium on the death penalty", - "values": [ - "Death penalty" - ] - }, - { - "text": "Continue to promote human rights education and training at all levels of the education system", - "values": [ - "Human rights education and training" - ] - }, - { - "text": "Consider revising its relevant legislation on abortion in line with international human rights standards on sexual and reproductive health and rights", - "values": [ - "International instruments", - "Right to health", - "Women's rights" - ] - }, - { - "text": "Ensuring that the rights to freedom of religion or belief of all migrant workers and members of their families are respected, inter alia ", - "values": [ - "Freedom of religion and belief", - "Labour", - "Migrants" - ] - }, - { - "text": "Take additional measures to strengthen the fight against discrimination against women.", - "values": [ - "Women's rights" - ] - }, - { - "text": "Ensure inclusive education in line with the Convention on the Rights of Persons with Disabilities", - "values": [ - "Disabilities", - "International instruments", - "Right to education" - ] - }, - { - "text": "Continue efforts to improve the situation of women and combat violence against women", - "values": [ - "Women's rights" - ] - }, - { - "text": "Enhance the prevention of and combat trafficking in human beings, including internal and cross-border trafficking of women and children for the purpose of sexual exploitation or forced labour, by inter alia implementing anti-trafficking legislation, protecting victims and offering necessary help and assistance", - "values": [ - "Labour", - "Rights of the Child", - "Trafficking", - "Women's rights" - ] - }, - { - "text": "Sign and ratify the Rome Statute of the ICC", - "values": [ - "International instruments", - "Justice" - ] - }, - { - "text": "Take the necessary measures to protect the victims of Boko Haram and the terrorist groups, in particular children", - "values": [ - "Public security", - "Rights of the Child" - ] - }, - { - "text": "Lift the reservation to Article 9(2) of the CEDAW Convention ", - "values": [ - "International instruments", - "Women's rights" - ] - }, - { - "text": "Continue efforts to strengthen the education system in accordance with international standards, placing due emphasis on human rights education", - "values": [ - "Human rights education and training" - ] - }, - { - "text": "Take measures to prevent violence and discrimination against persons based on their sexual orientation and gender identity", - "values": [ - "Sexual Orientation and Gender Identity" - ] - }, - { - "text": "Continue efforts to guarantee freedom of expression, while safeguarding against its abuse", - "values": [ - "Freedom of opinion and expression" - ] - }, - { - "text": "Recommended that the guarantee provided for the freedom of association and assembly should be enshrined into law.", - "values": [ - "Freedom of association and peaceful assembly" - ] - }, - { - "text": "Strengthen efforts preventing torture, including through ensuring that the Office responsible for handling alleged instances of abuses as foreseen by Law 3938/2011 functions effectively and independently and with sufficient funding and staff", - "values": [ - "Torture and other CID treatment" - ] - }, - { - "text": "Complete the ratification of the Convention on the Rights of Persons with Disabilities (CRPD) as well as the Optional Protocol to the Convention on the Elimination of All Forms of Discrimination against Women (OP-CEDAW)", - "values": [ - "Disabilities", - "International instruments", - "Women's rights" - ] - }, - { - "text": "Continue to decrease prison overcrowding by providing new and adequate detention facilities", - "values": [ - "Detention" - ] - }, - { - "text": "Adopt appropriate public policies to protect and promote children's rights and to implement the national child protection system in an effective and coordinated manner ", - "values": [ - "Rights of the Child" - ] - }, - { - "text": "Halt immediately reported human rights violations by military and police officers and a general climate of impunity in Papua ", - "values": [ - "Human rights violations by state agents", - "Impunity" - ] - }, - { - "text": "Ensure that rural women participate in decision-making processes and have full access to education, health services, credit and marketing facilities, land and income-generating projects", - "values": [ - "Women's rights" - ] - }, - { - "text": "Further strengthen laws and policies to protect the freedom of religion and belief, as well as the freedom of expression, association and assembly ", - "values": [ - "Freedom of association and peaceful assembly", - "Freedom of opinion and expression", - "Freedom of religion and belief" - ] - }, - { - "text": "Continue its efforts to ensure that the new legal framework is effectively applied by all of the country's authorities with the aim that all citizens are able to effectively exercise their rights", - "values": [ - "Justice" - ] - }, - { - "text": "Ensure the full respect of the constitutional provisions on freedom of expression, and refrain from using administrative, judicial, or financial means to limit the exercise of this human right", - "values": [ - "Freedom of opinion and expression" - ] - }, - { - "text": "Establish a mechanism that monitors the implementation of the 2014 anti-discrimination legislation and action-oriented strategies", - "values": [ - "Other" - ] - }, - { - "text": "Continuing of institutional and capacity building of the Bahraini police forces in a way that positively reflects effective respect to human rights ", - "values": [ - "Human rights education and training" - ] - }, - { - "text": "Complete the process of adoption of the child protection act", - "values": [ - "Rights of the Child" - ] - }, - { - "text": "Continue its efforts to achieve Millennium Development Goals within the stipulated time frame", - "values": [ - "Development" - ] - }, - { - "text": "Adopt a general law that sanctions discrimination for any reason, in particular against women and lesbian, gay, bisexual, transgender and intersex (LGTBI) persons", - "values": [ - "Sexual Orientation and Gender Identity" - ] - }, - { - "text": "Continue its efforts to ensure respect for the rights and fundamental freedoms of all the population, guaranteeing the investigation and punishment of perpetrators of human rights violations, demonstrating its commitment to combating impunity", - "values": [ - "Impunity" - ] - }, - { - "text": "Continue the trend to strengthen the protection of children with disabilities, promoting their inclusive education", - "values": [ - "Disabilities", - "Right to education", - "Rights of the Child" - ] - }, - { - "text": "Keep under review legislation pertaining to the policing of social protests and the tactics developed in response by law enforcement agencies, and ensure that any excessive use of force is investigated and prosecuted ", - "values": [ - "Freedom of association and peaceful assembly", - "Human rights violations by state agents" - ] - }, - { - "text": "Continue its efforts to fight poverty and ensure sustainable development, as well as implement fully plans to reduce illiteracy and to provide high-quality medical services (particularly to those affected by HIV/AIDs), ensure the population has access to water ", - "values": [ - "Development", - "HIV - Aids", - "Poverty", - "Right to education", - "Right to health", - "Right to water and sanitation" - ] - }, - { - "text": "Further develop the multi-lingual approach by which foreign language children are enabled to keep in touch with their mother tongue while learning Luxemburgish, French and German", - "values": [ - "Migrants", - "Rights of the Child" - ] - }, - { - "text": "Undertake effective measures to ensure the independence of the judiciary", - "values": [ - "Justice" - ] - }, - { - "text": "Consider ratifying ILO Convention No. 169 ", - "values": [ - "Indigenous peoples", - "International instruments" - ] - }, - { - "text": "Ensure the protection of private life and prevent cases of unwarranted access by special agencies to the personal information of citizens on the Internet when there is no connection with any illegal actions", - "values": [ - "Privacy" - ] - }, - { - "text": "Take measures to address patriarchal attitudes and stereotypes that discriminate against women", - "values": [ - "Women's rights" - ] - }, - { - "text": "Continue the free access to education, notably for girls and vulnerable children", - "values": [ - "Right to education", - "Rights of the Child", - "Women's rights" - ] - }, - { - "text": "Human rights education which includes training programmes for civil servants to promote human rights policy and mainstream it in various areas", - "values": [ - "Human rights education and training" - ] - }, - { - "text": "Take steps to ensure that sexual and reproductive health services, including abortion and contraception services and information, are available, accessible and affordable to all women and girls, especially in rural areas and among vulnerable groups", - "values": [ - "Right to health", - "Women's rights" - ] - }, - { - "text": "Further review and harmonize all relevant laws in accordance with the ratified human rights instruments ", - "values": [ - "International instruments" - ] - }, - { - "text": "Seek provision of necessary technical assistance for human rights programmes in the fields of access to justice, law enforcement and environmental protection", - "values": [ - "Environment", - "Justice", - "Technical assistance and cooperation" - ] - }, - { - "text": "Establish a national human rights institution in compliance with the Paris Principles", - "values": [ - "National Human Rights Institution" - ] - }, - { - "text": "Repeal the July 2008 law that allows the death penalty, in line with Liberia's obligations under the Second Optional Protocol to the ICCPR", - "values": [ - "Death penalty", - "International instruments" - ] - }, - { - "text": "Swiftly ratify the Optional Protocol to the International Covenant on Economic, Social and Cultural Rights", - "values": [ - "ESC rights - general", - "International instruments" - ] - }, - { - "text": "Take measures to ensure equal treatment of women in social and professional areas", - "values": [ - "Women's rights" - ] - }, - { - "text": "Continue to seek constructive cooperation with international mechanisms and other countries in areas of human rights in a non confrontational and non-politicized manner", - "values": [ - "Other" - ] - }, - { - "text": "Continue its constructive engagement with the Human Rights Council and its mechanisms", - "values": [ - "Special procedures", - "Treaty bodies", - "UPR process" - ] - }, - { - "text": "Ensure that thorough investigations of allegations of acts of violence committed against individuals because of their sexual orientation or identity are promptly conducted ", - "values": [ - "Sexual Orientation and Gender Identity" - ] - }, - { - "text": "Fully implement the recommendations of the Special Rapporteur on the independence of judges and lawyers and ensure that the concept of separation of powers is fully respected", - "values": [ - "Justice", - "Special procedures" - ] - }, - { - "text": "Implement measures to foster a climate of greater tolerance and acceptance towards immigrants, many of whom face persecution and-or civil strife in their home countries and are therefore unable to return.", - "values": [ - "Migrants" - ] - }, - { - "text": "Incorporate fully in its legislation the provisions of the Convention on the Rights of the Child to enhance the protection of children's rights.", - "values": [ - "International instruments", - "Rights of the Child" - ] - }, - { - "text": "Take necessary measures in the implementation of the Convention on the Rights of Persons with Disabilities", - "values": [ - "Disabilities", - "International instruments" - ] - }, - { - "text": "Ensure freedom of expression online and offline, including guaranteeing freedom of the press and decriminalizing all defamation in the Penal Code", - "values": [ - "Freedom of opinion and expression", - "Freedom of the press" - ] - }, - { - "text": "Take the measures necessary to guarantee that the Roma ethnic minority has access to identity documentation, without mentioning their ethnic group", - "values": [ - "Minorities" - ] - }, - { - "text": "Take all necessary measures to fight internal trafficking of children", - "values": [ - "Rights of the Child", - "Trafficking" - ] - }, - { - "text": "Amend the Penal Code and relevant legislation to end impunity for torture and ensure victims' right to justice and to compensation", - "values": [ - "Impunity", - "Torture and other CID treatment" - ] - }, - { - "text": "Cooperate with the special procedures ", - "values": [ - "Special procedures" - ] - }, - { - "text": "Work towards the effective establishment of the national human rights institution", - "values": [ - "National Human Rights Institution" - ] - }, - { - "text": "Continue to prioritize policies and programmes aimed at eradicating poverty and underdevelopment and ensuring the enjoyment of all economic, social and cultural rights ", - "values": [ - "Development", - "ESC rights - general", - "Poverty" - ] - }, - { - "text": "Protect the rights of women and girls from gender-based violence, in particular domestic violence and femicide, and increase support to victims of all forms of gender-based violence", - "values": [ - "Rights of the Child", - "Women's rights" - ] - }, - { - "text": "Eliminate the type of crime of \u201cunnatural carnal knowledge\u201c and adopt measures to eradicate discrimination motivated by sexual orientation and gender identity", - "values": [ - "Sexual Orientation and Gender Identity" - ] - }, - { - "text": "Legislation was being prepared to enable ratification of the Optional Protocol to the Convention against Torture", - "values": [ - "Detention", - "International instruments", - "Torture and other CID treatment" - ] - }, - { - "text": "Consider a reduction of the detention time of irregular migrants and asylum seekers.", - "values": [ - "Asylum-seekers - refugees", - "Migrants" - ] - }, - { - "text": "Adopt a national plan for children as soon as possible", - "values": [ - "Rights of the Child" - ] - }, - { - "text": "Take all necessary measures to eliminate, in law and in practice, violence against women and corporal punishment of boys and girls", - "values": [ - "Rights of the Child", - "Torture and other CID treatment", - "Women's rights" - ] - }, - { - "text": "Ratify the remaining international human rights instruments and implement them and follow up on them", - "values": [ - "International instruments" - ] - }, - { - "text": "To pursue in its efforts to ensure that indigenous peoples enjoy their right to education ", - "values": [ - "Indigenous peoples", - "Right to education" - ] - }, - { - "text": "Continue to strengthen the national mechanism on gender equality, as recommended by the Committee on the Elimination of Discrimination against Women ", - "values": [ - "Treaty bodies", - "Women's rights" - ] - }, - { - "text": "Take up again the recommendations of the first review relating to the creation of a national human rights institution in conformity with the Paris Principles", - "values": [ - "National Human Rights Institution" - ] - }, - { - "text": "Carry out investigations into cases of harmful practices against children, ensure that the perpetrators are prosecuted and remove children from environments in which such practices are carried out", - "values": [ - "Rights of the Child" - ] - }, - { - "text": "Extend an open and standing invitation for all the special procedures", - "values": [ - "Special procedures" - ] - }, - { - "text": "Take all necessary measures to ensure the effective implementation of the Criminal Code offence of gender-related killings of women and to guarantee effective access to justice for women who are victims of violence, as well as their protection", - "values": [ - "Women's rights" - ] - }, - { - "text": "Take the necessary steps to ensure the protection of human rights defenders, including by implementing precautionary measures requested by international human rights bodies", - "values": [ - "Human rights defenders", - "Treaty bodies" - ] - }, - { - "text": "Strengthen measures to ensure the investigation and sanctioning of hate speech against minorities, including those made in the media and during political discourse", - "values": [ - "Minorities", - "Racial discrimination" - ] - }, - { - "text": "Amend its national legislation on defamation and blasphemy in accordance with international human rights law", - "values": [ - "Freedom of opinion and expression", - "Freedom of religion and belief" - ] - }, - { - "text": "Fully enforce the prohibition of child labour in the informal, agricultural and domestic work, including by ensuring the right to education to all children and by defining a list of hazardous work", - "values": [ - "Labour", - "Right to education", - "Rights of the Child" - ] - }, - { - "text": "Further strengthen the capacity to promote children's rights at the federal, regional and local levels ", - "values": [ - "Rights of the Child" - ] - }, - { - "text": "Redouble efforts to guarantee the protection of human rights and fundamental freedoms in the fight against terrorism, paying particular attention to the recommendations made by the Special Rapporteur on this subject.", - "values": [ - "Counter-terrorism", - "Special procedures" - ] - }, - { - "text": "Initiate a process of abolition of the death penalty and establish an immediate moratorium in relation to its application", - "values": [ - "Death penalty" - ] - }, - { - "text": "Continue its efforts aimed at promoting and protecting the rights of children ", - "values": [ - "Rights of the Child" - ] - }, - { - "text": "Invite other Special Rapporteurs dealing with economic and social rights to visit the country", - "values": [ - "ESC rights - general", - "Special procedures" - ] - }, - { - "text": "Continue promoting economic and social sustainable development in order to lay a solid foundation for the enjoyment of human rights", - "values": [ - "ESC rights - general" - ] - }, - { - "text": "Consider applying the Yogyakarta Principles on the Application of International Human Rights Law in relation to Sexual Orientation and Gender Identity as a guide to assist in policy development", - "values": [ - "International instruments", - "Sexual Orientation and Gender Identity" - ] - }, - { - "text": "Take all appropriate measures to better combat child labour and child begging ", - "values": [ - "Labour", - "Rights of the Child" - ] - }, - { - "text": "Continue efforts aimed at combating female genital mutilation, inter alia through the implementation of programmes sensitizing the population about its harmful effects ", - "values": [ - "Rights of the Child", - "Torture and other CID treatment", - "Women's rights" - ] - }, - { - "text": "Review national legislation which results in the discrimination, prosecution and punishment of people solely for their sexual orientation or gender identity ", - "values": [ - "Sexual Orientation and Gender Identity" - ] - }, - { - "text": "Intensify its efforts to implement existing laws against child trafficking, including Law No. 2006-04 on the conditions of displacement of minors and combating child trafficking in Benin, by raising awareness among populations at risk and taking necessary steps to ensure that those responsible for child trafficking are prosecuted in conformity with international norms", - "values": [ - "Rights of the Child", - "Trafficking" - ] - }, - { - "text": "Accredit the national human rights institution with the International Coordinating Committee of National Institutions for the Promotion and Protection of Human Rights and provide it with adequate resources ", - "values": [ - "National Human Rights Institution" - ] - }, - { - "text": "Continue the efforts to widen the scope of the 1996 Bill of Rights to include economic, social and cultural rights", - "values": [ - "ESC rights - general" - ] - }, - { - "text": "Adopt the necessary legislative measures in the Criminal Code to define domestic violence and criminalize marital rape as a specific crime ", - "values": [ - "Rights of the Child", - "Women's rights" - ] - }, - { - "text": "Improve the conditions of the access of vulnerable people to healthcare ", - "values": [ - "Right to health" - ] - }, - { - "text": "Consider ratifying the International Covenant on Economic, Social and Cultural Rights", - "values": [ - "ESC rights - general", - "International instruments" - ] - }, - { - "text": "Continue to implement national laws in compliance with international human rights instruments in all areas, especially on the human rights of vulnerable groups, rights of the child, women's rights, rights of persons with disabilities and elderly persons", - "values": [ - "Disabilities", - "International instruments", - "Rights of the Child", - "Women's rights" - ] - }, - { - "text": "Consider ratifying the International Convention for the Protection of the Rights of All Migrant Workers and Members of Their Families.", - "values": [ - "International instruments", - "Labour", - "Migrants" - ] - }, - { - "text": "Intensify its awareness-raising and strengthening prevention efforts and measures and put in place effective monitoring and evaluation mechanisms to ensure the effectiveness of measures taken to address all forms of violence against women", - "values": [ - "Women's rights" - ] - }, - { - "text": "Put in place initiatives aimed at raising awareness, especially among professionals who work in the area, about violations of the human rights of children, including sexual abuse", - "values": [ - "Human rights education and training", - "Rights of the Child" - ] - }, - { - "text": "Intensify its efforts with a view to decrease infant and maternal mortality rates ", - "values": [ - "Right to health", - "Rights of the Child", - "Women's rights" - ] - }, - { - "text": "Continue to strengthen its cooperation with the United Nations treaty bodies. Cooperation with the OHCHR is also key to support national reforms", - "values": [ - "Technical assistance and cooperation", - "Treaty bodies" - ] - }, - { - "text": "Further efforts to increase the representation of women in leadership, public and decision-making positions", - "values": [ - "Women's rights" - ] - }, - { - "text": "Speed up its implementation of the 2006 Persons with Disability Act", - "values": [ - "Disabilities" - ] - }, - { - "text": "Implement effective domestic measures to ensure all acts of torture are offences under its criminal law", - "values": [ - "Torture and other CID treatment" - ] - }, - { - "text": "Guarantee freedom of expression, press, associations and peaceful assembly of journalists, activists and participants in demonstrations", - "values": [ - "Freedom of association and peaceful assembly", - "Freedom of opinion and expression", - "Freedom of the press", - "Human rights defenders" - ] - }, - { - "text": "Make sure that, in case the proposals for a British Bill of Rights are realized, the current level of human rights protection provided by the Human Rights Act of 1998 is maintained and improved", - "values": [ - "General" - ] - }, - { - "text": "Implement, consistently, norms and public policies to promote the rights of people with disabilities", - "values": [ - "Disabilities" - ] - }, - { - "text": "Take further measures to provide security of tenure and promote access to water, sanitation, education, health and employment for all Roma communities", - "values": [ - "Labour", - "Migrants", - "Right to education", - "Right to health", - "Right to housing", - "Right to water and sanitation" - ] - }, - { - "text": "Consider signing and ratifying the OP-CAT", - "values": [ - "Detention", - "International instruments", - "Torture and other CID treatment" - ] - }, - { - "text": "Ensure sufficient resources enabling the Ombudsman to carry out its mandate effectively and independently", - "values": [ - "National Human Rights Institution" - ] - }, - { - "text": "Improve the systems of identification of potential targets and vulnerable communities, enhance surveillance and implement protection measures to address hate crimes", - "values": [ - "Public security", - "Racial discrimination" - ] - }, - { - "text": "Take steps to ratify ICCPR, ICESCR, CEDAW and CAT", - "values": [ - "CP rights - general", - "ESC rights - general", - "International instruments", - "Torture and other CID treatment", - "Women's rights" - ] - }, - { - "text": "Urgently enact legislation to protect women from domestic violence and establish facilities to provide temporary shelter and protection for victims ", - "values": [ - "Women's rights" - ] - }, - { - "text": "Consider appropriate means to reach out to achieve universal access to health services and consider expanding the coverage of health services under the compulsory health insurance schemes to include appropriate secondary and tertiary services", - "values": [ - "Right to health" - ] - }, - { - "text": "Ratify the Migrant Convention and the European Charter for Regional or Minority Languages", - "values": [ - "International instruments", - "Labour", - "Migrants", - "Minorities" - ] - }, - { - "text": "Adopt measures to strengthen the judicial system for the provision of effective, independent and credible service", - "values": [ - "Justice" - ] - }, - { - "text": "Strengthen the public campaigns and raise awareness regarding the unacceptability of the practice of child, early and forced marriage", - "values": [ - "Human rights education and training", - "Rights of the Child", - "Women's rights" - ] - }, - { - "text": "Continue to strengthen regional and international cooperation in order to balance the provision of humanitarian assistance and socioeconomic development among the autochthonous and the huge number of refugees ", - "values": [ - "Asylum-seekers - refugees", - "Development", - "Technical assistance and cooperation" - ] - }, - { - "text": "Create an environment conducive to free, fair and inclusive elections, including by ensuring the neutrality, independence and professionalism of the Supreme Electoral Council ", - "values": [ - "Elections" - ] - }, - { - "text": "Conduct a national review to examine the need to maintain the national state of emergency that has denied the people their basic human rights", - "values": [ - "Public security" - ] - }, - { - "text": "Continue strengthening social policy implemented by the Government to tackle the most needy in the country", - "values": [ - "ESC rights - general", - "Poverty" - ] - }, - { - "text": "Take all necessary measures to protect freedom of religion and belief for persons belonging to all religious groups, including by protecting persons belonging to religious minorities from violence and persecution", - "values": [ - "Freedom of religion and belief", - "Minorities" - ] - }, - { - "text": "Consider the abolition of the death penalty, and declare a moratorium on executions, as previously recommended", - "values": [ - "Death penalty", - "UPR process" - ] - }, - { - "text": "Continue its commendable efforts in the area of good governance and human rights, in particular through its newly established Governance Advisory Council and the Task Force on Treaty Reporting", - "values": [ - "Justice" - ] - }, - { - "text": "Close the illegal places of detention, which are the source of grave human rights violations", - "values": [ - "Detention" - ] - }, - { - "text": "Adopt measures to ensure the inclusive education of persons with disabilities", - "values": [ - "Disabilities", - "Right to education" - ] - }, - { - "text": "Take measures in view to effectively combat violence against women ", - "values": [ - "Women's rights" - ] - }, - { - "text": "Adopt a comprehensive law on combating all forms of violence against women, including domestic violence and marital rape", - "values": [ - "Rights of the Child", - "Women's rights" - ] - }, - { - "text": "Continue supporting health and educational institutions, both public and private, so that excessive bureaucratic constraints may not weaken their efficiency ", - "values": [ - "Right to education", - "Right to health" - ] - }, - { - "text": "Accelerate the ratification processes of the Optional Protocol to the Convention on the Rights of Persons with Disabilities and the Optional Protocol to the Convention on the Rights of the Child on a communications procedure, which it signed in 2009 and 2012, respectively", - "values": [ - "Disabilities", - "International instruments", - "Rights of the Child" - ] - }, - { - "text": "Continue centring human rights educational programmes for law enforcement officers on issues of combating torture and respect for human rights", - "values": [ - "Human rights education and training", - "Torture and other CID treatment" - ] - }, - { - "text": "Pursue efforts to ensure the representation of women at all levels of the political process and their participation in public life without discrimination or intimidation ", - "values": [ - "Women's rights" - ] - }, - { - "text": "Ratify the Optional Protocol to the Convention against Torture and establish without delay an effective national preventive mechanism with adequate personnel and financial resources", - "values": [ - "Detention", - "International instruments", - "Torture and other CID treatment" - ] - }, - { - "text": "Take further action to protect the rights of migrants in view of the persistent reports on violations of the rights of migrants", - "values": [ - "Migrants" - ] - }, - { - "text": "Review its existing legislation to fully reflect the principles and provisions of CRC, especially in relation to non-discrimination, corporal punishment and juvenile justice", - "values": [ - "International instruments", - "Justice", - "Rights of the Child", - "Torture and other CID treatment" - ] - }, - { - "text": "Take further steps to combat trafficking of persons", - "values": [ - "Trafficking" - ] - }, - { - "text": "Consider ratifying the Convention on the Rights of Persons with Disabilities to which it is a signatory ", - "values": [ - "Disabilities", - "International instruments" - ] - }, - { - "text": "Ensure that all counter-terrorism measures are in strict conformity with international law", - "values": [ - "Counter-terrorism" - ] - }, - { - "text": "Continue taking measures to improve its population's access to health services ", - "values": [ - "Right to health" - ] - }, - { - "text": "Continue to adopt its successful social policy of access to education and health services, particularly, of women and girls ", - "values": [ - "Right to education", - "Right to health", - "Rights of the Child", - "Women's rights" - ] - }, - { - "text": "Take steps to ensure that the housing projects under its programme for 2015-2019 are successfully implemented", - "values": [ - "Right to housing" - ] - }, - { - "text": "Consider withdrawing its declaration to Article 1 of the Optional Protocol to the Convention on the Right of the Child on Involvement of Children in Armed Conflict, and raise the armed forces minimum recruitment age to 18 ", - "values": [ - "International humanitarian law", - "International instruments", - "Rights of the Child" - ] - }, - { - "text": "Ratify ICRMW", - "values": [ - "International instruments", - "Labour", - "Migrants" - ] - }, - { - "text": "Review and withdraw reservation to articles 2 and 16 of the Convention on the Elimination of All Forms of Discrimination against Women (CEDAW)", - "values": [ - "International instruments", - "Women's rights" - ] - }, - { - "text": "Ratify the Optional Protocol to the Convention against Torture (OPCAT)", - "values": [ - "Detention", - "International instruments", - "Torture and other CID treatment" - ] - }, - { - "text": "Protection of and access to all sacred places of worship belonging to Muslims, Christians and others", - "values": [ - "Freedom of religion and belief", - "Minorities" - ] - }, - { - "text": "Withdraw the reservation to the first Optional Protocol to the International Covenant on Civil and Political Rights and ratify, without reservations, the Second Optional Protocol to the International Covenant on Civil and Political Rights, aiming at the abolition of the death penalty", - "values": [ - "Death penalty", - "International instruments" - ] - }, - { - "text": "Adopt a comprehensive law for combatting domestic violence", - "values": [ - "Rights of the Child", - "Women's rights" - ] - }, - { - "text": "Implement the conclusions of the reports on justice and police reform in a most systematic and efficient way ", - "values": [ - "Justice" - ] - }, - { - "text": "Implement the recommendations of the Human Rights Committee and the Working Group on Enforced or Involuntary Disappearances", - "values": [ - "Enforced disappearances", - "Treaty bodies" - ] - }, - { - "text": "Take stronger measures at the federal level to combat racism, xenophobia, intolerance and discrimination on religious grounds", - "values": [ - "Freedom of religion and belief", - "Racial discrimination" - ] - }, - { - "text": "Consider abolishing the death penalty or at least establishing a moratorium on executions ", - "values": [ - "Death penalty" - ] - }, - { - "text": "Portugal updated the Council on its voluntary commitment to establish a national human rights commission, which would be an inter-ministerial body with the competence to coordinate the implementation at the national level of all its international human rights obligations and voluntary commitments. It would ensure not only the follow-up to the universal periodic review exercise, but also the timely and adequate reporting to all international human rights bodies. It would also ensure the translation of all its international commitments into obligations at the national level, thus leading to national legislation and to the set-up of concrete policies and plans. The institutional set-up of the commission would be approved by the Council of Ministers on 18 March 2010.", - "values": [ - "National Human Rights Institution" - ] - }, - { - "text": "Complete the ratification process of the Council of Europe's "Istanbul Convention"", - "values": [ - "Women's rights" - ] - }, - { - "text": "Make additional efforts to fight against corruption and promptly accede to the United Nations Convention against Corruption to ensure that society can better benefit from the economic and commercial development of the country ", - "values": [ - "Corruption", - "International instruments" - ] - }, - { - "text": "Ratify the Optional Protocol to the Convention on the Rights of the Child on a communications procedure ", - "values": [ - "International instruments", - "Rights of the Child" - ] - }, - { - "text": "Adopt measures to combat attitudes and persistent stereotypes concerning the role and responsibilities of women in society.", - "values": [ - "Women's rights" - ] - }, - { - "text": "Continue the work in bringing the national legislation in line with the international obligations of Turkmenistan ", - "values": [ - "General" - ] - }, - { - "text": "Adopt actions aimed at protecting/safeguarding the independence of judges, including measures ensuring autonomy from the executive power with regard to appointment and security of tenure", - "values": [ - "Justice" - ] - }, - { - "text": "Implement a national strategy on the rights of persons with disabilities", - "values": [ - "Disabilities" - ] - }, - { - "text": "Move further forward on existing measures against discrimination against women, particularly in terms of their inheritance rights, as well as harmful traditional practices against women, in particular in rural areas", - "values": [ - "Torture and other CID treatment", - "Women's rights" - ] - }, - { - "text": "Widely distribute information on available domestic remedies against acts of racial discrimination and the legal means available for obtaining compensation in the event of discrimination ", - "values": [ - "Racial discrimination" - ] - }, - { - "text": "Include anti-discrimination legislation with regard to sexual orientation, gender identity and HIV-AIDS and to reform the law on sexual offences of 1998 ", - "values": [ - "HIV - Aids", - "Sexual Orientation and Gender Identity" - ] - }, - { - "text": "Introduce measures to improve the living standards of Travellers in society and ensure the legislation in place does not hinder their nomadic customs and practices", - "values": [ - "Minorities" - ] - }, - { - "text": "Promptly ratify the Optional Protocol to the Convention on the Rights of Persons with Disabilities and the Indigenous and Tribal Peoples Convention, 1989 (No. 169), of the International Labour Organization", - "values": [ - "Disabilities", - "Indigenous peoples", - "International instruments" - ] - }, - { - "text": "Strengthen the ongoing efforts in promoting women's rights", - "values": [ - "Women's rights" - ] - }, - { - "text": "Address impunity by providing the required resources for the established Commission of Inquiry to conduct credible and transparent investigations of these crimes ", - "values": [ - "Impunity" - ] - }, - { - "text": "Continue efforts to harmonize national legislation with international norms", - "values": [ - "General" - ] - }, - { - "text": "Adopt further measures for the protection of political and civil rights", - "values": [ - "CP rights - general" - ] - }, - { - "text": "Consider accelerating the ratification of all human rights treaties to which it is not yet party, particularly ICESR-OP, ICCPR-OP 2, CEDAWC, CAT-OP, CRC-OPAC, and CRC-SC-OP", - "values": [ - "Death penalty", - "ESC rights - general", - "International instruments", - "Rights of the Child", - "Torture and other CID treatment", - "Women's rights" - ] - }, - { - "text": "Ensure effective implementation of the provisions punishing acts of torture ", - "values": [ - "Torture and other CID treatment" - ] - }, - { - "text": "Grant access to the Special Rapporteur on the situation of human rights in the Democratic People's Republic of Korea and accept technical cooperation from United Nations human rights mechanisms ", - "values": [ - "Special procedures", - "Technical assistance and cooperation" - ] - }, - { - "text": "Amend its laws on gender equality and explicitly prohibit all forms of discrimination against women by adopting appropriate national legislation ", - "values": [ - "Women's rights" - ] - }, - { - "text": "Increase employment in the context of the next Poverty Reduction Programme (PARP) ", - "values": [ - "Poverty" - ] - }, - { - "text": "Georgia is working actively to meet all Millennium Development Goals including those on universal primary education and reduction of infant and under-5 mortality rates. Georgia will remain firmly committed to these efforts.", - "values": [ - "Development" - ] - }, - { - "text": "Strengthen public awareness-raising campaigns relating to racism and intolerance, and adopt measures aimed at fighting racism in the media", - "values": [ - "Human rights education and training", - "Racial discrimination" - ] - }, - { - "text": "Continue its efforts to protect the rights and interests of special groups, including migrants, women, children and people with disabilities", - "values": [ - "Disabilities", - "Migrants", - "Rights of the Child", - "Women's rights" - ] - }, - { - "text": "Recommended mainstreaming human rights in the education system.", - "values": [ - "Human rights education and training" - ] - }, - { - "text": "Continue progress in the implementation of the policies that safeguard the rights and dignity of migrants ", - "values": [ - "Migrants" - ] - }, - { - "text": "Extend an invitation to the Special Rapporteur on Torture", - "values": [ - "Special procedures", - "Torture and other CID treatment" - ] - }, - { - "text": "Permit teenage mothers to return to formal education and to sit exams while pregnant and after giving birth, including the use of gradual approaches, such as separate classes or sittings, aimed at breaking cycles of poverty, teenage pregnancy and domestic abuse", - "values": [ - "Poverty", - "Right to education", - "Right to health", - "Rights of the Child", - "Women's rights" - ] - }, - { - "text": "Enhance its investigation of complaints of abuse by police ", - "values": [ - "Human rights violations by state agents" - ] - }, - { - "text": "Establish a national adoption centre and an obligation to register right after birth", - "values": [ - "Rights of the Child" - ] - }, - { - "text": "Support the action for the promotion and protection of human rights undertaken by the National Human Rights Council through its regional commissions throughout the territory", - "values": [ - "National Human Rights Institution" - ] - }, - { - "text": "Ensure access to clean water supply and proper sanitation", - "values": [ - "Right to water and sanitation" - ] - }, - { - "text": "Make all the necessary political reforms in order to ensure the emergence of a government through free and fair elections", - "values": [ - "Elections" - ] - }, - { - "text": "Ratify the major international human rights treaties, including the International Covenant on Civil and Political Rights and the International Covenant on Economic, Social and Cultural Rights in a timely fashion", - "values": [ - "CP rights - general", - "ESC rights - general", - "International instruments" - ] - }, - { - "text": "Maintain the positive momentum in improving legislation and institutions, and ensure the execution of its laws in practice, in particular in the areas of education, women rights, childhood, persons with disabilities and victims of trafficking in persons ", - "values": [ - "Disabilities", - "Right to education", - "Rights of the Child", - "Trafficking", - "Women's rights" - ] - }, - { - "text": "Enhance the access to obstetric and maternal health services, especially in rural areas ", - "values": [ - "Right to health", - "Women's rights" - ] - }, - { - "text": "Withdraw its interpretative statement with respect to article 4 of the International Convention on the Elimination of All Forms of Racial Discrimination.", - "values": [ - "International instruments", - "Racial discrimination" - ] - }, - { - "text": "Put in place appropriate mechanisms to ensure that individuals and members of the political opposition are able to take part freely in public rallies and peaceful demonstrations and to express their views without fear of reprisals, including via all forms of media ", - "values": [ - "Freedom of association and peaceful assembly", - "Freedom of opinion and expression", - "Freedom of the press" - ] - }, - { - "text": "Consider the ratification of the Optional Protocol to the International Covenant on Economic, Social and Cultural Rights", - "values": [ - "ESC rights - general", - "International instruments" - ] - }, - { - "text": "Lift all military checkpoints and end all restrictions on the rights of Palestinians to movement and their rights to health and education.", - "values": [ - "Freedom of movement", - "Right to education", - "Right to health" - ] - }, - { - "text": "Intensify measures to advance women\u2019s rights, including vocational training of youth and measures relating to access to justice, and legislative reform, as well as implementation of gender responsiveness at all levels of governance and policymaking", - "values": [ - "Women's rights" - ] - }, - { - "text": "Promote a gender equality law regarding the rights to property, inheritance and marriage ", - "values": [ - "Women's rights" - ] - }, - { - "text": "Continue to facilitate free access to education for both boys and girls", - "values": [ - "Right to education", - "Rights of the Child" - ] - }, - { - "text": "Ensure applications for accreditation by non-governmental organizations (NGOs) are processed objectively, expeditiously, and in accordance with principles of non-discrimination, and that long-pending applications are promptly reviewed in accordance with these principles ", - "values": [ - "Civil society" - ] - }, - { - "text": "Adhere to the Second Optional Protocol to the International Covenant on Civil and Political Rights ", - "values": [ - "Death penalty", - "International instruments" - ] - }, - { - "text": "Continue with its efforts to improve the legal protection of vulnerable persons, in particular the elderly and persons with disabilities", - "values": [ - "Disabilities" - ] - }, - { - "text": "Ratify promptly the Convention against Torture and its Optional Protocol, and the International Convention on the Protection of the Rights of All Migrant Workers and Members of Their Families", - "values": [ - "Detention", - "International instruments", - "Labour", - "Migrants", - "Torture and other CID treatment" - ] - }, - { - "text": "Lift the reservation on article 2 of the United Nations Convention on the Elimination of All Forms of Discrimination against Women, review and repeal all sections of the Constitution and other remaining discriminatory provisions that allow discrimination based on gender, and include in the Constitution, and/or other appropriate legislation, prohibition of both direct and indirect discrimination on grounds of gender", - "values": [ - "International instruments", - "Women's rights" - ] - }, - { - "text": "Take further steps to expedite the ratification of CRPD and its Optional Protocol (OP-CRPD)", - "values": [ - "Disabilities", - "International instruments" - ] - }, - { - "text": "Bring its abortion laws in line with ICCPR", - "values": [ - "International instruments", - "Women's rights" - ] - }, - { - "text": "Strengthen efforts to fulfil its obligations under the Convention on the Elimination of all Forms of Discrimination against Women, including by adopting and implementing legislation prohibiting female genital mutilation ", - "values": [ - "International instruments", - "Rights of the Child", - "Torture and other CID treatment", - "Women's rights" - ] - }, - { - "text": "Continue to implement credit-for-jobs projects and to promote labour market development.", - "values": [ - "Labour" - ] - }, - { - "text": "Complete its international commitments to protect and promote human rights by acceding to the relevant international instruments, in particular to the two Optional Protocols to the Convention on the Rights of the Child ", - "values": [ - "International instruments", - "Rights of the Child" - ] - }, - { - "text": "Adopt specific criminal legislation in conformity with article 4 of the Convention for the Elimination of Racial Discrimination ", - "values": [ - "International instruments", - "Racial discrimination" - ] - }, - { - "text": "Ratify all main international human rights treaties, especially ICCPR-OP2, Optional Protocol to the Convention against Torture and other Cruel, Inhuman or Degrading Treatment or Punishment (OP-CAT), the Optional Protocols to the Convention on the Rights of the Child, on the involvement of children in armed conflict (OP-CRC-AC) and on the sale of children, child prostitution and child pornography (OP-CRC-SC), and incorporate these treaties fully in the national legislation", - "values": [ - "Death penalty", - "Detention", - "International instruments", - "Rights of the Child", - "Torture and other CID treatment", - "Trafficking" - ] - }, - { - "text": "Take all necessary measures for the prevention and combating of child trafficking, and for the provision of effective remedies for victims", - "values": [ - "Rights of the Child", - "Trafficking" - ] - }, - { - "text": "Pursue the implementation of effective legal and practical measures to protect the rights of children ", - "values": [ - "Rights of the Child" - ] - }, - { - "text": "Deploy the necessary legal, financial and human resources to achieve as soon as possible the objectives of the roadmap of 5 June 2013 for the elimination of the worst forms of child labour", - "values": [ - "Labour", - "Rights of the Child" - ] - }, - { - "text": "Create and maintain, in law and in practice, a safe and enabling environment in which civil society can operate free from hindrance and insecurity, and can participate fully in democratic processes", - "values": [ - "Civil society" - ] - }, - { - "text": "End domestic and sexual violence against women and girls, by enacting laws and creating awareness in communities to end the social stigmatization relating to it", - "values": [ - "Rights of the Child", - "Women's rights" - ] - }, - { - "text": "Implement the recommendations made by the Truth, Justice and Reconciliation Commission, including investigation and punishment of those responsible for serious human rights violations and reparation for victims of such violations", - "values": [ - "Justice" - ] - }, - { - "text": "Strengthen maternity protection ", - "values": [ - "Women's rights" - ] - }, - { - "text": "End measures to restrict freedom of expression and assembly including short-term detentions and the use of criminal charges such as "precriminal social dangerousness", "contempt" and "resistance"", - "values": [ - "Detention", - "Freedom of association and peaceful assembly", - "Freedom of opinion and expression" - ] - }, - { - "text": "Examine the possibility of taking interim measures to facilitate access to justice in favour of women and to give them the necessary judicial assistance", - "values": [ - "Women's rights" - ] - }, - { - "text": "Seek to amend the Penal Code to criminalize all forms of sexual abuse of children, regardless of the sex of the child, bring perpetrators to justice and rehabilitate and compensate the victims", - "values": [ - "Rights of the Child" - ] - }, - { - "text": "Do all the necessary to prevent and effectively and thoroughly investigate all violent attacks against the Roma, including those committed by the police forces ", - "values": [ - "Human rights violations by state agents", - "Minorities", - "Racial discrimination" - ] - }, - { - "text": "Fully restore the rights and dignity of the Palestinian people, including their rights to life, to live in dignity, adequate food, housing, health and education, as well as their freedom of movement", - "values": [ - "Freedom of movement", - "Right to education", - "Right to food", - "Right to health", - "Right to housing" - ] - }, - { - "text": "Reform its criminal code as soon as possible in order to guarantee freedom of movement both within its territory as well as towards foreign countries without the need for prior permission in accordance with applicable international standards ", - "values": [ - "Freedom of movement" - ] - }, - { - "text": "Implement article 3 (b) of ILO Convention No. 182, which requires States parties to establish strict prohibition of the use, recruitment or offering of a child for prostitution, production of pornography or pornographic performances", - "values": [ - "International instruments", - "Labour", - "Rights of the Child" - ] - }, - { - "text": "Educate its public through awareness-raising campaigns enabling them to use existing legislative and institutional mechanisms for the protection of human rights.", - "values": [ - "Human rights education and training" - ] - }, - { - "text": "Include the total abolition of the death penalty in the Constitution as soon as possible", - "values": [ - "Death penalty" - ] - }, - { - "text": "Ratify the International Covenant on Civil and Political Rights and the International Covenant on Economic, Social and Cultural Rights and ensure the conformity of national legislation with international obligations", - "values": [ - "CP rights - general", - "ESC rights - general", - "International instruments" - ] - }, - { - "text": "Continue its efforts to promote and support national human rights institutions ", - "values": [ - "National Human Rights Institution" - ] - }, - { - "text": "Continue its strategies for social and economic recovery, and promote social peace and sustainable development ", - "values": [ - "Development", - "ESC rights - general" - ] - }, - { - "text": "Strengthen endeavours to ensure access to safe drinking water and sanitation through installing water and sanitation networks", - "values": [ - "Right to water and sanitation" - ] - }, - { - "text": "Make an effort to prepare and submit reports to the treaty bodies without delays", - "values": [ - "Treaty bodies" - ] - }, - { - "text": "Strengthen measures concerning the many children who continue to live on the street where they remain vulnerable to abuse ", - "values": [ - "Rights of the Child" - ] - }, - { - "text": "Consider extending an open invitation to the special procedures ", - "values": [ - "Special procedures" - ] - }, - { - "text": "Put into practice a new action plan to combat sexual violence", - "values": [ - "Rights of the Child", - "Women's rights" - ] - }, - { - "text": "Continue consultations aimed at establishing a national disability council and develop a clear and integrated strategy on rehabilitation needs", - "values": [ - "Disabilities" - ] - }, - { - "text": "Take measures to ensure the adequate protection of human rights in the Western Sahara in light of the reported cases of enforced disappearances, torture and ill-treatment, restrictions on freedom of expression, association and assembly by Moroccan security forces ", - "values": [ - "Enforced disappearances", - "Freedom of association and peaceful assembly", - "Freedom of opinion and expression", - "Human rights violations by state agents", - "Torture and other CID treatment" - ] - }, - { - "text": "Continue its specific measures already undertaken to ensure that persons concerned are informed about the content of the Family Protection Law ", - "values": [ - "Rights of the Child", - "Women's rights" - ] - }, - { - "text": "Set priorities to ensure the basic social and economic rights, particularly in the fields of employment, poverty reduction, education and healthcare. At the same time, priority policies and measures should also be provided to support the social vulnerable groups, like women, children and the poor people ", - "values": [ - "Development", - "Poverty", - "Right to education", - "Right to health", - "Rights of the Child", - "Women's rights" - ] - }, - { - "text": "Undertake efforts to prevent child labour, the segregation of children with disabilities in educational system and prevent the crimes committed against children, especially smuggling and sexual harassment ", - "values": [ - "Disabilities", - "Labour", - "Rights of the Child" - ] - }, - { - "text": "Swiftly ratify the International Covenant on Civil and Political Rights and the Convention on the Rights of Persons with Disabilities", - "values": [ - "CP rights - general", - "Disabilities", - "International instruments" - ] - }, - { - "text": "Set up a juvenile justice system and train more judges for juvenile courts", - "values": [ - "Justice", - "Rights of the Child" - ] - }, - { - "text": "Take all necessary measures to prevent and prosecute all forms of violence and harassment related to sexual orientation and gender identity ", - "values": [ - "Sexual Orientation and Gender Identity" - ] - }, - { - "text": "Recommended full commitment of the national human rights commission to the improvement of indigenous rights.", - "values": [ - "Indigenous peoples", - "National Human Rights Institution" - ] - }, - { - "text": "Withdraw the reservation to article 2 of the Convention on the Elimination of All Kinds of Discrimination against Women ", - "values": [ - "International instruments", - "Women's rights" - ] - }, - { - "text": "Ensure the independence and the proper funding of the Office of the National Commissioner for Human Rights and the Institution for Children and the Family, at a time when restrictions on freedom of expression, discrimination, and gender-based and domestic violence are all on the rise ", - "values": [ - "Freedom of opinion and expression", - "National Human Rights Institution", - "Rights of the Child", - "Women's rights" - ] - }, - { - "text": "Adapt the integration measures by taking into account the current migration situation in order to prevent cases of intolerance on the grounds of religion and of ethnic belonging", - "values": [ - "Freedom of religion and belief", - "Migrants", - "Minorities", - "Racial discrimination" - ] - }, - { - "text": "Enhance support for the reintegration of victims of trafficking, especially women and children ", - "values": [ - "Rights of the Child", - "Trafficking", - "Women's rights" - ] - }, - { - "text": "Consider continuing to work towards strengthening Government institutions ", - "values": [ - "Other" - ] - }, - { - "text": "Speed up the process to amend the law aiming at improving the functioning of the National Human Rights Commission in accordance with the Paris Principles", - "values": [ - "National Human Rights Institution" - ] - }, - { - "text": "Consider incorporating the UN Rules for the Treatment of Women Prisoners and Non-Custodial Measures for Women Offenders, otherwise known as the "Bangkok Rules", as part of its programme to enhance the condition of detainees in prisons", - "values": [ - "Detention", - "Women's rights" - ] - }, - { - "text": "Establish the necessary measures and legislation to reform the judicial system in conformity with international standards on justice, including a juvenile justice system, and, in particular, guarantee the tenure of judges and magistrates ", - "values": [ - "Justice", - "Rights of the Child" - ] - }, - { - "text": "Investigate trafficking in person crimes, particularly the prostitution of all children ", - "values": [ - "Rights of the Child", - "Trafficking" - ] - }, - { - "text": "Pursue an active and strict policy to end unfair pay differences between men and women especially in Government organizations ", - "values": [ - "Women's rights" - ] - }, - { - "text": "Take all necessary measures to render effective the prosecution and sentencing of perpetrators of torture and ill-treatment", - "values": [ - "Torture and other CID treatment" - ] - }, - { - "text": "Eradicate racism, xenophobia and all forms of discrimination against foreigners", - "values": [ - "Racial discrimination" - ] - }, - { - "text": "Ensure that birth registration is effectively implemented and enforced by allocating sufficient human and financial resources to the National Identity and Civil Registry Department to promote the effectiveness of birth registration systems and processes", - "values": [ - "Rights of the Child", - "Statelessness and the right to nationality" - ] - }, - { - "text": "Align domestic legislation with the obligations under the Convention on the Rights of Persons with Disabilities and adopt measures to ensure inclusive education and access to public buildings for people with disabilities", - "values": [ - "Disabilities", - "International instruments", - "Right to education" - ] - }, - { - "text": "Strengthen national mechanisms to combat human trafficking, specifically of women and girls, and to support and rehabilitate its victims", - "values": [ - "Trafficking", - "Women's rights" - ] - }, - { - "text": "Respect the principles and standards provided by the Council of Europe Convention on preventing and combating violence against women and domestic violence, even prior to its ratification and entry into force ", - "values": [ - "Women's rights" - ] - }, - { - "text": "Make a real political commitment to combating violence against women, and in particular that it change its national legislation allowing the criminalization of marital rape.", - "values": [ - "Women's rights" - ] - }, - { - "text": "Ensure to lesbian, gay, bisexual, transgender and intersex persons the full enjoyment and equal conditions in terms of their human rights by repealing the rules that criminalize and stigmatize them", - "values": [ - "Sexual Orientation and Gender Identity" - ] - }, - { - "text": "Strengthen its efforts to fully implement the concluding observations adopted by CERD, as well as other relevant concluding observations adopted by other treaty bodies.", - "values": [ - "Racial discrimination", - "Treaty bodies" - ] - }, - { - "text": "Develop new plans to ensure that persons with disabilities can exercise their rights on an equal basis under the Action Plan for the Integration of Disabled Persons 2006-2009 ", - "values": [ - "Disabilities" - ] - }, - { - "text": "Recommended that Benin ensure that no statement obtained under torture or duress can be invoked in proceedings and that orders from a superior may not be invoked as a justification of torture.", - "values": [ - "Torture and other CID treatment" - ] - }, - { - "text": "Take steps to reform the prison system and to ensure the protection of the rights of detainees", - "values": [ - "Detention" - ] - }, - { - "text": "Ensure that police and military officers alleged to have committed acts of torture and ill-treatment are held accountable through the criminal justice system", - "values": [ - "Human rights violations by state agents", - "Torture and other CID treatment" - ] - }, - { - "text": "Accede to the Optional Protocol to the Convention against Torture, create a national preventive mechanism in line with the Optional Protocol and acknowledge the competence of the Committee against Torture to consider allegations of breach of obligations under articles 21 and 22 of the Convention", - "values": [ - "Detention", - "International instruments", - "Torture and other CID treatment" - ] - }, - { - "text": "Consider ratifying the International Convention on the Protection of the Rights of Migrant Workers and Their Families and the ILO Convention 189", - "values": [ - "International instruments", - "Labour", - "Migrants" - ] - }, - { - "text": "The Ministry of Interior consistently states that it has no objection to peaceful demonstrations provided they are conducted lawfully and participants do not engage in criminal acts of rioting.", - "values": [ - "Freedom of association and peaceful assembly" - ] - }, - { - "text": "Provide the legal and operational framework for an independent and effective judiciary, and undertake reform of the Prosecutor's Office that ensures its independence and impartiality and separate the criminal prosecution functions from those investigating alleged abuse ", - "values": [ - "Justice" - ] - }, - { - "text": "Implement the recommendations of United Nations treaty bodies with regard to the repeal of prohibition of all forms of abortion, and consider the introduction of legislation that ensures the rights of women and girls in situations where their life is endangered as a result of pregnancy and in which termination of the pregnancy could save their life", - "values": [ - "Rights of the Child", - "Treaty bodies", - "Women's rights" - ] - }, - { - "text": "Step up its efforts in the promotion and protection of the rights of children, including continuing its measures to combat violence against children ", - "values": [ - "Rights of the Child" - ] - }, - { - "text": "Expeditiously permit international humanitarian missions, human rights observers and media unrestricted access within Syria, including the HRC Commission of Inquiry", - "values": [ - "Freedom of the press" - ] - }, - { - "text": "Intensify their efforts to further improve the situation concerning the protection of rights of persons with disabilities", - "values": [ - "Disabilities" - ] - }, - { - "text": "Take concrete measures to address the problem of human trafficking, including by tackling the root causes, introducing effective prevention measures, timely prosecution and punishment of traffickers, and providing protection and support to victims ", - "values": [ - "Trafficking" - ] - }, - { - "text": "Invite the Special Rapporteur on human rights defenders to visit the country in the near future", - "values": [ - "Human rights defenders", - "Special procedures" - ] - }, - { - "text": "Continue to work in earnest to address some of the legitimate concerns in regard to the freedom of media", - "values": [ - "Freedom of the press" - ] - }, - { - "text": "End the excessive use of force by the police in maintaining order during mass demonstrations as well as against foreigners subject to deportation from the country ", - "values": [ - "Freedom of association and peaceful assembly", - "Human rights violations by state agents", - "Migrants" - ] - }, - { - "text": "Continue to cooperate with the United Nations Human Rights Council Special Procedures, use opportunities for having country visits for the benefit of human rights situation improvement ", - "values": [ - "Special procedures" - ] - }, - { - "text": "Strengthen measures aimed at combating racial profiling and discriminatory practices towards racial-ethnic minorities and immigrants, particularly by police and border control authorities", - "values": [ - "Human rights violations by state agents", - "Migrants", - "Minorities", - "Racial discrimination" - ] - }, - { - "text": "Adopt effective measures to prevent gender-based violence and provide protection and assistance to victims, harmonize domestic legislation with international instruments on human trafficking", - "values": [ - "Trafficking", - "Women's rights" - ] - }, - { - "text": "Limit, as long as the death penalty persists in the country, its application to the most serious crimes, leaving drug trade while recognizing its seriousness, outside this category", - "values": [ - "Death penalty" - ] - }, - { - "text": "Strengthen institutionally the judicial protection to fully guarantee human rights as recognized by the Constitution.", - "values": [ - "Justice" - ] - }, - { - "text": "Continue to protect and promote human rights in the Caribbean Netherlands by reducing poverty, providing a minimum of social security and establishing legal offices to provide legal advice and referrals to increase access to justice", - "values": [ - "Development" - ] - }, - { - "text": "Fully implement CEDAW by lifting its reservations", - "values": [ - "International instruments", - "Women's rights" - ] - }, - { - "text": "Strengthen actions and policies in order to combat effectively discrimination and violence suffered by persons on account of their sexual orientation or gender identity", - "values": [ - "Sexual Orientation and Gender Identity" - ] - }, - { - "text": "Initiate the procedure of ratification of the International Convention for the Protection of All Persons from Enforced Disappearances ", - "values": [ - "Enforced disappearances", - "International instruments" - ] - }, - { - "text": "Pass legislation to address domestic violence ", - "values": [ - "Rights of the Child", - "Women's rights" - ] - }, - { - "text": "Repeal legislation criminalising homosexuality, and introduce policies aimed at ending discrimination against homosexuals ", - "values": [ - "Sexual Orientation and Gender Identity" - ] - }, - { - "text": "Continue to provide free education to women and girls, especially those living in rural areas", - "values": [ - "Right to education", - "Rights of the Child", - "Women's rights" - ] - }, - { - "text": "Ensure the protection of human rights for all, including freedom of religion or belief, expression, association and peaceful assembly and the right to participate in public and political life", - "values": [ - "Freedom of association and peaceful assembly", - "Freedom of opinion and expression", - "Freedom of religion and belief" - ] - }, - { - "text": "Implement the recently adopted Human Rights Council resolution on children working and/or living on the street and give priority attention to the prevention of this phenomenon by addressing its diverse causes through economic, social, educational and empowerment strategies. These include proper birth registration, health care, education, awareness-raising and assistance to families", - "values": [ - "Poverty", - "Rights of the Child", - "Statelessness and the right to nationality" - ] - }, - { - "text": "Redouble its efforts in strengthening the Ombudsman with a view to achieving a full compliance status with the Paris Principles", - "values": [ - "National Human Rights Institution" - ] - }, - { - "text": "Continue its efforts to improve the physical environment of schools including by ensuring appropriate water and sanitation facilities and to ensure the full enrollment of all children in education", - "values": [ - "Right to education", - "Right to water and sanitation", - "Rights of the Child" - ] - }, - { - "text": "Ensure that its media regulations promote diversity among media outlets in line with international standards and best practices", - "values": [ - "Freedom of the press" - ] - }, - { - "text": "Continue efforts in the context of the Constitutional Review Process", - "values": [ - "General" - ] - }, - { - "text": "Before abolishing the death penalty and ratifying the Second Optional Protocol to the International Covenant on Civil and Political Rights, declare a de jure moratorium on executions", - "values": [ - "Death penalty", - "International instruments" - ] - }, - { - "text": "Ensure that upcoming legislation will not limit citizens' rights to engage in free and private exchanges of information on social media", - "values": [ - "Freedom of opinion and expression", - "Privacy" - ] - }, - { - "text": "Continue strengthening measures to prevent and combat discrimination based on sexual orientation, ensuring the free expression of, and respect for, persons belonging to the lesbian, gay, bisexual, transgender and intersex community", - "values": [ - "Freedom of opinion and expression", - "Sexual Orientation and Gender Identity" - ] - }, - { - "text": "Take steps to implement the country's obligations under the Rome Statute of the ICC", - "values": [ - "International instruments", - "Justice" - ] - }, - { - "text": "Consider ratifying the following international instruments: the International Convention on the Elimination of All Forms of Racial Discrimination (CERD), ICESCR, Convention on the Rights of Persons with Disabilities (CRPD) and its protocol and ILO fundamental conventions ", - "values": [ - "Disabilities", - "ESC rights - general", - "International instruments", - "Labour", - "Racial discrimination" - ] - }, - { - "text": "Study the possibility of becoming a party to the following international instruments: ICESCR and ICRMW ", - "values": [ - "ESC rights - general", - "International instruments", - "Labour", - "Migrants" - ] - }, - { - "text": "Extend a standing invitation to all special procedure mandate holders to achieve the human rights goals mentioned in resolution 12/9 of the Human Rights Council ", - "values": [ - "Special procedures" - ] - }, - { - "text": "Include sexual orientation and gender identity in all laws and initiatives combating discrimination and promoting equality, and to develop public education and sensitivity programmes and make them available, including to police, military, judicial, prison and other authorities", - "values": [ - "Human rights education and training", - "Sexual Orientation and Gender Identity" - ] - }, - { - "text": "Adopt strong and decisive measures to punish those responsible for the rape of girls and women", - "values": [ - "Rights of the Child", - "Women's rights" - ] - }, - { - "text": "Pay special attention to the needs of women in strategies to combat poverty, ensuring that women have enhanced access to health, education, clean water and sanitation and income-generating activities", - "values": [ - "Poverty", - "Right to water and sanitation", - "Women's rights" - ] - }, - { - "text": "Pursue efforts to combat violence against women and promote the rights of women", - "values": [ - "Women's rights" - ] - }, - { - "text": "Ensure prompt and impartial investigations of cases of excessive use of force by the police and law enforcement officials", - "values": [ - "Human rights violations by state agents" - ] - }, - { - "text": "Take measures to combat impunity of all those who attack human rights defenders", - "values": [ - "Human rights defenders", - "Impunity" - ] - }, - { - "text": "Step up efforts to combat violence against children, including prohibition of corporal punishment", - "values": [ - "Rights of the Child", - "Torture and other CID treatment" - ] - }, - { - "text": "Expand the space for independent activities of civil society groups and issue a standing invitation to the special procedures to visit the Comoros ", - "values": [ - "Civil society", - "Special procedures" - ] - }, - { - "text": "A comprehensive strategy addressing issues such as language learning, access to education and employment in favour of the integration of Meskhetian Turks", - "values": [ - "Minorities" - ] - }, - { - "text": "Step up efforts to consider ratifying the Palermo Protocol", - "values": [ - "International instruments", - "Women's rights" - ] - }, - { - "text": "Ensure that people with disabilities in situations of abandonment or without family support are able to live in the community in a non-segregated way, providing for their access to services such as health, education or social security ", - "values": [ - "Disabilities" - ] - }, - { - "text": "An inter-institutional board has been set up to address the issue of minors living in prisons and efforts are being made to move them out gradually. A commitment has been made to establish reception centres for such minors in order to provide them with the best possible living conditions", - "values": [ - "Detention", - "Rights of the Child" - ] - }, - { - "text": "Ensure further progress in the creation of a climate of tolerance towards cultural and racial diversity in the society with full participation and integration of people in the development of national and local policies that affect their interests", - "values": [ - "Minorities" - ] - }, - { - "text": "Establish or designate a national human rights institution compliant with the Paris Principles", - "values": [ - "National Human Rights Institution" - ] - }, - { - "text": "Abolish immediately the death penalty", - "values": [ - "Death penalty" - ] - }, - { - "text": "Develop ways to reduce smuggling of migrants and human trafficking across maritime borders ", - "values": [ - "Migrants", - "Trafficking" - ] - }, - { - "text": "Sign ILO Convention NO. 169 that aims to protect the cultural integrity of indigenous societies and enable them to control their own development ", - "values": [ - "Indigenous peoples", - "International instruments" - ] - }, - { - "text": "Revise its legislation to provide automatic acquisition of citizenship by children born to non-citizens after 21 August 1991 ", - "values": [ - "Rights of the Child" - ] - }, - { - "text": "Establish a special tribunal based on the recommendations of the report on the investigation into the attack on the Hotel Terrain and ensure accountability for all human rights violations", - "values": [ - "Justice" - ] - }, - { - "text": "Continue to implement its healthcare-related campaigns and programmes to improve public health standards and provide access to healthcare services for all, with the support of the international community ", - "values": [ - "Right to health", - "Technical assistance and cooperation" - ] - }, - { - "text": "Take measures to implement the Supreme Court's decision concerning same sex marriage", - "values": [ - "Sexual Orientation and Gender Identity" - ] - }, - { - "text": "Continue to strengthen the achievements of health indicators, particularly related to child and maternal health, through the improvement of public health services ", - "values": [ - "Right to health", - "Rights of the Child", - "Women's rights" - ] - }, - { - "text": "Take measures to eradicate traditional stereotypes of women, especially through educational programmes, and apply a gender perspective in the design of future policies and programmes", - "values": [ - "Human rights education and training", - "Women's rights" - ] - }, - { - "text": "Enact a comprehensive anti-trafficking law and make proactive efforts to identify and assist trafficking victims", - "values": [ - "Trafficking" - ] - }, - { - "text": "Speed up the process of implementing the Compulsory Education Law ", - "values": [ - "Right to education" - ] - }, - { - "text": "Ensure reparation, including fair and adequate compensation, for victims of human rights violations by the security forces or to their families where the victim has died", - "values": [ - "Human rights violations by state agents" - ] - }, - { - "text": "Intensify efforts to promote inter-ethnic harmony and tolerance among the population ", - "values": [ - "Racial discrimination" - ] - }, - { - "text": "Continue to take steps towards ratifying the International Convention on the Protection of the Rights of All Migrant Workers and Member of Their Families ", - "values": [ - "International instruments", - "Labour", - "Migrants" - ] - }, - { - "text": "Continue the policy of free education for all children, through cooperation and assistance from the international community ", - "values": [ - "Right to education", - "Rights of the Child", - "Technical assistance and cooperation" - ] - }, - { - "text": "Ratify the Second Optional Protocol to the International Covenant on Civil and Political Rights, aiming at the abolition of the death penalty ", - "values": [ - "Death penalty", - "International instruments" - ] - }, - { - "text": "Launch public discussions on the eventuality of abortion in cases where a woman's health or life is at risk if she continues with the pregnancy, and, as a next step, decriminalize abortion ", - "values": [ - "Women's rights" - ] - }, - { - "text": "Ensure that any reform of the justice system takes place only after careful consultation with the representatives of the legal professions, and that it is in line with international standards of judicial independence described by, for example, the International Covenant on Civil and Political Rights, the Basic Principles on the Independence of the Judiciary and the advisory bodies to the Council of Europe, particularly the Venice Commission and the Consultative Council of European Judges", - "values": [ - "International instruments", - "Justice" - ] - }, - { - "text": "In favour of women, harmonize the provisions of the Family Code, with the CEDAW provisions, and increase efficiency of awareness raising campaigns and training to eliminate FGM and early marriage ", - "values": [ - "Human rights education and training", - "International instruments", - "Rights of the Child", - "Torture and other CID treatment", - "Women's rights" - ] - }, - { - "text": "Integrate programmes and projects aimed at benefiting Afrodescendant populations into different development plans ", - "values": [ - "Minorities" - ] - }, - { - "text": "Maintain its effective protection of the family as the natural and fundamental unit of the society", - "values": [ - "Other" - ] - }, - { - "text": "Expedite the process of ratification of the amendment to article 8 of the International Convention on the Elimination of All Forms of Racial Discrimination", - "values": [ - "International instruments", - "Racial discrimination" - ] - }, - { - "text": "Give the Afghanistan Independent Human Rights Commission the independence and legal authority to hold to account perpetrators of detainee mistreatment ", - "values": [ - "Detention", - "National Human Rights Institution", - "Torture and other CID treatment" - ] - }, - { - "text": "Put in place mechanisms to follow up on the recommendations of the UPR, which promote equality of rights and non-discrimination of all citizens, in particular vulnerable groups ", - "values": [ - "UPR process" - ] - }, - { - "text": "Consider the possibility of alternatives to prison sentencing, especially for boys, girls and adolescents", - "values": [ - "Justice", - "Rights of the Child" - ] - }, - { - "text": "Take more effective measures to guarantee that large-scale projects respect environmental standards", - "values": [ - "Environment" - ] - }, - { - "text": "Take more effective measures to combat all forms of violence against women and girls and to ensure that the perpetrators of violence are taken to justice and punished ", - "values": [ - "Rights of the Child", - "Women's rights" - ] - }, - { - "text": "Increase the health budget allocation to the recommended minimum of 15 per cent of gross domestic product, in line with commitments under the Abuja Declaration, and expedite the process of implementing universal health-care coverage", - "values": [ - "Right to health" - ] - }, - { - "text": "Make public, upon its completion, the report of the Commission of Inquiry set up to investigate alleged violations of religious freedom ", - "values": [ - "Freedom of religion and belief", - "Justice" - ] - }, - { - "text": "Further strengthen its Equality Act\u2019, in particular, to provide better health services to groups in vulnerable situations including migrants", - "values": [ - "Migrants", - "Right to health" - ] - }, - { - "text": "Extend invitations the Special Rapporteur on human rights defenders.", - "values": [ - "Human rights defenders", - "Special procedures" - ] - }, - { - "text": "Increase programmes aimed at combating prejudices regarding the role of women in society, in order to complement the legislative and institutional efforts to achieve de jure and de facto equality between men and women ", - "values": [ - "Women's rights" - ] - }, - { - "text": "Ensure by law the effective protection of women against gender-based violence, including domestic violence, sexual harassment, and marital rape", - "values": [ - "Women's rights" - ] - }, - { - "text": "Engage with civil society groups in the follow-up to the universal periodic review ", - "values": [ - "Civil society", - "UPR process" - ] - }, - { - "text": "Make efforts to reduce regional disparities in access to education and to provide inclusive education for children with disabilities", - "values": [ - "Disabilities", - "Right to education" - ] - }, - { - "text": "Consider amending Law No. 51 (2006) on combatting the crime of human trafficking ", - "values": [ - "Trafficking" - ] - }, - { - "text": "Consider the possibility of accepting the competence of the Committee on Enforced Disappearance provided for under CED ", - "values": [ - "Enforced disappearances", - "International instruments" - ] - }, - { - "text": "Consider acceding to the Rome Statute of the International Criminal Court ", - "values": [ - "International instruments", - "Justice" - ] - }, - { - "text": "Provide the National Commission for the Promotion of Equality with adequate human, technical and financial capacity to handle racial violence and discrimination, and to institute legal proceedings", - "values": [ - "National Human Rights Institution", - "Racial discrimination" - ] - }, - { - "text": "Continue its policies in the area of the promotion and protection of the human rights of women", - "values": [ - "Women's rights" - ] - }, - { - "text": "Continue its ongoing review of reservations entered to international human rights instruments", - "values": [ - "International instruments" - ] - }, - { - "text": "Increase women\u2019s participation in public and political life, and reform laws that discriminate against women", - "values": [ - "Women's rights" - ] - }, - { - "text": "Work for the effective implementation of ILO Convention 169, preventing acts of unawareness and contempt for the human rights of indigenous peoples, in particular of the Mapuche ", - "values": [ - "Indigenous peoples", - "International instruments" - ] - }, - { - "text": "Fully implement relevant laws to promote the rights of indigenous people and to ensure their safety in realizing their economic and civil rights", - "values": [ - "ESC rights - general", - "Indigenous peoples" - ] - }, - { - "text": "To elect a new head for the Office of the Ombudsman.", - "values": [ - "National Human Rights Institution" - ] - }, - { - "text": "Follow-up legislative measures adopted in favour of the rights of persons with disabilities", - "values": [ - "Disabilities" - ] - }, - { - "text": "Take further steps to honour its Constitution and protect and promote women's rights as an integral part of universal human rights.", - "values": [ - "Women's rights" - ] - }, - { - "text": "Consider acceding to the ICRMW", - "values": [ - "International instruments", - "Labour", - "Migrants" - ] - }, - { - "text": "Take specific steps to ensure prompt and thorough investigations of all allegations of excessive use of force and ill-treatment by law enforcement officials, including police and prison guards", - "values": [ - "Detention", - "Human rights violations by state agents", - "Torture and other CID treatment" - ] - }, - { - "text": "Repeal remaining laws and regulations that discriminate against women and girls or amend them in line with international human rights standards", - "values": [ - "International instruments", - "Rights of the Child", - "Women's rights" - ] - }, - { - "text": "Accede to ICC ", - "values": [ - "International instruments", - "Justice" - ] - }, - { - "text": "Mali pledged to give thorough consideration to all requests for visits addressed by the special procedures", - "values": [ - "Special procedures" - ] - }, - { - "text": "Invite United Nations Special Rapporteurs to visit and investigate Guantanamo Bay prison and United States secret prisons and to subsequently close them ", - "values": [ - "Detention", - "Special procedures" - ] - }, - { - "text": "Strengthen efforts to prevent, combat and punish violence against women ", - "values": [ - "Women's rights" - ] - }, - { - "text": "Ensure the effective implementation of existing legislation on nondiscrimination, including by consulting with civil society, disseminating information to vulnerable groups about legal protections that are available to them and directing appropriate resources where needed to improve implementation", - "values": [ - "Civil society" - ] - }, - { - "text": "Proceed to the ratification of the Optional Protocol to the International Covenant on Economic, Social and Cultural Rights ", - "values": [ - "ESC rights - general", - "International instruments" - ] - }, - { - "text": "Allow effective access to justice for the victims of gender violence, giving them judicial protection and establishing shelters for victims, in accordance with recommendations of the Committee on Economic, Social and Cultural Rights and the Human Rights Committee", - "values": [ - "Rights of the Child", - "Treaty bodies", - "Women's rights" - ] - }, - { - "text": "Continue efforts to build and develop judicial capacities through training for judges and intensify efforts to strengthen the role of the judiciary", - "values": [ - "Justice" - ] - }, - { - "text": "Measurably improve access to the legal system for Roma and other groups facing discrimination and carry out a campaign to increase awareness among these minorities of their rights and means of redress when infringement occurs", - "values": [ - "Human rights education and training", - "Minorities" - ] - }, - { - "text": "Extend a standing invitation to all Special Procedures of the Human Rights Council ", - "values": [ - "Special procedures" - ] - }, - { - "text": "Give full consideration to the recommendations of the Special Rapporteur on the Situation of human rights defenders", - "values": [ - "Human rights defenders", - "Special procedures" - ] - }, - { - "text": "Take all appropriate action, including programmes of education and training, in order to eliminate prejudice and discrimination based on sexual orientation and gender identity ", - "values": [ - "Human rights education and training", - "Sexual Orientation and Gender Identity" - ] - }, - { - "text": "Step up efforts to ratify the International Convention on the Protection of the Rights of All Migrant Workers and Members of Their Families", - "values": [ - "International instruments", - "Labour", - "Migrants" - ] - }, - { - "text": "Review the current legislation with a view to recognizing an alternative to military service, which is accessible to all conscientious objectors and is not punitive or discriminatory", - "values": [ - "Freedom of religion and belief", - "Racial discrimination" - ] - }, - { - "text": "Extend the prohibition of corporal punishment to the home and the family ", - "values": [ - "Rights of the Child", - "Torture and other CID treatment" - ] - }, - { - "text": "Implement fully the 2012 Action Plans to eradicate the recruitment and use of child soldiers and achieve the goal of "Children Not Soldiers" in this year", - "values": [ - "International humanitarian law", - "Rights of the Child" - ] - }, - { - "text": "Ensure that the conditions of detention of irregular migrants and asylum seekers do not constitute a degrading treatment. Limit the practice of detention of migrants, especially unaccompanied minors", - "values": [ - "Asylum-seekers - refugees", - "Detention", - "Migrants", - "Rights of the Child" - ] - }, - { - "text": "Accelerate the process of ratifying the International Convention on the Protection of All Persons from Enforced Disappearance ", - "values": [ - "Enforced disappearances", - "International instruments" - ] - }, - { - "text": "Promote legislation in conformity with UNICEF and ILO standards regarding the rights of the child.", - "values": [ - "Rights of the Child" - ] - }, - { - "text": "Fully implement the 2003 law on juvenile justice", - "values": [ - "Justice", - "Rights of the Child" - ] - }, - { - "text": "Ratify CAT and align fully the definition of the crime in its domestic law with that in the Convention ", - "values": [ - "International instruments", - "Torture and other CID treatment" - ] - }, - { - "text": "Demonstrate improvements in submitting its reports in a regular manner to the treaty bodies, particularly for the International Covenant on Civil and Political Rights and the International Covenant on Economic, Social and Cultural Rights, reports under which have been overdue since 2003 ", - "values": [ - "Treaty bodies" - ] - }, - { - "text": "Consider creating an overall strategy to eliminate violence against women, which would include a preventive component.", - "values": [ - "Women's rights" - ] - }, - { - "text": "Develop a programme of protection for journalists", - "values": [ - "Freedom of the press" - ] - }, - { - "text": "Take concrete steps to prevent any form of infringement on the human rights of southern Sudanese residing in the north, including by addressing issues of nationality and citizenship in cooperation with the authorities in Southern Sudan ", - "values": [ - "Migrants" - ] - }, - { - "text": "Implement a public information campaign alerting citizens to their rights and the laws governing the role and actions of Government officials with regard to corruption. ", - "values": [ - "Corruption", - "Human rights education and training" - ] - }, - { - "text": "Immediately and unconditionally release prisoners arrested on politically motivated charges, including members of the Islamic Renaissance party of Tajikistan, Group 24 and their lawyers", - "values": [ - "Detention", - "Freedom of association and peaceful assembly", - "Freedom of religion and belief" - ] - }, - { - "text": "Take steps to increase the participation of women in government", - "values": [ - "Women's rights" - ] - }, - { - "text": "Safeguard legitimate rights of individuals belonging to indigenous communities in relation to land disputes, in particular in rural areas, reforming eviction procedures to comply with international standards", - "values": [ - "Indigenous peoples", - "Right to land" - ] - }, - { - "text": "Ratify the ICRMW, the CPED, the 1954 Convention relating to the Status of Stateless Persons and ILO Convention No. 169 concerning Indigenous and Tribal Peoples in Independent Countries ", - "values": [ - "Indigenous peoples", - "International instruments", - "Labour", - "Migrants", - "Statelessness and the right to nationality" - ] - }, - { - "text": "Sign and ratify the Optional Protocol to the International Covenant on Economic, Social and Cultural Rights, the Optional Protocol to the International Covenant on Civil and Political Rights, the Optional Protocol to the Convention against Torture and other Cruel, Inhuman or Degrading Treatment or Punishment, the International Convention for the Protection of all Persons from Enforced Disappearance, the Convention on the Rights of Persons with Disabilities and its Optional Protocol, the Optional Protocol to the Convention on the Elimination of All Forms of Discrimination against Women and the Optional Protocols to the Convention on the Rights of the Child", - "values": [ - "International instruments" - ] - }, - { - "text": "Continue efforts to improve women's rights and conduct awareness- raising and training courses for law enforcement officers in order to ensure the human rights of its people ", - "values": [ - "Human rights education and training", - "Women's rights" - ] - }, - { - "text": "Provide additional funding for the protection of religious minorities", - "values": [ - "Freedom of religion and belief", - "Minorities" - ] - }, - { - "text": "Adopt the necessary measures to prevent overcrowding in prison facilities ", - "values": [ - "Detention" - ] - }, - { - "text": "Ensure the timely access to consular assistance under the Vienna Convention on Consular Relations of 1963", - "values": [ - "International instruments" - ] - }, - { - "text": "Consider the possibility of speeding up the process of establishing a new National Human Rights Institution in full compliance with the Paris Principles ", - "values": [ - "National Human Rights Institution" - ] - }, - { - "text": "Take the necessary steps for the effective investigation and prosecution of the serious human rights violations that occurred during the fighting in 2002-2003 ", - "values": [ - "Other" - ] - }, - { - "text": "Address concerns over detention conditions", - "values": [ - "Detention" - ] - }, - { - "text": "Reinforce measures to fight against migrant smuggling and human trafficking, which are at risk of increasing in Equatorial Guinea and in the entire subregion ", - "values": [ - "Migrants", - "Trafficking" - ] - }, - { - "text": "Take appropriate measures to ensure equality between men and women in the labour market particularly in terms of equal pay for equal work as well as to upgrade the participation of women in public life ", - "values": [ - "Women's rights" - ] - }, - { - "text": "Implement promptly the Patriotic Agenda 2025", - "values": [ - "Other" - ] - }, - { - "text": "Prohibit the treatment of formerly trafficked women and children remaining in Kuwait as in violation of national immigration laws, and grant permission for them to remain in the country to defend their rights ", - "values": [ - "Rights of the Child", - "Trafficking", - "Women's rights" - ] - }, - { - "text": "Ensure accountability and guarantee prompt and effective investigation of torture and of all cases of ill-treatment", - "values": [ - "Torture and other CID treatment" - ] - }, - { - "text": "Ratify, in particular, the International Covenant on Economic Social and Cultural Rights and the International Covenant on Civil and Political Rights.", - "values": [ - "CP rights - general", - "ESC rights - general", - "International instruments" - ] - }, - { - "text": "Put in place within six months a concrete plan, covering the next two-year period, to improve implementation of the 2009 Law on the Elimination of Violence Against Women, including the measures recommended to Afghanistan by the Committee on the Elimination of Discrimination against Women in July 2013 ", - "values": [ - "Treaty bodies", - "Women's rights" - ] - }, - { - "text": "Elaborate and draft a national plan of action to protect the rights of children ", - "values": [ - "Rights of the Child" - ] - }, - { - "text": "Continue efforts to improve prison conditions", - "values": [ - "Detention" - ] - }, - { - "text": "Continue its efforts to further the promotion and protection of economic, social and cultural rights, including the right to development, for a better realization of the MDGs, and in this regard, take concrete steps to reduce poverty and unemployment rates with a view to improving the livelihood of all citizens.", - "values": [ - "Development", - "ESC rights - general", - "Labour", - "Poverty" - ] - }, - { - "text": "Continue to request technical assistance and capacity-building from OHCHR and the international community ", - "values": [ - "Technical assistance and cooperation" - ] - }, - { - "text": "Give special attention to educating Roma girls, many of whom are often unable to finish school because of their gender ", - "values": [ - "Minorities", - "Right to education", - "Women's rights" - ] - }, - { - "text": "Identify and hold accountable all perpetrators of human rights abuses in the north and in Bamako through a transparent judicial process ", - "values": [ - "Justice" - ] - }, - { - "text": "Further improve the social security system and continue to assist vulnerable groups ", - "values": [ - "ESC rights - general" - ] - }, - { - "text": "Continue its efforts in the field of women's rights protection", - "values": [ - "Women's rights" - ] - }, - { - "text": "Adopt a five-year plan on human rights education, focusing on students and young persons of both sexes, in line with the World Programme for Human Rights Education.", - "values": [ - "Human rights education and training" - ] - }, - { - "text": "Pursue inclusive policies to improve education with a view to narrowing the gap between different socioeconomic levels", - "values": [ - "Right to education" - ] - }, - { - "text": "That all security forces personnel, including the penitentiary police, receive adequate and mandatory training on international human rights standards", - "values": [ - "Human rights education and training", - "International instruments" - ] - }, - { - "text": "Guarantee the right to education by enrolling all migrant children into mainstream Bulgarian schools and provide necessary language support classes to facilitate their integration", - "values": [ - "Migrants", - "Right to education", - "Rights of the Child" - ] - }, - { - "text": "Take measures to improve access to health care, in particular with regard to combating infant and maternal mortality", - "values": [ - "Right to health", - "Rights of the Child", - "Women's rights" - ] - }, - { - "text": "Consider seriously the possibility of becoming a State Party to the International Labour Organization (ILO) and initiate a legislative process towards the ratification of the eight fundamental ILO Conventions ", - "values": [ - "International instruments", - "Labour" - ] - }, - { - "text": "Take steps to fully enforce the 2012 Anti-Discrimination Act and adopt concrete measures to reduce the risk of violence against vulnerable groups ", - "values": [ - "Minorities" - ] - }, - { - "text": "Carry out efforts in the area of poverty eradication", - "values": [ - "Poverty" - ] - }, - { - "text": "Steadily review the implementation of its new system of terrorism prevention and investigation to ensure the effectiveness in practice of safeguards against abuse and the deliberate targeting of certain ethnic groups", - "values": [ - "Counter-terrorism", - "Minorities", - "Racial discrimination" - ] - }, - { - "text": "Adopt legislation, including a new Criminal Code with the aim of abolishing the death penalty in law", - "values": [ - "Death penalty" - ] - }, - { - "text": "Engage in a constructive dialogue with the media, NGOs and international bodies to promote freedom of expression in Ecuador", - "values": [ - "Civil society", - "Freedom of opinion and expression", - "Freedom of the press" - ] - }, - { - "text": "Strengthen and expand interreligious and intercultural dialogue", - "values": [ - "Freedom of religion and belief", - "Minorities" - ] - }, - { - "text": "Adopt, as soon as possible, a de jure moratorium on executions with a view to the abolition of the death penalty ", - "values": [ - "Death penalty" - ] - }, - { - "text": "Adopt the necessary measures to ensure that the implementation of the Organic Act on Communication is in conformity with the right to freedom of expression and the relevant international standards", - "values": [ - "Freedom of opinion and expression" - ] - }, - { - "text": "Prosecute all those responsible for the mass-scale criminal acts that have taken place in the past months, including members of security units, responsible commanders and politicians", - "values": [ - "Human rights violations by state agents" - ] - }, - { - "text": "Adopt comprehensive measures to ensure access to justice, provision of compensation and assistance to facilitate reintegration into local communities for victims of trafficking, particularly women and children", - "values": [ - "Justice", - "Rights of the Child", - "Trafficking", - "Women's rights" - ] - }, - { - "text": "Take all necessary measures to ensure full respect for the rights of association and assembly, including with regard to the ability of NGOs to function, which would be in line with Ethiopia's Constitution and its international obligations ", - "values": [ - "Civil society", - "Freedom of association and peaceful assembly" - ] - }, - { - "text": "Continue its endeavours to combat racism including through establishing a national board against racism and intolerance", - "values": [ - "Racial discrimination" - ] - }, - { - "text": "Encourage ratification of the Optional Protocol to CRPD, as well as the establishment of a priority national program to address this agenda", - "values": [ - "Disabilities", - "International instruments" - ] - }, - { - "text": "Consider especially abolishing the death penalty to children under 18 years ", - "values": [ - "Death penalty", - "Rights of the Child" - ] - }, - { - "text": "Continue to increase input into education for Roma and other minorities", - "values": [ - "Minorities", - "Right to education" - ] - }, - { - "text": "Continue to promote the right to work for all including through providing technical and vocational training for young people", - "values": [ - "Labour" - ] - }, - { - "text": "The Government is committed to ensuring that access to medical services is ensured, through the availability of General Practitioner Services throughout Maldives. In this regard, work is underway to develop an electronic GP registration and Patient Record Archiving System, which would facilitate in-patient identification, birth and death registration, as well as substantiate access to healthcare and universal health coverage. Birth registration has been made possible, for everyone across the country since 1960s.", - "values": [ - "Right to health", - "Rights of the Child", - "Statelessness and the right to nationality" - ] - }, - { - "text": "Consider reforming its legislation with a view to abolishing the death penalty, in the meantime, a formal moratorium on such punishment should be adopted", - "values": [ - "Death penalty" - ] - }, - { - "text": "Continue progress on various relevant programs, including broad-based accessibility projects for persons with disabilities in the country", - "values": [ - "Disabilities" - ] - }, - { - "text": "Ensure proper investigation of child abuse", - "values": [ - "Rights of the Child" - ] - }, - { - "text": "Ensure that the application of legislation that may limit freedom of expression is in line with relevant international standards and that lawful restrictions on the exercise of the right of freedom of expression on grounds such as national security and public order are necessary and proportional", - "values": [ - "Freedom of opinion and expression" - ] - }, - { - "text": "Provide human rights education and training to members of the police, security services, prison and detention staff and judiciary with specific focus on protection of human rights of women, children, national and other minorities, refugees and persons with disabilities and to ensure accountability of security and other state personnel for possible violations of human rights", - "values": [ - "Human rights education and training", - "Human rights violations by state agents" - ] - }, - { - "text": "Continue efforts to eradicate child and forced marriage", - "values": [ - "Rights of the Child", - "Women's rights" - ] - }, - { - "text": "Take legislative as well as practical steps to ensure that judicial procedures including that against Mr. Toaso are conducted in a just, transparent, and impartial manner, in full respect of human rights norms, including the recommendations of United Nations mechanisms", - "values": [ - "Justice" - ] - }, - { - "text": "Continue making efforts to take effective measures for the promotion and protection of women's and children's rights, including improvements with regard to the issues of bride-kidnapping, domestic violence, child abuse and the sale of children ", - "values": [ - "Rights of the Child", - "Trafficking", - "Women's rights" - ] - }, - { - "text": "Provide separate prison and detention facilities for minors, male and female inmates and improve access of inmates to adequate food and medical care", - "values": [ - "Detention" - ] - }, - { - "text": "Ensure that the security forces, including the military, are governed, during peaceful demonstrations, by the United Nations Basic Principles on the Use of Force and Firearms by Law Enforcement Officials", - "values": [ - "Freedom of association and peaceful assembly" - ] - }, - { - "text": "Continue with efforts to counter hate speech, as well as incitement to xenophobia and discrimination for nationality or religious reasons", - "values": [ - "Freedom of religion and belief", - "Racial discrimination" - ] - }, - { - "text": "Take the necessary steps to ensure that allegations of ill-treatment by security forces in detention centers are promptly investigated, through a transparent and independent procedure, especially when they relate to particularly vulnerable groups such as minors ", - "values": [ - "Detention", - "Human rights violations by state agents", - "Rights of the Child", - "Torture and other CID treatment" - ] - }, - { - "text": "Step up efforts to implement the 2009 Gender Mainstreaming Policy with a view to combating the de facto discrimination faced by Maldivians and to explore the possibility of adopting additional measures to combat violence against women in the country ", - "values": [ - "Women's rights" - ] - }, - { - "text": "Give continuity to strengthening of national human rights institutions and mechanisms", - "values": [ - "General" - ] - }, - { - "text": "Continue to pursue active cooperation and dialogue with the countries of origin of migrant workers.", - "values": [ - "Labour", - "Migrants" - ] - }, - { - "text": "Continue implementing the Victims and Land Restitution Law", - "values": [ - "Right to land" - ] - }, - { - "text": "Take measures to introduce a de jure moratorium on executions and take concrete steps towards the abolition of the death penalty", - "values": [ - "Death penalty" - ] - }, - { - "text": "Continue to strengthen its institutional mechanisms for the protection of human rights and freedoms", - "values": [ - "General" - ] - }, - { - "text": "Incorporate in national law the definition of torture as contained in article 1 of the Convention against Torture and specifically criminalize torture.", - "values": [ - "International instruments", - "Torture and other CID treatment" - ] - }, - { - "text": "In the future, ensure the timely provision of replies to thematic questionnaires received from special procedures ", - "values": [ - "Special procedures" - ] - }, - { - "text": "Make the fight against violence against women a priority in its strategies, and to seek as much international assistance as needed in that regard", - "values": [ - "Women's rights" - ] - }, - { - "text": "Adopt appropriate measures to widely disseminate and ensure the full observance of the Declaration on Human Rights Defenders", - "values": [ - "Human rights defenders", - "International instruments" - ] - }, - { - "text": "Pursue its policy to protect the most vulnerable persons who are victims of racial discrimination ", - "values": [ - "Racial discrimination" - ] - }, - { - "text": "Continue to move forward through the adoption of all measures and policies that can achieve greater efficiency in the promotion and protection of human rights, and the promotion of the rule of law ", - "values": [ - "Justice" - ] - }, - { - "text": "Continue its efforts to reach the Millennium Development Goals by 2015, in particular, it underlined the importance of strengthening the education sector by increasing the number of primary and secondary schools, attaining parity in all levels of schooling and strengthening higher education ", - "values": [ - "Development", - "Right to education" - ] - }, - { - "text": "Develop a comprehensive child protection policy with a view to reflecting fully the realities of children in national plans and programmes", - "values": [ - "Rights of the Child" - ] - }, - { - "text": "Ensure that its efforts to harmonize and consolidate Commonwealth anti-discrimination laws address all prohibited grounds of discrimination and promote substantive equality ", - "values": [ - "Other" - ] - }, - { - "text": "Consider continuing increasing allocation of more resources to the sectors of education, health and employment ", - "values": [ - "Development", - "Right to education", - "Right to health" - ] - }, - { - "text": "Ensure without delay the full incorporation of CEDAW provisions into domestic law, and take further steps to prevent all forms of gender-based violence ", - "values": [ - "International instruments", - "Women's rights" - ] - }, - { - "text": "Ratify and implement the Convention against Torture and Other Cruel, Inhuman or Degrading Treatment or Punishment as previously recommended", - "values": [ - "International instruments", - "Torture and other CID treatment", - "UPR process" - ] - }, - { - "text": "Ensure implementation of the relevant legislation, in particular the laws relating to the use of languages and those aimed at improving the living conditions of the Roma. ", - "values": [ - "Minorities" - ] - }, - { - "text": "Continue its efforts in the promotion and protection of women's rights through the implementation of the various national action plans", - "values": [ - "Women's rights" - ] - }, - { - "text": "Lift unnecessary restrictions on the granting of visas, in particular multiple entry visas, to members of the Christian clergy in the exercise of their religious duties.", - "values": [ - "Freedom of movement", - "Freedom of religion and belief" - ] - }, - { - "text": "Review the National Security Act to ensure that it fully respects human rights, including the rights to freedom of speech, association and peaceful manifestation", - "values": [ - "Freedom of association and peaceful assembly", - "Freedom of opinion and expression" - ] - }, - { - "text": "Issue an immediate moratorium on the use of the death penalty for juveniles and for crimes that do not meet the most serious crimes standards under international law", - "values": [ - "Death penalty", - "Rights of the Child" - ] - }, - { - "text": "Accede to the International Convention on the Protection of the Rights of All Migrant Workers and Members of their Families", - "values": [ - "International instruments", - "Labour", - "Migrants" - ] - }, - { - "text": "Continue efforts to prevent illicit drugs consumption and trafficking, which are a remaining problem without a social impact in Cuba ", - "values": [ - "Public security" - ] - }, - { - "text": "Accede to the Rome Statute of the ICC", - "values": [ - "International instruments", - "Justice" - ] - }, - { - "text": "Continue working to ensure that the National Human Rights Institution gains \u201cA\u201c status in compliance with the Paris Principles", - "values": [ - "National Human Rights Institution" - ] - }, - { - "text": "Continue reforms of the justice system, in particular measures to strengthen the independence of the judiciary and reinforce witness protection", - "values": [ - "Justice" - ] - }, - { - "text": "Continue its cooperation with the United Nations and other international organizations to strengthen human rights", - "values": [ - "Other" - ] - }, - { - "text": "Strengthen the participation of women in decision-making positions and on the labour market", - "values": [ - "Women's rights" - ] - }, - { - "text": "Abolish Re-education through Labour, prevent torture, and immediately inform relatives about arrests and effective legal representation", - "values": [ - "Detention", - "Torture and other CID treatment" - ] - }, - { - "text": "Ensure the right to equality before courts and tribunals, and to a fair trial, as provided for by the Universal Declaration of Human Rights and ICCPR, and as outlined by the United Nations Basic Principles on the Independence of the Judiciary", - "values": [ - "International instruments", - "Justice" - ] - }, - { - "text": "Ensure the inclusion of a human rights approach in the measures to address the migrant situation, taking into particular account the situation of vulnerable population", - "values": [ - "Migrants" - ] - }, - { - "text": "Review the 2010 amendment to the Environment Act in order to ensure consistency with the objectives of the United Nations Declaration on the Rights of Indigenous Peoples ", - "values": [ - "Indigenous peoples", - "International instruments" - ] - }, - { - "text": "To organize an annual meeting with civil society representatives in the field of human rights to prepare main international events", - "values": [ - "Civil society" - ] - }, - { - "text": "It will liaise with the President of the Human Rights Council and the Office of the High Commissioner for Human Rights on the possible organization of visits that might prove useful for the purposes of discussions and consultations.", - "values": [ - "Technical assistance and cooperation" - ] - }, - { - "text": "Continue improving the often still precarious conditions in Benin prisons", - "values": [ - "Detention" - ] - }, - { - "text": "Enhance measures regarding the integration of Roma citizens through the social and educational systems of the State, inter alia, by facilitating registration in the birth registry allowing them to register using a provisional address", - "values": [ - "Minorities", - "Rights of the Child", - "Statelessness and the right to nationality" - ] - }, - { - "text": "Ratify the Convention against Torture and Other Cruel, Inhuman or Degrading Treatment or Punishment", - "values": [ - "Torture and other CID treatment" - ] - }, - { - "text": "Revise the 1991 Penal Code and abolish the penalization of apostasy ", - "values": [ - "Freedom of religion and belief" - ] - }, - { - "text": "Take immediate steps in order to assure that acts of interethnic violence will not be repeated and promote understanding between different national groups ", - "values": [ - "Minorities", - "Public security" - ] - }, - { - "text": "End discrimination against women and girls in accordance with the Convention on the Elimination of All Forms of Discrimination against Women and allow women to pass on their nationality in an equal manner with men", - "values": [ - "International instruments", - "Racial discrimination", - "Rights of the Child", - "Statelessness and the right to nationality", - "Women's rights" - ] - }, - { - "text": "Continue efforts in setting and implementing additional measures to enforce harmony and social cohesion between the different ethnic groups in the country", - "values": [ - "Minorities" - ] - }, - { - "text": "Make sure that the Presidential Decree No. 982 is not applied as a way to impede the work of human rights defenders ", - "values": [ - "Human rights defenders" - ] - }, - { - "text": "Intensify the implementation of the National Action Plan on Women and of gender-sensitive poverty reduction and development programmes", - "values": [ - "Development", - "Poverty", - "Women's rights" - ] - }, - { - "text": "If no legal moratorium is given, provide all necessary guarantees to ensure that the rights of persons condemned to death are respected", - "values": [ - "Death penalty" - ] - }, - { - "text": "Make the Law against Domestic Violence widely known to public officials and society and monitor its effectiveness ", - "values": [ - "Rights of the Child", - "Women's rights" - ] - }, - { - "text": "Continue its efforts in strengthening, promoting and protecting the rights of women", - "values": [ - "Women's rights" - ] - }, - { - "text": "Withdraw its reservations made to articles 2 and 16 of CEDAW, which were considered contrary to the object and purpose of this treaty ", - "values": [ - "International instruments", - "Women's rights" - ] - }, - { - "text": "Step up efforts in amending the law to allow the granting of Bahraini citizenship to children whose mothers are married to foreigners", - "values": [ - "Rights of the Child", - "Statelessness and the right to nationality" - ] - }, - { - "text": "Create an enabling environment for civil society where citizens are free to exercise their full rights to freedom of peaceful assembly and association in accordance with the principles of democracy and in line with international obligations under the ICCPR, including revoking the royal decree of 1973", - "values": [ - "Freedom of association and peaceful assembly", - "International instruments" - ] - }, - { - "text": "Adopt specific legislation that explicitly prohibits domestic violence, including marital rape, and ensure its stringent implementation and enforcement", - "values": [ - "Rights of the Child", - "Women's rights" - ] - }, - { - "text": "Establish a National Human Rights Institution in line with the Paris Principles and set out a detailed roadmap to this effect so that the Institute may commence its work at the earliest possible opportunity", - "values": [ - "National Human Rights Institution" - ] - }, - { - "text": "Step up efforts to rehabilitate and reintegrate offenders, including through the introduction of formal education programmes in prisons", - "values": [ - "Detention", - "Right to education" - ] - }, - { - "text": "Develop a work plan to implement the National Strategy of 2011 to prevent violence against women", - "values": [ - "Women's rights" - ] - }, - { - "text": "Allow access to its prisons and detention centres to Yemeni and international human rights organisations, in particular the International Committee of the Red Cross.", - "values": [ - "Detention" - ] - }, - { - "text": "Ratify and implement the Convention on the Rights of Persons with Disabilities", - "values": [ - "Disabilities", - "International instruments" - ] - }, - { - "text": "Speed up the process of ratification of OP-CAT and establish an effective national preventive mechanism for preventing torture", - "values": [ - "Detention", - "Torture and other CID treatment" - ] - }, - { - "text": "Ensure the protection of children of migrant workers from statelessness", - "values": [ - "Labour", - "Migrants", - "Rights of the Child", - "Statelessness and the right to nationality" - ] - }, - { - "text": "Ensure the right to adequate food, especially during times of conflict and in states of emergency", - "values": [ - "Right to food" - ] - }, - { - "text": "Undertake awareness campaigns directed towards the judiciary with a view to promoting non-discrimination", - "values": [ - "Human rights education and training", - "Justice" - ] - }, - { - "text": "Adopt an official moratorium aiming at the formal abolition of the death penalty in the country and to ratify the Second Optional Protocol to the International Covenant on Civil and Political Rights", - "values": [ - "Death penalty", - "International instruments" - ] - }, - { - "text": "Review and amend the national legislation in order to reinforce the protection against discrimination, including based on religion, sexual orientation and gender identity, and introduce education programmes preventing such discrimination and stigmatization", - "values": [ - "Freedom of religion and belief", - "Sexual Orientation and Gender Identity" - ] - }, - { - "text": "Combat all manifestations of religious hatred within Czech society", - "values": [ - "Freedom of religion and belief" - ] - }, - { - "text": "Implement the action plan signed with the United Nations in June 2011 to end current and prevent future recruitment and use of children in the armed forces, and adopt the draft child protection code criminalizing this under domestic law", - "values": [ - "International humanitarian law", - "Rights of the Child" - ] - }, - { - "text": "While taking into account the achievements of literacy campaign, allocate more resources to education in the national budget and ensure equal access to all levels of education, in particular for the most vulnerable groups", - "values": [ - "Right to education" - ] - }, - { - "text": "Strengthen its efforts to fulfill its obligations under CRC", - "values": [ - "International instruments", - "Rights of the Child" - ] - }, - { - "text": "Consider ratification of the International Convention on the Protection of the Rights of All Migrant Workers and Members of their Families", - "values": [ - "International instruments", - "Labour", - "Migrants" - ] - }, - { - "text": "Continue deploying efforts for a strategy in favour of gender equality, in particular regarding policies and programmes of the national Government and local authorities", - "values": [ - "Women's rights" - ] - }, - { - "text": "Ratify, as soon as possible, the International Covenant on Economic, Social and Cultural Rights, the International Covenant on Civil and Political Rights and the respective optional protocols to those Covenants ", - "values": [ - "CP rights - general", - "Death penalty", - "ESC rights - general", - "International instruments" - ] - }, - { - "text": "Consider the implementation of the necessary safeguards for the protection of children against corporal punishment", - "values": [ - "Rights of the Child", - "Torture and other CID treatment" - ] - }, - { - "text": "Bring in line the definition of the crime of torture with the Convention against Torture and accede to the Optional Protocol to the Convention against Torture and Other Cruel, Inhuman or Degrading Treatment or Punishment ", - "values": [ - "Detention", - "International instruments", - "Torture and other CID treatment" - ] - }, - { - "text": "Eliminate all forms of child labour", - "values": [ - "Labour", - "Rights of the Child" - ] - }, - { - "text": "Look into the possible ratification of the United Nations Convention against Corruption.", - "values": [ - "Corruption", - "International instruments" - ] - }, - { - "text": "Guarantee that the situation in detention facilities is in accordance with international human rights standards ", - "values": [ - "Detention", - "International instruments" - ] - }, - { - "text": "Give appropriate attention to end racial discrimination against the Arab and Muslim communities in Canada including racial and religious profiling", - "values": [ - "Freedom of religion and belief", - "Minorities", - "Racial discrimination" - ] - }, - { - "text": "Prevent cases of torture in facilities of detention through the provision of legal safeguards for detainees and effective investigations into allegations of torture and the prosecution and sentencing of perpetrators ", - "values": [ - "Detention", - "Torture and other CID treatment" - ] - }, - { - "text": "Amend the 2010 National Security Act, removing immunities from members of the National Intelligence and Security Services and revoking their powers of arrest and detention", - "values": [ - "Human rights violations by state agents" - ] - }, - { - "text": "Undertake a participatory and inclusive process with civil society organizations, including indigenous peoples, in the implementation of the universal periodic review recommendations ", - "values": [ - "Civil society", - "Indigenous peoples", - "UPR process" - ] - }, - { - "text": "Take the necessary steps to ensure that victims of human rights violations and their families have access to full reparation in the form of restitution, compensation, satisfaction and rehabilitation ", - "values": [ - "Justice" - ] - }, - { - "text": "Release anyone detained without charges ", - "values": [ - "Detention" - ] - }, - { - "text": "Increase budgetary allocations to ensure equal access to free and quality primary education in all regions and to improve the physical infrastructure of schools, including teaching materials ", - "values": [ - "Right to education" - ] - }, - { - "text": "Criminalize domestic violence and ensure that a broad definition of the crime is applied so as to ensure the protection of all persons concerned, including domestic workers ", - "values": [ - "Labour", - "Rights of the Child", - "Women's rights" - ] - }, - { - "text": "Ensure that the Security Laws Amendment Act is in line with human rights, limiting pretrial detention and not subjecting demonstrations to the approval of the Council of Ministers", - "values": [ - "Detention" - ] - }, - { - "text": "Release the detainees held in Guantanamo", - "values": [ - "Detention" - ] - }, - { - "text": "Establish enforceable domestic child access mechanisms that would allow both parents to maintain on a regular basis personal relations and direct contact with their children in accordance with the Convention on the Rights of the Child", - "values": [ - "Rights of the Child" - ] - }, - { - "text": "Take appropriate steps to ensure the effectiveness of its Inter-Ministerial Working Group for Combating Trafficking in Human Beings and of the national coordinator on human trafficking and continue to improve public awareness of this issue", - "values": [ - "Human rights education and training", - "Trafficking" - ] - }, - { - "text": "Develop a national human rights programme to give a new impetus to its commitment and determination to tackle national problems, such as a culture of impunity, arbitrary and extrajudicial executions and a practice of torture and degrading treatment", - "values": [ - "Extrajudicial executions", - "Impunity", - "Torture and other CID treatment" - ] - }, - { - "text": "Intensify its efforts to include gender as a discrimination ground in the Constitution ", - "values": [ - "Women's rights" - ] - }, - { - "text": "Grant a legal rank to the ICESCR that allows its provisions to be directly invoked in the domestic legal system", - "values": [ - "ESC rights - general", - "International instruments" - ] - }, - { - "text": "Adopt the Marriage, Divorce and Family Relations Bill", - "values": [ - "Women's rights" - ] - }, - { - "text": "Complete without delay the reform aiming to restrict the jurisdiction of military courts", - "values": [ - "Justice" - ] - }, - { - "text": "Take measures to extend the \u201cTuition Waiver and Tuition Support Fund Program for High School Education\u201c to children attending Korean schools and ensure equal treatment of Korean schools in accordance with the recommendations of relevant United Nations treaty bodies", - "values": [ - "Minorities", - "Right to education", - "Rights of the Child" - ] - }, - { - "text": "For as long as it resorts to the death penalty, respect the relevant international standards, especially the principles stated in Economic and Social Council resolution 1984/50, and particularly ensure that it will only be applied to the most severe crimes and to individuals who are more than 18 years of age at the time of the act ", - "values": [ - "Death penalty", - "Rights of the Child" - ] - }, - { - "text": "Develop training programmes for police officers that are in line with human rights principles on how to deal with minorities and vulnerable groups", - "values": [ - "Human rights education and training", - "Minorities" - ] - }, - { - "text": "Improve transparency and due process in the criminal justice system by ensuring fair and public hearings within a reasonable timeframe, ensuring anyone arrested is promptly informed of the reasons for arrest and ensuring that defendants have access to effective representation by their defence counsel, functioning fairly and without undue constraint ", - "values": [ - "Justice" - ] - }, - { - "text": "Immediately adopt a moratorium on the death penalty as a first step towards its abolition ", - "values": [ - "Death penalty" - ] - }, - { - "text": "Ensure that domestic legislation is in line with international human rights standards", - "values": [ - "International instruments" - ] - }, - { - "text": "Take effective measures to combat trafficking in women and children in cooperation with countries in the trafficking network.", - "values": [ - "Rights of the Child", - "Trafficking", - "Women's rights" - ] - }, - { - "text": "Become a State party to the International Convention for the Protection of the Rights of All Migrant workers and Members of Their Families ", - "values": [ - "International instruments", - "Labour", - "Migrants" - ] - }, - { - "text": "Place more efforts by empowering organizations which are responsible for defending human rights in the country", - "values": [ - "Civil society" - ] - }, - { - "text": "Continue to guarantee the independence of the media, including by reviewing the current legal framework governing the broadcast media, and to strengthen media independence by removing the legal basis for undue government interference", - "values": [ - "Freedom of the press" - ] - }, - { - "text": "Adopt the next New National Action Plan on Human Rights, which will serve to further strengthen the human rights policy of the country", - "values": [ - "General" - ] - }, - { - "text": "Address remaining legislative and implementation gaps, including to fully protect and support victims", - "values": [ - "Justice" - ] - }, - { - "text": "Achieve tolerance and peaceful existence in all parts of society by promoting interfaith and intercommunal dialogue", - "values": [ - "Freedom of religion and belief" - ] - }, - { - "text": "Seek support from the international community, and particularly from United Nations institutions and programmes, in order to establish capacity-building and technical assistance programmes, notably in the areas pertaining to human rights training - child labour - women's rights, particularly female genital mutilation - security, in particular the reinforcement of the army and the judiciary - support for families and communities to help them in fighting against the effects of poverty and HIV-AIDS - education - and juvenile justice ", - "values": [ - "Technical assistance and cooperation" - ] - }, - { - "text": "Adopt the measures necessary to guarantee the right of any person deprived of liberty to have access to an immediate remedy to challenge the legality of that detention ", - "values": [ - "Detention" - ] - }, - { - "text": "Further enhance its efforts in promoting gender equality, as well as combating all forms of gender-based violence", - "values": [ - "Women's rights" - ] - }, - { - "text": "Eliminate the system of exit visas for those wishing to travel abroad ", - "values": [ - "Freedom of movement" - ] - }, - { - "text": "Further improve the quality of its health services through the implementation of its National Health Strategic Plan ", - "values": [ - "Right to health" - ] - }, - { - "text": "Continue training programmes aimed at human rights awareness, and disseminate it in public institutions and public sectors in accordance with international standards of human rights principles", - "values": [ - "Human rights education and training" - ] - }, - { - "text": "Raise awareness among the communities on the prohibition of child labour, particularly in relation to the common social practice whereby a child, usually a daughter, is sent to live as a servant with a wealthier family, which lends itself to acts of human trafficking", - "values": [ - "Human rights education and training", - "Labour", - "Rights of the Child", - "Trafficking", - "Women's rights" - ] - }, - { - "text": "Consider ratifying international human rights treaties to which it is not yet a State party", - "values": [ - "International instruments" - ] - }, - { - "text": "Speed up the review of the Prevention of Domestic Violence Act and strengthen the mechanisms to protect, compensate, rehabilitate and reintegrate victims", - "values": [ - "Rights of the Child", - "Women's rights" - ] - }, - { - "text": "Continue implementing the Human Rights Plan of Action and continue training officials on aspects of the Plan", - "values": [ - "General" - ] - }, - { - "text": "Continue to work to fully secure the rights of the child", - "values": [ - "Rights of the Child" - ] - }, - { - "text": "Place greater relevance to and adopt measures to ensure the realization of all economic, social and cultural rights for its population", - "values": [ - "ESC rights - general" - ] - }, - { - "text": "Fully translate CRC into its national legislation ", - "values": [ - "International instruments", - "Rights of the Child" - ] - }, - { - "text": "Continue with initiatives aimed at increasing the number of women in education and employment.", - "values": [ - "Women's rights" - ] - }, - { - "text": "Re-examine the modalities for lifting parliamentarian immunity to ensure that this practice does not contravene the principles of pluralism and respect for freedom of expression ", - "values": [ - "Freedom of opinion and expression" - ] - }, - { - "text": "Raise the level of ODA to 0.7 per cent of GDP", - "values": [ - "Development" - ] - }, - { - "text": "Urgently ratify the Convention against Torture and Other Cruel, Inhuman or Degrading Treatment or Punishment as well as the Optional Protocol to the Convention against Torture and Other Cruel, Inhuman or Degrading Treatment or Punishment in order to allow visits to places of detention", - "values": [ - "Detention", - "International instruments", - "Torture and other CID treatment" - ] - }, - { - "text": "Continue to strengthen its policies and laws against domestic violence ", - "values": [ - "Rights of the Child", - "Women's rights" - ] - }, - { - "text": "Intensify the mediation process between conflict parties emphasizing the principles of inclusion of all relevant stakeholders to the conflict as well as parity", - "values": [ - "Justice" - ] - }, - { - "text": "Continue its measures on the protection of the rights of women and children, notably child support services", - "values": [ - "Rights of the Child", - "Women's rights" - ] - }, - { - "text": "Take all necessary measures to prevent torture.", - "values": [ - "Torture and other CID treatment" - ] - }, - { - "text": "Enhance the participation of and cooperation with relevant NHRIs and civil society in planning and implementation of human rights agenda in the future", - "values": [ - "Civil society", - "National Human Rights Institution" - ] - }, - { - "text": "Ensure more effective enforcement of policies and legislation to address discrimination against and marginalization of women, and take measures to promote equal access for boys and girls to basic education", - "values": [ - "Right to education", - "Rights of the Child", - "Women's rights" - ] - }, - { - "text": "Argentina has initiated the procedure towards the recognition of the competence of the Committee of the Convention for the Protection of All Persons from Enforced Disappearance to examine individual or inter-State communications.", - "values": [ - "Enforced disappearances", - "International instruments" - ] - }, - { - "text": "Ensure conditions for the opposition and human rights activists to freely work and express their views without fear of unsubstantiated prosecution", - "values": [ - "Human rights defenders" - ] - }, - { - "text": "Strengthen efforts to implement the socio-economic development strategy for the period until 2020 ", - "values": [ - "Development" - ] - }, - { - "text": "Adopt measures to ensure access to public services for persons who do not speak English as they are a significant proportion of the Namibian population. This was recommended by the Human Rights Committee in 2004", - "values": [ - "Minorities", - "Treaty bodies" - ] - }, - { - "text": "Allow the registration of NGOs that are active in the human rights area, both at the legal and practical level", - "values": [ - "Civil society" - ] - }, - { - "text": "Amend legislation that restricts the ability of Palestinian refugees to own property, specifically the Presidential Decree of January 1969, as modified in April 2001", - "values": [ - "Asylum-seekers - refugees", - "Right to land" - ] - }, - { - "text": "Accede to the Convention against Discrimination in Education", - "values": [ - "International instruments", - "Right to education" - ] - }, - { - "text": "Accept the presence of an OHCHR field office.", - "values": [ - "Technical assistance and cooperation" - ] - }, - { - "text": "Adopt legislative and policy measures to combat discrimination based on sexual orientation and gender identity", - "values": [ - "Sexual Orientation and Gender Identity" - ] - }, - { - "text": "Abolish the requirement of mandatory registrations and memberships in umbrella associations and trade unions", - "values": [ - "Civil society", - "Freedom of association and peaceful assembly", - "Labour" - ] - }, - { - "text": "Continue the efforts made in enhancing the right to education particularly education of children", - "values": [ - "Right to education", - "Rights of the Child" - ] - }, - { - "text": "Continue to ensure that human rights principles are integrated in domestic laws ", - "values": [ - "General" - ] - }, - { - "text": "Provide the necessary protection for and preserve the dignity of asylum seekers, ensure their access to legal assistance, facilitate family reunification procedures for migrants, and provide them with social security", - "values": [ - "Asylum-seekers - refugees", - "Migrants" - ] - }, - { - "text": "Amend the Domestic Violence Act, in particular to clarify the definition of sexual harm and broaden the definition of domestic violence to also include threats of violence, as well as include all types of physical harm", - "values": [ - "Rights of the Child", - "Women's rights" - ] - }, - { - "text": "Continue to promote the education and training in human rights of the law enforcement officials to increase the awareness about their role on the protection of fundamental rights of people, in particular the most vulnerable and marginalized groups ", - "values": [ - "Human rights education and training" - ] - }, - { - "text": "Continue efforts to reduce overcrowding in the prison system and ensure that the Standard Minimum Rules for the Treatment of Prisoners are observed", - "values": [ - "Detention" - ] - }, - { - "text": "Continue its policy aimed at the social integration of vulnerable groups such as Pygmies and Mbororos ", - "values": [ - "Indigenous peoples" - ] - }, - { - "text": "Intensify its efforts to incorporate in its internal legal system international legal norms aiming at eliminating gender based discrimination ", - "values": [ - "Women's rights" - ] - }, - { - "text": "In the same line, Argentina pledges to recognize the competence of the Committee under the International Convention for the Protection of the Rights of All Migrant Workers and Members of Their Families.", - "values": [ - "International instruments", - "Labour", - "Migrants" - ] - }, - { - "text": "Establish national policies aimed at putting an end to violence and crimes motivated by race nationality, religion ethnicity, sexual orientation or identity, through the approval of laws that explicitly criminalize violence against people or property ", - "values": [ - "Freedom of religion and belief", - "Minorities", - "Racial discrimination", - "Sexual Orientation and Gender Identity" - ] - }, - { - "text": "Continue efforts to promote and protect the rights of persons with disabilities, consistent with its obligations under the Convention on the Rights of Persons with Disabilities", - "values": [ - "Disabilities", - "International instruments" - ] - }, - { - "text": "Give due consideration to becoming a signatory to OP-CRC-AC", - "values": [ - "International humanitarian law", - "International instruments", - "Rights of the Child" - ] - }, - { - "text": "Decriminalize sexual relations between consenting adults of the same sex and amend national legislation to include sexual orientation as prohibited grounds for discrimination", - "values": [ - "Sexual Orientation and Gender Identity" - ] - }, - { - "text": "Take effective measures to ensure equal opportunities and treatment of women and men in the labour market in both private and public sectors ", - "values": [ - "Women's rights" - ] - }, - { - "text": "Release all political prisoners and bring its national legislation into compliance with article 19 of the International Covenant on Civil and Political Rights which guarantees freedom of expression ", - "values": [ - "Detention", - "Freedom of opinion and expression", - "International instruments" - ] - }, - { - "text": "Develop a national action plan to eliminate child marriage", - "values": [ - "Rights of the Child" - ] - }, - { - "text": "Take the requisite measures to increase the number of women in decision-making positions as per the quotas provided for in the Electoral Code of the country", - "values": [ - "Elections", - "Women's rights" - ] - }, - { - "text": "Fully implement the commitment in contributing to unifying all ethnicities and representatives of all religions", - "values": [ - "Freedom of religion and belief", - "Minorities" - ] - }, - { - "text": "Adopt a domestic legislation in accordance with the 1951 Convention on the Status of Refugees and the Optional Protocol thereto, guaranteeing efficient access to procedures for determining refugee status to persons requiring international protection", - "values": [ - "Asylum-seekers - refugees", - "International instruments" - ] - }, - { - "text": "Take the necessary measures to ensure the right to freedom of expression, freedom of peaceful assembly and freedom of association, among others, by holding responsible anyone who commits acts of intimidation, harassment or violence against individuals, including human rights defenders, for having exercised these rights", - "values": [ - "Freedom of association and peaceful assembly", - "Freedom of opinion and expression", - "Human rights defenders" - ] - }, - { - "text": "Strengthen the national capacities through cooperation with the United Nations human rights mechanisms, particularly the special procedures", - "values": [ - "Special procedures", - "Treaty bodies", - "UPR process" - ] - }, - { - "text": "Continue in the process of promoting and protecting the rights of members belonging to minority groups", - "values": [ - "Minorities" - ] - }, - { - "text": "Continue public information campaigns to combat domestic violence, and above all violence against women", - "values": [ - "Human rights education and training", - "Rights of the Child", - "Women's rights" - ] - }, - { - "text": "Improve conditions of detention consistent with international obligations and afford greater flexibility in granting human rights and humanitarian organizations access to detention centres ", - "values": [ - "Detention" - ] - }, - { - "text": "Continue to address legislative gaps related to the rights of women", - "values": [ - "Women's rights" - ] - }, - { - "text": "Remove reservations to core human rights instruments including the Convention against Torture, the International Convention on the Elimination of All Forms of Racial Discrimination, the Convention on the Elimination of all Forms of Discrimination against Women and the International Convention on the Protection of the Rights of All Migrant Workers and Members of Their Families", - "values": [ - "International instruments", - "Labour", - "Migrants", - "Racial discrimination", - "Torture and other CID treatment", - "Women's rights" - ] - }, - { - "text": "Stop targeting political dissidents and legitimate criticism in Sindh, Baluchistan and Khyber Pakhtunkhwa", - "values": [ - "Freedom of opinion and expression" - ] - }, - { - "text": "Continue to implement policies for the development of its people under the Sustainable Development Goals, including measures taken for equal opportunities for women's participation in the economic development of the country", - "values": [ - "Development", - "Women's rights" - ] - }, - { - "text": "Further strengthen its measures to combat extremism in order to ensure the effective protection of human rights in the country", - "values": [ - "Freedom of religion and belief" - ] - }, - { - "text": "Adopt the necessary legislation and policies in order to combat violence against women", - "values": [ - "Women's rights" - ] - }, - { - "text": "Develop and strengthen its human rights training programmes for police forces and the judiciary, addressing among others the appropriate use of force as well as issues relating to discrimination and profiling based on race", - "values": [ - "Human rights education and training" - ] - }, - { - "text": "Introduce legislation to create a legal and permanent basis for the "Defensoría del los Habitantes" set up to protect human rights defenders, including providing it with an adequate budget and financial autonomy", - "values": [ - "Human rights defenders", - "National Human Rights Institution" - ] - }, - { - "text": "Continue to seek support from the international community and relevant United Nations agencies in meeting its challenges in hosting the refugee population ", - "values": [ - "Asylum-seekers - refugees", - "Technical assistance and cooperation" - ] - }, - { - "text": "Continue taking active measures to eliminate all forms of discrimination against women", - "values": [ - "Women's rights" - ] - }, - { - "text": "Accede to and domesticate the Rome Statute and adopt provisions to cooperate fully and promptly with the International Criminal Court", - "values": [ - "International instruments", - "Justice" - ] - }, - { - "text": "Implement into national law the Convention on the Rights of Persons with Disabilities", - "values": [ - "Disabilities", - "International instruments" - ] - }, - { - "text": "Strengthen measures to combat forced or early marriages", - "values": [ - "Rights of the Child", - "Women's rights" - ] - }, - { - "text": "Follow the recommendations made by the Committee Against Torture with a view to adopting all necessary measures to combat impunity.", - "values": [ - "Impunity", - "Torture and other CID treatment", - "Treaty bodies" - ] - }, - { - "text": "Institute a de jure moratorium on the death penalty, with a view to its future abolition", - "values": [ - "Death penalty" - ] - }, - { - "text": "Pursue the dynamics of the law on juvenile justice, the draft law to prevent and fight against human trafficking, and primary education for all ", - "values": [ - "Justice", - "Right to education", - "Rights of the Child", - "Trafficking" - ] - }, - { - "text": "Further develop measures to protect freedom of religion, expression and peaceful assembly and continue to build on the progress begun with the establishment of the State Agency for Religious Issues and the amendments to the Law on Broadcasting", - "values": [ - "Freedom of association and peaceful assembly", - "Freedom of opinion and expression", - "Freedom of religion and belief", - "Freedom of the press" - ] - }, - { - "text": "Continue its positive measures in combatting domestic violence, including by ensuring effective investigation of domestic violence cases, bringing the perpetrators to justice and providing victims with the necessary assistance and protection", - "values": [ - "Rights of the Child", - "Women's rights" - ] - }, - { - "text": "Make available the necessary resources to the National Human Rights Commission to ensure it is able to operate effectively", - "values": [ - "National Human Rights Institution" - ] - }, - { - "text": "Investigate all cases of aggressions or threats against human rights defenders, journalists, and civil society activists ", - "values": [ - "Civil society", - "Freedom of the press", - "Human rights defenders" - ] - }, - { - "text": "Train professionals involved in the judicial system on the relevant international standards on a fair trial and rule of law ", - "values": [ - "Justice" - ] - }, - { - "text": "Guarantee full and effective recognition of sexual and reproductive rights ", - "values": [ - "Right to health", - "Rights of the Child", - "Women's rights" - ] - }, - { - "text": "Continue cooperation with the human rights mechanisms", - "values": [ - "General" - ] - }, - { - "text": "Consider positively the acceptance of the contentious jurisdiction of the Inter-American Court of Human Rights ", - "values": [ - "Other" - ] - }, - { - "text": "Develop a comprehensive anti-discrimination legislation", - "values": [ - "Other" - ] - }, - { - "text": "Devise a national strategy for the ratification of or adhesion to the core international human rights treaties", - "values": [ - "International instruments" - ] - }, - { - "text": "Adhere and adapt its national legislation to the Arms Trade Treaty", - "values": [ - "International instruments", - "Public security" - ] - }, - { - "text": "Strictly observe the principle of non-refoulement and not resort to diplomatic assurances to circumvent it ", - "values": [ - "Asylum-seekers - refugees" - ] - }, - { - "text": "Eradicate violence against women and ensure a greater political representation and participation, in particular in legislative elections to take place in 2010.", - "values": [ - "Women's rights" - ] - }, - { - "text": "Continue its implementation of measures designed to further promote and protect the rights of children and to intensify its efforts aimed at providing greater opportunity for higher education", - "values": [ - "Right to education", - "Rights of the Child" - ] - }, - { - "text": "Continue to address inequalities affecting human rights in the areas of health, education, employment and income that disproportionately affect Maori and other minority groups ", - "values": [ - "Indigenous peoples", - "Labour", - "Minorities", - "Right to education", - "Right to health" - ] - }, - { - "text": "Ensure that persons deprived of their liberty have access to their fundamental freedoms at all times ", - "values": [ - "Detention" - ] - }, - { - "text": "Strengthen efforts to restrict outbreaks of racism and xenophobia, especially manifestations of racism on the Internet", - "values": [ - "Racial discrimination" - ] - }, - { - "text": "Ensure that all allegations of violations of human rights and international humanitarian law are duly investigated, and that the perpetrators are brought to justice ", - "values": [ - "International humanitarian law" - ] - }, - { - "text": "Take effective measures to ensure the independence of the judiciary and the right to access to justice", - "values": [ - "Justice" - ] - }, - { - "text": "Strengthen the existing national human rights institution to be in compliance with the Paris Principles", - "values": [ - "National Human Rights Institution" - ] - }, - { - "text": "Consider the possibility of recognizing the competence of the Committee on Enforced Disappearances to receive and examine communications - from or in favour of victims - as well as from other State Parties ", - "values": [ - "Enforced disappearances", - "Treaty bodies" - ] - }, - { - "text": "Enhance the promotion of dialogue among societies, including interreligious and inter-cultural dialogue in the country", - "values": [ - "Freedom of religion and belief" - ] - }, - { - "text": "Rwanda pledges to provide one cow to every poor family, in order to improve living conditions and to construct decent houses for all vulnerable and marginalized people. Rwanda commits to universal health insurance for all and to provide legal aid to all vulnerable and poor people.", - "values": [ - "Development", - "Justice", - "Poverty" - ] - }, - { - "text": "Repeal or modify legal norms that deny or limit the rights of people based on their sexual orientation or gender identity", - "values": [ - "Sexual Orientation and Gender Identity" - ] - }, - { - "text": "Consider acceding to the two Optional Protocols to the ICCPR ", - "values": [ - "CP rights - general", - "Death penalty", - "International instruments" - ] - }, - { - "text": "Sign and ratify the Optional Protocol to the ICESCR, as soon as possible", - "values": [ - "ESC rights - general", - "International instruments" - ] - }, - { - "text": "Take measures to promote the participation of women in the decisionmaking process ", - "values": [ - "Women's rights" - ] - }, - { - "text": "Consider the possibility of ratifying the International Convention for the Protection of All Persons from Enforced Disappearance ", - "values": [ - "Enforced disappearances", - "International instruments" - ] - }, - { - "text": "Fully implement the provisions of the Human Rights Council's resolution on "protecting human rights defenders" adopted in March 2013 ", - "values": [ - "Human rights defenders" - ] - }, - { - "text": "Comply with international standards on arbitrary detention, in particular establishing forms of non-custodial sentences, such as community work, and separating strictly minors from adult detainees at detentions centres, which should lead to specific detention centres for minors and their reintegration into society ", - "values": [ - "Detention", - "Rights of the Child" - ] - }, - { - "text": "Strengthen relevant legislation to tackle racism and intolerance and take concrete measures to prohibit public instigation to racial violence, hatred and discrimination", - "values": [ - "Racial discrimination" - ] - }, - { - "text": "Ensure that rape is categorized as a sexual violation rather than according to the degree of violence used or threatened by the perpetrator, and facilitate access to justice for victims of rape to ensure that cases of rape are reported and prosecuted in court ", - "values": [ - "Women's rights" - ] - }, - { - "text": "As a first step, allow the visit requested by the Special Rapporteur to take place as soon as possible and on the best conditions, and take his recommendations seriously taken into account", - "values": [ - "Special procedures" - ] - }, - { - "text": "Consider further cooperation with the international human rights monitoring mechanisms including treaty bodies and Special procedures of the Human Rights Council", - "values": [ - "Special procedures", - "Treaty bodies" - ] - }, - { - "text": "Prioritize the establishment of meaningful and accessible accountability mechanisms to ensure transparency in the investigation and prosecution of human rights violations and provide effective remedies and legal redress for victims and take measures to increase the independence of the judiciary and strengthen oversight of the implementation, at the State level, of federal human rights legislation and obligations", - "values": [ - "Justice" - ] - }, - { - "text": "Increase the budget allocated to health care and take all necessary measures to strengthen a national health-care system accessible to all, without discrimination", - "values": [ - "Right to health" - ] - }, - { - "text": "Respect and protect freedom of expression and end all practices that threaten the right to freedom of expression, including threats against journalists and media outlets ", - "values": [ - "Freedom of opinion and expression", - "Freedom of the press" - ] - }, - { - "text": "Promptly adopt effective measures to ensure that the judicial authorities are elected by direct universal suffrage, in order to guarantee the independence and impartiality of the judicial bodies, often represented by members of elite classes as a result of unsound management by previous Governments, which has caused impunity and delays in the area of justice", - "values": [ - "Impunity", - "Justice" - ] - }, - { - "text": "Review its policies discriminating against students on account of their faith, ensure that the trials of members of religious minorities are conducted in a fair and transparent manner, and accord them the full rights of citizens of Iran", - "values": [ - "Freedom of religion and belief", - "Minorities", - "Racial discrimination" - ] - }, - { - "text": "Adopt appropriate legislation to separate persons deprived of their liberty on trial and facing charges from those already serving a sentence ", - "values": [ - "Justice" - ] - }, - { - "text": "Continue its efforts to consider the creation of a new national human rights institution guided by the Paris Principles ", - "values": [ - "National Human Rights Institution" - ] - }, - { - "text": "Intensify efforts to implement the recommendations made by the Special Rapporteur on the sale of children, child prostitution and child pornography and the Special Rapporteur on human rights of migrants.", - "values": [ - "Migrants", - "Rights of the Child", - "Special procedures", - "Trafficking" - ] - }, - { - "text": "Continue with the government's efforts to improve policies and programs in the treatment of persons deprived of liberty ", - "values": [ - "Detention" - ] - }, - { - "text": "Prosecute rape as a crime of war in accordance with Security Council resolutions 1325 (2005) and 1820 (2008)", - "values": [ - "Women's rights" - ] - }, - { - "text": "Continue and strengthen the measures to come to terms with the problems of discrimination that still persist, and ensure the full enjoyment of human rights by all minority groups.", - "values": [ - "Minorities" - ] - }, - { - "text": "Adopt provisions to ensure that detained children are always held separately from adults", - "values": [ - "Detention", - "Rights of the Child" - ] - }, - { - "text": "Solidify the democratic process by organizing a popular referendum on presidential term limits and setting a date for and plan to hold local elections", - "values": [ - "Elections" - ] - }, - { - "text": "Ensure full implementation of a strategy on the promotion of workers' rights and a plan of action to guarantee fair and equal wages ", - "values": [ - "Labour" - ] - }, - { - "text": "Commit to promptly repealing legislation at state level which discriminates against women, with priority attention paid to family law that results in real or de facto discrimination against women and girls, and to legislation that prevents women's access to justice, particularly in respect of the reporting and prosecution of family violence", - "values": [ - "Justice", - "Women's rights" - ] - }, - { - "text": "Take immediate measures to restore the independence, integrity and effective functioning of the Constitutional Tribunal and its judges, including by amending pertinent legislation", - "values": [ - "Justice" - ] - }, - { - "text": "Continue to mainstream human rights into various national bodies and sectors", - "values": [ - "Human rights education and training" - ] - }, - { - "text": "Through relevant mechanisms, continue to guarantee through specific, concrete measures the constructive cooperation policies towards the office of the Commissioner for the Protection of Children's Rights, providing it with the necessary resources to guarantee the fulfilment of its functions for the benefit of the boys, girls and adolescents of the country ", - "values": [ - "Rights of the Child" - ] - }, - { - "text": "That a strategic plan be implemented to ensure that all schools and educational institutions are reopened in the near future", - "values": [ - "Right to education" - ] - }, - { - "text": "Ensure that the draft bill of the Jaafari Personal Status Law and the Personal Status Law of 1959 guarantee equality with regard to women's human rights in all areas, marriage, divorce, custody and inheritance", - "values": [ - "Women's rights" - ] - }, - { - "text": "Strengthen the protection framework for children's rights, particularly through measures to prevent child abuse, exploitation and violence against children", - "values": [ - "Rights of the Child" - ] - }, - { - "text": "Issue a standing invitation to all Human Rights Council special procedures", - "values": [ - "Special procedures" - ] - }, - { - "text": "Take concrete measures to ensure better protection of civilians, in particular women and children, by supporting the setting up of a hybrid court and by investigating and prosecuting alleged serious violations of international law, including when perpetrated by its military personnel ", - "values": [ - "Human rights violations by state agents", - "International humanitarian law", - "Rights of the Child", - "Women's rights" - ] - }, - { - "text": "Adopt adequate measures to improve sexual and reproductive health services for women, particularly education regarding prevention of early pregnancies and sexually transmitted diseases", - "values": [ - "Right to health", - "Women's rights" - ] - }, - { - "text": "Ensure that the Human Rights Ombudsman is an independent institution which functions in full compliance with the Paris Principles", - "values": [ - "National Human Rights Institution" - ] - }, - { - "text": "Become a party to the major international human rights instruments to which it has not yet acceded, such as the International Convention for the Protection of All Persons from Enforced Disappearance, as well as issue a standing invitation to special procedures mandate holders ", - "values": [ - "Enforced disappearances", - "International instruments", - "Special procedures" - ] - }, - { - "text": "Continue efforts to combat racial discrimination and hate speech, accelerate the enactment of the law concerning hate crimes and hate speech, which has been presented for general comments", - "values": [ - "Racial discrimination" - ] - }, - { - "text": "Improve access for persons with disabilities to public facilities, including schools", - "values": [ - "Disabilities" - ] - }, - { - "text": "Continue work on introducing awareness-raising and educational programmes on human rights into the curricula of schools and universities and on organizing relevant programmes for civil servants ", - "values": [ - "Human rights education and training" - ] - }, - { - "text": "Issue standing invitations to all special procedures", - "values": [ - "Special procedures" - ] - }, - { - "text": "Bring its legislation closer to the requirements of the European Convention on Nationality, which stipulates that to obtain the nationality, the period of residency should not be above 10 years", - "values": [ - "Other" - ] - }, - { - "text": "Take all the measures necessary to ensure full respect for existing legislation for lesbians, gays, transsexuals and bisexuals", - "values": [ - "Sexual Orientation and Gender Identity" - ] - }, - { - "text": "Develop a national strategy to include in the school system at all levels appropriate measures in the field of human rights education in accordance with the Plan of Action 2005-2009 of the World Programme for Human Rights Education.", - "values": [ - "Human rights education and training", - "Right to education", - "Rights of the Child" - ] - }, - { - "text": "Ensure decent conditions of detention", - "values": [ - "Detention" - ] - }, - { - "text": "Sign and ratify the Optional Protocol to the International Covenant on Economic, Social and Cultural Rights and accede to its inter-States investigative mechanism", - "values": [ - "ESC rights - general", - "International instruments" - ] - }, - { - "text": "Continue efforts to eliminate impunity and to ensure the exercise of the right to truth ", - "values": [ - "Impunity", - "Justice" - ] - }, - { - "text": "Ratify the international human rights instruments to which it is not a party and bring its internal legal framework into line with international obligations", - "values": [ - "International instruments" - ] - }, - { - "text": "Undertake the necessary efforts to ratify CRPD and, in so doing, take a holistic approach ", - "values": [ - "Disabilities", - "International instruments" - ] - }, - { - "text": "Provide necessary resources for promotion of human rights, especially for the right to education and the right to health", - "values": [ - "Right to education", - "Right to health" - ] - }, - { - "text": "Organize and hold free, democratic and transparent parliamentary and presidential elections ", - "values": [ - "Elections" - ] - }, - { - "text": "Continue policies and programmes aimed at reducing inequalities that still exist between the Aboriginal, recent immigrants and other Canadians", - "values": [ - "Indigenous peoples", - "Migrants" - ] - }, - { - "text": "Reform civil society laws to establish a streamlined legal framework through which independent organizations can register, and to allow these organizations to accept assistance and contributions from foreign sources", - "values": [ - "Civil society", - "Freedom of association and peaceful assembly" - ] - }, - { - "text": "Provide members of its police force with training on human rights and improve inmate conditions in detention facilities ", - "values": [ - "Detention", - "Human rights education and training" - ] - }, - { - "text": "Further strengthen actions to ensure that economic and social rights of vulnerable people are protected, and women's rights and gender equality, and especially take specific policy measures to prevent child poverty and child abuse ", - "values": [ - "ESC rights - general", - "Poverty", - "Rights of the Child", - "Women's rights" - ] - }, - { - "text": "Continue to provide and improve training programmes on human rights for the judges and judiciary personnel", - "values": [ - "Human rights education and training" - ] - }, - { - "text": "Take all necessary measures to remove the discrepancy which still exists in the level of the enjoyment of the right to food by the Togolese people, so that this important right can be enjoyed by all the Togolese People", - "values": [ - "Right to food" - ] - }, - { - "text": "Advance towards the ratification of the Convention against Torture and Other Cruel, Inhuman or Degrading Treatment or Punishment", - "values": [ - "International instruments", - "Torture and other CID treatment" - ] - }, - { - "text": "Further strengthen the measures to combat human trafficking and provide the necessary assistance to the victims of trafficking", - "values": [ - "Trafficking" - ] - }, - { - "text": "Take appropriate measures to bring its domestic legislation into full conformity with all human rights conventions to which it is a party, especially CEDAW, and referred to in paragraphs 4 and 14 of the OHCHR compilation (A-HRC-WG.6-5-VUT-2).", - "values": [ - "International instruments", - "Women's rights" - ] - }, - { - "text": "Enforce the 2014 Law to Protect Women and all Members of the Family from Family Violence, criminalize marital rape, and ensure that marriage to the victim does not exempt a sexual offender from punishment", - "values": [ - "Women's rights" - ] - }, - { - "text": "Sign and ratify as soon as possible the International Convention for the Protection of All Persons from Enforced Disappearance, and recognize fully the competence of the Committee on Enforced Disappearance ", - "values": [ - "Enforced disappearances", - "International instruments" - ] - }, - { - "text": "Ratify the Optional Protocol to ICESCR ", - "values": [ - "ESC rights - general", - "International instruments" - ] - }, - { - "text": "Adopt awareness-raising measures to address the root causes in society of inequalities which continue to affect women. ", - "values": [ - "Human rights education and training", - "Women's rights" - ] - }, - { - "text": "Promote the active participation of civil society in the process of follow-up to the UPR, noting broad participation of civil society in preparation of Cuba's national report", - "values": [ - "Civil society", - "UPR process" - ] - }, - { - "text": "Allocate sufficient technical, human and financial resources for the effective implementation of the National Action Plan on Gender-based violence", - "values": [ - "Women's rights" - ] - }, - { - "text": "Train law enforcement officials to deal with sexual violence cases ", - "values": [ - "Rights of the Child", - "Women's rights" - ] - }, - { - "text": "Continue efforts to improve the living conditions in immigration detention centres, especially for children victims of armed conflicts", - "values": [ - "Detention", - "International humanitarian law", - "Migrants", - "Rights of the Child" - ] - }, - { - "text": "Put an end to the policy of imposing unilateral coercive measures against other countries and take initiatives to eliminate those unilateral punitive measures that violate human rights in targeted countries and constitute a breach of the terms of article 1 (2) of the provisions of the International Covenant on Economic, Social and Cultural Rights as this is a national decision whose consequences go beyond Swiss borders", - "values": [ - "ESC rights - general" - ] - }, - { - "text": "Enact legislation prohibiting all forms of FGM.", - "values": [ - "Rights of the Child", - "Torture and other CID treatment", - "Women's rights" - ] - }, - { - "text": "Continue the efforts of reforming the justice sector, in order to enhance the independence of the judiciary and facilitate access to justice to everyone", - "values": [ - "Justice" - ] - }, - { - "text": "Continue to invest sufficient resources in the judicial system so that it could combat impunity", - "values": [ - "Impunity", - "Justice" - ] - }, - { - "text": "Implement the recommendations accepted by Slovenia during its first UPR on the subject of discrimination against Roma", - "values": [ - "Minorities", - "Racial discrimination", - "UPR process" - ] - }, - { - "text": "Extend a standing invitation to the special procedure mechanisms of the United Nations ", - "values": [ - "Special procedures" - ] - }, - { - "text": "Call on development partners to explore ways and means to enhance its capacity in the implementation of its human rights obligations, as well as to promote human rights at the grass-roots level through, inter alia, the elaboration of programmes for human rights education.", - "values": [ - "Human rights education and training" - ] - }, - { - "text": "Take measures to improve the conditions in prisons", - "values": [ - "Detention" - ] - }, - { - "text": "Ensure freedom of expression and media freedom, including Internet freedom by bringing its national legislation fully in line with international standards, including by decriminalizing defamation, misinformation and related offences in relevant national laws", - "values": [ - "Freedom of opinion and expression", - "Freedom of the press" - ] - }, - { - "text": "Consider amending the Constitution to strike provisions that appear to curtail religious freedoms", - "values": [ - "Freedom of religion and belief" - ] - }, - { - "text": "Extend an invitation to the Special Rapporteur for human rights defenders ", - "values": [ - "Human rights defenders", - "Special procedures" - ] - }, - { - "text": "Promote and encourage locally based and members driven civil societies in the country ", - "values": [ - "Civil society" - ] - }, - { - "text": "Continue efforts aimed to minimize the environmental impact of economic activities affecting indigenous peoples", - "values": [ - "Development", - "Environment", - "Indigenous peoples" - ] - }, - { - "text": "Continue giving priority to vulnerable groups in the distribution of international assistance ", - "values": [ - "Other" - ] - }, - { - "text": "Fully align its national legislation with all obligations under the Rome Statute of the International Criminal Court, including by incorporating the provisions to cooperate fully and promptly with the ICC", - "values": [ - "International instruments", - "Justice" - ] - }, - { - "text": "Declare an official moratorium on executions with a view to abolishing the death penalty", - "values": [ - "Death penalty" - ] - }, - { - "text": "Continue with efforts to promote gender equality", - "values": [ - "Women's rights" - ] - }, - { - "text": "Continue to work with regional organisations and the international community including the OHCHR and other treaty bodies during the process of implementing measures to tackle sexual and gender based violence, release of all child soldiers and prevention of future recruitment, administration of justice and rule of law", - "values": [ - "International humanitarian law", - "Justice", - "Rights of the Child", - "Technical assistance and cooperation", - "Treaty bodies", - "Women's rights" - ] - }, - { - "text": "Take further steps to create a more enabling environment for international and national media platforms and ensure plurality of opinions within the country", - "values": [ - "Freedom of the press" - ] - }, - { - "text": "In collaboration with indigenous representatives, implement concrete measures, so that a comprehensive and coordinated national action plan can be under way by 2015, as recommended by the United Nations Secretary-General's campaign to end violence against women ", - "values": [ - "Indigenous peoples", - "Women's rights" - ] - }, - { - "text": "Take all necessary measures to abolish the death penalty and to ratify the Second Optional Protocol to the ICCPR ", - "values": [ - "Death penalty", - "International instruments" - ] - }, - { - "text": "Enact legislation and ensure its effective enforcement to provide for women's right to equal remuneration and their enhanced participation in public decision-making.", - "values": [ - "Women's rights" - ] - }, - { - "text": "To build capacity for the development of a communications and awarenessraising strategy that will engender a change of behaviour", - "values": [ - "Human rights education and training" - ] - }, - { - "text": "Systematically review the family Code in order to amend and repeal all gender-based discriminatory provisions", - "values": [ - "Women's rights" - ] - }, - { - "text": "Make further efforts in the fight against all forms of discrimination and intolerance ", - "values": [ - "Racial discrimination" - ] - }, - { - "text": "Continue to undertake measures to remove discrimination against ethnic minorities, including those recommended by the Committee on the Elimination of Racial Discrimination in September 2011", - "values": [ - "Minorities", - "Racial discrimination", - "Treaty bodies" - ] - }, - { - "text": "Step up efforts to combat trafficking in persons, including: continuing the practice of developing the national action plan and other strategies, considering the possibility of toughening criminal liability for crimes connected to human trafficking, studying the possibility of inviting the Special Rapporteur on Trafficking in Persons, especially women and children, to visit the country", - "values": [ - "Rights of the Child", - "Special procedures", - "Trafficking", - "Women's rights" - ] - }, - { - "text": "Strengthen public policies to address economic and social challenges, particularly in the area of health, such as access to drinking water", - "values": [ - "Right to health", - "Right to water and sanitation" - ] - }, - { - "text": "Continue its efforts on poverty reduction by expanding its microcredit programmes to small entrepreneurs, youths, and women, especially in the rural areas", - "values": [ - "Development", - "Poverty", - "Women's rights" - ] - }, - { - "text": "Repeal the provisions in the Criminal Code that criminalize consensual same-sex conduct, and any other legislation which discriminates on the basis of sexual orientation or gender identity, and bring its legislation in line with Malawi's obligations under international human rights law", - "values": [ - "International instruments", - "Sexual Orientation and Gender Identity" - ] - }, - { - "text": "Put an end to impunity for those who committed severe crimes ", - "values": [ - "Impunity" - ] - }, - { - "text": "Investigate without delay allegations of arbitrary detention of journalists, activists and political opponents and report before the holding of the local elections", - "values": [ - "Detention", - "Elections", - "Freedom of association and peaceful assembly", - "Freedom of the press", - "Human rights defenders" - ] - }, - { - "text": "Strengthen its human trafficking prevention programmes in its new National Strategy to Combat Trafficking in Persons ", - "values": [ - "Trafficking" - ] - }, - { - "text": "Take steps to ensure that the National Human Rights Commission is given a mandate in conformity with the Paris Principles", - "values": [ - "National Human Rights Institution" - ] - }, - { - "text": "Continue its programmes for the promotion of socioeconomic development, with a particular focus on the country\u2019s rights-based approach to food security targeting the most vulnerable groups", - "values": [ - "Right to food" - ] - }, - { - "text": "Adopt appropriate measures, consistent with international standards, to avoid corporal punishment of children in all areas and to carry out education and awareness-raising campaigns in schools and in society at large", - "values": [ - "Human rights education and training", - "Rights of the Child", - "Torture and other CID treatment" - ] - }, - { - "text": "Continue its current reform programme in the education system to provide a better education for its people throughout the country, particularly in rural areas ", - "values": [ - "Right to education" - ] - }, - { - "text": "Strengthen legislation and policy measures aimed at preventing and addressing violence against women ", - "values": [ - "Women's rights" - ] - }, - { - "text": "Take appropriate measures to reform its penal code", - "values": [ - "Justice" - ] - }, - { - "text": "Reduce infant mortality rates and malnutrition in children ", - "values": [ - "Right to food", - "Right to health", - "Rights of the Child" - ] - }, - { - "text": "Introduce an independent complaints mechanism on the conduct of security forces and establish a Nepal Police Service Commission ", - "values": [ - "Public security" - ] - }, - { - "text": "Adopt relevant legislative acts and put forward monitoring mechanisms to ensure their effective implementation", - "values": [ - "General" - ] - }, - { - "text": "Adopt a national action plan to encourage women's participation in political and public life", - "values": [ - "Women's rights" - ] - }, - { - "text": "Take active steps to further promote children's rights by spreading awareness against domestic violence and child labour and emphasizing the importance of students' school attendance", - "values": [ - "Labour", - "Rights of the Child", - "Women's rights" - ] - }, - { - "text": "Take measures to ensure that economic growth is proportional in the different parts of the country and benefits the whole population, including the country's minorities", - "values": [ - "Development", - "Minorities" - ] - }, - { - "text": "Continue granting the necessary humanitarian assistance to migrants in the Libyan Arab Jamahiriya ", - "values": [ - "Migrants" - ] - }, - { - "text": "Ensure full and consistent implementation of the Family Court Proceedings Reform Bill, in particular with regard to issuing immediate protection for victims of domestic abuse ", - "values": [ - "Rights of the Child", - "Women's rights" - ] - }, - { - "text": "Strengthen its efforts to provide assistance to victims of trafficking, such as access to education, vocational training and the labour market ", - "values": [ - "Labour", - "Right to education", - "Trafficking" - ] - }, - { - "text": "Achieve the national reconciliation project, foster solidarity among the Iraqi people, enshrine the bases of the national unity and ensure public security", - "values": [ - "Justice", - "Public security" - ] - }, - { - "text": "Adopt the Law on the Ombudsman for the Rights of the Child and incorporate an explicit definition of the crime of sale of children into the Penal Code ", - "values": [ - "National Human Rights Institution", - "Rights of the Child", - "Trafficking" - ] - }, - { - "text": "Adopt effective measures to protect Sami's linguistic right and culture ", - "values": [ - "Indigenous peoples" - ] - }, - { - "text": "Continue to take active measures to eliminate gender gaps in human development and gender-based inequalities in reproductive health, empowerment and economic activity", - "values": [ - "Women's rights" - ] - }, - { - "text": "Review national legislation to ensure equality and non-discrimination ", - "values": [ - "Other" - ] - }, - { - "text": "That the action initiated in favour of the rights and quality of life of indigenous peoples, comprising the Action Plan 2009-2013, the adoption of the Law of 2011 and the forthcoming publication of the corresponding implementing decree, be pursued through the formulation and implementation of a new and even more efficient multi-year plan", - "values": [ - "Indigenous peoples" - ] - }, - { - "text": "Continue to enhance efforts to further strengthen the judicial institutions", - "values": [ - "Justice" - ] - }, - { - "text": "Provide access to basic services such as health, education and justice to populations living in remote areas", - "values": [ - "Justice", - "Right to education", - "Right to health" - ] - }, - { - "text": "Immediately end violence and discrimination against members of ethnic and religious minorities, grant full citizenship rights to Rohingyas and end sexual violence committed against ethnic minority women ", - "values": [ - "Freedom of religion and belief", - "Minorities", - "Racial discrimination", - "Women's rights" - ] - }, - { - "text": "Pay more attention to the needs of persons with disabilities, particularly by covering their medical expenses", - "values": [ - "Disabilities", - "Right to health" - ] - }, - { - "text": "Ratify CEDAW as soon as possible, without any reservation", - "values": [ - "International instruments", - "Women's rights" - ] - }, - { - "text": "Pursue the human and financial investments in the health and hospital services with the aim of reinforcing the health system", - "values": [ - "Right to health" - ] - }, - { - "text": "Consider ratification of the International Labour Organization Convention No. 189 ", - "values": [ - "International instruments", - "Labour" - ] - }, - { - "text": "Ratify the Rome Statute on the ICC ", - "values": [ - "International instruments", - "Justice" - ] - }, - { - "text": "Consider as a first step the application of a moratorium on executions, both at the state and federal levels, with a view to ultimately abolishing the death penalty", - "values": [ - "Death penalty" - ] - }, - { - "text": "Guarantee the right to a fair trial by strengthening the independence of the Judiciary and by allowing detainees to freely consult a lawyer of their choice from upon arrest ", - "values": [ - "Justice" - ] - }, - { - "text": "Pursue its efforts to diligently combat the smuggling and trafficking of persons and envisage appropriate channels for sharing its experience and its knowledge with countries that may wish to benefit from them ", - "values": [ - "Trafficking" - ] - }, - { - "text": "Further strengthen measures, including existing legislation, to prevent and combat racism, racial discrimination, xenophobia and related forms of intolerance, and continue to improve national statistics", - "values": [ - "Racial discrimination" - ] - }, - { - "text": "Seek technical assistance and other support from development partners to strengthen implementation and development capacity with respect to human rights instruments and their domestication.", - "values": [ - "International instruments", - "Technical assistance and cooperation" - ] - }, - { - "text": "Adopt effective measures to increase the representation of women in the public and private sectors, especially in decision-making posts", - "values": [ - "Women's rights" - ] - }, - { - "text": "Continue to promote education and human rights training at the national level", - "values": [ - "Human rights education and training", - "Right to education" - ] - }, - { - "text": "Ratify the International Covenant on Economic, Social and Cultural Rights, and its Optional Protocol", - "values": [ - "ESC rights - general", - "International instruments" - ] - }, - { - "text": "Respect, in close cooperation with "Somaliland" and "Puntland", freedom of expression and protect journalists and human rights defenders from abuses aimed at preventing them from exercising their legitimate activity ", - "values": [ - "Freedom of opinion and expression", - "Freedom of the press", - "Human rights defenders" - ] - }, - { - "text": "Ensure effective protection of journalists and human rights defenders against intimidation, harassment, arrest and detention ", - "values": [ - "Detention", - "Freedom of the press", - "Human rights defenders" - ] - }, - { - "text": "Issue standing invitations to the special procedures for their country visits", - "values": [ - "Special procedures" - ] - }, - { - "text": "Take all necessary measures to protect the human rights, dignity and physical integrity of female members of the armed forces through an awareness-raising campaign, and also by taking firm judicial and disciplinary action against perpetrators ", - "values": [ - "Human rights education and training", - "Women's rights" - ] - }, - { - "text": "Take steps to ensure that the National Commission for the Eradication of Child Labour can effectively carry out its mandate ", - "values": [ - "Labour", - "Rights of the Child" - ] - }, - { - "text": "Ensure that all allegations of police brutality or other abuses perpetrated by law enforcement authorities against minors lead to a prompt and appropriate investigation and that those responsible are brought to justice ", - "values": [ - "Human rights violations by state agents", - "Rights of the Child" - ] - }, - { - "text": "Ensure protection of minorities, including indigenous minorities, in conformity with its international obligations ", - "values": [ - "Indigenous peoples", - "Minorities" - ] - }, - { - "text": "Ensure the effective implementation of the recently adopted rules regarding the types of visas for family reunification", - "values": [ - "Migrants" - ] - }, - { - "text": "Establish appropriate policies to account for and remedy any deficiencies in the application of the Family Protection Act of 2014 and adopt a strategy involving civil society in combating and eliminating domestic violence, sexual abuse and any other form violence against women", - "values": [ - "Civil society", - "Rights of the Child", - "Women's rights" - ] - }, - { - "text": "Redouble national measures aimed at ensuring that every child in the country is issued with a birth certificate promptly at birth", - "values": [ - "Rights of the Child", - "Statelessness and the right to nationality" - ] - }, - { - "text": "Continue efforts to eradicate early marriage and take necessary measures to further promote girls' education, including through enhancement of the educational system ", - "values": [ - "Right to education", - "Rights of the Child", - "Women's rights" - ] - }, - { - "text": "Refrain from subjecting the civilian population to collective punishment.", - "values": [ - "Torture and other CID treatment" - ] - }, - { - "text": "Ensure the full exercise of freedom of expression and of the freedom of all independent media, both national and foreign ones, regardless to their nature: press, internet, radio or television", - "values": [ - "Freedom of opinion and expression", - "Freedom of the press" - ] - }, - { - "text": "Fully implement the National Action Plan of the United Nations Security Council Resolution 1325 on women, peace and security ", - "values": [ - "Women's rights" - ] - }, - { - "text": "Georgia is committed to constructive cooperation with the Human Rights Council and will submit, on a voluntary basis, a midterm report on follow-up to accepted UPR recommendations, in accordance with the Human Rights Council resolution A/HRC/16/L.39.", - "values": [ - "UPR process" - ] - }, - { - "text": "Withdraw its reservations to CEDAW and CRC ", - "values": [ - "International instruments", - "Rights of the Child", - "Statelessness and the right to nationality", - "Women's rights" - ] - }, - { - "text": "Continue efforts to ensure equal opportunities for girls and women in terms of education, access to employment, housing and working conditions", - "values": [ - "Rights of the Child", - "Women's rights" - ] - }, - { - "text": "Continue efforts to obtain international assistance and technical expertise for the promotion of human rights ", - "values": [ - "Technical assistance and cooperation" - ] - }, - { - "text": "Ensure adequate funding in implementing the National Education Plan, and undertake progress reports on its implementation to improve transparency and accountability", - "values": [ - "Right to education" - ] - }, - { - "text": "Call upon the international community, especially the relevant United Nations programmes and funds, to provide assistance for Bhutan to sustainably consolidate its national strategy for food security and improve national food production ", - "values": [ - "Right to food", - "Technical assistance and cooperation" - ] - }, - { - "text": "Enforce the Human Trafficking Act and the Immigration Amendment Act and allocate sufficient resources to combat trafficking in persons", - "values": [ - "Migrants", - "Trafficking" - ] - }, - { - "text": "The rights of women and girls are firmly entrenched in Canada's Constitution and Canada is committed to improving their lives, particularly ending all forms of violence against women.", - "values": [ - "Rights of the Child", - "Women's rights" - ] - }, - { - "text": "Take appropriate measures to put an end to all forms of discrimination against women and girls, as well as to widespread sexual violence, and also to the recruitment and use of children in conflict", - "values": [ - "International humanitarian law", - "Rights of the Child", - "Women's rights" - ] - }, - { - "text": "Prosecute perpetrators of hate crimes against vulnerable groups", - "values": [ - "Racial discrimination" - ] - }, - { - "text": "Intensify efforts in the fight against extrajudicial executions, rape and torture", - "values": [ - "Extrajudicial executions", - "Torture and other CID treatment" - ] - }, - { - "text": "Further increase its efforts to ensure prompt, thorough and impartial investigations into all allegations of ill-treatment or excessive use of force by law enforcement officials, in order to bring those responsible for such acts to justice ", - "values": [ - "Human rights violations by state agents" - ] - }, - { - "text": "[Ratify] Particularly the International Covenant on Economic, Social and Cultural Rights, the International Covenant on Civil and Political Rights, the Convention against Torture and Other Cruel, Inhuman or Degrading Treatment or Punishment, and the Convention on the Elimination of All Forms of Discrimination against Women", - "values": [ - "CP rights - general", - "International instruments", - "Torture and other CID treatment", - "Treaty bodies", - "Women's rights" - ] - }, - { - "text": "Strengthen trans-boundary checkpoints, and the specialized security and judicial authorities to combat human trafficking", - "values": [ - "Trafficking" - ] - }, - { - "text": "Concentrate on the implementation of international human rights instruments that have been ratified by the country", - "values": [ - "International instruments" - ] - }, - { - "text": "Modify the administrative provisions on immigration to protect the victims of trafficking of persons and integrate the prevention of trafficking in persons into the policies for asylum seekers", - "values": [ - "Asylum-seekers - refugees", - "Migrants", - "Trafficking" - ] - }, - { - "text": "Sign and ratify the Optional Protocols to the CRC on the sale of children, child prostitution and child pornography and on the involvement of children in armed conflict", - "values": [ - "International humanitarian law", - "International instruments", - "Rights of the Child", - "Trafficking" - ] - }, - { - "text": "Effectively combat all manifestations of Islamophobia, neo-Nazism, and investigate, prosecute and punish all hate crimes against minorities", - "values": [ - "Freedom of religion and belief", - "Minorities", - "Racial discrimination" - ] - }, - { - "text": "Work on renewing the National Strategy to empower women by integrating additional programmes and projects to strengthen the role of women as a main partner in the development process ", - "values": [ - "Women's rights" - ] - }, - { - "text": "Improve the conditions of detention in all places of detention and ensure that prisoners and detainees have access to medical care, adequate and appropriate food, hygiene and exercise", - "values": [ - "Detention", - "Right to food", - "Right to health" - ] - }, - { - "text": "Establish an immediate official moratorium on the use of the death penalty with a view to abolishing it", - "values": [ - "Death penalty" - ] - }, - { - "text": "Assign the necessary economic, technical and financial resources to accelerate the implementation of the National Preventive Mechanism against Torture", - "values": [ - "Detention", - "Torture and other CID treatment" - ] - }, - { - "text": "Take measures to combat corruption ", - "values": [ - "Corruption" - ] - }, - { - "text": "Enact procedural mechanisms for application of the Child Protection Act and to continue delivering awareness programs on combating domestic violence", - "values": [ - "Rights of the Child", - "Women's rights" - ] - }, - { - "text": "Noting with concern that the crime of torture does not exist in its national legislation, define this crime and ensure that victims receive economic and legal compensation according to international standards ", - "values": [ - "Torture and other CID treatment" - ] - }, - { - "text": "Cooperate with the internal United Nations board of inquiry on its investigation into attacks on the United Nations-Syrian Arab Red Crescent relief operation", - "values": [ - "International humanitarian law", - "Technical assistance and cooperation" - ] - }, - { - "text": "End the exceptional state of emergency and lift the Emergency Law, and to abstain from legislation that introduces measures of Emergency Law into the Constitution", - "values": [ - "Justice" - ] - }, - { - "text": "Consider developing legislation and agreements which allow for alternatives to imprisonment in cases of minor offenses", - "values": [ - "Detention" - ] - }, - { - "text": "Establish an independent and impartial police complaints commission in accordance with the recommendations of the Royal Commission on police reform", - "values": [ - "Justice" - ] - }, - { - "text": "Ratify and implement ICCPR and ICESCR as soon as possible without restrictions and take measures to adapt its national legislation ", - "values": [ - "CP rights - general", - "ESC rights - general", - "International instruments" - ] - }, - { - "text": "Take steps to address the challenge of closing the enrolment gap in primary education while at the same time addressing issues of quality of education", - "values": [ - "Right to education" - ] - }, - { - "text": "Consider signing and ratifying the Optional Protocol to the International Covenant on Economic, Social and Cultural Rights", - "values": [ - "ESC rights - general", - "International instruments" - ] - }, - { - "text": "Follow through the Government\u2019s plans to expand compulsory education to high school", - "values": [ - "Right to education" - ] - }, - { - "text": "Ratify the International Covenant on Civil and Political Rights and the International Covenant on Economic, Social and Cultural Rights, as fundamental documents in the area of human rights ", - "values": [ - "CP rights - general", - "ESC rights - general", - "International instruments" - ] - }, - { - "text": "Make every possible measure to protect the legal and financial rights of expatriate workers in the Kingdom", - "values": [ - "Labour", - "Migrants" - ] - }, - { - "text": "Consider an early ratification of the third Optional Protocol to The Convention on the Rights of the Child on a communications procedure", - "values": [ - "International instruments", - "Rights of the Child" - ] - }, - { - "text": "Continue its efforts towards the operationalization of the National Human Rights Commission", - "values": [ - "National Human Rights Institution" - ] - }, - { - "text": "Further continue its efforts to combat domestic violence, including through raising public awareness", - "values": [ - "Human rights education and training", - "Rights of the Child", - "Women's rights" - ] - }, - { - "text": "Adopt a national plan against gender-based violence. To identify and remedy those areas in the national legislation that might be discriminatory, including family laws, laws and procedures relating to the authority of guardians of women, nationality laws and norms relating to housing", - "values": [ - "Statelessness and the right to nationality", - "Women's rights" - ] - }, - { - "text": "Make good use of technical assistance from OHCHR to ratify expeditiously several major human rights treaties, including the International Covenant on Civil and Political Rights, the International Covenant on Economic, Social and Cultural Rights, the Convention against Torture and the International Convention on the Elimination of All Forms of Racial Discrimination.", - "values": [ - "International instruments", - "Technical assistance and cooperation" - ] - }, - { - "text": "Take all necessary measures to ensure that the Office of the National Ombudsman complies with what is set out in the Paris Principles. ", - "values": [ - "National Human Rights Institution" - ] - }, - { - "text": "Bring its laws into line with European and international standards on press freedom, and abolish existing legislation on defamation", - "values": [ - "Freedom of the press" - ] - }, - { - "text": "Adopt the draft law aimed at establishing a human rights institution in accordance with the Paris Principles", - "values": [ - "National Human Rights Institution" - ] - }, - { - "text": "Consider the possibility of creating, with the aid and assistance of the international community, a national human rights institution accredited by the International Coordinating Committee of National Human Rights Institutions for the Promotion and Protection of Human Rights ", - "values": [ - "National Human Rights Institution" - ] - }, - { - "text": "Continue with its efforts in raising awareness and knowledge on human trafficking, including through trainings and awareness-raising measures for law enforcement organs, judges and public prosecutors", - "values": [ - "Human rights education and training", - "Trafficking" - ] - }, - { - "text": "Set a higher age of criminal responsibility for children and take all necessary measures to establish a specialised juvenile justice system, where children are treated in accordance with the principle of the best interest of the child ", - "values": [ - "Justice", - "Rights of the Child" - ] - }, - { - "text": "Continue its efforts at all Government levels to give women of all ages access to all information and all services necessary to take informed decisions based on their needs regarding reproductive health", - "values": [ - "Right to health", - "Women's rights" - ] - }, - { - "text": "Ensure that forced marriages are prohibited in all cases ", - "values": [ - "Rights of the Child", - "Women's rights" - ] - }, - { - "text": "Take appropriate measures to develop its internal domestic legislation so as to guarantee economic, social and cultural rights for all.", - "values": [ - "ESC rights - general" - ] - }, - { - "text": "Take the necessary measures to reduce the gender wage gap", - "values": [ - "Women's rights" - ] - }, - { - "text": "Intensify efforts to ensure the realization of the human rights of Afro- descendant populations", - "values": [ - "Minorities" - ] - }, - { - "text": "Take steps to implement the plan in relation to judicial procedures and adopt measures that corruption of judicial procedures is decreasing ", - "values": [ - "Corruption", - "Justice" - ] - }, - { - "text": "A review of federal and state legislation to restrict the number of offences carrying the death penalty and steps towards federal- and state-level moratoriums on executions with a view to its permanent abolition", - "values": [ - "Death penalty" - ] - }, - { - "text": "Redouble its efforts to ensure effective control in the fight against the sale and trafficking of children, including by raising awareness and by providing agents at the border with the necessary tools to identify victims and vulnerable populations so as to combat trafficking effectively", - "values": [ - "Human rights education and training", - "Rights of the Child", - "Trafficking" - ] - }, - { - "text": "Gradually increase measures to reduce illiteracy rates of boys and girls, and develop programs specifically aimed at reducing dropout rates using, perhaps, incentives for families through financial or food support ", - "values": [ - "Right to education" - ] - }, - { - "text": "Further strengthen its efforts to reduce poverty in the country", - "values": [ - "Poverty" - ] - }, - { - "text": "Ratify relevant international instruments, including the Second Optional Protocol to the International Covenant on Civil and Political Rights, aiming at the abolition of the death penalty, and take the necessary steps to remove the death penalty from Mongolia's justice system ", - "values": [ - "Death penalty", - "International instruments" - ] - }, - { - "text": "Guarantee effective protection, in law and practice, of the rights of national and religious minorities, firstly Muslims, Jews as well as the Sami", - "values": [ - "Freedom of religion and belief", - "Minorities" - ] - }, - { - "text": "Extend a standing invitation to the Special Rapporteur on the situation of human rights in Eritrea and to all other special procedures mandate holders, and cooperate fully with OHCHR ", - "values": [ - "Special procedures", - "Technical assistance and cooperation" - ] - }, - { - "text": "Ensure that the Serbian minority is not discriminated against in the provision of posts in the public sector and in real estate acquisitions or rental applications", - "values": [ - "Minorities", - "Racial discrimination" - ] - }, - { - "text": "Continue to combat human trafficking, in particular of women, boys and girls and continue strengthening its programs to prevent trafficking, in accordance with the National Integrated Strategy to Combat Human Trafficking", - "values": [ - "Rights of the Child", - "Trafficking", - "Women's rights" - ] - }, - { - "text": "Consider the inclusion of "gender" among the criteria of discrimination", - "values": [ - "Women's rights" - ] - }, - { - "text": "Fully implement the Gender Action Plan, to develop a more coordinated response to authorities, and to protect victims of domestic violence and provide them with adequate care", - "values": [ - "Women's rights" - ] - }, - { - "text": "Facilitate the establishment of an appropriate self-regulatory media system", - "values": [ - "Freedom of the press" - ] - }, - { - "text": "Intensify efforts on gender equality and take further steps in promoting women in all spheres of life especially in the political life", - "values": [ - "Women's rights" - ] - }, - { - "text": "Continue with its efforts aiming to promote and protect economic and social rights ", - "values": [ - "ESC rights - general" - ] - }, - { - "text": "Take steps to review domestic legislation and policies to reflect the provision and principles of the Convention on the Rights of Persons with Disabilities and fully implement the updated National Policy of Persons with Disabilities", - "values": [ - "Disabilities", - "International instruments" - ] - }, - { - "text": "Continue its accession to the core international human rights ", - "values": [ - "International instruments" - ] - }, - { - "text": "Lift the restrictions hindering the work of civil society organizations, in particular the reception of funding to effectively carry out their work in defence of human rights", - "values": [ - "Civil society", - "Freedom of association and peaceful assembly" - ] - }, - { - "text": "Continue the implementation of measures and strategies to directly, temporarily and comprehensively alleviate the immediate needs of households in extreme poverty", - "values": [ - "Poverty" - ] - }, - { - "text": "Ensure full compatibility of all provisions of Act 779 with its international obligations and allocate the necessary budget to allow for its proper and prompt implementation ", - "values": [ - "Women's rights" - ] - }, - { - "text": "Further develop its law on migrants, refugees and asylum-seekers in line with the principle of non-refoulement.", - "values": [ - "Asylum-seekers - refugees", - "Migrants" - ] - }, - { - "text": "Continue its measures to further improve the human rights of women ", - "values": [ - "Women's rights" - ] - }, - { - "text": "Effectively address the issue of land grabbing, including through providing redress to farmers and others whose land was illegally or arbitrarily seized", - "values": [ - "Right to land" - ] - }, - { - "text": "Sign and ratify the International Convention for the Protection of All Persons from Enforced Disappearance.", - "values": [ - "Enforced disappearances", - "International instruments" - ] - }, - { - "text": "Improve access to health care for vulnerable groups, including pregnant women, as well as take measures to reduce child mortality ", - "values": [ - "Right to health", - "Rights of the Child", - "Women's rights" - ] - }, - { - "text": "Continue to strengthen efforts to combat trafficking in people, including under the strategic national plan of action to prevent online sexual exploitation of children and the programme for rehabilitating and reintegrating victims of human trafficking", - "values": [ - "Rights of the Child", - "Trafficking" - ] - }, - { - "text": "Take steps towards the effective implementation of the National Policy on Gender Equality and Women's Development and the National Policy on Ending Violence against Women, through coordination, advocacy, awareness-raising and resource allocation", - "values": [ - "Human rights education and training", - "Women's rights" - ] - }, - { - "text": "Step up efforts to combat trafficking in persons, including the implementation of the recommendations of the Special Rapporteur on Trafficking in Persons on the outcome of her visit in 2010, as well as make more severe the criminal liability related to the offense of trafficking in persons", - "values": [ - "Special procedures", - "Trafficking" - ] - }, - { - "text": "Continue efforts to ensure access to education for all Rwandan children", - "values": [ - "Right to education", - "Rights of the Child" - ] - }, - { - "text": "Adopt a law on access to information in order to fully promote the exercise of the right to freedom of expression and freedom of opinion", - "values": [ - "Freedom of opinion and expression" - ] - }, - { - "text": "Further continue enhancing support for new refugees from its neighbours", - "values": [ - "Asylum-seekers - refugees" - ] - }, - { - "text": "Continue its measures aimed at the elimination of human trafficking, people smuggling and other related crimes, including a comprehensive antitrafficking legislation titled Human Trafficking Deterrence and Suppression Act, 2012, and the National Plan of Action 2012-2014 to combat human trafficking ", - "values": [ - "Trafficking" - ] - }, - { - "text": "Establish a formal moratorium on the death penalty, with a view to ratifying the Second Optional Protocol to the International Covenant on Civil and Political Rights", - "values": [ - "Death penalty" - ] - }, - { - "text": "Give all in detention a fair trial", - "values": [ - "Detention" - ] - }, - { - "text": "Do its utmost in ensuring that allegations of self-censorship, threats against journalists and low public trust in the media are investigated in a timely, transparent and effective manner and that those responsible are held to account ", - "values": [ - "Freedom of the press" - ] - }, - { - "text": "Intensify efforts to achieve Millennium Development Goals 4, 5 and 6 in the shortest possible time ", - "values": [ - "HIV - Aids", - "Right to health", - "Rights of the Child", - "Women's rights" - ] - }, - { - "text": "Carry on making efforts to promote the rights of people with disabilities", - "values": [ - "Disabilities" - ] - }, - { - "text": "Ratify both Optional Protocols to the CRC ", - "values": [ - "International instruments", - "Rights of the Child" - ] - }, - { - "text": "Implement fully all recommendations made to Bahrain by the United Nations mandate holders including the immediate end of violence and release of all political prisoners and ending impunity thus bringing perpetrators to justice ", - "values": [ - "Detention", - "Freedom of opinion and expression", - "Impunity", - "Justice", - "Special procedures" - ] - }, - { - "text": "Implement measures under the rule of law chapter of the Reform Agenda as developed in the European Union High Level Accession Dialogue, to ensure that law enforcement agencies and the judiciary can work independently, without being politically influenced", - "values": [ - "Justice" - ] - }, - { - "text": "Withdraw its reservation on pertinent articles of the of the International Convention on the Elimination of All Forms of Racial Discrimination, the International Covenant on Economic, Social and Cultural Rights, the International Covenant on Civil and Political Rights and the Optional Protocol to the Convention on the Rights of the Child on the involvement of children in armed conflict ", - "values": [ - "CP rights - general", - "ESC rights - general", - "International humanitarian law", - "International instruments", - "Racial discrimination", - "Rights of the Child" - ] - }, - { - "text": "Review penal code provisions that discriminate against individuals on the basis of sexual orientation or gender identity, in order to ensure an end to hostility or violence against such groups", - "values": [ - "Sexual Orientation and Gender Identity" - ] - }, - { - "text": "Take adequate measures to ensure an increased participation of women in all areas of society, including in political life ", - "values": [ - "Women's rights" - ] - }, - { - "text": "As long as the Government of the Democratic People's Republic of Korea maintains the death penalty, respect minimum standards in that regard, Economic and Social Council resolution 1984/50 and the standing provisions of ICCPR (articles 6 and 14) as well as of CRC (article 37)", - "values": [ - "Death penalty", - "International instruments" - ] - }, - { - "text": "Ratify the Optional Protocol to the Convention on the Rights of Persons with Disabilities by the end of 2017, consistent with the National Action Plan to Promote Equal Opportunities for Persons with Disabilities", - "values": [ - "Disabilities", - "International instruments" - ] - }, - { - "text": "Strengthen measures to address the serious and ongoing issue of violence against women, while taking on board the recommendations of the Special Rapporteur on violence against women, its causes and consequences", - "values": [ - "Special procedures", - "Women's rights" - ] - }, - { - "text": "Ratify the Kampala amendments to the Rome Statute with a view to contributing to the activation of the jurisdiction of the International Criminal Court over the crime of aggression in 2017", - "values": [ - "International instruments", - "Justice" - ] - }, - { - "text": "Promptly take effective measures to ensure the protection of refugees as well as the respect for their human rights, and provide the UNHCR and other relevant humanitarian actors with access to the sites where large numbers of Rohingya refugees are located ", - "values": [ - "Asylum-seekers - refugees", - "Freedom of religion and belief", - "Minorities" - ] - }, - { - "text": "Ratify the Convention on the Rights of Persons with Disabilities and the Optional Protocol thereto", - "values": [ - "Disabilities", - "International instruments" - ] - }, - { - "text": "Strengthen efforts to implement the recommendations of the National Reconciliation Committee and work towards the repatriation of the internally displaced affected by the war to their cities and villages, and to guarantee the means of stability for them", - "values": [ - "Internally displaced persons", - "Justice" - ] - }, - { - "text": "Accede to the human rights conventions and protocols to which is not yet party in order to facilitate the harmonization of the national human rights legislation across its territories", - "values": [ - "International instruments" - ] - }, - { - "text": "Continue the full implementation of the Angola Strategic Poverty Reduction Programme with a view to mitigating the social and economic impacts of the war", - "values": [ - "Poverty" - ] - }, - { - "text": "Fund and support the National Commission of Inquiry to investigate and prosecute, as appropriate, parties responsible for abuses committed during the conflict", - "values": [ - "Justice" - ] - }, - { - "text": "Establish an effective and inclusive process to follow-up on UPR recommendations", - "values": [ - "UPR process" - ] - }, - { - "text": "Ratify the Second Optional Protocol to ICCPR, aiming at the abolition of the death penalty (ICCPR-OP 2), CAT and OP-CAT, the Optional Protocol to the International Covenant on Economic, Social and Cultural Rights, and the three optional protocols to CRC", - "values": [ - "International instruments" - ] - }, - { - "text": "Bring detention and prison conditions in line with articles 9 and 10 of ICCPR and with the Standard Minimum Rules for the Treatment of Prisoners, making these rules available to the police, the armed forces, prison staff and anyone else responsible for conducting interrogations, as well as to persons deprived of their liberty.", - "values": [ - "CP rights - general", - "Detention", - "International instruments" - ] - }, - { - "text": "Registration of beneficiaries in a single register to identify future needs and provide vouchers appropriate to social programmes", - "values": [ - "Other" - ] - }, - { - "text": "Eradicate child labour and, to that end, seek cooperation with United Nations agencies such as ILO", - "values": [ - "International instruments", - "Labour", - "Rights of the Child" - ] - }, - { - "text": "When human rights violations occur, hold security forces and other government officials accountable and provide appropriate remedies for victims of abuses and discrimination, including against members of vulnerable populations", - "values": [ - "Human rights violations by state agents" - ] - }, - { - "text": "Ratify ICCPR, ICESCR the Optional Protocols to CEDAW and CRPD, and the 1951 Convention relating to the Status of Refugees and its 1967 Protocol ", - "values": [ - "Asylum-seekers - refugees", - "CP rights - general", - "Disabilities", - "ESC rights - general", - "International instruments", - "Women's rights" - ] - }, - { - "text": "Reverse the amendments weakening the protection provided under the Comprehensive Act against Violence towards Women ", - "values": [ - "Women's rights" - ] - }, - { - "text": "Develop and implement training programmes for current and trainee police officers to address stigmatisation and discrimination of lesbian, gay, bisexual, transgender and intersex persons", - "values": [ - "Human rights education and training", - "Sexual Orientation and Gender Identity" - ] - }, - { - "text": "Establish without delay an independent national monitoring mechanism, in line with article 33 of the Convention on the Rights of Persons with Disabilities (CRPD) ", - "values": [ - "Disabilities", - "International instruments" - ] - }, - { - "text": "Seek assistance from the international community and request OHCHR to positively respond to its expressed needs in the area of capacity-building and provision of the needed human, financial and technical resources and to provide the necessary training to officials in the various concerned departments and ministries and to the National Human Rights Institution and to provide assistance in the area of human rights education so as to spread a culture of human rights in Djibouti within the framework of the national strategy of the Government for the promotion and protection of human rights", - "values": [ - "Human rights education and training", - "Technical assistance and cooperation" - ] - }, - { - "text": "Take the necessary measures to prevent cruel and discriminatory treatment against asylum seekers, migrants and refugees, especially if these are minors, and ensure compliance with the principle of non-refoulement of the Convention relating to the Status of Refugees ", - "values": [ - "Asylum-seekers - refugees", - "International instruments", - "Migrants", - "Rights of the Child" - ] - }, - { - "text": "Guarantee the applicability of the principles and doctrines of the International Convention on the Elimination of All Forms of Racial Discrimination in its national legislation of the United Kingdom regions", - "values": [ - "International instruments", - "Racial discrimination" - ] - }, - { - "text": "Ensure all allegations of extra-judicial killings by security personal over the past ten years are fully investigated and the perpetrators brought to justice", - "values": [ - "Extrajudicial executions", - "Human rights violations by state agents" - ] - }, - { - "text": "Become a State party to the Convention relating to the Status of Refugees and its Protocol", - "values": [ - "Asylum-seekers - refugees", - "International instruments" - ] - }, - { - "text": "Ratify as soon as possible CPED and fully incorporate its provisions in the national legislation ", - "values": [ - "Enforced disappearances", - "International instruments" - ] - }, - { - "text": "Enact urgent legislative amendments to the Penal Code to ensure that the rights of women from all religious and ethnic communities are safeguarded", - "values": [ - "Freedom of religion and belief", - "Women's rights" - ] - }, - { - "text": "Continue working for the comprehensive application of its National Policy of Food and Nutritional Security, promoting the generation of selfconsumption food ", - "values": [ - "Right to food" - ] - }, - { - "text": "Accelerate efforts towards the establishment of a Paris Principles-compliant national human rights institution", - "values": [ - "National Human Rights Institution" - ] - }, - { - "text": "Facilitate the access of the International Committee of the Red Cross (ICRC) to its prisons.", - "values": [ - "Detention" - ] - }, - { - "text": "Take immediate steps to ensure that allegations of threats and intimidation against journalists and the media are fully investigated", - "values": [ - "Freedom of the press" - ] - }, - { - "text": "Work without delay for national reconciliation and continue the efforts made in favour of the dialogue between all the components of the Central African Republic society", - "values": [ - "Justice" - ] - }, - { - "text": "Establish a national independent human rights institution, in compliance with the Paris Principles", - "values": [ - "National Human Rights Institution" - ] - }, - { - "text": "Pursue the promotion of the participation of citizens in the administration of local matters", - "values": [ - "Elections", - "General" - ] - }, - { - "text": "Take appropriate measures to exempt public health and education officials of the obligation to report undocumented migrants seeking medical attention or educational services", - "values": [ - "Migrants" - ] - }, - { - "text": "Bring its legal and policy framework in line with its international obligations, including the Declaration on Human Rights Defenders, by repealing all laws and policies that restrict the rights and activities of human rights defenders, including defamation and libel laws", - "values": [ - "Freedom of opinion and expression", - "Human rights defenders", - "International instruments" - ] - }, - { - "text": "Increase and raise awareness throughout the country against of forced labour, paying special attention to groups such as the Bellah, or black Tamacheks.", - "values": [ - "Labour" - ] - }, - { - "text": "Continue awareness-raising campaigns to eradicate FGM.", - "values": [ - "Human rights education and training", - "Rights of the Child", - "Torture and other CID treatment", - "Women's rights" - ] - }, - { - "text": "Take appropriate measures to improve the relations between law enforcement officials and the Roma to prevent the risk of excessive violence by law enforcement officials, notably through the establishment of an independent institution responsible for supervising the acts of the police ", - "values": [ - "Human rights violations by state agents", - "Minorities" - ] - }, - { - "text": "Benefit from its successful experiences in the areas contained in the national report, which focuses on the challenges, and request the necessary technical assistance from the relevant international organizations", - "values": [ - "Technical assistance and cooperation" - ] - }, - { - "text": "Consider increasing its assistance to developing countries, contributing thereby to the realization of the right to development and the achievement of the Millennium Development Goals.", - "values": [ - "Development" - ] - }, - { - "text": "Strengthen the national human rights commission to meet the requirements of the Paris Principles.", - "values": [ - "National Human Rights Institution" - ] - }, - { - "text": "Include a human rights component in the school curriculum", - "values": [ - "Human rights education and training" - ] - }, - { - "text": "Continue efforts to promote human rights education", - "values": [ - "Human rights education and training" - ] - }, - { - "text": "Ratify and implement the Rome Statute", - "values": [ - "International instruments", - "Justice" - ] - }, - { - "text": "Pursue efforts to settle comprehensively land claims of the indigenous population.", - "values": [ - "Indigenous peoples", - "Right to land" - ] - }, - { - "text": "Contribute towards combating impunity internationally, in particular by implementing the mandate bestowed on it by the African Union and to bring the former head of State of Chad, Mr. Hissène Habré to justice ", - "values": [ - "Impunity" - ] - }, - { - "text": "End its practice of arbitrarily detaining Syrians for participating in peaceful demonstrations and release all those held in detention", - "values": [ - "Freedom of association and peaceful assembly" - ] - }, - { - "text": "Restore the independence and impartiality of the judiciary by appointing impartial, qualified judges and magistrates in accordance with its legal and constitutional requirements", - "values": [ - "Justice" - ] - }, - { - "text": "Pursue the efforts to facilitate access for women victims of violence to justice and particularly to fully implement the 2004-2014 prevention of domestic violence National Plan, in order to reach the objective established in the Plan", - "values": [ - "Women's rights" - ] - }, - { - "text": "Adopt a comprehensive national strategy to ensure food and nutrition security for all in line with international standards", - "values": [ - "Right to food" - ] - }, - { - "text": "Ensure the compatibility of national legislation with international human rights standards in order to guarantee freedom of assembly and association", - "values": [ - "Freedom of association and peaceful assembly", - "International instruments" - ] - }, - { - "text": "Continue implementing measures against gender violence and giving care for victims", - "values": [ - "Women's rights" - ] - }, - { - "text": "Within the spirit of the Durban Review Conference and Human Rights Council resolution 9-12 consider the ratification of the International Convention on the Elimination of All Forms of Racial Discrimination.", - "values": [ - "International instruments", - "Racial discrimination" - ] - }, - { - "text": "Strengthen capacity-building in the area of human rights and raise the level of awareness with regard to these rights", - "values": [ - "Human rights education and training" - ] - }, - { - "text": "Take further steps to improve the quality of education and take all measures to ensure that children complete primary and secondary school by addressing the reasons behind the non-completion of schooling ", - "values": [ - "Right to education", - "Rights of the Child" - ] - }, - { - "text": "Ratify the International Convention for the Protection of All Persons from Enforced Disappearance and fully recognize the competence of the Committee on Enforced Disappearances, as provided for in articles 31 and 32 of the Convention", - "values": [ - "Enforced disappearances", - "International instruments", - "Treaty bodies" - ] - }, - { - "text": "Promote efforts to consolidate the rule of law and its mechanisms", - "values": [ - "Justice" - ] - }, - { - "text": "Intensify its efforts in taking all necessary measures to stop violence and discrimination against religious groups ", - "values": [ - "Freedom of religion and belief", - "Racial discrimination" - ] - }, - { - "text": "Protect vulnerable refugee populations by allowing for registration of the refugee population in Nepal and by refraining from forcibly returning Tibetan asylum-seekers to China ", - "values": [ - "Asylum-seekers - refugees" - ] - }, - { - "text": "Intensify technical and vocational training for women and adopt temporary special measures aimed at achieving de facto equal opportunities for men and women in the labour market", - "values": [ - "Women's rights" - ] - }, - { - "text": "Strengthen cooperation with human rights mechanisms in order to continue to harmonize national legislation with the international standards", - "values": [ - "General" - ] - }, - { - "text": "Continue paying closer attention to the gender and diversity programmes at education institutions", - "values": [ - "Right to education", - "Women's rights" - ] - }, - { - "text": "Take immediate steps to end continuing violations of international human rights law ", - "values": [ - "General", - "International instruments" - ] - }, - { - "text": "Ratify the UNESCO Convention on the Protection and Promotion of the Diversity of Cultural Expressions ", - "values": [ - "International instruments" - ] - }, - { - "text": "Conclude rapidly the process of ratification of the Optional Protocol to the Convention against Torture, as well as the process of harmonization of its national legislation with the provisions of the Rome Statute ", - "values": [ - "Detention", - "International instruments", - "Justice", - "Torture and other CID treatment" - ] - }, - { - "text": "Adopt legislation guaranteeing equality between men and women, particularly in the area of family and inheritance law.", - "values": [ - "Women's rights" - ] - }, - { - "text": "Take active measures, including legislative measures, to ensure equal wages for women and men", - "values": [ - "Women's rights" - ] - }, - { - "text": "Adopt a comprehensive sexual and reproductive health policy for adolescents and ensure that sexual and reproductive health education is part of the mandatory school curriculum and targeted at adolescent girls and boys, with special attention on preventing early pregnancy and sexually transmitted infections", - "values": [ - "Right to education", - "Right to health", - "Rights of the Child" - ] - }, - { - "text": "Pursue its efforts in incorporating sustainable environmental development into its policies, considering the impact of natural disaster and degradation of natural resources on human rights despite all existing challenges", - "values": [ - "Environment" - ] - }, - { - "text": "Consider acceding to the Optional Protocol to the Convention against Torture and other Cruel, Inhuman or Degrading Treatment or Punishment", - "values": [ - "International instruments", - "Torture and other CID treatment", - "Treaty bodies" - ] - }, - { - "text": "Ratify the Optional Protocol to CEDAW as well as the Optional Protocol to the African Charter on the Rights of Women ", - "values": [ - "International instruments", - "Women's rights" - ] - }, - { - "text": "Further increase the juvenile courts in its territory to make justice more accessible", - "values": [ - "Justice", - "Rights of the Child" - ] - }, - { - "text": "Continue efforts to ensure effective respect for the right to property by facilitating registration of property deeds", - "values": [ - "Right to housing" - ] - }, - { - "text": "Accede, as soon as possible, to the human rights international instruments to which it is not yet a party", - "values": [ - "International instruments" - ] - }, - { - "text": "That the model legal framework expressed by the Leahy Laws be applied with respect to all countries receiving US's security assistance, and that the human rights records of all units receiving such assistance be documented, evaluated and followed up upon in cases of abuse", - "values": [ - "Technical assistance and cooperation" - ] - }, - { - "text": "Continue implementation of social programs to carry out information and education activities with regard to people with disabilities ", - "values": [ - "Disabilities" - ] - }, - { - "text": "Ensure that those evicted are urgently provided with adequate housing ", - "values": [ - "Right to housing" - ] - }, - { - "text": "Strengthen laws and policies to achieve an effective implementation of the Convention against Torture and Other Cruel, Inhuman or Degrading Treatment or Punishment, including training programmes on human rights for those responsible for law enforcement", - "values": [ - "Human rights education and training", - "International instruments", - "Torture and other CID treatment" - ] - }, - { - "text": "Engage in a dialogue among all Venezuelans, including the opposition, to resolve political divisions, the economic crisis and the humanitarian situation", - "values": [ - "Other" - ] - }, - { - "text": "Prohibit by law, and include in equality programmes and policies, discrimination on the grounds of sexual orientation or gender identity.", - "values": [ - "Sexual Orientation and Gender Identity" - ] - }, - { - "text": "Put an end to the practice of corporal punishment", - "values": [ - "Torture and other CID treatment" - ] - }, - { - "text": "Include in the national penal legislation a clear definition of torture and ensure its strict criminalization", - "values": [ - "Torture and other CID treatment" - ] - }, - { - "text": "Accelerate the steps towards ratification of the Council of Europe Convention on Preventing and Combating Violence against Women and Domestic Violence (the Istanbul Convention)", - "values": [ - "International instruments", - "Rights of the Child", - "Women's rights" - ] - }, - { - "text": "Continue its efforts to establish a national human rights institution in line with the UN Paris Principles", - "values": [ - "National Human Rights Institution" - ] - }, - { - "text": "Adopt and implement a national plan of action for children", - "values": [ - "Rights of the Child" - ] - }, - { - "text": "Instil a human rights-based approach regarding the protection of migrants and asylum-seekers, including the cessation of pushbacks to the sea, while refraining from deportation and formally prohibiting detention of children", - "values": [ - "Asylum-seekers - refugees", - "Detention", - "Migrants", - "Rights of the Child" - ] - }, - { - "text": "Take additional steps to improve freedom of expression, including dropping remaining charges against Mr. Usmonov, and to resolve without harm to them the cases of journalists, such as Makhmadyusuf Ismoilov ", - "values": [ - "Freedom of opinion and expression", - "Freedom of the press" - ] - }, - { - "text": "Continue to push forward the reform on re-education through labour according to China's national conditions and timetable", - "values": [ - "Detention" - ] - }, - { - "text": "Step up efforts to effectively combat violence against women and children", - "values": [ - "Rights of the Child", - "Women's rights" - ] - }, - { - "text": "Improve oversight of working conditions to prevent labour exploitation, especially in the domestic and agricultural sectors where foreign workers are particularly vulnerable ", - "values": [ - "Labour", - "Migrants" - ] - }, - { - "text": "Intensify efforts to facilitate the participation of NGOs, academic institutions and the media in safeguarding human rights", - "values": [ - "Civil society", - "Freedom of the press" - ] - }, - { - "text": "Accede to and ratify the Rome Statute of the International Criminal Court and the Agreement on the Privileges and Immunities of the International Criminal Court ", - "values": [ - "International instruments", - "Justice" - ] - }, - { - "text": "Smooth acceptance of visit requests by special procedures mandate holders and swift accession to core international human rights instruments such as the Convention against Torture and Other Cruel, Inhuman or Degrading Treatment or Punishment, the Convention on the Rights of Persons with Disabilities and the International Convention for the Protection of All Persons from Enforced Disappearance ", - "values": [ - "Disabilities", - "Enforced disappearances", - "International instruments", - "Special procedures", - "Torture and other CID treatment" - ] - }, - { - "text": "Ratify the Convention [CRPD]", - "values": [ - "Disabilities", - "International instruments" - ] - }, - { - "text": "Establish an independent national human rights institution to coordinate, develop capacities and strengthen respect for human rights in the country, in line with the Paris Principles", - "values": [ - "National Human Rights Institution" - ] - }, - { - "text": "Ensure that the system for receiving and registering immigrants and asylum seekers is of a high standard, both in regards to capacity and expediency. In particular, that extra attention is given to minors", - "values": [ - "Asylum-seekers - refugees", - "Migrants", - "Rights of the Child" - ] - }, - { - "text": "Take further measures to improve the conditions of detention and to investigate deaths in detention and bring those responsible to justice ", - "values": [ - "Detention" - ] - }, - { - "text": "Continue its efforts to achieve development, the eradication of poverty and the elimination of racial discrimination", - "values": [ - "Development", - "Poverty", - "Racial discrimination" - ] - }, - { - "text": "Create effective legal mechanisms that would make it possible to reduce the time that people spend in temporary camps for refugees", - "values": [ - "Asylum-seekers - refugees" - ] - }, - { - "text": "Strengthen its ongoing efforts to reform the justice system according to international standards ", - "values": [ - "Justice" - ] - }, - { - "text": "Impose a moratorium on executions and abolish the death penalty in all states of the United States", - "values": [ - "Death penalty" - ] - }, - { - "text": "Promote literacy, especially in rural areas, and focus these efforts on women and girls", - "values": [ - "Right to education", - "Rights of the Child", - "Women's rights" - ] - }, - { - "text": "Take further steps to improve access to quality education for internally displaced children, in particular children with disabilities, as a follow-up to the recommendations contained in paragraphs 97.42 and 97.126 of the outcome report (A/HRC/22/7) from the second cycle", - "values": [ - "Internally displaced persons", - "Right to education", - "Rights of the Child", - "UPR process" - ] - }, - { - "text": "Decriminalize adultery and non-marital consensual sex and to ensure punishment for all perpetrators of this violence and calls to it including members and leaders of jirgas", - "values": [ - "Other" - ] - }, - { - "text": "Adopt an action plan for the employment of women and young people", - "values": [ - "Women's rights" - ] - }, - { - "text": "The government is committed to addressing the issue of domestic violence.", - "values": [ - "Rights of the Child", - "Women's rights" - ] - }, - { - "text": "Adopt a comprehensive care policy to protect children living on the streets", - "values": [ - "Rights of the Child" - ] - }, - { - "text": "Promote improvement in the juvenile justice system ", - "values": [ - "Justice", - "Rights of the Child" - ] - }, - { - "text": "Fully guarantee freedom of expression, particularly by ensuring that journalists can carry out their activities unhindered", - "values": [ - "Freedom of opinion and expression", - "Freedom of the press" - ] - }, - { - "text": "Reconsider the possibility of imposing a moratorium on the death penalty ", - "values": [ - "Death penalty" - ] - }, - { - "text": "Bangladesh is always committed to cooperate with international human rights mechanisms. ", - "values": [ - "General" - ] - }, - { - "text": "Adjust legislation and practices affecting women and children to international law obligations assumed by Sudan ", - "values": [ - "Rights of the Child", - "Women's rights" - ] - }, - { - "text": "Consider removing all reservations under the Convention on the Elimination of All Forms of Discrimination against Women and take all necessary measures to ensure full implementation of the provisions of the Convention on the Elimination of All Forms of Discrimination against Women", - "values": [ - "International instruments", - "Women's rights" - ] - }, - { - "text": "Consider withdrawing the reservations to CEDAW articles 2, 16 and 29 and ratify OP-CEDAW", - "values": [ - "International instruments", - "Women's rights" - ] - }, - { - "text": "Proceed with the ratification of the Optional Protocol to the Convention of the Rights of Persons with the Disabilities (CRPD) ", - "values": [ - "Disabilities", - "International instruments" - ] - }, - { - "text": "The Government also reiterates its unwavering commitment to provide the necessary space and freedom for the independent institutions in the Maldives to function freely and responsibly", - "values": [ - "General" - ] - }, - { - "text": "Adopt measures to combat domestic violence", - "values": [ - "Rights of the Child", - "Women's rights" - ] - }, - { - "text": "Integrate the various treaties to which Guinea is party into its domestic law, and become a party to other international human rights instruments for the wellbeing of the Guinean people ", - "values": [ - "International instruments" - ] - }, - { - "text": "Introduce the necessary legal and policy measures to abolish all forms of corporal punishment", - "values": [ - "Torture and other CID treatment" - ] - }, - { - "text": "Noting that sexual crime is categorized as an offence that is subjected to investigation only upon complaint from the victim, it was recommended that this legal provisions be reviewed, along with other relevant provisions, in order to enhance protection of victims.", - "values": [ - "Women's rights" - ] - }, - { - "text": "Ensure that the draft law on domestic workers, which it is hoped will be adopted very soon, is in line with ILO Convention No. 189 ", - "values": [ - "International instruments", - "Labour", - "Migrants" - ] - }, - { - "text": "All detainees be given the reasons for their detention respecting their fundamental rights during detention.", - "values": [ - "Detention" - ] - }, - { - "text": "Promote greater tolerance and understanding among the majority population about the rights of the Roma community and migrants ", - "values": [ - "Migrants", - "Minorities" - ] - }, - { - "text": "Work towards promoting the right to water for its citizens, as water is a main component of the rights to life, health and food basic right and empower inhabitants to enjoy this right and cooperate with relevant international stakeholders ", - "values": [ - "Other", - "Right to food", - "Right to health", - "Right to water and sanitation" - ] - }, - { - "text": "Continue to take measures to prevent torture and other forms of ill-treatment, including steps towards the ratification of the Optional Protocol to the Convention against Torture", - "values": [ - "International instruments", - "Torture and other CID treatment", - "Treaty bodies" - ] - }, - { - "text": "Review the legislation and policies to warrant the full observance of international juvenile justice standards and cooperate with UNICEF on this matter", - "values": [ - "Justice", - "Rights of the Child", - "Technical assistance and cooperation" - ] - }, - { - "text": "Strengthen protection measures against child labour", - "values": [ - "Labour", - "Rights of the Child" - ] - }, - { - "text": "Work towards implementing resolution 16/18 of the Human Rights Council concerning combating intolerance, negative stereotyping and stigmatization of, and discrimination, incitement to violence and violence against, persons based on religion or belief", - "values": [ - "Freedom of religion and belief", - "International instruments" - ] - }, - { - "text": "Take all appropriate action in order to combat all forms of discrimination and violence against women and girls", - "values": [ - "Rights of the Child", - "Women's rights" - ] - }, - { - "text": "Release complete information on the execution of Mr. Andrei Zhuk and Mr. Vasily Yuzepchuk in Minsk in March of this year ", - "values": [ - "Justice" - ] - }, - { - "text": "Enact national legislation to protect the rights of children.", - "values": [ - "Rights of the Child" - ] - }, - { - "text": "Continue accelerating the improvement of the judicial, police and prison systems in line with international human rights standards", - "values": [ - "Detention", - "International instruments", - "Justice" - ] - }, - { - "text": "Continue to implement public policies to combat poverty", - "values": [ - "Poverty" - ] - }, - { - "text": "Continue its cooperation with neighbouring countries regarding rescue operations at sea particularly for irregular migrants entering the country", - "values": [ - "Migrants" - ] - }, - { - "text": "Envisage abolishing the law of July 2008 reintroducing the death penalty, so as to respect its international obligations as per the Second Optional Protocol", - "values": [ - "Death penalty", - "International instruments" - ] - }, - { - "text": "Refrain from censoring social and conventional media and ensure that freedom of expression is safeguarded in all forms, including the arts", - "values": [ - "Freedom of opinion and expression", - "Freedom of the press" - ] - }, - { - "text": "Undertake proactive measures aimed at preventing the instrumentalization of the freedom of expression to justify campaigns of incitement to racial hatred and violence in the Netherlands.", - "values": [ - "Freedom of opinion and expression", - "Racial discrimination" - ] - }, - { - "text": "Demolish the shameful wall of separation which violates the human rights of the Palestinians", - "values": [ - "Freedom of movement" - ] - }, - { - "text": "Ensure the right to equality before courts and tribunals, and to a fair trial, as provided for by the Universal Declaration of Human Rights and ICCPR, and as outlined by the United Nations Basic Principles on the Independence of the Judiciary and assure to all citizens the right to be heard by an independent tribunal", - "values": [ - "International instruments", - "Justice" - ] - }, - { - "text": "Fully respect the choices of parents concerning the education of their children in accordance with arts. 14 and 18 of the Convention on the Rights of the Child ", - "values": [ - "International instruments", - "Rights of the Child" - ] - }, - { - "text": "Take concrete and effective measures to ensure that food, medicine and other humanitarian relief distribution at Government depots takes place without reference to partisan political considerations ", - "values": [ - "Other" - ] - }, - { - "text": "Work on long-term preventive programmes targeting the trafficking of persons, especially women and children", - "values": [ - "Rights of the Child", - "Trafficking", - "Women's rights" - ] - }, - { - "text": "Consider the ratification of the Convention on the Rights of Persons with Disabilities and the realization of human rights goals approved in resolution 9-12 of the Human Rights Council ", - "values": [ - "Disabilities", - "International instruments" - ] - }, - { - "text": "Continue ongoing reforms in the field of justice and criminal procedure with a view to an in-depth review of the system of substitute detention (daiyô kangoku)", - "values": [ - "Detention", - "Justice" - ] - }, - { - "text": "Colombia has voluntarily committed itself to reducing the proportion of people living in poverty 43 to 28.5 per cent and the proportion of those living in extreme poverty to 8.8 per cent by 2015.", - "values": [ - "Development", - "Poverty" - ] - }, - { - "text": "Implement its national housing and national infrastructure plan", - "values": [ - "Right to housing" - ] - }, - { - "text": "Guarantee the independence of the judicial system, ensuring transparency and a democratic character in the process in the selection of judges ", - "values": [ - "Justice" - ] - }, - { - "text": "Formally abolish the death penalty, and ratify the Second Optional Protocol to the International Covenant on Civil and Political Rights, aiming at the abolition of the death penalty", - "values": [ - "Death penalty", - "International instruments" - ] - }, - { - "text": "Continue to place priority on combating discrimination against ethnic minorities, in particular Roma, including by allocating sufficient resources to programmes to combat prejudice, and to establish monitoring mechanisms", - "values": [ - "Minorities", - "Racial discrimination" - ] - }, - { - "text": "Establish an independent national human rights commission in compliance with the Paris Principles and finalize the submission of the required bill to the Parliament for adoption.", - "values": [ - "National Human Rights Institution" - ] - }, - { - "text": "Consider adopting comprehensive legislation on national minorities that would address, inter alia, the legal criteria for recognition as a national minority, the institutional framework for addressing minority issues and structuring the dialogue with representatives of national minorities ", - "values": [ - "Minorities" - ] - }, - { - "text": "Take immediate measures to effectively implement the Juvenile Justice and Welfare Act of 2006 ", - "values": [ - "Justice", - "Rights of the Child" - ] - }, - { - "text": "Consider incorporating the right to health and the right to housing ", - "values": [ - "Right to health", - "Right to housing" - ] - }, - { - "text": "Intensify its efforts to ensure the return of displaced persons to their places of origin and compensated them whenever return is not possible", - "values": [ - "Internally displaced persons" - ] - }, - { - "text": "Continue improving the living standards of poor persons and those living in remote areas to which access is difficult ", - "values": [ - "Poverty" - ] - }, - { - "text": "Take all the necessary measures to ensure that the national human rights institution is in full compliance with the Paris Principles", - "values": [ - "National Human Rights Institution" - ] - }, - { - "text": "Strengthen the national policy against sexual violence, in cooperation with the UN and civil society and pursue its efforts to promote women's rights in particular to fight against all forms of genital mutilation and forced and early marriages", - "values": [ - "Civil society", - "Rights of the Child", - "Torture and other CID treatment", - "Women's rights" - ] - }, - { - "text": "Enhance the rights of expression and opinion", - "values": [ - "Freedom of opinion and expression" - ] - }, - { - "text": "Continue to support policies for the promotion of the full and equal participation of women in decision-making in all spheres of public, political and professional life ", - "values": [ - "Women's rights" - ] - }, - { - "text": "Continue to build its technological independence through the adoption and consolidation of measures to optimize the access of all Venezuelans to technologies of communication and information ", - "values": [ - "Other" - ] - }, - { - "text": "Adopt the legislation facilitating the work of NGOs in a way that will promote human rights and benefit the overall political process in Egypt", - "values": [ - "Civil society", - "Freedom of association and peaceful assembly" - ] - }, - { - "text": "Develop a national strategy to prevent and address all forms of violence against children", - "values": [ - "Rights of the Child" - ] - }, - { - "text": "Take all necessary measures to formally abolish the death penalty, including ratification of the Second Optional Protocol to the International Covenant on Civil and Political Rights, aiming at the abolition of the death penalty", - "values": [ - "Death penalty", - "International instruments" - ] - }, - { - "text": "Introduce policies in the health system to address the needs of people in situation of vulnerability ", - "values": [ - "Right to health" - ] - }, - { - "text": "Continue promoting initiatives which contribute to foster inter-cultural understanding, which is a central element to prevent all forms of discrimination, xenophobia and intolerance ", - "values": [ - "Racial discrimination" - ] - }, - { - "text": "Pursue initiatives to strengthen economic, social and cultural rights in order to promote sustainable development", - "values": [ - "Development", - "ESC rights - general" - ] - }, - { - "text": "Take appropriate measures and implement legislation effectively to eliminate racial discrimination", - "values": [ - "Racial discrimination" - ] - }, - { - "text": "Allow visits by international humanitarian organizations to all detention places ", - "values": [ - "Detention", - "International humanitarian law" - ] - }, - { - "text": "Develop and implement plans and strategies to raise awareness about human rights, including at the local and community levels, and provide human rights training and education for Government officials in particular law enforcement officials ", - "values": [ - "Human rights education and training" - ] - }, - { - "text": "Ratify the International Covenant on Civil and Political Rights, the International Covenant on Economic, Social and Cultural Rights and the Optional Protocol to the Convention against Torture ", - "values": [ - "CP rights - general", - "ESC rights - general", - "International instruments", - "Torture and other CID treatment" - ] - }, - { - "text": "Continue efforts to provide better protection to human rights defenders and strengthen civil society as an essential partner in boosting the human rights system", - "values": [ - "Human rights defenders" - ] - }, - { - "text": "Include same-sex couples in the Domestic Violence Act and make sure everyone is protected against domestic violence", - "values": [ - "Rights of the Child", - "Sexual Orientation and Gender Identity", - "Women's rights" - ] - }, - { - "text": "With the return to constitutional normality, following the early presidential and parliamentary elections in 2014, the current Government strengthened its political will and its commitment to continuing its efforts to implement the universal periodic review and to mobilizing resources to promote sustainable development policies aimed at poverty eradication, reform of the justice system, consolidation of the rule of law and the promotion and protection of human rights.", - "values": [ - "Development", - "Elections", - "Justice", - "Poverty", - "UPR process" - ] - }, - { - "text": "Develop a shelter system for victims of trafficking ", - "values": [ - "Trafficking" - ] - }, - { - "text": "Improve conditions of detention in prisons ", - "values": [ - "Detention" - ] - }, - { - "text": "Protect the rights of refugees and migrants, in particular the rights of women and children who are refugees and migrants", - "values": [ - "Asylum-seekers - refugees", - "Migrants", - "Rights of the Child", - "Women's rights" - ] - }, - { - "text": "Respect the Convention on the Rights of the Child, to which Yemen is party, with regard to the death penalty ", - "values": [ - "Death penalty", - "International instruments", - "Rights of the Child" - ] - }, - { - "text": "Ensure due process of law for detainees, because a fair and independent judicial system is a fundamental pillar of a future democratic and stable Egypt", - "values": [ - "Detention", - "Justice" - ] - }, - { - "text": "Increase efforts to investigate and prosecute the individuals known to be responsible for the serious human rights violations that took place in the north of the Central African Republic between 2005 and mid-2007. ensure that victims are guaranteed remedy, including the right to compensation and reparation. and continue efforts to improve the protection of the civilian population.", - "values": [ - "Justice" - ] - }, - { - "text": "Review legislation on the rights of migrants and asylum seekers in accordance with Hungary's obligations under international and European Law and to better apply existing internal rules, namely those related to the handling of unaccompanied children", - "values": [ - "Asylum-seekers - refugees", - "Migrants", - "Rights of the Child" - ] - }, - { - "text": "Rehabilitation of the National Human Rights Commission by 2010 at the latest", - "values": [ - "National Human Rights Institution" - ] - }, - { - "text": "Ensure a transparent and enabling environment for non-governmental organisations that allows them to benefit from available support and contribute to the development of a vibrant civil society", - "values": [ - "Civil society" - ] - }, - { - "text": "Step up cooperation with the special procedures and eventually consider extending a standing invitation to all special procedures of the Human Rights Council", - "values": [ - "Special procedures" - ] - }, - { - "text": "Remedy the shortcomings in the media law as expressed by the Venice Commission", - "values": [ - "Freedom of opinion and expression" - ] - }, - { - "text": "Increase the access of children, women and persons with disabilities to education ", - "values": [ - "Disabilities", - "Right to education", - "Rights of the Child", - "Women's rights" - ] - }, - { - "text": "Adopt concrete measures aimed at reducing the vulnerability of children to child labour and sexual exploitation, so as to ensure that Guatemala is a country free from child labour and its worst forms", - "values": [ - "Labour", - "Rights of the Child" - ] - }, - { - "text": "End the detention of all children, whether accompanied, unaccompanied or separated, and implement, without delay, alternatives to detention in law and in practice", - "values": [ - "Detention", - "Rights of the Child" - ] - }, - { - "text": "Provide primary and secondary education for all children, irrespective of their legal status ", - "values": [ - "Right to education", - "Rights of the Child" - ] - }, - { - "text": "Take immediate action to ensure respect for the rights of the indigenous people living in the areas of interest to companies active in the diamond business", - "values": [ - "Business and human rights", - "Indigenous peoples" - ] - }, - { - "text": "Ensure that all victims of trafficking regardless of their migration status have access to and benefit from programmes that provide support, rehabilitation and assistance", - "values": [ - "Migrants", - "Trafficking" - ] - }, - { - "text": "Repeal criminal defamation laws in order to combat reprisals against the journalists and human rights defenders ", - "values": [ - "Freedom of the press", - "Human rights defenders" - ] - }, - { - "text": "Continue stepping up efforts in the area of fighting trafficking as well as consider the possibility of inviting the Special Rapporteur on trafficking in persons, especially in women and children, to visit the country ", - "values": [ - "Special procedures", - "Trafficking" - ] - }, - { - "text": "Ratify the optional protocols to CRC, as requested by CRC, ICRMW and CAT ", - "values": [ - "International instruments", - "Rights of the Child", - "Treaty bodies" - ] - }, - { - "text": "Consider the ratification of the Optional Protocol to the Convention on the Rights of the Child on a communications procedure", - "values": [ - "International instruments", - "Rights of the Child" - ] - }, - { - "text": "Accede to CAT and the Optional Protocol thereto (OP-CAT)", - "values": [ - "Detention", - "International instruments", - "Torture and other CID treatment" - ] - }, - { - "text": "Persons, who are administratively detained without being formally charged, be the object of an equitable trial or be immediately released", - "values": [ - "Detention" - ] - }, - { - "text": "Continue to protect human rights and especially the rights of children", - "values": [ - "Rights of the Child" - ] - }, - { - "text": "Consider ratifying the Optional Protocol to the International Covenant on Economic, Social and Cultural Rights, the Convention on the Protection of All Persons from Enforced Disappearance, the Convention on the Rights of Persons with Disabilities, as well as the ILO Conventions 169 and 189", - "values": [ - "Disabilities", - "ESC rights - general", - "Enforced disappearances", - "Indigenous peoples", - "International instruments", - "Labour" - ] - }, - { - "text": "Adopt legislation that defines the necessity and proportionality of the use of force by police during acts of protest of the civil population", - "values": [ - "Freedom of association and peaceful assembly", - "Human rights violations by state agents" - ] - }, - { - "text": "Take measures to provide for the safety and protection of the Palestinian civilian population and adhere to international standards on juvenile detention", - "values": [ - "Detention", - "Rights of the Child" - ] - }, - { - "text": "Implement appropriate measures to fully cooperate with the International Criminal Court ", - "values": [ - "International instruments", - "Justice" - ] - }, - { - "text": "Fully cooperate with regional and international human rights bodies ", - "values": [ - "Technical assistance and cooperation" - ] - }, - { - "text": "Ratify the Rome Statute as well as the Kampala Amendments to the Rome Statute", - "values": [ - "International instruments", - "Justice" - ] - }, - { - "text": "Accelerate the completion of the study on the possibility of establishing an NHRI in accordance with Paris Principles", - "values": [ - "National Human Rights Institution" - ] - }, - { - "text": "Amend the Penal Code, particularly Sections 365 and 365A, to decriminalize consensual same-sex conduct and displays of affection", - "values": [ - "Sexual Orientation and Gender Identity" - ] - }, - { - "text": "Revise current labour laws", - "values": [ - "Labour" - ] - }, - { - "text": "Ratify the International Convention on the Protection of the Rights of all Migrant Workers and Members of their Families ", - "values": [ - "International instruments", - "Labour", - "Migrants" - ] - }, - { - "text": "Continue to strengthen the laudable initiatives to ensure a fully integrated school system for migrants, ethnic minorities, women, girls and boys, notably from the Roma communities", - "values": [ - "Migrants", - "Minorities", - "Right to education", - "Rights of the Child", - "Women's rights" - ] - }, - { - "text": "Fully guarantee freedom of expression, ensuring that regulation in respect of the mass media is carried out in accordance with international human rights instruments", - "values": [ - "Freedom of opinion and expression", - "Freedom of the press", - "International instruments" - ] - }, - { - "text": "Enact specific legislation on marital rape", - "values": [ - "Women's rights" - ] - }, - { - "text": "Accede to the Second Optional Protocol to the ICCPR and abolish the death penalty", - "values": [ - "Death penalty", - "International instruments" - ] - }, - { - "text": "Pursue its thorough efforts to enshrine democratic norms and human rights", - "values": [ - "General" - ] - }, - { - "text": "Study the possibility of ratifying CAT, OP-CEDAW and the International Convention for the Protection of All Persons from Enforced Disappearance (CED) ", - "values": [ - "Enforced disappearances", - "International instruments", - "Torture and other CID treatment", - "Women's rights" - ] - }, - { - "text": "Ensure equality of rights between men and women to acquire, transfer, change or conserve nationality and transmit it to children born abroad, as recommended in the Convention on the Elimination of All Forms of Discrimination against Women", - "values": [ - "International instruments", - "Rights of the Child", - "Statelessness and the right to nationality", - "Women's rights" - ] - }, - { - "text": "Protect freedom of expression both offline and online by bringing legislation such as Decrees 2 and 72 into compliance with international human rights law", - "values": [ - "Freedom of opinion and expression", - "International instruments" - ] - }, - { - "text": "Advance in reforming the Criminal Code to decriminalize abortion", - "values": [ - "Women's rights" - ] - }, - { - "text": "Consider ratifying the Convention on the Rights of persons with disabilities, to which Kazakhstan is already a signatory, although the ongoing work being done in the country to protect the rights of persons with disabilities are noted", - "values": [ - "Disabilities", - "International instruments" - ] - }, - { - "text": "Guarantee access to medical services, including safe and legal abortion, for victims of sexual violence", - "values": [ - "Right to health", - "Women's rights" - ] - }, - { - "text": "Continue to implement existing legislation related to gender equality in order to ensure that men and women are treated equally and stereotypes regarding women are eradicated", - "values": [ - "Women's rights" - ] - }, - { - "text": "Continue the procedures and measures taken to enable women to be equal partners and participants in development ", - "values": [ - "Women's rights" - ] - }, - { - "text": "Consider amending article 26 of the Penal Code to criminalize torture in line with article 52 of the new Constitution adopted in 2014", - "values": [ - "Torture and other CID treatment" - ] - }, - { - "text": "Accelerate steps towards framing a new Constitution", - "values": [ - "Other" - ] - }, - { - "text": "Promote and support the participation of women in decision-making at all levels ", - "values": [ - "Women's rights" - ] - }, - { - "text": "Ratify CPED, the Optional Protocol to the International Covenant on Economic, Social and Cultural Rights (ICESCR) and the Rome Statute of the International Criminal Court (ICC) ", - "values": [ - "ESC rights - general", - "Enforced disappearances", - "International instruments", - "Justice" - ] - }, - { - "text": "Continue to improve access to education in rural areas ", - "values": [ - "Right to education" - ] - }, - { - "text": "Establish a new unit in the Ministry for Citizen Protection, and continue the reform aimed at training police officers in order to deal with asylum-seekers and migrants in accordance with international criteria for human rights ", - "values": [ - "Asylum-seekers - refugees", - "Migrants" - ] - }, - { - "text": "Submit its overdue reports and follow up responses to United Nations treaty bodies as soon as possible ", - "values": [ - "Treaty bodies" - ] - }, - { - "text": "Ensure adequate protection for all citizens, including members of the LGBT community, by, inter alia, allowing them to assemble to publicly promote their human rights and identifying and prosecuting those who commit violence against those who participate in peaceful assemblies", - "values": [ - "Freedom of association and peaceful assembly", - "Sexual Orientation and Gender Identity" - ] - }, - { - "text": "Provide all eligible citizens with the benefits to which they are entitled, including pensions and social payments, regardless of their status as displaced persons or their place of residence in their own country", - "values": [ - "ESC rights - general", - "Internally displaced persons" - ] - }, - { - "text": "Take concrete measures to prevent and punish violence against women in all of Mexico's 31 states, especially those with high reporting of killings and attacks of women and girls", - "values": [ - "Rights of the Child", - "Women's rights" - ] - }, - { - "text": "Abolish the measures relating to the death penalty in the national legislation and additionally accede to the Second Optional Protocol to ICCPR ", - "values": [ - "Death penalty", - "International instruments" - ] - }, - { - "text": "Continue to implement the policies and programmes aimed at stimulating pro-poor economic growth while mitigating negative impacts on poor households and communities", - "values": [ - "Poverty" - ] - }, - { - "text": "Ensure the protection of lesbian, gay, bisexual, transgender, queer and intersex persons from all forms of stigmatization, discrimination and violence and abstain from random testing", - "values": [ - "Sexual Orientation and Gender Identity" - ] - }, - { - "text": "Continue with endeavours to accelerate the ongoing process of creating additional mechanism to protect human rights and to further the efforts in the field of combating human trafficking", - "values": [ - "Trafficking" - ] - }, - { - "text": "Provide the national human rights institution with a framework for independent functioning in accordance with the Paris Principles", - "values": [ - "National Human Rights Institution" - ] - }, - { - "text": "Abolish definitively the death penalty.", - "values": [ - "Death penalty" - ] - }, - { - "text": "Implement reforms to improve the situation of overcrowding in prisons, with special attention being paid to the strengthening of the specialized system of juvenile justice and the recommendations of the Committee on the Rights of the Child.", - "values": [ - "Detention", - "Justice", - "Rights of the Child", - "Treaty bodies" - ] - }, - { - "text": "Take all necessary measures to ensure the application of all laws and the training of officials in the rights of the child", - "values": [ - "Human rights education and training", - "Rights of the Child" - ] - }, - { - "text": "Continue working in order to guarantee the human rights of its citizens and the strengthening of the democratic model that is adopted by its people ", - "values": [ - "General" - ] - }, - { - "text": "The delegation reiterated Georgia's commitment to cooperate with the Council and pledged to submit a midterm report on the follow-up to the accepted recommendations.\n", - "values": [ - "Right to education", - "UPR process" - ] - }, - { - "text": "Ensure increased access to health services and education for all, particularly for rural women", - "values": [ - "Right to education", - "Right to health", - "Women's rights" - ] - }, - { - "text": "Provide the legal and operational framework for an independent judiciary, inter alia, by establishing fair procedures and criteria regarding the appointment and dismissal of judges ", - "values": [ - "Justice" - ] - }, - { - "text": "Ratify the Optional Protocol to the Convention against Torture and take policy measures to prevent torture and ill treatment ", - "values": [ - "Detention", - "International instruments", - "Torture and other CID treatment" - ] - }, - { - "text": "Decriminalize defamation and place it within a civil code in accordance with international standards", - "values": [ - "Freedom of opinion and expression" - ] - }, - { - "text": "Implement the recommendations of the Special Rapporteur on freedom of religion or belief to Israel to issue non-selective rules for the protection and preservation of religious sites and to designate holy sites on a non discriminatory basis", - "values": [ - "Freedom of religion and belief", - "Special procedures" - ] - }, - { - "text": "Further pursue its commitment to guaranteeing full respect for the rights of the child, in particular, children with disabilities, and guarantee that all violations of these rights, in particular allegations of abuse and ill-treatment, are brought to justice", - "values": [ - "Disabilities", - "Rights of the Child" - ] - }, - { - "text": "Establish a NHRI under Paris Principles to undertake and oversee the further advancement of the human rights agenda", - "values": [ - "National Human Rights Institution" - ] - }, - { - "text": "Ratify the Convention on the Rights of People with Disabilities and its Optional Protocol ", - "values": [ - "Disabilities", - "International instruments" - ] - }, - { - "text": "Continue to strengthen the social protection programmes that are currently being implemented in order to provide the greatest possible welfare and standard of living to its people", - "values": [ - "ESC rights - general" - ] - }, - { - "text": "Promote specific legislation introducing acts of domestic violence as specific crimes", - "values": [ - "Rights of the Child", - "Women's rights" - ] - }, - { - "text": "Take all appropriate measures to end discrimination and intimidation against persons belonging to ethnic and religious minorities", - "values": [ - "Freedom of religion and belief", - "Migrants", - "Racial discrimination" - ] - }, - { - "text": "Ratify the Convention on the Rights of Persons with Disabilities.", - "values": [ - "Disabilities", - "International instruments" - ] - }, - { - "text": "Ensure that security forces respond proportionally and with the utmost restraint to non-peaceful protests ", - "values": [ - "Freedom of association and peaceful assembly" - ] - }, - { - "text": "Complete the ongoing review of the criminal code with the aim of promoting and protecting women's rights, include provisions dealing with violence against women, particularly domestic violence, and ratify CEDAW ", - "values": [ - "International instruments", - "Women's rights" - ] - }, - { - "text": "Ensure that no children are held in detention", - "values": [ - "Detention", - "Rights of the Child" - ] - }, - { - "text": "Ratify the Kampala amendments to the Rome Statute of the International Criminal Court on the crime of aggression", - "values": [ - "International instruments", - "Justice" - ] - }, - { - "text": "Continue efforts to develop policies and programmes to reduce malnutrition throughout the country, in particular by improving school meal programmes ", - "values": [ - "Right to education", - "Right to food", - "Rights of the Child" - ] - }, - { - "text": "Take additional steps to improve gender equality and enhance women's position in marriage, divorce, nationality, custody of children and inheritance", - "values": [ - "Women's rights" - ] - }, - { - "text": "Actively combat racially-motivated crimes and counteract racist speech in politics and the mass media", - "values": [ - "Racial discrimination" - ] - }, - { - "text": "Enhance legal action against all forms of discrimination on the basis of race, ethnic, language, religion or national origin, in particular comprehensive respect for human rights of foreigners regardless of their migratory status", - "values": [ - "Freedom of religion and belief", - "Migrants", - "Racial discrimination" - ] - }, - { - "text": "Redouble its efforts to combat discrimination against those of foreign origin in education and employment ", - "values": [ - "Racial discrimination" - ] - }, - { - "text": "Reform the Public Order Act and ensure that law enforcement agencies are instructed to uphold the Act without political bias", - "values": [ - "Other" - ] - }, - { - "text": "Strengthen efforts to guarantee minimum conditions for those held in police custody and detention centres in accordance with international standards, and follow up the specific recommendations of United Nations bodies in this regard.", - "values": [ - "Detention", - "Treaty bodies" - ] - }, - { - "text": "Continue the legal reform process, including the incorporation of a Plan of action to ensure access to justice by poor people and vulnerable groups, in particular women and children ", - "values": [ - "Justice", - "Poverty", - "Rights of the Child", - "Women's rights" - ] - }, - { - "text": "Strengthen efforts to guarantee freedom of religion and belief, especially by retracting so-called anti-conversion laws", - "values": [ - "Freedom of religion and belief" - ] - }, - { - "text": "Train law enforcement, judiciary, prosecutors, health-care and social workers on responding to domestic violence", - "values": [ - "Human rights education and training", - "Rights of the Child", - "Women's rights" - ] - }, - { - "text": "As provided in the peace agreement, support the swift establishment of a hybrid court to investigate cases of genocide, crimes against humanity, war crimes and other serious crimes under international and South Sudanese law ", - "values": [ - "Justice" - ] - }, - { - "text": "Further expand human rights education and training programmes in the country", - "values": [ - "Human rights education and training" - ] - }, - { - "text": "Attach the greatest importance to implementing the Ohrid Framework Agreement and to meet the strategic priorities that arise there from.", - "values": [ - "Minorities" - ] - }, - { - "text": "Take appropriate steps towards achieving Universal Health Coverage in the country", - "values": [ - "Right to health" - ] - }, - { - "text": "Bring its National Centre for Human Rights into conformity with the principles relating to the status of national institutions for the promotion and protection of human rights ", - "values": [ - "National Human Rights Institution" - ] - }, - { - "text": "Continue to address the problems related to the working conditions and prioritize the protection and welfare of the workers, especially the women ", - "values": [ - "Labour", - "Women's rights" - ] - }, - { - "text": "Reconsider the matter by taking the necessary steps to fulfil the objective expressed in 2008 to reach the 0.7% target for ODA in relation to the Millennium Development Goals by 2015 ", - "values": [ - "Development" - ] - }, - { - "text": "Continue the adoption of measures, including awareness raising programmes, against negative prejudices and discrimination against people living with HIV and sexual minorities.", - "values": [ - "HIV - Aids", - "Human rights education and training", - "Sexual Orientation and Gender Identity" - ] - }, - { - "text": "Strengthen all policies to bolster basic education, including education for girls, adult literacy and education for persons with disabilities", - "values": [ - "Disabilities", - "Right to education", - "Rights of the Child", - "Women's rights" - ] - }, - { - "text": "Continue pursing social policies in keeping with family values and not be intimidated by suggestions on social norms that are controversial, non-universal and specific to certain societies", - "values": [ - "Other" - ] - }, - { - "text": "Continue efforts to improve education and raise school enrolment at the primary level", - "values": [ - "Right to education" - ] - }, - { - "text": "Incorporate the provisions of the Convention on the Rights of Persons with Disabilities in its domestic law, and eliminate the remaining provisions that consent discrimination against persons with disabilities", - "values": [ - "Disabilities", - "International instruments" - ] - }, - { - "text": "Establish an independent national human rights institution with a broad protection mandate and with adequate financial and human resources, in accordance with the Paris Principles", - "values": [ - "National Human Rights Institution" - ] - }, - { - "text": "Provide substantial resources to the key institutions in the criminal justice system and extensive training for judges, prosecutors, defence counsels and investigators in order to ensure safe prosecutions and respect for due process", - "values": [ - "Justice" - ] - }, - { - "text": "Implement policies to support food production, access to credit and school meals programs linked to local food production ", - "values": [ - "Right to education", - "Right to food" - ] - }, - { - "text": "Analyse the possibility of subscribing to CAT ", - "values": [ - "International instruments", - "Torture and other CID treatment" - ] - }, - { - "text": "Continue the implementation of the National Initiative on Human Development Program and extend allocated human and financial resources ", - "values": [ - "Other" - ] - }, - { - "text": "Ensure police and justice officials have appropriate training and direction to improve the investigation and prosecution of sexual violence including that based on sexual orientation or gender identity ", - "values": [ - "Sexual Orientation and Gender Identity", - "Women's rights" - ] - }, - { - "text": "Ensure decent living conditions in all reception and detention centres for migrants and asylum seekers by providing adequate services", - "values": [ - "Asylum-seekers - refugees", - "Migrants" - ] - }, - { - "text": "Comply with the recommendations of its first UPR relating to human rights violations against the Palestinian people", - "values": [ - "UPR process" - ] - }, - { - "text": "Implement the National Plan on the Search for the Disappeared and provide the financial resources necessary to satisfy the human dignity of the Disappeared and their relatives", - "values": [ - "Enforced disappearances", - "Justice" - ] - }, - { - "text": "Take all necessary measures to find a solution to a number of problems the non-Muslim communities are facing, such as difficulties in training the clergy and difficulties in enjoying their property rights ", - "values": [ - "Freedom of religion and belief" - ] - }, - { - "text": "Reduce the number of crimes where the death penalty can be imposed ", - "values": [ - "Death penalty" - ] - }, - { - "text": "Consider the possibility of ratifying the Optional Protocol to the Convention on the Elimination of All Forms of Discrimination against Women ", - "values": [ - "International instruments", - "Women's rights" - ] - }, - { - "text": "Continue its efforts to develop the capacities of the institutions dealing with vulnerable groups, in particular persons with disabilities", - "values": [ - "Disabilities" - ] - }, - { - "text": "Launch campaigns of sensitization for families and communities with the aim of creating areas of protection for the protection of the rights of children with greater efficiency", - "values": [ - "Human rights education and training", - "Rights of the Child" - ] - }, - { - "text": "Review the state policy that affects indigenous lands, known as the "Plan of Agricultural and Industrial Leases" regarding non-indigenous companies, reinforcing the work of the Commission of Inquiry that has found irregularities in many of the leases investigated ", - "values": [ - "Indigenous peoples", - "Right to land" - ] - }, - { - "text": "Ensure the protection of all components of the right to freedom of religion or belief, as protected under the ICCPR, including by withdrawing its reservations to article 27 on minority rights", - "values": [ - "Freedom of religion and belief", - "International instruments", - "Minorities" - ] - }, - { - "text": "Finalize an action plan to guide the implementation of all universal periodic review recommendations", - "values": [ - "UPR process" - ] - }, - { - "text": "Further consider incorporating in relevant laws the principles of equality between women and men and where such principle exists, to campaign for greater understanding and awareness among the general public and officials for the effective implementation of such laws", - "values": [ - "Women's rights" - ] - }, - { - "text": "Pursue its policy in acceding to international and regional conventions and mechanisms on human rights and freedoms", - "values": [ - "International instruments" - ] - }, - { - "text": "Ratify the Second Optional Protocol to ICCPR, aiming at the abolition of death penalty ", - "values": [ - "Death penalty", - "International instruments" - ] - }, - { - "text": "Abolish the quota system requirement in relation to family reunification", - "values": [ - "Asylum-seekers - refugees", - "Migrants" - ] - }, - { - "text": "Continue consultations, investigations and reform programmes under way to eliminate racial discrimination and excessive use of force in policing", - "values": [ - "Human rights violations by state agents", - "Racial discrimination" - ] - }, - { - "text": "Include affirmative measures for women in employment policies and programmes at all governance levels and ensure women's social protection and access to socioeconomic rights", - "values": [ - "Women's rights" - ] - }, - { - "text": "Support the institution of the traditional family and the preservation of family values", - "values": [ - "Other" - ] - }, - { - "text": "Amend existing legislation to recognize sexual orientation and gender identity as grounds for discrimination and allow for the prosecution of hate crimes on this basis", - "values": [ - "Sexual Orientation and Gender Identity" - ] - }, - { - "text": "Implement the Maternal Child and Women's Health Strategy (2009-14) and develop sustained measures to address the impact of HIV/AIDS on women and girls, who are disproportionately affected ", - "values": [ - "HIV - Aids", - "Rights of the Child", - "Women's rights" - ] - }, - { - "text": "Continue increasing inputs in education to effectively protect the right to education for the people of Panama, including indigenous people", - "values": [ - "Indigenous peoples", - "Right to education" - ] - }, - { - "text": "Reach a timely decision to sign ICESCR, ICCPR, ICERD and the Optional Protocol to CRC on the sale of children ", - "values": [ - "CP rights - general", - "ESC rights - general", - "International instruments", - "Racial discrimination", - "Rights of the Child", - "Trafficking" - ] - }, - { - "text": "Consider requesting technical assistance from the High Commissioner for Human Rights to fulfil the complex task of presenting the reports to the treaty bodies ", - "values": [ - "Technical assistance and cooperation", - "Treaty bodies" - ] - }, - { - "text": "Continue to give special emphasis to address the issue of women's illiteracy", - "values": [ - "Right to education", - "Women's rights" - ] - }, - { - "text": "Ratify the International Convention for the Protection of All Persons from Enforced Disappearance (CPED)", - "values": [ - "Enforced disappearances", - "International instruments" - ] - }, - { - "text": "Remain steadfast in pursuing its impressive policies towards gender equality, particularly by strengthening measures to eradicate gender-based violence", - "values": [ - "Rights of the Child", - "Women's rights" - ] - }, - { - "text": "Adopt legislation to prohibit the collection of school fees and take the necessary measures to ensure free and universal access to education regardless of gender, ethnicity, mother tongue, religion, belief, disability or social condition", - "values": [ - "Right to education" - ] - }, - { - "text": "Further promote and enforce the principle of non-discrimination, particularly by fully suspending its reservation to article 2 of the CEDAW Conventionand ending discrimination of women in the fields of property and inheritance law", - "values": [ - "International instruments", - "Women's rights" - ] - }, - { - "text": "Approve the Right to Information Bill and National Media Policy and decriminalize defamation in accordance with international standards ", - "values": [ - "Freedom of opinion and expression", - "Freedom of the press" - ] - }, - { - "text": "A policy based on unstinting efforts to raise awareness of human rights. ", - "values": [ - "Human rights education and training" - ] - }, - { - "text": "Further address and enhance combating the root causes of discrimination, particularly of foreign migrant women, by removing legal and systemic obstacles to equal rights.", - "values": [ - "Migrants", - "Women's rights" - ] - }, - { - "text": "Fight against organized crime through effective policies", - "values": [ - "Public security" - ] - }, - { - "text": "Redouble the Government's commitment to raising awareness amongst officials and the public at large about human rights and the process of the universal periodic review", - "values": [ - "Human rights education and training", - "UPR process" - ] - }, - { - "text": "Enforce national legislation and policies to prevent and address the marginalization and exclusion of women from the economic, social and political spheres of society ", - "values": [ - "Women's rights" - ] - }, - { - "text": "Amend legislation that denies Swazi citizenship to children born of foreign fathers", - "values": [ - "Rights of the Child", - "Statelessness and the right to nationality", - "Women's rights" - ] - }, - { - "text": "Consider ratifying the Optional Protocol to the Convention against Torture", - "values": [ - "Detention", - "International instruments", - "Torture and other CID treatment" - ] - }, - { - "text": "Secure proper follow-up to the accepted recommendation from the first UPR cycle and introduce tools that will improve the effective judicial control over the administrative decisions of the Office of Youth called Jugendamt ", - "values": [ - "UPR process" - ] - }, - { - "text": "Ratify the ICCPR as well as its Optional Protocols ", - "values": [ - "CP rights - general", - "Death penalty", - "International instruments" - ] - }, - { - "text": "Consider ratifying the Convention against Torture and its Optional Protocol, the Convention on the Elimination of All Forms of Discrimination against Women, the Protocol to the African Charter on Human and People's Rights on the Rights of Women in Africa and the International Convention for the Protection of All Persons from Enforced Disappearance ", - "values": [ - "Detention", - "Enforced disappearances", - "International instruments", - "Torture and other CID treatment", - "Women's rights" - ] - }, - { - "text": "Amend the law of association in compliance with international standards, including allowing NGOs to function without impediments such as prior authorization, funding control and administrative dissolution", - "values": [ - "Civil society", - "Freedom of association and peaceful assembly" - ] - }, - { - "text": "Recommend that the international community help political actors to implement the decisions resulting from the Ouagadougou Agreement ", - "values": [ - "Public security" - ] - }, - { - "text": "Cooperate with all United Nations special procedures mandate holders who wish to visit Iran", - "values": [ - "Special procedures" - ] - }, - { - "text": "Seek the support and advice of the various United Nations agencies in order to meet its international commitments in the protection and safeguarding of human rights.", - "values": [ - "Technical assistance and cooperation" - ] - }, - { - "text": "Effectively investigate hate crimes and violent attacks against individuals from vulnerable and marginalized groups, including ethnic and religious minorities, prosecute perpetrators as well", - "values": [ - "Freedom of religion and belief", - "Minorities", - "Racial discrimination" - ] - }, - { - "text": "Monitor law enforcement in an effort to eradicate corruption and investigate the use of excessive force, as well as the patterns of widespread extrajudicial killings committed by the police and vigilante groups", - "values": [ - "Corruption", - "Extrajudicial executions", - "Human rights violations by state agents" - ] - }, - { - "text": "Continue implementing its national programs and policies to advance women's rights and ensure quality education of children, especially in rural areas", - "values": [ - "Right to education", - "Rights of the Child", - "Women's rights" - ] - }, - { - "text": "Continue its efforts for the full realization of the rights of Syrian children in the occupied Syrian Golan", - "values": [ - "Rights of the Child" - ] - }, - { - "text": "Consider the adoption of ILO Convention No. 169, in order to ensure the effective protection and promotion of the rights of indigenous peoples, contributing to the recognition of their national identity, particularly the ones of the Charr", - "values": [ - "Indigenous peoples", - "International instruments" - ] - }, - { - "text": "Take steps to ensure protection of the fundamental rights of all individuals born in the Dominican Republic, including the offspring of undocumented foreigners who may be at risk of becoming stateless as a consequence of Constitutional Tribunal ruling 168/13 ", - "values": [ - "Migrants", - "Statelessness and the right to nationality" - ] - }, - { - "text": "Strengthen the promotion and protection of the rights of the elderly", - "values": [ - "Other" - ] - }, - { - "text": "Take effective measures to guarantee the independence of the judiciary and to put an end to infringements of judiciary independence through rapid, in-depth, independent and impartial investigations into allegations of interference as well as prosecutions and sanctions against the perpetrators ", - "values": [ - "Justice" - ] - }, - { - "text": "Suggest the ratification of the Convention on the Rights of Persons with Disabilities and its Optional Protocol", - "values": [ - "Disabilities", - "International instruments" - ] - }, - { - "text": "Improve food security and access to drinking water for the whole population ", - "values": [ - "Right to food", - "Right to water and sanitation" - ] - }, - { - "text": "Pursue efforts to enhance the juvenile justice system and ensure separation of juveniles from adults in detention ", - "values": [ - "Detention", - "Justice", - "Rights of the Child" - ] - }, - { - "text": "Accede to the Convention relating to the Status of Refugees, its 1967 Protocol and the 1961 Convention on the Reduction of Statelessness", - "values": [ - "Asylum-seekers - refugees", - "International instruments", - "Statelessness and the right to nationality" - ] - }, - { - "text": "Fast-track the implementation of Acts Nos. 09/2015 and 010/2016, on setting quotas for women\u2019s access to senior civil service posts and on combating harassment in the workplace, respectively", - "values": [ - "Women's rights" - ] - }, - { - "text": "Strengthen efforts at the federal level to raise awareness of indigenous rights, language and customs, by providing guidance and training to military and local officials, including the police, judiciary, and members of the legal community, particularly in rural areas", - "values": [ - "Human rights education and training", - "Indigenous peoples" - ] - }, - { - "text": "Take all necessary action to respect and promote the right to freedom of expression, peaceful assembly and association in line with its international human rights obligations ", - "values": [ - "Freedom of association and peaceful assembly", - "Freedom of opinion and expression", - "International instruments" - ] - }, - { - "text": "Ensure that all perpetrators are prosecuted and victims have access to immediate redress and protection", - "values": [ - "Justice" - ] - }, - { - "text": "Facilitate independent participation of civil society in the democratization process, and to lift restrictions on the freedom of the right of association and assembly, in accordance with international human rights standards", - "values": [ - "Civil society", - "Freedom of association and peaceful assembly", - "International instruments" - ] - }, - { - "text": "Consider aligning national laws, including customary laws with the provisions of international human rights instruments to which Togo is a party ", - "values": [ - "International instruments" - ] - }, - { - "text": "Elaborate and implement programmes and initiatives to encourage the sharing of domestic responsibilities and childcare with a view to eliminating gender stereotypes", - "values": [ - "Women's rights" - ] - }, - { - "text": "Raise the minimum legal age for marriage for women to correspond to the minimum legal age for men", - "values": [ - "Rights of the Child", - "Women's rights" - ] - }, - { - "text": "Continue its efforts to improve the protection of victims and witnesses, and their families, as well as human rights defenders, particularly those testifying in human rights-related trials, and to ensure that adequate witness protection is implemented. ", - "values": [ - "Human rights defenders", - "Justice" - ] - }, - { - "text": "Amend the legislation to ensure an effective follow-up instrument for the public defenders and the members of the national preventive mechanism", - "values": [ - "Detention", - "Torture and other CID treatment" - ] - }, - { - "text": "Enact a definition of organized crime consistent with the United Nations Convention against Transnational Organized Crime", - "values": [ - "International instruments", - "Public security", - "Trafficking" - ] - }, - { - "text": "Ensure that legislation on consultation with indigenous groups is well-formed, takes into account indigenous peoples' concerns, and is effectively implemented", - "values": [ - "Indigenous peoples" - ] - }, - { - "text": "Adopt new concrete measures for the implementation of the National Action Plan on Human Rights of 2013, in order to sustain the decrease in crime rates in the context of strengthening the rule of law", - "values": [ - "Justice" - ] - }, - { - "text": "Implement all international human rights instruments related to Aboriginals, women, Arabs, Muslims and other religious minorities, migrants and refugees and enhance and protect their rights against violations", - "values": [ - "International instruments" - ] - }, - { - "text": "Increase efforts to tackle corruption and impunity of State officials", - "values": [ - "Corruption", - "Impunity" - ] - }, - { - "text": "Incorporate a definition of racial discrimination into its legislation and a prohibition of racial discrimination into the Criminal Code", - "values": [ - "Racial discrimination" - ] - }, - { - "text": "Continue the commendable public campaigns against violence against women and children, and ensure the swift adoption and implementation of the new Bill on Domestic Violence ", - "values": [ - "Human rights education and training", - "Rights of the Child", - "Women's rights" - ] - }, - { - "text": "Seek from the international community and United Nations specialized agencies the technical assistance necessary to establish a national human rights institution as well as to overcome the challenges and constraints listed in the national report ", - "values": [ - "National Human Rights Institution", - "Technical assistance and cooperation" - ] - }, - { - "text": "Continue fighting violence against women and girls so as to incite the majority of states to follow suit", - "values": [ - "Rights of the Child", - "Women's rights" - ] - }, - { - "text": "Implement a national strategy to modify or eradicate, in accordance with the Convention on the Elimination of All Forms of Discrimination against Women, harmful practices and stereotypes that discriminate against women", - "values": [ - "International instruments", - "Women's rights" - ] - }, - { - "text": "Adopt measures to facilitate greater representation of women in public office and improve the participation of women in political life", - "values": [ - "Women's rights" - ] - }, - { - "text": "Take all necessary steps to enhance the effectiveness of the Protection Programme, including through speedy risk assessment studies and implementation of approved schemes, clear criteria for defining risk, collective protection measures and the inclusion of family members in the scheme", - "values": [ - "Right to land" - ] - }, - { - "text": "Enact comprehensive anti-discrimination legislation and uphold minority rights with a view to fully aligning law and practice with international human rights standards ", - "values": [ - "International instruments", - "Minorities" - ] - }, - { - "text": "Thoroughly and impartially investigate all instances of extrajudicial killings and excessive force committed by security forces", - "values": [ - "Extrajudicial executions", - "Human rights violations by state agents", - "Impunity" - ] - }, - { - "text": "Undertake the necessary measures to protect the rights of human rights defenders as well as journalists", - "values": [ - "Freedom of the press", - "Human rights defenders" - ] - }, - { - "text": "Continue to support developing countries in fighting poverty through its development assistance ", - "values": [ - "Poverty" - ] - }, - { - "text": "Ratify the Rome Statute of the International Criminal Court and fully cooperate with international mechanisms of accountability in order for those responsible of international crimes to be brought to justice ", - "values": [ - "International instruments", - "Justice" - ] - }, - { - "text": "Step up efforts to combat trafficking in persons, including training for officials, criminal prosecution of perpetrators as well as developing measures for the protection and rehabilitation of the victims of trafficking in persons ", - "values": [ - "Trafficking" - ] - }, - { - "text": "Intensify its efforts aimed at harmonizing elements of the Shari'a with existing laws, with a view to ensuring maximum protection for women and children as well as victims of human rights abuses", - "values": [ - "Rights of the Child", - "Women's rights" - ] - }, - { - "text": "Consider acceding to the Convention relating to the Status of Stateless Persons and the Convention on the Reduction of Statelessness ", - "values": [ - "International instruments", - "Statelessness and the right to nationality" - ] - }, - { - "text": "Appoint more women to positions of responsibility within the army and the police as a first step towards ending gender-based violence", - "values": [ - "Women's rights" - ] - }, - { - "text": "Strengthen national policies to ensure that persons with albinism are fully protected from attacks and implement awareness-raising programmes which also promote their social integration in rural areas", - "values": [ - "Human rights education and training", - "Minorities" - ] - }, - { - "text": "Strengthen security for judicial staff and lawyers", - "values": [ - "Justice" - ] - }, - { - "text": "Address the infrastructural needs of country's penitentiary system, including inmate's access to food, water and sanitation as well as health care ", - "values": [ - "Detention", - "Right to water and sanitation" - ] - }, - { - "text": "Continue to develop policies aimed at promoting and protecting human rights and realizing the welfare and development of the population", - "values": [ - "Development", - "ESC rights - general" - ] - }, - { - "text": "Ensure the full implementation of the presidential decree forbidding the imprisonment of women for non-payment of dowries on separating from their husbands ", - "values": [ - "Detention", - "Women's rights" - ] - }, - { - "text": "Ensure that the de facto moratorium declared by the President of Mongolia in January 2010 is incorporated into legislation with a view to completely abolishing the death penalty ", - "values": [ - "Death penalty" - ] - }, - { - "text": "Adopt all necessary measures to provide for a free and independent media which reflects the religious, ethnic and political plurality of opinions in Egypt", - "values": [ - "Freedom of the press" - ] - }, - { - "text": "Expedite the process initiated under the Justice and Peace Law passed in 2005 with regard to accelerating the demobilization of paramilitary chiefs and combatants.", - "values": [ - "International humanitarian law" - ] - }, - { - "text": "Canada commits to considering options for enhancing existing mechanisms and procedures related to the implementation of international human rights obligations. Canada welcomes the views of civil society and Aboriginal organizations in identifying practical means to fulfil this commitment.", - "values": [ - "Civil society", - "Indigenous peoples", - "International instruments" - ] - }, - { - "text": "Provide information on the coordinated approach it has taken to advance in the area of the practical enjoyment of economic, social and cultural rights and to tackle the challenges of economic sanctions as well as the spate of catastrophic consequences of recent hurricanes", - "values": [ - "ESC rights - general" - ] - }, - { - "text": "Take concrete measures for the issuance of medical cards in Traveller and Roma communities, to guarantee that such children enjoy the same access to and quality of health-care services as others", - "values": [ - "Minorities", - "Right to health", - "Rights of the Child" - ] - }, - { - "text": "Consider ratifying the following international instruments: ICCPR, the Convention on the Elimination of All Forms of Discrimination against Women (CEDAW) and its protocols, the Convention against Torture and Other Cruel, Inhuman or Degrading Treatment or Punishment (CAT) and its protocol, the 1951 Convention relating to the Status of Refugees and its 1967 Protocol", - "values": [ - "Asylum-seekers - refugees", - "CP rights - general", - "Detention", - "International instruments", - "Torture and other CID treatment", - "Women's rights" - ] - }, - { - "text": "Continue improving the quality of education for all, including indigenous children, through the provision of more infrastructure, educational materials and learning tools", - "values": [ - "Indigenous peoples", - "Right to education", - "Rights of the Child" - ] - }, - { - "text": "Take additional measures to combat discrimination against national minorities, in particular the Sami and the Roma, and against immigrants, refugees and women ", - "values": [ - "Asylum-seekers - refugees", - "Migrants", - "Minorities", - "Women's rights" - ] - }, - { - "text": "Ensure affordable access to water and sanitation, and that the price paid for access to these rights is not incompatible with access to other rights such as food, housing or education", - "values": [ - "Right to education", - "Right to food", - "Right to housing", - "Right to water and sanitation" - ] - }, - { - "text": "Finalise the ratification of the Optional Protocol to the Convention against Torture", - "values": [ - "Detention", - "International instruments", - "Torture and other CID treatment" - ] - }, - { - "text": "Continue efforts, slowly but surely, to counter the weight of traditions by way of eradicating on a gradual basis the practice of female genital mutilation", - "values": [ - "Rights of the Child", - "Torture and other CID treatment", - "Women's rights" - ] - }, - { - "text": "Accelerate the process of abolishing the death penalty", - "values": [ - "Death penalty" - ] - }, - { - "text": "Reconsider its position on the legality of corporal punishment of children", - "values": [ - "Rights of the Child" - ] - }, - { - "text": "Ensure respect of the constitutional and legislative provisions regulating custody, compensate for the shortcomings in the texts, whenever necessary, ensure that conditions of arrest, custody and detention are respected and, provide the judiciary with the means to guarantee its independence ", - "values": [ - "Detention", - "Justice" - ] - }, - { - "text": "Improve the possibilities of benefitting from healthcare services", - "values": [ - "Right to health" - ] - }, - { - "text": "Increase efforts to ban corporal punishment from schools ", - "values": [ - "Rights of the Child", - "Torture and other CID treatment" - ] - }, - { - "text": "Consider issuing a standing invitation to special procedures of the Human Rights Council.", - "values": [ - "Special procedures" - ] - }, - { - "text": "Further capacity building, such as through human rights education targeting government authorities, particularly law enforcement agencies, and an effective implementation of a national oversight mechanism ", - "values": [ - "Human rights education and training" - ] - }, - { - "text": "Take effective measures to combat domestic violence ", - "values": [ - "Rights of the Child", - "Women's rights" - ] - }, - { - "text": "Take the necessary measures to guarantee non-discrimination of ethnic Roma, through the full implementation of the 2012-2020 strategy and campaigns to combat all forms of discrimination and xenophobia against this group ", - "values": [ - "Minorities", - "Racial discrimination" - ] - }, - { - "text": "Sri Lanka, manifesting its commitment to promote people-oriented development, will work towards the alleviation of poverty and achieving the Millennium Development Goals by 2015 through continued investment in social infrastructure, education, and health services in line with the vision of the Government of Sri Lanka for social and economic development.", - "values": [ - "Development", - "Poverty", - "Right to education", - "Right to health" - ] - }, - { - "text": "Establish a national rapporteur's office dedicated to implementing and coordinating policies and programmes", - "values": [ - "Other" - ] - }, - { - "text": "Strengthen the measures adopted to ensure the effective prohibition of prostitution by minors under 18 years, paying particular attention to the prohibition of the use of this type of prostitution or of the offer of it ", - "values": [ - "Rights of the Child" - ] - }, - { - "text": "Make all the necessary efforts to remove the reservations from the Convention on the Elimination of all Forms of Discrimination against Women", - "values": [ - "International instruments", - "Women's rights" - ] - }, - { - "text": "Continue efforts in human rights awareness raising, especially within the law enforcement sector", - "values": [ - "Human rights education and training" - ] - }, - { - "text": "Continue to apply the strategies and plans under way to guarantee, to the maximum extent possible, the human rights of the most vulnerable groups ", - "values": [ - "Minorities" - ] - }, - { - "text": "Impose a moratorium on the death penalty as a first step to its abolition", - "values": [ - "Death penalty" - ] - }, - { - "text": "Adopt positive policies to include representatives of minorities at various levels in national and local government ", - "values": [ - "Minorities" - ] - }, - { - "text": "Develop economic and social indicators for migrants and minority groups and that the government incorporate an economic cultural and social rights perspective as well as affirmative action in this regard", - "values": [ - "Migrants", - "Minorities" - ] - }, - { - "text": "Recommended that the Government investigate and prosecute both government officials and other perpetrators for acts against members of the media.", - "values": [ - "Freedom of the press", - "Justice" - ] - }, - { - "text": "Give further consideration to the incorporation of the definition of discrimination against women contained in article 1 of the Convention on the Elimination of all Forms of Discrimination against Women in its national legislation ", - "values": [ - "International instruments", - "Women's rights" - ] - }, - { - "text": "Increase efforts on gender equality", - "values": [ - "Women's rights" - ] - }, - { - "text": "Consider the ratification of the International Convention on the Protection of the Rights of All Migrant Workers and Members of Their Families and the Optional Protocol to the Convention against Torture and Other Cruel, Inhuman or Degrading Treatment or Punishment", - "values": [ - "International instruments", - "Migrants", - "Torture and other CID treatment", - "Treaty bodies" - ] - }, - { - "text": "Halt any plans to reinstate the death penalty", - "values": [ - "Death penalty" - ] - }, - { - "text": "Strengthen measures to prevent, investigate and punish acts of violence against migrants when they occur, as well as allegations of the mistreatment of this group by some members of the police", - "values": [ - "Human rights violations by state agents", - "Migrants" - ] - }, - { - "text": "Review the personal status legislation and the Penal Code in order to modify or delete articles that discriminate against women, to comply with the Constitution, as well as international law, and work to lift the reservation on article 16 of CEDAW", - "values": [ - "International instruments", - "Women's rights" - ] - }, - { - "text": "Initiate a national dialogue on a universal minimum wage", - "values": [ - "Labour" - ] - }, - { - "text": "Ensure that journalists and workers in the media can pursue their profession in a free environment which guarantees the rights of freedom of opinion and expression for all persons ", - "values": [ - "Freedom of opinion and expression", - "Freedom of the press" - ] - }, - { - "text": "Consider alternatives to prolonged pretrial detention and provide adequate resources to address poor prison conditions", - "values": [ - "Detention" - ] - }, - { - "text": "Set up an effective statutory consultation mechanism with organizations working on the rights of indigenous peoples to help avoid further conflicts ", - "values": [ - "Indigenous peoples" - ] - }, - { - "text": "Continue to implement the programme of human rights education and capacity-building among the relevant stakeholders", - "values": [ - "Human rights education and training" - ] - }, - { - "text": "Take steps to ratify the Kampala amendments to the Rome Statute of the International Criminal Court", - "values": [ - "International instruments", - "Justice" - ] - }, - { - "text": "Ratify the International Convention for the Protection of All Persons from Enforced Disappearance without reservations and incorporate it into domestic law", - "values": [ - "Enforced disappearances", - "International instruments" - ] - }, - { - "text": "Conclude, as a matter of priority, the process leading to the establishment of a national human rights institution, with a broad human rights mandate", - "values": [ - "National Human Rights Institution" - ] - }, - { - "text": "Put in place an NHRI in accordance with the Paris Principles", - "values": [ - "National Human Rights Institution" - ] - }, - { - "text": "Ensure due process for all immigrants in immigration proceedings, using the principle of the best interest, especially in the case of families and unaccompanied children", - "values": [ - "Migrants", - "Rights of the Child" - ] - }, - { - "text": "Continue its measures on the field of strengthening of bodies involved in the promotion and protection of human rights ", - "values": [ - "General" - ] - }, - { - "text": "Promote awareness-raising campaigns aimed at preventing and combating violence against women and domestic violence", - "values": [ - "Rights of the Child", - "Women's rights" - ] - }, - { - "text": "Work and do all its best in order to close down the Guantanamo facility", - "values": [ - "Detention" - ] - }, - { - "text": "Review its legislation to bring the criminal responsibility of children in line with international standards", - "values": [ - "Justice", - "Rights of the Child" - ] - }, - { - "text": "Take decisive steps to combat criminal impunity", - "values": [ - "Impunity", - "Public security" - ] - }, - { - "text": "Step up its efforts to ensure that legislation combating gender-based discrimination is effectively implemented and that effective measures are adopted to strengthen gender equality", - "values": [ - "Women's rights" - ] - }, - { - "text": "Take all the necessary steps to resolve the divergences in the interpretation of the legal text on the Supreme Judicial Council and ensure that such interpretation is in accordance with the provisions of the Constitution", - "values": [ - "Justice" - ] - }, - { - "text": "Intensify its effort in ensuring gender equality, in particular, by reviewing its legal provisions in the area of civil and family law", - "values": [ - "Women's rights" - ] - }, - { - "text": "Take urgent steps to facilitate the work of civil society and human rights defenders, and guarantee protection of all persons from intimidation or reprisals for seeking to cooperate with the United Nations", - "values": [ - "Civil society", - "Human rights defenders" - ] - }, - { - "text": "Bring its methods of combating the use of illegal drugs into line with international standards", - "values": [ - "Other" - ] - }, - { - "text": "Take measures to ensure participation of women in politics, including through affirmative action and quota requirements", - "values": [ - "Women's rights" - ] - }, - { - "text": "Reinstate the Council for the Prevention of Racial Discrimination, Xenophobia and Related Intolerance, dissolved in April 2016", - "values": [ - "National Human Rights Institution", - "Racial discrimination" - ] - }, - { - "text": "Review, inter alia, the land rights and other rights of the Ainu population and harmonize them with the United Nations Declaration on the Rights of Indigenous Peoples.", - "values": [ - "Indigenous peoples", - "International instruments", - "Right to land" - ] - }, - { - "text": "Adopt a comprehensive legislation to address gender based violence and human trafficking", - "values": [ - "Trafficking", - "Women's rights" - ] - }, - { - "text": "Continue its efforts to protect its people from the threat of drugs while upholding human rights values", - "values": [ - "Other" - ] - }, - { - "text": "Expand the activity of the Commissioner for the Rights of Child ", - "values": [ - "National Human Rights Institution", - "Rights of the Child" - ] - }, - { - "text": "Take the necessary measures to declare a de jure moratorium on the death penalty with a view to abolishing it and to consider ratifying the Second Optional Protocol to ICCPR", - "values": [ - "Death penalty", - "International instruments" - ] - }, - { - "text": "Ratify the Convention on the Rights of Persons with Disabilities, pursuant to the Human Rights Council recommendations", - "values": [ - "Disabilities", - "International instruments" - ] - }, - { - "text": "Adopt legislation criminalizing domestic violence, including sexual violence, together with effective implementation measures", - "values": [ - "Rights of the Child", - "Women's rights" - ] - }, - { - "text": "Pay special attention to the situation of women and to improve their access to public services, education and justice, and to consider acceding to the Optional Protocol to CEDAW", - "values": [ - "International instruments", - "Women's rights" - ] - }, - { - "text": "Speed up the adoption of the Family and Personal Code enshrining the rights of women", - "values": [ - "Women's rights" - ] - }, - { - "text": "Pursue and complete accession to core human rights covenants, including in particular the International Covenant on Civil and Political Rights, the International Covenant on Economic, Social and Cultural Rights, the International Convention on the Elimination of All Forms of Racial Discrimination and the Convention against Torture, as previously recommended", - "values": [ - "CP rights - general", - "ESC rights - general", - "International instruments", - "Racial discrimination", - "Torture and other CID treatment", - "UPR process" - ] - }, - { - "text": "Establish an effective legal framework to protect the right to adequate housing of persons belonging to the Roma minority and ensure that cases of discrimination against them are swiftly investigated", - "values": [ - "Minorities", - "Racial discrimination", - "Right to housing" - ] - }, - { - "text": "Ensure the inclusion of a gender perspective as the follow-up to the UPR.", - "values": [ - "UPR process", - "Women's rights" - ] - }, - { - "text": "Encourage employment opportunities programmes for the elderly and strengthen measures to prevent and punish discrimination against them ", - "values": [ - "Other" - ] - }, - { - "text": "Bring the mass event legislation into line with the international standards on freedom of assembly, including by abolishing the licensing principle of the conduct of events and by abolishing the requirement for the applicants to pay for maintenance of public order and for providing medical service as an indispensable condition for carrying out the event", - "values": [ - "Freedom of association and peaceful assembly" - ] - }, - { - "text": "Establish a formal adhesion programme which includes the allocation of funds by the federal government to support the national policy on torture prevention", - "values": [ - "Torture and other CID treatment" - ] - }, - { - "text": "Take appropriate measures and introduce legislation which would prohibit corporal punishment of children ", - "values": [ - "Rights of the Child", - "Torture and other CID treatment" - ] - }, - { - "text": "Sign and ratify the Second Optional Protocol to ICCPR, aiming at the abolition of the death penalty", - "values": [ - "Death penalty", - "International instruments" - ] - }, - { - "text": "Ensure the establishment, within the National Independent Human Rights Commission, of a mechanism to follow up on the extra-judicial executions noted ", - "values": [ - "Extrajudicial executions", - "National Human Rights Institution" - ] - }, - { - "text": "Take steps to further strengthen the National Human Rights Commission and the Anti-corruption Commission to ensure that they will be able to operate independently and effectively", - "values": [ - "Corruption", - "National Human Rights Institution" - ] - }, - { - "text": "Withdraw reservations to the International Convention on the Elimination of All Forms of Racial Discrimination and take appropriate measures to combat more effectively discriminatory stereotypes ", - "values": [ - "International instruments", - "Racial discrimination" - ] - }, - { - "text": "Strengthen its efforts to prevent and combat all forms of discrimination and violence against women, children and other vulnerable groups through the adoption of comprehensive legislation and awareness raising campaigns", - "values": [ - "Human rights education and training", - "Rights of the Child", - "Women's rights" - ] - }, - { - "text": "Promptly ratify and implement in national laws the outstanding core human rights treaties, including ICESCR", - "values": [ - "ESC rights - general", - "International instruments" - ] - }, - { - "text": "Take necessary measures to improve access to education for children belonging to minorities and for children from immigrant families as well as to develop programmes to reduce school drop-out rate", - "values": [ - "Migrants", - "Minorities", - "Right to education", - "Rights of the Child" - ] - }, - { - "text": "Continue to assess the possibility of acceding to ICESCR and ICCPR ", - "values": [ - "CP rights - general", - "ESC rights - general", - "International instruments" - ] - }, - { - "text": "Expeditiously and fully investigate and prosecute acts of violence and discrimination targeting women, indigenous, and lesbian, gay, bisexual, transgender and intersex (LGBTI) persons and guarantee an effective remedy to victims and their families", - "values": [ - "Sexual Orientation and Gender Identity", - "Women's rights" - ] - }, - { - "text": "Continue efforts to implement the zero hunger programme to combat poverty and achieve food and nutritional security, which assigns priority to poor rural families and marginal urban populations", - "values": [ - "Poverty", - "Right to food" - ] - }, - { - "text": "In all devolved administrations, overseas territories and Crown dependencies, prohibit all corporal punishment in the family, including through the repeal of all legal defences, such as \u201creasonable chastisement\u201c", - "values": [ - "Rights of the Child" - ] - }, - { - "text": "Continue the process of reform begun in the legal system, in conformity with the recently adopted constitutional provisions", - "values": [ - "Justice" - ] - }, - { - "text": "Increase the space for civil society in Rwanda. A first step should be to simplify regulations for NGOs, making it easier to register, in order to support a thriving civil society which will contribute to Rwanda's progress and prosperity", - "values": [ - "Civil society", - "Freedom of association and peaceful assembly" - ] - }, - { - "text": "Continue to develop a legal system in line with international standards, in order to strengthen the rule of law.", - "values": [ - "Justice" - ] - }, - { - "text": "Accelerate the ongoing exercise to strengthen the National Human Rights Commission and to make it fully compliant with the Paris Principles", - "values": [ - "National Human Rights Institution" - ] - }, - { - "text": "Facilitate procedures for holding peaceful protests and refrain from criminally punishing the exercise of the right to peaceful assembly, including through unregistered peaceful assemblies", - "values": [ - "Freedom of association and peaceful assembly" - ] - }, - { - "text": "Create an enabling environment for journalists and media professionals and ensure fully transparent and impartial investigation and prosecution in all cases of attacks against them ", - "values": [ - "Freedom of the press" - ] - }, - { - "text": "Strengthen efforts to combat malnutrition and diseases such as tuberculosis ", - "values": [ - "Right to food", - "Right to health" - ] - }, - { - "text": "Continue carrying out its sound public policies from the Ministry of Popular Power for Indigenous Peoples, to guarantee the respect and observance of the rights of Indigenous Peoples and Afro-descendant Communities ", - "values": [ - "Indigenous peoples", - "Minorities" - ] - }, - { - "text": "Continue to strengthen its education policy, with international cooperation and technical assistance, enabling the required infrastructure to provide an inclusive education that meets the needs of its people, in conditions that guarantee full equality in terms of access ", - "values": [ - "Right to education", - "Technical assistance and cooperation" - ] - }, - { - "text": "Integrate the Rabat Plan of Action on the prohibition of advocacy of national, racial or religious hatred that constitutes incitement to discrimination, hostility or violence in the national legislation regulating the media and religious institutions, and ensure the actual implementation of the Plan ", - "values": [ - "Racial discrimination" - ] - }, - { - "text": "Consider signing or ratifying, as appropriate, the following international human rights instruments: ICCPR, ICESCR and ICERD ", - "values": [ - "CP rights - general", - "ESC rights - general", - "International instruments", - "Racial discrimination" - ] - }, - { - "text": "Continue ensuring access to health institutions and services in conformity with the National Health Insurance Scheme with a view to implementing the objective of universal health coverage by 2019", - "values": [ - "Right to health" - ] - }, - { - "text": "Intensify its ongoing actions to eliminate discrimination against women at all levels in the society", - "values": [ - "Women's rights" - ] - }, - { - "text": "Take appropriate measures to address social inequality and disparities by paying particular attention to persons belonging to vulnerable and marginalized groups and providing better access to education, health and employment ", - "values": [ - "Labour", - "Right to education", - "Right to health" - ] - }, - { - "text": "Take the necessary measures to promote media pluralism and fight threats against freedom of the press and freedom of expression", - "values": [ - "Freedom of opinion and expression", - "Freedom of the press" - ] - }, - { - "text": "Establish policies, programmes and services to provide children with greater protection and care ", - "values": [ - "Rights of the Child" - ] - }, - { - "text": "Continue the policy of multiculturalism aimed to preserve cultural diversity in the country ", - "values": [ - "Minorities" - ] - }, - { - "text": "Investigate cases of attacks and threats against journalists and human rights defenders", - "values": [ - "Freedom of the press", - "Human rights defenders" - ] - }, - { - "text": "Continue its efforts to eradicate discrimination against women in all areas of life", - "values": [ - "Women's rights" - ] - }, - { - "text": "Increase its efforts to ensure that perpetrators of extra-judicial killings and torture are brought to justice ", - "values": [ - "Extrajudicial executions", - "Torture and other CID treatment" - ] - }, - { - "text": "Investigate cases of sexual abuse and exploitation and prosecute and impose adequate sentences for such crimes ", - "values": [ - "Rights of the Child", - "Women's rights" - ] - }, - { - "text": "Ratify on the Protection of the Rights of All Migrant Workers and Members of Their Families", - "values": [ - "International instruments", - "Labour", - "Migrants" - ] - }, - { - "text": "Implement an effective programme to combat corruption, with the establishment of a better financed judicial system. ", - "values": [ - "Corruption" - ] - }, - { - "text": "Conduct public awareness policies and programmes, in cooperation with civil society, to change cultural paradigms and attitudes in order to encourage and promote respect for LGBTI persons and fight against prejudice and discrimination against LGBTI persons ", - "values": [ - "Civil society", - "Human rights education and training", - "Sexual Orientation and Gender Identity" - ] - }, - { - "text": "Ratify CED, CAT and OP-CAT, CRPD and OP-CRPD, as well as the two optional protocols to CRC ", - "values": [ - "International instruments" - ] - }, - { - "text": "Take all measures necessary to address all forms of discrimination, including social discrimination and discrimination against children with disabilities in remote areas ", - "values": [ - "Disabilities", - "Rights of the Child" - ] - }, - { - "text": "Continue all efforts and measures aimed at promoting and strengthening capacity of national institutions for the implementation of Islamic sharia rules", - "values": [ - "General" - ] - }, - { - "text": "Take effective measures to ensure access to safe drinking water, adequate sanitation facilities and heath care, particularly in remote and rural areas ", - "values": [ - "Right to health", - "Right to water and sanitation" - ] - }, - { - "text": "Further strengthen the capacity to counter natural disasters ", - "values": [ - "Environment" - ] - }, - { - "text": "In cooperation with the World Health Organization (WHO), continue to improve its domestic healthcare system and provide quality healthcare services to its people ", - "values": [ - "Right to health", - "Technical assistance and cooperation" - ] - }, - { - "text": "Take all necessary measures to avoid unlawful arrests and detentions", - "values": [ - "Detention" - ] - }, - { - "text": "Accelerate efforts, under the Organization Act No. 1-2004 on comprehensive protection measures against gender-based violence, to facilitate access to medical and legal services for women in distress across Spain, particularly within immigrant communities ", - "values": [ - "Migrants", - "Women's rights" - ] - }, - { - "text": "Ensure the full enjoyment of the rights to freedom of expression, association and peaceful assembly, including those of human rights activists, journalists and users of social networks, so that they no longer have to fear being arrested, detained, harassed or intimidated", - "values": [ - "Civil society", - "Detention", - "Freedom of association and peaceful assembly", - "Freedom of opinion and expression", - "Freedom of the press", - "Human rights defenders" - ] - }, - { - "text": "Appoint an independent ombudsperson to guarantee more effective control of compliance with human rights norms by State organs", - "values": [ - "National Human Rights Institution" - ] - }, - { - "text": "Ensure implementation of new measures to improve the business and investment climate in the country", - "values": [ - "Development" - ] - }, - { - "text": "Continue to spread human rights awareness throughout the country ", - "values": [ - "Human rights education and training" - ] - }, - { - "text": "Continue to implement its comprehensive programme to combat human trafficking and to encourage all cooperation with the relevant international organizations in this respect", - "values": [ - "Trafficking" - ] - }, - { - "text": "Coordinate closely with civil society, the Commission for Human Rights and Good Governance and other key stakeholders to have a shared view and systematic monitoring of the implementation of universal periodic review recommendations", - "values": [ - "Civil society", - "National Human Rights Institution", - "UPR process" - ] - }, - { - "text": "Continue its efforts to abolish the death penalty", - "values": [ - "Death penalty" - ] - }, - { - "text": "Introduce and implement a national child protection framework", - "values": [ - "Rights of the Child" - ] - }, - { - "text": "Enhance the implementation of the international human rights treaties, to which the Lao People's Democratic Republic is a party and the ASEAN Human Rights Declaration to benefit the entire Lao population", - "values": [ - "International instruments" - ] - }, - { - "text": "Mainstream human rights in all national programmes and policies ", - "values": [ - "General" - ] - }, - { - "text": "Take immediate measures to investigate the excessive use of force and incidents of torture by the security forces and to prosecute and punish its perpetrators ", - "values": [ - "Human rights violations by state agents", - "Torture and other CID treatment" - ] - }, - { - "text": "Ratify the Rome Statute ", - "values": [ - "International instruments", - "Justice" - ] - }, - { - "text": "Release all children in solitary confinement", - "values": [ - "Detention", - "Rights of the Child" - ] - }, - { - "text": "Establish and implement a comprehensive integration strategy for an early-stage integration of migrants, refugees and asylum-seekers ", - "values": [ - "Asylum-seekers - refugees", - "Migrants" - ] - }, - { - "text": "Move towards the adoption of a comprehensive law against all forms of discrimination, including discrimination on the basis of sexual orientation and gender identity, that punishes and prohibits all forms of discrimination in public and private settings", - "values": [ - "Sexual Orientation and Gender Identity" - ] - }, - { - "text": "Abolish the death penalty completely and replace it in its legislation with other sanctions that do not include cruel, inhuman or degrading treatment", - "values": [ - "Death penalty" - ] - }, - { - "text": "Ensure the effective implementation in all provinces of the protocol for the comprehensive care of persons entitled to legal termination of pregnancy and of the national plan on comprehensive sexual education", - "values": [ - "Right to health", - "Women's rights" - ] - }, - { - "text": "Develop infrastructure in rural areas to enable better access for people to basic social services", - "values": [ - "Development" - ] - }, - { - "text": "Undertake an extensive investigation into acts of on-going violence as well as all allegations of human rights violations", - "values": [ - "General" - ] - }, - { - "text": "Continue endeavours to promote and protect the rights of children and women", - "values": [ - "Rights of the Child", - "Women's rights" - ] - }, - { - "text": "Strengthen its laws prohibiting physical abuse of children, including sexual exploitation ", - "values": [ - "Rights of the Child" - ] - }, - { - "text": "Further develop policies aiming for inclusive education and access to work for people with disabilities", - "values": [ - "Disabilities", - "Labour", - "Right to education" - ] - }, - { - "text": "Pursue a policy of mother-tongue language education in conjunction with national languages of Setswana and English.", - "values": [ - "Right to education" - ] - }, - { - "text": "Make decisive efforts to criminalize the practice of placing children in domestic service", - "values": [ - "Labour", - "Rights of the Child" - ] - }, - { - "text": "Continue its programmes to combat violence against women, including addressing the values and attitudes that contribute to the perpetration of violence", - "values": [ - "Women's rights" - ] - }, - { - "text": "Rapidly adopt a legal framework establishing a National Human Rights Institution, in conformity with the Paris Principles ", - "values": [ - "National Human Rights Institution" - ] - }, - { - "text": "Establish the Constitutional Council as foreseen by 17th Amendment to the Constitution as soon as possible, and that this Council be mandated to appoint a number of commissioners to public Commissions, such as the NHRC and the Police Commission.", - "values": [ - "Other" - ] - }, - { - "text": "Withdrawal of Israel from the Gaza strip, East Jerusalem and the West Bank, these are occupied territories of the State of Palestine that have been recognised as such by 138 States on 29 November last year by the General Assembly", - "values": [ - "Other" - ] - }, - { - "text": "Expand the use of technology in order to reduce judiciary delays and improve judicial efficiency ", - "values": [ - "Justice" - ] - }, - { - "text": "Adopt concrete measures to remove children from the streets and preventing their use in prostitution, pornography and other illegal acts", - "values": [ - "Rights of the Child" - ] - }, - { - "text": "Take further measures for the effective investigation, prosecution and punishment of hate crimes against lesbian, gay, bisexual, transgender and intersex persons and women, including femicides, as well as crimes against human rights defenders, journalists, justice workers and campesino community members in Bajo Agua", - "values": [ - "Freedom of the press", - "Human rights defenders", - "Justice", - "Sexual Orientation and Gender Identity", - "Women's rights" - ] - }, - { - "text": "Allow foreign residents to vote in local elections, and take all necessary measures to ensure the enjoyment by non-citizens of human rights in general ", - "values": [ - "Elections", - "Migrants" - ] - }, - { - "text": "Undertake activities to eliminate stereotypes, identifying the obstacles that hinder women from taking up their rightful place in society ", - "values": [ - "Women's rights" - ] - }, - { - "text": "Continue to tackle the issue of women's empowerment in the light of the recommendations emerging from this review and of those made by the relevant treaty bodies", - "values": [ - "Treaty bodies", - "UPR process", - "Women's rights" - ] - }, - { - "text": "Adopt a law explicitly making racial motivation an aggravating circumstance for crimes and offences", - "values": [ - "Racial discrimination" - ] - }, - { - "text": "Continue its efforts in ensuring that education system will benefit all groups in the society regardless their backgrounds", - "values": [ - "Right to education" - ] - }, - { - "text": "Continue to provide and improve human rights education and training for judicial and law enforcement officials", - "values": [ - "Human rights education and training" - ] - }, - { - "text": "Complete the nomination of members of the NHRC with a view to render it operational, if not done so yet", - "values": [ - "National Human Rights Institution" - ] - }, - { - "text": "Speed up the ratification process of the core international treaties which it has signed over recent years and to strengthen its human rights institutional framework.", - "values": [ - "International instruments" - ] - }, - { - "text": "Strengthen efforts to protect lesbian, gay, bisexual, transgender and intersex persons against violence and discrimination", - "values": [ - "Sexual Orientation and Gender Identity" - ] - }, - { - "text": "[Freedom of thought, conscience and religions] Including for Ahmadi Muslims, and provide that community with the accreditation it needs to worship openly and in compliance with Algerian law", - "values": [ - "Freedom of religion and belief", - "Minorities" - ] - }, - { - "text": "Consider ratifying the Convention on the Rights of Persons with Disabilities and continue its efforts to implement the National Action Plan on Persons with Disabilities 2014-2018", - "values": [ - "Disabilities", - "International instruments" - ] - }, - { - "text": "Recognize explicitly the legitimacy of the job done by human rights defenders and ensure that their work is carried out in a safe and enabling environment, without fear of reprisals, intimidations or acts of violence, which should be sanctioned, and those responsible be taken before justice", - "values": [ - "Human rights defenders" - ] - }, - { - "text": "Consider granting Qatari nationality to the children of Qatari women married to foreign nationals", - "values": [ - "Women's rights" - ] - }, - { - "text": "Continue the implementation of the education plan of 2014-2016", - "values": [ - "Right to education" - ] - }, - { - "text": "Take appropriate measures to prevent and combat harmful traditional practices which discriminate against women, especially in rural areas", - "values": [ - "Torture and other CID treatment", - "Women's rights" - ] - }, - { - "text": "Explicitly prohibit all forms of corporal punishment, including in the home, and repeal the "right of correction" in the Civil Code", - "values": [ - "Rights of the Child", - "Torture and other CID treatment" - ] - }, - { - "text": "Ensure that existing statutes prohibiting gender discrimination are properly implemented and enforced, and increase through effective implementation and enforcement efforts to address violence against women and children ", - "values": [ - "Rights of the Child", - "Women's rights" - ] - }, - { - "text": "Review the definition of torture in its national law so that it complies fully with that in article 1 of the Convention against the Torture and other Cruel, Inhuman or Degrading Treatment or Punishment ", - "values": [ - "International instruments", - "Torture and other CID treatment" - ] - }, - { - "text": "Establish a national human rights institution in accordance with the Paris Principles to monitor and promote human rights, including its mandate to receive and take actions on individual complaints ", - "values": [ - "National Human Rights Institution" - ] - }, - { - "text": "Take the necessary measures to ensure that all persons who have allegedly committed war crimes are tried before the national courts and that victims receive due redress", - "values": [ - "Justice" - ] - }, - { - "text": "Put in place adequate measures to protect civilians, in particular innocent women and children, in any situation of armed violence, and to create the necessary conditions to abate the present situation of the millions of internally displaced persons", - "values": [ - "Internally displaced persons", - "International humanitarian law", - "Rights of the Child", - "Women's rights" - ] - }, - { - "text": "Continue cooperation with treaty bodies and special procedures ", - "values": [ - "Special procedures", - "Treaty bodies" - ] - }, - { - "text": "Continue and further expand human rights awareness-raising programmes ", - "values": [ - "Human rights education and training" - ] - }, - { - "text": "Increase professional and effective working procedures in addressing child sexual abuse cases", - "values": [ - "Rights of the Child" - ] - }, - { - "text": "Continue to implement programmes aimed at guaranteeing quality education and health services to its population, at all levels ", - "values": [ - "Right to education", - "Right to health" - ] - }, - { - "text": "Provide greater resources to its court system to reduce pretrial detention ", - "values": [ - "Detention" - ] - }, - { - "text": "Further pursue its efforts aimed at promoting economic growth and raising living standards in the Sultanate ", - "values": [ - "General" - ] - }, - { - "text": "Continue education reforms in order to reduce the illiteracy rate in the country", - "values": [ - "Right to education" - ] - }, - { - "text": "Take all measures necessary to reduce the homicide rate, especially by allocating substantial resources for strengthening the national civil police and for reforming the justice system to ensure the prosecution of those committing homicide", - "values": [ - "Justice", - "Public security" - ] - }, - { - "text": "Continue adopting all the necessary measures to promote human rights in the country", - "values": [ - "General" - ] - }, - { - "text": "Amend the Charities and Societies Proclamation to facilitate the effective operation and financing of NGOs ", - "values": [ - "Civil society", - "Freedom of association and peaceful assembly" - ] - }, - { - "text": "Adopt measures to improve the system of protection of children and adolescents, and in particular, to eradicate child abuse in homes and reform the juvenile justice system ", - "values": [ - "Justice", - "Rights of the Child" - ] - }, - { - "text": "Ratify the International Convention for the Protection of All Persons from Enforced Disappearance (CED)", - "values": [ - "Enforced disappearances", - "International instruments" - ] - }, - { - "text": "Allocate sufficient resources to strengthen public health, aiming to provide affordable and quality basic medical services", - "values": [ - "Right to health" - ] - }, - { - "text": "Incorporate human rights training and education strategies in their public policies ", - "values": [ - "Human rights education and training" - ] - }, - { - "text": "Bring its national Office of the Ombudsman into line with the Paris Principles", - "values": [ - "National Human Rights Institution" - ] - }, - { - "text": "Continue its efforts to implement the comprehensive program to protect the rights and empowerment of women", - "values": [ - "Women's rights" - ] - }, - { - "text": "Continue to focus on the Sustainable Development Goals in its international engagements, especially those related to education, health, sanitation and poverty alleviation", - "values": [ - "Development", - "Poverty", - "Right to education", - "Right to health", - "Right to water and sanitation" - ] - }, - { - "text": "Intensify its efforts to increase school attendance of the Roma children and to effectively implement the national strategy by correlating it with specific programs and by strengthening the implementation structures for the Roma at local level ", - "values": [ - "Minorities", - "Right to education", - "Rights of the Child" - ] - }, - { - "text": "Take measures to put an end to the recruitment of children by the armed forces or armed groups", - "values": [ - "International humanitarian law", - "Rights of the Child" - ] - }, - { - "text": "Urge the international agencies to support the efforts of the Government of Yemen in combating poverty, reducing unemployment and improving the level of food security ", - "values": [ - "Development", - "Poverty", - "Right to food" - ] - }, - { - "text": "Initiate procedures for the opening of Turkish-Greek bilingual kindergartens, as well as new bilingual minority schools in line with the current needs of the minority ", - "values": [ - "Minorities", - "Right to education", - "Rights of the Child" - ] - }, - { - "text": "Resolve the dispute between the San of the Reserve.", - "values": [ - "Indigenous peoples" - ] - }, - { - "text": "Support the efforts of civil society in strengthening human rights through specifying the necessary resources to implement its activities in spreading awareness on the principles of human rights", - "values": [ - "Civil society", - "Human rights education and training" - ] - }, - { - "text": "Further develop its integration policy of migrants and national minorities into the society ", - "values": [ - "Migrants", - "Minorities" - ] - }, - { - "text": "Improve the situation of the Roma population, particularly as concerns compensation to women subjected to forced sterilization prior to 2004", - "values": [ - "Minorities", - "Torture and other CID treatment", - "Women's rights" - ] - }, - { - "text": "Take the adequate measures to enlarge the space allocated to civil society", - "values": [ - "Civil society" - ] - }, - { - "text": "Abolish all harmful and discriminatory customary laws and practices which are directed towards women and girls", - "values": [ - "Rights of the Child", - "Women's rights" - ] - }, - { - "text": "Implement the recommendations of the Committee on the Elimination of Discrimination against Women, establishing a monitoring system and implementing legislation to combat domestic violence and other forms of violence against women", - "values": [ - "Treaty bodies", - "Women's rights" - ] - }, - { - "text": "Rescind the 2006 Council of Ulemo fatwa against women attending mosques ", - "values": [ - "Freedom of religion and belief", - "Women's rights" - ] - }, - { - "text": "Pursue its efforts to guarantee access for all its children to free and compulsory primary education by enhancing the implementation of its national action plan for education for all", - "values": [ - "Right to education", - "Rights of the Child" - ] - }, - { - "text": "Introduce a general statutory time limit on immigration detention and ensure such detention is not used in the case of vulnerable individuals or groups", - "values": [ - "Detention", - "Migrants" - ] - }, - { - "text": "Repeal the death penalty ", - "values": [ - "Death penalty" - ] - }, - { - "text": "Promulgate legislation on a moratorium on the death penalty, as referred to in the national report ", - "values": [ - "Death penalty" - ] - }, - { - "text": "Continue efforts in the field of combating human trafficking", - "values": [ - "Trafficking" - ] - }, - { - "text": "Further advance access to the right to freedom of expression and freedom of the press by ensuring current national press legislation evolves in conformity with international human rights standards", - "values": [ - "Freedom of opinion and expression", - "Freedom of the press", - "International instruments" - ] - }, - { - "text": "Repeal all provisions in the law which may be used to criminalize consensual sexual activity between adults ", - "values": [ - "Sexual Orientation and Gender Identity" - ] - }, - { - "text": "Consider ratifying ILO Convention 189 on Decent Work for Domestic Workers and the ICRMW ", - "values": [ - "International instruments", - "Labour", - "Migrants" - ] - }, - { - "text": "Ratify the Council of Europe Convention on Preventing and Combating Violence against Women and Domestic Violence and take necessary measures to implement this on the ground", - "values": [ - "International instruments", - "Rights of the Child", - "Women's rights" - ] - }, - { - "text": "Implement the relevant treaty body recommendations, in particular the International Covenant on Economic, Social and Cultural Rights (ICESCR) recommendation to step up efforts to prevent and halt killings of so-called "witch children" by including provisions in the criminal law to suppress this practice and organizing campaigns to heighten awareness of its criminal nature among local authorities, doctors, midwives and the population at large", - "values": [ - "Human rights education and training", - "Rights of the Child", - "Treaty bodies" - ] - }, - { - "text": "Remove jurisdiction over torture cases involving police and prison abuse from the Police Court to civil courts", - "values": [ - "Human rights violations by state agents", - "Torture and other CID treatment" - ] - }, - { - "text": "Establish a national institution for the promotion and protection of human rights with a broad mandate and independent membership", - "values": [ - "National Human Rights Institution" - ] - }, - { - "text": "Reinforce its legislative framework to protect children from all forms of sexual abuse and exploitation, including in the family ", - "values": [ - "Rights of the Child" - ] - }, - { - "text": "Adopt appropriate legislative measures to prevent any form of discrimination against women", - "values": [ - "Women's rights" - ] - }, - { - "text": "Ensure swift approval of its plan to recognize the right to strike, in accordance with the Andorran Constitution and international standards", - "values": [ - "Freedom of association and peaceful assembly", - "Labour" - ] - }, - { - "text": "Ensure the rights of people with disabilities during their employment, especially in public bodies or authorities", - "values": [ - "Disabilities", - "Labour" - ] - }, - { - "text": "Continue its efforts towards promoting equal opportunities between men and women, especially in regards to labour rights", - "values": [ - "Labour", - "Women's rights" - ] - }, - { - "text": "Develop a national plan to provide protection and ensure the rights of all displaced persons in accordance with the Guiding Principles on Internal Displacement", - "values": [ - "Internally displaced persons" - ] - }, - { - "text": "Continue its efforts to raise the level of gender awareness not only among public servants at all levels of the government, but also among community at large", - "values": [ - "Women's rights" - ] - }, - { - "text": "Elaborate and apply alternative penalties to prison incarceration and take all necessary measures to decrease the excessive use of pre-trial detention ", - "values": [ - "Detention" - ] - }, - { - "text": "Take the measures necessary for the implementation of the MDGs, including the strategy paper for poverty eradication and the Malawi strategy for economic development ", - "values": [ - "Development", - "Poverty" - ] - }, - { - "text": "Take further efforts in addressing the problem of unemployment, socio-economic inequality and social vulnerability among its population ", - "values": [ - "Poverty" - ] - }, - { - "text": "Fully train and equip relevant authorities to enforce laws on occupational safety and health as well as the right to organize and bargain collectively ", - "values": [ - "Labour" - ] - }, - { - "text": "Accelerate efforts to adopt an Anti-Discrimination Law", - "values": [ - "Other" - ] - }, - { - "text": "Remain a promoter of freedom of expression, at national and international levels, and to review the current text of the Protection of State Information Bill ", - "values": [ - "Freedom of opinion and expression" - ] - }, - { - "text": "Review legislation in conformity with international commitments ", - "values": [ - "International instruments" - ] - }, - { - "text": "Amend the 2009 Media Law to comply with its international obligations, with particular focus on removing unjustified interference with the right to freedom of expression ", - "values": [ - "Freedom of opinion and expression", - "Freedom of the press" - ] - }, - { - "text": "Continue with the support and cooperation of the international community to fight poverty ", - "values": [ - "Poverty" - ] - }, - { - "text": "Implement, strictly, the Convention on the Elimination of All Forms of Discrimination against Women and accede to its Optional Protocol", - "values": [ - "International instruments", - "Women's rights" - ] - }, - { - "text": "Granting the right to those who object to serve in the army on conscientious grounds to serve instead with a civilian body independent of the military, such as in the form of the newly established and strengthened Public Commission for National Civil Service", - "values": [ - "Freedom of religion and belief" - ] - }, - { - "text": "Conduct training programmes on human rights to increase awareness among public servants, especially the staff of law enforcement bodies and the judiciary", - "values": [ - "Human rights education and training", - "Justice" - ] - }, - { - "text": "Provide the necessary resources to improve the schooling of children which belong to vulnerable groups and to combat the early dropout rates of children", - "values": [ - "Right to education", - "Rights of the Child" - ] - }, - { - "text": "Lift its reservations to articles 9 and 29 of CEDAW and its reservation to CRC ", - "values": [ - "International instruments", - "Rights of the Child", - "Statelessness and the right to nationality", - "Women's rights" - ] - }, - { - "text": "Establish without delay a moratorium on the death penalty and ratify the Second Optional Protocol to the International Covenant on Civil and Political Rights, aiming at the abolition of the death penalty", - "values": [ - "Death penalty", - "International instruments" - ] - }, - { - "text": "Redouble efforts to ensure the empowerment of women in political and economic plans in order to reduce gender inequalities", - "values": [ - "Women's rights" - ] - }, - { - "text": "Make efforts towards the ratification of ICCPR-OP 2 ", - "values": [ - "Death penalty", - "International instruments" - ] - }, - { - "text": "Amend the criminal legislation to criminalize domestic violence and ensure that authorities pursue prosecution of domestic violence to hold offenders accountable and provide adequate funding of all services for victims of domestic violence", - "values": [ - "Rights of the Child", - "Women's rights" - ] - }, - { - "text": "Take concrete steps to create and maintain a safe and enabling environment for human rights defenders", - "values": [ - "Human rights defenders" - ] - }, - { - "text": "Incorporate necessary reforms for the complete abolition of the death penalty ", - "values": [ - "Death penalty" - ] - }, - { - "text": "Ratify the Palermo Protocol", - "values": [ - "International instruments", - "Trafficking" - ] - }, - { - "text": "Prioritize, with support from the Office of the High Commissioner for Human Rights and the international community, the legislative reform to harmonize the national legislation with CEDAW, abrogate the discriminatory provisions in the Family Code, Penal Code and tax legislation in order to achieve legal equality and allow real equality for women, while adopting a general law on violence against women", - "values": [ - "International instruments", - "Technical assistance and cooperation", - "Women's rights" - ] - }, - { - "text": "Take the necessary measures to ensure that national protection laws against sexual violence, including in the domestic context, be applied at all levels consistently and effectively to fight against impunity", - "values": [ - "Impunity", - "Rights of the Child", - "Women's rights" - ] - }, - { - "text": "Consider ratifying the International Labour Organization Domestic Workers Convention, 2011 (No. 189)", - "values": [ - "International instruments", - "Labour" - ] - }, - { - "text": "Launch media programmes to raise awareness on human rights", - "values": [ - "Human rights education and training" - ] - }, - { - "text": "Ensure that the Ombudsman of Human Rights and Freedoms has the necessary resources and staff in order to fully carry out its functions", - "values": [ - "National Human Rights Institution" - ] - }, - { - "text": "Continue to combat poverty with the assistance from international community", - "values": [ - "Poverty", - "Technical assistance and cooperation" - ] - }, - { - "text": "Take effective measures to ensure that prison conditions are consistent with international standards.", - "values": [ - "Detention" - ] - }, - { - "text": "Ratify the Rome Statute of the ICC and fully align its legislation with all obligations under the Rome Statute, including incorporating the Rome Statute's definition of crimes and general principles, as well as adopting provisions enabling cooperation with the Court ", - "values": [ - "International instruments", - "Justice" - ] - }, - { - "text": "Ratify the Protocol No. 14 to the European Convention on Human Rights and the Charter for Regional and Minority Languages ", - "values": [ - "Minorities" - ] - }, - { - "text": "Implement the National Roma Integration Strategy with special focus on improving Roma employment in rural areas, ensuring health insurance coverage, improving housing conditions and combating hate speech against Roma", - "values": [ - "Labour", - "Minorities", - "Racial discrimination", - "Right to health", - "Right to housing" - ] - }, - { - "text": "Strengthen collaboration with the relevant stakeholders to address the causes of gender-based violence", - "values": [ - "Women's rights" - ] - }, - { - "text": "Step up efforts to end violence against women and children, and eliminate harmful practices such as female genital mutilation and killing of women accused of witchcraft", - "values": [ - "Rights of the Child", - "Torture and other CID treatment", - "Women's rights" - ] - }, - { - "text": "Consider ratifying Optional Protocol to the Convention against Torture", - "values": [ - "Detention", - "International instruments", - "Torture and other CID treatment" - ] - }, - { - "text": "Repeal legislation that does not comply with international human rights law, in particular the amendment to the Information and Communication Act, enacted in 2013 and the amendment to the Criminal Code, enacted in 2013", - "values": [ - "Freedom of opinion and expression", - "Freedom of the press", - "International instruments" - ] - }, - { - "text": "Continue applying special legal measures to juvenile from the detention stage until confinement and enforcement of the sentence, including by considering incorporating restorative justice principles in the juvenile justice system", - "values": [ - "Detention", - "Justice", - "Rights of the Child" - ] - }, - { - "text": "Take necessary steps to find a final solution to the problem of overcrowding in some prisons in Switzerland", - "values": [ - "Detention" - ] - }, - { - "text": "Establish a national human rights institution that fully complies with the Paris Principles", - "values": [ - "National Human Rights Institution" - ] - }, - { - "text": "Take immediate action to allow journalists, political activists and human rights defenders, including those critical of the Government, to exercise their right to freedom of expression and opinion without threats and harassment, and urgently investigate all reports of human rights abuses, and ensure that those responsible are held accountable ", - "values": [ - "Freedom of opinion and expression", - "Freedom of the press", - "Human rights defenders" - ] - }, - { - "text": "Submit its reports to the Human Rights Committee and Committee against Torture", - "values": [ - "CP rights - general", - "Torture and other CID treatment", - "Treaty bodies" - ] - }, - { - "text": "Reinforce the Ombudsman, as a national institution compliant with the Paris Principles, with legislative measures, human and financial resources ", - "values": [ - "National Human Rights Institution" - ] - }, - { - "text": "Promote efficiently equality between men and women, and take all necessary measures to combat violence against women and trafficking in persons", - "values": [ - "Trafficking", - "Women's rights" - ] - }, - { - "text": "Ratify the International Convention for the Protection of All Persons from Enforced Disappearance and recognize the competence of the Committee on Enforced Disappearances to receive and examine communications", - "values": [ - "Enforced disappearances", - "International instruments", - "Treaty bodies" - ] - }, - { - "text": "Seek the assistance of the Special Rapporteur on adequate housing to mitigate the problem of the lack of adequate land and assistance to the rural population ", - "values": [ - "Right to housing", - "Right to land", - "Special procedures" - ] - }, - { - "text": "Address the root causes of child labour by drawing up a cash-foreducation programme or a similar programme that is aimed at reducing poverty and guaranteeing children's right to education, with a specific focus on rural areas and indigenous communities ", - "values": [ - "Indigenous peoples", - "Labour", - "Poverty", - "Right to education", - "Rights of the Child" - ] - }, - { - "text": "Continue its efforts to improve health services, especially for vulnerable women and children with HIV/AIDS", - "values": [ - "HIV - Aids", - "Right to health", - "Rights of the Child", - "Women's rights" - ] - }, - { - "text": "Put into operation this important mechanism, the Commission of Inquiry, including by expediting the appointment of its members to look into the 2011 events and bring those who committed human rights violation to account ", - "values": [ - "Justice" - ] - }, - { - "text": "Take the measures necessary to protect children from hazardous work in the informal sector ", - "values": [ - "Labour", - "Rights of the Child" - ] - }, - { - "text": "Consider acceding to the International Convention for Protection of All Persons from Enforced Disappearance", - "values": [ - "Enforced disappearances", - "International instruments" - ] - }, - { - "text": "With regard to the criminalisation of relations between adults of the same sex, consider harmonising domestic standards with international ones so as to ensure the full exercise of all human rights", - "values": [ - "Sexual Orientation and Gender Identity" - ] - }, - { - "text": "Intensify its efforts to combat gender-based violence against women and girls, including from minority communities", - "values": [ - "Minorities", - "Rights of the Child", - "Women's rights" - ] - }, - { - "text": "Continue to promote initiatives to empower women of the country at an economic, political and social level, doubling efforts to eliminate discriminatory practices which still affect them, as reflected in CEDAW's report of February this year", - "values": [ - "ESC rights - general", - "International instruments", - "Women's rights" - ] - }, - { - "text": "Accede to the International Convention on the Protection of All Persons from Enforced Disappearance and recognize the competence of the Committee", - "values": [ - "Enforced disappearances", - "International instruments", - "Treaty bodies" - ] - }, - { - "text": "Reduce significantly the periods of pre-trial detention and ensure that minors have separate spaces in the detention centres and prisons", - "values": [ - "Detention", - "Rights of the Child" - ] - }, - { - "text": "Cooperate with Human Rights Council special procedures and mechanisms, as well as engage in a dialogue with OHCHR with a view to ensuring respect for human rights and fundamental freedoms ", - "values": [ - "Special procedures", - "UPR process" - ] - }, - { - "text": "Proceed with the ratification of the Optional Protocol to the Convention on the Elimination of All Forms of Discrimination against Women", - "values": [ - "International instruments", - "Women's rights" - ] - }, - { - "text": "Strengthen legislation on violence against women and domestic violence by adopting the draft law on the subject and by acceding to the Istanbul Convention", - "values": [ - "International instruments", - "Women's rights" - ] - }, - { - "text": "Continue to promote human rights in accordance with the values of the country", - "values": [ - "General" - ] - }, - { - "text": "Put into effect its undertaking of previous commitment to implement this year, in strengthening the free health care sector to include all children under the age of twelve", - "values": [ - "Right to health", - "Rights of the Child", - "UPR process" - ] - }, - { - "text": "Intensify programs to combat crime and extreme poverty ", - "values": [ - "Poverty", - "Public security" - ] - }, - { - "text": "Address discrimination and violence against women through education and specific legislation both in the public and private sectors. ", - "values": [ - "Women's rights" - ] - }, - { - "text": "Strengthen all kinds of measures to combat violence against women and girls, inter alia, adoption of a broader law to criminalize all forms of violence against women ", - "values": [ - "Rights of the Child", - "Women's rights" - ] - }, - { - "text": "Give precedence to the principle of non-refoulement when considering the situation of refugees or asylum-seekers who allege that their lives, liberty or personal integrity may be at risk in their countries of origin ", - "values": [ - "Asylum-seekers - refugees" - ] - }, - { - "text": "Ratify the Rome Statute", - "values": [ - "International instruments", - "Justice" - ] - }, - { - "text": "Guarantee the full enjoyment of the rights of the LGBT community ", - "values": [ - "Sexual Orientation and Gender Identity" - ] - }, - { - "text": "Refrain from adopting legislation which may limit the rights and freedoms of lesbian, gay, bisexual, transgender and intersex persons", - "values": [ - "Sexual Orientation and Gender Identity" - ] - }, - { - "text": "Support the role of the family in protecting and promoting the rights of persons with disabilities, and accelerate implementation of the necessary legal conditions for the realization of their rights in services and public places", - "values": [ - "Disabilities" - ] - }, - { - "text": "Continue with the reform of its Penal Code, including article 301 ", - "values": [ - "Freedom of opinion and expression", - "Freedom of the press" - ] - }, - { - "text": "Issue and implement a standing invitation to all special procedures.", - "values": [ - "Special procedures" - ] - }, - { - "text": "Take effective measures to guarantee the impartiality and independence of the judiciary, in accordance with Swaziland's international commitments and obligations, including the United Nations Basic Principles on the Independence of the Judiciary and the International Covenant on Civil and Political Rights", - "values": [ - "International instruments", - "Justice" - ] - }, - { - "text": "Strengthen measures to fight human trafficking, especially of women and children, in line with international legal standards in this area", - "values": [ - "Rights of the Child", - "Trafficking", - "Women's rights" - ] - }, - { - "text": "Take concrete steps to effectively ensure that all persons deprived of their liberty are brought before a judge without delay.", - "values": [ - "Justice" - ] - }, - { - "text": "Expedite progress in preparing the legal framework for a national human rights institution ", - "values": [ - "National Human Rights Institution" - ] - }, - { - "text": "Take necessary measures to accede to CRPD", - "values": [ - "Disabilities", - "International instruments" - ] - }, - { - "text": "Take all necessary legal measures for ratifying the Optional Protocols to the International Covenant on Economic, Social and Cultural Rights and to the International Convention on the Protection of All Persons from Enforced Disappearance", - "values": [ - "ESC rights - general", - "Enforced disappearances", - "International instruments" - ] - }, - { - "text": "Take action to ensure the safety and freedom of action of human rights defenders ", - "values": [ - "Human rights defenders" - ] - }, - { - "text": "Take effective measures to eradicate underage recruitment under 18, to elaborate programmes for protection of children from torture, cruel, inhuman or degrading treatment and to provide independent access to physical and psychological recovery, social reintegration and compensation for victims of armed conflicts ", - "values": [ - "International humanitarian law", - "Rights of the Child", - "Torture and other CID treatment" - ] - }, - { - "text": "Advance the development of a national poverty policy and strengthen efforts in implementation of the country's Social Protection Strategy", - "values": [ - "Poverty" - ] - }, - { - "text": "Accelerate efforts to devise and implement anti-discrimination public awareness programmes, including in the health services sector, and intensify campaigns to encourage tolerance and interreligious and intercultural dialogue", - "values": [ - "Freedom of religion and belief", - "Human rights education and training", - "Racial discrimination", - "Right to health" - ] - }, - { - "text": "Promote the drafting of a new law in order to establish a National Institution of Human Rights in accordance with the Paris Principles", - "values": [ - "National Human Rights Institution" - ] - }, - { - "text": "Enforce the principle of equality before the law with regard to immigrants living in Liechtenstein on the same footing as to its citizens ", - "values": [ - "Migrants" - ] - }, - { - "text": "Continue to develop legislation and policies to promote gender equality, placing particular focus on the participation of women in politics", - "values": [ - "Women's rights" - ] - }, - { - "text": "Further support human rights machinery and capacity building in its national institutions to implement the human rights instruments, such as the introduction of a human rights charter as pledged in 2006.", - "values": [ - "Other" - ] - }, - { - "text": "Adopt institutional measures to improve the quality of live, ensuring that minors and adolescents remain permanently in the country, and preventing their unaccompanied migration. In the repatriation processes, ensure that the principle of the best interest of the child is respected and promote their effective social reintegration", - "values": [ - "Migrants", - "Rights of the Child" - ] - }, - { - "text": "Repeal the law against homosexuality, which facilitates discrimination against lesbian, gay, bisexual and transgender people, encourages harassment and violence against them and imposes sentences of life imprisonment for the offenses of homosexuality, same-sex marriage and "aggravated homosexuality"", - "values": [ - "Sexual Orientation and Gender Identity" - ] - }, - { - "text": "Ensure that all laws and policies adopted are in conformity with international human rights law and standards, including on the fight against terrorism", - "values": [ - "International instruments", - "Public security" - ] - }, - { - "text": "Continue actions to address the needs of persons with disabilities", - "values": [ - "Disabilities" - ] - }, - { - "text": "Ratify ICCPR-OP 2 and OP-ICESCR, as recommended previously, approve a National Action Plan on Women Peace and Security in accordance with Security Council resolution 1325 (2000)", - "values": [ - "Death penalty", - "ESC rights - general", - "International instruments", - "UPR process", - "Women's rights" - ] - }, - { - "text": "Ensure effective implementation of its National Strategy on Child Protection for 2014-2020", - "values": [ - "Rights of the Child" - ] - }, - { - "text": "Review the Family Code and the law on nationality, in particular to ensure gender equality in the area of divorce and the acquisition of nationality by affiliation", - "values": [ - "Statelessness and the right to nationality", - "Women's rights" - ] - }, - { - "text": "Amend legislation that provides for the application of the death penalty, in light of the obligations undertaken under the Second Optional Protocol to the International Covenant on Civil and Political Rights", - "values": [ - "Death penalty", - "International instruments" - ] - }, - { - "text": "Continue to fully implement the Disabilities Act 2014", - "values": [ - "Disabilities" - ] - }, - { - "text": "Fully eliminate discrimination between women and men with regard to inheritance rights", - "values": [ - "Women's rights" - ] - }, - { - "text": "Abolish capital punishment", - "values": [ - "Death penalty" - ] - }, - { - "text": "Ensure the full implementation of child labour provisions, and take all necessary measures to prevent child labour in both rural and urban areas, including child domestic work ", - "values": [ - "Labour", - "Rights of the Child" - ] - }, - { - "text": "Take the necessary measures to guarantee affordable and high quality health care throughout the country", - "values": [ - "Right to health" - ] - }, - { - "text": "Attach great importance to the promotion and protection of the rights of the person of disabilities, and put more efforts in the area of health care, particularly the health of children ", - "values": [ - "Disabilities", - "Right to health", - "Rights of the Child" - ] - }, - { - "text": "Continue efforts in ensuring access to the rights of older persons in the context of an adequate standard of living and healthcare", - "values": [ - "Right to health" - ] - }, - { - "text": "Enact an anti-human trafficking law to protect human rights of migrants from violations by recruitment agencies, brokers and employers", - "values": [ - "Labour", - "Migrants", - "Trafficking" - ] - }, - { - "text": "Improve social and economic conditions of the members of the Traveller community ", - "values": [ - "ESC rights - general", - "Minorities" - ] - }, - { - "text": "Organize on-site visits by the Commission of Inquiry and establish a dialogue with the Commission", - "values": [ - "Technical assistance and cooperation" - ] - }, - { - "text": "Continue efforts to rebuild Somalia while taking into consideration the respect for human rights and international humanitarian law", - "values": [ - "International humanitarian law" - ] - }, - { - "text": "Implement speedily the Committee on the Rights of Persons with Disabilities recommendations", - "values": [ - "Disabilities", - "Treaty bodies" - ] - }, - { - "text": "Establish a national action plan to address domestic and family violence", - "values": [ - "Rights of the Child", - "Women's rights" - ] - }, - { - "text": "Continue with the efforts to strengthen the institutional infrastructure in the field of human rights, particularly through the establishment of independent national human rights entities", - "values": [ - "National Human Rights Institution" - ] - }, - { - "text": "Raise the minimum age of marriage to 18", - "values": [ - "Rights of the Child" - ] - }, - { - "text": "Fully implement the Action Plan to end and prevent the recruitment of children into the armed forces", - "values": [ - "International humanitarian law", - "Rights of the Child" - ] - }, - { - "text": "Ensure equal rights between women and men with regard to personal status, employment and education ", - "values": [ - "Women's rights" - ] - }, - { - "text": "Implement a system of fines to be applied when public authorities do not respond adequately to requests for information", - "values": [ - "Other" - ] - }, - { - "text": "Take legal measures to prohibit all forms of physical and mental violence against children in all settings and to arrange an adequate juvenile justice system", - "values": [ - "Justice", - "Rights of the Child" - ] - }, - { - "text": "Create and ensure the functioning of Constitutional bodies, such as institutions on human rights and good governance, as well as the Constitutional Court", - "values": [ - "Justice" - ] - }, - { - "text": "Ensure legal enforcement of economic, social and cultural rights in domestic courts", - "values": [ - "ESC rights - general" - ] - }, - { - "text": "Open temporary shelters for child victims of abuse and neglect, and provide them with the necessary psychological and other support for their full recovery and social reintegration ", - "values": [ - "Rights of the Child" - ] - }, - { - "text": "Sign and ratify the International Covenant on Civil and Political Rights", - "values": [ - "CP rights - general", - "International instruments" - ] - }, - { - "text": "Continue making progress towards the ratification of the Convention on the Rights of Persons with Disabilities ", - "values": [ - "Disabilities", - "International instruments" - ] - }, - { - "text": "Further enhance the measures to combat discrimination against women and children in vulnerable situations ", - "values": [ - "Rights of the Child", - "Women's rights" - ] - }, - { - "text": "Continue to promote measures to find a positive solution to the Maori population's land claims and promote public policies to reduce the social and economic gap between the Maori people and the rest of the population of New Zealand ", - "values": [ - "ESC rights - general", - "Indigenous peoples", - "Right to land" - ] - }, - { - "text": "Put in place specific legislation to address violence against women, which to date remains generally covered under the Criminal Code", - "values": [ - "Women's rights" - ] - }, - { - "text": "Take appropriate measures to prohibit corporal punishment", - "values": [ - "Torture and other CID treatment" - ] - }, - { - "text": "Adopt and implement measures to ensure that international human rights standards are observed by the Malian Armed Forces, in particular the absolute ban on torture and ill-treatment and to ensure that all reports of torture and other ill-treatment are investigated effectively, with those responsible being brought to justice ", - "values": [ - "Human rights violations by state agents", - "International humanitarian law", - "International instruments", - "Torture and other CID treatment" - ] - }, - { - "text": "Sustain efforts to eradicate domestic violence and gender-based violence", - "values": [ - "Rights of the Child", - "Women's rights" - ] - }, - { - "text": "Take additional measures to ensure non-discrimination, in particular against women", - "values": [ - "Women's rights" - ] - }, - { - "text": "Generation of statistics disaggregated by gender and age groups for human rights indicators", - "values": [ - "Other" - ] - }, - { - "text": "Accede to the International Labour Organization", - "values": [ - "International instruments", - "Labour" - ] - }, - { - "text": "Develop national policies to fight hate crimes and hate speech", - "values": [ - "Racial discrimination" - ] - }, - { - "text": "Further step up efforts with a view to preventing and eliminating trafficking in persons, including considering the possibility of inviting the Special Rapporteur on trafficking in persons, especially women and children ", - "values": [ - "Rights of the Child", - "Special procedures", - "Trafficking", - "Women's rights" - ] - }, - { - "text": "Continue to advance the work of the National Commission for Human Rights through, among others, developing a comprehensive human rights national action plan", - "values": [ - "National Human Rights Institution" - ] - }, - { - "text": "Accede to international refugee protection instruments, adopt national asylum legislation and appropriate administrative structures, and reach a formal agreement with UNHCR to establish the agency's presence and operations in the country", - "values": [ - "Asylum-seekers - refugees", - "International instruments" - ] - }, - { - "text": "Continue its policy to nationally implement its international and regional commitments regarding the rights of women, effectively combating all forms of violence against them. ", - "values": [ - "Women's rights" - ] - }, - { - "text": "Resolve those cases related to confiscated properties from various religious communities", - "values": [ - "Freedom of religion and belief", - "Right to housing" - ] - }, - { - "text": "Strengthen at the constitutional level and in a specific manner, the provisions that prohibit discrimination against women", - "values": [ - "Women's rights" - ] - }, - { - "text": "Strengthen cooperation and partnership, including with OHCHR, to continue with the implementation of national policy in the matters of disability, health and disaster management", - "values": [ - "Disabilities", - "Right to health", - "Technical assistance and cooperation" - ] - }, - { - "text": "Consider the ratification of the international human rights instruments, to which it is not yet a party", - "values": [ - "International instruments" - ] - }, - { - "text": "Ensure that incarcerated minors are detained separately from adults", - "values": [ - "Detention", - "Rights of the Child" - ] - }, - { - "text": "Consider strengthening existing arrangements in order to promote equality of religious communities not belonging to Islam, and of lesbian, gay, bisexual and transgender - LGBT- persons through the repeal or amendment of laws that allow for prosecution or punishment", - "values": [ - "Freedom of religion and belief", - "Sexual Orientation and Gender Identity" - ] - }, - { - "text": "Continue efforts to strengthen freedom of expression and belief", - "values": [ - "Freedom of opinion and expression" - ] - }, - { - "text": "Pursue its policies to increase schooling at all levels and through all educational systems", - "values": [ - "Right to education" - ] - }, - { - "text": "Revise legislative provisions that are discriminatory on the basis of sex, religion, political opinion or sexual orientation", - "values": [ - "Freedom of opinion and expression", - "Freedom of religion and belief", - "Sexual Orientation and Gender Identity", - "Women's rights" - ] - }, - { - "text": "Strengthen the training of the security forces so that they respect human rights in their interventions", - "values": [ - "Human rights education and training" - ] - }, - { - "text": "Take concrete measures to end harassment, verbal threats, sabotage, arson attacks and vandalism faced by the Muslim population and provide access to justice to Roma people and Afro-Swedes and ensure their social inclusion", - "values": [ - "Freedom of religion and belief", - "Justice", - "Minorities", - "Racial discrimination" - ] - }, - { - "text": "Provide more information about the detention of journalists and individuals expressing dissenting views so as to address the concerns expressed by the Secretary-General and the Special Rapporteur", - "values": [ - "Detention", - "Freedom of the press", - "Special procedures" - ] - }, - { - "text": "Continue efforts to submit overdue reports requested by the committees of various international conventions to which Belize is a party, and seek technical assistance for the establishment of these reports.", - "values": [ - "Technical assistance and cooperation", - "Treaty bodies" - ] - }, - { - "text": "Take the necessary measures to implement the UN Program on Small Arms and Light Weapons and revise the national legislation on this matter in order to reduce the existing homicide rate ", - "values": [ - "Public security" - ] - }, - { - "text": "Consider ratifying the Rome Statute, CAT and the second Optional Protocol to ICCPR", - "values": [ - "Death penalty", - "International instruments", - "Justice", - "Torture and other CID treatment" - ] - }, - { - "text": "Strengthen the legal standing as well as the human and financial resources of the national preventive mechanism according to the Optional Protocol to the Convention against Torture and Other Cruel, Inhuman or Degrading Treatment or Punishment so that it operates effectively", - "values": [ - "Detention", - "International instruments", - "Torture and other CID treatment" - ] - }, - { - "text": "Continue its successful and productive measures to counter and eliminate threats of militant insurgents and organized crime groups", - "values": [ - "Public security" - ] - }, - { - "text": "Review the effectiveness of its current legal framework on nondiscrimination with a view to initiating a harmonization process, by including the participation of civil society in this process, as well as simplifying the procedures to ensure that the complaints against racial discrimination are being processed effectively ", - "values": [ - "Civil society", - "Racial discrimination" - ] - }, - { - "text": "With international support, continue to promote education for all, with special attention to achieving gender parity in school enrollment.", - "values": [ - "Right to education", - "Technical assistance and cooperation", - "Women's rights" - ] - }, - { - "text": "Investigate credible allegations of human rights violations by security forces and prosecute, as appropriate, parties responsible in accordance with its international obligations and commitments ", - "values": [ - "Human rights violations by state agents" - ] - }, - { - "text": "Strengthen its cooperation with the international human rights system, through the timely submission of periodic reports to the relevant treaty bodies ", - "values": [ - "Treaty bodies" - ] - }, - { - "text": "Devise a comprehensive national strategy for the implementation of the Convention on the Rights of Persons with Disabilities", - "values": [ - "Disabilities", - "International instruments" - ] - }, - { - "text": "Continue its effort in eliminating discrimination against LGBT starting with the review of its related legislation", - "values": [ - "Sexual Orientation and Gender Identity" - ] - }, - { - "text": "Ensure proper investigation into allegations of violations of international humanitarian and human rights law", - "values": [ - "International humanitarian law" - ] - }, - { - "text": "Continue reducing the poverty rate in rural areas and the wealth gap between rich and poor and between the urban and rural populations ", - "values": [ - "Poverty" - ] - }, - { - "text": "Continue to implement national laws in accordance with its treaty obligations", - "values": [ - "International instruments" - ] - }, - { - "text": "Increase efforts to implement the legal framework regarding illtreatment of children, child labour and sexual exploitation of children ", - "values": [ - "Labour", - "Rights of the Child", - "Torture and other CID treatment" - ] - }, - { - "text": "Adopt legislation aiming at the protection of all children with disabilities with a view to combat discriminatory attitudes", - "values": [ - "Disabilities", - "Rights of the Child" - ] - }, - { - "text": "Implement the National System for Comprehensive Protection and Advancement of Children and Adolescents, with attention to human trafficking and sexual and reproductive health. Pass legislation to protect the rights of unregistered children and remove obstacles to child registration", - "values": [ - "Rights of the Child", - "Statelessness and the right to nationality", - "Trafficking" - ] - }, - { - "text": "Establish an independent national human rights commission as the best means to respond to the people's expectations to enjoy the rule of law ", - "values": [ - "National Human Rights Institution" - ] - }, - { - "text": "Consider ratifying the International Convention for the Protection of All Persons from Enforced Disappearance and the Convention on the Rights of Persons with Disabilities, which will help to enhance the enjoyment of human rights and fundamental freedoms in all aspects of life", - "values": [ - "Disabilities", - "Enforced disappearances", - "International instruments" - ] - }, - { - "text": "Strengthen the authorities of the Assembly of the Peoples of Kazakhstan and to ensure that they are exercised in accordance with the purposes for which the Assembly was created", - "values": [ - "CP rights - general" - ] - }, - { - "text": "Further implement policies to eliminate violence against women and children", - "values": [ - "Rights of the Child", - "Women's rights" - ] - }, - { - "text": "Revisit existing legislation and programmes with the aim to enhance social protection for all migrants, reduce xenophobia, and improve public perception of migrants ", - "values": [ - "Migrants", - "Racial discrimination" - ] - }, - { - "text": "Intensify efforts aimed at instituting interreligious dialogue between elders and religious leaders, including in areas not yet affected by religious unrest, and consider holding a national conference on religious tolerance", - "values": [ - "Freedom of religion and belief" - ] - }, - { - "text": "Strengthen its national strategy to reform the prison system, in particular to promote the prompt reintegration of juvenile detainees into society", - "values": [ - "Detention", - "Rights of the Child" - ] - }, - { - "text": "With the support and cooperation of the international community, continue to fight poverty, ensuring that the benefits are accrued by all citizens in all regions. continue to improve the healthcare system and combat deadly diseases, such as HIV-AIDS.", - "values": [ - "HIV - Aids", - "Poverty", - "Right to health", - "Technical assistance and cooperation" - ] - }, - { - "text": "Consider acceding to International Convention on the Protection of the Rights of All Migrant Workers and Members of Their Families", - "values": [ - "International instruments", - "Labour", - "Migrants" - ] - }, - { - "text": "Ensure that, in the context of the new legislation adopted in 2011, following the universal periodic review 2011 recommendations, the self-governments truly represents the persons of national minorities on whose behalf they act", - "values": [ - "Minorities", - "UPR process" - ] - }, - { - "text": "Take effective steps to fully strengthen the rule of law, effectively ensure the impartiality and independence of the judiciary", - "values": [ - "Justice" - ] - }, - { - "text": "Take necessary measures to provide adequate protection to journalists and human rights defenders", - "values": [ - "Freedom of the press", - "Human rights defenders" - ] - }, - { - "text": "Eliminate mandatory minimum sentences for lese majesty", - "values": [ - "Freedom of opinion and expression" - ] - }, - { - "text": "Ensure and enforce prevention of all acts of torture, impartial investigation by independent courts and prosecution of committed perpetrators", - "values": [ - "Justice", - "Torture and other CID treatment" - ] - }, - { - "text": "Abolish capital punishment and commute death sentences to prison terms", - "values": [ - "Death penalty" - ] - }, - { - "text": "Sign and ratify the Optional Protocol to the Convention on the Rights of the Child on a communications procedure", - "values": [ - "International instruments", - "Rights of the Child" - ] - }, - { - "text": "Continue to implement the Strategy on Gender Equality 2016-2020", - "values": [ - "Women's rights" - ] - }, - { - "text": "Ratify the Optional Protocol to the Convention on the Rights on the Child on the Sale of Children, Child Prostitution and Child Pornography.", - "values": [ - "International instruments", - "Rights of the Child", - "Trafficking" - ] - }, - { - "text": "The delegation highlighted that the Jamaican Government remained committed to implementing the recommendations arising from the universal periodic review and would endeavour to uphold its demonstrated tradition of respect for the rule of law.", - "values": [ - "Justice", - "UPR process" - ] - }, - { - "text": "Raise the minimum age for marriage to comply with international child rights standards in order to prevent early, child and enforced marriages", - "values": [ - "International instruments", - "Rights of the Child", - "Women's rights" - ] - }, - { - "text": "Establish a moratorium on the death penalty, with a view to its elimination", - "values": [ - "Death penalty" - ] - }, - { - "text": "Ratify key international human rights treaties, in particular CAT and CPED, and comply with its obligations", - "values": [ - "Enforced disappearances", - "International instruments", - "Torture and other CID treatment" - ] - }, - { - "text": "Continue to undertake appropriate steps with a view to ratifying the human rights instruments mentioned in paragraph 158 of the national report ", - "values": [ - "International instruments" - ] - }, - { - "text": "Consider further strategies aimed at effectively addressing the situation of undocumented asylum seekers and the return of foreigners to States in internal armed or generalized violence on humanitarian grounds ", - "values": [ - "Asylum-seekers - refugees", - "Migrants" - ] - }, - { - "text": "Take effective measures to improve access to health care, particularly in remote and rural areas", - "values": [ - "Right to health" - ] - }, - { - "text": "Continue implementing the program of support for the poorest families as a means to combat poverty", - "values": [ - "Poverty" - ] - }, - { - "text": "Take prompt, appropriate, efficient measures towards the improvement of the living conditions in prisons and detention centres, including the inmates' access to food, medical care and social services ", - "values": [ - "Detention" - ] - }, - { - "text": "Promote freedom of all religions, including by passing laws to give Buddhism the status of a recognized religion ", - "values": [ - "Freedom of religion and belief" - ] - }, - { - "text": "Step up its efforts to further reduce poverty, particularly in rural areas ", - "values": [ - "Poverty" - ] - }, - { - "text": "Prohibit discrimination on the basis of sex, sexual orientation and gender identity. Such measures would be of great importance to the fight against homophobia as well as for the progress in combating HIV/AIDS in the country", - "values": [ - "HIV - Aids", - "Sexual Orientation and Gender Identity" - ] - }, - { - "text": "Efforts will be continued to create legislation against human trafficking and the smuggling of migrants in line with the United Nations Convention against Transnational Organized Crime and the Protocols thereto.", - "values": [ - "International instruments", - "Trafficking" - ] - }, - { - "text": "Take action to secure that the enjoyment of human rights extends to the Internet, as pronounced by the Human Rights Committee and relevant United Nations resolutions", - "values": [ - "Freedom of opinion and expression", - "Treaty bodies" - ] - }, - { - "text": "Ensure the full prosecution of all forms of trafficking and modern slavery of children so as to deliver on its commitment to eliminate the worst forms of child labour by 2015 and all forms of child labour by 2020, paying particular attention to persons from minority groups and in vulnerable situations ", - "values": [ - "Labour", - "Migrants", - "Rights of the Child", - "Trafficking" - ] - }, - { - "text": "Take prompt actions to protect children against sex abuse and exploitation", - "values": [ - "Rights of the Child" - ] - }, - { - "text": "Initiate and implement in place programs focusing on employability, entrepreneurship and microcredit with a view to allowing young unemployed people a better insertion into the employment market ", - "values": [ - "Development" - ] - }, - { - "text": "Increase efforts aimed at countering the root causes of early school leaving and the lack of continuity in education ", - "values": [ - "Right to education" - ] - }, - { - "text": "Enhance its efforts on the full implementation of the Convention against Torture", - "values": [ - "International instruments", - "Torture and other CID treatment" - ] - }, - { - "text": "Enshrine in its Constitution the protection of rights of national and ethnic minorities", - "values": [ - "Minorities" - ] - }, - { - "text": "Take action to facilitate a prompt and consensual solution to the issue of the restitution to religion institutions of worship places confiscated under the communist regime, as a way of assuring the full enjoyment of the freedom of religion in the country ", - "values": [ - "Freedom of religion and belief" - ] - }, - { - "text": "Consider the effective implementation of the provisions of the United Nations Convention Relating to the Status of Refugees of 1951, in particular the principle of non-refoulement, the access to a procedure and confidentiality for asylum seekers", - "values": [ - "Asylum-seekers - refugees", - "International instruments" - ] - }, - { - "text": "Ensure the protection of and respect for persons with disabilities", - "values": [ - "Disabilities" - ] - }, - { - "text": "Take measures for the establishment of a national institution for the promotion and protection of human rights in accordance with the Paris Principles, in particular with regard to its Constitutional protection", - "values": [ - "National Human Rights Institution" - ] - }, - { - "text": "Complete the ratification of CRPD and OP-CRC-AC", - "values": [ - "Disabilities", - "International humanitarian law", - "International instruments", - "Rights of the Child" - ] - }, - { - "text": "Take effective measures to better guarantee the rights of vulnerable groups such as women, children, the elderly, and people with disabilities ", - "values": [ - "Disabilities", - "Rights of the Child", - "Women's rights" - ] - }, - { - "text": "Explicitly prohibit all corporal punishment of children in all settings, including in the home", - "values": [ - "Rights of the Child", - "Torture and other CID treatment" - ] - }, - { - "text": "Invite representatives of international human rights organizations to visit the Bolivarian Republic of Venezuela, including by issuing a standing invitation to the United Nations special procedures and work with OHCHR on a truth commission", - "values": [ - "Civil society", - "Special procedures" - ] - }, - { - "text": "Adopt the draft Family Protection Bill", - "values": [ - "Rights of the Child", - "Women's rights" - ] - }, - { - "text": "Adopt the necessary judicial and administrative measures to ensure effectively the investigation and punishment of cases of discriminatory treatment by law enforcement officers, in particular against lesbian, gay, bisexual, transgender and intersex people", - "values": [ - "Human rights violations by state agents", - "Sexual Orientation and Gender Identity" - ] - }, - { - "text": "Take measures to prevent the sexual abuse, neglect and trafficking of children, child prostitution and pornography, in line with commitments under the OP-CRC-SC", - "values": [ - "International instruments", - "Rights of the Child", - "Trafficking" - ] - }, - { - "text": "Consider ratifying ILO Convention No. 169 concerning Indigenous and Tribal Peoples in independent Countries and applying international standards with respect to the rights of indigenous peoples.", - "values": [ - "Indigenous peoples", - "International instruments" - ] - }, - { - "text": "That the United Kingdom Government, parliamentarians, human rights institutions and civil society organizations continue to work closely together in order to ensure that vulnerable groups such as ethnic and religious minorities, refugees and migrants are better protected against hate speech and hate-related crime and that they are provided with greater certainty and legal protection", - "values": [ - "Minorities", - "Racial discrimination" - ] - }, - { - "text": "Ratify various international human rights statutes and conventions, including the Convention on the Rights of Persons with Disabilities", - "values": [ - "Disabilities", - "International instruments" - ] - }, - { - "text": "Work towards raising awareness of the right to a safe environment through participation and cooperation among all partners", - "values": [ - "Civil society", - "Human rights education and training", - "Other" - ] - }, - { - "text": "Continue with the measures implemented in favour of the human right to water and sanitation, in the framework of General Assembly resolution 64/292 ", - "values": [ - "Right to water and sanitation" - ] - }, - { - "text": "Ensure the supply of drinkable water for all the people of the Kingdom", - "values": [ - "Right to water and sanitation" - ] - }, - { - "text": "Cooperate closely with local human rights organizations in the follow up to this Universal Periodic Review ", - "values": [ - "Civil society", - "UPR process" - ] - }, - { - "text": "Put an end to the legal prohibition of same-sex sexual acts or practices between consenting adults, release individuals arrested on the basis of this provision ", - "values": [ - "Detention", - "Sexual Orientation and Gender Identity" - ] - }, - { - "text": "Give effect to the provisions of CAT in national legislation ", - "values": [ - "International instruments", - "Torture and other CID treatment" - ] - }, - { - "text": "Introduce a crime of torture in the national penal legislation", - "values": [ - "Torture and other CID treatment" - ] - }, - { - "text": "Take a systematic approach that includes, inter alia, stringent selection processes for and effective supervision of conduct of public officials and judges, as well as human rights training.", - "values": [ - "Human rights education and training", - "Justice" - ] - }, - { - "text": "Continue consultations with civil society in the follow-up to this review ", - "values": [ - "Civil society", - "UPR process" - ] - }, - { - "text": "Adopt specific and comprehensive legislation on harassment based on sexual orientation", - "values": [ - "Sexual Orientation and Gender Identity" - ] - }, - { - "text": "Issue standing invitation for the UN human rights special procedures and accept all requested visits by mandate holders", - "values": [ - "Special procedures" - ] - }, - { - "text": "Consider establishing a national plan of action to prevent sexual violence against children and women", - "values": [ - "Rights of the Child", - "Women's rights" - ] - }, - { - "text": "Expand the so-called "Isange One-Stop Centres" to respond to and prevent gender-based violence and provide care for victims", - "values": [ - "Women's rights" - ] - }, - { - "text": "Consider improving and protecting particular groups including disabled and elderly ", - "values": [ - "Disabilities" - ] - }, - { - "text": "Allocate appropriate resources to the Office of the Ombudswoman to facilitate equal access to justice for all citizens and further strengthen its monitoring and reporting capacity ", - "values": [ - "Justice", - "National Human Rights Institution" - ] - }, - { - "text": "Step up the fight against racism and adopt adequate measures for the reduction of discrimination and social exclusion", - "values": [ - "Racial discrimination" - ] - }, - { - "text": "Take steps to bring to justice those who have threatened, or attacked human rights defenders, children, and others who are working to promote democracy and accountability in Pakistan", - "values": [ - "Human rights defenders", - "Rights of the Child" - ] - }, - { - "text": "Continue to strengthen policies to promote education and to address educational imbalances between urban and rural areas and among regions", - "values": [ - "Right to education" - ] - }, - { - "text": "Pass laws and follow up on their implementation with the aim of eliminating wage discrimination against women and, in particular, discrimination based on motherhood and pregnancy", - "values": [ - "Women's rights" - ] - }, - { - "text": "Ensure that Roma children are not sent to special schools for the disabled, but instead are schooled together with other Bulgarian children", - "values": [ - "Minorities", - "Right to education", - "Rights of the Child" - ] - }, - { - "text": "Continue strengthening measures towards equality, taking into account the situation of disadvantaged groups for which positive discrimination is recommended ", - "values": [ - "Minorities" - ] - }, - { - "text": "As the drafter of the Majuro Declaration, the RMI remains committed to leading the international dialogue in the effort in reducing the impacts of climate change and pursuing effective adaptation measures.", - "values": [ - "Environment" - ] - }, - { - "text": "Guarantee that the law on media and publications enables full exercise of freedom of expression, in particular on the Internet", - "values": [ - "Freedom of opinion and expression", - "Freedom of the press" - ] - }, - { - "text": "Maintain its efforts to continue ensuring respect for freedom of religion and belief for all Cubans and maintain its policy of respect and tolerance for all religions without discrimination", - "values": [ - "Freedom of religion and belief" - ] - }, - { - "text": "Adopt the necessary measures to achieve the elimination of existing patriarchal and gender stereotypes that lead to discrimination against women ", - "values": [ - "Women's rights" - ] - }, - { - "text": "Develop a comprehensive operational plan for the promotion of gender equality and advancement of women, containing clear goals and timetables, as well as a mechanism for monitoring ", - "values": [ - "Women's rights" - ] - }, - { - "text": "Adopt further measures to reduce the gender pay gap in all sectors of the economy", - "values": [ - "Women's rights" - ] - }, - { - "text": "Consider introducing a moratorium on the death penalty with a view to abolishing it in the near future", - "values": [ - "Death penalty" - ] - }, - { - "text": "Ratify ICCPR and the Convention against Torture and Other Cruel, Inhuman or Degrading Treatment or Punishment CAT ", - "values": [ - "CP rights - general", - "International instruments", - "Torture and other CID treatment" - ] - }, - { - "text": "Continue with the policy of National Reconciliation as this is the best way to prosper and for nation building ", - "values": [ - "Justice" - ] - }, - { - "text": "Intensify national discussions with a view to abolishing the death penalty", - "values": [ - "Death penalty" - ] - }, - { - "text": "Take all necessary measures to ratify the Optional Protocol to the Convention against Torture and other Cruel, Inhuman or Degrading Treatment or Punishment ", - "values": [ - "Detention", - "International instruments", - "Torture and other CID treatment" - ] - }, - { - "text": "Take further steps to follow the recommendation of CERD in "taking resolute action to counter any tendency, especially from politicians, to target, stigmatize, stereotype or profile people on the basis of race, colour, descent and national or ethnic origin, or to use racist propaganda in politics." ", - "values": [ - "Racial discrimination", - "Treaty bodies" - ] - }, - { - "text": "Continue adopting measures to put an end to corporal punishment ", - "values": [ - "Torture and other CID treatment" - ] - }, - { - "text": "Investigate and prosecute intimidation and attacks on LGBT-community members and activists", - "values": [ - "Sexual Orientation and Gender Identity" - ] - }, - { - "text": "Ensure that all human rights initiatives stipulated in the National Plan of Action are implemented and monitored in an effective way ", - "values": [ - "General" - ] - }, - { - "text": "Take into account the opinions and recommendations of the European Commission for Democracy through Law when implementing the law on religious organizations.", - "values": [ - "Freedom of religion and belief" - ] - }, - { - "text": "Take steps to ensure the rights to health, education, and other rights dependent on freedom of movement are protected", - "values": [ - "Freedom of movement", - "Right to education", - "Right to health" - ] - }, - { - "text": "Initiate as possible, with the assistance of the international community, the programmes of investment need in the health, education and social security sectors", - "values": [ - "Right to education", - "Right to health", - "Technical assistance and cooperation" - ] - }, - { - "text": "Comply with its international obligations for the effective mitigation of greenhouse gas emissions, because of their impact in climate change", - "values": [ - "Environment" - ] - }, - { - "text": "Develop policies and programs to effectively implement National Strategy for Social Inclusion", - "values": [ - "Other" - ] - }, - { - "text": "Ensure that all parties resolve their differences peacefully and within the framework of the national constitution and laws ", - "values": [ - "General" - ] - }, - { - "text": "Effectively implement the Strategy for the inclusion of the Romanian citizens belonging to the Roma minority for the period 2012-2020 and make further efforts in guaranteeing the rights of the Roma in education, employment, housing and cultural fields ", - "values": [ - "Minorities" - ] - }, - { - "text": "Further strengthen existing efforts to integrate human rights in the national development policies, strategies and plans ", - "values": [ - "General" - ] - }, - { - "text": "Accept the right to present individual communications provided for the Optional Protocol to the International Covenant on Economic, Social and Cultural Rights, and withdraw the reservation to the International Covenant on Economic, Social and Cultural Rights ", - "values": [ - "ESC rights - general", - "International instruments" - ] - }, - { - "text": "Consider harmonizing its civil and criminal codes with international human rights norms, particularly regarding marriage, family relations, patrimony and succession.", - "values": [ - "International instruments" - ] - }, - { - "text": "Continue its efforts to adopt necessary measures to abolish the death penalty", - "values": [ - "Death penalty" - ] - }, - { - "text": "Adopt and implement a definition of torture consistent with its obligations under the International Covenant on Civil and Political Rights and the Convention against Torture and Other Cruel, Inhuman, Degrading Treatment or Punishment ", - "values": [ - "International instruments", - "Torture and other CID treatment" - ] - }, - { - "text": "Continue to promote women's emancipation in all spheres of society ", - "values": [ - "Women's rights" - ] - }, - { - "text": "Continue its efforts to ratify the Rome Statue of the ICC", - "values": [ - "International instruments", - "Justice" - ] - }, - { - "text": "Commit to the path of abolishing the capital punishment by adopting as soon as possible, a moratorium and commuting the sentences that have already been pronounced", - "values": [ - "Death penalty" - ] - }, - { - "text": "Establish protective measures that would allow young students to re- enter the mainstream education system after childbirth", - "values": [ - "Right to education", - "Rights of the Child", - "Women's rights" - ] - }, - { - "text": "Speed up ratification of the ICCPR and of the Convention against Torture.", - "values": [ - "CP rights - general", - "International instruments", - "Torture and other CID treatment" - ] - }, - { - "text": "Accelerate the legislative procedures and judicial reforms aimed at the ratification of the International Convention for the Protection of All Persons from Enforced Disappearance and recognize the competence of its monitoring body", - "values": [ - "Detention", - "International instruments", - "Treaty bodies" - ] - }, - { - "text": "Adopt a law on the general prohibition of torture based on a comprehensive definition of torture in conformity with the Convention against Torture and providing for adequate assistance to victims as well as for victims' access to redress and compensation", - "values": [ - "International instruments", - "Torture and other CID treatment" - ] - }, - { - "text": "Ensure the anti-terrorism measures in line with full respect for fundamental human rights while combating terrorism", - "values": [ - "Counter-terrorism" - ] - }, - { - "text": "Adopt into law the proposed changes to its constitutional framework to provide protection to all persons resident in Sweden against discrimination based on sexual orientation ", - "values": [ - "Sexual Orientation and Gender Identity" - ] - }, - { - "text": "Take strong action to address hate speech and racial discrimination in access to housing, education and employment of ethnic minorities and intensify awareness-raising training for law enforcement officials ", - "values": [ - "Human rights education and training", - "Labour", - "Minorities", - "Racial discrimination", - "Right to education", - "Right to housing" - ] - }, - { - "text": "Further strengthen its active engagement with the international community to promote human rights in all areas", - "values": [ - "Technical assistance and cooperation" - ] - }, - { - "text": "Intensify its efforts to combat violence and discrimination against women and girls by ensuring that perpetrators are prosecuted and punished", - "values": [ - "Rights of the Child", - "Women's rights" - ] - }, - { - "text": "Continue its efforts to provide universal good quality education for all children, especially girls", - "values": [ - "Right to education", - "Rights of the Child", - "Women's rights" - ] - }, - { - "text": "Decriminalize homosexuality and combat all forms of discrimination and abuse against LGBTI persons", - "values": [ - "Sexual Orientation and Gender Identity" - ] - }, - { - "text": "Work to end the practice of detaining asylum-seekers in prisons owing to lack of space.", - "values": [ - "Asylum-seekers - refugees" - ] - }, - { - "text": "Protect the free exercise of the media by guaranteeing freedom of expression and putting an end to repressive measures against journalists", - "values": [ - "Freedom of opinion and expression", - "Freedom of the press" - ] - }, - { - "text": "Continue implementing programmes and measures aimed at ensuring universal and quality health and education services for all its population ", - "values": [ - "Right to education", - "Right to health" - ] - }, - { - "text": "Ensure accountability for human rights violations by establishing independent and impartial investigations into the violation and abuses committed under the former rule, which in turn should lead to trials of those held accountable, in line with international standards ", - "values": [ - "Justice" - ] - }, - { - "text": "Ensure that its domestic legislation is in full compliance with the Convention on the Rights of the Child.", - "values": [ - "International instruments", - "Rights of the Child" - ] - }, - { - "text": "Continue national efforts in the area of disarmament, demobilization and reintegration and in the reform of institutions involved in security and promotion of the rule of law", - "values": [ - "Justice", - "Public security" - ] - }, - { - "text": "Increase its efforts to combat sexual and domestic violence against women ", - "values": [ - "Women's rights" - ] - }, - { - "text": "Intensify on-going efforts to submit its overdue reports to the relevant special procedures mechanisms", - "values": [ - "Special procedures" - ] - }, - { - "text": "Impose a moratorium on all executions and, eventually, abolish the death penalty and in this regard, ratify ICPPR and its second optional protocol ", - "values": [ - "Death penalty", - "International instruments" - ] - }, - { - "text": "Establish a strategy to implement the Law on the Elimination of Violence against Women by the creation of permanent and efficient mechanisms in order to report, investigate and publicize cases of gender violence", - "values": [ - "Women's rights" - ] - }, - { - "text": "Take necessary steps to effectively implement the existing mechanism for the reintegration of returned migrant workers in the national economy", - "values": [ - "Labour", - "Migrants" - ] - }, - { - "text": "Establish a comprehensive data collection system to better assess the level of discrimination that exists against different minority groups in Austria ", - "values": [ - "Minorities", - "Racial discrimination" - ] - }, - { - "text": "Invite the Special Rapporteur on violence against women and the Special Rapporteur on torture to visit the country and provide more extensive recommendations ", - "values": [ - "Special procedures", - "Torture and other CID treatment", - "Women's rights" - ] - }, - { - "text": "Continue to encourage women to run for elections", - "values": [ - "Elections", - "Women's rights" - ] - }, - { - "text": "Exert additional efforts toward improving economic rights ", - "values": [ - "ESC rights - general" - ] - }, - { - "text": "Continue its policy of combating trafficking in persons, especially women and children, at the national and international levels, and provide assistance to victims of trafficking through shelter assistance, rehabilitation and compensation for the victims", - "values": [ - "Rights of the Child", - "Trafficking", - "Women's rights" - ] - }, - { - "text": "Fully implement the national plan for the advancement of Bahraini women (2022) in its five lines", - "values": [ - "Women's rights" - ] - }, - { - "text": "Adopt measures to criminalize incitement to hatred and imminent violence based on religion or belief ", - "values": [ - "Freedom of religion and belief" - ] - }, - { - "text": "Encouraged Sri Lanka to further empower the various institutional and human rights infrastructures, including by strengthening the structural and operational independence of the NHRC.", - "values": [ - "National Human Rights Institution" - ] - }, - { - "text": "Thoroughly investigate complaints filed by journalists and to promote good relations with and among media institutions", - "values": [ - "Freedom of the press" - ] - }, - { - "text": "Implement, in full, newly introduced anti-corruption legislation ", - "values": [ - "Corruption" - ] - }, - { - "text": "Increase the effectiveness of the precautionary measures to protect human rights defenders, including through adopting effective and comprehensive prevention strategies, at central and local levels, to prevent attacks and protect the life and physical integrity of human rights defenders and journalists, and ensure that such programs are backed by a strong political commitment and provided with adequate resources", - "values": [ - "Freedom of the press", - "Human rights defenders" - ] - }, - { - "text": "Continue efforts to provide social care for children at risk, especially those from socioeconomically poor backgrounds ", - "values": [ - "Poverty", - "Rights of the Child" - ] - }, - { - "text": "Extend the length of the special campaign promoting the civil registry and make permanent the fee exemption for such registration", - "values": [ - "Rights of the Child" - ] - }, - { - "text": "Ratify the OP-CAT and the OP-CEDAW", - "values": [ - "Detention", - "International instruments", - "Torture and other CID treatment", - "Women's rights" - ] - }, - { - "text": "Ensure the enrolment in the education system of children of non-regularized immigrants ", - "values": [ - "Migrants", - "Right to education", - "Rights of the Child" - ] - }, - { - "text": "Clearly prohibit all corporal punishment of children in all settings, including at home, and make awareness-raising campaigns to increase public knowledge about its harmful effects", - "values": [ - "Human rights education and training", - "Rights of the Child", - "Torture and other CID treatment" - ] - }, - { - "text": "The Government of Canada commits to enhancing mechanisms to promote awareness and understanding of international obligations within the federal public service.", - "values": [ - "Other" - ] - }, - { - "text": "Stop the practice of racial profiling in the judicial and law enforcement systems", - "values": [ - "Justice", - "Racial discrimination" - ] - }, - { - "text": "Address discrimination by the public and private sectors as a matter of priority", - "values": [ - "Other" - ] - }, - { - "text": "Continue efforts started in 2007 to promote women's rights, in particular the prohibition of all forms of female genital mutilation ", - "values": [ - "Rights of the Child", - "Torture and other CID treatment", - "Women's rights" - ] - }, - { - "text": "Ensure that the new legislation regarding the media is applied in such a way that the media's independence and pluralism is not undermined", - "values": [ - "Freedom of the press" - ] - }, - { - "text": "Prohibit the harmful practices such as the female genital mutilation and the Wahaya or practice of the fifth wife converted into sexual slave", - "values": [ - "Rights of the Child", - "Torture and other CID treatment", - "Women's rights" - ] - }, - { - "text": "Adopt and implement the protocol on the protection of human rights defenders that has been developed by the Ministry of Justice and Human Rights", - "values": [ - "Human rights defenders" - ] - }, - { - "text": "Investigate, prosecute and, if convicted, punish perpetrators of human rights abuses, including those committed against civil society groups, members of the media and LGBT individuals", - "values": [ - "Civil society", - "Freedom of the press", - "Sexual Orientation and Gender Identity" - ] - }, - { - "text": "Ensure the immediate release of all children associated with armed forces or groups by issuing clear orders including at local level", - "values": [ - "International humanitarian law", - "Rights of the Child" - ] - }, - { - "text": "Ensure the effective implementation and enforcement of existing legislation with a view to reducing structural disadvantages that hamper the effective realization of substantive gender equality", - "values": [ - "Women's rights" - ] - }, - { - "text": "Further ongoing efforts to combat human trafficking", - "values": [ - "Trafficking" - ] - }, - { - "text": "Provide for freedom of religion in its national legislation so that the rights of religious minorities can be ensured ", - "values": [ - "Freedom of religion and belief", - "Minorities" - ] - }, - { - "text": "Continue to take measures towards the effective implementation of the National Plan of Action against Sexual Abuse and Exploitation of Children including Trafficking", - "values": [ - "Rights of the Child", - "Trafficking" - ] - }, - { - "text": "Enhance its education plan to improve women's attendance rate in secondary schools and provide quality secondary education in rural areas.", - "values": [ - "Women's rights" - ] - }, - { - "text": "Increase its allocation of resources devoted to education", - "values": [ - "Right to education" - ] - }, - { - "text": "Enhance support services for victims of domestic and gender-based violence, and take measures to raise awareness among law enforcement officials, lawyers and judges of the serious nature of domestic and gender-based violence ", - "values": [ - "Human rights education and training", - "Rights of the Child", - "Women's rights" - ] - }, - { - "text": "Prioritize gender equality initiatives within its Tonga Strategic Development Framework and intensify its efforts to increase women's participation at all formal decision-making levels", - "values": [ - "Women's rights" - ] - }, - { - "text": "Continue introducing international norms of human rights in the national legislation and efforts to increase the potential and capacity of national human rights institutions", - "values": [ - "National Human Rights Institution" - ] - }, - { - "text": "Expedite the necessary legislative reforms to facilitate the reunification of children with their families", - "values": [ - "Rights of the Child" - ] - }, - { - "text": "Consider establishing a national human rights institution accredited by the International Coordinating Committee of National Institutions for the promotion and protection of human rights in order to raise public awareness and guide the authorities", - "values": [ - "National Human Rights Institution" - ] - }, - { - "text": "Step up existing efforts towards the protection of the rights of minorities, especially by fighting discrimination against children of Roma descent in the field of education, and by guaranteeing the right to adequate housing of the Serbian minority", - "values": [ - "Minorities", - "Right to education", - "Right to housing", - "Rights of the Child" - ] - }, - { - "text": "Take steps to ensure an equitable and truly representative appointment of members of the Afghanistan Independent Human Rights Commission and to protect the Commission from undue political interference.", - "values": [ - "National Human Rights Institution" - ] - }, - { - "text": "Continue to pay attention to the right to health of the child, elderly people, the poor and other vulnerable groups ", - "values": [ - "Poverty", - "Right to health", - "Rights of the Child" - ] - }, - { - "text": "Elaborate and implement a strategy and national action plan for the protection of the rights of children, and ensure, in particular, to counter effectively the risk of child trafficking", - "values": [ - "Rights of the Child", - "Trafficking" - ] - }, - { - "text": "Consider ratifying ILO Convention 189 on Decent Work for Domestic Workers ", - "values": [ - "International instruments", - "Labour" - ] - }, - { - "text": "The HKSAR Government is fully committed to attaining universal suffrage for both the CE and the LegCo elections in accordance with the Basic Law and the decision of the Standing Committee of the National People's Congress of December 2007.", - "values": [ - "Elections" - ] - }, - { - "text": "Fulfil its obligations under international human rights law to decriminalize same-sex relationships between consenting adults and repeal any laws or reforms that explicitly or implicitly discriminate on any grounds, including sexual orientation and gender identity ", - "values": [ - "International instruments", - "Sexual Orientation and Gender Identity" - ] - }, - { - "text": "Harmonize its national legislation with the provisions of the Istanbul Convention", - "values": [ - "International instruments", - "Women's rights" - ] - }, - { - "text": "Eliminate effectively discrimination against women and develop a comprehensive policy for gender equality and the elimination of violence against women through awareness-raising campaigns in society and in the public administration", - "values": [ - "Women's rights" - ] - }, - { - "text": "Promote and protect the rights of peasants and other people working in rural areas", - "values": [ - "Other" - ] - }, - { - "text": "Give a more thorough consideration to the issues of human rights violations of indigenous people, lack of public security and poor detention conditions.", - "values": [ - "Detention", - "Indigenous peoples", - "Public security" - ] - }, - { - "text": "Consider the ratification of the OP-CAT.", - "values": [ - "Detention", - "International instruments", - "Torture and other CID treatment" - ] - }, - { - "text": "Grant the Health Department with the human and material resources to enable it to offer adequate services to persons with disabilities", - "values": [ - "Disabilities", - "Right to health" - ] - }, - { - "text": "Put effective measures in place to ensure access to justice for victims of all forms of violence against women", - "values": [ - "Women's rights" - ] - }, - { - "text": "Continue the ongoing work on labour sector reform ", - "values": [ - "Labour" - ] - }, - { - "text": "Consider adhering to the Convention relating to the Status of Stateless Persons ", - "values": [ - "International instruments", - "Statelessness and the right to nationality" - ] - }, - { - "text": "Request technical and financial assistance from relevant United Nations institutions to reactivate the innovative hospital project concerning the ill treatment of children, which has been suspended owing to a lack of resources ", - "values": [ - "Rights of the Child", - "Technical assistance and cooperation" - ] - }, - { - "text": "Investigate and, if it is the case, put an end to cases of arbitrary arrest, illegal detentions and torture by the police and security forces", - "values": [ - "Detention", - "Human rights violations by state agents", - "Torture and other CID treatment" - ] - }, - { - "text": "Repeal laws which criminalize expression of the rights of freedom of expression, of association and of assembly, and ensure that individuals detained for the peaceful exercise of these rights are released ", - "values": [ - "Detention", - "Freedom of association and peaceful assembly", - "Freedom of opinion and expression" - ] - }, - { - "text": "Investigate all allegations of abuse of police authority and prosecute the perpetrators", - "values": [ - "Human rights violations by state agents" - ] - }, - { - "text": "Consider positively acceding to the core international human rights instruments, to which it is not yet a party, particularly the International Covenant on Civil and Political Rights and the Convention against Torture", - "values": [ - "CP rights - general", - "International instruments", - "Torture and other CID treatment" - ] - }, - { - "text": "Continue the implementation of plans to reduce schools desertion rates, particularly at the secondary level ", - "values": [ - "Right to education" - ] - }, - { - "text": "Continue improving the human rights for women", - "values": [ - "Women's rights" - ] - }, - { - "text": "Continue strengthening the institutional framework for the promotion and protection of minority rights in the country", - "values": [ - "Minorities" - ] - }, - { - "text": "Continue implementing the 2008 recommendations by the Committee on CEDAW on remaining issues, in particular the withdraw of the general reservations to CEDAW ", - "values": [ - "International instruments", - "Treaty bodies", - "Women's rights" - ] - }, - { - "text": "Consider requesting technical assistance from OHCHR to prepare and implement an appropriate policy that is human-rights-centred to prevent and combat violence", - "values": [ - "Technical assistance and cooperation" - ] - }, - { - "text": "Accelerate the adoption of a general law on violence against women and girls criminalizing all forms of violence, including domestic violence and marital rape and guarantee access to justice", - "values": [ - "Rights of the Child", - "Women's rights" - ] - }, - { - "text": "Continue to adopt effective social policy regarding access to education and health services, in particular for women and children ", - "values": [ - "Right to education", - "Right to health", - "Rights of the Child", - "Women's rights" - ] - }, - { - "text": "Evaluate the possibility of adopting all necessary measures to guarantee the right to justice, truth and reparation for victims and their family members in cases of serious human rights violations ", - "values": [ - "Justice" - ] - }, - { - "text": "Repeal or significantly reform the Public Order and Security Act, the Access to Information and Protection of Privacy Act, and criminal code provisions that restrict freedoms of assembly and expression ", - "values": [ - "Freedom of association and peaceful assembly", - "Freedom of opinion and expression", - "Privacy" - ] - }, - { - "text": "Ratify the Optional Protocol to the Convention on the Elimination of All Forms of Discrimination against Women, as previously recommended", - "values": [ - "International instruments", - "UPR process", - "Women's rights" - ] - }, - { - "text": "Ensure effective implementation of existing legislation to eradicate all forms of slavery, prosecute perpetrators and ensure effective access to justice for victims of slavery", - "values": [ - "Other" - ] - }, - { - "text": "Continue its positive efforts to promote gender equality and protect women's rights in areas such as employment", - "values": [ - "Women's rights" - ] - }, - { - "text": "Pay more attention to the awareness of the citizens of Ukraine about their rights and to involvement of society in taking important decisions", - "values": [ - "Other" - ] - }, - { - "text": "Step up efforts to combat impunity, in particular through the investigation and prosecution of human rights violations committed by security forces", - "values": [ - "Human rights violations by state agents", - "Impunity" - ] - }, - { - "text": "Ensure appropriate protection of human rights defenders operating in the country, recognising the legitimacy of their work, including full and impartial investigations and prosecutions into all alleged human rights violations committed against them ", - "values": [ - "Human rights defenders" - ] - }, - { - "text": "Intensify its efforts to address discrimination against Lesbians, Gays, Bisexuals and Transsexuals (LGBT), and to investigate and prosecute crimes against LGBT-community members", - "values": [ - "Sexual Orientation and Gender Identity" - ] - }, - { - "text": "Facilitate the strengthening of cooperation and coordination among the various institutions and commissions with different mandates that will enable effective and comprehensive implementation of the recommendations of the UPR mechanism, treaty bodies and special procedures mandate holders", - "values": [ - "Special procedures", - "Treaty bodies", - "UPR process" - ] - }, - { - "text": "Fully investigate regarding all reports about violations of human rights in the context of last year's political turmoil", - "values": [ - "Other" - ] - }, - { - "text": "Adopt legislative measures that would prohibit public funding of parties that engage in propaganda of racism and xenophobia", - "values": [ - "Racial discrimination" - ] - }, - { - "text": "Endorse the recommendations made by the Committee on the Rights of the Child and the Human Rights Committee on the adoption of legislative measures to ensure compliance of national legislation with the principles and provisions of the Convention on the Rights of the Child.", - "values": [ - "International instruments", - "Rights of the Child", - "Treaty bodies" - ] - }, - { - "text": "Take all necessary measures to comply with the pertinent international norms and principles in the area of juvenile justice ", - "values": [ - "Justice", - "Rights of the Child" - ] - }, - { - "text": "Guarantee all citizens of China, including its minority communities and religions, the exercise of religious freedom, freedom of belief and the freedom of worshipping in private", - "values": [ - "Freedom of religion and belief", - "Minorities" - ] - }, - { - "text": "Join hands with the international community to prevent and fight terrorism", - "values": [ - "Public security" - ] - }, - { - "text": "Take additional positive measures to ensure that all citizens can enjoy basic health care, and provide the public medical institutions with sufficient medicines and medical equipment ", - "values": [ - "Right to health" - ] - }, - { - "text": "Take steps to reduce the incidence of child, early and forced marriage, including by amending legislation where necessary to bring it into conformity with international obligations", - "values": [ - "Rights of the Child", - "Women's rights" - ] - }, - { - "text": "Continue its effort in improving the situation of Roma and Bulgarian citizens of other ethnic groups, especially through effective implementation of the National Roma Integration Strategy with adequate allocation of financial and human resources", - "values": [ - "Minorities" - ] - }, - { - "text": "Study whether a national action plan to combat racism should be adopted", - "values": [ - "Racial discrimination" - ] - }, - { - "text": "Strengthen the capacities of health infrastructures in rural and remote areas", - "values": [ - "Right to health" - ] - }, - { - "text": "Strengthen the protection of journalists by ensuring the effective investigation of violations of their rights ", - "values": [ - "Freedom of the press" - ] - }, - { - "text": "Expedite action to implement the agreed Action Plan in line with the spirit of the LLRC through a process inclusive of all people belonging to all ethnicity", - "values": [ - "Justice", - "Minorities" - ] - }, - { - "text": "Submit overdue reports to United Nations treaty bodies", - "values": [ - "Treaty bodies" - ] - }, - { - "text": "Implement pillar 3 of the Government Action Programme 2016-2021, which focuses on improving the living conditions of the population", - "values": [ - "General" - ] - }, - { - "text": "Finalise the ratification process of the ICESCR ", - "values": [ - "ESC rights - general", - "International instruments" - ] - }, - { - "text": "Track down and arrest the key remaining fugitives accused of war crimes by the Tribunal", - "values": [ - "Justice" - ] - }, - { - "text": "Establish anti-discrimination laws and regulations ensuring that lesbian, gay, bisexual and transder persons and other vulnerable groups enjoy equal treatment ", - "values": [ - "Sexual Orientation and Gender Identity" - ] - }, - { - "text": "Establish a time line for incorporating the principle of equality between men and women in the Constitution, and for the adoption of a law and regulations to combat violence against women, including domestic violence and marital rape ", - "values": [ - "Women's rights" - ] - }, - { - "text": "Establish a moratorium on the death penalty with a view to fully abolishing it both in practice and in law, for all cases and under all circumstances", - "values": [ - "Death penalty" - ] - }, - { - "text": "Proceed to abolish the death penalty from its penal code", - "values": [ - "Death penalty" - ] - }, - { - "text": "Take all necessary measures to reduce the proportion of populations suffering from hunger", - "values": [ - "Right to food" - ] - }, - { - "text": "Continue to work toward the attainment of the targets and strategies of the 2011-2030 national programme for the social and economic development of Turkmenistan as well as other development programmes indicated in paragraph 13 of its National Report ", - "values": [ - "Development" - ] - }, - { - "text": "Undertake all necessary measures to stop sexual exploitation and violence against women in the armed forces ", - "values": [ - "Women's rights" - ] - }, - { - "text": "Promote increased cooperation with the international community", - "values": [ - "Technical assistance and cooperation" - ] - }, - { - "text": "Endorse the Call to Action of the Prime Minister of the United Kingdom and unite in our commitment to end forced labour, modern slavery, human trafficking and the worst forms of child labour in our world by 2030", - "values": [ - "Labour", - "Rights of the Child", - "Trafficking" - ] - }, - { - "text": "Accelerate the establishment of a National Mechanism for Reporting and Follow-up", - "values": [ - "UPR process" - ] - }, - { - "text": "Provide those held on State-security charges with all fundamental legal safeguards, including access to counsel, public trial and sentencing, and eligibility for sentence reduction and parole", - "values": [ - "Detention" - ] - }, - { - "text": "Further improve the enjoyment of all human rights by Palestinian refugees, granting them a legal treatment no worse than to other non-nationals, especially with regard to right to work and to freedom of movement taking into account the responsibility of the international community", - "values": [ - "Asylum-seekers - refugees", - "Freedom of movement", - "Labour" - ] - }, - { - "text": "Take further measures to strengthen child rights and the child protection system, in particular to prevent sexual and physical abuse, to tackle underage marriage-concubinage and to ensure that children under 18 years are not punished as adults in the judicial system ", - "values": [ - "Justice", - "Rights of the Child" - ] - }, - { - "text": "Promote the necessary measures to repeal provisions discriminating people on the grounds of sexual orientation, including those contained in the Sexual Offences and Domestic Violence Act, and the Penal Code", - "values": [ - "Sexual Orientation and Gender Identity" - ] - }, - { - "text": "Extend all necessary cooperation to the Office of the High Commissioner for Human Rights for its staff to visit as quickly as possible and to carry out the investigations mandated by resolution S-16/1", - "values": [ - "Other" - ] - }, - { - "text": "Ratify the Optional Protocol to the Convention against Torture and establish an Independent National Preventive Mechanism, in compliance with the Optional Protocol to the Convention against Torture requirements", - "values": [ - "Detention", - "International instruments", - "Torture and other CID treatment" - ] - }, - { - "text": "Continue efforts in combating trafficking in persons, and in particular consider the possibility of elaborating comprehensive measures to reduce the demand for services of trafficked persons", - "values": [ - "Trafficking" - ] - }, - { - "text": "Consider the request of the Special Rapporteur on the right to education favourably and allow the Special Rapporteur's visit.", - "values": [ - "Right to education", - "Special procedures" - ] - }, - { - "text": "Put forward its utmost efforts to become a party to core international human rights treaties, such as ICESCR, ICCPR and OP-CEDAW", - "values": [ - "CP rights - general", - "ESC rights - general", - "International instruments", - "Women's rights" - ] - }, - { - "text": "Accede to the Convention relating to the Status of Refugees and Convention on the Reduction of Statelessness", - "values": [ - "Asylum-seekers - refugees", - "International instruments", - "Statelessness and the right to nationality" - ] - }, - { - "text": "Prohibit discrimination on the ground of gender identity in employment legislation, such as by amending the Labour and Employment Relations Act, 2013", - "values": [ - "Women's rights" - ] - }, - { - "text": "Draft, in consultation with civil society, and adopt a law on gender identity for transgender persons in which their right to identity is recognized among other civil and political rights", - "values": [ - "Civil society", - "Sexual Orientation and Gender Identity" - ] - }, - { - "text": "Ratify the Second Optional Protocol to ICCPR, aiming at the abolition of death penalty", - "values": [ - "Death penalty", - "International instruments" - ] - }, - { - "text": "Expeditiously ratify the Kampala amendments to the Rome Statute of the International Criminal Court on the crime of aggression", - "values": [ - "International instruments", - "Justice" - ] - }, - { - "text": "Put forward continued efforts in raising awareness and working towards addressing issues related to the racial discrimination", - "values": [ - "Racial discrimination" - ] - }, - { - "text": "Adopt awareness-raising measures to guarantee that people belonging to the lesbian, gay, bisexual, transgender and intersex community are not discriminated against on the grounds of their sexual orientation and gender identity", - "values": [ - "Human rights education and training", - "Sexual Orientation and Gender Identity" - ] - }, - { - "text": "Continue efforts to combat discrimination suffered by the most vulnerable groups of the population, such as persons with disabilities, with HIV/AIDS or indigenous peoples", - "values": [ - "Disabilities", - "HIV - Aids", - "Indigenous peoples" - ] - }, - { - "text": "Seek the support of the international community and cooperate with it to formulate policies aimed at further broadening access to free and compulsory education, particularly for children from poor households ", - "values": [ - "Right to education", - "Rights of the Child", - "Technical assistance and cooperation" - ] - }, - { - "text": "Continue to pursue its several financing mechanisms to address the root causes of undocumented migration in Africa, and extend the scope of such programmes beyond Africa, with assistance from the international community ", - "values": [ - "Migrants", - "Technical assistance and cooperation" - ] - }, - { - "text": "Improve overall conditions in prisons and adopt relevant measures to tackle the problems such as overcrowding ", - "values": [ - "Detention" - ] - }, - { - "text": "Strengthen legislation on the protection of the public from unauthorized actions by the police", - "values": [ - "Human rights violations by state agents" - ] - }, - { - "text": "Take all necessary measures to eliminate, combat and punish all forms of discrimination and violence against women ", - "values": [ - "Women's rights" - ] - }, - { - "text": "Continue efforts to eliminate poverty", - "values": [ - "Poverty" - ] - }, - { - "text": "Adopt mitigating measures to protect its most vulnerable population: women heads of household, the unemployed, farmers, retired people, children, persons with disabilities, et alia ", - "values": [ - "Disabilities", - "Rights of the Child", - "Women's rights" - ] - }, - { - "text": "Take concrete steps aiming at abolishing the death penalty and, in the meantime, establish a moratorium on the practice, while engaging in awareness-raising campaigns on human rights, with a particular emphasis on the incompatibility between the death penalty and human rights", - "values": [ - "Death penalty", - "Human rights education and training" - ] - }, - { - "text": "Ratify the International Covenant on Civil and Political Rights, the International Convention on the Elimination of All Forms of Racial Discrimination and the International Covenant on Economic, Social and Cultural Rights and its Optional Protocol", - "values": [ - "CP rights - general", - "ESC rights - general", - "International instruments", - "Racial discrimination" - ] - }, - { - "text": "Preserve its model of peaceful coexistence of different religious faiths and cultural identities, which was working so well in the Syrian Arab Republic until a few years ago, Continue raising awareness about the dangers of excluding ideologies", - "values": [ - "Freedom of religion and belief" - ] - }, - { - "text": "Establish a formal moratorium on the death penalty, with a view to ratifying the Second Optional Protocol to the ICCPR", - "values": [ - "Death penalty", - "International instruments" - ] - }, - { - "text": "Issue a standing invitation to all Special Procedures, and establish a calendar", - "values": [ - "Special procedures" - ] - }, - { - "text": "Intensify the efforts in fighting against HIV/AIDS, in particular, to improve access to health-care services in rural areas", - "values": [ - "HIV - Aids", - "Right to health" - ] - }, - { - "text": "Increase significantly the human and material resources to ensure access to justice in rural areas", - "values": [ - "Justice" - ] - }, - { - "text": "Continue on its path of aligning its national legislation with its international obligations under the instruments to which Singapore is a State party ", - "values": [ - "International instruments" - ] - }, - { - "text": "Adopt a national plan on combating crimes of hatred, racism, and xenophobia", - "values": [ - "Racial discrimination" - ] - }, - { - "text": "End discrimination in law and practice against all minorities and migrants, particularly against women and children from poor families and take effective steps to prevent and combat violence against them", - "values": [ - "Migrants", - "Minorities", - "Rights of the Child", - "Women's rights" - ] - }, - { - "text": "Continue efforts to promote opportunities for persons with disabilities to benefit from development gains", - "values": [ - "Disabilities" - ] - }, - { - "text": "Consider steps to abolish the death penalty in all circumstances.", - "values": [ - "Death penalty" - ] - }, - { - "text": "Consider changes in legislation and administrative procedures with the view to facilitate the establishment of independent media", - "values": [ - "Freedom of the press" - ] - }, - { - "text": "Make a priority of passing a revised penal code ", - "values": [ - "Justice" - ] - }, - { - "text": "Continue to strengthen and support the effectiveness of the Georgian National Preventive Mechanism", - "values": [ - "Detention", - "Torture and other CID treatment" - ] - }, - { - "text": "Enact a law that incorporates the obligation to carry out independent investigations and punish those who commit acts of torture ", - "values": [ - "Torture and other CID treatment" - ] - }, - { - "text": "Re-establish an official moratorium on the use of the death penalty", - "values": [ - "Death penalty" - ] - }, - { - "text": "Ensure universal access to health for all, by providing adequate funding in undertaking such a policy and allowing sufficient training for health personnel ", - "values": [ - "Right to health" - ] - }, - { - "text": "Further the work on various ministerial decisions and the implementation of monitoring mechanisms on protection of migrant workers from human rights violation", - "values": [ - "Labour", - "Migrants" - ] - }, - { - "text": "Ensure that the Elections Advisory Board is balanced and representative in order to ensure the independence of the Electoral Commissioner when monitoring the elections ", - "values": [ - "Elections" - ] - }, - { - "text": "Increase the financial resources allocated to bodies in charge of fighting drugs, alcoholism and drug dependence, in order to curb crime and violence in society", - "values": [ - "Public security" - ] - }, - { - "text": "Consider ensuring an effective, inclusive education for children with disabilities, and to improve universal design to ensure accessibility to everyone", - "values": [ - "Disabilities", - "Rights of the Child" - ] - }, - { - "text": "Provide comprehensive human rights training for law enforcement officers, including on issues related to forced eviction and violence against detainees and to racial discrimination and xenophobia", - "values": [ - "Detention", - "Human rights education and training", - "Racial discrimination" - ] - }, - { - "text": "Put in place special measures to monitor, identify, and report sexual and gender-based violence, with a view to its prevention and punishment, bearing in mind the need to exclude these crimes, where feasible, from amnesty processes", - "values": [ - "Justice", - "Rights of the Child", - "Women's rights" - ] - }, - { - "text": "Accelerate the internal procedures to ratify the Rome Statute of the International Criminal Court, and adhere to the Agreement on the Privileges and Immunities of the International Criminal Court, as well as to the Convention on the Non-Applicability of Statutory Limitations to War Crimes and Crimes against Humanity", - "values": [ - "International instruments", - "Justice" - ] - }, - { - "text": "Prohibit expressly the use of racial profiling in the enforcement of immigration legislation", - "values": [ - "Racial discrimination" - ] - }, - { - "text": "Strengthen the legal framework to combat all forms of violence against women and ensure its concrete implementation", - "values": [ - "Women's rights" - ] - }, - { - "text": "Continue efforts to ensure respect for human rights, while bearing in mind the religious and cultural specificities of the country.", - "values": [ - "General" - ] - }, - { - "text": "Enable Slovak National Centre for Human Rights to monitor the implementation of anti-discrimination legislation, initiate investigations and recommend remedies in individual cases involving discrimination in the enjoyment of the right to education.", - "values": [ - "National Human Rights Institution" - ] - }, - { - "text": "Implement comprehensive human rights training, with regular reviews to ensure effectiveness, for all military and police personnel, including those working in the Papua and West Papua provinces ", - "values": [ - "Human rights education and training" - ] - }, - { - "text": "Amend, as a first step, relevant laws that impose mandatory capital punishment", - "values": [ - "Death penalty" - ] - }, - { - "text": "Take legislative and administrative measures to combat violence against boys and girls and to eliminate child labour", - "values": [ - "Labour", - "Rights of the Child" - ] - }, - { - "text": "Consider all possibilities and initiate a public debate with a view to adopt, as a first step, a de facto moratorium on the enforcement of the death penalty.", - "values": [ - "Death penalty" - ] - }, - { - "text": "Continue implementing the plans and programmes of the second Philippines Human Rights Plan 2012-2017 ", - "values": [ - "General" - ] - }, - { - "text": "Become a party to the International Covenant on Economic, Social and Cultural Rights and the Optional Protocol thereto, the Optional Protocol to the Convention against Torture, the International Convention on the Protection of the Rights of All Migrant Workers and Members of Their Families and the International Convention for the Protection of All Persons from Enforced Disappearance ", - "values": [ - "International instruments" - ] - }, - { - "text": "Adopt measures to fight impunity in cases of torture ", - "values": [ - "Impunity", - "Torture and other CID treatment" - ] - }, - { - "text": "Place a moratorium on the death penalty with a view to its abolition", - "values": [ - "Death penalty" - ] - }, - { - "text": "Further engage with relevant international stakeholders, including United Nations human rights mechanisms", - "values": [ - "Special procedures", - "UPR process" - ] - }, - { - "text": "Put an end to the practice of rewriting history and interpreting it at will, including in the textbooks of secondary and high schools", - "values": [ - "Other" - ] - }, - { - "text": "Ensure that the Ombudsman enjoys full autonomy in accordance with the Paris Principle", - "values": [ - "National Human Rights Institution" - ] - }, - { - "text": "Continue to apply programmes and measures to tackle the challenges that Chad has been facing since 2009, particularly when it comes to child labour, violence against women and entrenched poverty", - "values": [ - "Labour", - "Poverty", - "Rights of the Child", - "Women's rights" - ] - }, - { - "text": "Share its experiences and best practices in strengthening efforts to combat the problem of trafficking in persons at the national and international levels ", - "values": [ - "Trafficking" - ] - }, - { - "text": "Introduce a de facto and de jure moratorium on the death penalty, with a view to adopting a law abolishing the death penalty ", - "values": [ - "Death penalty" - ] - }, - { - "text": "Continue its efforts in providing health care ", - "values": [ - "Right to health" - ] - }, - { - "text": "Take extra measures to support migrants and implement the recommendations of the Committee on the Rights of Child with regard to migrants ", - "values": [ - "Migrants", - "Treaty bodies" - ] - }, - { - "text": "Adopt promptly the reforms of the Criminal Code ", - "values": [ - "Justice" - ] - }, - { - "text": "Further pursue its efforts to establish equal conditions for the participation of men and women in the labour market, including by enhancing the availability of affordable full-day childcare centres and introducing legal entitlements for these services", - "values": [ - "Women's rights" - ] - }, - { - "text": "Slovakia remained committed to working towards the implementation of the voluntary pledges undertaken when presenting its candidature to the Council.", - "values": [ - "General" - ] - }, - { - "text": "Sign and ratify the Optional Protocol to the Convention on the Rights of the Child on a communications procedure", - "values": [ - "Rights of the Child" - ] - }, - { - "text": "Continue to consult stakeholders in its work to follow up the outcome of the universal periodic review.", - "values": [ - "Civil society", - "UPR process" - ] - }, - { - "text": "Continue to facilitate prison visits, including unannounced ones, by NGOs", - "values": [ - "Civil society", - "Detention" - ] - }, - { - "text": "Continue deploying efforts to combat employment discrimination", - "values": [ - "Labour" - ] - }, - { - "text": "Continue to pursue the issue of human rights and climate change at national and international levels", - "values": [ - "Environment" - ] - }, - { - "text": "Take further steps to protect women and girls against violence and discrimination and put in place appropriate policy measures in that regard ", - "values": [ - "Rights of the Child", - "Women's rights" - ] - }, - { - "text": "Adopt legislation to decriminalize homosexuality and to recognize the rights of lesbian, gay, bisexual and transgender people", - "values": [ - "Sexual Orientation and Gender Identity" - ] - }, - { - "text": "Allow privately owned media outlets to be established ", - "values": [ - "Freedom of the press" - ] - }, - { - "text": "Take concrete measures to improve health care for women to further decrease maternal mortality ", - "values": [ - "Right to health", - "Women's rights" - ] - }, - { - "text": "Ensure the implementation of the Electoral Law", - "values": [ - "Elections" - ] - }, - { - "text": "Accept the individual procedures of ICCPR, CERD and CAT", - "values": [ - "CP rights - general", - "International instruments", - "Racial discrimination", - "Torture and other CID treatment" - ] - }, - { - "text": "Continue current efforts to promote and protect the rights of rural women", - "values": [ - "Women's rights" - ] - }, - { - "text": "Pursue policy regarding persons with HIV and elderly persons which makes the commitment of Senegal more concrete for the cause of human rights ", - "values": [ - "HIV - Aids" - ] - }, - { - "text": "Seek to expedite the current process of establishing a national human rights institution, with a view to further improving the general situation of human rights in the Gambia", - "values": [ - "National Human Rights Institution" - ] - }, - { - "text": "Continue its efforts to develop inter-ethnic confidence and prevent all forms of racial discrimination ", - "values": [ - "Racial discrimination" - ] - }, - { - "text": "Ratify the main international human rights instruments, including OP-CAT, the optional protocols to the Convention on the Rights of the Child, the Convention on the Rights of Persons with Disabilities and its Optional Protocol, and the International Convention for the Protection of All Persons from Enforced Disappearance, and ensure that their provisions are incorporated into the national legal system", - "values": [ - "International instruments" - ] - }, - { - "text": "Strengthen the implementation of compulsory education for nine years", - "values": [ - "Right to education" - ] - }, - { - "text": "Persist in its national efforts aimed at the systematic inclusion of human rights education in its educational and vocational systems and at all school levels", - "values": [ - "Human rights education and training" - ] - }, - { - "text": "Continue to give particular attention to empowerment of women, children, and other vulnerable groups of the populations in the on-going and future agenda of the government ", - "values": [ - "Rights of the Child", - "Women's rights" - ] - }, - { - "text": "Submit overdue reports to the treaty bodies", - "values": [ - "Treaty bodies" - ] - }, - { - "text": "Increase measures to ensure that violence and discrimination against members of vulnerable groups, such as women and lesbians, gay, bisexual, and transgender persons, are both prevented and prosecuted ", - "values": [ - "Sexual Orientation and Gender Identity" - ] - }, - { - "text": "Allow the courts or another politically independent body to hear final appeals against the cancellation or denial of passports, visas or other Nauruan travel documents", - "values": [ - "Freedom of movement" - ] - }, - { - "text": "Take concrete measures aiming at fostering a genuine human rights culture with due regard to national and regional particularities as well as historical, cultural and religious background ", - "values": [ - "Other" - ] - }, - { - "text": "Approve general legislation to combat discrimination, which expressly covers all spheres of life and prohibits discrimination on any ground, particular on grounds of race, sexual orientation and gender identity", - "values": [ - "Racial discrimination", - "Sexual Orientation and Gender Identity" - ] - }, - { - "text": "Set up a national strategy for combating sexual abuse of children, including child pornography, with a view of preventing and combating the phenomenon.", - "values": [ - "Rights of the Child" - ] - }, - { - "text": "Continue and strengthen efforts in the field of economic, social and cultural rights, in particular in the field of health. ", - "values": [ - "ESC rights - general", - "Right to health" - ] - }, - { - "text": "Guarantee that decisions to expel asylum seekers, including those subject to the priority procedure, are not executed until a competent judge has ruled on the matter", - "values": [ - "Asylum-seekers - refugees" - ] - }, - { - "text": "Implement fully the national strategic framework against trafficking in persons and human smuggling, ensuring adequate human and financial resources", - "values": [ - "Rights of the Child", - "Trafficking", - "Women's rights" - ] - }, - { - "text": "Accede to and fully align its national legislation with the Rome Statute of the International Criminal Court (ICC), including by incorporating provisions to cooperate promptly and fully with the ICC and to investigate and prosecute genocide, crimes against humanity and war crimes effectively before its national courts, and accede to the Agreement on the Privileges and Immunities of the International Criminal Court ", - "values": [ - "International instruments", - "Justice" - ] - }, - { - "text": "Further develop more inclusive school programmes to ensure better integration of children with disabilities and indigenous children", - "values": [ - "Disabilities", - "Indigenous peoples", - "Right to education", - "Rights of the Child" - ] - }, - { - "text": "End the practice of arbitrary detention, release all political prisoners with immediate effect and implement the recommendations issued by the Working Group on Arbitrary Detention, including in opinion No. 26/2014", - "values": [ - "Detention", - "Special procedures" - ] - }, - { - "text": "Establish an independent national human rights institution in accordance with the Paris Principles ", - "values": [ - "National Human Rights Institution" - ] - }, - { - "text": "Commute without delay all death sentences to terms of imprisonment", - "values": [ - "Death penalty" - ] - }, - { - "text": "Create effective administrative and judicial mechanisms to remedy discriminatory acts against Roma and other minorities ", - "values": [ - "Minorities", - "Racial discrimination" - ] - }, - { - "text": "Consider adhering to the ICRMW, as well as gradually adapting its national legislation to the standards contained in this Convention ", - "values": [ - "International instruments", - "Labour", - "Migrants" - ] - }, - { - "text": "Consider forming twinning relationships or partnerships with countries that have been through a process of legal reforms on minority issues to work closely with them on the legal, technical and institutional challenges involved in introducing change.", - "values": [ - "Minorities" - ] - }, - { - "text": "Consider the possibility of amending the National Constitution to include a safeguard against statelessness, which establishes the acquisition of Tuvaluan nationality for children born in the territory who otherwise would be stateless ", - "values": [ - "Statelessness and the right to nationality" - ] - }, - { - "text": "Introduce a comprehensive public policy recognizing the role of human rights defenders, providing mechanisms for their effective protection, and conduct through and impartial investigations into all cases of attacks, harassment and intimidation committed against them", - "values": [ - "Human rights defenders" - ] - }, - { - "text": "Establish as quickly as possible a moratorium on executions with a view to a definitive abolition of the death penalty, and ensure respect for the fundamental rights of those persons convicted and their families", - "values": [ - "Death penalty" - ] - }, - { - "text": "Conduct national awareness campaigns concerning the prohibition of FGM.", - "values": [ - "Human rights education and training", - "Rights of the Child", - "Torture and other CID treatment", - "Women's rights" - ] - }, - { - "text": "Allocate more funding to the Ombudsman to allow for more aggressive prosecution of corruption cases.", - "values": [ - "Corruption", - "National Human Rights Institution" - ] - }, - { - "text": "Continue the implementation of policies to encourage the sustainable economic empowerment of women, in particular in rural areas", - "values": [ - "Women's rights" - ] - }, - { - "text": "Continue efforts to ensure adequate housing for all", - "values": [ - "Right to housing" - ] - }, - { - "text": "Create and maintain, in law and in practice, a safe and enabling environment, in which human rights defenders can operate free from hindrance and insecurity, in accordance with Human Rights Council resolution 22/6", - "values": [ - "Human rights defenders" - ] - }, - { - "text": "Take further concrete and effective steps towards social inclusion for Roma people ", - "values": [ - "Minorities" - ] - }, - { - "text": "Take additional steps to combat crime, especially that committed by young people and carry out strategies to protect them", - "values": [ - "Public security" - ] - }, - { - "text": "Continue to strengthen the Office of the Ombudsman of the Ministry of the Interior, the Ombudsman of the National Security Agency and the Special Investigations Unit, so they can fulfil their mandates effectively", - "values": [ - "National Human Rights Institution" - ] - }, - { - "text": "Take all necessary measures to ban secret places of detention, particularly by envisaging the signature and ratification of the International Convention for the Protection of All Persons from Enforced Disappearance.", - "values": [ - "Detention", - "Enforced disappearances", - "International instruments" - ] - }, - { - "text": "Continue its support to the Office of the Children's Rights Ombudsman", - "values": [ - "National Human Rights Institution", - "Rights of the Child" - ] - }, - { - "text": "Ensure the separation of juveniles and adults in prison cells, through, inter alia, establishing juvenile detention centres", - "values": [ - "Detention", - "Rights of the Child" - ] - }, - { - "text": "Ensure the full right for women to abortion and implement the decisions of the European Court of Human Rights regarding this right", - "values": [ - "International instruments", - "Women's rights" - ] - }, - { - "text": "Strengthen and ensure the independence of its human rights institutions such as the National Human Rights Commission in accordance with the Paris Principles.", - "values": [ - "National Human Rights Institution" - ] - }, - { - "text": "Enhance efforts to better integrate the Roma community into society", - "values": [ - "Minorities" - ] - }, - { - "text": "Continue the efforts directed towards the promotion of the rights of the child", - "values": [ - "Rights of the Child" - ] - }, - { - "text": "Sign the Optional Protocol to the Convention against Torture and Other Cruel, Inhuman or Degrading Treatment or Punishment ", - "values": [ - "Detention", - "International instruments", - "Torture and other CID treatment" - ] - }, - { - "text": "Implement national texts related to the rights of children and women ", - "values": [ - "Rights of the Child", - "Women's rights" - ] - }, - { - "text": "Expeditiously implement the Anti-Human Trafficking Act and provide facilities and necessary assistance to the victims, in particular women and children", - "values": [ - "Rights of the Child", - "Trafficking", - "Women's rights" - ] - }, - { - "text": "Develop necessary programmes in order to promote the economic and social development of women, especially in rural areas", - "values": [ - "Women's rights" - ] - }, - { - "text": "Take further steps to improve the effectiveness of measures to combat the recruitment of child soldiers", - "values": [ - "International humanitarian law", - "Rights of the Child" - ] - }, - { - "text": "Provide people detained under security or propaganda laws with fundamental legal safeguards, including representation by legal counsel of their choice throughout the proceedings and a public trial.", - "values": [ - "Detention" - ] - }, - { - "text": "Take measures to address violence and discrimination directed towards persons based on their sexual orientation, especially related to employment ", - "values": [ - "Sexual Orientation and Gender Identity" - ] - }, - { - "text": "Subject any detention of migrants, refugees or asylum seekers to judicial review and ensure that persons are informed of their rights.", - "values": [ - "Asylum-seekers - refugees", - "Migrants" - ] - }, - { - "text": "Adopt as a matter of priority the Code of Criminal Procedure and promote the training of justice officials", - "values": [ - "Human rights education and training", - "Justice" - ] - }, - { - "text": "Make efforts on the sensitization in education to strengthen the prevention of these forms of discrimination. ", - "values": [ - "Right to education" - ] - }, - { - "text": "Promote the ratification of the 1951 Convention relating to the Status of Refugees", - "values": [ - "Asylum-seekers - refugees", - "International instruments" - ] - }, - { - "text": "Continue to take effective measures to push forward the poverty alleviation strategy and ensure people's basic human rights, such as the right to subsistence and the right to development ", - "values": [ - "Development", - "Poverty" - ] - }, - { - "text": "Take all necessary measures to fight against discrimination and violence against persons with disabilities, including persons with albinism", - "values": [ - "Disabilities", - "Minorities" - ] - }, - { - "text": "Modify the provisions of the Penal Code relating to freedom of expression, such as those relating to defamation and publication of false news, in order to be consistent with international and regional human rights instruments", - "values": [ - "Freedom of opinion and expression", - "Freedom of the press", - "International instruments" - ] - }, - { - "text": "Carry out public campaigns to make the provisions of the new legislation eliminating the Family Head System and establishing equal rights in the marriage more effective.", - "values": [ - "Human rights education and training", - "Women's rights" - ] - }, - { - "text": "Recommended the updating of legislation regarding the situation of women, such as the Family Code in the areas of divorce, testimony and inheritance.", - "values": [ - "Women's rights" - ] - }, - { - "text": "Institute mechanisms to ensure that a gender perspective is incorporated into its future policies and programmes", - "values": [ - "Women's rights" - ] - }, - { - "text": "Continue efforts pursued thus far to combat gender violence ", - "values": [ - "Women's rights" - ] - }, - { - "text": "The Government has pledged, inter alia, to enhance the Bureau of Women's Affairs to a Department, strengthening human and financial capacities, as well as to submit a National Gender Policy to Cabinet by the end of 2012", - "values": [ - "Women's rights" - ] - }, - { - "text": "Take action to improve prison conditions ", - "values": [ - "Detention" - ] - }, - { - "text": "Take further steps to integrate refugees", - "values": [ - "Asylum-seekers - refugees" - ] - }, - { - "text": "Accelerate the adoption of a new comprehensive plan of action on gender equality and ensure its effective implementation", - "values": [ - "Women's rights" - ] - }, - { - "text": "Considering the high number of rape cases, take all necessary measures with a view to strengthening the foundation of family and avoid resorting to measures and legislation which endanger the very foundation of the family in society ", - "values": [ - "Rights of the Child", - "Women's rights" - ] - }, - { - "text": "Step up efforts to protect displaced persons, particularly providing assistance and access to public services on an equal basis", - "values": [ - "Internally displaced persons" - ] - }, - { - "text": "Strengthen the public impact of the People's Advocate (Ombudsman) and his capacity to act effectively as a preventive national force also when it comes to sensitive issues such as prosecution of acts of torture ", - "values": [ - "National Human Rights Institution" - ] - }, - { - "text": "Conduct wide consultations between different partners, in particular the legislative authority, with the view of adopting a family law.", - "values": [ - "Rights of the Child", - "Women's rights" - ] - }, - { - "text": "Accede to OP-CAT, and incorporate this into domestic law ", - "values": [ - "Detention", - "International instruments", - "Torture and other CID treatment" - ] - }, - { - "text": "Continue to adopt a positive perspective towards accession to ICCPR", - "values": [ - "CP rights - general", - "International instruments" - ] - }, - { - "text": "Further strengthen the legal provisions to effectively protect women who are victims of domestic violence, including marital rape", - "values": [ - "Women's rights" - ] - }, - { - "text": "Continue its efforts aimed at fighting trafficking in persons and, in particular, the trafficking and exploitation of children", - "values": [ - "Rights of the Child", - "Trafficking" - ] - }, - { - "text": "Continue to promote solidarity among all regions and provinces in the country in order to ensure sustainable and harmonious economic and social development", - "values": [ - "Development" - ] - }, - { - "text": "Adopt concrete initiatives to eradicate all kinds of discrimination against children, through the empowerment of their rights and fair mechanisms of reparation", - "values": [ - "Rights of the Child" - ] - }, - { - "text": "Ratify ICMW ", - "values": [ - "International instruments", - "Migrants" - ] - }, - { - "text": "Put priority attention to issues regarding education and training in the human rights area for the officials of the law enforcement bodies, judiciary and of investigative bodies ", - "values": [ - "Human rights education and training" - ] - }, - { - "text": "Pay special attention to the problems of the children living and working on the streets", - "values": [ - "Rights of the Child" - ] - }, - { - "text": "Undertake accurate measures to register associations of distinct communities, including those claiming minority group status", - "values": [ - "Minorities" - ] - }, - { - "text": "Better protect LGBTI persons and persons with AIDS against any act of discrimination and violence and review its legislation in this context", - "values": [ - "Sexual Orientation and Gender Identity" - ] - }, - { - "text": "Continue to improve the situation of persons with disabilities, including by accelerating the preparation of relevant strategies for 2017-2030, and start implementing them", - "values": [ - "Disabilities" - ] - }, - { - "text": "Intensify efforts to proactively identify trafficking victims among vulnerable populations, particularly women in prostitution and migrant men in the agricultural sector ", - "values": [ - "Migrants", - "Trafficking", - "Women's rights" - ] - }, - { - "text": "Put in place an adequate social housing system, with a clear definition of this concept and with broad social criteria for the allocation of these homes to the most needy families", - "values": [ - "Poverty", - "Right to housing" - ] - }, - { - "text": "Provide adapted solutions to the problems identified in the rural areas", - "values": [ - "Other" - ] - }, - { - "text": "Ratify the international conventions to which it has committed itself", - "values": [ - "International instruments" - ] - }, - { - "text": "Extend an open and ongoing invitation to all human rights mechanisms to visit the country.", - "values": [ - "Special procedures" - ] - }, - { - "text": "Adopt and implement a concrete plan of action realizing recommendations of treaty bodies and UN human rights mechanisms, and international human rights obligations ", - "values": [ - "International instruments", - "Special procedures", - "Treaty bodies", - "UPR process" - ] - }, - { - "text": "Take all necessary steps to prohibit corporal punishment in all settings and align its national legislation with the provisions of the CRC", - "values": [ - "International instruments", - "Rights of the Child", - "Torture and other CID treatment" - ] - }, - { - "text": "Declare, upon ratification of the CED, its acceptance of the competence of the Committee on Enforced Disappearances as provided for in articles 31 and 32 of the Convention ", - "values": [ - "Enforced disappearances", - "International instruments", - "Treaty bodies" - ] - }, - { - "text": "Strengthen measures aimed at ensuring development in a manner that is resistant to risks", - "values": [ - "Development" - ] - }, - { - "text": "Address the wage gap by further strengthening measures in ensuring that women and men receive equal pay for work of equal value ", - "values": [ - "Women's rights" - ] - }, - { - "text": "As a first step, end the executions of minors, in accordance with the commitment made by Iran under the International Covenant on Civil and Political Rights as well as the Convention on the Rights to the Child", - "values": [ - "Death penalty", - "International instruments", - "Rights of the Child" - ] - }, - { - "text": "Take further steps to address discrimination against, protect and provide assistance to women and vulnerable groups including children, minorities and indigenous peoples", - "values": [ - "Indigenous peoples", - "Minorities", - "Rights of the Child", - "Women's rights" - ] - }, - { - "text": "Call upon the Comoros to mobilize all its efforts and energies to ensure the full and effective implementation of the strategy for rapid growth and sustainable development adopted by the government for the period 2015-2019 ", - "values": [ - "Development" - ] - }, - { - "text": "Government is committed to offer comprehensive sexual and reproductive health and rights services in tandem with the international, regional and national policies such as the 1994 International Conference on Population and Development (ICPD) Programme of Action, ICPD 10, Millennium Development Goals (MDGs), African Union Sexual and Reproductive Health Rights (SRHR) Policy Guidelines, the African Union Health Strategy, the Southern Africa Development Community Health Strategy, and the Maputo Plan of Action. Other national policies are the Malawi Reproductive Health Strategy 2006-2010, the Malawi Reproductive Health Service Delivery Guidelines, the Road Map for Accelerating the Reduction of Maternal and Neonatal Mortality and Morbidity in Malawi, the Malawi Accelerated Child Survival and Development Strategy, the National Gender Policy, and the Malawi Population Policy.", - "values": [ - "Right to health", - "Rights of the Child", - "Women's rights" - ] - }, - { - "text": "Take further measures to improve the treatment of asylum-seekers and to ensure that deportation processes are carried out after exhaustion of legal remedies ", - "values": [ - "Asylum-seekers - refugees" - ] - }, - { - "text": "Take urgent steps to fully respect the rights of ethnic minorities, including peaceful political and religious practices and expressions of cultural identity", - "values": [ - "ESC rights - general", - "Freedom of association and peaceful assembly", - "Freedom of religion and belief", - "Minorities" - ] - }, - { - "text": "Ensure the provision of adequate resources for poverty reduction programmes", - "values": [ - "Poverty" - ] - }, - { - "text": "Improve the situation of indigenous peoples and guarantee their rights", - "values": [ - "Indigenous peoples" - ] - }, - { - "text": "In order to help overcome the problem of the heavy burden of treaty reporting, work with OHCHR to develop a common core document which, in conjunction with treaty-specific list of issues, will help to streamline treaty reporting ", - "values": [ - "Treaty bodies" - ] - }, - { - "text": "The delegation had listened in good faith to every statement and would make every effort to implement the suggestions thereon. For that purpose, it called for technical assistance and was committed to inform the Council regularly on new human rights developments.", - "values": [ - "Technical assistance and cooperation" - ] - }, - { - "text": "Reinforce the relevant legislative provisions to reduce child labour and to punish those who contravene them", - "values": [ - "Labour", - "Rights of the Child" - ] - }, - { - "text": "Extend a standing invitation to all special procedures and give a positive response to pending visits of Special Rapporteurs on freedom of expression, freedom of religion and the right to food and the Special Rapporteur on torture", - "values": [ - "Freedom of opinion and expression", - "Freedom of religion and belief", - "Right to food", - "Special procedures", - "Torture and other CID treatment" - ] - }, - { - "text": "Envisage implementing effective measures aimed at sustainably preventing and combating xenophobia and racist manifestations ", - "values": [ - "Racial discrimination" - ] - }, - { - "text": "Ratify and domesticate the Optional Protocol to the Convention of the Rights of the Child on a communications procedure", - "values": [ - "International instruments", - "Rights of the Child" - ] - }, - { - "text": "Consider the possibility of ratifying the OP-ICESCR ", - "values": [ - "ESC rights - general", - "International instruments" - ] - }, - { - "text": "Further pursue the national strategy and the action plan on the elimination of harmful traditional practices and FGM ", - "values": [ - "Rights of the Child", - "Torture and other CID treatment", - "Women's rights" - ] - }, - { - "text": "Intensify efforts to fight, more vigorously, ethnically motivated crimes at all levels.", - "values": [ - "Racial discrimination" - ] - }, - { - "text": "Update the Human Rights Council on the findings of the National Monitoring Mechanism and the measures taken to address the issue of extrajudicial killings, including the results of the relevant court procedures ", - "values": [ - "Extrajudicial executions" - ] - }, - { - "text": "Develop and implement laws, policies and mechanisms that ensure full protection of all journalists and human rights defenders against attacks and reprisals", - "values": [ - "Freedom of the press", - "Human rights defenders" - ] - }, - { - "text": "Take measures to prevent discrimination against migrants and refugees in access to the labour market, as well as to health care and education", - "values": [ - "Asylum-seekers - refugees", - "Labour", - "Migrants", - "Racial discrimination", - "Right to education", - "Right to health" - ] - }, - { - "text": "Strengthen legal framework to protect people belonging to the lesbian, gay, bisexual, transgender and intersex community, avoiding practices, known as conversion therapies in State premises", - "values": [ - "Sexual Orientation and Gender Identity" - ] - }, - { - "text": "Investigate all allegations on the use of torture and cruel treatment by law enforcement officers, hold the perpetrators legally responsible and provide compensation to victims", - "values": [ - "Human rights violations by state agents", - "Torture and other CID treatment" - ] - }, - { - "text": "To inculcate human rights, voter education and civic education in the education curriculum of schools", - "values": [ - "Human rights education and training" - ] - }, - { - "text": "Promotion of Democracy, Good Governance and Rule of Law", - "values": [ - "Justice" - ] - }, - { - "text": "Consider the recommendations of special procedures systematically for further reforms in the field of human rights", - "values": [ - "Special procedures" - ] - }, - { - "text": "Take firm measures to ensure that human rights defenders and peaceful activists are free to enjoy their fundamental rights of, inter alia, freedom of expression and freedom of association", - "values": [ - "Freedom of association and peaceful assembly", - "Freedom of opinion and expression", - "Human rights defenders" - ] - }, - { - "text": "Bring to justice the perpetrators of the slaughter of September 2009 and establish a witness protection mechanism for special cases", - "values": [ - "Justice" - ] - }, - { - "text": "Provide its National Human Rights Commission with adequate funding in order for it to be able to fulfil its role", - "values": [ - "National Human Rights Institution" - ] - }, - { - "text": "Continue to implement the National Mental Health plan and the HIV National Strategic Plan and improve the level of health care in the country", - "values": [ - "HIV - Aids", - "Right to health" - ] - }, - { - "text": "Pursue further efforts to combat discrimination against the Roma", - "values": [ - "Minorities", - "Racial discrimination" - ] - }, - { - "text": "Consider signing and ratifying the Optional Protocol to Convention on the Elimination of All Forms of Discrimination against Women ", - "values": [ - "International instruments", - "Women's rights" - ] - }, - { - "text": "Take all measures necessary to ensure that actions related to unaccompanied minors migrants, asylum seekers, refugees, victims of trafficking are in line with international standards ", - "values": [ - "Rights of the Child" - ] - }, - { - "text": "Take steps to ratify and implement ICESCR", - "values": [ - "ESC rights - general", - "International instruments" - ] - }, - { - "text": "Continue to strengthen measures to combat human trafficking and child labour", - "values": [ - "Labour", - "Rights of the Child", - "Trafficking" - ] - }, - { - "text": "Establish an independent body monitoring the fulfilment of child rights empowered to receive and investigate complaints on the violations of the rights of the child ", - "values": [ - "Rights of the Child" - ] - }, - { - "text": "Continue to improve on efforts to combat human trafficking ", - "values": [ - "Trafficking" - ] - }, - { - "text": "Acknowledge the legitimate role of human rights defenders and create and maintain a safe and enabling environment for human rights defenders and journalists to carry out their legitimate work without threat of violence or reprisals", - "values": [ - "Freedom of the press", - "Human rights defenders" - ] - }, - { - "text": "Continue with the measures to improve the status of women in society", - "values": [ - "Women's rights" - ] - }, - { - "text": "Ensure that the Code for Children and Adolescents and other relevant domestic legislation and practice are in full compliance with the requirements of ILO Convention No. 138", - "values": [ - "International instruments", - "Labour", - "Rights of the Child" - ] - }, - { - "text": "Implement all possible measures to improve the country's education system", - "values": [ - "Right to education" - ] - }, - { - "text": "Abolish the daiyo kangoku system or reform it so that it is consistent with the international law", - "values": [ - "Detention" - ] - }, - { - "text": "Continue its ongoing cooperation with neighbouring countries to combat the illicit drug trade ", - "values": [ - "Public security" - ] - }, - { - "text": "Identify its specific requirements to enable it to pursue efforts aimed at promoting and protecting human rights, especially in the economic and social domains, and in this regard, call upon the international community to extend assistance and support to the Government.", - "values": [ - "ESC rights - general", - "Technical assistance and cooperation" - ] - }, - { - "text": "Repeal the legal provisions that provide for the criminalization of lesbian, gay, bisexual, transgender and intersex persons, in respect of the principle of non-discrimination", - "values": [ - "Sexual Orientation and Gender Identity" - ] - }, - { - "text": "Sign and ratify OP-CAT", - "values": [ - "Detention", - "International instruments", - "Torture and other CID treatment" - ] - }, - { - "text": "Introduce a full prohibition of corporal punishment within the family in all states and territories ", - "values": [ - "Rights of the Child", - "Torture and other CID treatment" - ] - }, - { - "text": "Ensure accountability within government structures", - "values": [ - "Justice" - ] - }, - { - "text": "Consider adoption of a moratorium on executions with a view to abolishing the death penalty ", - "values": [ - "Death penalty" - ] - }, - { - "text": "Strengthen minorities' training for teachers in order to overcome such challenges as communication barriers due to language so as to integrate children of minorities into the local education system ", - "values": [ - "Minorities", - "Right to education", - "Rights of the Child" - ] - }, - { - "text": "Continue the efforts to continue improving the living conditions of the population, including improving access to basic health services with the support of the international community ", - "values": [ - "Right to health", - "Technical assistance and cooperation" - ] - }, - { - "text": "Address the issue of female genital mutilation in an appropriate manner through awareness-raising programmes for parents, women, girls and traditional and religious leaders and suitable legal instruments, as previously recommended in the first universal periodic review and accepted by Sierra Leone", - "values": [ - "Rights of the Child", - "Torture and other CID treatment", - "UPR process", - "Women's rights" - ] - }, - { - "text": "Adopt a comprehensive national action plan to combat racism and discrimination", - "values": [ - "Racial discrimination" - ] - }, - { - "text": "Ensure equal access to free and quality education for all children, and offer additional adult learning opportunities in order to increase literacy among the adult population", - "values": [ - "Right to education", - "Rights of the Child" - ] - }, - { - "text": "Sign and ratify CED, the Optional Protocol to ICESCR, CRPD and the Optional Protocol thereto", - "values": [ - "Disabilities", - "ESC rights - general", - "Enforced disappearances", - "International instruments" - ] - }, - { - "text": "Take concrete steps to strengthen its cooperation with the special procedures of the United Nations, in particular those of the Human Rights Council", - "values": [ - "Special procedures" - ] - }, - { - "text": "Further institutionalize measures to protect and promote the rights of the child", - "values": [ - "Rights of the Child" - ] - }, - { - "text": "Include civil society and human rights defenders in the development of legislation and decision-making processes, through an institutionalized consultation process.", - "values": [ - "Civil society", - "Human rights defenders" - ] - }, - { - "text": "Remove the offence of liable for journalists from the Criminal Code ", - "values": [ - "Freedom of the press" - ] - }, - { - "text": "Intensify efforts for the enhancement of the cultural, social and economic rights of women, children and people with disabilities", - "values": [ - "Disabilities", - "ESC rights - general", - "Rights of the Child", - "Women's rights" - ] - }, - { - "text": "Introduce further measures aimed at the effective prevention and combating of human trafficking, including the continuation of the public awareness campaign and cooperation with the relevant non-governmental organizations", - "values": [ - "Civil society", - "Human rights education and training", - "Trafficking" - ] - }, - { - "text": "Continue efforts to recognize and uphold the collective rights of the indigenous peoples ", - "values": [ - "Indigenous peoples" - ] - }, - { - "text": "Take further steps to fight human trafficking, including by enacting specific legislation.", - "values": [ - "Trafficking" - ] - }, - { - "text": "Effectively implement the Domestic Violence Prevention and Protection Act through advocacy and awareness-raising amongst targeted audiences", - "values": [ - "Human rights education and training", - "Rights of the Child", - "Women's rights" - ] - }, - { - "text": "Coordinate with international experts to conduct a review of recent legislation and decrees concerning the media and civil society, to determine whether these measures are consistent with Ukraine\u2019s international obligations", - "values": [ - "Civil society", - "Freedom of the press", - "International instruments" - ] - }, - { - "text": "Effectively guarantee the rights of migrants", - "values": [ - "Migrants" - ] - }, - { - "text": "Engage in a constructive dialogue with the National Assembly, with agreed outcomes on economic and governance challenges by July 2017", - "values": [ - "Other" - ] - }, - { - "text": "Establish an Independent Police Complaints and Misconduct Commission in accordance with the recommendations of the 2005 Royal Commission", - "values": [ - "Human rights violations by state agents" - ] - }, - { - "text": "Withdraw reservations to the 1951 Convention relating to the Status of Refugees in order to strengthen protection and local integration of refugees", - "values": [ - "Asylum-seekers - refugees", - "International instruments" - ] - }, - { - "text": "Undertake further work to ensure that the law is adequate to prosecute cases involving domestic violence and that such laws are properly enforced through, for example, increased police capacity-building and the appointment of female officers ", - "values": [ - "Rights of the Child", - "Women's rights" - ] - }, - { - "text": "Continue its efforts to guarantee the protection and rehabilitation of the victims of trafficking in persons, especially for women and children", - "values": [ - "Rights of the Child", - "Trafficking", - "Women's rights" - ] - }, - { - "text": "Publish a list of all detainees in places under its control, together with information on the grounds for their detention", - "values": [ - "Detention" - ] - }, - { - "text": "Develop mechanisms for overseeing the implementation of the Convention of the Rights of the Child in the West Bank and Gaza.", - "values": [ - "International instruments", - "Rights of the Child" - ] - }, - { - "text": "Establish a specific policy and plan of action to eradicate sexual violence against women and girls", - "values": [ - "Rights of the Child", - "Women's rights" - ] - }, - { - "text": "Continue its efforts to ensure the rights of persons with disabilities, including through the finalization of the ratification of CRPD ", - "values": [ - "Disabilities", - "International instruments" - ] - }, - { - "text": "Make further efforts to ensure the freedom of the media, the freedom of expression and the freedoms of thought and belief, continue to lay solid foundations for a democratic system, and strive to achieve economic and social development ", - "values": [ - "Development", - "Freedom of opinion and expression", - "Freedom of religion and belief", - "Freedom of the press" - ] - }, - { - "text": "Take measures to strengthen the independence of the judiciary.", - "values": [ - "Justice" - ] - }, - { - "text": "Intensify efforts to educate and train police, prison staff, law enforcement personnel and judges on all aspects of human rights", - "values": [ - "Human rights education and training" - ] - }, - { - "text": "Work with OHCHR to develop a common core document which, in conjunction with treaty-specific lists of issues, will help streamline treaty reporting, in order to help overcome the burden of treaty reporting ", - "values": [ - "Technical assistance and cooperation", - "Treaty bodies" - ] - }, - { - "text": "Strengthen prevention and monitoring measures in the health sector", - "values": [ - "Right to health" - ] - }, - { - "text": "Ratify the Convention on the Rights of Persons with Disabilities, the Optional Protocol to the Convention against Torture and the Optional Protocol to the Convention on the Rights of the Child on the sale of children, child prostitution and child pornography ", - "values": [ - "Detention", - "Disabilities", - "International instruments", - "Rights of the Child", - "Torture and other CID treatment", - "Trafficking" - ] - }, - { - "text": "Guarantee equitable protection to all places of worship in the country, including all Muslim and Christian sacred places.", - "values": [ - "Freedom of religion and belief", - "Minorities" - ] - }, - { - "text": "Take adequate and necessary measures to address violence against women", - "values": [ - "Women's rights" - ] - }, - { - "text": "As regards participation of women in the national decision-making process, Mauritius is committed to the decision taken by SADC to increase women's participation in politics and decision-making by 30%.", - "values": [ - "Women's rights" - ] - }, - { - "text": "Continue its effort to strengthen its institutional capacity and legislative framework to combat violent crimes and maintain law and order to ensure the enjoyment of human rights by its people ", - "values": [ - "Public security" - ] - }, - { - "text": "Proceed with the ratification process of the Rome Statute of the International Criminal Court at the earliest possible", - "values": [ - "International instruments", - "Justice" - ] - }, - { - "text": "Ratify the Rome Statute of the ICC and to fully align its national legislation with all obligations under the Rome Statue, including incorporating the Rome Statute definition of crimes and general principles, as well as adopting provisions enabling cooperation with the Court ", - "values": [ - "International instruments", - "Justice" - ] - }, - { - "text": "Take urgent measures as necessary to overcome prison overcrowding", - "values": [ - "Detention" - ] - }, - { - "text": "Guarantee that the national human rights institution has full independence in accordance with the Paris Principles ", - "values": [ - "National Human Rights Institution" - ] - }, - { - "text": "Establish a moratorium on the death penalty with a view to becoming a party to the second Optional Protocol to ICCPR, and continue with efforts to uphold all international human rights standards, including civil and political rights ", - "values": [ - "Death penalty", - "International instruments" - ] - }, - { - "text": "Continue strengthening its Court of Justice with a view to its carrying out its constitutional role without fear or favour.", - "values": [ - "Justice" - ] - }, - { - "text": "Continue the process of signing and ratifying international human rights instruments", - "values": [ - "International instruments" - ] - }, - { - "text": "Take measures to combat and condemn racism and hate speech by politicians and manifestations of racism in the media, particularly discriminatory and hate speech and the dissemination of ideas and racist remarks", - "values": [ - "Racial discrimination" - ] - }, - { - "text": "Increase the legal age of criminal responsibility from 8 years ", - "values": [ - "Rights of the Child" - ] - }, - { - "text": "Continue providing accessibility and high calibre education at all levels", - "values": [ - "Right to education" - ] - }, - { - "text": "Within the framework of the policy on promoting tolerance, strengthen measures towards interethnic harmony and cultural diversity ", - "values": [ - "Minorities" - ] - }, - { - "text": "Continue to move forward in implementing programmes and measures aimed at combating all forms of discrimination", - "values": [ - "Other" - ] - }, - { - "text": "Circulate necessary legislation to combat domestic violence, register and investigate promptly all cases.", - "values": [ - "Rights of the Child", - "Women's rights" - ] - }, - { - "text": "Respect freedom of peaceful assembly, including when exercised by the opposition", - "values": [ - "Freedom of association and peaceful assembly" - ] - }, - { - "text": "Ensure that its policies, legislation, regulations and enforcement measures effectively serve to prevent and address the heightened risk of business involvement of abuses in conflict situations, which includes situations of foreign occupation", - "values": [ - "Business and human rights" - ] - }, - { - "text": "Modify practices for the recruitment and retention of public civil servants and army personnel in order to guarantee equal opportunities, representativeness of the ethnic and cultural composition of the country, and to facilitate the employment of women in traditionally male-dominated sectors ", - "values": [ - "Women's rights" - ] - }, - { - "text": "Eventually consider extending a standing invitation to all special procedures.", - "values": [ - "Special procedures" - ] - }, - { - "text": "Promote programmes that encourage the education of children, especially girls in villages, and benefit vulnerable groups", - "values": [ - "Right to education", - "Rights of the Child" - ] - }, - { - "text": "Maintain its programmes aimed at preventing and combating racism, racial discrimination and xenophobia ", - "values": [ - "Racial discrimination" - ] - }, - { - "text": "De-criminalize same sex activities and adopt policies to counter discrimination against LGBT", - "values": [ - "Sexual Orientation and Gender Identity" - ] - }, - { - "text": "Continue with the ongoing efforts to fight discrimination against non-citizens on the basis of race or nationality, including by ensuring that appropriate legislation sanctioning such acts is applied effectively and all alleged cases are investigated", - "values": [ - "Racial discrimination" - ] - }, - { - "text": "Consider incorporating the Standard Minimum Rules for the Treatment of Prisoners and the United Nations Rules for the Treatment of Women Prisoners and Non-custodial Measures for Women Offenders (the Bangkok Rules) into its national legislation and government policies as appropriate", - "values": [ - "Detention", - "Women's rights" - ] - }, - { - "text": "Ratify the Optional Protocol to the Convention against Torture and Other\nCruel, Inhuman or Degrading Treatment or Punishment with a view to establishing a national preventive mechanism \n", - "values": [ - "Detention", - "International instruments", - "Torture and other CID treatment" - ] - }, - { - "text": "Increase its cooperation with the treaty bodies through regular reporting on the implementation of international conventions ", - "values": [ - "International instruments", - "Treaty bodies" - ] - }, - { - "text": "Consider prohibiting corporal punishment of children in all settings", - "values": [ - "Rights of the Child", - "Torture and other CID treatment" - ] - }, - { - "text": "Recommended the decriminalization of consensual same-sex activity between adults and the adoption of measures to promote tolerance in this regard, which would also facilitate more effective educational programmes for the prevention of HIV-AIDS.", - "values": [ - "HIV - Aids", - "Sexual Orientation and Gender Identity" - ] - }, - { - "text": "Speed up the process for the adoption of the National Plan to Reduce Violence against Women and their Children", - "values": [ - "Rights of the Child", - "Women's rights" - ] - }, - { - "text": "Undertake a transparent and fair process to determine the conditions and procedures of involuntary relocation ", - "values": [ - "Right to housing", - "Right to land" - ] - }, - { - "text": "Strengthen its efforts in the area of development as well as the implementation of the Millennium Development Goals MDGs especially, concerning the enrolment at all levels of education, the realization of the right to food and the decrease of maternal and child mortality rates", - "values": [ - "Development", - "Right to education", - "Right to food", - "Rights of the Child", - "Women's rights" - ] - }, - { - "text": "Take measures to reduce the amount of time that defendants spend in pre-trial detention ", - "values": [ - "Detention" - ] - }, - { - "text": "Put into effect the declaration of article 22 of the Convention against Torture.", - "values": [ - "International instruments", - "Torture and other CID treatment" - ] - }, - { - "text": "Establish an independent human rights institution that conforms with the Paris Principles", - "values": [ - "National Human Rights Institution" - ] - }, - { - "text": "Create and maintain, in law and in practice, a safe and enabling environment for civil society and human rights defenders, including in and in relation to Western Sahara, through a revision of the Criminal Code and remove limitations on freedom of expression, review the system for registration of associations and notification of assemblies and consistent application of rules to all peaceful assemblies irrespective of their topic", - "values": [ - "Civil society", - "Freedom of association and peaceful assembly", - "Freedom of opinion and expression", - "Human rights defenders" - ] - }, - { - "text": "Eliminate the legislation which criminalizes sexual relations among persons of the same sex, as well as all legislation which discriminates on the basis of sexual orientation, particularly in the Aceh province, where since the establishment of the Sharia Law in 2002 these kind of relations are not allowed ", - "values": [ - "Sexual Orientation and Gender Identity" - ] - }, - { - "text": "Sign the Optional Protocol to the International Covenant on Economic, Social and Cultural Rights, the Convention against Torture and Other Cruel, Inhuman or Degrading Treatment or Punishment and its Optional Protocol and ratify the International Convention for the Protection of All Persons from Enforced Disappearance ", - "values": [ - "Detention", - "ESC rights - general", - "Enforced disappearances", - "International instruments", - "Torture and other CID treatment" - ] - }, - { - "text": "Consider signing and-or ratifying the International Convention for the Protection of All Persons from Enforced Disappearance CED", - "values": [ - "Enforced disappearances", - "International instruments" - ] - }, - { - "text": "In the context of the withdrawal from the European Union, ensure that human rights achievements are preserved in the future framework of human rights protection in the United Kingdom and the future status of European citizens residing in the United Kingdom", - "values": [ - "General" - ] - }, - { - "text": "Keep on the current efforts to improve conditions of detention including limiting the overcrowdedness of prisons", - "values": [ - "Detention" - ] - }, - { - "text": "Enact the Prevention of Torture Bill", - "values": [ - "Justice", - "Torture and other CID treatment" - ] - }, - { - "text": "Treat equally same-sex relationships with opposite-sex relationships, including the right to equal consideration for adoption and access to reproductive medicine ", - "values": [ - "Sexual Orientation and Gender Identity" - ] - }, - { - "text": "Amend the provisions of the Law on the Ombudsman for Children, that impedes the Ombudsman from investigating the claims of children that find themselves in a situation of irregular migration", - "values": [ - "Migrants", - "National Human Rights Institution", - "Rights of the Child" - ] - }, - { - "text": "Establish, in consultation with civil society, a mechanism to develop and harmonize a legislative framework derived from the new Constitution and in accordance with international human rights standards", - "values": [ - "Civil society", - "International instruments" - ] - }, - { - "text": "Continue its efforts to eradicate any form of discrimination against older persons", - "values": [ - "Other" - ] - }, - { - "text": "Enforce legal safeguards to ensure fair and equal access to housing, education, employment and government services for Romani individuals and protection against arbitrary, forcible evictions and displacement from their homes or temporary residences", - "values": [ - "Labour", - "Minorities", - "Right to education", - "Right to housing" - ] - }, - { - "text": "Sign and ratify the International Convention on the Protection of the Rights of All Migrants Workers and Members of Their Families", - "values": [ - "International instruments", - "Labour", - "Migrants" - ] - }, - { - "text": "Ensure that the human rights of migrants, and migration policy and practice are fully respected by national legislation, and strengthen all efforts to implement the National Action Plan and Migration Management", - "values": [ - "Migrants" - ] - }, - { - "text": "Amend all laws infringing on press freedom, in particular the Statistics Act and the Cyber Crimes Act", - "values": [ - "Freedom of opinion and expression", - "Freedom of the press" - ] - }, - { - "text": "Elaborate a national human rights plan. ", - "values": [ - "National Human Rights Institution" - ] - }, - { - "text": "Allocate the resources necessary to develop programmes for an effective witness support network", - "values": [ - "Justice" - ] - }, - { - "text": "Decriminalize adultery and non-marital consensual sex.", - "values": [ - "Women's rights" - ] - }, - { - "text": "Consider signing and ratifying the new Optional Protocol to the CRC on a communications procedure ", - "values": [ - "International instruments", - "Rights of the Child" - ] - }, - { - "text": "Revoke executive order 546 which has been used as a basis for armed civilian volunteer units ", - "values": [ - "Public security" - ] - }, - { - "text": "Consider revising the current legislation on "combating extremism" so as to define precisely the crime of extremism and apply it only in relevant cases in full compliance with international obligations ", - "values": [ - "Other" - ] - }, - { - "text": "Reinforce the inquiries regarding the electoral unrest as well as the national reconciliation mechanisms, in particular through an independent review of their effectiveness ", - "values": [ - "Justice" - ] - }, - { - "text": "Ensure full independence of the judiciary system ", - "values": [ - "Justice" - ] - }, - { - "text": "Seek technical assistance and capacity-building support from the Office of the High Commissioner for Human Rights to facilitate the timely submission of reports to treaty bodies, as well as in the areas of human rights training and education ", - "values": [ - "Human rights education and training", - "Technical assistance and cooperation", - "Treaty bodies" - ] - }, - { - "text": "Further promote freedom of expression and the independence of the media ", - "values": [ - "Freedom of opinion and expression", - "Freedom of the press" - ] - }, - { - "text": "Develop more effective strategies to prevent and combat HIV/AIDS", - "values": [ - "HIV - Aids" - ] - }, - { - "text": "Incorporate in the legislation the combat against discrimination based on gender identity or expression ", - "values": [ - "Sexual Orientation and Gender Identity" - ] - }, - { - "text": "Continue to incorporate the provisions of the Convention on the Rights of the Child and the African Charter on the Rights and Welfare of the Child into national legislation.", - "values": [ - "International instruments", - "Rights of the Child" - ] - }, - { - "text": "Ratify the Optional Protocol to the Convention against Torture and Other Cruel, Inhuman or Degrading Treatment or Punishment as soon as possible", - "values": [ - "International instruments", - "Torture and other CID treatment", - "Treaty bodies" - ] - }, - { - "text": "Conclude the drafting and adoption of the national preventive mechanism against torture and other ill-treatment in accordance with the Optional Protocol to the Convention against Torture", - "values": [ - "Detention", - "International instruments", - "Torture and other CID treatment" - ] - }, - { - "text": "Give consideration to the implementation of measures and programmes to provide assistance to landmine victims such as psycho-social, medical and financial support", - "values": [ - "International humanitarian law", - "Right to health" - ] - }, - { - "text": "Adopt as a matter of priority further legislative as well as practical measures to raise public awareness about the laws, better train police and other authorities to deal appropriately and effectively with victims of sexual assault and other violence against women, ensure victims' access to justice and improve support services such as shelters and burn units for women.", - "values": [ - "Human rights education and training", - "Women's rights" - ] - }, - { - "text": "Pursue the judicial and administrative reforms with a time-bound action plan to build an effective, open and transparent legal system based on the rule of law.", - "values": [ - "Justice" - ] - }, - { - "text": "Step up its efforts in the area of education and human rights training ", - "values": [ - "Human rights education and training" - ] - }, - { - "text": "Consider participating in further burden sharing programmes, such as the European Union refugee relocation scheme and the refugee quota system", - "values": [ - "Asylum-seekers - refugees" - ] - }, - { - "text": "Continue efforts in the fight against impunity for domestic violence and develop accommodation facilities and support mechanisms for victims of such violence", - "values": [ - "Impunity", - "Rights of the Child", - "Women's rights" - ] - }, - { - "text": "Abolish the death penalty for all cases, and sign and ratify OP2-ICCPR ", - "values": [ - "Death penalty", - "International instruments" - ] - }, - { - "text": "Elaborate a road map to improve prison conditions and to prevent mistreatment of prisoners.", - "values": [ - "Detention" - ] - }, - { - "text": "Continue to cooperate with the international community in its effort to further advance democratic society and to improve human rights and the wellbeing of its people in accordance with national priorities as reflected in its development strategies and policies ", - "values": [ - "General" - ] - }, - { - "text": "Ratify the 12 international human rights instruments to which it is not a party", - "values": [ - "International instruments" - ] - }, - { - "text": "Continue to undertake the appropriate steps in view of considering the ratification of the international human rights instruments mentioned in paragraph 23 of the national report (International Covenant on Civil and Political Rights, International Covenant on Economic Social and Cultural Rights, Convention Against Torture and Convention on the Elimination of All Forms of Racial Discrimination)", - "values": [ - "CP rights - general", - "ESC rights - general", - "International instruments", - "Racial discrimination", - "Torture and other CID treatment" - ] - }, - { - "text": "Guarantee the rights to freedom of expression, association and peaceful assembly particularly by allowing peaceful demonstrations in line with the obligations stemming from the International Covenant on Civil and Political Rights ", - "values": [ - "Freedom of association and peaceful assembly", - "Freedom of opinion and expression", - "International instruments" - ] - }, - { - "text": "Continue the measures already undertaken to strengthen the fight against harmful practices and violence against women", - "values": [ - "Torture and other CID treatment", - "Women's rights" - ] - }, - { - "text": "Strengthen efforts in the fight against trafficking in women and girls as well as the exploitation of prostitution, and harmonize legal procedures concerning prosecution of traffickers ", - "values": [ - "Rights of the Child", - "Trafficking", - "Women's rights" - ] - }, - { - "text": "Continue to strengthen its poverty eradication strategies, as well as programmes aimed at improving maternal health and conditions of employment, including the need to obviate child labour, particularly for those children orphaned by the HIV and AIDS pandemic ", - "values": [ - "HIV - Aids", - "Poverty", - "Right to health", - "Rights of the Child", - "Women's rights" - ] - }, - { - "text": "Take all necessary measures to prevent exploitation, including human trafficking that Rohingya Muslims are suffering from, and address the root causes that force them to be vulnerable to those practices", - "values": [ - "Freedom of religion and belief", - "Minorities", - "Trafficking" - ] - }, - { - "text": "Encourage public debate on the draft Constitution", - "values": [ - "General" - ] - }, - { - "text": "Continue implementing the national strategy for the promotion and protection of human rights", - "values": [ - "General" - ] - }, - { - "text": "Establish a de facto moratorium on the death penalty as a first step towards its abolition and ratify the Second Optional Protocol to the International Covenant on Civil and Political Rights, aiming at the abolition of the death penalty", - "values": [ - "Death penalty", - "International instruments" - ] - }, - { - "text": "Take measures to actively track the implementation and results of the Domestic Violence Act and the National Gender-based Violence Action Plan and to publicly report on these efforts to reduce violence, especially against women and girls", - "values": [ - "Rights of the Child", - "Women's rights" - ] - }, - { - "text": "Ratify the Convention on the Rights of the Child, the International Convention on the Protection of the Rights of All Migrant Workers and Members of their Families, International Convention for the Protection of All Persons from Enforced Disappearance, the Convention on the Rights of Persons with Disabilities, the Convention on the Elimination of All forms of Discrimination against Women and the Rome Statute of the International Criminal Court", - "values": [ - "International instruments" - ] - }, - { - "text": "Ensure that all allegations of excessive use of force or arbitrary behaviour by State officials, including those that may amount to torture or ill-treatment, are investigated", - "values": [ - "Human rights violations by state agents", - "Torture and other CID treatment" - ] - }, - { - "text": "Continue to implement strategies and plans for the socio-economic development of the country ", - "values": [ - "Development" - ] - }, - { - "text": "Finalize the establishment of the State bureau of investigations and accord it the resources and independence needed to investigate crimes committed by public officials, judges and law enforcement officers, thereby addressing impunity", - "values": [ - "Human rights violations by state agents", - "Impunity" - ] - }, - { - "text": "Continue to explore methods of development and implementation of human rights in harmony with its characteristics, its realities and the needs of Chinese society", - "values": [ - "General" - ] - }, - { - "text": "Accede to ILO Convention No. 189 ", - "values": [ - "International instruments", - "Labour" - ] - }, - { - "text": "Enact and implement laws and policies that recognize and protect human rights defenders, and ensure prompt, thorough and impartial investigations of all violations against them", - "values": [ - "Human rights defenders" - ] - }, - { - "text": "Strengthen the Ministry for the Advancement of Women to meet the specific needs of women and girls", - "values": [ - "Rights of the Child", - "Women's rights" - ] - }, - { - "text": "Ensure the implementation of gender equality policies, including through mainstreaming gender equality training in the education sector", - "values": [ - "Human rights education and training", - "Women's rights" - ] - }, - { - "text": "Decriminalize sexual acts between consenting adults of the same sex ", - "values": [ - "Sexual Orientation and Gender Identity" - ] - }, - { - "text": "Review all relevant legislations, including the State's new Fundamental Law to ensure that all persons with disabilities have a right to vote, and that they can participate in political and public life on an equal basis with others", - "values": [ - "Disabilities", - "Elections" - ] - }, - { - "text": "Take measures to strengthen the full independence of its legal system and shorten the time it takes for cases to go through the courts in order to boost the population's confidence in the legal system ", - "values": [ - "Justice" - ] - }, - { - "text": "Continue improving the life conditions of migrants and refugees in Brazil ", - "values": [ - "Asylum-seekers - refugees", - "Migrants" - ] - }, - { - "text": "Reconsider its position relating to the ratification of the International Convention on the Protection of the Rights of All Migrant Workers and Members of Their Families pursuing to recommendation 1737 of 17 March 2006 of the Parliamentary Assembly of the Council of Europe, which Belgium is a member of ", - "values": [ - "International instruments", - "Labour", - "Migrants" - ] - }, - { - "text": "Introduce literacy programmes aimed especially at women, and improve access to education\nby women, including those in remote parts of the country ", - "values": [ - "Women's rights" - ] - }, - { - "text": "Move on speedily to the ratification and/or application of human rights instruments and optional protocols, particularly the Optional Protocol to the Convention against Torture and Other Cruel, Inhuman or Degrading Treatment or Punishment", - "values": [ - "Detention", - "International instruments", - "Torture and other CID treatment" - ] - }, - { - "text": "Continue the measures necessary to ensure that women victims of domestic violence and gender-based violence have access to effective means of prevention and protection and that perpetrators are brought to justice ", - "values": [ - "Rights of the Child", - "Women's rights" - ] - }, - { - "text": "Reinstate a moratorium on executions with a view to the definitive abolition of the death penalty", - "values": [ - "Death penalty" - ] - }, - { - "text": "Continue its capacity-building activities and human rights training for defence and security forces by utilizing various international cooperation, including South-South cooperation", - "values": [ - "Human rights education and training", - "Technical assistance and cooperation" - ] - }, - { - "text": "Amend the new Aliens law on confiscating valuable belongings to cover refugees' expenses to ensure compatibility with human rights obligations", - "values": [ - "Asylum-seekers - refugees", - "Racial discrimination" - ] - }, - { - "text": "Take appropriate measures to grant unfettered access to the Special Rapporteur on the situation of human rights in Belarus as well as respond positively to pending visit requests of other special procedures mandate holders of the Human Rights Council and eventually consider extending a standing invitation", - "values": [ - "Special procedures" - ] - }, - { - "text": "Reform the Penal Code to abolish the ban imposed on sexual relations between same sex adults, in order to comply with the commitments made in 2011", - "values": [ - "Sexual Orientation and Gender Identity", - "UPR process" - ] - }, - { - "text": "Strengthen further the child protection system in the country through the necessary reforms, adopting a human-rights based approach", - "values": [ - "Rights of the Child" - ] - }, - { - "text": "Take active measures to combat discrimination and violence against women and improve its Law on Gender Equality in order to align it with the Convention on the Elimination of All Forms of Discrimination against Women", - "values": [ - "International instruments", - "Women's rights" - ] - }, - { - "text": "Continue to strengthen its efforts to combat trafficking in persons by providing the necessary budget to establish a larger number of local bodies to combat this scourge ", - "values": [ - "Trafficking" - ] - }, - { - "text": "Intensify the training programmes for the personnel responsible for law enforcement", - "values": [ - "Human rights education and training" - ] - }, - { - "text": "Improve the incarceration conditions of prisoners, particularly by reducing overcrowding, malnutrition and the shortage of adequate medical care", - "values": [ - "Detention", - "Right to food", - "Right to health" - ] - }, - { - "text": "Intensify its efforts to ratify the International Convention for the Protection of All Persons from Enforced Disappearances ", - "values": [ - "Enforced disappearances", - "International instruments" - ] - }, - { - "text": "Guarantee a favourable environment for the work of all civil society actors active in the field of the protection and promotion of human rights", - "values": [ - "Civil society", - "Human rights defenders" - ] - }, - { - "text": "Become a party to some conventions to which it has yet to accede, including the Convention relating to the Status of Refugees, CED and the Rome Statute ", - "values": [ - "Asylum-seekers - refugees", - "Enforced disappearances", - "International instruments", - "Justice" - ] - }, - { - "text": "Continue with the on-going program to ensure decent housing to every Venezuelan family", - "values": [ - "Right to housing" - ] - }, - { - "text": "Accelerate the domestication of the provisions of the international human rights instruments to which it is a party", - "values": [ - "International instruments" - ] - }, - { - "text": "Continue the process of improving the implementation of anti-discrimination legislation", - "values": [ - "Other" - ] - }, - { - "text": "Establish an official moratorium on the use of the death penalty ", - "values": [ - "Death penalty" - ] - }, - { - "text": "Withdraw its reservations to the Convention on the Elimination of All Forms of Discrimination against Women and adopt constitutional and legal reforms in conformity with the principles of the Convention, with a view to eliminating all forms of discrimination against women and girl children, which remain in education, employment, the family and political life ", - "values": [ - "International instruments", - "Women's rights" - ] - }, - { - "text": "Ensure that religious and civil society organizations can operate without restrictions in accordance with its international obligations", - "values": [ - "Civil society" - ] - }, - { - "text": "Consider intensifying human rights education.", - "values": [ - "Human rights education and training" - ] - }, - { - "text": "Strengthen the implementation of criminal law provisions aimed at combating racially motivated crimes", - "values": [ - "Racial discrimination" - ] - }, - { - "text": "Implement a variety of measures to strengthen the participation of women in all social areas ", - "values": [ - "Women's rights" - ] - }, - { - "text": "Rehabilitate Myanmar returnees in cooperation with the relevant United Nations agencies ", - "values": [ - "Asylum-seekers - refugees" - ] - }, - { - "text": "Ensure equal access to public health for lesbian, gay, bisexual and transgender persons", - "values": [ - "Right to health", - "Sexual Orientation and Gender Identity" - ] - }, - { - "text": "Protect opposition party members, journalists and human rights defenders from harassment and arbitrary arrest and lift all restrictions to peaceful demonstrations ", - "values": [ - "Detention", - "Freedom of association and peaceful assembly", - "Freedom of the press", - "Human rights defenders" - ] - }, - { - "text": "Intensify its efforts to fight corruption, including by raising public awareness ", - "values": [ - "Corruption" - ] - }, - { - "text": "Sign and ratify the Optional Protocol to the Convention against Torture and Other Cruel, Inhuman or Degrading Treatment or Punishment OP-CAT ", - "values": [ - "Detention", - "International instruments", - "Torture and other CID treatment" - ] - }, - { - "text": "Ensure that the 2016 draft law on preventing and fighting domestic violence also includes punitive sanctions for the perpetrators", - "values": [ - "Rights of the Child", - "Women's rights" - ] - }, - { - "text": "Remove the death penalty from its criminal statutes and ratify the Second Optional Protocol to the ICCPR ", - "values": [ - "Death penalty", - "International instruments" - ] - }, - { - "text": "Guarantee the right to non-refoulement and the right to family reunification without distinction based on legal status", - "values": [ - "Asylum-seekers - refugees" - ] - }, - { - "text": "Abolish all statutory time limits pertaining to the investigation of and prosecution for serious human rights violations", - "values": [ - "Justice" - ] - }, - { - "text": "Adopt a policy of cooperation with OHCHR and other United Nations human rights mechanisms, including the Commission of Inquiry, and allow these mechanisms to visit the country", - "values": [ - "Special procedures", - "Technical assistance and cooperation", - "Treaty bodies", - "UPR process" - ] - }, - { - "text": "Intensify the fight against modern forms of slavery", - "values": [ - "Other" - ] - }, - { - "text": "Align its national legislation with the Rome Statute of the International Criminal Court, including by adopting provisions to cooperate with the International Criminal Court", - "values": [ - "International instruments", - "Justice" - ] - }, - { - "text": "Remove the remaining reservation to the Convention on the Elimination of All Forms of Discrimination against Women and align its national legislation, including the Civil Code, with this Convention to give women equal rights in matters of inheritance and guardianship of children ", - "values": [ - "International instruments", - "Women's rights" - ] - }, - { - "text": "Re-evaluate its policy on the ICERD ", - "values": [ - "International instruments", - "Racial discrimination" - ] - }, - { - "text": "Become a party of the Optional Protocol to the Convention against Torture (OP-CAT) ", - "values": [ - "Detention", - "International instruments", - "Torture and other CID treatment" - ] - }, - { - "text": "Ratify ICERD ", - "values": [ - "International instruments", - "Racial discrimination" - ] - }, - { - "text": "Strengthen the justice system to protect human rights of the vulnerable people in particular women and children", - "values": [ - "Rights of the Child", - "Women's rights" - ] - }, - { - "text": "Impose concrete measures to ensure that courts carry out their functions in accordance with ratified international treaties", - "values": [ - "International instruments" - ] - }, - { - "text": "Continue efforts aimed at promoting the rights of children, in particular in the spheres of education, elimination of child poverty, meeting needs of vulnerable and at-risk children ", - "values": [ - "Poverty", - "Right to education", - "Rights of the Child" - ] - }, - { - "text": "Remove obstacles to freedom of expression and movement against human rights defenders, including all travel bans", - "values": [ - "Freedom of movement", - "Freedom of opinion and expression", - "Human rights defenders" - ] - }, - { - "text": "Ensure free access for civil society and national journalists to Papua and West Papua ", - "values": [ - "Civil society", - "Freedom of the press" - ] - }, - { - "text": "Implement and develop social assistance programmes for the elderly ", - "values": [ - "Other" - ] - }, - { - "text": "Take measures to protect human rights defenders, particularly in the Western Sahara, against harassment, repression, arrest or detention, including by granting an official accreditation to the associations working in this field ", - "values": [ - "Civil society", - "Detention", - "Human rights defenders" - ] - }, - { - "text": "Expedite its fight against impunity and prosecute the perpetrators of serious violations of human rights committed during the post-electoral crisis", - "values": [ - "Impunity" - ] - }, - { - "text": "Cooperate with the United Nations mechanisms including with the Special Rapporteur on the situation of human rights in Belarus", - "values": [ - "Special procedures" - ] - }, - { - "text": "Consider accession to the Convention against Torture", - "values": [ - "International instruments", - "Torture and other CID treatment" - ] - }, - { - "text": "Establish the institution of an ombudsman.", - "values": [ - "National Human Rights Institution" - ] - }, - { - "text": "Establish an effective policy to guarantee the implementation of non-discriminatory sex education throughout the education system and at all levels, in line with current up-to-date scientific information and from a human rights approach", - "values": [ - "Other" - ] - }, - { - "text": "Strengthen its efforts to promote and protect the rights of women prisoners, pregnant women prisoners and children born in prison, especially in accordance with the United Nations Rules for the Treatment of Women Prisoners and Non-Custodial Measures for Women Offenders, otherwise known as the "Bangkok Rules" ", - "values": [ - "Detention", - "Rights of the Child", - "Women's rights" - ] - }, - { - "text": "Intensify efforts to combat the dissemination of ideas based on the racial superiority through Internet", - "values": [ - "Racial discrimination" - ] - }, - { - "text": "Continue efforts aimed at completing the programme to prevent discrimination based on disabilities", - "values": [ - "Disabilities" - ] - }, - { - "text": "Italy is committed to ratifying the Optional Protocol to the Convention against Torture once a relevant independent national preventive mechanism will be put in place.", - "values": [ - "Detention", - "International instruments", - "Torture and other CID treatment" - ] - }, - { - "text": "Increase efforts to reform the judicial system, to allocate the necessary human and material resources necessary for the functioning of independent, impartial and effective justice system in order to implement the recommendations by the national Commission of investigations, established in 2008.", - "values": [ - "Justice" - ] - }, - { - "text": "Consider the ratification of the Convention on the Rights of Persons with Disabilities (CRPD)", - "values": [ - "Disabilities", - "International instruments" - ] - }, - { - "text": "Seriously consider ratification of other existing human rights treaties ", - "values": [ - "International instruments" - ] - }, - { - "text": "Continue taking strong measures with a view to fully combating sexual exploitation of children and ensure that the law is strengthened to tackle impunity for these crimes ", - "values": [ - "Impunity", - "Rights of the Child" - ] - }, - { - "text": "Collaborate with treaty bodies and special procedures mandate holders ", - "values": [ - "Special procedures", - "Treaty bodies" - ] - }, - { - "text": "Keep its attention towards the economic empowerment of women", - "values": [ - "Women's rights" - ] - }, - { - "text": "Submit overdue treaty body reports as soon as possible, as previously requested", - "values": [ - "Treaty bodies", - "UPR process" - ] - }, - { - "text": "Continue promoting the participation of women in social, economic and political spheres contributing to the development of the country", - "values": [ - "Women's rights" - ] - }, - { - "text": "Continue taking measures to protect social rights, including the rights of children, women and persons with disabilities", - "values": [ - "Disabilities", - "ESC rights - general", - "Rights of the Child", - "Women's rights" - ] - }, - { - "text": "Consider issuing a standing invitation to all United Nations special procedures.", - "values": [ - "Special procedures" - ] - }, - { - "text": "Continue to effectively and fully implement the National Strategy to Protect Children\u2019s Rights for the term 2012-2018", - "values": [ - "Rights of the Child" - ] - }, - { - "text": "Continue collaborating with the special procedures of the Human Rights Council on cases of enforced or involuntary disappearance", - "values": [ - "Enforced disappearances", - "Special procedures" - ] - }, - { - "text": "Adopt and implement a comprehensive strategy to prevent violence against children", - "values": [ - "Rights of the Child" - ] - }, - { - "text": "Convene an independent commission to investigate all credible allegations of human rights violations related to the 2012 law enforcement action at Marina Cue", - "values": [ - "Human rights violations by state agents", - "Justice" - ] - }, - { - "text": "Allocate additional resources to provide human rights training for judges in order to enhance their current knowledge of human rights principles ", - "values": [ - "Human rights education and training" - ] - }, - { - "text": "Take all action necessary to ensure the protection of refugees and asylum seekers, including the provision of access to birth registration for all children born in Libya, and the ratification of the Convention relating to the Status of Refugees and its 1967 Protocol", - "values": [ - "Asylum-seekers - refugees", - "International instruments", - "Rights of the Child", - "Statelessness and the right to nationality" - ] - }, - { - "text": "Continue in its efforts to accede the International Convention on the Rights of All Migrant Workers and Members of their Families", - "values": [ - "International instruments", - "Labour", - "Migrants" - ] - }, - { - "text": "Take steps to decriminalize defamation and review its media-related laws including the Printing and Publishing Act of 1967", - "values": [ - "Freedom of opinion and expression", - "Freedom of the press" - ] - }, - { - "text": "Continue strengthening legal and policy protections which guarantee the rights of the child, in line with the provisions of the Convention on the Rights of the Child and its Optional Protocols", - "values": [ - "International humanitarian law", - "International instruments", - "Labour", - "Rights of the Child", - "Trafficking" - ] - }, - { - "text": "Ensure that the transitional justice system is finally created", - "values": [ - "Justice" - ] - }, - { - "text": "Adopt effective measures to support Indigenous Peoples, including by ensuring food, health services, schools, and access to sanitary services and by creating conditions for higher incomes", - "values": [ - "Indigenous peoples", - "Right to education", - "Right to food", - "Right to health", - "Right to water and sanitation" - ] - }, - { - "text": "Develop a national action plan against racism and xenophobia ", - "values": [ - "Racial discrimination" - ] - }, - { - "text": "Establish a moratorium on executions with a view to formally abolishing the death penalty ", - "values": [ - "Death penalty" - ] - }, - { - "text": "Take legislative and practical measures to ensure the independence and effectiveness of the judiciary ", - "values": [ - "Justice" - ] - }, - { - "text": "Cooperate with the United Nations by giving the Commission of Inquiry established by the United Nations Human Rights Council unfettered access to the country so that it may carry out its mandate", - "values": [ - "Technical assistance and cooperation" - ] - }, - { - "text": "Immediately cease all forms of forced displacement, in accordance with the applicable international humanitarian and human rights law and the Guiding Principles on Internal Displacement (1998)", - "values": [ - "Internally displaced persons" - ] - }, - { - "text": "Combat all forms of discrimination against persons with albinism", - "values": [ - "Minorities", - "Racial discrimination" - ] - }, - { - "text": "Strengthen strategies for access to primary education, particularly for young girls ", - "values": [ - "Right to education", - "Rights of the Child" - ] - }, - { - "text": "Continue its efforts to promote and protect human rights while also safeguarding the institution of the family in all its component parts, and to preserve religious tolerance ", - "values": [ - "Freedom of religion and belief" - ] - }, - { - "text": "Continue efforts to enhance the necessary measures related to the implementation of the National Development Plan through appropriate means", - "values": [ - "Development" - ] - }, - { - "text": "Take further steps to improve the current conditions of its prisons", - "values": [ - "Detention" - ] - }, - { - "text": "Accelerate efforts in the adoption of the National Human Rights Action Plan", - "values": [ - "General" - ] - }, - { - "text": "Assess the situation and take measures to reduce pollution emissions from the Cerano coal power plant in Puglia and the Taranto metallurgical plant to ensure an adequate standard of living and health in those areas", - "values": [ - "Business and human rights", - "Environment", - "Right to health" - ] - }, - { - "text": "Take necessary steps to provide basic rights for migrants and asylum seekers ", - "values": [ - "Asylum-seekers - refugees", - "Migrants" - ] - }, - { - "text": "Update the legislation aimed at the training of persons who deal with children, the elderly, ill persons and disabled persons", - "values": [ - "Detention", - "Disabilities", - "Rights of the Child" - ] - }, - { - "text": "Enhance cooperation and involvement of indigenous peoples in decision-making and take measures to encourage their participation in public and political life ", - "values": [ - "Indigenous peoples" - ] - }, - { - "text": "Continue the measures to combat discrimination against LGBTI persons ", - "values": [ - "Sexual Orientation and Gender Identity" - ] - }, - { - "text": "Consider accession to the Optional Protocol to the Convention against Torture and Other Cruel, Inhuman or Degrading Treatment or Punishment ", - "values": [ - "International instruments", - "Torture and other CID treatment" - ] - }, - { - "text": "Include representatives of the Sami people in all political, economic and social decisions that concern them, on an equal footing with others ", - "values": [ - "Indigenous peoples" - ] - }, - { - "text": "Continue to adopt legal and political measures, along with widespread awareness-raising and sensitization campaigns aimed at continuing to make progress towards gender equality, in particular in the areas of the family, labour, politics and education", - "values": [ - "Human rights education and training", - "Women's rights" - ] - }, - { - "text": "Take necessary measure to prevent and protect further assaults on health services centres", - "values": [ - "Public security", - "Right to health" - ] - }, - { - "text": "Adopt all necessary measures to ensure equality between men and women fully and in all circumstances.", - "values": [ - "Women's rights" - ] - }, - { - "text": "Publish a detailed roadmap of planned human rights and political reforms", - "values": [ - "General" - ] - }, - { - "text": "Continue considering the establishment of a national human rights commission in compliance with the Paris Principles", - "values": [ - "National Human Rights Institution" - ] - }, - { - "text": "Continue its efforts to combat racial discrimination, xenophobia and racism", - "values": [ - "Racial discrimination" - ] - }, - { - "text": "Continue efforts in addressing the welfare of expatriate workers", - "values": [ - "Labour", - "Migrants" - ] - }, - { - "text": "Strengthen federal and local legislation in favour of the rights of indigenous peoples ", - "values": [ - "Indigenous peoples" - ] - }, - { - "text": "Prevent, investigate and punish the excessive use of force, arbitrary detention, threats and harassment directed against human rights defenders by security forces", - "values": [ - "Detention", - "Human rights defenders", - "Human rights violations by state agents" - ] - }, - { - "text": "Ensure independence of the media from political influence and liberalize media ownership rules ", - "values": [ - "Freedom of the press" - ] - }, - { - "text": "Continue, with urgent international assistance and cooperation without conditionalities, to strengthen its policies in the fields of education and health in order to be able to provide the basic social services required by its people, in conditions that guarantee equal access, with special attention to the most vulnerable sectors of the population ", - "values": [ - "Right to education", - "Right to health", - "Technical assistance and cooperation" - ] - }, - { - "text": "Undertake all necessary measures to eliminate discrimination and abuses against women and girls", - "values": [ - "Rights of the Child", - "Women's rights" - ] - }, - { - "text": "Establish effective mechanisms to monitor compliance with current legislation and relevant ILO Conventions", - "values": [ - "Labour" - ] - }, - { - "text": "Consider ratifying the Optional Protocol to the Convention on the Rights of the Child on a communications procedure, to ensure that the child's voice and needs are heard and protected ", - "values": [ - "International instruments", - "Rights of the Child" - ] - }, - { - "text": "Take further legislative measures and policies to combat racist manifestations, in particular against Roma, including in the media and in the political arena", - "values": [ - "Minorities", - "Racial discrimination" - ] - }, - { - "text": "Ratify the Optional Protocol to the Convention against Torture and Other Cruel, Inhuman or Degrading Treatment", - "values": [ - "Detention", - "International instruments", - "Torture and other CID treatment" - ] - }, - { - "text": "Put in place the national institute of human rights that was recently provided for under law, and provide it with the technical and financial resources necessary, requesting cooperation from OHCHR.", - "values": [ - "National Human Rights Institution", - "Technical assistance and cooperation" - ] - }, - { - "text": "Fully guarantee the right to freedom of expression, press and political activity, including through the adoption of concrete measures aimed at the implementation of articles 24, 25, 26 and 27 of the Iranian Constitution", - "values": [ - "Freedom of association and peaceful assembly", - "Freedom of opinion and expression", - "Freedom of the press" - ] - }, - { - "text": "Strengthen its institutional framework to ensure harmonization of its national legislation with its international obligations in the area of human rights, and undertake the process of establishing a national human rights institution in accordance with the Paris Principles", - "values": [ - "National Human Rights Institution" - ] - }, - { - "text": "Consider the possibility of establishing a national human rights institution in conformity with the Paris Principles ", - "values": [ - "National Human Rights Institution" - ] - }, - { - "text": "Develop comprehensive policies and programmes to reduce the incidence of infant and maternal mortality ", - "values": [ - "Right to health", - "Rights of the Child", - "Women's rights" - ] - }, - { - "text": "Enact legislation to combat domestic violence", - "values": [ - "Rights of the Child", - "Women's rights" - ] - }, - { - "text": "Adopt and implement measures that ensure equal remuneration for work of equal value in an effort towards fulfilling the Government's commitment to eliminate the gender pay gap before 2022", - "values": [ - "Women's rights" - ] - }, - { - "text": "Continue its reconstruction efforts in cooperation with the international community, in accordance with national priorities reflected in the Afghanistan National Development Strategy", - "values": [ - "Development" - ] - }, - { - "text": "Establishment and implementation of a National Human Rights Plan which cover access to education and health, including aspects of sexual and reproductive and health, as well as, concrete measures to eliminate violence against women ", - "values": [ - "Right to health", - "Women's rights" - ] - }, - { - "text": "Take concrete measures to deliver on its international development commitments ", - "values": [ - "Development" - ] - }, - { - "text": "Strengthen its national machinery to promote gender equality and gender mainstreaming ", - "values": [ - "Women's rights" - ] - }, - { - "text": "Continue strengthening the Plan of Action of 2014 with a view to ensuring the full enjoyment of the right to health, work and adequate standard of living", - "values": [ - "Labour", - "Right to health" - ] - }, - { - "text": "Issue a standing invitation to the special procedures of the Human Rights Council ", - "values": [ - "Special procedures" - ] - }, - { - "text": "Take additional steps, beyond the adoption of legislation, to prevent racially motivated hate speech, hate crimes and discrimination", - "values": [ - "Racial discrimination" - ] - }, - { - "text": "Allow freedoms of expression, association and assembly, and allow human rights associations to obtain a legal status through inclusive and official registration", - "values": [ - "Civil society", - "Freedom of association and peaceful assembly", - "Freedom of opinion and expression" - ] - }, - { - "text": "Increase consequently resources devoted to the health and education sectors for the population living in rural areas", - "values": [ - "Right to education", - "Right to health" - ] - }, - { - "text": "Increase its efforts to provide education for all, particularly for women and children, and address inequality in education", - "values": [ - "Right to education", - "Rights of the Child", - "Women's rights" - ] - }, - { - "text": "Accede to the Second Optional Protocol to ICCPR, prohibiting the death penalty in all circumstances", - "values": [ - "Death penalty", - "International instruments" - ] - }, - { - "text": "Take all institutional measures required to accede to the International Convention for the Protection of All Persons from Enforced Disappearance", - "values": [ - "Enforced disappearances", - "International instruments" - ] - }, - { - "text": "In line with the conclusions of the report produced by the Truth, Justice and Reconciliation Commission in 2013, take all necessary steps to put in place a programme to give reparations to all victims of the 2007-2008 post-electoral violence", - "values": [ - "Elections", - "Justice" - ] - }, - { - "text": "Implement fully the Agreement on Guaranteeing Special Rights of the Slovenian Minority in the Republic of Hungary and the Hungarian National Community in the Republic of Slovenia and the recommendations of the mixed Slovenian-Hungarian Commission tasked with the monitoring of the implementation of the Agreement", - "values": [ - "Minorities" - ] - }, - { - "text": "Adopt a new national action plan for the eradication of child labour and ensure its effective implementation", - "values": [ - "Labour", - "Rights of the Child" - ] - }, - { - "text": "Issue a standing invitation to all special procedures ", - "values": [ - "Special procedures" - ] - }, - { - "text": "Continue the holistic approach of the Inter-Agency Committee on Anti-Illegal Drugs focusing on law enforcement operations, as well as on the rehabilitation and reintegration of drug users", - "values": [ - "Other", - "Public security" - ] - }, - { - "text": "Step up all efforts to protect the rights of migrants and also foster their economic and cultural life and improve their standard of living, particularly for large families, and provide them with Government financial support", - "values": [ - "Migrants" - ] - }, - { - "text": "Begin a national consultation process with governmental and nongovernmental actors on the most appropriate national preventive mechanism and establish its national preventive mechanism accordingly \n", - "values": [ - "Civil society" - ] - }, - { - "text": "Analyse existing legislation and repeal all rules, in particular those of the Family Code, which are contrary to the principle of equality between children or which constitute a discrimination of the rights of the child", - "values": [ - "Rights of the Child" - ] - }, - { - "text": "Accede to outstanding international human rights instruments", - "values": [ - "International instruments" - ] - }, - { - "text": "Adopt the pending legislation on harassment and violence in the workplace and continue to ensure protection of non-Monegasque workers from any form of discrimination, including in terms of access to social and health services ", - "values": [ - "Labour", - "Migrants", - "Racial discrimination", - "Right to health" - ] - }, - { - "text": "Modify the law relating to the nationality in a way to recognize the right of Kuwaiti women to transmit their nationality to their spouses and children", - "values": [ - "Women's rights" - ] - }, - { - "text": "Investigate thoroughly all acts of violence against women and defenders of women's rights and bring those responsible to justice.", - "values": [ - "Human rights defenders", - "Women's rights" - ] - }, - { - "text": "Enhance accessibility of the United Nations Human Rights system for all members of Greek society by ensuring the translation into Greek of its UPR outcome and relevant treaty body concluding observations and special procedures country reports ", - "values": [ - "Special procedures", - "Treaty bodies", - "UPR process" - ] - }, - { - "text": "Consolidate the independence and overall capacity of the judicial system.", - "values": [ - "Justice" - ] - }, - { - "text": "Introduce a moratorium on executions with a view to abolishing the death penalty", - "values": [ - "Death penalty" - ] - }, - { - "text": "Strengthen efforts in addressing maternal and child mortality", - "values": [ - "Right to health", - "Rights of the Child", - "Women's rights" - ] - }, - { - "text": "Implement measures to bridge the gender pay gap", - "values": [ - "Women's rights" - ] - }, - { - "text": "Continue its efforts to seek assistance from the international community for capacity-building and technical assistance in the area of human rights, especially in the strengthening of its National Human Rights Commission ", - "values": [ - "National Human Rights Institution", - "Technical assistance and cooperation" - ] - }, - { - "text": "Extend a standing invitation to the special procedures ", - "values": [ - "Special procedures" - ] - }, - { - "text": "Take appropriate measures, as possible, to make up for the delay accumulated over the past years in presenting its reports to various human rights bodies", - "values": [ - "Treaty bodies" - ] - }, - { - "text": "Halt short-term detentions, harassments and other repressive measures against human rights defenders and journalists and implement legal safeguards to ensure their protection against abuse of provisions for criminal prosecution", - "values": [ - "Detention", - "Freedom of the press", - "Human rights defenders" - ] - }, - { - "text": "Consider ratification of the Optional Protocol to the Convention against Torture and Other Cruel, Inhuman or Degrading Treatment or Punishment", - "values": [ - "International instruments", - "Torture and other CID treatment", - "Treaty bodies" - ] - }, - { - "text": "Fight against impunity of perpetrators of violence after the 2007 elections and ensure the follow up to the recommendations of the Truth, Justice and Reconciliation Commission", - "values": [ - "Elections", - "Impunity", - "Justice" - ] - }, - { - "text": "Take measures to include the crime of trafficking in persons in all parts of the federation and strengthen the resource basis for the protection of victims", - "values": [ - "Trafficking" - ] - }, - { - "text": "Introduce legislation to prohibit the rights of men to physically punish their wives ", - "values": [ - "Women's rights" - ] - }, - { - "text": "Enact human rights education programmes targeted at fighting racism, xenophobia, and discrimination and violence against women ", - "values": [ - "Human rights education and training", - "Racial discrimination", - "Women's rights" - ] - }, - { - "text": "Continue to strengthen the educational system and ensure equal access of disabled children to education", - "values": [ - "Disabilities", - "Right to education", - "Rights of the Child" - ] - }, - { - "text": "Strengthen its efforts to improve the social, political, living, and health conditions for Romani citizens through legal, administrative and socioeconomic means ", - "values": [ - "Minorities" - ] - }, - { - "text": "Continue activities aimed at strengthening the judiciary and promoting access to justice, including through expanding the provision of free legal aid to victims of sexual violence, training members of the judiciary to fight against sexual violence and promoting awareness against the stigmatization of victims ", - "values": [ - "Justice", - "Rights of the Child", - "Women's rights" - ] - }, - { - "text": "Introduce a comprehensive and inclusive national plan of action to guarantee the rights of persons with disabilities, in accordance with international human rights law", - "values": [ - "Disabilities", - "International instruments" - ] - }, - { - "text": "Take the necessary steps to ensure police receive the information, training and equipment needed to deliver their duties in accordance with the country's international human rights obligations", - "values": [ - "Human rights education and training", - "International instruments" - ] - }, - { - "text": "Continue with efforts to overcome obstacles faced by the Yenish, Manush, Sinti and Roma in accessing education and preserving their language and lifestyle", - "values": [ - "Minorities", - "Right to education" - ] - }, - { - "text": "Redouble efforts in addressing gender-based violence, with the support of the international community", - "values": [ - "Technical assistance and cooperation", - "Women's rights" - ] - }, - { - "text": "El Salvador pledged to continue working in reducing inequalities and disparities, especially among vulnerable groups, for which the Government already had developed strategies promoting policies of inclusion and equal opportunities. ", - "values": [ - "Minorities" - ] - }, - { - "text": "Strengthen efforts in the sphere of education with a view to increasing school enrolment rates at primary and secondary level and achieving the target of Education for All by 2015", - "values": [ - "Right to education" - ] - }, - { - "text": "Ensure that changes in the national legislation affecting the Human Rights Act do not result in weakening human rights protection mechanisms in the country", - "values": [ - "General" - ] - }, - { - "text": "Enact legislation in order that violence against women constitutes a criminal offence, that women and girls who are victims of violence have access to immediate means of redress and protection, and that perpetrators are prosecuted and punished", - "values": [ - "Rights of the Child", - "Women's rights" - ] - }, - { - "text": "Strengthen the national system of protection and promotion of childhood and adolescence ", - "values": [ - "Rights of the Child" - ] - }, - { - "text": "Cease the harassment and arbitrary detention of political opposition leaders and supporters, and ensure that peaceful political dissent and public discourse about human rights, elections and government policy are allowed to take place freely in public spaces and in the press", - "values": [ - "Detention", - "Elections", - "Freedom of association and peaceful assembly", - "Freedom of the press" - ] - }, - { - "text": "Take the measures necessary to ensure the return and restitution of housing and lands in conformity with international standards for internally displaced persons.", - "values": [ - "Internally displaced persons" - ] - }, - { - "text": "Strengthen measures to fight against terrorism and extremism in the country and in the Horn of Africa, including through subregional and regional organizations, as they undermine the practical enjoyment of human rights particularly economic, social and cultural rights ", - "values": [ - "ESC rights - general", - "Public security" - ] - }, - { - "text": "End the blockade in the Gaza Strip and guarantee full access of the Palestinian population to all basic services.", - "values": [ - "Freedom of movement" - ] - }, - { - "text": "Request technical assistance from OHCHR to submit its fourth report to the Committee on the Elimination of Discrimination against Women as soon as possible and undertake measures to combat attitudes which may be discriminatory against women", - "values": [ - "Technical assistance and cooperation", - "Treaty bodies", - "Women's rights" - ] - }, - { - "text": "Improve the adoption system by ratifying the Hague Convention on Protection of Children and Co-operation in Respect of Intercountry Adoption and reflecting it in internal regulations, strengthening resources for the social welfare institute (IBERS), banning individual adoption and implementing recommendations by UNICEF and the Action Plan suggested by the Montreal group", - "values": [ - "International instruments", - "Rights of the Child" - ] - }, - { - "text": "Continue and expedite the ratification process of CAT", - "values": [ - "International instruments", - "Torture and other CID treatment" - ] - }, - { - "text": "Engage the international community and international organizations in capacity-building support and technical assistance, particularly in the areas of economic and human resources development and poverty reduction ", - "values": [ - "Development", - "Poverty", - "Technical assistance and cooperation" - ] - }, - { - "text": "Adopt further measures to ensure in practice the protection of journalists against threats and attacks, including imprisonment in contravention of their right to freedom of expression.", - "values": [ - "Freedom of opinion and expression", - "Freedom of the press" - ] - }, - { - "text": "Review interrogation monitoring procedures.", - "values": [ - "Detention" - ] - }, - { - "text": "Pass legislation to make spousal rape a crime and to ensure that laws are in place to specifically address domestic violence ", - "values": [ - "Rights of the Child", - "Women's rights" - ] - }, - { - "text": "Complete the children's code with the inclusion of specific provisions for the protection of children from discrimination, abuse, exploitation, neglect and violence", - "values": [ - "Rights of the Child" - ] - }, - { - "text": "The Republic of Korea was proud that it had become a model case, as it had transformed from aid beneficiary to aid donor, and was committed to increasing its official development aid volumes. In 2010, the Framework Act on International Development Cooperation had been enacted and the Government intended to consider human rights principles in the planning and carrying out of development projects.", - "values": [ - "Development" - ] - }, - { - "text": "Adopt measures to ensure more effective implementation of the provisions of national labour legislation so as to eliminate the pay gap and to increase indicators for the hiring of women for jobs in non-traditional sectors", - "values": [ - "Women's rights" - ] - }, - { - "text": "Fully cooperate with the United Nations human rights mechanisms, including the special rapporteur on the situation of human rights in this country and the COI ", - "values": [ - "Special procedures", - "Treaty bodies", - "UPR process" - ] - }, - { - "text": "Further raise public awareness about the content of the new legislation and profile of the Ombudsman, in cooperation with NGOs, and in the education system raise awareness of children's rights, especially in cases of abuse and children's participation in civil and criminal proceedings", - "values": [ - "Civil society", - "Human rights education and training", - "Right to education", - "Rights of the Child" - ] - }, - { - "text": "Ensure that the structures and functions of the Human Rights Ombudsman Institution are in accordance with the Paris Principles", - "values": [ - "National Human Rights Institution" - ] - }, - { - "text": "Strengthen efforts to protect the rights of all peoples with Albinism ", - "values": [ - "Minorities" - ] - }, - { - "text": "Include constitutional measures to provide for freedom of religion or belief to all persons residing in the country ", - "values": [ - "Freedom of religion and belief" - ] - }, - { - "text": "Ensure that children belonging to minority groups have equal and adequate access to education, health and other services.", - "values": [ - "Minorities", - "Right to education" - ] - }, - { - "text": "Complete ratification of the Convention against Torture, the International Convention on the Protection of the Rights of All Migrant Workers and Members of Their Families, the Convention relating to the Status of Statelessness Persons and the Convention on the Reduction of Statelessness", - "values": [ - "International instruments", - "Labour", - "Migrants", - "Statelessness and the right to nationality", - "Torture and other CID treatment" - ] - }, - { - "text": "Protect persons with albinism against ritual crimes more effectively", - "values": [ - "Minorities" - ] - }, - { - "text": "Consider/Study the possibility to take additional measures to combat discrimination against LGBT people", - "values": [ - "Sexual Orientation and Gender Identity" - ] - }, - { - "text": "Extend the scope of the Penal Code (Sexual Offences) (Amendment) Bill of 2015 to clarify existing, and create new, legislation to protect the human rights of the lesbian, gay, bisexual, transgender and intersex community ", - "values": [ - "Sexual Orientation and Gender Identity" - ] - }, - { - "text": "Consider strengthening all measures aimed at promoting gender equity and the full and effective participation of women in the political, social, economic and cultural spheres of life, including through legislative and administrative means", - "values": [ - "Women's rights" - ] - }, - { - "text": "Investigate promptly, effectively and independently allegations of torture in order to ensure that those responsible are brought to justice", - "values": [ - "Torture and other CID treatment" - ] - }, - { - "text": "Intensify development programmes with focus on poverty alleviation and food security", - "values": [ - "Poverty", - "Right to food" - ] - }, - { - "text": "Introduce, in collaboration with civil society organizations and public personalities, measures aimed at ensuring women's right to non-discrimination and equality, as proposed by the Committee on the Elimination of Discrimination against Women", - "values": [ - "Civil society", - "Treaty bodies", - "Women's rights" - ] - }, - { - "text": "Finalize and implement a National Action Plan on Women, Peace and Security ", - "values": [ - "Women's rights" - ] - }, - { - "text": "Enact legislation to prohibit explicit corporal punishment of children in all settings, including the home, schools and alternative care facilities ", - "values": [ - "Rights of the Child", - "Torture and other CID treatment" - ] - }, - { - "text": "Continue supporting all programmes aimed at improving the health of its population in order to reduce mortality rates ", - "values": [ - "Right to health" - ] - }, - { - "text": "Amend its Constitution to include sex, gender and disability as grounds for non-discrimination", - "values": [ - "Disabilities", - "Women's rights" - ] - }, - { - "text": "Make efforts to include human rights principles in primary and secondary school curricula", - "values": [ - "Human rights education and training" - ] - }, - { - "text": "In light of the priorities established in the fight against domestic violence, take those effective measures that it deems appropriate for the realization of the emancipation of women, in particular through education and integration in the labour market, and extend them to rural areas ", - "values": [ - "Rights of the Child", - "Women's rights" - ] - }, - { - "text": "Intensify its efforts to humanize its penitentiary system, including the identification and closure of all unauthorized prisons and detention centres", - "values": [ - "Detention" - ] - }, - { - "text": "Explicitly prohibit under criminal law life imprisonment and indeterminate detention of child offenders", - "values": [ - "Justice", - "Rights of the Child" - ] - }, - { - "text": "Engage civil society in the implementation process of the accepted UPR recommendations", - "values": [ - "Civil society", - "UPR process" - ] - }, - { - "text": "Continue with its efforts towards the achievement of MDGs, in particular in the area of health of the population", - "values": [ - "Development", - "Right to health" - ] - }, - { - "text": "Integrate the abolition of the death penalty in the new Constitution", - "values": [ - "Death penalty" - ] - }, - { - "text": "Take supplementary measures aimed at the integration of human rights education and training into school curricula, and at training Government officials, as coordinated action along these lines could facilitate better implementation of the existing legal and institutional framework ", - "values": [ - "Human rights education and training" - ] - }, - { - "text": "Outlaw forced or coerced sterilisation, sex reassignment surgeries and reparative therapies imposed without, free and informed consent", - "values": [ - "Sexual Orientation and Gender Identity" - ] - }, - { - "text": "Enforce Seychelles' international human rights obligations and constitutional guarantees regarding the rights to freedom of religion, association and expression", - "values": [ - "Freedom of association and peaceful assembly", - "Freedom of opinion and expression", - "Freedom of religion and belief", - "International instruments" - ] - }, - { - "text": "Further strengthen measures to combat migrant smuggling and trafficking in persons", - "values": [ - "Migrants", - "Trafficking" - ] - }, - { - "text": "New Zealand is committed to maintaining ongoing partnerships with iwi, hapu and whanau Maori.", - "values": [ - "Indigenous peoples" - ] - }, - { - "text": "Protect freedom of assembly by immediately repealing the Protest law, or amending it so that it is in accordance with article 73 of the 2014 Constitution and with ICCPR", - "values": [ - "Freedom of association and peaceful assembly", - "International instruments" - ] - }, - { - "text": "Take appropriate measures to progressively reduce the existing backlog of overdue reports to the United Nations treaty bodies", - "values": [ - "Treaty bodies" - ] - }, - { - "text": "Adopt legislative and normative measures towards the abolition of the death penalty and commute all those sentenced for prison sentences", - "values": [ - "Death penalty" - ] - }, - { - "text": "Further enhance effective access to legal aid for women from all regions, including indigenous women and women of African descent ", - "values": [ - "Indigenous peoples", - "Minorities", - "Women's rights" - ] - }, - { - "text": "Amend the Law on Freedom of Conscience and Religious Organizations to fully protect the right to freedom of religion or belief in compliance with international norms and obligations. Remove restrictions imposed over religious education and literature, activities of religious organizations, and religious dress to promote religious tolerance", - "values": [ - "Freedom of association and peaceful assembly", - "Freedom of religion and belief" - ] - }, - { - "text": "Simplify the procedures for abortions envisaged by the penal code", - "values": [ - "Women's rights" - ] - }, - { - "text": "Put in place strategies and implement the action plan to more effectively combat child, early and forced marriage", - "values": [ - "Rights of the Child", - "Women's rights" - ] - }, - { - "text": "Expand and reinforce its work in the health and education sectors, particularly to protect the rights of vulnerable sectors, including indigenous peoples, women and children", - "values": [ - "Indigenous peoples", - "Right to education", - "Right to health", - "Rights of the Child", - "Women's rights" - ] - }, - { - "text": "Continue its various programmes to enhance the people's right to education, especially in the eradication of illiteracy, by cooperating with the specific governorates, civil society organizations as well as other international organizations", - "values": [ - "Civil society", - "Right to education" - ] - }, - { - "text": "Further implement measures on the protection of victims of mistreatment and torture and on the prosecution of perpetrators", - "values": [ - "Justice", - "Torture and other CID treatment" - ] - }, - { - "text": "Enact laws that protect adequately the rights and the well-being of separated and unaccompanied minors seeking asylum, in conformity with standards established under international laws ", - "values": [ - "Asylum-seekers - refugees", - "Rights of the Child" - ] - }, - { - "text": "Ensure sufficient budgetary allocation for the effective implementation of the National Strategy for the Integration of Roma Communities 2013-2020", - "values": [ - "Minorities" - ] - }, - { - "text": "Enhance efforts to promote gender equality and combat all forms of discrimination and violence against women and girls", - "values": [ - "Rights of the Child", - "Women's rights" - ] - }, - { - "text": "Establish a national human rights institution in accordance with Paris Principles ", - "values": [ - "National Human Rights Institution" - ] - }, - { - "text": "Continue efforts to advance gender equality in all spheres, by both implementing existing legislation and developing new legal norms ", - "values": [ - "Women's rights" - ] - }, - { - "text": "Further improve conditions in social sectors ", - "values": [ - "ESC rights - general" - ] - }, - { - "text": "Sign and ratify OP-CAT and CED and declare to accept the competence of the Committee against Enforced Disappearances provided for in articles 31 and 32 of the Convention ", - "values": [ - "Detention", - "Enforced disappearances", - "International instruments", - "Torture and other CID treatment" - ] - }, - { - "text": "Decriminalize consented homosexual relations between adults", - "values": [ - "Sexual Orientation and Gender Identity" - ] - }, - { - "text": "Adapt domestic legislation to the international normative framework", - "values": [ - "General" - ] - }, - { - "text": "Issue a standing and open invitation to the special procedures of the Human Rights Council", - "values": [ - "Special procedures" - ] - }, - { - "text": "Take additional measures to combat trafficking in persons", - "values": [ - "Trafficking" - ] - }, - { - "text": "Endeavour to incorporate femicide as a crime in its penal legislation, in line with the bill introduced ", - "values": [ - "Women's rights" - ] - }, - { - "text": "Further promote equal access to justice for all, including by reducing backlog and delays in the administration of cases in court, providing more legal aids to the poor and marginalized, as well as increasing the use of alternative measures to pre-trial detention ", - "values": [ - "Detention", - "Justice", - "Poverty" - ] - }, - { - "text": "Adopt a new media law enshrining freedom of the press ", - "values": [ - "Freedom of the press" - ] - }, - { - "text": "Fully support the national electoral commission's efforts to ensure transparency and prevent irregularities in the electoral process ", - "values": [ - "Elections" - ] - }, - { - "text": "Reinforce its efforts in provision of free and compulsory primary education ", - "values": [ - "Right to education" - ] - }, - { - "text": "Consolidate the experience of regionalization and continue the participation of youths and women in all the regions of the Kingdom, including the southern provinces", - "values": [ - "Women's rights" - ] - }, - { - "text": "Enact laws pertaining to anti-discrimination", - "values": [ - "Other" - ] - }, - { - "text": "Continue human rights training for local officials, police commissioners, wardens and directors of Judicial Bureaus", - "values": [ - "Human rights education and training" - ] - }, - { - "text": "Consider introducing a criminal law provision that expressly considers the racist motivation of an offence as a specific aggravating circumstance", - "values": [ - "Justice", - "Racial discrimination" - ] - }, - { - "text": "Make every possible effort to ensure that justice can operate independently and that all political influence on the legal system is eliminated.", - "values": [ - "Justice" - ] - }, - { - "text": "Strengthen its cooperation with the Human Rights Council special procedures and treaty bodies in order to improve the performance by Guinea of its international obligations ", - "values": [ - "Special procedures", - "Treaty bodies" - ] - }, - { - "text": "Continue pursuing efforts aimed at national reconciliation, including through the implementation of the recommendations of the Truth and Reconciliation Commission of Thailand ", - "values": [ - "Justice" - ] - }, - { - "text": "Ensure that funding in the education sector is consistent and reaches children with special needs, as well as schools in rural areas", - "values": [ - "Disabilities", - "Right to education" - ] - }, - { - "text": "Advance its activities aimed at ensuring full realization of the rights of women, children, elderly people and persons with disabilities", - "values": [ - "Disabilities", - "Rights of the Child", - "Women's rights" - ] - }, - { - "text": "Ensure the implementation of more comprehensive antidiscrimination measures to guarantee the equal treatment of the Roma people ", - "values": [ - "Minorities", - "Racial discrimination" - ] - }, - { - "text": "Include domestic work among the fields covered by the Employment Act, which would significantly improve the situation of many migrant workers ", - "values": [ - "Labour", - "Migrants" - ] - }, - { - "text": "Enact a law specifically defining and criminalising domestic violence and implement the international obligations in this regard, notably the Convention on the Elimination of All Forms of Discrimination Against Women ", - "values": [ - "International instruments", - "Rights of the Child", - "Women's rights" - ] - }, - { - "text": "Strengthen the legislative and institutional framework for the promotion and protection of rights of indigenous peoples, in particular to ensure their full participation in society", - "values": [ - "Indigenous peoples" - ] - }, - { - "text": "Effectively establish the institution of the Ombudsman created in 2012 and ensure its compliance with the Paris Principles", - "values": [ - "National Human Rights Institution" - ] - }, - { - "text": "Continue implementing affirmative measures aimed at eliminating every kind of discrimination against women and girls", - "values": [ - "Rights of the Child", - "Women's rights" - ] - }, - { - "text": "Undertake reform of the judiciary by revising the law on the statute of the Magistrates ", - "values": [ - "Justice" - ] - }, - { - "text": "Engage constructively with human rights defenders in seeking solutions to address human rights problems", - "values": [ - "Human rights defenders" - ] - }, - { - "text": "Strive to ensure the full separation of the judiciary from the executive branch as far as appointments of senior judicial officials are concerned", - "values": [ - "Justice" - ] - }, - { - "text": "Ratify the Migrant Workers Convention", - "values": [ - "International instruments", - "Labour", - "Migrants" - ] - }, - { - "text": "Accede to those international legal instruments to which Togo is not yet a party, in particular the Optional Protocol to the Convention on the Elimination of All Forms of Discrimination against Women", - "values": [ - "International instruments", - "Women's rights" - ] - }, - { - "text": "Pursue policies aimed at ensuring equal opportunities", - "values": [ - "Other" - ] - }, - { - "text": "Undertake concerted efforts to address the issue of domestic violence, especially with regard to its prevention ", - "values": [ - "Rights of the Child", - "Women's rights" - ] - }, - { - "text": "Adopt measures that guarantee respect for the rights of lesbian, gay, bisexual, transgender and intersex persons, by investigating and punishing acts of violence and discrimination as well as reviewing all legislation that may affect their rights", - "values": [ - "Sexual Orientation and Gender Identity" - ] - }, - { - "text": "Amend country's Constitution and enact other appropriate legislation to prohibit discrimination on gender grounds ", - "values": [ - "Women's rights" - ] - }, - { - "text": "Take all necessary measures to make its National Human Rights Institution fully compliant with the Paris Principles ", - "values": [ - "National Human Rights Institution" - ] - }, - { - "text": "Adopt and implement the law on transparency, disclosure and access to public information drafted by the joint committee in April 2016", - "values": [ - "Freedom of opinion and expression" - ] - }, - { - "text": "Consider taking the necessary measures to further improve prison conditions ", - "values": [ - "Detention" - ] - }, - { - "text": "Develop explicit legislation implementing the provisions of the Convention on the Elimination of All Forms of Discrimination against Women, and invite the Special Rapporteur on violence against women, its causes and consequences, to the country ", - "values": [ - "International instruments", - "Special procedures", - "Women's rights" - ] - }, - { - "text": "Continue taking measures to protect women from traditional practices which hinder full realization of their rights, and continue implementing regulations to end all forms of discrimination against them", - "values": [ - "Women's rights" - ] - }, - { - "text": "Step up its efforts to ratify the Convention on the Rights of Persons with Disabilities ", - "values": [ - "Disabilities", - "International instruments" - ] - }, - { - "text": "Maintain its prioritisation of the reconciliation processes required to support positive human rights outcomes in the areas of personal liberty, including freedom of expression and freedom from reprisal and extra judicial punishment", - "values": [ - "Extrajudicial executions", - "Freedom of opinion and expression", - "Justice" - ] - }, - { - "text": "Continue efforts aimed at reduction of the maternal mortality rate", - "values": [ - "Right to health", - "Women's rights" - ] - }, - { - "text": "Continue its positive measures in the advancement of women and children in the country including by ensuring effective implementation of its policies and programmes", - "values": [ - "Rights of the Child", - "Women's rights" - ] - }, - { - "text": "Continue promoting the efforts in order to consolidate the rule of law and its mechanisms", - "values": [ - "Justice" - ] - }, - { - "text": "Progressively increase its budgetary allocations to health in order to reach the 15 per cent target set by the Heads of States of the African Union in the African Strategy for Health 2007-2015.", - "values": [ - "Right to health" - ] - }, - { - "text": "Ensure that the National Human Rights Commission of Thailand is an independent institution and functions in full compliance with the Paris Principles", - "values": [ - "National Human Rights Institution" - ] - }, - { - "text": "Intensify action against child sex tourism", - "values": [ - "Rights of the Child" - ] - }, - { - "text": "Abolish all forms of arbitrary and extra-judicial detention", - "values": [ - "Detention" - ] - }, - { - "text": "Consider ratifying the Rome Statute of the International Criminal Court and the Additional Protocols I and II of the Geneva Conventions ", - "values": [ - "International humanitarian law", - "International instruments", - "Justice" - ] - }, - { - "text": "Ratify the Optional Protocol to the International Covenant on Economic, Social and Cultural Rights (OP-ICESCR) ", - "values": [ - "ESC rights - general", - "International instruments" - ] - }, - { - "text": "Continue with the successful policy of ensuring inter-ethnic and interreligious harmony in Singapore", - "values": [ - "Freedom of religion and belief", - "Minorities" - ] - }, - { - "text": "Further intensify efforts to promote gender equality, to combat sexual harassment and gender-based violence through a comprehensive legislative reform and the adoption of a national strategy, and recognize the important work and competence of NGOs in this field", - "values": [ - "Civil society", - "Women's rights" - ] - }, - { - "text": "Counter the trend of repressing free speech, including restrictions on media outlets, and take concrete steps to meet its obligation to create an environment that fosters freedom of expression", - "values": [ - "Freedom of opinion and expression", - "Freedom of the press" - ] - }, - { - "text": "Consider adopting the new constitution as soon as possible", - "values": [ - "General" - ] - }, - { - "text": "Put in place a global strategy aimed at eliminating harmful practices and stereotypes against women", - "values": [ - "Torture and other CID treatment", - "Women's rights" - ] - }, - { - "text": "Continue efforts to combat child domestic labour", - "values": [ - "Labour", - "Rights of the Child" - ] - }, - { - "text": "Circulate and implement the United Nations Rules for the Treatment of Women Prisoners and Non-custodial Measures for Women Offenders (Bangkok Rules), which will further enhance administration of justice ", - "values": [ - "Detention", - "Women's rights" - ] - }, - { - "text": "Effectively implement Act No. 293 and amend relevant provisions in family law in order to ensure equality between women and men", - "values": [ - "Women's rights" - ] - }, - { - "text": "Strengthen the fight against racially motivated violence and crimes ", - "values": [ - "Racial discrimination" - ] - }, - { - "text": "Ensure bringing into force the Omani Law of the Child in pursuit of its national strategy on children and in line with its CRC obligations.", - "values": [ - "International instruments", - "Rights of the Child" - ] - }, - { - "text": "Continue its efforts in the field of poverty reduction so that the vulnerability of children to risks of poverty, human trafficking and kidnapping is decreased ", - "values": [ - "Poverty", - "Rights of the Child", - "Trafficking" - ] - }, - { - "text": "Extend a standing invitation to all United Nations special procedures and accept the request for a visit of the Special Rapporteur on the question of torture", - "values": [ - "Special procedures", - "Torture and other CID treatment" - ] - }, - { - "text": "Persevere with implementation of its vision of Brunei Darussalam for 2035 and share its experience in this regards with the international community ", - "values": [ - "Other" - ] - }, - { - "text": "Incorporate CAT into domestic law in order to define crimes of torture and incorporate it in the national legislation ", - "values": [ - "International instruments", - "Torture and other CID treatment" - ] - }, - { - "text": "Establish units for integrated assistance to victims of gender-based violence in all of the country's 32 provinces and at least one shelter in each of the country's nine regions", - "values": [ - "Women's rights" - ] - }, - { - "text": "Establishing training facilities tailored to meet demand, particularly in the sectors of agriculture, livestock, environment, construction and public works, crafts, transportation, culture, mining and energy, information technology and telecommunications", - "values": [ - "Development" - ] - }, - { - "text": "Take further measures to prevent discrimination on the basis of ethnicity", - "values": [ - "Racial discrimination" - ] - }, - { - "text": "Step up its efforts to reduce poverty, particularly rural poverty ", - "values": [ - "Poverty" - ] - }, - { - "text": "Adopt a transparent and inclusive process with civil society in the implementation of universal periodic review recommendations ", - "values": [ - "Civil society", - "UPR process" - ] - }, - { - "text": "Eliminate religious discrimination, including prohibitions on wearing religious symbols or clothing", - "values": [ - "Freedom of religion and belief" - ] - }, - { - "text": "Provide special protection and assistance to unaccompanied children ", - "values": [ - "Rights of the Child" - ] - }, - { - "text": "(1) Strengthen semi-official investigation in the event of sexual and domestic violence. (2) Guarantee female victims of such violence full access to justice. (3) Guarantee a safe setting and favourable environment for the exercise by women of their Rights. (4) Safeguard the rights of women affected by violence by armed outlaw bands. (5) Apply the gender perspective to victim care policies and make public servants aware of that perspective.", - "values": [ - "Justice", - "Rights of the Child", - "Women's rights" - ] - }, - { - "text": "Recognize fully the civil and political rights of "erased" citizens and facilitate their complete social integration", - "values": [ - "Other" - ] - }, - { - "text": "Continue to strengthen efforts to provide better legal protection for vulnerable groups, especially women, children and youth, by increasing the number of specialized judges and providing free legal services for those who seek it", - "values": [ - "Justice", - "Rights of the Child", - "Women's rights" - ] - }, - { - "text": "Ratify the core international human rights conventions to which it is not a party and the Rome Statute ", - "values": [ - "International instruments", - "Justice" - ] - }, - { - "text": "Further promote the participation of Afro-Hondurans and the indigenous communities in the public sphere", - "values": [ - "Indigenous peoples", - "Minorities" - ] - }, - { - "text": "Continue its full cooperation with the Human Rights Council and its mechanisms", - "values": [ - "Special procedures", - "UPR process" - ] - }, - { - "text": "Take adequate and effective steps to guarantee against arbitrary and unlawful acquisition of this data", - "values": [ - "Privacy" - ] - }, - { - "text": "Continue implementing the model of seeking consensus and shared responsibility for good living", - "values": [ - "Other" - ] - }, - { - "text": "Continue its role in promoting genuine interfaith dialogue", - "values": [ - "Freedom of religion and belief" - ] - }, - { - "text": "Accelerate efforts to increase school enrolment, including parity between girls and boys.", - "values": [ - "Right to education", - "Rights of the Child" - ] - }, - { - "text": "Continue and accelerate efforts towards ratification of the Convention on the Rights of Persons with Disabilities", - "values": [ - "Disabilities", - "International instruments" - ] - }, - { - "text": "Establish an independent National Commission on Indigenous Peoples and ensure that laws, policies and their implementations are in accordance with the United Nations Declaration on the Rights of Indigenous Peoples ", - "values": [ - "Indigenous peoples", - "International instruments", - "National Human Rights Institution" - ] - }, - { - "text": "Introduce proper identification for its law enforcement officials ", - "values": [ - "Justice" - ] - }, - { - "text": "Extend the National Action Plan on Human Rights to cover all relevant human rights issues, including counter-terrorism, government surveillance, migration and human rights education", - "values": [ - "Counter-terrorism", - "Human rights education and training", - "Migrants", - "Privacy" - ] - }, - { - "text": "Extend an open and standing invitation to the United Nations special procedures mandate holders", - "values": [ - "Special procedures" - ] - }, - { - "text": "Ratify the different ILO conventions on the labour market", - "values": [ - "International instruments", - "Labour" - ] - }, - { - "text": "Heed the advice of CEDAW by adopting comprehensive measures to address all forms of violence against women and girls, in accordance with CEDAW general recommendation 19 ", - "values": [ - "Rights of the Child", - "Treaty bodies", - "Women's rights" - ] - }, - { - "text": "Continue efforts towards building comprehensive, binding and effective mechanisms against corporate abuses by businesses headquartered in Switzerland, especially when operating abroad", - "values": [ - "Business and human rights" - ] - }, - { - "text": "Create an independent mechanism to protect persons with disabilities", - "values": [ - "Disabilities" - ] - }, - { - "text": "Continue efforts in addressing the problem of missing persons", - "values": [ - "Other" - ] - }, - { - "text": "Continue to regard maintaining social stability as its first priority, and make efforts to improve the people's living standards, providing necessary housing and medical care and increased educational opportunities, and improving electricity services, drinking water and the road network, and streamline the relationship between its domestic legislation and the international human rights instruments that it has signed by bringing its domestic legislation into line with the requirements of international law", - "values": [ - "International instruments", - "Right to education", - "Right to health", - "Right to housing", - "Right to water and sanitation" - ] - }, - { - "text": "Consider appropriate education system reforms to ensure its more inclusive social accessibility ", - "values": [ - "Right to education" - ] - }, - { - "text": "Adopt and implement all the necessary measures to continue improving health care, food and education services in camps for internally displaced persons, including in remote areas", - "values": [ - "Internally displaced persons", - "Right to education", - "Right to food", - "Right to health" - ] - }, - { - "text": "Ensure that the victims of human rights violations and their families can obtain reparation ", - "values": [ - "Justice" - ] - }, - { - "text": "Continue to implement its NAPA to address the impacts of climate change, with assistance from UNPD, the Global Environment Fund and other relevant international stakeholders ", - "values": [ - "Environment", - "Technical assistance and cooperation" - ] - }, - { - "text": "Bring relevant provisions of the Criminal Code in line with article 19 of the International Covenant on Civil and Political Rights (ICCPR) repealing the restrictions of freedom of expression", - "values": [ - "Freedom of opinion and expression", - "International instruments" - ] - }, - { - "text": "Take more effective measures in the field of health and the right to education", - "values": [ - "Right to education", - "Right to health" - ] - }, - { - "text": "Adopt measures to prevent the possibility of extrajudicial executions and to fully prevent the use of torture by State Security Forces", - "values": [ - "Extrajudicial executions", - "Human rights violations by state agents", - "Torture and other CID treatment" - ] - }, - { - "text": "Accede to the 1961 Convention on the Reduction of Statelessness and uphold the rights of the Bidouns to nationality and access to social services", - "values": [ - "International instruments", - "Minorities", - "Statelessness and the right to nationality" - ] - }, - { - "text": "Intensify its work on improving prison conditions and bring them fully into line with international standards", - "values": [ - "Detention" - ] - }, - { - "text": "Establish a separate Office of the Ombudsman on the Rights of the Child", - "values": [ - "National Human Rights Institution", - "Rights of the Child" - ] - }, - { - "text": "Strengthen its monitoring system to eliminate possibility of forced child labour in cotton production ", - "values": [ - "Business and human rights", - "Labour", - "Rights of the Child" - ] - }, - { - "text": "Bring the criminal justice system for juveniles into conformity with CRC, that the age of children in conflict with the law be raised, and promote social programmes for the education of these children ", - "values": [ - "International instruments", - "Justice", - "Rights of the Child" - ] - }, - { - "text": "Continue enhancing its efforts to combat trafficking in persons, and protecting the victims", - "values": [ - "Trafficking" - ] - }, - { - "text": "Seek technical assistance from the Office of the High Commissioner for Human Rights to support the national efforts aimed at implementing the human rights obligations of Antigua and Barbuda", - "values": [ - "Technical assistance and cooperation" - ] - }, - { - "text": "Amend section 114A of the Evidence Act with the objective of increasing freedom of expression", - "values": [ - "Freedom of opinion and expression" - ] - }, - { - "text": "Take all necessary steps towards ratifying or acceding to the main international human rights instruments and treaties which are still outstanding ", - "values": [ - "International instruments" - ] - }, - { - "text": "Continue to make efforts to establish the Ombudsman in compliance with the Paris Principles", - "values": [ - "National Human Rights Institution" - ] - }, - { - "text": "Take mandatory measures to reduce the wage gap between men and women in all areas, and to promote better representation of women in leadership positions", - "values": [ - "Women's rights" - ] - }, - { - "text": "Adopt the necessary measures to guarantee easy and effective access to free birth registration, including to Pygmy children", - "values": [ - "Indigenous peoples", - "Rights of the Child", - "Statelessness and the right to nationality" - ] - }, - { - "text": "Continue to implement programs and measures to ensure the enjoyment of health services and quality education for its entire people", - "values": [ - "Right to education", - "Right to health" - ] - }, - { - "text": "Make sure to strike a balance between the need to give Roma a chance to own their own land and the risk of cemented segregation that might bring. Giving the Roma the chance to buy out the now, sometimes illegal, lands of settlements would create better possibilities also to claim the need for sanitation and municipal services ", - "values": [ - "Minorities", - "Right to land", - "Right to water and sanitation" - ] - }, - { - "text": "Accede to the Second Optional Protocol to the International Covenant on Civil and Political Rights, aiming at the abolition of the death penalty", - "values": [ - "Death penalty", - "International instruments" - ] - }, - { - "text": "Improve the living conditions of detainees and establish a system of independent monitoring in all detention facilities", - "values": [ - "Detention" - ] - }, - { - "text": "Continue efforts to strengthen gender equality", - "values": [ - "Women's rights" - ] - }, - { - "text": "Reinforce efforts addressing high level of adult illiteracy and low rate of girl's enrolment in secondary and higher levels of education ", - "values": [ - "Right to education", - "Rights of the Child", - "Women's rights" - ] - }, - { - "text": "Continue to address persistent discriminatory practices that hinder equal participation of women in economic, socio-civic, political, and all other spheres, by encouraging educational institutions and media practitioners to portray women as capable leaders and as significant contributors to growth and development of a society", - "values": [ - "Women's rights" - ] - }, - { - "text": "Continue with efforts to prevent violence against children at schools and other institutions where children are present, to ensure that children are aware of their right to be protected from all forms of violence and of the assistance provided if they are victims of violence", - "values": [ - "Rights of the Child" - ] - }, - { - "text": "Continue strengthening the sensible programs fighting poverty and social inequality", - "values": [ - "Poverty" - ] - }, - { - "text": "Do its utmost to ensure that political parties are safeguarded in the elections of 2010.", - "values": [ - "Elections", - "Freedom of association and peaceful assembly" - ] - }, - { - "text": "Continue strengthening the democratic character of its institutions, laws, policies and programmes that maintain their clear popular and participatory nature ", - "values": [ - "Elections" - ] - }, - { - "text": "Continue to implement National Strategy for Gender Mainstreaming and promote women empowerment", - "values": [ - "Women's rights" - ] - }, - { - "text": "Cease immediately the use of the death penalty, especially for minors and those who committed offences while they were juveniles", - "values": [ - "Death penalty", - "Rights of the Child" - ] - }, - { - "text": "Apply constitutional provisions completely regarding the respect and protection of the rights of all citizens collectively and individually, the rights related to association, peaceful assembly, participation in equality of conditions in public affairs, in State management, and the right to make petitions, and to denounce irregularities and make constructive criticism", - "values": [ - "Freedom of association and peaceful assembly", - "Freedom of opinion and expression" - ] - }, - { - "text": "Continue the national efforts to combat domestic violence", - "values": [ - "Rights of the Child", - "Women's rights" - ] - }, - { - "text": "Redouble its efforts to combat stereotypes and intolerance, prevent crimes with racial, discriminatory or xenophobic motivation, and provide effective responses to hate speech", - "values": [ - "Racial discrimination" - ] - }, - { - "text": "Establish special services and reintegration programmes for victims of trafficking ", - "values": [ - "Trafficking" - ] - }, - { - "text": "Ensure asylum seekers' rights and family reunification without discrimination", - "values": [ - "Asylum-seekers - refugees", - "Racial discrimination" - ] - }, - { - "text": "Continue enactment of legislations and strengthening of efficient public policies to insure protection and respect of women rights and their role in the society, including promoting women participation in public life and development process ", - "values": [ - "Women's rights" - ] - }, - { - "text": "Continue the progress made on the rights of persons with disabilities through the adoption of various legislative measures by ratifying the UN Convention on the Rights of Persons with Disabilities (CRPD) as well as its Optional Protocol ", - "values": [ - "Disabilities", - "International instruments" - ] - }, - { - "text": "Accept visit requests from the UN Special Rapporteurs and the Inter- American Commission on Human Rights ", - "values": [ - "Other" - ] - }, - { - "text": "Provide training to stakeholders involved in the administration and delivery of justice, top prosecute trafficking in persons pursuant to the new regulating framework, article 113 of the Criminal Code, especially to ensure investigation of all allegations of trafficking in persons, including those against law enforcement officials and to implement mechanisms for compensation and rehabilitation of victims", - "values": [ - "Justice", - "Trafficking" - ] - }, - { - "text": "Take all necessary measures to prevent or punish violations of human rights", - "values": [ - "Justice" - ] - }, - { - "text": "Organize more human rights education activities for staff of public services, particularly law enforcement officers ", - "values": [ - "Human rights education and training" - ] - }, - { - "text": "Step up efforts to end abusive practices by security forces and improve prison and detention centre conditions ", - "values": [ - "Detention", - "Human rights violations by state agents" - ] - }, - { - "text": "Continue efforts to tackle discrimination against Roma people in all sectors of society", - "values": [ - "Minorities" - ] - }, - { - "text": "Fully respect the rights of everyone to be free to leave and return to their own country, in conformity with article 12 of the International Covenant on Civil and Political Rights to which Turkmenistan is party.", - "values": [ - "Freedom of movement", - "International instruments" - ] - }, - { - "text": "Identify its needs for technical and financial assistance to catch up on the backlog accumulated in the presentation of reports to the treaty bodies", - "values": [ - "Technical assistance and cooperation", - "Treaty bodies" - ] - }, - { - "text": "Take effective measures to combat police brutality ", - "values": [ - "Human rights violations by state agents" - ] - }, - { - "text": "Ratify without delay the International Convention for the Protection of All Persons from Enforced Disappearance, signed in October 2008, and the Optional Protocol to the Convention against Torture signed in September 2003", - "values": [ - "Detention", - "Enforced disappearances", - "International instruments", - "Torture and other CID treatment" - ] - }, - { - "text": "Enact and enforce legislation that guarantees comprehensive protection from all forms of violence against women, and that addresses impunity for all perpetrators", - "values": [ - "Impunity", - "Women's rights" - ] - }, - { - "text": "Continue efforts to establish a national monitoring and follow-up system in the field of human rights in order to assess the relevance of national policies", - "values": [ - "General" - ] - }, - { - "text": "Redouble efforts to combat violence against women and girls, and ensure greater representation of women in managerial and decision-making positions ", - "values": [ - "Rights of the Child", - "Women's rights" - ] - }, - { - "text": "Take further efforts aimed at broad social inclusion, in particular in the labour market, of Roma populations ", - "values": [ - "Labour", - "Minorities" - ] - }, - { - "text": "Ratify the International Convention on the Protection of the Rights of All Migrant Workers and Members of their Families", - "values": [ - "International instruments", - "Labour", - "Migrants" - ] - }, - { - "text": "Strengthen the existing laws and legislation in order to combat different forms of discrimination, racism and hatred", - "values": [ - "Racial discrimination" - ] - }, - { - "text": "Take all adequate measures to guarantee the protection and promotion of religious freedom, including by adopting legislation recognizing all churches and religious communities.", - "values": [ - "Freedom of religion and belief" - ] - }, - { - "text": "Adopt and effectively implement legislation to ensure equal treatment of persons with disabilities in accordance with CRPD, as well as prohibit discrimination based on sexual orientation and gender identity and provide effective protection to LGBT persons", - "values": [ - "Disabilities", - "International instruments", - "Sexual Orientation and Gender Identity" - ] - }, - { - "text": "Bring Turkmenistan's laws into line with articles 14 and 15 of the International Covenant on Civil and Political Rights", - "values": [ - "CP rights - general", - "International instruments" - ] - }, - { - "text": "Adopt necessary measures to end the practice of forced and early marriage", - "values": [ - "Rights of the Child", - "Women's rights" - ] - }, - { - "text": "Continue its efforts to create awareness among the public about the human rights instruments to which Cuba is a State party ", - "values": [ - "Human rights education and training", - "International instruments" - ] - }, - { - "text": "Increase access to health-care services and medical assistance for women and children and make information on family planning available to them, especially in rural areas ", - "values": [ - "Rights of the Child", - "Women's rights" - ] - }, - { - "text": "Fully implement the Rome Statute of the International Criminal Court ", - "values": [ - "International instruments", - "Justice" - ] - }, - { - "text": "Review the legislation related to the minimum age of criminal responsibility in order to comply with international standards ", - "values": [ - "Justice", - "Rights of the Child" - ] - }, - { - "text": "Create an inter-ministerial mechanism to accord due attention to the recommendations of international mechanisms, including those emanating from the universal periodic review, with the participation of civil society ", - "values": [ - "Civil society", - "Special procedures", - "Treaty bodies", - "UPR process" - ] - }, - { - "text": "Strengthen its efforts to raise awareness among its citizens on the provisions contained in the Equal Treatment Act, and to ensure its full implementation as well as that of the Gender Equality Act", - "values": [ - "Women's rights" - ] - }, - { - "text": "Consider, as appropriate, increasing the percentage of representation of women in the supreme People's Assembly and other State decision-making bodies", - "values": [ - "Women's rights" - ] - }, - { - "text": "Undertake the necessary processes, by availing itself of any available technical assistance, to identify and overcome any obstacles which may exist to the country becoming a State party to additional core human rights treaties, such as the International Covenant on Economic, Social and Cultural Rights and the International Covenant on Civil and Political Rights", - "values": [ - "CP rights - general", - "ESC rights - general", - "International instruments", - "Technical assistance and cooperation" - ] - }, - { - "text": "Continue giving priority to introducing legislative amendments and implementing actions aiming at respecting human rights of all migrants and speeding asylum procedures ", - "values": [ - "Asylum-seekers - refugees", - "Migrants" - ] - }, - { - "text": "Integrate the protection and promotion of human rights in its environmental policies and strategies for response to disasters", - "values": [ - "Environment" - ] - }, - { - "text": "Recognize migrants and their families as a vulnerable group and implement measures in law and in practice for the protection and promotion of their rights", - "values": [ - "Migrants" - ] - }, - { - "text": "Review criminal law to make it fully comply with relevant international and regional obligations and, in particular, guarantee the protection of national, ethnic, religious or linguistic minorities", - "values": [ - "Freedom of religion and belief", - "Minorities" - ] - }, - { - "text": "Tailor and design tuition in special schools on the basis of the child's individual needs rather than ethnicity", - "values": [ - "Minorities", - "Right to education" - ] - }, - { - "text": "Provide the National Commission for Human Rights with human and material resources ", - "values": [ - "National Human Rights Institution" - ] - }, - { - "text": "Provide adequate protection to asylum seekers and cross-border refugees including especially those from neighbouring countries, in accordance with humanitarian considerations and relevant international norms such as the principle of non-refoulement ", - "values": [ - "Asylum-seekers - refugees" - ] - }, - { - "text": "Evaluate the accession and ratification of the main international conventions on human rights, including the Convention against Torture and its Optional Protocol", - "values": [ - "Detention", - "International instruments", - "Torture and other CID treatment" - ] - }, - { - "text": "Strengthen the national efforts to eradicate poverty and its consequences and to limit the phenomenon of non-employment in collaboration with the relevant regional organizations ", - "values": [ - "Development", - "Poverty" - ] - }, - { - "text": "Reinforce further its efforts in the area of prevention of trafficking in human beings, with particular focus on children ", - "values": [ - "Rights of the Child", - "Trafficking" - ] - }, - { - "text": "Set a specific timeframe and take concrete action to resolve the issue of abductions as soon as possible, including by repatriating the abductees", - "values": [ - "Enforced disappearances" - ] - }, - { - "text": "Pay special attention to the recommendations of the Human Rights Committee in the field of freedom of movement, including the right to leave the country ", - "values": [ - "Freedom of movement", - "Treaty bodies" - ] - }, - { - "text": "Take the necessary measures to prevent outlawing or penalizing legitimate and peaceful activities or social demands by indigenous organizations and peoples and reinforce the notion that the Anti-Terrorism Act is to be applied only within its scope and not to acts related to non-violent claims of indigenous peoples, taking into account the recommendations of the Human Rights Committee.", - "values": [ - "Counter-terrorism", - "Indigenous peoples", - "Treaty bodies" - ] - }, - { - "text": "Take measures to increase the political participation of women ", - "values": [ - "Women's rights" - ] - }, - { - "text": "Guarantee the prohibition of use of cruelty and excessive or fatal force by law enforcement officials against people of Latin American or African origin as well as illegal migrants and to investigate such cases of excessive use of force", - "values": [ - "Human rights violations by state agents", - "Migrants", - "Minorities" - ] - }, - { - "text": "Ensure that women victims of violence have prompt access to justice and that the acts of violence are adequately prevented, investigated, punished and redressed", - "values": [ - "Women's rights" - ] - }, - { - "text": "Further strengthen its compliance with the Convention on the Rights of Persons with Disabilities, by implementing the concept of reasonable accommodation recognized in Article 2, as well as paying a special attention to the needs of girls and women with disabilities ", - "values": [ - "International instruments", - "Rights of the Child", - "Women's rights" - ] - }, - { - "text": "Adopt a quota system or any other type of temporary measure for women to guarantee equal rights between men and women", - "values": [ - "Women's rights" - ] - }, - { - "text": "Accede to the Convention on the Rights of Persons with Disabilities as soon as possible. In the interim continue to do what it can to counter discrimination against people with disabilities and to promote their inclusion in society", - "values": [ - "Disabilities", - "International instruments" - ] - }, - { - "text": "Implement the Universal Basic Education policy for all children without discrimination with focus on integration of children with disabilities and equal access for girls in primary and secondary education", - "values": [ - "Disabilities", - "Right to education", - "Rights of the Child", - "Women's rights" - ] - }, - { - "text": "Ratify the Arms Trade Treaty thereby providing the potential for reducing the proliferation of small arms and light weapons, the illegal drug trade and high levels of violence", - "values": [ - "International instruments", - "Public security" - ] - }, - { - "text": "Conduct awareness-raising campaigns for law enforcement officers to educate them, especially on the Anti-Discrimination Act", - "values": [ - "Human rights education and training" - ] - }, - { - "text": "Open regional offices of the EHRC, starting with an office in Jijiga ", - "values": [ - "National Human Rights Institution" - ] - }, - { - "text": "Take measures to ensure that many individuals who are guilty of violence are effectively convicted and put an end to the impunity from which they benefit too often ", - "values": [ - "Impunity" - ] - }, - { - "text": "Fully and effectively eradicate practices of slavery and ensure that all victims of crimes of slavery receive justice, truth and reparation", - "values": [ - "Justice" - ] - }, - { - "text": "Implement its legislation to protect whistle-blowers in a transparent, consistent and unbiased manner ", - "values": [ - "Justice" - ] - }, - { - "text": "Establish as soon as possible a national human rights institution in accordance with the Paris Principles", - "values": [ - "National Human Rights Institution" - ] - }, - { - "text": "Expedite the process towards the establishment of an independent national human rights institution in conformity with the Paris Principles", - "values": [ - "National Human Rights Institution" - ] - }, - { - "text": "Take steps for eliminating religious and racial discrimination", - "values": [ - "Freedom of religion and belief", - "Racial discrimination" - ] - }, - { - "text": "Review the compliance of its national legislation with provisions of the International Covenant on Civil and Political Rights on non-discrimination, in particular with regard to women and persons of minority ethnicity, sexual orientation or gender identity ", - "values": [ - "International instruments", - "Minorities", - "Racial discrimination", - "Sexual Orientation and Gender Identity", - "Women's rights" - ] - }, - { - "text": "Continue and strengthen the active interaction with regional and international organizations of human rights ", - "values": [ - "Other" - ] - }, - { - "text": "Sign and ratify the Convention against Torture and the International Convention for the Protection of All Persons from Enforced Disappearance", - "values": [ - "Enforced disappearances", - "International instruments", - "Torture and other CID treatment" - ] - }, - { - "text": "Implementation of public policies on human rights in line with the 2025 Agenda, formulated with the participation of civil society", - "values": [ - "Civil society" - ] - }, - { - "text": "Improve living conditions in prisons", - "values": [ - "Detention" - ] - }, - { - "text": "Improve prison conditions in the country, focusing particularly on the medical care and nutrition of inmates", - "values": [ - "Detention", - "Right to food", - "Right to health" - ] - }, - { - "text": "Consolidate the rule of law and social cohesion as preconditions to promote and protect human rights ", - "values": [ - "Justice" - ] - }, - { - "text": "Review the current text of the Protection of State Information Bill in order to remove any limitations on freedom of expression, including the unwarranted persecution of whistle-blowers", - "values": [ - "Freedom of opinion and expression" - ] - }, - { - "text": "Give consideration to all international obligations in the field of human rights provisions in revision of the Constitution.", - "values": [ - "International instruments" - ] - }, - { - "text": "Establish shelters for domestic violence survivors", - "values": [ - "Rights of the Child", - "Women's rights" - ] - }, - { - "text": "The positive dynamism of the information sector of Bahrain be recorded.", - "values": [ - "Other" - ] - }, - { - "text": "Ensure that all human rights activists operating in the country, including individuals cooperating with United Nations human rights mechanisms, are spared from any criminalisation, harassment or intimidation and can perform freely their legitimate duties ", - "values": [ - "Human rights defenders", - "Special procedures", - "Treaty bodies", - "UPR process" - ] - }, - { - "text": "Put in place effective legislation that ensures that all men and women are equal before the law ", - "values": [ - "Women's rights" - ] - }, - { - "text": "Provide birth registration and issue birth certificates free of charge for all children under 5 years of age in order to reach universal coverage and increase public awareness of the importance of birth registration", - "values": [ - "Statelessness and the right to nationality" - ] - }, - { - "text": "Share experiences in disaster risk management with other countries ", - "values": [ - "Environment" - ] - }, - { - "text": "Ensure that persons suspected of trafficking in human beings are duly prosecuted and judged, and facilitate access to justice and compensation for victims ", - "values": [ - "Trafficking" - ] - }, - { - "text": "Guarantee the rights of education, health, housing and employment of Roma and other ethnic minorities", - "values": [ - "Labour", - "Minorities", - "Right to education", - "Right to health", - "Right to housing" - ] - }, - { - "text": "Continue to address the issue of gender discrimination ", - "values": [ - "Women's rights" - ] - }, - { - "text": "Intensify its efforts to ensure the sustainable return of returnees to their home communities, by ensuring their equal enjoyment of their social, economic and cultural rights, especially in the field of social protection, health care and education", - "values": [ - "Asylum-seekers - refugees" - ] - }, - { - "text": "Bring its domestic legislation in line with the rights to freedom of expression, association and assembly, and to enact and implement a law of association enabling all NGOs to operate legally, without harassment and undue government interference", - "values": [ - "Civil society", - "Freedom of association and peaceful assembly", - "Freedom of opinion and expression" - ] - }, - { - "text": "Consider acceding to the Convention against Torture and Other Cruel, Inhuman or Degrading Treatment or Punishment", - "values": [ - "International instruments", - "Torture and other CID treatment" - ] - }, - { - "text": "Circulate and implement the recently adopted United Nations Rules for the Treatment of Women Prisoners and Non-custodial Measures for Women Offenders (the Bangkok Rules), and seek necessary support from the United Nations Office on Drugs and Crime and OHCHR ", - "values": [ - "Detention", - "Technical assistance and cooperation", - "Women's rights" - ] - }, - { - "text": "Continue efforts in developing and improving the quality of education so as to preserve human dignity and development in the country ", - "values": [ - "Right to education" - ] - }, - { - "text": "Move towards ratification of the ICCPR in the near future", - "values": [ - "CP rights - general", - "International instruments" - ] - }, - { - "text": "Continue to avail itself of technical assistance and international cooperation in its efforts relating to disaster management and preparedness as well as climate change mitigation ", - "values": [ - "Environment", - "Technical assistance and cooperation" - ] - }, - { - "text": "Continue its efforts to promote international cooperation in the fight against severe consequences of climate change in order to reduce the environmental vulnerability that is crucial for the enjoyment of vital human rights and call upon the international community to provide material and financial assistance to the Comoros ", - "values": [ - "Environment", - "Technical assistance and cooperation" - ] - }, - { - "text": "Continue its efforts to speed-up attaining Millennium Development Goals (MDGs), particularly those related to health", - "values": [ - "Development", - "Right to health" - ] - }, - { - "text": "The Law on the Protection of Minors against the Detrimental Effect of Public Information should not be applied with a view to censoring lesbian, gay, bisexual, transgender and intersex persons-related information", - "values": [ - "Rights of the Child", - "Sexual Orientation and Gender Identity" - ] - }, - { - "text": "Continue efforts to address the problems in connection with domestic workers with a view to increasing protections for this vulnerable group", - "values": [ - "Labour" - ] - }, - { - "text": "Accelerate the process of the establishment of a national human rights commission in accordance with the Paris Principles", - "values": [ - "National Human Rights Institution" - ] - }, - { - "text": "Consider an early ratification of the third optional protocol to the Convention on the Rights of the Child on a communication procedure", - "values": [ - "International instruments", - "Rights of the Child" - ] - }, - { - "text": "Guarantee the right to education of girls through public awareness campaigns aimed at the families and the population in general", - "values": [ - "Human rights education and training", - "Right to education", - "Rights of the Child", - "Women's rights" - ] - }, - { - "text": "Rapidly implement the draft law on the protection of children and speed up the implementation of the 2000 edict for justice for minors.", - "values": [ - "Justice", - "Rights of the Child" - ] - }, - { - "text": "Raise public awareness and adopt legislation to combat domestic violence ", - "values": [ - "Rights of the Child", - "Women's rights" - ] - }, - { - "text": "Ensure the effective implementation of the legislation criminalizing slavery and guarantee effective remedies to victims of slavery", - "values": [ - "Other" - ] - }, - { - "text": "Provide adequate support to sexually exploited or at-risk children ", - "values": [ - "Rights of the Child" - ] - }, - { - "text": "Ratify CEDAW ", - "values": [ - "International instruments", - "Women's rights" - ] - }, - { - "text": "Improve the conditions of detention, notably by reducing the overcrowding in the prisons ", - "values": [ - "Detention" - ] - }, - { - "text": "Increase its scrutiny over extractive and logging industries and associated companies and businesses, with a view to reducing its negative impact on the environment and, consequently, its negative effects on the full enjoyment of human rights ", - "values": [ - "Business and human rights", - "Environment" - ] - }, - { - "text": "Enhance the protection of children from abuse, including prostitution, child pornography and forced marriages", - "values": [ - "Rights of the Child" - ] - }, - { - "text": "Implement CRC recommendations by setting a national plan to fight trafficking in women and children", - "values": [ - "Rights of the Child", - "Trafficking", - "Treaty bodies", - "Women's rights" - ] - }, - { - "text": "Set up a national human rights institution accredited by the International Criminal Court", - "values": [ - "National Human Rights Institution" - ] - }, - { - "text": "Abolish discrimination on the basis of ethnicity, language and culture, including de jure discrimination.", - "values": [ - "Racial discrimination" - ] - }, - { - "text": "Accede to ICESCR and ICCPR", - "values": [ - "CP rights - general", - "ESC rights - general", - "International instruments" - ] - }, - { - "text": "Continue to deepen awareness-raising measures on discrimination against asylum seekers and refugees, in particular through the investigation of cases of violence and xenophobic attacks against migrants", - "values": [ - "Asylum-seekers - refugees", - "Human rights education and training", - "Migrants", - "Racial discrimination" - ] - }, - { - "text": "Strengthen its cooperation with its development partners and various United Nations entities as a way to facilitate the implementation of its socioeconomic programs and implement the recommendations that it will accept in its UPR cycle ", - "values": [ - "ESC rights - general", - "UPR process" - ] - }, - { - "text": "Adopt concrete measures to fight discrimination against women in all spheres of life, especially by increasing the representation of women in the middle and higher positions of political and economic life", - "values": [ - "Women's rights" - ] - }, - { - "text": "Strengthen the protection of journalists and investigate those responsible for spreading personal data of journalists and inciting attacks against them. Investigate and prosecute as a matter of priority killings of journalists, such as that of Pavel Sheremet", - "values": [ - "Freedom of the press" - ] - }, - { - "text": "Consider strengthening the delivery of primary health care with national and subnational health systems, to expand coverage and access, and to address the challenges related to the health system", - "values": [ - "Right to health" - ] - }, - { - "text": "Submit overdue reports to the relevant treaty bodies ", - "values": [ - "Treaty bodies" - ] - }, - { - "text": "Ensure full respect for women's rights and eliminate discriminatory practices, such as FGM, marital rape and other forms of domestic violence, in compliance with CEDAW ", - "values": [ - "International instruments", - "Rights of the Child", - "Torture and other CID treatment", - "Women's rights" - ] - }, - { - "text": "Continue adopting and implementing all the necessary measures and provisions for raising legal and awareness levels, in order that FGM be effectively eliminated in the whole country ", - "values": [ - "Human rights education and training", - "Rights of the Child", - "Torture and other CID treatment", - "Women's rights" - ] - }, - { - "text": "Ratify the 1967 Protocol relating to the Status of Refugees ", - "values": [ - "Asylum-seekers - refugees", - "International instruments" - ] - }, - { - "text": "Develop and implement a holistic strategy to prevent violence within the family, with the participation of all stakeholders, including men, women, girls, boys, religious groups, the media and NGOs ", - "values": [ - "Civil society", - "Freedom of the press", - "Human rights education and training", - "Rights of the Child", - "Women's rights" - ] - }, - { - "text": "Enforce more effectively the child labour and trafficking laws ", - "values": [ - "Labour", - "Rights of the Child", - "Trafficking" - ] - }, - { - "text": "Step up measures taken at the national level to effectively combat violence against women", - "values": [ - "Women's rights" - ] - }, - { - "text": "Continue strengthening its domestic measures with regard to persons with disabilities, in accordance with its international obligations under the CRPD", - "values": [ - "Disabilities", - "International instruments" - ] - }, - { - "text": "Provide sufficient resources to institutions responsible for implementing Law 348, the legislation that guarantees women a life free from violence, in order to improve access to justice and to ensure accountability in cases of violence against women", - "values": [ - "Women's rights" - ] - }, - { - "text": "Ratify the core international human rights instruments including the Convention against Torture and Other Cruel, Inhuman or Degrading Treatment or Punishment", - "values": [ - "International instruments", - "Torture and other CID treatment" - ] - }, - { - "text": "Continue efforts aimed at providing adequate financing for housing to the poorest segments of the population", - "values": [ - "Right to housing" - ] - }, - { - "text": "Encourage strengthening of NGOs by promoting a legal, administrative and fiscal framework in which such institutions can be created and developed and perform their activities without any obstacles and with freedom of expression ", - "values": [ - "Civil society", - "Freedom of association and peaceful assembly", - "Freedom of opinion and expression" - ] - }, - { - "text": "Take immediate measures to conduct independent inquiries into all human rights violations, including allegations of extrajudicial executions, torture and other cruel, inhuman or degrading punishment or treatment, and international humanitarian law, as well as to bring perpetrators to justice ", - "values": [ - "Extrajudicial executions", - "International humanitarian law", - "Torture and other CID treatment" - ] - }, - { - "text": "Finalize the National Child Protection Strategy and the Children's Bill", - "values": [ - "Rights of the Child" - ] - }, - { - "text": "Adopt a National Action Plan on combating racism and xenophobia, in close consultation with civil society ", - "values": [ - "Civil society", - "Racial discrimination" - ] - }, - { - "text": "Establish an effective investigation mechanism concerning allegations of torture and ill-treatment that would ensure the conviction of perpetrators", - "values": [ - "Torture and other CID treatment" - ] - }, - { - "text": "Finalize the Children\u2019s Code, which is aimed at, among others, curbing child marriages and ritual crimes", - "values": [ - "Rights of the Child" - ] - }, - { - "text": "Set up an independent national human rights institution in accordance with the Paris Principles", - "values": [ - "National Human Rights Institution" - ] - }, - { - "text": "Favourably respond and react to future calls and recommendations of the Ombudswoman, particularly when it comes to the situation of Roma ", - "values": [ - "Minorities", - "National Human Rights Institution" - ] - }, - { - "text": "Take legal measures to guarantee the effective protection from sale of children, contemporary forms of slavery and forced labour", - "values": [ - "Labour", - "Rights of the Child", - "Trafficking" - ] - }, - { - "text": "Continue to enhance the protection of women against violence and to promote greater gender equality ", - "values": [ - "Women's rights" - ] - }, - { - "text": "Review the detention in solitary confinement of persons under 18 years of age, to ensure that no child is held in ordinary prisons for adults", - "values": [ - "Detention", - "Rights of the Child" - ] - }, - { - "text": "Establish a moratorium to the death penalty with a view to its abolition ", - "values": [ - "Death penalty" - ] - }, - { - "text": "Establish a children's ombudsman to safeguard, protect and promote the rights of children and young people, as previously recommended", - "values": [ - "National Human Rights Institution", - "Rights of the Child", - "UPR process" - ] - }, - { - "text": "Strengthen the equal participation of women in public office", - "values": [ - "Women's rights" - ] - }, - { - "text": "Investigate and prosecute incidents of sexual violence perpetuated by both parties to the conflict", - "values": [ - "Rights of the Child", - "Women's rights" - ] - }, - { - "text": "Continue the efforts directed towards the promotion of the right to health in the country", - "values": [ - "Right to health" - ] - }, - { - "text": "Ratify the International Convention [ICPPED]", - "values": [ - "Enforced disappearances", - "International instruments" - ] - }, - { - "text": "Implement the reconciliation put forth by the Independent Policing Oversight Authority's 2014 reports on the "Usalama Watch" security operation and on the Mpeketoni attacks", - "values": [ - "Justice" - ] - }, - { - "text": "Intensify programmes to promote the status of women ", - "values": [ - "Women's rights" - ] - }, - { - "text": "Further strengthen access to justice for victims of violence, in particular of gender-based violence, by providing effective legal aid and addressing gender stereotypes among justice officials", - "values": [ - "Justice", - "Women's rights" - ] - }, - { - "text": "Consider ratifying the Rome Statute of the International Criminal Court, the International Convention for the Protection of All Persons from Enforced Disappearance and the first Optional Protocol to the International Covenant on Civil and Political Rights", - "values": [ - "CP rights - general", - "Enforced disappearances", - "International instruments", - "Justice" - ] - }, - { - "text": "Repeal all provisions that discriminate against persons on the grounds of their sexual orientation or gender identity, including those in the Sexual Offences Act ", - "values": [ - "Sexual Orientation and Gender Identity" - ] - }, - { - "text": "Adopt a comprehensive anti-discrimination law aimed at preventing racial discrimination, and ensure that it is applied to the whole territory of the Swiss Federation", - "values": [ - "Racial discrimination" - ] - }, - { - "text": "Ratify the Optional Protocol to the Convention against Torture, and the International Convention for the Protection of All Persons from Enforced Disappearance, and make the declaration provided for in article 22 of the Convention against Torture ", - "values": [ - "Detention", - "Enforced disappearances", - "International instruments", - "Torture and other CID treatment" - ] - }, - { - "text": "Take measures to ensure the effective implementation of legislation to eliminate violence against women, including by thorough investigation and prosecution", - "values": [ - "Women's rights" - ] - }, - { - "text": "Ensure full cooperation with the TCRT by all branches of the Government United States", - "values": [ - "Justice" - ] - }, - { - "text": "Enforce existing legislation on women's, children's and adolescents' rights", - "values": [ - "Rights of the Child", - "Women's rights" - ] - }, - { - "text": "Adopt an approach of non-criminalization of the victims of human trafficking, which provides for compensation for victims and their reintegration into society ", - "values": [ - "Trafficking" - ] - }, - { - "text": "Issue clear, public orders to all armed forces, military intelligence units and allied militias to prevent and punish all abuses, including crimes of sexual and gender-based violence", - "values": [ - "Human rights violations by state agents", - "Rights of the Child", - "Women's rights" - ] - }, - { - "text": "Maintain the momentum of development of the mass media, including the Internet, so as to protect freedom of expression ", - "values": [ - "Freedom of opinion and expression", - "Freedom of the press" - ] - }, - { - "text": "Take additional steps to prevent discrimination against immigrant, refugee and minority women", - "values": [ - "Asylum-seekers - refugees", - "Migrants", - "Minorities", - "Women's rights" - ] - }, - { - "text": "Expedite the completion of statutes that provide a guarantee for further human rights promotion and protection, including on land rights, on access to the courts, and on combating human trafficking", - "values": [ - "Justice", - "Right to land", - "Trafficking" - ] - }, - { - "text": "Give priority to the right of people to development and to continue efforts to uplift the standard of living of the people in the framework of China's efforts to protect and promote human rights ", - "values": [ - "Development" - ] - }, - { - "text": "Strengthen the funding for implementation of the 2007 Domestic Violence Act.", - "values": [ - "Rights of the Child", - "Women's rights" - ] - }, - { - "text": "Create or designate a national mechanism for the prevention of torture.", - "values": [ - "Torture and other CID treatment" - ] - }, - { - "text": "Review the Legislative Decrees No. 1094 and No. 1095 to ensure that they are in line with international human rights standards ", - "values": [ - "Death penalty", - "International instruments" - ] - }, - { - "text": "Move forward in the signing of the 6 core international conventions on human rights that the country is not yet a Party", - "values": [ - "International instruments" - ] - }, - { - "text": "Do more to address gender mainstreaming in line with the equality policy ", - "values": [ - "Women's rights" - ] - }, - { - "text": "Ensure land rights of indigenous communities within protected natural parks, in particular Pygmies. Likewise harmonize projects of greenhouse gas reduction, deforestation reduction and forest degradation in line with the United Nations Declaration on the Rights of Indigenous Peoples ", - "values": [ - "Environment", - "Indigenous peoples", - "International instruments", - "Right to land" - ] - }, - { - "text": "Ensure equal access to poverty reduction programmes, particularly for indigenous families ", - "values": [ - "Indigenous peoples", - "Poverty" - ] - }, - { - "text": "Permanently lift restrictions on access to minority areas", - "values": [ - "Freedom of movement", - "Minorities" - ] - }, - { - "text": "Abolish capital punishment ", - "values": [ - "Death penalty" - ] - }, - { - "text": "Promote amendments in the current laws to envisage the prosecution and punishment of the perpetrators of violence against women, in particular domestic violence", - "values": [ - "Rights of the Child", - "Women's rights" - ] - }, - { - "text": "Continue to develop and implement measures aimed at the promotion and protection of human rights of vulnerable groups, such as children, women, people with disabilities, and the elderly ", - "values": [ - "Disabilities", - "Rights of the Child", - "Women's rights" - ] - }, - { - "text": "Work closely with OHCHR in order to seek its assistance in meetings the obligations to the United Nations treaty bodies and implementing the recommendations received under the universal periodic review", - "values": [ - "Technical assistance and cooperation", - "Treaty bodies", - "UPR process" - ] - }, - { - "text": "Ratify and accede to the International Convention for the Protection of All Persons from Enforced Disappearance", - "values": [ - "Enforced disappearances", - "International instruments" - ] - }, - { - "text": "Declare illegal and prohibit organizations promoting and inciting racial hatred, in line with the international norms", - "values": [ - "Racial discrimination" - ] - }, - { - "text": "Guarantee in law and in fact the freedom of expression, freedom of the press and freedom of assembly and association, in conformity with ICCPR ", - "values": [ - "Freedom of association and peaceful assembly", - "Freedom of opinion and expression", - "Freedom of religion and belief", - "International instruments" - ] - }, - { - "text": "Adopt measures to guarantee full access to education for all children in the country ", - "values": [ - "Right to education", - "Rights of the Child" - ] - }, - { - "text": "Continue to work to address issues such as a lack of teachers, school facilities and the marked differences between the quality of educational institutions in urban and rural areas", - "values": [ - "Right to education" - ] - }, - { - "text": "Increase efforts to reach out to and ensure the rights of members of minorities, particularly the Romani community", - "values": [ - "Minorities" - ] - }, - { - "text": "Improve the precarious situation of indigenous peoples, particularly by stepping up efforts to guarantee their right to education, including in their own languages, unrestricted use of their lands and territories, address the problem of underrepresentation in State institutions at the federal and regional levels", - "values": [ - "Indigenous peoples", - "Right to education", - "Right to land" - ] - }, - { - "text": "Conduct an independent and impartial inquiry into all enforced disappearances and extrajudicial killings so that the perpetrators of these crimes are brought to justice", - "values": [ - "Enforced disappearances", - "Extrajudicial executions" - ] - }, - { - "text": "Pursue its ongoing positive efforts to promote and protect the rights of children in the area of access to health and education, as well as to ensure the empowerment of women", - "values": [ - "Rights of the Child", - "Women's rights" - ] - }, - { - "text": "Publicly announce the shelving of the proposed bill on homosexuality and decriminalize homosexual behaviour ", - "values": [ - "Sexual Orientation and Gender Identity" - ] - }, - { - "text": "Strengthen measures to address teenage pregnancy, promoting access to reproductive health services including sexual and reproductive health education, as well as counselling services and health care adapted to young people ", - "values": [ - "Right to health", - "Rights of the Child", - "Women's rights" - ] - }, - { - "text": "Take more efficient steps to prevent and punish violence against women in all its manifestations", - "values": [ - "Women's rights" - ] - }, - { - "text": "Consider abolishing the death penalty, and ratify the Second Optional Protocol to the International Convention on Civil and Political Rights ", - "values": [ - "Death penalty", - "International instruments" - ] - }, - { - "text": "Continue deploying concrete actions aimed at eliminating discrimination against women and improve the rights of women and gender equality", - "values": [ - "Women's rights" - ] - }, - { - "text": "Include domestic violence as a specific crime in the criminal code", - "values": [ - "Rights of the Child", - "Women's rights" - ] - }, - { - "text": "Develop its domestic legal system and ensure the appropriate implementation and execution of the law towards the implementation of the international human rights instruments to which it is a party.", - "values": [ - "International instruments", - "Justice" - ] - }, - { - "text": "Establish a moratorium on the death penalty, with a view to fully abolishing it, in line with relevant UN General Assembly resolutions", - "values": [ - "Death penalty" - ] - }, - { - "text": "Implement the recommendations of the Special Rapporteur on violence against women, particularly those pertaining to domestic violence and violence related to sorcery accusations, take all necessary steps to fully implement the Sorcery National Action Plan, ensure the investigation of incidents of sorcery related violence and prosecution of alleged perpetrators, and provide adequate shelter, psycho-social, legal and other services for survivors of gender-based violence, including in rural areas", - "values": [ - "Rights of the Child", - "Special procedures", - "Women's rights" - ] - }, - { - "text": "Continue its close cooperation and support for the activities of United Nations Office for the Coordination of Humanitarian Affairs (OCHA), United Nations Disaster Assessment and Coordination (UNDAC) team, and the International Committee of the Red Cross (ICRC), among others", - "values": [ - "Environment" - ] - }, - { - "text": "Continue to improve in the following areas: poverty eradication, rights of the child, women's rights and rights of persons with disabilities.", - "values": [ - "Disabilities", - "Poverty", - "Rights of the Child", - "Women's rights" - ] - }, - { - "text": "Continue with its strategies aimed at expanding the coverage of the right to education ", - "values": [ - "Right to education" - ] - }, - { - "text": "With the support of relevant international organizations, continue to implement policies to enhance gender equality and the domestic framework to protect the rights of women and children", - "values": [ - "Rights of the Child", - "Technical assistance and cooperation", - "Women's rights" - ] - }, - { - "text": "Amend the Persons with Disability Act of 2006 in line with the Convention on the Rights of the Persons with Disabilities", - "values": [ - "Disabilities", - "International instruments" - ] - }, - { - "text": "Continue efforts to end child labour through the establishment of an inter-agency coordination mechanism at the national and subnational levels in order to implement the National Plan for the Prevention and Eradication of Child Labour", - "values": [ - "Labour", - "Rights of the Child" - ] - }, - { - "text": "Establish an inclusive process to follow up the UPR recommendations", - "values": [ - "UPR process" - ] - }, - { - "text": "Continue working actively for the creation of an integrated and permanent national structure to combat trafficking in persons", - "values": [ - "Trafficking" - ] - }, - { - "text": "Reinforce its programmes to include Roma girls in the mainstream education", - "values": [ - "Minorities", - "Right to education", - "Rights of the Child" - ] - }, - { - "text": "Amend existing provisions in the Criminal Code with the aim of introducing a complete abolition of the death penalty ", - "values": [ - "Death penalty" - ] - }, - { - "text": "Continue working against violence against women in line with its national legal framework for equality", - "values": [ - "Women's rights" - ] - }, - { - "text": "Zambia remains committed to ratifying all human rights instruments and a process of internal consultations have already started as part of this process. Zambia is also currently in the process of carrying out a mapping exercise of all human rights treaties to which Zambia is party with a view of domesticating the same ", - "values": [ - "International instruments" - ] - }, - { - "text": "Ratify the ICRMW, the Convention relating to the Status of Stateless Persons, and the Convention on the Reduction of Statelessness ", - "values": [ - "International instruments", - "Labour", - "Migrants", - "Statelessness and the right to nationality" - ] - }, - { - "text": "Call for the provision of technical and financial assistance by the international community to contribute to the development process of the country with the view to achieving the Millennium Development Goals ", - "values": [ - "Development", - "Technical assistance and cooperation" - ] - }, - { - "text": "Step up its efforts to tackle the root cause of discrimination and violence against the Roma population, especially women and children.", - "values": [ - "Minorities", - "Rights of the Child", - "Women's rights" - ] - }, - { - "text": "Take effective legal steps to halt human rights violations by its military forces and private security firms in Afghanistan and other States ", - "values": [ - "International humanitarian law" - ] - }, - { - "text": "Revise the Islamic Penal Code to ensure consistency with its international obligations, including article 6 of ICCPR, so that the death penalty is reserved for most serious crimes, never imposed for crimes committed by persons below 18 years of age and never imposed arbitrarily", - "values": [ - "Death penalty", - "International instruments", - "Rights of the Child" - ] - }, - { - "text": "Condemn crimes and hate speech, ensure that all racist offences are effectively detected and are subject to investigation and prosecution, and fight against racism and intolerance manifestations in the media", - "values": [ - "Racial discrimination" - ] - }, - { - "text": "Take appropriate steps to prohibit and combat child labour and the worst forms of exploitation of children", - "values": [ - "Labour", - "Rights of the Child" - ] - }, - { - "text": "Speed up the process of establishing a special law on trafficking in persons", - "values": [ - "Trafficking" - ] - }, - { - "text": "Indonesia is commended for its efforts in the field of human rights training and education and is encouraged to continue in this regard, and to provide additional training for law enforcement officials, including prosecutors, police and judges, as well as for security forces.", - "values": [ - "Human rights education and training" - ] - }, - { - "text": "Consider the possibility of acceding to and/or ratifying the Convention on the Rights of Persons with Disabilities and its Optional Protocol ", - "values": [ - "Disabilities", - "International instruments" - ] - }, - { - "text": "Make efforts to explore options and introduce new methodologies with a view to raise awareness of human rights in the country", - "values": [ - "Human rights education and training" - ] - }, - { - "text": "End discrimination against citizens on the basis of the so-called "core", "wavering" and "hostile" social classes and of political connections ", - "values": [ - "Justice" - ] - }, - { - "text": "Continue the process of ratifying international human rights instruments that it is not yet a party to", - "values": [ - "International instruments" - ] - }, - { - "text": "Ensure the effective implementation of the National Action Plan on Human Rights", - "values": [ - "General" - ] - }, - { - "text": "Determine terrorism in a clear manner in the Criminal Code so as to further assist the work of the relevant authorities", - "values": [ - "Justice", - "Public security" - ] - }, - { - "text": "Implement a plan of action to promote human rights, in cooperation with civil society and the Office of the Ombudsman, with a special emphasis on the rights of women and vulnerable groups", - "values": [ - "Civil society", - "National Human Rights Institution", - "Women's rights" - ] - }, - { - "text": "Ensure the transparent and independent investigation of the numerous cases of excessive violence against demonstrators, followed by mistreatment and torture in detention in the aftermath of the presidential elections in June 2009, and ensure the prosecution of the persons responsible", - "values": [ - "Detention", - "Freedom of association and peaceful assembly", - "Torture and other CID treatment" - ] - }, - { - "text": "Take the necessary measures to deepen awareness with regard to minorities and foreigners in order to prevent them from suffering acts of violence and discrimination", - "values": [ - "Human rights education and training", - "Minorities" - ] - }, - { - "text": "Accede to the Second Optional Protocol to the International Covenant on Civil and Political Rights, aimed at abolishing the death penalty, and take the necessary steps to remove the death penalty from Tanzania's justice system", - "values": [ - "Death penalty", - "International instruments" - ] - }, - { - "text": "Continue its commendable efforts to empower women in social, political, economic and public life, including by continuing its positive measures to improve women's employment", - "values": [ - "Women's rights" - ] - }, - { - "text": "Speed up the process of ratification of the Second Optional Protocol to the International Covenant on Civil and Political Rights", - "values": [ - "Death penalty", - "International instruments" - ] - }, - { - "text": "Ensure that all cases of violence against women and girls are investigated and that perpetrators are brought to justice", - "values": [ - "Rights of the Child", - "Women's rights" - ] - }, - { - "text": "Continue developing a comprehensive juvenile judicial system", - "values": [ - "Justice" - ] - }, - { - "text": "Consider elaboration and adoption of a policy on child justice or a comprehensive programme through the National Child Justice Forum", - "values": [ - "Justice", - "Rights of the Child" - ] - }, - { - "text": "Expedite essential reforms of the judiciary", - "values": [ - "Justice" - ] - }, - { - "text": "Take all necessary measures to guarantee the independence of justice without control or political interference ", - "values": [ - "Justice" - ] - }, - { - "text": "Establish a National Human Rights Institution ", - "values": [ - "National Human Rights Institution" - ] - }, - { - "text": "Step up efforts to combat domestic violence", - "values": [ - "Rights of the Child", - "Women's rights" - ] - }, - { - "text": "Enforce the prohibition of torture while reflecting on the condition of detention centres", - "values": [ - "Detention", - "Torture and other CID treatment" - ] - }, - { - "text": "Consider ratifying the Domestic Workers Convention, 2011 (No. 189)", - "values": [ - "International instruments", - "Labour" - ] - }, - { - "text": "Amend the law to expressly prohibit hazardous work for children as well as all forms of trafficking of children", - "values": [ - "Labour", - "Rights of the Child", - "Trafficking" - ] - }, - { - "text": "Adopt a universal system for birth registration, which includes children of refugees, asylum seekers and stateless persons", - "values": [ - "Asylum-seekers - refugees", - "Rights of the Child", - "Statelessness and the right to nationality" - ] - }, - { - "text": "Issue a standing invitation to all Special proceduress ", - "values": [ - "Special procedures" - ] - }, - { - "text": "Continue with its efforts to strengthen the effectiveness and independence of the justice system", - "values": [ - "Justice" - ] - }, - { - "text": "Prosecute and punish possible crimes committed by security officers, especially the practice of torture", - "values": [ - "Human rights violations by state agents", - "Torture and other CID treatment" - ] - }, - { - "text": "Strengthen its efforts to end discrimination against women by incorporating the principle of equality into the Constitution in the context of its constitutional review", - "values": [ - "Women's rights" - ] - }, - { - "text": "Lift de jure and de facto the state of emergency in the Algiers Wilaya and fully guarantee the enjoyment of the right to freedom of expression and assembly for all citizens ", - "values": [ - "Freedom of association and peaceful assembly", - "Freedom of opinion and expression" - ] - }, - { - "text": "Take appropriate measures to address concerns over having withdrawn the citizenship of naturalized Kuwaiti citizens", - "values": [ - "Other" - ] - }, - { - "text": "Continue its efforts in combating gender-based violence, particularly on women with disabilities, through effective implementation of its National Strategy for the Elimination of Violence against Women 2013-2016", - "values": [ - "Disabilities", - "Women's rights" - ] - }, - { - "text": "Ensure that all allegations of torture are promptly, impartially and effectively investigated, and similarly all incidents of death in custody are thoroughly and impartially investigated, and those found responsible are prosecuted and punished accordingly ", - "values": [ - "Detention", - "Extrajudicial executions", - "Torture and other CID treatment" - ] - }, - { - "text": "Take effective steps to address child labour ", - "values": [ - "Labour", - "Rights of the Child" - ] - }, - { - "text": "Increase its activities towards the full realization of the right to education and continue increasing investment in this field", - "values": [ - "Right to education" - ] - }, - { - "text": "Consider positively accession to international human rights treaties, particularly ICCPR, ICESCR, ICRMW and ILO Convention 169 on indigenous peoples and tribes", - "values": [ - "CP rights - general", - "ESC rights - general", - "Indigenous peoples", - "International instruments", - "Labour", - "Migrants" - ] - }, - { - "text": "Continue its efforts to combat poverty with the support of the international community \n\n", - "values": [ - "Poverty", - "Technical assistance and cooperation" - ] - }, - { - "text": "Implement public policies which guarantee to members of linguistic minorities the enjoyment of all their human rights, including the revision of the Law on Languages and the repeal of those articles which might impair their rights", - "values": [ - "Minorities" - ] - }, - { - "text": "Protect national minorities rights already granted by the existing law and to have them reflected in the new legislation, and not diminish the current minority stipulation for the procedures of elections.", - "values": [ - "Minorities" - ] - }, - { - "text": "Ratify the Optional Protocol to CRC on the sale of children, child prostitution and child pornography and CEDAW", - "values": [ - "International instruments", - "Rights of the Child", - "Trafficking", - "Women's rights" - ] - }, - { - "text": "Accede to the Second Optional Protocol to ICCPR", - "values": [ - "Death penalty", - "International instruments" - ] - }, - { - "text": "Develop mechanisms to improve the safety of journalists and ensure that all cases of attacks are investigated by independent and impartial bodies ", - "values": [ - "Freedom of the press" - ] - }, - { - "text": "Make available the necessary resources to the Human Rights Commission to effectively implement its important mandate ", - "values": [ - "National Human Rights Institution" - ] - }, - { - "text": "Take decisive actions to ensure immediate protection for civilians at risk and to propose to the armed opposition a viable mechanism to meet its needs without the use of weapons. ", - "values": [ - "International humanitarian law" - ] - }, - { - "text": "Decriminalize same-sex relations ", - "values": [ - "Sexual Orientation and Gender Identity" - ] - }, - { - "text": "Strengthen the judiciary by combating slowness as well as addressing corruption and the repressive treatment of adolescents ", - "values": [ - "Justice" - ] - }, - { - "text": "Associate human rights defenders in the following up and implementation of recommendations which it will accept in the context of its universal periodic review. ", - "values": [ - "Human rights defenders", - "UPR process" - ] - }, - { - "text": "Commute the death sentences with a view to abolishing the death penalty", - "values": [ - "Death penalty" - ] - }, - { - "text": "Continue to strengthen measures to combat human trafficking and child labour ", - "values": [ - "Labour", - "Rights of the Child", - "Trafficking" - ] - }, - { - "text": "Accelerate the process of ratification of the Optional Protocol to the International Covenant on Economic, Social and Cultural Rights", - "values": [ - "ESC rights - general", - "International instruments" - ] - }, - { - "text": "Further improve the living standard of the people by reducing poverty and economic disparity", - "values": [ - "Development", - "Poverty" - ] - }, - { - "text": "Intensify its efforts to combat discrimination on the basis of sexual orientation and gender identity", - "values": [ - "Sexual Orientation and Gender Identity" - ] - }, - { - "text": "Take a leading role in setting the tone of the current national debate on integration issues and have the voices of migrants and other groups also be heard.", - "values": [ - "Migrants" - ] - }, - { - "text": "Establish a human rights education system for members of the police and detention and prison staff, together with systems for the full and independent investigation and regular punishment of human rights violations by such personnel", - "values": [ - "Human rights education and training", - "Human rights violations by state agents" - ] - }, - { - "text": "Continue efforts to create an environment harmonizing citizens' rights to peaceful protest with the need for security and integrity of the country and with efforts to maintain public order and protect public and private property", - "values": [ - "Freedom of association and peaceful assembly", - "Public security" - ] - }, - { - "text": "Ensure the full and effective implementation of existing laws and policies relating to the rights of women and children, in order to protect these rights and eliminate all forms of discrimination", - "values": [ - "Rights of the Child", - "Women's rights" - ] - }, - { - "text": "Strengthen the measures aimed at guaranteeing the full integration of persons with disabilities through an inclusive education plan ", - "values": [ - "Disabilities", - "Right to education" - ] - }, - { - "text": "Investigate effectively the attack on the Russian school "Intellect" in Tbilisi and the destruction of its property and punish those responsible", - "values": [ - "Minorities", - "Racial discrimination" - ] - }, - { - "text": "Ensure that the right to family life, marriage and choice of spouse is guaranteed to every person without discrimination based on national or ethnic origin ", - "values": [ - "Racial discrimination", - "Women's rights" - ] - }, - { - "text": "Provide facilities to ensure that persons with disabilities can live independently, have access to public and private buildings and have equal opportunities to education, employment and health services, with a support structure particularly for children so challenged", - "values": [ - "Disabilities", - "Labour", - "Right to education", - "Right to health", - "Rights of the Child" - ] - }, - { - "text": "Take further action to prevent and tackle discrimination of religious minorities, also by revising the rules on registration of religious association, so that everyone can exercise their rights in an unrestricted manner", - "values": [ - "Freedom of religion and belief", - "Minorities", - "Racial discrimination" - ] - }, - { - "text": "Make more efforts to improve the situation in detention facilities especially in women's prisons ", - "values": [ - "Detention", - "Women's rights" - ] - }, - { - "text": "Define its priorities and needs for technical assistance, strengthening its capacities and improving the infrastructures", - "values": [ - "Technical assistance and cooperation" - ] - }, - { - "text": "Allocate the necessary resources for the prompt establishment of a national mechanism to prevent torture with the characteristics enshrined in OP-CAT", - "values": [ - "Detention", - "International instruments", - "Torture and other CID treatment" - ] - }, - { - "text": "Reinforce all efforts to preserve the progress achieved in a large number of areas such as justice, promotion of freedom, education and health, the fight against inequality and against child trafficking, and public freedoms ", - "values": [ - "Justice", - "Right to education", - "Right to health", - "Rights of the Child", - "Trafficking" - ] - }, - { - "text": "Take further steps to improve the situation of migrant labourers and domestic staff.", - "values": [ - "Labour", - "Migrants" - ] - }, - { - "text": "Work on building the capacity of law enforcement officials in the area of human rights and provide them with the necessary education to guarantee the best standards in this regard", - "values": [ - "Human rights education and training" - ] - }, - { - "text": "Ratify the Convention against Torture and the optional protocol thereto", - "values": [ - "Detention", - "International instruments", - "Torture and other CID treatment" - ] - }, - { - "text": "Regarding the legal services in the hinterland, Guyana had expanded those services and had committed to continue to work on that issue", - "values": [ - "Justice" - ] - }, - { - "text": "Examine the possibility of setting up a national human rights institution accredited by the International Coordination Committee of National Institutions for the Promotion and Protection of Human Rights", - "values": [ - "National Human Rights Institution" - ] - }, - { - "text": "Further increase its national spending on health and education sectors to meet the targets of the Millennium Development Goals ", - "values": [ - "Right to education", - "Right to health" - ] - }, - { - "text": "Enforce all laws that protect children from trafficking and exploitation, and their uses in illegal activities", - "values": [ - "Rights of the Child", - "Trafficking" - ] - }, - { - "text": "The Government of Canada is committed to addressing outstanding land claim and treaty issues, and in 2012, announced a new results-based approach to treaty and self-government negotiations. ", - "values": [ - "Indigenous peoples", - "Right to land" - ] - }, - { - "text": "Increase the resources so that female survivors of violence and domestic abuse can denounce the crimes with guarantees they will be not repeated", - "values": [ - "Women's rights" - ] - }, - { - "text": "Strengthen plans and policies to eradicate violence against women", - "values": [ - "Women's rights" - ] - }, - { - "text": "Pursue efforts to prepare a new constitution in conformity with international human rights norms", - "values": [ - "International instruments" - ] - }, - { - "text": "In the context of global partnerships for development, to seek assistance from the United Nations system, including the United Nations High Commissioner for Refugees, and development partners to mobilize requisite resources with respect to financial assistance to aid the establishment of transit centres for refugees and capacity-building in the administration and management of refugees and stateless persons", - "values": [ - "Asylum-seekers - refugees", - "Statelessness and the right to nationality", - "Technical assistance and cooperation" - ] - }, - { - "text": "Take immediate measures to ensure that all children have access to all levels of education and quality health services", - "values": [ - "Right to education", - "Right to health", - "Rights of the Child" - ] - }, - { - "text": "Adopt new legislation that guarantees the freedom of the media as well as the right to information", - "values": [ - "Freedom of opinion and expression", - "Freedom of the press" - ] - }, - { - "text": "Take steps to guarantee the right to peaceful assembly for its citizens", - "values": [ - "Freedom of association and peaceful assembly" - ] - }, - { - "text": "Strengthen its cooperation with special procedures of the Human Rights Council, by accepting visits, replying to communications, urgent measures as well as to questions by special procedures.", - "values": [ - "Special procedures" - ] - }, - { - "text": "Take all necessary measures to reduce the duration of pre-trial detention to conform to international standards. ", - "values": [ - "Detention" - ] - }, - { - "text": "Strengthen criminal legislation with regard to trafficking of children and women ", - "values": [ - "Rights of the Child", - "Trafficking", - "Women's rights" - ] - }, - { - "text": "Make greater efforts to investigate complaints and prosecute those that commit crimes against ethnic and religious minorities, such as the Hazaras, Dalits, Christians, Hindus and Ahmadis", - "values": [ - "Freedom of religion and belief", - "Minorities", - "Racial discrimination" - ] - }, - { - "text": "Sign and ratify the core international instruments, including the Convention against Torture and Other Cruel, Inhuman or Degrading Treatment or Punishment", - "values": [ - "International instruments", - "Torture and other CID treatment" - ] - }, - { - "text": "Adopt measures to guarantee birth registration of its citizens", - "values": [ - "Rights of the Child", - "Statelessness and the right to nationality" - ] - }, - { - "text": "Resume the two-way dialogue in Tibet", - "values": [ - "Other" - ] - }, - { - "text": "Consider the possibility of ratifying the Convention against Torture, since that international instrument is a fundamental tool in working to promote and protect human rights, particularly with regard to people deprived of freedom.", - "values": [ - "International instruments", - "Torture and other CID treatment" - ] - }, - { - "text": "Increase teaching time in schools and early learning centres and continue to establish secondary schools offering a full schoolday", - "values": [ - "Right to education" - ] - }, - { - "text": "Further expand the initiatives aimed at reaching better protection of the rights of the child", - "values": [ - "Rights of the Child" - ] - }, - { - "text": "Reduce the disparities in the quality of education between urban, rural, remote areas or areas inhabited by ethnic minorities ", - "values": [ - "Development", - "Minorities" - ] - }, - { - "text": "Raise the age of criminal responsibility to 12 years", - "values": [ - "Justice", - "Rights of the Child" - ] - }, - { - "text": "Strengthen the efforts to respect and protect women's rights and gender equality. This includes an effective implementation of an inter-sectorial policy and action plan on reproductive and sexual health and rights and prevention of violence against women", - "values": [ - "Right to health", - "Women's rights" - ] - }, - { - "text": "Strengthen measures with a view to guaranteeing full access to education for persons with disabilities", - "values": [ - "Disabilities", - "Right to education" - ] - }, - { - "text": "Ensure that press laws are in compliance with article 19 of ICCPR.", - "values": [ - "Freedom of the press", - "International instruments" - ] - }, - { - "text": "Take all necessary measures so that the Family Protection Units can ensure that all cases of domestic violence are brought to justice ", - "values": [ - "Rights of the Child", - "Women's rights" - ] - }, - { - "text": "Continue taking steps to actively prevent and combat violence against women and domestic violence", - "values": [ - "Rights of the Child", - "Women's rights" - ] - }, - { - "text": "Ensure respect throughout the country for freedom of expression, and to improve the working conditions for the press and radio broadcasting", - "values": [ - "Freedom of opinion and expression", - "Freedom of the press" - ] - }, - { - "text": "Implement an awareness and education campaign, in cooperation with community and religious leaders, aimed at ending the practice of female genital mutilation and other forms of violence against women ", - "values": [ - "Human rights education and training", - "Rights of the Child", - "Torture and other CID treatment", - "Women's rights" - ] - }, - { - "text": "Intensify its efforts in protecting the rights of women and promote gender equality by revising legal framework, strengthening law enforcement and supporting victims of domestic violence in their legal process, rehabilitation and reintegration", - "values": [ - "Women's rights" - ] - }, - { - "text": "To continue to implement the Ten-Year Justice Development Programme (PRODEJ) operating plan for 2010-2014", - "values": [ - "Justice" - ] - }, - { - "text": "Continue the process of establishing the national mechanism to prevent torture", - "values": [ - "Torture and other CID treatment" - ] - }, - { - "text": "Consider the possibility of the abolition of the death penalty by the law", - "values": [ - "Death penalty" - ] - }, - { - "text": "Further step up efforts to combat trafficking, including measures to protect the victims of human trafficking, as well as consider the possibility of inviting the Special Rapporteur on trafficking in persons, especially women and children", - "values": [ - "Rights of the Child", - "Special procedures", - "Trafficking", - "Women's rights" - ] - }, - { - "text": "Ratify the Second Optional Protocol to the International Covenant on Civil and Political Rights to abolish the death penalty.", - "values": [ - "Death penalty", - "International instruments" - ] - }, - { - "text": "Continue to strengthen and develop the National Human Rights Program 2013-2018", - "values": [ - "General" - ] - }, - { - "text": "Continue its efforts in combating and preventing discrimination, especially against persons with disabilities, particularly with respect to the rights to education and social assistance", - "values": [ - "Disabilities", - "Right to education", - "Right to housing" - ] - }, - { - "text": "Uphold the total prohibition against torture and reform its laws in accordance with its international obligations under the Convention against Torture and Other Cruel, Inhuman or Degrading Treatment or Punishment ", - "values": [ - "International instruments", - "Torture and other CID treatment" - ] - }, - { - "text": "Adopt measures against child activities in convents dedicated to voodoo, where child abuses take place. Additionally, take measures to sanction and prevent the practice of infanticide of so-called \u201cwitch children\u201c", - "values": [ - "Rights of the Child" - ] - }, - { - "text": "Take all necessary measures, including to ensure the full operationalization of the Zimbabwe Gender Commission, without delay, to ensure that women are not subjected to violence, including sexual violence", - "values": [ - "Rights of the Child", - "Women's rights" - ] - }, - { - "text": "Explicitly prohibit corporal punishment in all settings, including the home and all care settings ", - "values": [ - "Rights of the Child", - "Torture and other CID treatment" - ] - }, - { - "text": "Provide for an adequate number of publicly funded shelter facilities for victims of domestic violence", - "values": [ - "Rights of the Child", - "Women's rights" - ] - }, - { - "text": "Pay particular attention to the provision of adequate basic services to the Roma population, such as drinking water, sanitation, electricity and systems of sewage and waste disposal ", - "values": [ - "ESC rights - general", - "Minorities", - "Right to water and sanitation" - ] - }, - { - "text": "Continue its efforts that aim at further implementing its existing programmes and policies on gender equality, in particular, with respect to the empowerment of women and the promotion of social inclusion, including that of the ethnic minorities ", - "values": [ - "Minorities", - "Women's rights" - ] - }, - { - "text": "Take all necessary measures to ensure Aboriginal and Torres Strait Islander Peoples give their consent to the development and implementation of policies and programmes that impact upon their communities and futures", - "values": [ - "Indigenous peoples" - ] - }, - { - "text": "The Government of Jamaica recognizes that the voluntary goals elaborated in Human Rights Council Resolution 9/12 are in keeping with Jamaica's own human rights commitment and its obligations as a party to 7 of the 9 core international human rights instruments. In those instances where it is not a party, appropriate domestic legislation, grounded in the Constitution of Jamaica, is in place to effectively ensure the protection of the rights of each citizen. However, the Government will continue to review those instruments that it has not yet ratified.", - "values": [ - "International instruments" - ] - }, - { - "text": "Submit its overdue reports to the relevant treaty body mechanisms", - "values": [ - "Treaty bodies" - ] - }, - { - "text": "Continue its efforts to establish a national human rights institution in accordance with the Paris Principles", - "values": [ - "National Human Rights Institution" - ] - }, - { - "text": "Strengthen the protection of individuals against discrimination, including based on sexual orientation or gender identity", - "values": [ - "Sexual Orientation and Gender Identity" - ] - }, - { - "text": "Ensure that hate crime and violence, racist and xenophobic discourse are investigated, and that the perpetrators are prosecuted", - "values": [ - "Racial discrimination" - ] - }, - { - "text": "Publicly and unequivocally condemn any attack, verbal or physical, against LGBT groups and bring those responsible to justice", - "values": [ - "Sexual Orientation and Gender Identity" - ] - }, - { - "text": "Remove its reservations to CRC and the Convention on the Elimination of All Forms of Discrimination against Women CEDAW ", - "values": [ - "International instruments", - "Rights of the Child", - "Statelessness and the right to nationality", - "Women's rights" - ] - }, - { - "text": "Continue its efforts to combat child, early and forced marriages by addressing their causes through the effective implementation of the action plan for its national child protection policy", - "values": [ - "Rights of the Child", - "Women's rights" - ] - }, - { - "text": "Revise the so-called insult law.", - "values": [ - "Freedom of opinion and expression" - ] - }, - { - "text": "Address the elimination of child labour in the ongoing 1972 Labour and Employment Act review ", - "values": [ - "Labour", - "Rights of the Child" - ] - }, - { - "text": "To ensure an effective national preventive mechanism, as requested in OP-CAT, provide in its draft law for the full independence of this institution ", - "values": [ - "Detention", - "International instruments", - "Torture and other CID treatment" - ] - }, - { - "text": "Step up measures to improve employability and access to employment, especially among young men and women, and ensure equal opportunities between them", - "values": [ - "Development", - "Women's rights" - ] - }, - { - "text": "Prioritize efforts to comply with the commitment to guarantee free primary education, presently receives one of the lowest levels of State investment in the region", - "values": [ - "Right to education" - ] - }, - { - "text": "Continue to implement constitutional principles relating to freedom of religion and the need to respect religions and their symbols", - "values": [ - "Freedom of religion and belief" - ] - }, - { - "text": "Implement the recommendations made by the European Committee against torture and other inhuman and degrading treatment or punishment at its visit in the country ", - "values": [ - "Torture and other CID treatment" - ] - }, - { - "text": "Take measures to avoid the use of excessive force and ensure that conditions of arrest and pretrial detention meet international standards ", - "values": [ - "Detention" - ] - }, - { - "text": "Continue to address human rights challenges in line with international human rights standards", - "values": [ - "General", - "International instruments" - ] - }, - { - "text": "Review the system of administration of justice in order to expedite the delivery of justice ", - "values": [ - "Justice" - ] - }, - { - "text": "Draw up a programme to ensure the full enjoyment of human rights by persons living with albinism", - "values": [ - "Minorities" - ] - }, - { - "text": "Strengthen its efforts to effectively implement existing laws and policies to eliminate all forms of discrimination", - "values": [ - "Other" - ] - }, - { - "text": "Consider in future policies the establishment of a national human rights institution, which could favour the gradual incorporation of international commitments with an adequate and permanent technical assistance ", - "values": [ - "National Human Rights Institution" - ] - }, - { - "text": "Raise the level of professionalism and efficiency in the police force", - "values": [ - "Public security" - ] - }, - { - "text": "Establish a permanent institution to synchronise the implementation of recommendations, the monitoring of performance and reporting ", - "values": [ - "UPR process" - ] - }, - { - "text": "Double its efforts to conclude the adoption of the National work Plan for the promotion of human rights and start in the implementation ", - "values": [ - "General" - ] - }, - { - "text": "Continue to promote gender equality through the empowerment of women in decision-making and public administration", - "values": [ - "Women's rights" - ] - }, - { - "text": "Repeal or amend the Demonstration law (Law 107 of 2013), and the civil society law (Law 84 of 2002), which restrict freedom of assembly, association and expression, to be consistent with Egypt's international obligations", - "values": [ - "Civil society", - "Freedom of association and peaceful assembly", - "Freedom of opinion and expression", - "International instruments" - ] - }, - { - "text": "Remove discriminatory provisions of the "Protection of Race and Religion Law"", - "values": [ - "Freedom of religion and belief", - "Racial discrimination" - ] - }, - { - "text": "Immediately restitute permanent residence for the "erased" persons and adequately compensate them", - "values": [ - "Other" - ] - }, - { - "text": "Consider the possibility of contemplating exceptions to the general prohibition of abortion, especially in cases of therapeutic abortion when the mother's life is in danger as well as in cases of pregnancies resulting from rape or incest ", - "values": [ - "Women's rights" - ] - }, - { - "text": "Redouble efforts in the implementation of measures seeking to reduce the gender pay gap", - "values": [ - "Women's rights" - ] - }, - { - "text": "Incorporate human rights education into the school curricula ", - "values": [ - "Human rights education and training", - "Right to education" - ] - }, - { - "text": "The Government is committed to promoting gender equality, as enshrined in the Constitution, and is making efforts to ensure women's empowerment.", - "values": [ - "Women's rights" - ] - }, - { - "text": "Put an end to discrimination and repression against people because of their ethnic and religious affiliation, including Baha'is, Kurds, Ahwazis and Christians", - "values": [ - "Freedom of religion and belief", - "Minorities", - "Racial discrimination" - ] - }, - { - "text": "Continue working towards the adoption of the new civil registration law in the country ", - "values": [ - "CP rights - general" - ] - }, - { - "text": "Take measures towards the full equality for Omani women including by reviewing the Personal Status Law and Labour Law ", - "values": [ - "Labour", - "Women's rights" - ] - }, - { - "text": "Declare a moratorium on the death penalty with a view to abolition and commute death penalty sentences to jail sentences ", - "values": [ - "Death penalty" - ] - }, - { - "text": "Continue to make efforts to promote women's empowerment", - "values": [ - "Women's rights" - ] - }, - { - "text": "Revise the Law against Extremism in such a way, that it would clarify the definition of extremism ", - "values": [ - "Justice" - ] - }, - { - "text": "Strengthen actions to ensure the effective implementation of laws against discrimination, in particular discrimination based on sexual orientation", - "values": [ - "Sexual Orientation and Gender Identity" - ] - }, - { - "text": "Amend its electoral legislation so that any deprivation of the right to vote of citizens serving a prison sentence is reasonable and proportionate and applied only for the committing of the most serious crimes", - "values": [ - "Elections" - ] - }, - { - "text": "Sign and ratify ICMW ", - "values": [ - "International instruments", - "Migrants" - ] - }, - { - "text": "Establish an independent national human rights institution in line with the Paris Principles", - "values": [ - "National Human Rights Institution" - ] - }, - { - "text": "Further enhance measures against violence against women and children, including by ensuring appropriate assistance to victims and active detection efforts by law enforcement authorities ", - "values": [ - "Rights of the Child", - "Women's rights" - ] - }, - { - "text": "Penalize the ill-treatment of children, and adopt measures to investigate and punish the situations of vulnerability with regard to women and girls with disabilities", - "values": [ - "Disabilities", - "Rights of the Child", - "Torture and other CID treatment", - "Women's rights" - ] - }, - { - "text": "Make further progress on follow-up to the work of the CAVR and Commission on Truth and Friendship - particularly with regard to adopting legislation on reparations for the victims of past abuses and the establishment of a "Memory Institute"", - "values": [ - "Justice" - ] - }, - { - "text": "Take steps to ensure that allegations of ill-treatment of persons detained by the security and police forces are fully investigated and that perpetrators are held accountable", - "values": [ - "Detention", - "Human rights violations by state agents", - "Torture and other CID treatment" - ] - }, - { - "text": "Ensure that crimes and violations against human rights defenders and journalists are effectively investigated and prosecuted", - "values": [ - "Freedom of the press", - "Human rights defenders" - ] - }, - { - "text": "Strengthen efforts to effectively combat violence against women ", - "values": [ - "Women's rights" - ] - }, - { - "text": "Issue a decree on compulsory maternity leave and equal wages for men and women", - "values": [ - "Women's rights" - ] - }, - { - "text": "Extend invitations in particular to the Special Rapporteur on the question of torture.", - "values": [ - "Special procedures", - "Torture and other CID treatment" - ] - }, - { - "text": "Continue efforts to strengthen the quality of, and access to, education and make basic education free for all, especially in rural areas ", - "values": [ - "Right to education" - ] - }, - { - "text": "Conduct independent and impartial inquiry in relation to all enforced disappearances and extrajudicial executions and that the perpetrators of these crimes be brought to justice ", - "values": [ - "Enforced disappearances", - "Extrajudicial executions" - ] - }, - { - "text": "Promptly ratify the ICCPR", - "values": [ - "CP rights - general", - "International instruments" - ] - }, - { - "text": "Take necessary actions to implement its commitment to extend a standing invitation to the special procedures of the Human Rights Council ", - "values": [ - "Special procedures" - ] - }, - { - "text": "Unconditionally abolish its extraterritorial legislation on human rights and related matters, including the "North Korea Human Rights Act"", - "values": [ - "Other" - ] - }, - { - "text": "Foster increased dialogue with civil society, especially regarding strengthening electoral processes", - "values": [ - "Civil society", - "Elections" - ] - }, - { - "text": "Improve the implementation of the laws that protect the rights of women, girls and children", - "values": [ - "Rights of the Child", - "Women's rights" - ] - }, - { - "text": "Submit its overdue reports to two treaty bodies", - "values": [ - "Treaty bodies" - ] - }, - { - "text": "Ensure that the authority tasked with the management of European Union funds, such as the Asylum, Migration and Integration Fund, commences operations as swiftly as possible", - "values": [ - "Asylum-seekers - refugees", - "Migrants" - ] - }, - { - "text": "Continue the efforts to achieve an effective registration of all births, with special attention to children belonging to ethnic minorities", - "values": [ - "Minorities", - "Rights of the Child", - "Statelessness and the right to nationality" - ] - }, - { - "text": "Take measures to ensure the availability of adequate facilities for refugee children, including access to legal counsel, medical care and education ", - "values": [ - "Asylum-seekers - refugees", - "Rights of the Child" - ] - }, - { - "text": "Further develop legislation and practices in the media sector to strengthen the right to freedom of expression", - "values": [ - "Freedom of opinion and expression", - "Freedom of the press" - ] - }, - { - "text": "Consider the ratification or adhesion to the Optional Protocol to the Convention on the Elimination of All Forms of Discrimination against Women", - "values": [ - "International instruments", - "Women's rights" - ] - }, - { - "text": "In cooperation with OHCHR, strengthen the education of public order forces and the army with regard to their obligation to respect human rights and international humanitarian law, as well as to fulfil the United Nations basic principles on the use of force and firearms by law enforcement officials", - "values": [ - "Human rights education and training", - "International humanitarian law", - "International instruments" - ] - }, - { - "text": "Address the gaps in the legislation on domestic violence identified by the Committee established by the Bureau of Gender Affairs", - "values": [ - "Women's rights" - ] - }, - { - "text": "Urgently address the grave violations committed against children, including sexual violence, recruitment of child soldiers and the use of children as human shields during the conflict, ratify the Optional Protocol to the Convention on the Rights of the Child on the involvement of children in armed conflict, and sign and ratify the Optional Protocol to the Convention on the Rights of the Child on a communications procedure", - "values": [ - "International humanitarian law", - "International instruments", - "Rights of the Child" - ] - }, - { - "text": "Continue to focus its efforts on ensuring full protection of the human rights for all migrant and foreign workers, particularly to enhance their safety and welfare ", - "values": [ - "Labour", - "Migrants" - ] - }, - { - "text": "Continue its remarkable efforts to promote the rights of the child and to ensure adequate protection to women, children and victims of human rights violations ", - "values": [ - "Rights of the Child", - "Women's rights" - ] - }, - { - "text": "Continue with the efforts carried out to combat the discrimination suffered by minorities", - "values": [ - "Minorities", - "Racial discrimination" - ] - }, - { - "text": "Ratify ILO 189 on decent work for domestic workers ", - "values": [ - "International instruments", - "Labour" - ] - }, - { - "text": "Continue supporting efforts to empower women and to promote and protect children's rights, including by providing adequate financial and human resources to implement policies and programmes afforded to them", - "values": [ - "Rights of the Child", - "Women's rights" - ] - }, - { - "text": "Consider re-examining reservations to the Convention on the Rights of the Child, the Convention on the Elimination of All Forms of Discrimination against Women and the Convention against Torture with a view to withdrawing them", - "values": [ - "International instruments", - "Rights of the Child", - "Statelessness and the right to nationality", - "Torture and other CID treatment", - "Women's rights" - ] - }, - { - "text": "Repeal all legislative and administrative measures aimed at the judaization of occupied East Jerusalem, including those that allow excavations in the vicinity of the AlAqsa Mosque", - "values": [ - "Freedom of religion and belief" - ] - }, - { - "text": "Impose a moratorium on executions with a view to abolishing the death penalty at the federal and state levels", - "values": [ - "Death penalty" - ] - }, - { - "text": "Continue to actively participate in the climate change negotiations for a strong legally binding outcome of the United Nations Framework Convention on Climate Change process", - "values": [ - "Environment" - ] - }, - { - "text": "Consolidate all human rights efforts through, inter alia, developing a comprehensive national human rights action plan", - "values": [ - "General" - ] - }, - { - "text": "With the support and assistance of the international community, continue efforts to fight poverty and guarantee the enjoyment of the economic, social and cultural rights of the Yemeni people.", - "values": [ - "ESC rights - general", - "Poverty", - "Technical assistance and cooperation" - ] - }, - { - "text": "Ratify ICESCR as well as ICCPR and CAT", - "values": [ - "CP rights - general", - "ESC rights - general", - "International instruments", - "Torture and other CID treatment" - ] - }, - { - "text": "Raise awareness of the criminalization of female genital mutilation and also ensure perpetrators of female genital mutilation are brought to justice", - "values": [ - "Human rights education and training", - "Rights of the Child", - "Torture and other CID treatment", - "Women's rights" - ] - }, - { - "text": "The welfare system initiated by His Majesty the King serves as a crucial safety net for the most vulnerable section of the society. Despite this, the government is attempting to establish a more concrete social protection system through the following initiatives subject to availability of resources:(a) Drafting of a Social Protection Policy for Workers in Bhutan,(b) Formulation of an unemployment benefit scheme,(c) Institution of a Universal non-contributory old age pension scheme,(d) Establishment of Old age homes for the elderly.", - "values": [ - "ESC rights - general", - "Labour" - ] - }, - { - "text": "Reinforce the measures to combat discrimination against minority groups, particularly towards persons with disabilities, older persons and religious minorities", - "values": [ - "Disabilities", - "Freedom of religion and belief", - "Minorities", - "Racial discrimination" - ] - }, - { - "text": "Grant and recognize refugee status for all persons coming under the mandate of the United Nations High Commissioner for Refugees, in particular by giving them the national documents necessary to that effect", - "values": [ - "Asylum-seekers - refugees" - ] - }, - { - "text": "Continue to seek measures to avoid children staying with their imprisoned parents who are serving prison sentences, so as not to expose them to conditions that may affect their development", - "values": [ - "Detention", - "Rights of the Child" - ] - }, - { - "text": "Consider becoming party to ICRMW and to OP-CAT ", - "values": [ - "Detention", - "International instruments", - "Labour", - "Migrants", - "Torture and other CID treatment" - ] - }, - { - "text": "Continue to implement its national plans, including for the reform of its human rights legislation, and further to improve the effectiveness of enforcing its national laws ", - "values": [ - "Justice" - ] - }, - { - "text": "Ensure that the rights to freedom of expression and peaceful assembly are respected and all citizens, including journalists and human rights defenders, are able to pursue their activities without intimidation", - "values": [ - "Freedom of association and peaceful assembly", - "Freedom of opinion and expression", - "Freedom of the press", - "Human rights defenders" - ] - }, - { - "text": "Make sustained efforts to realize its commitments to contribute to the achievement of internationally-agreed development goals by raising its aid financing to at least 0.7 per cent of its GDP to reinforce the suggestions made by different Treaty Bodies.", - "values": [ - "Development", - "Treaty bodies" - ] - }, - { - "text": "The instrument of ratification for the Optional Protocol to the International Covenant on Economic, Social and Cultural Rights, as well as the Convention on the Rights of Persons with Disabilities, would be submitted within the next 18 months", - "values": [ - "Disabilities", - "ESC rights - general", - "International instruments" - ] - }, - { - "text": "Incorporate the crime of torture in the Penal Code, including a definition of torture with all the elements listed in article 1 of the Convention against Torture ", - "values": [ - "International instruments", - "Torture and other CID treatment" - ] - }, - { - "text": "Strengthen the fight against harmful traditional practices, such as the stigmatization of children accused of sorcery", - "values": [ - "Rights of the Child", - "Torture and other CID treatment" - ] - }, - { - "text": "Continue to implement its social and economic development strategy in order to promote steady progress of its society ", - "values": [ - "Development" - ] - }, - { - "text": "Recommended that lawmakers discharge their responsibility under the International Covenant on Civil and Political Rights, in particular with regard to the prohibition of incitement to hatred by law, and enacting the necessary restrictions to protect the rights of others. ", - "values": [ - "CP rights - general", - "International instruments", - "Racial discrimination" - ] - }, - { - "text": "Extend a standing invitation to the mandate holders of all special procedures of the Human Rights Council", - "values": [ - "Special procedures" - ] - }, - { - "text": "Address the concerns raised by the Special Rapporteur on contemporary forms of racism, racial discrimination, xenophobia and related intolerance and xenophobia in relation to concerns about migrants and the living and working conditions of migrant workers, abolish corporal punishment for immigration offenders and enact an anti-discrimination law ", - "values": [ - "Labour", - "Migrants", - "Racial discrimination", - "Special procedures" - ] - }, - { - "text": "Accelerate the poverty alleviation programmes with a view to addressing the uneven distribution of wealth, access to health and the high level of social exclusion of indigenous peoples and People of African Descent.", - "values": [ - "Indigenous peoples", - "Poverty", - "Right to health" - ] - }, - { - "text": "Withdraw its reservations to the International Convention on the Elimination of All Forms of Racial Discrimination (ICERD), ICESCR and ICCPR ", - "values": [ - "CP rights - general", - "ESC rights - general", - "International instruments", - "Racial discrimination" - ] - }, - { - "text": "Accede to the universal human rights core treaties ", - "values": [ - "International instruments" - ] - }, - { - "text": "Take steps to recognize the Roma people as its own citizens and to protect them against racial discrimination", - "values": [ - "Minorities", - "Racial discrimination" - ] - }, - { - "text": "Conceive measures to address the phenomenon of the reported increase in labour exploitation, such as by alerting migrant workers, informing migrant workers about their legal rights, and give training to professionals in contact with potential victims ", - "values": [ - "Labour", - "Migrants" - ] - }, - { - "text": "Step up efforts to improve the protection of the rights of women and children, notably by criminally prosecuting those responsible for the violations ", - "values": [ - "Rights of the Child", - "Women's rights" - ] - }, - { - "text": "Redouble efforts to protect young people under 18 years, especially young women, against the worst forms of labour, including trafficking, sexual exploitation and hazardous work", - "values": [ - "Labour", - "Rights of the Child", - "Trafficking", - "Women's rights" - ] - }, - { - "text": "Implement specific and concrete measures with a view to increasing women's participation in political and corporate life in the country ", - "values": [ - "Women's rights" - ] - }, - { - "text": "Take the necessary steps to establish the National Human Rights Institution", - "values": [ - "National Human Rights Institution" - ] - }, - { - "text": "Engage with other mandate holders, especially with the special rapporteurs on the right to freedom of expression, on human rights defenders and on torture ", - "values": [ - "Freedom of opinion and expression", - "Human rights defenders", - "Special procedures", - "Torture and other CID treatment" - ] - }, - { - "text": "Carry out effective and independent investigations of allegations of excessive use of force by the security forces to bring perpetrators of these acts to justice and ensure that victims benefit from full reparations ", - "values": [ - "Human rights violations by state agents" - ] - }, - { - "text": "Strengthen the coordination of federal and provincial mechanisms in order to remove disparities in the implementation of anti-racism legislation, policies, and programmes, and ensure the enjoyment on an equal footing within all provinces and territories of the rights set forth in the International Convention on the Elimination of All Forms of Racial Discrimination (ICERD) including by adopting new federal laws", - "values": [ - "International instruments", - "Racial discrimination" - ] - }, - { - "text": "Take active measures to eliminate gender-based violence against women, specifically refugee women, and take immediate appropriate measures to eliminate all forms of discrimination against women, in line with the Convention on the Elimination of All Forms of Discrimination against Women", - "values": [ - "Asylum-seekers - refugees", - "International instruments", - "Women's rights" - ] - }, - { - "text": "Continue the commendable efforts to promote and protect the rights of women and children", - "values": [ - "Rights of the Child", - "Women's rights" - ] - }, - { - "text": "Combat negative stereotypes and prejudice against persons with disabilities ", - "values": [ - "Disabilities" - ] - }, - { - "text": "Amend legislation allowing the imprisonment of prisoners of conscience so as to be in compliance with the International Covenant on Civil and Political Rights (articles 18-22)", - "values": [ - "Detention", - "Freedom of religion and belief", - "International instruments" - ] - }, - { - "text": "Build on its record and take additional measures to guarantee basic economic and social rights, such as in education and health, in particular for communities such as disabled, lower income persons and people living with HIV and AIDS ", - "values": [ - "Disabilities", - "HIV - Aids", - "Right to education", - "Right to health" - ] - }, - { - "text": "Ensure the implementation of the recommendations of the Fact-Finding Commission on the events which occurred in Chad from 28 January to 8 February 2008 and their consequences", - "values": [ - "Justice" - ] - }, - { - "text": "Increase the quality in the social use and access to information and communication technologies ", - "values": [ - "Freedom of opinion and expression" - ] - }, - { - "text": "Ratify, as soon as possible, the International Convention for the Protection of All Persons from Enforced Disappearance ", - "values": [ - "Enforced disappearances", - "International instruments" - ] - }, - { - "text": "Continue to support other developing countries, especially the least developed countries, in their development efforts and thus help them realize their economic, social and cultural rights ", - "values": [ - "Development", - "ESC rights - general", - "Technical assistance and cooperation" - ] - }, - { - "text": "Continue efforts to strengthen existing mechanisms to better protect women and children and prevent physical and sexual abuse and discrimination, including through additional training programmes to identify those most at risk of abuse ", - "values": [ - "Rights of the Child", - "Women's rights" - ] - }, - { - "text": "Take action to align all laws and policies with the principle of equality and non-discrimination as stated in the Constitution and in accordance with the Convention on the Elimination of All Forms of Discrimination against Women ", - "values": [ - "International instruments", - "Women's rights" - ] - }, - { - "text": "Take further steps aimed at strengthening its national institution in the area of protection and promotion of the rights of the child", - "values": [ - "National Human Rights Institution", - "Rights of the Child" - ] - }, - { - "text": "Allow children of Greek citizens working in Istanbul to attend the Greek minority schools as fully-fledged students", - "values": [ - "Minorities", - "Right to education", - "Rights of the Child" - ] - }, - { - "text": "Seek international assistance in the provision of basic services to the refugees", - "values": [ - "Asylum-seekers - refugees", - "Technical assistance and cooperation" - ] - }, - { - "text": "Ensure that sexual orientation and gender identity be explicitly included through anti-discrimination laws and programmes.", - "values": [ - "Sexual Orientation and Gender Identity" - ] - }, - { - "text": "Proceed with the establishment of a general directorate for human rights in the Ministry of Justice, on the basis of the draft law prepared for this purpose", - "values": [ - "Other" - ] - }, - { - "text": "Continue to uphold the implementation commitments as a State party to the Second Optional Protocol to the International Covenant on Civil and Political Rights, aiming at the abolition of the death penalty", - "values": [ - "Death penalty", - "International instruments" - ] - }, - { - "text": "Adopt additional measures for access to education, in order to contribute to overcoming the educational gap between the black and white populations ", - "values": [ - "Racial discrimination", - "Right to education" - ] - }, - { - "text": "Make efforts to correct inequalities between men and women in the area of remuneration, especially through the introduction of effective measures as part of the National Strategy 2009-2013 for sex parity, which is being prepared. ", - "values": [ - "Women's rights" - ] - }, - { - "text": "Actively protect gender equality and women's rights and ensure inter alia that women and girls have effective access to justice, including through the provision of legal aid", - "values": [ - "Rights of the Child", - "Women's rights" - ] - }, - { - "text": "Continue its efforts in consolidating peace as well as efforts to achieve social inclusion and reconciliation through the implementation of its National Development Plan for 2010-2014 "Prosperity for All" ", - "values": [ - "International humanitarian law" - ] - }, - { - "text": "Ratify or accede as appropriate to the CED", - "values": [ - "Enforced disappearances", - "International instruments" - ] - }, - { - "text": "Implement the recommendations of the Committee on the Rights of the Child\n\n", - "values": [ - "Rights of the Child", - "Treaty bodies" - ] - }, - { - "text": "Review its national legislation on freedom of expression so that it fully complies with the relevant provisions of the International Covenant on Civil and Political Rights, and ensure the effective protection of human rights defenders against harassment or persecution ", - "values": [ - "Freedom of opinion and expression", - "Human rights defenders", - "International instruments" - ] - }, - { - "text": "Continue its efforts to implement the policies and strategies for the Prevention and Responses to Violence against Children and Youth", - "values": [ - "Rights of the Child" - ] - }, - { - "text": "Replace the Law 12-06 of 12 January 2012 by a law on association that will be more in conformity with international standards on this issue ", - "values": [ - "Freedom of association and peaceful assembly" - ] - }, - { - "text": "Enhance its efforts to prevent incitement to ethnic and religious hatred", - "values": [ - "Freedom of religion and belief", - "Minorities", - "Racial discrimination" - ] - }, - { - "text": "Ratify the Rome Statute of the International Criminal Court and the Agreement on the Privileges and Immunities of the International Criminal Court", - "values": [ - "International instruments", - "Justice" - ] - }, - { - "text": "In the spirit of ongoing cooperation between the United Nations and Namibia, extend an open and standing invitation to the United Nations special procedures", - "values": [ - "Special procedures" - ] - }, - { - "text": "Strengthen the strategies and measures for fulfilling children's rights in the Poverty Reduction Strategy Plan", - "values": [ - "Poverty", - "Rights of the Child" - ] - }, - { - "text": "Ratify the Optional Protocol to the International Covenant on Economic, Social and Cultural Rights and the Optional Protocol to the Convention against Torture", - "values": [ - "Detention", - "ESC rights - general", - "International instruments", - "Torture and other CID treatment" - ] - }, - { - "text": "Adopt legislative measures to prevent that they become victims of trafficking", - "values": [ - "Trafficking" - ] - }, - { - "text": "Continue to prioritize the enforcement of mechanisms for compliance with the core provisions on the CEDAW by ensuring a rapid change in mentalities regarding women's rights, female genital mutilation, early marriage and the perception of the role and place of women, through education", - "values": [ - "Human rights education and training", - "International instruments", - "Rights of the Child", - "Torture and other CID treatment", - "Women's rights" - ] - }, - { - "text": "Continue applying the country's socio-economic development strategies and plans ", - "values": [ - "ESC rights - general" - ] - }, - { - "text": "Ensure that the work of the NHRI is aligned with the Paris Principles ", - "values": [ - "National Human Rights Institution" - ] - }, - { - "text": "Actively promote women's rights and eliminate discrimination against women", - "values": [ - "Women's rights" - ] - }, - { - "text": "Continue consulting with civil society in the follow-up to UPR ", - "values": [ - "Civil society", - "UPR process" - ] - }, - { - "text": "Ensure that the allegations are cleared up, and take concrete measures in this regard such as the creation of a national observatory on human rights defenders, and carry out educational and training programmes on human rights for all levels of public administration", - "values": [ - "Human rights defenders", - "Human rights education and training" - ] - }, - { - "text": "Cancel all retroactive measures taken to replace the principle of jus soli with the principle of jus sanguinis for the acquisition of nationality", - "values": [ - "Other", - "Statelessness and the right to nationality" - ] - }, - { - "text": "Continue to strengthen its social policies so as to increase the living conditions of its people, especially of the most needed, with the international community solidarity ", - "values": [ - "Development" - ] - }, - { - "text": "Recognize in law the right to conscientious objection to military service and practice and ensure that recruitment methods allow it", - "values": [ - "Freedom of religion and belief" - ] - }, - { - "text": "Accelerate and strengthen legislative and educational actions to combat discrimination in all its forms, particularly discrimination on the basis of sex and sexual orientation", - "values": [ - "Sexual Orientation and Gender Identity" - ] - }, - { - "text": "Undertake measures to tackle all manifestations of racism, racial discrimination, xenophobia and related intolerance", - "values": [ - "Racial discrimination" - ] - }, - { - "text": "Progress efforts to end discrimination based on sexual orientation, gender identity and intersex status", - "values": [ - "Sexual Orientation and Gender Identity" - ] - }, - { - "text": "Take all necessary measures to review its domestic law and ensure that children born outside marriage are registered and enjoy their human rights on an equal condition with others", - "values": [ - "Rights of the Child", - "Statelessness and the right to nationality" - ] - }, - { - "text": "Improve conditions in Tanzania's prisons, including in relation to overcrowding and inadequate health care ", - "values": [ - "Detention", - "Right to health" - ] - }, - { - "text": "Draft guidelines to report violations of the rights of persons deprived of their liberty through the national mechanism for the prevention of torture", - "values": [ - "Detention", - "Torture and other CID treatment" - ] - }, - { - "text": "Repeal or amend the Suppression of Terrorism Act of 2008 with a view to bringing it in line with international human rights obligations", - "values": [ - "Counter-terrorism", - "International instruments" - ] - }, - { - "text": "Continue implementing the integrated programme of rural development and the fight against poverty", - "values": [ - "Development", - "Poverty" - ] - }, - { - "text": "Amend all legislative provisions discriminatory against women and introduce a comprehensive law preventing and combating violence against women and girls, including a definition of rape in line with international standards and the criminalization of marital rape", - "values": [ - "Rights of the Child", - "Women's rights" - ] - }, - { - "text": "Keep working on the legislative framework for the recognition of the indigenous peoples in the country", - "values": [ - "Indigenous peoples" - ] - }, - { - "text": "Remove the death penalty from its Penal Code with a view to ratifying the Second Optional Protocol to the International Covenant on Civil and Political Rights", - "values": [ - "Death penalty", - "International instruments" - ] - }, - { - "text": "Take measures towards the ratification of the International Convention on the Protection of the Rights of all Migrant Workers and Members of Their Families", - "values": [ - "International instruments", - "Labour", - "Migrants" - ] - }, - { - "text": "Decriminalize defamation and incorporate this into the Civil Code", - "values": [ - "Freedom of opinion and expression" - ] - }, - { - "text": "Finalize adoption of the National Action Plan on Human Trafficking", - "values": [ - "Trafficking" - ] - }, - { - "text": "Launch a comprehensive review leading to legal and policy reforms which protect the rights of refugees and migrants, including rights to family reunification and enact legislation creating an offence for racial violence, and design and implement training for judges and prosecutors on the nature of hate crimes on the basis of race", - "values": [ - "Asylum-seekers - refugees", - "Human rights education and training", - "Migrants", - "Racial discrimination" - ] - }, - { - "text": "Strengthen actions aimed at eliminating discrimination against women, in particular by guaranteeing effective access to education to girls and pregnant teenagers", - "values": [ - "Right to education", - "Rights of the Child", - "Women's rights" - ] - }, - { - "text": "Reform the substitute detention system in order to be consistent with the international human rights standards, including those on the right to assistance from a lawyer in custody", - "values": [ - "Detention", - "International instruments" - ] - }, - { - "text": "Take all necessary measures to ensure the independence and the integrity of the judiciary and oversight bodies", - "values": [ - "Justice" - ] - }, - { - "text": "Establish a national mechanism to identify all victims and take necessary measures to ensure access to the asylum procedure for foreign women who are victims of trafficking, or at the risk of being trafficked, who can show a need for international protection, as recommended by CEDAW, CRC, and the CESCR, in light of the serious efforts made by the Government of Spain to adopt a Plan to Combat Human Trafficking for the Purposes of Sexual Exploitation ", - "values": [ - "Trafficking", - "Treaty bodies", - "Women's rights" - ] - }, - { - "text": "Deepen dialogue with UNHCR regarding the situation of individuals belonging to the Hmong minority returned from third countries ", - "values": [ - "Indigenous peoples", - "Minorities" - ] - }, - { - "text": "Progress towards the ratification of the Convention against Torture and Other Cruel, Inhuman or Degrading Treatment or Punishment ", - "values": [ - "International instruments", - "Torture and other CID treatment" - ] - }, - { - "text": "Institute an immediate moratorium on the punishment by flogging, with a view to abolishing this practice at the legislative level", - "values": [ - "Torture and other CID treatment" - ] - }, - { - "text": "Remove the obstacles preventing victims of discrimination from effective access to justice, adopt appropriate measures to facilitate reporting on this crime by national, ethnic and religious minorities ", - "values": [ - "Freedom of religion and belief", - "Justice", - "Minorities", - "Racial discrimination" - ] - }, - { - "text": "Encourage the participation of minorities, such as the Pygmies, in the political, economic and social life of the country", - "values": [ - "ESC rights - general", - "Indigenous peoples", - "Minorities" - ] - }, - { - "text": "Continue efforts aimed at finding effective measures to protect human rights defenders ", - "values": [ - "Human rights defenders" - ] - }, - { - "text": "Establish a moratorium on executions and move towards abolishing the death penalty", - "values": [ - "Death penalty" - ] - }, - { - "text": "Evaluate measures taken with regard to the action plan concerning combating human trafficking and share its experiences and best practices with the international community ", - "values": [ - "Trafficking" - ] - }, - { - "text": "Increase its efforts in the area of health, education, guarantee the interest and protect rights of women and children, and promote overall social and economic development ", - "values": [ - "Development", - "Right to education", - "Right to health", - "Rights of the Child", - "Women's rights" - ] - }, - { - "text": "Consider issuing an invitation to the Special Rapporteur on violence against women.", - "values": [ - "Special procedures", - "Women's rights" - ] - }, - { - "text": "Continue taking measures on combating trafficking in persons ", - "values": [ - "Trafficking" - ] - }, - { - "text": "Engage in a participatory and inclusive process with civil society in the implementation of universal periodic review recommendations ", - "values": [ - "Civil society", - "UPR process" - ] - }, - { - "text": "Amend the judicial rules so that the Ombudsman's reports are more easily admissible in court.", - "values": [ - "National Human Rights Institution" - ] - }, - { - "text": "Continue its cooperation with the United Nations and other international organizations to overcome the remaining constraints and challenges ", - "values": [ - "Technical assistance and cooperation" - ] - }, - { - "text": "Continue its efforts to promote equality between women and men ", - "values": [ - "Women's rights" - ] - }, - { - "text": "Continue its efforts to enhance the rights of women and children and the institution of the family within the framework of national policies and strategies ", - "values": [ - "Rights of the Child", - "Women's rights" - ] - }, - { - "text": "Strengthen measures to prevent sexual exploitation of children, ensure prompt investigation of allegations of exploitation and sexual abuse, and punish perpetrators ", - "values": [ - "Rights of the Child" - ] - }, - { - "text": "Allow unimpeded access to all regions to ICRC, the Special Rapporteur on the situation of human rights in Myanmar, other United Nations envoys and humanitarian organizations ", - "values": [ - "Special procedures" - ] - }, - { - "text": "Continue to introduce the legislative and institutional measures necessary to enhance the independence and effectiveness of its National Human Rights Institution", - "values": [ - "National Human Rights Institution" - ] - }, - { - "text": "Refrain from using such laws as those against dangerousness, enemy propaganda and contempt for authority to restrict the rights of freedom of expression and association", - "values": [ - "Freedom of association and peaceful assembly", - "Freedom of opinion and expression" - ] - }, - { - "text": "Renew its effort to promote and protect the rights of vulnerable groups such as children, women, persons with disabilities and older persons ", - "values": [ - "Disabilities", - "Rights of the Child", - "Women's rights" - ] - }, - { - "text": "Eliminate legal and bureaucratic restrictions affecting an individual's right to choose his or her religion", - "values": [ - "Freedom of religion and belief" - ] - }, - { - "text": "Formulate civil and administrative laws which complement the provisions of the criminal law and are directed towards combating discrimination on the basis of ethnicity, nationality or language, in the fields of employment and the public services in particular", - "values": [ - "Minorities", - "Racial discrimination" - ] - }, - { - "text": "Give particular attention to the effective participation of minorities in the decision-taking process, offering equal economic and social opportunities, and to create practices and institutions to ensure that the ethnic, linguistic and religious diversity of the country can be fully integrated", - "values": [ - "Minorities" - ] - }, - { - "text": "Continue its efforts to promote respect of cultural and religious particularities of each society and enhance dialogue among religions and civilizations ", - "values": [ - "Freedom of religion and belief" - ] - }, - { - "text": "Ensure the full compliance of the Media Service Bill of 2015 with the right to freedom of expression as guaranteed under the International Covenant on Civil and Political Rights and that its provisions facilitate the work of independent and pluralistic media, including citizen journalists", - "values": [ - "Freedom of opinion and expression", - "Freedom of the press", - "International instruments" - ] - }, - { - "text": "Ensure that allegations of ill-treatment by law enforcement officers are promptly, thoroughly and impartially investigated and that those responsible are punished.", - "values": [ - "Human rights violations by state agents" - ] - }, - { - "text": "Continue to share and extend its experience and best practices in the efforts in developing comprehensive policies and strategies for the advancement of indigenous groups which focus on uplifting the status and quality of life of the community via socio-economic programmes", - "values": [ - "Indigenous peoples" - ] - }, - { - "text": "Enhance its efforts to eliminate gender stereotyping", - "values": [ - "Women's rights" - ] - }, - { - "text": "Take further steps to combat domestic violence, including a greater gender sensitization", - "values": [ - "Women's rights" - ] - }, - { - "text": "Step up efforts to address the problem of unemployment, in particular in the rural regions, including through specially targeted programmes to stimulate economic growth and development in the poor and rural areas ", - "values": [ - "Development" - ] - }, - { - "text": "To put in place measures to increase access to education for all children and improve the educational infrastructure and quality of education", - "values": [ - "Right to education", - "Rights of the Child" - ] - }, - { - "text": "Increase efforts to identify and prosecute suspected human traffickers and provide comprehensive services to victims of trafficking", - "values": [ - "Trafficking" - ] - }, - { - "text": "Implement awareness projects and activities to combat discriminatory attitudes and further its efforts to promote human rights education ", - "values": [ - "Human rights education and training" - ] - }, - { - "text": "Step up efforts to eliminate hazardous work conditions for children working in the agricultural sector ", - "values": [ - "Labour", - "Rights of the Child" - ] - }, - { - "text": "Put in place measures to prevent and combat conjugal and sexual violence and provide appropriate assistance and protection to victims, particularly in rural areas", - "values": [ - "Women's rights" - ] - }, - { - "text": "Give importance to guaranteeing that refugees who fall into the category of "war refugees" are given the right to family reunification", - "values": [ - "Asylum-seekers - refugees" - ] - }, - { - "text": "Strengthen and consolidate the implementation of the transitional justice programme it has adopted.", - "values": [ - "Justice" - ] - }, - { - "text": "Consider ratifying the Domestic Workers Convention, 2011 (No. 189), of the International Labour Organization", - "values": [ - "International instruments", - "Labour" - ] - }, - { - "text": "Carry out awareness campaigns for the population in relation to non-discrimination based on sexual orientation", - "values": [ - "Human rights education and training", - "Sexual Orientation and Gender Identity" - ] - }, - { - "text": "Run further public awareness campaigns on legal protection against discrimination", - "values": [ - "Human rights education and training" - ] - }, - { - "text": "Legalize its social housing to ensure access for all families", - "values": [ - "Right to housing" - ] - }, - { - "text": "Continue to carry out reforms in the country in order to fully ensure the protection of human rights and the rule of law in accordance with all relevant laws and codes, as stated in its national report ", - "values": [ - "Justice" - ] - }, - { - "text": "Increase measures to eradicate discrimination against the immigrant population, as well as to improve the situation of Gypsies and integration into Spanish society", - "values": [ - "Migrants", - "Minorities" - ] - }, - { - "text": "Adopt a law prohibiting all forms of discrimination against indigenous communities and guarantee access to comprehensive quality education for Guarani speakers", - "values": [ - "Indigenous peoples", - "Racial discrimination", - "Right to education" - ] - }, - { - "text": "Ratify the Convention against Torture and Other Cruel, Inhuman or Degrading Treatment or Punishment and the Convention on the Rights of Persons with Disabilities ", - "values": [ - "Disabilities", - "International instruments", - "Torture and other CID treatment" - ] - }, - { - "text": "Ensure efficient, non-discriminatory investigations and timely prosecutions as part of the enforcement of hate crime legislation", - "values": [ - "Racial discrimination" - ] - }, - { - "text": "Strengthen the actions to defend freedom of expression and the plurality of the media", - "values": [ - "Freedom of opinion and expression", - "Freedom of the press" - ] - }, - { - "text": "Continue efforts to guarantee the safety of human rights defenders from arbitrary arrests and intimidation", - "values": [ - "Detention", - "Human rights defenders" - ] - }, - { - "text": "Take all the necessary steps to prevent intercommunity confrontations and violence", - "values": [ - "Public security" - ] - }, - { - "text": "Fully ensure the freedoms of expression and association and take all necessary measures to ensure that human rights defenders can carry out their missions", - "values": [ - "Freedom of association and peaceful assembly", - "Freedom of opinion and expression", - "Human rights defenders" - ] - }, - { - "text": "Continue to address the issue of maternal mortality", - "values": [ - "Right to health", - "Women's rights" - ] - }, - { - "text": "Ensure that all allegations of torture and inhuman or degrading treatment, including those related to the June 2010 violence, are thoroughly investigated and that the perpetrators are brought to justice", - "values": [ - "Torture and other CID treatment" - ] - }, - { - "text": "Conduct independent national investigations of all cases of enforced disappearances and arbitrary detention ", - "values": [ - "Detention", - "Enforced disappearances" - ] - }, - { - "text": "Continue to implement the recommendation of the Committee on Economic, Social and Cultural Rights that a national plan for land management be adopted in accordance with applicable construction norms in areas exposed to risks of natural disasters", - "values": [ - "Environment", - "Right to land", - "Treaty bodies" - ] - }, - { - "text": "Repeal section 377 of the Indian Penal Code and ensure that consensual same-sex relations are not criminalized", - "values": [ - "Sexual Orientation and Gender Identity" - ] - }, - { - "text": "Ratify the Second Optional Protocol to the International Covenant on Civil and Political Rights in order to definitively abolish the death penalty", - "values": [ - "Death penalty", - "International instruments" - ] - }, - { - "text": "Consider establishing a national human rights institution which is in line with the Paris Principles, which would help monitor and better integrate human rights norms into national policies", - "values": [ - "National Human Rights Institution" - ] - }, - { - "text": "Continue its efforts to fight poverty ", - "values": [ - "Poverty" - ] - }, - { - "text": "Continue strengthening the implementation of public policies associated with combating discrimination in hiring practices", - "values": [ - "Labour" - ] - }, - { - "text": "Continue to enhance its cooperation with development partners in order to improve its financial and technical capacity to implement the anti- trafficking law", - "values": [ - "Trafficking" - ] - }, - { - "text": "Conduct a survey on child mortality in order to get updated and reliable data", - "values": [ - "Right to health", - "Rights of the Child" - ] - }, - { - "text": "Issue an invitation to the Special Rapporteur on violence against women, its causes and consequences ", - "values": [ - "Special procedures", - "Women's rights" - ] - }, - { - "text": "Declare an immediate moratorium on executions with the aim of abolishing the death penalty ", - "values": [ - "Death penalty" - ] - }, - { - "text": "Extend an invitation to the Special Rapporteur on the right to adequate housing, in order to obtain independent advice concerning the development of legislation and policies in accordance with international standards", - "values": [ - "Right to housing", - "Special procedures" - ] - }, - { - "text": "Further increase popular participation in elections and decision making procedures ", - "values": [ - "Elections" - ] - }, - { - "text": "Accede to the Rome Statute and fully align national legislation with the provisions of the Statute", - "values": [ - "International instruments", - "Justice" - ] - }, - { - "text": "Adopt a moratorium on the death penalty", - "values": [ - "Death penalty" - ] - }, - { - "text": "Criminalize marital rape", - "values": [ - "Women's rights" - ] - }, - { - "text": "Apply the constitutional norms regulating the penitentiary system which would allow regulating and using with great effectiveness the available resources in the penal system ", - "values": [ - "Detention" - ] - }, - { - "text": "Adopt legislative provisions for the prohibition, punishment and effective prevention of the practice of female genital mutilation ", - "values": [ - "Rights of the Child", - "Torture and other CID treatment", - "Women's rights" - ] - }, - { - "text": "Continue to take all necessary measures to protect and offer remedy to victims of torture ", - "values": [ - "Torture and other CID treatment" - ] - }, - { - "text": "Continue the enactment of laws and the strengthen of policies aimed at safe guarding the position of women and strengthening their roles in society", - "values": [ - "Women's rights" - ] - }, - { - "text": "Sign and ratify promptly the CED ", - "values": [ - "Enforced disappearances", - "International instruments" - ] - }, - { - "text": "Further increase regional and international cooperation on human rights, particularly with the ASEAN nations and with the Human Rights Council ", - "values": [ - "Other" - ] - }, - { - "text": "Remove from the Constitution provisions allowing racial discrimination", - "values": [ - "Racial discrimination" - ] - }, - { - "text": "Continue its efforts to better assist children of Roma origin to have access to quality education and therefore advance the integration of Roma", - "values": [ - "Minorities", - "Right to education", - "Rights of the Child" - ] - }, - { - "text": "Take the necessary steps to guarantee the right to associate and work freely for human rights defenders, in conformity with the United Nations Declaration on the Right and Responsibility of Individuals, Groups and Organs of Society to Promote and Protect Universally Recognized Human Rights and Fundamental Freedoms.", - "values": [ - "Freedom of association and peaceful assembly", - "Human rights defenders", - "International instruments" - ] - }, - { - "text": "Strengthen monitoring and supervision by relevant environmental agencies in order to ensure that toxic waste is treated in an environmentally sound manner", - "values": [ - "Environment" - ] - }, - { - "text": "Enhance the independence of the judiciary and strengthen rule of law through anti-corruption initiatives, increased transparency in the justice sector, and the elimination of external influence in judicial proceedings", - "values": [ - "Corruption", - "Justice" - ] - }, - { - "text": "Remove undue restrictions on the online publication of news media, and the licencing restrictions on media organizations and individuals seeking to practise journalism", - "values": [ - "Freedom of opinion and expression", - "Freedom of the press" - ] - }, - { - "text": "Continue its policy of social protection for its residents in view of its national programme on ensuring food security, the fight against illiteracy, and the promotion of economic opportunities for its citizens", - "values": [ - "Development", - "Right to education", - "Right to food" - ] - }, - { - "text": "That steps be taken to set federal and state-level moratoria on executions with a view to abolish the death penalty nationwide ", - "values": [ - "Death penalty" - ] - }, - { - "text": "Sign and ratify the International Convention on the Protection of the Rights of All Migrant Workers and Members of their Families", - "values": [ - "International instruments", - "Labour", - "Migrants" - ] - }, - { - "text": "Introduce a provision permitting the dissolution of organizations inciting racial hatred in domestic law ", - "values": [ - "Racial discrimination" - ] - }, - { - "text": "Bring the draft bill on NGOs into line with international norms and the Egyptian Constitution", - "values": [ - "Civil society", - "Freedom of association and peaceful assembly" - ] - }, - { - "text": "Consider establishing as a first step a moratorium with a view to abolishing the death penalty", - "values": [ - "Death penalty" - ] - }, - { - "text": "Continue its efforts to offer universal education for all through the development of a greater number of primary school institutions as well as by increasing support to economically disadvantaged and vulnerable children, and providing support to children with disabilities ", - "values": [ - "Disabilities", - "Right to education", - "Rights of the Child" - ] - }, - { - "text": "Enact measures concerning women's and children's rights, with the view to addressing the current problems in these fields", - "values": [ - "Rights of the Child", - "Women's rights" - ] - }, - { - "text": "Continue efforts for the protection and promotion of the rights of migrant workers", - "values": [ - "Migrants" - ] - }, - { - "text": "Align criminal legislation on insult and defamation with international standards governing freedom of expression. It hoped that these important elements would be taken into account in the ongoing reform of the Penal Code ", - "values": [ - "Freedom of opinion and expression" - ] - }, - { - "text": "Train its law enforcement personnel on gender sensitivity and equality", - "values": [ - "Human rights education and training", - "Women's rights" - ] - }, - { - "text": "Continue to implement measures designed to promote and protect the rights of children.", - "values": [ - "Rights of the Child" - ] - }, - { - "text": "Establish an ombudsperson for the rights of children and adolescents, in accordance with the Paris Principles", - "values": [ - "National Human Rights Institution", - "Rights of the Child" - ] - }, - { - "text": "Bring to justice perpetrators of attacks on journalists by effectively investigating all individuals and organizations accused of such abuses", - "values": [ - "Freedom of the press" - ] - }, - { - "text": "Promptly respond to complaints of harassment, intimidation or arbitrary arrests of human rights defenders, and take adequate measures for their safety ", - "values": [ - "Human rights defenders" - ] - }, - { - "text": "Continue implementation of the moratorium on death penalty and make efforts to achieve the total abolishment of the death penalty", - "values": [ - "Death penalty" - ] - }, - { - "text": "Ratify the OP-CEDAW", - "values": [ - "International instruments", - "Women's rights" - ] - }, - { - "text": "Take all the necessary measures to significantly increase the process of returning occupied private land back to its rightful owners, with a view to also addressing accusations of land-grabbing", - "values": [ - "Right to land" - ] - }, - { - "text": "Develop and adopt a gender parity law", - "values": [ - "Women's rights" - ] - }, - { - "text": "Establish a national human rights public body in accordance with the Paris Principles, as previously recommended", - "values": [ - "National Human Rights Institution", - "UPR process" - ] - }, - { - "text": "Take swift action to decriminalize same - sex sexual conduct between consenting adults", - "values": [ - "Sexual Orientation and Gender Identity" - ] - }, - { - "text": "Intensify its efforts in realizing gender equality through conducting awareness-raising and public educational campaigns with a view to bring about changes in such attitudes, and underlining that all forms of violence against women, including domestic violence, are unacceptable ", - "values": [ - "Human rights education and training", - "Women's rights" - ] - }, - { - "text": "Take steps to ensure that all military engagement is undertaken in a manner consistent with international humanitarian law to minimize the sufferings of civilians ", - "values": [ - "International humanitarian law" - ] - }, - { - "text": "Redouble its efforts to improve living conditions in prisons and reduce overcrowding", - "values": [ - "Detention" - ] - }, - { - "text": "Adopt human rights capacity-building and training programmes for law enforcement officials", - "values": [ - "Human rights education and training" - ] - }, - { - "text": "Increase efforts to ensure that the competent authorities, in particular the public prosecutor, investigate all torture allegations promptly and to bring any officials found responsible to justice", - "values": [ - "Human rights violations by state agents", - "Torture and other CID treatment" - ] - }, - { - "text": "Increase its efforts to safeguard the human rights of women, ageing people, persons with disabilities and children, in particular street children", - "values": [ - "Disabilities", - "Rights of the Child", - "Women's rights" - ] - }, - { - "text": "Step up efforts to ensure that investigation of attacks on voices for freedom of expression become a federal issue", - "values": [ - "Freedom of opinion and expression" - ] - }, - { - "text": "Ensure the safety of human rights defenders and journalists, as well as their human rights, particularly freedom of expression and the press, and undertake swift and transparent investigation in response to the reports of intimidation, reprisal, threats and violence", - "values": [ - "Freedom of the press", - "Human rights defenders" - ] - }, - { - "text": "Consider establishing an independent Ombudsman for children", - "values": [ - "National Human Rights Institution", - "Rights of the Child" - ] - }, - { - "text": "Closely monitor the processing of refugees and asylum seekers in offshore centers to ensure that their human rights are respected", - "values": [ - "Asylum-seekers - refugees", - "Detention" - ] - }, - { - "text": "Effectively protect and satisfy the unimpeded exercise of freedom of religion of non-Muslim citizens.", - "values": [ - "Freedom of religion and belief" - ] - }, - { - "text": "Abolish the death penalty and commute to prison terms the death sentences already pronounced", - "values": [ - "Death penalty" - ] - }, - { - "text": "Enact legislation to ensure the ability of all Swazi citizens, regardless of their sex, to confer citizenship upon their children", - "values": [ - "Rights of the Child", - "Statelessness and the right to nationality", - "Women's rights" - ] - }, - { - "text": "Continue carrying out its sound public policies for drinking water and sanitation coverage for all its population, which have already allowed to surpass the seventh Millennium Development Goal ", - "values": [ - "Right to water and sanitation" - ] - }, - { - "text": "Increase the legal measures aimed at guaranteeing due process and the impartiality in the administration of justice, including the independence of judges and the Bar Association, paying special attention to the recommendations concerning the death penalty formulated by the Human Rights Committee, especially in relation to juvenile offenders", - "values": [ - "Death penalty", - "Justice", - "Rights of the Child", - "Treaty bodies" - ] - }, - { - "text": "Continue cooperation with the International Criminal Tribunal for the Former Yugoslavia until the facts of the serious violations of human rights that occurred in the region during the 1990s have been clarified", - "values": [ - "Justice" - ] - }, - { - "text": "Re-launch the dialogue between government and media representatives with a view to encouraging pluralism in the media and strengthening the right of everybody to seek, receive and impart information and ideas of all kinds, without interference by public authority", - "values": [ - "Freedom of the press" - ] - }, - { - "text": "Continue providing training and implementing measures to tackle trafficking in persons, paying particular attention to the promotion and protection of the rights of the child", - "values": [ - "Human rights education and training", - "Rights of the Child", - "Trafficking" - ] - }, - { - "text": "The Government is committed to ensuring a rapid and efficient transition to a two tier government under which county governments will assume full responsibility of the functions assigned to them under the constitution.", - "values": [ - "Other" - ] - }, - { - "text": "Continue efforts to promote and protect the rights of women and children", - "values": [ - "Rights of the Child", - "Women's rights" - ] - }, - { - "text": "Recognize the legitimacy of the work of human rights defenders and provide them with protection, and avoid arbitrary arrests and reprisals, investigate threats or attacks against them and bring those responsible to justice", - "values": [ - "Detention", - "Human rights defenders" - ] - }, - { - "text": "Take measures in conformity with its legislative process for the ratification of the human rights instruments it has already signed.", - "values": [ - "International instruments" - ] - }, - { - "text": "Adopt the proposed amendments to the Code of Criminal Procedure to ensure respect for guarantees and safeguards in detention", - "values": [ - "Detention" - ] - }, - { - "text": "Strengthen measures to prevent and protect from trafficking in persons", - "values": [ - "Trafficking" - ] - }, - { - "text": "Recognise the importance of Island of Balliceaux for the Garifuna people as a site of remembrance, and ensure and promote the relations of those people with the Island as noted by the Special Rapporteur on Cultural Rights", - "values": [ - "ESC rights - general", - "Indigenous peoples", - "Special procedures" - ] - }, - { - "text": "Continue implementing comprehensive social assistance programmes, aiming at reducing poverty and inequalities in the distribution of income ", - "values": [ - "Poverty" - ] - }, - { - "text": "Take further steps to address and implement measures to decrease the wage gap between men and women", - "values": [ - "Women's rights" - ] - }, - { - "text": "Pursue the consolidation, in a decisive manner, of an educational system which is increasingly in line with the needs and specificities of its population, as the only way of making progress towards social development and welfare, towards which the international community should provide its assistance and cooperation ", - "values": [ - "Development", - "Right to education", - "Technical assistance and cooperation" - ] - }, - { - "text": "Reform its relevant legislation to provide for the full enjoyment of the right to freedom of expression, the right to the freedom of assembly and the right to freedom of association ", - "values": [ - "Freedom of association and peaceful assembly", - "Freedom of opinion and expression" - ] - }, - { - "text": "Consider withdrawing, as soon as possible, its reservation to the Convention on the Elimination of All Forms of Discrimination against Women and to ensure that its national law and practice is in conformity with it", - "values": [ - "International instruments", - "Statelessness and the right to nationality", - "Women's rights" - ] - }, - { - "text": "Continue the efforts in the fight against racism, racial discrimination, xenophobia and related forms of intolerance, including mild and underlying forms of racism ", - "values": [ - "Racial discrimination" - ] - }, - { - "text": "Consider ratifying the CRPD, along with the two Optional Protocols to the CRC, to which it is a signatory", - "values": [ - "Disabilities", - "International instruments", - "Rights of the Child" - ] - }, - { - "text": "The Government is committed to bringing any person involved in a corruption case before the competent judicial authority, regardless of his or her professional rank or status in society", - "values": [ - "Corruption" - ] - }, - { - "text": "Ratify ICERD and ICESCR ", - "values": [ - "ESC rights - general", - "International instruments", - "Racial discrimination" - ] - }, - { - "text": "Take measures to improve the condition of religious/ethnic minorities respecting their human rights and ensuring they are not denied the right of citizenship or subject to discrimination, in a manner consistent with international standards", - "values": [ - "Freedom of religion and belief", - "Minorities", - "Racial discrimination", - "Statelessness and the right to nationality" - ] - }, - { - "text": "Support the social integration of women in all spheres of life", - "values": [ - "Women's rights" - ] - }, - { - "text": "Consider replying favourably to the requests for a visit of the Special Rapporteur on the independence of judges and lawyers and the Independent Expert on minority issues ", - "values": [ - "Justice", - "Minorities", - "Special procedures" - ] - }, - { - "text": "Reference is made to the commitments made by Romania to launch a National Plan of Action for Human Rights, as announced by the Head of Delegation in the introductory statement ", - "values": [ - "General" - ] - }, - { - "text": "Ratify the Optional Protocol to the Convention against Torture and Other Cruel, Inhuman or Degrading Treatment or Punishment and present the most delayed reports, particularly on the Convention on the Elimination of All Forms of Racial Discrimination and on the two International Covenants ", - "values": [ - "CP rights - general", - "Detention", - "ESC rights - general", - "International instruments", - "Racial discrimination", - "Torture and other CID treatment" - ] - }, - { - "text": "Continue the active fight against domestic violence and violence against women, paying special attention to preventive and prophylactic measures", - "values": [ - "Rights of the Child", - "Women's rights" - ] - }, - { - "text": "Immediately and unconditionally release all persons currently detained for the reason of homosexuality alone ", - "values": [ - "Sexual Orientation and Gender Identity" - ] - }, - { - "text": "Provide the National Human Rights Commission with the necessary resources to ensure that it is fully operational and effective ", - "values": [ - "National Human Rights Institution" - ] - }, - { - "text": "Adopt the necessary measures to advance in its fight against discrimination, especially discrimination against ethnic minorities and migrants, and suppress the existing patriarchal and gender stereotypes with respect to the functions and responsibilities of men and women in the family and the society ", - "values": [ - "Migrants", - "Minorities", - "Racial discrimination", - "Women's rights" - ] - }, - { - "text": "Integrate the legislative and legal provisions of the international human rights treaties ratified by the Gambia in its own legislation", - "values": [ - "International instruments" - ] - }, - { - "text": "Consider ratifying the International Convention on the Protection of the Rights of All Migrant Workers and Members of Their Families as well as ILO Convention no.189 ", - "values": [ - "International instruments", - "Labour", - "Migrants" - ] - }, - { - "text": "Disseminate information on the available remedies and expand its training programmes for judiciary and public officials to sensitize them to all forms of violence against women and measures to protect victims ", - "values": [ - "Human rights education and training", - "Women's rights" - ] - }, - { - "text": "Develop an effective, transparent and fair resettlement policy and process that is based on national consultations and international best practice and suspend all planned resettlements until this framework is in place ", - "values": [ - "Right to housing" - ] - }, - { - "text": "Continue efforts to establish a free and compulsory quality education for all children up to the age of 15", - "values": [ - "Right to education", - "Rights of the Child" - ] - }, - { - "text": "Establish an independent national preventive mechanism in accordance with the Optional Protocol to the Convention against Torture and Other Cruel, Inhuman or Degrading Treatment or Punishment", - "values": [ - "Detention", - "International instruments", - "Torture and other CID treatment" - ] - }, - { - "text": "Review criminal justice procedures to reduce the length of detention without trial and replace preliminary inquiries with sufficiency hearings in the High Court, reducing the time it takes to bring matters to trial ", - "values": [ - "Detention", - "Justice" - ] - }, - { - "text": "Eliminate existing gaps in the legislation governing the work of the High Council of Justice in order to make sure that its powers are balanced by adequate guarantees of transparency and accountability", - "values": [ - "Justice" - ] - }, - { - "text": "Strengthen its policies and measures on the promotion of gender equality in all socio-economic aspects as an effective tool to resolve unemployment and poverty", - "values": [ - "Development", - "ESC rights - general", - "Poverty" - ] - }, - { - "text": "Strengthen measures to promote access by persons with disabilities to employment in the public sector", - "values": [ - "Disabilities", - "Labour" - ] - }, - { - "text": "Encode in law the right to organize and bargain collectively", - "values": [ - "Freedom of association and peaceful assembly", - "Labour" - ] - }, - { - "text": "Modify or repeal article 230 of the Criminal Code in order to decriminalize same-sex relations between consenting adults", - "values": [ - "Sexual Orientation and Gender Identity" - ] - }, - { - "text": "Seek assistance from the international community to more comprehensively address adaptation measures to address the effects of climate change", - "values": [ - "Environment", - "Technical assistance and cooperation" - ] - }, - { - "text": "Agree on comprehensive legislation in a manner that all economic, social and cultural rights can be homogenously addressed by the Federal Government and the cantons, and guarantee effective judicial remedies for the violation of the rights enshrined therein", - "values": [ - "ESC rights - general" - ] - }, - { - "text": "Mental capacity legislation for ratification of the Convention on the Rights of Persons with Disabilities was progressing", - "values": [ - "Disabilities", - "International instruments" - ] - }, - { - "text": "Ensure that the National Human Rights Council is fully compliant with the Paris Principles", - "values": [ - "National Human Rights Institution" - ] - }, - { - "text": "Take the measures necessary to eliminate restrictions on freedom of worship", - "values": [ - "Freedom of religion and belief" - ] - }, - { - "text": "Take the necessary measures to eliminate the discrimination suffered by immigrants, particularly migrant workers ", - "values": [ - "Labour", - "Migrants" - ] - }, - { - "text": "Strengthen its policy on prevention and combat of child labour and on the full guarantee of the rights of the child, with special attention to children without parental care.", - "values": [ - "Labour", - "Rights of the Child" - ] - }, - { - "text": "Ratify the Convention against Torture and Other Cruel, Inhuman or Degrading Treatment or Punishment and its Optional Protocol, the International Convention for the Protection of All Persons from Enforced Disappearance and the Statute of the International Criminal Court ", - "values": [ - "Detention", - "Enforced disappearances", - "International instruments", - "Justice", - "Torture and other CID treatment" - ] - }, - { - "text": "Enact and enforce laws to reduce incidences of violence against women and girls", - "values": [ - "Rights of the Child", - "Women's rights" - ] - }, - { - "text": "Extend a standing invitation to all Human Rights Council special procedures", - "values": [ - "Special procedures" - ] - }, - { - "text": "Create a secure and enabling environment for civil society, notably by amending the Law 12-06 of 12 January 2012 to bring it into conformity with its Constitution and international obligations", - "values": [ - "Civil society", - "International instruments" - ] - }, - { - "text": "Guarantee freedom of movement for the Palestinian refugees and commit to the improvement of their employment ", - "values": [ - "Asylum-seekers - refugees", - "Development", - "Freedom of movement" - ] - }, - { - "text": "Undertake actions to prevent and combat domestic violence and define a date for ratification of the Council of Europe Convention on Preventing and Combating Violence against Women and Domestic Violence ", - "values": [ - "Women's rights" - ] - }, - { - "text": "Consider adhering to the Second Optional Protocol to the International Covenant on Civil and Political Rights aiming at the abolition of the death penalty ", - "values": [ - "Death penalty", - "International instruments" - ] - }, - { - "text": "Speed up ratification of the ICCPR.", - "values": [ - "CP rights - general", - "International instruments" - ] - }, - { - "text": "Give favourable consideration to the possibility of acceding to ICESCR and ICCPR ", - "values": [ - "CP rights - general", - "ESC rights - general", - "International instruments" - ] - }, - { - "text": "Continue to implement and consolidate programmes and measures aimed at reducing poverty, in particular through its Poverty Reduction Strategy ", - "values": [ - "Poverty" - ] - }, - { - "text": "Make enhanced efforts to combat discrimination against the Roma population to improve their access to education, housing, health and employment", - "values": [ - "Labour", - "Minorities", - "Racial discrimination", - "Right to education", - "Right to health", - "Right to housing" - ] - }, - { - "text": "Ensure equal access to justice and the exercise of political rights to people with disabilities", - "values": [ - "Disabilities", - "Justice" - ] - }, - { - "text": "Increase its efforts for the protection of civilians ", - "values": [ - "International humanitarian law" - ] - }, - { - "text": "Continue the efforts in order to mainstream the issue of human rights protection in its national development plan ", - "values": [ - "General" - ] - }, - { - "text": "Ratify the International Covenant on Economic, Social and Cultural Rights, the International Covenant on Civil and Political Rights and the International Convention on the Elimination of All Forms of Racial Discrimination", - "values": [ - "CP rights - general", - "ESC rights - general", - "International instruments", - "Racial discrimination" - ] - }, - { - "text": "Consider acceding to the Agreement on the Privileges and Immunities of the International Criminal Court ", - "values": [ - "International instruments", - "Justice" - ] - }, - { - "text": "Continue and strengthen efforts to provide quality education for all, especially free primary education for children and education for persons with disabilities", - "values": [ - "Disabilities", - "Right to education", - "Rights of the Child" - ] - }, - { - "text": "Strengthen efforts aimed at planning public policies for the of the rights of women through their active participation in the political, economic and social development of the country ", - "values": [ - "Women's rights" - ] - }, - { - "text": "Enact legislation prohibiting discrimination against lesbian, gay, bisexual, transgender and intersex persons, including removing laws criminalising same sex activity", - "values": [ - "Sexual Orientation and Gender Identity" - ] - }, - { - "text": "Take all measures necessary to abolish the death penalty and, as a first step, introduce a moratorium with a view to adhering to the resolutions of the General Assembly in this regard.", - "values": [ - "Death penalty" - ] - }, - { - "text": "Continue to implement policies for the development of its people, including measures taken for equal opportunities for women and persons with disabilities in the economic and social development of the country", - "values": [ - "Development", - "Disabilities", - "ESC rights - general", - "Women's rights" - ] - }, - { - "text": "Put an end to direct and indirect restrictions on freedom of expression and adopt appropriate measures, including legislative measures, to prevent any intimidation of journalists", - "values": [ - "Freedom of opinion and expression", - "Freedom of the press" - ] - }, - { - "text": "Review the cases of those sentenced under the now-abolished mandatory capital punishment for treason and murder and provide appropriate resentencing decisions", - "values": [ - "Death penalty" - ] - }, - { - "text": "Strengthen the fight against all forms of discrimination against women, in particular violence against women and girls by ensuring the strict and effective application of relevant laws and policies", - "values": [ - "Rights of the Child", - "Women's rights" - ] - }, - { - "text": "Take concrete measures to ensure the implementation and promotion of the United Nations Declaration on the Rights of Indigenous Peoples ", - "values": [ - "Indigenous peoples", - "International instruments" - ] - }, - { - "text": "Increase awareness of security forces on the respect for human rights during demonstrations, to ensure the right to peaceful assembly and freedom of expression and association", - "values": [ - "Freedom of association and peaceful assembly", - "Freedom of opinion and expression" - ] - }, - { - "text": "Establish a moratorium in order to abolish the capital punishment, and change those sentences to imprisonment and ratify the Second Optional Protocol to ICCPR ", - "values": [ - "Death penalty", - "International instruments" - ] - }, - { - "text": "Pursue efforts to prevent abuses committed by law enforcement forces and to improve prison conditions ", - "values": [ - "Detention", - "Human rights violations by state agents" - ] - }, - { - "text": "Continue its active engagement with the human rights mechanisms of United Nations for the promotion and protection of human rights", - "values": [ - "Special procedures", - "Treaty bodies", - "UPR process" - ] - }, - { - "text": "Collect and disaggregate data on violence against women so as to ensure a better assessment about the implementation of applicable legislation", - "values": [ - "Women's rights" - ] - }, - { - "text": "Accelerate the process of adopting specific legislation and a national action plan to combat all forms of violence against women, particularly those in vulnerable situations, including migrants, persons with disabilities and women in detention facilities", - "values": [ - "Detention", - "Disabilities", - "Migrants", - "Women's rights" - ] - }, - { - "text": "Strengthen domestic judicial and criminal law and its effective enforcement, with respect to the accountability and corresponding sanctions of those found responsible of grave/serious human rights violations during the internal conflict in Sierra Leone, while respecting due process ", - "values": [ - "Justice" - ] - }, - { - "text": "Ensure that domestic legislation conforms with the Convention on the Elimination of All Forms of Discrimination against Women and other human rights instruments, fully align its national legislation with the Rome Statute of the International Criminal Court and ratify the Optional Protocol to the Convention on the Rights of Persons with Disabilities", - "values": [ - "Disabilities", - "International instruments", - "Justice", - "Women's rights" - ] - }, - { - "text": "Continue with its socio-economic actions to combat poverty ", - "values": [ - "Poverty" - ] - }, - { - "text": "Effectively apply the law on intra-family violence to combat domestic violence and promote gender equality", - "values": [ - "Rights of the Child", - "Women's rights" - ] - }, - { - "text": "Intensify efforts to make segments of the society benefit from equitable economic growth ", - "values": [ - "Development" - ] - }, - { - "text": "Protect the rights of assembly and freedom of expression in the country ", - "values": [ - "Freedom of association and peaceful assembly", - "Freedom of opinion and expression" - ] - }, - { - "text": "Strengthen programmes aiming at the enjoyment of the fundamental rights of the Bolivian people", - "values": [ - "General" - ] - }, - { - "text": "Maintain its commitment and continue the actions undertaken to consolidate the democratic system based on the protection of its citizens' civil and political rights and the search for truth, justice and reparation in relation to the grievances of the past.", - "values": [ - "CP rights - general", - "Justice" - ] - }, - { - "text": "Consider ratification of the Geneva Conventions", - "values": [ - "International humanitarian law", - "International instruments" - ] - }, - { - "text": "Ensure safety of refugees and asylum seekers by also seeking international assistance", - "values": [ - "Asylum-seekers - refugees", - "Technical assistance and cooperation" - ] - }, - { - "text": "Continue its positive engagement in promoting equality between women and men by speeding up its voluntary programmes designed to increase the number of women on decision-making bodies", - "values": [ - "Women's rights" - ] - }, - { - "text": "Establish a national coordination system to solve the problem of violence against women", - "values": [ - "Women's rights" - ] - }, - { - "text": "Continue to adopt measures to further improve health-care services to ensure greater accessibility, especially in rural areas", - "values": [ - "Right to health" - ] - }, - { - "text": "Ensure that all anti-terrorism measures comply with international standards", - "values": [ - "Counter-terrorism" - ] - }, - { - "text": "The draft law on the provision of citizenship to children where the father is not a Bahraini citizen would be considered a priority.", - "values": [ - "Rights of the Child", - "Statelessness and the right to nationality" - ] - }, - { - "text": "Ensure access of persons with disabilities to education, employment, public transportation, health and political participation, and eliminate discriminatory laws and regulations", - "values": [ - "Disabilities", - "Labour", - "Right to education", - "Right to health" - ] - }, - { - "text": "Consider ratifying the International Covenant on Economic, Social and Cultural Rights, the Convention on the Rights of the Child and the Convention on the Elimination of All forms of Discrimination against Women", - "values": [ - "ESC rights - general", - "International instruments", - "Rights of the Child", - "Women's rights" - ] - }, - { - "text": "Repeal any unreasonable restrictions on freedom of expression particularly for the media", - "values": [ - "Freedom of opinion and expression", - "Freedom of the press" - ] - }, - { - "text": "Conduct thorough investigations into all allegations of extrajudicial executions, and ensure that those responsible are punished in accordance with the seriousness of the crimes committed and that witnesses are protected from any possible reprisals ", - "values": [ - "Extrajudicial executions", - "Justice" - ] - }, - { - "text": "Take measures to ensure the transparent, independent and impartial investigation of cases involving violence against women and girls", - "values": [ - "Rights of the Child", - "Women's rights" - ] - }, - { - "text": "Abolish the death penalty in the Criminal Code for all crimes and in all times, including war ", - "values": [ - "Death penalty" - ] - }, - { - "text": "Ratify the Kampala amendments to the Rome Statute, if possible with a view to contributing to the activation of the jurisdiction of the International Criminal Court over the crime of aggression at the beginning of 2017", - "values": [ - "International instruments", - "Justice" - ] - }, - { - "text": "Amend the Swedish Constitution so as to give explicit recognition to the Sami people ", - "values": [ - "Indigenous peoples" - ] - }, - { - "text": "Implement school meals programs and link them to local food production ", - "values": [ - "Right to education", - "Right to food" - ] - }, - { - "text": "Continue to intensify government action in providing better infrastructure for education ", - "values": [ - "Right to education" - ] - }, - { - "text": "Continue to strengthen efforts to reduce maternal and infant mortality, including by developing the midwifery workforce and making the services of skilled birth attendants available, accessible and, where necessary, free of charge ", - "values": [ - "Right to health", - "Rights of the Child", - "Women's rights" - ] - }, - { - "text": "Continue promoting human rights education and training at all educational levels ", - "values": [ - "Human rights education and training" - ] - }, - { - "text": "With regard to cooperation within human rights mechanisms: Fulfilment of the obligations under international treaties to which Viet Nam is a party, active participation in a number of United Nations human rights mechanisms, such as the Human Rights Council, the Third Committee of the United Nations General Assembly and the Economic and Social Council, continuance of dialogues on human rights with other countries and international organisations, consideration of inviting the Special Rapporteur on the Right to Food, the Independent Expert on the question of human rights and extreme poverty, the Special Rapporteur on the Right to Education and the Independent Expert on the Effects of foreign debt and other related international financial obligations of States on the full enjoyment of human rights, particularly economic, social and cultural rights to visit Viet Nam in the near future to have a better understanding of the country's situation and assist Viet Nam in better ensuring human rights in these areas,", - "values": [ - "ESC rights - general", - "International instruments", - "Poverty", - "Right to food", - "Special procedures" - ] - }, - { - "text": "Reform the electoral system and organize periodic and genuine multi-party elections, in accordance with international democratic standards ", - "values": [ - "Elections", - "Freedom of association and peaceful assembly" - ] - }, - { - "text": "That the services of the Children's Houses be available and accessible to all children up to the age of 18, and the due process of law be strengthened for victimized children by ensuring that they are interviewed within the 14-day statutory deadline ", - "values": [ - "Rights of the Child" - ] - }, - { - "text": "Implement effectively the Strategy for Equality between Women and Men covering the period 2014-2020", - "values": [ - "Women's rights" - ] - }, - { - "text": "Establish a national human rights institution to complete and complement the excellent national efforts made so far ", - "values": [ - "National Human Rights Institution" - ] - }, - { - "text": "In accordance with the recommendation of the People's Advocate, collect and administer accurate data and statistics regarding the blood feud phenomenon ", - "values": [ - "National Human Rights Institution", - "Public security" - ] - }, - { - "text": "Ensure due process is afforded to all persons accused of criminal offences, as well as protection from public persecution", - "values": [ - "Justice" - ] - }, - { - "text": "Include a definition for discrimination in the Constitution or other legislation ", - "values": [ - "Other" - ] - }, - { - "text": "Adopt concrete measures to prevent the segregation of Roma children and carry out educational campaigns to change the negative stereotypes against them and their families, within the framework of the national inclusive education policies", - "values": [ - "Human rights education and training", - "Minorities", - "Racial discrimination", - "Right to education", - "Rights of the Child" - ] - }, - { - "text": "Continue its efforts to implement legal protection measures for women-victims of all forms of violence by establishing a witness protection programme as it will increase their access to justice and their protection ", - "values": [ - "Justice", - "Women's rights" - ] - }, - { - "text": "Ensure concrete implementation of international human rights standards at all levels", - "values": [ - "International instruments" - ] - }, - { - "text": "Mozambique reaffirms its commitment to ensure a full realization of all human rights and principles enshrined in the light of its Constitutional Charter and other legal devices that do not contradict it.", - "values": [ - "General" - ] - }, - { - "text": "Continue efforts to design housing financing schemes for the care of the population working within the informal market economy", - "values": [ - "Right to housing" - ] - }, - { - "text": "Strengthen efforts to eliminate discrimination and racism, in line with paragraph 35 of the national report ", - "values": [ - "Racial discrimination" - ] - }, - { - "text": "End harassment and intimidation of journalists, human rights defenders and civil society activists ", - "values": [ - "Civil society", - "Freedom of the press", - "Human rights defenders" - ] - }, - { - "text": "Maintain its efforts for not applying death penalty", - "values": [ - "Death penalty" - ] - }, - { - "text": "Ratify the remaining international human rights conventions and continue without delay to harmonize its national legislation with the international obligations of the Lao People's Democratic Republic under the respective human rights conventions, and implement them in policy and practice and strengthen its legal complaints system to ensure that most vulnerable groups have effective access to justice", - "values": [ - "International instruments" - ] - }, - { - "text": "Consider ratifying the Convention Against Torture and Other Cruel, Inhuman or Degrading Treatment or Punishment (CAT).", - "values": [ - "International instruments", - "Torture and other CID treatment" - ] - }, - { - "text": "Finalize the ratification process for the International Covenant on Civil and Political Rights and incorporate into domestic law the provisions of the international conventions already ratified ", - "values": [ - "CP rights - general", - "International instruments" - ] - }, - { - "text": "Continue the efforts to eliminate discrimination against the Roma and carry out a major awareness campaign among the population regarding the situation of the Roma ", - "values": [ - "Human rights education and training", - "Minorities", - "Racial discrimination" - ] - }, - { - "text": "Take resolute measures to put an end, without further delay, to the continuing segregation of Roma children at school", - "values": [ - "Minorities", - "Racial discrimination", - "Right to education", - "Rights of the Child" - ] - }, - { - "text": "Implement the provisions of the Palermo Protocols ratified by Turkmenistan, in particular with a view to criminalizing trafficking in persons.", - "values": [ - "International instruments", - "Trafficking" - ] - }, - { - "text": "Take additional measures aimed at achieving the gender equality", - "values": [ - "Women's rights" - ] - }, - { - "text": "Harmonize its national law with country's obligations under the Rome Statute of the International Criminal Court, including acceding to the Agreement on the Privileges and Immunities of the Court ", - "values": [ - "International instruments", - "Justice" - ] - }, - { - "text": "Provide rehabilitation services, nutrition, adequate housing, attention to health and educational opportunities for children living on the street in conformity with recommendations of the Committee on the Rights of the Child", - "values": [ - "Right to education", - "Right to health", - "Right to housing", - "Rights of the Child", - "Treaty bodies" - ] - }, - { - "text": "Adopt measures at the federal level to prevent and punish excessive use of force by law enforcement officials against members of ethnic and racial minorities, including unarmed persons, which disproportionately affect Afro- American and undocumented migrants", - "values": [ - "Human rights violations by state agents", - "Migrants", - "Minorities", - "Racial discrimination" - ] - }, - { - "text": "Continue efforts to combat hate speech", - "values": [ - "Racial discrimination" - ] - }, - { - "text": "Continue with the efforts aimed at improving inclusion at all levels of education ", - "values": [ - "Right to education" - ] - }, - { - "text": "Strengthen its work to further deserve the title of "Humanitarian Leader" which was given to it by the Secretary-General Ban Ki-Moon", - "values": [ - "Other" - ] - }, - { - "text": "Adopt federal legislation against all forms of discrimination, with a clear definition of racial discrimination", - "values": [ - "Racial discrimination" - ] - }, - { - "text": "Strengthen national legislation with regard to the rights of domestic workers", - "values": [ - "Labour" - ] - }, - { - "text": "Continue the cooperation with the United Nations in the area of human rights", - "values": [ - "Technical assistance and cooperation" - ] - }, - { - "text": "Take the necessary measures to get the activities of the Haitian- Dominican Joint Commission going again ", - "values": [ - "Other" - ] - }, - { - "text": "Focus on the overall implementation of its non-discriminatory provisions and to extend them to include the grounds of sexual orientation and gender identity. The implementation of overall anti-discrimination policies in Turkey should include all forms of discrimination", - "values": [ - "Sexual Orientation and Gender Identity" - ] - }, - { - "text": "Norway converts this recommendation [1] into a voluntary commitment, as follows: "Norway will consider the possibility of signing and ratifying the OP-CESCR after having completed a study of its legal implications. The study is expected to be completed within a year."", - "values": [ - "ESC rights - general", - "International instruments" - ] - }, - { - "text": "Allow foreign assistance to support safe abortion services, where legal in the host country. This should apply as a minimum in the cases of rape, incest and life endangerment, as is also permitted by existing United States federal law", - "values": [ - "Women's rights" - ] - }, - { - "text": "Continue ongoing efforts aimed at strengthening protection and respect for all human rights of indigenous people and people of African descent without discrimination", - "values": [ - "Indigenous peoples", - "Minorities", - "Racial discrimination" - ] - }, - { - "text": "Continue its efforts in the areas of population awareness programmes, and training of public officers on the rights of asylum-seekers and refugees ", - "values": [ - "Asylum-seekers - refugees", - "Human rights education and training" - ] - }, - { - "text": "Adopt measures to guarantee access to basic services, as well as the investigation of allegations of human rights violations in camps for internally displaced persons", - "values": [ - "Internally displaced persons" - ] - }, - { - "text": "Continue to resist attempts to enforce any values or standards beyond the universally agreed ones.", - "values": [ - "Other" - ] - }, - { - "text": "Continue the practice of strengthening the Office of the Human Rights Commissioner in compliance with the Paris Principles", - "values": [ - "National Human Rights Institution" - ] - }, - { - "text": "Ratify the Hague Convention on Protection of Children and Co-operation in Respect of Intercountry Adoption", - "values": [ - "International instruments", - "Rights of the Child" - ] - }, - { - "text": "Ensure early presentation of the report on the implementation of the Law for the Elimination of Violence against Women, effective and nation-wide implementation of that Law and comprehensive collection of data, monitoring and evaluation to further identify weaknesses in implementation, and to ensure continuing conformity of the law for the Elimination of Violence against Women with CEDAW ", - "values": [ - "International instruments", - "Women's rights" - ] - }, - { - "text": "Take further efforts to promote the participation of women in public life ", - "values": [ - "Women's rights" - ] - }, - { - "text": "Carry out the legal reforms necessary to ensure an independent judiciary ", - "values": [ - "Justice" - ] - }, - { - "text": "Further intensify the already laudable steps being taken to improve the conditions of juvenile detention ", - "values": [ - "Detention", - "Rights of the Child" - ] - }, - { - "text": "Strengthen measures aimed at protecting children against violence and all kinds of sexual exploitation", - "values": [ - "Rights of the Child" - ] - }, - { - "text": "Continue to promote and defend initiatives in favour of developing countries, especially in the area of the full realization of the right to development", - "values": [ - "Development" - ] - }, - { - "text": "Take active steps to amend or repeal all discriminatory provisions that prevent women acquiring, retaining and transferring citizenship on equal basis with men and ensure the effective implementation of the provisions of the Convention on the Elimination of All Forms of Discrimination against Women", - "values": [ - "International instruments", - "Statelessness and the right to nationality", - "Women's rights" - ] - }, - { - "text": "Continue promoting the freedom of religious belief and safeguarding social and religious harmony among its people", - "values": [ - "Freedom of religion and belief" - ] - }, - { - "text": "Continue to organize awareness-raising campaigns in cooperation with concerned stakeholders to fight harmful traditional practices touching on the rights of women and children", - "values": [ - "Human rights education and training", - "Rights of the Child", - "Torture and other CID treatment", - "Women's rights" - ] - }, - { - "text": "Facilitate the ICRC access to prisons ", - "values": [ - "Detention" - ] - }, - { - "text": "Revitalize the National Child Rights Committee and allocate it sufficient resources for the carrying out of its mandate", - "values": [ - "Rights of the Child" - ] - }, - { - "text": "Continue efforts to promote and protect the human rights of the vulnerable ", - "values": [ - "Minorities" - ] - }, - { - "text": "Continue to expand support services for older persons to enhance their participation in society", - "values": [ - "Other" - ] - }, - { - "text": "Strengthen its national policy on HIV/AIDS and ensure that young people are educated and engaged about safe sex and reproductive health practices", - "values": [ - "HIV - Aids", - "Right to health" - ] - }, - { - "text": "Make efforts to eliminate the large gap that exists between the rich and the poor ", - "values": [ - "Development", - "Poverty" - ] - }, - { - "text": "Ease registration procedures for independent political parties and for independent national and international NGOs before Parliamentary and Presidential elections", - "values": [ - "Civil society", - "Elections", - "Freedom of association and peaceful assembly" - ] - }, - { - "text": "Give its full support to ensure that the Constituent Assembly successfully fulfils its mandate of drafting a new Constitution by May 2011, giving due consideration to the views of the different groups that compose Nepalese society", - "values": [ - "Other" - ] - }, - { - "text": "Continue pursuing measures aimed at improving police accountability and prioritizing alleged instances of misconduct ", - "values": [ - "Human rights violations by state agents" - ] - }, - { - "text": "Improve further the registration system and support it by awareness raising activities, in order to sustain the rise in registration numbers", - "values": [ - "Other" - ] - }, - { - "text": "In accordance with recommendations made by CEDAW, take all appropriate measures in order to eliminate all forms of discrimination against rural women and harmful traditional practices ", - "values": [ - "Torture and other CID treatment", - "Treaty bodies", - "Women's rights" - ] - }, - { - "text": "Enhance human rights training for police forces and ensure their accountability for respecting human rights ", - "values": [ - "Human rights education and training" - ] - }, - { - "text": "Improve detention facilities and overall detention conditions, also by means of training law enforcement officials in human rights.", - "values": [ - "Detention", - "Human rights education and training" - ] - }, - { - "text": "Extend an invitation to the Special Rapporteur on violence against women to visit Papua New Guinea", - "values": [ - "Special procedures", - "Women's rights" - ] - }, - { - "text": "Consolidate the constitution building and democratization process by accommodating all sections of Nepal to enable broad-based ownership and participation", - "values": [ - "General" - ] - }, - { - "text": "Enact into law the "Sexual Offences and Domestic Violence Bill" without further delay", - "values": [ - "Rights of the Child", - "Women's rights" - ] - }, - { - "text": "Complete the reviews under way to update labour legislation, giving particular attention to issues of harassment in the workplace.", - "values": [ - "Labour" - ] - }, - { - "text": "Swiftly ratify the Convention against Torture and Other Cruel, Inhuman or Degrading Treatment or Punishment as well as the Optional Protocol thereto ", - "values": [ - "Detention", - "International instruments", - "Torture and other CID treatment" - ] - }, - { - "text": "Continue strengthening protection of the rights of persons with disabilities, particularly through approving a national disability strategy, which particularly focuses on boys, girls and women with disabilities", - "values": [ - "Disabilities", - "Rights of the Child", - "Women's rights" - ] - }, - { - "text": "Ratify the International Convention for the Protection of All Persons from Enforced Disappearance, the Convention against Torture and its Optional Protocol", - "values": [ - "Detention", - "Enforced disappearances", - "International instruments", - "Torture and other CID treatment" - ] - }, - { - "text": "Engage closely with civil society in the follow-up on the recommendations of the Human Rights Council", - "values": [ - "CP rights - general", - "Special procedures", - "UPR process" - ] - }, - { - "text": "Continue the promotion of the rights of women", - "values": [ - "Women's rights" - ] - }, - { - "text": "Bring in line the definition of racial discrimination in federal and state legislation with the provisions of the International Convention on the Elimination of All Forms of Racial Discrimination", - "values": [ - "International instruments", - "Racial discrimination" - ] - }, - { - "text": "Continue efforts to improve the human rights situation.", - "values": [ - "General" - ] - }, - { - "text": "Call for and support amending the Law on Migration to comply with ICCPR obligations ", - "values": [ - "International instruments", - "Migrants" - ] - }, - { - "text": "Pursue "hate speech" offences more vigorously by not only condemning violations but also investigating, prosecuting and punishing violators in a consistent manner", - "values": [ - "Racial discrimination" - ] - }, - { - "text": "Consider pursuing ratification of more international human rights conventions", - "values": [ - "International instruments" - ] - }, - { - "text": "Stop the systemic use of ill-treatment and torture", - "values": [ - "Torture and other CID treatment" - ] - }, - { - "text": "Take advantage of the substantial expertise that civil society organizations represent, and consult regularly with them on human rights related policy documents ", - "values": [ - "Civil society" - ] - }, - { - "text": "Align its justice system for minors with the Convention on the Rights of the Child and other relevant norms", - "values": [ - "International instruments", - "Rights of the Child" - ] - }, - { - "text": "Advance in the implementation of the Guiding Principles on Business and Human Rights at the national level as a complement to Ecuador\u2019s efforts to establish a binding instrument on transnational corporations and human rights", - "values": [ - "Business and human rights" - ] - }, - { - "text": "Establish a national plan or programme that favour the full enjoyment of all the human rights by the women ", - "values": [ - "Women's rights" - ] - }, - { - "text": "Take all necessary measures to eradicate child labour and to enact and implement a suitable Action Plan", - "values": [ - "Labour", - "Rights of the Child" - ] - }, - { - "text": "Pursue vigorously the action plan for the Roma, including ensuring equal treatment and easy access to social services for them", - "values": [ - "Minorities" - ] - }, - { - "text": "Ensure effective application of gender equality legislation and the implementation of policy measures to achieve equality between men and women", - "values": [ - "Women's rights" - ] - }, - { - "text": "Withdraw the reservation to CEDAW, ratify the Optional Protocol to the Convention, and develop a comprehensive and effective preventive strategy against harmful traditional practices, including female genital mutilation, early marriage and gavage - force-feeding - ", - "values": [ - "International instruments", - "Rights of the Child", - "Torture and other CID treatment", - "Women's rights" - ] - }, - { - "text": "Take measures to ameliorate the effects of the displacement of civilians as a consequence of armed fighting, ensuring their return when zones have been pacified and adopting immediate measures for the restitution of lands and-or adequate compensation of those who have lost their lands.", - "values": [ - "Internally displaced persons", - "Right to land" - ] - }, - { - "text": "Ensure universal access to health care and services for all women, in particular migrant and elderly women ", - "values": [ - "Migrants", - "Right to health", - "Women's rights" - ] - }, - { - "text": "Update the Council by December 2013 on the progress of the launch of its national human rights institution, with specific reference to its adherence to the Paris Principles", - "values": [ - "National Human Rights Institution" - ] - }, - { - "text": "Continue its efforts to strengthen the rights of persons with disabilities and guarantee equal opportunities in the attainment of education by children with disabilities", - "values": [ - "Disabilities", - "Right to education", - "Rights of the Child" - ] - }, - { - "text": "Continue to take measures for the holding of public meetings and assemblies in keeping with the newly adopted laws of the country ", - "values": [ - "Freedom of association and peaceful assembly" - ] - }, - { - "text": "Issue a standing invitation to all special procedures of the Human Rights Council.", - "values": [ - "Special procedures" - ] - }, - { - "text": "Redouble efforts on ensuring gender equality and take measures to prevent gender discrimination ", - "values": [ - "Women's rights" - ] - }, - { - "text": "In consultation and cooperation with relevant partners, take appropriate measures to implement the National Plan of Action for Children ", - "values": [ - "Rights of the Child" - ] - }, - { - "text": "Refrain from adopting any legislation incompatible with freedom of association, particularly with regard to NGOs' access to funding, and facilitate, promote and protect the development of a framework for organizations and individuals working for the promotion and respect of human rights consistent with international law", - "values": [ - "Civil society", - "Freedom of association and peaceful assembly" - ] - }, - { - "text": "Extend a standing invitation to the special procedures", - "values": [ - "Special procedures" - ] - }, - { - "text": "Continue including young people in the democratic process through the commission established for this purpose", - "values": [ - "Other" - ] - }, - { - "text": "Ratify ICESCR ", - "values": [ - "ESC rights - general", - "International instruments" - ] - }, - { - "text": "Develop a comprehensive legislative framework for addressing the problem of racial discrimination and incitement to racial hatred, as recommended by CERD ", - "values": [ - "Racial discrimination", - "Treaty bodies" - ] - }, - { - "text": "Prohibit the execution of persons with mental and intellectual disabilities", - "values": [ - "Death penalty", - "Disabilities" - ] - }, - { - "text": "Continue to provide and facilitate the delivery of humanitarian assistance for internally displaced persons in areas of conflict in the country, and take comprehensive actions to stop further displacement", - "values": [ - "Internally displaced persons" - ] - }, - { - "text": "Continue efforts at protecting migrant workers and members of their families from exploitation", - "values": [ - "Labour", - "Migrants" - ] - }, - { - "text": "Strengthen the actions taken to combat discrimination against women in all areas", - "values": [ - "Women's rights" - ] - }, - { - "text": "Continue promoting the national human rights policies, especially in the field of economic, social and cultural rights, in order to improve the quality of life of its population, to alleviate the standard of living of the most vulnerable", - "values": [ - "ESC rights - general" - ] - }, - { - "text": "Continue to promote national reconciliation by preventing acts of violence and intimidation against religious and ethnic minorities, and by ensuring effective prosecution and punishment of perpetrators", - "values": [ - "Freedom of religion and belief", - "Justice", - "Minorities", - "Racial discrimination" - ] - }, - { - "text": "Follow up on and establish a national human rights institution", - "values": [ - "National Human Rights Institution" - ] - }, - { - "text": "Take more effective measures to combat racial discrimination and intolerance, including by promptly investigating and taking stern action against the perpetrators of hatred, racist and xenophobic acts and speeches, and against those who have desecrated the premises of worship and memorial landmarks", - "values": [ - "Racial discrimination" - ] - }, - { - "text": "Fully restore the rights and dignity of the Palestinian people, including their rights to life, to live in dignity, adequate food, housing, health, education as well as their freedom of movement.", - "values": [ - "Freedom of movement", - "Right to education", - "Right to food", - "Right to health", - "Right to housing" - ] - }, - { - "text": "This statement of support affirmed New Zealand's commitment to the common objectives of the Declaration and the Treaty of Waitangi, which continues to form the basis of the relationship between Maori and the Government.", - "values": [ - "Indigenous peoples" - ] - }, - { - "text": "Closely monitor the situation of other disadvantaged groups such as women migrant workers and women prisoners ", - "values": [ - "Detention", - "Labour", - "Migrants", - "Women's rights" - ] - }, - { - "text": "To strengthen its efforts for poverty eradication and to guarantee the right of education all over the country ", - "values": [ - "Poverty", - "Right to education" - ] - }, - { - "text": "Consider ratifying the Optional Protocol to the Convention against Torture and establish an effective national preventive mechanism in compliance with it.", - "values": [ - "Detention", - "International instruments", - "Torture and other CID treatment" - ] - }, - { - "text": "Ratify the International Covenant on Civil and Political Rights, the International Covenant on Economic, Social and Cultural Rights, the Convention against Torture and Other Cruel, Inhuman or Degrading Treatment or Punishment and the Optional Protocols to those respective treaties", - "values": [ - "CP rights - general", - "Death penalty", - "Detention", - "ESC rights - general", - "International instruments", - "Torture and other CID treatment" - ] - }, - { - "text": "Take further measures to improve the quality of the basic education system by increasing the number and the training of teachers, to increase the school attendance rate at the secondary level, to decrease drop-out rates, to combat child labour and to prevent discrimination against young girls", - "values": [ - "Labour", - "Right to education", - "Rights of the Child", - "Women's rights" - ] - }, - { - "text": "Increase the availability of preschool facilities in rural areas and ensure that members of the Roma community are not discriminated against and that they have equal access to education", - "values": [ - "Minorities", - "Racial discrimination", - "Right to education" - ] - }, - { - "text": "Finalize the process of implementation of the Bill drafted for the abolition of capital punishment", - "values": [ - "Death penalty" - ] - }, - { - "text": "Increase efforts to combat human trafficking, in particular by considering the development of comprehensive national legislation and an action plan to eradicate human trafficking and protect victims ", - "values": [ - "Trafficking" - ] - }, - { - "text": "Keep the momentum of political, socio-economic and administrative reform to comply with the socio-economic needs of the population", - "values": [ - "ESC rights - general" - ] - }, - { - "text": "Initiate or join public campaigns so as to encourage tolerance towards homosexual, bisexual and transsexual persons ", - "values": [ - "Human rights education and training", - "Sexual Orientation and Gender Identity" - ] - }, - { - "text": "Adopt appropriate plans or programmes to speed up the development of the country on the basis of the five priorities that it has established", - "values": [ - "Development" - ] - }, - { - "text": "Continue efforts in implementing its National Strategy on Gender Equality ", - "values": [ - "Women's rights" - ] - }, - { - "text": "Ensure that the National Plan for Integration of Persons with Disabilities has the necessary human, institutional and financial resources for its effective implementation", - "values": [ - "Disabilities" - ] - }, - { - "text": "Take steps to establish an A status national human rights institution", - "values": [ - "National Human Rights Institution" - ] - }, - { - "text": "Pay more attention to measures to promote interreligious dialogue and prevent all forms of discrimination as well as to ensure that citizens can live in safety", - "values": [ - "Freedom of religion and belief", - "Racial discrimination" - ] - }, - { - "text": "Continue retaining the moratorium on the use of the death penalty", - "values": [ - "Death penalty" - ] - }, - { - "text": "Accede to the Optional Protocol to the Convention against Torture and Other Cruel, Inhuman or Degrading Treatment or Punishment OP-CAT and establish its national preventive mechanism accordingly", - "values": [ - "Detention", - "International instruments", - "Torture and other CID treatment" - ] - }, - { - "text": "Pursue ongoing efforts to improve the living conditions of the prison population, especially in terms of vocational training and health care ", - "values": [ - "Detention" - ] - }, - { - "text": "Pursue its efforts in preventing and combating xenophobia.", - "values": [ - "Racial discrimination" - ] - }, - { - "text": "Further pursue efforts to pass a national law which would ensure a greater degree of protection for children ", - "values": [ - "Rights of the Child" - ] - }, - { - "text": "Repeal the death penalty from its legislation and, should this be unsuccessful, establish a moratorium on the death penalty ", - "values": [ - "Death penalty" - ] - }, - { - "text": "Continue to enhance and expand access to and the affordability of health-care services, with a specific emphasis on rural and remote areas, as well as most vulnerable groups ", - "values": [ - "Right to health" - ] - }, - { - "text": "Take further steps to promote an open and free press where journalists may report on a full spectrum of political, social and economic issues without fear of retribution", - "values": [ - "Freedom of the press" - ] - }, - { - "text": "Set up a new forum (type Joint Governance Assessment) that would allow the government to address the governance issues (including human rights) with development partners ", - "values": [ - "Other" - ] - }, - { - "text": "Withdraw all reservations with regard to CEDAW and CRC", - "values": [ - "International instruments", - "Rights of the Child", - "Women's rights" - ] - }, - { - "text": "Deepen the measures aimed at speeding up the progress of trials of the perpetrators of acts of genocide and crimes against humanity and provide due protection to the judges involved in these investigations", - "values": [ - "Justice" - ] - }, - { - "text": "Consider acceding to the OP-CEDAW, OP-CAT and the CRPD ", - "values": [ - "Detention", - "Disabilities", - "International instruments", - "Torture and other CID treatment", - "Women's rights" - ] - }, - { - "text": "Canada is committed to the promotion and implementation of the Convention on the Rights of the Child (CRC) and does so through a combination of constitutional protections and FPT legislative and administrative measures, in keeping with its longstanding approach.", - "values": [ - "International instruments", - "Rights of the Child" - ] - }, - { - "text": "Ensure equitable access to education and free education for all children, as well as to promote the rights of girls to education", - "values": [ - "Right to education", - "Rights of the Child", - "Women's rights" - ] - }, - { - "text": "Continue active and close cooperation with UN treaty bodies", - "values": [ - "Treaty bodies" - ] - }, - { - "text": "Persevere along its path and ask the international community to provide all the technical and financial support needed by Tuvalu during this process, particularly for the setting up of a national human rights institution in conformity with the Paris Principles. ", - "values": [ - "National Human Rights Institution", - "Technical assistance and cooperation" - ] - }, - { - "text": "Ensure throughout the country, protection and promotion of human rights in accordance with the first chapter of the recently promulgated Constitution of Transition and effectively criminalize the violations of such rights", - "values": [ - "General" - ] - }, - { - "text": "Continuously conduct nation-wide human rights awareness campaigns with specific emphasis on the right to life of people with albinism ", - "values": [ - "Human rights education and training", - "Minorities" - ] - }, - { - "text": "Continue its efforts to enhance labour rights and ensure the safety of workers, including giving full legislative expression of the principle of equal remuneration for men and women for work of equal value", - "values": [ - "Labour", - "Women's rights" - ] - }, - { - "text": "Effectively apply legal and other measures to protect Roma and other minorities from violence and police mistreatment.", - "values": [ - "Human rights violations by state agents", - "Minorities" - ] - }, - { - "text": "Ratify the Rome Statute of the International Criminal Court as well as the Optional Protocol to the Convention on the Elimination of All Forms of Discrimination against Women", - "values": [ - "International instruments", - "Justice", - "Women's rights" - ] - }, - { - "text": "Strengthen its specialized juvenile justice system and promote alternative measures to deprivation of liberty, with a view to the full reintegration of the child into the society ", - "values": [ - "Detention", - "Justice", - "Rights of the Child" - ] - }, - { - "text": "Ratify the Optional Protocol to CRC on the involvement of children in armed conflict (OP-CRC-AC) ", - "values": [ - "International humanitarian law", - "International instruments", - "Rights of the Child" - ] - }, - { - "text": "Adopt effective and comprehensive measures to prevent and eliminate all forms of violence against women and girls, and to intensify campaigns to raise awareness about the criminal nature of domestic violence", - "values": [ - "Human rights education and training", - "Rights of the Child", - "Women's rights" - ] - }, - { - "text": "Improve the facilities in the reception centres", - "values": [ - "Asylum-seekers - refugees", - "Migrants" - ] - }, - { - "text": "Review its legislation on the minimum age for child labour in order to avoid domestic exploitation", - "values": [ - "Labour", - "Rights of the Child" - ] - }, - { - "text": "Ensure that the new initiatives on health centres reach all districts of the Kingdom", - "values": [ - "Right to health" - ] - }, - { - "text": "Abolish the practice of prosecuting women for "moral crimes" ", - "values": [ - "Women's rights" - ] - }, - { - "text": "Enhance efforts in achieving gender equality", - "values": [ - "Women's rights" - ] - }, - { - "text": "Prohibit all corporal punishment of children in all settings and enact legislation to achieve this ", - "values": [ - "Rights of the Child", - "Torture and other CID treatment" - ] - }, - { - "text": "Continue working towards the recognition of indigenous peoples at the national level ", - "values": [ - "Indigenous peoples" - ] - }, - { - "text": "Take all necessary steps to prevent the new British Bill of Rights from leading to a decreased level of human rights protection", - "values": [ - "General" - ] - }, - { - "text": "Continue to seek assistance and cooperation, as it deems appropriate, to support ongoing initiatives to fulfil its various international human rights obligations and implement those recommendations which will be accepted during the current universal periodic review cycle", - "values": [ - "Technical assistance and cooperation", - "UPR process" - ] - }, - { - "text": "Continue to support economic development in the poor and the least developed countries and to contribute to the attainment of sustainable development in those countries ", - "values": [ - "Development" - ] - }, - { - "text": "Condemn all hate crimes, discrimination and racial profiling", - "values": [ - "Racial discrimination" - ] - }, - { - "text": "Women's and child development units will be established at the Divisional (sub-District) administrative level to ensure expeditious assistance to those in need with a special focus on the Northern and Eastern Provinces", - "values": [ - "Rights of the Child", - "Women's rights" - ] - }, - { - "text": "Abolish the "kafala" sponsorship system with regard to migrant domestic workers", - "values": [ - "Labour", - "Migrants" - ] - }, - { - "text": "Ratify the Convention relating to the Status of Refugees", - "values": [ - "Asylum-seekers - refugees", - "International instruments" - ] - }, - { - "text": "Adopt and implement legislation prohibiting Female Genital Mutilation FGM, and ensure that offenders are prosecuted and punished, and take legal and education measures to combat this practice", - "values": [ - "Human rights education and training", - "Rights of the Child", - "Torture and other CID treatment", - "Women's rights" - ] - }, - { - "text": "Consider adopting a law to prevent, punish and eradicate the violence against women", - "values": [ - "Women's rights" - ] - }, - { - "text": "Implement programmes and policies for the prevention of all forms of violence against children, including sexual exploitation and abuse, and to strengthen social recovery and reintegration of child victims", - "values": [ - "Rights of the Child" - ] - }, - { - "text": "Place greater emphasis on providing services for vulnerable, poor and homeless children and strengthen legislation against child pornography ", - "values": [ - "Rights of the Child" - ] - }, - { - "text": "Proceed with the establishment of a National Human Rights Commission ", - "values": [ - "National Human Rights Institution" - ] - }, - { - "text": "Create an environment of freedom of the media and encourage media outlets to project positive images of women and of the equal status and responsibilities of women and men in the private and public spheres", - "values": [ - "Women's rights" - ] - }, - { - "text": "Establish a NHRI in accordance with the Paris Principles through the legislative process.", - "values": [ - "National Human Rights Institution" - ] - }, - { - "text": "Guarantee, including within the draft constitutional reform announced on 3 May 2017, fundamental freedoms and the independence, integrity and efficiency of the justice system, in particular concerning the execution of the constitutional review", - "values": [ - "Justice" - ] - }, - { - "text": "Continue its efforts to improve detention conditions, especially those that aim at addressing the problem of overcrowding ", - "values": [ - "Detention" - ] - }, - { - "text": "Consider the possibility of establishing a national human rights institution in conformity with the Paris Principles.", - "values": [ - "National Human Rights Institution" - ] - }, - { - "text": "Continue with the efforts related to the protection of the rights of people with disabilities", - "values": [ - "Disabilities", - "Rights of the Child" - ] - }, - { - "text": "Confirm the de facto moratorium on the death penalty by definitively and de jure abolishing the death penalty in all circumstances ", - "values": [ - "Death penalty" - ] - }, - { - "text": "Impose an immediate moratorium on executions as a first step towards the abolition of the death penalty", - "values": [ - "Death penalty" - ] - }, - { - "text": "Amend privacy legislation so as to bring it in line with recommendations on video surveillance of 11 March 2009 by the Human Rights Commissioner of the Council of Europe", - "values": [ - "Privacy" - ] - }, - { - "text": "Continue improving the living standards of its people through guarantees of the broader implementation of economic, social and cultural rights", - "values": [ - "ESC rights - general" - ] - }, - { - "text": "Retroactively re-register the affected persons, in keeping with the relevant decisions of the Slovenian Constitutional Court from 1999 and 2003, to allow for the full enjoyment of their civil as well as their economic and social rights", - "values": [ - "CP rights - general", - "ESC rights - general", - "Statelessness and the right to nationality" - ] - }, - { - "text": "Consider ratification of the optional protocols of core international human right treaties it has already ratified or is in the process of ratifying", - "values": [ - "International instruments" - ] - }, - { - "text": "Intensify efforts ensuring demobilisation of all child soldiers, as well as to elaborate a plan of action with concrete time period to put an end to the recruitment and employment of child soldiers", - "values": [ - "International humanitarian law", - "Rights of the Child" - ] - }, - { - "text": "Continue its efforts to increase international cooperation in order to benefit from other experiences and best practices in the field of combating trafficking in persons", - "values": [ - "Trafficking" - ] - }, - { - "text": "Enact a law prohibiting torture and ratify the OP-CAT as the Uganda Human Rights Commission has recommended demonstrate real commitment by holding those accountable who have committed acts of torture and ensuring timely and adequate compensation to victims ", - "values": [ - "Detention", - "International instruments", - "National Human Rights Institution", - "Torture and other CID treatment" - ] - }, - { - "text": "Reinforce the legal and implementation infrastructure aimed at upholding the rights of women and children, and continue, with strengthened international support, its efforts to combat HIV-AIDS ", - "values": [ - "HIV - Aids", - "Rights of the Child", - "Women's rights" - ] - }, - { - "text": "Adopt an action plan for the employment of women and young people", - "values": [ - "Development", - "Women's rights" - ] - }, - { - "text": "Continue efforts to further strengthen the National Human Rights Commission and bring it in line with the Paris Principles ", - "values": [ - "National Human Rights Institution" - ] - }, - { - "text": "Consider amending the General Amnesty Act of 1993 which remains an obstacle to the punishment of serious human rights perpetrators", - "values": [ - "Justice" - ] - }, - { - "text": "Look into the possibility of creating a national human rights institution ", - "values": [ - "National Human Rights Institution" - ] - }, - { - "text": "Repeal the Printing Presses and Publication Act and take steps to ensure full respect and protection for freedom of opinion and expression", - "values": [ - "Freedom of opinion and expression", - "Freedom of the press" - ] - }, - { - "text": "Intensify its efforts to facilitate the participation of women in political and public affairs and fight stereotypes in relation to the role of women, particularly by raising the awareness of the population about the necessity of ensuring that women enjoy their rights", - "values": [ - "Human rights education and training", - "Women's rights" - ] - }, - { - "text": "The Swedish state's commitment to promote the Sami people%u2019s opportunities to preserve and develop their own cultural and community life was also strengthened. ", - "values": [ - "ESC rights - general", - "Indigenous peoples" - ] - }, - { - "text": "Continue policy to empower women and children", - "values": [ - "Rights of the Child", - "Women's rights" - ] - }, - { - "text": "Promptly submit responsive, non-discriminatory legislation to Parliament for property restitution seekers as mandated by the European Court of Human Rights decision from January 2011", - "values": [ - "Right to housing" - ] - }, - { - "text": "Investigate promptly and impartially all allegations of torture and ill-treatment and hold the perpetrators accountable", - "values": [ - "Torture and other CID treatment" - ] - }, - { - "text": "Adopt more innovative approaches to teen pregnancies and continued schooling of teen mothers through the sharing of experiences and best practices with partners", - "values": [ - "Right to health", - "Rights of the Child", - "Women's rights" - ] - }, - { - "text": "Hold parliamentary elections as early as possible", - "values": [ - "Elections" - ] - }, - { - "text": "Study the possibility of becoming party to the following international instruments: Optional Protocol to the International Covenant on Economic, Social and Cultural Rights the International Convention for the Protection of All Persons from Enforced Disappearance the International Convention on the Protection of the Rights of All Migrant Workers and Members of Their Families, Optional Protocol to the Convention against Torture and other Cruel, Inhuman or Degrading Treatment or Punishment", - "values": [ - "International instruments" - ] - }, - { - "text": "Ratify the Second Optional Protocol to the International Covenant on Civil and Political Rights, aiming at the abolition of the death penalty, declare an official moratorium to the death penalty and abolish it", - "values": [ - "Death penalty", - "International instruments" - ] - }, - { - "text": "It further committed itself to continue the dialogue with States and civil society, and acknowledged the importance of the UPR in the promotion and protection of human rights.", - "values": [ - "Civil society" - ] - }, - { - "text": "Promptly adopt appropriate legislation prohibiting excision and all forms of FGM and ensures that all those responsible for excision are duly punished.", - "values": [ - "Rights of the Child", - "Torture and other CID treatment", - "Women's rights" - ] - }, - { - "text": "Abolish the death penalty and ratify the Second Optional Protocol to ICCPR", - "values": [ - "Death penalty", - "International instruments" - ] - }, - { - "text": "Adopt the revised Penal Code - in keeping with the recommendation of the Convention on the Rights of the Child - which raises the age of criminal responsibility ", - "values": [ - "International instruments", - "Justice", - "Rights of the Child" - ] - }, - { - "text": "Set a minimum age for marriage under customary law, to be in line with the legal age of marriage determined by statutory law", - "values": [ - "Rights of the Child" - ] - }, - { - "text": "Take measures to ensure the independence of the judiciary, in particular by prosecuting and punishing with severe sanctions those responsible for acts undermining the independence or impartiality of judicial proceedings ", - "values": [ - "Justice" - ] - }, - { - "text": "Pursue the implementation of the recommendations of the Truth and Reconciliation Commission, in particular the fight against impunity, the implementation of the Comprehensive Reparations Plan and the effective implementation of the National Missing Persons Research Plan", - "values": [ - "Enforced disappearances", - "Impunity", - "Justice" - ] - }, - { - "text": "Take effective measures to eliminate the use of torture or other cruel, inhuman or degrading treatment or punishment on an urgent basis, investigate allegations of such acts and prosecute and punish all those responsible ", - "values": [ - "Torture and other CID treatment" - ] - }, - { - "text": "Continue with undertaking actions to promote the well-being of children by comprehensive suppression of violence against children", - "values": [ - "Rights of the Child" - ] - }, - { - "text": "Create specialized courts responsible exclusively for cases of domestic violence which are particularly problematic", - "values": [ - "Rights of the Child", - "Women's rights" - ] - }, - { - "text": "Continue and strengthen the ongoing efforts to ensure the well-being of prisoners and detainees in compliance with the Convention against Torture and other international standards. ", - "values": [ - "Detention", - "International instruments" - ] - }, - { - "text": "Analyse the possibility of ratifying the ICCPR", - "values": [ - "CP rights - general", - "International instruments" - ] - }, - { - "text": "Continue its efforts to mitigate the negative impact of the economic crisis on human rights and to urge the international lenders to support the Government's endeavours in this area", - "values": [ - "Development", - "ESC rights - general" - ] - }, - { - "text": "Include sexual orientation and gender identity as one of the forbidden grounds for discrimination as well as amending the norms relating to the criminalization of homosexual conduct between consenting persons", - "values": [ - "Sexual Orientation and Gender Identity" - ] - }, - { - "text": "Ratify and implement the Marrakesh Treaty to Facilitate Access to Published Works for Persons Who Are Blind, Visually Impaired, or Otherwise Print Disabled", - "values": [ - "Disabilities", - "International instruments" - ] - }, - { - "text": "Continue its active engagement with the human rights mechanisms of the United Nations for the protection and promotion of human rights ", - "values": [ - "Special procedures", - "Treaty bodies", - "UPR process" - ] - }, - { - "text": "Ensure that articles 70 and 71 of the Penal Code are not construed and applied so as to criminalize homosexuality", - "values": [ - "Sexual Orientation and Gender Identity" - ] - }, - { - "text": "Consider abolishing the death penalty or formalizing the current de facto moratorium", - "values": [ - "Death penalty" - ] - }, - { - "text": "Develop and implement independent and credible measures to ensure full respect for human rights in Western Sahara, including the freedom of expression and assembly", - "values": [ - "Freedom of association and peaceful assembly", - "Freedom of opinion and expression" - ] - }, - { - "text": "Extend a standing invitation for country visits ", - "values": [ - "Special procedures" - ] - }, - { - "text": "Strengthen cooperation with regional and international human rights mechanisms, and avail itself of international technical assistance and support, as appropriate, by relevant bodies in order to mitigate the insufficiency of human and financial resources ", - "values": [ - "Technical assistance and cooperation" - ] - }, - { - "text": "Turn the draft new Press Code into a significant progress on the area of freedom of opinion and expression ", - "values": [ - "Freedom of opinion and expression", - "Freedom of the press" - ] - }, - { - "text": "Enact a complete prohibition of all forms of torture into the 1988 Criminal Justice Act, including removals of so-called \u201cescape clauses\u201c", - "values": [ - "Torture and other CID treatment" - ] - }, - { - "text": "Make every effort to fully implement recommendations already made to Burundi during the first cycle of the UPR, related to combating impunity of persons responsible for acts of torture and to the carrying out of thorough independent and impartial investigation into all allegations of such crimes", - "values": [ - "Impunity", - "Torture and other CID treatment", - "UPR process" - ] - }, - { - "text": "Amend the provisions on libel and defamation so that they cannot be abused to prosecute human rights defenders and journalists", - "values": [ - "Freedom of opinion and expression", - "Freedom of the press", - "Human rights defenders" - ] - }, - { - "text": "Strengthen the role of the national human rights commission to allow it to perform its mandate", - "values": [ - "National Human Rights Institution" - ] - }, - { - "text": "Increase efforts to combat all forms of human trafficking, as previously recommended", - "values": [ - "Trafficking" - ] - }, - { - "text": "Examine, in the context of the reform regarding the Human Rights Commissioner, the transition from the institution of the ombudsman to the establishment of an independent national human rights institution, in conformity with the Paris Principles", - "values": [ - "National Human Rights Institution" - ] - }, - { - "text": "Continue to use Human Rights Advisers to the police in the future and share experiences on this measure with other interested States.", - "values": [ - "Human rights education and training" - ] - }, - { - "text": "Grant the Special Rapporteur on the situation of human rights in Myanmar unimpeded access to Rakhine state, including the internment camps, as well as any other requested meetings countrywide on her next visit", - "values": [ - "Special procedures" - ] - }, - { - "text": "Amidst reports of systematic instances of rape and sexual violence against women and children, prosecute rape as a crime of war in accordance with Security Council resolutions 1325 (2000) and 1820 (2008) ", - "values": [ - "Justice", - "Rights of the Child", - "Women's rights" - ] - }, - { - "text": "Share its best practices in the alleviation of poverty and establishment of the delicate balance between economic, social and cultural rights.", - "values": [ - "ESC rights - general", - "Poverty" - ] - }, - { - "text": "Ensure respect for human rights while combating terrorism by ensuring the right to a fair trial and due process and freedom of expression", - "values": [ - "Counter-terrorism", - "Freedom of opinion and expression" - ] - }, - { - "text": "Increase efforts to ensure the implementation of legislation prohibiting racist crimes in practice", - "values": [ - "Racial discrimination" - ] - }, - { - "text": "Amend the definition of discrimination contained in Law No. 20.609 to harmonize it with the recommendations of the Committee on the Elimination of All Forms of Discrimination against Women ", - "values": [ - "Treaty bodies", - "Women's rights" - ] - }, - { - "text": "Ratify the Indigenous and Tribal Peoples Convention, 1989 (No. 169)", - "values": [ - "Indigenous peoples", - "International instruments", - "Labour" - ] - }, - { - "text": "Further support the development of the health sector, paying special attention to rural areas where availability, accessibility, quality and use of health services remain limited, in an effort to further promote and protect the human rights of its people ", - "values": [ - "Right to health" - ] - }, - { - "text": "Expand media freedoms, particularly access to broadcast media, and implement the recommendations of the OSCE in regards to reversing the ban on foreign FM radio broadcasting", - "values": [ - "Freedom of the press" - ] - }, - { - "text": "Consider taking additional steps to promote economic development and a higher standard of living", - "values": [ - "Development" - ] - }, - { - "text": "Ratify the International Convention on the Elimination of All Forms of Racial Discrimination and the International Covenant on Civil and Political Rights", - "values": [ - "CP rights - general", - "International instruments", - "Racial discrimination" - ] - }, - { - "text": "Investigate, prosecute and punish all hate crimes against visible minorities, including Muslims, Afro-Swedes, Roma and Jews", - "values": [ - "Freedom of religion and belief", - "Minorities", - "Racial discrimination" - ] - }, - { - "text": "Avoid criminalization of migrants", - "values": [ - "Migrants" - ] - }, - { - "text": "Increase the availability of specialized services for the victims of forced labour and trafficking for sex, in partnership with civil society, including by implementing the dedicated victim assistance fund as required by law", - "values": [ - "Civil society", - "Labour", - "Trafficking" - ] - }, - { - "text": "Strengthen its cooperation on issues of extradition and guarantee the cooperation and responsiveness of financial institutions with regard to requests for recovering assets of illicit origin ", - "values": [ - "Other" - ] - }, - { - "text": "Consider the possibility of expressing its consent to ratify the ICRMW ", - "values": [ - "International instruments", - "Labour", - "Migrants" - ] - }, - { - "text": "Ratify the Optional Protocol to the Convention on the Rights of Persons with Disabilities and the first Optional Protocol to the International Covenant on Civil and Political Rights", - "values": [ - "CP rights - general", - "Disabilities", - "International instruments" - ] - }, - { - "text": "Re-enforce the promotion and protection of the civil and political rights and economic, social and cultural rights of persons who have returned to their regions of origin and are now minorities in those places", - "values": [ - "Minorities" - ] - }, - { - "text": "Ratify the ICCPR.", - "values": [ - "CP rights - general", - "International instruments" - ] - }, - { - "text": "Take all necessary measures to ensure the physical integrity of journalists and human rights defenders, including an explicit and published decision on instituting a federal investigation and prosecution in all cases involving violence against human rights defenders", - "values": [ - "Freedom of the press", - "Human rights defenders" - ] - }, - { - "text": "Introduce, as a matter of urgency, comprehensive, efficient measures to prevent and combat the widespread economic exploitation of children, in line with its international commitments, notably ILO Conventions No. 138 and 182", - "values": [ - "International instruments", - "Labour", - "Rights of the Child" - ] - }, - { - "text": "Provide them with the appropriate technical assistance in order to enhance their capacities in this aspect ", - "values": [ - "Technical assistance and cooperation" - ] - }, - { - "text": "Take measures to implement rulings from the Inter-American Court of Human Rights on land rights of indigenous communities in Paraguay", - "values": [ - "Indigenous peoples" - ] - }, - { - "text": "Continue to insist on making poverty reduction a priority and make efforts to improve people's living standards in order to achieve positive progress in ensuring the National Economic and Development Plan for Horizon 2020 ", - "values": [ - "Poverty" - ] - }, - { - "text": "Pursue its active participation in the international cooperation efforts to fight the trafficking against human beings ", - "values": [ - "Trafficking" - ] - }, - { - "text": "Pursue measures targeted at preventing trafficking in human beings and ensuring effective protection to victims, including by adopting a comprehensive anti-trafficking law", - "values": [ - "Trafficking" - ] - }, - { - "text": "Include in Armenia's legislation an explicit and comprehensive definition of discrimination against women, and improve legal provisions prohibiting discrimination against women ", - "values": [ - "Women's rights" - ] - }, - { - "text": "Eliminate the municipal citizen security policies in Lima that mention \u201ceradication of homosexuals\u201c from public spaces and consider investigation and prosecution of persons responsible for such calls for human rights violations", - "values": [ - "Sexual Orientation and Gender Identity" - ] - }, - { - "text": "Develop a national plan of action aimed at addressing the sale of children, child prostitution and child pornography, and to provide adequate human and financial resources for its implementation", - "values": [ - "Rights of the Child", - "Trafficking" - ] - }, - { - "text": "Continue to consolidate its successful measures towards the further advancing of its goal of reducing poverty by 20 per cent by 2020", - "values": [ - "Poverty" - ] - }, - { - "text": "Continue efforts to improve access to health care for all, particularly those in the most vulnerable categories, persons with disabilities and rural populations ", - "values": [ - "Disabilities", - "Right to health" - ] - }, - { - "text": "Expedite the process for ratifying the Convention on the Rights of Persons with Disabilities in line with Timor-Leste's National Action Plan for Persons with Disabilities 2014-2018", - "values": [ - "Disabilities", - "International instruments" - ] - }, - { - "text": "Continue these efforts to guarantee the respect of all human rights by members of the National Police ", - "values": [ - "Other" - ] - }, - { - "text": "Implement, as a party to the Protocol to the African Charter on Human and Peoples' Rights on the Rights of Women in Africa, the provisions related to medical abortion in cases of sexual assault, rape, incest and where the continued pregnancy endangers the mental and physical health of the mother or the life of the mother or the foetus", - "values": [ - "Women's rights" - ] - }, - { - "text": "Raise the legal minimum age of marriage to 18 years for girls", - "values": [ - "Rights of the Child", - "Women's rights" - ] - }, - { - "text": "Improve the access of women in rural areas to justice and activities that allow them and their families to improve their living standards ", - "values": [ - "Women's rights" - ] - }, - { - "text": "Avoid detaining asylum seekers and ensure all asylum seekers the right to lodge asylum applications at border-crossing points and in transit zones", - "values": [ - "Asylum-seekers - refugees", - "Detention", - "Freedom of movement" - ] - }, - { - "text": "Implement a public awareness campaign to promote the effective implementation of the law granting women the access to rural landownership (Law No. 034/2009/AN)", - "values": [ - "Right to land", - "Women's rights" - ] - }, - { - "text": "Continue its efforts to seek assistance from the international community for capacity-building and technical assistance in the context of human rights ", - "values": [ - "Technical assistance and cooperation" - ] - }, - { - "text": "Accede to and fully align its national legislation with the Rome Statute", - "values": [ - "International instruments", - "Justice" - ] - }, - { - "text": "Take further steps to eradicate all remaining expressions of racism, racial discrimination, xenophobia and related intolerance.", - "values": [ - "Racial discrimination" - ] - }, - { - "text": "Strengthen the fight against human trafficking in all forms, including by strengthening inter-agency coordination to combat cybersex in the community and by securing cooperation from the private sector to prevent and respond to child online abuse", - "values": [ - "Rights of the Child", - "Trafficking" - ] - }, - { - "text": "On child psychiatry, Luxembourg had pledged to increase the number and quality of its infrastructures for the therapeutic treatment of children with behaviour or mental disturbances. These efforts would be continued to guarantee high-quality child psychiatry reflecting the latest developments in medicine", - "values": [ - "Right to health", - "Rights of the Child" - ] - }, - { - "text": "Continue the implementation of the strategic plan for the development of literacy and non-formal education 2012-2016", - "values": [ - "Right to education" - ] - }, - { - "text": "Set up an independent national human rights institution in full compliance with the Paris Principles", - "values": [ - "National Human Rights Institution" - ] - }, - { - "text": "Consider, within its vision, acceding to other core human rights treaties, including ICERD ", - "values": [ - "International instruments", - "Racial discrimination" - ] - }, - { - "text": "The delegation stated that Liberia was committed to protecting the rights of Ebola survivors and orphans, and to improving the health-care system in the wake of the Ebola epidemic", - "values": [ - "Right to health" - ] - }, - { - "text": "Pay priority attention to education and training in the area of human rights for staff of the law enforcement bodies, courts and investigative bodies ", - "values": [ - "Human rights education and training" - ] - }, - { - "text": "Continue to provide support for African development, through the Tokyo International Conference on African Development process", - "values": [ - "Development", - "Technical assistance and cooperation" - ] - }, - { - "text": "Implement measures to promote inter-ethnic harmony and tolerance among the public at large, and continue the efforts to smoothen the reintegration of ethnic Serbs into Croatian society ", - "values": [ - "Other" - ] - }, - { - "text": "Work with the development partners to facilitate the implementation of the National Human Rights Action Plan", - "values": [ - "General" - ] - }, - { - "text": "Further cooperate with the conventional mechanisms of the United Nations and of the African Union", - "values": [ - "Technical assistance and cooperation" - ] - }, - { - "text": "Consider ratifying or acceding to the International Convention on the Protection of the Rights of All Migrant Workers and Members of Their Families", - "values": [ - "International instruments", - "Labour", - "Migrants" - ] - }, - { - "text": "Continue its work for the realization of human rights of the Roma population in the country and to focus on implementation of adopted strategies at a local level as well as on countering discrimination by private actors ", - "values": [ - "Minorities" - ] - }, - { - "text": "Continue with its efforts in further increasing the awareness of gender equality and equal opportunities and foster implementation of its national policies in this regard", - "values": [ - "Women's rights" - ] - }, - { - "text": "Establish a national human rights institution in accordance with the principles relating to the status of national institutions for the promotion and protection of human rights (the Paris Principles)", - "values": [ - "National Human Rights Institution" - ] - }, - { - "text": "Continue strengthening education measures and policies for the integration of Roma students in the education system, as well as strengthening literacy campaigns for the population", - "values": [ - "Minorities", - "Right to education" - ] - }, - { - "text": "Continue active cooperation with the international human rights monitoring mechanisms, including treaty bodies and special procedures of the for persons in detention, with involvement of public monitoring commissions ", - "values": [ - "Detention", - "Special procedures", - "Treaty bodies", - "UPR process" - ] - }, - { - "text": "Continue positive efforts to put an end to the prevailing insecurities and violence plaguing the country", - "values": [ - "Public security" - ] - }, - { - "text": "Continue efforts in allocating more resources to ensure the betterment of economic and social rights of citizens, in particular in the areas of poverty reduction, urban-rural equality, education, public services, etc. ", - "values": [ - "ESC rights - general", - "Poverty", - "Right to education" - ] - }, - { - "text": "Reinforce the action of the National Office against Racial Discrimination to ensure that it offers victims of acts of discrimination and intolerance in all its forms the most effective protection possible", - "values": [ - "Racial discrimination" - ] - }, - { - "text": "Provide necessary protection for the family as the natural and fundamental unit of the society", - "values": [ - "Other" - ] - }, - { - "text": "Promote, protect and respect the right to freedom of expression, assembly and association in compliance with country's international human rights obligations ", - "values": [ - "Freedom of association and peaceful assembly", - "Freedom of opinion and expression", - "International instruments" - ] - }, - { - "text": "Revise the policies that involve racial and ethnic profiling such as "stop and search" practice ", - "values": [ - "Racial discrimination" - ] - }, - { - "text": "Bolster its practical capacity to oversee the working and living conditions of foreign workers", - "values": [ - "Migrants" - ] - }, - { - "text": "Take all necessary measures to facilitate the visits requested by United Nations special procedures without further delay ", - "values": [ - "Special procedures" - ] - }, - { - "text": "Abstain from the adoption of legislation limiting freedom of association as protected by ICCPR, in particular legislation on "foreign agents"", - "values": [ - "Freedom of association and peaceful assembly", - "International instruments" - ] - }, - { - "text": "Develop social integration policies, especially for migrants and refugees", - "values": [ - "Asylum-seekers - refugees", - "Migrants" - ] - }, - { - "text": "Ratify the International Covenant on Economic, Social and Cultural Rights and its Optional Protocol ", - "values": [ - "ESC rights - general", - "International instruments" - ] - }, - { - "text": "Ensure full human rights legal protection throughout Micronesia", - "values": [ - "General" - ] - }, - { - "text": "Strengthen implementation of its Child Labour (Protection and Regulation) Act 1999", - "values": [ - "Labour", - "Rights of the Child" - ] - }, - { - "text": "Continue efforts to highlight the negative repercussions of both terrorism and unilateral coercive measures on national development plans and on the enjoyment of basic human rights by its citizens", - "values": [ - "Development", - "Public security" - ] - }, - { - "text": "Maintain a long-standing de facto moratorium on the death penalty, with a view to its abolition", - "values": [ - "Death penalty" - ] - }, - { - "text": "Ratify the Convention on the Rights of Persons with Disabilities and the International Convention for the Protection of All Persons from Enforced Disappearance", - "values": [ - "Disabilities", - "Enforced disappearances", - "International instruments" - ] - }, - { - "text": "Step up its efforts to strengthen the mechanisms to demobilize child soldiers and ensure their social reintegration, notably through family reunification and vocational training", - "values": [ - "International humanitarian law", - "Rights of the Child" - ] - }, - { - "text": "That the National Action Plan include concrete and time-bound steps to accelerate the process of full domestication of all international human rights treaties to which Nigeria is Party, with particular priority on the Convention on Elimination on All Forms of Discrimination against Women", - "values": [ - "International instruments", - "Women's rights" - ] - }, - { - "text": "Adopt a legislative framework to fight racism and discrimination, and implement educational, social and economic public policies to prevent discrimination", - "values": [ - "Racial discrimination" - ] - }, - { - "text": "Integrate human rights education into the national school curriculum, provide sufficient resources for human rights education and training of teachers and ensure that they receive training in topics such as sexual diversity, sexual rights, resilience, gender equality and consent", - "values": [ - "Human rights education and training", - "Sexual Orientation and Gender Identity" - ] - }, - { - "text": "Ratify the Optional Protocol to the Convention against Torture and Other Cruel, Inhuman or Degrading Treatments or Punishments, following its signature in 2003", - "values": [ - "Detention", - "International instruments", - "Torture and other CID treatment" - ] - }, - { - "text": "Adjust and specify the applicable conditions and stipulations for the adoption of compulsory measures such as arrest, release on bail pending trial and residential surveillance", - "values": [ - "Justice" - ] - }, - { - "text": "Accelerate the approval of the bill submitted to the Council of Ministers on prevention of enforced disappearances and repression of torture", - "values": [ - "Enforced disappearances", - "Torture and other CID treatment" - ] - }, - { - "text": "Abolish the death penalty, as previously recommended", - "values": [ - "Death penalty", - "UPR process" - ] - }, - { - "text": "Share its expertise in developing a Special Child's Rights Charter with other countries and continue its efforts in cooperation with international groups to advance this initiative", - "values": [ - "Rights of the Child" - ] - }, - { - "text": "Redouble efforts to address and abolish the death penalty in the context of the review process of the Constitution", - "values": [ - "Death penalty" - ] - }, - { - "text": "Include homeless children, especially from the vulnerable groups as priority beneficiaries into poverty reduction strategy", - "values": [ - "Poverty", - "Rights of the Child" - ] - }, - { - "text": "Complete the elaboration of the National Action Plan on the Rights of the Child and address, as a matter of priority, the issue of unaccompanied children", - "values": [ - "Rights of the Child" - ] - }, - { - "text": "Establish specific programmes to prevent dropout from school and support the continuation of studies", - "values": [ - "Right to education" - ] - }, - { - "text": "Ratify CAT-OP and establish a national preventive mechanism.", - "values": [ - "International instruments", - "Torture and other CID treatment" - ] - }, - { - "text": "Establish a national action plan for combating hate crimes, racism and negative stereotypes against people of African descent inside its territory, including appropriate programmes of public awareness that will address the problem of racism and Afro-phobia, in full consultation with those particularly affected", - "values": [ - "Human rights education and training", - "Minorities", - "Racial discrimination" - ] - }, - { - "text": "Expand in the acquisition of social services benefits from specialized organizations through agreements that are periodically renewed", - "values": [ - "ESC rights - general" - ] - }, - { - "text": "Strengthen policies promoting children's rights and the implementation of the Guidelines for the Alternative Care of Children, according to Human Rights Council resolution 11-7 and General Assembly resolution 64-142", - "values": [ - "Rights of the Child" - ] - }, - { - "text": "Ensure all human rights activists operating in the country, including individuals cooperating with United Nations human rights mechanisms, are spared harassment and intimidation ", - "values": [ - "Human rights defenders", - "Special procedures", - "Treaty bodies", - "UPR process" - ] - }, - { - "text": "Fully implement the Ghanaian Mental Health Authority\u2019s announcement that it will abolish inhumane treatment of mentally ill people in prayer camps", - "values": [ - "Right to health", - "Torture and other CID treatment" - ] - }, - { - "text": "Continue its efforts to find humane solutions for the illegal residents, including granting nationality to those who fulfil the applicable conditions and criteria ", - "values": [ - "Migrants", - "Statelessness and the right to nationality" - ] - }, - { - "text": "Ratify both the ICCPR and the ICESCR without restrictions and issue a standing invitation to the Special Rapporteurs to visit the country, especially those on human rights defenders, freedom of expression and independence of judges and lawyers", - "values": [ - "CP rights - general", - "ESC rights - general", - "International instruments", - "Special procedures" - ] - }, - { - "text": "Continue implementing measures to combat corruption ", - "values": [ - "Corruption" - ] - }, - { - "text": "Prosecute all presumed perpetrators of human rights violations", - "values": [ - "Justice" - ] - }, - { - "text": "Further enhance people's awareness of gender issues ", - "values": [ - "Human rights education and training", - "Women's rights" - ] - }, - { - "text": "Strengthen publicity campaigns on the non-acceptability of any human rights violations", - "values": [ - "Human rights education and training" - ] - }, - { - "text": "Sign and ratify the additional Protocol to the United Nations Convention against Transnational Organized Crime", - "values": [ - "International instruments", - "Trafficking" - ] - }, - { - "text": "Accede and ratify to the International Convention for the Protection of All Persons from Enforced Disappearance (CPED)", - "values": [ - "Enforced disappearances", - "International instruments" - ] - }, - { - "text": "Impose a moratorium on capital punishment and commute existing death sentences to imprisonment terms with a view to abolish the capital punishment entirely", - "values": [ - "Death penalty" - ] - }, - { - "text": "Follow-up on the recommendations of CEDAW, by renewing national efforts for gender equality, including through educational and sensitization campaigns", - "values": [ - "Human rights education and training", - "Treaty bodies", - "Women's rights" - ] - }, - { - "text": "Continue its process of consultation with civil society in its follow-up to the universal periodic review ", - "values": [ - "Civil society", - "UPR process" - ] - }, - { - "text": "Continue making efforts for the formulation of a national policy on gender ", - "values": [ - "Women's rights" - ] - }, - { - "text": "Continue to combat poverty, with due regard for socio-economic and regional disparities ", - "values": [ - "Poverty" - ] - }, - { - "text": "Continue efforts to prevent racist speech, violence and discrimination against vulnerable groups, including Roma, by fighting racially motivated crimes and countering the use of racist discourse in politics and the media", - "values": [ - "Minorities", - "Racial discrimination" - ] - }, - { - "text": "Withdraw its reservation to the Convention on the Rights of the Child, concerning the provision that detained children be separated from adults while in detention, as well as the reservation concerning refugee and asylum-seeking children", - "values": [ - "International instruments", - "Rights of the Child" - ] - }, - { - "text": "Sign and ratify the International Convention for the Protection of All persons from Enforced Disappearance.", - "values": [ - "Enforced disappearances", - "International instruments" - ] - }, - { - "text": "Investigate cases of cruel treatment by law enforcement officers during the arrest, custody and interrogation of suspects and ensure that the perpetrators are brought to justice", - "values": [ - "Human rights violations by state agents", - "Torture and other CID treatment" - ] - }, - { - "text": "Continue pursuing appropriate and efficient policies aimed at further improving access to education for socially disadvantaged children and consider, if necessary, the adoption of additional measures ", - "values": [ - "Right to education", - "Rights of the Child" - ] - }, - { - "text": "Consider signing and ratifying the International Convention on the Protection of the Rights of All Migrant Workers and Members of Their Families", - "values": [ - "International instruments", - "Labour", - "Migrants" - ] - }, - { - "text": "Establish a law on freedom of information in accordance with international standards ", - "values": [ - "Freedom of opinion and expression" - ] - }, - { - "text": "Ensure that all complaints regarding acts of torture and ill-treatment receive a prompt, impartial and effective investigation in accordance with the Istanbul Protocol and ensure that, in conformity with the Convention against Torture and Other Cruel, Inhuman or Degrading Treatment or Punishment, any statement made as a result of torture shall not be invoked as evidence in any proceedings", - "values": [ - "International instruments", - "Justice", - "Torture and other CID treatment" - ] - }, - { - "text": "Continue implementation of the package of important programmes aimed at the defending citizens' economic and social rights ", - "values": [ - "ESC rights - general" - ] - }, - { - "text": "Remove the exception of marital rape from the definition of rape in article 375 of the Penal Code, in line with the efforts already undertaken for the protection of women", - "values": [ - "Women's rights" - ] - }, - { - "text": "Accelerate the ongoing process to harmonize existing legislation with the Constitution", - "values": [ - "Justice" - ] - }, - { - "text": "Ensure equal protection of girls and boys from all forms of sexual abuse and exploitation ", - "values": [ - "Rights of the Child" - ] - }, - { - "text": "Adopt an overall policy and strategy and take action to eliminate gender stereotypes, gaps and all forms of discrimination that women still face", - "values": [ - "Women's rights" - ] - }, - { - "text": "Continue its efforts leading to national reconciliation", - "values": [ - "Justice" - ] - }, - { - "text": "Conduct prior consultations with indigenous communities, as required by international standards, in relation to all plans and projects that might affect them, in particular when it comes to large-scale projects such as hydroelectric dams and mining activities and regarding national plans and projects to reduce emissions from deforestation and forest degradation ", - "values": [ - "Business and human rights", - "Environment", - "Indigenous peoples" - ] - }, - { - "text": "Continue efforts to combat trafficking in women and children within the framework of implementing national legislation and international obligations", - "values": [ - "Rights of the Child", - "Trafficking", - "Women's rights" - ] - }, - { - "text": "Continue to find ways and means to increase investments by the public and private sectors in combating urban poverty", - "values": [ - "Poverty" - ] - }, - { - "text": "Continue the practice of constructive engagement by the country with relevant international human rights mechanisms ", - "values": [ - "Special procedures", - "Treaty bodies", - "UPR process" - ] - }, - { - "text": "Take steps to ensure adequate support and access to health-care facilities for those in rural areas", - "values": [ - "Right to health" - ] - }, - { - "text": "Continue efforts to combat criminal violence and to investigate and adjudicate all accusations of human rights violations, in particular regarding extrajudicial executions and the excessive use of force by civilian authorities", - "values": [ - "Extrajudicial executions", - "Human rights violations by state agents" - ] - }, - { - "text": "Seek, whenever needed, technical and financial assistance from the Office of the United Nations High Commissioner for Human Rights in order to submit the outstanding reports to the treaty bodies", - "values": [ - "Technical assistance and cooperation", - "Treaty bodies" - ] - }, - { - "text": "Continue to cooperate with human rights mechanisms, including the special rapporteur on Myanmar", - "values": [ - "Special procedures", - "Technical assistance and cooperation" - ] - }, - { - "text": "Continue efforts to strengthen access to quality education and health services, especially for the vulnerable segments of society", - "values": [ - "Minorities", - "Right to education", - "Right to health" - ] - }, - { - "text": "Adopt a comprehensive anti-discrimination legislation to prevent all forms of discrimination on the basis of ethnic, religious, sexual orientation or gender identity grounds", - "values": [ - "Freedom of religion and belief", - "Minorities", - "Racial discrimination", - "Sexual Orientation and Gender Identity" - ] - }, - { - "text": "Implement as soon as possible the 2014 National Human Rights Action Plan with easily measurable indicators", - "values": [ - "General" - ] - }, - { - "text": "Continue its efforts to increase women's representation in public and political life", - "values": [ - "Women's rights" - ] - }, - { - "text": "Open up independent inquiries on the excessive use of force during expulsions of persons from the territory of the Confederation", - "values": [ - "Human rights violations by state agents" - ] - }, - { - "text": "Continue to carry out comprehensive reviews and studies of the relevant laws in order to ensure the fulfilment of the right to freedom of opinion and expression and the right to peaceful assembly, in accordance with the relevant international human rights instruments to which Thailand is a party", - "values": [ - "Freedom of association and peaceful assembly", - "Freedom of opinion and expression", - "International instruments" - ] - }, - { - "text": "Continue efforts to provide education for persons with disabilities people and integrate them into society ", - "values": [ - "Disabilities", - "Right to education" - ] - }, - { - "text": "Adopt and implement specific legislation on gender equality", - "values": [ - "Women's rights" - ] - }, - { - "text": "Repeal all provisions giving rise to discrimination on the grounds of sexual orientation or gender identity and ensure the respect of the fundamental freedoms of all citizens", - "values": [ - "Sexual Orientation and Gender Identity" - ] - }, - { - "text": "Ensure that conditions of detention of death row inmates comply with international standards", - "values": [ - "Death penalty", - "Detention" - ] - }, - { - "text": "Amend the provisions of the Personal Status Law legalizing marriage of girls below the age of 15 and raise the minimum age to 18.", - "values": [ - "Rights of the Child" - ] - }, - { - "text": "Develop a strategy for preventing and combating all forms of violence against women.", - "values": [ - "Women's rights" - ] - }, - { - "text": "Adopt an appropriate law on national minorities", - "values": [ - "Minorities" - ] - }, - { - "text": "Continue and strengthen efforts carried out by the High Commission for Immigration and Intercultural Dialogue, particularly efforts to raise awareness of the need to combat racism, discrimination and intolerance", - "values": [ - "Freedom of religion and belief", - "Human rights education and training", - "Minorities", - "Racial discrimination" - ] - }, - { - "text": "Continue to promote women's rights as well as their participation in the society and decision making process", - "values": [ - "Women's rights" - ] - }, - { - "text": "Repeal or amend any laws that may constrain or limit a vibrant civil society, in line with international human rights obligations and the Constitution of Kenya", - "values": [ - "Civil society", - "Freedom of association and peaceful assembly", - "International instruments" - ] - }, - { - "text": "Continue to put in place practical measures to implement the revised framework at the national and local levels to achieve gender equality and combat discrimination against women", - "values": [ - "Women's rights" - ] - }, - { - "text": "Give more importance to the schooling of girls in its education programmes, which would certainly contribute to combat female genital mutilation.", - "values": [ - "Right to education", - "Rights of the Child", - "Torture and other CID treatment", - "Women's rights" - ] - }, - { - "text": "Continue the successful social policies on education and health for the benefit of women, girls and older persons", - "values": [ - "Right to education", - "Right to health", - "Rights of the Child", - "Women's rights" - ] - }, - { - "text": "Increase the age of criminal responsibility to a minimum of 12 years, in line with recommendations of the Committee on the Rights of the Child", - "values": [ - "Justice", - "Rights of the Child", - "Treaty bodies" - ] - }, - { - "text": "Work towards passing legislation that provides ethnic minorities and vulnerable groups, including women and persons with disabilities, protection from discrimination and legal recourse for victims of discrimination", - "values": [ - "Disabilities", - "Minorities", - "Racial discrimination", - "Women's rights" - ] - }, - { - "text": "Take effective measures to ensure the right of a person to enjoy freedom of religion and religious belief", - "values": [ - "Freedom of religion and belief" - ] - }, - { - "text": "Continue to take action in favor of free education so as to provide access to pre-school education for children from disadvantaged families ", - "values": [ - "Right to education", - "Rights of the Child" - ] - }, - { - "text": "Continue the process of ratification of international instruments, particularly those related to human rights, to which the country is not yet party", - "values": [ - "International instruments" - ] - }, - { - "text": "Waive the moratorium on granting licenses to radio and television broadcasters and the 2008 amendments to the Law on Television and Radio of 2000, and carry out legislative measures safeguarding the independence of the National Commission on Television and Radio and the Council on Radio and Public Television ", - "values": [ - "Freedom of the press" - ] - }, - { - "text": "Ensure the right to freedom of association and enable the registration of NGOs working on issues of sexual orientation and gender identity ", - "values": [ - "Civil society", - "Freedom of association and peaceful assembly", - "Sexual Orientation and Gender Identity" - ] - }, - { - "text": "Protect journalists and human rights defenders, and carry out investigations into any threats against them ", - "values": [ - "Freedom of the press", - "Human rights defenders" - ] - }, - { - "text": "Accomplish progressively human rights goals as set up by Human Rights Council Resolution 9-12", - "values": [ - "General" - ] - }, - { - "text": "Remove all reservations to the Convention on the Elimination of All Forms of Discrimination against Women", - "values": [ - "International instruments", - "Statelessness and the right to nationality", - "Women's rights" - ] - }, - { - "text": "Adopt a national action plan for children in order to cover all areas included in the Convention on the Rights of the Child ", - "values": [ - "International instruments", - "Rights of the Child" - ] - }, - { - "text": "Continue its efforts relating to human rights education and training, particularly for law enforcement agents ", - "values": [ - "Human rights education and training" - ] - }, - { - "text": "Continue active cooperation with international organizations on the provision of technical assistance to support people with disabilities", - "values": [ - "Disabilities", - "Technical assistance and cooperation" - ] - }, - { - "text": "Ensure full participation of ethnic groups and castes in the Constitution-making process, in particular in the Constituent Assembly", - "values": [ - "Minorities" - ] - }, - { - "text": "Consider favourably the inclusion of the outcome of the present review in the human rights national strategic plan referred to in paragraph 124 of the national report", - "values": [ - "General" - ] - }, - { - "text": "Amend the Penal Code with the provisions to ensure that perpetrators of honour crimes do not benefit from reduction of penalty and that these crimes are treated as other violent crimes in regard to investigation and prosecution", - "values": [ - "Rights of the Child", - "Women's rights" - ] - }, - { - "text": "Maintain efforts aimed at combating various forms of violence against women", - "values": [ - "Women's rights" - ] - }, - { - "text": "Continue partnerships with Member States and United Nations bodies as it deems necessary in furthering its efforts to ensure the independence of the judiciary", - "values": [ - "Justice", - "Technical assistance and cooperation" - ] - }, - { - "text": "Undertake awareness-raising campaigns to ensure the effective implementation of and respect for the laws of the State, in particular by ensuring the effective investigation and prosecution of honour killings and cases of violence, including domestic violence against women and children ", - "values": [ - "Human rights education and training", - "Rights of the Child", - "Women's rights" - ] - }, - { - "text": "Consider ratifying the International Covenant on Civil and Political Rights, the International Covenant on Economic, Social and Cultural Rights and the Convention against Torture and Other Cruel, Inhuman or Degrading Treatment or Punishment", - "values": [ - "CP rights - general", - "ESC rights - general", - "International instruments", - "Torture and other CID treatment" - ] - }, - { - "text": "Continue actions aimed at raising public awareness of the law on gender equality adopted in 2013 and implement the national programme on maternity without risk, in order to reduce significantly the risk of maternal mortality", - "values": [ - "Human rights education and training", - "Right to health", - "Women's rights" - ] - }, - { - "text": "Recognize conscientious objection to military service in law and practice and stop prosecuting, imprisoning and repeatedly punishing conscientious objectors", - "values": [ - "Freedom of religion and belief" - ] - }, - { - "text": "Establish a national human rights commission in conformity with the Paris Principles ", - "values": [ - "National Human Rights Institution" - ] - }, - { - "text": "Further strengthen measures to encourage the participation of women in the labour market and to ensure their right to equal remuneration ", - "values": [ - "Women's rights" - ] - }, - { - "text": "Continue efforts to strengthen measures to enhance the promotion and protection of human rights including social, political, economic and cultural rights ", - "values": [ - "CP rights - general", - "ESC rights - general" - ] - }, - { - "text": "Provide effective legal protection and fair compensation in case of violation of rights linked to acts of racial discrimination", - "values": [ - "Racial discrimination" - ] - }, - { - "text": "Consider revising relevant legislation on the matter of transfer of nationality from parents to children to ensure equal rights between men and women", - "values": [ - "Women's rights" - ] - }, - { - "text": "Continue the efforts at strengthening its national institutions for the promotion and protection of human rights and encourage awareness among its people of the importance of fairness and justice", - "values": [ - "Human rights education and training" - ] - }, - { - "text": "Adjust its national legislation to be compatible with the Comprehensive Peace Agreement and the Interim National Constitution adopted in 2005, especially the following laws and codes: National Security Act (2010), Press and Printing Act (2009), Volunteer and Humanitarian Work Act (2006), Criminal Code, Criminal Procedure Code ", - "values": [ - "Freedom of the press", - "International humanitarian law", - "Justice", - "Public security" - ] - }, - { - "text": "Amend laws that could contradict the Convention on the Rights of the Child", - "values": [ - "International instruments", - "Rights of the Child" - ] - }, - { - "text": "Ensure effective enforcement of the Trafficking in Persons Act and continue to combat trafficking in persons as well as arms smuggling and drug trafficking ", - "values": [ - "Trafficking" - ] - }, - { - "text": "Immediately stop the blockade on the Gaza Strip", - "values": [ - "Other" - ] - }, - { - "text": "Incorporate in national legislation the international human rights legal instruments to which Nigeria has acceded", - "values": [ - "International instruments" - ] - }, - { - "text": "Adopt measures targeted to remedy school dropouts", - "values": [ - "Right to education" - ] - }, - { - "text": "Adopt a higher standard regarding the protection of women's rights, both in legal terms and in implementation ", - "values": [ - "Women's rights" - ] - }, - { - "text": "Approve a plan of action to fight discrimination, and against any initiatives of political associations or groups that promote racism or xenophobia ", - "values": [ - "Racial discrimination" - ] - }, - { - "text": "Adopt a broad definition of discrimination against women in line with the Convention on the Elimination of All Forms of Discrimination against Women ", - "values": [ - "International instruments", - "Women's rights" - ] - }, - { - "text": "Share its experience regarding its innovative independent national mechanism for the prevention of torture, whose establishment could serve as an example of best practices in the fight against torture", - "values": [ - "Torture and other CID treatment" - ] - }, - { - "text": "Broaden the promotion of the use of language that is more in accordance with the Convention on the Rights of Persons with Disabilities, in particular continue advancing in the access to information through Braille, sign language, among others", - "values": [ - "Disabilities", - "International instruments" - ] - }, - { - "text": "Take the necessary measures to ensure sexual assault perpetrated by a spouse is explicitly covered by the criminal code and educate chiefs and other customary law practitioners so that their decisions are in line with constitutional law, particularly with respect to marriage and property rights ", - "values": [ - "Women's rights" - ] - }, - { - "text": "Provide the Zimbabwe Human Rights Commission with adequate financial and technical capacity and take concrete steps to ensure its independence, transparency and impartiality ", - "values": [ - "National Human Rights Institution" - ] - }, - { - "text": "Respond positively to visit requests by the special procedures of the Human Rights Council", - "values": [ - "Special procedures" - ] - }, - { - "text": "Continue the efforts aimed at adopting a national programme and plan of action in the field of human rights ", - "values": [ - "General" - ] - }, - { - "text": "Enhance efforts to guarantee freedom of speech and of the press and other media, and to ensure that complaints in this regard are promptly investigated and that the perpetrators are prosecuted and punished ", - "values": [ - "Freedom of opinion and expression", - "Freedom of the press" - ] - }, - { - "text": "Re-issue an invitation to the Special Rapporteur on Torture ", - "values": [ - "Special procedures", - "Torture and other CID treatment" - ] - }, - { - "text": "Intensify cooperation with United Nations mechanisms to, inter alia, address the issue of outstanding reports to various treaty bodies, and enhance cooperation with special procedures", - "values": [ - "Special procedures", - "Treaty bodies" - ] - }, - { - "text": "Continue applying the programs and measures aimed at guaranteeing health and education of quality for its citizens", - "values": [ - "Right to education", - "Right to health" - ] - }, - { - "text": "Consider ratifying other international human rights instruments to which it is not a party yet", - "values": [ - "International instruments" - ] - }, - { - "text": "Continue adopting new measures to combat discrimination in education and to protect minority groups ", - "values": [ - "Minorities", - "Racial discrimination", - "Right to education" - ] - }, - { - "text": "Ensure equal rights between women and men in areas such as work, education, public life and decision-making ", - "values": [ - "Women's rights" - ] - }, - { - "text": "Sign and ratify International Convention on the Protection of the Rights of All Migrant Workers and Members of Their Families", - "values": [ - "International instruments", - "Labour", - "Migrants" - ] - }, - { - "text": "Improve the performance of public institutions in the protection, promotion and fulfilment of human rights in the country", - "values": [ - "General" - ] - }, - { - "text": "Organise training courses relating to hate crimes for officers of law enforcement and the judicial system and raise public awareness about hate crimes to encourage them to report them", - "values": [ - "Human rights education and training", - "Justice", - "Racial discrimination" - ] - }, - { - "text": "Continue its important efforts to combat hate crime based on sexual orientation ", - "values": [ - "Sexual Orientation and Gender Identity" - ] - }, - { - "text": "Provide mandatory human rights education and training to police, prison and detention staff and members of the judiciary, including awareness-raising regarding the protection of the rights of minorities, women and children, and to ensure their accountability for any violation of human rights", - "values": [ - "Human rights education and training", - "Minorities", - "Rights of the Child", - "Women's rights" - ] - }, - { - "text": "Refrain from sentencing minors to death, in accordance with their international treaty obligations, and ultimately abolish the death penalty altogether ", - "values": [ - "Death penalty", - "Rights of the Child" - ] - }, - { - "text": "Ratify CRC and its Optional Protocols ", - "values": [ - "International instruments", - "Rights of the Child" - ] - }, - { - "text": "Continue the process of full alignment between its national legislation and all obligations under the Rome Statute", - "values": [ - "International instruments", - "Justice" - ] - }, - { - "text": "Accelerate the process of establishing a Truth and Reconciliation Commission", - "values": [ - "Justice" - ] - }, - { - "text": "Allow media and civil society organizations to undertake education, advocacy, monitoring and reporting on human rights issues ", - "values": [ - "Civil society", - "Freedom of the press" - ] - }, - { - "text": "Incorporate the results of this UPR into its action plans for the promotion and protection of all human rights, taking into account the proposals of civil society and present a midterm evaluation report to the Human Rights Council on the implementation of the recommendations of this session", - "values": [ - "Civil society", - "UPR process" - ] - }, - { - "text": "Refrain from targeting or restricting the activities of civil society organizations based on their political affiliation or their receipt of foreign funding", - "values": [ - "Civil society", - "Freedom of association and peaceful assembly" - ] - }, - { - "text": "Intensify its efforts to ensure absolute equality of rights and opportunities of women and girls vis-à-vis men and boys, according to international norms", - "values": [ - "Rights of the Child", - "Women's rights" - ] - }, - { - "text": "Take all necessary steps to halt all forced evictions in all locations under its control and particularly in Mogadishu", - "values": [ - "Right to housing" - ] - }, - { - "text": "Cease the institutionalized policy of executions and disappearances described in the reports of the Special Rapporteur", - "values": [ - "Death penalty", - "Enforced disappearances", - "Special procedures" - ] - }, - { - "text": "Develop and implement a comprehensive national action plan to prevent and address the consequences of child marriage by, inter alia, ensuring the investigation and prosecution of domestic violence against women and revising the legal incongruence concerning the minimum age of marriage", - "values": [ - "Rights of the Child", - "Women's rights" - ] - }, - { - "text": "Repeal all legal provisions that contravene international norms on freedom of expression, especially all insult laws and all norms that criminalize defamation of public officials and institutions ", - "values": [ - "Freedom of opinion and expression" - ] - }, - { - "text": "Intensify dialogue with the international community on the issue of ill treatment by submitting the reports due to the Committee against Torture.", - "values": [ - "Torture and other CID treatment", - "Treaty bodies" - ] - }, - { - "text": "Take measures to enforce the Inter-American Court sentences on the rights of indigenous peoples", - "values": [ - "Freedom of opinion and expression", - "Indigenous peoples" - ] - }, - { - "text": "Accelerate the adoption of the Code of the Child", - "values": [ - "Rights of the Child" - ] - }, - { - "text": "Prioritize the elimination of discrimination and violence against women", - "values": [ - "Women's rights" - ] - }, - { - "text": "Enhance measures to promote tolerance, intercultural dialogue and respect for diversity", - "values": [ - "Freedom of religion and belief", - "Minorities" - ] - }, - { - "text": "Carry out investigations into complaints and information on cruel treatments during the expulsions of foreigners from the Netherlands and ensure transparency when investigating such complaints", - "values": [ - "Migrants", - "Torture and other CID treatment" - ] - }, - { - "text": "Continue to implement its literacy plan at the national level to achieve the full elimination of illiteracy", - "values": [ - "Right to education" - ] - }, - { - "text": "Adopt effective measure to combat violence against Roma", - "values": [ - "Minorities" - ] - }, - { - "text": "Establish a national human rights institution in accordance with the Paris Principles.", - "values": [ - "National Human Rights Institution" - ] - }, - { - "text": "Accede to and fully align its national legislation with the Rome Statute of the International Criminal Court (ICC), including by incorporating provisions to cooperate promptly and fully with the ICC", - "values": [ - "International instruments", - "Justice" - ] - }, - { - "text": "Provide refugees and their families with identification certificates making sure that all children of refugees have access to education, and repeal restrictions on refugees' rights to own property, to work, to establish and incorporate businesses and to travel freely", - "values": [ - "Asylum-seekers - refugees", - "Freedom of movement", - "Labour", - "Right to education", - "Right to land", - "Rights of the Child" - ] - }, - { - "text": "Continue efforts to bring its legislation into line with the norms and principles of the overall protection system of children and adolescents.", - "values": [ - "Rights of the Child" - ] - }, - { - "text": "Undertake investigations on extrajudicial killings in order to bring the perpetrators to justice and to provide reparation to the victims or to their families", - "values": [ - "Extrajudicial executions" - ] - }, - { - "text": "Step up its cooperation with the United Nations by addressing a standing invitation to special procedures and present the overdue report on the implementation of the CRC ", - "values": [ - "Rights of the Child", - "Special procedures", - "Treaty bodies" - ] - }, - { - "text": "Continue focused efforts to address racism, discrimination and xenophobia", - "values": [ - "Racial discrimination" - ] - }, - { - "text": "Continue to take measures to fight all discrimination and stereotyping against women, in law and in practice, and, in this regard, ratify the Optional Protocol to the Convention on the Elimination of All Forms of Discrimination against Women", - "values": [ - "International instruments", - "Women's rights" - ] - }, - { - "text": "Ratify the Second Optional Protocol to the International Covenant on Civil and Political Rights with a view to the abolition of death penalty", - "values": [ - "Death penalty", - "International instruments" - ] - }, - { - "text": "Fast-track the process of accession to human rights instruments to which it is not party yet, wherever possible", - "values": [ - "International instruments" - ] - }, - { - "text": "Become a party of the international instruments of protection and promotion of human rights still pending ratification, as appropriate, such as the 1961 Convention on the Reduction of Statelessness ", - "values": [ - "International instruments", - "Statelessness and the right to nationality" - ] - }, - { - "text": "Adopt and implement further measures in order to contrast discrimination against women, prevent and punish episodes of violence against women and eradicate harmful practices such as female genital mutilations and early and forced marriages ", - "values": [ - "Rights of the Child", - "Torture and other CID treatment", - "Women's rights" - ] - }, - { - "text": "Continue to support its policy to promote dialogue among religions and civilizations through strengthening the role of the World Centre for Mediation and reinforcing the culture of tolerance and coexistence in the world ", - "values": [ - "Freedom of religion and belief" - ] - }, - { - "text": "Continue with its policy and its good practice to provide assistance and protect the rights of the many Palestinian refugees in the country ", - "values": [ - "Asylum-seekers - refugees" - ] - }, - { - "text": "Take all appropriate measures to protect children effectively from being exposed to violence, racism and pornography through mobile technology, video movies, games and other technologies, including the Internet ", - "values": [ - "Rights of the Child" - ] - }, - { - "text": "Submit as soon as possible its initial report to CAT ", - "values": [ - "Torture and other CID treatment", - "Treaty bodies" - ] - }, - { - "text": "Follow through on creating an advisory council to address discrimination, to adopt comprehensive anti-discrimination legislation, as recommended by the Committee on Economic, Social and Cultural Rights in 2007.", - "values": [ - "ESC rights - general", - "Treaty bodies" - ] - }, - { - "text": "Comply with the judgements of the European Court of Human Rights concerning the rights of the Greek citizens to inherit immovable property in Turkey", - "values": [ - "Minorities" - ] - }, - { - "text": "Reconsider the decision to withdraw from the Rome Statute of the International Criminal Court", - "values": [ - "International instruments", - "Justice" - ] - }, - { - "text": "As previously recommended, ratify the Convention against Torture and its Optional Protocol, implement its standards into national law and take immediate and concrete actions against the practice of torture by State officials", - "values": [ - "Detention", - "Human rights violations by state agents", - "International instruments", - "Torture and other CID treatment", - "UPR process" - ] - }, - { - "text": "Take steps to effectively guarantee trade union freedom", - "values": [ - "Labour" - ] - }, - { - "text": "Continue observing its national legal safeguards surrounding the application of death penalty as one of the legitimate tools of criminal justice", - "values": [ - "Death penalty" - ] - }, - { - "text": "Further strengthen its efforts to combat poverty for provision of equitable access and resources to all its people", - "values": [ - "Poverty" - ] - }, - { - "text": "Ensure, in the framework of migration control and extradition agreements, the protection of the rights of the persons concerned by ensuring that their physical integrity and due process rights are not violated", - "values": [ - "Migrants" - ] - }, - { - "text": "Amend or repeal all policies that restrict the rights to freedom of expression, assembly, and the right to access information and free press", - "values": [ - "Freedom of association and peaceful assembly", - "Freedom of opinion and expression", - "Freedom of the press" - ] - }, - { - "text": "Combat racism and all forms of discrimination through education and awareness-raising initiatives and follow-up to cases of racism at the national level", - "values": [ - "Human rights education and training", - "Racial discrimination" - ] - }, - { - "text": "Take measures to improve the penitentiary system and identify additional resources to solve the problem of prison overcrowding ", - "values": [ - "Detention" - ] - }, - { - "text": "Further enhance its efforts in implementing its international human rights obligations, particularly in relation to the protection and promotion of the rights of persons with disabilities", - "values": [ - "Disabilities" - ] - }, - { - "text": "Resort to technical assistance provided by international organizations for the effective implementation of international human rights standards set out in the main international instruments to which it is a party", - "values": [ - "International instruments", - "Technical assistance and cooperation" - ] - }, - { - "text": "Step up efforts to guarantee free and compulsory birth registration for all children via public awareness-raising campaign on the importance of the registration of births", - "values": [ - "Human rights education and training", - "Rights of the Child", - "Statelessness and the right to nationality" - ] - }, - { - "text": "Build on existing efforts to facilitate integration of immigrants and refugees, including by fully implementing its multiyear program for the integration of third-country nationals ", - "values": [ - "Asylum-seekers - refugees", - "Migrants" - ] - }, - { - "text": "Consider the possibility of introducing amendments to national laws on citizenship, so that female citizens married to non-citizens can pass on their nationality to their children in the same way that male citizens married to non citizens do.", - "values": [ - "Rights of the Child", - "Statelessness and the right to nationality", - "Women's rights" - ] - }, - { - "text": "Take necessary measures in order to prevent and combat sexual exploitation and abuse of vulnerable people, especially girl children ", - "values": [ - "Rights of the Child", - "Women's rights" - ] - }, - { - "text": "Consider ratifying the International Convention on the Protection of the Rights of All Migrant Workers and Members of Their Families and the Convention against Torture and Other Cruel, Inhuman or Degrading Treatment or Punishment", - "values": [ - "International instruments", - "Labour", - "Migrants", - "Torture and other CID treatment" - ] - }, - { - "text": "Continue to cultivate its cooperation and interaction with the human rights mechanisms in seeking the support and technical assistance that will enable the Lao People's Democratic Republic to develop and implement its policies consistently and effectively ", - "values": [ - "Special procedures", - "Technical assistance and cooperation", - "Treaty bodies" - ] - }, - { - "text": "Continue its efforts to protect migrant workers as well as carrying out capacity-building training for them", - "values": [ - "Migrants" - ] - }, - { - "text": "That violations against human rights defenders, journalists and students are effectively investigated in order to bring those liable to justice ", - "values": [ - "Freedom of the press", - "Human rights defenders" - ] - }, - { - "text": "Consider ratifying or acceding to: 1951 Refugee Convention and ILO No. 169 Convention on Indigenous and Tribal Peoples", - "values": [ - "Asylum-seekers - refugees", - "Indigenous peoples", - "International instruments" - ] - }, - { - "text": "Sign and ratify the Optional Protocol to the Convention against Torture and the International Convention for the Protection of All Persons from Enforced Disappearance, and to ratify the Optional Protocol to the Convention on the Elimination of All Forms of Discrimination against Women", - "values": [ - "Detention", - "Enforced disappearances", - "International instruments", - "Torture and other CID treatment", - "Women's rights" - ] - }, - { - "text": "Declare a moratorium on executions with a view to abolishing the death penalty and, to that end, support the work of the parliamentary working group on the death penalty, particularly with a view to amending the Criminal Code and to adhering to the Second Optional Protocol to the International Covenant on Civil and Political Rights, aiming at the abolition of the death penalty", - "values": [ - "Death penalty", - "International instruments" - ] - }, - { - "text": "Consider adopting its National Plan of Action for Human Rights", - "values": [ - "General" - ] - }, - { - "text": "Establish and appoint an ombudsman for the rights of children and adolescents", - "values": [ - "National Human Rights Institution", - "Rights of the Child" - ] - }, - { - "text": "Continue its efforts aimed at ensuring the compatibility of popular initiatives with international human rights standards and fundamental rights contained in the Constitution", - "values": [ - "Other" - ] - }, - { - "text": "Repeal all provisions which may be applied to criminalize sexual activity between consenting adults and adopt appropriate legislative measures to include sexual orientation and gender identity in equality and non-discrimination laws ", - "values": [ - "Sexual Orientation and Gender Identity" - ] - }, - { - "text": "Condemn more vigorously racist and xenophobic speeches made by political leaders and further promote tolerance and diversity ", - "values": [ - "Racial discrimination" - ] - }, - { - "text": "Reinforce its efforts to protect the rights of migrant workers and prepare favourable working conditions", - "values": [ - "Labour", - "Migrants" - ] - }, - { - "text": "Ensure non-discrimination to the Palestinian families in Israel regarding health and education of children, in particular those living in poverty, rural areas and refugee camps", - "values": [ - "Asylum-seekers - refugees", - "Minorities", - "Poverty", - "Right to education", - "Right to health", - "Rights of the Child" - ] - }, - { - "text": "Ensure that its migration policies adopt a human rights based approach and respect the fundamental rights of migrants ", - "values": [ - "Migrants" - ] - }, - { - "text": "Promote and protect human rights of women, by strengthening efforts to end domestic violence, and other forms of violence and discrimination against women by implementation of existing laws and awareness programs", - "values": [ - "Human rights education and training", - "Women's rights" - ] - }, - { - "text": "Ensure that migrants have access to justice, education, health care and safety without discrimination ", - "values": [ - "Justice", - "Migrants", - "Racial discrimination", - "Right to education", - "Right to health" - ] - }, - { - "text": "Continue its efforts for the ratification of CEDAW and ratify the Convention at the earliest possible date", - "values": [ - "International instruments", - "Women's rights" - ] - }, - { - "text": "Consider the option of ratifying the relevant international conventions, mainly the Convention on the Elimination of All forms of Discrimination against Women, the Convention on the Rights of the Child and the International Convention for the Protection of All Persons from Enforced Disappearance", - "values": [ - "Enforced disappearances", - "International instruments", - "Rights of the Child", - "Women's rights" - ] - }, - { - "text": "Support, through legislation, non-custodial measures as an alternative to imprisonment to reduce overcrowding in prisons ", - "values": [ - "Detention" - ] - }, - { - "text": "Set priorities and adequate resources for the implementation of Uruguay's voluntary pledges and commitments as stated in its Review Report", - "values": [ - "UPR process" - ] - }, - { - "text": "Continue with the open policy towards the special procedures of the Human Rights Council.", - "values": [ - "Special procedures" - ] - }, - { - "text": "Enact legislation and take the necessary measures to protect people from discrimination, especially women, pygmies and indigenous peoples", - "values": [ - "Indigenous peoples", - "Women's rights" - ] - }, - { - "text": "Ensure the right to education for Roma Children and intensify measures taken to remedy the difficulties encountered by Roma and Romani/Taters children in the education system, and find solutions suited to the particular lifestyle of Roma", - "values": [ - "Minorities", - "Right to education", - "Rights of the Child" - ] - }, - { - "text": "Undertake necessary measures to guarantee the respect for the freedoms and fundamental rights in the occupied territories such as, for example, the right to freedom of movement of all persons", - "values": [ - "Freedom of movement" - ] - }, - { - "text": "Investigate allegations of extrajudicial killings and deaths in custody as well as of trafficking in human organs", - "values": [ - "Detention", - "Extrajudicial executions", - "Trafficking" - ] - }, - { - "text": "Continue to increase the coverage of identification and birth registration services, including in the rural jungle areas", - "values": [ - "Rights of the Child", - "Statelessness and the right to nationality" - ] - }, - { - "text": "Continue to promote the comprehensive strategy to prevent and eliminate all forms of violence against women and girls", - "values": [ - "Rights of the Child", - "Women's rights" - ] - }, - { - "text": "Continue the steps in its policy to combat discrimination, especially in view of the increased number of racist acts", - "values": [ - "Racial discrimination" - ] - }, - { - "text": "Take measures to ensure that the National Office against Racial Discrimination -UNAR- is independent and adequately resourced", - "values": [ - "Racial discrimination" - ] - }, - { - "text": "Enhance efforts to provide access to quality education for all", - "values": [ - "Right to education" - ] - }, - { - "text": "Cease arbitrary arrest and detention of people based on their religious beliefs, and review the legal framework governing religious groups and organizations ", - "values": [ - "Detention", - "Freedom of religion and belief" - ] - }, - { - "text": "Amend the Penal Code to decriminalize homosexuality ", - "values": [ - "Sexual Orientation and Gender Identity" - ] - }, - { - "text": "Investigate all alternatives to forced evictions of Roma and Sinti people, including through thorough consultation with those directly affected", - "values": [ - "Minorities" - ] - }, - { - "text": "Reinstitute its moratorium on the use of the death penalty, as a first step towards its complete abolition and accede to the Second Optional Protocol to the International Covenant on Civil and Political Rights", - "values": [ - "Death penalty", - "International instruments" - ] - }, - { - "text": "Continue efforts to strengthen the judicial and institutional framework regarding human rights by adopting legislation essential to the implementation of the rights prescribed by the new constitutional provisions", - "values": [ - "Justice" - ] - }, - { - "text": "Ensure access to religious sites, particularly in the Holy City of Jerusalem", - "values": [ - "Freedom of religion and belief" - ] - }, - { - "text": "Continue efforts to develop access to water and sanitation and to combat disparities between urban and rural areas", - "values": [ - "Right to water and sanitation" - ] - }, - { - "text": "Follow up its ratification of the Convention on the Elimination of All Forms of Discrimination against Women (CEDAW) and the Convention on the Rights of the Child with implementation.", - "values": [ - "International instruments", - "Rights of the Child", - "Women's rights" - ] - }, - { - "text": "Amend article 1 of the Law on Ensuring Equality by including criteria such as social origin, marital situation, health status, sexual orientation, gender identity, and gender expression in the main list of criteria for categories to be protected from discrimination", - "values": [ - "Sexual Orientation and Gender Identity" - ] - }, - { - "text": "That no amnesty should be granted for violence against women that qualifies as crimes against humanity, in line with Security Council resolutions 1325 (2000) and 1820 (2008) ", - "values": [ - "Justice", - "Women's rights" - ] - }, - { - "text": "Take further measures to ensure persons with disabilities enjoy their rights, in particular by ratifying the Convention on the Rights of Persons with Disabilities", - "values": [ - "Disabilities", - "International instruments" - ] - }, - { - "text": "Guarantee protection and effective access to justice to women victims of violence, including by ensuring that perpetrators are brought to justice and by providing sufficient resources and targeted training to law enforcement, the judiciary and health-service personnel", - "values": [ - "Women's rights" - ] - }, - { - "text": "Request for technical assistance and capacity building from the Office of the High Commissioner for Human Rights in order to continue to improve the lives of the Tanzanians ", - "values": [ - "Technical assistance and cooperation" - ] - }, - { - "text": "Continue its constructive role and contribution in the promotion and protection of human rights in the region, particularly through established regional frameworks in ASEAN, such as the ASEAN Intergovernmental Commission on Human Rights (AICHR), the ASEAN Commission on the Promotion and Protection of the Rights of Women and Children (ACWC)", - "values": [ - "Rights of the Child", - "Women's rights" - ] - }, - { - "text": "Amend the legislation in force to allow women to open bank accounts and register property titles in their names", - "values": [ - "Women's rights" - ] - }, - { - "text": "Deepen cooperation with all stakeholders to fight discrimination and violence against persons with albinism, in particular with the Independent Expert on the enjoyment of human rights by persons with albinism, in full respect of the independence of her mandate ", - "values": [ - "Minorities", - "Special procedures" - ] - }, - { - "text": "Fully implement the national strategy to fight against child labour and to promote descent work.", - "values": [ - "Labour", - "Rights of the Child" - ] - }, - { - "text": "Consider ratifying the International Convention on the Protection of All Persons from Enforced Disappearance ", - "values": [ - "Enforced disappearances", - "International instruments" - ] - }, - { - "text": "will examine whether to ratify the ICRMW following a study of possible legal implications", - "values": [ - "International instruments", - "Labour", - "Migrants" - ] - }, - { - "text": "Sign and ratify the two Optional Protocols to the International Covenant on Civil and Political Rights", - "values": [ - "CP rights - general", - "Death penalty", - "International instruments" - ] - }, - { - "text": "Decriminalize sexual activity between consenting adults of the same sex, and address hate crimes on the grounds of sexual orientation and gender identity, as a matter of urgency ", - "values": [ - "Sexual Orientation and Gender Identity" - ] - }, - { - "text": "Continue its commitment to the improvement of the situation of women in society through policies, programmes and projects to that end.", - "values": [ - "Women's rights" - ] - }, - { - "text": "Consider accession to ILO Convention No. 189 ", - "values": [ - "International instruments", - "Labour" - ] - }, - { - "text": "Improve living conditions for detainees and take appropriate steps to reduce long terms of preventive detention", - "values": [ - "Detention" - ] - }, - { - "text": "Stop the practice of releasing migrants, refugees and asylum-seekers minors at the borders.", - "values": [ - "Asylum-seekers - refugees", - "Migrants" - ] - }, - { - "text": "Study and address the root causes of domestic violence against women, in particular Aboriginal women", - "values": [ - "Indigenous peoples", - "Women's rights" - ] - }, - { - "text": "Repeal all state policy and regulations which condone discrimination against and harassment of Koreans in Japan", - "values": [ - "Racial discrimination" - ] - }, - { - "text": "Consider ratifying the outstanding international human rights instruments to which it is not yet a party to", - "values": [ - "International instruments" - ] - }, - { - "text": "Deepen the harmonization process of its internal norms in the light of the international human rights standards and commitments in order to guarantee equal rights between men and women in all areas of social life ", - "values": [ - "International instruments", - "Women's rights" - ] - }, - { - "text": "Share additional information on the nature and composition of the Human Rights Centre and its functions in relation to the NHRC", - "values": [ - "National Human Rights Institution" - ] - }, - { - "text": "Continue the development programmes and programmes to fight poverty by correcting the urban/rural gaps ", - "values": [ - "Poverty" - ] - }, - { - "text": "Enhance efforts to eliminate FGM, as well as the early and enforced marriage of girls", - "values": [ - "Rights of the Child", - "Torture and other CID treatment", - "Women's rights" - ] - }, - { - "text": "Introduce a moratorium on death sentences with a view to abolishing the death penalty ", - "values": [ - "Death penalty" - ] - }, - { - "text": "Continue moving forward in land demarcation and indigenous environment, taking into consideration the characteristics of each indigenous people", - "values": [ - "Indigenous peoples", - "Right to land" - ] - }, - { - "text": "Continue efforts to ensure respect for the principle of non-refoulement, and that this principle is applied to all situations, based on individual assessments, case by case and not collectively, particularly in the case of underage asylum seekers", - "values": [ - "Asylum-seekers - refugees", - "Rights of the Child" - ] - }, - { - "text": "Mainstream the principle of non-discrimination and equality in the Basic Law of Israel that discriminates against non-Jewish children and undertake measures necessary to stop policies and measure that affect Palestinians resident in the occupied State of Palestine", - "values": [ - "Minorities", - "Racial discrimination", - "Rights of the Child" - ] - }, - { - "text": "Clarify the procedures for the establishment and recognition of associations and non-governmental organizations, and to guarantee their participation in the reform process", - "values": [ - "Civil society" - ] - }, - { - "text": "Improve conditions for prisoners in order to ease overcrowding and existing conditions, and ensure them the right to adequate food", - "values": [ - "Detention" - ] - }, - { - "text": "Consider ratifying UNESCO's Convention for the Safeguarding of Intangible Cultural Heritage adopted in 2003 ", - "values": [ - "ESC rights - general", - "International instruments" - ] - }, - { - "text": "Take steps to end the criminalization of same-sex relations", - "values": [ - "Sexual Orientation and Gender Identity" - ] - }, - { - "text": "Ratify the Agreement on the Privileges and Immunities of the International Criminal Court and guarantee its implementation in national law ", - "values": [ - "International instruments", - "Justice" - ] - }, - { - "text": "Uphold the human rights mechanisms and the special procedures", - "values": [ - "Special procedures" - ] - }, - { - "text": "Continue its efforts, through the United Nations Framework Convention on Climate Change and other forums, to remind the international community, especially developed countries and other major emitting States, of their obligations to protect and promote human rights in Saint Kitts and Nevis by reducing greenhouse gas emissions ", - "values": [ - "Environment", - "Technical assistance and cooperation" - ] - }, - { - "text": "Strengthen its efforts to prevent and combat human trafficking offences through studying international best practices, developing domestic legislation in conformity with international standards, establishing institutions and agencies and strengthening cooperation with relevant international organizations and bodies ", - "values": [ - "Trafficking" - ] - }, - { - "text": "Ensure thorough and impartial investigations into all allegations of attacks and threats against individuals targeted because of their sexual orientation and gender identity, and bring to justice those responsible ", - "values": [ - "Sexual Orientation and Gender Identity" - ] - }, - { - "text": "Implement "emergency protection orders" and ratify the Council of Europe Convention on Preventing and Combating Violence against Women and Domestic Violence (Istanbul Convention) ", - "values": [ - "International instruments", - "Rights of the Child", - "Women's rights" - ] - }, - { - "text": "Continue efforts to promote education for the good of all", - "values": [ - "Right to education" - ] - }, - { - "text": "Take adequate measures to combat female genital mutilation, that is to enforce existing legislation prohibiting FGM and to ensure that perpetrators of female genital mutilation are prosecuted", - "values": [ - "Rights of the Child", - "Torture and other CID treatment", - "Women's rights" - ] - }, - { - "text": "Guarantee that independent journalists, human rights defenders and political dissidents have the possibility to exercise the right to assembly, association, movement or expression and freedom of expression without the risk of harassment, intimidation or persecution", - "values": [ - "Freedom of association and peaceful assembly", - "Freedom of opinion and expression", - "Freedom of the press", - "Human rights defenders" - ] - }, - { - "text": "Consider adopting a comprehensive law against human trafficking and implement its National Action Plan against Trafficking", - "values": [ - "Trafficking" - ] - }, - { - "text": "Continue to respond to the previous recommendations by several Special Rapporteurs to ensure that its policies and practices regarding the dismantling of Roma settlements and the expulsion of migrant Roma conform in all respects to European and international human rights law ", - "values": [ - "International instruments", - "Migrants", - "Minorities", - "Special procedures" - ] - }, - { - "text": "Consider ratifying the Convention [ICRMW]", - "values": [ - "International instruments", - "Labour", - "Migrants" - ] - }, - { - "text": "Ensure Afro-Guyanese people's rights ", - "values": [ - "Minorities" - ] - }, - { - "text": "Ensure that its new Penal Code is fully consistent with international human rights standards and that it abolishes corporal punishment and the death penalty ", - "values": [ - "Death penalty", - "International instruments", - "Torture and other CID treatment" - ] - }, - { - "text": "Increase efforts to further develop human rights education", - "values": [ - "Human rights education and training" - ] - }, - { - "text": "Provide information in the future on further advances regarding the penitentiary reform and combating discrimination.", - "values": [ - "Detention" - ] - }, - { - "text": "Continue to allocate the highest budgetary priority to public education", - "values": [ - "Right to education" - ] - }, - { - "text": "Guarantee full enjoyment of the right of freedom of expression and association", - "values": [ - "Freedom of association and peaceful assembly", - "Freedom of opinion and expression" - ] - }, - { - "text": "Take the necessary measures to reduce the early school leaving rate", - "values": [ - "Right to education" - ] - }, - { - "text": "Put an end to arbitrary detention and prevent abuses and discrimination against third-country nationals and against groups of citizens of Libya", - "values": [ - "Counter-terrorism", - "Detention", - "Migrants" - ] - }, - { - "text": "Ratify CEDAW and its Optional Protocol ", - "values": [ - "International instruments", - "Women's rights" - ] - }, - { - "text": "Consider amending the Aliens Act in order to ensure that refugees and other beneficiaries of international protection and their family members can exercise their right to long term residence", - "values": [ - "Asylum-seekers - refugees", - "Racial discrimination" - ] - }, - { - "text": "Ensure human rights and international humanitarian law education for all security forces and prison and judicial personnel and adopt further measures to ensure their full accountability for any violations of these", - "values": [ - "Human rights education and training", - "Human rights violations by state agents", - "International humanitarian law" - ] - }, - { - "text": "Accelerate the process aimed at creating a national human rights institution in accordance with the Paris Principles ", - "values": [ - "National Human Rights Institution" - ] - }, - { - "text": "Consult a broad range of civil society actors and reflect their views in the Non-Governmental Organizations Act, 2016, to ensure an open, accountable and vibrant NGO sector", - "values": [ - "Civil society" - ] - }, - { - "text": "Effectively follow up the guidelines adopted by the Dominican Republic and Haiti Joint Commission on concrete measures to safeguard the fundamental rights of people of Haitian origin ", - "values": [ - "Minorities" - ] - }, - { - "text": "Curb prevalence of corporal punishment on children, in keeping with Mexico's international advocacy against such offences", - "values": [ - "Rights of the Child", - "Torture and other CID treatment" - ] - }, - { - "text": "Improve the situation of overcrowding in prisons", - "values": [ - "Detention" - ] - }, - { - "text": "Mainstream human rights standards in counter-terrorism actions undertaken by security forces", - "values": [ - "Counter-terrorism" - ] - }, - { - "text": "Consider ratifying other international and regional human rights conventions that it is not yet a party to ", - "values": [ - "CP rights - general", - "Disabilities", - "ESC rights - general", - "International instruments" - ] - }, - { - "text": "Continue to improve the juvenile justice system ", - "values": [ - "Justice", - "Rights of the Child" - ] - }, - { - "text": "Consider the ratification of the Convention against Torture and Other Cruel, Inhuman or Degrading Treatment or Punishment and its Optional Protocol", - "values": [ - "Detention", - "International instruments", - "Torture and other CID treatment" - ] - }, - { - "text": "Build upon the ad hoc national procedure to process asylum claims as a good practice and develop it further ", - "values": [ - "Asylum-seekers - refugees" - ] - }, - { - "text": "Continue with appropriate measures to eradicate discrimination and violence against women.", - "values": [ - "Women's rights" - ] - }, - { - "text": "Ensure freedom of expression, including by protecting journalists and human rights defenders from intimidation and aggression ", - "values": [ - "Freedom of opinion and expression", - "Freedom of the press", - "Human rights defenders" - ] - }, - { - "text": "Seek technical assistance from the OHCHR, other relevant United Nations agencies and funds with a view to implement its treaty body reporting obligations ", - "values": [ - "Technical assistance and cooperation", - "Treaty bodies" - ] - }, - { - "text": "Become party to the Rome Statute of the International Criminal Court, the Conventions on the refugees and stateless persons and the Convention to fight discrimination in Education", - "values": [ - "Asylum-seekers - refugees", - "International instruments", - "Justice", - "Right to education", - "Statelessness and the right to nationality" - ] - }, - { - "text": "Ensure equal educational opportunities for all children, including girls and Dalit children, in line with the observations made by the Committee on the Elimination of Discrimination against Women and the Committee on Economic, Social and Cultural Rights", - "values": [ - "Minorities", - "Right to education", - "Rights of the Child", - "Treaty bodies", - "Women's rights" - ] - }, - { - "text": "Intensify its efforts to realize gender equality, including by implementing the recommendation made by the Committee on the Elimination of Discrimination against Women in 2003 aimed at changing social stereotypes that encourage discrimination against women and impede their egalitarian performance in society ", - "values": [ - "Treaty bodies", - "Women's rights" - ] - }, - { - "text": "Carry out a revision of the various legal systems in use, Islamic, civil and customary, to ensure that its treatment of women is uniform and in line with provisions of the Convention on the Elimination of All Forms of Discrimination against Women ", - "values": [ - "International instruments", - "Women's rights" - ] - }, - { - "text": "Issue an open-ended and standing invitation to all special procedures - and more specifically respond positively to the requests for visits by the Special Rapporteurs on the promotion and protection of the right to freedom of opinion and expression and on the right to education, the Working Group on Arbitrary Detention, and the Special Rapporteurs on torture and on extrajudicial, summary or arbitrary executions ", - "values": [ - "Detention", - "Extrajudicial executions", - "Freedom of opinion and expression", - "Special procedures", - "Torture and other CID treatment" - ] - }, - { - "text": "In line with the recommendation by the Committee on the Elimination of Discrimination against Women, consider introducing legislation which includes a definition of discrimination against women in accordance with article 1 of the Convention on the Elimination of All Forms of Discrimination against Women", - "values": [ - "International instruments", - "Treaty bodies", - "Women's rights" - ] - }, - { - "text": "Become a party to the CAT ", - "values": [ - "International instruments", - "Torture and other CID treatment" - ] - }, - { - "text": "Further strengthen measures to ensure equal access to health services for all, while giving special attention to the needs of children, women and the elderly", - "values": [ - "Right to health", - "Rights of the Child", - "Women's rights" - ] - }, - { - "text": "Implement human rights education programmes for law enforcement officials", - "values": [ - "Human rights education and training" - ] - }, - { - "text": "Seek support from all countries and relevant organizations, including OHCHR, to support the request of the Bahamas for technical assistance in human rights training and capacity-building.", - "values": [ - "Human rights education and training", - "Technical assistance and cooperation" - ] - }, - { - "text": "Increase its efforts to eradicate impunity for torture and other ill treatment, and to initiate thorough, impartial and independent investigations into all such allegations, and that alleged perpetrators are brought to justice.", - "values": [ - "Impunity", - "Torture and other CID treatment" - ] - }, - { - "text": "Recognise the notion of indigenous peoples with a view to effectively protecting their rights ", - "values": [ - "Indigenous peoples" - ] - }, - { - "text": "Evaluate the possibility of ratifying the second optional protocol to the International Covenant on Civil and Political Rights to abolish the death penalty.", - "values": [ - "Death penalty", - "International instruments" - ] - }, - { - "text": "Provide adequate funding to the Human Rights and Anti Discrimination Commission and take steps to ensure its conformity with the Paris Principles", - "values": [ - "National Human Rights Institution" - ] - }, - { - "text": "Issue an open invitation to the United Nations special mechanisms", - "values": [ - "Special procedures" - ] - }, - { - "text": "Adopt and implement legislation establishing appropriate criminal justice procedures for persons under the age of 18 ", - "values": [ - "Justice", - "Rights of the Child" - ] - }, - { - "text": "Consider the ratification of ILO Convention No. 169 ", - "values": [ - "Indigenous peoples", - "International instruments" - ] - }, - { - "text": "Continue its efforts to review the cases of persons sentenced to death in the country and to commute all death sentences into alternative penalties, as well as to put in place a moratorium on the death penalty with a view to its future abolition", - "values": [ - "Death penalty" - ] - }, - { - "text": "Protect the rights to freedom of association and assembly in accordance with its international obligations, notably those under the International Covenant on Civil and Political Rights, and cease the dissolution of political parties and civil society organizations", - "values": [ - "CP rights - general", - "Civil society", - "Freedom of association and peaceful assembly", - "International instruments" - ] - }, - { - "text": "Guarantee in law and in practice the right to the freedoms of expression, association and peaceful assembly, as well as the right of all citizens to participate, without discrimination, in the country's public and political life, including the right to vote and be elected. In this regard, it is urgent that the bill on freedom of assembly be concluded and approved", - "values": [ - "Elections", - "Freedom of association and peaceful assembly", - "Freedom of opinion and expression" - ] - }, - { - "text": "Undertake actions leading to a comprehensive reform of the justice and penal systems which contribute to the fight against impunity and crime investigation, comprising the responsibilities of institutions, particularly of the National Police", - "values": [ - "Impunity", - "Justice" - ] - }, - { - "text": "Consider legislative changes to repeal corporal punishment and bring legislation into line with international human rights obligations", - "values": [ - "International instruments", - "Torture and other CID treatment" - ] - }, - { - "text": "Strengthen human rights training and awareness-raising programmes for the police", - "values": [ - "Human rights education and training" - ] - }, - { - "text": "Remove any reference to the crime of witchcraft from the penal code", - "values": [ - "Rights of the Child", - "Women's rights" - ] - }, - { - "text": "Develop and implement education campaigns aimed at preventing sexual violence and addressing the attitudes and stereotypes which perpetuate such violence", - "values": [ - "Human rights education and training", - "Rights of the Child", - "Women's rights" - ] - }, - { - "text": "Continue reforming its excellent education policy, in particular the programme of universal secondary education", - "values": [ - "Right to education" - ] - }, - { - "text": "Continue to support the work of the National Agency Tadamoun and the National Commission of Human Rights", - "values": [ - "National Human Rights Institution" - ] - }, - { - "text": "Continue efforts to promote cultural rights through programmes to protect and revitalize the diversity of cultural heritage constituting the Moroccan identity, including the Hassani heritage in the southern provinces", - "values": [ - "ESC rights - general" - ] - }, - { - "text": "Accelerate the process of ratification of the International Convention for the Protection of All Persons from Enforced Disappearance", - "values": [ - "Enforced disappearances", - "International instruments" - ] - }, - { - "text": "Bring an end to the practice of forced abortion", - "values": [ - "Women's rights" - ] - }, - { - "text": "Take further efforts to ensure that the status of freedom of expression is brought into line with international obligations", - "values": [ - "Freedom of opinion and expression" - ] - }, - { - "text": "Reform national legislation to enable mothers with Barbadian nationality to confer their nationality to their children born abroad ", - "values": [ - "Rights of the Child", - "Women's rights" - ] - }, - { - "text": "Continue the implementation of the strategic development plan", - "values": [ - "Development" - ] - }, - { - "text": "Continue its efforts to establish effective consultation processes with indigenous communities", - "values": [ - "Indigenous peoples" - ] - }, - { - "text": "Enact legislation and take necessary measures to prohibit discrimination on the grounds of sexual orientation, gender identity and social status", - "values": [ - "Sexual Orientation and Gender Identity" - ] - }, - { - "text": "Take measures to eradicate crimes against people of African descent, Muslims, Jews and foreigners, which are promoted in the media and social networks, where violence, racism, racial discrimination, xenophobia and other related forms of intolerance are openly incited", - "values": [ - "Freedom of religion and belief", - "Minorities", - "Racial discrimination" - ] - }, - { - "text": "Undertake, with international assistance, human rights training for the judiciary", - "values": [ - "Human rights education and training" - ] - }, - { - "text": "Set up an inclusive health policy to ensure that, in particular, emergency care is more effective and more accessible for all", - "values": [ - "Right to health" - ] - }, - { - "text": "Continue its meritorious efforts to prosecute violent hate crimes, including racist and xenophobic crimes", - "values": [ - "Racial discrimination" - ] - }, - { - "text": "Develop mechanisms for overseeing the implementation of the CRC in the OPT", - "values": [ - "International instruments", - "Rights of the Child" - ] - }, - { - "text": "Consider accession to the European Charter for Regional or Minority Languages ", - "values": [ - "International instruments", - "Minorities" - ] - }, - { - "text": "Address racial discrimination, xenophobia and hate crimes by further strengthening effective legislative and judicial measures", - "values": [ - "Racial discrimination" - ] - }, - { - "text": "Adopt measures leading to the creation of a national human rights institution in accordance with the Paris Principles ", - "values": [ - "National Human Rights Institution" - ] - }, - { - "text": "Take measures to guarantee effective access for women and girls to information and services regarding sexual and reproductive health", - "values": [ - "Right to health", - "Rights of the Child", - "Women's rights" - ] - }, - { - "text": "Stop the recruitment of child soldiers into both the armed forces and militias", - "values": [ - "International humanitarian law", - "Rights of the Child" - ] - }, - { - "text": "Strengthen the implementation of the Zimbabwe Agenda for Sustainable Socioeconomic Transformation", - "values": [ - "Development" - ] - }, - { - "text": "Sign and ratify CRPD and its Optional Protocol, and the OP-CAT", - "values": [ - "Detention", - "Disabilities", - "International instruments", - "Torture and other CID treatment" - ] - }, - { - "text": "Strengthen the capacities of the Ombudsman, intensify government support to this institution and take its recommendations into account", - "values": [ - "National Human Rights Institution" - ] - }, - { - "text": "Accelerate the ongoing efforts aimed at elaborating a national strategy to fight against poverty with particular emphasis on the reduction of extreme poverty", - "values": [ - "Poverty" - ] - }, - { - "text": "Repeal laws that are not in compliance with international human rights law and review its legal system to ensure compliance with the rights to due process and a fair trial and respect for the rule of law ", - "values": [ - "International instruments" - ] - }, - { - "text": "Continue to support the important work and independence of the Extraordinary Chambers within the Cambodian court system ", - "values": [ - "Justice" - ] - }, - { - "text": "Carry out efforts to repeal the application of the death penalty ", - "values": [ - "Death penalty" - ] - }, - { - "text": "Organize a dialogue to evaluate the results of the implementation of the Access to Public Information Act (Act No. 18,381) and consider any legislative amendments that might be appropriate", - "values": [ - "Freedom of opinion and expression" - ] - }, - { - "text": "Apply more effective actions to face the negative effects of the economic crisis on the population", - "values": [ - "Development" - ] - }, - { - "text": "Accede to the 1951 Convention Relating to the Status of Refugees and to its additional Protocol, and ensure that these instruments are implemented at the national level", - "values": [ - "Asylum-seekers - refugees" - ] - }, - { - "text": "Consider raising the age of criminal responsibility from 12 to 14 years, even for the most serious crimes", - "values": [ - "Rights of the Child" - ] - }, - { - "text": "Recommended the swift adoption of the bill on freedom of information", - "values": [ - "Freedom of opinion and expression" - ] - }, - { - "text": "Guarantee the rights of minorities, elaborate and implement a legal and regulatory framework for the respect and protection of vulnerable populations ", - "values": [ - "Minorities" - ] - }, - { - "text": "Continue in its effort to eliminate extreme poverty and include in its social policies those who are most vulnerable, especially women, children, Afro-descendants, indigenous peoples, the elderly and persons with disabilities", - "values": [ - "Disabilities", - "Indigenous peoples", - "Minorities", - "Poverty", - "Rights of the Child", - "Women's rights" - ] - }, - { - "text": "Amend the articles of the Criminal Code dealing with rape and sexual violence, in line with international standards and the recommendations of OHCHR and the Committee on the Elimination of Discrimination against Women, to ensure accountability for conflict-related sexual violence", - "values": [ - "Impunity", - "International instruments", - "Justice", - "Treaty bodies", - "Women's rights" - ] - }, - { - "text": "Continue efforts to eliminate domestic violence", - "values": [ - "Rights of the Child", - "Women's rights" - ] - }, - { - "text": "Take measures to ensure that its National Human Rights Commission is in accordance with the Paris Principles ", - "values": [ - "National Human Rights Institution" - ] - }, - { - "text": "Improve conditions in all prisons and detentions to be brought into compliance with international standards, including the United Nations Standard Minimum Rules for the Treatment of Prisoners ", - "values": [ - "Detention" - ] - }, - { - "text": "Establish an official moratorium on executions, with the aim to abolish the death penalty ", - "values": [ - "Death penalty" - ] - }, - { - "text": "Issue a standing invitation to all United Nations special procedures and respond favourably to all outstanding requests ", - "values": [ - "Special procedures" - ] - }, - { - "text": "Establish in the new Constitution guarantees in the field of human rights and implement a national strategy for human rights, supported by the creation of a national human rights institution in conformity with the Paris Principles ", - "values": [ - "National Human Rights Institution" - ] - }, - { - "text": "Revoke the law criminalizing consensual sex between adults of the same sex", - "values": [ - "Sexual Orientation and Gender Identity" - ] - }, - { - "text": "Dedicate more resources to advance health-care services", - "values": [ - "Right to health" - ] - }, - { - "text": "Continue to work closely with regional bodies, the United Nations and donor partners to seek sustainable solutions to the refugee and humanitarian crisis in order to uphold human rights and protect civilians", - "values": [ - "Asylum-seekers - refugees", - "International humanitarian law", - "Technical assistance and cooperation" - ] - }, - { - "text": "Continue its significant efforts to promote gender equality, in particular the implementation of the "Draft National Gender Policy" ", - "values": [ - "Women's rights" - ] - }, - { - "text": "Revise the Criminal Code so as to eliminate mandatory death sentences and pursue efforts to abolish the death penalty", - "values": [ - "Death penalty" - ] - }, - { - "text": "Adopt further measures to prevent and contrast those practices - such as early and forced marriages, and moletry - which have a negative impact on the empowerment of women", - "values": [ - "Rights of the Child", - "Women's rights" - ] - }, - { - "text": "Take further steps to end the use of excessive force in policing in all jurisdictions", - "values": [ - "Human rights violations by state agents" - ] - }, - { - "text": "Study and start implementing the recommendations included in the report of the COI", - "values": [ - "Justice" - ] - }, - { - "text": "Provide for urgent instructions to all schools to respect freedom of religion or belief and to take specific measures to reprimand any teacher or school administrator who intimidates or discriminates against Baha'i children", - "values": [ - "Freedom of religion and belief", - "Minorities", - "Right to education" - ] - }, - { - "text": "Address the legal gaps in national legislation on human trafficking and ensure that cases of trafficking are investigated effectively at the earliest possible date with a view to bringing to justice those responsible, and ensure that victims benefit from full reparation ", - "values": [ - "Trafficking" - ] - }, - { - "text": "Establish an independent national human rights institution, in accordance with the Paris Principles", - "values": [ - "National Human Rights Institution" - ] - }, - { - "text": "Eradicate in law and in practice corporal punishment and the amputation of limbs, child abuse and neglect, female genital mutilation, forced and early marriage, and the forced feeding of girls, as well as issues related to birth registration, and seek technical assistance from United Nations agencies in this regard, as recommended by the Committee on the Rights of the Child ", - "values": [ - "Rights of the Child", - "Statelessness and the right to nationality", - "Technical assistance and cooperation", - "Torture and other CID treatment", - "Treaty bodies", - "Women's rights" - ] - }, - { - "text": "Consider the ratification of ICESCR and the ICCPR, recalling paragraph 1 (a) of resolution 9-12 adopted by the HRC.", - "values": [ - "CP rights - general", - "ESC rights - general", - "International instruments" - ] - }, - { - "text": "Further enhance and encourage the political participation of women, including through awareness-raising campaigns ", - "values": [ - "Women's rights" - ] - }, - { - "text": "Investigate promptly all attacks against journalists and ensure justice and adequate redress for the victims", - "values": [ - "Freedom of the press" - ] - }, - { - "text": "Continue the application of policies and programmes on comprehensive and sustainable development", - "values": [ - "Development" - ] - }, - { - "text": "Protect the rights of the victims of the recent mass riots ", - "values": [ - "Justice" - ] - }, - { - "text": "Consider reviewing its labour laws with a view to addressing the wage gap between women and men and the elusive opportunities for working women to occupy leadership and decision-making positions", - "values": [ - "Women's rights" - ] - }, - { - "text": "Improve further means and methods for vocational education of persons in prison in order to assist in their later integration into the society", - "values": [ - "Detention" - ] - }, - { - "text": "Consider acceding to ICERD and the International Convention on the Protection of the Rights of All Migrant Workers and Members of Their Families (ICRMW)", - "values": [ - "International instruments", - "Labour", - "Migrants", - "Racial discrimination" - ] - }, - { - "text": "Strengthen its trafficking prevention programme under the National Strategy to Combat Human Trafficking 2007-2012, with particular attention to children and women ", - "values": [ - "Rights of the Child", - "Trafficking", - "Women's rights" - ] - }, - { - "text": "Join efforts for the appropriate development of the comprehensive police education system, approved in May 2013, aimed at the effective promotion and protection of human rights as a mainstream subject", - "values": [ - "Human rights education and training" - ] - }, - { - "text": "Consider ratifying the International Convention for the Protection of All Persons from Enforced Disappearance and also accepting the competence of the relevant committee", - "values": [ - "Enforced disappearances", - "International instruments" - ] - }, - { - "text": "Establish an effective and inclusive process to follow up on recommendations of the universal periodic review ", - "values": [ - "UPR process" - ] - }, - { - "text": "Take further steps towards strengthening the mandate of the Human Rights Ombudsman in order to ensure full compliance with the Paris Principles", - "values": [ - "National Human Rights Institution" - ] - }, - { - "text": "Elaborate a legal framework regarding disciplinary proceedings (for judges)", - "values": [ - "Justice" - ] - }, - { - "text": "Review its legislative measures and practices in relation to freedom of peaceful assembly and association, with regard to the report of the United Nations Special Rapporteur on the rights to freedom of peaceful assembly and of association following his mission in September 2014", - "values": [ - "Freedom of association and peaceful assembly", - "Special procedures" - ] - }, - { - "text": "Continue its legal efforts in the protection of women and children's rights as well as improve measures to prevent violence against women and girls, and members of religious minorities ", - "values": [ - "Minorities", - "Rights of the Child", - "Women's rights" - ] - }, - { - "text": "Encouraged to bring human rights into the curriculum by, among others, training teachers", - "values": [ - "Human rights education and training" - ] - }, - { - "text": "Review the legislation on defamation as a criminal offence so that these facts are examined in accordance with the Civil Code ", - "values": [ - "Freedom of opinion and expression" - ] - }, - { - "text": "Guarantee the independence of the Human Rights Commission of Zimbabwe as far as the following are concerned: funding, mandate, immunity and appointment of commission members, all this in accordance with the Paris Principles", - "values": [ - "National Human Rights Institution" - ] - }, - { - "text": "Implement effective oversight mechanisms within the judiciary to tackle corruption and to improve the quality and speed of the judicial process", - "values": [ - "Corruption", - "Justice" - ] - }, - { - "text": "Establish, in conformity with the Paris Principles, an independent ombudsperson with a robust mandate to promote and protect human rights", - "values": [ - "National Human Rights Institution" - ] - }, - { - "text": "Strengthen measures to ensure the participation of minorities in all spheres of national life", - "values": [ - "Minorities" - ] - }, - { - "text": "Emphasize prevention with regards to face up to climate change", - "values": [ - "Environment" - ] - }, - { - "text": "Consider inviting the Special Rapporteur on the right to education and the Special Rapporteur on the sale of children, child prostitution and child pornography, within a framework of mutual cooperation, as a constructive step towards the consolidation of greater protection for this vulnerable group ", - "values": [ - "Right to education", - "Rights of the Child", - "Special procedures", - "Trafficking" - ] - }, - { - "text": "Take action against income inequality between men and women in similar positions and with a similar degree of work ", - "values": [ - "Women's rights" - ] - }, - { - "text": "Proceed to the swift enactment of the draft laws on the freedom of information, as mentioned in paragraph 41 of its National Report, and to the urgent overall review of the penal treatment of freedom of expression offences, especially with regard to the protection of journalists", - "values": [ - "Freedom of opinion and expression", - "Freedom of the press" - ] - }, - { - "text": "Create stronger mechanisms to ensure greater revenue transparency from diamond mining, demilitarize the diamond industry, and thoroughly investigate cases of beatings and abuse by Government and private security services in the Marange area ", - "values": [ - "Business and human rights", - "Development", - "Human rights violations by state agents" - ] - }, - { - "text": "Step up its efforts to address the issue of trafficking of women and children", - "values": [ - "Rights of the Child", - "Trafficking", - "Women's rights" - ] - }, - { - "text": "Take immediate steps to ensure that CEDAW is given full legal effect in its domestic laws", - "values": [ - "Women's rights" - ] - }, - { - "text": "Improve the access to justice for victims of sexual and gender-based violence, enhance the capacity of the police to investigate cases of sexual and gender-based violence and enact the relevant legislation, including the Domestic Violence Act", - "values": [ - "Rights of the Child", - "Women's rights" - ] - }, - { - "text": "Make every necessary effort to improve the conditions in detention facilities so that they meet the necessary minimum conditions of habitability ", - "values": [ - "Detention" - ] - }, - { - "text": "Adopt the draft law on asylum and refugees, which is to ensure, inter alia, unhindered access to primary education for refugee children", - "values": [ - "Asylum-seekers - refugees", - "Right to education", - "Rights of the Child" - ] - }, - { - "text": "Continue its efforts to expand access to safe drinking water and sanitation by ensuring better coordination and coherence in the implementation of initiatives aimed at expanding access to water and sanitation in rural areas", - "values": [ - "Right to water and sanitation" - ] - }, - { - "text": "Ratify the International Covenant on Civil and Political Rights as well as the International Covenant on Economic, Social and Cultural Rights", - "values": [ - "CP rights - general", - "ESC rights - general", - "International instruments" - ] - }, - { - "text": "Enact legislative provisions prohibiting discrimination against women and persons with disabilities ", - "values": [ - "Disabilities", - "Women's rights" - ] - }, - { - "text": "Accede to the International Covenant on Economic, Social and Cultural Rights ", - "values": [ - "ESC rights - general", - "International instruments" - ] - }, - { - "text": "Schedule visits for the Special Rapporteur on trafficking in persons, especially in women and children and the Special Rapporteur on freedom of opinion and expression in line with their requests and Kuwait's 2010 standing invitation", - "values": [ - "Extrajudicial executions", - "Rights of the Child", - "Special procedures", - "Trafficking", - "Women's rights" - ] - }, - { - "text": "Continue efforts for the implementation of a human rights agenda and action plan", - "values": [ - "General" - ] - }, - { - "text": "Consider implementing, as appropriate, the recommendations of human rights treaty bodies and special procedures on the Roma.", - "values": [ - "Minorities", - "Special procedures", - "Treaty bodies" - ] - }, - { - "text": "Develop in partnership with Aboriginal and Torres Strait Islander peoples a National Strategy to give effect to the United Nations Declaration on the Rights of Indigenous Peoples, and to facilitate the constitutional recognition of Aboriginal Australians", - "values": [ - "Indigenous peoples", - "International instruments" - ] - }, - { - "text": "Proceed to arrest and transfer to the Hague Mr. Bosco Ntaganda, who is subject to an arrest warrant by the International Criminal Court.", - "values": [ - "International instruments", - "Justice" - ] - }, - { - "text": "Continue its positive efforts in reducing the numbers of persons at risk of poverty or social exclusion by 2020", - "values": [ - "Poverty" - ] - }, - { - "text": "Continue its efforts to guarantee free and quality health services ", - "values": [ - "Right to health" - ] - }, - { - "text": "Take measures to ensure the protection of human rights defenders and journalists against harassment, physical attacks and death threats, including by investigating such incidents fully and bringing those responsible to justice", - "values": [ - "Freedom of the press", - "Human rights defenders" - ] - }, - { - "text": "To promote the creation of new units for victims' assistance in the development of the new Bolivarian National Police", - "values": [ - "Justice" - ] - }, - { - "text": "Ratify the Convention on the Elimination of All Forms of Discrimination against Women, the International Covenant on Civil and Political Rights and the International Covenant on Economic, Social and Cultural Rights", - "values": [ - "CP rights - general", - "ESC rights - general", - "International instruments", - "Women's rights" - ] - }, - { - "text": "Introduce long-term measures including programmes to change the tenor of the political discourse in campaigns in order to achieve greater female participation in decision-making ", - "values": [ - "Women's rights" - ] - }, - { - "text": "Establish stronger measures to eliminate gender based discrimination, especially in the work environment", - "values": [ - "Women's rights" - ] - }, - { - "text": "Prioritize the need to become party to the International Convention on the Elimination of All Forms of Racial Discrimination ", - "values": [ - "International instruments", - "Racial discrimination" - ] - }, - { - "text": "Adhere to the main international instruments on human rights to which it is not a party, in particular the International Convention for the Protection of All Persons from Enforced Disappearances", - "values": [ - "Enforced disappearances", - "International instruments" - ] - }, - { - "text": "Create a favourable institutional framework to improve the condition of women by integrating them into social, economic and political life ", - "values": [ - "Women's rights" - ] - }, - { - "text": "Take measures necessary to put an end to prison conditions that are characterized by severe overcrowding and that lead to widespread violence among prisoners", - "values": [ - "Detention" - ] - }, - { - "text": "Implement the accepted recommendations of the universal periodic review in cooperation with the National Council on Human Rights, NGOs, and the civil society", - "values": [ - "Civil society", - "UPR process" - ] - }, - { - "text": "Continue implementing the public awareness campaign on hate speech on the Internet", - "values": [ - "Human rights education and training", - "Racial discrimination" - ] - }, - { - "text": "Establish a national human rights institution in accordance/compliance with the Paris Principles ", - "values": [ - "National Human Rights Institution" - ] - }, - { - "text": "Ensure that HIV education is systematically included in technical training courses ", - "values": [ - "HIV - Aids" - ] - }, - { - "text": "Amend: article 14, which stipulates that participants in the financial management of a press body must be citizens of Djibouti. article 17, which requires the director and vice-director of a media outlet to be residents of Djibouti. and article 47, which requires the director of an audiovisual outlet to be at least 40 years of age", - "values": [ - "Freedom of the press" - ] - }, - { - "text": "Review the Kenya Information and Communication (Amendment) Act and the Media Council Act in order to safeguard that the principles of the Kenyan Constitution are guaranteed and upheld", - "values": [ - "Freedom of the press" - ] - }, - { - "text": "Take all necessary measures to guarantee, in all circumstances, full respect of freedom of expression and freedom of the press, reform, in that regard, the provisions of the Information and Communication Act in order to bring the national legislation in line with international standards", - "values": [ - "Freedom of opinion and expression", - "Freedom of the press" - ] - }, - { - "text": "Step up its efforts to prevent domestic violence, including through enforcing existing legislation, continuing its awareness-raising campaigns, as well as through efficiently implementing, and where necessary, introducing new state programmes to protect the victims of domestic violence and to offer them psychological support and access to shelter ", - "values": [ - "Human rights education and training", - "Rights of the Child", - "Women's rights" - ] - }, - { - "text": "Fight impunity for violence against marginalized persons motivated by their ethnicity, religion, or sexual orientation, particularly through an improved awareness of public opinion, and the police and judicial authorities", - "values": [ - "Freedom of religion and belief", - "Human rights education and training", - "Impunity", - "Minorities", - "Racial discrimination", - "Sexual Orientation and Gender Identity" - ] - }, - { - "text": "Adopt necessary measures according to the international criteria to protect the freedom of Muslim women to belief", - "values": [ - "Freedom of religion and belief", - "Minorities", - "Women's rights" - ] - }, - { - "text": "Intensify efforts to adopt laws and measures to address domestic violence more effectively", - "values": [ - "Rights of the Child", - "Women's rights" - ] - }, - { - "text": "Continue the fight against human trafficking", - "values": [ - "Trafficking" - ] - }, - { - "text": "Enhance the legal framework on the social inclusion and participation of persons with disabilities while promoting relevant awareness-raising activities", - "values": [ - "Disabilities", - "Human rights education and training" - ] - }, - { - "text": "Make continuing efforts to combat trafficking in persons", - "values": [ - "Trafficking" - ] - }, - { - "text": "Follow up the implementation of national machinery for the advancement of women and addressing violence against women ", - "values": [ - "Women's rights" - ] - }, - { - "text": "Finalize the decision on abolishing the death penalty by holding a referendum", - "values": [ - "Death penalty" - ] - }, - { - "text": "Urgently provide for the necessary immigration and asylum legislation", - "values": [ - "Asylum-seekers - refugees", - "Migrants" - ] - }, - { - "text": "Offer guarantees for the respect of civil and political rights, specifically abrogating or amending the Sedition Act and the Newspaper Act of 1958 in order to ensure compatibility with international standards and to ensure respect for freedom of expression ", - "values": [ - "CP rights - general", - "Freedom of opinion and expression", - "Freedom of the press" - ] - }, - { - "text": "Continue its valuable contributions for the strengthening of intercivilization and inter cultural dialogue", - "values": [ - "Other" - ] - }, - { - "text": "Fully prohibit and criminalize female genital mutilation, as it represents a clear human rights violation ", - "values": [ - "Rights of the Child", - "Torture and other CID treatment", - "Women's rights" - ] - }, - { - "text": "Develop a national human rights plan in accordance with the Vienna Declaration and Programme of Action ", - "values": [ - "General" - ] - }, - { - "text": "Enact laws covering the right of children to acquire nationality, in particular those born in Singapore who cannot obtain another nationality", - "values": [ - "Rights of the Child", - "Statelessness and the right to nationality" - ] - }, - { - "text": "Actively consider reviewing its position on minorities by recognizing and protecting them as minority groups.", - "values": [ - "Minorities" - ] - }, - { - "text": "Strengthen government cooperation with civil society organizations in ensuring the protection and promotion of human rights", - "values": [ - "Civil society" - ] - }, - { - "text": "Adopt a law, in line with the Convention on the Rights of the Child, that criminalizes all forms of violence against children", - "values": [ - "International instruments", - "Rights of the Child" - ] - }, - { - "text": "Prevent child labour, beginning with those who work in hazardous conditions", - "values": [ - "Labour", - "Rights of the Child" - ] - }, - { - "text": "Prohibit corporal punishment, especially in schools, in accordance with article 19 of the Convention on the Rights of the Child, as previously recommended", - "values": [ - "International instruments", - "Rights of the Child", - "Torture and other CID treatment", - "UPR process" - ] - }, - { - "text": "Amend its Penal Code to eliminate language that discriminates against women, in particular the section entitled "Title X", to ensure respect for rights and to address the impact of the violence suffered by victims of these offences ", - "values": [ - "Women's rights" - ] - }, - { - "text": "To renew the mandate of OHCHR in Bolivia.", - "values": [ - "Technical assistance and cooperation" - ] - }, - { - "text": "Adopt a legislative framework for ensuring the right of all migrant children to the best possible medical services and adequate housing, and fully implement those rights ", - "values": [ - "Migrants", - "Right to health", - "Right to housing", - "Rights of the Child" - ] - }, - { - "text": "Consider requesting assistance from the international community to facilitate the implementation of its obligations in the protection and promotion of human rights ", - "values": [ - "Technical assistance and cooperation" - ] - }, - { - "text": "Strengthen its efforts in prevention, punishment and eradication of all forms of violence against women ", - "values": [ - "Women's rights" - ] - }, - { - "text": "Seek assistance in establishing a national human rights institution in accordance with the Paris Principles", - "values": [ - "National Human Rights Institution", - "Technical assistance and cooperation" - ] - }, - { - "text": "Further strengthen measures to prevent and punish trafficking in persons, especially women and children, with the prosecution of offenders and rehabilitation of victims", - "values": [ - "Rights of the Child", - "Trafficking", - "Women's rights" - ] - }, - { - "text": "Recommended amending the National Security Law to prevent abusive interpretation by the law.", - "values": [ - "Justice" - ] - }, - { - "text": "Continue efforts so that the language referring to human rights truly reflects gender equality.", - "values": [ - "Women's rights" - ] - }, - { - "text": "Take adequate and credible measures to put an end to incidents of arbitrary detention in line with international law", - "values": [ - "Detention" - ] - }, - { - "text": "Ensure that the implementation of objectives set up in the 2014 National Strategy on Public Education are in line with the objectives and goals of the Sustainable Development Goals ", - "values": [ - "Development", - "Right to education" - ] - }, - { - "text": "Ensure that media and internet laws fully comply with Kuwait's obligations to protect freedom of expression under international agreements", - "values": [ - "Freedom of opinion and expression", - "Freedom of the press" - ] - }, - { - "text": "Take effective measures to increase women's representation in decision-making positions and close the pay gap", - "values": [ - "Women's rights" - ] - }, - { - "text": "Pay particular attention to the promotion of women's participation at all levels and in all areas of public life. In this context, the delegation added that the new Government to be sworn in very soon would have a proportion of 40 per cent of female ministers", - "values": [ - "Women's rights" - ] - }, - { - "text": "Continue its efforts to ensure the full enjoyment of human rights through the participatory preparation of a national plan on human rights", - "values": [ - "General" - ] - }, - { - "text": "Improve the National Action Plan on Child Labour and expand measures adopted in the area of mining to other sectors", - "values": [ - "Labour", - "Rights of the Child" - ] - }, - { - "text": "Ensure the revised Child Care and Protection Act prohibits all corporal punishment of children, including in the home, and explicitly repeals the right to administer reasonable and moderate punishment", - "values": [ - "Rights of the Child", - "Torture and other CID treatment" - ] - }, - { - "text": "Continue its work in combating trafficking in persons, with particular attention given to children and disadvantaged groups, as envisaged in its future plan of National Strategy on trafficking prevention ", - "values": [ - "Rights of the Child", - "Trafficking" - ] - }, - { - "text": "Continue improving the protection of human rights of migrants in the health, legal, social, education, economic and labour fields ", - "values": [ - "ESC rights - general", - "Labour", - "Migrants", - "Right to education", - "Right to health" - ] - }, - { - "text": "Further adopt and implement policies and legislation to combat gender discrimination and to promote the empowerment of women, including equal job opportunities and equal remuneration for work of equal value ", - "values": [ - "Women's rights" - ] - }, - { - "text": "Continue the justice reform process by working out a Justice Sector Reform Strategy for the period after 2016", - "values": [ - "Justice" - ] - }, - { - "text": "Redouble its efforts in regard to combating trafficking in persons, particularly in combating the trafficking of children for sexual and labour exploitation, including through addressing the root causes of trafficking, establishing additional shelters for rehabilitation and social integration of victims and ensuring systematic investigation, prosecution and punishment of traffickers ", - "values": [ - "Rights of the Child", - "Trafficking" - ] - }, - { - "text": "Consolidate reconciliation and peace through scrupulous respect for projects developed in cooperation with the United Nations.", - "values": [ - "Justice" - ] - }, - { - "text": "Accelerate capacity building in order to effectively implement the NHRAP", - "values": [ - "General" - ] - }, - { - "text": "Continue to adhere to the principles and values which make up the identity of the country to promote the right to life and the family.", - "values": [ - "Other" - ] - }, - { - "text": "Continue to take measures to ensure access to quality education and, in particular, to encourage women and girls to remain in education", - "values": [ - "Right to education", - "Rights of the Child", - "Women's rights" - ] - }, - { - "text": "Develop a birth registration system", - "values": [ - "Statelessness and the right to nationality" - ] - }, - { - "text": "Continue to implement programmes aimed at ensuring that all its people have free quality health and education services ", - "values": [ - "Right to education", - "Right to health" - ] - }, - { - "text": "Intensify efforts to promote access to education and extend its coverage to all levels of schooling ", - "values": [ - "Right to education" - ] - }, - { - "text": "Increase efforts to improve access to public health by people living in rural areas.", - "values": [ - "Right to health" - ] - }, - { - "text": "Continue its policies and measures for the promotion and protection of the rights of the national minorities", - "values": [ - "Minorities" - ] - }, - { - "text": "Ratify the Convention on the Elimination of All Forms of Discrimination against Women", - "values": [ - "International instruments", - "Women's rights" - ] - }, - { - "text": "Consider imposing an official moratorium on executions toward the complete abolition of the death penalty in the country", - "values": [ - "Death penalty" - ] - }, - { - "text": "Consider the possibility of ratifying ICRMW ", - "values": [ - "International instruments", - "Labour", - "Migrants" - ] - }, - { - "text": "Establish an open, genuine, all-inclusive and effective national dialogue among different concerned parties with the aim of effectively addressing the legitimate aspirations and concerns of all the population in a democratic manner ", - "values": [ - "General" - ] - }, - { - "text": "Establish a system for data collection to better evaluate the situation of migrants, and consolidate efforts to ensure that their rights are respected", - "values": [ - "Migrants" - ] - }, - { - "text": "Continue its efforts aiming at addressing the persisting wage gap between men and women ", - "values": [ - "Women's rights" - ] - }, - { - "text": "Adopt specific measures for the protection of minors and women who have become victims of sexual exploitation, and ensure assistance to, restore the reputation of and provide rehabilitation for those victims ", - "values": [ - "Rights of the Child", - "Women's rights" - ] - }, - { - "text": "Speed up the process of ratification of the Optional Protocol to the Convention against Torture", - "values": [ - "Detention", - "International instruments", - "Torture and other CID treatment" - ] - }, - { - "text": "Strengthen existing law and practice to counter trafficking in human beings for sexual and labour exploitation, particularly of young women, focusing also on the situation in conflict-affected areas where the risk of being exposed to sexual violence or trafficking is higher", - "values": [ - "Trafficking", - "Women's rights" - ] - }, - { - "text": "Continue its efforts to alleviate poverty and promote economic and social sustainable development", - "values": [ - "Development", - "Poverty" - ] - }, - { - "text": "Respond to the challenges that prevent the effective implementation of the Gender Alert system", - "values": [ - "Women's rights" - ] - }, - { - "text": "Pursue reforms aimed at further protecting the media from undue political interference", - "values": [ - "Freedom of the press" - ] - }, - { - "text": "Take effective measures to tackle trafficking in human beings, domestic violence and sexual offences", - "values": [ - "Rights of the Child", - "Trafficking", - "Women's rights" - ] - }, - { - "text": "Accede to ICCPR, ICESCR, CAT, and the Rome Statute of the ICC ", - "values": [ - "CP rights - general", - "ESC rights - general", - "International instruments", - "Justice", - "Torture and other CID treatment" - ] - }, - { - "text": "Intensify efforts aimed at creating relocation sites and providing basic protection to internally displaced persons", - "values": [ - "Internally displaced persons" - ] - }, - { - "text": "Implement the recommendations contained in the Commission's report which were all accepted by the Government, particularly the one regarding the establishment of a programme of national reconciliation ", - "values": [ - "Justice" - ] - }, - { - "text": "Consider removing the reservations made to the ICCPR to ensure gender equality and women's empowerment", - "values": [ - "International instruments", - "Women's rights" - ] - }, - { - "text": "Sign and-or ratify the Optional Protocol to the International Covenant on Economic, Social and Cultural Rights, the two Optional Protocols to the International Covenant on Civil and Political Rights, the Optional Protocol to the Convention against Torture and other Cruel, Inhuman or Degrading Treatment or Punishment, the International Convention for the Protection of all Persons from Enforced Disappearance, the Convention on the Rights of Persons with Disabilities and its Optional Protocol, the Optional Protocol to the Convention on the Elimination of All Forms of Discrimination against Women and the Optional Protocols to the Convention on the Rights of the Child", - "values": [ - "International instruments" - ] - }, - { - "text": "Redouble its efforts to address challenges in terms of economic rights, namely to reduce unemployment and alleviate poverty", - "values": [ - "Development", - "Poverty" - ] - }, - { - "text": "Seek to expedite the current process of establishing a National Human Rights Institution, with a view to further improving the general situation of human rights in Angola", - "values": [ - "National Human Rights Institution" - ] - }, - { - "text": "Accelerate its fight against racism", - "values": [ - "Racial discrimination" - ] - }, - { - "text": "Continue to strengthen its policies and programmes for enhancing women's rights, empowerment and equality in accordance with its socio-cultural and national context", - "values": [ - "Women's rights" - ] - }, - { - "text": "Consider, with the assistance of the relevant United Nations bodies, if needed, ratifying the core international human rights instruments to which Sao Tome and Principe is not a party, starting with ICCPR and ICESCR ", - "values": [ - "CP rights - general", - "ESC rights - general", - "International instruments", - "Technical assistance and cooperation" - ] - }, - { - "text": "Improve further its cooperation with all United Nations human rights mechanisms, submitting its overdue reports to treaty bodies, as well as its response to communications of the special procedures ", - "values": [ - "Special procedures", - "Treaty bodies", - "UPR process" - ] - }, - { - "text": "Take measures to address the existing wage gap between men and women ", - "values": [ - "Women's rights" - ] - }, - { - "text": "Strengthen its efforts to ensure that the laws prohibiting violence against women and children are enforced ", - "values": [ - "Rights of the Child", - "Women's rights" - ] - }, - { - "text": "Ensure the full implementation of the National Gender Policy by allocating appropriate resources in accordance with the Convention on the Elimination of All Forms of Discrimination against Women", - "values": [ - "International instruments", - "Women's rights" - ] - }, - { - "text": "Extend the ratification of the International Convention for the Protection of All Persons from Enforced Disappearance to Aruba, Curaçao and Sint Maarten", - "values": [ - "Enforced disappearances", - "International instruments" - ] - }, - { - "text": "Adopt a comprehensive strategy in order to combat discrimination based on sexual orientation and gender identity", - "values": [ - "Sexual Orientation and Gender Identity" - ] - }, - { - "text": "Further strengthen the work of the Committee for the Prevention of Early and Enforced Marriages", - "values": [ - "Rights of the Child", - "Women's rights" - ] - }, - { - "text": "Continue to take steps to ensure the rights of LGBT persons, women, ethnic minorities, and persons with disabilities are protected, including through implementation of the four new anti-discrimination acts that entered into force in January 2014 ", - "values": [ - "Disabilities", - "Minorities", - "Racial discrimination", - "Sexual Orientation and Gender Identity", - "Women's rights" - ] - }, - { - "text": "In view of its positive cooperation with special procedures of the Human Rights Council, extend an open standing invitation to these procedures", - "values": [ - "Special procedures" - ] - }, - { - "text": "Adopt measures that will enhance the implementation of legislation combating \u201chonour\u201c killings, rape, violence against women and domestic violence", - "values": [ - "Rights of the Child", - "Women's rights" - ] - }, - { - "text": "Seek cooperation to United Nations agencies and international organizations, in order to request assistance to improve poverty indicators, access to food, drinking water and health ", - "values": [ - "Poverty", - "Right to food", - "Right to health", - "Technical assistance and cooperation" - ] - }, - { - "text": "Expedite its on-going efforts in developing comprehensive strategies, plans, programmes and projects with a view to improve the protection of women in Guatemala", - "values": [ - "Women's rights" - ] - }, - { - "text": "Persist in its efforts despite the difficulties both internal and external it has to face ", - "values": [ - "Other" - ] - }, - { - "text": "Intensify efforts to make its justice system more efficient ", - "values": [ - "Justice" - ] - }, - { - "text": "Consider an amendment to the Personal and Family Code to ensure full equality between children born in and out of wedlock", - "values": [ - "Rights of the Child" - ] - }, - { - "text": "Publish or make available precise information on the identity and number of the individuals currently awaiting execution and of those who were executed in the past year", - "values": [ - "Death penalty" - ] - }, - { - "text": "Amend article 33 of the Constitution and order 237 on the police force to ensure that its interpretation does not allow the lethal use of force by the security forces in circumstances other than those enshrined in international law, and developed in the United Nations basic principles on the use of force and firearms by officials", - "values": [ - "Human rights violations by state agents" - ] - }, - { - "text": "Step up relevant measures in order to protect and promote the rights of the socially vulnerable, inter alia through an enhancement of the legal system pertaining to this area ", - "values": [ - "Justice" - ] - }, - { - "text": "Build on the progress made to provide adequate housing through such programmes as the integrated human settlements grant and the urban settlements development grant", - "values": [ - "Right to housing" - ] - }, - { - "text": "Abolish any statutory provision which authorizes corporal punishment, in particular when the convicted is a child ", - "values": [ - "Justice", - "Rights of the Child", - "Torture and other CID treatment" - ] - }, - { - "text": "Resume bilateral negotiations with Nepal and cooperate with the Office of the United Nations High Commissioner for Refugees to facilitate the voluntary return of refugees to Bhutan and focus in particular on addressing cases involving compelling humanitarian concerns ", - "values": [ - "Asylum-seekers - refugees", - "Technical assistance and cooperation" - ] - }, - { - "text": "Take action to identify and release people in slavery, support victims and end discrimination, in particular discrimination based on caste or ethnicity. As part of this, the Government should formally acknowledge the continued existence of slavery and begin to collect detailed data on the number of people held in slavery to facilitate monitoring of eradication efforts under the 2007 anti-slavery law", - "values": [ - "Minorities", - "Racial discrimination" - ] - }, - { - "text": "Ensure Zimbabwe's Human Rights Commission has the resources and independence to carry out its mandate in accordance with Paris Principles", - "values": [ - "National Human Rights Institution" - ] - }, - { - "text": "Take adequate institutional and legal measures to effectively respond to the problem of enforced disappearances and unpunished intentional homicides", - "values": [ - "Enforced disappearances", - "Extrajudicial executions" - ] - }, - { - "text": "Strengthen the efforts of the Supreme Council for Mothers and Children and provide sufficient resources in order to coordinate the State policy in the area of the promotion of children's rights", - "values": [ - "Rights of the Child" - ] - }, - { - "text": "Establish adequate measures to ensure the real guarantee of freedom of expression recognized by article 34 of the Afghan Constitution.", - "values": [ - "Freedom of opinion and expression" - ] - }, - { - "text": "Adopt legislation aimed at ultimately abolishing death penalty.", - "values": [ - "Death penalty" - ] - }, - { - "text": "Ensure equality and non-discrimination of children born out of wedlock in issues related to the acquisition of nationality, inheritance rights and birth registration", - "values": [ - "Rights of the Child", - "Statelessness and the right to nationality" - ] - }, - { - "text": "Step up its efforts to combat racial profiling in all sectors, both public and private ", - "values": [ - "Racial discrimination" - ] - }, - { - "text": "Continue to pay particular attention to the issue of youth participation in the public decision-making process", - "values": [ - "Other" - ] - }, - { - "text": "Double its efforts in addressing the vulnerable conditions of children who live on the streets including by implementing existing legislation against child labour and its plan of action to combat child labour", - "values": [ - "Labour", - "Rights of the Child" - ] - }, - { - "text": "Ratify the Optional Protocol to the Convention against Torture, signed in 2005", - "values": [ - "Detention", - "International instruments", - "Torture and other CID treatment" - ] - }, - { - "text": "Develop further measures to combat discrimination against people living with disabilities, including by providing improved access to social and health services.", - "values": [ - "Disabilities", - "Right to health" - ] - }, - { - "text": "Look into the possibility of progressively acceding to or ratifying the major human rights conventions, starting with the International Covenant on Civil and Political Rights (ICCPR) ", - "values": [ - "CP rights - general", - "International instruments" - ] - }, - { - "text": "Establish a formal procedure to identify victims of trafficking, search for alternatives to the detention of the victims, and transfer them to the necessary services, including, when pertinent, the asylum procedure", - "values": [ - "Asylum-seekers - refugees", - "Trafficking" - ] - }, - { - "text": "Continue to take active measures to combat discrimination, to ensure equality and to strengthen the independence of the Ombudsman in order to bring it into compliance with the Paris Principles", - "values": [ - "National Human Rights Institution" - ] - }, - { - "text": "Ratify the Rome Statute of the International Criminal Court, including its Agreement on Privileges and Immunities", - "values": [ - "International instruments", - "Justice" - ] - }, - { - "text": "Recognise civil unions between people of the same sex as a first step in the fight against discrimination based on sexual orientation and gender identity", - "values": [ - "Sexual Orientation and Gender Identity" - ] - }, - { - "text": "Establish a shelter system for victims of domestic violence and undertaking public awareness campaigns against domestic violence", - "values": [ - "Human rights education and training", - "Rights of the Child", - "Women's rights" - ] - }, - { - "text": "Strengthen legislatives measures and public policies aiming at eliminating discrimination against women and promote gender equality in public and private spheres", - "values": [ - "Women's rights" - ] - }, - { - "text": "Consider ratifying other international human rights conventions, including the International Convention on the Protection of the Rights of All Migrant Workers and Members of Their Families (ICRMW)", - "values": [ - "International instruments", - "Labour", - "Migrants" - ] - }, - { - "text": "Abolish laws and practices that encourage discrimination and violence against women and girls", - "values": [ - "Rights of the Child", - "Women's rights" - ] - }, - { - "text": "Strengthen legislation and enforcement of the law to end violence against women and promotion and protection of human rights of women and girls ", - "values": [ - "Rights of the Child", - "Women's rights" - ] - }, - { - "text": "Fight against impunity and ensure that those responsible for the serious human rights violations and acts of violence perpetrated against the civilian population, including sexual violence against women and children, torture and summary executions, are brought to justice and held accountable", - "values": [ - "Extrajudicial executions", - "Impunity", - "Rights of the Child", - "Torture and other CID treatment", - "Women's rights" - ] - }, - { - "text": "Provide the National Human Rights Council with the budgetary, administrative and political independence, which is necessary to exercise its new mandate", - "values": [ - "National Human Rights Institution" - ] - }, - { - "text": "Continue to refine its domestic legislation in the field of human rights and freedoms ", - "values": [ - "General" - ] - }, - { - "text": "Continue promoting the process of penal reform, taking into account the international obligations that the State has undertaken in the field of human rights", - "values": [ - "Justice" - ] - }, - { - "text": "Explore the possibility of upgrading equipment and providing human rights education and training for police and other law enforcement personnel in the effort to improve the security situation and to further restore public confidence, in support of the police and other security forces in the country ", - "values": [ - "Human rights education and training" - ] - }, - { - "text": "Continue promoting its social programmes for the greater good of its people", - "values": [ - "ESC rights - general" - ] - }, - { - "text": "Continue to implement measures to facilitate public access to adequate housing ", - "values": [ - "Right to housing" - ] - }, - { - "text": "Fully implement the Rural Food Support and Supply Programme, the Social Milk Programme, the Living Better Food Supplement Programme and the Comprehensive Food Aid Strategy, with a view to meeting the food requirements of the must vulnerable sections of society", - "values": [ - "Right to food" - ] - }, - { - "text": "Establish an independent body that is authorized to receive complaints on violence and abuses by the police", - "values": [ - "Human rights violations by state agents", - "National Human Rights Institution" - ] - }, - { - "text": "Strive to deliver basic services to the local population, protect freedom of expression and raise awareness of gender-based violence ", - "values": [ - "Freedom of opinion and expression", - "Women's rights" - ] - }, - { - "text": "Hold free and fair elections guaranteeing for all persons the right to participate in the country's Government", - "values": [ - "Elections" - ] - }, - { - "text": "Effectively implement the Zero Hunger Challenge Initiative to reduce hunger and malnutrition", - "values": [ - "Right to food" - ] - }, - { - "text": "Intensify the ongoing awareness-raising measures with the aim of protecting and promoting the rights of migrant workers ", - "values": [ - "Labour", - "Migrants" - ] - }, - { - "text": "Declare a moratorium on the death penalty until its complete abolition", - "values": [ - "Death penalty" - ] - }, - { - "text": "Continue efforts to implement the National Action Plan for the protection and promotion and human rights", - "values": [ - "General" - ] - }, - { - "text": "Address prison overcrowding and separate children from adult prisoners", - "values": [ - "Detention", - "Rights of the Child" - ] - }, - { - "text": "Protect the rights of internally displaced persons and fight discrimination against them", - "values": [ - "Internally displaced persons", - "Racial discrimination" - ] - }, - { - "text": "Consider ratifying the Second Optional Protocol to the ICCPR ", - "values": [ - "Death penalty", - "International instruments" - ] - }, - { - "text": "Facilitate the implementation of a birth registration system to allow immediate registration at birth, independently of the status or nationality of parents", - "values": [ - "Rights of the Child", - "Statelessness and the right to nationality" - ] - }, - { - "text": "Redouble efforts aimed at reducing the high incidence of female genital mutilation and other practices that are harmful and discriminate against women", - "values": [ - "Rights of the Child", - "Torture and other CID treatment", - "Women's rights" - ] - }, - { - "text": "On the issue of trafficking, measures had been taken to ensure the adequate care of victims in the context of judicial proceedings. Also, the number of specialized trainings had increased for staff in the police, the prosecutors' offices, the judiciary, the migration office and the health and education ministries. The delegation committed itself to the prompt adoption of the regulation implementing Law 79/2011, to the provision of a budget to the National Commission against Trafficking in Persons and to the building of a shelter for victims of human trafficking, in accordance with international standards", - "values": [ - "Trafficking" - ] - }, - { - "text": "Incorporate the international framework on the prevention of torture and other cruel, inhuman or degrading treatment in the training of law enforcement officials and other public officials, as well as in the permanent training programme of judges and lawyers", - "values": [ - "Human rights education and training", - "Torture and other CID treatment" - ] - }, - { - "text": "Take further initiatives towards protecting and promoting the rights of marginalized and vulnerable population ", - "values": [ - "Minorities" - ] - }, - { - "text": "Share with the international community its experience in promoting the right to development and poverty reduction", - "values": [ - "Development", - "Poverty" - ] - }, - { - "text": "Continue efforts to establish effective consultation processes with communities in accordance with international standards with regard to any project that affects the territory or livelihoods of indigenous people", - "values": [ - "Indigenous peoples", - "Right to land" - ] - }, - { - "text": "Strengthen the implementation of the measures set out in the five-year plan of action for elderly people", - "values": [ - "Other" - ] - }, - { - "text": "Request the international community assist the Democratic Republic of the Congo in strengthening the operational capacities of its provincial human rights divisions within the country", - "values": [ - "Technical assistance and cooperation" - ] - }, - { - "text": "Continue its efforts to promote human rights, in particular in the area of education and in providing health services", - "values": [ - "Right to education", - "Right to health" - ] - }, - { - "text": "Raise awareness on the responsibility to investigate cases of human rights violations against women and girls in the IDP camps", - "values": [ - "Internally displaced persons", - "Rights of the Child", - "Women's rights" - ] - }, - { - "text": "Pass a law ending the illegal circulation of firearms and take measures required to protect the right to life of citizens ", - "values": [ - "Public security" - ] - }, - { - "text": "Accelerate its efforts on combatting human trafficking ", - "values": [ - "Trafficking" - ] - }, - { - "text": "Take the necessary measures to eliminate the limitations suffered by children with disabilities in accessing education, health and other services", - "values": [ - "Disabilities", - "Rights of the Child" - ] - }, - { - "text": "Strengthen its capacity to provide care and support for children infected or affected by HIV/AIDS, particularly those orphaned", - "values": [ - "HIV - Aids", - "Rights of the Child" - ] - }, - { - "text": "Ensure that asylum seekers, while awaiting the reviewing of their status, are protected from refoulement and afforded equal and effective access to essential services ", - "values": [ - "Asylum-seekers - refugees" - ] - }, - { - "text": "Extend invitations to all United Nations Special Rapporteur mandate holders, in particular the Special Rapporteur on the situation of human rights defenders and the Special Rapporteur on torture ", - "values": [ - "Human rights defenders", - "Special procedures", - "Torture and other CID treatment" - ] - }, - { - "text": "Dismantle and disarm the paramilitary forces, militias and armies through the revocation of Executive Order 546 that protects their existence, putting an end to the use of child soldiers ", - "values": [ - "International humanitarian law", - "Public security", - "Rights of the Child" - ] - }, - { - "text": "Accede to the Convention against Torture", - "values": [ - "International instruments", - "Torture and other CID treatment" - ] - }, - { - "text": "Continue making progress in expanding the coverage for the Subsidized Family Health Insurance Scheme and the Contributory Family Health Insurance ", - "values": [ - "Right to health" - ] - }, - { - "text": "Continue to promote sustainable economic and social development and improve the living standards of the people", - "values": [ - "Development", - "ESC rights - general" - ] - }, - { - "text": "Broaden the understanding of the definition of trafficking and to mainstream a human-rights based approach in dealing with policies directed towards eliminating trafficking in persons", - "values": [ - "Trafficking" - ] - }, - { - "text": "Strengthen actions to ensure the effective implementation of legislation aiming at reducing and eliminating trafficking and smuggling of persons", - "values": [ - "Trafficking" - ] - }, - { - "text": "Continue its legal measures in further safeguarding the implementation of human rights", - "values": [ - "General" - ] - }, - { - "text": "Acknowledge publicly the work of human rights defenders and trade unionists as legitimate and refrain from making public statements that could be seen as delegitimizing these groups or linking them with illegal guerrilla groups.", - "values": [ - "Human rights defenders", - "Labour" - ] - }, - { - "text": "Increase its cooperation with OHCHR, as pledged before its accession to the Human Rights Council", - "values": [ - "Other" - ] - }, - { - "text": "Strengthen legal protection for women and ensure gender equality and non-discrimination", - "values": [ - "Women's rights" - ] - }, - { - "text": "Put an end to impunity, investigate crimes, and bring perpetrators to trials. ", - "values": [ - "Impunity" - ] - }, - { - "text": "Strengthen policies and measures to ensure better respect and protection of all human rights, specially in the fields of fundamental economic, social and cultural rights and the right to development ", - "values": [ - "Development", - "ESC rights - general" - ] - }, - { - "text": "Amend the criminal procedure code in order to ensure the right to a lawyer and put in place a law for the protection of witnesses", - "values": [ - "Justice" - ] - }, - { - "text": "Develop all possible efforts to preserve freedom of expression in the media and social networks, in accordance with the recommendations of the universal and regional human rights systems", - "values": [ - "Freedom of opinion and expression", - "Freedom of the press" - ] - }, - { - "text": "Continue to strengthen mechanisms to prevent and eliminate all forms of discrimination and xenophobic speech against foreigners, migrants and multicultural families", - "values": [ - "Migrants", - "Racial discrimination" - ] - }, - { - "text": "Continue its efforts to address sexual and gender-based violence, in particular by developing effective mechanisms to prevent violence against women and girls", - "values": [ - "Rights of the Child", - "Women's rights" - ] - }, - { - "text": "Establish an official moratorium on the use of the death penalty with a view to abolishing it", - "values": [ - "Death penalty" - ] - }, - { - "text": "Review its discriminatory national laws on security and adopt sensitization campaigns to protect against racial profiling and stereotyping on the grounds of nationality, ethnicity, descent and race, with regards to terrorism, as suggested by CERD", - "values": [ - "Human rights education and training", - "Racial discrimination", - "Treaty bodies" - ] - }, - { - "text": "Accede to and fully implement the 1961 Convention on the Reduction of Statelessness and ensure that all otherwise stateless persons in the country have access to a procedure that will facilitate the acquisition of a nationality", - "values": [ - "International instruments", - "Statelessness and the right to nationality" - ] - }, - { - "text": "Implement a single harmonized national school core curriculum, agreed upon by the representatives of the country's ethnic groups and national minorities", - "values": [ - "Minorities", - "Right to education" - ] - }, - { - "text": "Adopt and apply measures aimed at guaranteeing full respect for human rights and international humanitarian law for all refugees", - "values": [ - "Asylum-seekers - refugees", - "International humanitarian law" - ] - }, - { - "text": "Ensure that relevant authorities, particularly at the local and district levels, are aware of their duty to protect individuals' right to freedom of religion ", - "values": [ - "Freedom of religion and belief", - "Human rights education and training" - ] - }, - { - "text": "Intensify efforts to ratify the Convention against Torture and other Cruel, Inhumane or Degrading Treatment or Punishment", - "values": [ - "International instruments", - "Torture and other CID treatment" - ] - }, - { - "text": "Argentina undertakes to continue working to strengthen the United Nations treaty bodies, focusing in particular on improving their accessibility for victims of human rights abuses and on expanding the channels of participation and the opportunities for interaction open to civil society organizations", - "values": [ - "Civil society", - "Treaty bodies" - ] - }, - { - "text": "Ratify core international human rights conventions, in particular CAT and CEDAW", - "values": [ - "Torture and other CID treatment", - "Women's rights" - ] - }, - { - "text": "Continue to invest and take appropriate measures to ensure that all school age children enjoy fully the right to education", - "values": [ - "Right to education", - "Rights of the Child" - ] - }, - { - "text": "Accede to the international treaties on human rights and ratify the Second Optional Protocol to ICCPR", - "values": [ - "Death penalty", - "International instruments" - ] - }, - { - "text": "In follow-up to recommendations 135.8, 135.48 and 135.55 of the second cycle, continue to improve the quality of public education, particularly for those living below the poverty line, with emphasis on psychological health and the psychosocial elements of a quality learning environment", - "values": [ - "Poverty", - "Right to education", - "Right to health" - ] - }, - { - "text": "Implement the legislation to prevent and repress marriages between minors by fixing the legal age for marriage at 18 for men and women", - "values": [ - "Rights of the Child", - "Women's rights" - ] - }, - { - "text": "Seek technical expertise from the Special Procedure mechanism by issuing a standing invitation to all Rapporteurs ", - "values": [ - "Special procedures", - "Technical assistance and cooperation" - ] - }, - { - "text": "Urgently move to ratify the Convention on the Rights of Persons with Disabilities, the Convention on the Rights of the Child and the Convention on the Elimination of All forms of Discrimination against Women", - "values": [ - "Disabilities", - "International instruments", - "Rights of the Child", - "Women's rights" - ] - }, - { - "text": "Establish a formal moratorium on the death penalty and ratify the Second Optional Protocol to the International Covenant on Civil and Political Rights, with a view to abolishing the death penalty both in practice and in law", - "values": [ - "Death penalty", - "International instruments" - ] - }, - { - "text": "Guarantee the full exercise of freedom of association, promote and facilitate the activities of all non-governmental organizations", - "values": [ - "Civil society", - "Freedom of association and peaceful assembly" - ] - }, - { - "text": "Conduct a review of its application of the 1984 safeguards, as adopted by ECOSOC 1984-50", - "values": [ - "Death penalty" - ] - }, - { - "text": "Reinforce the fruitful cooperation with the treaty body organs of the United Nations", - "values": [ - "Technical assistance and cooperation", - "Treaty bodies" - ] - }, - { - "text": "Continue the work to achieve equal representation for men and women not only in the National Assembly, but also at all the levels of State powers", - "values": [ - "Women's rights" - ] - }, - { - "text": "Modify its national legislation in order to eliminate any discriminatory provisions based on gender. ", - "values": [ - "Women's rights" - ] - }, - { - "text": "Work closely with the international community towards the priority goal of education for all, especially children with disabilities ", - "values": [ - "Disabilities", - "Right to education", - "Rights of the Child" - ] - }, - { - "text": "Ratify the Optional Protocol to the Convention on the Rights of the Child on the sale of children, child prostitution and child pornography and the Hague Convention on Protection of Children and Co-operation in Respect of Intercountry Adoption ", - "values": [ - "International instruments", - "Rights of the Child", - "Trafficking" - ] - }, - { - "text": "Operationalize the Public Benefits Organizations Act of 2013 as a law facilitating an independent and unhindered work of civil society, and refrain from enacting restrictive requirements with stifling effect on the country's non-governmental organizations, their functioning and funding", - "values": [ - "Civil society", - "Freedom of association and peaceful assembly" - ] - }, - { - "text": "Take necessary measures to enhance the enjoyment of the freedom of expression", - "values": [ - "Freedom of opinion and expression" - ] - }, - { - "text": "Continue to implement programs aimed at improving the quality of and access to education, giving particular attention to the needs of children from underprivileged families, including those in the rural and underserved areas ", - "values": [ - "Right to education", - "Rights of the Child" - ] - }, - { - "text": "Ensure the independence of the judiciary, including by investigating allegations of corruption", - "values": [ - "Corruption", - "Justice" - ] - }, - { - "text": "Amend or revoke section 377 to decriminalize same-sex relations", - "values": [ - "Sexual Orientation and Gender Identity" - ] - }, - { - "text": "Repeal the constitutional and legislative provisions criminalizing the offense of blasphemy, these provisions could constitute an excessive limitation to the freedom of expression", - "values": [ - "Freedom of opinion and expression", - "Freedom of religion and belief" - ] - }, - { - "text": "Adopt a no drop policy to ensure that all cases of domestic violence are properly investigated.", - "values": [ - "Rights of the Child", - "Women's rights" - ] - }, - { - "text": "Increase its Official Development Aid with a view to reaching the UN target of 0.7 per cent", - "values": [ - "Development" - ] - }, - { - "text": "Continue its efforts to protect the rights of all foreign workers and members of their families ", - "values": [ - "Migrants" - ] - }, - { - "text": "The delegation committed to adopting a whole series of recommendations to improve the living conditions of internally displaced persons further.", - "values": [ - "Internally displaced persons" - ] - }, - { - "text": "Make further efforts to address discrimination against women with a view to eliminating obstacles to the achievement of gender equality", - "values": [ - "Women's rights" - ] - }, - { - "text": "Continue with its efforts to improve the status of women and empower them", - "values": [ - "Women's rights" - ] - }, - { - "text": "Continue intensifying its efforts to ratify the CED ", - "values": [ - "Enforced disappearances", - "International instruments" - ] - }, - { - "text": "Fully implement the 2013 Constitution and, in particular, ensure operationalization of its key institutions, including the National Peace and Reconciliation Commission", - "values": [ - "Justice" - ] - }, - { - "text": "Adopt specific legislation to ensure equal opportunities for women in the labour market", - "values": [ - "Women's rights" - ] - }, - { - "text": "Address more effectively cases of gender-based violence including by their proper and effective investigations and adequate prosecution of perpetrators ", - "values": [ - "Rights of the Child", - "Women's rights" - ] - }, - { - "text": "Urgently implement legislation that specifically addresses child sexual exploitation through electronic images and take appropriate measures to ensure adequate legal protection of children, including boys, against commercial sexual exploitation ", - "values": [ - "Labour", - "Rights of the Child" - ] - }, - { - "text": "Provide women that have been unjustifiably denied access to adequate reproductive health services with an effective redress mechanism ", - "values": [ - "Right to health", - "Women's rights" - ] - }, - { - "text": "Expedite efforts aimed at closing the detention facility at Guantanamo Bay and ensure that all remaining detainees are tried, without delay, in accordance with the relevant international standards ", - "values": [ - "Detention", - "Justice" - ] - }, - { - "text": "Continue extending its international commitments and consider ratification of the Rome Statute of the International Criminal Court ", - "values": [ - "International instruments", - "Justice" - ] - }, - { - "text": "Ratify the Convention on the Rights of Persons with Disabilities signed in 2007 ", - "values": [ - "Disabilities", - "International instruments" - ] - }, - { - "text": "Expedite reforms underway with a view to putting in place the CNDHC", - "values": [ - "National Human Rights Institution" - ] - }, - { - "text": "Make every effort to guarantee the right to religious conversion and to respect the freedom of religion, in particular, enabling religious practice", - "values": [ - "Freedom of religion and belief" - ] - }, - { - "text": "Consider becoming a party to OP-CAT ", - "values": [ - "Detention", - "International instruments", - "Torture and other CID treatment" - ] - }, - { - "text": "Refrain from refouling or expelling persons to another state when there are grounds to believe they will be subject to torture", - "values": [ - "Asylum-seekers - refugees" - ] - }, - { - "text": "Accede to the Second Optional Protocol to ICCPR aimed at abolishing the death penalty, and ICCPR itself and take all necessary steps to remove the death penalty from Saint Lucia's justice system ", - "values": [ - "CP rights - general", - "Death penalty", - "International instruments" - ] - }, - { - "text": "Continue further work on the protection of vulnerable groups of the population, such as women, children and youth", - "values": [ - "Rights of the Child", - "Women's rights" - ] - }, - { - "text": "Guarantee freedom of expression in all its forms and ensure investigations into attacks against journalists and the media and bring those responsible to justice", - "values": [ - "Freedom of opinion and expression", - "Freedom of the press" - ] - }, - { - "text": "Consider ratifying the Rome Statute of ICC", - "values": [ - "International instruments", - "Justice" - ] - }, - { - "text": "Strengthen measures aimed at eliminating child labour to protect girls, children with disabilities, children in institutions and children born out of wedlock against discrimination and to increase the attention accorded to protecting the rights of the child in the area of juvenile justice", - "values": [ - "Disabilities", - "Justice", - "Labour", - "Rights of the Child" - ] - }, - { - "text": "Make 18 years the minimum age of marriage for women and men", - "values": [ - "Rights of the Child", - "Women's rights" - ] - }, - { - "text": "Strengthen mechanism for the implementation of legislation in force including laws against discrimination and the manifestation of racism ", - "values": [ - "Racial discrimination" - ] - }, - { - "text": "Further protect children against violence and child labour through the strengthening of legislation, in order to safeguard their well-being and their right to education", - "values": [ - "Labour", - "Right to education", - "Rights of the Child" - ] - }, - { - "text": "Maintain the peaceful atmosphere that was created by the Comprehensive Peace Agreement throughout the six years of the transitional period, by taking measures to reduce tension and all parties should refrain from taking any unilateral steps that would undermine the purpose of the Agreement ", - "values": [ - "Other" - ] - }, - { - "text": "Ensure legal ownership and return or restitution of houses and lands to internally displaced persons, according to international standards", - "values": [ - "Internally displaced persons", - "Right to housing", - "Right to land" - ] - }, - { - "text": "Maintain and strengthen its efforts to promote the rights of women, stressing particularly the guarantee of equal opportunity in the labour market ", - "values": [ - "Women's rights" - ] - }, - { - "text": "Continue with initiatives to promote national reconciliation", - "values": [ - "Justice" - ] - }, - { - "text": "Ensure that coercive measures in mental health institutions are only applied when necessary and in a proportionate manner ", - "values": [ - "Right to health" - ] - }, - { - "text": "Continues with its efforts to promote and protect human rights and freedoms ", - "values": [ - "General" - ] - }, - { - "text": "Make further efforts to improve judicial system as a step towards ensuring the security of IDPs, one of whose priority concerns is to be able to return home.", - "values": [ - "Internally displaced persons" - ] - }, - { - "text": "Eliminate disparities between girls and boys in the educational system", - "values": [ - "Right to education", - "Rights of the Child", - "Women's rights" - ] - }, - { - "text": "Step up human rights education for traditional authorities", - "values": [ - "Human rights education and training" - ] - }, - { - "text": "Continue with efforts to combat discrimination and abandonment of children with disabilities", - "values": [ - "Disabilities", - "Rights of the Child" - ] - }, - { - "text": "Review and address gaps in education and training policies and outline strategies to ensure employment growth, improve working conditions and provide equal opportunities", - "values": [ - "Development" - ] - }, - { - "text": "Consider the possibility of acceding to the International Covenant on Economic, Social and Cultural Rights ", - "values": [ - "ESC rights - general", - "International instruments" - ] - }, - { - "text": "Continue the efforts made to combat discriminatory practices based on age or religion, and undertake corresponding investigations of acts of domestic violence for social motivations ", - "values": [ - "Freedom of religion and belief", - "Racial discrimination", - "Rights of the Child", - "Women's rights" - ] - }, - { - "text": "Strengthen norms and programmes to combat discrimination and violence based on sexual orientation and gender identity", - "values": [ - "Sexual Orientation and Gender Identity" - ] - }, - { - "text": "Take necessary measures to promote girls' access to education, particularly in rural areas ", - "values": [ - "Right to education", - "Rights of the Child", - "Women's rights" - ] - }, - { - "text": "Make further progress with the domestic implementation of international conventions it has ratified and adopt stringent measures, including legislation and awareness-raising campaigns, with a view to eliminating traditional and cultural practices that discriminate against women and girls", - "values": [ - "Human rights education and training", - "International instruments", - "Rights of the Child", - "Women's rights" - ] - }, - { - "text": "Include human rights and citizenship rights in the curriculum of schools and the training courses of law enforcement officials ", - "values": [ - "Human rights education and training" - ] - }, - { - "text": "Indonesia, in line with its National Plan of Action, is encouraged to follow through on its intention to accede to the Rome Statute of the International Criminal Court, the Optional Protocol to the Convention on the Rights of the Child on involvement of children in armed conflict, the Optional Protocol to the Convention on the Rights of the Child on the sale of Children, child prostitution and child pornography and the Optional Protocol to the Convention against Torture, Cruel, Inhuman and Other Degrading Treatment. Indonesia is further encouraged to consider signing the International Convention on the Protection of All Persons from Enforced Disappearance", - "values": [ - "International instruments" - ] - }, - { - "text": "Conduct awareness campaigns to promote birth registration of all children and take the necessary measures to ensure easy and effective access to free birth registration for the newborn", - "values": [ - "Rights of the Child", - "Statelessness and the right to nationality" - ] - }, - { - "text": "Consider ratification of ICCPR-OP 2, aiming at abolition of the death penalty", - "values": [ - "Death penalty", - "International instruments" - ] - }, - { - "text": "Accede to the Optional Protocol to the Convention on the Elimination of All Forms of Discrimination against Women ", - "values": [ - "International instruments", - "Women's rights" - ] - }, - { - "text": "Submit overdue reports to treaty bodies", - "values": [ - "Treaty bodies" - ] - }, - { - "text": "Establish a national human rights institution in compliance with the Paris Principles.", - "values": [ - "National Human Rights Institution" - ] - }, - { - "text": "Share its experiences and best practices, especially on how to achieve the MDGs, with other countries. ", - "values": [ - "Development" - ] - }, - { - "text": "Take the measures necessary to ensure freedom of expression, promote diversity of opinion and prevent all interference with freedom of the press and, inter alia, systematically investigate aggression or threats against journalists and bring to justice those responsible", - "values": [ - "Freedom of opinion and expression", - "Freedom of the press" - ] - }, - { - "text": "Pay attention to the rights of minorities and equality and non- discrimination of women", - "values": [ - "Minorities", - "Women's rights" - ] - }, - { - "text": "Continue its efforts to integrate human rights in school curricula ", - "values": [ - "Human rights education and training" - ] - }, - { - "text": "Continue efforts to eliminate discrimination against indigenous peoples", - "values": [ - "Indigenous peoples" - ] - }, - { - "text": "Guarantee the right to freedom of expression, association and peaceful assembly and the right to participate in public and political life. To reach this goal, amend all laws violating these rights and bring them in line with international human rights standards, namely the Criminal Code, the Press and Communication Code and Law No. 2011-010 on freedom of assembly and public and peaceful demonstrations", - "values": [ - "Freedom of association and peaceful assembly", - "Freedom of opinion and expression" - ] - }, - { - "text": "Initiate timely, independent, impartial and effective investigations into threats and attacks against human rights defenders, particularly indigenous defenders, to ensure their effective protection", - "values": [ - "Human rights defenders", - "Indigenous peoples" - ] - }, - { - "text": "Increase budget allocations for the education and health sectors", - "values": [ - "Right to education", - "Right to health" - ] - }, - { - "text": "Continue with the implementation of its national strategy of environmental protection", - "values": [ - "Environment" - ] - }, - { - "text": "Continue to restore order throughout the country in order to enable the population to resume their economic and social activities", - "values": [ - "ESC rights - general", - "Public security" - ] - }, - { - "text": "Strengthen the mechanisms aimed at the advancement of women's rights as well as of their participation in decision-making processes", - "values": [ - "Women's rights" - ] - }, - { - "text": "Take concrete steps to ensure continued stability in terms of the food supply chain to the country, including through bilateral and other arrangements with the international donor community", - "values": [ - "Right to food", - "Technical assistance and cooperation" - ] - }, - { - "text": "Consider ratifying the OP-CRC-SC ", - "values": [ - "International instruments", - "Rights of the Child", - "Trafficking" - ] - }, - { - "text": "Ensure that the rights of the child are fully respected in accordance with the Convention on the Rights of the Child, in particular its Article 20 when deciding on appointment of a guardian or trustee", - "values": [ - "International instruments", - "Rights of the Child" - ] - }, - { - "text": "To Republika Srpska repeal the death penalty from its Constitution", - "values": [ - "Death penalty" - ] - }, - { - "text": "Investigate properly all alleged cases of mistreatment and torture and establish accountability of those responsible ", - "values": [ - "Torture and other CID treatment" - ] - }, - { - "text": "Further work on primary education enrolment", - "values": [ - "Right to education" - ] - }, - { - "text": "Continue its efforts to promote and protect the rights of women, children and persons with disabilities, and pay particular attention to the population in rural areas ", - "values": [ - "Disabilities", - "Rights of the Child", - "Women's rights" - ] - }, - { - "text": "Establish a moratorium on the death penalty, as the first step towards its full abolition", - "values": [ - "Death penalty" - ] - }, - { - "text": "Pursue efforts to promote the quality of education and to establish mandatory free education for all", - "values": [ - "Right to education" - ] - }, - { - "text": "Ensure effective and independent investigations into all reports of torture and extrajudicial executions by members of the security forces.", - "values": [ - "Extrajudicial executions", - "Torture and other CID treatment" - ] - }, - { - "text": "Establish effective mechanisms of dialogue with human rights defenders in the field of sexual minorities ", - "values": [ - "Human rights defenders", - "Minorities" - ] - }, - { - "text": "Continue efforts to become a party to the seven core human rights treaties.", - "values": [ - "International instruments" - ] - }, - { - "text": "Adhere to the Optional Protocol to the Convention on the Rights of the Child on a communications procedure", - "values": [ - "International instruments", - "Rights of the Child" - ] - }, - { - "text": "Continue pursuing appropriate, efficient policies, including awareness-raising campaigns, to eliminate discriminatory gender stereotypes ", - "values": [ - "Human rights education and training", - "Women's rights" - ] - }, - { - "text": "Conduct gender competence and domestic violence law training of its law enforcement agencies, including the police, prosecutors and judiciary", - "values": [ - "Human rights education and training", - "Rights of the Child", - "Women's rights" - ] - }, - { - "text": "Reconsider the ratification of the Convention on the Protection of the Rights of All Migrant Workers and Members of Their Families", - "values": [ - "International instruments", - "Labour", - "Migrants" - ] - }, - { - "text": "Take immediate action to bring to an end the prevailing impunity for human rights violations in the country", - "values": [ - "Impunity" - ] - }, - { - "text": "Move towards the conclusion of the electoral process to guarantee civil and political rights of all citizens", - "values": [ - "Civil society", - "Elections" - ] - }, - { - "text": "Remove all obstacles that obstruct effective access to justice, considering the acknowledgement of alarming rates of violence against women, and adopt appropriate measures to increase women's basic legal training and knowledge of their rights, including the right to obtain legal reparation though the courts", - "values": [ - "Human rights education and training", - "Justice", - "Women's rights" - ] - }, - { - "text": "Complete the national process on the establishment of a National Preventative Mechanism in accordance with OP-CAT", - "values": [ - "Detention", - "International instruments", - "Torture and other CID treatment" - ] - }, - { - "text": "Consider ratifying remaining core human rights treaties, namely: ICESCR, ICCPR, ICERD and CAT", - "values": [ - "CP rights - general", - "ESC rights - general", - "International instruments", - "Racial discrimination", - "Torture and other CID treatment" - ] - }, - { - "text": "Unconditionally abolish its extraterritorial legislation on human rights and other related matters against other countries including the North Korea Human Rights Act, as these legislations represent flagrant breach of their sovereignty and insulting violations of the dignity and the rights of the people", - "values": [ - "Other" - ] - }, - { - "text": "Ratify OP-CRC-AC and OP-CRC-SC", - "values": [ - "International humanitarian law", - "International instruments", - "Rights of the Child", - "Trafficking" - ] - }, - { - "text": "Consider acceding to the Convention against Torture and Other Cruel, Inhuman or Degrading Treatment or Punishment ", - "values": [ - "International instruments", - "Torture and other CID treatment" - ] - }, - { - "text": "Carry on the efforts for the empowerment of women and provide employment opportunities for women", - "values": [ - "Women's rights" - ] - }, - { - "text": "Ratify ICCPR-OP 1 and ICESCR ", - "values": [ - "CP rights - general", - "ESC rights - general", - "International instruments" - ] - }, - { - "text": "Bring the case against former President Habré to trial as quickly as possible", - "values": [ - "Justice" - ] - }, - { - "text": "Safeguard journalists and writers, especially those working for State-owned media houses or public broadcasters, so they can work freely and without fear of reprisal for expressing critical opinions or covering subjects that the Government may find sensitive", - "values": [ - "Freedom of the press" - ] - }, - { - "text": "Put in place appropriate regulatory and enforcement measures to increase compliance with the Domestic Violence Act and the Female Genital Mutilation act, and take steps to ensure that acts of violence against women, including women with disabilities, are investigated and prosecuted", - "values": [ - "Disabilities", - "Rights of the Child", - "Torture and other CID treatment", - "Women's rights" - ] - }, - { - "text": "Continue with efforts to effectively address gender pay gap and ensure equal pay for work of equal value in public and private sector and report on the results in the following universal periodic review cycle", - "values": [ - "Women's rights" - ] - }, - { - "text": "Take appropriate measures to ease restrictions on freedom of expression and freedom of the media", - "values": [ - "Freedom of opinion and expression", - "Freedom of the press" - ] - }, - { - "text": "Increase efforts to protect journalists", - "values": [ - "Freedom of the press" - ] - }, - { - "text": "Consider amending its domestic laws to grant women equal rights with men with regard to transmission of their nationality to their children", - "values": [ - "Rights of the Child", - "Statelessness and the right to nationality", - "Women's rights" - ] - }, - { - "text": "Combat racial profiling, as urged by the Human Rights Committee and Committee on the Elimination of Racial Discrimination", - "values": [ - "Racial discrimination", - "Treaty bodies" - ] - }, - { - "text": "Increase available resources for education. ", - "values": [ - "Right to education" - ] - }, - { - "text": "Ensure adequate financial resources, both from the national budget as well as through regional and international cooperation, for the implementation of the Strategy for the Inclusion of Romanian Belonging to Roma Minority ", - "values": [ - "Minorities" - ] - }, - { - "text": "In order to further strengthen the fulfilment of children\u2019s rights, ratify the Optional Protocol to the Convention on the Rights of the Child on a communications procedure", - "values": [ - "International instruments", - "Rights of the Child" - ] - }, - { - "text": "Continue to strengthen measures focused on employment for persons, women, with disabilities ", - "values": [ - "Development", - "Disabilities", - "Women's rights" - ] - }, - { - "text": "Consider formally abolishing the death penalty and acceding to the Second Optional Protocol to the ICCPR, aimed at abolishing the death penalty", - "values": [ - "Death penalty", - "International instruments" - ] - }, - { - "text": "Continue to provide greater technical assistance to developing countries", - "values": [ - "Development", - "Technical assistance and cooperation" - ] - }, - { - "text": "Implement obligations under the Optional Protocol to CAT, ensuring the establishment of one or various independent national preventive mechanisms", - "values": [ - "Detention", - "International instruments", - "Torture and other CID treatment" - ] - }, - { - "text": "Continue adopting effective measures to fight against discrimination", - "values": [ - "Other" - ] - }, - { - "text": "Improve protection mechanisms for migrants and consider establishing return programmes for migrants", - "values": [ - "Migrants" - ] - }, - { - "text": "Intensify efforts to submit due reports to treaty bodies ", - "values": [ - "Treaty bodies" - ] - }, - { - "text": "Consider ratifying the Optional Protocol to the Convention against Torture (OPCAT)", - "values": [ - "Detention", - "International instruments", - "Torture and other CID treatment" - ] - }, - { - "text": "Improve women empowerment and emancipation, and provide them with a bigger role to play in the society ", - "values": [ - "Women's rights" - ] - }, - { - "text": "Step up efforts to enact legislation to implement the Convention on the Rights of the Child", - "values": [ - "International instruments", - "Rights of the Child" - ] - }, - { - "text": "Support the United Nations Declaration on the Rights of Indigenous Peoples, and devote attention to the recommendations made by the Special Rapporteur on the situation of human rights and fundamental freedoms of indigenous peoples, after her visit to the country ", - "values": [ - "Indigenous peoples", - "International instruments", - "Special procedures" - ] - }, - { - "text": "All allegations of human rights violations, including those against members of the armed forces and of the Séléka, should be thoroughly and impartially investigated, and those responsible for any such violations prosecuted", - "values": [ - "Human rights violations by state agents" - ] - }, - { - "text": "Adhere to the following international instruments: the Optional Protocol to the International Covenant on Economic, Social and Cultural Rights, and the Optional Protocol to CEDAW", - "values": [ - "ESC rights - general", - "International instruments", - "Women's rights" - ] - }, - { - "text": "Keep working in cooperation with OHCHR on the theme of the upcoming Review Conference on racism, racial discrimination, xenophobia and related intolerance as it enters the final phase of its preparatory process", - "values": [ - "Racial discrimination" - ] - }, - { - "text": "Maintain its positive record on the peaceful coexistence of people of different religions, in particular by organizing the Congress of Leaders of World and Traditional Religions, which brings together senior representatives of world and traditional religions", - "values": [ - "Freedom of religion and belief" - ] - }, - { - "text": "Take concrete measures in order to reduce the number of school dropouts by establishing a quality educational and pedagogical system which will also include all children and adolescents", - "values": [ - "Right to education" - ] - }, - { - "text": "Take additional measures to prevent abuse of children, particularly in schools, to investigate such abuses and bring perpetrators to trial", - "values": [ - "Rights of the Child", - "Torture and other CID treatment" - ] - }, - { - "text": "Continue to implement policies which guarantee the effective right to freedom of religion for the Muslim minority of Thrace", - "values": [ - "Freedom of religion and belief", - "Minorities" - ] - }, - { - "text": "Undertake to provide free and accessible health care for children up to the age of 6 years by 2015", - "values": [ - "Right to health", - "Rights of the Child" - ] - }, - { - "text": "Adopt the Sexual Offences and Domestic Violence Bill especially to protect women from gender based-violence", - "values": [ - "Rights of the Child", - "Women's rights" - ] - }, - { - "text": "Take necessary measures to strengthen identification, rehabilitation and social integration of victims of trafficking in human beings, including by providing them with shelter and assistance", - "values": [ - "Trafficking" - ] - }, - { - "text": "Promptly investigate all allegations of torture, arbitrary detention, extra-judicial and summary executions and punish perpetrators", - "values": [ - "Detention", - "Extrajudicial executions", - "Torture and other CID treatment" - ] - }, - { - "text": "The National Human Rights Institution be made fully operational and ensure that it functions in conformity with Paris Principles", - "values": [ - "National Human Rights Institution" - ] - }, - { - "text": "Consider issuing standing invitation to all special procedures of the Human Rights Council", - "values": [ - "Special procedures" - ] - }, - { - "text": "Continue its process of demarcation of indigenous lands", - "values": [ - "Indigenous peoples", - "Right to land" - ] - }, - { - "text": "Accede to OP-CAT and establish an effective national mechanism to prevent torture or degrading treatment", - "values": [ - "Detention", - "International instruments", - "Torture and other CID treatment" - ] - }, - { - "text": "Continue its efforts to strengthen the policies, programs and mechanism for enhancing women rights ", - "values": [ - "Women's rights" - ] - }, - { - "text": "Look into the issue of trafficking in children who are exploited and used for the purpose of begging, in cooperation with countries of origin", - "values": [ - "Labour", - "Rights of the Child", - "Trafficking" - ] - }, - { - "text": "Ratify core international human rights treaties, including the protocol to CEDAW, the optional protocols to the CRC, and CAT", - "values": [ - "International instruments", - "Rights of the Child", - "Torture and other CID treatment", - "Women's rights" - ] - }, - { - "text": "Accede to the Convention on the Elimination of All Forms of Discrimination against Women", - "values": [ - "International instruments", - "Women's rights" - ] - }, - { - "text": "Strengthen the capacities of the Ombudsman's Office while making it accessible to the citizens", - "values": [ - "National Human Rights Institution" - ] - }, - { - "text": "Prohibit the application of the death penalty, life imprisonment and corporal punishment on offences committed by minors", - "values": [ - "Death penalty", - "Rights of the Child", - "Torture and other CID treatment" - ] - }, - { - "text": "Put in place specific programmes to improve the employment situation, in particular for young people ", - "values": [ - "Development" - ] - }, - { - "text": "Enhance efforts to fight discriminatory attitudes and behaviours against all persons belonging to minority groups, including by allowing the use of one's own language at school and in interaction with the public administration", - "values": [ - "ESC rights - general", - "Minorities" - ] - }, - { - "text": "Respect the right to life and maintain the abolition of the death penalty", - "values": [ - "Death penalty" - ] - }, - { - "text": "Continue working towards the establishment of an Office of the Ombudsman in conformity with the Paris Principles", - "values": [ - "National Human Rights Institution" - ] - }, - { - "text": "Ensure that the rights of minorities are fully protected.", - "values": [ - "Minorities" - ] - }, - { - "text": "Strengthen the status of the CNDHC ", - "values": [ - "National Human Rights Institution" - ] - }, - { - "text": "Continue to consider becoming party to the remaining core human rights instruments", - "values": [ - "International instruments" - ] - }, - { - "text": "Continue its fight to promote and protect women's rights", - "values": [ - "Women's rights" - ] - }, - { - "text": "Ensure that human rights defenders are able to carry out their legitimate work in a secure and free environment", - "values": [ - "Human rights defenders" - ] - }, - { - "text": "Consider joining ILO and ratifying its core Conventions", - "values": [ - "International instruments", - "Labour" - ] - }, - { - "text": "Engage partners at the national, regional and international levels in efforts to build the human rights capacities of Government personnel, particularly judicial and law enforcement personnel", - "values": [ - "Justice" - ] - }, - { - "text": "Adopt legislation to prohibit all forms of discrimination on the basis of race, colour, ethnicity, age, religion and disability and to ensure access to effective remedy for victims of discrimination", - "values": [ - "Disabilities", - "Freedom of religion and belief", - "Racial discrimination" - ] - }, - { - "text": "Fully enable civil society and NGO groups to conduct their activities", - "values": [ - "Civil society", - "Freedom of association and peaceful assembly" - ] - }, - { - "text": "Increase efforts to integrate a human rights culture into school curricula at all stages of education ", - "values": [ - "Human rights education and training" - ] - }, - { - "text": "Initiate an independent inquiry on cases of torture and maltreatment relating to the years 1991-1995", - "values": [ - "Torture and other CID treatment" - ] - }, - { - "text": "Continue with positive efforts to promote economic, social and cultural rights, particularly the priority given to health, education and the care of disabled", - "values": [ - "Disabilities", - "ESC rights - general", - "Right to education", - "Right to health" - ] - }, - { - "text": "Promptly invite the United Nations to establish a presence in Sri Lanka, the mandate of which would include protection, monitoring, investigation and reporting.", - "values": [ - "Technical assistance and cooperation" - ] - }, - { - "text": "Adopt a national action plan on the Security Council resolution on women, peace and security", - "values": [ - "Women's rights" - ] - }, - { - "text": "Clear the backlog of responses to thematic questionnaires from special procedures ", - "values": [ - "Special procedures" - ] - }, - { - "text": "Take robust measures to ensure incidents of violence against women are prosecuted and that protection for victims from retaliation is assured", - "values": [ - "Women's rights" - ] - }, - { - "text": "Continue to provide improved human rights education and training for judicial and law enforcement officials", - "values": [ - "Human rights education and training" - ] - }, - { - "text": "Consider issuing a standing invitation to special rapporteurs to visit Turkmenistan ", - "values": [ - "Special procedures" - ] - }, - { - "text": "Continue strengthening its policy to improve access by persons with disabilities to education", - "values": [ - "Disabilities", - "Right to education" - ] - }, - { - "text": "Enact the crimes set out in the Rome Statute of the International Criminal Court in its domestic law, as appropriate ", - "values": [ - "International instruments", - "Justice" - ] - }, - { - "text": "Set a date for the ratification of the International Convention for the Protection of All Persons from Enforced Disappearance.", - "values": [ - "Enforced disappearances", - "International instruments" - ] - }, - { - "text": "Strengthen the security apparatus through a civilian police in order to combat impunity, especially in cases of crimes against journalists and femicides, without involving the military apparatus", - "values": [ - "Freedom of the press", - "Impunity", - "Justice", - "Women's rights" - ] - }, - { - "text": "Consider a request for technical assistance and cooperation to prepare and submit reports to the United Nations treaty monitoring bodies ", - "values": [ - "Technical assistance and cooperation", - "Treaty bodies" - ] - }, - { - "text": "Consider ratifying the main human rights instruments, particularly the ICCPR, the ICESCR and the CEDAW ", - "values": [ - "CP rights - general", - "ESC rights - general", - "International instruments", - "Women's rights" - ] - }, - { - "text": "Consider ratifying the International Convention for the Protection of All Persons from Enforced Disappearance (CPED) ", - "values": [ - "Enforced disappearances", - "International instruments" - ] - }, - { - "text": "Enhance human rights education and training programs for the general public and government officials", - "values": [ - "Human rights education and training" - ] - }, - { - "text": "Ratify those human rights treaties pending ratification in particular, the International Covenant on Civil and Political Rights and its two Optional Protocols, the International Covenant on Economic, Social and Cultural Rights, the Convention against Torture and Other Cruel, Inhuman or Degrading Treatment or Punishment and the two Protocols to the Convention on the Rights of the Child", - "values": [ - "CP rights - general", - "Detention", - "ESC rights - general", - "International instruments", - "Rights of the Child", - "Torture and other CID treatment" - ] - }, - { - "text": "Consider introducing specific legislation and additional policy measures to promote tolerance and non-discrimination of lesbians, gays, bisexuals and transsexuals.", - "values": [ - "Sexual Orientation and Gender Identity" - ] - }, - { - "text": "Adopt a comprehensive law against trafficking in persons", - "values": [ - "Trafficking" - ] - }, - { - "text": "Enhance the right of education, especially for children with disabilities", - "values": [ - "Disabilities", - "Right to education", - "Rights of the Child" - ] - }, - { - "text": "Increase available prison facilities to reduce overcrowding and ensure adequate capacity to enforce prison sentences", - "values": [ - "Detention" - ] - }, - { - "text": "Create and maintain, in law and practice, a safe and enabling environment in which journalists, media workers, human rights defenders and civil society can operate free from hindrance and insecurity, in accordance with Human Rights Council resolutions 22/6, 27/5 and 27/31", - "values": [ - "Civil society", - "Freedom of the press", - "Human rights defenders" - ] - }, - { - "text": "Sign and ratify the Optional Protocol to the Convention against Torture.", - "values": [ - "Detention", - "International instruments", - "Torture and other CID treatment" - ] - }, - { - "text": "Take immediate steps towards holding democratic elections before the end of 2010, in order to restore democratic institutions and processes in Fiji", - "values": [ - "Elections" - ] - }, - { - "text": "Increase its legal efforts to combat all forms of intolerance, racism, and xenophobia, particularly the implementation of legal provisions of hate crime that remains inadequate for Roma", - "values": [ - "Minorities", - "Racial discrimination" - ] - }, - { - "text": "Prohibit, by law, all forms of violence against children, including corporal punishment, as well as establish a minimum legal age for marriage ", - "values": [ - "Rights of the Child", - "Torture and other CID treatment" - ] - }, - { - "text": "Strengthen awareness and training of women for leadership positions", - "values": [ - "Women's rights" - ] - }, - { - "text": "Repeal the legal guardianship system for adult women", - "values": [ - "Women's rights" - ] - }, - { - "text": "Be assisted by OHCHR and by the international community at large in strengthening its institutions and capacity-building efforts to help Saint Lucia meet its obligations under human rights treaties to which it is party ", - "values": [ - "International instruments", - "Technical assistance and cooperation" - ] - }, - { - "text": "Take further steps to raise the living standards of the people in the rural areas", - "values": [ - "Development" - ] - }, - { - "text": "Further strengthen legal provisions and social protection mechanisms to effectively protect women who are victims of domestic violence", - "values": [ - "Women's rights" - ] - }, - { - "text": "Continue to provide support to national human rights institutions and create new ones, if the need arises.", - "values": [ - "National Human Rights Institution" - ] - }, - { - "text": "Guarantee a society constituting one-fifth of the world's population to be well fed, well housed, well cared for and well educated.", - "values": [ - "Right to education", - "Right to food", - "Right to housing" - ] - }, - { - "text": "Further advance efforts to address the root cause of trafficking and to protect and support victims of trafficking", - "values": [ - "Trafficking" - ] - }, - { - "text": "Allocate all necessary human and material resources to combat the trafficking of persons", - "values": [ - "Trafficking" - ] - }, - { - "text": "Increase its efforts in ensuring full compliance of its domestic legislation with the Convention on the Rights of the Child, including by introducing a legal minimum age for criminal accountability", - "values": [ - "International instruments", - "Rights of the Child" - ] - }, - { - "text": "Etablish juvenile courts throughout the country to enable the incarceration of children and adolescents separately from adults", - "values": [ - "Detention", - "Justice", - "Rights of the Child" - ] - }, - { - "text": "Consider acceding to ICRMW", - "values": [ - "International instruments", - "Labour", - "Migrants" - ] - }, - { - "text": "Review its legislation to adopt a comprehensive strategy aimed at elimination of discrimination in all its forms and in respect of all the vulnerable groups, especially poor and disabled children", - "values": [ - "Disabilities", - "Poverty", - "Rights of the Child" - ] - }, - { - "text": "Return to the government's previous practice of announcing full election results within days of the election, broken down by polling stations ", - "values": [ - "Elections" - ] - }, - { - "text": "Conclude the enactment of a law aimed towards the abolition of the death penalty as prioritized by the Government of Ghana and the holding of the required referendum in this regard", - "values": [ - "Death penalty" - ] - }, - { - "text": "Continue its efforts to improve measures to promote and protect the rights of migrant workers in the country, including to consider accession of the International Convention on the Rights of All Migrant Workers and Members of Their Families", - "values": [ - "International instruments", - "Labour", - "Migrants" - ] - }, - { - "text": "Continue efforts to provide educational facilities to persons with special needs ", - "values": [ - "Disabilities" - ] - }, - { - "text": "Give priority to submitting periodic reports with those treaties for which no report has yet been provided ", - "values": [ - "Treaty bodies" - ] - }, - { - "text": "Take concrete measures to promote and protect the rights of women and children, in particular to facilitate their access to education and health as basic prerequisites for growth and development.", - "values": [ - "Right to education", - "Right to health", - "Rights of the Child", - "Women's rights" - ] - }, - { - "text": "An educational and civic policy that will, by 2016, cover the integration and teaching of human rights in the Gabonese education system (primary, secondary and higher). With this in mind, in July 2005, Gabon adopted the Action Plan for 2005-2009 of the World Programme for Human Rights Education, which focuses on the national school system. Representatives of the Government and the National Human Rights Commission reaffirmed this commitment during the workshop on human rights education in Brazzaville on 11 and 12 June 2010, which was organized for countries in Central Africa by the African Union Commission. ", - "values": [ - "Human rights education and training" - ] - }, - { - "text": "Raise the age of criminal responsibility in compliance with international standards ", - "values": [ - "Justice", - "Rights of the Child" - ] - }, - { - "text": "Take concrete steps towards the establishment of a national human rights institution in accordance with the Paris Principles", - "values": [ - "National Human Rights Institution" - ] - }, - { - "text": "Run public awareness programs on the harmful consequences of child marriages", - "values": [ - "Rights of the Child", - "Women's rights" - ] - }, - { - "text": "Develop and implement more substantiated programmes and initiatives for the provision of enhanced level of the rights to education and health for all ", - "values": [ - "Right to education", - "Right to health" - ] - }, - { - "text": "Become a party to regional and international human rights instruments that it has not yet signed up to despite its efforts to fulfil its international obligations", - "values": [ - "International instruments" - ] - }, - { - "text": "Intensify awareness-building among traditional and religious leaders to strictly observe the ban on female genital mutilation", - "values": [ - "Rights of the Child", - "Torture and other CID treatment", - "Women's rights" - ] - }, - { - "text": "Improve respect for the right to freedom of assembly in line with its domestic legislation and its obligations under article 21 of the ICCPR", - "values": [ - "Freedom of association and peaceful assembly", - "International instruments" - ] - }, - { - "text": "Sign and ratify the CAT and its Optional Protocol (OPCAT).", - "values": [ - "Detention", - "International instruments", - "Torture and other CID treatment" - ] - }, - { - "text": "Implement the National Commission of Inquiry recommendations to ensure that those responsible for violations of human rights, from all parties are held accountable for their actions as soon as possible", - "values": [ - "Justice" - ] - }, - { - "text": "Include in its national legislation the concept of torture as defined in article 1 of the Convention against Torture, and to enact legislation to abolish all types of corporal punishment and other forms of cruel, inhumane or degrading treatment", - "values": [ - "International instruments", - "Torture and other CID treatment" - ] - }, - { - "text": "Launch campaigns to raise public awareness on trafficking in persons ", - "values": [ - "Trafficking" - ] - }, - { - "text": "Reinforce its anti-discriminatory legal framework in order to provide for a strengthened protection of the rights of the lesbian, gay, bisexual, transgender and intersex community", - "values": [ - "Sexual Orientation and Gender Identity" - ] - }, - { - "text": "Take further steps leading to a formal abolition of the death penalty, commuting the existing sentences to life imprisonment terms ", - "values": [ - "Death penalty" - ] - }, - { - "text": "Repeal or substantially amend the Criminal Law (Codification and Reform) Act, the Public Order and Security Act (POSA), the Miscellaneous Offences Act (MOA), and the Access to Information and Protection of Privacy Act (AIPPA) to bring them in line with Zimbabwe's international human rights obligations ", - "values": [ - "Freedom of association and peaceful assembly", - "Freedom of opinion and expression", - "International instruments", - "Privacy" - ] - }, - { - "text": "Ensure that the national practice on providing asylum is in line with international standards on the protection of migrants, refugees, asylum seekers and stateless persons", - "values": [ - "Asylum-seekers - refugees", - "Migrants", - "Statelessness and the right to nationality" - ] - }, - { - "text": "In cooperation with AMISOM and its own security forces, take all necessary measures to protect the life of citizens ", - "values": [ - "International humanitarian law" - ] - }, - { - "text": "Take measures to guarantee effective access for women victims of gender-based violence to justice, redress and protection ", - "values": [ - "Women's rights" - ] - }, - { - "text": "Continue its efforts to reach the Millennium Development Goals by 2015 and increase the number of its primary and secondary schools", - "values": [ - "Development", - "Right to education" - ] - }, - { - "text": "Ensure that the fight against crime strictly respects international standards", - "values": [ - "International instruments", - "Public security" - ] - }, - { - "text": "Ratify the Convention against Torture and Other Cruel, Inhuman or Degrading Treatment or Punishment (CAT)", - "values": [ - "International instruments", - "Torture and other CID treatment" - ] - }, - { - "text": "Continue strengthening the protection and promotion of human rights through its institutions, legislation and public policies", - "values": [ - "General" - ] - }, - { - "text": "Adopt all necessary measures to guarantee the fight against impunity for the perpetrators of crimes, acts of violence and all human rights violations", - "values": [ - "Impunity" - ] - }, - { - "text": "Finalize and implement the child and family welfare system policy", - "values": [ - "Rights of the Child" - ] - }, - { - "text": "Implement measures to ensure inclusive education for all at the primary, secondary and university levels", - "values": [ - "Right to education" - ] - }, - { - "text": "Implement policies to guarantee that girls and women with disabilities have equal access to education, employment and work", - "values": [ - "Disabilities", - "Rights of the Child", - "Women's rights" - ] - }, - { - "text": "Give legal recognition to same-sex relationships ", - "values": [ - "Sexual Orientation and Gender Identity" - ] - }, - { - "text": "Measures to aid students with mid-day meals, uniforms and learning materials will be continued and enhanced, child rights committees are being established in every school and further islandwide recruitment of Tamil medium teachers is ongoing. National competency standards for vocational education will be made available in all national languages", - "values": [ - "Minorities", - "Right to education", - "Rights of the Child" - ] - }, - { - "text": "Regarding the protection of minorities, the delegation expressed the Government's commitment to implement the recommendations put forward in the 2014 resolution of the Committee of Ministers of the Council of Europe on the implementation of the Framework Convention for the Protection of National Minorities.", - "values": [ - "Minorities" - ] - }, - { - "text": "Provide internally displaced persons with assistance and protect their rights", - "values": [ - "Internally displaced persons" - ] - }, - { - "text": "Take all necessary measures to ensure the full enjoyment of the right to freedom of expression for all, including the repeal or amendment of all laws restricting the activities, ownership and independence of the media", - "values": [ - "Freedom of opinion and expression", - "Freedom of the press" - ] - }, - { - "text": "Continue its efforts in implementing the various measures in the areas of education, health, housing, employment and a cross-cutting dimension with a view to further promoting and protecting the rights of persons belonging to minorities and countering the discrimination and social exclusion faced by Roma communities ", - "values": [ - "Labour", - "Minorities", - "Right to education", - "Right to health", - "Right to housing" - ] - }, - { - "text": "Develop a policy for the use of Creole at all levels of primary education, and to incorporate human rights in the education curricula", - "values": [ - "Human rights education and training", - "Minorities" - ] - }, - { - "text": "Put an end to all forms of media censorship ", - "values": [ - "Freedom of the press" - ] - }, - { - "text": "Ensure the effective enjoyment of the right to education, the right to work and the right to health for members of ethnic minorities and migrants ", - "values": [ - "Labour", - "Migrants", - "Minorities", - "Right to education", - "Right to health" - ] - }, - { - "text": "Pursue the fight against terrorism in compliance with human rights", - "values": [ - "Counter-terrorism" - ] - }, - { - "text": "Ensure appropriate law enforcement and penal sanctions are in place to effectively address issues of non-equality and non-discrimination in the private and public sphere ", - "values": [ - "Other" - ] - }, - { - "text": "Ratify as soon as possible the International Convention for the Protection of All Persons from Enforced Disappearance, a major instrument in the fight against impunity, and recognize the competence of the Committee on Enforced Disappearances", - "values": [ - "Enforced disappearances", - "International instruments", - "Treaty bodies" - ] - }, - { - "text": "Create a national human rights institution, seek accreditation from the International Coordinating Committee of National Institutions and accept technical assistance from OHCHR in setting up this national institution ", - "values": [ - "National Human Rights Institution", - "Technical assistance and cooperation" - ] - }, - { - "text": "Strengthen legal and policy frameworks, programmes and coordination measures to address child labour and sexual exploitation of children", - "values": [ - "Labour", - "Rights of the Child" - ] - }, - { - "text": "Include sexual orientation and gender identity in non-discrimination laws and programmes, and promote tolerance and non-discrimination regarding sexual orientation or identity, in line with the Yogyakarta principles ", - "values": [ - "Sexual Orientation and Gender Identity" - ] - }, - { - "text": "Continue to strengthen the economic, political and social development with full participation of its population \n\n", - "values": [ - "ESC rights - general" - ] - }, - { - "text": "Extend the protection of the labour law to domestic workers and ensure that the rules concerning the right to stay do not put them in a situation of dependence from their employers", - "values": [ - "Labour" - ] - }, - { - "text": "Sign and ratify CED and the Optional Protocol to the International Covenant on Economic, Social and Cultural Rights ICESCR - ratify OPICCPR, OP-CEDAW and CRPD and its Optional Protocol ", - "values": [ - "CP rights - general", - "Disabilities", - "ESC rights - general", - "Enforced disappearances", - "International instruments", - "Women's rights" - ] - }, - { - "text": "Ratify the Optional Protocol to the Convention on the Elimination of All Forms of Discrimination against Women and the Optional Protocol the International Covenant on Economic, Social and Cultural Rights", - "values": [ - "ESC rights - general", - "International instruments", - "Women's rights" - ] - }, - { - "text": "Abolish the death penalty for all crimes and ratify the Second Optional Protocol to the International Covenant on Civil and Political Rights", - "values": [ - "Death penalty", - "International instruments" - ] - }, - { - "text": "Provide the necessary resources, personnel and authority to the Ministry of Labour to effectively enforce Guatemalan labour law, and comply with internationally recognized worker rights", - "values": [ - "Labour" - ] - }, - { - "text": "Make every effort to increase the effectiveness of the protection of the rights of the child", - "values": [ - "Rights of the Child" - ] - }, - { - "text": "Continue providing access to adequate housing, particularly by assisting low-income families and other disadvantaged individuals and groups ", - "values": [ - "Right to housing" - ] - }, - { - "text": "Strengthen its policies and programmes to continue reducing extreme poverty in the country", - "values": [ - "Poverty" - ] - }, - { - "text": "Continue to take effective measures to ensure the recovery, rehabilitation, and reintegration of child soldiers ", - "values": [ - "International humanitarian law", - "Rights of the Child" - ] - }, - { - "text": "Abolish the death penalty in all circumstances and ratify ICCPR-OP 2 ", - "values": [ - "Death penalty", - "International instruments" - ] - }, - { - "text": "Niger reaffirms its commitment to inviting special rapporteurs to visit the country whenever necessary. ", - "values": [ - "Special procedures" - ] - }, - { - "text": "Amend existing legislation so as to outlaw marital rape", - "values": [ - "Rights of the Child", - "Women's rights" - ] - }, - { - "text": "Explicitly prohibit organizations promoting racial and religious hatred as well as racial profiling", - "values": [ - "Freedom of religion and belief", - "Racial discrimination" - ] - }, - { - "text": "Take all remedial measures, including legislative measures, to ensure that the rights enshrined in the International Covenant on Economic, Social and Cultural Rights are applicable and justiciable", - "values": [ - "ESC rights - general", - "International instruments" - ] - }, - { - "text": "Continuing strengthening its migration policies in the most effective manner in order to address prejudice, racism, racial discrimination, xenophobia and other forms of intolerance ", - "values": [ - "Migrants", - "Racial discrimination" - ] - }, - { - "text": "Provide the proper framework for appeals within the 2009 antiterrorist law in order to guarantee respect for fundamental rights ", - "values": [ - "Counter-terrorism" - ] - }, - { - "text": "Pursue efforts to fight against femicide and violence against women, and provide for specialized care centres for victims of this violence", - "values": [ - "Women's rights" - ] - }, - { - "text": "Step up efforts to consider acceding to ICRMW", - "values": [ - "International instruments", - "Labour", - "Migrants" - ] - }, - { - "text": "Take all necessary measures to avoid the bombing of medical units, respect the principle of medical neutrality and grant special protection to medical units as allowed by international law", - "values": [ - "International humanitarian law" - ] - }, - { - "text": "Enhance efforts to provide free quality education in all parts of the country", - "values": [ - "Right to education" - ] - }, - { - "text": "Strengthen the implementation of the Anti-Discrimination Act in order to curb racism, racial discrimination, xenophobia, propaganda and attacks", - "values": [ - "Racial discrimination" - ] - }, - { - "text": "Abolish the death penalty, and commute all death sentences to prison terms", - "values": [ - "Death penalty" - ] - }, - { - "text": "Ratify without delay CPED and translate it into national legislation", - "values": [ - "Enforced disappearances", - "International instruments" - ] - }, - { - "text": "Ensure equal opportunities for women in the labour market", - "values": [ - "Women's rights" - ] - }, - { - "text": "Sign, ratify or accede to the Second Optional Protocol to the International Covenant on Civil and Political Rights and the International Convention for the Protection of All Persons from Enforced Disappearance", - "values": [ - "Death penalty", - "Enforced disappearances", - "International instruments" - ] - }, - { - "text": "Continue to reform the prison system and look further into ways of reforming the Penal Code to ensure adequate prison conditions and treatment of prisoners ", - "values": [ - "Detention", - "Justice" - ] - }, - { - "text": "Requested that Morocco's needs in respect to technical cooperation, as included in paragraph 49 above and paragraphs 144-152 of the national report, be addressed. ", - "values": [ - "Technical assistance and cooperation" - ] - }, - { - "text": "Review the legislation to ensure full freedom of belief, conscience and religion ", - "values": [ - "Freedom of religion and belief" - ] - }, - { - "text": "Continue the efforts in ensuring the rights of the migrant workers, including in terms of access to all social and health services ", - "values": [ - "ESC rights - general", - "Labour", - "Migrants", - "Right to health" - ] - }, - { - "text": "Withdraw all reservations to CEDAW and abandon discriminatory laws against all women regardless of their ethnic or religious background", - "values": [ - "Freedom of religion and belief", - "International instruments", - "Minorities", - "Women's rights" - ] - }, - { - "text": "Continue efforts to promote and protect the rights of migrant workers, and to share its leading experience in this area in international forums", - "values": [ - "Labour", - "Migrants" - ] - }, - { - "text": "Carry out educational and awareness raising campaigns to ensure the use of alternative disciplinary measures to corporal punishments in accordance with the human dignity of the child", - "values": [ - "Human rights education and training", - "Rights of the Child", - "Torture and other CID treatment" - ] - }, - { - "text": "Review the legislation and practices in accordance with ILO Convention 29 on forced labour, and extend the ILO mandate to the overall territory of Myanmar ", - "values": [ - "International instruments", - "Labour" - ] - }, - { - "text": "Strengthen efforts to combat all forms of discrimination, including against lesbian, gay, bisexual, transgender and intersex persons, by adopting a comprehensive law and running national awareness campaigns", - "values": [ - "Human rights education and training", - "Sexual Orientation and Gender Identity" - ] - }, - { - "text": "Continue promoting equal access for women and girls to all levels of education", - "values": [ - "Right to education", - "Women's rights" - ] - }, - { - "text": "Take effective measures to improve conditions in prisons and reduce overcrowding ", - "values": [ - "Detention" - ] - }, - { - "text": "Guarantee birth registration for all boys and girls without discrimination of any kind", - "values": [ - "Rights of the Child", - "Statelessness and the right to nationality" - ] - }, - { - "text": "Continue its existing efforts to implement the national strategy and action plan on the elimination of harmful traditional practices and FGM ", - "values": [ - "Rights of the Child", - "Torture and other CID treatment", - "Women's rights" - ] - }, - { - "text": "Intensify the awareness-raising and education campaigns for local authorities, families, traditional and religious leaders and the general population in order to effectively fight against the problem of early and forced marriages ", - "values": [ - "Human rights education and training", - "Rights of the Child", - "Women's rights" - ] - }, - { - "text": "Continue its work on the promotion and protection of human rights and strengthening the environment within which civil society operates and will specifically consider amending its Law on National Associations (promulgated by Royal Decree 14/2000) whenever necessary.", - "values": [ - "Civil society", - "Freedom of association and peaceful assembly" - ] - }, - { - "text": "Intensify its efforts to combat and eliminate human trafficking ", - "values": [ - "Trafficking" - ] - }, - { - "text": "Increase efforts to promote tolerance and intercultural understanding with the aim of eliminating discrimination against minorities and non-citizens", - "values": [ - "Minorities", - "Racial discrimination" - ] - }, - { - "text": "Continue to combat discriminatory societal behaviours, in particular discrimination against women in law and practice, and take further steps to address violence against women, and domestic violence in particular ", - "values": [ - "Women's rights" - ] - }, - { - "text": "Complete the process of establishing the independent high commission for human rights", - "values": [ - "National Human Rights Institution" - ] - }, - { - "text": "Continue undertaking measures to strengthen the legal system in accordance with the international human rights treaties which it has accepted, especially those referring to the rights of children and young people ", - "values": [ - "International instruments", - "Rights of the Child" - ] - }, - { - "text": "Deter police officers, whatever their rank, from excessive use of force or acts of corruption, theft, extortion and other abuses investigate abuses involving the police, hand down disciplinary sanctions against the perpetrators or prosecute them ", - "values": [ - "Corruption", - "Human rights violations by state agents" - ] - }, - { - "text": "Establish a special court with an independent prosecutor once the Truth Reconciliation Commission has ended its mandate ", - "values": [ - "Justice" - ] - }, - { - "text": "Continue paying special attention to the protection of the rights of vulnerable groups of the population, in particular, children, women, persons with disabilities, older persons, national minorities, especially Roma", - "values": [ - "Disabilities", - "Minorities", - "Rights of the Child", - "Women's rights" - ] - }, - { - "text": "Enact legislation to prohibit any organisation which promotes or incites racism and racial discrimination", - "values": [ - "Racial discrimination" - ] - }, - { - "text": "Lift restrictions on access to the Internet within Nauru and facilitate access of journalists to the country", - "values": [ - "Freedom of opinion and expression", - "Freedom of the press" - ] - }, - { - "text": "Develop an effective national strategy to address poverty, social security and health", - "values": [ - "Poverty", - "Right to health" - ] - }, - { - "text": "Respond to the remaining questionnaires on thematic issues sent by special procedures mandate holders ", - "values": [ - "Special procedures" - ] - }, - { - "text": "Take all necessary measures to ensure the protection of civil society actors and journalists and to investigate cases of threats and attacks against them", - "values": [ - "Civil society", - "Freedom of the press" - ] - }, - { - "text": "Design and implement an action plan to address gender based violence including domestic violence and sexual harassment", - "values": [ - "Rights of the Child", - "Women's rights" - ] - }, - { - "text": "Strengthen its efforts to eradicate the illegal spread of narcotic drugs ", - "values": [ - "Public security" - ] - }, - { - "text": "Consider adopting a strategy for post-primary and -secondary level education for girls", - "values": [ - "Right to education", - "Rights of the Child", - "Women's rights" - ] - }, - { - "text": "Treat migrant children in detention with due respect to human rights and work with neighbouring countries to address migrant smuggling challenges in order to end human trafficking", - "values": [ - "Detention", - "Migrants", - "Rights of the Child", - "Trafficking" - ] - }, - { - "text": "Adopt effective measures to strengthen the system for the protection and promotion of the rights of women and children", - "values": [ - "Rights of the Child", - "Women's rights" - ] - }, - { - "text": "Ensure that evictions are carried out in full compliance with the guarantees required by international human rights law and that those who are evicted are provided with adequate housing ", - "values": [ - "International instruments", - "Right to housing" - ] - }, - { - "text": "Increase development assistance to reach the target of 0.7 per cent of the gross national product in the interests of the sustainable development of developing countries", - "values": [ - "Development" - ] - }, - { - "text": "Undertake an awareness-raising campaign regarding domestic violence", - "values": [ - "Human rights education and training", - "Rights of the Child", - "Women's rights" - ] - }, - { - "text": "Continue to promote the rights of children", - "values": [ - "Rights of the Child" - ] - }, - { - "text": "Continue its efforts to support children with special needs, namely, children with visual impairment, children with hearing impairment and those with learning difficulties", - "values": [ - "Rights of the Child" - ] - }, - { - "text": "The Ministry is committed to bringing an increasingly research based, evidence driven approach to the practice of social development and poverty reduction.", - "values": [ - "Development", - "Poverty" - ] - }, - { - "text": "Face up to and reflect on its past and present a responsible interface to the international community by making apologies on the issue of comfort women and giving compensation to its victims", - "values": [ - "Women's rights" - ] - }, - { - "text": "Continue its efforts to protect freedoms and to strengthen human rights", - "values": [ - "General" - ] - }, - { - "text": "Strengthen cooperation with the United Nations human rights mechanisms and issue a standing invitation to special procedure mandate holders", - "values": [ - "Special procedures", - "Technical assistance and cooperation", - "UPR process" - ] - }, - { - "text": "Continue to implement legal and administrative measures to protect women and girls from domestic and sexual violence", - "values": [ - "Rights of the Child", - "Women's rights" - ] - }, - { - "text": "Take legal proceedings on complaints as to racial discrimination and incitement to racial and religious hatred", - "values": [ - "Freedom of religion and belief", - "Racial discrimination" - ] - }, - { - "text": "Enact the Family Protection and Domestic Violence Bill and continue efforts to increase and extend public awareness on domestic violence issues to the Outer Islands", - "values": [ - "Rights of the Child", - "Women's rights" - ] - }, - { - "text": "Conclude the ratification of the remaining instruments in particular the Convention against Torture, the International Convention for the Protection of All Persons from Enforced Disappearance and the Convention on the Elimination of All Forms of Discrimination against Women, which have been pending since the 2011 review", - "values": [ - "Enforced disappearances", - "International instruments", - "Torture and other CID treatment", - "UPR process", - "Women's rights" - ] - }, - { - "text": "Seek the support of partners to pursue its efforts in the areas of the right to education and the right to health", - "values": [ - "Right to education", - "Right to health" - ] - }, - { - "text": "Accede to the international conventions and treaties to which it is not yet a party ", - "values": [ - "International instruments", - "National Human Rights Institution" - ] - }, - { - "text": "Stop arresting people for same-sex relations", - "values": [ - "Sexual Orientation and Gender Identity" - ] - }, - { - "text": "Jamaica stressed its commitment to promote and protect human rights and requested help to do so.", - "values": [ - "Technical assistance and cooperation" - ] - }, - { - "text": "Implement and enforce the right not to be arbitrarily displaced and the Guiding Principles on Internal Displacement ", - "values": [ - "Internally displaced persons" - ] - }, - { - "text": "Reassess involuntary return practices and asylum processes, particularly for minors, in order to guarantee refugees the full protection accorded by the law ", - "values": [ - "Asylum-seekers - refugees", - "Rights of the Child" - ] - }, - { - "text": "Enact the Bill on the Human Rights Commission in order that a proper NHRI, in conformity with the Paris Principles, can be established", - "values": [ - "National Human Rights Institution" - ] - }, - { - "text": "Complete as a matter of priority and before its third universal periodic review the process leading to the ratification of the Optional Protocol to the Convention against Torture and establish a national preventive mechanism without delay", - "values": [ - "Detention", - "International instruments", - "Torture and other CID treatment", - "UPR process" - ] - }, - { - "text": "Accept the visits of Special Procedures of the Council which have been requested to date ", - "values": [ - "Special procedures" - ] - }, - { - "text": "Urgently take appropriate measures to address high infant and child mortality rates", - "values": [ - "Right to health", - "Rights of the Child" - ] - }, - { - "text": "Adopt a general legal framework against discrimination, defining this crime comprehensively, including direct and indirect forms of discrimination, contemplating all spheres of public and private law, and criminalising acts committed by public and private agents", - "values": [ - "Human rights violations by state agents" - ] - }, - { - "text": "End the prosecution of and release journalists and other individuals detained solely for exercising their rights to freedom of expression, peaceful assembly and association", - "values": [ - "Freedom of association and peaceful assembly", - "Freedom of opinion and expression", - "Freedom of the press" - ] - }, - { - "text": "Ensure the adoption of a comprehensive law on violence against women", - "values": [ - "Women's rights" - ] - }, - { - "text": "Submit long overdue reports to the Committee on Economic, Social and Cultural Rights, the Committee on the Elimination of Racial Discrimination, the Committee against Torture and the Committee on the Rights of Persons with Disabilities ", - "values": [ - "Disabilities", - "ESC rights - general", - "Racial discrimination", - "Torture and other CID treatment", - "Treaty bodies" - ] - }, - { - "text": "Continue its policy of respect and tolerance of all religions without discrimination", - "values": [ - "Freedom of religion and belief", - "Racial discrimination" - ] - }, - { - "text": "Finalize the process of the ratification of the Optional Protocol to the Convention on the Elimination of All Forms of Discrimination against Women and ratify the Optional Protocol to the Convention on the Rights of the Child on a communications procedure", - "values": [ - "International instruments", - "Rights of the Child", - "Women's rights" - ] - }, - { - "text": "Continue to seek capacity building and technical assistance in order to pursue its plans for development and promotion of human rights ", - "values": [ - "Technical assistance and cooperation" - ] - }, - { - "text": "Reduce restrictions on peaceful assembly and association, allow individuals to participate freely in independent political societies, consistent with the Constitution and national action charter, and cease unwarranted legal action against Wefaq and Wa\u2019ad for engaging in protected activities", - "values": [ - "Civil society", - "Freedom of association and peaceful assembly", - "Freedom of opinion and expression" - ] - }, - { - "text": "Continue efforts to promote rights of vulnerable groups.", - "values": [ - "Minorities" - ] - }, - { - "text": "Strengthen legislative provisions that exist to promote gender equality", - "values": [ - "Women's rights" - ] - }, - { - "text": "Ratify the Rome Statute establishing the International Criminal Court", - "values": [ - "International instruments", - "Justice" - ] - }, - { - "text": "Develop Human Rights Indicators, an instrument that allows for a more precise and coherent evaluation of the human rights policies of a country", - "values": [ - "Other" - ] - }, - { - "text": "Strengthen legislation regarding domestic violence and to take measures to ensure access of migrants to services including access to the justice system.", - "values": [ - "Migrants", - "Rights of the Child", - "Women's rights" - ] - }, - { - "text": "Develop rehabilitation centres for young offenders with facilities that promote the psychological and physical development of these young persons and their social reintegration ", - "values": [ - "Justice", - "Rights of the Child" - ] - }, - { - "text": "Intensify its efforts to prevent violence against women, protect survivors and prosecute perpetrators", - "values": [ - "Women's rights" - ] - }, - { - "text": "Continue to support the integration of persons with disabilities in society by strengthening educational support and job training", - "values": [ - "Disabilities" - ] - }, - { - "text": "Repeat and amplify this request to the international community to support Kenya in its activities where supplementary resources are required to achieve its goals", - "values": [ - "Technical assistance and cooperation" - ] - }, - { - "text": "Ratify, at the earliest possible date, the International Convention for the Protection of All Persons from Enforced Disappearance ", - "values": [ - "Enforced disappearances", - "International instruments" - ] - }, - { - "text": "Bring its legislation in line with the international human rights conventions that Iran has ratified, including CRC, and abolish at least the death penalty for crimes committed by persons under the age of 18", - "values": [ - "Death penalty", - "International instruments", - "Rights of the Child" - ] - }, - { - "text": "Take measures to enhance access to basic products among vulnerable communities by creating food security programmes in areas particularly affected by the phenomenon of global warming ", - "values": [ - "Environment", - "Right to food" - ] - }, - { - "text": "Establish a new NHRI, in accordance with the Paris Principles ", - "values": [ - "National Human Rights Institution" - ] - }, - { - "text": "Consider the adoption of a national strategy to enhance the promotion and protection of human rights of the elderly ", - "values": [ - "Other" - ] - }, - { - "text": "Ratify ICCPR, ICESCR, CERD and CAT and withdraw reservations to CEDAW ", - "values": [ - "CP rights - general", - "ESC rights - general", - "International instruments", - "Racial discrimination", - "Torture and other CID treatment", - "Women's rights" - ] - }, - { - "text": "Leave no stone unturned to address all outstanding electoral reform issues to guarantee free and fair elections in 2015", - "values": [ - "Elections" - ] - }, - { - "text": "Take all measures necessary to combat impunity and bring to justice those responsible for or involved in serious human rights violations, and in particular acts of sexual violence against women and girls ", - "values": [ - "Impunity", - "Rights of the Child", - "Women's rights" - ] - }, - { - "text": "Disseminate information to the population of Botswana on ways and means to avail themselves of available judicial remedies relating to discrimination against women", - "values": [ - "Women's rights" - ] - }, - { - "text": "Ratify the International Covenant on Civil and Political Rights and the International Covenant on Economic, Social and Cultural Rights, as well as the Rome Statute of the International Criminal Court ", - "values": [ - "CP rights - general", - "ESC rights - general", - "International instruments", - "Justice" - ] - }, - { - "text": "Adopt effective measures to combat violence against women in all its forms and allocate human and financial resources for the implementation of such measures, in particular regarding the protection of victims ", - "values": [ - "Women's rights" - ] - }, - { - "text": "Continue to pursue the reduction of the gender pay gap ", - "values": [ - "Women's rights" - ] - }, - { - "text": "Continue its measures in the fight against the sexual abuse and exploitation of children by strengthening the implementation of its relevant national action plan", - "values": [ - "Rights of the Child" - ] - }, - { - "text": "Take appropriate measures to prevent the use of excessive force by security forces when forcibly repatriating migrants, refugees and asylum-seekers.", - "values": [ - "Asylum-seekers - refugees", - "Human rights violations by state agents", - "Migrants" - ] - }, - { - "text": "Undertake an inclusive process with a wide range of civil society representatives when implementing the UPR recommendations", - "values": [ - "Civil society", - "UPR process" - ] - }, - { - "text": "Adopt a law on equal rights and equal opportunities to protect the endangered elements of society, namely children, women and people with disabilities.", - "values": [ - "Disabilities", - "Rights of the Child", - "Women's rights" - ] - }, - { - "text": "Establish a national human rights institution, in accordance with the Paris Principles", - "values": [ - "National Human Rights Institution" - ] - }, - { - "text": "Take further steps to bring legislation into line with international human rights norms and standards and, if necessary, seek technical assistance from United Nations agencies and organizations to do so", - "values": [ - "International instruments", - "Technical assistance and cooperation" - ] - }, - { - "text": "Strengthen transitional justice and its equity. Pursue cooperation with the International Criminal Court", - "values": [ - "International instruments", - "Justice" - ] - }, - { - "text": "Amend the Criminal Code to include equal protection of girls and boys from all forms of sexual abuse and exploitation ", - "values": [ - "Rights of the Child" - ] - }, - { - "text": "Become a party to the ICESCR ", - "values": [ - "ESC rights - general", - "International instruments" - ] - }, - { - "text": "Take effective steps to put an end to child prostitution, and effectively combat violence against women and gun violence ", - "values": [ - "Rights of the Child", - "Women's rights" - ] - }, - { - "text": "Take legislative and practical steps to ensure a political process and elections that are free and democratic ", - "values": [ - "Elections" - ] - }, - { - "text": "Refrain from adopting legislative measures which criminalise homosexual relations or breach the rights to freedom of expression and to non-discrimination of Lesbian, Gay, Bisexual and Transgender people ", - "values": [ - "Freedom of opinion and expression", - "Sexual Orientation and Gender Identity" - ] - }, - { - "text": "Continue its efforts to stop child labour, particularly in the mining sector ", - "values": [ - "Business and human rights", - "Labour", - "Rights of the Child" - ] - }, - { - "text": "The Ministry of Justice, jointly with civil society organizations, should consider conducting awareness-raising campaigns among parliamentary representatives and society as a whole", - "values": [ - "Civil society", - "Human rights education and training" - ] - }, - { - "text": "Ensure real equality of opportunities for women in the labour market, and consolidate the principle of equal pay for equal work", - "values": [ - "Women's rights" - ] - }, - { - "text": "Tirelessly pursue the reconstruction of this vast and beautiful country without neglecting its human and economic potential", - "values": [ - "Development" - ] - }, - { - "text": "Promote efforts to combat terrorism and to combat human trafficking", - "values": [ - "Public security", - "Trafficking" - ] - }, - { - "text": "Continue to combat violence against women, particularly female genital mutilation and sexual violence, ensure that this violence is always prosecuted, and continue to organize awareness-raising campaigns on this issue", - "values": [ - "Human rights education and training", - "Rights of the Child", - "Torture and other CID treatment", - "Women's rights" - ] - }, - { - "text": "Adopt all necessary measures to deal with the situation of street children ", - "values": [ - "Rights of the Child" - ] - }, - { - "text": "Create a comprehensive policy to improve the rights of the child, which is essential in this situation, in parallel with the ratification of OP-CRC-AC ", - "values": [ - "International humanitarian law", - "International instruments", - "Rights of the Child" - ] - }, - { - "text": "Ensure that the new detention centres, which will be established in accordance with the auditing mentioned in the national report, comply with international standards, in particular regarding separation of minors from adults and the prohibition of corporal punishment ", - "values": [ - "Detention", - "Rights of the Child", - "Torture and other CID treatment" - ] - }, - { - "text": "Continue strengthening the increasing participation of women in public life", - "values": [ - "Women's rights" - ] - }, - { - "text": "Design policies and programmes aimed at combating harmful traditional practices, in particular female genital mutilation", - "values": [ - "Rights of the Child", - "Torture and other CID treatment", - "Women's rights" - ] - }, - { - "text": "Take effective measures to prevent child and forced marriages ", - "values": [ - "Rights of the Child", - "Women's rights" - ] - }, - { - "text": "Fully guarantee freedom of expression and freedom of assembly and protect journalists and human rights defenders against threats and aggression", - "values": [ - "Freedom of association and peaceful assembly", - "Freedom of opinion and expression", - "Freedom of the press", - "Human rights defenders" - ] - }, - { - "text": "Continue efforts to promote the participation of women in political, economic, social and all other spheres", - "values": [ - "Women's rights" - ] - }, - { - "text": "Collaborate with the Haitians authorities on migration issues ", - "values": [ - "Migrants" - ] - }, - { - "text": "Secure civilian infrastructure throughout South Sudan, in particular protection-of-civilians sites, and protect civilians, humanitarian workers and human rights defenders from human rights violations and abuses, including extrajudicial killings, enforced disappearances, torture and indiscriminate violence", - "values": [ - "Enforced disappearances", - "Extrajudicial executions", - "Human rights defenders", - "Torture and other CID treatment" - ] - }, - { - "text": "End discrimination in law and in practice against all religious and ethnic minorities, such as Baha'is, Sufis, Kurds and Sunni Arabs, and ensure full protection of their rights", - "values": [ - "Freedom of religion and belief", - "Minorities", - "Racial discrimination" - ] - }, - { - "text": "Further strengthen efforts to improve the lives of persons with disabilities, including by developing and implementing policy instruments to meet the education needs of children with disabilities", - "values": [ - "Disabilities", - "Right to education", - "Rights of the Child" - ] - }, - { - "text": "Consider ratifying CPED ", - "values": [ - "Enforced disappearances", - "International instruments" - ] - }, - { - "text": "Continue, with international support, its efforts to spread a culture of human rights in the society, establish and reform the institutions for law enforcement and an independent, effective and impartial justice system.", - "values": [ - "Justice", - "Technical assistance and cooperation" - ] - }, - { - "text": "Establish a genuinely independent national human rights institution in accordance with the Paris Principles, and ensure that it has a mandate to receive and handle individual complaints, monitor the human rights situation, coordinate with thematic mechanisms and cooperate with the Government and other entities in the drafting, dissemination and enforcement of human rights legislation ", - "values": [ - "National Human Rights Institution" - ] - }, - { - "text": "Ensure that information on the implementation of human rights conventions in the overseas territories be consistently included in reports to treaty bodies.", - "values": [ - "Treaty bodies" - ] - }, - { - "text": "Continue its efforts in providing migrants, including those in irregular situation and migrant children, access to health, education, and other social services at par with its nationals", - "values": [ - "Migrants", - "Right to education", - "Right to health", - "Rights of the Child" - ] - }, - { - "text": "Continue strengthening the promotion and protection of the rights of the child ", - "values": [ - "Rights of the Child" - ] - }, - { - "text": "Strengthen protection of the economic and social rights of internally displaced persons, including by protecting against unlawful evictions and resolving issues related to legal ownership of living spaces currently inhabited by internally displaced persons", - "values": [ - "ESC rights - general", - "Internally displaced persons", - "Right to land" - ] - }, - { - "text": "Promptly establish a national human rights institution in full compliance with the Paris Principles", - "values": [ - "National Human Rights Institution" - ] - }, - { - "text": "Consider ratifying the International Convention for the Protection of All Persons from Enforced Disappearance", - "values": [ - "Enforced disappearances", - "International instruments" - ] - }, - { - "text": "Raise the minimum age of marriage from 14 to 18", - "values": [ - "Rights of the Child" - ] - }, - { - "text": "Continue the work aimed at the prohibition of child labour ", - "values": [ - "Labour", - "Rights of the Child" - ] - }, - { - "text": "Review and strengthen existing legislation in order to introduce comprehensive anti-discrimination laws with special emphasis on ethnic, religious and gender issues and make the National Council on Gender Issues fully operational", - "values": [ - "Freedom of religion and belief", - "Minorities", - "Racial discrimination", - "Women's rights" - ] - }, - { - "text": "Review its decision to denounce the American Convention on Human Rights and participate constructively in the inter-American human rights system", - "values": [ - "Other" - ] - }, - { - "text": "Remove the requirement of infertility or sterilization before an individual may change their gender on legal documents", - "values": [ - "Sexual Orientation and Gender Identity" - ] - }, - { - "text": "Accept the request of visit by the Special Rapporteur on the promotion of truth, justice, reparation and guarantees of non-recurrence, the Special Rapporteur on the situation of human rights defenders, the Working Group on Enforced or Involuntary Disappearances and cooperate fully with the mandate holders", - "values": [ - "Enforced disappearances", - "Human rights defenders", - "Justice", - "Special procedures" - ] - }, - { - "text": "Strengthen further the cooperation with the international community, including OHCHR and treaty bodies", - "values": [ - "Treaty bodies" - ] - }, - { - "text": "Ratify the remaining human rights conventions, particularly CEDAW ", - "values": [ - "International instruments", - "Women's rights" - ] - }, - { - "text": "Maintain an open and standing invitation to the United Nations human rights mechanisms, particularly the Special Rapporteur against torture, and speed up its submissions of pending reports to treaty bodies", - "values": [ - "Special procedures", - "Torture and other CID treatment", - "Treaty bodies", - "UPR process" - ] - }, - { - "text": "Undertake further efforts in order to raise awareness among religious leaders and traditional dignitaries and involve them in the dissemination of a culture of human rights and in combating harmful traditional practices", - "values": [ - "Human rights education and training", - "Torture and other CID treatment" - ] - }, - { - "text": "Further advance in pursuing the fair distribution of national wealth", - "values": [ - "Development" - ] - }, - { - "text": "Increase efforts vis-à-vis country's reporting obligations under international human rights instruments to which Cape Verde is a party ", - "values": [ - "International instruments", - "Treaty bodies" - ] - }, - { - "text": "Continue its efforts in order to address the issue of internal displacement", - "values": [ - "Internally displaced persons" - ] - }, - { - "text": "Implement the national strategy to institutionalise gender", - "values": [ - "Women's rights" - ] - }, - { - "text": "Ensure that human rights violations, including extrajudicial killings, illegal detentions, torture and gender-based violence, committed by all sides in the Russian-instigated conflict in eastern Ukraine are recorded, investigated and the perpetrators brought to justice", - "values": [ - "Detention", - "Extrajudicial executions", - "Torture and other CID treatment", - "Women's rights" - ] - }, - { - "text": "Intensify measures against acts of sexual violence against women and girls, and careful and effective treatment of alleged occurrence of extrajudicial executions ", - "values": [ - "Extrajudicial executions", - "Rights of the Child", - "Women's rights" - ] - }, - { - "text": "Take all necessary measures to ensure the protection of children's rights, in line with the international obligations of Solomon Islands, particularly by putting in place a juvenile justice system", - "values": [ - "International instruments", - "Justice", - "Rights of the Child" - ] - }, - { - "text": "Strengthen the fight against all forms of discrimination including discrimination based on sexual orientation or gender identity", - "values": [ - "Sexual Orientation and Gender Identity" - ] - }, - { - "text": "Strengthen measures to combat sexual assault and violence against women and girls", - "values": [ - "Rights of the Child", - "Women's rights" - ] - }, - { - "text": "Intensify its efforts to counter discrimination against women based on whatever grounds ", - "values": [ - "Women's rights" - ] - }, - { - "text": "Make all efforts to apply existing national legislation in order to reduce the current rate of FGM in the country, including effective criminal prosecution of the practice, appropriate awareness campaigns, and education in schools", - "values": [ - "Human rights education and training", - "Rights of the Child", - "Torture and other CID treatment", - "Women's rights" - ] - }, - { - "text": "Address and provide adequate follow-up to the recommendations of the Special Rapporteur for the protection of human rights and fundamental freedoms while countering terrorism, as a result of his visit to the country, in coordination with relevant ministries and by consulting civil society organizations ", - "values": [ - "Civil society", - "Counter-terrorism", - "Special procedures" - ] - }, - { - "text": "Respond favourably to requests for visits from Special Rapporteurs which have not yet been answered ", - "values": [ - "Special procedures" - ] - }, - { - "text": "Increase its efforts to ensure fair and effective judicial processes, particularly with regard to human rights abuses", - "values": [ - "Justice" - ] - }, - { - "text": "Take measures to ensure an effective and impartial judicial system, in conformity with ICCPR is guaranteed", - "values": [ - "International instruments", - "Justice" - ] - }, - { - "text": "Withdraw its reservations to the Convention on the Elimination of All Forms of Discrimination against Women, as supported by Oman during its first cycle universal periodic review", - "values": [ - "International instruments", - "UPR process", - "Women's rights" - ] - }, - { - "text": "Sign the second Optional Protocol to the International Covenant on Economic, Social and Cultural Rights on the abolition of capital punishment ", - "values": [ - "Death penalty", - "International instruments" - ] - }, - { - "text": "Increase financial support for the Slovenian minority in the provinces of Carinthia and in Styria to the 1995 level in real terms ", - "values": [ - "Minorities" - ] - }, - { - "text": "Resume the ratification process of the International Convention on the Protection of the Rights of All Migrant Workers and Members of Their Families", - "values": [ - "International instruments", - "Labour", - "Migrants" - ] - }, - { - "text": "Redouble its efforts in fighting poverty with a view to maintain the level of development achieved so far and contribute to attain the MDGs", - "values": [ - "Development", - "Poverty" - ] - }, - { - "text": "Withdraw its reservations to several provisions of ICCPR", - "values": [ - "CP rights - general", - "International instruments" - ] - }, - { - "text": "Set up all kinds of measures to guarantee a comprehensive response to ritual infanticide. In particular, carry out activities of prevention and protection measures, as well as adopt legal and judicial measures, categorizing ritual infanticide as a crime", - "values": [ - "Rights of the Child" - ] - }, - { - "text": "Continue a dialogue with all States on the basis of mutual respect, equal sovereignty and the right of people to choose their political, economic and social system", - "values": [ - "Other" - ] - }, - { - "text": "Continue to implement measures to reduce maternal mortality", - "values": [ - "Right to health", - "Women's rights" - ] - }, - { - "text": "Ratify the Convention 169 of the ILO", - "values": [ - "Indigenous peoples", - "International instruments" - ] - }, - { - "text": "Consider ratifying the International Convention for the Protection of All Persons from Enforced Disappearance, to and accept the competence of the relevant committee", - "values": [ - "Enforced disappearances", - "International instruments" - ] - }, - { - "text": "Prior to the next elections in 2014, review legislation in the areas of freedom of expression, association, assembly and religion to ensure full compatibility with Algeria's international obligations", - "values": [ - "Freedom of association and peaceful assembly", - "Freedom of opinion and expression", - "Freedom of religion and belief" - ] - }, - { - "text": "Ensure, in close cooperation with "Puntland" and "Somaliland", that those responsible for atrocities are brought to justice in the framework of fair processes", - "values": [ - "Justice" - ] - }, - { - "text": "Ensure the effective implementation of measures to prevent, punish and eradicate all forms of violence and discrimination against women and lesbian, gay, bisexual, transgender and intersex persons", - "values": [ - "Sexual Orientation and Gender Identity", - "Women's rights" - ] - }, - { - "text": "Reinforce efforts to eliminate the discrimination against indigenous children, Afro-descendants, migrants and persons with disabilities ", - "values": [ - "Disabilities", - "Indigenous peoples", - "Migrants", - "Minorities", - "Rights of the Child" - ] - }, - { - "text": "Favourably consider alternative sentences for juvenile offenders, and immediately halt executions of all juvenile offenders on death row", - "values": [ - "Death penalty", - "Justice", - "Rights of the Child" - ] - }, - { - "text": "Continue its policies aimed at diversifying its economy, placing particular emphasis on agriculture, fisheries and manufacturing", - "values": [ - "Development" - ] - }, - { - "text": "End the kidnapping of persons, whatever their country of origin may be", - "values": [ - "Enforced disappearances" - ] - }, - { - "text": "Review the assessment regarding the absence of any racial discrimination within the country, as recommended by the Committee on the Elimination of Racial Discrimination, and adopt legislation that prohibits racial discrimination, especially against Black Africans, as well as guarantee that migrant workers are treated on a non-discriminatory basis, as recommended by the Committee on Economic, Social and Cultural Rights ", - "values": [ - "Labour", - "Migrants", - "Racial discrimination", - "Treaty bodies" - ] - }, - { - "text": "Continue its efforts regarding the integration of the Muslim population in Germany, while at the same time ensuring the enjoyment of their human rights, including the right to religion ", - "values": [ - "Freedom of religion and belief", - "Minorities" - ] - }, - { - "text": "Ratify the Convention on the Elimination of All Forms of Discrimination against Women at the earliest opportunity", - "values": [ - "International instruments", - "Women's rights" - ] - }, - { - "text": "Consider acceding to the International Convention on the Protection of the Rights of All Migrant Workers and Members of Their Families (ICRMW) ", - "values": [ - "International instruments", - "Labour", - "Migrants" - ] - }, - { - "text": "Ratify or accede to international human rights instruments, to which the Comoros is not yet party", - "values": [ - "International instruments" - ] - }, - { - "text": "Increase the administrative capacity of courts to a sufficient level, to provide adequate support and protection to witnesses, to accelerate the investigation and prosecution of war crimes and to take the necessary steps to excavate all known mass/common graves and to identify all the remains", - "values": [ - "Justice" - ] - }, - { - "text": "Ratify ICCPR, ICESCR, CEDAW and CAT.", - "values": [ - "CP rights - general", - "ESC rights - general", - "International instruments", - "Torture and other CID treatment", - "Women's rights" - ] - }, - { - "text": "Remove the prohibition on wearing the hijab in public schools.", - "values": [ - "Freedom of religion and belief", - "Right to education" - ] - }, - { - "text": "Ensure all allegations of human rights abuses by security forces are independently investigated and that perpetrators are held to account", - "values": [ - "Human rights violations by state agents" - ] - }, - { - "text": "Continue the implementation of measures aimed at the promotion of the rights of children and senior citizens ", - "values": [ - "Rights of the Child" - ] - }, - { - "text": "Take additional measures to achieve the gender equality, including specific measures to eliminate domestic and sexual violence", - "values": [ - "Rights of the Child", - "Women's rights" - ] - }, - { - "text": "Continue its ongoing cooperation with the international human rights system of the United Nations", - "values": [ - "Special procedures", - "Treaty bodies", - "UPR process" - ] - }, - { - "text": "Continue strengthening its social plans in the area of the reduction of poverty and social exclusion ", - "values": [ - "Poverty" - ] - }, - { - "text": "Establish a committee to study human rights conventions in order to pave the way for accession to such conventions ", - "values": [ - "International instruments" - ] - }, - { - "text": "Disseminate and expand the understanding of the concept of social responsibility of the capital and encourage businessmen and the private sector to contribute to a comprehensive human development process, including through voluntary initiatives and charity work", - "values": [ - "Business and human rights", - "Development" - ] - }, - { - "text": "Introduce automatic prosecution for all acts of domestic violence, if this is not already done. ", - "values": [ - "Rights of the Child", - "Women's rights" - ] - }, - { - "text": "Further enhance the mandate of the Myanmar Human Rights Body so that it can discharge its duties in accordance with the Paris Principles", - "values": [ - "National Human Rights Institution" - ] - }, - { - "text": "Abolish the death penalty and create, in the meantime, a moratorium", - "values": [ - "Death penalty" - ] - }, - { - "text": "Continue all efforts to eliminate discrimination based on sexual orientation and gender identity", - "values": [ - "Sexual Orientation and Gender Identity" - ] - }, - { - "text": "Establish a legal framework for the national preventive mechanism against torture and lobby for the passage of the bill to establish a national observatory for the prevention of torture", - "values": [ - "Torture and other CID treatment" - ] - }, - { - "text": "Establish a de jure moratorium on the death penalty and commute all the death sentences with a view to its abolition", - "values": [ - "Death penalty" - ] - }, - { - "text": "Continue working to eradicate the practices that allow rapists to avoid prosecution if they marry their victims", - "values": [ - "Rights of the Child", - "Women's rights" - ] - }, - { - "text": "Continue to honour its commitment to development aid to help developing countries better achieve the right to development", - "values": [ - "Development" - ] - }, - { - "text": "Continue efforts to fight poverty and consider including in the programmes persons with disabilities ", - "values": [ - "Disabilities", - "Poverty" - ] - }, - { - "text": "Foster equal and unconditional access to health care and education for all inhabitants of the country", - "values": [ - "Right to education", - "Right to health" - ] - }, - { - "text": "Intensify dialogue with the Councils of various national minorities in Serbia and with their organizations ", - "values": [ - "Minorities" - ] - }, - { - "text": "Consider the adoption of a national plan of action in pursuance of the United Nations Declaration on the Rights of Indigenous Peoples (UNDRIP)", - "values": [ - "Indigenous peoples", - "International instruments" - ] - }, - { - "text": "Seek technical assistance to improve the judiciary, in order to more adequately execute its functions", - "values": [ - "Justice", - "Technical assistance and cooperation" - ] - }, - { - "text": "Take measures to amend the 2005 counter-terrorism law with the aim of reducing the risk of misapplication of the law", - "values": [ - "Counter-terrorism" - ] - }, - { - "text": "Consider the possibility of signing and ratifying CED", - "values": [ - "Enforced disappearances", - "International instruments" - ] - }, - { - "text": "Speed up the ratification of the ICCPR, which has been already signed by China ", - "values": [ - "CP rights - general", - "International instruments" - ] - }, - { - "text": "Review its national legislation to eliminate any discrimination against women.", - "values": [ - "Women's rights" - ] - }, - { - "text": "Intensify efforts on a national scale for the sustainable use of natural resources ", - "values": [ - "Environment" - ] - }, - { - "text": "Take all necessary measures to clarify allegations of extrajudicial executions and arbitrary detentions ", - "values": [ - "Detention", - "Extrajudicial executions" - ] - }, - { - "text": "Further enhance the rights of children, especially orphaned and disabled children, children affected by HIV/AIDS and children from poor households", - "values": [ - "Disabilities", - "HIV - Aids", - "Poverty", - "Rights of the Child" - ] - }, - { - "text": "Facilitate acceding to both the International Covenant on Civil and Political Rights and the International Covenant on Economic, Social and Cultural Rights", - "values": [ - "CP rights - general", - "ESC rights - general", - "International instruments" - ] - }, - { - "text": "Introduce a legal ban on the use of corporal punishment of children", - "values": [ - "Rights of the Child", - "Torture and other CID treatment" - ] - }, - { - "text": "Continue concentrating efforts for the inclusion of pupils of Roma origin in the educational system", - "values": [ - "Minorities", - "Right to education" - ] - }, - { - "text": "Provide adequate protection to human rights defenders at risk, especially involving the right to freedom of expression, peaceful assembly and association ", - "values": [ - "Freedom of association and peaceful assembly", - "Freedom of opinion and expression", - "Human rights defenders" - ] - }, - { - "text": "Establish a moratorium on executions with a view to abolishing the death penalty, and support the United Nations General Assembly resolution on a moratorium on the use of the death penalty ", - "values": [ - "Death penalty" - ] - }, - { - "text": "Immediately lift the state of emergency, implement the 1997 Constitution and hold free and fair elections with international monitoring ", - "values": [ - "Elections" - ] - }, - { - "text": "Continue its efforts to combat all forms of discrimination and religious fanaticism", - "values": [ - "Freedom of religion and belief", - "Racial discrimination" - ] - }, - { - "text": "Call on Djibouti to seek the appropriate technical assistance from the international community to enable the country to build its human right capacities ", - "values": [ - "Technical assistance and cooperation" - ] - }, - { - "text": "Consider withdrawing its reservation to ICCPR ", - "values": [ - "CP rights - general", - "International instruments" - ] - }, - { - "text": "Continue its efforts on the prevention of violence against women", - "values": [ - "Women's rights" - ] - }, - { - "text": "Promote the active participation of indigenous people in the decision-making process on issues concerning them, especially regarding land and territories", - "values": [ - "Indigenous peoples", - "Right to land" - ] - }, - { - "text": "Ensure that measures to address HIV also address the broader needs of vulnerable communities", - "values": [ - "HIV - Aids" - ] - }, - { - "text": "Enact legal and societal reforms in order to ensure that non-native citizens and legal residents are able to fully enjoy their constitutionally and internationally protected human rights", - "values": [ - "Migrants" - ] - }, - { - "text": "Ensure full respect for equal rights of women in all areas of life, including by ensuring the equal participation of women in decision making ", - "values": [ - "Women's rights" - ] - }, - { - "text": "Create and implement a national action plan for the elimination of domestic violence and child abuse with the technical assistance of specialized agencies and programmes of the United Nations system ", - "values": [ - "Rights of the Child", - "Technical assistance and cooperation", - "Women's rights" - ] - }, - { - "text": "Ensure the protection of freedom of expression and of assembly in law and in practice, especially with regard to political participation and the safety of journalists", - "values": [ - "Freedom of opinion and expression", - "Freedom of religion and belief", - "Freedom of the press" - ] - }, - { - "text": "Continue efforts to prevent violence against children and their exploitation in the workplace ", - "values": [ - "Labour", - "Rights of the Child" - ] - }, - { - "text": "Enable access to military facilities to the Special Rapporteur on the question of torture as requested ", - "values": [ - "Detention", - "Special procedures", - "Torture and other CID treatment" - ] - }, - { - "text": "Share its experiences in the realization of the cultural rights of the people, including through diversified cultural initiatives and activities", - "values": [ - "ESC rights - general" - ] - }, - { - "text": "Appoint a Chairperson to the Fiji Human Rights and Anti Discrimination Commission", - "values": [ - "National Human Rights Institution" - ] - }, - { - "text": "Continue guaranteeing solid coordination between institutions responsible for addressing issues regarding children ", - "values": [ - "Rights of the Child" - ] - }, - { - "text": "Provide necessary protection to asylum seekers, preserve their dignity and guarantee their access to legal aid and facilitate family reunification for migrants and provide them with social security and review asylum procedures to ensure their compliance with the non-refoulement principle", - "values": [ - "Asylum-seekers - refugees", - "Migrants" - ] - }, - { - "text": "Continue efforts in the implementation of sustainable development strategies for the year 2030", - "values": [ - "Development" - ] - }, - { - "text": "Continue its measures in fostering women's advancement, including intensifying efforts to increase the number of women in decision-making posts", - "values": [ - "Women's rights" - ] - }, - { - "text": "Strengthen the welfare system, particularly related to the protection of children without appropriate care and their access to education", - "values": [ - "Right to education", - "Rights of the Child" - ] - }, - { - "text": "Extend a standing invitation to the Council's special procedures", - "values": [ - "Special procedures" - ] - }, - { - "text": "Ratify the Optional Protocol to the Convention on the Elimination of All Forms of Discrimination against Women, and adopt measures to eliminate discriminatory practices", - "values": [ - "International instruments", - "Women's rights" - ] - }, - { - "text": "Strengthen efforts in combating corruption and for access to justice ", - "values": [ - "Corruption", - "Justice" - ] - }, - { - "text": "Allocate more resources from the national budget and take additional measures to improve the situation in prisons and so as to ensure that the deteriorated penitentiary situation is no longer be a problem in the country ", - "values": [ - "Detention" - ] - }, - { - "text": "Ratify the core international human rights instruments including the International Convention for the Protection of All Persons from Enforced Disappearance ", - "values": [ - "Enforced disappearances", - "International instruments" - ] - }, - { - "text": "Eliminate laws that criminalize opinion and accept visit requests from the OAS and the United Nations Special Rapporteurs on Freedom of Expression ", - "values": [ - "Freedom of opinion and expression", - "Special procedures" - ] - }, - { - "text": "Continue its positive practice of incorporating intercultural education into the education system as part of the recognition of ethnic diversity", - "values": [ - "Minorities", - "Right to education" - ] - }, - { - "text": "Continue its efforts to achieve balance between its counterterrorism strategies and the need to forestall the spread of xenophobia ", - "values": [ - "Counter-terrorism", - "Racial discrimination" - ] - }, - { - "text": "Grant full access to enable international monitoring of detention facilities under the control of the Government and its supporters", - "values": [ - "Detention" - ] - }, - { - "text": "Actively and prudently push forward reform of re-education through labour according to its national realities, so that everything goes according to its system", - "values": [ - "Detention" - ] - }, - { - "text": "Continue to ensure the human rights of the Aboriginal people, including by realizing their economic, social and cultural rights ", - "values": [ - "ESC rights - general", - "Indigenous peoples" - ] - }, - { - "text": "In the context of the provisions of Barbados' Constitution in the area of the fight against discrimination, continue promoting legislative and public policy action to ensure the rights of persons with disabilities, especially in the areas of employment, education and the provision of State services ", - "values": [ - "Disabilities" - ] - }, - { - "text": "Put an end to the occupation of all occupied Arab land, including East Jerusalem and the Golan Heights", - "values": [ - "Other" - ] - }, - { - "text": "Continue the National Human Rights Plan with a new orientation derived from the United Nations framework to guide government policy on business and human rights", - "values": [ - "Business and human rights" - ] - }, - { - "text": "Continue mainstreaming of promotion and protection of human rights in its development plans", - "values": [ - "Development" - ] - }, - { - "text": "Take measures to eliminate the persistence of traditions harmful to the rights of women, including early contract marriages and polygamy", - "values": [ - "Rights of the Child", - "Women's rights" - ] - }, - { - "text": "Continue to take the necessary measures to end trafficking in human beings, including through the implementation of the national program on combating trafficking in human beings ", - "values": [ - "Trafficking" - ] - }, - { - "text": "Consider establishing an independent national human rights institution in conformity with the Paris Principles ", - "values": [ - "National Human Rights Institution" - ] - }, - { - "text": "Sign and-or ratify the Convention against Torture and Other Cruel, Inhuman or Degrading Treatment of Punishment and its Optional Protocol ", - "values": [ - "Detention", - "International instruments", - "Torture and other CID treatment" - ] - }, - { - "text": "Take further measures to ensure that Roma people fully enjoy their human rights, including by preventing and combating discrimination and racially motivated crimes against Roma people ", - "values": [ - "Minorities", - "Racial discrimination" - ] - }, - { - "text": "Take further steps to assure meaningful implementation and adequate funding of efforts to promote Roma integration, especially in the field of education", - "values": [ - "Minorities", - "Right to education" - ] - }, - { - "text": "Commit to the implementation of all the recommendations received at the first UPR", - "values": [ - "UPR process" - ] - }, - { - "text": "Promptly adopt the bill to abolish the death penalty.", - "values": [ - "Death penalty" - ] - }, - { - "text": "Take measures to ensure equal opportunities for women in the labour market", - "values": [ - "Women's rights" - ] - }, - { - "text": "Take the necessary measures to effectively eliminate the worst forms of child labour ", - "values": [ - "Labour", - "Rights of the Child" - ] - }, - { - "text": "Design and implement policies for access to justice for victims of domestic violence, including free and extensive services providing legal and psychological support, as well as shelters", - "values": [ - "Rights of the Child", - "Women's rights" - ] - }, - { - "text": "Support and fully implement the United Nations Declaration on the Rights of Indigenous Peoples ", - "values": [ - "Indigenous peoples", - "International instruments" - ] - }, - { - "text": "Renew the mandate of the Office of the United Nations High Commissioner for Human Rights established in Guatemala, for th e period from September 2008 to September 2011, taking into account that its mandate ends in September of this year ", - "values": [ - "Technical assistance and cooperation" - ] - }, - { - "text": "Invite the special procedures mandate-holders who requested to visit the country ", - "values": [ - "Special procedures" - ] - }, - { - "text": "Ratify all core human rights conventions, especially ICCPR, ICESCR and CAT ", - "values": [ - "CP rights - general", - "ESC rights - general", - "International instruments", - "Torture and other CID treatment" - ] - }, - { - "text": "Take further action and measures in order to further promote women's participation in the judiciary and all other sectors of life in the country ", - "values": [ - "Women's rights" - ] - }, - { - "text": "Take further measures to eliminate discriminatory cultural practices", - "values": [ - "Freedom of religion and belief", - "Racial discrimination" - ] - }, - { - "text": "Cooperate with the human rights mechanisms and extend a standing invitation to the special procedures of the Human Rights Council", - "values": [ - "Special procedures", - "Treaty bodies", - "UPR process" - ] - }, - { - "text": "Take steps to reduce and prevent trafficking and provide adequate incentives and protection to victims", - "values": [ - "Trafficking" - ] - }, - { - "text": "Promote climate change mitigation and adaptation strategies and disseminate these to the entire Samoan society and in the school curriculum", - "values": [ - "Environment" - ] - }, - { - "text": "End all forms of corporal punishment of children in all settings, including in the home and in schools, by enforcing its prohibition, as previously recommended", - "values": [ - "Rights of the Child", - "Torture and other CID treatment", - "UPR process" - ] - }, - { - "text": "Protect freedom of assembly and association by ensuring that peaceful demonstration can take place free from intimidation and harassment", - "values": [ - "Freedom of association and peaceful assembly" - ] - }, - { - "text": "Actively investigate and condemn instances of discrimination against non-citizens and members of religious and ethnic minority groups, and condemn anti-Semitic statements made by public officials", - "values": [ - "Freedom of religion and belief", - "Human rights violations by state agents", - "Minorities", - "Racial discrimination" - ] - }, - { - "text": "Recognize the competence of the Committee on the Elimination of Racial Discrimination in pursuance to article 14 of the International Convention on the Elimination of All Forms of Racial Discrimination", - "values": [ - "International instruments", - "Racial discrimination", - "Treaty bodies" - ] - }, - { - "text": "Expedite the establishment of a national human rights institution in accordance with the Paris Principles", - "values": [ - "National Human Rights Institution" - ] - }, - { - "text": "Revise domestic legislation governing the National Human Rights Commission to bring it in line with the Paris Principles ", - "values": [ - "National Human Rights Institution" - ] - }, - { - "text": "Ratify the Rome Statute of the International Criminal Court and the Convention on the Prevention and Punishment of the Crime of Genocide ", - "values": [ - "International instruments", - "Justice" - ] - }, - { - "text": "Adopt Bill No. 2442 in order to guarantee the independence and autonomy of the members of the National Preventive Mechanism, in conformity with Brazil's obligations under OPCAT ", - "values": [ - "Detention", - "International instruments", - "Torture and other CID treatment" - ] - }, - { - "text": "Prevent all acts of torture and ill-treatment and ensure prompt and impartial investigations into complaints", - "values": [ - "Torture and other CID treatment" - ] - }, - { - "text": "Continue to strengthen the programs and initiatives aimed at guaranteeing the right to health and in particular at reducing maternal and child mortality ", - "values": [ - "Right to health", - "Rights of the Child", - "Women's rights" - ] - }, - { - "text": "Strengthen measures to protect the rights of minorities ", - "values": [ - "Minorities" - ] - }, - { - "text": "Amend section 27 paragraph 1 of the Constitution, incorporate into the legislation the principle of equality between women and men and a prohibition of discrimination on the basis of sex as well as enact legislation to enforce the prohibition of discrimination ", - "values": [ - "Women's rights" - ] - }, - { - "text": "Conduct awareness raising and sensitization programmes to empower women, advance women's rights and ensure gender equality", - "values": [ - "Human rights education and training", - "Women's rights" - ] - }, - { - "text": "Implement the Anti-Discrimination Law by adopting an antidiscrimination strategy and action plan", - "values": [ - "Other" - ] - }, - { - "text": "Implement efficient policies and programmes to eliminate the phenomenon of excessive use of force by law enforcement officials, such as unlawful arrests and detentions, torture of detainees, enforced disappearances or extra-judicial executions to investigate allegations of torture and ill treatment and duly punish the perpetrators in accordance to international standards law enforcement officials should undergo a due human rights training", - "values": [ - "Detention", - "Enforced disappearances", - "Extrajudicial executions", - "Human rights violations by state agents", - "Torture and other CID treatment" - ] - }, - { - "text": "Continue to promote sustainable economic and social development and improve people\u2019s living standards", - "values": [ - "Development", - "ESC rights - general" - ] - }, - { - "text": "Bring its Criminal Code into conformity with its international commitments by taking appropriate steps to ensure that same-sex activity between consenting adults is not subject to criminal sanctions ", - "values": [ - "Sexual Orientation and Gender Identity" - ] - }, - { - "text": "A fully integrated gender perspective in the follow up of this UPR ", - "values": [ - "UPR process", - "Women's rights" - ] - }, - { - "text": "Continue its efforts in the area of empowerment of women and enhance their role in the political, economic and social fields, as well as seeking collaboration with partners and stakeholders at the national and regional levels in order to continue to improve the human rights situation in Sudan ", - "values": [ - "Women's rights" - ] - }, - { - "text": "Continue strengthening national laws and regulations in the view to avoiding violence and discrimination against migrant workers and raising awareness on the existence of cultural diversity", - "values": [ - "Labour", - "Migrants", - "Racial discrimination" - ] - }, - { - "text": "Take positive steps to implement the Family Safety Act amongst law enforcement agencies", - "values": [ - "Women's rights" - ] - }, - { - "text": "Consider acceding to ILO Convention 189", - "values": [ - "International instruments", - "Labour" - ] - }, - { - "text": "Ratify the two optional protocols to the International Covenant on Civil and Political Rights ", - "values": [ - "CP rights - general", - "Death penalty", - "International instruments" - ] - }, - { - "text": "Specifically criminalize torture and put in place effective measures to prevent and sanction the use of torture", - "values": [ - "Torture and other CID treatment" - ] - }, - { - "text": "Continue the national efforts in the framework of the new National Action Plan against Human Trafficking to prevent and combat human trafficking and ensure the rehabilitation of victims", - "values": [ - "Trafficking" - ] - }, - { - "text": "Continue its ongoing efforts to promote and protect economic, social and cultural rights of migrant workers in Singapore, including efforts to enhance reach out to migrant workers on their employment rights, responsibilities, and their avenues of recourse", - "values": [ - "ESC rights - general", - "Labour", - "Migrants" - ] - }, - { - "text": "Encourage young women to choose non-traditional fields of study and professions", - "values": [ - "Women's rights" - ] - }, - { - "text": "Cooperate with the international community in order to strengthen the efforts in solving the humanitarian crises in the country", - "values": [ - "Technical assistance and cooperation" - ] - }, - { - "text": "Initiate public programmes to increase knowledge and awareness about sexually transferred diseases - STDs - and contraception", - "values": [ - "HIV - Aids" - ] - }, - { - "text": "Intensify efforts to enhance the complete independence and functioning of the judiciary", - "values": [ - "Justice" - ] - }, - { - "text": "Ensure access to sexual and reproductive health services for adolescences", - "values": [ - "Right to health", - "Rights of the Child" - ] - }, - { - "text": "Adopt further measures and programmes and continue efforts in strengthening human rights in accordance with the values and customs in Brunei Darussalam ", - "values": [ - "General" - ] - }, - { - "text": "Intensify its efforts to fight discrimination and intolerance, mainly towards asylum seekers, migrants and persons of African origin", - "values": [ - "Asylum-seekers - refugees", - "Migrants", - "Minorities", - "Racial discrimination" - ] - }, - { - "text": "Pay more attention to the problems related to the independence of the judicial process, and ensure that all judicial procedures are in harmony with the international standards associated with a democratic State", - "values": [ - "Justice" - ] - }, - { - "text": "Continue to give high priority to the promotion of women, children, persons with disabilities and migrants rights ", - "values": [ - "Disabilities", - "Migrants", - "Rights of the Child", - "Women's rights" - ] - }, - { - "text": "Continue to avail international assistance for investigating war crimes and human rights training for security forces", - "values": [ - "Human rights education and training", - "Justice", - "Technical assistance and cooperation" - ] - }, - { - "text": "Step up actions to tackle violence and discrimination against women", - "values": [ - "Women's rights" - ] - }, - { - "text": "While commending Barbados for not resorting to executions since 1984, establish a formal moratorium with a view to the abolishment of the death penalty ", - "values": [ - "Death penalty" - ] - }, - { - "text": "Continue investing efforts in the prevention of human trafficking, with special attention to investigation and prosecution of all cases of sale and trafficking of children", - "values": [ - "Rights of the Child", - "Trafficking" - ] - }, - { - "text": "Strengthen the protection of women\u2019s rights in accordance with the Protection of Women from Domestic Violence Act and other relevant laws", - "values": [ - "Women's rights" - ] - }, - { - "text": "Enhance the support for the Office of the Ombudsman and strengthen the Commission for Protection against Discrimination to ensure that both institutions fulfil their duties effectively and independently", - "values": [ - "National Human Rights Institution" - ] - }, - { - "text": "Review its legislation to prohibit and sanction corporal punishments of children in all areas", - "values": [ - "Rights of the Child", - "Torture and other CID treatment" - ] - }, - { - "text": "Pursue and intensify its cooperation with countries interested in combating the phenomenon of terrorism by strictly respecting its bilateral and multilateral commitments ", - "values": [ - "Counter-terrorism" - ] - }, - { - "text": "Continue to build the capacity of an independent judiciary that would process court cases more effectively and independently ", - "values": [ - "Justice" - ] - }, - { - "text": "Fully publish and implement a plan that addresses how the Government of Montenegro intends to make appointments and promotions in the judiciary a fair and transparent process, to ensure that the independence of the judiciary is fully protected ", - "values": [ - "Justice" - ] - }, - { - "text": "Continue to strengthen human rights training for police and local government officials, especially on interrogation and investigation methods. Developments in the legal framework take much training and effort to translate into actual practice", - "values": [ - "Human rights education and training" - ] - }, - { - "text": "Launch an awareness-raising campaign regarding the elimination of violence against women ", - "values": [ - "Human rights education and training", - "Women's rights" - ] - }, - { - "text": "Adopt further measures to ensure universal primary education, free of charge ", - "values": [ - "Right to education" - ] - }, - { - "text": "Consider drawing up new legislation on the enforceability of the right to education", - "values": [ - "Right to education" - ] - }, - { - "text": "Submit its overdue report to the Committee on the Elimination of Racial Discrimination", - "values": [ - "Racial discrimination", - "Treaty bodies" - ] - }, - { - "text": "Take effective measures to ensure the full realization of the rights to freedom of expression, including on internet, assembly and association ", - "values": [ - "Freedom of association and peaceful assembly", - "Freedom of opinion and expression" - ] - }, - { - "text": "Protect the rights of Roma people and other minorities through legislation, law enforcement and administrative measures, eradicate racial discrimination and xenophobia, and effectively combat racially motivated violence", - "values": [ - "Minorities", - "Racial discrimination" - ] - }, - { - "text": "Harmonize its Constitution and legislation with the accepted international law standards", - "values": [ - "General" - ] - }, - { - "text": "Develop appropriate policies and targeted measures in ensuring genuine equality in accordance with the recommendation of the Committee on Economic, Social and Cultural Rights ", - "values": [ - "ESC rights - general", - "Treaty bodies" - ] - }, - { - "text": "Establish an independent, credible and authoritative Police Oversight Authority, with sufficient powers and resources ", - "values": [ - "Justice" - ] - }, - { - "text": "Consider signing and ratifying the Second Optional Protocol to ICCPR \n\n", - "values": [ - "Death penalty", - "International instruments" - ] - }, - { - "text": "Enact the Freedom of Information bill, and repeal laws that that provide criminal penalties for libel ", - "values": [ - "Freedom of opinion and expression" - ] - }, - { - "text": "Continue the programmes and national plans aimed at empowering youth", - "values": [ - "Other" - ] - }, - { - "text": "Sign and ratify the International Convention on the Protection of the Rights of All Migrant Workers and Members of Their Families ", - "values": [ - "International instruments", - "Labour", - "Migrants" - ] - }, - { - "text": "Extend a standing invitation to the special procedures of the Human Rights Council and coordinate in the shortest possible terms the requested visits", - "values": [ - "Special procedures" - ] - }, - { - "text": "Proceed to review of the cases of all persons deprived of their liberty who have been sentenced to death for crimes committed when they were younger than 18, as well as to prohibit the application of the death penalty to persons under the age of 18 in national legislation ", - "values": [ - "Death penalty", - "Rights of the Child" - ] - }, - { - "text": "Adopt concrete measures, in the form of national awareness programmes and campaigns, to eradicate stereotypes, cultural practices and traditions contrary to the fundamental rights of women and girls", - "values": [ - "Human rights education and training", - "Rights of the Child", - "Women's rights" - ] - }, - { - "text": "Repeal all discriminatory legal provisions such as granting citizenship on the basis of ethnicity or race and providing for different citizenship categories", - "values": [ - "Minorities", - "Racial discrimination", - "Statelessness and the right to nationality" - ] - }, - { - "text": "Ensure that the Protection of State Information Bill and other statutory measures do not violate the right to freedom of expression or unduly impede access to public domain information ", - "values": [ - "Freedom of opinion and expression" - ] - }, - { - "text": "Ensure effective implementation of anti-discrimination legislation and consider the possibility of adopting special measures to promote the integration of national and ethnic minorities into society", - "values": [ - "Minorities", - "Racial discrimination" - ] - }, - { - "text": "Consider the possibility of accession to CED", - "values": [ - "Enforced disappearances", - "International instruments" - ] - }, - { - "text": "Investigate and, as appropriate, prosecute officials suspected of committing torture or other violations of human rights and punish those who are convicted ", - "values": [ - "Torture and other CID treatment" - ] - }, - { - "text": "Strengthen the security mechanisms in all the territory", - "values": [ - "Public security" - ] - }, - { - "text": "Continue to find effective measures to address concerns expressed by a number of treaty bodies, including the CRC, CEDAW and ILO Committee of Experts, regarding trafficking and exploitation of women and children for commercial purposes", - "values": [ - "Rights of the Child", - "Trafficking", - "Treaty bodies", - "Women's rights" - ] - }, - { - "text": "Increase programs of obstetric, prenatal and neonatal care and attendance at deliveries by medical and paramedical professionals, especially in rural areas ", - "values": [ - "Right to health" - ] - }, - { - "text": "Ensure that the High Commission for Human Rights functions in accordance with the Paris Principles", - "values": [ - "National Human Rights Institution" - ] - }, - { - "text": "Adopt strict legislation which criminalizes rape in every context and which ensures legal punishment of the perpetrators including those from the police, military and other authorities ", - "values": [ - "Human rights violations by state agents" - ] - }, - { - "text": "Adopt measures to increase gender parity in political and public spheres and improve the participation of women in decision-making and public policy development ", - "values": [ - "Women's rights" - ] - }, - { - "text": "Develop a national programme to follow up on the results of this universal periodic review ", - "values": [ - "UPR process" - ] - }, - { - "text": "Developing a high-priority action plan to raise public awareness on all forms of discrimination and ill-treatment of children", - "values": [ - "Rights of the Child" - ] - }, - { - "text": "Ensure the effective implementation of the existing legislation aimed at fighting discrimination and violence against women and domestic violence", - "values": [ - "Rights of the Child", - "Women's rights" - ] - }, - { - "text": "Consider ratification of the Second Optional Protocol to the International Covenant on Civil and Political Rights with the view to abolish the death penalty and to introduce a moratorium on executions, as undertaken during the previous review", - "values": [ - "Death penalty", - "International instruments", - "UPR process" - ] - }, - { - "text": "Adopt all necessary measures to combat impunity in cases of human rights violations perpetrated by any person, including members of the security forces. ", - "values": [ - "Human rights violations by state agents", - "Impunity" - ] - }, - { - "text": "Strengthen its efforts to combat traditional practices that are harmful to women and children, particularly, female genital mutilation", - "values": [ - "Rights of the Child", - "Torture and other CID treatment", - "Women's rights" - ] - }, - { - "text": "To strengthen the system of effective response and monitoring of international commitments undertaken by the Bolivarian Republic of Venezuela in the framework of the human rights treaties and Conventions, through the implementation of a system of analysis and timely preparation of reports to the treaty bodies", - "values": [ - "Treaty bodies" - ] - }, - { - "text": "Taking urgent measures to strengthen the judicial institutions by allocating more funds to judicial districts, to expand the use of mobile courts and provide adequate forensic equipment ", - "values": [ - "Justice" - ] - }, - { - "text": "Approve pending amendments to the Penal Code to abolish the death penalty ", - "values": [ - "Death penalty" - ] - }, - { - "text": "Adopt a national coordination framework to combat all forms of violence against children, dealing with aspects of gender violence", - "values": [ - "Rights of the Child", - "Women's rights" - ] - }, - { - "text": "Continue its efforts to promote and protect human rights in accordance with the characteristics, values and needs of Iranian society", - "values": [ - "Other" - ] - }, - { - "text": "Reinforce its efforts to recognize indigenous rights and effectively include them in Chile's legal and administrative structure, and address land claims of indigenous peoples and communities through a process of effective dialogue and negotiation.", - "values": [ - "Indigenous peoples", - "Right to land" - ] - }, - { - "text": "Establish concrete goals to accelerate the achievement of substantive gender equality, including measures to increase women's representation in decision making positions and addressing the long-standing pay gap between women and men ", - "values": [ - "Women's rights" - ] - }, - { - "text": "Pursue timely and continued progress in its reconciliation and reform programme in accordance with resolution 30/1 as adopted by the Human Rights Council", - "values": [ - "Justice" - ] - }, - { - "text": "Adopt further measures to address racism and support community tolerance", - "values": [ - "Racial discrimination" - ] - }, - { - "text": "Ensure that adequate status is accorded to minority languages", - "values": [ - "Minorities" - ] - }, - { - "text": "Effectively implement the Law on Domestic Violence against Women, and enforce the policy of "zero tolerance" of sexual abuse in schools to provide better protection for women and girls ", - "values": [ - "Rights of the Child", - "Women's rights" - ] - }, - { - "text": "Ratify and fully align its national legislation with the Rome Statute of the International Criminal Court, and accede to the Agreement on Privileges and Immunities of the Court", - "values": [ - "International instruments", - "Justice" - ] - }, - { - "text": "Cooperate with the special procedures of the Human Rights Council and their missions.", - "values": [ - "Special procedures" - ] - }, - { - "text": "Abolish the practice of arraigo, as recommended by the Committee against Torture", - "values": [ - "Justice", - "Treaty bodies" - ] - }, - { - "text": "Proceed to the ratification of the Convention on the Rights of the Child, signed in 1995, the Convention on the Elimination of All forms of Discrimination against Women, signed in 1980, the International Covenant on Economic, Social and Cultural Rights, signed in 1977, and transpose them into national law", - "values": [ - "ESC rights - general", - "International instruments", - "Rights of the Child", - "Women's rights" - ] - }, - { - "text": "Promulgate and implement the Law Revision (Penalties in Criminal Matters) Miscellaneous Amendment Bill, with a view to a definitive abolition of the death penalty ", - "values": [ - "Death penalty" - ] - }, - { - "text": "Consider becoming a party to the International Convention for the Protection of All Persons from Enforced Disappearance (CPED) ", - "values": [ - "Enforced disappearances", - "International instruments" - ] - }, - { - "text": "Adopt an integrated law to protect the environment ", - "values": [ - "Environment" - ] - }, - { - "text": "Pursue its efforts reforming the education system as it is an important element in minimizing poverty ", - "values": [ - "Poverty", - "Right to education" - ] - }, - { - "text": "Further incorporate, as appropriate, its international human rights obligations into domestic law.", - "values": [ - "International instruments" - ] - }, - { - "text": "Review national legal provisions, as e.g. those criminalising habitual debauchery, which are open to abuse for persecution and intimidation of persons of minority sexual orientation or gender identity or of persons with HIV-AIDS", - "values": [ - "HIV - Aids", - "Sexual Orientation and Gender Identity" - ] - }, - { - "text": "Continue to combat hate crimes against vulnerable groups and prosecute perpetrators", - "values": [ - "Racial discrimination" - ] - }, - { - "text": "Develop a national comprehensive action plan for children and strengthen legal measures for the protection of minors ", - "values": [ - "Rights of the Child" - ] - }, - { - "text": "Speed up the process of incorporation of fundamental social rights to the Constitution ", - "values": [ - "ESC rights - general" - ] - }, - { - "text": "Continue efforts that promote and protect the rights of women, with emphasis on the incorporation of a gender perspective in law and in public policies, and pursuing measures to combat violence against women", - "values": [ - "Women's rights" - ] - }, - { - "text": "Request all necessary technical assistance enabling the Government to meet its international commitments", - "values": [ - "Technical assistance and cooperation" - ] - }, - { - "text": "Continue implementing the recommendations emanating from the Truth and Reconciliation Commission", - "values": [ - "Justice" - ] - }, - { - "text": "Continue its efforts to correct the discriminatory practices and institutions against women throughout society, and take active measures to reduce social elements that could contribute to acquiescence or passivity with regard to domestic violence as demonstrated in its UPR report", - "values": [ - "UPR process", - "Women's rights" - ] - }, - { - "text": "Ratify CAT and its Optional Protocol, and consider designating the national human rights institution, when established, as the country's national preventive mechanism ", - "values": [ - "Detention", - "International instruments", - "Torture and other CID treatment" - ] - }, - { - "text": "Implement effectively plans and strategies to combat human trafficking and provide the necessary care and support to victims, including through rehabilitation and social integration ", - "values": [ - "Trafficking" - ] - }, - { - "text": "Not to repeal section 266(b) of the Criminal Code ", - "values": [ - "Freedom of opinion and expression" - ] - }, - { - "text": "Accede to the international treaties on human rights and ratify ICESCR", - "values": [ - "ESC rights - general", - "International instruments" - ] - }, - { - "text": "Establish an institutional structure that guarantees the right of access to public information ", - "values": [ - "Freedom of opinion and expression" - ] - }, - { - "text": "Ensure that all places of detention comply with the UN Standard Minimum Rules for the Treatment of Prisoners", - "values": [ - "Detention" - ] - }, - { - "text": "Recommended that a national commission on human rights be established in accordance with the Paris Principles. ", - "values": [ - "National Human Rights Institution" - ] - }, - { - "text": "Continue to strengthen the National Office against Racial Discrimination with the view to combating hate speech and protect Roma, racial and religious minorities including Muslims from violence and discrimination", - "values": [ - "Freedom of religion and belief", - "Minorities", - "Racial discrimination" - ] - }, - { - "text": "Sign and ratify the Convention on the Elimination of All Forms of Discrimination against Women", - "values": [ - "International instruments", - "Women's rights" - ] - }, - { - "text": "Intensify its awareness and campaign programmes to encourage school enrolment of children who have been excluded from the education system", - "values": [ - "Right to education", - "Rights of the Child" - ] - }, - { - "text": "Continue promoting equitable representation of women in the Parliament and Government", - "values": [ - "Women's rights" - ] - }, - { - "text": "Provide children who work or live in the streets with recovery and social reintegration services ", - "values": [ - "Rights of the Child" - ] - }, - { - "text": "Continue to adopt measures to improve the situation in the penitentiary system of the country in line with international standards", - "values": [ - "Detention" - ] - }, - { - "text": "Improve the existing activities and mechanisms to strengthen intercultural and interreligious dialogue ", - "values": [ - "Freedom of religion and belief", - "Minorities" - ] - }, - { - "text": "Cooperate fully with the International Criminal Court investigation, and ensure the protection of witnesses from intimidation and violence ", - "values": [ - "International instruments", - "Justice" - ] - }, - { - "text": "Continue taking the measures that allow the total elimination of all forms of discrimination against women and ensure gender equality", - "values": [ - "Women's rights" - ] - }, - { - "text": "Strengthen legislation to ensure gender equality, in particular to prevent violence against women and stop early and forced marriages", - "values": [ - "Rights of the Child", - "Women's rights" - ] - }, - { - "text": "Consider raising (from 7 years old) the minimum age of criminal responsibility", - "values": [ - "Justice", - "Rights of the Child" - ] - }, - { - "text": "Repeal all laws that allow violence and discrimination against women to persist", - "values": [ - "Women's rights" - ] - }, - { - "text": "Take effective measures to protect lesbian, gay, bisexual and intersex persons from violence and prosecute the perpetrators of violent attacks", - "values": [ - "Sexual Orientation and Gender Identity" - ] - }, - { - "text": "Undertake constitutional and legislative reforms aimed at the full abolition of the death penalty ", - "values": [ - "Death penalty" - ] - }, - { - "text": "Continue to pay high attention to and promote production of agriculture in order to reduce the number of people suffering from extreme poverty so as to guarantee a basic livelihood to people ", - "values": [ - "Poverty" - ] - }, - { - "text": "Ensure that the minimum age of marriage is 18 for both boys and girls", - "values": [ - "Rights of the Child" - ] - }, - { - "text": "Ensure the full respect of the non-refoulement obligations, with regard to all asylum seekers", - "values": [ - "Asylum-seekers - refugees" - ] - }, - { - "text": "Take appropriate action to adopt and amend domestic legislation, including the Penal Code, and effectively implement this legislation to protect children from all forms of violence.", - "values": [ - "Rights of the Child" - ] - }, - { - "text": "Repeal legislation criminalizing abortion and ensure access to legal and safe abortion for victims of rape and incest, in cases where the life or health of a woman is at risk or when the foetus is not viable", - "values": [ - "Right to health", - "Rights of the Child", - "Women's rights" - ] - }, - { - "text": "Reiterate publicly its support to human rights defenders, generate an environment where they can work freely and take measures to fight against the impunity of perpetrators of aggressions and threats against them ", - "values": [ - "Human rights defenders", - "Impunity" - ] - }, - { - "text": "Continue to strengthen social protection programmes developed on behalf of its people, especially the population most in need", - "values": [ - "ESC rights - general" - ] - }, - { - "text": "Ratify the ICRMW, and ensure its domestic implementation", - "values": [ - "International instruments", - "Labour", - "Migrants" - ] - }, - { - "text": "Establish an effective and inclusive process to follow up on the UPR recommendations", - "values": [ - "UPR process" - ] - }, - { - "text": "Immediately close the Guantanamo facility", - "values": [ - "Detention" - ] - }, - { - "text": "Continue its efforts in protecting the rights of specific groups such as women, children, the disabled, the aged and migrant workers", - "values": [ - "Disabilities", - "Labour", - "Migrants", - "Rights of the Child", - "Women's rights" - ] - }, - { - "text": "Increase its efforts to promptly investigate all human rights abuses and prosecute alleged perpetrators", - "values": [ - "Justice" - ] - }, - { - "text": "Intensify efforts to combat poverty and improve the standard of living", - "values": [ - "Development", - "Poverty" - ] - }, - { - "text": "Bring to trial all defendants within a reasonable time, and that systems and procedures are put in place to ensure this", - "values": [ - "Justice" - ] - }, - { - "text": "Spare no effort to expedite the enactment and subsequent implementation of the law establishing the minimum age for marriage ", - "values": [ - "Rights of the Child" - ] - }, - { - "text": "Continue to enhance the capacities of the inter-ministerial working group on combating the trafficking in persons, with the involvement of civil society, to prosecute cases of trafficking, provide assistance to victims and raise awareness", - "values": [ - "Civil society", - "Trafficking" - ] - }, - { - "text": "Continue strengthening its successful social programmes such as family and health-care cards for poor households, which enable millions of Indonesians to access education and health programmes", - "values": [ - "Poverty", - "Right to education", - "Right to health" - ] - }, - { - "text": "Provide for an unhindered access of asylum-seekers to justice ", - "values": [ - "Asylum-seekers - refugees", - "Justice" - ] - }, - { - "text": "Continue its efforts to guarantee the human rights of Indigenous peoples", - "values": [ - "Indigenous peoples" - ] - }, - { - "text": "Deposit ratification instruments of the Kampala Convention on the Protection and Assistance of IDPs with the African Union and initiate a profiling exercise of the IDPs in Mogadishu to assess protection needs and define "durable solutions"", - "values": [ - "Internally displaced persons", - "International instruments" - ] - }, - { - "text": "Ratify the optional protocols to the treaties to which it is a Contracting Party in order to recognize the competence of Treaty Bodies in complaints, inquiry and urgent action procedures", - "values": [ - "International instruments", - "Treaty bodies" - ] - }, - { - "text": "Take specific and effective measures to ensure migrant workers\u2019 access to basic education and health care, and their protection against ill-treatment by providing judicial and administrative remedy", - "values": [ - "Migrants", - "Right to education", - "Right to health" - ] - }, - { - "text": "Continue finalizing the process of reviewing the legal framework on prohibiting, preventing and responding to all forms of sale and sexual exploitation of children, and to ensure the effective implementation of the framework through, inter alia, the harmonization of national legal and regulatory frameworks with ratified international instruments, accompanied by binding measures and mechanisms", - "values": [ - "International instruments", - "Rights of the Child", - "Trafficking" - ] - }, - { - "text": "Persist on the path of the protection and elevation of human dignity, taking into account relevant international standards", - "values": [ - "General" - ] - }, - { - "text": "That substantive reform of the penal system is pursued as a priority by the Government ", - "values": [ - "Justice" - ] - }, - { - "text": "Ensure that acts of violence committed by members of security forces are prosecuted in order to combat impunity", - "values": [ - "Human rights violations by state agents", - "Impunity" - ] - }, - { - "text": "Adopt legal provisions to prohibit religious discrimination in all areas including in that of labour ", - "values": [ - "Freedom of religion and belief" - ] - }, - { - "text": "Strengthen the protection of women by considering the enactment of a specific law on violence against women", - "values": [ - "Women's rights" - ] - }, - { - "text": "Recognize same-sex marriages ", - "values": [ - "Sexual Orientation and Gender Identity" - ] - }, - { - "text": "Give high priority to the drafting and implementation of a new Penal Code and a new Penal Procedural Code which would include provisions to prohibit discrimination against women, minorities and displaced persons in all its forms, provisions to facilitate access to justice for all citizens, and which excludes the death penalty", - "values": [ - "Death penalty", - "Internally displaced persons", - "Justice", - "Minorities", - "Women's rights" - ] - }, - { - "text": "Give access to food and other essential products to those who need them, taking into account the particular needs of children and pregnant and nursing women, and cooperate constructively with humanitarian agencies and other humanitarian actors by ensuring them access to all the territory ", - "values": [ - "Right to food", - "Rights of the Child", - "Women's rights" - ] - }, - { - "text": "Introduce in the legislation the principles of application of equality in all rights, as recommended by CEDAW ", - "values": [ - "International instruments", - "Women's rights" - ] - }, - { - "text": "Take the necessary measures to eliminate the socio-economic disparities affecting indigenous populations ", - "values": [ - "ESC rights - general", - "Indigenous peoples" - ] - }, - { - "text": "Promote the repeal of all legal and administrative provisions remaining, which discriminate against women and girls", - "values": [ - "Rights of the Child", - "Women's rights" - ] - }, - { - "text": "Ratify as soon as possible the ILO Indigenous and Tribal Peoples Convention, 1989 (No. 169)", - "values": [ - "Indigenous peoples", - "International instruments" - ] - }, - { - "text": "Consider returning to a de facto moratorium on all death sentences", - "values": [ - "Death penalty" - ] - }, - { - "text": "Step up effort in ensuring that the development programmes and other measures taken to improve the quality of lives of the people fully benefit the vulnerable groups, including those living in the rural areas ", - "values": [ - "Development" - ] - }, - { - "text": "Pursue adoption and implementation of efficient policies to promote economic and social participation of migrants ", - "values": [ - "Migrants" - ] - }, - { - "text": "Continue efforts on adopting the national Plan against Racism and Discrimination ", - "values": [ - "Racial discrimination" - ] - }, - { - "text": "Ensure the effective investigation and sanctioning of attacks against journalists and take measure to create a safe and enabling working environment for journalists ", - "values": [ - "Freedom of the press" - ] - }, - { - "text": "Issue a standing invitation to special procedures mandate holders to help establish the basis of human rights education and training ", - "values": [ - "Human rights education and training", - "Special procedures" - ] - }, - { - "text": "Continue to implement policies aimed at enhancing social protection and reducing inequality, and develop infrastructure that provides more targeted social assistance, particularly to those living in rural areas", - "values": [ - "Development" - ] - }, - { - "text": "Give powers to the NHRC to effectively protect human rights in accordance with the Paris principles", - "values": [ - "National Human Rights Institution" - ] - }, - { - "text": "Albania was considering accepting the individual complaints procedure under all the human rights conventions to which it was a party. ", - "values": [ - "International instruments" - ] - }, - { - "text": "Take effective measures to protect persons belonging to minorities, including the Ahmadi community", - "values": [ - "Freedom of religion and belief", - "Minorities" - ] - }, - { - "text": "Maintain and strengthen programmes to combat extreme poverty", - "values": [ - "Poverty" - ] - }, - { - "text": "Assess the success of the 2014-2017 Cantonal Integration Programmes", - "values": [ - "Other" - ] - }, - { - "text": "Adopt stand-alone legislation to combat discrimination", - "values": [ - "Other" - ] - }, - { - "text": "Repeal the law that deports foreign workers suffering from sexually transmitted diseases", - "values": [ - "Labour", - "Migrants" - ] - }, - { - "text": "Continue its efforts to further mainstream gender equality in the public sphere as well as to combat domestic violence to protect the rights of women in the private sphere", - "values": [ - "Rights of the Child", - "Women's rights" - ] - }, - { - "text": "Continue to take measures to counter organized crime, in particular drug trafficking with a view to fostering an environment that is conducive to the enjoyment of human rights for all", - "values": [ - "Public security", - "Trafficking" - ] - }, - { - "text": "Ensure the right of anyone convicted of a crime to have his or her conviction and sentence reviewed by a higher tribunal, as prescribed by article14 of the International Covenant on Civil and Political Rights", - "values": [ - "International instruments", - "Justice" - ] - }, - { - "text": "Strengthen measures to combat racial discrimination, including against incitement of discrimination or violence on racial, ethnic or religious grounds", - "values": [ - "Freedom of religion and belief", - "Minorities", - "Racial discrimination" - ] - }, - { - "text": "Sign and ratify the Optional Protocol to the Convention against Torture (OPCAT)", - "values": [ - "Detention", - "International instruments", - "Torture and other CID treatment" - ] - }, - { - "text": "Withdraw the reservations to the Convention on the Elimination of All Forms of Discrimination against Women", - "values": [ - "International instruments", - "Women's rights" - ] - }, - { - "text": "Ensure that attacks against human rights defenders are properly investigated and their perpetrators are prosecuted", - "values": [ - "Human rights defenders" - ] - }, - { - "text": "Pursue the efforts to eradicate poverty and promote social justice", - "values": [ - "Poverty" - ] - }, - { - "text": "Fully implement legislation related to the rights of women, and explicitly ban marital violence", - "values": [ - "Women's rights" - ] - }, - { - "text": "Ratify the Optional Protocol to the Rights of the Child on a communications procedure ", - "values": [ - "International instruments", - "Rights of the Child" - ] - }, - { - "text": "A study will be conducted of a draft law on the welfare of persons with disabilities to guarantee these persons greater rights in respect of rehabilitation, training, employment, housing, health care, education, social welfare, etc. The State will do what it can to preserve the human dignity of these persons, integrate them into society and involve them in all areas of life as productive members of Kuwait society.", - "values": [ - "Disabilities" - ] - }, - { - "text": "Including following the Committee\u2019s guidelines on Article 14 to protect the security and personal integrity of persons with disability who are deprived of their liberty", - "values": [ - "Disabilities" - ] - }, - { - "text": "Ensure that after independence, no one will be discriminated against because of their origin from the other State, respectively ", - "values": [ - "Racial discrimination" - ] - }, - { - "text": "Support at national, regional and international level the promotion and universal realization of the human right to safe drinking water and sanitation, pursuant the recommendation made by the Council in its different resolutions on the matter", - "values": [ - "Right to water and sanitation" - ] - }, - { - "text": "Ensure human rights defenders the free exercise of their activities and refrain from harassment and intimidation against them", - "values": [ - "Human rights defenders" - ] - }, - { - "text": "Adjust the mandate and responsibilities of the National Commission for Human Rights in accordance with the Paris Principles and provide it with sufficient financial resources to carry out its activities effectively", - "values": [ - "National Human Rights Institution" - ] - }, - { - "text": "Ratify the International Convention on the Protection of the Rights of All Migrant Workers and Members of Their Families ICRMW. ", - "values": [ - "International instruments", - "Labour", - "Migrants" - ] - }, - { - "text": "Allocate the necessary human, technical and financial resources to accelerate the implementation of the national preventive mechanism for the prevention of torture, in compliance with the provisions in Law No. 26827", - "values": [ - "Detention", - "Torture and other CID treatment" - ] - }, - { - "text": "Disseminate widely in the society the Code of Conduct for Law Enforcement Officials", - "values": [ - "Human rights education and training" - ] - }, - { - "text": "Enhance access to Justice as well as improve the judicial system.", - "values": [ - "Justice" - ] - }, - { - "text": "Continue the public discussion over the status of the Treaty of Waitangi, with a view to its possible entrenchment as a constitutional norm.", - "values": [ - "Indigenous peoples" - ] - }, - { - "text": "Apply its anti-corruption legislation in a rigorous manner and ensure the effectiveness, independence and impartiality of the judicial system ", - "values": [ - "Corruption", - "Justice" - ] - }, - { - "text": "Take measures to fight impunity of State agents guilty of serious human rights violations and facilitate access to justice for their victims", - "values": [ - "Human rights violations by state agents", - "Impunity", - "Justice" - ] - }, - { - "text": "Continue strengthening its social policies in order to raise the quality of life of its people, in particular of those sectors most in need", - "values": [ - "Poverty" - ] - }, - { - "text": "Review conditions in prisons, particularly pre-trial detention facilities, to bring them into compliance with international standards", - "values": [ - "Detention" - ] - }, - { - "text": "Continue efforts to strengthen the national human rights institutions", - "values": [ - "National Human Rights Institution" - ] - }, - { - "text": "Continue to strengthen its social assistance and job creation programmes and policies, which are essential to combat poverty and social inequality, in particular in the rural areas of the country", - "values": [ - "Development", - "Poverty" - ] - }, - { - "text": "Reinforce relevant institutional capacity to maximize the implementation of its five-year plan 2006-2012 for the elimination of the worst forms of child labour ", - "values": [ - "Labour", - "Rights of the Child" - ] - }, - { - "text": "Recommended further measures to address the threats against Ahmadiyyah families following a fatwa banning the Ahmadiyyah", - "values": [ - "Freedom of religion and belief", - "Minorities" - ] - }, - { - "text": "Ensure that all those responsible for human rights violations are brought to justice before civilian jurisdiction", - "values": [ - "Justice" - ] - }, - { - "text": "Ensure free access of all its citizens to information in line with its international obligations under ICCPR", - "values": [ - "Freedom of opinion and expression", - "International instruments" - ] - }, - { - "text": "Guarantee freedom of religion and belief by abolishing the mandatory registration for religious groups, and ensure that the 2011 religion law is in conformity with international human rights standards", - "values": [ - "Freedom of religion and belief", - "International instruments" - ] - }, - { - "text": "Continue carrying out the system of regional autonomy in the ethnic minorities areas and give a more special treatment to ethnic minorities in politics, the economy, culture and education ", - "values": [ - "CP rights - general", - "Development", - "ESC rights - general", - "Minorities", - "Right to education" - ] - }, - { - "text": "Allocate sufficient resources to ensure effective implementation of the national plan to combat violence against women", - "values": [ - "Women's rights" - ] - }, - { - "text": "Adopt legislation to prevent and end all forms of corporal punishment, in accordance with the Convention against Torture and other Cruel, Inhuman or Degrading Treatment or Punishment ", - "values": [ - "International instruments", - "Torture and other CID treatment" - ] - }, - { - "text": "Step up efforts to provide assistance to victims of trafficking and bring provisions of the Criminal Code, related to human trafficking, in conformity with the Council of Europe Convention on Action against Trafficking in Human Beings and recommendations of the Group of Experts on Action against Trafficking in Human Beings ", - "values": [ - "Trafficking" - ] - }, - { - "text": "Uphold efforts aimed at the practical implementation of its human rights commitments and accede to the optional protocols of the human rights conventions to which it is a party ", - "values": [ - "International instruments" - ] - }, - { - "text": "Establish a moratorium on the use of the death penalty with a view to its abolition and commute all death sentences for persons under the age of 18", - "values": [ - "Death penalty", - "Rights of the Child" - ] - }, - { - "text": "Continue its efforts aimed at improving the human rights situation of the Roma population and resolve their precarious living conditions in camps, in close cooperation with international partners ", - "values": [ - "Minorities" - ] - }, - { - "text": "Withdraw its reservations to CEDAW", - "values": [ - "International instruments", - "Statelessness and the right to nationality", - "Women's rights" - ] - }, - { - "text": "Intensify its efforts in increasing women's representation in decision- making positions", - "values": [ - "Women's rights" - ] - }, - { - "text": "Continue ensuring the implementation of measures in order to fully eliminate discrimination, racism and xenophobia against minorities, refugees, asylum seekers and migrants", - "values": [ - "Asylum-seekers - refugees", - "Migrants", - "Minorities", - "Racial discrimination" - ] - }, - { - "text": "Ensure that all persons deprived of their liberty are afforded all the fundamental legal safeguards in accordance with international standards", - "values": [ - "Detention" - ] - }, - { - "text": "Stop all illegal measures aimed at annexing East Jerusalem and at erasing its Arabic, Christian and Islamic characteristics, and respect religious freedom and the access to places of worship.", - "values": [ - "Freedom of religion and belief" - ] - }, - { - "text": "Go further and abolish the death penalty in practice and in law", - "values": [ - "Death penalty" - ] - }, - { - "text": "Enhance the mandate and capacity of the National Human Rights Commission and bring it into line with the Paris Principles.", - "values": [ - "National Human Rights Institution" - ] - }, - { - "text": "Ensure that allegations of human rights violations by security forces are subjected to independent and impartial investigations and more generally take measures to strengthen the fight against impunity", - "values": [ - "Human rights violations by state agents", - "Impunity" - ] - }, - { - "text": "Ensure coherence with the mandates of the national preventive mechanism in the establishment process of the new national human rights institution", - "values": [ - "Detention", - "National Human Rights Institution", - "Torture and other CID treatment" - ] - }, - { - "text": "Ratify the International Convention for the Protection of All Persons from Enforced Disappearance and the optional protocol to the United Nations Convention against Torture and Other Cruel, Inhuman or Degrading Treatment or Punishment and the Optional Protocol to the Covenant on, Economic, Social and Cultural Rights ", - "values": [ - "Detention", - "ESC rights - general", - "Enforced disappearances", - "International instruments", - "Torture and other CID treatment" - ] - }, - { - "text": "Consider ratifying the Convention on the Rights of Persons with Disabilities and the Optional Protocol thereto.", - "values": [ - "Disabilities", - "International instruments" - ] - }, - { - "text": "Incorporate human rights considerations in the measures that are adopted to counter climate change", - "values": [ - "Environment" - ] - }, - { - "text": "Adopt legislation prohibiting discrimination on the basis of sexual orientation and gender identity and repeal all legal provisions criminalizing sexual acts between consenting adults of the same sex", - "values": [ - "Sexual Orientation and Gender Identity" - ] - }, - { - "text": "Fully comply with its obligations under ICCPR and CRC with regard to the use of inhumane and-or public execution and the use of the death penalty in the case of minors", - "values": [ - "Death penalty", - "International instruments", - "Rights of the Child" - ] - }, - { - "text": "Consider ratifying other pending fundamental International Labour Organization (ILO) Conventions such as Convention No. 189 (2011) concerning decent work for domestic workers ", - "values": [ - "International instruments", - "Labour" - ] - }, - { - "text": "Set up a programme of action for sexual education for all, starting from the level of elementary schooling", - "values": [ - "Right to health" - ] - }, - { - "text": "Abandon the policy of using diplomatic assurances concerning torture and other ill-treatment as a means to avoid exposing persons to the risk of such human rights violations during any type of involuntary transfer to the territory or the custody of another State ", - "values": [ - "Torture and other CID treatment" - ] - }, - { - "text": "Share the experiences and good practices which have enabled Zambia to obtain significant results in the field of education, particularly the access of girls to education and training.", - "values": [ - "Right to education", - "Rights of the Child", - "Women's rights" - ] - }, - { - "text": "Ratify and fully align Kuwaiti national legislation with the Rome Statute of the International Criminal Court", - "values": [ - "International instruments", - "Justice" - ] - }, - { - "text": "Formulate a comprehensive policy protecting the rights of indigenous peoples", - "values": [ - "Indigenous peoples" - ] - }, - { - "text": "Ratify and implement the following international instruments: CPED and OP-CAT ", - "values": [ - "Detention", - "Enforced disappearances", - "International instruments", - "Torture and other CID treatment" - ] - }, - { - "text": "Implement policies to promote food security ", - "values": [ - "Right to food" - ] - }, - { - "text": "Consider ratifying ICRMW and International Labour Organization (ILO) Convention 189 (2011) concerning decent work for domestic workers", - "values": [ - "International instruments", - "Labour", - "Migrants" - ] - }, - { - "text": "Incorporate the definition of discrimination contained in CEDAW in its domestic legislation.", - "values": [ - "International instruments", - "Women's rights" - ] - }, - { - "text": "Continue to take concrete steps to improve the rights of women and children, including through ratification of the Optional Protocol to CEDAW and addressing the concerns of the Committee on the Rights of the Child ", - "values": [ - "International instruments", - "Rights of the Child", - "Treaty bodies", - "Women's rights" - ] - }, - { - "text": "Abolish the punishment of caning, particularly those who have exceeded the period stated in the Visa or the residency", - "values": [ - "Torture and other CID treatment" - ] - }, - { - "text": "Amend Article 37 of the 1998 Employment Equality Act in order to prevent such discrimination against homosexuals and unmarried parents", - "values": [ - "Sexual Orientation and Gender Identity" - ] - }, - { - "text": "Strengthen implementation of legislation and policies aimed at ending harmful traditional practices, in particular child, early and forced marriage", - "values": [ - "Rights of the Child", - "Torture and other CID treatment" - ] - }, - { - "text": "Strengthen the promotion of gender and the fight against violence against women", - "values": [ - "Women's rights" - ] - }, - { - "text": "Establish commissions of inquiry, and investigate and prosecute those who commit torture and violate human rights", - "values": [ - "Torture and other CID treatment" - ] - }, - { - "text": "Promote the institution of the family in its policies for the promotion and protection of human rights ", - "values": [ - "Other" - ] - }, - { - "text": "Ensure that harmful practices and stereotypes that discriminate against women are eliminated", - "values": [ - "Torture and other CID treatment", - "Women's rights" - ] - }, - { - "text": "Ensure the right to a fair trial for all and ban traditional and informal justice systems", - "values": [ - "Justice" - ] - }, - { - "text": "Speed up the process of bringing the National Human Rights Commission in line with the Paris Principles, so as to strengthen its mandate", - "values": [ - "National Human Rights Institution" - ] - }, - { - "text": "Continue to defend the cooperative approach, non-politicization and respectful dialogue in the field of human rights ", - "values": [ - "Other" - ] - }, - { - "text": "Intensify human rights mainstreaming in policy and action in combating illegal migration and human rights trafficking", - "values": [ - "Migrants", - "Trafficking" - ] - }, - { - "text": "End the overcrowding of prisons, inter alia by developing alternative forms of punishment. Pursue the implementation of the prison modernization programme in order to improve prison conditions in a manner compliant with international human rights standards", - "values": [ - "Detention" - ] - }, - { - "text": "Conduct a nationwide study on the prevalence of slavery and slaverylike practices in cooperation with national and international stakeholders", - "values": [ - "Technical assistance and cooperation" - ] - }, - { - "text": "Proceed without delay in effectively implementing the law against discrimination adopted in 2009", - "values": [ - "Other" - ] - }, - { - "text": "Encourage greater participation of women in the political process ", - "values": [ - "Women's rights" - ] - }, - { - "text": "Ensure non-discrimination in access to adequate housing, and prevent forced evictions, as well as the threat of forced evictions, on the basis of sexual orientation or gender identity", - "values": [ - "Right to housing", - "Sexual Orientation and Gender Identity" - ] - }, - { - "text": "Further bolster the role of the Ombudsman, and enable citizens to appeal directly to the Ombudsman without going through elected officers ", - "values": [ - "National Human Rights Institution" - ] - }, - { - "text": "Adopt legislation prohibiting female genital mutilation, in addition to the provisions under Act No. 4/2010", - "values": [ - "Rights of the Child", - "Torture and other CID treatment", - "Women's rights" - ] - }, - { - "text": "Further expand the opportunities for dialogue on sexual orientation and gender identity ", - "values": [ - "Sexual Orientation and Gender Identity" - ] - }, - { - "text": "Address concerns of the international community, including shortage of food, medical and other humanitarian services ", - "values": [ - "Right to food", - "Right to health" - ] - }, - { - "text": "Intensify the efforts to promote tolerance and diversity in the community and train law enforcement personnel to detect and prosecute perpetrators of hate speech ", - "values": [ - "Human rights education and training", - "Racial discrimination" - ] - }, - { - "text": "Allow the unimpeded ability of humanitarian agencies to deliver humanitarian assistance, including food aid, to all parts of the country", - "values": [ - "Other" - ] - }, - { - "text": "Continue its efforts to fully implement the 2012-2015 plan of action against racism and all forms of discrimination", - "values": [ - "Racial discrimination" - ] - }, - { - "text": "Recognize the right to conscientious objection and to offer a civilian alternative to military service", - "values": [ - "Freedom of religion and belief" - ] - }, - { - "text": "Ratify the United Nations Convention against Transnational Organized Crime and its three Additional Protocols", - "values": [ - "International instruments", - "Public security" - ] - }, - { - "text": "Respect the legitimate rights of all its citizens to freedom of assembly, expression and participation in political societies", - "values": [ - "Civil society", - "Freedom of association and peaceful assembly", - "Freedom of opinion and expression" - ] - }, - { - "text": "Take further measures aiming at promoting women participation in public life and particularly their representation in Parliament", - "values": [ - "Women's rights" - ] - }, - { - "text": "Maintain its commitment to overcome barriers associated with deep-rooted tribal and traditional mindsets with regards to women's rights.", - "values": [ - "Women's rights" - ] - }, - { - "text": "Adopt and implement efficient measures to prevent torture and other forms of ill-treatment, and ensure prompt and credible investigations into all allegations of torture including deaths in custody ", - "values": [ - "Detention", - "Extrajudicial executions", - "Torture and other CID treatment" - ] - }, - { - "text": "Strengthen efforts on the implementation of Guinea's Poverty Reduction Strategy", - "values": [ - "Poverty" - ] - }, - { - "text": "Take further steps to bring the National Human Rights Institution in line with the Paris Principles", - "values": [ - "National Human Rights Institution" - ] - }, - { - "text": "Make every effort to further strengthen the capacity of law enforcement authorities to combat violence against women and children, and to enhance the provision of support by relevant government institutions for victims", - "values": [ - "Rights of the Child", - "Women's rights" - ] - }, - { - "text": "Accede to the Rome Statute of the International Criminal Court and implement the legislation that regulates it", - "values": [ - "International instruments", - "Justice" - ] - }, - { - "text": "Implement its announcement to abolish the death penalty de jure ", - "values": [ - "Death penalty" - ] - }, - { - "text": "Review and amend national legislation to ensure compliance with the rights to freedom of opinion and expression enshrined in the Universal Declaration of Human Rights ", - "values": [ - "Freedom of opinion and expression" - ] - }, - { - "text": "Cooperate with the Human Rights Council and allow full access to the Commission of Inquiry in its territory", - "values": [ - "Technical assistance and cooperation" - ] - }, - { - "text": "Proceed to ratify ICPPED, signed in 2007", - "values": [ - "Enforced disappearances", - "International instruments" - ] - }, - { - "text": "Finalize efforts aimed at acceding to the International Convention for the Protection of All Persons from Enforced Disappearance and thus the full recognition of the competence of the Committee on Enforced Disappearances", - "values": [ - "Enforced disappearances", - "International instruments" - ] - }, - { - "text": "Ratify the International Convention on the protection of all persons from enforced disappearances", - "values": [ - "Enforced disappearances", - "International instruments" - ] - }, - { - "text": "Continue measures aimed at improving the status of women in society and protect them from all forms of discrimination ", - "values": [ - "Women's rights" - ] - }, - { - "text": "Respect the rules on fair trial as diligently as possible.", - "values": [ - "Justice" - ] - }, - { - "text": "Ensure freedom of religion, as stipulated in the 2007 Religious Freedom Act and the International Covenant on Civil and Political Rights", - "values": [ - "Freedom of religion and belief", - "International instruments" - ] - }, - { - "text": "Take appropriate steps to ensure the full application of existing legislation on combating racism and racial discrimination", - "values": [ - "Racial discrimination" - ] - }, - { - "text": "Provide capacity-building to law enforcement officials as well as workers on the identification of child victims of commercial sexual exploitation and on measures to protect children from commercial sexual exploitation, for instance, child-friendly procedures within the justice system", - "values": [ - "Labour", - "Rights of the Child", - "Trafficking" - ] - }, - { - "text": "Enact a law on transparency in the allocation of public sector contracts including the allocation of works for the construction sector and the allocation of contracts to media", - "values": [ - "Corruption" - ] - }, - { - "text": "Strengthen further the mandate of its national human rights institution and provide the necessary resources for it to function independently", - "values": [ - "National Human Rights Institution" - ] - }, - { - "text": "Promote the active presence of women in the society", - "values": [ - "Women's rights" - ] - }, - { - "text": "The Government is committed to playing its role in activating dialogue. His Majesty the King of Bahrain has repeatedly called for dialogue and the Minister of Justice is leading the way in canvassing opinion from all political societies for this purpose", - "values": [ - "Other" - ] - }, - { - "text": "Fight against the unemployment rate of people with disabilities, which still is three times higher than the average", - "values": [ - "Development", - "Disabilities" - ] - }, - { - "text": "Consider strengthening efforts to put a halt to incidents of killings of persons with albinism", - "values": [ - "Minorities" - ] - }, - { - "text": "Further continue the implementation of human rights education towards women and children's rights", - "values": [ - "Human rights education and training", - "Rights of the Child", - "Women's rights" - ] - }, - { - "text": "Modify the law on inheritance to prevent discrimination against widows, and guarantee right to all properties including the right to own land", - "values": [ - "Right to land", - "Women's rights" - ] - }, - { - "text": "Renounce to life in prison without parole sentences for minors at the moment of the actions for which they were charged and introduce for those who have already been sentenced in these circumstances the possibility of a remission ", - "values": [ - "Justice", - "Rights of the Child" - ] - }, - { - "text": "Continue to implement an early warning system, within the framework of the work of the Ombudsman's Office, in order to prevent different human rights violations ", - "values": [ - "National Human Rights Institution" - ] - }, - { - "text": "Consider ratifying the Convention against Torture and Other Cruel, Inhuman or Degrading Treatment or Punishment", - "values": [ - "International instruments", - "Torture and other CID treatment" - ] - }, - { - "text": "Strengthen human rights education to ensure that the population is better informed ", - "values": [ - "Human rights education and training" - ] - }, - { - "text": "Improve local administrative and judicial mechanisms to recover lands in the shortest possible time", - "values": [ - "Right to land" - ] - }, - { - "text": "Formalize the moratorium on the death penalty in view of its abolition. Commute capital punishment into imprisonment", - "values": [ - "Death penalty" - ] - }, - { - "text": "Amend legislation to prohibit the activities of organizations which promote and incite racial and religious hatred", - "values": [ - "Racial discrimination" - ] - }, - { - "text": "Strengthen efforts to combat early and forced marriages ", - "values": [ - "Rights of the Child", - "Women's rights" - ] - }, - { - "text": "Consider establishing an independent mechanism mandated to consider complaints of child rights violations as soon as possible.", - "values": [ - "Rights of the Child" - ] - }, - { - "text": "Take the necessary steps to put an end to discrimination faced by same-sex couples, in particular, by ensuring they can marry and adopt children", - "values": [ - "Sexual Orientation and Gender Identity" - ] - }, - { - "text": "Further ensure that the Child's Advocate has sufficient resources to exercise his or her mandate effectively", - "values": [ - "National Human Rights Institution", - "Rights of the Child" - ] - }, - { - "text": "Deepen the measures taken to combat gender-based violence, sexual abuses and violations suffered by women with a special focus on migrant women and women with disabilities", - "values": [ - "Disabilities", - "Migrants", - "Women's rights" - ] - }, - { - "text": "Croatia remains fully committed to making the recommendations of the Human Rights Council mechanisms more visible, including through the Internet", - "values": [ - "Special procedures", - "UPR process" - ] - }, - { - "text": "Implement awareness-raising campaigns and education programs, working closely with traditional authorities, to promote and protect the rights of women and girls", - "values": [ - "Human rights education and training", - "Rights of the Child", - "Women's rights" - ] - }, - { - "text": "Consider adopting a comprehensive strategy to combat all forms of violence against women and enact legislation on domestic and all forms of gender-based violence.", - "values": [ - "Women's rights" - ] - }, - { - "text": "Take additional measures to consolidate the achievements already made, in reducing child and infant mortality ", - "values": [ - "Right to health", - "Rights of the Child" - ] - }, - { - "text": "Take measures to improve women\u2019s representation in decision-making positions in the public sector and reduce the gender pay gap", - "values": [ - "Women's rights" - ] - }, - { - "text": "Escalate its efforts to eliminate female genital mutilation and instigate relevant legal reforms to facilitate effective prosecutions ", - "values": [ - "Rights of the Child", - "Torture and other CID treatment", - "Women's rights" - ] - }, - { - "text": "Take effective measures to eliminate forms of discrimination against Roma women and girls.", - "values": [ - "Minorities", - "Rights of the Child", - "Women's rights" - ] - }, - { - "text": "Sign and-or ratify the Optional Protocol to the International Covenant on Economic, Social and Cultural Rights, the International Convention on the Protection of the Rights of All Migrants Workers and Members of Their Families, and the International Convention for the Protection of All Persons from Enforced Disappearance", - "values": [ - "ESC rights - general", - "Enforced disappearances", - "International instruments", - "Labour", - "Migrants" - ] - }, - { - "text": "Strengthen the institutions established to protect democracy", - "values": [ - "General" - ] - }, - { - "text": "Access and ratify the OP-CAT ", - "values": [ - "Detention", - "International instruments", - "Torture and other CID treatment" - ] - }, - { - "text": "Ratify the Convention for the Protection of All Persons against Enforced Disappearance.", - "values": [ - "Enforced disappearances", - "International instruments" - ] - }, - { - "text": "Continue its efficient role in promoting women's rights and ensuring that women enjoy all fundamental freedoms ", - "values": [ - "Women's rights" - ] - }, - { - "text": "Guarantee extended, free and transparent participation of civil society and minorities in the public national debate", - "values": [ - "Civil society", - "Minorities" - ] - }, - { - "text": "Proceed with the process of ratification of international human rights instruments to which the country is not yet a party", - "values": [ - "International instruments" - ] - }, - { - "text": "Finalize and fully implement the national policy on interfaith harmony, in order to, among other things, protect the rights of religious minorities", - "values": [ - "Freedom of religion and belief", - "Minorities" - ] - }, - { - "text": "Adopt additional measures, including legislative, to eliminate the practice of child labour exploitation and the use of corporal punishment for children", - "values": [ - "Labour", - "Rights of the Child", - "Torture and other CID treatment" - ] - }, - { - "text": "Continue the national strategy that was set up by the government of Algeria to combat violence against women by setting up adequate legislative and judicial guarantees ", - "values": [ - "Women's rights" - ] - }, - { - "text": "Continue its efforts to improve the conditions of detention", - "values": [ - "Detention" - ] - }, - { - "text": "Continue its efforts to promote and protect all human rights, in particular those of persons with disabilities", - "values": [ - "Disabilities" - ] - }, - { - "text": "Give top priority to reducing further the national prevalence rate [of HIV/AIDS], especially among pregnant women ", - "values": [ - "HIV - Aids", - "Women's rights" - ] - }, - { - "text": "In responding to the comments and questions, the Government reaffirmed its commitment to pursuing a legal transformation agenda, including through removal of legislative and other possible impediments to the enjoyment of the full range of human rights.", - "values": [ - "Justice" - ] - }, - { - "text": "Establish adequate regulations regarding asylum seekers and refugees in order to promote and protect their rights and to find durable solutions, as stipulated in international law ", - "values": [ - "Asylum-seekers - refugees" - ] - }, - { - "text": "Take measures to ensure the effective and timely implementation of the constitutionally mandated judicial reforms and police professionalization by providing integrated training and capacity building to stakeholders involved in the delivery of justice, including judges, prosecutors, lawyers, police and criminal investigations", - "values": [ - "Justice" - ] - }, - { - "text": "Extend an open and permanent invitation to all special procedures ", - "values": [ - "Special procedures" - ] - }, - { - "text": "Adopt all necessary measures for the liberalization and plurality of the media in order to promote full freedom of the press.", - "values": [ - "Freedom of the press" - ] - }, - { - "text": "Strengthen the investigation and punishment of human rights violations related to the 2010 ethnic conflict", - "values": [ - "Justice" - ] - }, - { - "text": "Recognize the equality of women and, if it is needed, reinforce the prohibition of female genital mutilation ", - "values": [ - "Rights of the Child", - "Torture and other CID treatment", - "Women's rights" - ] - }, - { - "text": "Continue developing its juvenile justice system, in terms of both legislation and practice. In particular, continue efforts to ensure that there are adequately trained professionals and adequate infrastructure for adolescents in conflict with the law. Deprivation of liberty should only be used as a measure of last resort and for as short a period as possible ", - "values": [ - "Justice", - "Rights of the Child" - ] - }, - { - "text": "Take immediate steps to strengthen measures to protect children from all forms of violence, including trafficking in children ", - "values": [ - "Rights of the Child", - "Trafficking" - ] - }, - { - "text": "Consider decriminalizing homosexuality, in particular relations between consenting adults", - "values": [ - "Sexual Orientation and Gender Identity" - ] - }, - { - "text": "Strengthen assistance measures to women, children and persons with disabilities", - "values": [ - "Disabilities", - "Rights of the Child", - "Women's rights" - ] - }, - { - "text": "Ensure that human rights defenders, independent journalists or lawyers and civil society representatives are effectively protected from any form of intimidation and harassment while performing their legitimate duties ", - "values": [ - "Civil society", - "Freedom of opinion and expression", - "Freedom of the press", - "Human rights defenders" - ] - }, - { - "text": "Take steps to accede to CRC, and ratify the United Nations Convention on Transnational Organized Crime and its Protocols ", - "values": [ - "International instruments", - "Public security", - "Rights of the Child", - "Trafficking" - ] - }, - { - "text": "Further improve the living conditions in State penitentiaries and juvenile detention centres", - "values": [ - "Detention", - "Rights of the Child" - ] - }, - { - "text": "Take all necessary measures to implement the Act on the Prevention and Punishment of Violence against Women in order to effectively eliminate all forms of violence against women, including female genital mutilation and forced marriage", - "values": [ - "Rights of the Child", - "Torture and other CID treatment", - "Women's rights" - ] - }, - { - "text": "Consider a maximum, non-extendable term of pre-trial detention, and use alternative measures to pre-trial detentions and take appropriate measures to deal with concerns and ensuring access to legal services, particularly for those under detention ", - "values": [ - "Detention" - ] - }, - { - "text": "Further strengthen measures aimed at combating discriminatory practices towards minorities, in particular the Roma community", - "values": [ - "Minorities", - "Racial discrimination" - ] - }, - { - "text": "Ensure the application of existing laws, in particular those on the protection of the rights of women", - "values": [ - "Women's rights" - ] - }, - { - "text": "Continue its efforts towards ensuring gender equality in the field of education, health and employment", - "values": [ - "Women's rights" - ] - }, - { - "text": "Put in place a broad strategy to eliminate patriarchal attitudes and stereotypes that discriminate against women in conformity with Articles 2 (f) and 5 (a) of CEDAW", - "values": [ - "International instruments", - "Women's rights" - ] - }, - { - "text": "Develop and implement action plans for employment that would reduce unemployment in the informal sector", - "values": [ - "Development" - ] - }, - { - "text": "Continue the efforts made to ratify the convention on the Optional Protocol to the Convention on the Rights of Persons with Disabilities", - "values": [ - "Disabilities", - "International instruments" - ] - }, - { - "text": "Implement the national strategy to prevent female genital mutilation (2008-2018) and the national strategy to end child marriage ", - "values": [ - "Rights of the Child", - "Torture and other CID treatment", - "Women's rights" - ] - }, - { - "text": "Ensure adequate access to information on sexual and reproductive rights for women and girls", - "values": [ - "Right to health", - "Rights of the Child", - "Women's rights" - ] - }, - { - "text": "Continue to build the capacity of health and social services to provide care to children with disabilities ", - "values": [ - "Disabilities", - "Right to health", - "Rights of the Child" - ] - }, - { - "text": "Take further practical steps to reduce the high level of maternal and child mortality, inter alia, through better access to maternal health services ", - "values": [ - "Right to health", - "Rights of the Child", - "Women's rights" - ] - }, - { - "text": "Ensure that its domestic legislation and practice are in full compliance with the requirements of article 18 of the ICCPR", - "values": [ - "Freedom of religion and belief", - "International instruments" - ] - }, - { - "text": "Step up efforts to investigate and act upon instances of hate speech and hate crime and to ensure effective access to justice for victims, including lesbian, gay, bisexual, transgender and intersex persons and members of religious or ethnic minority communities", - "values": [ - "Freedom of religion and belief", - "Minorities", - "Racial discrimination", - "Sexual Orientation and Gender Identity" - ] - }, - { - "text": "Pursue a regular dialogue with the stakeholders in various communities nationwide, including the village chiefs, religious leaders, men and boys as well as civil society in order to promote a better understanding of the importance of equality between women and men and to identify practical means of putting an end to harmful practices against women and girls including FGM, early and forced marriages and levirate ", - "values": [ - "Civil society", - "Freedom of religion and belief", - "Human rights education and training", - "Rights of the Child", - "Torture and other CID treatment", - "Women's rights" - ] - }, - { - "text": "Develop programmes aimed at promoting the awareness of law enforcement officials on human rights values and principles", - "values": [ - "Human rights education and training" - ] - }, - { - "text": "Review provisions of the criminal law penalizing consensual same-sex activity between adults and organize awareness-raising campaigns promoting tolerance in this regard.", - "values": [ - "Human rights education and training", - "Sexual Orientation and Gender Identity" - ] - }, - { - "text": "Take all necessary measures to prevent women and girls from suffering from harmful traditional practices, such as female genital mutilation, early and forced marriages and teenage pregnancies ", - "values": [ - "Rights of the Child", - "Torture and other CID treatment", - "Women's rights" - ] - }, - { - "text": "Continue efforts to strengthen the national human rights architecture.", - "values": [ - "General" - ] - }, - { - "text": "Protect and promote freedom of expression, ensure the safety of journalists and promptly respond to alleged violations in this regard", - "values": [ - "Freedom of opinion and expression", - "Freedom of the press" - ] - }, - { - "text": "Conclude discussions which would facilitate the expeditious ratification of the Convention on the Rights of Persons with Disabilities ", - "values": [ - "Disabilities", - "International instruments" - ] - }, - { - "text": "Ratify the Rome Statute of the ICC and the OP-CAT ", - "values": [ - "Detention", - "International instruments", - "Justice", - "Torture and other CID treatment" - ] - }, - { - "text": "Strengthen the independence of SUHAKAM in accordance with the Paris Principles", - "values": [ - "National Human Rights Institution" - ] - }, - { - "text": "Ensure that the National Human Rights Commission is in line with the Paris Principles and that the Ombudsman is fully independent", - "values": [ - "National Human Rights Institution" - ] - }, - { - "text": "Adopt necessary measures to create the necessary conditions for the activities of a free independent mass media", - "values": [ - "Freedom of the press" - ] - }, - { - "text": "Adhere to the principles of ICRMW and consider its ratification ", - "values": [ - "International instruments", - "Labour", - "Migrants" - ] - }, - { - "text": "With regard to those arrested after the presidential elections, fully respect the right to a fair trial of all persons under arrest and detainees, in compliance with articles 32, 35, 38 and 39 of the Iranian Constitution", - "values": [ - "Detention", - "Elections" - ] - }, - { - "text": "Consider updating its domestic law to suppress the term prohibit immigrants and avoid its legal consequences, particularly administrative detention, for all undocumented asylum seekers.", - "values": [ - "Asylum-seekers - refugees" - ] - }, - { - "text": "Prohibit assisted suicide to protect the human rights of the elderly, sick, disabled and other vulnerable members of society in line with their commitment to the right to life, health and non-discrimination", - "values": [ - "Disabilities", - "Right to health" - ] - }, - { - "text": "Undertake efforts to ensure that the new draft constitution covers the equality of women condition", - "values": [ - "Women's rights" - ] - }, - { - "text": "Pursue the revision of the Penal Code to provide a more comprehensive and thorough legal basis for the implementation of Indonesia's obligations ", - "values": [ - "Justice" - ] - }, - { - "text": "Commit to ensuring the full and impartial investigation of complaints of many of those arrested in the aftermath of the June 2010 violence", - "values": [ - "Justice" - ] - }, - { - "text": "Reject any plans for lowering the minimum age of criminal responsibility", - "values": [ - "Rights of the Child" - ] - }, - { - "text": "Continue to engage with human rights civil society groups in the followup to the universal periodic review ", - "values": [ - "Civil society", - "UPR process" - ] - }, - { - "text": "Establish additional mechanisms for protecting citizens against domestic violence, and adopt the provisions that would ensure legal redress for gender-based violence. Important steps in this regard include the expeditious passage of legislation to promote women's rights, prohibit sexual harassment and criminalize domestic violence ", - "values": [ - "Rights of the Child", - "Women's rights" - ] - }, - { - "text": "Provide increased support for minorities", - "values": [ - "Minorities" - ] - }, - { - "text": "Continue every effort to fulfill its tasks and overcome all the challenges of eradicating poverty\nand improving economic and social conditions of Bhutan people ", - "values": [ - "Poverty" - ] - }, - { - "text": "Step up measures to eliminate discrimination against vulnerable groups, especially women", - "values": [ - "Women's rights" - ] - }, - { - "text": "Ensure a legal and financial framework that allows non-governmental organizations to operate", - "values": [ - "Civil society" - ] - }, - { - "text": "Continue to allocate resources for effective poverty reduction measures", - "values": [ - "Poverty" - ] - }, - { - "text": "Include immigrant women in irregular situations in all policies aimed at the prevention of and protection against gender violence ", - "values": [ - "Migrants", - "Women's rights" - ] - }, - { - "text": "Strengthen work with the European Union and international partners to combat human trafficking, with a policy of prevention as a priority for its 2009-2012 work plan ", - "values": [ - "Trafficking" - ] - }, - { - "text": "Amend laws to ensure that all persons with disabilities could vote and stand for election", - "values": [ - "Disabilities", - "Elections" - ] - }, - { - "text": "Establish constitutional reforms that will guarantee the separation of powers, the rule of law, the independence of the judiciary and the civil and democratic rights of Kyrgyzstan's citizens ", - "values": [ - "Justice" - ] - }, - { - "text": "Ratify the CPED recognizing the compulsory jurisdiction of the Committee to receive individual complaints", - "values": [ - "Enforced disappearances", - "International instruments", - "Treaty bodies" - ] - }, - { - "text": "Reform the Penal Code to cover offences such as sexual abuse against minors and to eliminate corporal punishment.", - "values": [ - "Rights of the Child", - "Torture and other CID treatment" - ] - }, - { - "text": "Strengthen efforts to provide access to education, labour market and public life for persons with disabilities ", - "values": [ - "Disabilities", - "Labour", - "Right to education" - ] - }, - { - "text": "Continue to improve its human rights system in accordance with the will of the people ", - "values": [ - "General" - ] - }, - { - "text": "Adapt labour legislation and align it with the provisions of ILO conventions", - "values": [ - "International instruments", - "Labour" - ] - }, - { - "text": "Effectively address and investigate attacks against journalists and human rights defenders and bring those responsible to justice.", - "values": [ - "Freedom of the press", - "Human rights defenders" - ] - }, - { - "text": "Take further steps to ensure the transparent and politically impartial functioning of the Supreme Electoral Council and the accreditation of electoral observation, including by the national organizations IPADE and Etica y Transparencia", - "values": [ - "Elections" - ] - }, - { - "text": "Take measures, while fully respecting freedom of expression, to curtail stereotyping of minorities, particularly the Muslim community in the society", - "values": [ - "Freedom of opinion and expression", - "Freedom of religion and belief", - "Minorities" - ] - }, - { - "text": "Complete the ratification of the Optional Protocol to the Convention on the Rights of the Child on the Sale of Children, Child Prostitution and Child Pornography.", - "values": [ - "International instruments", - "Rights of the Child", - "Trafficking" - ] - }, - { - "text": "Continue to strengthen its efforts to combat impunity for serious crimes under international law by continuing its cooperation with the ICTY and by ensuring that other perpetrators are prosecuted in domestic courts in accordance with international standards ", - "values": [ - "Impunity" - ] - }, - { - "text": "Promote children\u2019s right to education, especially education on climate change adaptation and mitigation", - "values": [ - "Right to education" - ] - }, - { - "text": "Maintain as a permanent priority the increase of the public health quality in the country ", - "values": [ - "Right to health" - ] - }, - { - "text": "Finalize, in collaboration with press associations and rights groups, a legal framework that ensures full freedom of expression", - "values": [ - "Civil society", - "Freedom of opinion and expression", - "Freedom of the press" - ] - }, - { - "text": "Withdraw reservations to the Convention against Torture", - "values": [ - "International instruments", - "Torture and other CID treatment" - ] - }, - { - "text": "Take measures to allocate adequate resources to develop the quality of health and educational services in plantation areas", - "values": [ - "Right to education", - "Right to health" - ] - }, - { - "text": "Define new transitional measures, including the creation of a national transitional council, in accordance with the recommendation made by the Secretary-General of the United Nations", - "values": [ - "Justice" - ] - }, - { - "text": "Strengthen its legislation on violence against women, including by penalizing all forms of sexual violence", - "values": [ - "Women's rights" - ] - }, - { - "text": "Effectively guarantee the rights of refugees and migrants and make substantive progress in the fight against hate crime", - "values": [ - "Asylum-seekers - refugees", - "Migrants" - ] - }, - { - "text": "Review national legislation to ensure that all persons under 18 have the protections accorded by the Convention on the Rights of the Child, including clarifying the definition of the child ", - "values": [ - "International instruments", - "Rights of the Child" - ] - }, - { - "text": "Continue to develop the health system", - "values": [ - "Right to health" - ] - }, - { - "text": "Promote access to property for women in rural areas", - "values": [ - "Women's rights" - ] - }, - { - "text": "Train more professional health workers to fill and carry out the work of the newly established health centres ", - "values": [ - "Right to health" - ] - }, - { - "text": "Pursue its efforts so as to improve health services and education", - "values": [ - "Right to education", - "Right to health" - ] - }, - { - "text": "Reduce the number of crimes for which the death penalty may be handed down, including non-violent crimes, and to consider abolishing the death penalty", - "values": [ - "Death penalty" - ] - }, - { - "text": "Accelerate the enactment and implementation of CED ", - "values": [ - "Enforced disappearances", - "International instruments" - ] - }, - { - "text": "Expand education and awareness programmes to eradicate sexual and gender violence", - "values": [ - "Human rights education and training", - "Rights of the Child", - "Women's rights" - ] - }, - { - "text": "Adopt comprehensive anti-discrimination legislation and take measures to prevent and combat discrimination on any grounds, including based on sexual orientation and gender identity, and religion", - "values": [ - "Freedom of religion and belief", - "Racial discrimination", - "Sexual Orientation and Gender Identity" - ] - }, - { - "text": "Respect and provide for freedom of expression, to end censorship of the media and to put an immediate end to attacks, harassment, intimidation and detention with regard to journalists, critics and human rights activists", - "values": [ - "Freedom of opinion and expression", - "Freedom of the press", - "Human rights defenders" - ] - }, - { - "text": "Abolish death penalty for minors and drug dealers", - "values": [ - "Death penalty" - ] - }, - { - "text": "Share an evaluation on progress in the implementation of the Programme to Restructure the Justice system by the Transition Council of the Judiciary ", - "values": [ - "Justice" - ] - }, - { - "text": "Canadian governments, at all levels, are strongly committed to taking action with Aboriginal and non- Aboriginal partners and have undertaken many initiatives demonstrating this commitment, in partnership with Aboriginal and non-Aboriginal groups, communities and individuals.", - "values": [ - "Indigenous peoples" - ] - }, - { - "text": "Continue with its structural reforms in social welfare and health care with a focus on protecting the rights of women, children and vulnerable groups", - "values": [ - "ESC rights - general", - "Rights of the Child", - "Women's rights" - ] - }, - { - "text": "Implement, and amend when appropriate, the Sexual Offences Act in compliance with international human rights standards to ensure the full accountability of offenders, providing efficient reintegration programmes to victims ", - "values": [ - "International instruments", - "Rights of the Child", - "Women's rights" - ] - }, - { - "text": "Continue its efforts to ensure full equality for all its citizens ", - "values": [ - "General" - ] - }, - { - "text": "Create a mechanism to overcome the difficulties faced by non-Greek speakers during detention and court ruling phases ", - "values": [ - "Detention" - ] - }, - { - "text": "Continue to increase education input to ensure the right to education for all the people", - "values": [ - "Right to education" - ] - }, - { - "text": "Strengthen public policies regarding violence against women, adopting, among other things, affirmative measures to combat women's poverty, linked to the unequal distribution between time spent on paid and unpaid work ", - "values": [ - "Women's rights" - ] - }, - { - "text": "Ensure that the conditions of all immigration detention and reception centres are in conformity with international standards", - "values": [ - "Detention", - "Migrants" - ] - }, - { - "text": "Ratify the Optional Protocol of the Convention against Torture and Other Cruel, Inhuman or Degrading Treatment or Punishment", - "values": [ - "Detention", - "International instruments", - "Torture and other CID treatment" - ] - }, - { - "text": "Continue to conduct broad awareness-raising campaigns to combat negative attitudes against vulnerable groups as well as to react to racist statements or actions", - "values": [ - "Human rights education and training", - "Racial discrimination" - ] - }, - { - "text": "Carry out general awareness-raising campaigns aimed at combating discrimination in all its forms", - "values": [ - "Human rights education and training" - ] - }, - { - "text": "Take necessary measures to eliminate legislation that criminalizes same-sex relations and to repeal section 377 A of the Penal Code", - "values": [ - "Sexual Orientation and Gender Identity" - ] - }, - { - "text": "Provide the National Centre for the Prevention of Torture with the necessary resources for its adequate functioning, and ensure its full independence", - "values": [ - "Detention", - "Torture and other CID treatment" - ] - }, - { - "text": "Include a definition of torture in line with CAT and add specific offences relating to torture and other ill-treatment into the relevant legislation", - "values": [ - "Torture and other CID treatment" - ] - }, - { - "text": "Consider revising its legislation with a view to eliminating the death penalty", - "values": [ - "Death penalty" - ] - }, - { - "text": "Continue applying its successful practice to improve access to affordable housing", - "values": [ - "Right to housing" - ] - }, - { - "text": "Review its legal measures and, if necessary, request the necessary technical assistance so as to ensure that boys and girls of all regions of the country have access to free and compulsory primary education ", - "values": [ - "Right to education", - "Technical assistance and cooperation" - ] - }, - { - "text": "Continue with its efforts for the establishment of an independent national human rights institution in accordance with the Paris Principles ", - "values": [ - "National Human Rights Institution" - ] - }, - { - "text": "Consider ratifying the Second Optional Protocol to the International Covenant on Civil and Political Rights with a view to abolish the death penalty", - "values": [ - "Death penalty", - "International instruments" - ] - }, - { - "text": "Harmonize legislation relating to the recognition of the rights of indigenous peoples, at all levels, with the International Convention on the Elimination of All Forms of Racial Discrimination", - "values": [ - "Indigenous peoples", - "International instruments" - ] - }, - { - "text": "Intensify efforts in the areas of human rights education and capacity-building and organize training seminars on human rights for those working in relevant institutions and bodies ", - "values": [ - "Human rights education and training" - ] - }, - { - "text": "Ratify the International Convention on the Protection of all Persons from Enforced Disappearance, and accept the competence of the Committee on Enforced Disappearances pursuant to articles 31 and 32 of the Convention", - "values": [ - "Enforced disappearances", - "International instruments", - "Treaty bodies" - ] - }, - { - "text": "Continue strengthening counter terrorism measures", - "values": [ - "Counter-terrorism" - ] - }, - { - "text": "Amend the Criminal Code to penalize hate crimes and crimes of social intolerance based on sexual orientation, gender identity and sexual characteristics", - "values": [ - "Sexual Orientation and Gender Identity" - ] - }, - { - "text": "Abolish formally the death penalty", - "values": [ - "Death penalty" - ] - }, - { - "text": "Continue to address the important issues related to the judicial reform and in particular the question of the living conditions of detainees, also by continuing to implement the PRAJUST Programme, launched with the support of the European Union", - "values": [ - "Detention", - "Justice" - ] - }, - { - "text": "Invite the Special Rapporteur on the promotion of truth, justice, reparation and guarantees of non-recurrence ", - "values": [ - "Justice", - "Special procedures" - ] - }, - { - "text": "Continue with all its endeavours to ensure further success in the implementation of the recently established programs/policies, including the revised national action plan against trafficking in persons", - "values": [ - "Trafficking" - ] - }, - { - "text": "Align national laws in accordance with the principles outlined in the Convention on the Elimination of All Forms of Discrimination against Women to address women's rights that include land acquisition, equality and citizenship of children", - "values": [ - "International instruments", - "Rights of the Child", - "Women's rights" - ] - }, - { - "text": "Continue ensuring that all detainees have access to a lawyer of their choice, including through the implementation of an enhanced legal aid system that reaches all regions", - "values": [ - "Detention" - ] - }, - { - "text": "Continue and intensify its efforts to fight corruption at all levels of public administration", - "values": [ - "Corruption" - ] - }, - { - "text": "Accomplish progressively human rights voluntary goals as set up by Human Rights Council resolution 9-12 ", - "values": [ - "General" - ] - }, - { - "text": "Accelerate the process of adoption of the draft law on the elimination of the violence against women", - "values": [ - "Justice", - "Women's rights" - ] - }, - { - "text": "Continue to strengthen the rights of women, eliminating sexist stereotypes that lead to discrimination against women in public and private life ", - "values": [ - "Women's rights" - ] - }, - { - "text": "Fully implement recommendations made by the Council for Preventing and Eliminating Discrimination to better ensure protection against discrimination and the equality of all persons", - "values": [ - "Other" - ] - }, - { - "text": "Further intensify the implementation of the coordinated initiative to end early, forced and child marriage", - "values": [ - "Rights of the Child", - "Women's rights" - ] - }, - { - "text": "Give priority to non-custodial measures when sentencing or deciding on pre-trial measures, in particular in relation to the role of the primary carer of a child, and identify and implement measures to protect the best interests, needs and physical, social and psychological development of children affected by parental detention or imprisonment.", - "values": [ - "Justice", - "Rights of the Child" - ] - }, - { - "text": "Ensure the compliance of the steps which were stipulated by legislation on lustration with the obligation of Poland under the core international human rights instruments ", - "values": [ - "International instruments" - ] - }, - { - "text": "Undertake necessary judicial reforms with a view to ensure the independence of the Judiciary and improve access to justice, in particular for the most vulnerable groups ", - "values": [ - "Justice" - ] - }, - { - "text": "Refrain from any action incompatible with the non-discrimination of religious and ethnic minorities as well as of LGBT persons", - "values": [ - "Freedom of religion and belief", - "Minorities", - "Racial discrimination", - "Sexual Orientation and Gender Identity" - ] - }, - { - "text": "Enhance efforts for effective implementation of the Convention on the Rights of Persons with Disabilities ", - "values": [ - "Disabilities", - "International instruments" - ] - }, - { - "text": "Re-establish a moratorium on executions with a view to a complete abolition of the death penalty", - "values": [ - "Death penalty" - ] - }, - { - "text": "Strengthen national procedures for the protection of the rights of socially vulnerable groups of the population, including women, children, persons with disabilities and older persons", - "values": [ - "Disabilities", - "Rights of the Child", - "Women's rights" - ] - }, - { - "text": "Continue work aimed at ratification of the International Convention for the Protection of All Persons from Enforced Disappearance, and the Optional Protocol to the Convention against Torture ", - "values": [ - "Detention", - "Enforced disappearances", - "International instruments", - "Torture and other CID treatment" - ] - }, - { - "text": "Take further measures to ensure full and consistent protection of human rights in domestic law and policies, taking into account the recommendations made by United Nations human rights bodies and the New Zealand Human Rights Commission ", - "values": [ - "National Human Rights Institution" - ] - }, - { - "text": "Ensure broader opportunities for human rights training for the members of the security forces ", - "values": [ - "Human rights education and training" - ] - }, - { - "text": "Enact legislation explicitly prohibiting all corporal punishment in all settings, including the home, in the District of Brcko and in the Federation of Bosnia and Herzegovina", - "values": [ - "Rights of the Child", - "Torture and other CID treatment" - ] - }, - { - "text": "Continue with the necessary legislative reforms in the fight against racial discrimination ", - "values": [ - "Racial discrimination" - ] - }, - { - "text": "Step up efforts to prevent discrimination and violence against women and girls", - "values": [ - "Rights of the Child", - "Women's rights" - ] - }, - { - "text": "Persevere with efforts to better protect the rights of vulnerable groups, particularly women and children", - "values": [ - "Rights of the Child", - "Women's rights" - ] - }, - { - "text": "Combat racism and xenophobia, and strengthen efforts at promoting intercultural understanding and tolerance", - "values": [ - "Racial discrimination" - ] - }, - { - "text": "Take further steps to prevent mistreatment of prisoners including through greater compliance with the United Nations Minimum Standards for the Treatment of Prisoners ", - "values": [ - "Detention" - ] - }, - { - "text": "Accept the visit of the Special Rapporteur on the promotion of truth, justice, reparation and guarantees of non-recurrence, with a view to providing accountability and redress for victims and their families regarding the events which took place in November 2009", - "values": [ - "Justice", - "Special procedures" - ] - }, - { - "text": "Ensure effective legal frameworks are in place that enable the reporting, investigation and prosecution of cases of discrimination or hate crimes on the grounds of sexual orientation and gender identity", - "values": [ - "Sexual Orientation and Gender Identity" - ] - }, - { - "text": "The United States is committed to promoting women's health and eliminating barriers to health-care services. The Government of the United States regularly reviews its policies to take all appropriate measures to improve the health and status of women and girls around the world, including survivors of sexual violence.", - "values": [ - "Right to health", - "Women's rights" - ] - }, - { - "text": "Take further efforts to curb discriminatory treatment of non-European refugees and asylum-seekers", - "values": [ - "Asylum-seekers - refugees", - "Racial discrimination" - ] - }, - { - "text": "Ensure the elimination of any form of discrimination against children, especially children in marginalized and disadvantaged situations", - "values": [ - "Rights of the Child" - ] - }, - { - "text": "Uphold the principle of non-refoulement and ensure that all asylum seekers are given prompt access to accessible, fair and individualized refugee status determination", - "values": [ - "Asylum-seekers - refugees" - ] - }, - { - "text": "Take further steps to present periodic reports to the treaty bodies and implement the recommendations in a timely fashion.", - "values": [ - "Treaty bodies" - ] - }, - { - "text": "Continue to implement programmes aimed at alleviating the poverty of Afro-Ecuadorian families and facilitate their full participation in public life ", - "values": [ - "Minorities" - ] - }, - { - "text": "Continue adopting measures to improve the situation of rural women belonging to ethnic minorities, above all Roma and Albanians.", - "values": [ - "Minorities", - "Women's rights" - ] - }, - { - "text": "Take further measures to ratify CRPD", - "values": [ - "Disabilities", - "International instruments" - ] - }, - { - "text": "Double its efforts in combating trafficking in persons including by bringing human traffickers and people smugglers to justice", - "values": [ - "Trafficking" - ] - }, - { - "text": "Strengthen the measures aimed at ensuring the investigation and punishment of perpetrators of human rights violations, as well as the reparation of victims", - "values": [ - "Justice" - ] - }, - { - "text": "Ensure the protection and rehabilitation of victims of sexual exploitation", - "values": [ - "Trafficking" - ] - }, - { - "text": "Continue to implement the obligations deriving from the Sarajevo Declaration vis-a-vis the successful integration of refugees and to further accelerate the implementation of the existing national housing care programme", - "values": [ - "Asylum-seekers - refugees", - "Right to housing" - ] - }, - { - "text": "Work to ensure inclusive, quality and free primary and secondary education to children with disabilities on an equal basis with other children", - "values": [ - "Disabilities", - "Right to education", - "Rights of the Child" - ] - }, - { - "text": "Guarantee access of all Iraqis to equitable judicial proceedings", - "values": [ - "Justice" - ] - }, - { - "text": "Improve access for persons with disabilities to education and health care, with particular focus on children", - "values": [ - "Disabilities", - "Right to education", - "Right to health", - "Rights of the Child" - ] - }, - { - "text": "In accordance with the recommendations of international human rights institutions, grant to non-citizens, without delay, the right to participate in the political life of the country, including in municipal elections, and the opportunity to enjoy all economic, social and cultural rights ", - "values": [ - "ESC rights - general", - "Elections" - ] - }, - { - "text": "Take measures to guarantee accountability by ensuring that human rights violations, including abuses committed by Indonesian security forces are investigated and that those deemed responsible are prosecuted in a fair prompt and impartial manner ", - "values": [ - "Human rights violations by state agents" - ] - }, - { - "text": "Continue long-term policies for the successful integration into society of 650,000 ethnic Kazakhs repatriated from Asia, the Middle East and Europe", - "values": [ - "Minorities" - ] - }, - { - "text": "Sign and ratify the principal human rights instruments to which it is not a party, namely the OP-ICESCR, OP-CAT, ICCPR-OP2, aimed at abolishing the death penalty, OP-CRC-AC and ratify CED ", - "values": [ - "Death penalty", - "ESC rights - general", - "Enforced disappearances", - "International instruments", - "Rights of the Child", - "Torture and other CID treatment" - ] - }, - { - "text": "Implement measures to investigate and punish discrimination and abuses suffered by girls and adolescents in institutions [as reflected in the concerns of the Special Rapporteur on extreme poverty] in order to ensure their physical integrity and effective access to education", - "values": [ - "Poverty", - "Right to education", - "Rights of the Child", - "Special procedures" - ] - }, - { - "text": "Promptly adopt the law in the area of the protection and promotion of the rights of persons with disabilities to enable the requisite legal framework to apply the Convention on the Rights of Persons with Disabilities", - "values": [ - "Disabilities", - "International instruments" - ] - }, - { - "text": "Fully implement its policies aimed at curbing violence against women, promoting equal opportunities for men and women and eliminating discrimination stereotypes of their respective roles in the family and society", - "values": [ - "Women's rights" - ] - }, - { - "text": "Continue its efforts towards reducing poverty through continuing setting up programs aimed at this purpose", - "values": [ - "Poverty" - ] - }, - { - "text": "Consider taking steps to establish a de jure moratorium with a view to abolishing the death penalty", - "values": [ - "Death penalty" - ] - }, - { - "text": "Canada said it was committed to taking decisive steps to eliminate racism and address discrimination, which is fundamentally repugnant to Canadian values.", - "values": [ - "Racial discrimination" - ] - }, - { - "text": "Provide adequate resources, including taking capacity-building measures, to enable the judiciary and the legal authorities to function properly", - "values": [ - "Justice" - ] - }, - { - "text": "Continue the work on the implementation of the series of international human rights conventions, including those in the field of labour protection", - "values": [ - "International instruments", - "Labour" - ] - }, - { - "text": "Decriminalize defamation, currently in the Criminal Code, and place it within the Civil Code, in accordance with international standards", - "values": [ - "Freedom of opinion and expression" - ] - }, - { - "text": "Consider taking progressive actions to ratify the core human rights treaties, starting with ICESCR and ICCPR, which it signed in 1995 ", - "values": [ - "CP rights - general", - "ESC rights - general", - "International instruments" - ] - }, - { - "text": "Amend the Civil Code in order to bring to 18 years old the legal marriage age for both boys and girls, and repeal the amendment to the Law on the Protection of Children and Adolescents with No Guardian, which allows for marriage between adoptive parents and their adopted child", - "values": [ - "Rights of the Child", - "Women's rights" - ] - }, - { - "text": "Reinforce its criminal prosecution system with a view towards ensuring accountability of all perpetrators related to human trafficking ", - "values": [ - "Justice", - "Trafficking" - ] - }, - { - "text": "Within the framework of cooperation, consider extending an open standing invitation to the United Nations special procedures ", - "values": [ - "Special procedures" - ] - }, - { - "text": "Step up efforts and establish a capacity building programme to encourage women's participation in decision-making positions", - "values": [ - "Women's rights" - ] - }, - { - "text": "Consider ratifying, as early as possible, the Optional Protocol to the International Covenant on Economic, Social and Cultural Rights and the Second Protocol thereto", - "values": [ - "ESC rights - general", - "International instruments" - ] - }, - { - "text": "Invite the Special Rapporteur on extrajudicial, summary or arbitrary executions to visit the country.", - "values": [ - "Extrajudicial executions", - "Special procedures" - ] - }, - { - "text": "Take diplomatic action and provide legal assistance to protect migrant workers ", - "values": [ - "Labour", - "Migrants" - ] - }, - { - "text": "Ensure that freedom of assemblies are guaranteed and lift all restrictions on peaceful protests", - "values": [ - "Freedom of association and peaceful assembly" - ] - }, - { - "text": "Take further steps for the implementation of the Convention on the Rights of Persons with Disabilities", - "values": [ - "Disabilities", - "International instruments" - ] - }, - { - "text": "Proceed with the early conclusion of the Convention against Torture", - "values": [ - "International instruments", - "Torture and other CID treatment" - ] - }, - { - "text": "Continue its efforts in improving access to affordable housing through proper implementation of its existing legal and policy frameworks including mortgage financing and its Public Private Partnership housing estate schemes", - "values": [ - "Right to housing" - ] - }, - { - "text": "Strengthen the judiciary in order to guarantee its investigation and prosecution capacity so as to ensure access to justice for all citizens, in particular victims of sexual violence ", - "values": [ - "Justice", - "Rights of the Child", - "Women's rights" - ] - }, - { - "text": "Ratify the International Convention on the Rights of Persons with Disabilities\n", - "values": [ - "Disabilities", - "International instruments" - ] - }, - { - "text": "Continue to protect the rights of children", - "values": [ - "Rights of the Child" - ] - }, - { - "text": "Continue its constructive efforts for the promotion of respect, tolerance, better understanding and cooperation among different cultures and religions through initiatives such as the Alliance of Civilizations and the Dialogue among Religions ", - "values": [ - "Freedom of religion and belief" - ] - }, - { - "text": "Ensure a favourable climate for the activities of journalists, human rights defenders and other actors of civil society ", - "values": [ - "Civil society", - "Freedom of the press", - "Human rights defenders" - ] - }, - { - "text": "Grant, upon request, permanent residency to any person who was a citizen of another republic of the former Yugoslavia and who was a permanent resident of Slovenia immediately prior to its independence, as well as to his or her descendants to provide appropriate compensation to those who were disadvantaged as a result of their erasure and to conduct an outreach campaign concerning those measures to inform those now living abroad", - "values": [ - "CP rights - general", - "Statelessness and the right to nationality" - ] - }, - { - "text": "Take steps to accelerate the existing efforts to establish an independent human rights institution", - "values": [ - "National Human Rights Institution" - ] - }, - { - "text": "Implement the United Nations Rules for the Treatment of Women Prisoners and Non-Custodial Measures for Women Offenders, otherwise known as the "Bangkok Rules"", - "values": [ - "Detention", - "Women's rights" - ] - }, - { - "text": "Consider technical assistance in the provision of education infrastructure and in ICT development ", - "values": [ - "Development", - "Right to education", - "Technical assistance and cooperation" - ] - }, - { - "text": "Ratify CEDAW and the Optional Protocols thereto", - "values": [ - "International instruments", - "Women's rights" - ] - }, - { - "text": "Adopt proactive measures at all levels to combat violence, stigmatization and discrimination towards persons on the basis of their sexual orientation", - "values": [ - "Sexual Orientation and Gender Identity" - ] - }, - { - "text": "Ensure safe access to legal abortion, including for female rape victims, within the public health system in all regions. Initiate a public debate on the decriminalization of abortion", - "values": [ - "Women's rights" - ] - }, - { - "text": "Step up efforts to ensure provision of free and quality primary and secondary education", - "values": [ - "Right to education" - ] - }, - { - "text": "Contribute, with Spanish civil society stakeholders, to carry out initiatives on the elaboration of an international legally binding instrument on transnational corporations and human rights in the framework of the Human Rights Council, considering that the issue of corporations is one of the six Spanish foreign policy priorities in the area of human rights", - "values": [ - "Business and human rights", - "Civil society" - ] - }, - { - "text": "Adopt comprehensive measures to combat trafficking in persons and extend the invitation to the Special Rapporteur on trafficking in persons, especially women and children, as well as to the Special Rapporteur on the sale of children, child prostitution and child pornography", - "values": [ - "Rights of the Child", - "Special procedures", - "Trafficking", - "Women's rights" - ] - }, - { - "text": "Encourage functioning of its civil society, in particular human rights NGOs", - "values": [ - "Civil society" - ] - }, - { - "text": "Continue to allow unfettered regular access of the ICRC to all detention facilities.", - "values": [ - "Detention" - ] - }, - { - "text": "Strengthen measures to prohibit discrimination based on sexual orientation and gender identity and combat hate crimes on these grounds", - "values": [ - "Sexual Orientation and Gender Identity" - ] - }, - { - "text": "Continue implementing plans to enable girls and persons with disabilities to have access to education", - "values": [ - "Disabilities", - "Right to education", - "Rights of the Child", - "Women's rights" - ] - }, - { - "text": "Guarantee that all detainees, regardless of their crimes, are held in facilities with decent standard and treatment", - "values": [ - "Detention" - ] - }, - { - "text": "Ensure that the statute of the national human rights commission is in conformity with the Paris Principle, to ensure that it is fully operational, as recommended by the Committee on the Rights of the Child.", - "values": [ - "National Human Rights Institution", - "Treaty bodies" - ] - }, - { - "text": "Adopt legislation to prevent and end all forms of violence against children", - "values": [ - "Rights of the Child" - ] - }, - { - "text": "The Government of Kyrgyzstan reopen proceedings related to the events in Nookat and ensure that allegations of torture are investigated and that all evidence obtained trough coercion is disregarded ", - "values": [ - "Justice", - "Torture and other CID treatment" - ] - }, - { - "text": "Enhance human rights education programmes for citizens and the armed forces to promote a culture of peace and respect for human rights.", - "values": [ - "Human rights education and training" - ] - }, - { - "text": "Reduce the use of pretrial detention, ensuring judicial review, establishing an independent police complaints mechanism and speeding up trials ", - "values": [ - "Detention", - "Justice" - ] - }, - { - "text": "Continue its efforts of guaranteeing an effective health system", - "values": [ - "Right to health" - ] - }, - { - "text": "Strengthen the protection of rights of persons belonging to non-Jewish minorities and to ensure an effective participation of all citizens in political and public affairs", - "values": [ - "CP rights - general", - "Minorities" - ] - }, - { - "text": "Improve the social protection and living conditions of the most vulnerable groups of the population", - "values": [ - "Minorities" - ] - }, - { - "text": "Ratify the UNESCO Convention against Discrimination in Education (1960)", - "values": [ - "International instruments", - "Right to education" - ] - }, - { - "text": "Continue efforts to ensure the protection of children from all forms of violence and abuse", - "values": [ - "Rights of the Child" - ] - }, - { - "text": "Release all human rights defenders and political prisoners", - "values": [ - "Detention", - "Freedom of opinion and expression", - "Human rights defenders" - ] - }, - { - "text": "Accelerate activities for implementation of the Agenda for Sustainable Socioeconomic Transformation", - "values": [ - "Development", - "ESC rights - general" - ] - }, - { - "text": "Set targets for increasing Maori participation in policing, the judiciary and the penal system ", - "values": [ - "Indigenous peoples" - ] - }, - { - "text": "Address the discrimination faced by persons with disabilities with regards to access to education, employment and healthcare", - "values": [ - "Disabilities", - "Labour", - "Right to education", - "Right to health" - ] - }, - { - "text": "Establish an effective and inclusive process to follow up on the recommendations resulting from the present review", - "values": [ - "UPR process" - ] - }, - { - "text": "Strictly enforce the legal provisions prohibiting harmful and discriminatory practices that violate the rights of women and girls, and that it undertake effective public education measures, including awareness-raising programmes designed to eliminate gender-based prejudices, traditional practices and provisions of personal status laws that are harmful and discriminatory to women and girls ", - "values": [ - "Human rights education and training", - "Rights of the Child", - "Torture and other CID treatment", - "Women's rights" - ] - }, - { - "text": "Continue to intensify efforts and take necessary measures with a view to carrying out the repatriation of illicit funds and proceeds of corruption to their countries of origin and to ensure cooperation with requesting States", - "values": [ - "Impunity", - "Justice" - ] - }, - { - "text": "Review the media law of 28 December 2015 to ensure compliance with international standards on freedom of expression", - "values": [ - "Freedom of opinion and expression", - "Freedom of the press" - ] - }, - { - "text": "Ratify the Optional Protocol to the ICESCR and the Optional Protocol to the Convention on the Rights of the Child on a communications procedure ", - "values": [ - "ESC rights - general", - "International instruments", - "Rights of the Child" - ] - }, - { - "text": "Increase coordination between the police and the Office of the Attorney General in investigation of violence against human rights defenders and develop a national policy for the protection of human rights defenders.", - "values": [ - "Human rights defenders" - ] - }, - { - "text": "Take measures to reduce the problem of extreme poverty affecting indigenous people", - "values": [ - "Indigenous peoples", - "Poverty" - ] - }, - { - "text": "Draw up a national policy on children and a national plan of action to guide its implementation, monitoring and assessment, adopt administrative measures to ensure birth registration for all children irrespective of whether they have a christening certificate", - "values": [ - "Rights of the Child", - "Statelessness and the right to nationality" - ] - }, - { - "text": "Take measures to limit the authority of military tribunals which are assuming the functions of civil justice ", - "values": [ - "Justice" - ] - }, - { - "text": "Proceed with its efforts to improve the health system, combat diseases, improve maternal health and reduce child mortality rates.", - "values": [ - "Right to health", - "Rights of the Child", - "Women's rights" - ] - }, - { - "text": "Make improved access for humanitarian organisations an immediate priority", - "values": [ - "International humanitarian law" - ] - }, - { - "text": "Enforce legislation prohibiting child labour, facilitate access to education for poor and disadvantaged children and reinforce labour inspections", - "values": [ - "Labour", - "Poverty", - "Right to education", - "Rights of the Child" - ] - }, - { - "text": "Take the additional measures necessary to eliminate discrimination against the Roma community and other vulnerable groups in the country", - "values": [ - "Minorities", - "Racial discrimination" - ] - }, - { - "text": "Ensure the independence and adequate capacity of the Ugandan Human Rights Commission", - "values": [ - "National Human Rights Institution" - ] - }, - { - "text": "Abolish the death penalty, establish a moratorium on executions and ratify the Second Optional Protocol to the International Covenant on Civil and Political Rights, aiming at the abolition of the death penalty", - "values": [ - "Death penalty", - "International instruments" - ] - }, - { - "text": "Strengthen domestic legislation to protect victims and witnesses of human trafficking ", - "values": [ - "Trafficking" - ] - }, - { - "text": "Enhance awareness of women's rights and disseminate information on the remedies available to those who claim violations of their rights", - "values": [ - "Women's rights" - ] - }, - { - "text": "Finalize the establishment of a new national human rights institution in compliance with the principles relating to the status of national institutions for the promotion and protection of human rights (the Paris Principles)", - "values": [ - "National Human Rights Institution" - ] - }, - { - "text": "Strengthen efforts to promote the active presence of women in society and in political life, including by combating stereotypes through awareness-raising campaigns", - "values": [ - "Human rights education and training", - "Women's rights" - ] - }, - { - "text": "Give consideration to the establishment and application of criteria for the information and consent of women prior to sterilization.", - "values": [ - "Women's rights" - ] - }, - { - "text": "Continue making progress towards a more efficient functioning of government institutions, continuing the fight against corruption and promoting transparency", - "values": [ - "Corruption" - ] - }, - { - "text": "Improve the working conditions and involvement of local and international NGOs ", - "values": [ - "Civil society" - ] - }, - { - "text": "Ensure the timely, effective, and impartial investigations of all allegations concerning torture", - "values": [ - "Torture and other CID treatment" - ] - }, - { - "text": "Continue its efforts to adopt the national law to combat terrorism", - "values": [ - "Public security" - ] - }, - { - "text": "Put in place a comprehensive strategy aimed at eliminating discriminatory stereotypes against women", - "values": [ - "Women's rights" - ] - }, - { - "text": "Provide human rights training for officers, and increase the capacity of the Police Complaints Authority to investigate allegations of extrajudicial killings and the use of excessive force by police using prompt and impartial proceedings ", - "values": [ - "Extrajudicial executions", - "Human rights education and training" - ] - }, - { - "text": "Initiating a public campaign with the view to removing reservations to CEDAW, ratifying the Optional Protocol and harmonizing national legislation with the Convention. Bahrain was invited to inform about plans in this regard", - "values": [ - "International instruments", - "Statelessness and the right to nationality", - "Women's rights" - ] - }, - { - "text": "Maintain its efforts in favour of prevention, punishment and eradication of all forms of violence against women ", - "values": [ - "Women's rights" - ] - }, - { - "text": "Continue cooperation with treaty bodies by submitting overdue reports", - "values": [ - "Treaty bodies" - ] - }, - { - "text": "Ensure that minors are separated from adults in places of detention", - "values": [ - "Detention", - "Rights of the Child" - ] - }, - { - "text": "Establish mechanisms for dealing with cases of corporal punishment of children with a view to effective law enforcement", - "values": [ - "Rights of the Child", - "Torture and other CID treatment" - ] - }, - { - "text": "Consider the ratification of the International Covenant on Economic, Social and Cultural Rights, the Convention on the Rights of the Child and the International Convention on the Elimination of All Forms of Discrimination against Women", - "values": [ - "ESC rights - general", - "International instruments", - "Rights of the Child", - "Women's rights" - ] - }, - { - "text": "Introduce gender equality issues, as well as non-discrimination and non-violence due to gender identity and sexual orientation in education programmes, in school regulations and in the training of teachers", - "values": [ - "Human rights education and training", - "Sexual Orientation and Gender Identity", - "Women's rights" - ] - }, - { - "text": "Implement the National Action Plan on human rights", - "values": [ - "General" - ] - }, - { - "text": "Take heed of the concerns expressed by relevant Treaty Bodies, including on the right to life administration of justice, and gender equality, and fully implement the provisions of the respective treaties", - "values": [ - "International instruments", - "Justice", - "Treaty bodies", - "Women's rights" - ] - }, - { - "text": "Submit overdue reports to the relevant UN treaty bodies", - "values": [ - "Treaty bodies" - ] - }, - { - "text": "Ensure close cooperation between the police and the NGOs which provide assistance to victims of trafficking in human beings ", - "values": [ - "Civil society", - "Trafficking" - ] - }, - { - "text": "Implement the Family Peace Act (2014) as a matter of priority to address domestic violence", - "values": [ - "Rights of the Child", - "Women's rights" - ] - }, - { - "text": "Respond favourably to UN Special Rapporteurs' outstanding visit requests and facilitate them when necessary", - "values": [ - "Special procedures" - ] - }, - { - "text": "Strengthen the independence of the National Human Rights Commission from the executive and seek its accreditation with the ICC to promote in order to promote and safeguard human rights and its conformity with the Paris Principles ", - "values": [ - "National Human Rights Institution" - ] - }, - { - "text": "Accord the greatest priority to measures aimed at better ensuring the economic and social rights of its population, particularly by devoting more resources to programmes to combat poverty and illiteracy.", - "values": [ - "ESC rights - general", - "Poverty", - "Right to education" - ] - }, - { - "text": "Promote the accreditation of the Ombudsman's Office (Provedor de Justiça) as a National Human Rights Institution with "A" Status in accordance with the Paris Principles", - "values": [ - "National Human Rights Institution" - ] - }, - { - "text": "Further review and abolish those laws which are discriminatory against women and religious minorities according to international standards", - "values": [ - "Freedom of religion and belief", - "Minorities", - "Racial discrimination", - "Women's rights" - ] - }, - { - "text": "Take steps to ensure targeted attacks against individuals based on their sexual orientation are thoroughly investigated and prosecuted, and strengthen mechanisms to prevent crimes of violence ", - "values": [ - "Sexual Orientation and Gender Identity" - ] - }, - { - "text": "Continue to take measures to accelerate the increase in the participation of women in political decision-making positions, the judiciary and the civil service ", - "values": [ - "Women's rights" - ] - }, - { - "text": "Protect civilians and civilian infrastructure, in accordance with international humanitarian law and customary international law, and stop its indiscriminate aerial bombardments, including the use of barrel bombs", - "values": [ - "International humanitarian law" - ] - }, - { - "text": "Strengthen efforts to ensure access to education in all areas of the country, including rural areas", - "values": [ - "Right to education" - ] - }, - { - "text": "Rapidly adopt and implement the two draft bills recently tabled in the National Assembly to ensure the rights of transgender persons", - "values": [ - "Sexual Orientation and Gender Identity" - ] - }, - { - "text": "Accede to ICESR in a timely manner as it was signed in September 2000.", - "values": [ - "ESC rights - general", - "International instruments" - ] - }, - { - "text": "Put in place an independent national human rights institution in line with the United Nations Paris Principles", - "values": [ - "National Human Rights Institution" - ] - }, - { - "text": "Ensure that men and women enjoy their human rights on an equal footing ", - "values": [ - "Women's rights" - ] - }, - { - "text": "Reform the penal code and abolish discrimination against people based on their sexual orientation ", - "values": [ - "Sexual Orientation and Gender Identity" - ] - }, - { - "text": "Repeal the anti-sodomy law, which criminalizes the private consensual conduct of gay men", - "values": [ - "Sexual Orientation and Gender Identity" - ] - }, - { - "text": "Proceed with the accreditation of the NHRI with an A status in accordance with the Paris Principles", - "values": [ - "National Human Rights Institution" - ] - }, - { - "text": "Ensure an enabling environment for the activities of journalists, human rights defenders and the other civil society actors", - "values": [ - "Civil society", - "Freedom of the press", - "Human rights defenders" - ] - }, - { - "text": "Review the current maternity health-care policies and introduce necessary changes to ensure pregnant women's access to medical facilities throughout the country ", - "values": [ - "Right to health", - "Women's rights" - ] - }, - { - "text": "Consider the possibility of making amendments to legislation aimed at strengthening equality for women and men, as well as consider the question of adopting legislation to ensure equality of rights and opportunities, including in the area of access to vocational training", - "values": [ - "Women's rights" - ] - }, - { - "text": "Ensure that programmes and policies to curb domestic violence are fully implemented", - "values": [ - "Rights of the Child", - "Women's rights" - ] - }, - { - "text": "Consider adopting the National action plan for children to address inequalities in living standards and disparities by gender, ethnic origin and disabilities", - "values": [ - "Rights of the Child" - ] - }, - { - "text": "Proceed to the abolition of existing legislation criminalizing relations between persons of the same sex ", - "values": [ - "Sexual Orientation and Gender Identity" - ] - }, - { - "text": "Allocate additional resources in order to further strengthen the work of the Ombudsman's Office ", - "values": [ - "National Human Rights Institution" - ] - }, - { - "text": "Ensure that all allegations of arbitrary detention, excessive use of force, extrajudicial executions, torture and ill-treatment by the police are promptly, thoroughly and impartially investigated", - "values": [ - "Detention", - "Extrajudicial executions", - "Human rights violations by state agents", - "Torture and other CID treatment" - ] - }, - { - "text": "Establish an official moratorium on executions with a view to the complete abolition of the death penalty, and commute without delay death sentences into prison terms", - "values": [ - "Death penalty" - ] - }, - { - "text": "Fully, systematically and continuously integrate a gender perspective into the follow-up process to the Universal Periodic Review.", - "values": [ - "UPR process", - "Women's rights" - ] - }, - { - "text": "Involve civil society organizations in the follow-up to this UPR.", - "values": [ - "Civil society", - "UPR process" - ] - }, - { - "text": "Continue implementing the policy in the area of the improvement of the rights and opportunities of women", - "values": [ - "Women's rights" - ] - }, - { - "text": "Bring the Law on freedom of conscience and religious organizations in compliance with international norms, promote religious tolerance and remove restrictions imposed on religious education, activities of religious organizations and religious dressing", - "values": [ - "Freedom of religion and belief" - ] - }, - { - "text": "Ratify ICCPR and ICESCR, which it signed in 1995 ", - "values": [ - "CP rights - general", - "ESC rights - general", - "International instruments" - ] - }, - { - "text": "Explore the possibility of elaborating and adopting a national policy for gender equality in accordance with the international instruments in this area to which Saudi Arabia is a party", - "values": [ - "International instruments", - "Women's rights" - ] - }, - { - "text": "Continue to take action-oriented measures to counter racial discrimination and intolerance, including through education and awareness-raising efforts at all levels", - "values": [ - "Human rights education and training", - "Racial discrimination" - ] - }, - { - "text": "Ensure equality between men and women, including in parents' rights and property's rights", - "values": [ - "Women's rights" - ] - }, - { - "text": "Implement constitutional provisions and international obligations that support the rights to freedom of expression, assembly, association, and religion and provide an opportunity to participate in free, fair, and transparent elections ", - "values": [ - "Elections", - "Freedom of association and peaceful assembly", - "Freedom of opinion and expression", - "Freedom of religion and belief" - ] - }, - { - "text": "Continue ongoing efforts to strengthen respect for the human rights of women and to take steps to improve their living standards", - "values": [ - "Women's rights" - ] - }, - { - "text": "Further strengthen cooperation with other countries and relevant international organizations by sharing good experiences in the fields of poverty reduction, education for all and universal medical care", - "values": [ - "Poverty", - "Right to education", - "Right to health", - "Technical assistance and cooperation" - ] - }, - { - "text": "Investigate all cases of corruption in the judicial system", - "values": [ - "Corruption", - "Justice" - ] - }, - { - "text": "Seek support from the Council and work together with the Council so that Djibouti progressively fulfils its identified objectives for improving the promotion and protection of human rights in the country", - "values": [ - "Technical assistance and cooperation" - ] - }, - { - "text": "Continue consolidating its programmes and socio-economic measures essential to achieve poverty reduction and social exclusion to the utmost wellbeing of its people ", - "values": [ - "Poverty" - ] - }, - { - "text": "Take every measure to ensure the effective implementation of CAT, particularly in detention centres", - "values": [ - "Detention", - "International instruments", - "Torture and other CID treatment" - ] - }, - { - "text": "As part of ongoing justice reform, elaborate use of force provisions that include accountability for private security firms", - "values": [ - "Justice", - "Public security" - ] - }, - { - "text": "Extradite the confessed terrorist Luis Posada Carriles ", - "values": [ - "Justice" - ] - }, - { - "text": "Combat child labour, including by criminalizing employers who exploit child labour and bringing them to justice", - "values": [ - "Labour", - "Rights of the Child" - ] - }, - { - "text": "Continue to take proactive and innovative measures to ensure sustainable development policies related to the promotion of economic, social and cultural rights in the country", - "values": [ - "ESC rights - general" - ] - }, - { - "text": "Continue to work with the Non-Aligned Movement and the United Nations system in strengthening human rights in the world", - "values": [ - "Other" - ] - }, - { - "text": "Strengthen its cooperation with the special procedures of the Human Rights Council by responding positively to the pending visit requests and eventually consider extending a standing invitation to all the special procedures mandate holders", - "values": [ - "Special procedures" - ] - }, - { - "text": "Extend a standing invitation to the special procedures mechanisms ", - "values": [ - "Special procedures" - ] - }, - { - "text": "Take the necessary measures to allow stateless children born in its territory to acquire Ivorian nationality and remove discriminatory grounds of eligibility for naturalization, including the requirement that persons must be free of mental or physical handicaps", - "values": [ - "Rights of the Child", - "Statelessness and the right to nationality" - ] - }, - { - "text": "Continue to implement policies and programmes aimed at improving its human, social and economic development, and call on the international community to provide the requisite technical and financial assistance towards this endeavour ", - "values": [ - "Development", - "Technical assistance and cooperation" - ] - }, - { - "text": "Work towards enhancing the status, powers and functions of the office of the Ombudsman to ensure full compliance with the Paris Principles", - "values": [ - "National Human Rights Institution" - ] - }, - { - "text": "Continue its efforts to consolidate rule of law and good governance through reforms in the administration of justice and improvements in the quality of public service", - "values": [ - "Justice" - ] - }, - { - "text": "Make the implementation of anti-trafficking programmes, particularly the intensification of preventive measures and the protection of trafficking victims, a priority", - "values": [ - "Trafficking" - ] - }, - { - "text": "Increase its cooperation with UNICEF and other United Nations bodies to establish a comprehensive strategy to ensure the protection of women and girls from all forms of violence, particularly sexual violence. ", - "values": [ - "Rights of the Child", - "Women's rights" - ] - }, - { - "text": "Consider adopting a framework law for the full realization of the right to food", - "values": [ - "Right to food" - ] - }, - { - "text": "Further strengthen efforts in the area of development especially, concerning the enrolment at all levels of education, the realization of the right to food", - "values": [ - "Development", - "Right to education", - "Right to food" - ] - }, - { - "text": "Continue its efforts to build national institutions, increase its people's awareness of all sets of human rights and broaden the space for the enjoyment of economic, social and cultural rights", - "values": [ - "ESC rights - general" - ] - }, - { - "text": "Establish effective partnership with the donor community with a view to attaining food security through receipt of sufficient food assistance, development of agriculture sectors by receiving resources and technology and introduction of appropriate food distribution system ", - "values": [ - "Right to food" - ] - }, - { - "text": "Continue and strengthen its efforts relating to the number of children, especially boys, entering secondary school", - "values": [ - "Right to education", - "Rights of the Child" - ] - }, - { - "text": "Develop National Human Rights Indicators as suggested by OHCHR, as an instrument that allows for a more precise and coherent evaluation of its national human rights policies", - "values": [ - "Other" - ] - }, - { - "text": "Expand efforts to combat human trafficking and ensure protection for victims", - "values": [ - "Trafficking" - ] - }, - { - "text": "Commitments undertaken to promote the collective rights of afro-Ecuadorian and indigenous peoples, dissemination through a broad process of the outcome of the conference on the elimination of racial discrimination to be held next year in Geneva, adoption of the recommendations made by the Special Rapporteur on the situation of human rights and fundamental freedoms of indigenous people with regard to free and equal access to services in the administration of justice", - "values": [ - "Indigenous peoples", - "Minorities", - "Special procedures" - ] - }, - { - "text": "Ratify the International Convention on the Protection of the Rights of All Migrant Workers and Members of Their Families (ICRMW) to further promote and protect migrants, in particular undocumented and irregular migrants ", - "values": [ - "International instruments", - "Labour", - "Migrants" - ] - }, - { - "text": "To extend a standing invitation to special mandate holders on human rights ", - "values": [ - "Special procedures" - ] - }, - { - "text": "Intensify efforts at improving and strengthening its human rights institutions", - "values": [ - "National Human Rights Institution" - ] - }, - { - "text": "Intensify its endeavours to implement effectively the Law on the Promotion and Protection of the Rights of Persons with Disabilities ", - "values": [ - "Disabilities" - ] - }, - { - "text": "Remove the 1992 provision authorizing government censorship of all publications, and promote pluralistic, free and independent media ", - "values": [ - "Freedom of the press" - ] - }, - { - "text": "Expand media freedoms across print, online and, in particular, broadcast platforms, notably by ending its ban on foreign broadcasts on FM radio frequencies and eliminating new restrictions on the broadcast of foreign language television programs", - "values": [ - "Freedom of the press" - ] - }, - { - "text": "Take an active stance in combating and raising awareness against racism and intolerant political rhetoric and strengthen legal and other measures to address bias-motivated crimes", - "values": [ - "Human rights education and training", - "Racial discrimination" - ] - }, - { - "text": "Consider the possibility of establishing a national human rights institution in line with the Paris Principles that govern these mechanisms, while also asking for technical and financial assistance ", - "values": [ - "National Human Rights Institution", - "Technical assistance and cooperation" - ] - }, - { - "text": "Investigate allegations of and bring to trial the perpetrators of extrajudicial executions taking place as part of the struggle with the Tuaregs, as well as the allegations of torture made in the cells of the State security services ", - "values": [ - "Detention", - "Extrajudicial executions", - "Human rights violations by state agents", - "Torture and other CID treatment" - ] - }, - { - "text": "Review the current maternity health care policies and introduce the necessary changes to ensure access to medical facilities for pregnant women throughout the country", - "values": [ - "Right to health", - "Women's rights" - ] - }, - { - "text": "Continue its efforts to develop capacities of women to fulfil their responsibilities as key partner in the development ", - "values": [ - "Women's rights" - ] - }, - { - "text": "Extend the National Action Plan on Human Rights published in 2013 to cover all relevant human rights issues, including respect for human rights while countering terrorism, and ensure independent monitoring and evaluation of the Action Plan", - "values": [ - "Counter-terrorism" - ] - }, - { - "text": "Speed up the process of setting up a national human rights commission, with the support of the international community", - "values": [ - "National Human Rights Institution", - "Technical assistance and cooperation" - ] - }, - { - "text": "Continue with its efforts to eradicate child labour with a particular focus on children in highly vulnerable situations ", - "values": [ - "Labour", - "Rights of the Child" - ] - }, - { - "text": "Continue the efforts made in favor of the integration of the community of the Roma, the eradication of religious intolerance, human trafficking - especially of women and children -, and discrimination against people living with HIV / AIDS ", - "values": [ - "Freedom of religion and belief", - "HIV - Aids", - "Minorities", - "Rights of the Child", - "Trafficking", - "Women's rights" - ] - }, - { - "text": "Adopt measures and programmes to reduce the rates of maternal and infant mortality and of chronic child malnutrition ", - "values": [ - "Right to health", - "Rights of the Child" - ] - }, - { - "text": "Develop comprehensive anti-discrimination legislation including a clear definition of discrimination against women and racial discrimination in its legislation", - "values": [ - "Racial discrimination", - "Women's rights" - ] - }, - { - "text": "Ratify the Rome Statute and fully align its national legislation with its provisions", - "values": [ - "International instruments", - "Justice" - ] - }, - { - "text": "Ensure full compliance with international standards on the death penalty, but ultimately establish a moratorium with a view to ratifying the Second Optional Protocol to ICCPR ", - "values": [ - "Death penalty", - "International instruments" - ] - }, - { - "text": "Rescind undue restrictions on the media and access to information, including on the internet, and tolerate all forms of legitimate speech, including criticism of the government and its policies", - "values": [ - "Freedom of opinion and expression", - "Freedom of the press" - ] - }, - { - "text": "Ensure access to good-quality education, including postgraduate education and vocational training, for indigenous women", - "values": [ - "Indigenous peoples", - "Right to education", - "Women's rights" - ] - }, - { - "text": "Continue public awareness campaigns on domestic violence and the introduction of specific rape prevention programmes", - "values": [ - "Human rights education and training", - "Rights of the Child", - "Women's rights" - ] - }, - { - "text": "Redouble its advocacy efforts to enhance public awareness on gender equality and women's role in social and economic development.", - "values": [ - "Women's rights" - ] - }, - { - "text": "Interpret statutory law and to set enforcement mechanisms in a way that protects unionized and non-unionized workers equally and without discrimination.", - "values": [ - "Labour" - ] - }, - { - "text": "Avoid arbitrary and discretionary detention particularly of foreigners and adequately reduce the detention period particularly of asylum seekers.", - "values": [ - "Asylum-seekers - refugees", - "Detention" - ] - }, - { - "text": "Confirm its commitments to equality and non-discrimination by decriminalizing consensual sexual relations between adults of the same sex as well as any discriminatory provisions with respect to lesbian, gay, bisexual and transgender persons ", - "values": [ - "Sexual Orientation and Gender Identity" - ] - }, - { - "text": "Continue to develop inclusive education and strengthen life-long education ", - "values": [ - "Right to education" - ] - }, - { - "text": "Consider setting up an independent national human rights institution that would comply with the Paris Principles, and providing this institution with the necessary resources to effectively fulfil its mandate", - "values": [ - "National Human Rights Institution" - ] - }, - { - "text": "Continue ensuring an environment conducive to the full respect and protection of the rights of refugees and asylum seekers within Austrian society at large", - "values": [ - "Asylum-seekers - refugees" - ] - }, - { - "text": "Ensure that reports of the use of excessive force or ill-treatment by law enforcement officials are fully investigated ", - "values": [ - "Human rights violations by state agents", - "Torture and other CID treatment" - ] - }, - { - "text": "Make efforts to accelerate the process of ratification of the Optional Protocol to the International Covenant on Economic, Social and Cultural Rights", - "values": [ - "ESC rights - general", - "International instruments" - ] - }, - { - "text": "Continue promoting and implementing its programs of social inclusion to make citizens' participation more active, and in particular the participation of minorities or excluded groups", - "values": [ - "Minorities" - ] - }, - { - "text": "The Government of The Gambia is committed to reducing poverty and has formulated a number of policies and strategies for this cause such as Vision 2020, The Development Strategy and Investment Programme for 2012 to 2015, called the Programme for Accelerated Growth and Employment (PAGE), which is the successor to the Poverty Reduction Strategy Programme II (PRSP II).", - "values": [ - "Poverty" - ] - }, - { - "text": "Recognize the competence of the Committee against Torture and make the declaration under articles 21 and 22 of the Convention against Torture and Other Cruel, Inhuman or Degrading Treatment or Punishment", - "values": [ - "International instruments", - "Torture and other CID treatment", - "Treaty bodies" - ] - }, - { - "text": "Implement legal safeguards to ensure protection of human rights defenders, including journalists, against abuse of provisions for criminal prosecution and release all political prisoners ", - "values": [ - "Detention", - "Freedom of opinion and expression", - "Freedom of the press", - "Human rights defenders" - ] - }, - { - "text": "Take measures towards ensuring the equal and the full enjoyment of the basic rights of all its citizens including persons belonging to indigenous communities, and to effectively prevent and, if necessary, combat racial discrimination ", - "values": [ - "Indigenous peoples", - "Racial discrimination" - ] - }, - { - "text": "Finalize the process of establishing a national mechanism for the prevention of torture", - "values": [ - "Detention", - "Torture and other CID treatment" - ] - }, - { - "text": "Continue the programmes for economic and social development by correcting disparities between urban and rural areas", - "values": [ - "Development", - "ESC rights - general" - ] - }, - { - "text": "Intensify its efforts to eliminate violence against women and to develop a national plan of action", - "values": [ - "Women's rights" - ] - }, - { - "text": "Abide by CEDAW and ratify OP-CEDAW ", - "values": [ - "International instruments", - "Women's rights" - ] - }, - { - "text": "Continue its efforts to promote the use of non-gender specific language.", - "values": [ - "Women's rights" - ] - }, - { - "text": "Undertake legal reforms to ensure openness and transparency of the media in the country", - "values": [ - "Freedom of the press" - ] - }, - { - "text": "Take appropriate measures for the provision of legal aid to asylumseekers and migrants ", - "values": [ - "Asylum-seekers - refugees" - ] - }, - { - "text": "Promote women's rights and their role in the family institution and society in line with its national and cultural particularities as well as its international obligations ", - "values": [ - "Women's rights" - ] - }, - { - "text": "Impose a moratorium on the use of the death penalty as a step towards its full abolition.", - "values": [ - "Death penalty" - ] - }, - { - "text": "Pay greater attention to the situation of persons with disabilities, with more facilities in public buildings, housing, transports, telephone helplines, improvement in care centres, review of proceedings of involuntary hospitalisation and protection of the exercise of fundamental rights, such as the rights to vote", - "values": [ - "Disabilities" - ] - }, - { - "text": "Set up an independent commission of inquiry to investigate the cruel, inhuman and degrading treatment suffered by children in the OPT and stop such actions", - "values": [ - "Rights of the Child", - "Torture and other CID treatment" - ] - }, - { - "text": "Continue actions that support, in the context of the international cooperation, the strengthening of the concept of "disaster reduction" as an issue to be considered in decision-making at the national, local and community levels, to ensure the human safety of vulnerable populations", - "values": [ - "Environment" - ] - }, - { - "text": "Ensure the inclusion of women and girls with disabilities in all policies and programmes on equality and gender discrimination", - "values": [ - "Disabilities", - "Women's rights" - ] - }, - { - "text": "Step up measures to combat trafficking in persons and sex tourism, including through rapid creation within the Government of a special body to deal with these issues", - "values": [ - "Trafficking" - ] - }, - { - "text": "Strengthen the fight against discrimination and violence against women", - "values": [ - "Women's rights" - ] - }, - { - "text": "Ensure the rights of the child, with attention to the Guidelines for the Alternative Care of Children", - "values": [ - "Rights of the Child" - ] - }, - { - "text": "Extend an open invitation to all special procedures of the Human Rights Council ", - "values": [ - "Special procedures" - ] - }, - { - "text": "Investigate allegations of torture and ill-treatment by law and order forces and ensure rapid administration of justice ", - "values": [ - "Human rights violations by state agents", - "Torture and other CID treatment" - ] - }, - { - "text": "Ratify the Convention against Torture and the Optional Protocol ", - "values": [ - "Detention", - "International instruments", - "Torture and other CID treatment" - ] - }, - { - "text": "Continue its effort to secure satisfactory sanitary facilities in Irish prisons, including in-cell sanitation, and to mitigate overcrowding", - "values": [ - "Detention", - "Right to water and sanitation" - ] - }, - { - "text": "Step up efforts to further reduce poverty, in particular in rural areas", - "values": [ - "Poverty" - ] - }, - { - "text": "Proceed with the adoption of the national action plan on human rights", - "values": [ - "General" - ] - }, - { - "text": "Ratify or accede to, where appropriate, the Optional Protocol to the Convention on the Elimination of All Forms of Discrimination Against Women ", - "values": [ - "International instruments", - "Women's rights" - ] - }, - { - "text": "Continue implementing its international commitments to achieve its nationally determined contributions under the Paris Agreement of 2015", - "values": [ - "Environment" - ] - }, - { - "text": "Ratify the ILO Convention N. 189 on Domestic Workers and adopt the Act for the Protection of Domestic Workers ", - "values": [ - "International instruments", - "Labour" - ] - }, - { - "text": "Accede to the Convention against Torture and its Optional Protocol and set up a National Preventive Mechanism accordingly ", - "values": [ - "Detention", - "International instruments", - "Torture and other CID treatment" - ] - }, - { - "text": "Provide medical care for displaced persons", - "values": [ - "Internally displaced persons", - "Right to health" - ] - }, - { - "text": "Continue its efforts to contribute on the prevention of crimes against humanity, particularly genocide, and to the fight against negationism of past historical facts", - "values": [ - "Justice" - ] - }, - { - "text": "Adopt effective measures to prevent any harassment or intimidation of all those exercising their democratic rights of freedom of association and expression ", - "values": [ - "Freedom of association and peaceful assembly", - "Freedom of opinion and expression" - ] - }, - { - "text": "Effectively Implement the three main National Pacts (Zero Hunger Pact, Pact for Security, Justice and Peace, and Fiscal Pact), aimed at improving living conditions of the population in general and in particular of groups living in poverty and extreme poverty", - "values": [ - "Justice", - "Poverty", - "Public security", - "Right to food" - ] - }, - { - "text": "Cease its censorship of the media, as well as the harassment and arbitrary detention of journalists, and provide guarantees for the right to freedom of expression and freedom of the media", - "values": [ - "Detention", - "Freedom of opinion and expression", - "Freedom of the press" - ] - }, - { - "text": "Continue its work to advance equality for women and to promote their full participation in all fields ", - "values": [ - "Women's rights" - ] - }, - { - "text": "Continue making efforts to improve the normative framework for the protection of women in Qatar", - "values": [ - "Women's rights" - ] - }, - { - "text": "Repeal the provisions that allow persons with disabilities to be subject to medication and psychiatric treatment without their consent", - "values": [ - "Right to health" - ] - }, - { - "text": "Consider the possibility of ratifying the International Convention on the Protection of the Rights of All Migrant Workers and Members of Their Families and the Convention against Torture and Other Cruel, Inhuman or Degrading Treatment or Punishment", - "values": [ - "International instruments", - "Labour", - "Migrants", - "Torture and other CID treatment" - ] - }, - { - "text": "Lift undue restrictions on the exercise of fundamental freedoms, particularly section 61 of the referendum law and Order number 7/2557 of the National Council for Peace and Order, to allow all Thai people to participate fully in the political reform processes, including efforts to produce a new constitution", - "values": [ - "Freedom of association and peaceful assembly" - ] - }, - { - "text": "Extend an open and standing invitation to all special procedures of the Council.", - "values": [ - "Special procedures" - ] - }, - { - "text": "Reform decree No. 92 such that it guarantees the rights to freedom of religion and belief, opinion and expression as set out in the ICCPR, and take steps to improve the awareness of State officials of their duty to protect these rights ", - "values": [ - "Freedom of opinion and expression", - "Freedom of religion and belief", - "International instruments" - ] - }, - { - "text": "Adopt specific legislation on domestic violence, especially violence against women and children", - "values": [ - "Rights of the Child", - "Women's rights" - ] - }, - { - "text": "New Zealand accepts in part the recommendations [33 and 34] to continue efforts to prevent discrimination in the criminal justice system and to commit itself to combating overrepresentation of specific groups.", - "values": [ - "Justice" - ] - }, - { - "text": "Further promote the rights of minorities, such as by introducing multilingual education, and maintain social harmony and unity among various groups in the society", - "values": [ - "Minorities", - "Right to education" - ] - }, - { - "text": "Establish juvenile courts ", - "values": [ - "Justice", - "Rights of the Child" - ] - }, - { - "text": "Continue to strengthen human rights institutions to ensure the continued promotion and protection of human rights, and raise public awareness around human rights issues nationwide ", - "values": [ - "General" - ] - }, - { - "text": "Consider ratifying or acceding to the international human rights instruments to which it is not yet party", - "values": [ - "International instruments" - ] - }, - { - "text": "Take initiatives to strengthen gender mainstreaming and women's rights. ", - "values": [ - "Women's rights" - ] - }, - { - "text": "Select national candidates for the United Nations Treaty Body elections through an open, merit-based process", - "values": [ - "Treaty bodies" - ] - }, - { - "text": "Take relevant steps in order to conduct immediate, independent, transparent and thorough investigations of human rights violations committed during and after the events of June 2009, and initiate further legal proceedings against those found responsible for such crimes", - "values": [ - "Justice" - ] - }, - { - "text": "Reach out to parents and parents' groups to promote equal access to education and participation in local institutions for their children, and to encourage parents to appreciate the value of education and benefits of participation ", - "values": [ - "Right to education", - "Rights of the Child" - ] - }, - { - "text": "Strengthen its child protection system with effective mechanisms, including investigation of reports of cases of child abuse ", - "values": [ - "Rights of the Child" - ] - }, - { - "text": "Continue its positive measures to realize the right to education of its citizens", - "values": [ - "Right to education" - ] - }, - { - "text": "Guarantee and make systematic the use of independent and impartial investigations into alleged cases of torture ", - "values": [ - "Torture and other CID treatment" - ] - }, - { - "text": "Implement the 18 recommendations made by the International Bar Association's Human Rights Institute in its 2008 report "Prosperity Versus Individual Rights" ", - "values": [ - "Other" - ] - }, - { - "text": "Intensify its efforts with a view to creating the conditions in order that the National Human Rights Commission conform with the Paris Principles", - "values": [ - "National Human Rights Institution" - ] - }, - { - "text": "End extrajudicial killings, enforced disappearances, illegal arrests and detention, torture and harassment, including by effectively implementing criminal prohibitions against extrajudicial killings", - "values": [ - "Enforced disappearances", - "Extrajudicial executions", - "Torture and other CID treatment" - ] - }, - { - "text": "Study the measures it considers appropriate to enable the accreditation of the Ombudsman as National Institution of Human Rights, in accordance with the Paris Principles ", - "values": [ - "National Human Rights Institution" - ] - }, - { - "text": "Adopt a comprehensive and clear definition of racial discrimination into domestic law", - "values": [ - "Racial discrimination" - ] - }, - { - "text": "Repeal article 398 of the Penal Code which gives perpetrators of honour killings legal concessions ", - "values": [ - "Rights of the Child", - "Women's rights" - ] - }, - { - "text": "Incorporate in the new Constitution articles enshrining human rights and fundamental freedoms as well as legal provisions to effectively guarantee the separation of powers, in particular the independence of the judiciary ", - "values": [ - "Justice" - ] - }, - { - "text": "Share experience in the development of its solidarity values and in particular the National Solidarity Fund.", - "values": [ - "Other" - ] - }, - { - "text": "Continue its laudable measures to fight poverty and combat diseases such as HIV and AIDS", - "values": [ - "HIV - Aids", - "Poverty" - ] - }, - { - "text": "Take further steps in order to prevent violence against people of African descent", - "values": [ - "Minorities", - "Racial discrimination" - ] - }, - { - "text": "Incorporate human rights into public policies and strengthen the human rights institutions", - "values": [ - "General" - ] - }, - { - "text": "Abide by its commitment of 2009 and establish a clear timeframe in order to ratify ICCPR", - "values": [ - "CP rights - general", - "International instruments" - ] - }, - { - "text": "Make greater efforts to protect children and women from all forms of abuse, in particular trafficking and domestic violence", - "values": [ - "Rights of the Child", - "Trafficking", - "Women's rights" - ] - }, - { - "text": "Adopt measures aimed at strengthening the Independent National Authority for Human Rights in order for it to be fully compliant with the Paris Principles, in particular, providing it with adequate resources and more qualified staff so as to strengthen the National Preventive Mechanism against Torture and undertake information campaigns, especially among vulnerable groups ", - "values": [ - "Detention", - "National Human Rights Institution", - "Torture and other CID treatment" - ] - }, - { - "text": "Take immediate measures to ensure gender equality", - "values": [ - "Women's rights" - ] - }, - { - "text": "Respect and ensure the rights of indigenous people related to the preservation of their land, culture and resources", - "values": [ - "Indigenous peoples", - "Right to land" - ] - }, - { - "text": "The new softened media regulations for foreign journalists be extended to Chinese journalists", - "values": [ - "Freedom of the press" - ] - }, - { - "text": "Increase its efforts to reduce its high maternal mortality rate", - "values": [ - "Right to health", - "Women's rights" - ] - }, - { - "text": "Improve access to the right to education and eliminate disparities in this respect, whether regional, socioeconomic or based on ethnicity or gender ", - "values": [ - "Minorities", - "Right to education", - "Women's rights" - ] - }, - { - "text": "Make additional efforts to combat corruption and to examine the possibility of ratifying the United Nations Convention against Corruption", - "values": [ - "Corruption", - "International instruments" - ] - }, - { - "text": "Implement necessary measures to put an end to the disproportionate use of force against individuals and respect the right of peaceful protest", - "values": [ - "Freedom of association and peaceful assembly" - ] - }, - { - "text": "Abolish corporal punishment for children.", - "values": [ - "Rights of the Child", - "Torture and other CID treatment" - ] - }, - { - "text": "Create a comprehensive system for the collection of data that would allow assessing the situation of vulnerable groups and minorities ", - "values": [ - "Minorities" - ] - }, - { - "text": "Continue to seek international technical cooperation and assistance, especially in the areas of health and education ", - "values": [ - "Right to education", - "Right to health", - "Technical assistance and cooperation" - ] - }, - { - "text": "Ratify the Protocol No. 12 to the Protection of Human Rights and Fundamental Freedoms of the Council of Europe Convention", - "values": [ - "International instruments" - ] - }, - { - "text": "Ensure the respect of international standards on the rights of prisoners sentenced to death", - "values": [ - "Death penalty" - ] - }, - { - "text": "Facilitate the work and the function of the Ombudsman in accordance with the Paris Principles ", - "values": [ - "National Human Rights Institution" - ] - }, - { - "text": "Secure sufficient resources for the ombudsperson\u2019s office so that it can fully carry out its functions", - "values": [ - "Other" - ] - }, - { - "text": "Abolish the death penalty for all crimes and in all circumstances", - "values": [ - "Death penalty" - ] - }, - { - "text": "Continue efforts aimed at strengthening the measures necessary for the protection of the rights of older persons", - "values": [ - "Other" - ] - }, - { - "text": "Reform the judiciary and establish a true separation of powers to ensure democracy and full respect for human rights.", - "values": [ - "Justice" - ] - }, - { - "text": "The Yemeni Government is preparing a national human rights strategy in cooperation with the United Nations Development Programme (UNDP)", - "values": [ - "General" - ] - }, - { - "text": "Continue with its commendable efforts to promote and protect human rights and freedoms", - "values": [ - "General" - ] - }, - { - "text": "Encourage the ratification of ICRMW", - "values": [ - "International instruments", - "Labour", - "Migrants" - ] - }, - { - "text": "Continue implement the national strategy to improve the well-being of the population", - "values": [ - "General" - ] - }, - { - "text": "Redouble its efforts to implement the outputs of the general conference of education, training and research held in May 2010 and to seek technical assistance from relevant United Nations organizations", - "values": [ - "Right to education", - "Technical assistance and cooperation" - ] - }, - { - "text": "Adapt the practice in which unaccompanied minors are being held in migrant detention together with unrelated adults, and give them the benefit of the doubt until their age has been determined", - "values": [ - "Detention", - "Migrants", - "Rights of the Child" - ] - }, - { - "text": "Carry forward a national awareness-raising campaign which includes mechanisms to facilitate the access of women to justice, the establishment of specialized courts, comprehensive care services for victims and national programmes to combat stereotyping of women and girls, including at the level of formal and informal education ", - "values": [ - "Human rights education and training", - "Justice", - "Rights of the Child", - "Women's rights" - ] - }, - { - "text": "Release prisoners of conscience and those arbitrarily detained, and immediately stop intimidation, persecutions and arbitrary arrests", - "values": [ - "Detention", - "Freedom of religion and belief" - ] - }, - { - "text": "Continue to implement policies, plans and services to protect the advancement of women and to protect them against violence.", - "values": [ - "Women's rights" - ] - }, - { - "text": "Reform national law in order to prohibit corporal punishment in all settings and to develop an enforcement mechanism and sanctions against corporal punishment of children", - "values": [ - "Rights of the Child", - "Torture and other CID treatment" - ] - }, - { - "text": "Take steps to promote free and independent media and continue work to ensure the safety of journalists, including Ndey Tapha Sossey, Sarata Jabbi- Dibba, Pa Modou Faal, Pap Saine, Sam Sarr, Ebrima Sawaneh, Emil Touray, and Augustine Kanja", - "values": [ - "Freedom of the press" - ] - }, - { - "text": "Promptly and fully investigated, by judicial authorities, all extrajudicial executions and torture committed by security services and that those responsible are prosecuted, and that the government ensure publication of the reports of all national commissions of inquiry set up to investigate arbitrary executions", - "values": [ - "Extrajudicial executions", - "Human rights violations by state agents", - "Torture and other CID treatment" - ] - }, - { - "text": "Continue to carry out further measures to strengthen the harmony between different ethnic and religious communities ", - "values": [ - "Freedom of religion and belief", - "Minorities" - ] - }, - { - "text": "Initiate an open public debate on sexual and reproductive health and rights and decriminalize life-saving abortion and abortion in cases of pregnancies resulting from rape or incest", - "values": [ - "Right to health", - "Women's rights" - ] - }, - { - "text": "Ensure all security forces are subject to strict control of civilian authorities ", - "values": [ - "Justice" - ] - }, - { - "text": "Reconsider its position about the continued legality of corporal punishment against children.", - "values": [ - "Rights of the Child", - "Torture and other CID treatment" - ] - }, - { - "text": "Implement the Committee on Economic, Social and Cultural Rights encouragement to recognize the right to self-identification of all ethnic groups in Ukraine as well as to ensure protection and development of their cultural heritage.", - "values": [ - "Minorities", - "Treaty bodies" - ] - }, - { - "text": "Ensure a better protection for children and adolescents against violence related to organized crime", - "values": [ - "Public security", - "Rights of the Child" - ] - }, - { - "text": "Ensure that NGOs involved in defending human rights can carry out their activities without hindrance ", - "values": [ - "Civil society" - ] - }, - { - "text": "Implement the recommendations of the Committee on the Elimination of Discrimination against Women for better observance of its obligations under the Convention on the Elimination of All Forms of Discrimination against Women, in particular effectively apply the ban on early and forced marriages, including through the adjustment of the national legal framework, by paying particular attention to vulnerable groups", - "values": [ - "International instruments", - "Rights of the Child", - "Treaty bodies", - "Women's rights" - ] - }, - { - "text": "The process of institutionalizing the National Consultative Forum on Human Rights is on-going. Government is committed to using the platform as a vehicle to promote dialogue in the field of human rights.", - "values": [ - "Other" - ] - }, - { - "text": "Raise the minimum age of criminal responsibility to the internationally accepted age ", - "values": [ - "Justice", - "Rights of the Child" - ] - }, - { - "text": "Continue to strengthen cooperation with international mechanisms, through a favourable response to the special procedures that have requested to visit the country ", - "values": [ - "Special procedures" - ] - }, - { - "text": "Intensify its efforts to protect women from harmful traditional practices, such as female genital mutilations ", - "values": [ - "Rights of the Child", - "Torture and other CID treatment", - "Women's rights" - ] - }, - { - "text": "Commute all the death sentences to prison sentences and ratify the second Protocol to the ICCPR in view of the definitive abolition of death penalty ", - "values": [ - "Death penalty", - "International instruments" - ] - }, - { - "text": "Continue to take actions to eradicate poverty and reduce the disparities between rural and urban communities through providing the basic necessities, quality education, health services, and the creation of jobs and income-generating opportunities for all", - "values": [ - "Development", - "Poverty", - "Right to education", - "Right to health" - ] - }, - { - "text": "Take effective measures to strengthen gender equality, in particular eliminate occupational segregation", - "values": [ - "Women's rights" - ] - }, - { - "text": "Consider extending an open invitation to special procedures ", - "values": [ - "Special procedures" - ] - }, - { - "text": "Implement the recommendations of the CERD, including the adoption of a clear definition of racial discrimination in its domestic legislation, adoption of legislative measures and that would criminalize incitement to racial hatred, and effective sanctions for hate crimes", - "values": [ - "Racial discrimination", - "Treaty bodies" - ] - }, - { - "text": "Prepare and adopt a national action plan against racism ", - "values": [ - "Racial discrimination" - ] - }, - { - "text": "Criminalise domestic violence, ensuring to victims effective access to immediate means of protection and reinforcing prosecution of perpetrators ", - "values": [ - "Rights of the Child", - "Women's rights" - ] - }, - { - "text": "Continue its democratisation process by means of restructuring of the local police forces", - "values": [ - "Public security" - ] - }, - { - "text": "Ratify the Optional Protocols to the Convention on the Rights of the Child on the involvement of children in armed conflict and on the sale of children, child prostitution and child pornography", - "values": [ - "International instruments", - "Rights of the Child", - "Trafficking" - ] - }, - { - "text": "Ensure that no individual is directly or indirectly "refouled" to their country of origin, or any other country where they may face persecution ", - "values": [ - "Asylum-seekers - refugees" - ] - }, - { - "text": "Take concrete measures to implement the Migration and Aliens Act adopted in August 2009", - "values": [ - "Migrants" - ] - }, - { - "text": "Provide State and cantonal authorities with training on human rights for the protection of the rights of transgender people", - "values": [ - "Human rights education and training", - "Sexual Orientation and Gender Identity" - ] - }, - { - "text": "Develop a closer policy focus on the special needs and care of persons with disabilities in order to help them live productive lives and contribute to their communities ", - "values": [ - "Disabilities" - ] - }, - { - "text": "Urgently hold accountable those responsible for serious crimes committed between 1962 and 2008, ensuring transitional justice mechanisms include: witness and victim protection, an independent prosecutor, and an international commissioner. There should be no amnesty for those who committed war crimes, crimes against humanity or genocide", - "values": [ - "Justice" - ] - }, - { - "text": "Take all possible measures to prevent the recruitment and torture or cruel and degrading treatment by the police and military of children ", - "values": [ - "Rights of the Child", - "Torture and other CID treatment" - ] - }, - { - "text": "Continue working to improve the services given to the victims of discrimination and hatred, especially religious hatred, and continue in raising awareness about this crime", - "values": [ - "Human rights education and training", - "Racial discrimination" - ] - }, - { - "text": "Prompt adoption of Bill no. 2442 with amendments that guarantee the independence and autonomy of the National Preventative Mechanism members, in conformity with Brazil's OPCAT obligations ", - "values": [ - "Detention", - "International instruments", - "Torture and other CID treatment" - ] - }, - { - "text": "Continue to improve the representation of women in Parliament at both national and local levels", - "values": [ - "Women's rights" - ] - }, - { - "text": "Reconsider the restrictions imposed by the Ministry of Social Development and take appropriate measures to ensure that civil society organizations can take an active part in the public debate on human rights ", - "values": [ - "Civil society" - ] - }, - { - "text": "Put in force an immediate moratorium on the death penalty", - "values": [ - "Death penalty" - ] - }, - { - "text": "Envisage the possibility of making the National Consultative Forum an annual event as a tool to promote dialogue and comprehension in the field of human rights", - "values": [ - "Human rights education and training" - ] - }, - { - "text": "Consider creating, with international technical assistance, the required national human and institutional expertise that would contribute to gaining a better understanding of its obligations and to the implementation of human rights-related treaties to which it is a party ", - "values": [ - "International instruments", - "Technical assistance and cooperation" - ] - }, - { - "text": "Abolish the death penalty and adopt laws favouring the protection of women, and combat domestic violence", - "values": [ - "Death penalty", - "Women's rights" - ] - }, - { - "text": "Continue the process necessary for the adoption of the comprehensive anti-discrimination law", - "values": [ - "Other" - ] - }, - { - "text": "Allow for more transparency with regard to the selection of judges", - "values": [ - "Justice" - ] - }, - { - "text": "Consider early ratification of the Third Optional Protocol to the CRC on a communication procedure ", - "values": [ - "International instruments", - "Rights of the Child" - ] - }, - { - "text": "Transfer the responsibility for temporary detention facilities from the Ministry of the Interior to the Ministry of Justice", - "values": [ - "Detention" - ] - }, - { - "text": "Continue efforts to enhance the work of departments in relation to hate crimes and discrimination", - "values": [ - "Racial discrimination" - ] - }, - { - "text": "Continue the efforts to improve the access to education for the children and youth from Roma communities as the United Nations Economic, Scientific and Cultural Organization has also suggested", - "values": [ - "Minorities", - "Right to education", - "Rights of the Child" - ] - }, - { - "text": "Carry out an inclusive evidence-based evaluation of the Danish antiterrorism legislation ", - "values": [ - "Counter-terrorism" - ] - }, - { - "text": "Build upon existing justice and security sector reforms ", - "values": [ - "Justice", - "Public security" - ] - }, - { - "text": "Ratify the Convention on the Reduction of Statelessness ", - "values": [ - "International instruments", - "Statelessness and the right to nationality" - ] - }, - { - "text": "Consider amending domestic legislation to pave the way for ratification of a number of other key regional and international human rights conventions", - "values": [ - "International instruments" - ] - }, - { - "text": "Continue the implementation of the national plans and programs related to the comprehensive protection and education of children and adolescent, in particular those who are homeless", - "values": [ - "Right to education", - "Rights of the Child" - ] - }, - { - "text": "Ensure the protection of human rights of all Rohingya Muslims, address discrimination against them including by combating incitement to hatred and publicly condemning such acts as well as taking all the necessary measures to ensure accountability for violations of human rights against Rohingya Muslims in Myanmar", - "values": [ - "Freedom of religion and belief", - "Minorities", - "Racial discrimination" - ] - }, - { - "text": "Start establishing a national human rights institution in accordance with the Paris Principles", - "values": [ - "National Human Rights Institution" - ] - }, - { - "text": "Ensure that impartial, independent and transparent investigations into all allegations of human rights violations by security forces are conducted, in particular in the South of the country, and that those responsible are brought to justice", - "values": [ - "Human rights violations by state agents" - ] - }, - { - "text": "Review the Daiyo Kangoku system of detention and, according to the International Covenant on Civil and Political Rights (ICCPR), ensure that all persons deprived of liberty are brought to justice without delay", - "values": [ - "Detention", - "International instruments" - ] - }, - { - "text": "Continue enhancing freedom of information and the rights of journalists", - "values": [ - "Freedom of opinion and expression", - "Freedom of the press" - ] - }, - { - "text": "Strengthen its efforts in establishing a national human rights institution in accordance with the Paris Principles", - "values": [ - "National Human Rights Institution" - ] - }, - { - "text": "Continue its mutually beneficial cooperation with the United Nations human rights mechanism", - "values": [ - "Special procedures", - "Treaty bodies", - "UPR process" - ] - }, - { - "text": "Promote the work of human rights defenders.", - "values": [ - "Human rights defenders" - ] - }, - { - "text": "Fully prioritise fulfilling the right to food in its public spending, thus furthering recent improvements in the food situation", - "values": [ - "Right to food" - ] - }, - { - "text": "Address overcrowding and harsh conditions in prisons ", - "values": [ - "Detention" - ] - }, - { - "text": "Undertake measures to redress marginalization of indigenous and migrant populations, in line with the prominent role of Mexico in the international scene", - "values": [ - "Indigenous peoples", - "Migrants" - ] - }, - { - "text": "Take further measures for the harmonization of legislation and policies with the Convention on the Rights of the Child, including with regard to children affected by migration ", - "values": [ - "International instruments", - "Migrants", - "Rights of the Child" - ] - }, - { - "text": "Render operational and grant adequate resources to the National Council against Gender-Based Violence and develop a multisectoral national strategic plan on this issue", - "values": [ - "Women's rights" - ] - }, - { - "text": "Give priority to the promotion and protection of human rights in all policies developed by the Government ", - "values": [ - "General" - ] - }, - { - "text": "Conduct appropriate public awareness-raising campaigns with a view to eliminate female genital mutilation and other harmful traditional practices", - "values": [ - "Human rights education and training", - "Rights of the Child", - "Torture and other CID treatment", - "Women's rights" - ] - }, - { - "text": "Adopt a national strategy to fight against discrimination against women and girls, with a focus on equitable access to education", - "values": [ - "Right to education", - "Rights of the Child", - "Women's rights" - ] - }, - { - "text": "Adopt comprehensive policies abolishing child, early and forced marriage", - "values": [ - "Rights of the Child", - "Women's rights" - ] - }, - { - "text": "Continue to support initiatives, programmes and funds aiming at supporting youth projects in order to enhance the enjoyment of economic rights and provide job opportunities", - "values": [ - "Development" - ] - }, - { - "text": "Include provisions in its Equal Opportunities Act on the equal rights of women and men", - "values": [ - "Women's rights" - ] - }, - { - "text": "Continue interaction with the Human Rights Council and its mechanisms with a view to strengthening the rule of law and protecting human rights in accordance with international instruments to which Libya has acceded", - "values": [ - "Justice" - ] - }, - { - "text": "Strengthen the protection of journalists and human rights defenders in order to exercise the important work of monitoring the human rights situation ", - "values": [ - "Freedom of the press", - "Human rights defenders" - ] - }, - { - "text": "Bring all legislation concerning communication surveillance in line with international human rights standards and especially recommends that all communications surveillance requires a test of necessity and proportionality", - "values": [ - "Privacy" - ] - }, - { - "text": "Ratify the OP-CRC-SC and offer quality psychological support to child victims of sexual exploitation ", - "values": [ - "International instruments", - "Rights of the Child" - ] - }, - { - "text": "Provide fairness and swift action in protecting the rights and legitimate interests of indigenous minorities", - "values": [ - "Indigenous peoples" - ] - }, - { - "text": "Announce a moratorium on the application of the death penalty with a view to its abolition in law", - "values": [ - "Death penalty" - ] - }, - { - "text": "Repeal the right of parents to use corporal punishment", - "values": [ - "Rights of the Child", - "Torture and other CID treatment" - ] - }, - { - "text": "Create a strong, independent judiciary by training more judges, prosecutors and court clerks and establishing mixed chambers", - "values": [ - "Justice" - ] - }, - { - "text": "Strengthen the implementation of mechanisms for the assistance of victims of trafficking, placing emphasis on child victims of this crime", - "values": [ - "Rights of the Child", - "Trafficking" - ] - }, - { - "text": "Ratify and implement into domestic law the Convention on the Elimination of All forms of Discrimination against Women, the Convention on the Rights of the Child and the Convention on the Rights of Persons with Disabilities", - "values": [ - "Disabilities", - "International instruments", - "Rights of the Child", - "Women's rights" - ] - }, - { - "text": "Provide greater guarantees to journalists and media personnel, guarantee their safety and security, in particular those that investigate and report cases of drug trafficking and corruption", - "values": [ - "Freedom of the press" - ] - }, - { - "text": "Withdraw its reservations to the Convention against Torture and Other Cruel, Inhuman or Degrading Treatment (CAT), ICCPR and CEDAW as well as its general reservations to CRC and ratify the Rome Statute and the Optional Protocol to CAT (OP-CAT) and OP-CEDAW ", - "values": [ - "International instruments" - ] - }, - { - "text": "Take necessary steps to amend its legislation on freedom of expression and remove prohibition of blasphemy in line with the International Covenant on Civil and Political Rights article 19 and Human Rights Committee's General Comment 34, and the Venice Commission's recommendation", - "values": [ - "Freedom of opinion and expression", - "Freedom of religion and belief", - "International instruments", - "Treaty bodies" - ] - }, - { - "text": "Put in place a national institution for the promotion and protection of human rights in accordance with international standards in force ", - "values": [ - "National Human Rights Institution" - ] - }, - { - "text": "Intensify awareness-raising campaigns about albinism to combat prejudice, stigmatization, discrimination and violence against persons with albinism", - "values": [ - "Minorities" - ] - }, - { - "text": "Provide obligatory human rights education and training to police, prison and judiciary staff, and ensure their strict accountability for any violations of human rights", - "values": [ - "Human rights education and training" - ] - }, - { - "text": "Take the appropriate legislative measures in order to incorporate into national law the provisions of the Convention against Torture and its Optional Protocol for the purpose of ensuring its effective implementation", - "values": [ - "Detention", - "International instruments", - "Torture and other CID treatment" - ] - }, - { - "text": "Continue its fight against poverty with a focus on upholding respect and observance for human rights", - "values": [ - "Poverty" - ] - }, - { - "text": "Continue implementation of national programmes in the sphere of education and health care", - "values": [ - "Right to education", - "Right to health" - ] - }, - { - "text": "Conclude consultations on the composition of the National Commission for Human Rights, and make the Commission operational ", - "values": [ - "National Human Rights Institution" - ] - }, - { - "text": "Adopt a legislation that criminalizes specifically sexual harassment in all spheres, including in the work place", - "values": [ - "Sexual Orientation and Gender Identity" - ] - }, - { - "text": "Review laws criminalizing defamation of public figures, to respect and guarantee freedom of expression", - "values": [ - "Freedom of opinion and expression" - ] - }, - { - "text": "Continue to take steps to implement the national Action Plan for Human Rights", - "values": [ - "General" - ] - }, - { - "text": "That steps be taken to further facilitate the easy travel of its citizens abroad", - "values": [ - "Freedom of movement" - ] - }, - { - "text": "Consider the recommendation by the Committee on the Rights of the Child regarding the detention of minors under the age of 14 years, particularly refugee and unaccompanied children and child asylum seekers", - "values": [ - "Asylum-seekers - refugees", - "Detention", - "Rights of the Child", - "Treaty bodies" - ] - }, - { - "text": "Continue its efforts to take more concrete measures to ensure the protection of women against all forms of discrimination and violence", - "values": [ - "Women's rights" - ] - }, - { - "text": "Take urgent measures to investigate and sanction acts of discrimination against migrants, refugees and minorities, in particular by ensuring the protection necessary to those who report acts of discrimination", - "values": [ - "Asylum-seekers - refugees", - "Migrants", - "Minorities", - "Racial discrimination" - ] - }, - { - "text": "Consider the possibility of ratifying the International Covenant on Economic, Social and Cultural Rights, International Convention on the Protection of the Rights of All Migrant Workers and Members of Their Families and Convention on the Rights of Persons with Disabilities", - "values": [ - "Disabilities", - "ESC rights - general", - "International instruments", - "Labour", - "Migrants" - ] - }, - { - "text": "Continue to develop laws and make efforts to ensure freedom of religion and belief", - "values": [ - "Freedom of religion and belief" - ] - }, - { - "text": "Sign, accede to and/or ratify the main international instruments already agreed in the previous cycle of the universal periodic review", - "values": [ - "International instruments", - "UPR process" - ] - }, - { - "text": "Take up the processing and approval of the draft law on gender violence, with a view to providing victims with mechanisms for protection and effective reparation", - "values": [ - "Women's rights" - ] - }, - { - "text": "Put an end to the practice of extrajudicial executions, public and secret ", - "values": [ - "Extrajudicial executions" - ] - }, - { - "text": "Refrain from arbitrary arrest and the use of criminal libel laws against and harassment of journalists and opposition members", - "values": [ - "Detention", - "Freedom of association and peaceful assembly", - "Freedom of opinion and expression", - "Freedom of the press" - ] - }, - { - "text": "Establish a moratorium to the death sentence and eradicate the practice of death by stoning", - "values": [ - "Death penalty" - ] - }, - { - "text": "Ratify the International Convention for the Protection of All Persons from Enforced Disappearance, as well as recognize the competence of its Committee ", - "values": [ - "Enforced disappearances", - "International instruments", - "Treaty bodies" - ] - }, - { - "text": "Continue efforts to promote gender issues in favour of equality between men and women in all areas of socioeconomic life and access to resources", - "values": [ - "Women's rights" - ] - }, - { - "text": "Impose a moratorium on executions of all offenders with a view to abolishing the death penalty. ", - "values": [ - "Death penalty" - ] - }, - { - "text": "Honour its voluntary commitment to submit national reports to the treaty bodies by the due date.", - "values": [ - "Treaty bodies" - ] - }, - { - "text": "Continue to increase the active promotion of equality of rights and opportunities, independently of sexual orientation or gender identity, and continue to play its active role at the international level in favour of legal protection against discrimination on the grounds of sexual orientation and gender identity ", - "values": [ - "Sexual Orientation and Gender Identity" - ] - }, - { - "text": "Cooperate effectively with the Human Rights Council and its special procedures with a view to addressing the many pressing human rights issues besetting the country ", - "values": [ - "Special procedures" - ] - }, - { - "text": "Continue its cooperation with the United Nations and other international organizations to develop its legal and institutional framework with respect to the promotion and protection of human rights in Singapore ", - "values": [ - "Technical assistance and cooperation" - ] - }, - { - "text": "Thoroughly investigate killings by private armies and vigilantes responsible for unsanctioned activities during the Government\u2019s anti-drug campaign and prosecute those responsible", - "values": [ - "Extrajudicial executions" - ] - }, - { - "text": "Enshrine fully the right to fair trial and due process guarantees", - "values": [ - "Justice" - ] - }, - { - "text": "Prolong a moratorium on the death penalty with a view to abolishing capital punishment entirely", - "values": [ - "Death penalty" - ] - }, - { - "text": "Ensure that corporations, particularly those active in the forest industry, respect human and environmental rights, based on the Guiding Principles on Business and Human Rights", - "values": [ - "Business and human rights" - ] - }, - { - "text": "Develop a specific normative framework to guarantee the freedom of opinion and expression, as well as the security of journalists, members of the opposition and civil society", - "values": [ - "Civil society", - "Freedom of opinion and expression", - "Freedom of the press" - ] - }, - { - "text": "Accelerate the withdrawal of its reservations to the Convention on the Elimination of all Forms of Discrimination against Women, to fully comply with the provisions of the Convention, and introduce plans and programs to eliminate all forms of discrimination against women", - "values": [ - "International instruments", - "Women's rights" - ] - }, - { - "text": "Strengthen its legal framework by considering signing and ratifying the International Convention on the Protection of the Rights of All Migrant Workers and Members of Their Families", - "values": [ - "International instruments", - "Labour", - "Migrants" - ] - }, - { - "text": "Further increase the use of ethnic languages in schools and the mass media.", - "values": [ - "Minorities" - ] - }, - { - "text": "Eliminate or reduce the fees for litigation so that defendants are able to obtain their rights within the law ", - "values": [ - "Justice" - ] - }, - { - "text": "Consider favourably issuing a standing invitation to all special procedures in order to further its cooperation with the United Nations human rights mechanisms ", - "values": [ - "Special procedures" - ] - }, - { - "text": "Apply all the necessary measures to continue strengthening the federal public defender and the provincial defenders in order to guarantee the effectiveness of their functions in all regions of the country", - "values": [ - "Justice" - ] - }, - { - "text": "Take concrete measures to ensure the independence of the Constitutional Court and the protection of human rights and fundamental freedoms, and that political pressure is not being applied to judicial decision-making", - "values": [ - "Justice" - ] - }, - { - "text": "In the realm of the new criminal procedure code, establish an independent mechanism for the investigation of alleged cases of torture by officers of law-enforcement agencies independent from the Ministry of the Interior and the Prosecutor's Office", - "values": [ - "Human rights violations by state agents", - "Torture and other CID treatment" - ] - }, - { - "text": "Further strengthen the Parliamentary Ombudsman as a national preventive mechanism in accordance with OP-CAT", - "values": [ - "Detention", - "International instruments", - "National Human Rights Institution", - "Torture and other CID treatment" - ] - }, - { - "text": "Continue its efforts to adopt a law modernizing the migration regime, which incorporates a human rights approach, recognizes the rights and obligations of regular and irregular migrants and contains provisions regarding a national migration policy, the fight against trafficking in persons and the protection of refugees ", - "values": [ - "Asylum-seekers - refugees", - "Migrants", - "Trafficking" - ] - }, - { - "text": "Reinforce ongoing work to guarantee equal social services to all", - "values": [ - "ESC rights - general" - ] - }, - { - "text": "Abolish the crime of honour in its penal code and continue to take the necessary measures in order to better promote women's rights in all spheres of the society", - "values": [ - "Rights of the Child", - "Women's rights" - ] - }, - { - "text": "Strengthen its efforts and measures to consolidate the State of law and its mechanisms on human rights protection and promotion, as stated in the recently launched Third National Action Plan on Human Rights ", - "values": [ - "Justice" - ] - }, - { - "text": "Extend a standing invitation to the special procedures in order to improve its cooperation with the international community in the field of human rights", - "values": [ - "Special procedures", - "Technical assistance and cooperation" - ] - }, - { - "text": "Rigorously enforce legislative instruments that protect and strengthen the rights of the child", - "values": [ - "Rights of the Child" - ] - }, - { - "text": "Establish an institutional mechanism to combat discrimination and violence against women and children, particularly children from minority peoples", - "values": [ - "Minorities", - "Rights of the Child", - "Women's rights" - ] - }, - { - "text": "Consider the possibility of eliminating criminal sanctions to undocumented migrants as well as those sanctions against those who provide services for the protection of their rights", - "values": [ - "Migrants" - ] - }, - { - "text": "Ratify the ICCPR-OP2 ", - "values": [ - "Death penalty", - "International instruments" - ] - }, - { - "text": "Consolidate measures of national and international nature to ensure the effective fight against trafficking in persons ", - "values": [ - "Trafficking" - ] - }, - { - "text": "Continue efforts to guarantee better access to education and to health care for the people, including for indigenous peoples", - "values": [ - "Indigenous peoples", - "Right to education", - "Right to health" - ] - }, - { - "text": "Continue to eliminate poverty, improve people's life and make efforts to fulfill the Millennium Development Goals ", - "values": [ - "Development", - "Poverty" - ] - }, - { - "text": "Ratify ILO Convention No. 169, concerning indigenous and tribal peoples, and the Ibero-American Convention on the Rights of Young People ", - "values": [ - "Indigenous peoples", - "International instruments" - ] - }, - { - "text": "Bring legislation on the death penalty in line with international minimum standards, in particular by abolishing mandatory death penalty and the death penalty for drug-related offences, and take steps to approving a moratorium with a view to eventual abolition", - "values": [ - "Death penalty" - ] - }, - { - "text": "Continue the successful implementation of the new National Human Rights Action Plan (NHRAP) for 2012-2015 through its cooperation with OHCHR", - "values": [ - "Technical assistance and cooperation" - ] - }, - { - "text": "Continue to allocate more resources in the area of sport for all youth", - "values": [ - "Other" - ] - }, - { - "text": "Establish a National Human Rights Institution in full compliance with the Paris Principles as a matter of priority", - "values": [ - "National Human Rights Institution" - ] - }, - { - "text": "Ensure that women receive equal pay for equal work so as to close the gender pay gap", - "values": [ - "Women's rights" - ] - }, - { - "text": "Develop appropriate labour legislation in relation to children, in line with the State's obligations under CRC, ensuring the inclusion of ILO Conventions No. 138, on the Minimum Age for Admission to Employment, and No. 182, on the Prohibition and Immediate Action for the Elimination of the Worst Forms of Child Labour ", - "values": [ - "International instruments", - "Labour", - "Rights of the Child" - ] - }, - { - "text": "Ensure the effective exercise of the right to conscientious objection and ensure that no minor (under 18) is recruited into the Armed Forces ", - "values": [ - "Freedom of religion and belief", - "Rights of the Child" - ] - }, - { - "text": "Strengthen and enhance existing laws countering different forms of discrimination, racism and xenophobia", - "values": [ - "Racial discrimination" - ] - }, - { - "text": "Carry on with ensuring the reduction of poverty and increasing the empowerment of women", - "values": [ - "Poverty", - "Women's rights" - ] - }, - { - "text": "Step up the accession process under way and the ratification of a number of international instruments, in particular ICERD, CAT and CRPD and the Optional Protocol thereto", - "values": [ - "Disabilities", - "International instruments", - "Racial discrimination", - "Torture and other CID treatment" - ] - }, - { - "text": "Appoint without further delay independent and qualified members of the whole national preventive mechanism to enable the mechanism to function in accordance with the aims and objectives of the Optional Protocol to the Convention against Torture", - "values": [ - "Detention", - "International instruments", - "Torture and other CID treatment" - ] - }, - { - "text": "Facilitate early passage of related legislation and ensure prompt preparation and implementation of the national human rights action plan ", - "values": [ - "General" - ] - }, - { - "text": "Guarantee the full legitimacy of human rights defenders and ensure their protection in order to spare them from the harassment that they have often endured", - "values": [ - "Human rights defenders" - ] - }, - { - "text": "Continue its efforts in promotion of well-being of people with the emphasis on the most vulnerable ones", - "values": [ - "Minorities" - ] - }, - { - "text": "Continue to deepen measures and plans to eradicate sexual and domestic violence, including strengthening awareness programmes to prevent this scourge", - "values": [ - "Human rights education and training", - "Rights of the Child", - "Women's rights" - ] - }, - { - "text": "Increase the resources allocated to the Gender Equality and Equal Treatment Commissioner as a matter of priority", - "values": [ - "Women's rights" - ] - }, - { - "text": "Continue to play an active role in international forums to fight racism and paedophilia", - "values": [ - "Racial discrimination", - "Rights of the Child" - ] - }, - { - "text": "Seek the assistance of ILO to combat child labour ", - "values": [ - "Labour", - "Rights of the Child", - "Technical assistance and cooperation" - ] - }, - { - "text": "Examine the possibilities for developing a legislative framework for the issue of compensation to war victims and a set of measures to overcome the problem of internally displaced persons ", - "values": [ - "Internally displaced persons" - ] - }, - { - "text": "Revoke article 567 from the Penal Code and remove any discrimination on the grounds of sexual orientation from all other laws and policies", - "values": [ - "Sexual Orientation and Gender Identity" - ] - }, - { - "text": "Ratify protocols as committed to, including the Optional Protocol to the Convention against Torture", - "values": [ - "International instruments", - "Torture and other CID treatment", - "Treaty bodies" - ] - }, - { - "text": "Enact the Child Protection Code", - "values": [ - "Rights of the Child" - ] - }, - { - "text": "It also commits to strengthen the capacities of institutions aimed at promotion and protection of human rights (National Commission on Human Rights and Ombudsman).", - "values": [ - "National Human Rights Institution" - ] - }, - { - "text": "Eliminate or cease enforcing laws impeding freedom of expression ", - "values": [ - "Freedom of opinion and expression" - ] - }, - { - "text": "Ensure inclusive quality education, including teacher training on pupils with special needs as well as mentoring and career guidance in order to decrease the amount of Roma students opting out early from the educational system", - "values": [ - "Minorities", - "Right to education", - "Rights of the Child" - ] - }, - { - "text": "Ratify CAT and the International Convention for the Protection of All Persons from Enforced Disappearance (CPED) ", - "values": [ - "Enforced disappearances", - "International instruments", - "Torture and other CID treatment" - ] - }, - { - "text": "Accede to the 1951 Convention relating to the Status of Refugees and its 1967 Protocol", - "values": [ - "Asylum-seekers - refugees", - "International instruments" - ] - }, - { - "text": "Ensure that the cases of violence against women and girls are duly investigated", - "values": [ - "Rights of the Child", - "Women's rights" - ] - }, - { - "text": "Enhance efforts to establish an independent national human rights institution in accordance with the Paris Principles", - "values": [ - "National Human Rights Institution" - ] - }, - { - "text": "Provide necessary legal protection and practical assistance for victims of violence against women ", - "values": [ - "Women's rights" - ] - }, - { - "text": "Adhere to international human rights instruments, which it is not yet a party to, notably the International Convention on the Protection of the Rights of All Migrant Workers and Members of Their Families ", - "values": [ - "International instruments", - "Labour", - "Migrants" - ] - }, - { - "text": "Remain on course as regards the fight against xenophobia and racism, inter alia, by providing appropriate education to people about the dangers of extremist and racist ideology, and by working to prevent radicalization of individuals drifting towards extremist groups ", - "values": [ - "Racial discrimination" - ] - }, - { - "text": "Ensure due process to all detainees. ", - "values": [ - "Detention" - ] - }, - { - "text": "Improve the education system and school textbooks and promote the full safeguarding of religious freedom and other human rights by programmes which, beginning in primary school and within the context of religious instruction, will educate everyone to respect their brothers in humanity", - "values": [ - "Freedom of religion and belief", - "Human rights education and training" - ] - }, - { - "text": "Continue its efforts for educational opportunities, vocational training and income-generating opportunities ", - "values": [ - "Right to education" - ] - }, - { - "text": "Take the necessary steps to ensure that journalists are able to operate without intimidation or interference.", - "values": [ - "Freedom of the press" - ] - }, - { - "text": "Adopt a comprehensive legislation to address human trafficking", - "values": [ - "Trafficking" - ] - }, - { - "text": "Pay particular attention to ensure that disaster management plans are continuously reviewed to ensure that the poorest sectors of the population do not suffer ", - "values": [ - "Environment", - "Poverty" - ] - }, - { - "text": "Deepen grass-roots democracy and better facilitate the right of the people to participate in the formulation and implementation of policies, such as the participation of political and social organizations in the field of human rights ", - "values": [ - "Freedom of association and peaceful assembly" - ] - }, - { - "text": "Take measures to eradicate all forms of police harassment and ill-treatment when police investigations are carried out, including facilitating effective access to justice to presumed victims, effective and prompt investigations and sanctioning those responsible.", - "values": [ - "Human rights violations by state agents" - ] - }, - { - "text": "Take further measures for ensuring appropriate protection of the human rights of the Bidoun population", - "values": [ - "Minorities" - ] - }, - { - "text": "Combat effectively against all discriminatory practices against women in its territory ", - "values": [ - "Women's rights" - ] - }, - { - "text": "Continue efforts to fight against discrimination, racism and hate speech", - "values": [ - "Racial discrimination" - ] - }, - { - "text": "Strengthen and broaden the mandate of the Austrian Ombudsman Board in order to include the protection and promotion of all human rights, in line with the Paris Principles ", - "values": [ - "National Human Rights Institution" - ] - }, - { - "text": "Continue its efforts with regard to the gender policy and, more concretely, specialize in programmes in the area of education against gender violence for professionals in law enforcement and the judiciary ", - "values": [ - "Human rights education and training", - "Women's rights" - ] - }, - { - "text": "Fully implement the signed peace agreement designed to end the nearly civil war in South Sudan", - "values": [ - "Other" - ] - }, - { - "text": "Develop awareness campaigns on equality and non-discrimination ", - "values": [ - "Human rights education and training" - ] - }, - { - "text": "Further strengthen natural resources management to end the diversion of profits to fund armed conflict. ", - "values": [ - "Other" - ] - }, - { - "text": "Consider the possibility of ratifying the Rome Statute of ICC, and fully harmonize its domestic legislation accordingly ", - "values": [ - "International instruments", - "Justice" - ] - }, - { - "text": "Make greater efforts to improve confidence in and access to justice within the country", - "values": [ - "Justice" - ] - }, - { - "text": "Adopt appropriate measures to prevent and eliminate excessive use of force and summary executions by security forces, and ensure that perpetrators are brought to justice", - "values": [ - "Extrajudicial executions", - "Human rights violations by state agents" - ] - }, - { - "text": "Take concrete measures to remedy the excessive use of force by security forces", - "values": [ - "Human rights violations by state agents" - ] - }, - { - "text": "Allocate additional funds to the National Human Rights Commission in order for it to effectively fulfil its mandate ", - "values": [ - "National Human Rights Institution" - ] - }, - { - "text": "Withdraw all reservations to CEDAW which undermine the compliance of its obligations or the purpose of the treaty", - "values": [ - "International instruments", - "Women's rights" - ] - }, - { - "text": "In line with the British Government commitment to the universality of human rights, prohibit the indefinite detention of migrants, seek alternatives to their detention and ensure that such detention is for the shortest possible duration ", - "values": [ - "Detention", - "Migrants" - ] - }, - { - "text": "Expand employment opportunities for women to cover government jobs which allow women to participate effectively in political life ", - "values": [ - "Women's rights" - ] - }, - { - "text": "Apply strict measures to stamp out corporal punishment in school and home settings", - "values": [ - "Rights of the Child", - "Torture and other CID treatment" - ] - }, - { - "text": "Continue its efforts aimed at eradication of illiteracy in rural areas", - "values": [ - "Right to education" - ] - }, - { - "text": "Take effective measures to combat hate speech in the media and on the internet, including by prosecuting the perpetrators, where appropriate, regardless of their official status", - "values": [ - "Racial discrimination" - ] - }, - { - "text": "Deploy further efforts in order to eradicate child labour, so as to better ensure full enjoyment of the rights of every child ", - "values": [ - "Labour", - "Rights of the Child" - ] - }, - { - "text": "Issue a standing invitation to the special procedures of the United Nations ", - "values": [ - "Special procedures" - ] - }, - { - "text": "Continue the promotion and protection of children's rights", - "values": [ - "Rights of the Child" - ] - }, - { - "text": "Continue its leadership in the Human Rights Council on human rights and environment, including through its support to the newly appointed Independent Expert on Human Rights and Environment", - "values": [ - "Environment", - "Special procedures" - ] - }, - { - "text": "Ensure equal access to the enjoyment of rights such as education, health, political participation, access to justice and integration into the labour market for indigenous and Afro-descendant populations", - "values": [ - "Indigenous peoples", - "Justice", - "Labour", - "Minorities", - "Right to education", - "Right to health" - ] - }, - { - "text": "Uphold its constitutional provisions guaranteeing freedom of worship", - "values": [ - "Freedom of religion and belief" - ] - }, - { - "text": "Amend legal provisions that criminalize some forms of sexual activity between consenting adults and decriminalize sexual activity between consenting adults.", - "values": [ - "Sexual Orientation and Gender Identity" - ] - }, - { - "text": "Develop a national strategy to guarantee better access to education to all children and to include in the school system, at all levels, appropriate measures in the field of human rights education, in accordance with the Plan of Action 2005-2009 of the World Programme for Human Rights Education", - "values": [ - "Human rights education and training", - "Right to education", - "Rights of the Child" - ] - }, - { - "text": "Facilitate access to the Judiciary, especially for indigenous persons ensuring that they are represented in public affairs", - "values": [ - "Indigenous peoples", - "Justice" - ] - }, - { - "text": "Ratify and implement in national law the outstanding core international human rights treaties, in particular OP-ICESCR and CED ", - "values": [ - "ESC rights - general", - "Enforced disappearances", - "International instruments" - ] - }, - { - "text": "Follow up the implementation of the programme drawn up by the Government with the assistance of UNDP to strengthen judicial departments, human rights and gender equity", - "values": [ - "Justice", - "Women's rights" - ] - }, - { - "text": "Continue its work to promote and protect the rights of children ", - "values": [ - "Rights of the Child" - ] - }, - { - "text": "Take, without delay, concrete measures for the full integration of persons with disabilities, in particular regarding access to employment, medical care reimbursement, and specific accommodation in public schools, public places and transportation", - "values": [ - "Disabilities", - "Right to education" - ] - }, - { - "text": "Take steps to strengthen the implementation of the National Women's Advancement Policy, including by removing its reservations to the CEDAW ", - "values": [ - "International instruments", - "Women's rights" - ] - }, - { - "text": "Redouble its efforts to end extrajudicial killings and ensure that those crimes are investigated promptly, thoroughly and impartially, and that alleged perpetrators are brought to justice", - "values": [ - "Extrajudicial executions", - "Human rights violations by state agents" - ] - }, - { - "text": "Raise the minimum age of criminal responsibility to 18 years and abolish child marriage by raising the age of marriage to 18", - "values": [ - "Rights of the Child" - ] - }, - { - "text": "Strengthen efforts to fight against female genital mutilations ", - "values": [ - "Rights of the Child", - "Torture and other CID treatment", - "Women's rights" - ] - }, - { - "text": "Implement all measures, including national awareness-raising campaigns, and efforts aimed at amending or eliminating patriarchal attitudes and stereotypes discriminating against women, including those based on the Chbab Srey ", - "values": [ - "Human rights education and training", - "Women's rights" - ] - }, - { - "text": "Take measures to reduce the length of pre-trial detention and to have more judges trained and employed to ease some of the existing backlog ", - "values": [ - "Detention" - ] - }, - { - "text": "Ensure greater transparency and broader public access to government information and official documents ", - "values": [ - "Freedom of opinion and expression" - ] - }, - { - "text": "Continue its endeavours to combat poverty and achieve prosperity", - "values": [ - "Poverty" - ] - }, - { - "text": "Enforce fully existing laws prohibiting violence against women and girls, including rape, female genital mutilation, domestic violence and violence against persons believed to be practicing witchcraft", - "values": [ - "Rights of the Child", - "Torture and other CID treatment", - "Women's rights" - ] - }, - { - "text": "Abolish the death penalty and ratify ICCPR-OP-2", - "values": [ - "Death penalty", - "International instruments" - ] - }, - { - "text": "Provide training for judges and prosecutors", - "values": [ - "Human rights education and training" - ] - }, - { - "text": "Consider adopting a general legal framework for the right to food, as a good practice and reference for developing countries", - "values": [ - "Right to food" - ] - }, - { - "text": "Respect the right of Palestinian refugees to return to their homelands and to be compensated for losses and damages incurred and to retrieve their properties in accordance with relevant United Nations resolutions and international law.", - "values": [ - "Freedom of movement", - "Right to land" - ] - }, - { - "text": "Strengthen its laws dealing with trafficking in persons", - "values": [ - "Trafficking" - ] - }, - { - "text": "Continue to strengthen efforts aimed at the further development of the cultures of Kazakhstan's ethnic communities", - "values": [ - "Minorities" - ] - }, - { - "text": "Ratify the International Convention on the Protection of the Rights of Migrant Workers and the members of their families ", - "values": [ - "International instruments", - "Labour", - "Migrants" - ] - }, - { - "text": "Consider timely ratification of the major international human rights instruments, including the International Convention for the Protection of All Persons from Enforced Disappearance (ICCPED) and the Convention on the Rights of Persons with Disabilities (CRPD)", - "values": [ - "Disabilities", - "Enforced disappearances", - "International instruments" - ] - }, - { - "text": "Withdraw the reservations issued to seven articles to the Convention relating to the Status of Refugees 1951 ", - "values": [ - "Asylum-seekers - refugees", - "International instruments" - ] - }, - { - "text": "Accelerate the process of judicial reforms with a view to ensure access to justice, especially to women and other vulnerable sections of the society", - "values": [ - "Justice", - "Women's rights" - ] - }, - { - "text": "Adopt legislative and policy measures to eradicate re-victimization in cases of trafficking and ensure adequate protection to victims, migrant workers in particular, regardless of their immigration status", - "values": [ - "Labour", - "Migrants", - "Trafficking" - ] - }, - { - "text": "Finalize the procedure of developing and adopting the Children's Bill", - "values": [ - "Rights of the Child" - ] - }, - { - "text": "Continue its efforts to implement the LLRC's recommendations of the National Action Plan", - "values": [ - "Justice" - ] - }, - { - "text": "Intensify the measures for gender equality and equal treatment, particularly regarding the rights of women and the integration of national minorities, in accordance with the commitment formulated in paragraph 160 of its national report and the recommendations of the Committee on the Elimination of Racial Discrimination and the Committee on the Elimination of Discrimination against Women", - "values": [ - "Minorities", - "Treaty bodies", - "Women's rights" - ] - }, - { - "text": "Fully implement the Law on ensuring equality of the rights and opportunities for women and men, in order to eliminate the gender equality gaps in all spheres of the society", - "values": [ - "Women's rights" - ] - }, - { - "text": "Ensure that the procedures governing registration of civil society organizations are in conformity with international human rights standards, transparent, nondiscriminatory, expeditious and inexpensive, and allow for the possibility to appeal ", - "values": [ - "Civil society", - "International instruments" - ] - }, - { - "text": "Accept the request made by the Special Rapporteur on freedom of religion or belief to visit Bhutan ", - "values": [ - "Freedom of religion and belief", - "Special procedures" - ] - }, - { - "text": "Continue the strengthening of the judicial power", - "values": [ - "Justice" - ] - }, - { - "text": "Develop an awareness-raising campaign in the rural, indigenous and Afro-descendant areas with the view of increasing the birth registration of these vulnerable groups ", - "values": [ - "Indigenous peoples", - "Rights of the Child", - "Statelessness and the right to nationality" - ] - }, - { - "text": "Protect the primary school education sector by maintaining adequate and appropriate budgets", - "values": [ - "Right to education" - ] - }, - { - "text": "Continue efforts to fight impunity for serious violations of human rights committed during the armed conflict", - "values": [ - "Impunity", - "International humanitarian law" - ] - }, - { - "text": "Continue to take effective policies to ensure adequate housing for all citizens and in particular for those in the lower income bracket", - "values": [ - "Right to housing" - ] - }, - { - "text": "Guarantee the physical integrity of all prisoners, improve conditions of detention in accordance with international standards and allow unhindered access by international monitors to all detention facilities ", - "values": [ - "Detention" - ] - }, - { - "text": "Review the law and practice related to the lengthy detention of asylum-seekers", - "values": [ - "Asylum-seekers - refugees" - ] - }, - { - "text": "Consolidate its national strategy for the reform of the penitentiary system in a manner that guarantees the rehabilitation and the prompt reintegration of minors into the society ", - "values": [ - "Detention", - "Rights of the Child" - ] - }, - { - "text": "Continue to forbid and punish torture and torture-related activities, taking all necessary measures to prevent such activity", - "values": [ - "Torture and other CID treatment" - ] - }, - { - "text": "Sign and ratify the International Covenant on Civil and Political Rights, the Convention against Torture and the International Convention on the Elimination of All Forms of Racial Discrimination", - "values": [ - "CP rights - general", - "International instruments", - "Racial discrimination", - "Torture and other CID treatment" - ] - }, - { - "text": "Consider ratifying the International Covenant on Civil and Political Rights", - "values": [ - "CP rights - general", - "International instruments" - ] - }, - { - "text": "Address the issue of the election of women to parliament (the Shura Council)", - "values": [ - "Women's rights" - ] - }, - { - "text": "Ensure the implementation of all the provisions of the International Covenant on Economic, Social and Cultural Rights, within the national legal system", - "values": [ - "ESC rights - general", - "International instruments" - ] - }, - { - "text": "Continue efforts in combating human trafficking and provide the necessary assistance to victims of trafficking ", - "values": [ - "Trafficking" - ] - }, - { - "text": "Fully respect the social and economic rights of all, including internally displaced persons, in line with its obligations under the ICESCR by following through on its commitments under the programme of the State Committee on Refugees and Internally Displaced Persons", - "values": [ - "ESC rights - general", - "Internally displaced persons", - "International instruments" - ] - }, - { - "text": "Accelerate procedures for adopting the draft national action plan to combat racism, racial discrimination, xenophobia and related intolerance", - "values": [ - "Racial discrimination" - ] - }, - { - "text": "Continue its efforts to develop a comprehensive migration policy with a human rights perspective ", - "values": [ - "Migrants" - ] - }, - { - "text": "Take further measures to improve the working possibilities and working conditions of the Palestinian refugees", - "values": [ - "Asylum-seekers - refugees", - "Labour" - ] - }, - { - "text": "Establish an independent national human rights institution in accordance with Paris Principles, to monitor compliance with international standards and to ensure coordination in implementing its human rights obligations between federal, state and local governments", - "values": [ - "National Human Rights Institution" - ] - }, - { - "text": "Raise the minimum age of criminal responsibility to 18, as provided by the Convention on the Rights of the Child", - "values": [ - "International instruments", - "Justice", - "Rights of the Child" - ] - }, - { - "text": "Step up the process under way to ensure its accession to all relevant human rights international instruments", - "values": [ - "International instruments" - ] - }, - { - "text": "Fully implement the National Gender Policy Action Plan", - "values": [ - "Women's rights" - ] - }, - { - "text": "Consider ratifying the International Convention on the Rights of all Migrant Workers and Their Families", - "values": [ - "International instruments", - "Labour", - "Migrants" - ] - }, - { - "text": "Continue efforts to ensure that the right to health can be enjoyed on a fair and equal basis by\neveryone in the country within the context of attaining the Millennium Development Goals, and\nimprove the training of medical and paramedical personnel", - "values": [ - "Right to health" - ] - }, - { - "text": "Consider additional policy measures to promote tolerance and non-discrimination on the grounds of sexual orientation.", - "values": [ - "Sexual Orientation and Gender Identity" - ] - }, - { - "text": "Welcomes Indonesia's reaffirmation of its commitment to combat impunity and encourages it to continue its efforts in this regard.", - "values": [ - "Impunity" - ] - }, - { - "text": "Adopt legislation and policies to promote greater participation of women in political life and representative bodies", - "values": [ - "Women's rights" - ] - }, - { - "text": "Ensure due investigation and prosecution of all alleged attacks against human rights defenders and independent journalists ", - "values": [ - "Freedom of the press", - "Human rights defenders" - ] - }, - { - "text": "Implement full the 2013 Public Benefits Organizations Act, and safeguard rights and space for civil society, in line with the Kenyan Constitution", - "values": [ - "Civil society", - "Freedom of association and peaceful assembly" - ] - }, - { - "text": "Ratify the Optional Protocol to the ICESCR as soon as possible ", - "values": [ - "ESC rights - general", - "International instruments" - ] - }, - { - "text": "Consult and involve NGOs as well as civil society in the follow-up to the UPR ", - "values": [ - "Civil society", - "UPR process" - ] - }, - { - "text": "Adopt measures to ensure the accessibility of persons with disabilities to places such as schools, hospitals, markets and public offices ", - "values": [ - "Disabilities" - ] - }, - { - "text": "Strengthen its system for monitoring, reporting and analyzing crimes of violence and discrimination against individuals based on grounds of sexual orientation or gender identity", - "values": [ - "Sexual Orientation and Gender Identity" - ] - }, - { - "text": "Develop education policies that ensure quality education, particularly for the poor, marginalized and vulnerable segments of its population, and request international assistance to that end", - "values": [ - "Right to education", - "Technical assistance and cooperation" - ] - }, - { - "text": "Take appropriate measures to ensure that the national human rights institution functions in compliance with the Paris Principles ", - "values": [ - "National Human Rights Institution" - ] - }, - { - "text": "Improve birth registration system and be supported by awareness- raising activities, in order to sustain the rise in registration numbers, especially in rural areas", - "values": [ - "Rights of the Child", - "Statelessness and the right to nationality" - ] - }, - { - "text": "Step up its efforts in order to improve the participation of the Roma minority in parliament, having in view the fact that one Roma candidate was elected in the parliamentary elections in 2012", - "values": [ - "Elections", - "Minorities" - ] - }, - { - "text": "Consider the possibility of ratifying the Optional Protocol to the CAT and the Rome Statute", - "values": [ - "Detention", - "International instruments", - "Justice", - "Torture and other CID treatment" - ] - }, - { - "text": "Fully investigate abuses and human rights violations by law enforcement officials in prisons and ensure that perpetrators are duly punished", - "values": [ - "Detention" - ] - }, - { - "text": "Expedite implementation of the law against Sexual Offences, and ensure coordinated implementation of the National Domestic Violence Policy ", - "values": [ - "Rights of the Child", - "Women's rights" - ] - }, - { - "text": "The early ratification and implementation of OP-CAT ", - "values": [ - "Detention", - "International instruments", - "Torture and other CID treatment" - ] - }, - { - "text": "Accede to the Second Optional Protocol to the International Covenant on Civil and Political Rights and establish without delay a de jure moratorium on executions with a view to permanently abolishing the death penalty", - "values": [ - "Death penalty", - "International instruments" - ] - }, - { - "text": "Take concrete measures to ensure necessary resources to increase effectiveness in the protection of rights of the child, including through effective monitoring of conditions in institutional care and establishing of a complaint mechanism for children, to develop and adjust new mechanisms for the protection of children based on serious research and wide piloting, and to create mechanisms to deliver foster care services", - "values": [ - "Rights of the Child" - ] - }, - { - "text": "Strengthen its efforts to increase women's participation in elected and appointed bodies at all levels of government", - "values": [ - "Elections", - "Women's rights" - ] - }, - { - "text": "Continue to support literacy programme for the eradication of illiteracy", - "values": [ - "Right to education" - ] - }, - { - "text": "Roll out the necessary measures for the oversight of activities of psychiatric hospitals and prayer camps in conformity with CRPD", - "values": [ - "Disabilities", - "International instruments" - ] - }, - { - "text": "Undertake further measures to protect social rights, including the rights of children, women and persons with disabilities", - "values": [ - "Disabilities", - "Rights of the Child", - "Women's rights" - ] - }, - { - "text": "Review its national legislation in order to ensure its compliance with freedom of expression, assembly and association, as guaranteed in articles 19, 21 and 22 of the International Covenant on\nCivil and Political Rights for example, article 193-1 of the Criminal Code - acting on behalf of a non-registered organization \n", - "values": [ - "Freedom of association and peaceful assembly", - "Freedom of opinion and expression", - "International instruments" - ] - }, - { - "text": "Become party to the International Convention on the Elimination of All Forms of Racial Discrimination ", - "values": [ - "International instruments", - "Racial discrimination" - ] - }, - { - "text": "Strengthen legislative measures and policies to improve prisons conditions", - "values": [ - "Detention" - ] - }, - { - "text": "Ratify the Optional Protocol to the Convention on the Rights of Persons with Disabilities", - "values": [ - "Disabilities", - "International instruments" - ] - }, - { - "text": "Step up adoption of necessary amendments to its legislation and the judicial practice in order to combat more effectively extremism, xenophobia and racism", - "values": [ - "Racial discrimination" - ] - }, - { - "text": "Consider including indigenous cultures in the national education plan with a view to promote respect for diversity ", - "values": [ - "Indigenous peoples", - "Right to education" - ] - }, - { - "text": "Release all persons including pro-reunification patriots who were unjustly arrested and imprisoned according to the "National Security Law"", - "values": [ - "Detention" - ] - }, - { - "text": "Raise the minimum age of criminal responsibility and provide adequate protection of child victims and witnesses of crime during trial", - "values": [ - "Justice", - "Rights of the Child" - ] - }, - { - "text": "To take steps to increase women's participation in society as well as to further secure the rights of women and girls", - "values": [ - "Rights of the Child", - "Women's rights" - ] - }, - { - "text": "Continue its efforts to eliminate threats, discrimination and violence against women and girls, by improving, inter alia, the implementation by the courts of the law criminalizing violence against women and the availability of legal assistance for all victims of domestic violence ", - "values": [ - "Rights of the Child", - "Women's rights" - ] - }, - { - "text": "Consider the possibility of abolishing the death penalty from its legal framework", - "values": [ - "Death penalty" - ] - }, - { - "text": "Positively consider ratification of the Optional Protocol to the Convention on the Elimination of All Forms of Discrimination against Women.", - "values": [ - "International instruments", - "Women's rights" - ] - }, - { - "text": "Ratify the Optional Protocol to the Rights of the Child on a communications procedure", - "values": [ - "International instruments", - "Rights of the Child" - ] - }, - { - "text": "Commute all death penalties, progressively reduce the number of offences punishable with death penalty and adopt subsequent measures to ensure its full abolition, including by acceding to ICCPR-OP2", - "values": [ - "Death penalty", - "International instruments" - ] - }, - { - "text": "Take prompt action against the use of excessive force by the police", - "values": [ - "Human rights violations by state agents" - ] - }, - { - "text": "Ensure the enjoyment of economic, social and cultural rights, with the purpose of attaining the MDGs ", - "values": [ - "ESC rights - general" - ] - }, - { - "text": "Prioritise the ratification of the Council of Europe Convention on preventing and combating violence against women and domestic Violence and continue efforts to combat domestic violence, including through actions aimed at raising public awareness on this issue", - "values": [ - "Human rights education and training", - "International instruments", - "Women's rights" - ] - }, - { - "text": "Modify the legislation to repeal criminal responsibility for activities that fall within the legitimate exercise of the freedom of expression, particularly on the Internet and Twitter", - "values": [ - "Freedom of opinion and expression" - ] - }, - { - "text": "Review detention conditions so that they are in conformity with the United Nations Standard Minimum Rules for the Treatment of Prisoners and that this be achieved before the publication of the third national report", - "values": [ - "Detention" - ] - }, - { - "text": "Continue its efforts in promoting gender equality including expanding the role of women in its national development ", - "values": [ - "Women's rights" - ] - }, - { - "text": "Restore functionality of the National Programme for the Protection of Human Rights Defenders", - "values": [ - "Human rights defenders" - ] - }, - { - "text": "Continue the work to enhance freedom of expression through the implementation of the law establishing the National Press Council", - "values": [ - "Freedom of opinion and expression" - ] - }, - { - "text": "Take the opportunity brought by the review process of the Constitution to include in statute the definitive abolition of the death penalty", - "values": [ - "Death penalty" - ] - }, - { - "text": "Persist investigating allegations of violence and ill-treatment by the Police Forces and ensure that international human rights standards are respected at all levels of public administration", - "values": [ - "Human rights violations by state agents", - "International instruments", - "Torture and other CID treatment" - ] - }, - { - "text": "That the gradual entry into force of the 2009 Law on Jury Trials be accompanied by substantial preparatory work with judges, together with awareness-raising, and with the inclusion of the human rights education in practice ", - "values": [ - "Human rights education and training", - "Justice" - ] - }, - { - "text": "Formally abolish the death penalty, as previously recommended", - "values": [ - "Death penalty", - "UPR process" - ] - }, - { - "text": "Fully respect the principle of non-refoulement and ensure effective access to asylum procedures for those fleeing human rights violations", - "values": [ - "Asylum-seekers - refugees" - ] - }, - { - "text": "Further secure girls' access to education, particularly in rural areas, as well as facilitate women's participation in the political, economic and social processes ", - "values": [ - "ESC rights - general", - "Right to education", - "Rights of the Child", - "Women's rights" - ] - }, - { - "text": "Continue its efforts to eliminate poverty and reduce disparities in the standards of living in urban and rural areas ", - "values": [ - "Poverty" - ] - }, - { - "text": "Develop focal points or specialized units on domestic violence, with trained and sensitized personnel, in police institutions throughout the whole country", - "values": [ - "Women's rights" - ] - }, - { - "text": "Repeal section 80 of its Penal Code and, generally, ensure the independence and freedom of the press", - "values": [ - "Freedom of the press" - ] - }, - { - "text": "Continue protecting vulnerable groups from the consequences of the austerity measures undertaken by the Portuguese Government in the framework of the economic and financial adjustment programme adopted in the past few years ", - "values": [ - "Other" - ] - }, - { - "text": "Establish an official coordination mechanism about the main human rights benchmarks and indicators in the National Action Plan for Human Rights", - "values": [ - "General" - ] - }, - { - "text": "Continue its efforts to deliver free education to all, and to ensure that women, children, persons with disabilities and other vulnerable groups are at the forefront of its efforts", - "values": [ - "Disabilities", - "Right to education", - "Rights of the Child", - "Women's rights" - ] - }, - { - "text": "Ratify the Rome Statute of the ICC, the 1951 Refugees Convention and its 1967 Protocol, as well as the Conventions on statelessness", - "values": [ - "Asylum-seekers - refugees", - "International instruments", - "Justice", - "Statelessness and the right to nationality" - ] - }, - { - "text": "Take necessary steps to guarantee the life, physical integrity and health of persons held in detention facilities, shelters or psychiatric hospitals", - "values": [ - "Detention", - "Right to health" - ] - }, - { - "text": "Take concrete steps to protect and promote freedom of expression and press freedom as outlined in the road map for ending the crisis", - "values": [ - "Freedom of opinion and expression", - "Freedom of the press" - ] - }, - { - "text": "Prioritize the need to become party to the following important human rights treaties, namely: ICERD, CAT and OP-CAT, ICRMW, and the Rome Statute, taking into account the fact that the Democratic People's Republic of Korea has already acceded to the Convention on the Prevention and Punishment of the Crime of Genocide, in 1989", - "values": [ - "International instruments" - ] - }, - { - "text": "Continue efforts aiming at empowering women, combating social and economic discrimination and protecting them from violence", - "values": [ - "Women's rights" - ] - }, - { - "text": "Establish independent and impartial investigations into all allegations of torture and other ill-treatment and bring perpetrators to justice ", - "values": [ - "Torture and other CID treatment" - ] - }, - { - "text": "Continue efforts to guarantee effective social coverage and all related services", - "values": [ - "ESC rights - general" - ] - }, - { - "text": "Reconsider the approval of the new provisions that can affect the rights of LGBT people, delinking homosexuality from pederasty, and in any case, avoid that the provisions be applied in a discriminatory form ", - "values": [ - "Sexual Orientation and Gender Identity" - ] - }, - { - "text": "Continue pursuing appropriate policies, such as the Action Programme to Eliminate Child Labour in Namibia 2008-2012, in particular with regard to ILO Convention No. 182 concerning the Prohibition and Immediate Action for the Elimination of the Worst Forms of Child Labour, to address the phenomenon of child labour ", - "values": [ - "International instruments", - "Labour", - "Rights of the Child" - ] - }, - { - "text": "Continue its efforts to integrate the adult Roma population in the labour market and the Roma children and young people in the regular education system", - "values": [ - "Labour", - "Minorities", - "Right to education", - "Rights of the Child" - ] - }, - { - "text": "Work with WHO and ILO to improve levels of sanitation, hygiene and maternal health care in order to reduce the spread of communicable diseases ", - "values": [ - "Right to health", - "Right to water and sanitation", - "Technical assistance and cooperation", - "Women's rights" - ] - }, - { - "text": "Combat tax evasion and strengthen the tax collection system in order to fund development projects and improve the delivery of services", - "values": [ - "Corruption", - "Development" - ] - }, - { - "text": "Participate and contribute in human rights activities at national and international levels and draw on best practices that can be incorporated into relevant domestic policies and legislations. ", - "values": [ - "General" - ] - }, - { - "text": "Intensify measures to avoid discrimination against women and to combat violence against them", - "values": [ - "Women's rights" - ] - }, - { - "text": "Take the necessary measures for the inclusion of human rights in educational programmes", - "values": [ - "Human rights education and training" - ] - }, - { - "text": "Effectively implement the national policy to reduce violence against women ", - "values": [ - "Women's rights" - ] - }, - { - "text": "In light of concerns about the situation of human rights in Xinjiang and Tibet, respond to the invitation addressed to the Special Rapporteur on freedom of religion or belief to visit these regions", - "values": [ - "Freedom of religion and belief", - "Special procedures" - ] - }, - { - "text": "Should ratify CMW ", - "values": [ - "International instruments", - "Migrants" - ] - }, - { - "text": "Harmonize national laws with international regulations on rights of women and children", - "values": [ - "Rights of the Child", - "Women's rights" - ] - }, - { - "text": "Repeal criminal legislation that provides for the death penalty and commute the death sentences already issued by imprisonment, or, if not, keep the existing de facto moratorium ", - "values": [ - "Death penalty" - ] - }, - { - "text": "Reinstate all employees and students dismissed following the events of February and March 2011 whose political activities were consistent with the right to freedom of peaceful assembly and of association, and amend Law 21/1989 and Law 32/2006 on public gathering to bring their provisions into compliance with article 21 and 22 of ICCPR, and develop an enabling legal environment for civil society to flourish", - "values": [ - "Civil society", - "Freedom of association and peaceful assembly", - "International instruments" - ] - }, - { - "text": "Establish a comprehensive legal framework in such a manner that the provisions of the CRC and its Optional Protocols will be fully incorporated ", - "values": [ - "International instruments", - "Rights of the Child" - ] - }, - { - "text": "Adopt legislation prohibiting practices of violence affecting Congolese women in line with CEDAW and eradicate female genital mutilation. ", - "values": [ - "International instruments", - "Rights of the Child", - "Torture and other CID treatment", - "Women's rights" - ] - }, - { - "text": "Intensify its efforts to prevent, punish and eliminate all forms of violence against women ", - "values": [ - "Women's rights" - ] - }, - { - "text": "Abrogate or amend section 377 of the Penal Code to guarantee non-discrimination on the grounds of sexual orientation or gender identity ", - "values": [ - "Sexual Orientation and Gender Identity" - ] - }, - { - "text": "Take steps to expedite public access to information through the right to information bill ", - "values": [ - "Freedom of opinion and expression" - ] - }, - { - "text": "Adopt measures to guarantee the rights of the Rohingya refugees who are in Bangladesh, applying the principle of non-refoulement and allowing NGOs to carry out their work regarding refugees ", - "values": [ - "Asylum-seekers - refugees", - "Civil society", - "Freedom of religion and belief", - "Minorities" - ] - }, - { - "text": "Continue further improvement of the promotion and protection of human rights in the country", - "values": [ - "General" - ] - }, - { - "text": "Proceed with the ratification of instruments that have not yet been ratified and accelerate the process of withdrawing reservations in order to ensure the fullest enjoyment of human rights for the population", - "values": [ - "International instruments" - ] - }, - { - "text": "Adopt a family code", - "values": [ - "Rights of the Child", - "Women's rights" - ] - }, - { - "text": "Review the way National Human Rights Commission members are appointed to ensure its independence", - "values": [ - "National Human Rights Institution" - ] - }, - { - "text": "Provide due access by migrants, asylum seekers and refugees to health care and other protection systems, such as education and employment services", - "values": [ - "Asylum-seekers - refugees", - "Labour", - "Migrants", - "Right to education", - "Right to health" - ] - }, - { - "text": "Ensure that adequate resources are allocated for the effective implementation of its comprehensive national human rights action plans ", - "values": [ - "General" - ] - }, - { - "text": "Continue the development of policies to fight hate speech", - "values": [ - "Racial discrimination" - ] - }, - { - "text": "Establish a national human rights commission", - "values": [ - "National Human Rights Institution" - ] - }, - { - "text": "Adopt a definition of torture under Swedish law that conforms to the definition under the Convention against Torture", - "values": [ - "International instruments", - "Torture and other CID treatment" - ] - }, - { - "text": "Adopt all necessary measures to comprehensively implement the Protocol to Prevent, Suppress and Punish Trafficking in Persons, Especially Women and Children", - "values": [ - "Rights of the Child", - "Trafficking", - "Women's rights" - ] - }, - { - "text": "The Cuban Government remains strongly committed to continuing to issue invitations to visit the country to the special mandate holders of the Human Rights Council established on a non-discriminatory basis", - "values": [ - "Special procedures" - ] - }, - { - "text": "Reform and adapt its laws, regulations and practices relating to the right to assembly, association, movement or expression and freedom of expression in accordance with international standards", - "values": [ - "Freedom of association and peaceful assembly", - "Freedom of movement", - "Freedom of opinion and expression" - ] - }, - { - "text": "Intensify awareness-raising with regard to violence against women, ensuring that perpetrators are speedily brought to justice, as well as eliminating discriminatory provisions with regard to family life and marriage in the Civil Code", - "values": [ - "Human rights education and training", - "Women's rights" - ] - }, - { - "text": "Take concrete steps to protect its LGBT citizens and their freedom of assembly and expression ", - "values": [ - "Freedom of association and peaceful assembly", - "Freedom of opinion and expression", - "Sexual Orientation and Gender Identity" - ] - }, - { - "text": "Adopt sectoral plans for the promotion of human rights in order to promote the human rights of vulnerable groups such as women, children and persons with disabilities ", - "values": [ - "Disabilities", - "Rights of the Child", - "Women's rights" - ] - }, - { - "text": "Put an end to overcrowding and bad prison conditions, by building new prison facilities and restricting the use of pretrial detention", - "values": [ - "Detention" - ] - }, - { - "text": "Consider acceding to or ratifying the Second Optional Protocol to the International Covenant on Civil and Political Rights, aiming at the abolition of the death penalty", - "values": [ - "Death penalty", - "International instruments" - ] - }, - { - "text": "Quickly establish the Constitutional Court and expedite the revision of laws that are incompatible with the Constitution and international human rights standards", - "values": [ - "Justice" - ] - }, - { - "text": "Consider making additional efforts to facilitate equal access to judicial and administrative remedies for people of African descent and of indigenous origin ", - "values": [ - "Indigenous peoples", - "Justice", - "Minorities" - ] - }, - { - "text": "Reinforce its policies and develop specific programs aimed at preventing and effectively responding to domestic violence against women, including cases of rape within the family", - "values": [ - "Women's rights" - ] - }, - { - "text": "Consider positively signing core human rights treaties to which it is not yet a party", - "values": [ - "International instruments" - ] - }, - { - "text": "Continue efforts to enhance the operational effectiveness of its national human rights institutions as well as strengthen activities to promote education and awareness of human rights", - "values": [ - "Human rights education and training", - "National Human Rights Institution" - ] - }, - { - "text": "Removing existing legislative barriers for access to gender reassignment-related treatments", - "values": [ - "Right to health", - "Sexual Orientation and Gender Identity" - ] - }, - { - "text": "Pay extra attention to the special needs of women prisoners by considering implementing the Bangkok rules ", - "values": [ - "Detention", - "Women's rights" - ] - }, - { - "text": "Continue progressing in the implementation of the recommendations of the Action Plan of the National Reconciliation Mechanism", - "values": [ - "Justice" - ] - }, - { - "text": "Ensure that the use of force is based on the principles of legality, necessity and proportionality", - "values": [ - "Human rights violations by state agents" - ] - }, - { - "text": "Intensify its efforts to establish National Human Rights Institution in compliance with the Paris Principles", - "values": [ - "National Human Rights Institution" - ] - }, - { - "text": "Continue its efforts to take further action to prohibit discrimination in employment and take further measures to reduce unemployment, especially among immigrants", - "values": [ - "Development", - "Migrants", - "Racial discrimination" - ] - }, - { - "text": "Further address the agenda of social economic development, focusing especially on the poverty reduction program with the active support of the international community, in order to contribute further to achievements of human rights", - "values": [ - "Development", - "Poverty", - "Technical assistance and cooperation" - ] - }, - { - "text": "Noting that HIV is one of the greatest maladies affecting the population in Barbados, and as this has a negative impact on the entire country, continue to strengthen capacities to combat the spread of HIV", - "values": [ - "HIV - Aids" - ] - }, - { - "text": "Open the information space in the Democratic People's Republic of Korea so that all its people have access to information of their choice and the possibility to impart it freely without fear of reprisals", - "values": [ - "Freedom of opinion and expression" - ] - }, - { - "text": "Address the growing problem of pretrial detentions and prison conditions", - "values": [ - "Detention" - ] - }, - { - "text": "Consider ratifying the Convention against Torture and other Cruel, Inhuman or Degrading Treatment or Punishment", - "values": [ - "International instruments", - "Torture and other CID treatment" - ] - }, - { - "text": "Step up its efforts to combat the trafficking in persons and to formulate a national plan of action to prevent such trafficking", - "values": [ - "Trafficking" - ] - }, - { - "text": "Exercise due diligence to prevent, deter, investigate and punish those accountable for violence against women and girls", - "values": [ - "Rights of the Child", - "Women's rights" - ] - }, - { - "text": "Accept and ratify the Convention against Discrimination in Education", - "values": [ - "International instruments", - "Right to education" - ] - }, - { - "text": "Continue to take strong actions, including appropriate judicial measures, to counter all forms of discrimination and hate crimes, in particular those based on religion and ethnicity", - "values": [ - "Freedom of religion and belief", - "Justice", - "Minorities", - "Racial discrimination" - ] - }, - { - "text": "Eliminate the death penalty in the new anti-corruption law, repeal the provision that extended the use of the death penalty to economic crimes, and ratify the Second Optional Protocol to the International Covenant on Civil and Political Rights, aiming at the abolition of the death penalty", - "values": [ - "Death penalty", - "International instruments" - ] - }, - { - "text": "Carry out further efforts to increase the transparency and openness of legal proceedings contemplating death sentences", - "values": [ - "Death penalty" - ] - }, - { - "text": "Ensure that all girls, including pregnant girls and young mothers, can complete minimum levels of education in a safe environment", - "values": [ - "Right to education", - "Rights of the Child", - "Women's rights" - ] - }, - { - "text": "Take concrete steps, especially in regions displaying a high prevalence, to eliminate harmful customary practices, such as FGM, prohibited by law ", - "values": [ - "Rights of the Child", - "Torture and other CID treatment", - "Women's rights" - ] - }, - { - "text": "Finalise the adoption of the Domestic Violence Bill and ensure that perpetrators of domestic violence are held to account", - "values": [ - "Rights of the Child", - "Women's rights" - ] - }, - { - "text": "Continue the adoption and implementation of administrative legal measures for the protection of journalists and human rights defenders, and ensure that the perpetrators of violence against them are referred to the courts", - "values": [ - "Freedom of the press", - "Human rights defenders" - ] - }, - { - "text": "Spare no effort to expedite the establishment of an independent national human rights institution ", - "values": [ - "National Human Rights Institution" - ] - }, - { - "text": "Step up cooperation with the Human Rights Council, OHCHR, special procedures and treaty bodies to address the remaining human rights challenges identified in Eritrea's report ", - "values": [ - "Special procedures", - "Technical assistance and cooperation", - "Treaty bodies" - ] - }, - { - "text": "Ensure the safety of journalists and independence of the media, including in the run-up to the elections, and the rigorous implementation of the Organic Law of 22 June 2010 on freedom of the press", - "values": [ - "Elections", - "Freedom of the press" - ] - }, - { - "text": "Stop collaborating with Daesh, the Nusrah Front and other terrorist organizations", - "values": [ - "Other" - ] - }, - { - "text": "Increase official development assistance to the United Nations target of 0.7 per cent of GDP", - "values": [ - "Development" - ] - }, - { - "text": "Review national and local legislation, including provincial by-laws, to ensure that freedom of religion and belief is universally protected", - "values": [ - "Freedom of religion and belief" - ] - }, - { - "text": "Consider accession to the Convention on the Prevention and Punishment of the Crime of Genocide ", - "values": [ - "International instruments", - "Justice" - ] - }, - { - "text": "Continue working to guarantee the human rights of women, who continue being victims of abuses and restrictions of their freedoms", - "values": [ - "Women's rights" - ] - }, - { - "text": "Pursue efforts to address concerns regarding child labour, in particular through its Action Programme to Eliminate Child Labour in Namibia 2008-2012 ", - "values": [ - "Labour", - "Rights of the Child" - ] - }, - { - "text": "Build upon the existing structures and strengthen the protection of victims of human trafficking, but also address the root causes of this phenomenon and involve preventative measures", - "values": [ - "Trafficking" - ] - }, - { - "text": "Implement institutional reforms to abolish current provisions on the death penalty ", - "values": [ - "Death penalty" - ] - }, - { - "text": "Pursue efforts to prevent and eradicate gender-based violence, including domestic violence, raising awareness among society, ensuring due diligence regarding the prosecution and judgment of perpetrators and providing relevant training to the competent authorities on the protection and prevention of violence against women and girls", - "values": [ - "Human rights education and training", - "Rights of the Child", - "Women's rights" - ] - }, - { - "text": "Continue to train and improve the level of education and awareness of the judiciary and law enforcement bodies in the field of human rights ", - "values": [ - "Human rights education and training" - ] - }, - { - "text": "Consider ratification of the Second Optional Protocol to the International Covenant on Civil and Political Rights with a view to a de jure abolishing of the death penalty", - "values": [ - "Death penalty", - "International instruments" - ] - }, - { - "text": "Take steps to bring the definition of torture in line with the requirements of the Convention against Torture and Other Cruel, Inhuman or Degrading Treatment or Punishment", - "values": [ - "International instruments", - "Torture and other CID treatment" - ] - }, - { - "text": "Seek necessary technical assistance from OHCHR, other relevant UN agencies and funds with a view to effectively implement its key national priorities for 2009-2014 related to health, education, land reform and food security ", - "values": [ - "Right to education", - "Right to food", - "Right to land", - "Technical assistance and cooperation" - ] - }, - { - "text": "Continue to promote just and fair implementation of the Sharia Penal Code through adequate training and capacity building ", - "values": [ - "Justice" - ] - }, - { - "text": "Accede to instruments which are conducive to making an effective contribution to combating corruption, to support the Strategic Plan for Transparency, Ethics and the Prevention of Corruption 2009-2012 - in particular consider the possibility of taking inspiration from existing models of institutions in certain countries to establish a body to combat corruption and to accede to the United Nations Convention against Corruption ", - "values": [ - "Corruption", - "International instruments" - ] - }, - { - "text": "Invite the Special Rapporteur on torture to visit the country", - "values": [ - "Special procedures", - "Torture and other CID treatment" - ] - }, - { - "text": "Conduct a comprehensive and transparent investigation into all human rights violations in the context of the fight against terrorism, in particular, the complicity of the Polish authorities with lengthy secret detention of persons, their secret transfer and a possible use of torture against them. To bring to justice the officials involved in such violations ", - "values": [ - "Counter-terrorism", - "Detention", - "Human rights violations by state agents" - ] - }, - { - "text": "Continue its poverty reduction measures through the universal social protection system", - "values": [ - "ESC rights - general", - "Poverty" - ] - }, - { - "text": "Amend, in accordance with CEDAW, discriminatory provisions vis-a-vis women contained in the Civil and Penal Code, and more generally take necessary measures to promote equality of women and men in the realms of family, economy and policy.", - "values": [ - "International instruments", - "Women's rights" - ] - }, - { - "text": "Release all political prisoners unconditionally, and remove conditions on those already released", - "values": [ - "Detention", - "Freedom of opinion and expression" - ] - }, - { - "text": "Adopt and implement efficient measures with a view to eliminate the discrimination against women, including pursuing appropriate public awareness-raising campaigns against the customary social stereotypes", - "values": [ - "Human rights education and training", - "Women's rights" - ] - }, - { - "text": "Extend to other federative entities, the categorization of the crime of forced disappearance and the full compensation mechanism for victims and members of their families", - "values": [ - "Enforced disappearances" - ] - }, - { - "text": "Invite the Special Rapporteur on torture and other mandate holders to conduct independent and impartial investigations ", - "values": [ - "Special procedures", - "Torture and other CID treatment" - ] - }, - { - "text": "Restart the four-party Maputo process talks with the goal of establishing an inclusive transitional Government that would prepare the country for free and fair elections and a return to democratic and constitutional rule", - "values": [ - "Elections", - "Justice" - ] - }, - { - "text": "Continue strengthening its efforts to promote and protect the rights of children in Malaysia", - "values": [ - "Rights of the Child" - ] - }, - { - "text": "Extend a standing invitation to human rights mechanisms to visit the country and to support national efforts in these areas", - "values": [ - "Special procedures" - ] - }, - { - "text": "Continue to strengthen 15 sectors identified for effective implementation of the Sustainable Development Goals ", - "values": [ - "Development" - ] - }, - { - "text": "Adopt urgently measures to protect all children from the impact of the conflict, prohibit the recruitment, kidnapping, abuse and sexual violence of children by parties to the conflict and punish perpetrators of these violations", - "values": [ - "International humanitarian law", - "Rights of the Child" - ] - }, - { - "text": "Adhere to the International Covenant on Economic, Social and Cultural Rights.", - "values": [ - "ESC rights - general", - "International instruments" - ] - }, - { - "text": "Ensure that no one is detained for political reasons ", - "values": [ - "Detention", - "Freedom of opinion and expression" - ] - }, - { - "text": "Commute all death sentences to prison sentences", - "values": [ - "Death penalty" - ] - }, - { - "text": "Continue its efforts to complete the accession to the relevant instruments such as the International Covenant on Civil and Political Rights", - "values": [ - "CP rights - general", - "International instruments" - ] - }, - { - "text": "Guarantee the conformity of the national Human Rights Commission with the Paris Principles, strengthen its independence and protect its members against reprisals and intimidation", - "values": [ - "National Human Rights Institution" - ] - }, - { - "text": "Exhaust international assistance for building institutional capacities that are responsible for human rights", - "values": [ - "Technical assistance and cooperation" - ] - }, - { - "text": "Continue to implement the advice of the important United Nations treaty bodies", - "values": [ - "Treaty bodies" - ] - }, - { - "text": "Establish a moratorium on executions with a view to the definitive abolition of the death penalty", - "values": [ - "Death penalty" - ] - }, - { - "text": "Expedite the process of granting citizenship to those minorities, including the Rohingyas, who consider Myanmar as home", - "values": [ - "Freedom of religion and belief", - "Minorities", - "Statelessness and the right to nationality" - ] - }, - { - "text": "Proceed to ratify CRPD ", - "values": [ - "Disabilities", - "International instruments" - ] - }, - { - "text": "Step up measures to combat the scourge of prostitution and trafficking in women and girls, including by conducting more nationwide awareness campaigns and training for law enforcement officials, migration officials and border police.", - "values": [ - "Human rights education and training", - "Rights of the Child", - "Trafficking", - "Women's rights" - ] - }, - { - "text": "Adopt a new action plan, to promote equality and prevent ethnic discrimination, as well as prevent and combat discrimination against persons from immigrant backgrounds ", - "values": [ - "Migrants", - "Racial discrimination" - ] - }, - { - "text": "Provide the police and armed forces with clear instructions and the necessary training so that they act in accordance with international human rights norms, in particular with regard to extrajudicial executions, torture and ill-treatment, arbitrary detentions and acts of intimidation", - "values": [ - "Detention", - "Extrajudicial executions", - "Human rights education and training", - "International instruments", - "Torture and other CID treatment" - ] - }, - { - "text": "Amend the Law of Association to allow the associations to join international coalitions without the approval of the Ministry of Social Development ", - "values": [ - "Freedom of association and peaceful assembly" - ] - }, - { - "text": "Consider extending a standing invitation to special procedures mandate holders", - "values": [ - "Special procedures" - ] - }, - { - "text": "Enhance cooperation with other countries and organs and funds of the United Nations to increase the number of financial and technical programmes aimed at strengthening the capacity of Vanuatu in the area of human rights.", - "values": [ - "Technical assistance and cooperation" - ] - }, - { - "text": "Ensure that persons with albinism are protected against discrimination", - "values": [ - "Minorities" - ] - }, - { - "text": "Take concrete steps to put in place adequate legal protections against incitement of hatred, including hatred motivated by xenophobia and homophobia, in line with the international and domestic obligations of Bulgaria", - "values": [ - "Racial discrimination" - ] - }, - { - "text": "Incorporate fully, as a matter of urgency, the principles and provisions of the CRC into domestic law ", - "values": [ - "International instruments", - "Rights of the Child" - ] - }, - { - "text": "Enact relevant legislation to provide for necessary autonomy and independence of the National Human Rights Commission in accordance with the decision of the Supreme Court of Nepal", - "values": [ - "National Human Rights Institution" - ] - }, - { - "text": "Adopt the measures necessary to protect and demobilize minors forcibly recruited as combatants, so that those responsible for such acts are brought to justice", - "values": [ - "International humanitarian law", - "Rights of the Child" - ] - }, - { - "text": "Continue to implement and build on efforts to address female genital mutilation/cutting, including by engaging state and non-state stakeholders in dialogue on education, programming, and legislation needed to eliminate this harmful practice and advance gender equality", - "values": [ - "Human rights education and training", - "Rights of the Child", - "Torture and other CID treatment", - "Women's rights" - ] - }, - { - "text": "Increase efforts to reinforce the participation of women in decision making posts", - "values": [ - "Women's rights" - ] - }, - { - "text": "Continue to pursue reforms intended to ensure the independence of the judiciary and make judicial processes more transparent and efficient ", - "values": [ - "Justice" - ] - }, - { - "text": "Ensure that all detainees are charged with an offense established under the law and receive a fair trial before the ordinary criminal courts, in conformity with international standards ", - "values": [ - "Detention", - "Justice" - ] - }, - { - "text": "Consider expediting steps to ratify the International Covenant on Civil and Political Rights, the International Covenant on Economic, Social and Cultural Rights, the Convention on the Elimination of All Forms of Discrimination against Women and the Convention on the Rights of Persons with Disabilities, which are treaties that Saint Lucia accepted in the first cycle review to become a party to", - "values": [ - "CP rights - general", - "Disabilities", - "ESC rights - general", - "International instruments", - "UPR process", - "Women's rights" - ] - }, - { - "text": "Take steps to develop the necessary laws, policies and programmes to progressively meet its obligations under the Convention on the Rights of Persons with Disabilities, including by ensuring access to all public facilities", - "values": [ - "Disabilities", - "International instruments" - ] - }, - { - "text": "Speed up finalization and adoption of the National Policy and Action Plan on Human Rights, which would provide a concrete national framework for the promotion and protection of human rights in Kenya", - "values": [ - "General" - ] - }, - { - "text": "Continue to place emphasis on promoting universal access to education and improving the quality of its education system", - "values": [ - "Right to education" - ] - }, - { - "text": "Continue to work for strengthening its human rights infrastructure in cooperation with relevant United Nations human rights organs ", - "values": [ - "General" - ] - }, - { - "text": "Continue to apply the strategies and socio-economic development plans designed to reduce poverty", - "values": [ - "Development", - "Poverty" - ] - }, - { - "text": "Continue its efforts in alleviating poverty through health, education and housing programmes and in developing enabling legislation to ensure the human rights of vulnerable groups", - "values": [ - "Poverty", - "Right to education", - "Right to health", - "Right to housing" - ] - }, - { - "text": "Repeal regional laws and regulations which promote discrimination on grounds of sexual orientation, and abstain from passing similar legislation at the federal level", - "values": [ - "Sexual Orientation and Gender Identity" - ] - }, - { - "text": "Redouble efforts so that positive results in the area of economic, social and cultural rights reach the most vulnerable populations on an equal footing, in particular minorities, indigenous and African-descended peoples and rural populations ", - "values": [ - "ESC rights - general", - "Indigenous peoples", - "Minorities" - ] - }, - { - "text": "Investigate allegations of manipulation and abuse concerning the registration of political parties ", - "values": [ - "Freedom of association and peaceful assembly" - ] - }, - { - "text": "Continue to strengthen educational system and ensuring equal access of disabled children to education", - "values": [ - "Disabilities", - "Right to education", - "Rights of the Child" - ] - }, - { - "text": "Continue to engage international and regional partners to seek technical and other assistance towards its full compliance with its human rights treaties obligations", - "values": [ - "International instruments", - "Technical assistance and cooperation" - ] - }, - { - "text": "Upgrade the efficiency and the skills of teachers ", - "values": [ - "Right to education" - ] - }, - { - "text": "Sign, ratify and implement into its national legislation key human rights treaties, such as ICCPR and ICESCR", - "values": [ - "CP rights - general", - "ESC rights - general", - "International instruments" - ] - }, - { - "text": "Ratify the Convention on the Non-Applicability of Statutory Limitations to War Crimes and Crimes against Humanity ", - "values": [ - "International instruments", - "Justice" - ] - }, - { - "text": "Pursue efforts aimed at the prohibition of all forms of slavery by strengthening the resources of the National Commission for the Elimination of Slavery", - "values": [ - "Other" - ] - }, - { - "text": "Take all necessary measures to end discrimination and violence against women and girls", - "values": [ - "Rights of the Child", - "Women's rights" - ] - }, - { - "text": "Ensure satisfactory prosecution of cases of gender-based violence, in particular by increasing the number of competent personnel working in the judiciary system and the Public Prosecutor's office to combat violence against women and girls and by implementing a national plan for the prevention of gender-based violence and by ensuring that all relevant government departments collect and publish disaggregated data and statistics on violence against women and girls \n\n", - "values": [ - "Rights of the Child", - "Women's rights" - ] - }, - { - "text": "Continue completing the process of reforming the justice system and guarantee the independence of the judiciary in accordance with the relevant constitutional requirements", - "values": [ - "Justice" - ] - }, - { - "text": "Incorporate a legal definition of the child, a minimum age for criminal responsibility and sexual consent, and enforce the law on the minimum age of marriage, as recommended by the Committee on the Rights of the Child, and develop and implement national legislation which criminalizes and penalizes the distribution, sale and display of child pornography", - "values": [ - "Rights of the Child", - "Treaty bodies" - ] - }, - { - "text": "Provide for the comprehensive protection and promotion of all human rights and fundamental freedoms within the envisaged constitutional reform ", - "values": [ - "General" - ] - }, - { - "text": "Ensure sufficient safe and secure housing for asylum seekers ", - "values": [ - "Asylum-seekers - refugees", - "Right to housing" - ] - }, - { - "text": "Ratify the ICCPR, the ICESCR, as well as their protocols", - "values": [ - "CP rights - general", - "Death penalty", - "ESC rights - general", - "International instruments" - ] - }, - { - "text": "Ensure the protection of and right to family life on the premise that family is the natural and fundamental group of society based upon the stable relationship between a man and a woman ", - "values": [ - "Other" - ] - }, - { - "text": "Continue to give due attention to the situation of minorities, in particular to the situations regarding discrimination based on multiple grounds. Sweden should continue to take necessary measures to ensure full and effective implementation of its legislation on national minorities", - "values": [ - "Minorities", - "Racial discrimination" - ] - }, - { - "text": "Align national legislation with the international standards to guarantee freedom of assembly and association, in particular as regards the notification of the organization of peaceful assemblies", - "values": [ - "Freedom of association and peaceful assembly" - ] - }, - { - "text": "Ratify other core human rights treaties, particularly the International Covenant on Civil and Political Rights and the International Covenant on Economic, Social and Cultural Rights ", - "values": [ - "CP rights - general", - "ESC rights - general", - "International instruments" - ] - }, - { - "text": "Take further measures to adopt a comprehensive anti-discrimination legislation, aiming at eliminating discrimination against women, especially women from minority groups, women with disabilities, migrant women and women asylum seekers", - "values": [ - "Asylum-seekers - refugees", - "Disabilities", - "Migrants", - "Minorities", - "Women's rights" - ] - }, - { - "text": "Establish a national human rights institution, in accordance with the Paris Principles.", - "values": [ - "National Human Rights Institution" - ] - }, - { - "text": "Ratify the Optional Protocol to the CRPD ", - "values": [ - "Disabilities", - "International instruments" - ] - }, - { - "text": "Strengthen its measures to prevent and combat xenophobia and racial prejudice among politicians, public officials and the general public, in line with the recommendation of the CERD ", - "values": [ - "Racial discrimination", - "Treaty bodies" - ] - }, - { - "text": "Strengthen efforts in eliminating discrimination and violence against women, also by raising the awareness of the general public and training officials in judiciary and law enforcement at all levels that will include human rights of women ", - "values": [ - "Human rights education and training", - "Women's rights" - ] - }, - { - "text": "Strengthen its policy for the full guarantee of the rights of the child, with attention to the implementation of the Guidelines for the Alternative Care of Children, according to resolution 11-7 of the Human Rights Council and resolution 64-142 of the General Assembly ", - "values": [ - "Rights of the Child" - ] - }, - { - "text": "Ensure that members of the political opposition, civil society organizations as well as journalists are free to express their views and opinions, including guarantees for their rights to freedom of assembly ", - "values": [ - "Civil society", - "Freedom of association and peaceful assembly", - "Freedom of the press", - "Human rights defenders" - ] - }, - { - "text": "Speed up the adoption process of the draft bill setting up a 30 per cent quota for the representation of women in decision-making bodies ", - "values": [ - "Women's rights" - ] - }, - { - "text": "will examine whether to ratify the UNESCO Convention against Discrimination in Education following a study of possible legal implications", - "values": [ - "International instruments", - "Right to education" - ] - }, - { - "text": "That development aid must not be tied to conditionalities that do not take into account the traditional values of recipient countries ", - "values": [ - "Development" - ] - }, - { - "text": "Ratify without any limiting reservations the Convention on the Elimination of All Forms of Discrimination against Women and its Optional Protocol, as well as repeal all laws that discriminate against women ", - "values": [ - "International instruments", - "Women's rights" - ] - }, - { - "text": "Take measures to allow legal and safe abortions in cases of rape or incest and in cases of risk to the woman's life or health ", - "values": [ - "Women's rights" - ] - }, - { - "text": "Implement the recommendations of the Human Rights Committee regarding the full independence and impartiality of the judiciary", - "values": [ - "International instruments", - "Justice" - ] - }, - { - "text": "Strengthen its democratic election processes through the effective implementation of recommendations from the final report of the European Union Election Observation Mission to Tunisia in 2014", - "values": [ - "Elections" - ] - }, - { - "text": "Introduce comprehensive anti-discrimination legislation, including discrimination based on sexual orientation or gender identity", - "values": [ - "Sexual Orientation and Gender Identity" - ] - }, - { - "text": "Consider the promotion and protection of the rights of peasants and other people working in rural areas", - "values": [ - "Other" - ] - }, - { - "text": "Abolish all discriminatory laws which still exist in relation to women in the Democratic Republic of the Congo", - "values": [ - "Women's rights" - ] - }, - { - "text": "Take effective measures to encourage the registration of customary marriages and to grant the spouses and children of registered customary marriages the same rights as those married under civil law ", - "values": [ - "Rights of the Child", - "Women's rights" - ] - }, - { - "text": "Step up its efforts to appoint the members of the national authority and ensure the effective exercise of its functions", - "values": [ - "Other" - ] - }, - { - "text": "Take all the necessary measures to eliminate discrimination based on sexual orientation and gender identity", - "values": [ - "Sexual Orientation and Gender Identity" - ] - }, - { - "text": "Fully abolish the death penalty and ratify the Second Optional Protocol to the ICCPR", - "values": [ - "Death penalty", - "International instruments" - ] - }, - { - "text": "In the light of its national realities, to continue to implement the policy of strictly controlling and applying the death penalty", - "values": [ - "Death penalty" - ] - }, - { - "text": "Withdraw the discriminatory provisions contained in their Family Code and adopt the draft law on gender equality", - "values": [ - "Women's rights" - ] - }, - { - "text": "Include the fight against xenophobia and racism in the education curricula.", - "values": [ - "Racial discrimination", - "Right to education" - ] - }, - { - "text": "Ratify the Optional Protocol to the Convention on the Elimination of all forms of Discrimination against Women", - "values": [ - "International instruments", - "Women's rights" - ] - }, - { - "text": "Promote social security and labour policy ", - "values": [ - "Labour" - ] - }, - { - "text": "Free all persons imprisoned on the grounds of their sexual orientation ", - "values": [ - "Sexual Orientation and Gender Identity" - ] - }, - { - "text": "Translate into Thai and make public the recommendations received during its UPR and broadly engage civil society in the process of follow-up and implementation of accepted recommendations", - "values": [ - "Civil society", - "UPR process" - ] - }, - { - "text": "Continue the procedure of establishing the national human rights institution in accordance with the Paris Principles ", - "values": [ - "National Human Rights Institution" - ] - }, - { - "text": "Ratify the Convention on the Prevention and Punishment of the Crime of Genocide", - "values": [ - "International instruments", - "Justice" - ] - }, - { - "text": "Undertake effective measures to combat poor detention conditions", - "values": [ - "Detention" - ] - }, - { - "text": "Continue to improve its comprehensive framework by introducing the definition of "torture" in compliance with article 1 of the Convention against Torture", - "values": [ - "International instruments", - "Torture and other CID treatment" - ] - }, - { - "text": "Ensure enhancement of the status of women in the Emirates' society by eliminating all forms of discrimination which may persist with regard to arrangements of divorce and the ways in which domestic violence is dealt with ", - "values": [ - "Women's rights" - ] - }, - { - "text": "Take all appropriate measures to ensure that all reported cases of enforced disappearance are thoroughly investigated", - "values": [ - "Enforced disappearances" - ] - }, - { - "text": "Extend invitations in particular to the Special Rapporteur on the question of torture and the Special Rapporteur on freedom of opinion and expression.", - "values": [ - "Freedom of opinion and expression", - "Special procedures", - "Torture and other CID treatment" - ] - }, - { - "text": "Review and repeal domestic law which criminalizes sexual orientation", - "values": [ - "Sexual Orientation and Gender Identity" - ] - }, - { - "text": "Actively support the promotion and universal implementation of the human right to safe drinking water and sanitation in accordance with the recommendations made by the Human Rights Council in its various resolutions on this issue", - "values": [ - "Right to water and sanitation" - ] - }, - { - "text": "Accede to ICCPR and ICESCR as well as the International Convention for the Protection of All Persons from Enforced Disappearance (CED) ", - "values": [ - "CP rights - general", - "ESC rights - general", - "Enforced disappearances", - "International instruments" - ] - }, - { - "text": "Reconsider consequences of the death penalty to the society and to take steps to reduce the number of crimes which carry death penalty as sanction, and secondly, to introduce a moratorium on the death penalty that would be followed by abolition", - "values": [ - "Death penalty" - ] - }, - { - "text": "Continue with actions aimed at eliminating all forms of violence against women and girls ", - "values": [ - "Rights of the Child", - "Women's rights" - ] - }, - { - "text": "Provide adequate financial and human resources towards the promotion of the right to education and that of the rights of the child, as a whole ", - "values": [ - "Right to education", - "Rights of the Child" - ] - }, - { - "text": "Ensure that the death penalty is not applied to persons below the age of 18 years, in conformity with the Convention on the Rights of the Child, ratified by Maldives", - "values": [ - "Death penalty", - "International instruments", - "Rights of the Child" - ] - }, - { - "text": "Adopt measures to guarantee the religious freedom and integrity of believers and their places of worship, regardless of their creed", - "values": [ - "Freedom of religion and belief" - ] - }, - { - "text": "Make efforts to include in its legislation a prohibition of all forms of corporal punishment of children ", - "values": [ - "Rights of the Child", - "Torture and other CID treatment" - ] - }, - { - "text": "Take all necessary measures to significantly decrease the level of maternal mortality", - "values": [ - "Right to health", - "Women's rights" - ] - }, - { - "text": "Continue its efforts to accelerate the achievement of the MDGs targets ", - "values": [ - "Development" - ] - }, - { - "text": "Appeal to the international community to take into account difficulties and challenges faced in promoting human rights and to increase financial and technical assistance for capacity-building.", - "values": [ - "Technical assistance and cooperation" - ] - }, - { - "text": "Take all steps to improve prisoners' condition. ", - "values": [ - "Detention" - ] - }, - { - "text": "Consider ratifying the outstanding core international human rights treaties ", - "values": [ - "International instruments" - ] - }, - { - "text": "Develop a national strategy to eliminate all discriminatory practices against women, conduct awareness campaigns to eliminate inequality and abolish the practice of female genital mutilation, and ensure access to education for all women and girls", - "values": [ - "Human rights education and training", - "Right to education", - "Rights of the Child", - "Torture and other CID treatment", - "Women's rights" - ] - }, - { - "text": "Review its domestic legislation with a view to aligning it with the provisions of the human rights instruments that it has ratified", - "values": [ - "International instruments" - ] - }, - { - "text": "Strengthen measures to improve the welfare and conditions of detention of children in conflict with the law ", - "values": [ - "Rights of the Child" - ] - }, - { - "text": "To step up its current efforts aiming at strengthening women participation in the political and economic life of the country", - "values": [ - "Women's rights" - ] - }, - { - "text": "Increase the level of its official development aid to achieve the internationally set level of 0.7 per cent of GDP", - "values": [ - "Development" - ] - }, - { - "text": "Consider becoming party to the 3rd CRC Optional Protocol on a communications procedure", - "values": [ - "International instruments", - "Rights of the Child" - ] - }, - { - "text": "Step up its efforts to enhance women's participation at the decision-making level in both public and private sectors in line with the progress made in women's education", - "values": [ - "Women's rights" - ] - }, - { - "text": "Limit the use of detention of migrants and asylum seekers, especially when families with young children are concerned ", - "values": [ - "Asylum-seekers - refugees", - "Migrants", - "Rights of the Child" - ] - }, - { - "text": "Accomplish human rights voluntary goals as established by Human Rights Council resolution 9-12, including the ratification of the Convention on the Rights of Persons with Disabilities and the Optional Protocol thereto", - "values": [ - "Disabilities", - "International instruments" - ] - }, - { - "text": "With international support, undertake further programmes for human rights training and capacity-building to train relevant institutions of law enforcement and justice in the area of human rights, and introduce human rights in the education system at all levels.", - "values": [ - "Human rights education and training", - "Justice", - "Right to education", - "Technical assistance and cooperation" - ] - }, - { - "text": "Take all measures to protect journalists in the fulfilment of their mission by implementing the provisions of the new Press Code which criminalize aggressions against them ", - "values": [ - "Freedom of the press" - ] - }, - { - "text": "Ensure universal access to safe drinking water and sanitation ", - "values": [ - "Right to water and sanitation" - ] - }, - { - "text": "Protect persons, particularly women and children, against violence, exploitation and abuse", - "values": [ - "Rights of the Child", - "Women's rights" - ] - }, - { - "text": "Eliminate factors preventing boys and girls to enjoy secondary school education and reduce the dropout of school rate", - "values": [ - "Right to education", - "Rights of the Child" - ] - }, - { - "text": "Recommended further cooperation with special procedures.", - "values": [ - "Special procedures" - ] - }, - { - "text": "Take measures to promote greater participation and representation of women in public positions, especially in politics", - "values": [ - "Women's rights" - ] - }, - { - "text": "Incorporate robust provisions for the protection of human rights in the new Constitution, including articles on the prevention of discrimination and protection of minorities ", - "values": [ - "Minorities", - "Racial discrimination" - ] - }, - { - "text": "Take all the necessary measures to ensure prompt, thorough and impartial investigations into allegations of torture and ill-treatment ", - "values": [ - "Torture and other CID treatment" - ] - }, - { - "text": "Establish an effective and independent national human rights institution in 2015", - "values": [ - "National Human Rights Institution" - ] - }, - { - "text": "Continue the work in the field of the promotion of the rights of women and adopt all the recommendations made by the Truth and Reconciliation Commission in this area ", - "values": [ - "Justice", - "Women's rights" - ] - }, - { - "text": "Diversify interventions in order to decrease the incidence of poverty", - "values": [ - "Poverty" - ] - }, - { - "text": "Take appropriate steps to fully align national legislation with all obligations under the Rome Statute, including by adopting specific provisions aimed at thorough and expeditious cooperation with the Court ", - "values": [ - "International instruments", - "Justice" - ] - }, - { - "text": "Reduce government influence and control over the internet as part of a broader commitment to freedom of expression ", - "values": [ - "Freedom of opinion and expression" - ] - }, - { - "text": "Step up efforts aimed at providing adequate assistance and protection to all victims of human trafficking ", - "values": [ - "Trafficking" - ] - }, - { - "text": "Deepen awareness measures regarding the fight against discrimination, in particular by ensuring the investigation and punishment of acts of a discriminatory nature", - "values": [ - "Racial discrimination" - ] - }, - { - "text": "Adopt federal legislation in order to provide protection against all forms of discrimination, including on grounds of sexual orientation and gender identity", - "values": [ - "Sexual Orientation and Gender Identity" - ] - }, - { - "text": "Stop building settlements in the Arab occupied territories and implement the United Nations decisions in this regard", - "values": [ - "Other" - ] - }, - { - "text": "Consider the possibility of acceding to and/or ratifying the Convention against Torture and Other Cruel, Inhuman or Degrading Treatment or Punishment and its Optional Protocol ", - "values": [ - "Detention", - "International instruments", - "Torture and other CID treatment" - ] - }, - { - "text": "Establish national mechanisms guaranteeing full protection for women, reinforcing the necessary competencies and budget and the National Institute for Women and recognizing the legal character of the Municipal Women's Offices ", - "values": [ - "Women's rights" - ] - }, - { - "text": "Ratify without further delay the Optional Protocol to the Convention against Torture and Other Cruel, Inhuman or Degrading Treatment", - "values": [ - "Detention", - "International instruments", - "Torture and other CID treatment" - ] - }, - { - "text": "Specifically criminalize enforced disappearances in the penal code and reinforce the capacities of the Pakistanis Inquiry Commission on Enforced Disappearances in order that the Commission can fully carry out its mission", - "values": [ - "Enforced disappearances" - ] - }, - { - "text": "Abolish as soon as possible the death penalty in the 35 Federal States where this brutal practice is authorized ", - "values": [ - "Death penalty" - ] - }, - { - "text": "Ensure the full enjoyment of human rights by women and girls, including through public awareness-raising and measures to improve investigation and prosecution of sexual and gender-based violence", - "values": [ - "Human rights education and training", - "Rights of the Child", - "Women's rights" - ] - }, - { - "text": "Further progress in the eradication of the female genital mutilation and reaffirm its prohibition", - "values": [ - "Rights of the Child", - "Torture and other CID treatment", - "Women's rights" - ] - }, - { - "text": "Ensure that migrant and asylum-seeking women receive adequate assistance", - "values": [ - "Asylum-seekers - refugees", - "Migrants", - "Women's rights" - ] - }, - { - "text": "Continue to point special attention to the prevention of the emergence of the situation which might lead to conflicts on ethnic and religious basis", - "values": [ - "Freedom of religion and belief", - "Minorities" - ] - }, - { - "text": "Continue to request technical assistance and financial support to improve education services, to redraft the Kingdom's Constitution, and its activities in the promotion of human rights.", - "values": [ - "Right to education", - "Technical assistance and cooperation" - ] - }, - { - "text": "Submit the overdue reports in connection with the implementation of the International Convention on the Elimination of Racial Discrimination ", - "values": [ - "International instruments", - "Racial discrimination", - "Treaty bodies" - ] - }, - { - "text": "Undertake further efforts to eliminate child labour and to protect juvenile workers ", - "values": [ - "Labour", - "Rights of the Child" - ] - }, - { - "text": "Spare no effort to face and mitigate the consequences of climate change and natural disasters", - "values": [ - "Environment" - ] - }, - { - "text": "Ratify Second Optional Protocol to the International Covenant on Civil and Political Rights, aiming at the abolition of the death penalty", - "values": [ - "Death penalty", - "International instruments" - ] - }, - { - "text": "Investigate all cases of arbitrary and illegal detentions with all due diligence.", - "values": [ - "Detention" - ] - }, - { - "text": "Step up efforts to address gender wage gaps", - "values": [ - "Women's rights" - ] - }, - { - "text": "Develop and implement programmes to eradicate the worst forms of child labour, such as mining of rivers and brick factories", - "values": [ - "Business and human rights", - "Labour", - "Rights of the Child" - ] - }, - { - "text": "Take more efforts to prevent children from sexual exploitation and separation from families, and give them the opportunity and assistance to grow up in an environment of freedom and dignity ", - "values": [ - "Rights of the Child" - ] - }, - { - "text": "Step up measures of awareness-raising on gender-based violence to promote the prevention of this phenomenon", - "values": [ - "Human rights education and training", - "Women's rights" - ] - }, - { - "text": "Establish a national human rights institution accredited by the International Coordinating Committee of National Institutions for the Promotion and Protection of Human Rights, in line with the Paris Principles ", - "values": [ - "National Human Rights Institution" - ] - }, - { - "text": "Implement measures to facilitate access to health care and education, particularly for the most vulnerable populations", - "values": [ - "Right to education", - "Right to health" - ] - }, - { - "text": "Strengthen and deepen interaction with relevant international human rights mechanisms.", - "values": [ - "General" - ] - }, - { - "text": "Criminalize all acts of discrimination directed against Roma persons", - "values": [ - "Minorities", - "Racial discrimination" - ] - }, - { - "text": "Take steps to guarantee full and effective recognition of sexual and reproductive rights, notably through the decriminalization of voluntary interruption of pregnancy", - "values": [ - "Women's rights" - ] - }, - { - "text": "Intensify efforts to protect environmental, indigenous and land rights defenders, in line with the Declaration on Human Rights Defenders, especially regarding the use of force and firearms at public assemblies and protests", - "values": [ - "Freedom of association and peaceful assembly", - "Human rights defenders" - ] - }, - { - "text": "Introduce human rights education to increase the awareness of people about all sets of human rights ", - "values": [ - "Human rights education and training" - ] - }, - { - "text": "Consider ratifying the Optional Protocol to the Convention on the Elimination of All Forms of Discrimination against Women ", - "values": [ - "International instruments", - "Women's rights" - ] - }, - { - "text": "In light of the upcoming elections, implement electoral laws in line with applicable international standards of the OSCE Organization for Democratic Institutions and Human Rights recommendations, and recommendations of the Commonwealth of Independent States Election Observation Mission ", - "values": [ - "Elections" - ] - }, - { - "text": "Bring national legislation in accordance with international standards to fully guarantee freedom of expression, association and assembly", - "values": [ - "Freedom of association and peaceful assembly", - "Freedom of opinion and expression" - ] - }, - { - "text": "Take the steps to abolish the death penalty under the law.", - "values": [ - "Death penalty" - ] - }, - { - "text": "Develop reliable statistics on the number of children belonging to the Roma, Ashkali and Egyptian minorities in the Montenegrin school system.", - "values": [ - "Minorities", - "Right to education", - "Rights of the Child" - ] - }, - { - "text": "Continue towards the abolition of death penalty", - "values": [ - "Death penalty" - ] - }, - { - "text": "Continue to effectively address issues such as poor access to education and health systems for persons with disabilities", - "values": [ - "Disabilities", - "Right to education", - "Right to health" - ] - }, - { - "text": "Continue efforts to promote and protect rights of minorities, especially with regard to the Roma ", - "values": [ - "Minorities" - ] - }, - { - "text": "Accede to the Hague Convention on the Protection of Children and Co-operation in Respect of Intercountry Adoption", - "values": [ - "International instruments", - "Rights of the Child" - ] - }, - { - "text": "Disseminate the culture of human Rights through school curricula", - "values": [ - "Human rights education and training" - ] - }, - { - "text": "Adapt its legislation to ensure that all arrested and detained persons can swiftly appear before a judge and in conformity with international law", - "values": [ - "Detention" - ] - }, - { - "text": "Adopt a more holistic approach to combating modern slavery, through systematic case referral and improved coordination between law enforcement agencies, in line with the Call to Action that Ghana endorsed on 17 September 2017 in New York", - "values": [ - "Other" - ] - }, - { - "text": "Effectively investigate and prosecute crimes and violations against human rights defenders and journalists ", - "values": [ - "Freedom of the press", - "Human rights defenders" - ] - }, - { - "text": "Create and maintain a safe and enabling environment for civil society, human rights defenders and journalists", - "values": [ - "Civil society", - "Freedom of the press", - "Human rights defenders" - ] - }, - { - "text": "Abolish the death penalty and, during an intermediate stage, adoptan immediate moratorium on executions", - "values": [ - "Death penalty" - ] - }, - { - "text": "Take necessary measures to increase the percentage of women in decision-making positions", - "values": [ - "Women's rights" - ] - }, - { - "text": "Continue resisting attempts to enforce any values or standards beyond the universally agreed ones.", - "values": [ - "Other" - ] - }, - { - "text": "Make progress in the modifications of relevant laws to include a concept of disability in accordance with the Convention on the Rights of Persons with Disabilities", - "values": [ - "Disabilities", - "International instruments" - ] - }, - { - "text": "Take appropriate legislative and administrative measures to fight against domestic violence and physical abuse of children, and engage in an exchange of information with those countries that are developing best practices in these fields.", - "values": [ - "Rights of the Child" - ] - }, - { - "text": "Provide an adequate training to prison staff and ensure that the perpetrators are held accountable for their actions, in order to prevent human rights violations", - "values": [ - "Detention" - ] - }, - { - "text": "Adopt necessary measures to prevent violations of human rights and international humanitarian law within the framework of military operations", - "values": [ - "International humanitarian law" - ] - }, - { - "text": "Strengthen measures aimed at preventing and eliminating discrimination on the basis of race and ethnicity", - "values": [ - "Minorities", - "Racial discrimination" - ] - }, - { - "text": "Ratify the Convention against Torture and Other Cruel, Inhuman or Degrading Treatment or Punishment, the International Convention for the Protection of All Persons from Enforced Disappearance, and the International Convention on the Protection of the Rights of All Migrant Workers and Members of Their Families", - "values": [ - "Enforced disappearances", - "International instruments", - "Labour", - "Migrants", - "Torture and other CID treatment" - ] - }, - { - "text": "Adopt measures to decriminalise consensual sexual acts among adults of the same sex so as to adapt its legislation to the International Covenant on Civil and Political Rights ", - "values": [ - "International instruments", - "Sexual Orientation and Gender Identity" - ] - }, - { - "text": "Strengthen efforts to restrict the outbreaks of racism and xenophobia, especially the manifestations of racism on the Internet, as was recommended by CERD ", - "values": [ - "Racial discrimination", - "Treaty bodies" - ] - }, - { - "text": "Continue public awareness programmes against corporal punishment of children in schools", - "values": [ - "Rights of the Child", - "Torture and other CID treatment" - ] - }, - { - "text": "Take measures to safeguard the right to an adequate standard of living, including by expediting the return of Croatian Serbs to their homes and by upholding commitments under the regional housing programme", - "values": [ - "Right to housing" - ] - }, - { - "text": "Continue its efforts to eliminate all forms of sex and gender-based discrimination throughout the educational system", - "values": [ - "Right to education", - "Rights of the Child", - "Women's rights" - ] - }, - { - "text": "Redouble efforts to prevent and eliminate racial discrimination, xenophobia and the intolerance against migrants, refugees and asylum seekers", - "values": [ - "Asylum-seekers - refugees", - "Migrants", - "Racial discrimination" - ] - }, - { - "text": "Apply provisions of its hate-speech law in a non-selective manner to cover all acts and incidents that may lead to incitement to racial and religious hatred and violence", - "values": [ - "Freedom of religion and belief", - "Racial discrimination" - ] - }, - { - "text": "Continue to seek international assistance to sustain its efforts aimed at the promotion and protection of human rights, in line with its national policies ", - "values": [ - "Technical assistance and cooperation" - ] - }, - { - "text": "Investigate fully all allegations of torture and cruel, inhuman or degrading treatment impartially, thoroughly and within a timely manner and ensure those responsible are brought to justice", - "values": [ - "Torture and other CID treatment" - ] - }, - { - "text": "Ratification of the Optional Protocol to CEDAW, which reflects the clear vision of Tunisia and its sustained efforts to further promote women's status and to safeguard and consolidate their rights", - "values": [ - "International instruments", - "Women's rights" - ] - }, - { - "text": "Continue to promote the development of the education system ", - "values": [ - "Right to education" - ] - }, - { - "text": "Develop and implement a national plan of action to combat poverty ", - "values": [ - "Poverty" - ] - }, - { - "text": "Launch a political consultation aimed at discussing the modalities for the abolition of the death penalty", - "values": [ - "Death penalty" - ] - }, - { - "text": "Attach greater priority to protection and aid programmes for victims of the crisis and vulnerable social groups, especially orphans, abandoned children and displaced persons ", - "values": [ - "Internally displaced persons", - "Rights of the Child" - ] - }, - { - "text": "Ratify all core international human rights treaties, most notably the International Covenant on Economic, Social and Cultural Rights ", - "values": [ - "ESC rights - general", - "International instruments" - ] - }, - { - "text": "Seek to effectively combat child labour by means of, inter alia, enforcing compulsory education, as stipulated in national policies", - "values": [ - "Labour", - "Rights of the Child" - ] - }, - { - "text": "Raise the minimum age of criminal responsibility (which is now: 7 years)", - "values": [ - "Justice", - "Rights of the Child" - ] - }, - { - "text": "Prevent violence against Roma women and girls, including their harassment at school, and fill the gaps in Roma women's formal education ", - "values": [ - "Minorities", - "Right to education", - "Rights of the Child", - "Women's rights" - ] - }, - { - "text": "Abolish the death penalty and accede to ICCPR-OP2", - "values": [ - "Death penalty", - "International instruments" - ] - }, - { - "text": "Protect gender identity and expression under anti-discriminatory laws and policies ", - "values": [ - "Sexual Orientation and Gender Identity" - ] - }, - { - "text": "Continue efforts to fight impunity and human rights violations, with particular attention to the rights of indigenous peoples.", - "values": [ - "Impunity", - "Indigenous peoples" - ] - }, - { - "text": "Strengthen efforts to encourage the naturalisation of eligible noncitizens", - "values": [ - "Statelessness and the right to nationality" - ] - }, - { - "text": "Carry out actions to protect the rights of migrants and their families", - "values": [ - "Migrants" - ] - }, - { - "text": "Honduras recognized that the review was an opportunity for the strengthening of its national capacities and to guide it in addressing its immediate challenges, in particular with regard to its voluntary commitments, including the following: (a) Starting the process for the preparation and drafting of the national human rights plan of action with the participation of thematic working groups, organizations of civil society, interested groups and institutions with a mandate to promote and protect human rights, (b) Generating a debate in the National Congress and civil society with a view to harmonizing the regulatory framework of the Telecommunications Sector Law and ensuring that it is was line with the international human rights conventions and standards, in particular with regard to the levels of public, private and community broadcasting, (c) Promoting the reform of article 209-A of the Criminal Code, referring to the offence of torture, with a view to harmonizing it with the Optional Protocol to the Convention against Torture, (d) Promoting discussion of the draft law against trafficking in persons and sexual and commercial exploitation, which prohibited and punished all forms of such offences, in accordance with the relevant Protocol, (e) Increasing the efforts of the State to improve conditions for citizen security, considering as priority elements attention to victims of violence and crime, arms control, the professionalization and modernization of the national police and armed forces, and making accountable all authorities responsible for the implementation of the policy and strategy on citizen security.", - "values": [ - "International instruments" - ] - }, - { - "text": "Fully respect freedom of expression, opinion, association and peaceful assembly in accordance with Angola's obligations under the International Covenant on Civil and Political Rights", - "values": [ - "Freedom of association and peaceful assembly", - "Freedom of opinion and expression", - "International instruments" - ] - }, - { - "text": "Establish an immediate moratorium on the death penalty with a view to its permanent abolition", - "values": [ - "Death penalty" - ] - }, - { - "text": "Take further steps to prevent and protect Aboriginal women and children from all forms of violence ", - "values": [ - "Indigenous peoples", - "Rights of the Child", - "Women's rights" - ] - }, - { - "text": "Continue creating conditions for the effective realization of economic, social and cultural rights in the country", - "values": [ - "ESC rights - general", - "General" - ] - }, - { - "text": "Take all measures which may contribute to combat female genital mutilation ", - "values": [ - "Rights of the Child", - "Torture and other CID treatment", - "Women's rights" - ] - }, - { - "text": "Continue efforts to reduce juvenile violence and address the root causes of the problem.", - "values": [ - "Rights of the Child" - ] - }, - { - "text": "Ensure the rights of indigenous peoples, peasants and other people working in rural areas", - "values": [ - "Indigenous peoples" - ] - }, - { - "text": "Fully implement the recommendations of the United Nations study on violence against children", - "values": [ - "Rights of the Child" - ] - }, - { - "text": "Ratify ICCPR and ICESCR", - "values": [ - "CP rights - general", - "ESC rights - general", - "International instruments" - ] - }, - { - "text": "Redouble its efforts to improve the basic standard of living including health and the education system", - "values": [ - "Right to education", - "Right to health" - ] - }, - { - "text": "Step up efforts to respond to questionnaires sent by special procedures mandate holders, and report to the United Nations treaty bodies in a more timely manner in order to thus fulfil its international obligations", - "values": [ - "Special procedures", - "Treaty bodies" - ] - }, - { - "text": "Ratify or accede, as appropriate, to the First Optional Protocol to the International Covenant on Civil and Political Rights, the Optional Protocol to the Convention against Torture and Other Cruel, Inhuman or Degrading Treatment or Punishment, the Optional Protocol to the International Covenant on Economic, Social and Cultural Rights as well as the International Convention for the Protection of All Persons from Enforced Disappearance", - "values": [ - "CP rights - general", - "Detention", - "ESC rights - general", - "Enforced disappearances", - "International instruments", - "Torture and other CID treatment" - ] - }, - { - "text": "Discontinue the limitations on civil society activities, including the short-term detention of political activists ", - "values": [ - "Civil society", - "Detention", - "Freedom of opinion and expression", - "Human rights defenders" - ] - }, - { - "text": "Adopt measures to strengthen the protection of freedom of expression, information and the press.", - "values": [ - "Freedom of opinion and expression", - "Freedom of the press" - ] - }, - { - "text": "Take all necessary measures to effectively fight against torture and ill-treatment, particularly in places of detention, by creating an independent national preventive mechanism and ratifying the Optional Protocol to the Convention against Torture", - "values": [ - "Detention", - "International instruments", - "Torture and other CID treatment" - ] - }, - { - "text": "Consider ratifying the Migrant Workers Convention ", - "values": [ - "International instruments", - "Labour", - "Migrants" - ] - }, - { - "text": "Take effective measures to combat poverty ", - "values": [ - "Poverty" - ] - }, - { - "text": "Establish promptly, as provided in the Constitution, a constitutional court with competency, inter alia, to review the compatibility of the national law with the international human rights instruments", - "values": [ - "International instruments" - ] - }, - { - "text": "Take all the necessary measures to combat violence linked to racial discrimination, as well as hate crimes and speeches, including against refugees and migrants", - "values": [ - "Asylum-seekers - refugees", - "Migrants", - "Racial discrimination" - ] - }, - { - "text": "Seize the practice of closing, suspending or blocking opposition print publication and online sources and ensure equitable enjoyment of freedom of expression and peaceful assembly", - "values": [ - "Freedom of association and peaceful assembly", - "Freedom of opinion and expression" - ] - }, - { - "text": "Reconsider the practice of confiscating the passports of migrants who bring to the courts a dispute with their employers, or consider an emergency judicial procedure which makes it possible to fully guarantee the rights of migrant workers on its territory ", - "values": [ - "Labour", - "Migrants" - ] - }, - { - "text": "Implement the policy of return of the confiscated properties to the Armenians and other religious minorities, such as places of worship, including monasteries, church properties and religious and cultural sites through close consultations with their legal owners", - "values": [ - "Freedom of religion and belief", - "Minorities" - ] - }, - { - "text": "Take necessary measures to tackle hate speech carried out by politicians targeting members of minorities, migrants, asylum seekers, refugees and so on", - "values": [ - "Asylum-seekers - refugees", - "Migrants", - "Minorities", - "Racial discrimination" - ] - }, - { - "text": "Adopt all necessary measures to provide for free and independent media which reflect a plurality of opinions, including those of minority groups and political opposition parties ", - "values": [ - "Freedom of the press", - "Minorities" - ] - }, - { - "text": "Take further steps to increase women's empowerment, including in political and economic life, and through local and national implementation of effective measures to address domestic violence and gender discrimination ", - "values": [ - "Women's rights" - ] - }, - { - "text": "Immediately prohibit the death penalty and immediately prohibit its application to minors ", - "values": [ - "Death penalty" - ] - }, - { - "text": "Continue efforts and measures aimed at enhancing social security and labour policies, and expand the development model in rural areas", - "values": [ - "Development", - "Labour" - ] - }, - { - "text": "Guarantee access to legal abortions in all jurisdictions throughout the country, supported by publicity campaigns on the right to legally interrupt pregnancy in cases provided for by law, as well as training for health-care workers", - "values": [ - "Women's rights" - ] - }, - { - "text": "Uphold its international human rights obligation and constitutionally provided rights of freedom of expression, including freedom of the press, to all persons in Timor-Leste", - "values": [ - "Freedom of opinion and expression", - "Freedom of the press", - "International instruments" - ] - }, - { - "text": "Withdraw its reservations to CEDAW", - "values": [ - "International instruments", - "Women's rights" - ] - }, - { - "text": "Withdraw the reservations made to CEDAW, as an extension of measures already taken in 1998", - "values": [ - "International instruments", - "Statelessness and the right to nationality", - "Women's rights" - ] - }, - { - "text": "Canada is committed to legislation to end a clear inequality, often adversely affecting Aboriginal women and children, to ensure that, in the event of a marriage or common law relationship break down, Aboriginal people on reserve are afforded the same rights and protections that all other Canadians currently enjoy.", - "values": [ - "Indigenous peoples", - "Rights of the Child", - "Women's rights" - ] - }, - { - "text": "Strengthen the National Human Rights Institution in order to ensure its independence and effectiveness in accordance with the Paris Principles", - "values": [ - "National Human Rights Institution" - ] - }, - { - "text": "Improve the detention conditions of undocumented migrants, ensure that they are not detained and deprived of their liberty for prolonged periods and that they have all services available, including access to health, psychological assistance, and appropriate physical infrastructure and sanitation ", - "values": [ - "Migrants", - "Right to water and sanitation" - ] - }, - { - "text": "Implement the recommendations of CRC in order to guarantee the rights of homeless children", - "values": [ - "Rights of the Child", - "Treaty bodies" - ] - }, - { - "text": "Make a declaration within a frame of article 21 and 22 of Convention against Torture, to improve the conditions of detainees and to prevent maltreatment of prisoners in prisons belonging to the Ministry of Interior", - "values": [ - "Detention", - "International instruments", - "Torture and other CID treatment" - ] - }, - { - "text": "Implement the recommendations of the Organization for Security and Co-operation in Europe regarding the reform of the electoral law", - "values": [ - "Elections" - ] - }, - { - "text": "Enact legislation to ensure women and girls' rights are protected, including legislation banning early and forced marriages", - "values": [ - "Rights of the Child", - "Women's rights" - ] - }, - { - "text": "Adopt legislative measures to make domestic violence a crime, understanding all forms of violence in the home, including threats, sexual harassment and sexual abuse, and ensure that perpetrators are brought to justice and that victims receive care, including in the rural areas", - "values": [ - "Rights of the Child", - "Women's rights" - ] - }, - { - "text": "Continue enhancing the rights of persons with disabilities as well as accelerate the ratification process for the Convention on the Rights of Persons with Disabilities (CRPD)", - "values": [ - "Disabilities", - "International instruments" - ] - }, - { - "text": "Ensure the protection of women, in practice, from all forms of violence by implementing national legislation, as pledged in its National Report to universal periodic report, and to adopt a unified family code to ensure the equal status of women under law", - "values": [ - "Women's rights" - ] - }, - { - "text": "Reconsider its conclusion not to accede to the International Convention on the Protection of the Rights of All Migrant Workers and Members of Their Families as contained in Recommendation 1", - "values": [ - "International instruments", - "Labour", - "Migrants" - ] - }, - { - "text": "Continue to strengthen the National Human Rights Commission to make it fully compliant with the Paris principles", - "values": [ - "National Human Rights Institution" - ] - }, - { - "text": "Protect human rights in Darfur and the Two Areas, including by ending violence, ensuring accountability for deaths and sexual violence, granting humanitarian access, and allowing aid agencies and NGOs to implement human rights programmes", - "values": [ - "Civil society" - ] - }, - { - "text": "Continue redistributing income from petroleum exports to improve the well-being of its population, including construction of basic infrastructure and housing for low-income population as well as public health programmes", - "values": [ - "Development", - "Right to health", - "Right to housing" - ] - }, - { - "text": "Continue to promote its successful social policies aimed at satisfying the needs of its population", - "values": [ - "Other" - ] - }, - { - "text": "Step up actions to strengthen the national mechanism for the prevention of torture", - "values": [ - "Torture and other CID treatment" - ] - }, - { - "text": "Agree to the visit of the Special Rapporteur on human rights defenders, requested in 2006 but not yet agreed upon.", - "values": [ - "Human rights defenders", - "Special procedures" - ] - }, - { - "text": "Investigate all allegations of torture or ill-treatment, prosecute those responsible and take all measures to ensure that impunity does not prevail ", - "values": [ - "Impunity", - "Torture and other CID treatment" - ] - }, - { - "text": "Adopt expeditiously a law on gender equality, empower its National Committee on Gender Equality, and take appropriate measures to eliminate discrimination against women, hence promoting their advancement, with a particular focus on the most vulnerable groups, such as rural women ", - "values": [ - "Women's rights" - ] - }, - { - "text": "Establish a special committee to oversee the implementation of the CARICOM Implementation Agency for Crime and Security report recommendations", - "values": [ - "Extrajudicial executions", - "Human rights violations by state agents" - ] - }, - { - "text": "Ratify the Optional Protocol to the Convention on the Rights of the Child on the sale of children, child prostitution and child pornography, which has already been signed by the Government", - "values": [ - "International instruments", - "Rights of the Child", - "Trafficking" - ] - }, - { - "text": "Find, with reference to the law on screening electronic messages, a rational balance between upholding the rights of citizens and real steps to combat terrorism on the Internet ", - "values": [ - "Counter-terrorism" - ] - }, - { - "text": "Continue improving the performance of the national human rights institution in accordance with the standards set out in the principles relating to the status of national institutions for the promotion and protection of human rights (the Paris Principles) ", - "values": [ - "National Human Rights Institution" - ] - }, - { - "text": "Repeal national provisions that discriminate against lesbian, gay, bisexual and transgender persons, and decriminalize consensual sexual relations between adults of the same gender", - "values": [ - "Sexual Orientation and Gender Identity" - ] - }, - { - "text": "Continue to implement actions aimed at reducing poverty and inequality", - "values": [ - "Poverty" - ] - }, - { - "text": "Continue to strengthen its domestic framework and institutions to protect women against violence and promote gender equality ", - "values": [ - "Women's rights" - ] - }, - { - "text": "Remove laws criminalizing same-sex relationships", - "values": [ - "Sexual Orientation and Gender Identity" - ] - }, - { - "text": "Continue the dissemination of the culture of human rights through its inclusion in curricula", - "values": [ - "Human rights education and training" - ] - }, - { - "text": "Review the compliance of the Kenya Information Communication (Amendment) Act of 2013 with international standards on freedom of expression, create an enabling environment for journalists and bloggers and decriminalize media offences and defamation", - "values": [ - "Freedom of opinion and expression", - "Freedom of the press" - ] - }, - { - "text": "Expedite implementation of the Prevention and Combating of Hate Crimes and Hate Speech Bill and of a national action plan to combat racism, racial discrimination, xenophobia and related intolerance", - "values": [ - "Racial discrimination" - ] - }, - { - "text": "Accede to all core international human rights instruments, in particular to the International Covenant on Civil and Political Rights and the International Covenant on Economic, Social and Cultural Rights ", - "values": [ - "CP rights - general", - "ESC rights - general", - "International instruments" - ] - }, - { - "text": "Upgrade Slovak National Centre for Human Rights to a full-fledged national human rights commission in accordance with the Paris Principles.", - "values": [ - "National Human Rights Institution" - ] - }, - { - "text": "Lift legal restrictions or hurdles to the work of civil society individuals or organizations and ensure that they can undertake their legitimate activities without fear of reprisals", - "values": [ - "Civil society" - ] - }, - { - "text": "The Government is committed to create an environment which is free of fear and intimidation and is one that is conducive to debate and dialogue on national political processes. ", - "values": [ - "Freedom of opinion and expression" - ] - }, - { - "text": "Take further measures to ensure the full enjoyment by children of their human rights, notably regarding the juvenile justice system and cases of child labour ", - "values": [ - "Justice", - "Labour", - "Rights of the Child" - ] - }, - { - "text": "Withdraw the provisions which entered into force on 1 January 2010 making blasphemy punishable as they may constitute an excessive limitation to the freedom of expression ", - "values": [ - "Freedom of opinion and expression" - ] - }, - { - "text": "Continue to reduce poverty as a priority in the national development plan and improve the living standards of vulnerable groups", - "values": [ - "Development", - "Poverty" - ] - }, - { - "text": "Grant the same importance to and treat equally civil, political, economic, social and cultural rights, in its legislation at all levels", - "values": [ - "CP rights - general", - "ESC rights - general" - ] - }, - { - "text": "Continue efforts to eradicate poverty and to better living conditions as well as increase job opportunities ", - "values": [ - "Development", - "Poverty" - ] - }, - { - "text": "Continue strengthening the independence and efficiency of the Elections Advisory Board by setting up a comprehensive electoral commission to make sure that the upcoming elections are free and fair ", - "values": [ - "Elections" - ] - }, - { - "text": "Continue its special civil registration campaign", - "values": [ - "Rights of the Child" - ] - }, - { - "text": "Initiate prompt, thorough and independent investigations of all torture allegations and end politically motivated prosecutions by ensuring all trials conform to obligations under the International Covenant on Civil and Political Rights", - "values": [ - "International instruments", - "Justice", - "Torture and other CID treatment" - ] - }, - { - "text": "Adopt a bill on comprehensive protection for children, in accordance with the Convention on the Rights of the Child", - "values": [ - "International instruments", - "Rights of the Child" - ] - }, - { - "text": "Investigate all allegations of human rights violations particularly in relation to persons who were detained during police operations and ensure that perpetrators are properly brought to justice and punished", - "values": [ - "Human rights violations by state agents" - ] - }, - { - "text": "Continue promoting awareness and empowerment policies for persons with disabilities", - "values": [ - "Disabilities" - ] - }, - { - "text": "Take steps to ensure the provision of inclusive education for all children with disabilities, including specialized centres for assessment and support, as needed", - "values": [ - "Disabilities", - "Right to education" - ] - }, - { - "text": "Continue implementing national policies to ensure socio-political and economic transformation with a human rights perspective ", - "values": [ - "ESC rights - general" - ] - }, - { - "text": "Continue making efforts to integrate the rights of the minorities present in the country in its public policies and legislation ", - "values": [ - "Minorities" - ] - }, - { - "text": "Continue to work on the implementation of policies that guarantee respect of the rights of persons with disabilities ", - "values": [ - "Disabilities" - ] - }, - { - "text": "Undertake efforts towards eradication of gender stereotypes that have negative impact on the situation of women, in particular those from the rural areas", - "values": [ - "Women's rights" - ] - }, - { - "text": "Rwanda is committed to submit periodic reports on the implementation of key human rights treaties: all overdue reports have been prepared and submitted to Treaty Bodies in 2009 and 2010.", - "values": [ - "Treaty bodies" - ] - }, - { - "text": "Expedite the drafting and the adoption of the gender equality bill ", - "values": [ - "Women's rights" - ] - }, - { - "text": "Continue and strengthen measures to enforce existing regulations to combat negative stereotyping of women in the local media ", - "values": [ - "Women's rights" - ] - }, - { - "text": "Ensure that members of the security forces are trained on human rights and on their responsibility to protect human rights and human rights defenders.", - "values": [ - "Human rights defenders", - "Human rights education and training" - ] - }, - { - "text": "Call on OHCHR, in consultation with the Government, to provide technical assistance regarding the incorporation of international human rights instruments into domestic law.", - "values": [ - "International instruments", - "Technical assistance and cooperation" - ] - }, - { - "text": "Take all necessary measures, in accordance with international human rights law, to reduce the use of detention of persons solely on grounds of immigration reasons or because they belong to minority groups ", - "values": [ - "Detention", - "International instruments", - "Migrants", - "Minorities" - ] - }, - { - "text": "Continue efforts to strengthen its institutional frameworks for human rights, including by giving consideration towards the establishment of a national human rights institution as guided by the Paris Principles ", - "values": [ - "National Human Rights Institution" - ] - }, - { - "text": "Amend the appropriate legislation in accordance with its international human rights obligations to address the issue of amnesties for perpetrators of human rights violations", - "values": [ - "International instruments", - "Justice" - ] - }, - { - "text": "Further its efforts in promoting the rights of persons with disabilities, including through considering a consolidated national action plan and designating an implementation national focal point, and providing the necessary resources to further ensure inclusive education and accessibility for persons with disabilities", - "values": [ - "Disabilities", - "Right to education" - ] - }, - { - "text": "Ensure prompt access to justice for women victims of all forms of violence, as well as prosecute all acts of violence and punish the perpetrators", - "values": [ - "Women's rights" - ] - }, - { - "text": "Consider working with Ghana and other like-minded countries to promote the Migrant Workers Convention", - "values": [ - "International instruments", - "Labour", - "Migrants" - ] - }, - { - "text": "Ratify the two current Optional Protocols thereto, on the involvement of children in armed conflict (2000) and on the sale of children, child prostitution and child pornography (2000) ", - "values": [ - "International humanitarian law", - "International instruments", - "Rights of the Child", - "Trafficking" - ] - }, - { - "text": "Work towards reaching the human rights goals set by the Council in its resolution 9-12 and to strengthening its public policy guaranteeing the rights of the child, with special attention to children without parental care.", - "values": [ - "Rights of the Child" - ] - }, - { - "text": "Build new schools in the hinterland of the country", - "values": [ - "Right to education" - ] - }, - { - "text": "Establish a national human rights institution in accordance with the Paris Principles ", - "values": [ - "National Human Rights Institution" - ] - }, - { - "text": "Continue its efforts aiming at achieving an environment of nonpoliticization, cooperation and dialogue in the human rights field ", - "values": [ - "Other" - ] - }, - { - "text": "Implement the Victims and Land Restitution Law with justice and verify that it becomes part of an integral policy of development, so that it contributes to a sustainable and dignified quality of life for the victims ", - "values": [ - "Right to land" - ] - }, - { - "text": "Continue its efforts in providing educational facilities to students with special educational needs, such as children with visual and hearing impairment and those with learning difficulties", - "values": [ - "Disabilities", - "Right to education", - "Rights of the Child" - ] - }, - { - "text": "Redouble its efforts to fight racial discrimination, including through support to relevant NGOs, and further recommend special measures for vulnerable groups, including Ciganos, Roma and people of African descent ", - "values": [ - "Civil society", - "Minorities", - "Racial discrimination" - ] - }, - { - "text": "Sign and ratify Optional Protocol to the Convention on the Elimination of All Forms of Discrimination against Women ", - "values": [ - "International instruments", - "Women's rights" - ] - }, - { - "text": "Strengthen protection and promote the rights of the Sami people, including in terms of teaching their language and preserving their culture and traditions ", - "values": [ - "Indigenous peoples" - ] - }, - { - "text": "Take necessary steps to effectively combat gender-based violence, in particular by amending article 152 of the Criminal Code to add provisions on sexual violence in line with international standards", - "values": [ - "Women's rights" - ] - }, - { - "text": "That the Police Act be reformed in such a way that the requirement of a police permit for public assemblies of three or more persons does not violate the right to peaceful assembly", - "values": [ - "Freedom of association and peaceful assembly" - ] - }, - { - "text": "Invite independent national and international election monitoring teams to the upcoming elections", - "values": [ - "Elections" - ] - }, - { - "text": "Fully implement the National Action Plan for Children 2008-2015 entitled "Algeria worthy of children" ", - "values": [ - "Rights of the Child" - ] - }, - { - "text": "Set up a commission of National Independent Inquiry on Violence and Abuse against People with Disability", - "values": [ - "Disabilities" - ] - }, - { - "text": "Adopt measures necessary to achieve the Millennium Development Goals", - "values": [ - "Development" - ] - }, - { - "text": "Consider developing Human Rights Indicators as suggested by the OHCHR as an instrument that allows for a more precise and coherent evaluation of national human rights policies", - "values": [ - "Other" - ] - }, - { - "text": "Follow-up the Committee on the Rights of the Child's recommendations relating to the practice of female genital mutilation, and organize awarenessraising campaigns in public and in schools ", - "values": [ - "Human rights education and training", - "Rights of the Child", - "Torture and other CID treatment", - "Treaty bodies", - "Women's rights" - ] - }, - { - "text": "To continue its efforts to implement a human rights information system with support from OHCHR", - "values": [ - "Human rights education and training", - "Technical assistance and cooperation" - ] - }, - { - "text": "Fully incorporate the Convention on the Rights of the Child and its optional protocols in Swedish legislation so as to end child prostitution, child pornography and trafficking of children for sexual purposes", - "values": [ - "International humanitarian law", - "International instruments", - "Labour", - "Rights of the Child", - "Trafficking" - ] - }, - { - "text": "Prohibit all forms of violence against children, in particular corporal punishment, which is still legally practised in schools ", - "values": [ - "Rights of the Child", - "Torture and other CID treatment" - ] - }, - { - "text": "Undertake continued and enhanced efforts to protect and provide redress to women suffering from violence and to continue raising awareness, through training and other means, in the judicial system, including to the police, of the necessity to act against all cases of sexual and gender-based violence, including on the grounds of real or perceived sexual orientation, gender identity or expression", - "values": [ - "Freedom of opinion and expression", - "Human rights education and training", - "Sexual Orientation and Gender Identity", - "Women's rights" - ] - }, - { - "text": "Consider ratification of the International Convention for the Protection of All Persons from Enforced Disappearance", - "values": [ - "Enforced disappearances", - "International instruments" - ] - }, - { - "text": "Improve the levels of assistance provided to children, especially disabled children, children in vulnerable groups, orphans and street children, and ensure their full integration into society, and take all measures to put an end to child labour ", - "values": [ - "Disabilities", - "Labour", - "Rights of the Child" - ] - }, - { - "text": "Seek the support of the international community in addressing human rights challenges, including development projects ", - "values": [ - "Development", - "Technical assistance and cooperation" - ] - }, - { - "text": "Accede to CRPD", - "values": [ - "Disabilities", - "International instruments" - ] - }, - { - "text": "Take the necessary measures to prohibit the use of corporal punishment against children", - "values": [ - "Rights of the Child", - "Torture and other CID treatment" - ] - }, - { - "text": "Accelerate the development of activities of one of the existing institutions responsible for the promotion and protection of human rights in order to better adapt it and convert it into an institution which is in conformity with the Paris Principles", - "values": [ - "National Human Rights Institution" - ] - }, - { - "text": "Amend the founding legislation of the National Human Rights Commission with a view to bringing it into compliance with the Paris Principles ", - "values": [ - "National Human Rights Institution" - ] - }, - { - "text": "Establish stronger laws against perpetrators of child abuse and to increase penalties and sentencing in courts ", - "values": [ - "Rights of the Child" - ] - }, - { - "text": "Continue to accede to international human rights instruments and the regular reporting system attached thereto.", - "values": [ - "International instruments", - "Treaty bodies" - ] - }, - { - "text": "Strengthen the inter-sectorial coordination mechanisms to achieve a concrete materialization of the international cooperation in the areas of internal security, human rights protection and democratic political stability", - "values": [ - "General" - ] - }, - { - "text": "Pursue its efforts to put an end to remaining discriminations against women and Palestinian refugees", - "values": [ - "Asylum-seekers - refugees", - "Racial discrimination", - "Women's rights" - ] - }, - { - "text": "Consider eliminating the clause that expands the use of the death penalty for economic crimes", - "values": [ - "Death penalty" - ] - }, - { - "text": "Establish a national human rights institution, in accordance with Paris Principles ", - "values": [ - "National Human Rights Institution" - ] - }, - { - "text": "Continue efforts to promote gender equality and women\u2019s political, social and economic empowerment", - "values": [ - "Women's rights" - ] - }, - { - "text": "Continue the dialogue with all parties to put an end to the Darfur crisis, which would enable all displaced persons and refugees to return to their home villages and towns ", - "values": [ - "Asylum-seekers - refugees", - "Internally displaced persons" - ] - }, - { - "text": "Continue the implementation of the national plan of action against racism and anti-Semitism", - "values": [ - "Racial discrimination" - ] - }, - { - "text": "Promote inter-ethnic tolerance through adequate measures, including awareness-raising campaigns in the media in close cooperation with civil society and minority associations", - "values": [ - "Civil society", - "Human rights education and training", - "Minorities" - ] - }, - { - "text": "Continue implementing its national policies and programmes outlined, with the aim of further improving the well-being of its people ", - "values": [ - "General" - ] - }, - { - "text": "Further combat violence against children in the school environment ", - "values": [ - "Right to education", - "Rights of the Child" - ] - }, - { - "text": "Provide effective protection for the family as the natural and fundamental unit of the society, in accordance with its respective obligations under international human rights law", - "values": [ - "Other" - ] - }, - { - "text": "Consider adopting a national action plan on Security Council Resolution 1325 on Women, Peace and Security", - "values": [ - "Women's rights" - ] - }, - { - "text": "Strengthen the independence of the Police Complaints Authority and provide it with adequate funding and resources", - "values": [ - "Human rights violations by state agents", - "Justice" - ] - }, - { - "text": "Prohibit corporal punishment at home and in schools and sensitize families in this respect", - "values": [ - "Rights of the Child", - "Torture and other CID treatment" - ] - }, - { - "text": "Take measures to fight against violence and discrimination based on sexual orientation and gender identity", - "values": [ - "Sexual Orientation and Gender Identity" - ] - }, - { - "text": "Continue the reform process and ensure accountability by investigating all allegations of torture and mistreatment and by prosecuting any individuals found responsible, including senior government officials ", - "values": [ - "Human rights violations by state agents", - "Torture and other CID treatment" - ] - }, - { - "text": "Improve the implementation of the legal framework regarding women's rights and finalise a violence against women law", - "values": [ - "Women's rights" - ] - }, - { - "text": "Pursue initiatives on human rights education, particularly through access to information and promotion of existing protection and redress mechanisms", - "values": [ - "Human rights education and training" - ] - }, - { - "text": "Sign and ratify the following international instruments: the Optional Protocols to the International Covenant on Civil and Political Rights - the International Convention on the Elimination of All Forms of Racial Discrimination - the Convention against Torture and the Optional Protocol thereto - the Optional Protocols of the Convention on the Rights of the Child - the Convention on the Rights of Persons with Disabilities and the Optional Protocol thereto - and the International Convention for the Protection of All Persons from Enforced Disappearance ", - "values": [ - "International instruments" - ] - }, - { - "text": "Continue the consistent and successful policy aimed at ensuring the rights of all national minorities residing in the country, as well as support for their social, educational, informational and cultural needs ", - "values": [ - "Minorities" - ] - }, - { - "text": "Initiate legislative measures to effectively address and eradicate longstanding discrimination, including "untouchability"", - "values": [ - "Racial discrimination" - ] - }, - { - "text": "Continue efforts in the fight against human trafficking", - "values": [ - "Trafficking" - ] - }, - { - "text": "Treat asylum seekers on its territory in compliance with the 1951 Convention relating to the Status of Refugees", - "values": [ - "Asylum-seekers - refugees", - "International instruments" - ] - }, - { - "text": "Establish a better coordination between the different institutional bodies competent in matters of non-discrimination", - "values": [ - "Other" - ] - }, - { - "text": "Intensify its cooperation with the treaty bodies", - "values": [ - "Treaty bodies" - ] - }, - { - "text": "Continue its process of accession to the Rome Statute of the International Criminal Court and take all necessary measures to incorporate it into its national legislation", - "values": [ - "International instruments", - "Justice" - ] - }, - { - "text": "Revise the ban on abortions to allow exceptions in cases of pregnancy resulting from rape, incest or therapeutic abortion", - "values": [ - "Rights of the Child", - "Women's rights" - ] - }, - { - "text": "Reinstate the moratorium on executions, and ban the death penalty for defendants who suffer from mental illness or who were minors at the time of their alleged crimes", - "values": [ - "Death penalty", - "Rights of the Child" - ] - }, - { - "text": "Contribute to further reduction of maternal mortality through the establishment of an independent organ to accelerate programmes and projects in this area ", - "values": [ - "Right to health", - "Women's rights" - ] - }, - { - "text": "Sign and ratify the Optional Protocol to the Convention on the Right of the Child on the involvement of children in Armed Conflict (CRC-OP-AC).", - "values": [ - "International humanitarian law", - "International instruments", - "Rights of the Child" - ] - }, - { - "text": "Set up the national mechanism for prevention of torture", - "values": [ - "Torture and other CID treatment" - ] - }, - { - "text": "Vanuatu's National Advisory Board on Climate Change is committed to steering and guiding development partners interested in engaging in human rights and climate/disaster issues in Vanuatu, including by providing expedited program approvals and nominating counterparts, intervention sites and priority areas.", - "values": [ - "Environment" - ] - }, - { - "text": "Put an end to the process of expanding colonies and to racial discrimination which are an inadmissible violation of elementary rights of Palestinians in the occupied territories, including Jerusalem ", - "values": [ - "Racial discrimination" - ] - }, - { - "text": "Adopt a stand-alone law to combat domestic violence, so that violence against women will be qualified as a criminal and civil offence subject to prosecution", - "values": [ - "Rights of the Child", - "Women's rights" - ] - }, - { - "text": "Prevent and thoroughly halt the use and recruitment of child soldiers and ensure reintegration and access to education for former child soldiers", - "values": [ - "International humanitarian law", - "Rights of the Child" - ] - }, - { - "text": "Eliminate all norms and practices that lead to the discrimination of members of national minorities, such as Russians, Uzbeks, Kazakhs, Turks and Kurds.", - "values": [ - "Minorities" - ] - }, - { - "text": "Strengthen the normative framework for coordinated government actions against trafficking and care for the trafficked victims, including developing a procedural framework for the return and reintegration of victims of trafficking in persons", - "values": [ - "Trafficking" - ] - }, - { - "text": "Adopt specific and comprehensive anti-discrimination laws to protect the rights of persons belonging to minorities, including the Roma, including access to health care and education.", - "values": [ - "Minorities" - ] - }, - { - "text": "Establish an independent body to investigate disputes over land, territories and resources", - "values": [ - "Environment", - "Indigenous peoples", - "Right to land" - ] - }, - { - "text": "Make use of the educational process to share the culture of human rights and raise awareness of those rights ", - "values": [ - "Human rights education and training" - ] - }, - { - "text": "Continue to cooperate with the UN and other international organizations to develop its legal and institutional framework with respect to promoting and protecting human rights in Venezuela ", - "values": [ - "Technical assistance and cooperation" - ] - }, - { - "text": "Continue its efforts to ensure that the national laws protect freedom of expression online and offline", - "values": [ - "Freedom of opinion and expression" - ] - }, - { - "text": "Implement the recommendations of the Committee against Torture", - "values": [ - "Torture and other CID treatment", - "Treaty bodies" - ] - }, - { - "text": "Continue its efforts to combat all forms of violence against women and to create conditions of assistance in order to facilitate the protection of victims of violence", - "values": [ - "Women's rights" - ] - }, - { - "text": "Continue its increasing investment in education", - "values": [ - "Right to education" - ] - }, - { - "text": "Take all necessary measures to prohibit hate speech against asylum seekers, refugees and foreigners", - "values": [ - "Asylum-seekers - refugees", - "Migrants", - "Racial discrimination" - ] - }, - { - "text": "Enact national legislation to protect the rights of the child", - "values": [ - "Rights of the Child" - ] - }, - { - "text": "Strengthen measures to ensure gender equality in law and in practice, in particular by applying positive measures for the participation of women in public life and the private sector", - "values": [ - "Women's rights" - ] - }, - { - "text": "Actively seek to promote awareness about the Roma population in order to combat discrimination.", - "values": [ - "Minorities" - ] - }, - { - "text": "Eliminate barriers preventing access of children with disabilities to the education system", - "values": [ - "Disabilities", - "Right to education", - "Rights of the Child" - ] - }, - { - "text": "Increase the efforts to address ill-treatment and abuse of persons in detention", - "values": [ - "Detention", - "Torture and other CID treatment" - ] - }, - { - "text": "Continue the efforts aiming at promotion and protection of the rights of women ", - "values": [ - "Women's rights" - ] - }, - { - "text": "Take all necessary measures, including awareness-raising and education, as well as legislative measures, to eliminate discrimination against Afro-Panamanian people", - "values": [ - "Human rights education and training", - "Minorities", - "Racial discrimination" - ] - }, - { - "text": "Engage in order to address any form of discrimination against LGBTI people and in particular to prevent any practice which can harm their dignity, such as unnecessary sex reassignment surgery, especially when carried out without duly informed consent", - "values": [ - "Sexual Orientation and Gender Identity" - ] - }, - { - "text": "Conduct thorough and impartial investigation into all allegations of torture and physical abuse and bring to justice anyone suspected of having committed excessive use of force, torture and other human rights violations ", - "values": [ - "Torture and other CID treatment" - ] - }, - { - "text": "Strengthen measures to combat all forms of discrimination", - "values": [ - "Other" - ] - }, - { - "text": "Speed up the process for ratifying CRPD and its Optional Protocol", - "values": [ - "Disabilities", - "International instruments" - ] - }, - { - "text": "Increase the focus, targeted efforts and effective measures regarding eliminating discrimination, and to make further efforts and measures to promote the rights of minorities,inter alia, ethnic minorities.", - "values": [ - "Minorities", - "Racial discrimination" - ] - }, - { - "text": "Carry out more efforts to integrate the Roma minority in society, especially by the allocation of funds for the implementation of the National Plan and the participation of this minority in carrying out this Plan ", - "values": [ - "Minorities" - ] - }, - { - "text": "Remove obstacles preventing women having effective access to justice and adopt appropriate measures to promote basic legal assistance and knowledge of women's rights, including the right to obtain redress in the courts ", - "values": [ - "Justice", - "Women's rights" - ] - }, - { - "text": "Strengthen efforts against all forms of violence against women, including domestic violence ", - "values": [ - "Women's rights" - ] - }, - { - "text": "Take measures to guarantee effective access to justice, reparation and protection for women victims of gender-based violence", - "values": [ - "Women's rights" - ] - }, - { - "text": "That the country's judicial and prison systems work toward the improvement of prison conditions in line with international standards ", - "values": [ - "Detention" - ] - }, - { - "text": "Further expand and consolidate achievements made in promoting women's rights and well-being in tandem with its policy and practice of protecting and promoting human dignity", - "values": [ - "Women's rights" - ] - }, - { - "text": "Accelerate its programme to combat HIV/AIDS pandemic that continue to saturate the health system with its high of morbidity and mortality rates ", - "values": [ - "HIV - Aids" - ] - }, - { - "text": "Strengthen the mechanism dealing with expatriate workers to meet the service requirements and to protect their rights according to its Labour Law", - "values": [ - "Labour", - "Migrants" - ] - }, - { - "text": "Continue its accession process to the core human rights treaties", - "values": [ - "International instruments" - ] - }, - { - "text": "Reconsider its stance on the United Nations Declaration on the Rights of Indigenous Peoples", - "values": [ - "Indigenous peoples", - "International instruments" - ] - }, - { - "text": "Consider adopting comprehensive anti-discrimination legislation, addressing all manifestations of racism, racial discrimination, xenophobia and related intolerance in all spheres of life", - "values": [ - "Racial discrimination" - ] - }, - { - "text": "Reduce the illiteracy rate among girls", - "values": [ - "Right to education", - "Rights of the Child", - "Women's rights" - ] - }, - { - "text": "Reinforce the work already under way to tackle modern forms of slavery, by strengthening efforts to obstruct criminal networks and identifying victims of human trafficking", - "values": [ - "Trafficking" - ] - }, - { - "text": "Collect accurate statistics of cases of domestic violence against women, as well as strengthen support services to victims of domestic violence, including shelters and legal aid services", - "values": [ - "Rights of the Child", - "Women's rights" - ] - }, - { - "text": "Maintain and strengthen its initiatives on the promotion and protection of the rights of the child particularly with regard to children with disabilities ", - "values": [ - "Disabilities", - "Rights of the Child" - ] - }, - { - "text": "Ratify the Arms Trade Treaty and adapt its national legislation to the Treaty", - "values": [ - "International instruments", - "Public security" - ] - }, - { - "text": "Establish a de jure moratorium on executions ", - "values": [ - "Death penalty" - ] - }, - { - "text": "Adopt legislation prohibiting the dissemination of ideas based on racial and ethnic hatred and incitement to racial discrimination and violence and ensure full respect for freedom of religion or belief and the human rights of the persons belonging to ethnic and religious minorities, in line with the international human rights law ", - "values": [ - "Freedom of religion and belief", - "International instruments", - "Minorities", - "Racial discrimination" - ] - }, - { - "text": "Establish a legal framework to better protect women and girls from sexual exploitation and forced marriage", - "values": [ - "Rights of the Child", - "Women's rights" - ] - }, - { - "text": "Consider acceding to the Optional Protocol to the Convention on the Elimination of All Forms of Discrimination against Women", - "values": [ - "Women's rights" - ] - }, - { - "text": "Continue cooperation with the United Nations human rights mechanisms ", - "values": [ - "Special procedures", - "Treaty bodies", - "UPR process" - ] - }, - { - "text": "With the support of the international community, continue to enhance efforts to combat violence against women ", - "values": [ - "Women's rights" - ] - }, - { - "text": "Facilitate the integration of refugees, including by combating stereotypes, prejudice and hate speech", - "values": [ - "Asylum-seekers - refugees", - "Racial discrimination" - ] - }, - { - "text": "Take effective steps to counter harassment and abuse of girls in the educational system and ensure that perpetrators are effectively punished ", - "values": [ - "Rights of the Child" - ] - }, - { - "text": "Continue its efforts to fight trafficking in persons within the framework of its Comprehensive National Strategy to Combat Trafficking in Persons. In this regard, we urge the Government of Colombia to continue to work towards finalizing and adopting its National Strategy 2013-2018 ", - "values": [ - "Trafficking" - ] - }, - { - "text": "Put an end to racial discrimination against the Rohingya and join ICERD", - "values": [ - "International instruments", - "Racial discrimination" - ] - }, - { - "text": "Ratify the Optional Protocol to the the Convention on the Elimination of All Forms of Discrimination against Women ", - "values": [ - "International instruments", - "Women's rights" - ] - }, - { - "text": "Organize an awareness-raising campaign on the illegality and the medical consequences of FGM.", - "values": [ - "Human rights education and training", - "Rights of the Child", - "Torture and other CID treatment", - "Women's rights" - ] - }, - { - "text": "Accelerate the property restitution process.", - "values": [ - "Right to land" - ] - }, - { - "text": "Maintain its efforts in the context of the right to housing", - "values": [ - "Right to housing" - ] - }, - { - "text": "Introduce a clear duty on all schools to desegregate education and end discrimination against Romani children ", - "values": [ - "Minorities", - "Racial discrimination", - "Right to education", - "Rights of the Child" - ] - }, - { - "text": "Amend the Personal and Family Code to include explicit reference to its international obligations as regards women's rights", - "values": [ - "Women's rights" - ] - }, - { - "text": "Extend a standing invitation to the human rights special procedures and ratify the Rome Statute of ICC, OP-CAT and ILO Conventions nos. 169 and 189 ", - "values": [ - "International instruments", - "Special procedures" - ] - }, - { - "text": "Ensure investigations and recommend action against abuses by law enforcers, as a way of curbing violations", - "values": [ - "Human rights violations by state agents" - ] - }, - { - "text": "Take active measures to abolish corporal punishment of children in all settings", - "values": [ - "Rights of the Child", - "Torture and other CID treatment" - ] - }, - { - "text": "Intensify its efforts to combat human trafficking", - "values": [ - "Trafficking" - ] - }, - { - "text": "Multiply policies to increase the participation of women of migrant background in the labour market, as well as policies that make it possible to eliminate the wage gap between men and women", - "values": [ - "Labour", - "Migrants", - "Women's rights" - ] - }, - { - "text": "Continue strengthening the role of women in the professional and labour market spheres", - "values": [ - "Women's rights" - ] - }, - { - "text": "Pursue efforts to strengthen legislation and public policies aimed at eradicating violence against women", - "values": [ - "Women's rights" - ] - }, - { - "text": "Conduct full and transparent investigations into alleged cases of excessive use of force by security agents, especially during and after the 2016 elections, ensuring accountability for possible human rights violations", - "values": [ - "Elections", - "Human rights violations by state agents" - ] - }, - { - "text": "Conform to repeated demands of the international community not to detain political prisoners and not to engage in judicial proceedings for political motives, liberalize the media sector, and guarantee freedom of expression and of the media, and reform electoral law so as to guarantee the transparency of vote counting, and, finally, lift all obstacles to the functioning of non-governmental organizations and political parties ", - "values": [ - "Civil society", - "Detention", - "Elections", - "Freedom of association and peaceful assembly", - "Freedom of opinion and expression", - "Freedom of the press" - ] - }, - { - "text": "Put an end to corporal punishment in all settings", - "values": [ - "Rights of the Child", - "Torture and other CID treatment" - ] - }, - { - "text": "Ensure the right to work of persons with disabilities, and establish effective mechanisms and strong legislative regulations to protect their economic, social and cultural rights ", - "values": [ - "Disabilities", - "ESC rights - general", - "Labour" - ] - }, - { - "text": "Continue putting an emphasis on the promotion of human rights, ensuring the right to basic standards of health, education, nutrition and welfare of the entire population ", - "values": [ - "Right to education", - "Right to food", - "Right to health" - ] - }, - { - "text": "Create a police force capable of ensuring the maintenance of law and order", - "values": [ - "Justice", - "Public security" - ] - }, - { - "text": "Adopt measures to fight against all forms of violence against women, in particular, criminalize domestic violence and sexual harassment", - "values": [ - "Women's rights" - ] - }, - { - "text": "Give greater attention to the programmes for the reduction of infant mortality due to Aids and the national prevalence of HIV amongst women, as well as fighting the epidemics of cholera and tuberculosis ", - "values": [ - "HIV - Aids", - "Rights of the Child", - "Women's rights" - ] - }, - { - "text": "Further strengthen the judicial institutions and expand the use of mobile courts", - "values": [ - "Justice" - ] - }, - { - "text": "Ensure equality of women and men in accessing socioeconomic services, including property tenure, and health care and services ", - "values": [ - "Women's rights" - ] - }, - { - "text": "Strengthen judicial institutions, inter alia by the provision of adequate staffing as well as material resources ", - "values": [ - "Justice" - ] - }, - { - "text": "Ensure that persons with disability have the right to vote", - "values": [ - "Disabilities", - "Elections" - ] - }, - { - "text": "Take effective measures to eliminate all forms of discrimination against immigrant women in accessing basic social services.", - "values": [ - "Migrants", - "Women's rights" - ] - }, - { - "text": "Expedite the creation of an independent national human rights institution in conformity with the Paris Principles as recommended by the Committee on the Elimination of Racial Discrimination ", - "values": [ - "National Human Rights Institution", - "Treaty bodies" - ] - }, - { - "text": "Ensure that the fundamental principles of human rights are fully enshrined in the Constitution", - "values": [ - "General" - ] - }, - { - "text": "Extend an open and ongoing invitation to United Nations human rights special procedures mandate-holders ", - "values": [ - "Special procedures" - ] - }, - { - "text": "Propose specific initiatives and policies to combat all forms of extremism, racism and xenophobia, in particular towards Muslims", - "values": [ - "Freedom of religion and belief", - "Racial discrimination" - ] - }, - { - "text": "Guarantee the right of all people to live and develop in accordance with their self-perceived gender identity", - "values": [ - "Sexual Orientation and Gender Identity" - ] - }, - { - "text": "Address any remaining barriers to an equal sharing between women and men of paid and unpaid work ", - "values": [ - "Women's rights" - ] - }, - { - "text": "Take all the necessary measures to guarantee for the Palestinians who live in the occupied Palestinian territories access to adequate quantities of drinking water and to appropriate sewage systems, including by facilitating the entry of the materials required to reconstruct the water supply system and sewage system in these territories", - "values": [ - "Right to water and sanitation" - ] - }, - { - "text": "Pursue its efforts to establish a human rights commission in accordance with the Paris Principles before its next UPR in 2015 ", - "values": [ - "National Human Rights Institution" - ] - }, - { - "text": "Further strengthening the criminal justice system and prison management in the country ", - "values": [ - "Detention", - "Justice" - ] - }, - { - "text": "Ensure that peaceful demonstrators are not imprisoned, harassed or ill-treated by police for exercising their rights to freedom of expression and peaceful assembly", - "values": [ - "Freedom of association and peaceful assembly", - "Freedom of opinion and expression", - "Human rights violations by state agents", - "Torture and other CID treatment" - ] - }, - { - "text": "Take further concrete steps to implement the United Nations Rules for the Treatment of Women Prisoners and Non-custodial Measures for Women Offenders (the Bangkok Rules), to ensure that all women in prison receive equal access to services and that the special needs of women in prison, including of their children, are appropriately addressed", - "values": [ - "Detention", - "Rights of the Child", - "Women's rights" - ] - }, - { - "text": "Continue to promote gender equality and eliminate discrimination against women and girls in accordance with its obligations under the Convention for the Elimination of All Forms of Discrimination against Women ", - "values": [ - "International instruments", - "Rights of the Child", - "Women's rights" - ] - }, - { - "text": "Establish an independent institution for the promotion and protection of human rights at the national level", - "values": [ - "National Human Rights Institution" - ] - }, - { - "text": "Continue efforts to reduce violence against children and young persons", - "values": [ - "Rights of the Child" - ] - }, - { - "text": "Consider adopting measures to ensure education for all children with disabilities", - "values": [ - "Disabilities", - "Right to education", - "Rights of the Child" - ] - }, - { - "text": "Adopt additional measures, including legislative ones, to eradicate the practice of deliberate exploitation of children and the use of corporal punishment against children", - "values": [ - "Rights of the Child", - "Torture and other CID treatment" - ] - }, - { - "text": "Reduce the scope of crimes subject to the death penalty, specifically regarding all non-violent crimes, and work towards the total abolition of the death penalty", - "values": [ - "Death penalty" - ] - }, - { - "text": "Seek the means to render as effective as possible the respect of the provisions of the Law on the Rights of the Child, of 2009 ", - "values": [ - "Rights of the Child" - ] - }, - { - "text": "Strengthen the fight against violence against children and the care of abandoned children", - "values": [ - "Rights of the Child" - ] - }, - { - "text": "Continue its successful measures in the field of education", - "values": [ - "Right to education" - ] - }, - { - "text": "Give high priority to the work of the National Disabilities Taskforce ", - "values": [ - "Disabilities" - ] - }, - { - "text": "Consider pursuing a policy aimed at capacity-building to develop the country's cultural sector", - "values": [ - "ESC rights - general" - ] - }, - { - "text": "Prevent and bring to justice those responsible for the practice of child early and forced marriage by amending the 1971 Law of Marriage Act to set the minimum age of marriage to 18, for both boys and girls without exception and make it consistent with the 2009 Law of the Child Act, which defines a child as anyone under 18 ", - "values": [ - "Rights of the Child", - "Women's rights" - ] - }, - { - "text": "While recognizing the commitment to welcome on its territory refugees from the Horn of Africa, continue its efforts in this laudable work.", - "values": [ - "Asylum-seekers - refugees" - ] - }, - { - "text": "Take legal and administrative measures to address civilian killings by the US military troops during and after its invasion of Afghanistan and Iraq by investigating and bringing perpetrators to justice and remedying the victims and to close its detention facilities in foreign territories like Guantanamo, including CIA secret camps", - "values": [ - "Detention", - "Extrajudicial executions", - "International humanitarian law" - ] - }, - { - "text": "Continue to promote the living standards of the people by allowing the further enjoyment of economic, social and cultural rights", - "values": [ - "ESC rights - general" - ] - }, - { - "text": "Ensure equal remuneration between men and women in practice ", - "values": [ - "Women's rights" - ] - }, - { - "text": "Adopt a national action plan and legislation to prevent and combat racism, racial discrimination, xenophobia and related intolerance, including a comprehensive definition of racial discrimination", - "values": [ - "Racial discrimination" - ] - }, - { - "text": "Collaborate with the special procedures mandate holders ", - "values": [ - "Special procedures" - ] - }, - { - "text": "Maintain the position that the solution to the crisis in the country is political and should be based on a national dialogue under the aegis of the Syrian people and without preconditions", - "values": [ - "Other" - ] - }, - { - "text": "Continue improving the healthcare system to ensure the best welfare for the Yemeni people in this area.", - "values": [ - "Right to health" - ] - }, - { - "text": "Strengthen its cooperation with the UN human rights mechanisms, in particular the special procedures mandate holders", - "values": [ - "Special procedures", - "Treaty bodies", - "UPR process" - ] - }, - { - "text": "Strengthen national institutions established to protect democracy and human rights and fight corruption", - "values": [ - "Corruption" - ] - }, - { - "text": "Intensify the rate of cooperation with treaty bodies", - "values": [ - "Treaty bodies" - ] - }, - { - "text": "Establish the national human rights institution", - "values": [ - "National Human Rights Institution" - ] - }, - { - "text": "Establish clear national guidelines that allow all faiths equal access to registration ", - "values": [ - "Freedom of religion and belief" - ] - }, - { - "text": "Implement the recommendations arising from the Office of the Inspector of Prisons' review of the Irish Prison Service", - "values": [ - "Detention" - ] - }, - { - "text": "End blockade against Cuba", - "values": [ - "Other" - ] - }, - { - "text": "Refrain from undue restrictions, such as the prohibition to engage in the promotion and protection of human rights, in the elaboration of legislation on civil society organizations, and facilitate the registration of international NGOs", - "values": [ - "Civil society", - "Freedom of association and peaceful assembly" - ] - }, - { - "text": "Enhance measures to address the issues of trafficking and violence against women, especially through awareness programmes and by strengthening the institutional and legal framework", - "values": [ - "Human rights education and training", - "Trafficking", - "Women's rights" - ] - }, - { - "text": "Fully implement the measures regarding violence against women as outlined in its UPR interim report and consider implementing the recommendations of the Special Rapporteur on violence against women and CEDAW ", - "values": [ - "Special procedures", - "Treaty bodies", - "UPR process", - "Women's rights" - ] - }, - { - "text": "Ensure that its citizens can freely engage in the UPR process", - "values": [ - "UPR process" - ] - }, - { - "text": "Continue commuting death sentences into prison sentences and institute a de facto moratorium on executions, with a view to definitely abolish the death penalty", - "values": [ - "Death penalty" - ] - }, - { - "text": "Adopt administrative and legislative measures to increase the human, technical and financial resources for the adequate functioning of the Commission on Human Rights, and the three rights commissions, as well as to ensure its independence, in accordance with the Paris Principles", - "values": [ - "National Human Rights Institution" - ] - }, - { - "text": "Further promote the identity and culture of religious minority groups and raise awareness in society about their historical presence in Cyprus ", - "values": [ - "Minorities" - ] - }, - { - "text": "Implement programmes to guarantee the rights of children with regard to health, education and protection from violence, and develop national awareness-raising plans to combat school dropout", - "values": [ - "Right to education", - "Right to health", - "Rights of the Child" - ] - }, - { - "text": "Take effective measures to combat hate speech on racial and religious grounds in the media and on the internet, and to bring to justice the perpetrators of hate speech", - "values": [ - "Racial discrimination" - ] - }, - { - "text": "Consider further affirmative action to accelerate equality for women in practice: in working life and in political decision-making", - "values": [ - "Women's rights" - ] - }, - { - "text": "Declare a moratorium on the death penalty with a view to its final abolition", - "values": [ - "Death penalty" - ] - }, - { - "text": "Ensure continuous access to health care, notably for vulnerable persons", - "values": [ - "Right to health" - ] - }, - { - "text": "Take further steps to address gender-based violence, including guaranteeing that the cases of violence are thoroughly investigated and rights to fair trial ensured", - "values": [ - "Women's rights" - ] - }, - { - "text": "Ensure that children belonging to all minority groups have equal access to education ", - "values": [ - "Minorities", - "Right to education", - "Rights of the Child" - ] - }, - { - "text": "Charge all other prisoners with a recognizable criminal offence and ensure that they are tried in accordance with international standards ", - "values": [ - "Detention" - ] - }, - { - "text": "Sign and ratify the Optional Protocol to the International Covenant on Economic, Social and Cultural Rights ", - "values": [ - "ESC rights - general", - "International instruments" - ] - }, - { - "text": "Continue to promote the participation of women in the public and political life of the country ", - "values": [ - "Women's rights" - ] - }, - { - "text": "Continue the endeavours to enhance the rights of women, children and persons with disabilities", - "values": [ - "Disabilities", - "Rights of the Child", - "Women's rights" - ] - }, - { - "text": "Take appropriate measures against discrimination against persons belonging to ethnic minorities, in particular measures against harassment by police, and allow equal access to education for all persons belonging to minorities ", - "values": [ - "Human rights violations by state agents", - "Minorities", - "Right to education" - ] - }, - { - "text": "Take all necessary measures to ensure the rule of law and the right to due process as enshrined in article 14 of the International Covenant on Civil and Political Rights", - "values": [ - "International instruments", - "Justice" - ] - }, - { - "text": "Continue to improve its health system and training for health personnel ", - "values": [ - "Right to health" - ] - }, - { - "text": "Prohibit corporal punishment of children at home and in schools", - "values": [ - "Rights of the Child", - "Torture and other CID treatment" - ] - }, - { - "text": "Strengthen its efforts to combat violence against women, and in particular work with civil society to address the societal attitudes and behaviors that underlie high rates of domestic violence ", - "values": [ - "Civil society", - "Women's rights" - ] - }, - { - "text": "Strengthen rapidly the capacities of its judiciary system to combat impunity in order that, inter alia, the justice handles, in an impartial manner, the complaints lodged against Mr. Jean-Claude Duvalier ", - "values": [ - "Impunity" - ] - }, - { - "text": "Sign and ratify the Convention against Torture and Other Cruel, Inhuman or Degrading Treatment or Punishment and the International Convention for the Protection of All Persons from Enforced Disappearance ", - "values": [ - "Enforced disappearances", - "International instruments", - "Torture and other CID treatment" - ] - }, - { - "text": "Submission of a report, during the next review, on the fulfilment of existing voluntary pledges.", - "values": [ - "UPR process" - ] - }, - { - "text": "Consider joining the International Coordinating Committee of National Institutions", - "values": [ - "National Human Rights Institution" - ] - }, - { - "text": "Make efforts to reduce the poverty rate", - "values": [ - "Poverty" - ] - }, - { - "text": "Cease immediately all human rights violations in the occupied Arab territories and implement all relevant United Nations resolutions", - "values": [ - "Other" - ] - }, - { - "text": "Continue giving special priority to the elderly care within the Cuban society to ensure the quality of life of this group of the population", - "values": [ - "Other" - ] - }, - { - "text": "Continue investigations into the murders of journalists, human rights activists, and opposition and Government figures", - "values": [ - "Extrajudicial executions", - "Freedom of association and peaceful assembly", - "Freedom of the press", - "Human rights defenders" - ] - }, - { - "text": "Consider developing Human Rights Indicators as an instrument that allows for a more precise and coherent evaluation of national human rights policies", - "values": [ - "Other" - ] - }, - { - "text": "Establish a national mechanism for reporting and follow up to recommendations", - "values": [ - "UPR process" - ] - }, - { - "text": "Fully implement the Agreement on the Resolution of the Conflict in the Republic of South Sudan, notably its provisions on accountability for violations of international humanitarian and human rights law committed during the conflict", - "values": [ - "International humanitarian law" - ] - }, - { - "text": "Continue promoting economic development in all regions and strengthening their self-development capacity", - "values": [ - "Development" - ] - }, - { - "text": "Accept the right to present individual communications provided for in the Optional Protocol to the Convention on the Rights of Persons with Disabilities", - "values": [ - "Disabilities", - "International instruments" - ] - }, - { - "text": "Expedite efforts to introduce a statelessness determination procedure and provide persons recognized as stateless with legal status and access to basic human rights, in full consultation with key stakeholders", - "values": [ - "Statelessness and the right to nationality" - ] - }, - { - "text": "Ratify international instruments as previously recommended and supported in the first universal periodic review, as appropriate", - "values": [ - "International instruments", - "UPR process" - ] - }, - { - "text": "Modernize the infrastructure of the country's penitentiaries and improve social reintegration programs for detainees, particularly ethnic Roma ", - "values": [ - "Detention", - "Minorities" - ] - }, - { - "text": "Promote actively women's participation in different sectors of the society, especially in public services", - "values": [ - "Women's rights" - ] - }, - { - "text": "End conscription of persons for indefinite periods into national service and cease forced participation of persons in the citizen militia and other national projects ", - "values": [ - "CP rights - general" - ] - }, - { - "text": "Accede to ICRMW and ILO Convention 189", - "values": [ - "International instruments", - "Labour", - "Migrants" - ] - }, - { - "text": "Continue its efforts to facilitate a greater participation and representation of women and indigenous people in public offices", - "values": [ - "Indigenous peoples", - "Women's rights" - ] - }, - { - "text": "Ratify the International Convention for the Protection of All Persons from Enforced Disappearance (CED) as soon as possible", - "values": [ - "Enforced disappearances", - "International instruments" - ] - }, - { - "text": "Seek the support of the relevant partners to pursue its efforts in its fight against trafficking in persons", - "values": [ - "Trafficking" - ] - }, - { - "text": "Review the legislation on minimum age for criminal responsibility ", - "values": [ - "Justice", - "Rights of the Child" - ] - }, - { - "text": "Harmonize further its legislation in the field of religious freedom with international standards", - "values": [ - "Freedom of religion and belief" - ] - }, - { - "text": "Accede to the Convention on the Prevention and Punishment of the Crime of Genocide", - "values": [ - "International instruments", - "Justice" - ] - }, - { - "text": "Take necessary measures to combat xenophobia, racism and discrimination in public speech", - "values": [ - "Racial discrimination" - ] - }, - { - "text": "Continue to improve the education and healthcare systems in cooperation with relevant international organisations", - "values": [ - "Right to education", - "Right to health", - "Technical assistance and cooperation" - ] - }, - { - "text": "Step up its efforts to address overcrowding in correctional facilities and to improve sanitary conditions in these centres", - "values": [ - "Detention" - ] - }, - { - "text": "Abolish flogging and other forms of corporal punishment, and ensure that survivors of sexual violence are not prosecuted for fornication", - "values": [ - "Torture and other CID treatment" - ] - }, - { - "text": "New Zealand is fully committed to combating racism, racial discrimination, xenophobia and related intolerance, and remains supportive and actively engaged in global efforts to that end.", - "values": [ - "Racial discrimination" - ] - }, - { - "text": "Continue to firmly fight arbitrary executions and impunity, assure the protection of the civilian population and promote the return of refugees and displaced persons to their regions of origin.", - "values": [ - "Asylum-seekers - refugees", - "Extrajudicial executions", - "Impunity", - "Internally displaced persons" - ] - }, - { - "text": "Adopt the necessary measures to guarantee that norms that regulate the use of the force in activities relating to public security are in accordance with international human rights standards", - "values": [ - "International instruments", - "Public security" - ] - }, - { - "text": "Adopt a national action plan on business and human rights, to implement the Guiding Principles on Business and Human Rights, and to subscribe to the Guidelines for Multinational Enterprises of the Organization for Economic Cooperation and Development", - "values": [ - "Business and human rights" - ] - }, - { - "text": "Ensure that those laws related to acquisition, transmission, conserving and loss of nationality are in line with the principle of non- discrimination", - "values": [ - "Statelessness and the right to nationality" - ] - }, - { - "text": "Carry out an evaluation with a view to ratifying the main human rights instruments, in particular the International Covenant on Civil and Political Rights, the International Covenant on Economic, Social and Cultural Rights and the Convention on the Rights of Persons with Disabilities ", - "values": [ - "CP rights - general", - "International instruments" - ] - }, - { - "text": "Take all necessary steps in order to promote equality of women and men in the realms of family, economy and policy ", - "values": [ - "Women's rights" - ] - }, - { - "text": "Move forward as quickly as possible on further development of its judicial system based on the Strategic Plan for the Justice Sector (2011-2030)", - "values": [ - "Justice" - ] - }, - { - "text": "Elaborate a development plan with a view, inter alia, to eradicate extreme poverty and hunger as the most daunting challenge of the country, and to provide access to education, health care for all its citizens, particularly women and children", - "values": [ - "Poverty", - "Right to education", - "Right to food", - "Right to health" - ] - }, - { - "text": "Continue to raise, in the negotiations with international lenders, the need to protect economic, social and cultural rights in the context of the national assistance program, bearing in mind that the institutions involved, including international financial institutions, should fully take into consideration Greece's obligations under the relevant human rights treaties", - "values": [ - "CP rights - general", - "ESC rights - general", - "International instruments" - ] - }, - { - "text": "Consent, as early as possible, to all outstanding requests by special procedures to visit Bolivia", - "values": [ - "Special procedures" - ] - }, - { - "text": "Review the list of crimes punishable by death and bring the enforcement of capital punishment into line with international standards, with a view to the reintroduction of the moratorium and the eventual abolition of the death penalty", - "values": [ - "Death penalty" - ] - }, - { - "text": "Continue its pro-people policies and share its experiences with countries in a comparable situation ", - "values": [ - "Other" - ] - }, - { - "text": "Adopt as a matter of priority legislative and other measures to guarantee gender equality and strengthen efforts to eradicate customs and traditions that discriminate women, and that the minimum legal age for marriage of girls is increased to 18 years.", - "values": [ - "Rights of the Child", - "Women's rights" - ] - }, - { - "text": "Ensure that all counter-terrorism measures undertaken fully comply with the Constitution, the rule of law and international human rights obligations", - "values": [ - "Counter-terrorism", - "International instruments" - ] - }, - { - "text": "Put in place policies, legal frameworks and executive actions for human development and empowerment of women", - "values": [ - "Women's rights" - ] - }, - { - "text": "As a follow-up to the recommendations from the second cycle contained in A/HRC/21/3, paras. 129.19, 129.22, 129.27, 129.39, 129.40, 129.43, 129.78, 129.88, 129.93 and 131.7, intensify efforts towards improving the economic, social and cultural rights of the female population, with their full participation", - "values": [ - "ESC rights - general", - "UPR process", - "Women's rights" - ] - }, - { - "text": "Continue efforts to combat child labour", - "values": [ - "Labour", - "Rights of the Child" - ] - }, - { - "text": "Consider increasing the minimum age of marriage for girls ", - "values": [ - "Rights of the Child", - "Women's rights" - ] - }, - { - "text": "Complete the process of withdrawing its general reservation to CEDAW ", - "values": [ - "International instruments", - "Women's rights" - ] - }, - { - "text": "Strengthen its policy aimed at the full guarantee of children's rights, with attention to the implementation of the Guidelines for the Alternative Care of Children, in accordance with Human Rights Council resolution 11-7 and General Assembly resolution 64-142", - "values": [ - "Rights of the Child" - ] - }, - { - "text": "Reinforce its efforts to combat racism by taking measures to adopt comprehensive anti-discrimination legislation ", - "values": [ - "Racial discrimination" - ] - }, - { - "text": "Implement the National Development Vision 2025 and the national strategies for growth and reduction of poverty", - "values": [ - "Development", - "Poverty" - ] - }, - { - "text": "Pay more focused attention to the issues of gender discrimination and domestic violence ", - "values": [ - "Rights of the Child", - "Women's rights" - ] - }, - { - "text": "Continue its efforts in providing a decent standard of living for its people, and provide them with enforced social security ", - "values": [ - "ESC rights - general" - ] - }, - { - "text": "Stay steadfast in promoting adequate social policies that aim to achieve just distribution of wealth and social wellbeing of the population ", - "values": [ - "ESC rights - general" - ] - }, - { - "text": "Trust be generated, through in-depth democratic reforms and promoting national social and political dialogue, that is inclusive and representative, to address the country's central issues ", - "values": [ - "Other" - ] - }, - { - "text": "Fully enforce the commitment to abolishing female genital mutilation ", - "values": [ - "Rights of the Child", - "Torture and other CID treatment", - "Women's rights" - ] - }, - { - "text": "Continue strengthening the role of the Ombudsman's office, including its ability to follow up on the results of its investigations, and increase efforts to provide it with sufficient funding.", - "values": [ - "National Human Rights Institution" - ] - }, - { - "text": "Increase efforts to implement the laws on violence against women and to extend the area of influence of the National Institute for Women, providing legal assistance to victims of domestic violence ", - "values": [ - "Women's rights" - ] - }, - { - "text": "Provide the families concerned with all available and relevant information on the cases of persons who have disappeared ", - "values": [ - "Enforced disappearances" - ] - }, - { - "text": "Adopt measures to ensure full enjoyment of rights and equality to lesbian, gay, bisexual, transgender and intersex people, both in terms of legislation as well as on policies and practices", - "values": [ - "Sexual Orientation and Gender Identity" - ] - }, - { - "text": "Fully abolish the death penalty, in accordance with the Second Optional Protocol to the International Covenant on Civil and Political Rights", - "values": [ - "Death penalty", - "International instruments" - ] - }, - { - "text": "Ensure that laws do not criminalize legitimate freedom of expression, association and assembly", - "values": [ - "Freedom of association and peaceful assembly", - "Freedom of opinion and expression" - ] - }, - { - "text": "Take further steps in order to strengthen the protection of victims of trafficking", - "values": [ - "Trafficking" - ] - }, - { - "text": "Continue to implement the Press and Publication Act in accordance with international standards ", - "values": [ - "Freedom of the press" - ] - }, - { - "text": "Give further impetus to the approval by the Parliament of the new statutes of the CNDHC in accordance with the Paris Principles for the national human rights institutions ", - "values": [ - "National Human Rights Institution" - ] - }, - { - "text": "Explore the possibility of a moratorium on the application of the death penalty towards its complete abolition, in conformity with the latest General Assembly resolutions on the subject.", - "values": [ - "Death penalty" - ] - }, - { - "text": "Continue its efforts to provide full access to education and to reduce the mortality rate through the improvement of health care services", - "values": [ - "Right to education", - "Right to health" - ] - }, - { - "text": "Complete the review of legislative codes on preventing and punishing torture by 2014", - "values": [ - "Torture and other CID treatment" - ] - }, - { - "text": "Continue improving the national legislative framework on the rehabilitation of victims of trafficking", - "values": [ - "Trafficking" - ] - }, - { - "text": "Strengthen the National Office against Racial Discrimination -UNAR-, as Italy had accepted in the previous UPR cycle", - "values": [ - "Racial discrimination", - "UPR process" - ] - }, - { - "text": "Continue to strengthen the national framework for the protection of children\u2019s rights", - "values": [ - "Rights of the Child" - ] - }, - { - "text": "Take concrete measures to eliminate the worst forms of child labour and revise the decree on labour inspections in order to take into account the possibility of allowing labour inspectors to inspect working conditions for children in the informal sector", - "values": [ - "Labour", - "Rights of the Child" - ] - }, - { - "text": "Take appropriate measures to guarantee that all legal provisions, and especially those of the Civil Code and customary practices, are in conformity with the minimum age for marriage which, under the Constitution, is 18 years ", - "values": [ - "Rights of the Child" - ] - }, - { - "text": "Give individuals, groups and organs of society the legitimacy and recognition to promote human rights and express their opinions or dissent publicly ", - "values": [ - "Civil society", - "Freedom of opinion and expression", - "Human rights defenders" - ] - }, - { - "text": "Consider intensifying its efforts to eliminate discrimination against migrants", - "values": [ - "Migrants" - ] - }, - { - "text": "Take concrete measures to put an end to Islamophobia and hate speech regarding Muslims, which continues to be widespread in public and political debate", - "values": [ - "Freedom of religion and belief", - "Racial discrimination" - ] - }, - { - "text": "Further strengthen and support the independence and impartiality of the Procuraduria para la Defensa de los Derechos Humanos and ensure that it fully adheres to the Paris Principles", - "values": [ - "National Human Rights Institution" - ] - }, - { - "text": "Streamline the process for the establishment of the national mechanism for the prevention of torture, ensuring broad and inclusive participation in the same", - "values": [ - "Detention", - "Torture and other CID treatment" - ] - }, - { - "text": "Desist from campaigns and threats against human rights defenders and ensure the investigation by an independent police commission into missing persons from this group, in line with the LLRC report recommendations on involuntary disappearances in a wider context", - "values": [ - "Enforced disappearances", - "Human rights defenders", - "Justice" - ] - }, - { - "text": "Take effective legal measures to prevent and combat the dissemination of racist, xenophobic and Islamophobic propaganda, particularly in the press and on the internet ", - "values": [ - "Freedom of religion and belief", - "Racial discrimination" - ] - }, - { - "text": "Accelerate its poverty alleviation programmes.", - "values": [ - "Poverty" - ] - }, - { - "text": "Continue efforts to promote and protect the rights of migrants, particularly those of female domestic workers ", - "values": [ - "Labour", - "Migrants", - "Women's rights" - ] - }, - { - "text": "Criminalize domestic violence and marital rape", - "values": [ - "Rights of the Child", - "Women's rights" - ] - }, - { - "text": "Consider lifting reservations on a number of articles of the International Covenant on Civil and Political Rights (ICCPR), the International Convention on the Elimination of All Forms of Racial Discrimination (ICERD), the Convention on the Elimination of All Forms of Discrimination against Women (CEDAW) and the Convention against Torture (CAT) ", - "values": [ - "CP rights - general", - "International instruments", - "Racial discrimination", - "Torture and other CID treatment", - "Women's rights" - ] - }, - { - "text": "Consider issuing a standing invitation to Special Procedures mandate holders", - "values": [ - "Special procedures" - ] - }, - { - "text": "Continue to strictly observe the stipulations on evidence used to examine and decide on cases of the death penalty and adopt stricter standards in this regard", - "values": [ - "Death penalty" - ] - }, - { - "text": "Consider withdrawing the reservation made on article 16 to the Convention on the Elimination of All Forms of Discrimination against Women", - "values": [ - "International instruments", - "Women's rights" - ] - }, - { - "text": "Take all necessary measures to execute arrest warrants issued by the International Criminal Court. ", - "values": [ - "International instruments", - "Justice" - ] - }, - { - "text": "Quickly establish an independent and effective police complaints mechanism ", - "values": [ - "Justice" - ] - }, - { - "text": "Improve access for women to sexual and reproductive health rights and services", - "values": [ - "Right to health", - "Women's rights" - ] - }, - { - "text": "Investigate the torture and death of 18,000 detainees in its prisons since March 2011, and publish a clear report on the subject", - "values": [ - "Extrajudicial executions", - "Human rights violations by state agents", - "Torture and other CID treatment" - ] - }, - { - "text": "Consider withdrawing its reservations on Articles 76 and 77 of the International Convention on the Protection of the Rights of the All Migrant Workers and Their Families", - "values": [ - "International instruments", - "Labour", - "Migrants" - ] - }, - { - "text": "Increase efforts to ensure implementation of legislation guaranteeing the principles of non-discrimination and adopting a comprehensive strategy to eliminate all forms of discrimination, particularly gender-based.", - "values": [ - "Women's rights" - ] - }, - { - "text": "Accede to the Convention against Torture and the Optional Protocol thereto, together with the establishment of an effective national preventive mechanism, according to the Protocol", - "values": [ - "Detention", - "International instruments", - "Torture and other CID treatment" - ] - }, - { - "text": "Pass legislation to prevent and criminalize all forms of violence against women, and provide law enforcement with training and education to ensure its effective implementation", - "values": [ - "Human rights education and training", - "Women's rights" - ] - }, - { - "text": "Accord a high priority to the implementation of legislation addressing violence against women", - "values": [ - "Women's rights" - ] - }, - { - "text": "Consider the possibility of acceding to ICRMW and intensify efforts to prevent discrimination against this population\n\n", - "values": [ - "International instruments", - "Labour", - "Migrants" - ] - }, - { - "text": "Set specific, measurable, achievable and relevant goals, in consultation with all stakeholders, in order to reduce bureaucracy", - "values": [ - "Other" - ] - }, - { - "text": "Pass comprehensive anti-trafficking in persons legislation", - "values": [ - "Trafficking" - ] - }, - { - "text": "Intensify efforts to prevent violations of children\u2019s rights and accelerate the adoption and implementation of laws prohibiting harmful practices against women and girls, including trokosi and female genital mutilation", - "values": [ - "Rights of the Child", - "Torture and other CID treatment", - "Women's rights" - ] - }, - { - "text": "Strengthen the national mechanisms to improve the protection of the rights of children", - "values": [ - "Rights of the Child" - ] - }, - { - "text": "Celebrate 25 March every year as a National Day of Reconciliation in order to enhance reconciliation in the society ", - "values": [ - "Other" - ] - }, - { - "text": "Take further steps to ensure the representation of women in senior levels within the public and private sectors is increased ", - "values": [ - "Women's rights" - ] - }, - { - "text": "Implement a comprehensive strategy aimed at modifying or eliminating patriarchal attitudes and stereotypes which discriminate against women, in accordance with the provisions of CEDAW, included in the educational system, promote campaigns in the media to strengthen the understanding of equality between women and men, as well as expand public education programmes, particularly in rural and remote areas ", - "values": [ - "Human rights education and training", - "International instruments", - "Women's rights" - ] - }, - { - "text": "Seek international cooperation in order to improve its electoral system, prior to the presidential and provincial elections due in 2014, and the election due in 2015 ", - "values": [ - "Elections" - ] - }, - { - "text": "Take concrete measures to improve the realization of the right to education by the Roma children, taking also into account special education needs.", - "values": [ - "Minorities" - ] - }, - { - "text": "Continue the positive work on the domestication of human rights treaties as indicated in the midterm report", - "values": [ - "International instruments", - "UPR process" - ] - }, - { - "text": "Adopt concrete measures to encourage stronger participation by women and ethnic minorities in political decision-making processes", - "values": [ - "Minorities", - "Women's rights" - ] - }, - { - "text": "Develop a national strategy for human rights education in the school system in accordance with the Plan of Action of the World Programme, which outlines a process, including an assessment of the current situation as well as the development of a national strategy, with the full participation of all relevant stakeholders ", - "values": [ - "Human rights education and training" - ] - }, - { - "text": "Wider availability of multi-denominational and non-denominational schools to better cater to the multi-cultural society in Ireland today", - "values": [ - "Right to education" - ] - }, - { - "text": "Make further efforts to eradicate child labour and protect juvenile workers", - "values": [ - "Labour", - "Rights of the Child" - ] - }, - { - "text": "Halt all executions and establish a moratorium on the death penalty with a view to abolishing the capital punishment", - "values": [ - "Death penalty" - ] - }, - { - "text": "Finalize, with international technical and financial assistance, measures for the creation of a national human rights institution ", - "values": [ - "National Human Rights Institution", - "Technical assistance and cooperation" - ] - }, - { - "text": "Consider reviewing its declaration regarding article 20 (2) of the International Covenant on Civil and Political Rights ", - "values": [ - "Freedom of religion and belief", - "International instruments", - "Racial discrimination" - ] - }, - { - "text": "Inscribe a legal definition of discrimination in its national law", - "values": [ - "Other" - ] - }, - { - "text": "Remove any categorization by religion on State documents including ID cards", - "values": [ - "Freedom of religion and belief" - ] - }, - { - "text": "Issue a standing invitation to special procedures ", - "values": [ - "Special procedures" - ] - }, - { - "text": "Take on board the concerns expressed in connection with the implementation of the right to education for all citizens ", - "values": [ - "Right to education" - ] - }, - { - "text": "Consider increasing, if possible, the funds devoted to ensuring the implementation of programmes for the protection of victims of violence against women and to ensuring that women have access to information and health-care services ", - "values": [ - "Women's rights" - ] - }, - { - "text": "Consider becoming a party to ICRMW as recommended previously ", - "values": [ - "International instruments", - "Labour", - "Migrants", - "UPR process" - ] - }, - { - "text": "Expand public awareness campaigns to cover effectively all forms of slavery", - "values": [ - "Human rights education and training" - ] - }, - { - "text": "Consider suspending the enactment of the Protection of State Information Bill, approved last November ", - "values": [ - "Freedom of opinion and expression" - ] - }, - { - "text": "Fully restore the freedom of the media, protecting them from any harassment or intimidation, in accordance with its international obligations", - "values": [ - "Freedom of the press" - ] - }, - { - "text": "Harmonize efforts and coordinate the roles and tasks of stakeholders involved in managing access to drinking water and sanitation to ensure provision of drinking water, in particular for rural populations ", - "values": [ - "Right to water and sanitation" - ] - }, - { - "text": "Ensure that all allegations of torture and ill-treatment are thoroughly investigated by an independent mechanism", - "values": [ - "Torture and other CID treatment" - ] - }, - { - "text": "Lift its reservations to articles 26 (c), 37 and 40 of the CRC ", - "values": [ - "International instruments", - "Rights of the Child" - ] - }, - { - "text": "Continue and strengthen, with international support and cooperation, its efforts to mitigate the negative impact of climate change, as well as disaster management programmes", - "values": [ - "Environment", - "Technical assistance and cooperation" - ] - }, - { - "text": "Follow up on recommendations that the special procedures about Bahrain.", - "values": [ - "Special procedures" - ] - }, - { - "text": "Ensure the protection of the rights of refugees and combat discrimination to which some of them are victims ", - "values": [ - "Asylum-seekers - refugees" - ] - }, - { - "text": "Continue to engage the United Nations with a view to fully benefit from the United Nations Technical Cooperation Programme in the field of human rights ", - "values": [ - "Technical assistance and cooperation" - ] - }, - { - "text": "Strengthen the administrative and budgetary autonomy of the Senegalese Committee for Human Rights", - "values": [ - "National Human Rights Institution" - ] - }, - { - "text": "Address human rights abuses perpetrated by Netherlands companies abroad", - "values": [ - "Business and human rights" - ] - }, - { - "text": "Continue its efforts and initiatives against organized crime and conflict of interest", - "values": [ - "Corruption", - "Public security" - ] - }, - { - "text": "Adopt a moratorium on the execution of the death penalty, with a view to a final abolition of the death penalty", - "values": [ - "Death penalty" - ] - }, - { - "text": "Continue efforts to improve the social sectors, including through technical assistance ", - "values": [ - "ESC rights - general", - "Technical assistance and cooperation" - ] - }, - { - "text": "Guarantee for all undocumented migrants access to the same healthcare system, on the same basis, as persons with residence permits ", - "values": [ - "Migrants" - ] - }, - { - "text": "Continue strengthening the necessary policies to promote gender equality, with a focus on education, on adopting awareness campaigns for the population against gender violence, and on putting in place specific legislation that criminalizes violence against women", - "values": [ - "Human rights education and training", - "Right to education", - "Women's rights" - ] - }, - { - "text": "Continue to implement judicial reforms in the country", - "values": [ - "Justice" - ] - }, - { - "text": "Increase the number of competent personnel in the Public Prosecutor's office working to combat violence against women ", - "values": [ - "Women's rights" - ] - }, - { - "text": "Consider repealing the provisions imposing life imprisonment on minors, in line with the recommendations of the Committee on the Rights of the Child ", - "values": [ - "Justice", - "Rights of the Child", - "Treaty bodies" - ] - }, - { - "text": "Facilitate the visit of the Special Rapporteur on contemporary forms of racism, racial discrimination, xenophobia and related intolerance", - "values": [ - "Racial discrimination", - "Special procedures" - ] - }, - { - "text": "Carry out judicial investigations into the crimes against journalists", - "values": [ - "Freedom of the press" - ] - }, - { - "text": "Adopt legislation on prevention of all forms of violence against women and gender-based discrimination ", - "values": [ - "Women's rights" - ] - }, - { - "text": "Ratify the main international human rights treaties whose ratification is still pending, like the Optional Protocols of CRC and CEDAW", - "values": [ - "International instruments", - "Rights of the Child", - "Women's rights" - ] - }, - { - "text": "Continue to improve its policies and programmes towards advancing the status of women, girls' education, children with disabilities, as well as strengthening measures and mechanisms on administration of justice, investments in prison infrastructure, protection of detainees' rights, and the overall enjoyment of civil and political rights", - "values": [ - "CP rights - general", - "Detention", - "Justice", - "Rights of the Child", - "Women's rights" - ] - }, - { - "text": "Continue to promote equality between men and women in the application of their national legislation and the implementation of public policies", - "values": [ - "Women's rights" - ] - }, - { - "text": "Source more funds for capacity building in order to strengthen various institutions ", - "values": [ - "General" - ] - }, - { - "text": "Continue its cooperation with ILO and other relevant mechanisms to ensure full respect for the rights of the child consistent with international law, particularly human rights law ", - "values": [ - "International instruments", - "Rights of the Child" - ] - }, - { - "text": "Live up to all its obligations under international humanitarian law and international human rights law and provide immediate, full and unhindered humanitarian access to all populations in need throughout the Syrian Arab Republic", - "values": [ - "International humanitarian law" - ] - }, - { - "text": "Increase budgetary allocation to the agricultural sector, so as to improve food security in its endeavours to further the protection and promotion of human rights of the Korean people ", - "values": [ - "Right to food" - ] - }, - { - "text": "Formalize its acceptance of the special procedures by issuing a standing invitation to all special procedures", - "values": [ - "Special procedures" - ] - }, - { - "text": "Through the ratification of this Convention, [Convention on the Protection of Children Against Sexual Exploitation and Sexual Abuse] Malta pledged to enhance its efforts in combating sexual violence against children", - "values": [ - "International instruments", - "Rights of the Child" - ] - }, - { - "text": "Equatorial Guinea committed itself to study each and every recommendation carefully, with the will to implement them.", - "values": [ - "UPR process" - ] - }, - { - "text": "Continue bolstering the investigative and prosecutorial resources in order to conduct prompt, transparent, credible and effective investigations of the killing of journalists since March 2010, and effectively prosecute those responsible for these crimes", - "values": [ - "Extrajudicial executions", - "Freedom of the press" - ] - }, - { - "text": "Introduce awareness-raising activities with the aim of eliminating conditions and attitudes perpetuating discrimination against Haitian migrants as well as the Dominicans of Haitian descent ", - "values": [ - "Migrants", - "Minorities", - "Racial discrimination" - ] - }, - { - "text": "Repeal all discriminatory provisions in national law based on gender ", - "values": [ - "Women's rights" - ] - }, - { - "text": "Ratify the Convention on the Rights of Persons with Disabilities and the International Convention for the Protection of All Persons from Enforced Disappearance, and incorporate in national legislation a distinct crime of torture in strict compliance with Article 1 of the Convention against Torture and Other Cruel, Inhuman or Degrading Treatment or Punishment ", - "values": [ - "Disabilities", - "Enforced disappearances", - "International instruments", - "Torture and other CID treatment" - ] - }, - { - "text": "Take concrete measures to ensure that efforts to counter terrorism are carried out in full compliance with the Constitution and international human rights obligations, including respect for fair trial guarantees and freedom of expression ", - "values": [ - "Counter-terrorism", - "Freedom of opinion and expression", - "International instruments", - "Justice" - ] - }, - { - "text": "Implement the recommendations of the United Nations Special Rapporteur on torture and meaningfully investigate all allegations of torture", - "values": [ - "Special procedures", - "Torture and other CID treatment" - ] - }, - { - "text": "Resolve outstanding commitments with the human rights mechanisms and special procedures through the preparation of outstanding reports and the facilitation of requested visits of three Special Rapporteurs", - "values": [ - "Special procedures", - "Treaty bodies", - "UPR process" - ] - }, - { - "text": "Update the constitutional provisions regarding the definition of a child to be in harmony with the overall definition in the Convention on the Rights of the Child", - "values": [ - "International instruments", - "Rights of the Child" - ] - }, - { - "text": "Ratify the Optional Protocol to the Convention on the Elimination of All Forms of Discrimination against Women and the International Convention on the Protection of the Rights of All Migrant workers and Members of their Families ", - "values": [ - "International instruments", - "Labour", - "Migrants", - "Women's rights" - ] - }, - { - "text": "Swiftly enact the Marriage and Divorce Bill of 2009 to end discrimination against women in family law and enact a new succession act promoting equal inheritance rights for both women and men", - "values": [ - "Women's rights" - ] - }, - { - "text": "Strengthen the legal protection for migrant workers to eliminate cases of abuse and exploitation", - "values": [ - "Migrants" - ] - }, - { - "text": "Continue the consideration of its accession to the Rome Statute of the International Criminal Court", - "values": [ - "International instruments", - "Justice" - ] - }, - { - "text": "Intensify efforts to enhance women's participation in the decision-making process in both public and private sectors, in accordance with the progress achieved in the field of education of women ", - "values": [ - "Women's rights" - ] - }, - { - "text": "Take steps to eliminate graft within the public sector so that the enjoyment of human rights is not imperilled by rent-seeking within Government.", - "values": [ - "Corruption" - ] - }, - { - "text": "Better the conditions of urban schools, especially in the poor neighbourhoods", - "values": [ - "Poverty", - "Right to education" - ] - }, - { - "text": "Consider ratifying pending treaties such as OP-CEDAW and ICRMW ", - "values": [ - "International instruments", - "Labour", - "Migrants", - "Women's rights" - ] - }, - { - "text": "Establish an independent National Human Rights Institution in full compliance with the Paris Principles", - "values": [ - "National Human Rights Institution" - ] - }, - { - "text": "Issue a standing invitation to special procedure mandate holders ", - "values": [ - "Special procedures" - ] - }, - { - "text": "Decriminalize defamation and place it within the civil code in accordance with international standards", - "values": [ - "Freedom of opinion and expression" - ] - }, - { - "text": "Remove all obstacles faced by women in accessing justice, and ensure that decisions are not contrary to the law and do not result in extrajudicial punishments ", - "values": [ - "Justice", - "Women's rights" - ] - }, - { - "text": "Enhance the protection of journalists while guaranteeing their independence", - "values": [ - "Freedom of the press" - ] - }, - { - "text": "Ensure that its legal and institutional frameworks are in line with international human rights standards", - "values": [ - "International instruments" - ] - }, - { - "text": "Establish an independent national human rights institution in conformity with the Paris Principles, providing it with the necessary human and financial resources to effectively exercise its functions, including the investigation of allegations of torture ", - "values": [ - "National Human Rights Institution", - "Torture and other CID treatment" - ] - }, - { - "text": "Establish care centres for victims of domestic violence ", - "values": [ - "Rights of the Child", - "Women's rights" - ] - }, - { - "text": "Take all necessary measures to combat discrimination against homosexuals", - "values": [ - "Sexual Orientation and Gender Identity" - ] - }, - { - "text": "Continue with the efforts to ratify the International Convention for the Protection of All Persons from Enforced Disappearances ", - "values": [ - "Enforced disappearances", - "International instruments" - ] - }, - { - "text": "Include the expansion of bilingual education (education in mother tongue) during the first years of primary schooling in the next education sector strategy programme ", - "values": [ - "Right to education" - ] - }, - { - "text": "Bolster the constitutional Bill of Rights by acceding to ICCPR and the first Optional Protocol thereto and, in that context, initiate a process in order to ensure compatibility of existing national laws and decrees with the new Constitution. Part of this process should be strengthening the judiciary", - "values": [ - "CP rights - general", - "International instruments", - "Justice" - ] - }, - { - "text": "Strengthen efforts to harmonize national human rights legislation with the relevant international instruments", - "values": [ - "International instruments" - ] - }, - { - "text": "Expedite the approval of the new statute of the CNDHC and distribute it widely", - "values": [ - "National Human Rights Institution" - ] - }, - { - "text": "Undertake a process of broad, national consultations with civil society, including the Danish Institute for Human Rights, in the follow-up to this review ", - "values": [ - "Civil society", - "National Human Rights Institution", - "UPR process" - ] - }, - { - "text": "Pursue the implementation of the Public Policy and the National Action Plan on Human Rights 2013-2022", - "values": [ - "General" - ] - }, - { - "text": "Explicitly prohibit the corporal punishment of children in all settings ", - "values": [ - "Rights of the Child", - "Torture and other CID treatment" - ] - }, - { - "text": "Consider signing and ratifying the International Convention for the Protection of All Persons from Enforced Disappearance and the International Convention on the Protection of the Rights of All Migrant Workers and Members of Their Families ", - "values": [ - "Enforced disappearances", - "International instruments", - "Labour", - "Migrants" - ] - }, - { - "text": "Invest in education to provide education for all ", - "values": [ - "Right to education" - ] - }, - { - "text": "Promote non-discrimination and inclusion campaigns with particular focus on migrants and people with albinism", - "values": [ - "Migrants", - "Minorities", - "Racial discrimination" - ] - }, - { - "text": "Expedite necessary legislative measures to expressly prohibit corporal punishment in all settings, including the family and alternative care settings", - "values": [ - "Rights of the Child", - "Torture and other CID treatment" - ] - }, - { - "text": "Continue implementing the plans, programs and measures aimed at guaranteeing the right to education and access to appropriate health services for all citizens", - "values": [ - "Right to education", - "Right to health" - ] - }, - { - "text": "Take effective steps to ensure gender equality and counteract violence against women ", - "values": [ - "Women's rights" - ] - }, - { - "text": "Analyse the results of the policy of inclusion of the Roma, assess the remaining challenges yet to be addressed, especially regarding the fate of women and girls, and attach measures to it as well as reserve the required budget", - "values": [ - "Minorities", - "Rights of the Child", - "Women's rights" - ] - }, - { - "text": "Continue openness to a constructive dialogue with all members of the civil society ", - "values": [ - "Civil society" - ] - }, - { - "text": "Take all necessary measures to prevent illegal treatment by law enforcement bodies, ensure impartial investigation of all reports of torture and ill-treatment in order to bring the offenders to justice ", - "values": [ - "Human rights violations by state agents", - "Torture and other CID treatment" - ] - }, - { - "text": "Strengthen the mainstreaming of environmental rights within the elaboration and implementation of development strategies", - "values": [ - "Development", - "Environment" - ] - }, - { - "text": "On migrant workers: ratify ILO Convention No. 189 concerning decent work for domestic workers and abandon the current Kafala system", - "values": [ - "International instruments", - "Labour", - "Migrants" - ] - }, - { - "text": "Continue strengthening its actions on the elimination of violence against women", - "values": [ - "Women's rights" - ] - }, - { - "text": "Provide the Office of the Human Rights Commissioner with sufficient financing to fulfil its obligations", - "values": [ - "Technical assistance and cooperation" - ] - }, - { - "text": "Adopt the necessary measures to combat sexual exploitation and adopt a law providing a legal framework to protect minors from sexual exploitation", - "values": [ - "Rights of the Child", - "Women's rights" - ] - }, - { - "text": "Consider heeding the appeals to proceed with the ratification of the remaining core human rights treaties, including ICERD, CAT and CRPD", - "values": [ - "Disabilities", - "International instruments", - "Racial discrimination", - "Torture and other CID treatment" - ] - }, - { - "text": "Adopt a legal definition of all forms of discrimination against women and take affirmative measures, allowing the elimination of direct and indirect discrimination ", - "values": [ - "Women's rights" - ] - }, - { - "text": "Strengthen its efforts to properly respond to allegations of domestic violence, including by training police officers, prosecutors and judges, and to ensure that women victims of violence obtain adequate redress and support", - "values": [ - "Human rights education and training", - "Rights of the Child", - "Women's rights" - ] - }, - { - "text": "Reinforce mechanisms to detect and investigate cases of domestic violence and train law enforcement officials to deal with such cases", - "values": [ - "Rights of the Child", - "Women's rights" - ] - }, - { - "text": "Define racial discrimination as an offence in domestic law in keeping with CERD's observation in 2010 and implement the recommendation of CERD to step up efforts to recognize itself as a multi-ethnic State", - "values": [ - "Racial discrimination", - "Treaty bodies" - ] - }, - { - "text": "Committed to strengthening its judicial and judiciary institutions, as set out in the Strategic Plan for the Justice Sector (2011-2030), within a framework of independence and technical rigour, ensuring the increased access to justice. This commitment will take the form of a clear focus on the training of legal professionals, consolidation of the activity of private lawyers and investment in infrastructures", - "values": [ - "Justice" - ] - }, - { - "text": "Take measures to provide the Office of the Ombudsman with adequate resources ", - "values": [ - "National Human Rights Institution" - ] - }, - { - "text": "Amend, if necessary, the relevant discriminatory legal provision concerning the transfer of citizenship to children of women in mixed marriages", - "values": [ - "Rights of the Child", - "Statelessness and the right to nationality", - "Women's rights" - ] - }, - { - "text": "Continue negotiations with a view to peacefully settling the remaining stipulations of the CPA, particularly with regard to issues like border demarcation, foreign debts, oil and water sharing and citizenship, with the understanding that nobody will be stateless", - "values": [ - "Right to water and sanitation", - "Statelessness and the right to nationality" - ] - }, - { - "text": "Consider ratifying the International Convention for the Protection of All Persons from Enforced Disappearance, and accept the competence of the Committee on Enforced Disappearances", - "values": [ - "Enforced disappearances", - "International instruments", - "Treaty bodies" - ] - }, - { - "text": "Continue efforts, in consultation with indigenous peoples, towards addressing the issue of the rights of indigenous peoples through the application of Convention No. 169 and the realization of the principles established in the United Nations Declaration on the Rights of Indigenous Peoples", - "values": [ - "Indigenous peoples", - "International instruments" - ] - }, - { - "text": "Adopt legislative and administrative regulations that allow immigrants to file an appeal against forced removal, with suspensive effects, in cases in which they could be subject to torture or other ill treatment in their countries of origin ", - "values": [ - "Migrants", - "Torture and other CID treatment" - ] - }, - { - "text": "Take concrete steps to encourage and facilitate open and public debate on religious issues ", - "values": [ - "Freedom of religion and belief" - ] - }, - { - "text": "Take concrete measures to fight domestic violence, to prosecute perpetrators and to protect the victims of such practices, as well as to enhance the effectiveness and the financing of the police's specialized unit, the "Family Squad"", - "values": [ - "Rights of the Child", - "Women's rights" - ] - }, - { - "text": "Adopt the Law on the Rights of the Child and the Law against Discrimination as matters of priority, as well as measures to ensure the implementation of laws on birth registration ", - "values": [ - "Rights of the Child", - "Statelessness and the right to nationality" - ] - }, - { - "text": "Commute death sentences to prison terms ", - "values": [ - "Death penalty" - ] - }, - { - "text": "Ensure that no unnecessary or arbitrary legal or administrative restrictions on the legitimate work of civil society are in effect", - "values": [ - "Civil society" - ] - }, - { - "text": "Immediately publish a timeline ensuring that legislation, including the Public Order and Security Act, the Access to Information and Protection of Privacy Act and relevant electoral legislation, will be aligned with the Constitution before the end of the eighth session of Parliament", - "values": [ - "Freedom of opinion and expression", - "Privacy" - ] - }, - { - "text": "Put in place a concrete national strategy to disseminate a culture of human rights and to ensure the long-term protection of these rights.", - "values": [ - "Human rights education and training" - ] - }, - { - "text": "Take measures to combat violence against women and children", - "values": [ - "Rights of the Child", - "Women's rights" - ] - }, - { - "text": "Intensify prosecution and preventive measures in order to further protect women and to generate greater awareness of gender-based violence ", - "values": [ - "Human rights education and training", - "Women's rights" - ] - }, - { - "text": "Take all necessary measures to guarantee the safety of human rights defenders and journalists as they carry out their tasks", - "values": [ - "Human rights defenders" - ] - }, - { - "text": "Further its efforts towards the establishment of a national human rights institution that is compliant with the Paris Principles", - "values": [ - "National Human Rights Institution" - ] - }, - { - "text": "Accelerate the ratification of all international human rights instruments", - "values": [ - "International instruments" - ] - }, - { - "text": "Take measures to protect women accused of witchcraft ", - "values": [ - "Rights of the Child", - "Women's rights" - ] - }, - { - "text": "Continue efforts to improve conditions in prisons and pre-trial facilities", - "values": [ - "Detention" - ] - }, - { - "text": "Continue to give special attention to the rights of children and women asylum seekers, in particular by providing shelter, and ensuring their protection from violence ", - "values": [ - "Asylum-seekers - refugees", - "Rights of the Child", - "Women's rights" - ] - }, - { - "text": "Further ensure that those who legitimately exercise their rights to freedom of expression and peaceful assembly be not subject to reprisals", - "values": [ - "Freedom of association and peaceful assembly", - "Freedom of opinion and expression" - ] - }, - { - "text": "Ensure the full legal protection of the freedom of children from physical or mental violence, injury or abuse, neglect or negligent treatment, maltreatment or exploitation, including corporal punishment in any setting, and take further practical measures to stem the occurrence of violence against children ", - "values": [ - "Rights of the Child", - "Torture and other CID treatment" - ] - }, - { - "text": "Consider ratifying the International Convention on the Protection of the Rights of All Migrant Workers", - "values": [ - "International instruments", - "Labour", - "Migrants" - ] - }, - { - "text": "Fight racial discrimination by adopting a comprehensive strategy that includes indirect structural and institutional discrimination ", - "values": [ - "Racial discrimination" - ] - }, - { - "text": "Intensify its efforts to combat and prevent malnutrition among children", - "values": [ - "Right to food", - "Rights of the Child" - ] - }, - { - "text": "Recommended the establishment a moratorium on the application of the death penalty with a view to abolish it.", - "values": [ - "Death penalty" - ] - }, - { - "text": "Continue to support employment generation among the young people", - "values": [ - "Development" - ] - }, - { - "text": "Enact legislative measures to facilitate the existence of political parties", - "values": [ - "Freedom of association and peaceful assembly" - ] - }, - { - "text": "Ensure that freedom of speech and of the press is not further restricted as a result of the Interception of Communications Act", - "values": [ - "Freedom of opinion and expression" - ] - }, - { - "text": "Strengthen the capacity of the Lebanese Palestinian Dialogue Commission to assist Palestinian Refugees as a step to improve the human rights and humanitarian situation for Palestinian refugees in Lebanon", - "values": [ - "Asylum-seekers - refugees" - ] - }, - { - "text": "Investigate all cases of threats, intimidation and attacks against media personnel and ensure that those responsible are held accountable", - "values": [ - "Freedom of the press" - ] - }, - { - "text": "Pursue efforts to promote the rights of women and adopt all necessary measures to fight against violence against them ", - "values": [ - "Women's rights" - ] - }, - { - "text": "Continue strengthening measures to address disparities in the access to education and health services for aboriginal and islander children and their families", - "values": [ - "Indigenous peoples", - "Right to education", - "Right to health", - "Rights of the Child" - ] - }, - { - "text": "Make the fight against corruption sustainable by ensuring implementation throughout the county of laws, regulations and practices adopted at the central level in order to prevent corruption. Measures should be taken with the aim to avoid room for local interpretations of these practices ", - "values": [ - "Corruption" - ] - }, - { - "text": "Step up its efforts to ensure the implementation of the First Plan of Action for the National Strategy for the Protection of the Rights of Child 2012 - 2015", - "values": [ - "Rights of the Child" - ] - }, - { - "text": "Promote steady economic development to further improve living standards of its people", - "values": [ - "Development" - ] - }, - { - "text": "Abolish the death penalty completely ", - "values": [ - "Death penalty" - ] - }, - { - "text": "Ratify the International Covenant on Civil and Political Rights (ICCPR) and the two optional protocols thereto ", - "values": [ - "CP rights - general", - "Death penalty", - "International instruments" - ] - }, - { - "text": "Further develop policies to combat domestic and gender-based violence", - "values": [ - "Rights of the Child", - "Women's rights" - ] - }, - { - "text": "Provide the same coverage in national legislation and anti-discrimination training activities for the grounds of sexual orientation and disability as for other grounds of discrimination, for example in areas such as the provision of services and health care.", - "values": [ - "Disabilities", - "Sexual Orientation and Gender Identity" - ] - }, - { - "text": "Continue its efforts in cooperation with the competent bodies in order to secure protection of the rights of the vulnerable groups particularly women and children ", - "values": [ - "Rights of the Child", - "Women's rights" - ] - }, - { - "text": "Ensure that human rights defenders and witnesses are protected and can freely talk to the International Criminal Court investigative team so that the Court can carry out its mission successfully", - "values": [ - "Human rights defenders", - "International instruments", - "Justice" - ] - }, - { - "text": "Take all necessary measures to deter perpetrators and to develop programmes and policies in order to prevent sexual exploitation as well as programmes to socially reintegrate child victims", - "values": [ - "Rights of the Child" - ] - }, - { - "text": "Introduce legislation to prohibit trafficking in children ", - "values": [ - "Rights of the Child", - "Trafficking" - ] - }, - { - "text": "Implement policies and programs that promote tolerance and non- discrimination against lesbian, gay, bisexual, transgender and intersex persons, and to guarantee the compliance with the current norms in order to punish offences and violence motivated by prejudices", - "values": [ - "Sexual Orientation and Gender Identity" - ] - }, - { - "text": "To continue and find additional measures to answer the basic needs of the poor and other vulnerable sectors", - "values": [ - "Poverty" - ] - }, - { - "text": "Take further steps towards the promotion of the human rights situation in Myanmar, especially for ethnic, religious and linguistic minorities and vulnerable groups", - "values": [ - "Freedom of religion and belief", - "Minorities" - ] - }, - { - "text": "Take additional measures to fully protect the human rights of all persons with disabilities, including to preclude involuntary hospitalization and coercive health-care approaches, to prioritize free and fully informed consent for medical treatment, and to promote the involvement of persons with disabilities in decision-making related to their well-being", - "values": [ - "Disabilities", - "Right to health" - ] - }, - { - "text": "Develop adolescent-sensitive and confidential counselling services in the area of sexual and reproductive health care and information, with particular regard to adolescent girls", - "values": [ - "Right to health", - "Rights of the Child", - "Women's rights" - ] - }, - { - "text": "Eliminate discrimination against women in law and in practice and take action to promote their participation in public life", - "values": [ - "Women's rights" - ] - }, - { - "text": "Accede to the Convention on the Non-Applicability of Statutory Limitations to War Crimes and Crimes against Humanity without reservations, and implement it in domestic legislation", - "values": [ - "International instruments", - "Justice" - ] - }, - { - "text": "Make it a priority in its future plans to improve the situation of certain vulnerable groups, such as women, particularly those in rural areas, children, and persons with disabilities ", - "values": [ - "Disabilities", - "Rights of the Child", - "Women's rights" - ] - }, - { - "text": "Seek support from the relevant United Nations agencies and programmes in order to establish literacy programmes and strategies for the benefit of the population, in particular school-age children", - "values": [ - "Right to education", - "Rights of the Child", - "Technical assistance and cooperation" - ] - }, - { - "text": "Further promote poverty reduction for the realization of a balanced and inclusive growth", - "values": [ - "Poverty" - ] - }, - { - "text": "Formalize its moratorium on the death penalty with a view to its full abolition", - "values": [ - "Death penalty" - ] - }, - { - "text": "Continue its efforts to fight unequal access to education ", - "values": [ - "Right to education" - ] - }, - { - "text": "Ensure that all children are registered at birth and make every effort to register all persons not previously registered ", - "values": [ - "Rights of the Child" - ] - }, - { - "text": "Continue to take practical steps to expedite the abolition of the death penalty", - "values": [ - "Death penalty" - ] - }, - { - "text": "Consider ratifying OP-CEDAW ", - "values": [ - "International instruments", - "Women's rights" - ] - }, - { - "text": "Enhance the promotion and protection of the right to freedom of thought, conscience and religion, including the right to manifest such individually or in community with others in public or private, in worship, observance, practice and teaching, in line with all the provisions under article 18 of ICCPR, to which the Democratic People's Republic of Korea is a State party", - "values": [ - "Freedom of religion and belief", - "International instruments" - ] - }, - { - "text": "Liechtenstein would intensify its examination of the necessary implementation measures with a view to a possible accession to that convention and its protocol [Convention on the Rights of Persons with Disabilities and its Optional Protocol]. The commitment was made against the background of Liechtenstein's general policy with regard to international treaties, which consists in adapting the relevant national legislation before ratification in order to allow for immediate implementation thereafter.", - "values": [ - "Disabilities", - "International instruments" - ] - }, - { - "text": "Ensure that all children are registered immediately after birth, and ensure that the national legislation regulating birth registration is in line with the Convention on the Rights of the Child", - "values": [ - "International instruments", - "Rights of the Child", - "Statelessness and the right to nationality" - ] - }, - { - "text": "Take appropriate measures to improve the effectiveness and transparency of the strategies and actions to combat corruption ", - "values": [ - "Corruption" - ] - }, - { - "text": "Continue its efforts to fight against discrimination and violence against women, in particular with regard to FGM and forced and early marriages", - "values": [ - "Rights of the Child", - "Torture and other CID treatment", - "Women's rights" - ] - }, - { - "text": "Abolish the practice of corporal punishment", - "values": [ - "Torture and other CID treatment" - ] - }, - { - "text": "Intensify programs to combat poverty ", - "values": [ - "Poverty" - ] - }, - { - "text": "Continue working on improvement of quality education", - "values": [ - "Right to education" - ] - }, - { - "text": "Ratify the International Covenant on Economic, Social and Cultural Rights, the International Covenant on Civil and Political Rights, and the International Convention on the Elimination of All Forms of Racial Discrimination", - "values": [ - "CP rights - general", - "ESC rights - general", - "International instruments", - "Racial discrimination" - ] - }, - { - "text": "Speed up the review of the legal framework on migration and asylum in order to align it with the International Covenant on Civil and Political Rights", - "values": [ - "Asylum-seekers - refugees", - "CP rights - general", - "International instruments", - "Migrants" - ] - }, - { - "text": "Step up the procedure for the ratification of the International Convention on the Protection of the Rights of All Migrant Workers and Their Families", - "values": [ - "International instruments", - "Labour", - "Migrants" - ] - }, - { - "text": "Ratify the International Convention on the Elimination of All Forms of Racial Discrimination, signed in 1973 ", - "values": [ - "International instruments", - "Racial discrimination" - ] - }, - { - "text": "Follow-up on the recommendations from the treaty bodies in the areas of the rights of women, non-discrimination, torture and children ", - "values": [ - "Racial discrimination", - "Rights of the Child", - "Torture and other CID treatment", - "Treaty bodies", - "Women's rights" - ] - }, - { - "text": "Take the necessary measures to strengthen the implementation of the law to criminalize violence against women", - "values": [ - "Women's rights" - ] - }, - { - "text": "Proceed with early ratification of the Convention against Torture and Other Cruel, Inhuman or Degrading Treatment or Punishment, as well as the International Convention for the Protection of All Persons from Enforced Disappearance", - "values": [ - "Enforced disappearances", - "International instruments", - "Torture and other CID treatment" - ] - }, - { - "text": "Continue to give particular attention to empowerment of women, children and other vulnerable sections of the population", - "values": [ - "Rights of the Child", - "Women's rights" - ] - }, - { - "text": "Guarantee the rights of women in law and in practice, including in the labour market, and combat violence against women and impunity for perpetrators", - "values": [ - "Impunity", - "Women's rights" - ] - }, - { - "text": "Take effective measures to implement the National Plan of Action for children (2010-2016) and allocate sufficient funding for implementation", - "values": [ - "Rights of the Child" - ] - }, - { - "text": "Ensure that allegations of harassment of journalists are investigated, that perpetrators are punished, and the independent media are free from unjustified restrictions ", - "values": [ - "Freedom of the press" - ] - }, - { - "text": "Continue to make efforts to expand access to education, especially for girls", - "values": [ - "Right to education", - "Rights of the Child", - "Women's rights" - ] - }, - { - "text": "Carry on with ensuring that children with disabilities have full access to education and health-care services ", - "values": [ - "Disabilities", - "Right to education", - "Right to health", - "Rights of the Child" - ] - }, - { - "text": "Amending or reforming other areas than the Domestic Violence Act of Ugandan legislation where women still face discrimination ", - "values": [ - "Women's rights" - ] - }, - { - "text": "Pursue efforts aimed at ensuring an inclusive education within the framework of the National Plan on Education 2014-2014, in particular in rural areas", - "values": [ - "Right to education" - ] - }, - { - "text": "Develop and implement a mechanism or solid legal measure to eliminate violations committed by the security forces and police", - "values": [ - "Human rights violations by state agents" - ] - }, - { - "text": "Adopt, without delay, a new legislation that fully incorporates the principle of equality of women and men as well as a prohibition of discrimination on the basis of gender in the public and private spheres", - "values": [ - "Women's rights" - ] - }, - { - "text": "Ratify promptly the Optional Protocol to the International Covenant on Civil and Political Rights, on a communications procedure", - "values": [ - "CP rights - general", - "International instruments" - ] - }, - { - "text": "Continue to maintain efforts towards ensuring free primary education for all Madagascan children and promote the right of the girl child to education", - "values": [ - "Right to education", - "Rights of the Child", - "Women's rights" - ] - }, - { - "text": "Continue to make even greater efforts to promote human rights in accordance with the cultural practices that stand side by side the Jordanian society and continue efforts to incorporate them into their national legislation", - "values": [ - "General" - ] - }, - { - "text": "Further promote equal treatment between women and men by increasing national awareness campaigns on gender equality, especially on women's rights", - "values": [ - "Human rights education and training", - "Women's rights" - ] - }, - { - "text": "Strengthen its efforts to enhance the enforcement of the minimum age of recruitment into the military and to draft a new National Plan of Action for children based on the MDGs ", - "values": [ - "Development", - "Rights of the Child" - ] - }, - { - "text": "Ratify the International Convention on the Protection of All Persons from Enforced Disappearances", - "values": [ - "Enforced disappearances", - "International instruments" - ] - }, - { - "text": "Intensify its efforts to resolve outstanding issues in ensuring human rights as mentioned in its national report ", - "values": [ - "General" - ] - }, - { - "text": "Ensure availability of safe abortions, at a minimum in cases where the pregnancy is the result of rape or incest and in cases of severe and fatal foetal impairment", - "values": [ - "Women's rights" - ] - }, - { - "text": "Step up its efforts to detect, prevent and combat trafficking in minors for the purpose of sexual or other forms of exploitation, in accordance with recommendations of the Committee on the Rights of the Child", - "values": [ - "Rights of the Child", - "Trafficking", - "Treaty bodies" - ] - }, - { - "text": "Develop and adopt a comprehensive national plan of action for the incorporation of human rights for women into national legislation and practices to ensure the eradication of violence against women, a dismantling of the male guardianship system, an allowance of the freedom of movement, access to work, study, and health care, as well as equal standing before the courts and the right to vote and participate in public affairs, and incorporate and implement the concluding observations of the Committee on the Elimination of Discrimination against Women", - "values": [ - "Women's rights" - ] - }, - { - "text": "Request technical assistance from the relevant United Nations agencies in order to meet its human rights obligations", - "values": [ - "Technical assistance and cooperation" - ] - }, - { - "text": "Carry out awareness-raising campaigns to curb the trafficking in human beings and sex tourism", - "values": [ - "Human rights education and training", - "Trafficking" - ] - }, - { - "text": "Ratify the Rome Statute of the International Criminal Court and implement it fully at the national level, and accede to the Agreement on the Privileges and Immunities of the International Criminal Court", - "values": [ - "International instruments", - "Justice" - ] - }, - { - "text": "Continue making efforts to combat trafficking in persons, in particular children ", - "values": [ - "Rights of the Child", - "Trafficking" - ] - }, - { - "text": "Continue to consider the possibility of ratifying the Convention on the Protection of the Rights of All Migrant Workers and Members of Their Families, due to its universal nature and specific content, as well as ILO Convention 169, of 1989, concerning Indigenous and Tribal Peoples", - "values": [ - "Indigenous peoples", - "International instruments", - "Labour", - "Migrants" - ] - }, - { - "text": "Prevent use of its territory by foreign terrorist fighters who are engaged in massive human rights violations", - "values": [ - "International instruments" - ] - }, - { - "text": "Take all necessary measures to halt recruitment of children into armed groups and to adopt adequate legislation to prevent further recruitment", - "values": [ - "International humanitarian law", - "Rights of the Child" - ] - }, - { - "text": "Study the possibility of ratifying the International Convention on the Protection of the Rights of All Migrant Workers and Members of Their Families ", - "values": [ - "International instruments", - "Labour", - "Migrants" - ] - }, - { - "text": "Set-up commissions of inquiry for all cases of deaths in custody which take place in the national police, the army, the penitentiary services, etc.", - "values": [ - "Detention", - "Extrajudicial executions" - ] - }, - { - "text": "Keep the fight against poverty, in particular through the implementation of the integrated municipal rural-development and poverty control programs", - "values": [ - "Development", - "Poverty" - ] - }, - { - "text": "Continue efforts to eliminate child labour to attain an harmonic development of children in a spirit of socio-cultural and an environment of protection and well-being", - "values": [ - "Labour", - "Rights of the Child" - ] - }, - { - "text": "Ensure that violence against women and girls constitutes a criminal offence, as well as to ensure the prosecution, punishment and rehabilitation of perpetrators, and the protection and access to immediate means of redress for victims of violence ", - "values": [ - "Rights of the Child", - "Women's rights" - ] - }, - { - "text": "Continue efforts to prevent and combat trafficking in human beings, including in the framework of training professionals and increasing the level of awareness ", - "values": [ - "Trafficking" - ] - }, - { - "text": "That laws, regulations and plans are followed-up with adequate training and resources to ensure that the improved rights of women become a reality on the ground ", - "values": [ - "Women's rights" - ] - }, - { - "text": "Adopt a national action plan on Security Council resolution 1325 (2000) on women, peace and security", - "values": [ - "Women's rights" - ] - }, - { - "text": "Ensure, in its laws and regulations as well as in practice, that no arbitrary impediments are imposed with respect to exercising the right to freedom of assembly ", - "values": [ - "Freedom of association and peaceful assembly" - ] - }, - { - "text": "Establish a national human rights institution, in line with the Paris Principles, which would constitute an important step forward ", - "values": [ - "National Human Rights Institution" - ] - }, - { - "text": "Reform the juvenile justice system, and safeguard the integrity of minors who are held in detention centres", - "values": [ - "Detention", - "Rights of the Child" - ] - }, - { - "text": "Continue implementing its agrarian reform policy and resettlement program by giving land to groups who have been historically disadvantaged", - "values": [ - "Right to land" - ] - }, - { - "text": "Consider the option of ratifying the Convention against Torture and the International Convention for the Protection of All Persons from Enforced Disappearance", - "values": [ - "Enforced disappearances", - "International instruments", - "Torture and other CID treatment" - ] - }, - { - "text": "Take measures to ensure the freedom of children from physical punishment in accordance with the Convention on the Rights of the Child ", - "values": [ - "International instruments", - "Rights of the Child", - "Torture and other CID treatment" - ] - }, - { - "text": "Continue its efforts in closing the gap between indigenous and non-indigenous Australians in health, education, employment opportunities and access to justice", - "values": [ - "Indigenous peoples", - "Justice", - "Labour", - "Right to education", - "Right to health" - ] - }, - { - "text": "Continue the ongoing efforts to ensure the conformity of detention conditions with international standards", - "values": [ - "Detention" - ] - }, - { - "text": "Pursue its efforts to improve the situation of detainees and to take measures in achieving this goal ", - "values": [ - "Detention" - ] - }, - { - "text": "Continue to implement measures to improve and facilitate access to education", - "values": [ - "Right to education" - ] - }, - { - "text": "Take measures to introduce a formal moratorium on executions and take concrete steps toward the abolition of the death penalty", - "values": [ - "Death penalty" - ] - }, - { - "text": "Stop limits on Constitutional rights of peaceful assembly and freedom of expression and release all those imprisoned for exercising their constitutional rights, including media representatives", - "values": [ - "Detention", - "Freedom of association and peaceful assembly", - "Freedom of opinion and expression", - "Freedom of the press" - ] - }, - { - "text": "Ensure the protection of the rights of children, including juveniles who are incarcerated in overcrowded prisons", - "values": [ - "Detention", - "Rights of the Child" - ] - }, - { - "text": "Explicitly criminalize torture and other cruel and inhuman treatment ", - "values": [ - "Torture and other CID treatment" - ] - }, - { - "text": "Implement immediately the National Plan to Reduce Violence against Women and their Children", - "values": [ - "Rights of the Child", - "Women's rights" - ] - }, - { - "text": "With the support of international community continue to strengthen the provision of healthcare services to its people, particularly women and children", - "values": [ - "Right to health", - "Rights of the Child", - "Technical assistance and cooperation", - "Women's rights" - ] - }, - { - "text": "Continue to enhance the rule of law, the legal and judicial system and mechanisms in the country to promote and protect human rights ", - "values": [ - "Justice" - ] - }, - { - "text": "Recommended that the practice of torture and other ill treatment by law enforcement officials be condemned and brought to an end, that immediate independent and impartial investigations into all allegations of such acts be undertaken, and that alleged perpetrators be brought to justice.", - "values": [ - "Human rights violations by state agents", - "Torture and other CID treatment" - ] - }, - { - "text": "Remove children and their families and other individuals at risk, in particular survivors of torture and trauma, from immigration detention centres", - "values": [ - "Detention", - "Migrants", - "Rights of the Child", - "Torture and other CID treatment" - ] - }, - { - "text": "Raise public awareness of the Council of Europe Convention on the Protection of Children against Sexual Exploitation and Sexual Abuse", - "values": [ - "Human rights education and training", - "Rights of the Child", - "Trafficking" - ] - }, - { - "text": "Ensure the effective implementation of the International Commission against Impunity's mandate on the ground as necessary to remove any obstacles for serious international investigations and pay particular attention to the effective implementation of victims' assistance and protection programmes in the fight against impunity.", - "values": [ - "Impunity" - ] - }, - { - "text": "Ratify the ICESCR and its Optional Protocol ", - "values": [ - "ESC rights - general", - "International instruments" - ] - }, - { - "text": "Prohibit the widespread practice of female genital mutilation/cutting in Somalia, including by amending the penal code to ban the practice and bringing legislation into conformity with Article 15 (4) of the Provisional Constitution ", - "values": [ - "Rights of the Child", - "Torture and other CID treatment", - "Women's rights" - ] - }, - { - "text": "Continue to prioritize the promotion and the protection of the rights of women", - "values": [ - "Women's rights" - ] - }, - { - "text": "Put greater efforts to ensure that human rights awareness, including the issue of gender equality, is included in the school curricula ", - "values": [ - "Human rights education and training", - "Right to education", - "Women's rights" - ] - }, - { - "text": "Establish policies to reduce the level of discrimination against women, children and indigenous peoples of African descent ", - "values": [ - "Indigenous peoples", - "Minorities", - "Rights of the Child", - "Women's rights" - ] - }, - { - "text": "Adopt laws protecting freedom of expression and freedom of the media", - "values": [ - "Freedom of opinion and expression", - "Freedom of the press" - ] - }, - { - "text": "Sign and ratify the Optional Protocol to the International Convention on the Rights of Persons with Disabilities", - "values": [ - "Disabilities", - "International instruments" - ] - }, - { - "text": "Immediately step up its efforts to eliminate all forms of discrimination based on ethnic origin, religion, gender and sexual orientation", - "values": [ - "Freedom of religion and belief", - "Minorities", - "Racial discrimination", - "Sexual Orientation and Gender Identity", - "Women's rights" - ] - }, - { - "text": "Create a National Human Rights Institution in accordance with the Paris Principles", - "values": [ - "National Human Rights Institution" - ] - }, - { - "text": "Strengthen measures to eliminate all forms of violence against women, inter alia by criminalizing marital rape", - "values": [ - "Women's rights" - ] - }, - { - "text": "Request the international community to provide assistance to the project on incorporating human rights in the school curriculum", - "values": [ - "Human rights education and training" - ] - }, - { - "text": "Continue its efforts to promote equality between men and women", - "values": [ - "Women's rights" - ] - }, - { - "text": "Continue to increase its capacities for integration of migrants ", - "values": [ - "Migrants" - ] - }, - { - "text": "Consider the cases of all prisoners condemned to death with a view to commuting their sentences and respect their right to challenge the legality of their detention before a tribunal, in compliance with international law", - "values": [ - "Death penalty" - ] - }, - { - "text": "Develop policies and actions aimed at modifying or eliminating customs and practices that promote violence and/or discrimination against women, covering family, marital, social and working areas", - "values": [ - "Women's rights" - ] - }, - { - "text": "Consider accession to the remaining core international human rights instruments ", - "values": [ - "International instruments" - ] - }, - { - "text": "Further measures to eliminate the underrepresentation of women in decision-making roles, particularly in the political arena and as members of corporate boards", - "values": [ - "Women's rights" - ] - }, - { - "text": "Set up a database related to the socio-economic situation of the population, disaggregating the data in terms of racial and ethnic identity, persons with disabilities, national origin and gender, with a view to analyzing the social situation of different groups of the population and thus make progress in strengthening or establishing public policies to prevent and eliminate discrimination ", - "values": [ - "Disabilities", - "Racial discrimination", - "Women's rights" - ] - }, - { - "text": "Guarantee the necessary personal and material resources to protect victims of gender-based violence, especially in emergency situations and as it pertains to the effectiveness of protection orders", - "values": [ - "Women's rights" - ] - }, - { - "text": "Bring domestic legislation into line to cooperate with the International Criminal Court", - "values": [ - "International instruments", - "Justice" - ] - }, - { - "text": "Investigate, prosecute and punish those responsible for the harassment of members of the judiciary, and provide adequate redress for victims", - "values": [ - "Justice" - ] - }, - { - "text": "Amend national legislation to ensure the minimum age for marriage is in line with its obligations under the Convention on the Rights of the Child", - "values": [ - "International instruments", - "Rights of the Child" - ] - }, - { - "text": "Expand public participation in pursuit of national development projects such as infrastructure and town planning in order to avoid forced evictions and violence", - "values": [ - "Development", - "Right to housing" - ] - }, - { - "text": "Recommended to the Government that the death penalty be abolished", - "values": [ - "Death penalty" - ] - }, - { - "text": "Create a specific institution to ensure the proper implementation of measures related to gender equality and violence ", - "values": [ - "Women's rights" - ] - }, - { - "text": "Modify its criminal code in order to establish a definition on torture and harshness of sentences according to the Convention on Tortures.", - "values": [ - "International instruments", - "Torture and other CID treatment" - ] - }, - { - "text": "Adopt measures to restrict the use of stereotypes towards minorities in the media and to promote the use of minority languages in the mass media and the press", - "values": [ - "Minorities" - ] - }, - { - "text": "Withdraw the reservations to articles 2 and 16 of the Convention on the Elimination of All Forms of Discriminations Against Women", - "values": [ - "International instruments", - "Women's rights" - ] - }, - { - "text": "Continue its efforts to strengthen and protect human rights in accordance with the cultural values of the Iranian people", - "values": [ - "General" - ] - }, - { - "text": "Adopt domestic laws and administrative regulations aimed at eradicating all forms of discrimination against persons of foreign origin, members of ethnic or linguistic minorities, refugees, asylum-seekers and migrant workers, by ensuring the enjoyment of their fundamental rights, irrespective of their migration status ", - "values": [ - "Asylum-seekers - refugees", - "Labour", - "Migrants", - "Minorities", - "Racial discrimination" - ] - }, - { - "text": "Enforce Gambia's Children's Act of 2005 on issues such as corporal punishment, early marriages, FGM and sexual exploitation of children, as well as the Child Trafficking Law of 2007", - "values": [ - "Rights of the Child", - "Torture and other CID treatment", - "Trafficking", - "Women's rights" - ] - }, - { - "text": "Consider undertaking measures that promote gender equality and the rights of women in the internal normative framework ", - "values": [ - "Women's rights" - ] - }, - { - "text": "Continue adopting programmes and policies to strengthen national unity and cohesion", - "values": [ - "Other" - ] - }, - { - "text": "Strengthen the enforcement of labour laws, especially by increasing training for labour inspectors to enable more thorough investigations of alleged violations, and ensuring timely collection of fines ", - "values": [ - "Labour" - ] - }, - { - "text": "Proceed quickly towards the ratification of ICCPR without reservations", - "values": [ - "CP rights - general", - "International instruments" - ] - }, - { - "text": "Pursue the development of enforcement mechanisms so that the National Action Plan for Combating Domestic Violence against Women is consistently implemented", - "values": [ - "Women's rights" - ] - }, - { - "text": "Review the role and the mandate of the Office of the National Ombudsman, particularly in the area of non-discrimination and police misconduct, and guarantee its sufficient funding, as suggested by the Commissioner for Human Rights of the Council of Europe.", - "values": [ - "Human rights violations by state agents" - ] - }, - { - "text": "Develop a national action plan to end gender-based violence and to bring rape laws in line with international standards", - "values": [ - "Women's rights" - ] - }, - { - "text": "Adopt national legislation implementing the Convention relating to the Status of Refugees and its 1967 Protocol, in order to institute a functioning system for the processing of refugees in accordance with international law and to grant protection to refugees determined and recognized as such by the Office of the United Nations High Commissioner for Refugees", - "values": [ - "Asylum-seekers - refugees", - "International humanitarian law", - "International instruments" - ] - }, - { - "text": "Take all necessary measures to protect schools from military use by fighting forces", - "values": [ - "International humanitarian law", - "Right to education" - ] - }, - { - "text": "Continue its efforts to sign and ratify the Optional Protocol to the Convention on the Rights of Children", - "values": [ - "International instruments", - "Rights of the Child" - ] - }, - { - "text": "Sign and ratify the Optional Protocol to the Convention on the Elimination of All Forms of Discrimination against Women and the Optional Protocol to CRPD ", - "values": [ - "Disabilities", - "International instruments", - "Women's rights" - ] - }, - { - "text": "Continue to ensure that its legislation and methods to combat terrorism are in accordance with the International Covenant on Civil and Political Rights ", - "values": [ - "Counter-terrorism", - "International instruments" - ] - }, - { - "text": "Consider extending a standing invitation to the special procedures", - "values": [ - "Special procedures" - ] - }, - { - "text": "Continue the policy of free education through cooperation with and assistance from the international community ", - "values": [ - "Right to education", - "Technical assistance and cooperation" - ] - }, - { - "text": "Guarantee freedom of movement for all people as well as free movement of all goods within the Occupied State of Palestine and to and from foreign countries", - "values": [ - "Freedom of movement" - ] - }, - { - "text": "Examine systematically its laws with the aim of putting them in conformity with CEDAW", - "values": [ - "International instruments", - "Women's rights" - ] - }, - { - "text": "Sign those international human rights instruments to which it is not yet a party, including the International Covenant on Civil and Political Rights and the International Covenant on Economic, Social and Cultural Rights, and also become a party to the Rome Statute of the ICC ", - "values": [ - "CP rights - general", - "ESC rights - general", - "International instruments", - "Justice" - ] - }, - { - "text": "Take active measures to close the gap between rich and poor and between the mountainous and urban areas.", - "values": [ - "Poverty" - ] - }, - { - "text": "Consider the possibility of implementing affirmative action policies in order to achieve a larger representation of women in the executive, legislative and judiciary branches ", - "values": [ - "Women's rights" - ] - }, - { - "text": "Step up its efforts to combat torture, inter alia, by effectively addressing the concerns of the Committee against Torture ", - "values": [ - "Torture and other CID treatment", - "Treaty bodies" - ] - }, - { - "text": "Consider the possibility to introduce a system of automatic registration of children born in the country, regardless of the parents' nationality or status", - "values": [ - "Rights of the Child" - ] - }, - { - "text": "Establish an accessible complaint mechanism, such as a free phone service, to which migrant workers can confidentially report instances of abuse and exploitation, as well as seek assistance", - "values": [ - "Labour", - "Migrants" - ] - }, - { - "text": "Integrate the various regional and international human rights instruments to which it is a party into its domestic legislation", - "values": [ - "International instruments" - ] - }, - { - "text": "Ensure the freedom of the mass media, particularly of those media outlets that function in the language of the national minorities, including Russian", - "values": [ - "Freedom of the press", - "Minorities" - ] - }, - { - "text": "Release all child soldiers", - "values": [ - "International humanitarian law", - "Rights of the Child" - ] - }, - { - "text": "Carry out an investigation into the possible involvement by officials of the Calgary prison in the brutal beating of August 2012 in the pre-trial detention facility cell of the Russian student, Telyakov by family name, arrested on trumped up charges, which were subsequently withdrawn ", - "values": [ - "Detention", - "Human rights violations by state agents", - "Torture and other CID treatment" - ] - }, - { - "text": "Strengthen its cooperation with treaty bodies and give the greatest possible attention to the recommendations of the Committee on the Rights of the Child and the Committee on the Elimination of Discrimination against Women and the various United Nations joint reports ", - "values": [ - "Rights of the Child", - "Treaty bodies", - "Women's rights" - ] - }, - { - "text": "In addition to suggestions made by various Special Rapporteurs who agree with Chile's assessment, strengthen a judicial response to sexual violence on grounds of gender and ensure that women victims of violence have the same access to justice as men", - "values": [ - "Special procedures", - "Women's rights" - ] - }, - { - "text": "Repeal any legislation that infringe upon individuals' right to privacy such as the video surveillance of private homes", - "values": [ - "Privacy" - ] - }, - { - "text": "Take necessary steps to ensure the accessibility of the sexual and reproductive health services in Government facilities", - "values": [ - "Right to health", - "Women's rights" - ] - }, - { - "text": "Ratify the ICCPR and the CAT ", - "values": [ - "CP rights - general", - "International instruments", - "Torture and other CID treatment" - ] - }, - { - "text": "Revise Presidential Decrees Nos. 16 and 739, the Criminal Code, as well as the Organic Act on Communication to bring them into line with international human rights norms", - "values": [ - "Civil society" - ] - }, - { - "text": "Strengthen the monitoring of national labour conditions to eliminate the practice of bonded labour and unlawful child labour", - "values": [ - "Labour", - "Rights of the Child" - ] - }, - { - "text": "Continue efforts to modernize its birth registration system, and evaluate if more steps are needed to ensure access to universal birth registration in order to ensure the rights of children to nationality is adequately protected", - "values": [ - "Rights of the Child", - "Statelessness and the right to nationality" - ] - }, - { - "text": "Take measures to ensure everyone's equal access to justice, in accordance with international standards ", - "values": [ - "Justice" - ] - }, - { - "text": "Continue to implement the National Human Rights Action Plan 2015- 2019", - "values": [ - "General" - ] - }, - { - "text": "Within the context of the National Plan of Action for Women 2007-2011 and the Family Protection Act, consider raising public awareness to combat domestic violence and making legal aid available to all victims of such violence. ", - "values": [ - "Human rights education and training", - "Rights of the Child", - "Women's rights" - ] - }, - { - "text": "Ensure the safety of journalists and put an end to the impunity currently enjoyed by perpetrators of such attacks ", - "values": [ - "Freedom of the press", - "Impunity" - ] - }, - { - "text": "Accede to the Second Optional Protocol to the International Covenant on Civil and Political Rights and abolish definitively death penalty ", - "values": [ - "Death penalty", - "International instruments" - ] - }, - { - "text": "Amend the Penal Code to criminalize all forms of torture and Cruel, Inhuman or Degrading Treatment comprised in the Convention against Torture ", - "values": [ - "International instruments", - "Torture and other CID treatment" - ] - }, - { - "text": "Submit its overdue reports to the relevant treaty bodies", - "values": [ - "Treaty bodies" - ] - }, - { - "text": "Continue implementing specific measures to prevent all forms of violence against women, including domestic violence, ill-treatment and sexual abuse, ensuring that there are complaints channels, facilitating access to justice and guaranteeing the prosecution and punishment of perpetrators", - "values": [ - "Women's rights" - ] - }, - { - "text": "Identify, pursuant to the recommendations of the Committee on Economic, Social and Cultural Rights, cases of racism and xenophobia, combat them and foster intercultural understanding and tolerance. ", - "values": [ - "Racial discrimination", - "Treaty bodies" - ] - }, - { - "text": "Adopt the necessary measures to ensure universal birth registration with an emphasis on indigenous children", - "values": [ - "Indigenous peoples", - "Rights of the Child", - "Statelessness and the right to nationality" - ] - }, - { - "text": "Continue to promote economic and social development to raise people's living standard and strengthen its social protection system ", - "values": [ - "Development", - "ESC rights - general" - ] - }, - { - "text": "Implement fully the recommendations of the BICI report ", - "values": [ - "Justice" - ] - }, - { - "text": "Speed up the implementation and take measures to ensure the popularization of the Rural Land Act, an essential measure in settling inter-communal disputes ", - "values": [ - "Right to land" - ] - }, - { - "text": "Further entrench in standard administrative procedures the right of indigenous peoples to be consulted, in accordance with ILO Convention 169", - "values": [ - "Indigenous peoples", - "International instruments" - ] - }, - { - "text": "Strengthen its normative protection of maternal health, approve and implement the bill on reproductive health, and release necessary financial resources for its implementation ", - "values": [ - "Right to health", - "Women's rights" - ] - }, - { - "text": "Ensure effective investigation of and accountability for all cases of torture and death in detention.", - "values": [ - "Detention", - "Torture and other CID treatment" - ] - }, - { - "text": "Pursue judicial reform, especially to improve access to justice and to fight the inappropriate use of preventive detention", - "values": [ - "Detention", - "Justice" - ] - }, - { - "text": "Make steps towards more sustainable reduction of school dropouts", - "values": [ - "Right to education" - ] - }, - { - "text": "Continue to fight against sexual violence", - "values": [ - "Rights of the Child", - "Women's rights" - ] - }, - { - "text": "Ensure that camps and centers for migrants and refugees have sufficient shelter and health facilities to handle current increased numbers", - "values": [ - "Asylum-seekers - refugees", - "Migrants", - "Right to health", - "Right to housing" - ] - }, - { - "text": "Consider to put in place appropriate safeguards to protect civilians from any discriminatory, ill-treatment or criminal offences committed by members of the law enforcement agencies", - "values": [ - "Human rights violations by state agents", - "Torture and other CID treatment" - ] - }, - { - "text": "Continue the implementation of all the recommendations of the BICI ", - "values": [ - "Justice" - ] - }, - { - "text": "Train in human rights judges working in the local courts, administering Zambian customary law, in particular, in respect to the human rights of women and children and a gender perspective and to promote a flexible and effective system of reviewing sentences, so as to guarantee the due process of law.", - "values": [ - "Human rights education and training", - "Rights of the Child", - "Women's rights" - ] - }, - { - "text": "Continue enhancing the project and programmes aimed at ensuring the protection and the rights of indigenous communities", - "values": [ - "Indigenous peoples" - ] - }, - { - "text": "Respect the sovereignty and self-determination of the Bolivarian Republic of Venezuela", - "values": [ - "Other" - ] - }, - { - "text": "Consider the ratification of the 1961 Convention on the Reduction of Statelessness", - "values": [ - "International instruments", - "Statelessness and the right to nationality" - ] - }, - { - "text": "Ensure effective implementation of the law on the protection of human rights defenders, journalists, social communicators and justice officials and provide adequate resources to establish an effective protection mechanism for human rights defenders", - "values": [ - "Freedom of the press", - "Human rights defenders", - "Justice" - ] - }, - { - "text": "Adopt comprehensive measures to prevent and eliminate cases of cruel treatment and sexual exploitation of children ", - "values": [ - "Rights of the Child", - "Torture and other CID treatment" - ] - }, - { - "text": "Continue studying the possibility of a universal basic income as a way to further reduce poverty levels with a view to possibly phasing out the existing social protection system, in full consultation with all stakeholders", - "values": [ - "Poverty" - ] - }, - { - "text": "Consider becoming a party to ICRMW", - "values": [ - "International instruments", - "Labour", - "Migrants" - ] - }, - { - "text": "Ratify the International Convention for the Protection of all Persons against Enforced Disappearances", - "values": [ - "Enforced disappearances", - "International instruments" - ] - }, - { - "text": "Adopt a national plan of action for children's rights and provide the National Commission on the Rights of the Child with the necessary resources", - "values": [ - "Rights of the Child" - ] - }, - { - "text": "Take all necessary measures to ensure universal primary education, combat illiteracy and reduce the drop-out rate in primary schools", - "values": [ - "Right to education" - ] - }, - { - "text": "Improve its efforts on child protection systems, particularly children belonging to marginalized and disadvantaged groups ", - "values": [ - "Rights of the Child" - ] - }, - { - "text": "Criminalize the worst forms of child labour and accede to international treaties which ban this practice", - "values": [ - "International instruments", - "Labour", - "Rights of the Child" - ] - }, - { - "text": "Continue to work to eliminate FGM, particularly in rural areas ", - "values": [ - "Rights of the Child", - "Torture and other CID treatment", - "Women's rights" - ] - }, - { - "text": "Promote the effective protection of children's rights in different relevant areas", - "values": [ - "Rights of the Child" - ] - }, - { - "text": "Implement and put in place the Human Rights Commission, in line with the Paris Principles", - "values": [ - "National Human Rights Institution" - ] - }, - { - "text": "Continue efforts to adopt and implement legislative and administrative measures for the promotion and protection of the rights of the child ", - "values": [ - "Rights of the Child" - ] - }, - { - "text": "Continue its efforts aimed at addressing the underrepresentation of women in decision-making bodies, including through considering the adoption of a law on gender equality", - "values": [ - "Women's rights" - ] - }, - { - "text": "Continue to strengthen the cooperation with countries of origin, transit as well as destination in dealing with irregular migration", - "values": [ - "Migrants" - ] - }, - { - "text": "Ensure the effective application of the law on the criminalisation of slavery", - "values": [ - "Other" - ] - }, - { - "text": "Keep running multiple programmes to combat against the domestic violence supported by the Ministry of Health and the Ministry of Women", - "values": [ - "Rights of the Child", - "Women's rights" - ] - }, - { - "text": "Fully implement the Strategic Poverty Reduction Programme", - "values": [ - "Poverty" - ] - }, - { - "text": "Uphold freedom of expression of non-governmental organizations by amending the laws limiting it and repealing punitive administrative or judicial sanctions to that regard.", - "values": [ - "Civil society", - "Freedom of opinion and expression" - ] - }, - { - "text": "Continue developing actions to protect the human rights of all people from the economic aggression developed against the country", - "values": [ - "Other" - ] - }, - { - "text": "Continue the increased respect of the rights of lesbian, gay, bisexual and transgender people and ensure the approval of an inclusive Family Code respectful of the right to gender identity and sexual orientation ", - "values": [ - "Sexual Orientation and Gender Identity" - ] - }, - { - "text": "Ratify CRPD, in accordance with the commitment formulated in paragraph 128 of its national report", - "values": [ - "Disabilities", - "International instruments" - ] - }, - { - "text": "Take measures to follow-up on the recommendations of the Human Rights Committee, by putting an end to censorship of the press and to the harassment of journalists.", - "values": [ - "Freedom of the press", - "Treaty bodies" - ] - }, - { - "text": "Continue its efforts to ensure meaningful women representation in the future Government ", - "values": [ - "Women's rights" - ] - }, - { - "text": "Protect fully the human rights of persons belonging to minorities including their rights to water, sanitation, land, education and health as well as access to all public services in an equal and just manner", - "values": [ - "Minorities", - "Right to education", - "Right to health", - "Right to land", - "Right to water and sanitation" - ] - }, - { - "text": "Agree on a date for a possible visit by the United Nations Special Rapporteur on extrajudicial, summary or arbitrary executions requested in 2008 ", - "values": [ - "Extrajudicial executions", - "Special procedures" - ] - }, - { - "text": "Ratify the Rome Statute of the International Criminal Court and to fully align its legislation with all obligations under the Statute ", - "values": [ - "International instruments", - "Justice" - ] - }, - { - "text": "Encourage women's participation in the public life of the country", - "values": [ - "Women's rights" - ] - }, - { - "text": "Take further measures to advance equality on the ground of sexual orientation and gender identity, using the Yogyakarta Principles, among others, as a guide for policy-making.", - "values": [ - "Sexual Orientation and Gender Identity" - ] - }, - { - "text": "Modernise the prison system in order to ensure adequate resources and capacity and that the Standard Minimum Rules for the Treatment of Prisoners are fulfilled ", - "values": [ - "Detention" - ] - }, - { - "text": "Enact specific legislation that criminalizes domestic violence, and provide more information in all major languages to citizens and residents of Oman regarding domestic violence and means to combat it ", - "values": [ - "Human rights education and training", - "Rights of the Child", - "Women's rights" - ] - }, - { - "text": "Adopt a comprehensive National Plan of Action geared towards solving the issue of street children", - "values": [ - "Rights of the Child" - ] - }, - { - "text": "Take further steps to address discrimination against women, minorities and vulnerable groups, including children and disabled people", - "values": [ - "Disabilities", - "Minorities", - "Rights of the Child", - "Women's rights" - ] - }, - { - "text": "Continue with the actions of the Inter-ministerial Committee on Human Rights, which provides follow-up to human rights recommendations", - "values": [ - "UPR process" - ] - }, - { - "text": "Enhance the training of border guards, immigration personnel and judges in the field of international refugee law with a view to ensuring protection and full respect for the rights of all refugees and asylum-seekers ", - "values": [ - "Asylum-seekers - refugees", - "Human rights education and training" - ] - }, - { - "text": "Strengthen the fight against all forms of discrimination, particularly violence against women and girls, with special emphasis on the fight against sexual violence and female genital mutilation", - "values": [ - "Rights of the Child", - "Torture and other CID treatment", - "Women's rights" - ] - }, - { - "text": "Take the necessary steps to ratify the Convention on the Rights of Persons with Disabilities (CRPD), the International Convention on the Protection of the Rights of All Migrant Workers and Members of their Families (ICRMW), the Optional Protocol to the Convention on the Elimination of All Forms of Discrimination against Women (OP-CEDAW) and the Optional Protocol to the Convention against Torture and Other Cruel, Inhuman or Degrading Treatment or Punishment (OP-CAT)", - "values": [ - "International instruments" - ] - }, - { - "text": "Take the necessary steps to implement its Constitution ", - "values": [ - "Other" - ] - }, - { - "text": "Amend the News Media Law and the 2014 Printing and Publications Law in compliance with international human rights standards", - "values": [ - "Freedom of the press" - ] - }, - { - "text": "Consider adopting comprehensive measures that provide adequate guarantees to the protection of the rights of migrant persons, particularly in relation to the right to housing", - "values": [ - "Migrants", - "Right to housing" - ] - }, - { - "text": "Consider reviewing the three-year time limit for bringing compensation claims in cases of coercive or non-consensual sterilizations with a view to extending it", - "values": [ - "Justice", - "Torture and other CID treatment" - ] - }, - { - "text": "Continue to cooperate with human rights mechanisms, be they regional or international", - "values": [ - "Technical assistance and cooperation" - ] - }, - { - "text": "Strengthen information, cultural and educational work by reviving traditions of honouring the foundations of the family for the protection of motherhood, childhood and the family, for the elimination and prohibition of discrimination against children or vulnerable groups on the basis of gender and against children born out of wedlock, and for the prevention of the use of child labour and prevention of violence, including domestic violence", - "values": [ - "Labour", - "Minorities", - "Rights of the Child", - "Women's rights" - ] - }, - { - "text": "Establish a national preventive mechanism that will constitutionally guarantee the rights of all people, particularly the rights of minorities ", - "values": [ - "Minorities" - ] - }, - { - "text": "Ensure the implementation of environmental standards to protect the environment", - "values": [ - "Environment" - ] - }, - { - "text": "Strengthen and improve social safety networks ", - "values": [ - "ESC rights - general" - ] - }, - { - "text": "Establish food self-sufficiency projects aimed at vulnerable groups and develop technical education to allow access of young people to the labour market", - "values": [ - "Development", - "Right to food" - ] - }, - { - "text": "Abolish the provisions which allow the rapist to escape from prosecution by marrying the victim ", - "values": [ - "Women's rights" - ] - }, - { - "text": "Consider the recommendation of UNHCR to review legal provisions of the proposed amendments on detention to ensure that asylum seekers, including adolescents and children, and families with children are not detained", - "values": [ - "Asylum-seekers - refugees", - "Detention", - "Rights of the Child" - ] - }, - { - "text": "Accede to the Rome Statute as amended at the Review Conference in Kampala in 2010 and align its national legislation with the obligations under the Rome Statute, the definition of crimes and principles, including the crime of aggression ", - "values": [ - "International instruments", - "Justice" - ] - }, - { - "text": "Further prioritize the protection of the victims from such racially motivated offences and ensure criminalization of incitement to racial hatred and effective sanctions for these crimes", - "values": [ - "Racial discrimination" - ] - }, - { - "text": "Expedite efforts in its consideration of setting up an independent National Human Rights Institution in accordance with the Paris Principles", - "values": [ - "National Human Rights Institution" - ] - }, - { - "text": "Consider the possibility of acceding to the Optional Protocol to the Convention against Torture and Other Cruel, Inhuman or Degrading Treatment or Punishment", - "values": [ - "Detention", - "International instruments", - "Torture and other CID treatment" - ] - }, - { - "text": "Seek technical assistance in the field of violence against children ", - "values": [ - "Rights of the Child", - "Technical assistance and cooperation" - ] - }, - { - "text": "Continue and step up efforts to improve school enrolment and the quality of education ", - "values": [ - "Right to education" - ] - }, - { - "text": "Continue its efforts to establish efficient and transparent public services", - "values": [ - "Corruption" - ] - }, - { - "text": "Ratify the Second Optional Protocol to the International Covenant on Civil and Political Rights and amend its Criminal Code with a view to abolish the capital punishment entirely ", - "values": [ - "Death penalty", - "International instruments" - ] - }, - { - "text": "Continue with its efforts to effectively implement the law on criminal sanctions for violence against women and pay special attention to ensuring coordination among institutions providing assistance and support to victims ", - "values": [ - "Women's rights" - ] - }, - { - "text": "Ratify OP-CAT, ICCPR-OP2, the Optional Protocol to the Convention on the Elimination of all Forms of Discrimination against Women (OP-CEDAW), the Optional Protocol to the Convention on the Rights of Persons with Disabilities (OP-CERD), OP-CRC-AC and OP-CRC-SC", - "values": [ - "International instruments" - ] - }, - { - "text": "Carry out an assessment of plans of action on human rights and ensure that these instruments are effective in practice", - "values": [ - "General" - ] - }, - { - "text": "Make necessary efforts to investigate crimes under international law or human rights violations that have occurred, protecting victims of such violations and guaranteeing them access to justice and full and effective reparations", - "values": [ - "Justice" - ] - }, - { - "text": "Develop an inclusive process with the objective of establishing a national human rights Institution in accordance with the Paris Principles", - "values": [ - "National Human Rights Institution" - ] - }, - { - "text": "Accelerate work to establish a Truth and Reconciliation Commission and to establish a Special Tribunal tasked with holding those responsible for war crimes to account, with both institutions conforming to international standards and drawing on national consultations", - "values": [ - "Justice" - ] - }, - { - "text": "Continue with its efforts to remove discriminatory norms against women from its legislation ", - "values": [ - "Women's rights" - ] - }, - { - "text": "End school segregation on the basis of ethnicity, as well as review and revise school curriculums and textbooks with a view to promoting intercultural understanding and appreciation for the history and religion of all ethnic groups and national minorities", - "values": [ - "Freedom of religion and belief", - "Human rights education and training", - "Minorities", - "Racial discrimination", - "Right to education" - ] - }, - { - "text": "Guarantee the independence of the judiciary by reforming article 109, number 7, of the Organic Code of the Judiciary in order to clearly delimit, in accordance with international law, the figure of \u201cinexcusable error\u201c, which is now insufficiently safeguarded against misuse for targeting judges", - "values": [ - "Justice" - ] - }, - { - "text": "Seek to implement the national socio-economic programme and pursue efforts to combat poverty", - "values": [ - "ESC rights - general", - "Poverty" - ] - }, - { - "text": "Adopt necessary measures to eradicate impunity for human rights violations, particularly against women and indigenous population", - "values": [ - "Impunity", - "Indigenous peoples", - "Women's rights" - ] - }, - { - "text": "Decriminalize defamation and place it within a civil code that is in accordance with international standards", - "values": [ - "Freedom of opinion and expression" - ] - }, - { - "text": "Step up its efforts to ensure that basic needs of the population are fully met, in particular, in the areas of employment, public health, education and public housing", - "values": [ - "Development", - "Right to education", - "Right to health", - "Right to housing" - ] - }, - { - "text": "Continue its efforts to attain food sovereignty on the basis of food diversification ", - "values": [ - "Right to food" - ] - }, - { - "text": "Expedite the adoption of the Charter of Child Rights Bill ", - "values": [ - "Rights of the Child" - ] - }, - { - "text": "Establish a moratorium on the death penalty and advance towards the total abolition of this practice", - "values": [ - "Death penalty" - ] - }, - { - "text": "Consider the ratification of the core international human instruments and bringing national legislation in line with the provision of these instruments ", - "values": [ - "International instruments" - ] - }, - { - "text": "Ensure, in law and in practice, that all citizens are given fair trials based on the rule of law, as accepted in the 2010 UPR examination", - "values": [ - "Justice", - "UPR process" - ] - }, - { - "text": "Continue its efforts to maintain social stability and to promote economic development, and make a good effort to develop people's lives and improve it ", - "values": [ - "Development" - ] - }, - { - "text": "Consider developing a comprehensive plan to combat trafficking in human beings ", - "values": [ - "Trafficking" - ] - }, - { - "text": "Incorporate expeditiously in domestic law the Rome Statute, to which the Democratic Republic of the Congo is party", - "values": [ - "International instruments", - "Justice" - ] - }, - { - "text": "Enact comprehensive legislation prohibiting discrimination in employment on the basis of sex, race, ethnicity, religion, age, sexual orientation, gender identity and expression, marital status or disability", - "values": [ - "Labour" - ] - }, - { - "text": "Take as soon as possible the necessary measures to safeguard the rights of internally displaced persons and refugees, ensure the protection of the civilian population in accordance with international standards and give follow-up to the specific recommendations in this regard of the Human Rights Committee and the Representative of the Secretary-General on human rights of internally displaced persons.", - "values": [ - "Asylum-seekers - refugees", - "Internally displaced persons", - "International humanitarian law", - "Treaty bodies" - ] - }, - { - "text": "Seek to intensify national efforts to implement alternative learning programmes for children and youth", - "values": [ - "Right to education", - "Rights of the Child" - ] - }, - { - "text": "Continue enhancing investment in education to reduce the school dropout rates", - "values": [ - "Right to education" - ] - }, - { - "text": "Conduct, jointly with special procedures of the Human Rights Council, a comprehensive and impartial investigation of all cases of cruel treatment and the use of excessive force by police officers against the participants in demonstrations that were held in Poland in November, 2011 ", - "values": [ - "Freedom of association and peaceful assembly", - "Human rights violations by state agents", - "Special procedures", - "Torture and other CID treatment" - ] - }, - { - "text": "Ensure that the Law of Libel is not utilised in such a manner as to stifle honest and professional reporting", - "values": [ - "Freedom of the press" - ] - }, - { - "text": "Harness the necessary international cooperation to implement a sustainable educational and cultural campaign, in time and space, to achieve the full eradication of the use of and practice of the so-called female genital mutilation as a contribution to the comprehensive development of women in Mali, and their right to health in particular ", - "values": [ - "Human rights education and training", - "Right to health", - "Rights of the Child", - "Technical assistance and cooperation", - "Torture and other CID treatment", - "Women's rights" - ] - }, - { - "text": "Make further efforts to ensure safety in prisons for both men and women", - "values": [ - "Detention" - ] - }, - { - "text": "Concentrate efforts to establish an independent, efficient, responsible and properly resourced judicial system", - "values": [ - "Justice" - ] - }, - { - "text": "Take effective action to end impunity and to investigate and bring to justice anyone suspected of having committed offences under international law or other human rights abuses ", - "values": [ - "Impunity" - ] - }, - { - "text": "Continue its efforts to preserve freedom of religion and ensure respect for all religions under the umbrella of the law", - "values": [ - "Freedom of religion and belief" - ] - }, - { - "text": "Pursue efforts to harmonize national legislation with the commitments undertaken at the international level ", - "values": [ - "General" - ] - }, - { - "text": "Significantly step up its efforts in addressing the reportedly high number of rape cases, particularly against young victims, and gender-based violence", - "values": [ - "Women's rights" - ] - }, - { - "text": "Continue its efforts in realizing the right to work through comprehensive policies for productive and decent employment", - "values": [ - "Labour" - ] - }, - { - "text": "Take tangible and concrete steps to conduct free and fair Presidential elections without undue delay.", - "values": [ - "Elections" - ] - }, - { - "text": "Strengthen measures to promote freedom of association and take measures to guarantee the full exercise of the right to freedom of expression, including the right to access to public information by civil society organizations and individual citizens.", - "values": [ - "Civil society", - "Freedom of association and peaceful assembly", - "Freedom of opinion and expression" - ] - }, - { - "text": "Extend an open and standing invitation to all United Nations special procedures ", - "values": [ - "Special procedures" - ] - }, - { - "text": "Adopt the necessary measures to abolish the death penalty", - "values": [ - "Death penalty" - ] - }, - { - "text": "Fully align its national legislation with the Rome Statute of the International Criminal Court, including by incorporating provisions to cooperate promptly and fully with the International Criminal Court and investigate and prosecute genocide, crimes against humanity and war crimes effectively before its national courts, and accede to the Agreement on the Privileges and Immunities of the International Criminal Court", - "values": [ - "International instruments", - "Justice" - ] - }, - { - "text": "That the legal framework against torture conforms to international human rights standards and that the Istanbul Protocol be applied in all federal states. Persons responsible for torture should be convicted accordingly in order to prevent the future use of torture", - "values": [ - "International instruments", - "Torture and other CID treatment" - ] - }, - { - "text": "Redouble its efforts to tackle the practice of forced and early marriage", - "values": [ - "Rights of the Child", - "Women's rights" - ] - }, - { - "text": "Consider the amendment of its Criminal Code in order to include a definition of torture as a crime", - "values": [ - "Torture and other CID treatment" - ] - }, - { - "text": "Promote active presence of women in society", - "values": [ - "Women's rights" - ] - }, - { - "text": "Ensure sufficient resources for the National Independent Human Rights Commission to fully fulfil its mandate", - "values": [ - "National Human Rights Institution" - ] - }, - { - "text": "Establish enforced disappearances and extrajudicial executions as criminal offenses under the Penal Code ", - "values": [ - "Enforced disappearances", - "Extrajudicial executions" - ] - }, - { - "text": "Continue efforts in accordance with the Zimbabwe Agenda for Sustainable Socioeconomic Transformation for the period October 2013-December 2018, which provides for a harnessing of the maximum benefit from the national natural resources in order to strengthen food security, eliminate poverty, extend social coverage and restore the infrastructure", - "values": [ - "Development", - "ESC rights - general", - "Poverty", - "Right to food" - ] - }, - { - "text": "Continue to pay particular attention to the consequences of climate change on the human rights of the population", - "values": [ - "Environment" - ] - }, - { - "text": "Further strengthen the temporary special measures in areas in which women are underrepresented", - "values": [ - "Women's rights" - ] - }, - { - "text": "Establish a formal procedure to improve compliance with the State obligation to protect stateless persons, in line with the Convention relating to the Status of Stateless Persons of 1954", - "values": [ - "International instruments", - "Statelessness and the right to nationality" - ] - }, - { - "text": "Continue its efforts in strengthening its judicial system and the rule of law to enhance the protection of human rights of its people ", - "values": [ - "Justice" - ] - }, - { - "text": "Commute all death sentences, declare a moratorium on executions and move towards an abolition of the death penalty", - "values": [ - "Death penalty" - ] - }, - { - "text": "Provide girls with access to education facilities and resources equivalent to those available to boys", - "values": [ - "Right to education", - "Rights of the Child" - ] - }, - { - "text": "Continue its efforts to reach the remaining targets of the Millennium Development Goals", - "values": [ - "Development" - ] - }, - { - "text": "Continue education and awareness-raising programmes in the area of human rights and international treaties ", - "values": [ - "Human rights education and training", - "International instruments" - ] - }, - { - "text": "Take active measures to prevent actual segregation of Roma students in public and private schools", - "values": [ - "Minorities", - "Racial discrimination", - "Right to education" - ] - }, - { - "text": "Carry on its efforts in supporting development programmes for developing countries", - "values": [ - "Development" - ] - }, - { - "text": "Operationalize the National Human Rights Commission and ensure that it is in line with the Paris Principles", - "values": [ - "National Human Rights Institution" - ] - }, - { - "text": "Ensure that inquiries are carried out immediately, independently, and transparently in cases where members of the armed forces are suspected of having committed acts of torture, particularly in the context of their service abroad ", - "values": [ - "Human rights violations by state agents", - "Torture and other CID treatment" - ] - }, - { - "text": "Harmonize laws and revise customary practices with a view to preventing child, early and forced marriage", - "values": [ - "Rights of the Child" - ] - }, - { - "text": "Work towards the swift incorporation in the federal legislation and legislation of state the provisions of international instruments, including the Rome Statute", - "values": [ - "International instruments", - "Justice" - ] - }, - { - "text": "Take further steps to follow the recommendations of the Committee on the Elimination of Racial Discrimination in "reviewing its legislation on racial discrimination to ensure adequate protection of discrimination" ", - "values": [ - "Racial discrimination", - "Treaty bodies" - ] - }, - { - "text": "Fight all forms of xenophobia and reject discrimination against migrants", - "values": [ - "Migrants", - "Racial discrimination" - ] - }, - { - "text": "Strengthen and diversify cooperation with bilateral partners in areas of common interest in order to promote human rights", - "values": [ - "Other" - ] - }, - { - "text": "Fully and effectively implement the recommendations of the Committee on the Elimination of Discrimination against Women and ensure that the rights of women and children are respected, most particularly when they are in detention", - "values": [ - "Detention", - "Rights of the Child", - "Treaty bodies", - "Women's rights" - ] - }, - { - "text": "Take steps to ensure the independence of Elections Cameroon (ELECAM), including through allocation of sufficient budget", - "values": [ - "Elections" - ] - }, - { - "text": "Continue the efforts in order to eradicate extreme poverty in the country", - "values": [ - "Poverty" - ] - }, - { - "text": "Take concrete steps to move towards the abolition of the death penalty.", - "values": [ - "Death penalty" - ] - }, - { - "text": "Introduce in the Criminal Code the crime of trafficking in children, particularly those trafficked for the purposes of commercial and sexual exploitation", - "values": [ - "Labour", - "Rights of the Child", - "Trafficking" - ] - }, - { - "text": "Ensure that all individuals, including members of the armed forces, police and intelligence services, suspected of committing crimes under international law or other serious human rights abuses are brought to justice in fair trials. ", - "values": [ - "Human rights violations by state agents" - ] - }, - { - "text": "Thereby, Austria undertakes to ratify the International Convention for the Protection of All Persons from Enforced Disappearance, the Optional Protocol to the Convention against Torture and Other Cruel, Inhuman or Degrading Treatment or Punishment and the Council of Europe Convention on the Protection of Children against Sexual Exploitation and Sexual Abuse and to include children's rights into the Austrian Federal Constitution according to the Convention on the Rights of the Child. In addition to the existing criminal law provisions, which have already made any form of torture a punishable offence113, the inclusion of a definition of torture in the Criminal Code is currently underway. Work is also being done to implement the crimes under the Rome Statute for an International Criminal Court, which includes crimes against humanity and war crimes, into the Austrian penal code. Genocide is already a punishable offence under Austrian criminal jurisdiction", - "values": [ - "Detention", - "Enforced disappearances", - "International instruments", - "Justice", - "Rights of the Child", - "Torture and other CID treatment" - ] - }, - { - "text": "Ensure equal education opportunities for migrants' children and Roma in particular", - "values": [ - "Migrants", - "Minorities", - "Right to education", - "Rights of the Child" - ] - }, - { - "text": "Continue to implement the State policy on immigration, and constantly adjust and improve the policies and measures according to the new situations of the protection of the rights of migrants", - "values": [ - "Migrants" - ] - }, - { - "text": "The ratification of the Rome Statute of the International Criminal Court and the full alignment of Bahrain's national legislation with its provisions", - "values": [ - "International instruments", - "Justice" - ] - }, - { - "text": "Amend the Civil Code to fully recognize the legal capacity of persons with disabilities and to ensure that they have access to inclusive education and appropriate health-care services", - "values": [ - "Disabilities", - "Right to education", - "Right to health" - ] - }, - { - "text": "Recognize the competence of the Committee on the Elimination of Racial Discrimination to receive and consider communications from individuals ", - "values": [ - "Racial discrimination", - "Treaty bodies" - ] - }, - { - "text": "Receive the assistance it requires, in personnel and logistical resources, to develop the health sector in order to reduce the child mortality rate ", - "values": [ - "Right to health", - "Rights of the Child", - "Technical assistance and cooperation" - ] - }, - { - "text": "Combat hate speech, in particular in the media and on the internet, and punish perpetrators", - "values": [ - "Racial discrimination" - ] - }, - { - "text": "Effectively implement legal amendments in order to guarantee the rights of persons deprived of liberty, particularly in places of detention", - "values": [ - "Detention" - ] - }, - { - "text": "Take all necessary measures in order to make sure that cases of enforced disappearance are only addressed by the civilian courts and not special ones such as military courts", - "values": [ - "Enforced disappearances", - "Justice" - ] - }, - { - "text": "Extend the monitoring authorities of the Office of the Ombudsman to Government and the Public Prosecutor's Office to ensure the possibility of redressing human rights violations.", - "values": [ - "National Human Rights Institution" - ] - }, - { - "text": "Take further measures to address domestic violence and physical child abuse, including by ensuring adequate reporting of child abuse", - "values": [ - "Rights of the Child" - ] - }, - { - "text": "Ratify the Optional Protocol to CAT ", - "values": [ - "Detention", - "International instruments", - "Torture and other CID treatment" - ] - }, - { - "text": "Intensify the work regarding the protection of children from violence, promptly identify and suppress cases of cruel treatment of children", - "values": [ - "Rights of the Child", - "Torture and other CID treatment" - ] - }, - { - "text": "Put an end to the so-called painful techniques applied to children. ", - "values": [ - "Rights of the Child" - ] - }, - { - "text": "Develop a long-term plan to address challenges in the area of incarceration and continue to give priority attention to improving prison conditions.", - "values": [ - "Detention" - ] - }, - { - "text": "Take all the necessary measures to ensure women have access to adequate health-care services, including sexual and reproductive health services ", - "values": [ - "Women's rights" - ] - }, - { - "text": "Cooperate further with the task force against trafficking in human beings of the Council of the Baltic Sea States", - "values": [ - "Trafficking" - ] - }, - { - "text": "Take effective measures to improve women\u2019s access to health services, in particular reproductive health services", - "values": [ - "Right to health", - "Women's rights" - ] - }, - { - "text": "Modify or repeal the blasphemy laws in order to bring them in line with the principles related to freedom of thought, conscience and religion, and in particular with its obligations under the ICCPR", - "values": [ - "Freedom of opinion and expression", - "Freedom of religion and belief", - "International instruments" - ] - }, - { - "text": "Ratify the Second Optional Protocol to the ICCPR aimed at abolition of the death penalty, which has not been applied in Tunisia for the past 20 years ", - "values": [ - "Death penalty", - "International instruments" - ] - }, - { - "text": "Allow complete and unfettered access to the Commission of Inquiry and implement all Human Rights Council resolutions on the human rights situation in the Syrian Arab Republic", - "values": [ - "Technical assistance and cooperation" - ] - }, - { - "text": "Pursue efforts to provide specific human rights training to law enforcement and judicial officers on all aspects of human rights", - "values": [ - "Human rights education and training" - ] - }, - { - "text": "Strengthen education and awareness of human rights at the national level ", - "values": [ - "Human rights education and training" - ] - }, - { - "text": "Continue its judicial reforms in the form of amendments to the Judicial Systems Act, the Penal Code and the Penal Procedure Code, the Ministry of Interior Act and the Criminal Assets Forfeiture Act and the like, give attention to more training and professionalism within the judiciary as well as the enhancement of the appraisal and appointment systems, and strengthen the accountability and efficiency of the Supreme Judicial Council", - "values": [ - "Justice" - ] - }, - { - "text": "Continue to promote and protect human rights through education and institutional reforms", - "values": [ - "Human rights education and training" - ] - }, - { - "text": "Draft and adopt legislation to end violence and discrimination against women", - "values": [ - "Women's rights" - ] - }, - { - "text": "Step up efforts to achieve greater independence of the judiciary. In this regard, substantially increase the resources for the administration of justice, provide training and education on human rights for its staff, and adopt legislative measures to strengthen the independence of judicial action in accordance with international standards ", - "values": [ - "Human rights education and training", - "Justice" - ] - }, - { - "text": "Ratify the Optional Protocol to the International Covenant on Economic, Social and Cultural Rights and accept the competence of the Committee as regards the inquiry procedure and inter-State communications", - "values": [ - "ESC rights - general", - "International instruments", - "Treaty bodies" - ] - }, - { - "text": "Ratify the Protocol No. 14 to the European Convention on Human Rights ", - "values": [ - "Other" - ] - }, - { - "text": "Investigate in depth on the allegations of human rights violations committed by the private security services, police forces and high officials since 2008 in Marange region, pursue and sanction those who are responsible ", - "values": [ - "Human rights violations by state agents" - ] - }, - { - "text": "Ensure compliance with article 19 of the ICCPR and works towards an environment conducive to a free and open press", - "values": [ - "Freedom of opinion and expression", - "Freedom of the press", - "International instruments" - ] - }, - { - "text": "Establish an institutional framework which protects the rights of the child and guarantees implementation of these rights ", - "values": [ - "Rights of the Child" - ] - }, - { - "text": "Adopt a Child Protection Code that includes physical, emotional and sexual abuse", - "values": [ - "Rights of the Child" - ] - }, - { - "text": "Establish and strengthen the basis for national unity and internal security and stability of the State in order to preserve the gene pool of the nation through participation in socio-political activities of all sectors of the population, including women", - "values": [ - "Other" - ] - }, - { - "text": "Ratify the Convention for the Protection of All Persons from Enforced Disappearance.", - "values": [ - "Enforced disappearances", - "International instruments" - ] - }, - { - "text": "Ratify the Istanbul Convention without delay", - "values": [ - "International instruments", - "Women's rights" - ] - }, - { - "text": "Increase the efforts to combat all forms of violence against children in all spheres", - "values": [ - "Rights of the Child" - ] - }, - { - "text": "Pursue the efforts aiming at promoting women rights and ensuring gender equality, with particular attention to the access of women to justice and women participation in public life ", - "values": [ - "Women's rights" - ] - }, - { - "text": "Extend the applicability of all international human rights instruments to which it has acceded to the whole territory of the country ", - "values": [ - "International instruments" - ] - }, - { - "text": "Continue to work with the National Human Rights System, to achieve greater compliance with international commitments, incorporating a differentiated approach to sectoral policies", - "values": [ - "National Human Rights Institution" - ] - }, - { - "text": "Accede to the Rome Statute and the Agreement on the Privileges and Immunities of the International Criminal Court", - "values": [ - "International instruments", - "Justice" - ] - }, - { - "text": "In the application of the death penalty, act in accordance with the CRC (article 37), to which the United Arab Emirates is a party", - "values": [ - "Death penalty", - "International instruments" - ] - }, - { - "text": "Reinforce the National Referral Mechanism to identify and assist victims of human trafficking", - "values": [ - "Trafficking" - ] - }, - { - "text": "Continue to focus its efforts on ensuring full protection of human rights for all vulnerable groups, one such avenue is through the ongoing rigorous capacity building programmes that Malaysia has initiated in this area, particularly for public officers", - "values": [ - "Human rights education and training" - ] - }, - { - "text": "Ensure that the rights of the human rights defenders are properly respected and perpetrators are brought to justice", - "values": [ - "Human rights defenders" - ] - }, - { - "text": "Reinforce instances established by law to combat violence against women and put in place a system for the protection, prevention and effective punishment, in favour of women victims of violence", - "values": [ - "Women's rights" - ] - }, - { - "text": "Fulfil its international obligations by ratifying as a matter of priority the International Covenant on Civil and Political Rights and the International Covenant on Economic, Social and Cultural Rights", - "values": [ - "CP rights - general", - "ESC rights - general", - "International instruments" - ] - }, - { - "text": "Release all persons detained solely for peaceful political activities, inquire into all cases of alleged torture in detention facilities and bring those responsible to justice", - "values": [ - "Detention", - "Freedom of association and peaceful assembly", - "Torture and other CID treatment" - ] - }, - { - "text": "Intensify efforts to combat violence against women", - "values": [ - "Women's rights" - ] - }, - { - "text": "The ratification of the Optional Protocol to the International Covenant on Economic, Social and Cultural Rights is a priority for this year", - "values": [ - "ESC rights - general", - "International instruments" - ] - }, - { - "text": "Continue social and economic reforms aimed at the creation of new jobs ", - "values": [ - "Development" - ] - }, - { - "text": "Respect the fundamental rights of individuals, including the rights to freedom of expression and association and respect the prohibition of arbitrary arrest and detention, as well as the procedural guarantees", - "values": [ - "Detention", - "Freedom of association and peaceful assembly", - "Freedom of opinion and expression" - ] - }, - { - "text": "Ensure the safe and voluntary return of all internally displaced persons to their place of origin", - "values": [ - "Internally displaced persons" - ] - }, - { - "text": "Take urgent and radical measures regarding legislation which will allow a real improvement of the situation of women and will guarantee the respect of their human rights, including, in particular, the right to education.", - "values": [ - "Women's rights" - ] - }, - { - "text": "Consider removing any restriction on the freedom of association incompatible with its obligations under international law ", - "values": [ - "Freedom of association and peaceful assembly" - ] - }, - { - "text": "Adopt measures to prevent violence and discrimination against persons on the basis of their sexual orientation and gender identity", - "values": [ - "Sexual Orientation and Gender Identity" - ] - }, - { - "text": "Step up the efforts aimed at establishing a National Human Rights Institution ", - "values": [ - "National Human Rights Institution" - ] - }, - { - "text": "Accede to the Second Optional Protocol to the International Covenant on Civil and Political Rights, aimed at abolishing the death penalty, and take all necessary steps to remove the death penalty from Antigua and Barbuda law", - "values": [ - "Death penalty", - "International instruments" - ] - }, - { - "text": "Consider ratification of the International Covenant on Economic, Social and Cultural Rights and the International Covenant on Civil and Political Rights as soon as possible", - "values": [ - "CP rights - general", - "ESC rights - general", - "International instruments" - ] - }, - { - "text": "Implement policies and programmes preventing violence against women and children", - "values": [ - "Rights of the Child", - "Women's rights" - ] - }, - { - "text": "Implement swiftly and resolutely all the recommendations made by the BICI, including the investigation of documented human rights abuses during recent protests, with a view to ensuring full accountability, justice and reparations for the victims ", - "values": [ - "Freedom of association and peaceful assembly", - "Justice" - ] - }, - { - "text": "Accelerate measures to eliminate violence against women ", - "values": [ - "Women's rights" - ] - }, - { - "text": "Increase the resource allocation for the health sector, especially to fulfil steps towards securing a comprehensive healthcare system", - "values": [ - "Right to health" - ] - }, - { - "text": "Preserve and protect the natural family institution and marriage as the conjugal union between a man and a woman based on their free consent", - "values": [ - "Other" - ] - }, - { - "text": "Enact legislation prohibiting violence based on sexual orientation, and repeal laws that directly or indirectly criminalize consensual same-sex sexual activities", - "values": [ - "Sexual Orientation and Gender Identity" - ] - }, - { - "text": "Solve long-standing conflicts between the Government and ethnic groups in a peaceful manner ", - "values": [ - "Minorities" - ] - }, - { - "text": "Continue with its policy aimed at improving the living conditions of indigenous peoples on the labour market, with a view to their social stability ", - "values": [ - "Indigenous peoples", - "Labour" - ] - }, - { - "text": "Continue to cooperate with United Nations human rights mechanisms to further improve the human rights situation", - "values": [ - "Special procedures", - "Treaty bodies", - "UPR process" - ] - }, - { - "text": "Consider the accession to the Convention on the Rights of Persons with Disabilities ", - "values": [ - "Disabilities", - "International instruments" - ] - }, - { - "text": "Accept the full and unrestricted implementation of the provisions of the Convention against Torture and the International Covenant on Civil and Political Rights in overseas territories under its control. ", - "values": [ - "CP rights - general", - "International instruments", - "Torture and other CID treatment" - ] - }, - { - "text": "Continue efforts to increase the school enrolment rate and literacy among nomadic populations", - "values": [ - "Minorities", - "Right to education" - ] - }, - { - "text": "Accede to the Optional Protocol to the International Covenant on Economic, Social and Cultural Rights", - "values": [ - "ESC rights - general", - "International instruments" - ] - }, - { - "text": "Consider positively OHCHR offers of technical assistance and cooperate with the Human Rights Council special procedures in support of national efforts in this regard ", - "values": [ - "Special procedures", - "Technical assistance and cooperation" - ] - }, - { - "text": "That the Unit on Family Violence and other competent bodies improve search and data collection systems, in order to accurately quantify the magnitude of the problem, its causes and consequences", - "values": [ - "Rights of the Child", - "Women's rights" - ] - }, - { - "text": "The Gambia is committed to creating a conducive environment for the media to operate freely and to ensure a free flow of information as provided for in the Constitution.", - "values": [ - "Freedom of opinion and expression" - ] - }, - { - "text": "Continue its measures on awareness-raising campaigns and other necessary measures with regard to the promotion of equity in the society and the elimination of discrimination against women ", - "values": [ - "Human rights education and training", - "Women's rights" - ] - }, - { - "text": "Promote long-term programmes and initiatives to effectively promote full national integration and combat structural discrimination, for example by including minority languages in official procedures and documents, as well as including prohibition of discrimination in the Civil Code ", - "values": [ - "Minorities" - ] - }, - { - "text": "Increase medical, judicial, psychological and socioeconomic support to victims of sexual violence", - "values": [ - "Rights of the Child", - "Women's rights" - ] - }, - { - "text": "Set up a mechanism to carry out the repatriation of funds of illicit origin and illegally acquired assets to their countries of origin and to ensure cooperation with the requesting states ", - "values": [ - "Other" - ] - }, - { - "text": "Completely eliminate the practice of child labour and ensure that all children have access to free and compulsory education", - "values": [ - "Right to education", - "Rights of the Child" - ] - }, - { - "text": "Coordinate with NGOs to ensure effective implementation of formal procedures to guide police and relevant government officials on how to identify victims of forced labour and forced prostitution among vulnerable groups, refer them to available services, and actively pursue traffickers", - "values": [ - "Labour", - "Minorities", - "Trafficking", - "Women's rights" - ] - }, - { - "text": "Adopt legislative or other measures so that human rights are taken into account upstream by the judiciary, in particular during the elaboration of popular initiatives to ensure their compliance with international obligations.", - "values": [ - "Justice" - ] - }, - { - "text": "Take effective legal measures to prohibit the use of excessive force by the police against various groups of peoples ", - "values": [ - "Human rights violations by state agents" - ] - }, - { - "text": "Ratify the Istanbul Convention ", - "values": [ - "International instruments", - "Women's rights" - ] - }, - { - "text": "Ratify the Rome Statute of the International Criminal Court and fully align its legislation with all the obligations under the Rome Statute", - "values": [ - "International instruments", - "Justice" - ] - }, - { - "text": "Make further contributions to genuine dialogue and cooperation among countries, in respect of principles of international laws, with a view to establish conditions favourable to national endeavours in protecting and promoting human rights", - "values": [ - "Technical assistance and cooperation" - ] - }, - { - "text": "End its policy of fanatic Islamism and intolerance towards persons belonging to other religions, including adherents of the Baha'i faith", - "values": [ - "Freedom of religion and belief", - "Minorities" - ] - }, - { - "text": "Adopt a rights-based approach to its forthcoming Emissions Reduction Plan", - "values": [ - "Environment" - ] - }, - { - "text": "Continue to take into account, in the implementation of Vision 2050 and other development plans, the improvement, conservation and protection of the environment", - "values": [ - "Development", - "Environment" - ] - }, - { - "text": "Provide sufficient funding for the National Human Rights Institution, enabling them to carry out its task as Human Rights watchdog", - "values": [ - "National Human Rights Institution" - ] - }, - { - "text": "Consider, especially, the access of the most disadvantaged groups to health centers and services, particularly in the case of asylum seekers and migrants ", - "values": [ - "Asylum-seekers - refugees", - "Migrants", - "Right to health" - ] - }, - { - "text": "Launch the human rights educational programmes for law enforcement officers on combating torture and respect for human rights", - "values": [ - "Human rights education and training" - ] - }, - { - "text": "Take appropriate measures for ensuring prosecution for trafficking", - "values": [ - "Trafficking" - ] - }, - { - "text": "Take the necessary measures to eliminate all forms of discrimination against the immigrant population and step up its efforts to reduce the level of school failure among this population, especially through the creation of two educational tracks, one in French and other Romance languages and one in Germanic languages", - "values": [ - "Migrants", - "Minorities", - "Racial discrimination", - "Right to education" - ] - }, - { - "text": "Continue the implementation of the national programme to combat the consequences of slavery, and increase the awareness raising campaigns on its prohibition", - "values": [ - "Human rights education and training" - ] - }, - { - "text": "Continue to ratify the international conventions on human rights", - "values": [ - "International instruments" - ] - }, - { - "text": "Continue and enhance its efforts to ensure the full implementation of the Convention against Torture and Other Cruel, Inhuman, or Degrading Treatment or Punishment", - "values": [ - "International instruments", - "Torture and other CID treatment" - ] - }, - { - "text": "Provide follow-up to the Council of Europe Convention on Action against Trafficking in Human Beings with a particular concern on unaccompanied minors", - "values": [ - "Rights of the Child", - "Trafficking" - ] - }, - { - "text": "Adopt specific measures to deal with the causes of the increasing problem of street children and to prevent and to punish sexual exploitation of children", - "values": [ - "Rights of the Child" - ] - }, - { - "text": "Adopt measures to combat violence, in particular through legislation defining and outlawing domestic violence, and by providing training to judges and civil servants and organizing awareness-raising programmes targeting society as a whole.", - "values": [ - "Human rights education and training", - "Rights of the Child", - "Women's rights" - ] - }, - { - "text": "Take all the necessary measures to ratify the Second Optional Protocol to the International Covenant on Civil and Political Rights, aiming at the abolition of the death penalty", - "values": [ - "Death penalty", - "International instruments" - ] - }, - { - "text": "Continue the efforts to promote and protect the right to health and the right to education for its people in order to further improve the standard of living for all", - "values": [ - "Right to education", - "Right to health" - ] - }, - { - "text": "Ratify promptly the Convention against Torture", - "values": [ - "International instruments", - "Torture and other CID treatment" - ] - }, - { - "text": "Establish measures for greater accountability to prevent loss of life ", - "values": [ - "Other" - ] - }, - { - "text": "Redouble its efforts to eradicate the problem of violence against women, in all its forms", - "values": [ - "Women's rights" - ] - }, - { - "text": "Adopt the comprehensive law on violence against women and girls", - "values": [ - "Rights of the Child", - "Women's rights" - ] - }, - { - "text": "Consider the abolition of the death penalty in its legal system and proceed with the ratification of the Second Optional Protocol to the International Covenant on Civil and Political Rights", - "values": [ - "Death penalty", - "International instruments" - ] - }, - { - "text": "Withdraw the remaining reservations to the Convention on the Rights of the Child and to the Optional Protocols to the Convention on the Rights of the Child ratified by Oman", - "values": [ - "International humanitarian law", - "International instruments", - "Labour", - "Rights of the Child", - "Trafficking" - ] - }, - { - "text": "Continue to strengthen the implementation of the rights to drinking water and sanitation for the whole population, especially for rural communities", - "values": [ - "Right to water and sanitation" - ] - }, - { - "text": "Accede to the Optional Protocols to the Convention on the Rights of the Child ", - "values": [ - "International instruments", - "Rights of the Child" - ] - }, - { - "text": "Adopt the draft gender equality act and criminalize domestic violence and marital rape", - "values": [ - "Women's rights" - ] - }, - { - "text": "Continue the measures for poverty reduction", - "values": [ - "Poverty" - ] - }, - { - "text": "Further implement the National Health Development Plan 2011-2015 and the health insurance card for non-civil servants", - "values": [ - "Right to health" - ] - }, - { - "text": "Delay no longer in appointing members of the\nhighest judicial authorities and to ensure the impartiality of those members", - "values": [ - "Justice" - ] - }, - { - "text": "Ratify the Optional Protocol to the International Covenant on Economic, Social and Cultural Rights", - "values": [ - "ESC rights - general", - "International instruments" - ] - }, - { - "text": "Continue efforts in the fight against impunity for gross violations of human rights committed during the armed conflict", - "values": [ - "Impunity" - ] - }, - { - "text": "Continue to allocate resources to the Department of Women's Affairs to allow it to further enhance and implement programmes for the advancement of women's rights ", - "values": [ - "Women's rights" - ] - }, - { - "text": "Continue to improve the procedures for prosecuting and sanctioning those responsible for acts of violence against women, as well as guaranteeing constant monitoring of the implementation of the national plan to eradicate gender-based violence against children", - "values": [ - "Justice", - "Rights of the Child", - "Women's rights" - ] - }, - { - "text": "Invite the international community to assist in the monitoring of the action plan against sexual violence. ", - "values": [ - "Rights of the Child", - "Women's rights" - ] - }, - { - "text": "Ensure justice that is independent and transparent, and that respects the right to defence", - "values": [ - "Justice" - ] - }, - { - "text": "Continue the legislative reforms it has embarked on regarding participatory democracy and political parties", - "values": [ - "General", - "Justice" - ] - }, - { - "text": "Review its anti-terrorism law and Criminal Code to definitively abolish the death penalty and ratify the Second Optional Protocol to the International Covenant on Civil and Political Rights", - "values": [ - "Death penalty", - "International instruments" - ] - }, - { - "text": "Continue its efforts to improve treatment of inmates", - "values": [ - "Detention" - ] - }, - { - "text": "Accelerate efforts aimed at the effective implementation with full enforcement of its relevant plans of action and policies including that of the anti-trafficking legislation", - "values": [ - "Trafficking" - ] - }, - { - "text": "[Freedom of belief to all] Especially the Ahmadi minority, which suffers from continued persecution", - "values": [ - "Freedom of religion and belief", - "Minorities" - ] - }, - { - "text": "Review laws and practices in particular with regard to ensuring protection of the freedom of religion, movement, protection of the culture and language of national minorities, including Tibetans and Uyghurs", - "values": [ - "Freedom of movement", - "Freedom of religion and belief", - "Minorities" - ] - }, - { - "text": "Put in place mechanisms aimed at definitely abolishing the death penalty, as a consequence of the moratorium in force since 2004 ", - "values": [ - "Death penalty" - ] - }, - { - "text": "Commute all death sentences to terms of imprisonment ", - "values": [ - "Death penalty" - ] - }, - { - "text": "Intensify the efforts to combat effectively violence against women and girls and prosecute perpetrators ", - "values": [ - "Rights of the Child", - "Women's rights" - ] - }, - { - "text": "Take all necessary measures to protect the right to health and life of residents living in the area of Fukushima from radioactive hazards and ensure that the Special Rapporteur on the Right to Health can meet with affected and evacuated people and civil society groups", - "values": [ - "Civil society", - "Right to health", - "Special procedures" - ] - }, - { - "text": "Step up efforts to further develop the human rights education system and strengthen the culture of human rights", - "values": [ - "Human rights education and training" - ] - }, - { - "text": "Continue its measures for poverty reduction, including reduction of multi-dimensional poverty ", - "values": [ - "Poverty" - ] - }, - { - "text": "Take further measures to improve women's access to decision-making and management positions, and to positions with improved career prospects, in both the public and private sectors", - "values": [ - "Women's rights" - ] - }, - { - "text": "Remove the provisions of the penal code that allow the punishment of the death penalty for homosexuality, as soon as possible ", - "values": [ - "Death penalty", - "Sexual Orientation and Gender Identity" - ] - }, - { - "text": "Scale up the Isange One-Stop Centres to care for victims of gender-based violence and human trafficking", - "values": [ - "Trafficking", - "Women's rights" - ] - }, - { - "text": "Pass legislation increasing the legal age of marriage to 18", - "values": [ - "Rights of the Child", - "Women's rights" - ] - }, - { - "text": "Ratify the Convention against Torture and Other Cruel, Inhuman or Degrading Treatment or Punishment and its Optional Protocol", - "values": [ - "Detention", - "International instruments", - "Torture and other CID treatment" - ] - }, - { - "text": "Implement the existing policies and laws to eradicate child labour and trafficking", - "values": [ - "Labour", - "Rights of the Child", - "Trafficking" - ] - }, - { - "text": "Take the necessary measures and steps with a view to ensuring gender equality in wages in all sectors of labour in Switzerland", - "values": [ - "Women's rights" - ] - }, - { - "text": "Ratify or sign, whichever is applicable, the convention against Torture", - "values": [ - "International instruments", - "Torture and other CID treatment" - ] - }, - { - "text": "Adopt legislation to raise public awareness to prohibit and eliminate all forms of corporal punishment ", - "values": [ - "Torture and other CID treatment" - ] - }, - { - "text": "Continue to pursue implementation of the Basic Principles on the Independence of the Judiciary and repeal all provisions of national law that restrict the Constitutional Court's jurisdiction", - "values": [ - "Justice" - ] - }, - { - "text": "Approve the law on judicial career and ensure that it establishes an independent body to guarantee the independence of the judiciary and supervise the appointment, promotion and regulation of members of the profession", - "values": [ - "Justice" - ] - }, - { - "text": "Take all measures to avoid incidents of violations of the Standard Minimum Rules for the Treatment of Prisoners", - "values": [ - "Detention" - ] - }, - { - "text": "Enact comprehensive anti-discrimination legislation with specific legislation prohibiting racial discrimination", - "values": [ - "Racial discrimination" - ] - }, - { - "text": "Build on progress made as regards training programmes on human rights and further improve such schemes", - "values": [ - "Human rights education and training" - ] - }, - { - "text": "More efforts be made to combat gender violence, principally through the adoption of political measures to include the representation of women in decision-making-posts and in public administration ", - "values": [ - "Women's rights" - ] - }, - { - "text": "Keep the important impetus given to the National Plan of educational development, with particular emphasis on the most vulnerable social sectors", - "values": [ - "Right to education" - ] - }, - { - "text": "Continue adapting legislation, at the federal, provincial and local levels, to the provisions of the Convention on the Rights of Persons with Disabilities, ensuring the participation of organizations that represent persons with disabilities in those processes", - "values": [ - "Disabilities", - "International instruments" - ] - }, - { - "text": "Step up its efforts in enhancing the impact of the measures taken to address traditional discriminatory practices and persisting stereotypes about the roles and responsibilities of women and men", - "values": [ - "Women's rights" - ] - }, - { - "text": "Introduce a moratorium and seek alternatives to the death penalty", - "values": [ - "Death penalty" - ] - }, - { - "text": "Give diligent follow-up to recommendations of CERD in 2008 in particular the prevention of racially motivated offenses, guaranteeing the equal enjoyment of the right to adequate housing, lifting obstacles encountered by asylum-seekers for schooling their children, and inclusion in their legislation of a specific provision which establish ethnic racial or religious hatred as an aggravated circumstance in criminal matters", - "values": [ - "Racial discrimination", - "Treaty bodies" - ] - }, - { - "text": "Increase the participation of the Aboriginal and Torres Strait Islander communities in the process of closing the gap in opportunities and life outcomes", - "values": [ - "Indigenous peoples" - ] - }, - { - "text": "Ensure that the Senegal Human Rights Committee has the necessary resources to enable it to function independently and in accordance with the Paris Principles", - "values": [ - "National Human Rights Institution" - ] - }, - { - "text": "Complete the process of adopting the Prevention and Combating of Hate Crimes and Hate Speech Bill", - "values": [ - "Racial discrimination" - ] - }, - { - "text": "Accede to and fully implement the 1954 Convention relating to the Status of Stateless Persons, the 1961 Convention on the Reduction of Statelessness and the 1951 Convention relating to the Status of Refugees", - "values": [ - "Asylum-seekers - refugees", - "International instruments", - "Statelessness and the right to nationality" - ] - }, - { - "text": "Continue supporting the work of OHCHR Seoul office", - "values": [ - "Technical assistance and cooperation" - ] - }, - { - "text": "Consider the possibility of signing or acceding to the remaining international human rights treaties, including ICESCR and ICRMW and domesticate them in its national legislation", - "values": [ - "ESC rights - general", - "International instruments", - "Labour", - "Migrants" - ] - }, - { - "text": "Prioritize policy measures towards achieving universal, free and compulsory primary education, paying especial care to children with disabilities and those living in rural areas ", - "values": [ - "Disabilities", - "Right to education", - "Rights of the Child" - ] - }, - { - "text": "Continue to take further action as appropriate to combat trafficking in women and children", - "values": [ - "Rights of the Child", - "Trafficking", - "Women's rights" - ] - }, - { - "text": "Establish national mechanisms to combat violence against women, especially in Darfur ", - "values": [ - "Women's rights" - ] - }, - { - "text": "Ratify the OP-CRC on a communications procedure", - "values": [ - "International instruments", - "Rights of the Child" - ] - }, - { - "text": "Continue its efforts to enhance the protection of women's rights and promote gender equality ", - "values": [ - "Women's rights" - ] - }, - { - "text": "Adopt effective legal and administrative measures to forcefully combat xenophobic and racial discrimination, and genuinely protect the rights of ethnic minorities", - "values": [ - "Minorities", - "Racial discrimination" - ] - }, - { - "text": "Revise the legislation on child marriage and the legal age of marriage so as to be consistent with international standards, with the aim of both harmonizing the legal framework by eliminating the co-existence of different prescriptions in Civil Law and in Shari'a regulations and preventing the practice of early and forced marriages", - "values": [ - "Rights of the Child", - "Women's rights" - ] - }, - { - "text": "Decriminalize relations between persons of the same sex", - "values": [ - "Sexual Orientation and Gender Identity" - ] - }, - { - "text": "Strengthen efforts to protect the rights of persons with disabilities, including through the provision of adequate infrastructure", - "values": [ - "Disabilities" - ] - }, - { - "text": "Develop programmes to raise awareness about domestic and gender violence", - "values": [ - "Rights of the Child", - "Women's rights" - ] - }, - { - "text": "Pursue initiatives aimed at reducing violence against women, with focus on awareness-raising activities in this area ", - "values": [ - "Human rights education and training", - "Women's rights" - ] - }, - { - "text": "Extend a standing invitation to all the Human Rights Council special procedures", - "values": [ - "Special procedures" - ] - }, - { - "text": "Increase the attention and effective measures to fight against discrimination faced by minorities, ensuring the protection of their rights ", - "values": [ - "Minorities", - "Racial discrimination" - ] - }, - { - "text": "Pay particular and multisectoral attention to the disadvantaged socioeconomic situations prevailing in rural areas", - "values": [ - "ESC rights - general" - ] - }, - { - "text": "Amend its laws to ensure the protection of the rights of LGBTI persons by including sexual orientation and gender identity as prohibited grounds for discrimination and by decriminalizing same-sex relations", - "values": [ - "Sexual Orientation and Gender Identity" - ] - }, - { - "text": "Ratify the Kampala convention and create an adequate national and legal policy framework to effectively deal with internally displaced people", - "values": [ - "Internally displaced persons", - "International instruments" - ] - }, - { - "text": "Protect the children and families of migrants and refugees. ", - "values": [ - "Asylum-seekers - refugees", - "Migrants", - "Rights of the Child" - ] - }, - { - "text": "Continue to cooperate with the activities of the Ombudsman.", - "values": [ - "National Human Rights Institution" - ] - }, - { - "text": "Develop and enforce a comprehensive social housing system and take measures in order to prevent the creation of segregated housing areas", - "values": [ - "Right to housing" - ] - }, - { - "text": "Adopt policies to facilitate access of descendants of slaves to education and employment under conditions of equality", - "values": [ - "Labour", - "Right to education" - ] - }, - { - "text": "Make further efforts for combating domestic violence, as the problem of domestic violence is still present", - "values": [ - "Rights of the Child", - "Women's rights" - ] - }, - { - "text": "Establish a national human rights institution with "A" status in full conformity with the Paris Principles", - "values": [ - "National Human Rights Institution" - ] - }, - { - "text": "Promptly ratify the International Labour Organization Indigenous and Tribal Peoples Convention, 1989 No. 169", - "values": [ - "Indigenous peoples", - "International instruments" - ] - }, - { - "text": "Adopt in French, as in the case of the two other official languages, terminologies which truly reflect common values related to equality between men, women and children.", - "values": [ - "Rights of the Child", - "Women's rights" - ] - }, - { - "text": "Establish a national human rights institution in accordance with Paris Principles", - "values": [ - "National Human Rights Institution" - ] - }, - { - "text": "Take appropriate legislative measures to decriminalize irregular entry and stay in Italy", - "values": [ - "Migrants" - ] - }, - { - "text": "Consider ratification of the International Convention on the Elimination of All Forms of Racial Discrimination and International Covenant on Economic, Social and Cultural Rights ", - "values": [ - "ESC rights - general", - "International instruments", - "Racial discrimination" - ] - }, - { - "text": "Recommended an acceptance of independent international monitoring be taken up as recommendations.", - "values": [ - "Other" - ] - }, - { - "text": "Step up efforts to prevent all forms of violence against women, including sexual abuse and domestic violence by finally adopting a comprehensive National Action Plan to punish perpetrators and provide assistance and recovery for victims as well as eradicate harmful traditions such as FGM", - "values": [ - "Rights of the Child", - "Torture and other CID treatment", - "Women's rights" - ] - }, - { - "text": "Continue efforts to promote the integration of immigrants in Portugal ", - "values": [ - "Migrants" - ] - }, - { - "text": "Continue efforts to strengthen protection mechanisms, including considering the establishment of victim and witness protection agency", - "values": [ - "Justice" - ] - }, - { - "text": "Step up efforts to promote and facilitate media pluralism and ensure that mass media can operate without government interference ", - "values": [ - "Freedom of the press" - ] - }, - { - "text": "Put in place a comprehensive strategy to ensure that all children have equal access to education ", - "values": [ - "Right to education", - "Rights of the Child" - ] - }, - { - "text": "Enforce laws relating to child labour", - "values": [ - "Labour", - "Rights of the Child" - ] - }, - { - "text": "Continue the initiatives for the promotion of tolerance and diversity with the aim of protecting the rights of national and ethnic minorities of the country", - "values": [ - "Minorities" - ] - }, - { - "text": "Address the issue of poor conditions in prison and detention centres in particular by ensuring the separation of juvenile offenders from adult inmates", - "values": [ - "Detention", - "Rights of the Child" - ] - }, - { - "text": "Reconsider its policy of using administrative detention and immigration legislation to detain and remove non-citizens on the ground of national security ", - "values": [ - "Detention", - "Migrants" - ] - }, - { - "text": "Further strengthen the mechanisms for the effective implementation of the National Human Rights Programme at all levels of government", - "values": [ - "General" - ] - }, - { - "text": "Amend the Equal Opportunity Act to include sexual orientation and gender identity as prohibited grounds for discrimination, as part of a proactive strategy to promote respect for the dignity and rights of all individuals", - "values": [ - "Sexual Orientation and Gender Identity" - ] - }, - { - "text": "Apply broadly the principles of governance set out in the Universal Declaration of Human Rights, as they are key to the sustainable management of natural resources, such as protection of rainforests, and essential to the realization of fundamental economic, social and cultural rights, as recommended previously", - "values": [ - "ESC rights - general", - "Environment", - "International instruments", - "UPR process" - ] - }, - { - "text": "Continue improving the access to and the use of health services in the most remote communities", - "values": [ - "Right to health" - ] - }, - { - "text": "Take concrete measures to guarantee the effective participation of indigenous peoples in decisions that affect them, in line with systematically implementing the right to consultation ", - "values": [ - "Indigenous peoples" - ] - }, - { - "text": "Prevent anyone in the military, paramilitary or guerrilla forces who is accused of grave human rights violations and crimes against humanity from benefitting from the amnesty laws.", - "values": [ - "Justice" - ] - }, - { - "text": "Continue enhancing the implementation of public policies on education and health", - "values": [ - "Right to education", - "Right to health" - ] - }, - { - "text": "Put in place human rights training programmes for members of the judiciary and law enforcement officials, including the police, security forces and correctional officers", - "values": [ - "Human rights education and training" - ] - }, - { - "text": "Continue to take measures to strengthen the justice system", - "values": [ - "Justice" - ] - }, - { - "text": "Continue and strengthen relations with OHCHR ", - "values": [ - "Technical assistance and cooperation" - ] - }, - { - "text": "Ensure the implementation of the Convention on the Rights of Persons with Disabilities in line with national efforts", - "values": [ - "Disabilities", - "International instruments" - ] - }, - { - "text": "Bring legislation in conformity with its commitments to equality and non-discrimination by reviewing article 88 of the Penal Code and by decriminalizing homosexual relations between consenting adults", - "values": [ - "Sexual Orientation and Gender Identity" - ] - }, - { - "text": "Remedy the low participation of women in public and political life and combat domestic violence", - "values": [ - "Rights of the Child", - "Women's rights" - ] - }, - { - "text": "Continue its programme to enhance its capacity with regard to the human rights of state and civil society actors ", - "values": [ - "Civil society" - ] - }, - { - "text": "Take concrete and stern action to ensure equal treatment for all in the society, in particular to remove de facto discrimination against Roma people ", - "values": [ - "Minorities", - "Racial discrimination" - ] - }, - { - "text": "Exert greater efforts to promote corporative social responsibility of private enterprise, encouraging them to promote voluntary initiatives that contribute to human development of the Egyptian people", - "values": [ - "Business and human rights", - "Development" - ] - }, - { - "text": "Establish a procedure for providing immediate registration of arrest and detention of people and ensure that their families were systematically informed", - "values": [ - "Detention" - ] - }, - { - "text": "Continue to give particular priority to Special Education for children who require highly specialized care ", - "values": [ - "Disabilities", - "Right to education", - "Rights of the Child" - ] - }, - { - "text": "Strengthen measures to ensure an effective fight against domestic violence - in particular, introduce the crime of domestic violence into its criminal code as a matter of priority and ensure that effective support and protection is available for victims of domestic violence ", - "values": [ - "Rights of the Child", - "Women's rights" - ] - }, - { - "text": "Strengthens efforts to further promote empowerment of women", - "values": [ - "Women's rights" - ] - }, - { - "text": "Ensure accountability for cases of extrajudicial killings and ethnic rape as weapons of war ", - "values": [ - "Extrajudicial executions" - ] - }, - { - "text": "Implement compulsory primary education, providing resources to ensure the quality and infrastructure of the education system", - "values": [ - "Right to education" - ] - }, - { - "text": "Continue its efforts in providing equal treatment for men and women in employment ", - "values": [ - "Women's rights" - ] - }, - { - "text": "Consider increasing the use of non-custodial measures to reduce overcrowding ", - "values": [ - "Detention" - ] - }, - { - "text": "Continue to combat human trafficking and violence against children and women ", - "values": [ - "Rights of the Child", - "Trafficking", - "Women's rights" - ] - }, - { - "text": "Further strengthen measures to ensure participation of women in political affairs ", - "values": [ - "Women's rights" - ] - }, - { - "text": "Continue to work on the promotion of human rights in the region of Transnistria, integral part of the territory of the Republic of Moldova", - "values": [ - "General" - ] - }, - { - "text": "Accept the competence of the Committee on Enforced Disappearances, in conformity with Articles 31 and 32 of the International Convention for the Protection of All Persons from Enforced Disappearance", - "values": [ - "Enforced disappearances", - "International instruments", - "Treaty bodies" - ] - }, - { - "text": "Examine, in the spirit of its engagement in favour of human rights, the possibility of adhering to the Convention on the Rights of Persons with Disabilities ", - "values": [ - "Disabilities", - "International instruments" - ] - }, - { - "text": "Ensure that all perpetrators of human rights violations are brought to justice, including the law enforcement officials suspected of committing acts of torture and ill-treatment or extrajudicial executions", - "values": [ - "Extrajudicial executions", - "Human rights violations by state agents", - "Torture and other CID treatment" - ] - }, - { - "text": "Ratify the Protocol to the African Charter on Human and Peoples\u2019 Rights on the Rights of Women in Africa (the Maputo Protocol)", - "values": [ - "International instruments", - "Women's rights" - ] - }, - { - "text": "Continue to ensure that its anti-human-trafficking programmes remain victim-oriented and provide effective access to legal and psychological support to child victims of trafficking", - "values": [ - "Rights of the Child", - "Trafficking" - ] - }, - { - "text": "Continue implementing measures to handle the problem of violence against women and combat impunity in this regard.", - "values": [ - "Impunity", - "Women's rights" - ] - }, - { - "text": "Take the necessary measures to guarantee access to civil, penal and labour justice, as well as assistance and consular protection for all migrants, regardless of their migratory status, to ascertain their rights in cases of abuse.", - "values": [ - "Migrants" - ] - }, - { - "text": "Continue to fight impunity and promote the respect of human rights by improving the judiciary ", - "values": [ - "Human rights education and training", - "Impunity", - "Justice" - ] - }, - { - "text": "Ratify the 1961 Convention of the Reduction of Statelessness", - "values": [ - "International instruments", - "Statelessness and the right to nationality" - ] - }, - { - "text": "Pursue efforts to combat maternal mortality", - "values": [ - "Right to health", - "Women's rights" - ] - }, - { - "text": "Strengthen their efforts to promote gender equality, including through awareness-raising programmes and the development of a comprehensive national gender strategy", - "values": [ - "Human rights education and training", - "Women's rights" - ] - }, - { - "text": "Continue to maintain and strengthen the economic, political and social model of Viet Nam to guarantee the full participation of the population in public and security affairs.", - "values": [ - "General" - ] - }, - { - "text": "Consider establishing a de jure moratorium of capital executions with a view to fully abolishing the death penalty", - "values": [ - "Death penalty" - ] - }, - { - "text": "Continue efforts to reduce pretrial detention by expanding, at the national level, the rehabilitation programme Coetivy", - "values": [ - "Detention" - ] - }, - { - "text": "Strictly apply the new Law on Discrimination and adopt a comprehensive legislation on hate crimes", - "values": [ - "Racial discrimination" - ] - }, - { - "text": "Guarantee freedom of expression, of the press and opinion, including by effectively investigating cases of attacks against journalists", - "values": [ - "Freedom of opinion and expression", - "Freedom of the press" - ] - }, - { - "text": "Further improve the conditions of women's in rural areas", - "values": [ - "Women's rights" - ] - }, - { - "text": "Include in its national norms recognition and adequate protection of the culture, values and spiritual and religious practices of indigenous peoples", - "values": [ - "Indigenous peoples" - ] - }, - { - "text": "Re-double its efforts in reducing and eliminating the incidence of poverty, particularly in the impoverished areas, in line with its revised National Poverty Elimination Strategy and Action", - "values": [ - "Poverty" - ] - }, - { - "text": "Consider applying the Yogyakarta Principles on the Application of International Human Rights Law in relations to Sexual Orientation and Gender Identity as a guide to assist in policy development.", - "values": [ - "International instruments", - "Sexual Orientation and Gender Identity" - ] - }, - { - "text": "Continue the implementation of positive measures in favour of gender equality to facilitate their access to justice and education", - "values": [ - "Justice", - "Right to education", - "Women's rights" - ] - }, - { - "text": "Continue and increase its efforts to combat all forms of violence against women ", - "values": [ - "Women's rights" - ] - }, - { - "text": "The fight against trafficking in foreign women be intensified.", - "values": [ - "Trafficking", - "Women's rights" - ] - }, - { - "text": "Establish a moratorium on the use of the death penalty, with a view to its abolition", - "values": [ - "Death penalty" - ] - }, - { - "text": "Continue with the successful policies for the democratization of the radio spectrum, by granting concessions to community media", - "values": [ - "Freedom of the press" - ] - }, - { - "text": "Continue efforts to improve health services for all", - "values": [ - "Right to health" - ] - }, - { - "text": "Consider expediting the process of ratifying the International Convention on the Protection of the Rights of All Migrant Workers and Members of Their families", - "values": [ - "International instruments", - "Labour", - "Migrants" - ] - }, - { - "text": "Continue providing assistance to the National Commission for Women and Children through capacity-building and providing additional human resources and technical expertise ", - "values": [ - "Rights of the Child", - "Women's rights" - ] - }, - { - "text": "Adopt a law meeting generally admitted international standards in the area of the status of domestic workers in order to give legal status to domestic workers, including minimum wages, limited working hours, periods of rest and vacation, medical costs coverage, respect for privacy and physical integrity, as well as the freedom to renegotiate or break an employment contract ", - "values": [ - "Labour" - ] - }, - { - "text": "Strengthen the competence of the Communications Regulatory Agency to reduce the risk of inciting ethnic or religious hatred", - "values": [ - "Racial discrimination" - ] - }, - { - "text": "Implement provisions of criminal legislation aimed at combating racially motivated crimes and prosecute those responsible, as well as increase awareness among persons belonging to national minorities about the means available for legal protection from discrimination and hatred", - "values": [ - "Human rights education and training", - "Minorities", - "Racial discrimination" - ] - }, - { - "text": "Consider ratifying the International Convention for the Protection of All Persons from Enforced Disappearance as well as the other international human rights core instruments to which the country is not yet a party", - "values": [ - "Enforced disappearances", - "International instruments" - ] - }, - { - "text": "Ensure the effective implementation of the Convention on the Elimination of All Forms of Discrimination against Women and actively promote gender equality", - "values": [ - "International instruments", - "Women's rights" - ] - }, - { - "text": "Investigate all cases of torture and ill-treatment in detention, as recommended previously", - "values": [ - "Detention", - "Torture and other CID treatment", - "UPR process" - ] - }, - { - "text": "Adopt comprehensive measures to address violence against women and girls, including criminalizing all forms of violence against women", - "values": [ - "Rights of the Child", - "Women's rights" - ] - }, - { - "text": "Take comprehensive measures to counter discrimination on the grounds of sexual orientation and gender identity", - "values": [ - "Sexual Orientation and Gender Identity" - ] - }, - { - "text": "Carry on with the education coverage, especially the integration of children with disabilities", - "values": [ - "Disabilities", - "Right to education", - "Rights of the Child" - ] - }, - { - "text": "Pursue and enhance its efforts to better address and respond to the problem of domestic violence", - "values": [ - "Rights of the Child", - "Women's rights" - ] - }, - { - "text": "Accelerate the repeal of discriminatory legislative provisions and adopt measures to protect and promote the traditional knowledge of the Batwa minority in accordance with the United Nations Declaration on the Rights of Indigenous Peoples", - "values": [ - "Indigenous peoples", - "International instruments", - "Racial discrimination" - ] - }, - { - "text": "The RMI is committed to developing socio-economic strategies and plans.", - "values": [ - "Development" - ] - }, - { - "text": "Provide Guyana security force members with adequate training on the appropriate use of force in accordance with international standards ", - "values": [ - "Human rights education and training" - ] - }, - { - "text": "Take concrete steps to streamline and ensure efficiency of judicial procedures concerning gender violence", - "values": [ - "Women's rights" - ] - }, - { - "text": "Withdraw reservations to CAT and ratify OP-CAT", - "values": [ - "Detention", - "International instruments", - "Torture and other CID treatment" - ] - }, - { - "text": "Consider an immediate moratorium on the use of the death penalty with a view to its permanent abolition ", - "values": [ - "Death penalty" - ] - }, - { - "text": "Continue endeavours to reduce poverty and bridge the income gap between the different regions and between rural and urban areas", - "values": [ - "Poverty" - ] - }, - { - "text": "Undertake a periodic review of its reservations to other international human rights treaties.", - "values": [ - "International instruments" - ] - }, - { - "text": "Continue its efforts to respond positively to requests to restore stolen assets to their rightful owners and to cooperate in the extradition of those involved in human rights violations and corruption cases", - "values": [ - "Corruption" - ] - }, - { - "text": "Expedite the adoption of draft law 103.13 on violence against women, while taking into account the importance of widening the protection for women victims of violence, and criminalize marital rape", - "values": [ - "Women's rights" - ] - }, - { - "text": "Adopt a legislative framework ensuring protection against all forms of offences motivated by prejudice", - "values": [ - "Other" - ] - }, - { - "text": "Take all necessary steps towards effective implementation of the national action plan on the implementation of the Convention on the Rights of the Child for the period 2017-2022", - "values": [ - "International instruments", - "Rights of the Child" - ] - }, - { - "text": "Take concrete steps including becoming a party to and implementing CRC and CEDAW ", - "values": [ - "International instruments", - "Rights of the Child", - "Women's rights" - ] - }, - { - "text": "That domestic legislation be brought more closely into line with the stipulations of relevant human rights instruments and that the Government establish an effective coordination and oversight body to monitor antitrafficking efforts and collect accurate data for use in future strategies and initiatives ", - "values": [ - "International instruments", - "Trafficking" - ] - }, - { - "text": "Continue with the efforts to end violence against women through, inter alia, the implementation of the Second National Plan on Violence against Women and by supporting international initiatives", - "values": [ - "Women's rights" - ] - }, - { - "text": "Ensure the protection of women\u2019s rights by strengthening legislation relating to offences on violence against women and girls", - "values": [ - "Rights of the Child", - "Women's rights" - ] - }, - { - "text": "Abolish corporal punishment by law and in practice, by enacting specific national legislation prohibiting corporal punishment in all environments", - "values": [ - "Torture and other CID treatment" - ] - }, - { - "text": "Step up efforts towards the abolition of the death penalty", - "values": [ - "Death penalty" - ] - }, - { - "text": "Expedite its efforts in combating against trafficking of women and girls through, inter alia, increasing its cooperation with international, regional and bilateral mechanism ", - "values": [ - "Rights of the Child", - "Trafficking", - "Women's rights" - ] - }, - { - "text": "More effectively cooperate with the United Nations mechanisms by extending a standing invitation to the special procedures, by responding to the their visit and information requests, and by regularly submitting its reports to the treaty bodies ", - "values": [ - "Special procedures", - "Treaty bodies" - ] - }, - { - "text": "Introduce a clear definition of child pornography into national legislation", - "values": [ - "Rights of the Child" - ] - }, - { - "text": "Bring its press laws into compliance with article 19 of ICCPR", - "values": [ - "Freedom of opinion and expression", - "International instruments" - ] - }, - { - "text": "Intensify its efforts to ensure that the Roma are not victims of discrimination, especially in areas such as access to housing and the right to drinking water and sanitation", - "values": [ - "Minorities", - "Racial discrimination", - "Right to housing", - "Right to water and sanitation" - ] - }, - { - "text": "Urge the national commission to search for children who disappeared during the armed conflict to begin its work", - "values": [ - "Enforced disappearances", - "International humanitarian law", - "Rights of the Child" - ] - }, - { - "text": "Establish a national preventative mechanism in accordance with its obligations to the OP-CAT ", - "values": [ - "Detention", - "International instruments", - "Torture and other CID treatment" - ] - }, - { - "text": "Specifically, to meet the commitments thus undertaken, the Government intends to draw up and broadly introduce social safety nets as an original mechanism providing social protection", - "values": [ - "ESC rights - general" - ] - }, - { - "text": "Strengthen the fight against all forms of discrimination", - "values": [ - "Other" - ] - }, - { - "text": "Implement its commitment to increase the proportion of ODA to 0.7 per cent of GDP in 2009 and pursue actions in the area of ODA.", - "values": [ - "Development" - ] - }, - { - "text": "Consider adopting new legislation that compels public companies to reserve a quota of their non-executive board seats for women", - "values": [ - "Women's rights" - ] - }, - { - "text": "Adopt necessary measures to safeguard the human rights of IDPs in accordance with applicable international standards and that particular emphasis be given inter alia to increased information sharing as well as consultation efforts to reduce any sense of insecurity of the IDPs.", - "values": [ - "Internally displaced persons" - ] - }, - { - "text": "Take measures with a view to prohibiting and punishing the brutality and the use of excessive or deadly force by the law enforcement officials and to banning torture and other ill-treatment in its detention facilities at home and abroad ", - "values": [ - "Detention", - "Human rights violations by state agents", - "Torture and other CID treatment" - ] - }, - { - "text": "Actively review the level of protection of children within the criminal justice system, through raising the age of criminal responsibility and avoid the trying of cases involving children between the ages of 16 and 18 in adult courts ", - "values": [ - "Justice", - "Rights of the Child" - ] - }, - { - "text": "Enhance measures to address stereotyping against and lack of employment opportunities for persons with disabilities", - "values": [ - "Disabilities", - "Labour" - ] - }, - { - "text": "Ensure women's participation in the post-conflict, reconstruction and peace building process", - "values": [ - "Women's rights" - ] - }, - { - "text": "Include greater access of women to paid employment, among the measures to be taken to achieve social justice, and resist poverty and marginalization ", - "values": [ - "Poverty", - "Women's rights" - ] - }, - { - "text": "Take concrete measures to make primary education effectively compulsory and free ", - "values": [ - "Right to education" - ] - }, - { - "text": "Establish mechanisms to eradicate stigma and discrimination against indigenous groups and ethnic minorities, including awareness-raising among public officials, accountability and redress mechanisms", - "values": [ - "Human rights education and training", - "Indigenous peoples", - "Minorities", - "Racial discrimination" - ] - }, - { - "text": "Further pursue its efforts to combat child labour", - "values": [ - "Labour", - "Rights of the Child" - ] - }, - { - "text": "Ensure that the trial regarding National Socialist Underground network are easily observed and that all allegations about National Socialist Underground network are investigated ", - "values": [ - "Justice", - "Racial discrimination" - ] - }, - { - "text": "Strengthen appropriate measures aimed at promoting and protecting the cultural rights of certain ethnic groups, in particular the rights of children belonging to those groups", - "values": [ - "Minorities", - "Rights of the Child" - ] - }, - { - "text": "Continue its efforts to reduce poverty and improve living conditions, particularly among vulnerable groups ", - "values": [ - "Poverty" - ] - }, - { - "text": "Take further measures to reduce the case backlog before its courts", - "values": [ - "Justice" - ] - }, - { - "text": "Ratify the OP-CAT, the OP-CEDAW and the CPRD", - "values": [ - "Detention", - "Disabilities", - "International instruments", - "Torture and other CID treatment", - "Women's rights" - ] - }, - { - "text": "Eliminate corporal punishment provisions from existing laws and to prohibit the use of corporal punishment in places of detention and in schools ", - "values": [ - "Rights of the Child", - "Torture and other CID treatment" - ] - }, - { - "text": "Continue combating trafficking in persons, and provide protection to its victims", - "values": [ - "Trafficking" - ] - }, - { - "text": "Continue to strengthen its efforts to prevent crimes committed with racial, discriminatory and xenophobic motives", - "values": [ - "Racial discrimination" - ] - }, - { - "text": "Make primary education compulsory, free and accessible to all children", - "values": [ - "Right to education", - "Rights of the Child" - ] - }, - { - "text": "Continue to implement the process of penitentiary reform based on the three pillars established by the Government", - "values": [ - "Detention" - ] - }, - { - "text": "Strengthen efforts in infrastructure development in the country", - "values": [ - "Development" - ] - }, - { - "text": "Revise the practice of excessive use of force to dissolve crowds and protect its inhabitants' rights to freedom of assembly and of association", - "values": [ - "Freedom of association and peaceful assembly" - ] - }, - { - "text": "Further reinforce measures to combat all forms of discrimination and inequality", - "values": [ - "Other" - ] - }, - { - "text": "Follow the recommendations in the final report of the Organization for Security and Co-operation in Europe on the 28 June elections to minimize the politicization of the Media Monitoring Board and to facilitate training for the Board members in quantitative and qualitative media analysis ", - "values": [ - "Freedom of the press" - ] - }, - { - "text": "Effectively implement its Policies and Strategies for the Prevention and Responses to Violence against Children and Youth (2015-2021) to prevent and curb violence against children, including at the provincial level ", - "values": [ - "Rights of the Child" - ] - }, - { - "text": "Increase efforts to combat trafficking in persons, especially in women and children", - "values": [ - "Rights of the Child", - "Trafficking", - "Women's rights" - ] - }, - { - "text": "Better apply the existing laws concerning trafficking in children and human beings.", - "values": [ - "Rights of the Child", - "Trafficking" - ] - }, - { - "text": "Ratify CAT and adjust its national criminal legislation accordingly ", - "values": [ - "International instruments", - "Torture and other CID treatment" - ] - }, - { - "text": "Review the nationality law ", - "values": [ - "Statelessness and the right to nationality" - ] - }, - { - "text": "Intensify the existing efforts to protect religious freedom and freedom of expression", - "values": [ - "Freedom of opinion and expression", - "Freedom of religion and belief" - ] - }, - { - "text": "Improve and facilitate access to education, in particular of girls, as previously recommended", - "values": [ - "Right to education", - "Rights of the Child", - "UPR process", - "Women's rights" - ] - }, - { - "text": "Recommended further action to reduce maternal mortality ", - "values": [ - "Right to health", - "Women's rights" - ] - }, - { - "text": "Continue to evaluate the possibility of future accession to other international human rights conventions that it is not yet party to, such as the ICRMW and the Optional Protocol to the Convention against Torture and Other Cruel, Inhuman or Degrading Treatment or Punishment", - "values": [ - "Detention", - "International instruments", - "Labour", - "Migrants", - "Torture and other CID treatment" - ] - }, - { - "text": "Repeal national provisions establishing the death penalty and establish an official moratorium on executions with a view to its abolition", - "values": [ - "Death penalty" - ] - }, - { - "text": "Become a party to both the Convention on the Rights of Persons with Disabilities and its Optional Protocol ", - "values": [ - "Disabilities", - "International instruments" - ] - }, - { - "text": "Adopt a national plan to eliminate stereotypes about the role of women in society, particularly in the field of gender equality, as previously recommended", - "values": [ - "UPR process", - "Women's rights" - ] - }, - { - "text": "Consider abolition of the death penalty", - "values": [ - "Death penalty" - ] - }, - { - "text": "Increase the policies which permit legislative provisions for nondiscrimination between men and women in employment to be reflected in practice, especially in relation to differences in pay and the prevalence of temporary employment contracts among women ", - "values": [ - "Women's rights" - ] - }, - { - "text": "Take appropriate measures to provide free legal and psychological assistance to victims of domestic and sexual violence", - "values": [ - "Rights of the Child", - "Women's rights" - ] - }, - { - "text": "Speed up the establishment of an information centre in the Ministry of Human Rights, taking into account its important envisaged role in designing future strategies and plans.", - "values": [ - "Other" - ] - }, - { - "text": "Incorporate into the education system a human rights-based strategy which is inclusive of children with disabilities", - "values": [ - "Disabilities", - "Right to education", - "Rights of the Child" - ] - }, - { - "text": "Continue its efforts for the speedy adoption and implementation of the laws on transitional justice and national reconciliation ", - "values": [ - "Justice" - ] - }, - { - "text": "Meet the commitment it has undertaken to cooperate with the International Criminal Court on cases that the Democratic Republic of the Congo government has self-referred to the Court and uphold its treaty obligations by arresting Bosco Ntaganda and transferring him to the International Criminal Court. ", - "values": [ - "International instruments", - "Justice" - ] - }, - { - "text": "Ratify all the instruments that have already been signed, in particular the International Convention on the Elimination of All Forms of Racial Discrimination, the Convention on the Elimination of All Forms of Discrimination against Women, the Convention against Torture and Other Cruel, Inhuman or Degrading Treatment or Punishment and the International Convention for the Protection of All Persons from Enforced Disappearance", - "values": [ - "Enforced disappearances", - "International instruments", - "Racial discrimination", - "Torture and other CID treatment", - "Women's rights" - ] - }, - { - "text": "Continue combating violence against women and children by prohibiting the right to use force and severe corporal punishment of children at home, and effectively enforcing the existing laws in this area, especially the Domestic Violence Prevention and Protection Act", - "values": [ - "Rights of the Child", - "Torture and other CID treatment", - "Women's rights" - ] - }, - { - "text": "Ensure budgetary provisions of $53,000 for medical assessment on people with disability and $80,000 in 2011 and $40,000 in 2012, for the development of the National Disability Policy. Tuvalu however lacks the capacity and is seeking external assistance from relevant regional organization to facilitate the development of the National Disability Policy", - "values": [ - "Disabilities", - "Right to health" - ] - }, - { - "text": "Guarantee freedom of expression, particularly the possibility to express criticism and opinion regarding acts of the government ", - "values": [ - "Freedom of opinion and expression" - ] - }, - { - "text": "Adopt legislative measures that guarantee greater integration of women as well as safeguards for their personal rights and reproductive health care and reform the Offences against the Person Act of 1861 to decriminalize abortion under certain circumstances", - "values": [ - "Right to health", - "Women's rights" - ] - }, - { - "text": "Expedite the process of revising the Criminal Code ensuring that it includes a definition of torture consistent with the Convention against Torture", - "values": [ - "International instruments", - "Torture and other CID treatment" - ] - }, - { - "text": "Implement effective protection measures and undertake an immediate and systematic investigation into abuses committed against human rights defenders, as previously recommended", - "values": [ - "Human rights defenders" - ] - }, - { - "text": "Release immediately all persons solely convicted or detained for offences connected to peaceful assembly and free speech", - "values": [ - "Freedom of association and peaceful assembly", - "Freedom of opinion and expression" - ] - }, - { - "text": "In cooperation with other European nations and international organizations, work to improve resources, living conditions, and safety at migrant processing centres", - "values": [ - "Migrants" - ] - }, - { - "text": "Continue the efforts to improve reproductive health, through the introduction of new and up-to-date technologies", - "values": [ - "Right to health" - ] - }, - { - "text": "Reduce the scope of application of the death penalty, and publish statistics to show that the use of the death penalty is falling in China", - "values": [ - "Death penalty" - ] - }, - { - "text": "Step up efforts to improve the civil registration service so that all children will be registered at birth", - "values": [ - "Rights of the Child", - "Statelessness and the right to nationality" - ] - }, - { - "text": "Amend the Criminal Code to include provisions to protect women against sexual and gender-based violence and to train and sensitize security and police officers as well as the population in general", - "values": [ - "Women's rights" - ] - }, - { - "text": "Give full and equal rights to women", - "values": [ - "Women's rights" - ] - }, - { - "text": "Vanuatu has committed itself to adhere to international human rights obligations, by ratifying four human rights conventions namely: CRC and its optional protocols, CEDAW and its optional protocol, CRPD, ICCPR.", - "values": [ - "CP rights - general", - "Disabilities", - "International instruments", - "Rights of the Child", - "Women's rights" - ] - }, - { - "text": "Ensure compliance of domestic laws with the right to access to information and freedom of expression ", - "values": [ - "Freedom of opinion and expression" - ] - }, - { - "text": "Continue to make every effort to end impunity, especially for armed forces' human rights violations ", - "values": [ - "Human rights violations by state agents", - "Impunity" - ] - }, - { - "text": "Continue to support the work of civil society, especially the work of the human rights and journalists' organizations", - "values": [ - "Civil society", - "Freedom of the press" - ] - }, - { - "text": "Strengthen measures to reduce poverty amongst vulnerable groups", - "values": [ - "Poverty" - ] - }, - { - "text": "Ensure that journalists and other individuals be able to freely exercise the right to freedom of expression and have access to Internet without undue restrictions", - "values": [ - "Freedom of opinion and expression", - "Freedom of the press" - ] - }, - { - "text": "Cooperate fully and effectively with Special Procedures mandate holders ", - "values": [ - "Special procedures" - ] - }, - { - "text": "Recommended putting an end to all practices limiting and-or violating the human rights of ethnic Georgians in the territories controlled by the Russian armed forces - including, but not limited to, access to education in Georgian language, freedom of movement of ethnic Georgians and right to freely choose the place of their residence", - "values": [ - "International humanitarian law" - ] - }, - { - "text": "Combat discriminatory behaviour by members of the law enforcement forces and ensure that any racially-motivated misconduct is effectively investigated and adequately punished", - "values": [ - "Human rights violations by state agents", - "Racial discrimination" - ] - }, - { - "text": "Pursue its efforts to take up the challenges of human rights in accordance with international standards", - "values": [ - "International instruments" - ] - }, - { - "text": "Respect international law and prevailing mechanisms of the United Nations", - "values": [ - "Other" - ] - }, - { - "text": "Continue its efforts to strengthen the judicial system through, inter alia, technical training and development assistance ", - "values": [ - "Justice" - ] - }, - { - "text": "Raise the age of criminal responsibility so that it is in line with the international commitments undertaken by Belize", - "values": [ - "International instruments", - "Rights of the Child" - ] - }, - { - "text": "Ensure that domestic legislation fully respects the human rights or refugees and migrants", - "values": [ - "Asylum-seekers - refugees", - "Migrants" - ] - }, - { - "text": "End all restrictions on the right to practice one's religion of choice without discrimination", - "values": [ - "Freedom of religion and belief" - ] - }, - { - "text": "Allocate adequate resources for community-based services to prevent family separation, including for children with disabilities", - "values": [ - "Disabilities", - "Rights of the Child" - ] - }, - { - "text": "Take measures to protect journalists and other human rights defenders ", - "values": [ - "Freedom of the press", - "Human rights defenders" - ] - }, - { - "text": "Prosecute the exploitation and trafficking of children, in particular of girls from ethnic minorities forced into early marriage", - "values": [ - "Minorities", - "Rights of the Child", - "Trafficking", - "Women's rights" - ] - }, - { - "text": "Ensure comprehensive sexuality education in the school curriculum, including on consent, contraception and gender-based violence", - "values": [ - "Right to health", - "Women's rights" - ] - }, - { - "text": "Continue with the efforts to prevent, punish and eradicate all forms of violence against women", - "values": [ - "Women's rights" - ] - }, - { - "text": "Consider ratifying the Rome Statute of the International Criminal Court ", - "values": [ - "International instruments", - "Justice" - ] - }, - { - "text": "Ratify the Convention against Torture and its Optional Protocol, as well as the International Covenant on Economic, Social and Cultural Rights", - "values": [ - "Detention", - "ESC rights - general", - "International instruments", - "Torture and other CID treatment" - ] - }, - { - "text": "Share its experience and best practices with other developing countries in the area of poverty eradication, in particular between the rural and urban population", - "values": [ - "Poverty" - ] - }, - { - "text": "Strengthen the Equal Treatment Act to address discrimination based on language and advocate for gender equality, particularly in the labour market ", - "values": [ - "Labour", - "Minorities", - "Women's rights" - ] - }, - { - "text": "Increase efforts to prevent labour market discrimination against workers with non-resident backgrounds, women and persons with disabilities by identifying and analysing the root causes of such discrimination and mitigating them through advocacy and training programmes", - "values": [ - "Disabilities", - "Labour", - "Women's rights" - ] - }, - { - "text": "Proceed on the commitment to ratify the following protocols: the International Convention for the Protection of All Persons from Enforced Disappearance, the Optional Protocol to the convention against torture and Other Cruel, Inhuman or Degrading Treatment or Punishment, and the Second Optional Protocol to the International Covenant on Civil and Political Rights", - "values": [ - "Death penalty", - "Detention", - "Enforced disappearances", - "International instruments", - "Torture and other CID treatment" - ] - }, - { - "text": "Continue its efforts to combat all forms of discrimination", - "values": [ - "Other" - ] - }, - { - "text": "Endorse and promote the National Policy for Women, which addresses issues of discrimination against women, and ensure the speedy enactment of the Family Safety Bill 2009 ", - "values": [ - "Women's rights" - ] - }, - { - "text": "Continue and intensify measures for illiteracy reduction and for the access of girls and women to all levels of education and teaching ", - "values": [ - "Right to education", - "Rights of the Child", - "Women's rights" - ] - }, - { - "text": "Improve the life conditions of migrants and refugees in Uganda ", - "values": [ - "Asylum-seekers - refugees", - "Migrants" - ] - }, - { - "text": "Ensure that all allegations of torture are investigated independently and that those responsible are brought to justice", - "values": [ - "Torture and other CID treatment" - ] - }, - { - "text": "Develop alternative measures to deprivation of children's liberty and provide children with rehabilitation and reintegration programmes", - "values": [ - "Rights of the Child" - ] - }, - { - "text": "Pay particular attention to protect childhood, as established in the strategic framework 2008-2015, through intensifying actions to enact a Children Protection Code ", - "values": [ - "Rights of the Child" - ] - }, - { - "text": "Take active measures to review its national legislation with the aim of eliminating existing gender-based discriminatory provisions", - "values": [ - "Women's rights" - ] - }, - { - "text": "Ensure effective investigation of human rights violations against journalists and human rights defenders and prosecution of the individuals responsible ", - "values": [ - "Freedom of the press", - "Human rights defenders" - ] - }, - { - "text": "The Government is committed to meeting the needs of all members of RMG [religious minority groups] and ensuring that their rights are exercised in full.", - "values": [ - "Freedom of religion and belief", - "Minorities" - ] - }, - { - "text": "Call for technical assistance for gender development, women's empowerment, child protection, prevention of trafficking in persons and disaster management ", - "values": [ - "Environment", - "Rights of the Child", - "Technical assistance and cooperation", - "Trafficking", - "Women's rights" - ] - }, - { - "text": "Consider creating an independent prosecution authority in accordance with the United Nations guidelines and consider to fully implementing the right to a fair trial for all ", - "values": [ - "Justice" - ] - }, - { - "text": "Take measures to grant effective and unhindered enjoyment of the freedom of religion.", - "values": [ - "Freedom of religion and belief" - ] - }, - { - "text": "Continue to improve the socio-economic situation of the Roma minority.", - "values": [ - "Minorities" - ] - }, - { - "text": "Open inquiries, as soon as possible, into all allegations of torture and death in detention and prosecute and convict all those who have committed acts of torture in prisons or other places of detention.", - "values": [ - "Detention", - "Torture and other CID treatment" - ] - }, - { - "text": "Continue strengthening its economic and social development ", - "values": [ - "Development" - ] - }, - { - "text": "Take all measures to ensure the prohibition of female genital mutilation and its effective criminalization ", - "values": [ - "Rights of the Child", - "Torture and other CID treatment", - "Women's rights" - ] - }, - { - "text": "Continue strengthening the initiatives taken for the observance of the rights and responsibilities of children and adolescents in conflict with the law", - "values": [ - "Rights of the Child" - ] - }, - { - "text": "Ratify the Optional Protocol to ICESCR, OP-CEDAW", - "values": [ - "ESC rights - general", - "International instruments", - "Women's rights" - ] - }, - { - "text": "Implement the Convention on the Rights of Persons with Disabilities by, among other things, amending the job support schemes in order to enable all persons with disabilities to access employment in the same way as those without disabilities", - "values": [ - "Disabilities", - "International instruments", - "Labour" - ] - }, - { - "text": "Continue strengthening cooperation between the Government and civil society organizations in promoting and protecting human rights in areas such as education, public health and gender equality among others ", - "values": [ - "Civil society", - "Right to education", - "Right to health", - "Women's rights" - ] - }, - { - "text": "Abolish the caste system that continues to promote de facto slavery through domestic servitude and bondage or forced labour", - "values": [ - "Labour" - ] - }, - { - "text": "Consider taking appropriate measures to ensure the institution of the Ombudsman is in conformity with the Paris Principles or eventually envisage the establishment of a national human rights institution in conformity with those principles.", - "values": [ - "National Human Rights Institution" - ] - }, - { - "text": "Adopt effective measures to guarantee the right to life and the physical integrity of Honduran journalists, as well as the exercise of freedom of expression, adopt all possible measures to carry out investigations in order to end impunity for the killing of journalists", - "values": [ - "Freedom of opinion and expression", - "Freedom of the press", - "Impunity" - ] - }, - { - "text": "Ensure that all forces, including any affiliated militia forces, immediately cease all violations and abuses of international humanitarian and human rights law, in particular against women and girls and including violations perpetrated by State security institutions, and end impunity by bringing the perpetrators to justice", - "values": [ - "Human rights violations by state agents", - "Impunity", - "Rights of the Child", - "Women's rights" - ] - }, - { - "text": "Improve the policies for the protection of the rights of children, and guarantee due access to justice for child victims of violence ", - "values": [ - "Rights of the Child" - ] - }, - { - "text": "Take concrete measures to ensure a safer environment for both women and girls ", - "values": [ - "Rights of the Child", - "Women's rights" - ] - }, - { - "text": "Ratify the International Covenant on Civil and Political Rights", - "values": [ - "Civil society", - "International instruments" - ] - }, - { - "text": "Continue its efforts to reach the Millennium Development Goals by 2015 while expanding higher education ", - "values": [ - "Development", - "Right to education" - ] - }, - { - "text": "Improve the enforcement of the legal provisions prohibiting harmful and discriminatory practices against women and girls, in particular child marriages, dowry-related murders and honour killings, and ensure that all women, without discrimination, have access to public services", - "values": [ - "Rights of the Child", - "Torture and other CID treatment", - "Women's rights" - ] - }, - { - "text": "Continue to promote women's rights, as well as their participation and empowerment as part of their decision-making processes", - "values": [ - "Women's rights" - ] - }, - { - "text": "Continue its effort in implementing the programme of disarmament, demobilization and reintegration (DDR) of child soldiers ", - "values": [ - "International humanitarian law", - "Rights of the Child" - ] - }, - { - "text": "Strengthen measures to combat trafficking in children, facilitate access to justice and enhance victim protection and assistance in line with the recommendation of the Committee on the Rights of the Child ", - "values": [ - "Rights of the Child", - "Trafficking", - "Treaty bodies" - ] - }, - { - "text": "Implement the recently adopted United Nations rules of treatment of women prisoners and non-custodial measures from women offenders, otherwise known as Bangkok rules, to ensure that special needs of women in prisons or in custody are appropriately addressed ", - "values": [ - "Detention", - "Technical assistance and cooperation", - "Women's rights" - ] - }, - { - "text": "Abolish the period during which a widow or divorced woman must wait before she can remarry", - "values": [ - "Women's rights" - ] - }, - { - "text": "Review provisions set out in its Criminal Code criminalizing libel in order to ensure that they comply with the International Covenant on Civil and Political Rights and the standards of the Organization for Security and Cooperation in Europe, and to put an end to attempts to block Internet sites or filter their content", - "values": [ - "Freedom of opinion and expression", - "International instruments" - ] - }, - { - "text": "Incorporate into municipal law various instruments such as the Optional Protocol on the Rights of Persons with Disabilities", - "values": [ - "Disabilities", - "International instruments" - ] - }, - { - "text": "Modify all discriminatory provisions on the social and legal status of children born out of wedlock", - "values": [ - "Rights of the Child" - ] - }, - { - "text": "Strengthen the protection of journalists, media personnel, and human rights defenders against the attacks and prosecute those responsible for such kind of attempts ", - "values": [ - "Freedom of the press", - "Human rights defenders" - ] - }, - { - "text": "Fully align domestic legislation with the Rome Statute of the International Criminal Court through explicit provisions on the duty to cooperate promptly and fully with the Court", - "values": [ - "International instruments", - "Justice" - ] - }, - { - "text": "Cooperate with the competent authorities of the United Nations and in particular accept the visit of the Independent Commission of Inquiry composed of international experts ", - "values": [ - "Technical assistance and cooperation" - ] - }, - { - "text": "Consider widely disseminate information on the provision of CEDAW to the publics through education system, awareness-raising campaigns and gender sensitivity training", - "values": [ - "Human rights education and training", - "International instruments", - "Women's rights" - ] - }, - { - "text": "Abolish the practice of early and forced marriage for girls", - "values": [ - "Rights of the Child", - "Women's rights" - ] - }, - { - "text": "Further strengthen protection to ensure the non-dismissal of workers diagnosed with HIV/AIDS ", - "values": [ - "HIV - Aids" - ] - }, - { - "text": "Continue to take measures to strengthen mechanisms for the protection of the rights of women and children", - "values": [ - "Rights of the Child", - "Women's rights" - ] - }, - { - "text": "Establish an institution for the promotion and protection of human rights, in conformity with the Paris Principles", - "values": [ - "National Human Rights Institution" - ] - }, - { - "text": "Ratify the remaining core international human rights treaties, in particular the International Convention on the Elimination of All Forms of Racial Discrimination and its Optional Protocol, the International Covenant on Civil and Political Rights and its Optional Protocols, the Convention against Torture and its Optional Protocol and the Convention on the Rights of Persons with Disabilities", - "values": [ - "CP rights - general", - "Death penalty", - "Disabilities", - "International instruments", - "Racial discrimination", - "Torture and other CID treatment" - ] - }, - { - "text": "Rescind regional laws and regulations which favour and tolerate discrimination based on sexual orientation, and refrain from adopting similar laws at the federal level, as well as take measures to prevent the arbitrary use of existing regulations against LGBT rights, including their rights to freedom of expression and peaceful assembly", - "values": [ - "Freedom of association and peaceful assembly", - "Freedom of opinion and expression", - "Sexual Orientation and Gender Identity" - ] - }, - { - "text": "Continue to strengthen measures to achieve progress in the areas identified in the national development plan, through appropriate means", - "values": [ - "Development" - ] - }, - { - "text": "Grant immediate access without obstacles to international humanitarian agencies, including WFP, as well as the Special Rapporteur on the right to food, in order to allow the resumption of necessary operations for food supply and to ensure that aid is distributed on the basis of the genuine needs of the people ", - "values": [ - "Right to food", - "Special procedures" - ] - }, - { - "text": "Renew its efforts to ensure follow-up to and the systematic implementation of the recommendations of the treaty bodies and of the Austrian Constitutional Court ", - "values": [ - "Treaty bodies" - ] - }, - { - "text": "Adopt laws and mechanisms essential to protecting human rights and freedoms, particularly in the following areas: protection of victims and witnesses, protection of human rights defenders, provisions on ensuring citizens' right to participation in decision-making, gender-based violence, independence of publishers, accountability of Parliament members, and civil society's right to participation in public interest litigation ", - "values": [ - "Civil society", - "Freedom of association and peaceful assembly", - "Freedom of the press", - "Human rights defenders", - "Justice", - "Women's rights" - ] - }, - { - "text": "Adhere to the National Action Plan for Children and programme for the elimination of child labour", - "values": [ - "Labour", - "Rights of the Child" - ] - }, - { - "text": "[Eliminate all barriers to the effective equality of women] Including the modification of discriminatory provisions of the family code and continue to combat gender-based violence", - "values": [ - "Women's rights" - ] - }, - { - "text": "Better prevent episodes of abuses and violence committed by security forces on detainees and duly punish the perpetrators", - "values": [ - "Detention", - "Human rights violations by state agents" - ] - }, - { - "text": "Give continuity to the democratization process undertaken by the Government", - "values": [ - "General" - ] - }, - { - "text": "Ensure that human rights defenders in rural areas are equally and effectively protected also in view of the existing challenges of the implementation of the Victims and Land Restitution Law ", - "values": [ - "Human rights defenders", - "Right to land" - ] - }, - { - "text": "Continue organizing awareness educational courses on human rights, including training on equality between women and men, and on women's rights", - "values": [ - "Human rights education and training", - "Women's rights" - ] - }, - { - "text": "Continue to engage bilateral, regional and multilateral partners to better protect the rights and welfare of migrants and members of their families", - "values": [ - "Migrants" - ] - }, - { - "text": "Eliminate any legislation that has discriminatory effects against women, implement the relevant recommendations of the Committee on the Elimination of Discrimination against Women, and introduce a gender-specific dimension to the anti-discrimination provision of the Constitution.", - "values": [ - "Treaty bodies", - "Women's rights" - ] - }, - { - "text": "Continue moving forward with its fitting social policies in the area of economic, social and cultural rights so as to provide the best possible well-being for its population", - "values": [ - "ESC rights - general" - ] - }, - { - "text": "Ensure that the voices of and challenges faced by minorities are acknowledged by the authorities and included in the decision-making processes that affect them", - "values": [ - "Minorities" - ] - }, - { - "text": "Ratify swiftly the Optional Protocols to the Convention against Torture and Other Cruel, Inhuman or Degrading Treatment or Punishment as well as to the Convention on the Rights of Persons with Disabilities", - "values": [ - "Disabilities", - "International instruments", - "Torture and other CID treatment", - "Treaty bodies" - ] - }, - { - "text": "Further implement international human rights norms into the national legislation", - "values": [ - "International instruments" - ] - }, - { - "text": "Follow up on its commitment to modernize the justice system and the prison system to address reports of ill-treatment of prisoners ", - "values": [ - "Detention", - "Justice" - ] - }, - { - "text": "Ghana's Criminal Code be amended to decriminalise sexual activity between consenting adults. ", - "values": [ - "Sexual Orientation and Gender Identity" - ] - }, - { - "text": "Enforce its established policies and uphold its legislation to prevent instances of marginalization and discrimination against women ", - "values": [ - "Women's rights" - ] - }, - { - "text": "Ratify the International Covenant for the Protection of All Persons from Enforced Disappearance", - "values": [ - "Enforced disappearances", - "International instruments" - ] - }, - { - "text": "Pay attention to maternal and child health, and reduce child mortality ", - "values": [ - "Right to health", - "Rights of the Child", - "Women's rights" - ] - }, - { - "text": "Continue to strengthen the protection of persons with disabilities through increasing employment opportunities to fundamentally improve their living conditions", - "values": [ - "Development", - "Disabilities" - ] - }, - { - "text": "Ensure the investigation of all incidents of hate crimes and hate speech and prosecute the perpetrators", - "values": [ - "Racial discrimination" - ] - }, - { - "text": "Strengthen the protection of all people from racial discrimination by improving the existing draft pieces of legislation and passing them into law", - "values": [ - "Racial discrimination" - ] - }, - { - "text": "Review and alter its current legislation that criminalizes the termination of pregnancies in all circumstances, including in cases of rape, incest and situations where the life of the mother is at risk ", - "values": [ - "Women's rights" - ] - }, - { - "text": "Elaborate legislation for the protections of human rights defenders in consultation with civil society and the relevant international agencies, and adopt such legislation", - "values": [ - "Civil society", - "Human rights defenders" - ] - }, - { - "text": "Expedite action to establish the Gender Equality Council", - "values": [ - "Women's rights" - ] - }, - { - "text": "Implement further measures to ensure the effective elimination of domestic violence ", - "values": [ - "Rights of the Child", - "Women's rights" - ] - }, - { - "text": "Introduce transparent procedures in appointing members of the Afghanistan Independent Human Rights Commission and provide sufficient financial assistance to it ", - "values": [ - "National Human Rights Institution" - ] - }, - { - "text": "Seek to legislate minimum standards for the elimination of people trafficking, including the trafficking of women and girls", - "values": [ - "Rights of the Child", - "Trafficking", - "Women's rights" - ] - }, - { - "text": "Take measures, including through legislation, to ensure equality of women, particularly in decision-making processes and access to basic services and infrastructure ", - "values": [ - "Women's rights" - ] - }, - { - "text": "Amend its laws, including those on marriage, custody, divorce, property rights, and indecency, to ensure compliance with international human rights law ", - "values": [ - "International instruments", - "Women's rights" - ] - }, - { - "text": "Take appropriate measures to establish equal choice of jurisdiction between Sharia courts and family courts", - "values": [ - "Justice" - ] - }, - { - "text": "Take steps to prioritise the protection of civilians through building the capacity of law enforcement and targeted training to improve public order and security in affected areas", - "values": [ - "Public security" - ] - }, - { - "text": "Enact domestic legislation to ensure equality in rights and equal opportunities between men and women ", - "values": [ - "Women's rights" - ] - }, - { - "text": "Ensure that the refugee status determination process is conducted in a fair, effective and transparent manner in line with international law", - "values": [ - "Asylum-seekers - refugees" - ] - }, - { - "text": "Further promote human rights education and training at all educational levels ", - "values": [ - "Human rights education and training" - ] - }, - { - "text": "Establish a national institution in accordance with the Paris Principles", - "values": [ - "National Human Rights Institution" - ] - }, - { - "text": "Launch a national debate which may lead to the decriminalization of homosexuality ", - "values": [ - "Sexual Orientation and Gender Identity" - ] - }, - { - "text": "Continue its efforts regarding the issue of erased persons in order to help facilitate the most appropriate remedies for that population in a dignified and efficient manner", - "values": [ - "Other", - "Statelessness and the right to nationality" - ] - }, - { - "text": "Continue measures to strengthen the capacity of national human rights protection mechanisms", - "values": [ - "General" - ] - }, - { - "text": "Identify the challenges in implementing its national migration management policy", - "values": [ - "Migrants" - ] - }, - { - "text": "Establish mechanisms and procedures to facilitate access to justice for persons belonging to discriminated populations who are victims of violence that ensure the investigation and punishment of such acts, the conviction of those who perpetuate them and just reparations for the victims ", - "values": [ - "Justice" - ] - }, - { - "text": "Adopt special measures to promote equal opportunities, address structural discrimination and enhance strategies against inequality and discrimination faced by migrants, foreign-born citizens, indigenous peoples as well as minority groups, including Afro-Swedes and Muslims", - "values": [ - "Freedom of religion and belief", - "Indigenous peoples", - "Migrants", - "Minorities", - "Racial discrimination" - ] - }, - { - "text": "Take measures to prevent any interference in the exercise by defence lawyers of their functions, in accordance with the International Covenant on Civil and Political Rights", - "values": [ - "International instruments", - "Justice" - ] - }, - { - "text": "Enact laws and legislation aiming at combating human trafficking", - "values": [ - "Trafficking" - ] - }, - { - "text": "Record and publish official statistics about incidents or reports on racially motivated crimes, and improve the collection of hate-crime data by law-enforcement officials and authorities ", - "values": [ - "Human rights education and training", - "Racial discrimination" - ] - }, - { - "text": "Strengthen its efforts with regard to the fighting against enforced disappearances", - "values": [ - "Enforced disappearances" - ] - }, - { - "text": "Ratify the core international human rights treaties to which it is not yet a party", - "values": [ - "International instruments" - ] - }, - { - "text": "Formally criminalize in domestic law the recruitment and use of child soldiers by non-governmental armed groups, if it has not already done so, and enforce such laws if they already are on the books and devote resources to and partner with international organizations to prioritize the reintegration of child soldiers", - "values": [ - "International humanitarian law", - "Rights of the Child" - ] - }, - { - "text": "Adopt the necessary measures to facilitate the access to and distribution of international humanitarian assistance in the country so as to support the efforts made by the Government to meet the needs of the population ", - "values": [ - "Other" - ] - }, - { - "text": "Take appropriate measures to translate its international obligations into its national laws and regulations to ensure their effective implementation", - "values": [ - "General" - ] - }, - { - "text": "Continue to strengthen the construction of drinking water and basic sanitation facilities in order to provide better basic services for its people", - "values": [ - "Right to housing", - "Right to water and sanitation" - ] - }, - { - "text": "Take further action to further reduce the high rate of maternal and infant mortality and provide full access to health care and health education by women, and address problems relating to poverty, hard work and illiteracy ", - "values": [ - "Labour", - "Poverty", - "Right to education", - "Right to health", - "Rights of the Child", - "Women's rights" - ] - }, - { - "text": "Committed to continuing its efforts to defend the principle of equality between men and women, women's access to education, the place of women in the world of work and the rights of women in the family. ", - "values": [ - "Women's rights" - ] - }, - { - "text": "Continue its inclusive and consultative process when implementing accepted recommendations for the second cycle", - "values": [ - "UPR process" - ] - }, - { - "text": "Clarify the legal status of refugees from neighbouring States, with a focus on the prevention of statelessness.", - "values": [ - "Asylum-seekers - refugees", - "Statelessness and the right to nationality" - ] - }, - { - "text": "Establish a more formal system to provide protection for refugees and asylum-seekers ", - "values": [ - "Asylum-seekers - refugees" - ] - }, - { - "text": "Continue working to eliminate all forms of stigmatization or discrimination based on sexual orientation or gender identity", - "values": [ - "Sexual Orientation and Gender Identity" - ] - }, - { - "text": "Strengthen measures to prevent hate speech and harassment against minority groups and persons with disabilities, in line with the National Action Plan for the Prevention of Violent Radicalization and Extremism", - "values": [ - "Disabilities", - "Minorities", - "Public security", - "Racial discrimination" - ] - }, - { - "text": "Ensure that transnational corporations headquartered in the Netherlands do not violate human rights in their operations abroad", - "values": [ - "Business and human rights" - ] - }, - { - "text": "Ratify the Optional Protocol to the Convention against Torture and Other Cruel, Inhuman or Degrading Treatment or Punishment and establish without delay a national preventive mechanism in accordance with the Protocol", - "values": [ - "Detention", - "International instruments", - "Torture and other CID treatment" - ] - }, - { - "text": "Complete the ratification process of CRPD", - "values": [ - "Disabilities", - "International instruments" - ] - }, - { - "text": "Take the necessary measures to guarantee the human rights of human rights defenders and to promote and protect the space of the civil society", - "values": [ - "Civil society", - "Human rights defenders" - ] - }, - { - "text": "Ratify the Optional Protocol to the Convention against Torture. ", - "values": [ - "Detention", - "International instruments", - "Torture and other CID treatment" - ] - }, - { - "text": "Continue efforts for the advancement of women and their participation in public life, and fight violence against women", - "values": [ - "Women's rights" - ] - }, - { - "text": "Give special regard to women and children and enhance their enjoyment of human rights and fundamental freedoms ", - "values": [ - "Rights of the Child", - "Women's rights" - ] - }, - { - "text": "Continue efforts to achieve universal primary education in line with the vision of the National Plan of "Education for All" ", - "values": [ - "Right to education" - ] - }, - { - "text": "Adopt rules and programmes to ensure freedom of expression and opinion", - "values": [ - "Freedom of opinion and expression" - ] - }, - { - "text": "Enhance the development of the social security system, raise the level of social security", - "values": [ - "ESC rights - general" - ] - }, - { - "text": "Involve civil society in the follow up to the UPR review", - "values": [ - "Civil society", - "UPR process" - ] - }, - { - "text": "Fully involve non-governmental organizations at the national level in the follow-up of this review.", - "values": [ - "Civil society", - "UPR process" - ] - }, - { - "text": "Step up efforts to ensure that economic, social and cultural rights of migrant workers are fully respected.", - "values": [ - "Labour", - "Migrants" - ] - }, - { - "text": "Extend an open and standing invitation to all special procedures mechanisms ", - "values": [ - "Special procedures" - ] - }, - { - "text": "Introduce a minimum marriage age of 18 years for both men and women", - "values": [ - "Rights of the Child", - "Women's rights" - ] - }, - { - "text": "Sign the International Convention for the Protection of All Persons from Enforced Disappearance", - "values": [ - "Enforced disappearances", - "International instruments" - ] - }, - { - "text": "Continue its effort to ensure the access of all citizens to safe drinking water and sanitation ", - "values": [ - "Right to water and sanitation" - ] - }, - { - "text": "Publish the figures regarding death sentences and executions", - "values": [ - "Death penalty" - ] - }, - { - "text": "Ratify the Optional Protocols to the International Covenant on Economic, Social and Cultural Rights and to the Convention against Torture, as well as the Second Optional Protocol to the International Covenant on Civil and Political Rights", - "values": [ - "Death penalty", - "ESC rights - general", - "International instruments", - "Women's rights" - ] - }, - { - "text": "Continue with current activities and efforts to ensure that the establishment of democracy and a democratic culture of governance in the country are firmly entrenched and made sustainable through completion of the institution and capacity-building process and the process of enacting various laws and regulations as may be required by the Constitution ", - "values": [ - "General" - ] - }, - { - "text": "Strengthen and continue the national measures to combat racism, xenophobia and hate crimes", - "values": [ - "Racial discrimination" - ] - }, - { - "text": "Strengthen its efforts to prevent all forms of violations of the rights of women and children, including sexual exploitation, child labour and human trafficking", - "values": [ - "Labour", - "Rights of the Child", - "Trafficking", - "Women's rights" - ] - }, - { - "text": "Intensify efforts to better organize existing infrastructure and facilities relating to education so as to ensure that all children have equal access to education in both urban and rural areas", - "values": [ - "Right to education", - "Rights of the Child" - ] - }, - { - "text": "Declare a moratorium on the capital punishment, until that, promptly reduce the number of offences subject to death penalty and publish statistics about the use of death penalty in Viet Nam ", - "values": [ - "Death penalty" - ] - }, - { - "text": "Take concrete measures to further improve hygiene and sanitation in all parts of the country", - "values": [ - "Right to health", - "Right to water and sanitation" - ] - }, - { - "text": "Comply with its legal obligations under international law alongside its obligations deriving from international human rights treaties to which Israel is a party", - "values": [ - "International instruments" - ] - }, - { - "text": "Include in the draft legislation on the prohibition of discrimination comprehensive anti-discrimination measures, including on sexual orientation and gender identity.", - "values": [ - "Sexual Orientation and Gender Identity" - ] - }, - { - "text": "Complete its accession and speedily ratify the International Covenant on Civil and Political Rights and the International Covenant on Economic, Social and Cultural Rights.", - "values": [ - "CP rights - general", - "ESC rights - general", - "International instruments" - ] - }, - { - "text": "Bring an end to the detention of migrant children as well as adults in a vulnerable situation, such as pregnant women and persons with disabilities", - "values": [ - "Asylum-seekers - refugees", - "Detention", - "Disabilities", - "Migrants", - "Rights of the Child" - ] - }, - { - "text": "Pursue measures to eliminate poverty, through implementation of comprehensive public policies with a human rights-based approach ", - "values": [ - "Poverty" - ] - }, - { - "text": "Intensify efforts to ensure that all children enjoy the right to education and protection from discrimination and violence", - "values": [ - "Right to education", - "Rights of the Child" - ] - }, - { - "text": "Continue strengthening institutions to protect children and adolescent girls and boys, with a view to eradicating child labour, sexual exploitation and the practice of child marriage", - "values": [ - "Labour", - "Rights of the Child", - "Women's rights" - ] - }, - { - "text": "Take further steps on effectively implementing the Law on Elimination of Violence against Women ", - "values": [ - "Women's rights" - ] - }, - { - "text": "Impose a moratorium on capital punishment and commute existing death sentences to imprisonment terms, with a view to abolishing capital punishment entirely ", - "values": [ - "Death penalty" - ] - }, - { - "text": "Ensure that victims of discrimination and violence based on sexual orientation and gender identity have access to rehabilitation and remedy and that all perpetrators are punished", - "values": [ - "Sexual Orientation and Gender Identity" - ] - }, - { - "text": "Respect - in law and in practice - the right of individuals to assemble peacefully", - "values": [ - "Freedom of association and peaceful assembly" - ] - }, - { - "text": "Continue efforts to achieve further economic empowerment of women", - "values": [ - "Women's rights" - ] - }, - { - "text": "Continue efforts to tackle discrimination against Aboriginal women in all sectors of society, including employment, housing, education and health care", - "values": [ - "Indigenous peoples", - "Women's rights" - ] - }, - { - "text": "Ensure that all acts violating international human rights and humanitarian law are subject to prompt, independent and impartial investigation, and that suspected perpetrators, including those suspected of ordering these acts, regardless of rank, are brought to justice in proceedings which meet international standards of fairness, and without the imposition of the death penalty", - "values": [ - "Death penalty", - "Human rights violations by state agents", - "International humanitarian law", - "International instruments", - "Justice" - ] - }, - { - "text": "Intensify its efforts to eliminate violence against women, in line with recommendations by the Human Rights Committee, the Committee on the Elimination of Discrimination against Women, CRC and the Special Rapporteur on violence against women ", - "values": [ - "Special procedures", - "Treaty bodies", - "Women's rights" - ] - }, - { - "text": "Share its experiences, expertise and initiatives with interested countries in the field of public health and health tourism", - "values": [ - "Right to health" - ] - }, - { - "text": "Take appropriate measures to fight illiteracy, ensure equal opportunities for women and men in the labour market, and provide for participation in political and public life and equal access to justice", - "values": [ - "Right to education", - "Women's rights" - ] - }, - { - "text": "Strengthen the legislative provisions concerning on equality", - "values": [ - "Other" - ] - }, - { - "text": "Take the appropriate measures so that international standards and the principle of the best interests of the child are observed in cases of repatriation of unaccompanied children", - "values": [ - "Migrants", - "Rights of the Child" - ] - }, - { - "text": "Continue strengthening the social protection programmes developed in conformity with the Convention on the Rights of Persons with Disabilities ", - "values": [ - "Disabilities", - "International instruments" - ] - }, - { - "text": "Strengthen efforts to ensure gender equality in the workplace and implement measures to enhance representation of women at senior-level and managerial positions in government and other sectors", - "values": [ - "Women's rights" - ] - }, - { - "text": "Harmonize its legislation with the CRC (Convention on the Rights of the Child) ", - "values": [ - "International instruments", - "Rights of the Child" - ] - }, - { - "text": "Encourage the ratification of the conventions that are still pending, particularly the ICRMW", - "values": [ - "International instruments", - "Labour", - "Migrants" - ] - }, - { - "text": "Continue implementing current socioeconomic development projects and programmes for the promotion and protection of all human rights ", - "values": [ - "Development" - ] - }, - { - "text": "Publicize and implement the national human rights action plan", - "values": [ - "General" - ] - }, - { - "text": "Extend a standing invitation to the special procedure mandate holders of the Human Rights Council", - "values": [ - "Special procedures" - ] - }, - { - "text": "Examine possibilities to increase the use of non-custodial measures ", - "values": [ - "Detention" - ] - }, - { - "text": "Embark on an efficient strategy and remedies to end the lack of decent housing or resettlements for internally displaced persons from Marange region ", - "values": [ - "Right to housing" - ] - }, - { - "text": "Develop a clear timeline and benchmarks for the full implementation of Human Rights Council resolution 30/1", - "values": [ - "Justice" - ] - }, - { - "text": "Further strengthen measures to ensure rights of migrants", - "values": [ - "Migrants" - ] - }, - { - "text": "Continue international cooperation and dialogue with the aim to improve the socioeconomic circumstances of its people", - "values": [ - "ESC rights - general" - ] - }, - { - "text": "Consider removal of its reservations to the Convention on the Rights of the Child and the Optional Protocol on the involvement of children in armed conflict.", - "values": [ - "International humanitarian law", - "International instruments", - "Rights of the Child" - ] - }, - { - "text": "Continue to seek the necessary assistance from civil society to reach the goals of the Vision 2016", - "values": [ - "Civil society" - ] - }, - { - "text": "Pursue its effort to combat any kind of discrimination against women. to ensure redress for victims of domestic violence, as well as the prosecution of perpetrators as recommended by Committee on the Elimination of Discrimination against Women. ", - "values": [ - "Treaty bodies", - "Women's rights" - ] - }, - { - "text": "Accelerate the implementation of the National Action Plan for Children for 2006-2016", - "values": [ - "Rights of the Child" - ] - }, - { - "text": "Strengthen judicial independence by ending government interference with the judicial process, protecting members of the judiciary from attacks and restoring a fair, independent and transparent mechanism", - "values": [ - "Justice" - ] - }, - { - "text": "Adopt a draft law on the marriage of minors", - "values": [ - "Rights of the Child", - "Women's rights" - ] - }, - { - "text": "Step up its efforts, with the continued cooperation and assistance by the UNHCR and relevant stakeholders, in addressing the protracted refugee situation", - "values": [ - "Asylum-seekers - refugees", - "Technical assistance and cooperation" - ] - }, - { - "text": "Address proactively issues of racial and all forms of discrimination in Georgia", - "values": [ - "Racial discrimination" - ] - }, - { - "text": "Proceed with the ratification of the Second Optional Protocol to the International Covenant on Civil and Political Rights, aiming at the abolition of the death penalty, and the International Convention on the Elimination of All Forms of Racial Discrimination", - "values": [ - "Death penalty", - "International instruments", - "Racial discrimination" - ] - }, - { - "text": "Continue its action-oriented policy on the reduction of infant mortality, maternal care, combating HIV-AIDs and environmental protection ", - "values": [ - "Environment", - "HIV - Aids", - "Right to health", - "Rights of the Child", - "Women's rights" - ] - }, - { - "text": "Ratify the Rome Statute of ICC and OP-CAT ", - "values": [ - "Detention", - "International instruments", - "Justice", - "Torture and other CID treatment" - ] - }, - { - "text": "Be more proactive in identifying and putting a stop to religious intolerance.", - "values": [ - "Freedom of religion and belief" - ] - }, - { - "text": "Further strengthen the programmes aimed at preventing crime and ensuring the security of citizens", - "values": [ - "Public security" - ] - }, - { - "text": "Adopt legislative, judicial and administrative measures to ensure the right to an effective remedy for anyone who claims to have been subjected to torture or other ill-treatment and to provide the necessary administrative and judicial framework to prevent impunity for officers charged with such crimes", - "values": [ - "Impunity", - "Torture and other CID treatment" - ] - }, - { - "text": "Implement provisions in the National Human Rights Action Plan for the protection of vulnerable individuals, including children, persons with disabilities, persons with albinism, LGBT persons, and persons diagnosed with HIV/AIDS", - "values": [ - "Disabilities", - "HIV - Aids", - "Minorities", - "Rights of the Child", - "Sexual Orientation and Gender Identity" - ] - }, - { - "text": "Fully implement the Family Protection Act", - "values": [ - "Women's rights" - ] - }, - { - "text": "Provide more resources for reforming the welfare system in order to make it better able to tackle poverty and worklessness, and reduce negative impact on social vulnerable groups ", - "values": [ - "Poverty" - ] - }, - { - "text": "Increase access to technical services for persons with disabilities, with appropriate support from regional institutions", - "values": [ - "Disabilities", - "Technical assistance and cooperation" - ] - }, - { - "text": "Uphold commitments to prevent impunity for human rights violations", - "values": [ - "Impunity" - ] - }, - { - "text": "Ensure that the necessary protection and assistance is provided to unaccompanied children seeking asylum", - "values": [ - "Asylum-seekers - refugees", - "Rights of the Child" - ] - }, - { - "text": "Initiate a national discourse about the death penalty and establish an official moratorium on executions with a view to abolishing the death penalty as called for by the General Assembly resolution 69/186", - "values": [ - "Death penalty" - ] - }, - { - "text": "Prioritize the promotion of the rights of the child by ensuring that national legislation is in line with its obligations under the relevant international human rights instruments, by providing more resources to create and fully implement programmes that promote the security and safety of children, such as measures to eradicate corporal punishment and domestic violence, and by improving access to and the quality of education and health services", - "values": [ - "Right to education", - "Right to health", - "Rights of the Child", - "Torture and other CID treatment" - ] - }, - { - "text": "Take into consideration humanitarian problems related to the crisis and find urgent and adequate responses to these problems", - "values": [ - "International humanitarian law" - ] - }, - { - "text": "Establish specialized shelters for children victims of human trafficking ", - "values": [ - "Rights of the Child", - "Trafficking" - ] - }, - { - "text": "Reduce at minimum the administrative detention of migrants and asylum seekers, observing the legal safeguards for persons in vulnerable situations and respecting the principles of international law, also considering the provision of free legal assistance for detained migrant children", - "values": [ - "Asylum-seekers - refugees", - "Detention", - "Migrants", - "Rights of the Child" - ] - }, - { - "text": "Look to develop and support programmes directed towards the training and education of marginalized youth in Saint Lucia ", - "values": [ - "Right to education", - "Rights of the Child" - ] - }, - { - "text": "The MSAR [Macao Special Administrative Region] Government pledges to continue to promote human rights, with due regard to the young generations, in order to assure a multicultural and ethnic society based on harmony, anti-bias and tolerance education.", - "values": [ - "General" - ] - }, - { - "text": "Ensure the protection of refugees, migrants and members of their families in full compliance with international standards ", - "values": [ - "Asylum-seekers - refugees", - "Migrants" - ] - }, - { - "text": "Accelerate procedures at the Ministry of Labour to complete implementing regulations to facilitate the employment of Palestinians and open access to employment in all liberal professions", - "values": [ - "Labour" - ] - }, - { - "text": "Consolidate measures to ensure gender parity and combat violence against women", - "values": [ - "Women's rights" - ] - }, - { - "text": "Issue a standing invitation to all mandate holders of the Council ", - "values": [ - "Special procedures" - ] - }, - { - "text": "Measures will be introduced to streamline the implementation of the recommendations of the Human Rights Committee. The mandate of the Inter-Ministerial Committee for Matters Concerning the European Court of Human Rights will be extended to integrate therewith decisions of the Human Rights Committee", - "values": [ - "CP rights - general", - "Treaty bodies" - ] - }, - { - "text": "Cooperate with OHCHR in its endeavours to harmonize the domestic legislation with international human rights standards ", - "values": [ - "International instruments", - "Technical assistance and cooperation" - ] - }, - { - "text": "Ensure a policy of appointments in the judiciary independent from political interference, and a scrupulous respect for deadlines for their renewal ", - "values": [ - "Justice" - ] - }, - { - "text": "Consider enhancing national efforts in the area of trafficking in person through adopting a definition for the sale of children and child pornography in the criminal code", - "values": [ - "Rights of the Child", - "Trafficking" - ] - }, - { - "text": "Introduce legislation that eliminates discrimination in ownership, co-sharing and inheritance of land, protects victims of sexual violence, criminalizes marital rape and gives women equal rights in marriage and pre-marriage.", - "values": [ - "Women's rights" - ] - }, - { - "text": "Establish mechanisms for the selection of judges which rule out any risk of politicization or conflict of interest, and ensure that the principle of separation of administrative and judicial functions of the Supreme Court guarantees the full independence and impartiality of the judiciary in Guatemala", - "values": [ - "Justice" - ] - }, - { - "text": "Devote more resources to eliminating disparities in the educational system by ensuring access to education without discrimination and eliminating hidden education fees", - "values": [ - "Right to education" - ] - }, - { - "text": "Continue its efforts in empowering the National Human Rights Commission, in particular by holding consultations with all stakeholders with a view to making necessary adjustments to the existing law so as to ensure the Commission is in line with the Paris Principles in respect of its mandate, composition, organization, functioning, independence and means ", - "values": [ - "National Human Rights Institution" - ] - }, - { - "text": "Step up efforts to enhance the participation of women in all spheres of socio-economic life, in keeping with the progress made in women's education", - "values": [ - "Women's rights" - ] - }, - { - "text": "Strengthen coordination between the Brazilian Institute of the Environment and Renewable Natural Resources and the Brazilian National Indian Foundation", - "values": [ - "Environment", - "Indigenous peoples" - ] - }, - { - "text": "However, the Dominican Republic aware of the urgent need to eliminate the social inequalities that still exist, as in most underdeveloped nations, pledges to continue implementing and planning projects, both legislative and institutional, and to take affirmative action in favour of: children, adolescents, women, the elderly, the disabled, migrants, justice, workers, the elimination of poverty, health, education, intercultural integration, social and human development, and trafficking in persons.", - "values": [ - "General" - ] - }, - { - "text": "Step up measures for the protection of the rights of women and girls and take steps to establish and bolster the family regime and strengthen its legal arsenal related to family aspects ", - "values": [ - "Rights of the Child", - "Women's rights" - ] - }, - { - "text": "Strengthen the measures aimed at guaranteeing freedom of expression and freedom of the press", - "values": [ - "Freedom of opinion and expression", - "Freedom of the press" - ] - }, - { - "text": "Continue positive efforts to eliminate, in accordance with international obligations and commitments, all forms of discrimination, especially discrimination against vulnerable groups and all groups that have been historically most deprived of", - "values": [ - "Minorities" - ] - }, - { - "text": "Continue the positive measures in favour of women by promoting their access to justice and education", - "values": [ - "Women's rights" - ] - }, - { - "text": "Repeal legislation which allows for the death penalty, in line with Liberia's commitments under the Second Optional Protocol to the International Covenant on Civil and Political Rights", - "values": [ - "Death penalty", - "International instruments" - ] - }, - { - "text": "Expedite the review and alignment of national laws with the new Constitution", - "values": [ - "General" - ] - }, - { - "text": "Continue its efforts in the suppression of trafficking in human beings, in particular in women and girls ", - "values": [ - "Rights of the Child", - "Trafficking", - "Women's rights" - ] - }, - { - "text": "Review its legislation on defamation and insult, including the Penal Code, to ensure that it is fully in compliance with international human rights law", - "values": [ - "Freedom of opinion and expression", - "International instruments" - ] - }, - { - "text": "Continue strengthening the legal and institutional reform process in order to safeguard the full independence and transparency of the judiciary, including effective monitoring and accountability mechanisms", - "values": [ - "Justice" - ] - }, - { - "text": "Improve as quickly as possible the different aspects of prisoners\u2019 conditions", - "values": [ - "Detention" - ] - }, - { - "text": "Consider reviewing its position via-à-vis acceding to the ICCPR, ICESCR, ICERD, CAT and ICRMW", - "values": [ - "International instruments" - ] - }, - { - "text": "Incorporate non-discrimination in its National Children policy, whilst expediting the process", - "values": [ - "Rights of the Child" - ] - }, - { - "text": "Increase Palau's participation in the main international human rights instruments and accede to the international treaties to which is not yet party ", - "values": [ - "International instruments" - ] - }, - { - "text": "Invest sufficient resources to promote and protect the principle of equality in the fields of work, education and health ", - "values": [ - "Labour", - "Right to education", - "Right to health" - ] - }, - { - "text": "Implement measures to protect intersex persons from discrimination", - "values": [ - "Sexual Orientation and Gender Identity" - ] - }, - { - "text": "Ratify the ICCPR at an early stage", - "values": [ - "CP rights - general", - "International instruments" - ] - }, - { - "text": "Ensure that Slovenia's facilities regarding the compulsory health insurance scheme are available at the secondary and tertiary levels", - "values": [ - "Right to health" - ] - }, - { - "text": "Adopt a national plan against racism, racial discrimination, xenophobia and intolerance that includes aspects such as education and training in human rights for all levels of public administration and a system of data collection for overseeing and controlling xenophobic and racist acts, carry out a comprehensive analysis on the effectiveness of legislative measures which seek to prohibit and punish using xenophobic messages or the incite to racial discrimination by political parties, and establish a simplified and flexible mechanism to process and deal with claims based on possible acts of discriminatory treatment by security forces and bodies", - "values": [ - "Human rights education and training", - "Human rights violations by state agents", - "Racial discrimination" - ] - }, - { - "text": "Continue strengthening its efforts to promote the rights of women and children", - "values": [ - "Rights of the Child", - "Women's rights" - ] - }, - { - "text": "Ratify the International Convention for the Protection of All Persons from Enforced Disappearance and the Optional Protocol to the Convention on the Elimination of All Forms of Discrimination against Women", - "values": [ - "Enforced disappearances", - "International instruments", - "Women's rights" - ] - }, - { - "text": "Take timely and concrete measures such as raising the minimum legal age of marriage to 18 years in order to prevent children from becoming victims of child early and forced marriage", - "values": [ - "Rights of the Child", - "Women's rights" - ] - }, - { - "text": "Ensure that the International Commission against Impunity in Guatemala is able to operate without interference and that government institutions key to anti-corruption efforts continue to be adequately funded with dedicated leadership", - "values": [ - "Corruption", - "Impunity" - ] - }, - { - "text": "Modify the Criminal Procedure Code to ensure better protection for women, and thoroughly investigate allegations of violence or abuse perpetrated against children while in detention", - "values": [ - "Detention", - "Rights of the Child", - "Women's rights" - ] - }, - { - "text": "Explore strategies to combat child labour", - "values": [ - "Labour", - "Rights of the Child" - ] - }, - { - "text": "Continue to formulate appropriate plans to establish a compulsory education policy ", - "values": [ - "Right to education" - ] - }, - { - "text": "Exert more efforts and take measures to promote women's rights and protection in accordance to traditional Chinese norms and values, to achieve more progress in various fields", - "values": [ - "Women's rights" - ] - }, - { - "text": "Implement alternatives to help young persons and adults complete their schooling", - "values": [ - "Right to education" - ] - }, - { - "text": "Continue to take actions to improve the capacity of the judiciary, including by sensitizing officials working in the judicial branch on issues concerning vulnerable groups such as women, children and persons with disabilities", - "values": [ - "Disabilities", - "Justice", - "Rights of the Child", - "Women's rights" - ] - }, - { - "text": "Redouble its efforts in providing free primary education for its citizens with a view to encouraging children who have been affected by the political crisis to attend primary school", - "values": [ - "Right to education", - "Rights of the Child" - ] - }, - { - "text": "Fully protect the freedom of religion and belief by allowing the conscientious objection clause in all fields", - "values": [ - "Freedom of religion and belief" - ] - }, - { - "text": "Better train its law enforcement officials to ensure that perpetrators of sexual violence are prosecuted in a more severe and consequent manner, and follow the recommendations of the Committee on the Elimination of Discrimination against Women to guarantee appropriate compensation and support and assistance measures for victims of sexual violence.", - "values": [ - "Treaty bodies", - "Women's rights" - ] - }, - { - "text": "Ratify the Rome Statute of the International Criminal Court which was already signed in 1999 and guarantee its full implementation into national law", - "values": [ - "International instruments", - "Justice" - ] - }, - { - "text": "Reform the judicial system in accordance with international standards regarding the administration of justice, including by reforming penal centres and the system for the administration of juvenile justice, and ensuring the independence of judges and lawyers", - "values": [ - "Justice" - ] - }, - { - "text": "Within the context of its legislative review process, fully incorporate international human rights instruments to which it is party in its domestic legal framework ", - "values": [ - "International instruments" - ] - }, - { - "text": "Expedite reform of governance, public administration and the legal system aimed at deepening and broadening democratic norms, principles and standards ", - "values": [ - "Justice" - ] - }, - { - "text": "Promote in the international scene the literacy and post-literacy Cuban programs named "Yo sí puedo" "Ya puedo leer y escribir" and "Yo sí puedo seguir"", - "values": [ - "Right to education" - ] - }, - { - "text": "Continue the positive participation and coordination with neighbouring countries in the context of combating trafficking in human beings ", - "values": [ - "Trafficking" - ] - }, - { - "text": "Step up efforts to systematically address exploitation of and violence against children, including by introducing and effectively implementing legislation criminalizing the practice of placing children from poor families in domestic services (so-called restavek) ", - "values": [ - "Labour", - "Rights of the Child" - ] - }, - { - "text": "Universalisation of lower secondary education", - "values": [ - "Right to education" - ] - }, - { - "text": "Abolish the death penalty definitively and commute all such sentences to periods of imprisonment - and put an end to caning and flogging", - "values": [ - "Death penalty", - "Torture and other CID treatment" - ] - }, - { - "text": "Continue to support United Nations fund related to human rights", - "values": [ - "Development" - ] - }, - { - "text": "Ratify ILO Convention No. 189 concerning Decent Work for Domestic Workers ", - "values": [ - "International instruments", - "Labour" - ] - }, - { - "text": "Expedite efforts to ensure that a birth certificate is issued free of charge for all children without discrimination, including children born in rural and poor areas", - "values": [ - "Rights of the Child", - "Statelessness and the right to nationality" - ] - }, - { - "text": "Safeguard the independence of its judiciary", - "values": [ - "Justice" - ] - }, - { - "text": "Free those persons who were detained owing to their participation in peaceful demonstrations, and in particular the student leaders who were arrested in 1999 ", - "values": [ - "Detention", - "Freedom of association and peaceful assembly" - ] - }, - { - "text": "Guarantee the fight against impunity, ensuring that all those persons found guilty are brought to justice, in the context of allegations of the use of torture to obtain confessions from detainees", - "values": [ - "Detention", - "Impunity", - "Justice", - "Torture and other CID treatment" - ] - }, - { - "text": "Ensure the prosecution and punishment, according to the law, of those responsible of racial hate and xenophobic criminal acts ", - "values": [ - "Racial discrimination" - ] - }, - { - "text": "Continue to promote the social and human development of the Dominican population by devising public policies and taking affirmative actions aimed at eliminating remaining social inequalities ", - "values": [ - "Development" - ] - }, - { - "text": "Conclude the work initiated towards establishing an NHRI", - "values": [ - "National Human Rights Institution" - ] - }, - { - "text": "Continue to take further measures towards inclusive and quality education", - "values": [ - "Right to education" - ] - }, - { - "text": "Give priority to measures that could guarantee access to drinking water for all citizens, including those living in areas that are difficult to access ", - "values": [ - "Right to water and sanitation" - ] - }, - { - "text": "Collaborate with United Nations institutions to develop the agricultural sector in order to meet the daily food needs of the population", - "values": [ - "Development", - "Right to food", - "Technical assistance and cooperation" - ] - }, - { - "text": "Take effective measures, with the assistance of all relevant international organisations, to counter food insecurity, HIV/AIDS pandemics and high morbidity and mortality rates ", - "values": [ - "HIV - Aids", - "Right to food", - "Right to health", - "Technical assistance and cooperation" - ] - }, - { - "text": "Consider establishing an independent national human rights institution in conformity with the Paris Principles", - "values": [ - "National Human Rights Institution" - ] - }, - { - "text": "Set-up a national body with a view to following up on the implementation of the recommendations submitted by CEDAW after the review of Iraq in February 2014", - "values": [ - "Treaty bodies", - "Women's rights" - ] - }, - { - "text": "Establish mechanisms of evaluation and follow-up of the implementation of human rights public policies and programmes, in particular those referred to the fight against discrimination in all its forms and on any grounds, taking into account the recommendations from the UPR and other human rights mechanisms", - "values": [ - "UPR process" - ] - }, - { - "text": "Provide adequate funding for investigations of violence against women, victim support programmes for affected women, and special training for the police to sensitize them to the problem of violence against women", - "values": [ - "Human rights education and training", - "Women's rights" - ] - }, - { - "text": "Ensure adequate training for the police and judiciary to promptly and effectively deal with hate crimes", - "values": [ - "Racial discrimination" - ] - }, - { - "text": "Ensure that Namibia's juvenile justice system is in line with international standards", - "values": [ - "Justice", - "Rights of the Child" - ] - }, - { - "text": "Ratify the Convention against Torture and abolish the death penalty ", - "values": [ - "Death penalty", - "International instruments", - "Torture and other CID treatment" - ] - }, - { - "text": "Take all necessary policing and other measures to prevent and provide protection against all forms of discrimination, violence and harassment related to sexual and gender identity, and ensure that perpetration of such violence is vigorously investigated and that perpetrators are held accountable ", - "values": [ - "Sexual Orientation and Gender Identity" - ] - }, - { - "text": "Issue a standing invitation to all United Nations Special Procedures", - "values": [ - "Special procedures" - ] - }, - { - "text": "Bring its national human rights institutions, especially the National Human Rights Council, fully in line with the Paris Principles", - "values": [ - "National Human Rights Institution" - ] - }, - { - "text": "Redouble efforts to improve access by young people and vulnerable groups to decent work", - "values": [ - "Labour" - ] - }, - { - "text": "Develop a policy, strategy and action plan to address the reportedly widespread violence against women", - "values": [ - "Women's rights" - ] - }, - { - "text": "Establish a national human rights institution in accordance with the Paris Principles, as recommended by the Committee on the Rights of the Child.", - "values": [ - "National Human Rights Institution", - "Treaty bodies" - ] - }, - { - "text": "Continue to implement its HIV/AIDS prevention, care and treatment programmes to further reduce the prevalence rate ", - "values": [ - "HIV - Aids" - ] - }, - { - "text": "Ease the procedure of obtaining citizenship, including by reducing the language requirement ", - "values": [ - "Migrants" - ] - }, - { - "text": "Take concrete measures to abolish the death penalty", - "values": [ - "Death penalty" - ] - }, - { - "text": "Continue the implementation of strategies for ensuring the achievement of Millennium Development Goals, in particular with respect to promoting health, combating HIV-AIDS, increasing the vaccination of the population through the expanded vaccination programme, and reducing the illiteracy rate", - "values": [ - "HIV - Aids", - "Right to education", - "Right to health" - ] - }, - { - "text": "Adhere to the 1954 Convention relating to the Status of Stateless Persons and 1961 Convention on the Reduction of Statelessness ", - "values": [ - "International instruments", - "Statelessness and the right to nationality" - ] - }, - { - "text": "Submit as a matter of priority its delayed reports to treaty bodies.", - "values": [ - "Treaty bodies" - ] - }, - { - "text": "Set up a specialized body responsible for gender issues", - "values": [ - "Women's rights" - ] - }, - { - "text": "Ratify the European Charter for Regional or Minority Languages, the leading instrument in this respect", - "values": [ - "Minorities" - ] - }, - { - "text": "Complete the process of creating a coordination body to implement the Convention on the Rights of the Child", - "values": [ - "International instruments", - "Rights of the Child" - ] - }, - { - "text": "Consider the signing, ratification or accession, as corresponds, of the main international and Inter-American human rights instruments, especially the Convention on the Rights of the Child ", - "values": [ - "International instruments", - "Rights of the Child" - ] - }, - { - "text": "Continue to consolidate its legislative reform as well as programmes aimed at improving the basic standard of living of its people ", - "values": [ - "Justice" - ] - }, - { - "text": "Ratify the OPCAT", - "values": [ - "Detention", - "International instruments", - "Torture and other CID treatment" - ] - }, - { - "text": "Continue to address the challenges which impede progress in human rights", - "values": [ - "General" - ] - }, - { - "text": "Adopt and implement a national action plan to combat trafficking in persons, emphasizing the protection of indigenous women and migrants ", - "values": [ - "Indigenous peoples", - "Migrants", - "Trafficking", - "Women's rights" - ] - }, - { - "text": "Establish shelters and provide further social services for victims of domestic violence", - "values": [ - "Rights of the Child", - "Women's rights" - ] - }, - { - "text": "Take further steps for the implementation of the ratified international treaties ", - "values": [ - "International instruments" - ] - }, - { - "text": "Continue implementing the National Action Plan on Disabilities 2013-2022 with emphasis on the situation of children facing multiple forms of discrimination", - "values": [ - "Disabilities", - "Rights of the Child" - ] - }, - { - "text": "Invite the Special Rapporteur on freedom of expression, which could also promote the harmonization of the provisions of the Computer Crimes Act and their implementation in line with international human rights standards ", - "values": [ - "Freedom of opinion and expression", - "International instruments", - "Special procedures" - ] - }, - { - "text": "Continue its strive to build an inclusive society where persons with disabilities are given every opportunity to become integral and contributing members ", - "values": [ - "Disabilities" - ] - }, - { - "text": "Declassify death penalty sentences imposed in the past as a State secret, with the aim of providing the families of those who were executed with information on their relatives sentenced to death ", - "values": [ - "Death penalty" - ] - }, - { - "text": "Ensure the effective implementation of the Family Protection Act of 2014", - "values": [ - "Rights of the Child", - "Women's rights" - ] - }, - { - "text": "Put a decisive end to the practice of female genital mutilation", - "values": [ - "Rights of the Child", - "Torture and other CID treatment", - "Women's rights" - ] - }, - { - "text": "Establish a national human rights institution in full conformity with the Paris Principles, which coordinates and articulates the work of different specialized bodies with competences over the extensive set of human rights", - "values": [ - "National Human Rights Institution" - ] - }, - { - "text": "Strengthen efforts to complete the process of implementing the new model in the whole national penitentiary system ", - "values": [ - "Detention" - ] - }, - { - "text": "Continue its efforts in combating sexual abuse, including by ensuring that perpetrators are brought to justice", - "values": [ - "Rights of the Child", - "Women's rights" - ] - }, - { - "text": "Ensure that the cases of intimidation and violation against journalists and human rights defenders are effectively investigated and prosecuted and that those responsible are brought to justice", - "values": [ - "Freedom of the press", - "Human rights defenders" - ] - }, - { - "text": "Take the appropriate measures to develop a social environment conducive to the empowerment of civil society, in particular, by opening up new channels aimed at reflecting the expectations of young people when it comes to structures and socio-economic processes ", - "values": [ - "Civil society" - ] - }, - { - "text": "Develop a strategy and an operational national action plan to combat child marriage", - "values": [ - "Rights of the Child" - ] - }, - { - "text": "Enact a national legislation that prohibits religious, racial and colour profiling particularly in context of the fight against terrorism ", - "values": [ - "Counter-terrorism", - "Racial discrimination" - ] - }, - { - "text": "Take further measures to ensure children\u2019s access to education, particularly for those with disabilities and living in remote communities", - "values": [ - "Disabilities", - "Right to education", - "Rights of the Child" - ] - }, - { - "text": "Continue its efforts with a view to the effective implementation of the provisions of the United Nations Declaration on Human Rights Education and Training ", - "values": [ - "Human rights education and training" - ] - }, - { - "text": "Continue its efforts to improve human rights, especially in the field of health", - "values": [ - "Right to health" - ] - }, - { - "text": "Continue to take innovative measures to ensure that its development policies permit the full enjoyment of economic, social and cultural rights in the country", - "values": [ - "ESC rights - general" - ] - }, - { - "text": "Ratify the Convention on the Rights of Persons with Disabilities already signed in 2007 ", - "values": [ - "Disabilities", - "International instruments" - ] - }, - { - "text": "Plan to ratify, in addition to the instruments announced in the report, ICRMW", - "values": [ - "International instruments", - "Labour", - "Migrants" - ] - }, - { - "text": "Extend an open and standing invitation to Special Procedures of the Human Rights Council and respond positively to visits requests issued by the Special Rapporteur on torture and other cruel, inhuman or degrading treatment or punishment, the Special Rapporteur on the sale of children, child prostitution and child pornography and the Special Rapporteur on the right to education", - "values": [ - "Right to education", - "Rights of the Child", - "Special procedures", - "Torture and other CID treatment", - "Trafficking" - ] - }, - { - "text": "Consider acceding to the ILO Worst Forms of Child Labour Convention, 1999 (No. 182)", - "values": [ - "International instruments", - "Labour", - "Rights of the Child" - ] - }, - { - "text": "Ensure birth registration for all children born on its territory, especially those who are not registered due to the economic status of their parents, ethnicity and immigration status", - "values": [ - "Minorities", - "Rights of the Child", - "Statelessness and the right to nationality" - ] - }, - { - "text": "Provide for training of members of the legal profession to be gender sensitive and work towards mobilization of religious leaders to support such efforts ", - "values": [ - "Human rights education and training" - ] - }, - { - "text": "Raise the minimum age of marriage to 18 years", - "values": [ - "Rights of the Child", - "Women's rights" - ] - }, - { - "text": "Increase efforts to keep children in schools and protect them from sexual exploitation or forced and unlawful employment", - "values": [ - "Labour", - "Right to education", - "Rights of the Child" - ] - }, - { - "text": "Continue its measures aimed at the promotion of interfaith dialogue and the culture of tolerance", - "values": [ - "Freedom of religion and belief" - ] - }, - { - "text": "Alleviate overcrowding in prisons by encouraging alternative sentences to incarceration where appropriate ", - "values": [ - "Detention" - ] - }, - { - "text": "Adopt a comprehensive gender equality law ", - "values": [ - "Women's rights" - ] - }, - { - "text": "Consider ratification of the International Convention for the Protection of All Persons from Enforced Disappearance and accept the competence of the relevant Committee.", - "values": [ - "Enforced disappearances", - "International instruments" - ] - }, - { - "text": "Establish a credible, independent electoral commission capable of registering eligible voters on a nationwide basis ahead of the 2018 elections", - "values": [ - "Elections" - ] - }, - { - "text": "Continue its efforts for the promotion and protection of human rights and to continue to promote the role of women in society in order to guarantee quality life for its citizens as planned on viability, development, protection and participation ", - "values": [ - "Women's rights" - ] - }, - { - "text": "Continue its efforts in implementing the Strategy of combating violence against women and girls 2012-2016", - "values": [ - "Rights of the Child", - "Women's rights" - ] - }, - { - "text": "Make every effort to achieve an agreement with the guerrilla groups in order to achieve peace, as had been attempted in the past.", - "values": [ - "International humanitarian law" - ] - }, - { - "text": "Strengthen the mechanisms aimed at fighting against poverty and food insecurity", - "values": [ - "Poverty", - "Right to food" - ] - }, - { - "text": "Take measures to ensure that existing laws criminalizing rape and domestic violence are fully enforced, and cases are fully investigated and prosecuted consistent with these laws", - "values": [ - "Rights of the Child", - "Women's rights" - ] - }, - { - "text": "Ratify human rights treaties such as the International Convention on the Elimination of All Forms of Racial Discrimination, the International Covenant on Economic, Social and Cultural Rights, the International Covenant on Civil and Political Rights, the Convention against Torture and the Optional Protocol to the Convention on the Elimination of All Forms of Discrimination against Women", - "values": [ - "CP rights - general", - "ESC rights - general", - "International instruments", - "Racial discrimination", - "Torture and other CID treatment", - "Women's rights" - ] - }, - { - "text": "Development of a comprehensive and uniform compensation policy for the displaced and dispossessed.", - "values": [ - "Internally displaced persons" - ] - }, - { - "text": "Broadly promote sexual education, directing it in particular to adolescents, and giving special attention to the prevention of early age pregnancies and the control of sexually transmitted diseases such as HIV/AIDS ", - "values": [ - "HIV - Aids" - ] - }, - { - "text": "Ratify the ILO Convention 189", - "values": [ - "International instruments", - "Labour" - ] - }, - { - "text": "Implement urgently the recommendations of the High Commissioner for Human Rights of February 2008.", - "values": [ - "Other" - ] - }, - { - "text": "Take further steps to combat racial discrimination and human trafficking ", - "values": [ - "Racial discrimination", - "Trafficking" - ] - }, - { - "text": "Ratify and implement ICCPR and ICESCR as soon as possible without reservations ", - "values": [ - "CP rights - general", - "ESC rights - general", - "International instruments" - ] - }, - { - "text": "Allow a full and independent investigation into all reports of human rights violations, including crimes against humanity and war crimes and hold accountable those found responsible for these crimes ", - "values": [ - "Justice" - ] - }, - { - "text": "Reconsider its position relating to the ratification of ICMW in line with Recommendation 1737 of 17 March 2006 of the Parliamentary Assembly of the Council of Europe ", - "values": [ - "International instruments", - "Migrants" - ] - }, - { - "text": "Continue the implementation of measures aimed at promoting the enjoyment of human rights by youth", - "values": [ - "Other" - ] - }, - { - "text": "Continue its efforts to raise human rights awareness, and provide human rights education and training for the relevant Government officials.", - "values": [ - "Human rights education and training" - ] - }, - { - "text": "Ensure prompt, thorough and impartial investigations regarding attacks against human rights defenders and adopt a public policy on their protection", - "values": [ - "Human rights defenders" - ] - }, - { - "text": "Provide the same coverage in national legislation and anti-discrimination training activities for the grounds of sexual orientation and disability as for other grounds of discrimination, for example in areas such as the provision of services and health care.", - "values": [ - "Disabilities", - "Sexual Orientation and Gender Identity" - ] - }, - { - "text": "Recognize in the national legislation access to water and sanitation as a human right, and develop a national plan to guarantee it, in consultation with indigenous peoples and the society in general, in order to reduce the gap in access to this right between indigenous peoples and the rest of society ", - "values": [ - "Indigenous peoples", - "Right to water and sanitation" - ] - }, - { - "text": "Ensure strict implementation of its new legislation on discrimination", - "values": [ - "Other" - ] - }, - { - "text": "Abolish the death penalty in order to allow abolitionist countries to consider the possibility of extraditing persons suspected of having committed crimes in the Democratic Republic of the Congo", - "values": [ - "Death penalty" - ] - }, - { - "text": "Take concrete measures to improve the judiciary and penitentiary system, by reducing the cases of excessively long pretrial detentions and ensuring humane detention conditions", - "values": [ - "Detention" - ] - }, - { - "text": "Increase the level of funding of the National Commission on the Status of Women, in order for it to better protect and promote the rights of women", - "values": [ - "Women's rights" - ] - }, - { - "text": "Strengthen national understanding and tolerance to counter manifestations of religious discrimination", - "values": [ - "Freedom of religion and belief", - "Racial discrimination" - ] - }, - { - "text": "Continue its efforts to improve conditions of detention ", - "values": [ - "Detention" - ] - }, - { - "text": "Use armed drones in line with existing international legal regimes and pay compensation to all innocent victims without discrimination", - "values": [ - "Counter-terrorism", - "Extrajudicial executions" - ] - }, - { - "text": "Consider adhering to the optional protocol to CEDAW.", - "values": [ - "International instruments", - "Women's rights" - ] - }, - { - "text": "Consider the establishment of an efficient, child-friendly mechanism through which children can make complaints on abuses of their rights ", - "values": [ - "Rights of the Child" - ] - }, - { - "text": "Implement all the recommendations of the International Commission against Impunity in Guatemala (CICIG) and ensure that adequate resources are available to strengthen the responsible institutions", - "values": [ - "Impunity" - ] - }, - { - "text": "Support independent work of the NGOs and create a strategy to defend human rights activists in the interest of sustainable and healthy development of the state ", - "values": [ - "Civil society", - "Human rights defenders" - ] - }, - { - "text": "Investigate and prosecute those responsible for using children in pornography", - "values": [ - "Rights of the Child" - ] - }, - { - "text": "Continue to provide persons with disabilities with equal access to health including free and informed consent with health interventions and take necessary measures to repeal legislation restricting these", - "values": [ - "Disabilities", - "Right to health" - ] - }, - { - "text": "Grant full access to WFP to ensure food reaches the most vulnerable, and adopt other measures to promote the right to food including economic reforms to incentivize those working in the agricultural sector to increase production ", - "values": [ - "Right to food" - ] - }, - { - "text": "Further pursue awareness-raising efforts to counter the phenomenon of discrimination against women so that they are not deprived of fundamental rights ", - "values": [ - "Human rights education and training", - "Women's rights" - ] - }, - { - "text": "Abolish by law the death penalty and ratify the Second Optional Protocol to the International Covenant on Civil and Political Rights, aiming at the abolition of the death penalty", - "values": [ - "Death penalty", - "International instruments" - ] - }, - { - "text": "As recommended during the universal periodic review in 2012, respect the rights and fundamental freedoms of lesbian, gay, bisexual, transgender and intersex persons through the repeal of all norms that criminalize and stigmatize them", - "values": [ - "Sexual Orientation and Gender Identity", - "UPR process" - ] - }, - { - "text": "Sign and ratify the Optional Protocol to the CRC on a communications procedure ", - "values": [ - "International instruments", - "Rights of the Child" - ] - }, - { - "text": "Address the problems of extrajudicial killings and torture by security forces and improve prison situations", - "values": [ - "Extrajudicial executions", - "Torture and other CID treatment" - ] - }, - { - "text": "The immediate and unconditional release of all human rights defenders, democracy activists and other political prisoners ", - "values": [ - "Detention", - "Freedom of opinion and expression", - "Human rights defenders" - ] - }, - { - "text": "Strengthen capacity, including that of the Prosecutor-General's Office, to examine allegations of torture and ill-treatment as recommended by the Committee against Torture ", - "values": [ - "Torture and other CID treatment", - "Treaty bodies" - ] - }, - { - "text": "Continue the efforts deployed by the Greek government to start the implementation of the children alternative care program", - "values": [ - "Rights of the Child" - ] - }, - { - "text": "Put forward extensive efforts to eliminate all forms of discrimination against women, including enforcement of the age of marriage set out in law as well as the development of comprehensive awareness-raising programmes on the negative implications of early marriage", - "values": [ - "Human rights education and training", - "Rights of the Child", - "Women's rights" - ] - }, - { - "text": "Continue applying its successful programmes implementing CRPD ", - "values": [ - "Disabilities", - "International instruments" - ] - }, - { - "text": "Increase funding for federal human trafficking prosecutors and take steps to end the impunity for public officials complicit in trafficking", - "values": [ - "Trafficking" - ] - }, - { - "text": "Prioritize reforms to the law enforcement and judicial systems in an effort to prevent crimes, punish those responsible and address the culture of impunity", - "values": [ - "Impunity", - "Justice" - ] - }, - { - "text": "Continue the efforts for the protection of children and the elimination of violence against them", - "values": [ - "Rights of the Child" - ] - }, - { - "text": "Establish an immediate moratorium on the death penalty as a first step towards its final abolition, withdraw the mandatory nature of the death sentence, publish detailed statistics on the death sentence and on executions", - "values": [ - "Death penalty" - ] - }, - { - "text": "Continue efforts in improving the health-care system in order to combat mother and child mortality, and assist those suffering from HIV/AIDS", - "values": [ - "HIV - Aids", - "Right to health", - "Rights of the Child", - "Women's rights" - ] - }, - { - "text": "Reduce the number of crimes to which the death penalty can be imposed", - "values": [ - "Death penalty" - ] - }, - { - "text": "Continue its efforts to eradicate all forms of discrimination against the elderly ", - "values": [ - "Other" - ] - }, - { - "text": "Abolish and amend all laws that encourage and permit the practice of forced, early and temporary marriages of young girls", - "values": [ - "Rights of the Child", - "Women's rights" - ] - }, - { - "text": "Take measures to ensure that members of the political opposition are able to express their views freely, and are protected against intimidation and violence, including during peaceful demonstrations", - "values": [ - "Freedom of association and peaceful assembly", - "Freedom of opinion and expression" - ] - }, - { - "text": "Adopt effective measures to ensure conditions of detention that respected the dignity of prisoners in particular the revised United Nations Standard Minimum Rules for the Treatment of Prisoners (The Nelson Mandela Rules) ", - "values": [ - "Detention" - ] - }, - { - "text": "Take additional measures to train its security force, as recommended in 2008, in order to guarantee respect for human rights ", - "values": [ - "Human rights education and training" - ] - }, - { - "text": "Align the legal framework applicable to freedom of the press and publication and to audiovisual communication with applicable international standards", - "values": [ - "Freedom of the press" - ] - }, - { - "text": "Deepen legislative endeavours in the fight against gender-based violence, within as well as outside of marriage", - "values": [ - "Rights of the Child", - "Women's rights" - ] - }, - { - "text": "Continue with the programmes already launched to combat poverty ", - "values": [ - "Poverty" - ] - }, - { - "text": "Develop measures to promote education for all, particularly for vulnerable groups, including women, children and persons with disabilities", - "values": [ - "Disabilities", - "Right to education", - "Rights of the Child", - "Women's rights" - ] - }, - { - "text": "Ensure that non impediments to the preservation, expression and development of cultural identity by all citizens are created ", - "values": [ - "Freedom of opinion and expression" - ] - }, - { - "text": "Continue to incorporate CEDAW principles into its domestic legislation.", - "values": [ - "Indigenous peoples", - "Women's rights" - ] - }, - { - "text": "Reform Presidential Decrees Nos. 16 and 739 and any draft law in this field to ensure the protection of human rights defenders and to ensure the independence and functioning of civil society organizations, notably by accepting the offer of technical assistance from the United Nations special rapporteurs to reform the current legislation", - "values": [ - "Civil society", - "Human rights defenders", - "Technical assistance and cooperation" - ] - }, - { - "text": "Conduct public campaigns on racism and xenophobia, and include human rights education in the educational curriculum of public schools", - "values": [ - "Human rights education and training", - "Racial discrimination" - ] - }, - { - "text": "Prosecute perpetrators of gender-based violence and bride-kidnapping", - "values": [ - "Women's rights" - ] - }, - { - "text": "Implement legislative measures to prohibit all forms of corporal punishment against minors", - "values": [ - "Rights of the Child", - "Torture and other CID treatment" - ] - }, - { - "text": "Consider the establishment of an independent national human rights institution, within, and in accordance with the appropriate domestic procedural and legal framework", - "values": [ - "National Human Rights Institution" - ] - }, - { - "text": "Provide training to police officers about unacceptable conduct and adequately punish all cases of ill-treatment", - "values": [ - "Human rights education and training", - "Human rights violations by state agents", - "Torture and other CID treatment" - ] - }, - { - "text": "Enact legislation to ensure equal pay for equal work to both men and women in order to maintain gender parity and prevent discrimination based on gender", - "values": [ - "Women's rights" - ] - }, - { - "text": "Provide the Ombudsman's office with sufficient resources for exercising its role in accordance with its mandate", - "values": [ - "National Human Rights Institution" - ] - }, - { - "text": "Strengthen efforts designed to prohibit racist and xenophobic discourses", - "values": [ - "Racial discrimination" - ] - }, - { - "text": "Remove or alter the broad definition and arbitrary application of \u201cinexcusable error\u201c used by the Judicial Council to punish judges", - "values": [ - "Justice" - ] - }, - { - "text": "That the process of reviewing the constitution is conducted in an open and accountable manner, which includes the general public as well as the national parliament and Zanzibar's House of Representatives ", - "values": [ - "Other" - ] - }, - { - "text": "Speed up implementation of the Strategic Development Plan for Haiti in order to prevent epidemics", - "values": [ - "Development", - "Right to health" - ] - }, - { - "text": "Take increased measures to prevent and combat impunity for human rights violations through investigation of all threats, harassment, intimidation, violence and enforced disappearances, in particular those concerning children and human rights defenders, and ensure that all perpetrators are held accountable for their actions", - "values": [ - "Enforced disappearances", - "Human rights defenders", - "Impunity", - "Rights of the Child" - ] - }, - { - "text": "Continue to increase spending on education in order to improve coverage and quality of education with the special attention to the right to education of the vulnerable groups, including poor students, girls and children with disabilities", - "values": [ - "Disabilities", - "Poverty", - "Right to education", - "Rights of the Child" - ] - }, - { - "text": "Promote at the social, economic, legislative and judicial levels the development of a general environment that ensures the protection of the fundamental freedoms of all citizens. In particular, adopt and implement a national strategy to guarantee freedom of the press and ensure that complaints of violations of these rights are investigated promptly and impartially", - "values": [ - "Freedom of the press" - ] - }, - { - "text": "Redoubling efforts to protect women and children against all forms of violence, including the use of FGM ", - "values": [ - "Rights of the Child", - "Torture and other CID treatment", - "Women's rights" - ] - }, - { - "text": "Continue to design and implement policies and programmes on pro- poor growth, job creation and income generation", - "values": [ - "Development", - "Poverty" - ] - }, - { - "text": "Consider strengthening policies to combat discrimination in all areas, notably in employment and education ", - "values": [ - "Labour", - "Right to education" - ] - }, - { - "text": "Improve the efficiency of the justice system by streamlining and simplifying judicial procedures including introducing a case management system that tracks individual cases from filing to disposition and limits the amount of time each case can be held at each stage", - "values": [ - "Justice" - ] - }, - { - "text": "Consider promoting more effective participation by indigenous peoples in political decision-making.", - "values": [ - "Indigenous peoples" - ] - }, - { - "text": "Take steps to amend its Penal Code to ensure that it cannot be applied in an arbitrary manner to prevent freedom of expression ", - "values": [ - "Freedom of opinion and expression" - ] - }, - { - "text": "Lift its reservation on Article 9 of the Convention on the Elimination of All Forms of Discrimination against Women and allow women to pass the citizenship to their children", - "values": [ - "International instruments", - "Statelessness and the right to nationality", - "Women's rights" - ] - }, - { - "text": "Undertake the necessary steps for the effective implementation of the national framework programme to combat child and bonded labour", - "values": [ - "Labour", - "Rights of the Child" - ] - }, - { - "text": "Investigate and prosecute abuses against domestic workers ", - "values": [ - "Labour" - ] - }, - { - "text": "Take immediate measures to abolish the death penalty for persons that were under-age at the time of the crime, as well as for those convicted individuals having significantly impaired mental ability or mental illness", - "values": [ - "Death penalty" - ] - }, - { - "text": "Improve further its cooperation with all United Nations human rights mechanisms, submitting, among others, its overdue reports to treaty bodies ", - "values": [ - "Special procedures", - "Treaty bodies", - "UPR process" - ] - }, - { - "text": "Adopt a clear and broad definition of child pornography and child prostitution in accordance with international law. Eliminate the possibility that children between 15 and 18 years of age can legally engage in prostitution", - "values": [ - "Rights of the Child", - "Trafficking" - ] - }, - { - "text": "Continue to develop its human resources for further harmonizing and mainstreaming international obligations into domestic legislation and practices, with more focus on employment, education, health care, food security and social welfare, especially in rural and remote areas ", - "values": [ - "Development", - "ESC rights - general", - "Right to education", - "Right to food", - "Right to health" - ] - }, - { - "text": "Amend the federal Marriage Act to allow same-sex couples to marry by changing the definition of marriage, and provide full recognition of same-sex marriages from overseas", - "values": [ - "Sexual Orientation and Gender Identity" - ] - }, - { - "text": "Continue working for the welfare of children, women and persons with disabilities", - "values": [ - "Disabilities", - "Rights of the Child", - "Women's rights" - ] - }, - { - "text": "That the process of round-table discussions among law enforcement, elected officials and community members, aimed to stem profiling and excessive use of force by the police should be stepped up to cover as many cities as possible", - "values": [ - "Human rights violations by state agents" - ] - }, - { - "text": "Include a definition of torture in its Criminal Code incorporating all elements contained in article 1 of the Convention against Torture and Other Cruel, Inhuman or Degrading Treatment or Punishment", - "values": [ - "International instruments", - "Torture and other CID treatment" - ] - }, - { - "text": "Condemn any manifestation of racism, discrimination, xenophobia and Islamophobia in political statements and pursue its efficient measures to combat these phenomena in official and media sectors and within the public at large ", - "values": [ - "Freedom of religion and belief", - "Racial discrimination" - ] - }, - { - "text": "Ratify ICCPR, ICESCR and the Optional Protocols to CRC as a matter of priority ", - "values": [ - "CP rights - general", - "ESC rights - general", - "International instruments", - "Rights of the Child" - ] - }, - { - "text": "Take measures to reduce the phenomenon of violence against women", - "values": [ - "Women's rights" - ] - }, - { - "text": "Lebanon was pleased to announce that it had accepted to extend a standing invitation to all Special Procedures mandate holders to visit the country, and that preparation of overdue reports to treaty bodies, including CAT, was under way.", - "values": [ - "Special procedures", - "Torture and other CID treatment", - "Treaty bodies" - ] - }, - { - "text": "Take measures to revise the law on abortion with a view to permitting termination of pregnancy in cases where pregnancy is a result of rape or incest, or in situations where the pregnancy puts the physical or mental health or well-being of the pregnant woman or the pregnant girl in danger", - "values": [ - "Women's rights" - ] - }, - { - "text": "Ensure that all human rights treaties are given full legal effect in domestic laws ", - "values": [ - "International instruments" - ] - }, - { - "text": "Ratify Rome Statute and the Optional Protocol to CAT and prosecute and punish those who committed violations to International Humanitarian Law and Human Rights Law", - "values": [ - "Detention", - "International humanitarian law", - "International instruments", - "Justice", - "Torture and other CID treatment" - ] - }, - { - "text": "Make increased efforts to protect children from economic exploitation, inter alia through the introduction of legislation establishing the minimum age for admission to employment and ensuring decent working conditions", - "values": [ - "Labour", - "Rights of the Child" - ] - }, - { - "text": "Seek to adopt procedures for the determination of the best interests of child victims of trafficking and children of victims, including with a view to strengthening the identification of victims of trafficking, especially women and children", - "values": [ - "Rights of the Child", - "Trafficking", - "Women's rights" - ] - }, - { - "text": "Consider alternatives to the detention of irregular migrants and asylum seekers, limit the length of detentions, and ensure that detainees have access to the judiciary, to consular assistance and to adequate information ", - "values": [ - "Asylum-seekers - refugees", - "Detention", - "Migrants" - ] - }, - { - "text": "Fully respect and protect the right to privacy", - "values": [ - "Privacy" - ] - }, - { - "text": "Extend an open standing invitation to all special procedures, as previously recommended", - "values": [ - "Special procedures", - "UPR process" - ] - }, - { - "text": "Continue with measures and programmes aimed at increasing the enjoyment of economic, social and cultural rights of its people ", - "values": [ - "ESC rights - general" - ] - }, - { - "text": "Continue to earmark sufficient funds for all child protection programs ", - "values": [ - "Rights of the Child" - ] - }, - { - "text": "Immediately set up civilian structures in those areas that come under Transitional Federal Government's control to ensure the protection of human Rights ", - "values": [ - "Other" - ] - }, - { - "text": "Explicitly prohibit discrimination against women, in line with the provisions of the Convention on the Elimination of All Forms of Discrimination against Women ", - "values": [ - "International instruments", - "Women's rights" - ] - }, - { - "text": "Accelerate the enactment of laws that promote the role of women", - "values": [ - "Justice", - "Women's rights" - ] - }, - { - "text": "Penalize the use of xenophobic and racist rhetoric and prohibit organizations which promote or incite to racial discrimination ", - "values": [ - "Racial discrimination" - ] - }, - { - "text": "Take appropriate measures to make the promotion of gender equality an explicit component of its national development plan and policies and to include in its Constitution or other appropriate domestic legislation a definition of discrimination against women ", - "values": [ - "Women's rights" - ] - }, - { - "text": "Continue to align its national legislation with international human rights instruments to which it is a State party", - "values": [ - "International instruments" - ] - }, - { - "text": "Further strengthen the National Preventive Mechanism under the Optional Protocol to the Convention against Torture and Other Cruel, Inhuman or Degrading Treatment or Punishment by ensuring its autonomy, allocating necessary resources and developing a plan for its effective implementation ", - "values": [ - "Detention", - "International instruments", - "Torture and other CID treatment" - ] - }, - { - "text": "Extend an open invitation to the Special Procedures and respond favourably to pending requests", - "values": [ - "Special procedures" - ] - }, - { - "text": "Address gaps in the legislation on the sexual exploitation of children ", - "values": [ - "Rights of the Child" - ] - }, - { - "text": "Raise the level of human rights awareness in society", - "values": [ - "Human rights education and training" - ] - }, - { - "text": "Speed up the work to bring the criminal procedure code in line with European standards, as proposed by the Council of Europe", - "values": [ - "Justice" - ] - }, - { - "text": "Reinforce national legislation and policies to combat human trafficking, in particular sex trafficking, and child labour exploitation ", - "values": [ - "Labour", - "Rights of the Child", - "Trafficking" - ] - }, - { - "text": "Strengthen the ongoing measures to reduce hunger and to promote food security", - "values": [ - "Right to food" - ] - }, - { - "text": "Continue its efforts to provide development and humanitarian aid to least developed countries", - "values": [ - "Development" - ] - }, - { - "text": "Take steps to implement comprehensive anti-discrimination laws, particularly to eliminate discrimination on the basis of sexual orientation", - "values": [ - "Sexual Orientation and Gender Identity" - ] - }, - { - "text": "Sign and ratify the Optional Protocol to the Convention on the Rights of the Child on the involvement of children in armed conflict", - "values": [ - "International humanitarian law", - "International instruments", - "Rights of the Child" - ] - }, - { - "text": "Enact legislation making enforced disappearance a crime under national law in accordance with the International Convention for the Protection of All Persons from Enforced Disappearance", - "values": [ - "Enforced disappearances", - "International instruments" - ] - }, - { - "text": "Provide, in accordance with its obligations under International Human Rights Law, the widest possible protection and support for the family, as the natural and fundamental unit of society ", - "values": [ - "Other" - ] - }, - { - "text": "Adopt and implement a comprehensive and non-discriminatory law on violence against women and girls", - "values": [ - "Rights of the Child", - "Women's rights" - ] - }, - { - "text": "Continue with the establishment of legal and independent bodies including the Constitutional Council", - "values": [ - "Justice" - ] - }, - { - "text": "Adopt appropriate policies and additionally promote gender equality in public affairs as well as enforce strict sanctions against all kinds of discrimination and abuse of women's rights", - "values": [ - "Women's rights" - ] - }, - { - "text": "Continue to implement policies and programmes to prevent early school dropout of girls", - "values": [ - "Right to education", - "Rights of the Child", - "Women's rights" - ] - }, - { - "text": "Continue its efforts in order to ratify the Convention on the Rights of Persons with Disabilities", - "values": [ - "Disabilities", - "International instruments" - ] - }, - { - "text": "Consider the possibility to conduct a mid-term evaluation of the Action Plan on the rights of the child", - "values": [ - "Rights of the Child" - ] - }, - { - "text": "Continue to prioritize and facilitate the enrolment of qualified students to continue their higher education particularly the poor families and those with low income families through different funding mechanisms", - "values": [ - "Poverty", - "Right to education" - ] - }, - { - "text": "Seek assistance from international community to face its challenges ", - "values": [ - "Technical assistance and cooperation" - ] - }, - { - "text": "Reform its legal framework on freedom of religion by streamlining, facilitating and increasing the transparency of the registration process for religious organizations, including eliminating the obligation for religious groups to seek prior authorization to gather, and removing limitations on the printing, import and distribution of religious materials ", - "values": [ - "Freedom of religion and belief" - ] - }, - { - "text": "Implement federal and provincial laws on the right to education to ensure universal access", - "values": [ - "Right to education" - ] - }, - { - "text": "Strengthen measures aimed at fighting discrimination", - "values": [ - "Other" - ] - }, - { - "text": "Address concerns related to claims of interference with freedom of expression", - "values": [ - "Freedom of opinion and expression" - ] - }, - { - "text": "Take more effective measures to combat incidents of sexual violence and intensify efforts to implement its reintegration and rehabilitation policies for victims of gender-based violence", - "values": [ - "Rights of the Child", - "Women's rights" - ] - }, - { - "text": "Do its utmost to allow safe, timely and unimpeded access to humanitarian assistance ", - "values": [ - "Other" - ] - }, - { - "text": "Take increased measures to protect and provide redress to women subjected to gender-based violence ", - "values": [ - "Women's rights" - ] - }, - { - "text": "Develop a National Resilience Strategy for natural disasters that protects the development and subsistence methods, in order to have the possibility of guaranteeing the economic and social rights of the population", - "values": [ - "Development", - "ESC rights - general" - ] - }, - { - "text": "Abolish the death penalty for all persons considered as minors under international law ", - "values": [ - "Death penalty", - "Rights of the Child" - ] - }, - { - "text": "Continue to strengthen access to education through various programmes and initiatives for all children", - "values": [ - "Right to education", - "Rights of the Child" - ] - }, - { - "text": "Strengthen its policies and measures to consolidate the State of Law, as well as social cohesion, tolerance and non-discrimination in the country ", - "values": [ - "Justice" - ] - }, - { - "text": "Continue the project of technical cooperation with OHCHR in a number of different areas, particularly to strengthen the capacity of persons in charge of enforcing the law", - "values": [ - "Technical assistance and cooperation" - ] - }, - { - "text": "Continuously provide gender-sensitive trainings to authorities handling gender-based violence cases", - "values": [ - "Human rights education and training", - "Women's rights" - ] - }, - { - "text": "Ratify CAT", - "values": [ - "International instruments", - "Torture and other CID treatment" - ] - }, - { - "text": "Make greater efforts to foster the law-abiding culture throughout the country", - "values": [ - "Justice" - ] - }, - { - "text": "Ratify the International Convention for the Protection of All Persons from Enforced Disappearance, as no country is free from cases of enforced disappearance", - "values": [ - "Enforced disappearances", - "International instruments" - ] - }, - { - "text": "Continue to strive to obtain international assistance and technical advice to face the pressures in connection with the reception and hosting of refugees, and in his regard strengthen cooperation with relevant international organizations", - "values": [ - "Asylum-seekers - refugees", - "Technical assistance and cooperation" - ] - }, - { - "text": "Take all measures to eradicate child labour, particularly in the informal sector and rural areas", - "values": [ - "Labour", - "Rights of the Child" - ] - }, - { - "text": "As the nominal state of emergency has unintended consequences for government accountability, review it and produce a timetable on how it might be ended ", - "values": [ - "Public security" - ] - }, - { - "text": "Seek to integrate human rights perspectives in its National Development Strategy, in particular as regards domestic violence ", - "values": [ - "Technical assistance and cooperation", - "Women's rights" - ] - }, - { - "text": "Allocate more educational resources to central and western regions, rural areas, remote and border areas, and in ethnic minority areas", - "values": [ - "Minorities", - "Right to education" - ] - }, - { - "text": "Reinforce women's rights within the labour market.", - "values": [ - "Women's rights" - ] - }, - { - "text": "Ratify the Second Optional Protocol to ICCPR, designed to abolish the death penalty", - "values": [ - "Death penalty", - "International instruments" - ] - }, - { - "text": "Revise its legislation on the prevention and punishment of rape, with particular attention to marital rape ", - "values": [ - "Rights of the Child", - "Women's rights" - ] - }, - { - "text": "Speed up the process to ratify the Convention against Torture and the Optional Protocol thereto", - "values": [ - "Detention", - "International instruments", - "Torture and other CID treatment" - ] - }, - { - "text": "Strengthen education and health systems, fight illiteracy and raise awareness on human rights issues ", - "values": [ - "Human rights education and training", - "Right to education", - "Right to health" - ] - }, - { - "text": "Increase investments in its health system to ensure universal access to essential and affordable health services", - "values": [ - "Right to health" - ] - }, - { - "text": "Adopt and fully implement the draft Nationality Law", - "values": [ - "Statelessness and the right to nationality" - ] - }, - { - "text": "Increase funding in order to create an education system that upholds the right to free, universal and quality education for all children without discrimination", - "values": [ - "Right to education", - "Rights of the Child" - ] - }, - { - "text": "Sign and ratify the Optional Protocol to the Convention on the Rights of the Child on the involvement of children in armed conflict ", - "values": [ - "International humanitarian law", - "International instruments", - "Rights of the Child" - ] - }, - { - "text": "Continue its efforts to combat racism and xenophobia incidents", - "values": [ - "Racial discrimination" - ] - }, - { - "text": "Ensure that all offences based on discrimination are effectively identified, investigated and prosecuted", - "values": [ - "Other" - ] - }, - { - "text": "Undertake all the necessary legislative and Constitutional reforms to abolish the death penalty and accede to the Second Optional Protocol to the International Covenant on Civil and Political Rights", - "values": [ - "Death penalty", - "International instruments" - ] - }, - { - "text": "Take all necessary measures to ensure the full and sustainable protection of indigenous peoples and peoples of African descent, in terms of both physical security and land rights", - "values": [ - "Indigenous peoples", - "Minorities", - "Right to land" - ] - }, - { - "text": "Respect all United Nations decisions and the withdrawal of Israel from all the occupied Arab and Palestinian Land", - "values": [ - "Other" - ] - }, - { - "text": "Include explicit references to sexual orientation as a protected category against discrimination in the existing laws on labour and employment as well as in the legislation on hate speech and hate crimes.", - "values": [ - "Sexual Orientation and Gender Identity" - ] - }, - { - "text": "Revise remnants of Ben Ali-era legal code that stifle the freedoms of expression, assembly, and religion so as to fully protect those rights in accordance with international human rights law ", - "values": [ - "Freedom of association and peaceful assembly", - "Freedom of opinion and expression", - "Freedom of religion and belief", - "International instruments" - ] - }, - { - "text": "Strengthen measures to prevent and supress all forms of gender violence and include in the penal code the various forms of sexual violence, including marital rape", - "values": [ - "Women's rights" - ] - }, - { - "text": "Ensure a greater involvement of public powers to guarantee the free exercise of freedom of expression and of the media, as these freedoms contribute to accountability in cases of human rights violations", - "values": [ - "Freedom of opinion and expression", - "Freedom of the press" - ] - }, - { - "text": "Implement without delay all the recommendations formulated by the National Commission of Enquiry, established on 2 April 2008, and provide all necessary information on the whereabouts of a former opposition leader.", - "values": [ - "Justice" - ] - }, - { - "text": "Ensure that family reunification takes place without undue delay ", - "values": [ - "Migrants" - ] - }, - { - "text": "Continue developing and strengthening actions aimed at eradicating poverty and public policies aimed at guaranteeing equality of the entire population", - "values": [ - "Poverty" - ] - }, - { - "text": "Impose as soon as possible a moratorium on the death penalty, with the view to its definitive abolition, in line with General Assembly resolution 65/206 ", - "values": [ - "Death penalty" - ] - }, - { - "text": "Strengthen programmes of public awareness of the very serious problem of human trafficking and involve all stakeholders in the work", - "values": [ - "Human rights education and training", - "Trafficking" - ] - }, - { - "text": "Review and repeal all discriminatory provisions that still exist in national legislation to achieve de jure and de facto gender equality ", - "values": [ - "Women's rights" - ] - }, - { - "text": "Ensure that all allegations of unlawful killings, ill treatment or excessive use of force by police forces are investigated and that perpetrators are brought to justice", - "values": [ - "Extrajudicial executions", - "Human rights violations by state agents", - "Torture and other CID treatment" - ] - }, - { - "text": "Strengthen its preventative anti-trafficking measures and continue to provide support services to victims, particularly for women and children", - "values": [ - "Rights of the Child", - "Trafficking", - "Women's rights" - ] - }, - { - "text": "Adhere to the Rome Statute and fully harmonize its national legislation with it", - "values": [ - "International instruments", - "Justice" - ] - }, - { - "text": "Continue the efforts aimed at reducing the burden of tuberculosis in the country", - "values": [ - "Right to health" - ] - }, - { - "text": "Increase efforts in the fight against impunity and corruption, through increasing the financial resources for the judiciary and through the implementation of judicial reforms aimed at fully ensuring the independence of the judiciary", - "values": [ - "Corruption", - "Impunity", - "Justice" - ] - }, - { - "text": "Expedite the creation of a robust mechanism that will implement the 2013 law on domestic violence and its associated Programme for 2014-2023", - "values": [ - "Rights of the Child", - "Women's rights" - ] - }, - { - "text": "Swiftly implement the proposed National System to Prevent and Combat Torture to address concerns over abuse in prisons ", - "values": [ - "Detention", - "Torture and other CID treatment" - ] - }, - { - "text": "Continue efforts to combat trafficking in persons ", - "values": [ - "Trafficking" - ] - }, - { - "text": "Continue to combat discrimination and violence against women.", - "values": [ - "Women's rights" - ] - }, - { - "text": "Ratify the Optional Protocol to ICESCR and the Second Optional Protocol to the ICCPR, aimed at the abolition of the death penalty", - "values": [ - "Death penalty", - "ESC rights - general", - "International instruments" - ] - }, - { - "text": "Accede to Optional Protocol to the Convention on the Rights of Persons with Disabilities", - "values": [ - "Disabilities", - "International instruments" - ] - }, - { - "text": "Defend and protect women from all violence especially women prisoners", - "values": [ - "Detention", - "Women's rights" - ] - }, - { - "text": "Implement and apply legislative as well as other measures that aim at the eradication of harmful tradition practices such as female genital mutilation ", - "values": [ - "Rights of the Child", - "Torture and other CID treatment", - "Women's rights" - ] - }, - { - "text": "Use diplomatic assurances in a manner consistent with the UNHCR Note on Diplomatic Assurance and International Refugee Protection dated August 2006 ", - "values": [ - "Asylum-seekers - refugees", - "Torture and other CID treatment" - ] - }, - { - "text": "Adopt a comprehensive law addressing all forms of violence against women and girls", - "values": [ - "Rights of the Child", - "Women's rights" - ] - }, - { - "text": "Take measures improving the security of citizens and enhancing protection of particularly vulnerable groups such as women and children ", - "values": [ - "Public security", - "Rights of the Child", - "Women's rights" - ] - }, - { - "text": "Launch awareness-raising campaigns aimed at changing the attitude and practices related to ill-treatment and the abuse of children", - "values": [ - "Human rights education and training", - "Rights of the Child", - "Torture and other CID treatment" - ] - }, - { - "text": "Improve the health situation of all children irrespective of status", - "values": [ - "Right to health", - "Rights of the Child" - ] - }, - { - "text": "Further continue its efforts to combat domestic violence and intensify the implementation of the Government Action Plan for Gender Equality", - "values": [ - "Rights of the Child", - "Women's rights" - ] - }, - { - "text": "Step up efforts to improve free medical facilities, reduce high infant mortality rates and high teenage pregnancy rates ", - "values": [ - "Right to health", - "Rights of the Child", - "Women's rights" - ] - }, - { - "text": "Consider positively the establishment of a moratorium to the death penalty with a view to the abolishment of the death penalty", - "values": [ - "Death penalty" - ] - }, - { - "text": "Implement the regulations of the Act of 8 May 2009 on assistance to and the protection and security of victims of human trafficking", - "values": [ - "Trafficking" - ] - }, - { - "text": "Accede to the Agreement on the Privileges and Immunities of the International Criminal Court and incorporate it into its national law ", - "values": [ - "International instruments", - "Justice" - ] - }, - { - "text": "Ensure provision of comprehensive and non-discriminatory health services to women and girls who have experienced sexual violence", - "values": [ - "Rights of the Child", - "Women's rights" - ] - }, - { - "text": "Continue its efforts in harmonizing its Criminal Code, particularly those articles related to torture, in line with the relevant international human rights instruments ", - "values": [ - "International instruments", - "Torture and other CID treatment" - ] - }, - { - "text": "Continue to take measures in promoting women's participation in political affairs ", - "values": [ - "Women's rights" - ] - }, - { - "text": "Continue to incorporate CEDAW principles into its domestic legislation. ", - "values": [ - "International instruments", - "Women's rights" - ] - }, - { - "text": "Continue efforts to eradicate extreme poverty", - "values": [ - "Poverty" - ] - }, - { - "text": "Set up an independent national human rights institution in conformity with the Paris Principles", - "values": [ - "National Human Rights Institution" - ] - }, - { - "text": "Include a gender perspective in the review follow-up process in a systematic and continuous manner.", - "values": [ - "UPR process", - "Women's rights" - ] - }, - { - "text": "Provide adequate resources to enable the Counselling Centre to discharge its mandate more effectively", - "values": [ - "Rights of the Child", - "Women's rights" - ] - }, - { - "text": "Share its experiences of the UPR with other Pacific Island States.", - "values": [ - "UPR process" - ] - }, - { - "text": "Continue strengthening programmes to reduce poverty through the National Initiative for Human Development", - "values": [ - "Poverty" - ] - }, - { - "text": "Protect internationally recognized workers' rights and enforce laws prohibiting forced labour ", - "values": [ - "Labour" - ] - }, - { - "text": "Revise the Bosman act to ensure that all nationals, regardless of their birth place, are not excluded from living and working in the Netherlands", - "values": [ - "Labour", - "Other" - ] - }, - { - "text": "Protect the legitimate rights of foreign workers in Singapore and help them get the necessary vocational training", - "values": [ - "Labour", - "Migrants" - ] - }, - { - "text": "Continue working on the reform and improvement of prisons and detention centres in accordance with international norms on this issue", - "values": [ - "Detention" - ] - }, - { - "text": "Strengthen action to enforce the law on sexual violence against women and girls and continue to provide affordable health and physical services to the victims of sexual violence. ", - "values": [ - "Rights of the Child", - "Women's rights" - ] - }, - { - "text": "Expand its ongoing policies and programmes in order to consolidate the realization of a Bolivia that is plurinational and based on equality and social justice for all", - "values": [ - "General" - ] - }, - { - "text": "Cooperate fully with the Council Working Group on the elimination of discrimination against women in law and in practice ", - "values": [ - "Women's rights" - ] - }, - { - "text": "Develop a national action plan with a view to ensure free and compulsory education ", - "values": [ - "Right to education" - ] - }, - { - "text": "Continue close dialogue with the United Nations human rights mechanisms, and OHCHR.", - "values": [ - "Special procedures", - "Technical assistance and cooperation", - "Treaty bodies", - "UPR process" - ] - }, - { - "text": "Strengthen the system for monitoring international recommendations, by giving the permanent national commission sufficient resources to carry out its mission", - "values": [ - "National Human Rights Institution" - ] - }, - { - "text": "Provide protection for the family as the natural and fundamental unit of society", - "values": [ - "Other" - ] - }, - { - "text": "Encourage initiatives fostering social and inter-community harmony ", - "values": [ - "Other" - ] - }, - { - "text": "Adopt a national action plan on human rights in line with OHCHR guidelines", - "values": [ - "General" - ] - }, - { - "text": "Prioritize the expansion of the successful HIV/AIDS Technical Support Units to all regions which do not have them in place", - "values": [ - "HIV - Aids" - ] - }, - { - "text": "Definitively abolish the death penalty in its domestic legislation ", - "values": [ - "Death penalty" - ] - }, - { - "text": "Repeal or significantly reform laws that may have the effect of unduly restricting freedom of expression and the right to peaceful assembly, which include the Public Order and Security Act, the computer crime and cybercrime bill and police bans on protests", - "values": [ - "Freedom of association and peaceful assembly", - "Freedom of opinion and expression" - ] - }, - { - "text": "Canada remained committed to working to strengthen this dynamic new mechanism as it developed and to improving the protection of human rights for all people across Canada.", - "values": [ - "General" - ] - }, - { - "text": "Further introduce effective measures to enhance gender equity in the labour market", - "values": [ - "Women's rights" - ] - }, - { - "text": "Ratify the Convention against Torture and Other Cruel, Inhuman or Degrading Treatment or Punishment", - "values": [ - "International instruments", - "Torture and other CID treatment" - ] - }, - { - "text": "Strengthen its national mechanisms and international cooperation to combat trafficking in persons and, particularly, child sex tourism", - "values": [ - "Rights of the Child", - "Trafficking" - ] - }, - { - "text": "Take necessary steps to intensify the judicial prosecution of all cases of alleged torture and violence committed by members of the armed forces ", - "values": [ - "Human rights violations by state agents", - "Torture and other CID treatment" - ] - }, - { - "text": "Strengthen measures to combat the phenomenon of FGM", - "values": [ - "Rights of the Child", - "Torture and other CID treatment", - "Women's rights" - ] - }, - { - "text": "Continue pursuing appropriate awareness raising campaigns aimed at eliminating traditional patriarchal attitudes and stereotypes regarding the roles and responsibilities of women and men in society", - "values": [ - "Human rights education and training", - "Women's rights" - ] - }, - { - "text": "Revise the mandate of the Parliamentary Ombudsman to enable it to address racial discrimination in the private sphere and not just racial discrimination involving the government and State entities", - "values": [ - "National Human Rights Institution", - "Racial discrimination" - ] - }, - { - "text": "Continue the reforms already accomplished by withdrawing the reservation to article 22 of the Convention against Torture", - "values": [ - "International instruments", - "Torture and other CID treatment" - ] - }, - { - "text": "End impunity through a credible investigation by the special judicial commission and try those responsible for human rights violations", - "values": [ - "Justice" - ] - }, - { - "text": "Speed up the ratification process of the International Convention on the Protection of the Rights of All Migrant Workers and Members of Their Families", - "values": [ - "International instruments", - "Labour", - "Migrants" - ] - }, - { - "text": "Increase the age of criminal responsibility and the minimum age for marriage so that they comply with international standards.", - "values": [ - "Rights of the Child" - ] - }, - { - "text": "Continue to strengthen its programmes and policies in the area of economic, social and cultural rights, in order to increase the quality of life of its people, in particular the most vulnerable sectors of the population", - "values": [ - "ESC rights - general" - ] - }, - { - "text": "Strengthen efforts to empower women by amending legislation that discriminates against women in matters of polygamy, inheritance and child custody, and put legislation in place regarding domestic violence, rape, including marital rape, and other forms of sexual and gender-based violence", - "values": [ - "Women's rights" - ] - }, - { - "text": "Establish a Human Rights Inter-Institutional Body to allow better coordination and articulation of policies, plans and programmes from the Executive Branch aimed at improving the mechanisms for promotion and protection of human rights ", - "values": [ - "Other" - ] - }, - { - "text": "Continue its efforts to end sexual abuse and sexual exploitation of children, in particular of unaccompanied asylum-seeking children ", - "values": [ - "Asylum-seekers - refugees", - "Rights of the Child" - ] - }, - { - "text": "Consider ratifying the International Convention for the Protection of All Persons from Enforced Disappearances", - "values": [ - "Enforced disappearances", - "International instruments" - ] - }, - { - "text": "Recommend that the international community help Cote d'Ivoire in its firm will to fight crime, sexual violence and trafficking of children through the establishment of adequate mechanisms in line with international standards ", - "values": [ - "Rights of the Child", - "Technical assistance and cooperation" - ] - }, - { - "text": "Decriminalize defamation and place it under the Civil Code", - "values": [ - "Freedom of opinion and expression" - ] - }, - { - "text": "Adopt and implement a national legislation with the view to provide public access to information, including governmental information", - "values": [ - "Freedom of opinion and expression" - ] - }, - { - "text": "Provide pupils with disabilities with adequate equipment and tools ", - "values": [ - "Disabilities", - "Rights of the Child" - ] - }, - { - "text": "Ensure that there are no restrictions on freedom of expression especially for the media and human rights defenders, and that no one faces threats and harassment, including attitude adjustment, for expressing their views and that all legislation affecting freedom of expression is compatible and implemented in line with Thailand's international obligations as recommended by the Special Rapporteur on human rights defenders in 2016", - "values": [ - "Freedom of opinion and expression", - "Freedom of the press", - "Human rights defenders", - "Special procedures" - ] - }, - { - "text": "Continue with its programmes for improving the living standards of its citizens, including indigenous peoples, Afro-Ecuadorians and Montubios", - "values": [ - "Development", - "Indigenous peoples", - "Minorities" - ] - }, - { - "text": "Ratify the UN Convention against Corruption and the International Convention on the Protection of the Rights of All Migrant Workers and Members of Their Families", - "values": [ - "International instruments", - "Labour", - "Migrants" - ] - }, - { - "text": "Submit all overdue reports to treaty bodies as soon as possible", - "values": [ - "Treaty bodies" - ] - }, - { - "text": "Consider ratifying the Convention on the Rights of Persons with Disabilities as well as the Optional Protocol to the Convention on the Rights of the Child on the involvement of children in armed conflict ", - "values": [ - "Disabilities", - "International humanitarian law", - "International instruments", - "Rights of the Child" - ] - }, - { - "text": "Strengthen programmes for the reintegration of victims of trafficking in society", - "values": [ - "Trafficking" - ] - }, - { - "text": "Study the possibility of becoming a party to the following international instrument: CRPD ", - "values": [ - "Disabilities", - "International instruments" - ] - }, - { - "text": "Respect international minimum standards on the death penalty, if the Republic of Korea will maintain it", - "values": [ - "Death penalty" - ] - }, - { - "text": "Ratify the European Charter for Regional or Minority Languages", - "values": [ - "International instruments", - "Minorities" - ] - }, - { - "text": "Consider favourably the request of the Special Rapporteur on the right to education and to allow the SR to visit the country.", - "values": [ - "Right to education", - "Special procedures" - ] - }, - { - "text": "Strengthen its institutional mechanisms for the promotion and efficient protection of human rights by implementing the various international conventions to which it is party and call upon the international community to back it in this endeavour.", - "values": [ - "International instruments" - ] - }, - { - "text": "Continue the measures aimed at achieving the elimination of existing patriarchal and gender stereotypes, with respect to the roles and responsibilities of men and women in the family and society", - "values": [ - "Women's rights" - ] - }, - { - "text": "Adopt a law to protect vulnerable women, particularly low-income housewives", - "values": [ - "Women's rights" - ] - }, - { - "text": "Continue to ensure better protection of the rights of all citizens through the implementation of the national action plans recently adopted, in particular those relating the strengthening of the strategic framework for combating poverty", - "values": [ - "Poverty" - ] - }, - { - "text": "Continue building its national capacities and implement its priorities as they were specified in its national report", - "values": [ - "Other" - ] - }, - { - "text": "Continue the promotion of measures to disarm and dismantle private armed groups as well as to impede the utilization of child soldiers ", - "values": [ - "International humanitarian law", - "Public security", - "Rights of the Child" - ] - }, - { - "text": "Boost the cooperation with the International Criminal Court with the objective to accede to the Rome Statute of the International Criminal Court", - "values": [ - "International instruments", - "Justice" - ] - }, - { - "text": "Consider the prompt ratification of ILO Convention No. 169 as a means of completing the recognition of the rights of indigenous peoples.", - "values": [ - "Indigenous peoples", - "International instruments" - ] - }, - { - "text": "Introduce a domestic violence bill, improve data collection on domestic violence and strengthen support services, including shelters and legal aid, for victims", - "values": [ - "Rights of the Child", - "Women's rights" - ] - }, - { - "text": "Maintain its priority to end impunity for perpetrators of all forms of acts of violence against women, whatever their social condition. give more information on progress to prevent such violations", - "values": [ - "Impunity", - "Women's rights" - ] - }, - { - "text": "Implement fully the National Action Plan for the Elimination of Child Labour", - "values": [ - "Labour", - "Rights of the Child" - ] - }, - { - "text": "Move forward on mainstreaming gender issues into all Government plans and policies", - "values": [ - "Women's rights" - ] - }, - { - "text": "Continue peace talks among the people to avoid ethnic and religious conflicts and scale up national reconciliation process in the country", - "values": [ - "Freedom of religion and belief", - "Justice", - "Minorities" - ] - }, - { - "text": "Approve the request for a visit by the Special Rapporteur on the independence of judges and lawyers ", - "values": [ - "Justice", - "Special procedures" - ] - }, - { - "text": "Strengthen efforts to consolidate the independence of the judiciary and to speed up implementation of measures aimed at reducing the backlog of cases before domestic courts", - "values": [ - "Justice" - ] - }, - { - "text": "Speed up the process to develop its National Action Plan against Racism, Racial Discrimination, Xenophobia and Related Intolerance ", - "values": [ - "Racial discrimination" - ] - }, - { - "text": "Continue to exercise its sovereign right of implementing its laws and legislation in conformity with the universally agreed human rights standards and norms, and further resist any attempts to enforce values and principles alien to those that are internationally agreed ", - "values": [ - "General" - ] - }, - { - "text": "Ensure that the procedure to request and recognize refugee status be in compliance with the 1951 Convention relating to the Status of Refugees and its 1967 Protocol", - "values": [ - "Asylum-seekers - refugees", - "International instruments" - ] - }, - { - "text": "Strengthen reforms to ensure access to justice for all", - "values": [ - "Justice" - ] - }, - { - "text": "Continue its efforts to eliminate discrimination against women", - "values": [ - "Women's rights" - ] - }, - { - "text": "Develop and adopt suitable legislative and administrative measures to combat discrimination against women, and discrimination and violence against LGBTI persons", - "values": [ - "Sexual Orientation and Gender Identity", - "Women's rights" - ] - }, - { - "text": "Combat violence and discrimination against lesbian, gay, bisexual, transgender and intersex persons", - "values": [ - "Sexual Orientation and Gender Identity" - ] - }, - { - "text": "Increase efforts and adopt all the necessary measures for the fight against discrimination in all its forms, particularly against minorities, and among them the most vulnerable children and women", - "values": [ - "Minorities", - "Racial discrimination", - "Rights of the Child", - "Women's rights" - ] - }, - { - "text": "Ratify the International Convention on the Protection of All Persons from Enforced Disappearance", - "values": [ - "Enforced disappearances", - "International instruments" - ] - }, - { - "text": "Continue taking measures aimed at closing the gender gap", - "values": [ - "Women's rights" - ] - }, - { - "text": "Implement various recommendations made by treaty bodies and special procedures to ensure that security measures adopted in the context of armed violence including the state of emergency the 2005 emergency laws and measures to combat terrorism comply with international human rights law.", - "values": [ - "Counter-terrorism", - "International instruments", - "Special procedures", - "Treaty bodies" - ] - }, - { - "text": "Adopt and implement robust measures aimed at addressing human trafficking ", - "values": [ - "Trafficking" - ] - }, - { - "text": "Abolish the death penalty as soon as possible, and, in the meantime, establish an immediate moratorium on executions ", - "values": [ - "Death penalty" - ] - }, - { - "text": "Extend measures to improve the living conditions of juveniles in detention in place in Anjouan and in facilities of Moroni and Fomboni, as well as put in place childcare facilities for victims of child abuse ", - "values": [ - "Detention", - "Indigenous peoples", - "Justice", - "Rights of the Child" - ] - }, - { - "text": "Establish a National Human Rights Institution accredited with the International Coordinating Committee of the National Human Rights Institutions ", - "values": [ - "National Human Rights Institution" - ] - }, - { - "text": "Ratify ICCPR and OP-CAT", - "values": [ - "CP rights - general", - "Detention", - "International instruments", - "Torture and other CID treatment" - ] - }, - { - "text": "Release Alan Gross and imprisoned journalists such as Jose Antonio Torres immediately", - "values": [ - "Detention", - "Freedom of the press" - ] - }, - { - "text": "Proceed with the ratification of the Optional Protocol to the International Covenant on Economic, Social and Cultural Rights and the Optional Protocol to the Convention on the Rights of the Child on a communications procedure ", - "values": [ - "ESC rights - general", - "International instruments", - "Rights of the Child" - ] - }, - { - "text": "Consider the development of a comprehensive policy to address the problem of human rights violations against its defenders founded on strategies for strengthening the independence of the judiciary and increasing the awareness of the population and public authorities as to the important role of these defenders ", - "values": [ - "Human rights defenders", - "Justice" - ] - }, - { - "text": "Cooperate with the United Nations with a view to ensuring the return of all refugees and internally displaced persons to their regions", - "values": [ - "Asylum-seekers - refugees", - "Internally displaced persons", - "Technical assistance and cooperation" - ] - }, - { - "text": "Adopt the necessary legal measures to ensure that the death penalty is not a applied as a sentence in judgments and consider acceding to the Second Optional Protocol to the International Covenant on Civil and Political Rights", - "values": [ - "Death penalty", - "International instruments" - ] - }, - { - "text": "Include human rights education in school curricular", - "values": [ - "Human rights education and training" - ] - }, - { - "text": "Develop and implement national legislation explicitly prohibiting female genital mutilation and ensure its practical enforcement. Enhance school programmes and community education to raise public awareness about the harmful effects of this practice which constitutes a serious form of violence against women and a serious attack on human rights ", - "values": [ - "Human rights education and training", - "Rights of the Child", - "Torture and other CID treatment", - "Women's rights" - ] - }, - { - "text": "Continue its endeavour to increase the national general budget for education, in order to guarantee the right to quality education for children ", - "values": [ - "Right to education", - "Rights of the Child" - ] - }, - { - "text": "Issue a standing invitation for UN human rights special procedures and accept all requested visits by mandate holders", - "values": [ - "Special procedures" - ] - }, - { - "text": "Continue its efforts to strengthen the National Human Rights Commission, in line with the Paris Principles and with full participation of the civil society", - "values": [ - "Civil society", - "National Human Rights Institution" - ] - }, - { - "text": "Accept a visit by the Special Rapporteur on the situation of human rights defenders and the Special Rapporteur on extrajudicial, summary or arbitrary executions ", - "values": [ - "Extrajudicial executions", - "Special procedures" - ] - }, - { - "text": "Take further steps to increase the budget for public education and continue to improve school facilities for children", - "values": [ - "Right to education", - "Rights of the Child" - ] - }, - { - "text": "Continue efforts to ensure the safety, security and dignity of migrant workers, including women domestic workers, and protection of their interests through requisite institutional and legislative measures", - "values": [ - "Labour", - "Migrants", - "Women's rights" - ] - }, - { - "text": "Continue to take steps to improve the penitentiary system ", - "values": [ - "Detention" - ] - }, - { - "text": "Do more to fight discrimination against Liberian women by allowing them to transmit their nationalities to their children and their spouses", - "values": [ - "Women's rights" - ] - }, - { - "text": "Continue educational reform and the restructuring of the educational system, particularly paying attention towards raising awareness and education on human rights ", - "values": [ - "Human rights education and training", - "Right to education" - ] - }, - { - "text": "Strengthen its policy and programmatic measures aimed at addressing the big challenges of inequality, poverty and unemployment", - "values": [ - "Development", - "Poverty" - ] - }, - { - "text": "Increase the age of criminal responsibility to match international standards", - "values": [ - "Justice", - "Rights of the Child" - ] - }, - { - "text": "Implement with urgency its national strategy against sexual violence, and establish a mechanism to monitor the implementation of this strategy in consultation with civil society.", - "values": [ - "Civil society", - "Rights of the Child", - "Women's rights" - ] - }, - { - "text": "Continue the efforts to strengthen the national legal framework for human rights", - "values": [ - "General" - ] - }, - { - "text": "Extend a standing invitation to all mandate holders of the Human Rights Council ", - "values": [ - "Special procedures" - ] - }, - { - "text": "Accelerate the process towards the ratification of International Convention on the Protection of the Rights of All Migrant Workers and Members of their Families and the Optional Protocol to the International Covenant on Economic, Social and Cultural Rights", - "values": [ - "ESC rights - general", - "International instruments", - "Labour", - "Migrants" - ] - }, - { - "text": "Ensure prompt, thorough and impartial investigations into all cases of suspected extrajudicial executions and other use of force ", - "values": [ - "Extrajudicial executions" - ] - }, - { - "text": "Take measures to reduce the detention time for foreigners under expulsion order as much as possible ", - "values": [ - "Detention", - "Migrants" - ] - }, - { - "text": "Take additional steps to ensure that same-sex couples are not discriminated against.", - "values": [ - "Sexual Orientation and Gender Identity" - ] - }, - { - "text": "That steps be taken to abolish the lese-majesty legislation and the 2007 Computer Crimes Act, and the immediate implementation of public and transparent proceedings in cases concerning these laws", - "values": [ - "Freedom of opinion and expression" - ] - }, - { - "text": "Continue its effective policy to ensure the rights of persons with disabilities through instruments that are in line with international treaties, as well as the development and implementation of programmes at the national level ", - "values": [ - "Disabilities", - "International instruments" - ] - }, - { - "text": "Allow the National Human Rights Commission to fully exercise its functions, in line with the Paris Principles", - "values": [ - "National Human Rights Institution" - ] - }, - { - "text": "Intensify the initiatives aimed at both preventing child and women trafficking, child labour, forced prostitution, and facilitating the social reintegration of the victims", - "values": [ - "Labour", - "Rights of the Child", - "Trafficking", - "Women's rights" - ] - }, - { - "text": "Continue efforts to find peaceful solutions to any issues pertaining to the protection of human rights in the country, including through inclusive dialogues involving relevant civil societies", - "values": [ - "Civil society" - ] - }, - { - "text": "Extend an open invitation to the Special Procedures ", - "values": [ - "Special procedures" - ] - }, - { - "text": "Enhance efforts to ensure compliance with international standards as set out in the Manual on the Effective Investigation and Documentation of Torture and Other Cruel, Inhuman or Degrading Treatment or Punishment", - "values": [ - "Torture and other CID treatment" - ] - }, - { - "text": "Continue increasing the rate of women in the workforce in the civil service sector and further enabling women in the labour area", - "values": [ - "Labour", - "Women's rights" - ] - }, - { - "text": "Eliminate legislative provisions that are discriminatory against women, children born out of wedlock, ethnic or national minorities, and lesbian, gay, bisexual, transgender or intersex persons, with a view to expressly prohibiting hate speech and penalizing any non-consensual sexual conduct", - "values": [ - "Minorities", - "Racial discrimination", - "Rights of the Child", - "Sexual Orientation and Gender Identity", - "Women's rights" - ] - }, - { - "text": "Promptly ratify and implement the human rights conventions signed in September 2013", - "values": [ - "International instruments" - ] - }, - { - "text": "Take measures to prevent violence and discrimination against persons on the basis of their sexual orientation and gender identity", - "values": [ - "Sexual Orientation and Gender Identity" - ] - }, - { - "text": "Continue to promote sustainable social and economic development so as to further reduce incidence of poverty and improve living standards of people ", - "values": [ - "Development", - "Poverty" - ] - }, - { - "text": "Develop the necessary tools to ensure education and human rights training, notably for law enforcement officials ", - "values": [ - "Human rights education and training" - ] - }, - { - "text": "Act on its prior commitment and align its legislation with international standards on freedom of expression by abolishing all legal provisions criminalizing defamation and libel", - "values": [ - "Freedom of opinion and expression" - ] - }, - { - "text": "Strengthen its efforts to combat the trafficking in and sexual exploitation of women and girls, especially in rural areas, by adopting a comprehensive action plan to address trafficking and sexual exploitation, and to ensure the allocation of human and financial resources for its implementation", - "values": [ - "Rights of the Child", - "Trafficking", - "Women's rights" - ] - }, - { - "text": "Implement a comprehensive assistance programme for children living on the streets, ensuring that they have access to sanitation, education and social security", - "values": [ - "ESC rights - general", - "Right to education", - "Right to water and sanitation", - "Rights of the Child" - ] - }, - { - "text": "Ratify and fully align its national legislation with the Rome Statute of the ICC", - "values": [ - "International instruments", - "Justice" - ] - }, - { - "text": "Continue the constructive cooperation with all human rights mechanisms in order to promote human rights in the country ", - "values": [ - "Special procedures", - "Treaty bodies" - ] - }, - { - "text": "Call on Djibouti to request the international community for capacity-building and technical assistance in the area of human rights ", - "values": [ - "Technical assistance and cooperation" - ] - }, - { - "text": "Ratify the international conventions and protocols on human rights in order to enable its people to enjoy all their rights", - "values": [ - "International instruments" - ] - }, - { - "text": "Deploy further efforts in order to fully involve indigenous peoples in decisions and policies affecting their rights, including those regarding the territories where they live ", - "values": [ - "Indigenous peoples", - "Right to land" - ] - }, - { - "text": "Immediately decriminalize homosexuality and amend legislation to promote and protect human rights for all individuals, regardless of race, ethnic origin, religion, personal beliefs and opinions, disability, age, gender and sexual orientation, in accordance with the Gambia's obligations, including as a signatory to the African Charter on Human and Peoples' rights", - "values": [ - "Sexual Orientation and Gender Identity" - ] - }, - { - "text": "Increase the minimum age for voluntary recruitment into the armed forces to 18 years, and criminalize explicitly the violation of the provisions of the Optional Protocol to the Convention on the Rights of the Child on the involvement of children in armed conflict", - "values": [ - "International humanitarian law", - "International instruments", - "Rights of the Child" - ] - }, - { - "text": "Continue incorporating effective forms of participation of its citizens in the process of decision-making, specially through the mechanisms of a representative, direct and community democracy aiming at the development of the country in all issues of public interest with a special emphasis on the needs of persons that require priority attention", - "values": [ - "Other" - ] - }, - { - "text": "Ensure that asylum seekers are not imprisoned with regular offenders and that their treatment is reasonable and proportionate to individual cases and circumstances", - "values": [ - "Asylum-seekers - refugees", - "Detention" - ] - }, - { - "text": "Limit the cases in which restrictions to free movement are applied to situations that require guaranteeing its security, in accordance with international law, In particular with the International Covenant on Civil and Political Rights, non-discriminative and proportionate to the desired aim.", - "values": [ - "CP rights - general", - "Freedom of movement", - "International instruments" - ] - }, - { - "text": "Revise building codes to improve disabled access to public buildings ", - "values": [ - "Disabilities" - ] - }, - { - "text": "Introduce legislation that will decriminalize sexual relations between consenting adults of the same sex", - "values": [ - "Sexual Orientation and Gender Identity" - ] - }, - { - "text": "Ratify the Third Optional Protocol to the Convention on the Rights of the Child ", - "values": [ - "International instruments", - "Rights of the Child" - ] - }, - { - "text": "Fully align its national legislation with the Rome Statute, through the incorporation of provisions to fully and promptly cooperate with the International Criminal Court ", - "values": [ - "International instruments", - "Justice" - ] - }, - { - "text": "Implement further policies to ensure gender equality throughout society and the promotion of the rights of women and children ", - "values": [ - "Rights of the Child", - "Women's rights" - ] - }, - { - "text": "Strengthen awareness-raising campaigns aimed at preventing human trafficking, and increase the protection provided to victims, notably children and newborns, including those of Roma origin, in line with the recommendations of the Committee on the Rights of the Child", - "values": [ - "Human rights education and training", - "Minorities", - "Rights of the Child", - "Trafficking", - "Treaty bodies" - ] - }, - { - "text": "Strengthen relevant legislations and administrative measures to ensure transparency and non-impunity in the judicial process on all alleged enforced disappearance cases including investigation , prosecution and reparation , which would help contribute towards its national reconciliation", - "values": [ - "Enforced disappearances", - "Impunity", - "Justice" - ] - }, - { - "text": "The parties concerned should promote dialogue and cooperation, with regard to the outcome of the last year's general elections, in order to swiftly normalize the situation and to realize election reform ", - "values": [ - "Elections" - ] - }, - { - "text": "Contribute to the effective investigation, prosecution and punishment of incitement to hatred and hate speech ", - "values": [ - "Racial discrimination" - ] - }, - { - "text": "Ratify the Convention on the Reduction of Statelessness and incorporate its provisions into national law", - "values": [ - "International instruments", - "Statelessness and the right to nationality" - ] - }, - { - "text": "Further improve access by persons with disabilities to education through the implementation of the National Strategy for the Disabled", - "values": [ - "Disabilities", - "Right to education" - ] - }, - { - "text": "A gender perspective be included in the planning of the next stages, including the outcome of the review.", - "values": [ - "UPR process", - "Women's rights" - ] - }, - { - "text": "Follow the provisions of articles 2 and 25 of ICCPR and articles 6, 12 and 13 of ICESCR.", - "values": [ - "CP rights - general", - "ESC rights - general", - "International instruments" - ] - }, - { - "text": "Continue and strengthen current efforts to increase the accessibility and quality of health services and education for all its citizens ", - "values": [ - "Right to education", - "Right to health" - ] - }, - { - "text": "Increase efforts to improve the protection of the rights of children with disabilities and their social inclusion in the education system, also by modernizing centres for social work and providing them with adequate human and financial resources ", - "values": [ - "Disabilities", - "Rights of the Child" - ] - }, - { - "text": "Strengthen the strategic planning process initiated in its human rights national plan (2007-2031)", - "values": [ - "General" - ] - }, - { - "text": "Continue to make efforts to ensure that children with disabilities and those without parents fully enjoy their right to health, education and other social and cultural rights", - "values": [ - "Disabilities", - "ESC rights - general", - "Right to education", - "Right to health", - "Rights of the Child" - ] - }, - { - "text": "Take measures to address the low levels of representation of women in public and political life and in decision-making ", - "values": [ - "Women's rights" - ] - }, - { - "text": "Enhance its interaction with human rights organizations, as well as continue working on mechanisms of consultation between the Government and civil society, including enabling more effective involvement of civil society in the preparation of legal acts", - "values": [ - "Civil society" - ] - }, - { - "text": "Allow for greater humanitarian access to the Ogaden so that organizations such as the International Committee of the Red Cross and United Nations relief agencies can provide assistance to victims of conflict ", - "values": [ - "International humanitarian law" - ] - }, - { - "text": "Adopt all necessary measures to combat the phenomenon of child sex tourism, including by consistently prosecuting offenders on their return for the crimes committed abroad ", - "values": [ - "Rights of the Child" - ] - }, - { - "text": "Improved transparency of the clemency process in death penalty cases by making public the reasons behind decisions and providing a timetable for hearings", - "values": [ - "Death penalty" - ] - }, - { - "text": "Continue with its education policy to ensure that children, and particularly girls, get a quality education that promotes equality and non-discrimination ", - "values": [ - "Right to education", - "Rights of the Child", - "Women's rights" - ] - }, - { - "text": "Revoke the current sponsorship system, kafala, and replace it with regulations in accordance with international standards ", - "values": [ - "Labour" - ] - }, - { - "text": "Establish courts for juveniles in conflict with the law.", - "values": [ - "Justice", - "Rights of the Child" - ] - }, - { - "text": "Take necessary steps to ensure that all children exposed to sexual exploitation receive protection and assistance", - "values": [ - "Rights of the Child" - ] - }, - { - "text": "Strengthen efforts to tackle gender-based violence by introducing specific measures to encourage more reporting by the public, increased transparency, and increased investigations, prosecutions, convictions and sentences, to deter offenders", - "values": [ - "Women's rights" - ] - }, - { - "text": "Combat the exploitation of and violence against children", - "values": [ - "Rights of the Child", - "Trafficking" - ] - }, - { - "text": "Pursue its efforts to combat discrimination against Roma ", - "values": [ - "Minorities", - "Racial discrimination" - ] - }, - { - "text": "Adopt the necessary measures to achieve equality between men and women in all the areas of the socioeconomic life, and access to the necessary resources to that end", - "values": [ - "Women's rights" - ] - }, - { - "text": "Approve and implement as soon as possible the National Action Plan 2010-2014 to combat domestic violence ", - "values": [ - "Rights of the Child", - "Women's rights" - ] - }, - { - "text": "Continue to pursue the ratification of International Convention on the Elimination of All Forms of Discrimination against Women including the Convention on Migrant Workers", - "values": [ - "International instruments", - "Labour", - "Migrants", - "Women's rights" - ] - }, - { - "text": "Give adequate attention to the improvement of the cooperation between penitentiary and judicial bodies.", - "values": [ - "Justice" - ] - }, - { - "text": "Consider the request put forward by the Federal Council for Children, Adolescent and the Family to adjust the provincial procedural legislation for the establishment of non-custodial measures", - "values": [ - "Detention", - "Rights of the Child" - ] - }, - { - "text": "Seek technical assistance with a view to strengthening its appreciable efforts in the area of human rights ", - "values": [ - "Technical assistance and cooperation" - ] - }, - { - "text": "Continue ensuring that unaccompanied migrant children entering South Africa are kept in child and youth care centres and treated as children in need of care and protection", - "values": [ - "Migrants", - "Rights of the Child" - ] - }, - { - "text": "Set up the Human Rights Commission, which was created in 2013", - "values": [ - "National Human Rights Institution" - ] - }, - { - "text": "Establish a strategy to reduce children\u2019s school dropout", - "values": [ - "Right to education", - "Rights of the Child" - ] - }, - { - "text": "Implement measures to reduce and eliminate child, early and forced marriage, including by addressing factors leading to high school drop-out rates among Roma children", - "values": [ - "Minorities", - "Right to education", - "Rights of the Child", - "Women's rights" - ] - }, - { - "text": "Amend the relevant legislation with a view to abolishing capital punishment, in line with General Assembly resolutions 62-149 and 63-168 and the Second Optional Protocol to the International Covenant on Civil and Political Rights, and commute existing death sentences to terms of imprisonment ", - "values": [ - "Death penalty", - "International instruments" - ] - }, - { - "text": "Continue working to eradicate the dissemination of stereotypes that may encourage racial discrimination", - "values": [ - "Racial discrimination" - ] - }, - { - "text": "Conclude the process of revision of its Constitution and national legislation so as to guarantee that they are compatible with regional and international human rights instruments to which the country is a State party", - "values": [ - "International instruments" - ] - }, - { - "text": "Continue to work towards reducing the number of crimes subject to the death penalty ", - "values": [ - "Death penalty" - ] - }, - { - "text": "Further strengthen its national legislation to combat trafficking in persons", - "values": [ - "Trafficking" - ] - }, - { - "text": "Consider its accession to the Convention against Torture and Other Cruel, Inhuman or Degrading Treatment or Punishment", - "values": [ - "International instruments", - "Torture and other CID treatment" - ] - }, - { - "text": "Continue efforts to prevent internal trafficking and trafficking from the country to other countries, in accordance with the recommendation of the Special Rapporteur on the trafficking in persons, especially women and children", - "values": [ - "Rights of the Child", - "Special procedures", - "Trafficking", - "Women's rights" - ] - }, - { - "text": "Revise the legal provisions on mandatory detention of migrants and asylum seekers included in the category of irregular entries, in accordance with the recommendation of the Committee on the Elimination of Racial Discrimination (Committee on CERD) ", - "values": [ - "Asylum-seekers - refugees", - "Detention", - "Migrants", - "Treaty bodies" - ] - }, - { - "text": "Ratify the Rome Statute and Agreement on the Privileges and Immunities of the International Criminal Court", - "values": [ - "International instruments", - "Justice" - ] - }, - { - "text": "Adopt measures to put an end to harmful practices, such as early and forced marriages and genital mutilation, in line with the 2030 Agenda for Sustainable Development", - "values": [ - "Development", - "Rights of the Child", - "Torture and other CID treatment", - "Women's rights" - ] - }, - { - "text": "Take all necessary measures to safeguard the full enjoyment of human rights by women and girls, including by combating sexual and gender-based violence", - "values": [ - "Rights of the Child", - "Women's rights" - ] - }, - { - "text": "Take legislative measures to continue to guarantee rights and equal treatment for the indigenous people in order to ensure national cohesion and social harmony", - "values": [ - "Indigenous peoples" - ] - }, - { - "text": "Develop a comprehensive national plan for human rights which will permit the fulfilment of the obligations arising from the international instruments to which Portugal is a party ", - "values": [ - "International instruments" - ] - }, - { - "text": "Continue consolidating its social policies towards the achievement of decent employment, quality basic education and a healthy life with food security for all its people ", - "values": [ - "Labour", - "Right to food" - ] - }, - { - "text": "Continue reinforcing its efforts to protect children's rights", - "values": [ - "Rights of the Child" - ] - }, - { - "text": "Continue its efforts to draft and adopt its Children's Code, in accordance with its national human rights agenda", - "values": [ - "Rights of the Child" - ] - }, - { - "text": "Address fully the recommendations of the Truth and Reconciliation Commission and to do so to at a published timetable", - "values": [ - "Justice" - ] - }, - { - "text": "Continue to support training programs for the police ", - "values": [ - "Justice" - ] - }, - { - "text": "Promote the consolidation of the role of women with disabilities, without prejudice and stereotypes ", - "values": [ - "Disabilities", - "Women's rights" - ] - }, - { - "text": "Pursue its efforts in the area of economic development, and do not hesitate to ask for technical and material assistance in this regard ", - "values": [ - "Development", - "Technical assistance and cooperation" - ] - }, - { - "text": "Take appropriate measures to ensure that civil society, especially human rights defenders, may operate in a safe and enabling environment free from reprisals and to remove restrictions impeding their work, both in law and in practice, including by guaranteeing the rights to freedom of expression, association and assembly in accordance with international human rights standards ", - "values": [ - "Civil society", - "Freedom of association and peaceful assembly", - "Freedom of opinion and expression", - "Human rights defenders", - "International instruments" - ] - }, - { - "text": "Continue efforts to provide full access to basic medical services and education and to protect children from the worst forms of child labour", - "values": [ - "Labour", - "Right to education", - "Right to health", - "Rights of the Child" - ] - }, - { - "text": "Continue to play an effective and positive role at the regional and international levels ", - "values": [ - "Other" - ] - }, - { - "text": "Reconsider its position and abolish the death penalty, if necessary by initially establishing a moratorium on executions, which would be in line with General Assembly resolution 63-168, on the moratorium on the use of the death penalty ", - "values": [ - "Death penalty" - ] - }, - { - "text": "Sign and ratify OP-CAT and establish a national mechanism to prevent torture, independent of the authorities ", - "values": [ - "Detention", - "International instruments", - "Torture and other CID treatment" - ] - }, - { - "text": "Engage with civil society organisations representing lesbian, gay, bisexual, transgender and intersex persons to implement education on human rights and anti-discrimination awareness-raising programmes ", - "values": [ - "Human rights education and training", - "Sexual Orientation and Gender Identity" - ] - }, - { - "text": "Ratify the International Covenant on Civil and Political Rights and the Convention against Torture and Other Cruel, Inhuman or Degrading Treatment or Punishment ", - "values": [ - "CP rights - general", - "International instruments", - "Torture and other CID treatment" - ] - }, - { - "text": "Implement fully the Fourth 5-Year National Human Rights Action Plan for 2014-2019, to collective ownership of human rights", - "values": [ - "General" - ] - }, - { - "text": "Further strengthen its measures aimed at reduction of poverty and hunger for the welfare of Mexican people", - "values": [ - "Poverty", - "Right to food" - ] - }, - { - "text": "Take steps to tackle the current culture of impunity and ensure that high-level cases of alleged corruption are brought to court and processed appropriately ", - "values": [ - "Corruption", - "Impunity" - ] - }, - { - "text": "Continue its efforts to establish a free and compulsory quality education for children up to the age of 15 years", - "values": [ - "Right to education", - "Rights of the Child" - ] - }, - { - "text": "Consolidate the de facto moratorium on the use of capital punishment with a view to adopting a legal moratorium.", - "values": [ - "Death penalty" - ] - }, - { - "text": "Ensure the compliance of the Paris Principles by the National Human Rights Institution ", - "values": [ - "National Human Rights Institution" - ] - }, - { - "text": "Consider signing and ratifying those international human rights instruments to which it is not yet a party to", - "values": [ - "International instruments" - ] - }, - { - "text": "Fully implement the National Strategy on Gender Equality and Domestic Violence, intended to tackle violence against women ", - "values": [ - "Women's rights" - ] - }, - { - "text": "Provide the national human rights institutions with necessary means so that they can fulfill their mandate and implement their decisions", - "values": [ - "National Human Rights Institution" - ] - }, - { - "text": "Carry out necessary reforms to strengthen the rule of law to prevent political interference in the justice system and to tackle corruption at all levels", - "values": [ - "Corruption", - "Justice" - ] - }, - { - "text": "Ratify the UNESCO Convention against Discrimination in Education ", - "values": [ - "International instruments", - "Right to education" - ] - }, - { - "text": "Establish expressly in the Criminal Code the criminalization of enforced disappearances and a ban of its statute of limitations, as well as ratify the International Convention against Enforced Disappearances and recognize the competence of its Committee ", - "values": [ - "Enforced disappearances", - "International instruments", - "Treaty bodies" - ] - }, - { - "text": "Dismantle the "inminban" neighbourhood watches, and citizen registration and denunciation systems", - "values": [ - "Justice" - ] - }, - { - "text": "Fully respect freedom of expression and media pluralism", - "values": [ - "Freedom of opinion and expression", - "Freedom of the press" - ] - }, - { - "text": "Ratify the International Labour Organization Convention 169 concerning Indigenous and Tribal Peoples in Independent Countries", - "values": [ - "Indigenous peoples", - "International instruments" - ] - }, - { - "text": "Ratify OP-CAT and simultaneously strengthen investigations of complaints of this practice", - "values": [ - "Detention", - "International instruments", - "Torture and other CID treatment" - ] - }, - { - "text": "Prepare, in consultation with concerned communities, a national strategy to ensure better integration of the Roma in society ", - "values": [ - "Minorities" - ] - }, - { - "text": "Enhance the level of cooperation with treaty bodies and special procedures mandate holders, which implies submitting overdue national reports, such as in the case of CERD and CESCR, and give consideration to responding to questionnaires and requests for visits of the mandate holders ", - "values": [ - "ESC rights - general", - "Racial discrimination", - "Special procedures", - "Treaty bodies" - ] - }, - { - "text": "Implement the Constitutional Court order of May 2008 in relation to gender-based violence and, in particular, provide human rights protection for women victims of forced displacement, increase measures to prevent sexual violence and take measures to ensure that those who use sexual violence are investigated and punished.", - "values": [ - "Women's rights" - ] - }, - { - "text": "Ensure the full compliance of Kuwaiti legislation with CEDAW and the effective implementation of the rights enshrined in the Convention ", - "values": [ - "International instruments", - "Women's rights" - ] - }, - { - "text": "Strengthen coordination measures to address child labour ", - "values": [ - "Labour", - "Rights of the Child" - ] - }, - { - "text": "Redouble efforts to eliminate FGM and other harmful traditional practices, including through strict enforcement of the legal prohibition and increased awareness-raising of the harmful consequences of such practices", - "values": [ - "Human rights education and training", - "Rights of the Child", - "Torture and other CID treatment", - "Women's rights" - ] - }, - { - "text": "Consider introducing a moratorium on the death penalty, with a view to its abolition, in particular for drug-related offences and other crimes that cannot be labelled as "most serious" ones according to international standards", - "values": [ - "Death penalty" - ] - }, - { - "text": "Sign and ratify the International Covenant on Economic, Social and Cultural Rights", - "values": [ - "ESC rights - general", - "International instruments" - ] - }, - { - "text": "Improve the effectiveness of measures to protect vulnerable children against sexual abuse and protect children with albinism", - "values": [ - "Minorities", - "Rights of the Child" - ] - }, - { - "text": "Continue awareness-raising of the population, in particular women, on human rights and new national institutions, as well as put in place sensitization regarding stereotypes associated to human rights ", - "values": [ - "Human rights education and training", - "Women's rights" - ] - }, - { - "text": "Take the necessary legal measures to protect journalists and investigate all acts of intimidation and violence against journalists", - "values": [ - "Freedom of the press" - ] - }, - { - "text": "Prioritize the development of disaster risk reduction and preparedness strategies which include promotion of forestation", - "values": [ - "Environment" - ] - }, - { - "text": "Expand its policies aimed at creating income-generating opportunities for women, and improve working conditions of women in the private and informal sectors ", - "values": [ - "Women's rights" - ] - }, - { - "text": "Fully respect freedom of expression and association, and allow for unhindered activities by media", - "values": [ - "Freedom of association and peaceful assembly", - "Freedom of opinion and expression", - "Freedom of the press" - ] - }, - { - "text": "Ensure freedom of opinion and expression in line with the international obligations of Lithuania", - "values": [ - "Freedom of opinion and expression" - ] - }, - { - "text": "Take steps to guarantee the effective implementation of the national system to prevent torture, including by encouraging provinces to establish by law independent and adequately resourced local preventive mechanisms in compliance with the requirements of the Optional Protocol to the Convention against Torture and Other Cruel, Inhuman or Degrading Treatment or Punishment", - "values": [ - "International instruments", - "Torture and other CID treatment" - ] - }, - { - "text": "Disarm and dismantle all paramilitary organizations and private militias, or, short of a complete dismantling, ensure that the army exercises control over all militias and that the Minister of National Defence defines their role and puts in place mechanisms so that they are held accountable for their actions ", - "values": [ - "Public security" - ] - }, - { - "text": "Extend education services to rural zones and guarantee access for all persons to a quality education without distinction, including persons belonging to indigenous and Afro-descendant communities, in order to reduce inequality in the country", - "values": [ - "Indigenous peoples", - "Minorities", - "Right to education" - ] - }, - { - "text": "Continue with the positive efforts made in the field of education and share its experience in this area with other countries.", - "values": [ - "Right to education" - ] - }, - { - "text": "Cooperate with the Office of OHCHR in Mauritania and with civil society to conduct a study on nature, incidence and consequences of slavery, and ensure a systematic collection of disaggregated data to measure the progress realised in the application of laws and policies aimed at the eradication of slave-like and discriminatory practices", - "values": [ - "Civil society", - "Technical assistance and cooperation" - ] - }, - { - "text": "Take necessary measures to ensure that corporal punishment is explicitly prohibited by law under all circumstances ", - "values": [ - "Torture and other CID treatment" - ] - }, - { - "text": "Harmonize domestic legislation with Sudan's international obligations in the area of protection of women and children's rights", - "values": [ - "International instruments", - "Rights of the Child", - "Women's rights" - ] - }, - { - "text": "Pursue cooperation with the international human rights mechanisms", - "values": [ - "Technical assistance and cooperation" - ] - }, - { - "text": "Introduce legislation to make marital rape illegal in all circumstances ", - "values": [ - "Rights of the Child", - "Women's rights" - ] - }, - { - "text": "Recognize conscientious objection to military service, and allow conscientious objectors the option to perform an appropriate alternative service of a genuinely civilian character and of a length comparable to that of military service", - "values": [ - "Freedom of religion and belief" - ] - }, - { - "text": "Ensure that women can have access to lawful abortions by creating clear, legally binding regulations for the implementation of the 1993 Family Planning Act", - "values": [ - "Women's rights" - ] - }, - { - "text": "Combat violence against women through effective legislation and law enforcement measures", - "values": [ - "Women's rights" - ] - }, - { - "text": "That a human rights institution at the federal level be considered in order to ensure implementation of human rights in all states", - "values": [ - "National Human Rights Institution" - ] - }, - { - "text": "Continue its efforts by developing and supporting consultative mechanisms whereby children are able to communicate with government agencies", - "values": [ - "Rights of the Child" - ] - }, - { - "text": "Conduct outreach programmes in rural areas in order to ensure that women with disabilities are not discriminated against or socially excluded", - "values": [ - "Disabilities", - "Women's rights" - ] - }, - { - "text": "Accelerate the studies and internal procedures required for the establishment of a national human rights institution in conformity with the Paris Principles, in cooperation with OHCHR", - "values": [ - "National Human Rights Institution", - "Technical assistance and cooperation" - ] - }, - { - "text": "Include more effective methods for the increase of food production, continue to make efforts for increased production of medical supplies and facilities", - "values": [ - "Right to food", - "Right to health" - ] - }, - { - "text": "My country's delegation welcomes the way in which Bahrain has managed the regrettable events of February and March 2011. We would ask Bahrain to ensure that there is follow-up of the recommendations of the BICI ", - "values": [ - "Justice" - ] - }, - { - "text": "Continue with its efforts to combat racism, racial discrimination, xenophobia, as well as set up mechanisms to prosecute perpetrators of racist acts ", - "values": [ - "Racial discrimination" - ] - }, - { - "text": "Perseverate in its efforts to ensure that the population fully exercise and enjoy its political, civil, economic, social and cultural rights", - "values": [ - "CP rights - general", - "ESC rights - general" - ] - }, - { - "text": "Create a system of juvenile justice in line with international standards", - "values": [ - "Justice", - "Rights of the Child" - ] - }, - { - "text": "Take more proactive measures to identify and look after victims of human sex trafficking, especially by ratifying the Palermo Protocol", - "values": [ - "International instruments", - "Trafficking" - ] - }, - { - "text": "Repeal and amend legislation that infringes on the right to freedom of expression in line with the international obligations and Constitution of Zimbabwe, such as the Criminal Law (Codification and Reform) Act and the Public Order and Security Act ", - "values": [ - "Freedom of opinion and expression" - ] - }, - { - "text": "Continue to take steps to prevent and fight corruption to bring about equitable and sustainable growth for its people", - "values": [ - "Corruption" - ] - }, - { - "text": "Fully explore the possibility of establishing an independent national human rights institution in compliance with the Paris Principles ", - "values": [ - "National Human Rights Institution" - ] - }, - { - "text": "Take all necessary measures in order to impose a moratorium on the use of the death penalty, with a view to abolishing it both at the federal and State levels ", - "values": [ - "Death penalty" - ] - }, - { - "text": "Continue its close collaboration with civil society in its follow-up and implementation of UPR recommendations ", - "values": [ - "Civil society", - "UPR process" - ] - }, - { - "text": "Ensure that all those responsible for serious human rights abuses and violations of international humanitarian law are brought to justice in accordance with its international obligations ", - "values": [ - "International humanitarian law" - ] - }, - { - "text": "Take urgent measures to end extra-judicial killings, and enforced disappearances of human rights defenders, to investigate all cases and bring those responsible to justice", - "values": [ - "Enforced disappearances", - "Extrajudicial executions", - "Human rights defenders" - ] - }, - { - "text": "Take further measures to ensure more effective protection of children against abuse or neglect.", - "values": [ - "Rights of the Child" - ] - }, - { - "text": "Take further measures for the improvement of the legal framework in the field of human rights, particularly in the areas of children, women and persons with disabilities ", - "values": [ - "Disabilities", - "Rights of the Child", - "Women's rights" - ] - }, - { - "text": "With international assistance, intensify efforts against the spread of HIV/AIDS in the country, with increased attention to prevention and care for affected children ", - "values": [ - "HIV - Aids", - "Rights of the Child" - ] - }, - { - "text": "Further strengthen the efforts in poverty eradication, paying special attention to the rural population ", - "values": [ - "Poverty" - ] - }, - { - "text": "Consider ratifying the International Convention on the Protection of the Rights of All Migrant Workers and Members of Their Families, the Optional Protocol to the Convention on the Elimination of All Forms of Discrimination against Women and the three Optional Protocols to the Convention on the Rights of the Child", - "values": [ - "International instruments", - "Labour", - "Migrants", - "Rights of the Child", - "Women's rights" - ] - }, - { - "text": "Abolish the practice of female genital mutilation", - "values": [ - "Rights of the Child", - "Torture and other CID treatment", - "Women's rights" - ] - }, - { - "text": "Further enhance the role of the National Peace and Reconciliation Commission", - "values": [ - "Justice" - ] - }, - { - "text": "Bring the juvenile justice system fully into line with the Convention on the Rights of the Child", - "values": [ - "International instruments", - "Rights of the Child" - ] - }, - { - "text": "Ratify the international human rights instruments to which it is not a party", - "values": [ - "International instruments" - ] - }, - { - "text": "Poland is also committed to continuing actions to reduce poverty and social exclusion, which will remain a priority in our national social policy. Poland indicated that a new national programme on social security and social integration for 2008-2010, now under preparation, will strengthen assistance to families for the purpose of counteracting poverty and social exclusion of children. These actions are meant to equalize the opportunities of families and children, i.e. to eliminate educational deficits and improve access to services that will enable parents to reconcile their professional activities with the upbringing of children. In addition, the national programme will determine specific goals, including, in particular, lowering the poverty index and the index of poverty risk among children to achieve that the following actions will be undertaken by Poland: 1/ Improvement of family incomes 2/ Development of the child day-care service system 3/ Levelling educational opportunities of and support for school-age children from poor Families 4/ Consolidating the system of assistance to families, family counselling, improvement of income support 5/ The development of cooperation with non-governmental organizations will also contribute to the effective combating of poverty and social exclusion", - "values": [ - "Poverty", - "Rights of the Child" - ] - }, - { - "text": "Promptly complete the ratification of the Hague Convention", - "values": [ - "International instruments", - "Rights of the Child" - ] - }, - { - "text": "Provide access to land and support for the residents of the Reserve, as specified in the United Nations Declaration on the Rights of Indigenous Peoples, and work with the land boards of the various districts to ensure equity in land allocation among all applicants for residential, arable and grazing land, water sources and business sites", - "values": [ - "Indigenous peoples", - "International instruments", - "Right to land", - "Right to water and sanitation" - ] - }, - { - "text": "Strengthen measures to promote the right to equality and non-discrimination against any citizen and/or community, whatever their origin, age and identity", - "values": [ - "Racial discrimination" - ] - }, - { - "text": "Move towards the ratification of the Optional Protocol to the Convention against Torture", - "values": [ - "Detention", - "International instruments", - "Torture and other CID treatment" - ] - }, - { - "text": "Monitor and address rampant hate speech on the social media, especially that is directed at Muslims and refugees in public and political debates and manifested in Islamophobia", - "values": [ - "Freedom of religion and belief", - "Racial discrimination" - ] - }, - { - "text": "Ratify the Optional Protocol to the International Covenant on Economic, Social and Cultural Right", - "values": [ - "ESC rights - general", - "International instruments" - ] - }, - { - "text": "Continue its information campaign across the country on the rights of disabled persons in order to ensure the full realization of the rights of persons with disabilities and their integration into society", - "values": [ - "Disabilities", - "Human rights education and training" - ] - }, - { - "text": "Take necessary measures to prohibit racial discrimination and adopt a comprehensive anti-discriminatory law ", - "values": [ - "Racial discrimination" - ] - }, - { - "text": "Ratify ILO Convention No. 111 as recommended by the United Nations treaty bodies and the European Commission against Racism and Intolerance.", - "values": [ - "International instruments", - "Labour", - "Racial discrimination", - "Treaty bodies" - ] - }, - { - "text": "Continue its efforts to improve the situation of women and empower them", - "values": [ - "Women's rights" - ] - }, - { - "text": "Improve the rights of women, ensuring their full, equal and effective participation in conflict resolution and decision-making, including the Constitution drafting process, and tackling sexual violence, bringing perpetrators to justice", - "values": [ - "Women's rights" - ] - }, - { - "text": "Liberate immediately and unconditionally all the prisoners held in temporary detention or sentenced in connection with exercising their freedom of opinion and expression as well as freedom of assembly and association ", - "values": [ - "Detention", - "Freedom of association and peaceful assembly", - "Freedom of opinion and expression" - ] - }, - { - "text": "Ratify ICCPR and CAT and implements both treaties at national level", - "values": [ - "CP rights - general", - "International instruments", - "Torture and other CID treatment" - ] - }, - { - "text": "Carry out a thorough, independent and effective inquiry about the participation in the CIA's program of extra-judicial renditions and secret detentions. Make public the findings of the inquiry and bring to justice those found guilty", - "values": [ - "Counter-terrorism", - "Detention" - ] - }, - { - "text": "Rescue and protect the children held by terrorist groups, develop a programme for the disarmament, demobilisation and reintegration of these children into society, and sanction the recruitment of child soldiers by the Peruvian Armed Forces ", - "values": [ - "International humanitarian law", - "Rights of the Child" - ] - }, - { - "text": "Strengthen the campaign against illegal drugs", - "values": [ - "Other" - ] - }, - { - "text": "Complete the process of accession to the International Convention on the Protection of the Rights of All Migrant Workers and Members of Their Families ", - "values": [ - "International instruments", - "Labour", - "Migrants" - ] - }, - { - "text": "Promote interreligious dialogue and cooperation at the key local and national levels ", - "values": [ - "Freedom of religion and belief" - ] - }, - { - "text": "In follow-up to recommendations 135.8, 135.9, 135.15 and 135.16 of the second cycle, increase economic and social investment to improve equality of access, opportunities and needs under the \u201cSumak Kawsay\u201c programmes for Afro-Ecuadorian families and to facilitate their full participation in public life", - "values": [ - "Development", - "Minorities" - ] - }, - { - "text": "The adoption of policies that safeguard the rights of LGBT people and fight discrimination based on sexual orientation ", - "values": [ - "Sexual Orientation and Gender Identity" - ] - }, - { - "text": "Enhance efforts, both in law and practice, to protect the rights of women, promote gender equality and eliminate discrimination and violence against women", - "values": [ - "Women's rights" - ] - }, - { - "text": "Taking into account the capacity of Oman in protecting the right to education, carry out an exchange of experience in the area of education, and an exchange of achievements in the area of the oversight of educational institutions", - "values": [ - "Right to education" - ] - }, - { - "text": "Continue efforts for the reform of the judiciary, to improve access to justice and fight against the abusive recourse to pretrial detention", - "values": [ - "Detention", - "Justice" - ] - }, - { - "text": "Carry out effective, impartial investigations into allegations of deaths, torture and ill-treatment caused by excessive use of force by the police and prison officials ", - "values": [ - "Extrajudicial executions", - "Human rights violations by state agents", - "Torture and other CID treatment" - ] - }, - { - "text": "Establish a clear legal definition of disability", - "values": [ - "Disabilities" - ] - }, - { - "text": "Take necessary measures to reduce gun violence, concerned at the large number of gun-related deaths and injuries, which disproportionately affect members of racial and ethnic minorities", - "values": [ - "Minorities", - "Public security" - ] - }, - { - "text": "Consider acceding to the remaining core human rights instruments including ICCPR, ICESCR and ICRMW", - "values": [ - "CP rights - general", - "ESC rights - general", - "International instruments", - "Labour", - "Migrants" - ] - }, - { - "text": "Intensify its efforts to combat domestic violence and its efforts to ensure that victims of domestic violence have access to adequate assistance, including legal and psychological counselling, medical help and shelter", - "values": [ - "Rights of the Child", - "Women's rights" - ] - }, - { - "text": "Increase financial support for the Slovenian minority in the provinces of Carinthia and Styria to the 1995 level in real terms, as previously recommended", - "values": [ - "Minorities", - "UPR process" - ] - }, - { - "text": "Implement training programs for the security forces so that crimes motivated by race nationality, religion ethnicity, sexual orientation or identity, are adequately investigated ", - "values": [ - "Freedom of religion and belief", - "Minorities", - "Racial discrimination", - "Sexual Orientation and Gender Identity" - ] - }, - { - "text": "Support all stakeholders, including Community Education Committees, religious groups, NGOs in their effort to provide education services to all, with a particular emphasis on access of girls to basic education", - "values": [ - "Civil society", - "Right to education", - "Rights of the Child", - "Women's rights" - ] - }, - { - "text": "Ensure that prisoners are informed of charges and evidence against them, have prompt access to counsel of their choice, be charged with a recognizable criminal offence and be given a fair trial.", - "values": [ - "Detention" - ] - }, - { - "text": "Consider acceding to the first Optional Protocol to ICCPR, in order to improve the human rights protection of the persons subject to its jurisdiction ", - "values": [ - "CP rights - general", - "International instruments" - ] - }, - { - "text": "Adopt legislative measures to decriminalize homosexuality and consensual sexual relations between persons of the same sex", - "values": [ - "Sexual Orientation and Gender Identity" - ] - }, - { - "text": "Extend a standing invitation to all United Nations special procedures mandate holders ", - "values": [ - "Special procedures" - ] - }, - { - "text": "Continue to promote and implement policies of tolerance and inclusion and for the participation of all citizens in the society which contribute to combating discrimination in all its forms", - "values": [ - "Other" - ] - }, - { - "text": "Remain steadfast in pursuing its preventive and repressive programme to combat discrimination against migrants and asylum seekers", - "values": [ - "Asylum-seekers - refugees", - "Migrants", - "Racial discrimination" - ] - }, - { - "text": "Initiate a comprehensive set of measures to address existing inefficiencies within the judicial system including ensuring efficient prosecution and crime prevention while guaranteeing judicial independence, including that of the constitutional court. This also comprises the provision of social rehabilitation, reduction of time needed for investigative custody and taking steps to avoid prison overcrowding", - "values": [ - "Detention", - "Justice" - ] - }, - { - "text": "Implement the National Ombudsman's call for authorities to ascertain the age of younger immigrants, so that the most appropriate protection can be arranged ", - "values": [ - "Migrants", - "National Human Rights Institution", - "Rights of the Child" - ] - }, - { - "text": "Incorporate international human rights instruments into domestic law, including the Convention on the Elimination of All Forms of Discrimination against Women and the Convention on the Rights of the Child ", - "values": [ - "International instruments", - "Rights of the Child", - "Women's rights" - ] - }, - { - "text": "Call on the international community to provide technical assistance in the field of human rights to allow to achieve its obligations in improving the human rights situation", - "values": [ - "Technical assistance and cooperation" - ] - }, - { - "text": "Continue to implement alternative measures to imprisonment aimed at reducing prison over-crowding", - "values": [ - "Detention" - ] - }, - { - "text": "Swiftly conclude the process of establishing a national human rights institution based on the Paris Principles in order for that institution to be rapidly created", - "values": [ - "National Human Rights Institution" - ] - }, - { - "text": "Enhance the enjoyment of the right to education, particularly for girls, and address the issue of sexual abuse and exploitation of children ", - "values": [ - "Right to education", - "Rights of the Child" - ] - }, - { - "text": "Take measures to fully respect the freedom of religion and belief of its citizens", - "values": [ - "Freedom of religion and belief" - ] - }, - { - "text": "Ratify the Optional Protocol to the International Covenant on Economic, Social and Cultural Rights (OP-CESCR) ", - "values": [ - "ESC rights - general", - "International instruments" - ] - }, - { - "text": "Redouble efforts in the area of promotion of women and effective equality between genders in the workforce as in the social sphere.", - "values": [ - "Women's rights" - ] - }, - { - "text": "Continue to exert concrete efforts to eliminate all forms of discrimination and violence against women and children", - "values": [ - "Rights of the Child", - "Women's rights" - ] - }, - { - "text": "Continue to cooperate with OHCHR", - "values": [ - "Other" - ] - }, - { - "text": "Increase its contribution of official development assistance to reach the 0.7 per cent of gross national product threshold, with particular emphasis on capacity-building and resilience, as a follow up to the recommendation contained in paragraph 123.84 of the report from the second cycle", - "values": [ - "Development", - "UPR process" - ] - }, - { - "text": "Uphold its commitment to strengthen the national mechanism for the protection and promotion of children's rights ", - "values": [ - "Rights of the Child" - ] - }, - { - "text": "Empower women's social development and their participation in political decision-making", - "values": [ - "Women's rights" - ] - }, - { - "text": "Establish an express prohibition on traditional practices and rituals that put at risk the physical integrity of persons, in particular persons living with albinism", - "values": [ - "Minorities" - ] - }, - { - "text": "Continue efforts in the promotion and protection of human rights within the framework of the National Human Rights Action Plan established since 2013", - "values": [ - "General" - ] - }, - { - "text": "Set up national mechanisms to monitor, investigate, prosecute and punish incitement to and acts of hatred, intolerance, racism and xenophobia, including hate speech and racist and xenophobic acts committed on the internet and through political platform", - "values": [ - "Racial discrimination" - ] - }, - { - "text": "Investigate allegations of torture and excessive use of force and take appropriate measures to punish perpetrators", - "values": [ - "Torture and other CID treatment" - ] - }, - { - "text": "Ratify the third Optional Protocol to the Convention on the Rights of the Child ", - "values": [ - "International instruments", - "Rights of the Child" - ] - }, - { - "text": "Consider its pending reservations on the international instruments relating to refugees and displaced persons so as not to create any stateless persons, despite migratory pressures", - "values": [ - "Asylum-seekers - refugees", - "Internally displaced persons", - "International instruments", - "Migrants", - "Statelessness and the right to nationality" - ] - }, - { - "text": "Adhere to and align national legislation with the Rome Statute, including through the incorporation of provisions to cooperate promptly and fully with the International Criminal Court", - "values": [ - "International instruments", - "Justice" - ] - }, - { - "text": "Ensure that practical policies in the area of immigration be geared to the standards set forth by the principles enshrined in the International Convention on the Protection of the Rights of All Migrant Workers and Members of Their Families (ICRMW).", - "values": [ - "International instruments", - "Labour", - "Migrants" - ] - }, - { - "text": "Continue efforts and take effective measures to overcome the challenge of protecting the rights of vulnerable groups ", - "values": [ - "Minorities" - ] - }, - { - "text": "Study measures that it judges appropriate to implementing the recommendation of the Committee on the Elimination of Discrimination against Women to eliminate discrimination between men and women in the area of employment and to enshrine the principle of an equal salary for equal work of equal value.", - "values": [ - "Treaty bodies", - "Women's rights" - ] - }, - { - "text": "Set the minimum age for marriage for boys and girls at 18 years", - "values": [ - "Rights of the Child", - "Women's rights" - ] - }, - { - "text": "Implement adequate measures to ensure the comprehensive and effective protection of women against domestic violence and accelerate the drafting process of a bill that is consistent with international standards in this area", - "values": [ - "Rights of the Child", - "Women's rights" - ] - }, - { - "text": "Consider developing Human Rights Indicators, as suggested by OHCHR, as a fundamental tool for the realization of human rights", - "values": [ - "Other" - ] - }, - { - "text": "Continue restoring and promoting the human rights of its people, taking into particular consideration the most vulnerable groups, as it has been doing it from its last review", - "values": [ - "Minorities", - "UPR process" - ] - }, - { - "text": "Persist in working towards the full inclusion of the Roma community, the success of which will be highly rewarding for all the people of Slovakia.", - "values": [ - "Minorities" - ] - }, - { - "text": "Consider the withdrawal of all reservations and declarations that undermine the objective and spirit of the human rights instruments, in particular reservation to article 6 paragraph 5 of the International Covenant on Civil and Political Rights that bans the imposition of the death penalty to those who committed a crime when they were minors", - "values": [ - "Death penalty", - "International instruments" - ] - }, - { - "text": "Ratify the Optional Protocol to the Convention against Torture and establish a national preventive mechanism.", - "values": [ - "Detention", - "International instruments", - "Torture and other CID treatment" - ] - }, - { - "text": "Consider putting in place temporary special measures in areas where women are underrepresented or disadvantaged and provide additional resources to accelerate the improvement of the status of women", - "values": [ - "Women's rights" - ] - }, - { - "text": "Continue monitoring the guarantee of the exercise of the human right to drinking water and sanitation, respecting the principle of non-discrimination, granting specific attention to rural communities and vulnerable groups, and supporting the committees for drinking water and sanitation as well as the municipal governments ", - "values": [ - "Right to water and sanitation" - ] - }, - { - "text": "Investigate all pending complaints about enforced or involuntary disappearances and have their perpetrators punished ", - "values": [ - "Enforced disappearances" - ] - }, - { - "text": "Strengthen efforts to eliminate out-of-court as well as child marriages", - "values": [ - "Rights of the Child" - ] - }, - { - "text": "Introduce an alternative non-punitive service of genuine civilian character, under civilian control and of a length comparable to military service", - "values": [ - "Other" - ] - }, - { - "text": "Address concerns of the ILO Committee of Experts about the conditions under which domestic servants can leave their employment and their possibility to have recourse to courts if necessary, in accordance with international standards ", - "values": [ - "International instruments", - "Labour" - ] - }, - { - "text": "Continue to adopt measures to fight impunity and acts of torture, harassment of civilians, including those committed by law enforcement officials ", - "values": [ - "Human rights violations by state agents", - "Impunity", - "Torture and other CID treatment" - ] - }, - { - "text": "Ratify ICCPR ", - "values": [ - "CP rights - general", - "International instruments" - ] - }, - { - "text": "Take appropriate legislative measures towards the ratification of the Convention on the Rights of Persons with Disabilities and towards improvement of living conditions, employment opportunities and access of persons with disabilities", - "values": [ - "Disabilities", - "International instruments" - ] - }, - { - "text": "Provide unlimited access to the International Federation of Red Cross and Red Crescent Societies to all detention facilities and provide independent monitors to access all Eritrean detention facilities, in particular the Djiboutian detainees, and ensure that international standards of law in the treatment of prisoners are respected in Eritrea ", - "values": [ - "Detention" - ] - }, - { - "text": "Accelerate the process for the development of government institutions for the promotion and protection of human rights", - "values": [ - "General" - ] - }, - { - "text": "Ratify the Convention against Torture and ratify its Optional Protocol", - "values": [ - "Detention", - "International instruments", - "Torture and other CID treatment" - ] - }, - { - "text": "Undertake the necessary measures to obtain the "A" accreditation for the Ombudsman and the National Human Rights Institution", - "values": [ - "National Human Rights Institution" - ] - }, - { - "text": "Ensure respect for minorities, especially sexual minorities", - "values": [ - "Minorities", - "Sexual Orientation and Gender Identity" - ] - }, - { - "text": "Remedy the measure which resulted in weakening the protection afforded by the Comprehensive Act against Violence towards Women (Act 779) and avoid putting women in a situation where they must negotiate with their abusers ", - "values": [ - "Women's rights" - ] - }, - { - "text": "Strengthen the role of and provide the necessary resources to the National Council of Children", - "values": [ - "Rights of the Child" - ] - }, - { - "text": "Make further efforts in increasing participation of persons with disabilities at all levels of political and public life, especially the electoral process", - "values": [ - "Disabilities", - "Elections" - ] - }, - { - "text": "Develop a holistic strategy to allow combating racism, racial discrimination, xenophobia and other related forms of intolerance", - "values": [ - "Racial discrimination" - ] - }, - { - "text": "Continue to strengthen its cooperation and exchanges with international organizations in the field of education ", - "values": [ - "Right to education" - ] - }, - { - "text": "Strengthen the national legal framework through the adhesion to the International Convention for the Protection of All Persons from Enforced Disappearance and the Convention against Torture and Other Cruel, Inhuman or Degrading Treatment or Punishment, and the relevant protocols", - "values": [ - "Detention", - "Enforced disappearances", - "International instruments", - "Torture and other CID treatment" - ] - }, - { - "text": "Take measures to ensure full rights of association, by reviewing the Charities and Societies Proclamation as regards funding restrictions imposed on civil society organizations working with human rights ", - "values": [ - "Civil society", - "Freedom of association and peaceful assembly" - ] - }, - { - "text": "Continue providing human rights training to security and defence forces and ensure that violations committed by these forces are prosecuted", - "values": [ - "Human rights education and training", - "Human rights violations by state agents" - ] - }, - { - "text": "Share with others its good practices in easing childcare burden which disproportionately affects women", - "values": [ - "Women's rights" - ] - }, - { - "text": "Repeal laws that criminalize consensual same-sex conduct, and prohibit discrimination on the grounds of sexual orientation or gender identity in all areas of public life, including employment, health and education, bringing Samoa legislation into conformity with its commitment to equality ", - "values": [ - "Labour", - "Right to education", - "Right to health", - "Sexual Orientation and Gender Identity" - ] - }, - { - "text": "Redouble efforts to establish as soon as possible an independent national human rights institution, in conformity with the Paris Principles", - "values": [ - "National Human Rights Institution" - ] - }, - { - "text": "Continue its efforts to apply its national programme to the promotion and protection of human rights and the plan of action", - "values": [ - "General" - ] - }, - { - "text": "Adopt measures which guarantee the non-occurrence of cases of torture and ill-treatment in places of detention and, among them, establish an independent national preventive mechanism against torture ", - "values": [ - "Detention", - "Torture and other CID treatment" - ] - }, - { - "text": "Consider ratifying the international instruments to which the country is not yet party, in particular the Convention against Torture and Other Cruel, Inhuman or Degrading Treatment or Punishment, the International Convention on the Elimination of All Forms of Racial Discrimination, International Convention on the Protection of the Rights of All Migrant Workers and Members of Their Families, and the Second Optional Protocol to the International Covenant on Civil and Political Rights, aiming at the abolition of the death penalty ", - "values": [ - "Death penalty", - "International instruments", - "Labour", - "Migrants", - "Racial discrimination", - "Torture and other CID treatment" - ] - }, - { - "text": "Address the issue of unduly protracted detentions and to promote the use of alternative measures to pretrial detention, in particular for pregnant women and young children. ", - "values": [ - "Detention", - "Rights of the Child", - "Women's rights" - ] - }, - { - "text": "Adopt a comprehensive policy to ensure effective implementation of the principles of equality and non-discrimination in respect of all", - "values": [ - "Other" - ] - }, - { - "text": "Review the provisions in its penal code which contain punitive measures against women who have undergone illegal abortions", - "values": [ - "Women's rights" - ] - }, - { - "text": "Take immediate effective and legal measures to prevent and combat violence against women, in particular those belonging to minority groups ", - "values": [ - "Minorities", - "Women's rights" - ] - }, - { - "text": "Consider providing appropriate human rights education and training to public servants and law enforcement officials", - "values": [ - "Human rights education and training" - ] - }, - { - "text": "Ratify the Inter-American Convention against Racism, Racial Discrimination and Related Forms of Intolerance", - "values": [ - "International instruments", - "Racial discrimination" - ] - }, - { - "text": "Improve the financing methodology, strengthen relevant coordination, and create better conditions for its own development ", - "values": [ - "Development" - ] - }, - { - "text": "Bring domestic legislation into conformity with its international human rights obligations", - "values": [ - "International instruments" - ] - }, - { - "text": "Continue to face and challenge the obstacles facing the schooling of girls and make use of technical assistance provided by the United Nations, in particular UNICEF, in order to overcome such obstacles ", - "values": [ - "Right to education", - "Rights of the Child", - "Technical assistance and cooperation" - ] - }, - { - "text": "Establish a mechanism under which victims of gender-based violence can file for protection orders in towns and villages where there is no magistrate, and under which protection orders can be filed outside of designated court hours", - "values": [ - "Women's rights" - ] - }, - { - "text": "Invite representatives of international human rights organizations to visit the Bolivarian Republic of Venezuela, including by issuing a standing invitation to the United Nations special procedures", - "values": [ - "Civil society", - "Special procedures" - ] - }, - { - "text": "Develop a national institution for human rights to bring it in full compliance with the Paris Principles, by adopting the necessary legislation", - "values": [ - "National Human Rights Institution" - ] - }, - { - "text": "Revise Law No. 18 of 2004 in order to remove restricting conditions for acquiring permission for a public demonstration, and take other steps to guarantee the full enjoyment of the right to freedom of assembly and the right of association ", - "values": [ - "Freedom of association and peaceful assembly" - ] - }, - { - "text": "Harmonize its national institution in order to bring it fully into line with the Paris Principles ", - "values": [ - "National Human Rights Institution" - ] - }, - { - "text": "Ensure the implementation of the Criminal Code with regard to the ban on FGM, to strengthen awareness campaigns and educate people about the harmful effects of this practice ", - "values": [ - "Human rights education and training", - "Rights of the Child", - "Torture and other CID treatment", - "Women's rights" - ] - }, - { - "text": "Consider that any person detained by its armed forces is under its jurisdiction and respect its obligations concerning the human rights of such individuals.", - "values": [ - "International humanitarian law" - ] - }, - { - "text": "Take the appropriate steps towards the adoption of a child protection code in conformity with the Convention on the Rights of the Child ", - "values": [ - "International instruments", - "Rights of the Child" - ] - }, - { - "text": "Strengthen the Human Rights Commission with a status in accordance with the Paris Principles, particularly with respect to human resources and independence.", - "values": [ - "National Human Rights Institution" - ] - }, - { - "text": "Accomplish the Human Rights Voluntary Goals set out in resolution 9-12 of the Human Rights Council", - "values": [ - "General" - ] - }, - { - "text": "Strengthen policies to counter the phenomenon of homelessness, especially among children, and put an end to it", - "values": [ - "Right to housing", - "Rights of the Child" - ] - }, - { - "text": "Further promote a culture of human rights among the society, to strengthen national capacities and to address short comings in the area of human rights promotion and protection including the rule of law and adequate protection of vulnerable segments of the population", - "values": [ - "Human rights education and training", - "Justice" - ] - }, - { - "text": "Strengthen the supervision of prisons and detention facilities by allocating sufficient resources for that purpose, and increase efforts to improve their conditions so as to comply with international standards ", - "values": [ - "Detention" - ] - }, - { - "text": "Continue efforts aimed at strengthening the fight against racism, racial discrimination and xenophobia", - "values": [ - "Racial discrimination" - ] - }, - { - "text": "Promote a culture of respect for human rights at all levels of society", - "values": [ - "Human rights education and training" - ] - }, - { - "text": "Continue strengthening its sound social policies that favour the people, with special emphasis on the most vulnerable groups", - "values": [ - "ESC rights - general", - "General" - ] - }, - { - "text": "Pursue its efforts to combat illiteracy and establish an effective system for adult education and training ", - "values": [ - "Right to education" - ] - }, - { - "text": "Accelerate the measures undertaken to allow the national institution for the protection of human rights to comply with the Paris Principles ", - "values": [ - "National Human Rights Institution" - ] - }, - { - "text": "Redouble efforts to fight against ill-treatment of children, particularly by the investigation, trial and punishment of perpetrators", - "values": [ - "Rights of the Child", - "Torture and other CID treatment" - ] - }, - { - "text": "Intensify strategies aimed at combating trafficking in women, especially those aimed at the sex trade ", - "values": [ - "Trafficking", - "Women's rights" - ] - }, - { - "text": "Take urgent measures to put an end to harmful traditional practices such as so-called \u201chonour killings\u201c, selective abortion on the basis of the sex of the fetus, sati, devadasi, early and enforced marriage, bringing the perpetrators to justice and guaranteeing assistance for victims", - "values": [ - "Torture and other CID treatment", - "Women's rights" - ] - }, - { - "text": "Fully respect the rights of the adherents of the Baha'i faith and to judicially prosecute those inciting hatred against them in religious environments, the media and the Internet", - "values": [ - "Freedom of religion and belief", - "Minorities" - ] - }, - { - "text": "In compliance with international human rights law, amend, adopt and effectively implement legislation to eliminate all forms of discrimination and criminalize all forms of violence against women and girls, ensure that all cases of sexual violence and harassment faced by women protesters and human rights defenders must be promptly investigated and the perpetrators brought to justice", - "values": [ - "Freedom of association and peaceful assembly", - "Human rights defenders", - "International instruments", - "Rights of the Child", - "Women's rights" - ] - }, - { - "text": "Guarantee non-discrimination against persons belonging to minorities ", - "values": [ - "Minorities" - ] - }, - { - "text": "Take into account the constructive contributions arising from this review in the current national social policies ", - "values": [ - "UPR process" - ] - }, - { - "text": "Amend the Sierra Leone Citizenship Act so that women can transfer their nationality to their children and non-national spouses on an equal basis with men, and include a provision in the new Constitution which grants equal nationality rights to men and women", - "values": [ - "Rights of the Child", - "Statelessness and the right to nationality", - "Women's rights" - ] - }, - { - "text": "For the continued development of the country, take into account and support the family, based on the stable relationship between a man and a woman, as the natural and fundamental unit of society, both in taxation and general legislation ", - "values": [ - "Other" - ] - }, - { - "text": "Strengthen efforts to fulfil its obligations under CEDAW and CRC", - "values": [ - "International instruments", - "Rights of the Child", - "Women's rights" - ] - }, - { - "text": "Ensure the rights of victims and families to justice and an effective remedy in law and ensure that the Truth and Reconciliation Commission be granted sufficient powers to complete its job effectively", - "values": [ - "Justice" - ] - }, - { - "text": "Incorporate CEDAW duly into its national legal framework ", - "values": [ - "International instruments", - "Women's rights" - ] - }, - { - "text": "Devise action-oriented plans to combat trafficking, in particular of women and children", - "values": [ - "Rights of the Child", - "Trafficking", - "Women's rights" - ] - }, - { - "text": "Amend the legislative and constitutional framework to maintain the separation of powers and cease any executive interference with the independence of the judiciary and lawyers, and ensure that the processes governing the qualification and discipline of lawyers and judges are free from political interference", - "values": [ - "Justice" - ] - }, - { - "text": "Ratify the Optional Protocols to the Convention on the Rights of the Child on the involvement of children in armed conflict and on the sale of children, child prostitution and child pornography", - "values": [ - "International humanitarian law", - "International instruments", - "Rights of the Child", - "Trafficking" - ] - }, - { - "text": "Increase efforts to promote human rights culture in the country", - "values": [ - "Human rights education and training" - ] - }, - { - "text": "Consider implementing, as appropriate, the recommendations of human rights treaty bodies and special procedures on indigenous people.", - "values": [ - "Indigenous peoples", - "Special procedures", - "Treaty bodies" - ] - }, - { - "text": "Take effective legislative and practical measures for the comprehensive protection and promotion of civil, social, economic and cultural rights of indigenous peoples", - "values": [ - "CP rights - general", - "ESC rights - general", - "Indigenous peoples" - ] - }, - { - "text": "Adopt and implement a national policy project aimed at persons with disabilities, especially ensuring the effective rights of children with disabilities and their participation in all spheres of society", - "values": [ - "Disabilities", - "Rights of the Child" - ] - }, - { - "text": "Repeal section 377 A of the Penal Code to decriminalize homosexuality", - "values": [ - "Sexual Orientation and Gender Identity" - ] - }, - { - "text": "Eliminate the caste system, which leads to stigmatization and ostracism of certain groups of the Senegalese society", - "values": [ - "Minorities", - "Racial discrimination" - ] - }, - { - "text": "Introduce programmes and projects within the concept of human rights education on the prevention of genocide, war crimes and crimes against humanity", - "values": [ - "Human rights education and training" - ] - }, - { - "text": "Intensify all efforts to respect and uphold freedom of expression, assembly, and religion and belief, and to prevent discrimination on any grounds including sexual orientation and gender identity", - "values": [ - "Freedom of association and peaceful assembly", - "Freedom of opinion and expression", - "Freedom of religion and belief", - "Sexual Orientation and Gender Identity" - ] - }, - { - "text": "Ensure full freedom of expression and end media censorship ", - "values": [ - "Freedom of opinion and expression", - "Freedom of the press" - ] - }, - { - "text": "Continue to intensify its efforts in further strengthening the good governance and rule-based state with more focus on capacity-building for national agencies and law enforcement authorities on human rights protection and promotion ", - "values": [ - "Justice" - ] - }, - { - "text": "Ratify as soon as possible the Convention on the Elimination of All forms of Discrimination against Women", - "values": [ - "International instruments", - "Women's rights" - ] - }, - { - "text": "Establish as soon as possible a national human rights institution", - "values": [ - "National Human Rights Institution" - ] - }, - { - "text": "Guarantee the rights of women, particularly with regard to eradicating forced sterilizations, and ensure safe contraception policies and equal labour conditions ", - "values": [ - "Women's rights" - ] - }, - { - "text": "Seek all forms of technical and logistical assistance in order to strengthen the situation of human rights in the country", - "values": [ - "Technical assistance and cooperation" - ] - }, - { - "text": "Consider measures for the early passage of the proposed anti- discrimination law now being considered by its parliament ", - "values": [ - "Other" - ] - }, - { - "text": "Give a mandate to the office of the Ombudsman to bring it in compliance with the Paris Principles", - "values": [ - "National Human Rights Institution" - ] - }, - { - "text": "Take concrete steps to prevent coercive, unsafe and abusive sterilization and create greater accountability for these practices, including ensuring free and full consent prior to conducting the procedure and compliance with international standards", - "values": [ - "Women's rights" - ] - }, - { - "text": "Consider becoming a State party and ratify the International Convention for the Protection of the Rights of All Migrant Workers and their Families to protect the human rights of these migrant workers ", - "values": [ - "International instruments", - "Labour", - "Migrants" - ] - }, - { - "text": "Ratify ICCPR-OP2, and formalize, in the meantime, the current de facto moratorium on the death penalty", - "values": [ - "Death penalty", - "International instruments" - ] - }, - { - "text": "Continue its efforts in socioeconomic development and poverty eradication with a view of achieving its Millennium Development Goals target", - "values": [ - "Development", - "ESC rights - general", - "Poverty" - ] - }, - { - "text": "Request necessary technical assistance to build its capacity to deal with the issues and challenges faced in the fields of education, infrastructure, health, housing, agriculture, and ensuring food security ", - "values": [ - "Technical assistance and cooperation" - ] - }, - { - "text": "Continue its efforts to strengthen the role of its national mechanisms and institutions for the promotion and protection of human rights in the country, particularly those of women and children", - "values": [ - "Rights of the Child", - "Women's rights" - ] - }, - { - "text": "Continue to adopt appropriate measures in combating the trafficking of human beings", - "values": [ - "Trafficking" - ] - }, - { - "text": "Immediately release all political prisoners", - "values": [ - "Detention", - "Freedom of opinion and expression" - ] - }, - { - "text": "Strengthen measures taken to combat hate speech/discourse", - "values": [ - "Racial discrimination" - ] - }, - { - "text": "Submit reports to the international human rights treaty bodies", - "values": [ - "Treaty bodies" - ] - }, - { - "text": "Consider ratifying the Optional Protocol to the Convention on the Elimination of All Forms of Discrimination against Women", - "values": [ - "International instruments", - "Women's rights" - ] - }, - { - "text": "Continue to mobilize resources and necessary support to enhance its capacity to fulfil its human rights obligations", - "values": [ - "General" - ] - }, - { - "text": "Set up a national human rights institution in accordance with the Paris Principles", - "values": [ - "National Human Rights Institution" - ] - }, - { - "text": "Strengthen efforts to ensure the security and safety of family and the protection of family from experiencing negative consequences", - "values": [ - "Other" - ] - }, - { - "text": "Consider the possibility of acceding to the 1951 Convention relating to the Status of Refugees and its 1967 Protocol, in the spirit of the tradition in Nepal of hosting refugees ", - "values": [ - "Asylum-seekers - refugees", - "International instruments" - ] - }, - { - "text": "Allocate adequate budgetary resources to the effective implementation of its national action plan for the prevention, assistance and eradication of violence against women and ensure that sufficient safe shelters for women victims are available and easily accessible in every province", - "values": [ - "Women's rights" - ] - }, - { - "text": "Pursue to further its politics regarding human rights education and training for law enforcement officials in the field of combating torture and ill-treatment", - "values": [ - "Human rights education and training", - "Torture and other CID treatment" - ] - }, - { - "text": "Consider placing a moratorium on the death penalty", - "values": [ - "Death penalty" - ] - }, - { - "text": "Take the necessary measures in law and in practice to put an end to discrimination between men and women regarding nationality", - "values": [ - "Women's rights" - ] - }, - { - "text": "Adopt a comprehensive anti-discrimination legislation to avoid all forms of discrimination on the basis of ethnicity, religion, sexual orientation or gender identity, language, political belief, mental or physical disability", - "values": [ - "Other" - ] - }, - { - "text": "Ratify the International Convention for the Protection of All Persons from Enforced Disappearance, accept the competence of the Committee as foreseen in article 26 of the Convention and modify its national legislation to criminalize this act.", - "values": [ - "Enforced disappearances", - "International instruments" - ] - }, - { - "text": "Accelerate efforts to ensure the full operationalization of the Zimbabwe Gender Commission", - "values": [ - "Women's rights" - ] - }, - { - "text": "Combat the high rate of teenage girls' pregnancy, which put at risk their rights to health and education", - "values": [ - "Right to education", - "Right to health", - "Rights of the Child" - ] - }, - { - "text": "Continue to implement its plans and strategies that enhance the economic and social welfare of indigenous peoples", - "values": [ - "ESC rights - general", - "Indigenous peoples" - ] - }, - { - "text": "Ratify the Convention on the Rights of Persons with Disabilities and the International Labour Organization Discrimination (Employment and Occupation) Convention, 1958 (No. 111)", - "values": [ - "Disabilities", - "International instruments", - "Labour" - ] - }, - { - "text": "Establish a roadmap with clear timelines to finalise the cases of sterilization of Roma women without consent and ensure adequate compensation and reparation for such women", - "values": [ - "Minorities", - "Torture and other CID treatment", - "Women's rights" - ] - }, - { - "text": "Take all necessary measures to ensure the full implementation of ILO Convention No. 189, which will come into force in January 2015 ", - "values": [ - "International instruments", - "Labour" - ] - }, - { - "text": "Continue efforts for increasing quality of children's education, especially in rural areas ", - "values": [ - "Right to education", - "Rights of the Child" - ] - }, - { - "text": "Consider the ratification of the Convention for the Protection of all Persons against Enforced Disappearance.", - "values": [ - "Enforced disappearances", - "International instruments" - ] - }, - { - "text": "Speed up on going consultations to ratify the ICRMW ", - "values": [ - "International instruments", - "Labour", - "Migrants" - ] - }, - { - "text": "Establish a comprehensive regulatory framework to reduce the physical and environmental health-care risks associated with phosphate mining", - "values": [ - "Environment", - "Right to health" - ] - }, - { - "text": "Provide the National Human Rights Commission with all the necessary resources in order to guarantee that it is fully compliant with the Paris Principles", - "values": [ - "National Human Rights Institution" - ] - }, - { - "text": "Continue to strengthen and promote human rights education, including through joint educational programmes with national minorities ", - "values": [ - "Human rights education and training", - "Minorities" - ] - }, - { - "text": "Ratify ILO convention 182 on the worst forms of child labour following the relevant recommendation made by Committee on the Rights of the Child in 2008 ", - "values": [ - "International instruments", - "Labour", - "Rights of the Child" - ] - }, - { - "text": "Repeal the blasphemy laws and restrictions and end their use against Ahmadi Muslims and others, and grant the visit of the Special Rapporteur on the promotion and protection of the right to freedom of opinion and expression", - "values": [ - "Freedom of opinion and expression", - "Freedom of religion and belief", - "Minorities" - ] - }, - { - "text": "Establish a comprehensive human rights framework upon which to develop more coordinated and effective policy measures and strategies for promoting human rights and that such a framework includes initiatives to set up a national human rights institutions in line with the Paris Principles", - "values": [ - "National Human Rights Institution" - ] - }, - { - "text": "Ensure protection of refugees, migrants and members of their families, including their social integration in line with international standards ", - "values": [ - "Asylum-seekers - refugees", - "Migrants" - ] - }, - { - "text": "Introduce effective measures to prevent and eliminate discrimination and persecution on the grounds of religion or belief", - "values": [ - "Freedom of religion and belief", - "Racial discrimination" - ] - }, - { - "text": "Adopt a comprehensive national plan on inclusion in order to combat persisting inequality, paying particular attention to persons in vulnerable situations such as women, children, persons with disabilities and minorities", - "values": [ - "Disabilities", - "Minorities", - "Rights of the Child", - "Women's rights" - ] - }, - { - "text": "With support from the relevant international organizations, continue to implement its education program to ensure access to quality education for all ", - "values": [ - "Right to education" - ] - }, - { - "text": "Prevent and eliminate child sex tourism and strengthen international cooperation ", - "values": [ - "Rights of the Child", - "Trafficking" - ] - }, - { - "text": "Take measures to legislate into domestic law the international human rights instruments to which it is a party ", - "values": [ - "International instruments" - ] - }, - { - "text": "Guarantee freedoms of peaceful assembly and association and of opinion and expression by, inter alia, ensuring that the use of police force during demonstrations is proportionate and in line with the law the provinces set up in 2011", - "values": [ - "Freedom of association and peaceful assembly", - "Freedom of opinion and expression" - ] - }, - { - "text": "Ensure that the law governing access to abortion in Northern Ireland fully complies with international human rights law, by decriminalizing abortion and ensuring access to abortion in cases of severe and fatal fetal anomalies and where the pregnancy is a result of rape or incest", - "values": [ - "Right to health", - "Women's rights" - ] - }, - { - "text": "Intensify campaigns to prevent human trafficking and to increase the protection offered to victims, including their right to legal redress", - "values": [ - "Trafficking" - ] - }, - { - "text": "Ensure that its anti-discrimination laws and policies are fully implemented", - "values": [ - "Other" - ] - }, - { - "text": "Enact legislation designed to provide full legal protection for women against discrimination and to ensure equal opportunity for women to participate in public affairs ", - "values": [ - "Women's rights" - ] - }, - { - "text": "Continue the process of transitional justice.", - "values": [ - "Justice" - ] - }, - { - "text": "Take effective measures to prevent trafficking in persons, including women and children", - "values": [ - "Rights of the Child", - "Trafficking", - "Women's rights" - ] - }, - { - "text": "Accelerate the adoption of pending bills and intensify efforts in order to see more strengthened implementation of the measures decided and instruments created, including in terms of the difficult fight against harmful traditional practices, protection of children, inequality of rights between sexes, and access to justice and strengthening of its effectiveness", - "values": [ - "Justice", - "Rights of the Child", - "Torture and other CID treatment", - "Women's rights" - ] - }, - { - "text": "Take all the necessary measures to ensure the security of the people and their property", - "values": [ - "Public security" - ] - }, - { - "text": "Seek technical, material and financial assistance from the international community in order to help to address its human rights challenges ", - "values": [ - "Technical assistance and cooperation" - ] - }, - { - "text": "Adopt measures to ensure the rights of citizens to peaceful assembly under conditions of observance of public order and the safety of citizens and state and private establishments and organizations", - "values": [ - "Freedom of association and peaceful assembly" - ] - }, - { - "text": "Declare at the earliest a moratorium on the application of the death penalty with a view, eventually, to the definitive abolition of capital punishment ", - "values": [ - "Death penalty" - ] - }, - { - "text": "Seek from the international community, and especially from United Nations programmes and agencies, support for strengthening or, if not already available, for creating capacity-building and technical assistance programmes, especially in the areas of human rights education, child labour, security, assistance to families and communities in fighting the effects of poverty and HIV-AIDS, education and juvenile justice.", - "values": [ - "Technical assistance and cooperation" - ] - }, - { - "text": "Continue training public authorities' staff on human rights", - "values": [ - "Human rights education and training" - ] - }, - { - "text": "Devote more resources to the protection of women and children from domestic violence and any other kind of abuses ", - "values": [ - "Rights of the Child", - "Women's rights" - ] - }, - { - "text": "Strengthen the awareness-raising and training of women on leadership", - "values": [ - "Women's rights" - ] - }, - { - "text": "Consider ratifying the International Convention on the Protection of All Persons from Enforced Disappearance", - "values": [ - "Enforced disappearances", - "International instruments" - ] - }, - { - "text": "Continue working with bilateral, regional and international partners to address trafficking in persons", - "values": [ - "Trafficking" - ] - }, - { - "text": "Take measures to increase space for peaceful dissent, discussion and dialogue and ensure a conducive and safe environment for everyone exercising or seeking to exercise his or her rights to freedom of association including ensuring that civil society organizations and political parties can carry out their activities without hindrances and a less cumbersome registration process", - "values": [ - "Civil society", - "Freedom of association and peaceful assembly" - ] - }, - { - "text": "Consider reviewing the policy regarding asylum seekers and take appropriate measures to guarantee they are treated in accordance with applicable international human rights standards", - "values": [ - "Asylum-seekers - refugees", - "International instruments" - ] - }, - { - "text": "Continue constructive cooperation with the Office of the United Nations High Commissioner for Human Rights to build national capacities in order to protect and promote human rights within the framework of the Memorandum of Understanding signed between them in 2012", - "values": [ - "Technical assistance and cooperation" - ] - }, - { - "text": "Effectively investigate and prosecute allegations of sexual violence and intensify efforts to finalize a national action plan to combat sexual violence ", - "values": [ - "Rights of the Child", - "Women's rights" - ] - }, - { - "text": "Strengthen its efforts to protect the rights to freedom of religion by ensuring that persons belonging to religious minorities are able to freely exercise their religion and that rights of persons belonging to religious minorities are protected and respected without discrimination.", - "values": [ - "Freedom of religion and belief", - "Minorities" - ] - }, - { - "text": "End forced labour and child labour ", - "values": [ - "Labour", - "Rights of the Child" - ] - }, - { - "text": "Make additional efforts to improve reporting to the Human Rights Treaty Bodies under the treaties to which the United Arab Emirates are party", - "values": [ - "Treaty bodies" - ] - }, - { - "text": "Intensify its fight against all forms of discrimination and the exploitation of children of poor families ", - "values": [ - "Poverty", - "Rights of the Child" - ] - }, - { - "text": "An immediate moratorium on the use of death penalty and that all current death sentences be commuted", - "values": [ - "Death penalty" - ] - }, - { - "text": "Combat impunity on crimes against judges by creating a protection system for judges under threat ", - "values": [ - "Justice" - ] - }, - { - "text": "Ensure the participation of the various political movements in the electoral process and put in place plural and autonomous observation mechanisms that are integrated by citizens ", - "values": [ - "Elections", - "Freedom of association and peaceful assembly" - ] - }, - { - "text": "Continue to actively promote the right to education for all and further its efforts to promote human rights education and training ", - "values": [ - "Human rights education and training", - "Right to education" - ] - }, - { - "text": "Put an end to the infamous blockade against Cuba ", - "values": [ - "Other" - ] - }, - { - "text": "Adopt concrete grassroots programmes to sensitize communities to abolish cultural practices which violate the human rights, life and dignity of women and young girls.", - "values": [ - "Rights of the Child", - "Women's rights" - ] - }, - { - "text": "Take all necessary steps to eliminate human trafficking ", - "values": [ - "Trafficking" - ] - }, - { - "text": "Enact the necessary legal provisions for the advancement of women in conformity with international human rights standards ", - "values": [ - "International instruments", - "Women's rights" - ] - }, - { - "text": "Consider enacting a law that guarantees access to public information", - "values": [ - "Freedom of opinion and expression" - ] - }, - { - "text": "Ensure that Family Support Units are located at police stations tasked with investigating and providing support to victims of sexual violence, and are adequately staffed and resourced so as to be able to carry out their mandate ", - "values": [ - "Justice", - "Rights of the Child", - "Women's rights" - ] - }, - { - "text": "Sign, ratify and implement the Optional Protocol to the Convention on the Rights of Persons with Disabilities ", - "values": [ - "Disabilities", - "International instruments" - ] - }, - { - "text": "Combat effectively all manifestations of Islamophobia and promote tolerance, intercultural dialogue and respect for diversity in the society", - "values": [ - "Freedom of religion and belief", - "Racial discrimination" - ] - }, - { - "text": "Combat child labour, sexual exploitation and abuse, and further advance strategies to eliminate the discrimination against indigenous, minority children and children of African descent ", - "values": [ - "Indigenous peoples", - "Labour", - "Minorities", - "Racial discrimination", - "Rights of the Child" - ] - }, - { - "text": "Continue its efforts with regard to child protection and implement an independent mechanism to monitor children\u2019s rights so as to prevent violations of existing regulations and legislation", - "values": [ - "Rights of the Child" - ] - }, - { - "text": "Advance towards the definitive abolition of the death penalty, adopting during this process a general moratorium on its application", - "values": [ - "Death penalty" - ] - }, - { - "text": "Consider the elimination of corporal punishment of children under 18 and ensure the compliance of its legal system with the Convention on the Rights of the Child", - "values": [ - "International instruments", - "Rights of the Child", - "Torture and other CID treatment" - ] - }, - { - "text": "Draw up and implement specific measures to avoid gender-based segregation in employment, including through equal pay for equal work for men and women", - "values": [ - "Women's rights" - ] - }, - { - "text": "Review its national legislation in order to ensure its full alignment with obligations under the Rome Statute, in particular by incorporating provisions enabling cooperation with the Court", - "values": [ - "International instruments", - "Justice" - ] - }, - { - "text": "Strengthen the Government's efforts to eliminate illiteracy, particularly in remote and difficult locations ", - "values": [ - "Right to education" - ] - }, - { - "text": "That the Federal Government at the highest level ensure strong public statements recognizing the legitimate and important role of journalists and human rights defenders in advancing human rights and inclusive politics", - "values": [ - "Freedom of the press", - "Human rights defenders" - ] - }, - { - "text": "Continue efforts to bridge inequalities in employment on account of nationality", - "values": [ - "Development" - ] - }, - { - "text": "Fully respect the freedom of religion or belief as also expressed in the recommendations of the Human Rights Committee.", - "values": [ - "Freedom of religion and belief", - "Treaty bodies" - ] - }, - { - "text": "Implement additional measures to combat discrimination, defamation and violence (including cyber racism) against the Arab population and Australian Muslims, against recently arrived migrants (primarily from Africa) and also foreign students (essentially coming from India) ", - "values": [ - "Freedom of religion and belief", - "Migrants", - "Minorities", - "Racial discrimination" - ] - }, - { - "text": "Continue its programs aimed at combating violence against women", - "values": [ - "Women's rights" - ] - }, - { - "text": "Investigate all cases of disappearances and homicides under civil courts and punish those responsible, and to this effect, strengthen the human rights unit of the Fiscalia General de la Nacion.", - "values": [ - "Enforced disappearances", - "Extrajudicial executions" - ] - }, - { - "text": "Take appropriate measures to protect the human rights of foreign migrant workers in linkage with the efforts to modify the Kafala system", - "values": [ - "Labour", - "Migrants" - ] - }, - { - "text": "Give full legal identity to all women residing in the Kingdom", - "values": [ - "Women's rights" - ] - }, - { - "text": "Prioritize enacting a Domestic Violence Bill ", - "values": [ - "Rights of the Child", - "Women's rights" - ] - }, - { - "text": "Take the necessary measures to include international standards on juvenile justice in the workings of the national judiciary", - "values": [ - "Justice", - "Rights of the Child" - ] - }, - { - "text": "Begin fully cooperating with United Nations human rights special procedures in order to improve the situation of human rights ", - "values": [ - "Special procedures" - ] - }, - { - "text": "Take strong legislative and administrative measures to effectively protect women's rights ", - "values": [ - "Women's rights" - ] - }, - { - "text": "Strengthen measures to improve conditions in the prisons. ", - "values": [ - "Detention" - ] - }, - { - "text": "Follow-up on the recommendations of Committee against Torture and OHCHR to empower civil courts to try offences against human rights, in particular torture and cruel, inhuman or degrading treatment committed by military personnel, even when it is claimed that they were service-related", - "values": [ - "Human rights violations by state agents", - "Torture and other CID treatment", - "Treaty bodies" - ] - }, - { - "text": "Adopt as soon as possible a Code on the Rights of the Child ", - "values": [ - "Rights of the Child" - ] - }, - { - "text": "Continue its efforts to combat corruption, in particular corruption involving law enforcement authorities", - "values": [ - "Corruption" - ] - }, - { - "text": "The delegation reaffirmed the commitment of Ghana to uphold human rights in the country. To this end, the Government shall continue to consult with all stakeholders in the country to ensure that respect for the human rights in Ghana is further improved and advanced, and remains an inclusive process", - "values": [ - "General" - ] - }, - { - "text": "Continue implementing its child protection package, including the adoption of the Code on the Protection of Children and the implementation of the road map of the plan of action against the involvement of children in armed conflict", - "values": [ - "International humanitarian law", - "Rights of the Child" - ] - }, - { - "text": "Prevent all forms of discrimination, especially discrimination based on sexual orientation or gender identity, ensuring equal treatment particularly in schools, health services and the armed forces", - "values": [ - "Sexual Orientation and Gender Identity" - ] - }, - { - "text": "Take efforts to strengthen the education system through the provision of mandatory training on human rights education", - "values": [ - "Human rights education and training" - ] - }, - { - "text": "Take the necessary steps to facilitate the process of qualifying stateless individuals to be granted nationality so that they can enjoy basic human rights", - "values": [ - "Statelessness and the right to nationality" - ] - }, - { - "text": "Ensure implementation of the Domestic Violence Act, especially on violence against women", - "values": [ - "Women's rights" - ] - }, - { - "text": "Continue the exemplary cooperation and interaction that exist between the Government and the National Human Rights Commission", - "values": [ - "National Human Rights Institution" - ] - }, - { - "text": "Undertake intensive public awareness programmes of the population relating to ritual murders", - "values": [ - "Human rights education and training" - ] - }, - { - "text": "Ensure that its draft Domestic Violence Bill addresses the investigation, prosecution and punishment of perpetrators of violence against women, and that it is implemented as a priority", - "values": [ - "Women's rights" - ] - }, - { - "text": "Take all necessary measures to ensure that the trade union rights of workers in Cambodia are fully respected and that trade unionists are able to exercise their activities in a climate free of intimidation and risk to their personal security and their lives", - "values": [ - "Labour" - ] - }, - { - "text": "Make further efforts to reinforce and protect the rights of the Muslim minorities in Myanmar", - "values": [ - "Freedom of religion and belief", - "Minorities" - ] - }, - { - "text": "Promote the principle of equality in the broadest sense possible, including with regard to nationality, foreign issues and in the areas of work, during the development of the new law on the rights of women ", - "values": [ - "Statelessness and the right to nationality", - "Women's rights" - ] - }, - { - "text": "Continue its efforts towards the abolition of the death penalty", - "values": [ - "Death penalty" - ] - }, - { - "text": "Consider legislative and administrative measures to recognize violence on the basis of gender identity or sexual orientation as a hate crime ", - "values": [ - "Sexual Orientation and Gender Identity" - ] - }, - { - "text": "Accede to the Rome Statute of the International Criminal Court, including accession to its Agreement on Privileges and Immunities", - "values": [ - "International instruments", - "Justice" - ] - }, - { - "text": "Allow international election observation in all upcoming elections", - "values": [ - "Elections" - ] - }, - { - "text": "Strengthen its efforts to combat sexual exploitation of and sexual violence against children", - "values": [ - "Rights of the Child" - ] - }, - { - "text": "Ensure that the rights and fundamental freedoms of persons with disabilities are respected by abolishing all practices of forced sterilization and coercive abortions of women and girls with disabilities, and by investigating and punishing their perpetrators", - "values": [ - "Disabilities", - "Right to health", - "Rights of the Child", - "Women's rights" - ] - }, - { - "text": "Adopt efficient educational policies, notably through enforcing full accountability for school violence, human rights training programmes for teachers, and continuous expansion of the school network and its resources to guarantee a truly obligatory and accessible primary education ", - "values": [ - "Human rights education and training", - "Right to education" - ] - }, - { - "text": "Explore and maximize the benefits from international cooperation and partnerships to support initiatives to combat trafficking in persons, especially women and children", - "values": [ - "Rights of the Child", - "Technical assistance and cooperation", - "Trafficking", - "Women's rights" - ] - }, - { - "text": "Strengthen its measure to protect its citizens from terrorism and extremism ", - "values": [ - "Counter-terrorism" - ] - }, - { - "text": "Consider decriminalizing consensual same-sex relations", - "values": [ - "Sexual Orientation and Gender Identity" - ] - }, - { - "text": "Ensure effective implementation of the legislation against trafficking of human beings and enhance support to the victims of trafficking, especially women and children", - "values": [ - "Rights of the Child", - "Trafficking", - "Women's rights" - ] - }, - { - "text": "Adopt and implement a comprehensive national human rights action plan ", - "values": [ - "General" - ] - }, - { - "text": "Review the incommunicado detention regime to ensure compliance with international human rights law", - "values": [ - "Detention" - ] - }, - { - "text": "Continue its efforts to preserve the languages and culture of ethnic minorities.", - "values": [ - "Minorities" - ] - }, - { - "text": "Further intensify its efforts to decrease the HIV-AIDS prevalence in the context of its National Health Charter, with a special focus on teenagers.", - "values": [ - "HIV - Aids", - "Rights of the Child" - ] - }, - { - "text": "Pursue its efforts aimed at supplying food to detainees", - "values": [ - "Detention", - "Right to food" - ] - }, - { - "text": "Take further steps to halt and reverse the increase in the number of violent hate crimes", - "values": [ - "Other" - ] - }, - { - "text": "Modify the existing Penal Code in order to definitely abolish the death penalty in Tanzania legislation ", - "values": [ - "Death penalty" - ] - }, - { - "text": "Increase efforts to combat trafficking in persons, inter alia, through the development of international cooperation with interested Governments, international organizations and non-governmental organizations ", - "values": [ - "Civil society", - "Trafficking" - ] - }, - { - "text": "It declared the Government's firm commitment to gender mainstreaming and indicated that a range of policy initiatives were being undertaken, including the formulation of a national policy for gender equality.", - "values": [ - "Women's rights" - ] - }, - { - "text": "Expedite effort to establish a national human rights institution in conformity with the Paris Principles ", - "values": [ - "National Human Rights Institution" - ] - }, - { - "text": "Respect, protect and fulfill the human rights of stateless Rohingya persons, prioritize improving the situation of the Rohingya refugees, finalize its refugee policy and take measures to reinstate the resettlement programme", - "values": [ - "Asylum-seekers - refugees", - "Freedom of religion and belief", - "Minorities", - "Statelessness and the right to nationality" - ] - }, - { - "text": "Come up with sustainable and comprehensive measures to ensure lasting peace among tribal groups ", - "values": [ - "Public security" - ] - }, - { - "text": "Accede to the 1951 Refugee Convention on Refugees and its 1967 Optional Protocol", - "values": [ - "Asylum-seekers - refugees", - "International instruments" - ] - }, - { - "text": "Take steps to fully harmonize the nationality law to provide women the right to acquire, change or retain their nationality, on an equal basis with men, in line with the provisions of the Convention on the Elimination of Discrimination against Women", - "values": [ - "International instruments", - "Women's rights" - ] - }, - { - "text": "Strengthen the child and adolescent protection system to especially benefit adolescent criminal responsibility issues ", - "values": [ - "Justice", - "Rights of the Child" - ] - }, - { - "text": "Move on speedily to the ratification and/or application of human rights instruments, particularly the International Covenant on Civil and Political Rights", - "values": [ - "CP rights - general", - "International instruments" - ] - }, - { - "text": "Ensure that all complaints of violence, including sexual violence against detainees perpetrated or facilitated by police, are fully investigated and that suspected perpetrators are brought to justice, in line with concerns raised by the Special Rapporteur on the question of torture ", - "values": [ - "Detention", - "Human rights violations by state agents", - "Special procedures", - "Torture and other CID treatment" - ] - }, - { - "text": "Continue its efforts to improve the justice and legal systems in accordance with the newly adopted Constitution", - "values": [ - "Justice" - ] - }, - { - "text": "Continue its efforts to provide the National Human Rights Commission with more independence and resources", - "values": [ - "National Human Rights Institution" - ] - }, - { - "text": "Continue efforts to improve the participation of women in decisionmaking", - "values": [ - "Women's rights" - ] - }, - { - "text": "Continue its efforts to guarantee the best implementation of the 2012 long-term, comprehensive strategy for development", - "values": [ - "Development" - ] - }, - { - "text": "Do not consider the reduction of the official development assistance, even while taking cost-cutting measures, and actually increase it to the committed level of 0.7 per cent", - "values": [ - "Development" - ] - }, - { - "text": "In relation to the Roma community adopt legislative and practical measures to combat discrimination against the members of this community guaranteeing the effective exercise of their rights", - "values": [ - "Minorities" - ] - }, - { - "text": "Address the concerns of UNICEF that the principles and provisions of the Convention on the Rights of the Child were not, as at 2010, explicitly set forth in the domestic legislation ", - "values": [ - "International instruments", - "Rights of the Child" - ] - }, - { - "text": "Include a gender perspective into its policies and programmes to combat HIV/AIDS, taking into account what has been pointed out by CEDAW", - "values": [ - "HIV - Aids", - "Treaty bodies", - "Women's rights" - ] - }, - { - "text": "Establish a procedure for determining the best interest of the children during all asylum and refugee processes ", - "values": [ - "Asylum-seekers - refugees", - "Rights of the Child" - ] - }, - { - "text": "Taking into account the section in the national report relative to the fight against discrimination and the promotion of freedom of opinion and expression, strengthen action to ensure the effective implementation of legislation against discrimination and religious violence", - "values": [ - "Freedom of opinion and expression", - "Freedom of religion and belief" - ] - }, - { - "text": "Take adequate measures to ensure the definite decommissioning of the Guantanamo Military Prison", - "values": [ - "Detention" - ] - }, - { - "text": "Ban corporal punishment as a disciplinary measure in schools and in homes, and conduct awareness campaigns so as to reduce the scope of such action ", - "values": [ - "Human rights education and training", - "Rights of the Child", - "Torture and other CID treatment" - ] - }, - { - "text": "Strengthen its efforts to effectively enforce the criminalization of female genital mutilation, as well as the implementation of a national plan of action against female genital mutilation ", - "values": [ - "Rights of the Child", - "Torture and other CID treatment", - "Women's rights" - ] - }, - { - "text": "Adopt further measures to ensure: accountability of the police for their proper, sensitive and effective conduct in cases of violence against women, and better protection of in particular aboriginal women against all violence, including through addressing their low socio-economic status and discrimination against them, better accessibility of alternative-protected housing for victims of domestic violence", - "values": [ - "Indigenous peoples", - "Women's rights" - ] - }, - { - "text": "Incorporate the International Convention on the Elimination of All Forms of Racial Discrimination into the domestic law to ensure direct and full application of the principles and provisions of the Convention", - "values": [ - "International instruments", - "Racial discrimination" - ] - }, - { - "text": "Take further measures to fight against sexual violence against women and children.", - "values": [ - "Rights of the Child", - "Women's rights" - ] - }, - { - "text": "Continue developing a long-standing democratic culture, including by increasing the participation of women in decision-making and intensifying efforts to strengthen accountability", - "values": [ - "Women's rights" - ] - }, - { - "text": "Ratify the Optional Protocol to CEDAW ", - "values": [ - "International instruments", - "Women's rights" - ] - }, - { - "text": "Impose a moratorium on executions with a view to abolishing the death penalty for federal offences", - "values": [ - "Death penalty" - ] - }, - { - "text": "Develop a National Action Plan for Human Rights in order to framework a systematic and comprehensive approach to the promotion and protection of human rights", - "values": [ - "General" - ] - }, - { - "text": "Ensure, without any discrimination, the rights of people with disabilities and others belonging to vulnerable groups, such as women and children ", - "values": [ - "Disabilities", - "Rights of the Child", - "Women's rights" - ] - }, - { - "text": "Consider ratifying the Convention against Torture and its Optional Protocol, and the International Convention for the Protection of All Persons from Enforced Disappearance", - "values": [ - "Detention", - "Enforced disappearances", - "International instruments", - "Torture and other CID treatment" - ] - }, - { - "text": "Actively improve the protection of female domestic workers against violence and sexual abuse", - "values": [ - "Women's rights" - ] - }, - { - "text": "Consider ratifying other remaining core human rights conventions.", - "values": [ - "International instruments" - ] - }, - { - "text": "Provide for efficient administrative procedures to make use of the significant financial means available through European Union funds and other sources for projects supporting the development of the Roma.", - "values": [ - "Minorities" - ] - }, - { - "text": "Prohibit the practice of corporal punishment ", - "values": [ - "Rights of the Child", - "Torture and other CID treatment" - ] - }, - { - "text": "Respect the human rights of internally displaced persons and refugees.", - "values": [ - "Asylum-seekers - refugees", - "Internally displaced persons" - ] - }, - { - "text": "Undertake effective and impartial investigations into all reports of extrajudicial executions, torture, other ill-treatment and violence, to bring to justice those suspected of criminal responsibility and to ensure that human rights of the whole population are being protected, especially those of most vulnerable groups, including women and children", - "values": [ - "Extrajudicial executions", - "Rights of the Child", - "Torture and other CID treatment", - "Women's rights" - ] - }, - { - "text": "Step up its efforts to strengthen the capacity of the police in terms of both number of officers and quality of duty performed, with a view to preventing and eliminating abuses, corruption and excessive use of force by police officers", - "values": [ - "Corruption", - "Human rights violations by state agents" - ] - }, - { - "text": "Consider adopting measures to prevent gender-based violence, including amending legislation to include such an offence ", - "values": [ - "Women's rights" - ] - }, - { - "text": "Step up efforts to implement the resolutions on the World Programme for Human Rights Education, including through the preparation of a national plan and reports", - "values": [ - "Human rights education and training" - ] - }, - { - "text": "Respond positively to outstanding visit requests by special procedures and issue a standing invitation", - "values": [ - "Special procedures" - ] - }, - { - "text": "Develop a comprehensive Women Rights Plan, aimed at eliminating discriminatory practices, as is reflected in CEDAW's report of February 2012 ", - "values": [ - "International instruments", - "Women's rights" - ] - }, - { - "text": "Continue efforts to consolidate the rights of the child, protect them from sexual exploitation and combat trafficking in children and child marriage", - "values": [ - "Rights of the Child", - "Trafficking" - ] - }, - { - "text": "Take effective measures to increase women's representation in decision-making positions in all areas, close the gender pay gap and eliminate strong gender role stereotypes and ensure that all women workers benefit from the maternity benefits scheme", - "values": [ - "Women's rights" - ] - }, - { - "text": "Strengthen the capacity of the Human Rights Commission in South Sudan to facilitate access to justice for victims and witnesses, with due regard for their protection", - "values": [ - "Justice", - "National Human Rights Institution" - ] - }, - { - "text": "Continue developing the domestic legislation and institutional framework for the promotion and protection of human rights ", - "values": [ - "General" - ] - }, - { - "text": "Bring all legislation concerning communication surveillance in line with international human rights standards and, especially, ensure that all communications surveillance are tested for necessity and proportionality", - "values": [ - "International instruments", - "Privacy" - ] - }, - { - "text": "Continue to strengthen its policies aimed at increasing the enrolment rate in primary and secondary education, and to implement the measures necessary to achieve the Millennium Development Goals in terms of reducing illiteracy rates", - "values": [ - "Right to education" - ] - }, - { - "text": "Continue to review its legislation concerning the death penalty ", - "values": [ - "Death penalty" - ] - }, - { - "text": "Ensure laws safeguarding women's rights are effectively enforced, including the law banning female genital mutilation", - "values": [ - "Rights of the Child", - "Torture and other CID treatment", - "Women's rights" - ] - }, - { - "text": "Strengthen measures to implement the country\u2019s National Health Insurance Scheme", - "values": [ - "Right to health" - ] - }, - { - "text": "Consider establishing a national independent mechanism to monitor all places of detention.", - "values": [ - "Detention" - ] - }, - { - "text": "Continue reinforcing the mandate of the Commission on Implementation of international obligations in the field of human rights", - "values": [ - "National Human Rights Institution" - ] - }, - { - "text": "Continue its efforts to strengthen the institutional mechanisms to combat and prevent trafficking of persons, especially that of children", - "values": [ - "Rights of the Child", - "Trafficking" - ] - }, - { - "text": "Continue on promoting policies aiming at guarantying respect of cultural diversity in its territory ", - "values": [ - "Other" - ] - }, - { - "text": "Take necessary measures to eliminate the discriminatory barriers to access to HIV related health services, especially for women and girls in rural zones ", - "values": [ - "HIV - Aids", - "Right to health", - "Rights of the Child", - "Women's rights" - ] - }, - { - "text": "Continue to promote and protect the rights of women and children", - "values": [ - "Rights of the Child", - "Women's rights" - ] - }, - { - "text": "Sustain efforts aimed at ensuring equitable work opportunities for women", - "values": [ - "Women's rights" - ] - }, - { - "text": "Take legislative measures to guarantee the independence of the National Peace and Reconciliation Commission and to ensure it is provided with the necessary powers and resources to effectively fulfil its constitutional mandate", - "values": [ - "Justice" - ] - }, - { - "text": "Create an independent national human rights institution in conformity with the Paris Principles", - "values": [ - "National Human Rights Institution" - ] - }, - { - "text": "Develop a national strategy for human rights education in the school system at all levels, in accordance with the plan of action 2005-2009 of the World Programme for Human Rights Education, including the review and revision of curricula and textbooks, the training of teachers and the practice of human rights in the school community.", - "values": [ - "Human rights education and training" - ] - }, - { - "text": "Conclude the drafting of the national human rights action plan", - "values": [ - "General" - ] - }, - { - "text": "Hold regular consultations with organizations representing persons with disabilities, in particular to review whether current legislation adequately addresses all the rights in the CRPD", - "values": [ - "Disabilities", - "International instruments" - ] - }, - { - "text": "Enhance freedom of expression through radio by enacting legislation that ensures the mechanism for impartial issuing of broadcasting licenses ", - "values": [ - "Freedom of opinion and expression" - ] - }, - { - "text": "Harmonize its Penal Code and legislation with the CRC in order to eradicate corporal punishment of children in schools and other settings ", - "values": [ - "International instruments", - "Rights of the Child", - "Torture and other CID treatment" - ] - }, - { - "text": "Eliminate the practice of female genital mutilation ", - "values": [ - "Rights of the Child", - "Torture and other CID treatment", - "Women's rights" - ] - }, - { - "text": "Adopt further measures aimed at improving the state of media freedom and protecting the working conditions of journalists and human rights defenders in the Country ", - "values": [ - "Freedom of the press", - "Human rights defenders" - ] - }, - { - "text": "Ratify the International Convention on the Protection of the Rights of All Migrant Workers and Members of Their Families ICRMW ", - "values": [ - "International instruments", - "Labour", - "Migrants" - ] - }, - { - "text": "Enhance its efforts on the promotion and protection of the rights of persons with disabilities in line with its Strategy for Integration 2008-2016", - "values": [ - "Disabilities" - ] - }, - { - "text": "Develop appropriate mechanisms to prevent all forms of violence against women, effectively prosecute perpetrators of such violence and provide adequate redress for victims", - "values": [ - "Women's rights" - ] - }, - { - "text": "Continue to engage with human rights organizations, and look to deepen and broaden its engagement it to include a wider representation of groups ", - "values": [ - "Civil society" - ] - }, - { - "text": "Prosecute and punish those responsible for torture", - "values": [ - "Torture and other CID treatment" - ] - }, - { - "text": "Fight with resolve sexual violence and impunity and increase the level of representation of women in society.", - "values": [ - "Impunity", - "Women's rights" - ] - }, - { - "text": "Strengthen its efforts to promote direct funding and develop a range of living options for persons with disabilities", - "values": [ - "Disabilities" - ] - }, - { - "text": "Pursue its efforts, with the support of OHCHR, for the submission of its reports to the treaty bodies in due course.", - "values": [ - "Technical assistance and cooperation", - "Treaty bodies" - ] - }, - { - "text": "Establish immediately a publicly accessible central register for all persons missing or in custody", - "values": [ - "Detention" - ] - }, - { - "text": "Endorse the recommendations of the Special Rapporteur on the situation of human rights defenders.", - "values": [ - "Human rights defenders", - "Special procedures" - ] - }, - { - "text": "Continue to increase substantially spending on health in order to strengthen access to health services and, as such, effective enjoyment by all to the right to health. ", - "values": [ - "Right to health" - ] - }, - { - "text": "Review the provisions on defamation and insult in articles 139 and 140 of the Criminal Code ", - "values": [ - "Freedom of opinion and expression" - ] - }, - { - "text": "Continue its efforts to educate the population on human rights, including by introducing these concepts in the curricula at all school levels ", - "values": [ - "Human rights education and training" - ] - }, - { - "text": "Strengthen the policies of supplementary payments of income and housing assistance, in order to avoid more families being unable to pay their mortgages", - "values": [ - "Right to housing" - ] - }, - { - "text": "Adopt the measures necessary to ensure the independence of the judicial branch from the executive branch in order to promote the rule of law and guarantee the proper functioning of the Constitutional Court and the Supreme Court", - "values": [ - "Justice" - ] - }, - { - "text": "Ratify international instruments in the prevention of trafficking in persons", - "values": [ - "International instruments", - "Trafficking" - ] - }, - { - "text": "Persist in its efforts to eradicate corruption, corporal punishment of children, discrimination against women and domestic violence ", - "values": [ - "Corruption", - "Rights of the Child", - "Torture and other CID treatment", - "Women's rights" - ] - }, - { - "text": "Continue and enhance existing measures to protect women and children from violence, such as the training of Honduran police and the development of the dedicated Gender Unit within the police system", - "values": [ - "Human rights education and training", - "Rights of the Child", - "Women's rights" - ] - }, - { - "text": "Begin the accreditation process (with the International Coordinating Committee of the National Human Rights Institutions), as the Paris Principles play an important role in the promotion and protection of international human rights standards at the national level ", - "values": [ - "International instruments", - "National Human Rights Institution" - ] - }, - { - "text": "Develop a code of conduct, or similar type of document, for the respect for human rights within the armed forces and the police and provide them with training on their human rights obligations", - "values": [ - "Human rights education and training" - ] - }, - { - "text": "Implement public awareness and education programmes on sexuality aimed at adolescents that includes information on contraceptive health, family planning, sexual and reproductive health, sexually transmitted diseases and HIV/AIDs ", - "values": [ - "HIV - Aids", - "Right to health" - ] - }, - { - "text": "Ensure the explicit legal prohibition of corporal punishment of children in all settings", - "values": [ - "Rights of the Child", - "Torture and other CID treatment" - ] - }, - { - "text": "Adopt measures to fight against the use of violence as a weapon of war", - "values": [ - "International humanitarian law" - ] - }, - { - "text": "Consider accession to the United Nations Convention on Transnational Organized Crime and its Protocol to prevent, suppress and punish trafficking in persons, especially women and children", - "values": [ - "International instruments", - "Trafficking" - ] - }, - { - "text": "Enact legislation on violence against women, and to intensify its efforts to curb gender-based violence", - "values": [ - "Women's rights" - ] - }, - { - "text": "Establish a moratorium on the death penalty as a first step towards abolition of the death penalty", - "values": [ - "Death penalty" - ] - }, - { - "text": "Continue assisting former-combatants through livelihood schemes", - "values": [ - "Justice" - ] - }, - { - "text": "Consider ratifying the International Convention on the Protection of the Rights of All Migrant Workers and Members of Their Families, in line with recommendation 1737 of 17 March 2006 adopted by the Parliamentary Assembly of the Council of Europe, to which Croatia is an active member ", - "values": [ - "International instruments", - "Labour", - "Migrants" - ] - }, - { - "text": "Sensitize the police, the judiciary, public administration and the general population to the importance of gender equality.", - "values": [ - "Human rights education and training", - "Women's rights" - ] - }, - { - "text": "Review criminal justice procedures in order to reduce the length of detention without trial ", - "values": [ - "Detention", - "Justice" - ] - }, - { - "text": "Prohibit racist organizations, and take all measures to ensure that racist propaganda cannot be disseminated and that people are appropriately punished for committing racist crimes ", - "values": [ - "Racial discrimination" - ] - }, - { - "text": "Repeal the amendment which allows for slavery as a punishment ", - "values": [ - "Other" - ] - }, - { - "text": "Redouble efforts to eliminate extra-judicial killings and acts of violence and torture, and to educate military and police personnel on human rights principles", - "values": [ - "Extrajudicial executions", - "Human rights education and training", - "Torture and other CID treatment" - ] - }, - { - "text": "Sign and ratify the International Convention on the Protection of All Persons from Enforced Disappearance.", - "values": [ - "Enforced disappearances", - "International instruments" - ] - }, - { - "text": "Ensure that State institutions and the judiciary uphold human rights and that new legislation does not contravene international human rights law.", - "values": [ - "International instruments", - "Justice" - ] - }, - { - "text": "Improve access to confidential family planning services and sexual and reproductive health services", - "values": [ - "Right to health", - "Women's rights" - ] - }, - { - "text": "Immediately implement Security Council resolutions 1559 and 1701 by disbanding and disarming all militias and armed factions, in particular Hizbullah, and restore security and stability for all residents of Lebanon", - "values": [ - "Public security" - ] - }, - { - "text": "Adopt a comprehensive anti-discrimination law and effectively implement it", - "values": [ - "Other" - ] - }, - { - "text": "Take active steps to reform its labour laws in order to improve working conditions for foreign workers, to give female domestic workers the necessary legal protection and to address the recent ruling by ILO on forced labour and freedom of association and collective bargaining ", - "values": [ - "Freedom of association and peaceful assembly", - "Labour", - "Migrants", - "Women's rights" - ] - }, - { - "text": "Provide inclusive education for children with disabilities and include human rights education in schools", - "values": [ - "Disabilities", - "Human rights education and training", - "Right to education", - "Rights of the Child" - ] - }, - { - "text": "Continue taking measures to face the perverse effects of the illegal coercive unilateral measures imposed on the country by some powers", - "values": [ - "Other" - ] - }, - { - "text": "Reject non-tolerant attitudes and consider a strategy on balanced and objective information to the population through the education system, attitude campaigns and political statements", - "values": [ - "Human rights education and training" - ] - }, - { - "text": "Adopt measures to ensure protection for children under the age of 18 from hazardous and unsafe working environments ", - "values": [ - "Labour", - "Rights of the Child" - ] - }, - { - "text": "Strengthen national capacities to assist victims of domestic violence", - "values": [ - "Rights of the Child", - "Women's rights" - ] - }, - { - "text": "Strengthen its judicial system and take effective measures to fight poverty ", - "values": [ - "Justice", - "Poverty" - ] - }, - { - "text": "Accede to the Optional Protocol to the Convention on the Elimination of All Forms of Discrimination against Women", - "values": [ - "International instruments", - "Women's rights" - ] - }, - { - "text": "Broaden the scope and application of legal and institutional reforms to address all forms of discriminatory treatment against irregular migrants and asylum seekers with special focus on protecting the rights of vulnerable groups.", - "values": [ - "Asylum-seekers - refugees", - "Migrants" - ] - }, - { - "text": "Implement human rights education and training programmes aimed at combating discrimination based on ethnic origin", - "values": [ - "Human rights education and training", - "Minorities", - "Racial discrimination" - ] - }, - { - "text": "Take necessary measures to fight against discrimination against people from minority ethnic communities", - "values": [ - "Minorities", - "Racial discrimination" - ] - }, - { - "text": "Adopt measures to strengthen the independence of the judiciary and guard against corruption and political interference ", - "values": [ - "Corruption", - "Justice" - ] - }, - { - "text": "Strengthen efforts to reduce poverty, malnutrition and illiteracy ", - "values": [ - "Poverty", - "Right to education", - "Right to food" - ] - }, - { - "text": "Pursue its work on reforms with a view to ensure the independence and impartiality of the judiciary and provide judges with adequate human rights training", - "values": [ - "Human rights education and training", - "Justice" - ] - }, - { - "text": "Continue efforts to elaborate and implement policies aimed at eliminating all forms of discrimination and ensuring equality and full enjoyment of all human rights for all citizens.", - "values": [ - "General" - ] - }, - { - "text": "Strengthen cooperation with UNHCR in order to guarantee access to a just procedure in identifying the protection needs of those travelling to or are in Italian territory", - "values": [ - "Freedom of movement" - ] - }, - { - "text": "Consider developing Human Rights Indicators as suggested by OHCHR", - "values": [ - "Other" - ] - }, - { - "text": "Ensure that decent sanitary conditions are guaranteed for detainees ", - "values": [ - "Detention" - ] - }, - { - "text": "Ratify the International Convention for the Protection of All Persons from Enforced Disappearance (CED) ", - "values": [ - "Enforced disappearances", - "International instruments" - ] - }, - { - "text": "Take immediate steps to permit abortion in cases where a woman\u2019s or a girl\u2019s life or physical or mental health is in danger, where the pregnancy is a result of rape or incest and in cases of fetal impairment, with a view to decriminalizing abortion in the near future", - "values": [ - "Right to health", - "Women's rights" - ] - }, - { - "text": "Continue its efforts in human rights training and awareness raising", - "values": [ - "Human rights education and training" - ] - }, - { - "text": "Pursue efforts to combat overcrowding in prisons ", - "values": [ - "Detention" - ] - }, - { - "text": "Intensify efforts to combat violence against women, including the elimination of female genital mutilation, by increasing resources for public awareness and educational campaigns, and by encouraging faster legislative action against gender-based violence", - "values": [ - "Human rights education and training", - "Rights of the Child", - "Torture and other CID treatment", - "Women's rights" - ] - }, - { - "text": "Further strengthen cooperation with the United Nations human rights mechanisms in the field of juvenile rights ", - "values": [ - "Justice", - "Rights of the Child", - "Special procedures", - "Treaty bodies", - "UPR process" - ] - }, - { - "text": "Ratify international instruments on human rights to which the country is not yet party", - "values": [ - "International instruments" - ] - }, - { - "text": "Develop comprehensive legislation and policies in favour of persons with disabilities, particularly with regard to non-discrimination, accessibility, education and awareness-raising ", - "values": [ - "Disabilities", - "Human rights education and training" - ] - }, - { - "text": "Continue efforts aimed at protecting and promoting human rights and fundamental freedoms.", - "values": [ - "General" - ] - }, - { - "text": "Continue its efforts to further promote the integration of young people into the labour market", - "values": [ - "Development" - ] - }, - { - "text": "Establish support systems to safeguard the rights of child and adolescent victims of commercial sexual exploitation, at the national level, for the period 2015-2020", - "values": [ - "Labour", - "Rights of the Child" - ] - }, - { - "text": "Consider adhering to the Convention on the Rights of All Migrant Workers and the Members of Their Families as recommended by the Parliamentary Assembly of the Council of Europe in its recommendation number 1737 of 17 March 2006 ", - "values": [ - "International instruments", - "Labour", - "Migrants" - ] - }, - { - "text": "Adopt legislation that explicitly recognizes homophobic and transphobic motivation for a criminal offence as an aggravating circumstance in its criminal law", - "values": [ - "Sexual Orientation and Gender Identity" - ] - }, - { - "text": "Ensure transparent and effective national investigations into all cases of violence and all cases of deaths and bring those responsible to justice", - "values": [ - "Extrajudicial executions" - ] - }, - { - "text": "Ensure that the new Police and Criminal Evidence Bill fully addresses the practice of detention on the basis of "provisional information" by specifying that detention beyond a short time limit, defined in statute, is only possible once a suspect is formally charged", - "values": [ - "Detention" - ] - }, - { - "text": "Adopt or ratify the International Convention on the Protection of the Rights of All Migrant Workers and Members of Their Families", - "values": [ - "International instruments", - "Labour", - "Migrants" - ] - }, - { - "text": "Implement its National Women Development Policy of 2011 and take effective measures in order to tackle the issue of early marriages ", - "values": [ - "Rights of the Child", - "Women's rights" - ] - }, - { - "text": "Raise the capacity of the Vital Events and National Identity Card Registration Agency in order to ensure the right of all persons to birth and death registration ", - "values": [ - "Rights of the Child", - "Statelessness and the right to nationality" - ] - }, - { - "text": "Further promote inclusive and accessible education to children with disabilities at ordinary schools ", - "values": [ - "Disabilities", - "Right to education", - "Rights of the Child" - ] - }, - { - "text": "Combat various forms of violence against women", - "values": [ - "Women's rights" - ] - }, - { - "text": "Put in place a follow-up and evaluation mechanism on the situation of protection of children and strengthen the institutions working in that area", - "values": [ - "Rights of the Child" - ] - }, - { - "text": "Lift reservations to the Convention on the Rights of the Child (CRC)", - "values": [ - "International instruments", - "Rights of the Child" - ] - }, - { - "text": "Consider the possibility of ratifying the Optional Protocol to the Convention on the Elimination of All Forms of Discrimination against Women, the International Convention on the Protection of the Rights of All Migrant Workers and Members of Their Families, and the International Convention for the Protection of All Persons from Enforced Disappearance ", - "values": [ - "Enforced disappearances", - "International instruments", - "Labour", - "Migrants", - "Women's rights" - ] - }, - { - "text": "Continue cooperation with civil society organizations to reduce the phenomena of violence against women ", - "values": [ - "Civil society", - "Women's rights" - ] - }, - { - "text": "Take further measures to promote gender equality and eradicate stereotypes regarding the roles and responsibilities of women in society", - "values": [ - "Women's rights" - ] - }, - { - "text": "Continue to provide and improve training programmes on human rights for the judiciary, law enforcement personnel and lawyers", - "values": [ - "Human rights education and training", - "Justice" - ] - }, - { - "text": "Accelerate the issuing of invitations to rapporteurs who have been requesting to visit the country for several years ", - "values": [ - "Special procedures" - ] - }, - { - "text": "Take concrete and effective actions to implement the existing legal framework and to tackle the widespread impunity for crimes related to sexual violence ", - "values": [ - "Impunity", - "Rights of the Child", - "Women's rights" - ] - }, - { - "text": "Take into account the outcomes of this universal periodic review in the process of transformation and national reconstruction and pay particular attention to the most vulnerable social groups, among which, women and children ", - "values": [ - "Rights of the Child", - "UPR process", - "Women's rights" - ] - }, - { - "text": "Continue taking measures in order to protect the rights of persons with disabilities and develop programmes to ensure their enjoyment of their rights to education, health, housing and labour", - "values": [ - "Disabilities", - "Labour", - "Right to education", - "Right to health", - "Right to housing" - ] - }, - { - "text": "Review its practice of imposing capital and corporal punishment and prohibit any form of corporal punishment. ", - "values": [ - "Death penalty", - "Torture and other CID treatment" - ] - }, - { - "text": "Ratify the Second Optional Protocol to the ICCPR and the Optional Protocol to the ICESCR ", - "values": [ - "Death penalty", - "ESC rights - general", - "International instruments" - ] - }, - { - "text": "Adopt all provisions necessary to prevent acts of torture and cruel, inhuman or degrading treatment committed by penitentiary or law enforcement personnel, and establish a system for the independent monitoring of all detention centres without exception ", - "values": [ - "Detention", - "Human rights violations by state agents", - "Torture and other CID treatment" - ] - }, - { - "text": "Authorize the Prosecutor of the International Criminal Court to conduct a mission in Cote d'Ivoire, as prescribed by the Rome Statute ", - "values": [ - "International instruments", - "Justice" - ] - }, - { - "text": "Favourably consider revising the Public Order Amendment Decree and the Media Industry Development Decree in a way that fully ensures the rights to freedoms of association, assembly, press and expression", - "values": [ - "Freedom of association and peaceful assembly", - "Freedom of opinion and expression", - "Freedom of the press" - ] - }, - { - "text": "Prevent acts of torture and ensure that allegations of torture and ill-treatment are investigated promptly and efficiently", - "values": [ - "Torture and other CID treatment" - ] - }, - { - "text": "Take steps to protect IDPs including through the provision of durable housing solutions and by ensuring that forced evictions are carried out in accordance with international standards ", - "values": [ - "Internally displaced persons" - ] - }, - { - "text": "Accelerate the enactment of laws for the protection of lesbian, gay, bisexual, transgender and intersex persons, in particular the Transgender Persons (Protection of Rights) Bill", - "values": [ - "Sexual Orientation and Gender Identity" - ] - }, - { - "text": "Continue to engage positively with OHCHR, the treaty bodies, the special procedures and other UN institutions, and continue to pursue its efforts to implement their recommendations ", - "values": [ - "Special procedures", - "Treaty bodies" - ] - }, - { - "text": "Consider establishing a permanent inter-ministerial committee responsible for the implementation of its international human rights obligations", - "values": [ - "Special procedures", - "Treaty bodies", - "UPR process" - ] - }, - { - "text": "Review the latest proposed or adopted amendments regarding the NGO and media laws and the 2010 amendments to the Civil and Penal Codes in order to ensure that Armenian legislation is in line with the best practices and international standards in the area of freedom of expression and association", - "values": [ - "Civil society", - "Freedom of association and peaceful assembly", - "Freedom of opinion and expression", - "Freedom of the press" - ] - }, - { - "text": "Effectively and promptly investigate all reports of attacks or threats against human rights defenders and journalists and bring perpetrators to justice", - "values": [ - "Freedom of the press", - "Human rights defenders" - ] - }, - { - "text": "Intensify efforts to meet the MDG5 on maternal mortality, including by ensuring universal access to SRHR and to information, education and counselling ", - "values": [ - "Right to health", - "Women's rights" - ] - }, - { - "text": "Strengthen the judiciary and law enforcement for a more effective investigation and prosecution of trafficking cases", - "values": [ - "Justice", - "Trafficking" - ] - }, - { - "text": "Strengthen the application of the legislation in combating discrimination and violence, above all sexual violence, against women and girls ", - "values": [ - "Rights of the Child", - "Women's rights" - ] - }, - { - "text": "Intensify its efforts to ensure birth registration for everyone, especially children and adolescents in rural areas", - "values": [ - "Rights of the Child", - "Statelessness and the right to nationality" - ] - }, - { - "text": "Seek technical assistance and cooperation from the international community to fight the HIV/AIDS pandemic and to strengthen its human rights institution", - "values": [ - "HIV - Aids", - "National Human Rights Institution", - "Technical assistance and cooperation" - ] - }, - { - "text": "Continue efforts to increase the number of neighbourhood primary and secondary schools, and to strengthen higher education", - "values": [ - "Right to education" - ] - }, - { - "text": "Continue its intensified efforts against human trafficking ", - "values": [ - "Trafficking" - ] - }, - { - "text": "Submit the required information to the Committee on the Elimination of Racial Discrimination", - "values": [ - "Racial discrimination", - "Treaty bodies" - ] - }, - { - "text": "Put in place an independent organ to investigate complaints of abuses perpetrated by members of the country's security forces", - "values": [ - "Human rights violations by state agents" - ] - }, - { - "text": "Take steps towards the complete abolition of the death penalty ", - "values": [ - "Death penalty" - ] - }, - { - "text": "Abolish all provisions of laws and regulations that do not provide equal rights to women ", - "values": [ - "Women's rights" - ] - }, - { - "text": "Step up its efforts in bringing to justice perpetrators of trafficking of women and sexual exploitation, as well as ensuring appropriate and timely compensation for victims ", - "values": [ - "Trafficking", - "Women's rights" - ] - }, - { - "text": "Consider ratifying CEDAW, CAT, the International Convention on the Protection of the Rights of All Migrant Workers and Members of Their Families (ICRMW), ICCP OP2 and the International Convention for the Protection of All Persons from Enforced Disappearance", - "values": [ - "International instruments" - ] - }, - { - "text": "Take necessary measures to guarantee the enjoyment of all fundamental freedoms, including the participation in political and public affairs by all", - "values": [ - "CP rights - general", - "Elections", - "General" - ] - }, - { - "text": "Ratify core international human rights treaties, including the ICCPR, ICESCR, CEDAW", - "values": [ - "Civil society", - "ESC rights - general", - "International instruments", - "Women's rights" - ] - }, - { - "text": "Safeguard freedom of expression, association and of the press and eradicate any type of activity that may be considered torture under judicial procedures ", - "values": [ - "Freedom of association and peaceful assembly", - "Freedom of opinion and expression", - "Freedom of the press" - ] - }, - { - "text": "Continue to implement policies for the development of its people, including measures to eradicate poverty and ensure food security", - "values": [ - "Poverty", - "Right to food" - ] - }, - { - "text": "Continue to provide adequate human and financial resources to fully implement its domestic laws protective of women's rights", - "values": [ - "Women's rights" - ] - }, - { - "text": "Continue its efforts to integrate human rights education in the remaining grades in schools ", - "values": [ - "Human rights education and training" - ] - }, - { - "text": "Continue promoting measures to ensure the right to identity for children in rural areas", - "values": [ - "Rights of the Child" - ] - }, - { - "text": "Further strengthen its efforts on implementing the first cycle's recommendation no 5 on preventing delays of the on-going human rights trials", - "values": [ - "Justice" - ] - }, - { - "text": "Adopt ILO Convention No. 138 (1973) concerning Minimum Age for Admission to Employment so that no child under 14 years of age is engaged in an apprenticeship, and ensure that Children and Adolescents' Defence Committees have adequate resources to fulfil their tasks", - "values": [ - "International instruments", - "Labour", - "Rights of the Child" - ] - }, - { - "text": "Investigate cases of child labour, bring alleged perpetrators to justice and ensure that all victims are protected, assisted, rehabilitated and compensated", - "values": [ - "Labour", - "Rights of the Child" - ] - }, - { - "text": "Ensure effective implementation of the National Plan of Action for children (2010-2016)", - "values": [ - "Rights of the Child" - ] - }, - { - "text": "Intensify its efforts to promote multiculturalism at all levels ", - "values": [ - "Other" - ] - }, - { - "text": "Ensure the proper and thorough investigation of torture cases in prison facilities and at police stations ", - "values": [ - "Detention", - "Torture and other CID treatment" - ] - }, - { - "text": "Ratify the International Convention on the Protection of the Rights of All Migrant Workers and Members of Their Families and take the necessary steps towards realising the effective protection of migrant workers and members of their families", - "values": [ - "International instruments", - "Labour", - "Migrants" - ] - }, - { - "text": "Withdraw its reservations to the Convention on the Rights of the Child and its Protocols ", - "values": [ - "International instruments", - "Rights of the Child" - ] - }, - { - "text": "Consider ratifying the International Convention on the Rights of Migrant Workers and Members of Their Families", - "values": [ - "International instruments", - "Labour", - "Migrants" - ] - }, - { - "text": "While noting the efforts to strengthen the judiciary, encourage Poland to make legal amendments that will make it possible to effectively prosecute offences related to torture and other cruel, inhuman or degrading treatments.", - "values": [ - "Torture and other CID treatment" - ] - }, - { - "text": "Implement measures to facilitate access to health care and education, particularly for the most vulnerable population", - "values": [ - "Right to education", - "Right to health" - ] - }, - { - "text": "Finalise the citizenship verification process of persons lacking identity documents or holding a "turquoise" card and the establishment of a transparent process to legalise the residence status of those who do not meet Myanmar's citizenship criteria", - "values": [ - "Statelessness and the right to nationality" - ] - }, - { - "text": "Adopt the appropriate measures to ensure the full implementation of Article 26 of the Law no. 38/2001 on facilitation of the election of candidates belonging to the Slovenian minority, also in light of the present institutional reforms", - "values": [ - "Minorities" - ] - }, - { - "text": "Continue its endeavours in addressing the needs of the differently-abled with the aim of acceding to the UN CRPD in the near future", - "values": [ - "Disabilities", - "International instruments" - ] - }, - { - "text": "Consider ratification of the International Convention on the Protection of the Rights of All Migrant Workers and Members of Their Families\n", - "values": [ - "International instruments", - "Labour", - "Migrants" - ] - }, - { - "text": "Continue its efforts to implement the Istanbul Convention by ensuring that it has a sufficient budget, increase the number of shelters for women and children victims of violence, strengthen penalties for rape, improve the training of professionals for better reception of victims and better processing of their complaints", - "values": [ - "Human rights education and training", - "International instruments", - "Rights of the Child", - "Women's rights" - ] - }, - { - "text": "Strengthen or enhance efforts to put an end to corruption in public institutions ", - "values": [ - "Corruption" - ] - }, - { - "text": "Amend its legislation to repeal laws which criminalize consensual adult same-sex relations", - "values": [ - "Sexual Orientation and Gender Identity" - ] - }, - { - "text": "Step up prosecutions of individuals who traffic in persons and increase funding for specialized services, including shelters, for trafficking victims ", - "values": [ - "Trafficking" - ] - }, - { - "text": "Take advantage of the substantial expertise that civil society represents, and enter into regular consultations with NGOs on human rights related issues, including the follow-up of the recommendations of the various United Nations treaty bodies ", - "values": [ - "Civil society", - "Treaty bodies" - ] - }, - { - "text": "Strengthen ongoing anti-discrimination efforts, including by amending relevant legislation in order to effectively protect women and girls from multiple or intersecting forms of discrimination", - "values": [ - "Rights of the Child", - "Women's rights" - ] - }, - { - "text": "Take further steps to provide access to education for all citizens, in particular in rural areas", - "values": [ - "Right to education" - ] - }, - { - "text": "Ensure that vulnerable groups, especially women and children in rural areas, have access to quality health care services", - "values": [ - "Right to health", - "Rights of the Child", - "Women's rights" - ] - }, - { - "text": "Share with other countries the good practice of holding broad consultations prior to the preparation of the report", - "values": [ - "UPR process" - ] - }, - { - "text": "Prohibit corporal punishment of children in all settings and guarantee children's rights to adequate standard of living with special attention to orphans, providing them with access to safe drinking water and education", - "values": [ - "Right to education", - "Right to water and sanitation", - "Rights of the Child", - "Torture and other CID treatment" - ] - }, - { - "text": "Continue its efforts to counter trafficking in human beings especially children", - "values": [ - "Rights of the Child", - "Trafficking" - ] - }, - { - "text": "Consider ratifying the Second Optional Protocol to the International Covenant on Civil and Political Rights.", - "values": [ - "Death penalty", - "International instruments" - ] - }, - { - "text": "Apply measures aimed at guaranteeing the full respect of all refugees' human rights and humanitarian law", - "values": [ - "Asylum-seekers - refugees" - ] - }, - { - "text": "Continue its efforts aimed at regulating the consultation process so that public policies reflect the effective participation of indigenous peoples in its implementation", - "values": [ - "Indigenous peoples" - ] - }, - { - "text": "Ratify the core international instruments, especially ICCPR, ICESCR, CAT and OP-CAT", - "values": [ - "CP rights - general", - "Detention", - "ESC rights - general", - "International instruments", - "Torture and other CID treatment" - ] - }, - { - "text": "Redouble its efforts to strengthen public education, awareness, capacity-building programs and training", - "values": [ - "Right to education" - ] - }, - { - "text": "Pursue development policies and programmes aimed at poverty alleviation and eradication ", - "values": [ - "Poverty" - ] - }, - { - "text": "Continue to ensure full and complete protection of persons with albinism ", - "values": [ - "Minorities" - ] - }, - { - "text": "Cease trying civilians in military courts and transfer all such cases to civilian courts", - "values": [ - "Justice" - ] - }, - { - "text": "Strengthen accountability for abuses by the police and ensure that civilian authorities investigate, prosecute and try human rights abuses by police.", - "values": [ - "Human rights violations by state agents" - ] - }, - { - "text": "Consider acceding to the remaining core international human rights instruments ", - "values": [ - "International instruments" - ] - }, - { - "text": "Strengthen measures to prevent and eliminate all forms of ill-treatment, including torture", - "values": [ - "Torture and other CID treatment" - ] - }, - { - "text": "Adopt the Children's Rights Bill", - "values": [ - "Rights of the Child" - ] - }, - { - "text": "Continue efforts to address human trafficking, including the development of stricter legislation and assistance for victims' reintegration and recovery", - "values": [ - "Trafficking" - ] - }, - { - "text": "Take the necessary steps to strengthen international cooperation through multilateral, regional and bilateral arrangements for the prevention, detection, investigation, prosecution and punishment of those responsible for acts involving the sale of children, child prostitution, child pornography and child sex tourism", - "values": [ - "Rights of the Child", - "Trafficking" - ] - }, - { - "text": "Ratification of the Optional Protocol to the Convention on the Elimination of Discrimination against Women ", - "values": [ - "International instruments", - "Women's rights" - ] - }, - { - "text": "Maintain and develop the positive measures that have been taken, such as for example the setting up of a school system for girls and the training of women police officers and avoid entrenching in the law, discriminatory practices against women.", - "values": [ - "Right to education", - "Rights of the Child", - "Women's rights" - ] - }, - { - "text": "Continue providing support for the work of international humanitarian organizations, including OHCHR", - "values": [ - "Technical assistance and cooperation" - ] - }, - { - "text": "Strengthen measures to combat impunity with regard to the extreme violence against civilians, and in this regard take into account among others the recommendations of the Special Rapporteur on extrajudicial executions. ", - "values": [ - "Extrajudicial executions", - "Impunity", - "Special procedures" - ] - }, - { - "text": "Initiate procedures for the opening of Turkish-language kindergartens for minority children in Komotini and Xanthi ", - "values": [ - "Minorities", - "Rights of the Child" - ] - }, - { - "text": "Expand the legal coverage to protect against sexual harassment and intensify public awareness-raising campaigns in the field of violence against women", - "values": [ - "Human rights education and training", - "Women's rights" - ] - }, - { - "text": "Continue the integration of human rights courses at all levels of education", - "values": [ - "Human rights education and training" - ] - }, - { - "text": "Consider ratifying the International Covenant on Civil and Political Rights and its Optional Protocols with a view of abolishing the death penalty", - "values": [ - "CP rights - general", - "Death penalty", - "International instruments" - ] - }, - { - "text": "Continue taking efficient measures with a view to decreasing and eventually eliminating the wage gap between men and women ", - "values": [ - "Women's rights" - ] - }, - { - "text": "Continue to support efforts, programs and initiatives aimed at providing protection for all family members", - "values": [ - "Other" - ] - }, - { - "text": "Thoroughly and independently investigate all circumstances surrounding its involvement in rendition programmes ", - "values": [ - "Justice" - ] - }, - { - "text": "Take all steps to strengthen and ensure the independence of the National Human Rights Commission", - "values": [ - "National Human Rights Institution" - ] - }, - { - "text": "Ensure birth registration of all children born on South African territory, regardless of the immigration status or nationality of the parents", - "values": [ - "Rights of the Child", - "Statelessness and the right to nationality" - ] - }, - { - "text": "Repeal provisions of the law on media and the new decree on the Internet that criminalize basic human rights and subordinate individual rights to the interests of the state", - "values": [ - "Freedom of opinion and expression", - "Freedom of the press" - ] - }, - { - "text": "Submit the belated national reports to the treaty bodies", - "values": [ - "Treaty bodies" - ] - }, - { - "text": "Vigorously investigate, prosecute, convict and sentence traffickers, including those responsible for domestic servitude and child sex trafficking", - "values": [ - "Labour", - "Rights of the Child", - "Trafficking" - ] - }, - { - "text": "Improve the population's access to health with the support of the international community, in accordance with its national interests", - "values": [ - "Right to health" - ] - }, - { - "text": "Continue to ensure the enjoyment of the rights to education, health and culture to all its citizens, supporting the existing projects and programs that are successful ", - "values": [ - "Right to education", - "Right to health" - ] - }, - { - "text": "Consider taking measures to implement CRPD, including harmonizing domestic legislation with the Convention and promoting public policies to guarantee that persons with disabilities enjoy all their rights on equal conditions", - "values": [ - "Disabilities", - "International instruments" - ] - }, - { - "text": "Continue efforts in protecting the dignity and safety of migrant workers, including through appropriate institutional and legislative measures ", - "values": [ - "Labour", - "Migrants" - ] - }, - { - "text": "Ratify OP-CAT and CED and extend a standing invitation to all HRC Special Procedures ", - "values": [ - "Detention", - "Enforced disappearances", - "International instruments", - "Special procedures", - "Torture and other CID treatment" - ] - }, - { - "text": "Step up its cooperation with special procedures mandate holders by responding positively to the pending visit request and eventually consider extending a standing invitation to all the special procedures mandate holders of the Human Rights Council", - "values": [ - "Special procedures" - ] - }, - { - "text": "Pursue all efforts to preserve the progress in culture, education, health and fight against social inequality ", - "values": [ - "Right to education", - "Right to health" - ] - }, - { - "text": "Take further measures to prevent and combat violence against children and women ", - "values": [ - "Rights of the Child", - "Women's rights" - ] - }, - { - "text": "Address legislative gaps in the field of children rights in order to fully comply with the 2005 recommendations of the Committee on the Rights of the Child.", - "values": [ - "Rights of the Child", - "Treaty bodies" - ] - }, - { - "text": "Furthering efforts to ensure that the abortion laws are brought into line with Chile's human rights obligations", - "values": [ - "Women's rights" - ] - }, - { - "text": "Increase and regularize the core funding of the Afghanistan Independent Human Rights Commission ", - "values": [ - "National Human Rights Institution" - ] - }, - { - "text": "Speed up its prospective plan to address the legal gap in its criminal law system so that victims can better exercise the right to participate in the proceedings.", - "values": [ - "Justice" - ] - }, - { - "text": "Adopt a coherent legal framework for the protection of persons belonging to national minorities", - "values": [ - "Minorities" - ] - }, - { - "text": "Fully align its national legislation with the Rome Statute, including by incorporating provisions to cooperate promptly and fully with ICC and to investigate and prosecute genocide, crimes against humanity and war crimes effectively before its national courts ", - "values": [ - "International instruments", - "Justice" - ] - }, - { - "text": "Ensure the full respect of the rights of migrants and minorities such as the Roma, including by strengthening the measures against acts of racial discrimination, xenophobia and intolerance ", - "values": [ - "Migrants", - "Minorities", - "Racial discrimination" - ] - }, - { - "text": "Intensify programmes and activities related to human rights training to police and military personnel", - "values": [ - "Human rights education and training" - ] - }, - { - "text": "Share and transfer, in particular to other members of its region, its experiences and good practices in preparedness to prevent and response to mitigate the impact of hurricanes and other natural disasters, as well as its important achievements in consolidating a civil defence system with recognized results in the protection of the right to life and other basic human rights of citizens", - "values": [ - "Environment" - ] - }, - { - "text": "Explicitly prohibit traditional practices that put at risk the physical and psychological integrity of women and girls", - "values": [ - "Rights of the Child", - "Torture and other CID treatment", - "Women's rights" - ] - }, - { - "text": "Continue making efforts to protect the rights of older persons", - "values": [ - "Other" - ] - }, - { - "text": "Ensure gender equality at the workplace ", - "values": [ - "Women's rights" - ] - }, - { - "text": "Create job opportunities and provide social services to face development challenges and combat poverty", - "values": [ - "Poverty" - ] - }, - { - "text": "Enhance the efforts to combat child labour and ensure that children do not work in hazardous labour conditions, including artisanal (informal) mines", - "values": [ - "Labour", - "Rights of the Child" - ] - }, - { - "text": "Consider taking further measures to combat all forms of discrimination against the Roma community, and ensure equal opportunities for the enjoyment of economic, social and cultural rights, including education, health and housing", - "values": [ - "ESC rights - general", - "Minorities", - "Right to education", - "Right to health", - "Right to housing" - ] - }, - { - "text": "Decriminalize all same-sex relations between consenting adults by repealing all relevant provisions of the Criminal Code", - "values": [ - "Sexual Orientation and Gender Identity" - ] - }, - { - "text": "Assess possible action to overcome the issue referred to in paragraph 52 of the National Report regarding the worrisome dropout rate for pupils of immigrant background, which may be partly due to lack of skills in the Icelandic language", - "values": [ - "Migrants", - "Right to education" - ] - }, - { - "text": "Enact appropriate legislation that addresses violence against women, after consultation with relevant stakeholders ", - "values": [ - "Women's rights" - ] - }, - { - "text": "Continue the practice of implementing socially orientated programmes", - "values": [ - "ESC rights - general" - ] - }, - { - "text": "Make a credible commitment to improving the status of Bidouns by ratifying the Convention relating to the Status of Stateless Persons and the Convention on the Reduction of Statelessness", - "values": [ - "International instruments", - "Minorities", - "Statelessness and the right to nationality" - ] - }, - { - "text": "Consider issuing a standing invitation to special procedure mandate holders ", - "values": [ - "Special procedures" - ] - }, - { - "text": "Consider ratifying the UNESCO Convention against Discrimination in Education.", - "values": [ - "International instruments", - "Right to education" - ] - }, - { - "text": "Improve health indicators, particularly decrease maternal Mortality Rates which remain short of the 2015 MDG's target ", - "values": [ - "Right to health", - "Women's rights" - ] - }, - { - "text": "Issue a standing invitation to all Special Procedures mandate holders, and cooperate fully with the Commission of Inquiry established at the 17th Special Session of the Human Rights Council so that the latter shall be able to sufficiently conduct fact-finding activities and identify those responsible", - "values": [ - "Special procedures" - ] - }, - { - "text": "Take measures related to preventive sexual education for women and men, with a view to prevent early pregnancies and abortion practiced under risk conditions, and strengthen education in rural areas, in order to prevent harmful traditional practices such as FGM or excision", - "values": [ - "Rights of the Child", - "Torture and other CID treatment", - "Women's rights" - ] - }, - { - "text": "Consider ratifying international human rights instruments that have not been ratified by Gabon yet", - "values": [ - "International instruments" - ] - }, - { - "text": "Implement further policies to ensure gender equality throughout society and strengthen the promotion of the rights of women, especially the rights of rural women ", - "values": [ - "Women's rights" - ] - }, - { - "text": "Increase efforts to investigate and prosecute cases of human trafficking and economic and sexual exploitation, particularly of women and children", - "values": [ - "Rights of the Child", - "Trafficking", - "Women's rights" - ] - }, - { - "text": "Strengthen and increase current efforts, including through international cooperation, aimed at protecting the rights of children and women, with a particular emphasis on combating violence against women and social exclusion, in line with international instruments that the Plurinational State of Bolivia is party to", - "values": [ - "International instruments", - "Rights of the Child", - "Technical assistance and cooperation", - "Women's rights" - ] - }, - { - "text": "Consider the possibility of acceding promptly at least to the main international instruments, such as the International Covenant on Civil and Political Rights, the International Covenant on Economic, Social and Cultural Rights and the International Convention on the Elimination of All Forms of Racial Discrimination.", - "values": [ - "CP rights - general", - "ESC rights - general", - "International instruments", - "Racial discrimination" - ] - }, - { - "text": "Apply international standards relating to the treatment of refugees and asylum seekers, provide them with adequate services and speed up the processing of their application", - "values": [ - "Asylum-seekers - refugees" - ] - }, - { - "text": "Continue making efforts to ensure that employers and sponsors fully respect the social and cultural rights of migrant workers and domestic workers, their right to housing and an adequate standard of living, and their right to education and training ", - "values": [ - "Labour", - "Migrants" - ] - }, - { - "text": "Take concrete measures to ensure that the anti-human trafficking act is effectively implemented and that albinos are provided equal protection by the law", - "values": [ - "Minorities", - "Trafficking" - ] - }, - { - "text": "Conduct a detailed analysis and evaluation of the extent of technical assistance and resources required from OHCHR and from other sources to enable it to carry out its efforts aimed at strengthening the promotion and protection of human rights ", - "values": [ - "Technical assistance and cooperation" - ] - }, - { - "text": "Ratify or access, as appropriate, the Convention on Enforced Disappearances", - "values": [ - "Enforced disappearances", - "International instruments" - ] - }, - { - "text": "Expedite the revision of the legal framework on refugees", - "values": [ - "Asylum-seekers - refugees" - ] - }, - { - "text": "Ensure the strict implementation of the prohibition of torture and illtreatment, especially in pretrial detention, and improve the conditions of detention in conformity with the international standards", - "values": [ - "Detention", - "Torture and other CID treatment" - ] - }, - { - "text": "Put in place independent inquiries on the use of excessive force during deportations ", - "values": [ - "Asylum-seekers - refugees", - "Human rights violations by state agents", - "Migrants" - ] - }, - { - "text": "Establish an inter-ministerial mechanism with the participation of civil society to discuss and implement international commitments in the area of human rights, including the recommendations emanating from the universal periodic review.", - "values": [ - "Civil society", - "UPR process" - ] - }, - { - "text": "Accede to the Rome Statute of the International Criminal Court and to the Agreement on the Privileges and Immunities of the Court", - "values": [ - "International instruments", - "Justice" - ] - }, - { - "text": "Continue in the advancement of empowering women, particularly to ensure that the representation of women in political and public organs fully reflects the diversity of people in Norway, including migrant workers, migrant women and women who belong to minorities ", - "values": [ - "Labour", - "Migrants", - "Minorities", - "Women's rights" - ] - }, - { - "text": "Address the problem of domestic violence", - "values": [ - "Rights of the Child", - "Women's rights" - ] - }, - { - "text": "Ratify CAT ", - "values": [ - "International instruments", - "Torture and other CID treatment" - ] - }, - { - "text": "Ratify the Optional Protocol to the Convention on the Elimination of All Forms of Discrimination against Women, taking into account the situation of victims of domestic violence in the country", - "values": [ - "International instruments", - "Rights of the Child", - "Women's rights" - ] - }, - { - "text": "Continue to work towards protecting and promoting the rights of marginalized and vulnerable population ", - "values": [ - "Minorities" - ] - }, - { - "text": "Establish a mechanism for the periodic and independent review of the necessity and the proportionality of measures taken in derogation from Ukraine\u2019s obligations under human rights conventions of the United Nations and the Council of Europe", - "values": [ - "Other" - ] - }, - { - "text": "Push forward further reforms that will guarantee in practice the separation of powers and, in particular, the independence of the judiciary, including through the training of judges ", - "values": [ - "Justice" - ] - }, - { - "text": "Combat torture and other inhuman or degrading treatment and ensure that these acts do not go unpunished", - "values": [ - "Torture and other CID treatment" - ] - }, - { - "text": "Keep its standing follow-up mechanism for recommendations", - "values": [ - "UPR process" - ] - }, - { - "text": "Fully cooperate with the Commission of Inquiry", - "values": [ - "Technical assistance and cooperation" - ] - }, - { - "text": "Continue its efforts to end discrimination against women by taking all necessary measures to eliminate obstacles to their access to all fields of society, including the justice system ", - "values": [ - "Women's rights" - ] - }, - { - "text": "Bring into force the country's law that encompasses specific provisions for special categories of patients, such as mentally disabled offenders and those lacking capacity, to give consent for treatment ", - "values": [ - "Disabilities", - "Right to health" - ] - }, - { - "text": "Further to the resettlement of over 760,000 IDPs by 31 December 2012, efforts to resettle internally displaced persons including those residing with host families, who wish to return, and those in a situation of protracted displacement will be continued in consultation with the affected populations, so as to resolve the issue of internal displacement in a sustainable manner. Special focus will be paid to post-resettlement activity including provision of permanent shelters, sanitation and potable water", - "values": [ - "Internally displaced persons", - "Right to water and sanitation" - ] - }, - { - "text": "Cooperate with special procedures mandate holders", - "values": [ - "Special procedures" - ] - }, - { - "text": "Mongolia will actively participate in the UPR process and devote its full effort in implementing proposals and recommendations of the Human Rights Council. In order to promote and protect human rights and freedoms globally, Mongolia shall engage itself in close cooperation with other countries, UN and its specialized agencies, and NGOs.", - "values": [ - "Civil society", - "UPR process" - ] - }, - { - "text": "Ratify the ICRMW ", - "values": [ - "International instruments", - "Labour", - "Migrants" - ] - }, - { - "text": "Continue the reforms to improve the policies and special programmes to strengthen and protect human rights", - "values": [ - "General" - ] - }, - { - "text": "Establish, in consultation with civil society, a clear and transparent fiscal policy to manage revenues, combat corruption and account for the use of public funds", - "values": [ - "Civil society", - "Corruption" - ] - }, - { - "text": "Reduce the number of crimes carrying the death penalty", - "values": [ - "Death penalty" - ] - }, - { - "text": "Continue to strengthen efforts to combat human trafficking and to raise awareness of its danger ", - "values": [ - "Trafficking" - ] - }, - { - "text": "Adopt laws that recognize and guarantee the right to conscientious objection to military service, ensuring that any genuinely civilian alternative is not punitive in length", - "values": [ - "Freedom of religion and belief" - ] - }, - { - "text": "Strengthen measures to ensure the strictly humanitarian nature of refugee and IDP camps, to ensure that persons living there are protected against violence, in particular gender-based violence, and forced recruitment, and finally to increase its efforts to find durable solutions for these persons.", - "values": [ - "Asylum-seekers - refugees", - "Internally displaced persons" - ] - }, - { - "text": "Ratify the human rights treaties listed in section I A of the compilation of OHCHR, notably the International Covenant on Civil and Political Rights, the International Covenant on Economic, Social and Cultural Rights and the International Convention on the Protection of the Rights of All Migrant Workers and Members of their Families, as well as the Optional Protocols to the Convention against Torture, the International Covenant on Civil and Political Rights, the Convention on the Rights of the Child, the Convention on the Rights of Persons with Disabilities and the Convention on the Elimination of All Forms of Discrimination against Women ", - "values": [ - "International instruments" - ] - }, - { - "text": "Provide every possible support and assistance to the national project for rural health to increase the standard of nutrition and improve public health and to strengthen the relationship between health and indicators such as sanitation and personal hygiene", - "values": [ - "Right to health", - "Right to water and sanitation" - ] - }, - { - "text": "Continue progressing with its efforts to strengthen the National Police with the aim of consolidating a police force that guarantees the due safety of citizens to exercise their fundamental rights", - "values": [ - "Public security" - ] - }, - { - "text": "Make additional efforts in the area of human trafficking by developing new measures which would allow a better prosecution of criminal organizations as well as better protection of victims", - "values": [ - "Trafficking" - ] - }, - { - "text": "Take measures to ensure that article 15 of the Constitution fully complies with the International Covenant on Civil and Political Rights.", - "values": [ - "CP rights - general", - "International instruments" - ] - }, - { - "text": "Adopt a comprehensive law on non-discrimination based on international human rights standards, including gender identity and expression, and sexual orientation, which would enhance and specify the protection provided for in article 321 of the Penal Code, and which would create an independent body to promote non-discrimination and equality, and monitor compliance with this law by public and private actors", - "values": [ - "International instruments", - "Sexual Orientation and Gender Identity" - ] - }, - { - "text": "Continue to promote sustainable economic and social development, eradicate poverty and improve people\u2019s living standards", - "values": [ - "Development", - "Poverty" - ] - }, - { - "text": "Ratify the Rome Statute and OPCAT ", - "values": [ - "Detention", - "International instruments", - "Justice", - "Torture and other CID treatment" - ] - }, - { - "text": "Continue the actions taken to reduce domestic violence and violence against women in all its forms", - "values": [ - "Rights of the Child", - "Women's rights" - ] - }, - { - "text": "Immediately end arbitrary detention and guarantee effective legal representation, in accordance with international fair trial standards ", - "values": [ - "Detention" - ] - }, - { - "text": "Ensure ongoing practical professional training of police officers of all ranks and categories on the protection of vulnerable groups, in compliance with human rights principles ", - "values": [ - "Human rights education and training" - ] - }, - { - "text": "Step up efforts to ensure that people living in the remote and rural areas, in particular the indigenous peoples, receive adequate support services relating to accommodation and all aspects of health and education ", - "values": [ - "Indigenous peoples" - ] - }, - { - "text": "Spare no efforts to consolidate programmes of social protection and assistance, in particular programmes for the transfer of food, development programmes on behalf of vulnerable groups, particularly women in poverty, and micro-credit programmes which have produced positive results for this segment of the population", - "values": [ - "Development", - "Minorities", - "Right to food", - "Women's rights" - ] - }, - { - "text": "Improve existing and develop new rehabilitation and reintegration programmes for children in conflict with the law who are residing in semi-open and residential institutions", - "values": [ - "Detention", - "Rights of the Child" - ] - }, - { - "text": "Ratify the Optional Protocol to the CAT and establish an independent national preventive mechanism", - "values": [ - "Detention", - "International instruments", - "Torture and other CID treatment" - ] - }, - { - "text": "Introduce a formal moratorium on executions and take concrete steps toward the abolition of the death penalty", - "values": [ - "Death penalty" - ] - }, - { - "text": "Ratify the Rome Statute of the International Criminal Court.", - "values": [ - "International instruments", - "Justice" - ] - }, - { - "text": "Strengthen its efforts to address the problems of street children and child labour ", - "values": [ - "Rights of the Child" - ] - }, - { - "text": "Strengthen long-term efforts to provide reintegration measures in order to provide all children who have been recruited or used in hostilities with child- and gender- sensitive multidisciplinary assistance for their physical and psychological recovery", - "values": [ - "Rights of the Child", - "Women's rights" - ] - }, - { - "text": "Further reduce the mortality rate caused by the HIV/AIDS ", - "values": [ - "HIV - Aids" - ] - }, - { - "text": "Put an end to the blockade of the Gaza strip, and guarantee full access to the Palestinian population to all basic services", - "values": [ - "Other" - ] - }, - { - "text": "Take the appropriate legislative measures for the proper defence and protection of human rights defenders and investigate all threats and attacks suffered by this group to bring to justice those responsible for such acts", - "values": [ - "Human rights defenders" - ] - }, - { - "text": "Continue its efforts in strengthening, protecting and guaranteeing human rights and fundamental freedoms ", - "values": [ - "General" - ] - }, - { - "text": "Invest in the necessary infrastructure so that all citizens have access to adequate drinking water and sanitation, especially in rural areas ", - "values": [ - "Right to water and sanitation" - ] - }, - { - "text": "Strengthen the Special Investigation Unit of the State General Prosecutor's Office to ensure thorough and independent investigations of all allegations of police violence ", - "values": [ - "Human rights violations by state agents" - ] - }, - { - "text": "Review its Nationality Law in order to ensure that a Jordanian mother married to a non-Jordanian man has the right to confer her nationality to their children", - "values": [ - "Statelessness and the right to nationality", - "Women's rights" - ] - }, - { - "text": "Immediately and unconditionally release all political prisoners and ensure their full rehabilitation", - "values": [ - "Detention", - "Freedom of opinion and expression" - ] - }, - { - "text": "Intensify and carry forward its efforts for combating illegal migration and effectively addressing its dangerous ramification", - "values": [ - "Migrants" - ] - }, - { - "text": "Develop and implement specific measures and affirmative policies to eliminate racial profiling and discrimination faced by persons of African descent", - "values": [ - "Minorities", - "Racial discrimination" - ] - }, - { - "text": "Continue to pursue all efforts to modernize the legal framework of the education system by enshrining therein the right to basic education", - "values": [ - "Right to education" - ] - }, - { - "text": "Investigate cases of domestic violence, ill treatment, sexual and other abuse within the family, and apply sanctions to perpetrators ", - "values": [ - "Rights of the Child", - "Women's rights" - ] - }, - { - "text": "Review its children-related normative framework, including the adoption of the Children's Protection and Welfare Bill, to ensure full conformity with the Convention ", - "values": [ - "Rights of the Child" - ] - }, - { - "text": "Continue strengthening the policies aimed at protecting women", - "values": [ - "Women's rights" - ] - }, - { - "text": "Ensure the full independence of the Office of the Ombudsman so that it is fully compliant with the Paris Principles", - "values": [ - "National Human Rights Institution" - ] - }, - { - "text": "Review the legislation on armed robberies, terrorism and hijacking, in accordance with the Second Optional Protocol to the ICCPR, and to commute all death sentences to life imprisonment and maintain the moratorium on the death penalty in place since 1979, with a view to completely abolishing capital punishment", - "values": [ - "Death penalty", - "International instruments" - ] - }, - { - "text": "Consider adopting specific legislation to ensure that children with disabilities are included in education as well as in health systems", - "values": [ - "Disabilities", - "Right to education", - "Right to health", - "Rights of the Child" - ] - }, - { - "text": "Intensify efforts to prevent and combat cases of exploitation of children related to sexual tourism, including through legal measures that effectively protect child victims of sexual exploitation and prostitution, and to bring the perpetrators of these aberrant practices to justice ", - "values": [ - "Rights of the Child" - ] - }, - { - "text": "Draw a timeline for realizing the visits of the Special Rapporteurs who so requested to the country ", - "values": [ - "Special procedures" - ] - }, - { - "text": "Maintain its commitment to realizing the Millennium Development Goals in parallel with striving for economic success ", - "values": [ - "Development" - ] - }, - { - "text": "Continue to fight corruption in all segments of society with a view to creating a suitable business environment that is conducive to attract more foreign investments which in the longer term will contribute to the economic and social development of the country ", - "values": [ - "Corruption", - "Development" - ] - }, - { - "text": "Fully protect human rights of internally displaced persons, including by giving them access to safe areas, as well as health, social and educational services without discrimination, and support, wherever possible, the voluntary and safe return of internally displaced persons to their areas of origin", - "values": [ - "ESC rights - general", - "Internally displaced persons", - "Right to education", - "Right to health" - ] - }, - { - "text": "Create and maintain in law and in practice a safe and enabling environment for civil society and human rights defenders, including by amending its laws to ensure compliance with the International Covenant on Civil and Political Rights and full independence of the judiciary in line with international standards", - "values": [ - "CP rights - general", - "Civil society", - "Human rights defenders", - "International instruments", - "Justice" - ] - }, - { - "text": "Guarantee the independence of the National Human Rights Commission and take the necessary steps to enable the NHRC to regain its A rating, in compliance with the Paris Principles", - "values": [ - "National Human Rights Institution" - ] - }, - { - "text": "Continue to take effective measures to promote gender equality", - "values": [ - "Women's rights" - ] - }, - { - "text": "Continue efforts to protect children from sexual exploitation, protect unaccompanied refugee children and protect them from enforced disappearance", - "values": [ - "Asylum-seekers - refugees", - "Enforced disappearances", - "Rights of the Child" - ] - }, - { - "text": "Take steps in accordance with the recommendations from the Human Rights Council working group on the issues of discrimination against women in law and practice", - "values": [ - "Women's rights" - ] - }, - { - "text": "Abrogate all provisions criminalizing freedom of expression ", - "values": [ - "Freedom of opinion and expression" - ] - }, - { - "text": "Design and strengthen programmes to address human rights inequalities suffered by indigenous communities and afro-descendants", - "values": [ - "Indigenous peoples", - "Minorities" - ] - }, - { - "text": "Ratify the CPED and reform the Criminal Procedure Code with a view to guaranteeing the rights of those deprived of their liberty", - "values": [ - "Enforced disappearances", - "International instruments" - ] - }, - { - "text": "Activate the efforts to combat trafficking in persons, and rehabilitate its victims", - "values": [ - "Trafficking" - ] - }, - { - "text": "Take legislative measures to fully implement the provisions of the Convention on the Elimination of All Forms of Discrimination against Women", - "values": [ - "International instruments", - "Women's rights" - ] - }, - { - "text": "Ensure that the primacy of the civil legal system prevail over military judicial process across the entire territory", - "values": [ - "Justice" - ] - }, - { - "text": "Consider signing all core outstanding international human rights instruments and enacting the domestic legislation necessary to domesticate the provisions of these instruments ", - "values": [ - "International instruments" - ] - }, - { - "text": "Continue to work, in partnership with Aboriginal and Torres Strait Islander communities, to reduce indigenous incarceration rates", - "values": [ - "Detention", - "Indigenous peoples" - ] - }, - { - "text": "Continue strengthening policies and measures to prevent and eliminate manifestations of racism, xenophobia and intolerance in society", - "values": [ - "Racial discrimination" - ] - }, - { - "text": "Continue its efforts to ensure bringing into force of the Omani Law of the Child in pursuit of its national strategy on children and in line with the obligations under CRC ", - "values": [ - "International instruments", - "Rights of the Child" - ] - }, - { - "text": "In light of exceptional circumstances, appeal to the international community for its consent\nto cancelling Sudan%u2019s debt, which would constitute remarkable progress towards achievement of the\nMillennium Development Goals, ensure conditions of an equitable economic development and have a\npositive impact on the enjoyment of human rights for millions of Sudanese", - "values": [ - "Development" - ] - }, - { - "text": "Increase legislative and practical efforts to reduce violence against women and domestic violence", - "values": [ - "Rights of the Child", - "Women's rights" - ] - }, - { - "text": "Consider acceding to ICCPR-OP2", - "values": [ - "Death penalty", - "International instruments" - ] - }, - { - "text": "Review the bill and relevant legislative framework to ensure civilian courts hear cases related to violations of human rights ", - "values": [ - "Justice" - ] - }, - { - "text": "Establish conditions that would allow for an international and independent investigation to establish the facts concerning Andijan.", - "values": [ - "Justice" - ] - }, - { - "text": "Continue with measures to improve the situation of asylum seekers and refugees ", - "values": [ - "Asylum-seekers - refugees" - ] - }, - { - "text": "Ratify the major human rights instruments, in particular the Convention on the Rights of the Child and the International Convention on the Protection of the Rights of All Migrant Workers and Members of their Families", - "values": [ - "International instruments", - "Labour", - "Migrants", - "Rights of the Child" - ] - }, - { - "text": "Continue implementing measures to bring police officers responsible for abuses to justice, such as the amendment to the Police Complaints Authority Act, enabling investigation on criminal offences involving police officers, like corruption and serious misconduct ", - "values": [ - "Corruption", - "Human rights violations by state agents" - ] - }, - { - "text": "Engage in a structural human rights dialogue with the European Union at the political and technical level ", - "values": [ - "Other" - ] - }, - { - "text": "Further strengthen the promotion of gender equality and protect women from all forms of discrimination and violence", - "values": [ - "Women's rights" - ] - }, - { - "text": "Set priorities and allocate necessary resources for implementing its National Economic and Social Development Plan for Horizon 2020, with more focus on employment for youth, gender equality, urban planning, adequate housing, health care and education", - "values": [ - "Development", - "ESC rights - general", - "Right to education", - "Right to health", - "Right to housing" - ] - }, - { - "text": "Take actions to provide accountability for human rights violations ", - "values": [ - "General" - ] - }, - { - "text": "Take measures to eliminate all forms of discrimination against Koreans", - "values": [ - "Minorities", - "Racial discrimination" - ] - }, - { - "text": "Pursue efforts with regional and international communities in seeking financial and technical assistance to establish a national human rights institution ", - "values": [ - "Technical assistance and cooperation" - ] - }, - { - "text": "Consider introducing temporary special measures in areas where women are underrepresented or disadvantaged and raise awareness among parliamentarians and government officials about the necessity of such measures", - "values": [ - "Women's rights" - ] - }, - { - "text": "Specify the respective areas of competence of the various institutions and bodies combating discrimination to ensure the effectiveness of the system for preventing and combating discrimination, as recommended by CERD ", - "values": [ - "Racial discrimination", - "Treaty bodies" - ] - }, - { - "text": "Continue to implement the strategies and socioeconomic development plans, particularly those aimed at reducing poverty and promoting women's empowerment", - "values": [ - "Development", - "Poverty", - "Women's rights" - ] - }, - { - "text": "Establish a national commission for women's and children's affairs ", - "values": [ - "Rights of the Child", - "Women's rights" - ] - }, - { - "text": "Accede to the OP-CAT as soon as possible ", - "values": [ - "Detention", - "International instruments", - "Torture and other CID treatment" - ] - }, - { - "text": "Continue to implement policies for the socio-economic growth of its people", - "values": [ - "Development", - "ESC rights - general" - ] - }, - { - "text": "Consider signing and ratifying the Optional Protocol to the Convention on the Rights of Persons with Disabilities", - "values": [ - "Disabilities", - "International instruments" - ] - }, - { - "text": "Provide the Ministry and Department of Women, Children and People with Disabilities with the necessary powers to continue promoting the participation and contribution of these vulnerable groups to the development of the country ", - "values": [ - "Disabilities", - "Rights of the Child", - "Women's rights" - ] - }, - { - "text": "Conclude and put in place a training programme for police officers and others in order to prevent torture", - "values": [ - "Human rights education and training", - "Torture and other CID treatment" - ] - }, - { - "text": "Continue to expand the range of main international human rights instruments in effect in the country, in particular through the ratification of the Second Optional Protocol to the International Covenant on Civil and Political Rights, which aims at abolishing the death penalty ", - "values": [ - "Death penalty", - "International instruments" - ] - }, - { - "text": "Accede to the International Convention for the Protection of All Persons from Enforced Disappearance and recognize its Committee", - "values": [ - "Enforced disappearances", - "International humanitarian law", - "Treaty bodies" - ] - }, - { - "text": "Continue strengthening the institutions responsible for the promotion and protection of human rights", - "values": [ - "General" - ] - }, - { - "text": "Continue promoting the expansion of educative opportunities, particularly in its alternative models ", - "values": [ - "Right to education" - ] - }, - { - "text": "Open prisons and detention centres, including temporary and pre-trial facilities, to national and international monitoring including from the ICRC", - "values": [ - "Detention" - ] - }, - { - "text": "Abolish the capital punishment in all cases and in all circumstances, as well as ratify the Second Optional Protocol to the International Covenant on Civil and Political Rights, aiming at the abolition of death penalty", - "values": [ - "Death penalty", - "International instruments" - ] - }, - { - "text": "Pursue its action in the area of education, and ensure that all legal practitioners benefit from it, namely, judges, penitentiary staff and law enforcement personnel in the rule of law", - "values": [ - "Human rights education and training" - ] - }, - { - "text": "Start a reform of the armed forces, and take all measures necessary to combat impunity, in particular by establishing independent inquiry commissions that are transparent and credible, with a view to bringing to justice those responsible for human rights violations as soon as possible", - "values": [ - "Impunity", - "Justice" - ] - }, - { - "text": "Strengthen measures to eradicate incitement to ethnic or religious hatred and xenophobia ", - "values": [ - "Freedom of religion and belief", - "Racial discrimination" - ] - }, - { - "text": "Speed up the process of setting up the national mechanism on the prevention of torture", - "values": [ - "Torture and other CID treatment" - ] - }, - { - "text": "Speed up the procedures concerning the establishment of a national human rights institution in accordance with the Paris Principles", - "values": [ - "National Human Rights Institution" - ] - }, - { - "text": "Review and amend or repeal as necessary all decrees limiting freedom of expression and association, particularly the Media, Essential National Industries and Public Order Decrees", - "values": [ - "Freedom of opinion and expression", - "Freedom of the press" - ] - }, - { - "text": "Cease violence against civilians immediately and enter into good faith negotiations on a political solution to the conflict", - "values": [ - "Other" - ] - }, - { - "text": "Continue its efforts aimed at promoting and protecting all human rights and to continue its cooperation with human rights mechanisms, and to work towards the establishment of the national human rights institution and the implementation of national actions plans, in particular regarding equality between the two sexes ", - "values": [ - "National Human Rights Institution", - "Special procedures", - "Treaty bodies", - "Women's rights" - ] - }, - { - "text": "Put in place a comprehensive strategy, as advised by CEDAW to modify or eliminate cultural practices and stereotypes that discriminate against women ", - "values": [ - "International instruments", - "Women's rights" - ] - }, - { - "text": "Ensure that foreign nationals in detention have access to consular assistance by establishing measures that could facilitate timely issuance of permits for prison visits by consular authorities", - "values": [ - "Detention" - ] - }, - { - "text": "Enforce effectively the legislation adopted to prevent and prosecute violence against women as well as the trafficking in women", - "values": [ - "Trafficking", - "Women's rights" - ] - }, - { - "text": "Reform the judiciary to ensure its independence and respect of international norms such as the respect of the right of the defence and the right to a fair trial. Review regulations on the appointment, dismissal and disciplinary procedures against judges as well as the length of their mandates", - "values": [ - "Justice" - ] - }, - { - "text": "Adopt the new law proposing a minimum marital age as a matter of urgency and prohibit forced marriages in all cases ", - "values": [ - "Rights of the Child", - "Women's rights" - ] - }, - { - "text": "Promote the drawing up and adoption of a national human rights plan", - "values": [ - "General" - ] - }, - { - "text": "Establish State structures for the supervision, prevention, rescue and rehabilitation in the cases of child labour and mendacity and ensure that those responsible be prosecuted and sanctioned ", - "values": [ - "Rights of the Child" - ] - }, - { - "text": "Continue the measures to combat discrimination and intolerance experienced by racial and ethnic minorities, especially those measures to eradicate the dissemination of stereotypes which may encourage discrimination and xenophobic manifestations towards migrants ", - "values": [ - "Migrants", - "Minorities", - "Racial discrimination" - ] - }, - { - "text": "Take steps to ensure that prison conditions are independently monitored, perpetrators of acts of torture are duly prosecuted and detainees have the right to a fair trial.", - "values": [ - "Detention", - "Justice", - "Torture and other CID treatment" - ] - }, - { - "text": "Allow journalists, human rights defenders among all others to exercise the right to freedom of expression ", - "values": [ - "Freedom of opinion and expression", - "Freedom of the press", - "Human rights defenders" - ] - }, - { - "text": "Continue to improve the national system of administration of justice, including guarantees for the rights of persons being held in detention", - "values": [ - "Detention", - "Justice" - ] - }, - { - "text": "Increase measures aiming at guaranteeing an efficient justice system, including the effective access to legal representation, paying particular attention to recommendations made by the Committee against Torture", - "values": [ - "Justice", - "Treaty bodies" - ] - }, - { - "text": "Denounce gender discrimination ", - "values": [ - "Women's rights" - ] - }, - { - "text": "The Government of Bosnia and Herzegovina restrict the transfer of jurisdictions to the two entities, thus preventing further fragmentation of the judiciary in Bosnia and Herzegovina", - "values": [ - "Justice" - ] - }, - { - "text": "Set a minimum age for leaving school, which would provide incentives for addressing early marriage and child labour", - "values": [ - "Labour", - "Rights of the Child" - ] - }, - { - "text": "Harmonise laws on abortion with maternal health and child marriage", - "values": [ - "Right to health", - "Rights of the Child", - "Women's rights" - ] - }, - { - "text": "End the practice of using defamation lawsuits and other legal and administrative actions to censor, fine, and imprison individuals for speaking or writing on political issues, and remove all discriminatory media guidelines", - "values": [ - "Freedom of opinion and expression", - "Freedom of the press" - ] - }, - { - "text": "Fully implement the National Strategy for the Protection of the Rights of the Child through plans of action", - "values": [ - "Rights of the Child" - ] - }, - { - "text": "Take further measures to address the disparity in wages between men and women and continue to allocate sufficient funds to increase the availability of social housing for indigenous people, those of African descent and migrants, in line with the concerns raised by the Committee on Economic, Social and Cultural Rights and the United Nations country team ", - "values": [ - "Indigenous peoples", - "Treaty bodies", - "Women's rights" - ] - }, - { - "text": "Close all political prison camps immediately", - "values": [ - "Detention", - "Freedom of opinion and expression" - ] - }, - { - "text": "Implement a strategy to support the law banning female genital mutilation, including an awareness and education campaign ", - "values": [ - "Human rights education and training", - "Rights of the Child", - "Torture and other CID treatment", - "Women's rights" - ] - }, - { - "text": "Take active steps to effectively reduce the incidence of early forced marriage, including through the thorough implementation of existing laws such as the Child Marriage Restraint Act, the Dowry Prohibition Act and the Prevention of Women and Children Repression Act ", - "values": [ - "Rights of the Child", - "Women's rights" - ] - }, - { - "text": "Implement effective criminal justice mechanisms to combat impunity ", - "values": [ - "Impunity" - ] - }, - { - "text": "Ratify the Optional Protocol to the CAT and put in place a national preventative mechanism within the framework of the criteria and guarantees undertaken by this instrument ", - "values": [ - "Detention", - "International instruments", - "Torture and other CID treatment" - ] - }, - { - "text": "Ratify the Optional Protocol to CRC on children in armed conflict and the Convention on the Rights of Persons with Disabilities - CRPD -", - "values": [ - "Disabilities", - "International humanitarian law", - "International instruments", - "Rights of the Child" - ] - }, - { - "text": "Consider adhering to the Convention on the Rights of Persons with Disabilities ", - "values": [ - "Disabilities", - "International instruments" - ] - }, - { - "text": "Explore means to improving funding to the National Human Rights Commission in order to allow it to fully carry out its mandate ", - "values": [ - "National Human Rights Institution" - ] - }, - { - "text": "Consider ratifying the International Covenant on Economic, Social and Cultural Rights, the International Covenant on Civil and Political Rights and its Second Optional Protocol, aiming at the abolition of the death penalty, and the Convention Against Torture and its Optional Protocol", - "values": [ - "CP rights - general", - "Death penalty", - "Detention", - "ESC rights - general", - "International instruments", - "Torture and other CID treatment" - ] - }, - { - "text": "Consider becoming a party to ICESCR ", - "values": [ - "ESC rights - general", - "International instruments" - ] - }, - { - "text": "Concentrate on the implementation of the international human rights instruments that have been ratified by the country", - "values": [ - "International instruments" - ] - }, - { - "text": "Pursue ongoing judicial reforms ", - "values": [ - "Justice" - ] - }, - { - "text": "Ensure that Australia lives up to its international obligations regarding asylum seekers and refugees", - "values": [ - "Asylum-seekers - refugees" - ] - }, - { - "text": "Promote equality in the enjoyment of human rights of LGBTI persons incorporating it into national legislation", - "values": [ - "Sexual Orientation and Gender Identity" - ] - }, - { - "text": "Continue efforts to strengthen the capacity and compatibility between the investigation and prosecution of cases", - "values": [ - "Justice" - ] - }, - { - "text": "Undertake effective legal and administrative measures to ensure greater security of tenure for Roma, especially for those living in informal setting ", - "values": [ - "Minorities" - ] - }, - { - "text": "Strengthen its cooperation with the international community, in particular specialized agencies and programmes of the United Nations system with a view to building capacity and getting technical assistance in crucial areas such as human development, poverty eradication, education and health ", - "values": [ - "Development", - "Poverty", - "Right to education", - "Right to health", - "Technical assistance and cooperation" - ] - }, - { - "text": "Provide full support to the Rwanda Media Commission and cease government interference with its work and the work of the media in general", - "values": [ - "Freedom of the press" - ] - }, - { - "text": "Provide gender-sensitive human rights education to all police and military, and try all perpetrators of sexual and gender-based violence, regardless of rank", - "values": [ - "Human rights education and training", - "Human rights violations by state agents", - "Rights of the Child", - "Women's rights" - ] - }, - { - "text": "Prohibit the non-therapeutic sterilization of any individual who is not mentally competent to consent", - "values": [ - "Disabilities", - "Torture and other CID treatment" - ] - }, - { - "text": "Review its national legislation so as to repeal all laws giving rise to discrimination against women and girls, with the aim of bringing the domestic system into line with the commitments made at the international level ", - "values": [ - "Rights of the Child", - "Women's rights" - ] - }, - { - "text": "Intensify efforts in guaranteeing women's rights, including by allocating adequate resources in order to strengthen the implementation of CEDAW convention", - "values": [ - "International instruments", - "Women's rights" - ] - }, - { - "text": "Incorporate into national law Bahrain's obligations under the International Covenant on Civil and Political Rights, the Convention against Torture and the Convention on the Rights of the Child ", - "values": [ - "CP rights - general", - "International instruments", - "Rights of the Child", - "Torture and other CID treatment" - ] - }, - { - "text": "Consider the approval of a general law on violence against women, in conformity with the recommendation made by CEDAW ", - "values": [ - "Treaty bodies", - "Women's rights" - ] - }, - { - "text": "Continue working on the adoption of those international instruments to which it is not State party, including the International Convention on the Protection of the Rights of All Migrant Workers and Members of Their Families", - "values": [ - "International instruments", - "Labour", - "Migrants" - ] - }, - { - "text": "Bring ODA up to the internationally committed 0.7 per cent of GNI especially to support developing countries in the areas of poverty reduction, gender equality, children, persons with disabilities and climate challenges ", - "values": [ - "Disabilities", - "Environment", - "Poverty", - "Rights of the Child", - "Women's rights" - ] - }, - { - "text": "Sign and ratify the International Covenant on Economic, Social and Cultural Rights and its Optional Protocol", - "values": [ - "ESC rights - general", - "International instruments" - ] - }, - { - "text": "Intensify the Government presence in the rural areas whose communities are victims of abuses, such as forced displacement, as well as target of violence perpetrated by criminal organizations ", - "values": [ - "Internally displaced persons", - "Public security" - ] - }, - { - "text": "Continue to promote its poor people socio-economic policies for the improvement of its people ", - "values": [ - "Development", - "Poverty" - ] - }, - { - "text": "With regard to the accession to international human rights treaties and withdrawal of reservations of already ratified conventions, the delegation stated that the Government was committed to review the legislations governing citizens' rights in line with the Constitution, and that it is currently reviewing reservations to Articles 2 and 16 of CEDAW in line of the new Constitution and in conformity with the Islamic Sharia. ", - "values": [ - "International instruments", - "Women's rights" - ] - }, - { - "text": "Take into positive consideration the abolition of the death penalty, or at least the adoption of a de jure moratorium on executions", - "values": [ - "Death penalty" - ] - }, - { - "text": "Take immediate steps to guarantee freedom of assembly and association through alignment of national legislation, in particular, the Public Order and Security Act with international standards ", - "values": [ - "Freedom of association and peaceful assembly" - ] - }, - { - "text": "Strengthen health-care services for its citizens through better training of the medical personnel, particularly in remote rural areas", - "values": [ - "Right to health" - ] - }, - { - "text": "Promote access to education, especially for minorities", - "values": [ - "Minorities", - "Right to education" - ] - }, - { - "text": "Consider the ratification of the Optional Protocol to the Convention on the Elimination of All Forms of Discrimination against Women, and other international instruments to which the country is not a party", - "values": [ - "International instruments", - "Women's rights" - ] - }, - { - "text": "Continue, with the support of donor countries, its National Capacity Building Program with the objective of expanding the scope of the training and capacity building activities to government personnel", - "values": [ - "Human rights education and training" - ] - }, - { - "text": "Ratify the main pending human rights instruments, particularly the two Optional Protocols to ICCPR", - "values": [ - "CP rights - general", - "Death penalty", - "International instruments" - ] - }, - { - "text": "Continue working on the implementation of laws that promote gender equality in the country", - "values": [ - "Women's rights" - ] - }, - { - "text": "Maintain under study the ratification of the International Convention on the Protection of the Rights of All Migrant Workers and Members of Their Families from a human rights perspective, recognizing the fact that human rights are universal in nature and therefore are not conditioned by migrant status", - "values": [ - "International instruments", - "Labour", - "Migrants" - ] - }, - { - "text": "Address the concerns raised by the Special Representative of the Secretary-General on the situation of human rights defenders regarding the registration of NGOs with particular regard to the need to avoid unduly constraining the activities of civil society.", - "values": [ - "Civil society", - "Special procedures" - ] - }, - { - "text": "Consider being party to the International Convention on Protection of the Rights of All Migrant Workers and Members of Their Families, the Convention on the rights of Persons with Disabilities and its Optional Protocol, the Convention against Torture and Other Cruel, Inhuman or Degrading Treatment or Punishment and its Optional Protocol, the Optional Protocol to the International Covenant on Economic, Social and Cultural Rights, the Optional Protocol to the International Covenant on Civil and Political Rights, the Optional Protocol to the Convention on the Elimination of All Forms of Discrimination against Women and the Optional Protocol to the Convention on the Rights of the Child on the Sale of Children, Child Prostitution and Child Pornography", - "values": [ - "International instruments" - ] - }, - { - "text": "Continue to mainstream human rights through training and awareness-raising programs in all relevant sectors", - "values": [ - "Human rights education and training" - ] - }, - { - "text": "Ratify the Additional Protocol to the Convention on cybercrime, concerning the criminalisation of acts of a racist and xenophobic nature, including holocaust denial, committed through computer systems", - "values": [ - "International instruments", - "Racial discrimination" - ] - }, - { - "text": "Continue the effective implementation of the action plan on employment for minority groups to achieve the set targets", - "values": [ - "Minorities" - ] - }, - { - "text": "Adopt the Bill on Anti-Domestic Violence at the earliest possible", - "values": [ - "Rights of the Child", - "Women's rights" - ] - }, - { - "text": "Immediately release all political prisoners ", - "values": [ - "Detention", - "Freedom of opinion and expression" - ] - }, - { - "text": "Ratify the OP-CRPD ", - "values": [ - "Disabilities", - "International instruments" - ] - }, - { - "text": "Adapt national legislation to fulfil its obligations under the Committee on the Elimination of Racial Discrimination.", - "values": [ - "Racial discrimination", - "Treaty bodies" - ] - }, - { - "text": "Guarantee women the same right as men to transmit their nationality to their children, in particular by deleting Section 20.1 (b) of Part III of the "Law on Immigration and Nationality"", - "values": [ - "Women's rights" - ] - }, - { - "text": "Ratify CED ", - "values": [ - "Enforced disappearances", - "International instruments" - ] - }, - { - "text": "Follow-up and implement the recommendations made by the United Nations mechanisms ", - "values": [ - "Other" - ] - }, - { - "text": "Explore alternative ways to treat persons with mental and psychosocial disabilities and impartially investigate the excessive use of restrictive measures in mental health institutions", - "values": [ - "Disabilities", - "Right to health" - ] - }, - { - "text": "Ensure that federal legislation provides adequate protection for women and children, including by criminalizing violence in line with obligations under international human rights law", - "values": [ - "International instruments", - "Rights of the Child", - "Women's rights" - ] - }, - { - "text": "Repeal or amend the Internal Security Act and the Emergency Public Order and Preventive Ordinance in accordance with its international human rights obligations, and in the meantime refrain from applying them to political activists, journalists or others engaged in peaceful activities", - "values": [ - "Freedom of opinion and expression", - "International instruments" - ] - }, - { - "text": "Carry out impartial and independent investigations to combat impunity in cases of alleged violations of human rights, and inform the international community about those investigations", - "values": [ - "Impunity" - ] - }, - { - "text": "Take all steps to abolish the death penalty", - "values": [ - "Death penalty" - ] - }, - { - "text": "Adopt all necessary political and legislative measures to decriminalize sexual relations between consenting adults of the same sex as well as adopt measures to guarantee the enjoyment of the right to health without discrimination based on sexual orientation", - "values": [ - "Sexual Orientation and Gender Identity" - ] - }, - { - "text": "Continue to strengthen the system of response to gender-based violence so as to help eradicate it", - "values": [ - "Women's rights" - ] - }, - { - "text": "Identify and protect children employed in the worst forms of child labour, and increase assistance to victims of forced labour and sex trafficking", - "values": [ - "Labour", - "Rights of the Child", - "Trafficking" - ] - }, - { - "text": "Intensify its efforts and measures to strengthen the rule of law ", - "values": [ - "Justice" - ] - }, - { - "text": "Increase the annual budget allocations for health section in order to provide for quality healthcare as well as adequate education, training and salaries for medical and paramedical staff", - "values": [ - "Right to health" - ] - }, - { - "text": "Take further measures to effectively combat trafficking in human beings, especially with regard to vulnerable groups such as women and children ", - "values": [ - "Rights of the Child", - "Trafficking", - "Women's rights" - ] - }, - { - "text": "Adopt appropriate measures to ensure the protection of human rights defenders, journalists and political opponents against acts of aggression and intimidation", - "values": [ - "Civil society", - "Freedom of the press", - "Human rights defenders" - ] - }, - { - "text": "Continue efforts to promote the political participation of women", - "values": [ - "Women's rights" - ] - }, - { - "text": "Step up efforts and adopt appropriate measures to combat any form of discrimination against minorities as a whole", - "values": [ - "Minorities" - ] - }, - { - "text": "Continue and further enhance the measures to combat human trafficking", - "values": [ - "Trafficking" - ] - }, - { - "text": "Reinforce measures to ensure the full investigation of allegations of torture, disappearances and arbitrary detention, and that it fully prosecutes and appropriately punishes persons responsible ", - "values": [ - "Detention", - "Enforced disappearances", - "Torture and other CID treatment" - ] - }, - { - "text": "Provide effective remedies to challenge a detention or expulsion in accordance with international law on human rights and refugees as well as with European standards", - "values": [ - "Asylum-seekers - refugees", - "Detention", - "International instruments" - ] - }, - { - "text": "Follow through with the ratification of the Optional Protocol to the Convention on the Elimination of All forms of Discrimination against Women now that a bill is under review following recommendations made during the previous UPR session ", - "values": [ - "International instruments", - "UPR process", - "Women's rights" - ] - }, - { - "text": "Remove restrictive practices against Christians and other minorities, including limitations on religious activities, freedom of thought and conscience, in accordance with international law", - "values": [ - "Freedom of religion and belief", - "Minorities" - ] - }, - { - "text": "Review article 16 (4) (c) of its Constitution to ensure that such a provision is not discriminatory against women ", - "values": [ - "Women's rights" - ] - }, - { - "text": "Approve a comprehensive policy with specific measures aimed at addressing the deep-rooted causes of trafficking in children and investigate the alleged disappearances of adolescent girls in the refugee camps", - "values": [ - "Asylum-seekers - refugees", - "Enforced disappearances", - "Rights of the Child", - "Trafficking" - ] - }, - { - "text": "Further pursue its efforts to create appropriate institutional mechanisms to counter all forms of discrimination and further pursue its efforts to provide human rights training for police personnel to effectively fight hate crimes ", - "values": [ - "Human rights education and training", - "Racial discrimination" - ] - }, - { - "text": "Ensure that the good practice of the "high rate of female parliamentary representation" is materialized through enhanced women's participation in decision-making in the country ", - "values": [ - "Women's rights" - ] - }, - { - "text": "Finalise the draft law on persons with disabilities with a view to its implementation", - "values": [ - "Disabilities" - ] - }, - { - "text": "Fully implement the Domestic Violence Act and develop a comprehensive policy to raise awareness of and prevent domestic violence", - "values": [ - "Human rights education and training", - "Rights of the Child", - "Women's rights" - ] - }, - { - "text": "Promote the establishment of places to care for and provide assistance to women victims of domestic violence.", - "values": [ - "Women's rights" - ] - }, - { - "text": "Guarantee access to contraception irrespective of marital status and repeal all laws which restrict women\u2019s and girls\u2019 access to sexual and reproductive health information", - "values": [ - "Right to health", - "Rights of the Child", - "Women's rights" - ] - }, - { - "text": "Follow up on recommendations of the ILO Committee of Experts on the Application of Conventions and Recommendations so that the 2006 amended Employment Act No. 4 ensures equal remuneration for men and women for work of equal value ", - "values": [ - "International instruments", - "Labour", - "Women's rights" - ] - }, - { - "text": "Accede to the international human rights instruments to which the State is not yet a party, in particular the International Convention on the Elimination of All Forms of Racial Discrimination, which it has only signed ", - "values": [ - "International instruments", - "Racial discrimination" - ] - }, - { - "text": "Examine the measures needed to expedite trials and judgments, notably in the criminal area, and examine the possible modification of the criminal system to make it possible for victims to participate in trials.", - "values": [ - "Justice" - ] - }, - { - "text": "Adopt legislation for the protection of domestic workers to guarantee their rights in accordance with international standards and prosecute violence against domestic workers", - "values": [ - "Labour" - ] - }, - { - "text": "Ensure in line with international human rights the protection of women human rights defenders - including through human rights training of the police - so that they can fully participate in society without fear of harassment or violence", - "values": [ - "Human rights defenders", - "Human rights education and training", - "Women's rights" - ] - }, - { - "text": "Consider adopting an integrated national human rights action plan as general guidance and a point of reference for various thematic national action plans", - "values": [ - "General" - ] - }, - { - "text": "Ratify the ICRMW", - "values": [ - "International instruments", - "Labour", - "Migrants" - ] - }, - { - "text": "Continue efforts to protect the rights of marginalized and vulnerable population ", - "values": [ - "Minorities" - ] - }, - { - "text": "Seek the necessary assistance in accordance with national priorities", - "values": [ - "Technical assistance and cooperation" - ] - }, - { - "text": "Involve civil society, including NGOs, academics, and research institutions in the follow-up work to this review, as noted in the national report of Peru.", - "values": [ - "Civil society", - "UPR process" - ] - }, - { - "text": "Extend an open invitation to the special procedures", - "values": [ - "Special procedures" - ] - }, - { - "text": "Ratify the International Convention for the Protection of All Persons from Enforced Disappearance and the International Convention on the Protection of the Rights of All Migrant Workers and Members of Their Families", - "values": [ - "Enforced disappearances", - "International instruments", - "Labour", - "Migrants" - ] - }, - { - "text": "Continue efforts to ameliorate prison conditions, including steps to address overcrowding and violence, as well as improving access to health care, education and recreational activities", - "values": [ - "Detention" - ] - }, - { - "text": "Ensure that children captured by the Forces armées de la République démocratique du Congo are treated primarily as victims, that they have access to justice and that their reintegration into their communities is facilitated", - "values": [ - "International humanitarian law", - "Rights of the Child" - ] - }, - { - "text": "Strengthen the policies related to receiving and the integration of migrants and refugees", - "values": [ - "Asylum-seekers - refugees", - "Migrants" - ] - }, - { - "text": "Apologize to the peoples and the countries it colonized or it attacked and provide financial compensation to the peoples of these countries", - "values": [ - "Other" - ] - }, - { - "text": "Establish an official moratorium on executions with a view to abolishing the death penalty", - "values": [ - "Death penalty" - ] - }, - { - "text": "Combat all forms of violence against and exploitation of children including incest, human trafficking and human organ trafficking, ensure their access to justice, and provide rehabilitation of victims into the society", - "values": [ - "Rights of the Child", - "Trafficking" - ] - }, - { - "text": "Decriminalise consensual sexual acts among adults of the same sex and adopt measures to eliminate social prejudices and stigmatization of homosexuality ", - "values": [ - "Sexual Orientation and Gender Identity" - ] - }, - { - "text": "Provide effective institutional mechanisms that duly protect girls against sexual abuses and effectively prevent early and forced marriage", - "values": [ - "Rights of the Child", - "Women's rights" - ] - }, - { - "text": "Strengthen efforts to effectively implement the legislation in force on the subject of gender violence in order to reduce the current percentages of mistreated women. Put in place awareness raising campaigns to combat rejection in society and increase protection for victims ", - "values": [ - "Human rights education and training", - "Women's rights" - ] - }, - { - "text": "Give consideration to the establishment of a centralized database on qualitative and quantitative data provided by victims or witnesses of racist or xenophobic incidents that have been reported to counselling institutions", - "values": [ - "Racial discrimination" - ] - }, - { - "text": "Improve its policies to protect the rights of women", - "values": [ - "Women's rights" - ] - }, - { - "text": "Adopt all necessary measures to eradicate and eliminate practices and customs which discriminate against women, including stereotypes which undermine their social and legal condition and hinder, at the same time, the implementation of commitments to the CEDAW ", - "values": [ - "International instruments", - "Women's rights" - ] - }, - { - "text": "Enact legislation on counter-terrorism and ensure its full implementation", - "values": [ - "Counter-terrorism" - ] - }, - { - "text": "Continue to provide Official Development Assistance (ODA) in the areas of socio-economic development", - "values": [ - "Development" - ] - }, - { - "text": "Continue efforts to harmonize its national legislation with international human rights instruments to which it is party.", - "values": [ - "International instruments" - ] - }, - { - "text": "Clearly place sexual crimes in statute books, in accordance with international standards", - "values": [ - "Rights of the Child", - "Women's rights" - ] - }, - { - "text": "Continue efforts to put a halt to banditry and to help alleviate the suffering of its people by reforming its security services", - "values": [ - "Public security" - ] - }, - { - "text": "Canada is committed to engaging with civil society and intends to hold further consultations in follow-up to the UPR.", - "values": [ - "Civil society", - "UPR process" - ] - }, - { - "text": "Accede to the OP-CAT", - "values": [ - "Detention", - "International instruments", - "Torture and other CID treatment" - ] - }, - { - "text": "Analyse the possibility of creating a national human rights network to facilitate, among others, the submission of reports to treaty bodies, and establishing a national system to monitor international recommendations", - "values": [ - "Treaty bodies" - ] - }, - { - "text": "The delegation reaffirmed Brunei Darussalam's commitment to its international obligations and indicated that Brunei Darussalam would be ratifying the Convention on the Rights of Persons with Disabilities (CRPD) in the near future. ", - "values": [ - "Disabilities", - "International instruments" - ] - }, - { - "text": "Strengthen provisions in the Constitution to promote good administrative practices in State institutions", - "values": [ - "Other" - ] - }, - { - "text": "Sign and ratify the two Optional Protocols to ICCPR", - "values": [ - "CP rights - general", - "Death penalty", - "International instruments" - ] - }, - { - "text": "Implement recommendations by relevant treaty bodies such as the Committee on Economic, Social and Cultural Rights, to end military involvement in commercial and other civilian activities", - "values": [ - "ESC rights - general", - "Treaty bodies" - ] - }, - { - "text": "Review its relevant legislation and regulations on birth registration to ensure their full conformity with the Convention on the Rights of the Child", - "values": [ - "International instruments", - "Rights of the Child", - "Statelessness and the right to nationality" - ] - }, - { - "text": "Amend its criminal legislation so as to bring it into line with ICERD in order to overcome the fact that racial discrimination is viewed as a minor infraction punishable by a fine, as stated by the Committee on the Elimination of Racial Discrimination and the Committee on Economic, Social and Cultural Rights \n\n", - "values": [ - "International instruments", - "Racial discrimination", - "Treaty bodies" - ] - }, - { - "text": "Repeal without delay all legislation that discriminates against women, including discriminatory provisions in its criminal and civil law", - "values": [ - "Women's rights" - ] - }, - { - "text": "Continue to engage the international community for assistance in addressing the menace of domestic violence, harmful traditional practices and trafficking in persons", - "values": [ - "Rights of the Child", - "Torture and other CID treatment", - "Trafficking", - "Women's rights" - ] - }, - { - "text": "Adopt comprehensive anti-discrimination legislation, which explicitly addresses all spheres of life and prohibits discrimination on any grounds", - "values": [ - "Other" - ] - }, - { - "text": "Sign and ratify the Optional Protocol to the CRPD", - "values": [ - "Disabilities", - "International instruments" - ] - }, - { - "text": "Improve the judicial system that is specialized for minors.", - "values": [ - "Justice", - "Rights of the Child" - ] - }, - { - "text": "Encouraged the establishment of a National Human Rights Institution based on Paris Principles", - "values": [ - "National Human Rights Institution" - ] - }, - { - "text": "Continue action to ensure the equality of men and women in the work place, including the implementation of programmes to combat wage gaps", - "values": [ - "Women's rights" - ] - }, - { - "text": "Consider approving the draft bill for the protection of human rights defenders, journalists, social communicators and justice officials", - "values": [ - "Freedom of the press", - "Human rights defenders", - "Justice" - ] - }, - { - "text": "Address, as a matter of priority, the conditions in Thai prisons and detention centres, including the expansion of the necessary infrastructure, prison personnel, as well as the improvement of inmates' access to medical care and legal counsel ", - "values": [ - "Detention" - ] - }, - { - "text": "Further support existing initiatives aimed at collecting and generating disaggregated data on racism and discrimination ", - "values": [ - "Racial discrimination" - ] - }, - { - "text": "Accede to ICCPR ", - "values": [ - "CP rights - general", - "International instruments" - ] - }, - { - "text": "Continue to strengthen its human rights institutions and develop further measures to ensure the effective implementation of their mandates", - "values": [ - "National Human Rights Institution" - ] - }, - { - "text": "Continue efforts to combat violence against women and early and forced marriage", - "values": [ - "Rights of the Child", - "Women's rights" - ] - }, - { - "text": "Liechtenstein will continue its efforts to address potential de facto discrimination of women, including with regard to inheritance", - "values": [ - "Women's rights" - ] - }, - { - "text": "Give the National Programme for the Prevention of Domestic Violence and Provision of Assistance to Victims all necessary resources, in particular regarding full access to the competent judiciary institutions", - "values": [ - "Rights of the Child", - "Women's rights" - ] - }, - { - "text": "Further its efforts to effectively prohibit torture and other ill-treatment, and to ensure the independence of the judiciary and respect for due process ", - "values": [ - "Justice", - "Torture and other CID treatment" - ] - }, - { - "text": "Strengthen its efforts to eliminate gender stereotyping", - "values": [ - "Women's rights" - ] - }, - { - "text": "Adopt a school feeding programme and integrate it with local agricultural production ", - "values": [ - "Right to food" - ] - }, - { - "text": "Continue to implement measures against gender stereotypes in the national idiosyncrasy ", - "values": [ - "Women's rights" - ] - }, - { - "text": "Consider the adoption of a comprehensive national policy on the protection of the rights of the child, in line with CRC", - "values": [ - "International instruments", - "Rights of the Child" - ] - }, - { - "text": "Improve the access to lawyers and the level of access of lawyers to documents of the criminal cases in order to ensure the right to fair trial ", - "values": [ - "Justice" - ] - }, - { - "text": "Continue existing efforts in the field of human rights education and training ", - "values": [ - "Human rights education and training" - ] - }, - { - "text": "Accede to the Rome Statute of the International Criminal Court and fully align its national legislation with the Rome Statute, including by incorporating provisions to cooperate promptly and fully with the Court and to investigate and prosecute genocide, crimes against humanity and war crimes effectively before its national courts ", - "values": [ - "International instruments", - "Justice" - ] - }, - { - "text": "Undertake measures in building an equal and adequate pension system mainly for women's childcare", - "values": [ - "Women's rights" - ] - }, - { - "text": "Harmonize the General Act on Women's Access to a Life Free of Violence and pertinent federal legislation", - "values": [ - "Women's rights" - ] - }, - { - "text": "Effectively implement existing legislation on child labour in line with India's international obligations and strengthen the judicial powers of the National Commission for Protection of Child Rights ", - "values": [ - "Labour", - "Rights of the Child" - ] - }, - { - "text": "Ratify international instruments in the area of human rights that have yet to be ratified by Gabon, such as the optional protocols to the International Covenant on Civil and Political Rights", - "values": [ - "CP rights - general", - "Death penalty", - "International instruments" - ] - }, - { - "text": "Conclude the ratification process of the Convention on the Rights of Persons with Disabilities ", - "values": [ - "Disabilities", - "International instruments" - ] - }, - { - "text": "Seek the assistance of the international community, the United Nations and its specialized agencies in providing the country with the needed support in confronting these challenges towards ensuring the promotion and protection of human rights and the attainment of its Millennium Development Goals ", - "values": [ - "Development", - "Technical assistance and cooperation" - ] - }, - { - "text": "Consider ratifying the Second Optional Protocol to the International Covenant on Civil and Political Rights, aiming at the abolition of the death penalty ", - "values": [ - "Death penalty", - "International instruments" - ] - }, - { - "text": "Consider reviewing and withdrawing the many and extensive reservations to the human rights treaties to which it is State party ", - "values": [ - "International instruments" - ] - }, - { - "text": "Continue to intensify law enforcement efforts against traffickers, incorporate anti-trafficking training into standard police curriculum, increase efforts to rescue trafficking victims, and provide appropriate care to those individuals", - "values": [ - "Trafficking" - ] - }, - { - "text": "Implement the United Nations Rules for the Treatment of Women Prisoners and Non-Custodial Measures for Women Offenders, otherwise known as the "Bangkok Rules" ", - "values": [ - "Detention", - "Women's rights" - ] - }, - { - "text": "Seek international assistance to supplement the national efforts to reduce maternal and child mortality ", - "values": [ - "Right to health", - "Rights of the Child", - "Technical assistance and cooperation", - "Women's rights" - ] - }, - { - "text": "Favour national unity through dialogue as a guarantor for security, without which there can be no development", - "values": [ - "Public security" - ] - }, - { - "text": "Demonstrate its commitment to articles 50 and 69 of the Constitution, articles 19, 21, and 22 of ICCPR and article 20 of the Universal Declaration by allowing individuals to speak out on the political system and by releasing all prisoners of conscience, such as Father Nguyen Van Ly, Nguyen Van Dai and Le Thi Cong Nhan, and abolish vague national security provisions such as articles 84, 88, and 258 used to convict those who voice dissent against the Government or its policies", - "values": [ - "Detention", - "Freedom of opinion and expression", - "Freedom of religion and belief", - "International instruments" - ] - }, - { - "text": "Set appropriate quotas to accelerate the equal representation of women in all areas of public life", - "values": [ - "Women's rights" - ] - }, - { - "text": "Ensure that provisions for arrest and detention are compatible with international human rights standards. that all persons detained have timely access to legal remedies to challenge their detention, have access to legal counsel and are brought to trial or released without unnecessary delays", - "values": [ - "Detention", - "International instruments" - ] - }, - { - "text": "Establish or strengthen independent public accountability mechanisms which contribute with the fight against corruption", - "values": [ - "Corruption" - ] - }, - { - "text": "Ratify the Convention on the Rights of Persons with Disabilities and its Optional Protocol ", - "values": [ - "Disabilities", - "International instruments" - ] - }, - { - "text": "Reflect on how to revise its legislation in order to better protect freedom of religion or belief for all individuals and groups without discrimination, in full compliance with article 18 of International Covenant on Civil and Political Rights ", - "values": [ - "Freedom of religion and belief", - "International instruments" - ] - }, - { - "text": "Amend the provisions concerning offences against national security which could restrict freedom of expression, including on the Internet, particularly articles 79, 88 and 258 of the Penal Code, to ensure its compliance with Viet Nam's international obligations, including ICCPR ", - "values": [ - "Freedom of opinion and expression", - "International instruments" - ] - }, - { - "text": "Continue applying the six objectives of the National Education Plan 2010-2019 ", - "values": [ - "Right to education" - ] - }, - { - "text": "Adopt measures to ensure that victims have access to protection and redress, that perpetrators are prosecuted and punished, and that gender sensitivity training be provided to relevant officials.", - "values": [ - "Human rights education and training", - "Justice", - "Women's rights" - ] - }, - { - "text": "Ensure that the procedures governing the registration of civil society organizations, including organizations advocating for the Saharawi people\u2019s right to self-determination, are in conformity with international standards", - "values": [ - "Civil society" - ] - }, - { - "text": "Continue social programmes aimed at addressing the basic needs of food, education, housing, health and work for vulnerable groups ", - "values": [ - "Development", - "Right to education", - "Right to food", - "Right to health", - "Right to housing" - ] - }, - { - "text": "Pursue sustained policies aimed at the promotion of women\u2019s full and equal participation in decision-making at all levels of government", - "values": [ - "Women's rights" - ] - }, - { - "text": "Set out a clear legislative timetable for ratification of the ICCPR", - "values": [ - "CP rights - general", - "International instruments" - ] - }, - { - "text": "Take steps that all persons including bloggers, journalists and human rights defenders can freely exercise their right to freedom of expression, online as well as offline, without fear from censorship or persecution", - "values": [ - "Freedom of opinion and expression", - "Freedom of the press", - "Human rights defenders" - ] - }, - { - "text": "Continue to strengthen the various mechanisms and institutions in the judicial as well as governmental level to promote and protect as well as monitor human rights, including strengthening the High Commission for Human Rights in line with the Paris Principles", - "values": [ - "Justice", - "National Human Rights Institution" - ] - }, - { - "text": "Decriminalize and eliminate all punitive measures related to termination of pregnancies in cases of rape, incest and severe fetal impairment", - "values": [ - "Women's rights" - ] - }, - { - "text": "Ratify the OP-CAT and the Rome Statute of the International Criminal Court", - "values": [ - "Detention", - "International instruments", - "Justice", - "Torture and other CID treatment" - ] - }, - { - "text": "Continue its efforts aimed at improving the level of public health in the country to attain better results in the area of health and access to health ", - "values": [ - "Right to health" - ] - }, - { - "text": "Redouble its efforts to support persons with special needs and to facilitate their integration in public life.", - "values": [ - "Disabilities" - ] - }, - { - "text": "Consider allocating sufficient financial resources to effectively implement the Law against Femicide, in accordance with recommendations of CEDAW", - "values": [ - "Treaty bodies", - "Women's rights" - ] - }, - { - "text": "End all de jure and de facto discrimination against Beduns by affording en masse all Beduns equal protection under law, and in particular by conferring Kuwaiti nationality on a non-discriminatory basis and allowing for the use of social services to such persons ", - "values": [ - "Minorities", - "Statelessness and the right to nationality" - ] - }, - { - "text": "Examine the media regulation system and eliminate all provisions that may hinder the freedom of expression ", - "values": [ - "Freedom of opinion and expression" - ] - }, - { - "text": "Consider ratifying the two Optional Protocols to the Convention on the Rights of the Child", - "values": [ - "International instruments", - "Rights of the Child" - ] - }, - { - "text": "Take necessary measures to ensure the effective enjoyment and protection of the right to freedom of religious belief, with a view to promoting the equality of all peoples and respect for all faiths", - "values": [ - "Freedom of religion and belief" - ] - }, - { - "text": "Continue efforts to strengthen legal framework, including considering ratification of the International Convention on the Protection of the Rights of All Migrant Workers and Members of their Families", - "values": [ - "International instruments", - "Labour", - "Migrants" - ] - }, - { - "text": "Consider the introduction of possible amendments to its national legislation on citizenship and nationality, so that, with respect to such issues, men and women are treated on an equal basis before the law", - "values": [ - "Women's rights" - ] - }, - { - "text": "Further strengthen the policies to protect children\u2019s rights", - "values": [ - "Rights of the Child" - ] - }, - { - "text": "Ensure full cooperation of the Croatian Government in making available all requested documents to the International Criminal Tribunal for the former Yugoslavia ", - "values": [ - "Justice" - ] - }, - { - "text": "Expedite the establishment of a National Human Rights Institution complaint with the Paris Principles", - "values": [ - "National Human Rights Institution" - ] - }, - { - "text": "Opt for the prohibition of the use of corporal punishments, especially those involving minors ", - "values": [ - "Rights of the Child", - "Torture and other CID treatment" - ] - }, - { - "text": "Continue its efforts to eliminate poverty, paying particular attention to the situation of children, single parents and the rural population", - "values": [ - "Poverty", - "Rights of the Child" - ] - }, - { - "text": "Continue to work to reduce the levels of poverty in indigenous communities", - "values": [ - "Indigenous peoples", - "Poverty" - ] - }, - { - "text": "Continue to adopt measures to effectively reduce the drop-out rate of students so as to ensure comprehensive realization of the right to education ", - "values": [ - "Right to education" - ] - }, - { - "text": "Issue an invitation to OHCHR for an official visit by November 2017", - "values": [ - "Other" - ] - }, - { - "text": "Strengthen the cooperation with the United Nations human rights mechanisms, in particular by permitting visits by special procedures mandate holders", - "values": [ - "Special procedures", - "Treaty bodies", - "UPR process" - ] - }, - { - "text": "Intensify its direct engagement with the OHCHR in order to ensure that the country receives coherent, appropriate, tailor-made assistance from the United Nations as a whole", - "values": [ - "Technical assistance and cooperation" - ] - }, - { - "text": "Ensure freedom of expression, including by creation of conditions for expressing opinions different from the official Government position and for realization of the right to know the truth ", - "values": [ - "Freedom of opinion and expression" - ] - }, - { - "text": "Expeditiously take appropriate steps towards restricting the use of pretrial detention and its duration and opt for alternative methods whenever possible ", - "values": [ - "Detention" - ] - }, - { - "text": "Maintain the positive trend in improving national laws and institutions, in particular the protection of women and children's rights ", - "values": [ - "Rights of the Child", - "Women's rights" - ] - }, - { - "text": "Recognize the right to conscientious objection to military service and introduce alternative service in line with international standards", - "values": [ - "Freedom of religion and belief" - ] - }, - { - "text": "Make additional efforts in the process of achieving the MDGs by 2015 ", - "values": [ - "Development" - ] - }, - { - "text": "Initiate investigations, prosecute actively and punish adequately offenders involved in the trafficking and exploitation of women and children implement fully national legislation on violence against women and undertake immediate measures to establish shelters and implement effective police protection for victims as recommended by the Committee on the Elimination of\nDiscrimination against Women, the Committee on Economic, Social and Cultural Rights and the Committee against Torture", - "values": [ - "Rights of the Child", - "Trafficking", - "Treaty bodies", - "Women's rights" - ] - }, - { - "text": "Ratify the international human rights instruments to which Djibouti is not yet party ", - "values": [ - "International instruments" - ] - }, - { - "text": "Seek the support of the international community and relevant organizations, including OHCHR, in keeping with the State's request for technical assistance for capacity-building, particularly for the preparation of human rights reports and the development of programmes for human rights education.", - "values": [ - "Human rights education and training", - "Technical assistance and cooperation" - ] - }, - { - "text": "Modify the definition of the discrimination in the law to bring it in line with the ICERD and other international standards", - "values": [ - "International instruments", - "Racial discrimination" - ] - }, - { - "text": "Continue to improve access to basic health-care services, especially for antenatal care and patients affected by HIV and the Ebola virus", - "values": [ - "HIV - Aids", - "Right to health" - ] - }, - { - "text": "Give priority to the implementation of awareness-raising measures aimed at achieving gender equality in marriage and family relations.", - "values": [ - "Human rights education and training", - "Women's rights" - ] - }, - { - "text": "Create and maintain a safe and enabling environment for civil society actors to freely associate, by amending relevant laws and ensuring they are not invoked to curtail the right to freedom of peaceful assembly", - "values": [ - "Civil society", - "Freedom of association and peaceful assembly" - ] - }, - { - "text": "Strengthen cooperation with the special procedures of the Human Rights Council by responding positively to the pending visit requests and eventually consider extending a standing invitation to all the special procedures mandate holders", - "values": [ - "Special procedures" - ] - }, - { - "text": "Take full and necessary measures to restore the administration of justice and exert its utmost efforts to realise the rule of law", - "values": [ - "Justice" - ] - }, - { - "text": "Set up a criminal policy which is determined to prevent, combat and punish those responsible for violence against women and take specific measures for the victims of violence.", - "values": [ - "Women's rights" - ] - }, - { - "text": "Adopt a practical approach in addressing its development and human rights challenges", - "values": [ - "Development" - ] - }, - { - "text": "Establish an independent, effective and well-resourced national preventive mechanism in compliance with the requirements of the Optional Protocol to the Convention against Torture and Other Cruel, Inhuman or Degrading Treatment or Punishment", - "values": [ - "Detention", - "International instruments", - "Torture and other CID treatment", - "Treaty bodies" - ] - }, - { - "text": "Eliminate negative stereotypes as well as combating torture and ill treatment by the law enforcement agencies", - "values": [ - "Human rights violations by state agents", - "Torture and other CID treatment" - ] - }, - { - "text": "Provide all necessary support to the Human Rights Defenders and Journalists Protection Mechanism and ensure full cooperation and its implementation at state and municipal levels", - "values": [ - "Freedom of the press", - "Human rights defenders" - ] - }, - { - "text": "Further strengthen existing policies and legislation on non-discrimination to reduce racist and xenophobic behaviour and manifestations", - "values": [ - "Racial discrimination" - ] - }, - { - "text": "Continue to ensure full respect for the human rights of migrants and their families, who find themselves in an extremely precarious socio-economic situation aggravated, inter alia, by a limitation of their citizenship rights", - "values": [ - "Migrants" - ] - }, - { - "text": "Step up efforts to address prejudice against children with disabilities to ensure that such children have access to health care and inclusive education", - "values": [ - "Disabilities", - "Right to education", - "Right to health", - "Rights of the Child" - ] - }, - { - "text": "Consider the establishment of a national human rights institution", - "values": [ - "National Human Rights Institution" - ] - }, - { - "text": "Ensure widespread, unannounced and rigorous factory inspections where breaches of the Labour Act 2006 occur and that those responsible are held accountable in a manner sufficient to ensure deterrence ", - "values": [ - "Labour" - ] - }, - { - "text": "Strengthen the implementation of measures taken to fight against child labour and trafficking of children", - "values": [ - "Labour", - "Rights of the Child", - "Trafficking" - ] - }, - { - "text": "Continue its efforts and actions in promoting social security and labour policy ", - "values": [ - "Labour" - ] - }, - { - "text": "Invite the Special Rapporteur on torture and other cruel, inhuman or degrading treatment or punishment to visit Ethiopia ", - "values": [ - "Special procedures", - "Torture and other CID treatment" - ] - }, - { - "text": "Enact legislation, as a matter of priority, that criminalizes the use of torture and ensure impartial and effective investigation in line with its obligations under the Convention against Torture", - "values": [ - "International instruments", - "Torture and other CID treatment" - ] - }, - { - "text": "Accede the 1967 Protocol relating to the Status of Refugees", - "values": [ - "Asylum-seekers - refugees", - "International instruments" - ] - }, - { - "text": "Ensure consistent enforcement of consular notification at all levels of Government and support the passage of related legislation through Congress", - "values": [ - "Other" - ] - }, - { - "text": "Take resolute action to prevent and effectively prosecute acts of violence and incitement of hatred against religious minorities and counter discrimination and intolerance on religious grounds", - "values": [ - "Freedom of religion and belief", - "Minorities", - "Racial discrimination" - ] - }, - { - "text": "Undertake further steps to effectively investigate alleged human rights violations by Law Enforcing Agencies and bring to justice police or other security personnel who were allegedly engaged in acts of brutality and torture ", - "values": [ - "Human rights violations by state agents", - "Torture and other CID treatment" - ] - }, - { - "text": "Adopt measures aimed at ensuring the equal treatment of migrants, regardless of their migratory situation ", - "values": [ - "Migrants" - ] - }, - { - "text": "That appropriate steps are taken to ensure inclusive education in Slovak schools and to desegregate students that have been placed in special classes or special schools on other grounds than mental disability ", - "values": [ - "Right to education" - ] - }, - { - "text": "Implement a national strategy to tackle the trafficking of women and girls, while building on its excellent work to ensure the effective protection of all workers, including migrant workers, against discrimination, and to ratify the 2014 protocol to the Forced Labour Convention, 1930 of the International Labour Organization", - "values": [ - "Labour", - "Migrants", - "Rights of the Child", - "Trafficking", - "Women's rights" - ] - }, - { - "text": "Attach greater importance to the promotion of civil and political rights, recognizing the indivisibility and interdependence of human rights, and grant freedom of speech and other civil liberties to its citizens ", - "values": [ - "CP rights - general", - "Freedom of opinion and expression" - ] - }, - { - "text": "Review the norms on defamation in the context of the international frameworks related to freedom of expression and opinion", - "values": [ - "Freedom of opinion and expression" - ] - }, - { - "text": "Improve access to public services for people with a disability, particularly educational and postal services", - "values": [ - "Disabilities", - "Right to education" - ] - }, - { - "text": "Consider the possibility of ratifying the International Convention for the Protection of All Persons from Enforced Disappearance CED and accept the jurisdiction of the relevant committee ", - "values": [ - "Enforced disappearances", - "International instruments" - ] - }, - { - "text": "Proceed with measures to ensure transparent and credible legislative elections no later than 2018", - "values": [ - "Elections" - ] - }, - { - "text": "Further increase the measures implemented under the National Strategy for the Promotion of Gender Equality (2009-2015)", - "values": [ - "Women's rights" - ] - }, - { - "text": "Broaden the current de facto moratorium on the death penalty so as to abolish it in all cases, including serious crimes, and sign and ratify the Second Optional Protocol to the ICCPR ", - "values": [ - "Death penalty", - "International instruments" - ] - }, - { - "text": "Step up efforts aimed at addressing deep-rooted stereotypes that still have a negative impact on the rights of women, and fight against heinous traditional practices such as early and forced marriage", - "values": [ - "Rights of the Child", - "Women's rights" - ] - }, - { - "text": "Further strengthen the standardization of the health management information system and share experience in this regard", - "values": [ - "Right to health" - ] - }, - { - "text": "Eliminate all forms of discrimination and pass the bill on caste-based discrimination and untouchability ", - "values": [ - "Racial discrimination" - ] - }, - { - "text": "Take an active stance to stop any actions or laws that constitute an infringement of the rights of LGBT persons ", - "values": [ - "Sexual Orientation and Gender Identity" - ] - }, - { - "text": "Repeal provisions which deny women legal guardianship of minor children on an equal footing with men", - "values": [ - "Women's rights" - ] - }, - { - "text": "Improve the overall situation of media freedom", - "values": [ - "Freedom of the press" - ] - }, - { - "text": "Intensify its efforts with a view to submitting delayed reports to treaty bodies ", - "values": [ - "Treaty bodies" - ] - }, - { - "text": "Ensure and allocate sufficient resources for girls' education in all provinces", - "values": [ - "Right to education", - "Rights of the Child", - "Women's rights" - ] - }, - { - "text": "Continue the measures aimed at the improvement of the protection, integration and, in particular, access to education of children with disabilities ", - "values": [ - "Disabilities", - "Right to education", - "Rights of the Child" - ] - }, - { - "text": "Continue its efforts to extend free education at all levels of secondary education", - "values": [ - "Right to education" - ] - }, - { - "text": "Seek the support of the international community in the framework of technical and financial assistance in order to strengthen its capacities for the timely implementation of activities relating to human rights ", - "values": [ - "Technical assistance and cooperation" - ] - }, - { - "text": "Continue its efforts in raising awareness campaigns to sensitize communities and general public on issues of domestic violence, with the support of the international community and other United Nations agencies ", - "values": [ - "Human rights education and training", - "Rights of the Child", - "Women's rights" - ] - }, - { - "text": "Guarantee the full legitimacy and protection for human rights defenders in accordance with the United Nations Declaration on Human Rights Defenders. Those arrested should be with no delays brought to fair and proper trials, or released", - "values": [ - "Detention", - "Human rights defenders", - "International instruments", - "Justice" - ] - }, - { - "text": "Pass legislation as soon as possible to ensure that the Second Optional Protocol to the International Covenant on Civil and Political Rights is implemented in domestic law as soon as practicable", - "values": [ - "Death penalty", - "International instruments" - ] - }, - { - "text": "Ratify the International Convention for the Protection of All Persons from Enforced Disappearance and recognize the competence of the Committee on Enforced Disappearances to receive and consider communications from or on behalf of victims and other States parties", - "values": [ - "Enforced disappearances", - "International instruments" - ] - }, - { - "text": "Ratify the Optional Protocol to the Convention against Torture and Other Cruel, Inhuman or Degrading Treatment or Punishment OP-CAT ", - "values": [ - "Detention", - "International instruments", - "Torture and other CID treatment" - ] - }, - { - "text": "Continue developing relevant international cooperation agreements to ensure universal access to medicines", - "values": [ - "Right to health", - "Technical assistance and cooperation" - ] - }, - { - "text": "Take steps to tackle corruption in the judiciary and the police, including by increasing access to relevant training, increasing oversight of both organizations and taking action when inappropriate behaviour is discovered", - "values": [ - "Corruption" - ] - }, - { - "text": "Continue harmonization of its legislation with norms of the Council of Europe in the area of preventing and combating violence against women, including domestic violence, and ensure the effective implementation of legislation", - "values": [ - "Rights of the Child", - "Women's rights" - ] - }, - { - "text": "Ensure de jure and de facto protection of fundamental freedoms in order to be in conformity with ICCPR that has been ratified by the Lao People's Democratic Republic. Regarding freedom of expression, lift the restrictions to freedom of press, ensure the independence and pluralism of media, and a safe environment for the work of journalists. Regarding freedom of association, facilitate unhindered action for human rights defenders and NGOs, notably through a reform of their registration system", - "values": [ - "Civil society", - "Freedom of association and peaceful assembly", - "Freedom of the press", - "Human rights defenders", - "International instruments" - ] - }, - { - "text": "Consider the possibility of raising the age of criminal responsibility for minors ", - "values": [ - "Justice", - "Rights of the Child" - ] - }, - { - "text": "Step up its efforts to reduce maternal mortality, including through an increased access to quality family planning", - "values": [ - "Right to health", - "Women's rights" - ] - }, - { - "text": "Intensify its efforts to fully implement the Convention on the Rights of the Child", - "values": [ - "International instruments", - "Rights of the Child" - ] - }, - { - "text": "Create independent monitoring mechanisms for the control of institutions and centres for social care", - "values": [ - "ESC rights - general" - ] - }, - { - "text": "Ensure that the police provide a safe and confidential environment for women and girls to report incidents of violence, including sexual violence and incidents of trafficking, and that all complaints are recorded and effectively investigated", - "values": [ - "Rights of the Child", - "Trafficking", - "Women's rights" - ] - }, - { - "text": "Improve conditions of detention in penitentiaries, by ensuring that prison overcrowding is reduced", - "values": [ - "Detention" - ] - }, - { - "text": "Ensure the independence of the National Commission for Human Rights and Freedoms, and provide it with adequate human and financial resources in the fulfilment of its mandate ", - "values": [ - "National Human Rights Institution" - ] - }, - { - "text": "Establishment of an independent national human rights institution compliant with Paris Principles at federal level with appropriate affiliated structures at state level", - "values": [ - "National Human Rights Institution" - ] - }, - { - "text": "Ratify the optional protocols to the Convention on the Rights of the Child", - "values": [ - "International humanitarian law", - "International instruments", - "Labour", - "Rights of the Child", - "Trafficking" - ] - }, - { - "text": "Adopt measures to guarantee women's equality under the law", - "values": [ - "Women's rights" - ] - }, - { - "text": "That the new administration that will emerge from the elections of November 8 develop a road map for the implementation of the recommendations issued by the Human Rights Council, the General Assembly, and United Nations Special Rapporteurs and Envoys", - "values": [ - "Technical assistance and cooperation", - "Treaty bodies", - "UPR process" - ] - }, - { - "text": "Intensify its efforts to establish a national human rights institution fully in accordance with the Paris Principles", - "values": [ - "National Human Rights Institution" - ] - }, - { - "text": "Continue the efforts to support the most vulnerable groups of population, including those efforts that guarantee the social inclusion of persons with disabilities", - "values": [ - "Disabilities" - ] - }, - { - "text": "Prohibit by law the confinement of more persons than the number of spots available in places of detention. In addition, establish by law mechanisms to immediately solve overcrowding", - "values": [ - "Detention" - ] - }, - { - "text": "Preserve its social harmony through retaining its existing legal provisions that allow various religious populations to live and practice their religion without stigma ", - "values": [ - "Freedom of religion and belief" - ] - }, - { - "text": "Continue developing policies for effective gender equality and to combat gender violence, conducting special monitoring of cases involving gender-based violence and studying the reasons why such cases are rarely reported to the authorities", - "values": [ - "Women's rights" - ] - }, - { - "text": "Review its legislation to ensure pluralism in the television industry", - "values": [ - "Freedom of the press" - ] - }, - { - "text": "Continue to strengthen and promote the legal and social status of women through constitutional and legislative guarantees", - "values": [ - "Women's rights" - ] - }, - { - "text": "Enshrine full equality between women and men in the Constitution and enact specific legislation to protect women, including foreign domestic workers from sexual and domestic violence", - "values": [ - "Migrants", - "Women's rights" - ] - }, - { - "text": "Increase the number of counsels with a view to guaranteeing the right to defence for all citizens, in accordance with a 2008 Human Rights Committee recommendation", - "values": [ - "Justice", - "Treaty bodies" - ] - }, - { - "text": "Continue reforms of the penitentiary system with special focus on human rights training for penitentiary staff", - "values": [ - "Detention", - "Human rights education and training" - ] - }, - { - "text": "Adopt further measures aiming at addressing the situation of discrimination between men and women and to eradicate negative stereotypes ", - "values": [ - "Women's rights" - ] - }, - { - "text": "Ban all forms of child labour for children from ages 6 to 14 ", - "values": [ - "Labour", - "Rights of the Child" - ] - }, - { - "text": "Continue efforts to review national laws to ensure that they are in line with their international human rights obligations", - "values": [ - "General" - ] - }, - { - "text": "Continue to address the problem of children who drop out of school", - "values": [ - "Right to education", - "Rights of the Child" - ] - }, - { - "text": "Domesticate the international human rights law", - "values": [ - "International instruments" - ] - }, - { - "text": "Better resource the Office of the Ombudsman and the national human rights commission, including pressing ahead with increasing the presence of the Ombudsman outside the capital with offices in the north, south, east and west of the country", - "values": [ - "National Human Rights Institution" - ] - }, - { - "text": "Ensure that the legislative framework guarantees the full enjoyment of freedom of expression and association", - "values": [ - "Freedom of association and peaceful assembly", - "Freedom of opinion and expression" - ] - }, - { - "text": "Take further steps to ensure the progressive realization for all inhabitants of the human right to safe drinking water and sanitation ", - "values": [ - "Right to water and sanitation" - ] - }, - { - "text": "Fully implement the Trafficking in Persons Act 2014 and ensure the continued work of the Committee against Trafficking in Persons", - "values": [ - "Trafficking" - ] - }, - { - "text": "Strengthen legislation protecting women and girls from forced or underage marriage and strengthen its penal code regarding rape, in particular by removing article 308 and amending the Penal Code to remove the exemption of those accused of honour crimes from prosecution, and strengthen the enforcement of this legislation, particularly in refugee camps ", - "values": [ - "Asylum-seekers - refugees", - "Justice", - "Rights of the Child", - "Women's rights" - ] - }, - { - "text": "Accelerate efforts for early enactment of the draft new bill which includes the definition of torture consistent with CAT ", - "values": [ - "International instruments", - "Torture and other CID treatment" - ] - }, - { - "text": "Implement specific legislation criminalising female genital mutilation and domestic violence ", - "values": [ - "Rights of the Child", - "Torture and other CID treatment", - "Women's rights" - ] - }, - { - "text": "Expand coverage and access to services that prevent transmission of HIV from mother to child.", - "values": [ - "HIV - Aids" - ] - }, - { - "text": "Further work in empowering women in decision-making", - "values": [ - "Women's rights" - ] - }, - { - "text": "Bring its domestic legislation in line with international standards on the sexual exploitation of children and establish a clear definition of child pornography ", - "values": [ - "Rights of the Child" - ] - }, - { - "text": "Protect and promote effectively the right to a fair trial in accordance with internationally established standards ", - "values": [ - "Justice" - ] - }, - { - "text": "Implement measures to fight against child labour", - "values": [ - "Labour", - "Rights of the Child" - ] - }, - { - "text": "Thoroughly implement the 2014-2016 strategy to prevent adolescent pregnancy, in cooperation with UNFPA", - "values": [ - "Rights of the Child", - "Technical assistance and cooperation", - "Women's rights" - ] - }, - { - "text": "Continue its activities to eliminate racism, xenophobia and other acts of intolerance \n\n", - "values": [ - "Racial discrimination" - ] - }, - { - "text": "Consider adopting an action plan to combat racism and xenophobia ", - "values": [ - "Racial discrimination" - ] - }, - { - "text": "Develop a comprehensive action plan to combat domestic violence against women and girls ", - "values": [ - "Rights of the Child", - "Women's rights" - ] - }, - { - "text": "Investigate all allegations of torture, ill-treatment and excessive use of force by law enforcement officials and bring those responsible to justice", - "values": [ - "Human rights violations by state agents", - "Justice", - "Torture and other CID treatment" - ] - }, - { - "text": "Further strengthen its institutional framework to enable it to defend its sovereignty and protect the human rights of its people", - "values": [ - "Other" - ] - }, - { - "text": "Reconsider the concession of refugee centers to private businesses taking into account the impact such a policy has on the right to access to justice, as well as the practical consequences of the financial incentives that this creates", - "values": [ - "Asylum-seekers - refugees", - "Justice" - ] - }, - { - "text": "Take all necessary measures to ensure that detention conditions be made compatible with international laws and standards, particular articles 9 and 10 of the ICCPR", - "values": [ - "Detention", - "International instruments" - ] - }, - { - "text": "Consider signing at the earliest possible time the Optional Protocol to the International Covenant on Economic, Social and Cultural Rights. ", - "values": [ - "ESC rights - general", - "International instruments" - ] - }, - { - "text": "Apply effectively all protection measures provided for in the Law on the Welfare and Protection of Children", - "values": [ - "Rights of the Child" - ] - }, - { - "text": "Accept the visit request made by the Special Rapporteur on the promotion and protection of human rights while countering terrorism", - "values": [ - "Counter-terrorism", - "Special procedures" - ] - }, - { - "text": "Adopt measures to prevent arbitrary detention and to avoid excessive use of force by security forces", - "values": [ - "Detention", - "Human rights violations by state agents" - ] - }, - { - "text": "Continue to cooperate closely with human rights mechanisms and the special procedures", - "values": [ - "Special procedures" - ] - }, - { - "text": "Step up the process of consultations concerning the accession to the International Convention for the Protection of All Persons from Enforced Disappearance, as previously recommended", - "values": [ - "Enforced disappearances", - "International instruments", - "UPR process" - ] - }, - { - "text": "Speed up the adoption of legislative amendments relevant to the specialized laws on freedom of expression in the Bahraini Criminal law ", - "values": [ - "Freedom of opinion and expression" - ] - }, - { - "text": "Promote and protect the rights of indigenous peoples, peasants and other rural workers", - "values": [ - "Indigenous peoples" - ] - }, - { - "text": "Further enhance the legislation and legal system, with more considerations to the harmonization of domestic developments and the international stipulations on human rights, including those of the International Covenants on Civil and Political Rights and on Economic, Cultural and Social Rights ", - "values": [ - "CP rights - general", - "ESC rights - general", - "International instruments" - ] - }, - { - "text": "Take all necessary measures towards ratifying the Rome Statute of the International Criminal Court", - "values": [ - "International instruments", - "Justice" - ] - }, - { - "text": "Continue to cooperate with the United Nations, other international organizations and the world community to settle all the humanitarian issues ", - "values": [ - "Other" - ] - }, - { - "text": "Consider extending a standing invitation to all Special Procedures of the Human Rights Council ", - "values": [ - "Special procedures" - ] - }, - { - "text": "Take concrete steps towards abolishing the death penalty", - "values": [ - "Death penalty" - ] - }, - { - "text": "Take concrete measures to eliminate all discrimination against women, protect women from being victimized by domestic violence, and promote the participation of women in all aspects of life, including politics, administration and socio-economic settings", - "values": [ - "Women's rights" - ] - }, - { - "text": "Adopt comprehensive strategy to combat domestic violence", - "values": [ - "Rights of the Child", - "Women's rights" - ] - }, - { - "text": "Review the Organic Act on Communication and relevant executive decrees so that media outlets, civil society organizations and trade unions can operate freely, cannot be arbitrarily sanctioned or disbanded and have access to effective remedy", - "values": [ - "Civil society" - ] - }, - { - "text": "Establish a centralized mechanism to prevent and combat trafficking in persons", - "values": [ - "Trafficking" - ] - }, - { - "text": "Extend an open and standing invitation to Special Procedures mandate holders across the board ", - "values": [ - "Special procedures" - ] - }, - { - "text": "To associate the CNCDH in the follow-up to the recommendations made by the treaty bodies, in addition to its ongoing cooperation with regard to the preparation of periodic reports for the human rights treaty bodies", - "values": [ - "National Human Rights Institution", - "Treaty bodies" - ] - }, - { - "text": "Put in place mechanisms to follow up on UPR recommendations and that make it possible to verify the implementation and impact of norms and measures adopted to promote equality of rights", - "values": [ - "UPR process" - ] - }, - { - "text": "Continue to channel her tremendous resources into social programmes with a view to eradicating poverty ", - "values": [ - "Poverty" - ] - }, - { - "text": "Authorize the press to work freely, lift all restrictions to political opposition, put stop to the prosecution of journalists and ensure that cases of harassment against defenders of economic and social rights are investigated ", - "values": [ - "ESC rights - general", - "Freedom of association and peaceful assembly", - "Freedom of opinion and expression", - "Freedom of the press", - "Human rights defenders" - ] - }, - { - "text": "Consider ratifying, and implementing in national law, the outstanding core international human rights treaties, in particular ICESCR, and ICCPR", - "values": [ - "CP rights - general", - "ESC rights - general", - "International instruments" - ] - }, - { - "text": "Ratify the Convention on the Rights of Persons with Disabilities, which Monaco signed in 2009 ", - "values": [ - "Disabilities", - "International instruments" - ] - }, - { - "text": "Effectively implement the Gender Equality Act of 2015", - "values": [ - "Women's rights" - ] - }, - { - "text": "Continue to implement National Health Policy 2015", - "values": [ - "Right to health" - ] - }, - { - "text": "Continue to promote its successful policies, mainly in the field of economic, social and cultural rights, in order to further increase the quality of life of its people, particularly the most vulnerable sectors of the population", - "values": [ - "ESC rights - general" - ] - }, - { - "text": "Consider acceding to core human rights treaties to which it is not yet a party ", - "values": [ - "International instruments" - ] - }, - { - "text": "Consider adoption of a moratorium on the death penalty at the federal level", - "values": [ - "Death penalty" - ] - }, - { - "text": "Implement UN Security Council Resolutions on Women, Peace and Security, including by supporting the participation of women in peace talks, and continuing to increase the proportion of women playing an active role in the security forces, in particular the police, while ensuring their safety and dignity in their place of work ", - "values": [ - "Women's rights" - ] - }, - { - "text": "Step up its efforts to make the community aware of the risks of HIV and establish a campaign to increase awareness among young people.", - "values": [ - "HIV - Aids" - ] - }, - { - "text": "Take additional serious measures to eliminate violence against women and children, including sexual violence", - "values": [ - "Rights of the Child", - "Women's rights" - ] - }, - { - "text": "Provide the Agency for the Rights of the Ethnic Groups Which Are Less Than 20 per cent of the Population with the necessary resources to effectively deal with minority issues. ", - "values": [ - "Minorities" - ] - }, - { - "text": "Reconsider alternatives to the detention of migrants ", - "values": [ - "Detention", - "Migrants" - ] - }, - { - "text": "Fully align its national legislation with the Rome Statute of the International Criminal Court", - "values": [ - "International instruments", - "Justice" - ] - }, - { - "text": "Launch an intensive national programme for human rights awareness-raising and education in order to protect and enhance human rights ", - "values": [ - "Human rights education and training" - ] - }, - { - "text": "Speed up efforts to achieve Millennium Development Goals on education ", - "values": [ - "Development" - ] - }, - { - "text": "Continue efforts in the area of gender equality, in particular regarding acquisition, loss and transfer of nationality", - "values": [ - "Women's rights" - ] - }, - { - "text": "Share its experience relating to primary education and the promotion of women's rights with interested countries ", - "values": [ - "Right to education" - ] - }, - { - "text": "Provide, in accordance with its obligations under international human rights law, the widest possible protection and support for the family, as the natural and fundamental unit of society ", - "values": [ - "Other" - ] - }, - { - "text": "Create a health insurance scheme for the poor ", - "values": [ - "Poverty", - "Right to health" - ] - }, - { - "text": "That special attention is given to protecting migrant workers from exploitative working conditions, specifically in the agricultural sector", - "values": [ - "Labour", - "Migrants" - ] - }, - { - "text": "Continue efforts to ensure gender equality and advancement of women, in line with national policies and laws ", - "values": [ - "Women's rights" - ] - }, - { - "text": "Examine the possibility of becoming party to the following international instruments: ICESCR, ICCPR, CAT, CED, ICRMW ", - "values": [ - "International instruments" - ] - }, - { - "text": "Abolish definitively the death penalty in conformity with the provisions contained in the second Optional Protocol to the International Covenant on Civil and Political Rights ", - "values": [ - "Death penalty", - "International instruments" - ] - }, - { - "text": "Reduce underrepresentation of women, including in the labour market.", - "values": [ - "Women's rights" - ] - }, - { - "text": "Continue its efforts on alignment of national legislations and international standards and good practices of human rights, especially those on civil, political, economic, social and cultural rights", - "values": [ - "CP rights - general", - "ESC rights - general" - ] - }, - { - "text": "Strengthen efforts to eliminate discrimination against women, including in the labour market", - "values": [ - "Women's rights" - ] - }, - { - "text": "Continue its efforts to eradicate poverty and extreme poverty particularly in rural areas", - "values": [ - "Poverty" - ] - }, - { - "text": "Strengthen measures to ensure the investigation and sanctioning of all politically motivated acts of violence that have occurred in the country in recent years", - "values": [ - "Other" - ] - }, - { - "text": "Close down the political prison camps and release all political prisoners", - "values": [ - "Detention", - "Freedom of opinion and expression" - ] - }, - { - "text": "Pursue the efforts to remove all measures that could give rise to situations analogous to torture or cruel or inhuman treatment from its national legislation, and establish the necessary safeguards to prevent torture and abolish the death penalty", - "values": [ - "Death penalty", - "Torture and other CID treatment" - ] - }, - { - "text": "Review legislation with the view of establishing a minimum marriage age at 18 years for both boys and girls, under the Convention on the Rights of the Child", - "values": [ - "International instruments", - "Rights of the Child" - ] - }, - { - "text": "Take steps in order to sign and ratify the International Covenant on Civil and Political Rights and the International Covenant on Economic, Social and Cultural Rights", - "values": [ - "CP rights - general", - "ESC rights - general", - "International instruments" - ] - }, - { - "text": "Continue with the efforts of realizing the targets of the Millennium Development Goals in the areas of nutrition, gender equality in primary education, reduction of maternal and child mortality", - "values": [ - "Development", - "Right to education", - "Right to food", - "Right to health", - "Rights of the Child", - "Women's rights" - ] - }, - { - "text": "Take action to reduce and eliminate all cases of abductions and disappearances", - "values": [ - "Enforced disappearances" - ] - }, - { - "text": "Implement the recommendations of the 2008 Constitutional Review ", - "values": [ - "General" - ] - }, - { - "text": "Amend its Penal Code to decriminalise sexual relations between persons of the same sex", - "values": [ - "Sexual Orientation and Gender Identity" - ] - }, - { - "text": "Address deficiencies in the legal framework of the electoral process, abolish restrictions on domestic and international observation, strengthen independence and transparency of the Electoral Commission and deal with flaws in the voters' register and with problems with the media coverage", - "values": [ - "Elections" - ] - }, - { - "text": "Take additional measures to tackle the problem of assimilation and to reduce the gap that exists between the legislative framework and its implementation with regard to the use of minority languages in public services", - "values": [ - "Minorities" - ] - }, - { - "text": "Take measures to put an end to torture and ill-treatment practised by the police forces and to combat the impunity of people responsible for such offences, including by ratifying the Optional Protocol to the Convention against Torture and Other Cruel, Inhuman or Degrading Treatment or Punishment", - "values": [ - "Human rights violations by state agents", - "International instruments", - "Torture and other CID treatment", - "Treaty bodies" - ] - }, - { - "text": "Continue ensuring effective implementation of its domestic laws on the protection of the family and prevention of violence against women and children", - "values": [ - "Rights of the Child", - "Women's rights" - ] - }, - { - "text": "Continue its efforts, particularly in education, in pursuing policies supporting disadvantaged populations, ensuring school attendance of all children and reducing school dropout rates among adolescents ", - "values": [ - "Right to education", - "Rights of the Child" - ] - }, - { - "text": "Aware of the fragile situation of unaccompanied foreign minors, Italy is fully committed to ensuring that these children are protected, regardless of their status.", - "values": [ - "Migrants", - "Rights of the Child" - ] - }, - { - "text": "Adopt, in consultation with civil society, a plan of action to prioritise, ratify and implement key international human rights treaties", - "values": [ - "International instruments" - ] - }, - { - "text": "Raise public awareness to counter deeply rooted traditional patriarchal attitudes which lead to violence against women, as recommended by CEDAW ", - "values": [ - "Treaty bodies", - "Women's rights" - ] - }, - { - "text": "Consider incorporating the United Nations Rules for the Treatment of Women Prisoners and Non-Custodial Measures for Women Offenders, otherwise known as the "Bangkok Rules", as part of its programme to enhance the condition of detainees ", - "values": [ - "Detention", - "Women's rights" - ] - }, - { - "text": "Work towards the establishment of a national human rights institution in accordance with the Paris Principles", - "values": [ - "National Human Rights Institution" - ] - }, - { - "text": "Bring the criminalization of child trafficking in line with international standards.", - "values": [ - "Rights of the Child", - "Trafficking" - ] - }, - { - "text": "Continue efforts to develop the capacities of the institutions that deal with disabled persons ", - "values": [ - "Disabilities" - ] - }, - { - "text": "Take measures to reduce the numbers of domestic violence cases and ensure that all victims get immediate access to reparation and protection measures, including judicial protection orders, legal assistance and reception centres in sufficient numbers ", - "values": [ - "Rights of the Child", - "Women's rights" - ] - }, - { - "text": "Continue to apply measures aimed at the implementation of the Criminal Code and other legal mechanisms in place to protect children ", - "values": [ - "Rights of the Child" - ] - }, - { - "text": "Continue implementing measures for the improvement of maternal and child health in line with its National Health Development Plan for 2011 to 2015 ", - "values": [ - "Right to health", - "Rights of the Child", - "Women's rights" - ] - }, - { - "text": "Take steps to address pay gaps between men and women and other forms of discrimination against women ", - "values": [ - "Women's rights" - ] - }, - { - "text": "Further strengthen the national endeavours in promoting and protecting the rights of persons with disabilities in line with the Convention on the Rights of Persons with Disabilities", - "values": [ - "Disabilities", - "International instruments" - ] - }, - { - "text": "Continue its economic and social policies in the framework of Vision 2030 by paying greater attention to programmes for the fight against poverty and the reduction of social inequalities ", - "values": [ - "Development", - "Poverty" - ] - }, - { - "text": "Step up its efforts to carry out the second phase of its Education for All programmes to focus on providing affordable and quality secondary education in the country", - "values": [ - "Right to education" - ] - }, - { - "text": "Continue to protect and promote the rights of vulnerable groups of population, including children, the disabled, the elderly and women", - "values": [ - "Disabilities", - "Rights of the Child", - "Women's rights" - ] - }, - { - "text": "Establish independent monitoring of conditions in detention and prisons together with effective complaint procedure for victims of torture", - "values": [ - "Detention", - "Torture and other CID treatment" - ] - }, - { - "text": "Further strengthen its cooperation with human rights mechanisms, in particular the United Nations treaty bodies", - "values": [ - "Special procedures", - "Treaty bodies", - "UPR process" - ] - }, - { - "text": "Repeal any remaining laws and regulations that discriminate against women and girls, and to ensure that these laws are in compliance with human rights obligations and commitments", - "values": [ - "International instruments", - "Rights of the Child", - "Women's rights" - ] - }, - { - "text": "Amend the Penal Code in the Faroe Islands to ensure that the definition of rape is brought in line with international standards and criminalized in all circumstances, including within marriage", - "values": [ - "Women's rights" - ] - }, - { - "text": "Consider the possibility of acceding to and/or ratifying the International Convention on the Elimination of All Forms of Racial Discrimination ", - "values": [ - "International instruments", - "Racial discrimination" - ] - }, - { - "text": "Redouble its efforts to develop and maintain a qualified cadre of highly motivated primary and secondary school teachers capable of providing quality education to students", - "values": [ - "Right to education" - ] - }, - { - "text": "Adopt pertinent measures for economic empowerment of women, and intensify actions against female genital mutilation and early marriage", - "values": [ - "Rights of the Child", - "Torture and other CID treatment", - "Women's rights" - ] - }, - { - "text": "Continue to implement measures to stop the flow of trafficking in persons", - "values": [ - "Trafficking" - ] - }, - { - "text": "Enhance legal protections for women, including by improving the investigation, prosecution and prevention of violence against women and fully implementing the National Action Plan for the Prevention and Eradication of Domestic Violence and Violence against Women", - "values": [ - "Women's rights" - ] - }, - { - "text": "Expedite the creation of a National Human Rights Institution in accordance with the Paris Principles", - "values": [ - "National Human Rights Institution" - ] - }, - { - "text": "Genuine and full commitment to its commitments pursuant to the International Convention against the Recruitment, Use, Financing and Training of Mercenaries, as these activities have destructive impacts on human rights", - "values": [ - "International instruments" - ] - }, - { - "text": "Continue efforts to combat all forms of human trafficking", - "values": [ - "Trafficking" - ] - }, - { - "text": "Lastly, the recommendations arising from our country's participation in the universal periodic review mechanism will be given proper attention by all responsible institutions and will be widely disseminated. They will be implemented as quickly and thoroughly as possible.", - "values": [ - "UPR process" - ] - }, - { - "text": "Establish a moratorium on all executions and eventually abolish the death penalty ", - "values": [ - "Death penalty" - ] - }, - { - "text": "The Dominican Republic thanked all delegations for their questions and comments and reiterated its serious commitment to promoting all human rights. It also reaffirmed its commitment to ratify and adhere to the conventions mentioned throughout the interactive dialogue and its openness to receiving visits by different United Nations human rights mechanisms.", - "values": [ - "International instruments", - "Special procedures" - ] - }, - { - "text": "Strengthen measures to ensure the full enjoyment of the right to freedom of peaceful assembly and expression", - "values": [ - "Freedom of association and peaceful assembly", - "Freedom of opinion and expression" - ] - }, - { - "text": "Ensure freedom of expression and media freedom by guaranteeing that journalists and media workers are able to practise their professions in a free and safe environment and that all attacks on journalists and media workers are investigated and by criminalizing defamation", - "values": [ - "Freedom of opinion and expression", - "Freedom of the press" - ] - }, - { - "text": "Activate the New Generation programme with regard to children's rights and initiate cooperation with UNICEF and other relevant international human rights organizations ", - "values": [ - "Rights of the Child" - ] - }, - { - "text": "Continue its policy of respect and tolerance of all religious without discrimination in particular the right to choose one's own convictions", - "values": [ - "Freedom of religion and belief" - ] - }, - { - "text": "Establish a moratorium on executions and reduce the number of crimes punishable by the death penalty ", - "values": [ - "Death penalty" - ] - }, - { - "text": "Continue to implement youth unemployment programmes in order to produce a skilled workforce to meet the requirements of the labour market and promote youth entrepreneurship ", - "values": [ - "Development" - ] - }, - { - "text": "Continue efforts to strengthen national reconciliation and fight against insecurity", - "values": [ - "Justice", - "Public security" - ] - }, - { - "text": "Consider establishing a mechanism to monitor the conditions of execution of the sentence of the convicted prisoners deprived of their liberty in France ", - "values": [ - "Detention", - "Justice" - ] - }, - { - "text": "Investigate and sanction the acts of violence and discrimination committed on the ground of sexual orientation", - "values": [ - "Sexual Orientation and Gender Identity" - ] - }, - { - "text": "Reinforce its legal measures on strengthening political parties and electoral system ", - "values": [ - "Elections", - "Freedom of association and peaceful assembly" - ] - }, - { - "text": "Ensure respect for the rights and fundamental freedoms of children through sanctioning the authors of all exploitation and forced labour practices", - "values": [ - "Labour", - "Rights of the Child", - "Trafficking" - ] - }, - { - "text": "Find a positive solution to the institutional crisis, that Belgium has been going through for several months, through a dialogue between the various communities of the Belgian society ", - "values": [ - "Other" - ] - }, - { - "text": "Establish a moratorium on the use of death penalty ", - "values": [ - "Death penalty" - ] - }, - { - "text": "Ensure the safety and well-being of human rights defenders so that they are able to carry out freely their legitimate duties", - "values": [ - "Human rights defenders" - ] - }, - { - "text": "Approve the opening of an OHCHR country office to provide for enhance protection of and cooperation on human rights", - "values": [ - "Technical assistance and cooperation" - ] - }, - { - "text": "Request cooperation and technical assistance for the development and implementation of the Convention on the Elimination of all Forms of Discrimination against Women", - "values": [ - "International instruments", - "Technical assistance and cooperation", - "Women's rights" - ] - }, - { - "text": "Accede to the Optional Protocol to the Convention against Torture (OPCAT) and establish its national protective mechanism accordingly", - "values": [ - "Detention", - "International instruments", - "Torture and other CID treatment" - ] - }, - { - "text": "Reflect the results of the evaluation exercise on the implementation of recommendations of the treaty bodies conducted jointly by the Government and OHCHR in the work of the Guatemalan authorities in the future in order to achieve the effective realization of human rights in the country.", - "values": [ - "Treaty bodies" - ] - }, - { - "text": "Establish a process to identify the victims by setting up a DNA database, exhume mass graves and to set up a national commission on missing persons", - "values": [ - "Justice" - ] - }, - { - "text": "Strengthen efforts to reduce neo-natal and maternal mortality including by increasing access to sexual and reproductive health services and providing quality health care and facilities to women", - "values": [ - "Right to health", - "Women's rights" - ] - }, - { - "text": "Adopt measures to continue to democratize local government elections, based on equal suffrage", - "values": [ - "Elections" - ] - }, - { - "text": "Recognizing the commitment of the Gambia to different international human rights instruments, ratify and sign CAT and OP-CAT, CRPD and OPCRPD, CED, OP-CEDAW, CRC and ICESCR", - "values": [ - "International instruments" - ] - }, - { - "text": "Continue paving the road to eradicate stereotypes that favour discrimination against women in the media", - "values": [ - "Women's rights" - ] - }, - { - "text": "Repeal or amend its Penal Code to ensure that it cannot be applied in an arbitrary manner to prevent the freedom of expression.", - "values": [ - "Freedom of opinion and expression" - ] - }, - { - "text": "Maintain efforts towards ensuring the full domestic implementation of the provisions of CEDAW and align all domestic laws with human rights instruments, which Iraq is a State party to", - "values": [ - "International instruments", - "Women's rights" - ] - }, - { - "text": "Ratify the International Convention on the Protection of the Rights of All Migrants Workers and Members of Their Families", - "values": [ - "International instruments", - "Labour", - "Migrants" - ] - }, - { - "text": "Explicitly prohibit all corporal punishment when raising children, at home, at school, institutions, the penal system and in all other areas, in accordance with Article 19 of the Convention on the Rights of the Child ", - "values": [ - "International instruments", - "Rights of the Child", - "Torture and other CID treatment" - ] - }, - { - "text": "Continue the efforts aimed at further enhancing the status of women and gradually do away with some traditional concepts in the rural areas that are likely to entrench practices that may still hamper progress in gender equality", - "values": [ - "Women's rights" - ] - }, - { - "text": "Accelerate the process towards the ratification of the Optional Protocol to the Convention against Torture", - "values": [ - "Detention", - "International instruments", - "Torture and other CID treatment" - ] - }, - { - "text": "Ratify the Rome Statute of the International Criminal Court .", - "values": [ - "International instruments", - "Justice" - ] - }, - { - "text": "Adopt effective measures to combat racism, racial discrimination and incitement to racial hatred, and in particular, to prohibit the dissemination of racist and xenophobic propaganda ", - "values": [ - "Racial discrimination" - ] - }, - { - "text": "Continue the efforts aimed at eliminating all discriminatory treatment based on sexual orientation or gender identity", - "values": [ - "Sexual Orientation and Gender Identity" - ] - }, - { - "text": "Address the root causes of domestic violence in order to carry out awareness campaigns on violence against women and their rights, especially in rural areas", - "values": [ - "Human rights education and training", - "Rights of the Child", - "Women's rights" - ] - }, - { - "text": "Consider issuing a standing invitation to all special procedures mandate holders ", - "values": [ - "Special procedures" - ] - }, - { - "text": "Take into account the requirements related to sustainable development and the protection of the environment in the development of public policies", - "values": [ - "Development" - ] - }, - { - "text": "Abolish in its criminal legislation the use of life imprisonment to children", - "values": [ - "Detention", - "Rights of the Child" - ] - }, - { - "text": "Unequivocally express itself and act in support of freedom of speech for journalists, in accordance with the transitional federal charter ", - "values": [ - "Freedom of opinion and expression", - "Freedom of the press" - ] - }, - { - "text": "Continue to improve domestic laws in order to ensure international legal obligations in accordance with international norms and principles", - "values": [ - "General" - ] - }, - { - "text": "In the framework of the human rights forum, include training and awareness programmes on human rights and international treaties to the benefit of relevant officers, including through United Nations technical assistance projects.", - "values": [ - "Human rights education and training", - "Technical assistance and cooperation" - ] - }, - { - "text": "Consider developing a comprehensive plan for the care and protection of children as recommended by the Committee on the Rights of the Child ", - "values": [ - "Rights of the Child", - "Treaty bodies" - ] - }, - { - "text": "Develop a stand-alone law on domestic violence, where gender-based violence will be qualified as a criminal offence subject to prosecution", - "values": [ - "Rights of the Child", - "Women's rights" - ] - }, - { - "text": "Ensure that the cardinal laws, resulting from the new Fundamental Law, do not contain provisions that discriminate against people with disabilities, women and LGBT people", - "values": [ - "Disabilities", - "Sexual Orientation and Gender Identity", - "Women's rights" - ] - }, - { - "text": "Take all necessary measures to protect and promote the rights of persons, notably children with disabilities ", - "values": [ - "Disabilities", - "Rights of the Child" - ] - }, - { - "text": "Consider an early ratification of ICCPR and its Optional Protocols, ICESCR and the Convention against Torture and other Cruel, Inhuman and Degrating Treatment CAT and its Optional Protocol OP-CAT", - "values": [ - "CP rights - general", - "Detention", - "ESC rights - general", - "International instruments", - "Torture and other CID treatment" - ] - }, - { - "text": "Introduce a moratorium on the death penalty with a view to the future abolition of capital punishment, and ratify the Second Optional Protocol to the International Covenant on Civil and Political Rights", - "values": [ - "Death penalty", - "International instruments" - ] - }, - { - "text": "Take all necessary measures so that the Act on Women's Right to a Life Free from Violence is effectively implemented", - "values": [ - "Women's rights" - ] - }, - { - "text": "Increase the budget allocated to social workers responsible for assisting victims of domestic violence, by including the costs of travel to visits to assess victims and by increasing human resources", - "values": [ - "Women's rights" - ] - }, - { - "text": "Continue policies aimed at intensifying the fight against all forms of corruption ", - "values": [ - "Corruption" - ] - }, - { - "text": "Continue to implement and strengthen public policies and programmes for inclusion, reduction of poverty and inequality, non-discrimination and promotion of equality and inclusion", - "values": [ - "Poverty" - ] - }, - { - "text": "Fully respect the freedoms of expression, opinion, association and peaceful assembly in accordance with Eritrea's obligations under the International Covenant on Civil and Political Rights ", - "values": [ - "Freedom of association and peaceful assembly", - "Freedom of opinion and expression", - "International instruments" - ] - }, - { - "text": "Consider the definite abolishment of the death penalty in its internal legislation and accede", - "values": [ - "Death penalty" - ] - }, - { - "text": "Recognize in law the gender identity of transgender people and do not restrict the rights of lesbian, gay, bisexual, transgender and intersex people", - "values": [ - "Sexual Orientation and Gender Identity" - ] - }, - { - "text": "Ensure safe and unhindered access for all humanitarian personnel and humanitarian assistance to the civilian population", - "values": [ - "International humanitarian law" - ] - }, - { - "text": "Continue to implement the programmes for development mentioned in paragraph 4 of the national report, and strengthen the systematic integration and promotion of human rights in these programmes ", - "values": [ - "Development" - ] - }, - { - "text": "Take concrete measures to improve the access of irregular migrants to acceptable housing ", - "values": [ - "Migrants", - "Right to housing" - ] - }, - { - "text": "Support the National Human Rights Commission and encourage it to work in order to elevate its accreditation status from - B - to - A - ", - "values": [ - "National Human Rights Institution" - ] - }, - { - "text": "Ensure the adoption and coordinated implementation of the National Policy on Gender and Development ", - "values": [ - "Development", - "Women's rights" - ] - }, - { - "text": "Adopt proactive measures to promote equal gender representation in decision-making positions, and implement non-discriminatory policies to ensure equal pay for women ", - "values": [ - "Women's rights" - ] - }, - { - "text": "Enact legislation that promotes and protects the rights to freedom of opinion and expression", - "values": [ - "Freedom of opinion and expression" - ] - }, - { - "text": "Protect the rights of its most vulnerable children and ensure their full participation in education", - "values": [ - "Right to education", - "Rights of the Child" - ] - }, - { - "text": "Undertake additional measures to address the disproportionate impact of violence on poor, minorities and immigrant women", - "values": [ - "Migrants", - "Minorities", - "Poverty", - "Women's rights" - ] - }, - { - "text": "Extend invitations and provide access to UN special procedures mandate holders, including the Special Rapporteur on the independence of judges and lawyers, and the Special Rapporteur on torture and other cruel, inhuman or degrading treatment or punishment, in order to help Burundi identify and address human rights challenges", - "values": [ - "Justice", - "Special procedures", - "Torture and other CID treatment" - ] - }, - { - "text": "Increase the minimum age for admission to employment to 16 and prohibit all hazardous forms of labour for children under 18 years old", - "values": [ - "Labour", - "Rights of the Child" - ] - }, - { - "text": "Consider alternative ways to ensure that members of national and/or ethno-linguistic minorities can officially uphold their identity, thus safeguarding the respect of their relevant rights ", - "values": [ - "Minorities" - ] - }, - { - "text": "Adopt additional measures for the fight against xenophobia, racial discrimination and discrimination of Roma women, and among other measures, strengthen the capacity of the National Office against Racial Discrimination in order to change the perception by the society of women of marginal and minority communities", - "values": [ - "Minorities", - "Racial discrimination", - "Women's rights" - ] - }, - { - "text": "Eliminate obstacles to the enrolment of children without identity documents and asylum seekers in secondary education and ensure that foreign children have the highest possible level of education", - "values": [ - "Asylum-seekers - refugees", - "Right to education", - "Rights of the Child" - ] - }, - { - "text": "Continue efforts on the elimination of all forms of discrimination against women ", - "values": [ - "Women's rights" - ] - }, - { - "text": "Protect the rights of indigenous persons and persons of African descent with particular emphasis on combating discrimination against indigenous women and Afro-Peruvian women in the areas of education, employment and health", - "values": [ - "Indigenous peoples", - "Minorities", - "Racial discrimination", - "Right to education", - "Right to health", - "Women's rights" - ] - }, - { - "text": "Adopt legislation prohibiting discrimination on all grounds including race and ethnicity", - "values": [ - "Minorities", - "Racial discrimination" - ] - }, - { - "text": "Increase efforts to implement the National Plan to Combat Trafficking in Persons", - "values": [ - "Trafficking" - ] - }, - { - "text": "Intensify its fight against all discrimination that hinders trade union freedom of all workers, both national and foreign", - "values": [ - "Freedom of association and peaceful assembly", - "Labour" - ] - }, - { - "text": "Continue efforts to protect the rights of women and children, as well as other vulnerable groups", - "values": [ - "Rights of the Child", - "Women's rights" - ] - }, - { - "text": "Abolish by law the use of corporal punishment in all settings", - "values": [ - "Torture and other CID treatment" - ] - }, - { - "text": "Organize visits of the Special Rapporteur on trafficking in human beings, the Special Rapporteur on contemporary forms of racism, the Special Rapporteur on torture and the Independent Expert on minority issues to the country", - "values": [ - "Minorities", - "Racial discrimination", - "Special procedures", - "Torture and other CID treatment", - "Trafficking" - ] - }, - { - "text": "Strengthen and guarantee the independence and impartiality of the judiciary by enforcing the constitutional process for electing judges of the Supreme Court, adopting safeguard measures to prevent irregular dismissals and appointments and adopting additional anti-corruption measures", - "values": [ - "Corruption", - "Justice" - ] - }, - { - "text": "Ensure the constitutional guarantees of equality before the law ", - "values": [ - "Justice" - ] - }, - { - "text": "Improve the relevant legislation to further combat racial discrimination and incitement to racial hatred in order to effectively protect the rights of ethnic minorities", - "values": [ - "Minorities", - "Racial discrimination" - ] - }, - { - "text": "Strengthen its current laws and continue robust implementation of the Equal Treatment Law to ensure equality for women, including with regard to employment and educational opportunities, as well as ensuring access to the judicial system to address domestic violence, rape and sexual harassment ", - "values": [ - "Justice", - "Women's rights" - ] - }, - { - "text": "Continue its promotion of legislation and actions aimed at eliminating discrimination and strengthening the protection of the rights of disadvantaged groups such as women, children and indigenous peoples", - "values": [ - "Indigenous peoples", - "Rights of the Child", - "Women's rights" - ] - }, - { - "text": "Consider taking steps to change the Defamation Act in the Criminal Code in order to broaden the space for exercising the freedom of expression.", - "values": [ - "Freedom of opinion and expression" - ] - }, - { - "text": "Continue efforts aimed at increasing women's access to employment, public life, education, housing and health, through their full participation in the political, economic, social and cultural fields", - "values": [ - "Women's rights" - ] - }, - { - "text": "Carry out the monitoring of enterprises so as to guarantee human and labour rights in accordance with its bilateral and multilateral obligations ", - "values": [ - "Labour" - ] - }, - { - "text": "Take concrete measures to facilitate and ensure access to humanitarian assistance, especially for affected civilians and vulnerable groups in conflict areas", - "values": [ - "Other" - ] - }, - { - "text": "Continue the implementation of the policy of effective promotion and protection of the rights of migrants", - "values": [ - "Migrants" - ] - }, - { - "text": "Apply effective strategies and measures to reduce inconsistencies between laws and practice, including with regard to access to land for women, the gender gap in employment and trafficking in women", - "values": [ - "Right to land", - "Trafficking", - "Women's rights" - ] - }, - { - "text": "Take further steps on the adoption of the law on preventing and combating discrimination ", - "values": [ - "Other" - ] - }, - { - "text": "Continue promoting its accurate social protection programs", - "values": [ - "ESC rights - general" - ] - }, - { - "text": "Introduce an efficient mechanism for monitoring the implementation of the Prohibition of Female Genital Mutilation Act 2011", - "values": [ - "Rights of the Child", - "Torture and other CID treatment", - "Women's rights" - ] - }, - { - "text": "Consider lifting the reservation to article 2 of the Convention on the Elimination of All Forms of Discrimination against Women", - "values": [ - "International instruments", - "Women's rights" - ] - }, - { - "text": "Take concrete action to strengthen the legal basis for the accountability of State authorities and improvement of judicial scrutiny over their activities.", - "values": [ - "Justice" - ] - }, - { - "text": "Strengthen measures to eliminate violence and discrimination against women and girls, particularly in rural and remote areas", - "values": [ - "Women's rights" - ] - }, - { - "text": "Redouble its efforts to eradicate child labour, and accord all possible protection and assistance to children living or working in the streets ", - "values": [ - "Labour", - "Rights of the Child" - ] - }, - { - "text": "Continue and redouble its efforts to combat trafficking in persons and modern slavery, including through better law enforcement to end impunity for human traffickers and through initiatives aimed at destigmatizing and rehabilitating victims of trafficking", - "values": [ - "Trafficking" - ] - }, - { - "text": "Continue implementing effectively the 2006 law on sexual violence and the zero tolerance policy ", - "values": [ - "Rights of the Child", - "Women's rights" - ] - }, - { - "text": "Define torture in its national criminal legislation, prosecute and punish perpetrators of torture, and ratify as soon as possible the OPCAT ", - "values": [ - "Detention", - "International instruments", - "Torture and other CID treatment" - ] - }, - { - "text": "Continue efforts to ensure freedom of speech and of the press, and to promptly investigate all complaints in this regard", - "values": [ - "Freedom of opinion and expression", - "Freedom of the press" - ] - }, - { - "text": "Consider developing and adopting a freedom of information law in accordance with international standards ", - "values": [ - "Freedom of opinion and expression" - ] - }, - { - "text": "Ensure that the reform process of the Equality and Human Rights Commission does not affect its independence in conformity with the Paris Principles ", - "values": [ - "National Human Rights Institution" - ] - }, - { - "text": "Review legal and administrative requirements for the registration of NGOs, which would simplify the process and encourage the independence of civil society representatives ", - "values": [ - "Civil society", - "Freedom of association and peaceful assembly" - ] - }, - { - "text": "Continue to vigorously investigate recent cases of alleged police-led human rights abuses against African Americans and seek to build improved relations and trust between United States law enforcement and all communities around the United States", - "values": [ - "Human rights violations by state agents", - "Minorities", - "Racial discrimination" - ] - }, - { - "text": "Put more efforts and financial resources to eradicate high level mortality and malnutrition rates, especially in rural areas and among indigenous peoples", - "values": [ - "Indigenous peoples", - "Right to food", - "Right to health" - ] - }, - { - "text": "Introduce a comprehensive definition of racial discrimination related to the constitutional provisions on equality and non-discrimination and measures taken", - "values": [ - "Racial discrimination" - ] - }, - { - "text": "Continue exploring possibilities to extend its international commitments, in particular consider ratification of the ICCPR and the Rome Statute of the International Criminal Court", - "values": [ - "CP rights - general", - "International instruments", - "Justice" - ] - }, - { - "text": "Continue efforts for the comprehensive protection of children and adolescents rights, expand the juvenile justice system and actions aimed to implement the mandatory birth registration, and for eradication of female genital mutilation", - "values": [ - "Rights of the Child", - "Torture and other CID treatment", - "Women's rights" - ] - }, - { - "text": "Allocate necessary financial and human resources to these mechanisms and organizations (Ministry of Social Development, Presidential Commission for Combatting Femicide, Secretariat on Sexual Violence, Exploitation and Trafficking in Persons, and National Commission on Police Reforms) to ensure that their objectives are achieved", - "values": [ - "Justice", - "Trafficking", - "Women's rights" - ] - }, - { - "text": "Continue its efforts to reduce the number of families suffering from extreme poverty through social programmes", - "values": [ - "Poverty" - ] - }, - { - "text": "Further accelerate the efforts aiming at decreasing the infant, child and maternal mortality rates and increasing average life expectancy", - "values": [ - "Right to health", - "Rights of the Child", - "Women's rights" - ] - }, - { - "text": "Sign and ratify OP-CAT as a matter of priority and found the national preventive mechanism accordingly", - "values": [ - "Detention", - "International instruments", - "Torture and other CID treatment" - ] - }, - { - "text": "Strengthen laws and regulations to prevent and address human trafficking, including providing effective assistance to trafficked victims and prosecuting traffickers", - "values": [ - "Trafficking" - ] - }, - { - "text": "Respect fully the International Covenant on Civil and Political Rights, in particular its article 14, as well as the European Convention for the Protection of Human Rights and Fundamental Freedoms, particularly its article 6, as well as adopt appropriate measures to guarantee the impartiality of its judicial system ", - "values": [ - "International instruments", - "Justice" - ] - }, - { - "text": "Ratify the Rome Statute of the International Criminal Court, including accession to the Agreement on the Privileges and Immunities of the International Criminal Court", - "values": [ - "International instruments", - "Justice" - ] - }, - { - "text": "Ratify the International Covenant on Civil and Political Rights and its optional protocols", - "values": [ - "CP rights - general", - "Death penalty", - "International instruments" - ] - }, - { - "text": "Approve a comprehensive law for the promotion of gender equality which would include, among other issues, awareness on issues such as gender violence, and the freedom of sexual orientation", - "values": [ - "Sexual Orientation and Gender Identity", - "Women's rights" - ] - }, - { - "text": "Develop a high standard of human resource management to avoid administrative infractions and human rights violations in prisons", - "values": [ - "Detention" - ] - }, - { - "text": "Through amendments to laws adopted from 2015 that limit the independence of the media, undermine trust on its impartiality and, in anti-terrorism cases, could violate privacy (guarantee the full right to freedom of expression)", - "values": [ - "Freedom of opinion and expression", - "Freedom of the press", - "Privacy" - ] - }, - { - "text": "Strengthen the work on the fight against the trafficking of persons", - "values": [ - "Trafficking" - ] - }, - { - "text": "Take measures to study trafficking in persons in the country and formulate a broad strategy against trafficking, which should include the prosecution and punishment of traffickers ", - "values": [ - "Trafficking" - ] - }, - { - "text": "Seek all possible technical and financial assistance it needs from the international community as well as OHCHR ", - "values": [ - "Technical assistance and cooperation" - ] - }, - { - "text": "Continue the national efforts in the area of social inclusion of persons with disabilities", - "values": [ - "Disabilities" - ] - }, - { - "text": "Continue its efforts to accede to the remaining core international human rights treaties, which will strengthen the domestic legislation with regard to the promotion and protection of human rights, including freedom of religion or belief ", - "values": [ - "Freedom of religion and belief", - "International instruments" - ] - }, - { - "text": "Share with other developing countries its experiences and best practices in guaranteeing the right to food and combating poverty, in particular in the area of microcredit", - "values": [ - "Poverty", - "Right to food" - ] - }, - { - "text": "The inclusion of the crime of torture in the new draft criminal code is welcomed and the Government is encouraged to finalize the draft code, taking into account comments received from relevant stakeholders", - "values": [ - "Torture and other CID treatment" - ] - }, - { - "text": "Abolish permanently the death penalty", - "values": [ - "Death penalty" - ] - }, - { - "text": "Enact a law to fight against discrimination which guarantees the equality of all citizens, regardless of their sexual orientation and gender identity ", - "values": [ - "Sexual Orientation and Gender Identity" - ] - }, - { - "text": "Continue the process of accession to or ratification of the pending main international human rights instruments, in particular CED and the Convention on the Rights of Persons with Disabilities (CRPD)", - "values": [ - "Disabilities", - "Enforced disappearances", - "International instruments" - ] - }, - { - "text": "Increase its efforts to ensure access to basic services, as well as freedom of movement, for all residents", - "values": [ - "Freedom of movement" - ] - }, - { - "text": "Prosecute suspected perpetrators of violence against ethnic and religious minorities, in line with international standards and to ensure compliance with due process and respect for the rule of law", - "values": [ - "Freedom of religion and belief", - "Minorities" - ] - }, - { - "text": "Ensure that future measures addressing torture and ill-treatment of detainees, including rehabilitation of victims and a revision of the mental health law are in full compliance with international standards", - "values": [ - "Detention", - "Torture and other CID treatment" - ] - }, - { - "text": "With the support from the international community, draft legislative bills on domestic violence and on child abuse", - "values": [ - "Rights of the Child", - "Technical assistance and cooperation" - ] - }, - { - "text": "Continue to strengthen efforts to promote and protect the rights of women, especially to eliminate discrimination and violence against women in all spheres", - "values": [ - "Women's rights" - ] - }, - { - "text": "Strengthen labour and economic policies in favour of persons with disabilities", - "values": [ - "Disabilities", - "Labour" - ] - }, - { - "text": "Take steps to bring about a change in attitudes with a view to eliminating deep-rooted stereotypes regarding the roles and responsibilities of women and men in the family and in society, which are reflected in women's educational choice, their situation in the labour market and their underrepresentation in political and public life and decision making positions ", - "values": [ - "Women's rights" - ] - }, - { - "text": "Continue the Government's efforts to ensure equal access to all citizens to employment, education and participation in the political process", - "values": [ - "Development", - "Elections", - "Right to education" - ] - }, - { - "text": "Ensure effective human rights training for the protection of transgender persons", - "values": [ - "Human rights education and training", - "Sexual Orientation and Gender Identity" - ] - }, - { - "text": "Continue to apply the strategies and plans for the socio-economic development of the country ", - "values": [ - "Development" - ] - }, - { - "text": "Continue to apply plans and strategies for the socio-economic development of the country", - "values": [ - "Development" - ] - }, - { - "text": "Strengthen efforts to protect women's rights, including by addressing cultural and social barriers, as well as legal ones.", - "values": [ - "Women's rights" - ] - }, - { - "text": "Further strengthen its national framework for the promotion and protection of human rights", - "values": [ - "General" - ] - }, - { - "text": "Accelerate legislative and judicial reforms, particularly on death penalty and administrative detention, to be in compliance with the ICCPR", - "values": [ - "Death penalty", - "Detention", - "International instruments", - "Justice" - ] - }, - { - "text": "Protect the youth from societal dangers", - "values": [ - "General" - ] - }, - { - "text": "Eliminate effectively gender-based discrimination in accessing education and health care, particularly in rural areas and among indigenous communities", - "values": [ - "Indigenous peoples", - "Women's rights" - ] - }, - { - "text": "Pursue the efforts undertaken by the Government under the Vision 2020 plan ", - "values": [ - "General" - ] - }, - { - "text": "Protect and promote freedom of expression and media pluralism", - "values": [ - "Freedom of opinion and expression", - "Freedom of the press" - ] - }, - { - "text": "Continue to prioritize poverty eradication and policies aimed at promoting the enjoyment of economic, social and cultural rights by its citizens", - "values": [ - "ESC rights - general", - "Poverty" - ] - }, - { - "text": "Sign and ratify the Optional Protocol to the Convention on the Rights of the Child CRC on the sale of children, child prostitution and child pornography", - "values": [ - "International instruments", - "Rights of the Child", - "Trafficking" - ] - }, - { - "text": "Equalize the legal minimum age of marriage for girls and boys ", - "values": [ - "Rights of the Child" - ] - }, - { - "text": "Study the possibility of developing a national environmental charter or a similar instrument to define the role and responsibilities of, as well as the coordination of action by, all relevant parties, including civil society ", - "values": [ - "Civil society", - "Environment" - ] - }, - { - "text": "Continue strengthening the relevant policies and programs on strengthening the capacity building, in particular, in the field of economic, social and cultural rights that aims at improving the living standards of its people, through further cooperation and support by the international community", - "values": [ - "ESC rights - general", - "Technical assistance and cooperation" - ] - }, - { - "text": "Develop and adopt legislation that would explicitly recognize hatred on the basis of sexual orientation and gender identity as a motive and make it an aggravated circumstance in a crime", - "values": [ - "Sexual Orientation and Gender Identity" - ] - }, - { - "text": "Repeal the blasphemy law and respect and guarantee freedoms of religion or belief and of expression and opinion for all, including Ahmadis, Hindus and Christians", - "values": [ - "Freedom of opinion and expression", - "Freedom of religion and belief", - "Minorities" - ] - }, - { - "text": "Increase significantly the proportion of national expenditure allocated to health care, address the regional differences in access to health care services and expand the human capital within the health care sector, especially to ascertain that an adequate number of midwives are educated and dispatched across the country", - "values": [ - "Right to health" - ] - }, - { - "text": "Continue its efforts initiated to achieve ratification of CPED and accept the competence of the Committee on Enforced Disappearances ", - "values": [ - "Enforced disappearances", - "International instruments", - "Treaty bodies" - ] - }, - { - "text": "Develop a comprehensive policy aimed at strengthening the judicial system, and rule of law", - "values": [ - "Justice" - ] - }, - { - "text": "Adopt and implement the previous recommendations of the Human Rights Council and its Special Rapporteurs, and grant access to special procedures mandate holders ", - "values": [ - "Special procedures" - ] - }, - { - "text": "Promote accountability by taking the necessary measures to allow the responsible entities (such as the Ministry of Justice, the National Police, the National Bureau of Investigation, the Commission on Human Rights and the Office of the Ombudsman) to conduct investigations into allegations of human rights violations in an efficient, independent and impartial manner so that justice is served ", - "values": [ - "Justice" - ] - }, - { - "text": "Develop a transparent and effective accountability mechanism directed towards the investigation of complaints of police abuse against suspects and detainees, and the prosecution and adequate punishment of those responsible ", - "values": [ - "Human rights violations by state agents" - ] - }, - { - "text": "Accelerate the process of ratification of the Optional Protocol to the International Covenant on Civil and Political Rights", - "values": [ - "CP rights - general", - "International instruments" - ] - }, - { - "text": "Ratify OP-CAT and incorporate it into national legislation ", - "values": [ - "Detention", - "International instruments", - "Torture and other CID treatment" - ] - }, - { - "text": "Enact legislation prohibiting discrimination against lesbian, gay, bisexual, transgender and intersex persons, including removing laws criminalising consensual same sex activity", - "values": [ - "Sexual Orientation and Gender Identity" - ] - }, - { - "text": "Ensure effective protection from violence and sexual exploitation for women, particularly women who are migrants or from minority groups", - "values": [ - "Migrants", - "Minorities", - "Women's rights" - ] - }, - { - "text": "Adopt a specific law on domestic violence, including by criminalizing marital rape ", - "values": [ - "Women's rights" - ] - }, - { - "text": "Ensure a safe and enabling environment for human rights defenders, including by loosening restrictions for fundraising activities of NGOs ", - "values": [ - "Civil society", - "Freedom of association and peaceful assembly" - ] - }, - { - "text": "Accelerate the establishment of the national human rights institution in accordance with the Paris Principles", - "values": [ - "National Human Rights Institution" - ] - }, - { - "text": "Set up a national human rights commission, in order to, inter alia, document all human rights violations linked to the recurrent internal armed crises", - "values": [ - "National Human Rights Institution" - ] - }, - { - "text": "Abolish the system of registration for nongovernmental organizations working in the country.", - "values": [ - "Civil society" - ] - }, - { - "text": "Further pursue efforts aimed at strengthening the protection of the rights of women and children through further development of legislation and mechanisms in this field ", - "values": [ - "Rights of the Child", - "Women's rights" - ] - }, - { - "text": "Further step up its efforts to bring earlier national legislation in line with its international obligations, especially in the area of women's and children's rights, considering that article 116 of the Constitution gives precedence to international law.", - "values": [ - "Rights of the Child", - "Women's rights" - ] - }, - { - "text": "Continue its efforts towards spreading awareness of the culture of human rights in Algerian society", - "values": [ - "Human rights education and training" - ] - }, - { - "text": "Ratify ILO Convention No. 189 on decent work for domestic workers", - "values": [ - "International instruments", - "Labour" - ] - }, - { - "text": "Continue its efforts to reduce stigma and discrimination through education and awareness raising campaigns", - "values": [ - "Human rights education and training" - ] - }, - { - "text": "Sign and ratify the Optional Protocol to the International Covenant on Economic, Social and Cultural Rights - the Optional Protocol to the Convention on the Rights of Persons with Disabilities - and the International Convention for the Protection of All Persons from Enforced Disappearance", - "values": [ - "Disabilities", - "ESC rights - general", - "Enforced disappearances", - "International instruments" - ] - }, - { - "text": "Bolster the implementation of Law No. 8/2016 on Persons with Disabilities and strengthen its efforts to tackle child labour to ensure children\u2019s access to social, health and education services", - "values": [ - "Disabilities", - "Labour", - "Right to education", - "Right to health", - "Rights of the Child" - ] - }, - { - "text": "Implement fully and rapidly the Family Protection Act of 2013 in order to reduce domestic violence effectively", - "values": [ - "Rights of the Child", - "Women's rights" - ] - }, - { - "text": "Establish an independent and impartial institution to investigate and prosecute human rights abuses and violations committed by the law enforcement and security forces, in order to ensure that these violations are properly investigated and sanctioned and compensation provided to victims", - "values": [ - "Human rights violations by state agents" - ] - }, - { - "text": "Define criminal offences, in particular those in article 164 of the Criminal Code on incitement to national, ethnic or racial enmity or discord, or insult to the national honour and dignity or religious feelings of citizens, in accordance with international human rights law, and giving special attention to the right to freedom of expression", - "values": [ - "Freedom of opinion and expression", - "Freedom of religion and belief", - "International instruments", - "Minorities", - "Racial discrimination" - ] - }, - { - "text": "Take further measures to address the difficulties regarding the registration of children at birth and to implement a universal birth registration strategy", - "values": [ - "Rights of the Child", - "Statelessness and the right to nationality" - ] - }, - { - "text": "Formally establish a moratorium on the use of the death penalty, with a view to abolition ", - "values": [ - "Death penalty" - ] - }, - { - "text": "Step up efforts to combat child labour with a view to its progressive eradication in a given time frame", - "values": [ - "Labour", - "Rights of the Child" - ] - }, - { - "text": "Intensify its comprehensive policies and concrete plans to guarantee the full enjoyment of rights and welfare of migrant workers, especially women, including combating human trafficking and discrimination in all forms", - "values": [ - "Labour", - "Migrants", - "Trafficking", - "Women's rights" - ] - }, - { - "text": "Ratify the Second Optional Protocol to the ICCPR ", - "values": [ - "Death penalty", - "International instruments" - ] - }, - { - "text": "Create and implement a specific mechanism that will provide comprehensive assistance and protection to human rights defenders, and include them in its design, especially those human rights defenders that help communities affected by mining and hydroelectric projects", - "values": [ - "Environment", - "Human rights defenders" - ] - }, - { - "text": "Continue its efforts to prevent and combat trafficking in persons, especially women and children, by entirely financing and implementing the National Plan for the Prevention and Eradication of the Sexual Exploitation of Girls, Boys and Adolescents. Amend the national legislation on the sexual exploitation and trafficking in children to bring it in line with the international instruments ", - "values": [ - "Rights of the Child", - "Trafficking", - "Women's rights" - ] - }, - { - "text": "Strengthen efforts to work across agencies and with non-governmental women's organizations to raise awareness that domestic violence is unacceptable, to educate women on their rights and to combat stereotypes and customary practices that perpetuate domestic violence.", - "values": [ - "Human rights education and training", - "Women's rights" - ] - }, - { - "text": "Intensify efforts to combat the dissemination of ideas based on the racial superiority through other media including racist speech by political parties ", - "values": [ - "Racial discrimination" - ] - }, - { - "text": "Establish its national human rights institution, on priority, in accordance with the Paris Principles", - "values": [ - "National Human Rights Institution" - ] - }, - { - "text": "Respect the freedom of association and assembly of its citizens", - "values": [ - "Freedom of association and peaceful assembly" - ] - }, - { - "text": "Place emphasis on implementing strong policies to effectively fight all forms of stereotypes and discrimination against girls and women, thereby ensuring their right to social and economic security ", - "values": [ - "ESC rights - general", - "Rights of the Child", - "Women's rights" - ] - }, - { - "text": "Review the law on demonstrations and the so-called law on "foreign agents", in order to allow NGOs to freely carry out their activities in Russia ", - "values": [ - "Civil society", - "Freedom of association and peaceful assembly" - ] - }, - { - "text": "Revoke laws on defamation, which limit the capacity of civil society to express a diversity of views.", - "values": [ - "Civil society", - "Freedom of opinion and expression" - ] - }, - { - "text": "Establish policies and programs of alternative education for single and married pregnant girls in order to avoid that they abandon their studies ", - "values": [ - "Rights of the Child", - "Women's rights" - ] - }, - { - "text": "Ensure, in its Constitution and legislation, that discrimination is explicitly prohibited - provide for, inter alia, the principle of equality between women and men - and take into account, inter alia, the recommendations of the Committee on the Elimination of Discrimination against Women ", - "values": [ - "Treaty bodies", - "Women's rights" - ] - }, - { - "text": "Take necessary steps to introduce a moratorium on the use of the death penalty at the federal and state levels", - "values": [ - "Death penalty" - ] - }, - { - "text": "Develop and employ measures to respect the rights of prisoners, including reviewing the potential for alternative measures for offenders, and detention conditions", - "values": [ - "Detention" - ] - }, - { - "text": "Continue taking efficient measures with a view to eliminating differences in salaries and other terms of employment between men and women who perform work that is regarded as equal or equivalent", - "values": [ - "Women's rights" - ] - }, - { - "text": "Continue efforts to accelerate the pace of implementation of the National Plan of Action and the promotion of development, and support economic and social rights in all parts of the country", - "values": [ - "ESC rights - general" - ] - }, - { - "text": "Provide proper conditions and financial means for minority language schools within the framework of the education reform without compromising the general quality of education, also in this context, adopt additional measures to ensure a sufficient transitional period for the educational reform in minority schools", - "values": [ - "Minorities", - "Right to education" - ] - }, - { - "text": "Adopt all necessary measures to eradicate the abuse and sexual exploitation of children, corporal punishment, and to combat the worst forms of child labour ", - "values": [ - "Labour", - "Rights of the Child", - "Torture and other CID treatment" - ] - }, - { - "text": "Draw up a timetable with OHCHR for addressing the backlog of reports and future work and to continue to collaborate with non-governmental organizations.", - "values": [ - "Technical assistance and cooperation", - "Treaty bodies" - ] - }, - { - "text": "Commit itself to enacting legislation referred to in its national report (A-HRC-WG.6-5 -CHL-1) to strengthen human rights protection in the country, including the reform of the system of elections, the establishment of a national human rights institution (NHRI) and various pieces of legislation on gender equality .", - "values": [ - "Elections", - "National Human Rights Institution", - "Women's rights" - ] - }, - { - "text": "Ensure that women are given the medical and professional services necessary to exercise their legal right to terminate a pregnancy, and ascertain that women have the right to decide over their own bodies", - "values": [ - "Right to health", - "Women's rights" - ] - }, - { - "text": "Facilitate for all children born to Iranian mothers access to a birth certificate and Iranian nationality, regardless of the nationality of the father", - "values": [ - "Rights of the Child", - "Statelessness and the right to nationality" - ] - }, - { - "text": "Enhance its efforts to eliminate all forms of discrimination against women and withdraw its reservations to the Convention on the Elimination of all Forms of Discrimination against Women", - "values": [ - "International instruments", - "Women's rights" - ] - }, - { - "text": "Guarantee the right to privacy of private and personal communications according to international standards", - "values": [ - "Privacy" - ] - }, - { - "text": "Promptly take the necessary measures to incorporate in the domestic law the provisions of the Convention against Torture and the Convention for the Protection of All Persons from Enforced Disappearances, in order to ensure its effective implementation ", - "values": [ - "Enforced disappearances", - "International instruments", - "Torture and other CID treatment" - ] - }, - { - "text": "Continue its efforts in promoting women's and children's rights, in particular combating child labour and violence against both women and children ", - "values": [ - "Labour", - "Rights of the Child", - "Women's rights" - ] - }, - { - "text": "Continue providing adequate and effective protection and support to the family, as the basic and natural unit of the society ", - "values": [ - "Other" - ] - }, - { - "text": "Continue to study and consider the ratification of more international human rights instruments", - "values": [ - "International instruments" - ] - }, - { - "text": "Give priority to the continuation of efforts to promote the right to education ", - "values": [ - "Right to education" - ] - }, - { - "text": "Decriminalize homosexuality by abrogating the legal provisions currently punishing sexual relations between consenting individuals of the same sex, and subscribe to the December 2008 General Assembly Declaration on sexual orientation and human rights", - "values": [ - "Sexual Orientation and Gender Identity" - ] - }, - { - "text": "Improve compliance with International Labour Organization standards, including in relation to forced labour ", - "values": [ - "International instruments", - "Labour" - ] - }, - { - "text": "Continue to take effective measures to align its legal system with its new Constitution and with the relevant international human rights instruments", - "values": [ - "International instruments", - "Justice" - ] - }, - { - "text": "Simplify the procedure for birth registration and ensure that all children born in its territory are registered and provided with birth certificates, irrespective of the availability of their parents' identity documents or residence permits", - "values": [ - "Rights of the Child", - "Statelessness and the right to nationality" - ] - }, - { - "text": "Establish its national human rights institution in accordance with the Paris Principles in a timely manner ", - "values": [ - "National Human Rights Institution" - ] - }, - { - "text": "Further strengthen the implementation of Kyrgyzstan's international commitments with regard to CAT and investigate all allegations of torture and ill treatment in custody", - "values": [ - "Detention", - "International instruments", - "Torture and other CID treatment" - ] - }, - { - "text": "Strengthen measures to facilitate access and effective distribution of international humanitarian aid to the people in need, with special attention to vulnerable groups ", - "values": [ - "Other" - ] - }, - { - "text": "Step up efforts to pursuing the right to education for all, particularly in the realization of the right to education for girls", - "values": [ - "Right to education", - "Rights of the Child", - "Women's rights" - ] - }, - { - "text": "Continue its policy focusing on principal human rights issues, in particular in the framework of its comprehensive development vision known as Qatar National Vision 2030 and of its own civilization and religious identity", - "values": [ - "General" - ] - }, - { - "text": "Make efforts to incorporate into national legislation the prohibition of all forms of the corporal punishment of children ", - "values": [ - "Rights of the Child", - "Torture and other CID treatment" - ] - }, - { - "text": "Continue the effort to strengthen the Commission for Protection against Discrimination and the Ombudsman as national human rights institutions in ensuring that those institutions are in line with the Paris Principles, as previously recommended", - "values": [ - "National Human Rights Institution", - "UPR process" - ] - }, - { - "text": "Ratify the core international human rights instruments including the CAT, the Convention on the Rights of Persons with Disabilities and its Optional Protocol, both Optional Protocols to the CRC, the United Nations Protocol to Prevent, Suppress and Punish Trafficking in Persons especially Women and Children and both Optional Protocols to the ICCPR and incorporate them into its national legislation ", - "values": [ - "International instruments" - ] - }, - { - "text": "Introduce a moratorium on the execution of the death penalty", - "values": [ - "Death penalty" - ] - }, - { - "text": "Maintain its binding commitment to the Second Optional Protocol to the International Covenant on Civil and Political Rights, aiming at the abolition of the death penalty, thereby repealing legal propositions aiming at restoring the death penalty", - "values": [ - "Death penalty", - "International instruments" - ] - }, - { - "text": "Establish a transparent process for the digitalization process to ensure space on the airwaves for independent and small regional media outlets ", - "values": [ - "Freedom of the press" - ] - }, - { - "text": "Consider ratifying the African Charter on Democracy, Elections and Governance ", - "values": [ - "Elections", - "Justice" - ] - }, - { - "text": "Consider early ratification of the Optional Protocol to the Convention against Torture and Other Cruel, Inhuman or Degrading Treatment or Punishment and the establishment of an effective national preventive mechanism accordingly.", - "values": [ - "Detention", - "International instruments", - "Torture and other CID treatment" - ] - }, - { - "text": "Ratify the UNESCO Convention against Discrimination in Education.", - "values": [ - "International instruments", - "Right to education" - ] - }, - { - "text": "Carry out an independent assessment on the effectiveness of the law on free legal aid and, depending on the results thereof, take the measures required to guarantee that the most disadvantaged among the population have access to effective, comprehensive and non-discriminatory legal aid", - "values": [ - "Justice" - ] - }, - { - "text": "Continue its institutional efforts to combat human trafficking ", - "values": [ - "Trafficking" - ] - }, - { - "text": "Pursue their efforts to seek appropriate responses to violence against women, in particular through the reinforcement of awareness-raising and prevention activities ", - "values": [ - "Human rights education and training", - "Women's rights" - ] - }, - { - "text": "Carry out appropriate actions in order to harmonize its internal legislation with the Convention on the Rights of Persons with Disabilities", - "values": [ - "Disabilities", - "International instruments" - ] - }, - { - "text": "Adopt a comprehensive national human rights plan of action and finalise the national plan for the protection of women and children", - "values": [ - "Rights of the Child", - "Women's rights" - ] - }, - { - "text": "Intensify its efforts to investigate and punish those responsible for punishable violence, especially that perpetrated by security forces and armed forces ", - "values": [ - "Human rights violations by state agents" - ] - }, - { - "text": "Take measures to reduce trafficking in children, to raise the age of criminal responsibility and to eradicate corporal punishment of children ", - "values": [ - "Justice", - "Rights of the Child", - "Torture and other CID treatment", - "Trafficking" - ] - }, - { - "text": "Continue the efforts to ensure the sustained implementation of the MDGs ", - "values": [ - "Development" - ] - }, - { - "text": "Continue to strengthen its institutions ", - "values": [ - "General" - ] - }, - { - "text": "Ratify the International Covenant on Economic, Social and Cultural Rights, the International Covenant on Civil and Political Rights, the Optional Protocol to the Convention against Torture and other Cruel, Inhuman or Degrading Treatment or Punishment, the Optional Protocol to the Convention on the Rights of the Child on the involvement of children in armed conflict, and the International Convention on the Protection of the Rights of All Migrant Workers and Members of Their Families", - "values": [ - "International instruments" - ] - }, - { - "text": "Strengthen its measures to prevent and combat xenophobia and racial prejudices amongst politicians, public officials and the general public, as well as to promote tolerance between all ethnic and national groups ", - "values": [ - "Minorities", - "Racial discrimination" - ] - }, - { - "text": "Develop policies that allow the Republic of Moldova to combat incitement to hatred and racial discrimination", - "values": [ - "Racial discrimination" - ] - }, - { - "text": "Take concrete measures to ensure that all citizens are treated fairly and openly before the law and that undue delays in the sentencing process are rectified ", - "values": [ - "Justice" - ] - }, - { - "text": "Continue to fight against all forms of discrimination", - "values": [ - "Other" - ] - }, - { - "text": "Improve cooperation with the Independent Expert on the situation of human rights in Sudan, including on the implementation of the recommendations by the Group of Experts ", - "values": [ - "Special procedures" - ] - }, - { - "text": "Accede to and fully align Sudan's national legislation with the Rome Statute of the International Criminal Court, including incorporating provisions to cooperate promptly and fully with the Court as it required to do under Security Council Resolution 1593 by executing outstanding arrest warrants", - "values": [ - "International instruments", - "Justice" - ] - }, - { - "text": "Address persisting problems, such as overcrowding and insufficient health care and to establish and independent mechanisms to overview conditions in detention facilities, with particular focus on conditions of children and their protection against violence and abuse", - "values": [ - "Detention", - "Rights of the Child" - ] - }, - { - "text": "Take the steps necessary to ensure that laws protecting freedoms of expression, press, assembly and association are implemented and adhered to", - "values": [ - "Freedom of association and peaceful assembly", - "Freedom of opinion and expression", - "Freedom of the press" - ] - }, - { - "text": "Further protect and promote the right to safe drinking water and sanitation", - "values": [ - "Right to water and sanitation" - ] - }, - { - "text": "Put in place a legislation to criminalize the promotion of racial hatred and discrimination as well as further promote tolerance through public awareness campaigns and education ", - "values": [ - "Human rights education and training", - "Racial discrimination" - ] - }, - { - "text": "Immediately release all prisoners of conscience, including all persons detained for participating in peaceful demonstrations since March 2011", - "values": [ - "Freedom of association and peaceful assembly", - "Freedom of religion and belief" - ] - }, - { - "text": "Investigate effectively all cases of human trafficking and prosecute those responsible", - "values": [ - "Trafficking" - ] - }, - { - "text": "Consider amending the legislation on abortion in order to, as a first step, take into account situations where pregnancy is the result of sexual aggression or incest or when the pregnant woman is in danger, and assure women of their rights to safe medical and reproductive health care ", - "values": [ - "Right to health", - "Women's rights" - ] - }, - { - "text": "Ensure that urban restructuring in advance of the 2014 World Cup and the 2016 Olympics be properly regulated to prevent displacements and forced evictions, and that residents in affected areas are given full and timely information about proposals affecting them, engage in a genuine negotiation with the communities to explore alternatives to eviction, and, where necessary, offer compensation or alternative adequate housing close to the existing communities", - "values": [ - "Right to housing" - ] - }, - { - "text": "Consider developing a policy aimed at assisting and protecting internally displaced persons and refugees ", - "values": [ - "Asylum-seekers - refugees", - "Internally displaced persons" - ] - }, - { - "text": "Expedite the process of enacting the moratorium on executions", - "values": [ - "Death penalty" - ] - }, - { - "text": "Implement Security Council resolutions in order to facilitate a (peaceful) political transition led by the Syrian people and based on the Geneva communiqué", - "values": [ - "Other" - ] - }, - { - "text": "Sustain the achievements in reducing maternal mortality ", - "values": [ - "Right to health", - "Women's rights" - ] - }, - { - "text": "Consider signing and ratifying the main international human rights treaties ", - "values": [ - "International instruments" - ] - }, - { - "text": "Establish strategies and allocate resources aimed at achievement of the Sustainable development goals, especially those related to poverty eradication, equal access to resources, rights to education and health care and rights of the vulnerable groups", - "values": [ - "Development", - "Poverty", - "Right to education", - "Right to health" - ] - }, - { - "text": "Ratify the Optional Protocol to CESCR ", - "values": [ - "ESC rights - general", - "International instruments" - ] - }, - { - "text": "Ensure that journalists and media workers are able to work freely and without governmental intimidation ", - "values": [ - "Freedom of the press" - ] - }, - { - "text": "Develop a national action plan to combat trafficking in persons that includes measures for the rehabilitation of victims and training of the officials involved in investigating these crimes", - "values": [ - "Trafficking" - ] - }, - { - "text": "Undertake further measures to protect women and children, particularly from violence and exploitation", - "values": [ - "Rights of the Child", - "Women's rights" - ] - }, - { - "text": "Intensify its efforts to combat human trafficking and sexual exploitation, in particular women and children, in a comprehensive manner", - "values": [ - "Rights of the Child", - "Trafficking", - "Women's rights" - ] - }, - { - "text": "Take effective measures to prevent and combat marital rape and domestic violence, including the express criminalization of these practices", - "values": [ - "Rights of the Child", - "Women's rights" - ] - }, - { - "text": "Review the daiyo kangoku system in order to ensure that the detention procedure is consistent with its obligations under human rights law.", - "values": [ - "Detention" - ] - }, - { - "text": "That investigations into allegations of abuse of prisoners are dealt with by civilian courts, not military courts ", - "values": [ - "Detention" - ] - }, - { - "text": "Reinforce the relevant legal framework in order to contrast discrimination on the basis of sexual orientation", - "values": [ - "Sexual Orientation and Gender Identity" - ] - }, - { - "text": "Intensify efforts to improve the quality of education, to deal with the issue of high dropout rates, and continue to increase resources for educational infrastructure", - "values": [ - "Right to education" - ] - }, - { - "text": "Amend the Constitution accordingly and in compliance with international human rights treaties and humanitarian laws", - "values": [ - "International humanitarian law", - "International instruments" - ] - }, - { - "text": "Reform its nationality law, provide women the capacity to acquire, retain and transfer citizenship on an equal basis with men, and bring the law into compliance with international human rights standards", - "values": [ - "International instruments", - "Women's rights" - ] - }, - { - "text": "Strengthen the legal definition of rape by grounding it in lack of consent, rather than the use or threat of force, to ensure that the law provides better protection for survivors ", - "values": [ - "Women's rights" - ] - }, - { - "text": "Adopt a national action plan against torture and other cruel, inhuman or degrading treatment or punishment, ensure that all the complaints formulated in this field are the object of an impartial and effective investigation, and sign and ratify OP-CAT ", - "values": [ - "Death penalty", - "Detention", - "International instruments" - ] - }, - { - "text": "Guarantee the enjoyment of human rights and humanitarian law for those living in the occupied territories.", - "values": [ - "Other" - ] - }, - { - "text": "Continue its efforts to eradicate female genital mutilation and strengthen implementation of its laws and administrative decisions criminalizing its perpetrators", - "values": [ - "Rights of the Child", - "Torture and other CID treatment", - "Women's rights" - ] - }, - { - "text": "Attach importance to employment for women in the process of gender equality promotion", - "values": [ - "Women's rights" - ] - }, - { - "text": "Continue making efforts to investigate, prosecute and punish offenders of human trafficking ", - "values": [ - "Trafficking" - ] - }, - { - "text": "Continue its efforts to ensure the implementation of the principle of the best interest of the child in the juvenile justice system, including by considering incorporating the restorative justice principle", - "values": [ - "Justice", - "Rights of the Child" - ] - }, - { - "text": "Complete the ratification of the Second Optional Protocol to the International Covenant on Civil and Political Rights as early as possible, and take all necessary legislative measures to confirm the abolition of the death penalty, including in its domestic legislation", - "values": [ - "Death penalty", - "International instruments" - ] - }, - { - "text": "Abolish the criminal provisions on defamation ", - "values": [ - "Freedom of opinion and expression" - ] - }, - { - "text": "Stop the widespread use of torture, enforced disappearance and arbitrary detention", - "values": [ - "Detention", - "Enforced disappearances", - "Torture and other CID treatment" - ] - }, - { - "text": "Implement a regularization process, in accordance with its international obligations, to prevent the arbitrary deprivation of nationality, avoid deportations of populations affected by the Tribunal's ruling, and ensure a non-discriminatory process for the acquisition of nationality by individuals born in the Dominican Republic and their descendants for whom documentation is not accessible", - "values": [ - "Statelessness and the right to nationality" - ] - }, - { - "text": "Fight against discrimination in society more effectively", - "values": [ - "Other" - ] - }, - { - "text": "Adopt concrete measures to eradicate child labour, abuse and sexual exploitation of children, including its involvement in sexual tourism", - "values": [ - "Labour", - "Rights of the Child", - "Trafficking" - ] - }, - { - "text": "Continue to promote and protect the rights of women and children through the adoption of necessary domestic legislation ", - "values": [ - "Rights of the Child", - "Women's rights" - ] - }, - { - "text": "Take the necessary measures to combat drug trafficking while ensuring that the methods used are in conformity with international standards", - "values": [ - "Other", - "Public security" - ] - }, - { - "text": "Consider signing and ratifying the Optional Protocol to the Convention on the Rights of the Child on a communications procedure", - "values": [ - "International instruments", - "Rights of the Child" - ] - }, - { - "text": "Bring all constitutional provisions and relevant laws into line with the CPA and international\nobligations", - "values": [ - "Other" - ] - }, - { - "text": "Amend the Penal Code to remove all criminal penalties for alleged libel offences and the press law to bring its provisions into compliance with article 19 of ICCPR ", - "values": [ - "Freedom of opinion and expression", - "Freedom of the press", - "International instruments" - ] - }, - { - "text": "Continue with negotiations to end the conflict and to build a stable and lasting peace ", - "values": [ - "International humanitarian law" - ] - }, - { - "text": "Ensure that the National Human Rights Commission complies with the Paris Principles and that the institution seeks accreditation from the International Coordinating Committee.", - "values": [ - "National Human Rights Institution" - ] - }, - { - "text": "Provide the opportunity to use personal names, place names, street names and other geographical indications in minority languages, as well as enabling the contact with the authorities in minority language on the territories where a significant part of the population belongs to those minorities", - "values": [ - "Minorities" - ] - }, - { - "text": "Guarantee a safe and enabling environment to all human rights defenders, investigate all allegations of attacks, harassment and intimidation against them, and ensure that the legislation on freedom of expression, including online, is fully in compliance with article 19 of the International Covenant on Civil and Political Rights", - "values": [ - "CP rights - general", - "Freedom of opinion and expression", - "Human rights defenders" - ] - }, - { - "text": "Continue to strengthen domestic legislation to promote and protect the rights of women, children, domestic workers and the migrant workers", - "values": [ - "Labour", - "Migrants", - "Rights of the Child", - "Women's rights" - ] - }, - { - "text": "Adopt additional measures for the elimination of FGM and traditional practices which cause pain to women ", - "values": [ - "Rights of the Child", - "Torture and other CID treatment", - "Women's rights" - ] - }, - { - "text": "Continue its efforts to build the capacities of the health and social services sectors with the aim of providing necessary care for persons with disabilities, including children with disabilities ", - "values": [ - "Disabilities", - "Right to health", - "Rights of the Child" - ] - }, - { - "text": "Ratify the Optional Protocol to the International Covenant on Economic, Social and Cultural Rights (OP-ICESCR), the Optional Protocol to CAT, and the ICPPED", - "values": [ - "Detention", - "ESC rights - general", - "Enforced disappearances", - "International instruments", - "Torture and other CID treatment" - ] - }, - { - "text": "Re-establish a moratorium on the death penalty", - "values": [ - "Death penalty" - ] - }, - { - "text": "Take concrete actions to consolidate democracy, continue institutional, infrastructural and constitutional reforms to enhance the administration of justice and the rule of law", - "values": [ - "Justice" - ] - }, - { - "text": "Sign and ratify the Convention on the Elimination of All Forms of Discrimination against Women ", - "values": [ - "International instruments", - "Women's rights" - ] - }, - { - "text": "Strengthen its efforts to reduce the high school drop-out rates of girls at intermediate and secondary school levels", - "values": [ - "Right to education", - "Rights of the Child", - "Women's rights" - ] - }, - { - "text": "Strengthen international cooperation to combat illegal drugs and human trafficking", - "values": [ - "Technical assistance and cooperation", - "Trafficking" - ] - }, - { - "text": "Continue ensuring the promotion and protection of the human rights of children in the country, including through the establishment of appropriate programmes and measures aimed at combating the spread of a culture of violence among Maldivian youth and children ", - "values": [ - "Rights of the Child" - ] - }, - { - "text": "Continue the accession process to the core human rights treaties ", - "values": [ - "International instruments" - ] - }, - { - "text": "Strengthen its efforts to promote gender equality and the rights of women ", - "values": [ - "Women's rights" - ] - }, - { - "text": "Develop a comprehensive policy to prevent violence against children, including all necessary measures to prevent children from being subject to torture and ill-treatment, to living and working in the streets and being subjects to threats and forced recruitment by gangs", - "values": [ - "Labour", - "Public security", - "Rights of the Child", - "Torture and other CID treatment" - ] - }, - { - "text": "Ensure that all steps taken to combat terrorism fully respect the Constitution and the rule of law", - "values": [ - "Counter-terrorism", - "Justice" - ] - }, - { - "text": "Devote particular attention to fighting the worst forms of child labour and child trafficking, including that for the purpose of commercial sexual exploitation", - "values": [ - "Labour", - "Rights of the Child", - "Trafficking" - ] - }, - { - "text": "Sign and ratify the Second Optional Protocol to the International Covenant on Civil and Political Right ", - "values": [ - "Death penalty", - "International instruments" - ] - }, - { - "text": "Pursue a thorough and comprehensive investigation into the missing documents requested for the trial of General Gotovina, and act on any suggestions the Chief Prosecutor has made to improve the investigation, pursuing all avenues of enquiry ", - "values": [ - "Justice" - ] - }, - { - "text": "Prioritize the implementation of the reproductive health law and provide for sanctions against the perpetrators of the crimes of female genital mutilation, early marriage and domestic and sexual violence, ensuring the investigation of the cases as well as the prosecution and punishment of the perpetrators", - "values": [ - "Right to health", - "Rights of the Child", - "Torture and other CID treatment", - "Women's rights" - ] - }, - { - "text": "Take adequate measures, such as the ratification of CEDAW, to enhance the equal role of women in society, in particular, in political, economic, social and cultural life, including sports", - "values": [ - "International instruments", - "Women's rights" - ] - }, - { - "text": "Continue its efforts to combat corruption and strengthen the rule of law", - "values": [ - "Corruption", - "Justice" - ] - }, - { - "text": "Address rape as a crime", - "values": [ - "Rights of the Child", - "Women's rights" - ] - }, - { - "text": "Establish comprehensive legislation to help law enforcement officials identify cases of early and forced marriages and organize awareness-raising campaigns in that regard ", - "values": [ - "Human rights education and training", - "Rights of the Child", - "Women's rights" - ] - }, - { - "text": "Accede to the International Convention for the Protection of the Rights of All Migrant Workers and Members of Their Families (ICMW), as an essential step in the protection of human rights ", - "values": [ - "International instruments", - "Labour", - "Migrants" - ] - }, - { - "text": "Strengthen capacity-building in field of human rights for military, police personnel and for civil servants with emphasis on criteria for the attention of specific populations", - "values": [ - "Human rights violations by state agents" - ] - }, - { - "text": "Redouble efforts to fill the gaps among the infant and maternal mortality rates of Jewish, Arab-Israeli and Bedouin children and women", - "values": [ - "Minorities", - "Right to health", - "Rights of the Child", - "Women's rights" - ] - }, - { - "text": "Consider the adoption of measures commensurate with international standards on the subject and the launching of public campaigns about non-violent forms of discipline.", - "values": [ - "Human rights education and training" - ] - }, - { - "text": "Develop human resources in the health sector in accordance with the needs", - "values": [ - "Right to health" - ] - }, - { - "text": "Ensure impartial and effective investigation of violence perpetrated against women and violence perpetrated against children, and ensure reparations for victims and the right to a fair trial, including legal aid, for both the victim and the accused", - "values": [ - "Rights of the Child", - "Women's rights" - ] - }, - { - "text": "Adopt within its domestic legislation a law based on the Statute of the International Criminal Court criminalizing war crimes, the crime of genocide and crimes against humanity in the Criminal and the Military Justice Codes.", - "values": [ - "International instruments", - "Justice" - ] - }, - { - "text": "Take the necessary measures to ensure that asylum seekers have the necessary support in the temporary accommodation centres for foreigners and incorporate in the legislation the current good practice of having an open regime for unaccompanied minors and persons in situation of vulnerability, as recommended by OHCHR ", - "values": [ - "Asylum-seekers - refugees", - "Right to housing", - "Rights of the Child" - ] - }, - { - "text": "Align domestic legislation with international standards on detention, and to ratify the Convention against Torture and Other Cruel, Inhuman or Degrading Treatment or Punishment", - "values": [ - "Detention", - "International instruments", - "Torture and other CID treatment" - ] - }, - { - "text": "Take appropriate steps to establish "Approved Schools" as provided for in the Juvenile Act with the aim of, inter alia, separating juveniles from adult offenders serving custodial sentences ", - "values": [ - "Detention", - "Rights of the Child" - ] - }, - { - "text": "Ratify CRPD to better ensure the rights of such persons ", - "values": [ - "Disabilities", - "International instruments" - ] - }, - { - "text": "Continue incorporating the gender perspective in the design and implementation of policies, and guarantee that the development agenda pays equal attention to the concerns of women", - "values": [ - "Development", - "Women's rights" - ] - }, - { - "text": "Continue to pay attention to violence against indigenous women by ensuring that all reports of violence, in particular sexual violence and rape against indigenous women, are thoroughly investigated, with a focus on ending impunity and bringing perpetrators before justice", - "values": [ - "Impunity", - "Indigenous peoples", - "Women's rights" - ] - }, - { - "text": "Continue to work to achieve gender equality in the country ", - "values": [ - "Women's rights" - ] - }, - { - "text": "Continue its cooperation with the International Criminal Court, in accordance with its responsibilities as a State party to the Rome Statute, namely regarding access for Court officials to investigate, the implementation of witness protection programmes and the implementation of warrants that might be issued by the Court ", - "values": [ - "International instruments", - "Justice" - ] - }, - { - "text": "Increase cooperation with the relevant United Nations bodies and other international organizations in the efforts to reduce the incidence of maternal and infant mortality and increase women's access to health care facilities ", - "values": [ - "Right to health", - "Rights of the Child", - "Technical assistance and cooperation", - "Women's rights" - ] - }, - { - "text": "Ratify other treaties and protocols which it has not yet ratified.", - "values": [ - "International instruments" - ] - }, - { - "text": "Continue its efforts to break the linkages between elements of the armed forces, State security forces and illegal paramilitary groups.", - "values": [ - "Justice" - ] - }, - { - "text": "Continue to introduce amendments to its national family law to ensure equal status and rights for women, in all matters ", - "values": [ - "Women's rights" - ] - }, - { - "text": "Improve conditions in prisons and detention centres vis-à-vis their overcrowding, including inmates' access to food and hygiene", - "values": [ - "Detention" - ] - }, - { - "text": "Sign and ratify the Optional Protocol to the Convention on the Rights of the Child (CRC) on the involvement of children in armed conflict, and implement it nationally.", - "values": [ - "International humanitarian law", - "International instruments", - "Rights of the Child" - ] - }, - { - "text": "The United States remains committed to self-determination and self-governance, empowering tribes to make their own decisions about the future of their peoples.", - "values": [ - "Indigenous peoples" - ] - }, - { - "text": "Continue training and building the capacity of law enforcement institutions on human rights", - "values": [ - "Human rights education and training" - ] - }, - { - "text": "Strengthen the implementation of poverty eradication strategies ", - "values": [ - "Poverty" - ] - }, - { - "text": "Ensure the effective implementation and enforcement of the legislation on reducing and eliminating discrimination against women", - "values": [ - "Women's rights" - ] - }, - { - "text": "Enhance technical cooperation with OHCHR", - "values": [ - "Technical assistance and cooperation" - ] - }, - { - "text": "Expedite the enactment and implementation of the bill on the protection of human rights defenders, journalists and justice officials, and provide adequate resources to establish an effective protection mechanism", - "values": [ - "Freedom of the press", - "Human rights defenders", - "Justice" - ] - }, - { - "text": "Take steps to expand the provision of legal assistance to victims of domestic violence beyond metropolitan areas ", - "values": [ - "Rights of the Child", - "Women's rights" - ] - }, - { - "text": "Reconsider the Act on banning conspicuous religious symbols in public schools and the Act on banning Niqab in public places in the light of its relevant obligations under the international human rights law", - "values": [ - "Freedom of religion and belief", - "International instruments", - "Right to education" - ] - }, - { - "text": "Protect its citizens from labour exploitation at home and abroad by providing improved regulation and oversight of workplace practices ", - "values": [ - "Labour" - ] - }, - { - "text": "Take all necessary measures to protect women, and especially girls, from sexual violence in the context of armed conflict.", - "values": [ - "Rights of the Child", - "Women's rights" - ] - }, - { - "text": "Further consider measures to clarify the events of April 2009", - "values": [ - "Other" - ] - }, - { - "text": "Undertake necessary steps aimed at adopting a comprehensive strategy that addresses all forms of discrimination", - "values": [ - "Other" - ] - }, - { - "text": "Harmonize national laws with international treaties to which Malawi has acceded ", - "values": [ - "International instruments" - ] - }, - { - "text": "Implement political and economic reforms conducted with the full participation of all social sectors for the development of the country and better ensure the fundamental rights and freedom for the people ", - "values": [ - "Development" - ] - }, - { - "text": "Adopt proactive measures to ensure access to equal opportunities and promote equal gender representation in decision-making positions, and implement non-discriminatory policies to ensure equal pay for women and men", - "values": [ - "Women's rights" - ] - }, - { - "text": "Continue efforts towards abolishing the death penalty", - "values": [ - "Death penalty" - ] - }, - { - "text": "Ratify the International Convention for the Protection of All Persons from Enforced Disappearance, as previously recommended", - "values": [ - "Enforced disappearances", - "International instruments", - "UPR process" - ] - }, - { - "text": "Take concrete steps to ensure that journalists are able to freely carry out their work and report on the political crisis, free from harassment and intimidation", - "values": [ - "Freedom of the press" - ] - }, - { - "text": "Take the necessary measures to allow the Bhutanese refugees who wish to return to Bhutan to do so safely and in conditions that respect their rights ", - "values": [ - "Asylum-seekers - refugees" - ] - }, - { - "text": "Amend accordingly all laws that are contrary to Uganda's national and international obligations to respect, protect and promote the freedoms of expression and assembly ", - "values": [ - "Freedom of association and peaceful assembly", - "Freedom of opinion and expression" - ] - }, - { - "text": "Continue with awareness raising measures for the recognition and dissemination of the rights of persons with disabilities and to implement, as quickly as possible, the Law on persons with disabilities ", - "values": [ - "Disabilities", - "Human rights education and training" - ] - }, - { - "text": "Continue and step up national efforts to train and guide security staff and other law enforcement officials in the field of human rights", - "values": [ - "Human rights education and training" - ] - }, - { - "text": "Adopt comprehensive legislation to combat discrimination based on sexual orientation and gender identity and protect the rights of lesbian, gay, bisexual, transgender and intersex persons", - "values": [ - "Sexual Orientation and Gender Identity" - ] - }, - { - "text": "Accede to the Second optional Protocol to the International Covenant on Civil and Political Rights, aimed at abolishing the death penalty, and take the necessary steps to remove the death penalty from Lebanon's justice system", - "values": [ - "Death penalty", - "International instruments", - "Justice" - ] - }, - { - "text": "The delegation reaffirmed Burundi's commitment to eradicate all human rights violations.", - "values": [ - "General" - ] - }, - { - "text": "Take measures to make schools more inclusive, without any form of discrimination", - "values": [ - "Right to education" - ] - }, - { - "text": "Activate the adoption process of the draft law on gender equality and the elaboration of a national policy on gender equality", - "values": [ - "Women's rights" - ] - }, - { - "text": "Take appropriate measures to protect vulnerable groups from discrimination, racial profiling and hate crimes, and to combat racism and xenophobia ", - "values": [ - "Racial discrimination" - ] - }, - { - "text": "Continue its efforts in the field of human rights education and training with a particular emphasis on the training of police and law enforcement officials", - "values": [ - "Human rights education and training" - ] - }, - { - "text": "Develop a comprehensive policy for the development of human rights that includes a national human rights institution that allows for the articulation, coordination and implementation of policy in practice", - "values": [ - "National Human Rights Institution" - ] - }, - { - "text": "Step up its efforts to clamp down on racism and acts of extremism in line with its concept of combating extremism for 2011-2014 ", - "values": [ - "Racial discrimination" - ] - }, - { - "text": "Engage in a review of special security laws, with a view to amending legislation and regulations which restrict or deny freedoms of expression, association and peaceful assembly that are inconsistent with obligations under international law, including the Internal Security Act, the Computer Crimes Act, the Emergency Decree, the Official Information Act, and lèse-majesté provisions", - "values": [ - "Freedom of association and peaceful assembly", - "Freedom of opinion and expression" - ] - }, - { - "text": "Introduce changes to laws on drugs, given the increase in drug use in the country ", - "values": [ - "Public security" - ] - }, - { - "text": "Continue deepening the ongoing consultations of the human rights institutions of the State with social organizations and non-State actors", - "values": [ - "Civil society" - ] - }, - { - "text": "Consider the adoption of a legal moratorium on the use of death penalty with a view to abolishing capital punishment in national legislation.", - "values": [ - "Death penalty" - ] - }, - { - "text": "Ratify the ICCPR-OP2, aiming at the abolition of the death penalty.", - "values": [ - "Death penalty" - ] - }, - { - "text": "Ensure the rights of religious and ethnic minorities. In this regard, respect and guarantee the rights of Iraqi Turkmen and other peoples who are integral with Iraq in accordance with relevant international obligations", - "values": [ - "Minorities" - ] - }, - { - "text": "Consider abolishing the death penalty as it negates the right to life and since it has not been used in Barbados for over 30 years ", - "values": [ - "Death penalty" - ] - }, - { - "text": "Become party to the Convention against Torture and Other Cruel, Inhuman and Degrading Treatment or Punishment and its Optional Protocol", - "values": [ - "Detention", - "International instruments", - "Torture and other CID treatment" - ] - }, - { - "text": "Complete the enactment of the draft child protection act and incorporate in the act provisions to counter child, early and forced marriage", - "values": [ - "Rights of the Child", - "Women's rights" - ] - }, - { - "text": "Continue to develop a national strategy for human rights education in the school system at all levels, in accordance with the Plan of Action 2005-2009 of the World Programme for Human Rights Education, including the review and revision of curricula and textbooks, the training of teachers and the practice of human rights in the school community", - "values": [ - "Human rights education and training" - ] - }, - { - "text": "Continue to build on and strengthen efforts to protect the rights of migrant workers, especially women migrant domestic workers.", - "values": [ - "Labour", - "Migrants", - "Women's rights" - ] - }, - { - "text": "Complete the process of establishment of a national human rights institution", - "values": [ - "National Human Rights Institution" - ] - }, - { - "text": "Take, as soon as possible, the measures necessary to operationalize national human rights institutions, ensuring their independence and depoliticization, with the technical assistance of OHCHR", - "values": [ - "National Human Rights Institution", - "Technical assistance and cooperation" - ] - }, - { - "text": "Revise the Omani Nationality Law, to guarantee citizenship for children born to non-Omani fathers", - "values": [ - "Rights of the Child", - "Statelessness and the right to nationality", - "Women's rights" - ] - }, - { - "text": "Take necessary steps for recognizing the Muftis elected by the Turkish Muslim minority and repealing the relevant articles of the Law 3536/2007", - "values": [ - "Freedom of religion and belief", - "Minorities" - ] - }, - { - "text": "Cease immediately the practice of not segregating women, children and men in prison facilities ", - "values": [ - "Detention", - "Rights of the Child", - "Women's rights" - ] - }, - { - "text": "Continue placing strong emphasis on promoting and protecting human rights in crucial areas such as poverty eradication, justice administration, education, public health and gender equality", - "values": [ - "Justice", - "Poverty", - "Right to education", - "Right to health", - "Women's rights" - ] - }, - { - "text": "Continue to combat all forms of discrimination against women ", - "values": [ - "Women's rights" - ] - }, - { - "text": "Establish, as a first stage, a moratorium on all executions and then fully abolish the death penalty", - "values": [ - "Death penalty" - ] - }, - { - "text": "Provide for the comprehensive protection and promotion of all human rights and fundamental freedoms enshrined in the Universal Declaration of Human Rights ", - "values": [ - "International instruments" - ] - }, - { - "text": "Take all necessary measures to promote and strengthen the foundation of family and its values in society.", - "values": [ - "Other" - ] - }, - { - "text": "Lift all military checkpoints and end all restrictions on the rights of Palestinians to movement and their rights to health and education.", - "values": [ - "Freedom of movement" - ] - }, - { - "text": "Increase human rights education and training for police officers ", - "values": [ - "Human rights education and training" - ] - }, - { - "text": "Ensure effective investigation and punishment of the crimes of murder of women, and adopt additional measures to combat this phenomenon and raise awareness about such threat", - "values": [ - "Women's rights" - ] - }, - { - "text": "Allow for independent investigations into the circumstances surrounding the deaths of Oswaldo Paya and Harold Cepero ", - "values": [ - "Justice" - ] - }, - { - "text": "Review the policy of offshore processing of asylum seekers on Nauru and Manus Island and review the implementation of the Migration and Maritime Power Legislation Amendment Bill, making sure that the international obligation of non refoulement is strictly upheld", - "values": [ - "Asylum-seekers - refugees", - "International instruments", - "Migrants" - ] - }, - { - "text": "Promote measures against discrimination based on sexual orientation and gender identity, including the investigation, and, where appropriate, the sanction of those responsible of acts of discrimination and violence against LGBTI persons", - "values": [ - "Sexual Orientation and Gender Identity" - ] - }, - { - "text": "Take further steps to ensure that the alleged cases of violence against journalists are thoroughly investigated", - "values": [ - "Freedom of the press" - ] - }, - { - "text": "Increase the level of investment in education and social and cultural affairs in rural areas to ensure an equal provision of all services, in particular to disadvantaged groups such as women and indigenous children ", - "values": [ - "ESC rights - general", - "Indigenous peoples", - "Right to education", - "Rights of the Child", - "Women's rights" - ] - }, - { - "text": "Devote primary attention to the protection of the children involved in episodes of blood feud, so as to ensure the full protection and enjoyment of their rights ", - "values": [ - "Public security", - "Rights of the Child" - ] - }, - { - "text": "Accelerate the process of establishing the national commission for the promotion and protection of human rights, in accordance with the Paris Principles, and undertake the steps necessary for its accreditation with the coordinating committee for national institutions for the promotion and protection of human rights", - "values": [ - "National Human Rights Institution" - ] - }, - { - "text": "Continue its efforts in order to re-establish the functioning of a national human rights institution in accordance with the Paris Principles ", - "values": [ - "National Human Rights Institution" - ] - }, - { - "text": "Render the National Human Rights Commission operational with the enactment of relevant legislation ", - "values": [ - "National Human Rights Institution" - ] - }, - { - "text": "Ratify the International Convention for the Protection of All Persons from Enforced Disappearance, the Optional Protocol to the Convention on the Rights of the Child on the sale of children, child prostitution and child pornography as well as sign and ratify the Convention on the Rights of Persons with Disabilities", - "values": [ - "Disabilities", - "Enforced disappearances", - "International instruments", - "Rights of the Child", - "Trafficking" - ] - }, - { - "text": "Enact legislation to make the right to collective bargaining through trade unions in line with international commitments", - "values": [ - "Labour" - ] - }, - { - "text": "Ensure access for all detainees to legal counsel and judicial oversight as well as the effective investigation and prosecution of alleged cases of torture by security forces. ", - "values": [ - "Detention", - "Human rights violations by state agents", - "Torture and other CID treatment" - ] - }, - { - "text": "Continue the reconciliation policy and implement, with support from the international community, all decisions resulting from the Ouagadougou Agreement ", - "values": [ - "Public security", - "Technical assistance and cooperation" - ] - }, - { - "text": "Abolish capital punishment.", - "values": [ - "Death penalty" - ] - }, - { - "text": "Accelerate the issuance of civil society regulations to activate civil work in the areas of protecting and promoting human rights and develop the capacities of the workers in the area of human rights and guarantee their work in freedom and independence", - "values": [ - "Civil society", - "Freedom of association and peaceful assembly" - ] - }, - { - "text": "Take steps to prevent acts of racially motivated violence and discrimination, including through education and awareness campaigns, ensuring effective interventions by law enforcement and ensuring the successful prosecution of those that commit such crimes", - "values": [ - "Human rights education and training", - "Racial discrimination" - ] - }, - { - "text": "Strengthen the efforts to reach a qualitative superior performance in the administration of justice ", - "values": [ - "Justice" - ] - }, - { - "text": "Continue to fight violence against women in all fields", - "values": [ - "Women's rights" - ] - }, - { - "text": "Continue its efforts to promote human rights, which have reached a notable level in Qatar", - "values": [ - "General" - ] - }, - { - "text": "Develop a national plan to provide assistance and compensation to internally displaced persons", - "values": [ - "Internally displaced persons" - ] - }, - { - "text": "Enact legislation on domestic violence and seek to eliminate all forms of violence against women while increasing access to justice for women victims, especially in remote and rural areas ", - "values": [ - "Women's rights" - ] - }, - { - "text": "Intensify its efforts to combat the dissemination of ideas based on racial superiority including racist speech by political parties through the Internet as well as other media ", - "values": [ - "Racial discrimination" - ] - }, - { - "text": "Ensure a fair trial for all detained, complying with international standards, within a reasonable timeframe", - "values": [ - "Justice" - ] - }, - { - "text": "Sign and ratify the International Convention on the Protection of the Rights of All Migrant Workers and Members of Their Families", - "values": [ - "International instruments", - "Labour", - "Migrants" - ] - }, - { - "text": "Ensure draft legislation relevant to protecting vulnerable groups is successfully implemented, such as the Law on the Elimination of Domestic Violence and the Law on the Welfare of Older Persons", - "values": [ - "Rights of the Child", - "Women's rights" - ] - }, - { - "text": "Complete the ratification procedures for the International Covenant on Economic, Social and Cultural Rights", - "values": [ - "ESC rights - general", - "International instruments" - ] - }, - { - "text": "Ratify the Convention on the Rights of Persons with Disabilities in due course to strengthen its implementation framework in line with the Convention ", - "values": [ - "Disabilities", - "International instruments" - ] - }, - { - "text": "Consider ratification of ILO Convention 189", - "values": [ - "International instruments", - "Labour" - ] - }, - { - "text": "Consider improving the implementation of the legal framework for combating racism", - "values": [ - "Racial discrimination" - ] - }, - { - "text": "Amend legislation, public policies and programmes to comply with its international commitments against all forms of discrimination, as stipulated in the International Convention on the Elimination of All Forms of Racial Discrimination, the Convention on the Rights of the Child and the Convention on the Elimination of All Forms of Discrimination against Women", - "values": [ - "International instruments", - "Racial discrimination", - "Women's rights" - ] - }, - { - "text": "Ratify the Optional Protocol to the Convention on the Rights of Child on the sale of children, child prostitution and child pornography (OP-SCR) ", - "values": [ - "International instruments", - "Rights of the Child", - "Trafficking" - ] - }, - { - "text": "Continue with the necessary legislations to ensure the promotion and protection of the rights of women and their role in society, including the enhancement of their participation in the State institutions, and achieve full equality in employment opportunities", - "values": [ - "Women's rights" - ] - }, - { - "text": "Respect the human rights of prisoners of war, guaranteed by the penal norms ", - "values": [ - "International humanitarian law" - ] - }, - { - "text": "Accelerate the resolution of pending property cases by adopting the relevant new legislative framework", - "values": [ - "Other" - ] - }, - { - "text": "Proceed with the legal abolition of the death penalty and ratify the Second Optional Protocol to the International Covenant on Civil and Political Rights, aiming at the abolition of the death penalty", - "values": [ - "Death penalty", - "International instruments" - ] - }, - { - "text": "Grant the request made by the Special Rapporteur on the independence of judges and lawyers in 2006, 2008 and 2009 to visit the country ", - "values": [ - "Justice", - "Special procedures" - ] - }, - { - "text": "It also commits to maintain its timely reporting and cooperation with all human rights mechanisms, including the UPR. Improving the participation of civil society organisations in this process will remain a key priority. ", - "values": [ - "Civil society", - "Special procedures", - "Treaty bodies", - "UPR process" - ] - }, - { - "text": "Take the necessary measures to decriminalize same-sex consensual relations", - "values": [ - "Sexual Orientation and Gender Identity" - ] - }, - { - "text": "Accept a visit to the country from the Special Rapporteur on torture and other cruel, inhuman or degrading treatment or punishment", - "values": [ - "Special procedures", - "Torture and other CID treatment" - ] - }, - { - "text": "Foster an independent judiciary and consult with civil society, the Office for Democratic Institutions and Human Rights of the Organization for Security and Cooperation in Europe and the Venice Commission on any judicial reform", - "values": [ - "Civil society", - "Justice" - ] - }, - { - "text": "Strengthen cooperation between government agencies with Human Rights National Commission and civil society to coordinating, planning and implementing the National Human Rights Action Plan", - "values": [ - "Civil society", - "National Human Rights Institution" - ] - }, - { - "text": "Continue its endeavour in enhancing dialogue between civilizations, cultures and religions.", - "values": [ - "Freedom of religion and belief" - ] - }, - { - "text": "Speed up the process of accession to the International Convention for the Protection of All Persons from Enforced Disappearance", - "values": [ - "Enforced disappearances", - "International instruments" - ] - }, - { - "text": "Investigate promptly, effectively and impartially all reports of attacks on or threats against human rights defenders, lawyers, journalists and civil society activists, and identify those responsible and bring them to justice ", - "values": [ - "Civil society", - "Freedom of the press", - "Human rights defenders", - "Justice" - ] - }, - { - "text": "Effectively cooperate with OHCHR and the mandate holders of the Human Rights Council, including the Special Rapporteur on the situation of human rights in Eritrea, and issue a standing invitation to the special procedures mandate holders ", - "values": [ - "Special procedures", - "Technical assistance and cooperation" - ] - }, - { - "text": "Extend an invitation to the Special Rapporteur on the promotion and protection of the right to freedom of opinion and expression ", - "values": [ - "Freedom of opinion and expression", - "Special procedures" - ] - }, - { - "text": "The Government remains committed to doing everything in its power to shed light on the heinous crimes committed on that date.", - "values": [ - "Other" - ] - }, - { - "text": "Remove the requirement for civil society organizations to provide a complete list of the organization's members to the Government ", - "values": [ - "Civil society" - ] - }, - { - "text": "Decriminalize same-sex relations and take concrete measures to combat discrimination and violence against the lesbian, gay, bisexual, transgender and intersex community", - "values": [ - "Sexual Orientation and Gender Identity" - ] - }, - { - "text": "Ratify the International Covenant on Economic, Social and Cultural Rights within the time frame of the third universal periodic review", - "values": [ - "ESC rights - general", - "International instruments", - "UPR process" - ] - }, - { - "text": "Promptly ratify the International Convention on the Rights of All Migrant Workers and Members of Their Families", - "values": [ - "International instruments", - "Labour", - "Migrants" - ] - }, - { - "text": "As a first step consider a broad amnesty of remaining political and religious prisoners ", - "values": [ - "Detention", - "Freedom of opinion and expression", - "Freedom of religion and belief" - ] - }, - { - "text": "Continue intensifying its efforts to promote women's empowerment through capacity-building, gender sensitivity training and public awarenessraising activities", - "values": [ - "Human rights education and training", - "Women's rights" - ] - }, - { - "text": "Put in place a Comprehensive Plan on Gender Equality that criminalizes FGM ", - "values": [ - "Rights of the Child", - "Torture and other CID treatment", - "Women's rights" - ] - }, - { - "text": "Continue working sufficiently to publicize the recommendations of the UPR Working Group and the plan of action", - "values": [ - "UPR process" - ] - }, - { - "text": "Consider continuing on to the ratification of the core human rights instruments", - "values": [ - "International instruments" - ] - }, - { - "text": "Adopt a specific domestic violence legislation to criminalize rape in marriage ", - "values": [ - "Women's rights" - ] - }, - { - "text": "Ensure compliance of the People's Advocate (Ombudsman's) Office with the Paris Principles ("A" status) ", - "values": [ - "National Human Rights Institution" - ] - }, - { - "text": "Strengthen its steps to improve the quality of education and continue the establishment of elementary and secondary schools in communities that have none", - "values": [ - "Right to education" - ] - }, - { - "text": "Strengthen its efforts to eradicate corruption in order to achieve the objectives of good governance", - "values": [ - "Corruption", - "Justice" - ] - }, - { - "text": "Continue to ensure that sufficient and safe shelters for women victims of gender-based violence are available and accessible for all", - "values": [ - "Women's rights" - ] - }, - { - "text": "The Government also pledged its commitment to do all in its power to sign and ratify, before the end of 2012, all outstanding instruments in the area of international human rights and humanitarian law", - "values": [ - "International humanitarian law", - "International instruments" - ] - }, - { - "text": "In line with the observations by the Human Rights Committee, address the issues of unlawful arrest and detention by the security agencies, and any allegations of torture and ill-treatment of persons in their custody", - "values": [ - "Detention", - "Human rights violations by state agents", - "Torture and other CID treatment", - "Treaty bodies" - ] - }, - { - "text": "Ensure the institutionalization of an independent national human rights commission in conformity with the Paris Principles", - "values": [ - "National Human Rights Institution" - ] - }, - { - "text": "Ratify the second Optional Protocol of the ICCPR, and formally establish a moratorium on the use of death penalty with a view to its abolition ", - "values": [ - "Death penalty", - "International instruments" - ] - }, - { - "text": "Ensure that migrant women can seek protection from domestic violence and halt deportation procedures in this context", - "values": [ - "Migrants", - "Women's rights" - ] - }, - { - "text": "Redouble efforts against trafficking in persons, in particular through the adoption of the new National Strategy 2013-2018", - "values": [ - "Trafficking" - ] - }, - { - "text": "Guarantee a fair compensation to the victims of racial hate and xenophobic criminal acts, such as the case of the Ecuadoreans Marcelo Lucero and Jose Sucuzhanay, murdered in the United States", - "values": [ - "Racial discrimination" - ] - }, - { - "text": "Ratify International Labour Organization Convention No. 87", - "values": [ - "Freedom of association and peaceful assembly", - "International instruments" - ] - }, - { - "text": "Continue to promote women and make sure they are effectively present at the level of decision-making", - "values": [ - "Women's rights" - ] - }, - { - "text": "Continue efforts aimed at combating violence against women", - "values": [ - "Women's rights" - ] - }, - { - "text": "Establish promptly a national human rights institution, in full compliance with the Paris Principles", - "values": [ - "National Human Rights Institution" - ] - }, - { - "text": "Extend standing invitation to United Nations Special Procedures mandate holders to visit the country", - "values": [ - "Special procedures" - ] - }, - { - "text": "Accelerate effective implementation of the recommendations of the 2007-2011 Enabling Masterplan of the Ministry of Community Development, Youth and Sports and the National Council of Social Service to review and plan services for persons with disabilities ", - "values": [ - "Disabilities" - ] - }, - { - "text": "Work towards enforcing the law on the education system and increase financial support specifically for education to ensure that all children receive education, and upgrade the educational infrastructure and the quality of education", - "values": [ - "Right to education", - "Rights of the Child" - ] - }, - { - "text": "Eradicate domestic child labour and economic exploitation of children", - "values": [ - "Labour", - "Rights of the Child" - ] - }, - { - "text": "Take additional measures, including providing resources and assistance, access to courts and appropriate punishment for violations, to tackle sexual and intimate partner violence and exploitation of women and girls", - "values": [ - "Rights of the Child", - "Women's rights" - ] - }, - { - "text": "Continue its national efforts to end human trafficking and sexual exploitation", - "values": [ - "Trafficking" - ] - }, - { - "text": "Ratify all significant human rights treaties, so as to reinforce the implementation of, and compliance with, international human rights law in the country", - "values": [ - "International instruments" - ] - }, - { - "text": "Make efforts to fully guarantee freedom of expression and information, in accordance with Moldova's international obligations", - "values": [ - "Freedom of opinion and expression", - "Freedom of the press" - ] - }, - { - "text": "Continue to improve progressively maternal and child health programs to ensure systematic and continuous control over their situation across the country ", - "values": [ - "Right to health", - "Rights of the Child", - "Women's rights" - ] - }, - { - "text": "Take steps to prohibit corporal punishment of children in all settings ", - "values": [ - "Rights of the Child", - "Torture and other CID treatment" - ] - }, - { - "text": "Repeal all legislative provisions that discriminate against persons on the grounds of their sexual orientation, including in the Sexual Offences Act, within the next two years ", - "values": [ - "Sexual Orientation and Gender Identity" - ] - }, - { - "text": "Continue measures for combating human trafficking, including by broadening international, regional and bilateral cooperation", - "values": [ - "Trafficking" - ] - }, - { - "text": "Ensure that all allegations of exploitation and sexual abuse of children in the Central African Republic by Gabonese soldiers are promptly and effectively investigated, and take steps to prevent this situation in the future", - "values": [ - "Human rights violations by state agents", - "Rights of the Child" - ] - }, - { - "text": "Consider further facilitation of the acquisition of citizenship and increased efforts to promote the registration of newborns ", - "values": [ - "Other" - ] - }, - { - "text": "Establish the delayed National Human Rights Commission in accordance with the Paris Principles ", - "values": [ - "National Human Rights Institution" - ] - }, - { - "text": "Continue to cooperate with the Prosecutor of the International Criminal Court", - "values": [ - "Justice" - ] - }, - { - "text": "Effectively implement the Convention on the Rights of Persons with Disabilities and the Optional Protocol thereto", - "values": [ - "Disabilities", - "International instruments" - ] - }, - { - "text": "Implement the National Plan for Education for All effectively and take urgent steps to address the root causes of the high dropout rate for girls", - "values": [ - "Right to education", - "Rights of the Child", - "Women's rights" - ] - }, - { - "text": "Improve the legal situation of migrant workers", - "values": [ - "Labour", - "Migrants" - ] - }, - { - "text": "Ensure rapid ratification of the Council of Europe Convention on Prevention and Combating Violence against Women and Domestic Violence", - "values": [ - "International instruments", - "Rights of the Child", - "Women's rights" - ] - }, - { - "text": "Take measures to improve the process of birth registration", - "values": [ - "Rights of the Child", - "Statelessness and the right to nationality" - ] - }, - { - "text": "In fulfilling its treaty obligations, Liechtenstein will continue to pay particular attention to the situation of foreigners, taking into account the exceptionally high proportion of non-Liechtenstein nationals among the resident population and the workforce", - "values": [ - "International instruments", - "Migrants" - ] - }, - { - "text": "Launch wide education campaigns against the phenomenon of violence against perceived witches together with concrete measures to protect victims or potential victims of such attacks.", - "values": [ - "Human rights education and training" - ] - }, - { - "text": "Strengthen its efforts to promote food security and eradicate all forms of malnutrition, and ensure quality education to all children through inclusive policies", - "values": [ - "Right to education", - "Right to food", - "Rights of the Child" - ] - }, - { - "text": "Review all domestic legislation with a view to bringing it into full compliance with CEDAW and the general recommendations of the Committee on the Elimination of Discrimination against Women ", - "values": [ - "International instruments", - "Treaty bodies", - "Women's rights" - ] - }, - { - "text": "Continue efforts to create a national human rights institution", - "values": [ - "National Human Rights Institution" - ] - }, - { - "text": "Adopt new measures to find a solution to the problem of overcrowding in prisons ", - "values": [ - "Detention" - ] - }, - { - "text": "Formulate and implement a national action plan against the sexual exploitation of children ", - "values": [ - "Rights of the Child" - ] - }, - { - "text": "Design and implement effective policies to promote gender equality based on indicators and statistics to measure their impact", - "values": [ - "Women's rights" - ] - }, - { - "text": "Fully investigate all allegations of human rights violations committed by elements of the military and security forces, including the adoption of recommendations made by Mexico National Human Rights Commission", - "values": [ - "Human rights violations by state agents", - "Justice" - ] - }, - { - "text": "Ensure adequate means, both financial and material, for the Human Rights Commission and the National Peace and Reconciliation Commission to enable them to fully and effectively fulfil their mandates", - "values": [ - "National Human Rights Institution" - ] - }, - { - "text": "Accelerate its efforts to finalize the national mental health programme, with the aim of reducing the suicide rate", - "values": [ - "Right to health" - ] - }, - { - "text": "Continue its efforts to strengthen its legal framework to combat prolonged pre-trial detention", - "values": [ - "Detention" - ] - }, - { - "text": "Continue its efforts to address discrimination based on race, national identity or religious belief and to promote cultural diversity and tolerance, including through the implementation of article 161 of the Criminal Code", - "values": [ - "Freedom of religion and belief", - "Minorities", - "Racial discrimination" - ] - }, - { - "text": "Make every effort to preserve the various components of the existing social protection programs and ensure the rights of vulnerable groups", - "values": [ - "Minorities" - ] - }, - { - "text": "The application of best practices in all areas of the universal periodic review process, beginning with the preparation of the report in consultation with the relevant stakeholders, in order to guarantee the implementation of the outcome of the review and follow-up on the progress made by Bahrain in implementing the outcome.", - "values": [ - "Civil society", - "UPR process" - ] - }, - { - "text": "Increase awareness-raising programmes and campaigns to promote tolerance and respect for cultural diversity ", - "values": [ - "Human rights education and training", - "Minorities" - ] - }, - { - "text": "Ensure that no impediments are created to the preservation, expression, and development of cultural identity by all citizens", - "values": [ - "ESC rights - general" - ] - }, - { - "text": "Continue to address barriers to education of girls, with a view of increasing school enrolment at the primary and secondary levels, especially in rural areas", - "values": [ - "Right to education", - "Rights of the Child", - "Women's rights" - ] - }, - { - "text": "Immediately close down all political prison camps and unconditionally release all prisoners of conscience, including relatives being held on the basis of "guilt-by-association"", - "values": [ - "Detention", - "Freedom of opinion and expression", - "Freedom of religion and belief" - ] - }, - { - "text": "Ensure that crimes and violations against human rights defenders and journalists are effectively investigated and prosecuted, and that those responsible are punished ", - "values": [ - "Freedom of the press", - "Human rights defenders" - ] - }, - { - "text": "Continue to combat trafficking in human beings and cooperate in the international framework in this respect ", - "values": [ - "Trafficking" - ] - }, - { - "text": "Continue implementation of initiatives to encourage the empowerment of women, in particular in rural areas", - "values": [ - "Women's rights" - ] - }, - { - "text": "Ratify the Rome Statute of the International Criminal Court and bring into line its legislation with the obligations under the Statute ", - "values": [ - "International instruments", - "Justice" - ] - }, - { - "text": "Further enhance engagement with civil society groups registered in the country, including local youth and women's associations, in the promotion and protection of human rights ", - "values": [ - "Civil society", - "Women's rights" - ] - }, - { - "text": "Enhance its efforts for the protection of children from all forms of violation including domestic violence and sexual exploitation ", - "values": [ - "Rights of the Child" - ] - }, - { - "text": "Ensure that legislation defining the minimum legal age of marriage at 18 is enforced at all levels, everywhere in the country", - "values": [ - "Rights of the Child", - "Women's rights" - ] - }, - { - "text": "Seek assistance for the immediate implementation, by the international community, of Security Council resolution 1964 (2010) so as to create means for the delivery of basic social services to the population ", - "values": [ - "Technical assistance and cooperation" - ] - }, - { - "text": "Complete at the earliest the constitutional reform to incorporate in the Federal Constitution the rights of the child in accordance with the provisions of the CRC ", - "values": [ - "International instruments", - "Rights of the Child" - ] - }, - { - "text": "Unite behind a new constitution through a fair referendum, and fully implement the result ", - "values": [ - "Justice" - ] - }, - { - "text": "Adopt and implement further measures in order to address the gender wage gap, improve women's access to entrepreneurship and ensure a balanced representation of women in the labour market", - "values": [ - "Women's rights" - ] - }, - { - "text": "Take measures to improve the quality of health services deteriorated due to lack of medical facilities and medicine ", - "values": [ - "Right to health" - ] - }, - { - "text": "Extend a standing invitation to United Nations special procedures mandate holders and initiate without delay cooperation with the Special Rapporteur on torture and other cruel, inhuman or degrading treatment or punishment", - "values": [ - "Special procedures", - "Torture and other CID treatment" - ] - }, - { - "text": "Define torture as a serious offence, punishable by sanctions commensurate with the gravity of the torture, and ensure that no statement obtained by torture is invoked as evidence in any proceedings", - "values": [ - "Torture and other CID treatment" - ] - }, - { - "text": "Monitor the implementation of the 2015 modern slavery legislation, including its effectiveness in combating trafficking in women and girls", - "values": [ - "Trafficking", - "Women's rights" - ] - }, - { - "text": "Enact independent legislation focused specifically on combating discrimination, in particular for gender", - "values": [ - "Women's rights" - ] - }, - { - "text": "Lift all restrictions on humanitarian access to populations in need of assistance, in particular to besieged and hard-to-reach areas, and ensure the safe evacuation of those civilians who wish to leave, particularly those in Aleppo and 15 other territories that the United Nations has classified as besieged by Syria", - "values": [ - "Other" - ] - }, - { - "text": "Strengthen the capacity and improve effectiveness of the State-level human rights Ombudsman, ensuring adherence to the Paris Principles", - "values": [ - "National Human Rights Institution" - ] - }, - { - "text": "Establish a national human rights institution, including the nomination of an ombudsperson for children, provided with adequate human and financial resources to promote and strengthen accessibility for children and to enable children to submit complaints ", - "values": [ - "National Human Rights Institution", - "Rights of the Child" - ] - }, - { - "text": "Repeal criminal defamation laws, particularly those providing special punishment for alleged defamation", - "values": [ - "Freedom of opinion and expression" - ] - }, - { - "text": "Take concrete steps to address reporting delays to United Nations treaty bodies, in particular the Human Rights Committee", - "values": [ - "CP rights - general", - "Treaty bodies" - ] - }, - { - "text": "Free all women and girls incarcerated for having undergone an abortion, or for having endured one spontaneously, and also remove their criminal records for these motives", - "values": [ - "Detention", - "Rights of the Child", - "Women's rights" - ] - }, - { - "text": "Consider the possibility of establishing a universal basic income with a view to further reducing poverty and inequality levels, for improving the existing social protection system", - "values": [ - "Poverty" - ] - }, - { - "text": "Seek the assistance of the international community in promoting conditions of development favourable to the enhancement of human rights and work on the reinforcement of capacity-building for civil-society actors as well as the media in their neighbourhood actions related to awareness-raising and information on human rights ", - "values": [ - "Human rights education and training", - "Technical assistance and cooperation" - ] - }, - { - "text": "Provide training and promote capacity building among its institutions to guarantee the effective application of the Women's Charter", - "values": [ - "Human rights education and training", - "Women's rights" - ] - }, - { - "text": "Consider introducing civic and human rights education in the school curriculum", - "values": [ - "Human rights education and training" - ] - }, - { - "text": "Guarantee the protection of fundamental human rights and freedoms of its citizens by guaranteeing the independence of the judicial bodies, impartiality in decision-making, respecting defendants' right to fair trial, ensuring access to free legal aid and restoring citizens' trust in the justice system by fighting impunity ", - "values": [ - "Impunity", - "Justice" - ] - }, - { - "text": "Consider harmonizing Guatemala's civil and penal codes with international human rights norms, in relation to racial discrimination and gender issues", - "values": [ - "International instruments", - "Racial discrimination", - "Women's rights" - ] - }, - { - "text": "Strengthen national coordination mechanisms and develop a comprehensive national human rights action plan, as recommended by the United Nations Secretary General in 2015, before Tajikistan's next Universal Periodic Review", - "values": [ - "UPR process" - ] - }, - { - "text": "Continue its efforts to stop child labour by monitoring the implementation of the 2008 Labor Code, especially in rural communities ", - "values": [ - "Labour", - "Rights of the Child" - ] - }, - { - "text": "Intensify the implementation of the Second Plan of Action combating violence against women, in particular for women in a vulnerable situation ", - "values": [ - "Women's rights" - ] - }, - { - "text": "Ratify the International Covenant on Civil and Political Rights and its Second Optional Protocol", - "values": [ - "CP rights - general", - "Death penalty", - "International instruments" - ] - }, - { - "text": "Pay particular attention to efforts aimed at reducing maternal mortality, including through international assistance and seeking good practices", - "values": [ - "Right to health", - "Women's rights" - ] - }, - { - "text": "Take measures to reduce prison overcrowding and improve conditions for detainees ", - "values": [ - "Detention" - ] - }, - { - "text": "Establish an independent national human rights institution in full compliance with the Paris Principles", - "values": [ - "National Human Rights Institution" - ] - }, - { - "text": "With the support from the WHO and other relevant UN agencies, continue to implement programmes to improve access to quality health-care services by its people ", - "values": [ - "Right to health" - ] - }, - { - "text": "Continue implementing the national strategy for combating poverty and seek the necessary assistance in this regard ", - "values": [ - "Poverty" - ] - }, - { - "text": "Withdraw existing reservations to ICCPR and ratify both ICCPR Optional Protocols ", - "values": [ - "CP rights - general", - "Death penalty", - "International instruments" - ] - }, - { - "text": "Consider ratifying more core human rights conventions, including the ICRMW", - "values": [ - "International instruments", - "Labour", - "Migrants" - ] - }, - { - "text": "Continue to support the rights of the LGBTI community through its human rights framework ", - "values": [ - "Sexual Orientation and Gender Identity" - ] - }, - { - "text": "Abolish the death penalty, which is also applied to persons with mental disabilities and commute those which have already been imposed", - "values": [ - "Death penalty" - ] - }, - { - "text": "Put in place a comprehensive strategy and effective legislation to eliminate practices that discriminate against women ", - "values": [ - "Women's rights" - ] - }, - { - "text": "Take effective measures to reduce overcrowding in prisons and lengthy pre-trial detention as well as strengthen the judicial system including for juvenile offenders ", - "values": [ - "Detention", - "Justice", - "Rights of the Child" - ] - }, - { - "text": "Continue strengthening domestic legislation in light of recognized international human rights standards, including the Convention on the Rights of the Child", - "values": [ - "International instruments", - "Rights of the Child" - ] - }, - { - "text": "Amend Article 149 of the Guyana Constitution to prohibit discrimination on the basis of sexual orientation and repeal Sections 351 to 353 of the Criminal Law Offences Act, which criminalizes sexual activities between consenting adults of the same sex", - "values": [ - "Sexual Orientation and Gender Identity" - ] - }, - { - "text": "Consider the feasibility of implementing social protection programmes that would assist in addressing the problem of child labour", - "values": [ - "Labour", - "Rights of the Child" - ] - }, - { - "text": "Improve the services, especially social services, provided to asylum-seekers - stress the importance of providing asylum-seekers deprived of means of subsistence with health insurance comparable to that afforded to nationals ", - "values": [ - "Asylum-seekers - refugees" - ] - }, - { - "text": "Put in place and apply sanctions against the perpetrators of domestic violence.", - "values": [ - "Rights of the Child", - "Women's rights" - ] - }, - { - "text": "Continue efforts to ensure that all children finish primary school and make primary education compulsory ", - "values": [ - "Right to education", - "Rights of the Child" - ] - }, - { - "text": "Reform articles 126 and 129 of the Penal Code regarding the crime of torture, in order to broaden the scope of punishable conduct and prevent impunity for perpetrators", - "values": [ - "Impunity", - "Torture and other CID treatment" - ] - }, - { - "text": "Carry out a security sector reform and a reform of the judicial system guaranteeing the independence of the judiciary ", - "values": [ - "Justice" - ] - }, - { - "text": "Ensure that reports of domestic violence are investigated swiftly and fully, and that prosecutions are carried out with the full force of the law ", - "values": [ - "Rights of the Child", - "Women's rights" - ] - }, - { - "text": "In the interest of religious tolerance, lift the bans on religious groups to enable them to practise their religions freely", - "values": [ - "Freedom of religion and belief" - ] - }, - { - "text": "Deepen the legal initiatives and their enforcement aimed at ensuring a legal and de facto situation that guarantees the human rights of migrants", - "values": [ - "Migrants" - ] - }, - { - "text": "Continue the efforts to reduce HIV/AIDS, malaria and tuberculosis with the assistance of the WHO ", - "values": [ - "HIV - Aids", - "Right to health", - "Technical assistance and cooperation" - ] - }, - { - "text": "Rephrase its definition of torture in national legislation by aligning it with the Convention against Torture and ensure that the new definition comprehends all elements of torture ", - "values": [ - "International instruments", - "Torture and other CID treatment" - ] - }, - { - "text": "Apply the road map on political rights through the holding of legislative elections", - "values": [ - "Elections" - ] - }, - { - "text": "Consider ratifying the Convention on the Rights of Persons with Disabilities, and ensuring its full implementation in domestic law ", - "values": [ - "Disabilities", - "International instruments" - ] - }, - { - "text": "Engage more consistently with human rights bodies and mechanisms at the international level ", - "values": [ - "General" - ] - }, - { - "text": "Enact the necessary policies and actions to support in practice the implementation of the legislation on non-discrimination and legal equality of women", - "values": [ - "Women's rights" - ] - }, - { - "text": "Make further efforts to ratify other relevant international instruments that are vital to the promotion and protection of Human Rights, in keeping with its national capacity and priority", - "values": [ - "International instruments" - ] - }, - { - "text": "Revise its position to provide compensation to Roma women who were victims of forced sterilization to properly recognize and provide just restitution for their suffering", - "values": [ - "Justice", - "Minorities", - "Torture and other CID treatment", - "Women's rights" - ] - }, - { - "text": "Adopt legislation and raise public awareness to combat domestic violence ", - "values": [ - "Rights of the Child", - "Women's rights" - ] - }, - { - "text": "Continue its activities in the field of poverty eradication ", - "values": [ - "Poverty" - ] - }, - { - "text": "Give up racist and discriminatory laws and practices accompanying the colonies in all the OPT, including Al Qods Asharif ", - "values": [ - "Racial discrimination" - ] - }, - { - "text": "Consider including in its next universal periodic review report information on measures it has taken to analyse potential risk factors of atrocity crimes including through utilizing the United Nations Framework of Analysis for Atrocity Crimes", - "values": [ - "International humanitarian law", - "UPR process" - ] - }, - { - "text": "Take additional measures to protect women from domestic violence ", - "values": [ - "Rights of the Child", - "Women's rights" - ] - }, - { - "text": "Prepare and implement a national plan of action to promote gender equality and ensure the incorporation of a gender perspective into all levels and spheres, in accordance with the recommendation from CEDAW ", - "values": [ - "Treaty bodies", - "Women's rights" - ] - }, - { - "text": "Developing an inter-institutional training strategy in that area", - "values": [ - "Women's rights" - ] - }, - { - "text": "Take steps to ratify the UNESCO Convention against Discrimination in Education ", - "values": [ - "International instruments", - "Right to education" - ] - }, - { - "text": "Design specific policies to improve the situation of women in Samoan society and political life", - "values": [ - "Women's rights" - ] - }, - { - "text": "Ensure that a comprehensive consultation process with all stakeholders, including civil society, is carried out during the design of the Strategic Plan for the Management, Prevention and Elimination of Domestic Violence", - "values": [ - "Civil society", - "Rights of the Child", - "Women's rights" - ] - }, - { - "text": "Consider extending a standing invitation to special procedures. ", - "values": [ - "Special procedures" - ] - }, - { - "text": "Draw the consequences of the positive evolution of society with respect to homosexuality by abolishing the provisions of the Penal Code related to private relations between consenting adults", - "values": [ - "Sexual Orientation and Gender Identity" - ] - }, - { - "text": "Further strengthen institutional and legislative measures to address inequality and disparities affecting persons belonging to vulnerable groups particularly in rural areas, in terms of access to education, health and employment", - "values": [ - "Development", - "Right to education", - "Right to health" - ] - }, - { - "text": "Strengthen the efforts to ensure inclusive education without discrimination for children with disabilities, and guide all cantons to refrain from a segregated approach in this context", - "values": [ - "Disabilities", - "Right to education", - "Rights of the Child" - ] - }, - { - "text": "Increase the representation of women in high government positions and elected councils", - "values": [ - "Elections", - "Women's rights" - ] - }, - { - "text": "Intensify its efforts to complete the alignment of national legislation with the provisions of the Rome Statute and to expedite the process of ratification of OP-CAT", - "values": [ - "Detention", - "International instruments", - "Torture and other CID treatment" - ] - }, - { - "text": "Issue and implement a standing invitation to all special procedures ", - "values": [ - "Special procedures" - ] - }, - { - "text": "Continue strengthening institutional measures to realize economic, social and cultural rights ", - "values": [ - "ESC rights - general" - ] - }, - { - "text": "Ensure that human rights defenders, in particular groups campaigning for equality and against discrimination based on perceived sexual orientation, are allowed to carry out their work in a secure environment, and that the rights to freedom of expression and association are respected. ", - "values": [ - "Freedom of association and peaceful assembly", - "Freedom of opinion and expression", - "Human rights defenders", - "Sexual Orientation and Gender Identity" - ] - }, - { - "text": "Continue to protect vulnerable groups, in particular women, children as well as foreigners", - "values": [ - "Migrants", - "Rights of the Child", - "Women's rights" - ] - }, - { - "text": "Consider repealing the provision that allows children to work in family-based occupations", - "values": [ - "Labour", - "Rights of the Child" - ] - }, - { - "text": "Increase dialogue, consultations and cooperation with the international community, relevant United Nations bodies, United Nations human rights mechanisms and other stakeholders to enhance mutual understanding and further improve the human rights situation in the country", - "values": [ - "Special procedures", - "Technical assistance and cooperation", - "Treaty bodies", - "UPR process" - ] - }, - { - "text": "Establish mechanisms to ensure that stigmatization and discrimination against ethnic minorities are eradicated from the public and private sectors, including through training and awareness-raising of public officials, their accountability, and mechanisms providing reparations for persons affected", - "values": [ - "Human rights education and training", - "Minorities", - "Racial discrimination" - ] - }, - { - "text": "Introduce a national legal provision prohibiting discrimination and harassment based on sexual orientation and gender ", - "values": [ - "Sexual Orientation and Gender Identity" - ] - }, - { - "text": "Ratify OP-CEDAW and establish an overall strategy to eliminate all harmful practices constituting discrimination against women ", - "values": [ - "International instruments", - "Torture and other CID treatment", - "Women's rights" - ] - }, - { - "text": "Continue to combat human trafficking", - "values": [ - "Trafficking" - ] - }, - { - "text": "Promote and develop the national plan to combat HIV", - "values": [ - "HIV - Aids" - ] - }, - { - "text": "Seek the technical and financial assistance of United Nations partners and specialized agencies to ratify the human rights treaties to which it is not yet party ", - "values": [ - "International instruments", - "Technical assistance and cooperation" - ] - }, - { - "text": "In keeping with its commitment to protect and promote human rights, consider establishing an independent human rights commission according to the Paris Principles to reinforce the suggestions made by different Treaty Bodies.", - "values": [ - "National Human Rights Institution", - "Treaty bodies" - ] - }, - { - "text": "Step up efforts to prevent ill-treatment of minors deprived of liberty and guarantee their effective rehabilitation", - "values": [ - "Detention", - "Rights of the Child", - "Torture and other CID treatment" - ] - }, - { - "text": "Continue its efforts and improve its legal and institutional frameworks for protection against discrimination by ensuring the same level of protection for all grounds of discrimination", - "values": [ - "Other" - ] - }, - { - "text": "Step up its measures to mitigate the scourges of xenophobia, which include, among others, visible policing, community awareness programmes, promotion of tolerance and cultural diversity ", - "values": [ - "Human rights education and training", - "Racial discrimination" - ] - }, - { - "text": "Accede to the International Convention on the Protection of the Rights of All Migrant Workers and Members of Their Families (ICRMWC).", - "values": [ - "International instruments", - "Labour", - "Migrants" - ] - }, - { - "text": "Adopt measures to improve detention conditions in Polish prisons", - "values": [ - "Detention" - ] - }, - { - "text": "Adopt a comprehensive law against discrimination on all grounds, including legal protection of victims", - "values": [ - "Other" - ] - }, - { - "text": "Not only work to bring perpetrators to justice, but also establish a dialogue among relevant stakeholders to address the root causes of xenophobia", - "values": [ - "Racial discrimination" - ] - }, - { - "text": "Provide cantons with unified standards for housing and living conditions for asylum seekers and refugees", - "values": [ - "Asylum-seekers - refugees", - "Right to housing" - ] - }, - { - "text": "Further develop preventive measures to combat trafficking in human beings, with a special emphasis on children, newborn and pregnant women, as well as strengthen the national referral system and increase the number of centres for victims of trafficking", - "values": [ - "Rights of the Child", - "Trafficking", - "Women's rights" - ] - }, - { - "text": "Take the necessary measures to effectively regulate the acquisition and possession of firearms", - "values": [ - "Public security" - ] - }, - { - "text": "Explicitly prohibit corporal punishment to children in accordance with the recommendations of CAT", - "values": [ - "Rights of the Child", - "Torture and other CID treatment", - "Treaty bodies" - ] - }, - { - "text": "Continue to play a leading role in facilitating global conferences on interreligious and inter-civilization dialogue, democracy, human rights and a culture of peace", - "values": [ - "Freedom of religion and belief" - ] - }, - { - "text": "Request assistance from the specialized agencies, funds and programmes of the United Nations in order to establish a national human rights institution which would strengthen, coordinate and develop the required measures to respect the human rights of all in the country", - "values": [ - "National Human Rights Institution" - ] - }, - { - "text": "Develop measures to prevent child abuse and corporal punishment, to include passing the draft legislation on children's rights", - "values": [ - "Rights of the Child", - "Torture and other CID treatment" - ] - }, - { - "text": "Prohibit all forms of violence against children in all settings, including corporal punishment, and provide for measures to enforce its prohibition", - "values": [ - "Rights of the Child", - "Torture and other CID treatment" - ] - }, - { - "text": "Continue efforts to promote and protect the rights of women, children and juveniles and overcome their vulnerability ", - "values": [ - "Rights of the Child", - "Women's rights" - ] - }, - { - "text": "Continue to consolidate its economic and social programmes for the betterment of its people and the full realisation of their human rights ", - "values": [ - "ESC rights - general" - ] - }, - { - "text": "Ensure a timely and impartial investigation of all complaints and reports against such illegal acts", - "values": [ - "Human rights violations by state agents" - ] - }, - { - "text": "Build legislative and organizational capacities and support the capacity-building processes in public agencies, concerned with asylum and immigration ", - "values": [ - "Asylum-seekers - refugees", - "Migrants" - ] - }, - { - "text": "Increase opportunities for the representation of women in Government functions ", - "values": [ - "Women's rights" - ] - }, - { - "text": "Prosecute and punish traffickers and those who exploit the prostitution of women, and also protect victims of trafficking ", - "values": [ - "Trafficking", - "Women's rights" - ] - }, - { - "text": "Strengthen and ensure the independence of its human rights institutions such as the National Human Rights Commission including through implementation of the 17th Amendment at the earliest.", - "values": [ - "National Human Rights Institution" - ] - }, - { - "text": "Ensure effective national oversight and evaluation of municipal programmes that have been developed to protect the rights enshrined in Article 1 of the Dutch Constitution concerning prohibited grounds for discrimination, in particular ensure that these programmes utilize a broad systematic approach taking into consideration current fiscal realities ", - "values": [ - "Other" - ] - }, - { - "text": "Prohibit in the Constitution all forms of discrimination without exception", - "values": [ - "Other" - ] - }, - { - "text": "Continue its efforts aimed at strengthening the principles of social justice, and enhance social cohesion", - "values": [ - "General" - ] - }, - { - "text": "Strengthen efforts to make effective the Constitutional Reform already under way", - "values": [ - "General" - ] - }, - { - "text": "Strengthen its institutional framework by establishing an independent human rights institution in accordance with the Principles relating to the status of national institutions for the promotion and protection of human rights (Paris Principles)", - "values": [ - "National Human Rights Institution" - ] - }, - { - "text": "Undertake all necessary measures to end impunity for sexual violence by investigating all allegations of sexual violence and to prosecute individuals against whom there is sufficient evidence of such abuses", - "values": [ - "Impunity", - "Rights of the Child", - "Women's rights" - ] - }, - { - "text": "Ensure that the National Human Rights Institution and Ombudsman's Office is sufficiently resourced to effectively discharge its duties and accords with the Paris Principles ", - "values": [ - "National Human Rights Institution" - ] - }, - { - "text": "Prevent and combat all kind of discrimination, in particular those on the grounds of ethnicity and sexual orientation", - "values": [ - "Racial discrimination", - "Sexual Orientation and Gender Identity" - ] - }, - { - "text": "Introduce strict time limits on pre-charge detention of those suspected of terrorism, and provide information about so-called secret flights.", - "values": [ - "Counter-terrorism", - "Detention" - ] - }, - { - "text": "Modify the law on citizenship to grant women the right to transmit the Omani nationality to their children", - "values": [ - "Statelessness and the right to nationality", - "Women's rights" - ] - }, - { - "text": "Intensify efforts to reduce the gap between the sexes in all political, economic and social activities of the country, to bring down the child mortality rate and to better protect the most vulnerable social groups.", - "values": [ - "Rights of the Child", - "Women's rights" - ] - }, - { - "text": "Strengthen efforts to address the prevention of torture and inhuman treatment through the ratification of the Convention against Torture Convention ", - "values": [ - "International instruments", - "Torture and other CID treatment" - ] - }, - { - "text": "Put in practice a national strategy to eliminate discrimination against caste, through the immediate adoption of the Equality Law of 2010 that prohibits such discrimination, in conformity with its international human rights obligations, including CERD's General Recommendation 29 and recommendations of the Special Rapporteur on Contemporary Forms of Racism ", - "values": [ - "Minorities", - "Racial discrimination", - "Special procedures", - "Treaty bodies" - ] - }, - { - "text": "Continue constructive cooperation with UN mechanisms to enhance the system of the protection of human rights in the country ", - "values": [ - "Technical assistance and cooperation" - ] - }, - { - "text": "Continue with measures to protect disadvantaged children and to create conditions for their fully-fledged development.", - "values": [ - "Rights of the Child" - ] - }, - { - "text": "Take effective measures to prevent racial discrimination and violation of the rights of indigenous peoples", - "values": [ - "Indigenous peoples", - "Racial discrimination" - ] - }, - { - "text": "Consistent with the requirements of fair trial provided for in Libyan constitutional instruments and relevant international conventions it has signed and ratified, abolish all special courts and related institutions, including the State Security Court and Prosecution Office, and abrogate all laws, provisions and powers related to the People's Court ", - "values": [ - "Justice" - ] - }, - { - "text": "Continue efforts to ensure that children with disabilities had access to early childhood education and care, early development programmes and inclusive vocational training opportunities in all cantons", - "values": [ - "Disabilities", - "Right to education", - "Rights of the Child" - ] - }, - { - "text": "Cooperate fully with United Nations and other international human rights monitors to help promote accountability", - "values": [ - "Special procedures", - "Technical assistance and cooperation", - "Treaty bodies", - "UPR process" - ] - }, - { - "text": "Support efforts aimed at protecting and enhancing human rights on the African continent, particularly through the African Commission on Human and Peoples' Rights. ", - "values": [ - "General" - ] - }, - { - "text": "Introduce national legislation to ensure that the rights of the child are fully protected, in line with the Convention on the Rights of the Child ", - "values": [ - "International instruments", - "Rights of the Child" - ] - }, - { - "text": "Take further steps to ensure the full implementation of the protection from abuse system law. This would call for a clear definition of abuses and harms under the law, so that it can provide an effective mechanism and guarantee for the protection of victims", - "values": [ - "Justice" - ] - }, - { - "text": "Thoroughly investigate the human rights violations committed between 1964 and 1982 to bring those responsible to justice and ensure full and effective reparation for victims", - "values": [ - "Justice" - ] - }, - { - "text": "Continue to take measures in order to protect the rights of national minorities and their social integration", - "values": [ - "ESC rights - general", - "Minorities" - ] - }, - { - "text": "Amend the national constitution and the Electoral Law and to bring them into line with the European Court of Human Rights ruling on Sejdic and Finci", - "values": [ - "Elections" - ] - }, - { - "text": "Strengthen the rights of vulnerable categories of the population, including the rights of the elderly ", - "values": [ - "Other" - ] - }, - { - "text": "Consider ratification and full alignment of national legislation with the Rome Statute, including by incorporating provisions to cooperate promptly and fully with the International Criminal Court and to investigate and prosecute genocide, crimes against humanity and war crimes effectively before its national courts, and accede to the Agreement on the Privileges and Immunities of the International Criminal Court", - "values": [ - "International instruments", - "Justice" - ] - }, - { - "text": "Sign and ratify the First Optional Protocol to the International Covenant on Civil and Political Rights, Optional Protocol to the International Covenant on Economic, Social and Cultural Rights and the Optional Protocol to Convention against Torture and Other Cruel, Inhuman or Degrading Treatment or Punishment", - "values": [ - "CP rights - general", - "Detention", - "ESC rights - general", - "International instruments", - "Torture and other CID treatment" - ] - }, - { - "text": "Conduct further steps towards the ratification of the Optional Protocol to the Convention on the Rights of the Child on a communications procedure", - "values": [ - "International instruments", - "Rights of the Child" - ] - }, - { - "text": "Bring all constitutional provisions and relevant laws into line with the CPA and international obligations", - "values": [ - "Other" - ] - }, - { - "text": "Step up awareness campaigns through the national plan of action to combat racism and racial discrimination that is currently being drafted", - "values": [ - "Human rights education and training", - "Racial discrimination" - ] - }, - { - "text": "Take all necessary measures to ensure the rights to food, water and sanitation for its people, as well as continued basic medical supplies and health services", - "values": [ - "Right to food", - "Right to health", - "Right to water and sanitation" - ] - }, - { - "text": "Closely monitor the effectiveness of, and review if necessary, the National Programme to Support the Prison System and the Law on Precautionary Measures ", - "values": [ - "Detention" - ] - }, - { - "text": "Issue clear public orders to the security forces to cease arbitrary arrest, detention and torture", - "values": [ - "Detention", - "Human rights violations by state agents", - "Torture and other CID treatment" - ] - }, - { - "text": "Commit to ensuring respect, in all circumstances, of the fundamental rights and dignity of all people in the country ", - "values": [ - "General" - ] - }, - { - "text": "Intensify efforts to promote the principle of transparency in their endeavour to combat corruption", - "values": [ - "Corruption" - ] - }, - { - "text": "Continue its efforts to encourage mass media and journalists\u2019 engagement with human rights promotion", - "values": [ - "Human rights education and training" - ] - }, - { - "text": "Bahrain will consider seriously the possibility of enacting a law on combating racial discrimination.", - "values": [ - "Racial discrimination" - ] - }, - { - "text": "Address the problems arising from the trafficking of children to the neighbouring countries within the context of the National Strategy for Children and Young People.", - "values": [ - "Rights of the Child", - "Trafficking" - ] - }, - { - "text": "Discontinue the use of judicial action against journalists and media outlets, including the filing of civil and criminal libel suits", - "values": [ - "Freedom of the press" - ] - }, - { - "text": "Complete the ratification of the Convention on the Rights of Persons with Disabilities at the earliest convenience, if possible ", - "values": [ - "Disabilities", - "International instruments" - ] - }, - { - "text": "Carry out awareness-raising campaigns on sexual and gender-based violence, as recommended by the UNHCR, and ensure that all the reported cases receive an adequate response", - "values": [ - "Human rights education and training", - "Rights of the Child", - "Women's rights" - ] - }, - { - "text": "Enhance human rights education", - "values": [ - "Human rights education and training" - ] - }, - { - "text": "Cooperate with the United Nations human rights mechanisms and allow visits by special procedures mandate holders", - "values": [ - "Special procedures" - ] - }, - { - "text": "Amend the concerned legislation with a view to abolishing the capital punishment entirely, in line with General Assembly resolutions 62-149 and 63-168 as well as the second Optional Protocol to ICCPR, and transfer the existing death sentences to imprisonment terms ", - "values": [ - "Death penalty", - "International instruments" - ] - }, - { - "text": "Strengthen respect for the rule of law by promoting judicial independence and transparency through the depoliticization of the judiciary and law enforcement authorities, and by strengthening mechanisms to investigate human rights abuses or violations", - "values": [ - "Justice" - ] - }, - { - "text": "Start a national dialogue with the aim of enacting a national IDP policy consistent with the UN Guiding Principles on Internal Displacement", - "values": [ - "Internally displaced persons" - ] - }, - { - "text": "Continue its commitment to establishing a free birth registration system at national level in order to allow children to demand their rights during their life and to access to public services", - "values": [ - "Rights of the Child", - "Statelessness and the right to nationality" - ] - }, - { - "text": "Consider repealing the lèse-majesté law so as to expand the freedom of opinion and expression to include full freedom of expression in relation to the monarchy ", - "values": [ - "Freedom of opinion and expression" - ] - }, - { - "text": "Sign the Optional Protocol to the Convention against Torture", - "values": [ - "Detention", - "International instruments", - "Torture and other CID treatment" - ] - }, - { - "text": "Strengthen the measures to combat violence against women and draw up proper indicators to evaluate progress", - "values": [ - "Women's rights" - ] - }, - { - "text": "Accomplish progressively the human rights goals set forth in Human Rights Council resolution 9-12.", - "values": [ - "General" - ] - }, - { - "text": "Undertake measures to put an end to ethnic and racial profiling and all forms of racial discrimination", - "values": [ - "Minorities", - "Racial discrimination" - ] - }, - { - "text": "Continue its efforts to protect and promote the rights of vulnerable persons ", - "values": [ - "Minorities" - ] - }, - { - "text": "Keep taking the necessary measures to combat continued deforestation in order to ensure the effective enjoyment of economic, social and cultural rights ", - "values": [ - "ESC rights - general", - "Environment" - ] - }, - { - "text": "Increase the efforts to improve the social status of women in society and enhance political and social rights ", - "values": [ - "Women's rights" - ] - }, - { - "text": "Continue efforts to spread the culture of human rights through educational curriculums and the media", - "values": [ - "Human rights education and training" - ] - }, - { - "text": "Consider the ratification of the UNESCO Convention against Discrimination in Education ", - "values": [ - "International instruments", - "Right to education" - ] - }, - { - "text": "Ensure the collection of statistical data on incidents of anti-Semitism, xenophobia and racial discrimination", - "values": [ - "Freedom of religion and belief", - "Racial discrimination" - ] - }, - { - "text": "Maintain and strengthen the moratorium currently in force with a view to abolishing the death penalty.", - "values": [ - "Death penalty" - ] - }, - { - "text": "Further strengthen its efforts in the fight against impunity, particularly in the context of the tragic events in Conakry on 28 September 2009", - "values": [ - "Impunity" - ] - }, - { - "text": "Sign and ratify the CRPD ", - "values": [ - "Disabilities", - "International instruments" - ] - }, - { - "text": "Continue its efforts for proper implementation of the constitutional reforms concerning the protection of children and older persons", - "values": [ - "Rights of the Child" - ] - }, - { - "text": "Effectively implement the legislation aimed at ensuring the realization of the rights of women and children, especially the legislation on combating domestic violence", - "values": [ - "Rights of the Child", - "Women's rights" - ] - }, - { - "text": "Prioritize the finalization and subsequent adoption of a law on gender equality, giving special attention to its adequate implementation and dissemination among State entities and the general population", - "values": [ - "Women's rights" - ] - }, - { - "text": "Address the distinction made between Spanish and foreign nationals to the detriment of the latter group when remanding custody during investigations ", - "values": [ - "Justice", - "Minorities" - ] - }, - { - "text": "Implement the National Programme for 2015-2020 to Eradicate the Worst Forms of Child Labour", - "values": [ - "Labour", - "Rights of the Child" - ] - }, - { - "text": "Bring the 2009 Press and Publications Act in line with its international obligations, and put in place effective enforcement measures ", - "values": [ - "Freedom of the press" - ] - }, - { - "text": "Remunerate participation in internship programmes and accompany them with technical education training through shared programmes with the country's economic and industrial sector", - "values": [ - "Development" - ] - }, - { - "text": "Take further steps to address all kinds of discrimination against women, children, minorities and indigenous peoples.", - "values": [ - "Indigenous peoples", - "Minorities", - "Rights of the Child", - "Women's rights" - ] - }, - { - "text": "Extend a standing invitation to the special procedures mechanisms to visit the country", - "values": [ - "Special procedures" - ] - }, - { - "text": "Make further steps towards the abolishment of the death penalty", - "values": [ - "Death penalty" - ] - }, - { - "text": "In the spirit of a constructive dialogue and with the cooperation of the international community, continue efforts to enhance the quality of its educational and health system with a special focus on combating illiteracy", - "values": [ - "Right to education", - "Right to health" - ] - }, - { - "text": "Allocate more resources and double efforts with the aim to conclude the ongoing legal reforms to harmonize national laws with international human rights standards and obligations", - "values": [ - "International instruments" - ] - }, - { - "text": "Pay particular attention to the protection, release and reintegration of all children associated with armed groups", - "values": [ - "International humanitarian law", - "Rights of the Child" - ] - }, - { - "text": "Adopt international human rights standard in national trials ", - "values": [ - "International instruments", - "Justice" - ] - }, - { - "text": "Step up efforts, in consultation with Maori and Pasifika communities, to address and prevent discrimination against members of the Maori and Pasifika communities in the criminal justice system and, in particular, the high rate of incarceration ", - "values": [ - "Indigenous peoples", - "Justice", - "Racial discrimination" - ] - }, - { - "text": "Take measures to foster an enabling environment for civil society, including by amending the Societies Act to remove the restrictions on the establishment of civil society organizations, eliminate the role of government in civil society organizations, including in appointing State employees to newly established civil society organizations, remove the requirement for Cabinet approval of foreign funding for civil society organizations as well as any other undue restrictions and controls by the Government on them", - "values": [ - "Civil society", - "Freedom of association and peaceful assembly" - ] - }, - { - "text": "Adopt a formal moratorium on the death penalty, and ratify the Second Optional Protocol to the International Covenant on Civil and Political Rights", - "values": [ - "Death penalty", - "International instruments" - ] - }, - { - "text": "With the intention of strengthening the efficiency of the cooperation with the United Nations system and with the view of improving its national policies, Brazil reinforced its commitment to create new tools for the internal monitoring of human rights. This would include a national system of human rights indicators and the elaboration of annual reports on the situation of human rights, taking into account, among other aspects, a follow-up of the UPR exercise.", - "values": [ - "UPR process" - ] - }, - { - "text": "A study will be carried out on the international treaties and instruments to which Convention on the Rights of Persons with Disabilities.", - "values": [ - "Disabilities", - "International instruments" - ] - }, - { - "text": "Consider strengthening the comprehensive policy in the National Strategy to Combat Trafficking in Persons, including preventive measures ", - "values": [ - "Trafficking" - ] - }, - { - "text": "Continue to implement its national laws in accordance with the universally agreed human rights norms and principles ", - "values": [ - "General" - ] - }, - { - "text": "To swiftly adopt and implement the Strategy on Inclusive Diversity in the Republic of Moldova (2016-2020), which was developed with the support of the High Commissioner on National Minorities of the Organization for Security and Cooperation in Europe", - "values": [ - "Minorities" - ] - }, - { - "text": "Abolish the death penalty for all individuals considered as minors under international law", - "values": [ - "Death penalty", - "Rights of the Child" - ] - }, - { - "text": "Continue its efforts for the passing of the National Human Rights Action Plan and afterwards its implementation", - "values": [ - "General" - ] - }, - { - "text": "Increase its endeavors in promotion of equity in economic development, poverty eradication, eliminating regional disparities, and guaranteeing equality of opportunity for all Sri Lanka citizens", - "values": [ - "Development", - "Poverty" - ] - }, - { - "text": "Expand its School Feeding Programmes and use locally sourced food ", - "values": [ - "Right to food" - ] - }, - { - "text": "Continue the policy of national reconciliation in a spirit of accommodation ", - "values": [ - "Justice" - ] - }, - { - "text": "Seek further technical assistance from OHCHR and other relevant agencies in order to promote human rights education and capacity-building, especially for public sector employees as well as for its preparation for reporting under international instruments ", - "values": [ - "Human rights education and training", - "Technical assistance and cooperation", - "Treaty bodies" - ] - }, - { - "text": "Establish a permanent, integrated, national structure for combating trafficking in persons", - "values": [ - "Trafficking" - ] - }, - { - "text": "Ensure the protection of freedom of opinion, and ensure that the press has margin for manoeuvre, as does civil society ", - "values": [ - "Civil society", - "Freedom of opinion and expression", - "Freedom of the press" - ] - }, - { - "text": "Continue to promote human rights education, training and awareness-raising", - "values": [ - "Human rights education and training" - ] - }, - { - "text": "Continue its efforts to promote an inclusive education for children with disabilities in the general school system", - "values": [ - "Disabilities", - "Right to education", - "Rights of the Child" - ] - }, - { - "text": "Continue to prioritize the realization of right to education as a key national policy to increase child enrolment rate and improve the quality of education", - "values": [ - "Right to education", - "Rights of the Child" - ] - }, - { - "text": "Enact legislation that eliminates and prevents all discrimination against any resident, including\nin education ", - "values": [ - "Right to education" - ] - }, - { - "text": "Adopt an action plan consistent with the Durban Declaration and Programme of Action in an effort to eradicate racial discrimination effectively", - "values": [ - "Racial discrimination" - ] - }, - { - "text": "Give priority to penitentiary reform, allocating adequate resources, and provide responses to the lack of food and care and the fact that the laws and regulations on the prison system are out of date, as well as to the insufficient infrastructure, management and training. ", - "values": [ - "Detention" - ] - }, - { - "text": "Take steps for combating impunity, enacting justice and ensuring rule of law in Azerbaijan, particularly to examine the conformity of the act of pardon of cruel murderer Ramil Safarov with the national legislation and international obligations of Azerbaijan as an act that encourages murder on an ethnic base, particularly killing Armenians inside the country and abroad", - "values": [ - "Impunity", - "Justice" - ] - }, - { - "text": "Install a proper reconciliation and transitional justice framework in conformity with international standards and good practice and in line with the recommendations of the National Dialogue Conference and the report of the United Nations High Commissioner on Human Rights, including effective legislation on transitional justice and the appointment of members in the independent commission to investigate allegations of human rights violations committed by Government security forces during the events of 2011 ", - "values": [ - "Human rights violations by state agents", - "Justice" - ] - }, - { - "text": "Continue and deepen efforts to firmly root human rights values and principles in the Government system, including through human rights training to state officials ", - "values": [ - "Human rights education and training" - ] - }, - { - "text": "Introduce effective measures to prevent discriminatory practices linked to the process of granting citizenship and civil status registration ", - "values": [ - "CP rights - general" - ] - }, - { - "text": "Sustain the positive momentum in upgrading its laws and institutions, in particular in the areas of the rights of women and children", - "values": [ - "Rights of the Child", - "Women's rights" - ] - }, - { - "text": "Continue releasing political prisoners and relaunch the joint Government/civil society committee", - "values": [ - "Civil society", - "Detention", - "Freedom of opinion and expression" - ] - }, - { - "text": "Reaffirm its commitment to democracy, human rights and the rule of law immediately and ensure that security forces exercise restraint in the face of peaceful and democratic protests and cease intimidation of the media", - "values": [ - "Freedom of the press", - "Justice" - ] - }, - { - "text": "Reform the penal code to decriminalize private, same-sex sexual activity between consenting adults", - "values": [ - "Sexual Orientation and Gender Identity" - ] - }, - { - "text": "Established proper timelines for the implementation of the recommendations of the Bahrain Independent Commission of Inquiry ", - "values": [ - "Other" - ] - }, - { - "text": "Review existing legislation and enact comprehensive laws to address the trafficking in women, particularly in terms of prevention, prosecution, protection and rehabilitation", - "values": [ - "Trafficking", - "Women's rights" - ] - }, - { - "text": "While promoting and protecting freedom of expression and opinion, pay due attention to commensurate responsibility in protecting the rights of others and respect to others", - "values": [ - "Freedom of opinion and expression" - ] - }, - { - "text": "Significantly step up actions to combat human trafficking in line with the Protocol to Prevent, Suppress and Punish Trafficking in Persons, Especially Women and Children, supplementing the United Nations Convention against Transnational Organized Crime", - "values": [ - "International instruments", - "Rights of the Child", - "Trafficking", - "Women's rights" - ] - }, - { - "text": "Strengthen measures to combat trafficking in persons in legislation and in practice", - "values": [ - "Trafficking" - ] - }, - { - "text": "Continue to intensify strategies to eliminate violence against women, ensure that women enjoy a legal capacity identical to that of men, and remedy the gender gap faced by women in employment ", - "values": [ - "Women's rights" - ] - }, - { - "text": "Take appropriate measures to address the disparities in access to safe drinking water and sanitation between the rural and urban areas, paying particular attention to persons belonging to vulnerable and marginalized groups ", - "values": [ - "Right to water and sanitation" - ] - }, - { - "text": "Adopt a law banning incitement to religious and racial hatred.", - "values": [ - "Freedom of religion and belief", - "Racial discrimination" - ] - }, - { - "text": "Share its experience on achievements in areas such as education and health care ", - "values": [ - "Right to education", - "Right to health" - ] - }, - { - "text": "Take all necessary measures to promote equality in education in favour of all members of minority groups, especially Roma children ", - "values": [ - "Minorities", - "Right to education", - "Rights of the Child" - ] - }, - { - "text": "Consider ratifying ICERD, CRPD, CAT, the Optional Protocols to ICCPR OP-2, to CAT and CRPD, the Rome Statute, the Palermo Protocol and the Convention for the Prevention and Punishment of the Crime of Genocide", - "values": [ - "International instruments" - ] - }, - { - "text": "Consider allocating necessary resources to support programmes which promote and protect the rights of persons with disabilities", - "values": [ - "Disabilities" - ] - }, - { - "text": "Continue its efforts at the international level towards the prevention of crimes against humanity", - "values": [ - "Justice" - ] - }, - { - "text": "Develop a comprehensive poverty reduction and social inclusion strategy, which would integrate economic, social and cultural rights ", - "values": [ - "ESC rights - general", - "Poverty" - ] - }, - { - "text": "Take effective steps to address racism and xenophobia and incorporate the provisions of the International Convention on the Elimination of all Forms of Racial Discrimination into its domestic legislation, to raise awareness and promote tolerance in society and to ensure that violent acts, discrimination and hate speech are systemically investigated and the alleged perpetrators prosecuted", - "values": [ - "International instruments", - "Racial discrimination" - ] - }, - { - "text": "Continue to promote and protect rights of children", - "values": [ - "Rights of the Child" - ] - }, - { - "text": "As a step to advance the situation of women, abolish the principle of guardianship over women", - "values": [ - "Women's rights" - ] - }, - { - "text": "Improve education, training and supervision of prison staff ", - "values": [ - "Detention" - ] - }, - { - "text": "Establish a permanent and independent human rights institution compliant with Paris Principles", - "values": [ - "National Human Rights Institution" - ] - }, - { - "text": "Abolish death penalty by adopting a law commuting all death sentences that have been pronounced.", - "values": [ - "Death penalty" - ] - }, - { - "text": "Review and align the laws of Zimbabwe to the 2013 Constitution, including in relation to section 61 on freedom of expression and freedom of the media, and ensure their implementation", - "values": [ - "Freedom of opinion and expression", - "Freedom of the press" - ] - }, - { - "text": "Ensure that human rights defenders can peacefully exercise their right to freedom of expression and freedom of assembly, in conformity with the dispositions of the International Covenant of Civil and Political Rights and that it decriminalizes activities of individuals on behalf of non-registered organizations by abolishing article 193-1 of the Criminal Code ", - "values": [ - "Civil society", - "Freedom of association and peaceful assembly", - "Freedom of opinion and expression", - "Human rights defenders", - "International instruments" - ] - }, - { - "text": "Criminalize gender-based violence in all its forms, including the psychological ones", - "values": [ - "Women's rights" - ] - }, - { - "text": "Strengthen the system of independent monitoring in all detention facilities in accordance with the Optional Protocol to CAT", - "values": [ - "Detention", - "International instruments", - "Torture and other CID treatment" - ] - }, - { - "text": "Strengthen cooperation with the international community and international organizations, including the United Nation's Children's Fund, the United Nations Educational, Scientific and Cultural Organization and OHCHR, with a view to building capacity and securing technical assistance in crucial areas such as poverty eradication, justice administration, education and gender equality", - "values": [ - "Justice", - "Poverty", - "Right to education", - "Technical assistance and cooperation", - "Women's rights" - ] - }, - { - "text": "Ratify the OP-CRC-AC ", - "values": [ - "International humanitarian law", - "International instruments", - "Rights of the Child" - ] - }, - { - "text": "Introduce legislative reforms to expressly prohibit corporal punishment against children in all settings", - "values": [ - "Rights of the Child", - "Torture and other CID treatment" - ] - }, - { - "text": "Reform the penitentiary system to reduce the level of overcrowding and to improve the living conditions of persons deprived of their liberty ", - "values": [ - "Detention" - ] - }, - { - "text": "Authorize independent and privately-run newspapers and magazines.", - "values": [ - "Freedom of the press" - ] - }, - { - "text": "Take into consideration the recommendations from the Office of the Ombudsman, as well as provide it with enough resources to operate", - "values": [ - "National Human Rights Institution" - ] - }, - { - "text": "Finalize and enact the new media law with the meaningful involvement of all stakeholders, providing for a truly independent regulatory body", - "values": [ - "CP rights - general", - "Freedom of the press" - ] - }, - { - "text": "Incorporate the results of the UPR into its current National Action Plan on Human Rights, taking into account the proposals of the civil society and present a mid-term evaluation report to the Council on the implementation of the recommendations of this UPR", - "values": [ - "Civil society", - "UPR process" - ] - }, - { - "text": "Strengthen the implementation of measures in order to achieve the prohibition of female genital mutilation", - "values": [ - "Rights of the Child", - "Torture and other CID treatment", - "Women's rights" - ] - }, - { - "text": "Continue to closely consult with civil society in implementing the recommendations made during the UPR", - "values": [ - "Civil society", - "UPR process" - ] - }, - { - "text": "Ensure that all decisions from the judiciary, regarding those presumed responsible for serious human rights violations during and after the conflict, are fully respected by all concerned institutional actors, particularly by the army and the police forces ", - "values": [ - "Justice" - ] - }, - { - "text": "Ensure consultation processes which allow a public debate and interaction with the independent civil society, with sufficient time during the drafting of new laws and public policies", - "values": [ - "Civil society" - ] - }, - { - "text": "Continue to strengthen, through concrete steps, national unity, tolerance and the peaceful coexistence of representatives of various nationalities and religious groups", - "values": [ - "Minorities" - ] - }, - { - "text": "Encourage the participation of indigenous peoples in decisions that affect them through the enforcement of the regulations on prior consultation adopted in November 2013 ", - "values": [ - "Indigenous peoples" - ] - }, - { - "text": "Consider accession to CRPD ", - "values": [ - "Disabilities", - "International instruments" - ] - }, - { - "text": "Develop a national strategic action plan for the prevention of all forms of violence against women as noted by CEDAW ", - "values": [ - "International instruments", - "Women's rights" - ] - }, - { - "text": "Stop incitement of hatred towards Armenia and Armenians at political and public levels, as well as in mass media", - "values": [ - "Minorities", - "Racial discrimination" - ] - }, - { - "text": "Adopt legislation prohibiting the corporal punishment of children within the family ", - "values": [ - "Rights of the Child", - "Torture and other CID treatment" - ] - }, - { - "text": "Provide intensive training to law enforcement officials to ensure that, in the performance of their duties, they respect and protect human dignity and maintain and uphold the human rights of all persons without distinction as to race, colour or national or ethnic origin ", - "values": [ - "Human rights education and training" - ] - }, - { - "text": "Ratify the remaining core human rights treaties, in particular the International Covenant on Economic, Social and Cultural Rights, the Convention against Torture and Other Cruel, Inhuman or Degrading Treatment or Punishment and the International Convention on the Elimination of All Forms of Racial Discrimination, as well as the Convention on the Prevention and Punishment of the Crime of Genocide ", - "values": [ - "ESC rights - general", - "International instruments", - "Justice", - "Racial discrimination", - "Torture and other CID treatment" - ] - }, - { - "text": "Continue efforts to implement the Second National Comprehensive Action Plan to fight the worst forms of child labour, exploitation and trafficking of children for the period 2012-2015", - "values": [ - "Labour", - "Rights of the Child", - "Trafficking" - ] - }, - { - "text": "Continue its efforts to provide gender equality and promote women\u2019s representation at the decision-making level", - "values": [ - "Women's rights" - ] - }, - { - "text": "Increase efforts to seek assistance in establishing a centralized data registry, especially data on violence against women and children", - "values": [ - "Rights of the Child", - "Women's rights" - ] - }, - { - "text": "Ratify ICESCR, CEDAW, the Convention on the Rights of the Child, the Convention on the Rights of Persons with Disabilities and other core human rights treaties as soon as possible", - "values": [ - "Disabilities", - "ESC rights - general", - "International instruments", - "Rights of the Child", - "Women's rights" - ] - }, - { - "text": "Maintain and strengthen its economic, political and social model chosen by its people in a sovereign manner and continue advancing in its efforts to increasingly build a just and more participative society ", - "values": [ - "Other" - ] - }, - { - "text": "Prosecute persons implicated in such unlawful killings, including government officials and their affiliates", - "values": [ - "Extrajudicial executions", - "Human rights violations by state agents" - ] - }, - { - "text": "Establish an independent electoral commission with a mandate to determine constituency boundaries and monitor election fundraising and campaigning", - "values": [ - "Elections" - ] - }, - { - "text": "Ensure to LGBTI persons the full enjoyment and equal treatment of their human rights by derogating norms that criminalize and stigmatize them", - "values": [ - "Sexual Orientation and Gender Identity" - ] - }, - { - "text": "Consider investing further efforts in developing a foster care system for children without parental care and for children with disabilities", - "values": [ - "Disabilities", - "Rights of the Child" - ] - }, - { - "text": "Combat impunity for crimes committed against sexual minorities, ensure that their right to assembly and association is upheld and ensure the right to equal treatment in accessing health services and justice", - "values": [ - "Freedom of association and peaceful assembly", - "Impunity", - "Justice", - "Right to health", - "Sexual Orientation and Gender Identity" - ] - }, - { - "text": "Accelerate efforts to achieve the remaining millennium development goal targets, including goal 2 on universal primary education and goal 4 on reducing infant and under-5 mortality rates", - "values": [ - "Development", - "Right to education", - "Rights of the Child" - ] - }, - { - "text": "Continue the efforts to protect and promote the rights of women, in conformity with CEDAW, and implement the recommendations of the National Dialogue Conference (in particular, with regard to early marriages and participation of women in political life) ", - "values": [ - "International instruments", - "Women's rights" - ] - }, - { - "text": "Systematically collect and analyse data on the prevalence of violence perpetrated against persons, because of their real or perceived sexual orientation or gender identity", - "values": [ - "Sexual Orientation and Gender Identity" - ] - }, - { - "text": "Take measures to ensure access to humanitarian assistance for vulnerable populations and take further measures to protect civilians, including human rights defenders and humanitarian workers.", - "values": [ - "Human rights defenders", - "International humanitarian law" - ] - }, - { - "text": "Review counter-terrorism measures that target individuals and groups based on race, ethnicity and religion, including Muslims and Muslim communities, and ensure that such measures do not associate or contribute to associating terrorism with any religion, race, culture, ethnic group or nationality", - "values": [ - "Counter-terrorism", - "Freedom of religion and belief", - "Racial discrimination" - ] - }, - { - "text": "Undertake a prompt and independent investigation into the extrajudicial killings related to the fight against illegal drugs and ensure accountability for perpetrators, as well as justice, remedy and reparations for victims and their families", - "values": [ - "Extrajudicial executions", - "Justice" - ] - }, - { - "text": "Continue its efforts to eliminate violence against women ", - "values": [ - "Women's rights" - ] - }, - { - "text": "Take steps to investigate all reports of gender-based violence, including accusations of sorcery, that perpetrators are brought to justice in fair trials, and that victims receive reparation and are given access to healthcare and other relevant services", - "values": [ - "Right to health", - "Rights of the Child", - "Women's rights" - ] - }, - { - "text": "Continue its legal measures on ratification of the Convention on the Rights of Persons with Disabilities which had been signed by the Government in early 2009 ", - "values": [ - "Disabilities", - "International instruments" - ] - }, - { - "text": "Take regular measures to prevent hate speech, including prompt legal action against those who incite discrimination or violence motivated by racial, ethnic or religious reasons ", - "values": [ - "Freedom of religion and belief", - "Racial discrimination" - ] - }, - { - "text": "Conduct awareness-raising programmes on gender identity and sexual orientation for civil servants, including the security forces and bodies ", - "values": [ - "Human rights education and training", - "Sexual Orientation and Gender Identity" - ] - }, - { - "text": "Comply fully with article 25 of the ICCPR, relating to the right to political participation ", - "values": [ - "CP rights - general" - ] - }, - { - "text": "Continue its efforts in combating extreme poverty, malnutrition and maternal and child mortality", - "values": [ - "Poverty", - "Right to food", - "Right to health", - "Rights of the Child", - "Women's rights" - ] - }, - { - "text": "Strengthen cooperation with human rights mechanisms, particularly treaty bodies", - "values": [ - "Special procedures", - "Treaty bodies" - ] - }, - { - "text": "Adopt legal and administrative measures to eliminate all forms of corporal punishment of children ", - "values": [ - "Rights of the Child", - "Torture and other CID treatment" - ] - }, - { - "text": "Complete the procedures for the ratification of the Second Optional Protocol to the International Covenant on Civil and Political Rights", - "values": [ - "Death penalty", - "International instruments" - ] - }, - { - "text": "Continue to pursue development and anti-poverty policies, step up international cooperation, and intensify its efforts to alleviate poverty ", - "values": [ - "Development", - "Poverty" - ] - }, - { - "text": "Extend invitations to the thematic special procedures.", - "values": [ - "Special procedures" - ] - }, - { - "text": "Take further actions to ensure freedom of expression on the Internet, including opinions which are different from the positions of the Government", - "values": [ - "Freedom of opinion and expression" - ] - }, - { - "text": "Ensure a safe and enabling environment for all human rights defenders ", - "values": [ - "Human rights defenders" - ] - }, - { - "text": "Redouble its efforts in the field of violence against women and domestic violence through the different measures provided in the legislation aiming at the eradication of violence against women and domestic violence", - "values": [ - "Rights of the Child", - "Women's rights" - ] - }, - { - "text": "Immediately end violations of international human rights law, including violent reprisals against peaceful protestors, political activists and their families", - "values": [ - "Freedom of association and peaceful assembly", - "International instruments" - ] - }, - { - "text": "Release individuals imprisoned or detained solely on the basis of their conscientious objection to military service and to consider expunging the corresponding charges from their criminal records", - "values": [ - "Freedom of religion and belief" - ] - }, - { - "text": "Continue fighting racial hatred and racially motivated violence against Roma by effectively and promptly investigating and addressing all crimes against them", - "values": [ - "Minorities", - "Racial discrimination" - ] - }, - { - "text": "Abolish the guardianship system which severely limits the rights of women to act as autonomous and equal members of Saudi society", - "values": [ - "Women's rights" - ] - }, - { - "text": "Maintain the peaceful atmosphere that was created by the Comprehensive Peace Agreement throughout the six years of the transitional period, by taking measures to reduce tension and all parties should refrain from taking any unilateral steps that would undermine the purpose of the Agreement", - "values": [ - "Other" - ] - }, - { - "text": "Thoroughly investigate the threats against human rights defenders and civil society organizations, bring to justice those responsible and guarantee reparations to the victims, especially those working for women's rights", - "values": [ - "Civil society", - "Human rights defenders", - "Women's rights" - ] - }, - { - "text": "Establish the University of Education over the period 2015-2020", - "values": [ - "Right to education" - ] - }, - { - "text": "Ensure that all persons belonging to disadvantaged groups and marginalized groups have access to basic health care", - "values": [ - "Right to health" - ] - }, - { - "text": "Decriminalise press offences ", - "values": [ - "Freedom of the press" - ] - }, - { - "text": "Redouble its efforts to ensure the protection of the rights of women and children", - "values": [ - "Rights of the Child", - "Women's rights" - ] - }, - { - "text": "Allocate the necessary human, technical and financial resources to the police services, at both local and national levels, so that they can address all complaints of violence against women", - "values": [ - "Women's rights" - ] - }, - { - "text": "Ensure that the treatment of detainees duly follows international standards and that irregularities to those standards are properly investigated", - "values": [ - "Detention" - ] - }, - { - "text": "Continue strengthening policies to integrate the Roma population and ensure they have access to basic health and social services, with particular emphasis on the rights to safe drinking water and sanitation, as well as education, housing and employment", - "values": [ - "Labour", - "Minorities", - "Right to education", - "Right to housing", - "Right to water and sanitation" - ] - }, - { - "text": "Increase efforts to effectively meet the challenges related to the protection of the environment and the sustainable exploitation of natural resources, and to cooperate in that regard with the relevant international organizations", - "values": [ - "Environment" - ] - }, - { - "text": "Work with all sectors including the education sector, to ensure the National Human Rights Institute effectively supports the country's commitment to human rights", - "values": [ - "National Human Rights Institution" - ] - }, - { - "text": "Analyse the possibility of ratifying the main human rights instruments, in particular the International Covenant on Economic, Social and Cultural Rights, the International Covenant on Civil and Political Rights, the International Convention on the Elimination of All Forms of Racial Discrimination, the Convention against Torture and Other Cruel, Inhuman or Degrading Treatment or Punishment, and the International Convention for the Protection of All Persons from Enforced Disappearance", - "values": [ - "CP rights - general", - "ESC rights - general", - "Enforced disappearances", - "International instruments", - "Racial discrimination", - "Torture and other CID treatment" - ] - }, - { - "text": "Continue to achieve its objective of establishing respect for law in society ", - "values": [ - "Justice" - ] - }, - { - "text": "Introduce legislation to criminalize the practice of female genital mutilation", - "values": [ - "Rights of the Child", - "Torture and other CID treatment", - "Women's rights" - ] - }, - { - "text": "Take steps to increase women's participation in elections to the Shura Council, both as voters and candidates, and to widen the participation of all citizens in the decision-making processes", - "values": [ - "Elections" - ] - }, - { - "text": "Continue to adopt measures in order to reduce effectively maternal mortality rate and child and infant mortality rates ", - "values": [ - "Right to health", - "Women's rights" - ] - }, - { - "text": "Put in place and enforce measures to protect human rights defenders", - "values": [ - "Human rights defenders" - ] - }, - { - "text": "Intensify its efforts in addressing the welfare of expected levels ", - "values": [ - "Other" - ] - }, - { - "text": "Consider ratifying the fundamental conventions of the International Labour Organization.", - "values": [ - "International instruments", - "Labour" - ] - }, - { - "text": "Reinstate a moratorium on the use of the death penalty.", - "values": [ - "Death penalty" - ] - }, - { - "text": "Amend practices and deficiencies in national legislation and accede to OP-CAT to prevent and punish cases of violations in this regard", - "values": [ - "Detention", - "International instruments", - "Torture and other CID treatment" - ] - }, - { - "text": "Increase efforts to ensure that evictions occur in compliance with the land law and that greater attention is paid to ensuring that communities relocated to resettlement sites have access to appropriate facilities, especially in urban areas ", - "values": [ - "Right to land" - ] - }, - { - "text": "Amend the press provisions of the Penal Code to state explicitly that journalists should not be imprisoned or otherwise criminally punished solely for exercising their right to free expression", - "values": [ - "Freedom of opinion and expression", - "Freedom of the press" - ] - }, - { - "text": "Continue to seek assistance from the international community, with the support of the United Nations country team, in strengthening its human rights policies and implementing the universal periodic review recommendations, particularly in building capacity for its human rights officers ", - "values": [ - "Technical assistance and cooperation", - "UPR process" - ] - }, - { - "text": "Continue implementing the Plan for the Integration of the Roma, through which the Ministry of Social Security provides labour market insertion services for persons belonging to this vulnerable group", - "values": [ - "Minorities" - ] - }, - { - "text": "Develop a mechanism to ensure the prompt return of children who have been wrongly removed from or prevented from returning to their habitual place of residence.", - "values": [ - "Rights of the Child" - ] - }, - { - "text": "Improve the response rate of the UK to the communications from the Human Rights Council mechanisms ", - "values": [ - "Special procedures" - ] - }, - { - "text": "Take further measures to ensure equality between men and women, including through facilitation of women's participation in public affairs and the labour market ", - "values": [ - "Women's rights" - ] - }, - { - "text": "Give further impetus to the creation of a national human rights institution in accordance with the Paris Principles ", - "values": [ - "National Human Rights Institution" - ] - }, - { - "text": "Take all steps necessary to ensure that the right to seek asylum is guaranteed for asylum seekers coming to Hungary and that the principle of non-refoulement is respected", - "values": [ - "Asylum-seekers - refugees" - ] - }, - { - "text": "Develop and implement a specific education policy which would cover all children with special needs", - "values": [ - "Right to education", - "Rights of the Child" - ] - }, - { - "text": "Abolish the death penalty for all crimes, promote an official moratorium on executions, and commute the death sentences for imprisonment", - "values": [ - "Death penalty" - ] - }, - { - "text": "Combat discrimination based on sexual orientation and gender identity by decriminalizing "sodomy" and "indecency between males," end quote, which currently constitute crimes punishable by prison sentencing for up to seven years", - "values": [ - "Sexual Orientation and Gender Identity" - ] - }, - { - "text": "Ratify the ILO Convention No. 138 on the minimum age for admission to employment", - "values": [ - "International instruments", - "Labour", - "Rights of the Child" - ] - }, - { - "text": "Redouble its efforts in guaranteeing the right to work and the equality of all workers in the public sector, without discrimination", - "values": [ - "Labour" - ] - }, - { - "text": "Introduce a quota system in the employment sector for persons with disabilities", - "values": [ - "Disabilities", - "Labour" - ] - }, - { - "text": "Investigate attacks and violence against religious minorities and sects and bring those responsible to justice", - "values": [ - "Freedom of religion and belief", - "Minorities" - ] - }, - { - "text": "Implement food security policies to combat the negative effects of poverty ", - "values": [ - "Poverty", - "Right to food" - ] - }, - { - "text": "Continue to develop, implement, monitor and strengthen policies to reduce rates of obesity and the incidence of non-communicable diseases", - "values": [ - "Right to health" - ] - }, - { - "text": "Increase resources to address gender-based violence", - "values": [ - "Women's rights" - ] - }, - { - "text": "Continue to implement protection programmes for girls and boys, in particular to eliminate child labour", - "values": [ - "Labour", - "Rights of the Child" - ] - }, - { - "text": "Ensure that torture and ill- treatment by public officials would not be tolerated and that all alleged perpetrators of the acts of torture would be investigated", - "values": [ - "Human rights violations by state agents", - "Torture and other CID treatment" - ] - }, - { - "text": "Execute the European Court of Human Rights judgments passed in 2008 about the applications of three minority associations, outlawed on grounds that they had the word "Turkish" in their names ", - "values": [ - "Freedom of association and peaceful assembly", - "Minorities" - ] - }, - { - "text": "Continue the efforts to achieve accession to the main human rights international instruments and their consistent incorporation into domestic legislation ", - "values": [ - "International instruments" - ] - }, - { - "text": "Take steps to ensure that its legislative and policy frameworks provide effective protections against all forms of violence faced by women, and that such protections are extended to all women, including internally displaced and refugee women, who are among the most vulnerable", - "values": [ - "Women's rights" - ] - }, - { - "text": "Ensure that appropriate mechanisms for addressing grievances are put in place well ahead of the upcoming elections ", - "values": [ - "Elections" - ] - }, - { - "text": "Integrate human rights in the school curricula", - "values": [ - "Human rights education and training" - ] - }, - { - "text": "Ratify the Optional Protocol to the Convention on the Rights of the Child on the sale of children, child prostitution and child pornography, as recommended by the Committee on the Rights of the Child in 2013", - "values": [ - "International instruments", - "Rights of the Child", - "Trafficking", - "Treaty bodies" - ] - }, - { - "text": "Continue the commitments made in terms of access to the voluntary termination of pregnancy in order to ensure full respect for sexual and reproductive rights", - "values": [ - "Right to health", - "Women's rights" - ] - }, - { - "text": "Reinforce its efforts to prevent and combat racism, racial discrimination, xenophobia and other related intolerance in particular against foreigners ", - "values": [ - "Racial discrimination" - ] - }, - { - "text": "Cooperate with OHCHR, allow access to an OHCHR mission to Eritrea, as requested by the High Commissioner for Human Rights, and accept the visit requests made by five special procedures mandate holders ", - "values": [ - "Special procedures", - "Technical assistance and cooperation" - ] - }, - { - "text": "Continue to strengthen national and regional efforts to promote and protect human rights defenders", - "values": [ - "Human rights defenders" - ] - }, - { - "text": "Continue to expand and strengthen the existing efforts in human rights education ", - "values": [ - "Human rights education and training" - ] - }, - { - "text": "Accede to the Convention on the Protection of the Rights of All Migrant Workers and Members of their Families", - "values": [ - "International instruments", - "Labour", - "Migrants" - ] - }, - { - "text": "Adopt more appropriate measures to improve the integration of migrants in society and eradicate poverty among vulnerable groups, especially children", - "values": [ - "Migrants", - "Rights of the Child" - ] - }, - { - "text": "Ensure that adequate information on family planning and the regulation of fertility is publicly available ", - "values": [ - "Women's rights" - ] - }, - { - "text": "Develop awareness-raising campaigns and ensure that information is readily available to victims of female genital mutilation", - "values": [ - "Human rights education and training", - "Rights of the Child", - "Torture and other CID treatment", - "Women's rights" - ] - }, - { - "text": "Continue efforts to eradicate gender-based violence", - "values": [ - "Women's rights" - ] - }, - { - "text": "Continue to work constructively to implement the laws, decrees and resolutions that have been approved to combat violence against women and girls and to guarantee access to justice for victims of sexual violence ", - "values": [ - "Rights of the Child", - "Women's rights" - ] - }, - { - "text": "Intensify the policy of social reintegration of abandoned children and school dropouts", - "values": [ - "Right to education", - "Rights of the Child" - ] - }, - { - "text": "Continue strengthening mechanisms to combat racism, racial discrimination, xenophobia and other forms of related intolerance", - "values": [ - "Racial discrimination" - ] - }, - { - "text": "Replace the current sponsorship system with domestic worker residency permits overseen by the Government ", - "values": [ - "Labour" - ] - }, - { - "text": "Reinforce efforts aimed at the setting up of regional assemblies to take services closer to the rural communities", - "values": [ - "Other" - ] - }, - { - "text": "Take steps to adopt a legal framework to protect children from trafficking and to define trafficking as a criminal offence under domestic law. ", - "values": [ - "Rights of the Child", - "Trafficking" - ] - }, - { - "text": "Fully cooperate with the International Criminal Court to seek accountability against persons bearing the greatest responsibility for crimes, particularly crimes against humanity, committed during the 2007 general elections in Kenya ", - "values": [ - "Elections", - "Justice" - ] - }, - { - "text": "Enhance efforts to combat discrimination against children, especially from the indigenous population and Afro-Peruvians as well as the disabled in the field of education and health", - "values": [ - "Disabilities", - "Indigenous peoples", - "Minorities", - "Racial discrimination", - "Right to education", - "Right to health" - ] - }, - { - "text": "Ensure the protection of the rights of individuals - including members of civil society organizations, the media and the political opposition - to assemble and speak free from intimidation and harassment", - "values": [ - "Civil society", - "Freedom of association and peaceful assembly", - "Freedom of opinion and expression", - "Freedom of the press" - ] - }, - { - "text": "Incorporate explicit prohibition of physical punishment into national legislation and monitor its implementation strictly, particularly in the case of police dealing with minors.", - "values": [ - "Rights of the Child" - ] - }, - { - "text": "Implement a national strategy which includes the review and the drafting of laws, and campaigns to raise awareness about discrimination at all levels of society, including traditional leaders, aimed at modifying or eliminating, in accordance with the Convention on the Elimination of All Forms of Discrimination against Women (CEDAW), harmful stereotypes and practices which discriminate women ", - "values": [ - "International instruments", - "Torture and other CID treatment", - "Women's rights" - ] - }, - { - "text": "Take further effective measures to ensure access to education for all Aboriginal girls and women as an essential part of the full realization of their human rights ", - "values": [ - "Indigenous peoples", - "Right to education", - "Rights of the Child", - "Women's rights" - ] - }, - { - "text": "Allow a visit by the Working Group on Arbitrary Detention, granting it full access to all detention centres", - "values": [ - "Detention", - "Special procedures" - ] - }, - { - "text": "Remove or define its blanket reservation to the CRC and to declare an immediate moratorium on juvenile executions, with the aim of abolishing the death penalty for offences committed by minors", - "values": [ - "Death penalty", - "International instruments", - "Rights of the Child" - ] - }, - { - "text": "Consider ratification of the Optional Protocol to the Convention on the Rights of the Child on a communications procedure ", - "values": [ - "International instruments", - "Rights of the Child" - ] - }, - { - "text": "Allocate more resources to improve the capacity of the various constitutional commissions and oversight offices tasked with the promotion and protection of human rights in order to strengthen the implementation of their mandates", - "values": [ - "General" - ] - }, - { - "text": "Implement a plan to combat violence against women and to guarantee equal rights, abrogating the legal provisions that prohibit women from borrowing, signing contracts, opening bank accounts or applying for a passport without their husband's authorization ", - "values": [ - "Statelessness and the right to nationality", - "Women's rights" - ] - }, - { - "text": "Canada commits to working on identifying gaps in available data in order to better assess and report on its international human rights obligations.", - "values": [ - "International instruments" - ] - }, - { - "text": "Introduce legislation to repeal the blasphemy law of 1965", - "values": [ - "Freedom of opinion and expression" - ] - }, - { - "text": "Ratify the Convention against Torture and Other Cruel, Inhuman or Degrading Treatment of Punishment and its Optional Protocol", - "values": [ - "Detention", - "International instruments", - "Torture and other CID treatment" - ] - }, - { - "text": "Establish a moratorium on executions with a view to abolishing the death penalty ", - "values": [ - "Death penalty" - ] - }, - { - "text": "Consider the adoption of a specific law on violence against women, including domestic violence ", - "values": [ - "Rights of the Child", - "Women's rights" - ] - }, - { - "text": "Consider establishing an interministerial committee responsible for the implementation of its international human rights obligations", - "values": [ - "International instruments" - ] - }, - { - "text": "Deny paramilitary organizations sites by Swedish services providers", - "values": [ - "Counter-terrorism" - ] - }, - { - "text": "Take additional measures to eliminate inequalities between women and men", - "values": [ - "Women's rights" - ] - }, - { - "text": "Ensure appropriate training is provided to officials, and that law enforcement authorities carry out thorough and prompt investigations regarding attacks on LGBTI persons", - "values": [ - "Sexual Orientation and Gender Identity" - ] - }, - { - "text": "Continue taking steps to ensure that births of all children are registered ", - "values": [ - "Rights of the Child" - ] - }, - { - "text": "Enhance cooperation and consultation with civil society and work towards the promotion of civil society.", - "values": [ - "Civil society" - ] - }, - { - "text": "Continue advancing the promotion of gender equality so that women have a greater representation in politics and that quotas are respected in regional and municipal elections", - "values": [ - "Elections", - "Women's rights" - ] - }, - { - "text": "That amendments to the Labour Law and the Social Security Law granting Palestinian refugees the right to work be made operational as soon as possible", - "values": [ - "Asylum-seekers - refugees", - "Labour" - ] - }, - { - "text": "Establish labour courts in an effort to guarantee respect for worker rights and to provide legal and efficient solutions to labour disputes, and revise the law on trade unions ", - "values": [ - "Labour" - ] - }, - { - "text": "Continue to ensure transparency and accountability in all procedures related to its treatment of refugees and asylum seekers", - "values": [ - "Asylum-seekers - refugees" - ] - }, - { - "text": "Ratify promptly the Second Optional Protocol to the International Covenant on Civil and Political Rights, and the Rome Statute", - "values": [ - "Death penalty", - "International instruments", - "Justice" - ] - }, - { - "text": "Monaco reiterated its commitment to reach its objectives regarding public aid devoted to the most vulnerable persons in the poorest countries.", - "values": [ - "Development" - ] - }, - { - "text": "Consider allocating adequate resources and staff to meet the challenge posed by the increasing number of asylum applications as part of its efforts to improve the process of consideration and reception of migrants and asylum seekers", - "values": [ - "Asylum-seekers - refugees", - "Migrants" - ] - }, - { - "text": "Repeal section 250 of the Criminal Code which criminalizes sexual conduct between consenting adults of the same sex", - "values": [ - "Sexual Orientation and Gender Identity" - ] - }, - { - "text": "Ensure that the right of victims of torture or other cruel, inhuman or degrading treatment to obtain reparation is respected ", - "values": [ - "Torture and other CID treatment" - ] - }, - { - "text": "Ensure that its National Strategy for Roma Integration is implemented in full to enable the Roma community to better integrate into society, giving them greater access to public amenities, healthcare and public housing", - "values": [ - "Minorities" - ] - }, - { - "text": "Set up an independent inquiry into the justification for calling a State of Emergency which would inter alia investigate the actions of the security services during the State of Emergency ", - "values": [ - "Justice" - ] - }, - { - "text": "Continue to narrow wage disparities between men and women in line with the country\u2019s Equal Pay Programme for 2016-2019", - "values": [ - "Women's rights" - ] - }, - { - "text": "Adopt a national plan for poverty reduction, supported by a follow-up mechanism", - "values": [ - "Poverty" - ] - }, - { - "text": "Adopt an awareness-raising programme at the local level to ensure much wider knowledge of CEDAW, and take steps to ensure the cessation of practices, including those under the guardianship system, which are inconsistent with the Convention ", - "values": [ - "Human rights education and training", - "International instruments", - "Women's rights" - ] - }, - { - "text": "Raise the level of public awareness in relation to child sex tourism, as recommended by the Committee on the Rights of the Child", - "values": [ - "Rights of the Child", - "Treaty bodies" - ] - }, - { - "text": "Adopt the new Criminal Code so as to finally exclude the death penalty from its legislation", - "values": [ - "Death penalty" - ] - }, - { - "text": "Take steps to promote institutions and human rights bodies and to search for the support of the international community.", - "values": [ - "National Human Rights Institution", - "Technical assistance and cooperation" - ] - }, - { - "text": "Strengthen the independence of the judiciary", - "values": [ - "Justice" - ] - }, - { - "text": "Take all necessary measures aimed at the early ratification of the Optional Protocol on the involvement of children in armed conflict", - "values": [ - "International humanitarian law", - "International instruments", - "Rights of the Child" - ] - }, - { - "text": "Continue to seek capacity-building assistance, guidance, and technical support from the United Nations and regional partners to fulfil its human rights obligations", - "values": [ - "Technical assistance and cooperation" - ] - }, - { - "text": "Enhance the prevention, investigation and prosecution of violent crimes against individuals belonging to vulnerable groups", - "values": [ - "Other" - ] - }, - { - "text": "Protect those communities that have been forced to be internally displaced, and assist them in returning to their place of origin or another place selected voluntarily", - "values": [ - "Internally displaced persons" - ] - }, - { - "text": "Further implement actions to fight against trafficking in human beings", - "values": [ - "Trafficking" - ] - }, - { - "text": "Continue to strengthen its national institutions to combat human trafficking ", - "values": [ - "Trafficking" - ] - }, - { - "text": "Ensure the independence and financial autonomy of the National Human Rights Commission", - "values": [ - "National Human Rights Institution" - ] - }, - { - "text": "Continue efforts to eliminate discrimination against women to allow for equal access to the labour market", - "values": [ - "Labour", - "Women's rights" - ] - }, - { - "text": "Continue its considerable efforts to integrate human rights education in the school programmes and textbooks ", - "values": [ - "Human rights education and training" - ] - }, - { - "text": "Ratify the 1951 Convention relating to the Status of Refugees", - "values": [ - "Asylum-seekers - refugees", - "International instruments" - ] - }, - { - "text": "Ensure stable and systematic funding for the media of the Slovenian minority in Hungary, namely for Radio Monoster/Szentgotthárd, the Porabje weekly and the Slovenian TV programme ", - "values": [ - "Freedom of the press", - "Minorities" - ] - }, - { - "text": "Organize a visit of the High Commissioner in the coming future", - "values": [ - "Technical assistance and cooperation" - ] - }, - { - "text": "Consider designating an institution for coordination and implementation of policy on children.", - "values": [ - "Rights of the Child" - ] - }, - { - "text": "Consider amending the institution of the Ombudsman currently available, so that it is more independent from the office and it can address human rights controversies among citizens and the various State institutions in an impartial and autonomous manner", - "values": [ - "National Human Rights Institution" - ] - }, - { - "text": "Take the necessary measures to ensure access to education for all, in particular for populations in remote zones", - "values": [ - "Right to education" - ] - }, - { - "text": "Undertake additional measures to protect rights of women and children", - "values": [ - "Rights of the Child", - "Women's rights" - ] - }, - { - "text": "Allocate adequate resources to train the relevant authorities to ensure the effective implementation of the Prevention of Human Trafficking Act", - "values": [ - "Trafficking" - ] - }, - { - "text": "Take measures to improve the criminal justice system, including through the implementation of the 164 articles outlined in Presidential Decree No. 45 of August 2012 ", - "values": [ - "Justice" - ] - }, - { - "text": "Make further efforts in order to eliminate all forms of discrimination and the abuse of authority by police officers against migrants and foreigners, especially the community of Vietnamese origin people in the United States", - "values": [ - "Migrants", - "Minorities" - ] - }, - { - "text": "Take all necessary measures granting women, especially those in rural areas, equal access to health services and healthcare, participation in decision making ", - "values": [ - "Right to health", - "Women's rights" - ] - }, - { - "text": "Continue to work to address the challenges posed by the increasing flows of irregular migration", - "values": [ - "Migrants" - ] - }, - { - "text": "Develop a national action plan to prevent and combat racism, racial discrimination, xenophobia and related intolerance, which will also ensure that manifestations of hatred, racist and xenophobic discourse as well as racially motivated acts of violence are investigated and perpetrators are punished. Such a national action plan should also integrate the implementation of the Durban Declaration and Program of Action", - "values": [ - "Racial discrimination" - ] - }, - { - "text": "Continue to adopt appropriate policies and laws to counter discrimination of women migrant workers and ensure that their children can enjoy rights to education and health", - "values": [ - "Labour", - "Migrants", - "Right to education", - "Right to health", - "Rights of the Child", - "Women's rights" - ] - }, - { - "text": "Consolidate commitment against the death penalty by ratifying the Second Optional Protocol to the International Covenant on Civil and Political Rights (ICCPR-OP2) ", - "values": [ - "Death penalty", - "International instruments" - ] - }, - { - "text": "Ratify the Hague Convention on Protection of Children and Cooperation in Respect of Intercountry Adoption ", - "values": [ - "International instruments", - "Rights of the Child" - ] - }, - { - "text": "Adopt the relevant legal texts and set up monitoring mechanisms to ensure their implementation ", - "values": [ - "Justice" - ] - }, - { - "text": "Explicitly prohibit corporal punishment in all settings, including the family, schools and institutions", - "values": [ - "Rights of the Child", - "Torture and other CID treatment" - ] - }, - { - "text": "Amend laws specific to hate crime and hate speech", - "values": [ - "Racial discrimination" - ] - }, - { - "text": "Implement the recommendations of the ad hoc committee mandated by the National Assembly, and conduct an independent and transparent investigation into the excessive use of force leading to the punishment of those responsible ", - "values": [ - "Human rights violations by state agents" - ] - }, - { - "text": "Continue its efforts to combat drug trafficking", - "values": [ - "Trafficking" - ] - }, - { - "text": "When reforming the asylum system and migration management, pay special attention to the needs of unaccompanied minors in all processes that pertain to solving their cases, and prevent administrative detention from being a standard practice for new irregular migrants ", - "values": [ - "Asylum-seekers - refugees", - "Detention", - "Migrants", - "Rights of the Child" - ] - }, - { - "text": "Ratify or accede to, where appropriate, the Rome Statute of the International Criminal Court ", - "values": [ - "International instruments", - "Justice" - ] - }, - { - "text": "Ensure that civil society organizations may express their opinions freely on Government policy", - "values": [ - "Civil society", - "Freedom of opinion and expression" - ] - }, - { - "text": "Amend the criminal code to decriminalize same-sex sexual activity between consenting adults and adopt legislation that prohibits discrimination on the basis of sexual orientation and gender identity", - "values": [ - "Sexual Orientation and Gender Identity" - ] - }, - { - "text": "Continue to support and encourage the further development of China's media use of English and other foreign languages to help the outside world better understand China, including the objective coverage of China, a country too often deliberately and grossly misunderstood by some international media", - "values": [ - "Freedom of the press" - ] - }, - { - "text": "Consider appropriate policy measures in order to promote tolerance and non-discrimination for lesbian, gay, bisexual and transgender persons.", - "values": [ - "Sexual Orientation and Gender Identity" - ] - }, - { - "text": "Continue the reform process to strengthen the institutions of the prison system in order to guarantee respect for the human rights and dignity of persons deprived of liberty ", - "values": [ - "Detention" - ] - }, - { - "text": "Strengthen the technical and the human institutional capacity in order to consolidate the efforts being made by Chad with a view to the promotion and protection of human rights.", - "values": [ - "General" - ] - }, - { - "text": "Continue the implementation of the provisions of the Second Optional Protocol to the International Covenant on Civil and Political Rights, aiming at the abolition of the death penalty, and abandon plans to restore the death penalty as a legal punishment", - "values": [ - "Death penalty", - "International instruments" - ] - }, - { - "text": "Continue implementing the Dili Declaration, entitled "Invest in women and children - invest in equality", endorsed by the National Parliament, the Government, the Church and civil society", - "values": [ - "Rights of the Child", - "Women's rights" - ] - }, - { - "text": "Strengthen the measures to combat domestic violence, in particular the effective implementation of the existing legal framework, data collection and training of State officers responsible of receiving complaints", - "values": [ - "Human rights education and training", - "Rights of the Child", - "Women's rights" - ] - }, - { - "text": "Do not apply the Law on the Protection of Minors against the Detrimental Effect of Public Information to restrict freedom of expression, and facilitate access to legal remedies of persons who consider that the enjoyment of their right has been affected", - "values": [ - "Freedom of opinion and expression", - "Rights of the Child", - "Sexual Orientation and Gender Identity" - ] - }, - { - "text": "Adopt a comprehensive programme on sexual health and reproductive rights based on human rights and World Health Organization standards and allocate sufficient resources for its implementation", - "values": [ - "Right to health", - "Women's rights" - ] - }, - { - "text": "Transparently prosecute the individuals who committed crimes against all minorities under the communist regime, especially on the protracted legal case of Belene concentration camp", - "values": [ - "Justice", - "Minorities" - ] - }, - { - "text": "Consider and follow up on the recommendations that the Special Rapporteur on the Right to Education has made during his visit in 2010 in order to strengthen national strategies and education programs currently being implemented", - "values": [ - "Right to education", - "Special procedures" - ] - }, - { - "text": "Take additional social and legal protection measures for vulnerable children who are victims of sexual abuse and for their families", - "values": [ - "Rights of the Child" - ] - }, - { - "text": "Continue efforts to combat diseases, including malaria and HIV/AIDS, by investing in pharmaceutical research and public access to treatment options", - "values": [ - "HIV - Aids", - "Right to health" - ] - }, - { - "text": "Continue to strengthen and protect the rights of minorities", - "values": [ - "Minorities" - ] - }, - { - "text": "Implement Constitutional recognition of Indigenous Australians and continue to exert efforts to fully implement the Indigenous Advancement Strategy in order to ensure the indigenous people have sufficient access to health services, education and employment opportunities", - "values": [ - "Indigenous peoples", - "Labour", - "Right to education", - "Right to health" - ] - }, - { - "text": "Continue to undertake measures that promote the rights of children, including the provision of equal access to services and protection for children of migrant workers ", - "values": [ - "Labour", - "Migrants", - "Rights of the Child" - ] - }, - { - "text": "Seek financial support from the international community in order to continue providing the necessary assistance to thousands of Iraqis hosted in the Kingdom", - "values": [ - "Technical assistance and cooperation" - ] - }, - { - "text": "Consider seriously ratifying the Convention on the Rights of Persons with Disabilities CRPD - the Optional Protocol to the Convention on the Elimination of Discrimination Against Women OP-CEDAW and the Optional Protocol to the Convention on the Rights of the Child on the involvement of children in armed conflict OP-CRC-AC", - "values": [ - "Disabilities", - "International humanitarian law", - "International instruments", - "Rights of the Child", - "Women's rights" - ] - }, - { - "text": "Continuously improve its endeavours to eradicate poverty in the country", - "values": [ - "Poverty" - ] - }, - { - "text": "Continue its efforts to guarantee the rights of women and to eradicate gender discrimination, and pay special attention to combat gender- motivated violence against migrant women ", - "values": [ - "Women's rights" - ] - }, - { - "text": "Intensify efforts aiming at the comprehensive and effective implementation of national plans and strategies to fight trafficking of human beings", - "values": [ - "Trafficking" - ] - }, - { - "text": "Review the reservation to article 32 of the Convention on the Rights of the Child.", - "values": [ - "International instruments", - "Rights of the Child" - ] - }, - { - "text": "Continue to combat corporal punishment of children in all circumstances", - "values": [ - "Rights of the Child", - "Torture and other CID treatment" - ] - }, - { - "text": "Strengthen the judiciary by improving its functioning, capacity and in particular the election system of the courts and by promoting its full independence from the other State's powers and, proceed without delay to comprehensively implement the programme for the modernization of the judicial system", - "values": [ - "Justice" - ] - }, - { - "text": "Make available all the necessary and available resources to ensure that the strategy to address the preparation and submission of outstanding reports to treaty monitoring bodies is successfully implemented ", - "values": [ - "Treaty bodies" - ] - }, - { - "text": "Take steps to ensure that all individuals can fully exercise their rights to peaceful assembly, association and freedom of expression, without intimidation or harassment. This includes revising laws to facilitate NGO registration and operations, sanctioning excessive interference by State officials, and reforming the Penal Code and national security laws to ensure that provisions related to criminal defamation, libel and insult are consistent with international human rights obligations", - "values": [ - "Civil society", - "Freedom of association and peaceful assembly", - "Freedom of opinion and expression", - "International instruments" - ] - }, - { - "text": "Continue to improve the legislation framework in the fields of the protection of national and ethnic minorities from discrimination ", - "values": [ - "Minorities", - "Racial discrimination" - ] - }, - { - "text": "Adopt concrete measures to ensure gender sensitive training of persons involved in investigation, prosecution and assisting victims of violence against women", - "values": [ - "Justice", - "Women's rights" - ] - }, - { - "text": "In the border area, strengthen the enjoyment of the right to health, particularly with the prevention and treatment of malaria, dengue and HIV/AIDS", - "values": [ - "HIV - Aids", - "Right to health" - ] - }, - { - "text": "Vigorously prosecute security force personnel who violate the law ", - "values": [ - "Human rights violations by state agents" - ] - }, - { - "text": "Strengthen its training and capacity-building programme in the area of human rights for law enforcement officials", - "values": [ - "Human rights education and training" - ] - }, - { - "text": "Implement its obligations under the human rights instruments to which it is party and cease the use of arbitrary detention, labour camps and collective punishment \n\n", - "values": [ - "Detention", - "Justice" - ] - }, - { - "text": "Continue to seek support to establish an international centre or agency, in collaboration with the United Nations, in the field of combating terrorism ", - "values": [ - "Public security", - "Technical assistance and cooperation" - ] - }, - { - "text": "Continue with the policy of openness and cooperation with United Nations human rights mechanisms, and in particular that it consider favourably the requests by the mechanisms of the Council that have already expressed their desire to visit Cuba", - "values": [ - "Special procedures", - "Treaty bodies", - "UPR process" - ] - }, - { - "text": "Fully implement the laws on gender equality and equal treatment, in accordance with the commitment formulated in paragraph 153 of its national report ", - "values": [ - "Women's rights" - ] - }, - { - "text": "Improve the living standards and conditions in prisons", - "values": [ - "Detention" - ] - }, - { - "text": "Continue its efforts to further strengthen institutional and policy frameworks in the area of promotion and protection of human rights", - "values": [ - "General" - ] - }, - { - "text": "Move forward towards formally abolishing the death penalty ", - "values": [ - "Death penalty" - ] - }, - { - "text": "Fully cooperate with the Human Rights Council and accept the request of the Special Rapporteur on the situation of human rights to visit the country", - "values": [ - "Special procedures" - ] - }, - { - "text": "Create a national system for information management to collect data on human trafficking, including human traffickers and identified victims", - "values": [ - "Trafficking" - ] - }, - { - "text": "Continue to confront attempts of foreign intervention into its domestic affairs and to exercise fully its people's right to self-determination and the country's sovereignty ", - "values": [ - "Other" - ] - }, - { - "text": "Extend an open and standing invitation to the United Nations special procedures ", - "values": [ - "Special procedures" - ] - }, - { - "text": "Lift all restrictions regarding the use of Internet by adopting the necessary measures", - "values": [ - "Freedom of opinion and expression" - ] - }, - { - "text": "Effectively implement the Law against Domestic Violence by raising awareness of this law to public officials, to local community leaders and by citizenship education, and additionally discourage cultural practices that violate women's rights, such as forced and early marriage", - "values": [ - "Rights of the Child", - "Women's rights" - ] - }, - { - "text": "Take the necessary measures to ensure to improve education for children ", - "values": [ - "Right to education", - "Rights of the Child" - ] - }, - { - "text": "Ratify OP-CAT ", - "values": [ - "Detention", - "International instruments", - "Torture and other CID treatment" - ] - }, - { - "text": "Raise awareness in public regarding the limits and responsibility of freedom of expression, in accordance with international standards urging to take concrete legal and practical measures to combat incitement to religious hatred and intolerance", - "values": [ - "Freedom of opinion and expression", - "Freedom of religion and belief", - "Racial discrimination" - ] - }, - { - "text": "Continue its measures to tackle the problem of violence against women, including domestic violence ", - "values": [ - "Women's rights" - ] - }, - { - "text": "Launch social dialogue to improve religious discourse emphasizing the positive values and bright example of the Egyptian religious heritage", - "values": [ - "Freedom of religion and belief" - ] - }, - { - "text": "Continue its efforts in the fight against impunity in favour of the security of citizens.", - "values": [ - "Impunity" - ] - }, - { - "text": "Adopt all necessary measures to prevent, fight and punish any violence against women and children", - "values": [ - "Rights of the Child", - "Women's rights" - ] - }, - { - "text": "Consider strengthening the positive impact expected from the Kiribati Joint Implementation Plan on Climate Change and Disaster Risk Management on human rights through training of relevant stakeholders on human rights approaches to climate change and disaster risk management", - "values": [ - "Environment" - ] - }, - { - "text": "Hold officials of all ranks accountable for their actions, especially regarding allegations of killings, torture and other ill-treatment ", - "values": [ - "Extrajudicial executions", - "Human rights violations by state agents", - "Torture and other CID treatment" - ] - }, - { - "text": "Continue its efforts to promote and protect human rights in general and particularly, combat poverty ", - "values": [ - "Poverty" - ] - }, - { - "text": "Increase its efforts to improve conditions in detention facilities \n\n", - "values": [ - "Detention" - ] - }, - { - "text": "Step up its cooperation with the special procedures of the Human Rights Council by responding positively to the pending visit requests by the special procedure mandate holders", - "values": [ - "Special procedures" - ] - }, - { - "text": "Continue its implementation of the poverty alleviation policies, in particular through the Kazi Kwa Vijana programme, and share its experiences in this regard ", - "values": [ - "Poverty" - ] - }, - { - "text": "Schedule discussion of the Draft Law on the Recognition and Protection of the Rights of Traditional Communities ", - "values": [ - "Indigenous peoples" - ] - }, - { - "text": "Continue its efforts towards protecting human rights, especially through promoting gender equality, and support economic empowerment of women in the country ", - "values": [ - "Women's rights" - ] - }, - { - "text": "Continue reviewing policies for the effective implementation of the Sustainable Development Goals", - "values": [ - "Development" - ] - }, - { - "text": "Guarantee all individuals the right to be tried within reasonable time or released, and introduce alternative punishments to the imprisonment", - "values": [ - "Detention" - ] - }, - { - "text": "Envisage setting up a justice system for minors ", - "values": [ - "Justice", - "Rights of the Child" - ] - }, - { - "text": "Continue to improve the legislation aimed at prohibiting all forms of torture and in particular, to strengthen measures to protect the rights of detainees", - "values": [ - "Detention", - "Torture and other CID treatment" - ] - }, - { - "text": "Speed up the ratification process for the Convention on the Rights of Persons with Disabilities and the Optional Protocol to the Convention against Torture and Other Cruel, Inhuman or Degrading Treatment or Punishment, as well as the integration of the provisions of the Rome Statute of the International Criminal Court into its national legislation", - "values": [ - "Disabilities", - "International instruments", - "Justice", - "Torture and other CID treatment" - ] - }, - { - "text": "Persevere in its actions in favour of development and share its experience in this regard with the international community ", - "values": [ - "Development" - ] - }, - { - "text": "Prevent and combat xenophobia and racial prejudice and assure protection for the indigenous population against discrimination ", - "values": [ - "Indigenous peoples", - "Racial discrimination" - ] - }, - { - "text": "Take effective measures to prevent violence against women and children", - "values": [ - "Rights of the Child", - "Women's rights" - ] - }, - { - "text": "Adopt a more systematic approach to building public awareness about gender equality and the potential contributions that women can make to social and economic development, which would help break down existing barriers faced by women in employment and education, while at the same time ameliorating the incidence of sexual exploitation and violence suffered by women ", - "values": [ - "Women's rights" - ] - }, - { - "text": "Implement effectively measures to assist girls and children from low-income families to have access to quality education", - "values": [ - "Right to education", - "Rights of the Child" - ] - }, - { - "text": "Ratify the Protocol to Prevent, Suppress and Punish Trafficking in Persons, Especially Women and Children, supplementing the United Nations Convention against Transnational Organized Crime", - "values": [ - "International instruments", - "Rights of the Child", - "Trafficking", - "Women's rights" - ] - }, - { - "text": "Continue the efforts aiming at the reinforcement of the protection of the rights of foreign workers ", - "values": [ - "Labour", - "Migrants" - ] - }, - { - "text": "Take into consideration the opinion of civil society and its role in supporting the decision-making process, particularly with regard to the implementation of recommendations presented to them during the universal periodic review session, additionally, listen to the British human rights organizations and support their role, in particular, in the light of the interest of the Government in the situation of organizations in other States", - "values": [ - "Civil society", - "UPR process" - ] - }, - { - "text": "Continue the process of expanding the possibilities of accessing the voluntary termination of pregnancy in order to ensure the full recognition of sexual and reproductive rights", - "values": [ - "Right to health", - "Rights of the Child", - "Women's rights" - ] - }, - { - "text": "Consider the creation of a public body tasked with monitoring and creation of preventative measures to counter violence and sexual abuse against children", - "values": [ - "Rights of the Child" - ] - }, - { - "text": "Promote a holistic perspective on the rights of the child in its international development assistance policy, in line with articles 4 and 12 of the Convention on the Rights of the Child", - "values": [ - "International instruments", - "Rights of the Child" - ] - }, - { - "text": "Continue to seek the needed technical assistance to enable it to meet its various human rights commitments", - "values": [ - "Technical assistance and cooperation" - ] - }, - { - "text": "Develop a process, trusted by the public, for regular community- government consultations regarding concerns of indigenous peoples and local community groups, including construction of infrastructure and other projects on their lands", - "values": [ - "Indigenous peoples", - "Right to land" - ] - }, - { - "text": "Take further legislative and administrative measures to safeguard the rights of minorities", - "values": [ - "Minorities" - ] - }, - { - "text": "Take further steps to ensure and enhance women's rights on all levels", - "values": [ - "Women's rights" - ] - }, - { - "text": "Issue a standing invitation to Special Procedures ", - "values": [ - "Special procedures" - ] - }, - { - "text": "Intensify efforts in improving access to education for students from - low-income families ", - "values": [ - "Right to education" - ] - }, - { - "text": "Ensure that the age of criminal responsibility is not lowered ", - "values": [ - "Justice", - "Rights of the Child" - ] - }, - { - "text": "Ensure training for police officers, prosecutors and judges in order to ensure that they can recognize, investigate and prosecute hate crimes ", - "values": [ - "Racial discrimination" - ] - }, - { - "text": "Extend an open and standing invitation to the special procedure mandate holders to visit Bhutan ", - "values": [ - "Special procedures" - ] - }, - { - "text": "Ensure implementation of the laws against corporal punishment by encouraging the reporting of cases and by providing the means for effective investigation and prosecution of perpetrators ", - "values": [ - "Torture and other CID treatment" - ] - }, - { - "text": "Intensify national efforts to address continued high levels of violence, a common challenge in our hemisphere", - "values": [ - "Public security" - ] - }, - { - "text": "Establish mechanisms to identify children among asylum seekers and refugees involved in armed conflicts", - "values": [ - "Asylum-seekers - refugees", - "International humanitarian law", - "Rights of the Child" - ] - }, - { - "text": "Adopt a legislative framework that ensures protection against all offences motivated by hatred and prejudice", - "values": [ - "Other" - ] - }, - { - "text": "Adopt a human rights based approach to its reconstruction and development process", - "values": [ - "Development" - ] - }, - { - "text": "Make combating discrimination against vulnerable girls a national priority and adopt a comprehensive strategy to eliminate discrimination on any grounds against all vulnerable groups, as recommended by the Committee on the Rights of the Child ", - "values": [ - "Rights of the Child", - "Treaty bodies" - ] - }, - { - "text": "Redouble all efforts to preserve the progress achieved in a number of areas such as culture, education, health and the fight against social inequality ", - "values": [ - "Right to education", - "Right to health" - ] - }, - { - "text": "Expedite the process of ratification of the Optional Protocol to the Convention on the Elimination of All Forms of Discrimination against Women", - "values": [ - "International instruments", - "Women's rights" - ] - }, - { - "text": "Ratify the Second Optional Protocol to the International Covenant on Civil and Political Rights.", - "values": [ - "Death penalty", - "International instruments" - ] - }, - { - "text": "Strengthen the rule of law by establishing an independent complaints commission capable of investigating and prosecuting complaints against the security forces and a police service commission responsible for police recruitment, transfers and promotion ", - "values": [ - "Human rights violations by state agents", - "Justice" - ] - }, - { - "text": "The delegation stated that Cambodia was committed to establishing an independent human rights institution.", - "values": [ - "National Human Rights Institution" - ] - }, - { - "text": "Facilitate the development of concrete action plans and determine deadlines in order to put an end to the recruitment of children, in accordance with the recommendations of the Special Representative of the Secretary-General for Children and Armed Conflict", - "values": [ - "International humanitarian law", - "Rights of the Child", - "Special procedures" - ] - }, - { - "text": "Pursue its policies in favour of the vulnerable strata of society", - "values": [ - "Minorities" - ] - }, - { - "text": "Review domestic legislation on the media in order to bring it into line with article 19 of the ICCPR", - "values": [ - "Freedom of the press", - "International instruments" - ] - }, - { - "text": "Formulate a national plan of action on human rights and strengthen the Ethiopian Human Rights Commission EHRC, for example, by assisting in opening regional offices and providing access to all detention centres ", - "values": [ - "Detention", - "National Human Rights Institution" - ] - }, - { - "text": "Better educate security and law enforcement authorities at all levels about the basic rights of the citizens and enhance citizens' possibilities to make complaints about mistreatment by the authorities ", - "values": [ - "Human rights education and training", - "Human rights violations by state agents" - ] - }, - { - "text": "Continue to strengthen its efforts to protect the rights of vulnerable groups with a particular focus on narrowing the gaps between the different regions", - "values": [ - "Minorities" - ] - }, - { - "text": "Issue a standing invitation to all special procedures mandate holders of the Human Rights Council", - "values": [ - "Special procedures" - ] - }, - { - "text": "Continue its priority and initiatives in the 9th National Development Plan, with more focus on equality, non-discrimination, rights to health, education, to just and favourable conditions of work for vulnerable groups of women, children, migrants, foreign workers, refugees and persons with difficulties", - "values": [ - "Development" - ] - }, - { - "text": "Strengthen efforts to combat trafficking in women and children, and to take effective measures to prosecute and punish trafficking in persons, as raised by the Committee on the Rights of the Child and the Committee against Torture", - "values": [ - "Rights of the Child", - "Trafficking", - "Treaty bodies", - "Women's rights" - ] - }, - { - "text": "Study the possibility of seeking technical assistance in the area of reintegration programmes for exploited children and regarding juvenile justice", - "values": [ - "Justice", - "Rights of the Child", - "Technical assistance and cooperation" - ] - }, - { - "text": "Consider organizing additional human rights training for media employees, judges, prosecutors and police officers", - "values": [ - "Human rights education and training" - ] - }, - { - "text": "Continue the efforts to ensure the exercise of human rights by the sections of society needing special attention from the authorities", - "values": [ - "General" - ] - }, - { - "text": "Fully implement the Constitutional Act on the Rights of National Minorities and take action to implement Constitutional Court decisions regarding the Act on Usage of Languages and Scripts of National Minorities", - "values": [ - "ESC rights - general", - "Minorities" - ] - }, - { - "text": "Pursue efforts to promote and protect human rights", - "values": [ - "General" - ] - }, - { - "text": "Consider ratifying the International Convention for the Protection of All Persons from Enforced Disappearance, the Convention on the Rights of Persons with Disabilities and its Optional Protocol, the Second Optional Protocol to the International Covenant on Civil and Political Rights ", - "values": [ - "Death penalty", - "Disabilities", - "Enforced disappearances", - "International instruments" - ] - }, - { - "text": "Further strengthen measures aimed at accomplishing equality between women and men in Czechia", - "values": [ - "Women's rights" - ] - }, - { - "text": "Recommend the cessation of the use of children by State security forces in military intelligence activities and through programmes such as Soldiers for a day, in compliance with a recommendation by the Committee on the Rights of the Child in 2006", - "values": [ - "International humanitarian law", - "Rights of the Child", - "Treaty bodies" - ] - }, - { - "text": "Use the UPR process to better involve civil society for further promotion and protection of human rights in Samoa ", - "values": [ - "Civil society", - "UPR process" - ] - }, - { - "text": "Ensure that all State surveillance activities are in line with international human rights law and do not infringe on citizen's fundamental rights and freedoms", - "values": [ - "Privacy" - ] - }, - { - "text": "Ensure that members of civil society are allowed, free of harassment, to meet with representatives of foreign media and Governments and international organizations.", - "values": [ - "Civil society" - ] - }, - { - "text": "Consider creating a National Human Rights Institution in accordance with the Paris Principles ", - "values": [ - "National Human Rights Institution" - ] - }, - { - "text": "Redouble its efforts to combat the persistence of acts of racial discrimination", - "values": [ - "Racial discrimination" - ] - }, - { - "text": "Conduct impartial investigations and prosecutions against members of the security forces, regardless of rank, implicated in violations of human rights and international humanitarian law, including sexual violence", - "values": [ - "Human rights violations by state agents", - "International humanitarian law" - ] - }, - { - "text": "Establish an independent national human rights institution in conformity with the Paris Principles", - "values": [ - "National Human Rights Institution" - ] - }, - { - "text": "Enhance efforts aimed at quality performance in the area of administration of justice ", - "values": [ - "Justice" - ] - }, - { - "text": "Ratify the ICRMW.", - "values": [ - "International instruments", - "Labour", - "Migrants" - ] - }, - { - "text": "Consider the offer by the United Nations High Commissioner for Refugees to provide technical assistance and capacity-building in order to finalize the refugee return chapter and build an effective and efficient asylum system in Croatia", - "values": [ - "Asylum-seekers - refugees", - "Technical assistance and cooperation" - ] - }, - { - "text": "Take steps to address the gender segregation in the economy and the gender wage gap in the public sector", - "values": [ - "Women's rights" - ] - }, - { - "text": "Update the council periodically about its efforts in combating terrorism", - "values": [ - "Public security" - ] - }, - { - "text": "Review its legislation in order to prohibit the trade and transit of arms to places where it is suspected that children are used as soldiers ", - "values": [ - "International humanitarian law", - "Rights of the Child" - ] - }, - { - "text": "Continue to exercise its sovereign right of implementing its laws and legislation, including on the death penalty, in conformity with the universally agreed human rights standards and norms.", - "values": [ - "Death penalty" - ] - }, - { - "text": "Support the right to education by implementing the strategic vision to reform the education system for the period 2015-2030", - "values": [ - "Right to education" - ] - }, - { - "text": "Harmonize federal and state laws with international human rights instruments", - "values": [ - "International instruments" - ] - }, - { - "text": "Continue to invest in education and ensure the continued provision of free education for its primary and secondary students", - "values": [ - "Right to education" - ] - }, - { - "text": "Consider acceding to core human rights instruments ", - "values": [ - "International instruments" - ] - }, - { - "text": "To publish regularly on the website of the Ministry for Foreign and European Affairs the final recommendations of human rights treaty bodies", - "values": [ - "Treaty bodies" - ] - }, - { - "text": "Become a party to CAT and OPCAT", - "values": [ - "Detention", - "International instruments", - "Torture and other CID treatment" - ] - }, - { - "text": "Intensify efforts to combat hate speech", - "values": [ - "Racial discrimination" - ] - }, - { - "text": "Take urgent measures to ensure that adequate resources are allocated for education.", - "values": [ - "Right to education" - ] - }, - { - "text": "Make every effort to improve, by legislative and social measures, the status of women and ensure gender equality in Libya", - "values": [ - "Women's rights" - ] - }, - { - "text": "Decriminalize homosexual activity ", - "values": [ - "Sexual Orientation and Gender Identity" - ] - }, - { - "text": "Continue with its efforts to combat violence against women and children, especially domestic violence and violence related to accusations of sorcery", - "values": [ - "Rights of the Child", - "Women's rights" - ] - }, - { - "text": "Forcefully denounce at the highest level attacks against human rights defenders and give human rights defenders legitimacy and recognition through supportive statements.", - "values": [ - "Human rights defenders" - ] - }, - { - "text": "Take necessary measures to address issues relating to foreign workers, such as their facing travel bans and sometimes loss of rights to residence and work while being investigated for financial irregularity, so that the principles of natural justice are adhered to scrupulously ", - "values": [ - "Migrants" - ] - }, - { - "text": "Ensure that law enforcement officials conduct their duties in line with Austria's international obligations, particularly in relation to migrants, asylum seekers and minorities", - "values": [ - "Asylum-seekers - refugees", - "Human rights violations by state agents", - "Migrants", - "Minorities" - ] - }, - { - "text": "Put an end to all sanctions and unilateral coercive measures that violate sovereignty, the self-determination of the peoples and the full exercise of human rights, imposed to countries in all the regions of the world", - "values": [ - "Other" - ] - }, - { - "text": "Adopt legislative measures and policies to prevent early or forced marriages", - "values": [ - "Rights of the Child", - "Women's rights" - ] - }, - { - "text": "Consider taking steps to establish an independent National Human Rights Institution", - "values": [ - "National Human Rights Institution" - ] - }, - { - "text": "Proceed to sign and ratify the Second Protocol to the ICCPR", - "values": [ - "Death penalty", - "International instruments" - ] - }, - { - "text": "Continue to implement socio-economic development strategies, particularly policies to try and guarantee quality education and health services for all the population", - "values": [ - "ESC rights - general", - "Right to education", - "Right to health" - ] - }, - { - "text": "Continue to implement all measures aimed at promoting gender equality, notably by combating all discrimination against women and stereotypes ", - "values": [ - "Women's rights" - ] - }, - { - "text": "Undertake a review of national criminal and immigration legislation to ensure its compatibility with international obligations of the Government, in particular regarding the right to freedom of movement of individuals, in response to the recommendations of the Committees on Civil and Political Rights, on Economic, Social and Cultural Rights and on the Rights of the Child ", - "values": [ - "Freedom of movement", - "Migrants", - "Treaty bodies" - ] - }, - { - "text": "Keep up its efforts aimed at increasing the transparency in the appointment process of the Ombudsman and introduce the necessary legislative changes in order to reinforce the institutional capacities of the Office and bring its competences in line with the Paris Principles", - "values": [ - "National Human Rights Institution" - ] - }, - { - "text": "Continue measures in eliminating discrimination against women through the implementation of its Law on the Elimination of Violence against Women", - "values": [ - "Women's rights" - ] - }, - { - "text": "Explore the possibility of establishing a national human rights institution in accordance with the Paris Principles ", - "values": [ - "National Human Rights Institution" - ] - }, - { - "text": "Take additional measures on social, economic and legal protection to combat child labour", - "values": [ - "Labour", - "Rights of the Child" - ] - }, - { - "text": "Promote, through its migration service, the civil, political and social rights of migrant workers ", - "values": [ - "CP rights - general", - "ESC rights - general", - "Labour", - "Migrants" - ] - }, - { - "text": "Strengthen efforts to ensure retroactive birth registrations and issuance of documents for children lacking such documentation as well as to ensure that children lacking identity documents are not refused access to health, education and other public services, including child allowances", - "values": [ - "Rights of the Child", - "Statelessness and the right to nationality" - ] - }, - { - "text": "Strengthen implementation of the comprehensive public policy for indigenous peoples, with a view to promoting and protecting all their rights, and strengthen the Paraguayan Indigenous Institute to ensure the right to consultation and participation of indigenous peoples in decision-making, in accordance with its obligations under the ILO Convention No. 169 ", - "values": [ - "Indigenous peoples", - "International instruments" - ] - }, - { - "text": "Improve the conditions of prisons and other places of detention and reduce overcrowding by building more prisons or reducing the length of pretrial detention", - "values": [ - "Detention" - ] - }, - { - "text": "Ensure the legal recognition of conscientious objection to military service", - "values": [ - "Freedom of religion and belief" - ] - }, - { - "text": "Continue the review of its international adoption system with a view to reform relevant legislation, and to bring it fully in line with the CRC, make the consent of teenage single mothers in the process mandatory, and adopt measures for all adoptions to be subject to the approval of a central authority with a clear mandate and responsibilities for the judicial supervision and the regulation", - "values": [ - "Rights of the Child" - ] - }, - { - "text": "Continue consolidating the National Prevention Strategy to sanction all forms of exploitation, especially against women, to protect victims and provide them with assistance", - "values": [ - "Women's rights" - ] - }, - { - "text": "Take all measures that it thinks are appropriate to expand primary education for all children, in rural as well as in urban areas, and make sure that it benefits equally girls and boys", - "values": [ - "Rights of the Child" - ] - }, - { - "text": "Elaborate emergency programmes of appropriate medical and psychological care for rape survivors", - "values": [ - "Rights of the Child", - "Women's rights" - ] - }, - { - "text": "Further intensify the Government\u2019s activities to boost youth employment", - "values": [ - "Labour" - ] - }, - { - "text": "Reduce social conflict in the extractive sector by improving consultation with indigenous peoples and joining the Voluntary Principles on Security and Human Rights as a member", - "values": [ - "Indigenous peoples" - ] - }, - { - "text": "Provide specific training to law enforcement staff to enable them to better understand and prevent domestic violence ", - "values": [ - "Rights of the Child", - "Women's rights" - ] - }, - { - "text": "Provide protection to the family as a natural and fundamental unit to the society", - "values": [ - "Other" - ] - }, - { - "text": "Step up the rate of cooperation with treaty bodies", - "values": [ - "Treaty bodies" - ] - }, - { - "text": "Ensure protection of the basic right of all couples and individuals to decide freely and responsibly the number, spacing and timing of their children ", - "values": [ - "Other" - ] - }, - { - "text": "Review a number of ILO-related human rights treaties with the view to signing them. These ILO conventions include: (a) Convention No. 87 on the Freedom of Association and Protection of the Right to Organize (1948) (b) Convention No. 98 on the Right to Organize and Collective Bargaining (1949)", - "values": [ - "Freedom of association and peaceful assembly", - "International instruments", - "Labour" - ] - }, - { - "text": "Consider undertaking a review of domestic laws with a view to guaranteeing equality between men and women, including laws that govern the rights of succession with respect to land permits and grants, and the absence of a minimum age for marriage under Muslim law", - "values": [ - "Right to land", - "Rights of the Child", - "Women's rights" - ] - }, - { - "text": "Develop community-based and people-centred mental health services and supports that do not lead to institutionalization, over medicalization and to practices that fail to respect the rights, will and preferences of all persons", - "values": [ - "Right to health" - ] - }, - { - "text": "Expand and improve the early childhood education provision", - "values": [ - "Right to education", - "Rights of the Child" - ] - }, - { - "text": "Approve the draft law on national minorities and protect effectively differences in languages, religions, culture and identity", - "values": [ - "Minorities" - ] - }, - { - "text": "Expedite impartial investigation and provide them with sufficient means to elucidate aggressions against, or murders of, journalists, then bring the perpetrators of those crimes to justice ", - "values": [ - "Freedom of the press" - ] - }, - { - "text": "Ensure broad access to health services, including reproductive health services, especially to young people", - "values": [ - "Right to health", - "Women's rights" - ] - }, - { - "text": "Make available adequate budgetary allocations, despite financial constraints, for the continued provision and improvement of education and health services which are essential to protect the rights of the poorest and the most vulnerable members of society ", - "values": [ - "Right to education", - "Right to health" - ] - }, - { - "text": "Ratify the CAT, implement its standards into national law and take immediate and concrete actions against the practice of torture by State officials ", - "values": [ - "Human rights violations by state agents", - "International instruments", - "Torture and other CID treatment" - ] - }, - { - "text": "Strengthen the implementation of educational and awareness-raising programmes on human rights.", - "values": [ - "Human rights education and training" - ] - }, - { - "text": "Set up a mechanism or a national authority for the prevention of torture ", - "values": [ - "Torture and other CID treatment" - ] - }, - { - "text": "Withdraw all reservations to the Convention on the Elimination of All Forms of Discrimination against Women", - "values": [ - "International instruments", - "Women's rights" - ] - }, - { - "text": "Prevent racial discrimination and other forms of expression with xenophobic overtones against foreigners", - "values": [ - "Racial discrimination" - ] - }, - { - "text": "Consider stepping up positive efforts, through greater investment in the health sector to strengthen existing services", - "values": [ - "Right to health" - ] - }, - { - "text": "Adopt measures to eliminate discrimination against people of African descent and indigenous peoples ", - "values": [ - "Indigenous peoples", - "Racial discrimination" - ] - }, - { - "text": "Reinforce policies that favour access to education for rural population", - "values": [ - "Right to education" - ] - }, - { - "text": "Continue to promote economic and social sustainable development, promote poverty reduction, and raise people\u2019s living standards", - "values": [ - "Development", - "Poverty" - ] - }, - { - "text": "Strengthen measures to promote tolerance and dialogue between civilizations and take categorical measures to fight hate speech and to penalize the perpetrators of such speech", - "values": [ - "Human rights education and training", - "Racial discrimination" - ] - }, - { - "text": "Strengthen the \u201cCreciendo Segura\u201c programme, aimed at low-income women, with an emphasis on women living in rural areas", - "values": [ - "Women's rights" - ] - }, - { - "text": "Continue to engage under international law in support of the right to self-determination and protection of refugees", - "values": [ - "Asylum-seekers - refugees" - ] - }, - { - "text": "Demonstrate firm commitment to preventing the unlawful recruitment of child soldiers by directing the Ministry of the Interior to systematically monitor self defense militias.", - "values": [ - "International humanitarian law", - "Rights of the Child" - ] - }, - { - "text": "Continue Government's efforts with its land reform and resettlement programme, both at the rural and urban level", - "values": [ - "Right to land" - ] - }, - { - "text": "Continue efforts and contributions at the international level aimed at strengthening international human rights mechanisms and, in particular, help to make those mechanisms work on the basis of non-politicization and dialogue based on respect and cooperation, which guarantees the realization of the interests of the international community", - "values": [ - "Other" - ] - }, - { - "text": "Step up efforts to end discrimination based on sexual orientation and sexual identity, including through relevant legislation", - "values": [ - "Sexual Orientation and Gender Identity" - ] - }, - { - "text": "Carry out effective and independent investigations into allegations of torture and ill treatment in order to bring the perpetrators to justice and ensure that the victims enjoy full reparation ", - "values": [ - "Torture and other CID treatment" - ] - }, - { - "text": "Implement a comprehensive rights-based criminal and prison policy as well as policies designed to eradicate prison violence ", - "values": [ - "Detention" - ] - }, - { - "text": "Pay particular attention to the human rights related issues, particularly by encouraging effective participation of women in political life", - "values": [ - "Women's rights" - ] - }, - { - "text": "Ensure that complete and impartial investigation into allegations of all forms of violence against women are conducted, that perpetrators are brought to justice and that victims receive adequate support", - "values": [ - "Women's rights" - ] - }, - { - "text": "Develop a comprehensive strategy to prevent, prohibit and combat hate speech, as a matter of priority, including measures to effectively investigate and prosecute related offences ", - "values": [ - "Racial discrimination" - ] - }, - { - "text": "Take the measures to comply with its commitment to present periodic reports to the Human Rights Committee in accordance with article 40 of ICCPR, and ensure full cooperation with this mechanism ", - "values": [ - "CP rights - general", - "International instruments", - "Treaty bodies" - ] - }, - { - "text": "Consider establishing a National Human Rights Institution", - "values": [ - "National Human Rights Institution" - ] - }, - { - "text": "Take action to eliminate sale of children, child prostitution and child pornography ", - "values": [ - "Rights of the Child", - "Trafficking" - ] - }, - { - "text": "Improve prosecution of femicide and all forms of violence against women and ensure that victims have access to shelters and other support services, including health services", - "values": [ - "Right to health", - "Women's rights" - ] - }, - { - "text": "Intensify the actions which ensure the integration of the Roma community and their full enjoyment of their human rights, in particular the rights to work and education", - "values": [ - "Labour", - "Minorities", - "Right to education" - ] - }, - { - "text": "Consider accession to the Optional Protocol to the Convention against Torture (OP-CAT)", - "values": [ - "Detention", - "International instruments", - "Torture and other CID treatment" - ] - }, - { - "text": "Extend standing invitations to all human rights special procedures", - "values": [ - "Special procedures" - ] - }, - { - "text": "Pursue efforts to comply with the observations of the Human Rights Committee regarding safeguards of the rights of detainees.", - "values": [ - "Detention", - "Treaty bodies" - ] - }, - { - "text": "Continue its efforts to implement the plan on employment growth and poverty reduction (DSCERP) 2012-2016", - "values": [ - "Development", - "Poverty" - ] - }, - { - "text": "Consider positively extending an invitation to visit the country to the Working Group on Arbitrary Detention. ", - "values": [ - "Detention", - "Special procedures" - ] - }, - { - "text": "Continue enhancing the principle of public trials, and monitoring them in a way that does not contradict the independence of the judiciary and fair trials, including allowing [the public] to attend court hearings", - "values": [ - "Justice" - ] - }, - { - "text": "Continue and strengthen the efforts aimed at the full integration of the Gypsy community and other minorities", - "values": [ - "Minorities" - ] - }, - { - "text": "Take urgent measures to establish a formal moratorium on executions of prisoners on death row", - "values": [ - "Death penalty" - ] - }, - { - "text": "Continue efforts to consolidate the national framework for protection of human rights", - "values": [ - "General" - ] - }, - { - "text": "Strengthen trafficking victim protection services by creating and publicizing a victim hotline and training immigration officials so trafficking victims are adequately informed of their rights ", - "values": [ - "Trafficking" - ] - }, - { - "text": "Consider the possibility of seeking international assistance to eliminate anti-personnel mines", - "values": [ - "International humanitarian law" - ] - }, - { - "text": "Share its experiences in relation to the achievement of the development goals set out in the Millennium Declaration ", - "values": [ - "Development" - ] - }, - { - "text": "Make more efforts to reduce poverty, leading to balanced and inclusive growth", - "values": [ - "Poverty" - ] - }, - { - "text": "Accede to ICCPR-OP2, aimed at abolishing the death penalty, and formalizing the de facto moratorium on the death penalty ", - "values": [ - "Death penalty", - "International instruments" - ] - }, - { - "text": "Take steps to implement an official land titling programme with the meaningful participation of civil society to prioritize the settlement of land disputes with full respect for the rule of law ", - "values": [ - "Civil society", - "Justice" - ] - }, - { - "text": "Establish and adequately resource a well-functioning guardianship and care system for unaccompanied minor refugees or asylum seekers", - "values": [ - "Asylum-seekers - refugees", - "Rights of the Child" - ] - }, - { - "text": "Ratify the two Optional Protocols to the Convention on the Rights of the Child ", - "values": [ - "International instruments", - "Rights of the Child" - ] - }, - { - "text": "Ensure that the enjoyment of human rights is a reality for all people, without any discrimination", - "values": [ - "General" - ] - }, - { - "text": "Ratify the United Nations Convention against Transnational Organised Crime and its Protocols to Prevent, Suppress and Punish Trafficking in Persons, especially Women and Children, and Against the Smuggling of Migrants by Land, Sea and Air ", - "values": [ - "International instruments", - "Migrants", - "Rights of the Child", - "Trafficking", - "Women's rights" - ] - }, - { - "text": "Continue to provide for all needs of vulnerable children, and especially children from poor socioeconomic backgrounds ", - "values": [ - "Poverty", - "Rights of the Child" - ] - }, - { - "text": "Review the impact that the state of emergency has on the enjoyment of human rights.", - "values": [ - "Public security" - ] - }, - { - "text": "Strengthen programmes for the promotion of work, food and social assistance aimed at national minorities and other vulnerable sectors of the population in the fight against poverty and social inequality", - "values": [ - "Development", - "ESC rights - general", - "Minorities", - "Poverty", - "Right to food" - ] - }, - { - "text": "Further improve the investigation of allegations of torture and ill-treatment, as well as of disproportionate use of force by security personnel, and ensure the prosecution of perpetrators", - "values": [ - "Detention", - "Human rights violations by state agents", - "Torture and other CID treatment" - ] - }, - { - "text": "Take the measures necessary to respect and protect the political, civil, economic, social and cultural rights of all ethnic communities, without any discrimination", - "values": [ - "Racial discrimination" - ] - }, - { - "text": "Treat those in custody in accordance with international human rights principles, and bring to justice perpetrators of attacks on journalists ", - "values": [ - "Freedom of the press" - ] - }, - { - "text": "Make every effort to eradicate hazardous forms of child labour and sexual exploitation of minors and ensure that the offences are effectively investigated and prosecuted", - "values": [ - "Labour", - "Rights of the Child" - ] - }, - { - "text": "Ratify the Optional Protocol to the Convention against Torture and take the measures necessary to comply with its provisions", - "values": [ - "Detention", - "International instruments", - "Torture and other CID treatment" - ] - }, - { - "text": "Ensure speedy passage of the bills on the establishment of a NHRI and Office of the Ombudsman.", - "values": [ - "National Human Rights Institution" - ] - }, - { - "text": "Continue efforts to ensure the submission of national reports to the treaty bodies ", - "values": [ - "Treaty bodies" - ] - }, - { - "text": "Continue its efforts to give minority populations the greatest level of participation in decision-making and public policy options, particularly in local governments where they live as part of the community", - "values": [ - "Minorities" - ] - }, - { - "text": "Continue efforts to maintain its achievements made in the field of human rights", - "values": [ - "General" - ] - }, - { - "text": "Conduct appropriate and impartial investigations of excessive use of force by security forces, prosecute and punish officers responsible, and provide proper compensation to victims and their families ", - "values": [ - "Human rights violations by state agents" - ] - }, - { - "text": "Recommended continuing and deepening judicial reform, including by adopting measures to address the institutional weakness and lack of independence of the judiciary", - "values": [ - "Justice" - ] - }, - { - "text": "Amend legislation containing libel and defamation clauses in order to ensure consistency with Kazakhstan's international human rights obligations and other relevant commitments in respect of freedom of expression and of the media", - "values": [ - "Freedom of opinion and expression", - "Freedom of the press", - "International instruments" - ] - }, - { - "text": "Assess the possibility of eliminating the concepts of legitimate children and natural children, which, according to the Committee on Economic, Social and Cultural Rights, continue to exist in the domestic legal order", - "values": [ - "Rights of the Child", - "Treaty bodies" - ] - }, - { - "text": "Continue efforts to ensure the representation of women at all levels of the political process and their participation in public life ", - "values": [ - "Women's rights" - ] - }, - { - "text": "Undertake efforts to ensure that EHRC complies with relevant international standards", - "values": [ - "National Human Rights Institution" - ] - }, - { - "text": "Increase investment in rural development so as to continue reducing poverty", - "values": [ - "Development", - "Poverty" - ] - }, - { - "text": "Take immediate measures to ensure that the Media Commission is fully independent ", - "values": [ - "Freedom of the press" - ] - }, - { - "text": "Take measures to strengthen women's rights, in particular to encourage greater representation of women in public life and combat sexual and domestic violence ", - "values": [ - "Women's rights" - ] - }, - { - "text": "Accelerate the judicial reform and enhance the fight against corruption in order to improve human rights standards in the country", - "values": [ - "Corruption", - "Justice" - ] - }, - { - "text": "Take judicial and administrative measures to ensure equality and empowerment of women, including fair representation in the legislative and executive branches of the State and participation in political decision-making", - "values": [ - "Women's rights" - ] - }, - { - "text": "Continue efforts to improve prison conditions.", - "values": [ - "Detention" - ] - }, - { - "text": "Continue on this positive path to support education", - "values": [ - "Right to education" - ] - }, - { - "text": "Accept a visit by an ILO mission during the next cotton harvesting season to monitor the situation of forced labour ", - "values": [ - "Labour" - ] - }, - { - "text": "Ensure that any possible reform of the 1998 Human Rights Act has no impact on the scope of protection or the access to the remedies under the European Convention on Human Rights", - "values": [ - "International instruments" - ] - }, - { - "text": "Ensure in practice better access of every detainee to lawyers, family members, medical treatment and other legal guarantees to ensure protection from torture.", - "values": [ - "Detention", - "Torture and other CID treatment" - ] - }, - { - "text": "Continue to prioritize the budget for public education", - "values": [ - "Right to education" - ] - }, - { - "text": "Establish an independent complaints mechanism mandated to investigate allegations of human rights violations ", - "values": [ - "Justice" - ] - }, - { - "text": "Put an end to torture and other cruel, inhuman or degrading punishment or treatment by applying the recommendations of the Committee against Torture, the Human Rights Committee, and the Special Rapporteur on torture and other cruel, inhuman or degrading treatment or punishment ", - "values": [ - "Special procedures", - "Torture and other CID treatment", - "Treaty bodies" - ] - }, - { - "text": "Increase its efforts to address the human rights challenges faced by all sex workers ", - "values": [ - "Other" - ] - }, - { - "text": "Establish a roadmap for the holding of elections at the earliest possible time ", - "values": [ - "Elections" - ] - }, - { - "text": "Increase efforts to guarantee access to education for children with disabilities", - "values": [ - "Disabilities", - "Right to education", - "Rights of the Child" - ] - }, - { - "text": "Adhere to the Second Optional Protocol to the International Covenant on Civil and Political Rights, and declare a moratorium on pending executions, with a view to abolishing the death penalty", - "values": [ - "Death penalty", - "International instruments" - ] - }, - { - "text": "Remove the exception relating to marital rape from the definition of rape in the Indian Penal Code and criminalize \u201chonour crimes\u201c", - "values": [ - "Women's rights" - ] - }, - { - "text": "Strengthen the fight against xenophobia and Islamophobia", - "values": [ - "Freedom of religion and belief", - "Racial discrimination" - ] - }, - { - "text": "In line with Finland's previous recommendation, take concrete and targeted measures to effectively reduce inequalities by reviewing, analysing and modifying policies and programmes on poverty reduction to ensure effective consideration of gender concerns", - "values": [ - "Poverty", - "UPR process", - "Women's rights" - ] - }, - { - "text": "Accelerate the progress of legal reforms to eliminate discriminatory provisions, especially from the civil and criminal codes. and to increase efforts to amend legislation regarding gender equality in accordance with Gabon's international obligations, including the Convention on the Elimination of All Forms of Discrimination against Women.", - "values": [ - "International instruments", - "Women's rights" - ] - }, - { - "text": "Step up efforts to combat the overcrowding of prisons, and in particular provide more correctional detention facilities for female prisoners", - "values": [ - "Detention", - "Women's rights" - ] - }, - { - "text": "Launch awareness campaigns against homophobia and discrimination on the basis of sexual orientation ", - "values": [ - "Sexual Orientation and Gender Identity" - ] - }, - { - "text": "Continue its efforts in the context of the Human Rights Council to develop its work on human rights in connection with civilians in armed conflict", - "values": [ - "International humanitarian law" - ] - }, - { - "text": "Continue its efforts on current national action plans for job creation, quality education, health care and social security, with more focus on vulnerable groups of women, children, persons with difficulties, migrants and ethnic minorities", - "values": [ - "Development", - "Minorities", - "Right to education", - "Right to health" - ] - }, - { - "text": "Continue efforts to decrease the number of prisoners and take action to improve the conditions in prisons and detention centres ", - "values": [ - "Detention" - ] - }, - { - "text": "Continue efforts to implement the outcome document of the Durban Review Conference at the national and international levels.", - "values": [ - "Racial discrimination" - ] - }, - { - "text": "Continue efforts aimed at enhancing the welfare of peoples with disabilities, including taking the appropriate steps to ratify the Convention on the Rights of Persons with Disabilities", - "values": [ - "Disabilities", - "International instruments" - ] - }, - { - "text": "Bahrain is determined to strengthen its capacities in order to ensure: Timely submission of reports under these treaties [under the international human rights treaties which it has ratified and signed].", - "values": [ - "Treaty bodies" - ] - }, - { - "text": "Institutionalize consultation mechanisms with human rights organizations of the civil society", - "values": [ - "Civil society" - ] - }, - { - "text": "Ensure that public events planned by the LGBT, religious and other rights groups are permitted and adequately policed, according to the obligations of the Republic of Moldova under international human rights law", - "values": [ - "Sexual Orientation and Gender Identity" - ] - }, - { - "text": "Finally, the Government of the Islamic Republic of Mauritania takes this opportunity to reiterate its commitment to the ideals and principles enshrined in the international legal instruments to which it is a party and its determination to contribute, as a member of the Human Rights Council, to efforts to promote and protect human rights internationally and in Arab and African countries.", - "values": [ - "International instruments" - ] - }, - { - "text": "Withdraw remaining reservations to the CRC ", - "values": [ - "International instruments", - "Rights of the Child" - ] - }, - { - "text": "Take further steps to improve the humanitarian situation", - "values": [ - "General" - ] - }, - { - "text": "Revise the penal code and criminal procedure code and within this framework the definition and criminalization of torture ", - "values": [ - "Torture and other CID treatment" - ] - }, - { - "text": "Ratify the Kampala Amendments to the Rome Statute and the Agreement on the Privileges and Immunities of the International Criminal Court ", - "values": [ - "International instruments", - "Justice" - ] - }, - { - "text": "Ensure the basic needs of vulnerable groups with educational programs, and prevention and assistance on HIV-AIDS ", - "values": [ - "HIV - Aids" - ] - }, - { - "text": "Continue increasing quality of children's education, especially in rural areas", - "values": [ - "Right to education", - "Rights of the Child" - ] - }, - { - "text": "Step up efforts in the field of international development assistance ", - "values": [ - "Technical assistance and cooperation" - ] - }, - { - "text": "Organize awareness-raising programmes in favour of public as well as local and national authorities on issues related to combating human trafficking and relevant laws", - "values": [ - "Human rights education and training", - "Trafficking" - ] - }, - { - "text": "Take all necessary measures to guarantee the exercise of the work of human rights defenders and take measures to fight impunity for perpetrators of attacks and threats against them", - "values": [ - "Human rights defenders" - ] - }, - { - "text": "Reduce the registration period and procedures for national and international NGOs", - "values": [ - "Civil society", - "Freedom of association and peaceful assembly" - ] - }, - { - "text": "Consider the possibility of acceding to the major international human rights treaties, including the Rome Statute of the International Criminal Court ", - "values": [ - "International instruments", - "Justice" - ] - }, - { - "text": "Devise plans and strategies for guaranteeing the right to education and providing girls with equal access to education", - "values": [ - "Right to education", - "Rights of the Child" - ] - }, - { - "text": "Continue, with support from relevant international organisations, its effort to promote gender equality and the well-being of women and girls", - "values": [ - "Rights of the Child", - "Women's rights" - ] - }, - { - "text": "Review laws and practices to ensure that they are compliant with international human rights law", - "values": [ - "International instruments", - "Justice" - ] - }, - { - "text": "Continue measures to ensure the full participation of civil society representing persons with disabilities in the current reform processes of the civil code and the law of civil procedure regarding the matter of legal capacity, in accordance with the Convention on the Rights of Persons with Disabilities", - "values": [ - "CP rights - general", - "Disabilities", - "International instruments" - ] - }, - { - "text": "Adopt the final outcome document approved during the Durban Review Conference.", - "values": [ - "Racial discrimination" - ] - }, - { - "text": "Take appropriate steps to address acts of torture of all persons, including migrants in detention, and to tackle the phenomenon of child labour and ensure that all children of school going age have unimpeded access to education", - "values": [ - "Detention", - "Labour", - "Migrants", - "Right to education", - "Rights of the Child", - "Torture and other CID treatment" - ] - }, - { - "text": "Cooperate fully with ILO to end forced and child labour including in the military, in particular through implementation of a Joint Action Plan and awareness-raising activities ", - "values": [ - "Human rights education and training", - "Labour", - "Rights of the Child" - ] - }, - { - "text": "Take all necessary measures to protect children from all forms of exploitation", - "values": [ - "Rights of the Child" - ] - }, - { - "text": "Strengthen the programmes of the national policy for childhood", - "values": [ - "Rights of the Child" - ] - }, - { - "text": "Continue the cooperation with the Special Procedures and the United Nations High Commissioner for Human Rights in their work to promote and protect human rights", - "values": [ - "Special procedures" - ] - }, - { - "text": "Seek support from the international community in its on-going efforts for the promotion of human rights and development", - "values": [ - "Development", - "Technical assistance and cooperation" - ] - }, - { - "text": "New Zealand is committed to improving in three priority areas: greater economic independence for women, more women in leadership positions, and improving women's safety from violence.", - "values": [ - "Women's rights" - ] - }, - { - "text": "Improve conditions in Antigua and Barbuda's prisons and detention facilities ", - "values": [ - "Detention" - ] - }, - { - "text": "Continue to provide more concern on discrimination against gender, and also continue its efforts in combating discrimination against women", - "values": [ - "Women's rights" - ] - }, - { - "text": "Intensify efforts aimed at establishing a standing coordinating body for the implementation of recommendations and reporting", - "values": [ - "UPR process" - ] - }, - { - "text": "Further implement measures aimed at promoting freedom of expression and association and freedom of the media in line with the most advanced international standards ", - "values": [ - "Freedom of association and peaceful assembly", - "Freedom of opinion and expression", - "Freedom of the press" - ] - }, - { - "text": "Take all necessary steps to ensure that children with a migration background have unhindered and equal access to education", - "values": [ - "Migrants", - "Right to education", - "Rights of the Child" - ] - }, - { - "text": "Sign and ratify the Optional Protocol to the Convention against Torture, the Optional Protocol to the International Covenant on Economic, Social and Cultural Rights, the Optional Protocol to the Convention on the Rights of Persons with Disabilities, and ratify the Optional Protocol to the Convention on the Elimination of All Forms of Discrimination against Women ", - "values": [ - "Detention", - "Disabilities", - "ESC rights - general", - "International instruments", - "Torture and other CID treatment", - "Women's rights" - ] - }, - { - "text": "Amend or regulate existing laws and approve the measures necessary to guarantee to boys, girls and adolescents effective and fair protection, especially from the point of view of gender, against sexual abuse and against exploitation in general ", - "values": [ - "Rights of the Child" - ] - }, - { - "text": "Strengthen the Federal Government's effort to guarantee freedom of religion to everyone in this world largest democracy ", - "values": [ - "Freedom of religion and belief" - ] - }, - { - "text": "Step up efforts to improve the quality of education and allocate adequate resources, and address the issue of highschool dropouts ", - "values": [ - "Right to education" - ] - }, - { - "text": "Take supplementary measures to remedy the situation reported by the NGO ARSIS which would suggest that efforts to reinforce by legislation the fight against exploitation and sexual abuse have not eliminated the problem of child exploitation, in particular for "street children" ", - "values": [ - "Rights of the Child" - ] - }, - { - "text": "Enhance measures to promote and protect the rights of migrant workers, and ensure fairer and safer working conditions as well as stricter labour law enforcement and punishment for employers who violate the law", - "values": [ - "Labour", - "Migrants" - ] - }, - { - "text": "Take specific measures to combat domestic violence against women and children", - "values": [ - "Rights of the Child", - "Women's rights" - ] - }, - { - "text": "Give priority to the ratification/accession to the American Convention on Human Rights in order to adjust its legislation to the standards of the Inter-American system of promotion and protection of human rights ", - "values": [ - "Other" - ] - }, - { - "text": "Accelerate the creation of an independent national human rights institution conforming to the Paris Principles, or extend the mandate of the mediator to human rights", - "values": [ - "National Human Rights Institution" - ] - }, - { - "text": "Bring its legislation into conformity with its international human rights obligations by repealing provisions which may be used to criminalise same-sex activity between consenting adults", - "values": [ - "International instruments", - "Sexual Orientation and Gender Identity" - ] - }, - { - "text": "Take further measures to improve access of persons with disabilities to social, economic and cultural life and combat discrimination on the grounds of disability", - "values": [ - "Disabilities", - "ESC rights - general" - ] - }, - { - "text": "Address gender-based violence more broadly, in the spirit of Security Council resolution 1820 (2008) on women, peace and security.", - "values": [ - "Women's rights" - ] - }, - { - "text": "Take measures to address obstacles to accessing free education ", - "values": [ - "Right to education" - ] - }, - { - "text": "Take into consideration the possibility of acceding to the Rome Statute ", - "values": [ - "International instruments", - "Justice" - ] - }, - { - "text": "Improve its cooperation with the United Nations treaty bodies by submitting overdue reports as a matter of priority ", - "values": [ - "Treaty bodies" - ] - }, - { - "text": "Decriminalize the practice of leaving the country without permission or at least allow free movement of citizens within the country ", - "values": [ - "Freedom of movement" - ] - }, - { - "text": "Revise and strengthen the mechanisms of social integration and reparation for demobilized child soldiers, in the framework of the Victims' Law ", - "values": [ - "International humanitarian law", - "Rights of the Child" - ] - }, - { - "text": "Review the use of the death penalty on minors and mentally disabled persons.", - "values": [ - "Death penalty" - ] - }, - { - "text": "Canada is committed to continuing to support policies and programs that advance the equality of the sexes under the law and promote women's and girls' rights", - "values": [ - "Rights of the Child", - "Women's rights" - ] - }, - { - "text": "Abrogate the provisions of its internal legislation which prohibit, in practice, the union with a person who has family links abroad and those which prohibit reunification of spouses who have not yet reached the minimum age of 24 years ", - "values": [ - "Women's rights" - ] - }, - { - "text": "Adopt national legislation on refugees and asylum-seekers", - "values": [ - "Asylum-seekers - refugees" - ] - }, - { - "text": "Combat impunity by ensuring prompt, thorough and transparent investigation of all violations against, and killing of Human Rights Defenders, the prosecution of perpetrators and access to effective remedies for victims", - "values": [ - "Human rights defenders", - "Impunity" - ] - }, - { - "text": "Intensify efforts to eliminate discrimination against persons with disabilities with a view to improving their access to employment, social services and education", - "values": [ - "Disabilities", - "Labour", - "Right to education" - ] - }, - { - "text": "Increase efforts to develop the education system in the field of human rights and further promote a human rights culture in society", - "values": [ - "Human rights education and training" - ] - }, - { - "text": "Adopt a law to prohibit female genital mutilation", - "values": [ - "Rights of the Child", - "Torture and other CID treatment", - "Women's rights" - ] - }, - { - "text": "Pursue and strengthen actions to bring to an end discrimination against women", - "values": [ - "Women's rights" - ] - }, - { - "text": "Consider extending an open and standing invitation to the Special Procedures ", - "values": [ - "Special procedures" - ] - }, - { - "text": "Give priority to the improvement of the situation of certain vulnerable groups, especially women and children.", - "values": [ - "Rights of the Child", - "Women's rights" - ] - }, - { - "text": "Take further measures on anti-discrimination and equality to address gender stereotypes and discriminatory practices that fuel domestic gender-based violence", - "values": [ - "Women's rights" - ] - }, - { - "text": "Continue its actions to promote gender equality and the full participation of women in the political, economic and social life of the country", - "values": [ - "Women's rights" - ] - }, - { - "text": "Adopt a law guaranteeing equal opportunities for women and men ", - "values": [ - "Women's rights" - ] - }, - { - "text": "Strengthen social integration policies, especially for migrants", - "values": [ - "Migrants" - ] - }, - { - "text": "Continue efforts to combat ill-treatment of children and design policies and programmes to address these practices \n\n", - "values": [ - "Rights of the Child" - ] - }, - { - "text": "Implement all the articles of the International Convention on the Elimination of All Forms of Racial Discrimination.", - "values": [ - "International instruments", - "Racial discrimination" - ] - }, - { - "text": "Ensure equal access to equality maternal health and related services as an integral part of the realization of women's rights", - "values": [ - "Right to health", - "Women's rights" - ] - }, - { - "text": "Improve conditions in schools, and persist in efforts to facilitate access to education, especially for indigenous peoples, and promote the opportunity to access mother language education", - "values": [ - "Indigenous peoples", - "Right to education" - ] - }, - { - "text": "Pay particular attention to refugees especially during placement and the detention of asylum seekers and ensure that account is taken of the principle of the best interests of the rights of the child in any decision relating to asylum seeking minors ", - "values": [ - "Asylum-seekers - refugees", - "Detention", - "Rights of the Child" - ] - }, - { - "text": "Seek from the international community continued meaningful support for the efforts made by Mozambique to enhancing discharge of its human rights obligations ", - "values": [ - "Technical assistance and cooperation" - ] - }, - { - "text": "Intensify its effort in the promotion and protection of the rights of women by, inter alia, ratifying the Convention on the Elimination of All Forms of Discrimination against Women, revising discriminatory legal provisions and effectively enforcing its law to fight against gender-based violence", - "values": [ - "International instruments", - "Women's rights" - ] - }, - { - "text": "Strengthen the identification of human trafficking victims ", - "values": [ - "Trafficking" - ] - }, - { - "text": "Ensure that the laws relating to persons with disabilities are consistent with international standards", - "values": [ - "Disabilities" - ] - }, - { - "text": "Ratify the Convention against Torture and the International Convention for the Protection of All Persons from Enforced Disappearance", - "values": [ - "Enforced disappearances", - "International instruments", - "Torture and other CID treatment" - ] - }, - { - "text": "Ensure the right to practice religion freely without discrimination and in accordance with international human rights standards ", - "values": [ - "Freedom of religion and belief", - "International instruments" - ] - }, - { - "text": "That the new National Human Rights Institution be independent, and be given a strong mandate, capacity and resources for the effective realization at the national level of human rights ", - "values": [ - "National Human Rights Institution" - ] - }, - { - "text": "Encourage the inclusion of boys and girls with disabilities in the general education system ", - "values": [ - "Disabilities", - "Right to education", - "Rights of the Child" - ] - }, - { - "text": "Implement the United Nations Convention relating to the Status of Refugees and cooperate with the Office of the United Nations High Commissioner for Refugees UNHCR in drafting national refugee legislation ", - "values": [ - "Asylum-seekers - refugees", - "International instruments" - ] - }, - { - "text": "Guarantee the Palestinian people access to all basic services, especially drinking water", - "values": [ - "Right to water and sanitation" - ] - }, - { - "text": "As part of its efforts to achieve inclusive education for Roma, take measures necessary to include students and teachers from the specialised education system into the regular system", - "values": [ - "Minorities", - "Right to education" - ] - }, - { - "text": "Further advance in the area of reparations for victims of human rights violations, including the awareness-raising of the population about the situation faced by these persons", - "values": [ - "Human rights education and training" - ] - }, - { - "text": "Continue the promotion of sexual and reproductive rights of women and eliminate discriminatory practices, in conformity with the provisions of the Convention on the Elimination of All Forms of Discrimination against Women", - "values": [ - "International instruments", - "Right to health", - "Women's rights" - ] - }, - { - "text": "Continue to implement the National Action Plan on Asylum Reform and Migration Management to address legal and institutional shortcomings ", - "values": [ - "Asylum-seekers - refugees" - ] - }, - { - "text": "Continue to focus on policies and programmes that would further strengthen the protection and promotion of human rights of its people, including by working closely with the relevant civil society organizations and NGOs", - "values": [ - "Civil society" - ] - }, - { - "text": "Consider further enhancing its cooperation with the human rights treaty mechanisms ", - "values": [ - "Treaty bodies" - ] - }, - { - "text": "Make up the delay in the submission of overdue reports to treaty bodies", - "values": [ - "Treaty bodies" - ] - }, - { - "text": "Pursue its actions in preventing acts of torture and ensure the punishment of persons responsible for acts of torture ", - "values": [ - "Torture and other CID treatment" - ] - }, - { - "text": "Take effective steps to establish a national human rights institution in line with the Paris Principles", - "values": [ - "National Human Rights Institution" - ] - }, - { - "text": "Strengthen the exercise of freedom of expression, assembly, association and participation ", - "values": [ - "Elections", - "Freedom of association and peaceful assembly", - "Freedom of opinion and expression" - ] - }, - { - "text": "Continue measures to combat trafficking in human beings", - "values": [ - "Trafficking" - ] - }, - { - "text": "Ratify ICPPED", - "values": [ - "Enforced disappearances", - "International instruments" - ] - }, - { - "text": "Include in its priority action plan measures to step up efforts towards protecting children from abuse or violence ", - "values": [ - "Rights of the Child" - ] - }, - { - "text": "Take all necessary measures to protect ethnic and religious minorities from all forms of discrimination", - "values": [ - "Freedom of religion and belief", - "Minorities", - "Racial discrimination" - ] - }, - { - "text": "Work with civil society institutions and other partners to ensure a democratic process leading up to the elections in 2015", - "values": [ - "Civil society", - "Elections" - ] - }, - { - "text": "Release immediately and unconditionally all persons currently detained for their peaceful political activities, and guarantee them unrestricted freedom of movement and expression and freedom to participate in political activities ", - "values": [ - "Detention", - "Freedom of association and peaceful assembly", - "Freedom of movement", - "Freedom of opinion and expression" - ] - }, - { - "text": "Intensify its actions in guaranteeing the right to equality and non-discrimination on the basis of sexual orientation, gender identity and/or expression", - "values": [ - "Sexual Orientation and Gender Identity" - ] - }, - { - "text": "Take appropriate measures to further improve the conditions of detainees in prisons, as recommended by the Committee against Torture in 2006 and 2007.", - "values": [ - "Detention", - "Treaty bodies" - ] - }, - { - "text": "Take measures to eradicate traditional stereotypes of women, especially through educational programmes that promote gender equality and women's rights", - "values": [ - "Women's rights" - ] - }, - { - "text": "Continue the dynamic of aligning the national legislation with a number of United Nations human rights instruments, such as the launching of the process to develop the Children\u2019s Code", - "values": [ - "International instruments", - "Rights of the Child" - ] - }, - { - "text": "Continue accession to international human rights instruments including ratifying the Optional Protocol to the Convention on the Elimination of All Forms of Discrimination against Women", - "values": [ - "International instruments", - "Women's rights" - ] - }, - { - "text": "Consider abolition of the death penalty and implementation of an immediate moratorium on executions", - "values": [ - "Death penalty" - ] - }, - { - "text": "Establish an independent National Human Rights Commission in conformity with the Paris Principles", - "values": [ - "National Human Rights Institution" - ] - }, - { - "text": "Re-establish a moratorium on executions with a view to the complete abolition of the death penalty ", - "values": [ - "Death penalty" - ] - }, - { - "text": "Take measures to combat socioeconomic discrimination, which is a cause of continuous violence against Aboriginal women, and to inform them better of their rights", - "values": [ - "Indigenous peoples", - "Women's rights" - ] - }, - { - "text": "Pay more attention to the problems of discrimination against nonethnic Danes and multicultural relations", - "values": [ - "Racial discrimination", - "Right to education" - ] - }, - { - "text": "The new leadership of Niger reaffirms its commitment to continued cooperation with the human rights treaty bodies and pledges to respect the obligations arising from the ratification of the various international human rights treaties to which Niger is a party. The authorities will cooperate with the Human Rights Council and implement all the recommendations of the universal periodic review", - "values": [ - "International instruments", - "UPR process" - ] - }, - { - "text": "Strengthen its investigations of sex crimes committed overseas by Swedish nationals and ensure that those who have travelled abroad to purchase sexual services, especially from children, can be prosecuted in Sweden", - "values": [ - "Rights of the Child" - ] - }, - { - "text": "Revise the law regulating the right of public assembly by, inter alia, specifying the prohibited conduct and repealing excessive sanctions to ensure better compliance with international standards", - "values": [ - "Freedom of association and peaceful assembly" - ] - }, - { - "text": "Update and make more comprehensive its National Action Plan against Racism, in consultation with civil society and concerned communities", - "values": [ - "Racial discrimination" - ] - }, - { - "text": "Ratify CRC, which it signed in 2008, and submit its outstanding report ", - "values": [ - "International instruments", - "Rights of the Child", - "Treaty bodies" - ] - }, - { - "text": "Consider cooperating more actively with special procedures, extending a standing invitation, responding to questions and answering questionnaires on thematic issues ", - "values": [ - "Special procedures", - "Treaty bodies" - ] - }, - { - "text": "Provide greater support for poor families and children and reduce social inequality", - "values": [ - "Poverty", - "Rights of the Child" - ] - }, - { - "text": "Reform the detention system to bring it in line with international standards, including by implementing safeguards such as electronic recordings of the entire interrogation process, and ensuring that detainees are not questioned without the presence of a lawyer and have prompt and unhindered access to legal counsel", - "values": [ - "Detention" - ] - }, - { - "text": "Continue to fight to overcome its challenges with the assistance of the international community ", - "values": [ - "Technical assistance and cooperation" - ] - }, - { - "text": "Develop and implement the national gender policy in order to ensure that the principle of equal gender representation is respected", - "values": [ - "Women's rights" - ] - }, - { - "text": "Take all necessary measures to prevent torture and other cruel, inhuman and degrading treatment or punishment, in particular in places of detention.", - "values": [ - "Detention", - "Torture and other CID treatment" - ] - }, - { - "text": "Allocate sufficient funding to the poverty eradication strategy of the Republic of Korea", - "values": [ - "Poverty" - ] - }, - { - "text": "Pursue the establishment of a prison system with an institutional, centralized leadership, strengthening the National Rehabilitation Institute. Continue to improve the material conditions of detention and of administration of detention, with an emphasis on women and foreigners deprived of liberty", - "values": [ - "Detention" - ] - }, - { - "text": "Continue and intensify its efforts to prevent and eliminate all forms of de facto discrimination against ethnic groups and persons of immigrant backgrounds ", - "values": [ - "Migrants", - "Racial discrimination" - ] - }, - { - "text": "Step up efforts to implement the strategy to ensure that education is provided to all segment of the population", - "values": [ - "Right to education" - ] - }, - { - "text": "Favourably consider issuing a standing invitation to the special procedures, which would help to strengthen the relationship between Rwanda and the Council", - "values": [ - "Special procedures" - ] - }, - { - "text": "Increase its endeavours on promotion and protection of women's rights especially in rural areas", - "values": [ - "Women's rights" - ] - }, - { - "text": "Pursue its efforts to provide access to education to all children", - "values": [ - "Right to education", - "Rights of the Child" - ] - }, - { - "text": "Increase human and technical resources for the effective implementation of the Law Against Domestic Violence (LADV)", - "values": [ - "Rights of the Child", - "Women's rights" - ] - }, - { - "text": "Introduce a prohibition in legislation on the functioning of racist organisations, bring the Criminal Code in line with article 4 of the International Convention on the Elimination of All Forms of Racial Discrimination (ICERD), so as to criminalize incitement to hatred on racial grounds", - "values": [ - "International instruments", - "Racial discrimination" - ] - }, - { - "text": "Strengthen its efforts to promote tolerance and cultural understanding of the Roma population in the aim of eliminating discrimination including in regard to access to education and employment and participation in politics", - "values": [ - "Labour", - "Minorities", - "Racial discrimination", - "Right to education" - ] - }, - { - "text": "Continue its efforts to effectively implement its existing National Action Programmes and enforce legislation recently adopted ", - "values": [ - "General" - ] - }, - { - "text": "Observe the principle of non-discrimination and the international human rights agreements to which the Democratic People's Republic of Korea is a party in its law and practice", - "values": [ - "International instruments" - ] - }, - { - "text": "Review and strengthen existing legislation prohibiting violence against women and discrimination on any grounds - allocate significant financial and human resources to enforce implementation of policy, and increase accountability measures for acts of violence by state actors ", - "values": [ - "Human rights violations by state agents", - "Women's rights" - ] - }, - { - "text": "Continue efforts taken at the legislative and executive level to put an end to the human trafficking and hold accountable those responsible", - "values": [ - "Trafficking" - ] - }, - { - "text": "Developing programmes aimed at promoting the awareness of police on human rights values and principles", - "values": [ - "Human rights education and training" - ] - }, - { - "text": "Allow minors to change their legal gender by allowing the person exercising parental authority over the minor to file an application", - "values": [ - "Rights of the Child", - "Sexual Orientation and Gender Identity" - ] - }, - { - "text": "Immediately halt the violence against its citizens, which is causing many deaths and injuries, including those of women and children", - "values": [ - "Extrajudicial executions", - "Public security", - "Rights of the Child", - "Women's rights" - ] - }, - { - "text": "Ensure the effective implementation of the National Action Plan to strengthen human rights in Tanzania", - "values": [ - "General" - ] - }, - { - "text": "Issue an immediate moratorium on the use of the death penalty, particularly in instances of mass trials", - "values": [ - "Death penalty" - ] - }, - { - "text": "Continue its efforts and take further initiatives to combat hate crimes based on sexual orientation", - "values": [ - "Sexual Orientation and Gender Identity" - ] - }, - { - "text": "Better protect the rights of ethnic and other minorities, including so-called "settlers", in particular their rights of citizenship and indigenous rights, and to ensure their equal and non-discriminatory treatment in the whole country", - "values": [ - "Indigenous peoples", - "Minorities" - ] - }, - { - "text": "Strengthen efforts and take additional steps, in particular beyond the adoption of legislation, to prevent discrimination on the basis of ethnicity in all aspects of daily life ", - "values": [ - "Racial discrimination" - ] - }, - { - "text": "Ensure that existing statutes prohibiting gender discrimination are properly implemented and enforced, and augment, through effective implementation and enforcement, efforts to decrease the existing wage gap between women and men ", - "values": [ - "Women's rights" - ] - }, - { - "text": "Effectively address the recommendations of human rights treaty bodies and special procedures with respect to its human rights legislation, particularly on minorities, women and children, in order to bring them in line with international human rights law ", - "values": [ - "International instruments", - "Minorities", - "Rights of the Child", - "Special procedures", - "Treaty bodies", - "Women's rights" - ] - }, - { - "text": "Put in place mechanisms to systematically collect and analyse disaggregated data to enable assessment of the effectiveness of policies and initiatives aimed at preventing and eliminating violence against women ", - "values": [ - "Women's rights" - ] - }, - { - "text": "Suspend summary returns to Greece", - "values": [ - "Asylum-seekers - refugees", - "Migrants" - ] - }, - { - "text": "Develop a national action plan for human rights education that consists of a thorough needs assessment and programmes for human rights education at all levels ", - "values": [ - "Human rights education and training" - ] - }, - { - "text": "Continue activities to protect and promote the rights of children by taking steps - such as implementing the Action Plan on Child Soldiers - to eliminate the unlawful recruitment and use of child soldiers ", - "values": [ - "International humanitarian law", - "Rights of the Child" - ] - }, - { - "text": "Take further steps to address discrimination against women, especially in the work place", - "values": [ - "Labour", - "Women's rights" - ] - }, - { - "text": "Further pursue efforts to increase the level of representation of women in society, including their appointment to the higher governmental posts", - "values": [ - "Women's rights" - ] - }, - { - "text": "Take appropriate measures to meet the needs of indigenous and rural populations that still have clear difficulties to access to safe drinking water and sanitation", - "values": [ - "Indigenous peoples", - "Right to water and sanitation" - ] - }, - { - "text": "Protect people with disabilities, interned in psychiatric hospitals, against acts of violence, abuse and ill-treatment, through the establishment of independent monitoring mechanisms", - "values": [ - "Disabilities", - "Torture and other CID treatment" - ] - }, - { - "text": "Continue the fight against trafficking of human beings and international cooperation in this respect", - "values": [ - "Trafficking" - ] - }, - { - "text": "Make enforced disappearance a criminal offence and ensure that all allegations of enforced disappearance and extrajudicial executions are thoroughly investigated and those responsible brought to justice", - "values": [ - "Enforced disappearances", - "Extrajudicial executions" - ] - }, - { - "text": "Adopt a comprehensive national framework to combat trafficking in women and girls", - "values": [ - "Trafficking", - "Women's rights" - ] - }, - { - "text": "Continue efforts for greater representation of women in the political process and their participation in public life", - "values": [ - "Women's rights" - ] - }, - { - "text": "Actively consider specific legislation in the area of gender discrimination, including violence against women", - "values": [ - "Rights of the Child", - "Women's rights" - ] - }, - { - "text": "Step up collaboration with regional and international actors to improve food security by working towards achieving sustainable production and distribution of food", - "values": [ - "Right to food" - ] - }, - { - "text": "Effectively implement the relevant policies in the field of combating domestic violence in order to prevent domestic violence and to ensure impartial and prompt investigation and prosecution of perpetrators", - "values": [ - "Rights of the Child", - "Women's rights" - ] - }, - { - "text": "Guarantee adequate consultation and full participation of indigenous peoples in all legislative and administrative measures affecting them, protect indigenous people including indigenous human rights defenders from threats and attacks, and protect their land rights, in particular by strengthening protection programmers, completing pending land demarcation processes and providing adequate funding and capacity to the Indian National Foundation (FUNAI)", - "values": [ - "Human rights defenders", - "Indigenous peoples", - "Right to land" - ] - }, - { - "text": "Bring appropriate solutions to the problems of disparities linked to economic, social and cultural rights, as highlighted in the national report ", - "values": [ - "ESC rights - general" - ] - }, - { - "text": "Allocate more resources to the policies in favour of children ", - "values": [ - "Rights of the Child" - ] - }, - { - "text": "Protect and guarantee the right to life and to a fair trial also in the context of the campaign against drug trafficking, and take all necessary steps to guarantee a proportionate use of force by the security forces", - "values": [ - "CP rights - general", - "Public security" - ] - }, - { - "text": "Consider ratifying the International Convention for the Protection of All Persons from Enforced Disappearance and establish an independent commission to carry out impartial investigations in a prompt, impartial and effective manner into the alleged cases of enforced disappearances reported in the country", - "values": [ - "Enforced disappearances", - "International instruments" - ] - }, - { - "text": "Develop and enact a comprehensive public outreach plan for transitional justice processes, including full participation by all relevant ministries in that outreach ", - "values": [ - "Justice" - ] - }, - { - "text": "Cooperate fully with the United Nations mechanisms established to follow the situation of human rights in the occupied Arab territories, especially the Special Committee to investigate Israeli practices affecting the human rights of the Palestinian people and other Arabs of the territories occupied by Israel since 1967, and allow the Committee to visit the occupied Syrian Golan", - "values": [ - "Special procedures" - ] - }, - { - "text": "Continue making efforts to promote civil, political, economic, social, environmental and cultural rights in all areas of society", - "values": [ - "CP rights - general", - "ESC rights - general", - "Environment" - ] - }, - { - "text": "Ensure human rights standards are observed in the current government\u2019s conduct of its campaigns against illegal drugs", - "values": [ - "Other" - ] - }, - { - "text": "Take measures to limit the powers of public prosecutors and bring criminal procedure into greater conformity with article 14 of the International Covenant on Civil and Political Rights", - "values": [ - "International instruments", - "Justice" - ] - }, - { - "text": "Urgently adopt all the necessary measures to foster inclusive dialogue and provide minorities with adequate protection", - "values": [ - "Minorities" - ] - }, - { - "text": "Consider the establishment of a national human rights institution in conformity with the Paris Principles ", - "values": [ - "National Human Rights Institution" - ] - }, - { - "text": "Undertake an independent evaluation of its policy of administrative detention with a view to ending this practice, guaranteeing that all those detained without exception are brought before a judge and have immediate access to a lawyer", - "values": [ - "Detention" - ] - }, - { - "text": "Ratify international human rights treaties: Second Optional Protocol to the International Covenant on Civil and Political Rights, aiming at the abolition of the death penalty, Convention on the Rights of Persons with Disabilities ", - "values": [ - "Death penalty", - "Disabilities", - "International instruments" - ] - }, - { - "text": "Strengthen its criminal legislation on domestic violence to notably make sure that such violence is considered as an aggravating circumstance ", - "values": [ - "Rights of the Child", - "Women's rights" - ] - }, - { - "text": "Introduce a legal prohibition of corporal punishment as a punitive and corrective measure in the school system and in the family", - "values": [ - "Rights of the Child", - "Torture and other CID treatment" - ] - }, - { - "text": "Compulsory and free education: The Educational (Compulsory Education) Order 1984 stipulates in its section 3 (1) that a child who is of school age, being the period (a) commencing at the beginning of the school year during which he or she reaches the age of (seven) years, and (b) ending at the end of the school year during which he or she reaches the age of fifteen years. 39. Section 3 (1) (a) of the Compulsory Order 1984 had been amended and now reads "commencing at the beginning of the school year during which he or she reaches the age of six years." Education is therefore compulsory for all children aged 6 to 15 years old.", - "values": [ - "Right to education", - "Rights of the Child" - ] - }, - { - "text": "Keep up the positive momentum in upgrading its laws and institutions while ensuring their effective implementation, in particular in the areas of education of all and the rights of women", - "values": [ - "Right to education", - "Women's rights" - ] - }, - { - "text": "Immediately halt the execution of juveniles and political prisoners and, furthermore, establish an official moratorium", - "values": [ - "Death penalty", - "Detention", - "Freedom of opinion and expression", - "Rights of the Child" - ] - }, - { - "text": "Approve its draft refugee law to ensure full realization of refugees' rights, in particular protection of the principle of non-refoulement, and pay special attention to measures aimed at protecting vulnerable groups such as women at risk, victims of torture and unaccompanied children.", - "values": [ - "Asylum-seekers - refugees" - ] - }, - { - "text": "Recommend the accession to the Optional Protocol to the Convention against Torture and the establishment of a national preventive mechanism accordingly.", - "values": [ - "Detention", - "International instruments", - "Torture and other CID treatment" - ] - }, - { - "text": "Continue strengthening its efforts and measures to consolidate the State of Law and the effective performance of administration of justice ", - "values": [ - "Justice" - ] - }, - { - "text": "Implement the recommendations made by the Human Rights Committee and the Committee against Torture to put in place legislative measures to sanction manifestations of repeated hate speech and intolerance", - "values": [ - "Racial discrimination", - "Treaty bodies" - ] - }, - { - "text": "Adopt a comprehensive national housing strategy with a view to ensuring access to adequate and affordable housing", - "values": [ - "Right to housing" - ] - }, - { - "text": "Use alternatives to detaining children, and enact regulations to ensure greater protection of children's rights particularly such as the use of restraints and strip searches", - "values": [ - "Detention", - "Rights of the Child" - ] - }, - { - "text": "Enforce relevant national policies and legislation to prevent and address the marginalisation and exclusion of women ", - "values": [ - "Women's rights" - ] - }, - { - "text": "Adopt effective measures for the protection of and assistance to victims of gender-based violence and ensure that all cases of gender-based violence are duly investigated and perpetrators prosecuted", - "values": [ - "Women's rights" - ] - }, - { - "text": "Adopt and ratify the Nordic Sami Convention by year 2016 ", - "values": [ - "Indigenous peoples" - ] - }, - { - "text": "Explicitly prohibit death penalty for offences committed by persons below 18 years of age, pursuant to the General Assembly resolution adopted on 20 December 2012 and Article 37 of the Convention on the Rights of the Child", - "values": [ - "Death penalty", - "International instruments", - "Rights of the Child" - ] - }, - { - "text": "Consider extending a standing invitation to all special procedures mandate holders of the Human Rights Council", - "values": [ - "Special procedures" - ] - }, - { - "text": "Make further progress in changing the regime which criminalizes the exercise of the right to conscientious objection in relation to obligatory military service", - "values": [ - "Freedom of religion and belief" - ] - }, - { - "text": "Continue with efforts to combat HIV/AIDS", - "values": [ - "HIV - Aids" - ] - }, - { - "text": "Introduce legislation to prohibit corporal punishment of children in the home and in all other settings, including as a sentence under traditional forms of justice", - "values": [ - "Rights of the Child", - "Torture and other CID treatment" - ] - }, - { - "text": "Adopt measures to guarantee the right to life, liberty and security of person, particularly to prevent the practice of mob justice as well as impunity for those who are guilty, facilitate the activities of human rights organizations as they combat those practices", - "values": [ - "Civil society", - "Impunity", - "Public security" - ] - }, - { - "text": "Ratification of the International Convention on the Protection of the Rights of All Migrant Workers and Members of Their Families", - "values": [ - "International instruments", - "Labour", - "Migrants" - ] - }, - { - "text": "Ratify CRC-OP-SC", - "values": [ - "International instruments", - "Rights of the Child" - ] - }, - { - "text": "Continue to fight poverty with active support of the international community and through strengthening the capacity to implement and monitor poverty reduction strategies at the local and community levels ", - "values": [ - "Poverty", - "Technical assistance and cooperation" - ] - }, - { - "text": "Speed up Seychelles' domestic processes with a view to ratifying international human rights treaties", - "values": [ - "International instruments" - ] - }, - { - "text": "Further strengthen efforts at combating HIV/AIDS, especially with a focus on adolescents and young adults, such as through awareness-raising ", - "values": [ - "HIV - Aids" - ] - }, - { - "text": "Report back to the Working Group of the UPR on the subject of access to justice, at the next review of Ghana for the UPR", - "values": [ - "Justice", - "UPR process" - ] - }, - { - "text": "Ratify the Second Optional Protocol to the International Covenant on Civil and Political Rights, and the Rome Statute", - "values": [ - "Death penalty", - "International instruments", - "Justice" - ] - }, - { - "text": "is in the process of building a new prison that will enable a better separation of prisoners and improve prison conditions in the country in general. When the new prison will be ready in 2015, two prisons that have not met the highest standards will be closed. Iceland will in addition continue to examine ways to achieve the goal set forth in the Convention on the Rights of the Child to separate juvenile prisoners from adult", - "values": [ - "Detention", - "International instruments", - "Rights of the Child" - ] - }, - { - "text": "Ensure that the CNDHC has the necessary resources to comply with the Paris Principles ", - "values": [ - "National Human Rights Institution" - ] - }, - { - "text": "Ratify the Optional Protocol to the International Covenant on Economic, Social and Cultural Rights and the International Convention on the Protection of All Persons from Enforced Disappearance", - "values": [ - "ESC rights - general", - "Enforced disappearances", - "International instruments" - ] - }, - { - "text": "Continue to take effective measures to eliminate social inequalities such as skewed distribution of income and to promote the sound and sustained development of the country's economy and society ", - "values": [ - "Development" - ] - }, - { - "text": "Extend a standing invitation to the Special Procedures mandate holders of the Human Rights Council ", - "values": [ - "Special procedures" - ] - }, - { - "text": "Consider establishing an independent body for the promotion and monitoring of the Convention on the Rights of the Child ", - "values": [ - "International instruments", - "Rights of the Child" - ] - }, - { - "text": "Complete the process of preparation for the ratification of the Convention against Torture and Other Cruel, Inhuman or Degrading Treatment or Punishment", - "values": [ - "International instruments", - "Torture and other CID treatment" - ] - }, - { - "text": "Extend a standing invitation to the Special Procedures of the Human Rights Council and accept the competence of the treaty bodies in complaints, inquiry and urgent action procedures", - "values": [ - "Special procedures", - "Treaty bodies" - ] - }, - { - "text": "Continue its work to prevent the forced labour of women especially in the sugar cane plantations ", - "values": [ - "Labour", - "Women's rights" - ] - }, - { - "text": "Establish a strategy to eliminate cultural practices against women ", - "values": [ - "Women's rights" - ] - }, - { - "text": "Take actions to combat racism, xenophobia, and religious intolerance and hatred ", - "values": [ - "Freedom of religion and belief", - "Racial discrimination" - ] - }, - { - "text": "Take concrete measures for the improvement of the electoral process, including enhancing the transparency of voters' lists and preventing election violence and intimidation and creating an environment for free election campaigning", - "values": [ - "Elections" - ] - }, - { - "text": "Sign and ratify the Optional Protocol to the Convention against Torture (OP-CAT)", - "values": [ - "Detention", - "International instruments", - "Torture and other CID treatment" - ] - }, - { - "text": "Revise comprehensively its national legislation in order to bring it in line with its Constitution and with the Convention on the Elimination of All Forms of Discrimination against Women", - "values": [ - "International instruments", - "Women's rights" - ] - }, - { - "text": "Promptly ratify the Indigenous and Tribal Peoples Convention, 1989 (No. 169) of the International Labour Organization (ILO)", - "values": [ - "Indigenous peoples", - "International instruments" - ] - }, - { - "text": "Enact the draft child protection act and ensure its compatibility with the respective obligations under the Convention on the Rights of the Child, and strengthen cooperation with relevant national stakeholders in the area of eliminating child abuse and victims' rehabilitation", - "values": [ - "International instruments", - "Rights of the Child" - ] - }, - { - "text": "Pursue efforts to combat racism", - "values": [ - "Racial discrimination" - ] - }, - { - "text": "Provide the Ombudsman institution with adequate financial and human resources so that it can fulfil its mandate effectively", - "values": [ - "National Human Rights Institution" - ] - }, - { - "text": "Complete the process of establishing a national human rights institution in conformity with the Paris Principles \n", - "values": [ - "National Human Rights Institution" - ] - }, - { - "text": "Make further improvements in the socioeconomic conditions with the view to promoting human rights in the country", - "values": [ - "ESC rights - general" - ] - }, - { - "text": "Present to the Parliament and support the approval, as soon as possible, of a new comprehensive draft bill against racism, racial discrimination, xenophobia and all related forms of intolerance", - "values": [ - "Racial discrimination" - ] - }, - { - "text": "Enact specific laws and policies in order to protect human rights defenders", - "values": [ - "Human rights defenders" - ] - }, - { - "text": "Take measures to guarantee the independence of national institutions", - "values": [ - "National Human Rights Institution" - ] - }, - { - "text": "Speed up the process of repatriating Mauritanians who in the past had been expelled, and granting them and their families a certificate of citizenship. Those who returned to Mauritania before the introduction of the corrective measures should also have their nationality re-established ", - "values": [ - "Other" - ] - }, - { - "text": "Strengthen the promotion of political participation of women and youth", - "values": [ - "Rights of the Child", - "Women's rights" - ] - }, - { - "text": "Intensify bilateral and multilateral cooperation with neighbouring countries to combat acts of trafficking in women and girls ", - "values": [ - "Rights of the Child", - "Trafficking", - "Women's rights" - ] - }, - { - "text": "Take further measures for the implementation of the Strategy on Integrated Education and to provide adequate State funding to be allocated for the implementation of this Strategy ", - "values": [ - "Right to education" - ] - }, - { - "text": "Continue efforts to address the problem of domestic violence against women", - "values": [ - "Rights of the Child", - "Women's rights" - ] - }, - { - "text": "Prohibit hate speech and prosecute perpetrators of racist crimes ", - "values": [ - "Racial discrimination" - ] - }, - { - "text": "Approve a legislative initiative that proscribes the death penalty and ratify the Second Optional Protocol to the International Covenant on Civil and Political Rights, aiming at the abolition of the death penalty", - "values": [ - "Death penalty", - "International instruments" - ] - }, - { - "text": "Investigate all reports of torture and other ill-treatment in places of detention ", - "values": [ - "Detention", - "Torture and other CID treatment" - ] - }, - { - "text": "Ratify the Hague Convention on Civil Aspects of International Child Abduction, 1980.", - "values": [ - "International instruments", - "Rights of the Child" - ] - }, - { - "text": "Withdraw reservations to CAT and CRC ", - "values": [ - "International instruments", - "Rights of the Child", - "Torture and other CID treatment" - ] - }, - { - "text": "Strengthen efforts in the fight against racism, racial discrimination, xenophobia and related intolerance ", - "values": [ - "Racial discrimination" - ] - }, - { - "text": "Continue its efforts to harmonize its normative framework with its international human rights obligations ", - "values": [ - "Other" - ] - }, - { - "text": "Amend the Criminal Code in order to criminalize the recruitment of children under the age of 18 years into armed forces and establish a mechanism to provide former child soldiers with the necessary assistance for their reintegration in society", - "values": [ - "International humanitarian law", - "Rights of the Child" - ] - }, - { - "text": "Adopt appropriate measures to combat sexual abuse of girls in school, backed-up by the necessary human, technical and financial resources for any mechanisms", - "values": [ - "Right to education", - "Rights of the Child", - "Women's rights" - ] - }, - { - "text": "Take effective and rapid steps through the enactment of legislation to combat hate speech, Islamophobia and aggressive racist acts, which are increasingly prevalent in society, and ensure their effects are addressed in the long term", - "values": [ - "Freedom of religion and belief", - "Racial discrimination" - ] - }, - { - "text": "Continue to constructively cooperate with the universal mechanisms for the promotion and protection of human rights, and to dialogue with social and human rights organizations", - "values": [ - "Civil society", - "Technical assistance and cooperation" - ] - }, - { - "text": "Introduce a moratorium on the death penalty with a view to abolishing it", - "values": [ - "Death penalty" - ] - }, - { - "text": "Maintain judiciary recourse in the naturalization process.", - "values": [ - "Justice" - ] - }, - { - "text": "Take measures to resolve the cases of delayed justice and impunity, including through judicial reforms ", - "values": [ - "Impunity", - "Justice" - ] - }, - { - "text": "Continue strengthening the measures taken to reduce violence against women and their children", - "values": [ - "Rights of the Child", - "Women's rights" - ] - }, - { - "text": "Take steps to fully implement the ratified international instruments ", - "values": [ - "International instruments" - ] - }, - { - "text": "Take effective measures against enforced disappearances by strengthening the Commission of Inquiry and expanding their mandate to all security agencies", - "values": [ - "Enforced disappearances" - ] - }, - { - "text": "Provide its National Human Rights Commission with the resources it needs to publicise its recommendations and reinforce its independence", - "values": [ - "National Human Rights Institution" - ] - }, - { - "text": "Establish a de jure moratorium on the use of the death penalty with a view to its abolition and support the General Assembly resolution on the use of the death penalty ", - "values": [ - "Death penalty" - ] - }, - { - "text": "Improve identification of victims of trafficking in human beings, by establishing an efficient inter-agency mechanism of identification and referral of such cases", - "values": [ - "Trafficking" - ] - }, - { - "text": "Finalize the A-status accreditation and ensure functioning of the National Human Rights Commission", - "values": [ - "National Human Rights Institution" - ] - }, - { - "text": "Conduct a thorough, prompt and impartial investigation on the assassinations of journalists and human rights defenders including those as referred to in paragraphs 18, 21, 24 and 58 of the report, and bring the perpetrators to justice ", - "values": [ - "Freedom of the press", - "Human rights defenders" - ] - }, - { - "text": "Enforce legislation that prohibits discrimination, particularly based on gender, race and belief, to improve the economic opportunities and conditions of work for women and minority groups", - "values": [ - "Labour", - "Minorities", - "Racial discrimination", - "Women's rights" - ] - }, - { - "text": "Continue stepping up efforts to establish an independent national human rights institution in conformity with the Paris Principles", - "values": [ - "National Human Rights Institution" - ] - }, - { - "text": "Take measures to align the legislation on mass events with international standards in order to protect freedom of association, including through the elimination of the requirement to request a licence prior to the organization of assemblies and public demonstrations", - "values": [ - "Freedom of association and peaceful assembly" - ] - }, - { - "text": "Strengthen efforts to secure Maori political participation at the national level aiming on increasing Maori participation in local governance ", - "values": [ - "Indigenous peoples" - ] - }, - { - "text": "Pay particular attention to the improvement of prison conditions ", - "values": [ - "Detention" - ] - }, - { - "text": "Consider ratifying the OP-CRPD ", - "values": [ - "Disabilities", - "International instruments" - ] - }, - { - "text": "Continue and strengthen the efforts to eliminate impunity and ensure that all alleged perpetrators of crimes against international human rights and humanitarian law are brought to justice. ", - "values": [ - "Impunity", - "International humanitarian law", - "International instruments" - ] - }, - { - "text": "Lift the ban on Hijab and respect the right of Muslim women to express their beliefs", - "values": [ - "Freedom of religion and belief", - "Minorities", - "Women's rights" - ] - }, - { - "text": "Address, as a matter of urgency, the reportedly widespread violence against women, including a pursue of appropriate public awareness raising campaigns against the traditional negative social attitudes and stereotypes ", - "values": [ - "Human rights education and training", - "Women's rights" - ] - }, - { - "text": "Amend relevant regulations to align them with the international standards on freedom of expression and freedom of the press ", - "values": [ - "Freedom of opinion and expression", - "Freedom of the press" - ] - }, - { - "text": "Continue the process of national reconciliation, so that all citizens, independent of ethnic background, may be able to contribute to development of the country in harmony with the principles of fundamental human rights", - "values": [ - "Justice", - "Minorities" - ] - }, - { - "text": "Expedite the formulation of a national action plan on human rights", - "values": [ - "General" - ] - }, - { - "text": "Undertake impartial, independent and comprehensive investigations into the 2008 election-related violence, including cases of rape, with guarantees of protection for witnesses, survivors and their families, and prosecute the alleged perpetrators ", - "values": [ - "Elections", - "Justice" - ] - }, - { - "text": "Continue to make further efforts in the promotion and protection of human rights in accordance with the needs and requirements of Libyan society", - "values": [ - "General" - ] - }, - { - "text": "Promote the completion of the existing initiative to establish a national human rights institution, in compliance with the Paris Principles", - "values": [ - "National Human Rights Institution" - ] - }, - { - "text": "Allocate the necessary financial resources to the National Programme to Combat the Practice of Excision, so that it reaches the goals set for the period 2010-2014", - "values": [ - "Rights of the Child", - "Torture and other CID treatment", - "Women's rights" - ] - }, - { - "text": "Ratify promptly the International Convention on the Protection of the Rights of All Migrant Workers and Members of their Families ICRMW", - "values": [ - "International instruments", - "Labour", - "Migrants" - ] - }, - { - "text": "Duly investigate all cases of abuse of migrant domestic workers, bring perpetrators to justice and allow migrant workers full access to legal remedies", - "values": [ - "Labour", - "Migrants" - ] - }, - { - "text": "Establish a national action plan to prevent child marriage", - "values": [ - "Rights of the Child" - ] - }, - { - "text": "Put on trial its gross violators of human rights and its war criminals ", - "values": [ - "Justice" - ] - }, - { - "text": "Increase its efforts to combat racism, intolerance and discrimination through awareness-raising, information, education and follow-up campaigns addressed to the whole society, and adopt effective measures to combat unemployment among migrants, refugees and asylum seekers", - "values": [ - "Asylum-seekers - refugees", - "Development", - "Human rights education and training", - "Migrants", - "Racial discrimination" - ] - }, - { - "text": "Take measures aiming at further ensuring for the administrative detainees, duly supported by legal assistance, their right of taking proceedings before a court to challenge the lawfulness of their detention", - "values": [ - "Detention" - ] - }, - { - "text": "Develop statistics and indicators on gender-based violence in order to design and implement public policies in an effective manner", - "values": [ - "Women's rights" - ] - }, - { - "text": "Establish a national human rights commission, provide it with necessary resources for its proper functioning and ensure its conformity with the Paris Principles ", - "values": [ - "National Human Rights Institution" - ] - }, - { - "text": "Further develop the policy in the field of preservation and development of the cultural identity of persons belonging to national minorities and ethnic groups", - "values": [ - "Minorities" - ] - }, - { - "text": "Establish a moratorium on the death penalty with a view to its abolition", - "values": [ - "Death penalty" - ] - }, - { - "text": "Strengthen measures aimed at providing protection and assistance to vulnerable segments of society, including those children affected by natural disasters to protect them from trafficking and exploitation at work", - "values": [ - "Environment", - "Rights of the Child", - "Trafficking" - ] - }, - { - "text": "Implement specific measures to promote inclusive education of children with disabilities", - "values": [ - "Disabilities", - "Rights of the Child" - ] - }, - { - "text": "Continue its work towards the speedy ratification of CPRD", - "values": [ - "Disabilities", - "International instruments" - ] - }, - { - "text": "Deepen the process to abolish the death penalty by implementing a de jure moratorium on the use of death penalty and subsequently by abolishing it permanently", - "values": [ - "Death penalty" - ] - }, - { - "text": "Ratify the international convention on protection of migrant workers and members of their families", - "values": [ - "International instruments", - "Labour", - "Migrants" - ] - }, - { - "text": "Consider the possibility of developing a national strategy to address the rights of indigenous peoples and other groups that are subject to discrimination", - "values": [ - "Indigenous peoples", - "Racial discrimination" - ] - }, - { - "text": "Ratify and fully implement the Convention against Torture and its Optional Protocol, and the Optional Protocol to the Convention on the Elimination of All Forms of Discrimination against Women", - "values": [ - "Detention", - "International instruments", - "Torture and other CID treatment", - "Women's rights" - ] - }, - { - "text": "In cooperation with the relevant bodies, follow up on the implementation of voluntary commitments as reflected in its national report and consider their inclusion in its national human rights strategy.", - "values": [ - "UPR process" - ] - }, - { - "text": "Intensify collaboration with international mechanisms, and specify the concrete means for the implementation of its international commitments ", - "values": [ - "General" - ] - }, - { - "text": "Ensure equal access to education for all children, including migrant and refugee children, by abolishing legal and administrative preconditions such as the propiska", - "values": [ - "Asylum-seekers - refugees", - "Migrants", - "Right to education", - "Rights of the Child" - ] - }, - { - "text": "Improve the procedures used to identify victims and to address the special needs of child victims of trafficking", - "values": [ - "Rights of the Child", - "Trafficking" - ] - }, - { - "text": "Consider less restrictive alternatives to blanket detention of migrants and guarantee to all migrants the right to seek judicial review of the lawfulness of their detention and to obtain a determination without delay and release if detention is determined unlawful", - "values": [ - "Detention", - "Migrants" - ] - }, - { - "text": "Take measures to ensure that Constitutional and legal protections for religious minorities are upheld and in particular that their places of worship are protected, including from violent attack ", - "values": [ - "Freedom of religion and belief", - "Minorities" - ] - }, - { - "text": "Adopt the necessary measures to proceed, as soon as possible, to abolishing the de jure death penalty and consider the possibility to adhere to ICCPR-OP2 ", - "values": [ - "Death penalty", - "International instruments" - ] - }, - { - "text": "Consider the issue of ratification of the Convention on the Rights of Persons with Disabilities", - "values": [ - "Disabilities", - "International instruments" - ] - }, - { - "text": "Reduce citizen insecurity in a sustainable, long-term perspective, addressing the root causes of violence and combating impunity while respecting human rights", - "values": [ - "Impunity", - "Public security" - ] - }, - { - "text": "Refrain from interfering in the activities of human rights defenders and non-governmental organizations and ensure a safe and enabling environment for their work", - "values": [ - "Civil society", - "Human rights defenders" - ] - }, - { - "text": "Share its experience with regards to fighting rebellion and terrorism and how to overcome them, as well as on the measures taken to improve its social and economic development.", - "values": [ - "Development", - "Public security" - ] - }, - { - "text": "Continue to carry out reforms in the country in order to fully ensure the protection of human rights and the rule of law in the country, and continue to exchange best practices on combating human trafficking, advancement of women and protection of the rights of the child and family with all United Nations member countries ", - "values": [ - "Justice", - "Rights of the Child", - "Trafficking", - "Women's rights" - ] - }, - { - "text": "Ensure the issuance of birth registration documents for all children born on its territory", - "values": [ - "Rights of the Child", - "Statelessness and the right to nationality" - ] - }, - { - "text": "Take the necessary steps to improve education infrastructure with the aim of ensuring girls' access to school", - "values": [ - "Right to education", - "Rights of the Child", - "Women's rights" - ] - }, - { - "text": "Work in close cooperation with the OHCHR in order to establish an OHCHR office within Guinea as quickly as possible ", - "values": [ - "Other" - ] - }, - { - "text": "Respond to the suggestion made by the special procedures in paragraph 69 (n) of document A/68/284 regarding cases of Alaska, Hawaii and Dakota ", - "values": [ - "Special procedures" - ] - }, - { - "text": "Expedite the ratification of the Convention relating to the Status of Refugees ", - "values": [ - "Asylum-seekers - refugees", - "International instruments" - ] - }, - { - "text": "Fully recognize the human right to safe drinking", - "values": [ - "Right to water and sanitation" - ] - }, - { - "text": "Ratify the ICCPR, the ICESCR and CEDAW ", - "values": [ - "CP rights - general", - "ESC rights - general", - "International instruments", - "Women's rights" - ] - }, - { - "text": "Canada accepts in part recommendation 45 [Integrate economic social and cultural rights in its poverty reduction strategies in a way that can benefit the most vulnerable groups in society, specially the Aborigines, afro-Canadians, migrants, persons with disabilities, youth, women with low incomes, and single mothers and adopt all necessary measures, including the full implementation of the United Nations Declaration on the Rights of Indigenous Peoples, to guarantee Aboriginals the full enjoyment of their rights including economic, social and cultural so that their standard of living was similar to that of the rest of the citizens in Canada] and commits to giving appropriate attention to vulnerable groups in policy development. The Government of Canada also commits to giving greater prominence to the Market Basket Measure as one of the tools used to measure low income.", - "values": [ - "ESC rights - general", - "International instruments" - ] - }, - { - "text": "Consider introducing an earmarked quota for fathers in the parental leave ", - "values": [ - "Rights of the Child" - ] - }, - { - "text": "Ensure affordable access to basic health care for all children ", - "values": [ - "Right to health", - "Rights of the Child" - ] - }, - { - "text": "Redouble its efforts aimed at combating violence against women and girls, illiteracy and at ensuring greater representation of women in decision- making, both in the government and in the private sector", - "values": [ - "Women's rights" - ] - }, - { - "text": "Consider developing an interreligious dialogue mechanism with a view to promoting tolerance and respect on distinctive religious and cultural values of the different ethnic groups in the country", - "values": [ - "Freedom of religion and belief", - "Minorities" - ] - }, - { - "text": "Condemn strongly the attacks on migrants, Roma and other ethnic minorities, ensuring that the attacks are investigated fully by the police and that those responsible are brought to justice", - "values": [ - "Migrants", - "Minorities" - ] - }, - { - "text": "Ratify the Rome Statute of the International Criminal Court and ensure its implementation", - "values": [ - "International instruments", - "Justice" - ] - }, - { - "text": "Strengthen relevant institutions in order to take more effective measures at the national, regional and local level to guarantee the protection of persons involved in land restitution procedures, in particular the claimants, their counsel, the relevant officials and human rights defenders ", - "values": [ - "Human rights defenders", - "Right to land" - ] - }, - { - "text": "Adopt a holistic, long-term approach that involves phasing out "restaveks", incorporating international best practices which could include increased inspections, sensitisation of parents, children and employers, and guaranteed schooling for child domestics", - "values": [ - "Labour", - "Right to education", - "Rights of the Child" - ] - }, - { - "text": "Abolish the Law on the Expiry of the Punitive Claims of the State to allow for thorough and all-encompassing investigation and prosecution of all human rights violations in the past.", - "values": [ - "Justice" - ] - }, - { - "text": "Establish a national independent human rights institution in accordance with the Paris Principles", - "values": [ - "National Human Rights Institution" - ] - }, - { - "text": "It has been two years since the Great East Japan Earthquake in 2011. In close consultation with disaster-affected areas, Japan is committed to improve the situation of those affected and to restore the areas as soon as possible. Japan is willing to share its lessons learned and experiences with the world community, including on the occasion of 2015 United Nations World Conference on Disaster Risk Reduction to held in Japan", - "values": [ - "Environment" - ] - }, - { - "text": "Take appropriate measures to ensure that freedoms of assembly and expression are not threatened, and to combat impunity of those identified as responsible for human rights violations ", - "values": [ - "Freedom of association and peaceful assembly", - "Freedom of opinion and expression", - "Impunity" - ] - }, - { - "text": "Promote the rights of women and effectively combat all forms of violence against women and against prenatal selection", - "values": [ - "Women's rights" - ] - }, - { - "text": "Remove from the Criminal Code the penalization of same-sex conduct between consenting adults", - "values": [ - "Sexual Orientation and Gender Identity" - ] - }, - { - "text": "Further ensure the identification and protection of victims of human trafficking", - "values": [ - "Trafficking" - ] - }, - { - "text": "Establish operational mechanisms to receive complaints of any racist acts, investigate them and issue sanctions and compensation commensurate with their seriousness", - "values": [ - "Racial discrimination" - ] - }, - { - "text": "Maintain the protection of the right to life from conception to natural death", - "values": [ - "Other" - ] - }, - { - "text": "Take further steps to prevent all forms of discrimination against persons belonging to other ethnic or religious origins including migrant workers and their children ", - "values": [ - "Freedom of religion and belief", - "Labour", - "Migrants", - "Racial discrimination", - "Rights of the Child" - ] - }, - { - "text": "Strengthen efforts to prevent discrimination and violence against women and girls, including by eradicating harmful practices such as child, early and forced marriage", - "values": [ - "Rights of the Child", - "Torture and other CID treatment", - "Women's rights" - ] - }, - { - "text": "Respect the rights of refugees, especially the principle of nonrefoulement ", - "values": [ - "Asylum-seekers - refugees" - ] - }, - { - "text": "Continue its utmost efforts to improve the civil, political, social, economic and cultural rights for the Iraqi people", - "values": [ - "CP rights - general", - "ESC rights - general" - ] - }, - { - "text": "Ratify more human rights treaties, especially the International Covenant on Economic, Social and Cultural Rights and the International Covenant on Civil and Political Rights ", - "values": [ - "CP rights - general", - "ESC rights - general", - "International instruments" - ] - }, - { - "text": "Continue, in assistance with development partners and civil society, its fight against HIV and AIDS through advocacy, joint planning, monitoring and evaluation, for the eventual elimination of the disease", - "values": [ - "Civil society", - "HIV - Aids", - "Technical assistance and cooperation" - ] - }, - { - "text": "Continue to promote its successful programmes to implement the Convention on the Rights of Persons with Disabilities", - "values": [ - "Disabilities", - "International instruments" - ] - }, - { - "text": "Conduct thorough, independent and impartial investigations into all cases of the use of torture and arbitrary detention by law enforcement agencies", - "values": [ - "Detention", - "Torture and other CID treatment" - ] - }, - { - "text": "Consider the establishment or the strengthening of the existing national mechanism for coordination, implementation, reporting and follow-up, in line with elements arising from good practices identified in the 2016 OHCHR guide on national mechanisms for reporting and follow-up", - "values": [ - "Special procedures", - "Treaty bodies", - "UPR process" - ] - }, - { - "text": "Undertake further initiatives to address hate speech directed against members of vulnerable groups, and ensure sufficient focus on this topic in the education system", - "values": [ - "Human rights education and training", - "Migrants", - "Racial discrimination" - ] - }, - { - "text": "Continue to strengthen measures to eliminate racial profiling, especially in law enforcement and racial discrimination in employment ", - "values": [ - "Racial discrimination" - ] - }, - { - "text": "Enhance legislation in the field of racial discrimination, racism and hatred of foreigners", - "values": [ - "Migrants", - "Racial discrimination" - ] - }, - { - "text": "Continue to combat poverty and malnutrition, especially among children", - "values": [ - "Poverty", - "Right to food", - "Rights of the Child" - ] - }, - { - "text": "Pay particular attention to unaccompanied migrant children and undertake specific measures to ensure their adequate protection ", - "values": [ - "Migrants", - "Rights of the Child" - ] - }, - { - "text": "Modify articles 43 and 44 of the Constitution so that Swazi women, in the same way as men, can transmit their nationality to their children and their foreign spouses", - "values": [ - "Rights of the Child", - "Statelessness and the right to nationality", - "Women's rights" - ] - }, - { - "text": "Increase the protection of women against violence particularly those of immigrant background, by, inter alia, strengthening their access to counselling and support services nationwide ", - "values": [ - "Migrants", - "Women's rights" - ] - }, - { - "text": "In order to further prevent impunity, broaden victim participation in court proceedings, as well as ensure witness protection", - "values": [ - "Impunity", - "Justice" - ] - }, - { - "text": "Adopt specific legislation aiming at the elimination of violence against women, in line with international standards, which adequately addresses the dimensions of prevention, protection and assistance", - "values": [ - "Women's rights" - ] - }, - { - "text": "Improve living conditions of inmates and carry out rehabilitation plans in penitentiaries", - "values": [ - "Detention" - ] - }, - { - "text": "Continue efforts for gender equality in the context of the National Plan of Action of Gender Equality", - "values": [ - "Women's rights" - ] - }, - { - "text": "Continue to implement its national strategy to reduce poverty, especially in rural areas, and to enhance the general standard of living of its citizens \n\n", - "values": [ - "Poverty" - ] - }, - { - "text": "Take measures to re-establish an independent judiciary including by establishing strict rules as well as through a clear mechanism of appointment and dismissal of judges.", - "values": [ - "Justice" - ] - }, - { - "text": "Accede to the Rome Statute of the International Criminal Court to complement national mechanisms and ensure accountability for gross human rights and international humanitarian law violations", - "values": [ - "International humanitarian law", - "International instruments", - "Justice" - ] - }, - { - "text": "Effectively implement the national development plan for 2013-2017", - "values": [ - "Development" - ] - }, - { - "text": "Enact legislation to prohibit corporal punishment of children in all settings", - "values": [ - "Rights of the Child", - "Torture and other CID treatment" - ] - }, - { - "text": "Sign and ratify the Convention against Torture and Other Cruel, Inhuman or Degrading Treatment or Punishment and its Optional Protocol, the Convention on the Rights of Persons with Disabilities, the First and Second Optional Protocols to ICCPR, the Optional Protocol to the International Covenant on Economic, Social and Cultural Rights and ultimately the International Convention for the Protection of All Persons from Enforced Disappearance ", - "values": [ - "International instruments" - ] - }, - { - "text": "Step up efforts to halt torture and ill-treatment, eradicate impunity for such acts and ensure that alleged perpetrators are brought to justice", - "values": [ - "Impunity", - "Torture and other CID treatment" - ] - }, - { - "text": "Abolish de jure the death penalty ", - "values": [ - "Death penalty" - ] - }, - { - "text": "Further guarantee the rights of life, education and health", - "values": [ - "Right to education", - "Right to health" - ] - }, - { - "text": "Take all measures to protect civilians, especially women and children, and cease the use of explosive weapons in populated areas", - "values": [ - "International humanitarian law", - "Rights of the Child", - "Women's rights" - ] - }, - { - "text": "Provide financial and structural support to civil society organisations", - "values": [ - "Civil society" - ] - }, - { - "text": "Continue the efforts to prevent and address gender-based violence, and in this context, ratify the Council of Europe Convention on Preventing and Combating Violence against Women and Domestic Violence", - "values": [ - "International instruments", - "Women's rights" - ] - }, - { - "text": "Continue efforts to ensure that persons with disabilities can find employment and to provide them with medical assistance in rural areas", - "values": [ - "Disabilities" - ] - }, - { - "text": "Adopt an minimum age limit for access to the labour market which is in conformity with international standards, in particular with that which is established by the ILO Minimum Age Convention ", - "values": [ - "International instruments", - "Labour", - "Rights of the Child" - ] - }, - { - "text": "Expand education and human rights training programmes so that these are included as well in the training for magistrates, judges, lawyers, and eventually in education and in general", - "values": [ - "Human rights education and training" - ] - }, - { - "text": "In cooperation with UNESCO and other relevant organizations, continue to step up efforts to improve access to quality education ", - "values": [ - "Right to education", - "Technical assistance and cooperation" - ] - }, - { - "text": "Adopt a comprehensive Anti-Discrimination Act to protect the human rights of lesbian, gay, bisexual, transgender and intersex individuals and other marginalized groups", - "values": [ - "Sexual Orientation and Gender Identity" - ] - }, - { - "text": "Increase efforts, in a result-oriented manner, so as to combat prison overcrowding and to improve the human rights situation of the people detained ", - "values": [ - "Detention" - ] - }, - { - "text": "Take effective measures to end arbitrary detentions, in particular by strengthening judicial oversight over the security forces", - "values": [ - "Detention" - ] - }, - { - "text": "Secure what is prescribed in Article 149 of the Brazilian Penal Code, relating to the criminal prosecution of the crime of slavery ", - "values": [ - "Other" - ] - }, - { - "text": "Enhance dialogue with and assistance to vulnerable groups, in particular ethnic minorities", - "values": [ - "Minorities" - ] - }, - { - "text": "Take necessary measures to eliminate all forms of discrimination against women ", - "values": [ - "Women's rights" - ] - }, - { - "text": "Pursue its cooperation with human rights mechanisms", - "values": [ - "Technical assistance and cooperation" - ] - }, - { - "text": "Redouble efforts to increase women's participation in education, including tertiary education", - "values": [ - "Right to education", - "Women's rights" - ] - }, - { - "text": "Keep denouncing unilateral coercive measures in all possible scenarios", - "values": [ - "Other" - ] - }, - { - "text": "Extend a standing and open invitation to all special procedures ", - "values": [ - "Special procedures" - ] - }, - { - "text": "Consolidate its reconciliation efforts to ensure that durable peace prevails in the country", - "values": [ - "Justice" - ] - }, - { - "text": "Take concrete measures towards genuine media freedom and freedom of expression and to establish a climate conducive to safe and enabling working conditions for journalists, bloggers, media outlets and human rights defenders ", - "values": [ - "Freedom of opinion and expression", - "Freedom of the press", - "Human rights defenders" - ] - }, - { - "text": "Further intensify the implementation of the National Policy for the Protection of Human Rights Defenders, and the Programme to Protect Human Rights Defenders", - "values": [ - "Human rights defenders" - ] - }, - { - "text": "Take further steps in consolidating the cooperation with the national civil society organisations in implementation of programs aimed at promotion and protection of Human Rights", - "values": [ - "Civil society" - ] - }, - { - "text": "Continue its policy to combat racism and all forms of discrimination and racial intolerance and continue implementing affirmative actions for vulnerable groups ", - "values": [ - "Racial discrimination" - ] - }, - { - "text": "Take all measures necessary to ensure that all acts of violence against journalists be investigated and that appropriate punishments are meted out.", - "values": [ - "Freedom of the press" - ] - }, - { - "text": "Continue to promote the participation of women in policy making and improve the status of women in the society ", - "values": [ - "Women's rights" - ] - }, - { - "text": "Combat xenophobia, racism, anti-Semitism, and religious intolerance and to pursue and prosecute the perpetrators of such offences.", - "values": [ - "Freedom of religion and belief", - "Racial discrimination" - ] - }, - { - "text": "Strengthen efforts at promoting inclusive education, including through regional initiatives", - "values": [ - "Right to education" - ] - }, - { - "text": "Provide meaningful access to specialized training on international human rights law and mechanisms to its judges, magistrates, prosecutors and lawyers", - "values": [ - "Human rights education and training" - ] - }, - { - "text": "Amend the Prime Minister's Decree on Religious Practice (Decree 92) to ease the process for religious groups to register their places of worship and allow new religious groups to obtain official recognition", - "values": [ - "Freedom of religion and belief" - ] - }, - { - "text": "Review domestic legislation to criminalize domestic violence.", - "values": [ - "Rights of the Child", - "Women's rights" - ] - }, - { - "text": "Accede to the Optional Protocol to the Convention against Torture and Other Cruel, Inhuman or Degrading Treatment or Punishment.", - "values": [ - "Detention", - "International instruments", - "Torture and other CID treatment" - ] - }, - { - "text": "Respect international obligations, release all political detainees, immediately stop the use of all kinds of inhumane or degrading treatment, including torture, grant relevant international organizations, such as ICRC, access to all detention facilities and inform the families of detained or deceased persons of their whereabouts and mental and physical state", - "values": [ - "Detention", - "Freedom of opinion and expression", - "Torture and other CID treatment" - ] - }, - { - "text": "Ratify the International Covenant on Civil and Political Rights and its Second Optional Protocol, aiming at the abolition of the death penalty", - "values": [ - "CP rights - general", - "Death penalty", - "International instruments" - ] - }, - { - "text": "Adopt the necessary legislative instruments for the implementation of the Mental Health Act", - "values": [ - "Right to health" - ] - }, - { - "text": "Give equal recognition to the right of undocumented children to education ", - "values": [ - "Right to education", - "Rights of the Child" - ] - }, - { - "text": "Deepen the measures taken to ensure the fight against impunity and guarantee to all victims of human rights violations compensation and the establishment of all adequate mechanisms for rehabilitation", - "values": [ - "Impunity" - ] - }, - { - "text": "Eliminate discrimination against migrants, and especially migrant women", - "values": [ - "Migrants", - "Racial discrimination", - "Women's rights" - ] - }, - { - "text": "Continue its efforts in improving coordination among national institutions involved in the implementation of human rights programmes and recommendations of treaties bodies as well as those made by Human Rights Council special procedures mandate holders", - "values": [ - "Special procedures", - "Treaty bodies" - ] - }, - { - "text": "Set out a clear pathway to meet the goal of ending child poverty in the UK by 2020 as stated in the Coalition's programme for government ", - "values": [ - "Poverty", - "Rights of the Child" - ] - }, - { - "text": "In its future decisions and actions, give priority to human rights, especially with regard to the most vulnerable categories, such as women and children", - "values": [ - "Rights of the Child", - "Women's rights" - ] - }, - { - "text": "Consider signing and/or ratifying the Rome Statute of the International Criminal Court", - "values": [ - "International instruments", - "Justice" - ] - }, - { - "text": "Recommended that international treaties adhered to by Zambia enjoy full implementation and that their incorporation in domestic law be accelerated.", - "values": [ - "International instruments" - ] - }, - { - "text": "Develop and implement a comprehensive strategy on fighting discrimination and marginalization of indigenous peoples", - "values": [ - "Indigenous peoples", - "Racial discrimination" - ] - }, - { - "text": "Consider acceding to the remaining core international human rights instruments, including the International Covenant on Civil and Political Rights and the International Covenant on Economic, Social and Cultural Rights", - "values": [ - "CP rights - general", - "ESC rights - general", - "International instruments" - ] - }, - { - "text": "Ensure that the ombudsman's office (Defensoría del Pueblo) is independent and has the necessary human, material and financial resources to comply with its mandate as the National Mechanism to Prevent torture", - "values": [ - "National Human Rights Institution", - "Torture and other CID treatment" - ] - }, - { - "text": "Continue its combat against hate crime and all forms of discrimination against minorities in accordance with international standards and its human rights obligations and to bring perpetrators to justice", - "values": [ - "Minorities", - "Racial discrimination" - ] - }, - { - "text": "Combat trafficking and sale in human beings", - "values": [ - "Trafficking" - ] - }, - { - "text": "Carry out indispensable urban rehabilitation and reconstruction in accordance with the relevant legislation and internationally accepted human rights standards", - "values": [ - "International instruments", - "Right to housing" - ] - }, - { - "text": "Safeguard the rights of children and adolescents and enhance the protection accorded to them against all forms of violence, including by, inter alia, the conclusion of the Five Year Plan for the Prevention and Gradual Eradication of the Worst Forms of Child Labour and the Protection of Adolescent Workers", - "values": [ - "Labour", - "Rights of the Child" - ] - }, - { - "text": "Take immediate and effective measures to bring conditions at all detention facilities into line with the United Nations Standard Minimum Rules for the Treatment of Prisoners", - "values": [ - "Detention" - ] - }, - { - "text": "Further enhance human rights education ", - "values": [ - "Human rights education and training" - ] - }, - { - "text": "Amend the National Security Law to guarantee that its application respects fully the freedom of expression", - "values": [ - "Freedom of opinion and expression" - ] - }, - { - "text": "Recommended that civil society organizations, including those from multi-ethnic communities and conflict affected areas in Sri Lanka's north and east, be involved in the follow-up to the UPR process.", - "values": [ - "Civil society", - "UPR process" - ] - }, - { - "text": "Consider developing a national policy of protection of human rights defenders, which could consist of a national system of protection of witnesses and human rights defenders.", - "values": [ - "Human rights defenders" - ] - }, - { - "text": "Guarantee freedom of the media in the draft media law in accordance with international standards ", - "values": [ - "Freedom of the press" - ] - }, - { - "text": "Continue to take measures for the advancement of women and consider adopting a national policy for the empowerment of women", - "values": [ - "Women's rights" - ] - }, - { - "text": "Extend an open and standing invitation to the United Nations special procedures mandate holders ", - "values": [ - "Special procedures" - ] - }, - { - "text": "Continue with the measures aimed at eradicating customs involving revenge practices and honour crimes", - "values": [ - "Women's rights" - ] - }, - { - "text": "Adhere to the global trend against the capital punishment by establishing, as a first step, a moratorium on its use ", - "values": [ - "Death penalty" - ] - }, - { - "text": "Continue to denounce in international forums the unilateral coercive measures, in particular the inacceptable economic blockade imposed by the United States of America and continue consolidating international efforts aimed at repealing it ", - "values": [ - "Other" - ] - }, - { - "text": "Redesign the human rights institutional system of Guatemala", - "values": [ - "General" - ] - }, - { - "text": "Ratify the CPED, OP-CAT as well as the Rome Statute", - "values": [ - "Detention", - "Enforced disappearances", - "International instruments", - "Justice", - "Torture and other CID treatment" - ] - }, - { - "text": "Continue efforts in requesting support to intensify the abilities of Jordan to respond to the needs of Syrian refugees who are present on Jordanian territory", - "values": [ - "Asylum-seekers - refugees", - "Technical assistance and cooperation" - ] - }, - { - "text": "Continue its efforts to end discrimination on the grounds of religion, race or gender in law and practice ", - "values": [ - "Freedom of religion and belief", - "Racial discrimination", - "Women's rights" - ] - }, - { - "text": "Ratify promptly the Convention on the Rights of Persons with Disabilities", - "values": [ - "Disabilities", - "International instruments" - ] - }, - { - "text": "Enhance its efforts in fighting discrimination and institutional biases against Maori and Pacific people ", - "values": [ - "Indigenous peoples", - "Racial discrimination" - ] - }, - { - "text": "Adopt specific criminal legislation for the protection of women's rights ", - "values": [ - "Women's rights" - ] - }, - { - "text": "Work to eradicate harmful cultural or traditional practices against women and girls by conducting educational campaigns, encouraging reporting of cases and publically denouncing such practices, by urgently providing an adequate budget for the implementation of key measures of the Domestic Violence Act, and by strengthening the systematic and comprehensive collection of disaggregated data related to the incidence of all forms of violence against women, including femicide and intimate partner violence, and by using this data to inform its policy responses and monitoring", - "values": [ - "Rights of the Child", - "Torture and other CID treatment", - "Women's rights" - ] - }, - { - "text": "Accede to and fully implement the Optional Protocol to CEDAW, amend laws that discriminate against women, and facilitate a broad public discussion on women's rights and equality ", - "values": [ - "International instruments", - "Women's rights" - ] - }, - { - "text": "Improve the policy on health care to provide affordable health-care services to immigrant women and girls", - "values": [ - "Migrants", - "Right to health", - "Rights of the Child", - "Women's rights" - ] - }, - { - "text": "Ratify OP-CAT and thereby allow country visits", - "values": [ - "Detention", - "International instruments", - "Torture and other CID treatment" - ] - }, - { - "text": "Prioritize the retention of girls in schools and accord to them the opportunity and the environment to progress at a par with their male colleagues", - "values": [ - "Right to education", - "Women's rights" - ] - }, - { - "text": "Ensure free and fair elections held peacefully in regular intervals and at all levels in accordance with international standards, conduct impartial investigation into allegations of excessive use of force by the police and arbitrary arrests during the elections and bring perpetrators to justice", - "values": [ - "Detention", - "Elections", - "Human rights violations by state agents" - ] - }, - { - "text": "Continue to involve Angolan civil society actors, notably those working in the field of human rights, in the implementation of the policy already defined by the Government", - "values": [ - "Civil society" - ] - }, - { - "text": "Ensure that no one is detained for long periods without trial ", - "values": [ - "Detention", - "Justice" - ] - }, - { - "text": "Establish a national mechanism for the protection of the rights of children, and allocate human and financial resources for its functioning", - "values": [ - "National Human Rights Institution", - "Rights of the Child" - ] - }, - { - "text": "Consider ratifying the International Convention on the Protection of the Rights of all Migrant Workers and Members of Their Families", - "values": [ - "International instruments", - "Labour", - "Migrants" - ] - }, - { - "text": "Within the context of item e) of Human Rights Council resolution 9-12, ensure that the system of priorities in the employment sector does not imply discrimination on the grounds of race, color, nationality, religion, language or ethnic or national origin.", - "values": [ - "Labour" - ] - }, - { - "text": "Provide health-care coverage for all persons residing in Spain, regardless of their administrative status", - "values": [ - "Right to health" - ] - }, - { - "text": "Establish and implement a comprehensive action plan to further improve and promote women's rights ", - "values": [ - "Women's rights" - ] - }, - { - "text": "Strengthen measures to counter discriminatory attitudes in society, including through public education and equality initiatives and legislative measures to prevent discrimination on the basis of sexual orientation and gender identity.", - "values": [ - "Human rights education and training", - "Sexual Orientation and Gender Identity" - ] - }, - { - "text": "Take necessary measures to achieve the social reintegration of boys, girls and adolescents victims of armed gangs", - "values": [ - "Public security", - "Rights of the Child" - ] - }, - { - "text": "Study the possibility of adopting additional measures to fight against trafficking in persons", - "values": [ - "Trafficking" - ] - }, - { - "text": "Suspend without delay the executions and declare a moratorium on the application of death penalty as the first phase towards its abolition", - "values": [ - "Death penalty" - ] - }, - { - "text": "Adopt measures to identify the root causes for the exploitation of children, including through prostitution and pornography, and implement adequate mechanisms for prevention and protection ", - "values": [ - "Rights of the Child", - "Trafficking" - ] - }, - { - "text": "Intensify efforts to ensure that the National Commission for Human Rights is consistent with the principles relating to the status of national institutions for the promotion and protection of human rights (the Paris Principles)", - "values": [ - "National Human Rights Institution" - ] - }, - { - "text": "Take the necessary measures to eradicate the discrimination based on sexual orientation", - "values": [ - "Sexual Orientation and Gender Identity" - ] - }, - { - "text": "Grant comprehensive support to the institute of family", - "values": [ - "Other" - ] - }, - { - "text": "Continue its efforts to enhance the protection and empowerment of women", - "values": [ - "Women's rights" - ] - }, - { - "text": "Respect the rights of freedom of expression, association and assembly in accordance with its national and international legal framework and ensure that its security forces maintain public order without resorting to the excessive use of force", - "values": [ - "Freedom of association and peaceful assembly", - "Freedom of opinion and expression", - "Public security" - ] - }, - { - "text": "Ensure the safety of journalists and take further steps to create an environment conducive to a free and independent media. ", - "values": [ - "Freedom of the press" - ] - }, - { - "text": "Ratify the Rome Statute of the International Criminal Court, including accession to the Agreement on Privileges and Immunities", - "values": [ - "International instruments", - "Justice" - ] - }, - { - "text": "Take effective measures to prevent all acts of torture and ill treatment ", - "values": [ - "Torture and other CID treatment" - ] - }, - { - "text": "Include women and gender advisors as part of the team of main negotiators and develop a National Plan of Action for the implementation of Security Council resolution 1325 ", - "values": [ - "International humanitarian law", - "Women's rights" - ] - }, - { - "text": "Expedite the process that will lead to the ratification of the Optional Protocol to the Convention against Torture, as well as the Optional Protocol to the Convention on the Rights of Persons with Disabilities ", - "values": [ - "Detention", - "Disabilities", - "International instruments", - "Torture and other CID treatment" - ] - }, - { - "text": "Take further concrete measures to ensure equal rights of women and men with regard to personal status.", - "values": [ - "Women's rights" - ] - }, - { - "text": "Restore all victims of the occupation of Palestinian and Arab territories, in conformity with international law norms", - "values": [ - "Justice" - ] - }, - { - "text": "Continue ongoing efforts to close the gaps in opportunities between indigenous and non-indigenous Australians", - "values": [ - "Indigenous peoples" - ] - }, - { - "text": "Strengthen and coordinate the efforts of all institutions at the national level to ensure the protection of the Egyptian Diaspora", - "values": [ - "Other" - ] - }, - { - "text": "Adopt immigration policies that protect the human rights of immigrants and refugees and promote the integration of racial minorities among the population of Bahamas", - "values": [ - "Asylum-seekers - refugees", - "Migrants", - "Minorities" - ] - }, - { - "text": "Redouble its efforts in providing and facilitating better access for all in exercising their right to health and right to education", - "values": [ - "Right to education", - "Right to health" - ] - }, - { - "text": "Continue to do what needs to be done to put together a national child rights policy", - "values": [ - "Rights of the Child" - ] - }, - { - "text": "Consider ratification of OP-CRC-IC", - "values": [ - "International instruments", - "Rights of the Child" - ] - }, - { - "text": "Expand the Public Defender programme to ensure that all those who do not have sufficient means to pay for legal services - citizens and non-citizens alike - can receive them", - "values": [ - "Justice" - ] - }, - { - "text": "Encourage and strengthen work regarding special education of persons with disabilities", - "values": [ - "Disabilities", - "Right to education" - ] - }, - { - "text": "Continue harmonizing its national legislation with the obligations under ILO Convention No. 169, particularly with respect to the prior consultation of indigenous peoples ", - "values": [ - "Indigenous peoples", - "International instruments" - ] - }, - { - "text": "Continue its efforts to ensure that the universal health-care scheme covers disadvantaged groups, including persons with disabilities and persons living in remote rural areas, who still face obstacles in accessing basic health-care services", - "values": [ - "Disabilities", - "Right to health" - ] - }, - { - "text": "Eliminate all harmful traditional practices and stereotypes, including female genital mutilation", - "values": [ - "Rights of the Child", - "Torture and other CID treatment", - "Women's rights" - ] - }, - { - "text": "Take effective measures to ensure freedom of expression and independence of the media, including the media expressing critical voices, and ensure protection of journalists, bloggers, human rights defenders and independent media and their work against assaults and intimidation", - "values": [ - "Freedom of opinion and expression", - "Freedom of the press", - "Human rights defenders" - ] - }, - { - "text": "Consider ratifying the outstanding human rights instruments and further update domestic laws to be in line with those articles", - "values": [ - "International instruments" - ] - }, - { - "text": "Translate the initiatives of the National Strategy for Protection against Domestic Violence 2011-2016 and the National Anti-Discrimination Plan 2008-2013 into concrete laws", - "values": [ - "Rights of the Child", - "Women's rights" - ] - }, - { - "text": "Further fight discrimination of persons with an immigrant background ", - "values": [ - "Migrants" - ] - }, - { - "text": "Respect and protect the rights of human rights defenders and journalist to undertake their legitimate work without fear of criminal prosecutions or other pressure", - "values": [ - "Freedom of the press", - "Human rights defenders" - ] - }, - { - "text": "Establish an effective and inclusive process to follow up on the recommendations emerging from the universal periodic review ", - "values": [ - "UPR process" - ] - }, - { - "text": "Have the Ministry of Labour and Social Solidarity examine further measures to prevent unlawful child labour, including the possibility of sector specific enforcement policies that target vulnerable populations, such as Roma street children ", - "values": [ - "Labour", - "Minorities", - "Rights of the Child" - ] - }, - { - "text": "Allocate appropriate resources with a view to improve conditions in prisons and detention centres, in particular to address their infrastructural needs, inmates access to safe drinking water and food, sanitation, medical care as well as to legal counsel", - "values": [ - "Detention", - "Right to food", - "Right to water and sanitation" - ] - }, - { - "text": "Continue efforts to fight against sexual harassment and violence against women, including by increasing the number of police units and personnel specialized in this fight", - "values": [ - "Women's rights" - ] - }, - { - "text": "Maintenance of peace, order, tranquility and stability in the country", - "values": [ - "Public security" - ] - }, - { - "text": "Ratify the Convention on the Rights of Persons with Disabilities, and work to implement the Pacific Regional Strategy on Disability ", - "values": [ - "Disabilities", - "International instruments" - ] - }, - { - "text": "Maldives will submit a mid-term review on the progress made on the implementation.", - "values": [ - "UPR process" - ] - }, - { - "text": "Adopt an official moratorium on the death penalty and conduct studies and discussions to consider its abolition", - "values": [ - "Death penalty" - ] - }, - { - "text": "Consider the possibility of expressing its consent to be bound by the Optional Protocol to the Convention against Torture and Other Cruel, Inhuman or Degrading Treatment or Punishment", - "values": [ - "Detention", - "International instruments", - "Torture and other CID treatment" - ] - }, - { - "text": "Pursue and deploy in the whole territory the programmes and projects for the development of rural infrastructure, in particular those aimed at guaranteeing access to drinking water ", - "values": [ - "Development", - "Right to water and sanitation" - ] - }, - { - "text": "Strengthen efforts to reduce gender inequalities including to prevent death resulting from violence against women, and to encourage increased reporting of cases of rape", - "values": [ - "Women's rights" - ] - }, - { - "text": "Develop policy and legislation to promote, protect and fulfil the rights of persons with disabilities", - "values": [ - "Disabilities" - ] - }, - { - "text": "Speed up its accession to the Optional Protocol to the International Covenant on Economic, Social and Cultural Rights", - "values": [ - "ESC rights - general", - "International instruments" - ] - }, - { - "text": "Implement fully the judgments of ECHR, including any judgments related to officials accused of serious human rights violations in the North Caucasus ", - "values": [ - "Other" - ] - }, - { - "text": "Ensure that its counter-terrorism legislation and the national designation for terrorist groups are in full compliance with the legal safeguards enshrined in the ICCPR ", - "values": [ - "Counter-terrorism", - "International instruments" - ] - }, - { - "text": "Implement the Basic Principles on the Independence of the Judiciary and the Role of Lawyers", - "values": [ - "Justice" - ] - }, - { - "text": "Continue to strengthen its efforts in health reform, in particular with regard to primary health care ", - "values": [ - "Right to health" - ] - }, - { - "text": "Give continuity to efforts undertaken to implement measures of care, assistance and comprehensive reparation to the victims of the internal armed conflict", - "values": [ - "Justice" - ] - }, - { - "text": "Raise the level of official development assistance to achieve the United Nations target of 0.7 percent of GDP and allow duty free-quota-free access to all products of all LDCs ", - "values": [ - "Development" - ] - }, - { - "text": "Strengthen efforts to alleviate social discrimination against Muslims, Roma, Jews and foreigners of African origin", - "values": [ - "Freedom of religion and belief", - "Minorities", - "Racial discrimination" - ] - }, - { - "text": "Continue efforts to reform in the short term Law 84-2002 in order to establish a procedure for setting up NGOs, which is nimble, fast and not subject to administrative discretion", - "values": [ - "Civil society" - ] - }, - { - "text": "Take steps to ensure a reduction in the attacks on anyone working to promote and protect human rights and to bring the perpetrators of such attacks to justice", - "values": [ - "Human rights defenders" - ] - }, - { - "text": "Call upon the assistance of United Nations bodies, in the context of the implementation of a comprehensive policy for children with sufficient resources and the reform of the Guinean committee for the monitoring, protection and defence of the rights of the child", - "values": [ - "Rights of the Child", - "Technical assistance and cooperation" - ] - }, - { - "text": "Develop a mainstreaming strategy for women's rights, to be applied to policies in all fields, with a view to ensure gender equality", - "values": [ - "Women's rights" - ] - }, - { - "text": "Protect the right to freedom of assembly and of expression", - "values": [ - "Freedom of association and peaceful assembly", - "Freedom of opinion and expression" - ] - }, - { - "text": "Consider ratifying the International Convention on the Elimination of All Forms of Racial Discrimination ", - "values": [ - "International instruments", - "Racial discrimination" - ] - }, - { - "text": "Adopt legal protection for migrant workers and enforce them, including with respect to wages and working hours, and address allegations of excessive agency fees and forced detention by "repatriation companies" ", - "values": [ - "Detention", - "Labour", - "Migrants" - ] - }, - { - "text": "Further strengthen the independence of the judiciary from the executive", - "values": [ - "Justice" - ] - }, - { - "text": "Ensure compliance with its international obligations through the implementation of effective legislative and other measures to protect women and girls from domestic and sexual violence, including sexual harassment, by prohibiting sexual harassment, and establishing the administrative procedures by which sexual harassment complaints can be investigated and perpetrators held accountable", - "values": [ - "Rights of the Child", - "Women's rights" - ] - }, - { - "text": "Abolish the death penalty and ratify the second Optional Protocol to the International Covenant on Civil and Political Rights", - "values": [ - "Death penalty", - "International instruments" - ] - }, - { - "text": "Proceed with the finalization of the draft constitution and take steps to make its provisions related to women's rights in matters of inheritance, succession and land rights, applicable", - "values": [ - "Women's rights" - ] - }, - { - "text": "Establish the minimum age of marriage at 18 years old, and introduce mechanisms to reduce the incidence of child marriage", - "values": [ - "Rights of the Child" - ] - }, - { - "text": "Begin a national consultation process with governmental and nongovernmental actors on the most appropriate national preventive mechanism ", - "values": [ - "Civil society" - ] - }, - { - "text": "Adopt more policies and allocate more resources specifically directed towards Roma women and children", - "values": [ - "Minorities", - "Rights of the Child", - "Women's rights" - ] - }, - { - "text": "Ensure that effective and prompt investigations are carried out into all allegations of domestic violence and female genital mutilation, and that those responsible are brought to justice", - "values": [ - "Rights of the Child", - "Torture and other CID treatment", - "Women's rights" - ] - }, - { - "text": "Reconsider amendments to the constitution, other laws and policies that contradict with Sudan's international obligations, including international human rights law and international humanitarian law", - "values": [ - "International humanitarian law", - "International instruments" - ] - }, - { - "text": "Ensure the implementation of an official moratorium on all executions, commuting death penalty sentences by imprisonment periods, with a view to the definitive abolition of the death penalty", - "values": [ - "Death penalty" - ] - }, - { - "text": "Continue working to attain the objectives stated by the country in its strategic framework Vision 2020 ", - "values": [ - "General" - ] - }, - { - "text": "Further strengthen its efforts in implementing the National Action Plan to Combat Trafficking in Persons and related Offences, including Slavery of 2014-2019", - "values": [ - "Trafficking" - ] - }, - { - "text": "Develop, within the United Nations and regional mechanisms, a mitigation and management plan for disasters, with a human rights approach, in accordance with what has been suggested by the Office of the United Nations High Commissioner for Refugees ", - "values": [ - "Asylum-seekers - refugees", - "Environment" - ] - }, - { - "text": "Ensure that all members of society, including members of sexual minority groups, have access to equal rights and are afforded the same level of protection, through adequate legislation and awareness-raising and training programmes, especially with regard to integration", - "values": [ - "Sexual Orientation and Gender Identity" - ] - }, - { - "text": "Proceed with the adaptation of legislation in all its national territory, in conformity with the provisions of the Second Optional Protocol to the International Covenant on Civil and Political Rights, signed and ratified by the country", - "values": [ - "Death penalty", - "International instruments" - ] - }, - { - "text": "Continue to provide comprehensive protection to citizens' economic, social and cultural rights", - "values": [ - "ESC rights - general" - ] - }, - { - "text": "Consider establishing an independent Ombudsman for children ", - "values": [ - "National Human Rights Institution", - "Rights of the Child" - ] - }, - { - "text": "Continue to take vigorous measures including improving relevant laws to further promote gender equality", - "values": [ - "Women's rights" - ] - }, - { - "text": "Consider receiving the Special Rapporteurs of the Human Rights Council in Ethiopia ", - "values": [ - "Special procedures" - ] - }, - { - "text": "Create a unified data register on violence against women, as well as norms to address the murder of women, and to promulgate Framework Law 810 on Sexual and Reproductive Rights in the country", - "values": [ - "Right to health", - "Women's rights" - ] - }, - { - "text": "Prohibit the use of torture, respect the principle of medical neutrality and the special protections granted to medical units by international humanitarian law, and protect and support humanitarian workers in their work", - "values": [ - "International humanitarian law", - "Torture and other CID treatment" - ] - }, - { - "text": "Consider ratifying the third Optional Protocol on the Rights of the Child on a communications procedure", - "values": [ - "International instruments", - "Rights of the Child" - ] - }, - { - "text": "Protect the Roma and the Sinti as national minorities, and to ensure that they are not the object of discrimination, including through the media", - "values": [ - "Minorities" - ] - }, - { - "text": "Adopt and implement a strict legislative framework on evictions and resettlement which ensures that evictions and relocations are legal, negotiated and fairly compensated ", - "values": [ - "Right to housing" - ] - }, - { - "text": "Continue strengthen the regulatory framework for the protection of the rights of children ", - "values": [ - "Rights of the Child" - ] - }, - { - "text": "Protect the rights of the indigenous communities in terms of exploiting and using their lands", - "values": [ - "Freedom of opinion and expression", - "Indigenous peoples", - "Right to land" - ] - }, - { - "text": "Strengthen measures to further reduce the gap in the redistribution of wealth as part of its ongoing efforts toward poverty eradication", - "values": [ - "Development", - "Poverty" - ] - }, - { - "text": "End discrimination in law and in practice against religious and ethnic minorities, including the Baha'i community", - "values": [ - "Freedom of religion and belief", - "Minorities", - "Racial discrimination" - ] - }, - { - "text": "Take appropriate measures to promote the registration of all children, paying particular attention to the most vulnerable and marginalized groups ", - "values": [ - "Rights of the Child" - ] - }, - { - "text": "Give legal status to refugees and asylum seekers", - "values": [ - "Asylum-seekers - refugees" - ] - }, - { - "text": "Continue the implementation of the previous recommendations regarding, in particular, the protection of children and increasing access to and the effectiveness of justice", - "values": [ - "Justice", - "Rights of the Child" - ] - }, - { - "text": "Take all necessary measures to strengthen the fight against domestic violence and sexual violence against women", - "values": [ - "Women's rights" - ] - }, - { - "text": "Inform migrants of their rights ", - "values": [ - "Migrants" - ] - }, - { - "text": "Take concrete measures in order to transform the de facto moratorium on the death penalty into a de jure moratorium on execution and sentencing", - "values": [ - "Death penalty" - ] - }, - { - "text": "Ensure that law enforcement thoroughly investigates all claims of domestic violence, and that perpetrators are prosecuted", - "values": [ - "Rights of the Child", - "Women's rights" - ] - }, - { - "text": "Consider ratifying CRPD and the Optional Protocol thereto", - "values": [ - "Disabilities", - "International instruments" - ] - }, - { - "text": "Continue to take measures to increase access for its population to health and education services", - "values": [ - "Right to education", - "Right to health" - ] - }, - { - "text": "Ensure de facto criminalization of child, early and forced marriages and carry out awareness-raising among women about their rights", - "values": [ - "Human rights education and training", - "Rights of the Child", - "Women's rights" - ] - }, - { - "text": "Revise fundamental and other relevant laws with a view to enshrining explicitly in those the principles of equality and non-discrimination", - "values": [ - "Other" - ] - }, - { - "text": "Strengthen the process of empowerment of the grassroots communities in the framework of the fight against poverty", - "values": [ - "Poverty" - ] - }, - { - "text": "Consider further addressing violence against women through legal measures ", - "values": [ - "Women's rights" - ] - }, - { - "text": "The Maldives signed the International Convention for the Protection of All Persons from Enforced Disappearance in 2007, and is committed to bring the domestic legislations in line with the conventions before finalizing the ratification process of CPPED.", - "values": [ - "Enforced disappearances", - "International instruments" - ] - }, - { - "text": "Develop targeted strategies, policies and programmes to support women in claiming their rights, in accordance with its obligations under CEDAW", - "values": [ - "International instruments", - "Women's rights" - ] - }, - { - "text": "Adopt a law banning incitement to religious and racial hatred, and to formulate concrete measures to guarantee the political, economic and cultural rights of religious and ethnic minorities, including Muslim minorities", - "values": [ - "Freedom of religion and belief", - "Minorities", - "Racial discrimination" - ] - }, - { - "text": "Strengthen measures to prevent all forms of discrimination, ill-treatment or violence against persons with disabilities", - "values": [ - "Disabilities", - "Torture and other CID treatment" - ] - }, - { - "text": "Become party to ICRMW ", - "values": [ - "International instruments", - "Labour", - "Migrants" - ] - }, - { - "text": "Prevent all cases of torture and ill-treatment by police, law enforcement officials and in places of detention and ensure effective, independent and impartial investigations in all cases ", - "values": [ - "Detention", - "Human rights violations by state agents", - "Torture and other CID treatment" - ] - }, - { - "text": "Take further measures to remove disparities in access to health care, in particular with respect to vulnerable groups and regions that are poorly served ", - "values": [ - "Right to health" - ] - }, - { - "text": "Germany wished to repeat its recommendation from the first cycle of the UPR, to amend the definition of discrimination in the Constitution in such a way that it covers discrimination based on descent, and abolish those laws that permit discrimination on the basis of ethnicity, language and culture", - "values": [ - "Racial discrimination", - "UPR process" - ] - }, - { - "text": "Sign the CRPD treaty ", - "values": [ - "Disabilities", - "International instruments" - ] - }, - { - "text": "Work with the international community to reduce the effects of climate change ", - "values": [ - "Environment" - ] - }, - { - "text": "Continue its efforts to eradicate poverty and uplift the standards of living for all Malaysians, including through ensuring effective implementation of the Government Transformation Programme strategies", - "values": [ - "Poverty" - ] - }, - { - "text": "Continue to enhance engagement with its regional and international partners to strengthen its capacity for the protection and promotion of human rights ", - "values": [ - "General" - ] - }, - { - "text": "Take all necessary steps to honour its commitments under the Abuja Declaration", - "values": [ - "Right to health" - ] - }, - { - "text": "Adopt more effective policies and programmes to combat unemployment, particularly among women and youth.", - "values": [ - "Women's rights" - ] - }, - { - "text": "Share with the members of the international community its best practices regarding human rights, particularly on the new policy on domestic violence and persons with disabilities.", - "values": [ - "Disabilities", - "Rights of the Child", - "Women's rights" - ] - }, - { - "text": "Strengthen protection for women and children against violence and exploitation\n\n", - "values": [ - "Rights of the Child", - "Women's rights" - ] - }, - { - "text": "Translate the de facto moratorium on the death penalty into a formal moratorium on executions with a view to abolishing the death penalty, sign and ratify ICCPR's second protocol, and commute without delay all death sentences to terms of imprisonment", - "values": [ - "Death penalty", - "International instruments" - ] - }, - { - "text": "Bahrain is committed to contributing to the current process of human rights standard-setting at the United Nations and to participating in United Nations human rights forums where human rights standards are discussed (for example, the Forum on Minority Issues, which is due to meet in Geneva in September 2008).", - "values": [ - "Minorities" - ] - }, - { - "text": "Take the necessary steps to ensure effective implementation of the Anti-Gender-Based Violence Act", - "values": [ - "Women's rights" - ] - }, - { - "text": "Reform the sponsorship system, removing the requirement for foreign workers to obtain permission before leaving Qatar or moving jobs", - "values": [ - "Labour", - "Migrants" - ] - }, - { - "text": "Put an end to the practice of people detained in prisoner camps, closing political prisoner camps and promoting the necessary reforms in the judicial system to ensure fair trial and respect for due process guarantees", - "values": [ - "Detention", - "Freedom of opinion and expression", - "Justice" - ] - }, - { - "text": "The MSAR [Macao Special Administrative Region] Government is committed to fully protect personal freedom and human dignity, inter alia, by reinforcing preventive measures and suppressing the trafficking of human beings and the exploitation of women and children and protecting victims' rights.", - "values": [ - "Rights of the Child", - "Trafficking", - "Women's rights" - ] - }, - { - "text": "Consider incorporating in its legal order the definition of torture according to international standards", - "values": [ - "Torture and other CID treatment" - ] - }, - { - "text": "Introduce a moratorium on the death penalty as a first step to abolition, produce a national plan to accede to the Second Optional Protocol to the International Covenant on Civil and Political Rights, aiming at the abolition of the death penalty, and immediately change the process of carrying out executions by notifying the family of the date of execution and burial site", - "values": [ - "Death penalty", - "International instruments" - ] - }, - { - "text": "Continue its efforts to ensure the realization of the right to education for all with a special emphasis on the promotion of women", - "values": [ - "Right to education", - "Women's rights" - ] - }, - { - "text": "Further promote the participation of women in politics and government", - "values": [ - "Women's rights" - ] - }, - { - "text": "Establish a national human rights commission in compliance with the Paris Principles as soon as possible and make it adequately resourced", - "values": [ - "National Human Rights Institution" - ] - }, - { - "text": "Prepare, in consultation with persons with disabilities, a national strategy for the promotion and protection of rights of persons with disabilities, in line with the Convention on the Rights of Persons with Disabilities, and strengthen measures protecting persons with disabilities against discrimination, including through strengthening the Equal Treatment Act in this regard", - "values": [ - "Disabilities", - "International instruments" - ] - }, - { - "text": "Speed up the ratification of international legal instruments not yet ratified", - "values": [ - "International instruments" - ] - }, - { - "text": "Ensure the participation of all political parties, civil society organizations and community leaders in the work of the Dialogue, Truth and Reconciliation Commission", - "values": [ - "Civil society", - "Justice" - ] - }, - { - "text": "Intensify efforts to facilitate the participation of women in political and public affairs", - "values": [ - "Women's rights" - ] - }, - { - "text": "Strengthen its policies and laws against domestic violence and prepare adequate statistics, including sex, age and family relationship of victims and perpetrators", - "values": [ - "Rights of the Child", - "Women's rights" - ] - }, - { - "text": "Continue progress in building institutions, considering their importance in protecting and promoting human rights and public freedoms and developing the Tunisian society ", - "values": [ - "General" - ] - }, - { - "text": "Call for technical and financial assistance from the international community, in particular the United Nations programmes and institutions, to help it overcome the economic challenges and those posed by its vulnerability to natural disasters ", - "values": [ - "Environment", - "Technical assistance and cooperation" - ] - }, - { - "text": "Pay more attention to the right to food and the general living conditions of the population", - "values": [ - "Right to food" - ] - }, - { - "text": "Work for amelioration of the situation of migrants, particularly in regards to access to and quality of the asylum procedure, the conditions in detention centres and to ensure that protection is granted to refugees in line with its international obligations, by implementing the National Action Plan for Migration Management and taking necessary further actions ", - "values": [ - "Asylum-seekers - refugees", - "Detention", - "Migrants" - ] - }, - { - "text": "Guarantee the implementation and effective application of legislation to eliminate discrimination against women, in order to mitigate the structural disadvantages which stand in the way of gender equality", - "values": [ - "Women's rights" - ] - }, - { - "text": "Institute an urgent review of laws, regulations and procedures relating to the use of force and firearms by law enforcement officials", - "values": [ - "Public security" - ] - }, - { - "text": "Strengthen the work of the institute of public defence by providing free legal aid to the population", - "values": [ - "Justice" - ] - }, - { - "text": "Continue its efforts to adapt the law on combating human trafficking and the smuggling of the labour force in accordance with the international convention against transnational organized crime and its protocol ", - "values": [ - "International instruments", - "Trafficking" - ] - }, - { - "text": "Step up its information and awareness raising actions on female genital mutilation and punish perpetrators of these acts", - "values": [ - "Human rights education and training", - "Rights of the Child", - "Torture and other CID treatment", - "Women's rights" - ] - }, - { - "text": "Take further steps to address root causes that affect the rights of women belonging to disadvantaged groups", - "values": [ - "Women's rights" - ] - }, - { - "text": "Ratify the Convention against Torture without delay", - "values": [ - "International instruments", - "Torture and other CID treatment" - ] - }, - { - "text": "Consider, as a first step, to amend its legislation on the death penalty to restrict its scope and adjust it to international standards.", - "values": [ - "Death penalty" - ] - }, - { - "text": "Ratify the two international Covenants and other core international human rights conventions", - "values": [ - "CP rights - general", - "ESC rights - general", - "International instruments" - ] - }, - { - "text": "Take measures to address racist discourse in the media and racist statements and threats on the Internet", - "values": [ - "Racial discrimination" - ] - }, - { - "text": "Eliminate traditional harmful practices, such as the rising number of deaths due to dowry and burning of widows", - "values": [ - "Torture and other CID treatment", - "Women's rights" - ] - }, - { - "text": "Continue promoting intercultural, multilingual programmes that would contribute to enriching it as a multicultural society ", - "values": [ - "Other" - ] - }, - { - "text": "Promote and deploy further efforts to bridge the gap between boys and girls in completing the primary, secondary and university levels", - "values": [ - "Right to education", - "Rights of the Child" - ] - }, - { - "text": "Ratify International Labour Organization Convention No. 189 concerning decent work for domestic workers ", - "values": [ - "International instruments", - "Labour" - ] - }, - { - "text": "Take steps to abolish the death penalty entirely, including the ratification of the Second Optional Protocol to ICCPR ", - "values": [ - "Death penalty", - "International instruments" - ] - }, - { - "text": "Ratify the Optional Protocol to CAT, and by virtue of the latter, establish a national preventive mechanism ", - "values": [ - "Detention", - "International instruments", - "Torture and other CID treatment" - ] - }, - { - "text": "Sign and ratify the Optional Protocol to the CRPD ", - "values": [ - "Disabilities", - "International instruments" - ] - }, - { - "text": "Conclude the process of ratification of the ICPPED shortly, and investigate vigorously all cases of enforced disappearances, including the case of civil society activist, Sombath Somphone, and inform the public transparently about the results of such investigation as far as feasible without endangering the investigation, and bring perpetrators to justice", - "values": [ - "Enforced disappearances", - "Human rights defenders", - "International instruments" - ] - }, - { - "text": "Continue developing programmes to fight against poverty in Afro- Ecuadorian families and facilitate their full participation in public life", - "values": [ - "Minorities", - "Poverty" - ] - }, - { - "text": "Consider formulating and implementing national policies on gender to help define and coordinate efforts to tackle discrimination, marginalization and violence against women", - "values": [ - "Women's rights" - ] - }, - { - "text": "Provide conditions that are conducive to the development of free and critical media, and improve foreign journalists' access to the country, both on a permanent and on an occasional basis ", - "values": [ - "Freedom of the press" - ] - }, - { - "text": "Adopt additional measures necessary to protect minorities, such as older persons, lesbian, gay, bisexual and transgender persons, persons with disabilities", - "values": [ - "Disabilities", - "Minorities", - "Sexual Orientation and Gender Identity" - ] - }, - { - "text": "Eliminate from the Criminal Code the article relating to blasphemy", - "values": [ - "Freedom of opinion and expression", - "Freedom of religion and belief" - ] - }, - { - "text": "Bhutan is committed to ensuring that all children have access to free primary education.", - "values": [ - "Right to education", - "Rights of the Child" - ] - }, - { - "text": "Take measures to clarify which terms and conditions apply for the granting of publishing permits to newspapers ", - "values": [ - "Freedom of the press" - ] - }, - { - "text": "Strengthen, in close cooperation with the relevant actors, the capacity to process, care for and house asylum seekers and irregular migrants in conformity with regional and international standards ", - "values": [ - "Asylum-seekers - refugees", - "Migrants" - ] - }, - { - "text": "Implement the recommendation of the Human Rights Committee to discontinue public funding of political parties which propagate hate, discrimination and violence ", - "values": [ - "Racial discrimination", - "Treaty bodies" - ] - }, - { - "text": "Fully implement its National Roma Integration Strategy to combat socioeconomic marginalization and discrimination and continue to condemn all acts of violence against Roma persons ", - "values": [ - "ESC rights - general", - "Minorities" - ] - }, - { - "text": "Continue its efforts in the area of providing welfare to older persons ", - "values": [ - "ESC rights - general" - ] - }, - { - "text": "Enhance the fight against domestic and gender-based violence, strengthen protection mechanisms for victims of domestic violence and adopt a comprehensive domestic violence law putting in place effective prevention and protection mechanisms", - "values": [ - "Rights of the Child", - "Women's rights" - ] - }, - { - "text": "Ratify the International Labour Organization Domestic Workers Convention, 2011 (No. 189)", - "values": [ - "International instruments", - "Labour" - ] - }, - { - "text": "Join more human rights treaties and optional protocols", - "values": [ - "International instruments" - ] - }, - { - "text": "Ensure the independence and impartiality of the judicial system, in particular through efforts to guarantee that the Judicial Council operates without interference from the Executive Branch of government", - "values": [ - "Justice" - ] - }, - { - "text": "Take action so as to ratify the Rome Statute on the International Criminal Court ", - "values": [ - "International instruments", - "Justice" - ] - }, - { - "text": "Consider implementing the recommendations of the National Human Rights Commission (NHRC) contained in paragraph 37 of the national report", - "values": [ - "National Human Rights Institution" - ] - }, - { - "text": "Strengthen existing criminal and family laws or adopt a comprehensive law that addresses all forms of violence against women, including domestic and sexual violence, ensuring that all women and girl victims of acts of violence are protected by these laws and have access to immediate means of protection as well as to reparation, and that perpetrators are prosecuted", - "values": [ - "Rights of the Child", - "Women's rights" - ] - }, - { - "text": "Adopt measures to reduce overcrowding in penitentiary centres", - "values": [ - "Detention" - ] - }, - { - "text": "Ensure the freedom of expression, association, assembly and freedom of religion in accordance with international human rights norms", - "values": [ - "Freedom of association and peaceful assembly", - "Freedom of opinion and expression", - "Freedom of religion and belief", - "International instruments" - ] - }, - { - "text": "Strengthen its efforts to combat domestic violence and violence against children and adolescents ", - "values": [ - "Rights of the Child" - ] - }, - { - "text": "Pursue its efforts to counter discrimination in whatever form, in particular towards the most vulnerable sectors of the population in the follow-up to the Durban Conference and the recommendations of the Committee on the Elimination of Racial Discrimination.", - "values": [ - "International instruments", - "Racial discrimination", - "Treaty bodies" - ] - }, - { - "text": "Step up efforts to eradicate human trafficking, particularly trafficking of women and children from, to and through its territory by taking necessary measures to adopt the draft law on trafficking of migrants which includes provisions to combat human trafficking ", - "values": [ - "Migrants", - "Rights of the Child", - "Trafficking", - "Women's rights" - ] - }, - { - "text": "Promote women participation in political life and their access to decision-making positions and management", - "values": [ - "Women's rights" - ] - }, - { - "text": "Call on the international community to provide technical assistance and financial support in line with the needs of Montenegro to implement the strategy conducive to a lasting solution to refugees and internally displaced persons.", - "values": [ - "Asylum-seekers - refugees", - "Internally displaced persons", - "Technical assistance and cooperation" - ] - }, - { - "text": "Continue to increase and consolidate programmes and social measures that will lead to and are essential for the urgent reduction of poverty and social exclusion levels, with the fair distribution of national wealth, to permit the best possible well-being of its population, and, if necessary to that end, seek international assistance and solidarity ", - "values": [ - "Poverty", - "Technical assistance and cooperation" - ] - }, - { - "text": "Strengthen safety and protection measures for the exploitation of natural resources, in order to rigorously protect the environment and the health and rights of local residents, and in line with the United Nations Guiding Principles of Business and Human Rights", - "values": [ - "Business and human rights", - "Development", - "Environment" - ] - }, - { - "text": "Continue the effort in the field of juvenile justice, including by considering incorporating restorative justice principles in the juvenile justice system", - "values": [ - "Justice", - "Rights of the Child" - ] - }, - { - "text": "Consider the recommendation of the Committee on Economic, Social and Cultural Rights to adopt specific legislation on domestic violence, particularly against women", - "values": [ - "Rights of the Child", - "Treaty bodies", - "Women's rights" - ] - }, - { - "text": "Establish a mechanism that monitors gender equality in employment, wage discrimination against women and discrimination on sexual orientation", - "values": [ - "Sexual Orientation and Gender Identity", - "Women's rights" - ] - }, - { - "text": "Continue efforts to implement the human right to safe water and sanitation, ensuring this human right without discrimination for the poorest sectors of the population, including indigenous peoples and migrants", - "values": [ - "Indigenous peoples", - "Migrants", - "Poverty", - "Racial discrimination", - "Right to water and sanitation" - ] - }, - { - "text": "Follow up on the recommendation made in 2012, strengthening its legislation, investigating and punishing effectively the discrimination based on sexual orientation and gender identity, expressed through hate speeches and acts of violence", - "values": [ - "Sexual Orientation and Gender Identity" - ] - }, - { - "text": "Remain open and continue the engagement with the public on the death penalty matter, including on possible alternatives to the death penalty and its abolishing", - "values": [ - "Death penalty" - ] - }, - { - "text": "Immediately cease all aerial bombardments over Aleppo", - "values": [ - "Other" - ] - }, - { - "text": "Strengthen measures for the protection of vulnerable persons", - "values": [ - "Minorities" - ] - }, - { - "text": "Adopt a gender-specific approach in Armenia's policies and programmes ", - "values": [ - "Women's rights" - ] - }, - { - "text": "Limit media ownership concentration and ensure media pluralism", - "values": [ - "Freedom of the press" - ] - }, - { - "text": "Continue to strengthen cooperation with the Human Rights Council and its mechanisms ", - "values": [ - "Special procedures", - "UPR process" - ] - }, - { - "text": "Accept, ratify to or accede, as appropriate, the Optional Protocol to the International Covenant on Economic, Social and Cultural Rights", - "values": [ - "ESC rights - general", - "International instruments" - ] - }, - { - "text": "Further efforts to engage all appropriate social and political organizations in the promotion and protection of human rights. ", - "values": [ - "Civil society" - ] - }, - { - "text": "Review all legal cases against individuals who are detained under criminal or judicial investigation on account of the exercise of their right to freedom of expression, as provided in the International Covenant on Civil and Political Rights ", - "values": [ - "Freedom of opinion and expression", - "International instruments" - ] - }, - { - "text": "Establish an independent national human rights institution", - "values": [ - "National Human Rights Institution" - ] - }, - { - "text": "Take further steps to promote national reconciliation and transitional justice, in particular with a view to complete investigation and prosecution of grave human rights violations committed in the 2009 massacre", - "values": [ - "Justice" - ] - }, - { - "text": "Ensure that measures taken with regard to asylum-seekers are in full compliance with obligations under international law and human rights, including the principle of non-refoulement and that the detention of asylum-seekers is only done when absolutely necessary and for a minimal period of time", - "values": [ - "Asylum-seekers - refugees", - "Detention", - "International instruments" - ] - }, - { - "text": "Undertake more efforts to ensure equal access to elementary and secondary education for both genders", - "values": [ - "Right to education", - "Women's rights" - ] - }, - { - "text": "Ratify the International Covenant on Economic, Social and Cultural Rights and its Optional Protocol and establish a national institution for human rights in accordance with the Paris Principles, seeking international technical cooperation if necessary", - "values": [ - "ESC rights - general", - "International instruments", - "National Human Rights Institution" - ] - }, - { - "text": "Continue to take measures to improve prison conditions, namely overcrowding, poor medical care and unsanitary conditions", - "values": [ - "Detention", - "Right to health", - "Right to water and sanitation" - ] - }, - { - "text": "The Government is implementing the Family Court Proceedings Reform Bill, and is committed to developing and promoting consistent policies, training, and messages around sexual violence.", - "values": [ - "Rights of the Child", - "Women's rights" - ] - }, - { - "text": "Investigate and fairly prosecute those implicated in torture or other forms of mistreatment", - "values": [ - "Torture and other CID treatment" - ] - }, - { - "text": "Begin a transparent and inclusive dialogue with all national stakeholders, including opposition parties and civil society, aimed at reviewing and reforming all relevant national legislation to ensure that it is consistent with international human rights law", - "values": [ - "Civil society", - "International instruments" - ] - }, - { - "text": "Ensure the effective freedom of demonstration and freedom of association ", - "values": [ - "Freedom of association and peaceful assembly" - ] - }, - { - "text": "Further ensure the promotion and protection of cultural diversity and tolerance within society through effective measures, including public campaigns", - "values": [ - "Human rights education and training", - "Minorities" - ] - }, - { - "text": "Work more systematically and intensively to bring the risk of forced confession to the attention of the police. ", - "values": [ - "Detention" - ] - }, - { - "text": "Base the adoption of the resolution mentioned in article 5 of the new labour law on the broadest negotiation level possible ", - "values": [ - "Labour" - ] - }, - { - "text": "Continue to give priority to education programmes, therefore contributing to the strengthening of the democratization process.", - "values": [ - "Right to education" - ] - }, - { - "text": "The Truth and Reconciliation Commission implementation should also take into account the situation of vulnerable groups and institutional reforms.", - "values": [ - "Justice" - ] - }, - { - "text": "Increase efforts to provide effective assistance to women and girls who are victims of violence, in particular through the provision of safe places and psychological support \n\n", - "values": [ - "Rights of the Child", - "Women's rights" - ] - }, - { - "text": "Sign and ratify the African Union's Maputo protocol on the rights of women in Africa", - "values": [ - "International instruments", - "Women's rights" - ] - }, - { - "text": "Continue the efforts to promote human rights, with the strengthening of the national legislative framework on human rights", - "values": [ - "General" - ] - }, - { - "text": "Establish an independent body to review asylum applications.", - "values": [ - "Asylum-seekers - refugees" - ] - }, - { - "text": "Continue to promote efforts exerted in the area of combating sexual harassment", - "values": [ - "Women's rights" - ] - }, - { - "text": "Consider establishing a national human rights institution in accordance with the Paris Principles ", - "values": [ - "National Human Rights Institution" - ] - }, - { - "text": "Review the application of the associations law from 2012 so as to ensure that it strengthens the right to freedom of association, and conduct the legislative consolidation of the law accordingly", - "values": [ - "Freedom of association and peaceful assembly" - ] - }, - { - "text": "Implement in a stringent way on a priority basis the General Act on Women's Access to a Life Free of Violence", - "values": [ - "Women's rights" - ] - }, - { - "text": "Follow through on the proposal to change the Citizenship Law to provide citizenship automatically to newborn children of non-citizen parents, unless the parents refuse it ", - "values": [ - "Rights of the Child" - ] - }, - { - "text": "Respond positively to the request for a visit made by the Special Rapporteur on extrajudicial, summary or arbitrary executions and the Special Rapporteur on the situation of human rights defenders ", - "values": [ - "Extrajudicial executions", - "Human rights defenders", - "Special procedures" - ] - }, - { - "text": "Consider prompt accession to the Optional Protocol on the Covenant on Economic, Social and Cultural Rights", - "values": [ - "ESC rights - general", - "International instruments" - ] - }, - { - "text": "Continue addressing overcrowding in prisons and ensure that minimum standards are met, as previously recommended", - "values": [ - "Detention", - "UPR process" - ] - }, - { - "text": "Continue its efforts to increase the participation of women in leadership at the local government level", - "values": [ - "Women's rights" - ] - }, - { - "text": "Step up measures to put an end to sexual violence and promote participation of women in political and public life", - "values": [ - "Women's rights" - ] - }, - { - "text": "Reinforce its legal framework by acceding to international covenants for the promotion and protection of human rights to which it is not yet a party, in particular ICCPR and ICESCR ", - "values": [ - "CP rights - general", - "ESC rights - general", - "International instruments" - ] - }, - { - "text": "Continue its efforts for universal access to health care strengthen the national public health system and pay attention to preventive health", - "values": [ - "Right to health" - ] - }, - { - "text": "Ratify the international human rights legal instruments to which Madagascar is not a party", - "values": [ - "International instruments" - ] - }, - { - "text": "Further strengthen efforts to combat trafficking in persons providing assistance and protection to victims, and ensuring that perpetrators of such crimes are brought to justice", - "values": [ - "Trafficking" - ] - }, - { - "text": "Take the necessary measures to ensure that the rights to freedom of religion, culture and expression are fully observed and protected in every administrative entity of China", - "values": [ - "ESC rights - general", - "Freedom of opinion and expression", - "Freedom of religion and belief" - ] - }, - { - "text": "Work closely with civil society organizations and other international organizations in the implementation of the recommendations emanating from this process ", - "values": [ - "Civil society", - "UPR process" - ] - }, - { - "text": "Vanuatu is encouraged to take steps to fully implement its policies and action plans on the rights of women and persons with disabilities", - "values": [ - "Disabilities", - "Women's rights" - ] - }, - { - "text": "Establish a moratorium on the use of the death penalty with a view to its total abolition ", - "values": [ - "Death penalty" - ] - }, - { - "text": "Establish a National Human Rights Institution in compliance with the Paris Principles and to eliminate any forms of discrimination against foreigners", - "values": [ - "National Human Rights Institution", - "Racial discrimination" - ] - }, - { - "text": "Strengthen the national capacity to implement the human rights action plans in accordance with international obligations", - "values": [ - "General" - ] - }, - { - "text": "By acceding to the Convention against Torture and other Cruel, Inhumane or Degrading Treatment or Punishment, the Republic of Azerbaijan took commitments for creating effective legislation, administrative, court and other measures for prevention of torture and systematic and purposeful steps in this direction were granted by the State.", - "values": [ - "International instruments", - "Torture and other CID treatment" - ] - }, - { - "text": "Develop pertinent legislation to guarantee the effective protection of the human rights of LGBTI persons, as well as undertake impartial investigations on the allegations of attacks against them in accordance with the Special Rapporteur on extreme poverty and human rights", - "values": [ - "Poverty", - "Sexual Orientation and Gender Identity", - "Special procedures" - ] - }, - { - "text": "Ratify the International Convention for the Protection of All Persons from Enforced Disappearance to strengthen the Convention from the perspective of universality and compliance", - "values": [ - "Enforced disappearances", - "International instruments" - ] - }, - { - "text": "Ensure the protection of workers exercising the right to freedom of peaceful assembly and association and enable the full implementation of the right to freedom of expression in the country ", - "values": [ - "Freedom of association and peaceful assembly", - "Freedom of opinion and expression", - "Labour" - ] - }, - { - "text": "Ensure that the new education law, with its emphasis on the Ukrainian language, does not lead to discrimination against minorities", - "values": [ - "Minorities", - "Right to education" - ] - }, - { - "text": "Implement CEDAW recommendation to address the persistent and deep-rooted gender stereotypes that perpetuate discrimination against women", - "values": [ - "Treaty bodies", - "Women's rights" - ] - }, - { - "text": "Further progress in the eradication of poverty through the successful implementation of the Government Transformation Programme, particularly in the poverty zones of Orang Asli in Peninsular Malaysia, and the indigenous peoples of Sabah and Sarawak", - "values": [ - "Indigenous peoples", - "Poverty" - ] - }, - { - "text": "Respond to requests for visits of special procedures' mandate holders by agreeing with OHCHR on a plan for visits as soon as possible ", - "values": [ - "Special procedures" - ] - }, - { - "text": "Take systematic measures, including temporary special measures, with a view to increasing the representation of women in decision-making and political organs, as recommended by the Committee on the Elimination of Discrimination against Women.", - "values": [ - "Treaty bodies", - "Women's rights" - ] - }, - { - "text": "Adopt further measures with the aim of guaranteeing freedom of speech and the independence of the media", - "values": [ - "Freedom of opinion and expression", - "Freedom of the press" - ] - }, - { - "text": "Consider measures aimed at ensuring freedom of religion for groups which will become minorities in the two countries after the emergence of the new State ", - "values": [ - "Freedom of religion and belief", - "Minorities" - ] - }, - { - "text": "Take further steps in advancing the human rights of its indigenous populations and intensify its efforts in combating discrimination against them, especially in education, health care and employment ", - "values": [ - "Indigenous peoples", - "Labour", - "Racial discrimination", - "Right to education", - "Right to health" - ] - }, - { - "text": "Adopt special measures for the realisation of collective rights of indigenous peoples and the adoption of mechanisms to ensure their right to be consulted ", - "values": [ - "Indigenous peoples" - ] - }, - { - "text": "Take further measures to ensure that rights of children deprived of their liberty are fully protected, including by ensuring that children shall be deprived of their liberty only as a measure of last resort and for the shortest appropriate period of time ", - "values": [ - "Rights of the Child" - ] - }, - { - "text": "Ratify without reservations the Agreement on Privileges and Immunities of the International Criminal Court", - "values": [ - "International instruments", - "Justice" - ] - }, - { - "text": "Take additional measures to combat trafficking in human beings", - "values": [ - "Trafficking" - ] - }, - { - "text": "Accede to the 1961 Convention on the Reduction of Statelessness ", - "values": [ - "International instruments", - "Statelessness and the right to nationality" - ] - }, - { - "text": "Restore permanent residency status to the citizens of the former Yugoslavia permanently residing in Slovenia, and to restore the rights of victims", - "values": [ - "CP rights - general", - "Statelessness and the right to nationality" - ] - }, - { - "text": "Consolidate positive results in combating racial discrimination, trafficking in persons as well as promoting gender equality ", - "values": [ - "Racial discrimination", - "Trafficking", - "Women's rights" - ] - }, - { - "text": "Take further concrete steps to raise public awareness of, and to eliminate gender stereotypes against women", - "values": [ - "Human rights education and training", - "Women's rights" - ] - }, - { - "text": "Continue work to enhance equality and combat discrimination including discrimination against women", - "values": [ - "Women's rights" - ] - }, - { - "text": "Establish mechanisms for witness protection and access to justice for victims, their families and civil society actors who might be assisting them, as recommended by the Special Rapporteur on trafficking in persons, especially women and children ", - "values": [ - "Civil society", - "Justice", - "Rights of the Child", - "Special procedures", - "Trafficking", - "Women's rights" - ] - }, - { - "text": "Investigate allegations of human rights violations by security force members and hold perpetrators accountable ", - "values": [ - "Human rights violations by state agents" - ] - }, - { - "text": "Incorporate the crime of torture in the Criminal Code and the Military Criminal Code ", - "values": [ - "Torture and other CID treatment" - ] - }, - { - "text": "Continue with its efforts to strengthen the enforcement of law on violence against women", - "values": [ - "Women's rights" - ] - }, - { - "text": "Take legislative and administrative measures to address a wide range of racial discrimination and inequalities in housing, employment and education ", - "values": [ - "Racial discrimination" - ] - }, - { - "text": "Endeavour to investigate all cases of gender violence, punish the perpetrators and compensate the victims", - "values": [ - "Women's rights" - ] - }, - { - "text": "Continue working to destigmatize Ebola and address the disproportionate impact of the crisis on women and health workers", - "values": [ - "Right to health", - "Women's rights" - ] - }, - { - "text": "Continue and strengthen awareness-raising activities aimed at eradicating traditional practices that are harmful to children, including female genital mutilation ", - "values": [ - "Human rights education and training", - "Rights of the Child", - "Torture and other CID treatment", - "Women's rights" - ] - }, - { - "text": "Consider the possibility of acceding to and/or ratifying the Optional Protocols of the Convention on the Rights of the Child ", - "values": [ - "International instruments", - "Rights of the Child" - ] - }, - { - "text": "Send an open invitation to all Special Procedures, rapporteurs of the Human Rights Council, and the ILO ", - "values": [ - "Special procedures" - ] - }, - { - "text": "Abolish the death penalty against juvenile offenders ", - "values": [ - "Death penalty", - "Rights of the Child" - ] - }, - { - "text": "Ratify the Convention against Torture, the Optional Protocol to the Convention against Torture and the International Labour Organization (ILO) Domestic Workers Convention, 2011 (No. 189)", - "values": [ - "Detention", - "International instruments", - "Labour", - "Torture and other CID treatment" - ] - }, - { - "text": "Intensify the implementation of the action plan addressing the alarming levels of sexual violence against women", - "values": [ - "Women's rights" - ] - }, - { - "text": "Take measures to prevent and sanction police harassment and torture, including through human rights education and training modules", - "values": [ - "Human rights education and training", - "Human rights violations by state agents", - "Torture and other CID treatment" - ] - }, - { - "text": "Ratify the International Labour Organization conventions, namely Convention No. 138 ", - "values": [ - "International instruments", - "Labour" - ] - }, - { - "text": "Introduce an explicit prohibition by law of the recruitment of children under the age of 15 into armed forces or armed groups.", - "values": [ - "Rights of the Child" - ] - }, - { - "text": "Strengthen the capacity of the criminal police to deal with crimes related to child pornography on the Internet and to inform children and their parents about the safe use of the Internet ", - "values": [ - "Justice", - "Rights of the Child" - ] - }, - { - "text": "Bring the State legislation into line with CRPD", - "values": [ - "Disabilities", - "International instruments" - ] - }, - { - "text": "Re-introduce the death penalty moratorium which was broken in 2007, and take measures to adhere to the resolutions of the General Assembly in this regard.", - "values": [ - "Death penalty" - ] - }, - { - "text": "Make efforts to achieve gender equality, including through adoption of the Property Rights of Spouses Bill and the Intestate Succession Bill", - "values": [ - "Women's rights" - ] - }, - { - "text": "Ensure access of the International Humanitarian Organization to the prison camps and to other detention centers", - "values": [ - "Detention" - ] - }, - { - "text": "Accede to the main international human rights instruments, in particular the ICCPR, the ICESCR, the CAT, the Optional Protocol to CAT (OP-CAT), the CERD, and the Rome Statute of the Court International Criminal", - "values": [ - "International instruments" - ] - }, - { - "text": "Strengthen action to improve the situation of national minorities and immigrants, especially in the areas of education, housing and employment ", - "values": [ - "Migrants", - "Minorities" - ] - }, - { - "text": "Take urgent measures to investigate the numerous reports of torture and extrajudicial executions committed by the Ethiopian National Defence Forces ", - "values": [ - "Extrajudicial executions", - "Human rights violations by state agents", - "Torture and other CID treatment" - ] - }, - { - "text": "Strengthen the capacity of the national social security system aimed at supporting households in need", - "values": [ - "ESC rights - general" - ] - }, - { - "text": "Eliminate the legal concept of "children born outside wedlock", as well as combat against all forms of discrimination, both legally and in practice", - "values": [ - "Rights of the Child" - ] - }, - { - "text": "End the policy of mandatory detention for all unauthorized arrivals, ensure that detention is only applied as a last resort, establish statutory time limits for detention and ensure access to an effective judicial remedy to review the necessity of detention", - "values": [ - "Detention", - "Migrants" - ] - }, - { - "text": "Release all persons detained solely for the exercise of their right to freedom of expression or their right to peaceful assembly and repeal all legislative provisions criminalizing the exercise of these rights", - "values": [ - "Detention", - "Freedom of association and peaceful assembly", - "Freedom of opinion and expression" - ] - }, - { - "text": "Enhance equal political participation of its citizens, including by taking steps towards multi-party democracy ", - "values": [ - "Freedom of association and peaceful assembly" - ] - }, - { - "text": "Cooperate fully with the COI as well as with the United Nations special procedures and with the humanitarian international organizations ", - "values": [ - "Justice", - "Special procedures", - "Technical assistance and cooperation" - ] - }, - { - "text": "Adopt a strategy and a comprehensive plan of action to counter discrimination based on sexual orientation and gender identity", - "values": [ - "Sexual Orientation and Gender Identity" - ] - }, - { - "text": "Increase access to sexual and reproductive health services by raising the health budget to 15 per cent in line with the Abuja Declaration on Roll Back Malaria in Africa and creating a health insurance scheme for the poor", - "values": [ - "Poverty", - "Right to health" - ] - }, - { - "text": "In consultation with civil society groups across Guatemala, finalize and implement a public policy for human rights defenders\u2019 protection", - "values": [ - "Civil society", - "Human rights defenders" - ] - }, - { - "text": "Further pursue the full investigation of alleged incidents of human rights violations by the police force, especially within detention centres", - "values": [ - "Detention", - "Human rights violations by state agents" - ] - }, - { - "text": "Sign the Optional Protocol to the Convention against Torture and other Cruel, Inhuman or Degrading Treatment or Punishment", - "values": [ - "Detention", - "International instruments", - "Torture and other CID treatment" - ] - }, - { - "text": "Promote and guarantee freedom of expression in compliance with international standards, as recommended previously", - "values": [ - "Freedom of opinion and expression", - "UPR process" - ] - }, - { - "text": "Continue the efforts to further enhance human rights according to the universal human rights standards as well as to the social and religious specificities of the Kuwaiti society ", - "values": [ - "General" - ] - }, - { - "text": "Step up efforts to improve the integration of ethnic and minority linguistic groups, including welcoming migrants, asylum-seekers, refugees and stateless persons ", - "values": [ - "Asylum-seekers - refugees", - "Migrants", - "Minorities", - "Statelessness and the right to nationality" - ] - }, - { - "text": "The allocation of additional efforts and resources to improving the country's health system", - "values": [ - "Right to health" - ] - }, - { - "text": "Take steps to decriminalise defamation", - "values": [ - "Freedom of opinion and expression" - ] - }, - { - "text": "Withdraw all reservations to human rights instruments to which Germany is a party", - "values": [ - "International instruments" - ] - }, - { - "text": "Adopt a comprehensive anti-discrimination law that addresses all grounds of discrimination", - "values": [ - "Other" - ] - }, - { - "text": "Establish affirmative actions for members of Roma communities, including by considering reserving vacancies at universities and at the public service", - "values": [ - "Minorities" - ] - }, - { - "text": "Guarantee the right to freedom of expression both offline and online, and bring Decree 72 into line with international human rights obligations ", - "values": [ - "Freedom of opinion and expression", - "International instruments" - ] - }, - { - "text": "Consider ratifying the ICRMW as well as the ILO Convention 189", - "values": [ - "International instruments", - "Labour", - "Migrants" - ] - }, - { - "text": "Take further steps to decriminalize acts of opinion and expression, including repealing articles in the penal code which allow for the imprisonment of journalists for their writing ", - "values": [ - "Freedom of opinion and expression", - "Freedom of the press" - ] - }, - { - "text": "Ratify the Optional Protocol to the Convention against Torture and Other Cruel, Inhuman or Degrading Treatment or Punishment, in line with Tunisia's aspirations to eliminate torture and other maltreatment committed by state agents ", - "values": [ - "Detention", - "Human rights violations by state agents", - "International instruments", - "Torture and other CID treatment" - ] - }, - { - "text": "Continue efforts to investigate and prosecute crimes related to the sexual exploitation of children", - "values": [ - "Rights of the Child" - ] - }, - { - "text": "Increase its efforts to fight human trafficking ", - "values": [ - "Trafficking" - ] - }, - { - "text": "Adapt its own domestic legislation on associations in order to remove any hindrances to the full realization of the freedom of association by its citizens", - "values": [ - "Civil society", - "Freedom of association and peaceful assembly" - ] - }, - { - "text": "Continue the effective policy of combating poverty and promoting economic, social and cultural rights.", - "values": [ - "ESC rights - general", - "Poverty" - ] - }, - { - "text": "Continue the efforts to ratify CPED ", - "values": [ - "Enforced disappearances", - "International instruments" - ] - }, - { - "text": "Kenya is committed to implementing its domestic and international obligations arising from the human rights treaties that it has ratified. ", - "values": [ - "International instruments" - ] - }, - { - "text": "Provide the Office of the People's Advocate with the appropriate financial and human resources and follow up diligently on its recommendations ", - "values": [ - "National Human Rights Institution" - ] - }, - { - "text": "Consider issuing a standing invitation to the Special Rapporteurs", - "values": [ - "Special procedures" - ] - }, - { - "text": "Establish an independent national institution in compliance with the Paris Principles of the United Nations", - "values": [ - "National Human Rights Institution" - ] - }, - { - "text": "Develop a national plan of action to stem the rise in the practice of child marriage", - "values": [ - "Rights of the Child" - ] - }, - { - "text": "Pay more attention to monitoring and combatting violations of the rights of religious and national minorities, including through the possible development of corresponding programmes which would take into account the ethno-cultural traditions of migrants, and, at the same time, help their integration in the Swiss society", - "values": [ - "Freedom of religion and belief", - "Migrants", - "Minorities" - ] - }, - { - "text": "Ensure the right to freedom of opinion and expression for all journalists and media groups, including by effectively investigating allegations of intimidation and attacks and by prosecuting perpetrators", - "values": [ - "Freedom of opinion and expression", - "Freedom of the press" - ] - }, - { - "text": "Establish an independent vetting mechanism to exclude suspected perpetrators of gross human rights violations from the army, police and intelligence services. ", - "values": [ - "Human rights violations by state agents" - ] - }, - { - "text": "Fully investigate all allegations of abuse and violence against civil society actors, and to prosecute the perpetrators", - "values": [ - "Civil society" - ] - }, - { - "text": "Allow the International Committee of the Red Cross unrestrictive access to detention centres", - "values": [ - "Detention" - ] - }, - { - "text": "Strengthen measures aimed at eliminating all forms of gender-based violence", - "values": [ - "Rights of the Child", - "Women's rights" - ] - }, - { - "text": "Pass legislation to combat trafficking in human beings in the form of sham marriages ", - "values": [ - "Trafficking" - ] - }, - { - "text": "Urgently strengthen efforts to reform policy so as to improve the lives of Ghanaians with disabilities in practice", - "values": [ - "Disabilities" - ] - }, - { - "text": "Take effective measures to allow women, particularly in rural areas, to have access to health services, education, clean water and sanitation.", - "values": [ - "Right to education", - "Right to health", - "Right to water and sanitation", - "Women's rights" - ] - }, - { - "text": "Reinforce measures to combat trafficking of women and children and ensure that the penalties foreseen for these crimes are commensurate with the gravity of the crime ", - "values": [ - "Rights of the Child", - "Trafficking", - "Women's rights" - ] - }, - { - "text": "Unconditionally release all Palestinian prisoners especially children and women", - "values": [ - "Detention", - "Rights of the Child", - "Women's rights" - ] - }, - { - "text": "Continue to implement policies for development of its people under the Sustainable Development Goals", - "values": [ - "Development" - ] - }, - { - "text": "Maintain the moratorium aiming at the abolition of the death penalty", - "values": [ - "Death penalty" - ] - }, - { - "text": "Increase the minimum legal age for marriage for girls and develop and implement a comprehensive and coordinated strategy to eliminate child, early and forced marriage and to support already married children and adolescent girls", - "values": [ - "Rights of the Child", - "Women's rights" - ] - }, - { - "text": "Ensure that Viet Nam complies with its international obligations regarding freedom of expression, religion and assembly ", - "values": [ - "Freedom of association and peaceful assembly", - "Freedom of opinion and expression", - "Freedom of religion and belief" - ] - }, - { - "text": "Ratify the Optional Protocol to the Convention on the Rights of the Child on a communications procedure", - "values": [ - "ESC rights - general", - "International instruments" - ] - }, - { - "text": "Continue to strengthen its consistent efforts to combat violence against women ", - "values": [ - "Women's rights" - ] - }, - { - "text": "Continue efforts to make its democratization process more inclusive and development-oriented", - "values": [ - "Other" - ] - }, - { - "text": "Develop a comprehensive national action plan to combat and prevent racism, racial discrimination, xenophobia and intolerance in accordance with the Durban Agreements", - "values": [ - "Racial discrimination" - ] - }, - { - "text": "Revise Law No. 5 (2011) to bring the National Council for Civil Liberties and Human Rights of Libya into accordance with the Paris Principles", - "values": [ - "National Human Rights Institution" - ] - }, - { - "text": "Implement public awareness campaigns to promote tolerance and respect for cultural diversity and to counter prejudice, stereotypes, discrimination, racism, and Islamophobia", - "values": [ - "Freedom of religion and belief", - "Human rights education and training", - "Racial discrimination" - ] - }, - { - "text": "Impose an immediate moratorium on the death penalty, and commute all death sentences to imprisonment terms with a view to abolishing it entirely ", - "values": [ - "Death penalty" - ] - }, - { - "text": "Bring the legislative framework in line with the recommendations made by the OSCE Representative on Freedom of the Media in order to ensure that it does not restrict freedom of expression and pluralism of media", - "values": [ - "Freedom of the press" - ] - }, - { - "text": "Establish an assistance mechanism for women and girls who are victims of violence, particularly victims of sexual or gender-based violence, to facilitate the filing of complaints with the police and to provide them with legal, medical and psychological assistance, as well as adequate protection", - "values": [ - "Justice", - "Women's rights" - ] - }, - { - "text": "Ratify the Convention against Torture and Optional Protocol thereto, as well as the International Covenant on Civil and Political Rights and the International Covenant on Economic, Social and Cultural Rights", - "values": [ - "CP rights - general", - "Detention", - "ESC rights - general", - "International instruments", - "Torture and other CID treatment" - ] - }, - { - "text": "Examine the 2011-2028 national plan for climate change with a view to addressing the challenges in its implementation in consultation with all stakeholders", - "values": [ - "Environment" - ] - }, - { - "text": "Lift the existing reservations to the Convention on the Elimination of All Forms of Discrimination against Women", - "values": [ - "International instruments", - "Women's rights" - ] - }, - { - "text": "Withdraw reservations to articles 14 and 21 of CRC as well as to article 18 of ICCPR ", - "values": [ - "Freedom of religion and belief", - "International instruments", - "Rights of the Child" - ] - }, - { - "text": "Promptly ratify of ICERD to carry out effective implementation of the principles of this instrument", - "values": [ - "International instruments", - "Racial discrimination" - ] - }, - { - "text": "Implement its commitment to guarantee freedom of association and expression", - "values": [ - "Freedom of association and peaceful assembly", - "Freedom of opinion and expression" - ] - }, - { - "text": "Develop a strategy and national plan of action on the protection of migrants, refugees and internally displaced persons with the technical support of international and national partners ", - "values": [ - "Asylum-seekers - refugees", - "Internally displaced persons", - "Migrants", - "Technical assistance and cooperation" - ] - }, - { - "text": "Intensify actions in order to improve living conditions of persons with disabilities ", - "values": [ - "Disabilities" - ] - }, - { - "text": "Rescind or soften the law "on the modification to certain laws of the Russian Federation on regulating the activities of non-commercial organizations which exercise function of foreign agents" ", - "values": [ - "Civil society", - "Freedom of association and peaceful assembly" - ] - }, - { - "text": "Set up an independent national mechanism for the monitoring of detention facilities, which complies with the criteria laid down in the same protocol ", - "values": [ - "Detention" - ] - }, - { - "text": "Consider ratifying the International Convention on the Protection of the Rights of all Migrant Workers and Members of their Families", - "values": [ - "International instruments", - "Labour", - "Migrants" - ] - }, - { - "text": "Continue efforts to raise greater awareness among Bhutanese in all areas of the country of\nthe democratic process, including voting rights, in order to foster greater political participation by all\nmembers of society ", - "values": [ - "Elections" - ] - }, - { - "text": "Make increased efforts to truly bring an end to discrimination", - "values": [ - "Other" - ] - }, - { - "text": "Take the necessary measures to create independent courts for minors", - "values": [ - "Justice", - "Rights of the Child" - ] - }, - { - "text": "After the implementation of the action plan for children in Bosnia and Herzegovina for the period 2002-2010, continue developing programmes for the protection of children, particularly on the fight against child exploitation for begging, their possible recruitment and use in armed conflicts, their protection in judicial processes, as well as their separation from adults in places of detention", - "values": [ - "Detention", - "International humanitarian law", - "Justice", - "Labour", - "Rights of the Child" - ] - }, - { - "text": "Revoke legal provisions criminalizing sexual activity between consenting adults", - "values": [ - "Sexual Orientation and Gender Identity" - ] - }, - { - "text": "Ensure prompt and effective investigation of gender-based violence and that alleged perpetrators are prosecuted ", - "values": [ - "Women's rights" - ] - }, - { - "text": "Adopt and implement in due course the proposed Civic Equality and Integration Strategy and Action Plan for 2015-2020, with a sound financial political backing", - "values": [ - "Other" - ] - }, - { - "text": "Prosecute all Central Intelligence Agency operatives that have been held responsible for torture by the United States Senate Select Committee on Intelligence", - "values": [ - "Human rights violations by state agents", - "Torture and other CID treatment" - ] - }, - { - "text": "Adopt measures to continue combating domestic violence within the framework of the fifth National Plan, including through the establishment of effective procedures for reporting cases and combating stereotypes and misogynistic attitudes ", - "values": [ - "Rights of the Child", - "Women's rights" - ] - }, - { - "text": "Make a long-term plan for its step-by-step ratification of or accession to all core international human rights instruments, particularly the International Covenant on Civil and Political Rights, the International Covenant on Economic, Social and Cultural Rights, and the Convention against Torture and other Cruel, Inhuman or Degrading Treatment or Punishment", - "values": [ - "CP rights - general", - "ESC rights - general", - "International instruments", - "Torture and other CID treatment" - ] - }, - { - "text": "Take further steps to ensure judicial independence, which is important in guaranteeing fair trials in accordance with international human rights standards", - "values": [ - "Justice" - ] - }, - { - "text": "Strengthen efforts to improve the situation of women and combat against discrimination and violence against women and children", - "values": [ - "Rights of the Child", - "Women's rights" - ] - }, - { - "text": "Take the necessary measures to ensure birth registration on a universal basis, particularly for persons living in extreme poverty, belonging to religious minorities or in remote areas ", - "values": [ - "Freedom of religion and belief", - "Minorities", - "Poverty", - "Rights of the Child", - "Statelessness and the right to nationality" - ] - }, - { - "text": "Take further measures to improve freedom of expression by allowing for an independent media and improving access to information through public access to the internet by taking advantage of the recent investment in the fibre optic network ", - "values": [ - "Freedom of opinion and expression", - "Freedom of the press" - ] - }, - { - "text": "Continue to strengthen its efforts for the promotion of human rights education, notably by ensuring the implementation of the National Plan of Action for Human Rights Education 2005-2014", - "values": [ - "Human rights education and training" - ] - }, - { - "text": "Promote inter-ethnic dialogue and tolerance, particularly at the cantonal and communal levels", - "values": [ - "Minorities" - ] - }, - { - "text": "Take urgent steps to promulgate and implement its national Constitution guaranteeing universally accepted recognized fundamental human rights for all citizens and the rest of its population ", - "values": [ - "General" - ] - }, - { - "text": "Adopt national legislation against discrimination ", - "values": [ - "Other" - ] - }, - { - "text": "Increase efforts to ensure independent investigation of any allegation of torture and other ill-treatment in prisons, and prosecute those who have committed such crimes", - "values": [ - "Detention", - "Torture and other CID treatment" - ] - }, - { - "text": "Reconsider the withdrawal from the Optional Protocol to the International Covenant on Civil and Political Rights, and, taking into account that death sentences have not been implemented since 1988, declare a moratorium with a view to abolishing capital punishment ", - "values": [ - "Death penalty", - "International instruments" - ] - }, - { - "text": "Make progress in the appointment of the Ombudsman, in accordance with the Constitution ", - "values": [ - "National Human Rights Institution" - ] - }, - { - "text": "Continue its commendable engagement in the field of the international development cooperation despite current challenges ", - "values": [ - "Development" - ] - }, - { - "text": "Allow full freedom of belief to all religious groups", - "values": [ - "Freedom of religion and belief" - ] - }, - { - "text": "Take necessary measures for effective implementation of the provisions of the Convention on the Protection of the Rights of Persons with Disabilities and its Optional Protocol, in particular, with regard to employment and education ", - "values": [ - "Disabilities", - "International instruments", - "Labour", - "Right to education" - ] - }, - { - "text": "Further strengthen its national policies to combat sexual exploitation and trafficking in human beings ", - "values": [ - "Trafficking" - ] - }, - { - "text": "Continue to put in place effective strategies aimed at reducing poverty and addressing the problem of malnutrition", - "values": [ - "Poverty" - ] - }, - { - "text": "Strengthen cooperation with the universal system of human rights by submitting their initial report to the Committee against Torture and Other Cruel, Inhuman or Degrading Treatment or Punishment, the Committee on Economic, Social and Cultural Rights and the Committee on the Elimination of All Forms of Racial Discrimination and by accepting the visit of the rapporteurs on freedom of peaceful assembly, extreme poverty and human rights defenders", - "values": [ - "Special procedures", - "Technical assistance and cooperation", - "Treaty bodies" - ] - }, - { - "text": "Adopt best practices on freedom of assembly", - "values": [ - "Freedom of association and peaceful assembly" - ] - }, - { - "text": "Speed up the finalization of the preparatory work of the legal framework for the establishment of the national human rights institution ", - "values": [ - "National Human Rights Institution" - ] - }, - { - "text": "Strengthen the legal and institutional framework for the promotion and protection of human rights and to continue expanding the social justice ", - "values": [ - "General" - ] - }, - { - "text": "Take further measures to ensure an end to violations of the right to freedom of opinion and expression and to create conditions to prevent such violations ", - "values": [ - "Freedom of opinion and expression" - ] - }, - { - "text": "Develop and adopt legal and administrative measures to investigate and punish acts of discrimination, stigmatization and violence against lesbian, gay, bisexual, transgender and intersex persons", - "values": [ - "Sexual Orientation and Gender Identity" - ] - }, - { - "text": "Contribute to the implementation of the recently adopted Human Rights Council resolution on children living and working on the streets ", - "values": [ - "Rights of the Child" - ] - }, - { - "text": "Continue to strengthen its poverty alleviation strategies, as well as its child protection strategies, particularly against the exploitation of children ", - "values": [ - "Poverty", - "Rights of the Child" - ] - }, - { - "text": "Adopt a de jure moratorium and ratify the Second Optional Protocol to the ICCPR, with a view to abolition of the death penalty ", - "values": [ - "Death penalty", - "International instruments" - ] - }, - { - "text": "Establish equality between the sexes in the Constitution and take all necessary measures to counter gender-based discrimination.", - "values": [ - "Women's rights" - ] - }, - { - "text": "Consider ratifying of the Convention on the Prevention and Punishment of the Crime of Genocide.", - "values": [ - "International instruments", - "Justice" - ] - }, - { - "text": "Create a database of disappeared and missing migrants, and that all authorities cooperate to prevent and punish crimes against this group", - "values": [ - "Enforced disappearances", - "Migrants" - ] - }, - { - "text": "Ratify OP-CAT and incorporate it into domestic legislation ", - "values": [ - "Detention", - "International instruments", - "Torture and other CID treatment" - ] - }, - { - "text": "Strengthen its cooperation with the special procedures mandate holders of the Human Rights Council", - "values": [ - "Special procedures" - ] - }, - { - "text": "Strengthen the judiciary and police bodies for the prevention of sexual violence, in particular through increasing the number of women and their visibility in the police and the justice system", - "values": [ - "Justice", - "Rights of the Child", - "Women's rights" - ] - }, - { - "text": "Expedite the establishment of an independent national human rights institution in accordance with the Paris Principles. ", - "values": [ - "National Human Rights Institution" - ] - }, - { - "text": "Adopt appropriate legislative and administrative measures to ensure the full realization of the right to drinking water and sanitation for the whole population, with special attention to rural areas ", - "values": [ - "Right to water and sanitation" - ] - }, - { - "text": "Include freedom of expression, press freedom and access to information in the Constitution", - "values": [ - "Freedom of opinion and expression", - "Freedom of the press" - ] - }, - { - "text": "Accelerate the process of establishing a national human rights institution in line with the Paris Principles", - "values": [ - "National Human Rights Institution" - ] - }, - { - "text": "Adopt and implement, as soon as possible, the new legislation on the abolition of the death penalty", - "values": [ - "Death penalty" - ] - }, - { - "text": "Undertake measures for the prompt signature and ratification of the core international instruments for the protection and promotion of human rights, as well as for the submission of outstanding reports", - "values": [ - "International instruments", - "Treaty bodies" - ] - }, - { - "text": "Consider instituting programmes to further facilitate migrants' access to basic social services and just conditions of work ", - "values": [ - "Labour", - "Migrants" - ] - }, - { - "text": "Take steps to counter hate speech, including online, through public awareness campaigns", - "values": [ - "Human rights education and training", - "Racial discrimination" - ] - }, - { - "text": "Pursue its efforts related to the fight against racism and xenophobia by establishing, with a calendar for concrete action, a national and complete strategy for combating racism and xenophobia, as announced in its first national Human Rights Plan \n", - "values": [ - "Racial discrimination" - ] - }, - { - "text": "Regularize the status of all erased persons of origin from other former Yugoslavian republics", - "values": [ - "Other" - ] - }, - { - "text": "Introduce new legislation to fight discrimination on any grounds", - "values": [ - "Other" - ] - }, - { - "text": "Make plans to sign and ratify the core human rights treaties", - "values": [ - "International instruments" - ] - }, - { - "text": "Take the necessary legislative measures to prevent, prosecute and punish acts of torture and other cruel and degrading treatment, in accordance with international standards, including through the ratification of the OP-CAT", - "values": [ - "Detention", - "International instruments", - "Torture and other CID treatment" - ] - }, - { - "text": "Guarantees freedom of religion in respect of national unity and the territorial integrity of the country", - "values": [ - "Freedom of religion and belief" - ] - }, - { - "text": "Further enhance the prevention of domestic violence ", - "values": [ - "Rights of the Child", - "Women's rights" - ] - }, - { - "text": "Make more efforts and mobilize plans and programmes to assist farmers in rural areas, ensure equity in land distribution, and increase funding and resources for farmers to improve agricultural productivity", - "values": [ - "Development", - "Right to land" - ] - }, - { - "text": "Consider ratifying the International Convention for the Protection of the Rights of Migrant Workers and Members of Their Families", - "values": [ - "International instruments", - "Labour", - "Migrants" - ] - }, - { - "text": "Bahrain affirms its willingness to cooperate with the Committee against Torture on the implementation of article 20 of the Convention.", - "values": [ - "International instruments", - "Torture and other CID treatment", - "Treaty bodies" - ] - }, - { - "text": "Allocate appropriate resources for the effective application of the law against femicide and other forms of gender-based violence, including better access to services for victims", - "values": [ - "Women's rights" - ] - }, - { - "text": "Adopt the announced national human rights programme which will serve to define and measure courses of action for ensuring compliance with the constitutional principles relating to human rights", - "values": [ - "General" - ] - }, - { - "text": "Continue to fight impunity by pursuing crimes that occurred during or in conjunction with the post-electoral conflict and previous conflicts in the country, regardless of which side in the conflicts the perpetrators belonged to. This includes continuing cooperation with the International Criminal Court ", - "values": [ - "Impunity", - "International instruments", - "Justice" - ] - }, - { - "text": "Do even more to fully harmonize all of its domestic laws with the international conventions that are in force", - "values": [ - "International instruments" - ] - }, - { - "text": "Reinforce the fight against torture", - "values": [ - "Torture and other CID treatment" - ] - }, - { - "text": "Strengthen the legislation to ban the use of children under 18 for the purpose of commercial sex, prostitution and pornography ", - "values": [ - "Rights of the Child", - "Trafficking" - ] - }, - { - "text": "Increase efforts to prevent violence against women, particularly domestic and sexual violence", - "values": [ - "Women's rights" - ] - }, - { - "text": "Work to achieve additional progress in implementing the programme "Educate Your Child" which aims at connecting the prisoners with their children who are less than 6 years and their families", - "values": [ - "Detention", - "Right to education", - "Rights of the Child" - ] - }, - { - "text": "Undertake a dialogue process with indigenous peoples to seek an appropriate consultation mechanism regarding the adoption of measures affecting indigenous peoples", - "values": [ - "Indigenous peoples" - ] - }, - { - "text": "Establish an organic legal framework for eliminating gender-based discrimination and promoting gender equality.", - "values": [ - "Women's rights" - ] - }, - { - "text": "Introduce legal changes to ensure that its National Human Rights Commission is fully compliant with the Paris Principles", - "values": [ - "National Human Rights Institution" - ] - }, - { - "text": "Continue measures to re-establish the unity of the State to bring about the Constitutional order and to organize universal democratic elections ", - "values": [ - "Elections" - ] - }, - { - "text": "Enact legislation on human rights, including Citizenship Act, Persons with Disabilities Act, and the National Human Rights Commission Act", - "values": [ - "Disabilities", - "Statelessness and the right to nationality" - ] - }, - { - "text": "Review the health reforms to ensure health-care services for migrants", - "values": [ - "Migrants", - "Right to health" - ] - }, - { - "text": "Amend legislation that discriminates against women, such as the Nationality Law, to ensure equality between men and women and non-discrimination in enjoyment of the human rights of girls and women", - "values": [ - "Rights of the Child", - "Women's rights" - ] - }, - { - "text": "Take immediate and adequate measures to ensure that the minimum age for recruitment in military forces is 18, to release underage fighters from its military forces and to facilitate contact between armed groups and the United Nations in order to demobilize and prevent the recruitment of children, particularly the practice of recruitment of children in refugee camps.", - "values": [ - "Rights of the Child" - ] - }, - { - "text": "Expand the definition of violence against women in accordance with the recommendations of CEDAW.", - "values": [ - "Treaty bodies", - "Women's rights" - ] - }, - { - "text": "Take concrete measures to strengthen its policies of promotion and protection of LGBT people, through public policies which combat hate crimes against those individuals", - "values": [ - "Sexual Orientation and Gender Identity" - ] - }, - { - "text": "Establish a national human rights institution ", - "values": [ - "National Human Rights Institution" - ] - }, - { - "text": "Take further steps to improve the integration of persons belonging to different minority groups and adopt a comprehensive policy to ensure effective implementation of the principles of equality and non-discrimination", - "values": [ - "Minorities", - "Racial discrimination" - ] - }, - { - "text": "Ensure that all cases of violence against women and girls are thoroughly and effectively investigated and that perpetrators are prosecuted ex officio and adequately punished", - "values": [ - "Justice", - "Rights of the Child", - "Women's rights" - ] - }, - { - "text": "Take additional measures to promote equality of access to employment ", - "values": [ - "Women's rights" - ] - }, - { - "text": "Continue efforts in environmental protection and in improving living conditions", - "values": [ - "Development" - ] - }, - { - "text": "Cease all actions as a third-State proxy, and to refrain from financing, organizing, training, supplying and equipping non-State actors committing acts in violation of international law", - "values": [ - "Other" - ] - }, - { - "text": "Strengthen the national system of birth registration, extending it to all persons born on Ethiopian soil ", - "values": [ - "Rights of the Child", - "Statelessness and the right to nationality" - ] - }, - { - "text": "Intensify its successful endeavours to rehabilitate persons accused or imprisoned in cases involving terrorism, to extend these endeavours to persons accused of imprisoned or in other criminal cases and to engage in an exchange of experience in this field with other states ", - "values": [ - "Justice", - "Public security" - ] - }, - { - "text": "Cooperate fully with all special procedures mandate holders of the Human Rights Council and give a favourable response to requests for visits made by the special procedures mandate holders", - "values": [ - "Special procedures" - ] - }, - { - "text": "Recognize and guarantee the legitimacy of the work of human rights defenders, as of that of trade unions workers and journalists, ensure their protection and that violations of their rights are prosecuted.", - "values": [ - "Freedom of the press", - "Human rights defenders", - "Labour" - ] - }, - { - "text": "Abolish the death penalty since in the facts, no execution has taken place over the last twenty years ", - "values": [ - "Death penalty" - ] - }, - { - "text": "Continue to make efforts to ensure the supply of quality drinking water to all of the population", - "values": [ - "Right to water and sanitation" - ] - }, - { - "text": "Step up measures through legislation, policies and programmes to promote the rights of women, and protect them from being victimized by any forms of slavery and abuse", - "values": [ - "Women's rights" - ] - }, - { - "text": "Bring the legislation against sexual exploitation of children fully in conformity with the principles and provisions of CRC, the Palermo Protocol and the Council of Europe Convention against Cybercrime and Convention on the Protection of Children against Sexual Exploitation and Sexual Abuse ", - "values": [ - "International instruments", - "Rights of the Child", - "Trafficking" - ] - }, - { - "text": "Continue efforts to combat domestic violence, also by the adoption of a distinct law on this topic", - "values": [ - "Rights of the Child", - "Women's rights" - ] - }, - { - "text": "Continue its efforts to put an end to violence against women with a national plan and necessary legislative reforms.", - "values": [ - "Women's rights" - ] - }, - { - "text": "Sign and ratify also remaining core international human rights instruments (CAT)", - "values": [ - "International instruments", - "Torture and other CID treatment" - ] - }, - { - "text": "Boost the approval of the legislation oriented to guarantee the autonomy of people with disabilities to improve their social inclusion", - "values": [ - "Disabilities" - ] - }, - { - "text": "Accede to the Rome Statute ", - "values": [ - "International instruments", - "Justice" - ] - }, - { - "text": "Pursue its efforts to overcome the problems faced by migrants, particularly in having access to education and to the labour and housing markets", - "values": [ - "Migrants" - ] - }, - { - "text": "Continue the cooperation with international organizations and donor countries to find solutions to the problems of the refugees", - "values": [ - "Asylum-seekers - refugees", - "Technical assistance and cooperation" - ] - }, - { - "text": "Adopt a de jure moratorium on capital punishment with a view to abolishing the death penalty ", - "values": [ - "Death penalty" - ] - }, - { - "text": "Consider ratifying all outstanding human rights instruments of the United Nations, and to improve its cooperation with United Nations treaty bodies by agreeing to submit overdue reports in a timely manner", - "values": [ - "International instruments", - "Treaty bodies" - ] - }, - { - "text": "Agree to the visit of the Special Rapporteur on the promotion and protection of the right to freedom of opinion and expression ", - "values": [ - "Freedom of opinion and expression", - "Special procedures" - ] - }, - { - "text": "Ensure safeguards against arbitrary arrest and torture or other cruel, inhuman or degrading treatment and ratify the Optional Protocol to the Convention against Torture and Other Cruel, Inhuman or Degrading Treatment or Punishment", - "values": [ - "International instruments", - "Torture and other CID treatment" - ] - }, - { - "text": "Continue efforts to promote human rights in the world", - "values": [ - "General" - ] - }, - { - "text": "Adopt and implement measures to protect women and children from domestic violence, sexual exploitation and trafficking in persons ", - "values": [ - "Rights of the Child", - "Trafficking", - "Women's rights" - ] - }, - { - "text": "Continue its efforts to ensure the empowerment of women in the economic, health and social perspectives, including the integration of women as well as the establishment of women's health centres, to ensure the promotion and protection of women's rights in the country", - "values": [ - "Women's rights" - ] - }, - { - "text": "Promote the rights of human rights defenders to freedom of expression, association and assembly, and to review the extremism and NGO laws to ensure their compatibility with international human rights obligations and standards including the United Nations Declaration on Human Rights Defenders ", - "values": [ - "Civil society", - "Freedom of association and peaceful assembly", - "Freedom of opinion and expression", - "Human rights defenders", - "International instruments" - ] - }, - { - "text": "Submit without delay its overdue reports under the international human rights treaties to which it is a party, if necessary seeking technical support from OHCHR", - "values": [ - "Technical assistance and cooperation", - "Treaty bodies" - ] - }, - { - "text": "Continue the work to ensure fair trials, particularly in cases of the death penalty, ensuring the right to be judged by an independent, impartial and competent court, the right to effective judicial protection, the right to have enough time and facilities to properly prepare the defense of a defendant, the right to the presumption of innocence, the right to appeal and the right for a sentence to be commuted", - "values": [ - "Death penalty", - "Justice" - ] - }, - { - "text": "Pursue the cooperation with international human rights mechanisms", - "values": [ - "Special procedures", - "Treaty bodies", - "UPR process" - ] - }, - { - "text": "Consider the possibility of enacting laws for the protection of the most vulnerable groups from social discrimination ", - "values": [ - "Other" - ] - }, - { - "text": "Address the issues affecting the lack of public trust in the Judiciary and the law enforcement system, as reflected in paragraph 102 of the national report, and strengthen the independence of the Judiciary", - "values": [ - "Justice" - ] - }, - { - "text": "Ratify Additional Protocols I and II to the Geneva Conventions of 1949", - "values": [ - "International humanitarian law", - "International instruments" - ] - }, - { - "text": "Continue to pursue its successful social policies in the fight against poverty, with the aim of increasing the quality of life of its people, particularly the most vulnerable sectors", - "values": [ - "Poverty" - ] - }, - { - "text": "Continue the efforts aimed at empowering and protecting women's rights, in addition to empowering women socially and politically", - "values": [ - "Women's rights" - ] - }, - { - "text": "Build on its wide-ranging consultations, sensitization and confidence-building activities concerning persons with disabilities, to implement appropriate policies, legislation and practical measures to address the concerns and needs of this vulnerable group", - "values": [ - "Disabilities" - ] - }, - { - "text": "Take the necessary measures to fully incorporate into Australian legislation its international obligations in the field of human rights ", - "values": [ - "International instruments" - ] - }, - { - "text": "Endeavour to introduce a law prohibiting violence and discrimination and combat xenophobic discourse and all forms of racial discrimination", - "values": [ - "Racial discrimination" - ] - }, - { - "text": "Implement the Education Act and other measures to strengthen gender equality", - "values": [ - "Right to education", - "Women's rights" - ] - }, - { - "text": "Extend an open invitation to the special procedures of the Human Rights Council to visit the country, particularly those who are in a position to offer assistance to strengthen measures for the promotion and protection of human rights in Belize", - "values": [ - "Special procedures" - ] - }, - { - "text": "Continue to improve the protection and promotion of human rights in the country", - "values": [ - "General" - ] - }, - { - "text": "Recognizing the critical role played by CSOs, the government is committed to collaborating with and providing support to CSOs. ", - "values": [ - "Civil society" - ] - }, - { - "text": "Review all work under the European Union twinning programme in the prison system and agree to its next steps in order to urgently address: occurrences of ill-treatment (both by police and in prisons), prisoner violence, prison overcrowding, detention facility conditions as well as prison health care and staffing levels", - "values": [ - "Detention", - "Human rights violations by state agents", - "Torture and other CID treatment" - ] - }, - { - "text": "Consider establishing independent mechanism for monitoring children's rights and providing necessary financial resources for its functioning", - "values": [ - "Rights of the Child" - ] - }, - { - "text": "Reinforce work for maternal and child health ", - "values": [ - "Right to health", - "Rights of the Child", - "Women's rights" - ] - }, - { - "text": "Open up and strengthen specialized centres providing care to women victims of violence", - "values": [ - "Women's rights" - ] - }, - { - "text": "Ratify or adopt implementing legislation with regard to the 1926 Slavery Convention, the 1956 Supplementary Convention on the Abolition of Slavery, the Slave Trade, and Institutions and Practices Similar to Slavery", - "values": [ - "Other" - ] - }, - { - "text": "Use all existing instruments and mechanisms to protect the human rights and freedoms of Ukrainian citizens living on the temporarily occupied territories of Ukraine while taking political and diplomatic steps aimed at restoring Ukraine\u2019s territorial integrity within its internationally recognized borders", - "values": [ - "Other" - ] - }, - { - "text": "Create an independent national human rights institution with a broad mandate and matching resources, in accordance with the Paris Principles", - "values": [ - "National Human Rights Institution" - ] - }, - { - "text": "Continue to develop and strengthen actions aimed at eradicating poverty and public policies to guarantee access to economic and social welfare to all the population", - "values": [ - "ESC rights - general", - "Poverty" - ] - }, - { - "text": "Sign and ratify ICCPR and ICESCR, CRPD as well as its Optional Protocol, the Optional Protocol to CEDAW and the two Optional Protocols to CRC", - "values": [ - "CP rights - general", - "Disabilities", - "ESC rights - general", - "International instruments", - "Rights of the Child", - "Women's rights" - ] - }, - { - "text": "Extend the notion of racism to bring it in line with the International Convention on the Elimination of All Forms of Racial Discrimination ", - "values": [ - "International instruments", - "Racial discrimination" - ] - }, - { - "text": "Remove the current norm for mandatory sterility to officially register gender reassignment", - "values": [ - "Sexual Orientation and Gender Identity" - ] - }, - { - "text": "In order to avoid the occurrence of impunity in cases of violence against LGBT persons, that all such cases be subject of credible investigations and the perpetrators prosecuted ", - "values": [ - "Sexual Orientation and Gender Identity" - ] - }, - { - "text": "Definitively abolish the death penalty ", - "values": [ - "Death penalty" - ] - }, - { - "text": "Release and drop charges against all journalists and media workers arrested in the context of performing their duties", - "values": [ - "Freedom of the press" - ] - }, - { - "text": "Ensure that domestic measures in the fight against terrorism and all forms of extremism uphold the fundamental rights", - "values": [ - "Counter-terrorism" - ] - }, - { - "text": "Strengthen existing mechanisms within its institutional infrastructure to eradicate discriminatory, cultural or based on customary laws, practices to the detriment of women, children, minorities and LGBT groups", - "values": [ - "Minorities", - "Racial discrimination", - "Rights of the Child", - "Sexual Orientation and Gender Identity", - "Women's rights" - ] - }, - { - "text": "Become a State party to the International Convention for the Protection of All Persons from Enforced Disappearance ", - "values": [ - "Enforced disappearances", - "International instruments" - ] - }, - { - "text": "Continue taking measures to ensure that the Austrian Ombudsman Board, as its National Human Rights Institution, to be fully in line with the Paris Principles", - "values": [ - "National Human Rights Institution" - ] - }, - { - "text": "Accelerate the promulgation of the law on the promotion and protection of the rights of persons with disabilities and human trafficking", - "values": [ - "Disabilities", - "Trafficking" - ] - }, - { - "text": "Ensure that all victims of violence have access to counselling and assistance with recovery ", - "values": [ - "Justice" - ] - }, - { - "text": "Complement legislative efforts to improve women's rights with public awareness campaigns on Female Genital Mutilation or cutting and protection against abuse and sexual violence", - "values": [ - "Human rights education and training", - "Torture and other CID treatment", - "Women's rights" - ] - }, - { - "text": "Adopt effective measures to address the problem of overcrowding of the penitentiary centres and ensure adequate conditions for detainees", - "values": [ - "Detention" - ] - }, - { - "text": "Continue developing policies for true gender equality and the fight against domestic violence", - "values": [ - "Rights of the Child", - "Women's rights" - ] - }, - { - "text": "Ratify ICPPED, signed in February 2007 ", - "values": [ - "Enforced disappearances", - "International instruments" - ] - }, - { - "text": "Take more measures to fight against sexual exploitation of children and violence against them", - "values": [ - "Rights of the Child" - ] - }, - { - "text": "Continuation of efforts to ensure the extradition of persons accused of human rights violations and crimes against humanity.", - "values": [ - "Justice" - ] - }, - { - "text": "Continue to promote school attendance for girls ", - "values": [ - "Right to education", - "Rights of the Child", - "Women's rights" - ] - }, - { - "text": "Pursue efforts to address and study academic failures in the secondary schools of children from disadvantaged socioeconomic environments", - "values": [ - "Right to education", - "Rights of the Child" - ] - }, - { - "text": "Maintain and intensify the efforts regarding the elimination of poverty and social inequality.", - "values": [ - "Poverty" - ] - }, - { - "text": "Continue its civic efforts at all levels, in particular at local levels, to promote racial and religious harmony ", - "values": [ - "Freedom of religion and belief", - "Racial discrimination" - ] - }, - { - "text": "Have the Malawian Law Commission take an expedited approach towards the repeal of the Witchcraft Act", - "values": [ - "Rights of the Child", - "Women's rights" - ] - }, - { - "text": "Continue the practice of acceding to the main international human rights instruments", - "values": [ - "International instruments" - ] - }, - { - "text": "Investigate all alleged enforced disappearances, and accede to the International Convention for the Protection of All Persons from Enforced Disappearance ", - "values": [ - "Enforced disappearances", - "International instruments" - ] - }, - { - "text": "Continue working on its National Plan "Education for All" so that all Cambodian children and youth further enjoy an equitable education service ", - "values": [ - "Right to education", - "Rights of the Child" - ] - }, - { - "text": "Fully protect and promote freedom of expression, association and peaceful assembly for all, without fear of arbitrary detention, intimidation or harassment, and investigate all allegations of torture or ill-treatment and hold the perpetrators to account", - "values": [ - "Detention", - "Freedom of association and peaceful assembly", - "Freedom of opinion and expression", - "Torture and other CID treatment" - ] - }, - { - "text": "Take measures to ensure effective implementation of legislation to prevent and punish violence against women", - "values": [ - "Women's rights" - ] - }, - { - "text": "Ratify OP-CRC-IC", - "values": [ - "International instruments", - "Rights of the Child" - ] - }, - { - "text": "Initiate a structured public debate, with the participation of nongovernmental organizations, to accelerate its accession to all core international treaties", - "values": [ - "Civil society", - "International instruments" - ] - }, - { - "text": "Implement a federal human rights act to maximize all Australian's legal human rights protection in accordance with Australia's international obligations ", - "values": [ - "General" - ] - }, - { - "text": "Improve the health and education systems", - "values": [ - "Right to education", - "Right to health" - ] - }, - { - "text": "Reinforce the legal and implementation infrastructure aimed at upholding the rights of women", - "values": [ - "Women's rights" - ] - }, - { - "text": "Continue efforts to eradicate sexual exploitation of children", - "values": [ - "Rights of the Child" - ] - }, - { - "text": "Generate data on manifestations of racial discrimination and on the position of minority groups in society, which could help identify patterns of direct and indirect racial discrimination ", - "values": [ - "Minorities", - "Racial discrimination" - ] - }, - { - "text": "Implement the 1997 Constitution and the rights that this document enshrines, including freedom of expression ", - "values": [ - "Freedom of opinion and expression" - ] - }, - { - "text": "Immediately end extrajudicial executions and carry out an independent and impartial investigation into all enforced disappearances and extrajudicial executions in order to bring the authors of these crimes to justice", - "values": [ - "Extrajudicial executions" - ] - }, - { - "text": "Ratify the Rome Statute of the International Criminal Court signed in 1998", - "values": [ - "International instruments", - "Justice" - ] - }, - { - "text": "Avail itself of the technical assistance and capacity-building support provided by OHCHR ", - "values": [ - "Technical assistance and cooperation" - ] - }, - { - "text": "Ensure that blasphemy laws and their implementation are in line with international law", - "values": [ - "Freedom of opinion and expression" - ] - }, - { - "text": "Include all the rights protected under the Convention on the Rights of the Child, particularly social and cultural rights, in the Federal Constitutional Law on the Rights of Children", - "values": [ - "ESC rights - general", - "International instruments", - "Rights of the Child" - ] - }, - { - "text": "Sign and ratify all the Optional Protocols to United Nations international covenants and conventions to guarantee the effective implementation of the rights protected in the agreements.", - "values": [ - "International instruments" - ] - }, - { - "text": "Expressly prohibit discrimination based on sexual orientation and gender identity, and decriminalize same-sex sexual conduct between consenting adults", - "values": [ - "Sexual Orientation and Gender Identity" - ] - }, - { - "text": "Work on increasing the attendance rate of children at all levels of education, also with the aim of hampering and weakening the capability of criminal organizations to attract youngsters in the vicious circle of illegal activities and violence", - "values": [ - "Right to education", - "Rights of the Child" - ] - }, - { - "text": "Review all national legislation relating to the principle of non-discrimination, particularly as it applies to women and minorities, including sexual minorities, so that it complies fully with international instruments that prohibit all forms of discrimination.", - "values": [ - "Minorities", - "Sexual Orientation and Gender Identity", - "Women's rights" - ] - }, - { - "text": "Extend its participation and share its experience in the field of combating trafficking in persons with the countries of the region and continue its efforts to cooperate with the international community to eliminate this social scourge", - "values": [ - "Trafficking" - ] - }, - { - "text": "Ratify the Optional Protocol to the Convention against Torture and establish an independent, effective and well-resourced National Preventive Mechanism", - "values": [ - "Detention", - "International instruments", - "Torture and other CID treatment" - ] - }, - { - "text": "Continue to improve socioeconomic conditions to eradicate poverty", - "values": [ - "ESC rights - general", - "Poverty" - ] - }, - { - "text": "Continue to strengthen the quality of education by building and equipping school facilities", - "values": [ - "Right to education" - ] - }, - { - "text": "Improve and adopt measures to combat trafficking in persons, including through the draft 2012-2018 action plan, and the provision of training to judges, prosecutors and law enforcement officers ", - "values": [ - "Human rights education and training", - "Trafficking" - ] - }, - { - "text": "Continue to reduce offences subjected to the death penalty ", - "values": [ - "Death penalty" - ] - }, - { - "text": "Seek improved detection of instances of human trafficking into and out of the country", - "values": [ - "Trafficking" - ] - }, - { - "text": "Ratify ICRMW, and adopt all necessary measures with the aim of improving the treatment of migrants and asylum seekers", - "values": [ - "Asylum-seekers - refugees", - "International instruments", - "Labour", - "Migrants" - ] - }, - { - "text": "Provide protection to the family as the basic and fundamental unity of the society", - "values": [ - "Other" - ] - }, - { - "text": "Adopt the draft law on the fight against violence against women", - "values": [ - "Women's rights" - ] - }, - { - "text": "Strengthen the implementation of programmes aimed at the rehabilitation of victims of human trafficking, including the provision of counselling, shelter, legal assistance and other rehabilitative services to victims ", - "values": [ - "Trafficking" - ] - }, - { - "text": "Strengthen its cooperation with OHCHR to organize training sessions in order to raise awareness and education in human rights ", - "values": [ - "Human rights education and training", - "Technical assistance and cooperation" - ] - }, - { - "text": "Implement legal reform to ensure an independent Prosecuting Authority promoting effectiveness, impartiality and fairness of prosecutors in criminal proceedings", - "values": [ - "Justice" - ] - }, - { - "text": "Associate itself with the consensus on the institution-building package whose objective is to equip the Council with the mechanisms and rules necessary for its operation and implementation of its mandate", - "values": [ - "Other" - ] - }, - { - "text": "Cooperate with the international community to sufficiently improve the human rights situation of IDPs", - "values": [ - "Internally displaced persons", - "Technical assistance and cooperation" - ] - }, - { - "text": "Pursue appropriate, efficient policies to address the access of its indigenous population to employment, medical services, education and housing ", - "values": [ - "Indigenous peoples" - ] - }, - { - "text": "Step up the implementation of the recommendations of the Committee against Torture, the Committee on the CRC and the Committee on the Elimination of Racial Discrimination and, in particular, continue its efforts against all forms of discrimination against minorities in education ", - "values": [ - "Minorities", - "Racial discrimination", - "Treaty bodies" - ] - }, - { - "text": "Change the criminal legislation provisions on defamation to eliminate unnecessary pressure on journalists fulfilling their professional duties", - "values": [ - "Freedom of opinion and expression", - "Freedom of the press" - ] - }, - { - "text": "Complete its constitutional, legislative and administrative reforms with the purpose of enhancing the independence of the judiciary, inter alia by way of improving the application of merit-based criteria in appointment and recruitment procedures ", - "values": [ - "Justice" - ] - }, - { - "text": "Take further measures to eliminate discriminatory gender stereotypes ", - "values": [ - "Women's rights" - ] - }, - { - "text": "Establish an independent mechanism to defend the rights of children on Faroe Islands", - "values": [ - "Rights of the Child" - ] - }, - { - "text": "Recommended the decriminalization of same-sex activity between consenting adults and adoption of measures to promote tolerance in this regards, which would also facilitate more effective educational programmes for the prevention of HIV-AIDS", - "values": [ - "HIV - Aids", - "Sexual Orientation and Gender Identity" - ] - }, - { - "text": "Strengthen the legal actions against all forms of discrimination on the basis of race, ethnic origin, language, religion or national origin ", - "values": [ - "Freedom of religion and belief", - "Racial discrimination" - ] - }, - { - "text": "Take all necessary measures to put an end to such acts, notably by bringing to justice State officials guilty of torture or ill-treatment ", - "values": [ - "Human rights violations by state agents", - "Torture and other CID treatment" - ] - }, - { - "text": "Continue with efforts to combat violence against women and take additional measures to reduce violence by addressing the reasons for the withdrawal of many protection order petitions in cases of domestic violence, and ensuring that all reports of domestic violence are thoroughly investigated and that the perpetrators are brought to justice in accordance with the law ", - "values": [ - "Rights of the Child", - "Women's rights" - ] - }, - { - "text": "Accelerate its efforts to establish a National Human Rights Commission, ensuring its independence and full compliance with the Paris Principles", - "values": [ - "National Human Rights Institution" - ] - }, - { - "text": "Seek technical assistance and capacity-building support from relevant United Nations agencies as well as from other international organizations in the field of human rights, and provide human rights training for judges, public prosecutors, legal advisors and law enforcement agencies ", - "values": [ - "Human rights education and training", - "Technical assistance and cooperation" - ] - }, - { - "text": "Finalize various outstanding treaty reports, particularly to the Committee on the Elimination of Discrimination against Women.", - "values": [ - "Treaty bodies" - ] - }, - { - "text": "In order to address the problems and constraints, the GON has identified various activities as key national priorities and commitments, particularly: institutionalizing the rule of law, bringing the on-going peace process to a meaningful conclusion, framing a new constitution, carrying out a democratic, federal, inclusive and progressive state restructuring, rehabilitation and integration of Maoist combatants, achieving wider economic growth to expedite the process of socio-economic transformation, and balanced and inclusive development, making necessary legal reforms and effective implementation of relevant laws, effective implementation of human rights action plan, and other national action plans, including on CEDAW and on the rights of PWDs, formulation and implementation of action plan on the ILO Convention 169, institutional strengthening of national human rights institutions, support for judicial reforms and law enforcement agencies. Similarly, capacity building on treaty body reporting, carrying out further measures to end impunity in any form, providing transitional justice, ending caste-based discrimination in all forms, effective implementation of ICERD, ending GBV, national monitoring of status of implementation of human rights treaty obligations, improvement in prisons and detention facilities, and enhanced human rights education to law enforcement agencies, armed and police forces are also the key priorities and commitments. Commitments also include continued constructive engagement with UN, human rights mechanisms and international community and close collaboration with the civil society.", - "values": [ - "General" - ] - }, - { - "text": "Ratify ICESCR and ICCPR.", - "values": [ - "CP rights - general", - "ESC rights - general", - "International instruments" - ] - }, - { - "text": "Establish a national human rights institution to protect and promote human rights in accordance with the existing international standards ", - "values": [ - "National Human Rights Institution" - ] - }, - { - "text": "Adopt measures to prevent and eliminate all abuses of sexual violence against girls and women and ensure that perpetrators are adequately punished", - "values": [ - "Rights of the Child", - "Women's rights" - ] - }, - { - "text": "Fully implement the Venice Commission and OSCE/ODIHR electoral reform recommendations, in consultation with opposition parties and civil society groups, well in advance of the 2012 and 2013 elections ", - "values": [ - "Civil society", - "Elections" - ] - }, - { - "text": "Continue to request international assistance and advice on successful examples on ways to change traditional social attitudes that accept corporal punishment ", - "values": [ - "Torture and other CID treatment" - ] - }, - { - "text": "Continue its constructive engagement with civil society to enable tangible results on the ground through their joint undertakings in the promotion and protection of human rights in the country ", - "values": [ - "Civil society" - ] - }, - { - "text": "Take further measures to ensure the safety and freedom of action of human rights defenders ", - "values": [ - "Human rights defenders" - ] - }, - { - "text": "Review regulations, policies and practices in accordance with article 21 of the ICCPR", - "values": [ - "Freedom of association and peaceful assembly", - "International instruments" - ] - }, - { - "text": "Montenegro is strongly committed to resolving the status of DPs and IDPs and to improving their situation. ", - "values": [ - "Internally displaced persons" - ] - }, - { - "text": "Eliminate the phenomenon of racial discrimination and strengthen protection of cultural rights of indigenous people ", - "values": [ - "Indigenous peoples", - "Racial discrimination" - ] - }, - { - "text": "Continue strengthening the migration policy in accordance with international standards for the promotion and protection of human rights taking into account that this phenomenon presents major challenges for the country", - "values": [ - "International instruments", - "Migrants" - ] - }, - { - "text": "Consider the ratification of the Optional Protocol to the Convention against Torture and Other Cruel, Inhuman or Degrading Treatment or Punishment ", - "values": [ - "Detention", - "International instruments", - "Torture and other CID treatment" - ] - }, - { - "text": "Strengthen efforts to ensure and protect the full independence and impartiality of the judiciary, and facilitate a broad and participatory dialogue on the challenges in the administration of justice", - "values": [ - "Justice" - ] - }, - { - "text": "Continue to ensure effective functioning of the telemedicine system ", - "values": [ - "Right to health" - ] - }, - { - "text": "Address child labour as a matter of urgency in accordance to its international commitments, notably ILO Conventions No. 138 and 182", - "values": [ - "International instruments", - "Labour", - "Rights of the Child" - ] - }, - { - "text": "Overcome the continuous lack of legal personality for non-Muslim organized religious communities and to ensure the necessary respect for the beliefs of religious minorities, especially following the introduction of compulsory religious education in Turkish schools", - "values": [ - "Freedom of religion and belief", - "Minorities" - ] - }, - { - "text": "Continue ongoing efforts to guarantee universal access to healthcare to the population ", - "values": [ - "Right to health" - ] - }, - { - "text": "Strengthen measures aimed at eradicating child marriages and expedite the enactment of legislation abolishing the forced marriage of children", - "values": [ - "Rights of the Child" - ] - }, - { - "text": "Support the work of organizations devoted to promoting accessibility and the rights of persons with disabilities ", - "values": [ - "Disabilities" - ] - }, - { - "text": "Ratify the Second Optional Protocol to the International Covenant on Civil and Political Rights on the abolition of the death penalty", - "values": [ - "Death penalty", - "International instruments" - ] - }, - { - "text": "Continue to combat all forms of violence against children, including trafficking of children and violence against so-called "witch children"", - "values": [ - "Rights of the Child", - "Trafficking" - ] - }, - { - "text": "Abolish by law the death penalty and consider ratifying ICCPR-OP2", - "values": [ - "Death penalty", - "International instruments" - ] - }, - { - "text": "Recognize the competence of the Committee against Torture as provided for in articles 21 and 22 of CAT ", - "values": [ - "International instruments", - "Torture and other CID treatment", - "Treaty bodies" - ] - }, - { - "text": "Take urgent legislative, as well as practical steps beyond those cited in the national UPR report to protect the rights of religious and ethnic minorities", - "values": [ - "Freedom of religion and belief", - "Minorities", - "UPR process" - ] - }, - { - "text": "Consider establishing legal assistance offices in order to assist those who cannot afford the services of a private lawyer", - "values": [ - "Justice" - ] - }, - { - "text": "Develop further the National Strategy for Gender Equality and Domestic Violence adopted in 2007 in accordance with the recommendations made by the Committee on Economic, Social and Cultural Rights and the Committee against Torture ", - "values": [ - "Treaty bodies", - "Women's rights" - ] - }, - { - "text": "Consider ratifying ILO Convention No. 189", - "values": [ - "International instruments", - "Labour" - ] - }, - { - "text": "Continue national efforts to ensure harmonization of national legislation with international human rights law", - "values": [ - "International instruments" - ] - }, - { - "text": "Replace the death penalty by a sentence in conformity with international norms and initiate the procedure leading to the complete abolition of the death penalty", - "values": [ - "Death penalty" - ] - }, - { - "text": "Implement measures to permit State-owned media to operate independently and at arm's length from government ", - "values": [ - "Freedom of the press" - ] - }, - { - "text": "Further continue the combating of slave and child labour in the country", - "values": [ - "Labour", - "Rights of the Child" - ] - }, - { - "text": "Amend its press-related legislation to comply with the international standards to eliminate the censorship of the printed media through annual licensing -", - "values": [ - "Freedom of the press" - ] - }, - { - "text": "Implement urgently the provisions enshrined in the ILO Worst Forms of Child Labour Convention, with special emphasis on articles 1 and 6 ", - "values": [ - "International instruments", - "Labour", - "Rights of the Child" - ] - }, - { - "text": "Eliminate any legislation that has discriminatory effects against women in family and public life, in line with CEDAW, by, inter alia, including "gender" as a prohibited ground of discrimination in its Constitution ", - "values": [ - "International instruments", - "Women's rights" - ] - }, - { - "text": "Take effective measures to bring conditions of detention in line with international standards, notably with regard to the overcrowding of prisons ", - "values": [ - "Detention" - ] - }, - { - "text": "Stop extrajudicial killings of citizens of the United States of America and foreigners, including those being committed with the use of remotely piloted aircraft", - "values": [ - "Counter-terrorism", - "Extrajudicial executions" - ] - }, - { - "text": "Put an end to discrimination (particularly legal discrimination) against LGBT persons and to criminalization of homosexuality ", - "values": [ - "Sexual Orientation and Gender Identity" - ] - }, - { - "text": "Strengthen migration policies based on respect for the human rights of all migrants", - "values": [ - "Migrants" - ] - }, - { - "text": "Take concrete measures to ensure effective access to education by Roma and Sinti children as well as other vulnerable groups", - "values": [ - "Minorities", - "Right to education", - "Rights of the Child" - ] - }, - { - "text": "Maintain constructive and cooperative dialogue with the United Nations system in the field of human rights ", - "values": [ - "Technical assistance and cooperation" - ] - }, - { - "text": "Consider withdrawing its reservations to articles 26, 37 (c) and 40 of the Convention on the Rights of the Child", - "values": [ - "International instruments", - "Rights of the Child" - ] - }, - { - "text": "Abolish corporal punishment, both in law and in practice ", - "values": [ - "Torture and other CID treatment" - ] - }, - { - "text": "Continue strengthening its national institutional capacity in promoting and protecting human rights, including through completing the process of establishment of a national human rights institution in accordance with the Paris Principles ", - "values": [ - "National Human Rights Institution" - ] - }, - { - "text": "Ratify the International Convention for the Protection of all Persons against Enforced Disappearance and the Second Optional Protocol to ICCPR for the elimination of the death penalty ", - "values": [ - "Death penalty", - "Enforced disappearances", - "International instruments" - ] - }, - { - "text": "Revise the Press Act and abolish provisions that lead to a restriction of freedom of opinion and expression and freedom of religion and belief and take measures in order to allow for free, impartial and objective media ", - "values": [ - "Freedom of opinion and expression", - "Freedom of religion and belief", - "Freedom of the press" - ] - }, - { - "text": "Identify opportunities to enhance the effectiveness and independence of national human rights bodies ", - "values": [ - "National Human Rights Institution" - ] - }, - { - "text": "Work towards more balanced geographical coverage of health-care services with specific focus on rural areas", - "values": [ - "Right to health" - ] - }, - { - "text": "Enact comprehensive anti-trafficking legislation to ensure that everyone, including those under 18, is protected in accordance with the Protocol to Prevent, Suppress and Punish Trafficking in Persons, Especially Women and Children, supplementing the United Nations Convention against Transnational Organized Crime", - "values": [ - "International instruments", - "Rights of the Child", - "Trafficking", - "Women's rights" - ] - }, - { - "text": "Adopt laws to punish racist acts", - "values": [ - "Racial discrimination" - ] - }, - { - "text": "Ensure efficient implementation of the new \u201cHate Crime Action Plan\u201c in order to reduce racially and religiously aggravated crimes", - "values": [ - "Freedom of religion and belief", - "Racial discrimination" - ] - }, - { - "text": "More actively take steps to break the cycle of impunity ", - "values": [ - "Impunity" - ] - }, - { - "text": "Accept and faithfully implement the recommendations of the COI, especially those contained in the Human Rights Council's resolution", - "values": [ - "Justice" - ] - }, - { - "text": "Continue its efforts in expressing its international obligations through domestic laws", - "values": [ - "General" - ] - }, - { - "text": "Cooperate closely with United Nations bodies and address the issue of overdue reports to ICESR, the Human Rights Committee, CEDAW and CAT, among others.", - "values": [ - "Treaty bodies" - ] - }, - { - "text": "Take measures to regularize the situation of stateless residents in Kuwait, as well as measures for their integration in society that guarantee their economic, social and cultural rights", - "values": [ - "ESC rights - general", - "Statelessness and the right to nationality" - ] - }, - { - "text": "Ensure the right to adequate food, including access to food, in a non-discriminatory manner, paying special attention to marginalized groups in its public distribution, in accordance with its international human rights obligations", - "values": [ - "International instruments", - "Right to food" - ] - }, - { - "text": "Consider ratification of the International Covenant on Economic, Social and Cultural Rights, the International Covenant on Civil and Political Rights, as well as the Second Optional Protocol to the International Covenant on Civil and Political Rights, aiming at the abolition of the death penalty", - "values": [ - "CP rights - general", - "Death penalty", - "ESC rights - general", - "International instruments" - ] - }, - { - "text": "Continue its efforts in safeguarding the rights of women and children, particularly in combating trafficking in persons ", - "values": [ - "Rights of the Child", - "Trafficking", - "Women's rights" - ] - }, - { - "text": "Ratify ICCPR and ICESCR.", - "values": [ - "CP rights - general", - "ESC rights - general", - "International instruments" - ] - }, - { - "text": "Abolish the death penalty and ratify the Second Optional Protocol to the ICCPR ", - "values": [ - "Death penalty", - "International instruments" - ] - }, - { - "text": "That necessary reforms to ensure proper functioning and legitimacy of the judiciary are undertaken, in a transparent and inclusive process with all stakeholders including the civil society ", - "values": [ - "Civil society", - "Justice" - ] - }, - { - "text": "Continue its policies aimed at raising awareness on human rights, including through training programmes for law enforcement agencies in view of the important role that they play in implementing human rights and establishing the rule of law in the country", - "values": [ - "Human rights education and training" - ] - }, - { - "text": "Continue applying effective measures for the promotion of employment among young people that allow fair and satisfactory labour conditions", - "values": [ - "Development" - ] - }, - { - "text": "Investigate all complaints of torture and other ill-treatment, extrajudicial killings, and sexual violence committed by the security forces and bring those responsible to justice", - "values": [ - "Extrajudicial executions", - "Human rights violations by state agents", - "Torture and other CID treatment" - ] - }, - { - "text": "Conclude quickly the alignment of its domestic legislation with the provisions of the Rome Statute", - "values": [ - "International instruments", - "Justice" - ] - }, - { - "text": "Continue working for the implementation of the General Assembly resolution establishing the World Solidarity Fund to eradicate poverty in the world.", - "values": [ - "Poverty" - ] - }, - { - "text": "Continue paying special attention to the implementation of national policies for marginalized or vulnerable social groups, including migrant children, aboriginals and disabled persons", - "values": [ - "Disabilities", - "Indigenous peoples", - "Migrants", - "Rights of the Child" - ] - }, - { - "text": "Ensure prompt, transparent and impartial investigation and prosecution of all alleged attacks against independent journalists, ensuring that the media workers do not face reprisals for their publications ", - "values": [ - "Freedom of the press" - ] - }, - { - "text": "Ratify Convention against Torture and Other Cruel, Inhuman or Degrading Treatment or Punishment ", - "values": [ - "International instruments", - "Torture and other CID treatment" - ] - }, - { - "text": "Pay attention to inclusion of persons of African descent in its development policies and plans", - "values": [ - "Development", - "Minorities" - ] - }, - { - "text": "Consider the possibility of ratifying the WHO Framework Convention on Tobacco Control", - "values": [ - "International instruments", - "Right to health" - ] - }, - { - "text": "Consider the possibility of abolition of capital punishment.", - "values": [ - "Death penalty" - ] - }, - { - "text": "Take the necessary measures to promote tolerance, intercultural dialogue and respect for diversity", - "values": [ - "Freedom of religion and belief", - "Minorities" - ] - }, - { - "text": "Further its efforts focused on combating trafficking in human beings, particularly women and children ", - "values": [ - "Rights of the Child", - "Trafficking", - "Women's rights" - ] - }, - { - "text": "Enhance its efforts to promote and raise awareness of the culture of human rights", - "values": [ - "Human rights education and training" - ] - }, - { - "text": "Strengthen efforts to implement the - Vision for Deinstitutionalization -, specifically in the light of the United Nations Guidelines for the Alternative Care of Children", - "values": [ - "Rights of the Child" - ] - }, - { - "text": "Follow-up with a policy to combat trafficking in persons based on prevention, prosecution in accordance with the international law", - "values": [ - "Trafficking" - ] - }, - { - "text": "Japan is pleased to commit itself to follow up the majority of the recommendations it was given.", - "values": [ - "UPR process" - ] - }, - { - "text": "Study the possibility to ratify the International Convention for the Protection of All Persons from Enforced Disappearance ", - "values": [ - "Enforced disappearances", - "International instruments" - ] - }, - { - "text": "Introduce a national minimum age of 16 for employment", - "values": [ - "Labour", - "Rights of the Child" - ] - }, - { - "text": "Expedite the adoption of legislation to prohibit all forms of corporal punishment in the home, including \u201creasonable chastisement\u201c, and ensure that those who perpetrate corporal punishment are held accountable", - "values": [ - "Rights of the Child", - "Torture and other CID treatment" - ] - }, - { - "text": "Ensure full compliance with the recommendations of the United Nations High Commissioner for Human Rights as contained in her report to the Human Rights Council of 15 September 2011, reference number A/HRC/18/53", - "values": [ - "Other" - ] - }, - { - "text": "Lift all the restrictions on the rights to freedom of expression and of the press, including Internet freedom and fully implement its obligations in accordance with ICCPR ", - "values": [ - "Freedom of opinion and expression", - "Freedom of the press", - "International instruments" - ] - }, - { - "text": "Improve mechanisms of legal and social protection of children against sexual violence", - "values": [ - "Rights of the Child" - ] - }, - { - "text": "Enhance its work to achieve the objectives enshrined in the Action Programme of the Government for 2016-2018", - "values": [ - "General" - ] - }, - { - "text": "Ratify the ILO conventions No. 189 and 87 regarding, respectively, decent conditions of work for female and male domestic workers and freedom of association and protection of the right to organise ", - "values": [ - "Freedom of association and peaceful assembly", - "International instruments", - "Labour", - "Women's rights" - ] - }, - { - "text": "Take appropriate measures to provide school education to refugee children and to avoid discrimination of non-camp refugee children", - "values": [ - "Asylum-seekers - refugees", - "Right to education", - "Rights of the Child" - ] - }, - { - "text": "Ensure the constitutionality of the new Islam Law and guarantee that its implementation safeguards the full enjoyment of the freedom of religion and belief", - "values": [ - "Freedom of religion and belief" - ] - }, - { - "text": "Promote effectively equality between men and women ", - "values": [ - "Women's rights" - ] - }, - { - "text": "The delegation expressed the authorities' commitment to continue to cooperate with the United Nations and to carry out effective work on behalf of human rights protection. ", - "values": [ - "Technical assistance and cooperation" - ] - }, - { - "text": "Follow up on the recommendations of a number of treaty bodies in order to adopt a holistic strategy to fight against policies of female genital mutilation, early marriage and forced feeding, and also combat all forms of violence against women, including possible human rights awareness-raising campaigns in cooperation with civil society ", - "values": [ - "Civil society", - "Human rights education and training", - "Rights of the Child", - "Torture and other CID treatment", - "Treaty bodies", - "Women's rights" - ] - }, - { - "text": "Ratify early the International Convention for the Protection of All Persons from Enforced Disappearance", - "values": [ - "Enforced disappearances", - "International instruments" - ] - }, - { - "text": "Continue its efforts to promote maternal and child care and care for young girls ", - "values": [ - "Right to health", - "Rights of the Child", - "Women's rights" - ] - }, - { - "text": "Take affirmative action to increase women's participation in political life ", - "values": [ - "Women's rights" - ] - }, - { - "text": "Fully respect article 1 of the ICESCR and article 1 of the ICCPR and end its policy of hostility and aggression against Nagorno-Karabakh", - "values": [ - "CP rights - general", - "ESC rights - general", - "International instruments" - ] - }, - { - "text": "Ensure child labour law enforcement, and investigation and prosecution of trafficking offences and publish key labour and law enforcement data on child labour", - "values": [ - "Labour", - "Rights of the Child", - "Trafficking" - ] - }, - { - "text": "Channel its efforts into implementing poverty-alleviation strategies, particularly in suburban and rural areas ", - "values": [ - "Poverty" - ] - }, - { - "text": "Draft a national human rights plan which includes public policies and strategies reaching a comprehensive range of human rights ", - "values": [ - "General" - ] - }, - { - "text": "Ensure the protection of children's human rights by reducing and eliminating domestic and international child trafficking, sexual abuse, economic exploitation, "baby farming", widespread homelessness, abuse stemming from belief in child witchcraft, and forced conversions", - "values": [ - "Freedom of religion and belief", - "Right to housing", - "Rights of the Child", - "Trafficking", - "Women's rights" - ] - }, - { - "text": "Accede to the Second Optional Protocol to the International Covenant on Civil and Political Rights aiming at the abolition of the death penalty", - "values": [ - "Death penalty", - "International instruments" - ] - }, - { - "text": "Ensure the complementarity of the institutions for monitoring the protection of human rights ", - "values": [ - "General" - ] - }, - { - "text": "Further seek international financing and cooperation for judiciary and police reform and for the provision of care and support for victims of sexual violence. ", - "values": [ - "Justice", - "Rights of the Child", - "Women's rights" - ] - }, - { - "text": "Address a standing invitation to all special procedures of the Council.", - "values": [ - "Special procedures" - ] - }, - { - "text": "Continue promoting programmes protecting the right to food, through sustainable agriculture that preserve the eco-system ", - "values": [ - "Right to food" - ] - }, - { - "text": "Implement awareness-raising and training programmes for school staff and students to create safe educational environments free from discrimination", - "values": [ - "Human rights education and training", - "Right to education" - ] - }, - { - "text": "Enforce the 2005 anti-trafficking law and ratify the Protocol to Prevent, Suppress and Punish Trafficking in Persons, especially Women and Children, supplementing the United Nations Convention against Transnational Organized Crime", - "values": [ - "Rights of the Child", - "Trafficking", - "Women's rights" - ] - }, - { - "text": "Ratify OP-ICESCR", - "values": [ - "ESC rights - general", - "International instruments" - ] - }, - { - "text": "Continue its efforts to eradicate child labour and ensure access to quality education for all children ", - "values": [ - "Labour", - "Right to education", - "Rights of the Child" - ] - }, - { - "text": "Pursue social and economic development programmes to promote economic and social rights for the population", - "values": [ - "Development", - "ESC rights - general" - ] - }, - { - "text": "Take measures to guarantee the effective implementation of free education and ensure that children complete primary education, taking also into account gender disparities", - "values": [ - "Right to education", - "Rights of the Child", - "Women's rights" - ] - }, - { - "text": "Increase measures to guarantee non-discrimination, to improve the conditions of Roma regarding the realization of good education, adequate housing, and to make available all basic services to them", - "values": [ - "Minorities", - "Racial discrimination", - "Right to education", - "Right to housing" - ] - }, - { - "text": "Implement a more human-rights- and community-based approach to the issue of institutionalization of mentally ill persons ", - "values": [ - "Disabilities" - ] - }, - { - "text": "Build on efforts to address all forms of violence against women by enacting specific laws that prohibit domestic and sexual violence, including intimate partner violence, and by investigating all allegations of violence, prosecuting perpetrators, and ensuring victims are protected and have access to medical and legal services", - "values": [ - "Women's rights" - ] - }, - { - "text": "Extend an open and standing invitation to mandate holders of special procedures", - "values": [ - "Special procedures" - ] - }, - { - "text": "Ratify the International Covenant on Economic, Social and Cultural Rights ", - "values": [ - "ESC rights - general", - "International instruments" - ] - }, - { - "text": "Share with all members of the Working Group its experience in increasing purchasing power and on efforts which have eliminated squatting in Cameroon", - "values": [ - "Development" - ] - }, - { - "text": "Adopt legislative measures to permit the realization of peaceful demonstrations and promote freedom of expression", - "values": [ - "Freedom of association and peaceful assembly", - "Freedom of opinion and expression" - ] - }, - { - "text": "Ensure due process and conduct effective and objective investigations regarding cases of alleged arbitrary arrest and detention, including those which may constitute enforced disappearance", - "values": [ - "Detention", - "Enforced disappearances", - "Justice" - ] - }, - { - "text": "Ratify the Optional Protocol to the Convention against Torture and Other Cruel, Inhuman or Degrading Treatment or Punishment OP-CAT ", - "values": [ - "Detention", - "International instruments", - "Torture and other CID treatment" - ] - }, - { - "text": "Continue to promote gender equality and work to remove all barriers to the full and active participation of women across all spheres of life", - "values": [ - "Women's rights" - ] - }, - { - "text": "The Naturalization law include all persons of foreign descent proving birth in the Dominican Republic before 2010, whether registered or not, be given state identity documents ", - "values": [ - "Minorities" - ] - }, - { - "text": "Ensure that national legislation is in accordance with the United Nations Declaration on the Rights of Indigenous Peoples", - "values": [ - "Indigenous peoples", - "International instruments" - ] - }, - { - "text": "Strengthen prevention of and protection against intimidation, threats and violence against civil society, including human rights defenders and trade unions critical of the Government, and fully guarantee freedom of expression, both offline and online", - "values": [ - "Civil society", - "Freedom of opinion and expression", - "Human rights defenders" - ] - }, - { - "text": "Ratify the main United Nations human rights instruments, particularly OP-CAT and CED", - "values": [ - "Detention", - "Enforced disappearances", - "International instruments", - "Torture and other CID treatment" - ] - }, - { - "text": "Step up processes that would raise the level of health care to all Iraqis", - "values": [ - "Right to health" - ] - }, - { - "text": "Introduce as soon as possible the right to silence without restrictions when testifying, in accordance with its human rights international obligations", - "values": [ - "International instruments", - "Justice" - ] - }, - { - "text": "Take steps to stop prohibition on wearing of religious symbols including the headscarf ", - "values": [ - "Freedom of religion and belief" - ] - }, - { - "text": "Open an independent and impartial inquiry into the excessive use of force by security law enforcement forces before and after the unconstitutional transfer of power in March 2009, under the supervision of the United Nations and the African Union and with the support of international human rights organizations", - "values": [ - "Human rights violations by state agents" - ] - }, - { - "text": "Consider ratifying the Convention on the Rights of Persons with Disabilities ", - "values": [ - "Disabilities", - "International instruments" - ] - }, - { - "text": "Adopt all legislative and policy measures to eradicate child and forced marriages", - "values": [ - "Rights of the Child", - "Torture and other CID treatment", - "Women's rights" - ] - }, - { - "text": "Ensure that necessary reforms are undertaken to guarantee the effective protection of the rights to freedom of expression, assembly and association. This includes enacting without delay an expanded Bill of Rights and Access to Information Bill and ensuring that the Public Order Act is implemented objectively and with professionalism by the police", - "values": [ - "Freedom of association and peaceful assembly", - "Freedom of opinion and expression" - ] - }, - { - "text": "Ratifying the OP-CEDAW", - "values": [ - "International instruments", - "Women's rights" - ] - }, - { - "text": "Consider withdrawing all reservations to the Convention on the Rights of the Child and those concerning article 15 (2) and article 16 (1) (h) of the Convention on the Elimination of All Forms of Discrimination against Women", - "values": [ - "International instruments", - "Rights of the Child", - "Women's rights" - ] - }, - { - "text": "Adopt national legislation prohibiting the recurring forced marriages of minors in the country", - "values": [ - "Rights of the Child", - "Women's rights" - ] - }, - { - "text": "Undertake further work to address access to profits from natural resources, including the role of the corporate sector in social development", - "values": [ - "Business and human rights", - "Development", - "Environment" - ] - }, - { - "text": "Seek support from the Council in the areas highlighted in the national report.", - "values": [ - "Technical assistance and cooperation" - ] - }, - { - "text": "Consider ratifying the International Convention for the Protection of All Persons from Enforced Disappearance ", - "values": [ - "Enforced disappearances", - "International instruments" - ] - }, - { - "text": "Pursue actions to fight all forms of discrimination", - "values": [ - "Other" - ] - }, - { - "text": "Adopt legislation criminalizing female genital mutilation", - "values": [ - "Rights of the Child", - "Torture and other CID treatment", - "Women's rights" - ] - }, - { - "text": "Implement measures to ensure girls' and women's access to all levels of education and to ensure a higher level of women's participation in public life", - "values": [ - "Right to education", - "Rights of the Child", - "Women's rights" - ] - }, - { - "text": "Continue and provide greater cooperation to the Working Group on Enforced or Involuntary Disappearances to accomplish its work", - "values": [ - "Enforced disappearances", - "Special procedures" - ] - }, - { - "text": "Ensure that the Compulsory Education Act provides for children with disabilities", - "values": [ - "Disabilities", - "Right to education", - "Rights of the Child" - ] - }, - { - "text": "Ensure that journalists and writers may work freely and without fear of retribution for expressing critical opinions or covering topics that the Government may find sensitive", - "values": [ - "Freedom of opinion and expression", - "Freedom of the press" - ] - }, - { - "text": "Change its domestic laws to make confessions obtained under torture inadmissible as evidence in criminal court proceedings against the person who confessed.", - "values": [ - "Torture and other CID treatment" - ] - }, - { - "text": "Release all Palestinian and Syrian detainees and put an end to all the practices that seek to modify the demographic composition and architecture of Jerusalem and the Syrian Golan", - "values": [ - "Detention", - "Justice", - "Right to land" - ] - }, - { - "text": "Continue to engage with the affected communities to provide protection to those most vulnerable to hate crimes and discrimination, and to better understand their circumstances", - "values": [ - "Racial discrimination" - ] - }, - { - "text": "Provide adequate financial and human resources to the information centres established to promote and increase awareness on human rights issues ", - "values": [ - "Human rights education and training" - ] - }, - { - "text": "Faced with these challenges, Niger is committed to: (a) Promoting good governance through transparent conduct of public affairs, (b) Catching up on its reporting obligations, (c) Strengthening capacity to follow up on treaty body and universal periodic review recommendations, (d) Regulating the informal sector, (e) Combating illiteracy, (f) Stepping up awareness-raising and training for women in leadership skills, (g) Continuing efforts to amend the Quota Act, (h) Adopting the charter on access to information, (i) Allocating more resources to the education sector, (j) Integrating human rights education into curricula at all levels of the education system, (k) Continuing the implementation of the decent work country programme with ILO, (l) Formulating a national plan of action to combat trafficking, in accordance with the subregional action plan of the Economic Community of West African States, (m) Adopting the draft ordinance on trafficking in persons, (n) Bringing justice closer to the public through the creation of new courts, (o) Establishing a body specialized in prison administration and human rights, (p) Adopting incentives for health personnel to specialize in certain fields and to help them practise, (q) Improving access to medicine, (r) Strengthening existing measures through the setting up of food security stocks, (s) Developing research and modernizing the agricultural and livestock sector in order to improve productivity, (t) Encouraging investment in the water industry to make better use of Niger's potential water resources, (u) Extending the supply of safe drinking water for the population and increasing the number of surface reservoirs for the irrigation of off-season crops, (v) Continuing the fight against desertification, (w) Implementing the national housing policy, (x) Formulating a national child protection policy, (y) Implementing the national gender policy and raising public awareness of violence against women, (z) Continuing efforts to adopt the personal status code, (aa) Formulating and implementing a national human rights plan, (bb) Establishing a national human rights commission in accordance with the Paris Principles, (cc) Creating a directorate for juvenile judicial protection, (dd) Establishing a safe drinking water supply system in all rural villages.", - "values": [ - "General" - ] - }, - { - "text": "Immediately release the 12 women citizens of DPR Korea who were abducted during the former regime and Mrs. Kym Ryon Hui, who has been appealing for her return to her family, and bring to justice those responsible for the abduction", - "values": [ - "Enforced disappearances", - "Women's rights" - ] - }, - { - "text": "Exert further efforts to implement the national plan to combat human trafficking", - "values": [ - "Trafficking" - ] - }, - { - "text": "Adopt and implement appropriate, efficient measures to prevent torture and other forms of ill-treatment, to ensure prompt and credible investigations of all allegations of torture and ill-treatment, in particular deaths in custody, providing for redress and rehabilitation to victims ", - "values": [ - "Detention", - "Torture and other CID treatment" - ] - }, - { - "text": "Decriminalize consensual sexual acts between adults of the same sex and criminalize violence committed against individuals based on their sexual orientation", - "values": [ - "Sexual Orientation and Gender Identity" - ] - }, - { - "text": "Awareness raising on disaster prevention, enhancement of early warning systems, transparent and participatory disaster mitigation exercises, ensuring equitable relief measures with special attention paid to vulnerable groups and the preparation of a consistent methodology to determine compensation to affected people will be carried out", - "values": [ - "Environment", - "Other" - ] - }, - { - "text": "Continue to take strong measures to end the recruitment and use of child soldiers ", - "values": [ - "International humanitarian law", - "Rights of the Child" - ] - }, - { - "text": "Consider establishing an independent commissioner for child rights", - "values": [ - "Rights of the Child" - ] - }, - { - "text": "Regularly publish detailed statistics on death penalty use", - "values": [ - "Death penalty" - ] - }, - { - "text": "Expedite the ratification process of the Convention on the Rights of Persons with Disabilities and the Convention on the Elimination of All forms of Discrimination against Women and consider ratifying other international human rights conventions, particularly the International Covenant on Economic, Social and Cultural Rights, the Convention on the Rights of the Child and the International Convention on the Protection of the Rights of All Migrant Workers and Members of their Families", - "values": [ - "International instruments" - ] - }, - { - "text": "Continue to review and bring into line its domestic legal framework with international human rights norms to which Guyana is a party, in particular to make progress towards nondiscrimination against minorities, indigenous peoples, women and children ", - "values": [ - "Indigenous peoples", - "International instruments", - "Minorities", - "Rights of the Child", - "Women's rights" - ] - }, - { - "text": "Sign and ratify the International Convention for the Protection of All Persons from Enforced Disappearance CED ", - "values": [ - "Enforced disappearances", - "International instruments" - ] - }, - { - "text": "Accord special attention, within its public policy on teaching, to the education of indigenous persons and children living in poverty ", - "values": [ - "Indigenous peoples", - "Poverty", - "Right to education", - "Rights of the Child" - ] - }, - { - "text": "Take measures to end discrimination based on race and ethnicity", - "values": [ - "Racial discrimination" - ] - }, - { - "text": "Continue its work in acceding to the core human rights conventions", - "values": [ - "International instruments" - ] - }, - { - "text": "Make all efforts to increase its overseas development assistance to bring it more in line with the promised target of 0.7 per cent of gross national income, thus facilitating the promotion of human rights in poor countries ", - "values": [ - "Development" - ] - }, - { - "text": "Continue working to eradicate the recruitment of children", - "values": [ - "International humanitarian law", - "Rights of the Child" - ] - }, - { - "text": "Reduce violence against women through awareness and mobilization campaigns to change social norms, significantly strengthen legal accountability in cases of violence against women and improve national strategic planning to mobilize resources and improve coordination in combating violence against women", - "values": [ - "Human rights education and training", - "Women's rights" - ] - }, - { - "text": "Continue its plan for social and economic development further to protect the rights of women and children so as to achieve comprehensive social and economic development ", - "values": [ - "Rights of the Child", - "Women's rights" - ] - }, - { - "text": "Continue efforts to combat drugs and crime within a framework of the protection of and respect for human rights", - "values": [ - "Public security" - ] - }, - { - "text": "Ensure that any physical or moral harm against journalists or human rights defenders is investigated and that the perpetrators are duly prosecuted ", - "values": [ - "Freedom of the press", - "Human rights defenders" - ] - }, - { - "text": "Adopt national legislation to combat offences related to racism and to provide redress for victims of racism and other forms of discrimination ", - "values": [ - "Racial discrimination" - ] - }, - { - "text": "Extend the moratorium on the death penalty and abolish the death penalty, especially for juveniles, in keeping with its international commitments", - "values": [ - "Death penalty", - "Rights of the Child" - ] - }, - { - "text": "Codify the prohibition of the propaganda for xenophobia, anti- Semitism, neo-Nazism, and provide for criminal liability for such acts and establish racism as an aggravating circumstance ", - "values": [ - "Racial discrimination" - ] - }, - { - "text": "Continue to adopt all measures considered necessary to eliminate definitively the practice of female genital mutilation ", - "values": [ - "Rights of the Child", - "Torture and other CID treatment", - "Women's rights" - ] - }, - { - "text": "Formalize the abolition of the death penalty and accede to the Second Optional Protocol to the International Covenant on Civil and Political Rights", - "values": [ - "Death penalty", - "International instruments" - ] - }, - { - "text": "Ratify fundamental instruments to which it is not yet party, notably OP-CRC-AC and OP-CRC-SC", - "values": [ - "International humanitarian law", - "International instruments", - "Rights of the Child", - "Trafficking" - ] - }, - { - "text": "Further promote and protect the rights of religious minorities ", - "values": [ - "Freedom of religion and belief", - "Minorities" - ] - }, - { - "text": "Approve the Children\u2019s Code and give greater diffusion to the new regulatory and legislative measures for the protection of widows and orphans", - "values": [ - "Rights of the Child", - "Women's rights" - ] - }, - { - "text": "Allow the Special Rapporteur on the situation of human rights in Eritrea to enter the country, fully cooperate with her and implement the relevant recommendations formulated by her ", - "values": [ - "Special procedures" - ] - }, - { - "text": "Positively consider the effective creation of a Truth and Reconciliation Commission, credible and independent, to shed light upon the violations of human rights of the past ", - "values": [ - "Justice" - ] - }, - { - "text": "Exert more efforts to provide care to victims of sexual violence in collaboration and assistance with its partners and the international community ", - "values": [ - "Rights of the Child", - "Technical assistance and cooperation", - "Women's rights" - ] - }, - { - "text": "Cooperate with the Special Rapporteurs visiting the country and take into account their views", - "values": [ - "Special procedures" - ] - }, - { - "text": "Enact comprehensive equality legislation at the federal level", - "values": [ - "General" - ] - }, - { - "text": "Enact legislation to prohibit explicitly corporal punishment of children in all settings, including at home and by members of their family", - "values": [ - "Rights of the Child", - "Torture and other CID treatment" - ] - }, - { - "text": "Ratify the Optional Protocol to the Convention on the Rights of the Child on the involvement of children in armed conflict.", - "values": [ - "International humanitarian law", - "International instruments", - "Rights of the Child" - ] - }, - { - "text": "Look into ratifying the Second Optional Protocol to the International Covenant on Civil and Political Rights, aiming at the abolition of the death penalty (ICCPR-OP2) ", - "values": [ - "Death penalty", - "International instruments" - ] - }, - { - "text": "Sign and subsequently ratify the International Convention on the Protection of the Rights of All Migrant Workers and Members of Their Families ", - "values": [ - "International instruments", - "Labour", - "Migrants" - ] - }, - { - "text": "Issue a standing invitation to all special procedure mandate holders", - "values": [ - "Special procedures" - ] - }, - { - "text": "That its legislative framework and relevant institutional mechanisms be strengthened in order to exclude all discriminatory practices that prevent equal access to employment for persons belonging to ethnic, national or religious minorities ", - "values": [ - "Freedom of religion and belief", - "Labour", - "Minorities", - "Racial discrimination" - ] - }, - { - "text": "Take further measures to guarantee access to education at all levels, in particular at university level ", - "values": [ - "Right to education" - ] - }, - { - "text": "Promote equality between sexes", - "values": [ - "Women's rights" - ] - }, - { - "text": "Replying to the advance questions and recommendations made regarding enforcement of the practice of flogging and of the death penalty, Maldives wished to ensure all partners that it remained committed to strengthening the legislative and judicial framework involved in cases of flogging, informed them that the Government remained dedicated to further strengthening those systems and processes and looked forward to any kind of support from partners. Similarly, with regard to the enforcement of the death penalty, Maldives stated that such punishment would not be resorted to unless it was endorsed by all court tiers and was in line with all regulations and procedures", - "values": [ - "Death penalty", - "Justice", - "Torture and other CID treatment" - ] - }, - { - "text": "Further improve the living conditions of Roma, especially ensuring access to running water, electricity and housing, as well as providing education, employment and health care for all members of the Roma community", - "values": [ - "Development", - "Minorities", - "Right to education", - "Right to health", - "Right to housing", - "Right to water and sanitation" - ] - }, - { - "text": "Request technical cooperation and assistance from the international community, including the appropriate international agencies, to strengthen national capacities to collect, process and analyse relevant human rights statistical information", - "values": [ - "Technical assistance and cooperation" - ] - }, - { - "text": "Take appropriate and effective measures to fight discrimination and violence against Roma and ensure their equal access to education, housing, health care and employment.", - "values": [ - "Minorities" - ] - }, - { - "text": "Provide greater freedom to journalism", - "values": [ - "Freedom of the press" - ] - }, - { - "text": "Ratify the Rome Statute of ICC", - "values": [ - "International instruments", - "Justice" - ] - }, - { - "text": "Ratify promptly the International Convention on the Protection of the Rights of All Migrant Workers and Members of Their Families, the Optional Protocol to the International Covenant on Civil and Political Rights and the Optional Protocol to the Convention on Rights of Persons with Disabilities", - "values": [ - "CP rights - general", - "Disabilities", - "International instruments", - "Labour", - "Migrants" - ] - }, - { - "text": "Strengthen efforts to guarantee the rights of people with disabilities, in particular by fully implementing the provision of the Convention on the Rights of Persons with Disabilities", - "values": [ - "Disabilities", - "International instruments" - ] - }, - { - "text": "Continue to implement strategies and plans that ensures economic and social development and give specific attention to combating poverty", - "values": [ - "Development", - "ESC rights - general", - "Poverty" - ] - }, - { - "text": "Amend its legislation to prohibit and punish corporal punishment inflicted on children in the home and school, and increase the efforts to raise awareness of the negative effects of this practice", - "values": [ - "Human rights education and training", - "Rights of the Child", - "Torture and other CID treatment" - ] - }, - { - "text": "Ratify those core human rights treaties to which Fiji is not yet a party and draw up a timetable for doing so", - "values": [ - "International instruments" - ] - }, - { - "text": "Continue its efforts to create the necessary institutional infrastructure that contributes to the overall improvement of the human rights regime in Afghanistan, with all the necessary technical and financial support from the international community.", - "values": [ - "Technical assistance and cooperation" - ] - }, - { - "text": "Explicitly and entirely prohibit any kind of corporal punishment of children by law, even in cases of so-called reasonable chastisement within the family", - "values": [ - "Rights of the Child", - "Torture and other CID treatment" - ] - }, - { - "text": "Make further efforts to reduce overcrowding in penitentiary institutions, including through the use of alternative measures, and improve conditions in detention facilities ", - "values": [ - "Detention" - ] - }, - { - "text": "Disseminate information concerning trafficking and sexual exploitation throughout rural areas with an emphasis on boy and girl children and adolescents, with a view to prevention ", - "values": [ - "Human rights education and training", - "Rights of the Child", - "Trafficking" - ] - }, - { - "text": "Put in place a comprehensive strategy to eliminate patriarchal attitudes and stereotypes that discriminate against women", - "values": [ - "Women's rights" - ] - }, - { - "text": "Further focus on children's access to primary education and speed up the process of implementing "The Interim Education Plan" and further promote the return to school of children who have dropped out ", - "values": [ - "Right to education", - "Rights of the Child" - ] - }, - { - "text": "Ensure that complete and impartial investigations are conducted into allegations of attacks and threats against persons based on their sexual orientation or gender identity and bring those responsible to justice in conformity with the international standards", - "values": [ - "Sexual Orientation and Gender Identity" - ] - }, - { - "text": "Give consideration to establishing a national preventative mechanism ", - "values": [ - "Torture and other CID treatment" - ] - }, - { - "text": "Consider the ratification or adhesion to the Optional Protocol to the International Covenant on Economic, Social and Cultural Rights", - "values": [ - "ESC rights - general", - "International instruments" - ] - }, - { - "text": "Continue the process of ratification of the main international human rights instruments", - "values": [ - "International instruments" - ] - }, - { - "text": "Take legislative measures to curtail hate speech, not only by the extremists but also by the mainstream media and public figures as there has been an increase in the hate-motivated crimes against refugees, migrants and minorities, including hate crimes affecting religious and ethnic minorities", - "values": [ - "Asylum-seekers - refugees", - "Freedom of religion and belief", - "Migrants", - "Minorities", - "Racial discrimination" - ] - }, - { - "text": "Continue efforts to ensure access to quality health care to all South Africans in line with efforts to achieve universal health-care coverage by 2030", - "values": [ - "Right to health" - ] - }, - { - "text": "Continue its efforts to promote gender equality in the education sector", - "values": [ - "Right to education", - "Women's rights" - ] - }, - { - "text": "Ratify the ICRMW recognising the compulsory jurisdiction of the monitoring body to receive individual complaints", - "values": [ - "International instruments", - "Labour", - "Migrants" - ] - }, - { - "text": "Solomon Islands further stated that it had recently sent an invitation to the OHCHR Regional Office for an in-country assessment for the purpose of establishing an office in Solomon Islands.", - "values": [ - "Technical assistance and cooperation" - ] - }, - { - "text": "Effectively implement the National Plan to Reduce Violence Against Women and Their Children and strengthen its actions to reduce violence and sexual abuse of women with disabilities and indigenous women", - "values": [ - "Disabilities", - "Indigenous peoples", - "Rights of the Child", - "Women's rights" - ] - }, - { - "text": "Take measures to ensure the protection of the right to an adequate standard of living for children in vulnerable situations, in particular the rights of children affected by HIV/AIDS and boys and girls with disabilities", - "values": [ - "Disabilities", - "HIV - Aids", - "Rights of the Child" - ] - }, - { - "text": "Continue its work in combating religiously motivated crimes and acts of violence ", - "values": [ - "Freedom of religion and belief", - "Racial discrimination" - ] - }, - { - "text": "Ensure that all reports of human rights violations are investigated and that those suspected of violations are suspended from active duty and brought to justice ", - "values": [ - "General" - ] - }, - { - "text": "Continue to reform the judicial system in order to guarantee its independence and capacity to administrate justice, and speed up efforts to abolish the death penalty", - "values": [ - "Death penalty", - "Justice" - ] - }, - { - "text": "Continue efforts to strengthen the education system, in particular access to education in rural areas", - "values": [ - "Right to education" - ] - }, - { - "text": "To continue the discouragement of any manifestation of xenophobia", - "values": [ - "Racial discrimination" - ] - }, - { - "text": "Repeal all discriminatory laws against irregular migrants and take action to investigate and prosecute discriminatory acts by public and security officials, in particular where racial and religious motives are aggravating factors", - "values": [ - "Human rights violations by state agents", - "Migrants" - ] - }, - { - "text": "Make a full explanation of the relationship between the restrictive actions taken by the authorities and the Constitution", - "values": [ - "Other" - ] - }, - { - "text": "Continue efforts to facilitate access to education for indigenous communities ", - "values": [ - "Indigenous peoples", - "Right to education" - ] - }, - { - "text": "Promote the approval of the comprehensive law on violence against women", - "values": [ - "Women's rights" - ] - }, - { - "text": "Ensure the application of the transitional process in accordance with the N'Djaména Declaration in order to restore the rule of law in the country", - "values": [ - "Justice" - ] - }, - { - "text": "End the inhuman blockade of Gaza", - "values": [ - "Other" - ] - }, - { - "text": "Address the question of the conditions offered to asylum and refuge seekers during the processing of their applications and once the procedure is completed, ensure that these people enjoy the human rights which they are entitled to under the Convention relating to the Status Refugees of 1951 and other applicable international norms", - "values": [ - "Asylum-seekers - refugees", - "International instruments" - ] - }, - { - "text": "Increase budget allocation to the education sector", - "values": [ - "Right to education" - ] - }, - { - "text": "Improve the infrastructure of the health-care system and strengthen women's access to health-care facilities", - "values": [ - "Right to health", - "Women's rights" - ] - }, - { - "text": "Fully implement the outcomes of the 2017 political dialogue, particularly measures to improve health and social protection, gender equality, education, training and job creation", - "values": [ - "Labour", - "Right to education", - "Right to health", - "Women's rights" - ] - }, - { - "text": "Andorra reiterates its commitment, without prejudice to any future move to fully align its national legislation with the Rome Statute of the International Criminal Court", - "values": [ - "International instruments", - "Justice" - ] - }, - { - "text": "Seek to overcome obstacles that hinder the implementation of the act on trafficking, and expedite the current process of setting up a standing mechanism to combat trafficking", - "values": [ - "Trafficking" - ] - }, - { - "text": "Accelerate the adoption of the Domestic Violence Act", - "values": [ - "Rights of the Child", - "Women's rights" - ] - }, - { - "text": "Consider extending an invitation to the Special Rapporteur on the independence of judges and lawyers ", - "values": [ - "Special procedures" - ] - }, - { - "text": "Support the active and meaningful participation of women, "ethnic groups", internally displaced persons and refugees in the implementation of the Nationwide Ceasefire Agreement, including the national dialogue", - "values": [ - "Asylum-seekers - refugees", - "Internally displaced persons", - "Minorities", - "Women's rights" - ] - }, - { - "text": "While commending the Government on the measures already taken, in particular the draft act on equal treatment, the system of human rights advisers, and related research and training, recommended that steps continue to be taken by Poland to follow up on the recommendations of the Human Rights Committee.", - "values": [ - "CP rights - general", - "Treaty bodies" - ] - }, - { - "text": "Ensure universal access to health-care services for all, particularly, women, including migrant, disabled and elderly women ", - "values": [ - "Disabilities", - "Migrants", - "Right to health", - "Women's rights" - ] - }, - { - "text": "Include the issue of domestic violence in regular education and training courses for police officers, prosecutors and judges", - "values": [ - "Rights of the Child", - "Women's rights" - ] - }, - { - "text": "Formally abolish the death penalty by ratifying the Second Optional Protocol to the ICCPR and support the next General Assembly resolution calling for a moratorium on the death penalty", - "values": [ - "Death penalty", - "International instruments" - ] - }, - { - "text": "Improve financial supervisory mechanisms to ensure better control and transparency in order to combat corruption and tax evasion", - "values": [ - "Corruption" - ] - }, - { - "text": "Ensure that thorough and impartial investigations are carried out into allegations of attacks against human rights defenders", - "values": [ - "Human rights defenders" - ] - }, - { - "text": "Consider ratification of the Optional Protocol to the Convention on the Rights of the Child on the involvement of children in armed conflict", - "values": [ - "International humanitarian law", - "International instruments", - "Rights of the Child" - ] - }, - { - "text": "Strengthen the measures against discrimination, racism and xenophobia manifested in the field of employment, access to housing and education with regard to foreigners and minorities", - "values": [ - "Labour", - "Migrants", - "Minorities", - "Racial discrimination", - "Right to education", - "Right to housing" - ] - }, - { - "text": "Continue to comprehensively promote economic and social development as well as the harmonious co-existence among all ethnic groups and religious groups ", - "values": [ - "Development", - "Freedom of religion and belief", - "Minorities" - ] - }, - { - "text": "Continue to cooperate with the United Nations and other international organizations to strengthen human rights in Cambodia ", - "values": [ - "Other" - ] - }, - { - "text": "Gradually form special police intervention units with the inclusion of female personnel qualified in handling domestic violence cases ", - "values": [ - "Rights of the Child", - "Women's rights" - ] - }, - { - "text": "Empower legal advisers in parliament to review draft laws and policies, incorporate input from civil society and experts in the international community, and oppose legislation that is inconsistent with international human rights obligations and commitments", - "values": [ - "Civil society", - "International instruments" - ] - }, - { - "text": "Establish a national human rights institution in accordance with the principles relating to the status of national institutions for the promotion and protection of human rights (Paris Principles) ", - "values": [ - "National Human Rights Institution" - ] - }, - { - "text": "Launch a comprehensive plan to prevent, combat and reintegrate juvenile delinquents with particular attention to the necessary adaptation of relevant laws to the age of the detainees ", - "values": [ - "Detention", - "Justice", - "Rights of the Child" - ] - }, - { - "text": "Continue strengthening the government programme 2012-2015 to improve the situation in areas such as education, health, disabled persons and the social integration of vulnerable groups", - "values": [ - "Disabilities", - "Right to education", - "Right to health" - ] - }, - { - "text": "Issue a standing invitation to the special procedures of the United Nations, including the Special Rapporteur on the situation of human rights defenders", - "values": [ - "Human rights defenders", - "Special procedures" - ] - }, - { - "text": "Ratify the Convention on Cluster Munitions", - "values": [ - "International humanitarian law", - "International instruments" - ] - }, - { - "text": "Continue to strengthen programmes of prevention of domestic violence, especially against children and elderly persons ", - "values": [ - "Rights of the Child", - "Women's rights" - ] - }, - { - "text": "Comply with CEDAW's suggestion to incorporate the Convention on the Elimination of All Forms of Discrimination against Women into its national legislation, in particular article 1 which defines discrimination against women ", - "values": [ - "International instruments", - "Treaty bodies", - "Women's rights" - ] - }, - { - "text": "Suspend, without conditions, the expansion of settlements that violate fundamental rights of the Palestinian population, and remedy the negative impact", - "values": [ - "Other" - ] - }, - { - "text": "Continue to implement initiatives that combat hate speech and foster mutual respect between communities", - "values": [ - "Racial discrimination" - ] - }, - { - "text": "Involve civil society organizations in the follow-up to this review ", - "values": [ - "Civil society", - "UPR process" - ] - }, - { - "text": "Enhance its targeting mechanisms with regard to the delivery of social assistance to ensure that children and women, particularly pregnant and breastfeeding women, are not left behind", - "values": [ - "Rights of the Child", - "Women's rights" - ] - }, - { - "text": "Investigate, prosecute and take all adequate measures to reduce and eradicate incidents of sexual gender-based violence committed by armed elements ", - "values": [ - "Human rights violations by state agents", - "Rights of the Child", - "Women's rights" - ] - }, - { - "text": "Consider accession to the International Convention on the Protection of the Rights of All Migrant Workers and Members of Their Families", - "values": [ - "International instruments", - "Labour", - "Migrants" - ] - }, - { - "text": "Strengthen efforts to ensure the full enrolment of children, particularly girls, in educational institutions", - "values": [ - "Right to education", - "Rights of the Child", - "Women's rights" - ] - }, - { - "text": "Liberalize the work of mass media, and draw a clear distinction between the legitimate fight against terrorism and strict respect for freedom of religion.", - "values": [ - "Counter-terrorism", - "Freedom of religion and belief", - "Freedom of the press" - ] - }, - { - "text": "Strengthen measures to fight the discrimination of which certain communities are victims, including persons of African descent and migrants", - "values": [ - "Migrants", - "Minorities", - "Racial discrimination" - ] - }, - { - "text": "Seek to obtain financial assistance in order to implement poverty reduction plans", - "values": [ - "Poverty", - "Technical assistance and cooperation" - ] - }, - { - "text": "Continue efforts to support the rights of the child and protect children from sexual exploitation and trafficking", - "values": [ - "Rights of the Child", - "Trafficking" - ] - }, - { - "text": "Immediately renew the dialogue with all parties to the conflict and take a position in support of a political solution that is inclusive and consensual, emphasizes the protection of human rights and would lead to the sustainable restoration of democracy and a return to constitutional order in the country", - "values": [ - "Other" - ] - }, - { - "text": "Continue to investigate human rights violations, particularly enforced disappearances that occurred in the recent past, regardless of the time elapsed since the commencement of the crime. Ensure that all State officials, including judges and prosecutors, receive adequate, specific training on the International Convention for the Protection of All Persons from Enforced Disappearance and the obligations it imposes on States parties", - "values": [ - "Enforced disappearances", - "Human rights education and training", - "International instruments", - "Justice" - ] - }, - { - "text": "Take effective action to combat and eliminate the phenomenon of female genital mutilation and ensure the full implementation of the relevant National Action Plan", - "values": [ - "Rights of the Child", - "Torture and other CID treatment", - "Women's rights" - ] - }, - { - "text": "Remove legislation which discriminates against individuals on the basis of their religion or belief ", - "values": [ - "Freedom of religion and belief" - ] - }, - { - "text": "Immediately release all human rights defenders and political prisoners ", - "values": [ - "Detention", - "Freedom of opinion and expression", - "Human rights defenders" - ] - }, - { - "text": "Take necessary steps to intensify the judicial prosecution of all cases of alleged torture ", - "values": [ - "Torture and other CID treatment" - ] - }, - { - "text": "Undertake the necessary legislative measures to criminalize domestic violence", - "values": [ - "Rights of the Child", - "Women's rights" - ] - }, - { - "text": "Persevere efforts to build a truly inclusive democracy by fully recognizing the rights of indigenous peoples", - "values": [ - "Indigenous peoples" - ] - }, - { - "text": "Revise domestic legislation to provide for the granting of refugee status and incorporate the principle of non-refoulement.", - "values": [ - "Asylum-seekers - refugees" - ] - }, - { - "text": "Expedite the approval of the draft national action plan to combat racism, racial discrimination, xenophobia and related intolerance, by the relevant organ, and allocate proper resources for its implementation", - "values": [ - "Racial discrimination" - ] - }, - { - "text": "Put into practice the plan to establish a system of human rights indicators ", - "values": [ - "Other" - ] - }, - { - "text": "Further address all forms of gender-based violence and abuses by revising the relevant provisions of the Penal Code, Criminal Procedure Code and Domestic Violence Victim Protection Act", - "values": [ - "Rights of the Child", - "Women's rights" - ] - }, - { - "text": "Take steps to ensure that vulnerable groups, especially children with disabilities, continue to gain access to free education in an inclusive learning environment", - "values": [ - "Disabilities", - "Right to education", - "Rights of the Child" - ] - }, - { - "text": "Continue its efforts for the implementation of its reform plan of June 2014 concerning the education of American Indian students and make use of education grant available to better meet the needs of American Indian and Alaskan native students", - "values": [ - "Indigenous peoples", - "Right to education" - ] - }, - { - "text": "Adopt and enact the Law on the Status of Judges, the Amendment of the Law on the Organization and Functioning of the Supreme Council of Magistracy and the anti-corruption law in accordance with recommendations made by the Special Representative of the Secretary-General for human rights in Cambodia, the United Nations Development Assistance Framework and the Committee on Economic, Social and Cultural Rights, respectively, and create and adopt a code of conduct for judges, prosecutors and disciplinary councils, including disciplinary provisions", - "values": [ - "Justice", - "Special procedures", - "Treaty bodies" - ] - }, - { - "text": "Install a high-ranking governmental working group on human rights to ascertain the smooth cooperation and coordination of inter-ministerial work in the field of human rights", - "values": [ - "General" - ] - }, - { - "text": "Step up efforts to allocate more resources in the Constitution", - "values": [ - "Other" - ] - }, - { - "text": "Establish an independent elections body ", - "values": [ - "Elections" - ] - }, - { - "text": "Increase its efforts to prevent and combat racial and religious discrimination", - "values": [ - "Freedom of religion and belief", - "Racial discrimination" - ] - }, - { - "text": "Carry out transparent and impartial investigations, in accordance with international standards, regarding allegations of murders and extrajudicial killings in order to guarantee protection of the right to life", - "values": [ - "Extrajudicial executions" - ] - }, - { - "text": "Create favourable conditions to facilitate the access of persons with disabilities to education and to employment ", - "values": [ - "Disabilities", - "Labour", - "Right to education" - ] - }, - { - "text": "Continue providing universal and free education", - "values": [ - "Right to education" - ] - }, - { - "text": "Continue efforts to raise awareness concerning human rights by all means at its disposal ", - "values": [ - "Human rights education and training" - ] - }, - { - "text": "Incorporate the crime of torture into domestic law, as recommended by the Committee against Torture", - "values": [ - "Torture and other CID treatment", - "Treaty bodies" - ] - }, - { - "text": "Immediately release persons detained or imprisoned for exercising their freedom of expression on the Internet", - "values": [ - "Detention", - "Freedom of opinion and expression" - ] - }, - { - "text": "While recognizing achievements of the Instance Equité - Reconciliation (IER), to continue to implement the remaining recommendations of the IER.", - "values": [ - "Justice" - ] - }, - { - "text": "Permit the Special Rapporteur on the rights to freedom of peaceful assembly and of association to travel to Ethiopia to advise the Government ", - "values": [ - "Freedom of association and peaceful assembly", - "Special procedures" - ] - }, - { - "text": "Bring its penal code into conformity with its international human rights obligations by repealing those provisions which criminalize same-sex activity between consenting adults ", - "values": [ - "International instruments", - "Sexual Orientation and Gender Identity" - ] - }, - { - "text": "Continue to implement measures to protect the rights of the child", - "values": [ - "Rights of the Child" - ] - }, - { - "text": "Put in place a system of comprehensive data collection on all forms of violence against women, and encourage reporting of all forms of violence against women and girls, including domestic and sexual violence", - "values": [ - "Rights of the Child", - "Women's rights" - ] - }, - { - "text": "Adopt the recommendations of the Special Rapporteur on the situation of human rights defenders and the necessary measures to its recognition and protection, guaranteeing that the human rights violations are timely, effectively and independently investigated ", - "values": [ - "Human rights defenders", - "Special procedures" - ] - }, - { - "text": "Adopt effective measures to prevent any manifestation of discrimination and racism ", - "values": [ - "Racial discrimination" - ] - }, - { - "text": "Complete the process for the establishment of a national preventive mechanism on torture", - "values": [ - "Torture and other CID treatment" - ] - }, - { - "text": "Pass legislation to increase female representation in management positions, and implement it as soon as possible, and continue efforts to achieve equal pay for men and women", - "values": [ - "Women's rights" - ] - }, - { - "text": "Continue programmes to sensitize the population to ensure the effective implementation of the rights of women and children, and the protection of the family, the elderly and people with disabilities", - "values": [ - "Disabilities", - "Rights of the Child", - "Women's rights" - ] - }, - { - "text": "Take measures to strengthen efforts to reduce infant and child mortality, including by focusing on preventative measures and treatment, improved nutrition and a structured vaccination process", - "values": [ - "Right to health", - "Rights of the Child" - ] - }, - { - "text": "Continue strengthening the protection of all foreign labourers through the adoption of legislation which complies with international human rights standards ", - "values": [ - "International instruments", - "Migrants" - ] - }, - { - "text": "Continue to implement laws for further protection of human rights of the people", - "values": [ - "General" - ] - }, - { - "text": "Redouble the efforts to ensure that women are represented in political life and implement recommendations of the Truth and Reconciliation Commission in that regard ", - "values": [ - "Justice", - "Women's rights" - ] - }, - { - "text": "Avoid any legislative amendments which would disproportionately limit the exercise of the right to freedom of assembly", - "values": [ - "Freedom of association and peaceful assembly" - ] - }, - { - "text": "Strengthen its ongoing measures to eradicate poverty ", - "values": [ - "Poverty" - ] - }, - { - "text": "Further improve her policies and follow-up measures to foster justice, equality, tolerance as well as the full guarantee of human rights for the vulnerable groups, in particular women and foreign workers ", - "values": [ - "Migrants", - "Women's rights" - ] - }, - { - "text": "Incorporate into the Constitution and the national legislation the right to enjoy the highest standards possible of mental and physical health", - "values": [ - "Disabilities", - "Right to health" - ] - }, - { - "text": "Continue strengthening the judiciary and further improve access to justice", - "values": [ - "Justice" - ] - }, - { - "text": "Take concrete and stern actions to ensure equal treatment for all in society, in particular to remove de facto discrimination against and xenophobic attitudes towards migrants, asylum seekers, refugees and other ethnic-religious minorities ", - "values": [ - "Asylum-seekers - refugees", - "Freedom of religion and belief", - "Migrants", - "Minorities", - "Racial discrimination" - ] - }, - { - "text": "Expedite actions on draft bills under consideration, aimed at modernizing its legal framework in order to strengthen citizens' guarantees in courts of law, remove provisions that conflict with international commitments, reorganise the justice system to bring it closer to citizens and redefine the courts' jurisdictions and promote gender equality in access to electoral mandates, elected office and appointments to State institutions and Government departments ", - "values": [ - "Elections", - "Justice", - "Women's rights" - ] - }, - { - "text": "Limit the use of detention of asylum seekers, refugees and stateless persons", - "values": [ - "Asylum-seekers - refugees", - "Detention", - "Statelessness and the right to nationality" - ] - }, - { - "text": "Strengthen measures to eliminate discrimination against persons belonging to indigenous populations", - "values": [ - "Indigenous peoples", - "Racial discrimination" - ] - }, - { - "text": "Strengthen partnerships with non-governmental organizations to enlist their help in identifying victims of trafficking during authorities' initial contact with potential victims among women detained for prostitution offences ", - "values": [ - "Civil society", - "Trafficking", - "Women's rights" - ] - }, - { - "text": "Take further measures to improve the situation in prisons, to provide human rights training to prison personnel and to effectively investigate and prosecute all cases of alleged violence against prisoners ", - "values": [ - "Detention", - "Human rights education and training" - ] - }, - { - "text": "Achieve food security through, among others, securing adequate food assistance, increasing food production, adopting better agricultural technology and improving the food distribution system ", - "values": [ - "Right to food" - ] - }, - { - "text": "Continue its efforts to enable women to enjoy their legitimate rights, and to highly prioritize awareness raising among all sections of the community regarding the women's rights and the importance of their realization within the cultural and civil context of the Afghani society ", - "values": [ - "Human rights education and training", - "Women's rights" - ] - }, - { - "text": "Take all necessary measures to implement the National Roma Integration Strategy. This includes the provision of financial means regarding the efficient implementation of this Strategy ", - "values": [ - "Minorities" - ] - }, - { - "text": "Consider withdrawing its reservation to articles 76 and 77 of the International Convention on the Protection of the Rights of All Migrant Workers and Members of Their Families", - "values": [ - "International instruments", - "Labour", - "Migrants" - ] - }, - { - "text": "Issue standing invitations to all special procedure mandate holders", - "values": [ - "Special procedures" - ] - }, - { - "text": "Pursue initiatives at increasing public awareness of the existence and purpose of the German General Equal Treatment Act (2006), particularly among potential victims of gender discrimination ", - "values": [ - "Women's rights" - ] - }, - { - "text": "Recognize and guarantee the human rights of all foreigners, independent and regardless of their migratory status ", - "values": [ - "Migrants" - ] - }, - { - "text": "Strengthen other efforts already in practice which provide life-saving assistance for migrants and initiate the new Asylum, Migration and Integration Fund 2014-2020", - "values": [ - "Asylum-seekers - refugees", - "Migrants" - ] - }, - { - "text": "Continue to promote dialogue with all States, on the basis of mutual respect, sovereign equality, self-determination and the right to choose their own political, economic and social system", - "values": [ - "Other" - ] - }, - { - "text": "Continue advancing on the specialization of the juvenile justice system, including the development of an appeals mechanism ", - "values": [ - "Justice", - "Rights of the Child" - ] - }, - { - "text": "Further provide training to security and law enforcement organs on the protection and promotion of human rights ", - "values": [ - "Human rights education and training" - ] - }, - { - "text": "Further promote children's interests in the framework of the national strategy for action covering the period of 2012-2017 ", - "values": [ - "Rights of the Child" - ] - }, - { - "text": "Take further measures to prevent trafficking in persons in investigating and prosecuting offenders and provide effective support and redress to victims, as well as step up efforts to raise awareness about human trafficking", - "values": [ - "Trafficking" - ] - }, - { - "text": "Ensure equal access to education for children with disabilities, by improving public perception on their rights", - "values": [ - "Disabilities", - "Right to education", - "Rights of the Child" - ] - }, - { - "text": "That Thailand's legislative reforms in relation to persons with disabilities be backed by a more effective system of implementation and monitoring", - "values": [ - "Disabilities" - ] - }, - { - "text": "Take concrete measures to eliminate violence against children, and to protect and support victims, including by implementing measures to ensure that such abuse is more frequently denounced and reported by different stakeholders in contact with children", - "values": [ - "Rights of the Child" - ] - }, - { - "text": "Continue to take measures and actions in line with the fight against discrimination including through guidelines for website moderators to keep their websites free from discriminatory content that constitutes a criminal offence ", - "values": [ - "Other" - ] - }, - { - "text": "Consider the possibility of inviting relevant mandate holders as follow up to the 2006 joint-study by the 5 special procedures, in view of the decision of the current Administration to close the Guantanamo Bay detention facility ", - "values": [ - "Special procedures" - ] - }, - { - "text": "Continue its efforts along the path of promotion and protection of human rights in all fields", - "values": [ - "General" - ] - }, - { - "text": "Panama has committed itself to generating statistics on the situation of persons with disabilities, to guide the drafting of public policies. The delegation also detailed a number of additional measures to ensure respect for the rights of persons with disabilities.", - "values": [ - "Disabilities" - ] - }, - { - "text": "Improve the quality of public education in order to preserve the excellent standards which have prevailed in Lebanon for decades at the different levels of education", - "values": [ - "Right to education" - ] - }, - { - "text": "Ensure compulsory and free education for all", - "values": [ - "Right to education" - ] - }, - { - "text": "Take concrete and prompt measures to implement the Action Plan for the protection of children in armed conflict", - "values": [ - "International humanitarian law", - "Rights of the Child" - ] - }, - { - "text": "Remain steadfast in pursuing its impressive policies towards gender equality, particularly by strengthening measures to eradicate gender-based violence", - "values": [ - "Women's rights" - ] - }, - { - "text": "Strengthen the judiciary in order to end the implementation of local customary law and a strategy to fight against impunity in the acting of militias and armed groups ", - "values": [ - "Impunity", - "Justice", - "Public security" - ] - }, - { - "text": "Take measures aimed at ensuring the economic rights of women, addressing the issue of their employment and increasing their participation in the political life of the country ", - "values": [ - "ESC rights - general", - "Women's rights" - ] - }, - { - "text": "Reduce overcrowding and improve physical situation of prisoners and administrative management in prisons ", - "values": [ - "Detention" - ] - }, - { - "text": "Consider establishing a national human rights institution in accordance with the Paris Principles, as previously recommended", - "values": [ - "National Human Rights Institution", - "UPR process" - ] - }, - { - "text": "Within the context of the National Programme of Action, adopt further measures and implement programmes to provide access and opportunities for ensuring better social and political integration of Roma groups in Montenegro", - "values": [ - "Minorities" - ] - }, - { - "text": "Continue the work towards the abolition of the death penalty under all circumstances and accede to the Second Optional Protocol to the International Covenant on Civil and Political Rights, aiming at the abolition of the death penalty ", - "values": [ - "Death penalty", - "International instruments" - ] - }, - { - "text": "Comply with its CEDAW obligations, and undertake further steps to empower women at all levels by creating more employment opportunities and increasing their rights in participation in decision-making ", - "values": [ - "International instruments", - "Women's rights" - ] - }, - { - "text": "Fully implement the recommendations of the Committee on the Rights of the Child contained in paragraph 61 of document CRC-C-ERI-CO-3 ", - "values": [ - "Treaty bodies" - ] - }, - { - "text": "Take further steps to ratify relevant treaties and conventions, keeping in line its priorities and the domestic legislative process", - "values": [ - "International instruments" - ] - }, - { - "text": "Take effective measures without delay to uphold the total prohibition against torture, in accordance with its international obligations under the Convention against Torture (CAT) ", - "values": [ - "International instruments", - "Torture and other CID treatment" - ] - }, - { - "text": "Continue the ongoing process of consolidating democracy and the rule of law in the country", - "values": [ - "Justice" - ] - }, - { - "text": "Take all necessary measures to improve women's access to reproductive health and related services", - "values": [ - "Right to health", - "Women's rights" - ] - }, - { - "text": "Carry out an active prevention policy against violence and acts of intimidation against media and members of the political opposition, and give the established mechanisms the necessary resources and means to accomplish their mandate in the field of human rights protection", - "values": [ - "Freedom of association and peaceful assembly", - "Freedom of the press" - ] - }, - { - "text": "Examine the possibility of enshrining the prohibition of torture in its legal framework", - "values": [ - "Torture and other CID treatment" - ] - }, - { - "text": "Repeal and do not enforce discriminatory and racial laws such as Law SB 1070 of the State of Arizona ", - "values": [ - "Racial discrimination" - ] - }, - { - "text": "Ratify without delay the Convention on the Rights of Persons with Disabilities and the Convention on the Elimination of All forms of Discrimination against Women in accordance with its previously expressed commitment", - "values": [ - "Disabilities", - "International instruments", - "UPR process", - "Women's rights" - ] - }, - { - "text": "Address the root causes of its high school-dropout rates, particularly among girls, inter alia by enforcing a zero-tolerance policy with respect to sexual violence and sexual harassment", - "values": [ - "Right to education", - "Rights of the Child", - "Women's rights" - ] - }, - { - "text": "Enhance its efforts to create an environment in which journalists, human rights defenders and NGOs can freely operate according with international standards ", - "values": [ - "Civil society", - "Freedom of the press", - "Human rights defenders" - ] - }, - { - "text": "Take additional measures to enhance its social security network and to share with countries living in similar conditions its best practices aiming at improving the conditions of the social vulnerable groups in the country", - "values": [ - "ESC rights - general" - ] - }, - { - "text": "Confirm the signature of ICCPR and ICESCR without restriction to freedom of expression or assembly and take the necessary measures to incorporate them into its national legislation ", - "values": [ - "CP rights - general", - "ESC rights - general", - "Freedom of association and peaceful assembly", - "Freedom of opinion and expression", - "International instruments" - ] - }, - { - "text": "Continue with the awareness campaigns against gender discrimination, domestic violence and sexual assault and establish mechanisms to effectively act against these sorts of aggressions", - "values": [ - "Human rights education and training", - "Rights of the Child", - "Women's rights" - ] - }, - { - "text": "Review conditions in detention facilities, including the behaviour of police officers working in them, and develop options for the improvement of the prison system, including how to tackle the problem of overcrowding", - "values": [ - "Detention" - ] - }, - { - "text": "Consider confessions obtained through torture or ill-treatment as inadmissible", - "values": [ - "Torture and other CID treatment" - ] - }, - { - "text": "Improve prison conditions to bring them in line with internationally accepted standards and guidelines", - "values": [ - "Detention" - ] - }, - { - "text": "Continue to implement measures such as promoting cultural understanding toward the eradication of hate crime against social minorities", - "values": [ - "Minorities" - ] - }, - { - "text": "Ratify the Rome Statute of the International Criminal Court, including its Agreement on Privileges and Immunities ", - "values": [ - "International instruments", - "Justice" - ] - }, - { - "text": "Provide more resources for the enjoyment of social and economic rights of vulnerable groups like women, children, persons with disabilities and minorities ", - "values": [ - "Disabilities", - "ESC rights - general", - "Minorities", - "Rights of the Child", - "Women's rights" - ] - }, - { - "text": "Strengthen the efforts aimed at fighting against violence and sexual slavery and at providing medical, legal, psychological and socioeconomic assistance to victims ", - "values": [ - "Rights of the Child", - "Women's rights" - ] - }, - { - "text": "Take further legislative and institutional measures for the promotion and protection of human rights including those of the immigrants ", - "values": [ - "Migrants" - ] - }, - { - "text": "Effectively take steps to prevent torture including through ratification of the OP-CAT at its earlier opportunity and through the establishment of a comprehensive system of independent monitoring and inspection of all places of detention without delay, regardless of the status of OP-CAT ratification ", - "values": [ - "Detention", - "International instruments", - "Torture and other CID treatment" - ] - }, - { - "text": "Take effective measures to further strengthen the implementation of its legal framework to combat sub-standard housing for individuals and families who live in sub-standard housing characterized by the unsafe and unhealthy conditions", - "values": [ - "Right to housing" - ] - }, - { - "text": "Effectively investigate and prosecute those responsible for excessive use of force during the national strike in Changuinola in the Province of Bocas del Toro in July 2010, and take steps to ensure total respect for freedom of assembly in the country ", - "values": [ - "Freedom of association and peaceful assembly" - ] - }, - { - "text": "Provide systematic training to judges, prosecutors and lawyers on women's rights and violence against women, including on the implementation of the Maria da Penha Law on domestic and family violence against women ", - "values": [ - "Human rights education and training", - "Women's rights" - ] - }, - { - "text": "Step up efforts in prevention and treatment of HIV/AIDS infections", - "values": [ - "HIV - Aids" - ] - }, - { - "text": "Work toward enacting legislation to incorporate the Convention on the Rights of Persons with Disabilities in its national law", - "values": [ - "Disabilities", - "International instruments" - ] - }, - { - "text": "Ensure that gender issues and women's rights are mainstreamed in all Government programmes, particularly in labour and employment and antipoverty measures", - "values": [ - "Women's rights" - ] - }, - { - "text": "Ratify the Optional Protocol of the Convention on the Elimination of All Forms of Discrimination Against Women", - "values": [ - "International instruments", - "Women's rights" - ] - }, - { - "text": "Suppress all decisions allowing the use of torture in accordance with the Convention against Torture, and refrain from using arbitrary and summary executions.", - "values": [ - "Extrajudicial executions", - "International instruments", - "Torture and other CID treatment" - ] - }, - { - "text": "Strengthen national efforts to protect migrants and refugees", - "values": [ - "Asylum-seekers - refugees", - "Migrants" - ] - }, - { - "text": "Consolidate measures aimed at combating violence against vulnerable groups", - "values": [ - "Minorities" - ] - }, - { - "text": "Adopt the measures necessary to protect people of different religious beliefs from discrimination", - "values": [ - "Freedom of religion and belief" - ] - }, - { - "text": "Consider joining other states in ratifying the International Convention on the Protection of the Rights of All Migrant Workers and Members of their Families and the ILO Convention 189 on Decent Work for Domestic Workers, as it progressively marches towards institutionalizing protective mechanisms for migrant workers ", - "values": [ - "International instruments", - "Labour", - "Migrants" - ] - }, - { - "text": "Develop a comprehensive strategy to address inequalities experienced by ethnic minorities", - "values": [ - "Minorities" - ] - }, - { - "text": "Ensure that human rights defenders in Thailand are treated in accordance with the General Assembly Declaration on Human Rights Defenders", - "values": [ - "Human rights defenders", - "International instruments" - ] - }, - { - "text": "Ratify the United Nations Convention against Transnational Organized Crime and the Protocol thereto to Prevent, Suppress and Punish Trafficking in Persons, Especially Women and Children", - "values": [ - "International instruments", - "Trafficking" - ] - }, - { - "text": "Continue its process of home-grown reforms to deepen democratic reform and strengthen foundations of modern states in which all citizens enjoy all human rights", - "values": [ - "Other" - ] - }, - { - "text": "Continue pursuing socio-economic and political transformation process that will also imply the framing of a new constitution ", - "values": [ - "General" - ] - }, - { - "text": "Take further steps to eliminate discrimination against the Roma population, especially in the field of education, employment, housing and access to services", - "values": [ - "Labour", - "Minorities", - "Racial discrimination", - "Right to education", - "Right to housing" - ] - }, - { - "text": "Continue the efforts being undertaken to make education more accessible and especially to implement the much-lauded free education programme", - "values": [ - "Right to education" - ] - }, - { - "text": "Take the necessary measures to improve conditions of detention, prevent and bring an end to arbitrary arrests and detentions and the practice of secret detention and, in this connection, set up a control mechanism for prisons which is independent and has free access to prisons ", - "values": [ - "Detention" - ] - }, - { - "text": "Investigate all cases of abuse of office by the officials of the penitentiary institutions", - "values": [ - "Detention", - "Human rights violations by state agents" - ] - }, - { - "text": "Take steps to withdraw its reservations to the Convention on the Elimination of All Forms of Discrimination against Women", - "values": [ - "International instruments", - "Women's rights" - ] - }, - { - "text": "Facilitate procedures for the establishment of new parties", - "values": [ - "Other" - ] - }, - { - "text": "Release imprisoned opposition party members and allow their full participation in the 2010 elections ", - "values": [ - "Detention", - "Elections", - "Freedom of association and peaceful assembly" - ] - }, - { - "text": "Take all measures to end the application of cruel, inhuman or degrading penalties such as flogging ", - "values": [ - "Torture and other CID treatment" - ] - }, - { - "text": "Consider including the component of human rights education and training in its national education programme and in the training programmes for the police and those who administrate justice ", - "values": [ - "Human rights education and training", - "Right to education" - ] - }, - { - "text": "Ensure that its legislation and practice fully respect article 19 of the ICCPR", - "values": [ - "Freedom of opinion and expression", - "International instruments" - ] - }, - { - "text": "Take necessary measures to calm down the political environment ", - "values": [ - "Other" - ] - }, - { - "text": "Maintain and intensify its positive engagement towards the full inclusion of Roma people", - "values": [ - "Minorities" - ] - }, - { - "text": "Establish the national mechanism for the prevention of torture under OP-CAT and appoint an independent and qualified expert, provided with necessary resources to exercise its mandate", - "values": [ - "Detention", - "International instruments", - "Torture and other CID treatment" - ] - }, - { - "text": "Further review and strengthen measures in place towards full implementation of the Ohrid Framework Agreement aiming at integration without assimilation, especially on issues of use of the Albanian language and in providing the necessary conditions for education in minority languages", - "values": [ - "Justice", - "Minorities", - "Right to education" - ] - }, - { - "text": "Continue and strengthen efforts to bring the national legislation, in particular the Criminal Code, into line with ratified instruments.", - "values": [ - "International instruments" - ] - }, - { - "text": "Abolish the death penalty and consider the ratification of the Second Optional Protocol to ICCPR ", - "values": [ - "Death penalty", - "International instruments" - ] - }, - { - "text": "All areas of the judiciary be completely independent from the executive", - "values": [ - "Justice" - ] - }, - { - "text": "Continue its efforts with a view of preventing and eliminating of trafficking in human beings ", - "values": [ - "Trafficking" - ] - }, - { - "text": "Continue to cooperate closely with civil society to prevent and combat dissemination of HIV/AIDS among the population ", - "values": [ - "Civil society", - "HIV - Aids" - ] - }, - { - "text": "Effectively implement existing legislation and provide enough resources for the investigation and punishment of crimes of violence against women", - "values": [ - "Women's rights" - ] - }, - { - "text": "Adopt a national plan owned by the different entities against racism, racial discrimination, xenophobia and intolerance", - "values": [ - "Racial discrimination" - ] - }, - { - "text": "Continue to support efforts aimed at setting up a legal framework for prohibiting trafficking in persons and other forms of exploitation ", - "values": [ - "Trafficking" - ] - }, - { - "text": "Ensure that all its laws are free from discrimination against women, in conformity with the ratified treaties by Yemen.", - "values": [ - "International instruments", - "Women's rights" - ] - }, - { - "text": "Implement the voluntary pledges it presented as it applied to the Human Rights Council. namely, the principles of universality, objectivity and non-selectivity in the consideration of human rights issues, and the elimination of double standards and politicization in addressing human rights issues of different communities and peoples domestically and internationally", - "values": [ - "General" - ] - }, - { - "text": "Intensify its efforts, through legislation and practical measures, to promote and protect the rights of children against all forms of violence", - "values": [ - "Rights of the Child" - ] - }, - { - "text": "Fight against the phenomenon of child sorcerers to spare innocent childhood from this terrible calamity of another age", - "values": [ - "Rights of the Child" - ] - }, - { - "text": "Undertake all necessary measures to ensure the independence of the judiciary, including by putting an end to any intimidation or unjustified disciplinary procedures against judges perceived as critical of the coup", - "values": [ - "Justice" - ] - }, - { - "text": "Ratify the Optional Protocol to the Convention on the Rights of the Child CRC on the sale of children, child prostitution and child pornography", - "values": [ - "International instruments", - "Rights of the Child", - "Trafficking" - ] - }, - { - "text": "Continue all efforts to promote the rights of women at all levels", - "values": [ - "Women's rights" - ] - }, - { - "text": "Consider ratifying and implementing international human rights treaties such as the International Covenant on Economic, Social and Cultural Rights ", - "values": [ - "ESC rights - general", - "International instruments" - ] - }, - { - "text": "Immediately investigate all cases of grave human rights violations and end impunity of perpetrators.", - "values": [ - "Impunity" - ] - }, - { - "text": "Pursue its efforts in the area of human rights education and training, and share its experience in this area with other countries ", - "values": [ - "Human rights education and training" - ] - }, - { - "text": "Speed up the review of all legislative codes, so as to bring them into conformity with ratified international instruments, particularly taking the necessary actions to include in national legislation discrimination and violence against women and eliminate existing discrimination regarding the right to property, community property and land inheritance", - "values": [ - "International instruments", - "Women's rights" - ] - }, - { - "text": "Take further measures to enhance the participation of women in the legislature ", - "values": [ - "Women's rights" - ] - }, - { - "text": "Include in its Constitution and legislation a clear definition of discrimination against women, and enshrine in law the principle of equality between women and men ", - "values": [ - "Women's rights" - ] - }, - { - "text": "Implement the strategic plan for the prevention, identification, support and prosecution of acts of violence against women and domestic staff ", - "values": [ - "Women's rights" - ] - }, - { - "text": "Continue efforts made aimed at combating discrimination and religious intolerance, especially against the rastafari, and to strengthen measures to eliminate any discriminatory treatment based on sexual orientation", - "values": [ - "Freedom of religion and belief", - "Sexual Orientation and Gender Identity" - ] - }, - { - "text": "Invite the Special Rapporteur on the independence of judges and lawyers to visit Burundi ", - "values": [ - "Justice", - "Special procedures" - ] - }, - { - "text": "Consider the legal abolition of death penalty", - "values": [ - "Death penalty" - ] - }, - { - "text": "Take steps to reduce the harassment, intimidation and death threats against defenders of human rights, and to publicly recognize the legitimacy and importance of the role of these defenders", - "values": [ - "Human rights defenders" - ] - }, - { - "text": "Recognize Travellers as an official minority", - "values": [ - "Minorities" - ] - }, - { - "text": "A public policy based on the State's strengthening of the legal framework for human rights", - "values": [ - "General" - ] - }, - { - "text": "Take immediate measures to address discrimination against migrants, persons from immigrant backgrounds, asylum seekers and refugees in accessing public services, housing, the labour market and health, as was concerned by the Committee on the Elimination of Racial Discrimination, and intensify efforts, including through the adoption of a new action plan, to prevent and combat all forms of discrimination and to promote equality ", - "values": [ - "Asylum-seekers - refugees", - "Migrants", - "Racial discrimination", - "Treaty bodies" - ] - }, - { - "text": "Intensify efforts to prevent and prosecute acts of domestic and sexual violence against women as recommended by the Committee on the Elimination of Discrimination against Women", - "values": [ - "Treaty bodies", - "Women's rights" - ] - }, - { - "text": "Continue with the measures aimed at combating stereotypes and discrimination suffered by lesbian, gay, bisexual, transgender and intersex persons ", - "values": [ - "Sexual Orientation and Gender Identity" - ] - }, - { - "text": "Establish a national human rights institution, in accordance with the Paris Principles ", - "values": [ - "National Human Rights Institution" - ] - }, - { - "text": "Continue its work to combat discrimination against vulnerable sectors and against all forms of discrimination, while encouraging the application of affirmative action policies for indigenous peoples and the migrant population", - "values": [ - "Indigenous peoples", - "Migrants", - "Racial discrimination" - ] - }, - { - "text": "Undertake national consultation in preparation for the ratification of CRPD.", - "values": [ - "Disabilities", - "International instruments" - ] - }, - { - "text": "Undertake reforms in the defence and security sectors to avoid military interference in government affairs and to create the necessary conditions to put in place the rule of law", - "values": [ - "Justice" - ] - }, - { - "text": "Establish training programmes addressed to staff members of shelters for orphans and persons with mental disabilities in order to enable them to respond at best to the specific needs of the residents", - "values": [ - "Disabilities", - "Rights of the Child" - ] - }, - { - "text": "Continue its efforts to fight hate speech in different State institutions through the establishment of tolerance and understanding between cultures", - "values": [ - "Racial discrimination" - ] - }, - { - "text": "Review the legislation to ensure its full compliance with the international obligations of Zimbabwe and with the country's Constitution with regard to the rights to freedom of expression, association and assembly and the elimination of discrimination against women", - "values": [ - "Freedom of association and peaceful assembly", - "Freedom of opinion and expression", - "Women's rights" - ] - }, - { - "text": "Explicitly prohibit traditional practices that harm the rights of women", - "values": [ - "Rights of the Child", - "Torture and other CID treatment", - "Women's rights" - ] - }, - { - "text": "Continue to spearhead progress towards gender equality and development for women, in particular by giving due consideration to the recommendations of the Inter-agency Committee coordinated by the Ministry of Women, Family and Development regarding the compliance of Malaysia with the Convention on the Rights of the Child and the Convention on the Elimination of Discrimination Against Women and the withdrawal of its reservations to both conventions", - "values": [ - "International instruments", - "Rights of the Child", - "Statelessness and the right to nationality", - "Women's rights" - ] - }, - { - "text": "Pursue the changes envisioned with regard to the criminal liability of minors", - "values": [ - "Justice", - "Rights of the Child" - ] - }, - { - "text": "Fast-track the process to sign and ratify international treaties related to the Convention against Torture", - "values": [ - "International instruments", - "Torture and other CID treatment" - ] - }, - { - "text": "Take additional measures for the full enjoyment of the right to education by children", - "values": [ - "Right to education", - "Rights of the Child" - ] - }, - { - "text": "Establish policies and programmes designed to promote the integration of migrants into society and the respect to their rights, including the protection of their physical integrity ", - "values": [ - "Migrants" - ] - }, - { - "text": "Implement the Guiding Principles on Business and Human Rights: Implementing the United Nations "Protect, Respect and Remedy" Framework to guarantee labour and land rights", - "values": [ - "Business and human rights", - "Labour", - "Right to land" - ] - }, - { - "text": "Issue a standing invitation to the special procedures of the Human Rights Council.", - "values": [ - "Special procedures" - ] - }, - { - "text": "Protect children in the womb, notwithstanding undue pressure from certain groups.", - "values": [ - "Rights of the Child" - ] - }, - { - "text": "Establish an independent civilian authority charged with receiving complaints and investigating allegations of crimes committed by members of the Zimbabwe Republic Police, military and armed forces ", - "values": [ - "Human rights violations by state agents", - "Justice" - ] - }, - { - "text": "Prevent discriminatory local orders and practice of restricting marriages for Rohingya people and pregnancy for Muslim women aimed at reducing the number of their children", - "values": [ - "Freedom of religion and belief", - "Minorities", - "Racial discrimination", - "Women's rights" - ] - }, - { - "text": "Put an end to the institutional crisis so that Malian political actors can speak with a same voice for resolving the political crisis and re-establishing the territorial integrity of the country", - "values": [ - "Other" - ] - }, - { - "text": "Continue Malaysia's commitment to provide equal access to health services and education", - "values": [ - "Right to education", - "Right to health" - ] - }, - { - "text": "Strengthen the protection of persons with Albinism by specifically prohibiting and criminalizing all form of violence against them", - "values": [ - "Minorities" - ] - }, - { - "text": "Take all possible measures to improve the situation of the persons whose rights have been adversely affected by the decision of the Constitutional Court of 23 September 2013, and to ensure compliance with its obligations under international law ", - "values": [ - "Minorities" - ] - }, - { - "text": "Strengthen its human rights framework, including access to human rights training, in order to increase protections for Roma people against violations of their rights", - "values": [ - "Human rights education and training", - "Minorities" - ] - }, - { - "text": "Russia re-iterated its commitment to the cause of human rights and stated that it will strive to meet the highest requirements in this field, since it aims at innovative and intensive development, involving in it free individuals.", - "values": [ - "General" - ] - }, - { - "text": "Sign and ratify the Optional Protocol to the ICESCR", - "values": [ - "ESC rights - general", - "International instruments" - ] - }, - { - "text": "Adopt measures to ensure the employment of youth and also other vulnerable groups of the population, including persons with disabilities and migrants", - "values": [ - "Disabilities", - "Labour", - "Migrants" - ] - }, - { - "text": "Take fully into account the relevant recommendations of CERD aimed at ensuring the integration of non-German children into the regular school system", - "values": [ - "Minorities", - "Right to education", - "Treaty bodies" - ] - }, - { - "text": "Consider acceding to the Second Optional Protocol to the International Covenant on Civil and Political Rights ", - "values": [ - "Death penalty", - "International instruments" - ] - }, - { - "text": "Carry out awareness raising campaigns for the prevention of domestic violence, particularly against women and girls", - "values": [ - "Human rights education and training", - "Rights of the Child", - "Women's rights" - ] - }, - { - "text": "Strengthen the free and compulsory primary education system and to reduce the gender and rural-urban disparities ", - "values": [ - "Right to education" - ] - }, - { - "text": "Investigate and prosecute those responsible for the unlawful acts of harassment of human rights defenders, namely NGO workers and other members of civil society, and take steps to incorporate and enforce the United Nations Declaration on Human Rights Defenders ", - "values": [ - "Civil society", - "Human rights defenders", - "International instruments" - ] - }, - { - "text": "Facilitate the development of a safe and enabling environment for all civil society actors to freely associate and express their views by ensuring that national legislative provisions are not invoked to stifle legitimate and peaceful dissent ", - "values": [ - "Civil society", - "Freedom of association and peaceful assembly", - "Freedom of opinion and expression" - ] - }, - { - "text": "Adopt and update a national plan of action on children's rights", - "values": [ - "Rights of the Child" - ] - }, - { - "text": "Further improve the promotion and protection of children's rights and prevent the recruitment of child soldiers", - "values": [ - "International humanitarian law", - "Rights of the Child" - ] - }, - { - "text": "Continue to make the most of its experience within the framework of the South Asian Association for Regional Cooperation ", - "values": [ - "Other" - ] - }, - { - "text": "Reform the status of migrant workers in order to ensure the protection of their rights against all forms of discrimination", - "values": [ - "Labour", - "Migrants", - "Racial discrimination" - ] - }, - { - "text": "Achieve the maximum implementation of the Human Rights Plan for 2008- 2012 ", - "values": [ - "General" - ] - }, - { - "text": "Take immediate measures to implement the recommendations of November 2008 of the Committee against Torture, particularly on the inadmissibility in court of statements made under torture and the non-refoulement of refugees from the Democratic People's Republic of Korea", - "values": [ - "Torture and other CID treatment", - "Treaty bodies" - ] - }, - { - "text": "Adopt a consistent, open, merit-based process when selecting national candidates for United Nations treaty body elections", - "values": [ - "Treaty bodies" - ] - }, - { - "text": "Take further steps to deal with the problem of child domestic workers and abolish children abuse", - "values": [ - "Labour", - "Rights of the Child" - ] - }, - { - "text": "Take all necessary measures to reduce the existing situation of discrimination and proceed in the near future to the equal allocation of lands, irrespective of the nationality of the owners.", - "values": [ - "Right to land" - ] - }, - { - "text": "Progress domestic child protection legislation and ratify the Optional Protocol to the Convention on the Rights of the Child on the sale of children, child prostitution and child pornography", - "values": [ - "International instruments", - "Trafficking" - ] - }, - { - "text": "Comprehensively address harmful cultural practices, and increase the age of marriage to 18, in conformity with the provisions of the Convention on the Rights of the Child", - "values": [ - "International instruments", - "Rights of the Child", - "Torture and other CID treatment", - "Women's rights" - ] - }, - { - "text": "Take responsible measures against the continuous public manifestations of hate speech by some politicians", - "values": [ - "Racial discrimination" - ] - }, - { - "text": "Review penal code restricting freedom of opinion, enact legislation and recognize independent unions as well as remove restrictions to peaceful demonstrations", - "values": [ - "Freedom of association and peaceful assembly", - "Freedom of opinion and expression", - "Labour" - ] - }, - { - "text": "Integrate a human rights component into the protocols of actions for security forces", - "values": [ - "Human rights education and training" - ] - }, - { - "text": "Watch over the full implementation of laws that forbid corporal punishment in all settings through, among other measures, awareness-raising campaigns between adults and children, as well as the promotion of positive and non-violent forms of discipline that do not affect the upbringing of these children ", - "values": [ - "Human rights education and training", - "Rights of the Child", - "Torture and other CID treatment" - ] - }, - { - "text": "Intensify, through the creation of new plans, the efforts to reform the police corps, and counteract insecurity, illegal weapons' trafficking and sale of narcotics ", - "values": [ - "Public security" - ] - }, - { - "text": "Ensure the full enjoyment of the rights to freedom of assembly and freedom of expression, facilitate the holding of peaceful rallies and revise existing laws or refrain from adopting new laws placing undue restrictions and deterrents on the exercise of freedom of assembly and freedom of expression", - "values": [ - "Freedom of association and peaceful assembly", - "Freedom of opinion and expression" - ] - }, - { - "text": "Consider establishing an independent and full-fledged national human rights institution in accordance with the Paris Principles.", - "values": [ - "National Human Rights Institution" - ] - }, - { - "text": "Continue cooperation with the United Nations and other international organizations to promote human rights in Belarus ", - "values": [ - "General" - ] - }, - { - "text": "Share their experiences in the judicial reforms with other States", - "values": [ - "Justice" - ] - }, - { - "text": "Hire and train additional labour inspectors and equip them with necessary resources to adequately enforce relevant labour and trafficking laws", - "values": [ - "Labour", - "Trafficking" - ] - }, - { - "text": "Ensure equal treatment of all workers carrying out the same tasks", - "values": [ - "Women's rights" - ] - }, - { - "text": "Exchange information and opinions with States to achieve the best practices on human rights issues", - "values": [ - "Technical assistance and cooperation" - ] - }, - { - "text": "Continue the process of acceding to the appropriate ILO conventions.", - "values": [ - "International instruments", - "Labour" - ] - }, - { - "text": "Abolish completely the system of propiska and adopt further measures to ensure that both its legal system and practice comply with the protection of freedom of movement ", - "values": [ - "Freedom of movement" - ] - }, - { - "text": "Continue to combat impunity, including by strengthening laws and regulations as well as their implementation ", - "values": [ - "Impunity" - ] - }, - { - "text": "Review its legislation on communications and bring it in line with international standards", - "values": [ - "Freedom of the press" - ] - }, - { - "text": "Continue its efforts to reform the legal and judicial systems ", - "values": [ - "Justice" - ] - }, - { - "text": "Consider the establishment of a central agency to address human trafficking", - "values": [ - "Trafficking" - ] - }, - { - "text": "Eliminate corporal punishment of children both in public and private life", - "values": [ - "Rights of the Child", - "Torture and other CID treatment" - ] - }, - { - "text": "Continue to take all necessary measures to preserve an overall positive image of refugees and asylum-seekers", - "values": [ - "Asylum-seekers - refugees" - ] - }, - { - "text": "Intensify its awareness-raising efforts about violence against women, and put in place concrete prevention measures to ensure that perpetrators are brought to justice ", - "values": [ - "Human rights education and training", - "Women's rights" - ] - }, - { - "text": "Introduce and implement further programs and policies focusing on the integration of migrants and national minorities into the Greek society ", - "values": [ - "Migrants", - "Minorities" - ] - }, - { - "text": "Further abolish any discriminatory practices against women in accessing higher education, diversify academic disciplines for men and women, and take additional measures to encourage men and women to choose non- traditional career choices", - "values": [ - "Women's rights" - ] - }, - { - "text": "Continue to implement policies for women development under SDGs", - "values": [ - "Development", - "Women's rights" - ] - }, - { - "text": "Continue with training for civil servants, those in courts, forces of law and order, on human rights, as well as with empowering the population with these rights ", - "values": [ - "Human rights education and training" - ] - }, - { - "text": "Continue prioritizing education opportunities for the largest possible proportions of rural inhabitants and vulnerable populations ", - "values": [ - "Right to education" - ] - }, - { - "text": "Ensure that Serbian jurisdictions are able to rigorously apply criminal provisions related to racial and discriminatory offences ", - "values": [ - "Racial discrimination" - ] - }, - { - "text": "Bring the national legislation on trafficking in persons in accordance with the Palermo Protocol and international human rights law by, inter alia, amending the definition of trafficking, expanding the scope of protection and assistance to all victims without discrimination, and including a human rights based approach in the combat against trafficking in persons", - "values": [ - "International instruments", - "Trafficking" - ] - }, - { - "text": "Continue consolidating the social protection programmes for the application of the Convention on the Rights of Persons with Disabilities", - "values": [ - "Disabilities", - "ESC rights - general", - "International instruments" - ] - }, - { - "text": "Continue its active efforts to promote children's rights, including the implementation of the new law on children promulgated in 2010, disarmament, demobilization and reintegration activities for children, enhancement of a juvenile court system, and work towards the compulsory registration of births and the eradication of female genital mutilation ", - "values": [ - "Justice", - "Rights of the Child", - "Statelessness and the right to nationality", - "Torture and other CID treatment", - "Women's rights" - ] - }, - { - "text": "Step-up efforts in the protection of the rights of children, including continuing its measures in combating violence against children ", - "values": [ - "Rights of the Child" - ] - }, - { - "text": "Ensure respect for the right to life, liberty and security of person for all in Libya, including by working towards an end of armed hostilities among Libyans, by complying with applicable international law in the conduct of hostilities, and by ensuring humane treatment of all persons detained, in line with international standards", - "values": [ - "Detention", - "International humanitarian law" - ] - }, - { - "text": "Continue its efforts to strengthen human rights institutions", - "values": [ - "General" - ] - }, - { - "text": "Expand education and awareness campaigns on the issue of trafficking in persons and make efforts to study human trafficking in the country", - "values": [ - "Human rights education and training", - "Trafficking" - ] - }, - { - "text": "Liechtenstein will continue to pay particular attention to the promotion of genuine respect for diversity and knowledge of different cultures and traditions", - "values": [ - "Minorities" - ] - }, - { - "text": "Continue measures to increase allocations for poverty reduction and focus further on the rehabilitation of agriculture and infrastructure ", - "values": [ - "Development", - "Poverty" - ] - }, - { - "text": "End various forms of inequality", - "values": [ - "Poverty" - ] - }, - { - "text": "Ratify the Convention against Torture and Other Cruel, Inhuman or Degrading Treatment or Punishment ", - "values": [ - "International instruments", - "Torture and other CID treatment" - ] - }, - { - "text": "Adopt new provisions prohibiting also discrimination based on nationality ", - "values": [ - "Racial discrimination" - ] - }, - { - "text": "Ratify the Protocol to the American Convention for Human Rights", - "values": [ - "International instruments" - ] - }, - { - "text": "Incorporate into internal legislation a definition of trafficking in line with the Palermo Protocol", - "values": [ - "International instruments", - "Trafficking" - ] - }, - { - "text": "Continue making efforts to incorporate an ethno-racial dimension in all plans and programmes aimed combating discrimination ", - "values": [ - "Minorities", - "Racial discrimination" - ] - }, - { - "text": "Strengthen measures aimed at the alleviation of poverty as well as access to education and health services ", - "values": [ - "Poverty", - "Right to education", - "Right to health" - ] - }, - { - "text": "Consider ratifying the Convention against Torture, signed in 2011", - "values": [ - "International instruments", - "Torture and other CID treatment" - ] - }, - { - "text": "Consolidate its plans for peace, stability and reconstruction, and to accelerate the implementation of its programmes for persons with disabilities so as to guarantee their physical, social and economic rehabilitation and the enjoyment of their other fundamental rights", - "values": [ - "Disabilities" - ] - }, - { - "text": "Continue to further address the social inequality that remains one of the challenges in the country ", - "values": [ - "Development" - ] - }, - { - "text": "Include in its Criminal Code a definition of torture ", - "values": [ - "Torture and other CID treatment" - ] - }, - { - "text": "Take active measures to revise all legislation in order to fully guarantee the application of the principle of non-discrimination in domestic laws", - "values": [ - "Other" - ] - }, - { - "text": "Re-examine the Mining Act of 1995 with a view to reinforcing its environmental provisions and sustainable development practices, which will help the mining industry to become one of the main contributors to the country\u2019s wealth", - "values": [ - "Environment" - ] - }, - { - "text": "Request a major degree of solidarity and cooperation from neighbouring States in response to the problematic of being a landlocked country and in terms of the right of development for all ", - "values": [ - "Development" - ] - }, - { - "text": "Ensure the effective implementation of the national action plan against racism and take more resolute measures to prevent, combat and monitor any manifestations of intolerance and xenophobia", - "values": [ - "Racial discrimination" - ] - }, - { - "text": "Take further steps to eliminate discrimination against people based on their sexual orientation or gender identity", - "values": [ - "Sexual Orientation and Gender Identity" - ] - }, - { - "text": "Adopt measures to criminalize the recruitment of child soldiers, put an end to the impunity of persons involved in trafficking in organs or organizing child prostitution, and accompany these measures with a policy of access to basic services and to education for the most vulnerable children", - "values": [ - "Impunity", - "International humanitarian law", - "Rights of the Child" - ] - }, - { - "text": "Continue strengthening action aimed at protecting the human rights of the migrant population", - "values": [ - "Migrants" - ] - }, - { - "text": "Consider instituting more programs to further facilitate access by domestic workers and migrants to basic social services and just conditions of work ", - "values": [ - "Labour", - "Migrants" - ] - }, - { - "text": "Protect human rights of all individuals without any discrimination based on gender, origin, religion or customs", - "values": [ - "Freedom of religion and belief", - "Migrants", - "Racial discrimination", - "Women's rights" - ] - }, - { - "text": "Georgia is firmly committed to enhancing the protection and reintegration of street children and has taken significant steps towards these ends, including the creation of designated day-care centers, pursuant to 2008-2011 Governmental Action Plan on Child Welfare.", - "values": [ - "Rights of the Child" - ] - }, - { - "text": "Move forward in the implementation of its law known as from recognition to empowerment: a government strategy for minorities, with the aim of promoting and protecting the rights of national minorities", - "values": [ - "Minorities" - ] - }, - { - "text": "Lift its reservations to paragraph 4 of Article 15 of the Convention on the Elimination of All Forms of Discrimination against Women, not only in practice but also in its legislation", - "values": [ - "International instruments", - "Women's rights" - ] - }, - { - "text": "Early ratification of the Optional Protocol to the Convention against Torture", - "values": [ - "Detention", - "International instruments", - "Torture and other CID treatment" - ] - }, - { - "text": "Ensure the independence of the national human rights commission, particularly in adjusting its competences and funding in accordance with the Paris Principles.", - "values": [ - "National Human Rights Institution" - ] - }, - { - "text": "Step up efforts to combat trafficking in persons", - "values": [ - "Trafficking" - ] - }, - { - "text": "Continue to strengthen human rights principles of the newly adopted Constitution", - "values": [ - "General" - ] - }, - { - "text": "Consider ratification of the Convention on the Elimination of All Forms of Discrimination against Women and the Protocol to the African Charter on Human and Peoples' Rights on the Rights of Women in Africa and to review its domestic legislation with the aim to eliminate discrimination against women", - "values": [ - "International instruments", - "Women's rights" - ] - }, - { - "text": "Bring ODA up to the internationally committed 0.7 per cent of GDP to Developing countries and 0.2 per cent to LDCs, specially, to support in the areas of poverty reduction, climate challenges and persons with disabilities ", - "values": [ - "Development", - "Disabilities", - "Environment" - ] - }, - { - "text": "Guarantee access to public and political life on an equal basis to Roma, and this through their participation in the decision-making processes", - "values": [ - "Minorities" - ] - }, - { - "text": "Adopt as soon as possible the National Human Rights Action Plan ", - "values": [ - "General" - ] - }, - { - "text": "Accede to and adapt its national legislation to the Arms Trade Treaty", - "values": [ - "International instruments", - "Public security" - ] - }, - { - "text": "Continue investing in women's empowerment and promoting their participation in all aspects of the State machinery", - "values": [ - "Women's rights" - ] - }, - { - "text": "Establish a federal Children's Ombudsman ", - "values": [ - "National Human Rights Institution", - "Rights of the Child" - ] - }, - { - "text": "Consider expediting becoming a party to ICERD, CRPD and OP-CRC-SC ", - "values": [ - "Disabilities", - "International instruments", - "Racial discrimination", - "Rights of the Child", - "Trafficking" - ] - }, - { - "text": "Intensify its efforts to ratify the Optional Protocol to the Convention against Torture and Other Cruel, Inhuman or Degrading Treatment", - "values": [ - "Detention", - "International instruments", - "Torture and other CID treatment" - ] - }, - { - "text": "Staff and operationalize the office established for handling alleged instances of abuses of law enforcers in order to address all alleged attacks and reports of ill treatment", - "values": [ - "Human rights violations by state agents", - "Torture and other CID treatment" - ] - }, - { - "text": "Raise the quality of education so as to provide the high quality human resources for its social and economic development", - "values": [ - "Development", - "ESC rights - general", - "Right to education" - ] - }, - { - "text": "Amend articles 301 and 318 of its Penal Code with a view of decriminalizing the explicitly non-violent exercise of freedom of expression ", - "values": [ - "Freedom of opinion and expression" - ] - }, - { - "text": "Continue its efforts to establish an independent national human rights institution, in line with the Paris Principles and with a merit-based selection of board members and staff ", - "values": [ - "National Human Rights Institution" - ] - }, - { - "text": "Strengthen members-based and members-driven civil society by further facilitating the existing mechanisms to generate funds from local sources ", - "values": [ - "Civil society" - ] - }, - { - "text": "Consider establishing a national human rights institution in full compliance with the Paris Principles", - "values": [ - "National Human Rights Institution" - ] - }, - { - "text": "Complete internal legal procedures in order to ratify the Rome Statute of the International Criminal Court", - "values": [ - "International instruments", - "Justice" - ] - }, - { - "text": "Specify child trafficking as a separate crime in criminal legislation as recommended by the Committee on the Rights of the Child ", - "values": [ - "Rights of the Child", - "Trafficking", - "Treaty bodies" - ] - }, - { - "text": "The need for police officers to undergo compulsory training in the field of human rights", - "values": [ - "Human rights education and training" - ] - }, - { - "text": "Continue efforts to ensure that households, schools and health facilities have access to safe water and sanitation", - "values": [ - "Right to water and sanitation" - ] - }, - { - "text": "Intensify efforts to provide public education and training on the human trafficking law", - "values": [ - "Trafficking" - ] - }, - { - "text": "Ensure that any form of violence against children and child recruitment becomes punishable under domestic law ", - "values": [ - "Rights of the Child" - ] - }, - { - "text": "Take effective measures against disadvantages faced by women in the labour market, including to overcome the persisting wage gap between men and women", - "values": [ - "Women's rights" - ] - }, - { - "text": "That the necessary measures to ratify the Optional Protocol to the Convention against Torture be adopted, in conformity with the commitments made by Namibia during the first universal periodic review cycle", - "values": [ - "Detention", - "International instruments", - "Torture and other CID treatment", - "UPR process" - ] - }, - { - "text": "Continue applying strategies and socio-economic development plans in the country", - "values": [ - "Development" - ] - }, - { - "text": "Continue ensuring that impartial and effective investigations of attacks against journalists take place and that those responsible are brought to justice ", - "values": [ - "Freedom of the press" - ] - }, - { - "text": "Cease immediately the colonization through construction of illegal settlements", - "values": [ - "Other" - ] - }, - { - "text": "Reinstate a de facto moratorium of the death penalty, with a view to abolish the punishment", - "values": [ - "Death penalty" - ] - }, - { - "text": "Increase efforts to combat child labour, which is very often combined with hazardous or dangerous conditions of work", - "values": [ - "Labour", - "Rights of the Child" - ] - }, - { - "text": "Consolidate reconciliation.", - "values": [ - "Justice" - ] - }, - { - "text": "Fully implement Comprehensive Act 348 on Guaranteeing a Life Free of Violence for Women", - "values": [ - "Women's rights" - ] - }, - { - "text": "Ensure that the recruitment agencies for foreign workers fully comply with the applicable laws and regulation ", - "values": [ - "Labour", - "Migrants" - ] - }, - { - "text": "Continue efforts to promote respect of cultural, religious and linguistic diversity", - "values": [ - "ESC rights - general", - "Freedom of religion and belief", - "Minorities" - ] - }, - { - "text": "Continue its efforts for a full implementation, in all levels, of the National Disability Strategy", - "values": [ - "Disabilities" - ] - }, - { - "text": "Facilitate access to the labour market for indigenous peoples, people of African descent and migrants and make sure they receive all social benefits", - "values": [ - "Indigenous peoples", - "Labour", - "Migrants", - "Minorities" - ] - }, - { - "text": "Endeavour to abolish the death penalty", - "values": [ - "Death penalty" - ] - }, - { - "text": "Continue implementing concrete actions for the enforcement of the Fundamental Law on Education", - "values": [ - "Right to education" - ] - }, - { - "text": "Repeal all laws criminalizing sexual orientation and gender identity and take concrete measures for the protection of sexual minorities", - "values": [ - "Sexual Orientation and Gender Identity" - ] - }, - { - "text": "Respond positively to the pending requests of several special procedures, and to allow the timely carrying out of their visits", - "values": [ - "Special procedures" - ] - }, - { - "text": "Concentrate on the implementation of the international human rights instruments that have been ratified by Pakistan ", - "values": [ - "International instruments" - ] - }, - { - "text": "Strengthen existing legislation to effectively eliminate gender-based violence, including domestic violence, with a view to better protecting victims and holding perpetrators accountable", - "values": [ - "Rights of the Child", - "Women's rights" - ] - }, - { - "text": "Put in place plans aimed at strengthening human development programmes in the Sultanate of Oman ", - "values": [ - "Development" - ] - }, - { - "text": "Ensure full incorporation and implementation of international human rights instruments at the national level, in particular ICCPR and CAT, unless already done.", - "values": [ - "CP rights - general", - "International instruments", - "Torture and other CID treatment" - ] - }, - { - "text": "Continue to take effective measures to improve detention conditions and limit overcrowding in detention centres, including those administered by the migration authorities ", - "values": [ - "Detention", - "Migrants" - ] - }, - { - "text": "Continue consultations and dialogue with the public and various stakeholders in order to promote awareness of the situation of persons with disabilities and their rights, and ratify and implement the Convention on the Rights of Persons with Disabilities", - "values": [ - "Disabilities", - "Human rights education and training", - "International instruments" - ] - }, - { - "text": "Strengthen efforts to improve prison conditions", - "values": [ - "Detention" - ] - }, - { - "text": "Take effective measures in legislation and law enforcement to honestly combat racism, xenophobia and discrimination against minority groups to ensure all human rights of minorities through various means of harmonious ethnic co-existence and common development", - "values": [ - "Minorities", - "Racial discrimination" - ] - }, - { - "text": "Publish a consolidated list of missing persons", - "values": [ - "Other" - ] - }, - { - "text": "Conform the juvenile justice system to be in accordance with international standards so as to prevent children from being legally accountable in courts", - "values": [ - "Justice", - "Rights of the Child" - ] - }, - { - "text": "Extend a standing invitation to the special procedures of the Human Rights Council ", - "values": [ - "Special procedures" - ] - }, - { - "text": "Continue to work within the broader membership of the Caribbean Community (CARICOM) to establish the creation of regional strategies to combat domestic and sexual violence against women and children", - "values": [ - "Rights of the Child", - "Women's rights" - ] - }, - { - "text": "Continue efforts aimed at ratifying the International Convention for the Protection of All Persons from Enforced Disappearance as well as the principal international human rights instruments to which the country is not yet a party ", - "values": [ - "Enforced disappearances", - "International instruments" - ] - }, - { - "text": "Continue the consultation process with all concerned parties to elaborate a new draft of the law against trafficking in persons", - "values": [ - "Trafficking" - ] - }, - { - "text": "Continue to improve its education system and ensure equitable access to quality education for its people", - "values": [ - "Right to education" - ] - }, - { - "text": "Protect free and independent media, namely through the revocation of article 305 of the Penal Code and article 13 of the Press Law", - "values": [ - "Freedom of the press" - ] - }, - { - "text": "Continue its efforts to further build its capacity and increase awareness on human rights", - "values": [ - "Human rights education and training" - ] - }, - { - "text": "Accede to CPED ", - "values": [ - "Enforced disappearances", - "International instruments" - ] - }, - { - "text": "Increase efforts to protect the rights of indigenous people and persons of African descent, including by adopting and strengthening tailored programmes to reduce poverty and discrimination among these groups", - "values": [ - "Indigenous peoples", - "Minorities", - "Racial discrimination" - ] - }, - { - "text": "Report back to the Human Rights Council about further concrete measures taken with regard to the improvement of prison conditions according to international standards, and that the recommendations of the different treaty bodies in this regard be implemented as soon as possible.", - "values": [ - "Detention", - "Treaty bodies" - ] - }, - { - "text": "Allocate adequate resources to strengthen services for children with disabilities, support their families, train professionals in the field and encourage the inclusion of children with disabilities into the regular educational system and their integration into society ", - "values": [ - "Disabilities", - "Right to education", - "Rights of the Child" - ] - }, - { - "text": "Repeal all laws criminalizing women and girls for abortion and take all necessary measures to ensure safe and legal abortion in cases of rape or incest and in cases of serious danger for the health of women ", - "values": [ - "Women's rights" - ] - }, - { - "text": "That the organization of a transparent and inclusive election process in compliance with international standards is undertaken as a matter of priority, together with the thorough transparent, impartial and independent investigation of the recent violent events ", - "values": [ - "Elections" - ] - }, - { - "text": "Consider the possibility of expressing its consent to accede to the Optional Protocol to the Convention against Torture and Other Cruel, Inhuman or Degrading Treatment or Punishment, to permit the enable an independent monitoring of prisons and detention centres by the Subcommittee ", - "values": [ - "Detention", - "International instruments", - "Torture and other CID treatment" - ] - }, - { - "text": "Conduct immediate, impartial and exhaustive investigations into all allegations of excessive use of force, ill-treatment and arbitrary arrest by all law enforcement agencies, and strengthen accountability mechanisms", - "values": [ - "Detention", - "Human rights violations by state agents", - "Torture and other CID treatment" - ] - }, - { - "text": "Consider withdrawal of reservations with respect to the Convention on the Rights of the Child.", - "values": [ - "International instruments", - "Rights of the Child" - ] - }, - { - "text": "Withdraw remaining reservation to CEDAW ", - "values": [ - "International instruments", - "Women's rights" - ] - }, - { - "text": "Consider ratifying the Optional Protocol to the International Covenant on Civil and Political Rights and the Second Optional Protocol aiming at the abolition of the death penalty, and in the meantime, declare an official moratorium on executions with a view to abolish the death penalty, commuting the death sentences to prison terms", - "values": [ - "Death penalty", - "International instruments" - ] - }, - { - "text": "Step up the application of the existing legislation on gender equality", - "values": [ - "Women's rights" - ] - }, - { - "text": "Accede to core human rights instruments to which the State is not yet a party, including the Migrant Workers Convention ", - "values": [ - "International instruments", - "Labour", - "Migrants" - ] - }, - { - "text": "Continue its efforts to ensure the necessary protection of the rights of foreign workers and find the appropriate solutions to the illegal residents ", - "values": [ - "Migrants" - ] - }, - { - "text": "The Dominican Republic reiterated its commitment to continue cooperating with international organizations with the goal of strengthening its national institutions, and to comply with human rights requirements as set forth in the Declaration of Human Rights and all international human rights conventions.", - "values": [ - "International instruments" - ] - }, - { - "text": "Continue to cooperate with the UN and other international organisations to develop its legal and institutional framework with respect to the promotion and protection of Human Rights in Timor-Leste ", - "values": [ - "Technical assistance and cooperation" - ] - }, - { - "text": "Continue working on strengthening the protection and the necessary guarantee for all victims of racism or other forms of discrimination ", - "values": [ - "Racial discrimination" - ] - }, - { - "text": "Take effective measures to improve conditions of detention, in particular to reduce overcrowding and violent crime in prisons, as well as to improve prisoners' access to educational and health services", - "values": [ - "Detention" - ] - }, - { - "text": "Ensure that attacks with xenophobic or racist background are promptly investigated by the police, and that those responsible be brought to justice", - "values": [ - "Racial discrimination" - ] - }, - { - "text": "Ratify the Second Optional Protocol to the International Covenant on Civil and Political Rights, and take all necessary steps to abolish the death penalty in the military code", - "values": [ - "Death penalty", - "International instruments" - ] - }, - { - "text": "Ensure the full enjoyment of all persons under Israel's jurisdiction, including the Arab minority in Israel proper", - "values": [ - "Minorities" - ] - }, - { - "text": "Take under consideration making its migration and humanitarian policies more flexible with a view to a larger reception of migrants and refugees", - "values": [ - "Asylum-seekers - refugees", - "Migrants" - ] - }, - { - "text": "Decriminalize same-sex sexual relations and adopt measures to put an end to discrimination and violence against lesbian, gay, bisexual, transgender and intersex persons", - "values": [ - "Sexual Orientation and Gender Identity" - ] - }, - { - "text": "Pursue actions targeted at enforcing access to health-care services and legal aid to vulnerable groups, including migrants regardless of their migration status", - "values": [ - "Migrants", - "Right to health" - ] - }, - { - "text": "Ensure that asylum seekers have equal access to universal health-care services", - "values": [ - "Asylum-seekers - refugees", - "Right to health" - ] - }, - { - "text": "Accelerate, with the cooperation of OHCHR, the internal studies and procedures necessary to establish a National Human Rights Institution in accordance with the Paris Principles", - "values": [ - "National Human Rights Institution", - "Technical assistance and cooperation" - ] - }, - { - "text": "Ensure the independence of the judiciary and improve access to justice.", - "values": [ - "Justice" - ] - }, - { - "text": "Consider options for developing the human rights institutions according to the Paris Principles, as emphasized by the Committee on the Elimination of Racial Discrimination ", - "values": [ - "National Human Rights Institution", - "Treaty bodies" - ] - }, - { - "text": "Create and implement a strategy to eliminate traditional harmful practices, such as female genital mutilation, child, early and forced marriage, and "Wahaya", and modify traditional stereotypes that are harmful to and discriminate against women", - "values": [ - "Human rights education and training", - "Rights of the Child", - "Torture and other CID treatment", - "Women's rights" - ] - }, - { - "text": "Take the necessary steps to end detention of unaccompanied minors, and pending such measures, ensure that they are detained separately from adults and receive adequate and free legal representation", - "values": [ - "Detention", - "Rights of the Child" - ] - }, - { - "text": "Continue increasing the quality in the social use and access to information and communication technologies ", - "values": [ - "Freedom of opinion and expression" - ] - }, - { - "text": "Continue to work to review its domestic legal framework in order to harmonize it with international norms to which Grenada is a party ", - "values": [ - "International instruments" - ] - }, - { - "text": "Pledge financial assistance and support to the Fusi Alofa Tuvalu", - "values": [ - "Disabilities" - ] - }, - { - "text": "Consider acceding to the International Covenant on Civil and Political Rights and adopt a new media law that respects freedom of expression ", - "values": [ - "Freedom of opinion and expression", - "Freedom of the press", - "International instruments" - ] - }, - { - "text": "Strengthen the office of Ombudsman and the police department's office of internal affairs in order to improve capacity to hear and investigate complaints.", - "values": [ - "Justice" - ] - }, - { - "text": "Allocate additional resources to increase case processing and reduce the number of pre-trial detainees", - "values": [ - "Detention" - ] - }, - { - "text": "In the framework of the process of the fight against impunity, effectively investigate the cases of forced sterilization that occurred in the context of the Reproductive Health and Family Planning Programme 1996-2000 and establish a programme to provide compensation to victims", - "values": [ - "Impunity", - "Right to health" - ] - }, - { - "text": "Establish a follow-up mechanism related to the implementation of the recommendations of the Working Group on the Universal Periodic Review and associate the national institution fully in its work", - "values": [ - "UPR process" - ] - }, - { - "text": "Take all necessary measures to ensure that Law No. 82/2013, punishing acts of violence against women, is quickly followed by an implementing regulation, and that protocols are developed to guarantee its proper enforcement", - "values": [ - "Women's rights" - ] - }, - { - "text": "Take all necessary measures to abolish the death penalty, including by acceding to the Second Optional Protocol to ICCPR ", - "values": [ - "Death penalty", - "International instruments" - ] - }, - { - "text": "Strengthen measures to combat violence against women and girls", - "values": [ - "Rights of the Child", - "Women's rights" - ] - }, - { - "text": "Continue its efforts for the promotion and protection of human rights in the world and in their country", - "values": [ - "General" - ] - }, - { - "text": "Ensure the national health and HIV policies and strategies are inclusive and accessible to all vulnerable groups, including adults and children with disabilities", - "values": [ - "Disabilities", - "HIV - Aids", - "Right to health" - ] - }, - { - "text": "Take actions to avoid labour discrimination based on age, particularly against young people and the elderly, as well as promote actions to reduce prejudices based on the life cycle ", - "values": [ - "Labour" - ] - }, - { - "text": "Ratify the Kampala amendments to the Rome Statute of the ICC", - "values": [ - "International instruments", - "Justice" - ] - }, - { - "text": "Further strengthen and expand its human rights education and awareness schemes ", - "values": [ - "Human rights education and training" - ] - }, - { - "text": "Work with UNHCR and the Core Group to develop a near-term initiative to allow some\nrefugees to return immediately to Bhutan, granting special consideration to cases of humanitarian\nconcern, such as those involving the elderly", - "values": [ - "Asylum-seekers - refugees" - ] - }, - { - "text": "Take steps towards full legal recognition of same-sex relationships, this includes registered partnership, fiscal partnership, and marriage and the possibility to adopt children", - "values": [ - "Sexual Orientation and Gender Identity" - ] - }, - { - "text": "Consider adopting legislation or other new measures to more fully monitor, report, investigate, and prosecute all allegations of torture, extrajudicial execution, or other abuse of those in prison ", - "values": [ - "Detention", - "Extrajudicial executions", - "Torture and other CID treatment" - ] - }, - { - "text": "Eliminate obstacles and restrictions to freedom of assembly and peaceful protest, and adopt a law that guarantees the free enjoyment of these freedoms, in conformity with the International Covenant on Civil and Political Rights", - "values": [ - "CP rights - general", - "Freedom of association and peaceful assembly", - "International instruments" - ] - }, - { - "text": "Consider ratifying the Convention on the Elimination of All forms of Discrimination against Women, the International Covenant on Economic, Social and Cultural Rights and also consider acceding to the Optional Protocol to the Convention against Torture and Other Cruel, Inhuman or Degrading Treatment or Punishment", - "values": [ - "Detention", - "ESC rights - general", - "International instruments", - "Torture and other CID treatment", - "Women's rights" - ] - }, - { - "text": "Implement the national plan with a number of guidelines on economic and social policy in order to reduce poverty and improve living conditions of the population in the country ", - "values": [ - "Poverty" - ] - }, - { - "text": "Decriminalize sexual relations between consenting adults of the same sex, as recommended by the Human Rights Committee ", - "values": [ - "Sexual Orientation and Gender Identity", - "Treaty bodies" - ] - }, - { - "text": "Ratify the Optional Protocol to the Convention against Torture, to open up for international inspection its places of detention", - "values": [ - "Detention", - "International instruments", - "Torture and other CID treatment", - "Treaty bodies" - ] - }, - { - "text": "Continue judiciary and legislative reforms", - "values": [ - "Justice" - ] - }, - { - "text": "Pursue its commitment to the ratification of international conventions by ratifying fundamental instruments, in particular the Convention on the Rights of Persons with Disabilities", - "values": [ - "Disabilities", - "International instruments" - ] - }, - { - "text": "Ensure that the provisions in the Constitution that guarantee equality and dignity are equally applied to members of the lesbian, gay, bisexual and transgender (LGBT) community and ensure thorough and impartial investigation into all allegations of attacks and threats against individuals targeted because of their sexual orientation or gender identity", - "values": [ - "Sexual Orientation and Gender Identity" - ] - }, - { - "text": "Commute without delay death sentences into imprisonment and establish a de jure moratorium on executions with a view to fully abolish the death penalty", - "values": [ - "Death penalty" - ] - }, - { - "text": "Repeal all provisions that give rise to discrimination based on sexual orientation or gender identity ", - "values": [ - "Sexual Orientation and Gender Identity" - ] - }, - { - "text": "Ratify the Optional Protocol to the Convention on the Elimination of All Forms of Discrimination against Women", - "values": [ - "International instruments", - "Women's rights" - ] - }, - { - "text": "Consider ratifying the Optional Protocol to the ICESCR, putting thereby at the same level the protection of these rights with the political and civil rights", - "values": [ - "ESC rights - general", - "International instruments" - ] - }, - { - "text": "Continue to implement programs and measures to move forward in the achievement of the MDGs between now and 2015 ", - "values": [ - "Development" - ] - }, - { - "text": "Repeal the aforementioned law - 2008 bill making armed robbery, terrorism and hijacking capital offences where they result in death - and bring its legislation in line with its international obligations", - "values": [ - "Counter-terrorism", - "Public security" - ] - }, - { - "text": "Adopt measures to secure the independent and effective investigation of allegations of torture by the police, in compliance with the Manual on the Effective Investigation and Documentation of Torture and Other Cruel, Inhuman or Degrading Treatment or Punishment (the Istanbul Protocol)", - "values": [ - "Human rights violations by state agents", - "International instruments", - "Torture and other CID treatment" - ] - }, - { - "text": "Effectively implement and establish the necessary institutional mechanisms to ensure the enforcement of existing laws prohibiting torture and dismissing illegally obtained evidence", - "values": [ - "Torture and other CID treatment" - ] - }, - { - "text": "Step up measures to ensure stronger coordination between agencies dealing with issues relating to children in order to eliminate violence, commercial sexual exploitation and child labour ", - "values": [ - "Labour", - "Rights of the Child" - ] - }, - { - "text": "Respond to problems of discrimination on the labour market linked to the refusal to hire persons on the grounds of their origin or race", - "values": [ - "Labour", - "Racial discrimination" - ] - }, - { - "text": "Seek technical assistance in order to improve human rights in the country", - "values": [ - "Technical assistance and cooperation" - ] - }, - { - "text": "Successfully implement its national strategy for combating poverty", - "values": [ - "Poverty" - ] - }, - { - "text": "Consider taking the necessary steps to eliminate any legal provisions that may be viewed as limiting freedom of expression", - "values": [ - "Freedom of opinion and expression" - ] - }, - { - "text": "Ensure that provisions of the Indonesian Criminal Code, such as articles 106 and 110 are not misused to restrict the freedom of speech ", - "values": [ - "Freedom of opinion and expression" - ] - }, - { - "text": "Consider decriminalizing homosexual activities between consenting adults.", - "values": [ - "Sexual Orientation and Gender Identity" - ] - }, - { - "text": "Continue to ensure women's equal participation in the economic sector, equal opportunities for career development, equal pay as men and provide sufficient opportunities to reconcile work and family obligations", - "values": [ - "Women's rights" - ] - }, - { - "text": "In order to strengthen implementation of its obligations under human rights treaties, Bahrain will explore the possibility of creating a working group made up of government ministries with competence for human rights to carry out coordination and follow-up activities. ", - "values": [ - "International instruments" - ] - }, - { - "text": "Create and operationalize a national human rights institution for the promotion and protection of human rights", - "values": [ - "National Human Rights Institution" - ] - }, - { - "text": "Ensure impartial investigations into all instances of death in custody", - "values": [ - "Detention", - "Extrajudicial executions" - ] - }, - { - "text": "Continue its efforts aimed at combating discrimination and intolerance ", - "values": [ - "Other" - ] - }, - { - "text": "Continue to tackle the illicit traffic in narcotic drugs. In this vein, make complementary efforts to strengthen the existing legal and regulatory mechanism and better engagement of National Drug Control Agency with regional and international relevant institutions", - "values": [ - "Public security" - ] - }, - { - "text": "Redouble its efforts to improve the economy", - "values": [ - "Development" - ] - }, - { - "text": "Submit periodic reports on the implementation of the International Convention on the Elimination of All Forms of Racial Discrimination and the Convention against Torture ", - "values": [ - "Racial discrimination", - "Torture and other CID treatment", - "Treaty bodies" - ] - }, - { - "text": "Intensify efforts to reduce the infant mortality rate ", - "values": [ - "Rights of the Child" - ] - }, - { - "text": "Step up its efforts towards the implementation of intersectoral policies with a view to eradicating poverty ", - "values": [ - "Poverty" - ] - }, - { - "text": "Burkina Faso reaffirmed its commitment to cooperating with the different international bodies and hoped for assistance from all international and national actors for the implementation of the recommendations made.", - "values": [ - "Technical assistance and cooperation", - "UPR process" - ] - }, - { - "text": "Continue its efforts to reduce early dropouts from education and training", - "values": [ - "Right to education" - ] - }, - { - "text": "Withdrawal of reservations annexed to the law concerning ratification of CRC, given the evolution of Tunisian legislation and the enactment of new laws promoting the rights of the child", - "values": [ - "International instruments", - "Rights of the Child" - ] - }, - { - "text": "Legislate to counter human trafficking and protect victims", - "values": [ - "Trafficking" - ] - }, - { - "text": "Order without delay the opening of impartial and independent investigations on information reporting acts of torture and ill-treatment and bring to justice perpetrators of such deeds ", - "values": [ - "Torture and other CID treatment" - ] - }, - { - "text": "Establish a national human rights institution and strengthen human rights education and school programmes and general social measures, with the support of the international community ", - "values": [ - "Human rights education and training", - "National Human Rights Institution" - ] - }, - { - "text": "Continue efforts and take necessary policy measures to ensure that children are protected from corporal punishment and other forms of violence or exploitation ", - "values": [ - "Rights of the Child", - "Torture and other CID treatment" - ] - }, - { - "text": "Continue with the reform to the penitentiary system, with a focus on fighting overcrowding and the reintegration of prisoners", - "values": [ - "Detention" - ] - }, - { - "text": "Intensify efforts in the resettlement of refugees, especially with regard to the protracted refugee situations identified by UNHCR", - "values": [ - "Asylum-seekers - refugees" - ] - }, - { - "text": "The Constitution and the legal framework guarantees the minorities rights without discrimination of national and ethno-linguistic minorities. The relevant institutions are committed to draft and implement a road map to improve legislative and policy framework as regards respect for and protection of minorities. ", - "values": [ - "Minorities", - "Racial discrimination" - ] - }, - { - "text": "Investigate in a transparent manner all cases of human rights violations against protesters", - "values": [ - "Freedom of association and peaceful assembly" - ] - }, - { - "text": "Ensure that international human rights instruments' obligations are incorporated into domestic laws ", - "values": [ - "International instruments" - ] - }, - { - "text": "Ensure that CNDHC is brought into conformity with the Paris principles ", - "values": [ - "National Human Rights Institution" - ] - }, - { - "text": "Harmonize the legislation to eliminate all forms of discrimination against women, notably to ensure equality relating to inheritance and land rights", - "values": [ - "Right to land", - "Women's rights" - ] - }, - { - "text": "Take stricter measures to condemn and ensure accountability for all manifestations of intolerance, including in political discourse and on the Internet, and punish those who are involved in it", - "values": [ - "Racial discrimination" - ] - }, - { - "text": "Provide the Ombudsperson' s office, which is responsible under the legislation for assisting alleged victims of discrimination and conducting independent research and issuing recommendations to achieve equal treatment, with the additional financial resources necessary to fulfil its new obligations ", - "values": [ - "National Human Rights Institution" - ] - }, - { - "text": "Develop a comprehensive nationwide policy consistent with CEDAW, ensure true and genuine gender equality in the fight against gender-based violence, including the complete eradication of practices of female genital mutilation, and withdraw the reservation to CEDAW ", - "values": [ - "International instruments", - "Rights of the Child", - "Torture and other CID treatment", - "Women's rights" - ] - }, - { - "text": "Submit national reports to the treaty bodies, including the ICESCR, and issue a standing invitation to special procedures", - "values": [ - "ESC rights - general", - "Special procedures", - "Treaty bodies" - ] - }, - { - "text": "Ensure full and effective compliance of national legislation and law enforcement practices, particularly in the areas of education and mass media with the obligation of article 27 of the International Covenant on Civil and Political Rights and the obligations that derive from Ukraine being party to other international legal instruments, including on the protection of national minorities.", - "values": [ - "Freedom of the press", - "International instruments", - "Minorities", - "Right to education" - ] - }, - { - "text": "Safeguard the rights of individual refugees and asylum seekers and ensure their access to a fair procedure for examining their asylum requests", - "values": [ - "Asylum-seekers - refugees" - ] - }, - { - "text": "Ensure pluralism of the press and respect for freedom of expression and public assembly", - "values": [ - "Freedom of association and peaceful assembly", - "Freedom of opinion and expression", - "Freedom of the press" - ] - }, - { - "text": "Modify the discriminatory provisions of the Family Code in order to harmonize those provisions with the CEDAW ", - "values": [ - "International instruments", - "Women's rights" - ] - }, - { - "text": "Conduct a full review of the effectiveness of the 2016 Hate Crime Action Plan, and review approaches by criminal justice agencies under the current legal framework in order to address reports of increasing hate crime in the United Kingdom", - "values": [ - "Racial discrimination" - ] - }, - { - "text": "Ratify and implement ILO Convention No. 87 regarding freedom of association and protection of the right to organize", - "values": [ - "Freedom of association and peaceful assembly", - "International instruments" - ] - }, - { - "text": "Align national legislation with international instruments on the protection of the rights of women and in favour of the principle of gender equality, in particular by promoting access for women to jobs, increasing their participation in political and economic life and ensuring wage equality between men and women", - "values": [ - "International instruments", - "Labour", - "Women's rights" - ] - }, - { - "text": "Continue to implement the National Strategy to enable further poverty reduction in Botswana", - "values": [ - "Poverty" - ] - }, - { - "text": "Take steps to hold to account the perpetrators of the human rights violations, including sexual and gender-based violence, committed during the violence in Juba in July 2016, more specifically, the perpetrators of the attack on the Terrain Hotel, during which a local journalist was killed and several aid workers were raped", - "values": [ - "Freedom of the press", - "Public security", - "Rights of the Child", - "Women's rights" - ] - }, - { - "text": "Adopt a comprehensive approach with regard to indigenous policies as a cross-cutting pillar for all government policies, with an emphasis on those policies with greater social impact ", - "values": [ - "Indigenous peoples" - ] - }, - { - "text": "Accelerate efforts towards the enactment of domestic legislation to further strengthen human rights", - "values": [ - "International instruments" - ] - }, - { - "text": "Continue with its programmes to promote and protect the rights of women, children, disabled persons and the elderly", - "values": [ - "Disabilities", - "Rights of the Child", - "Women's rights" - ] - }, - { - "text": "Allocate substantial resources and give special attention to children of the most vulnerable groups in the society", - "values": [ - "Rights of the Child" - ] - }, - { - "text": "Continue its programme of building affordable housing for low-income families aimed at promoting broader enjoyment of the right to adequate housing by 2020.", - "values": [ - "Right to housing" - ] - }, - { - "text": "Continue the implementation of health services through policies aimed at strengthening infrastructure in urban and rural areas", - "values": [ - "Right to health" - ] - }, - { - "text": "Adopt without delay national legislation on domestic violence and create public institutions that offer assistance and protection for victims of domestic violence", - "values": [ - "Rights of the Child", - "Women's rights" - ] - }, - { - "text": "Respect freedom of movement in all territories under State jurisdiction in conformity with international standards.", - "values": [ - "Freedom of movement" - ] - }, - { - "text": "Take steps to establish an independent, effective and well-resourced national preventive mechanism in compliance with Optional Protocol to the Convention against Torture requirements", - "values": [ - "International instruments", - "Torture and other CID treatment" - ] - }, - { - "text": "Improve the overall conditions of children by taking into account the recommendations made by the Committee on the Rights of the Child, with the support and assistance of the international community.", - "values": [ - "Rights of the Child", - "Technical assistance and cooperation", - "Treaty bodies" - ] - }, - { - "text": "Consider ratifying the International Convention on the Rights of All Migrant Workers and Members of Their families ", - "values": [ - "International instruments", - "Labour", - "Migrants" - ] - }, - { - "text": "Effectively implement the National Human Rights Action Plan and publicly call for an end to attacks, abuse and discrimination against persons with disabilities, persons with albinism, lesbian, gay, bisexual, transgender and intersex persons, an people living with, at risk of and affected by HIV/AIDS", - "values": [ - "Disabilities", - "HIV - Aids", - "Minorities", - "Sexual Orientation and Gender Identity" - ] - }, - { - "text": "Continue its efforts to guarantee comprehensive coverage on its territory for preschool education", - "values": [ - "Right to education" - ] - }, - { - "text": "Continue measures to promote working conditions of foreign workers, especially women foreign workers, and to improve their integration into Japanese society", - "values": [ - "Labour", - "Migrants", - "Women's rights" - ] - }, - { - "text": "Regularly report to the treaty bodies and specifically with regard to the Committee on the Elimination of Discrimination against Women.", - "values": [ - "Treaty bodies", - "Women's rights" - ] - }, - { - "text": "Strengthen efforts in mitigating the effects caused by the decline in schools in recent years to ensure that the children's schooling cycle is not left vulnerable", - "values": [ - "Right to education" - ] - }, - { - "text": "Adopt and implement a national plan inspired by the Durban Declaration and Programme of Action, for the benefit especially of disadvantaged minorities, which are Afro-Americans and indigenous peoples", - "values": [ - "Indigenous peoples", - "Minorities", - "Racial discrimination" - ] - }, - { - "text": "Prosecute those responsible for crimes against women, promulgate the individual and family code and provide assistance for women who have been victims of sexual violence.", - "values": [ - "Women's rights" - ] - }, - { - "text": "Continue its efforts to create an ombudsman for children\u2019s rights", - "values": [ - "National Human Rights Institution", - "Rights of the Child" - ] - }, - { - "text": "Strengthen the independence of the national mechanism for the prevention of torture and other forms of ill-treatment, including through the provision of a separate and adequate budget", - "values": [ - "Detention", - "Torture and other CID treatment" - ] - }, - { - "text": "Continue the work in establishing a national human rights institution in full compliance with the Paris Principles ", - "values": [ - "National Human Rights Institution" - ] - }, - { - "text": "Consider ratifying ILO Convention No. 189 (2011) concerning Decent Work for Domestic Workers ", - "values": [ - "International instruments", - "Labour" - ] - }, - { - "text": "Combat stereotypes regarding the role of women, in particular by sensitizing the population in rural areas", - "values": [ - "Women's rights" - ] - }, - { - "text": "Ratify, in the shortest time, the International Convention for the Protection of All Persons from Enforced Disappearance as well as the Convention against Torture and Other Cruel, Inhuman or Degrading Treatment or Punishment and adopt related internal legislation ", - "values": [ - "Enforced disappearances", - "International instruments", - "Torture and other CID treatment" - ] - }, - { - "text": "Repeal provisions in national law that criminalize same sex relations, including in the Sexual Offences Act, and take steps to ensure the rights of these persons are protected ", - "values": [ - "Sexual Orientation and Gender Identity" - ] - }, - { - "text": "Ratify CRPD", - "values": [ - "Disabilities", - "International instruments" - ] - }, - { - "text": "Enact and implement a Law of Association to guarantee the right to form civil society organizations and to protect those organizations from government interference", - "values": [ - "Civil society", - "Freedom of association and peaceful assembly" - ] - }, - { - "text": "Pass a law guaranteeing gender equality and take the necessary measures to empower women and society", - "values": [ - "Women's rights" - ] - }, - { - "text": "Continue making efforts to prioritize the reports to the treaty bodies ", - "values": [ - "Treaty bodies" - ] - }, - { - "text": "Accede to and align its national legislation with the Rome Statute of the International Criminal Court and the Agreement on the Privileges and Immunities of the Court, including incorporating provisions to cooperate promptly and fully with the International Criminal Court, and investigate and prosecute genocide, crimes against humanity and war crimes effectively before its national courts ", - "values": [ - "International instruments", - "Justice" - ] - }, - { - "text": "Continue to fight against trafficking in persons and strengthen support mechanisms for victims of trafficking", - "values": [ - "Trafficking" - ] - }, - { - "text": "Take measures in order to fight against impunity in torture and ill- treatment, especially in cases of police brutality and excessive use of force", - "values": [ - "Human rights violations by state agents", - "Impunity", - "Torture and other CID treatment" - ] - }, - { - "text": "Make improvements to ensure the freedom of expression, including for the mass media", - "values": [ - "Freedom of opinion and expression", - "Freedom of the press" - ] - }, - { - "text": "Take steps to improve equality in education in response to the low enrolment rate of female students in secondary and higher education ", - "values": [ - "Right to education", - "Rights of the Child", - "Women's rights" - ] - }, - { - "text": "Take additional measures for the elimination of cruel and inhuman treatment through the training of law-enforcement officers ", - "values": [ - "Human rights violations by state agents" - ] - }, - { - "text": "Accelerate the process of bringing the statutes of the Office of Ombudsman into full conformity with the Paris Principles", - "values": [ - "National Human Rights Institution" - ] - }, - { - "text": "Continue to take positive steps to enhance the enjoyment of economic, social and cultural rights, especially in the areas of education, health and the care of the disabled", - "values": [ - "Disabilities", - "Right to education", - "Right to health" - ] - }, - { - "text": "Publish precise information on the identity and number of convicted persons currently on death row ", - "values": [ - "Death penalty" - ] - }, - { - "text": "Fast track the drafting of a federal bill on prevention of violence in the family ", - "values": [ - "Rights of the Child", - "Women's rights" - ] - }, - { - "text": "Proceed with the implementation of the National Action Plan on Integration to strengthen measures to tackle xenophobia, racism and intolerance, and increase intercultural understanding, including through community-based programmes", - "values": [ - "Racial discrimination" - ] - }, - { - "text": "Implement the announced voluntary commitments and the UPR accepted recommendations", - "values": [ - "UPR process" - ] - }, - { - "text": "Continue to pay particular attention to the rights of children and women, including through the development and enactment of national action plans", - "values": [ - "Rights of the Child", - "Women's rights" - ] - }, - { - "text": "Continue its fruitful cooperation with the United Nations mechanisms, in particular those related to human rights", - "values": [ - "Special procedures", - "Treaty bodies", - "UPR process" - ] - }, - { - "text": "Implement a national strategy to improve the situation and social integration of the Roma population", - "values": [ - "Minorities" - ] - }, - { - "text": "Liechtenstein will continue to pay particular attention to the promotion of ethnic and religious tolerance between the different communities in the country", - "values": [ - "Freedom of religion and belief", - "Racial discrimination" - ] - }, - { - "text": "Repeal article 128 of the Criminal Code which identifies the commission of an offence with honourable motives as a mitigating excuse", - "values": [ - "Justice" - ] - }, - { - "text": "Create national institutions and improved capacity, which is essential for peace, stability, and democracy and for laying a solid foundation for the protection of human rights in the country.", - "values": [ - "General" - ] - }, - { - "text": "Consider imposing a moratorium on execution of death penalties while assessing the possibility of adopting the Second Optional Protocol to ICCPR aimed at the abolition of the death penalty ", - "values": [ - "Death penalty", - "International instruments" - ] - }, - { - "text": "Take effective measures to realize the rights enshrined in the Convention on the Rights of Persons with Disabilities, which was ratified in 2011", - "values": [ - "Disabilities" - ] - }, - { - "text": "Amend article 126 of the penal code in conformity with CAT", - "values": [ - "International instruments", - "Torture and other CID treatment" - ] - }, - { - "text": "Increase efforts to prevent and punish episodes of extrajudicial executions and illegal or arbitrary detentions", - "values": [ - "Detention", - "Extrajudicial executions" - ] - }, - { - "text": "Sign and ratify the OP-ICESCR, OP-CAT, OP-CRC-AC ", - "values": [ - "Detention", - "ESC rights - general", - "International humanitarian law", - "International instruments", - "Rights of the Child", - "Torture and other CID treatment" - ] - }, - { - "text": "Undertake further actions in order to prevent child marriages", - "values": [ - "Rights of the Child" - ] - }, - { - "text": "Continue to invest financial and material resources, in conditions of the financial crisis, with the view to support the economic and social development in the country as a whole and the Tibet Autonomous Region in particular", - "values": [ - "Development" - ] - }, - { - "text": "Maintain the necessary efforts to promote corporate responsibility, which is linked to the full enjoyment of human rights of the population", - "values": [ - "Business and human rights" - ] - }, - { - "text": "Continue advancing the consolidation of its National Human Rights Institution in conformity with the Paris Principles ", - "values": [ - "National Human Rights Institution" - ] - }, - { - "text": "Register all children immediately after birth and ensure that birth registration legislation is in accordance with the Convention on the Rights of the Child, as recommended by the Committee on the Rights of the Child in its 2013 Concluding Observations", - "values": [ - "International instruments", - "Rights of the Child", - "Statelessness and the right to nationality", - "Treaty bodies" - ] - }, - { - "text": "Properly address discrimination against women, also by means of sensitizing civil society.", - "values": [ - "Civil society", - "Women's rights" - ] - }, - { - "text": "Take necessary steps for capacity-building of employees in the human rights field", - "values": [ - "Human rights education and training" - ] - }, - { - "text": "Prevent the practice of child marriage among all ethnic groups", - "values": [ - "Minorities", - "Rights of the Child" - ] - }, - { - "text": "Strengthen training on human rights for State security forces and bodies", - "values": [ - "Human rights education and training" - ] - }, - { - "text": "Continue taking measure to promote the effective equality of people of African descent", - "values": [ - "Minorities" - ] - }, - { - "text": "Fully accede to the principles of the Protocol to Prevent, Suppress and Punish Trafficking in Persons, Especially Women and Children, supplementing the United Nations Convention against Transnational Organized Crime - Palermo Protocol -, with a view to providing effective protection for victims of trafficking and punishing the perpetrators of this crime", - "values": [ - "International instruments", - "Trafficking" - ] - }, - { - "text": "Ensure full integration of persons with disabilities into socio-economic and political affairs, particularly equal access to job opportunities, promoting of their right to education, adequate resources for care and support for children with psychosocial disabilities in the family and in the community, and finally, to ensure their accessibility to public transportation and buildings", - "values": [ - "Disabilities" - ] - }, - { - "text": "Increase efforts for a more fair distribution of wealth in line with the remarkable success in poverty reduction", - "values": [ - "Poverty" - ] - }, - { - "text": "Take all necessary and appropriate measures to eradicate all forms of child labour, in accordance with international legal standards, and to protect children from economic exploitation.", - "values": [ - "Labour", - "Rights of the Child" - ] - }, - { - "text": "Facilitate high education and free education to all school-aged children", - "values": [ - "Right to education", - "Rights of the Child" - ] - }, - { - "text": "Accelerate the process for the ratification of international human rights instruments to which it is not yet a party", - "values": [ - "International instruments" - ] - }, - { - "text": "NGOs should be consulted widely and have a substantive role in drafting the new NGO law", - "values": [ - "Civil society" - ] - }, - { - "text": "Repeal the laws which criminalize sexual activity between consenting adults of the same sex, as previously recommended", - "values": [ - "Sexual Orientation and Gender Identity", - "UPR process" - ] - }, - { - "text": "Continue the efforts to ensure a quality education for Indonesian children ", - "values": [ - "Right to education", - "Rights of the Child" - ] - }, - { - "text": "Repeal discriminatory blasphemy laws against religious minorities and ensure that there is no impunity for those who commit hate crimes", - "values": [ - "Freedom of religion and belief", - "Minorities", - "Racial discrimination" - ] - }, - { - "text": "Repeal Decree No. 1247 and establish clear procedures in secondary legislation in order to implement the right to free, prior and informed consent of indigenous peoples, regarding legislative or administrative measures affecting their territories and livelihood, as contained in the Constitution of Ecuador and in the ILO Indigenous and Tribal Peoples Convention, 1989 (No. 169)", - "values": [ - "Indigenous peoples", - "International instruments", - "Right to land" - ] - }, - { - "text": "Continue strengthening services for children with disabilities and adopt policies for their inclusion in regular education ", - "values": [ - "Disabilities", - "Rights of the Child" - ] - }, - { - "text": "Continue efforts to strengthen the rights of women and to further the advancement and development of women's rights in the international dimension.", - "values": [ - "Women's rights" - ] - }, - { - "text": "Ratify the International Convention for the Protection of All Persons from Enforced Disappearance (CED).", - "values": [ - "Enforced disappearances", - "International instruments" - ] - }, - { - "text": "Consider the creation of an Ombudsman for children's rights in order to further enhance the status of children", - "values": [ - "National Human Rights Institution", - "Rights of the Child" - ] - }, - { - "text": "Allow full access to and cooperate fully with the Commission of Inquiry and civil society monitors", - "values": [ - "Civil society", - "Technical assistance and cooperation" - ] - }, - { - "text": "Increase efforts to apply the existing legislation to prevent separation of boys and girls from their family environment due to the economic conditions of the family, through training programmes, information and awareness raising campaigns", - "values": [ - "Rights of the Child" - ] - }, - { - "text": "Adopt a comprehensive anti-discrimination legislation that includes all grounds set out in the International Covenant on Economic, Social and Cultural Rights ", - "values": [ - "ESC rights - general", - "International instruments" - ] - }, - { - "text": "Do everything in the power of Mexico to minimize income inequalities between different social sectors and geographic regions", - "values": [ - "Development" - ] - }, - { - "text": "Continue its efforts to ensure that the provisions of international human rights conventions to which it is a party are incorporated into domestic law ", - "values": [ - "International instruments" - ] - }, - { - "text": "Continue to make efforts with regard to reform in criminal proceedings, including enhancing the independence and impartiality of the Prosecutor's Office, as well as the updating of pretrial investigation procedures", - "values": [ - "Justice" - ] - }, - { - "text": "Consider providing the National Council for Combating Discrimination, Ombudsman and relevant institutions with adequate resources to carry out their work and to minimize duplication of their functions and competence areas ", - "values": [ - "National Human Rights Institution" - ] - }, - { - "text": "Make a concerted effort to prevent the use of child soldiers in its recurrent armed conflict ", - "values": [ - "International humanitarian law", - "Rights of the Child" - ] - }, - { - "text": "Continue to investigate cases of enforced and involuntary disappearances in cooperation with the Working Group", - "values": [ - "Enforced disappearances", - "Special procedures" - ] - }, - { - "text": "Decriminalize same-sex sexual relations by repealing article 339 of the penal code, and include lesbian, gay, bisexual and transgender persons in its legal provisions against discrimination", - "values": [ - "Sexual Orientation and Gender Identity" - ] - }, - { - "text": "Ratify the Optional Protocol to the International Covenant on Economic, Social and Cultural Rights and accept its investigation procedure and its communications procedure between States", - "values": [ - "ESC rights - general", - "International instruments" - ] - }, - { - "text": "Reform its directive on family reunification to establish specifically family reunification for child asylum seekers relocated to the United Kingdom or who have been recognized as refugees", - "values": [ - "Asylum-seekers - refugees", - "Rights of the Child" - ] - }, - { - "text": "Continue strengthening State institutions for the protection of its people, giving special attention to the defence of human rights", - "values": [ - "General" - ] - }, - { - "text": "Continue to pursue police and justice reforms aimed at reducing crime and impunity, while fully respecting human rights ", - "values": [ - "Impunity" - ] - }, - { - "text": "Promote gender equality and parity and prevent violence against women ", - "values": [ - "Women's rights" - ] - }, - { - "text": "Intensify its effort to prevent and combat problems, such as honor killings and domestic violence as well as early and forced marriages, so that there are no implementation gaps between plans and actions ", - "values": [ - "Rights of the Child", - "Women's rights" - ] - }, - { - "text": "Make further efforts to improve conditions in detention facilities according to international standards, especially including developing gender-sensitive policies and programmes for women ", - "values": [ - "Detention", - "Women's rights" - ] - }, - { - "text": "Continue to strengthen free education for all its people, particularly in rural areas, through "mobile schools" ", - "values": [ - "Right to education" - ] - }, - { - "text": "Conduct and finalize a timely review of the request for recognition of the Travellers as an ethnic group", - "values": [ - "Minorities" - ] - }, - { - "text": "Extend a moratorium on the death penalty and abolish the death penalty, and ratify the Second Optional Protocol to ICCPR", - "values": [ - "Death penalty", - "International instruments" - ] - }, - { - "text": "Engage in dialogue and cooperation with United Nations human rights mechanism on the basis of mutual respect and equality", - "values": [ - "Special procedures", - "Treaty bodies", - "UPR process" - ] - }, - { - "text": "Establish an A-status national human rights institution based on the Paris Principles", - "values": [ - "National Human Rights Institution" - ] - }, - { - "text": "Apply article 36 of the Vienna Convention on Consular Relations in order to ensure that, if a detained foreign national so requests, the competent authority shall, without delay, inform his or her consular post ", - "values": [ - "Detention", - "Migrants" - ] - }, - { - "text": "Ratify the Convention against Torture and Other Cruel, Inhuman and Degrading Treatment or Punishment", - "values": [ - "International instruments", - "Torture and other CID treatment" - ] - }, - { - "text": "The Republic of Azerbaijan is cooperating with the UN Special Procedures-mandate holders and is committed to the very cooperation.", - "values": [ - "Special procedures" - ] - }, - { - "text": "Intensify its efforts in the area of social, economic and cultural rights and give a more important role to gender and inter-culturality in public policies, in particular in education, health and justice", - "values": [ - "ESC rights - general", - "Justice", - "Right to education", - "Right to health", - "Women's rights" - ] - }, - { - "text": "Accede to CAT and take immediate action to stop the use of torture and other ill-treatment of all detainees", - "values": [ - "Detention", - "International instruments", - "Torture and other CID treatment" - ] - }, - { - "text": "Adopt a comprehensive list of hazardous work prohibited to children and amend its laws to raise the minimum age for employment to at least 15 and to expressly prohibit the use, procuring or offering of a child for pornography", - "values": [ - "Labour", - "Rights of the Child" - ] - }, - { - "text": "Implement a program of ratification of all international human rights instruments, and then proceed to the incorporation of these in its internal legal system", - "values": [ - "International instruments" - ] - }, - { - "text": "Take appropriate measures to address problems faced by immigrant skilled workers in relation to gaining employment on par with their education, experience and skills ", - "values": [ - "Migrants" - ] - }, - { - "text": "Further improve prison conditions", - "values": [ - "Detention" - ] - }, - { - "text": "Consider accession to the Council of Europe's Istanbul Convention on preventing and combating violence against women and domestic violence", - "values": [ - "International instruments", - "Rights of the Child", - "Women's rights" - ] - }, - { - "text": "Increase access to quality education by indigenous and Afro- Ecuadorian women and those in rural areas", - "values": [ - "Indigenous peoples", - "Minorities", - "Right to education", - "Women's rights" - ] - }, - { - "text": "Continue to invest in the development of the health system, which results in further progress on the right to health for the entire population", - "values": [ - "Right to health" - ] - }, - { - "text": "Ensure that any reformed prison or compulsory care system meets international human rights standards, and abolish system of arbitrary detention, including Re-Education Through Labour", - "values": [ - "Detention", - "International instruments" - ] - }, - { - "text": "Adopt a comprehensive anti-discrimination law, including protection for lesbian, gay, bisexual, transgender and intersex persons", - "values": [ - "Sexual Orientation and Gender Identity" - ] - }, - { - "text": "Take forward plans to decriminalise press offences as agreed by the President of the Republic in 2004 and as reported to the United Nations Special Rapporteur on the Promotion and Protection of the right to freedom of opinion and expression ", - "values": [ - "Freedom of the press", - "Special procedures" - ] - }, - { - "text": "Canada is committed to combatting all forms of violence against women and girls. ", - "values": [ - "Rights of the Child", - "Women's rights" - ] - }, - { - "text": "Implement with high priority its intention to establish a mechanism to monitor human rights ", - "values": [ - "National Human Rights Institution" - ] - }, - { - "text": "Formulate and adopt legislation against domestic violence which classifies sexual violence, rape and incest as serious offences and establish appropriate penalties for the perpetrators, especially when they are relatives of the victim ", - "values": [ - "Rights of the Child", - "Women's rights" - ] - }, - { - "text": "Ratify the Rome Statute of the International Criminal Court as well as its Agreement on Privileges and Immunities without formulating any reservation", - "values": [ - "International instruments", - "Justice" - ] - }, - { - "text": "Conduct awareness-raising campaigns regarding equal opportunities and responsibilities for men and women, in order to abolish discrimination on the basis of gender and lead to greater representation of women in positions of responsibility", - "values": [ - "Human rights education and training", - "Women's rights" - ] - }, - { - "text": "Adopt legislation to legally prohibit corporal punishment of children ", - "values": [ - "Rights of the Child", - "Torture and other CID treatment" - ] - }, - { - "text": "Undertake further work to ensure that the law is adequate to prosecute cases involving domestic violence and that such laws are properly enforced through, for example, increased police capacity-building and the appointment of female officers", - "values": [ - "Rights of the Child", - "Women's rights" - ] - }, - { - "text": "Adopt and implement comprehensive anti-discrimination legislation in line with international human rights standards", - "values": [ - "International instruments" - ] - }, - { - "text": "Invite the Special Rapporteur on the rights and fundamental freedoms of indigenous peoples to return to the country for a follow-up visit as soon as possible.", - "values": [ - "Indigenous peoples", - "Special procedures" - ] - }, - { - "text": "Take concrete measures to ensure that justice is served in cases of threats and intimidation against journalists and that freedom of the press is guaranteed", - "values": [ - "Freedom of the press" - ] - }, - { - "text": "Guarantee access to legal gender recognition for both intersex and transgender people of all ages, without legal, administrative or financial barriers", - "values": [ - "Sexual Orientation and Gender Identity" - ] - }, - { - "text": "Broaden the scope of its international human rights obligations by acceding to the ICCPR, ICESCR, ICERD and CAT", - "values": [ - "CP rights - general", - "ESC rights - general", - "International instruments", - "Racial discrimination", - "Torture and other CID treatment" - ] - }, - { - "text": "Continue its efforts to work against poverty and to try to link the fight against poverty and education ", - "values": [ - "Poverty", - "Right to education" - ] - }, - { - "text": "Continue reinforcing advanced programmes in the field of education, culture and social assistance in favour of national minorities and other vulnerable sectors of the population in the fight against poverty and social inequality", - "values": [ - "ESC rights - general", - "Minorities", - "Poverty", - "Right to education" - ] - }, - { - "text": "Ratify the First Optional Protocol to the International Covenant on Civil and Political Rights", - "values": [ - "CP rights - general" - ] - }, - { - "text": "Pay particular attention to defending the rights of vulnerable peoples, in particular women and children", - "values": [ - "Rights of the Child", - "Women's rights" - ] - }, - { - "text": "Prepare a report on the impact of the \u201cHate Crime Action Plan\u201c with the view to assess concrete results", - "values": [ - "Racial discrimination" - ] - }, - { - "text": "Immediately and unconditionally release all women and girls who have been imprisoned for undergoing abortions or for having miscarriages", - "values": [ - "Detention", - "Rights of the Child", - "Women's rights" - ] - }, - { - "text": "Continue to prioritize the areas contained in the Strategic Framework for Growth and Combating Poverty and that the necessary resources are allocated for its implementation", - "values": [ - "Poverty" - ] - }, - { - "text": "Amend the Criminal Code to respect, protect and enforce the right to non-discrimination for all citizens regardless of their sexual orientation", - "values": [ - "Sexual Orientation and Gender Identity" - ] - }, - { - "text": "Put in place a strategy or a plan of action to fight illiteracy", - "values": [ - "Right to education" - ] - }, - { - "text": "Consider the ratification of the International Convention on the Protection of the Rights of All Migrant Workers and Members of Their Families pursuant to recommendation 1737 of 17 March 2006 of the Parliamentary Assembly of the Council of Europe, of which Latvia is a member ", - "values": [ - "International instruments", - "Labour", - "Migrants" - ] - }, - { - "text": "Provide obligatory human rights education and training to police, prison and detention staff and judiciary, and ensure their accountability for any human rights violations", - "values": [ - "Human rights education and training" - ] - }, - { - "text": "Create greater awareness on the part of law enforcement personnel, and launch efforts in the field of education and training on tolerance and cultural diversity ", - "values": [ - "Human rights education and training" - ] - }, - { - "text": "Ensure the implementation of national laws created to abolish early marriage and impose sanctions penalizing this practice", - "values": [ - "Rights of the Child", - "Women's rights" - ] - }, - { - "text": "Thoroughly and transparently investigate past human rights abuses", - "values": [ - "Justice" - ] - }, - { - "text": "Establish an independent national human rights institution that conforms to the Paris Principles", - "values": [ - "National Human Rights Institution" - ] - }, - { - "text": "Continue its efforts to strengthen the role of national human rights institution and the implementation of the national plan on human rights", - "values": [ - "National Human Rights Institution" - ] - }, - { - "text": "Continue to take steps to decrease child mortality rate ", - "values": [ - "Right to health", - "Rights of the Child" - ] - }, - { - "text": "Ensure that the deaths of human rights defenders are promptly and thoroughly investigated, and that those found to be responsible are brought to justice", - "values": [ - "Human rights defenders", - "Justice" - ] - }, - { - "text": "Apply a moratorium on the death penalty with a view to abolishing capital punishment", - "values": [ - "Death penalty" - ] - }, - { - "text": "Create conditions favourable to the realization of freedom of expression, both online and offline, freedom of association, and freedom of religion and belief ", - "values": [ - "Freedom of association and peaceful assembly", - "Freedom of opinion and expression", - "Freedom of religion and belief" - ] - }, - { - "text": "Further enhance its efforts to effectively prevent and prosecute violence against children", - "values": [ - "Rights of the Child" - ] - }, - { - "text": "Strengthen efforts within the context of the fight against domestic violence, rapes, violence and sexual abuse of children, as Norway has already committed itself to do ", - "values": [ - "Rights of the Child", - "Women's rights" - ] - }, - { - "text": "Pay special attention to the needs of women in rural and remote areas ", - "values": [ - "Women's rights" - ] - }, - { - "text": "Continue consultations with civil society in the follow-up to this universal periodic review ", - "values": [ - "Civil society", - "UPR process" - ] - }, - { - "text": "Pursue the protection of those who convert to another religion according to international human rights standards", - "values": [ - "Freedom of religion and belief", - "International instruments" - ] - }, - { - "text": "Pursue the policies that give priority to the promotion of the right to education for all ", - "values": [ - "Right to education" - ] - }, - { - "text": "Direct more attention and allocate more resources for the improvement of the quality of education", - "values": [ - "Right to education" - ] - }, - { - "text": "Ensure that every citizen - including human rights defenders -leaders of opposition parties, religious believers, civil society activists and journalists can peacefully exercise their right to freedom of expression in conformity with Turkmenistan's obligations under the ICCPR ", - "values": [ - "CP rights - general", - "Civil society", - "Freedom of association and peaceful assembly", - "Freedom of opinion and expression", - "Freedom of the press", - "International instruments" - ] - }, - { - "text": "Take further steps to ensure that the National Human Rights Institution is in conformity with the Principles relating to the status of national institutions for the promotion and protection of human rights (the Paris Principles) ", - "values": [ - "National Human Rights Institution" - ] - }, - { - "text": "More effectively address the issue of overcrowding in prisons and children living in prison with their families", - "values": [ - "Detention", - "Rights of the Child" - ] - }, - { - "text": "Request necessary technical assistance in the education sector, particularly when it comes to teaching tools and technological and scientific material ", - "values": [ - "Right to education", - "Technical assistance and cooperation" - ] - }, - { - "text": "Support the implementation of domestic measures to ensure the protection of socially vulnerable groups of the population, including children", - "values": [ - "Rights of the Child" - ] - }, - { - "text": "Increase efforts to implement all the recommendations it had committed to during its previous UPR ", - "values": [ - "UPR process" - ] - }, - { - "text": "Provide a full response about allegations of arbitrary detention and restrictions on press freedom.", - "values": [ - "Detention", - "Freedom of the press" - ] - }, - { - "text": "Conclude the process of ratification of the Convention on the Rights of Persons with Disabilities ", - "values": [ - "Disabilities", - "International instruments" - ] - }, - { - "text": "Adhere to the International Convention for the Protection of All Persons from Enforced Disappearance", - "values": [ - "Enforced disappearances", - "International instruments" - ] - }, - { - "text": "Put an end to the practice of torture, criminalize all acts of torture, ensure that all allegations are duly investigated and the perpetrators are prosecuted and punished thereby fully applying the Convention against Torture and its Optional Protocol", - "values": [ - "Detention", - "International instruments", - "Torture and other CID treatment" - ] - }, - { - "text": "Reconsider ratifying the International Convention on the Protection of the Rights of All Migrant Workers and Members of their Families (ICRMW)", - "values": [ - "International instruments", - "Labour", - "Migrants" - ] - }, - { - "text": "Review national legislation, in particular the Nationality and Residence Act, the Penal Code and the Personal Act, so as to repeal provisions that could facilitate discrimination ", - "values": [ - "Other" - ] - }, - { - "text": "Continue efforts in the provision of free and compulsory education", - "values": [ - "Right to education" - ] - }, - { - "text": "Adopt an open, merit-based selection process when selecting national candidates for United Nations treaty bodies elections", - "values": [ - "Treaty bodies" - ] - }, - { - "text": "Ensure the equal access of Afro-Brazilians to poverty reduction policies and social security benefits as a means of protection of their fundamental rights", - "values": [ - "Minorities", - "Poverty" - ] - }, - { - "text": "Request technical and financial assistance from the international community, in particular United Nations organs and programmes, with a view to putting into practice national policies to follow-up on recommendations formulated by the Human Rights Council in the context of the Universal Periodic Review ", - "values": [ - "Technical assistance and cooperation", - "UPR process" - ] - }, - { - "text": "Ratify the Convention on the Rights of Persons with Disabilities at the earliest opportunity", - "values": [ - "Disabilities", - "International instruments" - ] - }, - { - "text": "Take all possible measures with the assistance of the international community to eradicate illiteracy and to ensure access to education especially for girls and women.", - "values": [ - "Right to education", - "Rights of the Child", - "Technical assistance and cooperation", - "Women's rights" - ] - }, - { - "text": "Adopt and implement the bill for the protection of women against domestic violence, mentioned in its national report, in order to criminalize domestic violence, and implement concrete measures to punish the aggressors", - "values": [ - "Women's rights" - ] - }, - { - "text": "Allocate adequate resources to implement the legislative and administrative measures taken in order to prevent violence against women and children, including domestic violence, and provide victims with prompt and full support ", - "values": [ - "Rights of the Child", - "Women's rights" - ] - }, - { - "text": "For the purposes of fully protecting the human rights of all Namibians, secessionists be pursued and be brought to book ", - "values": [ - "General" - ] - }, - { - "text": "Dedicate more resources to ensuring access to basic facilities to indigenous peoples including clean water, healthcare and education", - "values": [ - "Indigenous peoples", - "Right to education", - "Right to health", - "Right to water and sanitation" - ] - }, - { - "text": "Speed up the establishment of the national commission to fight against trafficking in persons and the implementation process of the action plan of the national policy on gender equity and equality", - "values": [ - "Trafficking", - "Women's rights" - ] - }, - { - "text": "Ratify, as soon as possible, the Convention for the Protection of All Persons from Enforced Disappearance ", - "values": [ - "Enforced disappearances", - "International instruments" - ] - }, - { - "text": "Continue its efforts for the promotion and protection of human rights by the improvement of its judicial system", - "values": [ - "Justice" - ] - }, - { - "text": "Further strengthen institutions that promote human rights, democracy, good governance and the rule of law", - "values": [ - "Justice" - ] - }, - { - "text": "Eliminate all direct and indirect discrimination against women in legislation and practice", - "values": [ - "Women's rights" - ] - }, - { - "text": "Implement the rulings of the Inter-American Court of Human Rights relating to the Yakya Axa and Sawhoyamaxa communities, rendered in 2005 and 2006 respectively, which stipulate, particularly, that the lands claimed by these two communities must be restored to them ", - "values": [ - "Indigenous peoples", - "Right to land" - ] - }, - { - "text": "Continue its efforts to adopt more measures to keep children in school, and ensure that girls, indigenous children, and children with disabilities are able to exercise fully their right to education", - "values": [ - "Disabilities", - "Indigenous peoples", - "Right to education", - "Rights of the Child", - "Women's rights" - ] - }, - { - "text": "Pursue its efforts in order to complement its commitments towards the promotion and protection of human rights by ratifying the relevant international instruments and, in particular, the Second Optional Protocol to the International Covenant on Civil and Political Rights ", - "values": [ - "Death penalty", - "International instruments" - ] - }, - { - "text": "Strengthen mechanisms to advance more effectively, in the creation of a climate of tolerance and respect towards people of different ethnic groups or cultures ", - "values": [ - "Minorities" - ] - }, - { - "text": "Ensure the protection for migrant workers, especially from exploitation and ill-treatment", - "values": [ - "Labour", - "Migrants", - "Torture and other CID treatment" - ] - }, - { - "text": "Consider granting access to primary education to the children of refugees in the country", - "values": [ - "Asylum-seekers - refugees", - "Rights of the Child" - ] - }, - { - "text": "Immediately cease, in accordance with the Guiding Principles on Internal Displacement 1998, all forms of forced displacement", - "values": [ - "Internally displaced persons" - ] - }, - { - "text": "Cooperate with the United Nations human rights mechanisms", - "values": [ - "Special procedures", - "Technical assistance and cooperation", - "Treaty bodies", - "UPR process" - ] - }, - { - "text": "Install soon additional 'Centros de Justicia para las Mujeres' to improve access to justice for women throughout the national territory", - "values": [ - "Justice", - "Women's rights" - ] - }, - { - "text": "Considering to ratify the International Convention on the Protection of the Rights of All Migrant Workers and Members of Their Families ", - "values": [ - "International instruments", - "Labour", - "Migrants" - ] - }, - { - "text": "Continue to pursue its efforts to achieve the integration of immigrants and their participation in political and cultural and economic life through the National Action Plan for Integration which was adopted in 19 January 2010 ", - "values": [ - "Migrants" - ] - }, - { - "text": "Continue consolidating the Equality Ombudsman's mandate in combating discrimination", - "values": [ - "National Human Rights Institution" - ] - }, - { - "text": "Continue efforts for the implementation of the road map aimed at reducing maternal mortality by half by 2015, and by 80 per cent by 2020 ", - "values": [ - "Right to health", - "Women's rights" - ] - }, - { - "text": "Incorporate human rights consideration into poverty alleviation projects", - "values": [ - "Poverty" - ] - }, - { - "text": "Allow the United Nations humanitarian agencies full and unconditional countrywide humanitarian access", - "values": [ - "Other" - ] - }, - { - "text": "Take further measures to implement the overarching and setting-specific recommendations of the UN Study on violence against children.", - "values": [ - "Rights of the Child" - ] - }, - { - "text": "Prevent commercial sexual exploitation of children and ensure additional protective measures for all victims of trafficking ", - "values": [ - "Labour", - "Rights of the Child", - "Trafficking" - ] - }, - { - "text": "Incorporate within the Public Prosecution Service\u2019s criminality observatory and in the statistical yearbook of the national police detailed data on acts of violence and discrimination against lesbian, gay, bisexual, transgender and intersex persons", - "values": [ - "Sexual Orientation and Gender Identity" - ] - }, - { - "text": "Consider setting up an independent monitoring mechanism to carry out investigations into allegations of excessive use of force and police misconduct towards vulnerable groups.", - "values": [ - "Human rights violations by state agents" - ] - }, - { - "text": "Continue to cooperate and seek technical assistance, if and where necessary, in improving democracy and ensuring the protection and promotion of the human rights of all Cambodians ", - "values": [ - "Technical assistance and cooperation" - ] - }, - { - "text": "Encourage the growth and sustainable development through stressing the green economy", - "values": [ - "Development", - "Environment" - ] - }, - { - "text": "Accede to OP-CRC-SC ", - "values": [ - "International instruments", - "Rights of the Child", - "Trafficking" - ] - }, - { - "text": "Fully promote the protection of human rights in the country.", - "values": [ - "General" - ] - }, - { - "text": "Strengthen prevention efforts, including through legislative measures aimed against domestic violence and ensure that all professionals working with victims of domestic violence receive regular and comprehensive training", - "values": [ - "Rights of the Child", - "Women's rights" - ] - }, - { - "text": "Continue implementing solidarity programmes and initiatives aimed at guaranteeing the enjoyment of the right to quality health services by the people ", - "values": [ - "Right to health" - ] - }, - { - "text": "Take concrete measures to speed up the process under the National Legislation Programme 2015-2019", - "values": [ - "General" - ] - }, - { - "text": "Review the compliance of national legislation with the provisions of ICCPR", - "values": [ - "CP rights - general", - "International instruments" - ] - }, - { - "text": "Implement fully recommendations made by the United Nations mandate holders, including through the immediate release of all political prisoners and by ending impunity, thus bringing perpetrators of human rights violations to justice", - "values": [ - "Impunity", - "Special procedures" - ] - }, - { - "text": "Take verifiable measures to improve prison conditions", - "values": [ - "Detention" - ] - }, - { - "text": "Withdraw the general reservation to CEDAW, thus facilitating the elimination of all forms of discrimination against women", - "values": [ - "International instruments", - "Women's rights" - ] - }, - { - "text": "Adopt a new Act on National Minorities in order to precisely stipulate the rights and obligations of persons belonging to national minorities in Lithuania in accordance with its international obligations, notably the Council of Europe's Framework Convention for the Protection of National Minorities", - "values": [ - "Minorities" - ] - }, - { - "text": "Provide the necessary status to languages of minorities and create conditions where minorities do not fear of discrimination", - "values": [ - "Minorities", - "Racial discrimination" - ] - }, - { - "text": "Take measures to strengthen the independence of the judiciary, to implement existing judicial procedures and to tackle the issue of corruption in its courts", - "values": [ - "Justice" - ] - }, - { - "text": "Raise the age of marriage to 18 and above in order to reduce on the problems of early marriages", - "values": [ - "Rights of the Child" - ] - }, - { - "text": "Introduce as quickly as possible a de jure moratorium on executions ", - "values": [ - "Death penalty" - ] - }, - { - "text": "Strengthen the fight against all forms of child labour by investigating cases of the worst forms of child labour, bringing alleged perpetrators to justice and ensuring that victims are adequately protected, assisted and compensated", - "values": [ - "Labour", - "Rights of the Child" - ] - }, - { - "text": "Continue efforts to strengthen combating trafficking in women and girls and making trafficking in and sexual exploitation of women and children a criminal offence", - "values": [ - "Rights of the Child", - "Trafficking", - "Women's rights" - ] - }, - { - "text": "Continue to develop and implement its adaptation strategies with assistance from the international community ", - "values": [ - "Technical assistance and cooperation" - ] - }, - { - "text": "Encourage the participation of social organizations in the dissemination of international human rights instruments, with a view to increasing public awareness of human rights ", - "values": [ - "Human rights education and training", - "International instruments" - ] - }, - { - "text": "Seek the necessary assistance from the international community that would enable Togo to meet the multiple challenges that it faces, with a view to improving the general living conditions of its population ", - "values": [ - "Technical assistance and cooperation" - ] - }, - { - "text": "Adhere to the Hague Convention on Protection of Children and Co- operation in respect of Intercountry Adoption", - "values": [ - "International instruments", - "Rights of the Child" - ] - }, - { - "text": "Become a party to the UNESCO Convention against Discrimination in Education", - "values": [ - "International instruments", - "Right to education" - ] - }, - { - "text": "Inform the international community of the conditions of the G11 and other political, media and religious detainees and grant access to them by an international organization to ascertain their conditions, and make clear the charges against them and the legal process to which they will be subjected", - "values": [ - "Detention" - ] - }, - { - "text": "Continue efforts to ensure men and women the same legal rights in all areas of legislation, including those related to marriage and requirements to acquire Monegasque nationality.", - "values": [ - "Statelessness and the right to nationality", - "Women's rights" - ] - }, - { - "text": "Continue to work closely with ASEAN to build on the mechanisms of the ASEAN Intergovernmental Commission on Human Rights (AICHR) and the ASEAN Commission on the Promotion and Protection of the Rights of Women and Children (ACWC) to promote and protect the rights of the peoples of ASEAN", - "values": [ - "Rights of the Child", - "Women's rights" - ] - }, - { - "text": "Review and assess how the rights of persons with disabilities, including mental disabilities, are guaranteed within prisons and establish a comprehensive training programme for law enforcement and prison staff to ensure effective implementation of the rights of persons with disabilities in detention facilities, including persons with mental disabilities", - "values": [ - "Detention", - "Disabilities", - "Right to health" - ] - }, - { - "text": "Take the necessary measures to address the situation of continuing discrimination against migrants, particularly in employment, health care and housing, and the reported increase in hostility towards refugees and asylum seekers, as well as the opposition to the opening of new reception centres, in line with its international obligations", - "values": [ - "Asylum-seekers - refugees", - "International instruments", - "Migrants", - "Minorities", - "Racial discrimination" - ] - }, - { - "text": "Establish an effective and inclusive process for following up on the recommendations resulting from the present review", - "values": [ - "UPR process" - ] - }, - { - "text": "Take the necessary measures to adopt and implement the Child Labour Action Plan and provide information on the results achieved", - "values": [ - "Labour", - "Rights of the Child" - ] - }, - { - "text": "Take further measures for the fulfilment of social, economic and cultural rights for all", - "values": [ - "ESC rights - general" - ] - }, - { - "text": "Adopt concrete measures, including special measures, such as acceding to ILO Convention No. 169, so that the Mayan indigenous peoples and certain persons of African decent have access to the labour market, housing and health care as well as combating poverty, exclusion and the discrimination they suffer from. Design intercultural and bilingual educational programmes to promote the integration of these ethnic groups", - "values": [ - "Indigenous peoples", - "International instruments", - "Minorities" - ] - }, - { - "text": "Take immediate steps, including if necessary requesting relevant technical assistance in that regard, to ratify the International Covenant on Civil and Political Rights, the International Covenant on Economic, Social and Cultural Rights and the Convention against Torture", - "values": [ - "CP rights - general", - "ESC rights - general", - "International instruments", - "Technical assistance and cooperation", - "Torture and other CID treatment" - ] - }, - { - "text": "Strengthen its capacity-building programmes for judges and legal personnel on women\u2019s rights and violence against women", - "values": [ - "Human rights education and training", - "Women's rights" - ] - }, - { - "text": "Intensify training for its police and other enforcement authorities to improve capacities in dealing with the problem of gender violence and trafficking in women and girls ", - "values": [ - "Human rights education and training", - "Rights of the Child", - "Trafficking", - "Women's rights" - ] - }, - { - "text": "Strengthen existing law and practice to combat gender-based discrimination and sexual harassment, inter alia, with regard to labour", - "values": [ - "Labour", - "Sexual Orientation and Gender Identity" - ] - }, - { - "text": "Initiate a long-term awareness-raising campaign against domestic violence and its root causes among the general public as well as professionals such as medical doctors, judges and the police and monitor and evaluate regularly the implementation of the domestic violence law and policies in order to strengthen the remedies and legal protection available to victims of domestic violence", - "values": [ - "Human rights education and training", - "Rights of the Child", - "Women's rights" - ] - }, - { - "text": "Continue advancing the rights of persons with disabilities by increasing its financial assistance and developing regulation on minimum standards for the enjoyment of their human rights", - "values": [ - "Disabilities" - ] - }, - { - "text": "Repeal or amend Law 19/06/2016, which entered into force at the beginning of 2017, in order to guarantee the constitutionally enshrined human rights to freedom of the press and of freedom of opinion and expression, as both are necessary preconditions for a democratic and active society", - "values": [ - "Freedom of opinion and expression", - "Freedom of the press" - ] - }, - { - "text": "Reverse current practices regarding the rights of refugees, asylum seekers and migrant workers", - "values": [ - "Asylum-seekers - refugees", - "Labour", - "Migrants" - ] - }, - { - "text": "Take further steps to ensure the economic rights of migrant workers and domestic workers by implementing minimum wages and regulated working hours for all work categories", - "values": [ - "Labour", - "Migrants" - ] - }, - { - "text": "Consider taking all necessary steps to introduce a de jure moratorium on capital executions with a view to fully abolish the death penalty", - "values": [ - "Death penalty" - ] - }, - { - "text": "Continue to strengthen efforts to combat discrimination against vulnerable groups, in accordance with the recommendations of the Committee against Torture ", - "values": [ - "Minorities", - "Treaty bodies" - ] - }, - { - "text": "Better protect women and children from violence, including by: reviewing child protection systems, amending the Criminal Code to include a provision on marital rape, and prosecuting all alleged perpetrators of sexual and domestic violence", - "values": [ - "Rights of the Child", - "Women's rights" - ] - }, - { - "text": "Conduct follow-up activities related to the implementation of national legislation and awareness campaigns aimed at reducing the number of cases of domestic violence", - "values": [ - "Rights of the Child", - "Women's rights" - ] - }, - { - "text": "Continue to enhance the protection and the rights of women and children", - "values": [ - "Rights of the Child", - "Women's rights" - ] - }, - { - "text": "Draft a national reconciliation and pardon strategy by setting up an efficient mechanism to fight against impunity ", - "values": [ - "Impunity", - "Justice" - ] - }, - { - "text": "Continue strengthening women's participation in society and in decision-making processes ", - "values": [ - "Women's rights" - ] - }, - { - "text": "Provide budgetary and legal support to the Ombudsman for Human Rights in order to ensure its effectiveness and institutional independence", - "values": [ - "National Human Rights Institution" - ] - }, - { - "text": "Continue implementing actions aimed at reducing maternal mortality from indirect causes ", - "values": [ - "Right to health", - "Women's rights" - ] - }, - { - "text": "Adopt a law to fight against discrimination, to prevent and punish discrimination in all its forms including discrimination on sexual orientation and gender identity", - "values": [ - "Sexual Orientation and Gender Identity" - ] - }, - { - "text": "Continue to take concrete measures to prevent violence and sexual offences against women and children and to ensure the prosecution of perpetrators of such violence", - "values": [ - "Rights of the Child", - "Women's rights" - ] - }, - { - "text": "Implement a system to counter domestic violence against women, and ensure that the perpetrators of such violence are prosecuted and appropriately punished ", - "values": [ - "Women's rights" - ] - }, - { - "text": "Prioritize implementation of a coordinated national and local disaster risk preparedness plan of action", - "values": [ - "Environment" - ] - }, - { - "text": "Continue and strengthen its relationship of cooperation with the Office of the United Nations High Commissioner for Human Rights in order to develop an instrument for follow-up to the recommendations of the system\u2019s mechanisms", - "values": [ - "Special procedures", - "Treaty bodies", - "UPR process" - ] - }, - { - "text": "Continue its efforts to finalize the national plan for the comprehensive protection of children and adolescents (2015-2019)", - "values": [ - "Rights of the Child" - ] - }, - { - "text": "Take effective measures to implement the National Plan of Action (NPA) adopted in 1996, to combat and prevent Child Prostitution, Child Pornography and also trafficking of children for commercial sexual exploitation", - "values": [ - "Labour", - "Rights of the Child", - "Trafficking" - ] - }, - { - "text": "Reconsider its reservations to the Convention on the Rights of the Child", - "values": [ - "Rights of the Child" - ] - }, - { - "text": "Continue efforts through the Alliance of Civilizations and other initiatives ", - "values": [ - "Other" - ] - }, - { - "text": "Envisaged legislative and regulatory reforms with regard to prison reform to modernize custodial care in keeping with applicable international standards, will be continued", - "values": [ - "Detention" - ] - }, - { - "text": "Effectively guarantee the exercise of freedom of expression, association and peaceful assembly and, in this context, ensure that the law regulating demonstrations in Egypt complies with its commitments under the Covenant on Civil and Political Rights", - "values": [ - "Freedom of association and peaceful assembly", - "Freedom of opinion and expression", - "International instruments" - ] - }, - { - "text": "Continue with the implementation of human rights in order to achieve a dignified standard of living and work with all movements, social organizations and civil society", - "values": [ - "Civil society" - ] - }, - { - "text": "Improve access to justice of its citizens by reviewing legal aid procedures and the establishment of new courts ", - "values": [ - "Justice" - ] - }, - { - "text": "Ensure the effective implementation of Order 092 of the Constitutional Court, which referred 183 cases of sexual violence against women to the Attorney-General's Office, the incorporation of Law 1257 on violence against women into the Criminal Code, and create an interinstitutional system for monitoring of the implementation of Security Council resolution 1325 ", - "values": [ - "Women's rights" - ] - }, - { - "text": "Consider revising the Married Persons Equality Act of 1996 in a way that eliminates discriminatory provisions against women, including those affecting marriage, land ownership and inheritance rights", - "values": [ - "Women's rights" - ] - }, - { - "text": "Accede to the Second Optional Protocol to ICCPR aiming at the abolition of the death penalty", - "values": [ - "Death penalty", - "International instruments" - ] - }, - { - "text": "Redouble its efforts to improve the socioeconomic situation of the Maori by combating structural discrimination, in particular by increasing the level of education of Maori children ", - "values": [ - "ESC rights - general", - "Indigenous peoples", - "Right to education", - "Rights of the Child" - ] - }, - { - "text": "Prohibit all forms of corporal punishment of children in any setting including the home and as a sentence of the courts ", - "values": [ - "Rights of the Child", - "Torture and other CID treatment" - ] - }, - { - "text": "Continue efforts to counter insecurity and drug trafficking using the most effective measures including the improvement of the police force and the judicial system", - "values": [ - "Public security" - ] - }, - { - "text": "Continue measures to strengthen national institutions for the protection and promotion of human rights and freedoms ", - "values": [ - "General" - ] - }, - { - "text": "Strengthen the 2009-2012 action plan put in place by the Government to promote equality and prevent ethnic discrimination against immigrants, their children and national minorities, by supplementary measures to remedy the causes of social disparities of those affected ", - "values": [ - "Migrants", - "Minorities", - "Racial discrimination", - "Rights of the Child" - ] - }, - { - "text": "Continue its programmes and interventions to reduce the HIV/AIDS infections among its people with the support of the World Health Organization (WHO) and other international organizations", - "values": [ - "HIV - Aids" - ] - }, - { - "text": "Promote the rights of temporary workers to family reunification (in conformity with the recommendation on racism and intolerance of the European Commission) in all applicable legislation, including law 9/2012", - "values": [ - "Labour" - ] - }, - { - "text": "Study the possibility to repeal the death penalty", - "values": [ - "Death penalty" - ] - }, - { - "text": "Eliminate all forms of sexual exploitation and violence, including domestic violence, with a view to avoid trafficking of persons, and implement legal measures to investigate complaints, bring perpetrators of sexual crimes and violence to justice and punish them ", - "values": [ - "Rights of the Child", - "Trafficking", - "Women's rights" - ] - }, - { - "text": "Ratify CRPD and its Optional Protocol and harmonize its national legislation with the provisions of these instruments.", - "values": [ - "Disabilities", - "International instruments" - ] - }, - { - "text": "Implement its vast programme launched for human rights promotion, with the support of the international community.", - "values": [ - "Technical assistance and cooperation" - ] - }, - { - "text": "Enforce Djibouti's existing laws to prosecute perpetrators of FGM ", - "values": [ - "Rights of the Child", - "Torture and other CID treatment", - "Women's rights" - ] - }, - { - "text": "Continue to expand support and care services for victims of all forms of gender-based violence in particular at the regional level", - "values": [ - "Women's rights" - ] - }, - { - "text": "Strengthen national policies aimed at protecting children and youth against violence, abuses and sexual exploitation ", - "values": [ - "Rights of the Child" - ] - }, - { - "text": "Initiate an inclusive dialogue which would guarantee minority representatives a fair joint-decision power on the basis of the four previous proposals (APRC Expert Majority Report, All Party Representative Committee Report, Proposals for Constitutional Reforms, and Mangala Report)", - "values": [ - "Minorities" - ] - }, - { - "text": "Adapt national legislation to bring it into line with the principles of equality and non-discrimination", - "values": [ - "Other" - ] - }, - { - "text": "Continue to take sustained measures to incorporate elements of human rights education in the training of law enforcement agencies", - "values": [ - "Human rights education and training" - ] - }, - { - "text": "Extend to all parts of the country the training given to the police, prosecutors and judges to effectively investigate, prosecute and punish hate crimes", - "values": [ - "Racial discrimination" - ] - }, - { - "text": "Continue and intensify efforts for further promotion and protection of economic, social and cultural rights, including the right to development, for better realization of the Millennium Development Goals.", - "values": [ - "Development", - "ESC rights - general" - ] - }, - { - "text": "Address efficiently and effectively the need for provisions for the mandatory reporting of all forms of abuse and the removal of a statutory limitation for sexual offences ", - "values": [ - "Rights of the Child", - "Women's rights" - ] - }, - { - "text": "Remove impermissible barriers to free assembly and expression, including those prohibiting demonstrations in Algiers ", - "values": [ - "Freedom of association and peaceful assembly", - "Freedom of opinion and expression" - ] - }, - { - "text": "Continue awareness-raising and advocacy to end female genital mutilation in practice", - "values": [ - "Human rights education and training", - "Rights of the Child", - "Torture and other CID treatment", - "Women's rights" - ] - }, - { - "text": "Sign and ratify the Convention on the Rights of Persons with Disabilities", - "values": [ - "Disabilities", - "International instruments" - ] - }, - { - "text": "Continue cooperating with the United Nations and other international organisations and share good experience and practices with other countries in order to overcome the remaining challenges", - "values": [ - "Technical assistance and cooperation" - ] - }, - { - "text": "Revise the law on the press and publications to reduce restrictions on the information on the Internet", - "values": [ - "Freedom of the press" - ] - }, - { - "text": "Legislate to remove the death penalty from its statute and commute to custodial sentences those death sentences that have already been handed down", - "values": [ - "Death penalty" - ] - }, - { - "text": "Reinforce the regulatory and institutional measures of the Ombudsman, in conformity with the Paris Principles", - "values": [ - "National Human Rights Institution" - ] - }, - { - "text": "Continue the measures implemented to ensure the right to water and sanitation within the framework of General Assembly resolution 64/292", - "values": [ - "Right to water and sanitation" - ] - }, - { - "text": "Formulate and implement a public policy for persons with disabilities with a view to protect them from violence and discrimination, and to facilitate their social integration", - "values": [ - "Disabilities" - ] - }, - { - "text": "Repeal "Decrees of exception"", - "values": [ - "Impunity" - ] - }, - { - "text": "Ratify the Convention against Torture, as previously recommended", - "values": [ - "International instruments", - "Torture and other CID treatment", - "UPR process" - ] - }, - { - "text": "Step up efforts to improve the overall quality of education for the children including by providing increased budget allocations for the education sector.", - "values": [ - "Right to education", - "Rights of the Child" - ] - }, - { - "text": "Ratify the Council of Europe Convention on Preventing and Combating Violence against Women and Domestic Violence", - "values": [ - "International instruments", - "Rights of the Child", - "Women's rights" - ] - }, - { - "text": "Continue to enhance women's rights and intensify awareness campaigns to combat stereotypes against women ", - "values": [ - "Human rights education and training", - "Women's rights" - ] - }, - { - "text": "Transpose these international instruments, the International Covenant on Civil and Political Rights and its first Optional Protocol, the Convention against Torture and Other Cruel, Inhuman or Degrading Treatment or Punishment and its Optional Protocol, the Convention on the Elimination of All Forms of Discrimination against Women, into domestic law strengthening among others legislative protection from gender violence and all forms of discrimination, particularly against women, children and on the ground of sexual orientation", - "values": [ - "International instruments", - "Rights of the Child", - "Sexual Orientation and Gender Identity", - "Women's rights" - ] - }, - { - "text": "Take effective measures to curb racial hatred and discrimination against the Roma population", - "values": [ - "Minorities", - "Racial discrimination" - ] - }, - { - "text": "Continue efforts to resolve the problems of internally displaced persons, and take all measures necessary to implement the Government's National Reconciliation and Emergency Social and Economic Recovery Strategy and the National Cohesion and Integration Act of 2008 ", - "values": [ - "Internally displaced persons" - ] - }, - { - "text": "Ensure the functioning juvenile justice system throughout the country and raise the age of criminal responsibility that comply with the acceptable international standards ", - "values": [ - "Justice", - "Rights of the Child" - ] - }, - { - "text": "Implement effective means to ensure greater public awareness of the issues of domestic violence and gender discrimination and encourage greater involvement of Government agencies and civil society in efforts to address these issues.", - "values": [ - "Civil society", - "Human rights education and training", - "Women's rights" - ] - }, - { - "text": "Implement the recommendations made by the United Nations Special Representative of the Secretary General on Sexual Violence in Conflict, during her visit to Colombia in May 2012 ", - "values": [ - "International humanitarian law", - "Rights of the Child", - "Special procedures", - "Women's rights" - ] - }, - { - "text": "Guarantee the exercise of freedom of religion or reach an agreement authorizing the opening of places of worship for people who are neither Muslims nor Christians ", - "values": [ - "Freedom of religion and belief" - ] - }, - { - "text": "Carry out a review of criteria for prosecuting cases of rape and sexual assault, to ensure that lack of consent, not only the use of force, is given adequate consideration when bringing cases for prosecution", - "values": [ - "Justice", - "Women's rights" - ] - }, - { - "text": "Repeal or revise the "Protection of Race and Religion" laws and Section 377 of the 1861 Penal Code to ensure the rights of women, religious minorities and the lesbian, gay, bisexual, transgender and intersex community are protected", - "values": [ - "Freedom of religion and belief", - "Minorities", - "Racial discrimination", - "Sexual Orientation and Gender Identity", - "Women's rights" - ] - }, - { - "text": "Take more effective steps to eradicate cases of police misconduct including by establishing independent body to investigate police misconduct ", - "values": [ - "Human rights violations by state agents" - ] - }, - { - "text": "Persevere in its efforts to protect human life from conception until natural demise ", - "values": [ - "Other" - ] - }, - { - "text": "Adopt a law on a National Preventive Mechanism and enact it as soon as possible", - "values": [ - "Detention", - "Torture and other CID treatment" - ] - }, - { - "text": "Continue its sustainable efforts and share its experiences and best practices in the area of poverty reduction with other developing countries, especially through the programme of South-South cooperation, along with its participation in international efforts to promote the right to development.", - "values": [ - "Poverty" - ] - }, - { - "text": "Continue its efforts in order to counter illiteracy", - "values": [ - "Right to education" - ] - }, - { - "text": "Undertake relevant safe measures on migrants trying to reach Australian borders according to the International Convention on the Protection of the Rights of All Migrant Workers and Members of Their Families", - "values": [ - "International instruments", - "Labour", - "Migrants" - ] - }, - { - "text": "Further develop, exponentially and progressively, free and compulsory quality education for all children up to 15 years of age", - "values": [ - "Right to education", - "Rights of the Child" - ] - }, - { - "text": "Ratify the Convention on the Rights of Persons with Disabilities as soon as possible", - "values": [ - "Disabilities", - "International instruments" - ] - }, - { - "text": "Continue to implement a national gender equality policy by strengthening legislation for protection and non-discrimination, as well as equality ", - "values": [ - "Women's rights" - ] - }, - { - "text": "Eliminate any discriminatory norms against women from its legislation.", - "values": [ - "Women's rights" - ] - }, - { - "text": "Take into full consideration the recommendations made by the United Nations human rights mechanisms on hate speech", - "values": [ - "Racial discrimination" - ] - }, - { - "text": "That the other States of Micronesia, including Yap, Chuuk and Pohnpei, introduce legislation criminalizing domestic violence, to ensure that there is a consistent approach in protecting families and criminalizing domestic violence across the whole of the Federated States of Micronesia", - "values": [ - "Rights of the Child", - "Women's rights" - ] - }, - { - "text": "Invite the special procedures mandate holders who have requested visits \n\n", - "values": [ - "Special procedures" - ] - }, - { - "text": "Strengthen current measures to ensure that primary education is free and compulsory for all children", - "values": [ - "Right to education", - "Rights of the Child" - ] - }, - { - "text": "Put an end to all curbs on freedom of expression and association", - "values": [ - "Freedom of association and peaceful assembly", - "Freedom of opinion and expression" - ] - }, - { - "text": "Continue efforts made to put an end to discrimination against women as well as to all forms of violence against women, including domestic violence, and to accelerate ratification of the Istanbul Convention", - "values": [ - "International instruments", - "Rights of the Child", - "Women's rights" - ] - }, - { - "text": "Give yearly briefings to the Human Rights Council on the follow-up of the recommendations of this universal periodic review session as a voluntary measure", - "values": [ - "UPR process" - ] - }, - { - "text": "Continue its policy of promoting and protecting all rights of the members of recognized religious minorities, as an important step to provide cultural diversity in society and create opportunities for those minorities to preserve their identities and, to that end, further ensure their political representation and promote their greater involvement in the planning and implementation of various projects aimed at providing financial assistance for their educational and cultural needs", - "values": [ - "Freedom of religion and belief", - "Minorities" - ] - }, - { - "text": "Expeditiously take the actions necessary to combat the negative phenomenon of violence against children, and to provide efficient rehabilitation and reintegration schemes for victims", - "values": [ - "Rights of the Child" - ] - }, - { - "text": "Continue efforts, despite constraints, with the assistance and cooperation of the international community to improve the situation of the justice sector, the police and prisons", - "values": [ - "Detention", - "Justice", - "Technical assistance and cooperation" - ] - }, - { - "text": "Respond effectively to all forms of violence against women including by providing law enforcement official with gender training", - "values": [ - "Human rights education and training", - "Women's rights" - ] - }, - { - "text": "Increase the monitoring of extremist organizations that act in a discriminatory manner, take effective measures against them, and criminalize and prosecute the financing and participation in those organizations ", - "values": [ - "Racial discrimination" - ] - }, - { - "text": "Adopt measures aimed at protecting persons belonging to minority groups, including internally displaced persons belonging to minorities", - "values": [ - "Internally displaced persons", - "Minorities" - ] - }, - { - "text": "Reform customary law to eliminate restrictions on women's access to property", - "values": [ - "Women's rights" - ] - }, - { - "text": "Abolish criminal sanctions for media offences", - "values": [ - "Freedom of the press" - ] - }, - { - "text": "Continue endowing its National Commission for Women Affairs with public policy making and decision making powers", - "values": [ - "Women's rights" - ] - }, - { - "text": "Adopt legislative and other measures that promote the enjoyment of freedom of expression ", - "values": [ - "Freedom of opinion and expression" - ] - }, - { - "text": "Ensure that Human rights violations by police and prison officials, particularly cases of torture and other ill-treatment, are investigated and do not go unpunished ", - "values": [ - "Human rights violations by state agents", - "Torture and other CID treatment" - ] - }, - { - "text": "Strengthen mechanisms to integrate migrant children in the school system", - "values": [ - "Migrants", - "Right to education", - "Rights of the Child" - ] - }, - { - "text": "Ensure that victims of domestic, gender-based and sexual violence are able to report incidents and press charges without fear of adverse consequences in case of losing in court", - "values": [ - "Rights of the Child", - "Women's rights" - ] - }, - { - "text": "Establish an impartial judicial system, including by: establishing an anti-corruption court, empowering anti-corruption institutions (such as the national anti-corruption bureau of Ukraine), and eliminating the potential for political use of the judiciary and prosecutor general\u2019s office", - "values": [ - "Corruption", - "Justice" - ] - }, - { - "text": "Effectively implement the principle of non-discrimination, including on grounds of sexual orientation", - "values": [ - "Sexual Orientation and Gender Identity" - ] - }, - { - "text": "Take steps to end intimidation and abuse of journalists by government officials and hold all perpetrators of violence against and harassment of journalists fully accountable", - "values": [ - "Freedom of the press" - ] - }, - { - "text": "Condemn all forms of racism, including in political speech and on the Internet, and prosecute those involved", - "values": [ - "Racial discrimination" - ] - }, - { - "text": "Enact a federal crime of torture, consistent with the Convention, and also encompassing acts described as - enhanced interrogation techniques", - "values": [ - "International instruments", - "Torture and other CID treatment" - ] - }, - { - "text": "Implement the Roma Strategy and Action Plans, in compliance with the Strategy and the Decade of Roma Inclusion 2005-2015.", - "values": [ - "Minorities" - ] - }, - { - "text": "Continue to strengthen the investigative policies and strategies and the correct application of appropriate penalties for violations of human rights", - "values": [ - "General" - ] - }, - { - "text": "Continue progressively improve domestic legislation in accordance with the international obligations of Kazakhstan", - "values": [ - "General" - ] - }, - { - "text": "Establish a national human rights institution in conformity with the Paris Principles, and extend a standing invitation to the Council mandate holders", - "values": [ - "National Human Rights Institution", - "Special procedures" - ] - }, - { - "text": "Approve immediately the bill to reform the Penal Code to include the definition of the crimes of genocide, torture and enforced disappearance", - "values": [ - "Enforced disappearances", - "Justice", - "Torture and other CID treatment" - ] - }, - { - "text": "Increase efforts to ensure the independence and transparency of the judiciary", - "values": [ - "Justice" - ] - }, - { - "text": "Review seriously all the comments and recommendations made during the review and clearly indicate in due time which recommendations it accepts and how it plans to implement them", - "values": [ - "UPR process" - ] - }, - { - "text": "Respect its international obligations pursuant to the United Nations human rights treaties to which it is a party ", - "values": [ - "International instruments" - ] - }, - { - "text": "Continue national efforts to address the prevalence of HIV and AIDS", - "values": [ - "HIV - Aids" - ] - }, - { - "text": "Strengthen protection measures for human rights defenders", - "values": [ - "Human rights defenders" - ] - }, - { - "text": "Pay particular attention to protecting from discrimination and treating appropriately older persons in the society", - "values": [ - "Other" - ] - }, - { - "text": "Increase efforts to end impunity of those responsible for forced displacement, and intensify security measures for the communities of internally displaced persons, in particular by protecting their property rights.", - "values": [ - "Impunity", - "Internally displaced persons" - ] - }, - { - "text": "Consider revising the law on customary marriage with a view to guaranteeing equal succession rights to women, and establish a minimum age of 18 years for marriage ", - "values": [ - "Rights of the Child", - "Women's rights" - ] - }, - { - "text": "Further strengthen the capacity of the Ethiopian Human Rights Commission (EHRC)", - "values": [ - "National Human Rights Institution" - ] - }, - { - "text": "Continue to work on the elaboration of the National Human Rights Action Plans ", - "values": [ - "General" - ] - }, - { - "text": "Further strengthen measures to promote health care, the quality of education and job creation for the people living in rural and remote areas ", - "values": [ - "Development", - "Right to education", - "Right to health" - ] - }, - { - "text": "Consider ratifying ILO Convention No 2. on Unemployment ", - "values": [ - "International instruments", - "Labour" - ] - }, - { - "text": "Revise the Migration Law of 1958 so that federal initiatives do not penalize foreign migrants in an irregular situation ", - "values": [ - "Migrants" - ] - }, - { - "text": "Consider ratifying the Convention relating to the Status of Stateless Persons of 1954 and the Convention on the Reduction of Statelessness of 1961", - "values": [ - "International instruments", - "Statelessness and the right to nationality" - ] - }, - { - "text": "Reinforce national legislation prohibiting trafficking in persons, in particular children.", - "values": [ - "Rights of the Child", - "Trafficking" - ] - }, - { - "text": "Continue its efforts to protect the environment, including through implementation of the environment act adopted in July 2008, and envisage sharing this experience with concerned countries", - "values": [ - "Environment" - ] - }, - { - "text": "Declassify State secret information on the death penalty", - "values": [ - "Death penalty" - ] - }, - { - "text": "Eradicate all limitations and restrictions on freedom of religion, including the revision of the school curriculum to reflect the freedom of religion of all children", - "values": [ - "Freedom of religion and belief", - "Rights of the Child" - ] - }, - { - "text": "Allow access to international funding so that human rights defenders may continue to carry out their legitimate work ", - "values": [ - "Human rights defenders" - ] - }, - { - "text": "Ensure full and equal access to modern contraceptives throughout its territory, including in peri-urban, rural and indigenous territories", - "values": [ - "Indigenous peoples", - "Right to health" - ] - }, - { - "text": "Develop and implement a national action plan for the implementation of the activities of the International Decade for People of African Descent", - "values": [ - "Minorities" - ] - }, - { - "text": "Redouble its efforts in finalizing the Draft Law on the Rights of Persons with Disabilities to guarantee the promotion and protection of rights of disabled persons, in particular to ensure their participation, to increase their employment, and to enhance their rights to education", - "values": [ - "Disabilities" - ] - }, - { - "text": "Put in place measures that guarantee the integrity and protection of prisoners and detainees, particularly vis-à-vis other prisoners, in the light of cases of rapes that have led to an increase of HIV positive prison population prevalence", - "values": [ - "Detention", - "HIV - Aids" - ] - }, - { - "text": "Continue to improve the Cuban political system, upholding the values of the Cuban society and the national unity, and promoting the strengthening of its democracy", - "values": [ - "General" - ] - }, - { - "text": "Continue implementation of the Government\u2019s \u201cBasic Plan on Measures against Child Sexual Exploitation\u201c, and supporting and rehabilitation of victims", - "values": [ - "Rights of the Child" - ] - }, - { - "text": "Enact a media law, in accordance with its international human rights obligations, and continue to professionalize its judiciary, pursue justice in cases of murdered journalists and ensure that the security forces and criminal courts do not punish journalists for controversial reporting, where such punishment has occurred, it is hoped that President Karzai will exercise his right to issue pardon", - "values": [ - "Freedom of the press", - "International instruments" - ] - }, - { - "text": "Prevent and punish violence against women and children", - "values": [ - "Rights of the Child", - "Women's rights" - ] - }, - { - "text": "End discrimination against people with intellectual and psychological disabilities and implement tools to encourage their employment", - "values": [ - "Disabilities", - "Labour" - ] - }, - { - "text": "Finalise the revision of child act in order to set up coordination mechanism related to cases of child victims trafficking", - "values": [ - "Rights of the Child", - "Trafficking" - ] - }, - { - "text": "Ensure the right to equal and satisfactory working conditions, particularly to domestic workers ", - "values": [ - "Labour" - ] - }, - { - "text": "Ethiopia was committed to further strengthening freedom of peaceful assembly in line with the Constitution and obligations of the country.", - "values": [ - "Freedom of association and peaceful assembly" - ] - }, - { - "text": "Fully support the institution of the family", - "values": [ - "Other" - ] - }, - { - "text": "Ensure that the police and the armed forces respect human rights and prevent human rights violations, in particular ill-treatment and excessive use of force, by carrying out trainings and strengthening civilian control of security forces", - "values": [ - "Human rights education and training", - "Human rights violations by state agents" - ] - }, - { - "text": "Establish and implement laws and public health policy aimed at eradicating female genital mutilation ", - "values": [ - "Right to health", - "Rights of the Child", - "Torture and other CID treatment", - "Women's rights" - ] - }, - { - "text": "Step up efforts in providing equal access to health services to its people, particularly to the minority and indigenous peoples in the country ", - "values": [ - "Indigenous peoples", - "Minorities", - "Right to health" - ] - }, - { - "text": "Take further steps to ensure equal treatment and non-discrimination against women as well as to expand representation of women in decision-making positions ", - "values": [ - "Women's rights" - ] - }, - { - "text": "Continue its efforts to ensure the right to access to information and freedom of expression by adopting regulations that would be in accordance with both the South African Constitution and the international treaties and commitments of South Africa", - "values": [ - "Freedom of opinion and expression", - "International instruments" - ] - }, - { - "text": "Take the necessary measures to ensure conditions of detention in prisons in conformity with the international standards ", - "values": [ - "Detention" - ] - }, - { - "text": "Put an end to all practices of corporal punishment that takes place in educational facilities and detention centres ", - "values": [ - "Detention", - "Right to education", - "Torture and other CID treatment" - ] - }, - { - "text": "Provide legal protection for equality of opportunity in employment for all of its citizens, particularly for persons with disabilities", - "values": [ - "Development", - "Disabilities" - ] - }, - { - "text": "Comply with the letter and spirit of the representations in its national report and ensure that civil society groups are able to operate without harassment or other forms of intimidation", - "values": [ - "Civil society" - ] - }, - { - "text": "Suspend the application of the death penalty and definitely abolish it", - "values": [ - "Death penalty" - ] - }, - { - "text": "Set up mechanisms to implement the national child act, which incorporates the Convention on the Rights of the Child and which is considered a positive step that grants applicable rights to Kenyan children ", - "values": [ - "International instruments", - "Rights of the Child" - ] - }, - { - "text": "Consider strengthening dialogue and cooperation by issuing a standing invitation to all special procedures of the Council.", - "values": [ - "Special procedures" - ] - }, - { - "text": "Ratify the CAT and its Optional Protocol", - "values": [ - "Detention", - "International instruments", - "Torture and other CID treatment" - ] - }, - { - "text": "Issue a standing invitation to the special procedures ", - "values": [ - "Special procedures" - ] - }, - { - "text": "Strengthen, through adequate sanctions and awareness-raising campaigns, the fight against gender violence. In this regard, consider the adoption of measures, such as quotas, incentives and/or preferential treatment, that promote the incorporation of women into education and the economy, both in the public and private spheres", - "values": [ - "Human rights education and training", - "Women's rights" - ] - }, - { - "text": "Fully comply with the recommendations of the Committee against Torture and do its utmost to ensure that the security forces operate within the framework of the rule of law.", - "values": [ - "Public security", - "Torture and other CID treatment", - "Treaty bodies" - ] - }, - { - "text": "Strengthen suitable mechanisms for the identification of situations of violence against persons with disabilities", - "values": [ - "Disabilities" - ] - }, - { - "text": "Provide adequate resources as well as professional and human rights training to the judiciary and the police forces", - "values": [ - "Human rights education and training" - ] - }, - { - "text": "Continue working towards the ratification of existing human rights treaties", - "values": [ - "International instruments" - ] - }, - { - "text": "Continue efforts to ensure the effective implementation of the Children\u2019s Code to guarantee that those cases of ritual infanticide, sexual child abuse, trafficking in children and early marriage are prosecuted and sanctioned", - "values": [ - "Rights of the Child", - "Trafficking" - ] - }, - { - "text": "Ratify the Convention on the Protection of the Rights of All Migrant Workers and Members of Their Families ", - "values": [ - "International instruments", - "Labour", - "Migrants" - ] - }, - { - "text": "Adopt new measures to strengthen the participation of women in the decision-making process ", - "values": [ - "Women's rights" - ] - }, - { - "text": "Prevent discrimination against and the stigmatization of women and girls who have been the victims of such crimes and acts of violence, so that they will not be accused of adultery and be treated as criminals ", - "values": [ - "Rights of the Child", - "Women's rights" - ] - }, - { - "text": "Build on its human rights and fundamental freedoms training through the elaboration of specific training programmes to prevent the abuse of power ", - "values": [ - "Human rights education and training" - ] - }, - { - "text": "Accept requests for visits by United Nations special procedures mandate holders, including the Special Rapporteur on freedom of religion or belief ", - "values": [ - "Freedom of religion and belief", - "Special procedures" - ] - }, - { - "text": "Strengthen the measures aimed at combating racially motivated crimes and violence ", - "values": [ - "Racial discrimination" - ] - }, - { - "text": "Seek the necessary assistance from the Office of the United Nations High Commissioner for Human Rights and other relevant United Nations bodies ", - "values": [ - "Technical assistance and cooperation" - ] - }, - { - "text": "Continue to formulate, implement and enhance public policies aimed at raising awareness of discrimination-related issues in society and ensure effective remedies to victims of discrimination and statelessness", - "values": [ - "Human rights education and training", - "Statelessness and the right to nationality" - ] - }, - { - "text": "Strengthen measures taken to combat trafficking in persons, in particular children and women ", - "values": [ - "Rights of the Child", - "Trafficking", - "Women's rights" - ] - }, - { - "text": "Pursue its efforts in facing the challenges identified in its national report, with special attention to combating human trafficking and discrimination and improving the situation of migrant workers as they represent an important section in the country ", - "values": [ - "Labour", - "Migrants", - "Trafficking" - ] - }, - { - "text": "Intensify efforts to fully eradicate female genital mutilation, also by promoting awareness-raising and educational activities particularly targeted at local community leaders and health workers", - "values": [ - "Human rights education and training", - "Rights of the Child", - "Torture and other CID treatment", - "Women's rights" - ] - }, - { - "text": "Continue maintaining close cooperation and coordination with the United Nations Country Team in the implementation of Zimbabwe United Nations Development Assistance Framework 2012-2015", - "values": [ - "Development" - ] - }, - { - "text": "While enquiring about the status of the legislative proposal aimed at punishing anyone who promotes homosexuality or any other deviance of a sexual nature in education establishment, recommended to withdraw it if it has not yet been done.", - "values": [ - "Sexual Orientation and Gender Identity" - ] - }, - { - "text": "Continue the efforts to facilitate the registration of births and create awareness of the importance of this procedure, which allows access to all other rights and basic services such as education and health", - "values": [ - "Right to education", - "Right to health", - "Rights of the Child", - "Statelessness and the right to nationality" - ] - }, - { - "text": "Withdraw its reservations to the International Covenant on Civil and Political Rights (ICCPR) ", - "values": [ - "CP rights - general", - "International instruments" - ] - }, - { - "text": "Continue to engage with OHCHR ", - "values": [ - "Technical assistance and cooperation" - ] - }, - { - "text": "With respect to the situation of the rights of Lesbian, Gay, Bisexual and Transgender people, adopt policy and legislative measures to establish a specific framework for the protection against discrimination based on sexual orientation, together with the suppression of penal provisions which criminalize sexual relations between consented adults of the same sex and launch public awareness-raising campaigns on this issue ", - "values": [ - "Sexual Orientation and Gender Identity" - ] - }, - { - "text": "Cooperate fully with the United Nations, the Human Rights Council and the special rapporteur on the Democratic People's Republic of Korea and allow access by the latter to the country", - "values": [ - "Special procedures" - ] - }, - { - "text": "Review its national laws and policies in order to ensure that surveillance of digital communications is consistent with its international human rights obligations and is conducted on the basis of a legal framework which is publicly accessible, clear, precise and non-discriminatory", - "values": [ - "International instruments", - "Privacy" - ] - }, - { - "text": "Ensure satisfactory prosecution of cases of gender-based violence, in particular by increasing the number of competent personnel working in the judiciary system and the Public Prosecutor's office to combat violence against women and girls and by implementing a national plan for the prevention of gender-based violence\n\n", - "values": [ - "Rights of the Child", - "Women's rights" - ] - }, - { - "text": "Ensure that detainees in pretrial detention are separated from persons convicted by final judgement", - "values": [ - "Detention" - ] - }, - { - "text": "Speed up the adoption of the national gender policy approved since 2011", - "values": [ - "Women's rights" - ] - }, - { - "text": "Review its national legislation with a view to eliminating discriminatory provisions based on a comprehensive list of grounds, including social status, gender and sexual orientation", - "values": [ - "Sexual Orientation and Gender Identity", - "Women's rights" - ] - }, - { - "text": "Continue to increase efforts to end discrimination against lesbian, gay, bisexual, transgender and intersex persons", - "values": [ - "Sexual Orientation and Gender Identity" - ] - }, - { - "text": "Translate the de-facto moratorium on the death penalty into binding law, with a view to completely abolish the death penalty altogether", - "values": [ - "Death penalty" - ] - }, - { - "text": "Ensure that measures are taken to expedite the enactment of the Gender Equality Bill, the Deceased Estates Bill and the Marriage, Divorce and Family Relations Bill", - "values": [ - "Women's rights" - ] - }, - { - "text": "Adopt criminal legislation that defines and criminalizes torture", - "values": [ - "Torture and other CID treatment" - ] - }, - { - "text": "Guarantee in legislation and in practice the right to peaceful assembly for all, without exceptions, regardless of nationality", - "values": [ - "Freedom of association and peaceful assembly", - "Minorities" - ] - }, - { - "text": "Take action at all levels to address the interlinked root causes of preventable mortality and morbidity of children under 5 and consider applying the "Technical guidance on the application of a human rights-based approach to the implementation of policies and programmes to reduce and eliminate preventable mortality of children under 5 years of age" (A/HRC/27/31)", - "values": [ - "Right to health", - "Rights of the Child" - ] - }, - { - "text": "Ensure the inclusion of provisions relating to equality between men and women in the Constitution and the legislative system, and continue to pursue the implementation of effective measures to combat gender inequality ", - "values": [ - "Right to education", - "Women's rights" - ] - }, - { - "text": "Develop, with the participation of civil society, a plan of action and establish a national mechanism to combat racism and discrimination", - "values": [ - "Civil society", - "Racial discrimination" - ] - }, - { - "text": "Ratify the Convention on the Protection of Persons with Disabilities and its Optional Protocol.", - "values": [ - "Disabilities", - "International instruments" - ] - }, - { - "text": "Further promote education for children, especially in the rural areas and at secondary level", - "values": [ - "Right to education", - "Rights of the Child" - ] - }, - { - "text": "End the occupation of all Palestinian and Arab territories occupied, including Jerusalem.", - "values": [ - "Right to land" - ] - }, - { - "text": "Take measures towards signing and ratifying the ICCPR and the ICESCR as soon as possible ", - "values": [ - "CP rights - general", - "ESC rights - general", - "International instruments" - ] - }, - { - "text": "Malaysia remains committed to enhance worker protection including through: (a) enhancing maternity protection, (b) mandatory requirement for payment of wages into bank accounts, (c) increasing minimum retirement age to 60 years, and (d) implementation of bilateral arrangements with labour source countries.", - "values": [ - "Labour", - "Migrants", - "Women's rights" - ] - }, - { - "text": "Enact the education bill as soon as possible", - "values": [ - "Right to education" - ] - }, - { - "text": "Take further steps to address discrimination against women and vulnerable groups, including children.", - "values": [ - "Rights of the Child", - "Women's rights" - ] - }, - { - "text": "Continue its constructive engagement with its regional and international partners to meet the challenges in the promotion and protection of human rights", - "values": [ - "General" - ] - }, - { - "text": "Take further legislative and practical measures to end violence against women, in particular also addressing the problem of bride kidnapping ", - "values": [ - "Women's rights" - ] - }, - { - "text": "Adopt a new comprehensive legislation to prevent and combat all forms of discrimination and violence against women", - "values": [ - "Women's rights" - ] - }, - { - "text": "End indefinite national service and begin a phased demobilization for those serving for more than the statutory 18 months, and allow substitute service for conscientious objectors ", - "values": [ - "Freedom of religion and belief" - ] - }, - { - "text": "Make all possible efforts to achieve the complete elimination of all kinds of violence against women and girls, including domestic violence", - "values": [ - "Rights of the Child", - "Women's rights" - ] - }, - { - "text": "Take further activities to improve the situation of the State-level Ombudsmen", - "values": [ - "National Human Rights Institution" - ] - }, - { - "text": "Continue efforts to further promote human rights, democracy and rule of law ", - "values": [ - "Justice" - ] - }, - { - "text": "Take measures to effectively end the practice of incommunicado detention and to ensure access of detainees to legal representation without undue delay.", - "values": [ - "Detention" - ] - }, - { - "text": "Call upon the international community to provide technical and financial assistance to Cote d'Ivoire to further contribute to the consolidation of human rights ", - "values": [ - "Technical assistance and cooperation" - ] - }, - { - "text": "Continue efforts to empower and advance women and facilitate women\u2019s participation in the society, particularly in political life, decision-making and holding leadership positions", - "values": [ - "Women's rights" - ] - }, - { - "text": "Continue to apply programmes and measures to improve the enjoyment of the right to education, the right to health, and the rights of women and children ", - "values": [ - "Right to education", - "Right to health", - "Rights of the Child", - "Women's rights" - ] - }, - { - "text": "Adopt concrete measures to strengthen the protection of migrants, refugees and asylum seekers", - "values": [ - "Asylum-seekers - refugees", - "Migrants" - ] - }, - { - "text": "Continue putting forward effective measures for reducing illiteracy and boosting the quality and performance of education in the country ", - "values": [ - "Right to education" - ] - }, - { - "text": "Strengthen protection provided for persons deprived of their liberty, preferably by ratification of the Optional Protocol to the Convention against Torture and other Cruel, Inhuman or Degrading Treatment or Punishment", - "values": [ - "Detention", - "International instruments", - "Torture and other CID treatment" - ] - }, - { - "text": "Provide access for all asylum and repatriation detainees to attorneys, as well as consular notification and access consistent with applicable international legal obligations, including Article 36 of the Vienna Convention on Consular Relations, to detained foreign nationals", - "values": [ - "Asylum-seekers - refugees", - "International instruments" - ] - }, - { - "text": "Continue efforts to strengthen democracy, good governance, the rule of law and equality ", - "values": [ - "Justice" - ] - }, - { - "text": "Continue to counter terrorist and ethnic separatist activities undertaken by certain individuals and groups", - "values": [ - "Other" - ] - }, - { - "text": "Ratify the Convention on the Prevention and Punishment of the Crime of Genocide ", - "values": [ - "International instruments", - "Justice" - ] - }, - { - "text": "Continue its steps to promote human rights through effective measures to realize the rights set out in the International Convention for the Protection of All Persons from Enforced Disappearance", - "values": [ - "Enforced disappearances" - ] - }, - { - "text": "Ensure equal rights and opportunities to all persons without distinction and promote policies to prevent discrimination based on sexual orientation and gender identity", - "values": [ - "Sexual Orientation and Gender Identity" - ] - }, - { - "text": "Continue to pay attention to the question of access to education at all levels and enhance its quality", - "values": [ - "Right to education" - ] - }, - { - "text": "Strengthen the human rights component in school curriculums and education programmes for the public, with special focus on women's rights ", - "values": [ - "Human rights education and training", - "Women's rights" - ] - }, - { - "text": "Increase its efforts in overcome existing challenges in the field of the judicial system, including corruption, transparency and accountability of the public administration as well as a rational division of responsibility between federal and regional levels of Government", - "values": [ - "Corruption", - "Justice" - ] - }, - { - "text": "Having complied with its voluntary commitments and contributions, it will continue to fulfill its obligations with a steadfast commitment to the advancement of human rights of the international community.", - "values": [ - "Other" - ] - }, - { - "text": "Put an end to the harassment of journalists and release those detained without any valid grounds", - "values": [ - "Freedom of the press" - ] - }, - { - "text": "Consider the possibility of acceding to the International Covenant on Economic, Social and Cultural Rights and the International Covenant on Civil and Political Rights", - "values": [ - "CP rights - general", - "ESC rights - general", - "International instruments" - ] - }, - { - "text": "Immediately desist from violations of human rights, including attacks on civilians and unlawful killings, acts of rape and sexual violence, arbitrary detentions, abductions and lootings", - "values": [ - "Detention", - "Enforced disappearances", - "Extrajudicial executions", - "International humanitarian law", - "Rights of the Child", - "Women's rights" - ] - }, - { - "text": "Accede to and fully align its national legislation with the Rome Statute and accede to the Agreement on the Privileges and Immunities of the International Criminal Court", - "values": [ - "International instruments", - "Justice" - ] - }, - { - "text": "Pursue its efforts to combat the persistence of traditional stereotypes regarding the role and responsibilities of women and men, namely by planning awareness-raising campaigns for the media and focused programmes in the education system ", - "values": [ - "Human rights education and training", - "Women's rights" - ] - }, - { - "text": "Institute a moratorium on the application of the death penalty ", - "values": [ - "Death penalty" - ] - }, - { - "text": "Introduce measures to eliminate or modify customs and harmful traditional practices that discriminate against women, eliminate FGM, put an end to harmful widowhood rites and implement protective measures for this group in relation to eviction and inheritance, and halt the practice of trokosi.", - "values": [ - "Rights of the Child", - "Torture and other CID treatment", - "Women's rights" - ] - }, - { - "text": "Take necessary steps to ensure that law enforcement and security officials are subject to legal oversight and operate in compliance with international human rights standards", - "values": [ - "International instruments", - "Justice" - ] - }, - { - "text": "Revise its legislation on criminal libel, to limit defamation awards and to refrain from restricting access to the Internet", - "values": [ - "Freedom of opinion and expression" - ] - }, - { - "text": "Apply a broad human rights approach, which do not allow any type of discrimination, in the implementation of the four orientations to adopt the strategies to reduce poverty and inequalities in Haiti, described in the national report ", - "values": [ - "Poverty" - ] - }, - { - "text": "Decriminalize press offences, and allow private radio broadcasting at the national level", - "values": [ - "Freedom of the press" - ] - }, - { - "text": "Consider an early ratification of the third Optional Protocol to the Convention on the Rights of the Child, on a communication procedure ", - "values": [ - "International instruments", - "Rights of the Child" - ] - }, - { - "text": "Continue cooperating with the competent bodies to secure protection of the human rights of the internally displaced, particularly women and children ", - "values": [ - "Internally displaced persons", - "Rights of the Child", - "Women's rights" - ] - }, - { - "text": "Further strengthen its advocacy efforts to enhance public awareness of human rights in general and the human rights of vulnerable groups, including women, children, the disabled, the elderly and indigenous people, in particular ", - "values": [ - "Disabilities", - "Human rights education and training", - "Indigenous peoples", - "Rights of the Child", - "Women's rights" - ] - }, - { - "text": "Consider acceding to all core conventions of the International Labour Organization", - "values": [ - "International instruments", - "Labour" - ] - }, - { - "text": "Reinstate the requirement to produce environmental impact studies which take into account the possible impact on the rights of persons living in the affected area for all major projects, especially in indigenous and protected areas, and that these studies are made public ", - "values": [ - "Environment", - "Indigenous peoples" - ] - }, - { - "text": "Adopt the same-sex partnership act in order to further improve the rights of LGBTI persons", - "values": [ - "Sexual Orientation and Gender Identity" - ] - }, - { - "text": "Continue its positive efforts aimed at the reduction of the number of persons in penitentiary institutions ", - "values": [ - "Detention" - ] - }, - { - "text": "Develop infrastructure for technical training, recreation and leisure for children and young people, particularly in rural areas, with a view to promoting alternative activities, rather than having young people participate in traditional crop gathering ", - "values": [ - "Labour", - "Rights of the Child", - "Trafficking" - ] - }, - { - "text": "Take necessary measures, including administrative measures, to facilitate access to education to children who are not of Italian origin", - "values": [ - "Minorities", - "Right to education", - "Rights of the Child" - ] - }, - { - "text": "Consider signing and ratifying the International Convention for the Protection of All Persons from Enforced Disappearance", - "values": [ - "Enforced disappearances", - "International instruments" - ] - }, - { - "text": "Develop and implement a strategy aiming at improving as soon as possible the conditions of detention for prisoners", - "values": [ - "Detention" - ] - }, - { - "text": "Follow through on its intent to put a moratorium on the use of the death penalty ", - "values": [ - "Death penalty" - ] - }, - { - "text": "Intensify efforts to combat domestic violence and violence against women ", - "values": [ - "Women's rights" - ] - }, - { - "text": "Adopt and implement appropriate, efficient policy to address the sexual exploitation of children", - "values": [ - "Rights of the Child" - ] - }, - { - "text": "Ratify the CAT", - "values": [ - "International instruments", - "Torture and other CID treatment" - ] - }, - { - "text": "Continue to enhance its programmes towards employment of its youth in the agriculture and fisheries sectors", - "values": [ - "Development" - ] - }, - { - "text": "Take all steps necessary to combat discrimination and violence against women, both in regards to legislation and awareness-raising to ensure that women are informed of their rights.", - "values": [ - "Human rights education and training", - "Women's rights" - ] - }, - { - "text": "Continue to work towards the empowerment of women and the promotion and protection of all their rights and intensify efforts and programmes to combat the phenomenon of trafficking of women and children", - "values": [ - "Rights of the Child", - "Trafficking", - "Women's rights" - ] - }, - { - "text": "Immediately end all acts of torture and hold accountable those responsible for such acts ", - "values": [ - "Torture and other CID treatment" - ] - }, - { - "text": "Give consideration to ratifying the Optional Protocol to CAT", - "values": [ - "Detention", - "International instruments", - "Torture and other CID treatment" - ] - }, - { - "text": "Adopt and implement, in accordance with relevant international law, national legislation to combat trafficking in women and children which will prosecute and convict traffickers, and take effective measures to prevent sexual tourism ", - "values": [ - "Rights of the Child", - "Trafficking", - "Women's rights" - ] - }, - { - "text": "Continue applying and reinforcing programmes and public policies on inclusion, poverty reduction, equality promotion and non-discrimination, with particular attention to women, children, the elderly and persons with disabilities, among other vulnerable groups", - "values": [ - "Disabilities", - "Rights of the Child", - "Women's rights" - ] - }, - { - "text": "Clarify and publicly document the processes and guidelines for dealing with complaints against the press, including who can make them, who they can make them to and which penalties are considered to be appropriate, as well as a rationale for these decisions", - "values": [ - "Freedom of the press" - ] - }, - { - "text": "Remove all obstacles to freedom of expression and movement against human rights defenders, including all travel bans", - "values": [ - "Freedom of movement", - "Freedom of opinion and expression", - "Human rights defenders" - ] - }, - { - "text": "Adopt a national plan on human rights", - "values": [ - "General" - ] - }, - { - "text": "Continue strengthening the application of the discrimination reporting system, which protects the rights of people because of their sexual orientation and gender identity", - "values": [ - "Sexual Orientation and Gender Identity" - ] - }, - { - "text": "Finalize a national action plan on business and human rights in order to implement the United Nations Guiding Principles on Business and Human Rights", - "values": [ - "Business and human rights" - ] - }, - { - "text": "Continue its efforts to combat terrorism in order to ensure security and stability and to allow the Iraqi migrants to return and contribute to building their country", - "values": [ - "Migrants", - "Public security" - ] - }, - { - "text": "Adopt a specific law for domestic violence, containing both criminal and civil provisions ", - "values": [ - "Rights of the Child" - ] - }, - { - "text": "Consider the signing and ratification of ICRMW, as well as the consequent and gradual adaptation of national legislation in accordance with the standards contained in that Convention", - "values": [ - "International instruments", - "Labour", - "Migrants" - ] - }, - { - "text": "Continue strengthening the legislative framework for the promotion and protection of human rights for all people in the country in accordance with international human rights obligations", - "values": [ - "International instruments" - ] - }, - { - "text": "Continue efforts to strengthen legal frameworks and their implementation, through, inter alia, completing the ratification process of the Convention against Corruption ", - "values": [ - "Corruption", - "International instruments" - ] - }, - { - "text": "Work to improve conditions in its prisons, including sanitary conditions, access to food and health care and overcrowding.", - "values": [ - "Detention" - ] - }, - { - "text": "Take concrete steps to implement the March 2016 recommendations of the Committee on the Elimination of Discrimination against Women", - "values": [ - "Treaty bodies", - "Women's rights" - ] - }, - { - "text": "Promote more tolerance towards minorities and respect for their human rights through civic educational campaigns in traditional and social media", - "values": [ - "Human rights education and training", - "Minorities" - ] - }, - { - "text": "Continue to focus work on the rights of women and children, and to lift its reservations to the Convention on the Elimination of All Forms of Discrimination against Women to guarantee fair and equal legislation", - "values": [ - "International instruments", - "Rights of the Child", - "Statelessness and the right to nationality", - "Women's rights" - ] - }, - { - "text": "Enhance the transparency of the election of members of the Ombudsman Office based on professionalism", - "values": [ - "National Human Rights Institution" - ] - }, - { - "text": "Fully guarantee the right to receive, seek and impart information and ideas in compliance with article 19 of ICCPR", - "values": [ - "Freedom of opinion and expression", - "International instruments" - ] - }, - { - "text": "Ensure the allocation of adequate resources for the effective implementation of policies and programmes against violence against women and trafficking in persons ", - "values": [ - "Trafficking", - "Women's rights" - ] - }, - { - "text": "Expedite impartial investigations into the violent incidents in Santa Cruz and Pando with a view to identifying those responsible and bringing them to justice in a fair trial before an independent court", - "values": [ - "Justice" - ] - }, - { - "text": "Take all necessary measures, including reviewing its legislation, in order to avoid cases of prosecution of those who exercise their rights guaranteed under articles 18, 19 and 20 of the UDHR", - "values": [ - "Freedom of association and peaceful assembly", - "Freedom of opinion and expression", - "Freedom of religion and belief", - "International instruments" - ] - }, - { - "text": "Ensure the effective implementation of the new National Strategy for the Rights of Children 2014-2020", - "values": [ - "Rights of the Child" - ] - }, - { - "text": "Take adequate measures to further defend children's rights", - "values": [ - "Rights of the Child" - ] - }, - { - "text": "Develop and implement a plan of action to combat trafficking in persons in order to combat all forms of exploitation that may be targeting women, children and other vulnerable groups ", - "values": [ - "Rights of the Child", - "Trafficking", - "Women's rights" - ] - }, - { - "text": "Refrain from impeding civil society and respect its international obligations on the right to freedom of peaceful assembly", - "values": [ - "Civil society", - "Freedom of association and peaceful assembly" - ] - }, - { - "text": "In concluding, the representative of Barbados reiterated his country's commitment to a strong human rights platform and a rights-based approach to development.", - "values": [ - "Development" - ] - }, - { - "text": "Ratify core international human rights conventions, prioritising the International Covenant on Civil and Political Rights and the Convention against Torture", - "values": [ - "CP rights - general", - "International instruments", - "Torture and other CID treatment" - ] - }, - { - "text": "Continue to implement Democratization Package 2013", - "values": [ - "Other" - ] - }, - { - "text": "Continue its ongoing efforts to guarantee the rights of persons with disabilities ", - "values": [ - "Disabilities" - ] - }, - { - "text": "Increase international cooperation to guarantee economic, cultural and social rights ", - "values": [ - "ESC rights - general", - "Technical assistance and cooperation" - ] - }, - { - "text": "Continue the on-going efforts to strengthen the independence of the judiciary ", - "values": [ - "Justice" - ] - }, - { - "text": "Adequately resource the Afghanistan Independent Human Rights Commission and design the Commissioners' nomination process in a way to ensure the A status of the Commission under the Paris Principles", - "values": [ - "National Human Rights Institution" - ] - }, - { - "text": "Sign and ratify the Optional Protocol to CRPD (OP-CRPD). Intensify efforts with a view to the prompt ratification of CRPD ", - "values": [ - "Disabilities", - "International instruments" - ] - }, - { - "text": "Continue its efforts to bring its system of security certificates into compliance with international human rights standards ", - "values": [ - "International instruments" - ] - }, - { - "text": "Initiate the process of ratification of the Second Optional Protocol on the International Covenant on Civil and Political Rights with the view of definitely abolishing the death penalty ", - "values": [ - "Death penalty", - "International instruments" - ] - }, - { - "text": "Take further legal proceedings to prevent violence against children, young people and tackle it, and intensify efforts to address child labour", - "values": [ - "Labour", - "Rights of the Child" - ] - }, - { - "text": "Accelerate and follow-up on implementation of the package of reforms as announced by the country's leadership", - "values": [ - "General" - ] - }, - { - "text": "Repeal the legal provisions making same-sex intimacy among men- described as "gross indecency and buggery"-illegal", - "values": [ - "Sexual Orientation and Gender Identity" - ] - }, - { - "text": "Give the International Committee of the Red Cross access to all detention facilities including to Korotoro. ", - "values": [ - "Detention" - ] - }, - { - "text": "Establish a national human rights institution in keeping with the Paris Principles", - "values": [ - "National Human Rights Institution" - ] - }, - { - "text": "Enhance its efforts to curb hate speech in the media while investigating and appropriately sanctioning the perpetrators for such hate speeches ", - "values": [ - "Racial discrimination" - ] - }, - { - "text": "Revise its legislation on the death penalty bearing in mind existing international standards on the subject, especially concerning transparency.", - "values": [ - "Death penalty" - ] - }, - { - "text": "Implement programmes in the area of human rights education for State officers, including law enforcement officers, in order to avoid violence and discrimination on any basis, especially regarding vulnerable groups", - "values": [ - "Human rights education and training" - ] - }, - { - "text": "Actively include civil society in the implementation of the Human Rights Strategy Action Plan 2014-2016 and create a formalized dialogue with civil society to this effect, in order to provide for better monitoring of the implementation of the Action Plan", - "values": [ - "Civil society" - ] - }, - { - "text": "Continue improving economic, social and cultural rights.", - "values": [ - "ESC rights - general" - ] - }, - { - "text": "Improve the situation of women in the labour market", - "values": [ - "Women's rights" - ] - }, - { - "text": "To pursue their efforts in taking the necessary measures to reduce and prevent racial discrimination ", - "values": [ - "Racial discrimination" - ] - }, - { - "text": "Ratify CAT and the Optional Protocol thereto and bring the definition of torture in line with the international standards in order to criminalize such treatment ", - "values": [ - "Detention", - "International instruments", - "Torture and other CID treatment" - ] - }, - { - "text": "Train the judiciary on the rights of persons with disabilities, taking into account their needs and special skills", - "values": [ - "Disabilities", - "Human rights education and training" - ] - }, - { - "text": "Consider developing a comprehensive domestic legal framework on the treatment of asylum seekers and refugees with a view to better ensure their basic human rights and living conditions", - "values": [ - "Asylum-seekers - refugees" - ] - }, - { - "text": "Reinstate the moratorium on the death penalty and consider abolishing capital punishment", - "values": [ - "Death penalty" - ] - }, - { - "text": "Police be trained to provide improved investigation and prosecution services to women subjected to violence including rape, and that resources be made available to improve access to shelters ", - "values": [ - "Women's rights" - ] - }, - { - "text": "Ratify as soon as possible the Optional Protocol to the Convention against Torture", - "values": [ - "Detention", - "International instruments", - "Torture and other CID treatment" - ] - }, - { - "text": "Comply with Security Council resolution 1593 (2005) and fully cooperate with the International Criminal Court", - "values": [ - "International instruments", - "Justice" - ] - }, - { - "text": "Implement recommendations by the Special Rapporteur on the rights to water and sanitation regarding access to water for Roma", - "values": [ - "Minorities", - "Right to water and sanitation", - "Special procedures" - ] - }, - { - "text": "Deploy possible additional efforts to prevent cases of torture and ill-treatment and to prosecute perpetrators ", - "values": [ - "Torture and other CID treatment" - ] - }, - { - "text": "Sign and ratify the Second Optional Protocol to the ICCPR ", - "values": [ - "Death penalty", - "International instruments" - ] - }, - { - "text": "Adopt all measures to comply with its obligations under CERD, in particular to prohibit and punish organization of and participation in neo-Nazi demonstrations.", - "values": [ - "International instruments", - "Racial discrimination" - ] - }, - { - "text": "Continue consolidating work done in the international community concerning the rejection of unilateral coercive measures including the illegal embargo against Cuba", - "values": [ - "Other" - ] - }, - { - "text": "Further enhance efforts to address the issue of domestic violence and victim assistance", - "values": [ - "Rights of the Child", - "Women's rights" - ] - }, - { - "text": "Harmonize the law with the Convention relating to the Status of Refugees", - "values": [ - "Asylum-seekers - refugees", - "International instruments" - ] - }, - { - "text": "Step up efforts to increase the visibility of all initiatives and actions aimed at the promotion of and respect for human rights, through democratic mechanisms and conciliatory processes", - "values": [ - "General" - ] - }, - { - "text": "Proceed with implementing development projects, particularly those related to clean drinking water and health care", - "values": [ - "Development", - "Right to health", - "Right to water and sanitation" - ] - }, - { - "text": "Respond to the communication by the Special Rapporteur on the protection of human rights while countering terrorism dated 26 April 2006.", - "values": [ - "Counter-terrorism", - "Special procedures" - ] - }, - { - "text": "Intensify the fight against terrorism and extremism in cooperation with other countries", - "values": [ - "Public security" - ] - }, - { - "text": "Improve the national legislation so as to speed up the judicial process ", - "values": [ - "Justice" - ] - }, - { - "text": "Redouble its efforts in finalizing the establishment of an independent national human rights institution in accordance with the Paris Principles", - "values": [ - "National Human Rights Institution" - ] - }, - { - "text": "Continue to promote awareness programmes on HIV/AIDS, and enhance cooperation with civil society to address the stigma faced by persons with HIV/AIDS", - "values": [ - "HIV - Aids" - ] - }, - { - "text": "Continue efforts to prevent violence against women and girls and to ensure them quality service for their sexual and reproductive health", - "values": [ - "Right to health", - "Rights of the Child", - "Women's rights" - ] - }, - { - "text": "Continue taking the necessary measures at the legislative and procedural level to provide full protection for migrant workers in the United Arab Emirates", - "values": [ - "Labour", - "Migrants" - ] - }, - { - "text": "Strengthen measures to guarantee gender equality as well as actions to prevent violence against women", - "values": [ - "Women's rights" - ] - }, - { - "text": "Continue to promote women's participation in decision-making and political participation by providing necessary assistance and capacity building, as well as gradually increasing proportion of women parliamentarians", - "values": [ - "Women's rights" - ] - }, - { - "text": "Expedite the creation of an independent national human rights institution in conformity with the Paris Principles ", - "values": [ - "National Human Rights Institution" - ] - }, - { - "text": "Allocate more resources to ensure the effective implementation of the Anti-Trafficking in Persons and Anti-Smuggling of Migrants Act", - "values": [ - "Migrants", - "Trafficking" - ] - }, - { - "text": "Take measures to provide the victims of trafficking with effective remedy, including compensation and rehabilitation", - "values": [ - "Trafficking" - ] - }, - { - "text": "Persevere in its efforts to combat poverty and facilitate access to water for rural populations", - "values": [ - "Poverty", - "Right to water and sanitation" - ] - }, - { - "text": "Step up its efforts in ensuring that the issues of the inability by prisoners to hire their own lawyers and overcrowding in prisons are attended to and appeal to the Human Rights Council and the international community to render both financial and technical assistance to help the Government of Mozambique meet its international obligations", - "values": [ - "Detention", - "Justice", - "Technical assistance and cooperation" - ] - }, - { - "text": "Continue to engage with the Aboriginal population and Torres Strait Islanders and ensure the equal protection of their fundamental rights ", - "values": [ - "Indigenous peoples" - ] - }, - { - "text": "Continue to support the implementation of the socioeconomic development plan aimed at the eradication of poverty in the country ", - "values": [ - "Development", - "Poverty" - ] - }, - { - "text": "Continue the national policy for greater access to education for all children and to include in the school system, at all levels, appropriate measures in the field of human rights education, in accordance with the Plan of Action 2005-2009 of the World Programme for Human Rights Education.", - "values": [ - "Human rights education and training", - "Right to education" - ] - }, - { - "text": "Increase access to electricity, basic sanitation and running water", - "values": [ - "Right to water and sanitation" - ] - }, - { - "text": "In cooperation with relevant international organizations, continue to enhance the rule of law to ensure a safe and stable living environment for the people", - "values": [ - "Justice", - "Technical assistance and cooperation" - ] - }, - { - "text": "Continue efforts to ensure mutual understanding and peaceful interaction between all segments of Lebanese society", - "values": [ - "Other" - ] - }, - { - "text": "Ratify the International Covenant on Civil and Political Rights and its Optional Protocols", - "values": [ - "CP rights - general", - "Death penalty", - "International instruments" - ] - }, - { - "text": "Enable national minorities to freely use their languages in public domain, including topographical indications in minority areas ", - "values": [ - "Minorities" - ] - }, - { - "text": "Further work to achieve effective equality between men and women, particularly when it comes to laws governing divorce, inheritance and custody of children", - "values": [ - "Women's rights" - ] - }, - { - "text": "Call upon the international community to assist in capacity-building for the further strengthening of democracy and the promotion and protection of human rights in Afghanistan.", - "values": [ - "Technical assistance and cooperation" - ] - }, - { - "text": "Continue undertaking measures to reduce environmental degradation as an essential requirement to reduce the impact of poverty", - "values": [ - "Environment", - "Poverty" - ] - }, - { - "text": "Adopt immediate measures, including legislative to eradicate sexual exploitation of children and recruitment of adolescents into prostitution. Provide for the relevant legal protection for child victims of human trafficking in the framework of judicial process ", - "values": [ - "Rights of the Child", - "Trafficking" - ] - }, - { - "text": "Carry out extensive consultations with civil society related to the repeal of the 1998 Human Rights Act. In view of the process of leaving the European Union, ensure that any new legislation aims at strengthening human rights in the entire jurisdictions of the country", - "values": [ - "Civil society" - ] - }, - { - "text": "Move forward in implementing the National Human Rights System, with a view to ensuring greater consistency and comprehensive State actions in the area of human rights", - "values": [ - "National Human Rights Institution" - ] - }, - { - "text": "Involve civil society representatives in the follow-up implementation of the universal periodic review recommendations ", - "values": [ - "Civil society", - "UPR process" - ] - }, - { - "text": "Fully implement its obligations under ICCPR to respect and ensure the right to freedom of expression", - "values": [ - "Freedom of opinion and expression", - "International instruments" - ] - }, - { - "text": "Continue its efforts to promote the rights of people with disabilities and ensure that persons with disabilities have equal access to all public facilities and services", - "values": [ - "Disabilities" - ] - }, - { - "text": "Take measures to further facilitate the naturalization of non-citizens ", - "values": [ - "Migrants" - ] - }, - { - "text": "Continue its efforts to prevent children from being subjected to torture and ill-treatment in all circumstances", - "values": [ - "Rights of the Child", - "Torture and other CID treatment" - ] - }, - { - "text": "Reinforce the policy of promoting children's rights and the implementation of the Guidelines for the Alternative Care of Children, according to Human Rights Council resolution 11-7 and General Assembly resolution 64-142", - "values": [ - "Rights of the Child" - ] - }, - { - "text": "Ensure that the new constitution guarantees equality between women and men ", - "values": [ - "Women's rights" - ] - }, - { - "text": "Follow up the recommendation of the Special Representative of the Secretary-General on the situation of human rights defenders and denounce more forcefully verbal and physical attacks against human rights defenders.", - "values": [ - "Human rights defenders", - "Special procedures" - ] - }, - { - "text": "Enhance inter-ethnic, inter-religious, and inter-cultural understanding within the society, and ensure access to justice for victims of racial hatred or violence", - "values": [ - "Freedom of religion and belief", - "Minorities", - "Racial discrimination" - ] - }, - { - "text": "Guarantee the effective protection of children's rights offline as well as online by amending the relevant national laws if necessary and providing adequate resources ", - "values": [ - "Rights of the Child" - ] - }, - { - "text": "Continue to consolidate the impressive gains that the country has thus far made in the promotion of Human Rights including in the sphere of health and social services", - "values": [ - "Right to health" - ] - }, - { - "text": "Ratify the Optional Protocol to the Convention on the Rights of Persons with Disabilities, and sign and ratify the Optional Protocol to the International Covenant on Economic, Social and Cultural Rights", - "values": [ - "Disabilities", - "ESC rights - general", - "International instruments" - ] - }, - { - "text": "Strengthen the fight against all forms of violence against women and girls by ensuring effective implementation of relevant laws and policies, and ensure access to justice and care", - "values": [ - "Justice", - "Rights of the Child", - "Women's rights" - ] - }, - { - "text": "Continue in its endeavours to consistently address the skills development and training needs of Aboriginal peoples to ensure access to sustained decent work ", - "values": [ - "Development", - "Indigenous peoples" - ] - }, - { - "text": "Harmonize its national legislation with CEDAW, in particular regarding the explicit prohibition of discrimination against women and carry out an inventory to ensure that the national legislative framework does not allow for direct or indirect discrimination ", - "values": [ - "International instruments", - "Women's rights" - ] - }, - { - "text": "Set up an independent national human rights institution that operates in accordance with the Paris Principles", - "values": [ - "National Human Rights Institution" - ] - }, - { - "text": "Review and amend all relevant legislation, including family law, inheritance law and domestic nationality and citizenship law, and the application thereof, in order to ensure equality between the sexes and compliance with the CEDAW ", - "values": [ - "International instruments", - "Rights of the Child", - "Statelessness and the right to nationality", - "Women's rights" - ] - }, - { - "text": "Accelerate the process towards the ratification of the International Convention on the Rights of All Migrant Workers and Members of Their Families", - "values": [ - "International instruments", - "Labour", - "Migrants" - ] - }, - { - "text": "Consolidate and support the promotion of education for economically vulnerable children", - "values": [ - "Right to education", - "Rights of the Child" - ] - }, - { - "text": "Amend its anti-terrorist law so that children are not tried as adults ", - "values": [ - "Counter-terrorism", - "Rights of the Child" - ] - }, - { - "text": "Sign the OP-Cat ", - "values": [ - "Detention", - "International instruments", - "Torture and other CID treatment" - ] - }, - { - "text": "Introduce more efficient legal regulations obliging employers to respect immigrants' right to decent working conditions or establish a special monitoring body to support the Decent Work Agenda ", - "values": [ - "Labour", - "Migrants" - ] - }, - { - "text": "Accept the advisory services offered by OHCHR ", - "values": [ - "Technical assistance and cooperation" - ] - }, - { - "text": "Recommended taking urgent steps to abolish the various systems of arbitrary detention", - "values": [ - "Detention" - ] - }, - { - "text": "Raising the level of protection for children, in particular against sexual abuse and child labour", - "values": [ - "Labour", - "Rights of the Child" - ] - }, - { - "text": "Increase action aimed at ensuring the promotion of freedom of religion for all confessions throughout the country", - "values": [ - "Freedom of religion and belief" - ] - }, - { - "text": "Investigate allegations of human rights abuses by the security forces and take measures to eliminate this practice, if required ", - "values": [ - "Human rights violations by state agents" - ] - }, - { - "text": "Establish a mechanism to facilitate victim identification and ensure prosecution and punishment of all acts of female genital mutilation", - "values": [ - "Rights of the Child", - "Torture and other CID treatment", - "Women's rights" - ] - }, - { - "text": "Ensure implementation of the Mental Health Act, including through the adoption of legislative instruments, and the recruitment of qualified mental health professionals", - "values": [ - "Right to health" - ] - }, - { - "text": "Ratify conventions on stateless persons ", - "values": [ - "International instruments", - "Statelessness and the right to nationality" - ] - }, - { - "text": "Adopt measures immediately and in line with international human rights standards to protect the rights of children and in particular to prohibit child labour and prevent, criminalize and punish sexual exploitation and child trafficking", - "values": [ - "International instruments", - "Rights of the Child" - ] - }, - { - "text": "Continue to reduce poverty and extreme poverty", - "values": [ - "Poverty" - ] - }, - { - "text": "Continue to take proactive and innovative steps aimed at ensuring sustainable development policies related to the promotion of economic, social and cultural rights", - "values": [ - "ESC rights - general" - ] - }, - { - "text": "Take all measures necessary to prevent and combat violence against and the maltreatment of children, by setting up an effective mechanism for collecting, processing and investigating complaints, by promoting an awareness-raising campaign and by providing adequate protection for victims - and review and modify the articles of the 1977 Criminal Code concerning violence against children, the sexual exploitation of children, and the sale and trafficking of children ", - "values": [ - "Human rights education and training", - "Rights of the Child", - "Trafficking" - ] - }, - { - "text": "Noting that, owing to malaria, acute respiratory tract infections and malnutrition, child mortality is relatively high, call on the international community to provide assistance in reducing child mortality rates ", - "values": [ - "Right to health", - "Rights of the Child", - "Technical assistance and cooperation" - ] - }, - { - "text": "Continue to implement the social programmes of the Social Integration and Assistance Network to eliminate extreme poverty and reduce poverty to less than 10 per cent, and continue to reduce inequalities in income distribution", - "values": [ - "Poverty" - ] - }, - { - "text": "Continue efforts to improve the access to adequate land by ethnic minority groups who have been deprived of their original lands", - "values": [ - "Minorities", - "Right to land" - ] - }, - { - "text": "Continue the fight against corruption in order to strengthen the rule of law and good governance", - "values": [ - "Corruption", - "Justice" - ] - }, - { - "text": "Consider enacting a legislation that among other would help to contain or restrain certain behaviours that enhance the spread of the HIV/AIDS killer disease", - "values": [ - "HIV - Aids" - ] - }, - { - "text": "Continue the efforts to attain the respect for the rights and fundamental freedoms of the entire population, and adopt all necessary measures to guarantee the fight against impunity of perpetrators of crimes, acts of violence and all human rights violations", - "values": [ - "Impunity" - ] - }, - { - "text": "Ensure that no arms are traded with regions that deploy child soldiers ", - "values": [ - "International humanitarian law", - "Rights of the Child" - ] - }, - { - "text": "Intensify efforts to strengthen programmes, projects and other measures to prevent discrimination against vulnerable groups, including some Roma women, asylum-seekers and migrants ", - "values": [ - "Asylum-seekers - refugees", - "Migrants", - "Minorities" - ] - }, - { - "text": "Promptly establish a national mechanism for the prevention of torture", - "values": [ - "Torture and other CID treatment" - ] - }, - { - "text": "Ratify and implement outstanding core international human rights treaties ", - "values": [ - "International instruments" - ] - }, - { - "text": "Continue its efforts to overcome the practice of female genital mutilation and other practices that affect the rights of women ", - "values": [ - "Rights of the Child", - "Torture and other CID treatment", - "Women's rights" - ] - }, - { - "text": "Continue efforts to ensure safe drinking water, in order to achieve the goal of 80 per cent of the population or more by 2012", - "values": [ - "Right to water and sanitation" - ] - }, - { - "text": "Continue with determination to promote and implement respect for all human rights, including within the framework of regional reconciliation and just solutions for the victims, and to do so in particular for those belonging to the ethnic minority and refugee communities", - "values": [ - "Asylum-seekers - refugees", - "Minorities" - ] - }, - { - "text": "Stay on the path of consolidation of political stability in the country, under the principles of free self-determination and sovereignty, for which it is very important to rely on international cooperation and assistance ", - "values": [ - "Other" - ] - }, - { - "text": "Quickly ratify CEDAW", - "values": [ - "International instruments", - "Women's rights" - ] - }, - { - "text": "End the indiscriminate bombing of residential areas and the targeting of civil facilities, including schools and hospitals", - "values": [ - "International humanitarian law" - ] - }, - { - "text": "Ensure that arrested persons have adequate access to legal representation and to establish effective judicial oversight over police and security forces ", - "values": [ - "Detention" - ] - }, - { - "text": "The Government will continue initiatives directed at reconstruction and restoration of physical and social infrastructure in areas within and proximate to the former theatres of conflict", - "values": [ - "Development" - ] - }, - { - "text": "Actively work towards equal remuneration for men and women by taking credible steps", - "values": [ - "Women's rights" - ] - }, - { - "text": "Consider prohibiting by law corporal punishment within the family and other institutions ", - "values": [ - "Rights of the Child", - "Torture and other CID treatment" - ] - }, - { - "text": "Continue to strengthen the rule of law as well as its national institutions aimed at further promoting and protecting human rights in accordance with the will and aspirations of the people of Nicaragua", - "values": [ - "Justice" - ] - }, - { - "text": "Work with the international community to bring its criminal justice system into line with its obligations under ICCPR and other international human rights instruments ", - "values": [ - "International instruments", - "Justice" - ] - }, - { - "text": "Continue implementing economic, social, cultural, civil and political rights for the benefit of all its population", - "values": [ - "CP rights - general", - "ESC rights - general" - ] - }, - { - "text": "Continue to fully use technical assistance and international cooperation to promote the implementation of national development programmes so as to improve its capacity in protecting its people's right to health and education ", - "values": [ - "Right to education", - "Right to health", - "Technical assistance and cooperation" - ] - }, - { - "text": "Improve public infrastructure such as water supply, sanitation and waste management so as to ensure adequate living standards and the right to health for its people", - "values": [ - "Right to health", - "Right to water and sanitation" - ] - }, - { - "text": "Formulate specific technical assistance requests to OHCHR in the area of access to justice and law enforcement to ensure an optimal awareness-raising on human rights requirements for civil servants working in these fields", - "values": [ - "Human rights education and training", - "Justice", - "Technical assistance and cooperation" - ] - }, - { - "text": "Consider ratifying the International Convention for the Protection of All Persons from Enforced Disappearance (ICPPED)", - "values": [ - "Enforced disappearances", - "International instruments" - ] - }, - { - "text": "Launch a credible investigation into reports that surfaced following the riots and prosecute offenders.", - "values": [ - "Public security" - ] - }, - { - "text": "Ensure equal representation of the titular and non-titular communities in local self-government bodies", - "values": [ - "Minorities" - ] - }, - { - "text": "Ratify the 1951 Convention relating to the Status of Refugees and the Protocol to it, as well as the Convention against Torture", - "values": [ - "Asylum-seekers - refugees", - "International instruments", - "Torture and other CID treatment" - ] - }, - { - "text": "Continue its efforts to eliminate violence against women, including domestic violence", - "values": [ - "Rights of the Child", - "Women's rights" - ] - }, - { - "text": "Cooperate and engage in dialogue within the United Nations human rights mechanisms, including with the Special Rapporteurs and the High Commissioner for Human Rights", - "values": [ - "Special procedures", - "Treaty bodies", - "UPR process" - ] - }, - { - "text": "Amend the Criminal Injuries Compensation Regulations so that all victims of trafficking have access to State compensation", - "values": [ - "Trafficking" - ] - }, - { - "text": "Speed up the adoption of a national plan of action to prevent and combat trafficking in persons", - "values": [ - "Trafficking" - ] - }, - { - "text": "Allow unrestricted and independent humanitarian access to all areas which are still affected by conflicts in order to make it possible to provide assistance to civilians, in particular women and children", - "values": [ - "International humanitarian law", - "Rights of the Child", - "Women's rights" - ] - }, - { - "text": "Continue providing support for the voluntary evacuees from the high-radiation areas of Fukushima, with housing, financial and other life-assisting means and with periodic health monitoring of those affected, in particular those who were children at the time of the accident", - "values": [ - "Right to health", - "Right to housing" - ] - }, - { - "text": "Make further efforts to prevent sexual and domestic violence as pointed out by the relevant treaty bodies", - "values": [ - "Rights of the Child", - "Women's rights" - ] - }, - { - "text": "Continue its efforts to eliminate all forms of discrimination through the implementation of a National Action Plan, especially in the work environment ", - "values": [ - "Labour" - ] - }, - { - "text": "Lift the reservations to the Convention on the Elimination of All Forms of Discrimination against Women", - "values": [ - "International instruments", - "Women's rights" - ] - }, - { - "text": "Set 18 years as the minimum legal age of marriage", - "values": [ - "Women's rights" - ] - }, - { - "text": "Continue to endeavour to develop the right to health through the adoption of free care, provided through the Equity Funds in Madagascar", - "values": [ - "Right to health" - ] - }, - { - "text": "Guarantee non-discriminatory access by Rohingya and other Muslim minorities to social services and education in Rakhine State", - "values": [ - "ESC rights - general", - "Freedom of religion and belief", - "Minorities", - "Racial discrimination", - "Right to education" - ] - }, - { - "text": "Continue its efforts in providing gender equal rights", - "values": [ - "Women's rights" - ] - }, - { - "text": "Ensure the full application of the prohibition of torture and ill treatment", - "values": [ - "Torture and other CID treatment" - ] - }, - { - "text": "Continue with the efforts to guarantee compliance of the Human Rights Ombudsperson with the Paris Principles ", - "values": [ - "National Human Rights Institution" - ] - }, - { - "text": "Strengthen and enhance the role of women especially in the decision making area", - "values": [ - "Women's rights" - ] - }, - { - "text": "Improve access to age-appropriate HIV, sexual and reproductive health services especially among adolescents", - "values": [ - "HIV - Aids", - "Right to health", - "Women's rights" - ] - }, - { - "text": "Update the memorandum of understanding with the Dominican Republic on repatriation mechanisms in accordance with international standards and norms", - "values": [ - "Other" - ] - }, - { - "text": "Continue to safeguard the principle of equality between men and women in financial, educational, healthcare and housing sectors by elaborating comprehensive anti-discrimination law", - "values": [ - "Women's rights" - ] - }, - { - "text": "Share good practices that allowed China to achieve poverty reduction targets set in the United Nations Millennium Development Goals", - "values": [ - "Poverty" - ] - }, - { - "text": "Intensify efforts to ensure that women and girls receive the same treatment as men and boys", - "values": [ - "Rights of the Child", - "Women's rights" - ] - }, - { - "text": "Ensure that the implementation of a set of socioeconomic policies, such as the Stand-Up Indiascheme, is targeted, accountable and transparent, so that their benefits reach all sections of society", - "values": [ - "ESC rights - general" - ] - }, - { - "text": "Provide for an unhindered enjoyment of the right to the freedom of expression in accordance with country's international obligations", - "values": [ - "Freedom of opinion and expression" - ] - }, - { - "text": "Ensure gender-equality is enshrined in the Constitution ", - "values": [ - "Women's rights" - ] - }, - { - "text": "Luxembourg commits itself to carrying out these recommendations [Recommendation 7 - Take further steps to improve the rights of women and children, implement the recommendation made by the Committee on the Elimination of Discrimination against Women in 2008 on drafting strategies and programmes to combat prostitution, continue its efforts to combat sexual exploitation of children and continue to take effective measures to protect children from violence, racism and pornography ]", - "values": [ - "Racial discrimination", - "Rights of the Child", - "Treaty bodies", - "Women's rights" - ] - }, - { - "text": "Consider ratifying OP-CAT in the near future", - "values": [ - "Detention", - "International instruments", - "Torture and other CID treatment" - ] - }, - { - "text": "Continue to allow unfettered regular access of the ICRC to detention and prison facilities.", - "values": [ - "Detention" - ] - }, - { - "text": "Take measures to implement and guarantee international human rights for asylum seekers, and in particular the right of women and girls who are seeking asylum to be protected from gender-based violence", - "values": [ - "Asylum-seekers - refugees", - "International instruments", - "Rights of the Child", - "Women's rights" - ] - }, - { - "text": "Make food security a priority ", - "values": [ - "Right to food" - ] - }, - { - "text": "Continue with determination and speed up the reform process it has begun.", - "values": [ - "General" - ] - }, - { - "text": "Strengthen efforts to increase public awareness of the importance of tolerance and intercultural dialogue, and pursue measures to promote and facilitate the integration of migrants", - "values": [ - "Freedom of religion and belief", - "Human rights education and training", - "Migrants" - ] - }, - { - "text": "Encourage further strengthening of the electoral system, particularly through improving the integrity of voter registration ", - "values": [ - "Elections" - ] - }, - { - "text": "Conduct an awareness-raising and educational campaign among the populations with the view to eliminate all the socio-cultural barriers which impede the full enjoyment of the rights of women", - "values": [ - "Human rights education and training", - "Women's rights" - ] - }, - { - "text": "Request technical assistance from specialized agencies of the United Nations in order to promote human rights through partnerships in the education and health sectors in particular to face up to the consequences of the nuclear tests", - "values": [ - "Right to education", - "Right to health", - "Technical assistance and cooperation" - ] - }, - { - "text": "Further intensify its efforts to overcome the high disparity in income between men and women", - "values": [ - "Women's rights" - ] - }, - { - "text": "Continue to empower the status and participation of women in social and business spheres", - "values": [ - "Women's rights" - ] - }, - { - "text": "Provide, in accordance with its obligation under international human rights law instruments, effective protection for the family as the fundamental and natural unit of society ", - "values": [ - "International instruments" - ] - }, - { - "text": "Implement all necessary measures to ensure fair trial under all circumstances, investigate vigorously all allegations of torture and other forms of maltreatment and bring those who are responsible to justice", - "values": [ - "Torture and other CID treatment" - ] - }, - { - "text": "Take more steps to deliver human rights education in schools, and conduct human rights awareness-raising activities for public servants, in particular law enforcement officers", - "values": [ - "Human rights education and training" - ] - }, - { - "text": "Step up efforts including working closely with ICRC and other relevant parties, to stop the recruitment and use of children by all parties involved in conflicts in the country.", - "values": [ - "Rights of the Child" - ] - }, - { - "text": "Consider the possibility of ratifying the International Convention on the Protection of the Rights of All Migrant Workers and Members of Their Families ", - "values": [ - "International instruments", - "Labour", - "Migrants" - ] - }, - { - "text": "Fully uphold media freedom in accordance with international obligations", - "values": [ - "Freedom of the press" - ] - }, - { - "text": "Continue efforts to ensure access to education for all ", - "values": [ - "Right to education" - ] - }, - { - "text": "Adopt measures to decrease the number of homeless persons, including through the availability of social housing", - "values": [ - "Poverty", - "Right to housing" - ] - }, - { - "text": "Launch an awareness campaign to explain the historical reasons for the return of Meskhetian Turks so as to avoid any intolerance against them", - "values": [ - "Minorities" - ] - }, - { - "text": "Continue its efforts to implement its development programmes ", - "values": [ - "Development" - ] - }, - { - "text": "Release all the Palestinian and Arab prisoners and detainees in the Israeli prisons, including women and children, and put an end to all forms of torture exercised against them", - "values": [ - "Detention", - "Rights of the Child", - "Torture and other CID treatment", - "Women's rights" - ] - }, - { - "text": "Continue to ensure unified implementation of its policy for the integration of Roma in Slovak society.", - "values": [ - "Minorities" - ] - }, - { - "text": "Strengthen the resources and staffing of the national preventive mechanism in accordance with the Optional Protocol to the Convention against Torture and ensure its independent and effective functioning", - "values": [ - "Detention", - "International instruments", - "Torture and other CID treatment" - ] - }, - { - "text": "Cooperate with the Commission of Inquiry and allow it to access the Syrian Arab Republic", - "values": [ - "Technical assistance and cooperation" - ] - }, - { - "text": "Take all necessary steps to ensure that torture and other inhuman and degrading treatment of civilians do not occur", - "values": [ - "Torture and other CID treatment" - ] - }, - { - "text": "Ensure equal opportunities for women in the labour market, including by strengthening equal access of migrant women to effective job training and placement services in order to alleviate the concentration of qualified migrant women in low-paying jobs", - "values": [ - "Migrants", - "Women's rights" - ] - }, - { - "text": "Bring all legislation concerning communication surveillance in line with international human rights standards and especially recommend that all communication surveillance requires a test of necessity and proportionality", - "values": [ - "Privacy" - ] - }, - { - "text": "Consider ratifying ILO Convention 169, and take steps to implement the United Nations Declaration on the Rights of Indigenous Peoples, including through constitutional and statutory recognition of land and resource rights and effective political participation", - "values": [ - "Indigenous peoples", - "International instruments", - "Right to land" - ] - }, - { - "text": "Hasten the establishment of a national human rights institution in line with the Paris Principles", - "values": [ - "National Human Rights Institution" - ] - }, - { - "text": "Intensify its efforts to combat child prostitution, provide effective support to the children affected and sensitize its police forces to this problem in particular through adequate training courses.", - "values": [ - "Human rights education and training", - "Rights of the Child" - ] - }, - { - "text": "Continue its endeavours aimed at an independent judiciary, in accordance with accepted international standards and criteria ", - "values": [ - "Justice" - ] - }, - { - "text": "Include in the national action plan for the promotion and protection of human rights continued attention to and focus on children and an emphasis on ensuring their right to health and education ", - "values": [ - "Right to education", - "Right to health", - "Rights of the Child" - ] - }, - { - "text": "Implement legislative and judicial level measures to ensure that there is no impunity in cases of ritual murders", - "values": [ - "Impunity" - ] - }, - { - "text": "Complete the ratification process for the ICED", - "values": [ - "Enforced disappearances", - "International instruments" - ] - }, - { - "text": "Bring the juvenile justice system fully in line with the relevant conventions and United Nations standards ", - "values": [ - "Justice", - "Rights of the Child" - ] - }, - { - "text": "Establish legal means and practices allowing civil society to develop its activities", - "values": [ - "Civil society", - "Freedom of association and peaceful assembly" - ] - }, - { - "text": "Study the possibility of taking measures against religious discrimination and religious based violence ", - "values": [ - "Freedom of religion and belief", - "Racial discrimination" - ] - }, - { - "text": "Continue implementing its various national programmes and policies, in particular the National Programme for the Protection and Promotion of Human Rights 2013-2016 and the action plan for removing barriers to achieving equal rights in the area of integration 2013-2015", - "values": [ - "General" - ] - }, - { - "text": "Protect persons with albinism", - "values": [ - "Minorities" - ] - }, - { - "text": "Take measures in order to reduce gender stereotypes regarding the roles and the responsibilities of women in the family and in the society ", - "values": [ - "Women's rights" - ] - }, - { - "text": "Ensure the full implementation and undertake an independent assessment of the National Women's Strategy", - "values": [ - "Women's rights" - ] - }, - { - "text": "Prohibit corporal punishment at school, at home and in public institutions for children and in the context of the administration of justice ", - "values": [ - "Rights of the Child", - "Torture and other CID treatment" - ] - }, - { - "text": "Adopt additional measures to prevent all forms of cruel, inhuman or degrading treatment of persons in detention", - "values": [ - "Detention", - "Torture and other CID treatment" - ] - }, - { - "text": "Bring its national legislation fully in line with international standards on freedom of expression by decriminalizing defamation in domestic law", - "values": [ - "Freedom of opinion and expression" - ] - }, - { - "text": "Ensure in its domestic law that the principle of non-refoulement is respected when proceeding with the return of asylum-seekers to countries ", - "values": [ - "Asylum-seekers - refugees" - ] - }, - { - "text": "Promote and advance policies that focus on the alleviation of poverty", - "values": [ - "Poverty" - ] - }, - { - "text": "Revise legislation to decriminalize abortion in cases of pregnancy resulting from rape or incest and in cases where the life or health of the mother is at risk, as recommended previously ", - "values": [ - "UPR process", - "Women's rights" - ] - }, - { - "text": "Guarantee fully the independence of the judiciary, in conformity with relevant international norms", - "values": [ - "Justice" - ] - }, - { - "text": "Take all measures necessary to accelerate its criminal justice procedure and improve the conditions of its prisons and detentions centres, including the elimination of overcrowding", - "values": [ - "Detention", - "Justice" - ] - }, - { - "text": "Continue to work toward improving access to health ", - "values": [ - "Right to health" - ] - }, - { - "text": "Ratify the Convention against Torture and Other Cruel, Inhuman or Degrading Treatment or Punishment and ensure that the instrument of ratification is fully consistent with the Convention ", - "values": [ - "International instruments", - "Torture and other CID treatment" - ] - }, - { - "text": "Immediately cease the practice of forced anal examinations of lesbian, gay, bisexual, transgender and intersex persons, which are contrary to its obligations under the Convention against Torture", - "values": [ - "Sexual Orientation and Gender Identity", - "Torture and other CID treatment" - ] - }, - { - "text": "Vest the national Commission on Inquiry on Enforced Disappearances greater authority and resources to conduct investigations", - "values": [ - "Enforced disappearances" - ] - }, - { - "text": "Ensure that all migrants have effective access to services related to economic, social and cultural rights, irrespective of their migration status ", - "values": [ - "ESC rights - general", - "Migrants" - ] - }, - { - "text": "Guarantee the rights of minority groups, particularly those of religious minorities and lesbian, gay, bisexual and transgender persons, through effective legal action against incitement to hatred and violent acts, as well as by revising legislation that can have discriminatory effects", - "values": [ - "Freedom of religion and belief", - "Minorities", - "Racial discrimination", - "Sexual Orientation and Gender Identity" - ] - }, - { - "text": "Ensure that the laws of the high level regulating the fight against terrorism are consistent with international standards of human rights protection ", - "values": [ - "Counter-terrorism", - "International instruments" - ] - }, - { - "text": "Incorporate into its legislation a definition of discrimination against women and the principle of equality between women and men, in accordance with CEDAW ", - "values": [ - "International instruments", - "Women's rights" - ] - }, - { - "text": "Continue its efforts in fighting all forms of violence against women", - "values": [ - "Women's rights" - ] - }, - { - "text": "Further invest in achieving the Millennium Development Goals (MDGs) on maternal health including access to equipment, drugs and supplies. transportation for medical referrals. and partnerships with other medical personnel", - "values": [ - "Right to health", - "Women's rights" - ] - }, - { - "text": "Engage constructively in consultations with civil society, broadcasters and other relevant stakeholders in order to cease the current status quo and public discontent over the procedure and content of the new draft media laws", - "values": [ - "Civil society", - "Freedom of the press" - ] - }, - { - "text": "Acknowledge the existence of human rights violations, including those in facilities which it describes as "reform through labour camps", and provide international humanitarian organisations with immediate access to these facilities and their victims, dismantle all camps and release all political prisoners, and clarify with full detail the fate of any disappeared persons who cannot be readily traced", - "values": [ - "Detention", - "Enforced disappearances", - "Freedom of opinion and expression", - "Labour" - ] - }, - { - "text": "The Maldives rejects this [100.6] recommendation. Notwithstanding, the Maldives is committed to maintaining a moratorium on the death penalty as its recent vote at the UN General Assembly demonstrates.", - "values": [ - "Death penalty" - ] - }, - { - "text": "Develop efforts to formulate a national strategy to ensure the full realization of the right to adequate housing that incorporates social housing and also the reconstruction of the housing areas destroyed during the violence of June 2010", - "values": [ - "Right to housing" - ] - }, - { - "text": "Amend its electoral laws to bring them in line with the OSCE Office for Democratic Institutions and Human Rights recommendations for electoral reform to demonstrate respect for democratic political processes, freedom of association, and freedom of expression ahead of the 2015 presidential election", - "values": [ - "Elections", - "Freedom of association and peaceful assembly", - "Freedom of opinion and expression" - ] - }, - { - "text": "Take measures to prevent domestic violence, including by raising awareness, encouraging women to report acts of sexual and domestic violence, protecting the victims and ensuring the effective investigation, prosecution and punishment of perpetrators", - "values": [ - "Human rights education and training", - "Rights of the Child", - "Women's rights" - ] - }, - { - "text": "Reinstate the moratorium on the death penalty with a view to abolishing it", - "values": [ - "Death penalty" - ] - }, - { - "text": "Continue to develop appropriate prison facilities for women, in accordance with the UN's Standard Minimum Rules for the Treatment of Female Prisoners and Non-Custodial Measures for Women Offenders", - "values": [ - "Detention", - "Women's rights" - ] - }, - { - "text": "Continue its efforts to build an inclusive, diverse and tolerant society ", - "values": [ - "General" - ] - }, - { - "text": "Ratify the Convention on the Rights of the Child and the International Convention on the Protection of the Rights of All Migrant Workers and Members of Their Families", - "values": [ - "International instruments", - "Labour", - "Migrants", - "Rights of the Child" - ] - }, - { - "text": "Continue legal and judicial reforms and harmonization of the laws with international human rights instruments ", - "values": [ - "International instruments" - ] - }, - { - "text": "Create a government task force to create protection programmes, provide resources for recovery and promote prevention through education and media campaigns ", - "values": [ - "Human rights education and training" - ] - }, - { - "text": "Consider acceding to ICCPR and ICESCR ", - "values": [ - "CP rights - general", - "ESC rights - general", - "International instruments" - ] - }, - { - "text": "Continue its cooperation with various international organizations particularly the Office of the United Nations High Commissioner for Human Rights in order to achieve additional progress in the field of economic, social and cultural rights", - "values": [ - "ESC rights - general", - "Technical assistance and cooperation" - ] - }, - { - "text": "Continue implementing measures to combat and prevent racism, racial discrimination and xenophobia, and to guarantee equality of opportunities", - "values": [ - "Racial discrimination" - ] - }, - { - "text": "Further improve the health care in connection with birth delivery and address other causes of maternal mortality and address other causes of maternal mortality and other related issues such as early marriages, lack of reproductive information, unsafe abortions and female genital mutilation ", - "values": [ - "Rights of the Child", - "Torture and other CID treatment", - "Women's rights" - ] - }, - { - "text": "Decriminalize sexual activity between consenting adults and bring its legislation into conformity with international human rights standards by repealing legislative provisions which criminalize carnal intercourse against the order of nature or other sexual activity between consenting adults ", - "values": [ - "International instruments", - "Sexual Orientation and Gender Identity" - ] - }, - { - "text": "Strengthen the process of educational reform", - "values": [ - "Right to education" - ] - }, - { - "text": "Ensure the effective implementation of the National Plan to Reduce Violence against Women and their Children, in particular to protect Aboriginal and Torres Strait Islander women, culturally and linguistically diverse women, and women with disabilities", - "values": [ - "Disabilities", - "Indigenous peoples", - "Rights of the Child", - "Women's rights" - ] - }, - { - "text": "Report regularly to all human rights treaty bodies ", - "values": [ - "Treaty bodies" - ] - }, - { - "text": "Continue improving access to adequate food for the population in extreme poverty, especially in rural areas ", - "values": [ - "Poverty", - "Right to food" - ] - }, - { - "text": "Adopt a binding legal framework for the protection of internally displaced persons in accordance with international standards and the National Policy on Displacement", - "values": [ - "Internally displaced persons" - ] - }, - { - "text": "Track down and arrest the key remaining fugitives accused of war crimes by the Tribunal, namely, former Bosnian Serb General Ratko Mladic and former Croatian Serb political leader Goran Hadzic", - "values": [ - "Justice" - ] - }, - { - "text": "Develop programmes to respond to the HIV-AIDS related needs of sexually active gay men", - "values": [ - "HIV - Aids", - "Sexual Orientation and Gender Identity" - ] - }, - { - "text": "Undertake further efforts to prevent the use of child soldiers and to demobilize and reintegrate child soldiers ", - "values": [ - "International humanitarian law", - "Rights of the Child" - ] - }, - { - "text": "Continue efforts to ensure a life of dignity for members of indigenous communities", - "values": [ - "Indigenous peoples" - ] - }, - { - "text": "Develop and implement appropriate, efficient measures to protect indigenous women and children from all kinds of violence and discrimination ", - "values": [ - "Indigenous peoples", - "Rights of the Child", - "Women's rights" - ] - }, - { - "text": "Step up its effort in improving access to education for children from Ciganos and Roma communities and continue to combat racial stereotypes against those communities ", - "values": [ - "Minorities", - "Right to education", - "Rights of the Child" - ] - }, - { - "text": "Reject proposed Constitutional amendments and draft bills that seek to reduce the age of criminal responsibility", - "values": [ - "Justice", - "Rights of the Child" - ] - }, - { - "text": "Adopt the recommendations of the CAVR and the CTF Commissions, including establishing reparations programs for victims of past human rights violations ", - "values": [ - "Justice" - ] - }, - { - "text": "Carry out measures to prohibit corporal punishment of children in all settings, including the home", - "values": [ - "Rights of the Child", - "Torture and other CID treatment" - ] - }, - { - "text": "Amend or revoke laws and decrees that limit the right to freedom of thought, conscience and religion, including the 1965 Blasphemy Law, the 1969 and 2006 ministerial decrees on building houses of worship and religious harmony and the 2008 Joint Ministerial Decree on Ahmadiyah to bring these laws into line with international human rights standards ", - "values": [ - "Freedom of religion and belief", - "International instruments", - "Minorities" - ] - }, - { - "text": "Study the possibility of ratifying the Convention on the Rights of Persons with Disabilities", - "values": [ - "Disabilities", - "International instruments" - ] - }, - { - "text": "Allocate sufficient resources in order to ensure full implementation of the Council of Europe Convention on Preventing and Combating Violence against Women and Domestic Violence", - "values": [ - "International instruments", - "Rights of the Child", - "Women's rights" - ] - }, - { - "text": "Abolish section 377 A of the Penal Code", - "values": [ - "Sexual Orientation and Gender Identity" - ] - }, - { - "text": "Take all measures in further implementing its National Human Rights Action Plan, in particular by allocating sufficient funding from the national budget", - "values": [ - "General" - ] - }, - { - "text": "Bring all the national legislation into conformity with the 2009 Anti Discrimination Law", - "values": [ - "Other" - ] - }, - { - "text": "Submit its report to the Human Rights Committee", - "values": [ - "Treaty bodies" - ] - }, - { - "text": "Adopt necessary measures to guarantee fair justice for all", - "values": [ - "Justice" - ] - }, - { - "text": "Continue to promote the effective implementation of the Durban Declaration and Programme of Action by the international community, in order to combat racism", - "values": [ - "Racial discrimination" - ] - }, - { - "text": "Speed up the process of ratification of the Convention against Torture and the Optional Protocol to the Convention on the Rights of the Child on the involvement of children in armed conflict", - "values": [ - "International humanitarian law", - "International instruments", - "Rights of the Child", - "Torture and other CID treatment" - ] - }, - { - "text": "Continue its leadership role at the regional level, particularly with regard to facilitating dialogue and enhancing cooperation with the receiving and sending States of contractual labourers.", - "values": [ - "Migrants" - ] - }, - { - "text": "Continue to criminalize consensual same sex, which is outside the purview of universally accepted human rights norms, according to Tonga's national legislation.", - "values": [ - "Sexual Orientation and Gender Identity" - ] - }, - { - "text": "Take the necessary measures to ensure that education promotes respect for human rights and participation in a free society", - "values": [ - "Human rights education and training", - "Right to education" - ] - }, - { - "text": "Furthermore, in regard to special procedures, the Government stressed that The Gambia was committed to cooperate with the procedures and mandates and would treat with utmost urgency any request for invitations by them.", - "values": [ - "Special procedures" - ] - }, - { - "text": "Consider the adoption of the necessary measures to eradicate discrimination on the grounds of sexual orientation", - "values": [ - "Sexual Orientation and Gender Identity" - ] - }, - { - "text": "Organize a national campaign to raise awareness on the specific needs of women victims of domestic violence and gender-based violence", - "values": [ - "Human rights education and training", - "Rights of the Child", - "Women's rights" - ] - }, - { - "text": "Take legislative and concrete measures to prevent the use of torture and bring to justice those responsible for such violations", - "values": [ - "Torture and other CID treatment" - ] - }, - { - "text": "Finalize the process of appointing the Justice Ombudsman to strengthen action in the field by the CNDHC ", - "values": [ - "National Human Rights Institution" - ] - }, - { - "text": "Ratify, without limiting reservations, the Convention on the Elimination of All Forms of Discrimination against Women and its Optional Protocol ", - "values": [ - "International instruments", - "Women's rights" - ] - }, - { - "text": "Consider the ratification of and accession to all outstanding human rights instruments ", - "values": [ - "International instruments" - ] - }, - { - "text": "Explicitly prohibit corporal punishment of children in all settings, including the home", - "values": [ - "Rights of the Child", - "Torture and other CID treatment" - ] - }, - { - "text": "Take all necessary measures to put an end to impunity by prosecuting alleged perpetrators in accordance with law and international standards ", - "values": [ - "Impunity" - ] - }, - { - "text": "Put in place measures to support the work of human rights defenders ", - "values": [ - "Human rights defenders" - ] - }, - { - "text": "Continue its efforts to eradicate illiteracy and to consider urging the cooperation of other countries engaged in that endeavour", - "values": [ - "Right to education" - ] - }, - { - "text": "Sustain and create new platforms for human rights education", - "values": [ - "Human rights education and training" - ] - }, - { - "text": "Implement without further delay all relevant judgements of the European Court of Human Rights, including those in which grave human rights violations by Turkey have been established in the occupied areas of Cyprus under effective control of Turkey", - "values": [ - "Other" - ] - }, - { - "text": "Ratify as early as possible the International Convention on the Rights of Persons with Disabilities\n", - "values": [ - "Disabilities", - "International instruments" - ] - }, - { - "text": "Ensure the compliance of its National Ombudsman with the Paris Principles", - "values": [ - "National Human Rights Institution" - ] - }, - { - "text": "Include sexual orientation and gender identity as grounds in antidiscrimination legislation, and provide training to law enforcement and judicial officials to promote respect for the rights of all persons, regardless of their sexual orientation or gender identity", - "values": [ - "Human rights education and training", - "Sexual Orientation and Gender Identity" - ] - }, - { - "text": "Intensify efforts to enforce existing laws and/or create laws to protect children from discrimination and violence, particularly sexual violence ", - "values": [ - "Rights of the Child" - ] - }, - { - "text": "Adopt effective prevention and education measures to end all cases of child marriage and female genital mutilation", - "values": [ - "Rights of the Child", - "Torture and other CID treatment", - "Women's rights" - ] - }, - { - "text": "Gabon pledged to include civil society in its action and to turn to the National Human Rights Commission not only for the preparation of national reports but also for other activities related to the promotion and protection of human rights", - "values": [ - "Civil society", - "National Human Rights Institution", - "UPR process" - ] - }, - { - "text": "Consider ratifying the United Nations Educational, Scientific and Cultural Organization (UNESCO) Convention against Discrimination in Education", - "values": [ - "International instruments", - "Right to education" - ] - }, - { - "text": "Seek further cooperation with the international community and relevant United Nations agencies to enhance its technical capacity-building in mitigating the impact of climate change on its efforts to promote and protect human rights within its country", - "values": [ - "Environment", - "Technical assistance and cooperation" - ] - }, - { - "text": "Review the current practice of participatory rights of persons with disabilities in elections, with the aim of identifying the necessary changes in consultation with relevant stakeholders, and implementing measures to ensure the voting rights of persons with disabilities", - "values": [ - "Disabilities", - "Elections" - ] - }, - { - "text": "Release under-age fighters from its military forces and effectively prosecute persons who are responsible for recruiting children for armed groups, in particular in camps and villages in Eastern Chad, criminalize recruitment of children under domestic laws and establish a national institution to coordinate the release and reintegration of released children, as agreed during the visit of the Secretary-General's Special Representative in May 2008 .", - "values": [ - "Rights of the Child" - ] - }, - { - "text": "Adopt temporary special measures to facilitate greater participation and representation of women in public offices, particularly in fields relating to political and civil rights", - "values": [ - "Women's rights" - ] - }, - { - "text": "Continue to pursue its national poverty reduction plans and promote gender equality and empowerment of women ", - "values": [ - "Poverty", - "Women's rights" - ] - }, - { - "text": "Continue its on-going positive efforts for the promotion and protection of economic, social and cultural rights, and especially the priority given to health and education ", - "values": [ - "ESC rights - general", - "Right to education", - "Right to health" - ] - }, - { - "text": "Bring national laws fully into line with its obligations under ICCPR, CEDAW, CAT and CRC ", - "values": [ - "CP rights - general", - "International instruments", - "Rights of the Child", - "Torture and other CID treatment", - "Women's rights" - ] - }, - { - "text": "Continue to improve its policies to protect the rights of women", - "values": [ - "Women's rights" - ] - }, - { - "text": "Provide the judicial system with solid logistical and administrative foundations in order to avoid delays, procedural impasses and the replacement of judges, particularly in on-going human rights trials", - "values": [ - "Justice" - ] - }, - { - "text": "Eliminate all forms of child marriage and raise the minimum age of marriage to 18", - "values": [ - "Rights of the Child" - ] - }, - { - "text": "Protect and fulfil children's rights, eradicating child labour and the sexual exploitation of minors", - "values": [ - "Labour", - "Rights of the Child" - ] - }, - { - "text": "Abolish the "Security Surveillance Law", which restricts freedoms of former political prisoners and prisoners of conscience", - "values": [ - "Detention", - "Freedom of opinion and expression", - "Freedom of religion and belief" - ] - }, - { - "text": "Continue the realization of all national efforts and international cooperation for the establishment of a national human rights institution in accordance with the Paris Principles", - "values": [ - "National Human Rights Institution" - ] - }, - { - "text": "Ensure that all judgments and sentences handed down by indigenous courts respect international provisions and, in that regard, to establish an appeals system and an independent monitoring system", - "values": [ - "Indigenous peoples" - ] - }, - { - "text": "Follow the recommendations of the 2014 Organization for Security and Cooperation in Europe election observation missions's final report", - "values": [ - "Elections" - ] - }, - { - "text": "Establish a sustainable cooperation between the Ministry of Interior and civil society organizations dealing with domestic and gender-based violence", - "values": [ - "Civil society", - "Rights of the Child", - "Women's rights" - ] - }, - { - "text": "Ratify the core ILO conventions, including the Domestic Workers Convention, 2011 (No. 189), and reform the law on sponsorship, removing the requirement for foreign nationals to obtain the permission of their current employer before changing jobs or leaving the country ", - "values": [ - "International instruments", - "Labour" - ] - }, - { - "text": "Ensure that detention conditions and provisions for access to legal and in particular judicial remedies comply with international standards and strengthen the training of police and other law enforcement officials and set up effective mechanisms to ensure an independent investigation of alleged misconduct", - "values": [ - "Detention", - "Human rights education and training" - ] - }, - { - "text": "Release of all prisoners of conscience ", - "values": [ - "Detention", - "Freedom of religion and belief" - ] - }, - { - "text": "Prioritise the review and reform of the legislative framework to fully safeguard the rights of unaccompanied minors, including through finalisation of its National Action Plan on the Rights of the Child", - "values": [ - "Rights of the Child" - ] - }, - { - "text": "Continue with the effective implementation of measures to combat discrimination and violence based on sexual orientation and gender identity, particularly through the implementation of differentiated approaches to guarantee the enjoyment of the rights of lesbian, gay, bisexual, transgender and intersex persons", - "values": [ - "Sexual Orientation and Gender Identity" - ] - }, - { - "text": "Expedite the review of the relevant domestic laws and administrative practices to facilitate ratification of the four fundamental conventions of ILO that the Republic of Korea has not yet ratified", - "values": [ - "Freedom of association and peaceful assembly", - "International instruments", - "Labour" - ] - }, - { - "text": "Cease the use of caning as a form of punishment", - "values": [ - "Torture and other CID treatment" - ] - }, - { - "text": "Review domestic legislation that criminalizes peaceful political dissent and review arrest warrants issued on the basis of such legislation ", - "values": [ - "Freedom of association and peaceful assembly" - ] - }, - { - "text": "Take steps aimed at properly accrediting the Ombudsperson, taking into account that the Public Defender of Rights (Ombudsperson) already complies with many of the Paris Principles", - "values": [ - "National Human Rights Institution" - ] - }, - { - "text": "Strengthen efforts made to address the causes of ethnic conflicts on its territory and take necessary measures to prevent and sanction the forced recruitment of minors under the age of 18 ", - "values": [ - "Rights of the Child" - ] - }, - { - "text": "Ensure the implementation of child labour laws, including by strengthening effective monitoring", - "values": [ - "Labour", - "Rights of the Child" - ] - }, - { - "text": "Consider the total abolition of the death penalty", - "values": [ - "Death penalty" - ] - }, - { - "text": "Strengthen and improve press freedom and freedom of speech, including in its consideration of draft laws currently before the National Assembly, notably the revised press law and the law on public gatherings", - "values": [ - "Freedom of association and peaceful assembly", - "Freedom of opinion and expression", - "Freedom of the press" - ] - }, - { - "text": "Strengthen measures to respect the Standard Minimum Rules for the Treatment of Prisoners", - "values": [ - "Detention" - ] - }, - { - "text": "Withdraw all reservations to international human rights treaties and implement their provisions fully and in good faith", - "values": [ - "International instruments" - ] - }, - { - "text": "Strengthen safeguards against wrongful sentencing to death and subsequent wrongful execution by ensuring, inter alia, effective legal representation for defendants in death penalty cases, including at the post- conviction stage", - "values": [ - "Death penalty" - ] - }, - { - "text": "Take measure to protect the LGBTI community, especially by decriminalizing consensual sexual acts between adult males and by implementing legislation ending discrimination based on sexual orientation and gender identity", - "values": [ - "Sexual Orientation and Gender Identity" - ] - }, - { - "text": "Introduce strong legislation prohibiting attacks against journalists to effectively investigate such acts and prosecute the perpetrators", - "values": [ - "Freedom of the press" - ] - }, - { - "text": "Swiftly finalize the Family Peace Act Implementation Plan to ensure the Act is effective in providing protection and redress for victims of domestic violence", - "values": [ - "Rights of the Child", - "Women's rights" - ] - }, - { - "text": "Continue its efforts to involve relevant stakeholders, including civil society, as a partner of the Government in promoting and protecting human rights", - "values": [ - "Civil society" - ] - }, - { - "text": "Continue increasing skills development programmes to public officers and staff, hospital staff and police officers on how to assist persons with disabilities as well as children with special needs", - "values": [ - "Disabilities" - ] - }, - { - "text": "We are committed to expanding access to health care to all our citizens and as such, have made efforts to strengthen and protect our social and health care programs: Medicare for the elderly and disabled, and Medicaid for low-income individuals and families. Under the ACA, Medicare beneficiaries have saved billions of dollars on prescription drugs and have seen no increase in rates since 2013. Additionally, Medicare beneficiaries no longer have to pay cost-sharing for preventive services, and nearly nine million individuals have enrolled in coverage in state-run Medicaid programs since October 2013.", - "values": [ - "Right to health" - ] - }, - { - "text": "Reinforce the human rights protection of vulnerable and disabled children ", - "values": [ - "Rights of the Child" - ] - }, - { - "text": "Criminalize explicitly torture in the Criminal Code and bring to justice those accused of practising it", - "values": [ - "Torture and other CID treatment" - ] - }, - { - "text": "Adjust its national laws to the international obligations undertaken.", - "values": [ - "General" - ] - }, - { - "text": "Ratify CEDAW and repeal all laws that permit gender discrimination", - "values": [ - "International instruments", - "Women's rights" - ] - }, - { - "text": "Expedite the ratification of the Optional Protocol to the Convention on the Rights of the Child on the sale of children, child prostitution and child pornography", - "values": [ - "International instruments", - "Rights of the Child", - "Trafficking" - ] - }, - { - "text": "Refrain from reintroducing the death penalty and from lowering the minimum age of criminal responsibility", - "values": [ - "Death penalty" - ] - }, - { - "text": "Strengthen children's access to health services, particularly as regards HIV/AIDS, malaria and tuberculosis", - "values": [ - "HIV - Aids", - "Right to health", - "Rights of the Child" - ] - }, - { - "text": "Provide support for women prisoners with HIV/AIDS ", - "values": [ - "Detention", - "HIV - Aids", - "Women's rights" - ] - }, - { - "text": "Continue efforts to increase the quality of and accessibility to education, including adequate resourcing of teacher training and oversight", - "values": [ - "Right to education" - ] - }, - { - "text": "Establish an official moratorium on the death penalty with a view to its abolition for all crimes", - "values": [ - "Death penalty" - ] - }, - { - "text": "Give attention, once the draft of the Human Rights Plan of Action for the promotion and protection of human rights is enacted, not only to the implementation of its articles but also the monitoring of it", - "values": [ - "General" - ] - }, - { - "text": "Prepare and approve the national human rights action plan and inform Member States of its future implementation ", - "values": [ - "General" - ] - }, - { - "text": "Take into account comments made by members of civil society regarding the rights of those who have lost permanent residency status and who may be entitled to regain it", - "values": [ - "Civil society", - "Statelessness and the right to nationality" - ] - }, - { - "text": "Pass legislation giving same-sex couples the possibility to enter into a civil union contract ", - "values": [ - "Sexual Orientation and Gender Identity" - ] - }, - { - "text": "Strengthen labour protections for all workers in Jordan, with special emphasis on migrants, children, and domestic workers", - "values": [ - "Labour", - "Migrants", - "Rights of the Child" - ] - }, - { - "text": "Incarcerate immigrants only exceptionally ", - "values": [ - "Justice", - "Migrants" - ] - }, - { - "text": "Take all measures necessary to ensure full respect for freedom of expression and to guarantee that journalists can practice their profession freely ", - "values": [ - "Freedom of opinion and expression", - "Freedom of the press" - ] - }, - { - "text": "Continue its efforts, in particular in the area of the juvenile justice system and access to basic health services, especially in prisons, as well as eventual implementation of recommendations that may come out of the review Uzbekistan, with the assistance of the international community.", - "values": [ - "Justice", - "Right to health", - "Rights of the Child", - "UPR process" - ] - }, - { - "text": "Expedite the development of a concrete national implementation framework on human rights", - "values": [ - "General" - ] - }, - { - "text": "Continue to further combat violence against women and adopt necessary legislation to prohibit and criminalize all forms of violence against women and domestic violence", - "values": [ - "Women's rights" - ] - }, - { - "text": "Adopt the law of 2016 on prevention and combating of hate crimes and hate speech and work towards disseminating a culture of coexistence and enhancing the values of tolerance", - "values": [ - "Racial discrimination" - ] - }, - { - "text": "Continue implementing programmes and policies in the area of training aiming at strengthening and developing individual capacities ", - "values": [ - "Other" - ] - }, - { - "text": "Share its experience with other developing countries with respect to its achievements, especially in welfare, education and health sectors ", - "values": [ - "Right to education", - "Right to health" - ] - }, - { - "text": "Adopt a comprehensive national strategy to fight all forms of violence against women, including women rights defenders, both on the public and the domestic level, especially sexual harassment", - "values": [ - "Human rights defenders", - "Women's rights" - ] - }, - { - "text": "Continue to proceed with the adoption of the National Action Programme in the field of human rights in accordance with the provisions of the Vienna Declaration and Programme of Action on Human Rights ", - "values": [ - "Human rights education and training" - ] - }, - { - "text": "Ensure the Office of the Ombudsperson is sufficiently resourced to carry out anti-discrimination functions ", - "values": [ - "National Human Rights Institution" - ] - }, - { - "text": "Continue its efforts towards expediting the domestication of its international obligations in the area of human rights into the national legal system ", - "values": [ - "International instruments" - ] - }, - { - "text": "Ensure that the right to freedom of expression and its other international human rights commitments are upheld in any move to adopt a cyber law", - "values": [ - "Freedom of opinion and expression", - "International instruments" - ] - }, - { - "text": "Revise the election law to guarantee a 30 per cent representation of women on electoral lists, as this would be positive step towards equality", - "values": [ - "Elections", - "Women's rights" - ] - }, - { - "text": "Develop a national policy to address trafficking in persons", - "values": [ - "Trafficking" - ] - }, - { - "text": "Continue to carry out efforts to reduce the incidence of poverty and lessen inequalities in income and education", - "values": [ - "Poverty" - ] - }, - { - "text": "Continue to expand the legal framework for the promotion and protection of human rights, including through the ratification of CAT, CRPD, and CED ", - "values": [ - "Disabilities", - "Enforced disappearances", - "International instruments", - "Torture and other CID treatment" - ] - }, - { - "text": "Continue cooperation with OHCHR with a view to making necessary improvements in the fields of legislative reform on the punishment of sexual abuse of children, land and family laws, and the establishment of a national human rights commission and a human rights office.", - "values": [ - "National Human Rights Institution", - "Right to land", - "Rights of the Child", - "Technical assistance and cooperation", - "Women's rights" - ] - }, - { - "text": "Continue its engagement with the UPR process and work in close cooperation with civil society to implement recommendations arising out of it", - "values": [ - "Civil society", - "UPR process" - ] - }, - { - "text": "Expedite the current preparations in order to specify the ratification of the Optional Protocol to the International Covenant on Civil and Political Rights", - "values": [ - "CP rights - general" - ] - }, - { - "text": "With regard to Recommendations 70.36 to 70.41, which related to the abolition of corporal punishment, the delegation stated that public opinion in Guyana was not in favour of the abolition of corporal punishment. The delegation indicated that Guyana has noted these recommendations and was voluntarily committed to consult and report on the results of the consultative process. In this regard, the delegation pointed out that consultations in Guyana were on-going on a draft Education Bill which included discussion on the issue of corporal punishment. Furthermore, Guyana has tabled amendments to the Training School Act and the Juvenile Offenders Act to remove corporal punishment from juvenile detention centres, which demonstrated Guyana's commitment to protecting children from all forms of abuse. These bills will be debated in October 2010 in the National Assembly. The delegation also emphasized that the Protection of Children Act 2009, the Domestic Violence Act 1997 and the Child Care Protection Agency offered a legislative and administrative framework to protect children from abuse.", - "values": [ - "Rights of the Child", - "Torture and other CID treatment" - ] - }, - { - "text": "Mobilize the necessary resources for the successful implementation of national programmes in the area of economic, social and cultural rights, such as the second poverty reduction strategy, Agenda for Change, and the health and education strategies ", - "values": [ - "ESC rights - general", - "Poverty", - "Right to education", - "Right to health" - ] - }, - { - "text": "Take measures to ensure the protection of freedom of religion or belief for religious minorities in line with the Constitution of Indonesia", - "values": [ - "Freedom of religion and belief", - "Minorities" - ] - }, - { - "text": "Continue with efforts to fight against human trafficking ", - "values": [ - "Trafficking" - ] - }, - { - "text": "Implement an expanded social and voluntary housing programme for Roma families, and in this regard, enhance collaboration with civil society and full participation of all relevant stakeholders", - "values": [ - "Civil society", - "Minorities", - "Right to housing" - ] - }, - { - "text": "Continue efforts in promoting women's rights", - "values": [ - "Women's rights" - ] - }, - { - "text": "Strengthen efforts aimed at protecting the rights of children in need, children who are victims of labour exploitation and children vulnerable to exploitation and violence ", - "values": [ - "Labour", - "Rights of the Child" - ] - }, - { - "text": "Authorize and facilitate the medical evacuation of civilians", - "values": [ - "International humanitarian law" - ] - }, - { - "text": "Ensure more effective protection of victims of domestic violence ", - "values": [ - "Rights of the Child", - "Women's rights" - ] - }, - { - "text": "Contribute to an acceptable solution for the people living in refugee camps and give particular attention to the elderly and to those who have been separated from their families", - "values": [ - "Asylum-seekers - refugees" - ] - }, - { - "text": "Reconsider the inclusion in the draft criminal code of the provision criminalizing same-sex sexual relations.", - "values": [ - "Sexual Orientation and Gender Identity" - ] - }, - { - "text": "Take measures as necessary to ensure free circulation of humanitarian workers so that they may access refugees and displaced persons.", - "values": [ - "Asylum-seekers - refugees", - "Internally displaced persons" - ] - }, - { - "text": "Share the experience of Bosnia and Herzegovina in the field of multi-ethnic teaching of tolerance in schools", - "values": [ - "Human rights education and training", - "Minorities" - ] - }, - { - "text": "Continue to fight poverty with the active support of the international community", - "values": [ - "Poverty", - "Technical assistance and cooperation" - ] - }, - { - "text": "Take steps to ensure the provision of appropriate support for parents and families at risk to prevent the abandonment of children", - "values": [ - "Rights of the Child" - ] - }, - { - "text": "Implement the action plan against sexual violence against women and adopt measures to further criminalize female genital mutilation", - "values": [ - "Rights of the Child", - "Torture and other CID treatment", - "Women's rights" - ] - }, - { - "text": "The MSAR [Macao Special Administrative Region] Government commits to extend compulsory education until the end of secondary school.", - "values": [ - "Right to education" - ] - }, - { - "text": "Recommended considering amendment of the Jordanian Nationality Act with respect to the right of children to a nationality, as the law currently does not allow a Jordanian mother married to a non-Jordanian man to confer her nationality to her children", - "values": [ - "Rights of the Child", - "Statelessness and the right to nationality", - "Women's rights" - ] - }, - { - "text": "Step up efforts to effectively implement the Elimination of Violence against Women law and the programs outlined in the National Action Plan for Afghan Women ", - "values": [ - "Women's rights" - ] - }, - { - "text": "Consider signing the International Convention on the Protection of the Rights of All Migrant Workers and Members of Their Families ", - "values": [ - "International instruments", - "Labour", - "Migrants" - ] - }, - { - "text": "Amend the relevant national legislation, including the Law on Associations and Institutions, to reduce restrictions on procedures for establishing associations ", - "values": [ - "Civil society", - "Freedom of association and peaceful assembly" - ] - }, - { - "text": "Continue efforts to ensure free access to health care throughout the country", - "values": [ - "Right to health" - ] - }, - { - "text": "Entrust the Inter-ministerial Committee on Human Rights with drafting the overdue reports to the United Nations Human Rights Treaty Bodies, including on ICESCR, ICCPR, CERD and CRPD", - "values": [ - "Treaty bodies" - ] - }, - { - "text": "Investigate all cases of racism, xenophobia and Islamophobia, and ensure that tolerance and intercultural understanding are promoted and conveyed to the public", - "values": [ - "Racial discrimination" - ] - }, - { - "text": "Initiate a debate on the death penalty, with a view to reaching responsive conclusions consistent with international human rights law.", - "values": [ - "Death penalty", - "International instruments" - ] - }, - { - "text": "Ratify the International Convention for the Protection of All Persons from Enforced Disappearance, Optional Protocol to the Convention against Torture, and Optional Protocol to the Convention on the Elimination of All Forms of Discrimination against Women ", - "values": [ - "Detention", - "Enforced disappearances", - "International instruments", - "Torture and other CID treatment", - "Women's rights" - ] - }, - { - "text": "Continue to take steps to ensure that Yemeni authorities at all levels respect the integrity of persons and support the human rights standards set out in the Constitution.", - "values": [ - "General" - ] - }, - { - "text": "Ensure nationwide access to barrier-free protection and support facilities for women with disabilities affected by violence ", - "values": [ - "Disabilities", - "Women's rights" - ] - }, - { - "text": "Continue strengthening social plans and programmes under implementation to combat poverty, exclusion and social inequality, with an emphasis on employment, food and health for the benefit of the population, with particular attention to those most vulnerable sectors, and for which it is extremely important to have the support, assistance and cooperation of the community of nations ", - "values": [ - "Poverty", - "Right to food", - "Right to health", - "Technical assistance and cooperation" - ] - }, - { - "text": "Comply with the international cooperation principles laid down in General Assembly resolution 3074 (XXVIII) regarding the extradition of persons accused of crimes against humanity, and extradite former Bolivian authorities legally charged for their trial in the country of origin", - "values": [ - "Justice" - ] - }, - { - "text": "As a part of its commitment to guarantee civil and political rights as well as economic, social and cultural rights of its people, Sri Lanka will continue to align its development strategy within the larger framework of promoting local values and social protection for women, children, elderly and differently-abled people and other vulnerable groups in society and respect for human rights and good governance", - "values": [ - "Disabilities", - "Justice", - "Rights of the Child", - "Women's rights" - ] - }, - { - "text": "Continue its efforts to fight poverty with the support and cooperation of the international community ", - "values": [ - "Poverty", - "Technical assistance and cooperation" - ] - }, - { - "text": "Immediately release Zinaida Mukhortova from forced psychiatric detention and ensure that involuntary detention on mental health grounds should only be possible in exceptional circumstances clearly defined in law, and based on a determination by qualified health care professionals", - "values": [ - "Detention" - ] - }, - { - "text": "Ensure dialogue with important sectors of civil society, leaving aside stigmatizing speech and anything that would be unjustified on one side or the other. in this context, it is especially important to finalize the agreed national human rights plan of action", - "values": [ - "Civil society" - ] - }, - { - "text": "Adopt administrative and legislative measures to combat domestic violence and physical ill-treatment of children", - "values": [ - "Rights of the Child" - ] - }, - { - "text": "Adopt socio-economic measures aimed at ensuring the social and labour integration of the Roma minority ", - "values": [ - "Minorities" - ] - }, - { - "text": "Continue policies and programs aiming at the improvement of women's participation in the political life and decision-making processes, including through measures aimed at reserving a quota in positions in the Parliament and Administrations for women, following international good practices", - "values": [ - "Women's rights" - ] - }, - { - "text": "Join the International Labour Organization (ILO) and accede to relevant ILO conventions.", - "values": [ - "International instruments", - "Labour" - ] - }, - { - "text": "Maintain the efforts to guarantee equal access to education, particularly for women and children", - "values": [ - "Right to education", - "Rights of the Child", - "Women's rights" - ] - }, - { - "text": "Pass the intended law on protection against domestic violence as soon as possible.", - "values": [ - "Rights of the Child", - "Women's rights" - ] - }, - { - "text": "Repeal laws that negatively impact religious freedom, such as those that limit the right of women and minors to participate in religious activities, ban some minority religious groups and penalize unauthorized religious activity ", - "values": [ - "Freedom of religion and belief", - "Minorities", - "Rights of the Child", - "Women's rights" - ] - }, - { - "text": "Accede early to the 1968 Convention on the Non-Applicability of the Statutory Limitations to War Crimes and Crimes Against Humanity, without any reservations that might defeat the purpose and object of that Convention ", - "values": [ - "International instruments", - "Justice" - ] - }, - { - "text": "Continue and strengthen efforts to prevent and eliminate child marriage", - "values": [ - "Rights of the Child" - ] - }, - { - "text": "Continue its efforts to implement all measures related to the protection of rights of women, children and disabled persons", - "values": [ - "Disabilities", - "Rights of the Child", - "Women's rights" - ] - }, - { - "text": "Continue efforts on achieving gender equality and fighting against human trafficking", - "values": [ - "Trafficking", - "Women's rights" - ] - }, - { - "text": "Endeavour to sustain the maximum humane care for "illegal immigrants" and assist them to utilize, on a timely basis, the prevailing legal system in the country to address their situation ", - "values": [ - "Migrants" - ] - }, - { - "text": "Take measures to ensure the implementation of national and international norms on trafficking in persons, particularly children, including through the establishment of a national births register", - "values": [ - "Rights of the Child", - "Trafficking" - ] - }, - { - "text": "Consider withdrawing the reservations made to the CRC", - "values": [ - "International instruments", - "Rights of the Child" - ] - }, - { - "text": "Take measures to prosecute the perpetrators of human rights violations that specifically target members of religious groups in order to safeguard freedom of religion and ensure the right to security of the person", - "values": [ - "Freedom of religion and belief", - "Public security" - ] - }, - { - "text": "Consider issuing a moratorium on the execution of death penalty sentences ", - "values": [ - "Death penalty" - ] - }, - { - "text": "Enact and implement legislation that prohibits discrimination in employment and occupation based on disability, language, sexual orientation, gender identity, and HIV-positive status or other communicable diseases", - "values": [ - "Disabilities", - "HIV - Aids", - "Labour", - "Minorities", - "Sexual Orientation and Gender Identity", - "Women's rights" - ] - }, - { - "text": "Put in place policies on accessibility for persons with disabilities with a view to allow them to be more active members of the society, including in the labour market ", - "values": [ - "Disabilities", - "Labour" - ] - }, - { - "text": "Establish as soon as possible a National Prevention Mechanism, in accordance with the Optional Protocol to the Convention against Torture ", - "values": [ - "Detention", - "International instruments", - "Torture and other CID treatment" - ] - }, - { - "text": "Strengthen and ensure the independence of its human rights institutions such as the National Human Rights Commission.", - "values": [ - "National Human Rights Institution" - ] - }, - { - "text": "Pursue its efforts against poverty with appropriate and focused assistance from the international community, including OHCHR.", - "values": [ - "Poverty", - "Technical assistance and cooperation" - ] - }, - { - "text": "Continue to improve the living conditions of migrants, refugees and asylum seekers", - "values": [ - "Asylum-seekers - refugees", - "Migrants" - ] - }, - { - "text": "Sign the Second Optional Protocol to the International Covenant on Civil and Political Rights and establish a moratorium on executions with a view to abolishing the death penalty", - "values": [ - "Death penalty", - "International instruments" - ] - }, - { - "text": "Remove reservations to the Article 16(1) of the Convention on Elimination of All Forms of Discrimination against Women ", - "values": [ - "International instruments", - "Women's rights" - ] - }, - { - "text": "Ensure conformity of national legislation with the international legal instruments on human rights, in particular the Convention on the Elimination of All Forms of Discrimination against Women", - "values": [ - "International instruments", - "Women's rights" - ] - }, - { - "text": "Ensure that children living and working on the street are provided with adequate protection, assistance, health care, education and shelter", - "values": [ - "Rights of the Child" - ] - }, - { - "text": "Ensure independent, effective and speedy investigation into violations of the right to freedom of expression committed by officials engaged in law enforcement duties, hold those responsible to account, and provide redress to victims", - "values": [ - "Freedom of opinion and expression" - ] - }, - { - "text": "End the harassment and persecution of journalists and release the detained Washington Post reporter, Jason Rezaian, to demonstrate its commitment to freedom of expression", - "values": [ - "Detention", - "Freedom of opinion and expression", - "Freedom of the press" - ] - }, - { - "text": "Adopt measures that ensure that detainees are treated in accordance with international human rights standards, prosecute cases of torture and end arbitrary detentions of persons, including of the so-called "G15" ", - "values": [ - "Detention", - "International instruments" - ] - }, - { - "text": "Continue making progress in the implementation of the national reconciliation project through the Ministries of National Integration and Reconciliation and of National Coexistence, Dialogue and Official Languages", - "values": [ - "Justice" - ] - }, - { - "text": "Publicize broadly its National Action Plan against Racism and promote its full implementation", - "values": [ - "Racial discrimination" - ] - }, - { - "text": "Establish a moratorium on executions as a first step towards the abolition of the death penalty", - "values": [ - "Death penalty" - ] - }, - { - "text": "Continue reviewing all reservations made to international human rights instruments with a view to withdrawing them", - "values": [ - "International instruments" - ] - }, - { - "text": "Ensure sustainable and universal access to education for children, including children with disabilities and children living in remote areas", - "values": [ - "Disabilities", - "Right to education", - "Rights of the Child" - ] - }, - { - "text": "Ensure the protection of the right to freedom of religion or belief, expression, association and peaceful assembly by decriminalizing blasphemy and respecting, protecting and fulfilling the rights of all religious minorities, including the Ahmadis, Shia Muslims, Christians and Baha\u2019is", - "values": [ - "Freedom of association and peaceful assembly", - "Freedom of opinion and expression", - "Freedom of religion and belief", - "Minorities" - ] - }, - { - "text": "Harmonize the definition of the child in domestic law and put an end to the voluntary recruitment of minors into the army", - "values": [ - "Rights of the Child" - ] - }, - { - "text": "Withdraw its reservations concerning CEDAW", - "values": [ - "International instruments", - "Statelessness and the right to nationality", - "Women's rights" - ] - }, - { - "text": "That social integration of Roma becomes a reality", - "values": [ - "Minorities" - ] - }, - { - "text": "Give consideration to full abolition of death penalty in all cases, withdraw provisions making the death penalty mandatory, and consider ratification of the Second Optional Protocol to the International Covenant on Civil and Political Rights ", - "values": [ - "Death penalty", - "International instruments" - ] - }, - { - "text": "Consider adopting development plans to improve the living conditions of the vulnerable populations, especially women and children", - "values": [ - "Development", - "Rights of the Child", - "Women's rights" - ] - }, - { - "text": "Consider favourably acceding to the international treaties, to which it is not yet party", - "values": [ - "International instruments" - ] - }, - { - "text": "While the country has ratified the Convention against Transnational Organized Crime, the Government is committed to ratifying the Protocol to Prevent, Suppress and Punish Trafficking in Persons, especially Women and Children.", - "values": [ - "International instruments", - "Public security", - "Rights of the Child", - "Trafficking", - "Women's rights" - ] - }, - { - "text": "Reform the Education Act in order to achieve its compliance with international standards on the protection of the right to autonomy and academic freedom", - "values": [ - "Right to education" - ] - }, - { - "text": "Adopt legislative and other measures to correct and prevent discrimination based on sexual orientation, and to ensure full respect for freedom of expression and association of LGBT persons ", - "values": [ - "Freedom of association and peaceful assembly", - "Freedom of opinion and expression", - "Sexual Orientation and Gender Identity" - ] - }, - { - "text": "Monitor the implementation and ensure compliance with the law on vocational rehabilitation to make sure that persons with disabilities are not subject to discrimination and have equal opportunities to find employment", - "values": [ - "Disabilities", - "Labour" - ] - }, - { - "text": "Repeal the provisions under its criminal legislation that punish sexual relations between consenting adults of the same sex ", - "values": [ - "Sexual Orientation and Gender Identity" - ] - }, - { - "text": "Take appropriate measures to prevent investigations, arbitrary detentions, searches and interrogations by judicial authorities or police agents on the basis of physical appearance, skin colour or ethnic or national origin, impose severe sentences on authorities which get involved in these abuses and ill-treatment ", - "values": [ - "Detention", - "Human rights violations by state agents", - "Racial discrimination", - "Torture and other CID treatment" - ] - }, - { - "text": "Continue consultations with a view to allowing the Uruguayan diaspora to exercise their right to vote ", - "values": [ - "Elections" - ] - }, - { - "text": "Adopt specific additional measures to strengthen the fight against impunity with regard to cases of sexual violence against women and provide greater care for victims ", - "values": [ - "Impunity", - "Women's rights" - ] - }, - { - "text": "Ensure the compliance of the Office of the Ombudsman with the Paris Principles on national human rights institutions for the promotion and protection of human rights", - "values": [ - "National Human Rights Institution" - ] - }, - { - "text": "Reinforce existing educational programmes about the Holocaust, and introduce additional ones, as a key lesson in the fight against racial discrimination", - "values": [ - "Racial discrimination" - ] - }, - { - "text": "Ensure that women - in particular women pursuing divorce or having experienced gender-based violence - have effective access to justice in all parts of the country", - "values": [ - "Women's rights" - ] - }, - { - "text": "Standardize the definition of torture at the national level in compliance with the Convention against Torture ", - "values": [ - "International instruments", - "Torture and other CID treatment" - ] - }, - { - "text": "Continue efforts to combat illegal, unreported, unregulated fishing, including illegal labour in the fisheries sector, taking into account its human rights and extraterritorial dimensions", - "values": [ - "Environment", - "Labour" - ] - }, - { - "text": "Accelerate efforts aimed at raising awareness and education among the general population on human rights, particularly on the rights of women, children and disabled persons ", - "values": [ - "Disabilities", - "Human rights education and training", - "Rights of the Child", - "Women's rights" - ] - }, - { - "text": "Strengthen the role and capacity of the National Civil Police with a view to reducing the role of the armed forces in the maintenance of public order", - "values": [ - "Public security" - ] - }, - { - "text": "Increase efforts to reduce the maternal mortality rate, in particular by adopting a broad strategy on safe maternity, in which priority is given to access to prenatal, postnatal and obstetric quality health services", - "values": [ - "Right to health", - "Women's rights" - ] - }, - { - "text": "Consider ratifying the International Convention on the Protection of the Rights of All Migrant Workers and Members of Their Families.", - "values": [ - "International instruments", - "Labour", - "Migrants" - ] - }, - { - "text": "Develop a comprehensive strategy to effectively improve the situation of the Roma community in areas such as housing, education, employment and health care", - "values": [ - "Minorities" - ] - }, - { - "text": "Initiate a comprehensive study on abuse, ill treatment and domestic violence against women and girls, the results of which can be used as the basis for social programmes to prevent these serious problems", - "values": [ - "Rights of the Child", - "Women's rights" - ] - }, - { - "text": "Civil society be actively involved in the further universal periodic review process of Canada, in a thorough and timely manner.", - "values": [ - "Civil society", - "UPR process" - ] - }, - { - "text": "Adopt comprehensive legislation with regard to extrajudicial executions and torture by police, including measures assuring its application", - "values": [ - "Extrajudicial executions", - "Torture and other CID treatment" - ] - }, - { - "text": "Continue the reform of the judicial system.", - "values": [ - "Justice" - ] - }, - { - "text": "Recognize the pre-election registration status of the National League for Democracy (NLD) and to begin a dialogue of national reconciliation with the NLD and other ethnic and democratic actors in the country ", - "values": [ - "Elections", - "Freedom of association and peaceful assembly" - ] - }, - { - "text": "Enact a plan to achieve national reconciliation based on dialogue and with the full ownership of all Libyans, including women and ethnic, religious and other minorities, while cooperating closely with the United Nations Support Mission in Libya and the Office of the United Nations High Commissioner for Human Rights", - "values": [ - "Freedom of religion and belief", - "Justice", - "Minorities", - "Technical assistance and cooperation", - "Women's rights" - ] - }, - { - "text": "Study further and consider ratification of other international human rights treaties, namely: ICESCR, ICCPR, ICERD and ICRMW ", - "values": [ - "CP rights - general", - "ESC rights - general", - "International instruments", - "Labour", - "Migrants", - "Racial discrimination" - ] - }, - { - "text": "Issue a standing invitation to the United Nations special procedure mandate holders and the representatives of the Inter-American Commission on Human Rights", - "values": [ - "Special procedures" - ] - }, - { - "text": "Further strengthen its national human rights institutions, especially in the form of greater resource allocation", - "values": [ - "National Human Rights Institution" - ] - }, - { - "text": "Take concreate measures to eliminate discrimination against women and girls in law and in practice, also by accelerating the constitutional review in the area of gender equality", - "values": [ - "Rights of the Child", - "Women's rights" - ] - }, - { - "text": "Continue its efforts to promote and protect human rights for its people and hold workshops and seminars to increase public awareness on human rights matters ", - "values": [ - "Human rights education and training" - ] - }, - { - "text": "Consider ratification of the International Covenant on Economic, Social and Cultural Rights, and the Covenant on Civil and Political Rights and its optional Protocols", - "values": [ - "CP rights - general", - "Death penalty", - "ESC rights - general", - "International instruments" - ] - }, - { - "text": "Continue its efforts to promote and protect rights of migrants ", - "values": [ - "Migrants" - ] - }, - { - "text": "Continue to realize concrete measures for the protection of the rights of the child and continue Government support for the institution of the family", - "values": [ - "Rights of the Child" - ] - }, - { - "text": "Ensure full respect for the rule of law, including for the provisions set out in the Constitution for its amendment", - "values": [ - "Justice" - ] - }, - { - "text": "Give access to justice and adequate compensation to women victims of forced sterilization, independently of the date of the sterilization, ethnic origin, nationality or age", - "values": [ - "Justice", - "Torture and other CID treatment", - "Women's rights" - ] - }, - { - "text": "Take all necessary measures to prevent discrimination in hiring in the active population, since access to employment on the part of minorities is limited", - "values": [ - "Labour", - "Minorities", - "Racial discrimination" - ] - }, - { - "text": "Abandon the plan to reduce the age of penal responsibility, as it will lead to prosecuting children like adults prior to giving them the means to become responsible citizens", - "values": [ - "Rights of the Child" - ] - }, - { - "text": "Implement a complete abolition of the death penalty and accede to the Second Optional Protocol of the International Covenant on Civil and Political rights ", - "values": [ - "Death penalty", - "International instruments" - ] - }, - { - "text": "Redouble efforts to achieve gender equality by adopting a more systematic approach to public education in this area, with particular emphasis on the ills and consequences of domestic violence and sexual exploitation of women ", - "values": [ - "Right to education", - "Rights of the Child", - "Women's rights" - ] - }, - { - "text": "Ratify the third Optional Protocol to the Convention on the Rights of the Child on a communications procedure", - "values": [ - "International instruments", - "Rights of the Child" - ] - }, - { - "text": "Share its experience in strengthening education with other countries, in particular with multi-cultural and multi-religious countries", - "values": [ - "Right to education" - ] - }, - { - "text": "Amend the Individuals and Family Code in which consideration is given to prevention and support of victims of gender-based and sexual violence", - "values": [ - "Rights of the Child", - "Women's rights" - ] - }, - { - "text": "Act in earnest to prevent harassment, politically motivated arrests and arbitrary detentions of political opponents and to guarantee that they have equal access to funding and the media, and that all citizens are granted the right to free participation in public and political life", - "values": [ - "Detention", - "Freedom of association and peaceful assembly", - "Freedom of opinion and expression", - "Freedom of the press" - ] - }, - { - "text": "Continue making progress in the implementation of measures to offer assistance and rehabilitation to persons displaced due to natural disasters", - "values": [ - "Environment", - "Internally displaced persons" - ] - }, - { - "text": "Take concrete steps to implement the national Roma strategy within the next two years", - "values": [ - "Minorities" - ] - }, - { - "text": "Continue applying an inclusive approach for the implementation of national programmes in the area of employment", - "values": [ - "Development" - ] - }, - { - "text": "Eradicate the crimes of sexual abuse and trafficking in children", - "values": [ - "Rights of the Child", - "Trafficking" - ] - }, - { - "text": "Consider implementing possible legislative mechanisms that would assist in combating transnational organized crime, in particular drug trafficking and money-laundering", - "values": [ - "Public security" - ] - }, - { - "text": "Costa Rica will continue to adopt new international human rights and humanitarian law instruments, such as the Convention on the Protection and Promotion of the Diversity of Cultural Expressions, the Optional Protocol to the International Covenant on Economic, Social and Cultural Rights, the International Convention for the Protection of All Persons from Enforced Disappearance and the Convention on Cluster Munitions. It will also follow up on the appropriate implementation of the Convention on the Rights of Persons with Disabilities.", - "values": [ - "Disabilities", - "ESC rights - general", - "Enforced disappearances", - "International humanitarian law", - "International instruments" - ] - }, - { - "text": "Implement national socioeconomic policies and continue its efforts to alleviate poverty by 2015 and to graduate from the status of least developed country by 2020", - "values": [ - "Poverty" - ] - }, - { - "text": "Consider taking measures to eliminate forms of discrimination against workers from ethnic minorities", - "values": [ - "Labour", - "Minorities", - "Racial discrimination" - ] - }, - { - "text": "Continue with free pre-natal care services to reduce maternal mortality", - "values": [ - "Right to health", - "Women's rights" - ] - }, - { - "text": "Promptly approve the license applications for all civil society organizations that meet legal requirements, including those organizations advocating for minority populations ", - "values": [ - "Civil society", - "Minorities" - ] - }, - { - "text": "Continue to protect traditional culture and artistic heritage ", - "values": [ - "ESC rights - general" - ] - }, - { - "text": "Accede to and ratify the Second Optional Protocol to the International Covenant on Civil and Political Rights, aiming at the Abolition of the Death Penalty ", - "values": [ - "Death penalty", - "International instruments" - ] - }, - { - "text": "Accelerate its efforts towards adopting the new law on the organization and functioning of the National Human Rights Commission in order to make it more effective", - "values": [ - "National Human Rights Institution" - ] - }, - { - "text": "Consider the possibility to put an end to the judicial proceeding initiated against the deceased Sergei Magnitsky, and reopen investigation on the causes of his death and on the fraud denounced ", - "values": [ - "Justice" - ] - }, - { - "text": "Continue, with the assistance from the relevant international organizations such as the WHO, to enhance access to health care by women and further reduce the maternal mortality rate, especially in the rural areas ", - "values": [ - "Right to health", - "Women's rights" - ] - }, - { - "text": "Continue efforts to bring the National Human Rights Commission in line with the Paris Principles ", - "values": [ - "National Human Rights Institution" - ] - }, - { - "text": "Recognize the full and equal enjoyment of all human rights by all and review and abolish all discriminatory laws, including the law that criminalizes homosexuality ", - "values": [ - "Sexual Orientation and Gender Identity" - ] - }, - { - "text": "Take effective actions to prevent and eradicate all forms of slavery and discrimination", - "values": [ - "Other" - ] - }, - { - "text": "Ensure the appropriate implementation of the Te Rau N Te Mweenga Law from 2014 to combat gender-based violence", - "values": [ - "Women's rights" - ] - }, - { - "text": "Identify plans of action for the enforcement of the Victims and Land Restitution Law ", - "values": [ - "Right to land" - ] - }, - { - "text": "Continue working to be able to incorporate the prohibition of discrimination against women in its national legislation", - "values": [ - "Women's rights" - ] - }, - { - "text": "Establish a national preventative mechanism in compliance with the OP-CAT ", - "values": [ - "Detention", - "International instruments", - "Torture and other CID treatment" - ] - }, - { - "text": "Ensure the safety of drinking water by promoting the construction of a monitoring network for the safety of drinking water ", - "values": [ - "Right to water and sanitation" - ] - }, - { - "text": "Ratify the Optional Protocol to the International Covenant on Civil and Political Rights ", - "values": [ - "CP rights - general", - "International instruments" - ] - }, - { - "text": "Request necessary aid and technical assistance from the international community, notably United Nations development agencies, to be assisted in its efforts to promote and protect human rights in general, and to implement periodic review recommendations in particular ", - "values": [ - "Technical assistance and cooperation", - "UPR process" - ] - }, - { - "text": "Continue its efforts to put in place the conditions for the eventual ratification of the International Convention on the Protection of all Persons from Enforced Disappearance (CPED) ", - "values": [ - "Enforced disappearances", - "International instruments" - ] - }, - { - "text": "Organize regional conferences in Morocco to exchange views and best practices on promoting forward looking initiatives and fostering cooperation between regional groups ", - "values": [ - "Other" - ] - }, - { - "text": "Take steps to create and maintain in law and in practice a safe and enabling environment for civil society and human rights defenders, including by acknowledging publicly their important and legitimate role in the promotion of human rights, democracy and the rule of law, by simplifying the process for forming associations and by applying the good practices set out in Human Rights Council resolution 32/31, and to request and accept technical assistance, including from OHCHR, to fulfil these commitments", - "values": [ - "Civil society", - "Human rights defenders", - "Technical assistance and cooperation", - "Treaty bodies" - ] - }, - { - "text": "Take measures for deinstitutionalization of child-care institutions and development of alternative, family-type services for deprived children", - "values": [ - "Rights of the Child" - ] - }, - { - "text": "Conduct educational campaigns on access to judicial remedies for racial discrimination", - "values": [ - "Racial discrimination" - ] - }, - { - "text": "Set up an inclusive system for access to quality health care for all social categories, in particular disadvantaged and marginalized groups, in consultation with concerned communities and stakeholders", - "values": [ - "Right to health" - ] - }, - { - "text": "Continue and speed up the process of ratification of ICRMW", - "values": [ - "International instruments", - "Labour", - "Migrants" - ] - }, - { - "text": "Intensification of these ongoing efforts by the Government to ensure the speedy establishment of the National Human Rights Commission ", - "values": [ - "National Human Rights Institution" - ] - }, - { - "text": "Prohibit all forms of corporal punishment of children ", - "values": [ - "Rights of the Child", - "Torture and other CID treatment" - ] - }, - { - "text": "Establish a moratorium on the death penalty, as a first step towards complete abolition of this practice and accession to the Second Optional Protocol to the ICCPR", - "values": [ - "Death penalty", - "International instruments" - ] - }, - { - "text": "Continue efforts to reduce poverty through social programmes ", - "values": [ - "Poverty" - ] - }, - { - "text": "Suppress all restrictions to freedom of expression and freedom of the press", - "values": [ - "Freedom of opinion and expression", - "Freedom of the press" - ] - }, - { - "text": "Intensify its efforts to access to education for indigenous peoples and other disadvantaged communities and groups", - "values": [ - "Indigenous peoples" - ] - }, - { - "text": "Use a comprehensive approach to the promotion of gender equality, in particular by adopting a comprehensive law on gender equality as recommended by the CEDAW.", - "values": [ - "Treaty bodies", - "Women's rights" - ] - }, - { - "text": "With the assistance of the international community, undertake a multi-pronged approach to improve the situation of children with greater focus on ensuring universal primary education, reducing infant and child mortality and rehabilitating child combatants.", - "values": [ - "Rights of the Child", - "Technical assistance and cooperation" - ] - }, - { - "text": "Continue efforts to empower women and underprivileged segments of the society", - "values": [ - "Women's rights" - ] - }, - { - "text": "More actively confront the crimes against national minorities", - "values": [ - "Minorities", - "Racial discrimination" - ] - }, - { - "text": "Establish appropriate national strategies with the aim to identify and address structural discrimination in the justice system", - "values": [ - "Justice" - ] - }, - { - "text": "Continue supporting the work of the National Human Rights Institution in line with the Paris Principles, and in collaboration with civil society and other relevant stakeholders, to raise awareness on human rights and conduct more human rights activities in Samoa ", - "values": [ - "National Human Rights Institution" - ] - }, - { - "text": "Take necessary steps, such as streamlining organizational registration processes and allowing independent media to operate in the country, to foster an environment where opposition parties, journalists, civil society, and all citizens of Equatorial Guinea can operate freely, independently, and without fear", - "values": [ - "Civil society", - "Freedom of association and peaceful assembly", - "Freedom of the press" - ] - }, - { - "text": "Improve its control mechanisms at borders and entry points, in order to detect cases of trafficking, in accordance with its domestic legislation", - "values": [ - "Trafficking" - ] - }, - { - "text": "Revise the Foreign Contribution (Regulation) Act to ensure benign working conditions for civil society in India", - "values": [ - "Civil society" - ] - }, - { - "text": "Continue its ongoing efforts to raise birth registration levels through the revision of the Code for Civil Registry in line with the recommendation made by the Committee on the Rights of the Child ", - "values": [ - "Rights of the Child", - "Statelessness and the right to nationality", - "Treaty bodies" - ] - }, - { - "text": "Reinstate the citizenship of about 60,000 Greek nationals under the repealed Article 19 of the Greek Citizenship Code ", - "values": [ - "Statelessness and the right to nationality" - ] - }, - { - "text": "Continue efforts and take further steps to strengthen the national programme to ensure the right to food, to health, particularly for the vulnerable groups living in extreme poverty, including indigenous people", - "values": [ - "Indigenous peoples", - "Poverty", - "Right to food", - "Right to health" - ] - }, - { - "text": "Take all necessary measures to prevent trafficking in persons, especially children, including the incorporation of international standards into national legislation, training of personnel involved in the fight against human trafficking, criminal prosecution of traffickers and the protection of victims of trafficking ", - "values": [ - "Trafficking" - ] - }, - { - "text": "Enact and enforce legislation to raise the legal age of marriage for boys and girls to 18", - "values": [ - "Rights of the Child" - ] - }, - { - "text": "Take action towards the ratification of the Optional Protocol to the Convention against Torture and set up a national prevention mechanism", - "values": [ - "Detention", - "International instruments", - "Torture and other CID treatment" - ] - }, - { - "text": "Further provide protection to victims of trafficking in human beings, on the basis of a human rights-based approach, and ensure that they are systematically informed of the possibility of a recovery and reflection period", - "values": [ - "Trafficking" - ] - }, - { - "text": "Fulfil its obligations under international human rights law and ensure the protection of all minorities and repeal any laws or reforms that explicitly or implicitly discriminate on any grounds, including sexual orientation, gender identity and gender expression ", - "values": [ - "International instruments", - "Minorities", - "Racial discrimination", - "Sexual Orientation and Gender Identity" - ] - }, - { - "text": "Accede to the Agreement on Privileges and Immunities of ICC", - "values": [ - "International instruments", - "Justice" - ] - }, - { - "text": "Ratify ICCPR as well as CAT, CEDAW, including the two Optional Protocols to CRC ", - "values": [ - "CP rights - general", - "International instruments", - "Rights of the Child", - "Torture and other CID treatment", - "Women's rights" - ] - }, - { - "text": "Continue to make efforts to protect human rights of persons in detention facilities", - "values": [ - "Detention" - ] - }, - { - "text": "Consider reviewing its Aliens Act in favour of temporary residents on humanitarian grounds", - "values": [ - "International humanitarian law" - ] - }, - { - "text": "Continue its efforts to ensure that migrants and women belonging to minorities continue to be the focus of government programmes specifically geared towards the protection of their rights", - "values": [ - "Migrants", - "Minorities", - "Women's rights" - ] - }, - { - "text": "Bring its national legislation in line with the Rome Statute of the International Criminal Court and, in particular, incorporate the necessary provisions to fully cooperate with the Court when it comes to investigating and prosecuting for genocide, crimes against humanity and war crimes in its national courts", - "values": [ - "International instruments", - "Justice" - ] - }, - { - "text": "End the detention of migrants and refugees, in particular children, whether accompanied, unaccompanied or separated", - "values": [ - "Asylum-seekers - refugees", - "Detention", - "Migrants", - "Rights of the Child" - ] - }, - { - "text": "Free all Palestinians, Syrian and Arab detainees, including women, children and journalists, and allow international organizations, including ICRC, to visit these detainees and examine their situation in all Israeli prisons to ensure that detention conditions conform to minimum standards.", - "values": [ - "Detention", - "Justice" - ] - }, - { - "text": "Continue to develop policies to protect women's rights", - "values": [ - "Women's rights" - ] - }, - { - "text": "Address the issue of unduly protracted detentions and promote the use of alternative measures to pretrial detention, in particular for pregnant women and young children. ", - "values": [ - "Detention", - "Rights of the Child", - "Women's rights" - ] - }, - { - "text": "Accelerate its judicial reform process to strengthen and guarantee the independence of the judiciary and to address corruption issues within the judiciary system by adopting relevant laws of reform ", - "values": [ - "Justice" - ] - }, - { - "text": "Prevent the re-victimization in cases of violence in intimate partnership and bring perpetrators to justice ", - "values": [ - "Justice" - ] - }, - { - "text": "Ensure that all allegations of enforced disappearances, torture or any other form of ill-treatment are independently, promptly and thoroughly investigated, and perpetrators are brought to justice in accordance with international rule of law standards", - "values": [ - "Enforced disappearances", - "Torture and other CID treatment" - ] - }, - { - "text": "Launch a comprehensive national policy on gender equality and non-discrimination", - "values": [ - "Women's rights" - ] - }, - { - "text": "Strengthen measures in poverty eradication as well as in reducing socio-economic development gaps among regions and social groups ", - "values": [ - "Development", - "Poverty" - ] - }, - { - "text": "Enhance the independence and effectiveness of the National Commission for Human Rights through provision of adequate human and financial resources", - "values": [ - "National Human Rights Institution" - ] - }, - { - "text": "Continue the commendable process of ratification of the CPED and ICRMW ", - "values": [ - "Enforced disappearances", - "International instruments", - "Labour", - "Migrants" - ] - }, - { - "text": "Develop gender policies that allow a wider participation of women in politics ", - "values": [ - "Women's rights" - ] - }, - { - "text": "Take all necessary measures to effectively implement the national legislation prohibiting female genital mutilation.", - "values": [ - "Rights of the Child", - "Torture and other CID treatment", - "Women's rights" - ] - }, - { - "text": "Take all appropriate action to end the impunity of perpetrators of human rights crimes and cooperate with the International Criminal Court in this regard.", - "values": [ - "Impunity", - "International instruments", - "Justice" - ] - }, - { - "text": "Request Liberia to seek technical and material assistance from the international community to overcome difficulties and impediments cited in its national report, and also to support the commendable new initiatives undertaken by the Government, such as the land commission, anti-corruption and good governance", - "values": [ - "Corruption", - "Justice", - "Technical assistance and cooperation" - ] - }, - { - "text": "Consider taking steps to protect human rights defenders from threats and intimidation to ensure they can perform their functions properly", - "values": [ - "Human rights defenders" - ] - }, - { - "text": "Implement all recommendations made by the Special Rapporteur on Freedom of Religion in order to remedy the situation described in her most recent report, which noted the persistence of discriminatory legal provisions and practices, which run counter to freedom of religion ", - "values": [ - "Freedom of religion and belief", - "Special procedures" - ] - }, - { - "text": "Continue increasing investment in primary, secondary and university education, as it has progressively done so in recent years", - "values": [ - "Right to education" - ] - }, - { - "text": "Adopt measures to improve prison conditions, especially the overcrowding.", - "values": [ - "Detention" - ] - }, - { - "text": "Carry out national campaigns against all forms of discrimination, publish its new law against discrimination and ensure its implementation ", - "values": [ - "Human rights education and training" - ] - }, - { - "text": "Ratify the second Optional Protocol to the Covenant on Civil and Political Rights on the abolition of the death penalty", - "values": [ - "Death penalty", - "International instruments" - ] - }, - { - "text": "Implement policies dealing with the stigma and discrimination against people living with HIV/AIDS", - "values": [ - "HIV - Aids" - ] - }, - { - "text": "Continue to fund programs aimed at integrating Roma and take further steps to address the on-going social exclusion of Roma", - "values": [ - "Minorities" - ] - }, - { - "text": "Consider ratifying the individual complaints procedures under the treaties to which it is a party.", - "values": [ - "International instruments" - ] - }, - { - "text": "Introduce legislation to explicitly prohibit all corporal punishment of children as recommended by the Committee on the Rights of the Child ", - "values": [ - "Rights of the Child", - "Torture and other CID treatment", - "Treaty bodies" - ] - }, - { - "text": "Address the issue of identity through issuing identification papers to those lacking them.", - "values": [ - "Other" - ] - }, - { - "text": "Set up a national mechanism to counter the phenomena of racist violence and to gather reliable statistics in this regard ", - "values": [ - "Racial discrimination" - ] - }, - { - "text": "Guarantee freedom of expression and protection of journalists and human rights defenders ", - "values": [ - "Freedom of opinion and expression", - "Freedom of the press", - "Human rights defenders" - ] - }, - { - "text": "Submit as quickly as possible information on alleged forced disappearances cases to the Working Group on Enforced or Involuntary Disappearances ", - "values": [ - "Enforced disappearances", - "Special procedures" - ] - }, - { - "text": "Establish a national regulatory framework for the assessment of human rights and environmental impact of companies headquartered in Switzerland", - "values": [ - "Business and human rights", - "Environment" - ] - }, - { - "text": "Swiftly ratify the Optional Protocol to the Convention against Torture", - "values": [ - "Detention", - "International instruments", - "Torture and other CID treatment" - ] - }, - { - "text": "Continue efforts to reduce poverty through social programmes focused on human rights", - "values": [ - "Poverty" - ] - }, - { - "text": "Complete the transfer of capacity from the International Commission Against Impunity in Guatemala to Guatemalan institutions and protect those made most vulnerable to crimes because of impunity, including judges, witnesses, prosecutors, human and labour rights defenders, journalists, and trafficked persons", - "values": [ - "Freedom of the press", - "Human rights defenders", - "Impunity", - "Justice", - "Labour", - "Trafficking" - ] - }, - { - "text": "Reconsider criminal convictions handed down on the basis of lèse- majesté and the Computer Crimes laws when the conditions of a fair and equitable trial as defined by the international human rights law have not been met ", - "values": [ - "Freedom of opinion and expression", - "International instruments" - ] - }, - { - "text": "Continue the cooperation with OHCHR in order to improve the capacity of the national institutions of human rights", - "values": [ - "Technical assistance and cooperation" - ] - }, - { - "text": "Continue facilitating equal access to justice for all and provide legal aid, in particular to vulnerable groups, minority groups and marginalized people", - "values": [ - "Justice", - "Minorities" - ] - }, - { - "text": "Urgently make all acts of torture offences under its criminal law, including in the Criminal Code of Indonesia, consistent with its binding obligations under the Convention against Torture", - "values": [ - "International instruments", - "Torture and other CID treatment" - ] - }, - { - "text": "Continue its efforts, together with other signatories to the International Convention on the Protection of the Rights of All Migrant Workers and Members of Their Families, to guarantee better accession.", - "values": [ - "International instruments", - "Labour", - "Migrants" - ] - }, - { - "text": "Amend its legislation in accordance with the Second Optional Protocol to the International Covenant on Civil and Political Rights, in the briefest delay, with the aim of abolishing the death penalty", - "values": [ - "Death penalty", - "International instruments" - ] - }, - { - "text": "Extend an open and standing invitation to the Special Procedures of the United Nations ", - "values": [ - "Special procedures" - ] - }, - { - "text": "Take further efficient measures to ensure that law enforcement officials, prosecutors and judges involved in enforcing the law relating to hate crimes and other violent acts of racial discrimination and xenophobia fully understand the nature of such crimes and that statistics on racist incidents are kept centrally and are publicized. ", - "values": [ - "Racial discrimination" - ] - }, - { - "text": "Ratify the Convention on the Elimination of All Forms of Discrimination against Women, which was given Senate's approval in 2008, and accede to other instruments", - "values": [ - "International instruments", - "Women's rights" - ] - }, - { - "text": "Further promote human rights education and training at all levels", - "values": [ - "Human rights education and training" - ] - }, - { - "text": "Consider the adoption of a separate action plan on combating human trafficking and improve coordination of anti-trafficking actions at the national and municipal levels", - "values": [ - "Trafficking" - ] - }, - { - "text": "Continue to enhance access to education", - "values": [ - "Right to education" - ] - }, - { - "text": "Recognize the extraterritorial application of the CAT, according to its jurisprudence ", - "values": [ - "International instruments", - "Torture and other CID treatment" - ] - }, - { - "text": "Ensure all alleged cases of human rights violations by security forces are investigated urgently and transparently, with those held responsible brought to trial swiftly", - "values": [ - "Human rights violations by state agents" - ] - }, - { - "text": "Continue to strengthen its national coordination efforts and develop facilities and services to assist trafficked persons", - "values": [ - "Trafficking" - ] - }, - { - "text": "Continue the efforts to combat all forms of racial discrimination in particular religious or ethnic discrimination by ensuring penalties that have a deterrent effect and abolishing discriminatory laws that prohibit Muslim women from wearing veils which is viewed as a way of life that should be respected and considered ", - "values": [ - "Freedom of religion and belief", - "Minorities", - "Racial discrimination" - ] - }, - { - "text": "Continue preventing and punishing human rights abuses by law enforcement officials ", - "values": [ - "Human rights violations by state agents" - ] - }, - { - "text": "Amend penal code articles that punish peaceful free expression with prison terms to conform to Algeria\u2019s Constitution", - "values": [ - "Freedom of opinion and expression", - "Justice" - ] - }, - { - "text": "Continue its efforts to ensure gender equality ", - "values": [ - "Women's rights" - ] - }, - { - "text": "Restore peace and stability", - "values": [ - "Public security" - ] - }, - { - "text": "Pursue its efforts, with the assistance and cooperation of the international community, for the realization of the rights of women and women's empowerment as an important sector of society that can contribute significantly to the development of the country", - "values": [ - "Technical assistance and cooperation", - "Women's rights" - ] - }, - { - "text": "Continue to improve the quality of education and further increase access to education for the Lao multi-ethnic people ", - "values": [ - "Minorities", - "Right to education" - ] - }, - { - "text": "Step up its efforts to strengthen compliance with the Labour Code (Act No. 14 of 2014) and take action to strengthen the effective protection of migrant workers ", - "values": [ - "Labour", - "Migrants" - ] - }, - { - "text": "Systematically and continuously integrate gender perspective in the follow up process to the review.", - "values": [ - "UPR process", - "Women's rights" - ] - }, - { - "text": "Create a special mechanism responsible for independent child rights monitoring", - "values": [ - "Rights of the Child" - ] - }, - { - "text": "Harmonize requirements of legislations on migration to ensure that migrants have access to justice, education, health and safety, regardless of their status ", - "values": [ - "Justice", - "Migrants", - "Right to education", - "Right to health" - ] - }, - { - "text": "Continue the government efforts of protecting the rights of freedom of expression and peaceful demonstrations and respect the political rights in this aspect", - "values": [ - "Freedom of association and peaceful assembly", - "Freedom of opinion and expression" - ] - }, - { - "text": "Start consultations with its national human rights institutions to request accreditation from the International Coordinating Committee", - "values": [ - "National Human Rights Institution" - ] - }, - { - "text": "Investigate vigorously and prosecute trafficking offences", - "values": [ - "Trafficking" - ] - }, - { - "text": "Adapt the detention conditions of immigrants in line with international human rights law ", - "values": [ - "Detention", - "International instruments" - ] - }, - { - "text": "Undertake a comprehensive review of pertinent domestic legislation to ensure full conformity with the Convention on the Rights of the Child", - "values": [ - "International instruments", - "Rights of the Child" - ] - }, - { - "text": "Continue efforts to fully guarantee the protection and independence of human rights defenders ", - "values": [ - "Human rights defenders" - ] - }, - { - "text": "Strengthen the controls to avoid acts of reprisals or acts contrary to the human rights and international humanitarian law following the changes in the situation in the North of the country", - "values": [ - "International humanitarian law", - "International instruments" - ] - }, - { - "text": "Accelerate the establishment of an independent national mechanism to visit prisons", - "values": [ - "Detention" - ] - }, - { - "text": "Continue to broaden the scope for access to and quality of public education, as well as ensuring equal opportunities and leaving no one behind, from primary through secondary to tertiary level", - "values": [ - "Right to education" - ] - }, - { - "text": "Pursue initiatives within the framework of the Durban Declaration and Programme of Action", - "values": [ - "Racial discrimination" - ] - }, - { - "text": "Take specific legal provisions to protect the rights of older persons and people living with albinism", - "values": [ - "Minorities" - ] - }, - { - "text": "Ensure media freedom, including Internet freedom, by eliminating all restrictions to the activities of independent media and human rights organizations ", - "values": [ - "Civil society", - "Freedom of opinion and expression", - "Freedom of the press" - ] - }, - { - "text": "Further strengthen its national mechanisms for the protection of human rights ", - "values": [ - "General" - ] - }, - { - "text": "Continue the effective and action-oriented cooperation between Government and national human rights institutions ", - "values": [ - "National Human Rights Institution" - ] - }, - { - "text": "Consider ratifying the American Convention on Human Rights including the possibility of making reservations or interpretative declarations to Article 4, as done by other countries in the region ", - "values": [ - "Death penalty" - ] - }, - { - "text": "Ratify all conventions to which the country is not yet a party", - "values": [ - "International instruments" - ] - }, - { - "text": "Adopt effective measures to enhance the participation of indigenous peoples on issues affecting them and their rights as indigenous peoples", - "values": [ - "Indigenous peoples" - ] - }, - { - "text": "Take measures to protect human rights defenders, including journalists", - "values": [ - "Freedom of the press", - "Human rights defenders" - ] - }, - { - "text": "Develop a legal framework for protecting and promoting the rights of women", - "values": [ - "Women's rights" - ] - }, - { - "text": "Ensure the full implementation of the Elimination of Violence against Women law and hold accountable police and prosecution supervisors who are not ensuring the enforcement of the law", - "values": [ - "Women's rights" - ] - }, - { - "text": "Consider formulating a national human rights plan of action that unifies all efforts and stakeholders as well as streamline and mainstream all human rights programmes", - "values": [ - "General" - ] - }, - { - "text": "Pursue its collaboration, already fruitful, with the human rights mechanisms, in order to make it possible to reach its objectives in all areas, to promote and protect all the rights over its territory", - "values": [ - "Special procedures", - "Treaty bodies", - "UPR process" - ] - }, - { - "text": "Continue the consultation process to ratify the CRPD", - "values": [ - "Disabilities", - "International instruments" - ] - }, - { - "text": "Sign the Convention on the Rights of Persons with Disabilities and revise building codes to improve disabled access to public buildings", - "values": [ - "Disabilities", - "International instruments" - ] - }, - { - "text": "Continue strengthening social programmes in the context of nation-building and social cohesion", - "values": [ - "Development" - ] - }, - { - "text": "Strengthen the cooperation with mandate holders, even considering the extension of a standing invitation, as Brazil has ", - "values": [ - "Special procedures" - ] - }, - { - "text": "Develop and submit proposals for capacity development assistance in disaster management, proposals might include, for example, strengthening the knowledge of relevant national stakeholders of the impact of climate change and of sound disaster management from a human rights perspective", - "values": [ - "Environment" - ] - }, - { - "text": "Deepen measures to enquire on and punish acts of discrimination against people of African descent", - "values": [ - "Minorities", - "Racial discrimination" - ] - }, - { - "text": "That the Government Council for Human Rights, National Minorities and Gender Equality take steps towards the implementation of a nation-wide strategy for the promotion and protection of human rights ", - "values": [ - "Minorities", - "Women's rights" - ] - }, - { - "text": "Appreciating the adoption of a series of laws on information access, take practical measures to ensure citizens' rights to free access to information", - "values": [ - "Freedom of opinion and expression" - ] - }, - { - "text": "Continue serious existing efforts to improve socio-economic status of women", - "values": [ - "Women's rights" - ] - }, - { - "text": "Intensify the fight against sexual violence and the prosecution and punishment of those responsible ", - "values": [ - "Rights of the Child", - "Women's rights" - ] - }, - { - "text": "Prosecute the instigators of hate crime and provide remedies for victims of hate speech", - "values": [ - "Racial discrimination" - ] - }, - { - "text": "Establish a judicial commission of inquiry for cases of enforced disappearances and torture carried out against members of the armed and police forces who were opposed to the military junta after the attempted coup d'état in April 2012", - "values": [ - "Enforced disappearances", - "Justice", - "Torture and other CID treatment" - ] - }, - { - "text": "Conclude the alignment of its domestic legislation with the Rome Statute provisions ", - "values": [ - "International instruments", - "Justice" - ] - }, - { - "text": "Adopt, as soon as possible, the bill to abolish the death penalty, meanwhile maintain the current de facto moratorium and introduce a de jure moratorium until the permanent abolition of the death penalty goes into effect", - "values": [ - "Death penalty" - ] - }, - { - "text": "Reconsider laws and bills on religious conversion in several Indian states in the light of freedom of religion or belief in order to avoid the use of vague or broad terminology and discriminatory provisions ", - "values": [ - "Freedom of religion and belief" - ] - }, - { - "text": "Retain the moratorium on the death penalty in all circumstances, in particular for juvenile offenders, and work towards the de jure abolition of capital punishment", - "values": [ - "Death penalty", - "Rights of the Child" - ] - }, - { - "text": "Ensure a credible independent investigation of the July 2010 Bocas del Toro incident, and prosecute all perpetrators of alleged human rights violations in compliance with international standards ", - "values": [ - "Freedom of association and peaceful assembly" - ] - }, - { - "text": "Withdraw reservations to other treaties restricting the protection of migrant workers and their families. ", - "values": [ - "Labour", - "Migrants" - ] - }, - { - "text": "Continue its efforts aimed at combating trafficking in persons at the policy and legislative levels in cooperation with civil society and the media, with a view to providing victims of trafficking with the needed protection and counselling, contributing to international efforts in this regards", - "values": [ - "Civil society", - "Trafficking" - ] - }, - { - "text": "Raise the age of criminal responsibility", - "values": [ - "Justice", - "Rights of the Child" - ] - }, - { - "text": "Ratify other important human rights instruments such as the Convention on the Elimination of All Forms of Discrimination against Women (CEDAW) and CAT facultative protocols", - "values": [ - "Detention", - "International instruments", - "Torture and other CID treatment", - "Women's rights" - ] - }, - { - "text": "Protect freedom and self-regulation of the press by clarifying and strengthening the competencies of the Rwanda Media Commission", - "values": [ - "Freedom of the press" - ] - }, - { - "text": "Make further efforts to combat the recruitment of child soldiers to the national army and to armed groups, with the aim of criminalizing the practice in the near future", - "values": [ - "International humanitarian law", - "Rights of the Child" - ] - }, - { - "text": "Implement further measures to combating and preventing torture, as well as strengthen existing mechanisms for the implementation of the recommendations of the United Nations Committee Against Torture and other international bodies ", - "values": [ - "Torture and other CID treatment", - "Treaty bodies" - ] - }, - { - "text": "Develop, in close cooperation with civil society, a concept to increase the knowledge and awareness in society, and in particular within State institutions, about human rights obligations of the State and rights of the people ", - "values": [ - "Civil society", - "Human rights education and training" - ] - }, - { - "text": "Continue ensuring the full realization of the right to safe drinking water and sanitation for all", - "values": [ - "Right to water and sanitation" - ] - }, - { - "text": "Provide unlimited access to ICRC to all detention facilities in the country ", - "values": [ - "Detention" - ] - }, - { - "text": "Continue its efforts in improving protection of women's rights, including combating domestic violence", - "values": [ - "Women's rights" - ] - }, - { - "text": "Consider the establishment of an integrated human development programme", - "values": [ - "Development" - ] - }, - { - "text": "Take measures without delay to ensure that forces loyal to the Government are made accountable for their indiscriminate targeting of civilians, civilian vessels as well as civilian property and infrastructure, in order to end the atmosphere of impunity", - "values": [ - "Impunity", - "International humanitarian law" - ] - }, - { - "text": "Strengthen measures aimed at protecting vulnerable persons and ensure that they have full access to natural resources", - "values": [ - "Environment" - ] - }, - { - "text": "Enact, with immediate effect, the new Media Law passed by the Lower House of Parliament.", - "values": [ - "Freedom of the press" - ] - }, - { - "text": "Extend a standing invitation to all Special Procedures of the Human Rights Council", - "values": [ - "Special procedures" - ] - }, - { - "text": "Immediately and unconditionally release all those who have been detained solely for exercising their rights to freedom of expression and peaceful assembly", - "values": [ - "Detention", - "Freedom of association and peaceful assembly", - "Freedom of opinion and expression" - ] - }, - { - "text": "Investigate impartially cases of use of excessive force against protesters and cases of killings during the recent demonstrations ", - "values": [ - "Extrajudicial executions", - "Freedom of association and peaceful assembly", - "Human rights violations by state agents" - ] - }, - { - "text": "Promote greater public appreciation for the importance of according equal rights for Roma", - "values": [ - "Minorities" - ] - }, - { - "text": "Ensure free and compulsory primary education", - "values": [ - "Right to education" - ] - }, - { - "text": "Continue to promote the preventive approach in education and social reintegration to avoid delinquency ", - "values": [ - "Detention" - ] - }, - { - "text": "Continue its protection measures in response to infringements of human rights of other persons, such as defamation and invasion of privacy committed through the internet", - "values": [ - "Freedom of opinion and expression", - "Privacy" - ] - }, - { - "text": "Strengthen the institutional human rights framework, including by establishing a national human rights institution", - "values": [ - "National Human Rights Institution" - ] - }, - { - "text": "Grant greater access to WHO and international NGOs working in the health field ", - "values": [ - "Civil society", - "Right to health" - ] - }, - { - "text": "Eliminate the type of crime of "unnatural sexual relations", and adopt measures to eradicate discrimination motivated by sexual orientation and gender identity", - "values": [ - "Sexual Orientation and Gender Identity" - ] - }, - { - "text": "Develop a comprehensive policy with regard to all aspects of internal displacement", - "values": [ - "Internally displaced persons" - ] - }, - { - "text": "As a source and destination country for men and women who are subjected to forced labour and sex trafficking, improve efforts to prosecute, convict and sentence trafficking offenders ", - "values": [ - "Labour", - "Trafficking", - "Women's rights" - ] - }, - { - "text": "Positively examine the ratification of the Optional Protocol to the Convention against Torture", - "values": [ - "International instruments", - "Torture and other CID treatment", - "Treaty bodies" - ] - }, - { - "text": "Ratify the Rome Statute on the International Criminal Court.", - "values": [ - "International instruments", - "Justice" - ] - }, - { - "text": "Investigate thoroughly all extrajudicial killings", - "values": [ - "Extrajudicial executions" - ] - }, - { - "text": "Intensify its efforts to investigate, identify and, if applicable, punish alleged perpetrators of the harassment, arbitrary detention and torture of opponents of the Government, including journalists and human rights defenders ", - "values": [ - "Detention", - "Freedom of the press", - "Human rights defenders", - "Torture and other CID treatment" - ] - }, - { - "text": "Take steps to increase the efficiency and transparency of its judicial institutions, and eliminate lengthy pretrial detentions ", - "values": [ - "Detention", - "Justice" - ] - }, - { - "text": "Regularly publish updated socioeconomic data, including on health and nutrition, especially by strengthening existing national instruments, such as the Venezuelan system of food and nutrition surveillance", - "values": [ - "ESC rights - general", - "Right to food", - "Right to health" - ] - }, - { - "text": "Maintain its level of efforts to tackle concerns raised regarding the situation of the Roma population in Montenegro, and give priority to implementing the 2007 strategy for the improvement of the position of the Roma population.", - "values": [ - "Minorities" - ] - }, - { - "text": "To strengthen the ongoing dialogue between the Ministry of Foreign and European Affairs, the Ministry of the Interior, the Overseas Territories and Territorial Units and the Ministry of Immigration, Integration, National Identity and Co-Development, on the consideration, on a case-by-case basis, of returns of persons to their country which could place those persons "at risk", in conformity with France's obligations in this regard, in particular in the framework of requests for interim measures from the treaty bodies", - "values": [ - "Migrants", - "Torture and other CID treatment", - "Treaty bodies" - ] - }, - { - "text": "Prohibit or limit detention for reasons of migratory status and establish a specialized institution for migration ", - "values": [ - "Migrants" - ] - }, - { - "text": "The delegation informed that Estonia had been presenting its candidature to the Human Rights Council for 2012 - 2015 in order to actively contribute to the Council's work for the promotion of human rights. In this respect, Estonia planned to present its voluntary commitments and pledges which would set out its commitment to uphold and advance internationally the highest standards of human rights and contribute to the effective promotion and protection of human rights at the UN level.\n", - "values": [ - "Disabilities", - "Other" - ] - }, - { - "text": "Continue measures to combat activities by transnational criminal and terrorist elements and their front organisations in Switzerland, with a view to ensuring that the perpetrators of such crimes are brought to justice", - "values": [ - "Trafficking" - ] - }, - { - "text": "Envisage extending the mandatory health insurance for civil servants, as necessary, to employees of the private sector ", - "values": [ - "Right to health" - ] - }, - { - "text": "Take measures to ensure that excessive force is not employed while apprehending and detaining criminals ", - "values": [ - "Human rights violations by state agents" - ] - }, - { - "text": "Step up national efforts to prevent trafficking in persons", - "values": [ - "Trafficking" - ] - }, - { - "text": "Further improve and implement the relevant laws and policies to better protect the rights of women and children", - "values": [ - "Rights of the Child", - "Women's rights" - ] - }, - { - "text": "Ratify international human rights instruments that the Dominican Republic is not yet a party to ", - "values": [ - "International instruments" - ] - }, - { - "text": "Consider extending a standing invitation to all the special procedures mandate-holders of the Human Rights Council", - "values": [ - "Special procedures" - ] - }, - { - "text": "Implement a program to adequately integrate the refugee populations into the society of Egypt, taking into account the generosity that has historically characterized the country in this field", - "values": [ - "Asylum-seekers - refugees" - ] - }, - { - "text": "Consider positively ratifying and adhere to the American Convention on Human Rights ", - "values": [ - "International instruments" - ] - }, - { - "text": "Continue efforts to improve the status of women in society and further promote gender equality at all levels, enhancing the contribution of women to the country's development process", - "values": [ - "Women's rights" - ] - }, - { - "text": "Lift existing restrictions on freedom of expression, and guarantee the free activity of civil society and human rights organizations ", - "values": [ - "Civil society", - "Freedom of opinion and expression" - ] - }, - { - "text": "Invite for visits to the country, the Special Rapporteur on torture, the Special Rapporteur on human rights defenders and the Special Rapporteur on the independence of judges and lawyers", - "values": [ - "Human rights defenders", - "Justice", - "Special procedures", - "Torture and other CID treatment" - ] - }, - { - "text": "Immediately establish a moratorium on executions with a view to abolishing the death penalty", - "values": [ - "Death penalty" - ] - }, - { - "text": "Seek the assistance of the international community to reduce poverty", - "values": [ - "Poverty", - "Technical assistance and cooperation" - ] - }, - { - "text": "Better guarantee freedom of the press and freedom of expression, as well as the right to plural information", - "values": [ - "Freedom of opinion and expression", - "Freedom of the press" - ] - }, - { - "text": "Strengthen efforts to protect freedom of expression and the right of all human rights defenders, including those working on land rights issues, to conduct their work without hindrance or intimidation, including by way of safeguarding freedom of assembly and association ", - "values": [ - "Freedom of association and peaceful assembly", - "Freedom of opinion and expression", - "Human rights defenders" - ] - }, - { - "text": "Take effective measures to develop alternatives to institutionalization and place children in institutions only as a measure of last resort", - "values": [ - "Rights of the Child" - ] - }, - { - "text": "Ensure that all branches of the State, including agents of public authorities, fully respects and promotes the freedom of expression", - "values": [ - "Freedom of opinion and expression" - ] - }, - { - "text": "Continue to respect the rights of asylum-seekers and refugees despite the difficulties", - "values": [ - "Asylum-seekers - refugees" - ] - }, - { - "text": "Continue to expand popular participation in electoral and decision making procedures ", - "values": [ - "Elections" - ] - }, - { - "text": "Ensure that the National Human Rights Commission of Nigeria is fully independent of the government and that the NHRC is given the mandate to investigate extrajudicial complaints regarding human rights violations and propose adequate remedies to victims", - "values": [ - "National Human Rights Institution" - ] - }, - { - "text": "Continue reinforcing the policy on effective and qualitative access to health services for vulnerable populations, especially women of African descent who still remain the group with the highest mortality", - "values": [ - "Right to health", - "Women's rights" - ] - }, - { - "text": "Continuing education programmes and early warning concerning teen pregnancies and ensure that girls and pregnant teenagers continue their studies during pregnancy", - "values": [ - "Right to education", - "Rights of the Child", - "Women's rights" - ] - }, - { - "text": "For a better integration and protection of the rights of immigrant minorities, follow ILO recommendations ", - "values": [ - "International instruments", - "Migrants", - "Minorities" - ] - }, - { - "text": "Widen its consultation process on the development of policy, legislation and regulations to ensure that all legislative instruments are assessed as to their positive and negative impacts on human rights", - "values": [ - "Other" - ] - }, - { - "text": "Adopt a national action plan to implement the United Nations Guiding Principles on Business and Human Rights", - "values": [ - "Business and human rights" - ] - }, - { - "text": "Repeal legal provisions which criminalize sexual activity between consenting adults of the same sex ", - "values": [ - "Sexual Orientation and Gender Identity" - ] - }, - { - "text": "Consider the possibility of expressing its consent to be bound by the International Convention for the Protection of All Persons from Enforced Disappearance", - "values": [ - "Enforced disappearances", - "International instruments" - ] - }, - { - "text": "Adopt legislative measures to prevent and combat intimidation, repression or violence against human rights defenders, journalists and civil society organizations", - "values": [ - "Civil society", - "Freedom of the press", - "Human rights defenders" - ] - }, - { - "text": "Enhance its efforts in combating the phenomena of trafficking in persons, particularly women and children, and raise awareness of its dangers ", - "values": [ - "Rights of the Child", - "Trafficking", - "Women's rights" - ] - }, - { - "text": "Promptly designate the person who will occupy the position of Ombudsman Defensor del Pueblo ", - "values": [ - "National Human Rights Institution" - ] - }, - { - "text": "Ensure that legislation on the declaration of assets by non-governmental organizations does not weaken civil society and does not unnecessarily compel the disclosure of intrusive information", - "values": [ - "Civil society", - "Freedom of association and peaceful assembly" - ] - }, - { - "text": "Move towards ratification of the International Convention for the Protection of All Persons from Enforced Disappearance", - "values": [ - "Enforced disappearances", - "International instruments" - ] - }, - { - "text": "Take all measures necessary to contribute to the promotion of tolerance and national cohesion", - "values": [ - "General" - ] - }, - { - "text": "Carry out genuine investigations into cases of human rights violations in order to not allow the atmosphere of impunity to prevail.", - "values": [ - "Impunity" - ] - }, - { - "text": "Ratify the Optional Protocol to the Convention on the Rights of the Child on a communications procedure (OP-CRC-IC)", - "values": [ - "International instruments", - "Rights of the Child" - ] - }, - { - "text": "Progressively restrict the use of the death penalty and reduce the number of offences for which it may be imposed .", - "values": [ - "Death penalty" - ] - }, - { - "text": "Include in its criminal law the definition of rape and other crimes of a sexual nature, according to International Law", - "values": [ - "Women's rights" - ] - }, - { - "text": "Consider strengthening policies on human rights and mental health, with special attention to the area of child psychiatry.", - "values": [ - "Right to health", - "Rights of the Child" - ] - }, - { - "text": "Put an end to the distortion of past history and raise awareness of historical facts by amending educational curricula to reflect historical realities, including its past crimes and atrocities", - "values": [ - "Other" - ] - }, - { - "text": "Ensure that a serious inquiry is undertaken into persons responsible for detaining and executing the Bytyqi brothers in 1999", - "values": [ - "Justice" - ] - }, - { - "text": "Take concrete steps to prevent the arbitrary arrest and detention of human rights defenders and to create and maintain, in law and practice, a safe and enabling environment, in which human rights defenders can operate free from hindrance and insecurity, in accordance with Human Rights Council resolution 22/6", - "values": [ - "Detention", - "Human rights defenders" - ] - }, - { - "text": "Further promote women\u2019s empowerment by increasing the number of women in leadership positions in all spheres of life", - "values": [ - "Women's rights" - ] - }, - { - "text": "Alter detention and prison facilities as well as standards of treatment for juveniles so that they are gender sensitive and ensure effective protection of detainees' and prisoners' personal safety", - "values": [ - "Detention", - "Rights of the Child" - ] - }, - { - "text": "Carry on with ensuring the access to health services for children and indigenous people ", - "values": [ - "Indigenous peoples", - "Right to health", - "Rights of the Child" - ] - }, - { - "text": "Increase the focus on persons with disabilities and work towards integrating them in the community ", - "values": [ - "Disabilities" - ] - }, - { - "text": "Step up its awareness-raising and information activities focusing on religious and customary chiefs to ensure peaceful coexistence between people and religions", - "values": [ - "Freedom of religion and belief" - ] - }, - { - "text": "Maintain its efforts towards strengthening the national institutions working in the area of the protection and promotion of human rights", - "values": [ - "General" - ] - }, - { - "text": "Take necessary legislative, political and awareness-raising measures to fight effectively against hate speech and crimes committed on the grounds of religious hatred, in particular Islamophobia", - "values": [ - "Freedom of religion and belief", - "Human rights education and training", - "Racial discrimination" - ] - }, - { - "text": "Adopt a comprehensive anti-discrimination law", - "values": [ - "Other" - ] - }, - { - "text": "To strengthen the mechanisms to protect the rights of migrants, such as training workshops for members of the Immigration Authorities who perform control checks at entry and departure points", - "values": [ - "Human rights education and training", - "Migrants" - ] - }, - { - "text": "Not carry out the death penalty and re-apply a moratorium on executions with a view to abolishing the death penalty in accordance with the resolution adopted in this regard by the General Assembly.", - "values": [ - "Death penalty" - ] - }, - { - "text": "In cooperation with UNESCO continue to implement measures to promote access to education for all", - "values": [ - "Right to education" - ] - }, - { - "text": "Ensure the implementation of a free birth registration system, exempted from corruption, for all children without discrimination, throughout all the territory of the country", - "values": [ - "Rights of the Child", - "Statelessness and the right to nationality" - ] - }, - { - "text": "Ratify the Optional Protocol to the Convention against Torture", - "values": [ - "International instruments", - "Torture and other CID treatment", - "Treaty bodies" - ] - }, - { - "text": "Continue to strengthen its human rights infrastructure by adopting legislation and programs that would protect women and children from domestic violence and other forms of abuse, in line with international standards", - "values": [ - "Rights of the Child", - "Women's rights" - ] - }, - { - "text": "Improve overall conditions in detention and prison facilities and combat overcrowding in these facilities ", - "values": [ - "Detention" - ] - }, - { - "text": "Do its best in addressing the issue of internally displaced persons", - "values": [ - "Internally displaced persons" - ] - }, - { - "text": "Eliminate discrimination in employment, particularly for women and members of the Roma population, pursuant to recommendations of the International Labour Organization supervisory bodies", - "values": [ - "Labour", - "Minorities", - "Racial discrimination", - "Women's rights" - ] - }, - { - "text": "Promote legislation in the area of gender equality", - "values": [ - "Women's rights" - ] - }, - { - "text": "Take additional measures to fight effectively against discrimination and violence against women", - "values": [ - "Women's rights" - ] - }, - { - "text": "Increase rate of women participation in decision-making in the legislative organ to 25%", - "values": [ - "Women's rights" - ] - }, - { - "text": "Submit the expected reports to the Human Rights Committee and the Committee against Torture as soon as possible", - "values": [ - "CP rights - general", - "Torture and other CID treatment", - "Treaty bodies" - ] - }, - { - "text": "Continue efforts in economic, social and cultural rights to consolidate the advances already made.", - "values": [ - "ESC rights - general" - ] - }, - { - "text": "Strengthen awareness-raising campaigns about the forms of contracting HIV/AIDS and respective preventive measures, particularly focusing on marginalized young persons, drug users, sexual workers of both sex and other groups which are vulnerable to being infected", - "values": [ - "HIV - Aids" - ] - }, - { - "text": "Continue to empower women through its micro credit programme and intensify efforts to support rural women with access to water ", - "values": [ - "Development", - "Right to water and sanitation", - "Women's rights" - ] - }, - { - "text": "Pay particular attention to the conditions of street children in the context of its national policy on providing adequate protection for children", - "values": [ - "Rights of the Child" - ] - }, - { - "text": "Continue its action in the area of official development aid ", - "values": [ - "Development" - ] - }, - { - "text": "Consider withdrawing the remaining declarations and reservations to CEDAW ", - "values": [ - "International instruments", - "Women's rights" - ] - }, - { - "text": "Effectively investigate and punish crimes that have been committed against leaders of Ukrainian associations in 2002-2006 ", - "values": [ - "Civil society" - ] - }, - { - "text": "Sign and ratify core international human rights instruments (CAT, CERD, CCPR and CESCR)", - "values": [ - "CP rights - general", - "ESC rights - general", - "International instruments", - "Racial discrimination", - "Torture and other CID treatment" - ] - }, - { - "text": "Continue improving women's empowerment programmes in the country", - "values": [ - "Women's rights" - ] - }, - { - "text": "Ratify the Convention on the Rights of Persons with Disabilities, fully incorporating the provisions of the Convention into its national legislation ", - "values": [ - "Disabilities", - "International instruments" - ] - }, - { - "text": "Undertake every effort to stop all violence in the context of the conflict, including summary executions, arbitrary, extrajudicial killings, amputations, floggings and the use of civilians as human shields ", - "values": [ - "Extrajudicial executions", - "International humanitarian law", - "Torture and other CID treatment" - ] - }, - { - "text": "End prosecutions under Articles 106 and 110 of your criminal code for exercising the internationally protected right of freedom of expression, and re-evaluate the convictions and sentences of individuals prosecuted for those actions ", - "values": [ - "Freedom of opinion and expression" - ] - }, - { - "text": "Implement monitoring mechanisms to stop people trafficking ", - "values": [ - "Trafficking" - ] - }, - { - "text": "Strengthen efforts to ensure increased free birth registration for children, both in urban and rural areas ", - "values": [ - "Rights of the Child", - "Statelessness and the right to nationality" - ] - }, - { - "text": "Continue its ongoing efforts for further promoting the rights of disabled people ", - "values": [ - "Disabilities" - ] - }, - { - "text": "Continue to address the persisting gender inequality in the country.", - "values": [ - "Women's rights" - ] - }, - { - "text": "Implement the Ouagadougou Agreement in full, and hold fair elections by end June 2010 ", - "values": [ - "Elections" - ] - }, - { - "text": "Approve, in all the countries that form the Kingdom, legislation that criminalizes all forms of trafficking in persons ", - "values": [ - "Trafficking" - ] - }, - { - "text": "Continue to strengthen its measures to counter human rights violations against women and girls, in particular domestic violence, and at the same time enhance its measures to promote the social participation of women and girls", - "values": [ - "Rights of the Child", - "Women's rights" - ] - }, - { - "text": "Continue aligning the juvenile justice system with international standards", - "values": [ - "Justice", - "Rights of the Child" - ] - }, - { - "text": "Address appropriately the challenges identified by treaty bodies' reports, particularly those relating to gender equality, the rights of the child and the elimination of violence against women, and consider requesting technical assistance from OHCHR in order to duly implement treaty bodies' recommendations ", - "values": [ - "Technical assistance and cooperation", - "Treaty bodies", - "Women's rights" - ] - }, - { - "text": "Continue strengthening measures which favour full gender equality, paying special attention to the integration of women into the labour market without discrimination, in line with the measures established in the 2013 European Union Progress Report ", - "values": [ - "Women's rights" - ] - }, - { - "text": "Continue to enact laws and promote policies aimed at protecting women and enhancing their roles in society", - "values": [ - "Women's rights" - ] - }, - { - "text": "Review national legislation on the basis of current international standards in order to effectively criminalize acts of torture and cruel, inhuman and degrading treatment", - "values": [ - "Torture and other CID treatment" - ] - }, - { - "text": "Put in place a juvenile justice system adapted to the needs of juvenile delinquents, particularly so that minors are not detained with adults", - "values": [ - "Justice", - "Rights of the Child" - ] - }, - { - "text": "Ensure that the national legislation enables the establishment and exercise of jurisdiction on war crimes related to conscription, recruitment and use of children in armed conflict", - "values": [ - "International humanitarian law", - "Rights of the Child" - ] - }, - { - "text": "Continue its national efforts with the support and assistance of the international community in the promotion and protection of human rights, particularly in the realization of economic, social and cultural rights of the people of the Gambia", - "values": [ - "ESC rights - general" - ] - }, - { - "text": "Continue to promote human rights cooperation based on its actual conditions", - "values": [ - "General" - ] - }, - { - "text": "Pay the highest possible attention to children's rights, particularly through adopting a comprehensive code on children's rights", - "values": [ - "Rights of the Child" - ] - }, - { - "text": "Provide comprehensive support to the institution of the family", - "values": [ - "Other" - ] - }, - { - "text": "Strengthen measures to progressively ensure free primary education ", - "values": [ - "Right to education" - ] - }, - { - "text": "Ratify the Optional Protocol to the International Covenant on Economic, Social and Cultural Rights and the Optional Protocol to the Convention on the Rights of Persons with Disabilities ", - "values": [ - "Disabilities", - "ESC rights - general", - "International instruments" - ] - }, - { - "text": "Strengthen the promotion and the protection of the rights of persons with disabilities", - "values": [ - "Disabilities" - ] - }, - { - "text": "Identify means by which the Supreme Court and the Constitutional Court can carry out their functions, especially through the designation of members of proven technical ability, moral probity and independence from external influence", - "values": [ - "Justice" - ] - }, - { - "text": "Take immediate measures to address the capacity issues faced by security and justice sectors, including reducing the amount of time it takes for court cases to be heard ", - "values": [ - "Justice" - ] - }, - { - "text": "Pursue efforts aimed at eradicating the practice of female genital mutilation", - "values": [ - "Rights of the Child", - "Torture and other CID treatment", - "Women's rights" - ] - }, - { - "text": "Institute a national action plan on the prevention of torture and allocate sufficient resources for its implementation", - "values": [ - "Torture and other CID treatment" - ] - }, - { - "text": "Explore possible ways of providing an adequate allocation of human, financial and technical resources to the health sector so as to ensure access to quality health services", - "values": [ - "Right to health" - ] - }, - { - "text": "Give due consideration to resolve the issue of discrimination against women with regard to personal legal status, in particular marriage, child custody and guardianship ", - "values": [ - "Women's rights" - ] - }, - { - "text": "Continue the on-going reform process in order to consolidate democracy and the rule of law", - "values": [ - "Justice" - ] - }, - { - "text": "Prevent using cruel, inhuman and degrading punishment", - "values": [ - "Torture and other CID treatment" - ] - }, - { - "text": "Allow humanitarian agencies to resume food assistance and grant WFP full, safe and unhindered access to the country in order to monitor aid distribution ", - "values": [ - "Right to food" - ] - }, - { - "text": "Continue promoting its vocation for peace, cooperation and international solidarity, in favour of the sustainable development of our peoples ", - "values": [ - "Poverty" - ] - }, - { - "text": "Ratify and implement the remaining four ILO core conventions concerning freedom of association and protection of the right to organize, the right to organize and collective bargaining, forced labour and the abolition of forced labour", - "values": [ - "Freedom of association and peaceful assembly", - "International instruments", - "Labour" - ] - }, - { - "text": "Take the necessary measures to ensure freedom of expression, the press and peaceful assembly, inter alia by ensuring that those responsible for acts of intimidation, harassment or violence against persons for having exercised their rights are held accountable", - "values": [ - "Freedom of association and peaceful assembly", - "Freedom of opinion and expression", - "Freedom of the press" - ] - }, - { - "text": "Reengage with Special Rapporteur on freedom of religion.", - "values": [ - "Freedom of religion and belief", - "Special procedures" - ] - }, - { - "text": "Bearing in mind Costa Rica's commitment to gender equality, seek to overcome all obstacles that impede the effective implementation of the Law to Penalize Violence against Women and guarantee the free exercise of effective judicial protection for the victims of domestic violence, including the right to reparations ", - "values": [ - "Women's rights" - ] - }, - { - "text": "Provide training to law enforcement officers on proper enforcement of the National Security Law to avoid investigations, detentions, and charges that restrict freedom of expression and result in a climate of self-censorship", - "values": [ - "Freedom of opinion and expression", - "Human rights education and training" - ] - }, - { - "text": "Make further efforts towards safeguarding the freedom of expression of all citizens", - "values": [ - "Freedom of opinion and expression" - ] - }, - { - "text": "Prosecutions of cases involving allegations of child abuse and exploitation will be expedited through the modality of an inter-agency mechanism to identify deficiencies in the system, propose appropriate remedial measures and coordinate and monitor implementation of such measures", - "values": [ - "Rights of the Child" - ] - }, - { - "text": "Promptly establish a de jure moratorium on the death penalty", - "values": [ - "Death penalty" - ] - }, - { - "text": "Consider the implementation of recommendations by special procedures so that there are institutional safeguards against harsh treatment by police and security forces.", - "values": [ - "Human rights violations by state agents", - "Special procedures", - "Torture and other CID treatment" - ] - }, - { - "text": "Make further reforms to the Family Code to remove all exceptions that allow marriage of children under the age of 18 years of age", - "values": [ - "Rights of the Child" - ] - }, - { - "text": "Increase efforts to strengthen its legal safeguards for eliminating all forms of ill treatment or torture in the prisons and detention centres.", - "values": [ - "Detention", - "Torture and other CID treatment" - ] - }, - { - "text": "Issue standing invitations to United Nations Special Procedures mandates holders, and facilitate and welcome fact-finding missions to Zimbabwe ", - "values": [ - "Special procedures" - ] - }, - { - "text": "Strengthen preventive, protective and rehabilitative measures for women and girl victims of sexual violence, through specialized psychosocial, legal and health services", - "values": [ - "Women's rights" - ] - }, - { - "text": "Further increase coverage for people to access health services in order to meet the targets set out by the National Health Insurance Scheme", - "values": [ - "Right to health" - ] - }, - { - "text": "Take all necessary measures to combat xenophobia and Islamophobia and to eliminate all forms of discrimination and violence against all migrants, Muslims and people of African origin", - "values": [ - "Freedom of religion and belief", - "Racial discrimination" - ] - }, - { - "text": "The government of Albania had expressed its commitment to proactively implement the anti-corruption strategy as part of the National Strategy for Development and Integration (NSDI). CoE PACA program has provided recommendations for setting up mechanisms to increase integrity and regulate conflicts of interest with regard to the administration of staff even in the education system. Furthermore the Albanian authorities are taking into consideration the Advisory Paper of CoE on short- and middle term measures on anti-corruption. ", - "values": [ - "Corruption" - ] - }, - { - "text": "Allow all religious believers to exercise their religion independently", - "values": [ - "Freedom of religion and belief" - ] - }, - { - "text": "Pursue its strategic policy emphasizing the universality of care and access to health services", - "values": [ - "Right to health" - ] - }, - { - "text": "Participate in discussions in the Council, scheduled for March 2009, on the relationship between human rights and climate change, in order to send a strong message to the parties to the United Nations Framework Convention on Climate Change on the importance of reaching an effective and workable global agreement on climate change mitigation and adaptation.", - "values": [ - "Environment" - ] - }, - { - "text": "Decriminalize consensual sexual acts between adults of the same sex.", - "values": [ - "Sexual Orientation and Gender Identity" - ] - }, - { - "text": "Continue its efforts to enhance the protection of women against violence", - "values": [ - "Women's rights" - ] - }, - { - "text": "Work out a binding set of rules with Islamic religious leaders for the establishment and running of daraas in order to secure the right to education of the Talibé", - "values": [ - "Freedom of religion and belief", - "Right to education" - ] - }, - { - "text": "Halt the prosecution of citizens who are exercising the rights guaranteed under articles 18, 19, 20, 21, and 22 of the UDHR", - "values": [ - "Freedom of association and peaceful assembly", - "Freedom of opinion and expression", - "Freedom of religion and belief", - "International instruments", - "Racial discrimination" - ] - }, - { - "text": "Conduct a study on the need for legislative and administrative adjustments for the domestic implementation of human rights", - "values": [ - "General" - ] - }, - { - "text": "Continue to ensure access to education for all and to improve the education standards to lay a firm foundation for its economic development", - "values": [ - "Development", - "Right to education" - ] - }, - { - "text": "Make further efforts to promote gender equality by working to close the gender pay gap and encouraging women into top jobs and roles traditionally filled by men, which should be carried out through the National Programme for Equal Opportunities for Women and Men for 2005-2013 and other relevant programmes", - "values": [ - "Women's rights" - ] - }, - { - "text": "Strengthen the administration of mines and regional labour inspection offices, to effectively implement the related laws, in order to guarantee the relevant human rights ", - "values": [ - "Labour" - ] - }, - { - "text": "Extend a standing invitation to all special representatives of the United Nations", - "values": [ - "Special procedures" - ] - }, - { - "text": "Develop programmes to combat violence against women ", - "values": [ - "Women's rights" - ] - }, - { - "text": "Pursue its review of laws that are not in line with international norms", - "values": [ - "General" - ] - }, - { - "text": "Establish a national human rights institution in accordance with the Paris Principles. ", - "values": [ - "National Human Rights Institution" - ] - }, - { - "text": "Continue the very positive track with the progress in the promotion and protection of human rights and ratify CAT as well as the CRPD", - "values": [ - "Disabilities", - "International instruments", - "Torture and other CID treatment" - ] - }, - { - "text": "Continue its efforts aimed at the protection of economic, social and cultural rights of the most vulnerable segments of the population ", - "values": [ - "ESC rights - general" - ] - }, - { - "text": "Ratify the Optional Protocol to the Convention on the Elimination of All Forms of Discrimination against Women (OP-CEDAW)", - "values": [ - "International instruments", - "Women's rights" - ] - }, - { - "text": "Consider stepping up its efforts towards ratification of the Protocol to Prevent, Suppress and Punish Trafficking in Persons, Especially Women and Children, Supplementing the United Nations Convention against Transnational Organized Crime (Palermo Protocol)", - "values": [ - "International instruments", - "Rights of the Child", - "Trafficking", - "Women's rights" - ] - }, - { - "text": "Accelerate the adoption of the norms related to preventing and combating domestic violence and elaborate coordinated policies in order to prevent and combat domestic and sexual violence, including support mechanisms and norms for the protection of victims", - "values": [ - "Rights of the Child", - "Women's rights" - ] - }, - { - "text": "Ensure that violations committed by members of the security forces are subject to judicial proceedings", - "values": [ - "Human rights violations by state agents" - ] - }, - { - "text": "Consider withdrawing its reservation to article 2 of CEDAW.", - "values": [ - "International instruments", - "Women's rights" - ] - }, - { - "text": "Adopt a penal system that is in conformity with the Committee on the Rights of the Child recommendations, the United Nations Standard Minimum Rules for the Administration of Juvenile Justice (The Beijing Rules) and the United Nations Guidelines for the Prevention of Juvenile Delinquency (The Riyadh Guidelines). to prohibit the sentencing to life imprisonment for persons under18 years of age in conformity with article 37 (a) of the Convention on the Rights of the Child.", - "values": [ - "International instruments", - "Justice", - "Rights of the Child", - "Treaty bodies" - ] - }, - { - "text": "Take further steps to address discrimination against vulnerable groups", - "values": [ - "Minorities" - ] - }, - { - "text": "Take more action to consolidate efforts regarding the rights of minority groups.", - "values": [ - "Minorities" - ] - }, - { - "text": "Decriminalize homosexual relations and practices-consensual same-sex activities between adults.", - "values": [ - "Sexual Orientation and Gender Identity" - ] - }, - { - "text": "Continue efforts to eliminate corporal punishment", - "values": [ - "Torture and other CID treatment" - ] - }, - { - "text": "Continue to incorporate the provisions of the Convention on the Rights of the Child into domestic legislation, especially article 19(1), in relation to deep concerns about the corporal punishment of children", - "values": [ - "International instruments", - "Rights of the Child", - "Torture and other CID treatment" - ] - }, - { - "text": "Fulfil, with the help of the international community, its international human rights obligations.", - "values": [ - "International instruments", - "Technical assistance and cooperation" - ] - }, - { - "text": "Ratify the Second Optional Protocol to the International Covenant on Civil and Political Rights aiming at abolishing the death penalty.", - "values": [ - "Death penalty", - "International instruments" - ] - }, - { - "text": "End all restrictions on political activities and meetings and allow the registration of political parties, as recognize under the Constitution.", - "values": [ - "Freedom of association and peaceful assembly" - ] - }, - { - "text": "Recommended that all reports of rape and sexual violence by law enforcement officials be promptly and impartially investigated and that perpetrators be brought to justice", - "values": [ - "Human rights violations by state agents", - "Rights of the Child", - "Women's rights" - ] - }, - { - "text": "Respect freedoms of expression, association and assembly, pursuant to international instruments, use mediation procedures to calm conflicts, and end the use of imprisonment for speech critical of the Government.", - "values": [ - "Freedom of association and peaceful assembly", - "Freedom of opinion and expression" - ] - }, - { - "text": "Submit to scrutiny the regulations governing the use of Teaser weapons with a view to adopting legislation that would explicitly place them in the category of weapons and prescribe more rigorous procedures for their possession and use", - "values": [ - "Human rights violations by state agents" - ] - }, - { - "text": "Within the context of paragraph 1 (a) of resolution 9-12 of the Human Rights Council, entitled Human Rights Goals, withdraw Canadian reservations to the Convention on the Rights of the Child. particularly regarding the duty to detain children separately from adults", - "values": [ - "International instruments", - "Rights of the Child" - ] - }, - { - "text": "Prescribe female genital mutilation as an offence, in addition to its present prohibition by law, and take effective measures to eradicate it.", - "values": [ - "Rights of the Child", - "Torture and other CID treatment", - "Women's rights" - ] - }, - { - "text": "Continue its policy of implementation of international and regional commitments regarding the rights of children.", - "values": [ - "International instruments", - "Rights of the Child" - ] - }, - { - "text": "Strengthen the protection of ethnic minorities' religious, civil, socio-economic and political rights", - "values": [ - "Minorities" - ] - }, - { - "text": "Grant greater access to Tibetan areas for OHCHR and other United Nations bodies, as well as diplomats and the international media", - "values": [ - "Minorities" - ] - }, - { - "text": "Apply directives for the evaluation of performance and operational results in the armed forces, giving priority to the number of people demobilized or captured as opposed to the number of those killed.", - "values": [ - "International humanitarian law" - ] - }, - { - "text": "Accelerate the poverty alleviation programmes with a view to addressing the uneven distribution of wealth, access to health and the high level of social exclusion of indigenous peoples and Afro-Colombian groups", - "values": [ - "Indigenous peoples", - "Minorities", - "Poverty", - "Right to health" - ] - }, - { - "text": "Take all necessary measures to increase its efficiency to investigate and prevent extrajudicial killings.", - "values": [ - "Extrajudicial executions" - ] - }, - { - "text": "Withdraw the declaration under article 124 of the Rome Statute of the International Criminal Court.", - "values": [ - "International instruments", - "Justice" - ] - }, - { - "text": "Put an end to the discrimination against the Pygmy minority and to grant them basic human rights.", - "values": [ - "Minorities", - "Racial discrimination" - ] - }, - { - "text": "Remove impediments women may face in gaining access to justice and take special measures, in collaboration with the CHRAJ, to enhance women's awareness of their rights, and legal literacy to claim their rights.", - "values": [ - "Justice", - "Women's rights" - ] - }, - { - "text": "Suspend the Citizenship and Entry into Israel Law (Temporary Order of 31 May 2003).", - "values": [ - "Freedom of movement" - ] - }, - { - "text": "Take urgent and immediate steps to end its occupation of all Palestinian and Arab territories occupied since 1967, implement all Human Rights Council, General Assembly and Security Council resolutions on the Occupied Palestinian Territories and other Arab territories, introduce measures to respect the right of the Palestinian people to self-determination and their right to return, accept its obligations under international human rights and humanitarian law, cease action that would alter the demographic situation of Palestine, and grant access to safe drinking water to Syrian citizens living in the occupied Syrian Golan", - "values": [ - "International humanitarian law", - "International instruments" - ] - }, - { - "text": "Consolidate and continue taking measures to reinforce enrollment and retention rates in secondary education", - "values": [ - "Right to education" - ] - }, - { - "text": "Continue to cooperate with OHCHR and human rights mechanisms and the Human Rights Council", - "values": [ - "Special procedures", - "Treaty bodies", - "UPR process" - ] - }, - { - "text": "Ensure prompt follow-up to the recommendations formulated by the Committee against Torture in 2008 with regard to the overall state of the prison system. ", - "values": [ - "Torture and other CID treatment", - "Treaty bodies" - ] - }, - { - "text": "Pursue the ongoing reforms aimed at restoring public confidence in the judiciary", - "values": [ - "Justice" - ] - }, - { - "text": "Develop and adopt national legislation and practices granting formerly trafficked and exploited women and children remaining in Malaysia immunity from penalties under national immigration laws", - "values": [ - "Rights of the Child", - "Trafficking", - "Women's rights" - ] - }, - { - "text": "Enact a Children's Act as well as consolidating national legislation which is fully in line with the international obligations it has undertaken", - "values": [ - "Rights of the Child" - ] - }, - { - "text": "Enact new measures against the discrimination of the Roma population.", - "values": [ - "Minorities" - ] - }, - { - "text": "Accelerate the ratification of the Optional Protocol to the Convention on the Rights of the Child on the sale of children, child prostitution and child pornography. ", - "values": [ - "International instruments", - "Rights of the Child", - "Trafficking" - ] - }, - { - "text": "Ratify the Rome Statute of the International Criminal Court, the International Convention for the Protection of All Persons from Enforced Disappearance and the 1977 Additional Protocols to the Geneva Conventions.", - "values": [ - "Enforced disappearances", - "International humanitarian law", - "International instruments", - "Justice" - ] - }, - { - "text": "Recommended that there should be awareness campaigns for education on human rights and in particular for women's rights.", - "values": [ - "Human rights education and training", - "Women's rights" - ] - }, - { - "text": "Continue its efforts in further developing the system of international treaties to combat international terrorism ", - "values": [ - "Public security" - ] - }, - { - "text": "Reinforce measures to combat incitement to discrimination and racial violence including through criminal prosecution of those involved in violence against minorities and immigrants, and provide adequate reparation for the victims of such acts.", - "values": [ - "Migrants", - "Minorities", - "Racial discrimination" - ] - }, - { - "text": "Support the recommendation of the Special Rapporteur on the question of torture and establish an OHCHR field presence with the mandate to monitor Sri Lanka's human rights situation and provide technical assistance, particularly regarding judicial, police and prison reform.", - "values": [ - "Special procedures", - "Technical assistance and cooperation", - "Torture and other CID treatment" - ] - }, - { - "text": "Recommended the abolition of the legislation and practices arising from the propiska system of registration of permanent residence.", - "values": [ - "Freedom of movement" - ] - }, - { - "text": "Continue efforts to harmonize national legislation with international human rights instruments. Continue awareness raising and dissemination of human rights principles among the population at large. and conduct human rights training for officers responsible for law enforcement.", - "values": [ - "Human rights education and training", - "International instruments" - ] - }, - { - "text": "Further progress on the recommendation of the Committee against Torture to set up an independent oversight mechanism for investigating torture.", - "values": [ - "Torture and other CID treatment", - "Treaty bodies" - ] - }, - { - "text": "Take concrete measures to limit the number and extent of restrictions on the right to freedom of expression and the freedom of the press.", - "values": [ - "Freedom of opinion and expression", - "Freedom of the press" - ] - }, - { - "text": "Accede to the 1951 Convention relating to the Status of Refugees.", - "values": [ - "Asylum-seekers - refugees", - "International instruments" - ] - }, - { - "text": "Take all necessary measures to prevent torture in line with international law obligation and report about the results in the next UPR round and ensure that the absolute prohibition of torture is observed.", - "values": [ - "Torture and other CID treatment", - "UPR process" - ] - }, - { - "text": "Uphold the progress it has achieved in ensuring religious freedom for the different communities and ensuring that religious and belief activities continue to be an enriching feature of Vietnamese society.", - "values": [ - "Freedom of religion and belief" - ] - }, - { - "text": "Continue to make further efforts to advance the human rights of socially vulnerable people, including persons with disabilities, ethnic minorities, women, children, persons with HIV-AIDS and victims of human trafficking.", - "values": [ - "Minorities" - ] - }, - { - "text": "Adopt a law to protect the rights of human rights defenders as well as a plan to ensure their security, particularly in the east of the country. Conduct an appropriate investigation and publicly condemn attacks against human rights defenders.", - "values": [ - "Human rights defenders" - ] - }, - { - "text": "Adopt further measures to fight human trafficking and assist its victims ", - "values": [ - "Trafficking" - ] - }, - { - "text": "Closely monitor the situation relating to direct or indirect racial discrimination and ensure that complaints in this area are duly dealt with in the most effective manner possible ", - "values": [ - "Racial discrimination" - ] - }, - { - "text": "Consider ratifying the International Convention on the Protection of the Rights of All Migrant Workers and Members of Their Families ", - "values": [ - "International instruments", - "Labour", - "Migrants" - ] - }, - { - "text": "Consider the ratification of the International Convention on the Protection of the Rights of All Migrant Workers and Members of Their Families ICRMW", - "values": [ - "International instruments", - "Labour", - "Migrants" - ] - }, - { - "text": "Continue to promote quality education for all by allocating adequate resources, without any discrimination ", - "values": [ - "Right to education" - ] - }, - { - "text": "Effectively investigate and prosecute all cases of violence against women and children ", - "values": [ - "Rights of the Child", - "Women's rights" - ] - }, - { - "text": "Ensure that foreign students are not being arbitrarily deprived of the right to education in universities on their own free choice and interest ", - "values": [ - "Right to education" - ] - }, - { - "text": "Ensure that women continue to participate fully in the peace process, in line with Security Council resolution 1325 (2000) ", - "values": [ - "Other" - ] - }, - { - "text": "Further develop specific measures and rehabilitation programmes directed at the long-term reintegration of victims of trafficking ", - "values": [ - "Trafficking" - ] - }, - { - "text": "Improve its cooperation with United Nations human rights mechanisms, in particular the Special Rapporteur on the situation of human rights and other special procedures, and allow access ", - "values": [ - "Special procedures", - "Treaty bodies", - "UPR process" - ] - }, - { - "text": "Intensify efforts to create more employment opportunities for youth by, inter alia, providing\nmore entrepreneurship training courses and apprenticeships ", - "values": [ - "Development" - ] - }, - { - "text": "Investigate allegations of torture without delay and hold the perpetrators of such violations accountable ", - "values": [ - "Torture and other CID treatment" - ] - }, - { - "text": "Join ILO and ratify core conventions, particularly Nos. 105, 182 and 138, and allow related monitoring by ILO staff ", - "values": [ - "International instruments", - "Labour", - "Rights of the Child" - ] - }, - { - "text": "Make primary education compulsory, and integrate the fight against illiteracy into the Educational Strategic Plan of the Government ", - "values": [ - "Right to education" - ] - }, - { - "text": "Put an end to the practice of incarcerating all the members of the family of every opposition figure, release without delay political prisoners and members of their family as well as ensure freedom of opinion and expression ", - "values": [ - "Detention", - "Freedom of association and peaceful assembly", - "Freedom of opinion and expression" - ] - }, - { - "text": "Review section 375 of the Penal Code in order to criminalize all acts of sexual violence, regardless of matrimonial status or the victim's gender ", - "values": [ - "Sexual Orientation and Gender Identity" - ] - }, - { - "text": "Take effective measures on sexual violence against children and consider the ratification of the Optional Protocols to the Convention on the Rights of the Child on the sale of children, child prostitution and child pornography and on the involvement of children in armed conflict ", - "values": [ - "International humanitarian law", - "International instruments", - "Rights of the Child", - "Trafficking" - ] - }, - { - "text": "Take effective measures to implement the laws on sexual violence adopted in 2006, the comprehensive strategy on combating sexual violence endorsed by the Government and the road map against impunity for sexual violence, investigate all cases of sexual violence and hold the perpetrators including all members of the State security forces accountable for their crimes. ", - "values": [ - "Human rights violations by state agents", - "Impunity", - "Rights of the Child", - "Women's rights" - ] - }, - { - "text": "Consider acceding to the major human rights conventions as a sign of intent and as a confidence-building measure", - "values": [ - "International instruments" - ] - }, - { - "text": "Continue its active and leading participation in the Abu Dhabi dialogue process", - "values": [ - "Migrants" - ] - }, - { - "text": "Continue the implementation of effective programs for the elimination of all forms of discrimination against women", - "values": [ - "Women's rights" - ] - }, - { - "text": "Continue the process of strengthening and adapting the national normative framework, particularly by finalizing the texts being prepared with regards to women, asylum and elections", - "values": [ - "Asylum-seekers - refugees", - "Elections", - "Women's rights" - ] - }, - { - "text": "Continue to adopt measures necessary for continued improvement in the delivery of social services to its population, with a view to further enhancing the social protection system for its inhabitants, in particular the most vulnerable", - "values": [ - "ESC rights - general" - ] - }, - { - "text": "Continue to ensure that the freedom of the media is guaranteed and, in this regard, to take into account the recommendations of the Special Rapporteur on the right to freedom of expression and the Human Rights Committee", - "values": [ - "Freedom of the press", - "Special procedures", - "Treaty bodies" - ] - }, - { - "text": "Continue to place people at the centre of development in a harmonious society for all in order to permit further progress in the area of economic, social and cultural rights", - "values": [ - "ESC rights - general" - ] - }, - { - "text": "Denounce hate speech and prosecute actively in the justice system those responsible for racist and violent acts", - "values": [ - "Racial discrimination" - ] - }, - { - "text": "Do away with the death penalty", - "values": [ - "Death penalty" - ] - }, - { - "text": "Engage towards the abolition of the death penalty by adopting a moratorium, commuting all sentences already pronounced and by reducing the number of offences punishable by this penalty", - "values": [ - "Death penalty" - ] - }, - { - "text": "Ensure that any collaboration agreement signed with other States or contracts adjudicated to private security companies, guarantee the obligation of respecting international standards for the protection of human rights, as well as establish an adequate mechanism supervising the compliance with these standards by the actors involved", - "values": [ - "International instruments", - "Public security" - ] - }, - { - "text": "Establish an independent body to regulate broadcasting", - "values": [ - "Freedom of the press" - ] - }, - { - "text": "Expedite the presentation of its pending reports to the relevant treaty bodies", - "values": [ - "Treaty bodies" - ] - }, - { - "text": "Guarantee the free exercise of activities of human rights defenders", - "values": [ - "Human rights defenders" - ] - }, - { - "text": "Increase its activities aimed at strengthening and promoting women's role in society", - "values": [ - "Women's rights" - ] - }, - { - "text": "Step up measures to comprehensively address the problem of violence against women, including FGM, by expediting the enactment of the Women's Bill, and by implementing social, educational and legal safeguards and increasing public awareness campaigns to sensitize the community on the issue", - "values": [ - "Human rights education and training", - "Torture and other CID treatment", - "Women's rights" - ] - }, - { - "text": "Strengthen programs of capacity building in human rights field and raise human rights awareness level", - "values": [ - "Human rights education and training" - ] - }, - { - "text": "Take the measures necessary to combat discrimination based on sexual orientation or gender identity", - "values": [ - "Sexual Orientation and Gender Identity" - ] - }, - { - "text": "Continue its efforts to reduce maternal and infant mortality, saving mother and child ", - "values": [ - "Right to health", - "Rights of the Child", - "Women's rights" - ] - }, - { - "text": "Review compliance of conditions in prison and detention facilities, in particular pre-trial detention facilities, with international standards ", - "values": [ - "Detention" - ] - }, - { - "text": "Suspend the duties of officials implicated in any cases of enforced disappearance, summary execution and torture, and ensure all necessary measures are taken to investigate fully and impartially such cases and to bring the alleged perpetrators to justice before an independent tribunal, and, if found guilty, to ensure that they are punished in accordance with the international human rights obligations of Belarus, in compliance with General Assembly resolution 62-169", - "values": [ - "Enforced disappearances", - "Extrajudicial executions", - "Human rights violations by state agents", - "International instruments", - "Torture and other CID treatment" - ] - }, - { - "text": "Intensify its efforts to humanize its penal system, with special focus placed on the separation of female and juvenile inmates ", - "values": [ - "Detention", - "Rights of the Child", - "Women's rights" - ] - }, - { - "text": "Submit the CEDAW report overdue since 2007 ", - "values": [ - "Treaty bodies", - "Women's rights" - ] - }, - { - "text": "Develop appropriate legal frameworks for the enjoyment of the right to work and to just and favourable conditions of work to all migrant workers, especially domestic workers ", - "values": [ - "Labour", - "Migrants" - ] - }, - { - "text": "Submit to human rights treaty bodies those reports which are overdue within one year", - "values": [ - "Treaty bodies" - ] - }, - { - "text": "Continue its efforts to look into the establishment of a national human rights institution in accordance with the Paris Principles ", - "values": [ - "National Human Rights Institution" - ] - }, - { - "text": "Seize this opportunity to create a corruption-free environment ", - "values": [ - "Corruption" - ] - }, - { - "text": "Organize the forthcoming referendum and elections in line with international standards, including the opinions of the Office for Democratic Institutions and Human Rights of the Organization for Security and Cooperation in Europe and the Venice Commission of the Council of Europe ", - "values": [ - "Elections" - ] - }, - { - "text": "Recognize the rights of persons belonging to minorities and indigenous peoples as set out in international law, regardless of the names given to such groups in domestic law ", - "values": [ - "Indigenous peoples", - "Minorities" - ] - }, - { - "text": "Undertake the efforts necessary to increase the budget for social programmes, particularly regarding education and adequate food ", - "values": [ - "Right to education", - "Right to food" - ] - }, - { - "text": "Continue the steadfast implementation of its national development strategies and plans aimed at poverty alleviation ", - "values": [ - "Poverty" - ] - }, - { - "text": "Solicit the necessary international assistance and cooperation in the establishment of a National Commission on Human Rights in accordance with the Paris Principles", - "values": [ - "National Human Rights Institution" - ] - }, - { - "text": "Prioritize enacting the draft Children's Protection and Welfare Bill, ensuring that Convention on the Rights of the Child provisions are fully incorporated into national legislation ", - "values": [ - "International instruments", - "Rights of the Child" - ] - }, - { - "text": "Redouble its efforts to tackle the issue of violence against women, including domestic violence, by, for example, creating layers of legislative measures to safeguard victims as well as strengthening the overall implementation of relevant measures on this issue ", - "values": [ - "Women's rights" - ] - }, - { - "text": "Ensure implementation of the gender equality measures to the rural areas including for the migrant female workers ", - "values": [ - "Labour", - "Migrants", - "Women's rights" - ] - }, - { - "text": "Implement a ban on racist organizations, in line with its international obligations ", - "values": [ - "Racial discrimination" - ] - }, - { - "text": "Remain proactive in combating discrimination against Sami and Roma and in protecting their economic, social and cultural rights in consultation with the communities concerned ", - "values": [ - "Indigenous peoples" - ] - }, - { - "text": "Swiftly accede to the Rome Statute of the International Criminal Court ", - "values": [ - "International instruments", - "Justice" - ] - }, - { - "text": "Follow up on the positive development - the moratorium on the death penalty - by removing capital punishment from legislation ", - "values": [ - "Death penalty" - ] - }, - { - "text": "Develop a national strategy on slavery, and effectively implement all the laws relating to the abolition of slavery ", - "values": [ - "Other" - ] - }, - { - "text": "Explore ways and means aimed at instilling democratic norms, standards and principles in the country, including through continuous awareness-raising and education ", - "values": [ - "Human rights education and training" - ] - }, - { - "text": "Promote the right of temporary workers to family reunification in accordance with the European Commission's recommendation against racism and intolerance, particularly in the light of the Immigration Law which entered into force in July 2008", - "values": [ - "Labour" - ] - }, - { - "text": "Further enhance measures to guarantee freedom of the press, by investigating acts of intimidation and aggression against journalists in accordance with recommendations of the Human Rights Committee ", - "values": [ - "Freedom of the press", - "Treaty bodies" - ] - }, - { - "text": "Ensure effective investigation, prosecution and sanctioning of members of the police who use excessive force or are responsible for unlawful killings ", - "values": [ - "Extrajudicial executions", - "Human rights violations by state agents" - ] - }, - { - "text": "Ensure due investigation and prosecution, in accordance with international standards, of all allegations of ill treatment or excessive use of force by law enforcement personnel, including through the establishment and empowerment of its Independent Commission of Investigations, and provide sufficient compensation to the victims or their families ", - "values": [ - "Human rights violations by state agents" - ] - }, - { - "text": "Adopt amendments to the Labour Code regarding the sale and trafficking of children", - "values": [ - "Labour", - "Rights of the Child", - "Trafficking" - ] - }, - { - "text": "Amend personal status laws so as to further ensure women's rights, in particular with regard to marriage dissolution, child custody and inheritance", - "values": [ - "Women's rights" - ] - }, - { - "text": "Establish an independent national body empowered to investigate the whereabouts of missing persons and victims of enforced disappearance, in the context of the various wars that have occurred in the country", - "values": [ - "Enforced disappearances", - "Justice" - ] - }, - { - "text": "Implement international human rights instruments which it has already duly ratified", - "values": [ - "International instruments" - ] - }, - { - "text": "Consider ratifyingthe 1951 Refugee Convention and the 1967 Protocol thereto, and the Protocol to prevent, suppress and punish trafficking in persons, especially women and children ", - "values": [ - "Asylum-seekers - refugees", - "International instruments", - "Rights of the Child", - "Trafficking", - "Women's rights" - ] - }, - { - "text": "Expedite action to allow for the full realization and protection of all children in Austria ", - "values": [ - "Rights of the Child" - ] - }, - { - "text": "Take effective steps to ensure greater participation of minorities in public life, and review available remedies for victims of racial discrimination and incitement to hatred, in particular against Roma communities", - "values": [ - "Minorities", - "Racial discrimination" - ] - }, - { - "text": "Increase the support to children with disabilities so that they can live in the community and avoid their institutionalization", - "values": [ - "Disabilities", - "Rights of the Child" - ] - }, - { - "text": "Continue to build public trust in democratic institutions by strengthening the rule of law including as it relates to the independence of the judiciary ", - "values": [ - "Justice" - ] - }, - { - "text": "Take measures to ensure the effective participation of minorities in the social, economic and cultural life of the country and that they are adequately represented in State institutions and public administration ", - "values": [ - "ESC rights - general", - "Minorities" - ] - }, - { - "text": "Enhance measures and international cooperation aimed at reducing poverty, fulfilling the MDGs, and strengthening capacity to respond effectively to natural disasters ", - "values": [ - "Development", - "Environment", - "Poverty" - ] - }, - { - "text": "Accept the visits of the Country Rapporteur and thematic Rapporteurs on the independence of judges and lawyers and on freedom of religion as well as the Representative of the Secretary-General on internally displaced persons ", - "values": [ - "Freedom of religion and belief", - "Internally displaced persons", - "Justice", - "Special procedures" - ] - }, - { - "text": "Continue promulgating legislation and promoting policies necessary to strengthen the protection of, and respect for, the rights of women and their role in society, while considering them an essential partner in the development process ", - "values": [ - "Women's rights" - ] - }, - { - "text": "That the Sultanate of Oman strengthen its cooperation with the Office of the High Commissioner for Human Rights with a view to holding more training sessions for awareness raising and education on human rights ", - "values": [ - "Human rights education and training", - "Technical assistance and cooperation" - ] - }, - { - "text": "Further pursue its efforts and programmes to promote human development in rural areas ", - "values": [ - "Development" - ] - }, - { - "text": "Take measures to rectify the situation of low participation of women in decision-making bodies and public life, the wage gap between women and men, and the high illiteracy rate among women ", - "values": [ - "Women's rights" - ] - }, - { - "text": "Ensure that children under the age of 18 are not recruited into any armed group on the national territory ", - "values": [ - "Rights of the Child" - ] - }, - { - "text": "Take effective measures to effectively combat discrimination on all grounds, including on grounds of sexual orientation or identity ", - "values": [ - "Sexual Orientation and Gender Identity" - ] - }, - { - "text": "Revise the relevant legislation concerning the Waqfs in consultation with the minority with a view to enabling the minority to directly control and to use its own Waqf properties, and to put an end to misuse and expropriation of Waqf properties ", - "values": [ - "Minorities" - ] - }, - { - "text": "Step up efforts to combat discrimination against vulnerable groups and minorities, in accordance with internationally established standards ", - "values": [ - "Minorities" - ] - }, - { - "text": "Become party to CAT and its Optional Protocol ", - "values": [ - "Detention", - "International instruments", - "Torture and other CID treatment" - ] - }, - { - "text": "Continue efforts to promote and protect the rights of women, children, and young persons and persons with disabilities", - "values": [ - "Disabilities", - "Rights of the Child", - "Women's rights" - ] - }, - { - "text": "Increase efforts to harmonize domestic legislation with the Convention on the Rights of the Child ", - "values": [ - "International instruments", - "Rights of the Child" - ] - }, - { - "text": "Bring the legislation into conformity with the country's commitment to equality and non-discrimination and its international human rights obligations, by repealing all provisions which may be applied to criminalize sexual activity between consenting adults ", - "values": [ - "Sexual Orientation and Gender Identity" - ] - }, - { - "text": "Take further measures to ensure that all children enjoy their right to a free and compulsory primary education ", - "values": [ - "Right to education", - "Rights of the Child" - ] - }, - { - "text": "Consider the possibilities of adopting non-custodial sentences where feasible and measures to reintegrate the prison population into society ", - "values": [ - "Justice" - ] - }, - { - "text": "Investigate, prosecute and punish all those allegedly responsible for political-ethnic violence during and after the 2007 elections ", - "values": [ - "Elections", - "Public security" - ] - }, - { - "text": "Increase attention to programmes for broken families ", - "values": [ - "Poverty" - ] - }, - { - "text": "Ensure that human rights are built into Somalia's legal framework and as a start ensure that members of the judiciary receive human rights training", - "values": [ - "Human rights education and training" - ] - }, - { - "text": "Continue its measures to end the ongoing conflict and extend its authority to the whole territory ", - "values": [ - "Public security" - ] - }, - { - "text": "Establish a moratorium on the death penalty with a view to its abolition in the shortest delay and sign and ratify the second Optional Protocol to the ICCPR ", - "values": [ - "Death penalty", - "International instruments" - ] - }, - { - "text": "Reform the 2009 Press and Publications Act ", - "values": [ - "Freedom of the press" - ] - }, - { - "text": "Take further measures to prevent and combat all forms of violence against children and women, including training law enforcement officials to deal with sexual violence cases ", - "values": [ - "Rights of the Child", - "Women's rights" - ] - }, - { - "text": "Regarding minorities, Israel intended to strengthen efforts to ensure equality in the application of the law, to counter discrimination against persons belonging to all minorities, to promote their active participation in public life, such as through additional Government resolutions to raise the percentage of the Arab minority in the civil service", - "values": [ - "Minorities" - ] - }, - { - "text": "Monitoring mechanisms of Macao Special Administrative Region (MSAR) government policies in the field of human rights shall be strengthened, along with other means to improve "law in action" and to assess its effectiveness.", - "values": [ - "Other" - ] - }, - { - "text": "The MSAR [Macao Special Administrative Region] Government shall strive to maintain a proper balance between the enjoyment of civil and political rights and social, economic and cultural rights, particular consideration being given to the rights of vulnerable groups, such as the disabled, the elderly, the children, the women and persons under custody.", - "values": [ - "Disabilities", - "Rights of the Child", - "Women's rights" - ] - }, - { - "text": "Continue to implement strategies and plans for the socioeconomic development of the country, in particular for the reduction of poverty", - "values": [ - "Development", - "Poverty" - ] - }, - { - "text": "Pass implementing legislation before the Parliament for the Protocol to Prevent, Suppress and Punish Trafficking in Persons, especially Women and Children", - "values": [ - "International instruments", - "Rights of the Child", - "Trafficking", - "Women's rights" - ] - }, - { - "text": "Intensify its efforts for the implementation of the Action Plan for the National Reconstruction and Development of Haiti, the National Strategy for Education for all and the training of Magistrates , the judicial authorities and law order officials including on human rights and request the necessary financial and technical assistance", - "values": [ - "Development", - "Human rights education and training", - "Right to education", - "Technical assistance and cooperation" - ] - }, - { - "text": "Adopt legislation that protects children in accordance with the concluding observations and recommendation by the United Nations Committee on the Rights of the Child in 2006", - "values": [ - "Rights of the Child", - "Treaty bodies" - ] - }, - { - "text": "Further encourage the involvement of civil society as partner of the Government in promoting and protecting of human rights", - "values": [ - "Civil society" - ] - }, - { - "text": "Ensure that the new legislation regulating freedom of assembly is brought in line with international human rights law, particularly the International Covenant on Civil and Political Rights, to which Syria has been a party since 1969 ", - "values": [ - "Freedom of association and peaceful assembly", - "International instruments" - ] - }, - { - "text": "Sign and ratify the Optional Protocol to the CAT ", - "values": [ - "Detention", - "International instruments", - "Torture and other CID treatment" - ] - }, - { - "text": "Continue monitoring and assessing closely the implementation of the Master Plan for the Administration of Justice, and the Strategic Plan for Development of Justice Process in the Southern Border Provinces of Thailand", - "values": [ - "Justice" - ] - }, - { - "text": "Ratify the Optional Protocols to ICCPR and CAT ", - "values": [ - "CP rights - general", - "Death penalty", - "Detention", - "International instruments", - "Torture and other CID treatment" - ] - }, - { - "text": "Oversee the effective implementation of the law on domestic violence ", - "values": [ - "Rights of the Child", - "Women's rights" - ] - }, - { - "text": "Seek technical and financial assistance from the international community in order to build the capacity of those working in the field of human rights towards the improvement of their activities for the benefit of the population, to achieve envisaged objectives in the field of administration of justice, construction and/or rehabilitation of prisons in accordance with international standards, to implement the recommendations by the Commission on Truth, Justice and Reconciliation, to introduce human rights in school curricula and, to harmonize national legislation with international instruments", - "values": [ - "Detention", - "Human rights defenders", - "Human rights education and training", - "International instruments", - "Justice", - "Technical assistance and cooperation" - ] - }, - { - "text": "Consider positively the request for visit by Special Rapporteur on the promotion and protection of the right to freedom of opinion and expression and recent request by Special Rapporteur on the rights to freedom of peaceful assembly and association", - "values": [ - "Freedom of association and peaceful assembly", - "Freedom of opinion and expression", - "Special procedures" - ] - }, - { - "text": "Ensure the Organ for National Healing, Reconciliation and Integration be able to fully implement its mandates based on truth, reconciliation and forward-looking approaches ", - "values": [ - "Justice" - ] - }, - { - "text": "Exert utmost efforts towards preventing all forms of torture and inhuman or degrading treatment, while ensuring full accountability of perpetrators as well as redress and rehabilitation to victims ", - "values": [ - "Torture and other CID treatment" - ] - }, - { - "text": "Continue its efforts to provide appropriate education opportunities to persons with disabilities ", - "values": [ - "Disabilities", - "Right to education" - ] - }, - { - "text": "Guarantee the effective and independent functioning of autonomous trade unions from the public sector, based on the right of all persons to establish trade unions and the right of trade unions to establish federations and national confederations", - "values": [ - "Freedom of association and peaceful assembly", - "Labour" - ] - }, - { - "text": "Pay particular attention to seek even more effective results in the implementation of policies addressing the following issues: protection of the rights and promotion of the socio-economic situation of indigenous peoples and Afro-descendent Quilombo communities, access to justice and combating impunity, extra-judicial executions, torture in detention and, protection of human rights defenders ", - "values": [ - "General" - ] - }, - { - "text": "Regularly foster awareness on birth registration at national and local levels, particularly through the organization of public campaigns to highlight the importance of birth-registration ", - "values": [ - "Rights of the Child", - "Statelessness and the right to nationality" - ] - }, - { - "text": "Ensure that indigenous peoples are able to defend their constitutional right to ancestral lands without discrimination and their prior, informed consent is sought in cases of projects that may affect their rights ", - "values": [ - "Indigenous peoples", - "Right to land" - ] - }, - { - "text": "Take targeted measures to address the situation of girls and the challenge of ensuring the accessibility to registration for indigenous peoples and people of African descent as well as for migrant families. The right of every child to a name and nationality should be guaranteed ", - "values": [ - "Indigenous peoples", - "Migrants", - "Minorities", - "Rights of the Child" - ] - }, - { - "text": "Undertake a review of existing and proposed legislation relating to freedom of expression and media freedom to ensure its alignment with international standards, and more specifically, eliminate any existing criminal defamation provisions, also known as desacato laws ", - "values": [ - "Freedom of opinion and expression", - "Freedom of the press" - ] - }, - { - "text": "Stick to its international commitments, particularly to article 19 of the International Covenant on Civil and Political Rights ", - "values": [ - "Freedom of opinion and expression", - "International instruments" - ] - }, - { - "text": "Improve training on human rights by addressing law enforcement, especially police officers ", - "values": [ - "Human rights education and training" - ] - }, - { - "text": "Specifically criminalize torture in your criminal code and ensure that security officials are held accountable for torture and other human rights abuses ", - "values": [ - "Human rights violations by state agents" - ] - }, - { - "text": "Intensify its efforts in the fight against violence against women and in particular against domestic violence by concluding public awareness raising, empowerment of women and rigorous capacity development of law enforcers ", - "values": [ - "Human rights education and training", - "Women's rights" - ] - }, - { - "text": "Take the necessary measures to ensure full respect for human rights in the framework of counter-terrorism struggle, and in particular, the rights to defense and non-use of torture ", - "values": [ - "Counter-terrorism", - "Torture and other CID treatment" - ] - }, - { - "text": "Continue to ensure basic education for all children in all the territory of Morocco and continue providing quality education programs with a special attention to the prevention of school dropout ", - "values": [ - "Right to education" - ] - }, - { - "text": "Make full use in practice of the new Institute for Human Rights to promote a coherent approach to human rights issues across the spectrum of different policy areas and human rights situations ", - "values": [ - "National Human Rights Institution" - ] - }, - { - "text": "Carry out with more transparency the ongoing investigations concerning the alleged existence of secret detention centers on its territory and the transfer of prisoners in connection with the fight against terrorism ", - "values": [ - "Counter-terrorism", - "Detention" - ] - }, - { - "text": "Ratify the International Convention for the Protection of the Rights of All Migrant Workers and Members of Their Families (ICRMW) ", - "values": [ - "International instruments", - "Labour", - "Migrants" - ] - }, - { - "text": "Consider an early ratification of the third OP to CRC (OPIC) on a communication procedure ", - "values": [ - "International instruments", - "Rights of the Child" - ] - }, - { - "text": "Ensure that police officers and security personnel receive adequate human rights training and clear instructions with regard to their duty to respect human rights at all times, including the right to freedom of expression, association and peaceful assembly ", - "values": [ - "Freedom of association and peaceful assembly", - "Freedom of opinion and expression", - "Human rights education and training" - ] - }, - { - "text": "Amend the statute of limitations to be in line with international law as codified in the UN Basic Principles and Guidelines ", - "values": [ - "Justice" - ] - }, - { - "text": "Abolish definitively the death penalty and ratify the Second Protocol to ICCPR ", - "values": [ - "Death penalty", - "International instruments" - ] - }, - { - "text": "With the support of the World Health Organization (WHO) and the United Nations Development Programme (UNDP) continue its efforts to introduce programmes and initiatives to improve access to health care by its people", - "values": [ - "Right to health", - "Technical assistance and cooperation" - ] - }, - { - "text": "Intensify its awareness-raising campaigns on the situation of disabled children, and support the efforts of civil society to improve rehabilitation and reintegration of children with disabilities and effectively implement the existing legislation on birth registration", - "values": [ - "Civil society", - "Disabilities", - "Rights of the Child", - "Statelessness and the right to nationality" - ] - }, - { - "text": "Review its national legislation with a view to bringing the definition of torture in line with the Convention against torture (CAT)", - "values": [ - "International instruments", - "Torture and other CID treatment" - ] - }, - { - "text": "Step up efforts of the competent Ministries to effectively train professionals such as judges, prosecutors and police officers to prosecute racist and hate crimes", - "values": [ - "Racial discrimination" - ] - }, - { - "text": "Continue to improve the situation of the Roma people", - "values": [ - "Minorities" - ] - }, - { - "text": "Increase efforts to ensure accountability for trafficking in persons by investigating, prosecuting and adjudicating trafficking and by providing effective legal remedies for the victims", - "values": [ - "Trafficking" - ] - }, - { - "text": "Protect the rights of Pygmy minority and elevate their health conditions and make all health services accessible to them, while facilitate their attainment of different health services in an easy way", - "values": [ - "Indigenous peoples", - "Right to health" - ] - }, - { - "text": "Strengthen awareness-raising campaigns on the issue of violence against women, bringing perpetrators of such crimes to justice", - "values": [ - "Human rights education and training", - "Women's rights" - ] - }, - { - "text": "Continue making progress in promoting the economic, social and cultural rights through strengthening of social programmes, currently undertaken by the Government for the benefit of its people", - "values": [ - "ESC rights - general" - ] - }, - { - "text": "Continue to enhance the rule of law by strengthening its law enforcement agencies", - "values": [ - "Justice" - ] - }, - { - "text": "Implement targeted, sustainable and effective measures to reduce the alarmingly high rate of children suffering from chronic malnutrition, especially among the indigenous population, where eight of ten children are affected, according to UNICEF", - "values": [ - "Indigenous peoples", - "Right to food", - "Rights of the Child" - ] - }, - { - "text": "Ratify the ICED", - "values": [ - "Enforced disappearances", - "International instruments" - ] - }, - { - "text": "Ratify the CRPD and adopt discrimination laws to protect persons with disabilities", - "values": [ - "Disabilities", - "International instruments" - ] - }, - { - "text": "Continue its efforts in the advancement for the promotion and protection of the rights of women by implementing its "Third Basic Plan for Gender Equality" and its "Action Plan to Promote Economic Revival through Women's Active Participation"", - "values": [ - "Women's rights" - ] - }, - { - "text": "Step up efforts to combat trafficking in persons including by defining trafficking in persons in accordance with the Palermo Protocol and invite the Special Rapporteur on the sale of children, child prostitution and child pornography", - "values": [ - "International instruments", - "Rights of the Child", - "Special procedures", - "Trafficking" - ] - }, - { - "text": "Consider ratifying the Optional Protocol to the Convention against Torture and Other Cruel, Inhuman or Degrading Treatment or Punishment (OP-CAT) and the Rome Statute of the International Criminal Court", - "values": [ - "Detention", - "International instruments", - "Justice", - "Torture and other CID treatment" - ] - }, - { - "text": "Enhance its efforts in the area of human rights education, training and awareness for its officials involved in the implementation of the related human rights law and legislation", - "values": [ - "Human rights education and training" - ] - }, - { - "text": "Continue fighting against trafficking of children and violence against women", - "values": [ - "Rights of the Child", - "Trafficking", - "Women's rights" - ] - }, - { - "text": "Eliminate the practice of forced labour, and criminalise the liability for the labour exploitation", - "values": [ - "Labour" - ] - }, - { - "text": "Continue the efforts to provide high quality education to all children and adolescents in the Peruvian territory, particularly to those belonging to groups in situations of vulnerability, such as indigenous peoples, Peruvian afro- descents, Afro-Peruvian communities and persons with disabilities", - "values": [ - "Disabilities", - "Indigenous peoples", - "Minorities", - "Right to education" - ] - }, - { - "text": "Enhance protection against domestic violence, hiring more female police inspectors, improving shelter and rehabilitation services for victims and strengthening data protection in this regard", - "values": [ - "Rights of the Child", - "Women's rights" - ] - }, - { - "text": "Continue to take measures to promote and protect the rights of migrant workers", - "values": [ - "Labour", - "Migrants" - ] - }, - { - "text": "Work on the elimination of the causes of minor's recruitment by armed groups and guarantee full rehabilitation, social reintegration and school reintegration of those children who participated or were affected by the conflict, including those who had to be accommodated in internal displaced camps and to take into account the linguistic, cultural, and religious diversity in Sri Lanka", - "values": [ - "International humanitarian law", - "Right to education", - "Rights of the Child" - ] - }, - { - "text": "Publish the names and places of detention of all the imprisoned persons", - "values": [ - "Detention" - ] - }, - { - "text": "Establish a moratorium on the death penalty and initiate a national debate on its abolition", - "values": [ - "Death penalty" - ] - }, - { - "text": "Ratify the European Charter for Regional or Minority Languages of the Council of Europe ", - "values": [ - "Minorities" - ] - }, - { - "text": "Ratify the International Convention for the Protection of All Persons from Enforced Disappearance, and at the same time, make declarations stipulated in articles 31 and 32 of this instrument ", - "values": [ - "Enforced disappearances", - "International instruments" - ] - }, - { - "text": "Strengthen efforts aimed at ratifying the International Convention for the Protection of All Persons from Enforced Disappearance", - "values": [ - "Enforced disappearances", - "International instruments" - ] - }, - { - "text": "Take further steps to regulate the legal status of the IDPs with the focus on children born outside of health institutions", - "values": [ - "Internally displaced persons", - "Rights of the Child" - ] - }, - { - "text": "Implement measures to eliminate discrimination against minority groups, in particular the Roma and children in vulnerable situations, including children with disabilities, with HIV/AIDS, abandoned children or victims of violence and guarantee their access to education, housing, medical care and health services", - "values": [ - "Disabilities", - "HIV - Aids", - "Minorities", - "Racial discrimination", - "Rights of the Child" - ] - }, - { - "text": "Continue its efforts in the fight against corruption to strengthen its national policy in this area", - "values": [ - "Corruption" - ] - }, - { - "text": "Take steps to protect the right to freedom of assembly and freedom of opinion and expression by ensuring the effective investigation and prosecution of alleged threats and violence by various non-state actors and extremist groups toward individuals and groups, including civil society organizations and individuals based on their sexual orientation", - "values": [ - "Civil society", - "Freedom of association and peaceful assembly", - "Freedom of opinion and expression", - "Public security", - "Sexual Orientation and Gender Identity" - ] - }, - { - "text": "Implement the recommendations of the reform committee established by the Bureau of Gender Affairs, including the inclusion of a gender sensitive and victim-centered approach in the legislation", - "values": [ - "Women's rights" - ] - }, - { - "text": "Pay special attention to the health needs of women in rural areas ", - "values": [ - "Right to health", - "Women's rights" - ] - }, - { - "text": "Continue its efforts with regard to the smooth and productive activity of the National Independent Human Rights Commission within the country", - "values": [ - "National Human Rights Institution" - ] - }, - { - "text": "Finalize, as soon as possible, the establishment of a Truth Reconciliation Commission faithful to the spirit of the Arusha Agreements and representative of the recommendations made during the public consultations in 2010 ", - "values": [ - "Justice" - ] - }, - { - "text": "Montenegro thanked all delegations for the recommendations made and committed to monitoring their implementation", - "values": [ - "UPR process" - ] - }, - { - "text": "Adopt temporary special measures in areas which women are underrepresented and accelerate the advancement of women ", - "values": [ - "Women's rights" - ] - }, - { - "text": "Consider the possibility of ratifying CPED, the 1951 Convention relating to the Status of Refugees and its Protocol, and OP-CAT ", - "values": [ - "Asylum-seekers - refugees", - "Detention", - "Enforced disappearances", - "International instruments", - "Torture and other CID treatment" - ] - }, - { - "text": "Continue to implement the Chittagong Hill Tracts Peace Accords (CHT) ", - "values": [ - "International humanitarian law" - ] - }, - { - "text": "In line with its previously accepted UPR recommendation adopt legislation prohibiting FGM and continue to strengthen awareness raising on this issue ", - "values": [ - "Human rights education and training", - "Rights of the Child", - "Torture and other CID treatment", - "UPR process", - "Women's rights" - ] - }, - { - "text": "Continue to place emphasis on promoting universal access to education and improving the quality of its education system ", - "values": [ - "Right to education" - ] - }, - { - "text": "Develop and implement a national plan of action to address violence afflicting indigenous women and girls, providing for an adequate reaction of authorities and a resolution to the root causes of the violence ", - "values": [ - "Indigenous peoples", - "Rights of the Child", - "Women's rights" - ] - }, - { - "text": "Implement measures to ensure that the Aboriginality of victims of gender-based violence is accurately recorded ", - "values": [ - "Indigenous peoples", - "Women's rights" - ] - }, - { - "text": "Take steps to ensure that all Canadian children have equal access to government services, such as health, education and welfare, and address the disparities in access to these services for indigenous children in particular, as recommended by the Committee on the CRC ", - "values": [ - "Indigenous peoples", - "Right to education", - "Right to health", - "Rights of the Child", - "Treaty bodies" - ] - }, - { - "text": "Take steps to increase its Official Development Assistance to developing countries which now stands at 0.3 per cent of GDP ", - "values": [ - "Development" - ] - }, - { - "text": "Continue with measures carried out in order to ratify the Second Optional Protocal to ICCPR", - "values": [ - "Death penalty", - "International instruments" - ] - }, - { - "text": "Continue to share its experiences in the area of health ", - "values": [ - "Right to health" - ] - }, - { - "text": "Continue to pay particular attention to the protection of the rights of children and strengthen measures for the full realization of the rights of children with disabilities ", - "values": [ - "Disabilities", - "Rights of the Child" - ] - }, - { - "text": "Abolish the death penalty for all crimes ", - "values": [ - "Death penalty" - ] - }, - { - "text": "Continue to promote and enhance human rights education in the country ", - "values": [ - "Human rights education and training" - ] - }, - { - "text": "Strengthen current efforts aimed at improving the national production system so as to achieve the creation of sufficient jobs in order to overcome poverty and reduce unemployment ", - "values": [ - "Development", - "Poverty" - ] - }, - { - "text": "Further intensify the efforts to improve the system of education in the area of human rights and to strengthen the human rights culture ", - "values": [ - "Human rights education and training" - ] - }, - { - "text": "Strengthen its commitment to empowering women and youth and continue to build on the achievements already made and expedite action on its review of the National Youth Police, which is currently underway ", - "values": [ - "Women's rights" - ] - }, - { - "text": "Implement policies to combat discrimination against women, both in public and private life ", - "values": [ - "Women's rights" - ] - }, - { - "text": "Intensify further efforts to prevent and combat human trafficking and to protect its victims ", - "values": [ - "Trafficking" - ] - }, - { - "text": "Increase public awareness about equal career opportunities and undertake measures to increase the availability of childcare facilities that will enable women to fully participate in the labour market", - "values": [ - "Rights of the Child", - "Women's rights" - ] - }, - { - "text": "Facilitate women's access to justice by providing them with information on their rights, on the available legal remedies against discrimination and on the way to use these remedies ", - "values": [ - "Women's rights" - ] - }, - { - "text": "Step up its cooperation with special procedures mandate holders of the Human Rights Council and eventually consider extending a standing invitation to all Special Procedures mandate holders of the Human Rights Council ", - "values": [ - "Special procedures" - ] - }, - { - "text": "Continue the effort to integrate international norms into national legislations by way of ratification, including by completing the ratification process of the Convention on the Rights of Persons with Disabilities ", - "values": [ - "Disabilities", - "International instruments" - ] - }, - { - "text": "Ratify the International Convention on the Protection of the Rights of All Migrant Workers and their Familie", - "values": [ - "International instruments", - "Labour", - "Migrants" - ] - }, - { - "text": "Continue to enact national legislations to implement international human rights instruments to which it is a party", - "values": [ - "International instruments" - ] - }, - { - "text": "Continue efforts towards strengthening the National Human Rights Commission to ensure its effective functioning, including the development of a national plan of action for human rights", - "values": [ - "National Human Rights Institution" - ] - }, - { - "text": "Continue efforts to ensure equal access of Bedouin communities to education, work, housing and public health", - "values": [ - "Labour", - "Minorities", - "Right to education", - "Right to health", - "Right to housing" - ] - }, - { - "text": "Release all Palestinian prisoners in Israeli prisons as there is no legal basis to which Israel has detained those political activists", - "values": [ - "Detention", - "Freedom of opinion and expression" - ] - }, - { - "text": "Ensure the respect of freedom of expression and freedom of movement of all, lift the ban on journalists from entering the Palestinian territories", - "values": [ - "Freedom of movement", - "Freedom of opinion and expression", - "Freedom of the press" - ] - }, - { - "text": "Recognize the competence of the Committee on Migrant Workers", - "values": [ - "Labour", - "Migrants", - "Treaty bodies" - ] - }, - { - "text": "Carry out all possible efforts to combat racism, racial discrimination, xenophobia and other forms of related intolerance", - "values": [ - "Racial discrimination" - ] - }, - { - "text": "Take the necessary measures to put an end to impunity in all cases of violence against women", - "values": [ - "Impunity", - "Women's rights" - ] - }, - { - "text": "Eliminate from its legislation all forms of sexual discrimination, and take all the necessary measures to effectively enforce this", - "values": [ - "Sexual Orientation and Gender Identity" - ] - }, - { - "text": "Carry out properly follow-up measures to guarantee meaningful progress in the area of women's public and political participation", - "values": [ - "Women's rights" - ] - }, - { - "text": "Further reduce the number of crimes carrying the death penalty and consider a moratorium and eventual abolition", - "values": [ - "Death penalty" - ] - }, - { - "text": "Implement a gender perspective in education at all levels, especially by providing gender-trainings for teachers", - "values": [ - "Right to education", - "Women's rights" - ] - }, - { - "text": "Share its best practices in education and promote the gender perspective at all levels in education and teacher trainings with appropriate measures", - "values": [ - "Right to education", - "Women's rights" - ] - }, - { - "text": "Continue strengthening the protection of vulnerable groups, such as the group of victims of war ", - "values": [ - "Other" - ] - }, - { - "text": "Make the necessary declarations under articles 21 and 22 of CAT ", - "values": [ - "International instruments", - "Torture and other CID treatment" - ] - }, - { - "text": "Preserve and promote the identity of the family, recognizing its foundation in the union of man and woman based on free consent ", - "values": [ - "Other" - ] - }, - { - "text": "Continue to promote the education of women in rural and indigenous communities ", - "values": [ - "Indigenous peoples", - "Right to education", - "Women's rights" - ] - }, - { - "text": "Ratify the Convention against Torture and Other Cruel, Inhuman or Degrading Treatment or Punishment and the International Convention for the Protection of All Persons from Enforced Disappearance ", - "values": [ - "Enforced disappearances", - "International instruments", - "Torture and other CID treatment" - ] - }, - { - "text": "Pursue the efforts to achieve the Millennium Development Goals ", - "values": [ - "Development" - ] - }, - { - "text": "Continue to address all forms of political, economic and social discrimination against the Maori and Pacific population by meeting their various demands for constitutional and legal reforms and recognition ", - "values": [ - "ESC rights - general", - "Indigenous peoples", - "Racial discrimination" - ] - }, - { - "text": "Adopt necessary legislative and administrative measures to guarantee the security of LGBT persons and facilitate their access to justice and legal assistance ", - "values": [ - "Sexual Orientation and Gender Identity" - ] - }, - { - "text": "Develop affirmative actions for women's empowerment in the public and private sectors ", - "values": [ - "Women's rights" - ] - }, - { - "text": "Put in place a broad strategy, which includes legislation, to change or eliminate practices and cultural stereotypes which discriminate against women, in compliance with the CEDAW Convention ", - "values": [ - "International instruments", - "Women's rights" - ] - }, - { - "text": "Accept all outstanding and new requests from mandate holders to visit the country ", - "values": [ - "Special procedures" - ] - }, - { - "text": "Actively participate in the work of the Human Rights Council on the basis of dialogue and cooperation to contribute to enhancement of the capacity, effectiveness, transparency and objectivity of the Council ", - "values": [ - "Technical assistance and cooperation" - ] - }, - { - "text": "Respect the rights of ethnic and religious minorities and take the necessary measures to prevent and halt persecution, forced eviction and confiscation of their property ", - "values": [ - "Freedom of religion and belief", - "Minorities", - "Right to land" - ] - }, - { - "text": "Strengthen the cooperation between Yemen and the international human rights organizations, particularly the United Nations, and enhance interaction with the international and domestic civil society agencies ", - "values": [ - "Civil society", - "Technical assistance and cooperation" - ] - }, - { - "text": "Ratify, as a priority, the United Nations Convention against Transnational Organized Crime and the Protocols thereto, as well as the Rome Statute of the ICC, and consequently to fully align its national legislation with all obligations under the Rome Statute ", - "values": [ - "International instruments", - "Justice", - "Trafficking" - ] - }, - { - "text": "Undertake a gender revision of and amend all laws regulating property rights with a view to ensure equal land and property entitlements for women and men", - "values": [ - "Women's rights" - ] - }, - { - "text": "Promote and strengthen child protection mechanisms, especially in rural areas, and ensure equal access to education for all children, with a particular focus on children from marginalized groups and minorities ", - "values": [ - "Minorities", - "Right to education", - "Rights of the Child" - ] - }, - { - "text": "Develop programmes and policies that foster norms and attitudes of zero tolerance for harmful and discriminatory attitudes towards gender, including the preference for sons, which can result in harmful and unethical practices such as prenatal sex selection ", - "values": [ - "Women's rights" - ] - }, - { - "text": "Increase its efforts to prevent unacceptable forms of child labour ", - "values": [ - "Labour", - "Rights of the Child" - ] - }, - { - "text": "Ratify all core international human rights treaties, most notably the Convention against Torture and Other Cruel, Inhuman or Degrading Treatment or Punishment ", - "values": [ - "International instruments", - "Torture and other CID treatment" - ] - }, - { - "text": "Initiate reforms to bring its legislation on and practice of freedom of expression and opinion in line with international standards ", - "values": [ - "Freedom of opinion and expression" - ] - }, - { - "text": "Adopt urgently legislation for complementarity with the Rome Statute and provide means for implementation", - "values": [ - "International instruments", - "Justice" - ] - }, - { - "text": "Modify existing sections of the Criminal Code that apply to buggery and indecency so that same-sex sexual activity between consenting adults is not criminalized, and adopt legislation that prohibits discrimination on the basis of sexual orientation and gender identity", - "values": [ - "Sexual Orientation and Gender Identity" - ] - }, - { - "text": "Take all necessary measures to establish a formal moratorium on executions, with a view to abolishing the death penalty ", - "values": [ - "Death penalty" - ] - }, - { - "text": "Fully align its national legislation with the Rome Statute, by incorporating provisions to cooperate promptly and fully with the International Criminal Court and ratify the Kampala amendments to the Rome Statute ", - "values": [ - "International instruments", - "Justice" - ] - }, - { - "text": "Strengthen its cooperation with civil society organizations for the promotion and protection of human rights in the area of health services ", - "values": [ - "Civil society", - "Right to health" - ] - }, - { - "text": "The delegation reaffirmed Ethiopia's firm commitment to further strengthen the freedom of expression and peaceful assembly as well as zero-tolerance against torture. ", - "values": [ - "Freedom of association and peaceful assembly", - "Freedom of opinion and expression", - "Torture and other CID treatment" - ] - }, - { - "text": "Attain as soon as possible the ratification of major international legal instruments already signed by Angola", - "values": [ - "International instruments" - ] - }, - { - "text": "Continue to introduce legislation to fulfil its obligations under the Convention on the Rights of the Child", - "values": [ - "International instruments", - "Rights of the Child" - ] - }, - { - "text": "Continue to implement the National Strategy for Long-Term Development "Angola 2025"", - "values": [ - "Development" - ] - }, - { - "text": "Continue its firm social investment policies", - "values": [ - "ESC rights - general" - ] - }, - { - "text": "Guarantee universal access to health services and institutions", - "values": [ - "Right to health" - ] - }, - { - "text": "Reinforce measures aimed at combating ethnic, racial and gender based discrimination. Bearing in mind that Bosnia and Herzegovina is currently holding the chairmanship of the Decade for Roma Inclusion, undertake more measures to promote the inclusion of persons belonging to the Roma minority during the tenure of this initiative", - "values": [ - "Minorities", - "Racial discrimination", - "Women's rights" - ] - }, - { - "text": "Ensure the protection of journalists, media personnel and human rights defenders against any attacks, investigate and prosecute such attacks and bring those responsible to justice", - "values": [ - "Freedom of the press", - "Human rights defenders" - ] - }, - { - "text": "Continue to implement measures towards the rights of youth and encourage voluntary initiatives and charity work for the promotion of these rights", - "values": [ - "Other" - ] - }, - { - "text": "Take the necessary measures to establish a moratorium on executions", - "values": [ - "Death penalty" - ] - }, - { - "text": "Increase monitoring and regulate domestic work", - "values": [ - "Labour" - ] - }, - { - "text": "Continue efforts in the education system to ensure access to education for all segments of the society", - "values": [ - "Right to education" - ] - }, - { - "text": "Accelerate the adoption of the bill on the respect of human rights in the fight against terrorism", - "values": [ - "Counter-terrorism" - ] - }, - { - "text": "Continue and promote the policy of women protection and empowerment through, inter alia, applying harsher punishments to perpetrators of the crime of femicide", - "values": [ - "Women's rights" - ] - }, - { - "text": "Continue and strengthen actions put in place to improve the rights of children and women, and the right to health for all its population", - "values": [ - "Right to health", - "Rights of the Child", - "Women's rights" - ] - }, - { - "text": "Continue its efforts in promoting gender equality, including expanding the role of women in its national development by providing the necessary financial and human resources to strengthen the implementation of policies and programmes for the empowerment of women in social and public life", - "values": [ - "Women's rights" - ] - }, - { - "text": "Ratify the Convention against Torture and Other Cruel, Inhuman or Degrading Treatment or Punishment and harmonize the convention with the national legislation", - "values": [ - "International instruments", - "Torture and other CID treatment" - ] - }, - { - "text": "Issue a standing invitation to the Human Rights Council special procedures", - "values": [ - "Special procedures" - ] - }, - { - "text": "Continue efforts to improve and strengthen women's status in society", - "values": [ - "Women's rights" - ] - }, - { - "text": "Guarantee the full enjoyment by all minorities of all their social, cultural and political rights, especially their right to education", - "values": [ - "ESC rights - general", - "Minorities", - "Right to education" - ] - }, - { - "text": "Take the necessary measures to enhance international legal cooperation in cases of serious violations of human rights and ensure the right to truth and justice", - "values": [ - "Justice", - "Technical assistance and cooperation" - ] - }, - { - "text": "Ensure that those who commit torture are held accountable and ratify CAT and its Optional Protocol", - "values": [ - "Detention", - "International instruments", - "Torture and other CID treatment" - ] - }, - { - "text": "Intensify and carry forward its efforts, particularly in the area of right to education", - "values": [ - "Right to education" - ] - }, - { - "text": "Take steps to ensure that national legislation on domestic violence provides appropriate penalties for perpetrators and legal and pyschosocial support to victims, including children", - "values": [ - "Rights of the Child", - "Women's rights" - ] - }, - { - "text": "Finalize the process of the establishment of a national human rights institution in conformity with the Paris Principles", - "values": [ - "National Human Rights Institution" - ] - }, - { - "text": "Submit its overdue reports to the Committee against Torture and the Human Rights Committee", - "values": [ - "CP rights - general", - "Torture and other CID treatment", - "Treaty bodies" - ] - }, - { - "text": "Continue consolidating its effective health programmes and providing universal quality health care for its entire people", - "values": [ - "Right to health" - ] - }, - { - "text": "Strengthen cooperation with civil society on promoting non-discrimination and tolerance in society, and consider instituting regular consultations with civil society organizations on improving the human rights protection system", - "values": [ - "Civil society" - ] - }, - { - "text": "Take further steps for the protection of national minorities", - "values": [ - "Minorities" - ] - }, - { - "text": "Abolish the death penalty and ratify the Second Optional Protocol to ICCPR, aiming at the abolition of the death penalty", - "values": [ - "Death penalty", - "International instruments" - ] - }, - { - "text": "Ratify the Optional Protocol to ICESCR, as well as the Optional Protocol to CRC on a communications procedure", - "values": [ - "ESC rights - general", - "International instruments", - "Rights of the Child" - ] - }, - { - "text": "Make every effort to accelerate the process of ratifying the Optional Protocol to the Convention on the Elimination of All Forms of Discrimination against Women", - "values": [ - "International instruments", - "Women's rights" - ] - }, - { - "text": "Strengthen actions against discrimination, violence against women and female genital mutilation, ensure effective access to justice, and strengthen the implementation of sanctions against this type of crimes", - "values": [ - "Rights of the Child", - "Torture and other CID treatment", - "Women's rights" - ] - }, - { - "text": "Improve the implementation of the National Action Plan on Female Genital Mutilation, by strengthening it with awareness-raising campaigns and by working with traditional leaders in order to fully eradicate this practice, while strengthening likewise the means and initiatives of the National Committee for the Elimination of Harmful Practices", - "values": [ - "Rights of the Child", - "Torture and other CID treatment", - "Women's rights" - ] - }, - { - "text": "Continue to engage its international and regional development partners for support in the continued implementation of its defence and security sector reform initiatives, and to take initial steps to ensure that law enforcement personnel are provided with appropriate human rights education and training", - "values": [ - "Human rights education and training", - "Justice", - "Technical assistance and cooperation" - ] - }, - { - "text": "Intensify its efforts in combating domestic violence, in particular, provide sufficient resources to ensure effective implementation of its legislation as well as to raise awareness of women's rights", - "values": [ - "Rights of the Child", - "Women's rights" - ] - }, - { - "text": "Continue to develop sustainable housing schemes with a view to increasing the provision of housing for low and middle income households", - "values": [ - "Right to health", - "Rights of the Child" - ] - }, - { - "text": "Sign and ratify those core international human rights instruments to which Kiribati is not yet a party, particularly the ICCPR and its first and second protocols", - "values": [ - "CP rights - general", - "Death penalty", - "International instruments" - ] - }, - { - "text": "Ratify the ICESCR as an important tool to give greater effectiveness to the protection of human rights in the context of climate change, as well as the International Convention on the Elimination of All Forms of Racial Discrimination and the Convention against Torture", - "values": [ - "ESC rights - general", - "Environment", - "International instruments", - "Racial discrimination", - "Torture and other CID treatment" - ] - }, - { - "text": "Strengthen legal frameworks to effectively eliminate violence against women", - "values": [ - "Women's rights" - ] - }, - { - "text": "Heed the recommendations of the Special Rapporteur on the human right to safe drinking water and sanitation regarding improvements to water and sanitation infrastructure", - "values": [ - "Right to water and sanitation", - "Special procedures" - ] - }, - { - "text": "Work towards the ratification of ICRMW", - "values": [ - "International instruments", - "Labour", - "Migrants" - ] - }, - { - "text": "Adopt a comprehensive national gender equality action plan", - "values": [ - "Women's rights" - ] - }, - { - "text": "Continue its support for the United Nations efforts to combat human trafficking", - "values": [ - "Trafficking" - ] - }, - { - "text": "Implement the strategic plan to resolve the issue of stateless individuals in Kuwait, through a transparent system in which individuals whose nationality and status is unresolved can either attain Kuwaiti nationality rightfully or otherwise regularize their situation", - "values": [ - "Statelessness and the right to nationality" - ] - }, - { - "text": "Continue its efforts to provide humanitarian and development aid", - "values": [ - "Development" - ] - }, - { - "text": "Promote the development of a free and open Internet by amending the Prime Minister's Decree, which appears to unduly limit the right to freedom of expression online", - "values": [ - "Freedom of opinion and expression" - ] - }, - { - "text": "Redouble efforts towards the realization of, at least, part of the remaining Millennium Development Goals", - "values": [ - "Development" - ] - }, - { - "text": "Enact the law on domestic violence in order to overcome the Penal Code's shortcomings in covering domestic violence cases", - "values": [ - "Rights of the Child", - "Women's rights" - ] - }, - { - "text": "Intensify efforts to ratify the Optional Protocol to the Convention against Torture", - "values": [ - "Detention", - "International instruments", - "Torture and other CID treatment" - ] - }, - { - "text": "Make available all the necessary needs to guarantee the success of the National Plan of Action of Gender Equality 2015-2020", - "values": [ - "Women's rights" - ] - }, - { - "text": "With regard to the issuing of a standing invitation to all Special Rapporteurs, the delegation clarified that Angola was committed to reinforcing its cooperation with the international human rights mechanisms. In the last few years, the Government had invited the Special Rapporteur on the situation of human rights defenders, Special Rapporteur on freedom of religion or belief, and the Working Group on Arbitrary Detention. Also, two former United Nations High Commissioners for Human Rights visited Angola. The Government intends to extend invitations to the Special Rapporteur on the human rights of migrants and the Special Rapporteur on adequate housing as a component of the right to an adequate standard of living, and on the right to non-discrimination in this context. ", - "values": [ - "Special procedures", - "Treaty bodies", - "UPR process" - ] - }, - { - "text": "Introducing and bringing into operation a permanent body to combat trafficking.", - "values": [ - "Trafficking" - ] - }, - { - "text": "With regard to the Optional Protocol to the Convention against Torture and Other Cruel, Inhuman or Degrading Treatment or Punishment, Guinea presented its initial report to the Committee against Torture on 6 May 2014. The Ministry of Human Rights took that opportunity to reiterate the commitment by Guinea to accede to the Optional Protocol.", - "values": [ - "Detention", - "International instruments", - "Torture and other CID treatment" - ] - }, - { - "text": "Establish an inter-institution mechanism to provide follow-up to the recommendations by the UPR and other international mechanisms, to coordinate the presentation of reports to treaty bodies and to study Andorra's accession to the treaties to which it is not yet a party", - "values": [ - "International instruments", - "Treaty bodies", - "UPR process" - ] - }, - { - "text": "Continue plans to increase employment in the country, especially for its vulnerable groups", - "values": [ - "Development" - ] - }, - { - "text": "Dedicate additional resources to enhance the capacity of centres for victims of sexual and domestic violence", - "values": [ - "Rights of the Child", - "Women's rights" - ] - }, - { - "text": "Develop further actions to improve community services and support for persons with disabilities", - "values": [ - "Disabilities" - ] - }, - { - "text": "Take further effective measures to address the continued high crime rates in the areas of sexual violence against women and the trafficking of women and children", - "values": [ - "Rights of the Child", - "Torture and other CID treatment", - "Women's rights" - ] - }, - { - "text": "Put in place an accessible health-care system and consider applying the Technical Guidance on preventable mortality and morbidity of children under the age of 5 years, which was developed by the World Health Organization", - "values": [ - "Right to health", - "Rights of the Child" - ] - }, - { - "text": "Ensure an independent, inclusive and consultative drafting process which will lead to a constitution guaranteeing fundamental rights of the people, including the rights of women, ensure separation of powers and independence of the judiciary", - "values": [ - "Justice", - "Women's rights" - ] - }, - { - "text": "Declare a de jure moratorium on the death penalty with a view to its final abolition, and in this context take steps to become Party to the Second Optional Protocol to the International Covenant on Civil and Political Rights", - "values": [ - "Death penalty", - "International instruments" - ] - }, - { - "text": "Continue strengthening its social policies with a view to increasing the quality of life of its people, in particular of the most needy sectors", - "values": [ - "ESC rights - general" - ] - }, - { - "text": "Bring domestic legislation into conformity with its international obligations in the human rights sphere", - "values": [ - "International instruments" - ] - }, - { - "text": "Accelerate the process to adopt a law on gender equality and carry out awareness-raising activities on the issues of gender and domestic violence in the judicial sector, in the security forces as well as in schools", - "values": [ - "Women's rights" - ] - }, - { - "text": "Increase resource allocations to government agencies mandated to implement laws tackling violence against women", - "values": [ - "Women's rights" - ] - }, - { - "text": "Pursue efforts to combat all forms of discrimination against women", - "values": [ - "Women's rights" - ] - }, - { - "text": "Take all necessary actions to comply with its obligations as set out in the Second Optional Protocol to the International Covenant on Civil and Political Rights", - "values": [ - "Death penalty", - "International instruments" - ] - }, - { - "text": "Develop a well-defined legal framework to prevent and combat violence against women and build a social protection system for victims of domestic violence", - "values": [ - "Rights of the Child", - "Women's rights" - ] - }, - { - "text": "Work together with UNHCR ensuring that the asylum-seekers have access to their rights, particularly in compliance with the principle of non- refoulement", - "values": [ - "Asylum-seekers - refugees", - "Technical assistance and cooperation" - ] - }, - { - "text": "Take steps to put an end to overcrowding in detention facilities, including by ensuring compliance with the requirements established in article 10 of the International Covenant on Civil and Political Rights and application of the Standard Minimum Rules for the Treatment of Prisoners", - "values": [ - "Detention", - "International instruments" - ] - }, - { - "text": "Ensure prompt and effective implementation of the legislation to eliminate violence against women", - "values": [ - "Women's rights" - ] - }, - { - "text": "Positively consider signing and ratifying the principal international and inter-American human rights instruments, as well as reviewing the reservations and declarations that may affect the object and purpose of such instruments", - "values": [ - "International instruments" - ] - }, - { - "text": "Heighten efforts to promote non-discrimination of any kind, including discrimination on the basis of sexual orientation and gender identity", - "values": [ - "Sexual Orientation and Gender Identity" - ] - }, - { - "text": "Consolidate national human rights efforts through a federal human rights act and reinvigorating the National Human Rights Plan of Action", - "values": [ - "General" - ] - }, - { - "text": "Take more resolute measures in combating racial discrimination, xenophobia and prejudices against members of religious and ethnic minorities, including by actively promoting inter-cultural, inter-ethnic and inter-faith understanding and tolerance", - "values": [ - "Freedom of religion and belief", - "Minorities", - "Racial discrimination" - ] - }, - { - "text": "Improve conditions in youth detention facilities, including through ensuring independent and effective investigation of all allegations of human rights violations therein", - "values": [ - "Detention", - "Rights of the Child" - ] - }, - { - "text": "Review its national migration and asylum policies with a view to bring them in line with the Convention against Torture as well as the Convention on the Rights of the Child, particularly with regard to conditions of detention", - "values": [ - "Asylum-seekers - refugees", - "Detention", - "International instruments", - "Migrants", - "Rights of the Child", - "Torture and other CID treatment" - ] - }, - { - "text": "Reinforce its policies for the protection of women taking into account the vulnerability of women refugees", - "values": [ - "Asylum-seekers - refugees", - "Women's rights" - ] - }, - { - "text": "Ensure that police investigations are carried out in an impartial and non-discriminatory manner and not based on ethnic profiling", - "values": [ - "Racial discrimination" - ] - }, - { - "text": "Bolster respect for pluralism and open debate by fostering a non-violent environment tolerant of dissenting voices, including those of the opposition, and avoiding politically motivated actions against critical media outlets", - "values": [ - "Freedom of association and peaceful assembly", - "Freedom of opinion and expression", - "Freedom of the press" - ] - }, - { - "text": "Adopt a comprehensive action plan to accelerate the repatriation process of Meskhetian Turks, including measures to facilitate their integration and taking into account the educational needs of their children", - "values": [ - "Minorities", - "Right to education", - "Rights of the Child" - ] - }, - { - "text": "Withdraw all its reservations to the Convention on the Elimination of All Forms of Discrimination against Women", - "values": [ - "International instruments", - "Women's rights" - ] - }, - { - "text": "Ensure equitable and sustainable resources to education", - "values": [ - "Right to education" - ] - }, - { - "text": "Strengthen efforts to improve the well-being of women migrant workers in Lebanon and their rights", - "values": [ - "Labour", - "Migrants", - "Women's rights" - ] - }, - { - "text": "Lift the reservations of the Federated States of Micronesia to the Convention on the Elimination of All Forms of Discrimination against Women ", - "values": [ - "International instruments", - "Women's rights" - ] - }, - { - "text": "Allow the OHCHR to open a country office with a full mandate", - "values": [ - "Technical assistance and cooperation" - ] - }, - { - "text": "Enact law that will address the spread of discrimination, incitement of hatred against Muslims and members of national, ethnic, religious and linguistic minorities in Myanmar", - "values": [ - "Freedom of religion and belief", - "Minorities", - "Racial discrimination" - ] - }, - { - "text": "Consider reviewing the News Media Law as well as the Printing and Publication Enterprise Law of 2014 in conformity with international human rights standards in order to enhance freedom of speech in the country", - "values": [ - "Freedom of opinion and expression", - "Freedom of the press", - "International instruments" - ] - }, - { - "text": "End impunity of members of the army and government officials, who commit human rights violations, and bring them to justice", - "values": [ - "Human rights violations by state agents", - "Impunity" - ] - }, - { - "text": "Combat domestic violence particularly by raising public awareness on the problem of violence", - "values": [ - "Human rights education and training", - "Rights of the Child", - "Women's rights" - ] - }, - { - "text": "Continue its efforts in adopting development policies which meet the needs of the people and improve the standard of living of the citizens in order to protect and promote human rights", - "values": [ - "Development" - ] - }, - { - "text": "Eliminate the prohibition of conversion to another religion, which undermines freedom of religion", - "values": [ - "Freedom of religion and belief" - ] - }, - { - "text": "Safeguard the right to opinion and speech, as prescribed by Article 29 of the Omani Basic Statute of the State, by reviewing current legislation and working towards specifying its limits and boundaries in a clear and consistent manner", - "values": [ - "Freedom of opinion and expression" - ] - }, - { - "text": "Strengthen measures to combat human trafficking and take measures to protect victims of trafficking", - "values": [ - "Trafficking" - ] - }, - { - "text": "Properly investigate cases of the excessive use of force by law enforcement officials against protestors in 2011 and 2012, including prosecuting and punishing all those responsible", - "values": [ - "Freedom of association and peaceful assembly", - "Human rights violations by state agents" - ] - }, - { - "text": "Provide more opportunities to women to be represented in high-level government posts", - "values": [ - "Women's rights" - ] - }, - { - "text": "Accede to the Rome Statute of the International Criminal Court and the Agreement on the Privileges and Immunities of the International Criminal Court", - "values": [ - "International instruments", - "Justice" - ] - }, - { - "text": "Investigate allegations of arbitrary arrests and maltreatment of detained persons at the Gikondo Transit Centre, and bring the perpetrators to justice", - "values": [ - "Detention", - "Migrants" - ] - }, - { - "text": "Adopt a national gender policy and enhance the capacity for gender analysis with government ministries, departments and agencies that coordinate policy development", - "values": [ - "Women's rights" - ] - }, - { - "text": "Adopt measures aiming to combat domestic violence", - "values": [ - "Rights of the Child", - "Women's rights" - ] - }, - { - "text": "Provide oversight to ensure investigation and prosecution as appropriate against police officers alleged to have been involved in extrajudicial killings", - "values": [ - "Extrajudicial executions", - "Human rights violations by state agents" - ] - }, - { - "text": "Implement Law 7/2010 that creates a special court for children, that is able to address the particularities of these disputes", - "values": [ - "Justice", - "Rights of the Child" - ] - }, - { - "text": "Continue to address efforts to mitigate effects of climate change, both nationally and internationally", - "values": [ - "Environment" - ] - }, - { - "text": "Adopt a proactive and comprehensive strategy to eliminate discrimination against all vulnerable groups", - "values": [ - "Other" - ] - }, - { - "text": "Develop programmes and policies for the prevention, recovery and social integration of child victims of trafficking and exploitation in accordance with the outcome documents adopted at the 1996, 2001 and 2008 World Congresses against Sexual Exploitation of Children, held in Stockholm, Yokohama and Rio de Janeiro, respectively", - "values": [ - "Rights of the Child", - "Trafficking" - ] - }, - { - "text": "Strengthen the mandate of the Office for Children and guarantee children direct access to a single complaints mechanism and to independent advice and legal assistance for children in a wider range of cases", - "values": [ - "Rights of the Child" - ] - }, - { - "text": "Continue strengthening social programmes for the most vulnerable sectors of the population, in particular children, women, the elderly and those with disabilities belonging to minorities", - "values": [ - "Disabilities", - "Minorities", - "Rights of the Child", - "Women's rights" - ] - }, - { - "text": "Continue to review its national legislation with a view to address the concerns expressed by some treaty bodies concerning the criminalization of domestic violence", - "values": [ - "Rights of the Child", - "Treaty bodies", - "Women's rights" - ] - }, - { - "text": "Strengthen measures to counter the use of racist discourse in politics and in the media", - "values": [ - "Racial discrimination" - ] - }, - { - "text": "Strengthen its efforts to introduce human rights education in the curriculum and training programmes", - "values": [ - "Human rights education and training" - ] - }, - { - "text": "Establish a national independent mechanism responsible for the inspection of detention centres", - "values": [ - "Detention" - ] - }, - { - "text": "Continue efforts to promote the rights and working conditions in employment, including through appropriate legislative and administrative measures", - "values": [ - "Labour" - ] - }, - { - "text": "Implement public policies permitting gender equality in the political and economic life of the country", - "values": [ - "Women's rights" - ] - }, - { - "text": "Effectively combat human trafficking, in particular sexual exploitation and forced labour", - "values": [ - "Labour", - "Trafficking" - ] - }, - { - "text": "Review the Penal Code so that the age of criminal responsibility is in accordance with relevant international standards", - "values": [ - "Justice", - "Rights of the Child" - ] - }, - { - "text": "Adopt better measures on discrimination against migrants and non-citizens", - "values": [ - "Migrants", - "Racial discrimination", - "Statelessness and the right to nationality" - ] - }, - { - "text": "Strengthen gender equality, particularly for wage remuneration", - "values": [ - "Women's rights" - ] - }, - { - "text": "Move towards speedy ratification of the Optional Protocol to the Convention on the Elimination of All Forms of Discrimination against Women, including an effective programme for their implementation", - "values": [ - "International instruments", - "Women's rights" - ] - }, - { - "text": "Fight against impunity of the perpetrators of human rights violations, particularly those perpetrated during the civil war which have not been judged by the Special Tribunal for Sierra Leone, as well as those perpetrated by members of the law enforcement agencies", - "values": [ - "Human rights violations by state agents", - "Impunity", - "Justice" - ] - }, - { - "text": "Consider incorporating into its legislation a definition of discrimination against women", - "values": [ - "Women's rights" - ] - }, - { - "text": "Re-establish the moratorium on executions with a view to its abolition", - "values": [ - "Death penalty" - ] - }, - { - "text": "Fast-track the process to sign and ratify international treaties related to the Convention on the Rights of Persons with Disabilities", - "values": [ - "Disabilities", - "International instruments" - ] - }, - { - "text": "Adopt early the Constitution and the draft laws in the process of enactment, in line with "Vision 2016" programme proposed by the Government", - "values": [ - "General" - ] - }, - { - "text": "Maintain its efforts for the incorporation of the provisions of the Convention on the Rights of the Child in its national legislation and public policies", - "values": [ - "International instruments", - "Rights of the Child" - ] - }, - { - "text": "Deepen its commitment with the International Criminal Court through adapting its national legislation to the Rome Statute", - "values": [ - "International instruments", - "Justice" - ] - }, - { - "text": "Conclude swiftly the process of the ratification of Optional Protocol to the Convention against Torture", - "values": [ - "Detention", - "International instruments", - "Torture and other CID treatment" - ] - }, - { - "text": "Launch a comprehensive awareness-raising campaign to educate and change societal attitude, particularly those that place women in a lower status than men", - "values": [ - "Human rights education and training", - "Women's rights" - ] - }, - { - "text": "Abolish the death penalty by means of the ratification of the Second Optional Protocol to the International Covenant on Civil and Political Rights", - "values": [ - "Death penalty", - "International instruments" - ] - }, - { - "text": "Carry out impartial and independent investigations of all allegations of excessive use of force and violations carried out by representatives of the security forces, in particular in cases related to communal land rights, and bring perpetrators of such violations to justice", - "values": [ - "Human rights violations by state agents" - ] - }, - { - "text": "Adopt measures to empower girls and boys to make conscious decisions regarding their health and well-being through mainstreaming of sexual and reproductive health education", - "values": [ - "Right to health", - "Rights of the Child", - "Women's rights" - ] - }, - { - "text": "Institute measures to prevent and effectively respond to all incidents of violence, sexual abuse, exploitation and trafficking of women and girls, as well as introduce measures to effectively investigate, prosecute and punish all perpetrators", - "values": [ - "Rights of the Child", - "Trafficking", - "Women's rights" - ] - }, - { - "text": "Allocate appropriate manpower and finance for the implementation of the National Plan to Promote and Protect Human Rights in the Sudan (2013- 2023)", - "values": [ - "General" - ] - }, - { - "text": "Develop a comprehensive human rights strategy", - "values": [ - "General" - ] - }, - { - "text": "Cooperate with international human rights mechanisms and with special procedures mandate holders", - "values": [ - "Special procedures", - "Treaty bodies", - "UPR process" - ] - }, - { - "text": "Continue its cooperation with the human rights mechanisms of the United Nations", - "values": [ - "Special procedures", - "Technical assistance and cooperation", - "Treaty bodies", - "UPR process" - ] - }, - { - "text": "Sign and ratify the 1954 Convention relating to the Status of Stateless Persons and the 1961 Convention on the Reduction of Statelessness", - "values": [ - "International instruments", - "Statelessness and the right to nationality" - ] - }, - { - "text": "Consider ratifying the human rights conventions that the country has not yet acceded to", - "values": [ - "International instruments" - ] - }, - { - "text": "Ensure that suspension of media outlets, including online media, cannot occur without judicial procedures on the basis of strict necessity and proportionality ", - "values": [ - "Freedom of opinion and expression", - "Freedom of the press" - ] - }, - { - "text": "Implement the third National Human Rights Action Plan (2014-2018)", - "values": [ - "General" - ] - }, - { - "text": "Further strengthen efforts towards birth registration for all, with a view to effectively reaching out to disadvantaged and vulnerable groups", - "values": [ - "Rights of the Child", - "Statelessness and the right to nationality" - ] - }, - { - "text": "Advance women's empowerment, and greater representation of women in all sectors", - "values": [ - "Women's rights" - ] - }, - { - "text": "Further intensify its efforts to combat human trafficking and ensure protection to victims of human trafficking", - "values": [ - "Trafficking" - ] - }, - { - "text": "Carry out the necessary legal reforms to fully abolish the death penalty and accede to the Second Optional Protocol to the International Covenant on Civil and Political Rights, aiming at the abolition of the death penalty ", - "values": [ - "Death penalty", - "International instruments" - ] - }, - { - "text": "Cease trials of civilians in military courts", - "values": [ - "Justice" - ] - }, - { - "text": "Strengthen the cooperation with human rights mechanisms and extend a standing invitation to the special procedures", - "values": [ - "Special procedures" - ] - }, - { - "text": "Ensure comprehensive sexuality education, with a view to preventing teen pregnancies and the spread of sexually transmitted infections, in particular HIV", - "values": [ - "HIV - Aids", - "Right to health" - ] - }, - { - "text": "Abolish the death penalty and ratify the Second Optional Protocol to the International Covenant on Civil and Political Rights, aiming at the abolition of the death penalty ", - "values": [ - "Death penalty", - "International instruments" - ] - }, - { - "text": "Ratify the Second Optional Protocol to the International Covenant on Civil and Political Rights, aiming aiming at the abolition of the death penalty", - "values": [ - "Death penalty", - "International instruments" - ] - }, - { - "text": "The United States is committed to accountability for Homeland Security personnel involved in any wrongdoing or misconduct, including excessive use of force.", - "values": [ - "Human rights violations by state agents" - ] - }, - { - "text": "Effectively address the situation of persons who have been in prolonged pre-trial detention in full accordance with the principle of proportionality", - "values": [ - "Detention" - ] - }, - { - "text": "Continue strengthening its education policy, focusing on the most disadvantaged sectors", - "values": [ - "Right to education" - ] - }, - { - "text": "Take additional steps to improve accessibility to education, including for children in domestic service and children with disabilities and ensure inclusive and quality education for all", - "values": [ - "Disabilities", - "Labour", - "Right to education", - "Rights of the Child" - ] - }, - { - "text": "Ratify as soon as possible the Optional Protocol to the Convention against Torture ", - "values": [ - "Detention", - "International instruments", - "Torture and other CID treatment" - ] - }, - { - "text": "Reassess the reasons behind the reservations made to the International Covenant on Civil and Political Rights, with the aim of withdrawing them", - "values": [ - "CP rights - general", - "International instruments" - ] - }, - { - "text": "Establish measures to strengthen the fight against domestic violence", - "values": [ - "Rights of the Child", - "Women's rights" - ] - }, - { - "text": "Guarantee to persons belonging to minorities their rights to use their language and practise their religion", - "values": [ - "Freedom of religion and belief", - "Minorities" - ] - }, - { - "text": "Expedite as a matter of priority the establishment of a hybrid court for South Sudan, in line with the Agreement on the Resolution of the Conflict in the Republic of South Sudan, to try violations of human rights and other serious crimes in South Sudan and ensure accountability of all perpetrators ", - "values": [ - "Justice" - ] - }, - { - "text": "Facilitate humanitarian access to civilians, lift the blockade on all besieged areas and grant full and unimpeded access to the Commission of Inquiry", - "values": [ - "Justice" - ] - }, - { - "text": "Strengthen and expand the relevant legal provisions for the promotion of the rights of women, in particular by strengthening their autonomy and advancing their participation in political, economic and social life", - "values": [ - "Women's rights" - ] - }, - { - "text": "Step up measures to bring an end to attacks against hospitals and their personnel, humanitarian and health units, and humanitarian convoys, and bring perpetrators to justice", - "values": [ - "International humanitarian law" - ] - }, - { - "text": "Lift immediately sieges and allow full, sustained and unimpeded humanitarian access to civilians in need", - "values": [ - "Other" - ] - }, - { - "text": "Continue to develop the normative and institutional framework at the national level by integrating all instruments and treaties ratified by Togo in the legislative system of the country", - "values": [ - "International instruments" - ] - }, - { - "text": "Carry out immediate, impartial and exhaustive investigations into all allegations of torture, ill-treatment and other human rights violations, in particular in detention centres, as recommended previously, and prosecute those responsible", - "values": [ - "Detention", - "Torture and other CID treatment" - ] - }, - { - "text": "Adopt the law on human trafficking", - "values": [ - "Trafficking" - ] - }, - { - "text": "Adopt the additional necessary measures to guarantee the full enjoyment of human rights of vulnerable groups subjected to discrimination, such as lesbian, gay, bisexual, transgender and intersex people, including investigation and punishment of cases of discrimination and the repeal of laws that criminalize and stigmatize", - "values": [ - "Sexual Orientation and Gender Identity" - ] - }, - { - "text": "Intensify efforts to reduce maternal and child mortality rates", - "values": [ - "Right to health", - "Rights of the Child", - "Women's rights" - ] - }, - { - "text": "Adopt the necessary measures to repeal all legislation that discriminates against and penalizes persons because of their sexual orientation", - "values": [ - "Sexual Orientation and Gender Identity" - ] - }, - { - "text": "Continue taking legislative action to eliminate the marginalization of women from socioeconomic and political spheres and strengthen mechanisms for protection against gender-based violence", - "values": [ - "Women's rights" - ] - }, - { - "text": "Continue its efforts to promote sustainable economic and social development and to improve the living standards in the country", - "values": [ - "Development", - "ESC rights - general" - ] - }, - { - "text": "Take necessary measures to eliminate all forms of discrimination against women", - "values": [ - "Women's rights" - ] - }, - { - "text": "Further its work in empowering women, promoting gender equality and eliminating discrimination and violence against women and children by, inter alia, amending and promulgating relevant laws and implementing the national plan for the advancement of Bahraini women", - "values": [ - "Rights of the Child", - "Women's rights" - ] - }, - { - "text": "Continue protecting the natural family and marriage, formed by a husband and a wife, as the fundamental unit of society, as well as the unborn", - "values": [ - "Other" - ] - }, - { - "text": "Continue efforts to develop and implement inclusive health and education policies to benefit all segments of society", - "values": [ - "Right to education", - "Right to health" - ] - }, - { - "text": "Combat discrimination of any kind against persons with disabilities, and take specific measures to improve the standard of living for such persons", - "values": [ - "Disabilities" - ] - }, - { - "text": "Improve the educational system, particularly by enhancing access to marginalized groups and those living in remote areas", - "values": [ - "Right to education" - ] - }, - { - "text": "Adopt the necessary legislative measures to ensure the full enjoyment of the right to freedom of opinion and expression in all its forms, through the elimination of excessive restrictions on its exercise", - "values": [ - "Freedom of opinion and expression" - ] - }, - { - "text": "Continue efforts to combat trafficking in human beings and take effective measures to prevent and eradicate human trafficking and adopt procedures for the determination of the best interests of child victims of trafficking", - "values": [ - "Rights of the Child", - "Trafficking" - ] - }, - { - "text": "Increase the government expenditure in the field of education", - "values": [ - "Right to education" - ] - }, - { - "text": "Accelerate the implementation of the charter on the reform of the judicial system", - "values": [ - "Justice" - ] - }, - { - "text": "Repeal the provisions in the Family Code which discriminate against children born outside of wedlock", - "values": [ - "Rights of the Child" - ] - }, - { - "text": "Continue to put into place practical measures at the local and national levels to ensure gender equality and combat discrimination against women", - "values": [ - "Women's rights" - ] - }, - { - "text": "Ensure that the minimum age of marriage at 18 years of age is respected, including by preventing judges from authorizing children to marry under article 20 of the Family Code", - "values": [ - "Rights of the Child" - ] - }, - { - "text": "Integrate sign language into public media and provide training for interpreters in that field", - "values": [ - "Disabilities" - ] - }, - { - "text": "Establish and ensure the proper functioning of a national preventive mechanism", - "values": [ - "Detention", - "Torture and other CID treatment" - ] - }, - { - "text": "Strengthen the protection of children\u2019s rights, including by maintaining a minimum age of 15 years for criminal liability and raising the age of sexual consent to 16 years", - "values": [ - "Rights of the Child" - ] - }, - { - "text": "Protect more effectively human rights defenders and journalists, especially through cooperation with civil society", - "values": [ - "Civil society", - "Freedom of the press", - "Human rights defenders" - ] - }, - { - "text": "Consider acceding to the Optional Protocol to the Convention on the Rights of Persons with Disabilities", - "values": [ - "Disabilities", - "International instruments" - ] - }, - { - "text": "Become a party to the International Convention for the Protection of All Persons from Enforced Disappearance", - "values": [ - "Enforced disappearances", - "International instruments" - ] - }, - { - "text": "Continue providing human rights education, in particular through access to information and promoting existing mechanisms for protection and reparation", - "values": [ - "Human rights education and training" - ] - }, - { - "text": "Harmonize legislation in order to ensure that the minimum age of marriage is increased to 18 years for boys and girls, without exception", - "values": [ - "Rights of the Child" - ] - }, - { - "text": "Reform the National Council for Social Dialogue", - "values": [ - "Other" - ] - }, - { - "text": "Strengthen its legislative framework by including penal sanctions for perpetrators of acts of forced marriage and non-protection against female genital mutilation", - "values": [ - "Torture and other CID treatment", - "Women's rights" - ] - }, - { - "text": "Complete the investigation on numerous cases of sexual violence against children perpetrated by the high-level officials and bring the perpetrators to justice", - "values": [ - "Rights of the Child" - ] - }, - { - "text": "Enforce the strictest standards on banning political declarations and programmes encouraging racism, xenophobia and hate speech or inciting to hatred or intolerance, including of an ethnic or religious nature", - "values": [ - "Freedom of religion and belief", - "Minorities", - "Racial discrimination" - ] - }, - { - "text": "Take measures on awareness-raising and education about the lesbian, gay, bisexual, transgender and intersex community, by developing and implementing a concrete national action plan in cooperation with lesbian, gay, bisexual, transgender and intersex civil society organizations for all levels of the State", - "values": [ - "Civil society", - "Human rights education and training", - "Sexual Orientation and Gender Identity" - ] - }, - { - "text": "Continue its efforts for the protection of children and combating child labour", - "values": [ - "Labour", - "Rights of the Child" - ] - }, - { - "text": "Publish all reports of previous commissions on enforced disappearances, in particular the Presidential Commission to Investigate Complaints of Missing Persons (PCICMP)", - "values": [ - "Enforced disappearances" - ] - }, - { - "text": "Further strengthen its efforts to reduce the widespread child poverty, and take concrete measures to address the existing high rate of drug and alcohol addiction among children and adolescents", - "values": [ - "Poverty", - "Right to health", - "Rights of the Child" - ] - }, - { - "text": "Consider the implementation of programmes and policies for the empowerment of young people", - "values": [ - "Other" - ] - }, - { - "text": "Work on raising the legal marriage age to 18 years", - "values": [ - "Rights of the Child", - "Women's rights" - ] - }, - { - "text": "Continue to focus on the priority to combat sexual exploitation of children", - "values": [ - "Rights of the Child" - ] - }, - { - "text": "Ensure decent work without discrimination by enhancing effective implementation of the Basic Plan for Gender Equality and the Act on Promotion of Women\u2019s Participation in the Workplace, and by ensuring reasonable wages and safe working conditions for foreign workers, particularly those under the Technical Internship and Training Program", - "values": [ - "Labour", - "Migrants", - "Women's rights" - ] - }, - { - "text": "Establish an independent national human rights institution with a broad mandate and matching resources in line with the Paris Principles", - "values": [ - "National Human Rights Institution" - ] - }, - { - "text": "Strengthen legislation to protect children from all forms of violence", - "values": [ - "Rights of the Child" - ] - }, - { - "text": "Strengthen national efforts to prevent land conflicts between indigenous peoples and farmers", - "values": [ - "Indigenous peoples", - "Right to land" - ] - }, - { - "text": "Expedite action on the review of the Minerals and Mining Act to ensure sound management of the extractive sector to include control of illegal mining activities and integrate community rights", - "values": [ - "Environment" - ] - }, - { - "text": "Adopt specific legislation that recognizes the crime of commercial sexual exploitation and prostitution of children", - "values": [ - "Rights of the Child" - ] - }, - { - "text": "Expedite the adoption of the draft law on trafficking in persons in accordance with international law", - "values": [ - "Trafficking" - ] - }, - { - "text": "Ensure effective implementation of plans and strategies to curb gender-based violence and implement pending legislation to provide legal access to reproductive health services", - "values": [ - "Right to health", - "Women's rights" - ] - }, - { - "text": "Improve treatment of prisoners by encouraging provinces to implement the national mechanism to prevent torture, increasing training for police and prison officials and addressing overcrowding", - "values": [ - "Detention", - "Human rights education and training", - "Torture and other CID treatment" - ] - }, - { - "text": "Put in place a robust legal and judicial instrument aimed at combating discriminatory practices against indigenous peoples and persons of African descent and promote their inclusion in the area of human rights", - "values": [ - "Indigenous peoples", - "Minorities", - "Racial discrimination" - ] - }, - { - "text": "Take steps to address persistent cultural discrimination against indigenous people and people of African descent, including awareness-raising and the establishment of quantitative measures promoting their participation at the highest level and in decision-making positions", - "values": [ - "Human rights education and training", - "Indigenous peoples", - "Minorities" - ] - }, - { - "text": "Elevate racial discrimination to a criminal offence", - "values": [ - "Racial discrimination" - ] - }, - { - "text": "Consider establishing a national human rights institution based on accepted principles", - "values": [ - "National Human Rights Institution" - ] - }, - { - "text": "Strengthen further its system of family allowances and benefits with a view to ensuring that all children, including children of refugees, and migrant parents, had an adequate standard of living", - "values": [ - "Asylum-seekers - refugees", - "Migrants", - "Rights of the Child" - ] - }, - { - "text": "Continue measures to increase the overall ratio of tax to gross domestic product, in particular implementing recommendations from the final report of the Tax Reforms Commission, including steps to provide a proper mechanism to improve tax collection at the national and provincial levels in an open and transparent manner, with a view to ensuring that everyone pays their fair share", - "values": [ - "Other" - ] - }, - { - "text": "Investigate fully allegations of serious acts of violence, including numerous murders, against trade union officers and their members, and bring their perpetrators to justice", - "values": [ - "Labour", - "Public security" - ] - }, - { - "text": "Continue engagement with the United Nations human rights mechanisms and other relevant United Nations bodies to implement the recommendations put forward today", - "values": [ - "Special procedures", - "Treaty bodies", - "UPR process" - ] - } -] \ No newline at end of file diff --git a/src/extractors/text_to_multi_option_extractor/labeled_data/issues/options.json b/src/extractors/text_to_multi_option_extractor/labeled_data/issues/options.json deleted file mode 100644 index f114a79..0000000 --- a/src/extractors/text_to_multi_option_extractor/labeled_data/issues/options.json +++ /dev/null @@ -1,58 +0,0 @@ -[ - "Business and human rights", - "Human rights violations by state agents", - "ESC rights - general", - "Sexual Orientation and Gender Identity", - "Public security", - "Statelessness and the right to nationality", - "Counter-terrorism", - "Trafficking", - "Internally displaced persons", - "Other", - "Right to water and sanitation", - "Indigenous peoples", - "Minorities", - "Corruption", - "Right to education", - "Treaty bodies", - "National Human Rights Institution", - "Human rights defenders", - "UPR process", - "Right to land", - "CP rights - general", - "Death penalty", - "International instruments", - "Technical assistance and cooperation", - "Environment", - "Women's rights", - "Freedom of religion and belief", - "Impunity", - "Torture and other CID treatment", - "HIV - Aids", - "Development", - "Civil society", - "General", - "Extrajudicial executions", - "Right to food", - "Detention", - "Racial discrimination", - "International humanitarian law", - "Labour", - "Migrants", - "Poverty", - "Freedom of association and peaceful assembly", - "Special procedures", - "Freedom of movement", - "Freedom of opinion and expression", - "Asylum-seekers - refugees", - "Right to health", - "Freedom of the press", - "Enforced disappearances", - "Disabilities", - "Human rights education and training", - "Justice", - "Privacy", - "Rights of the Child", - "Elections", - "Right to housing" -] \ No newline at end of file diff --git a/src/extractors/text_to_multi_option_extractor/labeled_data/rightdocs_vote_type/labels.json b/src/extractors/text_to_multi_option_extractor/labeled_data/rightdocs_vote_type/labels.json deleted file mode 100644 index bc0de76..0000000 --- a/src/extractors/text_to_multi_option_extractor/labeled_data/rightdocs_vote_type/labels.json +++ /dev/null @@ -1,1850 +0,0 @@ -[ - { - "text": "human rights institutions and civil society with a view to ensuring their participation in the panel discussion Requests the Office of the High Commissioner to prepare a summary report on the highlevel panel discussion to be presented to the Human Rights Council at its thirtyeighth session Decides to remain seized of the matter. th meeting September Adopted by a recorded vote of to with abstentions. The voting was as follows In favour Albania Belgium Botswana Brazil C\u00f4te dIvoire Croatia El Salvador Georgia Germany Ghana Hungary Japan Latvia Netherlands Panama Paraguay Portugal Qatar Republic of Korea Rwanda Saudi Arabia Slovenia Switzerland Togo United Arab Emirates United Kingdom of Great Britain and Northern Ireland United States of America AHRCRES Against Bolivia Plurinational State of Burundi China Cuba Iraq Philippines Venezuela Bolivarian Republic of Abstaining Bangladesh Congo Ecuador Egypt Ethiopia India Indonesia Kenya Kyrgyzstan Mongolia Nigeria South Africa Tunisia", - "values": [ - "Adopted by vote" - ] - }, - { - "text": "AHRCL United Nations General Assembly Distr Limited September Original English Human Rights Council Thirtysixth session September Agenda item Promotion and protection of all human rights civil political economic social and cultural rights including the right to development Russian Federation amendment to draft resolution AHRCL The question of the death penalty After the seventeenth preambular paragraph insert a new preambular paragraph reading Strongly condemning the practice of executing the death penalty by means of experimental medical supplies and chemicals which can lead to torture or other cruel inhuman or degrading treatment State not a member of the Human Rights Council. GEE", - "values": [ - "Rejected by vote" - ] - }, - { - "text": "AHRCL United Nations General Assembly Distr Limited March Original English Human Rights Council Thirtyfirst session Agenda item Promotion and protection of all human rights civil political economic social and cultural rights including the right to development China Cuba Egypt Iran Islamic Republic of Russian Federation amendment to draft resolution AHRCL The promotion and protection of human rights in the context of peaceful protests Paragraph should read Encourages all States to engage at the national and regional levels with relevant stakeholders including assembly organizers individuals groups and organs of society engaged in the promotion and protection of human rights civil society actors national human rights institutions as well as business enterprises and regional human rights mechanisms on the management of assemblies Nonmember State of the Human Rights Council. GEE", - "values": [ - "Rejected by vote" - ] - }, - { - "text": "to her duties effectively Requests the United High Commissioner for Human Rights to provide all the human and financial resources necessary for the effective fulfilment of the mandate by the Special Rapporteur Requests the Special Rapporteur to report regularly to the Human Rights Council and the General Assembly in accordance with their respective programmes of work Also requests the Special Rapporteur within the scope of her mandate to participate in relevant international forums related to the implementation of the Agenda for Sustainable Development and to contribute to its implementation including by providing advice to States international organizations civil society and other stakeholders on the effective respect protection and fulfilment of cultural rights in the implementation of the Agenda AHRC. AHRCRES Decides to continue its consideration of this matter under the same agenda item in accordance with its programme of work. rd meeting March Adopted without a vote", - "values": [ - "Adopted without a vote" - ] - }, - { - "text": "the High Commissioner to provide technical assistance and capacitybuilding to Libya to promote and protect human rights and to prevent and ensure accountability for violations and abuses of human rights Encourages the special procedures to visit Libya and report to the Human Rights Council and through public statements Requests the High Commissioner to present an oral update on the situation of human rights in Libya and the implementation of the present resolution to the Human Rights Council at its thirtyninth session during an interactive dialogue with the participation of the Special Representative of the SecretaryGeneral for Libya and to present to the Council at its fortieth session a report on the situation of human rights in Libya including the implementation of technical assistance and capacitybuilding and efforts to prevent and ensure accountability for violations and abuses of human rights Decides to remain seized of the matter. th meeting March Adopted without a vote", - "values": [ - "Adopted without a vote" - ] - }, - { - "text": "AHRCL of the family role of the family in supporting the protection and promotion of human rights of persons with disabilities Paragraph The paragraph should read Highlights the role of families in supporting the human rights of its members including members with disabilities and recognizes their potential in contributing to the protection and promotion of the rights of family members Paragraph The paragraph should read Decides to convene with the support of the High Commissioner before the thirtyfourth session of the Human Rights Council a oneday intersessional seminar on the impact of the implementation by States of their obligations under relevant provisions of international human rights law with regard to the protection of the family and its members on the role of the family in supporting the protection and promotion of the rights of persons with disabilities and to discuss challenges and best practices in this regard State not a member of the Human Rights Council. GEE", - "values": [ - "Rejected by vote" - ] - }, - { - "text": "in ensuring the right to education of every girl through allocating appropriate resources including financial and technical resources in support of countryled national education plans AHRCRES Reaffirms the importance of enhancing the dialogue between the United Nations Childrens Fund the United Nations Educational Scientific and Cultural Organization the Special Rapporteur on the right to education and other partners that pursue the goals of girls education with a view to promoting further the right to education of girls in the operational activities of the United Nations system Encourages the High Commissioner and relevant special procedure mandate holders to give the required attention to realizing the equal enjoyment of the right to education by every girl in carrying out their mandates and in their reporting and to work collectively towards its realization through practical and efficient steps Decides to remain seized of the matter. th meeting June Adopted without a vote", - "values": [ - "Adopted without a vote" - ] - }, - { - "text": "to its full cooperation with the Independent Expert and to continue to permit effective access to visit all areas of the country and to meet with all relevant actors Requests the Office of the High Commissioner to provide all financial and human resources necessary to the Independent Expert for the implementation of the mandate Acknowledges that the situation of human rights in the Sudan informs the establishment renewal and transition of mandates related to the Sudan by the Human Rights Council and urges the Government of the Sudan to cooperate with the Independent Expert the Office of the High Commissioner and other stakeholders with the view that the continued and sustained improvement in the situation of human rights in the Sudan would contribute to an eventual transition of the mandate from that of Independent Expert to another appropriate United Nations human rights mechanism Decides to consider this issue under agenda item nd meeting September Adopted without a vote", - "values": [ - "Adopted without a vote" - ] - }, - { - "text": "necessary for the effective fulfilment of his mandate Requests the Special Rapporteur to submit an annual report on the implementation of the present resolution to the General Assembly and to the Human Rights Council in accordance with their programmes of work Calls upon all Governments to cooperate with and assist the Special Rapporteur in his task to supply all necessary information requested by the mandate holder and to respond favourably to the requests of the Special Rapporteur to visit their countries to enable him to fulfil his mandate effectively Invites relevant United Nations agencies funds and programmes the treaty bodies and civil society actors including nongovernmental organizations as well as the private sector to cooperate fully with the Special Rapporteur in the fulfilment of his mandate AHRCRES Decides to continue its consideration of the issue of extreme poverty and human rights in accordance with its programme of work. th meeting June Adopted without a vote", - "values": [ - "Adopted without a vote" - ] - }, - { - "text": "Advisory Committee to conduct a study on the ways in which development contributes to the enjoyment of all human rights by all in particular on best experiences and practices and to submit the report to the Human Rights Council before its fortyfirst session Decides to remain seized of the matter. th meeting June Adopted by a recorded vote of to with abstentions The voting was as follows In favour Bangladesh Bolivia Plurinational State of Botswana Brazil Burundi China Congo C\u00f4te dIvoire Cuba Ecuador Egypt El Salvador Ethiopia Ghana India Indonesia Iraq Kenya Kyrgyzstan Mongolia Nigeria Philippines Qatar Rwanda Saudi Arabia South Africa Togo Tunisia United Arab Emirates Venezuela Bolivarian Republic of The delegation of Paraguay did not cast a vote. AHRCRES Against Albania Belgium Croatia Germany Hungary Japan Latvia Netherlands Portugal Slovenia Switzerland United Kingdom of Great Britain and Northern Ireland United States of America Abstaining Georgia Panama Republic of Korea", - "values": [ - "Adopted by vote" - ] - }, - { - "text": "AHRCL United Nations General Assembly Distr Limited September Original English Human Rights Council Thirtysixth session September Agenda item Promotion and protection of all human rights civil political economic social and cultural rights including the right to development Russian Federation amendment to draft resolution AHRCL The question of the death penalty The seventeenth preambular paragraph should read Taking note of the report of the United Nations High Commissioner for Human Rights on the highlevel panel discussion on the question of the death penalty during which it was noted that in some cases imposing the death penalty leads to torture or other cruel inhuman or degrading treatment or punishment State not a member of the Human Rights Council. AHRC. GEE", - "values": [ - "Rejected by vote" - ] - }, - { - "text": "law and as applicable international humanitarian law and international refugee law as an important element of the technical assistance they offer to States in the area of counterterrorism Recalls the need to continue to ensure that fair and clear procedures under the United Nations terrorismrelated sanctions regime are strengthened in order to enhance efficiency and transparency in particular with regard to placing individuals and entities on and removing them from terrorismrelated sanctions lists while emphasizing the importance of sanctions in countering terrorism under international law and welcomes the ongoing efforts of the Security Council in support of those objectives Requests the High Commissioner and the Special Rapporteur to present their reports bearing in mind the content of the present resolution to the Human Rights Council under agenda item in conformity with its annual programme of work. th meeting June Adopted without a vote See General Assembly resolution", - "values": [ - "Adopted without a vote" - ] - }, - { - "text": "AHRCL United Nations General Assembly Distr Limited March Original English Human Rights Council Thirtyfirst session Agenda item Promotion and protection of all human rights civil political economic social and cultural rights including the right to development China Cuba Egypt Iran Islamic Republic of Pakistan Russian Federation amendment to draft resolution AHRCL Protecting human rights defenders addressing economic social and cultural rights The fifth preambular paragraph should read Reaffirming the importance of the implementation of the Declaration and that promoting respect support and protection for the activities of individuals groups and organs of society engaged in the promotion and protection of human rights is essential to the overall enjoyment of human rights Nonmember State of the Human Rights Council. GEE", - "values": [ - "Rejected by vote" - ] - }, - { - "text": "of Inquiry to all relevant bodies of the United Nations recommends that the General Assembly submit the reports to the Security Council for appropriate action expresses its appreciation to the Commission for its briefings to members of the Security Council and recommends the continuation of future briefings Also decides to remain seized of the matter. th meeting March Adopted by a recorded vote of to with abstentions. The voting was as follows In favour Afghanistan Australia Belgium Brazil Chile C\u00f4te dIvoire Croatia Georgia Germany Hungary Japan Mexico Panama Peru Qatar Republic of Korea Rwanda Saudi Arabia Slovakia Slovenia Spain Switzerland Togo Ukraine United Arab Emirates United Kingdom of Great Britain and Northern Ireland United States of America Against Burundi China Cuba Venezuela Bolivarian Republic of Abstaining Angola Democratic Republic of the Congo Ecuador Egypt Ethiopia Iraq Kenya Kyrgyzstan Mongolia Nepal Nigeria Pakistan Philippines Senegal South Africa Tunisia", - "values": [ - "Adopted by vote" - ] - }, - { - "text": "to his mandate fully Requests the High Commissioner to continue to provide the technical assistance requested by the Government of Mali in order to strengthen the capacity of the National Human Rights Commission of Mali commends the Malian authorities for having brought the Commission into conformity with the principles relating to the status of national institutions for the promotion and protection of human rights Paris Principles and for having provided it with the necessary means to carry out its work independently and encourages the Government to take the necessary steps to enable the Commission to attain A status Urges the international community to continue to provide the necessary assistance to Mali to ensure its stability with a view to promoting respect for all human rights and resolutely combating impunity which will pave the way for national reconciliation peace and social cohesion Decides to remain seized of this matter. th meeting March Adopted without a vote GE", - "values": [ - "Adopted without a vote" - ] - }, - { - "text": "AHRCL United Nations General Assembly Distr Limited March Original English Human Rights Council Thirtyfirst session Agenda item Promotion and protection of all human rights civil political economic social and cultural rights including the right to development China Cuba Egypt Pakistan Russian Federation amendment to draft resolution AHRCL Protecting human rights defenders addressing economic social and cultural rights Delete the eighth preambular paragraph Nonmember State of the Human Rights Council. GEE", - "values": [ - "Rejected by vote" - ] - }, - { - "text": "the Special Rapporteur in her task by supplying all necessary information requested by the mandate holder and to give serious consideration to responding favourably to the requests of the Special Rapporteur to visit their countries to enable her to fulfil the mandate more effectively Invites Governments relevant United Nations agencies funds and programmes treaty bodies civil society actors including nongovernmental organizations and the private sector to cooperate fully with the Special Rapporteur in the fulfilment of the mandate through inter alia the submission of comments and suggestions on ways and means of realizing the right to food Requests the Special Rapporteur to report annually on the implementation of the mandate to the Human Rights Council and the General Assembly in accordance with their respective programmes of work Decides to continue its consideration of this matter under the same agenda item at its fortythird session. nd meeting March Adopted without a vote", - "values": [ - "Adopted without a vote" - ] - }, - { - "text": "of violations and abuses committed by all parties in Yemen and in line with international standards and to submit its comprehensive report on alleged human rights violations and abuses in all parts of Yemen in accordance with Presidential Decree No. of August as soon as it is available and encourages all parties to the conflict in Yemen to extend full and transparent access and cooperation to the National Commission and the Office of the High Commissioner Also requests the High Commissioner to present to the Human Rights Council at its thirtyseventh session an oral update on the situation of human rights in Yemen and the development and implementation of the present resolution and to present to the Council at its thirtyninth session a report on the situation of human rights including violations and abuses committed since September as well as on the implementation of technical assistance as stipulated in the present resolution. nd meeting September Adopted without a vote", - "values": [ - "Adopted without a vote" - ] - }, - { - "text": "and protection of all human rights civil political economic social and cultural rights including the right to development China Cuba Egypt Pakistan Russian Federation amendment to draft resolution AHRCL Protecting human rights defenders addressing economic social and cultural rights Paragraph should read Calls upon all States to promote and enable public participation and to promote transparency accountability and effective governance in the prevention of and the fight against corruption involving State officials business representatives and other nonState actors and in raising public awareness regarding the existence causes and gravity of and the threat posed by corruption including all possible impact on the enjoyment of economic social and cultural rights and also calls upon all States to respect promote and protect as appropriate the freedom of everyone to seek receive publish and disseminate information concerning corruption Nonmember State of the Human Rights Council. GEE", - "values": [ - "Rejected by vote" - ] - }, - { - "text": "activities Welcomes the activities carried out by the Office of the United Nations High Commissioner for Human Rights on the promotion of economic social and cultural rights mainly through technical cooperation the work of its field offices its relevant reports to United Nations bodies the development of inhouse expertise including on human rights indicators and its publications studies training and information activities on related issues including through new information technologies AHRCRES Requests the SecretaryGeneral to continue to prepare and submit to the Human Rights Council an annual report on the question of the realization in all countries of economic social and cultural rights under agenda item with a special focus on the role of new technologies for the realization of economic social and cultural rights Decides to remain seized of this issue and to consider taking further action in order to implement the present resolution. nd meeting March Adopted without a vote", - "values": [ - "Adopted without a vote" - ] - }, - { - "text": "procedures of the Human Rights Council and other relevant actors Urges all States to cooperate with and to assist the Special Rapporteur so that his mandate can be carried out effectively including by responding favourably and rapidly to requests for visits mindful that country visits are one of the essential tools for the fulfilment of the mandate of the Special Rapporteur and to provide him in a timely manner with all the necessary information requested by him Requests the Special Rapporteur to continue to report annually to the Human Rights Council and the General Assembly Requests the SecretaryGeneral and the United Nations High Commissioner for Human Rights to provide the Special Rapporteur with all the human technical and financial assistance necessary for the effective fulfilment of his mandate AHRCRES Decides to continue its consideration of this matter under the same agenda item and in accordance with its programme of work. th meeting September Adopted without a vote", - "values": [ - "Adopted without a vote" - ] - }, - { - "text": "with a view to ensuring their participation in the panel discussion Also requests the Office of the High Commissioner to prepare a summary report on the panel discussion and to submit it to the Human Rights Council at its fortysecond session Decides to continue its consideration of this issue in accordance with its programme of work. th meeting September Adopted by a recorded vote of to with abstentions. The voting was as follows In favour Albania Belgium Bolivia Plurinational State of Brazil Congo C\u00f4te dIvoire Croatia Ecuador El Salvador Georgia Germany Ghana Hungary Kyrgyzstan Latvia Mongolia Netherlands Panama Paraguay Portugal Rwanda Slovenia South Africa Switzerland Togo United Kingdom of Great Britain and Northern Ireland Venezuela Bolivarian Republic of Against Bangladesh Botswana Burundi China Egypt Ethiopia India Iraq Japan Qatar Saudi Arabia United Arab Emirates United States of America Abstaining Cuba Indonesia Kenya Nigeria Philippines Republic of Korea Tunisia", - "values": [ - "Adopted by vote" - ] - }, - { - "text": "to conduct visits to the country and to provide it with all the information necessary to fulfil its mandate Requests the Office of the United Nations High Commissioner for Human Rights to provide all the resources necessary to the Commission of Inquiry on Burundi to allow it to fulfil its mandate Decides to remain seized of the matter. th meeting September Adopted by a recorded vote of to with abstentions. The voting was as follows In favour Albania Belgium Botswana Brazil Croatia El Salvador Georgia Germany Hungary Japan Latvia Mongolia Netherlands Panama Paraguay Portugal Republic of Korea Rwanda Slovenia Switzerland United Kingdom of Great Britain and Northern Ireland United States of America Against Bolivia Plurinational State of Burundi China Congo Cuba Egypt Ghana Saudi Arabia South Africa United Arab Emirates Venezuela Bolivarian Republic of Abstaining Bangladesh C\u00f4te dIvoire Ecuador Ethiopia India Indonesia Iraq Kenya Kyrgyzstan Nigeria Philippines Qatar Togo Tunisia", - "values": [ - "Adopted by vote" - ] - }, - { - "text": "to them for the enhancement of international cooperation and genuine dialogue in the United Nations human rights machinery including the Human Rights Council Decides to continue its consideration of the matter in in accordance with its annual programme of work. th meeting June Adopted by a recorded vote of to with abstentions The voting was as follows In favour Bangladesh Bolivia Plurinational State of Botswana Brazil Burundi China Congo C\u00f4te dIvoire Cuba Ecuador Egypt El Salvador Ethiopia Ghana India Indonesia Iraq Kenya Kyrgyzstan Mongolia Nigeria Panama Paraguay Philippines Qatar Rwanda Saudi Arabia South Africa Togo Tunisia United Arab Emirates Venezuela Bolivarian Republic of Against Hungary Republic of Korea United States of America Abstaining Albania Belgium Croatia Georgia Germany Japan Latvia Netherlands Portugal Slovenia Switzerland United Kingdom of Great Britain and Northern Ireland The delegation of Hungary subsequently stated that it had intended to abstain.", - "values": [ - "Adopted by vote" - ] - }, - { - "text": "human rights Invites all relevant special procedures commissions of inquiry and human rights treaty bodies to bear the present resolution in mind within the framework of their respective mandates Decides to remain seized of this issue. rd meeting July Adopted by a recorded vote of to with abstentions. The voting was as follows In favour Algeria Bangladesh Bolivia Plurinational State of Botswana Burundi China Congo C\u00f4te dIvoire Cuba Ecuador El Salvador Ethiopia Ghana India Indonesia Kenya Maldives Mexico Mongolia Namibia Nigeria Panama Paraguay Philippines Republic of Korea Russian Federation South Africa Switzerland Togo United Arab Emirates Venezuela Bolivarian Republic of Viet Nam Against General Assembly resolution B. General Assembly resolution AHRCRES France Germany Latvia Netherlands United Kingdom of Great Britain and Northern Ireland Abstaining Albania Belgium Georgia Kyrgyzstan Morocco Portugal Qatar Saudi Arabia Slovenia the former Yugoslav Republic of Macedonia", - "values": [ - "Adopted by vote" - ] - }, - { - "text": "the resolution with particular emphasis on the human rights and international law violations involved in the production of settlement goods and the relationship between trade in these goods and the maintenance and economic growth of settlements at its thirtyfourth session Decides to remain seized of the matter. th meeting March Adopted by a recorded vote of to with abstentions. The voting was as follows In favour Algeria Bangladesh Bolivia Plurinational State of Botswana Burundi China Congo C\u00f4te dIvoire Cuba Ecuador El Salvador Ethiopia India Indonesia Kenya Kyrgyzstan Maldives Mexico Mongolia Morocco Namibia Nigeria Panama Philippines Qatar Russian Federation Saudi Arabia South Africa Switzerland United Arab Emirates Venezuela Bolivarian Republic of Viet Nam Abstaining Albania Belgium France Georgia Germany Ghana Latvia Netherlands Paraguay Portugal Republic of Korea Slovenia the former Yugoslav Republic of Macedonia Togo United Kingdom of Great Britain and Northern Ireland", - "values": [ - "Adopted by vote" - ] - }, - { - "text": "AHRCL United Nations General Assembly Distr Limited September Original English Human Rights Council Thirtysixth session September Agenda item Human rights bodies and mechanisms China Egypt India Russian Federation Venezuela Bolivarian Republic of amendment to draft resolution AHRCLRev Cooperation with the United Nations its representatives and mechanisms in the field of human rights After the fourteenth preambular paragraph insert a new paragraph reading Aware of the lack of agreed and specific tools to verify whether allegations received are credible which may compromise the effectiveness and integrity of the process of assessing those allegations and underlining that continuous and constructive dialogue and cooperation with the State concerned should always be the primary consideration in this regard State not a member of the Human Rights Council. GEE", - "values": [ - "Rejected by vote" - ] - }, - { - "text": "Commissioner to prepare a comprehensive written report on the human rights situation in the Bolivarian Republic of Venezuela and to present it to the Human Rights Council at its fortyfirst session to be followed by an enhanced interactive dialogue and to present an oral update on the human rights situation to the Council at its fortieth and fortysecond sessions. th meeting September Adopted by a recorded vote of to with abstentions. The voting was as follows In favour Afghanistan Australia Belgium Brazil Chile Croatia Ecuador Georgia Germany Hungary Iceland Japan Mexico Panama Peru Republic of Korea Rwanda Slovakia Slovenia Spain Switzerland Ukraine United Kingdom of Great Britain and Northern Ireland Against Burundi China Cuba Democratic Republic of the Congo Egypt Pakistan Venezuela Bolivarian Republic of Abstaining Angola C\u00f4te dIvoire Ethiopia Iraq Kenya Kyrgyzstan Mongolia Nepal Nigeria Philippines Qatar Saudi Arabia Senegal South Africa Togo Tunisia United Arab Emirates", - "values": [ - "Adopted by vote" - ] - }, - { - "text": "programme of work and its resolutions of March and of March and to focus its next annual fullday meeting on the theme Realizing the rights of the child through a healthy environment and requests the United Nations High Commissioner for Human Rights to prepare a report thereon in close AHRCRES cooperation with all relevant stakeholders including States the United Nations Childrens Fund other relevant United Nations bodies and agencies the Special Representative of the SecretaryGeneral on Violence against Children and the Special Representative of the SecretaryGeneral for Children and Armed Conflict relevant special procedure mandate holders regional organizations and human rights bodies national human rights institutions and civil society including children themselves and to present it to the Human Rights Council at its fortythird session with a view to providing information for the annual day of discussion on the rights of the child. rd meeting March Adopted without a vote", - "values": [ - "Adopted without a vote" - ] - }, - { - "text": "AHRCL United Nations General Assembly Distr Limited June Original English Human Rights Council Thirtysecond session Agenda item Promotion and protection of all human rights civil political economic social and cultural rights including the right to development Belgium Norway Switzerland amendment to draft resolution AHRCL Protection of the family role of the family in supporting the protection and promotion of human rights of persons with disabilities The title of the draft resolution should read Protection of the family the role of families in supporting the protection and promotion of the human rights of their members with disabilities State not a member of the Human Rights Council. GEE", - "values": [ - "Rejected by vote" - ] - }, - { - "text": "to on the implementation of the present resolution to the Human Rights Council with a particular focus on the factors perpetuating the arbitrary detention of Palestinian prisoners and detainees in Israeli jails in consultation with the Working Group on Arbitrary Detention at its thirtyseventh session Decides to remain seized of the matter. th meeting March Adopted by a recorded vote of to with abstentions. The voting was as follows In favour Albania Bangladesh Belgium Bolivia Plurinational State of Botswana Brazil Burundi China C\u00f4te dIvoire Croatia Cuba Ecuador Egypt El Salvador Ethiopia Georgia Germany Ghana Hungary India Indonesia Iraq Japan Kenya Kyrgyzstan Latvia Mongolia Netherlands Nigeria Philippines Portugal Qatar Republic of Korea Saudi Arabia Slovenia South Africa Switzerland Tunisia United Arab Emirates United Kingdom of Great Britain and Northern Ireland Venezuela Bolivarian Republic of Against Togo United States of America Abstaining Congo Panama Paraguay Rwanda", - "values": [ - "Adopted by vote" - ] - }, - { - "text": "to all relevant bodies of the United Nations recommends that the General Assembly submit the reports to the Security Council for appropriate action expresses its appreciation to the Commission for its briefings to members of the Security Council and recommends the continuation of future briefings Also decides to remain seized of the matter. th meeting March Adopted by a recorded vote of to with abstentions. The voting was as follows In favour Albania Belgium Botswana Brazil C\u00f4te dIvoire Croatia El Salvador Georgia Germany Ghana Hungary Japan Latvia Netherlands Panama Paraguay Portugal Qatar Republic of Korea Rwanda Saudi Arabia Slovenia Switzerland Togo United Arab Emirates United Kingdom of Great Britain and Northern Ireland United States of America Against Bolivia Plurinational State of Burundi China Cuba Iraq Kyrgyzstan Venezuela Bolivarian Republic of Abstaining Bangladesh Congo Ecuador Egypt Ethiopia India Indonesia Kenya Mongolia Nigeria Philippines South Africa Tunisia", - "values": [ - "Adopted by vote" - ] - }, - { - "text": "to Belgium Bulgaria Croatia Czech Republic Denmark Estonia Finland France Germany Ireland Italy Luxembourg Netherlands Norway Romania Slovenia Spain Sweden Switzerland United Kingdom of Great Britain and Northern Ireland United States of America amendment to draft resolution AHRCL Protection of the family role of the family in supporting the protection and promotion of human rights of persons with disabilities Paragraph should read Also recognizes that families play a key role in social development and as such should be strengthened and attention paid to the rights capabilities and responsibilities of its members and invites States the organizations of the United Nations system and all other relevant stakeholders to take into account the role of the family as a contributor to sustainable development and the need to strengthen family policy development in their ongoing efforts to achieve internationally agreed development goals State not a member of the Human Rights Council. GEE", - "values": [ - "Rejected by vote" - ] - }, - { - "text": "Human Rights Council Thirtyfirst session Agenda item Promotion and protection of all human rights civil political economic social and cultural rights including the right to development China Cuba Egypt Pakistan Russian Federation amendment to draft resolution AHRCL Protecting human rights defenders addressing economic social and cultural rights The eighteenth preambular paragraph should read Recognizing as appropriate the urgent need to address and to take necessary steps to prevent and stop the use of legislation that where it exists hinders or limits unduly the ability of individuals groups and organs of society engaged in the promotion and protection of universally recognized human rights and fundamental freedoms to exercise their work including by reviewing and where necessary amending relevant legislation and its implementation in order to ensure compliance with the obligations of the State under international human rights law Nonmember State of the Human Rights Council. GEE", - "values": [ - "Rejected by vote" - ] - }, - { - "text": "AHRCL United Nations General Assembly Distr Limited September Original English Human Rights Council Thirtysixth session September Agenda item Promotion and protection of all human rights civil political economic social and cultural rights including the right to development Russian Federation amendment to draft resolution AHRCL The question of the death penalty The sixteenth preambular paragraph should read Strongly deploring the fact that the use of the death penalty may in some cases lead to violations of the human rights of the persons facing the death penalty and of other affected persons State not a member of the Human Rights Council. GEE", - "values": [ - "Rejected by vote" - ] - }, - { - "text": "Limited June Original English Human Rights Council Thirtyfifth session June Agenda item Promotion and protection of all human rights civil political economic social and cultural rights including the right to development Russian Federation amendment to draft resolution AHRCL Protection of human rights and fundamental freedoms while countering terrorism Paragraph should read Affirms its unequivocal condemnation of all acts methods and practices of terrorism in all its forms and manifestations wherever and by whomsoever committed regardless of their motivation and of the financial material or political support of terrorism as unjustifiable in accordance with applicable international law in the light of in particular their detrimental effects on the enjoyment of human rights and on democratic societies as well as threatening territorial integrity and the security of States and destabilizing legitimately constituted Governments State not a member of the Human Rights Council. GEE", - "values": [ - "Rejected by vote" - ] - }, - { - "text": "AHRCL United Nations General Assembly Distr Limited September Original English Human Rights Council Twentyfourth session Agenda item Human rights bodies and mechanisms Algeria Belarus China Cuba Egypt Ethiopia India Pakistan Russian Federation South Africa Venezuela Bolivarian Republic of amendment to draft resolution AHRCL Cooperation with the United Nations its representatives and mechanisms in the field of human rights The sixth preambular paragraph should read Recognizing the different role played by the SecretaryGeneral and the United Nations High Commissioner for Human Rights in addressing acts of intimidation or reprisals against individuals and groups who cooperate with the United Nations its representatives and mechanisms in the field of human rights Nonmember State of the Human Rights Council. GE", - "values": [ - "Rejected by vote" - ] - }, - { - "text": "General Assembly Distr Limited June Original English Human Rights Council Thirtysecond session Agenda item Promotion and protection of all human rights civil political economic social and cultural rights including the right to development Belarus China Iran Islamic Republic of Russian Federation amendment to draft resolution AHRCL The promotion protection and enjoyment of human rights on the Internet Seventeenth preambular paragraph The paragraph should read Stressing the importance of applying a comprehensive and integrated approach in providing and expanding access to the Internet and for the Internet to be open accessible and nurtured by multistakeholder participation Paragraph The paragraph should read Affirms also the importance of applying a comprehensive and integrated approach in providing and in expanding access to the Internet and requests all States to make efforts to bridge the many forms of digital divides State not a member of the Human Rights Council. GEE", - "values": [ - "Rejected by vote" - ] - }, - { - "text": "Welcomes the activities carried out by the Office of the United Nations High Commissioner for Human Rights on the promotion of economic social and cultural rights mainly through technical cooperation the work of its field offices its relevant reports to United Nations bodies the development of inhouse expertise including on human rights indicators and its publications studies training and information activities on related issues including through new information technologies Requests the SecretaryGeneral to continue to prepare and submit to the Human Rights Council an annual report on the question of the realization in all countries of economic social and cultural rights under agenda item with a special focus on the role of economic social and cultural rights in empowering people and ensuring inclusiveness and equality Decides to remain seized of this issue and to consider taking further action in order to implement the present resolution. rd meeting March Adopted without a vote", - "values": [ - "Adopted without a vote" - ] - }, - { - "text": "resolutions and other human rights instruments including associated routine reporting c Recommendations accepted in the context of the universal periodic review d Other human rights commitments policies and legislation to promote the empowerment of women young people and marginalized groups freedom of expression and assembly the protection of the media access to justice for women and increasing the capacity of ministries and institutions responsible for the administration of justice and the protection of human rights Also requests the Independent Expert to report to the Human Rights Council at its fortysecond session and to the General Assembly at its seventyfourth session Requests the Office of the High Commissioner and other relevant United Nations agencies to provide the Independent Expert with all the human technical and financial assistance necessary to carry out his mandate fully Decides to remain actively seized of the matter. st meeting September Adopted without a vote", - "values": [ - "Adopted without a vote" - ] - }, - { - "text": "political economic social and cultural rights including the right to development China Cuba Egypt Iran Islamic Republic of Pakistan Russian Federation amendment to draft resolution AHRCL Protecting human rights defenders addressing economic social and cultural rights The twentysecond preambular paragraph should read Noting with grave concern the observations of its relevant special procedures that individuals groups and organs of society engaged in environmental and land issues and corporate responsibility as well as those working on governance issues promoting transparency and accountability and those exposing discrimination corruption and violence at the hands of States business enterprises and other nonState actors are among the most exposed and at risk and the practice of enforced disappearance is often used to repress and intimidate them and to prevent others from claiming and exercising their economic social and cultural rights Nonmember State of the Human Rights Council. GEE", - "values": [ - "Rejected by vote" - ] - }, - { - "text": "AHRCL United Nations General Assembly Distr Limited September Original English Human Rights Council Twentyfourth session Agenda item Human rights bodies and mechanisms Algeria Belarus China Cuba Egypt Ethiopia India Indonesia Pakistan Russian Federation South Africa Venezuela Bolivarian Republic of amendment to draft resolution AHRCL Cooperation with the United Nations its representatives and mechanisms in the field of human rights Delete paragraph Nonmember State of the Human Rights Council. GE", - "values": [ - "Withdrawn" - ] - }, - { - "text": "AHRCL United Nations General Assembly Distr Limited September Original English Human Rights Council Thirtysixth session September Agenda item Human rights bodies and mechanisms China India Russian Federation Venezuela Bolivarian Republic of amendment to draft resolution AHRCLRev Cooperation with the United Nations its representatives and mechanisms in the field of human rights Paragraph should read Reiterates its strong rejection of any acts of intimidation or reprisal against individuals and groups who seek to cooperate cooperate or have cooperated with the United Nations its representatives and mechanisms in the field of human rights and recalls in this regard that the Human Rights Council and its mechanisms should address allegations of acts of intimidation or reprisal in the most appropriate way State not a member of the Human Rights Council. GEE", - "values": [ - "Rejected by vote" - ] - }, - { - "text": "AHRCL United Nations General Assembly Distr Limited March Original English Human Rights Council Thirtyfirst session Agenda item Promotion and protection of all human rights civil political economic social and cultural rights including the right to development China Cuba Egypt Pakistan Russian Federation amendment to draft resolution AHRCL Protecting human rights defenders addressing economic social and cultural rights Paragraph should read Recognizing the importance of the independent voice of individuals groups and organs of society engaged in the promotion and protection of human rights and other civil society actors as well as of partnerships between States and civil society in promoting protecting and realizing all human rights including economic social and cultural rights and the right to development as well as in the context of the implementation of the Agenda for Sustainable Development Nonmember State of the Human Rights Council. GEE", - "values": [ - "Rejected by vote" - ] - }, - { - "text": "a to ensuring their participation in the panel discussion Requests the Office of the High Commissioner to prepare a report in the form of a summary on the highlevel panel discussion to be presented to the Human Rights Council at its thirtyfifth session AHRCRES Decides to remain seized of the matter. st meeting September Adopted by a recorded vote of to with abstentions. The voting was as follows In favour Albania Belgium Botswana C\u00f4te dIvoire El Salvador France Georgia Germany Ghana Latvia Maldives Mexico Mongolia Morocco Netherlands Panama Paraguay Portugal Qatar Republic of Korea Saudi Arabia Slovenia Switzerland the former Yugoslav Republic of Macedonia United Arab Emirates United Kingdom of Great Britain and Northern Ireland Against Algeria Bolivia Plurinational State of Burundi China Cuba Russian Federation Venezuela Bolivarian Republic of Abstaining Bangladesh Congo Ecuador Ethiopia India Indonesia Kenya Kyrgyzstan Namibia Nigeria Philippines South Africa Togo Viet Nam", - "values": [ - "Adopted by vote" - ] - }, - { - "text": "of the commission of inquiry and also requests that the Office of the High Commissioner be provided with all the resources necessary including in specialized ballistic and forensic expertise and expertise in sexual and genderbased violence to fulfil the mandate Decides to remain seized of the matter. st meeting September Adopted by a recorded vote of to with abstentions. The voting was as follows In favour Albania Belgium El Salvador France Georgia Germany Ghana Latvia Mexico Mongolia Netherlands Panama Paraguay Portugal Republic of Korea Slovenia Switzerland the former Yugoslav Republic of Macedonia United Kingdom of Great Britain and Northern Ireland Against Bolivia Plurinational State of Burundi China Cuba Morocco Russian Federation Venezuela Bolivarian Republic of Abstaining Algeria Bangladesh Botswana Congo C\u00f4te dIvoire Ecuador Ethiopia India Indonesia Kenya Kyrgyzstan Maldives Namibia Nigeria Philippines Qatar Saudi Arabia South Africa Togo United Arab Emirates Viet Nam", - "values": [ - "Adopted by vote" - ] - }, - { - "text": "to a intersessional discussion celebrating the centenary of Nelson Mandela on his life and legacy in the context of promoting and protecting human rights through social justice reconciliation and democratic ideals on April the day that in Mandela and millions of South Africans cast their votes for the first time in a fully representative democratic election Requests the United Nations High Commissioner for Human Rights to invite to that discussion for their participation eminent persons who worked with Nelson GEE AHRCRES Mandela and other persons who embody his virtues on various global platforms for the advancement of human rights Also requests the High Commissioner to provide all the resources necessary for the effective realization of the discussion Requests the Office of the United Nations High Commissioner for Human Rights to prepare a summary report on the discussion and to submit it to the Council at its thirtyninth session. rd meeting March Adopted without a vote", - "values": [ - "Adopted without a vote" - ] - }, - { - "text": "Human Rights and the Human Rights Council on the right to freedom of opinion and expression in particular Council resolution of July and of June on the promotion protection and enjoyment of human rights on the Internet as well as resolutions of October on freedom of opinion and expression of March on the right to privacy in the digital age of March on the rights of the child information and communications technologies and child sexual exploitation and of June on the role of freedom of opinion and expression in womens empowerment and also recalling General Assembly resolutions of December and of December on the right to privacy in the digital age and of December on information and communications technologies for development and on the outcome document of the highlevel meeting of the General Assembly on the overall review of the implementation of the outcomes of the World Summit on the Information Society State not a member of the Human Rights Council. GEE", - "values": [ - "Withdrawn" - ] - }, - { - "text": "a comprehensive and independent inquiry into the recent events in Eastern Ghouta and to provide an update followed by an interactive dialogue on the situation to the Human Rights Council at its thirtyeighth session Decides to remain seized of the matter and to take further action on the situation of human rights in the Syrian Arab Republic. th meeting March AHRCRES Adopted by a recorded vote of to with abstentions. The voting was as follows In favour Afghanistan Australia Belgium Brazil Chile C\u00f4te dIvoire Croatia Georgia Germany Hungary Japan Mexico Panama Peru Qatar Republic of Korea Rwanda Saudi Arabia Senegal Slovakia Slovenia Spain Switzerland Togo Tunisia Ukraine United Arab Emirates United Kingdom of Great Britain and Northern Ireland United States of America Against Burundi China Cuba Venezuela Bolivarian Republic of Abstaining Angola Democratic Republic of the Congo Ecuador Egypt Ethiopia Iraq Kenya Kyrgyzstan Mongolia Nepal Nigeria Pakistan Philippines South Africa", - "values": [ - "Adopted by vote" - ] - }, - { - "text": "AHRCL United Nations General Assembly Distr Limited March Original English Human Rights Council Thirtyfourth session February March Agenda item Promotion and protection of all human rights civil political economic social and cultural rights including the right to development Russian Federation amendment to draft resolution AHRCL Mandate of the Special Rapporteur on the situation of human rights defenders The eleventh preambular paragraph should read Underscoring that domestic law consistent with the Charter of the United Nations and other international obligations of States in the field of human rights and fundamental freedoms is the framework within which all individuals groups and organs of society engaged in the promotion and protection of universally recognized human rights and fundamental freedoms should operate State not a member of the Human Rights Council. GEE", - "values": [ - "Rejected by vote" - ] - }, - { - "text": "AHRCL United Nations General Assembly Distr Limited June Original English Human Rights Council Thirtysecond session Agenda item Promotion and protection of all human rights civil political economic social and cultural rights including the right to development Pakistan amendment to draft resolution AHRCLRev Protection against violence and discrimination based on sexual orientation and gender identity The fourth preambular paragraph should read Recalling further all Human Rights Council resolutions relevant to protection against violence and discrimination on any basis such as race colour sex language religion political or other opinion national or social origin property birth or other status State not a member of the Human Rights Council. On behalf of the States Members of the United Nations that are members of the Organization of Islamic Cooperation with the exception of Albania. GEE", - "values": [ - "Rejected by vote" - ] - }, - { - "text": "AHRCL United Nations General Assembly Distr Limited June Original English Human Rights Council Thirtysecond session Agenda item Promotion and protection of all human rights civil political economic social and cultural rights including the right to development Austria Belgium Bulgaria Chile Croatia Czech Republic Denmark Estonia Finland France Germany Ireland Italy Luxembourg Malta Netherlands Norway Romania Slovenia Spain Sweden Switzerland United Kingdom of Great Britain and Northern Ireland United States of America Uruguay amendment to draft resolution AHRCL Protection of the family role of the family in supporting the protection and promotion of human rights of persons with disabilities After paragraph insert a new paragraph reading bis. Recognizes that in different cultural political and social systems various forms of the family exist State not a member of the Human Rights Council. GEE", - "values": [ - "Rejected by vote" - ] - }, - { - "text": "forced in humanitarian settings Encourages relevant existing mechanisms of the Human Rights Council to give due consideration to the issue of child early and forced marriage including in humanitarian settings during the exercise of their mandates Requests the Office of the United Nations High Commissioner for Human Rights to create a web portal to bring together and collate information relating to child early and forced marriage including in humanitarian settings AHRCRES Requests the United Nations High Commissioner for Human Rights to provide a written report with input from all relevant stakeholders on child early and forced marriage with a focus on humanitarian settings to the Human Rights Council at its fortyfirst session and to provide an oral update thereon to the Council at its thirtyeighth session Decides to continue its consideration of the issue of strengthening efforts to prevent and eliminate child early and forced marriage. th meeting June Adopted without a vote", - "values": [ - "Adopted without a vote" - ] - }, - { - "text": "Encourages the United Nations system as a whole to continue to address the grave situation of human rights in the Democratic Peoples Republic of Korea in a coordinated and unified manner Encourages all States that have relations with the Democratic Peoples Republic of Korea to use their influence to encourage it to take immediate steps to end all human rights violations including by closing political prison camps and undertaking profound institutional reforms Requests the SecretaryGeneral to provide the Special Rapporteur and the Office of the High Commissioner with regard to the fieldbased structure with all the assistance and adequate staffing necessary to carry out the mandate effectively and to ensure that the mandate holder receives the support of the Office of the High Commissioner Decides to transmit all reports of the Special Rapporteur to all relevant bodies of the United Nations and to the SecretaryGeneral for appropriate action. th meeting March Adopted without a vote", - "values": [ - "Adopted without a vote" - ] - }, - { - "text": "in collaboration with the United Nations Population Fund the World Health Organization the United Nations Entity for Gender Equality and the Empowerment of Women UNWomen and other United Nations specialized agencies funds and programmes international human rights mechanisms and civil society organizations to organize a twoday meeting in preferably in Addis Ababa to discuss progress gaps and challenges in the application of human rights norms standards and principles to the measures taken by State and nonState actors to prevent and eliminate female genital mutilation in different contexts including in the context of communities humanitarian assistance and migration and other population movements and to submit a report on the outcome of the abovementioned meeting at the fortyfourth session of the Human Rights Council Decides to continue its consideration of the question of female genital mutilation in accordance with its programme of work. th meeting July Adopted without a vote GE", - "values": [ - "Adopted without a vote" - ] - }, - { - "text": "or is being taken appropriately at the national or international levels to ensure justice for victims and accountability for perpetrators Requests the United Nations High Commissioner for Human Rights to report on the implementation of the present resolution to the Human Rights Council at its fortieth session Decides to remain seized of the matter. th meeting March Adopted by a recorded vote of to with abstentions. The voting was as follows In favour Afghanistan Angola Belgium Brazil Burundi Chile China C\u00f4te dIvoire Cuba Ecuador Egypt Iraq Kyrgyzstan Nepal Nigeria Pakistan Peru Philippines Qatar Saudi Arabia Senegal Slovenia South Africa AHRCRES Switzerland Tunisia United Arab Emirates Venezuela Bolivarian Republic of Against Australia Togo United Kingdom of Great Britain and Northern Ireland United States of America Abstaining Croatia Democratic Republic of the Congo Ethiopia Georgia Germany Hungary Japan Kenya Mexico Panama Republic of Korea Rwanda Slovakia Spain Ukraine", - "values": [ - "Adopted by vote" - ] - }, - { - "text": "the of the mandate of the Independent Expert will take effect on the day that a country office of the Office of the High Commissioner in accordance with General Assembly resolution of December is declared operational by the Office of the High Commissioner and the Government of the Sudan Requests the Government of the Sudan and the Office of the High Commissioner to engage constructively to agree on the modalities and mandate for the establishment of a country office no later than September Requests the SecretaryGeneral to provide the Office of the High Commissioner with all the necessary resources to implement the present resolution Requests the Government of the Sudan and the Office of the High Commissioner to present their oral reports on progress towards the opening of a country office during an enhanced interactive dialogue at the fortyfirst session of the Human Rights Council Decides to consider this issue under agenda item st meeting September Adopted without a vote", - "values": [ - "Adopted without a vote" - ] - }, - { - "text": "AHRCL United Nations General Assembly Distr Limited June Original English Human Rights Council Thirtysecond session Agenda item Promotion and protection of all human rights civil political economic social and cultural rights including the right to development Pakistan amendment to draft resolution AHRCLRev Protection against violence and discrimination based on sexual orientation and gender identity The title of the draft resolution should read Protection against violence and discrimination on any basis such as race colour sex language religion political or other opinion national or social origin property birth or other status State not a member of the Human Rights Council. On behalf of the States Members of the United Nations that are members of the Organization of Islamic Cooperation with the exception of Albania. GEE", - "values": [ - "Rejected by vote" - ] - }, - { - "text": "English Human Rights Council Thirtysixth session September Agenda item Human rights bodies and mechanisms China Egypt India Russian Federation Venezuela Bolivarian Republic of amendment to draft resolution AHRCLRev Cooperation with the United Nations its representatives and mechanisms in the field of human rights Paragraph should read Notes the work done by the SecretaryGeneral in addressing cases of reprisal or intimidation against individuals and groups who seek to cooperate cooperate or have cooperated with the United Nations its representatives and mechanisms in the field of human rights and in this regard calls upon all States and invites international and regional organizations human rights mechanisms such as the special procedures and the treaty bodies United Nations agencies and bodies national human rights institutions civil society and academic institutions to cooperate with the SecretaryGeneral in this work State not a member of the Human Rights Council. GEE", - "values": [ - "Rejected by vote" - ] - }, - { - "text": "AHRCL United Nations General Assembly Distr Limited March Original English Human Rights Council Thirtyfourth session February March Agenda item Promotion and protection of all human rights civil political economic social and cultural rights including the right to development China Cuba Pakistan Russian Federation amendment to draft resolution AHRCL Mandate of the Special Rapporteur on the situation of human rights defenders Paragraph should read Takes note of the work and the report of the Special Rapporteur on the situation of human rights defenders and strongly urges all States to take concrete steps to create in law and in practice a safe and enabling environment in which human rights defenders can operate free from hindrance and insecurity State not a member of the Human Rights Council. AHRC. GEE", - "values": [ - "Rejected by vote" - ] - }, - { - "text": "Encourages the United Nations system as a whole to continue to address the grave situation of human rights in the Democratic Peoples Republic of Korea in a coordinated and unified manner Encourages all States that have relations with the Democratic Peoples Republic of Korea to use their influence to encourage it to take immediate steps to end all human rights violations including by closing political prison camps and undertaking profound institutional reforms Requests the SecretaryGeneral to provide the Special Rapporteur and the Office of the High Commissioner with regard to the fieldbased structure with all the assistance and adequate staffing necessary to carry out the mandate effectively and to ensure that the mandate holder receives the support of the Office of the High Commissioner Decides to transmit all reports of the Special Rapporteur to all relevant bodies of the United Nations and to the SecretaryGeneral for appropriate action. rd meeting March Adopted without a vote", - "values": [ - "Adopted without a vote" - ] - }, - { - "text": "Takes note of the analytical report on conscientious objection to military service presented by the Office of the United Nations High Commissioner for Human Rights to the Human Rights Council at its thirtyfifth session pursuant to resolution Requests the Office of the High Commissioner to prepare in consultation with all States and the relevant intergovernmental organizations United Nations agencies funds and programmes special procedures treaty bodies national human rights institutions and nongovernmental organizations a report on different approaches and challenges with regard to application procedures for obtaining the status of conscientious objector to AHRC. GEE AHRCRES military service in accordance with human rights standards and to present the report to the Human Rights Council at its fortyfirst session Decides to continue consideration of this matter under the same agenda item in accordance with its annual programme of work. th meeting September Adopted without a vote", - "values": [ - "Adopted without a vote" - ] - }, - { - "text": "AHRCL United Nations General Assembly Distr Limited June Original English Human Rights Council Thirtyfifth session June Agenda item Promotion and protection of all human rights civil political economic social and cultural rights including the right to development Egypt Russian Federation amendment to draft resolution AHRCL Elimination of discrimination against women and girls Paragraph c should read c To consider adopting good practices to support substantive equality within families through longterm awarenessraising initiatives especially education and public awareness including though the media and online incorporation of curricula on womens rights into teacher training courses including genderbased violence prevention State not a member of the Human Rights Council. GEE", - "values": [ - "Rejected by vote" - ] - }, - { - "text": "in public service within the United Nations system in identifying and promoting innovations and new concepts in public administration that minimize the risks for corruption and encourages United Nations entities and other international organizations to continue to promote and reward such initiatives and their replication Notes with appreciation United Nations Public Service Day held on June to celebrate the value and virtue of public service to the community highlights the contribution of public service in the development process recognizes the work of public servants encourages young people to pursue careers in the public sector and encourages States to organize special events on that occasion Invites the United Nations High Commissioner for Human Rights to mark United Nations Public Service Day at every June session of the Human Rights Council with a view to raise awareness about the human rights dimension of public services delivery. rd meeting March Adopted without a vote", - "values": [ - "Adopted without a vote" - ] - }, - { - "text": "Nations General Assembly Distr Limited March Original English Human Rights Council Thirtyfirst session Agenda item Promotion and protection of all human rights civil political economic social and cultural rights including the right to development China Cuba Egypt Pakistan Russian Federation amendment to draft resolution AHRCL Protecting human rights defenders addressing economic social and cultural rights Paragraph should read Urges all States to acknowledge through public statements at the national and local levels and through laws policies or programmes the important role of individuals groups and organs of society engaged in the promotion and protection of human rights in the promotion of human rights democracy and the rule of law in all areas of society in urban and rural areas as essential components of ensuring their recognition and protection including those promoting and defending economic social and cultural rights Nonmember State of the Human Rights Council. GEE", - "values": [ - "Rejected by vote" - ] - }, - { - "text": "violent extremism and terrorism notes the importance of relevant United Nations bodies and entities in assisting States in this field and calls upon the Office of the United Nations High Commissioner for Human Rights and relevant international stakeholders to complement ongoing United Nations initiatives on preventing and countering violent extremism in full accordance with their respective mandates Paragraph For the existing text substitute Invites the Office of the High Commissioner to prepare a compilation report on best practices and lessons learned on how protecting and promoting human rights can contribute to preventing and countering violent extremism by the thirtythird session of the Council and encourages the Office to consult with Member States United Nations entities and other organizations as appropriate to benefit from ongoing relevant work on the human rights dimensions of preventing and countering violent extremism Nonmember State of the Human Rights Council. GEE", - "values": [ - "Withdrawn" - ] - }, - { - "text": "human rights institutions nongovernmental organizations and other relevant stakeholders including practitioners Decides to remain seized of the matter. th meeting September Adopted by a recorded vote of to with abstentions. The voting was as follows In favour Albania Belgium Botswana C\u00f4te dIvoire Ecuador El Salvador France Georgia Germany Ghana Latvia Maldives Mexico Mongolia Morocco Namibia Netherlands Panama Paraguay Philippines Portugal Qatar Republic of Korea Slovenia South Africa Switzerland the former Yugoslav Republic of Macedonia Togo United Kingdom of Great Britain and Northern Ireland Against Congo Abstaining Algeria Bangladesh Bolivia Plurinational State of Burundi China Cuba Ethiopia India Indonesia Kenya Kyrgyzstan Nigeria Russian Federation Saudi Arabia United Arab Emirates Venezuela Bolivarian Republic of Viet Nam The delegation of the Congo subsequently stated that there had been an error in its vote and that it had intended to vote in favour of the draft text.", - "values": [ - "Adopted by vote" - ] - }, - { - "text": "the findings of the review to be followed by a discussion to the Human Rights Council at its fortythird session Requests the SecretaryGeneral and the United Nations High Commissioner for Human Rights to provide the independent international factfinding mission the Special Rapporteur and the ongoing independent mechanism with the assistance resources and expertise necessary to enable them to discharge their mandates fully. th meeting March Adopted by a recorded vote of to with abstentions. The voting was as follows In favour Afghanistan Argentina Australia Austria Bahamas Bahrain Bangladesh Brazil Bulgaria Burkina Faso Chile Croatia Czechia Denmark Egypt Eritrea Fiji Hungary Iceland Iraq Italy Mexico Nigeria Pakistan Peru Qatar Rwanda Saudi Arabia Slovakia Somalia South Africa Spain Togo Tunisia Ukraine United Kingdom of Great Britain and Northern Ireland Uruguay Against China Cuba Philippines Abstaining Angola Cameroon Democratic Republic of the Congo India Japan Nepal Senegal", - "values": [ - "Adopted by vote" - ] - }, - { - "text": "of mercenaries as a means of violating human rights and impeding the exercise of the right of peoples to selfdetermination to the General Assembly at its seventyfourth session and to the Human Rights Council at its fortysecond session AHRC. ECN. AHRCRES Decides to continue its consideration of this matter under the same agenda item at its fortysecond session. th meeting September Adopted by a recorded vote of to with abstentions. The voting was as follows In favour Angola Brazil Burundi Chile China C\u00f4te dIvoire Cuba Democratic Republic of the Congo Ecuador Egypt Ethiopia Iraq Kenya Kyrgyzstan Mongolia Nepal Nigeria Pakistan Panama Peru Philippines Qatar Rwanda Saudi Arabia Senegal South Africa Togo Tunisia United Arab Emirates Venezuela Bolivarian Republic of Against Australia Belgium Croatia Georgia Germany Hungary Iceland Japan Republic of Korea Slovakia Slovenia Spain Switzerland Ukraine United Kingdom of Great Britain and Northern Ireland Abstaining Afghanistan Mexico", - "values": [ - "Adopted by vote" - ] - }, - { - "text": "Limited March Original English Human Rights Council Thirtyfirst session Agenda item Promotion and protection of all human rights civil political economic social and cultural rights including the right to development China Cuba Egypt Pakistan Russian Federation amendment to draft resolution AHRCL Protecting human rights defenders addressing economic social and cultural rights Paragraph should read Calls upon all States to take all measures necessary to ensure the rights and safety of individuals groups and organs of society engaged in the promotion and protection of human rights including those working towards the realization of economic social and cultural rights and who in so doing exercise other human rights such as the rights to freedom of opinion expression peaceful assembly and association to participate in public affairs and to have access to justice while emphasizing that everyone shall respect the human rights of others Nonmember State of the Human Rights Council. GEE", - "values": [ - "Rejected by vote" - ] - }, - { - "text": "AHRCL United Nations General Assembly Distr Limited March Original English Human Rights Council Thirtyfirst session Agenda item Promotion and protection of all human rights civil political economic social and cultural rights including the right to development China Cuba Egypt Iran Islamic Republic of Pakistan Russian Federation amendment to draft resolution AHRCL Protecting human rights defenders addressing economic social and cultural rights Paragraph should read Calls upon all States to ensure that information held by public authorities is disclosed and also calls upon all States to adopt transparent and clear laws and policies that provide for the general right to request and receive information for which public access should be granted except within narrow and clearly defined limitations Nonmember State of the Human Rights Council. GEE", - "values": [ - "Rejected by vote" - ] - }, - { - "text": "mandate Requests the Office of the High Commissioner to provide all the resources necessary to the Commission of Inquiry to allow it to fulfil its mandate properly Decides to remain seized of the matter. th meeting September Adopted by a recorded vote of to with abstentions. The voting was as follows In favour Australia Belgium Brazil Chile Croatia Ecuador Germany Hungary Iceland Japan Mexico Mongolia Panama Peru Republic of Korea Rwanda Slovakia Slovenia Spain Switzerland Ukraine United Arab Emirates United Kingdom of Great Britain and Northern Ireland Against Burundi China Cuba Democratic Republic of the Congo Egypt Saudi Arabia Venezuela Bolivarian Republic of Abstaining Afghanistan Angola C\u00f4te dIvoire Ethiopia Georgia Iraq Kenya Kyrgyzstan Nepal Nigeria Pakistan Philippines Qatar Senegal South Africa Togo Tunisia The representative of the United Arab Emirates subsequently stated that there had been an error in the delegations vote and that it had intended to vote against.", - "values": [ - "Adopted by vote" - ] - }, - { - "text": "to thematic special procedures Requests the Office of the United Nations High Commissioner for Human Rights to provide the Special Rapporteur with the assistance and resources necessary to allow the fulfilment of his mandate and requests the latter to continue to monitor developments and make recommendations. th meeting June Adopted by a recorded vote of to with abstentions. The voting was as follows In favour Albania Belgium Brazil Croatia Germany Ghana Hungary Japan Latvia Netherlands Panama Paraguay Portugal Republic of Korea Slovenia Switzerland United Kingdom of Great Britain and Northern Ireland United States of America Against Bolivia Plurinational State of Burundi China Cuba Egypt India Philippines Venezuela Bolivarian Republic of Abstaining Bangladesh Botswana Congo C\u00f4te dIvoire Ecuador El Salvador Ethiopia Georgia Indonesia Iraq Kenya Kyrgyzstan Mongolia Nigeria Qatar Rwanda Saudi Arabia South Africa Togo Tunisia United Arab Emirates General Assembly resolution", - "values": [ - "Adopted by vote" - ] - }, - { - "text": "sector and international organizations Requests the SecretaryGeneral to take appropriate measures to disseminate information about the Social Forum to invite relevant individuals and organizations to the Forum and to take all practical measures required for the success of this initiative AHRCRES Invites the Social Forum to submit a report containing its conclusions and recommendations to the Human Rights Council at its fortieth session Requests the SecretaryGeneral to provide the Social Forum with all the services and facilities necessary to fulfil its activities and requests the High Commissioner to provide all the support necessary to facilitate the convening and proceedings of the Forum Encourages all Member States to participate in the discussions of the Social Forum so that worldwide representation in the debates can be ensured Decides to continue consideration of this issue at its thirtyeighth session under the same agenda item. th meeting June Adopted without a vote", - "values": [ - "Adopted without a vote" - ] - }, - { - "text": "the of comments and suggestions on ways and means of realizing the right to food Requests the Special Rapporteur to submit a report on the implementation of the present resolution to the Human Rights Council at its thirtyseventh session Decides to continue consideration of this matter under the same agenda item at its thirtyseventh session. th meeting March Adopted by a recorded vote of to with abstention. The voting was as follows In favour Albania Bangladesh Belgium Bolivia Plurinational State of Botswana Brazil Burundi China Congo C\u00f4te dIvoire Croatia Cuba Ecuador Egypt El Salvador Ethiopia Georgia Germany Ghana Hungary India Indonesia Iraq Japan Kenya Kyrgyzstan Latvia Mongolia Netherlands Nigeria Panama Paraguay Philippines Portugal Qatar Rwanda Saudi Arabia Slovenia South Africa Switzerland Togo Tunisia United Arab Emirates United Kingdom of Great Britain and Northern Ireland Venezuela Bolivarian Republic of Against United States of America Abstaining Republic of Korea", - "values": [ - "Adopted by vote" - ] - }, - { - "text": "in public affairs Requests the Office of the United Nations High Commissioner for Human Rights to disseminate and promote the use of the guidelines and to provide technical AHRC. GEE AHRCRES cooperation and capacitybuilding to States upon their request regarding the use of the guidelines Also requests the Office of the High Commissioner to prepare in consultation with States and all other relevant stakeholders a followup report on good practices and challenges faced by States in using the guidelines and to present it to the Human Rights Council at its fortyeighth session Encourages Governments local authorities relevant United Nations bodies specialized agencies funds and programmes other intergovernmental organizations and national human rights institutions to give due consideration to the guidelines in the formulation and implementation of their policies and measures concerning equal participation in political and public affairs. th meeting September Adopted without a vote", - "values": [ - "Adopted without a vote" - ] - }, - { - "text": "its session a final report during an interactive dialogue Urges the Government of Burundi to cooperate fully with the team of experts of the Office of the High Commissioner to authorize the team to conduct visits to the country and to provide it with all the information necessary to fulfil its mandate Decides to remain seized of the matter. th meeting September Adopted by a recorded vote of to with abstentions. The voting was as follows In favour Bangladesh Bolivia Plurinational State of Brazil Burundi China Congo C\u00f4te dIvoire Cuba Ecuador Egypt El Salvador Ethiopia Ghana India Iraq Kenya Nigeria Saudi Arabia South Africa Togo Tunisia United Arab Emirates Venezuela Bolivarian Republic of Against Albania Belgium Croatia Georgia Germany Hungary Latvia Netherlands Portugal Republic of Korea Slovenia Switzerland United Kingdom of Great Britain and Northern Ireland United States of America Abstaining Botswana Indonesia Japan Kyrgyzstan Mongolia Panama Paraguay Philippines Qatar GE", - "values": [ - "Adopted by vote" - ] - }, - { - "text": "for the effective fulfilment of the mandate by the Independent Expert AHRCRES Requests the Independent Expert to report regularly to the Human Rights Council and the General Assembly in accordance with their respective programmes of work Decides to continue its consideration of this matter at its thirtyseventh session under the same agenda item. th meeting March Adopted by a recorded vote of to with no abstentions. The voting was as follows In favour Bangladesh Bolivia Plurinational State of Botswana Burundi China Congo C\u00f4te dIvoire Cuba Ecuador Egypt El Salvador Ethiopia Ghana India Indonesia Iraq Kenya Kyrgyzstan Mongolia Nigeria Panama Paraguay Philippines Qatar Rwanda Saudi Arabia South Africa Togo Tunisia United Arab Emirates Venezuela Bolivarian Republic of Against Albania Belgium Brazil Croatia Georgia Germany Hungary Japan Latvia Netherlands Portugal Republic of Korea Slovenia Switzerland United Kingdom of Great Britain and Northern Ireland United States of America", - "values": [ - "Adopted by vote" - ] - }, - { - "text": "item and protection of all human rights civil political economic social and cultural rights including the right to development Cuba Egypt Pakistan Philippines Russian Federation South Africa TimorLeste amendment to draft resolution AHRCL Contribution to the implementation of the joint commitment to effectively addressing and countering the world drug problem with regard to human rights The fifteenth preambular paragraph should read Welcoming the progress made in strengthening and expanding existing cooperation on the public healthrelated aspects of the world drug problem including the signing of the memorandum of understanding between the World Health Organization and the United Nations Office on Drugs and Crime in February and recognizing the need for intensified efforts to support Member States upon request in addressing and countering the world drug problem in accordance with a comprehensive integrated and balanced approach State not a member of the Human Rights Council. GEE", - "values": [ - "Rejected by vote" - ] - }, - { - "text": "read Recognizes the important role of education respect for cultural diversity preventing and combating discrimination employment and inclusion in helping to prevent terrorism and welcomes the engagement of relevant United Nations agencies with Member States to implement strategies to prevent extremism through education Paragraph The paragraph should read Also recognizes the importance of preventing extremism and invites Member States and regional and subregional organizations to consider developing national and regional plans of action in this regard Paragraph The paragraph should read State not a member of the Human Rights Council. GEE AHRCL Calls upon States to highlight the important role of women in countering terrorism and to consider when appropriate the impact of counterterrorism strategies on womens and childrens human rights and womens and childrens organizations and to seek consultations with these organizations when developing strategies to counter terrorism", - "values": [ - "Rejected by vote" - ] - }, - { - "text": "of assistance by the international community to the Democratic Republic of the Congo Requests the United Nations High Commissioner for Human Rights to present to the Human Rights Council in an enhanced interactive dialogue an oral update on the situation of human rights in the Democratic Republic of the Congo at its fortyfirst session Also requests the High Commissioner to prepare a report on the situation of human rights in the Democratic Republic of the Congo before during and after the elections of December and to submit it to the Human Rights Council within the framework of an enhanced interactive dialogue at its fortieth session and to prepare a comprehensive report on the situation of human rights in the Democratic Republic of the Congo and to submit it to the Council within the framework of an enhanced interactive dialogue at its fortysecond session Decides to remain seized of the situation until its fortysecond session. st meeting September Adopted without a vote GE", - "values": [ - "Adopted without a vote" - ] - }, - { - "text": "AHRCL United Nations General Assembly Distr Limited March Original English Human Rights Council Thirtyfirst session Agenda item Promotion and protection of all human rights civil political economic social and cultural rights including the right to development China Cuba Egypt Pakistan Russian Federation amendment to draft resolution AHRCL Protecting human rights defenders addressing economic social and cultural rights The twentyfirst preambular paragraph should read Expressing grave concern at the serious nature of risks faced by individuals groups and organs of society engaged in the promotion and protection of human rights including threats attacks and acts of intimidation and reprisal against them in different parts of the world and gravely concerned about the resulting negative impact on the realization of economic social and cultural rights including violations and abuses in this regard Nonmember State of the Human Rights Council. GEE", - "values": [ - "Rejected by vote" - ] - }, - { - "text": "in regard calls upon all States that have not yet signed and ratified the Optional Protocol to the International Covenant on Economic Social and Cultural Rights to consider doing so as a matter of priority Encourages the United Nations High Commissioner for Human Rights the treaty bodies the special procedures of the Human Rights Council and other relevant United Nations bodies and mechanisms specialized agencies funds and programmes within their respective mandates to continue their efforts to promote the full realization of the right to education worldwide and to enhance their cooperation in this regard including by enhancing technical assistance to Governments Commends the contribution of national human rights institutions civil society including nongovernmental organizations and parliamentarians to the realization of the right to education including through cooperation with the Special Rapporteur Decides to remain seized of the matter. th meeting July Adopted without a vote", - "values": [ - "Adopted without a vote" - ] - }, - { - "text": "High Commissioner to continue to present an annual report to the Human Rights Council containing information on relevant developments of United Nations human rights bodies and mechanisms and on the activities undertaken by the Office of the High Commissioner at headquarters and in the field that contribute to the promotion of and respect for the provisions of the Declaration on the Rights of Persons Belonging to National or Ethnic Religious and Linguistic Minorities Requests the SecretaryGeneral and the High Commissioner to continue to provide all the human technical and financial assistance necessary for the effective fulfilment of the mandate of the Special Rapporteur on minority issues and for the activities of the Office of the High Commissioner in the area of rights of persons belonging to national or ethnic religious and linguistic minorities Decides to continue its consideration of this issue in accordance with its programme of work. rd meeting March Adopted without a vote", - "values": [ - "Adopted without a vote" - ] - }, - { - "text": "other abreast of ongoing activities to deepen the understanding of the nexus between corruption and human rights Encourages the mechanisms of the Human Rights Council to consider within their existing mandates the issue of the negative impact of corruption on the enjoyment of human rights Requests the Office of the High Commissioner to organize before the thirtyninth session of the Human Rights Council in coordination with the United Nations Office on Drugs and Crime and with the participation of relevant United Nations entities an intersessional halfday openended expert workshop with the objective of exchanging best practices on how the United Nations system supports States in preventing and fighting against corruption with a focus on human rights AHRCRES Requests the Office of the High Commissioner to prepare a summary report of the abovementioned seminar and to submit the report to the Human Rights Council at its fortyfirst session. th meeting June Adopted without a vote", - "values": [ - "Adopted without a vote" - ] - }, - { - "text": "improve the situation of human rights in Eritrea by strengthening engagement with the Government of Eritrea Requests the SecretaryGeneral to provide the Special Rapporteur with all information and the resources necessary to fulfil her mandate AHRCRES Requests the General Assembly to submit the report and the oral updates of the commission of inquiry to all relevant organs of the United Nations for consideration and appropriate action Reiterates its strong encouragement to the African Union to follow up on the report and recommendations of the commission of inquiry and the update on human rights in Eritrea by establishing an investigation supported by the international community with a view to examining and bringing to justice those responsible for crimes involving violations and abuses of human rights identified by the commission of inquiry including any that may amount to a crime against humanity Decides to remain seized of the matter. th meeting June Adopted without a vote", - "values": [ - "Adopted without a vote" - ] - }, - { - "text": "of the of funds of illicit origin within the United Nations system for consideration and necessary action and coordination as appropriate particularly within the context of the Conference of the States Parties to the United Nations Convention against Corruption Decides to continue its consideration of this matter under the same agenda item. th meeting March Adopted by a recorded vote of to with abstentions. The voting was as follows In favour Bangladesh Bolivia Plurinational State of Botswana Brazil Burundi China Congo C\u00f4te dIvoire Cuba Ecuador Egypt El Salvador Ethiopia Ghana India Indonesia Iraq Kenya Kyrgyzstan Mongolia Nigeria Philippines Qatar Rwanda Saudi Arabia South Africa Togo Tunisia United Arab Emirates Venezuela Bolivarian Republic of Against United States of America Abstaining Albania Belgium Croatia Georgia Germany Hungary Japan Latvia Netherlands Panama Paraguay Portugal Republic of Korea Slovenia Switzerland United Kingdom of Great Britain and Northern Ireland", - "values": [ - "Adopted by vote" - ] - }, - { - "text": "mandates and the Office of the High Commissioner and relevant stakeholders Requests the High Commissioner and the Special Rapporteur to present their reports bearing in mind the content of the present resolution to the Human Rights Council under agenda item in conformity with its annual programme of work. st meeting September Adopted by a recorded vote of to with abstentions. The voting was as follows In favour Albania Algeria Bangladesh Belgium Bolivia Plurinational State of Botswana Congo C\u00f4te dIvoire Cuba Ecuador Ethiopia France Georgia Germany Ghana Indonesia Kenya Kyrgyzstan Latvia Maldives Mexico Mongolia Morocco Namibia Netherlands Nigeria Panama Portugal Qatar Republic of Korea Saudi Arabia Slovenia South Africa Switzerland the former Yugoslav Republic of Macedonia United Arab Emirates United Kingdom of Great Britain and Northern Ireland Viet Nam Abstaining Burundi China El Salvador India Paraguay Philippines Russian Federation Togo Venezuela Bolivarian Republic of", - "values": [ - "Adopted by vote" - ] - }, - { - "text": "Nations General Assembly Distr Limited September Original English Human Rights Council Thirtythird session Agenda item Promotion and protection of all human rights civil political economic social and cultural rights including the right to development China Cuba Venezuela Bolivarian Republic of amendment to draft resolution AHRCL Human rights and transitional justice Paragraph should read Calls upon States to work to prevent potential situations that could result in gross violations and abuses of human rights and serious violations of international humanitarian law in particular genocide war crimes ethnic cleansing crimes against humanity and in relevant contexts to timely and efficiently address the legacy of past atrocities in order to prevent their recurrence including through cooperation with the Special Adviser to the SecretaryGeneral on the Prevention of Genocide and the Special Rapporteur on the promotion of truth justice reparation and guarantees of nonrecurrence GEE", - "values": [ - "Rejected by vote" - ] - }, - { - "text": "illegal policies and practices Urges all States to adopt measures as required to promote the realization of the right to selfdetermination of the Palestinian people and to render assistance to the United Nations in carrying out the responsibilities entrusted to it by the Charter regarding the implementation of this right Decides to remain seized of the matter. th meeting March Adopted by a recorded vote of to with abstention. The voting was as follows In favour Afghanistan Angola Belgium Brazil Burundi Chile China C\u00f4te dIvoire Croatia Cuba Ecuador Egypt Ethiopia Georgia Germany Hungary Iraq Japan Kenya Kyrgyzstan Mexico Nepal Nigeria Pakistan Panama Peru Philippines Qatar Republic of Korea Rwanda Saudi Arabia Senegal Slovakia Slovenia South Africa Spain Switzerland Togo Tunisia Ukraine United Arab Emirates United Kingdom of Great Britain and Northern Ireland Venezuela Bolivarian Republic of Against Australia United States of America Abstaining Democratic Republic of the Congo", - "values": [ - "Adopted by vote" - ] - }, - { - "text": "AHRCL United Nations General Assembly Distr Limited September Original English Human Rights Council Thirtysixth session September Agenda item Human rights bodies and mechanisms China Egypt India Russian Federation Venezuela Bolivarian Republic of amendment to draft resolution AHRCLRev Cooperation with the United Nations its representatives and mechanisms in the field of human rights The ninth preambular paragraph should read Noting also the role that regional mechanisms can play where appropriate in preventing and addressing acts of intimidation or reprisal against individuals and groups who seek to cooperate cooperate or have cooperated with the United Nations its representatives and mechanisms in the field of human rights State not a member of the Human Rights Council. GEE", - "values": [ - "Rejected by vote" - ] - }, - { - "text": "to present it within its regular reporting cycle to the Human Rights Council at its fortyfifth session on the occasion of the fifth anniversary of the adoption of the Agenda for Sustainable Development AHRC. AHRCRES Encourages States to support the Office of the High Commissioner and the members of the Advisory Committee in this endeavour taking into account the importance of sharing good practices across regions and of international cooperation Invites the Office of the High Commissioner and relevant United Nations bodies agencies funds and programmes and other relevant stakeholders to cooperate with States in providing technical assistance upon request to the States concerned with the purpose of assisting them in integrating human rights into national policies and programmes so that national policies aimed at achieving the Sustainable Development Goals contribute to the enjoyment of human rights Decides to remain seized of this issue. th meeting June Adopted without a vote", - "values": [ - "Adopted without a vote" - ] - }, - { - "text": "AHRCL United Nations General Assembly Distr Limited March Original English Human Rights Council Thirtyseventh session February March Agenda item Organizational and procedural matters Russian Federation Venezuela Bolivarian Republic of amendment to draft resolution AHRCL The deteriorating situation of human rights in Eastern Ghouta in the Syrian Arab Republic Delete paragraph State not a member of the Human Rights Council GEE", - "values": [ - "Rejected by vote" - ] - }, - { - "text": "AHRCL United Nations General Assembly Distr Limited March Original English Human Rights Council Thirtyfirst session Agenda item Promotion and protection of all human rights civil political economic social and cultural rights including the right to development China Cuba Egypt Iran Islamic Republic of Pakistan Russian Federation amendment to draft resolution AHRCL Protecting human rights defenders addressing economic social and cultural rights The title of the draft resolution should read Protecting individuals groups and organs of society engaged in the promotion and protection of human rights in particular those addressing economic social and cultural rights Nonmember State of the Human Rights Council. GEE", - "values": [ - "Rejected by vote" - ] - }, - { - "text": "with resolution of October and subsequent resolutions on women peace and security that meets the legitimate aspirations of the Syrian people for a civil democratic and pluralistic State in which all citizens receive equal protection regardless of gender religion or ethnicity and welcomes the inclusion of civil society in this process Decides to remain seized of the matter. th meeting July Adopted by a recorded vote of to with abstentions. The voting was as follows In favour Australia Belgium Brazil Chile C\u00f4te dIvoire Croatia Ecuador Georgia Germany Hungary Japan Mexico Panama Peru Qatar Republic of Korea Rwanda Saudi Arabia Slovakia Slovenia Spain Switzerland Togo Ukraine United Arab Emirates United Kingdom of Great Britain and Northern Ireland Against Burundi China Cuba Iraq Venezuela Bolivarian Republic of Abstaining Afghanistan Angola Democratic Republic of the Congo Egypt Ethiopia Kenya Kyrgyzstan Mongolia Nepal Nigeria Pakistan Philippines Senegal South Africa Tunisia", - "values": [ - "Adopted by vote" - ] - }, - { - "text": "any under its jurisdiction has the right to complain to the competent authorities and that steps are taken to ensure that the complainant and witnesses are protected against all illtreatment or intimidation as a consequence of his or her complaint or any evidence given Calls upon States to ensure accountability for acts of torture and other cruel inhuman or degrading treatment or punishment and in this regard stresses that preventing and combating corruption are important in ensuring the ability of the competent national authorities to investigate promptly effectively independently and impartially all allegations of such acts Takes note with appreciation of the report of the Special Rapporteur on torture and other cruel inhuman or degrading treatment of r punishment Invites the Special Rapporteur and other relevant special procedures within their respective mandates to take the present resolution into account in their future work. th meeting March Adopted without a vote AHRC.", - "values": [ - "Adopted without a vote" - ] - }, - { - "text": "for the strengthening of United Nations action in the field of human rights through the promotion of international cooperation and the importance of the principles of nonselectivity impartiality and objectivity including in the context of the universal periodic review Decides to continue its consideration of the matter in in accordance with its annual programme of work. th meeting July Adopted by a recorded vote of to with abstentions. The voting was as follows In favour Angola Burundi Chile China C\u00f4te dIvoire Cuba Democratic Republic of the Congo Ecuador Egypt Ethiopia Iraq Kenya Kyrgyzstan Mongolia Nepal Nigeria Pakistan Peru Philippines Qatar Rwanda Saudi Arabia Senegal South Africa Togo Tunisia United Arab Emirates Venezuela Bolivarian Republic of AHRCRES Against Australia Belgium Croatia Georgia Germany Hungary Japan Republic of Korea Slovakia Slovenia Spain Switzerland Ukraine United Kingdom of Great Britain and Northern Ireland Abstaining Afghanistan Brazil Mexico", - "values": [ - "Adopted by vote" - ] - }, - { - "text": "AHRCL United Nations General Assembly Distr Limited June Original English Human Rights Council Thirtysecond session Agenda item Promotion and protection of all human rights civil political economic social and cultural rights including the right to development Belarus China Iran Islamic Republic of Russian Federation amendment to draft resolution AHRCL The promotion protection and enjoyment of human rights on the Internet After paragraph insert a new paragraph reading bis. Expresses its concern at the use of the Internet and information and communications technology to disseminate ideas based on racial superiority or hatred and incitement to racial discrimination xenophobia and related intolerance State not a member of the Human Rights Council. GEE", - "values": [ - "Rejected by vote" - ] - }, - { - "text": "AHRCL United Nations General Assembly Distr Limited September Original English Human Rights Council Thirtysixth session September Agenda item Promotion and protection of all human rights civil political economic social and cultural rights including the right to development China Egypt Saudi Arabia United Arab Emirates amendment to draft resolution AHRCL The question of the death penalty After paragraph insert a new paragraph reading bis. Urges States that have abolished the death penalty or have subjected it to a moratorium to study the impact of the discontinuation of the application of the sentence on the rights of the victims and the effective accomplishment of redress including its elements of satisfaction and guarantees of nonrecurrence and encourages the States to share and exchange information concerning the impact of the abolition or retention of the death penalty on the rates of prevalence of serious crimes GEE", - "values": [ - "Rejected by vote" - ] - }, - { - "text": "and importance as the rapid pace of technological development enables individuals all over the world to use new information and communications technologies Paragraph The paragraph should read Affirms that the same rights that people have offline must also be protected online in particular freedom of expression and the right to privacy in accordance with articles and of the International Covenant on Civil and Political Rights Paragraph The paragraph should read Decides to continue its consideration of the promotion protection and enjoyment of human rights including the right to freedom of expression and the right to privacy on the Internet and other information and communications technology as well as of how the Internet can be an important tool for fostering citizen and civil society participation for the realization of development in every community and for exercising human rights in accordance with its programme of work. State not a member of the Human Rights Council. GEE", - "values": [ - "Rejected by vote" - ] - }, - { - "text": "Union and all other relevant regional and international organizations Requests the High Commissioner to present an oral update on the situation of human rights in Libya and the implementation of the present resolution to the Human Rights Council at its fortysecond session during an interactive dialogue with the participation of the Special Representative of the SecretaryGeneral for Libya and to present to the Council during an interactive dialogue at its fortythird session a report on the situation of human rights in Libya including the implementation of technical assistance and capacitybuilding to support the efforts of the Government of National Accord to prevent and ensure accountability for violations and abuses of human rights AHRCRES Requests the SecretaryGeneral to provide the Office of the High Commissioner with the resources necessary for the full implementation of the present resolution Decides to remain seized of the matter. th meeting March Adopted without a vote", - "values": [ - "Adopted without a vote" - ] - }, - { - "text": "the of a democratic and equitable international order Requests the Independent Expert to report regularly to the Human Rights Council and the General Assembly in accordance with their respective programmes of work Decides to continue its consideration of this matter under the same agenda item at its thirtyninth session. th meeting September Adopted by a recorded vote of to with no abstentions. The voting was as follows In favour Bangladesh Bolivia Plurinational State of Botswana Brazil Burundi China Congo C\u00f4te dIvoire Cuba Ecuador Egypt El Salvador Ethiopia Ghana India Indonesia Iraq Kenya Kyrgyzstan Mongolia Nigeria AHRC and Corr. AHRCRES Panama Paraguay Philippines Qatar Rwanda Saudi Arabia South Africa Togo Tunisia United Arab Emirates Venezuela Bolivarian Republic of Against Albania Belgium Croatia Georgia Germany Hungary Japan Latvia Netherlands Portugal Republic of Korea Slovenia Switzerland United Kingdom of Great Britain and Northern Ireland United States of America", - "values": [ - "Adopted by vote" - ] - }, - { - "text": "States members of the Human Rights Council and observers the findings of each of the reports of the Office of the High Commissioner on the situation of human rights in Ukraine as part of the interactive dialogues and through the modalities of the Council in accordance with its resolution of June until the fortyfirst session of the Council. th meeting June Adopted by a recorded vote of to with abstentions. The voting was as follows In favour Albania Belgium C\u00f4te dIvoire Croatia Ecuador Georgia Germany Ghana Hungary Iraq Japan Latvia Netherlands Nigeria Panama Portugal Republic of Korea Rwanda Slovenia Switzerland United Kingdom of Great Britain and Northern Ireland United States of America Against Bolivia Plurinational State of Burundi China Cuba Philippines Venezuela Bolivarian Republic of Abstaining Bangladesh Botswana Brazil Congo Egypt El Salvador Ethiopia India Indonesia Kenya Kyrgyzstan Mongolia Paraguay Qatar Saudi Arabia South Africa Togo Tunisia United Arab Emirates", - "values": [ - "Adopted by vote" - ] - }, - { - "text": "AHRCL United Nations General Assembly Distr Limited September Original English Human Rights Council Thirtysixth session September Agenda item Human rights bodies and mechanisms China Egypt India Russian Federation Venezuela Bolivarian Republic of amendment to draft resolution AHRCLRev Cooperation with the United Nations its representatives and mechanisms in the field of human rights The seventh preambular paragraph should read Recognizing the different roles of the SecretaryGeneral and the United Nations High Commissioner for Human Rights in supporting cooperation with the United Nations its representatives and mechanisms in the field of human rights and in that context addressing as appropriate acts of intimidation or reprisal against individuals and groups who seek to cooperate cooperate or have cooperated with the United Nations in this regard State not a member of the Human Rights Council. GEE", - "values": [ - "Rejected by vote" - ] - }, - { - "text": "on the discussion including any recommendations stemming therefrom to the Human Rights Council at its fortieth session Requests the SecretaryGeneral to allocate the necessary resources to ensure the participation of the Special Rapporteur on contemporary forms of racism racial discrimination xenophobia and related intolerance as well as the Chair of the Committee on the Elimination of Racial Discrimination and the ChairRapporteur of the Working Group of Experts on People of African Descent in the meeting of the Intergovernmental Working Group to contribute to the aforementioned discussions including on issues related to the format and scope of a possible declaration on the promotion and full respect of human rights of people of African descent Encourages States to engage in national and regional consultations with a view to preparing for the session of the Intergovernmental Working Group Decides to remain seized of this important matter. th meeting June Adopted without a vote", - "values": [ - "Adopted without a vote" - ] - }, - { - "text": "to continue to provide the Independent Expert with all the assistance he needs to discharge his mandate fully Requests the High Commissioner to continue to provide the technical assistance requested by the Government of Mali in order to strengthen the capacity of the National Human Rights Commission of Mali and encourages the Malian authorities to bring the Commission into conformity with the principles relating to the status of national institutions for the promotion and protection of human rights Paris Principles and to provide it with the necessary means to carry out its work independently Urges the international community to continue to provide assistance to Mali in order to ensure its stability with a view to promoting respect for all human rights and to carrying out a determined effort to combat impunity which will pave the way for national reconciliation peace and social cohesion Decides to remain seized of this matter. Fiftysixth session March Adopted without a vote GE", - "values": [ - "Adopted without a vote" - ] - }, - { - "text": "rights obligations and commitments and to provide all victims with access to a remedy and redress including in the context of peaceful protests Requests the United Nations High Commissioner for Human Rights to prepare a thematic report on new technologies including information and communications technology and their impact on the promotion and protection of human rights in the context of assemblies including peaceful protests and to submit it to the Human Rights Council prior to its fortyfourth session Also requests the High Commissioner in preparing the thematic report to draw from the experience of treaty bodies and to seek the views of States and relevant partners such as United Nations agencies regional organizations national human rights institutions civil society organizations and relevant special procedure mandate holders Decides to continue its consideration of this topic and next steps at its fortyfourth session under agenda item th meeting July Adopted without a vote", - "values": [ - "Adopted without a vote" - ] - }, - { - "text": "in promoting and protecting all human rights Requests the Human Rights Council Advisory Committee to conduct a study on the role of technical assistance and capacitybuilding in fostering mutually beneficial cooperation in promoting and protecting human rights and to submit a report thereon to the Human Rights Council before its fortythird session. th meeting March AHRCRES Adopted by a recorded vote of to with abstentions. The voting was as follows In favour Angola Brazil Burundi Chile China C\u00f4te dIvoire Cuba Democratic Republic of the Congo Ecuador Egypt Ethiopia Iraq Kenya Kyrgyzstan Mexico Mongolia Nepal Nigeria Pakistan Panama Philippines Qatar Saudi Arabia Senegal South Africa Togo United Arab Emirates Venezuela Bolivarian Republic of Against United States of America Abstaining Afghanistan Australia Belgium Croatia Georgia Germany Hungary Japan Peru Republic of Korea Rwanda Slovakia Slovenia Spain Switzerland Ukraine United Kingdom of Great Britain and Northern Ireland", - "values": [ - "Adopted by vote" - ] - }, - { - "text": "means an end to these serious breaches and a reversal of Israels illegal policies and practices AHRCRES Urges all States to adopt measures as required to promote the realization of the right to selfdetermination of the Palestinian people and to render assistance to the United Nations in carrying out the responsibilities entrusted to it by the Charter regarding the implementation of this right Decides to remain seized of the matter. th meeting March Adopted by a recorded vote of to with abstentions. The voting was as follows In favour Afghanistan Angola Argentina Austria Bahamas Bahrain Bangladesh Brazil Bulgaria Burkina Faso Chile China Croatia Cuba Czechia Egypt Eritrea Fiji Hungary Iceland India Iraq Italy Japan Mexico Nepal Nigeria Pakistan Peru Philippines Qatar Rwanda Senegal Slovakia Somalia South Africa Spain Togo Tunisia Ukraine Uruguay Against Australia Denmark United Kingdom of Great Britain and Northern Ireland Abstaining Cameroon Democratic Republic of the Congo", - "values": [ - "Adopted by vote" - ] - }, - { - "text": "to engage with and seek input from those organizations and entities as well as the views of States national human rights institutions civil society and other stakeholders and to submit the compilation to the Human Rights Council at its thirtyeighth session Decides to remain seized of the matter. th meeting July Adopted by a recorded vote of to with abstentions. The voting was as follows In favour Albania Algeria Bangladesh Belgium Botswana C\u00f4te dIvoire Ecuador El Salvador France Georgia Germany Ghana India Indonesia Latvia Maldives Mexico Mongolia Morocco Namibia Netherlands Panama Paraguay Philippines Portugal Republic of Korea Slovenia Switzerland the former Yugoslav Republic of Macedonia Togo United Kingdom of Great Britain and Northern Ireland AHRCRES Against China Congo Cuba Nigeria Russian Federation South Africa Venezuela Bolivarian Republic of Abstaining Bolivia Plurinational State of Burundi Ethiopia Kenya Kyrgyzstan Qatar Saudi Arabia United Arab Emirates Viet Nam", - "values": [ - "Adopted by vote" - ] - }, - { - "text": "AHRCL United Nations General Assembly Distr Limited September Original English Human Rights Council Twentyfourth session Agenda item Human rights bodies and mechanisms Algeria Belarus China Cuba Egypt Ethiopia India Pakistan Russian Federation South Africa Venezuela Bolivarian Republic of amendment to draft resolution AHRCL Cooperation with the United Nations its representatives and mechanisms in the field of human rights Paragraph should read Reaffirms the right of everyone to protect his or her human rights by all legitimate means and in this regard access individually or in association with others to international human rights mechanisms Nonmember State of the Human Rights Council. GE", - "values": [ - "Rejected by vote" - ] - }, - { - "text": "to a report on the workshop in the form of a summary to the Human Rights Council at its thirtyninth session GEE AHRCRES Encourages all Member States specialized agencies and civil society to participate in the discussions of the workshop so that worldwide representation in the debates can be ensured Decides to remain seized of the matter. th meeting June Adopted by a recorded vote of to with abstentions. The voting was as follows In favour Bangladesh Bolivia Plurinational State of Botswana Brazil Burundi China Congo C\u00f4te dIvoire Cuba Ecuador Egypt El Salvador Ethiopia Ghana India Indonesia Iraq Kenya Kyrgyzstan Mongolia Nigeria Panama Paraguay Philippines Qatar Rwanda Saudi Arabia South Africa Togo Tunisia United Arab Emirates Venezuela Bolivarian Republic of Against Belgium Croatia Germany Hungary Japan Latvia Netherlands Republic of Korea Slovenia United Kingdom of Great Britain and Northern Ireland United States of America Abstaining Albania Georgia Portugal Switzerland", - "values": [ - "Adopted by vote" - ] - }, - { - "text": "impeding economic growth and to recommend actions to be taken by Governments United Nations human rights mechanisms regional and international organizations and civil society organizations in this regard and to present AHRCRES the report to the Human Rights Council at its thirtyninth session to be discussed during the interactive dialogue. th meeting March Adopted by a recorded vote of to with abstentions. The voting was as follows In favour Bangladesh Bolivia Plurinational State of Botswana Brazil Burundi China Congo C\u00f4te dIvoire Cuba Ecuador Egypt El Salvador Ethiopia Ghana India Indonesia Iraq Kenya Nigeria Paraguay Philippines Qatar Rwanda Saudi Arabia Togo Tunisia United Arab Emirates Venezuela Bolivarian Republic of Against Albania Belgium Croatia Germany Hungary Japan Latvia Netherlands Portugal Republic of Korea Slovenia South Africa Switzerland United Kingdom of Great Britain and Northern Ireland United States of America Abstaining Georgia Kyrgyzstan Mongolia Panama", - "values": [ - "Adopted by vote" - ] - }, - { - "text": "arbitrary or unlawful collection retention processing use or disclosure of personal data on the Internet that could violate human rights Calls upon all States to consider formulating through transparent and inclusive processes with all stakeholders and adopting national Internetrelated public policies that have at their core the objective of universal access and the enjoyment of human rights Encourages the special procedures to take these issues into account within their existing mandates as applicable Decides to continue its consideration of the promotion protection and enjoyment of human rights including the right to freedom of expression on the Internet and with other information and communications technology and of how the Internet can be an important tool for fostering citizen and civil society participation for the realization of development in every community and for exercising human rights in accordance with its programme of work. th meeting July Adopted without a vote", - "values": [ - "Adopted without a vote" - ] - }, - { - "text": "development system relevant United Nations bodies agencies and country teams relevant special procedures and other stakeholders including where applicable those involved in technical cooperation projects that demonstrate best practices constructive engagement and positive impact on the ground with a view to ensuring their participation in the thematic panel discussion Calls upon States relevant international organizations intergovernmental bodies and civil society to make use of the ideas and issues raised in the annual panel discussion under agenda item during its thirtyeighth session to enhance the efficiency effectiveness and policy coherence of technical cooperation and capacitybuilding efforts undertaken by the Office of the High Commissioner and United Nations country teams and agencies in improving States national capacities to promote and protect human rights and support the implementation of the Sustainable Development Goals. nd meeting September Adopted without a vote", - "values": [ - "Adopted without a vote" - ] - }, - { - "text": "calls upon all States to cooperate with and assist the Working Group in its task to supply all necessary available information requested by it and to give serious consideration to responding favourably to its requests to visit their country to enable it to fulfil its mandate effectively Invites relevant United Nations agencies funds and programmes in particular the United Nations Entity for Gender Equality and the Empowerment of Women the treaty bodies and other special procedures within their respective mandates and civil society actors including nongovernmental organizations as well as the private sector to cooperate fully with the Working Group in the fulfilment of its mandate and requests the Working Group to continue to engage with the Commission on the Status of Women including by participating in its work and formally reporting Decides to continue its consideration of this issue in conformity with its annual programme of work. th meeting July Adopted without a vote AHRC.", - "values": [ - "Adopted without a vote" - ] - }, - { - "text": "the United Nations Plan of Action on the Safety of Journalists and the Issue of Impunity and to this end calls upon States to cooperate with relevant United Nations entities in particular the United Nations Educational Scientific and Cultural Organization relevant special procedures of the Human Rights Council and international and regional human rights mechanisms Invites States to share information on a voluntary basis on the status of investigations into attacks and violence against journalists including in response to requests by the United Nations Educational Scientific and Cultural Organization through the mechanism operated by its International Programme for the Development of Communication Encourages States to continue to address the issue of the safety of journalists through the process of the universal periodic review Decides to continue its consideration of the safety of journalists in accordance with its programme of work. th meeting September Adopted without a vote", - "values": [ - "Adopted without a vote" - ] - }, - { - "text": "and the Paralympic Committee to maximize the potential of sport to make a meaningful and sustainable contribution to the achievement of the Sustainable Development Goals of the Agenda for Sustainable Development and encourages the AHRCRES Olympic and Paralympic movements to work closely with national regional and international sport organizations on the use of sport for this purpose Decides to incorporate into its programme of work a thematic panel discussion with regard to promoting human rights through sport and the Olympic ideal to be held once every four years at the session of the Human Rights Council preceding the Summer Olympic and Paralympic Games and also decides that the discussions will be fully accessible to persons with disabilities Also decides that the first such panel discussion will be organized at its fortyfourth session ahead of the Olympic and Paralympic Games in Tokyo Further decides to remain seized of the matter. th meeting March Adopted without a vote", - "values": [ - "Adopted without a vote" - ] - }, - { - "text": "to transmit all reports and oral updates of the Commission of Inquiry to all relevant bodies of the United Nations recommends that the General Assembly submit the reports to the Security Council for appropriate action expresses its appreciation to the Commission for its briefings to members of the Security Council and recommends the continuation of future briefings Also decides to remain seized of the matter. rd meeting March Adopted by a recorded vote of to with abstentions. The voting was as follows In favour AHRCRES Afghanistan Argentina Australia Austria Bahamas Brazil Bulgaria Burkina Faso Chile Croatia Czechia Denmark Fiji Hungary Iceland Italy Japan Mexico Peru Qatar Rwanda Saudi Arabia Slovakia Spain Togo Ukraine United Kingdom of Great Britain and Northern Ireland Uruguay Against China Cuba Egypt Eritrea Iraq Abstaining Angola Bahrain Bangladesh Cameroon Democratic Republic of the Congo India Nepal Nigeria Pakistan Philippines Senegal Somalia South Africa Tunisia", - "values": [ - "Adopted by vote" - ] - }, - { - "text": "report and for progress in priority areas of technical assistance and capacitybuilding Requests the SecretaryGeneral and the High Commissioner to provide the Special Rapporteur and the independent international factfinding mission with the assistance resources and expertise necessary to enable them to discharge their mandates fully. th meeting March Adopted by a recorded vote of to with abstentions. The voting was as follows In favour Afghanistan Australia Belgium Brazil Chile C\u00f4te dIvoire Croatia Egypt Georgia Germany Hungary Iraq Kyrgyzstan Mexico Nigeria Pakistan Panama Peru Qatar Republic of Korea Rwanda Saudi Arabia Slovakia Slovenia Spain Switzerland Togo Tunisia Ukraine United Arab Emirates AHRC. AHRCRES United Kingdom of Great Britain and Northern Ireland United States of America Against Burundi China Cuba Philippines Venezuela Bolivarian Republic of Abstaining Angola Democratic Republic of the Congo Ecuador Ethiopia Japan Kenya Mongolia Nepal Senegal South Africa", - "values": [ - "Adopted by vote" - ] - }, - { - "text": "AHRCL United Nations General Assembly Distr Limited September Original English Human Rights Council Thirtysixth session September Agenda item Human rights bodies and mechanisms China India Russian Federation Venezuela Bolivarian Republic of amendment to draft resolution AHRCLRev Cooperation with the United Nations its representatives and mechanisms in the field of human rights The thirteenth preambular paragraph should read Recalling the principles relating to the status of national institutions for the promotion and protection of human rights the Paris Principles and underlining the role that national human rights institutions can play in preventing and addressing cases of reprisal or intimidation against individuals and groups who seek to cooperate cooperate or have cooperated with the United Nations its representatives and mechanisms in the field of human rights State not a member of the Human Rights Council. GEE", - "values": [ - "Rejected by vote" - ] - }, - { - "text": "with the and the rapporteurs and to provide them with all the relevant information to enable them to fulfil their mandate Requests the United Nations High Commissioner for Human Rights to ensure that the chairrapporteur and rapporteurs receive the necessary financial and human resources to enable them to discharge their mandate fully Decides to remain seized of the matter. th meeting July AHRCRES Adopted by a recorded vote of to with abstentions. The voting was as follows In favour Afghanistan Australia Belgium Brazil Chile C\u00f4te dIvoire Croatia Georgia Germany Hungary Iraq Japan Mexico Mongolia Nepal Panama Peru Qatar Republic of Korea Rwanda Senegal Slovakia Slovenia Spain Switzerland Togo Tunisia United Kingdom of Great Britain and Northern Ireland Against Burundi China Cuba Egypt Kyrgyzstan Saudi Arabia South Africa United Arab Emirates Venezuela Bolivarian Republic of Abstaining Angola Democratic Republic of the Congo Ecuador Ethiopia Kenya Nigeria Pakistan Philippines", - "values": [ - "Adopted by vote" - ] - }, - { - "text": "and nongovernmental organizations in the discharge of the mandate of the Independent Expert Requests the Independent Expert to report regularly to the Human Rights Council and to the General Assembly in accordance with their respective programmes of work AHRC. AHRCRES Decides to continue its consideration of this matter under the same agenda item. th meeting June Adopted by a recorded vote of to with no abstention. The voting was as follows In favour Bangladesh Bolivia Plurinational State of Botswana Brazil Burundi China Congo C\u00f4te dIvoire Cuba Ecuador Egypt El Salvador Ethiopia Ghana India Indonesia Iraq Kenya Kyrgyzstan Mongolia Nigeria Panama Paraguay Philippines Qatar Rwanda Saudi Arabia South Africa Togo Tunisia United Arab Emirates Venezuela Bolivarian Republic of Against Albania Belgium Croatia Georgia Germany Hungary Japan Latvia Netherlands Portugal Republic of Korea Slovenia Switzerland United Kingdom of Great Britain and Northern Ireland United States of America", - "values": [ - "Adopted by vote" - ] - }, - { - "text": "the to provide the assistance necessary to the Special Rapporteur to fulfil his mandate effectively in particular by placing adequate human and material resources at his disposal Decides to continue its consideration of the issue of the negative impact of unilateral coercive measures on human rights in accordance with its programme of work. th meeting March Adopted by a recorded vote of to with abstentions. The voting was as follows In favour Angola Burundi Chile China C\u00f4te dIvoire Cuba Democratic Republic of the Congo Ecuador Egypt Ethiopia Iraq Kenya Kyrgyzstan Mongolia AHRC. AHRCRES Nepal Nigeria Pakistan Peru Philippines Qatar Rwanda Saudi Arabia Senegal South Africa Togo Tunisia United Arab Emirates Venezuela Bolivarian Republic of Against Australia Belgium Croatia Georgia Germany Hungary Japan Republic of Korea Slovakia Slovenia Spain Switzerland Ukraine United Kingdom of Great Britain and Northern Ireland United States of America Abstaining Afghanistan Brazil Mexico", - "values": [ - "Adopted by vote" - ] - }, - { - "text": "arrangements for the promotion and protection of human rights and their achievements in all regions of the world and on the crucial role played by the Office of the United Nations High Commissioner for Human Rights in advancing cooperation between international and regional human rights mechanisms and to identify ways to increase the role that regional arrangements play in promoting and protecting human rights and to reinforce universal human rights standards including as contained in international human rights instruments and to submit the report to the Human Rights Council before its thirtyninth session State not a member of the Human Rights Council. GEE AHRCL Encourages the Advisory Committee when preparing the abovementioned report to take into account the views of Member States as appropriate relevant international and regional organizations the Office of the High Commissioner national human rights institutions and nongovernmental organizations and other relevant stakeholders", - "values": [ - "Withdrawn" - ] - }, - { - "text": "and intergovernmental organizations and international humanitarian organizations to disseminate it as widely as possible and to report on this matter to the Human Rights Council at its thirtyseventh session Decides to continue the consideration of the human rights violations in the occupied Syrian Golan at its thirtyseventh session. th meeting March Adopted by a recorded vote of to with abstentions. The voting was as follows In favour Bangladesh Bolivia Plurinational State of Brazil Burundi China C\u00f4te dIvoire Cuba Ecuador Egypt El Salvador Ethiopia Ghana India Indonesia Iraq Kenya Kyrgyzstan Mongolia Nigeria Philippines Qatar Saudi Arabia South Africa Tunisia United Arab Emirates Venezuela Bolivarian Republic of Against Togo United Kingdom of Great Britain and Northern Ireland United States of America Abstaining Albania Belgium Botswana Congo Croatia Georgia Germany Hungary Japan Latvia Netherlands Panama Paraguay Portugal Republic of Korea Rwanda Slovenia Switzerland AHRC.", - "values": [ - "Adopted by vote" - ] - }, - { - "text": "international organizations and conventions to participate in the seminar d To submit to the Human Rights Council at its fortythird session a summary report on the abovementioned seminar including any recommendations stemming therefrom for consideration of further followup action Stresses the need for enhanced cooperation among States the United Nations Environment Programme the United Nations Development Programme the Food and Agriculture Organization of the United Nations the Office of the High Commissioner and other relevant international and regional organizations agencies conventions and programmes in accordance with their respective mandates including by regularly exchanging knowledge and ideas and building synergies in the protection of human rights and the protection of the environment bearing in mind an integrated and multisectoral approach Decides to remain seized of the matter in accordance with its annual programme of work. rd meeting March Adopted without a vote", - "values": [ - "Adopted without a vote" - ] - }, - { - "text": "in the preparatory process including the negotiation leading to the adoption of the global compact for safe orderly and regular migration the inputs produced by the Human Rights Council and its bodies and mechanisms Requests the Special Rapporteur on the human rights of migrants to continue to report on solutions and to contribute to and participate in key discussions relating to the promotion and protection of the human rights of migrants including with respect to the large movement of migrants by identifying best practices and concrete areas and means for international cooperation in order to enhance the protection of the human rights of migrants and to continue to pay attention to the topic of the universal enjoyment of human rights for all migrants Encourages States and regional and international organizations to enhance their cooperation with the Special Rapporteur on the human rights of migrants Decides to remain seized of the matter. th meeting June Adopted without a vote", - "values": [ - "Adopted without a vote" - ] - }, - { - "text": "AHRCL United Nations General Assembly Distr Limited September Original English Human Rights Council Thirtysixth session September Agenda item Human rights bodies and mechanisms China Egypt India Russian Federation Venezuela Bolivarian Republic of amendment to draft resolution AHRCLRev Cooperation with the United Nations its representatives and mechanisms in the field of human rights After the fourteenth preambular paragraph insert a new paragraph reading Conscious that on a number of occasions some allegations of reprisals may be fabricated with a view to achieving political purposes State not a member of the Human Rights Council. GEE", - "values": [ - "Rejected by vote" - ] - }, - { - "text": "Council Thirtyfirst session Agenda item Promotion and protection of all human rights civil political economic social and cultural rights including the right to development China Cuba Egypt Pakistan Russian Federation amendment to draft resolution AHRCL Protecting human rights defenders addressing economic social and cultural rights The sixteenth preambular paragraph should read Mindful that domestic law and administrative provisions and their application should not hinder but enable the work of individuals groups and organs of society engaged in the promotion and protection of human rights including by avoiding any criminalization or stigmatization of their lawful activities and important role and that of the communities of which they are a part or on whose behalf they work as well as by avoiding impediments obstructions restrictions or selective enforcement thereof contrary to States obligations under international human rights law Nonmember State of the Human Rights Council. GEE", - "values": [ - "Rejected by vote" - ] - }, - { - "text": "AHRCL United Nations General Assembly Distr Limited June Original English Human Rights Council Thirtyfifth session June Agenda item Promotion and protection of all human rights civil political economic social and cultural rights including the right to development Albania Australia Austria Belgium Bulgaria Croatia Cyprus Czechia Denmark Estonia Finland France Germany Greece Hungary Ireland Italy Latvia Lithuania Luxembourg Malta Netherlands Norway Poland Portugal Romania Slovakia Slovenia Spain Sweden Switzerland United Kingdom of Great Britain and Northern Ireland United States of America Uruguay amendment to draft resolution AHRCL Protection of the family role of the family in supporting the protection and promotion of human rights of older persons After paragraph insert a new paragraph reading bis. Recognizes that in different cultural political and social systems various forms of the family exist State not a member of the Human Rights Council. GEE", - "values": [ - "Rejected by vote" - ] - }, - { - "text": "in of the Convention and national human rights institutions to participate actively in the debates referred to in paragraphs and above and in regular and special sessions of the Council and its working groups Requests the SecretaryGeneral the High Commissioner and United Nations offices to continue the progressive implementation of standards and guidelines for the accessibility of facilities and services of the United Nations system taking into account relevant provisions of the Convention and underlines that the Human Rights Council including its Internet resources should be fully accessible to persons with disabilities Requests the SecretaryGeneral to continue to ensure that the work of the Office of the High Commissioner with respect to the rights of persons with disabilities and the Committee on the Rights of Persons with Disabilities are adequately resourced for the fulfilment of their tasks Decides to remain seized of the matter. th meeting March Adopted without a vote", - "values": [ - "Adopted without a vote" - ] - }, - { - "text": "AHRCL United Nations General Assembly Distr Limited March Original English Human Rights Council Thirtyfirst session Agenda item Promotion and protection of all human rights civil political economic social and cultural rights including the right to development China Cuba Egypt Pakistan Russian Federation amendment to draft resolution AHRCL Protecting human rights defenders addressing economic social and cultural rights Paragraph should read Underlines the important role of individuals groups and organs of society engaged in the promotion and protection of human rights in mediation efforts where relevant and in supporting victims in accessing effective remedies for violations and abuses of their economic social and cultural rights including for members of impoverished communities groups and communities vulnerable to discrimination and those belonging to national or ethnic religious and linguistic minorities and indigenous peoples Nonmember State of the Human Rights Council. GEE", - "values": [ - "Rejected by vote" - ] - }, - { - "text": "institutions nongovernmental organizations and the private sector to cooperate fully with the Independent Expert in the discharge of the mandate Requests the Independent Expert to submit a report on the implementation of the present resolution to the Human Rights Council at its fortythird session Decides to continue its consideration of this matter under the same agenda item in accordance with its programme of work. nd meeting March Adopted by a recorded vote of to with abstentions. The voting was as follows In favour Angola Bahrain Bangladesh Burkina Faso Cameroon Chile China Cuba Democratic Republic of the Congo Egypt Eritrea Fiji India Iraq Nepal Nigeria Pakistan Philippines Qatar Rwanda Saudi Arabia Senegal Somalia South Africa Togo Tunisia Uruguay Against Australia Austria Brazil Bulgaria Croatia Czechia Denmark Hungary Italy Japan Slovakia Spain Ukraine United Kingdom of Great Britain and Northern Ireland Abstaining Afghanistan Argentina Bahamas Iceland Mexico Peru", - "values": [ - "Adopted by vote" - ] - }, - { - "text": "perpetrators are held accountable Requests the United Nations High Commissioner for Human Rights to prepare a comprehensive written report on the human rights situation in Nicaragua and to present it to the Human Rights Council at its fortysecond session to be followed by an enhanced interactive dialogue and to present an oral update on the human rights situation to the Council at its fortyfirst and fortythird sessions. nd meeting March Adopted by a recorded vote of to with abstentions. The voting was as follows In favour Afghanistan Argentina Australia Austria Bahamas Brazil Bulgaria Chile Croatia Czechia Denmark Fiji Hungary Iceland Italy Japan Mexico Peru Slovakia Spain Ukraine United Kingdom of Great Britain and Northern Ireland Uruguay Against Cuba Egypt Eritrea Abstaining Angola Bahrain Bangladesh Burkina Faso Cameroon China Democratic Republic of the Congo India Iraq Nepal Nigeria Pakistan Philippines Qatar Rwanda Saudi Arabia Senegal Somalia South Africa Togo Tunisia", - "values": [ - "Adopted by vote" - ] - }, - { - "text": "its and to the General Assembly at its seventyfourth session Calls upon the Government of the Islamic Republic of Iran to cooperate fully with the Special Rapporteur and to permit access to visit the country and to provide all information necessary to allow the fulfilment of the mandate AHRC. GEE AHRCRES Requests the SecretaryGeneral to provide the Special Rapporteur with the resources necessary to fulfil the mandate. rd meeting March Adopted by a recorded vote of to with abstentions. The voting was as follows In favour Argentina Australia Austria Bahamas Bahrain Bulgaria Chile Croatia Czechia Denmark Fiji Hungary Iceland Italy Japan Mexico Peru Saudi Arabia Slovakia Spain Ukraine United Kingdom of Great Britain and Northern Ireland Against Afghanistan China Cuba Eritrea India Iraq Pakistan Abstaining Angola Bangladesh Brazil Burkina Faso Cameroon Democratic Republic of the Congo Egypt Nepal Nigeria Philippines Qatar Rwanda Senegal Somalia South Africa Togo Tunisia Uruguay", - "values": [ - "Adopted by vote" - ] - }, - { - "text": "AHRCL United Nations General Assembly Distr Limited March Original English Human Rights Council Thirtyfourth session February March Agenda item Promotion and protection of all human rights civil political economic social and cultural rights including the right to development Russian Federation amendment to draft resolution AHRCL Mandate of the Special Rapporteur on the situation of human rights defenders Seventh tenth twelfth operative paragraph and thirteenth preambular paragraphs and For human rights defenders read those engaged in the promotion and protection of universally recognized human rights and fundamental freedoms State not a member of the Human Rights Council. GEE", - "values": [ - "Rejected by vote" - ] - }, - { - "text": "b resolutions and other human rights instruments including associated routine reporting c Recommendations accepted during the universal periodic review d Other human rights commitments policies and legislation to promote the empowerment of women young people and marginalized groups freedom of expression and assembly the protection of the media access to justice for women and increasing the capacity of ministries and institutions responsible for the administration of justice and the protection of human rights Also requests the Independent Expert to report to the Human Rights Council at its thirtyninth session and to the General Assembly at its seventythird session AHRCRES Requests the Office of the High Commissioner and other relevant United Nations agencies to provide the Independent Expert with all the human technical and financial assistance necessary to carry out fully his mandate Decides to remain actively seized of the matter. nd meeting September Adopted without a vote", - "values": [ - "Adopted without a vote" - ] - }, - { - "text": "urges the Government of South Sudan to appoint a special representative on sexual and genderbased violence as previously called for by the Human Rights Council Requests the Office of the High Commissioner to provide the full administrative technical and logistical support necessary to enable the Commission on Human Rights in South Sudan to carry out its mandate Requests the Commission on Human Rights in South Sudan to present an oral update to the Human Rights Council at its thirtyninth session in an interactive dialogue and to present a comprehensive written report in an interactive dialogue to the Council at its fortieth session Also requests the Commission on Human Rights in South Sudan to submit its report and recommendations to the Human Rights Council and then to share them with the African Union and all relevant organs of the United Nations including the United Nations Mission in South Sudan Decides to remain seized of the matter. th meeting March Adopted without a vote", - "values": [ - "Adopted without a vote" - ] - }, - { - "text": "taken appropriately at the national or international levels to ensure justice for victims and accountability for perpetrators Requests the United Nations High Commissioner for Human Rights to report on the implementation of the present resolution to the Human Rights Council at its thirtyseventh session Decides to remain seized of the matter. th meeting March Adopted by a recorded vote of to with abstentions. The voting was as follows In favour Bangladesh Belgium Bolivia Plurinational State of Botswana Brazil Burundi China Congo C\u00f4te dIvoire Cuba Ecuador Egypt El Salvador Ghana Indonesia Iraq Kyrgyzstan Mongolia Nigeria Philippines Portugal Qatar Republic of Korea Saudi Arabia Slovenia South Africa Switzerland Tunisia United Arab Emirates Venezuela Bolivarian Republic of Against Togo United States of America Abstaining Albania Croatia Ethiopia Georgia Germany Hungary India Japan Kenya Latvia Netherlands Panama Paraguay Rwanda United Kingdom of Great Britain and Northern Ireland", - "values": [ - "Adopted by vote" - ] - }, - { - "text": "AHRCL United Nations General Assembly Distr Limited March Original English Human Rights Council Thirtyfirst session Agenda item Promotion and protection of all human rights civil political economic social and cultural rights including the right to development China Cuba Egypt Pakistan Russian Federation amendment to draft resolution AHRCL Protecting human rights defenders addressing economic social and cultural rights The twentieth preambular paragraph should read Underscoring the importance of access to information as appropriate and of the effective participation of individuals groups and organs of society engaged in the promotion and protection of human rights in consultations decisionmaking processes and where relevant implementation efforts related to legislation policies programmes and projects with a view to mainstreaming promoting and protecting human rights Nonmember State of the Human Rights Council. GEE", - "values": [ - "Rejected by vote" - ] - }, - { - "text": "and cultural rights including the right to development China Cuba Egypt Iran Islamic Republic of Pakistan Russian Federation amendment to draft resolution AHRCL Protecting human rights defenders addressing economic social and cultural rights After paragraph insert a new paragraph reading bis. Stresses that in the exercise of the rights and freedoms referred to in the Declaration on the Right and Responsibility of Individuals Groups and Organs of Society to Promote and Protect Universally Recognized Human Rights and Fundamental Freedoms everyone acting individually and in association with others shall be subject only to such limitations as are in accordance with applicable international obligations and are determined by law solely for the purpose of securing due recognition and respect for the rights and freedoms of others and of meeting the just requirements of morality public order and general welfare in a democratic society Nonmember State of the Human Rights Council. GEE", - "values": [ - "Rejected by vote" - ] - }, - { - "text": "by of his and also urges the Government to extend full cooperation to thematic special procedures Requests the Office of the United Nations High Commissioner for Human Rights to provide the Special Rapporteur with the assistance and resources necessary to allow the fulfilment of his mandate and requests the latter to continue to monitor developments and make recommendations. th meeting July Adopted by a recorded vote of to with abstentions. The voting was as follows In favour Australia Belgium Brazil Chile C\u00f4te dIvoire Croatia Germany Hungary Japan Mexico Panama Peru Republic of Korea Slovakia Slovenia Spain Switzerland Ukraine United Kingdom of Great Britain and Northern Ireland Against Burundi China Cuba Egypt United Arab Emirates Venezuela Bolivarian Republic of Abstaining Afghanistan Angola Democratic Republic of the Congo Ecuador Ethiopia Georgia Iraq Kenya Kyrgyzstan Mongolia Nepal Nigeria Pakistan Philippines Qatar Rwanda Saudi Arabia Senegal South Africa Togo Tunisia", - "values": [ - "Adopted by vote" - ] - }, - { - "text": "AHRCL United Nations General Assembly Distr Limited September Original English Human Rights Council Thirtysixth session September Agenda item Promotion and protection of all human rights civil political economic social and cultural rights including the right to development Russian Federation amendment to draft resolution AHRCL The question of the death penalty After paragraph insert a new paragraph reading bis. Also urges States to abandon the practice of executing the death penalty by means of experimental medical supplies and chemicals or untested techniques that can lead to torture or other cruel inhuman or degrading treatment State not a member of the Human Rights Council. GEE", - "values": [ - "Rejected by vote" - ] - }, - { - "text": "within the framework of the preparations for the global compact for safe orderly and regular migration and in accordance with General Assembly resolutions and of April to provide inputs submitted to the Human Rights Council by the Office of the High Commissioner for the forthcoming stocktaking meeting and to engage with Members States and the Special Representative of the SecretaryGeneral for International Migration to help to identify through a human rightsbased approach concrete measures and best practices to improve the human rights situation of unaccompanied migrant children and adolescents Invites the special procedures of the Human Rights Council in accordance with their mandates to continue to give due consideration to the situation of unaccompanied migrant children and adolescents and the impact of this issue on the full enjoyment of their human rights and to continue to report thereon Decides to remain seized of the matter. th meeting September Adopted without a vote", - "values": [ - "Adopted without a vote" - ] - }, - { - "text": "a to the AntiDiscrimination Unit within her Office and provide it with all the necessary and additional resources to ensure its effectiveness particularly in view of the current challenges of racial and religious discrimination so that the Unit ensures that the High Commissioner makes a positive contribution and plays a leadership role in the global efforts to combat all the resurgent scourges of racism k To retain this priority issue on its programme of work and to review progress at its fourth session. In favour Algeria Argentina Azerbaijan Bahrain Bangladesh Brazil Cameroon China Cuba Ecuador Gabon Ghana Guatemala India Indonesia Jordan Malaysia Mali Mauritius Mexico Morocco Nigeria Pakistan Peru Philippines Russian Federation Saudi Arabia Senegal South Africa Sri Lanka Tunisia Uruguay Zambia. Against Canada Czech Republic Finland France Germany Japan Netherlands Poland Republic of Korea Romania Switzerland United Kingdom of Great Britain and Northern Ireland. Abstaining Ukraine", - "values": [ - "Withdrawn" - ] - }, - { - "text": "continue its consideration of the issue of the negative impact of unilateral coercive measures on human rights in accordance with its programme of work. th meeting March AHRC. AHRC. AHRCRES Adopted by a recorded vote of to with no abstentions The voting was as follows In favour Bangladesh Bolivia Plurinational State of Botswana Brazil Burundi China Congo C\u00f4te dIvoire Cuba Ecuador Egypt El Salvador Ethiopia Ghana India Indonesia Iraq Kenya Kyrgyzstan Mongolia Nigeria Panama Paraguay Philippines Qatar Rwanda Saudi Arabia South Africa Togo Tunisia United Arab Emirates Venezuela Bolivarian State of Against Albania Belgium Croatia Georgia Hungary Japan Latvia Netherlands Portugal Republic of Korea Slovenia Switzerland United Kingdom of Great Britain and Northern Ireland United States of America The representative of Germany subsequently stated that the delegations vote had not been registered for technical reasons and that Germany had intended to vote against the draft resolution.", - "values": [ - "Adopted by vote" - ] - }, - { - "text": "to the truth and to ensure that the perpetrators of deplorable crimes are all accountable to the judicial authorities of the Democratic Republic of the Congo Also requests the High Commissioner to present an oral update and to invite the team to participate in an enhanced interactive dialogue at its thirtyseventh session and requests the High Commissioner to present a comprehensive report with the teams findings and to invite the team to participate in an interactive dialogue at its thirtyeighth session Requests the Office of the High Commissioner to provide the necessary technical assistance to the Government of the Democratic Republic of the Congo regarding its investigations into the allegations of human rights violations and abuses committed in the Kasai regions Requests that the Office of the High Commissioner receive all necessary and appropriate resources for the conduct of this mandate Decides to remain seized of the situation. th meeting June Adopted without a vote", - "values": [ - "Adopted without a vote" - ] - }, - { - "text": "practices Urges all States to adopt measures as required to promote the realization of the right to selfdetermination of the Palestinian people and to render assistance to the United Nations in carrying out the responsibilities entrusted to it by the Charter regarding the implementation of this right Decides to remain seized of the matter. th meeting March Adopted by a recorded vote of to with abstentions. The voting was as follows In favour Albania Bangladesh Belgium Bolivia Plurinational State of Botswana Brazil Burundi China Congo C\u00f4te dIvoire Croatia Cuba Ecuador Egypt El Salvador Ethiopia Georgia Germany Ghana Hungary India Indonesia Iraq Japan Kenya Kyrgyzstan Latvia Mongolia Netherlands Nigeria Philippines Portugal Qatar Republic of Korea Rwanda Saudi Arabia Slovenia South Africa Switzerland Tunisia United Arab Emirates United Kingdom of Great Britain and Northern Ireland Venezuela Bolivarian Republic of Against Togo United States of America Abstaining Panama Paraguay", - "values": [ - "Adopted by vote" - ] - }, - { - "text": "to the present resolution at its thirtyfifth session and to present a written report on developments relating to and the implementation of the present resolution at its thirtysixth session. th meeting March Adopted by a recorded vote of to with abstentions. The voting was as follows In favour Albania Belgium Botswana Croatia Georgia Germany Ghana Hungary Japan Latvia Netherlands Panama Paraguay Portugal Slovenia Togo United Kingdom of Great Britain and Northern Ireland United States of America Against Bolivia Plurinational State of Burundi China Cuba Venezuela Bolivarian Republic of Abstaining Bangladesh Brazil Congo C\u00f4te dIvoire Ecuador Egypt El Salvador Ethiopia India Indonesia Iraq Kenya Kyrgyzstan Mongolia Nigeria The representative of Paraguay subsequently stated that there had been an error in the delegations vote and that it had intended to abstain. AHRCRES Philippines Qatar Republic of Korea Rwanda Saudi Arabia South Africa Switzerland Tunisia United Arab Emirates", - "values": [ - "Adopted by vote" - ] - }, - { - "text": "summarizing the contributions received from States and also takes note of the conclusions of the report based on those contributions Stresses the urgent need to implement all parts of the action plan outlined in paragraphs and above with equal focus and attention in order to address religious intolerance Requests the High Commissioner to prepare and submit to the Human Rights Council at its fortieth session a comprehensive followup report with elaborated conclusions based upon information provided by States on the efforts and measures taken for the implementation of the action plan outlined in paragraphs and above and views on potential followup measures for further improvement of the implementation of that plan Calls for strengthened international efforts to foster a global dialogue for the promotion of a culture of tolerance and peace at all levels based on respect for human rights and diversity of religions and beliefs. th meeting March Adopted without a vote AHRC.", - "values": [ - "Adopted without a vote" - ] - }, - { - "text": "to the enjoyment of cultural rights by persons with disabilities Also requests the Special Rapporteur to continue to work within her mandate with relevant stakeholders towards the comprehensive promotion and protection of cultural rights and to report regularly to the Human Rights Council and the General Assembly in accordance with their respective programmes of work AHRC. AHRCRES Further requests the Special Rapporteur within the scope of her mandate to participate in relevant international forums relating to the implementation of the Agenda for Sustainable Development and to contribute to its implementation including by providing advice to States international organizations civil society and other stakeholders on the effective respect protection and fulfilment of cultural rights in the implementation of the Agenda Decides to continue its consideration of this matter under the same agenda item in accordance with its programme of work. nd meeting March Adopted without a vote", - "values": [ - "Adopted without a vote" - ] - }, - { - "text": "AHRCL United Nations General Assembly Distr Limited March Original English Human Rights Council Thirtyfirst session Agenda item Promotion and protection of all human rights civil political economic social and cultural rights including the right to development China Cuba Egypt Pakistan Russian Federation amendment to draft resolution AHRCL Protecting human rights defenders addressing economic social and cultural rights Paragraph should read Continues to express particular concern about discrimination and violence faced by women of all ages engaged in the promotion and protection of human rights and calls upon all States to give effect to the principles and objectives established by the General Assembly in its resolution by integrating a gender perspective into the efforts to create a safe and enabling environment for the defence of human rights including economic social and cultural rights Nonmember State of the Human Rights Council. GEE", - "values": [ - "Rejected by vote" - ] - }, - { - "text": "of the Agenda Encourages the Special Rapporteur in accordance with his mandate and with support and assistance from the Office of the United Nations High Commissioner for Human Rights to continue to provide Governments with appropriate opportunities to respond to allegations that are transmitted to him and are referred to in his report and to have their observations reflected in his report to the Human Rights Council Reiterates its appeal to States and other stakeholders to facilitate the work of the Special Rapporteur by providing him with information and inviting him to undertake country visits Reiterates its appeal to the SecretaryGeneral and to the United Nations High Commissioner for Human Rights to provide the Special Rapporteur with all necessary assistance for the successful fulfilment of his mandate Decides to continue its consideration of this matter under the same agenda item in accordance with its programme of work. th meeting September Adopted without a vote GE", - "values": [ - "Adopted without a vote" - ] - }, - { - "text": "in the United Nations Educational Scientific and Cultural Organization. International regional national and local organizations and civil society are encouraged to support and assist in the implementation of the present Declaration. Article International and national institutions of education for peace shall be promoted in order to strengthen among all human beings the spirit of tolerance dialogue cooperation and solidarity. To this end the University for Peace should contribute to the great universal task of educating for peace by engaging in teaching research postgraduate training and dissemination of knowledge. Article Nothing in the present Declaration shall be construed as being contrary to the purposes and principles of the United Nations. The provisions included in the present Declaration are to be understood in accordance with the Charter of the United Nations the Universal Declaration of Human Rights and relevant international and regional instruments ratified by States.", - "values": [ - "Adopted by vote" - ] - }, - { - "text": "and enabling more effective work in the future Appeals to all States international agencies and other donors to step up support for victims including support for refugees displaced persons and host communities possibly through the establishment of a trust fund to address their needs including the needs of those who have been victims of sexual violence as well as child victims and witnesses. AHRCRES th meeting September Adopted by a recorded vote of to with abstentions. The voting was as follows In favour Afghanistan Australia Belgium Brazil Chile C\u00f4te dIvoire Croatia Democratic Republic of the Congo Ecuador Egypt Georgia Germany Hungary Iceland Iraq Kyrgyzstan Mexico Nigeria Pakistan Panama Peru Qatar Republic of Korea Rwanda Saudi Arabia Senegal Slovakia Slovenia Spain Switzerland Togo Tunisia Ukraine United Arab Emirates United Kingdom of Great Britain and Northern Ireland Against Burundi China Philippines Abstaining Angola Ethiopia Japan Kenya Mongolia Nepal South Africa", - "values": [ - "Adopted by vote" - ] - }, - { - "text": "civil political economic social and cultural rights including the right to development China Cuba Egypt Iran Islamic Republic of Pakistan Russian Federation amendment to draft resolution AHRCL Protecting human rights defenders addressing economic social and cultural rights The thirteenth preambular paragraph should read Recognizing the important role of individuals groups and organs of society engaged in the promotion and protection of human rights in promoting and advocating the realization of all economic social and cultural rights including by engaging with Governments and contributing to the efforts in the implementation of the obligations of States in this regard and welcoming the steps taken by some States towards adopting national policies and legislation that create favourable working conditions and an enabling environment for those individuals groups and organs of society who are engaged in promotion and protection of human Nonmember State of the Human Rights Council. GEE", - "values": [ - "Rejected by vote" - ] - }, - { - "text": "regard to the implementation of the right to development General Assembly resolution annex II. General Assembly resolution annex. See FCCCCPAdd decision CP annex. AHRCRES Decides to review the progress of the implementation of the present resolution as a matter of priority at its future sessions. th meeting September Adopted by a recorded vote of to with abstentions. The voting was as follows In favour Algeria Bangladesh Bolivia Plurinational State of Botswana Burundi China Congo C\u00f4te dIvoire Cuba Ecuador El Salvador Ethiopia Ghana India Indonesia Kenya Kyrgyzstan Maldives Mexico Mongolia Morocco Namibia Nigeria Panama Paraguay Philippines Qatar Russian Federation Saudi Arabia South Africa Togo United Arab Emirates Venezuela Bolivarian Republic of Viet Nam Against France United Kingdom of Great Britain and Northern Ireland Abstaining Albania Belgium Georgia Germany Latvia Netherlands Portugal Republic of Korea Slovenia Switzerland the former Yugoslav Republic of Macedonia", - "values": [ - "Adopted by vote" - ] - }, - { - "text": "and agencies funds and programmes intergovernmental organizations regional organizations and mechanisms in the field of human rights national human rights institutions and other relevant national bodies academics and experts and nongovernmental organizations in consultative status with the Economic and Social Council the session shall also be open to other nongovernmental organizations whose aims and purposes are in conformity with the spirit purposes and principles of the Charter of the United Nations and that respect the sovereignty and territorial integrity of Member States based on arrangements including Economic and Social Council resolution of July and practices observed by the Human Rights Council through an open and transparent accreditation procedure in accordance with the Rules of Procedure of the Council which will provide for timely information on the participation of and consultations with the States concerned State not a member of the Human Rights Council. GEE", - "values": [ - "Rejected by vote" - ] - }, - { - "text": "Nations High Commissioner for Human Rights to provide the Special Rapporteur with all the resources and assistance necessary for the effective fulfilment of the mandate AHRCRES Decides to continue its consideration of this matter under the same agenda item and in accordance with its programme of work. th meeting September Adopted by a recorded vote of to with abstentions. The voting was as follows In favour Albania Algeria Bangladesh Belgium Bolivia Plurinational State of Botswana Burundi China Congo C\u00f4te dIvoire Cuba Ecuador Ethiopia France Georgia Germany Ghana India Indonesia Latvia Maldives Mexico Mongolia Morocco Namibia Netherlands Panama Paraguay Philippines Portugal Qatar Republic of Korea Saudi Arabia Slovenia South Africa Switzerland the former Yugoslav Republic of Macedonia Togo United Arab Emirates United Kingdom of Great Britain and Northern Ireland Venezuela Bolivarian Republic of Viet Nam Against Kyrgyzstan Abstaining El Salvador Kenya Nigeria Russian Federation", - "values": [ - "Adopted by vote" - ] - }, - { - "text": "including where applicable those relating to the Sustainable Development Goals income security the promotion of active and healthy ageing the use of assistive technology access to information and lifelong learning combating all forms of AHRC and Adds. AHRCRES discrimination against older persons paying particular attention to older women and supporting the full integration of older persons in society and access to care health and support services for older persons in their communities Calls upon States international human rights bodies and mechanisms relevant international organizations national human rights institutions and civil society to share best practices and to make use of the ideas and issues raised in the panel discussion to enhance the efficiency effectiveness and policy coherence of technical cooperation and capacitybuilding efforts in the promotion and protection of the human rights including the rights of older persons. st meeting September Adopted without a vote", - "values": [ - "Adopted without a vote" - ] - }, - { - "text": "of their efforts to eliminate violence and discrimination against women and girls b To enhance for the benefit of women and girls international cooperation in support of national efforts to create an enabling environment to reduce the digital and information divides between developed and developing countries and to promote develop and enhance access to digital technologies Welcomes the panel discussion on violence against women and girls held during the annual fullday discussion on womens human rights at the thirtyeighth session of the Human Rights Council and requests the Office of the United Nations High Commissioner for Human Rights to present a summary report on the discussion to the Council at its fortieth session Decides to continue its consideration of the issue of the elimination of all forms of violence against women and girls its causes and consequences as a matter of high priority in conformity with its annual programme of work. th meeting July Adopted without a vote", - "values": [ - "Adopted without a vote" - ] - }, - { - "text": "to prepare a comprehensive report on the situation of human rights in the Democratic Republic of the Congo including in the context of the electoral process and to present it to the Human Rights Council at its thirtyninth session in an enhanced interactive dialogue Decides to remain seized of the situation until its thirtyninth session. nd meeting September Adopted by a recorded vote of to with abstention. The voting was as follows In favour Albania Bangladesh Belgium Bolivia Plurinational State of Botswana Brazil Burundi China Congo C\u00f4te dIvoire Croatia Cuba Ecuador Egypt El Salvador Ethiopia Georgia Germany Ghana Hungary India Indonesia Iraq Japan Kenya Kyrgyzstan Latvia Mongolia Netherlands Nigeria Panama Paraguay Philippines Portugal Qatar Rwanda Saudi Arabia Slovenia South Africa Switzerland Togo Tunisia United Arab Emirates United Kingdom of Great Britain and Northern Ireland Venezuela Bolivarian Republic of Against United States of America Abstaining Republic of Korea", - "values": [ - "Adopted by vote" - ] - }, - { - "text": "AHRCL United Nations General Assembly Distr Limited September Original English Human Rights Council Thirtysixth session September Agenda item Promotion and protection of all human rights civil political economic social and cultural rights including the right to development Bangladesh China Egypt Nigeria Saudi Arabia United Arab Emirates amendment to draft resolution AHRCL The question of the death penalty Before paragraph insert a new paragraph reading Recognizes that the application of a moratorium on the death penalty abolishing the death penalty or retaining it should be a decision based on domestic debates at the national level GEE", - "values": [ - "Rejected by vote" - ] - }, - { - "text": "to the work of the Working Group and to cooperate with the High Commissioner and the Special Rapporteur in the fulfilment of their mandates with regard to the implementation of the right to development AHRC. AHRCRES Decides to review the progress of the implementation of the present resolution as a matter of priority at its future sessions. th meeting September Adopted by a recorded vote of to with abstentions. The voting was as follows In favour Bangladesh Bolivia Plurinational State of Botswana Brazil Burundi China Congo C\u00f4te dIvoire Cuba Ecuador Egypt El Salvador Ethiopia Ghana India Indonesia Iraq Kenya Kyrgyzstan Mongolia Nigeria Paraguay Philippines Qatar Rwanda Saudi Arabia South Africa Togo Tunisia United Arab Emirates Venezuela Bolivarian Republic of Against Belgium Croatia Georgia Germany Hungary Japan Latvia Netherlands Switzerland United Kingdom of Great Britain and Northern Ireland United States of America Abstaining Albania Portugal Republic of Korea Slovenia", - "values": [ - "Adopted by vote" - ] - }, - { - "text": "AHRCL United Nations General Assembly Distr Limited March Original English Human Rights Council Thirtyfirst session Agenda item Promotion and protection of all human rights civil political economic social and cultural rights including the right to development China Cuba Egypt Pakistan Russian Federation amendment to draft resolution AHRCL Protecting human rights defenders addressing economic social and cultural rights Paragraph should read Recognizes the importance of national protection programmes for individuals groups and organs of society engaged in the promotion and protection of human rights and encourages States to consider as appropriate enacting relevant legislative and policy frameworks to this end in consultation with relevant stakeholders Nonmember State of the Human Rights Council. GEE", - "values": [ - "Rejected by vote" - ] - }, - { - "text": "issue of discrimination against women in law and in practice in its task to supply all necessary available information requested by it and to give serious consideration to responding favourably to its requests to visit their country to enable it to fulfil its mandate effectively AHRC. AHRCRES Invites relevant United Nations agencies funds and programmes in particular the United Nations Entity for Gender Equality and the Empowerment of Women the treaty bodies and other special procedures within their respective mandates and civil society actors including nongovernmental organizations as well as the private sector to cooperate fully with the Working Group in the fulfilment of its mandate and requests the Working Group to continue to engage with the Commission on the Status of Women including by participating in its work and formally reporting Decides to continue its consideration of this issue in conformity with its annual programme of work. th meeting June Adopted without a vote", - "values": [ - "Adopted without a vote" - ] - }, - { - "text": "necessary for it to be able to sustainably fulfil its mandate effectively in particular by putting adequate human and material resources at its disposal including with regard to field missions Decides to continue its consideration of the question of arbitrary detention in conformity with its programme of work. nd meeting September Adopted by a recorded vote of to with abstention. The voting was as follows In favour Albania Algeria Bangladesh Belgium Bolivia Plurinational State of Botswana Burundi China Congo C\u00f4te dIvoire Cuba Ecuador El Salvador Ethiopia France Georgia Germany Ghana India Indonesia Kenya Latvia Maldives Mexico Mongolia Morocco Namibia Netherlands Nigeria Panama Paraguay Philippines Portugal Qatar Republic of Korea Russian Federation Saudi Arabia Slovenia South Africa Switzerland the former Yugoslav Republic of Macedonia Togo United Arab Emirates United Kingdom of Great Britain and Northern Ireland Venezuela Bolivarian Republic of Viet Nam Abstaining Kyrgyzstan", - "values": [ - "Adopted by vote" - ] - }, - { - "text": "AHRCL United Nations General Assembly Distr Limited September Original English Human Rights Council Thirtysixth session September Agenda item Human rights bodies and mechanisms China India Russian Federation Venezuela Bolivarian Republic of amendment to draft resolution AHRCLRev Cooperation with the United Nations its representatives and mechanisms in the field of human rights The eighth preambular paragraph should read Noting the work done by the special procedures as well as the increased attention given by treaty bodies to preventing and addressing intimidation and reprisals against individuals and groups who cooperate with the United Nations State not a member of the Human Rights Council. GEE", - "values": [ - "Rejected by vote" - ] - }, - { - "text": "AHRCL United Nations General Assembly Distr Limited March Original English Human Rights Council Thirtyfourth session February March Agenda item Promotion and protection of all human rights civil political economic social and cultural rights including the right to development South Africa amendment to draft resolution AHRCL Effects of terrorism on the enjoyment of all human rights After paragraph insert a new paragraph reading bis. Reaffirms General Assembly resolutions of December of December and of December and to that end stresses that national liberation movements engaged in legitimate struggles for selfdetermination and statehood should not be associated with terrorism GEE", - "values": [ - "Rejected by vote" - ] - }, - { - "text": "to draft resolution AHRCL Accelerating efforts to eliminate violence against women engaging men and boys in preventing and responding to violence against all women and girls Paragraph should read Continues to express particular concern at the systemic and structural discrimination and violence faced by women engaged in the promotion and protection of universally recognized human rights and fundamental freedoms and calls upon States to fulfil their obligations to prevent violations and abuses against all those engaged in the promotion and protection of universally recognized human rights and fundamental freedoms including though practical steps to prevent threats harassment and violence and to combat impunity by ensuring that those responsible for violations or abuses including all types of genderbased violence and threats committed by States or nonState actors are promptly brought to justice though impartial investigations State not a member of the Human Rights Council. GEE", - "values": [ - "Rejected by vote" - ] - }, - { - "text": "to summarizing contributions received from States and also takes note of the conclusions of the report based on those contributions Stresses the urgent need to implement all parts of the action plan outlined in paragraphs and above with equal focus and attention in order to address religious intolerance Requests the High Commissioner to prepare and submit to the Human Rights Council at its fortythird session a comprehensive followup report with elaborated conclusions based upon information provided by States on the efforts and measures taken for the implementation of the action plan outlined in paragraphs and above and views on potential followup measures for further improvement of the implementation of that plan Calls for strengthened international efforts to foster a global dialogue for the promotion of a culture of tolerance and peace at all levels based on respect for human rights and diversity of religion and belief. th meeting March Adopted without a vote AHRC.", - "values": [ - "Adopted without a vote" - ] - }, - { - "text": "AHRCL United Nations General Assembly Distr Limited September Original English Human Rights Council Thirtythird session Agenda item Promotion and protection of all human rights civil political economic social and cultural rights including the right to development Cuba Russian Federation Venezuela Bolivarian Republic of amendment to draft resolution AHRCL Equal participation in political and public affairs Paragraph Paragraph should read Requests the Office of the High Commissioner to organize a oneday openended intergovernmental workshop to discuss the most effective ways to address existing gaps and challenges in the implementation of the international obligations of States with regard to the right to participate in public affairs as set out in article of the International Covenant on Civil and Political Rights and to prepare a summary report on the workshop and to submit it to the Human Rights Council at its thirtysixth session Paragraphs and Delete paragraphs and GEE", - "values": [ - "Rejected by vote" - ] - }, - { - "text": "Calls upon the Government of the Islamic Republic of Iran to cooperate fully with the Special Rapporteur and to permit access to visit the country and to provide all information necessary to allow the fulfilment of the mandate Requests the SecretaryGeneral to provide the Special Rapporteur with the resources necessary to fulfil the mandate. th meeting March Adopted by a recorded vote of to with abstentions. The voting was as follows In favour Albania Belgium Botswana Croatia El Salvador Germany Hungary Japan Latvia Netherlands Panama Paraguay Portugal Qatar Republic of Korea Rwanda Saudi Arabia Slovenia Switzerland United Arab Emirates United Kingdom of Great Britain and Northern Ireland United States of America Against Bangladesh Bolivia Plurinational State of Burundi China Cuba Egypt India Indonesia Iraq Kenya Kyrgyzstan Venezuela Bolivarian Republic of Abstaining Brazil Congo C\u00f4te dIvoire Ecuador Ethiopia Georgia Ghana Mongolia Nigeria Philippines South Africa Togo Tunisia", - "values": [ - "Adopted by vote" - ] - }, - { - "text": "AHRCL United Nations General Assembly Distr Limited September Original English Human Rights Council Thirtysixth session September Agenda item Human rights bodies and mechanisms China India Russian Federation Venezuela Bolivarian Republic of amendment to draft resolution AHRCLRev Cooperation with the United Nations its representatives and mechanisms in the field of human rights Delete paragraph and replace it by the paragraph below Encourages all States to participate in the relevant general debate on this issue and to contribute to its further consideration by the Human Rights Council. State not a member of the Human Rights Council. GEE", - "values": [ - "Rejected by vote" - ] - }, - { - "text": "to consider and implement the relevant recommendations contained therein Decides that the theme of the third session of the Forum to be held in will be Equal access to justice for all a necessary element of democracy rule of law and human rights protection Also decides that participation in the third session of the Forum will be in accordance with the modalities set out by the Human Rights Council in its resolutions and A. AHRC. AHRCRES Encourages States and all stakeholders to pay particular attention to ensuring the broadest possible and most equitable participation in the Forum with due regard to geographical and gender balance and considering the participation of youth Requests the SecretaryGeneral and the United Nations High Commissioner for Human Rights to continue to provide the Forum at its third session with all the necessary services and facilities including interpretation in all official languages of the United Nations. nd meeting March Adopted without a vote", - "values": [ - "Adopted without a vote" - ] - }, - { - "text": "Distr Limited March Original English Human Rights Council Thirtyfirst session Agenda item Promotion and protection of all human rights civil political economic social and cultural rights including the right to development China Cuba Egypt Pakistan Russian Federation amendment to draft resolution AHRCL Protecting human rights defenders addressing economic social and cultural rights Paragraph should read Encourages States to avail themselves of technical assistance where necessary and based on mutual consent in followup to the present and previous resolutions of the General Assembly and the Human Rights Council on the protection of human rights defenders such as through collaboration with national human rights institutions regional organizations the Office of the United Nations High Commissioner for Human Rights and relevant special procedures and other relevant international agencies and organizations as well as with other States Nonmember State of the Human Rights Council. GEE", - "values": [ - "Rejected by vote" - ] - }, - { - "text": "a report on the human rights situation in the Kasai region including the conclusions of the team of two international experts and to invite the team to participate in an interactive dialogue at its fortyfirst session Requests the Office of the United Nations High Commissioner for Human Rights to provide the Government of the Democratic Republic of the Congo with technical assistance including the necessary forensic expertise to support the Congolese judicial authorities in their investigations into allegations of human rights violations and abuses and crimes committed in the Kasai region to ensure that all perpetrators are brought to justice Calls upon the Government of the Democratic Republic of the Congo to cooperate with the team of two international experts Requests that the Office of the High Commissioner receive the necessary and appropriate resources for the performance of its mandate Decides to remain seized of this matter. th meeting July Adopted without a vote GE", - "values": [ - "Adopted without a vote" - ] - }, - { - "text": "international commission of inquiry on the protests in the Occupied Palestinian Territory to follow up on the implementation of the recommendations contained in the report of the commission of inquiry and to provide the Human Rights Council with an oral update at its fortysecond session and to present a report to the Council at its fortythird session to be followed by an interactive dialogue Decides to remain seized of the matter. rd meeting March Adopted by a recorded vote of to with abstentions. The voting was as follows In favour Afghanistan Angola Bahrain Bangladesh Burkina Faso Chile China Cuba Egypt Eritrea Iraq Mexico Nigeria Pakistan Peru Philippines Qatar Saudi Arabia Senegal Somalia South Africa Spain Tunisia Against Australia Austria Brazil Bulgaria Czechia Fiji Hungary Ukraine Abstaining Argentina Bahamas Croatia Democratic Republic of the Congo Denmark Iceland India Italy Japan Nepal Rwanda Slovakia Togo United Kingdom of Great Britain and Northern Ireland Uruguay", - "values": [ - "Adopted by vote" - ] - }, - { - "text": "implementation of the right to freedom of religion or belief Urges all Governments to cooperate fully with the Special Rapporteur and to respond favourably to his requests to visit their countries and to provide him with all the information necessary to enable him to fulfil the mandate even more effectively Requests the SecretaryGeneral and the United Nations High Commissioner for Human Rights to provide the Special Rapporteur with all the human technical and financial assistance necessary for the effective fulfilment of the mandate Requests the Special Rapporteur to report annually to the Human Rights Council and to the General Assembly in accordance with their respective programmes of work Decides to remain seized of this question under the same agenda item and to continue its consideration of measures to implement the Declaration on the Elimination of All Forms of Intolerance and of Discrimination Based on Religion or Belief. rd meeting March Adopted without a vote AHRC.", - "values": [ - "Adopted without a vote" - ] - }, - { - "text": "those living in vulnerable situations thus leaving no one behind Also recognizes the importance of strengthening capacities and building synergies at the national level for the implementation of the Sustainable Development Goals with due consideration given to human rights recommendations and standards Requests the Office of the High Commissioner to continue to compile assess and raise awareness of good practices challenges and lessons learned on the potential contribution of national human rights followup systems and processes including as appropriate of national mechanisms for reporting and followup to the implementation of human rights recommendations and where applicable to the achievement of the Sustainable Development Goals building on the activities undertaken in the field of national policies and human rights and on the enhancement of technical assistance and capacitybuilding programmes Decides to remain seized of the matter. nd meeting September Adopted without a vote", - "values": [ - "Adopted without a vote" - ] - }, - { - "text": "their countries and to ensure followup on her recommendations to provide her with all necessary information relating to the mandate and to react promptly to her communications and urgent appeals in order to enable her to fulfil the mandate effectively Encourages the United Nations including its specialized agencies and regional organizations national human rights institutions independent experts non AHRC. AHRCRES governmental organizations the private sector in particular social enterprises and other relevant stakeholders to cooperate to the fullest extent possible with the Independent Expert in the fulfilment of her mandate Requests the SecretaryGeneral and the United Nations High Commissioner for Human Rights to provide the Independent Expert with all the human and financial resources necessary for the effective fulfilment of her mandate Decides to continue consideration of this issue in accordance with its annual programme of work. rd meeting March Adopted without a vote", - "values": [ - "Adopted without a vote" - ] - }, - { - "text": "to invite to the consultation Member States and all other stakeholders including relevant United Nations bodies agencies funds and programmes the special procedures in particular the Special Rapporteur on the right of everyone to the enjoyment of the highest attainable standard of physical and mental health the treaty bodies regional human rights and health organizations and bodies national human rights institutions and civil society including persons living with presumed to be living with at risk of or affected by HIV Further requests the High Commissioner to prepare a report on the outcome of the consultation in which the High Commissioner identifies regional and subregional strategies and best practices to respond to the HIV epidemic and to respect protect and fulfil the rights of persons living with presumed to be living with at risk of or affected by HIV and to present the report to the Human Rights Council at its fortyfirst session. th meeting July Adopted without a vote", - "values": [ - "Adopted without a vote" - ] - }, - { - "text": "prepare from within existing resources and taking into account the report of the High Commissioner and future relevant consultations a plan of action for the fourth phase of the World Programme AHRC. AHRCRES in consultation with States relevant intergovernmental organizations in particular the United Nations Educational Scientific and Cultural Organization national human rights institutions and civil society including nongovernmental organizations and to submit the plan of action to the Human Rights Council for its consideration at its fortysecond session Recommends that the SecretaryGeneral ensure that an adequate component of United Nations assistance to be provided at the request of Member States to develop their national systems of promotion and protection of human rights is available to support human rights education and training Decides to consider this issue at its fortysecond session in accordance with its programme of work. th meeting September Adopted without a vote", - "values": [ - "Adopted without a vote" - ] - }, - { - "text": "of work and its resolutions of March and of March and to focus its next annual fullday meeting on the theme Empowering children with disabilities for the enjoyment of their human rights including through inclusive education and requests the High Commissioner to prepare a report on that theme in close cooperation with all relevant stakeholders including States the United Nations Childrens Fund other relevant United Nations bodies and agencies the Special Representative of the SecretaryGeneral on Violence against Children the Special Representative of the SecretaryGeneral for Children and Armed Conflict relevant special procedure mandate holders regional organizations and human rights bodies national human rights institutions and civil society including children themselves and to present it to the Human Rights Council at its fortieth session with a view to providing information for the annual day of discussion on the rights of the child. th meeting March Adopted without a vote", - "values": [ - "Adopted without a vote" - ] - }, - { - "text": "October and subsequent resolutions on women peace and security that meets the legitimate aspirations of the Syrian people for a civil democratic and pluralistic State in which all citizens receive equal protection regardless of gender religion or ethnicity and welcomes the inclusion of civil society in this process Decides to remain seized of the matter. th meeting September AHRCRES Adopted by a recorded vote of to with abstentions. The voting was as follows In favour Australia Belgium Brazil Chile C\u00f4te dIvoire Croatia Ecuador Georgia Germany Hungary Iceland Japan Mexico Panama Peru Qatar Republic of Korea Rwanda Saudi Arabia Slovakia Slovenia Spain Switzerland Togo Ukraine United Arab Emirates United Kingdom of Great Britain and Northern Ireland Against Burundi China Cuba Venezuela Bolivarian Republic of Abstaining Afghanistan Angola Democratic Republic of the Congo Egypt Ethiopia Iraq Kenya Kyrgyzstan Mongolia Nepal Nigeria Pakistan Philippines Senegal South Africa Tunisia", - "values": [ - "Adopted by vote" - ] - }, - { - "text": "AHRCL United Nations General Assembly Distr Limited September Original English Human Rights Council Thirtythird session Agenda item Promotion and protection of all human rights civil political economic social and cultural rights including the right to development China Cuba Venezuela Bolivarian Republic of amendment to draft resolution AHRCL Human rights and transitional justice The twentyfifth preambular paragraph should read Taking note of the frameworks of analysis developed by the Special Adviser on the Prevention of Genocide GEE", - "values": [ - "Rejected by vote" - ] - }, - { - "text": "resolution Calls upon States that have not provided substantive replies concerning claims of enforced disappearances in their countries to do so and to give due consideration to relevant recommendations concerning this issue made by the Working Group in its reports Encourages the Working Group in accordance with its working methods to continue to provide the States concerned with relevant and detailed information concerning allegations of enforced disappearances in order to facilitate a prompt and substantive response to these communications without prejudice to the need for the States concerned to cooperate with the Working Group Requests the SecretaryGeneral to continue to provide the Working Group with all financial and human resources necessary to enable it to carry out fully its mandate AHRC and AHRC. AHRCRES Decides to continue consideration of the question of enforced disappearances in accordance with its programme of work. th meeting September Adopted without a vote", - "values": [ - "Adopted without a vote" - ] - }, - { - "text": "to provide the full administrative technical and logistical support necessary to enable the Commission on Human Rights in South Sudan to carry out its mandate including computer software to support the Commissions evidence collection function and resources for strengthening the Commissions resources in relation to communications and mediarelated tasks Requests the Commission on Human Rights in South Sudan to present an oral update to the Human Rights Council at its fortysecond session in an interactive dialogue and to present a comprehensive written report to the Council at its fortythird session in an interactive dialogue Also requests the Commission on Human Rights in South Sudan to submit its report and recommendations to the Human Rights Council and then to share them with the AHRCRES African Union and all relevant organs of the United Nations including the United Nations Mission in South Sudan Decides to remain seized of the matter. rd meeting March Adopted without a vote", - "values": [ - "Adopted without a vote" - ] - }, - { - "text": "Nations organs bodies and components intergovernmental organizations in particular the Bretton Woods institutions and nongovernmental organizations and to disseminate it on the widest possible basis Decides to continue consideration of this matter under the same agenda item at its thirtysixth session. th meeting September Adopted by a recorded vote of to with abstentions. The voting was as follows In favour Algeria Bangladesh Bolivia Plurinational State of Botswana Burundi China Congo C\u00f4te dIvoire Cuba Ecuador El Salvador Ethiopia Ghana India Indonesia Kyrgyzstan Maldives Mongolia Morocco Namibia Nigeria Panama Philippines Qatar Russian Federation Saudi Arabia South Africa United Arab Emirates Venezuela Bolivarian Republic of Viet Nam Against Albania Belgium France Germany Latvia Netherlands Portugal Republic of Korea Slovenia Switzerland the former Yugoslav Republic of Macedonia United Kingdom of Great Britain and Northern Ireland Abstaining Georgia Kenya Mexico Paraguay Togo", - "values": [ - "Adopted by vote" - ] - }, - { - "text": "treaty bodies and civil society actors including nongovernmental organizations as well as the private sector to cooperate fully with the Special Rapporteur in the fulfilment of his mandate Decides to continue its consideration of the issue of human rights and unilateral coercive measures in accordance with its programme of work. th meeting September Adopted by a recorded vote of to with abstention. The voting was as follows In favour Bangladesh Bolivia Plurinational State of Botswana Brazil Burundi China Congo C\u00f4te dIvoire Cuba Ecuador Egypt El Salvador Ethiopia Ghana India Indonesia Iraq Kenya Kyrgyzstan Mongolia Nigeria AHRC. AHRCRES Paraguay Philippines Qatar Rwanda Saudi Arabia South Africa Tunisia United Arab Emirates Venezuela Bolivarian Republic of Against Albania Belgium Croatia Georgia Germany Hungary Japan Latvia Netherlands Portugal Republic of Korea Slovenia Switzerland United Kingdom of Great Britain and Northern Ireland United States of America Abstaining Togo", - "values": [ - "Adopted by vote" - ] - }, - { - "text": "AHRCL United Nations General Assembly Distr Limited March Original English Human Rights Council Thirtyfirst session Agenda item Promotion and protection of all human rights civil political economic social and cultural rights including the right to development China Cuba Egypt Iran Islamic Republic of Russian Federation amendment to draft resolution AHRCL The promotion and protection of human rights in the context of peaceful protests Paragraph should read Takes note of the compilation of practical recommendations for the proper management of assemblies based on best practices and lessons learned prepared by the Special Rapporteur on the rights to freedom of peaceful assembly and association and the Special Rapporteur on extrajudicial summary or arbitrary executions Nonmember State of the Human Rights Council. AHRC. GEE", - "values": [ - "Rejected by vote" - ] - }, - { - "text": "Agenda to contribute further to the work of the Working Group and to cooperate with the High Commissioner and the Special Rapporteur in the fulfilment of their mandates with regard to the implementation of the right to development Decides to review the progress of the implementation of the present resolution as a matter of priority at its future sessions. th meeting September AHRCRES Adopted by a recorded vote of to with abstentions. The voting was as follows In favour Afghanistan Angola Brazil Burundi Chile China C\u00f4te dIvoire Cuba Democratic Republic of the Congo Ecuador Egypt Ethiopia Iraq Kenya Kyrgyzstan Mongolia Nepal Nigeria Pakistan Peru Philippines Qatar Rwanda Saudi Arabia Senegal South Africa Togo Tunisia United Arab Emirates Venezuela Bolivarian Republic of Against Australia Belgium Croatia Georgia Germany Hungary Slovakia Slovenia Spain Switzerland Ukraine United Kingdom of Great Britain and Northern Ireland Abstaining Iceland Japan Mexico Panama Republic of Korea", - "values": [ - "Adopted by vote" - ] - }, - { - "text": "AHRCL United Nations General Assembly Distr Limited September Original English Human Rights Council Thirtysixth session September Agenda item Human rights bodies and mechanisms China India Russian Federation Venezuela Bolivarian Republic of amendment to draft resolution AHRCLRev Cooperation with the United Nations its representatives and mechanisms in the field of human rights The tenth preambular paragraph should read Reiterating that the General Assembly in its resolution stipulates that the members of the Human Rights Council should fully cooperate with the Council and be reviewed under the universal periodic review mechanism during their term of membership State not a member of the Human Rights Council. GEE", - "values": [ - "Rejected by vote" - ] - }, - { - "text": "AHRCL United Nations General Assembly Distr Limited September Original English Human Rights Council Thirtieth session Agenda item Promotion and protection of all human rights civil political economic social and cultural rights including the right to development Belarus China Iran Islamic Republic of Pakistan Russian Federation Venezuela Bolivarian Republic of amendment to draft resolution AHRCL Human rights and preventing and countering violent extremism After paragraph insert a new paragraph reading bis. Expresses its concern at the increasing use in a globalized society by terrorists and their supporters of information and communications technology in particular the Internet and other media and the use of such technology to commit incite recruit for fund or plan terrorist acts Nonmember State of the Human Rights Council. GEE", - "values": [ - "Withdrawn" - ] - }, - { - "text": "AHRCL United Nations General Assembly Distr Limited March Original English Human Rights Council Thirtyfirst session Agenda item Promotion and protection of all human rights civil political economic social and cultural rights including the right to development China Cuba Egypt Pakistan Russian Federation amendment to draft resolution AHRCL Protecting human rights defenders addressing economic social and cultural rights Delete the third and fourth preambular paragraphs and insert a new paragraph reading Recalling General Assembly resolution of December by which the Assembly adopted by consensus the Declaration on the Right and Responsibility of Individuals Groups and Organs of Society to Promote and Protect Universally Recognized Human Rights and Fundamental Freedoms and all previous General Assembly and Human Rights Council resolutions on this subject Nonmember State of the Human Rights Council. GEE", - "values": [ - "Rejected by vote" - ] - }, - { - "text": "to business activities that are connected with Israeli settlements in the Occupied Palestinian Territory including East Jerusalem Requests the United Nations High Commissioner for Human Rights to report to the Human Rights Council on the implementation of the provisions of the present resolution at its fortieth session Decides to remain seized of the matter. th meeting March Adopted by a recorded vote of to with abstentions. The voting was as follows In favour Afghanistan Angola Belgium Brazil Burundi Chile China C\u00f4te dIvoire Cuba Ecuador Egypt Ethiopia Germany Iraq Japan Kenya Kyrgyzstan Mexico Nepal Nigeria Pakistan Peru Philippines Qatar Republic of Korea Saudi Arabia Senegal Slovenia South Africa Spain Switzerland Tunisia United Arab Emirates Venezuela Bolivarian Republic of Against Australia Hungary Togo United States of America Abstaining Croatia Democratic Republic of the Congo Georgia Panama Rwanda Slovakia Ukraine United Kingdom of Great Britain and Northern Ireland", - "values": [ - "Adopted by vote" - ] - }, - { - "text": "agencies international and regional intergovernmental organizations and international humanitarian organizations to disseminate it as widely as possible and to report on this matter to the Human Rights Council at its fortieth session Decides to continue the consideration of the human rights violations in the occupied Syrian Golan at its fortieth session. th meeting March Adopted by a recorded vote of to with abstentions. The voting was as follows In favour Afghanistan Angola Brazil Burundi Chile China C\u00f4te dIvoire Cuba Ecuador Egypt Ethiopia Iraq Kenya Kyrgyzstan Nepal Nigeria Pakistan Peru Qatar Saudi Arabia Senegal South Africa Tunisia United Arab Emirates Venezuela Bolivarian Republic of Against Australia Belgium Croatia Georgia Germany Hungary Panama Slovakia Slovenia Spain Togo Ukraine United Kingdom of Great Britain and Northern Ireland United States of America Abstaining Democratic Republic of the Congo Japan Mexico Philippines Republic of Korea Rwanda Switzerland AHRC.", - "values": [ - "Adopted by vote" - ] - }, - { - "text": "Iceland Netherlands Norway Sweden Switzerland United Kingdom of Great Britain and Northern Ireland Uruguay amendment to draft resolution AHRCL Protection of the family role of the family in supporting the protection and promotion of human rights of older persons Paragraph should read Decides to convene with the support of the High Commissioner before the thirtyeighth session of the Human Rights Council a oneday intersessional seminar on the impact of the implementation by States of their obligations under relevant provisions of international human rights law with regard to the protection of the family on the role of families in supporting the protection and promotion of the human rights of older persons and to discuss challenges and best practices in this regard with the participation of Member States and other relevant stakeholders including national human rights institutions academic experts and civil society organizations State not a member of the Human Rights Council. GEE", - "values": [ - "Rejected by vote" - ] - }, - { - "text": "the High Commissioner for Human Rights to report to the Human Rights Council on the implementation of the provisions of the present resolution at its fortythird session with particular emphasis on the policies and practices linked to the settlement enterprise that discriminate against the Palestinian population in the Occupied Palestinian Territory including East Jerusalem Decides to remain seized of the matter. th meeting March Adopted by a recorded vote of to with abstentions. The voting was as follows In favour Afghanistan Angola Argentina Bahamas Bahrain Bangladesh Burkina Faso Chile China Cuba Egypt Eritrea Fiji Iceland India Iraq Italy Japan Mexico Nepal Nigeria Pakistan Peru Philippines Qatar Saudi Arabia Senegal Somalia South Africa Spain Tunisia Uruguay Against Australia Denmark Hungary Togo United Kingdom of Great Britain and Northern Ireland AHRCRES Abstaining Austria Brazil Bulgaria Cameroon Croatia Czechia Democratic Republic of the Congo Rwanda Slovakia Ukraine", - "values": [ - "Adopted by vote" - ] - }, - { - "text": "AHRCL United Nations General Assembly Distr Limited March Original English Human Rights Council Thirtyfirst session Agenda item Promotion and protection of all human rights civil political economic social and cultural rights including the right to development China Cuba Egypt Pakistan Russian Federation amendment to draft resolution AHRCL Protecting human rights defenders addressing economic social and cultural rights Paragraph should read Takes note of the work of the Special Rapporteur on the situation of human rights defenders and the attention given to the promotion and protection of economic social and cultural rights including in relevant reports of the mandate holder over time Nonmember State of the Human Rights Council. GEE", - "values": [ - "Rejected by vote" - ] - }, - { - "text": "efforts and collaboration to ensure the protection of those fleeing from Eritrea in particular unaccompanied children Encourages Member States to increase attention and if feasible resources to improve the situation of human rights in Eritrea by strengthening engagement with the Government of Eritrea Reiterates its strong encouragement to the African Union to follow up on the report and recommendations of the commission of inquiry and the update on human rights in Eritrea by establishing an investigation supported by the international community with a view to examining and bringing to justice those responsible for crimes involving the violations and abuses of human rights identified by the commission of inquiry including any that may amount to a crime against humanity Requests the SecretaryGeneral to provide the Special Rapporteur with all the information and resources necessary to fulfil her mandate Decides to remain seized of the matter. th meeting July Adopted without a vote", - "values": [ - "Adopted without a vote" - ] - }, - { - "text": "AHRCL United Nations General Assembly Distr Limited September Original English Human Rights Council Thirtysixth session September Agenda item Human rights bodies and mechanisms China India Russian Federation Venezuela Bolivarian Republic of amendment to draft resolution AHRCLRev Cooperation with the United Nations its representatives and mechanisms in the field of human rights Delete paragraph State not a member of the Human Rights Council. GEE", - "values": [ - "Rejected by vote" - ] - }, - { - "text": "United Nations or for specialized agencies representatives of the press or of radio film or other information agencies who have been accredited by the United Nations or by a specialized agency representatives of nongovernmental organizations recognized by the United Nations for the purpose of consultation under Article of the Charter or other persons invited to the headquarters district by the United Nations or by such specialized agency on official business and therefore underlining that denial by the host country of access to meetings for participants or refusal to issue entry visas for them in a timely manner and without restrictions of any kind constitute a breach of respective obligations under international law and may be considered an act of intimidation or reprisal against individuals or groups who seek to cooperate or have cooperated with the United Nations its representatives and mechanisms in the field of human rights State not a member of the Human Rights Council. GEE", - "values": [ - "Rejected by vote" - ] - }, - { - "text": "implement policies and practices in accordance with international human rights norms and standards and refrain from developing and enforcing policies and practices that force coerce or otherwise pressure women and girl athletes into undergoing unnecessary humiliating and harmful medical procedures in order to participate in womens events in competitive sports and to repeal rules policies and practices that negate their rights to bodily integrity and autonomy Requests the United Nations High Commissioner for Human Rights to prepare a report on the intersection of race and gender discrimination in sports including in policies regulations and practices of sporting bodies and elaborating on relevant international human rights norms and standards and to present the report to the Human Rights Council at its fortyfourth session Decides to continue its consideration of this matter under the same agenda item in accordance with its programme of work. nd meeting March Adopted without a vote", - "values": [ - "Adopted without a vote" - ] - }, - { - "text": "Nations agencies other relevant international organizations and nongovernmental organizations in the discharge of his mandate Requests the Independent Expert to report regularly to the Human Rights Council and to the General Assembly in accordance with their respective programmes of work Decides to continue its consideration of this matter under the same agenda item. th meeting July Adopted by a recorded vote of to with abstention. The voting was as follows In favour Afghanistan Angola Brazil Burundi Chile China C\u00f4te dIvoire Cuba Democratic Republic of the Congo Ecuador Egypt Ethiopia Iraq Kenya Kyrgyzstan Mongolia Nepal Nigeria Pakistan Panama Peru Philippines Qatar Rwanda Saudi Arabia Senegal South Africa Togo Tunisia United Arab Emirates Venezuela Bolivarian Republic of Against Australia Belgium Croatia Georgia Germany Hungary Japan Republic of Korea Slovakia Slovenia Spain Switzerland Ukraine United Kingdom of Great Britain and Northern Ireland Abstaining Mexico AHRC.", - "values": [ - "Adopted by vote" - ] - }, - { - "text": "followed by an interactive dialogue with a view to ensuring adequate attention to the report and to sharing good practices challenges and lessons learned based on the principles of cooperation and genuine dialogue and aimed at strengthening the capacity of Member States to comply with their human rights obligations for the benefit of all people. st meeting September Adopted by a recorded vote of to with abstentions. The voting was as follows In favour Albania Belgium Botswana Brazil Congo C\u00f4te dIvoire Croatia Ecuador El Salvador Georgia Germany Ghana Hungary Iraq Japan Latvia Mongolia Netherlands Panama Paraguay Portugal Republic of Korea Rwanda Slovenia Switzerland Tunisia United Kingdom of Great Britain and Northern Ireland United States of America Abstaining Bangladesh Bolivia Plurinational State of Burundi China Cuba Egypt Ethiopia India Indonesia Kenya Kyrgyzstan Nigeria Philippines Qatar Saudi Arabia South Africa Togo United Arab Emirates Venezuela Bolivarian Republic of", - "values": [ - "Adopted by vote" - ] - }, - { - "text": "and ancestral knowledge and noting the importance for indigenous women and girls of the United Nations Declaration on the Rights of Indigenous Peoples and encourages States to give serious consideration to the abovementioned recommendations as appropriate Also welcomes the work of the United Nations Indigenous Peoples Partnership and the systemwide action plan for ensuring a coherent approach to achieving AHRCRES the ends of the United Nations Declaration on the Rights of Indigenous Peoples and invites States and other potential donors to support it Urges States and invites other public andor private actors or institutions to contribute to the United Nations Voluntary Fund for Indigenous Peoples as an important means of promoting the rights of indigenous peoples worldwide and within the United Nations system Decides to continue its consideration of this question at a future session in conformity with its annual programme of work. th meeting September Adopted without a vote", - "values": [ - "Adopted without a vote" - ] - }, - { - "text": "of all the competent United Nations organs specialized agencies international and regional intergovernmental organizations and international humanitarian organizations to disseminate it as widely as possible and to report on this matter to the Human Rights Council at its fortythird session Decides to continue the consideration of the human rights violations in the occupied Syrian Golan at its fortythird session. rd meeting March Adopted by a recorded vote of to with abstentions. The voting was as follows In favour Afghanistan Angola Argentina Bahamas Bahrain Bangladesh Burkina Faso Chile China Cuba Egypt Eritrea India Iraq Mexico Nepal Nigeria Pakistan Peru Philippines Qatar Saudi Arabia Senegal South Africa Tunisia Uruguay Against Australia Austria Brazil Bulgaria Croatia Czechia Denmark Hungary Iceland Italy Japan Slovakia Spain Togo Ukraine United Kingdom of Great Britain and Northern Ireland Abstaining Cameroon Democratic Republic of the Congo Fiji Rwanda Somalia AHRC.", - "values": [ - "Adopted by vote" - ] - }, - { - "text": "AHRCL United Nations General Assembly Distr Limited June Original English Human Rights Council Thirtysecond session Agenda item Promotion and protection of all human rights civil political economic social and cultural rights including the right to development Pakistan amendment to draft resolution AHRCLRev Protection against violence and discrimination based on sexual orientation and gender identity Paragraph should read Deplores acts of violence and discrimination in all regions of the world committed against individuals because of their race colour sex language religion political or other opinion national or social origin property birth or other status State not a member of the Human Rights Council. On behalf of the States Members of the United Nations that are members of the Organization of Islamic Cooperation with the exception of Albania. GEE", - "values": [ - "Rejected by vote" - ] - }, - { - "text": "to China Cuba Egypt Iran Islamic Republic of Pakistan Russian Federation amendment to draft resolution AHRCL Protecting human rights defenders addressing economic social and cultural rights Paragraph should read Stresses that legislation affecting the activities of individuals groups and organs of society engaged in the promotion and protection of human rights and its application must be consistent with the States obligations under international human rights law including the International Covenant on Civil and Political Rights and the International Covenant on Economic Social and Cultural Rights and guided by the Declaration on the Right and Responsibility of Individuals Groups and Organs of Society to Promote and Protect Universally Recognized Human Rights and Fundamental Freedoms and in this regard recognizes the urgent need to review and amend policies or legislation that are inconsistent with international human rights law Nonmember State of the Human Rights Council. GEE", - "values": [ - "Rejected by vote" - ] - }, - { - "text": "of with disabilities and to discuss challenges and best practices in this regard Requests the High Commissioner to present a report on the seminar in the form of a summary to the Human Rights Council at its thirtyfifth session Decides to remain seized of the matter. th meeting July General Assembly resolution AHRCRES Adopted by a recorded vote of to with abstentions. The voting was as follows In favour Algeria Bangladesh Bolivia Plurinational State of Botswana Burundi China Congo C\u00f4te dIvoire Cuba Ecuador El Salvador Ethiopia Ghana India Indonesia Kenya Kyrgyzstan Maldives Mongolia Morocco Namibia Nigeria Paraguay Philippines Qatar Russian Federation Saudi Arabia South Africa Togo United Arab Emirates Venezuela Bolivarian Republic of Viet Nam Against Albania Belgium France Germany Latvia Netherlands Panama Portugal Republic of Korea Slovenia Switzerland United Kingdom of Great Britain and Northern Ireland Abstaining Georgia Mexico the former Yugoslav Republic of Macedonia", - "values": [ - "Adopted by vote" - ] - }, - { - "text": "d The implementation of accepted universal periodic review recommendations e Assisting the assessment of progress in human rights issues Decides to extend for two years the mandate of the Special Rapporteur on the situation of human rights in Cambodia and requests the Special Rapporteur to report on the implementation of her mandate to the Human Rights Council at its thirtyninth and fortysecond sessions and to engage in a constructive manner with the Government of Cambodia for the further improvement of the situation of human rights in the country Requests the SecretaryGeneral to report to the Human Rights Council at its thirtyseventh and fortysecond sessions on the role and achievements of the Office of the High Commissioner in assisting the Government and the people of Cambodia in the promotion and protection of human rights Decides to continue its consideration of the situation of human rights in Cambodia at its fortysecond session. nd meeting September Adopted without a vote", - "values": [ - "Adopted without a vote" - ] - }, - { - "text": "and invites Member States and all other actors to lend their support to the initiative Requests the High Commissioner to prioritize the issue of preventing and combating racism racial discrimination xenophobia and related intolerance in the work of the Office of the High Commissioner Decides to remain seized of this important issue. nd meeting September Adopted by a recorded vote of to with abstentions. The voting was as follows In favour Bangladesh Bolivia Plurinational State of Botswana Brazil Burundi China Congo C\u00f4te dIvoire Cuba Ecuador Egypt El Salvador Ethiopia Ghana India Indonesia Iraq Kenya Kyrgyzstan Mongolia Nigeria Panama Paraguay Philippines Qatar Rwanda Saudi Arabia South Africa Togo Tunisia United Arab Emirates Venezuela Bolivarian Republic of Against Albania Germany Switzerland United Kingdom of Great Britain and Northern Ireland United States of America Abstaining Belgium Croatia Georgia Hungary Japan Latvia Netherlands Portugal Republic of Korea Slovenia", - "values": [ - "Adopted by vote" - ] - }, - { - "text": "time but no later than days prior to the fortyfirst session Invites special procedure mandate holders within their respective mandates and other relevant stakeholders with appropriate expertise including academic experts and civil society organizations to contribute actively to the panel discussion Encourages relevant special procedure mandate holders to continue to consider the issue of climate change and human rights including the adverse impacts of climate change on the full and effective enjoyment of human rights particularly womens rights within their respective mandates Decides to consider the possibility of organizing followup events on climate change and human rights Requests the SecretaryGeneral and the High Commissioner to provide all the human and technical assistance necessary for the effective and timely realization of the abovementioned panel discussion and the summary report thereon Decides to remain seized of the matter. th meeting July Adopted without a vote", - "values": [ - "Adopted without a vote" - ] - }, - { - "text": "the use of mercenaries as a means of violating human rights and impeding the exercise of the right of peoples to selfdetermination to the General Assembly at its seventythird session and to the Human Rights Council at its thirtyninth session Decides to continue its consideration of this matter under the same agenda item at its thirtyninth session. th meeting September Adopted by a recorded vote of to with no abstentions. The voting was as follows In favour Bangladesh Bolivia Plurinational State of Botswana Brazil Burundi China Congo C\u00f4te dIvoire Cuba Ecuador Egypt El Salvador Ethiopia Ghana India Indonesia Iraq Kenya Kyrgyzstan Mongolia Nigeria Panama Paraguay Philippines Qatar Rwanda Saudi Arabia South Africa Togo Tunisia United Arab Emirates Venezuela Bolivarian Republic of Against Albania Belgium Croatia Georgia Germany Hungary Japan Latvia Netherlands Portugal Republic of Korea Slovenia Switzerland United Kingdom of Great Britain and Northern Ireland United States of America", - "values": [ - "Adopted by vote" - ] - }, - { - "text": "and agencies programmes and funds of the United Nations to collaborate with the Working Group including by inter alia providing it with the necessary information and where possible reports in order to enable the Working Group to carry out its mandate including with regard to field missions Requests the SecretaryGeneral and the United Nations High Commissioner for Human Rights to provide the Working Group with all the human technical and financial assistance necessary for the sustainable and effective fulfilment of its mandate Recalls the establishment of a voluntary fund to provide additional resources for inter alia the participation of people of African descent representatives of developing countries especially the least developed countries nongovernmental organizations and experts in the openended sessions of the Working Group and invites States to contribute to that fund AHRCRES Decides to remain seized of this important issue. nd meeting September Adopted without a vote", - "values": [ - "Adopted without a vote" - ] - }, - { - "text": "at raising awareness of the AHRCRES Convention on the Prevention and Punishment of the Crime of Genocide and the realization of educational programmes and projects that contribute to the prevention of genocide and to submit the report to the Human Rights Council at its fortyfirst session Requests the Office of the United Nations High Commissioner for Human Rights to organize at the thirtyninth session of the Human Rights Council a highlevel panel discussion to commemorate the seventieth anniversary of the Convention on the Prevention and Punishment of the Crime of Genocide to be followed by an interactive dialogue with the Special Adviser on the Prevention of Genocide Also requests the Office of the High Commissioner to prepare a summary report on the highlevel panel discussion and to submit it to the Human Rights Council at its fortieth session Decides to continue its consideration of this issue in accordance with its programme of work. th meeting March Adopted without a vote", - "values": [ - "Adopted without a vote" - ] - }, - { - "text": "AHRCL United Nations General Assembly Distr Limited September Original English Human Rights Council Thirtysixth session September Agenda item Human rights bodies and mechanisms China Egypt India Russian Federation Venezuela Bolivarian Republic of amendment to draft resolution AHRCLRev Cooperation with the United Nations its representatives and mechanisms in the field of human rights Paragraph should read Recognizes that unhindered access to and communication with the United Nations its representatives and mechanisms in the field of human rights including the Human Rights Council its special procedures the universal periodic review mechanism and the treaty bodies as well as regional human rights mechanisms are indispensable to enable the United Nations and its mechanisms to fulfil their mandates State not a member of the Human Rights Council. GEE", - "values": [ - "Rejected by vote" - ] - }, - { - "text": "AHRCL United Nations General Assembly Distr Limited September Original English Human Rights Council Thirtythird session Agenda item Promotion and protection of all human rights civil political economic social and cultural rights including the right to development Russian Federation Venezuela Bolivarian Republic of amendment to draft resolution AHRCL Cultural rights and the protection of cultural heritage Sixteenth preambular paragraph The sixteenth preambular paragraph should read Highlighting the important contribution made by those involved in the protection of the cultural heritage of all humankind Paragraph and paragraph b For cultural rights defenders read those involved in the protection of cultural heritage GEE", - "values": [ - "Rejected by vote" - ] - }, - { - "text": "Action Agenda of the Third International Conference on Financing for Development and invites international multilateral financial institutions regional development banks development finance institutions and cooperation agencies to provide financial support including through innovative financial mechanisms to programmes and projects for implementing the New Urban Agenda particularly in developing countries Encourages relevant special procedure mandate holders in fulfilling their respective mandates to submit proposals that could support States in the implementation of the New Urban Agenda and Sustainable Development Goal Underscores the importance of the highlevel meeting of the General Assembly to be convened by the President of the Assembly during the seventyfirst session of the Assembly to discuss the effective implementation of the New Urban Agenda and the positioning of the United Nations Human Settlements Programme in this regard. th meeting June Adopted without a vote", - "values": [ - "Adopted without a vote" - ] - }, - { - "text": "AHRCL United Nations General Assembly Distr Limited March Original English Human Rights Council Thirtyfourth session February March Agenda item Promotion and protection of all human rights civil political economic social and cultural rights including the right to development Russian Federation amendment to draft resolution AHRCL Mandate of the Special Rapporteur on the situation of human rights defenders The ninth preambular paragraph should read Stressing that respect and support for the activities of those engaged in the promotion and protection of universally recognized human rights and fundamental freedoms including of the rights of women are essential to the overall enjoyment of human rights State not a member of the Human Rights Council. GEE", - "values": [ - "Rejected by vote" - ] - }, - { - "text": "effective of the Durban Declaration and Programme of Action Delete subparagraph a Delete subparagraph b In subparagraph d replace the word fifth by regular twoweek and after the word views delete the words and vision Replace subparagraph f with the following Requests the Intergovernmental Working Group on the effective implementation of the Durban Declaration and Programme of Action to reconvene for one week at the earliest possible date to consider the report by the Five Experts and to develop recommendations on the modalities to take forward the work on complementary standards GE E AHRCL page Delete subparagraph g In subparagraph h after the word focusing insert also Delete subparagraph i In subparagraph j after the word necessary delete the words and additional and after the words challenges of delete the words racial and religious In subparagraph k replace the phrase to retain this priority issue on its programme of work with to remain seized with this priority issue.", - "values": [ - "Withdrawn" - ] - }, - { - "text": "human rights institutions and civil society in the promotion and protection of all human rights and fundamental freedoms Requests the Office of the High Commissioner to prepare a study in close cooperation with the InterParliamentary Union and in consultation with States United Nations agencies and other relevant stakeholders on how to promote and enhance synergies between parliaments and the work of the Human Rights Council and its universal periodic review and to present it to the Council at its thirtyeighth session in order to provide States and other relevant stakeholders with elements that could serve as orientation to strengthen their interaction towards the effective promotion and protection of human rights Encourages all relevant human rights mechanisms to consider the present resolution within the framework of their respective mandates AHRC. AHRCRES Decides to continue its consideration of this issue under the same agenda item. th meeting June Adopted without a vote", - "values": [ - "Adopted without a vote" - ] - }, - { - "text": "human rights mechanisms to Abkhazia Georgia and the Tskhinvali regionSouth Ossetia Georgia Requests the High Commissioner to present to the Human Rights Council in accordance with its resolution of June an oral update on the followup to the present resolution at its fortyfirst session and to present a written report on developments relating to and the implementation of the present resolution at its fortysecond session. th meeting March Adopted by a recorded vote of to with abstentions. The voting was as follows In favour Australia Austria Bahamas Bulgaria Croatia Czechia Denmark Fiji Hungary Iceland Italy Japan Mexico Peru Slovakia Spain Togo Ukraine United Kingdom of Great Britain and Northern Ireland Against Cameroon China Cuba Abstaining Afghanistan Angola Argentina Bahrain Bangladesh Brazil Burkina Faso Chile Democratic Republic of the Congo Egypt Eritrea India Iraq Nepal Nigeria Pakistan Philippines Qatar Rwanda Saudi Arabia Senegal Somalia South Africa Tunisia Uruguay", - "values": [ - "Adopted by vote" - ] - }, - { - "text": "relation to equal conditions of pay hiring and career advancement and to pay particular attention to women facing multiple intersecting forms of inequality and discrimination Requests the United Nations High Commissioner for Human Rights to prepare an analytical report in consultation with States relevant United Nations agencies funds and programmes particularly the International Labour Organization and the treaty bodies the special procedures civil society national human rights institutions and other stakeholders on the relationship between the realization of the right to work and the enjoyment of all human rights by young people with an emphasis on their empowerment in accordance with States respective obligations under international human rights law to indicate the major challenges and best practices in that regard and to submit the report to the Human Rights Council prior to its fortieth session Decides to remain seized of the matter. rd meeting March Adopted without a vote", - "values": [ - "Adopted without a vote" - ] - }, - { - "text": "Egypt Russian Federation amendment to draft resolution AHRCL Accelerating efforts to eliminate violence against women engaging men and boys in preventing and responding to violence against all women and girls Paragraph g should read g Developing and implementing educational programmes and teaching materials based on full and accurate information for all adolescents and youth in a manner consistent with their evolving capacities with appropriate direction and guidance from parents and legal guardians with the active involvement of all relevant stakeholders in order to modify the social and cultural patterns of conduct of men and women of all ages to eliminate prejudices and to promote and build decisionmaking communication and risk reduction skills for the development of respectful relationships based on gender equality and human rights as well as teacher education and training programmes for both formal and nonformal education State not a member of the Human Rights Council. GEE", - "values": [ - "Rejected by vote" - ] - }, - { - "text": "the of Member States and other relevant stakeholders including national human rights institutions academic experts and civil society organizations Requests the High Commissioner to present a report on the seminar in the form of a summary to the Human Rights Council at its thirtyninth session Decides to remain seized of the matter. th meeting June Adopted by a recorded vote of to with abstentions. The voting was as follows In favour Bangladesh Bolivia Plurinational State of Botswana Burundi China Congo C\u00f4te dIvoire Cuba Ecuador Egypt El Salvador Ethiopia Ghana India Indonesia Iraq Kenya Kyrgyzstan Mongolia Nigeria Paraguay Philippines Qatar Rwanda Saudi Arabia South Africa Togo Tunisia United Arab Emirates Venezuela Bolivarian Republic of AHRCRES Against Albania Belgium Croatia Germany Japan Latvia Netherlands Portugal Slovenia Switzerland United Kingdom of Great Britain and Northern Ireland United States of America Abstaining Brazil Georgia Hungary Panama Republic of Korea", - "values": [ - "Adopted by vote" - ] - }, - { - "text": "the of the mandate including by providing all necessary information requested by him or her to respond promptly to his or her urgent appeals and other communications to consider favourably the mandate holders requests to visit their countries and to consider implementing the recommendations made by the mandate holder in his or her reports Encourages all relevant stakeholders including the United Nations and its agencies programmes and funds regional human rights mechanisms national human rights institutions civil society and the private sector to cooperate fully with the Special Rapporteur to enable him or her to fulfil the mandate GEE AHRCRES Requests the SecretaryGeneral and the United Nations High Commissioner for Human Rights to provide the Special Rapporteur with all the human and financial resources necessary for the effective fulfilment of the mandate Decides to continue its consideration of the matter under the same agenda item. rd meeting March Adopted without a vote", - "values": [ - "Adopted without a vote" - ] - }, - { - "text": "the set by the Yemeni authorities Requests the High Commissioner to continue to provide substantive capacitybuilding and technical assistance to the Government of Yemen and technical support to the National Commission of Inquiry to ensure that the National Commission continues to investigate allegations of violations and abuses committed by all parties to the conflict in Yemen and in line with international standards and submits its comprehensive report on alleged human rights violations and abuses in all parts of Yemen in accordance with Presidential Decree No. of August as soon as it is available and encourages all parties to the conflict in Yemen to extend full and transparent access and cooperation to the National Commission Also requests the High Commissioner to present a written report on the implementation of technical assistance as stipulated in the present resolution to the Human Rights Council at its fortysecond session. st meeting September Adopted without a vote", - "values": [ - "Adopted without a vote" - ] - }, - { - "text": "Ossetia Georgia Requests the High Commissioner to present to the Human Rights Council in accordance with its resolution of June an oral update on the followup to the present resolution at its thirtyeighth session and to present a written report on developments relating to and the implementation of the present resolution at its thirtyninth session. th meeting March Adopted by a recorded vote of to with abstentions. The voting was as follows In favour Australia Belgium C\u00f4te dIvoire Croatia Democratic Republic of the Congo Georgia Germany Hungary Japan Mexico Panama Peru Slovakia Slovenia Spain Togo Ukraine United Kingdom of Great Britain and Northern Ireland United States of America Against Burundi China Cuba Philippines Venezuela Bolivarian Republic of Abstaining Afghanistan Angola Brazil Chile Ecuador Egypt Ethiopia Iraq Kenya Kyrgyzstan Mongolia Nepal Nigeria Pakistan Qatar Republic of Korea Rwanda Saudi Arabia Senegal South Africa Switzerland Tunisia United Arab Emirates", - "values": [ - "Adopted by vote" - ] - }, - { - "text": "rights defenders addressing economic social and cultural rights Paragraph should read Encourages business enterprises of all categories to avoid identify assess and address any adverse human rights impacts related to their activities through meaningful consultation with relevant stakeholders in a manner consistent with the Guiding Principles on Business and Human Rights Implementing the United Nations Protect Respect and Remedy Framework and underlines the importance of accountability including of all business enterprises both transnational and others including their provision of or cooperation in remedial action and also encourages all business enterprises to share and exchange best practices in an accessible form on how they address their adverse human rights impacts including with regard to information that is sufficient to evaluate the effectiveness of the response to the particular human rights impact involved Nonmember State of the Human Rights Council. See AHRC annex. GEE", - "values": [ - "Rejected by vote" - ] - }, - { - "text": "information on measures taken in this regard Requests the SecretaryGeneral and the United Nations High Commissioner for Human Rights to provide the Special Rapporteur with all the resources and assistance necessary for the effective fulfilment of the mandate Decides to continue its consideration of this matter under the same agenda item at its fortysecond session. th meeting September Adopted by a recorded vote of to with abstentions. The voting was as follows In favour Angola Australia Belgium Brazil Burundi Chile China C\u00f4te dIvoire Croatia Cuba Democratic Republic of the Congo Ecuador Egypt Georgia Germany Hungary Iceland Iraq Japan Kenya Mexico Mongolia Nepal Nigeria Pakistan Panama Peru Philippines Qatar Republic of Korea Rwanda Saudi Arabia Senegal Slovakia Slovenia South Africa Spain Switzerland Togo Tunisia Ukraine United Arab Emirates United Kingdom of Great Britain and Northern Ireland Venezuela Bolivarian Republic of Against Kyrgyzstan Abstaining Afghanistan Ethiopia", - "values": [ - "Adopted by vote" - ] - }, - { - "text": "in the report of the High Commissioner on the intersessional seminar on cultural rights and the protection of cultural heritage as well as those made by the Special Rapporteur in the field AHRCRES of cultural rights in her reports presented to the Human Rights Council and to the General Assembly Requests the High Commissioner a To convene before the fortyfourth session of the Human Rights Council and in collaboration with the Special Rapporteur in the field of cultural rights relevant agencies and other stakeholders a twoday workshop in Geneva with the participation of experts from all regions of the world to develop appropriate tools for the dissemination of an approach to the protection restoration and preservation of cultural heritage that promotes universal respect for cultural rights by all b session To submit a report thereon to the Human Rights Council at its fortysixth Decides to remain seized of the matter. rd meeting March Adopted without a vote AHRC and Corr. A.", - "values": [ - "Adopted without a vote" - ] - }, - { - "text": "Woods and nongovernmental organizations and to disseminate it on the widest possible basis Decides to continue consideration of this matter under the same agenda item at its fortysecond session. th meeting September Adopted by a recorded vote of to with abstentions. The voting was as follows In favour Angola Burundi China C\u00f4te dIvoire Cuba Democratic Republic of the Congo Ecuador Egypt Ethiopia Iraq Kenya Kyrgyzstan Mongolia Nepal Nigeria Pakistan Panama Philippines Qatar Rwanda Saudi Arabia AHRC and Add. AHRCRES Senegal South Africa Togo Tunisia Ukraine United Arab Emirates Venezuela Bolivarian Republic of Against Australia Belgium Croatia Georgia Germany Hungary Iceland Japan Republic of Korea Slovakia Slovenia Spain Switzerland United Kingdom of Great Britain and Northern Ireland Abstaining Afghanistan Brazil Chile Mexico Peru The representative of Ukraine subsequently stated that there had been an error in the delegations vote and that it had intended to vote against.", - "values": [ - "Adopted by vote" - ] - }, - { - "text": "AHRCL United Nations General Assembly Distr Limited March Original English Human Rights Council Thirtyfirst session Agenda item Promotion and protection of all human rights civil political economic social and cultural rights including the right to development China Cuba Egypt Pakistan Russian Federation amendment to draft resolution AHRCL Protecting human rights defenders addressing economic social and cultural rights The fifteenth preambular paragraph should read Welcoming the fact that indigenous peoples are organizing themselves for political economic social and cultural enhancement and in order to bring to an end all forms of discrimination and oppression wherever they occur and welcoming also the work of individuals groups and organs of society who are engaged in promotion and protection of human rights in that regard Nonmember State of the Human Rights Council. GEE", - "values": [ - "Rejected by vote" - ] - }, - { - "text": "of December Urges all Governments to cooperate fully with the Special Rapporteur and to respond favourably to the requests of the mandate holder to visit their countries and to provide the mandate holder with all the information necessary to enable him or her to fulfil the mandate even more effectively Requests the SecretaryGeneral and the United Nations High Commissioner for Human Rights to provide the Special Rapporteur with all the human technical and financial assistance necessary for the effective fulfilment of the mandate Requests the Special Rapporteur to report annually to the Human Rights Council and to the General Assembly in accordance with their respective programmes of work Decides to remain seized of this question under the same agenda item and to continue its consideration of measures to implement the Declaration on the Elimination of All Forms of Intolerance and of Discrimination Based on Religion or Belief. nd meeting March Adopted without a vote AHRC.", - "values": [ - "Adopted without a vote" - ] - }, - { - "text": "to research with a view to advise States intergovernmental organizations civil society and other stakeholders on how to effectively respect protect and fulfil the right to adequate housing and nondiscrimination in this context See AHRC. AHRCRES Requests the SecretaryGeneral and the United Nations High Commissioner for Human Rights to provide all the assistance necessary to the Special Rapporteur for the effective fulfilment of her mandate Notes with appreciation the cooperation extended to date to the Special Rapporteur by different actors and calls upon States a To continue to cooperate with the Special Rapporteur in the discharge of her mandate and to respond favourably to her requests for information and visits b To enter into a constructive dialogue with the Special Rapporteur with respect to the followup to and implementation of her recommendations Decides to continue its consideration of this matter under the same agenda item. rd meeting March Adopted without a vote", - "values": [ - "Adopted without a vote" - ] - }, - { - "text": "Distr Limited March Original English Human Rights Council Thirtyfirst session Agenda item Promotion and protection of all human rights civil political economic social and cultural rights including the right to development China Cuba Egypt Iran Islamic Republic of Pakistan Russian Federation amendment to draft resolution AHRCL Protecting human rights defenders addressing economic social and cultural rights Delete paragraphs and and insert a new paragraph reading Strongly condemns all human rights violations and abuses against individuals groups and organs of society engaged in the promotion and protection of human rights for lawful activities related to the reporting and seeking of information on human rights violations and abuses and for cooperating with subregional regional and international bodies including the United Nations its representatives and mechanisms including in the field of economic social and cultural rights Nonmember State of the Human Rights Council. GEE", - "values": [ - "Rejected by vote" - ] - }, - { - "text": "the implementation of the Geneva communiqu\u00e9 including through the establishment of an inclusive transitional governing body with full executive powers which shall be formed on the basis of mutual consent while ensuring the continuity of governmental institutions Decides to remain seized of the matter. th meeting July Adopted by a recorded vote of to with abstentions. The voting was as follows In favour Albania Belgium Botswana C\u00f4te dIvoire El Salvador France Georgia Germany Ghana Latvia Maldives Mexico Mongolia Morocco Netherlands Panama Paraguay Portugal Qatar Republic of Korea Saudi Arabia Slovenia Switzerland the former Yugoslav Republic of Macedonia Togo United Arab Emirates United Kingdom of Great Britain and Northern Ireland Against Algeria Bolivia Plurinational State of China Cuba Russian Federation Venezuela Bolivarian Republic of Abstaining Bangladesh Burundi Congo Ecuador Ethiopia India Indonesia Kenya Kyrgyzstan Namibia Nigeria Philippines South Africa Viet Nam", - "values": [ - "Adopted by vote" - ] - }, - { - "text": "terrorism and to assess the impact of terrorism on the enjoyment of all human rights and calls upon States to ensure that measures to counter terrorism and violent extremism conducive to terrorism and to preserve national security do not hinder their work and safety and are in compliance with their obligations under international law in particular international human rights law international refugee law and international humanitarian law Invites all treaty bodies special procedure mandate holders international and regional human rights mechanisms and the United Nations High Commissioner for Human Rights within their respective mandates to pay due attention to the negative impact of terrorism on the enjoyment of all human rights and fundamental freedoms and on alleged violations of human rights and fundamental freedoms while countering terrorism and violent extremism conducive to terrorism and to report regularly to the Human Rights Council. th meeting March Adopted without a vote", - "values": [ - "Adopted without a vote" - ] - }, - { - "text": "victims of businessrelated human rights abuse by taking into consideration the reports of the High Commissioner on the Accountability and Remedy Project and the recommendations contained therein Encourages national human rights institutions and civil society including nongovernmental organizations to take into consideration the reports of the High Commissioner on the Accountability and Remedy Project in their activities aimed at supporting States efforts to improve accountability and access to judicial and nonjudicial remedy for victims of businessrelated human rights abuse Emphasizes the importance of stakeholder dialogue and analysis to maintain and build on the results achieved to date to prevent and address businessrelated human rights abuses and to inform further deliberations of the Human Rights Council on business and human rights Decides to continue its consideration of this question in conformity with its annual programme of work. th meeting July Adopted without a vote", - "values": [ - "Adopted without a vote" - ] - }, - { - "text": "AHRCL United Nations General Assembly Distr Limited September Original English Human Rights Council Thirtysixth session September Agenda item Promotion and protection of all human rights civil political economic social and cultural rights including the right to development China Egypt Pakistan Russian Federation Saudi Arabia Venezuela Bolivarian Republic of amendment to draft resolution AHRCL Enforced or involuntary disappearances Above paragraph insert a new paragraph reading Reaffirms the sovereign right of all countries to develop their own legal systems including determining appropriate legal measures in accordance with their international law obligations State not a member of the Human Rights Council. GEE", - "values": [ - "Rejected by vote" - ] - }, - { - "text": "the different ways in which firearms have been effectively regulated Requests the High Commissioner to prepare a report on the impact of civilian acquisition possession and use of firearms on civil political economic social and cultural rights with a view to contributing to a fuller understanding of that impact by States and other relevant stakeholders and to the strengthening or developing of effective national regulation and to other possible measures taken by States and to present the report to the Human Rights Council at its fortysecond session AHRC. AHRCRES Invites all relevant special procedures commissions of inquiry and human rights treaty bodies as well as the Office of the High Commissioner to continue to bear in mind the present resolution within the framework of their respective mandates Requests the SecretaryGeneral to bring the present resolution to the attention of all Member States Decides to remain seized of this issue. th meeting July Adopted without a vote", - "values": [ - "Adopted without a vote" - ] - }, - { - "text": "in the Special Rapporteur on the right of everyone to the enjoyment of the highest attainable standard of physical and mental health the Special Rapporteur on the rights of persons with disabilities and the Special Rapporteur on torture and other cruel inhuman or degrading treatment or punishment the treaty bodies national human rights institutions and civil society including persons with mental health conditions or psychosocial disabilities in particular persons using mental health services and their organizations Requests the High Commissioner to prepare a report on the outcome of the consultation to be presented to the Human Rights Council at its thirtyninth session in which he identifies strategies to promote human rights in mental health and to eliminate discrimination stigma violence coercion and abuse in this regard including through education and the training of all stakeholder groups Decides to remain seized of the matter. th meeting September Adopted without a vote", - "values": [ - "Adopted without a vote" - ] - }, - { - "text": "of victims of terrorism and encourages the Special Rapporteur to continue to address this issue in consultation with Governments the individuals concerned their families their representatives and civil society organizations GEE AHRCRES Requests all Governments to cooperate fully with the Special Rapporteur in the performance of the tasks and duties mandated including by responding promptly to the Special Rapporteurs urgent appeals and providing the information requested Calls upon all Governments to give serious consideration to responding favourably to the requests of the Special Rapporteur to visit their countries Requests the SecretaryGeneral and the United Nations High Commissioner for Human Rights to provide all the necessary human technical and financial assistance to the Special Rapporteur for the effective fulfilment of the mandate Decides to continue consideration of this question in conformity with its annual programme of work. rd meeting March Adopted without a vote", - "values": [ - "Adopted without a vote" - ] - }, - { - "text": "AHRCL United Nations General Assembly Distr Limited March Original English Human Rights Council Thirtyfirst session Agenda item Promotion and protection of all human rights civil political economic social and cultural rights including the right to development China Cuba Egypt Pakistan Russian Federation amendment to draft resolution AHRCL Protecting human rights defenders addressing economic social and cultural rights Paragraph should read Encourages nonState actors to respect and promote the human rights and fundamental freedoms of all persons including their economic social and cultural rights and to refrain from actions that undermine the capacity of individuals groups and organs of society engaged in the promotion and protection of human rights to operate free from hindrance and insecurity and encourages leaders in all sectors of society to express public support for their important role Nonmember State of the Human Rights Council. GEE", - "values": [ - "Rejected by vote" - ] - }, - { - "text": "which should be mainstreamed into all policies and programmes aimed at the implementation of the Sustainable Development Goals in particular the eradication of poverty Requests the United Nations High Commissioner for Human Rights in collaboration with Member States the United Nations Entity for Gender Equality and the Empowerment of Women UNWomen the United Nations Population Fund and other United Nations agencies funds and programmes international human rights mechanisms civil society organizations and other relevant stakeholders to organize a twoday intersessional expert meeting to consider gaps in challenges to and best practices aimed at the full enjoyment of human rights by all women and girls and the systematic mainstreaming of a gender perspective into the implementation of the Agenda to prepare a report on the outcome of the abovementioned meeting and to present the report to the Human Rights Council at its thirtyninth session. th meeting September Adopted without a vote", - "values": [ - "Adopted without a vote" - ] - }, - { - "text": "AHRCL United Nations General Assembly Distr Limited September Original English Human Rights Council Thirtysixth session September Agenda item Human rights bodies and mechanisms China Egypt India Russian Federation Venezuela Bolivarian Republic of amendment to draft resolution AHRCLRev Cooperation with the United Nations its representatives and mechanisms in the field of human rights The fifth preambular paragraph should read Taking note of the reports of the SecretaryGeneral on this question and in particular noting with concern the worsening incidence severity and scope of cases of intimidation and reprisals against individuals and groups who seek to cooperate cooperate or have cooperated with the United Nations State not a member of the Human Rights Council. GEE", - "values": [ - "Rejected by vote" - ] - }, - { - "text": "impeding the exercise of the right of peoples to self ECN. AHRCRES determination to the General Assembly at its seventysecond session and to the Human Rights Council at its thirtysixth session Decides to continue its consideration of this matter under the same agenda item at its thirtysixth session. th meeting September Adopted by a recorded vote of to with abstentions. The voting was as follows In favour Algeria Bangladesh Bolivia Plurinational State of Botswana Burundi China Congo C\u00f4te dIvoire Cuba Ecuador El Salvador Ethiopia India Indonesia Kenya Kyrgyzstan Maldives Mongolia Morocco Namibia Nigeria Panama Paraguay Philippines Qatar Russian Federation Saudi Arabia South Africa Togo United Arab Emirates Venezuela Bolivarian Republic of Viet Nam Against Albania Belgium France Georgia Germany Latvia Netherlands Portugal Republic of Korea Slovenia Switzerland the former Yugoslav Republic of Macedonia United Kingdom of Great Britain and Northern Ireland Abstaining Ghana Mexico", - "values": [ - "Adopted by vote" - ] - }, - { - "text": "the and observers the findings of each of the reports of the Office of the High Commissioner on the situation of human rights in Ukraine as part of the interactive dialogues and through the modalities of the Council in accordance with its resolution of June until the thirtyfifth session of the Council. th meeting July Adopted by a recorded vote of to with abstentions. The voting was as follows In favour Albania Belgium C\u00f4te dIvoire Ecuador France Georgia Germany Ghana Latvia Mexico Netherlands Nigeria Panama Paraguay Philippines Portugal Republic of Korea Slovenia Switzerland the former Yugoslav Republic of Macedonia Togo United Kingdom of Great Britain and Northern Ireland Against Bolivia Plurinational State of Burundi China Cuba Russian Federation Venezuela Bolivarian Republic of Abstaining Algeria Bangladesh Botswana Congo El Salvador Ethiopia India Indonesia Kenya Kyrgyzstan Maldives Mongolia Morocco Namibia Qatar Saudi Arabia South Africa United Arab Emirates Viet Nam", - "values": [ - "Adopted by vote" - ] - }, - { - "text": "AHRCL United Nations General Assembly Distr Limited September Original English Human Rights Council Twentyfourth session Agenda item Human rights bodies and mechanisms Algeria Belarus China Cuba Egypt Ethiopia India Pakistan Russian Federation South Africa Venezuela Bolivarian Republic of amendment to draft resolution AHRCL Cooperation with the United Nations its representatives and mechanisms in the field of human rights Paragraph should read Encourages all stakeholders including international and regional organizations States national human rights institutions civil society and academic institutions to contribute to the future consideration of this issue by the Human Rights Council Nonmember State of the Human Rights Council. GE", - "values": [ - "Withdrawn" - ] - }, - { - "text": "and encourages the continuation of that engagement in the promotion and protection of human rights and truth justice reconciliation and accountability in Sri Lanka Requests the Office of the High Commissioner and relevant special procedure mandate holders in consultation with and with the concurrence of the Government of Sri Lanka to continue to strengthen their advice and technical assistance on the promotion and protection of human rights and truth justice reconciliation and accountability in Sri Lanka Requests the Office of the High Commissioner to continue to assess progress on the implementation of its recommendations and other relevant processes relating to reconciliation accountability and human rights in Sri Lanka and to present a written update to the Human Rights Council at its fortythird session and a comprehensive report to be followed by a discussion on the implementation of Council resolution at its fortysixth session. nd meeting March Adopted without a vote AHRC.", - "values": [ - "Adopted without a vote" - ] - }, - { - "text": "and stresses the need to promote synergies among them Also recognizes that the World Programme for Human Rights Education can contribute to the implementation of the Agenda for Sustainable Development and encourages the Office of the High Commissioner in cooperation with the United Nations Educational Scientific and Cultural Organization to continue to support States efforts to implement the Agenda including Goal target thereof Requests the Office of the High Commissioner to seek the views of States national human rights institutions civil society organizations and other relevant stakeholders on the target sectors focus areas or thematic human rights issues for the fourth phase of the World Programme bearing in mind possible synergies with the Agenda for Sustainable Development and other relevant initiatives on human rights education and training and to submit a report thereon to the Human Rights Council at its thirtyninth session. th meeting September Adopted without a vote", - "values": [ - "Adopted without a vote" - ] - }, - { - "text": "AHRCL United Nations General Assembly Distr Limited March Original English Human Rights Council Thirtyfirst session Agenda item Promotion and protection of all human rights civil political economic social and cultural rights including the right to development China Egypt Russian Federation amendment to draft resolution AHRCL The promotion and protection of human rights in the context of peaceful protests Paragraph should read Calls upon all States to promote a safe and enabling environment for individuals and groups to exercise their rights to freedom of peaceful assembly of expression and of association recalls that all States have the responsibility in all circumstances including in the context of peaceful assemblies to promote respect and protect human rights and to prevent all human rights violations and calls upon States to avoid the abuse of criminal and civil proceedings or threats of such acts at all times GEE", - "values": [ - "Rejected by vote" - ] - }, - { - "text": "promotion of truth justice reparation and guarantees of nonrecurrence the Working Group on Arbitrary Detention and the Working Group on Enforced or Involuntary Disappearances to take full account of the present resolution in the discharge of their mandates Decides to continue consideration of this issue in accordance with its annual programme of work. rd meeting March Adopted by a recorded vote of to with abstentions. The voting was as follows In favour Angola Brazil Burundi Chile China C\u00f4te dIvoire Cuba Ecuador Egypt Ethiopia Kenya Kyrgyzstan Mexico Nepal Pakistan Panama Peru Philippines Rwanda South Africa Tunisia United Arab Emirates Venezuela Bolivarian Republic of Against Georgia United States of America Abstaining Afghanistan Australia Belgium Croatia Democratic Republic of the Congo Germany Hungary Iraq Japan Mongolia Nigeria Qatar Republic of Korea Saudi Arabia Senegal Slovakia Slovenia Spain Switzerland Togo Ukraine United Kingdom of Great Britain and Northern Ireland", - "values": [ - "Adopted by vote" - ] - }, - { - "text": "impact of climate change on the full and effective enjoyment of human rights particularly the human rights of migrants and persons displaced across international borders in the context of the adverse impact of climate change within their respective mandates Calls upon States to integrate a gender perspective in pursuing mitigation and adaptation responses to the adverse impact of climate change on the full and effective enjoyment of human rights including those of migrants and persons displaced across international borders in the context of the adverse impact of climate change Decides to consider the possibility of organizing followup events on climate change and human rights Requests the SecretaryGeneral and the High Commissioner to provide all the human and technical assistance necessary for the effective and timely realization of the abovementioned panel discussion and the summary report thereon Decides to remain seized of the matter. th meeting June Adopted without a vote", - "values": [ - "Adopted without a vote" - ] - }, - { - "text": "AHRCL United Nations General Assembly Distr Limited September Original English Human Rights Council Twentyfourth session Agenda item Human rights bodies and mechanisms Algeria Belarus China Cuba Egypt Ethiopia India Pakistan Russian Federation South Africa Venezuela Bolivarian Republic of amendment to draft resolution AHRCL Cooperation with the United Nations its representatives and mechanisms in the field of human rights After paragraph insert a new operative paragraph reading bis. Stresses that the information provided by all the stakeholders including civil society to the United Nations and its representatives and mechanisms in the field of human rights should be credible Nonmember State of the Human Rights Council. GE", - "values": [ - "Rejected by vote" - ] - }, - { - "text": "to health framework to the effective implementation and achievement of the healthrelated Sustainable Development Goals identifying best practices challenges and obstacles thereto and to submit it to the Human Rights Council at its thirtyeighth session Encourages the High Commissioner when elaborating the abovementioned report to consult and take into account the views of Member States and all relevant stakeholders including relevant United Nations bodies agencies funds and programmes especially the World Health Organization the treaty bodies special procedure mandate holders national human rights institutions and civil society as well as their work on the issue AHRCRES Calls upon States and all relevant stakeholders including relevant United Nations bodies agencies funds and programmes treaty bodies special procedure mandate holders national human rights institutions and civil society to contribute to the report of the High Commissioner. th meeting June Adopted without a vote", - "values": [ - "Adopted without a vote" - ] - }, - { - "text": "AHRCL United Nations General Assembly Distr Limited March Original English Human Rights Council Thirtyfirst session Agenda item Promotion and protection of all human rights civil political economic social and cultural rights including the right to development China Cuba Egypt Pakistan Russian Federation amendment to draft resolution AHRCL Protecting human rights defenders addressing economic social and cultural rights Delete paragraph Nonmember State of the Human Rights Council. GEE", - "values": [ - "Rejected by vote" - ] - }, - { - "text": "AHRCL United Nations General Assembly Distr Limited September Original English Human Rights Council Twentyfourth session Agenda item Human rights bodies and mechanisms Algeria Belarus China Cuba Ethiopia India Indonesia Pakistan Russian Federation South Africa Venezuela Bolivarian Republic of amendment to draft resolution AHRCL Cooperation with the United Nations its representatives and mechanisms in the field of human rights Paragraph should read Encourages States to consider addressing acts of intimidation and reprisals against individuals and groups who cooperate or have cooperated with the United Nations its representatives and mechanisms in the field of human rights Nonmember State of the Human Rights Council. GE", - "values": [ - "Rejected by vote" - ] - }, - { - "text": "to the ChairRapporteur to present it to the Human Rights Council at its thirtyfifth session Requests the SecretaryGeneral and the High Commissioner to provide the Working Group with all the human technical and financial assistance necessary for the effective implementation of its mandate Decides to remain seized of this priority matter. th meeting March GEE AHRCRES Adopted by a recorded vote of to with no abstentions. The voting was as follows In favour Albania Bangladesh Belgium Bolivia Plurinational State of Botswana Brazil Burundi China Congo C\u00f4te dIvoire Croatia Cuba Ecuador Egypt El Salvador Ethiopia Georgia Germany Ghana Hungary India Indonesia Iraq Japan Kenya Kyrgyzstan Latvia Mongolia Netherlands Nigeria Panama Paraguay Philippines Portugal Qatar Republic of Korea Rwanda Saudi Arabia Slovenia South Africa Switzerland Togo Tunisia United Arab Emirates United Kingdom of Great Britain and Northern Ireland Venezuela Bolivarian Republic of Against United States of America", - "values": [ - "Adopted by vote" - ] - }, - { - "text": "to and persons with increased vulnerability in the administration of justice Calls upon the United Nations High Commissioner for Human Rights to strengthen advisory services and technical assistance relating to national capacitybuilding in the field of the administration of justice in particular juvenile justice Requests the High Commissioner to submit to the Human Rights Council at its fortysecond session a report on human rights in the administration of justice in particular on violence death and serious injury in situations of deprivation of liberty drawing on the experience of United Nations and regional human rights mechanisms and seeking the views of States including on their policies and best practices civil society and other relevant stakeholders See General Assembly resolution para. d. AHRCRES Decides to continue its consideration of this issue under the same agenda item in accordance with its annual programme of work. th meeting September Adopted without a vote", - "values": [ - "Adopted without a vote" - ] - }, - { - "text": "the and implementation of activities relating to the International Year and to uphold the spirit of the International Year by taking measures to promote and protect the right of indigenous peoples to preserve and develop their languages Notes the activity of the United Nations Indigenous Peoples Partnership and the systemwide action plan for ensuring a coherent approach to achieving the ends of the United Nations Declaration on the Rights of Indigenous Peoples and invites States and other potential donors to support it Urges States and invites other public andor private actors or institutions to contribute to the United Nations Voluntary Fund for Indigenous Peoples as an important means of promoting the rights of indigenous peoples worldwide and within the United Nations system Decides to continue its consideration of this question at a future session in conformity with its annual programme of work. th meeting September Adopted without a vote See General Assembly resolution", - "values": [ - "Adopted without a vote" - ] - }, - { - "text": "assist the Palestinian people in the early realization of their inalienable human rights including their right to selfdetermination as a matter of urgency in the light of the onset of the fiftieth year of the Israeli occupation and the continued denial and violation of the human rights of the Palestinian people Decides to remain seized of the matter. th meeting March Adopted by a recorded vote of to with abstentions. The voting was as follows In favour Afghanistan Angola Belgium Brazil Burundi Chile China C\u00f4te dIvoire Croatia Cuba Ecuador Egypt Ethiopia Georgia Germany Hungary Iraq Japan Kenya Kyrgyzstan Mexico Nepal Nigeria Pakistan Panama Peru Philippines Qatar Republic of Korea Saudi Arabia Senegal Slovakia Slovenia South Africa Spain Switzerland Tunisia Ukraine United Arab AHRCRES Emirates United Kingdom of Great Britain and Northern Ireland Venezuela Bolivarian Republic of Against Australia Togo United States of America Abstaining Democratic Republic of the Congo Rwanda", - "values": [ - "Adopted by vote" - ] - }, - { - "text": "AHRCL United Nations General Assembly Distr Limited March Original English Human Rights Council Thirtyfirst session Agenda item Promotion and protection of all human rights civil political economic social and cultural rights including the right to development China Egypt Pakistan Russian Federation amendment to draft resolution AHRCL Protecting human rights defenders addressing economic social and cultural rights Paragraph should read Recognizes the important role of individuals groups and organs of society that defend human rights in identifying and raising awareness of the human rights impact benefits and risks of development projects and business operations by expressing their views concerns support criticism or dissent regarding government policy or action or business activities and underlines the need for Governments to take the measures necessary to safeguard space for such public dialogue and its participants Nonmember State of the Human Rights Council. GEE", - "values": [ - "Rejected by vote" - ] - }, - { - "text": "AHRCL United Nations General Assembly Distr Limited September Original English Human Rights Council Twentyfourth session Agenda item Human rights bodies and mechanisms Algeria Belarus China Cuba Egypt Ethiopia India Pakistan Russian Federation South Africa Venezuela Bolivarian Republic of amendment to draft resolution AHRCL Cooperation with the United Nations its representatives and mechanisms in the field of human rights After the second preambular paragraph insert a new paragraph reading Reiterating that the promotion and protection of human rights should be based on the principles of cooperation and genuine dialogue and aimed at strengthening the capacity of Member States to comply with their human rights obligations for the benefit of all human beings Nonmember State of the Human Rights Council. GE", - "values": [ - "Rejected by vote" - ] - }, - { - "text": "appropriate tools or mechanisms to review measure and assess progress in good governance including but not limited to the Sustainable Development Goals including Goal Requests the High Commissioner a To convene before the fortyfirst session of the Human Rights Council a halfday intersessional seminar on the role of good governance in the promotion and protection of human rights and on sharing best practices in the implementation of the Sustainable Development Goals including Goal in this regard b To invite States the special procedures and other relevant stakeholders from diverse regions including experts and civil society organizations and relevant United Nations agencies funds and programmes and other international organizations to participate actively in the abovementioned seminar c To submit to the Human Rights Council at its fortythird session a report in the form of a summary on the seminar Decides to remain seized of the matter. rd meeting March Adopted without a vote", - "values": [ - "Adopted without a vote" - ] - }, - { - "text": "sector to cooperate fully with the Independent Expert in the discharge of the mandate Requests the Independent Expert to submit a report on the implementation of the present resolution to the Human Rights Council at its fortieth session Decides to continue its consideration of this matter at its fortieth session under the same agenda item. rd meeting March AHRCRES Adopted by a recorded vote of to with abstentions. The voting was as follows In favour Angola Burundi Chile China C\u00f4te dIvoire Cuba Democratic Republic of the Congo Ecuador Egypt Ethiopia Iraq Kenya Kyrgyzstan Mongolia Nepal Nigeria Pakistan Philippines Qatar Rwanda Saudi Arabia Senegal South Africa Togo Tunisia United Arab Emirates Venezuela Bolivarian Republic of Against Australia Belgium Brazil Croatia Georgia Germany Hungary Japan Republic of Korea Slovakia Slovenia Spain Switzerland Ukraine United Kingdom of Great Britain and Northern Ireland United States of America Abstaining Afghanistan Mexico Panama Peru", - "values": [ - "Adopted by vote" - ] - }, - { - "text": "AHRCL United Nations General Assembly Distr Limited September Original English Human Rights Council Twentyfourth session Agenda item Human rights bodies and mechanisms Algeria Belarus China Cuba Egypt Ethiopia India Pakistan Russian Federation South Africa Venezuela Bolivarian Republic of amendment to draft resolution AHRCL Cooperation with the United Nations its representatives and mechanisms in the field of human rights Paragraph should read Invites the SecretaryGeneral to include in his next annual report on cooperation with the United Nations its representatives and mechanisms in the field of human rights information on the different measures hampering cooperation with United Nations human rights mechanisms and the best practices of international regional and national human rights bodies and institutions that address cases of intimidation or reprisal against those seeking to cooperate cooperating or having cooperated with them Nonmember State of the Human Rights Council. GE", - "values": [ - "Rejected by vote" - ] - }, - { - "text": "private sector and international organizations Requests the SecretaryGeneral to take appropriate measures to disseminate information about the Social Forum to invite relevant individuals and organizations to the Forum and to take all practical measures required for the success of this initiative Invites the Social Forum to submit a report containing its conclusions and recommendations to the Human Rights Council at its fortyfirst session Requests the SecretaryGeneral to provide the Social Forum with all the services and facilities necessary to fulfil its activities and requests the High Commissioner to provide all the support necessary to facilitate the convening and proceedings of the Forum Encourages all Member States to participate in the discussions of the Social Forum so that worldwide representation in the debates can be ensured Decides to continue consideration of this issue at its fortyfirst session under the same agenda item. th meeting July Adopted without a vote", - "values": [ - "Adopted without a vote" - ] - }, - { - "text": "public affairs in efforts to promote and protect human rights at the local level Requests the United Nations High Commissioner for Human Rights to prepare a report in consultation with all States and relevant intergovernmental organizations United Nations agencies funds and programmes relevant special procedures of the Human Rights Council the Advisory Committee the treaty bodies national human rights institutions civil society including nongovernmental organizations and local governments on effective methods to foster cooperation between local government and local stakeholders for the effective promotion and protection of human rights at their level through local government programmes including raising awareness of the Sustainable Development Goals and to indicate the major challenges and best practices in this regard and to submit the report to the Council prior to its fortysecond session Decides to remain seized of the matter. th meeting September Adopted without a vote AHRC.", - "values": [ - "Adopted without a vote" - ] - }, - { - "text": "AHRCL United Nations General Assembly Distr Limited June Original English Human Rights Council Thirtyfifth session June Agenda item Promotion and protection of all human rights civil political economic social and cultural rights including the right to development Denmark Finland Iceland Netherlands Norway Sweden Switzerland United Kingdom of Great Britain and Northern Ireland amendment to draft resolution AHRCL Protection of the family role of the family in supporting the protection and promotion of human rights of older persons The title of the draft resolution should read Protection of the family the role of families in supporting the protection and promotion of human rights of older persons State not a member of the Human Rights Council. GEE", - "values": [ - "Rejected by vote" - ] - }, - { - "text": "urgently towards the comprehensive implementation of the Geneva communiqu\u00e9 including through the establishment of an inclusive transitional governing body with full executive powers which shall be formed on the basis of mutual consent while ensuring the continuity of governmental institutions Decides to remain seized of the matter. th meeting June Adopted by a recorded vote of to with abstentions. The voting was as follows In favour Albania Belgium Botswana Brazil C\u00f4te dIvoire Croatia El Salvador Georgia Germany Ghana Hungary Japan Latvia Netherlands Panama Paraguay Portugal Qatar Republic of Korea Rwanda Saudi Arabia AHRCRES Slovenia Switzerland Togo United Arab Emirates United Kingdom of Great Britain and Northern Ireland United States of America Against Bolivia Plurinational State of Burundi China Cuba Iraq Kyrgyzstan Philippines Venezuela Bolivarian Republic of Abstaining Bangladesh Congo Ecuador Egypt Ethiopia India Indonesia Kenya Mongolia Nigeria South Africa Tunisia", - "values": [ - "Adopted by vote" - ] - }, - { - "text": "AHRCL United Nations General Assembly Distr Limited September Original English Human Rights Council Thirtysixth session September Agenda item Promotion and protection of all human rights civil political economic social and cultural rights including the right to development China Egypt Pakistan Russian Federation Venezuela Bolivarian Republic of amendment to draft resolution AHRCL Enforced or involuntary disappearances After the sixteenth preambular paragraph insert a new preambular paragraph reading Reiterating that special procedure mandate holders shall always seek to establish the facts based on objective reliable information emanating from relevant credible sources that they have duly crosschecked to the best extent possible and underlining the centrality of the principles of impartiality and objectivity of mandate holders State not a member of the Human Rights Council. GEE", - "values": [ - "Rejected by vote" - ] - }, - { - "text": "Thirtysecond session Agenda item Promotion and protection of all human rights civil political economic social and cultural rights including the right to development Pakistan amendment to draft resolution AHRCLRev Protection against violence and discrimination based on sexual orientation and gender identity Replace paragraphs and with a new paragraph reading Requests the United Nations High Commissioner for Human Rights to present a report to the to the Human Rights Council at its thirtyfifth session on the protection of all individuals against violence and discrimination committed because of their race colour sex language religion political or other opinion national or social origin property birth or other status with a focus on major challenges and best practices in this regard State not a member of the Human Rights Council. On behalf of the States Members of the United Nations that are members of the Organization of Islamic Cooperation with the exception of Albania. GEE", - "values": [ - "Rejected by vote" - ] - }, - { - "text": "General Assembly Distr Limited March Original English Human Rights Council Thirtyseventh session February March Agenda item Promotion and protection of all human rights civil political economic social and cultural rights including the right to development Cuba Egypt Pakistan Philippines Russian Federation Saudi Arabia South Africa United Arab Emirates Venezuela Bolivarian Republic of amendment to draft resolution AHRCL Contribution to the implementation of the joint commitment to effectively addressing and countering the world drug problem with regard to human rights Paragraph should read Encourages the United Nations High Commissioner for Human Rights and relevant international human rights mechanisms to continue within their respective mandates and through the appropriate established channels with the Commission on Narcotic Drugs their contribution to addressing the human rights implications of the world drug problem State not a member of the Human Rights Council. GEE", - "values": [ - "Rejected by vote" - ] - }, - { - "text": "and corporations and other business enterprises in followup to Human Rights Council resolution Requests the United Nations High Commissioner for Human Rights to report on the implementation of the provisions of the present resolution to the Human Rights Council at its thirtyseventh session Decides to remain seized of the matter. th meeting March Adopted by a recorded vote of to with abstentions. The voting was as follows In favour Bangladesh Belgium Bolivia Plurinational State of Botswana Brazil Burundi China Congo C\u00f4te dIvoire Cuba Ecuador Egypt El Salvador Ethiopia Germany Ghana India Indonesia Iraq Japan Kenya Kyrgyzstan AHRCRES Mongolia Netherlands Nigeria Philippines Portugal Qatar Republic of Korea Saudi Arabia Slovenia South Africa Switzerland Tunisia United Arab Emirates Venezuela Bolivarian Republic of Against Togo United States of America Abstaining Albania Croatia Georgia Hungary Latvia Panama Paraguay Rwanda United Kingdom of Great Britain and Northern Ireland", - "values": [ - "Adopted by vote" - ] - }, - { - "text": "of African States as well as with other relevant international organizations Central African civil society and all relevant human rights mechanisms Further requests the Independent Expert to work closely with the Special Representative of the SecretaryGeneral on Sexual Violence in Conflict and the Special Representative of the SecretaryGeneral for Children and Armed Conflict Requests the Independent Expert to provide an oral update on her report on technical assistance and capacitybuilding in the field of human rights in the Central African Republic to the Human Rights Council at its fortyfirst session and to submit a written report to the Council at its fortysecond session GE AHRCRES Requests the United Nations High Commissioner for Human Rights to continue to provide the Independent Expert with all the financial and human resources necessary to enable her to carry out fully her mandate Decides to remain seized of the matter. st meeting September Adopted without a vote GE", - "values": [ - "Adopted without a vote" - ] - }, - { - "text": "the central role of the highlevel political forum on sustainable development which meets under the auspices of the General Assembly and the Economic and Social Council and has a mandate to oversee a network of processes for the followup to and review of the Agenda at the global level Takes note of the reports of the SecretaryGeneral on critical milestones towards coherent efficient and inclusive followup to and review of the Agenda at the global level and on progress towards the Sustainable Development Goals Decides to invite the President of the Economic and Social Council commencing in to brief on an annual basis the Human Rights Council during one of its regular sessions on the discussions of the highlevel political forum including on gaps challenges and progress in the implementation of the Agenda focusing on the means of implementation taken together as an integrated package Also decides to remain seized of this issue. th meeting March Adopted without a vote A. E.", - "values": [ - "Adopted without a vote" - ] - }, - { - "text": "organizations in the discharge of her mandate Requests the Independent Expert to report regularly to the Human Rights Council and to the General Assembly in accordance with their respective programmes of work AHRC. AHRCRES Decides to continue its consideration of this matter under the same agenda item. nd meeting June Adopted by a recorded vote of to with abstention. The voting was as follows In favour Algeria Bangladesh Bolivia Plurinational State of Botswana Burundi China Congo C\u00f4te dIvoire Cuba Ecuador El Salvador Ethiopia Ghana India Indonesia Kenya Kyrgyzstan Maldives Mongolia Morocco Namibia Nigeria Panama Paraguay Philippines Qatar Russian Federation Saudi Arabia South Africa Togo United Arab Emirates Venezuela Bolivarian Republic of Viet Nam Against Albania Belgium France Georgia Germany Latvia Netherlands Portugal Republic of Korea Slovenia Switzerland the former Yugoslav Republic of Macedonia United Kingdom of Great Britain and Northern Ireland Abstaining Mexico", - "values": [ - "Adopted by vote" - ] - }, - { - "text": "society space including its work on widening the democratic space and invites it to continue efforts in this regard Requests the High Commissioner to prepare a report on progress made in improving civil society engagement with international and regional organizations and to present it to the Human Rights Council at its fortyfourth session Decides to remain seized of the matter. th meeting July Adopted by a recorded vote of to with abstentions. The voting was as follows In favour Afghanistan Angola Australia Belgium Brazil Chile C\u00f4te dIvoire Croatia Democratic Republic of the Congo Ecuador Georgia Germany Hungary Iraq Japan Kenya Mexico Mongolia Nepal Pakistan Panama Peru Philippines Republic of Korea Rwanda Senegal Slovakia Slovenia South Africa Spain Switzerland Togo Tunisia Ukraine and United Kingdom of Great Britain and Northern Ireland Abstaining Burundi China Cuba Egypt Ethiopia Kyrgyzstan Nigeria Qatar Saudi Arabia United Arab Emirates Venezuela Bolivarian Republic of", - "values": [ - "Adopted by vote" - ] - }, - { - "text": "and all relevant stakeholders in particular representatives of peasants and other people working in rural areas to contribute actively and constructively to the work of the working group Requests the working group to submit an annual report on progress made to the Human Rights Council and the General Assembly for their consideration. st meeting September Adopted by a recorded vote of to with abstentions. The voting was as follows In favour Bangladesh Bolivia Plurinational State of Botswana Brazil Burundi China Congo C\u00f4te dIvoire Cuba Ecuador Egypt El Salvador Ethiopia Ghana India Indonesia Iraq Kenya Kyrgyzstan Mongolia Nigeria Panama Paraguay Philippines Portugal Qatar Rwanda Saudi Arabia South Africa Switzerland Togo Tunisia United Arab Emirates Venezuela Bolivarian Republic of Against United Kingdom of Great Britain and Northern Ireland United States of America Abstaining Albania Belgium Croatia Georgia Germany Hungary Japan Latvia Netherlands Republic of Korea Slovenia", - "values": [ - "Adopted by vote" - ] - }, - { - "text": "also urges the Government to extend full cooperation to thematic special procedures Requests the Office of the United Nations High Commissioner for Human Rights to provide the Special Rapporteur with the assistance and resources necessary to allow the fulfilment of the mandate. th meeting July Adopted by a recorded vote of to with abstentions. The voting was as follows In favour Albania Belgium France Germany Latvia Mexico Netherlands Panama Paraguay Portugal Republic of Korea Slovenia Switzerland the former Yugoslav Republic of Macedonia United Kingdom of Great Britain and Northern Ireland Against Bolivia Plurinational State of Burundi China Cuba India Nigeria Russian Federation Venezuela Bolivarian Republic of Viet Nam Abstaining Algeria Bangladesh Botswana Congo C\u00f4te dIvoire Ecuador El Salvador Ethiopia Georgia Ghana Indonesia Kenya Kyrgyzstan Maldives Mongolia Morocco Namibia Philippines Qatar Saudi Arabia South Africa Togo United Arab Emirates General Assembly resolution", - "values": [ - "Adopted by vote" - ] - }, - { - "text": "the situation of human rights in Yemen and the development and implementation of the present resolution and to present to the Council at its fortysecond session a written report on the situation of human rights including violations and abuses committed since September as well as on the implementation of technical assistance as stipulated in the present resolution. st meeting September Adopted by a recorded vote of to with abstentions. The voting was as follows In favour Australia Belgium Brazil Chile C\u00f4te dIvoire Croatia Ecuador Germany Hungary Iceland Mexico Panama Peru Qatar Republic of Korea Slovakia Slovenia Spain Switzerland Ukraine United Kingdom of Great Britain and Northern Ireland Against Burundi China Cuba Egypt Pakistan Saudi Arabia United Arab Emirates Venezuela Bolivarian Republic of Abstaining Afghanistan Angola Democratic Republic of the Congo Ethiopia Georgia Iraq Japan Kenya Kyrgyzstan Mongolia Nepal Nigeria Philippines Rwanda Senegal South Africa Togo Tunisia", - "values": [ - "Adopted by vote" - ] - }, - { - "text": "AHRCL United Nations General Assembly Distr Limited March Original English Human Rights Council Thirtyfirst session Agenda item Promotion and protection of all human rights civil political economic social and cultural rights including the right to development China Cuba Egypt Pakistan Russian Federation amendment to draft resolution AHRCL Protecting human rights defenders addressing economic social and cultural rights Paragraph should read Underscores in this regard the responsibility of all business enterprises both transnational and others to respect human rights including economic social and cultural rights and the right to development Nonmember State of the Human Rights Council. GEE", - "values": [ - "Rejected by vote" - ] - }, - { - "text": "within the current staff selection system to achieve an equitable geographical representation of the Office as requested by the Council in the present and past resolutions AHRCRES Decides to remain seized of the matter. th meeting September Adopted by a recorded vote of to with abstention. The voting was as follows In favour Bangladesh Bolivia Plurinational State of Botswana Brazil Burundi China Congo C\u00f4te dIvoire Cuba Ecuador Egypt El Salvador Ethiopia Ghana India Indonesia Iraq Kenya Kyrgyzstan Mongolia Nigeria Panama Paraguay Philippines Qatar Rwanda Saudi Arabia South Africa Tunisia United Arab Emirates Venezuela Bolivarian Republic of Against Albania Belgium Croatia Georgia Germany Hungary Japan Latvia Netherlands Portugal Republic of Korea Slovenia Switzerland United Kingdom of Great Britain and Northern Ireland United States of America Abstaining Togo The delegation of Albania subsequently informed the Human Rights Council secretariat that it had intended to abstain.", - "values": [ - "Adopted by vote" - ] - }, - { - "text": "AHRCL United Nations General Assembly Distr Limited March Original English Human Rights Council Thirtyfirst session Agenda item Promotion and protection of all human rights civil political economic social and cultural rights including the right to development China Cuba Egypt Pakistan Russian Federation amendment to draft resolution AHRCL Protecting human rights defenders addressing economic social and cultural rights Paragraph should read Encourages all States to engage in initiatives to promote effective prevention accountability remedy and reparations with a view to protecting the human rights of everyone including from human rights abuses by business enterprises Nonmember State of the Human Rights Council. GEE", - "values": [ - "Rejected by vote" - ] - }, - { - "text": "to and preserve multilateralism and to take the measures necessary to strengthen bilateral regional and international cooperation aimed at addressing the negative impact of unilateral coercive measures on the full enjoyment of all human rights Decides to continue its consideration of the issue of the negative impact of unilateral coercive measures on the enjoyment of human rights in accordance with its programme of work. nd meeting March Adopted by a recorded vote of to with abstentions. The voting was as follows In favour Angola Bahamas Bahrain Bangladesh Burkina Faso Cameroon Chile China Cuba Democratic Republic of the Congo Egypt Eritrea Fiji India Iraq Nepal Nigeria Pakistan Philippines Qatar Rwanda Saudi Arabia Somalia South Africa Togo Tunisia Uruguay Against Australia Austria Brazil Bulgaria Croatia Czechia Denmark Hungary Iceland Italy Japan Slovakia Spain Ukraine United Kingdom of Great Britain and Northern Ireland Abstaining Afghanistan Argentina Mexico Peru Senegal", - "values": [ - "Adopted by vote" - ] - }, - { - "text": "and of the United Nations system to continue to support and assist the Palestinian people in the early realization of their inalienable human rights including their right to selfdetermination as a matter of urgency in the light of the onset of the fiftieth year of the Israeli occupation and the continued denial and violation of the human rights of the Palestinian people AHRCRES Decides to remain seized of the matter. th meeting March Adopted by a recorded vote of to with abstentions. The voting was as follows In favour Afghanistan Angola Argentina Austria Bahamas Bahrain Bangladesh Brazil Bulgaria Burkina Faso Chile China Croatia Cuba Czechia Egypt Eritrea Fiji Iceland India Iraq Italy Japan Mexico Nepal Nigeria Pakistan Peru Philippines Qatar Saudi Arabia Senegal Slovakia Somalia South Africa Spain Tunisia Ukraine Uruguay Against Australia Denmark United Kingdom of Great Britain and Northern Ireland Abstaining Cameroon Democratic Republic of the Congo Hungary Rwanda Togo", - "values": [ - "Adopted by vote" - ] - }, - { - "text": "identifying challenges and good practices Requests the United Nations High Commissioner for Human Rights to organize the panel discussion in consultation with States relevant United Nations bodies funds and programmes treaty bodies special procedures and regional human rights mechanisms as well as with civil society nongovernmental organizations national human rights institutions and specialized national equality bodies as appropriate with a view to ensuring their participation in the panel discussion Also requests the High Commissioner to prepare a summary report on the panel discussion and to submit it to the Human Rights Council at its fortysecond session Invites the relevant mechanisms of the Human Rights Council and the United Nations treaty bodies to continue to pay particular attention to violations of human rights stemming from racism and xenophobia in political circles especially with regard to their incompatibility with democracy. th meeting July Adopted without a vote", - "values": [ - "Adopted without a vote" - ] - }, - { - "text": "AHRCL United Nations General Assembly Distr Limited March Original English Human Rights Council Thirtyfirst session Agenda item Promotion and protection of all human rights civil political economic social and cultural rights including the right to development China Cuba Iran Islamic Republic of Russian Federation amendment to draft resolution AHRCL The promotion and protection of human rights in the context of peaceful protests After paragraph insert a new paragraph reading bis. Urges States to ensure that organizers and leaders of protests are cognizant that they have duties and responsibilities with regard to the proper conduct of those participating in the protests organized under their auspices Nonmember State of the Human Rights Council. GEE", - "values": [ - "Rejected by vote" - ] - }, - { - "text": "to the human rights implications of the world drug problem Invites the Commission on Narcotic Drugs to take into account the contribution of the Human Rights Council in particular during the ministerial segment of the sixtysecond session of the Commission in in accordance with relevant rules of procedure and established practices. AHRC. AHRCRES th meeting March Adopted by a recorded vote of to with abstentions. The voting was as follows In favour Angola Australia Belgium Brazil Chile Croatia Ecuador Georgia Germany Hungary Japan Kyrgyzstan Mexico Mongolia Nepal Panama Peru Republic of Korea Rwanda Slovakia Slovenia Spain Switzerland Ukraine United Kingdom of Great Britain and Northern Ireland United States of America Against Burundi China Cuba Egypt Iraq Pakistan Philippines Saudi Arabia United Arab Emirates Venezuela Bolivarian Republic of Abstaining Afghanistan C\u00f4te dIvoire Democratic Republic of the Congo Ethiopia Kenya Nigeria Qatar Senegal South Africa Togo Tunisia", - "values": [ - "Adopted by vote" - ] - }, - { - "text": "AHRCL United Nations General Assembly Distr Limited March Original English Human Rights Council Thirtyfirst session Agenda item Promotion and protection of all human rights civil political economic social and cultural rights including the right to development China Cuba Egypt Iran Islamic Republic of Pakistan Russian Federation amendment to draft resolution AHRCL The promotion and protection of human rights in the context of peaceful protests Paragraph should read Encourages the Special Rapporteur on the rights to freedom of peaceful assembly and of association and other relevant special procedures of the Human Rights Council as appropriate in the framework of their mandates to continue to address in their work the management of peaceful assemblies and the promotion and protection of human rights in such contexts Nonmember State of the Human Rights Council. GEE", - "values": [ - "Rejected by vote" - ] - }, - { - "text": "inter alia the submission of comments and suggestions on ways and means of realizing the right to food Requests the Special Rapporteur to submit a report on the implementation of the present resolution to the Human Rights Council at its fortieth session Decides to continue consideration of this matter under the same agenda item at its fortieth session. rd meeting March Adopted by a recorded vote of to with no abstentions. The voting was as follows In favour Afghanistan Angola Australia Belgium Brazil Burundi Chile China C\u00f4te dIvoire Croatia Cuba Democratic Republic of the Congo Ecuador Egypt Ethiopia Georgia Germany Hungary Iraq Japan Kenya Kyrgyzstan Mexico Mongolia Nepal Nigeria Pakistan Panama Peru Philippines Qatar Republic of Korea Rwanda Saudi Arabia Senegal Slovakia Slovenia South Africa Spain Switzerland Togo Tunisia Ukraine United Arab Emirates United Kingdom of Great Britain and Northern Ireland Venezuela Bolivarian Republic of Against United States of America AHRC.", - "values": [ - "Adopted by vote" - ] - }, - { - "text": "to fulfil his or her mandate Requests the SecretaryGeneral and the United Nations High Commissioner for Human Rights to provide the Independent Expert with all the human technical and financial resources necessary for the effective fulfilment of his or her mandate Decides to remain seized of this issue. st meeting June Adopted by a recorded vote of to with abstentions. The voting was as follows In favour Albania Belgium Bolivia Plurinational State of Cuba Ecuador El Salvador France Georgia Germany Latvia Mexico Mongolia Netherlands Panama Paraguay Portugal Republic of Korea Slovenia Switzerland the former Yugoslav Republic of Macedonia United Kingdom of Great Britain and Northern Ireland Venezuela Bolivarian Republic of Viet Nam Against Algeria Bangladesh Burundi China Congo C\u00f4te dIvoire Ethiopia Indonesia Kenya Kyrgyzstan Maldives Morocco Nigeria Qatar Russian Federation Saudi Arabia Togo United Arab Emirates Abstaining Botswana Ghana India Namibia Philippines South Africa", - "values": [ - "Adopted by vote" - ] - }, - { - "text": "the Human Rights Council as appropriate in the framework of their mandates to continue to address in their work the AHRC. AHRCRES management of assemblies and the promotion and protection of human rights in such contexts Decides to remain seized of the matter. th meeting March Adopted by a recorded vote of to with abstentions The voting was as follows In favour Albania Algeria Belgium Botswana C\u00f4te dIvoire Ecuador El Salvador Ethiopia France Georgia Germany Ghana India Indonesia Kenya Kyrgyzstan Latvia Maldives Mexico Mongolia Morocco Netherlands Panama Paraguay Philippines Portugal Republic of Korea Slovenia Switzerland the former Yugoslav Republic of Macedonia United Kingdom of Great Britain and Northern Ireland Against Burundi China Cuba Russian Federation Venezuela Bolivarian Republic of Abstaining Bangladesh Bolivia Plurinational State of Namibia Nigeria Qatar Saudi Arabia South Africa Togo United Arab Emirates Viet Nam The delegation of the Congo did not cast a vote.", - "values": [ - "Adopted by vote" - ] - }, - { - "text": "AHRCL United Nations General Assembly Distr Limited September Original English Human Rights Council Thirtysixth session September Agenda item Human rights bodies and mechanisms China Egypt India Russian Federation Venezuela Bolivarian Republic of amendment to draft resolution AHRCLRev Cooperation with the United Nations its representatives and mechanisms in the field of human rights Delete the sixth preambular paragraph. State not a member of the Human Rights Council. GEE", - "values": [ - "Rejected by vote" - ] - }, - { - "text": "an to the Human Rights Council in conformity with its annual programme of work Acknowledges the importance of providing the working group with the expertise and expert advice necessary to fulfil its mandate and decides that the working group shall invite experts and all relevant stakeholders to participate in its work Invites the contributions of Governments relevant special procedure mandate holders and mechanisms of the Human Rights Council the treaty bodies regional groups intergovernmental organizations civil society the industry and other stakeholders with relevant expertise including the CoChairs of the Montreux Document Forum and the International Code of Conduct Association Requests the SecretaryGeneral and the United Nations High Commissioner for Human Rights to provide the working group with all the financial and human resources necessary for the fulfilment of its mandate Decides to remain seized of this important matter. th meeting September Adopted without a vote", - "values": [ - "Adopted without a vote" - ] - }, - { - "text": "AHRCL United Nations General Assembly Distr Limited June Original English Human Rights Council Thirtyfifth session June Agenda item Promotion and protection of all human rights civil political economic social and cultural rights including the right to development Belarus China Egypt Russian Federation amendment to draft resolution AHRCL Elimination of discrimination against women and girls Seventh and seventeenth preambular paragraphs and operative paragraphs c and d For women human rights defenders read women engaged in the promotion and protection of universally recognized human rights and fundamental freedoms State not a member of the Human Rights Council. GEE", - "values": [ - "Rejected by vote" - ] - }, - { - "text": "AHRCL United Nations General Assembly Distr Limited March Original English Human Rights Council Thirtyfourth session February March Agenda item Promotion and protection of all human rights civil political economic social and cultural rights including the right to development Russian Federation amendment to draft resolution AHRCL Mandate of the Special Rapporteur on the situation of human rights defenders The fourth preambular paragraph should read Recalling further all the previous resolutions on this subject State not a member of the Human Rights Council. GEE", - "values": [ - "Rejected by vote" - ] - }, - { - "text": "financial organizations shall promote respect for and the full application of the present Declaration and follow up on its effectiveness. AHRCRES Article Nothing in the present Declaration may be construed as diminishing impairing or nullifying the rights that peasants and other people working in rural areas and indigenous peoples currently have or may acquire in the future. The human rights and fundamental freedoms of all without discrimination of any kind shall be respected in the exercise of the rights enunciated in the present Declaration. The exercise of the rights set forth in the present Declaration shall be subject only to such limitations as are determined by law and that are compliant with international human rights obligations. Any such limitations shall be nondiscriminatory and necessary solely for the purpose of securing due recognition and respect for the rights and freedoms of others and for meeting the just and most compelling requirements of a democratic society.", - "values": [ - "Adopted by vote" - ] - }, - { - "text": "in the two meetings as appropriate Also requests the High Commissioner to provide for the abovementioned oneday intersessional meetings all the services and facilities necessary to make the discussions fully accessible to persons with disabilities Requests the President of the Human Rights Council to appoint for each meeting on the basis of regional rotation and in consultation with regional groups a chairperson of the meeting from candidates nominated by members and observers of the Council the chair together with the Office of the High Commissioner shall be responsible for the preparation of summary reports of the discussions of the meetings to be made available to all its participants and for their presentation to the Council at its fortieth and fortythird sessions respectively Decides that the summary reports of the discussions of the two meetings should be made available to the highlevel political forum on sustainable development. th meeting March Adopted without a vote", - "values": [ - "Adopted without a vote" - ] - }, - { - "text": "AHRCL United Nations General Assembly Distr Limited September Original English Human Rights Council Thirtysixth session September Agenda item Promotion and protection of all human rights civil political economic social and cultural rights including the right to development Azerbaijan Bahrain Bangladesh Brunei Darussalam China Egypt Iran Islamic Republic of Kuwait Malaysia Maldives Morocco Nigeria Oman Pakistan Saudi Arabia Singapore United Arab Emirates amendment to draft resolution AHRCL The question of the death penalty After paragraph insert a new paragraph reading bis. Reaffirms the sovereign right of all States to develop their own legal systems including determining appropriate legal penalties in accordance with their international law obligations State not a member of the Human Rights Council. GEE", - "values": [ - "Rejected by vote" - ] - }, - { - "text": "AHRCL United Nations General Assembly Distr Limited March Original English Human Rights Council Thirtyfirst session Agenda item Promotion and protection of all human rights civil political economic social and cultural rights including the right to development China Cuba Egypt Iran Islamic Republic of Pakistan Russian Federation amendment to draft resolution AHRCL The promotion and protection of human rights in the context of peaceful protests The fourth preambular paragraph should read Recalling also all its previous resolutions and decisions on the promotion and protection of human rights in the context of peaceful protests Nonmember State of the Human Rights Council. GEE", - "values": [ - "Rejected by vote" - ] - }, - { - "text": "with a view to ensuring their participation in the panel discussion and to make the panel discussion fully accessible for persons with disabilities Requests the United Nations High Commissioner for Human Rights to make provisions and to provide resources for the abovementioned panel discussion and to circulate the relevant information among States and other stakeholders Invites the High Commissioner to make provisions for events and arrangements for the celebration of the anniversary of the Convention on the Rights of the Child and to circulate the relevant information among States and other stakeholders from within existing resources and where appropriate in partnership with other international and regional organizations Encourages States to use the anniversary of the Convention on the Rights of the Child as a tool to raise awareness of the Convention and to maintain momentum and increase action with respect to the rights of the child. rd meeting March Adopted without a vote", - "values": [ - "Adopted without a vote" - ] - }, - { - "text": "the Government of the Islamic Republic of Iran to cooperate fully with the Special Rapporteur and to permit access to visit the country and to provide all information necessary to allow the fulfilment of the mandate AHRC. GEE AHRCRES Requests the SecretaryGeneral to provide the Special Rapporteur with the resources necessary to fulfil the mandate. th meeting March Adopted by a recorded vote of to with abstentions. The voting was as follows In favour Australia Belgium Chile C\u00f4te dIvoire Croatia Germany Hungary Japan Mexico Panama Peru Republic of Korea Saudi Arabia Slovakia Slovenia Spain Switzerland Ukraine United Arab Emirates United Kingdom of Great Britain and Northern Ireland United States of America Against Burundi China Cuba Iraq Kyrgyzstan Pakistan Venezuela Bolivarian Republic of Abstaining Afghanistan Angola Brazil Democratic Republic of the Congo Ecuador Egypt Ethiopia Georgia Kenya Mongolia Nepal Nigeria Philippines Qatar Rwanda Senegal South Africa Togo Tunisia", - "values": [ - "Adopted by vote" - ] - }, - { - "text": "the issue of the repatriation of funds of illicit origin within the United Nations system for consideration and necessary action and coordination as appropriate particularly within the context of the Conference of the States Parties to the United Nations Convention against Corruption and the United Nations Conference on Trade and Development Decides to continue its consideration of this matter under the same agenda item. nd meeting March Adopted by a recorded vote of to with abstentions. The voting was as follows In favour Afghanistan Angola Argentina Bahrain Bangladesh Brazil Burkina Faso Cameroon Chile China Cuba Democratic Republic of the Congo Egypt Eritrea Fiji India Iraq Nepal Nigeria Pakistan Peru Philippines Qatar Rwanda Saudi Arabia Senegal Somalia South Africa Togo Tunisia Uruguay Against Japan Ukraine Abstaining Australia Austria Bahamas Bulgaria Croatia Czechia Denmark Hungary Iceland Italy Mexico Slovakia Spain United Kingdom of Great Britain and Northern Ireland", - "values": [ - "Adopted by vote" - ] - } -] \ No newline at end of file diff --git a/src/extractors/text_to_multi_option_extractor/labeled_data/rightdocs_vote_type/options.json b/src/extractors/text_to_multi_option_extractor/labeled_data/rightdocs_vote_type/options.json deleted file mode 100644 index 52a01c1..0000000 --- a/src/extractors/text_to_multi_option_extractor/labeled_data/rightdocs_vote_type/options.json +++ /dev/null @@ -1,6 +0,0 @@ -[ - "Adopted by vote", - "Adopted without a vote", - "Withdrawn", - "Rejected by vote" -] \ No newline at end of file diff --git a/src/extractors/text_to_multi_option_extractor/labeled_data/themes/labels.json b/src/extractors/text_to_multi_option_extractor/labeled_data/themes/labels.json deleted file mode 100644 index 5405a5d..0000000 --- a/src/extractors/text_to_multi_option_extractor/labeled_data/themes/labels.json +++ /dev/null @@ -1,8018 +0,0 @@ -[ - { - "text": "A holistic approach to nutrition requires national policymakers to create an environment conducive to nutritious, healthy diets, including through education, and dietary guidelines. Finally, a comprehensive approach should encourage adjustments in food supply and changes in food systems to increase the availability and accessibility of healthier food that is both sustainable and nutrition sensitive", - "values": [ - "Education", - "Food & Nutrition" - ] - }, - { - "text": "Measures that result in the penalization of those living in poverty do nothing to tackle the root causes of poverty and social exclusion. They serve only to entrench further the multiple deprivations faced by those living in poverty and create barriers to poverty reduction and social inclusion. Consequently, they greatly undermine the ability of States to comply with their obligations to respect, protect and fulfil human rights.", - "values": [ - "Poverty", - "Social & Cultural Rights" - ] - }, - { - "text": "Emphasizes the need to strengthen policy and programme linkages and coordination between HIV and AIDS and sexual and reproductive health, and their inclusion in national development plans, and the need to design gender-based policies aimed at social and economic equality, including poverty reduction strategies and sector-wide approaches, where they exist, as a necessary strategy for fighting the HIV epidemic and mitigating its impact on the population, which could result in more relevant and cost-effective interventions with greater impact", - "values": [ - "Gender", - "Health" - ] - }, - { - "text": "[Urges States to adopt and implement policies and programmes that provide women human rights defenders with access to effective remedies, including by ensuring:] Adequate access to comprehensive support services for those women human rights defenders who experience violence, including shelters, psychosocial services, counselling, medical care and legal and social services;", - "values": [ - "Gender", - "Health" - ] - }, - { - "text": "The plight of those in protracted displacement is relatively neglected. Failure to resolve protracted displacement accounts in large measure for the increasing populations of internally displaced persons at the global level, as new waves of displacement add to protracted layers of displacement. The longer the duration of displacement, the lower the prospect that durable solutions will be achieved. Equally, internally displaced persons outside camps are often assumed to have found their own solutions (see A/HRC/19/54). Most have not and some have chosen to remain invisible owing to protection concerns. Different methodologies are required, such as helplines and outreach programmes to identify and profile them, assess their needs in the overall context of the hosting communities and address such needs using humanitarian and development approaches. Addressing such internally displaced populations is essential to achieving national goals to solve and reduce internal displacement.", - "values": [ - "Equality & Inclusion", - "Humanitarian" - ] - }, - { - "text": "States parties should take steps to remove de facto discrimination on prohibited grounds, where individuals and groups are deprived of the means or entitlements necessary for achieving the right to water. States parties should ensure that the allocation of water resources, and investments in water, facilitate access to water for all members of society. Inappropriate resource allocation can lead to discrimination that may not be overt. For example, investments should not disproportionately favour expensive water supply services and facilities that are often accessible only to a small, privileged fraction of the population, rather than investing in services and facilities that benefit a far larger part of the population.", - "values": [ - "Equality & Inclusion", - "Water & Sanitation" - ] - }, - { - "text": "Urges Governments to respect and protect the right to the enjoyment of the highest attainable standard of physical and mental health through the development and enforcement of policies and legal frameworks and the strengthening of health systems, including health information systems, that make universally accessible and available quality, gender-responsive, adolescent-friendly health services, sexual and reproductive health-care services, information and commodities, HIV and AIDS prevention, treatment and care, mental health services and nutrition interventions;", - "values": [ - "Equality & Inclusion", - "Health" - ] - }, - { - "text": "Welcoming the proposal of the Open Working Group on Sustainable Development Goals, which included a goal of ensuring inclusive and equitable quality education and promoting lifelong learning opportunities for all,", - "values": [ - "Education", - "Equality & Inclusion" - ] - }, - { - "text": "REAFFIRMING the need to take appropriate measures to promote and protect the rights and welfare of children as outlined in the Convention of the Rights of the Child (1989) and through the African Charter on the Rights and Welfare of the Child (1999),", - "values": [ - "Governance & Rule of Law", - "Social & Cultural Rights" - ] - }, - { - "text": "[The Commission urges Governments [...] to take the following actions to accelerate implementation of these strategic objectives to address the needs of all women:] Strengthen policies and programmes at the national level to provide equal access to health care services for all women and girls, particularly for those living in poverty;", - "values": [ - "Health", - "Poverty" - ] - }, - { - "text": "Recalling also the relevant provisions contained in the instruments of international humanitarian law relative to the protection of women and children in areas of armed conflict,", - "values": [ - "Governance & Rule of Law", - "Humanitarian" - ] - }, - { - "text": "In 2010, the human right to water and sanitation was explicitly recognized by the General Assembly and the Human Rights Council, and is guaranteed as a component of the human right to an adequate standard of living. The Special Rapporteur, in her capacity as an independent expert on the issue of human rights obligations related to access to safe drinking water and sanitation, defined sanitation from a human rights perspective as a system for the collection, transport, treatment and disposal or reuse of human excreta and associated hygiene. The Special Rapporteur has stated that States must ensure without discrimination that everyone has physical and economic access to sanitation, in all spheres of life, which is safe, hygienic, secure, socially and culturally acceptable, provides privacy and ensures dignity. She further considers that domestic wastewater, which flows from toilets, sinks and showers, should be included in the description of sanitation insofar as water regularly contains human excreta and the by-products of the associated hygiene (see A/HRC/12/24, paras. 63 and 87). The Committee on Economic, Social and Cultural Rights endorsed this definition at its forty-fifth session in its statement on the right to sanitation. (E/C.12/2010/1).", - "values": [ - "Economic Rights", - "Equality & Inclusion", - "Social & Cultural Rights", - "Water & Sanitation" - ] - }, - { - "text": "Welcoming the fact that, according to the 2012 Joint Monitoring Programme report of the World Health Organization and the United Nations Children\u2019s Fund, the Millennium Development Goal target relating to the reduction by 50 per cent of people without access to an improved water source was formally met five years before its deadline of 2015, while being deeply concerned, however, that, according to the 2014 Joint Monitoring Programme update, a large number of the world\u2019s population\u00a0still does not enjoy access to safe drinking water, as 748 million people, nearly half of them in sub-Saharan Africa, still lack access to improved drinking-water sources, and that at least 1.8 billion people are estimated to be using an improved or unimproved drinking water source that is unsafe,", - "values": [ - "Water & Sanitation" - ] - }, - { - "text": "[Calls upon States and all relevant stakeholders to take effective and appropriate steps to facilitate the protection and safety of persons with disabilities in situations of risk, including situations of armed conflict, humanitarian emergencies and the occurrence of natural disasters, having regard for the measures contemplated by the Convention, and urges States and all relevant stakeholders, in furtherance of this objective, to, inter alia:] Ensure the meaningful participation of persons with disabilities in processes of monitoring and evaluation of humanitarian assistance, and ensure that they have adequate access to feedback mechanisms during situations of risk, including situations of armed conflict, humanitarian emergencies and the occurrence of natural disasters;", - "values": [ - "Humanitarian" - ] - }, - { - "text": "[With regard to the international obligations of States, the Special Rapporteur recommends that States take the following steps:] Extend assistance and cooperation to other States, which, due to limited resources available to them, may be unable to attain required nutrition standards, leading to an increased burden of diet-related NCDs;", - "values": [ - "Food & Nutrition", - "Health" - ] - }, - { - "text": "[The Commission urges Governments, [...] to take the following actions [...]:] (y) Take measures to address the special needs of girls, including migrant girls, employed as domestic workers and caregivers, as well as those that have to perform excessive domestic chores and caregiving responsibilities, and to provide access to education, vocational training, health services, food, shelter and recreation, while ensuring the prevention and elimination of child labour and economic exploitation of girls;", - "values": [ - "Equality & Inclusion", - "Violence" - ] - }, - { - "text": "[Reaffirms the duty of all States to protect children from all forms of physical or mental violence, injury or abuse, maltreatment or exploitation, and calls upon States:] To ensure the training of all persons working with and for children, including judges, public prosecutors, police, teachers and school administrators, prison staff, probation officers, social workers and health professionals, as well as persons working in the alternative care system, public administration and immigration and border control, on legislation and policies relevant to the rights of the child, including anti-discrimination and gender equality laws, alternatives to detention, child-sensitive counselling, complaint and reporting mechanisms and child-sensitive skills to communicate with children, and to promote such training for civil society actors and traditional leaders;", - "values": [ - "Social & Cultural Rights", - "Violence" - ] - }, - { - "text": "[Recent research on this topic has revealed a number of significant and worrying developments:] All of the content depicting children 15 years of age or younger was taken from its original upload location and redistributed via third party websites;", - "values": [ - "Economic Rights", - "Violence" - ] - }, - { - "text": "[Emphasizes the importance of protecting persons in vulnerable situations, and in this regard:] Reminds all States that all persons, including migrants, should have access to lifelong learning opportunities that help them acquire the knowledge and skills needed to take advantage of opportunities and to participate fully in society;", - "values": [ - "Education" - ] - }, - { - "text": "Stresses the need to pay particular attention to marginalized groups of women and girls and the importance for States to ensure that remedies take into account the differential impact of violence on women due to multiple, intersecting and aggravated forms of discrimination;", - "values": [ - "Equality & Inclusion", - "Violence" - ] - }, - { - "text": "Despite this growing level of awareness, however, the responses to the Special Rapporteur's questionnaire also show the lack of a minimum shared understanding about the basic implications of accepted international standards or about the institutional arrangements and methodologies required to give them full effect in the context of extractive or development operations that may affect indigenous peoples. In this connection, differing or vague understandings persist about the scope and content of indigenous peoples' rights and about the degree and nature of the responsibility of the State to ensure the protection of these rights in the context of extractive industries.", - "values": [ - "Equality & Inclusion", - "Governance & Rule of Law" - ] - }, - { - "text": "Recommends that States parties take further direct measures in accordance with article 4 of the Convention to ensure the full implementation of article 8 of the Convention and to ensure to women on equal terms with men and without any discrimination the opportunities to represent their Government at the international level and to participate in the work of international organizations.", - "values": [ - "Equality & Inclusion", - "Governance & Rule of Law" - ] - }, - { - "text": "Support women's access, throughout their life cycle, to skills development and decent work in new and emerging fields, by expanding the scope of education and training opportunities in, inter alia, science, technology, engineering and mathematics, information and communications technology and digital fluency, and enhance women's and, as appropriate, girls' participation as users, content creators, employees, entrepreneurs, innovators and leaders;", - "values": [ - "Education", - "Gender" - ] - }, - { - "text": "Recognizes the need to strengthen national commitment as well as international assistance, upon the request of and in cooperation with the affected countries, towards the full realization and protection of the right to food, and in particular to develop national protection mechanisms for people forced to leave their homes and land because of hunger or humanitarian emergencies affecting their enjoyment of the right to food;", - "values": [ - "Food & Nutrition", - "Governance & Rule of Law", - "Humanitarian", - "Movement" - ] - }, - { - "text": "2 Each Party shall encourage the private sector, in particular the information and communication technology sector, the tourism and travel industry and the banking and finance sectors, as well as civil society, to participate in the elaboration and implementation of policies to prevent sexual exploitation and sexual abuse of children and to implement internal norms through self-regulation or co-regulation.", - "values": [ - "Economic Rights", - "Violence" - ] - }, - { - "text": "The primary responsibility of national Governments to take action towards achieving durable solutions for internally displaced persons must be emphasized, and they must fulfil that responsibility through legal, policy and institutional frameworks and appropriate budgeting and development programme measures, including national development plans. Too often, there is an overreliance on international partners to initiate and maintain sustainable livelihood projects, for example, that should fall under the responsibility of line ministries. States are often slow to implement such programmes, and stronger steps must be taken to ensure that they meet their commitments according to international standards.", - "values": [ - "Economic Rights", - "Governance & Rule of Law" - ] - }, - { - "text": "A significant platform for cooperation was also developed with the Intergovernmental Commission on Human Rights of the Association of Southeast Asian Nations (ASEAN) and with the recently established ASEAN Commission on the Promotion and Protection of the Rights of Women and Children, which has identified violence against children as a priority for its agenda.", - "values": [ - "Governance & Rule of Law" - ] - }, - { - "text": "The obligation to respect the right to health by refraining from denying or limiting access to health services and by abstaining from enforcing discriminatory practices as a State policy extends to participation in sport and physical activity. All people should be permitted to access State-run sporting facilities on an equal basis. Discrimination in access on grounds such as gender, race, ethnicity, religion, sexual orientation, gender identity, sex characteristics, or legal and health status (including HIV/AIDS status) is not permissible. States should conduct an inclusive, participatory and transparent audit of practices, rules and by-laws relating to sport and the right to health in order to determine their compatibility with human rights standards and should remove any which are discriminatory.", - "values": [ - "Equality & Inclusion", - "Health" - ] - }, - { - "text": "Harmful practices are persistent practices and forms of behaviour that are grounded in discrimination on the basis of, among other things, sex, gender and age, in addition to multiple and/or intersecting forms of discrimination that often involve violence and cause physical and/or psychological harm or suffering. The harm that such practices cause to the victims surpasses the immediate physical and mental consequences and often has the purpose or effect of impairing the recognition, enjoyment and exercise of the human rights and fundamental freedoms of women and children. There is also a negative impact on their dignity, physical, psychosocial and moral integrity and development, participation, health, education and economic and social status. The practices are therefore reflected in the work of both Committees.", - "values": [ - "Equality & Inclusion", - "Harmful Practices" - ] - }, - { - "text": "In the context of the criminal justice system, child-sensitive restorative justice may involve bringing together the victim, the offender, his or her parents or guardians, child protection and justice actors, and the community, in a safe and structured environment. Through a non-adversarial and voluntary process, based on dialogue, negotiation and problem-solving, restorative justice aims to rehabilitate and reintegrate the young offender, through helping to reconnect him or her with the community, and ensuring that the offender understands the harm caused to the victim and the community and acknowledges accountability for criminal behaviour and reparation of its consequences.", - "values": [ - "Civil & Political Rights", - "Governance & Rule of Law", - "Violence" - ] - }, - { - "text": "Governments should provide incentives for companies to explore technologies allowing minerals to be traced to their source. This information could then help Governments to ascertain who produced the minerals and under what conditions (including use of child slavery). Governments can then monitor and prosecute those that use child slavery.", - "values": [ - "Economic Rights", - "Environment" - ] - }, - { - "text": "Reaffirming also that gender equality, the empowerment of women and the elimination of preventable maternal mortality and morbidity cannot be achieved without promoting and protecting the right of women to enjoy the highest attainable standard of physical and mental health, including sexual and reproductive health and reproductive rights, and reaffirming that expanding access to sexual and reproductive health information and health services is essential for achieving the Beijing Platform for Action, the Cairo Programme of Action and the Millennium Development Goals and is crucial for achieving gender equality, the empowerment of women and the full enjoyment by women of all human rights and fundamental freedoms,", - "values": [ - "Gender", - "Health" - ] - }, - { - "text": "Article 2 (1) of the Covenant requires States to ensure the protection of individuals in the face of such assaults by non-State actors on rights, obligated as they are to respect and ensure respect for all human rights. However, States also need to be cautious not to provide any kind of support in their own laws and actions for the effort to strike down those who hold contrary beliefs. Yet many States still adopt or implement laws that permit them to punish individuals for expression seen to criticize belief. In 2015, for instance, Myanmar amended the Criminal Code to penalize \"speech intended to cause religious outrage which insults, or attempts to insult, religion or religious belief\" (see A/HRC/31/71, annex I). Saudi Arabia has harshly punished individuals for expression of religious beliefs contrary to national legislation. In 2014, Brunei Darussalam enacted a law that would subject those who insult Islam to capital punishment, which the Government did not deny in its response. Blasphemy and apostasy laws worldwide not only restrict expression but give support to those who would attack others for religious views. Such laws exist not only in the Middle East and South and South-East Asia, where they are prevalent, but also in Europe and the Americas.", - "values": [ - "Equality & Inclusion", - "Governance & Rule of Law" - ] - }, - { - "text": "Calls upon all Governments to take measures to ensure that the necessary resources are made available, in particular from donor countries and also from national budgets, in line with the Declaration of Commitment on HIV/AIDS;", - "values": [ - "Governance & Rule of Law", - "Health" - ] - }, - { - "text": "With a view to ensuring the effective exercise of the right to protection against poverty and social exclusion, the Parties undertake:\na. to take measures within the framework of an overall and co-ordinated approach to promote the effective access of persons who live or risk living in a situation of social exclusion or poverty, as well as their families, to, in particular, employment, housing, training, education, culture and social and medical assistance;", - "values": [ - "Equality & Inclusion", - "Poverty" - ] - }, - { - "text": "We recognize that opportunities for people to influence their lives and future, participate in decision-making and voice their concerns are fundamental for sustainable development. We underscore that sustainable development requires concrete and urgent action. It can only be achieved with a broad alliance of people, governments, civil society and the private sector, all working together to secure the future we want for present and future generations.", - "values": [ - "Civil & Political Rights", - "Equality & Inclusion" - ] - }, - { - "text": "Recognizing the special protection needs of refugee children and adolescents who, especially when living in camps where refugees are mixed with armed elements, are particularly vulnerable to recruitment by government armed forces or organized armed groups,", - "values": [ - "Equality & Inclusion", - "Humanitarian" - ] - }, - { - "text": "forcible transfer of Palestinians and construction of the wall, stresses that this fragmentation, which undermines the possibility of the Palestinian people realizing their right to self-determination, is incompatible with the purposes and principles of the Charter of the United Nations, and emphasizes in this regard the need for respect for and preservation of the territorial unity, contiguity and integrity of all of the Occupied Palestinian Territory, including East Jerusalem;", - "values": [ - "Civil & Political Rights", - "Governance & Rule of Law" - ] - }, - { - "text": "Decisions related to the coverage of projects can have an impact on the beneficiaries, particularly the population in the most vulnerable situations. Applying a human rights approach to development cooperation in the water and sanitation sector would involve a greater emphasis on providing services for those populations who predominantly live in small, dispersed rural communities or in peri-urban areas. In the latter case, the informal nature of settlements may impede such dwellers from being connected to citywide systems. The principle of equality and non-discrimination sometimes requires the adoption of targeted measures and affirmative action in order to achieve substantive equality (Human Rights Committee, general comment No. 18 (1989) on non-discrimination, para. 10). Thus, funders and partner States should work together and identify individuals and groups to target, particularly those who are in vulnerable situations, and not be limited to identifying those who are financially disadvantaged, often called \u201cthe poor\u201d.", - "values": [ - "Equality & Inclusion", - "Poverty", - "Water & Sanitation" - ] - }, - { - "text": "The Commission notes that with regard to Millennium Development Goal 4 (reducing child mortality), taking into account the important interconnections between women's and children's health and gender equality and empowerment of women, significant progress has been made in reducing child mortality globally, including through the efforts to eliminate new HIV infections and vertical transmissions in children, to combat malnutrition, malaria, diarrhoea, hunger and anaemia and by addressing other factors including the lack of access to vaccines, but the targets are likely to be missed. The Commission notes with deep concern that child deaths are increasingly concentrated in the poorest regions and in the first month of life, and expresses concern that children are at greater risk of dying before the age of 5 if they are born in rural and remote areas or to poor households. The Commission also notes with deep concern that some regions have higher female under-five mortality rates owing to discriminatory practices. The Commission recognizes that progress on reducing child mortality is linked with women's access to health-care services, safe drinking water, sanitation and housing, as well as mothers' basic education and nutrition.", - "values": [ - "Gender", - "Water & Sanitation" - ] - }, - { - "text": "Calls upon all States to take all appropriate measures to develop sustainable health systems and social services and to ensure access to such systems and services without discrimination, and to pay particular attention to adequate food and nutrition to prevent disease and malnutrition, to prenatal and post-natal health care, to special needs of adolescents, to reproductive and sexual health and to threats from substance abuse and violence, in particular to all vulnerable groups, and calls upon all States parties to take all necessary measures to ensure the right of all children, without discrimination, to the enjoyment of the highest attainable standard of health in accordance with article 24 of the Convention;", - "values": [ - "Equality & Inclusion", - "Food & Nutrition", - "Health" - ] - }, - { - "text": "Resource constraints, however, remain a major barrier to the realization of the right to education. Prospects for achieving the targets of millennium development goals 2 (Ensuring that, by 2015, children everywhere, boys and girls alike, will be able to complete a full course of primary schooling) and 3 (Eliminating gender disparity in all levels of education no later than 2015) are bleak on account of a dearth of resources. The assessment prepared for the 2010 High-level Plenary Meeting of the General Assembly on the Millennium Development Goals underlined the need for scaling up budgets and providing enhanced resources to accelerate progress in meeting those targets. The Education for All Global Monitoring Reports in recent years have consistently pointed to insufficient funding for education. More recently, public expenditure cuts as a consequence of the global financial crisis have threatened to decrease support to the education sector, possibly jeopardizing recent advances. For instance, 7 of 18 low-income countries reduced spending on education in 2009; those countries alone had 3.7 million children out of school.", - "values": [ - "Humanitarian" - ] - }, - { - "text": "Invites States to promote practices that minimize potential health and environmental risks associated with pesticides, while ensuring their effective use;", - "values": [ - "Environment", - "Health" - ] - }, - { - "text": "[States should also:] Make history a compulsory subject at the primary and secondary educational levels, thereby giving children of African descent a connection with their past and a sense of cultural identity;", - "values": [ - "Education", - "Social & Cultural Rights" - ] - }, - { - "text": "A form of collective harm that deserves particular attention is group-based harm as a result of group-based affiliation. Collective measures of redress may be thought of as particularly apposite to address the legacy of violence on the identity or status of groups such as indigenous peoples. Women or children, however, are rarely thought of in collective terms, even though gender-specific and age-specific forms of violence happen to women and children precisely because they are women and children. Women and girls should not be rendered invisible under the notion of the collective and should be consulted at all stages of discussions.", - "values": [ - "Equality & Inclusion", - "Social & Cultural Rights", - "Violence" - ] - }, - { - "text": "Agroecology improves resilience to climate change. Climate change means more extreme weather-related events. The use of agroecological techniques can significantly cushion the negative impacts of such events, for resilience is strengthened by the use and promotion of agricultural biodiversity at ecosystem, farm system and farmer field levels, which is materialized by many agroecological approaches. Following Hurricane Mitch in 1998, a large-scale study on 180 communities of smallholders from southern to northern Nicaragua demonstrated that farming plots cropped with simple agroecological methods (including rock bunds or dikes, green manure, crop rotation and the incorporation of stubble, ditches, terraces, barriers, mulch, legumes, trees, plowing parallel to the slope, no-burn, live fences, and zero-tillage) had on average 40 per cent more topsoil, higher field moisture, less erosion and lower economic losses than control plots on conventional farms. On average, agroecological plots lost 18 per cent less arable land to landslides than conventional plots and had 69 per cent less gully erosion compared to conventional farms.", - "values": [ - "Environment" - ] - }, - { - "text": "2. States Parties shall undertake to pursue the full implementation of this right and in particular shall take measures to: a) Make available equitable and ready access to medical assistance and health care especially in rural and poor urban areas with an emphasis on the development of primary health care;", - "values": [ - "Equality & Inclusion", - "Health" - ] - }, - { - "text": "The protection of children from online sexual abuse has generated particularly wide mobilization, very often with a focus on the detection, investigation and prosecution of related crimes. The Virtual Global Taskforce, the Global Alliance against Child Sexual Abuse Online and various regional coalitions against the commercial sexual exploitation of children online are examples of the extremely valuable efforts involving Governments, law enforcement agencies, financial institutions, the corporate sector, civil society and other stakeholders.", - "values": [ - "Governance & Rule of Law", - "Violence" - ] - }, - { - "text": "Recognizes that the family, while respect for the rights of its members is ensured, is a strong force for social cohesion and integration, intergenerational solidarity and social development, and that the family plays a crucial role in the preservation of cultural identity, traditions, morals, heritage and the values system of society;", - "values": [ - "Social & Cultural Rights" - ] - }, - { - "text": "[Actions to be taken by Governments and civil society, including non-governmental organizations:] Support programmes of peer mediation and conflict resolution for schoolchildren and special training for teachers to equip them to encourage cooperation and respect for diversity and gender;", - "values": [ - "Education", - "Equality & Inclusion" - ] - }, - { - "text": "Recognizing, in this context, the important role played by the Independent Expert on minority issues in promoting the implementation of the Declaration,", - "values": [ - "Governance & Rule of Law" - ] - }, - { - "text": "[By Governments, intergovernmental and non-governmental organizations and other institutions involved in providing protection, assistance and training to refugee women, other displaced women in need of international protection and internally displaced women, including the Office of the United Nations High Commissioner for Refugees and the World Food Programme, as appropriate:] Provide, as appropriate, women who have been determined refugees with access to vocational/professional training programmes, including language training, small-scale enterprise development training and planning and counselling on all forms of violence against women, which should include rehabilitation programmes for victims of torture and trauma; Governments and other donors should contribute adequately to assistance programmes for refugee women, other displaced women in need of international protection and internally displaced women, taking into account in particular the effects on the host countries of the increasing requirements of large refugee populations and the need to widen the donor base and to achieve greater burden-sharing;", - "values": [ - "Education", - "Humanitarian" - ] - }, - { - "text": "The continuing environmental degradation that affects all human lives has often a more direct impact on women. Women's health and their livelihood are threatened by pollution and toxic wastes, large-scale deforestation, desertification, drought and depletion of the soil and of coastal and marine resources, with a rising incidence of environmentally related health problems and even death reported among women and girls. Those most affected are rural and indigenous women, whose livelihood and daily subsistence depends directly on sustainable ecosystems.", - "values": [ - "Environment", - "Health" - ] - }, - { - "text": "Parties shall undertake to include a gender perspective in the implementation and evaluation of the impact of the provisions of this Convention and to promote and effectively implement policies of equality between women and men and the empowerment of women.", - "values": [ - "Gender", - "Governance & Rule of Law" - ] - }, - { - "text": "Norms for pupil-teacher ratio and class sizes cannot be implemented unless requisite teaching personnel is available (see below).", - "values": [ - "Education" - ] - }, - { - "text": "Reiterating that refugee camps and settlements should have an exclusively civilian and humanitarian character, that the grant of asylum is a peaceful and humanitarian act which should not be regarded as unfriendly by another State, as stated in the 1969 OAU Convention Governing the Specific Aspects of Refugee Problems in Africa and a number of Executive Committee conclusions, and that all actors, including refugees themselves, have the obligation to cooperate in ensuring the peaceful and humanitarian character of refugee camps and settlements,", - "values": [ - "Humanitarian" - ] - }, - { - "text": "Encourages States to develop and implement a comprehensive juvenile justice policy to protect and address the needs of children in contact with the law, with a view to promoting, inter alia, a commitment to improving the quality of education available to children placed in alternative care and within the juvenile justice system, crime prevention programmes, the use of alternative measures, such as diversion, restorative justice and community-based programmes that focus on the rehabilitation and reintegration of the child, and ensuring compliance with the principle that deprivation of liberty of children should be used only as a measure of last resort and for the shortest appropriate period of time, as well as to avoid, wherever possible, the use of pretrial detention for children;", - "values": [ - "Civil & Political Rights", - "Education", - "Governance & Rule of Law", - "Social & Cultural Rights" - ] - }, - { - "text": "[Decides to appoint, for a period of three years, an independent expert on the issue of human rights obligations related to access to safe drinking water and sanitation, whose tasks will be:] To submit a report, including conclusions and recommendations, to the Council at its tenth session;", - "values": [ - "Governance & Rule of Law", - "Water & Sanitation" - ] - }, - { - "text": "[Decides to appoint, for a period of three years, an Independent Expert on protection against violence and discrimination based on sexual orientation and gender identity, with the following mandate:] To address the multiple, intersecting and aggravated forms of violence and discrimination faced by persons on the basis of their sexual orientation and gender identity;", - "values": [ - "Gender", - "Violence" - ] - }, - { - "text": "Recommends that the celebration of the International Day of Sport for Development and Peace emphasize, through specific events, the right of the child to engage in play and recreational activities.", - "values": [ - "Governance & Rule of Law" - ] - }, - { - "text": "In particular, no one shall be discriminated against because he or she chooses to belong, or not to belong, to a given cultural community or group, or to practise or not to practise a particular cultural activity. Likewise, no one shall be excluded from access to cultural practices, goods and services.", - "values": [ - "Equality & Inclusion", - "Social & Cultural Rights" - ] - }, - { - "text": "[Urges States, in the context of post-disaster settings, and recognizing that short-term humanitarian response and early recovery phases are based on needs, to respect, protect and fulfil the right to adequate housing without discrimination of any kind as to race, colour, sex, language, religion, political or other opinion, national or social origin, property, birth or other status, and, in this regard:] To give due priority to the realization of the right to adequate housing for the most disadvantaged and vulnerable persons through housing reconstruction and the provision of alternative housing, especially by respecting the principles of non-discrimination and gender equality, and by integrating a gender perspective into policies, strategies and programmes for disaster risk reduction, prevention and preparedness, as well as into all phases of disaster response and recovery;", - "values": [ - "Equality & Inclusion", - "Gender", - "Humanitarian", - "Social & Cultural Rights" - ] - }, - { - "text": "3. States Parties shall address and ensure the availability of accurate data on youth employment, unemployment and underemployment so as to facilitate the prioritisation of the issue in National development programmes complemented by clear programmes to address unemployment", - "values": [ - "Economic Rights" - ] - }, - { - "text": "[With a view to respecting, protecting and fulfilling the right to adequate food and nutrition, the Special Rapporteur recommends that:] The Committee on World Food Security, as recommended by the General Assembly, ensure the participation of all partners during the Decade, in particular rights holders and representatives of vulnerable groups. Affirmative measures should be adopted to ensure a \"level playing field\" allowing civil society to play active roles in discussions and negotiations;", - "values": [ - "Civil & Political Rights", - "Equality & Inclusion", - "Food & Nutrition" - ] - }, - { - "text": "In the past, Green Revolution approaches have focused primarily on boosting cereal crops. However, rice, wheat and maize are mainly sources of carbohydrates: they contain relatively little protein, and few of the other nutrients essential for adequate diets. The shift from diversified cropping systems to simplified cereal-based systems thus contributed to micronutrient malnutrition in many developing countries. Indeed, of the over 80,000 plant species available to humans, rice, wheat and maize supply the bulk of our protein and energy needs. Nutritionists now increasingly insist on the need for more diverse agro-ecosystems, in order to ensure a more diversified nutrient output of the farming systems.", - "values": [ - "Environment", - "Food & Nutrition", - "Health" - ] - }, - { - "text": "Reaffirming that equal access to quality and inclusive education and training at all levels, in particular in business, trade, administration, information and communications technology, science, technology, engineering and mathematics and other new technologies, and fulfilment of the need to eliminate gender inequalities at all levels are essential for gender equality, the empowerment of women and poverty eradication and to allowing women's full and equal contribution to, and equal opportunity to benefit from, development,", - "values": [ - "Education", - "Gender" - ] - }, - { - "text": "[Urges Governments and, where appropriate, United Nations entities, civil society, including non-governmental organizations and the private sector, and other stakeholders:] To design, implement and evaluate gender-responsive economic relief and longer-term recovery projects, including vocational and technical skills training measures, in order to help ensure equal economic opportunities for men and women, paying attention to eliminating obstacles to women's rapid integration or reintegration into the formal employment sector, owing to their role in the social and economic process, and taking into account the rural and urban migration that natural disasters may provoke", - "values": [ - "Gender", - "Movement" - ] - }, - { - "text": "The challenges arising from contamination call for concerted efforts to achieve sustainable wastewater management and pollution control based on human rights.", - "values": [ - "Environment", - "Water & Sanitation" - ] - }, - { - "text": "Recalling also the seventh special session of the Human Rights Council, at which the Council analysed the negative impact of the worsening of the world food crisis on the realization of the right to food for all, and Council resolutions S-7/1 of 22 May 2008, 9/6 of 18 September 2008 and 12/10 of 1 October 2009,", - "values": [ - "Food & Nutrition", - "Governance & Rule of Law" - ] - }, - { - "text": "[States must realize the full potential of tax collection as a tool to generate revenue for the fulfilment of human rights obligations and to redress discrimination and inequality. Human rights principles regarding participation, transparency, accountability and non-discrimination should be followed throughout the whole revenue-raising cycle. For this purpose, States should:] Take strict measures to tackle tax abuse, in particular by corporations and high net-worth individuals;", - "values": [ - "Economic Rights", - "Governance & Rule of Law" - ] - }, - { - "text": "10. to extend the protection and assistance provided for in this article to self-employed migrants insofar as such measures apply", - "values": [ - "Economic Rights", - "Movement" - ] - }, - { - "text": "In his partly dissenting opinion to the decision in the case Ocalan v. Turkey (2005), Judge Lech Garlicki stated that article 3 had been violated because any imposition of the death penalty represented per se inhuman and degrading treatment prohibited by the Convention. Thus, while correct, the majority's conclusion that the imposition of the death penalty following an unfair trial represented a violation of article 3 of the European Convention seemed to him to stop short of addressing the real problem. He drew attention to the 2002 opinion of the Parliamentary Assembly of the Council of Europe in which it recalled that, in its most recent resolutions, it had reaffirmed its beliefs that the application of the death penalty constituted inhuman and degrading punishment and a violation of the most fundamental right, that to life itself, and that capital punishment had no place in civilized, democratic societies governed by the rule of law. Judge Garlicki stated that, in consequence, the only question that remained was whether the Court had the power to state the obvious truth, namely, that capital punishment had become an inhuman and degrading punishment per se.", - "values": [ - "Civil & Political Rights", - "Governance & Rule of Law" - ] - }, - { - "text": "The obligation of the State to protect women and girls' right to equality in the family compels the authorities to prevent discrimination by private actors. Due diligence as a principle of State action should result in a global model of prevention, protection, prosecution, punishment and redress for acts of discrimination and violence against women in cultural and family life.", - "values": [ - "Equality & Inclusion", - "Governance & Rule of Law", - "Violence" - ] - }, - { - "text": "Accordingly, the Special Rapporteur considers that regulations on public-private partnerships in education should include three elements:\n(a) Screening for all private partners engaged in for-profit businesses and pursuing private interests through a controlling environment;\n(b) Promoting and supporting contributions to education in a philanthropic spirit; \n(c) Creating an enabling environment to establish partnerships which promote technical and vocational education and training.", - "values": [ - "Education", - "Governance & Rule of Law" - ] - }, - { - "text": "The past decade has also witnessed a growing recognition of the distinct interests and concerns of indigenous women, whose identity, cultural traditions and forms of social organization enhance and strengthen the communities in which they live. Indigenous women often face barriers both as women and as members of indigenous communities.", - "values": [ - "Equality & Inclusion", - "Social & Cultural Rights" - ] - }, - { - "text": "Calls upon Member States and the Office of the High Commissioner to ensure that the open-ended working group on the right to development convenes its first session, as a matter of urgency, no later than 17\u00a0December 1999;", - "values": [ - "Governance & Rule of Law" - ] - }, - { - "text": "Recent initiatives, such as a 2014 high-level commission on ending childhood obesity and recommendations towards a global convention to protect and promote healthy diets by the World Obesity Federation and Consumers International, as well as Global Nutrition Reports, indicate the need for stronger accountability mechanisms at the national level, considering that voluntary corporate initiatives are proving ineffective.", - "values": [ - "Food & Nutrition", - "Governance & Rule of Law", - "Health" - ] - }, - { - "text": "Encourages States to take a human rights-based approach, with due regard for article 11 of the Convention on the Rights of Persons with Disabilities, to the protection and safety of persons with disabilities in situations of risk, including situations of armed conflict, humanitarian emergencies and the occurrence of natural disasters;", - "values": [ - "Humanitarian" - ] - }, - { - "text": "Recognizes the importance of giving due consideration to the adverse impact of climate change and to the full realization of the right to food, takes note of the Paris Agreement, adopted at the twenty-first session of the Conference of the Parties to the United Nations Framework Convention on Climate Change, held in Paris from 30 November to 13 December 2015, and welcomes the organization of the twenty-second session of the Conference of the Parties in Marrakech, Morocco;", - "values": [ - "Environment", - "Food & Nutrition", - "Governance & Rule of Law" - ] - }, - { - "text": "The Commission acknowledges the important contribution of migrant women in realizing the Millennium Development Goals, and recognizes that impediments to accessing employment, vocational training, housing, schooling, health services and social services, as well as other services that, in accordance with national legislation, are intended for use by the public, contribute to the vulnerability of migrants", - "values": [ - "Equality & Inclusion", - "Movement" - ] - }, - { - "text": "Welcoming the adoption by the General Assembly of the 2030 Agenda for Sustainable Development, which includes, inter alia, the Sustainable Development Goal of ensuring inclusive and equitable quality education and promoting lifelong learning opportunities for all,", - "values": [ - "Education", - "Equality & Inclusion" - ] - }, - { - "text": "Natural resources can be a vital source of revenue that the State can use to comply with its human rights obligations. The financial and social benefits of natural resource exploitation are, however, increasingly bypassing people in producing countries. In most countries, extractive industries generate few jobs directly and have only weak links to local markets. Far from bringing benefits, the exploitation of natural resources has been frequently linked to human rights abuse and encroachment on lands and livelihoods of communities, mass evictions, pollution and environmental degradation, which may result in violations of rights to health, food, housing and water. The right of people to participate in decisions regarding natural resources is often violated, especially where the land, territory and resources of indigenous peoples is concerned.", - "values": [ - "Civil & Political Rights", - "Economic Rights", - "Environment" - ] - }, - { - "text": "[1. States Parties recognize the right of persons with disabilities to work, on an equal basis with others; this includes the right to the opportunity to gain a living by work freely chosen or accepted in a labour market and work environment that is open, inclusive and accessible to persons with disabilities. States Parties shall safeguard and promote the realization of the right to work, including for those who acquire a disability during the course of employment, by taking appropriate steps, including through legislation, to, inter alia:] (c) Ensure that persons with disabilities are able to exercise their labour and trade union rights on an equal basis with others;", - "values": [ - "Economic Rights", - "Equality & Inclusion" - ] - }, - { - "text": "[We hereby call upon all members of society to join us in a global movement that will help to build a world fit for children by upholding our commitment to the following principles and objectives:] Combat HIV/AIDS. Children and their families must be protected from the devastating impact of the human immunodeficiency virus/acquired immunodeficiency syndrome (HIV/AIDS).", - "values": [ - "Health" - ] - }, - { - "text": "International law affords every individual the right to privacy without arbitrary or unlawful interference. Women all too frequently experience violent intrusions of privacy, including through virginity testing and forced sterilization. These forms of violence against women represent grave violations of the right to privacy and reproductive freedom, as well as women's bodily integrity, and it undermines the ability of women to be recognized as full and equal citizens of their communities.", - "values": [ - "Equality & Inclusion", - "Harmful Practices", - "Health", - "Violence" - ] - }, - { - "text": "This humanitarian reform process, and the cluster system currently in place, seeks to render the humanitarian response (including in internal displacement situations) more predictable, through a system by which different organizations assume lead responsibility for specific sectors of the response. The system has introduced significant improvements with regard to predictability, clearer lines of responsibility and improved coordination. It has also raised a number of challenges, including the challenge of coordination between a large number of diverse actors with different organizational mandates, tools and approaches. The ongoing work being done to streamline some of those approaches and tools, to enhance coordination and information sharing systems, and to learn from the ongoing evaluation of the work of cluster teams in various parts of the world, and the wider efforts to strengthen humanitarian system structures (such as through the current \"transformative agenda\"), are essential to the evolution of a system challenged not only by its own structural complexities but also by complex and changing humanitarian environments and needs.", - "values": [ - "Governance & Rule of Law", - "Humanitarian" - ] - }, - { - "text": "Calls upon States and international organizations to provide financial resources, capacity-building and technology transfer, through international assistance and cooperation, in particular to developing countries, in order to scale up efforts to provide safe, clean, accessible and affordable drinking water and sanitation for all;", - "values": [ - "Equality & Inclusion", - "Water & Sanitation" - ] - }, - { - "text": "[In line with the above, the Special Rapporteur recommends that States:] Adopt social protection floors nationally and agree on including social protection floors as a post-2015 development goal;", - "values": [ - "Social & Cultural Rights" - ] - }, - { - "text": "[By Governments, in collaboration with non-governmental organizations and employers' and workers' organizations and with the support of international institutions:] Ensure the availability of and universal access to safe drinking water and sanitation and put in place effective public distribution systems as soon as possible;", - "values": [ - "Equality & Inclusion", - "Water & Sanitation" - ] - }, - { - "text": "[Actions to be taken by Governments, international organizations and civil society:] Establish recovery programmes for children who have been abused or sexually exploited, with specially trained personnel to provide a safe and supportive environment.", - "values": [ - "Health", - "Violence" - ] - }, - { - "text": "Recalling the need to ensure that all children enjoy the right to education and are ensured equal access to quality early childhood development, care and pre-primary education so that they are ready for primary education, the need to eliminate gender disparities in education by 2030, and the need to build and upgrade education facilities that are child-, disability- and gender-sensitive and provide safe, non-violent, inclusive, accessible and effective learning environments for all,", - "values": [ - "Education", - "Equality & Inclusion" - ] - }, - { - "text": "Reaffirming that the Convention on the Rights of the Child and the Convention on the Elimination of All Forms of Discrimination against Women, together with the Optional Protocols thereto, constitute an important contribution to the legal framework for the protection and promotion of the human rights of women and girls,", - "values": [ - "Governance & Rule of Law" - ] - }, - { - "text": "There are many examples of social protection programmes that directly target improvements in the school enrolment of children of beneficiary households by imposing conditionalities (co-responsibilities) related to school attendance and performance rates. Moreover, programmes that lack an explicit focus on schooling can also have a positive impact on the education level of children. For example, research shows that social pensions (non-contributory pensions for older persons) in Brazil, South Africa and Namibia have been used by grandparents to pay their grandchildren's school fees.", - "values": [ - "Education" - ] - }, - { - "text": "Recalling the responsibilities of States to end impunity and to prosecute those responsible for genocide, crimes against humanity, war crimes and other egregious crimes perpetrated against children,", - "values": [ - "Civil & Political Rights", - "Violence" - ] - }, - { - "text": "Every child, whatever his parentage, has the right to the protection that his status as a minor requires from his family, society and the State. Every child has the right to grow under the protection and responsibility of his parents; save in exceptional, judicially-recognized circumstances, a child of young age ought not to be separated from his mother. Every child has the right to free and compulsory education, at least in the elementary phase, and to continue his training at higher levels of the educational system.", - "values": [ - "Education", - "Social & Cultural Rights" - ] - }, - { - "text": "While police deployment can be problematic when communities living in poverty are disproportionately targeted, the absence of police and other institutions necessary for the administration of justice in rural, poor and marginalized areas is a common problem. Courthouses, particularly appeal courts, are often located only in capital cities or large towns. Police officers, prosecutors and lawyers are also concentrated in urban areas, along with registries for land titling and for births, deaths and marriages. In such circumstances, persons living in poverty often have to travel long distances at great cost to engage with the justice system, exposing themselves to unfamiliar environments and unsafe conditions.", - "values": [ - "Governance & Rule of Law", - "Poverty" - ] - }, - { - "text": "New approaches need to engage displaced persons as partners and not simply beneficiaries. These approaches should achieve better consultation with and the participation of displaced communities as part of a broader process of assessment and informed response, including in the application of durable solutions. This helps to ensure the human agency of internally displaced persons as those with the greatest understanding of the community's needs and vulnerabilities, but also its wishes, expectations, skills and resilience capacity. Assessments of needs should go hand in hand with assessment of potential, including the capacity to lead or benefit from resilience, recovery and livelihood initiatives.", - "values": [ - "Equality & Inclusion" - ] - }, - { - "text": "[Decides to extend the mandate of the Special Rapporteur for a period of three years, in order to, inter alia:] Cooperate closely with the Conference of the Parties to the United Nations Convention against Transnational Organized Crime, including its Working Group on Trafficking in Persons and the Working Group on the Review of the Implementation of the United Nations Convention against Transnational Organized Crime and the Protocols thereto, and attend and participate in their annual sessions, upon invitation;", - "values": [ - "Governance & Rule of Law", - "Violence" - ] - }, - { - "text": "[Considered that States should be guided by the following considerations:] [An effort should be made to resolve the problem of identifying the country responsible for examining an asylum request by the adoption of common criteria. In elaborating such criteria the following principles should be observed:] The criteria should be of such a character as to avoid possible disagreement between States as to which of them should be responsible for examining an asylum request and should take into account the duration and nature of any sojourn of the asylum-seeker in other countries;", - "values": [ - "Governance & Rule of Law", - "Movement" - ] - }, - { - "text": "The successful implementation of climate change policies and projects requires an understanding of the gender-based roles and relationships vis-\u00e0-vis natural resources, as well as the gender-differentiated impacts of climate change. The Beijing Declaration in 1995 was the first international declaration to recognize the links between gender equality and climate change. It took a long time for international climate change policy makers to address gender dimensions of climate change. The United Nations Framework Convention on Climate Change (UNFCCC) process referred to gender considerations only in \"Reducing Emissions from Deforestation and Forest Degradation\" (REDD+) and response measures, with the latter only referring to women as a \"vulnerable group\". In recent years, progress has been made in integrating gender equality in the COP decisions. It remains uncertain how the gender perspective to climate change policies will be acknowledged in the upcoming document of the climate change agreement.", - "values": [ - "Environment", - "Gender" - ] - }, - { - "text": "Some funders (IADB, UNICEF and the World Bank) use output frameworks as a primary tool to evaluate their performance and the achievement of particular projects\u2019 goals. Others (France, IADB, Japan and UNICEF) incorporate wide-scale quantitative targets into their worldwide and/or country strategies (for example, the number of people to be reached with new or improved access to drinking water and sanitation).", - "values": [ - "Governance & Rule of Law" - ] - }, - { - "text": "[Actions to be taken by Governments:] Criminalize all forms of trafficking in women and girls for the purposes of sexual exploitation and penalize all traffickers;", - "values": [ - "Governance & Rule of Law", - "Violence" - ] - }, - { - "text": "Sexual and reproductive health, human rights and sustainable development are all interconnected. The Sustainable Development Goals explicitly call for ensuring \u201cuniversal access to sexual and reproductive health and reproductive rights\u201d, and include targets related to that under Goal 3, Ensure healthy lives and promote well-being for all at all ages; Goal 4, Ensure inclusive and equitable quality education and promote lifelong learning opportunities for all; and Goal 5, Achieve gender equality and empower all women and girls. In addition, Goal 5 stresses that all forms of discrimination and violence against girls and women (including those with disabilities) must be eliminated. Investing in sexual and reproductive health and rights saves lives and empowers girls and young women with disabilities. Protecting and promoting their sexual and reproductive health and rights should therefore be a top priority for States", - "values": [ - "Equality & Inclusion", - "Health" - ] - }, - { - "text": "Expresses its willingness to consider how peacekeeping mandates might better address the negative impact of armed conflict on civilians;", - "values": [ - "Humanitarian" - ] - }, - { - "text": "2. In countries which have not abolished the death penalty, sentence of death may be imposed only for the most serious crimes in accordance with the law in force at the time of the commission of the crime and not contrary to the provisions of the present Covenant and to the Convention on the Prevention and Punishment of the Crime of Genocide. This penalty can only be carried out pursuant to a final judgement rendered by a competent court.", - "values": [ - "Civil & Political Rights", - "Governance & Rule of Law" - ] - }, - { - "text": "States Parties shall protect the rights of internally displaced persons regardless of the cause of displacement by refraining from, and preventing, the following acts, amongst others: Sexual and gender based violence in all its forms, notably rape, enforced prostitution, sexual exploitation and harmful practices, slavery, recruitment of children and their use in hostilities, forced labour and human trafficking and smuggling; and", - "values": [ - "Movement", - "Violence" - ] - }, - { - "text": "The provision of learning achievement certification is another concern related to the quality of education in emergency contexts, in particular for students in refugee schools. Specific strategies are required to ensure that, even in times of crisis, students have their achievements adequately monitored, documented and recognized.", - "values": [ - "Education", - "Humanitarian" - ] - }, - { - "text": "States have an obligation to take immediate steps to the maximum of their available resources, including those made available through international cooperation, to ensure that girls and young women with disabilities can fully exercise their sexual and reproductive rights and access quality sexual and reproductive health services. Government plans and budgets must incorporate sexual and reproductive health and rights policies and strategies and consider the particular needs of girls and young women with disabilities. Participatory budgeting processes and earmarked funds can help expand the allocation of public funds in that area. States should regularly monitor whether or not the resources available were used to progressively achieve the full realization of the sexual and reproductive health rights of girls and young women with disabilities", - "values": [ - "Economic Rights", - "Health" - ] - }, - { - "text": "Also requests the Special Rapporteur to report on the implementation of the present resolution to the Council at its twelfth session, including on the progress made and obstacles encountered in relation with the implementation at the national level of the measures and best practices adopted by States to respond to the global food crisis;", - "values": [ - "Food & Nutrition", - "Governance & Rule of Law" - ] - }, - { - "text": "There are also barriers that prevent children from accessing care and support upon their resettlement or return to their family and communities, such as the unwillingness of children to return home and reintegrate; stress factors that compromise the psychological health of children (e.g. legal proceedings, immigration and asylum procedures, stigma and discrimination associated with their exploitation); and prolonged residential care. In response to the latter, Canada has set up child advocacy centres that concentrate on collaborative and coordinated services to prevent system-induced trauma.", - "values": [ - "Health", - "Movement" - ] - }, - { - "text": "[The Commission [...] urges Governments, at all levels [...] to take the following actions:] [Strengthening normative, legal and policy frameworks]: Mainstream a gender perspective into education and training programmes, including science and technology, eradicate female illiteracy and support school-to-work transition through skills development to enable women's and girls' active participation in economic, social and cultural development, governance and decision-making, and create conditions that facilitate women's full participation and integration in the formal economy;", - "values": [ - "Education", - "Gender" - ] - }, - { - "text": "The Conference of States Parties shall: (d) Consider issues arising from the interpretation of this Treaty;", - "values": [ - "Governance & Rule of Law" - ] - }, - { - "text": "Reaffirming that food security is a national responsibility, and that any plan for addressing food security challenges must be nationally articulated, designed, owned and led, and built on consultation with all key stakeholders, and recognizing the commitment to strengthening the multilateral system in the channelling of resources and in the promotion of policies dedicated to fighting hunger and malnutrition,", - "values": [ - "Food & Nutrition", - "Health" - ] - }, - { - "text": "5.1.\u00a0\u00a0\u00a0 Families are sensitive to strains induced by social and economic changes. It is essential to grant particular assistance to families in difficult life situations. Conditions have worsened for many families in recent years, owing to lack of gainful employment and measures taken by Governments seeking to balance their budget by reducing social expenditures. There are increasing numbers of vulnerable families, including single-parent families headed by women, poor families with elderly members or those with disabilities, refugee and displaced families, and families with members affected by AIDS or other terminal diseases, substance dependence, child abuse and domestic violence. Increased labour migrations and refugee movements are an additional source of family tension and disintegration and are contributing to increased responsibilities for women. In many urban environments, millions of children and youths are left to their own devices as family ties break down, and hence are increasingly exposed to risks such as dropping out of school, labour exploitation, sexual exploitation, unwanted pregnancies and sexually transmitted diseases.", - "values": [ - "Economic Rights", - "Equality & Inclusion" - ] - }, - { - "text": "Reaffirming that a peaceful, stable and enabling political, social and economic environment, at both the national and the international levels, is the essential foundation which will enable States to give adequate priority to food security and poverty eradication,", - "values": [ - "Food & Nutrition", - "Governance & Rule of Law", - "Poverty" - ] - }, - { - "text": "On various occasions the Special Rapporteur has offered comments on minimum steps that he considers must be taken in order to move forward with the implementation of the Declaration, beyond its formal endorsement by States.", - "values": [ - "Governance & Rule of Law" - ] - }, - { - "text": "Historically, sport has often involved forms of \"hegemonic masculinity\": boys and men have frequently been enabled or encouraged to exhibit aggressive, violent or discriminatory behaviour in competitive sport, including sexism, misogyny, homophobia and transphobia. A welcome shift in this paradigm has occurred in a number of regions and countries where homophobia has decreased, where this has included the area of sports. Nevertheless, levels of homophobia, transphobia, and discrimination against intersex people remain high in most countries. Those who are perceived to fall outside dominant gender and heteronormative standards, including lesbian, gay, bisexual, transgender and intersex people, continue to face discriminatory treatment and restrictions in sport, including discrimination, harassment and violence, and a lack of safe and welcoming spaces for participation.", - "values": [ - "Equality & Inclusion", - "Gender" - ] - }, - { - "text": "Significant progress in legal and policy frameworks for women\u2019s rights has been made in the past decades. Nevertheless, while many countries have undertaken to repeal discriminatory laws, such laws persist in many parts of the world. Severely discriminatory laws and practices remain in particular areas of women\u2019s human rights that continue to be contested, such as sexual and reproductive rights and equal rights in the family. Discriminatory laws also exist where the law is used punitively against women to maintain patriarchal values or to criminalize women\u2019s struggles for their rights. In all contexts, there are ongoing challenges to the inclusion of an intersectoral approach to women\u2019s full equality. Even in areas where the legal framework has advanced, or in societies with extensive and robust gender equality laws and policies, the test lies in the ability to implement progressive laws in practice. Innumerable barriers remain on many levels, not least of which is the male-controlled and discriminatory environment within which laws are operationalized. A good law requires a fully ameliorating environment in which it can be meaningfully implemented. No matter how strongly the law is drafted, it is filtered through the biases and limitations of the individuals and institutions, public and private, responsible for grounding it in reality, compounded by a social environment that disadvantages women through the perpetuation of historical discrimination, the patriarchal construction of gender and the perpetuation of stereotypes and prejudices. These factors must be considered closely when identifying which laws have become good practices.", - "values": [ - "Governance & Rule of Law", - "Health" - ] - }, - { - "text": "[Calls upon all States:] To establish, strengthen or facilitate, where possible, support services to respond to the needs of actual and potential victims by, inter alia, providing for them the appropriate protection, safe shelter, counselling, legal aid, health-care services, including in the areas of sexual and reproductive health, psychological health and other relevant areas, rehabilitation and reintegration into society;", - "values": [ - "Health" - ] - }, - { - "text": "The 2013 conclusions highlight the prevention of and response to all forms of violence against women and girls, including sexual and gender-based violence, in armed conflict and post-conflict situations, including through investigation, prosecution and punishment of perpetrators to end impunity; removal of barriers to women's access to justice; the establishment of complaint and reporting mechanisms; the provision of support to victims and survivors; affordable and accessible health-care services; reintegration measures; and steps to increase women's participation in conflict resolution and peacebuilding processes and post-conflict decision-making.", - "values": [ - "Humanitarian", - "Violence" - ] - }, - { - "text": "4. Advisory opinions of the Court shall be communicated to the Committee of Ministers.", - "values": [ - "Governance & Rule of Law" - ] - }, - { - "text": "[For the purposes of this Convention, the term the worst forms of child labour comprises:] (c) the use, procuring or offering of a child for illicit activities, in particular for the production and trafficking of drugs as defined in the relevant international treaties", - "values": [ - "Economic Rights", - "Violence" - ] - }, - { - "text": "A number of other factors and developments which have serious implications for women's health and safety are not tackled in the present report owing to space restrictions. These include climate change and other environmental catastrophes and degradation and gender-based violence in armed conflicts.", - "values": [ - "Environment", - "Health" - ] - }, - { - "text": "[The Commission [...] urges Governments [...] to:] [14.2. Education and training] (h) Develop well-resourced educational and livelihood skills programmes to reach girls who are not enrolled in formal education programmes owing to specific life circumstances, inter alia, extreme poverty, child labour, abuse or exploitation, trafficking, prostitution, armed conflict and displacement, migration, early and forced marriage, pregnancy, motherhood and disability;", - "values": [ - "Education", - "Gender" - ] - }, - { - "text": "One of the biggest incentives for improved wastewater management is the increasing understanding that wastewater is a resource. In the agricultural sector, an estimated area of between 4 million and 20 million ha worldwide (i.e., the surface area of Switzerland and Senegal, respectively) is irrigated with wastewater or fertilized by sludge. While this use is welcome, when the use is unregulated, it exposes producers, residents and consumers to health risks. Therefore, the risks and benefits of irrigation with wastewater need to be balanced. The Guidelines on the Safe Use of Wastewater, Excreta and Greywater in Agriculture and Aquaculture provide useful standards. In Namibia, the Special Rapporteur witnessed efforts to treat wastewater to the standard of drinking water (see A/HRC/21/42/Add.3, para. 15).", - "values": [ - "Health", - "Water & Sanitation" - ] - }, - { - "text": "56. Governments, in accordance with the Programme of Action, should take effective action to ensure the basic right of all couples and individuals to decide freely and responsibly the number, spacing and timing of their children and to have the information, education and means to do so.", - "values": [ - "Governance & Rule of Law", - "Health" - ] - }, - { - "text": "In ensuring their access, States must assess and address the particular plight and vulnerabilities of such children. They should, in particular, take into account the fact that unaccompanied children have undergone separation from family members and have also, to varying degrees, experienced loss, trauma, disruption and violence. Many such children, in particular those who are refugees, have further experienced pervasive violence and the stress associated with a country afflicted by war. This may have created deep-rooted feelings of helplessness and undermined a child's trust in others. Moreover, girls are particularly susceptible to marginalization, poverty and suffering during armed conflict, and many may have experienced gender-based violence in the context of armed conflict. The profound trauma experienced by many affected children calls for special sensitivity and attention in their care and rehabilitation.", - "values": [ - "Gender", - "Humanitarian", - "Violence" - ] - }, - { - "text": "External threats to indigenous land rights are not the only cause of abuses of women's rights in relation to land. The roles that women hold within indigenous communities and the way that some indigenous property frameworks reflect patriarchal power structures. Indigenous women commonly experience significant barriers to holding and inheriting land. especially when they are widowed.", - "values": [ - "Gender", - "Social & Cultural Rights" - ] - }, - { - "text": "Reaffirming also that no distinctions are permitted among citizens in the enjoyment of the right to participate in the conduct of public affairs on the grounds of race, colour, sex, language, religion, political or other opinion, national or social origin, property, birth or other status, or on the basis of disability,", - "values": [ - "Civil & Political Rights", - "Equality & Inclusion" - ] - }, - { - "text": "No provision in this Convention shall be interpreted as affecting or undermining the right of internally displaced persons to seek and be granted asylum within the framework of the African Charter on Human and Peoples' Rights, and to seek protection, as a refugee, within the purview of the 1969 OAU Convention Governing the Specific Aspects of Refugee Problems in Africa or the 1951 U.N Convention Relating to the Status of Refugees as well as the 1967 Protocol Relating to the Status of Refugees.", - "values": [ - "Governance & Rule of Law", - "Movement" - ] - }, - { - "text": "Reaffirms that the human rights to safe drinking water and sanitation, as components of the right to an adequate standard of living, are essential for the full enjoyment of the right to life and all human rights;", - "values": [ - "Water & Sanitation" - ] - }, - { - "text": "Harmful practices are therefore grounded in discrimination based on sex, gender and age, among other things, and have often been justified by invoking sociocultural and religious customs and values, in addition to misconceptions relating to some disadvantaged groups of women and children. Overall, harmful practices are often associated with serious forms of violence or are themselves a form of violence against women and children. While the nature and prevalence of the practices vary by region and culture, the most prevalent and well documented are female genital mutilation, child and/or forced marriage, polygamy, crimes committed in the name of so-called honour and dowry-related violence. Given that those practices are frequently raised before both Committees, and in some cases have been demonstrably reduced through legislative and programmatic approaches, they are used herein as key illustrative examples.", - "values": [ - "Harmful Practices", - "Violence" - ] - }, - { - "text": "69. While one of the most important interventions to reduce HIV infections in infants is primary prevention of infection, Governments should also scale up, where appropriate, education and treatment projects aimed at preventing mother-to-child transmission of HIV. Anti-retroviral drugs, where feasible, should be made available to women living with HIV/AIDS during and after pregnancy as part of their ongoing treatment of HIV/AIDS and provide infant-feeding counselling for mothers living with HIV/AIDS so that they can make free and informed decisions.", - "values": [ - "Education", - "Health" - ] - }, - { - "text": "Since 1975, knowledge of the status of women and men, respectively, has increased and is contributing to further actions aimed at promoting equality between women and men. In several countries, there have been important changes in the relationships between women and men, especially where there have been major advances in education for women and significant increases in their participation in the paid labour force. The boundaries of the gender division of labour between productive and reproductive roles are gradually being crossed as women have started to enter formerly male-dominated areas of work and men have started to accept greater responsibility for domestic tasks, including child care. However, changes in women's roles have been greater and much more rapid than changes in men's roles. In many countries, the differences between women's and men's achievements and activities are still not recognized as the consequences of socially constructed gender roles rather than immutable biological differences.", - "values": [ - "Economic Rights", - "Gender" - ] - }, - { - "text": "[The obligation to respect includes the adoption of specific measures aimed at achieving respect for the right of everyone, individually or in association with others or within a community or group:] To freely choose their own cultural identity, to belong or not to belong to a community, and have their choice respected;\nThis includes the right not to be subjected to any form of discrimination based on cultural identity, exclusion or forced assimilation, and the right of all persons to express their cultural identity freely and to exercise their cultural practices and way of life. States parties should consequently ensure that their legislation does not impair the enjoyment of these rights through direct or indirect discrimination.", - "values": [ - "Equality & Inclusion", - "Social & Cultural Rights" - ] - }, - { - "text": "The present section provides definitions of key concepts and terminology used in the climate change debate. The Intergovernmental Panel on Climate Change defines climate change as \"any change in the climate over time, whether due to natural variability or [\u2026] human activity\". The United Nations Framework Convention on Climate Change, however, specifically focuses on changes in the climate which are \"attributed directly or indirectly to human activity\" and are \"in addition to natural climate variability\".", - "values": [ - "Environment" - ] - }, - { - "text": "In this section, attention is drawn to specific norms of, and obligations deriving from, the right to health relevant to early childhood development. The vast majority of these standards are also relevant to measures addressing child survival. This approach underscores the benefits of addressing the right to survival and development in an integrated manner.", - "values": [ - "Education", - "Health" - ] - }, - { - "text": "In stating that same-sex relations are not criminalized in the country, Slovakia observed that the Constitution regulates the principle of equal treatment for all and there is also a national strategy for human rights promotion. Slovenia cited the new Protection against Discrimination Act 2016 which covers, inter alia, sexual orientation, sexual identity or sexual expression. Sexual orientation is also reflected in the Employment Relationship Act. Poland called attention to both the civil law and criminal law. There is an anti-discrimination act of 2010 which covers sexual orientation, while the penal code covers incitement to hatred and violence, encompassing sexual orientation and gender identity. This is paralleled by labour legislation, a national programme for equal treatment and data collection;", - "values": [ - "Equality & Inclusion", - "Governance & Rule of Law" - ] - }, - { - "text": "1. A State Party which receives a request from the Court for the surrender of a person under article 89 shall, if it also receives a request from any other State for the extradition of the same person for the same conduct which forms the basis of the crime for which the Court seeks the person's surrender, notify the Court and the requesting State of that fact.", - "values": [ - "Civil & Political Rights", - "Governance & Rule of Law" - ] - }, - { - "text": "[Whether or not a customary norm prohibiting the death penalty has crystallized, the Special Rapporteur calls upon all retentionist States to observe rigorously the restrictions and conditions imposed by article 7 of the International Covenant on Civil and Political Rights and article 1 or article 16 of the Convention against Torture. The Special Rapporteur calls upon retentionist States:] To use solitary confinement on death row only in accordance with the recommendations made in his previous report to the General Assembly (A/66/268);", - "values": [ - "Civil & Political Rights" - ] - }, - { - "text": "Further investments are required to ensure systematic data collection on the situation of education in emergencies. States and international and non governmental organizations providing support to education in emergencies should work on the development of a common framework for the assessment and reporting of met and unmet education needs in contexts of emergency. Such a framework must take into consideration human rights obligations regarding the right to education.", - "values": [ - "Education", - "Humanitarian" - ] - }, - { - "text": "2. The exercise of these freedoms, since it carries with it duties and responsibilities, may be subject to such formalities, conditions, restrictions or penalties as are prescribed by law and are necessary in a democratic society, in the interests of national security, territorial integrity or public safety, for the prevention of disorder or crime, for the protection of health or morals, for the protection of the reputation or rights of others, for preventing the disclosure of information received in confidence, or for maintaining the authority and impartiality of the judiciary.", - "values": [ - "Governance & Rule of Law", - "Health" - ] - }, - { - "text": "The right of people living in poverty to participate fully in society and in decision-making is blocked by multiple compounding obstacles - economic, social, structural, legal and systemic. All of these relate to their lack of financial, social and political power. Discrimination and stigma, disempowerment, lack of income, mistrust and fear of authorities all limit the possibilities and incentives for people living in poverty to participate. Due to their lack of status and power, people living in poverty are also particularly vulnerable to corruption, clientelism or co-option. At the most extreme level, poor or marginalized individuals may face reprisal (emanating from State or non-State actors such as corrupt community leaders of business enterprises) if they speak out in participatory spaces, in the form of violence or threats to them, their families, property or livelihoods. Often, the economic dependency of people living in poverty on more powerful individuals or groups may also prevent them from participating or speaking out, even in the absence of concrete threats, for fear of losing their livelihoods. This is a problem particularly in very hierarchical or caste-based societies.", - "values": [ - "Equality & Inclusion", - "Poverty" - ] - }, - { - "text": "[Also urges States to create and maintain, in law and in practice, a safe and enabling environment for civil society, and in this regard encourages States to use good practices such as, inter alia, those compiled in the report of the High Commissioner on practical recommendations for the creation and maintenance of a safe and enabling environment for civil society, based on good practices and lessons learned 2 by, inter alia:] Providing for access to information, including by adopting clear laws and policies providing for effective disclosure of information held by public authorities and a general right to request and receive information subject to clearly and strictly defined exceptions in accordance with international human rights law;", - "values": [ - "Equality & Inclusion", - "Governance & Rule of Law" - ] - }, - { - "text": "Recalls the 1996 Geneva Conference on the problems of refugees, displaced persons, migration and asylum issues in the countries of the Commonwealth of Independent States; concludes with satisfaction that the ten-year follow-up process generated by the Conference is nearing its completion and has been successful in pursuing the original goals of addressing the multi-faceted protection and migration challenges of the countries of the CIS in a coherent and concerted way; and encourages States, UNHCR and other relevant actors to continue to work collaboratively, building on the successes of the Conference Process to date;", - "values": [ - "Governance & Rule of Law", - "Movement" - ] - }, - { - "text": "The Commission stresses that the right to education is a human right, and that eliminating illiteracy, ensuring equal access to education, in particular in rural and remote areas, and closing the gender gap at all levels of education empowers women and girls and thereby contributes to the elimination of all forms of discrimination and violence against women and girls.", - "values": [ - "Education", - "Gender" - ] - }, - { - "text": "Recognizing also the twenty-fifth anniversary of the adoption by the International Labour Organization of the Indigenous and Tribal Peoples Convention, 1989 (No. 169) and its contribution to the promotion and protection of the rights of indigenous peoples,", - "values": [ - "Governance & Rule of Law" - ] - }, - { - "text": "Welcoming the adoption of the 2030 Agenda for Sustainable Development, which recognizes the positive contribution of migrants for inclusive growth and sustainable development, and that international migration is a multidimensional reality of major relevance for the development of countries of origin, transit and destination, which requires coherent and comprehensive responses involving full respect for human rights and the humane treatment of migrants, regardless of their migration status, and acknowledging that meeting the Sustainable Development Goals and targets of the 2030 Agenda could reduce the need for migrants to leave their homes in search of greater opportunities by addressing some of the root causes of movements of refugees and migrants", - "values": [ - "Equality & Inclusion", - "Movement" - ] - }, - { - "text": "In all instances, by protecting vulnerable groups, preventing regression into poverty, promoting income generation and investing in human capital, social protection programmes help to reduce income poverty and hunger. However, such programmes must be supported by sound macroeconomic and fiscal policies in order to ensure their long-term sustainability. Moreover, their effectiveness in the attainment of human development objectives is greater when adequate social services are available.", - "values": [ - "Poverty" - ] - }, - { - "text": "How aware is the general population of the issue of sexual orientation and gender identity and the interface with violence and discrimination? The reality is often embedded in lack of awareness, misunderstanding, misconceptions and/or ambivalence. Violence and discrimination on the basis of sexual orientation and gender identity often starts being experienced in childhood, at home and in school, for example through bullying. The lack of awareness/knowledge might be compounded by stereotyping, homophobia and transphobia, virulent from the bottom to the top of the social, cultural and political ladder, tailed by the immediacy of social networks. Even among those who are educated, there is at times a cloistered mindset that wrongly looks upon lesbian, gay, bisexual and transgender people as being deviants and being mentally ill. Hate crimes, such as killings, rapes, incitement to violence, and cruel treatment on account of one\u2019s sexual orientation or gender identity, might be paralleled by prejudice, intolerance and bigotry from the personal level to the systemic level.", - "values": [ - "Equality & Inclusion", - "Gender", - "Violence" - ] - }, - { - "text": "Urges all parties to armed conflicts to provide safe, unimpeded access to humanitarian assistance for those women and children, in accordance with international humanitarian law;", - "values": [ - "Governance & Rule of Law", - "Humanitarian" - ] - }, - { - "text": "[The Commission [...] urges Governments [...] to:] [14.9. Violence and discrimination] (h) Eliminate all forms of discrimination against the girl child and the root causes of son preference, which results in harmful and unethical practices regarding female infanticide and prenatal sex selection, which may have significant repercussions on society as a whole;", - "values": [ - "Equality & Inclusion", - "Harmful Practices" - ] - }, - { - "text": "[Urges all States to ensure the full, effective and equal participation of all citizens in political and public affairs, including by, inter alia:] Ensuring the rights of everyone to freedom of expression, peaceful assembly and freedom of association, education and development, and facilitating equal and effective access to information, media and communications technology in order to enable pluralistic debates fostering inclusive and effective participation in political and public affairs", - "values": [ - "Civil & Political Rights", - "Equality & Inclusion" - ] - }, - { - "text": "Human rights law places a high value on the individual's ability to hold beliefs and practise religious faith. The Human Rights Council has raised concerns about discrimination and violence against persons on the basis of their religion or belief (see Council resolution 16/18). Yet neither article 18, on freedom of religion, conscience or belief, article 19 nor article 20 (2) of the Covenant protects religions, institutions or beliefs as such. The Special Rapporteur on freedom of religion or belief has noted that the right to freedom of religion or belief has sometimes been misperceived as protecting religions or belief systems in themselves (see A/HRC/31/18, para. 13), when it in fact protects individuals holding or expressing those beliefs. In paragraph 48 of its general comment No. 34, the Human Rights Committee emphasized that prohibitions of displays of lack of respect for a religion or other belief system, including blasphemy laws, are incompatible with article 19. Nor, the Committee noted, would it be permissible for such prohibitions to be used to prevent or punish criticism of religious leaders or commentary on religious doctrine and tenets of faith.", - "values": [ - "Equality & Inclusion", - "Social & Cultural Rights" - ] - }, - { - "text": "Furthermore, minorities may experience disproportionate effects of conflicts owing to aggravating factors: minorities who are marginalized or poor may live in the most remote or impoverished regions or neighbourhoods, including in urban slums where humanitarian protection or even police protection is limited, and thus they may experience a disproportionate impact of crises that break out, or owing to their vulnerability and marginalization, be less well equipped in the face of emerging conflicts.", - "values": [ - "Humanitarian", - "Poverty" - ] - }, - { - "text": "The Special Rapporteur believes that the issue of informed consent of older persons is increasingly important given global ageing and the consequent societal challenges. He further believes that international guidelines and national systems should be developed to regulate practices and ensure that older people are supported in making informed health-care decisions. It is also desirable to establish peer groups who would provide older persons with information before their visit to a doctor or other care provider for treatment, which might help overcome immediate problems such as lack of training.", - "values": [ - "Equality & Inclusion", - "Health" - ] - }, - { - "text": "Recalling the Incheon Declaration: Education 2030: Towards inclusive and equitable quality education and lifelong learning for all, adopted at the World Education Forum 2015, held in Incheon, Republic of Korea,", - "values": [ - "Education", - "Equality & Inclusion" - ] - }, - { - "text": "We stress the need to address the root causes of excessive food price volatility, including its structural causes, at all levels, and the need to manage the risks linked to high and excessively volatile prices in agricultural commodities and their consequences for global food security and nutrition, as well as for smallholder farmers and poor urban dwellers.", - "values": [ - "Food & Nutrition" - ] - }, - { - "text": "Expressing its concern about the adverse impact on the realization of the right to food caused by many humanitarian emergencies, including plagues and natural disasters,", - "values": [ - "Food & Nutrition", - "Health", - "Humanitarian" - ] - }, - { - "text": "The Special Rapporteur believes the same principle of minimal intervention should apply when tax and other incentives are granted to associations. He therefore rejects the argument that the receipt of tax incentives means that associations should be subject to significantly stricter financial and operational controls.", - "values": [ - "Economic Rights", - "Governance & Rule of Law" - ] - }, - { - "text": "2 Parties shall ensure that a gender-sensitive interpretation is given to each of the Convention grounds and that where it is established that the persecution feared is for one or more of these grounds, applicants shall be granted refugee status according to the applicable relevant instruments.", - "values": [ - "Gender", - "Movement" - ] - }, - { - "text": "[With regard to the use of explosive weapons in populated areas, the Special Representative urges Member States to take steps to reduce the impact of such weapons on children, including by:] Refraining from using explosive weapons with wide-area effect in populated areas, including by revising and strengthening military policies and procedures, as necessary, and ensuring that all military operations are in compliance with international humanitarian law and underpinned by the principles of distinction, proportionality and precaution;", - "values": [ - "Governance & Rule of Law", - "Humanitarian" - ] - }, - { - "text": "The challenge is to set such an overall goal on equality that does justice to its cross-cutting nature, relevance to all fields of development and different grounds and manifestations of inequalities. To address these challenges, the future development agenda could include an overall goal on achieving equality accompanied by targets for different sectors for reducing inequalities. Since it might not be necessary, feasible or advisable to relate all targets to all different grounds of discrimination, the pertaining indicators could focus on the dominant inequalities as relevant for different sectors relating to sex, disability, age, income/wealth, ethnicity, and geographic location, among other stratifiers. The overall framework would have to ensure that all different types of inequalities are captured. Optionally, if indicators with ordinal values were selected, the different sectoral indicators could be combined for a composite score that would yield an overall measure of equality.", - "values": [ - "Equality & Inclusion" - ] - }, - { - "text": "Reaffirming the Vienna Declaration and Programme of Action, the Declaration on the Elimination of Violence against Women, the Beijing Declaration and Platform for Action, the outcome of the twenty-third special session of the General Assembly entitled \u201cWomen 2000: gender equality, development and peace for the twenty-first century\u201d and the ministerial declaration of the high-level segment of the substantive session of 2010 of the Economic and Social Council,", - "values": [ - "Gender", - "Governance & Rule of Law" - ] - }, - { - "text": "Affirming that everyone has the right to a standard of living adequate for the health and well-being of himself or herself and of his or her family, including food, clothing, housing and medical care and necessary social services, and the right to security in the event of unemployment, sickness, disability, widowhood, old age or other lack of livelihood in circumstances beyond his or her control,", - "values": [ - "Equality & Inclusion", - "Health" - ] - }, - { - "text": "Many of the obstacles indigenous peoples face in the recognition of their rights to land and resources are linked to undue delays in the existing procedures and their inability to access justice, particularly when rights of third parties are involved. Access to justice remains elusive for indigenous peoples, both because of the numerous obstacles they face to effectively access the general justice systems and for the lack of adequate recognition of their own customary laws and jurisdiction.", - "values": [ - "Civil & Political Rights", - "Governance & Rule of Law", - "Social & Cultural Rights" - ] - }, - { - "text": "[The Special Rapporteur makes the following recommendations:] States: Provide gender-sensitive training to police, military forces, judiciary and social workers, including on preventing and addressing SGBV in displacement situations;", - "values": [ - "Gender", - "Movement", - "Violence" - ] - }, - { - "text": "UNICEF both generates and monitors country-specific data that may reveal situations of emerging conflict. Its activities focusing on the most marginalized and vulnerable women and children position it uniquely to play an early prevention role with respect to minority rights. Given that minority children are often the most disadvantaged, there is a sound basis for the engagement of UNICEF in minority issues. With a wide network of offices worldwide, UNICEF is in an important position to encourage the introduction of minority issues on Government public policy agendas, to support Government efforts and directly deliver assistance to minority children and women. The UNICEF field presence is common in conflict zones, and its focus on protection issues makes it an institution with key relevance to conflict prevention. At UNICEF headquarters, there is a cluster of professionals whose portfolios include minority rights issues.", - "values": [ - "Equality & Inclusion", - "Humanitarian" - ] - }, - { - "text": "The tenth anniversary of the adoption of the Voluntary Guidelines to Support the Progressive Realization of the Right to Adequate Food in the Context of National Food Security is observed in 2014. The Voluntary Guidelines were developed as a practical tool for States to assist them in implementing their obligations under article 11 of the International Covenant on Economic, Social and Cultural Rights. They build on international law and complement the objectives set out in the Plan of Action of the 1996 World Food Summit. They also provide an additional instrument to accelerate attainment of the Millennium Development Goals and the post-2015 sustainable development goals. While the Voluntary Guidelines do not establish legally binding obligations for States or international organizations, Guideline 7 does, however, provide guidance on strengthening legal frameworks at the domestic leve", - "values": [ - "Food & Nutrition", - "Governance & Rule of Law" - ] - }, - { - "text": "[The Commission [...] urges Governments, at all levels [...] to take the following actions:] [Strengthening normative, legal and policy frameworks]: Urges governments to provide universal and equitable access for all to safe and affordable drinking water and adequate sanitation and hygiene, in particular in schools, public facilities and buildings, paying special attention to the specific needs of all women and girls, who are disproportionately affected by inadequate water and sanitation facilities, are at greater risk of violence and harassment when practising open defecation and have specific needs for menstrual hygiene management, and to improve water management and wastewater treatment with the active participation of women;", - "values": [ - "Equality & Inclusion", - "Water & Sanitation" - ] - }, - { - "text": "Urges Member States to encourage women entrepreneurs, including through education and training of women in business, administration and information and communications technologies, and invites business associations to assist national efforts in this regard;", - "values": [ - "Education", - "Equality & Inclusion", - "Gender" - ] - }, - { - "text": "The Committee considers the training of relevant police, prison staff, medical personnel, judicial personnel and immigration personnel, including training on the Istanbul Protocol, to be fundamental to ensuring effective investigations. Furthermore, officials and personnel involved in efforts to obtain redress should receive methodological training in order to prevent re-traumatization of victims of torture or ill-treatment. This training should include, for health and medical personnel, the need to inform victims of gender-based and sexual violence and all other forms of discrimination of the availability of emergency medical procedures, both physical and psychological. The Committee also urges States parties to establish human rights offices within police forces, and units of officers specifically trained to handle cases of gender-based and sexual violence, including sexual violence perpetrated against men and boys, and violence against children and ethnic, religious, national or other minorities and other marginalized or vulnerable groups.", - "values": [ - "Gender", - "Health", - "Violence" - ] - }, - { - "text": "[The Special Rapporteur makes the following recommendations:] [States affected by displacement] Improve disaggregated data collection on, and profiling and needs assessments of, IDPs. Improve methodologies and the capacity of national statistical offices to ensure accurate data on numbers, demographic characteristics, locations and needs, while ensuring the confidentiality of data, to inform appropriate programmes and solutions, and monitor progress over time on the basis of key indicators.", - "values": [ - "Humanitarian" - ] - }, - { - "text": "To respond appropriately to the situations of climate-change-induced migration, engagement is necessary at all levels of governance. Moreover, policy responses to the multiple impacts of climate change need to be developed simultaneously. Short-term response might be largely humanitarian, in the context of both sudden, climate-related disasters and that of slower impacts, such as food and water insecurity and access to other basic rights. However, such approaches need to be supplemented by medium- and long-term responses. Medium-term responses should focus on adaptation at the community and country levels, building resilience in populations at risk from environmental deterioration and the efficient use of technologies to better depend on the natural changing of the environment. Policy development and programming also need to be factored in. Long-term policies require international engagement in the limitation of greenhouse gas emissions in order to limit the pace of global warming.", - "values": [ - "Environment", - "Humanitarian" - ] - }, - { - "text": "The Committee acknowledges that investment in early childhood development has a positive impact on children's ability to exercise their rights, breaks poverty cycles and brings high economic returns. Underinvestment in children in their early years can be detrimental to cognitive development and can reinforce existing deprivations, inequalities and intergenerational poverty.", - "values": [ - "Education" - ] - }, - { - "text": "Calls on States to, where possible, develop multi-sectoral environmental health strategies to address the health conditions caused by environmental exposure to pollutants and other environmental harm, which are affecting children disproportionately, including through public awareness-raising, education, research, surveillance, testing and treatment of health conditions caused by environmental threats, with a particular focus on child health, and to support efforts to highlight the responsibilities of businesses in relation to environmental health;", - "values": [ - "Environment", - "Health" - ] - }, - { - "text": "[Calls upon all States to include the relevant provisions to protect children from discrimination and overcome inequalities and, in particular:] To take all necessary measures to ensure universal access to birth registration of all children immediately after birth, including those living in remote areas, by, inter alia, removing barriers that impede their registration, moving towards the provision of free birth registration, ensuring the existence of a simple, effective, expeditious and accessible birth registration system, including late birth registration, ensuring the right of every child to a name and the right to acquire a nationality, respecting the selection by parents of a name of their own choosing, respecting the child's preservation of his or her identity and, as far as possible, protecting the child's knowing and being cared for by his or her parents;", - "values": [ - "Civil & Political Rights" - ] - }, - { - "text": "Noting the role that innovative means of communication and technology can play with regard to improving accessibility and helping to ensure that no constituency among persons with disabilities is excluded throughout the different stages of emergency response, including preparedness, response, recovery and reconstruction,", - "values": [ - "Equality & Inclusion", - "Humanitarian" - ] - }, - { - "text": "The Commission calls upon Governments to strengthen the authority and capacity, including through funding where possible, of national mechanisms for promoting gender equality and the empowerment of women and girls, at all levels, including to support the mainstreaming of a gender perspective across all policies and programmes in all sectors of government in the context of the 2030 Agenda, and promote the visibility of and support for these mechanisms.", - "values": [ - "Gender", - "Governance & Rule of Law" - ] - }, - { - "text": "Violence violates the equality and non-discrimination rights of women and girls in ways that are contingent on women's material conditions, individual attributes and social locations. A holistic approach for the elimination of all forms of violence against all women therefore requires systematic discrimination and marginalization to be addressed.", - "values": [ - "Equality & Inclusion", - "Violence" - ] - }, - { - "text": "Recognizes that the promises made at the World Food Summit in 1996 to halve the number of persons who are undernourished are not being fulfilled, and invites once again all international financial and development institutions, as well as the relevant United Nations agencies and funds, to give priority to and provide the necessary funding to realize the aim of halving by 2015 the proportion of people who suffer from hunger, as well as the right to food as set out in the Rome Declaration on World Food Security6 and the United Nations Millennium Declaration;4", - "values": [ - "Food & Nutrition", - "Governance & Rule of Law" - ] - }, - { - "text": "4. States Parties shall take all appropriate measures with a view to achieving full realisation of this right to gainful employment and shall in particular: h) Institute national youth service programmes to engender community participation and skills development for entry into the labour market", - "values": [ - "Economic Rights", - "Gender" - ] - }, - { - "text": "[1. States Parties recognize the right of persons with disabilities to work, on an equal basis with others; this includes the right to the opportunity to gain a living by work freely chosen or accepted in a labour market and work environment that is open, inclusive and accessible to persons with disabilities. States Parties shall safeguard and promote the realization of the right to work, including for those who acquire a disability during the course of employment, by taking appropriate steps, including through legislation, to, inter alia:] (b) Protect the rights of persons with disabilities, on an equal basis with others, to just and favourable conditions of work, including equal opportunities and equal remuneration for work of equal value, safe and healthy working conditions, including protection from harassment, and the redress of grievances;", - "values": [ - "Economic Rights", - "Equality & Inclusion" - ] - }, - { - "text": "Examples of violations include (a) lack of protection against denial of access to facilities; (b) lack of protection of health and dignity for sanitation workers; (c) lack of protection from violence when accessing facilities; and (d) lack of protection from harmful practices, in particular in the context of sanitation and menstrual hygiene.", - "values": [ - "Health", - "Water & Sanitation" - ] - }, - { - "text": "The Commission emphasizes the mutually reinforcing relationship among women's economic empowerment in the changing world of work and the full, effective and accelerated implementation of the Beijing Declaration and Platform for Action and the gender-responsive implementation of the 2030 Agenda for Sustainable Development. It acknowledges the important contribution of women and girls to sustainable development and reiterates that gender equality and the empowerment of all women and girls and women's full and equal participation and leadership in the economy are vital for achieving sustainable development, promoting peaceful, just and inclusive societies, enhancing sustained, inclusive and sustainable economic growth and productivity, ending poverty in all its forms everywhere and ensuring the well-being of all.", - "values": [ - "Economic Rights", - "Equality & Inclusion" - ] - }, - { - "text": "2. States Parties shall take the following measures to promote active youth participation in society: They shall: f) Institute measures to professionalize youth work and introduce relevant training programmes in higher education and other such training institutions;", - "values": [ - "Education", - "Equality & Inclusion" - ] - }, - { - "text": "In its general comment No. 12 (1999), the Committee on Economic, Social and Cultural Rights defined the necessary elements required for the right to food (i.e. the possibility either to feed oneself directly from productive land or other natural resources or to purchase food) as availability, accessibility and adequacy.", - "values": [ - "Equality & Inclusion", - "Food & Nutrition" - ] - }, - { - "text": "3. Notwithstanding the provisions of paragraphs 1 (b) and 2 of this article, a child born in wedlock in the territory of a Contracting State, whose mother has the nationality of that State, shall acquire at birth that nationality if it otherwise would be stateless.", - "values": [ - "Civil & Political Rights" - ] - }, - { - "text": "The Special Rapporteur is concerned at widespread discrimination and violence suffered by women as a result of their sexual orientation and gender identity. The visit to Kyrgyzstan indicated a high level of societal homophobia, discrimination and violence against lesbian, bisexual and transgender people. Interlocutors shared accounts of incidents of such violence, including brutal gang rapes, \"curative\" rapes and family violence owing to their sexual identity and gender identity. One study indicated that 23 per cent of lesbian and bisexual women have had forced sexual contacts and 56 per cent have had their families try to force them to change their sexual identity or orientation. A similar pattern was found during the visit to El Salvador, where murders had increased towards homosexuals, bisexuals, transgender and intersex communities from 4 in 2003 to at least 12 in 2009. Accounts of widespread discrimination and violence, including gang rapes and family violence, were shared with the Special Rapporteur.", - "values": [ - "Gender", - "Violence" - ] - }, - { - "text": "Governments have a leading responsibility in the realization of children's rights. This includes violence prevention and children's online protection.", - "values": [ - "Gender", - "Violence" - ] - }, - { - "text": "A retrogressive measure is one that, directly or indirectly, leads to backward steps in the enjoyment of human rights. Examples include raising the price of services disproportionately so that poor people can no longer afford water and sanitation, and letting infrastructure deteriorate due to a lack of investment in operation and maintenance. In times of financial and economic crisis, retrogressive measures are more common and their impacts often exacerbated by austerity measures.", - "values": [ - "Governance & Rule of Law", - "Poverty", - "Water & Sanitation" - ] - }, - { - "text": "Recognizes the need to establish and apply fair and expeditious asylum procedures, so as to identify promptly those in need of international protection and those who are not, which will avoid protracted periods of uncertainty for the asylum-seeker, discourage misuse of the asylum system and decrease the overall demands on the reception system;", - "values": [ - "Governance & Rule of Law", - "Movement" - ] - }, - { - "text": "Reaffirming that the general principles of the Convention on the Rights of the Child, including the best interests of the child, non-discrimination, participation, survival and development, provide the framework for all actions concerning children,", - "values": [ - "Governance & Rule of Law" - ] - }, - { - "text": "Everyone shall have the right to recognition everywhere as a person before the law.", - "values": [ - "Civil & Political Rights", - "Equality & Inclusion" - ] - }, - { - "text": "Takes note of the report of the Secretary-General, submitted to the General Assembly at its sixty-sixth session, on the implementation of resolution 65/212 and on how the International Convention on the Protection of the Rights of All Migrant Workers and Members of Their Families has influenced policy and practice, where applicable, to strengthen the protection of migrants;", - "values": [ - "Governance & Rule of Law", - "Movement" - ] - }, - { - "text": "Calls upon all Member States to make further concrete efforts at the national and international levels to remove the obstacles to the realization of the right to development;", - "values": [ - "Governance & Rule of Law" - ] - }, - { - "text": "While United Nations human rights instruments, mechanisms and agencies have recognized that the forced sterilization of persons with disabilities constitutes discrimination, a form of violence, torture and other cruel, inhuman or degrading treatment, the practice is still legal and applied in many countries. Across the globe, many legal systems allow judges, health-care professionals, family members and guardians to consent to sterilization procedures on behalf of persons with disabilities as being in their \u201cbest interest\u201d, particularly for girls with disabilities who are under the legal authority of their parents. The practices are often conducted on a purported precautionary basis because of the vulnerability of girls and young women with disabilities to sexual abuse, and under the fallacy that sterilization would enable girls and young women with disabilities who are \u201cdeemed unfit for parenthood\u201d to improve their quality of life without the \u201cburden\u201d of a pregnancy. However, sterilization neither protects them against sexual violence or abuse nor removes the State\u2019s obligation to protect them from such abuse. Forced sterilization is an unacceptable practice with lifelong consequences on the physical and mental integrity of girls and young women with disabilities that must be immediately eradicated and criminalized.", - "values": [ - "Equality & Inclusion", - "Governance & Rule of Law", - "Harmful Practices", - "Health", - "Violence" - ] - }, - { - "text": "Taking note of the latest report of the Secretary-General on the situation in Mali,1 in which he expresses concern about the lack of involvement of women in the peace process and reiterates that they should be included in all decision-making structures relating to the peace process, and emphasizing the important role of women in prevention and resolution of conflicts and in peacebuilding,", - "values": [ - "Civil & Political Rights" - ] - }, - { - "text": "Recognizing that female genital mutilation violates, and impairs or nullifies the enjoyment of the human rights of women and girls,", - "values": [ - "Harmful Practices", - "Health", - "Social & Cultural Rights" - ] - }, - { - "text": "The former Special Representative had received information on numerous instances in which \"employers collude among themselves and with the local labour department and immigration authorities against workers who raise labour rights concerns\" (E/CN.4/2004/94/Add.1, paras. 61-69). Private companies have also reportedly provided information to the State leading to the conviction of several defenders who had been calling for democratic reforms through the Internet. In one particular case, a Web-search engine company was sued by defenders for reportedly having aided and abetted State violations against them. A private settlement was agreed upon by the parties, but new lawsuits have since been filed against the same company by different plaintiffs.", - "values": [ - "Civil & Political Rights", - "Economic Rights" - ] - }, - { - "text": "Deeply concerned further that humanitarian crises and armed conflicts are depriving children, especially girls, of access to education,", - "values": [ - "Education", - "Humanitarian" - ] - }, - { - "text": "[The Commission urges Governments [...] to address the needs of all women:] Introduce formal and non-formal education and training programmes at all levels, including in the areas of science, technology and economics, with an integrated and gender-sensitive approach to environmentally sound and sustainable resource management and disaster reduction, response and recovery in order to change behaviour and attitudes in rural and urban areas;", - "values": [ - "Education", - "Environment", - "Gender", - "Humanitarian" - ] - }, - { - "text": "State Parties shall adopt and implement policies, strategies and programmes required to generate productive employment, mitigate the impact of diseases and alleviate poverty and eradicate extreme poverty and illiteracy.", - "values": [ - "Economic Rights", - "Poverty" - ] - }, - { - "text": "Following the study \"Corrupt schools, corrupt universities: what can be done?\", the UNESCO International Institute for Educational Planning should undertake a full-scale investigation of corruption in private education institutions and fraudulent practices of private providers of education", - "values": [ - "Education", - "Equality & Inclusion" - ] - }, - { - "text": "Recognizing also that the rights to freedom of peaceful assembly and of association are essential components of democracy, providing individuals with invaluable opportunities to, inter\u00a0alia, express their political opinions, engage in literary and artistic pursuits and other cultural, economic and social activities, engage in religious observances or other beliefs, form and join trade unions and cooperatives, and elect leaders to represent their interests and hold them accountable,", - "values": [ - "Civil & Political Rights" - ] - }, - { - "text": "Stresses the need to take action to prevent and eliminate all forms of violence and discrimination against women and girls, including in the world of work, through the strengthening of institutional mechanisms and legal frameworks, given that violence and discrimination, including multiple and intersecting forms of discrimination, against women and girls in private and public spaces are a major impediment to the achievement of the empowerment of women and girls and their social and economic development that no country has managed to eliminate, and encourages the adoption of specific preventive measures to protect women and girls, youth and children from violence, abuse and neglect, sexual abuse, exploitation, harassment, trafficking in persons and harmful practices, such as child, early and forced marriage and female genital mutilation, taking into account the need to address negative social norms, structural barriers and gender stereotypes that affect women in the world of work and to develop measures to promote the re-entry of victims and survivors of violence into the labour market;", - "values": [ - "Harmful Practices", - "Violence" - ] - }, - { - "text": "[Developing medium-term responses for individuals includes partnerships and actions to:] strengthen identified individuals' access to education, vocational training and recreational programmes with childcare and promote community-based livelihood strategies which target women and girls at risk, especially in prolonged displacement situations.", - "values": [ - "Education", - "Movement" - ] - }, - { - "text": "[Urges States to continue to develop their national strategy, translating it into concrete programmes and actions, and a more systematic, comprehensive, multisectoral and sustained approach, aimed at eliminating all forms of violence against women, including by achieving gender equality and the empowerment of women, and by increasing the focus on prevention in laws, policies and programmes and their implementation, monitoring and evaluation, so as to ensure the optimal use of available instruments, by, for example:] Establishing or supporting integrated centres through which shelter, legal, health, psychological, counselling and other services are provided to victims of all forms of violence against women and, where such centres are not yet feasible, promoting collaboration and coordination among agencies, in order to make remedies more accessible and to facilitate the physical, psychological and social recovery of victims, and ensuring that victims have access to such services;", - "values": [ - "Equality & Inclusion", - "Gender" - ] - }, - { - "text": "Deeply concerned at the vast number of endangered languages, in particular indigenous languages, and stressing that, despite the continuing efforts, there is an urgent need to preserve, promote and revitalize endangered languages, in particular indigenous languages,", - "values": [ - "Social & Cultural Rights" - ] - }, - { - "text": "IDPs often lose their homes, land, possessions, livelihoods and their financial resources. They are among the poorest of the poor and may be made more vulnerable by hostility and insecurity, as well as by the trauma of displacement and the breakdown of community cohesion. They are likely to have weaker and less established coping mechanisms than other poor communities, and what resources they do have are likely to be targeted towards basic survival. Owing to their unique circumstances, while their coping mechanisms, employment and income-generating activities may improve over time, the poverty experienced by IDPs is likely to be more extreme and persistent than poverty experienced by others in society and requires dedicated programmes to address it. Consequently, the target to eradicate extreme poverty for all people everywhere by 2030 will be impossible to meet without tackling the situation of IDPs.", - "values": [ - "Movement", - "Poverty" - ] - }, - { - "text": "[The Commission [...] urges Governments, at all levels [...] to take the following actions:] [Strengthening normative, legal and policy frameworks]: Recognize the important role and contribution of rural women and girls, as well as local communities, to food security, poverty eradication, environmental sustainability and sustainable development and commit to supporting their empowerment, and ensure rural women's full, equal and effective participation in society, the economy and political decision-making;", - "values": [ - "Environment", - "Gender" - ] - }, - { - "text": "Yet the world is not on track to reach these global targets. It is time to translate commitment into action. The United Nations Decade of Action on Nutrition, proclaimed in April 2016, presents a unique opportunity to ensure a coherent, inclusive and transparent response to malnutrition, embedded within human rights. Applying a human rights-based approach to nutrition policy acknowledges rights holders and the duty of Governments to refrain from actions that negatively affect the right to nutrition and to implement strategies that tackle malnutrition's root causes. Recognizing that private sector involvement in responding to malnutrition cannot be ignored, it is necessary to establish suitable safeguards to prevent negative corporate influences on nutrition governance. States should be supported in their efforts to regulate and hold the food industry accountable, to encourage behavioural changes in the population and to improve access to nutritious food through social protection. Finally, it is crucial to recognize that malnutrition will continue to persist, unless a coordinated effort is made to shift from unsustainable industrial food systems to ones that are \"nutrition sensitive\".", - "values": [ - "Food & Nutrition", - "Governance & Rule of Law" - ] - }, - { - "text": "Adolescents are on a rapid curve of development. The significance of the developmental changes during adolescence has not yet been as widely understood as that which occurs in early years. Adolescence is a unique defining stage of human development characterized by rapid brain development and physical growth, enhanced cognitive ability, the onset of puberty and sexual awareness and newly emerging abilities, strengths and skills. Adolescents experience greater expectations surrounding their role in society and more significant peer relationships as they transition from a situation of dependency to one of greater autonomy.", - "values": [ - "Health", - "Social & Cultural Rights" - ] - }, - { - "text": "[Recommends that the States parties to the International Convention on the Elimination of Racial Discrimination:] Be mindful that their response to the current financial and economic crisis should not lead to a situation which would increase poverty and underdevelopment and, potentially, a rise in racism, racial discrimination, xenophobia and related intolerance against foreigners, immigrants, indigenous peoples, persons belonging to minorities and other particularly vulnerable groups all over the world;", - "values": [ - "Equality & Inclusion", - "Poverty" - ] - }, - { - "text": "[By Governments, in cooperation with non-governmental organizations, the mass media, the private sector and relevant international organizations, including United Nations bodies, as appropriate:] Give priority to both formal and informal educational programmes that support and enable women to develop self-esteem, acquire knowledge, make decisions on and take responsibility for their own health, achieve mutual respect in matters concerning sexuality and fertility and educate men regarding the importance of women's health and well-being, placing special focus on programmes for both men and women that emphasize the elimination of harmful attitudes and practices, including female genital mutilation, son preference (which results in female infanticide and prenatal sex selection), early marriage, including child marriage, violence against women, sexual exploitation, sexual abuse, which at times is conducive to infection with HIV/AIDS and other sexually transmitted diseases, drug abuse, discrimination against girls and women in food allocation and other harmful attitudes and practices related to the life, health and well-being of women, and recognizing that some of these practices can be violations of human rights and ethical medical principles;", - "values": [ - "Education", - "Harmful Practices" - ] - }, - { - "text": "Recognizes the important contribution of workers\u2019 and employers\u2019 organizations in the area of full and productive employment and decent work for all;", - "values": [ - "Economic Rights", - "Equality & Inclusion" - ] - }, - { - "text": "The Committees acknowledge that harmful practices affect adult women, both directly and/or owing to the long-term impact of practices to which they were subjected as girls. The present joint general recommendation/general comment therefore further elaborates on the obligations of States parties to the Convention on the Elimination of All Forms of Discrimination against Women with regard to the relevant provisions for the elimination of harmful practices that affect the rights of women.", - "values": [ - "Equality & Inclusion", - "Harmful Practices" - ] - }, - { - "text": "Mainstream a gender perspective into education and training programmes, including those relating to science, technology, engineering and mathematics, eliminate female illiteracy and facilitate effective transition from education or unemployment to work, including through skills development to enable women's and girls' active participation in economic, social and cultural development and women's active participation in governance and decision-making at all levels, create conditions that facilitate women's full participation and integration in the formal economy and develop gender-sensitive curricula for educational programmes at all levels, inter alia, to address the root causes of occupational segregation in working life;", - "values": [ - "Education", - "Gender" - ] - }, - { - "text": "In 1995, data from many countries showed that girls experienced discrimination from the earliest stages of life, through their childhood and into adulthood. Owing to violence, sexual abuse and exploitation, harmful attitudes and practices, such as female genital mutilation, son preference and child marriage, many girls do not survive into adulthood. They are neglected and their self-esteem undermined, with the risk of initiating a lifelong downward spiral of deprivation and exclusion.", - "values": [ - "Harmful Practices" - ] - }, - { - "text": "Urges States, UNHCR and humanitarian and development partners to pursue active and effective partnerships and coordination in implementation of durable solutions, and to develop new opportunities for partnership including through engaging in and implementing in full the objectives of the Delivering as One initiative; increased information exchange and advice given to the United Nations Peace building Commission; and partnerships with other actors such as international financial institutions, the Inter-Agency Standing Committee, the United Nations Development Group, regional bodies, parliaments, local governments, mayors, business leaders, the media and diaspora communities;", - "values": [ - "Governance & Rule of Law", - "Humanitarian" - ] - }, - { - "text": "Recognizing that the human right to safe drinking water and sanitation entitles everyone, without discrimination, to have access to sufficient, safe, acceptable, physically accessible and affordable water for personal and domestic use and to have physical and affordable access to sanitation, in all spheres of life, that is safe, hygienic, secure and acceptable, and that provides privacy and ensures dignity,", - "values": [ - "Equality & Inclusion", - "Water & Sanitation" - ] - }, - { - "text": "Calls upon Member States, the United Nations system and other relevant stakeholders to support national efforts aimed at responding rapidly to the food crises currently occurring across Africa, in particular in the Horn of Africa, and expresses its deep concern that funding shortfalls are forcing the World Food Programme to cut operations across different regions, including Southern Africa;", - "values": [ - "Food & Nutrition", - "Governance & Rule of Law", - "Humanitarian" - ] - }, - { - "text": "Interim care includes foster care (traditional, informal, spontaneous or arranged), guardianship or community-based care. While family-based care should be prioritized, interim care may be the only available possibility. However, many institutions are unregulated and unsafe, leaving children vulnerable to neglect and abuse. As a preventive measure, UNICEF is currently working with the Government of Haiti to register all children in residential care centres in the country.", - "values": [ - "Governance & Rule of Law", - "Violence" - ] - }, - { - "text": "Thus, justiciability of right to education also has its bases in national legal systems which provide \u201cgrounds\u201d for the \u201cright of action\u201d, mentioned above. An example is the Constitution of South Africa, which provides in section 38 (Enforcement of rights) that \u201cAnyone listed in this section has the right to approach a competent court, alleging that a right in the Bill of Rights has been infringed or threatened, and the court may grant appropriate relief, including a declaration of rights.\u201d Fundamental rights in India constitute \u201cbasic and essential feature\u201d of the Constitution, and any citizen can directly approach the Supreme Court of India in cases of breach or violation. The Brazilian Association of Judges, Prosecutors and Public Defenders for Children and Youth also has a strong commitment to human rights, in particular the right to quality education and its enforcement.", - "values": [ - "Education", - "Governance & Rule of Law" - ] - }, - { - "text": "2. The State Parties undertake to adopt measures that will make the right to work fully effective, especially with regard to the achievement of full employment, vocational guidance, and the development of technical and vocational training projects, in particular those directed to the disabled. The States Parties also undertake to implement and strengthen programs that help to ensure suitable family care, so that women may enjoy a real opportunity to exercise the right to work.", - "values": [ - "Education", - "Equality & Inclusion" - ] - }, - { - "text": "Previous work on the issue of sexual and reproductive health and rights, including on maternal mortality, has shown that human rights when applied to public health policies can save lives by ensuring that health policies are equitable, inclusive, non-discriminatory, participatory and evidence-based (A/61/338, para. 29). Most of pregnancy-related deaths and many of the causes of under-5 mortality are avoidable. Those most at risk are groups living in poverty, groups in rural areas and women from ethnic and religious minorities or indigenous communities. Women and children must be placed at the centre of an integrated approach to sexual and reproductive health and their rights must be fully recognized.", - "values": [ - "Equality & Inclusion", - "Health" - ] - }, - { - "text": "With a view to ensuring the effective exercise of the right to vocational training, the Parties undertake: 1. to provide or promote, as necessary, the technical and vocational training of all persons, including the handicapped, in consultation with employers' and workers' organisations, and to grant facilities for access to higher technical and university education, based solely on individual aptitude;", - "values": [ - "Education", - "Equality & Inclusion" - ] - }, - { - "text": "Also welcomes the inter-agency cooperation of United Nations agencies, funds and programmes on minority issues, in particular through the United Nations network on racial discrimination and protection of minorities, coordinated by the Office of the High Commissioner, and urges them to increase their cooperation further by, inter alia, sharing knowledge and developing policies on the promotion and protection of the rights of persons belonging to national or ethnic, religious and linguistic minorities, drawing also on relevant recommendations of the Forum;", - "values": [ - "Equality & Inclusion", - "Governance & Rule of Law" - ] - }, - { - "text": "[Actions to be taken by Governments, the United Nations and civil society, as appropriate]: Take action to raise awareness and promote the eradication of all forms of discrimination, including multiple discrimination experienced by women through, inter alia, education and mass media campaigns;", - "values": [ - "Education", - "Equality & Inclusion", - "Gender", - "Social & Cultural Rights" - ] - }, - { - "text": "5. Anyone who has been the victim of unlawful arrest or detention shall have an enforceable right to compensation.", - "values": [ - "Civil & Political Rights", - "Governance & Rule of Law" - ] - }, - { - "text": "Calls upon States to ensure the enjoyment by all children of all their civil, cultural, economic, political and social rights, without discrimination of any kind and regardless of their migration status, to take effective and appropriate measures to ensure the right of all children to the enjoyment of the highest attainable standard of physical and mental health, as well as access to quality, affordable and equitable health care and social services, without discrimination of any kind, and to ensure that all children, in particular victims of violence and exploitation, receive special protection and assistance;", - "values": [ - "Civil & Political Rights", - "Economic Rights", - "Equality & Inclusion", - "Health", - "Social & Cultural Rights" - ] - }, - { - "text": "Illegal adoption is also an extremely hidden phenomenon. However, a review of the situation of intercountry adoption points to heightened risks of illegal adoption due to the conjunction of various factors. Existing records suggest that there has been an increase in intercountry adoptions worldwide between 2000 and 2004, followed by a significant decrease. Demand for adoption has continued to increase, while supply decreases, creating the conditions for abuse, corruption, excessive fees amounting to the sale of children, and the illegal adoption of children.", - "values": [ - "Harmful Practices", - "Movement", - "Social & Cultural Rights" - ] - }, - { - "text": "Recognizing that women and girls in rural areas may be particularly vulnerable to violence because of multidimensional poverty and lack of access to social care and protection services and, as applicable, employment opportunities, as well as negative social norms,", - "values": [ - "Economic Rights", - "Poverty", - "Social & Cultural Rights", - "Violence" - ] - }, - { - "text": "[Decides to extend the mandate of the independent expert on extreme poverty for a period of three years, in order to, inter alia:] Submit recommendations that could contribute to the realization of Millennium Development Goals, and in particular of goal 1, which consists in the halving by 2015 the proportion of people whose income is less than one dollar a day and the proportion of people who suffer from hunger, taking into account the role of international assistance and cooperation in reinforcing national actions to reduce extreme poverty;", - "values": [ - "Poverty" - ] - }, - { - "text": "Noting also the panel discussion on the theme \u201cGiving voice to the victims and survivors of human trafficking\u201d, held on 2 June 2010 during the fourteenth session of the Human Rights Council,", - "values": [ - "Governance & Rule of Law" - ] - }, - { - "text": "While poverty affects households as a whole, because of the gender division of labour and responsibilities for household welfare, women bear a disproportionate burden, attempting to manage household consumption and production under conditions of increasing scarcity. Poverty is particularly acute for women living in rural households.", - "values": [ - "Gender", - "Poverty" - ] - }, - { - "text": "Also urges concerned Governments, in particular those of the countries of origin and destination, to support and allocate appropriate resources for programmes aimed at strengthening preventive action, in particular information for relevant target groups, education and campaigns to increase public awareness of this issue at the national and grass-roots levels, in cooperation with non-governmental organizations;", - "values": [ - "Education", - "Governance & Rule of Law" - ] - }, - { - "text": "Fifth, it emphasizes the need for education to be designed and provided in such a way that it promotes and reinforces the range of specific ethical values enshrined in the Convention, including education for peace, tolerance, and respect for the natural environment, in an integrated and holistic manner. This may require a multidisciplinary approach. The promotion and reinforcement of the values of article 29 (1) are not only necessary because of problems elsewhere, but must also focus on problems within the child's own community. Education in this regard should take place within the family, but schools and communities must also play an important role. For example, for the development of respect for the natural environment, education must link issues of environment and sustainable development with socio-economic, sociocultural and demographic issues. Similarly, respect for the natural environment should be learnt by children at home, in school and within the community, encompass both national and international problems, and actively involve children in local, regional or global environmental projects.", - "values": [ - "Education", - "Environment" - ] - }, - { - "text": "The Commission recognizes the worldwide efforts to bridge gender gaps in labour markets. However, the Commission notes that additional progress may be made through temporary special measures to ensure gender equality in the labour force.", - "values": [ - "Economic Rights", - "Gender" - ] - }, - { - "text": "State Parties shall adopt and implement policies, strategies and programmes required to generate productive employment, mitigate the impact of diseases and alleviate poverty and eradicate extreme poverty and illiteracy.", - "values": [ - "Governance & Rule of Law", - "Poverty" - ] - }, - { - "text": "[Offer regular, safe, accessible and affordable mobility solutions to all migrants, regardless of their status or skill level]\nIncreased number of bilateral and multilateral agreements on migration that provide for human and labour rights safeguards and comply with international human rights and labour standards, including effective complaint and redress mechanisms;", - "values": [ - "Economic Rights", - "Equality & Inclusion", - "Movement" - ] - }, - { - "text": "Urges States to adopt national legislation prohibiting female genital mutilation, consistent with international human rights law, and to take steps to ensure its strict application, while working to harmonize their legislation in order to effectively address the cross-border practice of female genital mutilation;", - "values": [ - "Governance & Rule of Law", - "Harmful Practices" - ] - }, - { - "text": "Invites the representative to present suggestions and recommendations with regard to ways and means, including the institutional aspects, of providing effective protection of and assistance to internally displaced persons;", - "values": [ - "Governance & Rule of Law", - "Humanitarian", - "Movement" - ] - }, - { - "text": "At the national level, the right to truth can be characterized as the right to know, to be informed or to freedom of information. In resolution 12/12, its most recent on the right to truth, the Human Rights Council emphasized that the public and individuals were entitled to have access, to the fullest extent practicable, to information regarding the actions and decision-making processes of their Government.", - "values": [ - "Civil & Political Rights" - ] - }, - { - "text": "[The objectives of the general comment are:] To emphasize the vulnerability of young children to poverty, discrimination, family breakdown and multiple other adversities that violate their rights and undermine their well being;", - "values": [ - "Equality & Inclusion", - "Poverty", - "Social & Cultural Rights" - ] - }, - { - "text": "[Actions to be taken by Governments, the United Nations system and civil society, as appropriate:] (c) Support scientific research into and the development of safe, affordable, effective and easily accessible female-controlled methods of family planning, including dual methods such as microbicides and female condoms that protect against both sexually transmitted diseases and human immunodeficiency virus/acquired immunodeficiency syndrome (HIV/AIDS) and prevent pregnancy, taking into account paragraph 96 of the report of the Fourth World Conference on Women;", - "values": [ - "Health" - ] - }, - { - "text": "Despite the prevalence of a great variety of tenure systems and arrangements worldwide, in the past few decades, most models of urban planning, land management, development and legal regimes have centred around one particular form: individual freehold. This common fixation on freehold has been supported by the predominant economic doctrine of reliance on private property and market forces.", - "values": [ - "Economic Rights", - "Governance & Rule of Law" - ] - }, - { - "text": "Invites the regional commissions and the regional offices of the International Labour Organization to examine ways and means, within their mandates, of dealing with concerns pertaining to women migrant workers;", - "values": [ - "Economic Rights" - ] - }, - { - "text": "Expresses concern at the persistent problems of large numbers of internally displaced persons worldwide, in particular the risk of extreme poverty and socio-economic exclusion, their limited access to humanitarian assistance, vulnerability to human rights violations and difficulties resulting from their specific situation, such as lack of food, medication or shelter and issues pertinent during their reintegration, including, in appropriate cases, the need for the restitution of or compensation for property;", - "values": [ - "Equality & Inclusion", - "Food & Nutrition", - "Health", - "Humanitarian", - "Movement", - "Poverty" - ] - }, - { - "text": "The first five years of life are the most important period of human development, with the first 1,000 days requiring special attention. Ensuring that a child receives adequate nutrition during that window of 1,000 days can have a profound impact on his or her ability to grow. It can also shape the long-term health, stability and prosperity of a society. Stunting, caused by chronic undernutrition early in a child's life, affects some 165 million children around the world. It was estimated that in 2011 more than one in every four children under five years of age in the developing world was stunted. Sub-Saharan Africa and South Asia are the two regions where stunting continues to be highly prevalent, with low-income countries experiencing the highest levels. Undernutrition magnifies the effects of every disease, including measles and malaria, while malnutrition can also be caused by certain illnesses which reduce the ability of the body to convert food into usable nutrients.", - "values": [ - "Food & Nutrition", - "Health" - ] - }, - { - "text": "Extradition shall be granted in accordance with the laws of the State to which the request is made.", - "values": [ - "Governance & Rule of Law" - ] - }, - { - "text": "Emphasizes the need to accord the highest priority to poverty eradication within the United Nations development agenda, while stressing the importance of addressing the causes and challenges of poverty through integrated, coordinated and coherent strategies at the national, intergovernmental and inter-agency levels, in accordance with the outcomes of the major United Nations conferences and summits in the economic, social and related fields;", - "values": [ - "Governance & Rule of Law", - "Poverty" - ] - }, - { - "text": "Traditionally, States have privileged the establishment of contributory pension systems with the objective of achieving universal coverage once the formal sector expanded. Today, with a vast number of workers in the informal sector, this approach must be re-examined. Contributory systems have left the majority of the population unprotected when they reach old age. Estimates indicate that less than 20 per cent of older persons are covered by pensions today and only about 25 per cent of the labour force is currently contributing or accruing pension rights.", - "values": [ - "Economic Rights", - "Social & Cultural Rights" - ] - }, - { - "text": "Indefinite solitary confinement should be abolished.", - "values": [ - "Civil & Political Rights" - ] - }, - { - "text": "Women and girls tend to be at risk of honour violence or killing for engaging in sexual relations outside of marriage, choosing partners without their family's approval or behaving in other ways that are considered immoral; Lesbian, gay, bisexual, transgender and intersex persons are also targeted (A/HRC/29/23). Honour killings have been documented in South-East Asia, Europe, North America and the Middle East and affect 5,000-12,000 women each year. States' failure to prevent honour-based violence contravenes their obligations to combat and prevent torture and ill-treatment. This includes failure to grant asylum to persons facing the risk of honour violence in their countries of origin.", - "values": [ - "Harmful Practices", - "Violence" - ] - }, - { - "text": "[Actions to be taken by Governments, the United Nations and civil society, as appropriate]: Ensure that education and training, especially teacher training, promote respect for human rights, the culture of peace, gender equality and cultural, religious and other diversity, and encourage educational and training institutions and organizations to adopt policies of equal opportunities and follow up their implementation with the participation of teachers, parents, boys and girls and the community;", - "values": [ - "Education", - "Equality & Inclusion" - ] - }, - { - "text": "Recognizes that the inter-agency cluster system plays a central role in the international community\u2019s efforts to protect and assist internally displaced persons, and encourages Governments to work with the cluster system to advance the human rights of internally displaced persons;", - "values": [ - "Governance & Rule of Law", - "Movement" - ] - }, - { - "text": "All States, in particular countries of \"demand\", should ensure that funding of, or reimbursement for, the costs of transplant tourism (whether by private health insurers, public health funds or travel insurers) is prohibited.", - "values": [ - "Health", - "Movement" - ] - }, - { - "text": "1. All persons deprived of their liberty shall be treated with humanity and with respect for the inherent dignity of the human person.", - "values": [ - "Civil & Political Rights", - "Equality & Inclusion" - ] - }, - { - "text": "1. Every child shall have, without any discrimination as to race, colour, sex, language, religion, national or social origin, property or birth, the right to such measures of protection as are required by his status as a minor, on the part of his family, society and the State.", - "values": [ - "Civil & Political Rights", - "Equality & Inclusion" - ] - }, - { - "text": "[Urges all States:] To support the efforts of developing countries, in particular least developed countries, to give full effect to the right to education and achieve the Millennium Development Goals relating to education and the goals of the Education for All initiative agreed upon at the World Education Forum, including with enhanced resources of all types, namely financial and technical, through the Education for All fast- track initiative in support of country-led national education plans;", - "values": [ - "Education", - "Governance & Rule of Law" - ] - }, - { - "text": "The education of the child shall be directed to: the promotion and achievement of African Unity and Solidarity;", - "values": [ - "Education" - ] - }, - { - "text": "Building upon the commitments made by countries in all regions, and informed by good practices and lessons learned, law enactment and enforcement is an area where progress is within reach. To further consolidate this trend, in 2011, the Special Representative will host with the Office of the United Nations High Commissioner for Human Rights (OHCHR) an expert consultation in this area.", - "values": [ - "Governance & Rule of Law" - ] - }, - { - "text": "Lesbian, bisexual and transgender youth are at risk of \"punitive\" rape on the basis of their sexual orientation or gender identity. Adolescents suffer disproportionately from the effects of gun violence and significant numbers of adolescents face serious harm or death as a consequence of armed conflict.", - "values": [ - "Gender", - "Violence" - ] - }, - { - "text": "Throughout the world, countless numbers of girls and boys fall victims to harmful practices, including female genital mutilation or cutting, early and forced marriage, degrading initiation rites, breast ironing, son preference, stoning, honour killings, forced feeding, witchcraft rituals and many other less-known forms of harmful practice. Often violent in nature, these practices compromise the development and education of the child, have serious and long-lasting health and psychological consequences, and may result in disability or death.", - "values": [ - "Harmful Practices" - ] - }, - { - "text": "[The Commission urges Governments, at all levels [...] to take the following actions, as appropriate:] [Making science and technology responsive to women's needs]: Utilize the full potential of science and technology, including in engineering and mathematics, and their innovations to deliver improvements in infrastructure and sectors such as energy, transportation, agriculture, nutrition, health, water and sanitation and information and communications technology, in order, inter alia, to eradicate poverty, promote social development and achieve women's economic empowerment;", - "values": [ - "Gender", - "Water & Sanitation" - ] - }, - { - "text": "The placement of children in alternative care settings, in particular in residential facilities, is often a first step leading to a determination of their adoptability. The false assumption that all children in such institutions are adoptable has widely contributed to illegal adoptions, as children can be taken without the appropriate consent even though they still have a parent, family member or other kin willing and able to care for them. In Nepal, for example, intercountry adoptions have been interrupted by receiving countries owing to the insufficiency of the procedures in place to determine the adoptability of a child.", - "values": [ - "Movement", - "Violence" - ] - }, - { - "text": "The exact number of World Heritage sites that are within or near the traditional territories of indigenous peoples, or that otherwise affect them, is not certain and the World Heritage Committee has apparently never undertaken a comprehensive review of this, but the indications are that there are dozens of such sites.", - "values": [ - "Social & Cultural Rights" - ] - }, - { - "text": "Noting with concern that maternal and child health is inextricably linked to the risk of non-communicable diseases and associated risk factors, specifically given that prenatal malnutrition and low birth weight create a predisposition to obesity, high blood pressure, heart disease and diabetes later in life and that conditions such as maternal obesity and gestational diabetes are also associated with an increased risk of contracting non-communicable diseases,", - "values": [ - "Health" - ] - }, - { - "text": "The largest and most visible Roma minority is European Roma, whose presence in Europe dates back to the fourteenth century. Today, there are approximately 11 million European Roma, with 6 million estimated to be residing within the 27 European Union member States.", - "values": [ - "Equality & Inclusion" - ] - }, - { - "text": "Urges all parties to armed conflicts to provide safe, unimpeded access to humanitarian assistance for those women and children, in accordance with international humanitarian law;", - "values": [ - "Humanitarian" - ] - }, - { - "text": "Reaffirms that the existence of widespread absolute poverty inhibits the full and effective enjoyment of human rights and renders democracy and popular participation fragile;", - "values": [ - "Civil & Political Rights", - "Poverty" - ] - }, - { - "text": "We reaffirm the importance of supporting developing countries in their efforts to eradicate poverty and promote empowerment of the poor and people in vulnerable situations, including removing barriers to opportunity, enhancing productive capacity, developing sustainable agriculture and promoting full and productive employment and decent work for all, complemented by effective social policies, including social protection floors, with a view to achieving the internationally agreed development goals, including the Millennium Development Goals.", - "values": [ - "Equality & Inclusion", - "Poverty" - ] - }, - { - "text": "Article 12 of the Convention on the Rights of the Child underscores the importance of children\u2019s participation, providing for children to express their views freely and to have those views taken into account with due weight, according to age, maturity and the evolving capacity of the child.", - "values": [ - "Governance & Rule of Law" - ] - }, - { - "text": "Some of the obstacles that persons living in poverty face, such as the cost of legal advice, administrative fees and other collateral costs, relate directly to their lack of financial resources. Other obstacles, including lack of access to information and lack of legal recognition arise out of discrimination against the poorest and most marginalized. Furthermore, institutional and structural obstacles are found in the design and operation of justice systems; these include the inadequate capacity and resources of courts, the police and prosecution corps, the corrupt practices therein, and the location of courts and police stations. Poor functioning of the justice system particularly affects the poor, because pursuing justice requires a much greater effort and investment in terms of money and time for them, while their chances of a just and favourable outcome are worse. The deprivations that persons living in poverty encounter throughout their lives - lack of access to quality education, reduced access to information, limited political voice and social capital - translate into lower levels of legal literacy and awareness of their rights, creating social obstacles to seeking redress", - "values": [ - "Equality & Inclusion", - "Poverty" - ] - }, - { - "text": "Also calls upon States to support, as part of a comprehensive approach towards the elimination of female genital mutilation, programmes related to an alternative livelihood for traditional practitioners of female genital mutilation;", - "values": [ - "Gender", - "Harmful Practices" - ] - }, - { - "text": "4. States Parties shall take all appropriate measures with a view to achieving full realisation of this right and shall, in particular: j) Adopt pedagogy that incorporates the benefits of and trains young people in the use of modern information and communication technology such that youth are better prepared for the world of work;", - "values": [ - "Economic Rights", - "Education" - ] - }, - { - "text": "As has been noted previously, characterizing practices such as organ commercialization or transplant tourism as trafficking in persons for the removal of organs has a substantial effect on the nature of State obligations and on individual rights that arise as a result of those obligations. For example, States parties to the Trafficking in Persons Protocol are, pursuant to article 5, under a clear international legal obligation to criminalize trafficking in persons for the purpose of removal of organs as well as attempting, participating in, organizing and directing other persons in the commission of trafficking in persons for the purpose of removal of organs. They are also required to establish liability in respect of both natural persons and legal persons, thereby extending the reach of criminal and civil law to the medical and other establishments that are so often involved in trafficking in persons for the removal of organs.", - "values": [ - "Governance & Rule of Law", - "Movement", - "Violence" - ] - }, - { - "text": "Engaging in partnerships with indigenous peoples to define strategies to progressively achieve their economic, social and cultural rights is not only a duty of States under the International Covenant on Economic, Social and Cultural Rights and the Declaration on the Rights of Indigenous Peoples, it is also an invaluable contribution to strengthening the diversity of sustainable livelihood systems and economies that include both market, non-market and other approaches for a more equitable and sustainable sharing of wealth and resources.", - "values": [ - "Economic Rights", - "Social & Cultural Rights" - ] - }, - { - "text": "Strengthen or establish mechanisms at the national, regional and international levels to assess the impact of development and environmental policies on women", - "values": [ - "Environment", - "Governance & Rule of Law" - ] - }, - { - "text": "Commits to strengthening the engagement and participation of youth of concern to UNHCR, including through education and training and life skills building and livelihood opportunities, with the consent and in accordance with the laws of host States, and in ways which contribute to the support of host communities through strengthened international cooperation and responsibility- and burden-sharing, and encourages the international community to mobilize the necessary financial and other resources;", - "values": [ - "Education", - "Equality & Inclusion" - ] - }, - { - "text": "Technical and vocational education and training should be recognized as a linchpin in the concept of lifelong learning and as a font of skills development and professional excellence. Countries should focus on fostering entrepreneurship through an overall lifelong learning framework. States, along with social partners and enterprises, should develop innovative approaches to technical and vocational education and training in order to respond to the diverse aspirations and needs of individuals and societies in a rapidly globalizing world.", - "values": [ - "Education" - ] - }, - { - "text": "In addition, sexual orientation and gender identity are increasingly used as a basis for explicit discrimination in the area of assembly rights. In Ukraine, a draft law \"on propaganda of homosexuality\", which prohibits \"propaganda of homosexual relations\" aimed at children, was recommended in 2013 for the consideration of the parliament. This draft law defines \"propaganda\" as any public action to spread information on same-sex relations, including peaceful assemblies and educational courses. In August 2012, a Russian court upheld a Moscow city council ban on gay pride parades, prohibiting such assemblies for the next 100 years. In early 2014, the President of Nigeria signed the Same Sex Marriage (Prohibition) Act, which bans gay marriage and also makes it an offence to register, operate, participate in or support gay clubs, societies, organizations, processions or meetings, or to make a public display of a same-sex amorous relationship, directly or indirectly. An offence is punishable by a prison term of 10 years. The provision effectively bans any public or private meeting on the subject of sexual orientation and gender identity. In Uganda, the President signed a new anti-homosexuality bill into law in February 2014. This law imposes a sentence of life imprisonment for homosexuality and same-sex marriage and five to seven years of imprisonment for the \"promotion\" of homosexuality, which directly targets and threatens the work of LGBTI organizations and human rights defenders. In Kuwait, the new criminal offence of \"imitating the opposite sex\" directly targets and criminalizes transgender people and anyone seen as not conforming to gender norms. It has resulted in harassment, arbitrary arrest and detention, abuse, torture and sexual assault of transgender people. Expressing its concern, the Human Rights Committee has recommended that the offence be repealed (CCPR/C/KWT/CO/2, para. 30).", - "values": [ - "Equality & Inclusion", - "Gender" - ] - }, - { - "text": "Calls upon Governments, in their efforts in dealing with climate change, to support and empower rural women, who are engaged in agricultural production and play a vital role in providing food security threatened by climate change, including land tenure and other property rights, by enhancing their access to and control of resources;", - "values": [ - "Environment", - "Gender" - ] - }, - { - "text": "Encourages Governments and civil society to support women's groups and community organizations in changing harmful traditions and practices affecting the health of women and girls and to take steps to eliminate all forms of violence against women, including rape and sexual coercion, which aggravate the conditions fostering the spread of the epidemic;", - "values": [ - "Harmful Practices", - "Health", - "Violence" - ] - }, - { - "text": "Decides to extend the mandate of the Special Rapporteur on the rights to freedom of peaceful assembly and of association, as established by the Human Rights Council in its resolution 15/21, for a period of three years;", - "values": [ - "Civil & Political Rights", - "Governance & Rule of Law" - ] - }, - { - "text": "The international financial institutions, notably the International Monetary Fund (IMF) and the World Bank, should pay greater attention to the protection of the right to food in their lending policies and credit agreements and in international measures to deal with the debt crisis. Care should be taken, in line with the Committee's General Comment No. 2, paragraph 9, in any structural adjustment programme to ensure that the right to food is protected.", - "values": [ - "Food & Nutrition", - "Governance & Rule of Law" - ] - }, - { - "text": "Recalling further the need to ensure that all girls and boys have equal access to quality early childhood development, care and pre-primary education so that they are ready for primary education, the need to eliminate gender disparities in education by 2030, and the need to build and upgrade education facilities that are child, disability and gender sensitive and provide safe, non-violent, inclusive, accessible and effective learning environments for all,", - "values": [ - "Education", - "Equality & Inclusion" - ] - }, - { - "text": "Urges all States to take all measures necessary to promote lifelong education and learning in both formal and informal settings, including human rights education and training;", - "values": [ - "Education" - ] - }, - { - "text": "Programmes to promote development implemented by Governments and external donors often fail to take into account the inequalities between communities, the unique circumstances of minorities or the possible need for special measures to ensure that minority communities also benefit. Minorities may be adversely affected through displacement by large-scale projects such as dams and natural resource extraction, or as a result of the negative environmental impact. As noted in the 2007 annual report of the independent expert, conflict prevention is one reason why monitoring poverty alleviation among minorities is crucial: if strategies are successful for some groups but not for minorities, inequalities will increase and so too may tension. Inclusive participation strategies for poverty reduction are proven and effective conflict prevention measures (see A/HRC/4/9, para. 43).", - "values": [ - "Equality & Inclusion" - ] - }, - { - "text": "Recalling the inclusion of gender-related crimes and crimes of sexual violence in the Rome Statute of the International Criminal Court, as well as the recognition by the ad\u00a0hoc international criminal tribunals that rape and other forms of sexual violence can constitute a war crime, a crime against humanity or a constitutive act with respect to genocide or torture,", - "values": [ - "Gender", - "Violence" - ] - }, - { - "text": "Some of the poverty reduction initiatives put in place to support indigenous communities are not always culturally sensitive and are therefore ineffective. For example, the practice of providing conditional cash transfers to poor indigenous families in exchange for compliance with preconditions, such as sending their children to school or requiring pregnant women to go for check-ups and to deliver in rural clinics or hospitals. Such practices have tended to be blind to the cultural values of indigenous peoples and also do not address the specific root causes of poverty.", - "values": [ - "Poverty", - "Social & Cultural Rights" - ] - }, - { - "text": "While armed conflict situations may place journalists at risk, the Special Rapporteur notes that the majority of attacks against journalists take place outside of armed conflict situations. Individuals who cover public demonstrations, report on issues such as corruption, human rights violations, environmental issues, organized crime, drug trafficking, public crises or emergencies are placed at particular risk of violence. Nevertheless, the Special Rapporteur also reiterates the importance of the following concerns.", - "values": [ - "Humanitarian", - "Violence" - ] - }, - { - "text": "A State Party may withdraw its reservation at any time by notification to this effect addressed to the Depositary.", - "values": [ - "Civil & Political Rights", - "Governance & Rule of Law", - "Movement" - ] - }, - { - "text": "Invites Governments, relevant United Nations agencies, funds and programmes, treaty bodies, civil society actors, including non-governmental organizations, as well as the private sector, to cooperate fully with the Special Rapporteur in the fulfilment of his mandate, inter alia, through the submission of comments and suggestions on ways and means of realizing the right to food;", - "values": [ - "Food & Nutrition", - "Governance & Rule of Law" - ] - }, - { - "text": "Welcomes the discussions in the High Commissioner's Dialogue on Protection Challenges in December 2007, and affirms the mandated role of UNHCR in the identification of refugees and other persons of concern to the Office in mixed migratory movements with a view to meeting their international protection needs; recognizes the importance of enhanced cooperation among States, UNHCR, international agencies, including the International Organization for Migration, and other relevant actors, to address the complex problems arising in the context of mixed migratory movements including people smuggling and trafficking in persons;", - "values": [ - "Governance & Rule of Law", - "Movement" - ] - }, - { - "text": "The reasons behind the failure to women's access to adequate food can arguably be linked to two structural disconnects which exist at the crossroads between Women's Rights and the Right to Food. The first disconnect refers to the failure in international law to fully endow women with their right to food. In the Universal Declaration on Human Rights (UDHR) and the ICESCR, the right to food is accorded to himself and his family. Although the ICESCR General Comment 12 and other documents have underscored the non-discriminatory intention of the right to food, the archaic language of patriarchy taints the UDHR and treaty language. Concurrently the economic and social rights of the ICESCR are generally reviewed in CEDAW, but not the right to food, which is indirectly touched upon only through a call for rural women. In CEDAW, as in the Convention of the Rights of Child (CRC), food access and adequacy for adult women and teenage girls are addressed only on behalf of pregnant and breastfeeding females .", - "values": [ - "Equality & Inclusion", - "Food & Nutrition", - "Gender", - "Governance & Rule of Law" - ] - }, - { - "text": "Welcoming also the work of the Special Rapporteur on the sale of children, child prostitution and child pornography and of the Special Representative of the Secretary-General on Violence against Children on opportunities and risks associated with the use of information and communications technologies and children\u2019s protection from sexual abuse and exploitation, and the work of the Special Representative of the Secretary-General on Children and Armed Conflict, and taking note with appreciation of their recent reports,", - "values": [ - "Violence" - ] - }, - { - "text": "Profoundly concerned about the continuing deterioration in the situation of children in many parts of the world as a result of armed conflicts, and convinced that immediate action is called for,", - "values": [ - "Humanitarian" - ] - }, - { - "text": "Also supports the realization of the mandate of the high-level task force on the implementation of the right to development, established within the framework of the Working Group, as renewed by the Human Rights Council in its resolution 9/3,6 with the further recognition that the task force will convene annual sessions of seven working days and submit its reports to the Working Group;", - "values": [ - "Governance & Rule of Law" - ] - }, - { - "text": "[The Commission [...] urges Governments [...] to:] [14.9. Violence and discrimination] (l) Increase education and training among teachers and health service providers in identifying acts of violence against the girl child, and ensure that they also take action to eradicate all forms of violence against the girl child, including customary and traditional practices that are harmful to the health of the girl child;", - "values": [ - "Education", - "Harmful Practices", - "Violence" - ] - }, - { - "text": "Further welcomes the establishment of the Education Cluster by the Inter- Agency Standing Committee in November 2006 as an important mechanism to assess and address, in a coordinated manner, educational needs in emergency situations, including by promoting the implementation of the minimum standards for education in emergencies developed by the Inter-Agency Network for Education in Emergencies, and calls on donors to support it financially;", - "values": [ - "Education", - "Humanitarian" - ] - }, - { - "text": "In addition, ageing populations have caused a shift in demographics that has led to labour shortages in Italy and Japan, among others. In 2010, for the first time, more workers were retiring from the European labour market than joining it. By 2030, the labour shortage in Europe is likely to rise to 8.3 million workers. By 2020, other large economies, such as Canada, China, the Republic of Korea and the Russian Federation, will also face similar shortages. To overcome this challenge, employers will have to embrace diversity and rely on recruitment from a global labour force. Migrants of all skill levels will be required for many sectors of the economy.", - "values": [ - "Economic Rights" - ] - }, - { - "text": "[The Commission urges governments, at all levels[...] to take the following actions:] [Addressing structural and underlying causes and risk factors so as to prevent violence against women and girls]: Develop policies and programmes, giving priority to formal and informal education programmes that support girls and enable them to acquire knowledge, develop self-esteem and take responsibility for their own lives, including access to a sustainable livelihood; and place special focus on programmes to educate women and men, especially parents and caregivers, on the importance of the physical and mental health and well-being of girls, including the elimination of child, early and forced marriage, violence against women and girls, female genital mutilation, child sexual exploitation, including commercial sexual exploitation, sexual abuse, rape, incest and abduction, and the elimination of discrimination against girls such as in food allocation", - "values": [ - "Education", - "Gender" - ] - }, - { - "text": "Despite many efforts undertaken at different levels by various actors, much remains to be done to prevent scores of children from being sold and sexually exploited, and child abuse materials from being produced, used and disseminated. Each day, more children become the victims of such crimes and have their childhood stolen. There is an urgent need to accelerate the development of effective and sustainable prevention measures.", - "values": [ - "Violence" - ] - }, - { - "text": "2. States Parties shall recognise the vested interest of young people in protecting the natural environment as the inheritors of the environment. In this regard, they shall: a) Encourage the media, youth organisations, in partnership with national and international organisations, to produce, exchange and disseminate information on environmental preservation and best practices to protect the environment;", - "values": [ - "Environment" - ] - }, - { - "text": "Recognizing the urgency of combating trafficking in persons in all its forms, including for the purposes of forced or compulsory labour, particularly of women migrant workers, and in this regard taking note of the adoption by the International Labour Conference on 11\u00a0June 2014, at its 103rd\u00a0session, of the Protocol to the Forced Labour Convention, 1930 (No.\u00a029), and of Recommendation No.\u00a0203 on supplementary measures for the effective suppression of forced labour, of the International Labour Organization,", - "values": [ - "Economic Rights", - "Movement", - "Violence" - ] - }, - { - "text": "Urges States and/or, as appropriate, the relevant funds, programmes and specialized agencies of the United Nations system, within their respective mandates, and invites the international financial institutions, civil society, non-governmental organizations and the private sector, bearing in mind national priorities, to strengthen education, health and social services and effectively utilize resources to achieve gender equality and the empowerment of women and ensure women's and girls' rights to education at all levels and the enjoyment of the highest attainable standard of physical and mental health, including sexual and reproductive health, as well as quality, affordable and universally accessible health care and services, in particular primary health care;", - "values": [ - "Equality & Inclusion", - "Health" - ] - }, - { - "text": "The above analysis suggests that extractive industries can legitimately operate within or near indigenous territories if specific measures of State protection and corporate respect for indigenous peoples' rights are taken. The Special Rapporteur is aware, however, that across the globe indigenous peoples are continuing to resist extractive industry operations that may affect them. In many cases, they tend even to resist entering into consultations over proposed extractive and other natural resource development activity for fear of being forced down a path of acceptance of extractive activities that from the outset they do not want near them. In instances in which such resistance persists, it will be problematic for extractive industries to operate, even if only because of the practical consequences that derive from a lack of social licence.", - "values": [ - "Economic Rights", - "Environment" - ] - }, - { - "text": "[The Committees recommend that the States parties to the Conventions adopt or amend legislation with a view to effectively addressing and eliminating harmful practices. In doing so, they should ensure:] That a national system of compulsory, accessible and free birth registration is established in order to effectively prevent harmful practices, including child marriage;", - "values": [ - "Civil & Political Rights", - "Harmful Practices" - ] - }, - { - "text": "[The Special Rapporteur makes the following recommendations to States:] Mobilize resources within the framework of the Sustainable Development Goals and invest in inclusive programmes that increase the access of girls and young women with disabilities to sexual and reproductive health and rights.", - "values": [ - "Equality & Inclusion", - "Health" - ] - }, - { - "text": "By 2020, effectively regulate harvesting and end overfishing, illegal, unreported and unregulated fishing and destructive fishing practices and implement science-based management plans, in order to restore fish stocks in the shortest time feasible, at least to levels that can produce maximum sustainable yield as determined by their biological characteristics", - "values": [ - "Environment" - ] - }, - { - "text": "States Parties shall endeavour to protect communities with special attachment to, and dependency, on land due to their particular culture and spiritual values from being displaced from such lands, except for compelling and overriding public interests;", - "values": [ - "Environment", - "Social & Cultural Rights" - ] - }, - { - "text": "Reducing informal work for women means increasing women's opportunities to work in the formal labour market. States, in different regions and at different income levels, have invested in the reskilling or professionalization of unemployed persons, with targeted benefits for women, such as retraining for jobs, especially for those with family responsibilities, or in setting quotas for women in employment guarantee programmes targeted at the poorest households. In the 2008 economic crisis, some States engaged in good practice specifically preserving women's jobs, and four countries in different regions increased their public works programmes with focus on female participation.", - "values": [ - "Economic Rights", - "Gender" - ] - }, - { - "text": "In the garment and textile sectors, reports indicate a significant risk of contemporary forms of slavery occurring in the complex subcontracting that characterizes the industry in many parts of the world, including the sometimes home-based and informal workshops operating on the margins of the formal economy. Subcontractors such as these are often overlooked both by labour inspections and due diligence systems, making workers in these supply chains particularly vulnerable to exploitation given the quick turnaround time to meet orders from global fashion brands and consumer needs. Contemporary forms of slavery have often been cited as occurring in global supply chains of international brands.", - "values": [ - "Economic Rights", - "Violence" - ] - }, - { - "text": "[Recommendations to international organizations] Integrate concerns about the specific vulnerability of migrant workers subject to abuse and exploitation by unethical recruiters into the further development and implementation of the post-2015 sustainable development goals agenda and migration management", - "values": [ - "Economic Rights", - "Violence" - ] - }, - { - "text": "The world's oceans and many of the world's lakes and rivers face serious threats. Without considerable effort to reverse existing trends, the ability of these aquatic ecosystems to continue to provide healthy quantities of fish will further decline. As acknowledged in paragraphs 163 to 168 of the outcome document of the United Nations Conference on Sustainable Development, the situation is worsening rapidly as the impacts of overfishing, destructive fishing and discards are exacerbated by the effects of climate change, pollution and habitat destruction.", - "values": [ - "Environment" - ] - }, - { - "text": "The present report, including the recommendations below, is aimed at guiding all relevant actors in their future efforts to implement their commitments. We should remember that empowering environmental human rights defenders is not only crucial to the protection of our environment and the human rights that depend on it, but also a safeguard to ensure that our future development will be less conflict-prone and more inclusive, leaving no one behind.", - "values": [ - "Environment" - ] - }, - { - "text": "That long before the women of America demanded their rights they were able to carry out nobly all their responsibilities side by side with men;", - "values": [ - "Equality & Inclusion" - ] - }, - { - "text": "[International Research and Training Institute for the Advancement of Women] INSTRAW has a mandate to promote research and training on women's situation and development. In the light of the Platform for Action, INSTRAW should review its work programme and develop a programme for implementing those aspects of the Platform for Action that fall within its mandate. It should identify those types of research and research methodologies to be given priority, strengthen national capacities to carry out women's studies and gender research, including that on the status of the girl child, and develop networks of research institutions that can be mobilized for that purpose. It should also identify those types of education and training that can be effectively supported and promoted by the Institute.", - "values": [ - "Gender", - "Governance & Rule of Law" - ] - }, - { - "text": "[Actions to be taken by Governments, the United Nations system and civil society, as appropriate:] (d) Provide full and accurate information about environmental health risks to the public, in particular to women, and take steps to ensure access to clean water, adequate sanitation and clean air.", - "values": [ - "Environment", - "Water & Sanitation" - ] - }, - { - "text": "The right to adequate food embraces the notion that its realization must not interfere with the enjoyment of other human rights. Therefore, arguments suggesting that pesticides are needed to safeguard the right to food and food security clash with the right to health, in view of the myriad negative health impacts associated with certain pesticide practices.", - "values": [ - "Food & Nutrition", - "Health" - ] - }, - { - "text": "Women represent a disproportionate percentage of the world's poor as a consequence of discrimination, leading to a lack of choice and opportunities, especially formal employment income. Poverty is both a compounding factor and the result of multiple discrimination. Older women with disabilities, especially, face many difficulties in accessing adequate housing, they are more likely to be institutionalized and do not have equal access to social protection and poverty reduction programs .", - "values": [ - "Equality & Inclusion", - "Poverty" - ] - }, - { - "text": "States Parties shall prohibit and condemn all forms of harmful practices which negatively affect the human rights of women and which are contrary to recognised international standards. States Parties shall take all necessary legislative and other measures to eliminate such practices, including: prohibition, through legislative measures backed by sanctions, of all forms of female genital mutilation, scarification, medicalisation and para-medicalisation of female genital mutilation and all other practices in order to eradicate them;", - "values": [ - "Governance & Rule of Law", - "Harmful Practices" - ] - }, - { - "text": "The importance of displacement, and in particular internal displacement, within the climate change debate is well established and now calls for specific strategies and measures to address it. Already in 1990, the Intergovernmental Panel on Climate Change reported that the greatest single impact of climate change might be on human migration. The Panel estimated that by 2050, 150 million people could be displaced by climate change-related phenomena, such as desertification, increasing water scarcity, floods and storms. Since then, while estimates have varied, it has generally been accepted that the effects of climate change will indeed result in large-scale movements of people, mostly within the boundaries of affected States, and that developing States in the southern hemisphere are likely to be the worst affected.", - "values": [ - "Environment", - "Movement" - ] - }, - { - "text": "Gravely concerned that despite the development and further strengthening of established standards for the treatment of refugees, the basic rights of refugees in different areas of the world have continued to be disregarded as evidenced, in particular, by the large number of victims and material damage occasioned by the various military and armed attacks on refugee camps and settlements which continue to occur;", - "values": [ - "Humanitarian", - "Violence" - ] - }, - { - "text": "Stresses the importance of, and critical need for, concerted efforts to eliminate impunity for violence against women and girls in situations of armed conflict, including by prosecuting gender related crimes and crimes of sexual violence, by providing protective measures, counselling and other appropriate assistance to victims and witnesses, by integrating a gender perspective into all efforts to eliminate impunity, including in international, internationally supported and domestic courts and other tribunals, commissions of inquiry and commissions for achieving truth and reconciliation, and invites the Special Rapporteur to report, as appropriate, on these mechanisms;", - "values": [ - "Humanitarian", - "Violence" - ] - }, - { - "text": "Many countries, including the United Kingdom and France, exclude domestic workers from the jurisdiction of labour inspectorates in deference to employers' privacy. Canada (Ontario), Ethiopia and Jordan exempt domestic workers from laws covering trade union representation. Migration law often also treats domestic workers differently from other workers. The Special Rapporteur notes, however, as a positive step, that 30 countries have now extended labour protection to domestic workers.", - "values": [ - "Economic Rights", - "Governance & Rule of Law", - "Movement" - ] - }, - { - "text": "The Commission recognizes that globalization presents both challenges and opportunities for women's economic empowerment. It also recognizes that there is a need to make broad and sustained efforts to create a shared future, based upon our common humanity, to ensure globalization is fully inclusive and equitable for all, including women and girls, and becomes an increasingly positive force for women's economic empowerment", - "values": [ - "Economic Rights", - "Equality & Inclusion" - ] - }, - { - "text": "In order to ensure availability of essential medicines, States should first identify medicines required to address priority health needs of the population under a national essential medicines list (NEML). This is consistent with States' core obligation to provide essential medicines listed in the WHO Essential Medicines List (EML). These include painkillers, anti-infectives, anti-bacterials, anti-tuberculosis, anti-retrovirals, blood products, cardiovascular medicines, vaccines and vitamins.", - "values": [ - "Health" - ] - }, - { - "text": "The Commission expressed concern at the serious and persistent obstacles, which were many and varied in nature, that still hindered the advancement of women and further affected their participation in decision-making processes, including, inter alia, the persistent feminization of poverty, the lack of equal access to health, education, training and employment, armed conflict, the lack of security and natural disasters.", - "values": [ - "Equality & Inclusion", - "Gender", - "Humanitarian" - ] - }, - { - "text": "2. Every person accused of a criminal offense has the right to be presumed innocent so long as his guilt has not been proven according to law. During the proceedings, every person is entitled, with full equality, to the following minimum guarantees: \nd. the right of the accused to defend himself personally or to be assisted by legal counsel of his own choosing, and to communicate freely and privately with his counsel;", - "values": [ - "Civil & Political Rights" - ] - }, - { - "text": "Recalling the Programme of Action of the International Conference on Population and Development, which, inter alia, called upon Governments of both receiving countries and countries of origin to adopt effective sanctions against those who organize undocumented migration, exploit undocumented migrants or engage in trafficking in undocumented migrants, especially those who engage in any form of international traffic in women, youth and children, and called for Governments of countries of origin, where the activities of agents or other intermediaries in the migration process are legal, to regulate such activities in order to prevent abuses, especially exploitation, prostitution and coercive adoption,", - "values": [ - "Governance & Rule of Law", - "Movement" - ] - }, - { - "text": "Various Security Council resolutions address issues of particular relevance to IDW, including access to protection and assistance; sexual violence; trafficking; and peace, reconciliation and development. The Council's resolutions on women, peace and security, including its landmark resolution 1325 (2000), are particularly important tools for strengthening and systematizing responses to the rights and needs of IDW. The development of national action plans for the implementation of resolution 1325 (2000) represents a valuable opportunity to include and engage IDW. To date, 35 national Governments, as well as the European Union, OSCE and the North Atlantic Treaty Organization (NATO), have approved action plans, while numerous others are in the drafting phase. Several countries facing internal displacement have developed plans, including C\u00f4te d'Ivoire, Georgia, Nepal and the Philippines. Concerted support for the effective implementation of these action plans is essential to ensure that their potential benefits for IDW are maximized.", - "values": [ - "Governance & Rule of Law", - "Humanitarian" - ] - }, - { - "text": "[The Committee recommends that States parties:] Use preventive detention as a last resort and for as short a time as possible, and avoid preventive or post-trial detention for petty offences and for the inability to pay bail in such cases.", - "values": [ - "Civil & Political Rights", - "Governance & Rule of Law" - ] - }, - { - "text": "Special measures of protection or assistance provided for in other Conventions or Recommendations adopted by the International Labour Conference shall not be deemed to be discrimination.", - "values": [ - "Economic Rights", - "Equality & Inclusion" - ] - }, - { - "text": "Recognizing that hostage-taking calls for resolute, firm and concerted efforts on the part of the international community, in conformity with international humanitarian law and in accordance with international human rights standards, in order to bring such abhorrent practices to an end,", - "values": [ - "Governance & Rule of Law", - "Humanitarian" - ] - }, - { - "text": "The impact of climate change on food security was recognized in the United Nations Framework Convention on Climate Change (art. 2), but received little attention until the spike in food prices in 2007. The Intergovernmental Panel on Climate Change for the first time in its assessments included a section on food security in the Fifth Assessment Report. Article 2 of the United Nations Framework Convention states that ecosystems must be allowed sufficient time to adapt naturally to climate change so as to \"ensure that food production is not threatened\". Several international organizations have also acknowledged the link between food security and climate change. Nevertheless, the inclusion of a rights-based approach to food security has yet to be realized.", - "values": [ - "Environment", - "Food & Nutrition" - ] - }, - { - "text": "Responses to the survey also confirm that the adoption of legislation banning the use of violence as a form of punishment or sentencing is gaining momentum, with more than 60 per cent of the responding States mentioning having in place a legal prohibition of inhuman sentencing, including life imprisonment and capital punishment. More than 20 per cent of responding States have a comprehensive ban on corporal punishment in all settings in place and over 50 per cent a partial prohibition.", - "values": [ - "Governance & Rule of Law", - "Violence" - ] - }, - { - "text": "Expressing its concern that the HIV/AIDS pandemic reinforces gender inequalities, that women and girls are disproportionately affected by the HIV and AIDS crisis, that they are more easily infected, that they bear the disproportionate burden of caring for and supporting those infected and affected by the disease and that they become more vulnerable to poverty as a result of the HIV and AIDS crisis,", - "values": [ - "Health", - "Poverty" - ] - }, - { - "text": "During times of emergency, coordination is critical to minimize gaps and overlaps in the delivery of assistance by humanitarian organizations. The cluster approach was introduced in 2005, after the reform of the humanitarian agenda, notably to enhance the response to the specific needs of displaced populations. The cluster system has been used in more than 30 countries and allows both United Nations and non-United Nations organizations to participate. It is essential that Governments be included in the cluster system and participate in relevant meetings so that once Governments are ready, the response can be handed over to them and the cluster system can step down.", - "values": [ - "Humanitarian", - "Movement" - ] - }, - { - "text": "Poverty and inequality are drivers of obesity and micronutrient deficiency, in addition to undernutrition. Low-income populations are particularly vulnerable to obesity. Processed foods tend to be highly accessible and relatively cheap and can be stored for long periods without spoiling. In the United States of America for instance, low-income neighbourhoods often lack food retailers that sell fruits, vegetables, whole grains and alternative low-fat options. Unable to afford healthier food options, individuals may become overreliant on poor-quality foods, essentially being forced to choose between economic viability and nutrition and exposed to \"double malnutrition\".", - "values": [ - "Food & Nutrition", - "Poverty" - ] - }, - { - "text": "The pursuit of durable solutions raises a range of concerns for IDW. Although the choice of a durable solution is, in principle, an individual matter, in practice decisions concerning durable solutions are usually made by families or communities, often marginalizing women's preferences. For example, particularly when they have been the targets of SGBV, IDW may be deterred from returning due to traumatic associations or fear of further attacks. Yet, in some instances families or other actors may pressure women to return despite these concerns.", - "values": [ - "Movement", - "Violence" - ] - }, - { - "text": "Observing that the sexual exploitation of children, in particular child pornography and prostitution, and all forms of sexual abuse of children, including acts which are committed abroad, are destructive to children\u2019s health and psycho-social development;", - "values": [ - "Health", - "Violence" - ] - }, - { - "text": "The Commission recognizes the important role and contribution of rural women and girls to poverty eradication, sustainable development and food security and nutrition, especially in poor and vulnerable households. The Commission also recognizes the importance of the empowerment of rural women and their full, equal and effective participation at all levels of decision-making.", - "values": [ - "Food & Nutrition", - "Poverty" - ] - }, - { - "text": "In some States, discriminatory legislation persists, including through the delegation of authority to religious personal law systems, obstructing women's participation in the labour market. However, in many countries, discriminatory legislation has been eliminated and equal employment opportunity laws have been enacted: 101 countries have laws prohibiting employment discrimination and 117 have equal pay laws.", - "values": [ - "Economic Rights", - "Equality & Inclusion" - ] - }, - { - "text": "The EFA Global Monitoring Report 2011 pointed to serious limitations in data collection in conflict situations: \"assessments of need for communities caught up in conflict are at best haphazard, even taking into account the inevitable constraints associated with conducting surveys in conflict affected areas\". It also underlined that donors' assessments tend to underestimate needs in the education sector as their proposals are often tailored to meet low expectations of donor funding. Limited attention is paid to needs assessment for qualitative aspects of education, such as textbook supply, hours of study and in-service teacher training. Human resources and infrastructure requirements for secondary education tend also to be completely ignored.", - "values": [ - "Education", - "Humanitarian" - ] - }, - { - "text": "Recognizing further the need to improve the quality of life of persons with disabilities worldwide through the enhancement of awareness of and sensitivity to disability issues and respect for the full enjoyment of all human rights by persons with disabilities and by ensuring that the benefits of development programmes also reach them,", - "values": [ - "Equality & Inclusion" - ] - }, - { - "text": "Furthermore, States should always ensure that the principle of the best interests of the child is the paramount consideration in any alternative care placement of indigenous children and in accordance with article 20 (3) of the Convention pay due regard to the desirability of continuity in the child's upbringing and to the child's ethnic, religious, cultural and linguistic background. In States parties where indigenous children are overrepresented among children separated from their family environment, specially targeted policy measures should be developed in consultation with indigenous communities in order to reduce the number of indigenous children in alternative care and prevent the loss of their cultural identity. Specifically, if an indigenous child is placed in care outside their community, the State party should take special measures to ensure that the child can maintain his or her cultural identity.", - "values": [ - "Governance & Rule of Law", - "Social & Cultural Rights" - ] - }, - { - "text": "Reaffirms the right of the child to be protected from economic exploitation and from performing any work that is likely to be hazardous or to interfere with the child's education or to be harmful to the child's health or physical, mental, spiritual, moral or social development;", - "values": [ - "Economic Rights", - "Violence" - ] - }, - { - "text": "1. Each Party shall adopt such legislative or other measures as may be necessary to provide effective and appropriate protection from potential retaliation or intimidation in particular during and after investigation and prosecution of perpetrators, for:\nc. witnesses who give testimony concerning criminal offences established in accordance with Article 18 of this Convention;", - "values": [ - "Civil & Political Rights", - "Violence" - ] - }, - { - "text": "Support the implementation of plans and programmes of action to ensure quality education and improved enrolment retention rates for boys and girls and the elimination of gender discrimination and gender stereotypes in educational curricula and materials, as well as in the process of education;", - "values": [ - "Education", - "Gender" - ] - }, - { - "text": "Also concerned that multiple forms of discrimination and conditions of disadvantage contribute to the vulnerability of women and girls to trafficking, and that indigenous, refugee, internally displaced and migrant women and girls may be particularly at risk,", - "values": [ - "Equality & Inclusion", - "Movement" - ] - }, - { - "text": "Recalling that the Vienna Declaration and Programme of Action affirmed the human rights of women and girl children as an inalienable, integral and indivisible part of universal human rights,", - "values": [ - "Equality & Inclusion", - "Governance & Rule of Law" - ] - }, - { - "text": "[By Governments and international organizations and private sector institutions, as appropriate:] Encourage social, economic, political and scientific institutions to address environmental degradation and the resulting impact on women.", - "values": [ - "Environment", - "Gender" - ] - }, - { - "text": "NOTING with concern the situation of African youth, many of whom are marginalized from mainstream society through inequalities in income, wealth and power, unemployment and underemployment, infected and affected by the HIV/AIDS pandemic, living in situations of poverty and hunger, experiencing illiteracy and poor quality educational systems, restricted access to health services and to information, exposure to violence including gender violence, engaging in armed conflicts and experiencing various forms of discrimination;", - "values": [ - "Poverty" - ] - }, - { - "text": "Preventive measures should be implemented more proactively by adopting a strong preventive and prohibitive legal framework (see paras. 25-32 above) and mainstreaming strategies aimed at growth and poverty reduction, such as the Millennium Development Goals, into broader national policy frameworks with a view to minimizing the risk of children being sold and sexually exploited and implementing a vulnerability risk assessment framework that would enable professionals to determine when a child is in a situation requiring intervention and when he or she requires support, as well as to determine which type of action is most appropriate given the child's needs.", - "values": [ - "Governance & Rule of Law", - "Violence" - ] - }, - { - "text": "According to article 13 of the International Covenant on Economic, Social and Cultural Rights, the right to education is a universal right. As recognized by Committee on Economic, Social and Cultural Rights in its general comment No. 13, education is the \"primary vehicle by which economically and socially marginalized adults and children can lift themselves out of poverty and obtain the means to participate fully in their communities\". The Committee on the Elimination of Racial Discrimination, in its general recommendation No. 30, has highlighted the need for States to ensure that all migrant children, irrespective of their status, have access to public educational institutions. The Committee on the Rights of the Child, in its general comment No. 9, endorsed the concept of inclusive education as \"a set of values, principles and practices that seeks meaningful, effective, and quality education for all students, that does justice to the diversity of learning conditions and requirements not only of children with disabilities, but for all students\".", - "values": [ - "Education", - "Equality & Inclusion", - "Poverty" - ] - }, - { - "text": "Women have different and unequal access to and use of basic health resources, including primary health services for the prevention and treatment of childhood diseases, malnutrition, anaemia, diarrhoeal diseases, communicable diseases, malaria and other tropical diseases and tuberculosis, among others. Women also have different and unequal opportunities for the protection, promotion and maintenance of their health. In many developing countries, the lack of emergency obstetric services is also of particular concern. Health policies and programmes often perpetuate gender stereotypes and fail to consider socio-economic disparities and other differences among women and may not fully take account of the lack of autonomy of women regarding their health. Women's health is also affected by gender bias in the health system and by the provision of inadequate and inappropriate medical services to women.", - "values": [ - "Equality & Inclusion", - "Health" - ] - }, - { - "text": "The problems arising from such development projects affecting indigenous peoples are present in a wide range of situations that the Special Rapporteur regularly encounters in connection with his activities of monitoring and responding to situations of concern to indigenous peoples around the world. These problems are often related to the absence of any adequate mechanisms of participation of indigenous peoples in the design and implementation of the development initiatives, the absence of adequate mitigation measures that take into account indigenous environmental and cultural concerns, the failure to recognize indigenous property rights in lands and resources and the absence of equitable sharing in the benefits of the development projects. In this regard, article 32 of the Declaration, with its call for the free and informed consent of indigenous peoples prior to the approval of any project affecting their lands or territories and other resources, particularly in connection with the development, utilization or exploitation of mineral, water or other resources, provides an important template for avoiding these problems in the development context.", - "values": [ - "Environment", - "Social & Cultural Rights" - ] - }, - { - "text": "In many countries, transgender persons are not able to have their self-identified gender recognized by the State, even with gender reassignment surgery, and have to endure lifelong abuses and discrimination. Non-recognition is interlinked with the environment that leads to violence and discrimination. In some situations, they are forced to undergo gender reassignment surgery, other medical procedures, such as psychological assessment, conversion therapy, sterilization and also divorce, with or without legal recognition of their self-identified gender. Other impediments include bureaucratic hurdles and difficulties in accessing medical care, such as hormone treatment, as well as in accessing the wherewithal of life, such as education, housing, a decent standard of living and employment opportunities. Yet, a number of countries, such as Argentina, Australia, Malta, and Scandinavian countries, are now leading the way by enabling people to have their self-identified gender recognized under national law without the need for surgery and related medical procedures, unless they opt for the latter on a non-coerced basis, and by reducing the bureaucratic hurdles along the way. On a related front, the issue of forced surgery (from a young age) also pertains to intersex persons; this is interrelated with violence and discrimination, whereby such persons are prevented from enjoying the element of choice concerning their sexual orientation and gender identity, which is an intrinsic part of the diversity of human life. There is thus a need to move towards legal recognition of self-defined gender identity without coerced methods.", - "values": [ - "Equality & Inclusion", - "Gender" - ] - }, - { - "text": "[Recognizes that strategies and actions under this operational guidance should be underpinned by the following principles and approaches, amongst others:] In recognition that detention can affect the physical and mental well-being of children and heighten their vulnerability, States should refrain from detaining children, and do so only as a measure of last resort and for the shortest appropriate period of time, while considering the best interests of the child;", - "values": [ - "Governance & Rule of Law", - "Health" - ] - }, - { - "text": "Urges Member States and international organizations to pursue policies and strategies that improve the functioning of national, regional and international markets and ensure equitable access for all to those markets, especially smallholder and women farmers in developing countries, notes the importance of non-trade-distorting special measures that are consistent with the rules of the World Trade Organization aimed at creating incentives for smallholder farmers in developing countries to enable them to increase their productivity and to compete on a more equal footing in world food markets, and urges Member States to refrain from taking measures that are inconsistent with the rules of the World Trade Organization and that have adverse impacts on global, regional and national food security;", - "values": [ - "Economic Rights", - "Equality & Inclusion", - "Food & Nutrition", - "Governance & Rule of Law" - ] - }, - { - "text": "States should ensure that their legislation complies with basic rights enshrined in their constitutions. Avenues of recourse should be readily available to individuals, including human rights defenders, to challenge the constitutionality of existing and new legislation.", - "values": [ - "Civil & Political Rights" - ] - }, - { - "text": "Recognizing also that most instances of maternal mortality and morbidity are preventable and that preventable maternal mortality and morbidity is a health, development and human rights challenge that also requires the effective promotion and protection of the human rights of women and girls, in particular their rights to life, to be equal in dignity, to education, to be free to seek, receive and impart information, to enjoy the benefits of scientific progress, to freedom from discrimination and to enjoy the highest attainable standard of physical and mental health, including sexual and reproductive health,", - "values": [ - "Equality & Inclusion", - "Health" - ] - }, - { - "text": "Where the rights implicated are essential to the survival of indigenous groups and foreseen impacts on the rights are significant, indigenous consent to those impacts is required, beyond simply being an objective of consultations. It is generally understood that indigenous peoples' rights over lands and resources in accordance with customary tenure are necessary to their survival. Accordingly, indigenous consent is presumptively a requirement for those aspects of any extractive project taking place within the officially recognized or customary land use areas of indigenous peoples, or that otherwise affect resources that are important to their survival.", - "values": [ - "Environment", - "Social & Cultural Rights" - ] - }, - { - "text": "A variety of rental sub-markets exists, including rooms in inner city tenements, custom-built tenements, rooms in informal settlements, renting land and building rental units to let or building units in the backyard of dwellings. The trend is particularly noticeable in Latin America, where informal owners enlarge their homes to house tenants in order to rise their incomes. In Sub-Saharan Africa, taking in lodgers within the existing structure is common in several countries. The transformation of Government-built housing to include rental units is widespread in Northern Africa as well as Sub-Saharan Africa. In Asia, informal rental ranges from unlicensed high-rise buildings that accommodate migrant workers in the \"urban villages\" of China to rented plots in some Indian and Thai cities where tenants build their own shelter. Most of those options - ignored by regulations - offer very precarious conditions to tenants.", - "values": [ - "Poverty", - "Social & Cultural Rights" - ] - }, - { - "text": "Children may have to go outside the camp or shelter to collect water, firewood or other sources of fuel. The combination of lack of supervision and the ever-increasing distance a child must travel from their shelter to find fuel or water places them at greater risk of abduction.", - "values": [ - "Humanitarian", - "Violence" - ] - }, - { - "text": "In a number of countries, juvenile justice remains an important gap in efforts to align the national normative framework with international standards. As a result, the minimum age of criminal responsibility is at times too low, adults' proceedings are applicable to children accused of committing an offence, and in a number of countries sentencing of persons below 18 can include capital punishment, life imprisonment, stoning, canning, flogging and amputation.", - "values": [ - "Civil & Political Rights", - "Governance & Rule of Law" - ] - }, - { - "text": "People in debt bondage tend to have experienced a low level of access to education, which frequently results in illiteracy and innumeracy. This leads to a lack of alternative employment options and makes them vulnerable to exploitation from their employers. Illiteracy and innumeracy allow employers or recruiters to manipulate loans, interest rates and wages. Poor remuneration in previous employment is considered to be a major cause of debt bondage, as workers are forced to take loans or advances to cover basic subsistence needs.", - "values": [ - "Economic Rights", - "Education", - "Poverty" - ] - }, - { - "text": "The active involvement of women at the national and international levels is essential for the development and implementation of policies aimed at promoting and protecting the environmental aspects of human health, in particular, in setting standards for drinking water, since everyone has a right to access to drinking water in quantity and quality equal to his or her basic needs. A gender perspective should be included in water resource management which, inter alia, values and reinforces the important role that women play in acquiring, conserving and using water. Women should be included in decision-making related to waste disposal, improving water and sanitation systems and industrial, agricultural and land-use projects that affect water quality and quantity. Women should have access to clean, affordable water for their human and economic needs. A prerequisite is the assurance of universal access to safe drinking water and to sanitation, and to that end, cooperation at both the national and international levels should be encouraged.", - "values": [ - "Health", - "Water & Sanitation" - ] - }, - { - "text": "Calls upon States to make primary education available, free and compulsory for all children, ensure free, equitable and quality secondary education and ensure that all girls and boys have access to quality early childhood development, care and pre-primary education;", - "values": [ - "Education" - ] - }, - { - "text": "[Emphasizes that the deterioration of the natural environment, including the impacts of climate change and loss of biodiversity, is one of the principal concerns of young people worldwide and has direct implications for the well-being and empowerment of youth both now and in the future, and therefore urges Member States:] To ensure the involvement of young people in the renewable and sustainable energy sectors, through access to adequate education and training, the promotion of youth employment and entrepreneurship opportunities and cooperation initiatives in these sectors;", - "values": [ - "Education", - "Environment" - ] - }, - { - "text": "State Parties shall take all appropriate steps to eliminate harmful social and cultural practices that affect the welfare and dignity of youth, in particular; b) Customs and practices discriminatory to youth on the basis of gender, age or other status.", - "values": [ - "Equality & Inclusion", - "Social & Cultural Rights" - ] - }, - { - "text": "4. States Parties shall take all appropriate measures with a view to achieving full realisation of this right to gainful employment and shall in particular: h) Institute national youth service programmes to engender community participation and skills development for entry into the labour market.", - "values": [ - "Economic Rights", - "Equality & Inclusion" - ] - }, - { - "text": "[The full realization of human rights can require complex trade-offs that are even more difficult in situations of economic crisis. Having a plan or a vision guided by a human rights framework helps authorities to prioritize the realization of human rights above other considerations. Yet, a human rights framework provides no single answer on how to set priorities in a case where not all can be reached at the same time - for instance the distribution of resources between neglected remote rural areas and deprived urban slum areas. What human rights standards and principles call for is that such allocation decisions are not based solely on a cost-utility analysis, but are the result of a democratic, participatory and non-discriminatory process. In this regard:] States must also develop specific strategies and plans for the water and sanitation sectors to ensure that these issues are accorded sufficient priority and that their specificities are taken into account;", - "values": [ - "Governance & Rule of Law", - "Water & Sanitation" - ] - }, - { - "text": "[To this end, Governments, the international community and civil society, including non-governmental organizations and the private sector, are called upon to take strategic action in the following critical areas of concern:] Gender inequalities in the management of natural resources and in the safeguarding of the environment", - "values": [ - "Environment", - "Gender" - ] - }, - { - "text": "Calls upon States, with the participation of relevant stakeholders, including girls, women, religious and community leaders, civil society and human rights groups, humanitarian actors, men and boys, and youth organizations, to develop and implement holistic, comprehensive and coordinated responses, strategies and policies to prevent, respond to and eliminate child, early and forced marriage, including in humanitarian settings, and to support already married girls, adolescents and women, including through the strengthening of child protection systems, protection mechanisms, such as safe shelters, access to justice and legal remedies, and the sharing of best practices across borders, in full compliance with international human rights obligations and commitments;", - "values": [ - "Harmful Practices", - "Humanitarian" - ] - }, - { - "text": "The Commission states that the global commitments for the achievement of gender equality and empowerment of women since the Fourth World Conference on Women, including through the Monterrey Consensus, have yet to be fully implemented.", - "values": [ - "Equality & Inclusion", - "Gender" - ] - }, - { - "text": "Urges States to condemn all harmful practices that affect women and girls, in particular female genital mutilations, whether committed within or outside a medical institution, and to take all necessary measures, especially through educational campaigns, including enacting and enforcing legislation, to prohibit female genital mutilations and to protect women and girls from this form of violence, and to hold perpetrators to account;", - "values": [ - "Harmful Practices", - "Health" - ] - }, - { - "text": "Recognizing that women and girls are often disproportionately affected by desertification, deforestation, natural disasters and climate change owing to gender inequalities and the dependence of many women on natural resources for their livelihoods,", - "values": [ - "Environment", - "Gender" - ] - }, - { - "text": "5. Each Party shall adopt such legislative or other measures as may be necessary to establish repatriation programmes, involving relevant national or international institutions and non governmental organisations. These programmes aim at avoiding re-victimisation. Each Party should make its best effort to favour the reintegration of victims into the society of the State of return, including reintegration into the education system and the labour market, in particular through the acquisition and improvement of their professional skills. With regard to children, these programmes should include enjoyment of the right to education and measures to secure adequate care or receipt by the family or appropriate care structures.", - "values": [ - "Equality & Inclusion", - "Violence" - ] - }, - { - "text": "Encourages, with a view to protecting refugees and other persons of concern and achieving solutions, supporting host communities and strengthening linkages among stakeholders and between humanitarian and development action, through comprehensive, multi-year, multi-partner strategies, planning and programming, supported by predictable financial assistance;", - "values": [ - "Governance & Rule of Law", - "Humanitarian" - ] - }, - { - "text": "[The Commission urges Governments, at all levels [...] to take the following actions:] [Realizing women's and girls' full enjoyment of all human rights]: Promote and protect women's and girls' right to education on the basis of equal opportunity and non-discrimination throughout their life cycle at all levels and promote equal and inclusive access to quality early childhood, primary, secondary and post-secondary education, non-formal education, catch-up and adult literacy education for those who did not receive formal education, skills development and vocational training and human rights education and training, with specific attention to: eliminating gender disparities at all levels of education by increasing the retention, transition and completion rates of women and girls; improving the quality of education and learning outcomes; eliminating gender stereotypes in the curriculum; mainstreaming a gender perspective into education and training programmes, including science and technology; eradicating female illiteracy and supporting school-to-work transition through skills development to enable their active participation in economic, social and cultural development, governance and decision-making;", - "values": [ - "Education", - "Gender" - ] - }, - { - "text": "The Commission reaffirms that the realization of the right to education, as well as access to quality and inclusive education, contributes to the achievement of gender equality and the empowerment of all women and girls. It notes with concern the lack of progress in closing gender gaps in access to, retention in and completion of secondary and tertiary education and emphasizes the importance of lifelong learning opportunities. It recognizes that new technologies, which are changing the structure of labour markets, provide new and different employment opportunities that require women and girls to acquire skills ranging from basic digital fluency to advanced technical skills in science, technology, engineering and mathematics and in information and communications technology.", - "values": [ - "Education", - "Gender" - ] - }, - { - "text": "[Calls upon all States:] To strengthen partnerships at the national level with workers' and employers' organizations, as well as with other relevant sectors of civil society, including media and non\u00adgovernmental organizations, as appropriate, to address the problem of child labour;", - "values": [ - "Economic Rights", - "Governance & Rule of Law", - "Violence" - ] - }, - { - "text": "Technical and vocational education and training is instrumental in work-based learning and continuing professional development, which are necessary in confronting the challenges of unemployment and underemployment, both in developed and developing countries. Ensuring such education and training that is adequate and relevant is central to responding to the diverse aspirations and needs of individuals and societies in a rapidly globalizing world.", - "values": [ - "Economic Rights", - "Education" - ] - }, - { - "text": "Economic and social rights are also of central importance to efforts to tackle extreme inequality and its consequences. The thoroughly documented increases in global wealth and income inequality threaten to undermine the social fabric, to turn civil and political rights into a tool that will be used predominantly to protect the rights and interests of the wealthy and to entrench forms of economic and political liberalism that ignore the needs and deny the rights of those living in poverty. In many respects, the approach currently taken by the international human rights system all but ensures the worst of all possible outcomes. On the one hand, the correct approach insists that economic and social rights are indivisible from, and of equal importance to, civil and political rights, thus suggesting that they can provide a meaningful response to extreme poverty, extreme inequality and other forms of rampant social injustice. On the other hand, the international human rights system systematically marginalizes those rights in many respects, and tolerates a situation in which the majority of States avoid the recognition, institutionalization and accountability that alone can establish solid foundations upon which to build respect for economic and social rights as full-fledged human rights and thus provide powerful and principled arguments to reduce levels of inequality.", - "values": [ - "Civil & Political Rights", - "Economic Rights", - "Poverty", - "Social & Cultural Rights" - ] - }, - { - "text": "[For the purpose of the present general comment, the following definitions apply:] Budget includes public revenue mobilization, budget allocation and expenditures of States;", - "values": [ - "Governance & Rule of Law" - ] - }, - { - "text": "Recognizes the importance for States to promote an age, gender and diversity-sensitive approach, taking into account such information in the implementation of applicable international refugee instruments;", - "values": [ - "Equality & Inclusion", - "Movement" - ] - }, - { - "text": "The lack of or insufficient legal framework, policies and institutions to combat child slavery and to support and protect children from slavery is a significant cause of child slavery in the mining sector. This is often compounded by a weak institutional framework whereby there is a lack of clarity about the roles and responsibilities of Government bodies and often a lack of sufficient human and financial resources to implement, where they exist, Government programmes.", - "values": [ - "Economic Rights", - "Governance & Rule of Law", - "Violence" - ] - }, - { - "text": "[Formulates the following recommendations addressed to States parties:] Ensure that public and private education systems do not discriminate against or exclude children based on race or descent.", - "values": [ - "Education", - "Equality & Inclusion" - ] - }, - { - "text": "Regrettably, instances of incitement to hatred continue to be found in all regions, as highlighted in the joint paper submitted to the regional expert workshops on the prohibition of incitement to national, racial or religious hatred by the Special Rapporteur, the Special Rapporteur on freedom of religion or belief and the Special Rapporteur on contemporary forms of racism, racial discrimination, xenophobia and related intolerance.", - "values": [ - "Equality & Inclusion", - "Social & Cultural Rights" - ] - }, - { - "text": "[The Special Rapporteur calls on States to consider progressively abolishing the administrative detention of migrants. In the meantime, Governments should take measures to ensure respect for the human rights of migrants in the context of detention, including by:] Ensuring that the law sets a limit on the maximum length of detention pending deportation and that under no circumstance is detention indefinite. There should be automatic, regular and judicial review of detention in each individual case. Administrative detention should end when a deportation order cannot be executed;", - "values": [ - "Governance & Rule of Law" - ] - }, - { - "text": "1.States Parties undertake to respect and ensure respect for the present Convention. In particular, States Parties shall: Ensure assistance to internally displaced persons by meeting their basic needs as well as allowing and facilitating rapid and unimpeded access by humanitarian organizations and personnel;", - "values": [ - "Governance & Rule of Law", - "Humanitarian" - ] - }, - { - "text": "[The Commission urges Governments, at all levels [...] to take the following actions:] [Realizing women's and girls' full enjoyment of all human rights]: Address the multiple and intersecting factors contributing to the disproportionate impact of poverty on women and girls over their life cycle, as well as intra-household gender inequalities in the allocation of resources, opportunities and power, by realizing women's and girls' civil, political, economic, social and cultural rights, including the right to development, and ensure women's and girls' inheritance and property rights, equal access to quality education, equal access to justice, social protection and an adequate standard of living, including food security and nutrition, safe drinking water and sanitation, energy and fuel resources and housing, as well as women's and adolescent girls' access to health, including sexual and reproductive health-care services, and women's equal access to full and productive employment and decent work, women's full participation and integration in the formal economy, equal pay for equal work or work of equal value, and equal sharing of unpaid work;", - "values": [ - "Poverty", - "Water & Sanitation" - ] - }, - { - "text": "3. No marriage shall be entered into without the free and full consent of the intending spouses.", - "values": [ - "Civil & Political Rights", - "Equality & Inclusion" - ] - }, - { - "text": "[Actions to be taken by Governments, the United Nations system and civil society, as appropriate:] (d) Encourage concerted efforts, through enhanced cooperation and coordination to minimize the negative impacts and maximize the benefits of globalization and interdependence, to, inter alia, enhance the provision of health-care services in developing countries, especially for women;", - "values": [ - "Governance & Rule of Law", - "Health" - ] - }, - { - "text": "Various underpinnings are singled out for particular attention to help prevent and overcome the negative elements of that environment and these will be dealt with in greater detail in future reports of the Independent Expert.", - "values": [ - "Environment" - ] - }, - { - "text": "Since the start of his mandate, the Special Rapporteur has sought to acquire an in-depth understanding of the specific challenges faced by certain groups of defenders. Far from seeking to create categories of persons whose rights would be differentiated, he believed it was essential to analyse the causes and manifestations of the risks faced by some groups of defenders. This approach is essential to the task of proposing appropriate protection methods and providing better support to defenders working to promote fundamental rights.", - "values": [ - "Civil & Political Rights" - ] - }, - { - "text": "[By Governments:] Promote the education of girls and women of all ages in science, technology, economics and other disciplines relating to the natural environment so that they can make informed choices and offer informed input in determining local economic, scientific and environmental priorities for the management and appropriate use of natural and local resources and ecosystems;", - "values": [ - "Education", - "Environment" - ] - }, - { - "text": "Invites social, economic, political and scientific institutions to take into account the impact of environmental degradation and climate change on women, and, in this regard, to develop database tools, databases and statistics, containing reliable, comparable and relevant data, disaggregated by sex and age, as well as gender-sensitive methodologies and policy analyses;", - "values": [ - "Environment", - "Gender" - ] - }, - { - "text": "One fourth of all households world wide are headed by women and many other households are dependent on female income even where men are present. Female- maintained households are very often among the poorest because of wage discrimination, occupational segregation patterns in the labour market and other gender-based barriers. Family disintegration, population movements between urban and rural areas within countries, international migration, war and internal displacements are factors contributing to the rise of female-headed households.", - "values": [ - "Movement", - "Poverty" - ] - }, - { - "text": "In Portugal, several legal decrees establish a Master\u2019s degree as the minimum qualification for entering the teaching profession for all levels of basic education, including preschool education. To qualify as a teacher in Albania, a candidate must have a Master\u2019s degree in education, one year of professional training and must have passed the State Examination for Teachers. In France, initial training equivalent to a Master\u2019s degree in a university is necessary for a teaching position. In Nigeria, the minimum teaching qualification is the Nigeria Certificate in Education (NCE). Minimum eligibility qualifications for entry into the teaching profession have also been laid down in the United Kingdom of Great Britain and Northern Ireland and in Finland, including specific training prior to deployment in the schools.", - "values": [ - "Education", - "Governance & Rule of Law" - ] - }, - { - "text": "Existing discrimination against the girl child in her access to nutrition and physical and mental health services endangers her current and future health. An estimated 450 million adult women in developing countries are stunted as a result of childhood protein-energy malnutrition.", - "values": [ - "Food & Nutrition", - "Health" - ] - }, - { - "text": "The new Goals and targets will come into effect on 1 January 2016 and will guide the decisions we take over the next 15 years. All of us will work to implement the Agenda within our own countries and at the regional and global levels, taking into account different national realities, capacities and levels of development and respecting national policies and priorities. We will respect national policy space for sustained, inclusive and sustainable economic growth, in particular for developing States, while remaining consistent with relevant international rules and commitments. We acknowledge also the importance of the regional and subregional dimensions, regional economic integration and interconnectivity in sustainable development. Regional and subregional frameworks can facilitate the effective translation of sustainable development policies into concrete action at the national level.", - "values": [ - "Equality & Inclusion", - "Governance & Rule of Law" - ] - }, - { - "text": "Recalling also the adoption on 10 March 2010 of the Abuja Declaration on Development of Agribusiness and Agro-industries in Africa by the High-level Conference on the Development of Agribusiness and Agro-industries in Africa, endorsed by the Executive Council of the African Union at its eighteenth ordinary session, in which a call was made for, inter alia, renewed commitment to increasing allocations in national budgets to the agricultural sector and for the adoption of programmes to accelerate the development of value chains for strategic food commodities, build competitive food supply systems and reduce reliance on food imports,", - "values": [ - "Food & Nutrition", - "Governance & Rule of Law" - ] - }, - { - "text": "While medical doctors and other health-care workers are accountable and responsible for ethical conduct and non-corrupt behaviour, it is crucial that corrupt practices and institutional corruption do not affect decisions made at the level of academic medicine. Medical schools that train future medical doctors and carry out medical research and university hospitals that provide a tertiary level of health-care services and use expensive biomedical technologies have a key role in preventing corruption in the rest of the health-care system. It is very important to use the principle of academic autonomy in a responsible way. The academic medical elite has enormous power over decision-making and when they advise policymakers on how to invest resources proper accountability mechanisms need to be in place.", - "values": [ - "Education", - "Health" - ] - }, - { - "text": "Community-based and mainstream media can be important partners in awareness-raising and outreach regarding the elimination of harmful practices, including through joint initiatives with Governments to host debates or talk shows, prepare and screen documentaries and develop educational programmes for radio and television. The Internet and social media can also be valuable tools for providing information and opportunities for debate, while mobile telephones are increasingly being used to convey messages and engage with people of all ages. Community-based media can serve as a useful forum for information and dialogue and may include radio, street theatre, music, art, poetry and puppetry.", - "values": [ - "Education", - "Harmful Practices" - ] - }, - { - "text": "Encourages all States to take steps with a view to achieving progressively the full realization of the right to food, including steps to promote the conditions for everyone to be free from hunger and, as soon as possible, to enjoy fully the right to food, and to create and adopt national plans to combat hunger, and recognizes in this regard the great efforts and positive developments with respect to the right to food in some developing countries and regions, including those highlighted in the report of the Special Rapporteur (See A/62/289);", - "values": [ - "Equality & Inclusion", - "Food & Nutrition", - "Governance & Rule of Law" - ] - }, - { - "text": "Recognizing also that female genital mutilation is an irreparable, irreversible abuse that affects one hundred to one hundred and forty million women and girls alive today, and that each year a further two million girls are at risk of undergoing the procedure,", - "values": [ - "Harmful Practices", - "Violence" - ] - }, - { - "text": "Under international human rights law, States have an obligation to ensure a right to remedy for victims of human rights violations. As noted earlier, the failure of States to exercise due diligence in relation to trafficking by non-State actors gives rise to an obligation to provide remedies; in this respect, the due diligence principle is a \"long-standing exception\" to the general rule that State responsibility is based on acts or omissions committed either by State actors or by actors whose actions are attributable to the State. In substance, adequate remedy or reparations include restitution, rehabilitation, compensation, satisfaction and guarantees of non-repetition. The right to an effective remedy encompasses not only these substantive rights to remedies for the harm suffered, but also a set of procedural rights necessary to facilitate access to remedies. Such remedies should have \"transformative potential\", meaning they should not be about returning individuals to the pre-trafficking context, but should \"subvert instead of reinforce pre-existing patterns\" that cause violations.", - "values": [ - "Governance & Rule of Law", - "Violence" - ] - }, - { - "text": "Emphasizes the central role of the Emergency Relief Coordinator in the coordination of the protection of and assistance to internally displaced persons, inter alia, through the inter-agency cluster system, welcomes continued initiatives to ensure better protection, assistance and development strategies for internally displaced persons, as well as better coordination of activities regarding them, and emphasizes the need to strengthen the capacities of national and local authorities, host communities, local organizations, United Nations organizations and other relevant actors to meet the immense humanitarian challenges of internal displacement;", - "values": [ - "Governance & Rule of Law", - "Movement" - ] - }, - { - "text": "The Commission notes that with regard to Millennium Development Goal 3 (promoting gender equality and empowering women), progress has been slow, with persistent gender disparities in some regions in secondary and tertiary education enrolment; the lack of economic empowerment, autonomy and independence for women, including a lack of integration into the formal economy, unequal access to full and productive employment and decent work, underrepresentation in non-agricultural wage employment, overrepresentation in low paid jobs and gender-stereotyped jobs like domestic and care work, and the lack of equal pay for equal work or work of equal value; the unequal burden of unpaid care work and insufficient measures to reconcile paid work and care responsibilities; the persistence of discriminatory attitudes, norms, stereotypes and legal frameworks; insufficient social protection and insurance coverage for women; and, despite progress, the low proportion and unequal participation and representation of women at all levels of decision-making, including in national parliaments and other governance structures.", - "values": [ - "Gender", - "Social & Cultural Rights" - ] - }, - { - "text": "[The Committee recommends that States parties implement the following measures with regard to international cooperation to combat gender-based violence against women:] Prioritize the implementation of the relevant Sustainable Development Goals, in particular Goals 5, to achieve gender equality and empowerment of all women and girls, and Goal 16, to promote peaceful and inclusive societies for sustainable development, provide access to justice and build effective, accountable and inclusive institutions at all levels; and support national plans to implement all the Goals in a gender-responsive manner, in accordance with the agreed conclusions of the sixtieth session of the Commission on the Status of Women on women\u2019s empowerment and the link to sustainable development, enabling meaningful participation of civil society and women\u2019s organizations in the implementation of the Goals and the follow-up processes, and enhance international support and cooperation for knowledge-sharing and effective and targeted capacity-building.", - "values": [ - "Equality & Inclusion", - "Gender" - ] - }, - { - "text": "The cases of community land trusts, cooperatives and community funds demonstrate the capacity of collective organizations to tailor housing solutions that adequately address security of tenure, affordability, location and availability of services and infrastructure in urban settings for low-income households.", - "values": [ - "Economic Rights", - "Governance & Rule of Law" - ] - }, - { - "text": "Noted with deep concern that large numbers of refugees and asylum-seekers in different areas of the world are currently the subject of detention or similar restrictive measures by reason of their illegal entry or presence in search of asylum, pending resolution of their situation and reiterated its Conclusion No. 44 (XXXVII) which circumscribes the grounds for detention of such persons;", - "values": [ - "Movement" - ] - }, - { - "text": "Emphasizes its commitment to indigenous peoples in the process of realization of the right to development, and stresses the commitment to ensure their rights in the areas of education, employment, vocational training and retraining, housing, sanitation, health and social security recognized in international human rights obligations and highlighted in the United Nations Declaration on the Rights of Indigenous Peoples as adopted by the General Assembly in its resolution 61/295 of 13\u00a0September 2007;", - "values": [ - "Economic Rights", - "Education" - ] - }, - { - "text": "Recognizing that livelihoods in rural areas are disproportionately affected by poverty, climate change, lack of development and lack of access to scientific progress,", - "values": [ - "Environment", - "Poverty" - ] - }, - { - "text": "Men and women of marriageable age have the right to marry and to found a family, according to the national laws governing the exercise of this right.", - "values": [ - "Social & Cultural Rights" - ] - }, - { - "text": "Continues to express particular concern about systemic and structural discrimination and violence faced by women human rights defenders of all ages, and reiterates its strong call upon States to take appropriate, robust and practical steps to protect them and to integrate a gender perspective into their efforts to create a safe and enabling environment for the defence of human rights, as called for by the General Assembly in its resolution 68/181;", - "values": [ - "Gender", - "Governance & Rule of Law", - "Violence" - ] - }, - { - "text": "A justice system based on the respect of the rights of the child is critical when preventing and addressing incidents of violence against children. Child victims of violence, including as a result of trafficking and exploitation, are, however, still too often criminalized and deprived of the protection that they should enjoy as children. Marginalized children, including those living in poverty, migrants and asylum-seekers face risks of physical, psychological and sexual violence, are denied access to legal assistance, or placed in detention instead of benefiting from adequate care arrangements. Frequently considered the first option rather than a measure of last resort, the deprivation of liberty remains a reality for thousands of children. Violence, including torture and humiliating treatment, is used as a form of control, discipline and punishment; in some countries, sentencing can include caning, flogging, stoning or amputation, as well as capital punishment and life imprisonment.", - "values": [ - "Governance & Rule of Law", - "Violence" - ] - }, - { - "text": "[The consultation highlighted the following issues:] The urgency of ensuring the harmonization of all legislation, including customary and religious laws, with international human rights standards; of introducing an explicit and comprehensive legal prohibition of all harmful practices; and of removing any justification of such practices that may compromise children's rights and best interests;", - "values": [ - "Governance & Rule of Law", - "Harmful Practices", - "Social & Cultural Rights" - ] - }, - { - "text": "The present report does not question the necessity, complementarity or usefulness of traditional medicine. However, the broad definition of the concept has led to situations where the difference between witchcraft practitioners and traditional doctors is difficult to establish in practice. For example, the Independent Expert has seen advertisements in newspapers posted by \"traditional healers\" offering to make clients richer, cure incurable diseases, secure release from prison, and making other claims that are more suggestive of witchcraft than traditional medicine. In this context, the ideological affinity found between patients and traditional medicine could facilitate witchcraft as a harmful practice because witchcraft can have a diagnostic objective that could implicate innocent third parties - for example, persons known to and disliked by the patient - as the source of a patient's problem.", - "values": [ - "Harmful Practices", - "Health" - ] - }, - { - "text": "Indicators should focus on the increased proportion of migrants with equal access to social security and cross-border portability of earned social security benefits such as pensions.", - "values": [ - "Economic Rights", - "Movement" - ] - }, - { - "text": "1. Every human being has the inherent right to life. This right shall be protected by law. No one shall be arbitrarily deprived of his life.", - "values": [ - "Civil & Political Rights", - "Governance & Rule of Law" - ] - }, - { - "text": "We note the report of the High-level Panel on Illicit Financial Flows from Africa. We invite other regions to carry out similar exercises. To help to combat illicit flows, we invite the International Monetary Fund (IMF), the World Bank and the United Nations to assist both source and destination countries. We also invite appropriate international institutions and regional organizations to publish estimates of the volume and composition of illicit financial flows. We will identify, assess and act on money-laundering risks, including through effective implementation of the Financial Action Task Force standards on anti-money-laundering/counter-terrorism financing. At the same time, we will encourage information-sharing among financial institutions to mitigate the potential impact of the anti-money-laundering and combating the financing of terrorism standard on reducing access to financial services.", - "values": [ - "Economic Rights", - "Governance & Rule of Law" - ] - }, - { - "text": "Urges States to ensure that the protection and provision of support to women and girls subject to, or at risk of, female genital mutilation are an integral part of policies and programmes that address the practice, and to provide women and girls with coordinated, specialized, accessible and quality multisectoral prevention and response, including education, as well as legal, psychological, health-care and social services, provided by qualified personnel, consistent with the guidelines of medical ethics;", - "values": [ - "Gender", - "Harmful Practices", - "Health" - ] - }, - { - "text": "Encourages Governments, local authorities, the United Nations system and regional organizations, and invites donors and other assisting countries, to address the vulnerabilities and capacities of women and girls through gender-responsive programming and the allocation of resources in their disaster risk reduction, response and recovery efforts in coordination with the Governments of affected countries;", - "values": [ - "Gender", - "Humanitarian" - ] - }, - { - "text": "Urges States to ensure a clear ban on harmful practices, which should be accompanied by preventive measures that should include education, information-sharing, enhancement of awareness and engaging stakeholders, including community and religious leaders, for promoting the abandonment of those practices and respect for children\u2019s rights, helping to overcome discriminatory attitudes and superstitious beliefs, thus supporting a process of social change for the abandonment of harmful practices that compromise the dignity and integrity of the child and are prejudicial to the health of boys and girls;", - "values": [ - "Equality & Inclusion", - "Harmful Practices", - "Health" - ] - }, - { - "text": "a. \"Trafficking in human beings\" shall mean the recruitment, transportation, transfer, harbouring or receipt of persons, by means of the threat or use of force or other forms of coercion, of abduction, of fraud, of deception, of the abuse of power or of a position of vulnerability or of the giving or receiving of payments or benefits to achieve the consent of a person having control over another person, for the purpose of exploitation. Exploitation shall include, at a minimum, the exploitation of the prostitution of others or other forms of sexual exploitation, forced labour or services, slavery or practices similar to slavery, servitude or the removal of organ", - "values": [ - "Movement", - "Violence" - ] - }, - { - "text": "In an endeavour to transform technical and vocational education and training, novel approaches are emerging to assess TVET programmes. For example, countries in Latin America have adopted a competency-based approach, such as the Occupational Competency Standardization and Certification Council in Mexico and the National Service of Learning (Servicio Nacional de Aprendizaje) in Colombia. Similarly, the National Programme for the integration between professional and basic education for young people and adults (PROEJA), established in 2006 in Brazil, is aimed at providing technical and vocational education and training at the basic and secondary education levels, as well as providing continuing technical education for young adults.", - "values": [ - "Education" - ] - }, - { - "text": "Recognize the significant contribution and leadership of women in migrant communities and take appropriate steps to ensure their full, equal and meaningful participation in the development of local solutions and opportunities, and also recognize the importance of protecting labour rights and a safe environment for migrant workers and those in precarious employment, protecting women migrant workers in all sectors and promoting labour mobility, including circular migration, in line with the New York Declaration for Refugees and Migrants;", - "values": [ - "Equality & Inclusion", - "Movement" - ] - }, - { - "text": "[To achieve this, it is important:] To promote cooperation between academic, scientific and research entities and networks and the private sector to develop new products and services to help to reduce disaster risk, in particular those that would assist developing countries and their specific challenges;", - "values": [ - "Humanitarian" - ] - }, - { - "text": "Through a human rights-based recovery, States have the chance to embrace new and ambitious approaches to reducing inequality, eliminating poverty and creating stable societies and economies that will withstand future shocks. A human rights approach is the best way for States to rectify the persistent inequalities, exacerbated by successive crises, which have diminished social cohesion and increased feelings of insecurity and exclusion. Should these inequalities persevere, the result could be increasing social unrest and conflict, a reality that has been vividly illustrated across North Africa and the Middle East in recent months.", - "values": [ - "Equality & Inclusion", - "Governance & Rule of Law", - "Poverty" - ] - }, - { - "text": "In order to address these intersecting challenges and develop adaptation strategies to deal with complex climate change-related displacement, a broader and more holistic understanding is required which goes beyond the direct line of causality usually applied in situations of sudden-onset natural disasters.", - "values": [ - "Environment", - "Movement" - ] - }, - { - "text": "In the present section the Special Rapporteur provides an overview of the norms and standards, implementing mechanisms and relevant jurisprudence regarding violence against women in the African, European and Inter-American regional human rights systems. She attempts to provide guidance that may be helpful for the international human rights system to consider when addressing the normative gap. She also reinforces the view, articulated in previous reports by the Special Rapporteur, that in order for the regional systems to reinforce universal human rights standards, as contained in international human rights instruments, it is essential that the United Nations system adopts a legally binding framework on violence against women and girls.", - "values": [ - "Gender", - "Governance & Rule of Law", - "Violence" - ] - }, - { - "text": "When a situation arises in a State Party that may affect its democratic political institutional arrangements or the legitimate exercise of power, the Peace and Security Council shall exercise its responsibilities in order to maintain the constitutional order in accordance with relevant provisions of the Protocol Relating to the Establishment of the Peace and Security Council of the African Union, hereinafter referred to as the Protocol.", - "values": [ - "Governance & Rule of Law" - ] - }, - { - "text": "Takes note in particular in this regard of the establishment of the United Nations network on racial discrimination and the protection of minorities, coordinated by the Office of the High Commissioner and aimed at enhancing dialogue and cooperation between relevant United Nations agencies, funds and programmes, and invites the network to cooperate with the Independent Expert on minority issues and the Special Rapporteur on contemporary forms of racism, racial discrimination, xenophobia and related intolerance and to consult and engage with persons belonging to national or ethnic, religious and linguistic minorities and civil society actors;", - "values": [ - "Governance & Rule of Law", - "Social & Cultural Rights" - ] - }, - { - "text": "1. States Parties shall take the following steps to promote and protect the morals and traditional values recognised by the community: e) Harness the creativity of youth to promote local cultural values and traditions by representing them in a format acceptable to youth and in a language and in forms to which youth are able to relate", - "values": [ - "Equality & Inclusion", - "Social & Cultural Rights" - ] - }, - { - "text": "[By Governments, the private sector and non-governmental organizations, trade unions and the United Nations, as appropriate:] Design and provide educational programmes through innovative media campaigns and school and community education programmes to raise awareness on gender equality and non-stereotyped gender roles of women and men within the family; provide support services and facilities, such as on-site child care at workplaces and flexible working arrangements;", - "values": [ - "Economic Rights", - "Gender" - ] - }, - { - "text": "[The normative content of the rights to water and to sanitation provides the standard to be achieved in terms of the following criteria:] Acceptability. Sanitation facilities, in particular, must be culturally acceptable. This will often require gender-specific facilities, constructed in a way that ensures privacy and dignity;", - "values": [ - "Gender", - "Social & Cultural Rights", - "Water & Sanitation" - ] - }, - { - "text": "Welcoming the panel discussion on the realization of the right to food in the context of the global food crisis, held by the Council on 9 March 2009, which offered an opportunity for persons affected by the crisis to participate and provide input to the discussions,", - "values": [ - "Equality & Inclusion", - "Food & Nutrition", - "Governance & Rule of Law" - ] - }, - { - "text": "Article 24 of the United Nations Convention on the Rights of Persons with Disabilities calls on States to ensure an inclusive education system that ensures a sense of dignity and self-worth and the full development of the mental and physical abilities of such people. Article 25 establishes that States should \"provide persons with disabilities with the same range, quality and standard of free or affordable health care and programmes as provided to other persons, including in the field of sexual and reproductive health\".", - "values": [ - "Education", - "Equality & Inclusion" - ] - }, - { - "text": "Children growing up in poverty are less likely to access basic social services of quality or benefit from effective preventive initiatives or protection mechanisms. This is a particularly acute problem for children living or working on the street, who often struggle to survive in unhealthy and violent public spaces where crime is rampant and protection hardly available and who are at risk of enduring ill-treatment by the authorities or being criminalized for survival behaviours, including truancy and begging.", - "values": [ - "Poverty" - ] - }, - { - "text": "The quality of women's health care is often deficient in various ways, depending on local circumstances. Women are frequently not treated with respect, nor are they guaranteed privacy and confidentiality, nor do they always receive full information about the options and services available. Furthermore, in some countries, over-medicating of women's life events is common, leading to unnecessary surgical intervention and inappropriate medication.", - "values": [ - "Equality & Inclusion", - "Gender", - "Health" - ] - }, - { - "text": "The Committee's experience is that the child's right to be heard is not always taken into account by States parties. The Committee recommends that States parties ensure, through legislation, regulation and policy directives, that the child's views are solicited and considered, including decisions regarding placement in foster care or homes, development of care plans and their review, and visits with parents and family.", - "values": [ - "Civil & Political Rights", - "Governance & Rule of Law" - ] - }, - { - "text": "Financing of lifelong learning programmes is the responsibility of those who should provide learning opportunities: public authorities, the community or the private sector. It is also a responsibility to be assumed by individuals in situations when they seek to enhance their competencies and skills.", - "values": [ - "Education" - ] - }, - { - "text": "Reiterating the necessity for all States and non-State parties to conflicts to comply fully with their obligations under applicable international law, including the prohibition on all forms of sexual violence,", - "values": [ - "Violence" - ] - }, - { - "text": "[The Commission urges Governments, at all levels [...] to take the following actions:] [Realizing women's and girls' full enjoyment of all human rights]: Enact and implement legislation to protect, support and empower child-headed households, in particular those headed by girls, and include provisions to ensure their economic well-being and access to health-care services, nutrition, safe drinking water and sanitation, shelter, education and inheritance, and ensure that these families are protected, supported and assisted to stay together;", - "values": [ - "Governance & Rule of Law", - "Water & Sanitation" - ] - }, - { - "text": "[We affirm that green economy policies in the context of sustainable development and poverty eradication should:] Address the concern about inequalities and promote social inclusion, including social protection floors;", - "values": [ - "Environment", - "Equality & Inclusion", - "Poverty" - ] - }, - { - "text": "Nutrition policies should be multidimensional and avoid promoting isolated interventions to fight malnutrition, including \"medicalized\" and product-based approaches focusing on ready-to-use therapeutic foods. Such measures have been criticized as unsustainable \"technical\" solutions to social problems. Fortified foods are often too expensive for or unavailable to those most affected by micronutrient deficiencies. Such initiatives can also undermine dietary diversity, have a negative impact on healthy eating practices and adversely affect small-scale local producers by moving away from culturally appropriate, affordable and sustainable food sources. Excessive reliance on product-based solutions, for example nutrient pills and other methods of food fortification, also has adverse health implications, especially if they are highly processed. Even biofortification, which seeks to deliver naturally fortified foods, may turn out to be another \"technical fix\" for the problem of hidden hunger.", - "values": [ - "Food & Nutrition", - "Health" - ] - }, - { - "text": "Recalling also Security Council resolution 1325 (2000) of 31 October 2000 on women, peace and security, and acknowledging the relevance of the study of the Secretary-General entitled Women, Peace and Security submitted pursuant to Security Council resolution 1325 (2000), and UNIFEM's recent study entitled Women, War and Peace: The Independent Experts' Assessment of the Impact of Armed Conflict on Women and Women's Role in Peace-Building,", - "values": [ - "Gender", - "Humanitarian" - ] - }, - { - "text": "According to paragraph 2 of article 23 States parties to the Convention recognize the right of the child with disability to special care and shall encourage and ensure the extension of assistance to the eligible child and those responsible for his or her care. The assistance has to be appropriate to the child's condition and the circumstances of the parents or others caring for the child. Paragraph 3 of article 23 gives further rules regarding the costs of specific measures and precisions as to what the assistance should try to achieve.", - "values": [ - "Equality & Inclusion" - ] - }, - { - "text": "GUIDED by the vision, hopes and aspirations of the African Union, inclusive of Africa's integration, the inherent dignity and inalienable rights afforded to all members of the human family as set out in the United Nations Universal Declaration of Human Rights (1948), the International Covenant of Civil and Political Rights (1976) and the International Covenant on Economic, Social and Cultural Rights (1976), and articulated for the African peoples through the African Charter on Human and People's Rights (1986)", - "values": [ - "Equality & Inclusion", - "Governance & Rule of Law" - ] - }, - { - "text": "Changes in the environment and climate have an important impact on human mobility and are predicted to significantly increase displacement and alter its patterns. In 2013 alone, some 22.4 million people were newly displaced by disasters triggered by natural events. In 2010, the Cancun Agreements expressly acknowledged \"climate-induced displacement\", which the Special Rapporteur addressed in his report to the General Assembly in 2011. Preparedness, environmental risk assessment, mitigation and disaster risk reduction are development imperatives in the context of the challenges posed by climate change-induced displacement. The consequences of climate change, such as environmental degradation and loss of livelihood, are a driver of increased rural-to-urban migration, often to urban slums and informal settlements offering precarious living conditions. Climate change-induced displacement must be addressed in humanitarian and development terms, to alleviate immediate suffering, but also to ensure lasting, development-based solutions for affected persons that avoid the precariousness, marginalization and instability associated with protracted displacement.", - "values": [ - "Environment", - "Movement" - ] - }, - { - "text": "Further urges States to take measures to protect children from sexual exploitation in travel and tourism through, inter alia, encouraging appropriate corporate social responsibility strategies and the adoption of professional codes of conduct, as well as ensuring investigation of and the bringing of appropriate charges against those who have sexually exploited a child in their own country or, in cases where a national of a State sexually exploits a child, in a foreign country and ensuring widespread public awareness on the issue of sexual violence against children;", - "values": [ - "Economic Rights", - "Violence" - ] - }, - { - "text": "Decides to remain seized of this matter.", - "values": [ - "Governance & Rule of Law" - ] - }, - { - "text": "The constitutional jurisprudence of India provides for the justiciability of economic, social and cultural rights based on \"the right to life\". This constitutional right was central to the case of People's Union for Civil Liberties (\"PUCL\") v. Union of India. In mid-2001, public food and employment programmes failed to provide food to deprived people in the impoverished and drought-stricken State of Rajasthan. The Supreme Court of India was petitioned by PUCL to compel the Government to respond to the hunger emergency. In response to the submissions, the Supreme Court held that the right to food was enshrined in the Constitution under the right to life provision in article 47, which requires that the State undertake measures to improve the nutritional state of the population. The Court handed down a series of resolutions which commenced in 2001 requiring State governments in India to implement food distribution programmes for the most disadvantaged. The Court's resolution had a considerable impact on the realization of the right to food in India, and provides an example of the influential role played by the judiciary in encouraging a legislative body to develop human rights legislation.", - "values": [ - "Food & Nutrition", - "Governance & Rule of Law", - "Humanitarian", - "Poverty" - ] - }, - { - "text": "[Every citizen shall have the right and the opportunity, without any of the distinctions mentioned in article 2 and without unreasonable restrictions:] (a) To take part in the conduct of public affairs, directly or through freely chosen representatives;", - "values": [ - "Civil & Political Rights", - "Equality & Inclusion" - ] - }, - { - "text": "Enhance global support for efforts to combat poaching and trafficking of protected species, including by increasing the capacity of local communities to pursue sustainable livelihood opportunities", - "values": [ - "Environment", - "Violence" - ] - }, - { - "text": "Criminal laws and other legal restrictions affecting sexual and reproductive health may amount to violations of the right to health. Although the present report deals predominantly with the impact of these laws and legal restrictions on women and girls, it by no means discounts similar problems faced by men and boys. Women, however, are generally more likely to experience infringements of their right to sexual and reproductive health given the physiology of human reproduction and the gendered social, legal and economic context in which sexuality, fertility, pregnancy and parenthood occur. Persistent stereotyping of women's roles within society and the family establish and fuel societal norms. Many of those norms are based on the belief that the freedom of a woman, especially with regard to her sexual identity, should be curtailed and regulated (see E/CN.4/2002/83, para. 99). Where women transgress these stereotype-driven norms in the pursuit of sexual and reproductive freedom, they are often punished severely, with resultant adverse effects on their health outcomes and violations of their right to health. The criminal laws and other legal restrictions examined in the present report facilitate and justify State control over women's life, such as forcing women to continue unwanted or unplanned pregnancies.", - "values": [ - "Equality & Inclusion", - "Health" - ] - }, - { - "text": "Welcoming the increase in the membership of the Committee on the Rights of the Child from 10 to 18 and aware of the need to continue to address the working methods of the Committee with the view to enabling it to deal efficiently with its important and increasing workload,", - "values": [ - "Governance & Rule of Law" - ] - }, - { - "text": "Without assembly and association rights, workers have little leverage to change the conditions that entrench poverty, fuel inequality and limit democracy. The need to maintain paid work is all-consuming; so many workers toil long hours for low wages in unsafe and unhealthy environments, risking disease, injury and death. They work without basic social protections such as health care, education, pensions or, in the case of trafficked workers, the right to choose or leave employment. The impact of the lack of assembly and association rights is compounded for migrant workers by harsh immigration laws, unscrupulous labour recruitment organizations, militarized labour systems and rights-restricted structures in export processing zones. Migrant domestic and agricultural workers, often excluded from labour law protection both at home and abroad, are doubly exploited and marginalized.", - "values": [ - "Economic Rights", - "Environment", - "Equality & Inclusion", - "Health", - "Movement" - ] - }, - { - "text": "Expressing grave concern at the continuation of armed conflicts in many regions throughout the world and the human suffering and humanitarian emergencies they have caused,", - "values": [ - "Humanitarian" - ] - }, - { - "text": "Security of tenure guarantees that people access and enjoy their home without fear of forced evictions, and enables them to improve their housing and living conditions. It provides a foundation for the enjoyment of all aspects of the right to adequate housing and other human rights. Conversely, when tenure insecurity results in forced eviction and homelessness, many human rights are violated and denied.", - "values": [ - "Social & Cultural Rights" - ] - }, - { - "text": "The Supreme Court of Canada has ruled that minority language educational rights under section 23 of the Canadian Charter of Rights and Freedoms, which provides guarantees for French-speaking communities, were considered justiciable. Other rulings by courts in South Africa protect the right to education and language rights.", - "values": [ - "Education" - ] - }, - { - "text": "[Urges Governments and, where appropriate, United Nations entities, civil society, including non-governmental organizations and the private sector, and other stakeholders:] To promote and involve women in designing income-generating activities and employment opportunities for women affected by natural disasters, particularly rural women, including by supporting community-based and home-based businesses through such instruments as local procurement of food and services, the establishment of necessary social services, and access to market, credit, cash transfers, social safety nets and other financial services, involving women in their design and taking into account the additional burden on women's time in the post-disaster phase for tasks such as securing supplies of food, water and fuel and caring for children whose schools have closed", - "values": [ - "Economic Rights", - "Gender" - ] - }, - { - "text": "Stressing the importance of ensuring non-discriminatory participation and inclusion of women and girls, as well as vulnerable persons within groups such as children, older persons and persons with disabilities, in every phase of disaster risk reduction, response and recovery, through a people-centred and holistic approach that fully respects human rights, in order to build an inclusive society, supported by a social bond among people through community-based approaches, which promotes gender equality, the empowerment of women, social and economic inclusion and development, strengthens the resilience of communities and reduces social and economic vulnerabilities to disasters", - "values": [ - "Equality & Inclusion", - "Humanitarian" - ] - }, - { - "text": "[Recommends that the States parties, as appropriate for their particular circumstances, adopt some or all of the following measures:] Formulate and put into action a comprehensive national strategy with the participation of members of affected communities, including special measures in accordance with articles 1 and 2 of the Convention, in order to eliminate discrimination against members of descent-based groups;", - "values": [ - "Equality & Inclusion" - ] - }, - { - "text": "Cognizant of the historical and cultural conditions in Africa;", - "values": [ - "Social & Cultural Rights" - ] - }, - { - "text": "Determined to contribute effectively to the common goal of protecting children against sexual exploitation and sexual abuse, whoever the perpetrator may be, and of providing assistance to victims;", - "values": [ - "Violence" - ] - }, - { - "text": "Requests all Member States, in conformity with their respective constitutional systems, effectively to promote and protect the human rights of all migrants, in conformity with the Universal Declaration of Human Rights and the international instruments to which they are party, which may include the International Covenants on Human Rights, the Convention against Torture and Other Cruel, Inhuman or Degrading Treatment or Punishment, the International Convention on the Elimination of All Forms of Racial Discrimination, the International Convention on the Protection of the Rights of All Migrant Workers and Members of Their Families, the Convention on the Elimination of All Forms of Discrimination against Women, the Convention on the Rights of the Child and other applicable international human rights instruments;", - "values": [ - "Governance & Rule of Law", - "Movement" - ] - }, - { - "text": "Noted with appreciation the work of the Sub-Committee of the Whole on International Protection as representing an important contribution to improving the legal situation of refugees;", - "values": [ - "Civil & Political Rights" - ] - }, - { - "text": "2. Nothing in this article shall affect any right of the victim or other persons to compensation which may exist under national law.", - "values": [ - "Governance & Rule of Law" - ] - }, - { - "text": "Welcoming the progress made in some countries to contain the epidemic, particularly through: strong political commitment and leadership at the highest levels, including community leadership; effective use of available resources and traditional medicines; successful prevention, care, support and treatment strategies; education and information initiatives; working in partnership with communities, civil society, people living with HIV/AIDS and vulnerable groups; and the active promotion and protection of human rights; and recognizing the importance of sharing and building on our collective and diverse experiences, through regional and international cooperation including North-South, South-South and triangular cooperation;", - "values": [ - "Health" - ] - }, - { - "text": "Recognizing that partnership between Governments, international organizations and relevant bodies and organizations of the United Nations system, in particular the United Nations Children's Fund, and all actors of civil society, in particular non-governmental organizations, as well as the private sector, is important to realize the rights of the child,", - "values": [ - "Governance & Rule of Law" - ] - }, - { - "text": "Deplores the fact that refugees, returnees and other persons of concern to UNHCR, in particular women and children, continue to be subjected to murder, armed attack, sexual and gender-based violence, forced military recruitment, separation of families, violations of or threats to their personal security and other fundamental rights; condemns in particular the armed attacks which took place in Gatumba transit centre, Burundi, in August 2004, which led to the killing of a large number of Congolese refugees; and, in this context, emphasizes the importance of host States taking appropriate measures to protect refugee camps and settlements including whenever possible through ensuring, in consultation with UNHCR, their location at a reasonable distance from the border; and also emphasizes the importance of protecting refugees from other forms of threat and harassment from any groups or individuals;", - "values": [ - "Humanitarian", - "Movement", - "Violence" - ] - }, - { - "text": "Reaffirming the principles and commitments with regard to adequate housing enshrined in the relevant provisions of declarations and programmes adopted by major United Nations conferences and summits, inter alia, the outcome of the United Nations Conference on Housing and Sustainable Urban Development (Habitat III), held from 17 to 20 October 2016 in Quito, and underlining the importance of the implementation of the 2030 Agenda for Sustainable Development, including target 11.1,", - "values": [ - "Social & Cultural Rights" - ] - }, - { - "text": "Requests the Secretary-General to submit a report to the Council by 31 October 2002 on the implementation of this resolution and of resolutions 1261 (1999) and 1314 (2000);", - "values": [ - "Governance & Rule of Law" - ] - }, - { - "text": "Welcomes the interim report of the Special Rapporteur of the Commission on Human Rights on the sale of children, child prostitution and child pornography, and expresses its support for her work;", - "values": [ - "Governance & Rule of Law" - ] - }, - { - "text": "Children feel physically hurt, but their dignity and self-esteem are also deeply wounded. They call for security and justice. Security to grow up with confidence, enjoying safety and protection from the risk of abuse, exploitation and reprisals; and justice to safeguard their rights, be treated with fairness and supported in their fight against impunity.", - "values": [ - "Equality & Inclusion", - "Social & Cultural Rights", - "Violence" - ] - }, - { - "text": "Deeply concerned that, in various parts of the world, persons with albinism continue to face barriers to their participation as equal members of society and face violations and abuse of their human rights, and conscious that greater and more urgent attention is needed to address these challenges,", - "values": [ - "Equality & Inclusion" - ] - }, - { - "text": "As the majority of the world's poor live outside of urban centres, with many of the most marginalized living in remote, hard-to-reach areas, the lack of nearby police centres and the centralization of national justice systems constitute serious obstacles to their accessing justice.", - "values": [ - "Governance & Rule of Law", - "Poverty" - ] - }, - { - "text": "[Where States adopt targeted measures, this also poses challenges. In practice, unfortunately, such measures often fail to reach the target population for a variety of reasons, including:] Those who are connected to water supply services but not to sewerage networks are often disadvantaged by cross-subsidies between water and sanitation services. This subsidy results in persons who have a water connection but no sewerage connection subsidizing better-off people or households that have such a connection;", - "values": [ - "Economic Rights", - "Water & Sanitation" - ] - }, - { - "text": "[The Special Rapporteur invites all States:] To establish comprehensive, rights-based and child-centred care, recovery and reintegration programmes, with a gender perspective, through a full range of laws, policies and services that will: Establish centralized databases for case management to ensure that child victims are identified, linked to services and followed up on a long-term basis;", - "values": [ - "Gender", - "Governance & Rule of Law" - ] - }, - { - "text": "Without the resources to retain private legal assistance, and with restricted access to legal aid (see above), persons living in poverty are often forced to navigate the judicial system alone. In doing so, they encounter, in addition to the barriers listed above, a complex labyrinth of laws, traditions and interactions, with copious paperwork, the use of legal jargon and mainstream languages, and restrictive time limits, all of which can deter the poor from seeking justice under formal systems and impede fair outcomes.", - "values": [ - "Governance & Rule of Law", - "Poverty" - ] - }, - { - "text": "In order to improve the plight of the urban poor, many of whom work in the informal sector of the economy, Governments are urged to promote the integration of migrants from rural areas into urban areas and to develop and improve their income-earning capability by facilitating their access to employment, credit, production, marketing opportunities, basic education, health services, vocational training and transportation, with special attention to the situation of women workers and women heads of households. Child-care centres and special protection and rehabilitation programmes for street children should be established.", - "values": [ - "Economic Rights", - "Movement", - "Poverty", - "Social & Cultural Rights" - ] - }, - { - "text": "Emphasizing that rural women\u2019s poverty is directly related to the absence of economic opportunities and autonomy and the lack of access to economic and productive resources, quality education and support services and of women\u2019s participation in the decision-making process, and recognizing that rural women\u2019s poverty and lack of empowerment as well as their exclusion from social and economic policies can place them at increased risk of violence that can impede their social and economic development, as well as the achievement of the Sustainable Development Goals,", - "values": [ - "Economic Rights", - "Equality & Inclusion", - "Gender", - "Poverty" - ] - }, - { - "text": "Further issues of importance regarding patterns of discrimination are presented by international development cooperation. In some countries, programmes to promote development implemented by Governments and external donors fail to take into account the inequalities between communities, the unique circumstances of minorities or the possible need for special measures to ensure that minority communities also benefit from such initiatives. Further, minorities may be adversely affected, for example through displacement by large-scale projects such as dams and natural resource extraction, or as a result of the negative environmental impact of such projects. As noted in the report of the independent expert on minorities, poverty and the Millennium Development Goals, conflict prevention is one reason why monitoring poverty alleviation among persons belonging to minorities is crucial: if strategies are successful for some groups but not for minorities, inequalities will increase and so too may tension. Inclusive participation strategies for poverty reduction are proven and effective conflict prevention measures (see A/HRC/4/9, para. 43).", - "values": [ - "Equality & Inclusion", - "Poverty" - ] - }, - { - "text": "Reaffirming also the need to eradicate poverty, which can contribute to the vulnerability of women and girls to HIV infection and aggravate the impact of the epidemic by depleting resources and incomes, thereby contributing to inadequate food and nutrition, which leads to poor treatment outcomes, and to impoverishment owing to loss of income and increased health expenditures, and endangers the survival of present and future generations,", - "values": [ - "Food & Nutrition", - "Poverty" - ] - }, - { - "text": "Transparency within intergovernmental organizations advances the same objectives that underlie the expansion of freedom of information and open government initiatives. As noted in the submission of the Centre for Law and Democracy, such organizations are public institutions, performing governmental functions, much as States do. Members of the public can only seriously engage with the critical issues pursued by intergovernmental organizations when they have access to information about them. In the context of multilateral institutions, the Special Rapporteur on the rights to freedom of association and peaceful assembly noted that for \u201ccivil society to engage effectively in global decision-making, the right to access information is indispensable\u201d (A/69/365, para. 15). In countries where intergovernmental organizations do extensive work, whether it involves peacekeeping or development assistance or human rights, to name a few areas, genuine engagement and participation means the ability to gain current information about the work of such missions. It means having mechanisms of public accountability so that individuals can determine whether the organizations are serving their interests or those of the organization itself, including, possibly, corporations, local leaders or corrupt participants in public life", - "values": [ - "Civil & Political Rights", - "Governance & Rule of Law" - ] - }, - { - "text": "Reaffirming the equal rights of women and men as enshrined in the Preamble to the Charter of the United Nations, and recalling the Convention on the Elimination of All Forms of Discrimination against Women and the Convention on the Rights of the Child,", - "values": [ - "Gender", - "Governance & Rule of Law" - ] - }, - { - "text": "States should ensure that housing includes water points and sanitation facilities available for and accessible to women, ensuring women their rights to water and sanitation, as well as to health. States should also ensure that housing is adequately located in order to provide women with access to employment options, health-care services, schools, childcare centres and other social facilities, such that they are non-discriminatory, adequate, available and fully accessible to women and girls.", - "values": [ - "Equality & Inclusion", - "Social & Cultural Rights", - "Water & Sanitation" - ] - }, - { - "text": "Girls and adolescents may receive a variety of conflicting and confusing messages on their gender roles from their parents, teachers, peers and the media. Women and men need to work together with children and youth to break down persistent gender stereotypes, taking into account the rights of the child and the responsibilities, rights and duties of parents as stated in paragraph 267 below.", - "values": [ - "Equality & Inclusion", - "Gender" - ] - }, - { - "text": "States parties are obligated to address the sex- and gender-based discriminatory aspects of all the various forms of family and family relationships. In respect of discrimination against women, they must address patriarchal traditions and attitudes and open family law and policy with the same scrutiny that is given to the \"public\" aspects of individual and community life.", - "values": [ - "Equality & Inclusion", - "Gender", - "Social & Cultural Rights" - ] - }, - { - "text": "Early childhood interventions can be particularly valuable for children with disabilities, serving to strengthen their capacity to benefit from education and promoting their enrolment and attendance. All such interventions must guarantee respect for the dignity and autonomy of the child. In line with SDG 4, and the 2030 Agenda for Sustainable Development, States parties are urged to ensure access to quality early childhood development, care and pre-primary education, together with the provision of support and training to parents and caregivers of young children with disabilities. If identified and supported early, young children with disabilities are more likely to transit smoothly into pre-primary and primary inclusive education settings. States parties must ensure coordination between all relevant ministries, authorities and bodies as well as OPDs and other NGO partners.", - "values": [ - "Education", - "Equality & Inclusion" - ] - }, - { - "text": "Urges States to take measures to reduce informal work for women, with a focus on female participation in economic life and by increasing women\u2019s economic opportunities, particularly in formal employment, in order to promote gender equality;", - "values": [ - "Economic Rights", - "Equality & Inclusion" - ] - }, - { - "text": "States Parties shall: d. Take special measures to protect and provide for the reproductive and sexual health of internally displaced women as well as appropriate psycho-social support for victims of sexual and other related abuses;", - "values": [ - "Health", - "Humanitarian" - ] - }, - { - "text": "The Commission recognizes that women constitute the majority of those employed in the health and social sectors, that by working in those sectors they make important contributions to sustainable development, and that investments in those sectors could enhance women's economic empowerment and transform unpaid and informal care roles into decent work by improving their working conditions and wages and by creating opportunities for their economic empowerment through skills enhancement and career advancement.", - "values": [ - "Economic Rights", - "Health" - ] - }, - { - "text": "Gender-related forms of persecution are forms of persecution that are directed against a woman because she is a woman or that affect women disproportionately. The Committee observes that understanding the way in which women's rights are violated is critical to the identification of those forms of persecution. The Committee notes that violence against women that is a prohibited form of discrimination against women is one of the major forms of persecution experienced by women in the context of refugee status and asylum. Such violence, just as other gender-related forms of persecution, may breach specific provisions of the Convention. Such forms are recognized as legitimate grounds for international protection in law and in practice. They may include the threat of female genital mutilation, forced/early marriage, threat of violence and/or so-called \"honour crimes\", trafficking in women, acid attacks, rape and other forms of sexual assault, serious forms of domestic violence, the imposition of the death penalty or other physical punishments existing in discriminatory justice systems, forced sterilization, political or religious persecution for holding feminist or other views and the persecutory consequences of failing to conform to gender-prescribed social norms and mores or for claiming their rights under the Convention.", - "values": [ - "Gender", - "Harmful Practices", - "Movement", - "Violence" - ] - }, - { - "text": "1. States Parties acknowledge the need to eliminate discrimination against girls and young women according to obligations stipulated in various international, regional and national human rights conventions and instruments designed to protect and promote women's rights. In this regard, they shall: f) Ensure that education material and teaching practices are gender sensitive and encourage girls and young women to undertake studies in the sciences;", - "values": [ - "Education", - "Gender" - ] - }, - { - "text": "Promote and protect the rights of women workers and take action to remove structural and legal barriers as well as stereotypical attitudes to gender equality at work, addressing, inter alia, gender bias in recruitment; working conditions; occupational segregation and harassment; discrimination in social protection benefits; women's occupational health and safety; unequal career opportunities and inadequate sharing, by men, of family responsibilities;", - "values": [ - "Economic Rights", - "Environment", - "Gender", - "Health" - ] - }, - { - "text": "Considering the need to adopt new instruments for the prohibition and elimination of the worst forms of child labour, as the main priority for national and international action, including international cooperation and assistance, to complement the Convention and the Recommendation concerning Minimum Age for Admission to Employment, 1973, which remain fundamental instruments on child labour, and", - "values": [ - "Economic Rights", - "Governance & Rule of Law" - ] - }, - { - "text": "Reaffirms that the human right to safe drinking water and sanitation is essential for the full enjoyment of life and to all human rights, and recalls that it is derived from the right to an adequate standard of living and is inextricably related to the right to the highest attainable standard of physical and mental health, as well as to the right to life and human dignity;", - "values": [ - "Health", - "Water & Sanitation" - ] - }, - { - "text": "The Commission recognizes that the economic empowerment, inclusion and development of indigenous women, including through the establishment of indigenous-owned businesses, can enable them to improve their social, cultural, civil and political engagement, achieve greater economic independence and build more sustainable and resilient communities, and notes the contribution of indigenous peoples to the broader economy.", - "values": [ - "Economic Rights", - "Equality & Inclusion" - ] - }, - { - "text": "The European Commission programme, Strategies for Effective Police Stop and Search project was designed to improve police-minority relations through more accountable use of policing power. It has been implemented with police and Roma in Bulgaria, Hungary and Spain and has proven effective in improving police relations with Roma, producing more efficient policing activities and increased legitimacy and trust.", - "values": [ - "Governance & Rule of Law" - ] - }, - { - "text": "[Reaffirms paragraphs\u00a034 to 39 of its resolution 68/147 and paragraphs\u00a047 to 62 of its resolution 62/141 of 18\u00a0December 2007 on the elimination of violence against children, condemns all forms of violence against children, and urges all States to implement the measures set out in paragraph\u00a034 of its resolution 68/147 and paragraph\u00a03 of its resolution 69/158 and:] To address the gender dimension of all forms of violence against children and incorporate a gender perspective in all policies adopted and actions taken to protect children against all forms of violence and harmful practices, including female genital mutilation, acknowledging that girls and boys face varying risks from different forms of violence at different ages and in different situations;", - "values": [ - "Harmful Practices", - "Violence" - ] - }, - { - "text": "[Empowering children through education, skills and livelihood opportunities]: Ensuring children\u2019s access to education is itself a powerful means of reducing the risk of joining armed forces or groups in conflict-affected countries or fragile situations. Research has suggested that, in some contexts, the higher the level of education received, the less likely a child is to mobilize voluntarily. If children attend school, they are less likely to join armed forces or groups because they have other alternatives. In contrast, a lack of access to education leads many young people to see military training as their only opportunity to provide for themselves and their families. In situations of armed conflict, when the protective function of schools is most required, schools often become targets for attacks. The use of schools for military purposes equally reduces the likelihood of children attending school. All stakeholders must therefore ensure that schools are protected. Measures that field-based practitioners in conflict settings have used to prevent schools from being attacked include physical protection, community involvement in protection of schools, alternative delivery of education, negotiations with stakeholders to make schools zones of peace, restrictions on the military and political use of schools, and advocacy initiatives.", - "values": [ - "Education", - "Equality & Inclusion", - "Humanitarian" - ] - }, - { - "text": "[The Commission urges Governments, at all levels [...] to take the following actions:] [Realizing women's and girls' full enjoyment of all human rights]: Develop comprehensive strategies to target gender inequality in health care and put into practice policies to ensure equal access for women, adolescents and youth to affordable and adequate health-care services, including primary health care and basic nutrition;", - "values": [ - "Equality & Inclusion", - "Health" - ] - }, - { - "text": "[The Commission urged Governments [\u2026] to take the following actions:] Eliminate all forms of discrimination, sexual exploitation and violence against female refugees, asylum-seekers and internally displaced persons and promote their active involvement in decisions affecting their lives and communities, while recalling the relevant norms of international human rights law, international humanitarian law and international refugee law;", - "values": [ - "Movement", - "Violence" - ] - }, - { - "text": "Calls upon all States to strengthen international commitment, cooperation and mutual assistance in preventing the phenomenon of children working and/or living on the street, in protecting such children, including against all forms of violence, and in improving their situation, including through sharing good practices, research, policies, monitoring and capacity-building;", - "values": [ - "Poverty", - "Violence" - ] - }, - { - "text": "Members of armed groups shall be prohibited from: c. Denying internally displaced persons the right to live in satisfactory conditions of dignity, security, sanitation, food, water, health and shelter; and separating members of the same family;", - "values": [ - "Social & Cultural Rights", - "Violence" - ] - }, - { - "text": "[In line with the above, the Special Rapporteur recommends that States:] Apply a gender analysis and increase women's participation in the formulation of government budgets to water, sanitation and hygiene;", - "values": [ - "Gender", - "Water & Sanitation" - ] - }, - { - "text": "An estimated 27.5 million people in the world today remain displaced within their own countries due to armed conflict, generalized violence and human rights violations. An additional 42 million were internally displaced due to sudden-onset natural disasters in the course of 2010. It is estimated that only a minority of these live in camp-like settings. Although camps have their own particular disadvantages (e.g. isolation from the community, dependency on external assistance) it has generally been considered easier to provide assistance to IDPs living in collective settlements than to those dispersed throughout the population. The former are more visible to authorities, easier to distinguish from the local population, and delivery of services is rendered logistically simpler than when communities are dispersed. In the case of persons displaced due to generalised violence and armed conflict, it has been found that \"in countries where IDPs were living in both gathered and dispersed settings, national authorities and humanitarian actors were twice as likely to provide assistance and protection to IDPs in gathered settings than to those in dispersed settings\"", - "values": [ - "Humanitarian", - "Violence" - ] - }, - { - "text": "For adults who continue to mine and quarry, Governments should also provide alternative livelihoods through which they can supplement the family income. This would increase the economic security of the families and diminish their need for child labour. A proven effective strategy in fighting child slavery is to promote the development of other activities which diversify the local economy and render it less dependent on this sector.", - "values": [ - "Economic Rights", - "Violence" - ] - }, - { - "text": "Welcomes the study prepared by the representative of the Secretary-General to promote a comprehensive strategy for better protection, assistance and development for internally displaced persons;", - "values": [ - "Governance & Rule of Law", - "Movement" - ] - }, - { - "text": "In many instances, areas in which people of African descent reside often have poor education facilities and lack the proper infrastructure conducive to enabling teaching and learning. The impact of residential patterns on school enrolments should be carefully assessed and the results addressed to avoid disparate social and educational outcomes.", - "values": [ - "Education" - ] - }, - { - "text": "(a) No one shall be required to perform forced or compulsory labour;", - "values": [ - "Civil & Political Rights", - "Economic Rights" - ] - }, - { - "text": "[Actions to be taken by Governments and international and regional intergovernmental institutions:] Mainstream a gender perspective into peace-promoting activities at all levels as well as humanitarian and peace-building policies, including through gender analysis and the encouragement of the participation of more female personnel at all levels, in particular at senior or high levels in field missions, and monitor and review such policies as appropriate, on the basis of equitable geographical distribution where applicable;", - "values": [ - "Gender", - "Humanitarian" - ] - }, - { - "text": "Urges all Member States to undertake a gender analysis of national labour laws and standards and to establish gender-sensitive policies and guidelines for employment practices, including for transnational corporations, with particular attention to export-processing zones, building, in this regard, on multilateral instruments, including the Convention on the Elimination of All Forms of Discrimination against Women and conventions of the International Labour Organization;", - "values": [ - "Gender" - ] - }, - { - "text": "5. Each Party shall adopt such legislative or other measures as may be necessary to establish repatriation programmes, involving relevant national or international institutions and non governmental organisations. These programmes aim at avoiding re-victimisation. Each Party should make its best effort to favour the reintegration of victims into the society of the State of return, including reintegration into the education system and the labour market, in particular through the acquisition and improvement of their professional skills. With regard to children, these programmes should include enjoyment of the right to education and measures to secure adequate care or receipt by the family or appropriate care structures.", - "values": [ - "Governance & Rule of Law", - "Violence" - ] - }, - { - "text": "Other challenges that the Goal framework did not adequately address included tackling climate change, natural disasters and external shocks such as the global financial climate, social exclusion, addressing demographic dynamics, ensuring peace and security and improving governance and the rule of law.", - "values": [ - "Environment" - ] - }, - { - "text": "The Special Rapporteur has also been informed of the initiative by the Ministry of Manpower of Singapore in September 2009 to increase the minimum medical insurance coverage of foreign workers. He also was informed of the adoption in 2003 of the Act on Foreign Workers' Employment in the Republic of Korea, which introduces the Employment Permit System for foreign workers. The System contains specific provisions for health insurance and coverage for the occupational health and safety of migrant workers in the manufacturing sector.", - "values": [ - "Governance & Rule of Law", - "Health" - ] - }, - { - "text": "Accountability at international, regional and national levels is paramount to ensuring that the right to food and its correlative obligations are being implemented. At the domestic level, it is imperative that constitutional principles and framework laws are established as a means of providing an appropriate institutional structure to ensure the progressive realization of the right to food. In some cases, however, even where States have taken the necessary steps to develop framework laws and policies in order to promote the right to food, a lack of political will has prevented implementation and enforcement of these laws.", - "values": [ - "Food & Nutrition", - "Governance & Rule of Law" - ] - }, - { - "text": "Affirming that indigenous women represent a wide variety of cultures and traditions with different needs and concerns and contribute to the diversity and richness of civilizations and cultures around the world,", - "values": [ - "Social & Cultural Rights" - ] - }, - { - "text": "[The Commission urges Governments, [...] to take the following actions [...]:] (bb) Develop and/or expand, and adequately resource, the provision of equitable, quality, accessible and affordable care and support services for all people needing care, including through community-based support systems, while ensuring that such services meet the needs of both caregivers and care recipients, bearing in mind the increased labour mobility of women and men, and, where applicable, kinship and extended family responsibilities, and the importance of adequate nutrition;", - "values": [ - "Equality & Inclusion", - "Health" - ] - }, - { - "text": "[Depending on the scale and expected impact of the decision and the size and capacity of the actor carrying out the assessment, the human rights impact assessment does not necessarily have to be very formal in nature. To facilitate the process, it could also be integrated with social or environmental impact assessments. While there is no agreed template for conducting a human rights impact assessment, some principal elements can be identified that should be taken into account:] Any assessment should be explicitly based on human rights, including the rights to water and sanitation;", - "values": [ - "Governance & Rule of Law", - "Water & Sanitation" - ] - }, - { - "text": "The continuing environmental degradation that affects all human lives has often a more direct impact on women. Women's health and their livelihood are threatened by pollution and toxic wastes, large-scale deforestation, desertification, drought and depletion of the soil and of coastal and marine resources, with a rising incidence of environmentally related health problems and even death reported among women and girls. Those most affected are rural and indigenous women, whose livelihood and daily subsistence depends directly on sustainable ecosystems.", - "values": [ - "Environment", - "Gender" - ] - }, - { - "text": "However, the negative income tax option would be problematic for 18- to 29-year-olds and for senior women. The Canadian examples demonstrate the potentially positive effects of negative income tax, but warn that a basic income model that replaces existing social support mechanisms could have seriously negative effects on the poor.", - "values": [ - "Economic Rights", - "Poverty" - ] - }, - { - "text": "In Central America and the Caribbean, women assume leadership roles in food distribution during emergencies, yet emergency decision-making processes after disasters often exclude women. Women's limited participation restricts their engagement in political decisions that impact their specific needs and vulnerabilities, and relief workers often view women as victims rather than potential agents of change, thus reinforcing gender inequalities.", - "values": [ - "Food & Nutrition", - "Humanitarian" - ] - }, - { - "text": "In the specific case of situational offenders, awareness-raising programmes that aim to reduce the recourse to prostitution can be helpful. Indeed, as underlined above, such offenders do not seek children per se and will end up exploiting them out of disregard or ignorance of their age. There have been several programmes developed in the United States targeting adults who engage in prostitution that aim to sensitize them about the plight of the individual they are exploiting and prevent the renewed solicitation of prostitutes. These programmes have generally been applied in the context of the criminalization of the purchase of sex and participation in them has been imposed or offered as an alternative to prosecution. In the case of the sexual exploitation of children, situational offenders must be prosecuted regardless of the laws on adult prostitution, as is provided by international law. The prevention programmes could nonetheless prove to be useful in order to preclude potential prostitution users from exploiting children in the first place.", - "values": [ - "Governance & Rule of Law", - "Violence" - ] - }, - { - "text": "Investing in wastewater management is closely tied to technological choices, although financing needs are not limited to infrastructure, but encompass management, monitoring, policy development, capacity-building, awareness-raising and enforcement, among others. Different estimates exist as to the sums required to retrofit the world's population with modern infrastructure and take care of decaying infrastructure in industrialized countries. Figures range from $75 billion to $904 billion per year over the next 25 to 42 years, but the reliability of those numbers is questionable. In any case, the sums needed are astronomical.", - "values": [ - "Governance & Rule of Law", - "Water & Sanitation" - ] - }, - { - "text": "As highlighted by those meetings, child victims of violence are still too often criminalized and not protected as children, including as a result of trafficking and sexual exploitation. Marginalized children, including migrant and asylum-seeking children, are often subject to physical, psychological and sexual violence, denied access to legal assistance and placed in detention as a substitute for care arrangements. Thousands of children are subjected to deprivation of liberty, frequently used as a first option rather than a measure of last resort; they risk torture, abuse and humiliating treatment, including when placed in pretrial detention, and endure violence as a form of control, discipline or punishment; in some countries, sentencing can include caning, flogging, stoning or amputation, as well as capital punishment and life imprisonment without possibility of release.", - "values": [ - "Governance & Rule of Law", - "Violence" - ] - }, - { - "text": "We resolve to adopt science, technology and innovation strategies as integral elements of our national sustainable development strategies to help to strengthen knowledge-sharing and collaboration. We will scale up investment in science, technology, engineering and mathematics education and enhance technical, vocational and tertiary education and training, ensuring equal access for women and girls and encouraging their participation therein. We will increase the number of scholarships available to students in developing countries to enrol in higher education. We will enhance cooperation to strengthen tertiary education systems and aim to increase access to online education in areas related to sustainable development.", - "values": [ - "Education" - ] - }, - { - "text": "Women's capacity for equal participation in all aspects of political and public life depends on a coherent set of social and economic policies directed at the family, workplace and marketplace. It also requires their capacity to engage in complex issues such as peace and security, state-building, and extreme poverty and all forms of social exclusion. Positive action is needed to empower women to produce knowledge and engage actively and creatively in these fields. As women act collectively to overcome the structural barriers they face, sustainable access of these groups or communities to adequate resources, including financial, is critical.", - "values": [ - "Equality & Inclusion", - "Governance & Rule of Law" - ] - }, - { - "text": "1. States Parties shall ensure that the right to health of women, including sexual and reproductive health is respected and promoted. This includes: c) the right to choose any method of contraception;", - "values": [ - "Health" - ] - }, - { - "text": "[Calls upon all States:] To ensure that services are provided for children to divert them from, and address the economic imperatives for, involvement in harmful, exploitative and abusive activity;", - "values": [ - "Economic Rights", - "Violence" - ] - }, - { - "text": "[The Special Rapporteur makes the following recommendations to States:] Implement awareness-raising programmes designed to change the societal perception of the sexual and reproductive health and rights of girls and young women with disabilities and end all forms of violence against them, including forced sterilization, forced abortion and forced contraception;", - "values": [ - "Health", - "Violence" - ] - }, - { - "text": "Remaining deeply concerned that, according to the most recent estimates of the Food and Agriculture Organization of the United Nations, the World Food Programme, the International Fund for Agricultural Development, the World Health Organization and the United Nations Children\u2019s Fund, the number of chronically undernourished people in the world has increased to 815\u00a0million, from 777\u00a0million in 2015, and that global nutrition challenges are increasingly complex as multiple forms of malnutrition, including stunting, wasting, underweight, micronutrient deficiencies, overweight and obesity, may coexist within the same country or household,", - "values": [ - "Food & Nutrition", - "Health" - ] - }, - { - "text": "Women with disabilities may be targeted for economic exploitation because of their impairment, which can in turn expose them to further violence. For example, women with physical or visible impairments can be trafficked into forced begging because it is believed they may have a stronger impact on public sympathy .", - "values": [ - "Equality & Inclusion", - "Violence" - ] - }, - { - "text": "Much has been learned through questions in household surveys about intrahousehold inequalities related to water collection. Much less is known about such inequalities concerning sanitation and hygiene, and about water, sanitation and hygiene-related household inequalities concerning age and disability. Given that not all households share resources and assets equally among their members and that some may be relatively more privileged than others, commanding more income and accessing greater consumption opportunities, it is imperative to accurately disaggregate intrahousehold data regarding household resources such as water and sanitation. There is evidence that intrahousehold inequality and poverty may disproportionately affect women, persons with disabilities, children and older persons. Targets and indicators should be phrased to require monitoring of intrahousehold inequalities. They should shine a powerful light on areas that need change and ensure that monitoring is in line with the human rights imperative to overcome inequalities wherever they occur.", - "values": [ - "Equality & Inclusion", - "Poverty", - "Water & Sanitation" - ] - }, - { - "text": "In general, disadvantages do not exist in isolation and there are numerous examples that demonstrate how poverty and gender discrimination contribute to exacerbating educational deprivation among indigenous peoples throughout the world. The UNESCO report identifies the following measures to overcome marginalization in education, all of which are valid options for addressing the problems encountered by indigenous peoples: setting national equity-based targets, which focus on marginalized sections of the population; gathering disaggregated data to identify marginalized groups and monitor their progress; identifying the drivers of marginalization for specific groups; adopting an integrated policy approach that addresses interlocking causes of disadvantage, within education and beyond, including by improving affordability and accessibility, strengthening the learning environment; and honouring and expanding entitlements and opportunities.", - "values": [ - "Education", - "Equality & Inclusion", - "Gender", - "Poverty" - ] - }, - { - "text": "[Actions to be taken by Governments, international organizations and the private sector:] Ensure that girls who work have access to education and vocational training, health, food, shelter and recreation on equal and favourable conditions, and are protected from economic exploitation, sexual harassment and abuse in the workplace;", - "values": [ - "Education", - "Violence" - ] - }, - { - "text": "Urges States to adopt appropriate measures to overcome negative impacts of the economic and financial crisis, including on women and girls, and integrate a gender perspective into these measures so that they equally benefit women and men;", - "values": [ - "Humanitarian" - ] - }, - { - "text": "In Pakistan, Dalits, who are mainly minority Hindus, are disproportionately affected by forced and bonded labour, particularly in the Sindh and Balochistan provinces.", - "values": [ - "Economic Rights", - "Violence" - ] - }, - { - "text": "2. Recognise the right of young people to be free from hunger and shall take individual or collective measures to: d) Facilitate access to credit to promote youth participation in agricultural and other sustainable livelihood projects;", - "values": [ - "Equality & Inclusion", - "Food & Nutrition" - ] - }, - { - "text": "Both boys and girls are found working in artisanal mining and quarrying, but, as they grow up, they are attributed different tasks.", - "values": [ - "Economic Rights", - "Equality & Inclusion" - ] - }, - { - "text": "Improve the security and safety of women on the journey to and from work and the security and safety of women and girls on the journey to and from educational facilities through gender-responsive rural development strategies and urban planning and infrastructure, including sustainable, safe, accessible and affordable public transportation systems, street lighting, and separate and adequate sanitation facilities, so as to facilitate women's access to places, products, services and economic opportunities;", - "values": [ - "Gender", - "Water & Sanitation" - ] - }, - { - "text": "The greatest implication of the IPR regime on women and their right to food relates to seed saving, a practice that is both predominantly controlled by women and a critical component of small-scale, subsistence agriculture. Studies show that up to 90% of planting materials used in smallholder agriculture are seeds and germ plasms that are produced, selected, and saved by women. Seeds and seed banks are important for addressing the crisis of agricultural biodiversity, for ensuring sustainable livelihood solutions for food security, and for empowering women with a sustainable livelihood.", - "values": [ - "Food & Nutrition", - "Gender" - ] - }, - { - "text": "[Recommendations to specific European Union institutions] [To FRONTEX] Pursuant to article 3 (1) (a) of Regulation (EU) No. 1168/2011, suspend or terminate operations in cases of persistent and serious violations.", - "values": [ - "Governance & Rule of Law" - ] - }, - { - "text": "[In particular, the Special Rapporteur encourages:] Civil society and social movements to form broad-based national networks to enable them to contribute more effectively to policymaking and monitoring, including through their representation in inclusive national right to food/food and nutrition security councils;", - "values": [ - "Food & Nutrition", - "Governance & Rule of Law" - ] - }, - { - "text": "Reports indicate that discriminatory practices against Dalits in humanitarian response include priority given to dominant castes in rescue operations; denial of or unequal access to relief camps, food, water, health services, shelter, housing and education; segregation in camp facilities; prohibition of use of the common sanitation facilities; segregation in commensal groups; lack of compensation or restitution of assets due to lack of documentation to claim entitlements related to land and property; and lack of participation of affected communities in decision-making regarding reconstruction.", - "values": [ - "Equality & Inclusion", - "Humanitarian" - ] - }, - { - "text": "There are a number of cases involving TNCs and right to food violations at the domestic level; however, in many of these cases, claims are either based on tort or criminal law rather than human rights legislation, or decisions focus on the involvement of the Government in the violation of rights, and not the company. The case against Nigeria submitted through the African Commission on Human Rights is an example thereof. Another example is the case brought to the Inter-American Commission on Human Rights on behalf of indigenous Guarani people living in the Oriente region in Ecuador against the oil exploitation activities by their own Government and Texaco.", - "values": [ - "Food & Nutrition", - "Governance & Rule of Law" - ] - }, - { - "text": "Deeply concerned that approximately 768 million people still lack access to improved water sources and that more than 2.5 billion people do not have access to improved sanitation as defined by the World Health Organization and the United Nations Children\u2019s Fund in their 2013 Joint Monitoring Programme update, and concerned that these figures do not fully capture the dimensions of water safety, the affordability of services, and the safe management of excreta and wastewater, as well as of equality and non-discrimination, and therefore underestimate the numbers of those without access to safe drinking water and sanitation, and alarmed that, every year, approximately 1.5 million children under five years of age die and 443 million school days are lost as a result of water- and sanitation-related diseases,", - "values": [ - "Equality & Inclusion", - "Water & Sanitation" - ] - }, - { - "text": "The right to food seeks to ensure access to adequate diets. Although access is necessary for individuals to be adequately nourished, it is not the only requirement. Obviously, food availability is also required (which necessitates appropriate functioning of markets to ensure that foodstuffs can travel from the producers to the markets and from food-surplus regions to food-deficit regions). Access to health-care services and sanitation, as well as adequate feeding practices, are also essential. In this regard, the right to food is also closely connected to the right to health and to what is described as adequate \"utilization\".", - "values": [ - "Equality & Inclusion", - "Food & Nutrition", - "Health", - "Water & Sanitation" - ] - }, - { - "text": "[The Commission urges Governments, at all levels [...] to take the following actions:] [Realizing women's and girls' full enjoyment of all human rights]: Adopt and implement specific and targeted measures recognizing that some women experience increased vulnerability and marginalization owing to multiple and intersecting forms of discrimination and inequalities;", - "values": [ - "Equality & Inclusion", - "Gender" - ] - }, - { - "text": "Eliminate the economic exploitation of child labour and protect young girls at work", - "values": [ - "Economic Rights", - "Violence" - ] - }, - { - "text": "[Urges all States to strengthen and intensify their efforts to realize progressively the equal enjoyment of the right to education by every girl, such as by taking the necessary and appropriate measures:] To provide every primary and secondary school with professionally trained and qualified teachers, including female teachers, capable of providing effective individualized support in an environment that is child friendly and that maximizes academic and social development consistent with the goal of full inclusion, and to develop an overall non-discriminatory, inclusive, accessible and culturally sensitive, safe, supportive and secure environment conducive to providing a quality education, including human rights education, to every girl, to allow the fullest development of her abilities and enable her to be a proactive actor in society;", - "values": [ - "Education", - "Equality & Inclusion" - ] - }, - { - "text": "[Recommendations to private sector organizations] Support the implementation of standard contract terms specifying job description, wages and labour conditions", - "values": [ - "Economic Rights" - ] - }, - { - "text": "In addition, specialized services such as probation, counselling or supervision should be established together with specialized facilities including for example day treatment centres and, where necessary, facilities for residential care and treatment of child offenders. In this juvenile justice system, an effective coordination of the activities of all these specialized units, services and facilities should be promoted in an ongoing manner.", - "values": [ - "Governance & Rule of Law", - "Health" - ] - }, - { - "text": "Such provisions are in clear violation of international human rights law. In that regard, the Human Rights Committee stated that \"the reference to 'sex' in articles 2, paragraph 1, and 26 [of the International Covenant on Civil and Political Rights] is to be taken as including sexual orientation\". Since then, in numerous concluding observations, the Committee has urged State parties to guarantee equal rights to all individuals, as established in the Covenant, regardless of their sexual orientation or gender identity.", - "values": [ - "Civil & Political Rights", - "Gender" - ] - }, - { - "text": "[In addition, the Special Rapporteur recommends that regulatory actors:] Provide clear and relevant information on their policies, procedures and activities and indicate how they contribute to the progressive realization of the human rights to water and sanitation;", - "values": [ - "Governance & Rule of Law", - "Water & Sanitation" - ] - }, - { - "text": "Underlining that the successful implementation of the Sustainable Development Goals will require the strengthening of a new, more equitable and sustainable national and international order, and the promotion and protection of all human rights and fundamental freedoms,", - "values": [ - "Equality & Inclusion" - ] - }, - { - "text": "Persons with disabilities frequently have critical needs in relation to the location of housing in order to ensure access to work, accessible transportation, support services and health-care facilities. Patterns of displacement of low-income communities to the peripheries of cities have disproportionately affected persons with disabilities. Such displacement and isolation are contrary to the right to housing and other human rights of persons with disabilities.", - "values": [ - "Equality & Inclusion" - ] - }, - { - "text": "The United Nations Declaration on the Rights of Indigenous Peoples, in various articles, promotes as one of its central themes the elimination of discrimination against indigenous peoples. In particular, article 15 provides that \"States shall take effective measures, in consultation and cooperation with the indigenous peoples concerned, to combat prejudice and eliminate discrimination and to promote tolerance, understanding and good relations among indigenous peoples and all other segments of society\". Shifting attitudes and entrenched perceptions is no easy task, but it can be assisted to a great extent by increasing indigenous peoples' participation in decision-making, through widespread education and awareness-raising programmes and, perhaps obviously, by governments themselves demonstrating a commitment to the implementation of indigenous peoples' rights. The Special Rapporteur notes that the United Nations system can contribute to these efforts.", - "values": [ - "Civil & Political Rights", - "Education", - "Equality & Inclusion", - "Governance & Rule of Law" - ] - }, - { - "text": "Requests the United Nations system, Member States and other stakeholders to continue to promote the inclusion of a gender perspective in their activities, international negotiation processes and consultations as they relate to natural disasters, especially in the elaboration of the post-2015 development agenda", - "values": [ - "Environment", - "Gender" - ] - }, - { - "text": "Underscoring that often shame, stigma, lack of information and awareness, fear of reprisals and negative economic consequences, such as, inter alia, loss of livelihood or reduced household income, prevent many women and, as applicable, girls from reporting or acting as witnesses and from seeking redress and justice in cases of sexual harassment in the workplace,", - "values": [ - "Economic Rights", - "Gender" - ] - }, - { - "text": "Attention is being paid also to the use of schools as a platform to increase the preparation of learners and education staff for disasters and their aftermath. Several countries have included disaster risk reduction elements in their school curriculum, others have considered making disaster risk reduction and climate change adaptation a national education priority.", - "values": [ - "Education", - "Environment" - ] - }, - { - "text": "Noting with concern also that poverty and insecurity are among the root causes of child, early and forced marriage and that child, early and forced marriage remains common in rural areas and among the poorest communities, and recognizing that the immediate alleviation and eventual eradication of extreme poverty must remain a high priority for the international community,", - "values": [ - "Harmful Practices", - "Poverty" - ] - }, - { - "text": "[The Committee recommends that States parties:] Prevent, investigate and punish all forms of gender-based violence, in particular sexual violence perpetrated by State and non-State actors, and implement a policy of zero tolerance;", - "values": [ - "Gender", - "Violence" - ] - }, - { - "text": "[The right to secondary education] [P]rogressive introduction of free education means that while States must prioritize the provision of free primary education, they also have an obligation to take concrete steps towards achieving free secondary and higher education. For the Committee's general observations on the meaning of the word \"free\", see paragraph 7 of General Comment 11 on article 14.", - "values": [ - "Education" - ] - }, - { - "text": "There is a clear link between non-retrogression and sustainability. Acts or omissions that result in retrogressions in the progressive realization of the rights to water and sanitation jeopardize sustainability. Unless the criteria outlined above have been satisfied during the States' decision-making processes, it is unlikely that such processes will result in the sustainable provision of water and sanitation. Rather, retrogressive steps will perpetuate unsustainable practices and create a constant threat to the full realization of economic, social and cultural rights in general and the rights to water and sanitation in particular.", - "values": [ - "Economic Rights", - "Social & Cultural Rights", - "Water & Sanitation" - ] - }, - { - "text": "[In line with the above, the Special Rapporteur recommends that States:] Go beyond enacting formal provisions and implement targeted policies and budgets, among other measures, in order to tackle structural gender inequalities for the enjoyment of the rights to water and sanitation;", - "values": [ - "Equality & Inclusion", - "Gender", - "Governance & Rule of Law", - "Water & Sanitation" - ] - }, - { - "text": "[The Commission urges governments, at all levels[...] to take the following actions:] [Addressing structural and underlying causes and risk factors so as to prevent violence against women and girls]: Improve the safety of girls at, and on the way to and from, school, including by establishing a safe and violence-free environment by improving infrastructure such as transportation and providing separate and adequate sanitation facilities, improved lighting, playgrounds and safe environments; adopting national policies to prohibit, prevent and address violence against children, especially girls, including sexual harassment and bullying and other forms of violence, through measures such as conducting violence prevention activities in schools and communities, and establishing and enforcing penalties for violence against girls;", - "values": [ - "Education", - "Violence" - ] - }, - { - "text": "The Commission expresses its concern about the continuing significant gender gaps in labour force participation and leadership, wages, income, pensions and social protection, as well as access to economic and productive resources. It also expresses its concern about the structural barriers to women's economic empowerment, including discriminatory laws and policies, gender stereotypes and negative social norms. It is further concerned about unequal working conditions, limited opportunities for career advancement and the growing high incidence of informal and non-standard forms of employment in many regions.", - "values": [ - "Economic Rights", - "Social & Cultural Rights" - ] - }, - { - "text": "With a view to ensuring the effective exercise of the right of children and young persons to protection, the Parties undertake: 4. to provide that the working hours of persons under 18 years of age shall be limited in accordance with the needs of their development, and particularly with their need for vocational training;", - "values": [ - "Economic Rights", - "Education" - ] - }, - { - "text": "It has also been reported that indigenous peoples in the Democratic Republic of the Congo are subjected to practices similar to slavery, including debt bondage, by the Bantu majority. Indigenous peoples are often trapped in debt bondage by Bantu \"masters\" who often sell them goods such as clothes, food and medicine at inflated prices and add exorbitant rates of interest if the goods are not paid for on time and who demand their work in return. It is also a common practice for the Bantu to create new debts in order to sustain the exploitation of bonded labourers. For example, it has been reported that they provide food to indigenous children and then add inflated costs to the debts of parents.", - "values": [ - "Economic Rights", - "Violence" - ] - }, - { - "text": "Urged all States parties to the 1951 U.N. Convention and/or the 1967 Protocol which have not yet done so to take appropriate legislative or administrative measures to implement effectively the provisions of these instruments concerning the issue of Convention Travel Documents (Article 28, Schedule, Annex), including the giving of clear instructions to national authorities competent to issue, renew and extend travel documents and grant visas to holders of Convention Travel Documents;", - "values": [ - "Governance & Rule of Law", - "Movement" - ] - }, - { - "text": "Calls upon Governments to integrate HIV prevention, voluntary counselling and voluntary testing of HIV into other health services, including sexual and reproductive health, family planning, maternity and tuberculosis services, as well as the provision of services for the prevention and treatment of sexually transmitted infections in the mother-to-child transmission services for pregnant women infected by HIV;", - "values": [ - "Health" - ] - }, - { - "text": "Finally, international assistance often contributes to financing with external transfers. Donor policies must integrate the human rights to water and to sanitation and support national priorities regarding water and sanitation, as well as targets to reduce disparities in access. For instance, the Spanish Agency for International Development Cooperation has prioritized water and sanitation, launching a Water and Sanitation Fund of one billion Euros in 2009, with the specific purpose of contributing to the realization of the human right to water and improving policies and planning processes. Generally, international assistance contributes to financing at the national level (which can then be transferred to the local level), but in some countries local governments are also authorized to receive international grants and loans directly. While this may open up new opportunities, it may also reinforce the risk of disparity between municipalities. It also increases the need for capacity-strengthening at the local level in dealing with public and private funding institutions.", - "values": [ - "Governance & Rule of Law", - "Water & Sanitation" - ] - }, - { - "text": "We stress the importance of stronger interlinkages among disaster risk reduction, recovery and long-term development planning, and call for more coordinated and comprehensive strategies that integrate disaster risk reduction and climate change adaptation considerations into public and private investment, decision-making and the planning of humanitarian and development actions, in order to reduce risk, increase resilience and provide a smoother transition between relief, recovery and development. In this regard, we recognize the need to integrate a gender perspective into the design and implementation of all phases of disaster risk management.", - "values": [ - "Gender", - "Humanitarian" - ] - }, - { - "text": "With a view to ensuring the effective exercise of the right to protection against poverty and social exclusion, the Parties undertake:\nb. to review these measures with a view to their adaptation if necessary.", - "values": [ - "Governance & Rule of Law", - "Poverty", - "Social & Cultural Rights" - ] - }, - { - "text": "[With a view to ensuring their obligation to realize the right to health of vulnerable groups such as children, women and low-income groups, the Special Rapporteur recommends that States take the following steps:] Ensure that social welfare schemes for low-income groups make relevant information available and provide access to healthier food options to eliminate \"food deserts\".", - "values": [ - "Equality & Inclusion", - "Food & Nutrition", - "Health" - ] - }, - { - "text": "Acknowledges the need for States to address the problem of misuse or abuse of refugee status determination procedures, both at the national level and through international cooperation, and urges States to ensure that national law and administrative practices, including migration control measures, are compatible with the principles and standards of applicable refugee and human rights law, as set out in relevant international instruments;", - "values": [ - "Governance & Rule of Law", - "Movement" - ] - }, - { - "text": "Recognizing the importance to indigenous peoples of revitalizing, using, developing and transmitting their histories, languages, oral traditions, philosophies, writing systems and literatures to future generations, and designating and retaining their own names for communities, places and persons,", - "values": [ - "Social & Cultural Rights" - ] - }, - { - "text": "Calls upon States to continue and intensify efforts to provide information and raise awareness about the harmful effects of female genital mutilation and about the continuing increase at the national and international levels in support for the elimination of the practice, and to organize activities within this framework during the International Day of Zero Tolerance for Female Genital Mutilation with the involvement of religious and traditional authorities, which make the movement to end female genital mutilation more visible;", - "values": [ - "Education", - "Harmful Practices" - ] - }, - { - "text": "Article 2 expresses the obligation of States parties to implement the Convention in a general way. Its substantive requirements provide the framework for the implementation of the specific obligations identified in article 2, subparagraphs (a)-(g), and all other substantive articles of the Convention.", - "values": [ - "Governance & Rule of Law" - ] - }, - { - "text": "Substandard detention conditions may potentially amount to inhuman or degrading treatment, and may increase the risk of further violations of economic, social and cultural rights, including the right to health, food, drinking water and sanitation.", - "values": [ - "Economic Rights", - "Food & Nutrition", - "Health", - "Social & Cultural Rights", - "Violence", - "Water & Sanitation" - ] - }, - { - "text": "Bearing in mind that, although fundamental economic, social and cultural rights have been recognized in earlier international instruments of both world and regional scope, it is essential that those rights be reaffirmed, developed, perfected and protected in order to consolidate in America, on the basis of full respect for the rights of the individual, the democratic representative form of government as well as the right of its peoples to development, self-determination, and the free disposal of their wealth and natural resources; and", - "values": [ - "Governance & Rule of Law", - "Social & Cultural Rights" - ] - }, - { - "text": "[Recommends that the reception of asylum-seekers should be guided by the following general considerations:] For the purpose, inter alia, of protection against refoulement, as well as access to reception arrangements, both male and female asylum-seekers should be registered and be issued appropriate documentation reflecting their status as asylum-seeker, which should remain valid until the final decision is taken on the asylum application;", - "values": [ - "Civil & Political Rights", - "Movement" - ] - }, - { - "text": "In addition to encouraging Governments to adopt national plans to scale up nutrition in their various sectoral policies, SUN includes the establishment of partnerships linking business, civil society and Government to foster scaling up nutrition through nutrition-sensitive interventions along the value chain at the country level. Private-sector interventions include the production of fortified food products, the promotion of nutritionally healthy behaviour, the shaping of work environments allowing women to ensure good nutrition for themselves and their children, ensuring that lower-income groups can access nutritionally valuable products, and building local capacity through the transfer of knowledge and technology. Some of these partnerships are supported by the Global Alliance for Improved Nutrition (GAIN). A public-private partnership, GAIN was launched at the 2002 special session of the General Assembly on children. It has since established links with 600 companies across 36 large projects in more than 25 countries to improve access to missing micronutrients in diets. According to GAIN promoters, it reaches nearly 400 million people with nutritionally enhanced food products.", - "values": [ - "Food & Nutrition", - "Governance & Rule of Law" - ] - }, - { - "text": "1. Everyone shall have the right to freedom of thought, conscience and religion. This right shall include freedom to have or to adopt a religion or belief of his choice, and freedom, either individually or in community with others and in public or private, to manifest his religion or belief in worship, observance, practice and teaching.", - "values": [ - "Civil & Political Rights", - "Social & Cultural Rights" - ] - }, - { - "text": "The Committee on the Rights of the Child has called upon States to establish copyright exceptions that benefit children with visual or other impairments, reinforcing the obligation set out in article 30 of the Convention on the Rights of Persons with Disabilities for States to ensure that laws protecting intellectual property rights do not constitute an unreasonable or discriminatory barrier to access by persons with disabilities to cultural materials.", - "values": [ - "Equality & Inclusion" - ] - }, - { - "text": "Reaffirms the need for States to cooperate with a view to promoting, encouraging and strengthening universal respect for and observance of all human rights and fundamental freedoms for all, without any distinction as to race, sex, language or religion;", - "values": [ - "Equality & Inclusion", - "Governance & Rule of Law" - ] - }, - { - "text": "The Special Representative is particularly pleased to note the efforts of the Office of the United Nations High Commissioner for Refugees (UNHCR) to increase access among refugees and internally displaced persons to education, even in the emergency phases of its operations. The UNHCR focus on access to education as a protection tool to prevent forced recruitment, sexual violence, child labour and early or forced marriages is a step in the right direction. With 51 million persons under its mandate, UNHCR has gone a long way, alongside host authorities, to ensure that education brings a brighter future for young people in difficult circumstances.", - "values": [ - "Education", - "Humanitarian" - ] - }, - { - "text": "Place enhanced emphasis on quality education, including communications and technology education, where available, for girls, including catch-up and literacy education for those who did not receive formal education, special initiatives for keeping girls in school through post-primary education, including those who are already married or pregnant, to promote access to skills and entrepreneurship training for young women and to tackle gender stereotypes, in order to ensure that young women entering the labour market have opportunities to obtain full and productive employment, equitable compensation and decent work;", - "values": [ - "Education", - "Gender" - ] - }, - { - "text": "[The Commission [...] urges Governments, at all levels [...] to take the following actions:] [Strengthening normative, legal and policy frameworks]: Adopt, review and ensure the accelerated and effective implementation of laws that criminalize violence against women and girls, as well as comprehensive, multidisciplinary and gender-sensitive preventive, protective and prosecutorial measures and services to eliminate and prevent all forms of violence against all women and girls, in public and private spaces, as well as harmful practices;", - "values": [ - "Governance & Rule of Law", - "Harmful Practices" - ] - }, - { - "text": "In the last several years, the climate change debate, traditionally centred on scientific and economic factors, has gradually begun to encompass the social and human rights dimensions. This has led to a growing body of studies and reports exploring the multidisciplinary and human rights facets of the challenges posed by the effects of climate change.", - "values": [ - "Environment" - ] - }, - { - "text": "The payment of dowries and bride prices, which varies among practising communities, may increase the vulnerability of women and girls to violence and to other harmful practices. The husband or his family members may engage in acts of physical or psychological violence, including murder, burning and acid attacks, for failure to fulfil expectations regarding the payment of a dowry or its size. In some cases, families will agree to the temporary \"marriage\" of their daughter in exchange for financial gains, also referred to as a contractual marriage, which is a form of trafficking in human beings. States parties to the Optional Protocol to the Convention on the Rights of the Child on the sale of children, child prostitution and child pornography have explicit obligations with regard to child and/or forced marriages that include dowry payments or bride prices because they could constitute a sale of children as defined in article 2 (a) of the Protocol. The Committee on the Elimination of Discrimination against Women has repeatedly stressed that allowing marriage to be arranged by such payment or preferment violates the right to freely choose a spouse and has in its general recommendation No. 29 outlined that such practice should not be required for a marriage to be valid and that such agreements should not be recognized by a State party as enforceable.", - "values": [ - "Harmful Practices", - "Violence" - ] - }, - { - "text": "Noting that the prevention and suppression of terrorism is a public interest of great importance, while reaffirming that States must ensure that any measures taken to combat terrorism are in compliance with their obligations under international law, in particular international human rights law, international refugee law and international humanitarian law,", - "values": [ - "Governance & Rule of Law" - ] - }, - { - "text": "[The Special Rapporteur recommends that the United Nations:] Strengthen its capacity to address specific protection and assistance needs of internally displaced persons, linked to durable solutions, at the onset of displacement. This requires adopting a new approach to internal displacement, through joint development-humanitarian assessments, analysis and multi-year planning and programming and flexible additional multi-year financing to build self-reliance, resilience and the integration of internally displaced persons into local area-based development approaches;", - "values": [ - "Governance & Rule of Law", - "Humanitarian" - ] - }, - { - "text": "These trends have been characterized by low wages, little or no labour standards protection, poor working conditions, particularly with regard to women's occupational health and safety, low skill levels, and a lack of job security and social security, in both the formal and informal sectors. Women's unemployment is a serious and increasing problem in many countries and sectors. Young workers in the informal and rural sectors and migrant female workers remain the least protected by labour and immigration laws. Women, particularly those who are heads of households with young children, are limited in their employment opportunities for reasons that include inflexible working conditions and inadequate sharing, by men and by society, of family responsibilities.", - "values": [ - "Economic Rights", - "Gender", - "Health" - ] - }, - { - "text": "4. Without prejudice to other articles in this Part, where it is necessary for the successful execution of a request which can be executed without any compulsory measures, including specifically the interview of or taking evidence from a person on a voluntary basis, including doing so without the presence of the authorities of the requested State Party if it is essential for the request to be executed, and the examination without modification of a public site or other public place, the Prosecutor may execute such request directly on the territory of a State as follows: (a) When the State Party requested is a State on the territory of which the crime is alleged to have been committed, and there has been a determination of admissibility pursuant to article 18 or 19, the Prosecutor may directly execute such request following all possible consultations with the requested State Party;", - "values": [ - "Civil & Political Rights" - ] - }, - { - "text": "[Non-State actors should:] Familiarize themselves with the Guiding Principles on Business and Human Rights, and with human rights impact assessment of business operations;", - "values": [ - "Governance & Rule of Law" - ] - }, - { - "text": "Convinced that an independent and impartial judiciary, an independent legal profession and the integrity of the judicial system are essential prerequisites for the protection of human rights, including the right to be free from torture and other cruel, inhuman or degrading treatment or punishment, and for the application of the rule of law and for ensuring a fair trial and that there is no discrimination in the administration of justice,", - "values": [ - "Civil & Political Rights", - "Governance & Rule of Law" - ] - }, - { - "text": "The humanistic mission of education can be strengthened and supported through laws and policies. State policy in the sphere of education should be based on the humanistic nature of education, giving primacy to common human values and the public character of education, as is done in France and Greece, among other countries.", - "values": [ - "Education", - "Governance & Rule of Law" - ] - }, - { - "text": "Article 3, paragraph 1, of the Convention places an obligation on public and private social welfare institutions, courts of law, administrative authorities and legislative bodies to ensure that the best interests of the child are assessed and taken as a primary consideration in all actions affecting children. This principle must be observed in all health-related decisions concerning individual children or children as a group. Individual children's best interests should be based on their physical, emotional, social and educational needs, age, sex, relationship with parents and caregivers, and their family and social background, and after having heard their views according to article 12 of the Convention.", - "values": [ - "Equality & Inclusion", - "Governance & Rule of Law", - "Health" - ] - }, - { - "text": "2. States Parties shall commit themselves to modify the social and cultural patterns of conduct of women and men through public education, information, education and communication strategies, with a view to achieving the elimination of harmful cultural and traditional practices and all other practices which are based on the idea of the inferiority or the superiority of either of the sexes, or on stereotyped roles for women and men.", - "values": [ - "Education", - "Social & Cultural Rights" - ] - }, - { - "text": "Reminds States of their obligation to register all births without discrimination of any kind, and also reminds States that birth registration should take place immediately after birth, in the country where children are born, including the children of migrants, non-nationals, asylum seekers, refugees and stateless persons, in accordance with their national law and their obligations under the relevant international instruments, and that late birth registration should be limited to those cases that would otherwise result in a lack of registration;", - "values": [ - "Civil & Political Rights", - "Movement" - ] - }, - { - "text": "Given the fragility of some States affected by emergencies, and the central role of international assistance and cooperation in that context, it is important to recall that the obligation to provide international assistance is established in human rights law. It is also reflected in numerous international declarations, including the Dakar Framework of Action on Education for All, adopted by the World Education Forum in 2000. Moreover, as noted above, States requiring assistance are also obliged to seek and manage external assistance in accordance with human rights principles.", - "values": [ - "Governance & Rule of Law", - "Humanitarian" - ] - }, - { - "text": "However, the downside of delivering on what is measured is that there are fewer incentives to work on the areas which are not required for reporting purposes. As the Millennium Development Goals provide no comprehensive framework for development and remain blind to other critical human rights issues, significant issues are sidelined. Many targets focus on achieving a certain increase or decrease - such as halving the population without access to water and sanitation - with little incentive for Governments to go beyond that target.", - "values": [ - "Governance & Rule of Law" - ] - }, - { - "text": "Recognize the significant contribution and leadership of women in migrant communities and take appropriate steps to ensure their full, equal and meaningful participation in the development of local solutions and opportunities, and also recognize the importance of protecting labour rights and a safe environment for migrant workers and those in precarious employment, protecting women migrant workers in all sectors and promoting labour mobility, including circular migration, in line with the New York Declaration for Refugees and Migrants;", - "values": [ - "Economic Rights", - "Movement" - ] - }, - { - "text": "Recognizing that child labour is to a great extent caused by poverty and that the long-term solution lies in sustained economic growth leading to social progress, in particular poverty alleviation and universal education, and", - "values": [ - "Economic Rights", - "Poverty" - ] - }, - { - "text": "Encourages States to increase investments and international cooperation to allow all girls to complete free, equitable, inclusive and quality early childhood, primary and secondary education, including by scaling-up and strengthening initiatives, such as the Global Partnership for Education, and to explore additional innovative mechanisms based on models combining public and private resources, while ensuring that all education providers give due respect to the right to education;", - "values": [ - "Education", - "Governance & Rule of Law" - ] - }, - { - "text": "[United Nations organizations and agencies should:] Monitor, document and respond to the cases of alleged acts of reprisal against environmental human rights defenders for cooperating with international financial institutions, United Nations agencies and United Nations human rights mechanisms.", - "values": [ - "Environment", - "Governance & Rule of Law" - ] - }, - { - "text": "Women are disproportionately represented in the \"periphery\" part of the workforce that coexists with the \"core\" segment of permanently employed farmworkers. This \"periphery\" segment of the workforce is made of unskilled workers, often without a formal contract of employment, and their work is often seasonal or temporary (or classified as such even when it is in fact continuous). The main reason why women are disproportionately represented in this segment is because they have fewer alternative options and are thus 'easier' to exploit.", - "values": [ - "Economic Rights", - "Violence" - ] - }, - { - "text": "Commending UN-Women for the continued support provided to intergovernmental processes, including on the linkages between sustainable development, financing for development and the achievement of gender equality and the empowerment of women and girls,", - "values": [ - "Equality & Inclusion" - ] - }, - { - "text": "Only medical staff shall be present during medical examinations unless the doctor is of the view that exceptional circumstances exist or the doctor requests a member of the prison staff to be present for security reasons or the woman prisoner specifically requests the presence of a member of staff as indicated in rule 10, paragraph 2, above.", - "values": [ - "Health" - ] - }, - { - "text": "In many cases, the most egregious violations of the rights to freedom of peaceful assembly and of association in the context of natural resource exploitation are committed against groups and individuals inhabiting regions far from centres of power, who are often at risk or already marginalized within society. They may lack access to information or the means of effectively advocating for their concerns, or they may be confronted with authorities are that are unable or unwilling to address their grievances. The ability to freely associate and to peacefully assemble are indispensable in this regard. Some of the categories of persons that require special attention in the context of the rights to freedom of peaceful assembly and of association and of natural resource exploitation are women (including women human rights defenders), Afro-descendants, indigenous peoples, peasant farmers, fisher folk and forest dwellers.", - "values": [ - "Civil & Political Rights", - "Environment" - ] - }, - { - "text": "Recognizing that women's poverty and lack of empowerment, as well as their marginalization resulting from their exclusion from social policies and from the benefits of sustainable development, can place them at increased risk of violence,", - "values": [ - "Poverty", - "Social & Cultural Rights" - ] - }, - { - "text": "Takes note with appreciation of the report of the Special Rapporteur on the human rights of migrants (E/CN.4/2004/76 and Add.1 4), which focuses mainly on an analysis of the situation of women migrant domestic workers but devotes a section to trafficking, especially of women;", - "values": [ - "Governance & Rule of Law", - "Movement" - ] - }, - { - "text": "[The Committee recommends that States parties implement the following preventive measures:] Adopt and implement effective measures to encourage the media to eliminate discrimination against women, including the harmful and stereotypical portrayal of women or specific groups of women, such as women human rights defenders, from their activities, practices and output, including in advertising, online and in other digital environments. Measures should include the following: Guidelines for the appropriate coverage by the media of cases of gender-based violence against women;", - "values": [ - "Civil & Political Rights", - "Equality & Inclusion", - "Violence" - ] - }, - { - "text": "Recognizes the right to education on the basis of equal opportunity and non-discrimination by making primary education compulsory, inclusive and available free to all children, ensuring that all children have equal access to education of good quality, making secondary education generally available and accessible to all, in particular through the progressive introduction of free education, bearing in mind that special measures to ensure equal access, including affirmative action, contribute to achieving equal opportunity and combating exclusion, and ensuring school attendance, in particular for girls, children with disabilities and children living in poverty;", - "values": [ - "Education", - "Equality & Inclusion" - ] - }, - { - "text": "The right to adequate housing, food, water, sanitation and other elements of the right to an adequate standard of living are firmly enshrined in international human rights law. A host of institutional and structural obstacles prevent many women in the world from enjoying these rights, thereby fostering inequality. Violations of such rights can exacerbate violence against women, sometimes with deadly effects.", - "values": [ - "Equality & Inclusion", - "Violence", - "Water & Sanitation" - ] - }, - { - "text": "The Committee emphasizes that all adolescents have the right to be protected from economic exploitation and the worst forms of child labour, and urges States to implement the provisions of article 32 (2) of the Convention, as well as the International Labour Organization Minimum Age Convention, 1973 (No. 138), and the Worst Forms of Child Labour Convention, 1999 (No. 182).", - "values": [ - "Economic Rights", - "Violence" - ] - }, - { - "text": "The legal protection of the right to education has its foundation in national, regional and international legislation and standards, and the State obligations that these laws lay down. Government policies and provisions of education \u2013 both public and private \u2013 are subject to review and determination by judicial and quasi-judicial bodies. The role of adjudication is to ensure that the right to education as an internationally recognized right as established by numerous treaties and legislation is respected, protected and fulfilled. Its most basic tenets, free and compulsory primary education for all, the progressive realization of secondary and tertiary education, and the immediate non-discrimination in their application, are universally recognized.", - "values": [ - "Education", - "Equality & Inclusion", - "Governance & Rule of Law" - ] - }, - { - "text": "[Urges Governments and, where appropriate, United Nations entities, civil society, including non-governmental organizations and the private sector, and other stakeholders:] To make the utmost efforts to secure equal access to disaster relief assistance for women, girls, boys and men, and provide disaster response and support for recovery and development that is fully responsive to the needs and respects the views and enjoyment of all human rights of women and girls, with special attention paid to the needs of pregnant and lactating women, adolescent girls, families with infants or older persons, single-headed households and persons with disabilities and widows, such as in the context of the provision of food and supplies, water and sanitation, the set-up and management of shelter, safety and security, and the provision of physical, psychological and emergency health care, including for sexual and reproductive health, and counselling services for survivors of gender-based violence, while encouraging the involvement of women professionals and gender balance among field workers;", - "values": [ - "Equality & Inclusion", - "Gender", - "Humanitarian" - ] - }, - { - "text": "Recognizing that information and communications technology can be a vital tool for training and empowering women,", - "values": [ - "Equality & Inclusion", - "Gender" - ] - }, - { - "text": "4. Anyone who is deprived of his liberty by arrest or detention shall be entitled to take proceedings before a court, in order that that court may decide without delay on the lawfulness of his detention and order his release if the detention is not lawful.", - "values": [ - "Civil & Political Rights", - "Governance & Rule of Law" - ] - }, - { - "text": "Stresses that, as regards the return to a third country of an asylum-seeker whose claim has yet to be determined from the territory of the country where the claim has been submitted, including pursuant to bilateral or multilateral readmission agreements, it should be established that the third country will treat the asylum- seeker (asylum-seekers) in accordance with accepted international standards, will ensure effective protection against refoulement, and will provide the asylum-seeker (asylum-seekers) with the possibility to seek and enjoy asylum;", - "values": [ - "Governance & Rule of Law", - "Movement" - ] - }, - { - "text": "Although CST tends to occur more commonly in developing countries, this phenomenon can occur anywhere in the world and no country or tourism destination is exempt. Between the supply generated by low income countries and the demand from industrialized countries, the choice of the destination depends on languages and connections, but also preferences and tastes. While Western Europeans would tend to travel to Eastern Europe to exploit children, 18 out of 50 (36 per cent) American CST cases between 2003 and 2006 involved crimes committed in Mexico. According to ECPAT, as a result of the closer contact with Western European countries and the increase in tourism, Estonia has had to contend with the major problem of human trafficking to the West and the growing issue of sexual exploitation of children in tourism. Child sex tourists are particularly attracted to places where their activities will go unnoticed and their motives unsuspected, like countries or communities in crisis, and where the risk is small.", - "values": [ - "Economic Rights", - "Violence" - ] - }, - { - "text": "Expressing deep concern over the disproportionate negative impact on women of the multiple interrelated and mutually exacerbating current global crises, in particular the world financial and economic crisis, the volatile energy prices, the food crisis and the challenges posed by climate change,", - "values": [ - "Economic Rights", - "Environment", - "Food & Nutrition", - "Humanitarian" - ] - }, - { - "text": "Recalling the relevant international labour standards, including, in particular, the Freedom of Association and Protection of the Right to Organise Convention, 1948 (No. 87), the Right to Organise and Collective Bargaining Convention, 1949 (No. 98), the Equal Remuneration Convention, 1951 (No. 100), the Discrimination (Employment and Occupation) Convention, 1958 (No. 111), the Minimum Age Convention, 1973 (No. 138), the Worst Forms of Child Labour Convention, 1999 (No. 182), the Migration for Employment Convention (Revised), 1949 (No. 97), the Migrant Workers (Supplementary Provisions) Convention, 1975 (No. 143), the Domestic Workers Convention, 2011 (No. 189), the Private Employment Agencies Convention, 1997 (No. 181), the Labour Inspection Convention, 1947 (No. 81), the Labour Inspection (Agriculture) Convention, 1969 (No. 129), as well as the ILO Declaration on Fundamental Principles and Rights at Work (1998), and the ILO Declaration on Social Justice for a Fair Globalization (2008), and", - "values": [ - "Economic Rights", - "Governance & Rule of Law" - ] - }, - { - "text": "[The Commission urges Governments, at all levels [...] to take the following actions:] [Realizing women's and girls' full enjoyment of all human rights]: Encourage States and relevant civil society groups to empower women and girls by supporting programmes that facilitate participation through public and private investment in agriculture aiming to achieve food security and nutrition;", - "values": [ - "Food & Nutrition", - "Gender" - ] - }, - { - "text": "With a view to ensuring the effective exercise of the right to protection against poverty and social exclusion, the Parties undertake: a. to take measures within the framework of an overall and co-ordinated approach to promote the effective access of persons who live or risk living in a situation of social exclusion or poverty, as well as their families, to, in particular, employment, housing, training, education, culture and social and medical assistance;", - "values": [ - "Poverty", - "Social & Cultural Rights" - ] - }, - { - "text": "Measures to ensure access to adequate housing for migrants require effective universal housing policies, in addition to specific policy measures addressed to migrants. Targeted policies are necessary to make up for deficiencies in the market and the public provision of housing and to ensure equal access where embedded discriminatory practices prevent this from happening. Effective targeted policies require a reliable assessment of the housing needs of migrants, conducted in consultation with them. Matching the elaboration of universal policies inclusive of migrants with the adoption of special plans to address their particular housing challenges is thus recommended to help foster the real integration of migrants into the community and to promote the enjoyment of their right to adequate housing.", - "values": [ - "Equality & Inclusion", - "Movement" - ] - }, - { - "text": "[The Special Rapporteur calls upon the United Nations, other multilateral organizations and donors specifically:] To consider the concept of \"sectoral equity\" as critical to the enjoyment of the rights to freedom of peaceful assembly and of association, and enshrine that perspective in instruments designed to promote and protect fundamental rights;", - "values": [ - "Civil & Political Rights" - ] - }, - { - "text": "[Millions of people are being newly internally displaced every year as a result of conflict and violence. Disasters displace even more people and the effects of climate change will exacerbate this trend. Development-induced displacement is also on the rise. With international attention focused on camps of internally displaced persons, many other displaced remain invisible, because they stay with host families, are dispersed in urban areas or their existence is officially denied. Some vulnerable groups within the displaced population are also regularly overlooked. Host families and communities are often heavily affected by displacement, but they are often neglected. The Representative urges member States and humanitarian and development actors to expand their scope of action and recommends that they:] Increase efforts to protect and assist the urban displaced, including through development efforts and measures to assist host families as well as displacement-affected communities generally;", - "values": [ - "Humanitarian", - "Movement" - ] - }, - { - "text": "Unscrupulous recruiters take significant resources away from migrants, through the charging of recruitment fees and broader economic exploitation, thus effectively disempowering the poorest within the global economic system. It is not uncommon for these fees to fund corrupt business practices among unethical recruitment agencies. Reports have suggested that unethical recruiters have used money gained from recruitment fees on illegal activities such as prostitution, drugs and the funding of the electoral campaigns of specific political parties. Therefore, the resources that are being diverted away from migrants and global poverty eradication, is being channelled into illicit activities.", - "values": [ - "Poverty", - "Violence" - ] - }, - { - "text": "Concerned by the challenges faced today, including those derived from the ongoing impact of the financial and economic crisis, the global food crisis, volatile food prices and other ongoing concerns over food security, epidemics and large movements of refugees and migrants, as well as the increasing challenges posed by climate change and the loss of biodiversity, and by the resulting increase in the number of people living in extreme poverty, and their negative effect on the capacity of all States, especially developing countries, to fight extreme poverty,", - "values": [ - "Environment", - "Food & Nutrition", - "Movement", - "Poverty" - ] - }, - { - "text": "Just as indigenous peoples have the right to pursue their own initiatives for resource extraction, as part of their right to self-determination and to set their own strategies for development, they have the right to decline to pursue such initiatives in favour of other initiatives for their sustainable development, and they should be supported in such other pursuits as well.", - "values": [ - "Economic Rights", - "Environment" - ] - }, - { - "text": "3. The provisions of article 121, paragraphs 3 to 7, shall apply to the adoption and entry into force of any amendment to the Statute considered at a Review Conference.", - "values": [ - "Governance & Rule of Law" - ] - }, - { - "text": "Urges States to ensure civil registration and emphasizes that every child shall be registered immediately after birth without discrimination of any kind, taking into consideration that civil registration and, in particular, birth registration provide substantial information for policy and humanitarian planning, through regulations that contribute towards enhancing protection and the implementation of durable solutions;", - "values": [ - "Civil & Political Rights" - ] - }, - { - "text": "Recalling General Assembly resolution 57/337 of 3 July 2003 on the prevention of armed conflict, and Security Council resolutions 1325 (2000) of 31 October 2000, 1828 (2008) of 31 July 2008, 1888 (2009) of 30 September 2009, 1889 (2009) of 5 October 2009, 1960 (2010) of 16 December 2010, 2106 (2013) of 24 June 2013, 2122 (2013) of 18 October 2013 and 2242 (2015) of 13 October 2015 on women, peace and security, as well as Council resolutions 1314 (2000) of 11 August 2000, 1379 (2001) of 20 November 2001, 1460 (2003) of 30 January 2003, 1539 (2004) of 22 April 2004, 1612 (2005) of 26 July 2005, 1882 (2009) of 4 August 2009, 1998 (2011) of 12 July 2011, 2068 (2012) of 19 September 2012, 2143 (2014) of 7 March 2014 and 2225 (2015) of 18 June 2015 on children and armed conflict, and Council resolutions 2133 (2014) of 27 January 2014, 2249 (2015) of 20 November 2015, 2253 (2015) of 17 December 2015 and 2255 (2015) of 21 December 2015 on kidnapping for ransom and hostage-taking by terrorists,", - "values": [ - "Governance & Rule of Law", - "Humanitarian" - ] - }, - { - "text": "Gender inequality also contributes to servile marriage through its impact on formal legal systems. Although a woman's right to choose if, when and whom to marry is recognized in international human rights law, and although the Committee on the Elimination of All Forms of Discrimination against Women and the Committee on the Rights of the Child and other treaty bodies state that the minimum age of marriage should be 18 years, several countries with high rates of early marriage also have unequal laws of consent for boys and girls. Such laws reinforce and legalize the idea that marriage is suitable for girls earlier than for boys. Patriarchal laws and practices give women and girls less negotiating power around marriage and sexual and reproductive health and rights.", - "values": [ - "Gender", - "Harmful Practices" - ] - }, - { - "text": "[Actions to be taken by Governments:] Protect children in situations of armed conflict, especially the girl child, against participation, recruitment, rape and sexual exploitation through adherence to the applicable principles of international human rights law, international humanitarian law, and national legislation;", - "values": [ - "Humanitarian", - "Violence" - ] - }, - { - "text": "1. The family is the natural and fundamental group unit of society and is entitled to protection by society and the State.", - "values": [ - "Civil & Political Rights", - "Governance & Rule of Law" - ] - }, - { - "text": "State reports should describe the rules governing the right to vote, and the application of those rules in the period covered by the report. State reports should also describe factors which impede citizens from exercising the right to vote and the positive measures which have been adopted to overcome these factors.", - "values": [ - "Civil & Political Rights", - "Equality & Inclusion" - ] - }, - { - "text": "The adoption of the Convention on the Rights of Persons with Disabilities represented a major milestone towards the full and effective enjoyment of sexual and reproductive health and rights by girls and young women with disabilities. Embracing the basic principles of human rights, the Convention moves away from medical and paternalistic approaches towards a human rights-based approach to the sexual and reproductive health and rights of persons with disabilities. The Convention challenges all forms of substituted decision-making in the exercise of sexual and reproductive health and rights (see arts. 12 and 25); prohibits harmful and discriminatory practices against persons with disabilities in all matters related to marriage, family, parenthood and relationships, including the right to retain their fertility and to decide on the number and spacing of their children (see art. 23); calls to end all forms of exploitation, violence and abuse, including their gender-based aspects (see art. 16); and promotes access to quality sexual and affordable reproductive health care and programmes (see art. 25).", - "values": [ - "Equality & Inclusion", - "Health" - ] - }, - { - "text": "[By Governments and international organizations, to the extent consistent with freedom of expression:] Promote research and implementation of a strategy of information, education and communication aimed at promoting a balanced portrayal of women and girls and their multiple roles; encourage the media and advertising agencies to develop specific programmes to raise awareness of the Platform for Action;", - "values": [ - "Education", - "Equality & Inclusion", - "Gender" - ] - }, - { - "text": "Availability refers to the possibilities either for feeding oneself directly from productive land or other natural resources, or for well-functioning distribution, processing and market systems that can move food from the site of production to where it is needed in accordance with demand.", - "values": [ - "Environment", - "Food & Nutrition" - ] - }, - { - "text": "States need to provide comprehensive and non-discriminatory sexuality education to girls and young women with disabilities, both within and outside school (see A/65/162, paras. 62 and 87). It should include information about self-esteem and healthy relationships; sexual and reproductive health, contraception and sexually transmitted diseases; the prevention of sexual and other forms of exploitation, violence and abuse; stigma and prejudices against persons with disabilities; gender roles; and human rights. Indeed, sexuality education has been found to be effective in improving the sexual knowledge and skills of youth with disabilities, and in reducing sexual violence against them. States must ensure that their sexuality education programmes are inclusive of girls and young women with disabilities and their specific needs, and that they are made available in accessible and alternative communication formats. Peer-education programmes are effective ways to enhance knowledge and skills with regard to the sexual and reproductive health and rights of girls and young women with disabilities.", - "values": [ - "Education", - "Gender" - ] - }, - { - "text": "Expressing its deep concern over the negative impact of the global economic and financial crisis and of the food crisis and ongoing food insecurity which could hamper progress in achieving the Millennium Development Goals and the implementation of the Beijing Declaration and Platform for Action,", - "values": [ - "Food & Nutrition", - "Governance & Rule of Law" - ] - }, - { - "text": "[The Commission urges Governments, at all levels [...] to take the following actions:] [Strengthening the enabling environment for gender equality and the empowerment of women]: Promote the integration of a gender perspective in environmental and climate change policies and strengthen mechanisms and provide adequate resources to ensure women's full and equal participation in decision-making at all levels on environmental issues, in particular on strategies and policies related to the impacts of climate change, such as extreme weather events and slow onset impacts, including drought, ocean acidification, sea-level rise and loss of biodiversity on the lives of women and girls, and ensure a comprehensive approach to address the hardships faced by women and girls by integrating their specific needs into humanitarian responses to natural disasters and into the planning, delivery and monitoring of disaster risk reduction policies to address natural disasters and climate change, and ensuring sustainable natural resources management;", - "values": [ - "Environment", - "Gender" - ] - }, - { - "text": "Reaffirming also the importance of national programmes and policies in ensuring the progressive realization of the human right to safe drinking water and sanitation,", - "values": [ - "Governance & Rule of Law", - "Water & Sanitation" - ] - }, - { - "text": "(a) Accused persons shall, save in exceptional circumstances, be segregated from convicted persons and shall be subject to separate treatment appropriate to their status as unconvicted persons;", - "values": [ - "Civil & Political Rights", - "Equality & Inclusion" - ] - }, - { - "text": "Condemns violent acts in contravention of international humanitarian law against civilian women and children in areas of armed conflict, and calls for an effective response to such acts, including the immediate release of such women and children taken hostage, including those subsequently imprisoned, in armed conflicts;", - "values": [ - "Humanitarian", - "Violence" - ] - }, - { - "text": "In the regional context, protection of the rights of linguistic minorities via regional standards is well developed in Europe. The European Charter for Regional or Minority Languages provides principles and objectives upon which States parties must base their policies, legislation and practice relating to regional or minority languages. It also provides a series of concrete undertakings relating to specific areas relevant to minority language use, including education, engagement with judicial and administrative authorities, access to public services, media, cultural activities and facilities, economic and social life, and cross-border exchanges. The Charter has been ratified by 25 States and signed by another 8 States. A committee of experts monitors its implementation in each State and makes recommendations for improvements in legislation, policy and practice.", - "values": [ - "Civil & Political Rights", - "Education", - "Equality & Inclusion", - "Governance & Rule of Law", - "Movement", - "Social & Cultural Rights" - ] - }, - { - "text": "Agroecological farming can help secure livelihoods for smallholder farmers and those living in poverty, including women, because there is no heavy reliance on expensive external inputs. If properly managed, biodiversity and efficient use of resources can enable smallholder farms to be more productive per hectare than large industrial farms (A/HRC/16/49).", - "values": [ - "Environment", - "Food & Nutrition", - "Poverty" - ] - }, - { - "text": "1. Migrant workers and members of their families shall have the right to freedom of thought, conscience and religion. This right shall include freedom to have or to adopt a religion or belief of their choice and freedom either individually or in community with others and in public or private to manifest their religion or belief in worship, observance, practice and teaching.", - "values": [ - "Civil & Political Rights", - "Social & Cultural Rights" - ] - }, - { - "text": "Calls upon States to promote the meaningful participation of and active consultation with children and adolescents affected by humanitarian settings, especially girls, on all issues affecting them, and to raise awareness about their rights, including the negative impact of child, early and forced marriage, through safe spaces, forums and support networks that provide girls and boys with information, life skills and leadership skills training and opportunities to be empowered, to express themselves, to participate meaningfully in all decisions that affect them and to become agents of change within their communities;", - "values": [ - "Equality & Inclusion", - "Harmful Practices", - "Humanitarian" - ] - }, - { - "text": "The Commission recognizes that conflicts, trafficking in persons, terrorism, violent extremism, natural disasters, humanitarian emergencies and other emergency situations disproportionately affect women and girls. It therefore recognizes that it is essential to ensure that women are empowered to effectively and meaningfully participate in leadership and decision-making processes, that their needs and interests are prioritized in strategies and responses and that the human rights of women and girls are promoted and protected in all development efforts, as well as in conflict, humanitarian emergencies and other emergency situations.", - "values": [ - "Equality & Inclusion", - "Humanitarian" - ] - }, - { - "text": "Recognizing that rural women are critical agents in poverty reduction, that they are crucial to the achievement of food security and nutrition in poor and vulnerable households and to environmental sustainability and that, in other ways, they are also critical to the achievement of all of the Sustainable Development Goals,", - "values": [ - "Food & Nutrition", - "Poverty" - ] - }, - { - "text": "3. The Secretary General shall inform all member states of the Organization of the entry into force of the Convention.", - "values": [ - "Civil & Political Rights", - "Governance & Rule of Law" - ] - }, - { - "text": "[In connection to sexual and reproductive health rights, the Special Rapporteur recommends that Governments:] Repeal laws criminalizing or otherwise discriminating against individuals on the basis of their sexual orientation or gender identity, and put an end to practices and treatments aimed at changing sexual orientation and gender identity.", - "values": [ - "Equality & Inclusion", - "Gender" - ] - }, - { - "text": "Recognizes that women play a vital role in disaster risk reduction, response and recovery, including rehabilitation and reconstruction, and the need to enhance women's access, capacities and opportunities to effectively participate in prevention and preparedness efforts and in response to disasters;", - "values": [ - "Gender", - "Humanitarian" - ] - }, - { - "text": "Relevant economic factors include advance or deferred payment designed to increase dependency, payment that keeps workers below the poverty level, payment in kind only or prohibitions to freely change employers.", - "values": [ - "Economic Rights", - "Poverty", - "Social & Cultural Rights" - ] - }, - { - "text": "States Parties shall: j. Take necessary measures to safeguard against environmental degradation in areas where internally displaced persons are located, either within the jurisdiction of the State Parties, or in areas under their effective control;", - "values": [ - "Environment" - ] - }, - { - "text": "The human rights obligations of States are classified as obligations to respect, to protect and to fulfil. The obligation to respect requires that States\u2019 regulatory frameworks refrain from interfering directly or indirectly with people\u2019s existing access to water and sanitation. To that end, States must ensure that their regulatory framework prohibits disconnections from water and sanitation services due to users\u2019 inability to pay, as it is a retrogressive measure and violates the human rights to water and sanitation, must ensure, when extending piped networks to informal settlements, that these services are affordable so as not to interfere with people\u2019s access, and must avoid discriminatory or unaffordable increases in the price of water and sanitation services due to inadequate regulation. Furthermore, preparedness for situations of armed conflict, emergency situations, natural disasters and effects of climate change requires that States embrace in their regulatory frameworks the obligations relevant to water and sanitation provision pursuant to international humanitarian law.", - "values": [ - "Environment", - "Equality & Inclusion", - "Humanitarian", - "Poverty", - "Water & Sanitation" - ] - }, - { - "text": "1. Every young person shall have the right to education of good quality.", - "values": [ - "Education" - ] - }, - { - "text": "Countries should develop an integrated approach to the special nutritional, general and reproductive health, education and social needs of girls and young women, as such additional investments in adolescent girls can often compensate for earlier inadequacies in their nutrition and health care.", - "values": [ - "Food & Nutrition", - "Health" - ] - }, - { - "text": "[For the purposes of the present joint general recommendation/general comment, practices should meet the following criteria to be regarded as harmful:] They are traditional, re-emerging or emerging practices that are prescribed and/or kept in place by social norms that perpetuate male dominance and inequality of women and children, on the basis of sex, gender, age and other intersecting factors;", - "values": [ - "Harmful Practices", - "Social & Cultural Rights" - ] - }, - { - "text": "[21. Governments should:] (c) Support research and develop comprehensive strategies at the national, regional and local levels to meet, where appropriate, the challenges of population ageing. Invest more resources in gender-sensitive research as well as in training and capacity-building in social policies and health care of older persons, especially the elderly poor, paying special attention to the economic and social security of older persons, in particular older women; affordable, accessible and appropriate health-care services; the human rights and dignity of older persons and the productive and useful roles that they can play in society; support systems to enhance the ability of families and communities to care for older family members; the ability of the elderly to care for family members and community victims of HIV/AIDS; and generational solidarity with the goal of maintaining and improving social cohesion.", - "values": [ - "Equality & Inclusion", - "Health" - ] - }, - { - "text": "We emphasize the need to enhance employment and income opportunities for all, especially for women and men living in poverty, and in this regard we support national efforts to provide new job opportunities to the poor in both rural and urban areas, including support to small and medium-sized enterprises.", - "values": [ - "Economic Rights", - "Poverty" - ] - }, - { - "text": "[The Special Rapporteur makes the following recommendations:] Humanitarian and development organizations: Ensure meaningful participation of IDW and girls in the development, implementation, monitoring and evaluation of laws, policies, programmes and activities that affect their lives at all stages of displacement, through ongoing and direct engagement in identifying priorities and devising and implementing responses to them;", - "values": [ - "Civil & Political Rights", - "Governance & Rule of Law", - "Humanitarian", - "Movement" - ] - }, - { - "text": "The European Court of Human Rights has held that discrimination based on sexual orientation or gender identity is in violation of human rights. In 1981, in Dudgeon v. United Kingdom, the European Court of Human Rights determined that the criminalization of private homosexual acts constituted an unjustified interference with the right to privacy enshrined within article 8 of the Convention for the Protection of Human Rights and Fundamental Freedoms. The United Nations Human Rights Committee in Toonen v. Australia subsequently ruled that \"sex\" discrimination includes discrimination based upon sexual orientation, noting that criminalization was not a reasonable measure to prevent spread of HIV/AIDS. In S.L. v. Austria, the European Court of Human Rights also held that differences in the treatment of heterosexual and homosexual populations based on age of consent had no objective and reasonable justification, and was therefore discriminatory.", - "values": [ - "Equality & Inclusion", - "Governance & Rule of Law" - ] - }, - { - "text": "Stresses that technical and vocational education, including in science, technology, engineering and mathematics, and lifelong learning opportunities and guidance for all, including women with disabilities, are necessary for the realization of the right to work;", - "values": [ - "Economic Rights", - "Education" - ] - }, - { - "text": "If the designation of World Heritage sites is done constructively and with the consent of the indigenous peoples affected, such status could provide an effective contribution to conservation and the protection of indigenous rights. In 2011, the World Heritage Committee incorporated the uranium-rich Koongarra area into the Kakadu National Park World Heritage site, at the joint request of the Government of Australia and the indigenous landowners, the Djok clan, which in effect barred future mineral development in the area.", - "values": [ - "Environment", - "Social & Cultural Rights" - ] - }, - { - "text": "The role of national human rights institutions in prevention can be enhanced if there is an internally displaced persons focal point or a specific unit dealing with internal displacement issues. An internally displaced persons focal point can be responsible for raising awareness of displacement issues and the applicable international and regional standards and for training government officials and other actors to ensure that they understand their obligations under international human rights and humanitarian law, including in relation to specific vulnerable groups. As independent bodies, national human rights institutions are essential channels of communication between authorities and rights holders and can reach out to communities and inform them of their rights, register individual complaints and investigate specific cases so that perpetrators of violations are held accountable.", - "values": [ - "Governance & Rule of Law" - ] - }, - { - "text": "Encourages States to take into account the Guidelines for the Alternative Care of Children, and to adopt and enforce laws and improve the implementation of policies and programmes, budget allocation and human resources to protect children growing up without parents or caregivers; where alternative care is necessary, decision-making should be in the best interests of the child, in full consultation with the child as age-appropriate and with his or her legal guardians;", - "values": [ - "Social & Cultural Rights" - ] - }, - { - "text": "The Commission recalls the inclusion of gender-related crimes and crimes of sexual violence in the Rome Statute of the International Criminal Court, as well as the recognition by the ad hoc international criminal tribunals that rape and other forms of sexual violence can constitute a war crime, a crime against humanity or a constitutive act with respect to genocide or torture", - "values": [ - "Gender", - "Violence" - ] - }, - { - "text": "The Commission welcomes international momentum to address the issue of child, early and forced marriage. The Commission recognizes that child, early and forced marriage is a harmful practice, and notes that its continued prevalence, among other factors, has slowed the achievement of several of the Millennium Development Goals for women and girls.", - "values": [ - "Harmful Practices" - ] - }, - { - "text": "[The most effective responses are multidisciplinary and take into account the various types of short-, mid- and long-term care and assistance that child victims require for their full recovery and reintegration. True efficacy requires that responses be:] Able to offer safe and child-friendly alternative or residential care that accommodates the basic needs of child victims, is governed by child protection norms and standards and is subject to regular monitoring. To that end, it is essential to establish minimum standards for alternative and residential care. All registered centres must be required to submit monthly reports on the arrival and departure of children and details related to their care and transfer;", - "values": [ - "Governance & Rule of Law", - "Movement" - ] - }, - { - "text": "1 Each Party shall encourage the participation of children, according to their evolving capacity, in the development and the implementation of state policies, programmes or others initiatives concerning the fight against sexual exploitation and sexual abuse of children.", - "values": [ - "Equality & Inclusion", - "Violence" - ] - }, - { - "text": "Profoundly concerned that the situation of children in many parts of the world remains critical as a result of poverty, inadequate social and economic conditions in an increasingly globalized world economy, pandemics, natural disasters, armed conflicts, displacement, exploitation, illiteracy, hunger, intolerance, disability and inadequate legal protection, and convinced that urgent and effective national and international action is called for,", - "values": [ - "Poverty" - ] - }, - { - "text": "[By Governments:] While acknowledging legitimate national defence needs, recognize and address the dangers to society of armed conflict and the negative effect of excessive military expenditures, trade in arms, especially those arms that are particularly injurious or have indiscriminate effects, and excessive investment for arms production and acquisition; similarly, recognize the need to combat illicit arms trafficking, violence, crime, the production and use of and trafficking in illicit drugs, and trafficking in women and children;", - "values": [ - "Violence" - ] - }, - { - "text": "Reaffirming that the family, as the fundamental group of society and the natural environment for the growth and well-being of all its members, and particularly children, should be afforded the necessary protection and assistance so that it can fully assume its responsibilities within the community,", - "values": [ - "Environment", - "Social & Cultural Rights" - ] - }, - { - "text": "Fear of unjustified termination of parental rights may cause women with disabilities to remain in abusive relationships. The denial of legal capacity, which includes restrictions on the right of women with disabilities to testify in the courts, the failures of the justice system to respond to the abuse of women and girls with disabilities, and/or the inability to see them as credible witnesses, perpetuates and reinforces abuse. Thus, eliminating such discriminatory practices is essential to addressing violence against women with disabilities.", - "values": [ - "Equality & Inclusion", - "Violence" - ] - }, - { - "text": "Calls upon States to strengthen the level of education for women and girls and the capacity of health-care systems to meet their needs in line with the internationally agreed development goals, including the Millennium Development Goals, as this is critical for empowering them and their communities to end female genital mutilation;", - "values": [ - "Education", - "Gender", - "Harmful Practices", - "Health" - ] - }, - { - "text": "States Parties shall: b. Provide internally displaced persons to the fullest extent practicable and with the least possible delay, with adequate humanitarian assistance, which shall include food, water, shelter, medical care and other health services, sanitation, education, and any other necessary social services, and where appropriate, extend such assistance to local and host communities;", - "values": [ - "Humanitarian", - "Water & Sanitation" - ] - }, - { - "text": "Finally, States should do more than simply disseminating information on sport and healthy lifestyles to the populace. Steps must be taken to support the adoption of healthy lifestyles, by creating mechanisms through which healthy choices become the easier and preferred option and poor lifestyle choices are avoided. This can occur through structural changes to environments, for example, which create inexpensive and safe active transport options.", - "values": [ - "Health" - ] - }, - { - "text": "It is impossible to set a generally applicable affordability standard at the global level. Any such standard would be arbitrary and cannot reflect the challenges people face in practice and the context in which they live, including how much they need to spend on housing, food and the realization of other human rights. The affordability of water and sanitation services is highly contextual, and States should therefore determine affordability standards at the national and/or local level. The human rights framework stipulates important parameters for the process of doing so, in particular in terms of participation.", - "values": [ - "Economic Rights", - "Equality & Inclusion", - "Water & Sanitation" - ] - }, - { - "text": "A recent study underscored that gender-differentiated patterns are not the same everywhere and reinforced the importance of context for understanding the gender dimensions of access and experience. The quantity and quality of sex-disaggregated data at the micro level are considered to be better than those of data at the global level. It is therefore important that measuring progress in the rights to water and sanitation and gender equality is not based on global monitoring and on the use of quantitative data only. Context-specific studies and monitoring that capture the intersection of gender inequalities in the enjoyment of other human rights are key to understanding and developing improved policy responses.", - "values": [ - "Equality & Inclusion", - "Gender", - "Water & Sanitation" - ] - }, - { - "text": "Reaffirming that States have the primary responsibility to respect, promote and protect all human rights and fundamental freedoms, including the rights of the child,", - "values": [ - "Governance & Rule of Law" - ] - }, - { - "text": "In addressing institutionalization, States parties are therefore urged to set up programmes for de-institutionalization of children with disabilities, re-placing them with their families, extended families or foster care system. Parents and other extended family members should be provided with the necessary and systematic support/training for including their child back into their home environment.", - "values": [ - "Equality & Inclusion", - "Social & Cultural Rights" - ] - }, - { - "text": "The Special Rapporteur observes that much work remains to be done to ensure that States and indigenous peoples come together to find common ground and agreement on the most controversial issues. In that regard, States and indigenous peoples often settle into entrenched positions and take adversarial approaches, a tendency that is especially notable in the context of natural resource development.", - "values": [ - "Environment" - ] - }, - { - "text": "The Commission recognizes that progress on the achievement of all Millennium Development Goals for women and girls has been held back owing to the persistence of historical and structural unequal power relations between women and men, poverty and inequalities and disadvantages in access to resources and opportunities that limit women's and girls' capabilities, and growing gaps in equality of opportunity, discriminatory laws, policies, social norms, attitudes, harmful customary and contemporary practices and gender stereotypes.", - "values": [ - "Equality & Inclusion", - "Social & Cultural Rights" - ] - }, - { - "text": "Even transparent budgeting can seldom account for the additional off-budget resources spent on water and sanitation by international donors and non governmental organizations, which often wish to manage their projects independent of Governments. The resources expended on these projects are then almost never recorded in national budgets. In cases in which States rely on international contributions for the majority of their work in the water and sanitation sector, this means that Governments and communities have little knowledge of how much funding is actually available. In Malawi in 2006, for example, it is estimated that off-budget spending by non-governmental organizations was as much as three times the reported annual budget for water and sanitation.", - "values": [ - "Governance & Rule of Law", - "Water & Sanitation" - ] - }, - { - "text": "In continuity with the report on global corruption in education by Transparency International, UNESCO should undertake a full-scale investigation of corruption in public-private partnerships in education and expose any fraudulent and corrupt practices by private providers through its Education for All Global Monitoring Report", - "values": [ - "Education", - "Equality & Inclusion" - ] - }, - { - "text": "[End the use of detention as a border management and deterrence tool against\u00a0migrants]\nAlternatives to detention are created and expanded; ", - "values": [ - "Civil & Political Rights", - "Movement" - ] - }, - { - "text": "Such protected areas were based on the following assumptions: protected areas should be created and governed by States; the goal of protected areas should be strict nature preservation with emphasis on biodiversity conservation and protected area management required protected areas to be uninhabited and without human use of natural resources. In its worst forms, coercive force was considered legally and morally justified to remove resident peoples and protect biodiversity.", - "values": [ - "Environment", - "Governance & Rule of Law", - "Social & Cultural Rights" - ] - }, - { - "text": "States Parties shall take appropriate legal measures to ensure that widows enjoy all human rights through the implementation of the following provisions: a) that widows are not subjected to inhuman, humiliating or degrading treatment;", - "values": [ - "Equality & Inclusion", - "Governance & Rule of Law" - ] - }, - { - "text": "[States parties have a core obligation to ensure the satisfaction of, at the very least, minimum essential levels of the right to just and favourable conditions of work. Specifically, this requires States parties to:] Put in place a comprehensive system to combat gender discrimination at work, including with regard to remuneration;", - "values": [ - "Economic Rights", - "Equality & Inclusion", - "Gender" - ] - }, - { - "text": "Without the resources to retain private legal assistance, and with restricted access to legal aid (see above), persons living in poverty are often forced to navigate the judicial system alone. In doing so, they encounter, in addition to the barriers listed above, a complex labyrinth of laws, traditions and interactions, with copious paperwork, the use of legal jargon and mainstream languages, and restrictive time limits, all of which can deter the poor from seeking justice under formal systems and impede fair outcomes.", - "values": [ - "Poverty" - ] - }, - { - "text": "[By Governments:] Ensure that clean water is available and accessible to all by the year 2000 and that environmental protection and conservation plans are designed and implemented to restore polluted water systems and rebuild damaged watersheds.", - "values": [ - "Environment", - "Water & Sanitation" - ] - }, - { - "text": "The international community can play a key role in supporting the establishment and scale-up of social protection systems. A number of core common principles can guide donors on how best to ensure and support the long-term sustainability of social security systems in recipient States. The statements of Governments reaffirming their commitment to human rights, gender equality and social protection must be translated into the increased allocation of resources to social protection systems that take into account gender equality.", - "values": [ - "Equality & Inclusion", - "Gender", - "Social & Cultural Rights" - ] - }, - { - "text": "The improved integration of humanitarian and development efforts at the onset of displacement is essential to building resilience and self-reliance, both of which are key elements leading to durable solutions within a rights-based and protection approach. New approaches to protracted displacement require that early recovery be integrated by both humanitarian and development actors. As stated in the Framework on Durable Solutions for Internally Displaced Persons, early recovery is a multidimensional process that begins in a humanitarian setting. It is guided by development principles that seek to build on humanitarian programmes and catalyse sustainable development opportunities. It aims to generate self-sustaining, nationally owned, resilient processes for post-crisis recovery. It encompasses the restoration of basic services, livelihoods, shelter, governance, security and the rule of law, and environmental and social dimensions, including the reintegration of displaced populations.", - "values": [ - "Governance & Rule of Law", - "Humanitarian" - ] - }, - { - "text": "Recognizing that female genital mutilation violates and impairs or nullifies the enjoyment of the human rights of women and girls,", - "values": [ - "Harmful Practices", - "Social & Cultural Rights" - ] - }, - { - "text": "2. States Parties shall recognise the vested interest of young people in protecting the natural environment as the inheritors of the environment. In this regard, they shall: d) Facilitate youth participation in the design, implementation and evaluation of environmental policies including the conservation of African natural resources at local, national, regional and international levels;", - "values": [ - "Environment" - ] - }, - { - "text": "Encourages Governments, United Nations agencies and other stakeholders to promote an inclusive approach to durable solutions that addresses the needs of internally displaced persons and their host communities, including the promotion of opportunities to fully harness the human potential of the displaced populations by promoting self-sufficiency through income-generating activities and sustainable livelihood opportunities;", - "values": [ - "Economic Rights", - "Movement" - ] - }, - { - "text": "For the purpose of the present Convention: q. \"Sphere standards\" mean standards for monitoring and evaluating the effectiveness and impact of humanitarian assistance; and", - "values": [ - "Humanitarian" - ] - }, - { - "text": "Recognizing that, while women and girls may be exposed to certain risks, such as trafficking, in any location, the different nature of camp and urban environments can expose women and girls to different protection risks and that in camps, for example, their freedom of movement and capacity to earn a livelihood may be more restricted and they may be more exposed there to sexual and gender-based violence (SGBV), whereas in urban situations, they may be less able to exercise their rights effectively, to access protection and services or reach UNHCR or implementing partner offices", - "values": [ - "Equality & Inclusion", - "Gender" - ] - }, - { - "text": "Women remain largely absent at all levels of policy formulation and decision-making in natural resource and environmental management, conservation, protection and rehabilitation, and their experience and skills in advocacy for and monitoring of proper natural resource management too often remain marginalized in policy-making and decision-making bodies, as well as in educational institutions and environment-related agencies at the managerial level. Women are rarely trained as professional natural resource managers with policy-making capacities, such as land-use planners, agriculturalists, foresters, marine scientists and environmental lawyers. Even in cases where women are trained as professional natural resource managers, they are often underrepresented in formal institutions with policy-making capacities at the national, regional and international levels. Often women are not equal participants in the management of financial and corporate institutions whose decision-making most significantly affects environmental quality. Furthermore, there are institutional weaknesses in coordination between women's non-governmental organizations and national institutions dealing with environmental issues, despite the recent rapid growth and visibility of women's non-governmental organizations working on these issues at all levels.", - "values": [ - "Environment", - "Governance & Rule of Law" - ] - }, - { - "text": "2. Any advocacy of national, racial or religious hatred that constitutes incitement to discrimination, hostility or violence shall be prohibited by law.", - "values": [ - "Civil & Political Rights", - "Equality & Inclusion" - ] - }, - { - "text": "Calls upon all Member States, and invites the United Nations system, to strengthen international cooperation to ensure the realization of the rights of the child, including in early childhood, inter alia, by supporting national initiatives that give more emphasis to early childhood development, as appropriate;", - "values": [ - "Education" - ] - }, - { - "text": "The poor record of achievement for target 7.C reflects inadequate political prioritization by donor and partner countries alike, particularly in the case of sanitation. While aid for water and sanitation is increasing in absolute terms, the share of the water and sanitation sector has been declining relative to other sectors. Moreover, aid is generally not well-targeted: only 42 per cent of aid for these sectors committed between 2006 and 2008 was addressed to least developed and other low-income countries. The share of aid for basic sanitation and water services decreased from 27 per cent in 2003 to 16 per cent in 2008, much greater shares being directed at large systems, which generally do not reach the poorest segments of the population. Strikingly, only about one third of aid to the water and sanitation sectors is directed to sanitation, even though far greater efforts are needed in this area.", - "values": [ - "Water & Sanitation" - ] - }, - { - "text": "In the face of poverty, inaccessibility to basic social services and lack of opportunity, families find themselves unable to ensure the development and safety of their children. They adopt survival strategies that may endanger their children. Some parents emigrate in search of a better future, leaving their children behind, while some children emigrate on their own initiative or at their family's urging, and are handed over, for a fee, to exploiting individuals who push them into work. These children are more vulnerable to all forms of exploitation and abuse.", - "values": [ - "Economic Rights", - "Movement", - "Poverty" - ] - }, - { - "text": "Urges States to place special emphasis on education, in particular of youth, parents and religious, traditional and community leaders, about the harmful effects of female genital mutilation, and especially to encourage men and boys to become more involved in information and awareness-raising campaigns and to become agents of change;", - "values": [ - "Education", - "Harmful Practices" - ] - }, - { - "text": "We recognize that oceans, seas and coastal areas form an integrated and essential component of the Earth's ecosystem and are critical to sustaining it and that international law, as reflected in the United Nations Convention on the Law of the Sea, provides the legal framework for the conservation and the sustainable use of the oceans and their resources. We stress the importance of the conservation and sustainable use of the oceans and seas and of their resources for sustainable development, including through the contributions to poverty eradication, sustained economic growth, food security, creation of sustainable livelihoods and decent work, while at the same time protecting biodiversity and the marine environment and addressing the impacts of climate change. We therefore commit to protecting, and restoring, the health, productivity and resilience of oceans and marine ecosystems and to maintaining their biodiversity, enabling their conservation and sustainable use for present and future generations, and to effectively applying an ecosystem approach and the precautionary approach in the management, in accordance with international law, of activities impacting on the marine environment, to deliver on all three dimensions of sustainable development.", - "values": [ - "Environment", - "Governance & Rule of Law" - ] - }, - { - "text": "Everyone has the right to special protection in old age. With this in view the States Parties agree to take progressively the necessary steps to make this right a reality and, particularly, to: a. Provide suitable facilities, as well as food and specialized medical care, for elderly individuals who lack them and are unable to provide them for themselves;", - "values": [ - "Equality & Inclusion", - "Social & Cultural Rights" - ] - }, - { - "text": "Fifty years after the separation of international human rights into the two covenants, the United Nations is well situated to retrieve a unified and inclusive understanding of human rights and to affirm that the right to life includes the right to a place to live in dignity and security, free of violence. The Human Rights Committee has the opportunity to affirm this integrated understanding of the right to life in the ongoing preparation of its general comment No. 36. The Committee on Economic, Social and Cultural Rights has the opportunity under its Optional Protocol to highlight the connection between the rights to life and adequate housing in lived experience. Other treaty monitoring bodies have the opportunity to ensure that the understanding of the rights to life and adequate housing is informed by the experiences and unique claims of people with disabilities, women, children, migrants, racial minorities and indigenous peoples, among others.", - "values": [ - "Equality & Inclusion", - "Governance & Rule of Law", - "Social & Cultural Rights" - ] - }, - { - "text": "Recognizes the importance of international cooperation, and encourages States to request technical assistance, if required and where appropriate, from relevant United Nations bodies, agencies, funds and programmes and other relevant stakeholders, in order to make reforms to eliminate from their nationality laws all forms of discrimination against women;", - "values": [ - "Equality & Inclusion", - "Gender", - "Governance & Rule of Law" - ] - }, - { - "text": "Welcoming the holding of a commemorative high-level plenary meeting on 11 and 12\u00a0December 2007 to evaluate progress made in the implementation of the Declaration and the Plan of Action contained in the document entitled \u201cA world fit for children\u201d, recalling that particular attention must be paid to the protection and the rights of children living in poverty, and encouraging the inclusion of children and young people in delegations of Member States,", - "values": [ - "Governance & Rule of Law", - "Poverty" - ] - }, - { - "text": "2 Adequate State compensation shall be awarded to those who have sustained serious bodily injury or impairment of health, to the extent that the damage is not covered by other sources such as the perpetrator, insurance or State-funded health and social provisions. This does not preclude Parties from claiming regress for compensation awarded from the perpetrator, as long as due regard is paid to the victim\u2019s safety.", - "values": [ - "Governance & Rule of Law", - "Health" - ] - }, - { - "text": "States must refrain from adopting retrogressive measures that affect their obligation to ensure access to support for persons with disabilities. In times of crisis, more support is needed, rather than cuts (ibid., para. 85). Reduction and caps on direct payments, personal budgets and other benefits; stricter eligibility criteria; the elimination or reduction of subsidies and tax credits; and reduced expenditures on community support services, such as in-home services and personal assistance, affect the right to live independently and be included in the community and to an adequate standard of living. States should ensure sufficient resources for individual funds to enable persons with disabilities to access appropriate support.", - "values": [ - "Economic Rights", - "Humanitarian" - ] - }, - { - "text": "Recognizes that the promises made at the World Food Summit in 1996 to halve the number of persons who are undernourished are not being fulfilled, and invites once again all Governments, international financial and development institutions, as well as the relevant United Nations agencies and funds, to give priority to and provide the necessary funding to realize the aim of halving by 2015 the number, or at least the proportion, of people who suffer from hunger, as stated in Millennium Development Goal 1, as well as the right to food, as set out in the Rome Declaration on World Food Security and the United Nations Millennium Declaration;", - "values": [ - "Food & Nutrition", - "Governance & Rule of Law", - "Health" - ] - }, - { - "text": "With the increase in life expectancy and the growing number of older women, their health concerns require particular attention. The long-term health prospects of women are influenced by changes at menopause, which, in combination with life-long conditions and other factors, such as poor nutrition and lack of physical activity, may increase the risk of cardiovascular disease and osteoporosis. Other diseases of ageing and the interrelationships of ageing and disability among women also need particular attention.", - "values": [ - "Gender", - "Health" - ] - }, - { - "text": "Moreover, as women's motivations for engaging in exercise often differ from those of men, greater attention to acceptable forms of organized sport may increase female participation. Research has indicated that women frequently place more importance on social aspects of physical activity than on performance outcomes. In order to promote physical activity and sport, States should inform their policies with research, and adopt best practices adapted to the country and to the preferences of women, with meaningful participation by women in the design, implementation, monitoring and evaluation of policies and programmes", - "values": [ - "Equality & Inclusion", - "Health" - ] - }, - { - "text": "Also encourages States to take into account the Guidelines for the Alternative Care of Children, and to adopt and enforce laws and to improve the implementation of policies and programmes, budget allocation and human resources to support children, particularly children living in disadvantaged and marginalized families, to ensure that they are cared for effectively by their own families and communities, and to protect children growing up without parents or caregivers; where alternative care is necessary, decision-making should be in the best interests of the child, in full consultation with the child as age-appropriate and with the child\u2019s legal guardians;", - "values": [ - "Equality & Inclusion", - "Social & Cultural Rights" - ] - }, - { - "text": "[Welcomes:] The fact that the Commission on the Status of Women addressed the issue of harmful traditional or customary practices at its session in 1998;", - "values": [ - "Harmful Practices" - ] - }, - { - "text": "Furthermore, as stated previously, organizers of peaceful assemblies should never be held liable for the unlawful behaviour of others. The principle of individual liability of participants should be upheld, notably due to the presumption of peacefulness of the assembly. The Special Rapporteur is concerned that organizers have sometimes been brought to court for the violent behaviour of others, as in Malaysia. He is similarly concerned about legal provisions criminalizing organizers for the violent conduct of others, as in the Canton of Geneva, Switzerland.", - "values": [ - "Civil & Political Rights", - "Governance & Rule of Law" - ] - }, - { - "text": "The Special Rapporteur has surveyed the Committee's work since the beginning of 2014 to evaluate how it has approached the three elements in the RIA framework. This included State party reports, the relevant lists of issues and the concluding observations relating to 32 States parties, drawn more or less evenly from the different regional groups.", - "values": [ - "Governance & Rule of Law" - ] - }, - { - "text": "No prisoner shall be required to work for the personal or private benefit of any prison staff.", - "values": [ - "Civil & Political Rights" - ] - }, - { - "text": "The annual reports that Members which ratify this Convention agree to make to the International Labour Office, pursuant to the provisions of Article 22 of the Constitution of the International Labour Organisation, on the measures they have taken to give effect to the provisions of this Convention, shall contain as full information as possible, in respect of each territory concerned, regarding the extent to which recourse has been had to forced or compulsory labour in that territory, the purposes for which it has been employed, the sickness and death rates, hours of work, methods of payment of wages and rates of wages, and any other relevant information.", - "values": [ - "Economic Rights", - "Governance & Rule of Law" - ] - }, - { - "text": "Recalling the responsibility of the Democratic People\u2019s Republic of Korea to protect its population from crimes against humanity, and noting that the General Assembly in its resolution 72/188 recalled that the commission of inquiry had urged the leadership of the", - "values": [ - "Governance & Rule of Law" - ] - }, - { - "text": "Condemns all violent acts committed against the civilian population as such, in violation of international humanitarian law in situations of armed conflict, and calls for an effective response to such acts, in particular the immediate release of women and children taken hostage, including those subsequently imprisoned, in armed conflicts, including by strengthening international cooperation in this field;", - "values": [ - "Humanitarian", - "Violence" - ] - }, - { - "text": "Wastewater should not be seen as \"waste\" without further use. When properly treated, it can be reused for industrial cooling and processing, irrigation in agriculture, parks, and horticulture, and even drinking purposes. Wastewater also contains many resources that can be recovered, such as nutrients and organic matter.", - "values": [ - "Environment", - "Water & Sanitation" - ] - }, - { - "text": "Emphasizing that access to information on the Internet facilitates vast opportunities for affordable and inclusive education globally, thereby being an important tool to facilitate the promotion of the right to education, while underlining the need to address digital literacy and the digital divide, as it affects the enjoyment of the right to education,", - "values": [ - "Education", - "Equality & Inclusion" - ] - }, - { - "text": "Develop and apply gender-sensitive measures for the protection from, prevention and punishment of all forms of violence against women and girls in public and private spaces, including domestic violence, sexual harassment, trafficking in persons and femicide, among others, so as to promote the realization of women's and girls' economic rights and empowerment and facilitate women's full and productive employment and contribution to the economy, including by facilitating changes in gender stereotypes and negative social norms, attitudes and behaviours, inter alia, through promoting community mobilization, women's economic autonomy and the engagement of men and boys, particularly community leaders; and explore, where possible, measures to respond to the consequences of violence against women, such as employment protection, time off from work, awareness training, psychosocial services and social safety nets for women and girls who are victims and survivors of violence, and to foster their economic opportunities;", - "values": [ - "Social & Cultural Rights", - "Violence" - ] - }, - { - "text": "1. A request for arrest and surrender shall be made in writing. In urgent cases, a request may be made by any medium capable of delivering a written record, provided that the request shall be confirmed through the channel provided for in article 87, paragraph 1 (a).", - "values": [ - "Governance & Rule of Law" - ] - }, - { - "text": "[The Special Rapporteur perceives a crucial need for States, donors, international agencies and civil society to work collaboratively together, as substantial movement and migration across national borders will continue to define our globalized world. Their joint aim should be to build and sustain cohesive and resilient communities able to adapt in response to change. To this end, the Special Rapporteur recommends that exchange of good practice is increased and, at a minimum, all should look to:] \u2022\u00a0\u00a0 Make available and promote information/materials on education (and welfare) systems with respect to rights, opportunities and responsibilities in migrant languages and in accordance with migrant, refugee and asylum-seeker population needs.", - "values": [ - "Education", - "Movement" - ] - }, - { - "text": "In the 2008 report, emergencies were defined as any crisis situations due to natural disasters, or to armed conflict, which may be international (including military occupation) or internal, as defined in international humanitarian law, or post-conflict situations. It was pointed out in the report that, besides being a widely recognized State obligation, ensuring adequate education was indispensable for preventing emergencies and ensuring success in peacebuilding and recovery efforts. It was underlined, however, that education was frequently found to be interrupted, delayed or even denied during emergencies and in the reconstruction process. In the report a number of recommendations were presented to States and intergovernmental and non-governmental organizations for better protecting education and ensuring its inclusion as an integral part of the humanitarian response to conflicts and natural disasters.", - "values": [ - "Education", - "Humanitarian" - ] - }, - { - "text": "States should reach out directly to women and girls with disabilities, especially when cultural and social backgrounds make it unsafe for them to participate in open consultations. States must also establish adequate measures to guarantee that the perspectives of women and girls with disabilities are fully taken into account and that they will not suffer any reprisals for expressing their viewpoints and concerns, especially in relation to sexual and reproductive rights, gender-based violence and sexual violence", - "values": [ - "Equality & Inclusion", - "Health" - ] - }, - { - "text": "In those States in which ethnic, religious or linguistic minorities exist, persons belonging to such minorities shall not be denied the right, in community with the other members of their group, to enjoy their own culture, to profess and practise their own religion, or to use their own language.", - "values": [ - "Civil & Political Rights", - "Social & Cultural Rights" - ] - }, - { - "text": "Governments should only classify those data which are proven to cause direct harm to national security and other vital interests of the State. Classified data should be subject to regular review and be declassified if confidentiality is no longer necessary. Clear classification criteria and a register of classified information should be established by law and published.", - "values": [ - "Governance & Rule of Law" - ] - }, - { - "text": "States parties should ensure the realization of the right to food and nutrition of rural women within the framework of food sovereignty and ensure that they have the authority to manage and control their natural resources.", - "values": [ - "Equality & Inclusion", - "Food & Nutrition", - "Gender" - ] - }, - { - "text": "[Invites Governments, as well as the private sector, non-governmental organizations and other actors of civil society:] To strive to ensure that information about candidates, political party platforms, voting procedures, including voter registration, and electoral law is available to women on an equal basis with men;", - "values": [ - "Civil & Political Rights", - "Equality & Inclusion", - "Gender" - ] - }, - { - "text": "Reaffirming that no one shall be subjected to torture or to other cruel, inhuman or degrading treatment or punishment,", - "values": [ - "Civil & Political Rights" - ] - }, - { - "text": "[The Commission [...] urges Governments [...] to:] Take measures to ensure that the specific needs of girls affected by armed conflict and natural disasters are taken into account in the delivery of humanitarian assistance and finding durable solutions, including in refugee camps and camps for the internally displaced and in reconstruction efforts, and ensure that such assistance is provided in full compliance with international law, and in accordance with General Assembly resolution 46/182 in the context of United Nations humanitarian assistance;", - "values": [ - "Equality & Inclusion", - "Movement" - ] - }, - { - "text": "We welcome the commitments voluntarily entered into at the United Nations Conference on Sustainable Development and throughout 2012 by all stakeholders and their networks to implement concrete policies, plans, programmes, projects and actions to promote sustainable development and poverty eradication. We invite the Secretary-General to compile these commitments and facilitate access to other registries that have compiled commitments, in an Internet-based registry. The registry should make information about the commitments fully transparent and accessible to the public, and it should be periodically updated.", - "values": [ - "Equality & Inclusion", - "Governance & Rule of Law" - ] - }, - { - "text": "By 2030, substantially increase the supply of qualified teachers, including through international cooperation for teacher training in developing countries, especially least developed countries and small island developing States", - "values": [ - "Education" - ] - }, - { - "text": "Child marriage is often accompanied by early and frequent pregnancy and childbirth, resulting in higher than average maternal morbidity and mortality rates. Pregnancy-related deaths are the leading cause of mortality for girls between 15 and 19 years of age, whether married or unmarried, around the world. Infant mortality among the children of very young mothers is higher (sometimes as much as two times higher) than among those of older mothers. In cases of child and/or forced marriage, in particular where the husband is significantly older than the wife, and where girls have limited education, the girls generally have limited decision-making power in relation to their own lives. Child marriage also contributes to higher rates of school dropout, especially among girls, forced exclusion from school and an increased risk of domestic violence, in addition to limiting the enjoyment of the right to freedom of movement.", - "values": [ - "Education", - "Harmful Practices", - "Health", - "Violence" - ] - }, - { - "text": "[The Commission urges Governments, at all levels [...] to take the following actions:] [Realizing women's and girls' full enjoyment of all human rights]: Recognize that caregiving is a critical societal function and therefore emphasize the need to value, reduce and redistribute unpaid care work by prioritizing social protection policies, including accessible and affordable social services, including care services for children, persons with disabilities, older persons and persons living with HIV and AIDS, and all others in need of care; the development of infrastructure, including access to environmentally sound time- and energy-saving technologies; employment policies, including family-friendly policies with maternity and paternity leave and benefits; and the promotion of the equal sharing of responsibilities and chores between men and women in caregiving and domestic work to reduce the domestic work burden of women and girls and to change the attitudes that reinforce the division of labour based on gender", - "values": [ - "Economic Rights", - "Gender" - ] - }, - { - "text": "The role of CFS should gain in importance in the future, as we become more aware of the interdependence of efforts at the local, national, regional and global levels, and of the need to accelerate learning. Indeed, just as local-level initiatives cannot succeed without support from national-level right-to-food strategies, efforts at the domestic level require international support to bear fruit. Together with the Special Rapporteur on extreme poverty and human rights, the Special Rapporteur has argued, for instance, for the establishment of a Global Fund for Social Protection, for overcoming financial obstacles and building international solidarity in order to fulfil the right to food and the right to social protection in developing countries, particularly those where vulnerability to covariant risks such as drought and food price volatility are high. The initiative was presented at the thirty-ninth plenary session of CFS in October 2012, and to the Social Protection Inter-Agency Cooperation Board, as well as in various other forums. The proposal was supported by the European Parliament and was among the key recommendations that emerged from global consultations led by the High-level Panel of Eminent Persons on the Post-2015 Development Agenda", - "values": [ - "Food & Nutrition", - "Governance & Rule of Law" - ] - }, - { - "text": "The Special Rapporteur remains concerned about the continuing existence and the use of flawed domestic laws that purport to combat hate speech but are in fact used to suppress critical or opposing voices. Such laws frequently carry disproportionate sanctions, such as hard labour, long prison sentences, life imprisonment or even capital punishment, for vague offences such as \"inciting religious unrest\" in Turkmenistan, \"promoting division between religious believers and non-believers\" in Viet Nam, \"incitement to violation\" in the Islamic Republic of Iran, \"instigating hatred and disrespect against the ruling regime\" in Bahrain, \"inciting subversion of State power\" in China, \"incitement to offences that damage public tranquillity\" in Myanmar, \"blasphemy\" in Pakistan, \"inciting violence against a religious authority\" in Angola, \"causing national, racial or religious hate, discord and intolerance\" in the former Yugoslav Republic of Macedonia (to suppress any criticism of the Macedonian Orthodox Church) and \"misrepresenting events and inciting violence\" in Somalia (to arrest and detain independent journalists).", - "values": [ - "Governance & Rule of Law", - "Social & Cultural Rights" - ] - }, - { - "text": "Pressure on the environment may result from rapid population growth, distribution and migration, especially in ecologically vulnerable ecosystems. Urbanization and policies that do not recognize the need for rural development also create environmental problems.", - "values": [ - "Environment" - ] - }, - { - "text": "Hate speech in public spheres, in mainstream and social media and by influential figures, including religious leaders, public officials or political groups, can lead directly or indirectly to violence against minorities. Increasing levels of hate speech can be an important indicator of possible violence. Monitoring hate speech and incitement to violence offers the opportunity to be aware of and respond appropriately to specific security risks. The Rwandan genocide provides clear evidence of the power of hate speech to infect societies, motivating thousands to kill neighbours and former friends. Equally, in the Central African Republic, hate speech is recognized as playing a role in inflaming and fuelling violence and has been described by United Nations officials as a possible precursor to serious human rights violations, including potential genocide.", - "values": [ - "Violence" - ] - }, - { - "text": "2. Notwithstanding the provisions of paragraph 1 of this article, a person may be deprived of the nationality of a Contracting State: (b) Where the nationality has been obtained by misrepresentation or fraud.", - "values": [ - "Civil & Political Rights", - "Governance & Rule of Law" - ] - }, - { - "text": "Urges Governments to devise, enforce and strengthen effective gender- and age-sensitive measures to combat and eliminate all forms of trafficking in women and girls, including for sexual and economic exploitation, as part of a comprehensive anti-trafficking strategy that integrates a human rights perspective and takes into account the situation of trafficked victims, and to draw up, as appropriate, national action plans in this reg", - "values": [ - "Gender", - "Violence" - ] - }, - { - "text": "TAKING INTO ACCOUNT that a pluralistic and democratic society must respect the cultural, linguistic, religious, gender and sexual identity of every person, whether belonging to a minority or not, and create the conditions that will enable that person to express, preserve, and develop his or her identity;", - "values": [ - "Equality & Inclusion", - "Social & Cultural Rights" - ] - }, - { - "text": "Finally, in her 2009 annual report, the OSCE Special Representative makes the protection of children from trafficking her first priority. She posits the process of best interest determination as a central tool in ensuring that all aspects of the child's situation are considered, insisting that this process must especially be made a prerequisite before a child is returned or repatriated.", - "values": [ - "Governance & Rule of Law", - "Violence" - ] - }, - { - "text": "Also recognizes the contribution made thus far by early warning systems, and underlines that the reliability and timeliness of such systems should be strengthened at the national, regional and international levels, with a focus on countries that are particularly vulnerable to price shocks and food emergencies;", - "values": [ - "Humanitarian" - ] - }, - { - "text": "As noted by the Secretary-General, certain cultural norms and beliefs are the causal factors of harmful practices resulting in violence against women, such as crimes committed in the name of \"honour\". Honour killings have been characterized as being among the most severe manifestations of harmful practices. Murder to cleanse family honour is committed with high levels of impunity in many parts of the world. Although honour crimes have mainly occurred in the vast zone spreading from the Sahara to the Himalayas, it also occurs in other regions and countries with migrant communities.", - "values": [ - "Harmful Practices", - "Social & Cultural Rights" - ] - }, - { - "text": "[Actions to be taken by States parties to human rights instruments:] Take note of the report of the United Nations Secretariat to the Committee on the Elimination of Discrimination against Women on reservations to the Convention on the Elimination of All Forms of Discrimination against Women35 and encourage similar studies by other treaty bodies, as well as by the Sixth Committee of the General Assembly, especially with respect to their effect on women's and girls' enjoyment of their human rights;", - "values": [ - "Equality & Inclusion", - "Gender" - ] - }, - { - "text": "Investing in the right to health of adolescents offers huge potential to capitalize on positive investments in early years, while providing the opportunity to ameliorate the impact of negative early experiences and building resilience to mitigate future harm.", - "values": [ - "Health" - ] - }, - { - "text": "Invites the Special Rapporteur on the human rights of internally displaced persons, in accordance with his mandate, to continue to analyse the particular human rights challenges faced by internally displaced persons outside camps and in urban settings, while taking into account the situation of the host communities concerned, to identify challenges and good practices and, in close consultation with Member States, to make proposals with a view to developing a more systematic approach to the protection of their human rights and the promotion of durable solutions in the context of his participation in the Inter-Agency Standing Committee and in his regular reporting to the General Assembly and the Human Rights Council.", - "values": [ - "Governance & Rule of Law", - "Movement" - ] - }, - { - "text": "That the importance of education is not only a right in itself, but also is essential for the enjoyment of all other rights must be recognized in the post-2015 development agenda. As already mentioned, poverty cannot be eradicated without education. The key role of education should be clearly recognized for the empowerment of women and girls. Unemployed youth and adults require additional education and training to develop skills and find decent work. Education can promote values necessary for creating democratic, stable and peaceful societies.", - "values": [ - "Education" - ] - }, - { - "text": "Human rights bodies thus understand sanitation broadly to include the treatment and disposal or reuse of excreta and associated wastewater. Sanitation does not stop simply with the use of latrines or toilets, but includes the safe disposal or reuse of faeces, urine and wastewater. Such a broad understanding is warranted, as sanitation concerns not only one's own right to use a latrine or toilet, but also the rights of other people, in particular their right to health, on which there might be negative impacts.", - "values": [ - "Health", - "Water & Sanitation" - ] - }, - { - "text": "Reiterates the importance of ensuring that children continue to have access to basic services during the conflict and post-conflict periods, including, inter alia, education and health care;", - "values": [ - "Humanitarian" - ] - }, - { - "text": "1. Everyone lawfully within the territory of a State shall, within that territory, have the right to liberty of movement and freedom to choose his residence.", - "values": [ - "Civil & Political Rights", - "Movement" - ] - }, - { - "text": "Women and men are equal before the law and shall have the right to equal protection and benefit of the law. States Parties shall take all appropriate measures to ensure: effective access by women to judicial and legal services, including legal aid;", - "values": [ - "Equality & Inclusion", - "Gender" - ] - }, - { - "text": "Equality also requires health policy to be based solely on women's health needs and not to be influenced by instrumentalization and politicization. Political contestation around rights to reproductive and sexual health remains a global challenge, resulting in women paying a high price in terms of their health and lives. In adopting the 2030 Agenda for Sustainable Development, States committed to ensuring universal access to sexual and reproductive health-care services, including for family planning, information and education, and the integration of reproductive health into national strategies and programmes. A strong commitment to women's sexual and reproductive rights in international and national law, policies and programmes is crucial for achieving gender equality and ensuring women's and girl's right to health and well-being.", - "values": [ - "Gender", - "Health" - ] - }, - { - "text": "Recognizes that poverty, inequality, global health threats, natural disasters, humanitarian emergencies and forced displacement, as well as violence, spiralling armed conflict and terrorism, threaten to reverse much of the development progress made, and that natural resource depletion, food and water scarcity and the adverse impact of environmental degradation, climate change and urban development pose additional challenges, and therefore calls upon States, as appropriate, to take further effective measures and actions, in conformity with international law, to remove obstacles and constraints, and to strengthen support to meeting the special needs of children, in particular the most vulnerable, with a view to provide all children with a nurturing environment for the full realization of their rights and capabilities;", - "values": [ - "Governance & Rule of Law", - "Social & Cultural Rights" - ] - }, - { - "text": "It is clear that international investment and free trade agreements have significant potential to contribute to violations of the rights of indigenous peoples. The threat posed by current regimes lies both in their direct impact on indigenous peoples rights and their contribution to systemic injustices and imbalances, which tend to disproportionally impact indigenous peoples as some of the most globally marginalized. For that reason the Special Rapporteur intends to dedicate ongoing attention to the issue during the fulfilment of the mandate.", - "values": [ - "Economic Rights", - "Governance & Rule of Law" - ] - }, - { - "text": "3. Subject to the legal principles of the Party, the liability of a legal person may be criminal, civil or administrative.", - "values": [ - "Governance & Rule of Law" - ] - }, - { - "text": "[The Commission urges Governments [...] to take the following actions:] (z) Establish and fund active labour market policies devoted to the promotion of full and productive employment and decent work for all, including the full participation of women in all international and national development and poverty eradication strategies, the creation of more and better jobs for women, both urban and rural, and their inclusion in social protection and social dialogue;", - "values": [ - "Economic Rights", - "Gender" - ] - }, - { - "text": "Numerous questionnaire respondents highlighted the adverse effects that natural resource extraction projects operating in indigenous territories had on important aspects of indigenous culture, such as language and moral values. Additionally, respondents noted that projects had led to the destruction of places of culture and spiritual significance for indigenous peoples, including sacred sites and archaeological ruins.", - "values": [ - "Environment", - "Social & Cultural Rights" - ] - }, - { - "text": "1. A State which becomes a Party to this Statute thereby accepts the jurisdiction of the Court with respect to the crimes referred to in article 5.", - "values": [ - "Governance & Rule of Law" - ] - }, - { - "text": "Reaffirming its commitment to realizing the right of everyone to education, and emphasizing that education shall be directed to the full development of the human person and his or her dignity and shall strengthen respect for all human rights and fundamental freedoms, and recalling that commitments made at the international level emphasize inclusive quality learning, including early childhood education, and universal access to complete, free and compulsory primary education as well as access to secondary, tertiary and vocational education and training and lifelong learning, as well as equal access to education and successful schooling for girls and women,", - "values": [ - "Education", - "Equality & Inclusion" - ] - }, - { - "text": "Calls upon all States to empower women, including through capacity-building efforts, as appropriate, to participate in the design and implementation of disarmament, non-proliferation and arms control efforts;", - "values": [ - "Equality & Inclusion", - "Gender" - ] - }, - { - "text": "Water scarcity and more frequent droughts are also expected in arid regions. If urgent additional climate change mitigation efforts are not initiated, heavy rainfall and resulting flooding could destroy entire crops as well as food stores and may affect agricultural land due to sedimentation. More frequent and intense extreme weather events will also complicate the logistics of food distribution during emergencies. In the short term, climate change is set to increase natural hazards, with more significant risks leading to environmental degradation over time.", - "values": [ - "Food & Nutrition", - "Water & Sanitation" - ] - }, - { - "text": "1. States Parties shall ensure that the right to health of women, including sexual and reproductive health is respected and promoted. This includes: e) the right to be informed on one's health status and on the health status of one's partner, particularly if affected with sexually transmitted infections, including HIV/AIDS, in accordance with internationally recognised standards and best practices;", - "values": [ - "Equality & Inclusion", - "Health" - ] - }, - { - "text": "Calls upon States to ensure that their armed forces and security forces, within their respective competencies under domestic law, make or, where relevant, continue their efforts to integrate practical measures for the protection of the wounded and sick and medical services into the planning and conduct of their operations;", - "values": [ - "Health", - "Humanitarian" - ] - }, - { - "text": "Urges States that are parties to an armed conflict to take all measures necessary, in a timely manner, to determine the identity, fate and whereabouts of women and children taken hostage, including those subsequently imprisoned, in armed conflicts, and to the greatest possible extent, to provide their family members, through the appropriate channels, with all relevant information they have on their fate and whereabouts;", - "values": [ - "Humanitarian" - ] - }, - { - "text": "In some countries, teachers are not sufficiently trained on equality and diversity issues, particularly those not of African descent working in schools with large populations of students of African descent. Many feel underprepared to teach of issues about African history and culture or to deal with the racism, racial discrimination, xenophobia and related intolerance faced by their pupils.", - "values": [ - "Education", - "Equality & Inclusion" - ] - }, - { - "text": "The above are broad and long-term measures that States affected by conflict must address progressively, with the sustained support of the international community. A number of more direct protective steps may be taken by national actors, with international support. During conflict, the creation of child protection networks may assist in helping communities to better protect their children. These networks alert the community to threats or violations and can help develop a community-based response to the consequences of violence. They can also help prevent abuses by raising awareness and forging linkages with entities that can provide protection. Being able to rely on a network of support makes children feel more secure and provides a mechanism for assistance when violations or abuses are committed against them.", - "values": [ - "Humanitarian" - ] - }, - { - "text": "2. The Committee shall consist of eighteen experts of high moral standing and recognized competence in the field covered by this Convention.1/ The members of the Committee shall be elected by States Parties from among their nationals and shall serve in their personal capacity, consideration being given to equitable geographical distribution, as well as to the principal legal systems.", - "values": [ - "Governance & Rule of Law" - ] - }, - { - "text": "The stark reality is that this right remains unfulfilled in many parts of the world, often owing to the higher risk of poverty experienced by migrant children as compared to national children. A study shows that migrant children are more likely than national children to live in overcrowded housing, which may have a negative impact on their development. The concern is heightened with respect to irregular migrant children, whose right to adequate housing is dictated by the conditions of social exclusion that their families are subjected to. The lack of access to adequate housing for irregular migrant parents means that their children are deprived of housing as well. The Special Rapporteur has also been informed of cases where the authorities are willing to provide housing assistance to irregular migrant children, but not to their families. This gives rise to difficult situations where children must either choose to live with their families at risk of homelessness, or separate from them to receive housing assistance.", - "values": [ - "Equality & Inclusion", - "Movement", - "Social & Cultural Rights" - ] - }, - { - "text": "Take all appropriate measures to recognize, reduce and redistribute women's and girls' disproportionate share of unpaid care and domestic work by promoting policies and initiatives supporting the reconciliation of work and family life and the equal sharing of responsibilities between women and men, through flexibility in working arrangements without reductions in labour and social protections, through the provision of infrastructure, technology and public services, such as water and sanitation, renewable energy, transport and information and communications technology, as well as accessible, affordable and quality childcare and care facilities and by challenging gender stereotypes and negative social norms and promoting men's participation and responsibilities as fathers and caregivers;", - "values": [ - "Economic Rights", - "Water & Sanitation" - ] - }, - { - "text": "Bearing in mind the following recommendations of the Parliamentary Assembly of the Council of Europe: Recommendation 1325 (1997) on traffic in women and forced prostitution in Council of Europe member states; Recommendation 1450 (2000) on violence against women in Europe; Recommendation 1545 (2002) on a campaign against trafficking in women; Recommendation 1610 (2003) on migration connected with trafficking in women and prostitution; Recommendation 1611 (2003) on trafficking in organs in Europe; Recommendation 1663 (2004) Domestic slavery: servitude, au pairs and mail-order brides;", - "values": [ - "Movement", - "Violence" - ] - }, - { - "text": "2. In any case, restrictive measures imposed on aliens or the employment of aliens for the protection of the national labour market shall not be applied to a refugee who was already exempt from them at the date of entry into force of this Convention for the Contracting State concerned, or who fulfils one of the following conditions:", - "values": [ - "Economic Rights", - "Movement" - ] - }, - { - "text": "The drugs trade typically uses children and adolescents for the most dangerous activities, such as monitoring territory, the transport and retail sale of drugs, or theft. Some children may end up being associated with criminal activities, including human trafficking, kidnapping and extortion and contract killings. Boys and girls may participate in human trafficking from an early age, as guides, lookouts or informants. Thereafter, they may be required to take care of safe houses and prevent escapes and later they may be armed and become involved in more dangerous tasks.", - "values": [ - "Economic Rights", - "Violence" - ] - }, - { - "text": "Requests Governments to promote and provide equal and equitable access for all persons without discrimination, throughout their life cycle, to social services related to health care, safe drinking water and safe sanitation, nutrition, food security, education programmes, including HIV prevention programmes, and social protection schemes, especially for women and girls living with or affected by HIV and AIDS;", - "values": [ - "Equality & Inclusion", - "Social & Cultural Rights" - ] - }, - { - "text": "Development assistance and cooperation fluctuate with donor countries' fiscal policies and public spending priorities. Data published by OECD shows that official development assistance provided by members of the Development Assistance Committee of OECD fell by nearly 3 per cent (to 133.5 billion) in 2011 compared to 2010. This was the first drop in assistance since 1997. While the water and sanitation sectors have not been as affected by decreasing aid commitments as other sectors, commitments to sanitation and water were already lower than those for most social sectors.", - "values": [ - "Governance & Rule of Law", - "Water & Sanitation" - ] - }, - { - "text": "In addition to legally binding treaties, the right to food has also been enunciated in various international standards, the most significant of which are the Voluntary Guidelines to Support the Progressive Realization of the Right to Adequate Food in the Context of National Food Security (Right to Food Guidelines). The Right to Food Guidelines were developed as a practical tool for States to assist them in implementing their obligations at the domestic level under article 11 of the Covenant. The year 2014 marked the tenth anniversary of the guidelines and provided an opportunity to evaluate the impact thereof on national implementation. The present report will highlight some examples of good practice in that regard", - "values": [ - "Food & Nutrition", - "Governance & Rule of Law" - ] - }, - { - "text": "Where there is opacity surrounding decisions at the political, macro or micro levels, corruption can flourish, go undetected and occur with impunity. Transparency unveils corruption and is inextricably linked to the right to access information, participation and accountability. Access to information and transparency laws provide a framework for addressing corrupt practices, while the regulations and monitoring arrangements are also vital. Transparency can often be enhanced by the participation of rights holders and civil society organizations in decision-making processes that may be prone to corrupt practices.", - "values": [ - "Civil & Political Rights", - "Governance & Rule of Law" - ] - }, - { - "text": "Human rights violations may result from misappropriation of resources allocated for the realization of the rights to water and sanitation. Corruption directly affects the available resources for basic service provision: in 2006 the World Bank estimated that there would be a loss of US$ 20 billion in financing over the next decade. Corruption increases the price of services, making them unaffordable, for example when bribes have to be paid. Corrupt practices disproportionately affect poor and marginalized groups, who lack the resources to pay bribes and the power and voice to oppose the vested interests of elites", - "values": [ - "Poverty", - "Water & Sanitation" - ] - }, - { - "text": "Also bearing in mind the United Nations Convention on the Rights of the Child, especially Article 34 thereof, the Optional Protocol on the sale of children, child prostitution and child pornography, the Protocol to Prevent, Suppress and Punish Trafficking in Persons, Especially Women and Children, supplementing the United Nations Convention against Transnational Organized Crime, as well as the International Labour Organization Convention concerning the Prohibition and Immediate Action for the Elimination of the Worst Forms of Child Labour;", - "values": [ - "Economic Rights", - "Violence" - ] - }, - { - "text": "[Urges States:] (a) To continue to strengthen policies relevant for women's economic empowerment aimed at addressing inequality affecting women and girls in access to and achievement in education at all levels, in particular to eliminate inequalities related to age, poverty, geographical location, language, ethnicity, religion and disability, adopting measures to promote non-discriminatory and gender-sensitive education that is free of gender-based stereotypes and broader career choices, scaling up strategies to encourage and support girls' participation in science and technology, promoting educational programmes in which girls are prepared to participate in decision-making at all levels, including in the economic field, and implementing initiatives to translate educational achievements of women into employment opportunities;", - "values": [ - "Economic Rights", - "Gender" - ] - }, - { - "text": "Reaffirming further its resolution 69/313 of 27\u00a0July 2015 on the Addis Ababa Action Agenda of the Third International Conference on Financing for Development, which is an integral part of the 2030 Agenda for Sustainable Development, supports and complements it, helps to contextualize its means of implementation targets with concrete policies and actions, and reaffirms the strong political commitment to address the challenge of financing and creating an enabling environment at all levels for sustainable development in the spirit of global partnership and solidarity,", - "values": [ - "Governance & Rule of Law" - ] - }, - { - "text": "The Commission notes that with regard to Millennium Development Goal 7 (environmental sustainability), while progress has been made globally in access to safe drinking water, progress on access to basic sanitation has been particularly slow, and the target is likely to be missed, with serious implications for women and girls, especially those living in vulnerable conditions. The Commission expresses concern that the lack of access to safe drinking water particularly affects women and girls and that they frequently bear the burden for its collection in rural and urban areas, and further recognizes the need for further improvement in this regard. The Commission further notes that the lack of adequate sanitation facilities disproportionately affects women and girls, including their labour force and school participation rates, and increases their vulnerability to violence. The Commission further notes that women and girls are often disproportionally affected by desertification, deforestation, natural disasters and climate change owing to gender inequalities and the dependence of many women on natural resources for their livelihoods.", - "values": [ - "Environment", - "Water & Sanitation" - ] - }, - { - "text": "For those living in poverty or without sufficient means, States should ensure health coverage or access to care to prevent discrimination (targets 1.3 and 3.8);", - "values": [ - "Equality & Inclusion", - "Governance & Rule of Law", - "Health", - "Poverty" - ] - }, - { - "text": "In some communities, honour is connected with virtue, good works, righteous behaviour and obligations to one's parents, older persons and the community. Honour-related killings have often been associated with religious beliefs. These, however, are traditional or cultural practices. Among some Asian tribes, honour (or izzat) is associated with the female body and therefore women and girls must be guarded, protected and passed on to another member of the tribe. A girl or woman dishonours her family and tribe if her body is violated, even by force, and the shame can be cleansed only through her death.", - "values": [ - "Harmful Practices", - "Social & Cultural Rights", - "Violence" - ] - }, - { - "text": "Hotlines allow the reporting of exploitative practices, often starting the law enforcement process. Two particular good examples are the INHOPE network and the Virtual Global Taskforce. INHOPE is a network of 51 hotlines covering 45 countries, principally in Europe and North America but it also includes hotlines in South America, Australia, New Zealand and South Africa. Its sister organization, the INHOPE Foundation, provides assistance to countries to develop hotlines and comply with INHOPE standards. Four hotlines have so far been established by the Foundation in Colombia, Kazakhstan, Peru and Thailand.", - "values": [ - "Governance & Rule of Law", - "Violence" - ] - }, - { - "text": "When a woman or a girl who was subjected to or refused to undergo a practice leaves her family or community to seek refuge, her decision to return must be supported by adequate national protection mechanisms. In assisting her in making this free and informed choice, the mechanisms are required to ensure her safe return and reintegration based on the principle of her best interest, including avoiding revictimization. Such situations require close follow-up and monitoring to ensure that victims are protected and enjoy their rights in the short term and the long term.", - "values": [ - "Harmful Practices", - "Movement" - ] - }, - { - "text": "Recognizing that sexual violence, particularly in conflict and post-conflict situations, affects victims, families, communities and societies, and stressing that effective remedies in those situations should include access to health care, psychosocial support, legal assistance and socioeconomic reintegration services for victims of sexual violence,", - "values": [ - "Violence" - ] - }, - { - "text": "Calls upon all States to take immediate steps to eliminate child hunger, including through the adoption or strengthening of national programmes to address food security and adequate livelihoods, as well as nutritional security, especially regarding vitamin A, iron and iodine deficiencies, the promotion of breastfeeding, as well as programmes, for example, school meal programmes, that should ensure adequate nutrition for all children;", - "values": [ - "Food & Nutrition", - "Health" - ] - }, - { - "text": "The Special Rapporteur draws attention to the precarious situation of the numerous indigenous women, particularly from Latin America and Asia, who serve as domestic workers, either in their home countries or as migrant workers. According to ILO estimates, there are a minimum of 53 million adult domestic workers in the world; 83 per cent of whom are women. It is unknown what percentage indigenous women constitute, but the sparse data available indicates that in some countries and regions they may actually constitute the majority. These women often face deplorable working conditions, labour exploitation and human rights abuses, frequently without legal recourse to remedy. In this context, the Special Rapporteur notes that the Domestic Workers Convention (ILO Convention No. 189) entered into force in September 2013. The Convention aims at extending basic labour rights to domestic workers around the globe and can be a potentially important instrument for indigenous women.", - "values": [ - "Economic Rights", - "Gender" - ] - }, - { - "text": "Take all appropriate measures to recognize, reduce and redistribute women's and girls' disproportionate share of unpaid care and domestic work by promoting policies and initiatives supporting the reconciliation of work and family life and the equal sharing of responsibilities between women and men, through flexibility in working arrangements without reductions in labour and social protections, through the provision of infrastructure, technology and public services, such as water and sanitation, renewable energy, transport and information and communications technology, as well as accessible, affordable and quality childcare and care facilities and by challenging gender stereotypes and negative social norms and promoting men's participation and responsibilities as fathers and caregivers;", - "values": [ - "Economic Rights", - "Gender" - ] - }, - { - "text": "4. States Parties shall take all appropriate measures with a view to achieving full realisation of this right to gainful employment and shall in particular: d) Foster greater linkages between the labour market and the education and training system to ensure that curricula are aligned to the needs of the labour market and that youth are being trained in fields where employment opportunities are available or are growing;", - "values": [ - "Economic Rights", - "Education" - ] - }, - { - "text": "With a view to ensuring the effective exercise of the right to bargain collectively, the Parties undertake:\n3. to promote the establishment and use of appropriate machinery for conciliation and voluntary arbitration for the settlement of labour disputes; and recognise:", - "values": [ - "Governance & Rule of Law" - ] - }, - { - "text": "While there has been a trend towards greater domestic financing over the past decade, international aid remains the primary source of funding for the water and sanitation sector in many developing countries and for some countries in transition. Meanwhile, the share of international aid going to water and sanitation has decreased over the past decade and deserves higher priority in funding given the significant benefits brought by enhanced access (see below).", - "values": [ - "Governance & Rule of Law", - "Water & Sanitation" - ] - }, - { - "text": "\nOften the underlying motivation of these measures is to reduce the visibility of poverty in the city and attract investments, development and (non-poor) citizens to the city centres. These aims are not legitimate under human rights law and they do not justify the severe sanctions that are often imposed through these regulations.", - "values": [ - "Governance & Rule of Law", - "Poverty" - ] - }, - { - "text": "Underlining the importance of taking into account the root causes and consequences of migration, and acknowledging that poverty, in particular the feminization of poverty, underdevelopment, lack of opportunity, poor governance and environmental factors are among the drivers of migration,", - "values": [ - "Environment", - "Gender", - "Movement", - "Poverty" - ] - }, - { - "text": "Encourages the international community to cooperate to mobilise adequate and sustained support to enable the sustainable reintegration of refugees following their voluntary return, in particular through strategies with the enhanced involvement of development actors working in cooperation with UNHCR and other humanitarian actors and concerned States, and with appropriate links between humanitarian and development activities;", - "values": [ - "Humanitarian", - "Movement" - ] - }, - { - "text": "A lack of laws regulating political financing and requiring full disclosure of information on the functioning of political organizations can also give rise to the suggestion or appearance of corruption, causing public mistrust in the political process. Research shows that in the vast majority of European countries, more than 50 per cent of people believe political parties to be \"corrupt\" or \"extremely corrupt\" because of illicit financing practices. The perception of widespread political corruption as a result of the failure to regulate political financing often precipitates demonstrations and unrest in the lead-up to elections.", - "values": [ - "Economic Rights", - "Governance & Rule of Law" - ] - }, - { - "text": "Promote a socially responsible and accountable private sector that acts in line with, among others, the Guiding Principles on Business and Human Rights: Implementing the United Nations \"Protect, Respect and Remedy\" Framework, the International Labour Organization Declaration on Fundamental Principles and Rights at Work, labour, environmental and health standards, and the Women's Empowerment Principles established by the United Nations Entity for Gender Equality and the Empowerment of Women (UN-Women) and the Global Compact, in order to promote the economic empowerment of women in the changing world of work and achieve gender equality and the empowerment of women and girls and the realization of their full and equal enjoyment of all human rights and fundamental freedoms;", - "values": [ - "Economic Rights", - "Gender" - ] - }, - { - "text": "Reaffirming also its resolution 19/9 of 22 March 2012, in which it took into consideration the fact that persons without birth registration may be vulnerable to statelessness and associated lack of protection,", - "values": [ - "Civil & Political Rights" - ] - }, - { - "text": "Profoundly concerned also that the situation of children in many parts of the world remains critical, in an increasingly globalized environment, as a result of the persistence of poverty, social inequality, inadequate social and economic conditions, pandemics, in particular HIV/AIDS, malaria and tuberculosis, non-communicable diseases, lack of access to safe drinking water and sanitation, environmental damage, natural disasters, armed conflict, foreign occupation, displacement, violence, terrorism, abuse, trafficking in children and their organs, all forms of exploitation, commercial sexual exploitation of children, child prostitution, child pornography and child sex tourism, neglect, illiteracy, hunger, intolerance, discrimination, racism, xenophobia, gender inequality, disability and inadequate legal protection, and convinced that urgent and effective national and international action is called for,", - "values": [ - "Environment", - "Equality & Inclusion", - "Gender", - "Health", - "Humanitarian", - "Poverty", - "Violence", - "Water & Sanitation" - ] - }, - { - "text": "Some parents take out loans against their children's labour. Other parents sell their children and, upon their arrival in the mines, the children are charged exorbitant prices for their transportation to the mines, food and tools by the employer or middleman. In both these instances, the children are often unable to leave the mines or quarries until they have paid off the debt owed to the middleman or employer. In majority of the cases, children become bonded as a result of their parents' debt. Bonded labour is prohibited under the 1956 Supplementary Convention. Many children report not being able to save or even earn enough money to send back home. This results in them being unable to leave their situation until their debt is paid. In 2010, the Special Rapporteur received information that Bangladeshi and Nepali children were being purchased by middlemen or abducted and sold by gangs to mining employers in India. The price of the child varied from 50-75 USD. According to the information received, the children are forced to work to pay off their debt. The middlemen bring both boys and girls to work in the mines. The girls living and working in the mines are often sexually abused by adult mine workers and employers.", - "values": [ - "Economic Rights", - "Violence" - ] - }, - { - "text": "Adopt national gender-responsive migration policies and legislation, in line with relevant obligations under international law, to promote the economic empowerment of women migrant workers in all sectors and protect their human rights, regardless of migration status; recognize the skills and education of women migrant workers and, as appropriate, facilitate their productive employment, decent work and integration into the labour force, including in the fields of education and science and technology;", - "values": [ - "Gender", - "Movement" - ] - }, - { - "text": "Eliminate occupational segregation by addressing structural barriers, gender stereotypes and negative social norms, promoting women's equal access to and participation in labour markets and in education and training, supporting women so as to diversify their educational and occupational choices in emerging fields and growing economic sectors, such as science, technology, engineering and mathematics and information and communications technology, recognizing the value of sectors that have large numbers of women workers;", - "values": [ - "Economic Rights", - "Social & Cultural Rights" - ] - }, - { - "text": "Reaffirming that women are key contributors to the economy and to combating poverty through both remunerated and unremunerated work at home, in the community and in the workplace and that the empowerment of women is a critical factor in the eradication of poverty,", - "values": [ - "Economic Rights", - "Gender", - "Poverty" - ] - }, - { - "text": "[The following types of tenure, among others, should be promoted, strengthened and protected, as appropriate in the given context:] Freehold; and", - "values": [ - "Governance & Rule of Law" - ] - }, - { - "text": "4. States Parties shall take all appropriate measures with a view to achieving full realisation of this right to gainful employment and shall in particular: c) Develop measures to regulate the informal economy to prevent unfair labour practices where the majority of youth work;", - "values": [ - "Economic Rights", - "Equality & Inclusion" - ] - }, - { - "text": "[The meeting called for a multidimensional strategy and:] Strengthening the crucial role of teachers and school staff who need to be provided with the necessary skills, training, support and resources;", - "values": [ - "Education" - ] - }, - { - "text": "The link between land degradation and climate change requires attention and focus from the parties to the United Nations Convention to Combat Desertification in Those Countries Experiencing Serious Drought and/or Desertification, Particularly in Africa and the United Nations Framework Convention on Climate Change. The United Nations Convention to Combat Desertification was originally designed \"to forge a global partnership to reverse and prevent desertification/land degradation and to mitigate the effects of drought in affected areas in order to support poverty reduction and environmental sustainability\". With some 250 million people and a third of the Earth's land surface affected by desertification, the parties to the Convention have recently made significant strides towards addressing this challenge in the context of food security and climate change. Given that more than 75 per cent of the world's poorest people live in rural areas and that 2.5 billion people live on small farms and are entirely dependent on agriculture for their survival, the fact that 30 per cent of the Earth's surface is affected by the degradation of fragile drylands poses a significant problem. Poverty and food security should be addressed by adopting sustainable land management practices and the collaborative work by the parties to the two important international conventions is encouraging. The inclusion of a human rights approach to this work will introduce a climate-justice dimension that will be of benefit to people living in acute vulnerability.", - "values": [ - "Environment" - ] - }, - { - "text": "[The Commission urges governments, at all levels[...] to take the following actions:] [Addressing structural and underlying causes and risk factors so as to prevent violence against women and girls]: Develop policies and programmes, giving priority to formal and informal education programmes that support girls and enable them to acquire knowledge, develop self-esteem and take responsibility for their own lives, including access to a sustainable livelihood; and place special focus on programmes to educate women and men, especially parents and caregivers, on the importance of the physical and mental health and well-being of girls, including the elimination of child, early and forced marriage, violence against women and girls, female genital mutilation, child sexual exploitation, including commercial sexual exploitation, sexual abuse, rape, incest and abduction, and the elimination of discrimination against girls such as in food allocation", - "values": [ - "Equality & Inclusion", - "Gender" - ] - }, - { - "text": "[On the basis of the foregoing remarks, the Special Rapporteur considers that:] With respect to curricular content, some programmes are still based on an erroneous and partial understanding and do not meet the obligation to provide a scientific, democratic and pluralistic education that is free of prejudice and stereotypes.", - "values": [ - "Education", - "Equality & Inclusion" - ] - }, - { - "text": "The Special Rapporteur nevertheless is mindful that, despite positive measures like tax exemptions, smaller associations have found it increasingly difficult to operate as more governments cut budgets for international cooperation and shift their priorities to \"aid for trade\", in which businesses are seen as an important partner.", - "values": [ - "Economic Rights" - ] - }, - { - "text": "Considering that trafficking in human beings may result in slavery for victims;", - "values": [ - "Economic Rights", - "Violence" - ] - }, - { - "text": "Articles 6 to 10 of the International Covenant on Economic, Social and Cultural Rights recognize the rights of everyone to (a) work which they freely choose or accept; (b) enjoy just and favourable conditions of work, including equal remuneration for work of equal value; (c) form and join trade unions; (d) social security, including social insurance; (e) the special protection from economic and social exploitation of children and young persons.", - "values": [ - "Economic Rights", - "Equality & Inclusion" - ] - }, - { - "text": "Deploring practices of forced displacement and their negative consequences for the enjoyment of fundamental human rights by large groups of populations,", - "values": [ - "Governance & Rule of Law", - "Movement" - ] - }, - { - "text": "[Article 16] [States parties shall take all appropriate measures to eliminate discrimination against women in all matters relating to marriage and family relations and in particular shall ensure, on a basis of equality of men and women:] The same right to enter into marriage;", - "values": [ - "Equality & Inclusion" - ] - }, - { - "text": "Some countries with a record of attacks against persons with albinism have identified as a major problem the ambiguity between witchcraft on the one hand and the practice of traditional, herbal or alternative medicine on the other. This is further complicated by the secrecy surrounding witchcraft and the resulting difficulty in identifying its real practitioners in all cases. These matters raise the question of whether and how these occupations ought to be defined and regulated as a means of preventing human rights violations allegedly and actually committed by their practitioners. There is also the issue of whether witchcraft beliefs should be given any form of legal character or recognition when it is largely a supernatural phenomenon. Often, these issues are further complicated by the fact that many legal instruments addressing witchcraft are outdated and disconnected from current social realities.", - "values": [ - "Governance & Rule of Law", - "Health" - ] - }, - { - "text": "Regretfully, these three Durban Action Plan targets are still far from being achieved. However, a number of steps have been taken by the IUCN community towards their achievement and new resolutions have been adopted by the World Conservation Congress, including the endorsement of the United Nations Declaration on the Rights of Indigenous People in resolution 4.052 (2008), calling upon all IUCN members to apply it in their respective activities. At the World Parks Congress held in Sydney, Australia, in 2014, IUCN members reiterated in the \"Promise of Sydney Vision\" their commitment to working in partnership with indigenous peoples, recognizing their long traditions and knowledge and collective rights to land, water, natural resource and culture.", - "values": [ - "Equality & Inclusion", - "Social & Cultural Rights" - ] - }, - { - "text": "Such a system must include safeguards against potential negative influences of market forces and powerful economic actors in the food and nutrition industries with respect to the human right to adequate food and nutrition, and promoting a system to manage conflicts of interest that arise from private sector involvement in nutrition initiatives.", - "values": [ - "Economic Rights", - "Food & Nutrition" - ] - }, - { - "text": "States should implement article 32 of the Convention to ensure the prohibition of economic exploitation and hazardous work for children. Some children are above the minimum working age, in line with international standards, and therefore can be legitimately working as employees, while still needing to be protected, for instance, from work that is hazardous to their health, safety or moral development and ensuring that their rights to education, development and recreation are promoted and protected. States must set a minimum age for employment; appropriately regulate working hours and conditions; and establish penalties to effectively enforce article 32. They must have functioning labour inspection and enforcement systems and capacities in place. States should also ratify and enact into domestic law both of the fundamental ILO conventions relating to child labour. Under article 39, States must take all appropriate measures to promote the physical and psychological recovery and social reintegration of a child who has experienced any form of violence, neglect, exploitation, or abuse, including economic exploitation.", - "values": [ - "Economic Rights", - "Violence" - ] - }, - { - "text": "In turn, the private sector must fully comply with all relevant international human rights and labour standards and fully implement the Respect, Protect and Remedy framework within the Guiding Principles on Business and Human Rights in relation to migrant workers, by, inter alia, developing a zero-tolerance policy on the payment of recruitment fees by workers, auditing supply chains and ensuring human rights due diligence with all contractors and subcontractors.", - "values": [ - "Economic Rights", - "Governance & Rule of Law", - "Movement" - ] - }, - { - "text": "Urges Member States to engage actively with international organizations and other stakeholders, where needed, in support of national plans to improve nutrition in poor households, including during pregnancy and lactation, and urges Member States, in particular countries with a high burden of maternal and child undernutrition, to consider implementing the Scaling Up Nutrition framework and road map;", - "values": [ - "Food & Nutrition", - "Poverty" - ] - }, - { - "text": "Businesses, whose decisions \u201ccan profoundly affect the dignity and rights of individuals and communities\u201d, also have human rights responsibilities. Yet the State-centric nature of the human rights regime largely fails to account for the considerable role that the business sector plays in the violation of human rights. The inability of the regime to address non-State actors is particularly problematic given that the pesticide industry is dominated by a few transnational corporations that wield extraordinary power over global agrochemical research, legislative initiatives and regulatory agendas.", - "values": [ - "Economic Rights", - "Food & Nutrition" - ] - }, - { - "text": "It is imperative that schools and other educational facilities be considered as zones of peace for children - safe havens even in contexts of conflict and instability. The concept of schools as zones of peace should extend also to school instruction and curricula, with emphasis on peace education and fostering cultures of tolerance. There are examples in numerous contexts of educational institutions being hotbeds for radicalization and recruitment of children, a trend that must be countered.", - "values": [ - "Education", - "Humanitarian" - ] - }, - { - "text": "[By Governments, in cooperation with employers, workers and trade unions, international and non-governmental organizations, including women's and youth organizations, and educational institutions:] Promote women's central role in food and agricultural research, extension and education programmes;", - "values": [ - "Education", - "Food & Nutrition", - "Gender" - ] - }, - { - "text": "People must be able to voice their concerns freely. Those who are otherwise discriminated against or stigmatized may have particular difficulties in making their opinion heard as concerns the types of service that are acceptable to them. They must also be given the chance to present their opinions and influence decision-making. For decisions on types of services, women and girls' participation is essential.", - "values": [ - "Civil & Political Rights", - "Equality & Inclusion" - ] - }, - { - "text": "[The international community should:] The General Assembly and the Human Rights Council should monitor violations against environmental human rights defenders.", - "values": [ - "Environment" - ] - }, - { - "text": "To enable the sustainable provision of services, a number of factors within and beyond the water and sanitation sector must be reinforced, in particular, accountable governance. Water and sanitation services must be embedded in a sound legislative policy and regulatory framework. Institutions involved in the water and sanitation sectors must be responsive and accountable for their actions, and decisions must be participatory and transparent. All groups and individuals concerned and all relevant stakeholders must be provided with genuine opportunities to meaningfully participate and must be empowered in these processes.", - "values": [ - "Civil & Political Rights", - "Governance & Rule of Law", - "Water & Sanitation" - ] - }, - { - "text": "1. The Committee shall have competence solely in respect of enforced disappearances which commenced after the entry into force of this Convention.", - "values": [ - "Governance & Rule of Law", - "Movement", - "Violence" - ] - }, - { - "text": "The United Nations Framework Convention requires States to adopt national and regional programmes and policies to mitigate and adapt to climate change (art. 4 (1) (b)) and calls on them to take precautionary measures to anticipate, prevent or minimize its causes (art. 3 (3)). It recognizes that climate change is fundamentally an intergenerational problem and refers to the protection of future generations (art. 3 (1)). Articles 3 and 4 recognize the specific needs of developing countries, especially those that are particularly vulnerable to the adverse effects of climate change.", - "values": [ - "Environment", - "Governance & Rule of Law" - ] - }, - { - "text": "Parties shall ensure that victims have information on and access to applicable regional and international individual/collective complaints mechanisms. Parties shall promote the provision of sensitive and knowledgeable assistance to victims in presenting any such complaints.", - "values": [ - "Equality & Inclusion", - "Governance & Rule of Law" - ] - }, - { - "text": "From this perspective, the Special Rapporteur believes that it is important to address the lack of regulations and labour rights as one of the key structural factors fostering trafficking in persons, whether for sexual exploitation or labour exploitation. In destination countries, the exploitation of migrant workers often takes place in the context of economic activity that is illegal or informal, or poorly regulated or unregulated, or in sectors in which it is difficult to enforce regulatory controls and profit margins are extremely low (CTOC/COP/WG.4/2010/3/para. 15). Indeed, studies show that the demand for exploitative labour or services is almost completely absent where workers are well unionized and labour standards are routinely monitored and enforced. Therefore, it is imperative to address the demand for cheap and exploitable labour and services through the framework of labour rights protection and migration management. A good example of regulation in sectors where trafficked persons are found is the introduction by the Government of the United Kingdom of Great Britain and Northern Ireland of the Gangmasters (Licensing) Act in 2004, which created a compulsory licensing system for all employment agents supplying workers for agricultural activities, gathering shellfish and related processing and packaging activities, supervised by a special licensing authority. Thus, reforming employment laws to check abuses in sectors that have formerly gone unpoliced, such as domestic work in private houses or training and deploying labour inspectors or other officials to check the contracts and working conditions of migrant workers is imperative for preventing trafficking for exploitative labour.", - "values": [ - "Economic Rights", - "Movement", - "Violence" - ] - }, - { - "text": "The Declaration on the Rights of Persons Belonging to National or Ethnic, Religious and Linguistic Minorities and other international standards clearly establish the rights of linguistic minorities and the duties upon States. While they do not require that a State provide all activities and services in every language present within the State, in its assessment of how to fulfil its obligations, each State must take into account numerous factors relevant to linguistic minorities, including the number of language users and their distribution within the country. Each State can decide on approaches to how it implements the Declaration in practice, and it is reasonable to consider that greater attention and resources will be dedicated to certain traditionally present, commonly spoken, or geographically concentrated languages, for example, than are given to relatively newly established languages with few or dispersed users.", - "values": [ - "Equality & Inclusion", - "Governance & Rule of Law" - ] - }, - { - "text": "[By non-governmental organizations and the private sector:] Assume advocacy of environmental and natural resource management issues of concern to women and provide information to contribute to resource mobilization for environmental protection and conservation;", - "values": [ - "Environment", - "Gender" - ] - }, - { - "text": "The Commission on the Status of Women also welcomes the convening of the World Summit on Sustainable Development, to be held in Johannesburg, stresses the importance of gender mainstreaming throughout the process and urges gender balance in the composition of delegations as well as the involvement and full participation of women in the preparations, work and outcome of the World Summit, thus renewing the commitment to gender equality objectives at the international level. The Commission on the Status of Women further reiterates that all States and all people shall cooperate in the essential task of eradicating poverty as an indispensable requirement for sustainable development, in order to decrease the disparities in standards of living and better meet the needs of the majority of the people of the world", - "values": [ - "Gender", - "Poverty" - ] - }, - { - "text": "These policies not only severely impact the inclusiveness and diversity of cities, and increase the segregation and social exclusion of those living in poverty, but also represent serious obstacles to the enjoyment of rights to adequate housing, to work, to an adequate standard of living and to take part in cultural life.", - "values": [ - "Poverty", - "Social & Cultural Rights" - ] - }, - { - "text": "Adoptions and other similar legal proceedings performed in a State Party shall be subject to annulment if they had their origin or purpose in international traffic in minors.\nIn such annulment, the minor's best interests shall be taken into account at all times.\nThe annulment shall be subject to the law and the competent authorities of the State where the adoption or legal proceedings concerned took place.", - "values": [ - "Governance & Rule of Law", - "Movement", - "Violence" - ] - }, - { - "text": "A sizeable amount of literature sets out the relationship between deunionization and wage inequality. The authors of a World Bank study on the economic effect of adopting or enforcing the two core labour rights mentioned above reported \"very robust\" findings that unions compress wage inequality. In particular, they found that the wage differentials between skilled and unskilled workers were reduced when unions were present. This is consistent with another study, in relation to the United States, in which the authors concluded: \nWhen individual union membership is considered, union decline accounts for a fifth of the growth in men's earnings inequality. Adding normative and threat effects of unions on nonunion pay increases the effect of union decline on wage inequality from a fifth to a third. By this measure, the decline of the U.S. labor movement has added as much to men's wage inequality as has the relative increase in pay for college graduates. \nA 2013 study about Turkey shows that the fall of unionization in that country resulted in higher wage inequality during the period 1980-2008. Also relevant is the evidence that not only does deunionization affect wage inequality, but wage inequality also affects unionization.", - "values": [ - "Economic Rights", - "Governance & Rule of Law" - ] - }, - { - "text": "2. Members of the families of specified-employment workers shall be entitled to the rights relating to family members of migrant workers provided for in part IV of the present Convention, except the provisions of article 53.", - "values": [ - "Economic Rights", - "Governance & Rule of Law", - "Movement" - ] - }, - { - "text": "The Commission is deeply concerned that climate change poses a challenge to the achievement of sustainable development and that women and girls are disproportionately affected by the impacts of desertification, deforestation and natural disasters, persistent drought, extreme weather events, sea-level rise, coastal erosion and ocean acidification, and is also deeply concerned that the adverse impacts of climate change on women and girls, especially those living in poverty, can be exacerbated by gender inequality and discrimination, and expresses profound alarm that greenhouse gas emissions continue to rise globally, remains deeply concerned that all countries, particularly developing countries, are vulnerable to the adverse impacts of climate change and are already experiencing increased impacts, including persistent drought and extreme weather events, sea-level rise, coastal erosion and ocean acidification further threatening food security and efforts to eradicate poverty and achieve sustainable development, and in this regard emphasizes that adaptation to climate change represents an immediate and urgent global priority.", - "values": [ - "Environment", - "Gender" - ] - }, - { - "text": "The Commission is deeply concerned that climate change poses a challenge to the achievement of sustainable development and that women and girls are disproportionately affected by the impacts of desertification, deforestation and natural disasters, persistent drought, extreme weather events, sea-level rise, coastal erosion and ocean acidification, and is also deeply concerned that the adverse impacts of climate change on women and girls, especially those living in poverty, can be exacerbated by gender inequality and discrimination, and expresses profound alarm that greenhouse gas emissions continue to rise globally, remains deeply concerned that all countries, particularly developing countries, are vulnerable to the adverse impacts of climate change and are already experiencing increased impacts, including persistent drought and extreme weather events, sea-level rise, coastal erosion and ocean acidification further threatening food security and efforts to eradicate poverty and achieve sustainable development, and in this regard emphasizes that adaptation to climate change represents an immediate and urgent global priority.", - "values": [ - "Environment", - "Gender" - ] - }, - { - "text": "Promote women's economic rights and independence, including access to employment, appropriate working conditions and control over economic resources", - "values": [ - "Economic Rights", - "Gender" - ] - }, - { - "text": "The Commission expresses concern about high drop-out rates from school of female students in many parts of the world, especially at the secondary level, and including at the tertiary level, owing to multiple discrimination and factors that impede girls' participation in education.", - "values": [ - "Education", - "Equality & Inclusion" - ] - }, - { - "text": "RECALLING the 1948 Universal Declaration of Human Rights, the 1948 Convention on the Prevention and Punishment of the Crime of Genocide, the 1949 Four Geneva Conventions and the 1977 Additional Protocols to the Geneva Conventions, the 1951 United Nations Convention Relating to the Status of Refugees and the 1967 Protocol Relating to the Status of Refugees, the 1969 OAU Convention Governing the Specific Aspects of Refugee Problems in Africa, the1979 Convention on the Elimination of All Forms of Discrimination Against Women, the 1981 African Charter on Human and Peoples\u2019 Rights and the 2003 Protocol to the African Charter on Human and Peoples\u2019 Rights on the Rights of Women in Africa, the 1990 African Charter on the Rights and Welfare of the Child, the 1994 Addis Ababa Document on Refugees and Forced Population Displacement in Africa, and other relevant United Nations and African Union human rights instruments, and relevant Security Council Resolutions;", - "values": [ - "Governance & Rule of Law", - "Movement" - ] - }, - { - "text": "[In order to comply with their human rights obligations regarding the right to participation, the Special Rapporteur recommends States undertake the following actions:] Legal and institutional framework: Adopt a legal framework that includes the explicit right of individuals and groups to participate in the design, implementation and evaluation of any policy, programme or strategy that affects their rights, at the local, national and international levels. This should include:\na. Putting in place operational guidelines, policies and capacity-strengthening measures to enable public officials to apply these laws, and ensuring that these are adaptable to different contexts and allow innovation based on feedback from the ground.\nb. Requiring the establishment of inclusive participatory mechanisms at the local and national levels.\nc. Explicitly including the duty of policymakers and public officials to actively seek and support the meaningful participation of people living in poverty.\nd. Setting and enforcing minimum standards for participatory processes, including thresholds for participation of people living in poverty and disadvantaged groups such as women, minorities and persons with disabilities.", - "values": [ - "Civil & Political Rights", - "Equality & Inclusion", - "Governance & Rule of Law", - "Poverty" - ] - }, - { - "text": "[The Commission urges Governments, at all levels [...] to take the following actions, as appropriate:] [Strengthening national legislation, policies and programmes]: Incorporate systematically a gender perspective into budgetary policies at all levels to ensure that public resources in education, training, science, technology and research equally benefit women and men, girls and boys, and contribute to the empowerment of women and girls in particular;", - "values": [ - "Economic Rights", - "Gender" - ] - }, - { - "text": "Moreover, with universal pensions, men and women receive the same level of benefits irrespective of their record in the labour market, thus recognizing the contributions women make in unpaid work such as caregiving. In developing countries, universal pensions may be the only means by which most women can guarantee income in old age. Universal pensions are also crucial to older persons in countries with high HIV rates and migration as many people will call on grandparents (mainly women) to care for children.", - "values": [ - "Economic Rights", - "Equality & Inclusion" - ] - }, - { - "text": "Reiterating its call for a more concerted response by the international community to the needs of internally displaced persons while emphasizing that activities on their behalf must not undermine the institution of asylum,", - "values": [ - "Governance & Rule of Law", - "Movement" - ] - }, - { - "text": "[A supported decision-making regime comprises various support options which give primacy to a person's will and preferences and respect human rights norms. It should provide protection for all rights, including those related to autonomy (right to legal capacity, right to equal recognition before the law, right to choose where to live, etc.) and rights related to freedom from abuse and ill-treatment (right to life, right to physical integrity, etc.). Furthermore, systems of supported decision-making should not over-regulate the lives of persons with disabilities. While supported decision-making regimes can take many forms, they should all incorporate certain key provisions to ensure compliance with article 12 of the Convention, including the following:] Legal recognition of the support person(s) formally chosen by a person must be available and accessible, and States have an obligation to facilitate the creation of support, particularly for people who are isolated and may not have access to naturally occurring support in the community. This must include a mechanism for third parties to verify the identity of a support person as well as a mechanism for third parties to challenge the action of a support person if they believe that the support person is not acting in accordance with the will and preferences of the person concerned;", - "values": [ - "Equality & Inclusion", - "Governance & Rule of Law", - "Social & Cultural Rights", - "Violence" - ] - }, - { - "text": "[Actions to be taken by Governments, the United Nations system and civil society, as appropriate:] (d) Eliminate the stigmatization and social exclusion that surround HIV/AIDS, sexually transmitted diseases and other infectious diseases such as leprosy and filariasis, and lead to under-detection, lack of treatment and violence, especially for women, so that infected women who reveal their HIV status are protected from violence, stigmatization and other negative consequences;", - "values": [ - "Equality & Inclusion", - "Health" - ] - }, - { - "text": "All persons are equal before the law and are entitled without any discrimination to the equal protection of the law. In this respect, the law shall prohibit any discrimination and guarantee to all persons equal and effective protection against discrimination on any ground such as race, colour, sex, language, religion, political or other opinion, national or social origin, property, birth or other status.", - "values": [ - "Civil & Political Rights", - "Equality & Inclusion" - ] - }, - { - "text": "Encourages all States to take steps, with a view to progressively achieving the full realization of the right to food, including steps to promote the conditions for everyone to be free from hunger and, as soon as possible, to enjoy fully the right to food, and to create and adopt national plans to combat hunger;", - "values": [ - "Equality & Inclusion", - "Food & Nutrition" - ] - }, - { - "text": "Enact or strengthen and enforce laws and policies to eliminate all forms of violence and harassment against women of all ages in the world of work, in public and private spheres, and provide means of effective redress in cases of non compliance; ensure safety for women in the workplace; address the multiple consequences of violence and harassment, considering that violence against women and girls is an obstacle to gender equality and women's economic empowerment; encourage awareness-raising activities, including through publicizing the societal and economic costs of such violence; and develop measures to promote re-entry of victims and survivors of violence into the labour market", - "values": [ - "Economic Rights", - "Gender" - ] - }, - { - "text": "[Urges all States:] To review, repeal and eliminate, as appropriate, laws, policies and practices that can negatively affect the right to education of every girl, including discriminatory laws, policies, practices, customs, traditions or religious considerations, financial barriers, violence, including sexual violence in the school environment, the worst forms of child labour, and harmful practices, such as female genital mutilation, gender stereotypes, child, early and forced marriage and early pregnancy;", - "values": [ - "Education", - "Social & Cultural Rights" - ] - }, - { - "text": "The pressures referred to above exacerbate conflicts over land and lead to a worrisome criminalization of social movements aimed at carrying out agrarian reforms \"from below\", including by claiming land that is unused and, in their view, should be distributed more equitably. As a result, serious violations of a range of human rights occur, including murders of peasants connected to such activities, which the Special Rapporteur has documented in a number of communications to States. But the increased pressures on land are also a source of concern because of the weak protection of those who depend most on the land for their survival: smallholders, traditional fisherfolk, pastoralists and peoples (including indigenous and tribal peoples) that rely on the products of the forest. The present report first addresses the situation of indigenous peoples, which is specific insofar as the right of such peoples to have their lands demarcated and protected is recognized under international law. It then considers the position of smallholders, who cultivate the land in conditions that are often insufficiently secure, and that of other land users, such as fisherfolk, pastoralists and herders, who are particularly dependent on commons. The key message is that, while security of tenure is important and should be seen as crucial to the realization of the right to food, individual titling and the creation of a market for land rights may not be the most appropriate means to achieve it.", - "values": [ - "Civil & Political Rights", - "Social & Cultural Rights" - ] - }, - { - "text": "[Formulates the following recommendations addressed to States parties:] [The right to an independent and impartial tribunal] Special attention should be paid in this regard to the system of minimum punishments and obligatory detention applicable to certain offences and to capital punishment in countries which have not abolished it, bearing in mind reports that this punishment is imposed and carried out more frequently against persons belonging to specific racial or ethnic groups.", - "values": [ - "Civil & Political Rights", - "Governance & Rule of Law" - ] - }, - { - "text": "States Parties shall: f. Guarantee the freedom of movement and choice of residence of internally displaced persons, except where restrictions on such movement and residence are necessary, justified and proportionate to the requirements of ensuring security for internally displaced persons or maintaining public security, public order and public health;", - "values": [ - "Health", - "Humanitarian" - ] - }, - { - "text": "Schools have a unique potential to promote non-violent behaviour and to support change of attitudes condoning violence. Through quality education, children can gain the skills and abilities to surf cyberspace with confidence, to avoid and address risks, and to become well-informed and responsible digital citizens. This includes promoting creative, critical and safe use of the Internet and preventing and responding to incidents of online violence, including cyberbullying, even when they were not originated in the school environment.", - "values": [ - "Education", - "Social & Cultural Rights", - "Violence" - ] - }, - { - "text": "A number of decisions by judicial and quasi-judicial mechanisms show how the right to education of marginalized and vulnerable groups can be protected.", - "values": [ - "Education" - ] - }, - { - "text": "Encourages Governments, relevant United Nations bodies, specialized agencies, funds and programmes, other intergovernmental organizations and national human rights institutions, as well as non-governmental organizations and non-State actors, including the private sector, to consider the guiding principles in the formulation and implementation of their policies and measures concerning persons affected by extreme poverty;", - "values": [ - "Governance & Rule of Law", - "Poverty" - ] - }, - { - "text": "Reiterating deep concern that, despite its repeated condemnation of violence against women and children including all forms of sexual violence in situations of armed conflict, and despite its calls addressed to all parties to armed conflict for the cessation of such acts with immediate effect, such acts continue to occur, and in some situations have become systematic or widespread,", - "values": [ - "Humanitarian", - "Violence" - ] - }, - { - "text": "Emphasizing that the adverse effects of climate change have a range of implications, both direct and indirect, for the effective enjoyment of human rights, inter alia, the right to adequate housing as a component of the right to an adequate standard of living, and welcoming the adoption of the Paris Agreement under the United Nations Framework Convention on Climate Change,", - "values": [ - "Environment" - ] - }, - { - "text": "Also calls upon States to ensure that girls have equal access to free and compulsory primary education of good quality and that they complete their education at that level, and to renew their efforts to improve and expand girls' and women's education at all levels, including at secondary and higher levels, as well as vocational education and technical training, in order to, inter alia, achieve gender equality, the empowerment of women and poverty eradication;", - "values": [ - "Education", - "Equality & Inclusion", - "Gender", - "Poverty" - ] - }, - { - "text": "Reaffirming that female genital mutilation is a form of discrimination, an act of violence against women and girls and a harmful practice that constitutes a serious threat to their health, including their psychological, sexual and reproductive health, which can increase adverse obstetric and prenatal outcomes and have fatal consequences for the mother and the newborn, as well as increasing their vulnerability to HIV, and that the elimination of this harmful practice can be achieved only as a result of a comprehensive government-led movement that involves all public and private stakeholders in society, including girls and boys, women and men,", - "values": [ - "Harmful Practices", - "Violence" - ] - }, - { - "text": "[In compliance with the fundamental obligations laid down in article 2 of this Convention, States Parties undertake to prohibit and to eliminate racial discrimination in all its forms and to guarantee the right of everyone, without distinction as to race, colour, or national or ethnic origin, to equality before the law, notably in the enjoyment of the following rights:] (e) Economic, social and cultural rights, in particular: (iii) The right to housing;", - "values": [ - "Equality & Inclusion" - ] - }, - { - "text": "The most common care and recovery services provided by Governments and non-governmental organizations are immediate, urgent or short-term support services. They include medical and psychological care, emergency shelter and legal assistance. Medium- and long-term support services are specialized interventions that include assessing the home environment of the child and working with his or her family throughout the care, recovery and reintegration process; returning the child to his or her family or community or, in their absence, providing alternative care arrangements; reconnecting the child with education systems; and providing social and economic support.", - "values": [ - "Health", - "Social & Cultural Rights" - ] - }, - { - "text": "[By Governments:] Provide adequate safety nets and strengthen State-based and community- based support systems, as an integral part of social policy, in order to enable women living in poverty to withstand adverse economic environments and preserve their livelihood, assets and revenues in times of crisis;", - "values": [ - "Poverty", - "Social & Cultural Rights" - ] - }, - { - "text": "Support women's access, throughout their life cycle, to skills development and decent work in new and emerging fields, by expanding the scope of education and training opportunities in, inter alia, science, technology, engineering and mathematics, information and communications technology and digital fluency, and enhance women's and, as appropriate, girls' participation as users, content creators, employees, entrepreneurs, innovators and leaders;", - "values": [ - "Education", - "Equality & Inclusion" - ] - }, - { - "text": "3. In order to convict the accused, the Court must be convinced of the guilt of the accused beyond reasonable doubt.", - "values": [ - "Civil & Political Rights" - ] - }, - { - "text": "[The Commission urges governments, at all levels[...] to take the following actions:] [Addressing structural and underlying causes and risk factors so as to prevent violence against women and girls]: Design and implement national policies that aim at transforming those social norms that condone violence against women and girls, and work to counteract attitudes by which women and girls are regarded as subordinate to men and boys or as having stereotyped roles that perpetuate practices involving violence or coercion;", - "values": [ - "Gender", - "Governance & Rule of Law", - "Violence" - ] - }, - { - "text": "[Furthermore, businesses should:] Pursue anti-trafficking agreements, policies and dialogue with other relevant stakeholders such as industry and business peers and trade unions.", - "values": [ - "Economic Rights", - "Violence" - ] - }, - { - "text": "Domestic violence, the absence of one or both parents and poverty mean that it is no longer the case that families always constitute a reference point and safe haven for children.", - "values": [ - "Poverty", - "Violence" - ] - }, - { - "text": "Fourth, climate change in polar regions is occurring at a quicker pace. The sea ice cover is decreasing and the permafrost is melting, leading to accelerated erosion, significant flooding and changes in hunting or fishing capabilities. Many indigenous communities in Alaska and Canada, for instance, are located on the shoreline, and some are already in the process of resettling.", - "values": [ - "Environment" - ] - }, - { - "text": "Encourages States to improve the collection, harmonization and use of data disaggregated by sex, administrative data, including, where appropriate, from the police, the health sector and the judiciary, on incidents of violence against women and girls, including domestic violence, such as data on the relationship between the perpetrator and victim and geographic location, ensuring that confidentiality and ethical and safety considerations are taken into account in the process of data collection, and improving the effectiveness of the services and programmes provided and protecting the safety and security of the victim;", - "values": [ - "Governance & Rule of Law", - "Violence" - ] - }, - { - "text": "[Urges all States to intensify their efforts in order to ensure the implementation of the right of the child to birth registration, preservation of identity, including nationality, and family relations, as recognized by law, by:] Providing, at minimal cost, simplified, expeditious and effective procedures for birth registration;", - "values": [ - "Civil & Political Rights" - ] - }, - { - "text": "States shall in consultation and cooperation with indigenous peoples take specific measures to protect indigenous children from economic exploitation and from performing any work that is likely to be hazardous or to interfere with the child's education, or to be harmful to the child's health or physical, mental, spiritual, moral or social development, taking into account their special vulnerability and the importance of education for their empowerment.", - "values": [ - "Economic Rights", - "Violence" - ] - }, - { - "text": "The right to self-determination, enshrined in both the International Covenant on Economic, Social and Cultural Rights and the International Covenant on Civil and Political Rights, expressly encompasses the rights of peoples (not the State or Government) to freely dispose of their natural wealth and resources. Considering that many natural resources are finite and non-renewable, this right needs to be protected with special care, taking into account the rights of future generations. At the very least, a State's population has a right to enjoy a fair share of the financial and social benefits that natural resources can bring. This requires ensuring participation, access to information and high standards of transparency and accountability in decision-making about the use of natural resources. Where indigenous peoples are involved, States have additional and specific obligations, including ensuring free, prior and informed consent in any decisions regarding the use of their lands.", - "values": [ - "Civil & Political Rights", - "Economic Rights", - "Governance & Rule of Law", - "Social & Cultural Rights" - ] - }, - { - "text": "Recalling that the Vienna Declaration and Programme of Action adopted by the World Conference on Human Rights (A/CONF.157/23) affirmed that gender-based violence and all forms of sexual harassment and exploitation, including those resulting from cultural prejudice and international trafficking, are incompatible with the dignity and worth of the human person, and must be eliminated,", - "values": [ - "Gender", - "Violence" - ] - }, - { - "text": "Access for and retention of girls and women at all levels of education, including the higher level, and all academic areas is one of the factors of their continued progress in professional activities. Nevertheless, it can be noted that girls are still concentrated in a limited number of fields of study.", - "values": [ - "Education", - "Equality & Inclusion" - ] - }, - { - "text": "State Parties shall promote peace, security and stability in their respective countries, regions and in the continent by fostering participatory political systems with well-functioning and, if need be, inclusive institutions;", - "values": [ - "Equality & Inclusion", - "Governance & Rule of Law" - ] - }, - { - "text": "Violations of the obligation to fulfil occur when States do not take all necessary steps to facilitate, promote and provide for the right to sexual and reproductive health within maximum available resources. Such violations arise when States fail to adopt and implement a holistic and inclusive national health policy that adequately and comprehensively includes sexual and reproductive health or when a policy fails to appropriately address the needs of disadvantaged and marginalized groups.", - "values": [ - "Equality & Inclusion", - "Health" - ] - }, - { - "text": "Recalling the resolutions adopted by the General Assembly and the Human Rights Council in which they call upon States to ensure the registration of all children immediately after birth, and without discrimination of any kind, the most recent being Assembly resolution 71/177 of 19 December 2016 and Council resolution 28/13 of 23 March 2015,", - "values": [ - "Civil & Political Rights", - "Equality & Inclusion" - ] - }, - { - "text": "Those in charge of the provision of education in emergencies must consider the requirements for meeting quality educational standards. Dedicated attention must be paid to improving school curricula, promoting human rights education and addressing the psychosocial needs of students and teachers.", - "values": [ - "Education", - "Humanitarian" - ] - }, - { - "text": "[While target 7.C itself is of critical importance, it is also indispensable for achieving the other Millennium Development Goals:] Clean water supply and sanitation services reduce diseases such as anaemia and vitamin deficiency that undermine maternal health (Goal 5);", - "values": [ - "Gender", - "Health", - "Water & Sanitation" - ] - }, - { - "text": "Over the past decade, increasing evidence supports the correlation between secure indigenous tenure and positive conservation outcomes, at times better than those achieved in State-managed protected areas. The effectiveness of indigenous-owned lands in resisting deforestation in Brazil is well known. In Namibia, community-based wildlife management has resulted in significant growth in wildlife populations, especially in areas that had formerly been subject to heavy poaching. In Australia and the United States of America, indigenous peoples effectively manage or co-manage protected areas, through dynamic and sustainable partnerships which seek to redress past exclusion policies. In the Philippines, the national Indigenous Peoples' Rights Act includes a provision that protected areas within or overlapping ancestral domains will remain protected but that indigenous communities have primary responsibility for maintaining and protecting such areas. The law governing protected areas in the Philippines, the National Integrated Protected Areas Act, calls for indigenous peoples' participation in protected-area management boards. However, certain obstacles remain. For example, indigenous participation in management boards is impeded by a lack of training and orientation for indigenous peoples on their roles and responsibilities and such meetings tend to be conducted using overly technical language.", - "values": [ - "Environment", - "Governance & Rule of Law" - ] - }, - { - "text": "Also calls upon all States to assess and systematically examine the magnitude, nature and causes of child labour and to elaborate and implement strategies for the elimination of child labour contrary to accepted international standards, giving special attention to specific dangers faced by girls, as well as to the rehabilitation and social reintegration of the children concerned;", - "values": [ - "Economic Rights", - "Violence" - ] - }, - { - "text": "Reaffirming the importance of achieving Millennium Development Goal 6 (to combat HIV/AIDS, malaria and other diseases), and noting that poverty, inequality and food insecurity increase people\u2019s vulnerability to HIV, posing increased risks of infection to populations in every region while at the same time undermining the socio-economic conditions of people living with HIV or those affected by the epidemic,", - "values": [ - "Equality & Inclusion", - "Health", - "Poverty" - ] - }, - { - "text": "The Ebola crisis has provided meaningful lessons with regard to many elements of the right to health. It has questioned our preparedness for emergencies at national, regional and global levels. It has raised important issues, such as access to information, trust in public authorities and safety of medical personnel, and it has reminded us of the importance of upholding the human rights of the affected populations in the context of public safety concerns. The Ebola crisis has once again raised issue of the responsibility and social accountability of key actors, including pharmaceutical companies, and the need for strong public leadership in addressing global health challenges.", - "values": [ - "Health", - "Humanitarian" - ] - }, - { - "text": "\nThe Special Rapporteur reiterates his view that it is conceptually incorrect to present the issue of \"defamation of religions\" in the abstract as a conflict between the right to freedom of religion or belief and the right to freedom of opinion and expression.", - "values": [ - "Social & Cultural Rights" - ] - }, - { - "text": "Girls and young women with disabilities belonging to groups that have been historically disadvantaged or discriminated against, such as indigenous peoples, religious and ethnic minorities, poor or rural populations, migrants and refugees, and lesbian, gay, bisexual, transgender and intersex persons, experience multiple and intersectional forms of discrimination in the exercise of their sexual and reproductive health and rights. For example, indigenous girls and women with disabilities face a higher risk of experiencing early marriage, sexual violence and unwanted pregnancy. Girls with disabilities, particularly those with intellectual disabilities, also encounter significant barriers to asserting their sexual orientation because parents and guardians often deny and supress their views.", - "values": [ - "Equality & Inclusion", - "Health" - ] - }, - { - "text": "[The Commission urges governments, at all levels[...] to take the following actions:] [Addressing structural and underlying causes and risk factors so as to prevent violence against women and girls]: Further adopt and implement measures to ensure the social and legal inclusion and protection of women migrants, including women migrant workers in origin, transit and destination countries, and promote and protect the full realization of their human rights, and their protection against violence and exploitation; implement gender-sensitive policies and programmes for women migrant workers and provide safe and legal channels that recognize their skills and education, provide fair labour conditions, and as appropriate facilitate their productive employment and decent work as well as integration into the labour force", - "values": [ - "Gender", - "Movement" - ] - }, - { - "text": "Recognizing that the essential rights of man are not derived from one's being a national of a certain State, but are based upon attributes of the human person, for which reason they merit international protection in the form of a convention reinforcing or complementing the protection provided by the domestic law of the American States;", - "values": [ - "Equality & Inclusion", - "Governance & Rule of Law" - ] - }, - { - "text": "However, not all forms of marriage deserve recognition. The Working Group calls for the non-recognition of those forms that discriminate against women and/or fail to ensure equality and justice for women, whatever the legal system, religion, custom or tradition. This refers to, among others, early and/or forced marriage, temporary marriage and polygamy. The Committee on the Elimination of Discrimination against Women and the Human Rights Committee have recommended that States should prohibit polygamy on the grounds that it contravenes women's right to equality with men and can have serious emotional and financial consequences for women and their dependants. However, there are national civil codes that legalize polygamous marriage, early and/or forced marriage and temporary marriage. The Working Group advocates the repeal of these codes. Among the countries that deem such marriages to discriminate against women and girls, some consider them void and others merely voidable. In all cases, the legal solution must protect the rights of women and girls, who remain the victims of these harmful marriages. Their rights to subsistence, to property, including land and inheritance, to a place of residence, to custody of children and to remarry must be guaranteed.", - "values": [ - "Equality & Inclusion", - "Harmful Practices" - ] - }, - { - "text": "Over the past decade, the mandate holder has received many complaints and requests for technical support regarding the implementation of the State duty to consult and obtain the free, prior and informed consent of indigenous peoples before the adoption of legal, administrative and policy measures that affect them. Commonly, the complaints received are related to the lack of effective implementation of the rights to consultation and consent in the context of plans for natural resource development and investment projects affecting indigenous peoples\u2019 lands and resources.", - "values": [ - "Civil & Political Rights", - "Environment" - ] - }, - { - "text": "[Notes with appreciation the study on the factors that impede equal political participation and steps to overcome those challenges, prepared by the Office of the United Nations High Commissioner for Human Rights, and urges all States to consider, as appropriate, the conclusions and recommendations of the study, and to ensure the full, effective and equal participation of all citizens in political and public affairs, including by, inter alia:] Ensuring the rights of everyone to freedom of expression, peaceful assembly and freedom of association, education and development, and facilitating equal and effective access to information, media and communication technologies in order to enable pluralistic debates fostering inclusive and effective participation in political and public affairs;", - "values": [ - "Civil & Political Rights", - "Equality & Inclusion" - ] - }, - { - "text": "Recognizes the need to increase the resilience of food and agricultural production to climate change, and encourages efforts at all levels to support climate-sensitive agricultural practices, including agroforestry, conservation agriculture, water management schemes, drought- and flood-resistant seeds and sustainable livestock management, including measures to strengthen the resilience of vulnerable groups and food systems, which can also have a wider positive impact, emphasizing adaptation to climate change as a major concern and objective for all farmers and food producers, especially small-scale producers;", - "values": [ - "Environment", - "Food & Nutrition", - "Water & Sanitation" - ] - }, - { - "text": "1. The Prosecutor and the Registrar shall appoint such qualified staff as may be required to their respective offices. In the case of the Prosecutor, this shall include the appointment of investigators.", - "values": [ - "Governance & Rule of Law" - ] - }, - { - "text": "All countries and all stakeholders, acting in collaborative partnership, will implement this plan. We are resolved to free the human race from the tyranny of poverty and want and to heal and secure our planet. We are determined to take the bold and transformative steps which are urgently needed to shift the world on to a sustainable and resilient path. As we embark on this collective journey, we pledge that no one will be left behind.", - "values": [ - "Environment", - "Equality & Inclusion", - "Poverty" - ] - }, - { - "text": "Concerned that the vulnerability of women and girls to HIV is increased by their unequal legal, economic and social status, including poverty as well as other cultural and physiological factors, violence against women and girls and adolescents, early marriage, child and forced marriage, premature and early sexual relations, commercial sexual exploitation and female genital mutilation,", - "values": [ - "Gender", - "Health" - ] - }, - { - "text": "1. States Parties recognize the right of persons with disabilities to an adequate standard of living for themselves and their families, including adequate food, clothing and housing, and to the continuous improvement of living conditions, and shall take appropriate steps to safeguard and promote the realization of this right without discrimination on the basis of disability.", - "values": [ - "Equality & Inclusion" - ] - }, - { - "text": "Stigma is a deeply engrained sociocultural phenomenon that not only disadvantages entire population groups, but often results in serious human rights violations. Situating stigma in the human rights framework is essential for identifying the obligations of States and establishing accountability. Stigma has close links to a range of civil, cultural, economic, political and social rights, highlighting the indivisibility and interdependence of all human rights. The human rights standards and principles of human dignity and non-discrimination, the human rights to water and sanitation and other closely related human rights will be explored in more depth, as they show close links to the way stigma is manifested in relation to water and sanitation.", - "values": [ - "Governance & Rule of Law", - "Water & Sanitation" - ] - }, - { - "text": "First of all, it is necessary to understand the linkages between indigenous peoples' current disadvantaged situations and their history of being denied self-determination land and resource rights, and related rights essential to their economic and social development. In fact, development around the world has historically taken place and still takes place today at the expense of indigenous peoples; it has often been the case that indigenous peoples' lands and resources have been taken, to their detriment and to the benefit of the development of others. Responses aimed at bettering the social and economic situation of indigenous peoples must take that history into account and attempt to restore to indigenous peoples what has been lost, including sufficient land to ensure a basis for economic development, and the means to exercise their self-determination over their development. Indeed, numerous studies have shown that increasing indigenous peoples' control over their internal decision-making results in better economic growth outcomes.", - "values": [ - "Civil & Political Rights", - "Economic Rights", - "Social & Cultural Rights" - ] - }, - { - "text": "[The Committees recommend that the States parties to the Conventions adopt or amend legislation with a view to effectively addressing and eliminating harmful practices. In doing so, they should ensure:] That a minimum legal age of marriage for girls and boys, with or without parental consent, is established at 18 years. When a marriage at an earlier age is allowed in exceptional circumstances, the absolute minimum age must not be below 16 years, the grounds for obtaining permission must be legitimate and strictly defined by law and the marriage must be permitted only by a court of law upon the full, free and informed consent of the child or both children, who must appear in person before the court;", - "values": [ - "Governance & Rule of Law", - "Harmful Practices" - ] - }, - { - "text": "Laws restricting information about sexual and reproductive health and which censor discussions of homosexuality in the classroom fuel stigma and discrimination of vulnerable minorities. For example, laws and policies that promote abstinence-only education reduce sexual education to images and stereotypes of heteronormativity, given their focus on procreation; some of these programmes even contain explicitly discriminatory content on gender and sexual orientation. In certain instances, teachers have been suspended or threatened with lawsuits for engaging in discussions on \"inappropriate\" sexual matters with their students when discussing sexual and reproductive health issues in the classroom. In other cases, pursuant to abstinence-only and anti-obscenity policies, school districts, courts and legislators have prohibited civil society organizations from meeting in public schools. Such laws and policies perpetuate false and negative stereotypes concerning sexuality, alienate students of different sexual orientations and prevent students from making fully informed decisions regarding their sexual and reproductive health.", - "values": [ - "Equality & Inclusion", - "Health" - ] - }, - { - "text": "[Article 16] [States parties shall take all appropriate measures to eliminate discrimination against women in all matters relating to marriage and family relations and in particular shall ensure, on a basis of equality of men and women:] The same rights and responsibilities during marriage and at its dissolution;", - "values": [ - "Equality & Inclusion" - ] - }, - { - "text": "However, there continue to be tensions between national and migrant, refugee and asylum-seeker communities. These tensions often reach levels of xenophobia, as both experience unfamiliar languages, cultural practices and expectations. These can be exacerbated when finite resources are perceived to be focused upon one community at the expense of the other. One contributor from Liberia noted: \u201cif education is not equitably distributed ... there are bound to be pockets of dissatisfaction and escalation of crime\u201d.", - "values": [ - "Education", - "Movement" - ] - }, - { - "text": "Eliminate occupational segregation by addressing structural barriers, gender stereotypes and negative social norms, promoting women's equal access to and participation in labour markets and in education and training, supporting women so as to diversify their educational and occupational choices in emerging fields and growing economic sectors, such as science, technology, engineering and mathematics and information and communications technology, recognizing the value of sectors that have large numbers of women workers;", - "values": [ - "Equality & Inclusion", - "Gender" - ] - }, - { - "text": "The Commission reaffirmed also that the full and effective implementation of the Beijing Declaration and Platform for Action was an essential contribution to achieving the internationally agreed development goals, including those contained in the Millennium Declaration, and that the promotion of gender equality and the empowerment of women was of fundamental importance in sustainable development, achieving sustained economic growth, eradicating poverty and hunger and combating diseases, and that investing in the development of women and girls had a multiplier effect, in particular on productivity, efficiency and sustained economic growth, in all sectors of the economy, especially in key areas such as agriculture, industry and services.", - "values": [ - "Equality & Inclusion", - "Gender" - ] - }, - { - "text": "Recognizing that incorporating a gender perspective into disaster response and longer-term recovery planning and implementation will cut recovery time, lead to greater efficiency and equity in the short- and longer-term recovery efforts and strengthen the resilience of entire communities,", - "values": [ - "Gender", - "Humanitarian" - ] - }, - { - "text": "Laws tend to reflect and reinforce the privileges and interests of the powerful. Thus, many laws are inherently biased against persons living in poverty, do not recognize or prioritize the abuses they regularly suffer, or have a disproportionately harsh impact on them. A legal system based on prejudices against the poor does not protect them, but rather undermines their rights and autonomy, or seeks to control, criminalize and segregate them. Legislators often do not recognize and estimate the issues that negatively affect persons living in poverty as serious and in need of active remedy.", - "values": [ - "Governance & Rule of Law", - "Poverty" - ] - }, - { - "text": "The nearly universal disadvantageous social and economic conditions of indigenous peoples as compared to the majority of the population in the societies in which they live present barriers to the full exercise of their human rights. Unless indigenous peoples enjoy certain minimum conditions of well-being, they will be unable to truly thrive with their rights intact. According to many different indicators, indigenous peoples fare worse than their non-indigenous counterparts in terms of their development, including with regard to levels of poverty, education, health, unemployment, housing conditions, clean water and sanitation.", - "values": [ - "Economic Rights", - "Education", - "Equality & Inclusion", - "Health", - "Poverty", - "Social & Cultural Rights", - "Water & Sanitation" - ] - }, - { - "text": "In relation to the enforcement of the death penalty, the Human Rights Committee has recommended that families of death row inmates be given reasonable advanced notice of the scheduled date and time of execution, with a view to reducing the psychological suffering caused by the lack of opportunity to prepare themselves for that event (CCPR/C/JPN/CO/5, para. 16). Similarly, in Staselovich v. Belarus, the Committee found that the failure of the authorities to notify the mother of the scheduled date for the execution of her son and their subsequent persistent failure to notify her of the location of her son's grave amounted to inhuman treatment of the mother. Secrecy and the refusal to hand over remains to families are especially cruel features of capital punishment, highlighting the need for total transparency and avoidance of harm to innocents in the whole process.", - "values": [ - "Civil & Political Rights", - "Governance & Rule of Law" - ] - }, - { - "text": "[The Commission [...] urges Governments [...] to:] [14.1. Poverty] (a) Reduce social and economic inequalities, giving priority to approaches that focus on poverty eradication and improving linkages, participation and social networks within and between different community groups, thereby addressing economic, social and cultural rights and reducing the vulnerability of the girl child to discrimination and violence;", - "values": [ - "Poverty", - "Social & Cultural Rights" - ] - }, - { - "text": "Urges the Secretary-General and his Special Envoys to invite women to participate in discussions pertinent to the prevention and resolution of conflict, the maintenance of peace and security, and post-conflict peacebuilding, and encourages all parties to such talks to facilitate the equal and full participation of women at decision-making levels;", - "values": [ - "Equality & Inclusion", - "Gender", - "Humanitarian" - ] - }, - { - "text": "The right to move freely relates to the whole territory of a State, including all parts of federal States. According to article 12, paragraph 1, persons are entitled to move from one place to another, and to establish themselves in a place of their choice. The enjoyment of this right must not be made dependent on any particular purpose or reason for the person wanting to move or to stay in a place. Any restrictions must be in conformity with paragraph 3.", - "values": [ - "Governance & Rule of Law", - "Movement" - ] - }, - { - "text": "Every child must be registered at birth. States must also ensure that reliable information is collected and recorded regarding all children living in institutions", - "values": [ - "Civil & Political Rights" - ] - }, - { - "text": "1. No reservation is admissible to the present Protocol, except for a reservation made at the time of ratification or accession that provides for the application of the death penalty in time of war pursuant to a conviction for a most serious crime of a military nature committed during wartime.", - "values": [ - "Civil & Political Rights" - ] - }, - { - "text": "[The Commission [...] urges Governments, at all levels [...] to take the following actions:] [Strengthening normative, legal and policy frameworks]: Promote women's economic rights and independence, women's right to work and rights at work through gender-responsive policies and programmes that promote decent work for all, ensure equal pay for equal work or work of equal value, protect women against discrimination and abuse in the workplace, invest in and empower women in all sectors in the economy by supporting women-led businesses, including by tailoring a range of approaches and instruments which facilitate access to universal public services, finance, training, technology, markets, sustainable and affordable energy and transport and trade;", - "values": [ - "Economic Rights", - "Equality & Inclusion" - ] - }, - { - "text": "[Actions to be taken by Governments, the United Nations system and civil society, as appropriate:] (f) Support research on the relationship between women's and girls' physical and mental health, self-esteem and the extent to which women of all ages are valued in their societies to address issues such as substance abuse and eating disorders", - "values": [ - "Equality & Inclusion" - ] - }, - { - "text": "The mechanization of agriculture, rural-urban migration and the development of labour-intensive export industries, coupled with the erosion of workers' rights outside the traditional bonded labour context, have led to the emergence of patterns of \"neo-bondage\", whereby destitute people commit themselves to working off loans or wage advances obtained from their employer and cannot default on this debt, not least due to a fear of extrajudicial enforcement. In this context, researchers note an increasing feminization of bonded labour and some of the victims end up in bonded domestic servitude.", - "values": [ - "Economic Rights", - "Gender" - ] - }, - { - "text": "Some replies to the questionnaire indicated that there is a lack of information and awareness among migrant, refugee and asylum-seeker populations about their rights, specifically those that safeguard their right to education. Implicit in this is what it means to make informed school and educational decisions. It is essential, therefore, to provide information and logistical support to migrant, refugee and asylum-seeking populations to strengthen their capacity in this regard. Activities might include, for example, home visits to low-income and migrant, refugee and asylum-seeking families, \u201ceducation booths\u201d in shopping malls, information fairs and hotlines in relevant migrant languages.", - "values": [ - "Education", - "Movement" - ] - }, - { - "text": "Parties shall provide for the right to legal assistance and to free legal aid for victims under the conditions provided by their internal law.", - "values": [ - "Governance & Rule of Law" - ] - }, - { - "text": "2. No one shall be subject to coercion which would impair his freedom to have or to adopt a religion or belief of his choice.", - "values": [ - "Social & Cultural Rights" - ] - }, - { - "text": "Urges Member States to ensure increased representation of women at all decision-making levels in national, regional and international institutions and mechanisms for the prevention, management, and resolution of conflict;", - "values": [ - "Gender", - "Governance & Rule of Law", - "Humanitarian" - ] - }, - { - "text": "Penalization measures are often motivated by prejudices and negative stereotypes that ignore the realities of disadvantage and exclusion and fail to recognize the daily struggle of persons living in poverty to overcome the multiple obstacles they face. Poverty is not a lifestyle choice. Homeless persons would prefer safe, affordable, adequate housing to public parks and bus stations. Those struggling to survive on social benefits would rather have secure, regular, well-paying, productive employment than be subject to discrimination and live in constant fear that their entitlements will be taken away. One does not choose to live in poverty, and therefore should not be punished for that situation.", - "values": [ - "Equality & Inclusion", - "Poverty" - ] - }, - { - "text": "[Recommendations to Member States:] Ensure full respect of the rights to freedom of association and of peaceful assembly, as well as the right to collective bargaining, to support decent work and the ability of bonded labourers to advocate for their rights.", - "values": [ - "Civil & Political Rights", - "Economic Rights" - ] - }, - { - "text": "The causes of violence against women with disabilities originate in social norms about the nature and type of disability and gender roles. Women with disabilities face many barriers to escaping, resisting, preventing or obtaining redress for violence. Such barriers include, but are not limited to, emotional and financial dependency on the abuser; unwillingness to be stigmatized; fears regarding child custody or single-parenthood; inaccessibility or unavailability of violence prevention programmes and facilities; fear or loss of assistive devices and other supports; concerns about being believed when disclosing the abuse; and reluctance to take any action that may escalate the violence. Also when they seek assistance from police or other members of the community, their complaints may not be taken seriously or may be disbelieved, due to stigma and stereotyping.", - "values": [ - "Gender", - "Violence" - ] - }, - { - "text": "Requests the Secretary-General to report to the General Assembly at its seventy-fourth session on the implementation of the present resolution.", - "values": [ - "Governance & Rule of Law" - ] - }, - { - "text": "Recognizing that, in accordance with the Universal Declaration of Human Rights, the ideal of free human beings enjoying civil and political freedom and freedom from fear and want can only be achieved if conditions are created whereby everyone may enjoy his civil and political rights, as well as his economic, social and cultural rights,", - "values": [ - "Civil & Political Rights", - "Equality & Inclusion" - ] - }, - { - "text": "[The Committees recommend that the States parties to the Conventions adopt or amend legislation with a view to effectively addressing and eliminating harmful practices. In doing so, they should ensure:] That a national system of compulsory, accessible and free birth registration is established in order to effectively prevent harmful practices, including child marriage;", - "values": [ - "Governance & Rule of Law", - "Harmful Practices" - ] - }, - { - "text": "The Special Rapporteur is concerned by information she has received regarding incidents of discrimination in caste-based and analogous systems of inherited status, including atrocities committed against individuals ascribed to the lowest strata by virtue of their caste status. During the course of her work, she regularly addressed the continued plight of such people through press statements, consultations, side events and thematic reports to the Human Rights Council.", - "values": [ - "Equality & Inclusion", - "Social & Cultural Rights" - ] - }, - { - "text": "The importance attached to skills development, including technical and vocational education and training, in the report of the High-level Panel is commendable. It is particularly necessary in order to meet the critical challenges of an increasingly globalized economy and the rising aspirations of youth. The target can be refined, however, by stipulating that skills development and technical and vocational education and training should be an integral part of secondary education, with pathways for the pursuit of higher education.", - "values": [ - "Economic Rights", - "Education" - ] - }, - { - "text": "Stresses that \u201cviolence against women\u201d means any act of gender-based violence that results in, or is likely to result in, physical, sexual or psychological harm or suffering to women of any age and girls, including threats of such acts, coercion or arbitrary deprivation of liberty, whether occurring in public or in private life, and also notes the economic and social harm caused by such violence;", - "values": [ - "Gender", - "Violence" - ] - }, - { - "text": "[Formulates the following recommendations addressed to States parties:] Consider adopting special measures aimed at promoting the education of all students of African descent, guarantee equitable access to higher education for people of African descent and facilitate professional educational careers.", - "values": [ - "Education", - "Equality & Inclusion" - ] - }, - { - "text": "Gravely concerned by the human rights abuses and violations of international humanitarian law committed by non-state armed groups, in particular violent extremist groups, including mass abductions, rape and other forms of sexual violence such as sexual slavery, particularly targeting girls, which can cause displacement and affect access to education and healthcare services, and emphasizing the importance of accountability for such abuses and violations,", - "values": [ - "Governance & Rule of Law", - "Humanitarian", - "Violence" - ] - }, - { - "text": "Noting the ninth summit meeting of the Global Forum on Migration and Development, held in Dhaka in December 2016, which emphasized, inter alia, the importance of improving the governance of migration which encourages the formulation of a comprehensive framework that covers all the relevant dimensions of migration, the promotion of migration and development, and addressing irregular migration, and welcoming the convening of the tenth summit meeting, in Berlin, from 28 to 30 June 2017,", - "values": [ - "Movement" - ] - }, - { - "text": "[By Governments and international and non-governmental organizations:] Provide education and skills training to increase girls' opportunities for employment and access to decision-making processes;", - "values": [ - "Economic Rights", - "Education" - ] - }, - { - "text": "[The Special Rapporteur perceives a crucial need for States, donors, international agencies and civil society to work collaboratively together, as substantial movement and migration across national borders will continue to define our globalized world. Their joint aim should be to build and sustain cohesive and resilient communities able to adapt in response to change. To this end, the Special Rapporteur recommends that exchange of good practice is increased and, at a minimum, all should look to:] \u2022\u00a0\u00a0 Improve (national) monitoring systems regarding access to and learning outcomes of migrants and refugees, including data on gender parity and disability. This should include information on the language used in the home and/or the language of instruction of previously completed education institutions in order to monitor language development and language-related drop out.", - "values": [ - "Education", - "Equality & Inclusion", - "Gender", - "Movement" - ] - }, - { - "text": "[Calls upon States:] To create an enabling environment to address the issue of lack of sanitation at all levels, including, where appropriate, by budgeting, legislation, the establishment of regulatory, monitoring and accountability frameworks and mechanisms, the assignment of clear institutional responsibilities and the appropriate inclusion of sanitation in national poverty reduction strategies and development plans;", - "values": [ - "Governance & Rule of Law", - "Water & Sanitation" - ] - }, - { - "text": "Also urges States to promote effective and specific targeted measures for refugee women and women migrants and their communities in order to protect girl children from female genital mutilation;", - "values": [ - "Harmful Practices", - "Movement" - ] - }, - { - "text": "Women are key contributors to the economy and to combating poverty through both remunerated and unremunerated work at home, in the community and in the workplace. Growing numbers of women have achieved economic independence through gainful employment.", - "values": [ - "Economic Rights", - "Gender", - "Poverty" - ] - }, - { - "text": "Expresses its concern that persons arbitrarily deprived of nationality may be affected by poverty, social exclusion and legal incapacity which have an adverse impact on their enjoyment of relevant civil, political, economic, social and cultural rights, in particular in the areas of education, housing, employment and health;", - "values": [ - "Poverty", - "Social & Cultural Rights" - ] - }, - { - "text": "[The Commission [...] urges Governments [...] to:] [14.9. Violence and discrimination] (i) Review, strengthen or adopt legislation or policies to eradicate child pornography, including child pornography transmitted through the media and ICTs, and related forms of exploitation of children, and strengthen efforts to combat the existence of a market that encourages child pornography, including the prosecution of those who sexually exploit or abuse children;", - "values": [ - "Governance & Rule of Law", - "Violence" - ] - }, - { - "text": "The Special Rapporteur believes that new and different models and business practices for natural resource extraction need to be examined, models that are more conducive to indigenous peoples' self-determination and their right to pursue their own priorities of development. Such models could include genuine partnership arrangements between indigenous peoples and corporations, in which the indigenous part has a significant or even controlling share in the ownership and management of the partnership, or models in which indigenous peoples develop their own extractive business enterprises.", - "values": [ - "Economic Rights", - "Environment" - ] - }, - { - "text": "The United Nations Collaborative Programme on Reducing Emissions from Deforestation and Forest Degradation encourages developed countries and their companies to make investments in forest preservation in developing countries and provides incentives for developing countries to sustainably manage their forests and enhance forest carbon stocks. However, concerns have been raised about the validity of this process, as communities that live in and are dependent on forests for their livelihoods and subsistence have been negatively affected by some of the projects, especially those initiated without the consent of the population concerned.", - "values": [ - "Environment" - ] - }, - { - "text": "Each of those reports contains important definitions, including basic concepts and terminology, especially on mitigation and adaptation, upon which the Special Rapporteur will rely in the present report. Furthermore, the Special Rapporteur will use the term \"climate-change-induced migrant\" to refer to persons who may migrate in connection with the environmental impacts of climate change.", - "values": [ - "Environment" - ] - }, - { - "text": "State Parties shall promote peace, security and stability in their respective countries, regions and in the continent by fostering participatory political systems with well-functioning and, if need be, inclusive institutions;", - "values": [ - "Equality & Inclusion", - "Governance & Rule of Law" - ] - }, - { - "text": "Fully engage men and boys as strategic partners and allies in achieving gender equality and the empowerment of all women and girls by designing and implementing national policies and programmes that address the roles and responsibilities of men and boys, including the equal sharing of responsibilities in caregiving and domestic work, and encourage men and boys to engage fully, as agents and beneficiaries of change, with the aim of eliminating all forms of discrimination and violence against women and girls in both the public and private spheres, by understanding and addressing the root causes of gender inequality, such as unequal power relations, gender stereotypes and negative social norms that view women and girls as subordinate to men and boys, as a contribution to women's economic empowerment in the changing world of work;", - "values": [ - "Gender", - "Social & Cultural Rights" - ] - }, - { - "text": "Human rights treaty bodies have specifically addressed the need for special measures when referring to indigenous peoples within the context of monitoring compliance with their respective human rights treaties. The Committee on the Elimination of Racial Discrimination has noted that \u201cthe situation of indigenous peoples has always been a matter of close attention and concern. In this respect, the Committee has consistently affirmed that discrimination against indigenous peoples falls under the scope of the Convention and that all appropriate means must be taken to combat and eliminate such discrimination.\u201d It has furthermore noted that \u201cStates parties should ensure that special measures are designed and implemented on the basis of prior consultation with affected communities and the active participation of such communities\u201d.", - "values": [ - "Equality & Inclusion" - ] - }, - { - "text": "Concerned about the extreme disadvantages that indigenous peoples, in particular indigenous women, have typically faced across a range of social and economic indicators and the impediments to their full enjoyment of their rights,", - "values": [ - "Economic Rights", - "Equality & Inclusion", - "Social & Cultural Rights" - ] - }, - { - "text": "4. Each Party shall take appropriate measures, as may be necessary, to enable migration to take place legally, in particular through dissemination of accurate information by relevant offices, on the conditions enabling the legal entry in and stay on its territory.", - "values": [ - "Governance & Rule of Law", - "Movement" - ] - }, - { - "text": "In her 2012 report to the Human Rights Council, which was devoted to groups at risk, the Special Rapporteur highlighted the dangers and challenges faced by defenders working on land and environmental issues, including in connection with the activities of extractive industries and construction and development projects (A/HRC/19/55, para. 64). She pointed out that the main context in which violations against such defenders generally occurred was that of ongoing land disputes with both State and non-State actors, including multinational corporations and private security companies. The Special Rapporteur expressed serious concern about the risks faced by this group of defenders and noted that those defenders were highly exposed to attacks to their physical integrity and that many of them were killed. She highlighted that the stigmatization they suffered from State and non-State actors was a factor that might encourage rejection of or even violence against defenders (A/HRC/19/55, paras. 65 and 66, 117, 123 and 125).", - "values": [ - "Environment" - ] - }, - { - "text": "Strengthen efforts to protect and safeguard the world's cultural and natural heritage", - "values": [ - "Social & Cultural Rights" - ] - }, - { - "text": "Article 2, paragraph 2, and article 3 of the Covenant prohibit any discrimination in the exercise of the right of everyone to take part in cultural life on the grounds of race, colour, sex, language, religion, political or other opinion, national or social origin, property, birth or other status.", - "values": [ - "Equality & Inclusion", - "Social & Cultural Rights" - ] - }, - { - "text": "[By Governments:] Give all ministries the mandate to review policies and programmes from a gender perspective and in the light of the Platform for Action; locate the responsibility for the implementation of that mandate at the highest possible level; establish and/or strengthen an inter-ministerial coordination structure to carry out this mandate, to monitor progress and to network with relevant machineries.", - "values": [ - "Gender", - "Governance & Rule of Law" - ] - }, - { - "text": "In an open letter to the States parties to the United Nations Framework Convention on Climate Change, a number of special rapporteurs, including the Special Rapporteur on the right to food, called on States to ensure full coherence between human rights obligations and efforts to address climate change and to include clear human rights language in the agreement to be concluded in Paris. Most recently, at the closing plenary meeting of the eighth session of the Ad Hoc Working Group on the Durban Platform for Enhanced Action, held in February 2015 in Geneva, 18 countries signed a voluntary agreement on human rights and climate action, the Geneva Pledge for Human Rights in Climate Action, pledging to facilitate the sharing of best practice and knowledge between human rights and climate experts at the national level.", - "values": [ - "Environment", - "Food & Nutrition", - "Governance & Rule of Law" - ] - }, - { - "text": "[Women are entitled to the equal enjoyment and protection of all human rights and fundamental freedoms in the political, economic, social, cultural, civil or any other field. These rights include, inter alia:] The right to equal protection under the law;", - "values": [ - "Civil & Political Rights", - "Equality & Inclusion", - "Gender" - ] - }, - { - "text": "Welcomes the continuing readiness of States to receive refugees and offer them protection, as well as to make available considerable resources to meet the needs of refugees, thus demonstrating their strong and continuing humanitarian commitment at the national and international levels;", - "values": [ - "Humanitarian" - ] - }, - { - "text": "[Urges States to:] Take concrete measures to provide and enhance equal access and enjoyment of the highest attainable standard of health for indigenous women, including sexual and reproductive health, and access to safe and clean drinking water and sanitation, and safe cooking and heating;", - "values": [ - "Equality & Inclusion", - "Health" - ] - }, - { - "text": "[Stresses the conclusions and recommendations of the Special Rapporteur that States have an affirmative duty to promote and protect the human rights of women and must exercise due diligence to prevent violence against women, including violence against women in the family, and calls on States:] To enact and enforce legislation protecting girls from all forms of violence, including female infanticide and prenatal sex selection, genital mutilation, incest, sexual abuse, sexual exploitation, child prostitution and child pornography;", - "values": [ - "Gender", - "Harmful Practices", - "Violence" - ] - }, - { - "text": "States Parties shall: b. Provide internally displaced persons to the fullest extent practicable and with the least possible delay, with adequate humanitarian assistance, which shall include food, water, shelter, medical care and other health services, sanitation, education, and any other necessary social services, and where appropriate, extend such assistance to local and host communities;", - "values": [ - "Humanitarian", - "Movement" - ] - }, - { - "text": "In order to fully contribute to realizing human rights, social pensions and any other relevant social policy should be designed and implemented in ways that ensure their compliance with core human rights principles and obligations. The following section examines the key human rights components for a social pension scheme that complies with human rights law.", - "values": [ - "Governance & Rule of Law", - "Social & Cultural Rights" - ] - }, - { - "text": "These consultations brought together experts from Governments, national institutions, regional and international organizations, academia and civil society, as well as children themselves. They informed the development of thematic studies and follow-up advocacy and policy discussions at the national and international levels to accelerate progress in children's protection.", - "values": [ - "Governance & Rule of Law", - "Violence" - ] - }, - { - "text": "Condemns all violent acts committed against the civilian population as such, in violation of international humanitarian law in situations of armed conflict, and calls for an effective response to such acts, in particular the immediate release of women and children taken hostage, including those subsequently imprisoned, in armed conflicts, including by strengthening international cooperation in this field;", - "values": [ - "Humanitarian" - ] - }, - { - "text": "Noting with concern that the incidence and risk of child, early and forced marriage is highly exacerbated in humanitarian settings by various factors, including insecurity, gender inequality, increased risks of sexual and gender-based violence, breakdown of the rule of law and State authority, the misconception of providing protection through marriage, the use of forced marriage as a tactic in conflict, lack of access to education, the stigma of pregnancy outside marriage, absence of family planning services, disruptions in social networks and routines, increased poverty and the absence of livelihood opportunities,", - "values": [ - "Harmful Practices", - "Humanitarian" - ] - }, - { - "text": "[Calls upon States:] Not to invoke any custom, tradition or religious consideration to avoid their obligations to eliminate violence against women;", - "values": [ - "Gender", - "Violence" - ] - }, - { - "text": "Article 2 of the Optional Protocol requires that authors of communications must be under the jurisdiction of the State party responsible for the violation, and that the State must have ratified both the Covenant and the Optional Protocol. However, the Covenant indicates no restriction to territorial jurisdiction and it will remain to be seen whether the cases to be examined under the Optional Protocol concentrate principally on the territorial link.", - "values": [ - "Food & Nutrition", - "Governance & Rule of Law" - ] - }, - { - "text": "Reiterated the importance of the establishment of procedures for determining refugee status and urged those States Parties to the 1951 Convention and the 1967 Protocol which had not yet done so to establish such procedures in the near future;", - "values": [ - "Governance & Rule of Law", - "Movement" - ] - }, - { - "text": "Private, out-of-pocket payments account for about 50 per cent of total health expenditures in countries where more than 50 per cent of the population is living on less than $2 per day. It is actually the poorest and most in need who suffer from such payments. Universal health coverage consistent with the right to health requires establishing a financing system that is equitable and pays special attention to the poor and others unable to pay for health-care services, such as children and adolescents.", - "values": [ - "Economic Rights", - "Health", - "Poverty" - ] - }, - { - "text": "Recognizing that the problems of hunger and food insecurity have global dimensions and that there has been virtually no progress made on reducing hunger and that it could increase dramatically in some regions unless urgent, determined and concerted action is taken, given the anticipated increase in the world's population and the stress on natural resources,", - "values": [ - "Food & Nutrition", - "Governance & Rule of Law" - ] - }, - { - "text": "Women and children who are victims of harmful practices are in need of immediate support services, including medical, psychological and legal services. Emergency medical services may be the most urgent and obvious, given that some of the harmful practices covered herein involve the infliction of extreme physical violence and medical intervention may be necessary to treat severe harm or prevent death. Victims of female genital mutilation or other harmful practices may also require medical treatment or surgical interventions to address the short-term and long-term physical consequences. The management of pregnancy and childbirth in women or girls who have undergone female genital mutilation must be included in pre-service and in-service training for midwives, doctors and other skilled birth attendants.", - "values": [ - "Harmful Practices", - "Health" - ] - }, - { - "text": "[The Commission urges Governments, at all levels [...] to take the following actions:] [Realizing women's and girls' full enjoyment of all human rights]: Promote and protect effectively the human rights and fundamental freedoms of all migrants, regardless of their migration status, especially those of women and children, and address international migration through international, regional or bilateral cooperation and dialogue and through a comprehensive and balanced approach, recognizing the roles and responsibilities of countries of origin, transit and destination in promoting and protecting the human rights of all migrants, and avoiding approaches that might aggravate their vulnerability;", - "values": [ - "Governance & Rule of Law", - "Movement" - ] - }, - { - "text": "[By Governments:] Promote an active and visible policy of mainstreaming a gender perspective in all policies and programmes related to violence against women; actively encourage, support and implement measures and programmes aimed at increasing the knowledge and understanding of the causes, consequences and mechanisms of violence against women among those responsible for implementing these policies, such as law enforcement officers, police personnel and judicial, medical and social workers, as well as those who deal with minority, migration and refugee issues, and develop strategies to ensure that the revictimization of women victims of violence does not occur because of gender-insensitive laws or judicial or enforcement practices;", - "values": [ - "Gender", - "Movement" - ] - }, - { - "text": "Recognizing that the root causes of preventable maternal mortality and morbidity, which can constrain efforts to eliminate them and contribute to their unacceptably high global rates, encompass a wide range of interlinked underlying factors related to development, human rights and health, including, inter alia, poverty, illiteracy, lack of economic opportunities, challenges associated with rapid population growth, poor nutrition, barriers to education, discrimination against women and girls, harmful traditional practices, such as female genital mutilation/cutting and early and forced marriage, as well as gender-based violence, lack of participation in decision-making, poor health infrastructure, inadequate training for health personnel and inadequate investment in education, nutrition and basic health care,", - "values": [ - "Gender", - "Health" - ] - }, - { - "text": "Encourages Member States, in designing their national policies, to fully take into account the Rome Declaration on Nutrition as well as the Framework for Action, which provides a set of voluntary policy options and strategies for the use of Governments, as appropriate;", - "values": [ - "Governance & Rule of Law" - ] - }, - { - "text": "In the age of globalization, trafficking in persons cannot be examined in isolation from the broader socioeconomic realities that drive it, nor should it be tackled only from a criminal perspective. Factors such as poverty and inequality, lack of educational opportunity and access to health care, gender discrimination, including gender-based violence, racial inequality and migration are some of the underlying factors that cause/contribute to trafficking in persons.", - "values": [ - "Education", - "Gender", - "Health", - "Movement", - "Poverty", - "Violence" - ] - }, - { - "text": "Pledge to take further concrete action to ensure the full, effective and accelerated implementation of the Beijing Declaration and Platform for Action and the outcome documents of the twenty-third special session of the General Assembly, including through strengthened implementation of laws, policies, strategies and programme activities for all women and girls; strengthened and increased support for institutional mechanisms for gender equality and the empowerment of women and girls at all levels; the transformation of discriminatory norms and gender stereotypes and the promotion of social norms and practices that recognize the positive role and contribution of women and eliminate discrimination against women and girls; significantly increased investment to close resource gaps, including through the mobilization of financial resources from all sources, including domestic resource mobilization and allocation and increased priority on gender equality and the empowerment of women in official development assistance to build on progress achieved and ensure that official development assistance is used effectively to contribute to the implementation of the Platform for Action; strengthened accountability for the implementation of existing commitments; and enhanced capacity-building, data collection, monitoring and evaluation, and access to and use of information and communications technologies;", - "values": [ - "Equality & Inclusion", - "Social & Cultural Rights" - ] - }, - { - "text": "While armed conflict situations may place journalists at risk, the Special Rapporteur notes that the majority of attacks against journalists take place outside of armed conflict situations. Individuals who cover public demonstrations, report on issues such as corruption, human rights violations, environmental issues, organized crime, drug trafficking, public crises or emergencies are placed at particular risk of violence. Nevertheless, the Special Rapporteur also reiterates the importance of the following concerns.", - "values": [ - "Humanitarian", - "Violence" - ] - }, - { - "text": "Due to the control their employers exercise over them, children sold for the purpose of forced labour are particularly vulnerable to violence and abuse. For example, child labour in domestic work makes children vulnerable to sexual violence and abuse, as well as beatings and degrading treatment. Children, in particular girls, involved in forced labour in manufacturing, such as the garment industry, are often victims of sexual violence. In armed conflict, systematic sexual violence and enslavement is often a daily reality for girls (see A/HRC/32/CRP.2).", - "values": [ - "Economic Rights", - "Violence" - ] - }, - { - "text": "Linked to the question of affordability of services is the issue of disconnections. When water disconnections take place despite people's inability to pay, individuals must still have at least access to minimum essential levels of water.", - "values": [ - "Humanitarian", - "Water & Sanitation" - ] - }, - { - "text": "Reaffirming further that everyone has the right to life, liberty and security of person, the equal right to live independently and be included in the community and the right to equal recognition before the law, and that no one shall be subjected to torture or to cruel, inhuman or degrading treatment or punishment,", - "values": [ - "Civil & Political Rights", - "Equality & Inclusion", - "Governance & Rule of Law" - ] - }, - { - "text": "Recalling its resolutions 64/292 of 28\u00a0July 2010, in which it recognized the right to safe and clean drinking water and sanitation as a human right that is essential for the full enjoyment of life and all human rights, and 70/169 of 17\u00a0December 2015, entitled \u201cThe human rights to safe drinking water and sanitation\u201d,", - "values": [ - "Governance & Rule of Law", - "Water & Sanitation" - ] - }, - { - "text": "States of origin, States of transit and States of employment share the responsibility for regulating and monitoring recruitment and placement processes.", - "values": [ - "Governance & Rule of Law", - "Movement" - ] - }, - { - "text": "Noting that, during a natural disaster, pregnant or lactating women and adolescent girls, who constitute an average of 18 to 20 per cent of the female population, are more vulnerable to disasters because of their limited physical mobility and their increased needs for food and water and for access to reproductive health care and safe birthing facilities,", - "values": [ - "Health", - "Humanitarian" - ] - }, - { - "text": "[Urges States:] To adopt a victim-centred and gender-sensitive approach in the fight against torture and other cruel, inhuman or degrading treatment or punishment, paying special attention to the views and needs of victims in policy development and other activities relating to rehabilitation, prevention and accountability for torture and other cruel, inhuman or degrading treatment or punishment, and gender-based violence that constitutes torture or other cruel, inhuman or degrading treatment or punishment;", - "values": [ - "Civil & Political Rights", - "Gender", - "Violence" - ] - }, - { - "text": "63. (ii) Governments should take appropriate steps to help women to avoid abortion, which in no case should be promoted as a method of family planning, and in all cases provide for the humane treatment and counselling of women who have had recourse to abortion;", - "values": [ - "Health" - ] - }, - { - "text": "[The Commission [...] urges Governments [...] to:] [14.6. Child labour] (b) Raise government and public awareness as to the nature and scope of the special needs of girls, including migrant girls, employed as domestic workers and of those performing excessive domestic chores in their own households, and develop measures to prevent their labour and economic exploitation and sexual abuse, and ensure that they have access to education and vocational training, health services, food, shelter and recreation;", - "values": [ - "Economic Rights", - "Gender" - ] - }, - { - "text": "Emphasizes that extreme poverty is a major issue to be addressed by Governments, civil society, community-based social organizations, the private sector, including the corporate sector, the United Nations system and international financial institutions, and in this context reaffirms that political commitment is a prerequisite for the eradication of poverty;", - "values": [ - "Governance & Rule of Law", - "Poverty" - ] - }, - { - "text": "Significant developments marked the first year of the mandate. These include legislative and policy measures taken at the national level to protect children from violence, strategic initiatives by United Nations agencies to mainstream countering violence against children in their agenda, and critical strides by regional organizations and political groups, as well as civil society organizations, to institutionalize the implementation process of study recommendations.", - "values": [ - "Governance & Rule of Law", - "Violence" - ] - }, - { - "text": "In providing protection and assistance to Internally Displaced Persons, international organizations and humanitarian agencies shall respect the rights of such persons in accordance with international law.", - "values": [ - "Governance & Rule of Law" - ] - }, - { - "text": "Recent reports testify that States also seek to restrain free expression during elections by prohibiting access to certain media sources and outlets, for example through blocking online websites and blogs. In 2013, civil society reported restrictions on critical newspaper distribution networks, and the blocking of opposition websites, Facebook and YouTube in the run-up to four different elections. The Special Rapporteur publicly joined other experts in indicating their concern at reports of harassment of human rights defenders and attempts to silence media outlets and websites in Malaysia before elections scheduled to take place in May 2013. In March 2014, the Special Rapporteur voiced his serious concerns at Government measures taken to restrict access to YouTube and Twitter before elections in Turkey.", - "values": [ - "Civil & Political Rights", - "Governance & Rule of Law" - ] - }, - { - "text": "Urges Governments to put greater emphasis on linkages between environmental management and underlying problems, such as poverty, population growth and distribution, unsanitary living conditions and lack of water, and on action to deal with such problems;", - "values": [ - "Environment", - "Poverty", - "Water & Sanitation" - ] - }, - { - "text": "Related to the lack of adequate education are the low expectations of teachers and the stereotypes held about a minority cultural group which often leads to discrimination. According to an education workers\u2019 union, in segregationist school systems such misjudgement may discourage and push migrant and refugee children illegitimately into special needs schools.", - "values": [ - "Education" - ] - }, - { - "text": "The data used and trends identified herein are necessarily partial as they are based on the allegations received and acted upon by the mandate as well as on the information provided in the replies to the questionnaires received, thus it does not represent the full reality of the situation of women defenders and those working on women's rights or gender issues worldwide. Furthermore, it is acknowledged that some of the communications have been responded to by Governments. While the Special Rapporteur wishes to thank those Governments who replied to the communications sent, she remains concerned regarding the allegations referred to in this report, including in cases wherein the facts may have been disputed.", - "values": [ - "Gender", - "Governance & Rule of Law", - "Violence" - ] - }, - { - "text": "[There are, among others, three interrelated main components of the right to participate or take part in cultural life: (a) participation in, (b) access to, and (c) contribution to cultural life.] Access covers in particular the right of everyone - alone, in association with others or as a community - to know and understand his or her own culture and that of others through education and information, and to receive quality education and training with due regard for cultural identity. Everyone has also the right to learn about forms of expression and dissemination through any technical medium of information or communication, to follow a way of life associated with the use of cultural goods and resources such as land, water, biodiversity, language or specific institutions, and to benefit from the cultural heritage and the creation of other individuals and communities;", - "values": [ - "Education", - "Social & Cultural Rights" - ] - }, - { - "text": "Eliminate occupational segregation by addressing structural barriers, gender stereotypes and negative social norms, promoting women's equal access to and participation in labour markets and in education and training, supporting women so as to diversify their educational and occupational choices in emerging fields and growing economic sectors, such as science, technology, engineering and mathematics and information and communications technology, recognizing the value of sectors that have large numbers of women workers;", - "values": [ - "Education", - "Gender" - ] - }, - { - "text": "[The following strategic dimensions of this important agenda in which significant progress has been made are highlighted in the report:] Fostering the growing alliance among Governments, national institutions, civil society and faith-based organizations, academics and children's networks as a major thrust of the global advocacy efforts of the mandate to mobilize action and investment in the protection of children from violence and supporting national implementation efforts, including by undertaking over 130 missions to 60 countries since 2009.", - "values": [ - "Governance & Rule of Law", - "Violence" - ] - }, - { - "text": "In order to remedy the inadequacies observed and to guarantee the effective and efficient protection of all children who are victims or at risk of sale and/or sexual exploitation, new approaches must be adopted that are informed by objective realities and the complexity of these phenomena.", - "values": [ - "Violence" - ] - }, - { - "text": "Inadequate respect and protections for indigenous peoples' land and free, prior and informed consent rights when granting rights to investors over their territories are the root causes for subsequent and broader violations of indigenous peoples' rights. In such contexts, international investment agreements that fail to recognize international human rights law obligations contribute to the subordination of indigenous peoples' rights to investor protections, as those protections become an obstacle to future recognition of indigenous peoples' pre-existing rights.", - "values": [ - "Economic Rights", - "Governance & Rule of Law", - "Social & Cultural Rights" - ] - }, - { - "text": "While certain States have taken encouraging steps, most national systems to combat malnutrition are fragmented and lack effective action, evaluation and accountability mechanisms. It is imperative that responses move away from isolated interventions and \"medicalized\" approaches to fighting malnutrition. In line with their obligations under the international human rights system, States must acknowledge the underlying causes of malnutrition and develop multisectoral approaches to coordinate nutrition policies with health, housing, water and sanitation, social protection, poverty and inequality reduction initiatives. Moreover, it must be recognized that, to effectively combat malnutrition, women's rights should be at the forefront.", - "values": [ - "Food & Nutrition", - "Governance & Rule of Law" - ] - }, - { - "text": "[Urges States to:] Take concrete measures to provide and enhance equal access and enjoyment of the highest attainable standard of health for indigenous women, including sexual and reproductive health, and access to safe and clean drinking water and sanitation, and safe cooking and heating;", - "values": [ - "Equality & Inclusion", - "Water & Sanitation" - ] - }, - { - "text": "[The Commission [...] urges Governments [...] to:] [14.6. Child labour] (a) Ensure that the applicable ILO requirements for the employment of girls and boys are respected and effectively enforced, and ensure also that girls who are employed have equal access to decent work, equal payment and remuneration and are protected from economic exploitation, discrimination, sexual harassment, violence and abuse in the workplace, are aware of their rights, and have access to formal and non-formal education, skills development, and vocational training, and develop gender-sensitive measures, including national action plans where appropriate, to eliminate the worst forms of child labour, including commercial sexual exploitation, slave-like practices, forced and bonded labour, trafficking, and hazardous forms of child labour;", - "values": [ - "Economic Rights", - "Gender" - ] - }, - { - "text": "An important use of international public finance, including ODA, is to catalyse additional resource mobilization from other sources, public and private. It can support improved tax collection and help to strengthen domestic enabling environments and build essential public services. It can also be used to unlock additional finance through blended or pooled financing and risk mitigation, notably for infrastructure and other investments that support private sector development.", - "values": [ - "Governance & Rule of Law" - ] - }, - { - "text": "[States parties should promote inclusive and sustainable economic development that enables rural women to enjoy their rights and:] Recognize their crucial contributions to local and national economies and to food production, as well as to the well-being of their families and communities, including through unpaid care work and work on family farms, in line with general recommendation No. 17 (1991) on the measurement and quantification of the unremunerated domestic activities of women and their recognition in the gross national product;", - "values": [ - "Food & Nutrition", - "Gender" - ] - }, - { - "text": "2. If a State becomes a party to this Convention after its entry into force, the obligations of that State vis-\u00e0-vis the Committee shall relate only to enforced disappearances which commenced after the entry into force of this Convention for the State concerned.", - "values": [ - "Governance & Rule of Law" - ] - }, - { - "text": "Stresses the importance of the adoption by Member States, international organizations, including the United Nations, the private sector, non-governmental organizations, trade unions and other stakeholders of appropriate measures to identify and address the ongoing adverse impacts of the world financial and economic crisis, volatile energy prices and the food crisis, and the challenges posed by climate change for women and girls, and of maintaining adequate levels of funding for the achievement of gender equality and the empowerment of women;", - "values": [ - "Economic Rights", - "Environment", - "Gender" - ] - }, - { - "text": "The generic term \"social protection\" has been used to describe a wide range of past and present policy approaches. In recent years, however, the main debate has been between those who support what are termed \"social safety net\" approaches and those who seek \"social inclusion\" and acknowledge \"social citizenship\". The principal response of the World Bank to the backlash against the austerity and adjustment policies of the Washington Consensus was to advocate social safety nets. The concept of social risk management gained special prominence, both as a means to protect the basic livelihood of the most vulnerable, or those living in chronic poverty, and to promote better managed risk-taking in response to economic and other shocks. However, the safety net approach was also widely criticized for failing to devote enough attention to structural poverty and inequality, and for its emphasis on the narrow targeting of groups for assistance. In response, rights-based approaches were promoted, not only within the human rights community, but by a broader range of development scholars and institutions. But the general debate is far from settled and critics argue that many of today's approaches to social protection continue to show a \"bias towards more ameliorative and less transformative approaches to social protection, which are likely to leave the underlying causes of injustice in place.\"", - "values": [ - "Economic Rights", - "Governance & Rule of Law", - "Poverty" - ] - }, - { - "text": "2. Every young person shall have the right to be protected from economic exploitation and from performing work that is likely to be hazardous to or interfere with the young person's education, or to be harmful to the young person's health or holistic development.", - "values": [ - "Economic Rights", - "Violence" - ] - }, - { - "text": "Recognizing that environmental damage and occupational risks have potentially negative effects on children and their enjoyment of their right to the highest attainable standard of health and to an adequate standard of living,", - "values": [ - "Environment", - "Health" - ] - }, - { - "text": "Reaffirming the human right of everyone to education, which is enshrined in, inter alia, the Universal Declaration of Human Rights, the International Covenant on Economic, Social and Cultural Rights, the Convention on the Rights of the Child, the Convention on the Elimination of All Forms of Discrimination against Women and the Convention on the Rights of Persons with Disabilities, and other relevant international instruments,", - "values": [ - "Education", - "Governance & Rule of Law" - ] - }, - { - "text": "Sexuality is a complex process which, as human beings, we all without exception experience throughout our life and which has biological, psychological, social and cultural aspects that must be considered from a comprehensive viewpoint.", - "values": [ - "Equality & Inclusion" - ] - }, - { - "text": "2. The State Parties undertake to adopt measures that will make the right to work fully effective, especially with regard to the achievement of full employment, vocational guidance, and the development of technical and vocational training projects, in particular those directed to the disabled. The States Parties also undertake to implement and strengthen programs that help to ensure suitable family care, so that women may enjoy a real opportunity to exercise the right to work.", - "values": [ - "Economic Rights", - "Equality & Inclusion" - ] - }, - { - "text": "Article 9, paragraph 2, of the International Covenant on Civil and Political Rights provides that anyone who is arrested shall be informed, at the time of arrest, of the reasons for his/her arrest. Article 16, paragraph 5, of the International Convention on the Protection of the Rights of All Migrant Workers and Members of Their Families provides the same right specifically for migrant workers and members of their families. The Working Group on Arbitrary Detention stated in its deliberation No. 5 on the situation regarding immigrants and asylum-seekers that a notification of the detention must be given in writing, in a language understood by the asylum-seeker or immigrant, stating the grounds for the detention, and set out the conditions to apply for a remedy to a judicial authority.", - "values": [ - "Governance & Rule of Law", - "Movement" - ] - }, - { - "text": "Recalls the United Nations Declaration on the Rights of Indigenous Peoples, acknowledges that many indigenous organizations and representatives of indigenous peoples have expressed in different forums their deep concerns over the obstacles and challenges they face in achieving the full enjoyment of the right to food, and calls upon States to take special actions to combat the root causes of the disproportionately high level of hunger and malnutrition among indigenous peoples and the continuous discrimination against them;", - "values": [ - "Equality & Inclusion", - "Food & Nutrition", - "Health" - ] - }, - { - "text": "Recognizing that children with disabilities are at a greater risk of abuse, neglect, abandonment, exploitation, health concerns, exposure to the risk of longer term psycho-social disturbances, family separation and denial of the right to education,", - "values": [ - "Equality & Inclusion", - "Violence" - ] - }, - { - "text": "Guided also by the principles and norms of international humanitarian law, in particular the Geneva Conventions of 12 August 1949 and the Additional Protocols thereto of 1977, as well as relevant international standards of human rights, in particular the Universal Declaration of Human Rights, the International Covenant on Economic, Social and Cultural Rights, the International Covenant on Civil and Political Rights, the Convention on the Elimination of All Forms of Discrimination against Women, the Convention on the Rights of the Child, the Convention against Torture and Other Cruel, Inhuman or Degrading Treatment or Punishment and the Vienna Declaration and Programme of Action, adopted on 25 June 1993 by the World Conference on Human Rights,", - "values": [ - "Governance & Rule of Law", - "Social & Cultural Rights" - ] - }, - { - "text": "We reaffirm the commitments made in the Johannesburg Plan of Implementation and the Millennium Declaration regarding halving by 2015 the proportion of people without access to safe drinking water and basic sanitation and the development of integrated water resource management and water efficiency plans, ensuring sustainable water use. We commit to the progressive realization of access to safe and affordable drinking water and basic sanitation for all, as necessary for poverty eradication, women's empowerment and to protect human health, and to significantly improve the implementation of integrated water resource management at all levels as appropriate. In this regard, we reiterate the commitments to support these efforts, in particular for developing countries, through the mobilization of resources from all sources, capacity-building and technology transfer.", - "values": [ - "Water & Sanitation" - ] - }, - { - "text": "Noting General Assembly resolution 52/99 of 12 December 1997, in which the Assembly, inter alia, reaffirmed that traditional or customary practices affecting the health of women and girls constitute a definite form of violence against women and girls and a serious form of violation of their human rights,", - "values": [ - "Harmful Practices", - "Social & Cultural Rights", - "Violence" - ] - }, - { - "text": "Condemning contemporary forms of slavery, while acknowledging that it is a global issue that affects all continents and most countries of the world, and calling upon States to take appropriate measures as a matter of priority to end such practices,", - "values": [ - "Governance & Rule of Law", - "Violence" - ] - }, - { - "text": "The Commission, while welcoming progress made towards gender equality and the empowerment of women and girls, emphasizes that no country has fully achieved gender equality and the empowerment of women and girls, that significant levels of inequality between women and men, girls and boys persist globally and that many women and girls experience vulnerability and marginalization owing to, inter alia, multiple and intersecting forms of discrimination throughout their life cycle.", - "values": [ - "Equality & Inclusion", - "Gender" - ] - }, - { - "text": "Recalling that everyone shall enjoy the human right to education, which is enshrined, inter alia, in the Universal Declaration of Human Rights, the International Covenant on Economic, Social and Cultural Rights, the Convention on the Rights of the Child and other pertinent international instruments,", - "values": [ - "Education", - "Governance & Rule of Law" - ] - }, - { - "text": "With a view to ensuring the effective exercise of the right of migrant workers and their families to protection and assistance in the territory of any other Party, the Parties undertake:", - "values": [ - "Economic Rights", - "Movement" - ] - }, - { - "text": "Other actors have also enriched the discussion by focusing on specific rights or the impact of climate change on particular groups. In addition to posing a direct threat to the right to life, the effects of climate change are expected to have negative implications for basic rights relating to food (A/HRC/7/5), housing (A/64/255), water and health, and affect the overall right to an adequate standard of living (A/HRC/10/61, paras. 21-38). Some of these analyses have highlighted the link between the lack of access to these rights and displacement. In the context of climate change, internally displaced persons are also a growing category of persons considered to be especially at risk, given the adverse material, social and psychological consequences commonly associated with displacement. These risks are heightened by the fact that the most serious effects of climate change, including displacement, are predicted to disproportionately affect poor regions and countries and populations already in a vulnerable situation owing to poverty and other factors.", - "values": [ - "Environment", - "Movement" - ] - }, - { - "text": "[States should:] Continue to extend and expand equal access to the formal justice system for persons living in poverty, even in areas where non-State legal orders operate", - "values": [ - "Governance & Rule of Law", - "Poverty" - ] - }, - { - "text": "Encourages Governments and, as appropriate, international organizations, civil society, the private sector and all relevant actors to facilitate and increase the participation of women, including indigenous women, particularly at the grass-roots level, as decision makers, entrepreneurs, planners, evaluators, managers, scientists, technical advisers at all levels and as beneficiaries in the design, development, implementation and monitoring of all aspects of climate change policies;", - "values": [ - "Environment", - "Gender" - ] - }, - { - "text": "1. Any propaganda for war shall be prohibited by law.", - "values": [ - "Civil & Political Rights", - "Governance & Rule of Law" - ] - }, - { - "text": "Encourages Member States and the United Nations system to ensure systematic attention to, recognition of and support for the crucial role of women in the prevention and resolution of conflict, in mediation and peacebuilding efforts and in the rebuilding of post-conflict societies, inter alia, by promoting women's capacity, leadership, participation and engagement in political and economic decision-making, and in this regard to promote an active and visible policy of mainstreaming a gender perspective in all policies and programmes;", - "values": [ - "Gender", - "Humanitarian" - ] - }, - { - "text": "Harmful practices are endemic to a wide variety of communities in most countries. Some are also found in regions or countries in which they had not been previously documented, primarily owing to migration, whereas in other countries where such practices had disappeared they are now re-emerging as a result of such factors as conflict situations.", - "values": [ - "Harmful Practices", - "Movement" - ] - }, - { - "text": "[To preserve the long-term sustainability of fishing and the availability of local fish as food, in particular by combating overfishing, all States should:] Reduce the proportion of fish used for fishmeal purposes, including by promoting direct human consumption of some small and nutritious fish, curbing demand for fish proteins from fish higher up the food chain (such as tuna and salmon or farmed carnivorous species such as prawns) by affluent consumers, which leads to overexploitation of marine resources worldwide, and considering imposing restrictions on the proportion of fish that can be used for reduction purposes.", - "values": [ - "Environment", - "Food & Nutrition", - "Governance & Rule of Law" - ] - }, - { - "text": "While women often take on leadership roles during conflict as heads of households, peacemakers, political leaders and combatants, the Committee has repeatedly expressed concern that their voices are silenced and marginalized in post-conflict and transition periods and recovery processes. The Committee reaffirms that the inclusion of a critical mass of women in international negotiations, peacekeeping activities and all levels of preventive diplomacy, mediation, humanitarian assistance, social reconciliation and peace negotiations at the national, regional and international levels, as well as in the criminal justice system, can make a difference. At the national level, women's equal, meaningful and effective participation in the various branches of government, their appointment to leadership positions in government sectors and their ability to participate as active members of civil society are prerequisites for creating a society with lasting democracy, peace and gender equality.", - "values": [ - "Civil & Political Rights", - "Gender", - "Humanitarian" - ] - }, - { - "text": "When the normative content of article 13 (Part I) is applied to the general and specific obligations of States parties (Part II), a dynamic process is set in motion which facilitates identification of violations of the right to education. Violations of article 13 may occur through the direct action of States parties (acts of commission) or through their failure to take steps required by the Covenant (acts of omission).", - "values": [ - "Education", - "Governance & Rule of Law" - ] - }, - { - "text": "Recognizes that the family unit is facing increasing vulnerabilities and pressures, and notes that, inter alia, single parent-headed households, child-headed households, families with members with disabilities and intergenerational households might be particularly vulnerable to poverty and social exclusion, and resolves to pay particular attention to them, while bearing in mind that a considerable proportion of households worldwide are headed by women and many other households are dependent on female income, and that female-maintained households are very often among the poorest because of wage discrimination;", - "values": [ - "Poverty" - ] - }, - { - "text": "Promote gender equality and the empowerment of all women and girls with disabilities and the full realization of their human rights and their inclusion in society, and take measures to ensure that women with disabilities have access to decent work on an equal basis with others in the public and private sectors, that labour markets and work environments are open, inclusive and accessible to persons with disabilities, and take positive measures to increase employment of women with disabilities and eliminate discrimination on the basis of disability with regard to all matters concerning all forms of employment, including recruitment, retention and promotion, and the provision of safe, secure and healthy working conditions, in consultation with relevant national mechanisms and organizations of persons with disabilities", - "values": [ - "Economic Rights", - "Equality & Inclusion" - ] - }, - { - "text": "Also calls on Governments to promote and protect the full enjoyment of human rights by women and girls, including in the context of natural disaster relief, recovery, rehabilitation and reconstruction efforts;", - "values": [ - "Humanitarian" - ] - }, - { - "text": "Acknowledging the very important role of the media in the promotion and popularization of sport and in raising public awareness of the merits of practicing as a key element of a healthy lifestyle, thus contributing to the enjoyment of the highest attainable standard of physical and mental health,", - "values": [ - "Health" - ] - }, - { - "text": "Recognizing the importance of having a comprehensive and balanced approach to international migration, and bearing in mind that migration enriches the economical, political, social and cultural fabric of States and the historical and cultural ties that exist among some regions,", - "values": [ - "Governance & Rule of Law", - "Movement" - ] - }, - { - "text": "At the national level, legal frameworks have resulted in vastly different outcomes. On the one hand, they may entrench existing power structures and inequalities or may protect traditional water rights. Integrating human rights requires the reform of relevant water and wastewater law and policy frameworks. What is often lacking is an efficient framework to deal with faecal sludge management. The same holds true for regulating diffuse pollution.", - "values": [ - "Environment", - "Governance & Rule of Law", - "Water & Sanitation" - ] - }, - { - "text": "Within a legislative and policy framework, budgeting for, developing and strengthening holistic child protection systems, on the basis of a child rights approach, forms the basis of the practical measures required for prevention and response strategies. Such national child protection systems need to reach children in street situations and should incorporate fully the specific services they need. The systems need to provide a continuum of care across all relevant contexts, including prevention, early intervention, street outreach, helplines, drop-in centres, day-care centres, temporary residential care, family reunification, foster care, independent living or other short- or long-term care options. However, not all of these contexts are relevant for all children in street situations. For example, prevention and early intervention are priorities for children at the early stages of developing strong and harmful street connections, but are not relevant for children born in street situations. Some children may not experience residential placements while, for others, family reunification is not relevant or appropriate. Strategies should make it clear that a child rights approach needs to apply to each and every context. Administrative burdens and delays in gaining access to child protection systems should be reduced. Information should be made available in child-friendly and accessible formats and children in street situations should be supported to understand and navigate child protection systems.", - "values": [ - "Equality & Inclusion", - "Governance & Rule of Law" - ] - }, - { - "text": "State Parties shall respect ethnic, cultural and religious diversity, which contributes to strengthening democracy and citizen participation.", - "values": [ - "Governance & Rule of Law", - "Social & Cultural Rights" - ] - }, - { - "text": "Across developing and developed countries, incarceration rates are extremely high for persons living in poverty. Disproportionately high numbers of them are arrested, detained and imprisoned as a result of law enforcement officials' frequent use of poverty, homelessness or disadvantage as an indicator of criminality, and they encounter considerable obstacles in manoeuvring within or exiting the criminal justice system.", - "values": [ - "Governance & Rule of Law", - "Poverty" - ] - }, - { - "text": "Women are often denied equal enjoyment of their human rights, in particular by virtue of the lesser status ascribed to them by tradition and custom, or as a result of overt or covert discrimination. Many women experience distinct forms of discrimination due to the intersection of sex with such factors as race, colour, language, religion, political and other opinion, national or social origin, property, birth, or other status, such as age, ethnicity, disability, marital, refugee or migrant status, resulting in compounded disadvantage.", - "values": [ - "Equality & Inclusion", - "Social & Cultural Rights" - ] - }, - { - "text": "[The Commission urges governments, at all levels[...] to take the following actions:] [Addressing structural and underlying causes and risk factors so as to prevent violence against women and girls]: Accelerate efforts to develop, review and strengthen policies, and allocate adequate financial and human resources, in order to address the structural and underlying causes of violence against women and girls, including gender discrimination, inequality, unequal power relations between women and men, gender stereotypes, poverty as well as their lack of empowerment, in particular in the context of the economic and financial crisis; and accelerate efforts to eradicate poverty and persistent legal, social and economic inequalities, including by strengthening the economic participation, empowerment and inclusion of women and girls, in order to decrease their risk of violence", - "values": [ - "Equality & Inclusion", - "Gender" - ] - }, - { - "text": "[Urges Governments and, where appropriate, United Nations entities, civil society, including non-governmental organizations and the private sector, and other stakeholders:] To make the utmost efforts to secure equal access to disaster relief assistance for women, girls, boys and men, and provide disaster response and support for recovery and development that is fully responsive to the needs and respects the views and enjoyment of all human rights of women and girls, with special attention paid to the needs of pregnant and lactating women, adolescent girls, families with infants or older persons, single-headed households and persons with disabilities and widows, such as in the context of the provision of food and supplies, water and sanitation, the set-up and management of shelter, safety and security, and the provision of physical, psychological and emergency health care, including for sexual and reproductive health, and counselling services for survivors of gender-based violence, while encouraging the involvement of women professionals and gender balance among field workers;", - "values": [ - "Equality & Inclusion", - "Humanitarian" - ] - }, - { - "text": "The Committee wishes to remind States parties that they have recognized the right of every child alleged as, accused of, or recognized as having infringed the penal law to be treated in accordance with the provisions of article 40 of CRC. This means that every person under the age of 18 years at the time of the alleged commission of an offence must be treated in accordance with the rules of juvenile justice.", - "values": [ - "Civil & Political Rights" - ] - }, - { - "text": "Concerned also that the adverse impacts of climate change on women and girls, including indigenous women, can be exacerbated by gender inequality, discrimination and poverty,", - "values": [ - "Environment", - "Gender" - ] - }, - { - "text": "[The Commission [...] urges Governments [...] to:] [14.12. Migration] (b) Effectively promote and protect the human rights and fundamental freedoms of girl migrants, regardless of their immigration status, and facilitate family reunification in an expeditious and effective manner, with due regard for applicable laws", - "values": [ - "Movement" - ] - }, - { - "text": "[With a view to respecting, protecting and fulfilling the right to adequate food and nutrition, the Special Rapporteur recommends that:] The Guiding Principles on Business and Human Rights be implemented to ensure corporate responsibility of the food and nutrition industry and enforce the rights of victims to redress human rights violations, including cross-border cases;", - "values": [ - "Food & Nutrition" - ] - }, - { - "text": "Trafficking of children is on the increase globally, with girls being affected the most. The recently released Global Report on Trafficking in Persons 2014 also notes significant regional differences concerning child trafficking, with children comprising a majority of detected victims of trafficking in Africa and the Middle East.", - "values": [ - "Violence" - ] - }, - { - "text": "There are particular challenges to transparency in the health sector. Asymmetric information between providers, payers and users leads to provider or user moral hazard. Information is divided between a multitude of different actors, including regulators, payers, providers, users and suppliers, which reduces transparency. There are many varying ways to improve transparency depending on the context. For example, transparency in procurement is enhanced through public access to procurement bidding results, monitoring of the prices paid and analysis of bids. Transparency in recruitment can be supported through the publication of criteria. Transparency through the promotion of information that sets out the services and treatments to which individuals are entitled and how these services are reimbursed can help minimize inequalities in access to care through corrupt practices. The publication of transparent waiting lists can negate the practice of bribery to access more rapid treatment", - "values": [ - "Equality & Inclusion", - "Health" - ] - }, - { - "text": "Expressing its concern that the HIV and AIDS pandemic reinforces gender inequalities, that women and girls are disproportionately affected by the pandemic, that they are more easily infected, especially at an earlier age than men and boys, that they bear the disproportionate burden of caring for and supporting people living with and affected by HIV and AIDS and that they become more vulnerable to poverty as a result of the pandemic,", - "values": [ - "Health", - "Poverty" - ] - }, - { - "text": "The Commission acknowledges the important role of national machineries for the advancement of women and girls, the relevant contribution of national human rights institutions, where they exist, and the important role of civil society in promoting the economic empowerment of women and their full and productive employment and decent work, as well as in advancing the implementation of the Beijing Declaration and Platform for Action and the gender-responsive implementation of the 2030 Agenda for Sustainable Development.", - "values": [ - "Economic Rights", - "Gender" - ] - }, - { - "text": "[Generally, it is the lack of implementation or the poor enforcement of laws regulating business that pose the most critical problems for children. There are a number of measures States should employ to ensure effective implementation and enforcement, including:] Strengthening regulatory agencies responsible for the oversight of standards relevant to children's rights such as health and safety, consumer rights, education, environment, labour and advertising and marketing so that they have sufficient powers and resources to monitor and to investigate complaints and to provide and enforce remedies for abuses of children's rights;", - "values": [ - "Equality & Inclusion", - "Governance & Rule of Law" - ] - }, - { - "text": "Social protection is also an important element of strategies aiming to protect children from sale and sexual exploitation. Social protection includes a range of interventions, such as transfers in cash or in kind, social services, social insurance and protection from discriminatory practices.", - "values": [ - "Social & Cultural Rights", - "Violence" - ] - }, - { - "text": "It is recognized that there may be exceptional cases in which a refugee or asylum seeker may justifiably claim that he has reason to fear persecution or that his physical safety or freedom are endangered in a country where he previously found protection. Such cases should be given favourable consideration by the authorities of the State where he requests asylum;", - "values": [ - "Humanitarian", - "Movement" - ] - }, - { - "text": "Underscoring that all migrants, regardless of their migration status, are human rights holders, and reaffirming the need to protect their safety, dignity and human rights and fundamental freedoms,", - "values": [ - "Equality & Inclusion", - "Movement" - ] - }, - { - "text": "Requests the United Nations system, Member States and other stakeholders to continue to promote the inclusion of a gender perspective in their activities on disaster risk reduction, including at the third World Conference on Disaster Risk Reduction in 2015", - "values": [ - "Gender", - "Humanitarian" - ] - }, - { - "text": "Bearing in mind that rural areas still represent an important part of the African region, where rural populations may account for up to 85 per cent of the total population, that the agricultural sector can contribute up to 50 per cent of gross domestic product (GDP) and that the proportion of active rural women varies from 45 to 80 per cent of the agricultural labour force, producing up to 80 per cent of food crops,", - "values": [ - "Equality & Inclusion" - ] - }, - { - "text": "[Actions to be taken by Governments, the United Nations and civil society, as appropriate]: Develop anti-racist and gender-sensitive human rights training for personnel in the administration of justice, law enforcement agencies, security and health-care services schools and migration authorities, paying particular attention to immigration officials, border police and staff of migrant detention centres, as well as for United Nations personnel;", - "values": [ - "Equality & Inclusion", - "Movement" - ] - }, - { - "text": "The work of the CSW over the past 20 years is an indicator of an expansive and growing acceptance of the temporal and spatial underpinnings of violence against women; the refinement of the understanding of the issue, its causes and consequences, through a holistic human rights lens; a focus on State responsibility to act with due diligence in the elimination of all forms of violence against women, including addressing its causes and consequences; and ultimately, the acknowledgement that violence against women is a widespread and pervasive human rights issue that requires the attention of all States.", - "values": [ - "Gender", - "Governance & Rule of Law", - "Violence" - ] - }, - { - "text": "Encourages all States to measure progress in the realization of the right to education, such as by developing national indicators as an important tool for the realization of the right to education and for policy formulation, impact assessment and transparency;", - "values": [ - "Education", - "Governance & Rule of Law" - ] - }, - { - "text": "1 Parties shall take the necessary legislative or other measures to ensure that, in criminal proceedings initiated following the commission of any of the acts of violence covered by the scope of this Convention, culture, custom, religion, tradition or so-called \u201chonour\u201d shall not be regarded as justification for such acts. This covers, in particular, claims that the victim has transgressed cultural, religious, social or traditional norms or customs of appropriate behaviour.", - "values": [ - "Governance & Rule of Law", - "Social & Cultural Rights" - ] - }, - { - "text": "1. A State Party to the present Convention may at any time declare under the present article that it recognizes the competence of the Committee to receive and consider communications from or on behalf of individuals subject to its jurisdiction who claim that their individual rights as established by the present Convention have been violated by that State Party. No communication shall be received by the Committee if it concerns a State Party that has not made such a declaration.", - "values": [ - "Governance & Rule of Law" - ] - }, - { - "text": "[States, in accordance with their obligation to respect, protect and fulfil the right to adequate food for all, should:] Adopt a national strategy for the realization of the right to adequate food which integrates the objective of guaranteeing the right to adequate diets for all and sets specific targets and time frames for action;", - "values": [ - "Equality & Inclusion", - "Food & Nutrition", - "Governance & Rule of Law" - ] - }, - { - "text": "Honour killings take many forms, including direct murder; stoning; women and young girls being forced to commit suicide after public denunciations of their behaviour; and women being disfigured by acid burns, leading to death. Honour crimes are also linked to other forms of family violence, and are usually committed by male family members as a means of controlling women's sexual choices and limiting their freedom of movement. Punishment usually has a collective dimension, with the family as a whole believing it to be injured by a woman's actual or perceived behaviour, and is often public in character. The visibility of the issue and the punishment also serves a social objective, namely, influencing the conduct of other women.", - "values": [ - "Harmful Practices", - "Violence" - ] - }, - { - "text": "The Commission requests Member States, with a view to strengthening financing for gender equality and the empowerment of women, to integrate gender perspectives in the preparations for and outcome of the Follow-up International Conference on Financing for Development to Review the Implementation of the Monterrey Consensus, to be held in Qatar in 2008.", - "values": [ - "Economic Rights", - "Gender" - ] - }, - { - "text": "Enact or strengthen and enforce laws and regulatory frameworks that ensure equality and prohibit discrimination against women, in particular in the world of work, including their participation in and access to labour markets, inter alia, laws and frameworks that prohibit discrimination based on pregnancy, motherhood, marital status or age, as well as other multiple and intersecting forms of discrimination; take appropriate measures to ensure that women, throughout the life cycle, have equal opportunities for decent work in the public and private sectors, while recognizing that temporary special measures aimed at accelerating de facto equality between men and women should not be considered discrimination; address the root causes of gender inequality, gender stereotypes and unequal power relations between men and women; and provide, as appropriate, effective means of redress and access to justice in cases of non-compliance and accountability for violations and abuses of human rights;", - "values": [ - "Economic Rights", - "Equality & Inclusion", - "Gender", - "Social & Cultural Rights" - ] - }, - { - "text": "[In line with the above, the Special Rapporteur recommends that States:] Ensure the gender-responsive water, sanitation and hygiene facilities are available in schools, hospitals, the workplace, market places, places of detention and public spaces like public transport hubs and public institutions, among other places. Laws and regulations must be developed, promoted and enforced and must serve to hold Governments and non-State actors to account;", - "values": [ - "Gender", - "Water & Sanitation" - ] - }, - { - "text": "The right of peaceful assembly shall be recognized. No restrictions may be placed on the exercise of this right other than those imposed in conformity with the law and which are necessary in a democratic society in the interests of national security or public safety, public order (ordre public), the protection of public health or morals or the protection of the rights and freedoms of others.", - "values": [ - "Civil & Political Rights", - "Governance & Rule of Law" - ] - }, - { - "text": "5. Sentence of death shall not be imposed for crimes committed by persons below eighteen years of age and shall not be carried out on pregnant women.", - "values": [ - "Civil & Political Rights", - "Governance & Rule of Law" - ] - }, - { - "text": "No one shall be subjected to torture or to cruel, inhuman or degrading treatment or punishment. In particular, no one shall be subjected without his free consent to medical or scientific experimentation.", - "values": [ - "Civil & Political Rights", - "Equality & Inclusion" - ] - }, - { - "text": "[Also calls upon all States:] To develop national plans of action, or to strengthen existing ones, in order to achieve the objectives of Education for All so as to ensure that all boys and girls complete a full course of primary schooling, and reaffirms the coordinating role of the United Nations Educational, Scientific and Cultural Organization in this regard;", - "values": [ - "Education", - "Governance & Rule of Law" - ] - }, - { - "text": "Expressing its deep concern at the number and scale of natural disasters, diseases and pest infestations, as well as the negative impact of climate change, and their increasing impact in recent years, which have, in combination with other factors, resulted in substantial loss of life and livelihood and threatened agricultural production and food and nutrition security, in particular in developing countries", - "values": [ - "Environment", - "Humanitarian" - ] - }, - { - "text": "The remarkable success of Brazil in reducing child malnutrition rates over the past 15 years bears witness to the power of strategies such as \"Zero Hunger\" and participatory approaches. Beyond that example, recent research shows that countries that have made significant progress in reducing malnutrition present a number of common characteristics. First, they sought to adopt a multisectoral approach to combating hunger and malnutrition. Their strategies combined attention to agriculture, with the mainstreaming of nutrition in health-care policies, and coordinated policies in the areas of education, gender, water, sanitation and habitat, pro-poor economic development (both through employment and income generation for the poor and through social development), and trade. Second, in almost all cases, the political impetus at the highest level of government was a key factor. Change was achieved after Governments placed food and nutrition security at the top of the political agenda and adopted strategies specifically aimed at combating hunger and poverty. Third, civil society participation and empowerment were essential, contributing to the sustainability of policies across time and improving their acceptance and impact among affected populations. Fourth, multiphased approaches were the most effective, as allowed by multi-year national strategies combining both short-term interventions and long-term approaches to nutrition. Fifth, the establishment of institutions monitoring progress ensured that the political pressure remained present throughout the implementation phase of the strategy and that the resources were committed. Sixth, the continuity of financial investment from national resources, supplemented with external matching funds, was vital: one-time efforts, over short periods, failed to achieve significant impact.", - "values": [ - "Food & Nutrition", - "Governance & Rule of Law" - ] - }, - { - "text": "Reaffirms the need to ensure that programmes delivering safe, sufficient, nutritious and culturally accepted food are inclusive and accessible to persons with disabilities;", - "values": [ - "Equality & Inclusion", - "Food & Nutrition" - ] - }, - { - "text": "Recognizes that gender equality, the integration of gender perspectives and the effective participation of women at the global, regional, national and local levels are important for effective action on all aspects of climate change, as contained, inter alia, in the Bali Action Plan;", - "values": [ - "Environment", - "Gender" - ] - }, - { - "text": "[The Commission urges Governments, [...] to take the following actions [...]:] (rr) Address gender stereotypes in the context of equal sharing of responsibilities between women and men by encouraging media to promote gender equality and the non-stereotypical portrayal of women and girls and men and boys, and by carrying out and publishing research on views, especially of men and boys, on gender equality and perceptions of gender roles, as well as by assessing the impact of efforts undertaken in achieving gender equality;", - "values": [ - "Equality & Inclusion", - "Gender" - ] - }, - { - "text": "The Special Rapporteur deplores the imposition of treatments to try to change sexual orientation and gender identity, including forced sex assignment surgeries for intersex youth, forced sterilizations and abortions for girls with disabilities, the use of surgery and hormone therapy to stunt the growth of children with developmental disabilities and remove their reproductive organs, and the pathologizing of transgender identity and same-sex attraction as psychiatric disorders. States should eliminate such practices and to repeal all laws criminalizing or otherwise discriminating against individuals on the basis of their sexual orientation or gender identity and expression. There is a need to reform and update national health information systems to include human rights concepts and variables such as lesbian, gay, bisexual and intersex status.", - "values": [ - "Equality & Inclusion", - "Gender" - ] - }, - { - "text": "International cooperation between law enforcement agencies and initiatives led by the International Criminal Police Organization (INTERPOL) and the European Police Office (Europol) have facilitated the pursuit of accountability in the context of transnational child sexual exploitation. With the help of the International Child Sexual Exploitation image database, around 3,800 offenders have been identified. The Virtual Global Taskforce, which consists of law enforcement partners including INTERPOL and Europol and a number of private sector partners, is also of particular interest. It focuses on online child sexual abuse and child sexual exploitation and has led to successful operations such as Operation Atlas, Operation Endeavour and Operation Rescue. The first led to the arrest across the globe of 303 individuals involved in the sharing and distribution of child sexual abuse material. The second concerned the live streaming of child sexual abuse on demand in the Philippines and led to 29 international arrests. The third led to the dismantling of a global paedophile ring and 184 arrests across the world. Regrettably, it is unclear how many of those arrests led to convictions.", - "values": [ - "Governance & Rule of Law", - "Violence" - ] - }, - { - "text": "Third, article 14, paragraph 3 (d) guarantees the right to have legal assistance assigned to accused persons whenever the interests of justice so require, and without payment by them in any such case if they do not have sufficient means to pay for it. The gravity of the offence is important in deciding whether counsel should be assigned \"in the interest of justice\" as is the existence of some objective chance of success at the appeals stage. In cases involving capital punishment, it is axiomatic that the accused must be effectively assisted by a lawyer at all stages of the proceedings. Counsel provided by the competent authorities on the basis of this provision must be effective in the representation of the accused. Unlike in the case of privately retained lawyers, blatant misbehaviour or incompetence, for example the withdrawal of an appeal without consultation in a death penalty case, or absence during the hearing of a witness in such cases may entail the responsibility of the State concerned for a violation of article 14, paragraph 3 (d), provided that it was manifest to the judge that the lawyer's behaviour was incompatible with the interests of justice. There is also a violation of this provision if the court or other relevant authorities hinder appointed lawyers from fulfilling their task effectively.", - "values": [ - "Civil & Political Rights", - "Governance & Rule of Law" - ] - }, - { - "text": "Calls upon States to strengthen the level of education for women and girls and the capacity of health-care systems to meet their needs in line with the internationally agreed development goals, including the Millennium Development Goals, as this is critical for empowering them and their communities to end female genital mutilation;", - "values": [ - "Education", - "Harmful Practices" - ] - }, - { - "text": "Noted with serious concern the increasing incidence of nutritional deficiency diseases and malnutrition amongst refugee children dependent upon food aid and called upon UNHCR to initiate as a matter of urgency formal discussions with relevant United Nations bodies, donors and other humanitarian organizations to develop collaborative strategies for alleviating the nutritional problems of refugee children and to seek the incorporation into their programmes of appropriate provisions for such needs;", - "values": [ - "Food & Nutrition", - "Health" - ] - }, - { - "text": "General Assembly resolution 64/290 reflects States' recognition of the urgency of ensuring the realization of the right to education as an integral element of humanitarian assistance and response. Debate and research efforts within the United Nations system are helping to unveil what has been called a \"hidden crisis\" by the EFA Global Monitoring Report. Thematic days of discussion focused on the topic were conducted by the Committee on the Rights of the Child in 2008 and the General Assembly in 2009.", - "values": [ - "Education", - "Humanitarian" - ] - }, - { - "text": "Also urges States to promote effective and specific targeted measures for refugee women and women migrants and their communities in order to protect girl children from female genital mutilation;", - "values": [ - "Harmful Practices", - "Movement" - ] - }, - { - "text": "[By Governments, including local governments, community organizations, non-governmental organizations, educational institutions, the public and private sectors, particularly enterprises, and the mass media, as appropriate:] Recognize the vulnerability to violence and other forms of abuse of women migrants, including women migrant workers, whose legal status in the host country depends on employers who may exploit their situation;", - "values": [ - "Movement", - "Violence" - ] - }, - { - "text": "Also urges States to promote, within the general framework of integration policies, effective and specific targeted measures for refugee women and women migrants and their communities, in order to protect girl children from female genital mutilation, including when the practice occurs outside the country of residence;", - "values": [ - "Gender", - "Movement" - ] - }, - { - "text": "Recognizing that natural disasters can increase the likelihood of rape and sexual exploitation, domestic violence, unwanted pregnancies, sexually transmitted infections and complications regarding sexual and reproductive health, including for pregnant women, who face heightened risks from interrupted access to sexual and reproductive health care,", - "values": [ - "Environment", - "Violence" - ] - }, - { - "text": "Also bearing in mind the United Nations Convention on the Rights of the Child, especially Article 34 thereof, the Optional Protocol on the sale of children, child prostitution and child pornography, the Protocol to Prevent, Suppress and Punish Trafficking in Persons, Especially Women and Children, supplementing the United Nations Convention against Transnational Organized Crime, as well as the International Labour Organization Convention concerning the Prohibition and Immediate Action for the Elimination of the Worst Forms of Child Labour;", - "values": [ - "Governance & Rule of Law", - "Violence" - ] - }, - { - "text": "[Urges all States to strengthen and intensify their efforts to realize progressively the equal enjoyment of the right to education by every girl, such as by taking the necessary and appropriate measures:] To provide every primary and secondary school with full access to separate, adequate and safe water and sanitation services, properly equipped with hygiene kits, that contribute to the enrolment and retention of girls in schools, and to protect girls from being physically threatened or assaulted while using sanitation facilities;", - "values": [ - "Education", - "Water & Sanitation" - ] - }, - { - "text": "The Commission notes that with regard to Millennium Development Goal 7 (environmental sustainability), while progress has been made globally in access to safe drinking water, progress on access to basic sanitation has been particularly slow, and the target is likely to be missed, with serious implications for women and girls, especially those living in vulnerable conditions. The Commission expresses concern that the lack of access to safe drinking water particularly affects women and girls and that they frequently bear the burden for its collection in rural and urban areas, and further recognizes the need for further improvement in this regard. The Commission further notes that the lack of adequate sanitation facilities disproportionately affects women and girls, including their labour force and school participation rates, and increases their vulnerability to violence. The Commission further notes that women and girls are often disproportionally affected by desertification, deforestation, natural disasters and climate change owing to gender inequalities and the dependence of many women on natural resources for their livelihoods.", - "values": [ - "Gender", - "Water & Sanitation" - ] - }, - { - "text": "Concerned that the lack of access to adequate water and sanitation services, including menstrual hygiene management, and the widespread stigma associated with menstruation have a negative impact on gender equality and the human rights of women and girls,", - "values": [ - "Health", - "Water & Sanitation" - ] - }, - { - "text": "Victims are persons who have individually or collectively suffered harm, including physical or mental injury, emotional suffering, economic loss or substantial impairment of their fundamental rights, through acts or omissions that constitute violations of the Convention. A person should be considered a victim regardless of whether the perpetrator of the violation is identified, apprehended, prosecuted or convicted, and regardless of any familial or other relationship between the perpetrator and the victim. The term \"victim\" also includes affected immediate family or dependants of the victim as well as persons who have suffered harm in intervening to assist victims or to prevent victimization. The term \"survivors\" may, in some cases, be preferred by persons who have suffered harm. The Committee uses the legal term \"victims\" without prejudice to other terms which may be preferable in specific contexts.", - "values": [ - "Governance & Rule of Law", - "Violence" - ] - }, - { - "text": "The minimum wage should apply systematically, protecting as much as possible the fullest range of workers, including workers in vulnerable situations. The minimum wage might apply generally or differ across sectors, regions, zones and professional categories, so long as the wages apply without direct or indirect discrimination and ensure a decent living. In setting minimum wages at the sector or industry level, the work performed in sectors predominantly employing women, minorities or foreign workers should not be undervalued compared with work in sectors predominantly employing men or nationals. It is particularly important to ensure that the job evaluation methods used to align or adjust sectoral or occupational minimum wage schemes are not inherently discriminatory.", - "values": [ - "Economic Rights", - "Equality & Inclusion" - ] - }, - { - "text": "Takes note of resolution 2001/14 of 15 August 2001 of the Sub-Commission on the Promotion and Protection of Human Rights;", - "values": [ - "Governance & Rule of Law" - ] - }, - { - "text": "2. In order to ensure the exercise of the right to health, the States Parties agree to recognize health as a public good and, particularly, to adopt the following measures to ensure that right: a. Primary health care, that is, essential health care made available to all individuals and families in the community;", - "values": [ - "Equality & Inclusion", - "Health" - ] - }, - { - "text": "[Participants identified several other actions and interventions, listed below, which have also helped the Special Rapporteur define areas for further engagement and work under the mandate in strengthening the strategies implemented by multi-stakeholder initiatives and industry coalitions to detect and tackle trafficking in persons:] Existing initiatives should be coordinated and collaboration with governments and civil society should be facilitated, especially regarding grievance mechanisms and provisions for remedies;", - "values": [ - "Governance & Rule of Law" - ] - }, - { - "text": "[Decides:] To continue its consideration of the question at its sixty-third session under the item entitled \u201cPromotion and protection of the rights of children\u201d, focusing section\u00a0III of the resolution on the rights of the child on \u201cChild labour, with a special emphasis on its causes, including poverty and lack of education\u201d in 2008 and on \u201cThe right of the child to express his/her views freely in all matters affecting him/her\u201d in 2009.", - "values": [ - "Governance & Rule of Law", - "Violence" - ] - }, - { - "text": "[Urges Member States to develop policies and programmes to reduce youth violence and youth involvement in crime and ensure that judicial systems and rehabilitation services are safe, fair, age-appropriate and in accordance with the relevant international human rights instruments and promote the well-being of youth\u00a0by:] Promoting alternatives to detention and institutionalization, such as social and community service;", - "values": [ - "Violence" - ] - }, - { - "text": "The present report primarily considers participation in sport and physical activity, and the right to health. Other lifestyle factors, such as the avoidance of unhealthy foods, are beyond the scope of the report, and will be discussed to the extent that they are connected to sport and healthy lifestyles.", - "values": [ - "Equality & Inclusion", - "Health" - ] - }, - { - "text": "Globalization has presented new challenges for the fulfilment of the commitments and the realization of the goals of the Fourth World Conference on Women. The globalization process has, in some countries, resulted in policy shifts in favour of more open trade and financial flows, privatization of State-owned enterprises and in many cases lower public spending, particularly on social services. This change has transformed patterns of production and accelerated technological advances in information and communication and affected the lives of women, both as workers and consumers. In a large number of countries, particularly in developing and least developed countries, these changes have also adversely impacted on the lives of women and have increased inequality. The gender impact of these changes has not been systematically evaluated. Globalization also has cultural, political and social impacts affecting cultural values, lifestyles and forms of communication as well as implications for the achievement of sustainable development. The benefits of the growing global economy have been unevenly distributed, leading to wider economic disparities, the feminization of poverty, increased gender inequality, including through often deteriorating work conditions and unsafe working environments, especially in the informal economy and rural areas. While globalization has brought greater economic opportunities and autonomy to some women, many others have been marginalized and deprived of the benefits of this process, owing to deepening inequalities among and within countries. Although in many countries the level of participation of women in the labour force has risen, in other cases the application of certain economic policies has had such a negative impact that increases in women's employment often have not been matched by improvements in wages, promotions and working conditions. In many cases, women continue to be employed in low-paid part-time and contract jobs marked by insecurity and by safety and health hazards. In many countries, women, especially new entrants into the labour market, continue to be among the first to lose jobs and the last to be rehired.", - "values": [ - "Economic Rights", - "Gender", - "Poverty", - "Social & Cultural Rights" - ] - }, - { - "text": "[Calls on States to give priority attention to the prevention of the phenomenon of children working and/or living on the street by addressing its diverse causes through economic, social, educational and empowerment strategies, including by:] Supporting and assisting families' and caregivers' capacities, including with regard to child development and non-abusive parenting, to enable them to provide children with care in a safe environment;", - "values": [ - "Economic Rights", - "Education", - "Social & Cultural Rights" - ] - }, - { - "text": "Welcomes the fact that the Open Working Group on Sustainable Development Goals proposed in its outcome document a goal on water and sanitation and targets on universal access to drinking water, sanitation and hygiene, highlighting in particular the dimensions of safety, affordability, adequacy, equality, participation and sustainability, that it proposed objectives to end open defecation and to improve wastewater treatment, and that special attention be given to the needs of women and girls and those in vulnerable situations, and invites States to consider adequately the human right to safe drinking water and sanitation in the elaboration of the post-2015 development agenda;", - "values": [ - "Equality & Inclusion", - "Gender", - "Water & Sanitation" - ] - }, - { - "text": "Encourages States to consider developing their legal structures in order to protect resources directly related to the right to food, such as water resources, access to land and seed production;", - "values": [ - "Environment", - "Food & Nutrition", - "Governance & Rule of Law", - "Water & Sanitation" - ] - }, - { - "text": "Mindful of the fact that the elimination of all forms of discrimination against women and girls requires the consideration of their specific socioeconomic context, including their increased vulnerability to certain patterns of racism, racial discrimination, xenophobia and related intolerance, and that the non-participation of all women and girls in decision-making contributes to the feminization of poverty and hampers sustainable development and economic growth,", - "values": [ - "Economic Rights", - "Equality & Inclusion", - "Poverty", - "Social & Cultural Rights" - ] - }, - { - "text": "The way criminal proceedings are handled may affect the exercise and enjoyment of rights and guarantees of the Covenant unrelated to article 14. Thus, for instance, to keep pending, for several years, indictments for the criminal offence of defamation brought against a journalist for having published certain articles, in violation of article 14, paragraph 3 (c), may leave the accused in a situation of uncertainty and intimidation and thus have a chilling effect which unduly restricts the exercise of his right to freedom of expression (article 19 of the Covenant). Similarly, delays of criminal proceedings for several years in contravention of article 14, paragraph 3 (c), may violate the right of a person to leave one's own country as guaranteed in article 12, paragraph 2 of the Covenant, if the accused has to remain in that country as long as proceedings are pending.", - "values": [ - "Civil & Political Rights" - ] - }, - { - "text": "The legal rights of women and girls to equality and non-discrimination in cultural and family life, established in 1948 by the Universal Declaration of Human Rights and by international human rights law, are often restricted in national laws and in practice, including in cultural practice. The Working Group emphasizes that, in accordance with international human rights law, States have an obligation to adopt appropriate measures with a view to eliminating all forms of discrimination against women and girls in laws, cultural practices and the family, whether perpetrated by State agents or private actors.", - "values": [ - "Equality & Inclusion", - "Governance & Rule of Law", - "Social & Cultural Rights" - ] - }, - { - "text": "In contrast to the prevailing model in which natural resource extraction within indigenous territories is under the control of and primarily for the benefit of others, indigenous peoples in some cases are establishing and implementing their own enterprises to extract and develop natural resources. This alternative of indigenous-controlled resource extraction, by its very nature, is more conducive to the exercise of indigenous peoples' rights to self-determination, lands and resources, culturally appropriate development and related rights, in accordance with the United Nations Declaration on the Rights of Indigenous Peoples and other international sources of authority.", - "values": [ - "Environment" - ] - }, - { - "text": "People living in poverty experience discrimination on the grounds of poverty itself (E/C.12/GC/20, paras. 34-35), but also frequently due to membership in other disadvantaged sectors of the population, including but not limited to indigenous peoples, persons with disabilities, ethnic minorities and people living with HIV/AIDS. Particular attention must be paid to upholding the right to equality between men and women. Thus, when designing, implementing and monitoring participatory processes, States must take into account the different experiences of men and women and gender power relations in the community. They must recognize the multiple forms of discrimination that women experience, and address women's specific needs throughout the different phases of their life cycle (childhood, adolescence, adulthood and old age). Participatory processes must also acknowledge the responsibilities of care providers without reinforcing patterns of discrimination and negative stereotyping.", - "values": [ - "Equality & Inclusion", - "Gender", - "Poverty" - ] - }, - { - "text": "Foreign investment can contribute to economic growth and development. However, there is a long-standing debate as to the conditions necessary for developing countries to benefit from such investment, and the extent to which international investment agreements facilitate those conditions.", - "values": [ - "Economic Rights", - "Governance & Rule of Law" - ] - }, - { - "text": "Building on these norms, the committees of independent experts overseeing State parties' compliance with the obligations assumed under these treaties (treaty bodies) have made repeated references to the exploitation of domestic workers in their concluding observations on country reports. Conversely, individual complaints mechanisms, including the Special Rapporteur's communications procedure, remain underutilized. In its general comment No. 28 on gender equality, the Human Rights Committee has made specific references to slavery disguised, inter alia, as domestic or other kinds of personal service. When the present document was being finalized, the Committee on the Protection of the Rights of All Migrant Workers and Members of Their Families was discussing a general comment on migrant domestic workers, with a view to adopting it at the end of 2010.", - "values": [ - "Economic Rights", - "Gender", - "Governance & Rule of Law", - "Movement" - ] - }, - { - "text": "On 22 February 2008, in Prosecutor v. Brima et al, the Special Court for Sierra Leone recognized forced marriage as a crime against humanity under international criminal law for the first time. The Court confirmed that forced marriage involved a perpetrator compelling a person by force or threat of force, through words, or conduct of the perpetrator, or anyone associated with him, into a forced conjugal association resulting in great suffering or serious physical or mental injury on the part of the victim. It concluded that forced marriage might also include one or more international crimes such as enslavement, imprisonment, rape, sexual slavery and abduction.", - "values": [ - "Governance & Rule of Law", - "Harmful Practices", - "Social & Cultural Rights", - "Violence" - ] - }, - { - "text": "The Special Rapporteur does not categorically reject any particular technology or suggest that expanding or improving access to water and sanitation should be done cheaply. Low-cost solutions for sanitation are often only temporary solutions, as reliable services that yield the long-term public health improvements normally come at a higher cost. States should determine which technology is appropriate based on the objective. If the goal is, for instance, to stabilize access to water in an informal settlement in the short term with the expectation that the community will be reached by more permanent services after a few years, low-cost options such as water kiosks served by utilities might be acceptable for a limited period.", - "values": [ - "Water & Sanitation" - ] - }, - { - "text": "Indigenous peoples say that they were not adequately involved in the initial design of these initiatives and continue to call for greater participation in the development and implementation of such programming at all levels. Specifically, they have lobbied to ensure that indigenous peoples are consulted at all stages of the planning and implementation of projects aimed at reducing emissions from deforestation and forest degradation and that they are represented in the governance structures of such projects.", - "values": [ - "Environment" - ] - }, - { - "text": "[To preserve the long-term sustainability of fishing and the availability of local fish as food, in particular by combating overfishing, all States should:] Implement their commitments under the Plan of Implementation of the World Summit on Sustainable Development, including to reduce their fishing capacity and to create marine protected areas, while taking into account the food security of coastal fishing communities;", - "values": [ - "Environment", - "Food & Nutrition", - "Governance & Rule of Law" - ] - }, - { - "text": "Most important, the Special Rapporteur urges all States to end impunity for threats and attacks against and the murder of journalists, media professionals, associated personnel and citizen journalists. In particular, the Special Rapporteur calls upon the 12 countries with the highest rates of impunity (see para. 29 above) to investigate all violations thoroughly and to prosecute the perpetrators.", - "values": [ - "Civil & Political Rights", - "Governance & Rule of Law", - "Violence" - ] - }, - { - "text": "Increased attention has also been paid to the need for due diligence, a process whereby private companies are called upon to ensure respect for human rights standards and to set up adequate mechanisms to that end. The European Commission has devoted specific attention to the situation of employment and recruitment agencies in that context, issuing a guidebook inviting such agencies to consider the impact of their practices on human rights, including in countries with weak legal and institutional frameworks.", - "values": [ - "Economic Rights" - ] - }, - { - "text": "Deploring practices of forced displacement, in particular ethnic cleansing, and their negative consequences for the enjoyment of fundamental human rights by large groups of populations,", - "values": [ - "Movement" - ] - }, - { - "text": "Recognizing that the campaign of the Secretary-General entitled \"UNiTE to End Violence against Women\" and the Global Database on Violence against Women have contributed to addressing the elimination of female genital mutilation,", - "values": [ - "Gender", - "Harmful Practices", - "Health", - "Violence" - ] - }, - { - "text": "Deeply concerned that the significant gap in resources continues and that the shortfall in funding has severely limited the scope and pace of\u00a0programmes and activities for the elimination of female genital mutilation,", - "values": [ - "Gender", - "Harmful Practices", - "Health" - ] - }, - { - "text": "Reiterating that access to microfinance and microcredit and to formal finance services can contribute to the achievement of the goals and targets of major United Nations conferences and summits in the economic and social fields, including those contained in the United Nations Millennium Declaration, in particular the goals relating to poverty eradication, gender equality and the empowerment of women,", - "values": [ - "Economic Rights", - "Equality & Inclusion", - "Gender", - "Poverty" - ] - }, - { - "text": "[The Independent Expert recommends that Governments, together with civil society and academia:] Conduct in-depth research on root causes of attacks against persons with albinism, including on harmful practices related to witchcraft;", - "values": [ - "Harmful Practices", - "Violence" - ] - }, - { - "text": "In this regard, the Special Rapporteur will continue highlighting the need to reduce poverty and inequalities, including those within and between regions and countries. He will do so by analysing the root causes of the gap between opportunities and reality, between evidence, policies and practices and between obligations of duty bearers and effective implementation.", - "values": [ - "Governance & Rule of Law", - "Poverty" - ] - }, - { - "text": "Welcoming the Paris Agreement and its early entry into force, encouraging all its parties to fully implement the Agreement, and parties to the United Nations Framework Convention on Climate Change that have not yet done so to deposit their instruments of ratification, acceptance, approval or accession, where appropriate, as soon as possible,", - "values": [ - "Environment", - "Governance & Rule of Law" - ] - }, - { - "text": "Requests the Secretary-General to provide administrative and substantive support for the Security Council Working Group on Children and Armed Conflict taking into consideration its current workload and the need to strengthen its capacities and institutional memory;", - "values": [ - "Governance & Rule of Law", - "Humanitarian" - ] - }, - { - "text": "The study called for the protection from violence of children in their early years, and recognized the crucial importance of positive parenting, home visitation, and early childhood care and development programmes (see box II).", - "values": [ - "Violence" - ] - } -] \ No newline at end of file diff --git a/src/extractors/text_to_multi_option_extractor/labeled_data/themes/options.json b/src/extractors/text_to_multi_option_extractor/labeled_data/themes/options.json deleted file mode 100644 index 04a982b..0000000 --- a/src/extractors/text_to_multi_option_extractor/labeled_data/themes/options.json +++ /dev/null @@ -1,18 +0,0 @@ -[ - "Humanitarian", - "Food & Nutrition", - "Health", - "Education", - "Equality & Inclusion", - "Governance & Rule of Law", - "Poverty", - "Economic Rights", - "Violence", - "Harmful Practices", - "Civil & Political Rights", - "Social & Cultural Rights", - "Water & Sanitation", - "Movement", - "Gender", - "Environment" -] \ No newline at end of file diff --git a/src/extractors/text_to_multi_option_extractor/methods/NaiveTextToMultiOptionMethod.py b/src/extractors/text_to_multi_option_extractor/methods/NaiveTextToMultiOptionMethod.py deleted file mode 100644 index f405a11..0000000 --- a/src/extractors/text_to_multi_option_extractor/methods/NaiveTextToMultiOptionMethod.py +++ /dev/null @@ -1,16 +0,0 @@ -from data.Option import Option -from data.ExtractionData import ExtractionData -from data.PredictionSample import PredictionSample -from extractors.text_to_multi_option_extractor.TextToMultiOptionMethod import TextToMultiOptionMethod - - -class NaiveTextToMultiOptionMethod(TextToMultiOptionMethod): - - def can_be_used(self, extraction_data: ExtractionData) -> bool: - return True - - def predict(self, predictions_samples: list[PredictionSample]) -> list[list[Option]]: - return [[] for _ in predictions_samples] - - def train(self, multi_option_data: ExtractionData): - pass diff --git a/src/extractors/text_to_multi_option_extractor/methods/TextBert.py b/src/extractors/text_to_multi_option_extractor/methods/TextBert.py deleted file mode 100644 index f550322..0000000 --- a/src/extractors/text_to_multi_option_extractor/methods/TextBert.py +++ /dev/null @@ -1,171 +0,0 @@ -import os -import shutil -from math import exp -from os.path import join, exists - -import pandas as pd -from transformers import TrainingArguments - -from data.Option import Option -from data.ExtractionData import ExtractionData -from data.PredictionSample import PredictionSample -from extractors.ExtractorBase import ExtractorBase -from extractors.bert_method_scripts.get_batch_size import get_batch_size, get_max_steps - -from extractors.bert_method_scripts.multi_label_sequence_classification_trainer import ( - multi_label_run, - MultiLabelDataTrainingArguments, - ModelArguments, -) -from extractors.text_to_multi_option_extractor.TextToMultiOptionMethod import TextToMultiOptionMethod - - -class TextBert(TextToMultiOptionMethod): - - model_name = "google-bert/bert-base-uncased" - - def can_be_used(self, extraction_data: ExtractionData) -> bool: - if not extraction_data.multi_value: - return False - - if not ExtractorBase.is_multilingual(extraction_data): - return True - - return False - - def get_data_path(self, name): - model_folder_path = join(self.extraction_identifier.get_path(), self.get_name()) - - if not exists(model_folder_path): - os.makedirs(model_folder_path) - - return join(model_folder_path, f"{name}.csv") - - def get_model_path(self): - model_folder_path = join(self.extraction_identifier.get_path(), self.get_name()) - - if not exists(model_folder_path): - os.makedirs(model_folder_path) - - model_path = join(model_folder_path, "model") - - os.makedirs(model_path, exist_ok=True) - - return str(model_path) - - @staticmethod - def get_text(texts: list[str]): - words = list() - for text in texts: - text_words = text.split() - for word in text_words: - clean_word = "".join([x for x in word if x.isalpha() or x.isdigit()]) - - if clean_word: - words.append(clean_word) - - return " ".join(words) - - def create_dataset(self, multi_option_data: ExtractionData, name: str): - texts = [self.get_text(sample.tags_texts) for sample in multi_option_data.samples] - labels = self.get_one_hot_encoding(multi_option_data) - return self.save_dataset(texts, labels, name) - - def save_dataset(self, texts, labels, name): - rows = list() - - if name == "predict": - for text, label in zip(texts, labels): - rows.append([text, label]) - else: - for text, label in zip(texts[:10000], labels[:10000]): - rows.append([text, label]) - - output_df = pd.DataFrame(rows) - output_df.columns = ["text", "labels"] - - if name != "predict": - output_df = output_df.sample(frac=1, random_state=22).reset_index(drop=True) - - output_df.to_csv(str(self.get_data_path(name))) - return self.get_data_path(name) - - def train(self, extraction_data: ExtractionData): - shutil.rmtree(self.get_model_path(), ignore_errors=True) - - training_csv_path = self.create_dataset(extraction_data, "train") - validation_csv_path = self.create_dataset(extraction_data, "validation") - model_arguments = ModelArguments(self.model_name) - labels_number = len(self.options) - - data_training_arguments = MultiLabelDataTrainingArguments( - train_file=training_csv_path, - validation_file=validation_csv_path, - max_seq_length=256, - labels_number=labels_number, - ) - - batch_size = get_batch_size(len(extraction_data.samples)) - training_arguments = TrainingArguments( - report_to=[], - output_dir=self.get_model_path(), - overwrite_output_dir=True, - per_device_train_batch_size=batch_size, - per_device_eval_batch_size=batch_size, - gradient_accumulation_steps=batch_size, - eval_accumulation_steps=batch_size, - max_steps=get_max_steps(len(extraction_data.samples)), - evaluation_strategy="steps", - save_strategy="steps", - learning_rate=5e-05, - do_train=True, - do_eval=False, - do_predict=False, - save_total_limit=3, - eval_steps=500000, - save_steps=200, - load_best_model_at_end=False, - logging_steps=50, - metric_for_best_model="f1", - num_train_epochs=3, - ) - - multi_label_run(model_arguments, data_training_arguments, training_arguments) - - @staticmethod - def logit_to_probabilities(logits): - odds = [1 / (1 + exp(-logit)) for logit in logits] - return odds - - def predict(self, predictions_samples: list[PredictionSample]) -> list[list[Option]]: - labels_number = len(self.options) - - texts = [self.get_text(sample.tags_texts) for sample in predictions_samples] - labels = [[0] * len(self.options) for _ in predictions_samples] - - predict_path = self.save_dataset(texts, labels, "predict") - model_arguments = ModelArguments(self.get_model_path(), ignore_mismatched_sizes=True) - data_training_arguments = MultiLabelDataTrainingArguments( - train_file=predict_path, - validation_file=predict_path, - test_file=predict_path, - max_seq_length=256, - labels_number=labels_number, - ) - - batch_size = get_batch_size(len(predictions_samples)) - t5_training_arguments = TrainingArguments( - report_to=[], - output_dir=self.get_model_path(), - overwrite_output_dir=False, - per_device_train_batch_size=batch_size, - per_device_eval_batch_size=batch_size, - gradient_accumulation_steps=batch_size, - eval_accumulation_steps=batch_size, - do_train=False, - do_eval=False, - do_predict=True, - ) - - logits = multi_label_run(model_arguments, data_training_arguments, t5_training_arguments) - return self.predictions_to_options_list([self.logit_to_probabilities(logit) for logit in logits]) diff --git a/src/extractors/text_to_multi_option_extractor/methods/TextBertLarge.py b/src/extractors/text_to_multi_option_extractor/methods/TextBertLarge.py deleted file mode 100644 index 83f9182..0000000 --- a/src/extractors/text_to_multi_option_extractor/methods/TextBertLarge.py +++ /dev/null @@ -1,11 +0,0 @@ -from transformers import AutoTokenizer -from extractors.text_to_multi_option_extractor.methods.TextBert import TextBert - -MODEL_NAME = "google-bert/bert-base-uncased" - -tokenizer = AutoTokenizer.from_pretrained(MODEL_NAME) - - -class TextBertLarge(TextBert): - - model_name = "google-bert/bert-large-uncased" diff --git a/src/extractors/text_to_multi_option_extractor/methods/TextBertMultilingual.py b/src/extractors/text_to_multi_option_extractor/methods/TextBertMultilingual.py deleted file mode 100644 index b7abf0a..0000000 --- a/src/extractors/text_to_multi_option_extractor/methods/TextBertMultilingual.py +++ /dev/null @@ -1,167 +0,0 @@ -import os -import shutil -from math import exp -from os.path import join, exists - -import pandas as pd -from transformers import TrainingArguments, AutoTokenizer - -from data.Option import Option -from data.ExtractionData import ExtractionData -from data.PredictionSample import PredictionSample -from extractors.ExtractorBase import ExtractorBase -from extractors.bert_method_scripts.get_batch_size import get_batch_size - -from extractors.bert_method_scripts.multi_label_sequence_classification_trainer import ( - multi_label_run, - MultiLabelDataTrainingArguments, - ModelArguments, -) -from extractors.text_to_multi_option_extractor.TextToMultiOptionMethod import TextToMultiOptionMethod - -MODEL_NAME = "google-bert/bert-base-multilingual-cased" - -tokenizer = AutoTokenizer.from_pretrained(MODEL_NAME) - - -class TextBertMultilingual(TextToMultiOptionMethod): - def can_be_used(self, extraction_data: ExtractionData) -> bool: - if not extraction_data.multi_value: - return False - - if ExtractorBase.is_multilingual(extraction_data): - return True - - return False - - def get_data_path(self, name): - model_folder_path = join(self.extraction_identifier.get_path(), self.get_name()) - - if not exists(model_folder_path): - os.makedirs(model_folder_path) - - return join(model_folder_path, f"{name}.csv") - - def get_model_path(self): - model_folder_path = join(self.extraction_identifier.get_path(), self.get_name()) - - if not exists(model_folder_path): - os.makedirs(model_folder_path) - - model_path = join(model_folder_path, "model") - - os.makedirs(model_path, exist_ok=True) - - return str(model_path) - - @staticmethod - def get_text(texts: list[str]): - words = list() - for text in texts: - text_words = text.split() - for word in text_words: - clean_word = "".join([x for x in word if x.isalpha() or x.isdigit()]) - - if clean_word: - words.append(clean_word) - - return " ".join(words) - - def create_dataset(self, multi_option_data: ExtractionData, name: str): - texts = [self.get_text(sample.tags_texts) for sample in multi_option_data.samples] - labels = self.get_one_hot_encoding(multi_option_data) - return self.save_dataset(texts, labels, name) - - def save_dataset(self, texts, labels, name): - rows = list() - - for text, label in zip(texts, labels): - rows.append([text, label]) - - output_df = pd.DataFrame(rows) - output_df.columns = ["text", "labels"] - - if name != "predict": - output_df = output_df.sample(frac=1, random_state=22).reset_index(drop=True) - - output_df.to_csv(str(self.get_data_path(name))) - return self.get_data_path(name) - - def train(self, multi_option_data: ExtractionData): - shutil.rmtree(self.get_model_path(), ignore_errors=True) - - training_csv_path = self.create_dataset(multi_option_data, "train") - validation_csv_path = self.create_dataset(multi_option_data, "validation") - model_arguments = ModelArguments(MODEL_NAME) - labels_number = len(self.options) - - data_training_arguments = MultiLabelDataTrainingArguments( - train_file=training_csv_path, - validation_file=validation_csv_path, - max_seq_length=256, - labels_number=labels_number, - ) - - batch_size = get_batch_size(len(multi_option_data.samples)) - t5_training_arguments = TrainingArguments( - report_to=[], - output_dir=self.get_model_path(), - overwrite_output_dir=True, - per_device_train_batch_size=batch_size, - per_device_eval_batch_size=batch_size, - gradient_accumulation_steps=batch_size, - eval_accumulation_steps=batch_size, - learning_rate=5e-05, - do_train=True, - do_eval=False, - do_predict=False, - save_total_limit=2, - save_strategy="steps", - evaluation_strategy="steps", - eval_steps=500000, - save_steps=200, - load_best_model_at_end=False, - logging_steps=50, - metric_for_best_model="f1", - num_train_epochs=23, - ) - - multi_label_run(model_arguments, data_training_arguments, t5_training_arguments) - - @staticmethod - def logit_to_probabilities(logits): - odds = [1 / (1 + exp(-logit)) for logit in logits] - return odds - - def predict(self, predictions_samples: list[PredictionSample]) -> list[list[Option]]: - labels_number = len(self.options) - - texts = [self.get_text(sample.tags_texts) for sample in predictions_samples] - labels = [[0] * len(self.options) for _ in predictions_samples] - - predict_path = self.save_dataset(texts, labels, "predict") - model_arguments = ModelArguments(self.get_model_path(), ignore_mismatched_sizes=True) - data_training_arguments = MultiLabelDataTrainingArguments( - train_file=predict_path, - validation_file=predict_path, - test_file=predict_path, - max_seq_length=256, - labels_number=labels_number, - ) - - batch_size = get_batch_size(len(predictions_samples)) - t5_training_arguments = TrainingArguments( - report_to=[], - output_dir=self.get_model_path(), - overwrite_output_dir=False, - per_device_train_batch_size=batch_size, - per_device_eval_batch_size=batch_size, - gradient_accumulation_steps=batch_size, - eval_accumulation_steps=batch_size, - do_train=False, - do_eval=False, - do_predict=True, - ) - - logits = multi_label_run(model_arguments, data_training_arguments, t5_training_arguments) - return self.predictions_to_options_list([self.logit_to_probabilities(logit) for logit in logits]) diff --git a/src/extractors/text_to_multi_option_extractor/methods/TextFastTextMethod.py b/src/extractors/text_to_multi_option_extractor/methods/TextFastTextMethod.py deleted file mode 100644 index 199c02f..0000000 --- a/src/extractors/text_to_multi_option_extractor/methods/TextFastTextMethod.py +++ /dev/null @@ -1,88 +0,0 @@ -import os -import shutil -from os.path import join, exists -from pathlib import Path - -import fasttext - -from data.Option import Option -from data.ExtractionData import ExtractionData -from data.PredictionSample import PredictionSample -from extractors.text_to_multi_option_extractor.TextToMultiOptionMethod import TextToMultiOptionMethod - - -class TextFastTextMethod(TextToMultiOptionMethod): - - def can_be_used(self, extraction_data: ExtractionData) -> bool: - return True - - @staticmethod - def clean_label(label: str): - return "_".join(label.split()).lower().replace(",", "") - - def clean_labels(self, options: list[Option]): - return [self.clean_label(option.label) for option in options] - - def get_data_path(self): - model_folder_path = join(self.extraction_identifier.get_path(), self.get_name()) - - if not exists(model_folder_path): - os.makedirs(model_folder_path) - - return join(model_folder_path, "data.txt") - - def get_model_path(self): - model_folder_path = join(self.extraction_identifier.get_path(), self.get_name()) - - if not exists(model_folder_path): - os.makedirs(model_folder_path) - - return join(model_folder_path, "fast.model") - - def prepare_data(self, multi_option_data: ExtractionData): - texts = [" ".join(sample.tags_texts) for sample in multi_option_data.samples] - texts = [text.replace("\n", " ") for text in texts] - labels = [ - "__label__" + " __label__".join(self.clean_labels(sample.labeled_data.values)) - for sample in multi_option_data.samples - ] - data = [f"{label} {text}" for label, text in zip(labels, texts)] - Path(self.get_data_path()).write_text("\n".join(data)) - - def train(self, multi_option_data: ExtractionData): - shutil.rmtree(self.get_model_path(), ignore_errors=True) - self.prepare_data(multi_option_data) - fasttext_params = { - "input": self.get_data_path(), - "lr": 0.1, - "lrUpdateRate": 1000, - "thread": 8, - "epoch": 600, - "wordNgrams": 2, - "dim": 100, - "loss": "ova", - } - model = fasttext.train_supervised(**fasttext_params) - model.save_model(self.get_model_path()) - - def predict(self, predictions_samples: list[PredictionSample]) -> list[list[Option]]: - texts = [" ".join(sample.tags_texts) for sample in predictions_samples] - texts = [text.replace("\n", " ") for text in texts] - - model = fasttext.load_model(self.get_model_path()) - labels = self.clean_labels(self.options) - - if self.multi_value: - prediction_labels_scores = model.predict(texts, k=len(labels)) - else: - prediction_labels_scores = model.predict(texts, k=1) - - predictions: list[list[Option]] = list() - for prediction_labels, scores in zip(prediction_labels_scores[0], prediction_labels_scores[1]): - predictions.append(list()) - for prediction_label, score in zip(prediction_labels, scores): - if score > 0.5 and prediction_label[9:] in labels: - label_index = labels.index(prediction_label[9:]) - predictions[-1].append(self.options[label_index]) - - return predictions diff --git a/src/extractors/text_to_multi_option_extractor/methods/TextFuzzyAll100.py b/src/extractors/text_to_multi_option_extractor/methods/TextFuzzyAll100.py deleted file mode 100644 index 56cbfa9..0000000 --- a/src/extractors/text_to_multi_option_extractor/methods/TextFuzzyAll100.py +++ /dev/null @@ -1,40 +0,0 @@ -import math - -from rapidfuzz import fuzz - -from data.Option import Option -from data.ExtractionData import ExtractionData -from data.PredictionSample import PredictionSample -from extractors.text_to_multi_option_extractor.TextToMultiOptionMethod import TextToMultiOptionMethod - - -class TextFuzzyAll100(TextToMultiOptionMethod): - - threshold = 100 - - def can_be_used(self, extraction_data: ExtractionData) -> bool: - return True - - def get_appearances(self, texts: list[str], options: list[str]) -> list[str]: - appearances = [] - for text in texts: - for option in options: - if len(text) < math.ceil(len(option) * 0.85): - continue - - if fuzz.partial_ratio(option, text.lower()) >= self.threshold: - appearances.append(option) - - return list(set(appearances)) - - def predict(self, predictions_samples: list[PredictionSample]) -> list[list[Option]]: - predictions: list[list[Option]] = list() - option_labels = [option.label.lower() for option in self.options] - for sample in predictions_samples: - values = self.get_appearances(sample.tags_texts, option_labels) - predictions.append([option for option in self.options if option.label in values]) - - return predictions - - def train(self, multi_option_data: ExtractionData): - pass diff --git a/src/extractors/text_to_multi_option_extractor/methods/TextFuzzyAll75.py b/src/extractors/text_to_multi_option_extractor/methods/TextFuzzyAll75.py deleted file mode 100644 index 41337c5..0000000 --- a/src/extractors/text_to_multi_option_extractor/methods/TextFuzzyAll75.py +++ /dev/null @@ -1,5 +0,0 @@ -from extractors.text_to_multi_option_extractor.methods.TextFuzzyAll100 import TextFuzzyAll100 - - -class TextFuzzyAll75(TextFuzzyAll100): - threshold = 75 diff --git a/src/extractors/text_to_multi_option_extractor/methods/TextFuzzyAll88.py b/src/extractors/text_to_multi_option_extractor/methods/TextFuzzyAll88.py deleted file mode 100644 index ad5bbad..0000000 --- a/src/extractors/text_to_multi_option_extractor/methods/TextFuzzyAll88.py +++ /dev/null @@ -1,5 +0,0 @@ -from extractors.text_to_multi_option_extractor.methods.TextFuzzyAll100 import TextFuzzyAll100 - - -class TextFuzzyAll88(TextFuzzyAll100): - threshold = 88 diff --git a/src/extractors/text_to_multi_option_extractor/methods/TextFuzzyFirst.py b/src/extractors/text_to_multi_option_extractor/methods/TextFuzzyFirst.py deleted file mode 100644 index 61d977d..0000000 --- a/src/extractors/text_to_multi_option_extractor/methods/TextFuzzyFirst.py +++ /dev/null @@ -1,42 +0,0 @@ -import math - -from rapidfuzz import fuzz - -from data.Option import Option -from data.ExtractionData import ExtractionData -from data.PredictionSample import PredictionSample -from extractors.text_to_multi_option_extractor.TextToMultiOptionMethod import TextToMultiOptionMethod - - -class TextFuzzyFirst(TextToMultiOptionMethod): - def can_be_used(self, extraction_data: ExtractionData) -> bool: - return True - - @staticmethod - def get_appearance(texts: list[str], options: list[str]) -> list[str]: - all_text = " ".join(texts).lower() - max_words = max([len(option.split()) for option in options]) - words = all_text.split() - window_texts = [" ".join(words[i : i + max_words]) for i in range(len(words) - max_words + 1)] - for text in window_texts: - for ratio_threshold in range(100, 69, -10): - for option in options: - if len(text) < math.ceil(len(option) * ratio_threshold / 100): - continue - - if fuzz.partial_ratio(option, text.lower()) >= ratio_threshold: - return [option] - - return [] - - def predict(self, predictions_samples: list[PredictionSample]) -> list[list[Option]]: - predictions: list[list[Option]] = list() - option_labels = [option.label.lower() for option in self.options] - for sample in predictions_samples: - values = self.get_appearance(sample.tags_texts, option_labels) - predictions.append([option for option in self.options if option.label in values]) - - return predictions - - def train(self, multi_option_data: ExtractionData): - pass diff --git a/src/extractors/text_to_multi_option_extractor/methods/TextFuzzyFirstCleanLabels.py b/src/extractors/text_to_multi_option_extractor/methods/TextFuzzyFirstCleanLabels.py deleted file mode 100644 index 147fd4b..0000000 --- a/src/extractors/text_to_multi_option_extractor/methods/TextFuzzyFirstCleanLabels.py +++ /dev/null @@ -1,75 +0,0 @@ -import math -import unicodedata -from collections import Counter - -from rapidfuzz import fuzz - -from data.Option import Option -from data.ExtractionData import ExtractionData -from data.PredictionSample import PredictionSample -from extractors.text_to_multi_option_extractor.TextToMultiOptionMethod import TextToMultiOptionMethod - - -class TextFuzzyFirstCleanLabels(TextToMultiOptionMethod): - - def can_be_used(self, extraction_data: ExtractionData) -> bool: - return True - - def get_appearance(self, texts: list[str], options: list[str]) -> list[str]: - all_text = " ".join([self.remove_accents(text) for text in texts]).lower() - max_words = max([len(option.split()) for option in options]) - words = all_text.split() - window_texts = [" ".join(words[i : i + max_words]) for i in range(len(words) - max_words + 1)] - for text in window_texts: - for ratio_threshold in range(100, 69, -10): - for option in options: - if len(text) < math.ceil(len(option) * ratio_threshold / 100): - continue - - if fuzz.partial_ratio(option, text.lower()) >= ratio_threshold: - return [option] - - return [] - - def predict(self, predictions_samples: list[PredictionSample]) -> list[list[Option]]: - predictions: list[list[Option]] = list() - option_labels = self.get_cleaned_labels(self.options) - for sample in predictions_samples: - values = self.get_appearance(sample.tags_texts, option_labels) - - if values: - predictions.append([self.options[option_labels.index(values[0])]]) - else: - predictions.append([]) - - return predictions - - def train(self, multi_option_data: ExtractionData): - pass - - @staticmethod - def remove_accents(text: str): - nfkd_form = unicodedata.normalize("NFKD", text) - only_ascii = nfkd_form.encode("ASCII", "ignore") - return only_ascii.decode() - - def get_cleaned_labels(self, options: list[Option]) -> list[str]: - options_labels = [self.remove_accents(x.label.lower()) for x in options] - words_counter = Counter() - for option in options_labels: - words_counter.update(option.split()) - - clean_options = list() - for option in options_labels: - clean_options.append(option) - for word, count in words_counter.most_common(): - if count == 1: - continue - - if word not in option: - continue - - if clean_options[-1].replace(word, "").strip() != "": - clean_options[-1] = clean_options[-1].replace(word, "").strip() - - return clean_options diff --git a/src/extractors/text_to_multi_option_extractor/methods/TextFuzzyLast.py b/src/extractors/text_to_multi_option_extractor/methods/TextFuzzyLast.py deleted file mode 100644 index f023d8a..0000000 --- a/src/extractors/text_to_multi_option_extractor/methods/TextFuzzyLast.py +++ /dev/null @@ -1,43 +0,0 @@ -import math - -from rapidfuzz import fuzz - -from data.Option import Option -from data.ExtractionData import ExtractionData -from data.PredictionSample import PredictionSample -from extractors.text_to_multi_option_extractor.TextToMultiOptionMethod import TextToMultiOptionMethod - - -class TextFuzzyLast(TextToMultiOptionMethod): - - def can_be_used(self, extraction_data: ExtractionData) -> bool: - return True - - @staticmethod - def get_appearance(texts: list[str], options: list[str]) -> list[str]: - all_text = " ".join(texts).lower() - max_words = max([len(option.split()) for option in options]) - words = all_text.split() - window_texts = [" ".join(words[i : i + max_words]) for i in range(len(words) - max_words + 1)] - for text in reversed(window_texts): - for ratio_threshold in range(100, 69, -10): - for option in options: - if len(text) < math.ceil(len(option) * ratio_threshold / 100): - continue - - if fuzz.partial_ratio(option, text.lower()) >= ratio_threshold: - return [option] - - return [] - - def predict(self, predictions_samples: list[PredictionSample]) -> list[list[Option]]: - predictions: list[list[Option]] = list() - option_labels = [option.label.lower() for option in self.options] - for sample in predictions_samples: - values = self.get_appearance(sample.tags_texts, option_labels) - predictions.append([option for option in self.options if option.label in values]) - - return predictions - - def train(self, multi_option_data: ExtractionData): - pass diff --git a/src/extractors/text_to_multi_option_extractor/methods/TextFuzzyLastCleanLabels.py b/src/extractors/text_to_multi_option_extractor/methods/TextFuzzyLastCleanLabels.py deleted file mode 100644 index 64e4f4e..0000000 --- a/src/extractors/text_to_multi_option_extractor/methods/TextFuzzyLastCleanLabels.py +++ /dev/null @@ -1,28 +0,0 @@ -import math - -from rapidfuzz import fuzz - -from data.ExtractionData import ExtractionData -from extractors.text_to_multi_option_extractor.methods.TextFuzzyFirstCleanLabels import TextFuzzyFirstCleanLabels - - -class TextFuzzyLastCleanLabels(TextFuzzyFirstCleanLabels): - - def can_be_used(self, extraction_data: ExtractionData) -> bool: - return True - - def get_appearance(self, texts: list[str], options: list[str]) -> list[str]: - all_text = " ".join([self.remove_accents(text) for text in texts]).lower() - max_words = max([len(option.split()) for option in options]) - words = all_text.split() - window_texts = [" ".join(words[i : i + max_words]) for i in range(len(words) - max_words + 1)] - for text in reversed(window_texts): - for ratio_threshold in range(100, 69, -10): - for option in options: - if len(text) < math.ceil(len(option) * ratio_threshold / 100): - continue - - if fuzz.partial_ratio(option, text.lower()) >= ratio_threshold: - return [option] - - return [] diff --git a/src/extractors/text_to_multi_option_extractor/methods/TextSetFit.py b/src/extractors/text_to_multi_option_extractor/methods/TextSetFit.py deleted file mode 100644 index 39450eb..0000000 --- a/src/extractors/text_to_multi_option_extractor/methods/TextSetFit.py +++ /dev/null @@ -1,130 +0,0 @@ -import os -import shutil -from os.path import join, exists - -import pandas as pd -from datasets import load_dataset - -from data.ExtractionData import ExtractionData -from data.Option import Option -from setfit import SetFitModel, TrainingArguments, Trainer - -from data.PredictionSample import PredictionSample -from extractors.ExtractorBase import ExtractorBase -from extractors.bert_method_scripts.AvoidAllEvaluation import AvoidAllEvaluation -from extractors.bert_method_scripts.EarlyStoppingAfterInitialTraining import EarlyStoppingAfterInitialTraining -from extractors.bert_method_scripts.get_batch_size import get_batch_size, get_max_steps -from extractors.text_to_multi_option_extractor.TextToMultiOptionMethod import TextToMultiOptionMethod - - -class TextSetFit(TextToMultiOptionMethod): - - model_name = "sentence-transformers/paraphrase-mpnet-base-v2" - - def can_be_used(self, extraction_data: ExtractionData) -> bool: - if not extraction_data.multi_value: - return False - - if not ExtractorBase.is_multilingual(extraction_data): - return True - - return False - - def get_data_path(self): - model_folder_path = join(self.extraction_identifier.get_path(), self.get_name()) - - if not exists(model_folder_path): - os.makedirs(model_folder_path) - - return join(model_folder_path, "data.csv") - - def get_model_path(self): - model_folder_path = join(self.extraction_identifier.get_path(), self.get_name()) - - if not exists(model_folder_path): - os.makedirs(model_folder_path) - - model_path = join(model_folder_path, "setfit_model") - - os.makedirs(model_path, exist_ok=True) - - return str(model_path) - - @staticmethod - def eval_encodings(example): - example["label"] = eval(example["label"]) - return example - - def get_dataset_from_data(self, extraction_data: ExtractionData): - data = list() - texts = [self.get_text(sample.tags_texts) for sample in extraction_data.samples] - labels = self.get_one_hot_encoding(extraction_data) - - for text, label in zip(texts[:10000], labels[:10000]): - data.append([text, label]) - - df = pd.DataFrame(data) - df.columns = ["text", "label"] - - df.to_csv(self.get_data_path()) - dataset_csv = load_dataset("csv", data_files=self.get_data_path()) - dataset = dataset_csv["train"] - dataset = dataset.map(self.eval_encodings) - - return dataset - - def train(self, extraction_data: ExtractionData): - shutil.rmtree(self.get_model_path(), ignore_errors=True) - - train_dataset = self.get_dataset_from_data(extraction_data) - batch_size = get_batch_size(len(extraction_data.samples)) - - model = SetFitModel.from_pretrained( - self.model_name, - labels=[x.label for x in self.options], - multi_target_strategy="one-vs-rest", - ) - - args = TrainingArguments( - output_dir=self.get_model_path(), - batch_size=batch_size, - max_steps=get_max_steps(len(extraction_data.samples)), - evaluation_strategy="steps", - save_strategy="steps", - eval_steps=200, - save_steps=200, - load_best_model_at_end=True, - ) - - trainer = Trainer( - model=model, - args=args, - train_dataset=train_dataset, - eval_dataset=train_dataset, - metric="f1", - callbacks=[EarlyStoppingAfterInitialTraining(early_stopping_patience=3), AvoidAllEvaluation()], - ) - - trainer.train() - - trainer.model.save_pretrained(self.get_model_path()) - - @staticmethod - def get_text(texts: list[str]): - words = list() - for text in texts: - text_words = text.split() - for word in text_words: - clean_word = "".join([x for x in word if x.isalpha() or x.isdigit()]) - - if clean_word: - words.append(clean_word) - - return " ".join(words) - - def predict(self, predictions_samples: list[PredictionSample]) -> list[list[Option]]: - model = SetFitModel.from_pretrained(self.get_model_path()) - texts = [self.get_text(sample.tags_texts) for sample in predictions_samples] - predictions = model.predict(texts) - - return self.predictions_to_options_list(predictions.tolist()) diff --git a/src/extractors/text_to_multi_option_extractor/methods/TextSetFitMultilingual.py b/src/extractors/text_to_multi_option_extractor/methods/TextSetFitMultilingual.py deleted file mode 100644 index 7295a90..0000000 --- a/src/extractors/text_to_multi_option_extractor/methods/TextSetFitMultilingual.py +++ /dev/null @@ -1,31 +0,0 @@ -import os -import shutil -from os.path import join, exists - -import pandas as pd -from datasets import load_dataset - -from data.ExtractionData import ExtractionData -from data.Option import Option -from setfit import SetFitModel, TrainingArguments, Trainer - -from data.PredictionSample import PredictionSample -from extractors.ExtractorBase import ExtractorBase -from extractors.bert_method_scripts.AvoidAllEvaluation import AvoidAllEvaluation -from extractors.bert_method_scripts.EarlyStoppingAfterInitialTraining import EarlyStoppingAfterInitialTraining -from extractors.bert_method_scripts.get_batch_size import get_batch_size, get_max_steps -from extractors.text_to_multi_option_extractor.TextToMultiOptionMethod import TextToMultiOptionMethod -from extractors.text_to_multi_option_extractor.methods.TextSetFit import TextSetFit - - -class TextSetFitMultilingual(TextSetFit): - model_name = "sentence-transformers/paraphrase-multilingual-mpnet-base-v2" - - def can_be_used(self, extraction_data: ExtractionData) -> bool: - if not extraction_data.multi_value: - return False - - if ExtractorBase.is_multilingual(extraction_data): - return True - - return False diff --git a/src/extractors/text_to_multi_option_extractor/methods/TextSingleLabelBert.py b/src/extractors/text_to_multi_option_extractor/methods/TextSingleLabelBert.py deleted file mode 100644 index a182c25..0000000 --- a/src/extractors/text_to_multi_option_extractor/methods/TextSingleLabelBert.py +++ /dev/null @@ -1,207 +0,0 @@ -import os -import shutil -from math import exp -from os.path import join, exists -import evaluate -import numpy as np -import pandas as pd -from transformers import ( - TrainingArguments, - Trainer, - AutoTokenizer, - DataCollatorWithPadding, - AutoModelForSequenceClassification, -) -from data.Option import Option -from data.PredictionSample import PredictionSample -from extractors.ExtractorBase import ExtractorBase -from extractors.bert_method_scripts.get_batch_size import get_max_steps, get_batch_size -from data.ExtractionData import ExtractionData -from data.TrainingSample import TrainingSample -from extractors.bert_method_scripts.AvoidEvaluation import AvoidEvaluation -from extractors.bert_method_scripts.EarlyStoppingAfterInitialTraining import ( - EarlyStoppingAfterInitialTraining, -) -from extractors.text_to_multi_option_extractor.TextToMultiOptionMethod import TextToMultiOptionMethod - -MODEL_NAME = "google-bert/bert-base-uncased" - -clf_metrics = evaluate.combine(["accuracy"]) -tokenizer = AutoTokenizer.from_pretrained(MODEL_NAME) - - -class TextSingleLabelBert(TextToMultiOptionMethod): - - def can_be_used(self, extraction_data: ExtractionData) -> bool: - if extraction_data.multi_value: - return False - - if not ExtractorBase.is_multilingual(extraction_data): - return True - - return False - - def get_data_path(self, name): - model_folder_path = join(self.extraction_identifier.get_path(), self.get_name()) - - if not exists(model_folder_path): - os.makedirs(model_folder_path) - - return join(model_folder_path, f"{name}.csv") - - def get_model_path(self): - model_folder_path = join(self.extraction_identifier.get_path(), self.get_name()) - - if not exists(model_folder_path): - os.makedirs(model_folder_path) - - model_path = join(model_folder_path, "model") - - os.makedirs(model_path, exist_ok=True) - - return str(model_path) - - @staticmethod - def get_text(texts: list[str]): - words = list() - for text in texts: - text_words = text.split() - for word in text_words: - clean_word = "".join([x for x in word if x.isalpha() or x.isdigit()]) - - if clean_word: - words.append(clean_word) - - return " ".join(words) - - def create_dataset(self, extraction_data: ExtractionData, name: str): - texts = [self.get_text(sample.tags_texts) for sample in extraction_data.samples] - labels = self.get_one_hot_encoding(extraction_data) - self.save_dataset(texts, labels, name) - - def save_dataset(self, texts, labels, name): - rows = list() - - for text, label in zip(texts[:10000], labels[:10000]): - rows.append([text, label]) - - output_df = pd.DataFrame(rows) - output_df.columns = ["text", "labels"] - - if name != "predict": - output_df = output_df.sample(frac=1, random_state=22).reset_index(drop=True) - - output_df.to_csv(str(self.get_data_path(name))) - return self.get_data_path(name) - - @staticmethod - def compute_metrics(eval_pred): - logits, labels = eval_pred - probabilities = 1 / (1 + np.exp(-logits)) - predictions_list = [np.argmax(x) if x[np.argmax(x)] >= 0.5 else -1 for x in probabilities] - return clf_metrics.compute(predictions=predictions_list, references=labels) - - def preprocess_function(self, sample: TrainingSample): - text = self.get_text(sample.tags_texts) - if sample.labeled_data.values: - labels = self.options.index(sample.labeled_data.values[0]) - else: - labels = -1 - - example = tokenizer(text, padding="max_length", truncation="only_first", max_length=self.get_token_length()) - example["labels"] = labels - return example - - def train(self, extraction_data: ExtractionData): - shutil.rmtree(self.get_model_path(), ignore_errors=True) - - self.create_dataset(extraction_data, "train") - - examples = [self.preprocess_function(x) for x in extraction_data.samples] - data_collator = DataCollatorWithPadding(tokenizer=tokenizer) - - id2class = {index: label for index, label in enumerate([x.label for x in self.options])} - class2id = {label: index for index, label in enumerate([x.label for x in self.options])} - - model = AutoModelForSequenceClassification.from_pretrained( - MODEL_NAME, - num_labels=len(self.options), - id2label=id2class, - label2id=class2id, - problem_type="single_label_classification", - ) - - training_args = TrainingArguments( - output_dir=self.get_model_path(), - learning_rate=2e-5, - per_device_train_batch_size=get_batch_size(len(extraction_data.samples)), - per_device_eval_batch_size=get_batch_size(len(extraction_data.samples)), - max_steps=get_max_steps(len(extraction_data.samples)), - weight_decay=0.01, - eval_steps=200, - save_steps=200, - save_strategy="steps", - evaluation_strategy="steps", - load_best_model_at_end=True, - fp16=False, - bf16=False, - ) - - trainer = Trainer( - model=model, - args=training_args, - train_dataset=examples, - eval_dataset=examples, - tokenizer=tokenizer, - data_collator=data_collator, - compute_metrics=self.compute_metrics, - callbacks=[EarlyStoppingAfterInitialTraining(early_stopping_patience=3), AvoidEvaluation()], - ) - - trainer.train() - - trainer.save_model(self.get_model_path()) - - @staticmethod - def logit_to_probabilities(logits): - odds = [1 / (1 + exp(-logit)) for logit in logits] - return odds - - def predict(self, predictions_samples: list[PredictionSample]) -> list[list[Option]]: - texts = [self.get_text(sample.tags_texts) for sample in predictions_samples] - labels = [[0] * len(self.options) for _ in predictions_samples] - - self.save_dataset(texts, labels, "predict") - - id2class = {index: label for index, label in enumerate([x.label for x in self.options])} - class2id = {label: index for index, label in enumerate([x.label for x in self.options])} - - model = AutoModelForSequenceClassification.from_pretrained( - self.get_model_path(), - num_labels=len(self.options), - id2label=id2class, - label2id=class2id, - problem_type="multi_label_classification", - ) - - model.eval() - - inputs = tokenizer( - texts, - return_tensors="pt", - padding="max_length", - truncation="only_first", - max_length=self.get_token_length(), - ) - output = model(inputs["input_ids"], attention_mask=inputs["attention_mask"]) - - return self.predictions_to_options_list([self.logit_to_probabilities(logit) for logit in output.logits]) - - def get_token_length(self): - data = pd.read_csv(self.get_data_path("train")) - max_length = 0 - for index, row in data.iterrows(): - length = len(tokenizer(row["text"]).data["input_ids"]) - max_length = max(length, max_length) - - return max_length diff --git a/src/extractors/text_to_multi_option_extractor/methods/TextSingleLabelSetFit.py b/src/extractors/text_to_multi_option_extractor/methods/TextSingleLabelSetFit.py deleted file mode 100644 index 86d4040..0000000 --- a/src/extractors/text_to_multi_option_extractor/methods/TextSingleLabelSetFit.py +++ /dev/null @@ -1,129 +0,0 @@ -import os -import shutil -from os.path import join, exists - -import pandas as pd -from datasets import load_dataset - -from data.ExtractionData import ExtractionData -from data.Option import Option -from setfit import SetFitModel, TrainingArguments, Trainer - -from data.PredictionSample import PredictionSample -from extractors.ExtractorBase import ExtractorBase -from extractors.bert_method_scripts.AvoidAllEvaluation import AvoidAllEvaluation -from extractors.bert_method_scripts.EarlyStoppingAfterInitialTraining import EarlyStoppingAfterInitialTraining -from extractors.bert_method_scripts.get_batch_size import get_batch_size, get_max_steps -from extractors.text_to_multi_option_extractor.TextToMultiOptionMethod import TextToMultiOptionMethod - - -class TextSingleLabelSetFit(TextToMultiOptionMethod): - - model_name = "sentence-transformers/paraphrase-mpnet-base-v2" - - def can_be_used(self, extraction_data: ExtractionData) -> bool: - if extraction_data.multi_value: - return False - - if not ExtractorBase.is_multilingual(extraction_data): - return True - - return False - - def get_data_path(self): - model_folder_path = join(self.extraction_identifier.get_path(), self.get_name()) - - if not exists(model_folder_path): - os.makedirs(model_folder_path) - - return join(model_folder_path, "data.csv") - - def get_model_path(self): - model_folder_path = join(self.extraction_identifier.get_path(), self.get_name()) - - if not exists(model_folder_path): - os.makedirs(model_folder_path) - - model_path = join(model_folder_path, "single_setfit_model") - - os.makedirs(model_path, exist_ok=True) - - return str(model_path) - - @staticmethod - def eval_encodings(example): - example["label"] = eval(example["label"]) - return example - - @staticmethod - def get_text(texts: list[str]): - words = list() - for text in texts: - text_words = text.split() - for word in text_words: - clean_word = "".join([x for x in word if x.isalpha() or x.isdigit()]) - - if clean_word: - words.append(clean_word) - - return " ".join(words) - - def get_dataset_from_data(self, extraction_data: ExtractionData): - data = list() - texts = [self.get_text(sample.tags_texts) for sample in extraction_data.samples] - labels = list() - - for sample in extraction_data.samples: - labels.append("no_label") - if sample.labeled_data.values: - labels[-1] = self.options[self.options.index(sample.labeled_data.values[0])].label - - for text, label in zip(texts[:10000], labels[:10000]): - data.append([text, label]) - - df = pd.DataFrame(data) - df.columns = ["text", "label"] - - df.to_csv(self.get_data_path()) - dataset_csv = load_dataset("csv", data_files=self.get_data_path()) - dataset = dataset_csv["train"] - - return dataset - - def train(self, extraction_data: ExtractionData): - shutil.rmtree(self.get_model_path(), ignore_errors=True) - train_dataset = self.get_dataset_from_data(extraction_data) - batch_size = get_batch_size(len(extraction_data.samples)) - - model = SetFitModel.from_pretrained(self.model_name, labels=[x.label for x in self.options]) - - args = TrainingArguments( - output_dir=self.get_model_path(), - batch_size=batch_size, - max_steps=get_max_steps(len(extraction_data.samples)), - evaluation_strategy="steps", - save_strategy="steps", - eval_steps=200, - save_steps=200, - load_best_model_at_end=True, - ) - - trainer = Trainer( - model=model, - args=args, - train_dataset=train_dataset, - eval_dataset=train_dataset, - metric="accuracy", - callbacks=[AvoidAllEvaluation()], - ) - - trainer.train() - - trainer.model.save_pretrained(self.get_model_path()) - - def predict(self, predictions_samples: list[PredictionSample]) -> list[list[Option]]: - model = SetFitModel.from_pretrained(self.get_model_path()) - texts = [self.get_text(sample.tags_texts) for sample in predictions_samples] - predictions = model.predict(texts) - - return [[option for option in self.options if option.label == prediction] for prediction in predictions] diff --git a/src/extractors/text_to_multi_option_extractor/methods/TextSingleLabelSetFitMultilingual.py b/src/extractors/text_to_multi_option_extractor/methods/TextSingleLabelSetFitMultilingual.py deleted file mode 100644 index 58a8cef..0000000 --- a/src/extractors/text_to_multi_option_extractor/methods/TextSingleLabelSetFitMultilingual.py +++ /dev/null @@ -1,20 +0,0 @@ -from data.ExtractionData import ExtractionData -from extractors.ExtractorBase import ExtractorBase -from extractors.text_to_multi_option_extractor.methods.TextSingleLabelSetFit import TextSingleLabelSetFit - - -class TextSingleLabelSetFitMultilingual(TextSingleLabelSetFit): - model_name = "sentence-transformers/paraphrase-multilingual-mpnet-base-v2" - - def can_be_used(self, extraction_data: ExtractionData) -> bool: - if extraction_data.multi_value: - return False - - if ExtractorBase.is_multilingual(extraction_data): - return True - - return False - - def train(self, extraction_data: ExtractionData): - if ExtractorBase.is_multilingual(extraction_data): - super().train(extraction_data) diff --git a/src/extractors/text_to_multi_option_extractor/methods/TextTfIdf.py b/src/extractors/text_to_multi_option_extractor/methods/TextTfIdf.py deleted file mode 100644 index c407ec3..0000000 --- a/src/extractors/text_to_multi_option_extractor/methods/TextTfIdf.py +++ /dev/null @@ -1,74 +0,0 @@ -import os -from functools import lru_cache -from os.path import join, exists - -import nltk -from nltk import WordNetLemmatizer -from nltk.corpus import stopwords -from sklearn.ensemble import RandomForestClassifier -from sklearn.feature_extraction.text import TfidfVectorizer -from sklearn.multiclass import OneVsRestClassifier - -from data.Option import Option -from data.ExtractionData import ExtractionData -from data.PredictionSample import PredictionSample -from extractors.text_to_multi_option_extractor.TextToMultiOptionMethod import TextToMultiOptionMethod -from joblib import dump, load - -nltk.download("wordnet") -nltk.download("stopwords") - -lemmatizer = WordNetLemmatizer() -stop_words = stopwords.words("english") -stop_words_set = set(stop_words) - -lemmatize = lru_cache(maxsize=50000)(lemmatizer.lemmatize) - - -class TextTfIdf(TextToMultiOptionMethod): - - def can_be_used(self, extraction_data: ExtractionData) -> bool: - return True - - def get_data_path(self): - model_folder_path = join(self.extraction_identifier.get_path(), self.get_name()) - - if not exists(model_folder_path): - os.makedirs(model_folder_path) - - return join(model_folder_path, "data.txt") - - def get_model_path(self): - model_folder_path = join(self.extraction_identifier.get_path(), self.get_name()) - - if not exists(model_folder_path): - os.makedirs(model_folder_path) - - return join(model_folder_path, "fast.model") - - def train(self, multi_option_data: ExtractionData): - texts = [" ".join(sample.tags_texts) for sample in multi_option_data.samples] - dump(texts, self.get_data_path()) - - vectorized = TfidfVectorizer() - tfidf_train_vectors = vectorized.fit_transform(texts) - - labels = self.get_one_hot_encoding(multi_option_data) - one_vs_rest_classifier = OneVsRestClassifier(RandomForestClassifier()) - one_vs_rest_classifier = one_vs_rest_classifier.fit(tfidf_train_vectors, labels) - dump(one_vs_rest_classifier, self.get_model_path()) - - def predict(self, predictions_samples: list[PredictionSample]) -> list[list[Option]]: - train_texts = load(self.get_data_path()) - - vectorized = TfidfVectorizer() - vectorized.fit_transform(train_texts) - - predict_texts = [" ".join(sample.tags_texts) for sample in predictions_samples] - - tfidf_predict_vectors = vectorized.transform(predict_texts) - - classifier = load(self.get_model_path()) - predictions_text = classifier.predict(tfidf_predict_vectors) - predictions_scores = [prediction for prediction in predictions_text.tolist()] - return self.predictions_to_options_list(predictions_scores) diff --git a/src/extractors/text_to_multi_option_extractor/results/results.txt b/src/extractors/text_to_multi_option_extractor/results/results.txt deleted file mode 100644 index fd32974..0000000 --- a/src/extractors/text_to_multi_option_extractor/results/results.txt +++ /dev/null @@ -1,21 +0,0 @@ -Task Method name Time(m) Score -Extractor cejil_descriptors[SetfitMultilingual] 8.3 51.72% -Extractor cejil_descriptors[Setfit] 14.9 27.41% -Extractor cejil_descriptors[BertMultilingual] 15.5 11.24% -Extractor cejil_mechanism [TextTfIdf] 0.3 100.0% -Extractor rightdocs_vote_type[TextTfIdf] 0.0 93.55% -Extractor d4la_document_type [TextSingleLabelSetFit] 6.0 50.0% -Extractor cejil_president 0.7 90.91% -Extractor cejil_secretary 1.6 80.0% -Extractor cejil_countries 5.5 94.12% -Extractor cyrilla_keywords [TextSetFit] 4.0 68.29% -Extractor cejil_judge 0.0 100.0% -Extractor action [TextSingleLabelSetFit] 10.1 88.3% -Extractor issues [Setfit] 13.0 76.7% -Extractor issues [BertBase] - 70.8% -Extractor issues [BertLarge] 98.3 90.2% -Extractor themes [Setfit] 5.3 66.1% -Extractor themes [BertBase] 36.9 70.7% -Extractor themes [BertLarge] 43.6 69.7% - - diff --git a/src/extractors/text_to_multi_option_extractor/test/test_text_to_multi_option_extraction.py b/src/extractors/text_to_multi_option_extractor/test/test_text_to_multi_option_extraction.py deleted file mode 100644 index 0fc134f..0000000 --- a/src/extractors/text_to_multi_option_extractor/test/test_text_to_multi_option_extraction.py +++ /dev/null @@ -1,138 +0,0 @@ -from unittest import TestCase -from data.ExtractionIdentifier import ExtractionIdentifier -from data.LabeledData import LabeledData -from data.Option import Option -from data.ExtractionData import ExtractionData -from data.PredictionSample import PredictionSample -from data.TrainingSample import TrainingSample -from extractors.text_to_multi_option_extractor.TextToMultiOptionExtractor import TextToMultiOptionExtractor - - -class TestTextToMultiOptionExtraction(TestCase): - TENANT = "multi_option_extraction_test" - extraction_id = "extraction_id" - - def test_is_valid(self): - extraction_identifier = ExtractionIdentifier(run_name=self.TENANT, extraction_name="other") - options = [Option(id="1", label="1"), Option(id="2", label="2"), Option(id="3", label="3")] - - samples_text = [TrainingSample(labeled_data=LabeledData(source_text="1"))] - samples_no_text = [TrainingSample(labeled_data=LabeledData(source_text=""))] - - multi_option_extraction = TextToMultiOptionExtractor(extraction_identifier) - no_options = ExtractionData(extraction_identifier=extraction_identifier, samples=samples_text) - no_text = ExtractionData(extraction_identifier=extraction_identifier, options=options, samples=samples_no_text) - valid_extraction_data = ExtractionData( - extraction_identifier=extraction_identifier, options=options, samples=samples_text - ) - - self.assertFalse(multi_option_extraction.can_be_used(no_options)) - self.assertFalse(multi_option_extraction.can_be_used(no_text)) - self.assertTrue(multi_option_extraction.can_be_used(valid_extraction_data)) - - def test_single_value(self): - extraction_identifier = ExtractionIdentifier(run_name=self.TENANT, extraction_name=self.extraction_id) - options = [Option(id="1", label="1"), Option(id="2", label="2"), Option(id="3", label="3")] - - samples = [ - TrainingSample(tags_texts=["point 1"], labeled_data=LabeledData(values=[options[0]])), - TrainingSample(tags_texts=["point 2"], labeled_data=LabeledData(values=[options[1]])), - TrainingSample(tags_texts=["point 3 point 2"], labeled_data=LabeledData(values=[options[2]])), - ] - - multi_option_data = ExtractionData( - multi_value=False, options=options, samples=samples, extraction_identifier=extraction_identifier - ) - - multi_option_extraction = TextToMultiOptionExtractor(extraction_identifier) - multi_option_extraction.create_model(multi_option_data) - - prediction_sample_1 = PredictionSample(tags_texts=["point 1"], entity_name="entity_name_1") - prediction_sample_3 = PredictionSample(tags_texts=["point 3 point 2"], entity_name="entity_name_3") - suggestions = multi_option_extraction.get_suggestions([prediction_sample_1, prediction_sample_3]) - - self.assertEqual(2, len(suggestions)) - self.assertEqual([Option(id="1", label="1")], suggestions[0].values) - self.assertEqual("entity_name_1", suggestions[0].entity_name) - self.assertEqual([Option(id="3", label="3")], suggestions[1].values) - self.assertEqual("entity_name_3", suggestions[1].entity_name) - - def test_multi_value(self): - extraction_identifier = ExtractionIdentifier(run_name=self.TENANT, extraction_name=self.extraction_id) - options = [Option(id="1", label="1"), Option(id="2", label="2"), Option(id="3", label="3")] - - samples = [ - TrainingSample(tags_texts=["point 1 point 2"], labeled_data=LabeledData(values=[options[0], options[1]])), - TrainingSample(tags_texts=["point 2"], labeled_data=LabeledData(values=[options[1]])), - TrainingSample(tags_texts=["point 3 point 1"], labeled_data=LabeledData(values=[options[2], options[0]])), - ] - - multi_option_data = ExtractionData( - multi_value=True, options=options, samples=samples, extraction_identifier=extraction_identifier - ) - - multi_option_extraction = TextToMultiOptionExtractor(extraction_identifier) - multi_option_extraction.create_model(multi_option_data) - - prediction_sample_1 = PredictionSample(tags_texts=["point 1 point 2"], entity_name="entity_name_1") - prediction_sample_3 = PredictionSample(tags_texts=["point 3 point 1"], entity_name="entity_name_3") - suggestions = multi_option_extraction.get_suggestions([prediction_sample_1, prediction_sample_3]) - - self.assertEqual(2, len(suggestions)) - self.assertTrue(Option(id="1", label="1") in suggestions[0].values) - self.assertTrue(Option(id="2", label="2") in suggestions[0].values) - self.assertTrue(Option(id="3", label="3") not in suggestions[0].values) - self.assertEqual("entity_name_1", suggestions[0].entity_name) - - self.assertTrue(Option(id="3", label="3") in suggestions[1].values) - self.assertTrue(Option(id="2", label="2") not in suggestions[1].values) - self.assertTrue(Option(id="1", label="1") in suggestions[1].values) - self.assertEqual("entity_name_3", suggestions[1].entity_name) - - def test_tf_idf(self): - extraction_identifier = ExtractionIdentifier(run_name=self.TENANT, extraction_name=self.extraction_id) - options = [Option(id="1", label="1"), Option(id="2", label="2"), Option(id="3", label="3")] - - samples = [ - TrainingSample(tags_texts=["point one point two"], labeled_data=LabeledData(values=[options[0], options[1]])), - TrainingSample(tags_texts=["point two"], labeled_data=LabeledData(values=[options[1]])), - TrainingSample(tags_texts=["point three point one"], labeled_data=LabeledData(values=[options[2], options[0]])), - ] - - multi_option_data = ExtractionData( - multi_value=True, options=options, samples=samples, extraction_identifier=extraction_identifier - ) - - multi_option_extraction = TextToMultiOptionExtractor(extraction_identifier) - multi_option_extraction.create_model(multi_option_data) - - prediction_sample_1 = PredictionSample(tags_texts=["point one point two"], entity_name="entity_name_1") - prediction_sample_3 = PredictionSample(tags_texts=["point three point one"], entity_name="entity_name_3") - suggestions = multi_option_extraction.get_suggestions([prediction_sample_1, prediction_sample_3]) - - self.assertEqual(2, len(suggestions)) - self.assertTrue(Option(id="1", label="1") in suggestions[0].values) - self.assertTrue(Option(id="2", label="2") in suggestions[0].values) - self.assertTrue(Option(id="3", label="3") not in suggestions[0].values) - self.assertTrue(Option(id="3", label="3") in suggestions[1].values) - self.assertTrue(Option(id="2", label="2") not in suggestions[1].values) - self.assertTrue(Option(id="1", label="1") in suggestions[1].values) - - def test_no_prediction_data(self): - extraction_identifier = ExtractionIdentifier(run_name=self.TENANT, extraction_name=self.extraction_id) - options = [Option(id="1", label="1"), Option(id="2", label="2"), Option(id="3", label="3")] - - samples = [ - TrainingSample(tags_texts=["1 2"], labeled_data=LabeledData(values=[options[0], options[1]])), - ] - - multi_option_data = ExtractionData( - multi_value=True, options=options, samples=samples, extraction_identifier=extraction_identifier - ) - - multi_option_extraction = TextToMultiOptionExtractor(extraction_identifier) - multi_option_extraction.create_model(multi_option_data) - - suggestions = multi_option_extraction.get_suggestions([]) - - self.assertEqual(0, len(suggestions)) diff --git a/src/extractors/text_to_text_extractor/TextToTextExtractor.py b/src/extractors/text_to_text_extractor/TextToTextExtractor.py deleted file mode 100644 index ff17c3c..0000000 --- a/src/extractors/text_to_text_extractor/TextToTextExtractor.py +++ /dev/null @@ -1,39 +0,0 @@ -import json -import os -from pathlib import Path - -from config import config_logger -from data.ExtractionData import ExtractionData -from data.ExtractionIdentifier import ExtractionIdentifier -from data.PredictionSample import PredictionSample -from data.Suggestion import Suggestion -from extractors.ExtractorBase import ExtractorBase -from extractors.ToTextExtractor import ToTextExtractor -from extractors.ToTextExtractorMethod import ToTextExtractorMethod -from extractors.text_to_text_extractor.methods.DateParserMethod import DateParserMethod -from extractors.text_to_text_extractor.methods.DateParserWithBreaksMethod import DateParserWithBreaksMethod -from extractors.text_to_text_extractor.methods.InputWithoutSpaces import InputWithoutSpaces -from extractors.text_to_text_extractor.methods.MT5TrueCaseEnglishSpanishMethod import MT5TrueCaseEnglishSpanishMethod -from extractors.text_to_text_extractor.methods.RegexMethod import RegexMethod -from extractors.text_to_text_extractor.methods.RegexSubtractionMethod import RegexSubtractionMethod -from extractors.text_to_text_extractor.methods.SameInputOutputMethod import SameInputOutputMethod -from send_logs import send_logs - - -class TextToTextExtractor(ToTextExtractor): - METHODS: list[type[ToTextExtractorMethod]] = [ - SameInputOutputMethod, - InputWithoutSpaces, - RegexMethod, - RegexSubtractionMethod, - DateParserWithBreaksMethod, - DateParserMethod, - MT5TrueCaseEnglishSpanishMethod, - ] - - def can_be_used(self, extraction_data: ExtractionData) -> bool: - for sample in extraction_data.samples: - if sample.tags_texts: - return True - - return False diff --git a/src/extractors/text_to_text_extractor/labeled_data/code_spanish.tsv b/src/extractors/text_to_text_extractor/labeled_data/code_spanish.tsv deleted file mode 100644 index bd8ea15..0000000 --- a/src/extractors/text_to_text_extractor/labeled_data/code_spanish.tsv +++ /dev/null @@ -1,183 +0,0 @@ - input output language -0 "INFORME No. 131/17 -CASO 11.678 -ADMISIBILIDAD Y FONDO -MARIO MONTESINOS MEJÍA -ECUADOR -25 DE OCTUBRE DE 2017 -" 131/17 es -5 "INFORME NO. 41/15 -CASOS 12.335; 12.336; 12.757; 12.711 -FONDO -GUSTAVO GIRALDO VILLAMIZAR DURÁN Y OTROS -COLOMBIA -28 DE JULIO DE 2015 -" 41/15 es -7 "RESOLUCIÓN DE LA PRESIDENTA DE LA -CORTE INTERAMERICANA DE DERECHOS HUMANOS -DE 20 DE OCTUBRE DE 2020 -CASO GRIJALVA BUENO VS. ECUADOR -VISTO: -1. -El escrito de sometimiento del caso y el Informe de Fondo No. 152/18 de la Comisión" 152/18 es -13 "INFORME Nº 27/99 -CASO 11.697 -RAMÓN MAURICIO GARCÍA-PRIETO GIRALT -EL SALVADOR -9 de marzo de 1999 - -I." 27/99 es -19 "INFORME N° 36/06 1 -PETICIÓN 577-05 -ADMISIBILIDAD -FRANCISCO USÓN RAMÍREZ -VENEZUELA -15 de marzo de 2006 -I." 36/06 es -24 "INFORME No. 110/18 -CASO 12.678 -FONDO -PAOLA DEL ROSARIO GUZMÁN ALBARRACÍN Y FAMILIARES -ECUADOR -5 DE OCTUBRE DE 2018 -" 110/18 es -25 "INFORME Nº 11/05 1 -PETICIÓN 708-03 -ADMISIBILIDAD -GREGORIA HERMINIA, SERAPIO CRISTIÁN Y JULIA INÉS CONTRERAS -EL SALVADOR -23 de febrero de 2005 -I." 11/05 es -26 "INFORME Nº 36/99 -CASO 12.042 -MERVYN EDMUND -TRINIDAD Y TOBAGO -11 de marzo de 1999 - -I." 36/99 es -30 "INFORME No. 73/08 -PETICIÓN 1236-06 -ADMISIBILIDAD -GABRIEL SALES PIMENTA -BRASIL [1] -17 de octubre de 2008 -I." 73/08 es -32 "INFORME No. 24/18 -CASO 12.982 -FONDO -AZUL ROJAS MARÍN1 Y OTRA -PERÚ2 -24 de febrero de 2018 -" 24/18 es -36 "1 - -INFORME No. 49/10 -PETICIÓN 509-00 -ADMISIBILIDAD -CARLOS ARTURO UVA VELANDIA -COLOMBIA" 49/10 es -46 "INFORME Nº 45/98 -CASO 11.855 -ANTHONY GARCÍA -TRINIDAD Y TOBAGO -25 de septiembre de 1998 -I. -" 45/98 es -48 "INFORME No. 10/11 -CASO 12.329 -ADMISIBILIDAD -VICENTE ARIEL NOGUERA -PARAGUAY -22 de marzo de 2011 -" 10/11 es -52 "INFORME No. 17/15 -PETICIÓN 1139-04 -ADMISIBILIDAD -MASACRE DE LA ALDEA LOS JOSEFINOS -GUATEMALA -24 DE MARZO DE 2015 -" 17/15 es -53 "INFORME No. 103/13 -CASO 12.816 -FONDO -ADAN GUILLERMO LOPEZ LONE Y OTROS -HONDURAS -5 de noviembre de 2013 -" 103/13 es -62 "INFORME No. 196/20 -CASO 13.030 -INFORME DE FONDO -SANTIAGO LEGUIZAMÓN ZAVÁN Y FAMILIA -PARAGUAY -10 DE JULIO DE 2020 -I." 196/20 es -64 "INFORME No. 26/08 1 -PETICIÓN 270-02 -ADMISIBILIDAD -CÉSAR ALBERTO MENDOZA Y OTROS -ARGENTINA -14 de marzo de 2008 -I." 26/08 es -69 "INFORME No. 73/17 -CASO 12.984 -FONDO -RAÚL ROLANDO ROMERO FERIS -ARGENTINA -5 DE JULIO DE 2017 -" 73/17 es -71 "INFORME No. 110/10 -PETICIÓN 1560-07 -ADMISIBILIDAD -CLAUDINA ISABEL VELASQUEZ PAIZ Y OTROS -GUATEMALA -4 de octubre de 2010 -I." 110/10 es -73 "INFORME Nº 18/06 1 -PETICIÓN 12.353 -ADMISIBILIDAD -ARLEY JOSÉ ESCHER Y OTROS -(INTERCEPTACIÓN DE LÍNEAS TELEFÓNICAS DE ORGANIZACIONES SOCIALES) -BRASIL -2 de marzo de 2006" 18/06 es -86 "5 -INFORME No. 117/10 -FONDO -CASO 12.343 -EDGAR FERNANDO GARCIA -GUATEMALA -22 de octubre de 2010" 117/10 es -87 "INFORME No. 136/09 -PETICIÓN 321-05 -ADMISIBILIDAD -MARÍA INÉS CHINCHILLA SANDOVAL -GUATEMALA -13 de noviembre de 2009 -" 136/09 es -89 "INFORME No. 84/13 -CASO 12.482 -FONDO -VALDEMIR QUISPEALAYA VILCAPOMA -PERÚ -4 de noviembre de 2013 -" 84/13 es -90 "INFORME No. 16/19 -CASO 12.991 -FONDO -MASACRE DE LA ALDEA LOS JOSEFINOS -GUATEMALA -12 DE FEBRERO DE 2019 -" 16/19 es -91 "INFORME No. 148/18 -CASO 12.997 -FONDO -SANDRA CECILIA PAVEZ PAVEZ -CHILE 1 -7 de diciembre de 2018 -" 148/18 es -92 "5 -INFORME No. 118/10 -CASO 12.680 -FONDO -RAFAEL ARTURO PACHECO TERUEL Y OTROS -(MUERTE POR INCENDIO EN EL CENTRO PENAL DE SAN PEDRO SULA) -HONDURAS" 118/10 es diff --git a/src/extractors/text_to_text_extractor/labeled_data/country_spanish.tsv b/src/extractors/text_to_text_extractor/labeled_data/country_spanish.tsv deleted file mode 100644 index d286c9d..0000000 --- a/src/extractors/text_to_text_extractor/labeled_data/country_spanish.tsv +++ /dev/null @@ -1,701 +0,0 @@ - input output language -0 "INFORME No. 131/17 -CASO 11.678 -ADMISIBILIDAD Y FONDO -MARIO MONTESINOS MEJÍA -ECUADOR -25 DE OCTUBRE DE 2017 -" Ecuador es -1 "16 de noviembre de 2020 -REF.: - -Caso Nº 12.691 -Miembros del Sindicato Único de Trabajadores de Ecasa (SUTECASA) -Perú -" Perú es -2 "RESOLUCIÓN DE LA -CORTE INTERAMERICANA DE DERECHOS HUMANOS -DE 22 DE AGOSTO DE 2018 -MEDIDAS PROVISIONALES RESPECTO DE LA -REPÚBLICA BOLIVARIANA DE VENEZUELA -ASUNTO LUISIANA RÍOS Y OTROS -VISTO:" Venezuela es -3 "RESOLUCIÓN DE LA -CORTE INTERAMERICANA DE DERECHOS HUMANOS -DE 28 DE JUNIO DE 2012 -CASO BAENA RICARDO Y OTROS VS. PANAMÁ -SUPERVISIÓN DE CUMPLIMIENTO DE SENTENCIA - -VISTO:" Panamá es -4 "RESOLUCIÓN DE LA PRESIDENTA DE LA -CORTE INTERAMERICANA DE DERECHOS HUMANOS -DE 4 DE DICIEMBRE DE 2020 -CASO VERA ROJAS Y OTROS VS. CHILE -VISTO: -1. -El escrito de sometimiento del caso y el Informe de Fondo de la Comisión Interamericana" Chile es -5 "INFORME NO. 41/15 -CASOS 12.335; 12.336; 12.757; 12.711 -FONDO -GUSTAVO GIRALDO VILLAMIZAR DURÁN Y OTROS -COLOMBIA -28 DE JULIO DE 2015 -" Colombia es -6 "RESOLUCIÓN DEL PRESIDENTE DE LA -CORTE INTERAMERICANA DE DERECHOS HUMANOS -DE 10 DE MARZO DE 2016 -CASO POLLO RIVERA Y OTROS VS. PERÚ -VISTO: -1. -El escrito de sometimiento del caso y el Informe de Fondo de la Comisión" Perú es -7 "RESOLUCIÓN DE LA PRESIDENTA DE LA -CORTE INTERAMERICANA DE DERECHOS HUMANOS -DE 20 DE OCTUBRE DE 2020 -CASO GRIJALVA BUENO VS. ECUADOR -VISTO: -1. -El escrito de sometimiento del caso y el Informe de Fondo No. 152/18 de la Comisión" Ecuador es -8 "RESOLUCIÓN DE LA -CORTE INTERAMERICANA DE DERECHOS HUMANOS -DE 30 DE AGOSTO DE 2010 -MEDIDAS PROVISIONALES RESPECTO DE LA REPÚBLICA DE COLOMBIA -ASUNTO DE LA COMUNIDAD DE PAZ DE SAN JOSÉ DE APARTADÓ - -VISTO:" Colombia es -9 "RESOLUCIÓN DEL PRESIDENTE DE LA -CORTE INTERAMERICANA DE DERECHOS HUMANOS -DE 7 DE MARZO DE 2014 -CASO ESPINOZA GONZÁLES VS. PERÚ -VISTO: -1. -El escrito de sometimiento del caso presentado por la Comisión Interamericana" Perú es -10 "RESOLUCIÓN DE LA -CORTE INTERAMERICANA DE DERECHOS HUMANOS ∗ -DE 1 JUNIO DE 2020 -MEDIDAS PROVISIONALES -CASO DURAND Y UGARTE VS. PERÚ -VISTO: -1." Perú es -11 "RESOLUCIÓN DEL PRESIDENTE DE LA -CORTE INTERAMERICANA DE DERECHOS HUMANOS -DE 23 DE AGOSTO DE 2018 -CASO ÁLVAREZ RAMOS VS. VENEZUELA -VISTO: -1. -La Resolución del Presidente de la Corte Interamericana de Derechos Humanos (en" Venezuela es -12 "17 de julio de 2020 -REF.: - -Caso Nº 13.267 -Carlos Benites Cabrera y otros -Perú -" Perú es -13 "INFORME Nº 27/99 -CASO 11.697 -RAMÓN MAURICIO GARCÍA-PRIETO GIRALT -EL SALVADOR -9 de marzo de 1999 - -I." El Salvador es -14 "RESOLUCIÓN DE LA CORTE -INTERAMERICANA DE DERECHOS HUMANOS -DE 10 DE OCTUBRE DE 2016 -CASO GENOVEVA Y OTROS (FAVELA NOVA BRASILIA) VS. BRASIL - -VISTO: -1." Brasil es -15 "RESOLUCIÓN DEL PRESIDENTE DE LA -CORTE INTERAMERICANA DE DERECHOS HUMANOS - -DE 31 DE MAYO DE 2006 -SOLICITUD DE MEDIDAS PROVISIONALES RESPECTO DEL PERÚ -CASO JUÁREZ CRUZZAT Y OTROS -" Perú es -16 "VOTO DISIDENTE DEL JUEZ EDUARDO VIO GROSSI, - -CORTE INTERAMERICANA DE DERECHOS HUMANOS -CASO LÓPEZ Y OTROS VS. ARGENTINA -SENTENCIA DE 25 DE NOVIEMBRE DE 2019 -(Excepciones Preliminares, Fondo, Reparaciones y Costas) -I." Argentina es -17 "CORTE INTERAMERICANA DE DERECHOS HUMANOS - -CASO VÉLEZ LOOR VS. PANAMÁ - -SENTENCIA DE 23 DE NOVIEMBRE DE 2010 -(Excepciones Preliminares, Fondo, Reparaciones y Costas) -" Panamá es -18 "Corte Interamericana de Derechos Humanos -Caso Trabajadores Cesados del Congreso -(Aguado Alfaro y otros) Vs. Perú - -Sentencia de 24 de noviembre de 2006 -(Excepciones Preliminares, Fondo, Reparaciones y Costas) -" Perú es -19 "INFORME N° 36/06 1 -PETICIÓN 577-05 -ADMISIBILIDAD -FRANCISCO USÓN RAMÍREZ -VENEZUELA -15 de marzo de 2006 -I." Venezuela es -20 "VOTO CONCURRENTE DEL JUEZ SERGIO GARCÍA RAMÍREZ -A LA SENTENCIA SOBRE -EL CASO PALAMARA IRIBARNE VS. CHILE -DE 22 DE NOVIEMBRE DE 2005 - -1. -Son temas centrales en este caso la libertad de expresión y el debido proceso" Chile es -21 "RESOLUCIÓN DE LA -CORTE INTERAMERICANA DE DERECHOS HUMANOS* - -DE 23 DE JUNIO DE 2016 -CASO 19 COMERCIANTES VS. COLOMBIA -SUPERVISIÓN DE CUMPLIMIENTO DE SENTENCIA -VISTO:" Colombia es -22 "VOTO CONCURRENTE DEL -JUEZ EDUARDO FERRER MAC-GREGOR POISOT -CASO CHINCHILLA SANDOVAL VS. GUATEMALA -SENTENCIA DE 29 DE FEBRERO DE 2016 - -(Excepciones Preliminares, Fondo, Reparaciones y Costas) -" Guatemala es -23 "RESOLUCIÓN DE LA - -CORTE INTERMERICANA DE DERECHOS HUMANOS -13 DE FEBRERO DE 2013 -MEDIDAS PROVISIONALES -RESPECTO DE VENEZUELA -CASO FAMILIA BARRIOS" Venezuela es -24 "INFORME No. 110/18 -CASO 12.678 -FONDO -PAOLA DEL ROSARIO GUZMÁN ALBARRACÍN Y FAMILIARES -ECUADOR -5 DE OCTUBRE DE 2018 -" Ecuador es -25 "INFORME Nº 11/05 1 -PETICIÓN 708-03 -ADMISIBILIDAD -GREGORIA HERMINIA, SERAPIO CRISTIÁN Y JULIA INÉS CONTRERAS -EL SALVADOR -23 de febrero de 2005 -I." El Salvador es -26 "INFORME Nº 36/99 -CASO 12.042 -MERVYN EDMUND -TRINIDAD Y TOBAGO -11 de marzo de 1999 - -I." Trinidad y Tobago es -27 "RESOLUCIÓN DEL PRESIDENTE -DE LA CORTE INTERAMERICANA DE DERECHOS HUMANOS -DE 26 DE JULIO DE 2011 -MEDIDAS PROVISIONALES RESPECTO DE -LA REPÚBLICA FEDERATIVA DE BRASIL -ASUNTO DE LA CÁRCEL DE URSO BRANCO -" Brasil es -28 "RESOLUCIÓN DE LA -CORTE INTERAMERICANA DE DERECHOS HUMANOS -DE 21 DE NOVIEMBRE DE 2000 -MEDIDAS PROVISIONALES -RESPECTO DEL ESTADO DEL PERÚ1 -CASO IVCHER BRONSTEIN -VISTOS:" Perú es -29 "28 de abril de 2018 -Ref.: - -Caso 12.659 -Mirey Trueba Arciniega y otros -México -" México es -30 "INFORME No. 73/08 -PETICIÓN 1236-06 -ADMISIBILIDAD -GABRIEL SALES PIMENTA -BRASIL [1] -17 de octubre de 2008 -I." Brasil es -31 "RESOLUCIÓN DE LA -CORTE INTERAMERICANA DE DERECHOS HUMANOS* -DE 20 DE OCTUBRE DE 2016 -CASO DE LAS COMUNIDADES AFRODESCENDIENTES DESPLAZADAS DE LA CUENCA -DEL RÍO CACARICA (OPERACIÓN GENÉSIS) VS. COLOMBIA -SUPERVISIÓN DE CUMPLIMIENTO DE SENTENCIA -" Colombia es -32 "INFORME No. 24/18 -CASO 12.982 -FONDO -AZUL ROJAS MARÍN1 Y OTRA -PERÚ2 -24 de febrero de 2018 -" Perú es -33 "RESOLUCIÓN DE LA -CORTE INTERAMERICANA DE DERECHOS HUMANOS -DE 17 DE NOVIEMBRE DE 2005 -SOLICITUD DE MEDIDAS PROVISIONALES PRESENTADA POR -LA COMISIÓN INTERAMERICANA DE DERECHOS HUMANOS -RESPECTO DE LA REPÚBLICA FEDERATIVA DEL BRASIL -CASO DE LOS NIÑOS Y ADOLESCENTES PRIVADOS DE LIBERTAD" Brasil es -34 "CORTE INTERAMERICANA DE DERECHOS HUMANOS - -Caso Lori Berenson Mejía Vs. Perú - -Sentencia de 25 de noviembre de 2004 -(Fondo Reparaciones Y Costas) -" Perú es -35 "RESOLUCIÓN DE LA -CORTE INTERAMERICANA DE DERECHOS HUMANOS  -DE 7 DE MAYO DE 2021 -CASO GONZÁLEZ Y OTROS VS. VENEZUELA - -VISTO: -1." Venezuela es -36 "1 - -INFORME No. 49/10 -PETICIÓN 509-00 -ADMISIBILIDAD -CARLOS ARTURO UVA VELANDIA -COLOMBIA" Colombia es -37 "6 de junio de 2021 -REF.: - -Caso No. 13.193 -Thomas Scot Cochran -Costa Rica -" Costa Rica es -38 "RESOLUCIÓN DE LA -CORTE INTERAMERICANA DE DERECHOS HUMANOS ∗ -DE 20 DE NOVIEMBRE DE 2015 -MEDIDAS PROVISIONALES RESPECTO DE EL SALVADOR -CASO GARCÍA PRIETO Y OTROS - -VISTO:" El Salvador es -39 "CORTE INTERAMERICANA DE DERECHOS HUMANOS -TICONA ESTRADA Y OTROS VS. BOLIVIA -SENTENCIA DE 27 DE NOVIEMBRE DE 2008 -(FONDO, REPARACIONES Y COSTAS) - -En el caso Ticona Estrada y otros, -la Corte Interamericana de Derechos Humanos (en adelante “la Corte" Bolivia es -40 "Resolución de la -Corte Interamericana de Derechos Humanos -de 6 de agosto de 2008 -Caso Goiburú y otros Vs. Paraguay -Supervisión de Cumplimiento de Sentencia - -VISTOS:" Paraguay es -41 "RESOLUCIÓN DE LA -CORTE INTERAMERICANA DE DERECHOS HUMANOS -DE 21 DE NOVIEMBRE DE 2007 -MEDIDAS PROVISIONALES -ASUNTO DE LA FUNDACIÓN DE ANTROPOLOGÍA -FORENSE DE GUATEMALA -VISTOS:" Guatemala es -42 "RESOLUCIÓN DE LA -CORTE INTERAMERICANA DE DERECHOS HUMANOS * -DE 17 DE NOVIEMBRE DE 2021 -CASO PERRONE Y PRECKEL VS. ARGENTINA -SUPERVISIÓN DE CUMPLIMIENTO DE SENTENCIA -VISTO: -1." Argentina es -43 "VOTO CONCURRENTE DE LOS JUECES DIEGO GARCÍA-SAYÁN, LEONARDO A. -FRANCO, MANUEL VENTURA ROBLES, MARGARETTE MAY MACAULAY Y -RHADYS ABREU BLONDET -MEDIDAS PROVISIONALES RESPECTO DE HONDURAS -CASO KAWAS FERNÁNDEZ - -1." Honduras es -44 "RESOLUCIÓN DE LA -CORTE INTERAMERICANA DE DERECHOS HUMANOS - -DE 24 DE JUNIO DE 2015 - -CASOS DE LAS COMUNIDADES INDÍGENAS YAKYE AXA, SAWHOYAMAXA Y -XÁKMOK KÁSEK VS. PARAGUAY" Paraguay es -45 "Resolución de la -Corte Interamericana de Derechos Humanos -26 de Enero de 2009 -Medidas Provisionales -respecto de la República Bolivariana de Venezuela -Asunto Carlos Nieto Palma y Otro -" Venezuela es -46 "INFORME Nº 45/98 -CASO 11.855 -ANTHONY GARCÍA -TRINIDAD Y TOBAGO -25 de septiembre de 1998 -I. -" Trinidad y Tobago es -47 "CORTE INTERAMERICANA DE DERECHOS HUMANOS -CASO ROSADIO VILLAVICENCIO VS. PERÚ -SENTENCIA DE 8 DE OCTUBRE DE 2020 -(Interpretación de la Sentencia de Excepciones Preliminares, Fondo, -Reparaciones y Costas) - -En el caso Rosadio Villavicencio Vs. Perú," Perú es -48 "INFORME No. 10/11 -CASO 12.329 -ADMISIBILIDAD -VICENTE ARIEL NOGUERA -PARAGUAY -22 de marzo de 2011 -" Paraguay es -49 "RESOLUCIÓN DE LA -CORTE INTERAMERICANA DE DERECHOS HUMANOS * -DE 26 DE NOVIEMBRE DE 2013 -CASO CESTI HURTADO VS. PERÚ -SUPERVISIÓN DE CUMPLIMIENTO DE SENTENCIA -VISTO: -1." Perú es -50 "Corte Interamericana de Derechos Humanos -Caso Neira Alegría y otros Vs. Perú -Sentencia de 19 de septiembre de 1996 -(Reparaciones y Costas) - -En el caso Neira Alegría y otros, -la Corte Interamericana de Derechos Humanos, integrada por los siguientes jueces:" Perú es -51 "RESOLUCIÓN DE LA -CORTE INTERAMERICANA DE DERECHOS HUMANOS -DE 26 DE JUNIO DE 2012 -CASO MEJÍA IDROVO VS. ECUADOR -SUPERVISIÓN DE CUMPLIMIENTO DE SENTENCIA -VISTO: -1." Ecuador es -52 "INFORME No. 17/15 -PETICIÓN 1139-04 -ADMISIBILIDAD -MASACRE DE LA ALDEA LOS JOSEFINOS -GUATEMALA -24 DE MARZO DE 2015 -" Guatemala es -53 "INFORME No. 103/13 -CASO 12.816 -FONDO -ADAN GUILLERMO LOPEZ LONE Y OTROS -HONDURAS -5 de noviembre de 2013 -" Honduras es -54 "RESOLUCIÓN DEL PRESIDENTE DE LA -CORTE INTERAMERICANA DE DERECHOS HUMANOS -DE 10 DE DICIEMBRE DE 2015 -CASO HERRERA ESPINOZA Y OTROS VS. ECUADOR -CONVOCATORIA A AUDIENCIA -VISTO: -1." Ecuador es -55 "CORTE INTERAMERICANA DE DERECHOS HUMANOS -CASO HERRERA ESPINOZA Y OTROS VS. ECUADOR -SENTENCIA DE 1 DE SEPTIEMBRE DE 2016 -(Excepciones Preliminares, Fondo, Reparaciones y Costas) - -En el caso Herrera Espinoza y otros, -la Corte Interamericana de Derechos Humanos (en adelante también “la Corte" Ecuador es -56 "RESOLUCIÓN DE LA -CORTE INTERAMERICANA DE DERECHOS HUMANOS -DE 17 DE NOVIEMBRE DE 2005 -SOLICITUD DE MEDIDAS PROVISIONALES PRESENTADA POR -LA COMISIÓN INTERAMERICANA DE DERECHOS HUMANOS -RESPECTO DE LA REPÚBLICA FEDERATIVA DEL BRASIL -CASO DE LOS NIÑOS Y ADOLESCENTES PRIVADOS DE LIBERTAD" Brasil es -57 "RESOLUCIÓN DE LA -CORTE INTERAMERICANA DE DERECHOS HUMANOS∗ -DE 22 DE NOVIEMBRE DE 2019 -CASO GARCÍA ASTO Y RAMÍREZ ROJAS VS. PERÚ -SUPERVISIÓN DE CUMPLIMIENTO DE SENTENCIA -VISTO: -1." Perú es -58 "RESOLUCIÓN DE LA -CORTE INTERAMERICANA DE DERECHOS HUMANOS - -DE 18 DE JUNIO DE 2012 - -CASO DE LA MASACRE DE SANTO DOMINGO VS. COLOMBIA -" Colombia es -59 "RESOLUCIÓN DE LA -CORTE INTERAMERICANA DE DERECHOS HUMANOS  -DE 3 DE MAYO DE 2016 -CASO SALVADOR CHIRIBOGA VS. ECUADOR -SUPERVISIÓN DE CUMPLIMIENTO DE SENTENCIA -VISTO: -1." Ecuador es -60 "RESOLUCIÓN DE LA -CORTE INTERAMERICANA DE DERECHOS HUMANOS -DE 23 DE FEBRERO DE 2016 -SOLICITUD DE MEDIDAS PROVISIONALES -CASO NADEGE DORZEMA Y OTROS VS. REPÚBLICA DOMINICANA -VISTOS: -1." República Dominicana es -61 "Corte Interamericana de Derechos Humanos -Caso Myrna Mack Chang Vs. Guatemala -Sentencia de 25 de noviembre de 2003 -(Fondo, Reparaciones y Costas) - -En el caso Myrna Mack Chang, -la Corte Interamericana de Derechos Humanos (en adelante “la Corte”, “la Corte" Guatemala es -62 "INFORME No. 196/20 -CASO 13.030 -INFORME DE FONDO -SANTIAGO LEGUIZAMÓN ZAVÁN Y FAMILIA -PARAGUAY -10 DE JULIO DE 2020 -I." Paraguay es -63 "RESOLUCIÓN DE LA -CORTE INTERAMERICANA DE DERECHOS HUMANOS* -DE 3 DE JULIO DE 2007 - -CASO DE LAS HERMANAS SERRANO CRUZ VS. EL SALVADOR -SUPERVISIÓN DE CUMPLIMIENTO DE SENTENCIA -" El Salvador es -64 "INFORME No. 26/08 1 -PETICIÓN 270-02 -ADMISIBILIDAD -CÉSAR ALBERTO MENDOZA Y OTROS -ARGENTINA -14 de marzo de 2008 -I." Argentina es -65 "RESOLUCIÓN DE LA -CORTE INTERAMERICANA DE DERECHOS HUMANOS -DE 22 DE NOVIEMBRE DE 2019 -CASO FLEURY Y OTROS VS. HAITÍ -SUPERVISIÓN DE CUMPLIMIENTO DE SENTENCIA -VISTO: -1." Haití es -66 "REF.: - -Caso Nº 12.727 -Antonio Tavares Pereira y otros -Brasil - -6 de febrero de 2021" Brasil es -67 "RESOLUCIÓN DE LA -CORTE INTERAMERICANA DE DERECHOS HUMANOS -DE 14 DE OCTUBRE DE 2021 -MEDIDAS PROVISIONALES -ASUNTO INTEGRANTES DEL CENTRO NICARAGÜENSE DE DERECHOS HUMANOS Y -DE LA COMISIÓN PERMANENTE DE DERECHOS HUMANOS (CENIDH-CPDH) -RESPECTO DE NICARAGUA" Nicaragua es -68 "RESOLUCIÓN DEL PRESIDENTE DE LA -CORTE INTERAMERICANA DE DERECHOS HUMANOS -DE 16 DE OCTUBRE DE 2013 -CASO RODRÍGUEZ VERA Y OTROS VS. COLOMBIA - -VISTO: -1." Colombia es -69 "INFORME No. 73/17 -CASO 12.984 -FONDO -RAÚL ROLANDO ROMERO FERIS -ARGENTINA -5 DE JULIO DE 2017 -" Argentina es -70 "RESOLUCIÓN DE LA -CORTE INTERAMERICANA DE DERECHOS HUMANOS* -DE 28 DE ENERO DE 2021 -CASO ROSADIO VILLAVICENCIO VS. PERÚ -SUPERVISIÓN DE CUMPLIMIENTO DE SENTENCIA -VISTO: -1." Perú es -71 "INFORME No. 110/10 -PETICIÓN 1560-07 -ADMISIBILIDAD -CLAUDINA ISABEL VELASQUEZ PAIZ Y OTROS -GUATEMALA -4 de octubre de 2010 -I." Guatemala es -72 "CORTE INTERAMERICANA DE DERECHOS HUMANOS -CASO MARTÍNEZ CORONADO VS. GUATEMALA -SENTENCIA DE 10 DE MAYO DE 2019 -(Fondo, Reparaciones y Costas) - -En el caso Martínez Coronado, -la Corte Interamericana de Derechos Humanos (en adelante “la Corte Interamericana”, “la Corte” o" Guatemala es -73 "INFORME Nº 18/06 1 -PETICIÓN 12.353 -ADMISIBILIDAD -ARLEY JOSÉ ESCHER Y OTROS -(INTERCEPTACIÓN DE LÍNEAS TELEFÓNICAS DE ORGANIZACIONES SOCIALES) -BRASIL -2 de marzo de 2006" Brasil es -74 "CORTE INTERAMERICANA DE DERECHOS HUMANOS -CASO TIU TOJÍN VS. GUATEMALA -SENTENCIA DE 26 DE NOVIEMBRE DE 2008 -(Fondo, Reparaciones y Costas) - -En el caso Tiu Tojín, -la Corte Interamericana de Derechos Humanos (en adelante “la Corte" Guatemala es -75 "RESOLUCIÓN DE LA -CORTE INTERAMERICANA DE DERECHOS HUMANOS * -DE 1 DE JUNIO DE 2020 -CASO VALLE JARAMILLO Y OTROS VS. COLOMBIA -SUPERVISIÓN DE CUMPLIMIENTO DE SENTENCIA -VISTO: -1." Colombia es -76 "VOTO DISIDENTE DEL -JUEZ EDUARDO VIO GROSSI -A LA SENTENCIA DE 21 DE NOVIEMBRE DE 2019 -DE LA CORTE INTERAMERICANA DE DERECHOS HUMANOS -EN EL CASO ASOCIACIÓN NACIONAL DE CESANTES Y JUBILADOS DE LA -SUPERINTENDENCIA NACIONAL DE ADMINISTRACIÓN TRIBUTARIA -(ANCEJUB-SUNAT) VS. PERÚ" Perú es -77 "RESOLUCIÓN DEL PRESIDENTE DE LA -CORTE INTERAMERICANA DE DERECHOS HUMANOS -8 DE FEBRERO DE 2012 -SUPERVISIÓN DE CUMPLIMIENTO DE LAS MEDIDAS DE REPARACIÓN -SOBRE ATENCIÓN MÉDICA Y PSICOLÓGICA ORDENADAS EN NUEVE -CASOS COLOMBIANOS1 -CONVOCATORIA DE AUDIENCIA PRIVADA" Colombia es -78 "VOTO CONCURRENTE DEL -JUEZ EDUARDO FERRER MAC-GREGOR POISOT -Y DE LA JUEZA ELIZABETH ODIO BENITO -CASO DÍAZ LORETO Y OTROS VS. VENEZUELA -SENTENCIA DE 19 DE NOVIEMBRE DE 2019 -(Excepciones Preliminares, Fondo, Reparaciones y Costas) -" Venezuela es -79 "VOTO PARCIALMENTE DISIDENTE -DEL JUEZ ALBERTO PÉREZ PÉREZ -CASO GRANIER Y OTROS (RADIO CARACAS TELEVISIÓN) VS. -VENEZUELA -SENTENCIA DE 22 DE JUNIO DE 2015 -(Excepciones Preliminares, Fondo, Reparaciones y Costas) -1." Venezuela es -80 "VOTO DISIDENTE DEL JUEZ EDUARDO VIO GROSSI. -CORTE INTERAMERICANA DE DERECHOS HUMANOS -CASO ARTAVIA MURILLO Y OTROS -(“FECUNDACIÓN IN VITRO”) VS. COSTA RICA -SENTENCIA DE 28 DE NOVIEMBRE DE 2012 -(Excepciones Preliminares, Fondo, Reparaciones y Costas) -INTRODUCCIÓN." Costa Rica es -81 "RESOLUCIÓN DE LA -CORTE INTERAMERICANA DE DERECHOS HUMANOS -DE 2 DE DICIEMBRE DE 2003* -MEDIDAS PROVISIONALES -LILIANA ORTEGA Y OTRAS RESPECTO DE VENEZUELA -VISTOS: -1." Venezuela es -82 "Corte Interamericana de Derechos Humanos -Caso Raxcacó Reyes Vs. Guatemala -Sentencia de 15 de septiembre de 2005 -(Fondo, Reparaciones y Costas) - -En el caso Raxcacó Reyes, -La Corte Interamericana de Derechos Humanos (en adelante la Corte"", ""la Corte""" Guatemala es -83 "Corte Interamericana de Derechos Humanos -Caso Blake Vs. Guatemala - -Sentencia de 2 de julio de 1996 -(Excepciones Preliminares) - -En el caso Blake," Guatemala es -84 "INFORME No. 6/2020 -CASO 12. 727 -INFORME DE FONDO -ANTONIO TAVARES PEREIRA Y OTROS -BRASIL1 -3 de marzo de 2020 -" Brasil es -85 "Resolución de la Corte Interamericana de Derechos Humanos* -de 5 de febrero de 2008 - -Medidas Provisionales -respecto de la República de Colombia - -Asunto Comunidades del Jiguamiandó y del Curbaradó" Colombia es -86 "5 -INFORME No. 117/10 -FONDO -CASO 12.343 -EDGAR FERNANDO GARCIA -GUATEMALA -22 de octubre de 2010" Guatemala es -87 "INFORME No. 136/09 -PETICIÓN 321-05 -ADMISIBILIDAD -MARÍA INÉS CHINCHILLA SANDOVAL -GUATEMALA -13 de noviembre de 2009 -" Guatemala es -88 "CORTE INTERAMERICANA DE DERECHOS HUMANOS - -CASO GARZÓN GUZMÁN Y OTROS VS. ECUADOR - -SENTENCIA DE 1 DE SEPTIEMBRE DE 2021 -(Fondo, Reparaciones y Costas) -" Ecuador es -89 "INFORME No. 84/13 -CASO 12.482 -FONDO -VALDEMIR QUISPEALAYA VILCAPOMA -PERÚ -4 de noviembre de 2013 -" Perú es -90 "INFORME No. 16/19 -CASO 12.991 -FONDO -MASACRE DE LA ALDEA LOS JOSEFINOS -GUATEMALA -12 DE FEBRERO DE 2019 -" Guatemala es -91 "INFORME No. 148/18 -CASO 12.997 -FONDO -SANDRA CECILIA PAVEZ PAVEZ -CHILE 1 -7 de diciembre de 2018 -" Chile es -92 "5 -INFORME No. 118/10 -CASO 12.680 -FONDO -RAFAEL ARTURO PACHECO TERUEL Y OTROS -(MUERTE POR INCENDIO EN EL CENTRO PENAL DE SAN PEDRO SULA) -HONDURAS" Honduras es -93 "RESOLUCIÓN DEL PRESIDENTE DE LA -CORTE INTERAMERICANA DE DERECHOS HUMANOS -DE 21 DE AGOSTO DE 2007 -MEDIDAS PROVISIONALES -ASUNTO DE LA FUNDACIÓN DE ANTROPOLOGÍA -FORENSE DE GUATEMALA -VISTOS:" Guatemala es -94 "Corte Interamericana de Derechos Humanos - -Caso de los “Niños de la Calle” (Villagrán Morales y otros) Vs. -Guatemala - -Sentencia de 26 de mayo de 2001 -(Reparaciones y Costas)" Guatemala es -95 "Resolución de la -Corte Interamericana de Derechos Humanos* -de 17 de noviembre de 2009 -Caso Montero Aranguren y otros (Retén de Catia) Vs. Venezuela -Supervisión de Cumplimiento de Sentencia -Visto: -1." Venezuela es -96 "RESOLUCIÓN DE LA PRESIDENTA DE LA -CORTE INTERAMERICANA DE DERECHOS HUMANOS -DE 20 DE MAYO DE 2009 -CASO COMUNIDAD INDÍGENA SAWHOYAMAXA VS. PARAGUAY -CONVOCATORIA A AUDIENCIA PÚBLICA -SUPERVISION DE CUMPLIMIENTO DE SENTENCIA -" Paraguay es -97 "RESOLUCIÓN DE LA PRESIDENTA DE LA -CORTE INTERAMERICANA DE DERECHOS HUMANOS -DE 21 DE ABRIL DE 2021 -CASO PROFESORES DE CHAÑARAL Y OTRAS MUNICIPALIDADES VS. CHILE -VISTO: -1. -El escrito de sometimiento del caso y el Informe de Fondo de la Comisión" Chile es -98 "29 de marzo de 2018 -REF.: - -Caso Nº 12.197 -Ramón Rosendo Carranza Alarcón -Ecuador -" Ecuador es -99 "RESOLUCIÓN DE LA -CORTE INTERAMERICANA DE DERECHOS HUMANOS -DE 29 DE ENERO DE 1999 -MEDIDAS PROVISIONALES SOLICITADAS POR LA -COMISIÓN INTERAMERICANA DE DERECHOS HUMANOS -RESPECTO DE LA REPÚBLICA DE COLOMBIA -CASO CLEMENTE TEHERÁN Y OTROS" Colombia es diff --git a/src/extractors/text_to_text_extractor/labeled_data/date_spanish.tsv b/src/extractors/text_to_text_extractor/labeled_data/date_spanish.tsv deleted file mode 100644 index 0263d2d..0000000 --- a/src/extractors/text_to_text_extractor/labeled_data/date_spanish.tsv +++ /dev/null @@ -1,701 +0,0 @@ - input output language -0 "INFORME No. 78/08 -PETICIÓN 785-05 -ADMISIBILIDAD -RAFAEL ARTURO PACHECO TERUEL Y OTROS -(MUERTE POR INCENDIO EN EL CENTRO PENAL DE SAN PEDRO SULA) -HONDURAS -17 de octubre de 2008" 17 Oct, 2008 es -1 "CORTE INTERAMERICANA DE DERECHOS HUMANOS - -CASO DE LOS PUEBLOS INDÍGENAS KUNA DE MADUNGANDÍ Y EMBERÁ DE BAYANO Y -SUS MIEMBROS VS. PANAMÁ - -SENTENCIA DE 14 DE OCTUBRE DE 2014 -(Excepciones Preliminares, Fondo, Reparaciones y Costas)" 14 Oct, 2014 es -2 "RESOLUCIÓN DE LA -CORTE INTERAMERICANA DE DERECHOS HUMANOS -DE 17 DE NOVIEMBRE DE 2021 -CASO ROCHE AZAÑA Y OTROS VS. NICARAGUA -SUPERVISIÓN DE CUMPLIMIENTO DE SENTENCIA - -VISTO:" 17 Nov, 2021 es -3 "RESOLUCIÓN DE LA -CORTE INTERAMERICANA DE DERECHOS HUMANOS* -DE 4 DE JULIO DE 2006 -MEDIDAS PROVISIONALES Y -SOLICITUD DE AMPLIACIÓN DE MEDIDAS PROVISIONALES -RESPECTO DE LA REPÚBLICA FEDERATIVA DEL BRASIL -CASO DE LOS NIÑOS Y ADOLESCENTES PRIVADOS DE LIBERTAD" 04 Jul, 2006 es -4 "Corte Interamericana de Derechos Humanos -Caso Caesar Vs. Trinidad y Tobago -Resolución del 21 de Noviembre de 2007 -Supervisión de Cumplimiento de Sentencia - -VISTOS: -1." 21 Nov, 2007 es -5 "RESOLUCIÓN DE LA PRESIDENTA DE LA -CORTE INTERAMERICANA DE DERECHOS HUMANOS -DE 30 DE JUNIO DE 2020 -CASO MOTA ABARULLO Y OTROS VS. VENEZUELA -VISTO: -1. -El escrito de sometimiento del caso y el Informe de Fondo No. 118/18 de la Comisión" 30 Jun, 2020 es -6 "RESOLUCIÓN DEL PRESIDENTE DE LA -CORTE INTERAMERICANA DE DERECHOS HUMANOS -DE 10 DE MARZO DE 2010 -CASO IBSEN CÁRDENAS E IBSEN PEÑA Vs. BOLIVIA -VISTOS: -1. -El escrito de demanda presentado por la Comisión Interamericana de Derechos" 10 Mar, 2010 es -7 "RESOLUCIÓN DEL PRESIDENTE EN EJERCICIO DE LA -CORTE INTERAMERICANA DE DERECHOS HUMANOS -DE 2 DE MAYO DE 2014 -SOLICITUD DE MEDIDAS PROVISIONALES PRESENTADA POR -LA COMISIÓN INTERAMERICANA DE DERECHOS HUMANOS -RESPECTO DE COLOMBIA -ASUNTO DANILO RUEDA" 02 May, 2014 es -8 "RESOLUCIÓN DEL PRESIDENTE -DE LA CORTE INTERAMERICANA DE DERECHOS HUMANOS -DE 9 DE JUNIO DE 2014 -FONDO DE ASISTENCIA LEGAL DE VÍCTIMAS -CASO COMUNIDAD CAMPESINA DE SANTA BÁRBARA VS. PERÚ -VISTO: -1." 09 Jun, 2014 es -9 "CORTE INTERAMERICANA DE DERECHOS HUMANOS -CASO ROSADIO VILLAVICENCIO VS. PERÚ -SENTENCIA DE 14 DE OCTUBRE DE 2019 -(Excepciones Preliminares, Fondo, Reparaciones y Costas) - -En el caso Rosadio Villavicencio, -" 14 Oct, 2019 es -10 "21 de noviembre de 2014 -REF.: - -Caso No. 11.438 -Herrera Espinoza y otros -Ecuador -" 21 Nov, 2014 es -11 "CORTE INTERAMERICANA DE DERECHOS HUMANOS -CASO LÓPEZ Y OTROS VS. ARGENTINA -SENTENCIA DE 25 DE NOVIEMBRE DE 2019 -(Excepciones Preliminares, Fondo, Reparaciones y Costas) - -En el caso López y otros, -la Corte Interamericana de Derechos Humanos (en adelante “la Corte Interamericana”, “la" 25 Nov, 2019 es -12 "RESOLUCIÓN DE LA -CORTE INTERAMERICANA DE DERECHOS HUMANOS* -21 DE JUNIO DE 2021 -CASO ACEVEDO BUENDÍA Y OTROS -(“CESANTES Y JUBILADOS DE LA CONTRALORÍA”) VS. PERÚ -SUPERVISIÓN DE CUMPLIMIENTO DE SENTENCIA -" 21 Jun, 2021 es -13 "INFORME No. 77/081 -PETICIÓN 1094-03 -ADMISIBILIDAD -JOSÉ AGAPITO RUANO TORRES -EL SALVADOR -17 de octubre de 2008 -I." 17 Oct, 2008 es -14 "RESOLUCIÓN DE LA -CORTE INTERAMERICANA DE DERECHOS HUMANOS - -DE 23 DE JUNIO DE 2015 - -REINTEGRO AL FONDO DE ASISTENCIA LEGAL DE VÍCTIMAS -CASO ROCHAC HERNÁNDEZ Y OTROS VS. EL SALVADOR" 23 Jun, 2015 es -15 "CORTE INTERAMERICANA DE DERECHOS HUMANOS - -CASO TRABAJADORES CESADOS DE PETROPERÚ Y OTROS VS. PERÚ -SENTENCIA DE 23 DE NOVIEMBRE DE 2017 -(Excepciones Preliminares, Fondo, Reparaciones y Costas) - -En el Caso Trabajadores Cesados de Petroperú, del Ministerio de Educación, del Ministerio" 23 Nov, 2017 es -16 "RESOLUCIÓN DE LA -CORTE INTERAMERICANA DE DERECHOS HUMANOS1 -DE - -9 DE FEBRERO DE 2006 - -MEDIDAS PROVISIONALES" 09 Feb, 2006 es -17 "RESOLUCIÓN DE LA -CORTE INTERAMERICANA DE DERECHOS HUMANOS -DE 30 DE SEPTIEMBRE DE 1999 -MEDIDAS PROVISIONALES ADOPTADAS POR LA -CORTE INTERAMERICANA DE DERECHOS HUMANOS -RESPECTO DE LA REPÚBLICA DE GUATEMALA -CASO CARPIO NICOLLE" 30 Sep, 1999 es -18 "RESOLUCIÓN DE LA -CORTE INTERAMERICANA DE DERECHOS HUMANOS -DE 14 DE MAYO DE 2019 -CASO MUNÁRRIZ ESCOBAR Y OTROS VS. PERÚ -SUPERVISIÓN DE CUMPLIMIENTO DE SENTENCIA -VISTO: -1." 14 May, 2019 es -19 "RESOLUCIÓN DE LA -CORTE INTERAMERICANA DE DERECHOS HUMANOS ∗ -DE 4 DE SEPTIEMBRE DE 2012 -CASO DE LA MASACRE DE LAS DOS ERRES VS. GUATEMALA -SUPERVISIÓN DE CUMPLIMIENTO DE SENTENCIA - -VISTO:" 04 Sep, 2012 es -20 "RESOLUCIÓN DE LA -CORTE INTERAMERICANA DE DERECHOS HUMANOS -DE 20 DE NOVIEMBRE DE 2015 - -CASO FLEURY Y OTROS VS. HAITÍ -SUPERVISIÓN DE CUMPLIMIENTO DE SENTENCIA -" 20 Nov, 2015 es -21 "18 de octubre de 2018 -REF.: - -Caso Nº 12.709 -Juan Carlos Flores Bedregal y familia -Bolivia -" 18 Oct, 2018 es -22 "INFORME No 54/04 -PETICIÓN 559-2002 -NELSON CARVAJAL CARVAJAL -ADMISIBILIDAD -COLOMBIA -13 de octubre de 2004 -I." 13 Oct, 2004 es -23 "RESOLUCIÓN DE LA -CORTE INTERAMERICANA DE DERECHOS HUMANOS -DE 22 DE FEBRERO DE 2011 -CASO GARIBALDI VS. BRASIL -SUPERVISIÓN DE CUMPLIMIENTO DE SENTENCIA -VISTO: -1." 22 Feb, 2011 es -24 "RESOLUCIÓN DE LA -CORTE INTERAMERICANA DE DERECHOS HUMANOS -DE 14 DE JUNIO DE 2005 -MEDIDAS PROVISIONALES -RESPECTO DEL ESTADO DE GUATEMALA -CASO BLAKE -" 14 Jun, 2005 es -25 "RESOLUCIÓN DE LA -CORTE INTERAMERICANA DE DERECHOS HUMANOS  -DE 1 DE JULIO DE 2011 -MEDIDAS PROVISIONALES -RESPECTO DE LA REPÚBLICA DEL PERÚ -CASO WONG HO WING -" 01 Jul, 2011 es -26 "INFORME No. 75/15 -CASO 12.923 -FONDO -ROCÍO SAN MIGUEL SOSA Y OTRAS -VENEZUELA -28 DE OCTUBRE DE 2015 -I." 28 Oct, 2015 es -27 "5 -INFORME No. 173/10 -CASO 11.618 -OSCAR ALBERTO MOHAMED -FONDO -ARGENTINA -2 de noviembre de 2010" 02 Nov, 2010 es -28 "CORTE INTERAMERICANA DE DERECHOS HUMANOS - -CASO CARVAJAL CARVAJAL Y OTROS VS. COLOMBIA - -SENTENCIA DE 13 DE MARZO DE 2018 -(Fondo, Reparaciones y Costas) -" 13 Mar, 2018 es -29 "CORTE INTERAMERICANA DE DERECHOS HUMANOS -CASO LÓPEZ LONE Y OTROS VS. HONDURAS -SENTENCIA DE 2 DE SEPTIEMBRE DE 2016 -(Interpretación de la Sentencia de Excepción Preliminar, -Fondo, Reparaciones y Costas) - -En el caso López Lone y otros," 02 Sep, 2016 es -30 "CORTE INTERAMERICANA DE DERECHOS HUMANOS -CASO GONZALES LLUY Y OTROS VS. ECUADOR* -SENTENCIA DE 1 DE SEPTIEMBRE DE 2015 -(Excepciones Preliminares, Fondo, Reparaciones y Costas) - -En el caso Gonzales Lluy y otros, -la Corte Interamericana de Derechos Humanos (en adelante “la Corte Interamericana”, “la" 01 Sep, 2015 es -31 "RESOLUCIÓN DE LA -CORTE INTERAMERICANA DE DERECHOS HUMANOS  -DE 22 DE NOVIEMBRE DE 2016 -CASO ARGÜELLES Y OTROS VS. ARGENTINA -SUPERVISIÓN DE CUMPLIMIENTO DE SENTENCIA -VISTO: -1." 22 Nov, 2016 es -32 "Corte Interamericana de Derechos Humanos -Caso Ivcher Bronstein Vs. Perú -Sentencia de 4 de septiembre de 2001 -(Interpretación de la Sentencia de Fondo) - -En el caso Ivcher Bronstein, -la Corte Interamericana de Derechos Humanos (en adelante “la Corte” o “la Corte" 04 Sep, 2001 es -33 "RESOLUCIÓN DE LA -CORTE INTERAMERICANA DE DERECHOS HUMANOS -10 DE JULIO DE 2007 -CASO BÁMACA VELÁSQUEZ -VS. GUATEMALA -SUPERVISIÓN DE CUMPLIMIENTO DE SENTENCIAS -" 10 Jul, 2007 es -34 "RESOLUCIÓN DE LA -CORTE INTERAMERICANA DE DERECHOS HUMANOS• -DE 29 DE JUNIO DE 2005 - -LA - -MEDIDAS PROVISIONALES SOLICITADAS POR" 29 Jun, 2005 es -35 "INFORME No. 103/13 -CASO 12.816 -FONDO -ADAN GUILLERMO LOPEZ LONE Y OTROS -HONDURAS -5 de noviembre de 2013 -" 05 Nov, 2013 es -36 "RESOLUCIÓN DE LA -CORTE INTERAMERICANA DE DERECHOS HUMANOS * -DE 1 DE SEPTIEMBRE DE 2021 -CASO BAENA RICARDO Y OTROS VS. PANAMÁ -SUPERVISIÓN DE CUMPLIMIENTO DE SENTENCIA -VISTO: -1." 01 Sep, 2021 es -37 "RESOLUCIÓN DE LA -CORTE INTERAMERICANA DE DERECHOS HUMANOS* -DE 1 DE JULIO DE 2011 -CASO CASTILLO PETRUZZI Y OTROS VS. PERÚ -SUPERVISIÓN DE CUMPLIMIENTO DE SENTENCIA - -VISTO:" 01 Jul, 2011 es -38 "RESOLUCIÓN DE LA -CORTE INTERAMERICANA DE DERECHOS HUMANOS -DE 25 DE SEPTIEMBRE DE 1999 - -MEDIDAS PROVISIONALES ORDENADAS POR LA -CORTE INTERAMERICANA DE DERECHOS HUMANOS -RESPECTO DE LA REPÚBLICA DE TRINIDAD Y TOBAGO" 25 Sep, 1999 es -39 "INFORME No. 148/19 -CASO 12.971 -INFORME DE FONDO -RONALD MOYA CHACÓN Y FREDDY PARRALES CHAVES -COSTA RICA -28 DE SEPTIEMBRE DE 2019 -I." 28 Sep, 2019 es -40 "RESOLUCIÓN DE LA -CORTE INTERMERICANA DE DERECHOS HUMANOS ∗ -5 DE JULIO DE 2011 -MEDIDAS PROVISIONALES -RESPECTO DE VENEZUELA -CASO ELOISA BARRIOS Y OTROS -" 05 Jul, 2011 es -41 "RESOLUCIÓN DE LA -CORTE INTERAMERICANA DE DERECHOS HUMANOS* -DE 12 DE MARZO DE 2020 -CASO CANALES HUAPAYA Y OTROS VS. PERÚ -SUPERVISIÓN DE CUMPLIMIENTO DE SENTENCIA -VISTO: -1." 12 Mar, 2020 es -42 "CORTE INTERAMERICANA DE DERECHOS HUMANOS -CASO DE LA “MASACRE DE MAPIRIPÁN” -VS. COLOMBIA -SENTENCIA DE 15 SEPTIEMBRE DE 2005 - -En el caso de la “Masacre de Mapiripán”, -la Corte Interamericana de Derechos Humanos (en adelante “la Corte" 15 Sep, 2005 es -43 "RESOLUCIÓN -DE LA CORTE INTERAMERICANA DE DERECHOS HUMANOS ∗ -DE 14 DE OCTUBRE DE 2019 -SOLICITUD DE MEDIDAS PROVISIONALES -Y SUPERVISIÓN DE CUMPLIMIENTO DE SENTENCIA -CASO CESTI HURTADO VS. PERÚ -VISTOS:" 14 Oct, 2019 es -44 "RESOLUCIÓN DE LA -CORTE INTERAMERICANA DE DERECHOS HUMANOS -DE 27 DE FEBRERO DE 2012 -CASO VERA VERA Y OTRA VS. ECUADOR -SUPERVISIÓN DE CUMPLIMIENTO DE SENTENCIA -VISTO: -1." 27 Feb, 2012 es -45 "RESOLUCIÓN DE LA -CORTE INTERAMERICANA DE DERECHOS HUMANOS * -DE 12 DE MARZO DE 2020 -CASO MANUEL CEPEDA VARGAS VS. COLOMBIA -SUPERVISIÓN DE CUMPLIMIENTO DE SENTENCIA -VISTO: -1." 12 Mar, 2020 es -46 "16 de marzo de 2016 -REF.: - -Caso No. 12.728 -Pueblo Indígena Xucuru y sus miembros -Brasil -" 16 Mar, 2016 es -47 "RESOLUCIÓN DE LA PRESIDENTA DE LA -CORTE INTERAMERICANA DE DERECHOS HUMANOS -DE 10 DE FEBRERO DE 2020 -CASO ACOSTA MARTÍNEZ VS. ARGENTINA -VISTO: -1. -El escrito de sometimiento del caso y el Informe de Fondo de la Comisión" 10 Feb, 2020 es -48 "Corte Interamericana de Derechos Humanos -Caso El Amparo Vs. Venezuela -Sentencia de 14 de septiembre de 1996 -(Reparaciones y Costas) - -En el caso El Amparo, -la Corte Interamericana de Derechos Humanos, integrada por los siguientes jueces:" 14 Sep, 1996 es -49 "Resolución de la Presidenta de la -Corte Interamericana de Derechos Humanos -de 10 de junio de 2008 -Medidas Provisionales -respecto del Brasil -Asunto de los niños y adolescentes privados de libertad -en el “Complexo do Tatuapé” de la Fundação Casa" 10 Jun, 2008 es -50 "RESOLUCIÓN DE LA -CORTE INTERAMERICANA DE DERECHOS HUMANOS -DE 5 DE FEBRERO DE 1997 -MEDIDAS PROVISIONALES SOLICITADAS POR LA -COMISIÓN INTERAMERICANA DE DERECHOS HUMANOS -RESPECTO DE LA REPÚBLICA DE COLOMBIA -CASO GIRALDO CARDONA" 05 Feb, 1997 es -51 "RESOLUCIÓN DE LA -CORTE INTERAMERICANA DE DERECHOS HUMANOS -DE 27 DE NOVIEMBRE DE 1998 -MEDIDAS PROVISIONALES ADOPTADAS POR LA -CORTE INTERAMERICANA DE DERECHOS HUMANOS -RESPECTO DE LA REPÚBLICA DE GUATEMALA -CASO CARPIO NICOLLE" 27 Nov, 1998 es -52 "RESOLUCIÓN DE LA -CORTE INTERAMERICANA DE DERECHOS HUMANOS ∗ -DE 23 DE JUNIO DE 2015 -CASO SALVADOR CHIRIBOGA VS. ECUADOR -SUPERVISIÓN DE CUMPLIMIENTO DE SENTENCIA - -VISTO:" 23 Jun, 2015 es -53 "RESOLUCIÓN DE LA -CORTE INTERAMERICANA DE DERECHOS HUMANOS ∗ -DE 14 DE MAYO DE 2019 -CASO POBLETE VILCHES Y OTROS VS. CHILE -SUPERVISIÓN DE CUMPLIMIENTO DE SENTENCIA - -VISTO:" 14 May, 2019 es -54 "INFORME No. 14/19 -CASO 12.302 -INFORME DE FONDO -HERMANOS CASIERRA Y FAMILIA -ECUADOR -12 de febrero de 2019 -I." 12 Feb, 2019 es -55 "RESOLUCIÓN DE LA -CORTE INTERAMERICANA DE DERECHOS HUMANOS -DE 14 DE MAYO DE 2019 -CASO GOIBURÚ Y OTROS VS. PARAGUAY -SUPERVISIÓN DE CUMPLIMIENTO DE SENTENCIA -VISTO: -1." 14 May, 2019 es -56 "RESOLUCIÓN DE LA -CORTE INTERAMERICANA DE DERECHOS HUMANOS* -DE 12 DE MARZO DE 2020 -CASO ROSENDO CANTÚ Y OTRA VS. MÉXICO -SUPERVISIÓN DE CUMPLIMIENTO DE SENTENCIA -VISTO: -1." 12 Mar, 2020 es -57 "6 de junio de 2021 -REF.: - -Caso No. 13.193 -Thomas Scot Cochran -Costa Rica -" 06 Jun, 2021 es -58 "RESOLUCIÓN DE LA -CORTE INTERAMERICANA DE DERECHOS HUMANOS* -DE 5 DE SEPTIEMBRE DE 2001 -MEDIDAS PROVISIONALES ORDENADAS POR LA -CORTE INTERAMERICANA DE DERECHOS HUMANOS -RESPECTO DE LA REPÚBLICA DE GUATEMALA -CASO COLOTENANGO" 05 Sep, 2001 es -59 "Resolución de la -Corte Interamericana de Derechos Humanos -1 de julio de 2009 -Caso Tibi Vs. Ecuador -Supervisión de Cumplimiento de Sentencia - -Visto:" 01 Jul, 2009 es -60 "RESOLUCIÓN DE LA -CORTE INTERAMERICANA DE DERECHOS HUMANOS -DE 21 DE SEPTIEMBRE DE 2005 -CASO MARITZA URRUTIA VS. GUATEMALA -SUPERVISIÓN DE CUMPLIMIENTO DE SENTENCIA - -VISTOS:" 21 Sep, 2005 es -61 "RESOLUCIÓN DE LA - -CORTE INTERAMERICANA DE DERECHOS HUMANOS -DE 10 DE OCTUBRE DE 2011** -CASO DE LAS NIÑAS YEAN Y BOSICO VS. REPÚBLICA DOMINICANA -SUPERVISIÓN DE CUMPLIMIENTO DE SENTENCIA -" 10 Oct, 2011 es -62 "RESOLUCIÓN DE LA -CORTE INTERAMERICANA DE DERECHOS HUMANOS -22 DE NOVIEMBRE DE 2019 -CASO DÍAZ PEÑA Y CASO UZCÁTEGUI Y OTROS VS. VENEZUELA -SUPERVISIÓN DE CUMPLIMIENTO DE SENTENCIAS -VISTO: -1." 22 Nov, 2019 es -63 "RESOLUCIÓN DE LA -CORTE INTERAMERICANA DE DERECHOS HUMANOS * -DE 24 DE JUNIO DE 2020 -MEDIDAS PROVISIONALES RESPECTO DE GUATEMALA -CASO MACK CHANG Y OTROS -VISTO: -1." 24 Jun, 2020 es -64 "CORTE INTERAMERICANA DE DERECHOS HUMANOS -TICONA ESTRADA Y OTROS VS. BOLIVIA -SENTENCIA DE 27 DE NOVIEMBRE DE 2008 -(FONDO, REPARACIONES Y COSTAS) - -En el caso Ticona Estrada y otros, -la Corte Interamericana de Derechos Humanos (en adelante “la Corte" 27 Nov, 2008 es -65 "INFORME No. 16/09 -PETICIÓN 12.302 -ADMISIBILIDAD -LUIS EDUARDO Y ANDRÉS ALEJANDRO CASIERRA QUIÑONEZ -ECUADOR -19 de marzo de 2009 -I." 19 Mar, 2009 es -66 "RESOLUCIÓN DE LA -CORTE INTERAMERICANA DE DERECHOS HUMANOS* -DE 10 DE FEBRERO DE 2017 -CASO ATALA RIFFO Y NIÑAS VS. CHILE -SUPERVISIÓN DE CUMPLIMIENTO DE SENTENCIA -VISTOS: -1." 10 Feb, 2017 es -67 "  - -RESOLUCIÓN DEL PRESIDENTE DE LA -CORTE INTERAMERICANA DE DERECHOS HUMANOS -3 DE MARZO DE 2011 -CASO PUEBLO INDÍGENA KICHWA DE SARAYAKU vs. ECUADOR -" 03 Mar, 2011 es -68 "CORTE INTERAMERICANA DE DERECHOS HUMANOS -CASO NADEGE DORZEMA Y OTROS VS. REPÚBLICA DOMINICANA -SENTENCIA DE 24 DE OCTUBRE DE 2012 -(Fondo, Reparaciones y Costas) - -En el caso Nadege Dorzema y otros, -la Corte Interamericana de Derechos Humanos (en adelante “la Corte Interamericana” o “la" 24 Oct, 2012 es -69 "24 de mayo de 2020 -REF.: - -Caso Nº 12.889 -Diana Maidanik y otros -Uruguay -" 24 May, 2020 es -70 "RESOLUCIÓN DEL PRESIDENTE DE LA -CORTE INTERAMERICANA DE DERECHOS HUMANOS -DE 14 DE SEPTIEMBRE DE 2016 -CASO TRABAJADORES CESADOS DE PETROPERÚ, DEL MINISTERIO DE EDUCACIÓN, -DEL MINISTERIO DE ECONOMÍA Y FINANZAS Y DE LA EMPRESA NACIONAL DE -PUERTOS VS. PERÚ -VISTO:" 14 Sep, 2016 es -71 "INFORME N° 12/03 -PETICIÓN 0322/2001 -ADMISIBILIDAD -COMUNIDAD INDÍGENA SAWHOYAMAXA DEL PUEBLO ENXET -PARAGUAY -20 de febrero de 2003 -I." 20 Feb, 2003 es -72 "Resolución de la -Corte Interamericana de Derechos Humanos -2 de febrero de 2010 -Medidas Provisionales -Respecto de El Salvador -Asunto Adrián Meléndez Quijano y Otros -Visto:" 02 Feb, 2010 es -73 "Corte Interamericana de Derechos Humanos -Caso Loayza Tamayo Vs. Perú -Resolución del 17 de noviembre de 1999 -(Cumplimiento de Sentencia) - -VISTOS: -1." 17 Nov, 1999 es -74 "RESOLUCIÓN DE LA -CORTE INTERAMERICANA DE DERECHOS HUMANOS -• -DE 22 DE SEPTIEMBRE DE 2006 -MEDIDAS PROVISIONALES RESPECTO DEL PERÚ -CASO DE LOS HERMANOS GÓMEZ PAQUIYAURI -VISTO:" 22 Sep, 2006 es -75 "RESOLUCIÓN DEL PRESIDENTE -DE LA CORTE INTERAMERICANA DE DERECHOS HUMANOS -DE 28 DE JULIO DE 2006 -SOLICITUD DE MEDIDAS PROVISIONALES PRESENTADA POR -LA COMISIÓN INTERAMERICANA DE DERECHOS HUMANOS -RESPECTO DEL BRASIL -CASO DE LAS PERSONAS PRIVADAS DE LIBERTAD" 28 Jul, 2006 es -76 "RESOLUCIÓN DE LA -CORTE INTERAMERICANA DE DERECHOS HUMANOS - - - -DE 5 DE FEBRERO DE 2013 -CASO BAENA RICARDO Y OTROS VS. PANAMÁ" 05 Feb, 2013 es -77 "RESOLUCIÓN DE LA -CORTE INTERAMERICANA DE DERECHOS HUMANOS  -DE 26 DE MARZO DE 2021 -CASO PAVEZ PAVEZ VS. CHILE -VISTO: -1. -El escrito de sometimiento del caso y el Informe de Fondo de la Comisión Interamericana" 26 Mar, 2021 es -78 "Corte Interamericana de Derechos Humanos - -Caso de la Masacre de La Rochela Vs. Colombia - -Sentencia de 11 de Mayo de 2007 -(Fondo, Reparaciones y Costas) -" 11 May, 2007 es -79 "INFORME Nº 24/06 1 -PETICIÓN 10.720 -ADMISIBILIDAD -MASACRE EL MOZOTE -EL SALVADOR -2 de marzo de 2006 -I." 02 Mar, 2006 es -80 "RESOLUCIÓN DE LA -CORTE INTERAMERICANA DE DERECHOS HUMANOS -DE - -27 DE NOVIEMBRE DE 2003 - -CASO DE LA “PANEL BLANCA”" 27 Nov, 2003 es -81 "RESOLUCIÓN DE LA -CORTE INTERAMERICANA DE DERECHOS HUMANOS -DE 30 DE OCTUBRE DE 2008 -CASO VARGAS ARECO VS. PARAGUAY -SUPERVISIÓN DE CUMPLIMIENTO DE SENTENCIA -VISTOS: -1." 30 Oct, 2008 es -82 "Resolución de la -Corte Interamericana de Derechos Humanos -de 30 de noviembre de 2007 -Caso Valle Jaramillo y otros vs. Colombia -VISTO: -1. -El escrito de demanda presentado por la Comisión Interamericana de Derechos" 30 Nov, 2007 es -83 "INFORME No. 107/18 -CASO 13.039 -FONDO -MARTINA REBECA VERA ROJAS -CHILE1 -5 DE OCTUBRE DE 2018 -" 05 Oct, 2018 es -84 "RESOLUCIÓN DE LA -CORTE INTERAMERICANA DE DERECHOS HUMANOS -DE 6 DE JULIO DE 2011 - -MEDIDAS PROVISIONALES -RESPECTO DE VENEZUELA -" 06 Jul, 2011 es -85 "Corte Interamericana de Derechos Humanos - -Caso Zambrano Vélez y otros Vs. Ecuador - -Sentencia de 4 de julio de 2007 -(Fondo, Reparaciones y Costas) -" 04 Jul, 2007 es -86 "RESOLUCIÓN DE LA -CORTE INTERAMERICANA DE DERECHOS HUMANOS -DE - -3 DE JULIO DE 2007 - -MEDIDAS PROVISIONALES" 03 Jul, 2007 es -87 "RESOLUCIÓN DE LA -CORTE INTERAMERICANA DE DERECHOS HUMANOS - - - -DE 14 DE MAYO DE 2013 -CASO CONTRERAS Y OTROS VS. EL SALVADOR" 14 May, 2013 es -88 "Corte Interamericana de Derechos Humanos - -Caso Loayza Tamayo Vs. Perú -Resolución de la Corte 8 de marzo de 1998 -(Interpretación de la Sentencia de Fondo) - -En el caso Loayza Tamayo," 08 Mar, 1998 es -89 "INFORME No. 175/20 -CASO 12.861 -INFORME DE FONDO -2 de julio de 2020 -Luis Fernando Guevara Díaz -COSTA RICA -I." 02 Jul, 2020 es -90 "16 de julio de 2019 -REF.: - -Caso Nº 12.954 -Jineth Bedoya Lima y Otra -Colombia -" 16 Jul, 2019 es -91 "INFORME N° 88/01 -CASO 12.147 -WINSTON CAESAR -TRINIDAD Y TOBAGO -10 de octubre de 2001 -I. -" 10 Oct, 2001 es -92 "RESOLUCIÓN DE LA -CORTE INTERAMERICANA DE DERECHOS HUMANOS - -DE 18 DE JUNIO DE 2012 - -CASO DE LA MASACRE DE SANTO DOMINGO VS. COLOMBIA -" 18 Jun, 2012 es -93 "RESOLUCIÓN DE LA -CORTE INTERAMERICANA DE DERECHOS HUMANOS * -DE 5 DE FEBRERO DE 2018 -CASO ANDRADE SALMÓN VS. BOLIVIA -SUPERVISIÓN DE CUMPLIMIENTO DE SENTENCIA -VISTO: -1." 05 Feb, 2018 es -94 "INFORME Nº 130/17 -CASO Nº 13.044 -FONDO -GUSTAVO FRANCISCO PETRO URREGO -COLOMBIA1 -25 DE OCTUBRE DE 2017 -" 25 Oct, 2017 es -95 "Corte Interamericana de Derechos Humanos -Caso Ivcher Bronstein Vs. Perú -Sentencia de 24 de septiembre de 1999 -(Competencia) - -En el caso Ivcher Bronstein, -la Corte Interamericana de Derechos Humanos (en adelante “la Corte”, “la Corte" 24 Sep, 1999 es -96 "RESOLUCIÓN DE LA -CORTE INTERAMERICANA DE DERECHOS HUMANOS -DE 13 DE FEBRERO DE 2013 -MEDIDAS PROVISIONALES RESPECTO DE LA REPÚBLICA ARGENTINA -ASUNTO MILLACURA LLAIPÉN Y OTROS - -VISTO:" 13 Feb, 2013 es -97 "RESOLUCIÓN DE LA -CORTE INTERAMERICANA DE DERECHOS HUMANOS -DE 3 DE FEBRERO DE 2001 -MEDIDAS PROVISIONALES -CASO LOAYZA TAMAYO -VISTOS: -1." 03 Feb, 2001 es -98 "INFORME Nº 20/98 -CASO 11.762 -BARUCH IVCHER BRONSTEIN -PERU -3 de marzo de 1998 -I. -" 03 Mar, 1998 es -99 "RESOLUCIÓN DEL PRESIDENTE DE LA -CORTE INTERAMERICANA DE DERECHOS HUMANOS -DEL 12 DE MAYO DE 1998 -MEDIDAS URGENTES ADOPTADAS POR EL PRESIDENTE DE -LA CORTE INTERAMERICANA DE DERECHOS HUMANOS EN EL -CASO ÁLVAREZ Y OTROS -VISTOS:" 12 May, 1998 es diff --git a/src/extractors/text_to_text_extractor/labeled_data/document_code.tsv b/src/extractors/text_to_text_extractor/labeled_data/document_code.tsv deleted file mode 100644 index f11d884..0000000 --- a/src/extractors/text_to_text_extractor/labeled_data/document_code.tsv +++ /dev/null @@ -1,701 +0,0 @@ - input output language -0 "Naciones Unidas - -Asamblea General - -A/RES/64/118 -Distr. general -15 de enero de 2010" A/RES/64/118 en -1 "A/RES/70/1 - -United Nations - -Distr.: General -21 October 2015 -" A/RES/70/1 en -2 "A/HRC/RES/39/20 - -Nations Unies - -Assemblée générale - -Distr. générale" A/HRC/RES/39/20 en -3 "United Nations - -A/RES/65/278 -Distr.: General -4 August 2011 - -General Assembly" A/RES/65/278 en -4 "A/RES/55/273 - -Naciones Unidas - -Distr. general -27 de julio de 2001 -" A/RES/55/273 en -5 "United Nations - -A/RES/57/97 - -General Assembly - -Distr.: General" A/RES/57/97 en -6 "Naciones Unidas - -Asamblea General - -A/RES/64/164 -Distr. general -17 de marzo de 2010" A/RES/64/164 en -7 "A/HRC/RES/42/17 - -Nations Unies - -Assemblée générale - -Distr. générale" A/HRC/RES/42/17 en -8 "A/HRC/RES/42/24 - -Naciones Unidas - -Asamblea General - -Distr. general" A/HRC/RES/42/24 en -9 "Naciones Unidas - -Asamblea General - -A/RES/64/97 -Distr. general -19 de enero de 2010" A/RES/64/97 en -10 "A/RES/59/71 - -Naciones Unidas - -Asamblea General - -Distr. general" A/RES/59/71 en -11 "A/RES/69/118 - -United Nations - -Distr.: General -18 December 2014 -" A/RES/69/118 en -12 "A/RES/69/128 - -Naciones Unidas - -Distr. general -18 de diciembre de 2014 -" A/RES/69/128 en -13 "A/RES/59/7 - -United Nations - -Distr.: General -6 December 2004 -" A/RES/59/7 en -14 "A/RES/59/119 - -Naciones Unidas - -Asamblea General - -Distr. general" A/RES/59/119 en -15 "Naciones Unidas - -Asamblea General - -A/RES/57/249 -Distr. general -20 de febrero de 2003" A/RES/57/249 en -16 "A/RES/67/161 - -Naciones Unidas - -Distr. general -7 de marzo de 2013 -" A/RES/67/161 en -17 "S/RES/2143 (2014) - -United Nations - -Security Council - -Distr.: General" S/RES/2143 en -18 "A/RES/64/193 - -Naciones Unidas - -Asamblea General - -Distr. general" A/RES/64/193 en -19 "Nations Unies - -Assemblée générale - -A/RES/62/116 -Distr. générale -10 janvier 2008" A/RES/62/116 en -20 "A/HRC/RES/15/10 - -Naciones Unidas - -Asamblea General - -Distr. general" A/HRC/RES/15/10 en -21 "United Nations - -A/RES/58/317 - -General Assembly - -Distr.: General" A/RES/58/317 en -22 "A/RES/65/39 - -United Nations - -Distr.: General -11 January 2011 -" A/RES/65/39 en -23 "Nations Unies - -Assemblée générale - -A/RES/59/78 -Distr. générale -17 décembre 2004" A/RES/59/78 en -24 "A/RES/68/62 - -Naciones Unidas - -Distr. general -11 de diciembre de 2013 -" A/RES/68/62 en -25 "Nations Unies - -A/RES/64/26 - -Assemblée générale - -Distr. générale" A/RES/64/26 en -26 "A/RES/61/114 - -Naciones Unidas - -Asamblea General - -Distr. general" A/RES/61/114 en -27 "Nations Unies - -Assemblée générale - -A/RES/61/29 -Distr. générale -18 décembre 2006" A/RES/61/29 en -28 "A/RES/56/209 - -Nations Unies - -Distr. générale -21 février 2002 -" A/RES/56/209 en -29 "Naciones Unidas - -Asamblea General - -A/RES/60/273 -Distr. general -8 de agosto de 2006" A/RES/60/273 en -30 "A/HRC/35/21 - -United Nations - -General Assembly - -Distr.: General" A/HRC/35/21 en -31 "United Nations - -General Assembly - -A/RES/57/43 -Distr.: General -16 January 2003" A/RES/57/43 en -32 "A/RES/71/126 - -Nations Unies - -Distr. générale -23 janvier 2017 -" A/RES/71/126 en -33 "Nations Unies - -A/RES/64/40 - -Assemblée générale - -Distr. générale" A/RES/64/40 en -34 "Nations Unies - -Assemblée générale - -A/RES/55/147 -Distr. générale -29 janvier 2001" A/RES/55/147 en -35 "A/RES/62/140 - -Naciones Unidas - -Distr. general -19 de febrero de 2008 -" A/RES/62/140 en -36 "United Nations - -General Assembly - -A/RES/58/30 -Distr.: General -18 December 2003" A/RES/58/30 en -37 "Naciones Unidas - -Asamblea General - -A/HRC/RES/21/23 -Distr. general -17 de octubre de 2012" A/HRC/RES/21/23 en -38 "A/HRC/RES/35/31 - -Nations Unies - -Assemblée générale - -Distr. générale" A/HRC/RES/35/31 en -39 "Naciones Unidas - -Asamblea General - -A/RES/60/195 -Distr. general -2 de marzo de 2006" A/RES/60/195 en -40 "A/HRC/RES/41/8 - -United Nations - -General Assembly - -Distr.: General" A/HRC/RES/41/8 en -41 "A/RES/72/30 - -Naciones Unidas - -Asamblea General - -Distr. general" A/RES/72/30 en -42 "A/RES/69/154 - -Nations Unies - -Distr. générale -22 janvier 2015 -" A/RES/69/154 en -43 "Nations Unies - -A/RES/64/179 -Distr. générale -26 mars 2010 - -Assemblée générale" A/RES/64/179 en -44 "Nations Unies - -Assemblée générale - -A/RES/56/125 -Distr. générale -25 janvier 2002" A/RES/56/125 en -45 "Nations Unies - -A/RES/63/143 - -Assemblée générale - -Distr. générale" A/RES/63/143 en -46 "Nations Unies - -A/RES/62/76 - -Assemblée générale - -Distr. générale" A/RES/62/76 en -47 "A/RES/70/146 - -Naciones Unidas - -Asamblea General - -Distr. general" A/RES/70/146 en -48 "Nations Unies - -A/RES/67/39 - -Assemblée générale - -Distr. générale" A/RES/67/39 en -49 "Nations Unies - -A/RES/65/72 - -Assemblée générale - -Distr. générale" A/RES/65/72 en -50 "A/RES/56/189 - -Naciones Unidas - -Asamblea General - -Distr. general" A/RES/56/189 en -51 "Nations Unies - -Assemblée générale - -A/RES/58/121 -Distr. générale -12 février 2004" A/RES/58/121 en -52 "A/RES/72/23 - -Nations Unies - -Assemblée générale - -Distr. générale" A/RES/72/23 en -53 "A/RES/72/99 - -United Nations - -General Assembly - -Distr.: General" A/RES/72/99 en -54 "Naciones Unidas - -Asamblea General - -A/RES/57/246 -Distr. general -7 de febrero de 2003" A/RES/57/246 en -55 "Naciones Unidas - -Asamblea General - -A/RES/64/30 -Distr. general -12 de enero de 2010" A/RES/64/30 en -56 "A/RES/73/166 - -United Nations - -General Assembly - -Distr.: General" A/RES/73/166 en -57 "Nations Unies - -Assemblée générale - -A/RES/62/236 -Distr. générale -20 février 2008" A/RES/62/236 en -58 "United Nations - -A/RES/70/247 - -General Assembly - -Distr.: General" A/RES/70/247 en -59 "Nations Unies - -A/RES/61/247 - -Assemblée générale - -Distr. générale" A/RES/61/247 en -60 "Naciones Unidas - -Asamblea General - -A/RES/70/180 -Distr. general -19 de febrero de 2016" A/RES/70/180 en -61 "A/RES/68/173 - -Naciones Unidas - -Distr. general -23 de enero de 2014 -" A/RES/68/173 en -62 "United Nations - -A/RES/62/32 - -General Assembly - -Distr.: General" A/RES/62/32 en -63 "A/RES/58/278 - -United Nations - -Distr.: General -3 March 2004 -" A/RES/58/278 en -64 "A/RES/70/147 - -Nations Unies - -Distr. générale -25 février 2016 -" A/RES/70/147 en -65 "A/RES/74/43 - -Naciones Unidas - -Asamblea General - -Distr. general" A/RES/74/43 en -66 "A/RES/70/25 - -Naciones Unidas - -Asamblea General - -Distr. general" A/RES/70/25 en -67 "A/RES/68/182 - -Naciones Unidas - -Distr. general -30 de enero de 2014 -" A/RES/68/182 en -68 "A/HRC/RES/32/7 - -United Nations - -General Assembly - -Distr.: General" A/HRC/RES/32/7 en -69 "United Nations - -General Assembly - -A/RES/59/70 -Distr.: General -17 December 2004" A/RES/59/70 en -70 "A/RES/64/4 - -United Nations - -General Assembly - -Distr.: General" A/RES/64/4 en -71 "Nations Unies - -Assemblée générale - -A/RES/58/281* -Distr. générale -11 janvier 2006" A/RES/58/281* en -72 "A/RES/69/108 - -Naciones Unidas - -Distr. general -17 de diciembre de 2014 -" A/RES/69/108 en -73 "A/RES/68/18 - -Naciones Unidas - -Distr. general -9 de diciembre de 2013 -" A/RES/68/18 en -74 "A/68/289 - -United Nations - -General Assembly - -Distr.: General" A/68/289 en -75 "A/RES/73/26 - -Naciones Unidas - -Asamblea General - -Distr. general" A/RES/73/26 en -76 "A/RES/71/154 - -Nations Unies - -Distr. générale -21 décembre 2016 -" A/RES/71/154 en -77 "A/RES/71/128 - -Nations Unies - -Distr. générale -25 janvier 2017 -" A/RES/71/128 en -78 "A/RES/62/78 - -Naciones Unidas - -Distr. general -8 de enero de 2008 -" A/RES/62/78 en -79 "A/RES/55/77 - -United Nations - -General Assembly - -Distr.: General" A/RES/55/77 en -80 "United Nations - -General Assembly - -A/RES/58/154 -Distr.: General -24 February 2004" A/RES/58/154 en -81 "A/RES/72/93 - -Naciones Unidas - -Asamblea General - -Distr. general" A/RES/72/93 en -82 "A/HRC/RES/42/11 - -Nations Unies - -Assemblée générale - -Distr. générale" A/HRC/RES/42/11 en -83 "A/RES/59/38 - -Naciones Unidas - -Asamblea General - -Distr. general" A/RES/59/38 en -84 "A/HRC/RES/42/24 - -United Nations - -General Assembly - -Distr.: General" A/HRC/RES/42/24 en -85 "A/HRC/RES/20/7 - -United Nations - -General Assembly - -Distr.: General" A/HRC/RES/20/7 en -86 "A/RES/68/185 - -United Nations - -Distr.: General -11 February 2014 -" A/RES/68/185 en -87 "A/RES/70/294 - -Nations Unies - -Distr. générale -11 août 2016 -" A/RES/70/294 en -88 "A/RES/73/141 - -Naciones Unidas - -Asamblea General - -Distr. general" A/RES/73/141 en -89 "A/RES/73/173 - -United Nations - -General Assembly - -Distr.: General" A/RES/73/173 en -90 "Naciones Unidas - -Asamblea General - -A/RES/70/256 -Distr. general -15 de abril de 2016" A/RES/70/256 en -91 "A/RES/61/278 - -United Nations - -Distr.: General -20 July 2007 -" A/RES/61/278 en -92 "A/RES/67/251 - -Nations Unies - -Distr. générale -25 juillet 2013 -" A/RES/67/251 en -93 "United Nations - -General Assembly - -A/RES/62/10 -Distr.: General -18 December 2007" A/RES/62/10 en -94 "A/RES/69/41* - -Naciones Unidas - -Distr. general -11 de diciembre de 2014 -" A/RES/69/41 en -95 "A/HRC/28/56 - -United Nations - -General Assembly - -Distr.: General" A/HRC/28/56 en -96 "A/HRC/RES/17/22 - -United Nations - -General Assembly - -Distr.: General" A/HRC/RES/17/22 en -97 "A/RES/61/20 - -Naciones Unidas - -Asamblea General - -Distr. general" A/RES/61/20 en -98 "A/RES/67/56* - -United Nations - -Distr.: General -4 January 2013 -" A/RES/67/56* en -99 "United Nations - -A/RES/67/55 - -General Assembly - -Distr.: General" A/RES/67/55 en diff --git a/src/extractors/text_to_text_extractor/labeled_data/judge_name.tsv b/src/extractors/text_to_text_extractor/labeled_data/judge_name.tsv deleted file mode 100644 index 74f80d5..0000000 --- a/src/extractors/text_to_text_extractor/labeled_data/judge_name.tsv +++ /dev/null @@ -1,290 +0,0 @@ - input output language -0 "Conclusion -Diego García-Sayán -Judge -Pablo Saavedra Alessandri -Secretary" Diego García-Sayán en -1 "Hernán Salgado-Pesantes -Judge -Secretary" Hernán Salgado-Pesantes en -2 "Alberto Pérez Pérez -Judge -Pablo Saavedra Alessandri -Secretary" Alberto Pérez Pérez en -3 "Antônio Augusto Cançado Trindade -Judge -Manuel E. Ventura Robles -Secretary" Antônio Augusto Cançado Trindade en -4 "To the last syllable of recorded time; -Antônio Augusto Cançado Trindade -Judge -Pablo Saavedra-Alessandri -Secretary" Antônio Augusto Cançado Trindade en -6 "REGARDING REPARATIONS -Cecilia Medina-Quiroga -Judge -Pablo Saavedra-Alessandri -Secretary" Cecilia Medina-Quiroga en -7 "Eduardo Ferrer Mac-Gregor Poisot -Judge -Pablo Saavedra Alessandri -Secretary" Eduardo Ferrer Mac-Gregor Poisot en -8 ", developed as from -, - as it -Antônio Augusto Cançado Trindade -Judge -Manuel E. Ventura-Robles -Secretary" Antônio Augusto Cançado Trindade en -9 "Sergio García-Ramírez -Judge -Manuel E. Ventura-Robles -Secretary" Sergio García-Ramírez en -10 "Sergio García-Ramírez -Judge -Manuel E. Ventura-Robles -Secretary" Sergio García-Ramírez en -11 "Sergio García-Ramírez -Judge -Secretary" Sergio García-Ramírez en -12 "Cf. -VIII. Final Considerations. -Antônio Augusto Cançado Trindade -Judge -Pablo Saavedra-Alessandri -Secretary" Antônio Augusto Cançado Trindade en -13 "Antônio Augusto Cançado Trindade -Judge -Manuel E. Ventura-Robles -Secretary" Antônio Augusto Cançado Trindade en -14 "Antônio A. Cançado Trindade -Judge" Antônio A. Cançado Trindade en -15 "Eduardo Vio Grossi -Judge -Pablo Saavedra Alessandri -Secretary" Eduardo Vio Grossi en -16 "She responded: -It was here already, long ago; -There is no remembrance of men of old, -Antônio Augusto Cançado Trindade -Judge -Pablo Saavedra-Alessandri -Secretary" Antônio Augusto Cançado Trindade en -17 "Manuel E. Ventura-Robles -Secretary -Carlos Vicente de Roux-Rengifo -Judge" Carlos Vicente de Roux-Rengifo en -18 ", developed as from -: thus, if one intends to -Antônio Augusto Cançado Trindade -Judge -Manuel E. Ventura-Robles -Secretary" Antônio Augusto Cançado Trindade en -19 "Antônio Augusto Cançado Trindade -Judge -Pablo Saavedra-Alessandri -Secretary" Antônio Augusto Cançado Trindade en -20 "Eduardo Ferrer Mac-Gregor Poisot -Judge -Pablo Saavedra Alessandri -Registrar" Eduardo Ferrer Mac-Gregor Poisot en -21 "Fernando Vidal-Ramírez -Judge -Secretary" Fernando Vidal-Ramírez en -22 "Antônio Augusto Cançado Trindade -Judge -Pablo Saavedra Alessandri -Secretary" Antônio Augusto Cançado Trindade en -23 "Eduardo Vio Grossi -Judge -Pablo Saavedra Alessandri -Secretary" Eduardo Vio Grossi en -24 "Antônio Augusto Cançado Trindade -Judge -Pablo Saavedra-Alessandri -Secretary" Antônio Augusto Cançado Trindade en -25 "Eduardo Vio Grossi -Judge -Pablo Saavedra Alessandri -Secretary" Eduardo Vio Grossi en -26 "Eduardo Ferrer Mac-Gregor Poisot -Judge -Pablo Saavedra Alessandri -Secretary" Eduardo Ferrer Mac-Gregor Poisot en -27 "Sergio García-Ramírez -Judge -Secretary" Sergio García-Ramírez en -28 "Eduardo Vio Grossi -Judge -Pablo Saavedra Alessandri -Secretary" Eduardo Vio Grossi en -29 "Antônio Augusto Cançado Trindade -Judge -Manuel E. Ventura-Robles -Secretary" Antônio Augusto Cançado Trindade en -30 "Antônio Augusto Cançado Trindade -Judge -Pablo Saavedra-Alessandri -Secretary" Antônio Augusto Cançado Trindade en -31 "Carlos Vicente de Roux-Rengifo -Judge -Manuel E. Ventura-Robles -Secretary" Carlos Vicente de Roux-Rengifo en -32 "Antônio Augusto Cançado Trindade -Judge -Emilia Segares Rodríguez -Deputy Secretary" Antônio Augusto Cançado Trindade en -33 "Carlos Vicente de Roux-Rengifo -Judge -Manuel E. Ventura-Robles -Secretary" Carlos Vicente de Roux-Rengifo en -34 "Sergio García Ramírez -Judge -Pablo Saavedra Alessandri -Secretary" Sergio García Ramírez en -35 "Pablo Saavedra-Alessandri -Secretary -Cecila Medina-Quiroga -Judge" Cecila Medina-Quiroga en -36 "D) Dangerousness of the agent -E) Pardon -Sergio García Ramírez -Judge -Pablo Saavedra Alessandri -Secretary" Sergio García Ramírez en -37 "Right to a Fair Trial -Alfonso Novales-Aguirre -Judge -Manuel E. Ventura-Robles -Secretary" Alfonso Novales-Aguirre en -38 "Pablo Saavedra-Alessandri -Secretary -Sergio García-Ramírez -Judge" Sergio García-Ramírez en -39 "Antônio Augusto Cançado Trindade -Judge -Pablo Saavedra-Alessandri -Secretary" Antônio Augusto Cançado Trindade en -40 "Antônio Augusto Cançado Trindade -Judge -Pablo Saavedra-Alessandri -Secretary" Antônio Augusto Cançado Trindade en -41 "Sergio García-Ramírez -Judge -Pablo Saavedra-Alessandri -Secretary" Sergio García-Ramírez en -42 "Sergio García-Ramírez -Judge -Pablo Saavedra Alessandri -Secretary" Sergio García-Ramírez en -43 "and that: -but also includes -Alberto Pérez Pérez -Judge -Pablo Saavedra Alessandri -Secretary" Alberto Pérez Pérez en -44 "Sergio García Ramírez -Judge -Pablo Saavedra Alessandri -Secretary" Sergio García Ramírez en -45 "VIII. Epilogue -Antônio Augusto Cançado Trindade -Judge -Pablo Saavedra Alessandri -Secretary" Antônio Augusto Cançado Trindade en -46 "Alberto Pérez Pérez -Judge -Pablo Saavedra Alessandri -Secretary" Alberto Pérez Pérez en -47 "Diego García-Sayan -Judge -Pablo Saavedra Alessandri -Secretary -Rhadys Abreu Blondet -Judge -Pablo Saavedra Alessandri -Secretary" "Diego García-Sayan -Rhadys Abreu Blondet" en -48 "Sergio García-Ramírez -Judge -Manuel E. Ventura-Robles -Secretary" Sergio García-Ramírez en -49 "Eduardo Ferrer Mac-Gregor Poisot -Judge -Pablo Saavedra Alessandri -Secretary" Eduardo Ferrer Mac-Gregor Poisot en -50 "Sergio García-Ramírez -Judge -Manuel E. Ventura-Robles -Secretary" Sergio García-Ramírez en -51 "Sergio García-Ramírez -Judge -Pablo Saavedra-Alessandri -Secretary" Sergio García-Ramírez en -52 "Justification -Alberto Pérez Pérez -Judge -Pablo Saavedra Alessandri -Secretary" Alberto Pérez Pérez en -53 "Diego García-Sayán -Judge -Pablo Saavedra Alessandri -Secretary" Diego García-Sayán en -54 "Diego García-Sayán -Judge -Pablo Saavedra Alessandri -Secretary" Diego García-Sayán en -55 "Pablo Saavedra Alessandri -Secretary -Eduardo Vio Grossi -Judge" Eduardo Vio Grossi en -56 "Pablo Saavedra Alessandri -Secretary -Margarette May Macaulay -Judge" Margarette May Macaulay en -57 "Sergio García Ramírez -Judge -Pablo Saavedra Alessandri -Secretary" Sergio García Ramírez en -58 "Antônio Augusto Cançado Trindade -Judge -Pablo Saavedra-Alessandri -Secretary" Antônio Augusto Cançado Trindade en -59 "Pablo Saavedra-Alessandri -Secretary -Hernán Salgado-Pesantes -Judge" Hernán Salgado-Pesantes en -60 "IV. -Conclusions -Alberto Pérez Pérez -Judge -Pablo Saavedra Alessandri -Secretary" Alberto Pérez Pérez en -61 "This does not mean to say that -This was justified -Eduardo Ferrer Mac-Gregor Poisot -Judge -Pablo Saavedra Alessandri -Secretary" Eduardo Ferrer Mac-Gregor Poisot en -62 "III. -Reasonable time -Sergio García Ramírez -Judge -Pablo Saavedra Alessandri -Secretary" Sergio García Ramírez en -63 "Sergio García Ramírez -Judge -Pablo Saavedra Alessandri -Secretary" Sergio García Ramírez en -64 "Alberto Pérez Pérez -Judge -Pablo Saavedra Alessandri -Secretary" Alberto Pérez Pérez en -65 "Eduardo Vio Grossi -Judge -Pablo Saavedra Alessandri -Registrar" Eduardo Vio Grossi en -66 ", - as -Antônio Augusto Cançado Trindade -Judge -Manuel E. Ventura-Robles -Secretary" Antônio Augusto Cançado Trindade en diff --git a/src/extractors/text_to_text_extractor/labeled_data/vote_english.tsv b/src/extractors/text_to_text_extractor/labeled_data/vote_english.tsv deleted file mode 100644 index be4570a..0000000 --- a/src/extractors/text_to_text_extractor/labeled_data/vote_english.tsv +++ /dev/null @@ -1,101 +0,0 @@ - input output language -0 [Adopted without a vote.] Adopted without a vote en -1 [Adopted by a recorded vote of 26 to 5, with 15 abstentions. The voting was as follows: Adopted by vote en -2 [Adopted without a vote.] Adopted without a vote en -3 [Adopted by a recorded vote of 19 to 6, with 21 abstentions. The voting was as follows: Adopted by vote en -4 [Adopted without a vote.] Adopted without a vote en -5 [Adopted by a recorded vote of 35 to 0, with 11 abstentions. The voting was as follows: Adopted by vote en -6 [Adopted without a vote.] Adopted without a vote en -7 [Adopted without a vote.] Adopted without a vote en -8 [Adopted without a vote.] Adopted without a vote en -9 [Adopted without a vote.] Adopted without a vote en -10 [Adopted without a vote.] Adopted without a vote en -11 [Adopted without a vote.] Adopted without a vote en -12 [Adopted without a vote.] Adopted without a vote en -13 [Adopted without a vote.] Adopted without a vote en -14 [Adopted by a recorded vote of 28 to 14, with 3 abstentions. The voting was as follows: Adopted by vote en -15 [Adopted by a recorded vote of 31 to 14, with 1 abstention. The voting was as follows: Adopted by vote en -16 [Adopted without a vote.] Adopted without a vote en -17 [Adopted by a recorded vote of 26 to 10, with 11 abstentions. The voting was as follows: Adopted by vote en -18 [Adopted without a vote.] Adopted without a vote en -19 [Adopted by a recorded vote of 19 to 5, with 23 abstentions. The voting was as follows: Adopted by vote en -20 [Adopted without a vote.] Adopted without a vote en -21 [Adopted without a vote.] Adopted without a vote en -22 [Adopted by a recorded vote of 27 to 4, with 15 abstentions. The voting was as follows: Adopted by vote en -23 [Adopted by a recorded vote of 34 to 4, with 8 abstentions. The voting was as follows: Adopted by vote en -24 [Adopted by a recorded vote of 41 to 3, with 2 abstentions. The voting was as follows: Adopted by vote en -25 [Adopted by a recorded vote of 43 to 2, with 1 abstention. The voting was as follows: Adopted by vote en -26 [Adopted by a recorded vote of 25 to 14, with 7 abstentions. The voting was as follows: Adopted by vote en -27 [Adopted by a recorded vote of 32 to 5, with 10 abstentions. The voting was as follows: Adopted by vote en -28 [Adopted without a vote.] Adopted without a vote en -29 [Adopted by a recorded vote of 21 to 7, with 19 abstentions. The voting was as follows: Adopted by vote en -30 [Adopted by a recorded vote of 27 to 4, with 16 abstentions. The voting was as follows: Adopted by vote en -31 [Adopted without a vote.] Adopted without a vote en -32 [Adopted without a vote.] Adopted without a vote en -33 [Adopted without a vote.] Adopted without a vote en -34 [Adopted without a vote.] Adopted without a vote en -35 [Adopted without a vote.] Adopted without a vote en -36 [Adopted by a recorded vote of 28 to 1, with 17 abstentions. The voting was as follows: Adopted by vote en -37 [Adopted without a vote.] Adopted without a vote en -38 [Adopted by a recorded vote of 28 to 15, with 3 abstentions. The voting was as follows: Adopted by vote en -39 [Adopted without a vote.] Adopted without a vote en -40 [Adopted without a vote.] Adopted without a vote en -41 [Adopted without a vote.] Adopted without a vote en -42 [Adopted without a vote.] Adopted without a vote en -43 [Adopted without a vote.] Adopted without a vote en -44 [Adopted without a vote.] Adopted without a vote en -45 [Adopted without a vote.] Adopted without a vote en -46 [Adopted without a vote.] Adopted without a vote en -47 [Adopted without a vote.] Adopted without a vote en -48 [Adopted by a recorded vote of 27 to 16, with 4 abstentions. The voting was as follows: Adopted by vote en -49 [Adopted by a recorded vote of 46 to 1, with no abstentions. The voting was as follows: Adopted by vote en -50 [Adopted without a vote.] Adopted without a vote en -51 [Adopted without a vote.] Adopted without a vote en -52 [Adopted without a vote.] Adopted without a vote en -53 [Adopted without a vote.] Adopted without a vote en -54 [Adopted without a vote.] Adopted without a vote en -55 [Adopted without a vote.] Adopted without a vote en -56 [Adopted by a recorded vote of 23 to 2, with 22 abstentions. The voting was as follows: Adopted by vote en -57 [Adopted without a vote.] Adopted without a vote en -58 [Adopted by a recorded vote of 29 to 4, with 14 abstentions. The voting was as follows: Adopted by vote en -59 [Adopted without a vote.] Adopted without a vote en -60 [Adopted without a vote.] Adopted without a vote en -61 [Adopted by a recorded vote of 45 to 1, with 1 abstention. The voting was as follows: Adopted by vote en -62 [Adopted without a vote.] Adopted without a vote en -63 [Adopted without a vote.] Adopted without a vote en -64 [Adopted without a vote.] Adopted without a vote en -65 [Adopted without a vote.] Adopted without a vote en -66 [Adopted by a recorded vote of 32 to 5, with 10 abstentions. The voting was as follows: Adopted by vote en -67 [Adopted without a vote.] Adopted without a vote en -68 [Adopted by a recorded vote of 34 to 2, with 11 abstentions. The voting was as follows: Adopted by vote en -69 [Adopted by a recorded vote of 28 to 0, with 19 abstentions. The voting was as follows: Adopted by vote en -70 [Adopted by a recorded vote of 27 to 7, with 13 abstentions. The voting was as follows: Adopted by vote en -71 [Adopted by a recorded vote of 22 to 11, with 14 abstentions. The voting was as follows: Adopted by vote en -72 [Adopted without a vote.] Adopted without a vote en -73 [Adopted by a recorded vote of 27 to 13, with 7 abstentions. The voting was as follows: Adopted by vote en -74 [Adopted without a vote.] Adopted without a vote en -75 [Adopted without a vote.] Adopted without a vote en -76 [Adopted without a vote.] Adopted without a vote en -77 [Adopted without a vote.] Adopted without a vote en -78 [Adopted without a vote.] Adopted without a vote en -79 [Adopted without a vote.] Adopted without a vote en -80 [Adopted by a recorded vote of 30 to 15, with 1 abstention. The voting was as follows: Adopted by vote en -81 [Adopted by a recorded vote of 31 to 11, with 4 abstentions. The voting was as follows: Adopted by vote en -82 [Adopted without a vote.] Adopted without a vote en -83 [Adopted without a vote.] Adopted without a vote en -84 [Adopted without a vote.] Adopted without a vote en -85 [Adopted without a vote.] Adopted without a vote en -86 [Adopted by a recorded vote of 32 to 15, with no abstentions. The voting was as follows: Adopted by vote en -87 [Adopted by a recorded vote of to 15, with no abstentions. The voting was as follows: Adopted by vote en -88 [Adopted by a recorded vote of 23 to 14, with 9 abstentions. The voting was as follows: Adopted by vote en -89 [Adopted by a recorded vote of 31 to 15, with 1 abstention. The voting was as follows: Adopted by vote en -90 [Adopted without a vote.] Adopted without a vote en -91 [Adopted without a vote.] Adopted without a vote en -92 [Adopted without a vote.] Adopted without a vote en -93 [Adopted without a vote.] Adopted without a vote en -94 [Adopted by a recorded vote of 22 to 6, with 19 abstentions. The voting was as follows: Adopted by vote en -95 [Adopted without a vote.] Adopted without a vote en -96 [Adopted without a vote.] Adopted without a vote en -97 [Adopted without a vote.] Adopted without a vote en -98 [Adopted by a recorded vote of 18 to 8, with 21 abstentions. The voting was as follows: Adopted by vote en -99 [Adopted by a recorded vote of 27 to 8, with 12 abstentions. The voting was as follows: Adopted by vote en diff --git a/src/extractors/text_to_text_extractor/labeled_data/year_multilingual.tsv b/src/extractors/text_to_text_extractor/labeled_data/year_multilingual.tsv deleted file mode 100644 index 92a3b5c..0000000 --- a/src/extractors/text_to_text_extractor/labeled_data/year_multilingual.tsv +++ /dev/null @@ -1,701 +0,0 @@ - input output language -0 "Naciones Unidas - -Asamblea General - -A/RES/71/214 -Distr. general -20 de enero de 2017" 2017 fr -1 "Naciones Unidas - -Asamblea General - -A/RES/60/142 -Distr. general -7 de febrero de 2006" 2006 fr -2 "A/RES/64/12 - -United Nations - -Distr.: General -22 December 2009 -" 2009 fr -3 "A/RES/68/149 - -Naciones Unidas - -Distr. general -12 de febrero de 2014 -" 2014 fr -4 "A/RES/68/32 - -United Nations - -Distr.: General -10 December 2013 -" 2013 fr -5 "United Nations - -General Assembly - -A/RES/58/236 -Distr.: General -25 February 2004" 2004 fr -6 "Naciones Unidas - -Asamblea General - -A/HRC/RES/38/2 -Distr. general -16 de julio de 2018" 2018 fr -7 "Nations Unies - -Assemblée générale - -A/RES/59/122 -Distr. générale -25 janvier 2005" 2005 fr -8 "A/RES/56/274 - -United Nations - -Distr.: General -23 April 2002 -" 2002 fr -9 "A/RES/67/146 - -Nations Unies - -Distr. générale -5 mars 2013 -" 2013 fr -10 "Naciones Unidas - -Asamblea General - -A/RES/58/142 -Distr. general -10 de febrero de 2004" 2004 fr -11 "Naciones Unidas - -Asamblea General - -A/RES/55/241 -Distr. general -10 de abril de 2001" 2001 fr -12 "United Nations - -General Assembly - -A/RES/56/51 -Distr.: General -15 February 2002" 2002 fr -13 "United Nations - -General Assembly - -A/RES/59/201 -Distr.: General -23 March 2005" 2005 fr -14 "Naciones Unidas - -Asamblea General - -A/RES/61/25 -Distr. general -2 de marzo de 2007" 2007 fr -15 "A/RES/65/23 - -United Nations - -Distr.: General -10 January 2011 -" 2011 fr -16 "United Nations - -General Assembly - -A/RES/56/172 -Distr.: General -26 February 2002" 2002 fr -17 "A/RES/67/300 - -United Nations - -Distr.: General -24 September 2013 -" 2013 fr -18 "A/RES/67/151 - -United Nations - -Distr.: General -6 March 2013 -" 2013 fr -19 "A/RES/56/72 - -United Nations - -Distr.: General -27 February 2002 -" 2002 fr -20 "Nations Unies - -Assemblée générale - -A/RES/60/144 -Distr. générale -14 février 2006" 2006 fr -21 "A/RES/67/245 - -Nations Unies - -Distr. générale -14 février 2013 -" 2013 fr -22 "United Nations - -General Assembly - -A/RES/58/275 -Distr.: General -8 January 2004" 2004 fr -23 "A/RES/63/152 - -Naciones Unidas - -Distr. general -11 de febrero de 2009 -" 2009 fr -24 "Nations Unies - -Assemblée générale - -A/RES/59/113 -Distr. générale -17 février 2005" 2005 fr -25 "A/RES/64/300 - -Naciones Unidas - -Distr. general -15 de octubre de 2010 -" 2010 fr -26 "Nations Unies - -Assemblée générale - -A/RES/57/262 -Distr. générale -28 février 2003" 2003 fr -27 "A/RES/68/83 - -United Nations - -Distr.: General -16 December 2013 -" 2013 fr -28 "A/RES/63/80 - -United Nations - -Distr.: General -13 January 2009 -" 2009 fr -29 "A/RES/64/187 - -Nations Unies - -Distr. générale -9 février 2010 -" 2010 fr -30 "A/RES/68/53 - -Naciones Unidas - -Distr. general -11 de diciembre de 2013 -" 2013 fr -31 "A/RES/65/160 - -United Nations - -Distr.: General -4 March 2011 -" 2011 fr -32 "Nations Unies - -Assemblée générale - -A/RES/64/138 -Distr. générale -16 février 2010" 2010 fr -33 "Naciones Unidas - -Asamblea General - -A/RES/56/153 -Distr. general -13 de febrero de 2002" 2002 fr -34 "Naciones Unidas - -Asamblea General - -A/RES/59/47 -Distr. general -16 de diciembre de 2004" 2004 fr -35 "Naciones Unidas - -Asamblea General - -A/RES/64/95 -Distr. general -19 de enero de 2010" 2010 fr -36 "A/RES/68/52 - -United Nations - -Distr.: General -11 December 2013 -" 2013 fr -37 "United Nations - -General Assembly - -A/RES/58/237 -Distr.: General -27 February 2004" 2004 fr -38 "A/RES/68/227 - -Nations Unies - -Distr. générale -29 janvier 2014 -" 2014 fr -39 "Naciones Unidas - -Asamblea General - -A/RES/65/179 -Distr. general -22 de marzo de 2011" 2011 fr -40 "A/RES/67/69 - -United Nations - -Distr.: General -11 December 2012 -" 2012 fr -41 "A/RES/67/299 - -Naciones Unidas - -Distr. general -1 de octubre de 2013 -" 2013 fr -42 "United Nations - -General Assembly - -A/RES/58/249 -Distr.: General -20 February 2004" 2004 fr -43 "Naciones Unidas - -Asamblea General - -A/RES/60/241 -Distr. general -15 de febrero de 2006" 2006 fr -44 "United Nations - -General Assembly - -A/HRC/26/31 -Distr.: General -1 April 2014" 2014 fr -45 "United Nations - -General Assembly - -A/RES/58/42 -Distr.: General -17 December 2003" 2003 fr -46 "Naciones Unidas - -Asamblea General - -A/RES/64/205 -Distr. general -11 de marzo de 2010" 2010 fr -47 "A/RES/70/93 A-B - -Nations Unies - -Distr. générale -15 décembre 2015 -" 2015 fr -48 "Nations Unies - -Assemblée générale - -A/RES/55/167 -Distr. générale -12 février 2001" 2001 fr -49 "Naciones Unidas - -Asamblea General - -A/RES/71/304 -Distr. general -18 de julio de 2017" 2017 fr -50 "Naciones Unidas - -Asamblea General - -A/RES/61/186 -Distr. general -25 de enero de 2007" 2007 fr -51 "A/RES/71/326 - -Nations Unies - -Distr. générale -28 septembre 2017 -" 2017 fr -52 "Naciones Unidas - -Asamblea General - -A/RES/64/276 -Distr. general -11 de agosto de 2010" 2010 fr -53 "A/RES/69/249 - -Naciones Unidas - -Distr. general -21 de enero de 2015 -" 2015 fr -54 "Nations Unies - -Assemblée générale - -A/RES/60/183 -Distr. générale -31 janvier 2006" 2006 fr -55 "A/RES/69/96 A-B - -Naciones Unidas - -Distr. general -16 de diciembre de 2014 -" 2014 fr -56 "Naciones Unidas - -Asamblea General - -A/RES/56/236 -Distr. general -24 de enero de 2002" 2002 fr -57 "Naciones Unidas - -Asamblea General - -A/RES/64/90 -Distr. general -19 de enero de 2010" 2010 fr -58 "Naciones Unidas - -Asamblea General - -A/RES/60/17 -Distr. general -8 de febrero de 2006" 2006 fr -59 "A/RES/67/110 - -United Nations - -Distr.: General -2 April 2013 -" 2013 fr -60 "Nations Unies - -A/RES/64/246 -Distr. générale -16 mars 2010 - -Assemblée générale" 2010 fr -61 "A/RES/69/14 - -Nations Unies - -Distr. générale -2 décembre 2014 -" 2014 fr -62 "Nations Unies - -Assemblée générale - -A/RES/56/17 -Distr. générale -21 décembre 2001" 2001 fr -63 "A/RES/63/256 - -Naciones Unidas - -Distr. general -19 de marzo de 2009 -" 2009 fr -64 "Nations Unies - -Assemblée générale - -A/RES/59/43 -Distr. générale -16 décembre 2004" 2004 fr -65 "A/RES/71/82 - -Nations Unies - -Distr. générale -16 décembre 2016 -" 2016 fr -66 "A/RES/70/257 - -United Nations - -Distr.: General -15 April 2016 -" 2016 fr -67 "Naciones Unidas - -Asamblea General - -A/RES/55/282 -Distr. general -28 de septiembre de 2001" 2001 fr -68 "Nations Unies - -A/RES/64/264 -Distr. générale -20 mai 2010 - -Assemblée générale" 2010 fr -69 "A/RES/70/44 - -United Nations - -Distr.: General -11 December 2015 -" 2015 fr -70 "Nations Unies - -Assemblée générale - -A/RES/61/164 -Distr. générale -21 février 2007" 2007 fr -71 "United Nations - -General Assembly - -A/RES/60/206 -Distr.: General -16 March 2006" 2006 fr -72 "A/RES/68/54 - -Nations Unies - -Distr. générale -11 décembre 2013 -" 2013 fr -73 "A/RES/71/164* - -Nations Unies - -Distr. générale -20 janvier 2017 -" 2017 fr -74 "Naciones Unidas - -Asamblea General - -A/RES/60/254 -Distr. general -8 de junio de 2006" 2006 fr -75 "A/RES/70/52 - -United Nations - -Distr.: General -11 December 2015 -" 2015 fr -76 "A/RES/63/48 - -United Nations - -Distr.: General -12 January 2009 -" 2009 fr -77 "United Nations - -General Assembly - -A/RES/60/220 -Distr.: General -31 March 2006" 2006 fr -78 "Naciones Unidas - -Asamblea General - -A/RES/61/210 -Distr. general -6 de marzo de 2007" 2007 fr -79 "A/RES/71/47 - -United Nations - -Distr.: General -12 December 2016 -" 2016 fr -80 "Nations Unies - -Assemblée générale - -A/HRC/RES/36/9 -Distr. générale -6 octobre 2017" 2017 fr -81 "A/RES/57/292 - -Nations Unies - -Distr. générale -13 février 2003 -" 2003 fr -82 "A/RES/68/94 - -Nations Unies - -Distr. générale -17 décembre 2013 -" 2013 fr -83 "A/RES/69/95 - -Nations Unies - -Distr. générale -16 décembre 2014 -" 2014 fr -84 "A/RES/63/190 - -United Nations - -Distr.: General -24 February 2009 -" 2009 fr -85 "A/RES/55/138 - -Nations Unies - -Distr. générale -22 février 2001 -" 2001 fr -86 "A/RES/71/270 - -Naciones Unidas - -Distr. general -11 de enero de 2017 -" 2017 fr -87 "A/RES/68/80 - -Naciones Unidas - -Distr. general -16 de diciembre de 2013 -" 2013 fr -88 "A/RES/63/84 - -Naciones Unidas - -Distr. general -13 de enero de 2009 -" 2009 fr -89 "United Nations - -General Assembly - -A/RES/61/219 -Distr.: General -13 March 2007" 2007 fr -90 "A/RES/64/283 - -Nations Unies - -Distr. générale -26 août 2010 -" 2010 fr -91 "A/RES/69/17 - -Naciones Unidas - -Distr. general -19 de diciembre de 2014 -" 2014 fr -92 "A/RES/67/237 - -Nations Unies - -Distr. générale -28 janvier 2013 -" 2013 fr -93 "Naciones Unidas - -Asamblea General - -A/RES/58/10 -Distr. general -19 de noviembre de 2003" 2003 fr -94 "A/RES/58/285 - -Naciones Unidas - -Distr. general -26 de abril de 2004 -" 2004 fr -95 "Nations Unies - -A/RES/65/274 -Distr. générale -28 juillet 2011 - -Assemblée générale" 2011 fr -96 "A/RES/58/125 - -Nations Unies - -Distr. générale -17 février 2004 -" 2004 fr -97 "Inter-American Convention on the Granting of Civil Rights to Women -(Signed at the Ninth International Conference of American States -Bogotá, Colombia, March 30-May 2, 1948) -The governments represented at the Ninth International Conference of American States, -Considering: -That the majority of the American Republics, inspired by lofty principles of justice, have -granted civil rights to women;" 1948 fr -98 "Nations Unies - -Assemblée générale - -A/RES/58/215 -Distr. générale -27 février 2004" 2004 fr -99 "United Nations - -General Assembly - -A/RES/60/188 -Distr.: General -17 February 2006" 2006 fr diff --git a/src/extractors/text_to_text_extractor/methods/DateParserMethod.py b/src/extractors/text_to_text_extractor/methods/DateParserMethod.py deleted file mode 100644 index 2ddf303..0000000 --- a/src/extractors/text_to_text_extractor/methods/DateParserMethod.py +++ /dev/null @@ -1,48 +0,0 @@ -import re - -from data.ExtractionData import ExtractionData -from data.PredictionSample import PredictionSample -from extractors.ToTextExtractorMethod import ToTextExtractorMethod -from dateparser.search import search_dates - - -class DateParserMethod(ToTextExtractorMethod): - - @staticmethod - def get_best_date(dates): - if not dates: - return None - - not_numbers_dates = [date for date in dates if re.search("[a-zA-Z]", date[0])] - if not_numbers_dates: - return not_numbers_dates[0][1] - - return dates[0][1] - - @staticmethod - def get_date(tags_texts: list[str], languages): - text = " ".join(tags_texts) - try: - dates = search_dates(text, languages=languages) - - if not dates: - dates = search_dates(text) - - return DateParserMethod.get_best_date(dates) - - except TypeError: - return None - except IndexError: - return None - - def train(self, extraction_data: ExtractionData): - languages = [x.labeled_data.language_iso for x in extraction_data.samples] - self.save_json("languages.json", list(set(languages))) - - def predict(self, predictions_samples: list[PredictionSample]) -> list[str]: - languages = self.load_json("languages.json") - predictions_dates = [ - self.get_date(prediction_sample.tags_texts, languages) for prediction_sample in predictions_samples - ] - predictions = [date.strftime("%Y-%m-%d") if date else "" for date in predictions_dates] - return predictions diff --git a/src/extractors/text_to_text_extractor/methods/DateParserWithBreaksMethod.py b/src/extractors/text_to_text_extractor/methods/DateParserWithBreaksMethod.py deleted file mode 100644 index 7864a9a..0000000 --- a/src/extractors/text_to_text_extractor/methods/DateParserWithBreaksMethod.py +++ /dev/null @@ -1,30 +0,0 @@ -from dateparser.search import search_dates - -from extractors.text_to_text_extractor.methods.DateParserMethod import DateParserMethod - - -class DateParserWithBreaksMethod(DateParserMethod): - @staticmethod - def get_date(tags_texts: list[str], languages): - text = " ".join(tags_texts) - text_with_breaks = "\n".join([text for text in tags_texts]) - - try: - dates = search_dates(text_with_breaks, languages=languages) - dates_without_breaks = search_dates(text, languages=languages) - - if not dates: - dates = list() - - if dates_without_breaks: - dates.extend(dates_without_breaks) - - if not dates: - dates = search_dates(text_with_breaks) - - return DateParserMethod.get_best_date(dates) - - except TypeError: - return None - except IndexError: - return None diff --git a/src/extractors/text_to_text_extractor/methods/InputWithoutSpaces.py b/src/extractors/text_to_text_extractor/methods/InputWithoutSpaces.py deleted file mode 100644 index 9d9bf34..0000000 --- a/src/extractors/text_to_text_extractor/methods/InputWithoutSpaces.py +++ /dev/null @@ -1,17 +0,0 @@ -from data.ExtractionData import ExtractionData -from data.PredictionSample import PredictionSample -from extractors.ToTextExtractorMethod import ToTextExtractorMethod - - -class InputWithoutSpaces(ToTextExtractorMethod): - - def train(self, extraction_data: ExtractionData): - self.save_json("best_method.json", True) - - @staticmethod - def trim_text(tag_texts: list[str]) -> str: - text = "".join(tag_texts) - return "".join(text.split()) - - def predict(self, predictions_samples: list[PredictionSample]) -> list[str]: - return [self.trim_text(x.tags_texts) for x in predictions_samples] diff --git a/src/extractors/text_to_text_extractor/methods/MT5TrueCaseEnglishSpanishMethod.py b/src/extractors/text_to_text_extractor/methods/MT5TrueCaseEnglishSpanishMethod.py deleted file mode 100644 index 7abaad3..0000000 --- a/src/extractors/text_to_text_extractor/methods/MT5TrueCaseEnglishSpanishMethod.py +++ /dev/null @@ -1,208 +0,0 @@ -import logging -import os -import shutil -from functools import lru_cache -from os.path import join, exists, dirname -from pathlib import Path - -import torch -import transformers -from huggingface_hub import hf_hub_download -import pandas as pd -import csv -from transformers.utils import logging as logging_hf -from transformers import AutoTokenizer, MT5ForConditionalGeneration - -from config import DATA_PATH, config_logger -from data.ExtractionData import ExtractionData -from data.PredictionSample import PredictionSample -from data.TrainingSample import TrainingSample -from extractors.ToTextExtractorMethod import ToTextExtractorMethod - -from extractors.text_to_text_extractor.methods.TrueCaser import TrueCaser -from extractors.text_to_text_extractor.methods.run_seq_2_seq import ( - ModelArguments, - DataTrainingArguments, - run, - T5TrainingArguments, -) - -transformers.logging.set_verbosity_error() -logging.getLogger("pytorch_pretrained_bert.tokenization").setLevel(logging.ERROR) -logging.getLogger("transformers.tokenization_utils").setLevel(logging.ERROR) -logging.getLogger("transformers.tokenization_utils_base").setLevel(logging.ERROR) - -logging_hf.set_verbosity(40) - - -class MT5TrueCaseEnglishSpanishMethod(ToTextExtractorMethod): - SCRIPT_PATH = os.path.dirname(os.path.realpath(__file__)) - - def get_model_path(self): - return str(join(self.get_path(), "model")) - - def get_max_length_path(self): - return Path(self.get_path(), "max_length_output") - - def get_max_input_length(self, extraction_data: ExtractionData): - tokenizer = AutoTokenizer.from_pretrained("HURIDOCS/mt5-small-spanish-es", cache_dir=self.get_cache_dir()) - texts = [self.extraction_identifier.run_name + ": " + " ".join(x.tags_texts) for x in extraction_data.samples] - tokens_number = [len(tokenizer(text)["input_ids"]) for text in texts] - input_length = min(int((max(tokens_number) + 5) * 1.5), 512) - config_logger.info(f"Max input length: {str(input_length)}") - return input_length - - def get_max_output_length(self, extraction_data: ExtractionData): - tokenizer = AutoTokenizer.from_pretrained("HURIDOCS/mt5-small-spanish-es", cache_dir=self.get_cache_dir()) - tokens_number = [len(tokenizer(" ".join(x.tags_texts))["input_ids"]) for x in extraction_data.samples] - output_length = min(int((max(tokens_number) + 5) * 1.5), 256) - config_logger.info(f"Max output length: {str(output_length)}") - return output_length - - def prepare_dataset(self, extraction_data: ExtractionData): - data_path = join(self.get_path(), "t5_transformers_data.csv") - - if exists(data_path): - os.remove(data_path) - - text_inputs = [" ".join(sample.tags_texts) for sample in extraction_data.samples] - text_target = [sample.labeled_data.label_text if sample.labeled_data else "" for sample in extraction_data.samples] - - data = [ - [str(index + 1), f"Extract: {text_input}", text_target] - for index, (text_input, text_target) in enumerate(zip(text_inputs, text_target)) - ] - - if not data: - return None - - df = pd.DataFrame(data) - df.columns = ["extraction_name", "input_with_prefix", "target"] - df["not_used"] = "" - - os.makedirs(dirname(data_path), exist_ok=True) - df.to_csv(data_path, quoting=csv.QUOTE_ALL) - return data_path - - def train(self, extraction_data: ExtractionData): - self.remove_method_data() - train_path = self.prepare_dataset(extraction_data) - - if not train_path: - return - - model_arguments = ModelArguments("HURIDOCS/mt5-small-spanish-es", cache_dir=self.get_cache_dir()) - output_length = self.get_max_output_length(extraction_data) - self.get_max_length_path().write_text(str(output_length)) - data_training_arguments = DataTrainingArguments( - train_file=train_path, - validation_file=train_path, - max_seq_length=self.get_max_input_length(extraction_data), - max_answer_length=output_length, - context_column="input_with_prefix", - answer_column="target", - question_column="not_used", - version_2_with_negative=False, - ) - - t5_training_arguments = T5TrainingArguments( - report_to=[], - predict_with_generate=True, - overwrite_output_dir=True, - output_dir=self.get_model_path(), - per_device_train_batch_size=1, - learning_rate=5e-4, - weight_decay=0.1, - do_train=True, - do_eval=True, - do_predict=False, - save_total_limit=2, - save_strategy="epoch", - evaluation_strategy="epoch", - load_best_model_at_end=True, - metric_for_best_model="f1", - early_stopping=True, - num_train_epochs=30, - early_stopping_patience=4, - log_level="error", - generation_max_length=output_length, - use_cpu=not torch.cuda.is_available(), - ) - - run(model_arguments, data_training_arguments, t5_training_arguments) - self.delete_checkpoints() - - @staticmethod - def get_cache_dir(): - return join(DATA_PATH, "cache", "HF") - - def exists_model(self): - return exists(self.get_model_path()) - - def predict(self, predictions_samples: list[PredictionSample]) -> list[str]: - texts = [" ".join(x.tags_texts) for x in predictions_samples] - - if not self.exists_model(): - return texts - - samples = [TrainingSample(tags_texts=sample.tags_texts) for sample in predictions_samples] - predict_data_path = self.prepare_dataset(ExtractionData(samples=samples)) - - if not predict_data_path: - return texts - - predictions = list() - tokenizer = AutoTokenizer.from_pretrained("HURIDOCS/mt5-small-spanish-es") - model = MT5ForConditionalGeneration.from_pretrained(self.get_model_path()) - device = torch.device("cuda:0" if torch.cuda.is_available() else "cpu") - model.to(device) - - max_length_predictions = int(self.get_max_length_path().read_text()) - config_logger.info(f"Max length predictions: {max_length_predictions}") - for input_text, text in zip(pd.read_csv(predict_data_path)["input_with_prefix"].tolist(), texts): - if not text.strip(): - predictions.append("") - continue - - input_ids = tokenizer(input_text, return_tensors="pt").to(device).input_ids - outputs = model.generate(input_ids, max_length=max_length_predictions) - predictions.append(tokenizer.decode(outputs[0])[6:-4]) - - return predictions - - @lru_cache(maxsize=1) - def get_true_case(self): - true_case_english_model_path = hf_hub_download( - repo_id="HURIDOCS/spanish-truecasing", - filename="english.dist", - revision="69558da13436cc2b29d7db92d704976e2a7ffe16", - cache_dir=join(DATA_PATH, "cache"), - ) - - true_case_spanish_model_path = hf_hub_download( - repo_id="HURIDOCS/spanish-truecasing", - filename="spanish.dist", - revision="69558da13436cc2b29d7db92d704976e2a7ffe16", - cache_dir=join(DATA_PATH, "cache"), - ) - - os.makedirs(join(DATA_PATH, "cache", "nltk_data"), exist_ok=True) - return TrueCaser(true_case_english_model_path), TrueCaser(true_case_spanish_model_path) - - def get_true_case_segment_text(self, semantic_extraction_data): - true_case_english, true_case_spanish = self.get_true_case() - - if semantic_extraction_data.language_iso == "en": - return true_case_english.get_true_case(self.get_text_from_pdf_tags(semantic_extraction_data.texts)) - - if semantic_extraction_data.language_iso == "es": - return true_case_spanish.get_true_case(self.get_text_from_pdf_tags(semantic_extraction_data.texts)) - - return self.get_text_from_pdf_tags(semantic_extraction_data.texts) - - def delete_checkpoints(self): - for file_name in os.listdir(self.get_model_path()): - if "checkpoint-" not in file_name: - continue - - shutil.rmtree(join(self.get_model_path(), file_name), ignore_errors=True) diff --git a/src/extractors/text_to_text_extractor/methods/RegexMethod.py b/src/extractors/text_to_text_extractor/methods/RegexMethod.py deleted file mode 100644 index 0522cac..0000000 --- a/src/extractors/text_to_text_extractor/methods/RegexMethod.py +++ /dev/null @@ -1,34 +0,0 @@ -import re - -from data.ExtractionData import ExtractionData -from data.PredictionSample import PredictionSample - -from tdda import * - -from extractors.ToTextExtractorMethod import ToTextExtractorMethod - - -class RegexMethod(ToTextExtractorMethod): - - def train(self, extraction_data: ExtractionData): - samples = [x.labeled_data.label_text for x in extraction_data.samples] - samples = [sample for sample in samples if sample] - regex_list = rexpy.extract(samples) - regex_list = [regex[1:-1] for regex in regex_list] - self.save_json("regex_list.json", regex_list) - - def predict(self, predictions_samples: list[PredictionSample]) -> list[str]: - predictions = [""] * len(predictions_samples) - regex_list = self.load_json("regex_list.json") - for regex in regex_list: - for index, prediction_sample in enumerate(predictions_samples): - if predictions[index]: - break - - text = " ".join(prediction_sample.tags_texts) - - match = re.search(regex, text) - if match: - predictions[index] = str(match.group()) - - return predictions diff --git a/src/extractors/text_to_text_extractor/methods/RegexSubtractionMethod.py b/src/extractors/text_to_text_extractor/methods/RegexSubtractionMethod.py deleted file mode 100644 index 529f59d..0000000 --- a/src/extractors/text_to_text_extractor/methods/RegexSubtractionMethod.py +++ /dev/null @@ -1,74 +0,0 @@ -import re - -from data.ExtractionData import ExtractionData -from data.PredictionSample import PredictionSample - -from tdda import * - -from extractors.ToTextExtractorMethod import ToTextExtractorMethod - - -class RegexSubtractionMethod(ToTextExtractorMethod): - - def train(self, extraction_data: ExtractionData): - front_subtraction = [ - self.get_first_subtraction_characters(" ".join(x.tags_texts), x.labeled_data.label_text) - for x in extraction_data.samples - ] - front_regex_list = rexpy.extract([x for x in front_subtraction if x]) - front_regex_list = [regex[:-1] for regex in front_regex_list] - - back_subtraction = [ - self.get_last_subtraction_characters(" ".join(x.tags_texts), x.labeled_data.label_text) - for x in extraction_data.samples - ] - back_regex_list = rexpy.extract([x for x in back_subtraction if x]) - back_regex_list = [regex[1:] for regex in back_regex_list] - - self.save_json("regex_subtraction_list.json", front_regex_list + back_regex_list) - - def predict(self, predictions_samples: list[PredictionSample]) -> list[str]: - regex_list = self.load_json("regex_subtraction_list.json") - predictions = [" ".join(x.tags_texts) for x in predictions_samples] - for i, prediction in enumerate(predictions): - for regex in regex_list: - matches = re.search(regex, prediction) - if matches and not matches.start(): - prediction = prediction[matches.end() :] - continue - if matches and matches.end() == len(prediction): - prediction = prediction[: matches.start()] - - predictions[i] = prediction - - return predictions - - @staticmethod - def get_first_subtraction_characters(segment_text: str, text: str): - if text not in segment_text: - return "" - - if text == segment_text: - return "" - - first_index = segment_text.find(text) - - if not first_index: - return "" - - return segment_text[:first_index] - - @staticmethod - def get_last_subtraction_characters(segment_text: str, text: str): - if text not in segment_text: - return "" - - if text == segment_text: - return "" - - first_index = segment_text.find(text) + len(text) - - if not first_index: - return "" - - return segment_text[first_index:] diff --git a/src/extractors/text_to_text_extractor/methods/SameInputOutputMethod.py b/src/extractors/text_to_text_extractor/methods/SameInputOutputMethod.py deleted file mode 100644 index 5b7694b..0000000 --- a/src/extractors/text_to_text_extractor/methods/SameInputOutputMethod.py +++ /dev/null @@ -1,17 +0,0 @@ -from data.ExtractionData import ExtractionData -from data.PredictionSample import PredictionSample -from extractors.ToTextExtractorMethod import ToTextExtractorMethod - - -class SameInputOutputMethod(ToTextExtractorMethod): - - def train(self, extraction_data: ExtractionData): - pass - - @staticmethod - def trim_text(tag_texts: list[str]) -> str: - text = " ".join(tag_texts) - return " ".join(text.split()) - - def predict(self, predictions_samples: list[PredictionSample]) -> list[str]: - return [self.trim_text(x.tags_texts) for x in predictions_samples] diff --git a/src/extractors/text_to_text_extractor/methods/TrueCaser.py b/src/extractors/text_to_text_extractor/methods/TrueCaser.py deleted file mode 100644 index 6fd8180..0000000 --- a/src/extractors/text_to_text_extractor/methods/TrueCaser.py +++ /dev/null @@ -1,139 +0,0 @@ -import math -import pickle -import re -import string - -import nltk -from nltk.tokenize import word_tokenize -from nltk.tokenize.treebank import TreebankWordDetokenizer - - -class TrueCaser(object): - def __init__(self, dist_file_path): - nltk.download("punkt") - with open(dist_file_path, "rb") as distributions_file: - pickle_dict = pickle.load(distributions_file) - self.uni_dist = pickle_dict["uni_dist"] - self.backward_bi_dist = pickle_dict["backward_bi_dist"] - self.forward_bi_dist = pickle_dict["forward_bi_dist"] - self.trigram_dist = pickle_dict["trigram_dist"] - self.word_casing_lookup = pickle_dict["word_casing_lookup"] - self.detknzr = TreebankWordDetokenizer() - - def get_score(self, prev_token, possible_token, next_token): - pseudo_count = 5.0 - - # Get Unigram Score - numerator = self.uni_dist[possible_token] + pseudo_count - denominator = 0 - for alternativeToken in self.word_casing_lookup[possible_token.lower()]: - denominator += self.uni_dist[alternativeToken] + pseudo_count - - unigram_score = numerator / denominator - - # Get Backward Score - bigram_backward_score = 1 - if prev_token is not None: - key = prev_token + "_" + possible_token - numerator = self.backward_bi_dist[key] + pseudo_count - denominator = 0 - for alternativeToken in self.word_casing_lookup[possible_token.lower()]: - key = prev_token + "_" + alternativeToken - denominator += self.backward_bi_dist[key] + pseudo_count - - bigram_backward_score = numerator / denominator - - # Get Forward Score - bigram_forward_score = 1 - if next_token is not None: - next_token = next_token.lower() # Ensure it is lower case - key = possible_token + "_" + next_token - numerator = self.forward_bi_dist[key] + pseudo_count - denominator = 0 - for alternativeToken in self.word_casing_lookup[possible_token.lower()]: - key = alternativeToken + "_" + next_token - denominator += self.forward_bi_dist[key] + pseudo_count - - bigram_forward_score = numerator / denominator - - # Get Trigram Score - trigram_score = 1 - if prev_token is not None and next_token is not None: - next_token = next_token.lower() # Ensure it is lower case - trigram_key = prev_token + "_" + possible_token + "_" + next_token - numerator = self.trigram_dist[trigram_key] + pseudo_count - denominator = 0 - for alternativeToken in self.word_casing_lookup[possible_token.lower()]: - trigram_key = prev_token + "_" + alternativeToken + "_" + next_token - denominator += self.trigram_dist[trigram_key] + pseudo_count - - trigram_score = numerator / denominator - - result = ( - math.log(unigram_score) - + math.log(bigram_backward_score) - + math.log(bigram_forward_score) - + math.log(trigram_score) - ) - - return result - - @staticmethod - def first_token_case(raw): - return raw.capitalize() - - @staticmethod - def upper_replacement(match): - return ". " + match.group(0)[-1].upper() - - def get_true_case(self, sentence, out_of_vocabulary_token_option="title"): - tokens = word_tokenize(sentence) - tokens_true_case = self.get_true_case_from_tokens(tokens, out_of_vocabulary_token_option) - text = self.detknzr.detokenize(tokens_true_case) - text = re.sub(r" \. .", self.upper_replacement, text) - return text - - def get_true_case_from_tokens(self, tokens, out_of_vocabulary_token_option="title"): - tokens_true_case = [] - - if not len(tokens): - return tokens_true_case - - for token_idx, token in enumerate(tokens): - if token in string.punctuation or token.isdigit(): - tokens_true_case.append(token) - continue - - token = token.lower() - if token not in self.word_casing_lookup: # Token out of vocabulary - if out_of_vocabulary_token_option == "title": - tokens_true_case.append(token.title()) - elif out_of_vocabulary_token_option == "capitalize": - tokens_true_case.append(token.capitalize()) - elif out_of_vocabulary_token_option == "lower": - tokens_true_case.append(token.lower()) - else: - tokens_true_case.append(token) - continue - - if len(self.word_casing_lookup[token]) == 1: - tokens_true_case.append(list(self.word_casing_lookup[token])[0]) - continue - - prev_token = tokens_true_case[token_idx - 1] if token_idx > 0 else None - next_token = tokens[token_idx + 1] if token_idx < len(tokens) - 1 else None - - best_token = None - highest_score = float("-inf") - - for possible_token in self.word_casing_lookup[token]: - score = self.get_score(prev_token, possible_token, next_token) - - if score > highest_score: - best_token = possible_token - highest_score = score - - tokens_true_case.append(best_token) - - tokens_true_case[0] = self.first_token_case(tokens_true_case[0]) - return tokens_true_case diff --git a/src/extractors/text_to_text_extractor/methods/run_seq_2_seq.py b/src/extractors/text_to_text_extractor/methods/run_seq_2_seq.py deleted file mode 100644 index 1663cfe..0000000 --- a/src/extractors/text_to_text_extractor/methods/run_seq_2_seq.py +++ /dev/null @@ -1,686 +0,0 @@ -#!/usr/bin/env python -# coding=utf-8 -# Copyright 2021 The HuggingFace Team All rights reserved. -# -# Licensed under the Apache License, Version 2.0 (the "License"); -# you may not use this file except in compliance with the License. -# You may obtain a copy of the License at -# -# http://www.apache.org/licenses/LICENSE-2.0 -# -# Unless required by applicable law or agreed to in writing, software -# distributed under the License is distributed on an "AS IS" BASIS, -# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. -# See the License for the specific language governing permissions and -# limitations under the License. -""" -Fine-tuning the library's seq2seq models for question answering using the 🤗 Seq2SeqTrainer. - -""" -# You can also adapt this script on your own question answering task. Pointers for this are left as comments. - -import logging -import os -import sys -from dataclasses import dataclass, field -from typing import Optional, Tuple - -import datasets -import numpy as np -from datasets import load_dataset - -import evaluate -import transformers -from evaluate.utils.file_utils import DownloadConfig - -from transformers import ( - AutoConfig, - AutoModelForSeq2SeqLM, - AutoTokenizer, - DataCollatorForSeq2Seq, - set_seed, - EarlyStoppingCallback, - Seq2SeqTrainingArguments, - add_start_docstrings, -) -from transformers.trainer_utils import EvalLoopOutput, EvalPrediction, get_last_checkpoint -from transformers.utils import check_min_version -from transformers.utils.versions import require_version - -from extractors.text_to_text_extractor.methods.trainer_seq2seq_qa import QuestionAnsweringSeq2SeqTrainer - -# Will error if the minimal version of Transformers is not installed. Remove at your own risks. -check_min_version("4.22.0.dev0") - -require_version("datasets>=1.8.0", "To fix: pip install -r examples/pytorch/question-answering/requirements.txt") - -logger = logging.getLogger(__name__) - - -@dataclass -class ModelArguments: - """ - Arguments pertaining to which model/config/tokenizer we are going to fine-tune from. - """ - - model_name_or_path: str = field( - metadata={"help": "Path to pretrained model or model identifier from huggingface.co/models"} - ) - config_name: Optional[str] = field( - default=None, metadata={"help": "Pretrained config name or path if not the same as model_name"} - ) - tokenizer_name: Optional[str] = field( - default=None, metadata={"help": "Pretrained tokenizer name or path if not the same as model_name"} - ) - cache_dir: Optional[str] = field( - default=None, - metadata={"help": "Path to directory to store the pretrained models downloaded from huggingface.co"}, - ) - use_fast_tokenizer: bool = field( - default=True, - metadata={"help": "Whether to use one of the fast tokenizer (backed by the tokenizers library) or not."}, - ) - model_revision: str = field( - default="main", - metadata={"help": "The specific model version to use (can be a branch name, tag name or commit id)."}, - ) - use_auth_token: bool = field( - default=False, - metadata={ - "help": ( - "Will use the token generated when running `huggingface-cli login` (necessary to use this script " - "with private models)." - ) - }, - ) - - -@dataclass -class DataTrainingArguments: - """ - Arguments pertaining to what data we are going to input our model for training and eval. - """ - - dataset_name: Optional[str] = field( - default=None, metadata={"help": "The name of the dataset to use (via the datasets library)."} - ) - dataset_config_name: Optional[str] = field( - default=None, metadata={"help": "The configuration name of the dataset to use (via the datasets library)."} - ) - context_column: Optional[str] = field( - default="context", - metadata={"help": "The name of the column in the datasets containing the contexts (for question answering)."}, - ) - question_column: Optional[str] = field( - default="question", - metadata={"help": "The name of the column in the datasets containing the questions (for question answering)."}, - ) - answer_column: Optional[str] = field( - default="answers", - metadata={"help": "The name of the column in the datasets containing the answers (for question answering)."}, - ) - train_file: Optional[str] = field(default=None, metadata={"help": "The input training data file (a text file)."}) - validation_file: Optional[str] = field( - default=None, - metadata={"help": "An optional input evaluation data file to evaluate the perplexity on (a text file)."}, - ) - test_file: Optional[str] = field( - default=None, - metadata={"help": "An optional input test data file to evaluate the perplexity on (a text file)."}, - ) - overwrite_cache: bool = field(default=False, metadata={"help": "Overwrite the cached training and evaluation sets"}) - preprocessing_num_workers: Optional[int] = field( - default=None, - metadata={"help": "The number of processes to use for the preprocessing."}, - ) - max_seq_length: int = field( - default=384, - metadata={ - "help": ( - "The maximum total input sequence length after tokenization. Sequences longer " - "than this will be truncated, sequences shorter will be padded." - ) - }, - ) - max_answer_length: int = field( - default=30, - metadata={ - "help": ( - "The maximum length of an answer that can be generated. This is needed because the start " - "and end predictions are not conditioned on one another." - ) - }, - ) - val_max_answer_length: Optional[int] = field( - default=None, - metadata={ - "help": ( - "The maximum total sequence length for validation target text after tokenization. Sequences longer " - "than this will be truncated, sequences shorter will be padded. Will default to `max_answer_length`." - "This argument is also used to override the ``max_length`` param of ``model.generate``, which is used " - "during ``evaluate`` and ``predict``." - ) - }, - ) - pad_to_max_length: bool = field( - default=True, - metadata={ - "help": ( - "Whether to pad all samples to `max_seq_length`. If False, will pad the samples dynamically when" - " batching to the maximum length in the batch (which can be faster on GPU but will be slower on TPU)." - ) - }, - ) - max_train_samples: Optional[int] = field( - default=None, - metadata={ - "help": ( - "For debugging purposes or quicker training, truncate the number of training examples to this " - "value if set." - ) - }, - ) - max_eval_samples: Optional[int] = field( - default=None, - metadata={ - "help": ( - "For debugging purposes or quicker training, truncate the number of evaluation examples to this " - "value if set." - ) - }, - ) - max_predict_samples: Optional[int] = field( - default=None, - metadata={ - "help": ( - "For debugging purposes or quicker training, truncate the number of prediction examples to this " - "value if set." - ) - }, - ) - version_2_with_negative: bool = field( - default=False, metadata={"help": "If true, some of the examples do not have an answer."} - ) - null_score_diff_threshold: float = field( - default=0.0, - metadata={ - "help": ( - "The threshold used to select the null answer: if the best answer has a score that is less than " - "the score of the null answer minus this threshold, the null answer is selected for this example. " - "Only useful when `version_2_with_negative=True`." - ) - }, - ) - doc_stride: int = field( - default=128, - metadata={"help": "When splitting up a long document into chunks, how much stride to take between chunks."}, - ) - n_best_size: int = field( - default=20, - metadata={"help": "The total number of n-best predictions to generate when looking for an answer."}, - ) - num_beams: Optional[int] = field( - default=None, - metadata={ - "help": ( - "Number of beams to use for evaluation. This argument will be passed to ``model.generate``, " - "which is used during ``evaluate`` and ``predict``." - ) - }, - ) - ignore_pad_token_for_loss: bool = field( - default=True, - metadata={"help": "Whether to ignore the tokens corresponding to padded labels in the loss computation or not."}, - ) - - def __post_init__(self): - if self.dataset_name is None and self.train_file is None and self.validation_file is None and self.test_file is None: - raise ValueError("Need either a dataset name or a training/validation file/test_file.") - else: - if self.train_file is not None: - extension = self.train_file.split(".")[-1] - assert extension in ["csv", "json"], "`train_file` should be a csv or a json file." - if self.validation_file is not None: - extension = self.validation_file.split(".")[-1] - assert extension in ["csv", "json"], "`validation_file` should be a csv or a json file." - if self.test_file is not None: - extension = self.test_file.split(".")[-1] - assert extension in ["csv", "json"], "`test_file` should be a csv or a json file." - if self.val_max_answer_length is None: - self.val_max_answer_length = self.max_answer_length - - -@dataclass -@add_start_docstrings(Seq2SeqTrainingArguments.__doc__) -class T5TrainingArguments(Seq2SeqTrainingArguments): - """ - Args: - early_stopping (`bool`): - Whether early stopping is used or not. - early_stopping_patience (`int`): - Use with `metric_for_best_model` to stop training when the specified metric worsens for - `early_stopping_patience` evaluation calls. - """ - - early_stopping: bool = field(default=False, metadata={"help": "Whether early stopping is used or not"}) - early_stopping_patience: int = field(default=0, metadata={"help": "List of TrainerCallback"}) - - -def run(model_args: ModelArguments, data_args: DataTrainingArguments, training_args: T5TrainingArguments): - # Setup logging - logging.basicConfig( - format="%(asctime)s - %(levelname)s - %(name)s - %(message)s", - datefmt="%m/%d/%Y %H:%M:%S", - handlers=[logging.StreamHandler(sys.stdout)], - ) - - log_level = training_args.get_process_log_level() - logger.setLevel(log_level) - datasets.utils.logging.set_verbosity(log_level) - transformers.utils.logging.set_verbosity(log_level) - transformers.utils.logging.enable_default_handler() - transformers.utils.logging.enable_explicit_format() - - # Log on each process the small summary: - logger.warning( - f"Process rank: {training_args.local_rank}, device: {training_args.device}, n_gpu: {training_args.n_gpu}" - + f"distributed training: {bool(training_args.local_rank != -1)}, 16-bits training: {training_args.fp16}" - ) - logger.info(f"Training/evaluation parameters {training_args}") - - # Detecting last checkpoint. - last_checkpoint = None - if os.path.isdir(training_args.output_dir) and training_args.do_train and not training_args.overwrite_output_dir: - last_checkpoint = get_last_checkpoint(training_args.output_dir) - if last_checkpoint is None and len(os.listdir(training_args.output_dir)) > 0: - raise ValueError( - f"Output directory ({training_args.output_dir}) already exists and is not empty. " - "Use --overwrite_output_dir to overcome." - ) - elif last_checkpoint is not None and training_args.resume_from_checkpoint is None: - logger.info( - f"Checkpoint detected, resuming training at {last_checkpoint}. To avoid this behavior, change " - "the `--output_dir` or add `--overwrite_output_dir` to train from scratch." - ) - - # Set seed before initializing model. - set_seed(training_args.seed) - - # Get the datasets: you can either provide your own CSV/JSON/TXT training and evaluation files (see below) - # or just provide the name of one of the public datasets available on the hub at https://huggingface.co/datasets/ - # (the dataset will be downloaded automatically from the datasets Hub). - # - # For CSV/JSON files, this script will use the column called 'text' or the first column if no column called - # 'text' is found. You can easily tweak this behavior (see below). - # - # In distributed training, the load_dataset function guarantee that only one local process can concurrently - # download the dataset. - if data_args.dataset_name is not None: - # Downloading and loading a dataset from the hub. - raw_datasets = load_dataset(data_args.dataset_name, data_args.dataset_config_name, cache_dir=model_args.cache_dir) - else: - data_files = {} - if data_args.train_file is not None: - data_files["train"] = data_args.train_file - extension = data_args.train_file.split(".")[-1] - - if data_args.validation_file is not None: - data_files["validation"] = data_args.validation_file - extension = data_args.validation_file.split(".")[-1] - if data_args.test_file is not None: - data_files["test"] = data_args.test_file - extension = data_args.test_file.split(".")[-1] - raw_datasets = load_dataset(extension, data_files=data_files, cache_dir=model_args.cache_dir) - # See more about loading any type of standard or custom dataset (from files, python dict, pandas DataFrame, etc) at - # https://huggingface.co/docs/datasets/loading_datasets.html. - - # Load pretrained model and tokenizer - # - # Distributed training: - # The .from_pretrained methods guarantee that only one local process can concurrently - # download model & vocab. - config = AutoConfig.from_pretrained( - model_args.config_name if model_args.config_name else model_args.model_name_or_path, - cache_dir=model_args.cache_dir, - revision=model_args.model_revision, - use_auth_token=True if model_args.use_auth_token else None, - ) - tokenizer = AutoTokenizer.from_pretrained( - model_args.tokenizer_name if model_args.tokenizer_name else model_args.model_name_or_path, - cache_dir=model_args.cache_dir, - use_fast=True, - revision=model_args.model_revision, - use_auth_token=True if model_args.use_auth_token else None, - ) - model = AutoModelForSeq2SeqLM.from_pretrained( - model_args.model_name_or_path, - from_tf=bool(".ckpt" in model_args.model_name_or_path), - config=config, - cache_dir=model_args.cache_dir, - revision=model_args.model_revision, - use_auth_token=True if model_args.use_auth_token else None, - ) - - model.resize_token_embeddings(len(tokenizer)) - - if model.config.decoder_start_token_id is None: - raise ValueError("Make sure that `config.decoder_start_token_id` is correctly defined") - - # Preprocessing the datasets. - # We need to generate and tokenize inputs and targets. - if training_args.do_train: - column_names = raw_datasets["train"].column_names - elif training_args.do_eval: - column_names = raw_datasets["validation"].column_names - elif training_args.do_predict: - column_names = raw_datasets["test"].column_names - else: - logger.info("There is nothing to do. Please pass `do_train`, `do_eval` and/or `do_predict`.") - return - - # Get the column names for input/target. - question_column = data_args.question_column - context_column = data_args.context_column - answer_column = data_args.answer_column - - # Temporarily set max_answer_length for training. - max_answer_length = data_args.max_answer_length - padding = "max_length" if data_args.pad_to_max_length else False - - if training_args.label_smoothing_factor > 0 and not hasattr(model, "prepare_decoder_input_ids_from_labels"): - logger.warning( - "label_smoothing is enabled but the `prepare_decoder_input_ids_from_labels` method is not defined for" - f"`{model.__class__.__name__}`. This will lead to loss being calculated twice and will take up more memory" - ) - - if data_args.max_seq_length > tokenizer.model_max_length: - logger.warning( - f"The max_seq_length passed ({data_args.max_seq_length}) is larger than the maximum length for the" - f"model ({tokenizer.model_max_length}). Using max_seq_length={tokenizer.model_max_length}." - ) - max_seq_length = min(data_args.max_seq_length, tokenizer.model_max_length) - - def preprocess_squad_batch( - examples, - question_column: str, - context_column: str, - answer_column: str, - ) -> Tuple[list[str], list[str]]: - questions = examples[question_column] - contexts = examples[context_column] - answers = examples[answer_column] - - def generate_input(_question, _context): - return _context.lstrip() - - inputs = [generate_input(question, context) for question, context in zip(questions, contexts)] - # targets = [answer["text"][0] if len(answer["text"]) > 0 else "" for answer in answers] - targets = answers - - inputs = [str(x) for x in inputs] - targets = [str(x) for x in targets] - - return inputs, targets - - def preprocess_function(examples): - inputs, targets = preprocess_squad_batch(examples, question_column, context_column, answer_column) - - model_inputs = tokenizer(inputs, max_length=max_seq_length, padding=padding, truncation=True) - # Tokenize targets with text_target=... - labels = tokenizer(text_target=targets, max_length=max_answer_length, padding=padding, truncation=True) - - # If we are padding here, replace all tokenizer.pad_token_id in the labels by -100 when we want to ignore - # padding in the loss. - if padding == "max_length" and data_args.ignore_pad_token_for_loss: - labels["input_ids"] = [ - [(a_label if a_label != tokenizer.pad_token_id else -100) for a_label in label] - for label in labels["input_ids"] - ] - - model_inputs["labels"] = labels["input_ids"] - return model_inputs - - # Validation preprocessing - def preprocess_validation_function(examples): - inputs, targets = preprocess_squad_batch(examples, question_column, context_column, answer_column) - - model_inputs = tokenizer( - inputs, - max_length=max_seq_length, - padding=padding, - truncation=True, - #### HERE - coment out this line - # return_overflowing_tokens=True, - #### - return_offsets_mapping=True, - ) - - # Setup the tokenizer for targets - # # Tokenize targets with the `text_target` keyword argument - # labels = tokenizer(text_target=targets, max_length=max_answer_length, padding=padding, truncation=True) - with tokenizer.as_target_tokenizer(): - labels = tokenizer(targets, max_length=max_answer_length, padding=padding, truncation=True) - - # Since one example might give us several features if it has a long context, we need a map from a feature to - # its corresponding example. This key gives us just that. - # sample_mapping = model_inputs.pop("overflow_to_sample_mapping") - sample_mapping = list(range(len(model_inputs["input_ids"]))) - - # For evaluation, we will need to convert our predictions to substrings of the context, so we keep the - # corresponding example_id and we will store the offset mappings. - model_inputs["example_id"] = [] - - for i in range(len(model_inputs["input_ids"])): - # One example can give several spans, this is the index of the example containing this span of text. - sample_index = sample_mapping[i] - model_inputs["example_id"].append(examples["extraction_name"][sample_index]) - - # If we are padding here, replace all tokenizer.pad_token_id in the labels by -100 when we want to ignore - # padding in the loss. - if padding == "max_length" and data_args.ignore_pad_token_for_loss: - labels["input_ids"] = [ - [(l if l != tokenizer.pad_token_id else -100) for l in label] for label in labels["input_ids"] - ] - - model_inputs["labels"] = labels["input_ids"] - return model_inputs - - if training_args.do_train: - if "train" not in raw_datasets: - raise ValueError("--do_train requires a train dataset") - train_dataset = raw_datasets["train"] - if data_args.max_train_samples is not None: - # We will select sample from whole data if agument is specified - max_train_samples = min(len(train_dataset), data_args.max_train_samples) - train_dataset = train_dataset.select(range(max_train_samples)) - # Create train feature from dataset - with training_args.main_process_first(desc="train dataset map pre-processing"): - train_dataset = train_dataset.map( - preprocess_function, - batched=True, - num_proc=data_args.preprocessing_num_workers, - remove_columns=column_names, - load_from_cache_file=not data_args.overwrite_cache, - desc="Running tokenizer on train dataset", - ) - if data_args.max_train_samples is not None: - # Number of samples might increase during Feature Creation, We select only specified max samples - max_train_samples = min(len(train_dataset), data_args.max_train_samples) - train_dataset = train_dataset.select(range(max_train_samples)) - - if training_args.do_eval: - if "validation" not in raw_datasets: - raise ValueError("--do_eval requires a validation dataset") - eval_examples = raw_datasets["validation"] - if data_args.max_eval_samples is not None: - # We will select sample from whole data - max_eval_samples = min(len(eval_examples), data_args.max_eval_samples) - eval_examples = eval_examples.select(range(max_eval_samples)) - # Validation Feature Creation - with training_args.main_process_first(desc="validation dataset map pre-processing"): - eval_dataset = eval_examples.map( - preprocess_validation_function, - batched=True, - num_proc=data_args.preprocessing_num_workers, - remove_columns=column_names, - load_from_cache_file=not data_args.overwrite_cache, - desc="Running tokenizer on validation dataset", - ) - if data_args.max_eval_samples is not None: - # During Feature creation dataset samples might increase, we will select required samples again - max_eval_samples = min(len(eval_dataset), data_args.max_eval_samples) - eval_dataset = eval_dataset.select(range(max_eval_samples)) - - if training_args.do_predict: - if "test" not in raw_datasets: - raise ValueError("--do_predict requires a test dataset") - predict_examples = raw_datasets["test"] - if data_args.max_predict_samples is not None: - # We will select sample from whole data - predict_examples = predict_examples.select(range(data_args.max_predict_samples)) - # Predict Feature Creation - with training_args.main_process_first(desc="prediction dataset map pre-processing"): - predict_dataset = predict_examples.map( - preprocess_validation_function, - batched=True, - num_proc=data_args.preprocessing_num_workers, - remove_columns=column_names, - load_from_cache_file=not data_args.overwrite_cache, - desc="Running tokenizer on prediction dataset", - ) - if data_args.max_predict_samples is not None: - # During Feature creation dataset samples might increase, we will select required samples again - max_predict_samples = min(len(predict_dataset), data_args.max_predict_samples) - predict_dataset = predict_dataset.select(range(max_predict_samples)) - - # Data collator - label_pad_token_id = -100 if data_args.ignore_pad_token_for_loss else tokenizer.pad_token_id - data_collator = DataCollatorForSeq2Seq( - tokenizer, - model=model, - label_pad_token_id=label_pad_token_id, - pad_to_multiple_of=8 if training_args.fp16 else None, - ) - - # metric = evaluate.load("squad_v2" if data_args.version_2_with_negative else "squad") - metric = evaluate.load( - "squad", - cache_dir=model_args.cache_dir, - download_config=DownloadConfig(cache_dir=model_args.cache_dir), - ) - - def compute_metrics(p: EvalPrediction): - references = [ - {"id": str(label["id"]), "answers": [{"text": str(label["answers"]), "answer_start": 0}]} - for label in p.label_ids - ] - predictions = [{"id": str(pred["id"]), "prediction_text": str(pred["prediction_text"])} for pred in p.predictions] - - return metric.compute( - predictions=predictions, - references=references, - ) - - # Post-processing: - def post_processing_function( - examples: datasets.Dataset, features: datasets.Dataset, outputs: EvalLoopOutput, stage="eval" - ): - # Decode the predicted tokens. - preds = outputs if isinstance(outputs, (np.ndarray, np.generic)) else outputs.predictions - if isinstance(preds, tuple): - preds = preds[0] - - preds[preds == -100] = 0 - decoded_preds = tokenizer.batch_decode(preds, skip_special_tokens=True) - - # Build a map example to its corresponding features. - example_id_to_index = {k: i for i, k in enumerate(examples["extraction_name"])} - feature_per_example = {example_id_to_index[feature["example_id"]]: i for i, feature in enumerate(features)} - predictions = {} - # Let's loop over all the examples! - for example_index, example in enumerate(examples): - # This is the index of the feature associated to the current example. - feature_index = feature_per_example[example_index] - predictions[example["extraction_name"]] = decoded_preds[feature_index] - - # Format the result to the format the metric expects. - if data_args.version_2_with_negative: - formatted_predictions = [ - {"id": k, "prediction_text": v, "no_answer_probability": 0.0} for k, v in predictions.items() - ] - else: - formatted_predictions = [{"id": k, "prediction_text": v} for k, v in predictions.items()] - - references = [{"id": ex["extraction_name"], "answers": ex[answer_column]} for ex in examples] - return EvalPrediction(predictions=formatted_predictions, label_ids=references) - - callbacks = [] - - if training_args.early_stopping: - callbacks.append(EarlyStoppingCallback(early_stopping_patience=training_args.early_stopping_patience)) - - # Initialize our Trainer - trainer = QuestionAnsweringSeq2SeqTrainer( - model=model, - args=training_args, - train_dataset=train_dataset if training_args.do_train else None, - eval_dataset=eval_dataset if training_args.do_eval else None, - eval_examples=eval_examples if training_args.do_eval else None, - tokenizer=tokenizer, - data_collator=data_collator, - compute_metrics=compute_metrics, - post_process_function=post_processing_function, - callbacks=callbacks, - ) - - # Training - if training_args.do_train: - checkpoint = None - if training_args.resume_from_checkpoint is not None: - checkpoint = training_args.resume_from_checkpoint - elif last_checkpoint is not None: - checkpoint = last_checkpoint - train_result = trainer.train(resume_from_checkpoint=checkpoint) - trainer.save_model() # Saves the tokenizer too for easy upload - - metrics = train_result.metrics - max_train_samples = data_args.max_train_samples if data_args.max_train_samples is not None else len(train_dataset) - metrics["train_samples"] = min(max_train_samples, len(train_dataset)) - - trainer.log_metrics("train", metrics) - trainer.save_metrics("train", metrics) - trainer.save_state() - - # Evaluation - results = {} - max_length = ( - training_args.generation_max_length - if training_args.generation_max_length is not None - else data_args.val_max_answer_length - ) - num_beams = data_args.num_beams if data_args.num_beams is not None else training_args.generation_num_beams - if training_args.do_eval: - logger.info("*** Evaluate ***") - metrics = trainer.evaluate(max_length=max_length, num_beams=num_beams, metric_key_prefix="eval") - - max_eval_samples = data_args.max_eval_samples if data_args.max_eval_samples is not None else len(eval_dataset) - metrics["eval_samples"] = min(max_eval_samples, len(eval_dataset)) - - trainer.log_metrics("eval", metrics) - trainer.save_metrics("eval", metrics) - - # Prediction - if training_args.do_predict: - logger.info("*** Predict ***") - results = trainer.predict(predict_dataset, predict_examples) - - return results.predictions - # metrics = results.metrics - # - # max_predict_samples = ( - # data_args.max_predict_samples if data_args.max_predict_samples is not None else len(predict_dataset) - # ) - # metrics["predict_samples"] = min(max_predict_samples, len(predict_dataset)) - - # trainer.log_metrics("predict", metrics) - # trainer.save_metrics("predict", metrics) diff --git a/src/extractors/text_to_text_extractor/methods/test/test_date_parser_method.py b/src/extractors/text_to_text_extractor/methods/test/test_date_parser_method.py deleted file mode 100644 index acf5a08..0000000 --- a/src/extractors/text_to_text_extractor/methods/test/test_date_parser_method.py +++ /dev/null @@ -1,67 +0,0 @@ -from unittest import TestCase - -from data.ExtractionData import ExtractionData -from data.ExtractionIdentifier import ExtractionIdentifier -from data.LabeledData import LabeledData -from data.PredictionSample import PredictionSample -from data.TrainingSample import TrainingSample -from extractors.text_to_text_extractor.methods.DateParserMethod import DateParserMethod - -extraction_identifier = ExtractionIdentifier(run_name="date_test", extraction_name="date_test") - - -class TestDateParserMethod(TestCase): - def test_performance(self): - sample = TrainingSample( - labeled_data=LabeledData(label_text="1981-05-13", language_iso="en"), tags_texts=["13 May 1981"] - ) - - extraction_data = ExtractionData(samples=[sample for _ in range(6)], extraction_identifier=extraction_identifier) - date_parser_method = DateParserMethod(extraction_identifier) - self.assertEqual(100, date_parser_method.performance(extraction_data, extraction_data)) - - def test_predict(self): - sample = TrainingSample( - labeled_data=LabeledData(label_text="1982-06-05", language_iso="en"), tags_texts=["5 Jun 1982"] - ) - - extraction_data = ExtractionData(samples=[sample for _ in range(6)], extraction_identifier=extraction_identifier) - date_parser_method = DateParserMethod(extraction_identifier) - - date_parser_method.train(extraction_data) - - predictions = date_parser_method.predict([PredictionSample.from_text("5 Jun 1982")]) - self.assertEqual(["1982-06-05"], predictions) - - def test_predict_multiple_dates_spanish(self): - text = "Informe no. 52/16 caso 12.521 fondo Maria Laura órdenes guerra y otros Chile 30 de noviembre de 2016" - sample = TrainingSample(labeled_data=LabeledData(label_text="2016-11-30", language_iso="es"), tags_texts=[text]) - - extraction_data = ExtractionData(samples=[sample for _ in range(6)], extraction_identifier=extraction_identifier) - date_parser_method = DateParserMethod(extraction_identifier) - - date_parser_method.train(extraction_data) - - predictions = date_parser_method.predict([PredictionSample.from_text(text)]) - self.assertEqual(["2016-11-30"], predictions) - - def test_performance_no_dates(self): - sample_1 = TrainingSample( - labeled_data=LabeledData(label_text="1981-05-13", language_iso="en"), tags_texts=["13 May 1981"] - ) - sample_2 = TrainingSample(labeled_data=LabeledData(label_text="text", language_iso="en"), tags_texts=["13 May 81"]) - - extraction_data = ExtractionData(samples=[sample_1, sample_2], extraction_identifier=extraction_identifier) - date_parser_method = DateParserMethod(extraction_identifier) - - self.assertEqual(50, date_parser_method.performance(extraction_data, extraction_data)) - - def test_performance_multiple_tags(self): - sample = TrainingSample( - labeled_data=LabeledData(label_text="1981-05-13", language_iso="es"), tags_texts=["13 May", "1981"] - ) - - extraction_data = ExtractionData(samples=[sample for _ in range(6)], extraction_identifier=extraction_identifier) - date_parser_method = DateParserMethod(extraction_identifier) - - self.assertEqual(100, date_parser_method.performance(extraction_data, extraction_data)) diff --git a/src/extractors/text_to_text_extractor/methods/test/test_date_parser_with_breaks_method.py b/src/extractors/text_to_text_extractor/methods/test/test_date_parser_with_breaks_method.py deleted file mode 100644 index 7a982e9..0000000 --- a/src/extractors/text_to_text_extractor/methods/test/test_date_parser_with_breaks_method.py +++ /dev/null @@ -1,29 +0,0 @@ -from unittest import TestCase - -from data.ExtractionData import ExtractionData -from data.ExtractionIdentifier import ExtractionIdentifier -from data.LabeledData import LabeledData -from data.PredictionSample import PredictionSample -from data.TrainingSample import TrainingSample -from extractors.text_to_text_extractor.methods.DateParserWithBreaksMethod import DateParserWithBreaksMethod - - -class TestDateParserWithBreaksMethod(TestCase): - def test_predict(self): - extraction_identifier = ExtractionIdentifier(run_name="test", extraction_name="test") - - sample = TrainingSample( - labeled_data=LabeledData(label_text="1982-06-05", language_iso="en"), tags_texts=["5 Jun 1982"] - ) - - extraction_data = ExtractionData(samples=[sample for _ in range(6)], extraction_identifier=extraction_identifier) - date_parser_method = DateParserWithBreaksMethod(extraction_identifier) - - date_parser_method.train(extraction_data) - - text_1 = ["ORDER OF THE INTER-AMERICAN COURT OF HUMAN RIGHTS 1", "OF FEBRUARY 9, 2006"] - text_2 = ["ORDER OF THE INTER-AMERICAN COURT OF HUMAN RIGHTS 1", "OF MARCH 10, 2007"] - predictions = date_parser_method.predict([PredictionSample.from_texts(text_1), PredictionSample.from_texts(text_2)]) - - self.assertEqual("2006-02-09", predictions[0]) - self.assertEqual("2007-03-10", predictions[1]) diff --git a/src/extractors/text_to_text_extractor/methods/test/test_input_without_spaces.py b/src/extractors/text_to_text_extractor/methods/test/test_input_without_spaces.py deleted file mode 100644 index 2eb41de..0000000 --- a/src/extractors/text_to_text_extractor/methods/test/test_input_without_spaces.py +++ /dev/null @@ -1,36 +0,0 @@ -from unittest import TestCase - -from data.ExtractionData import ExtractionData -from data.ExtractionIdentifier import ExtractionIdentifier -from data.LabeledData import LabeledData -from data.PredictionSample import PredictionSample -from data.TrainingSample import TrainingSample -from extractors.text_to_text_extractor.methods.InputWithoutSpaces import InputWithoutSpaces - -extraction_identifier = ExtractionIdentifier(run_name="test", extraction_name="test") - - -class TestInputWithoutSpaces(TestCase): - def test_performance_100(self): - sample = TrainingSample(labeled_data=LabeledData(label_text="abc", language_iso="en"), tags_texts=["a b c"]) - - extraction_data = ExtractionData(samples=[sample], extraction_identifier=extraction_identifier) - - same_input_output_method = InputWithoutSpaces(extraction_identifier) - self.assertEqual(100, same_input_output_method.performance(extraction_data, extraction_data)) - - def test_performance_50(self): - sample_1 = TrainingSample(labeled_data=LabeledData(label_text="abc", language_iso="en"), tags_texts=["a b ", "c"]) - sample_2 = TrainingSample(labeled_data=LabeledData(label_text="2", language_iso="en"), tags_texts=["a", " b c"]) - - extraction_data = ExtractionData(samples=[sample_1] + [sample_2], extraction_identifier=extraction_identifier) - - same_input_output_method = InputWithoutSpaces(extraction_identifier) - - self.assertEqual(50, same_input_output_method.performance(extraction_data, extraction_data)) - - def test_predict(self): - same_input_output_method = InputWithoutSpaces(extraction_identifier) - predictions = same_input_output_method.predict([PredictionSample.from_text(" test 1 4 foo ")]) - - self.assertEqual(["test14foo"], predictions) diff --git a/src/extractors/text_to_text_extractor/methods/test/test_mt5.py b/src/extractors/text_to_text_extractor/methods/test/test_mt5.py deleted file mode 100644 index 35f5c54..0000000 --- a/src/extractors/text_to_text_extractor/methods/test/test_mt5.py +++ /dev/null @@ -1,36 +0,0 @@ -from time import time -from unittest import TestCase - -import torch - -from data.ExtractionData import ExtractionData -from data.ExtractionIdentifier import ExtractionIdentifier -from data.LabeledData import LabeledData -from data.PredictionSample import PredictionSample -from data.TrainingSample import TrainingSample -from extractors.text_to_text_extractor.methods.MT5TrueCaseEnglishSpanishMethod import MT5TrueCaseEnglishSpanishMethod - - -class TestMT5(TestCase): - def test_train(self): - start = time() - print("GPU available?") - print(torch.cuda.is_available()) - extraction_identifier = ExtractionIdentifier(run_name="test", extraction_name="test") - - samples_1 = [TrainingSample(labeled_data=LabeledData(label_text="foo"), tags_texts=["1/ foo end"])] * 5 - samples_2 = [TrainingSample(labeled_data=LabeledData(label_text="var"), tags_texts=["2/ var end"])] * 5 - - extraction_data = ExtractionData(samples=samples_1 + samples_2, extraction_identifier=extraction_identifier) - mt5_true_case_english_spanish = MT5TrueCaseEnglishSpanishMethod(extraction_identifier) - - mt5_true_case_english_spanish.train(extraction_data) - - prediction_sample = PredictionSample.from_text("1/ foo end") - prediction_sample_empty = PredictionSample.from_text("") - predictions = mt5_true_case_english_spanish.predict([prediction_sample] + [prediction_sample_empty]) - - self.assertEqual(2, len(predictions)) - self.assertEqual("foo", predictions[0]) - self.assertEqual("", predictions[1]) - print(f"Predictions in {round(time() - start, 2)} seconds") diff --git a/src/extractors/text_to_text_extractor/methods/test/test_regex_method.py b/src/extractors/text_to_text_extractor/methods/test/test_regex_method.py deleted file mode 100644 index 5d20170..0000000 --- a/src/extractors/text_to_text_extractor/methods/test/test_regex_method.py +++ /dev/null @@ -1,112 +0,0 @@ -from unittest import TestCase - -from data.ExtractionData import ExtractionData -from data.ExtractionIdentifier import ExtractionIdentifier -from data.LabeledData import LabeledData -from data.PredictionSample import PredictionSample -from data.TrainingSample import TrainingSample -from extractors.text_to_text_extractor.methods.RegexMethod import RegexMethod - -extraction_identifier = ExtractionIdentifier(run_name="test", extraction_name="test") - - -class TestRegexMethod(TestCase): - def test_performance_100(self): - sample = TrainingSample(labeled_data=LabeledData(label_text="12", language_iso="en"), tags_texts=["one 12"]) - - extraction_data = ExtractionData(samples=[sample for _ in range(6)], extraction_identifier=extraction_identifier) - regex_method = RegexMethod(extraction_identifier) - - self.assertEqual(100, regex_method.performance(extraction_data, extraction_data)) - - def test_performance_0(self): - sample = TrainingSample(labeled_data=LabeledData(label_text="12", language_iso="en"), tags_texts=["one two"]) - - extraction_data = ExtractionData(samples=[sample for _ in range(6)], extraction_identifier=extraction_identifier) - regex_method = RegexMethod(extraction_identifier) - - self.assertEqual(0, regex_method.performance(extraction_data, extraction_data)) - - def test_performance_75(self): - sample_1 = [TrainingSample(labeled_data=LabeledData(label_text="12", language_iso="en"), tags_texts=["one 12"])] - sample_2 = [TrainingSample(labeled_data=LabeledData(label_text="no regex", language_iso="en"), tags_texts=["one"])] - extraction_data = ExtractionData(samples=sample_1 * 3 + sample_2, extraction_identifier=extraction_identifier) - - regex_method = RegexMethod(extraction_identifier) - - self.assertEqual(75, regex_method.performance(extraction_data, extraction_data)) - - def test_performance_no_samples(self): - regex_method = RegexMethod(extraction_identifier) - extraction_data = ExtractionData(samples=[], extraction_identifier=extraction_identifier) - self.assertEqual(0, regex_method.performance(extraction_data, extraction_data)) - - def test_performance_one_sample(self): - sample = [TrainingSample(labeled_data=LabeledData(label_text="12", language_iso="en"), tags_texts=["one 12"])] - extraction_data = ExtractionData(samples=sample, extraction_identifier=extraction_identifier) - - regex_method = RegexMethod(extraction_identifier) - self.assertEqual(100, regex_method.performance(extraction_data, extraction_data)) - - def test_predict(self): - sample_1 = [TrainingSample(labeled_data=LabeledData(label_text="12", language_iso="en"), tags_texts=[""])] - sample_2 = [TrainingSample(labeled_data=LabeledData(label_text="34", language_iso="en"), tags_texts=[""])] - extraction_data = ExtractionData(samples=sample_1 + sample_2, extraction_identifier=extraction_identifier) - - regex_method = RegexMethod(extraction_identifier) - - regex_method.train(extraction_data) - texts = ["one 12", "13", "14 foo"] - predictions = regex_method.predict([PredictionSample.from_text(text) for text in texts]) - self.assertEqual(3, len(predictions)) - self.assertEqual("12", predictions[0]) - self.assertEqual("13", predictions[1]) - self.assertEqual("14", predictions[2]) - - def test_predict_void(self): - sample_1 = [TrainingSample(labeled_data=LabeledData(label_text="124", language_iso="en"), tags_texts=[""])] - sample_2 = [TrainingSample(labeled_data=LabeledData(label_text="344", language_iso="en"), tags_texts=[""])] - extraction_data = ExtractionData(samples=sample_1 + sample_2, extraction_identifier=extraction_identifier) - - regex_method = RegexMethod(extraction_identifier) - - regex_method.train(extraction_data) - - texts = ["14 foo", ""] - predictions = regex_method.predict([PredictionSample.from_texts(texts)]) - self.assertEqual(1, len(predictions)) - self.assertEqual("", predictions[0]) - - def test_regex_when_empty_labels(self): - sample_1 = [TrainingSample(labeled_data=LabeledData(label_text="123", language_iso="en"), tags_texts=[""])] - sample_2 = [TrainingSample(labeled_data=LabeledData(label_text="321", language_iso="en"), tags_texts=[""])] - empty_labels = [TrainingSample(labeled_data=LabeledData(label_text="", language_iso="en"), tags_texts=[""])] * 100 - - extraction_data = ExtractionData( - samples=sample_1 + empty_labels + sample_2, extraction_identifier=extraction_identifier - ) - - regex_method = RegexMethod(extraction_identifier) - - regex_method.train(extraction_data) - - texts = ["foo 555 var"] - predictions = regex_method.predict([PredictionSample.from_texts(texts)]) - self.assertEqual(1, len(predictions)) - self.assertEqual("555", predictions[0]) - - def test_retrain(self): - sample = [TrainingSample(labeled_data=LabeledData(label_text="1", language_iso="en"), tags_texts=[""])] - extraction_data = ExtractionData(samples=sample, extraction_identifier=extraction_identifier) - - regex_method = RegexMethod(extraction_identifier) - regex_method.train(extraction_data) - - sample = [TrainingSample(labeled_data=LabeledData(label_text="111", language_iso="en"), tags_texts=["one 12"])] - extraction_data = ExtractionData(samples=sample, extraction_identifier=extraction_identifier) - - regex_method.train(extraction_data) - - predictions = regex_method.predict([PredictionSample.from_text("111")]) - self.assertEqual(1, len(predictions)) - self.assertEqual("111", predictions[0]) diff --git a/src/extractors/text_to_text_extractor/methods/test/test_regex_subtraction_method.py b/src/extractors/text_to_text_extractor/methods/test/test_regex_subtraction_method.py deleted file mode 100644 index 282c548..0000000 --- a/src/extractors/text_to_text_extractor/methods/test/test_regex_subtraction_method.py +++ /dev/null @@ -1,101 +0,0 @@ -from unittest import TestCase - -from data.ExtractionData import ExtractionData -from data.ExtractionIdentifier import ExtractionIdentifier -from data.LabeledData import LabeledData -from data.PredictionSample import PredictionSample -from data.TrainingSample import TrainingSample -from extractors.text_to_text_extractor.methods.RegexSubtractionMethod import RegexSubtractionMethod - -extraction_identifier = ExtractionIdentifier(run_name="test", extraction_name="test") - - -class TestRegexSubtractionMethod(TestCase): - def test_performance_text_in_front(self): - sample_1 = TrainingSample(labeled_data=LabeledData(label_text="two", language_iso="en"), tags_texts=["one two"]) - sample_2 = TrainingSample(labeled_data=LabeledData(label_text="three", language_iso="en"), tags_texts=["one three"]) - - extraction_data = ExtractionData(samples=[sample_1, sample_2], extraction_identifier=extraction_identifier) - - regex_method = RegexSubtractionMethod(extraction_identifier) - - self.assertEqual(100, regex_method.performance(extraction_data, extraction_data)) - - def test_performance_text_in_back(self): - sample_1 = TrainingSample(labeled_data=LabeledData(label_text="two", language_iso="en"), tags_texts=["two other"]) - sample_2 = TrainingSample( - labeled_data=LabeledData(label_text="three", language_iso="en"), tags_texts=["three other"] - ) - - extraction_data = ExtractionData(samples=[sample_1, sample_2], extraction_identifier=extraction_identifier) - - regex_method = RegexSubtractionMethod(extraction_identifier) - - self.assertEqual(100, regex_method.performance(extraction_data, extraction_data)) - - def test_performance(self): - text = "Angola, Argentina, Austria, Benin, Botswana, Brazil, Burkina Faso, Chile, Congo, Costa Rica, " - text += "Côte d’Ivoire, Czech Republic, Ecuador, Estonia, Ethiopia, Gabon, Germany, Guatemala, India, " - text += "Indonesia, Ireland, Italy, Japan, Kazakhstan, Kenya, Libya, Malaysia, Maldives, " - text += "Montenegro, Pakistan, Peru, Philippines, Poland, Republic of Korea, Republic of Moldova, " - text += "Romania, Sierra Leone, Spain, Switzerland, Thailand, Uganda, Venezuela (Bolivarian Republic of)" - - texts = [ - "Angola, Argentina, Austria, Benin, Botswana, Brazil, Burkina Faso, Chile,", - "Congo, Costa Rica, Côte d’Ivoire, Czech Republic, Ecuador, Estonia,", - "Ethiopia, Gabon, Germany, Guatemala, India, Indonesia, Ireland, Italy,", - "Japan, Kazakhstan, Kenya, Libya, Malaysia, Maldives, Montenegro,", - "Pakistan, Peru, Philippines, Poland, Republic of Korea, Republic of", - "Moldova, Romania, Sierra Leone, Spain, Switzerland, Thailand, Uganda,", - "Venezuela (Bolivarian Republic of)", - ] - - sample = TrainingSample(labeled_data=LabeledData(label_text=text, language_iso="en"), tags_texts=texts) - - extraction_data = ExtractionData(samples=[sample], extraction_identifier=extraction_identifier) - - regex_method = RegexSubtractionMethod(extraction_identifier) - - self.assertEqual(100, regex_method.performance(extraction_data, extraction_data)) - - def test_performance_text_front_and_back(self): - sample_1 = TrainingSample(labeled_data=LabeledData(label_text="two", language_iso="en"), tags_texts=["1/ two final"]) - sample_2 = TrainingSample( - labeled_data=LabeledData(label_text="three", language_iso="en"), tags_texts=["1/ three final"] - ) - - extraction_data = ExtractionData(samples=[sample_1, sample_2], extraction_identifier=extraction_identifier) - - regex_method = RegexSubtractionMethod(extraction_identifier) - - self.assertEqual(100, regex_method.performance(extraction_data, extraction_data)) - - def test_predict(self): - sample_1 = TrainingSample(labeled_data=LabeledData(label_text="foo", language_iso="en"), tags_texts=["1/ foo end"]) - sample_2 = TrainingSample(labeled_data=LabeledData(label_text="var", language_iso="en"), tags_texts=["2/ var end"]) - - extraction_data = ExtractionData(samples=[sample_1, sample_2], extraction_identifier=extraction_identifier) - - regex_method = RegexSubtractionMethod(extraction_identifier) - - regex_method.train(extraction_data) - - texts = ["3/ one end", "4/ two end"] - predictions = regex_method.predict([PredictionSample.from_text(text) for text in texts]) - self.assertEqual(2, len(predictions)) - self.assertEqual("one", predictions[0]) - self.assertEqual("two", predictions[1]) - - def test_predict_void(self): - sample_1 = TrainingSample(labeled_data=LabeledData(label_text="124", language_iso=""), tags_texts=[""]) - sample_2 = TrainingSample(labeled_data=LabeledData(label_text="344", language_iso=""), tags_texts=[]) - - extraction_data = ExtractionData(samples=[sample_1, sample_2], extraction_identifier=extraction_identifier) - - regex_method = RegexSubtractionMethod(extraction_identifier) - - regex_method.train(extraction_data) - - predictions = regex_method.predict([PredictionSample.from_text("")]) - self.assertEqual(1, len(predictions)) - self.assertEqual("", predictions[0]) diff --git a/src/extractors/text_to_text_extractor/methods/test/test_same_input_output.py b/src/extractors/text_to_text_extractor/methods/test/test_same_input_output.py deleted file mode 100644 index 9e10742..0000000 --- a/src/extractors/text_to_text_extractor/methods/test/test_same_input_output.py +++ /dev/null @@ -1,58 +0,0 @@ -from unittest import TestCase - -from data.ExtractionData import ExtractionData -from data.ExtractionIdentifier import ExtractionIdentifier -from data.LabeledData import LabeledData -from data.PredictionSample import PredictionSample -from data.TrainingSample import TrainingSample -from extractors.text_to_text_extractor.methods.SameInputOutputMethod import SameInputOutputMethod - -extraction_identifier = ExtractionIdentifier(run_name="test", extraction_name="test") - - -class TestSameInputMethod(TestCase): - def test_performance_100(self): - sample = TrainingSample(labeled_data=LabeledData(label_text="a b c", language_iso="en"), tags_texts=["a b c"]) - - extraction_data = ExtractionData(samples=[sample], extraction_identifier=extraction_identifier) - - same_input_output_method = SameInputOutputMethod(extraction_identifier) - self.assertEqual(100, same_input_output_method.performance(extraction_data, extraction_data)) - - def test_performance_100_with_multiline(self): - label_text = """Albania, Algeria, Argentina, Bolivia (Plurinational State of), Brazil, Congo, Côte d’Ivoire, - El Salvador, Estonia, France, Gabon, Germany, Ireland, Kazakhstan, Latvia, Mexico, - Montenegro, Namibia, Netherlands, Paraguay, Portugal, Sierra Leone, South Africa, the - former Yugoslav Republic of Macedonia, United Kingdom of Great Britain and Northern - Ireland, Venezuela (Bolivarian Republic of)""" - - tags_text = [ - "Albania, Algeria, Argentina, Bolivia (Plurinational State of), Brazil, Congo, Côte d’Ivoire, ", - "El Salvador, Estonia, France, Gabon, Germany, Ireland, Kazakhstan, Latvia, Mexico, ", - "Montenegro, Namibia, Netherlands, Paraguay, Portugal, Sierra Leone, South Africa, ", - "the former Yugoslav Republic of Macedonia, United Kingdom of Great Britain and", - "Northern Ireland, Venezuela (Bolivarian Republic of)", - ] - - sample = TrainingSample(labeled_data=LabeledData(label_text=label_text, language_iso="en"), tags_texts=tags_text) - - extraction_data = ExtractionData(samples=[sample], extraction_identifier=extraction_identifier) - - same_input_output_method = SameInputOutputMethod(extraction_identifier) - self.assertEqual(100, same_input_output_method.performance(extraction_data, extraction_data)) - - def test_performance_50(self): - sample_1 = TrainingSample(labeled_data=LabeledData(label_text="a b c", language_iso="en"), tags_texts=["a b c"]) - sample_2 = TrainingSample(labeled_data=LabeledData(label_text="2", language_iso="en"), tags_texts=["a b c"]) - - extraction_data = ExtractionData(samples=[sample_1] + [sample_2], extraction_identifier=extraction_identifier) - - same_input_output_method = SameInputOutputMethod(extraction_identifier) - - self.assertEqual(50, same_input_output_method.performance(extraction_data, extraction_data)) - - def test_predict(self): - same_input_output_method = SameInputOutputMethod(extraction_identifier) - predictions = same_input_output_method.predict([PredictionSample.from_text("test 1")]) - - self.assertEqual(["test 1"], predictions) diff --git a/src/extractors/text_to_text_extractor/methods/trainer_seq2seq_qa.py b/src/extractors/text_to_text_extractor/methods/trainer_seq2seq_qa.py deleted file mode 100644 index 7787efe..0000000 --- a/src/extractors/text_to_text_extractor/methods/trainer_seq2seq_qa.py +++ /dev/null @@ -1,127 +0,0 @@ -# coding=utf-8 -# Copyright 2021 The HuggingFace Team All rights reserved. -# -# Licensed under the Apache License, Version 2.0 (the "License"); -# you may not use this file except in compliance with the License. -# You may obtain a copy of the License at -# -# http://www.apache.org/licenses/LICENSE-2.0 -# -# Unless required by applicable law or agreed to in writing, software -# distributed under the License is distributed on an "AS IS" BASIS, -# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. -# See the License for the specific language governing permissions and -# limitations under the License. -""" -A subclass of `Trainer` specific to Question-Answering tasks -""" -from typing import Optional - -from torch.utils.data import Dataset - -from transformers import Seq2SeqTrainer, is_torch_tpu_available - - -if is_torch_tpu_available(check_device=False): - import torch_xla.core.xla_model as xm - import torch_xla.debug.metrics as met - - -class QuestionAnsweringSeq2SeqTrainer(Seq2SeqTrainer): - def __init__(self, *args, eval_examples=None, post_process_function=None, **kwargs): - super().__init__(*args, **kwargs) - self.eval_examples = eval_examples - self.post_process_function = post_process_function - - # def evaluate(self, eval_dataset=None, eval_examples=None, ignore_keys=None, metric_key_prefix: str = "eval"): - def evaluate( - self, - eval_dataset: Optional[Dataset] = None, - eval_examples=None, - ignore_keys: Optional[list[str]] = None, - metric_key_prefix: str = "eval", - **gen_kwargs, - ) -> dict[str, float]: - gen_kwargs = gen_kwargs.copy() - gen_kwargs["max_length"] = ( - gen_kwargs["max_length"] if gen_kwargs.get("max_length") is not None else self.args.generation_max_length - ) - gen_kwargs["num_beams"] = ( - gen_kwargs["num_beams"] if gen_kwargs.get("num_beams") is not None else self.args.generation_num_beams - ) - self._gen_kwargs = gen_kwargs - - eval_dataset = self.eval_dataset if eval_dataset is None else eval_dataset - eval_dataloader = self.get_eval_dataloader(eval_dataset) - eval_examples = self.eval_examples if eval_examples is None else eval_examples - - # Temporarily disable metric computation, we will do it in the loop here. - compute_metrics = self.compute_metrics - self.compute_metrics = None - eval_loop = self.prediction_loop if self.args.use_legacy_prediction_loop else self.evaluation_loop - try: - output = eval_loop( - eval_dataloader, - description="Evaluation", - # No point gathering the predictions if there are no metrics, otherwise we defer to - # self.args.prediction_loss_only - prediction_loss_only=True if compute_metrics is None else None, - ignore_keys=ignore_keys, - ) - finally: - self.compute_metrics = compute_metrics - - if self.post_process_function is not None and self.compute_metrics is not None: - eval_preds = self.post_process_function(eval_examples, eval_dataset, output) - metrics = self.compute_metrics(eval_preds) - - # Prefix all keys with metric_key_prefix + '_' - for key in list(metrics.keys()): - if not key.startswith(f"{metric_key_prefix}_"): - metrics[f"{metric_key_prefix}_{key}"] = metrics.pop(key) - - self.log(metrics) - else: - metrics = {} - - if self.args.tpu_metrics_debug or self.args.debug: - # tpu-comment: Logging debug metrics for PyTorch/XLA (compile, execute times, ops, etc.) - xm.master_print(met.metrics_report()) - - self.control = self.callback_handler.on_evaluate(self.args, self.state, self.control, metrics) - return metrics - - def predict(self, predict_dataset, predict_examples, ignore_keys=None, metric_key_prefix: str = "test", **gen_kwargs): - self._gen_kwargs = gen_kwargs.copy() - - predict_dataloader = self.get_test_dataloader(predict_dataset) - - # Temporarily disable metric computation, we will do it in the loop here. - compute_metrics = self.compute_metrics - self.compute_metrics = None - eval_loop = self.prediction_loop if self.args.use_legacy_prediction_loop else self.evaluation_loop - try: - output = eval_loop( - predict_dataloader, - description="Prediction", - # No point gathering the predictions if there are no metrics, otherwise we defer to - # self.args.prediction_loss_only - prediction_loss_only=True if compute_metrics is None else None, - ignore_keys=ignore_keys, - ) - finally: - self.compute_metrics = compute_metrics - - if self.post_process_function is None or self.compute_metrics is None: - return output - - predictions = self.post_process_function(predict_examples, predict_dataset, output.predictions, "predict") - return predictions - # metrics = self.compute_metrics(predictions) - # - # # Prefix all keys with metric_key_prefix + '_' - # for key in list(metrics.keys()): - # if not key.startswith(f"{metric_key_prefix}_"): - # metrics[f"{metric_key_prefix}_{key}"] = metrics.pop(key) - # - # return PredictionOutput(predictions=predictions.predictions, label_ids=predictions.label_ids, metrics=None) diff --git a/src/extractors/text_to_text_extractor/test/test_text_to_text_extractor.py b/src/extractors/text_to_text_extractor/test/test_text_to_text_extractor.py deleted file mode 100644 index 6336fc6..0000000 --- a/src/extractors/text_to_text_extractor/test/test_text_to_text_extractor.py +++ /dev/null @@ -1,79 +0,0 @@ -import shutil -from os.path import join -from unittest import TestCase - -from config import DATA_PATH -from data.ExtractionData import ExtractionData -from data.ExtractionIdentifier import ExtractionIdentifier -from data.LabeledData import LabeledData -from data.PredictionSample import PredictionSample -from data.TrainingSample import TrainingSample -from extractors.text_to_text_extractor.TextToTextExtractor import TextToTextExtractor - -tenant = "semantic_tenant_to_be_removed" -extraction_id = "extraction_id" - -extraction_identifier = ExtractionIdentifier(run_name=tenant, extraction_name=extraction_id) - - -class TestTextToTextExtractor(TestCase): - - def setUp(self): - shutil.rmtree(join(DATA_PATH, tenant), ignore_errors=True) - - def test_predictions_same_input_output(self): - sample = [TrainingSample(labeled_data=LabeledData(label_text="one", language_iso="en"), tags_texts=["two"])] - extraction_data = ExtractionData(samples=sample, extraction_identifier=extraction_identifier) - - text_to_text_extractor = TextToTextExtractor(extraction_identifier=extraction_identifier) - text_to_text_extractor.can_be_used(extraction_data) - texts = ["test 0", "test 1", "test 2"] - predictions_samples = [PredictionSample.from_text(text, str(i)) for i, text in enumerate(texts)] - suggestions = text_to_text_extractor.get_suggestions(predictions_samples) - - self.assertEqual(3, len(suggestions)) - self.assertEqual(tenant, suggestions[0].tenant) - self.assertEqual(extraction_id, suggestions[0].id) - self.assertEqual("0", suggestions[0].entity_name) - self.assertEqual("test 0", suggestions[0].text) - self.assertEqual("1", suggestions[1].entity_name) - self.assertEqual("test 1", suggestions[1].text) - self.assertEqual("2", suggestions[2].entity_name) - self.assertEqual("test 2", suggestions[2].text) - - def test_predictions_two_samples(self): - sample_1 = [TrainingSample(labeled_data=LabeledData(label_text="one", language_iso="en"), tags_texts=["one two"])] - sample_2 = [TrainingSample(labeled_data=LabeledData(label_text="one", language_iso="en"), tags_texts=["one two"])] - extraction_data = ExtractionData(samples=sample_1 + sample_2, extraction_identifier=extraction_identifier) - - text_to_text_extractor = TextToTextExtractor(extraction_identifier=extraction_identifier) - text_to_text_extractor.create_model(extraction_data) - - suggestions = text_to_text_extractor.get_suggestions([PredictionSample.from_text("one two", "entity_name")]) - - self.assertEqual(1, len(suggestions)) - self.assertEqual(tenant, suggestions[0].tenant) - self.assertEqual(extraction_id, suggestions[0].id) - self.assertEqual("entity_name", suggestions[0].entity_name) - self.assertEqual("one", suggestions[0].text) - - def test_predictions_input_without_spaces(self): - sample = [ - TrainingSample( - labeled_data=LabeledData(label_text="onetwothree", language_iso="en"), tags_texts=["one two", "three"] - ) - ] - extraction_data = ExtractionData(samples=sample * 3, extraction_identifier=extraction_identifier) - - text_to_text_extractor = TextToTextExtractor(extraction_identifier=extraction_identifier) - text_to_text_extractor.create_model(extraction_data) - - suggestions = text_to_text_extractor.get_suggestions( - [PredictionSample.from_text("one two three four", "entity_name")] - ) - - self.assertEqual(1, len(suggestions)) - self.assertEqual(tenant, suggestions[0].tenant) - self.assertEqual(extraction_id, suggestions[0].id) - self.assertEqual("entity_name", suggestions[0].entity_name) - self.assertEqual("onetwothreefour", suggestions[0].text) diff --git a/src/performance/Results.py b/src/performance/Results.py deleted file mode 100644 index 294dbc6..0000000 --- a/src/performance/Results.py +++ /dev/null @@ -1,63 +0,0 @@ -from os.path import dirname, realpath, join -import time -from datetime import datetime -from rich import box -from rich.table import Table -from rich.console import Console - -SCRIPT_PATH = dirname(realpath(__file__)) - - -class Results: - RESULTS_PATH = "results" - - def __init__(self, results_name: str): - self.method = "" - self.start_time = None - self.results_name = results_name - self.results_path = join(SCRIPT_PATH, "..", "..", "performance_results", f"{results_name}.md") - self.table = self.initiate_table() - self.accuracies = list() - - @staticmethod - def initiate_table(): - table = Table(title="", box=box.MINIMAL_DOUBLE_HEAD) - table.add_column("Dataset") - table.add_column("Method") - table.add_column("Train \n size", justify="right") - table.add_column("Test \n size", justify="right") - table.add_column("Time", justify="right") - table.add_column("Acc.", justify="right") - return table - - def set_start_time(self): - print("start time") - self.start_time = time.time() - - def get_total_time(self): - total_time = round(time.time() - self.start_time) - print(f"{datetime.now():%Y_%m_%d_%H_%M}", f"finished in {total_time} seconds") - return str(total_time) + "s" - - @staticmethod - def format_dataset_name(name): - return name.replace(".tsv", "").replace("_", " ") - - def save_result(self, dataset: str, method: str, accuracy: float, train_length: int, test_length: int): - self.accuracies.append(accuracy) - self.table.add_row( - self.format_dataset_name(dataset), - method, - str(train_length), - str(test_length), - self.get_total_time(), - str(round(accuracy)) + "%", - ) - - def write_results(self): - accuracies_average = round(sum(self.accuracies) / len(self.accuracies)) - self.table.add_row("", "", "", "", "", "") - self.table.add_row("average", "", "", "", "", str(accuracies_average) + "%") - console = Console(record=True) - console.print(self.table) - console.save_text(self.results_path) diff --git a/src/performance_pdf_to_multi_option_report.py b/src/performance_pdf_to_multi_option_report.py deleted file mode 100644 index 0af858b..0000000 --- a/src/performance_pdf_to_multi_option_report.py +++ /dev/null @@ -1,223 +0,0 @@ -import json -import os -import pickle -import random -from os import listdir -from os.path import join -from pathlib import Path -from time import sleep, time - -import requests -from pdf_features.PdfFeatures import PdfFeatures -from sklearn.metrics import f1_score -from tqdm import tqdm - -from config import APP_PATH, ROOT_PATH -from data.ExtractionData import ExtractionData -from data.ExtractionIdentifier import ExtractionIdentifier -from data.LabeledData import LabeledData -from data.Option import Option -from data.PdfData import PdfData -from data.PredictionSample import PredictionSample -from data.SegmentBox import SegmentBox -from data.SegmentationData import SegmentationData -from data.TrainingSample import TrainingSample -from extractors.pdf_to_multi_option_extractor.PdfMultiOptionMethod import PdfMultiOptionMethod -from extractors.pdf_to_multi_option_extractor.PdfToMultiOptionExtractor import PdfToMultiOptionExtractor - -PDF_MULTI_OPTION_EXTRACTION_LABELED_DATA_PATH = join( - Path(__file__).parent, "extractors", "pdf_to_multi_option_extractor", "labeled_data" -) -PDF_DATA_FOLDER_PATH = join(ROOT_PATH, "data", "pdf_data_cache") -LABELED_DATA_PATH = join(APP_PATH, "pdf_topic_classification", "labeled_data") - -LABELED_DATA_PDFS_PATH = join(ROOT_PATH.parent, "pdf-labeled-data", "pdfs") - -BASE_LINE = { - "cejil_president": (100.0, "NextWordsTokenSelectorFuzzy75"), - "cyrilla_keywords": (53.49, "FuzzyFirstCleanLabel"), - "cejil_date": (20.83, "FuzzyAll88"), - "cejil_countries": (69.05, "FuzzyFirstCleanLabel"), - "d4la_document_type": (44.07, "CleanBeginningDotDigits500_SingleLabelSetFit"), - "cejil_secretary": (80.0, "FuzzyAll75"), - "countries_in_favor": (96.89, "PreviousWordsSentenceSelectorFuzzyCommas"), - "countries_in_favor_empty_labels": (96.89, "PreviousWordsSentenceSelectorFuzzyCommas"), - "cejil_judge": (92.86, "FuzzyLast"), -} - - -def get_task_pdf_names(): - task_pdf_names: dict[str, set[str]] = dict() - - for task_name in listdir(str(PDF_MULTI_OPTION_EXTRACTION_LABELED_DATA_PATH)): - with open(join(PDF_MULTI_OPTION_EXTRACTION_LABELED_DATA_PATH, task_name, "labels.json"), mode="r") as file: - labels_dict: dict[str, list[str]] = json.load(file) - task_pdf_names.setdefault(task_name, set()).update(labels_dict.keys()) - - return task_pdf_names - - -def cache_pdf_data(pdf_name: str, pickle_path: Path): - pdf_features = PdfFeatures.from_poppler_etree(join(LABELED_DATA_PDFS_PATH, pdf_name, "etree.xml")) - - with open(join(LABELED_DATA_PDFS_PATH, pdf_name, "document.pdf"), "rb") as stream: - files = {"file": stream} - - results = requests.post("http://localhost:5060", files=files) - - if results.status_code != 200: - raise Exception("Error extracting the paragraphs") - - segments: list[SegmentBox] = [SegmentBox(**segment_box) for segment_box in results.json()] - - pdf_data = PdfData(pdf_features, file_name=pdf_name) - segmentation_data = SegmentationData( - page_width=segments[0].page_width, - page_height=segments[0].page_height, - xml_segments_boxes=segments, - label_segments_boxes=[], - ) - - pdf_data.set_segments_from_segmentation_data(segmentation_data) - - os.makedirs(pickle_path.parent, exist_ok=True) - with open(pickle_path, mode="wb") as file: - pickle.dump(pdf_data, file) - - return pdf_data - - -def get_samples(task_name): - with open(join(PDF_MULTI_OPTION_EXTRACTION_LABELED_DATA_PATH, task_name, "labels.json"), mode="r") as file: - labels_dict: dict[str, list[str]] = json.load(file) - - multi_option_samples: list[TrainingSample] = list() - for pdf_name in tqdm(sorted(get_task_pdf_names()[task_name])): - pickle_path = join(PDF_DATA_FOLDER_PATH, f"{pdf_name}.pickle") - - if Path(pickle_path).exists(): - with open(pickle_path, mode="rb") as file: - pdf_data: PdfData = pickle.load(file) - else: - pdf_data: PdfData = cache_pdf_data(pdf_name, Path(pickle_path)) - - values = [Option(id=x, label=x) for x in labels_dict[pdf_name]] - language_iso = "es" if "cejil" in task_name else "en" - - extraction_sample = TrainingSample( - pdf_data=pdf_data, labeled_data=LabeledData(values=values, language_iso=language_iso) - ) - multi_option_samples.append(extraction_sample) - - random.seed(42) - random.shuffle(multi_option_samples) - return multi_option_samples - - -def get_multi_option_benchmark_data(filter_by: list[str] = None) -> list[ExtractionData]: - benchmark_data: list[ExtractionData] = list() - for task_name in listdir(str(PDF_MULTI_OPTION_EXTRACTION_LABELED_DATA_PATH)): - if filter_by and task_name not in filter_by: - continue - - print(f"Loading task {task_name}") - - with open(join(PDF_MULTI_OPTION_EXTRACTION_LABELED_DATA_PATH, task_name, "options.json"), mode="r") as file: - options = [Option(id=x, label=x) for x in json.load(file)] - - multi_option_samples = get_samples(task_name) - multi_value: bool = len([sample for sample in multi_option_samples if len(sample.labeled_data.values) > 1]) != 0 - extraction_identifier = ExtractionIdentifier(run_name="benchmark", extraction_name=task_name) - benchmark_data.append( - ExtractionData( - samples=multi_option_samples, - options=options, - multi_value=multi_value, - extraction_identifier=extraction_identifier, - ) - ) - - return benchmark_data - - -def performance_report(): - f1s_method_name = get_f1_scores_method_names() - sleep(1) - print() - print("REPORT:") - print("-------") - for key, (value, method_name) in f1s_method_name.items(): - if value < BASE_LINE[key][0]: - print(f"{key}: PERFORMANCE DECREASED!!!!!") - else: - print(f"{key}: Good performance") - - print(f"Base performance: {BASE_LINE[key][0]}% with method {BASE_LINE[key][1]}") - print(f"Performance: {value}% with method {method_name}") - print() - - -def get_f1_scores_method_names() -> dict[str, (float, str)]: - f1s_method_name = dict() - for dataset in get_multi_option_benchmark_data(filter_by=[]): - truth_one_hot, prediction_one_hot, method_name, _ = get_predictions(dataset) - f1 = round(100 * f1_score(truth_one_hot, prediction_one_hot, average="micro"), 2) - f1s_method_name[dataset.extraction_identifier.extraction_name] = (f1, method_name) - - return f1s_method_name - - -def get_predictions(dataset: ExtractionData) -> (list[list[int]], list[list[int]], str): - training_samples_number = int(len(dataset.samples) * 0.5) if len(dataset.samples) > 10 else 10 - training_samples = dataset.samples[:training_samples_number] - test_samples = dataset.samples[training_samples_number:] if len(dataset.samples) > 20 else dataset.samples - - training_dataset = ExtractionData( - samples=training_samples, - options=dataset.options, - multi_value=dataset.multi_value, - extraction_identifier=dataset.extraction_identifier, - ) - extractor = PdfToMultiOptionExtractor(dataset.extraction_identifier) - extractor.create_model(training_dataset) - prediction_samples = [PredictionSample(pdf_data=sample.pdf_data) for sample in test_samples] - context_samples, predictions = extractor.get_predictions(prediction_samples) - values_list = [x.labeled_data.values for x in test_samples] - truth_one_hot = PdfMultiOptionMethod.one_hot_to_options_list(values_list, dataset.options) - prediction_one_hot = PdfMultiOptionMethod.one_hot_to_options_list(predictions, dataset.options) - return truth_one_hot, prediction_one_hot, extractor.get_best_method(training_dataset).get_name(), context_samples - - -def get_mistakes() -> dict[str, (float, str)]: - f1s_method_name = dict() - for dataset in get_multi_option_benchmark_data(filter_by=[]): - truth_one_hot, prediction_one_hot, method_name, test_samples = get_predictions(dataset) - - correct = 0 - mistakes = 0 - for truth, prediction, sample in zip(truth_one_hot, prediction_one_hot, test_samples): - text = " ".join([x.text_content for x in sample.pdf_data.pdf_data_segments if x.ml_label]) - missing = [dataset.options[i].label for i in range(len(truth)) if truth[i] and not prediction[i]] - wrong = [dataset.options[i].label for i in range(len(truth)) if not truth[i] and prediction[i]] - - if missing or wrong: - print() - print(f"PDF: {sample.pdf_data.file_name}") - print(f"Text: {text}") - print(f"Missing: {missing}") - print(f"Wrong: {wrong}") - mistakes += 1 - else: - correct += 1 - - print(f"\n\nCorrect predictions for: {correct} PDFs") - print(f"Incorrect predictions for {mistakes} PDFs") - - return f1s_method_name - - -if __name__ == "__main__": - start = time() - print("start") - performance_report() - print("time", round(time() - start, 2), "s") diff --git a/src/performance_segment_selector.py b/src/performance_segment_selector.py deleted file mode 100644 index 090051f..0000000 --- a/src/performance_segment_selector.py +++ /dev/null @@ -1,84 +0,0 @@ -from time import time - -from sklearn.metrics import precision_score, recall_score, average_precision_score -from py_markdown_table.markdown_table import markdown_table -from data.ExtractionIdentifier import ExtractionIdentifier -from extractors.segment_selector.FastSegmentSelector import FastSegmentSelector -from extractors.segment_selector.SegmentSelector import SegmentSelector -from extractors.segment_selector.SegmentSelectorBase import SegmentSelectorBase -from extractors.segment_selector.SegmentSelectorResults import SegmentSelectorResults -from extractors.segment_selector.get_data_for_performance import get_data_for_performance - -extraction_identifier = ExtractionIdentifier(run_name="benchmark", extraction_name="segment_selector") - -METHODS: list[SegmentSelectorBase] = [FastSegmentSelector(extraction_identifier), SegmentSelector(extraction_identifier)] - - -def get_train_test(pdfs_data): - train_number = int(len(pdfs_data) * 0.5) - train_data = pdfs_data[:train_number] - test_data = pdfs_data[train_number:] - return train_data, test_data - - -def print_results(results): - results.sort(key=lambda x: (x.dataset, x.method)) - for method in METHODS: - precisions = [x.precision for x in results if x.method == method.get_name()] - recalls = [x.recall for x in results if x.method == method.get_name()] - seconds = [x.seconds for x in results if x.method == method.get_name()] - average_precision = round(sum(precisions) / len(precisions), 2) - average_recall = round(sum(recalls) / len(recalls), 2) - average_seconds = round(sum(seconds) / len(seconds)) - samples = sum([x.samples for x in results if x.method == method.get_name()]) - results.append( - SegmentSelectorResults( - method=method.get_name(), - dataset="Average", - samples=samples, - precision=average_precision, - recall=average_recall, - seconds=average_seconds, - ) - ) - - data = [x.model_dump() for x in results] - padding = SegmentSelectorResults.get_padding() - markdown = markdown_table(data).set_params(padding_width=5, padding_weight=padding).get_markdown() - print(markdown) - - -def get_performance_segment_selector(): - data = get_data_for_performance(filter_datasets=[]) - print(f"Datasets: {data.keys()}") - - results: list[SegmentSelectorResults] = list() - for dataset, pdfs_data in data.items(): - training_set, test_set = get_train_test(pdfs_data) - - truth = [x.ml_label for pdf_data in test_set for x in pdf_data.pdf_data_segments] - - for segment in [x for pdf_data in test_set for x in pdf_data.pdf_data_segments]: - segment.ml_label = 0 - - for method in METHODS: - method.prepare_model_folder() - start = time() - predicted_labels = method.get_predictions_for_performance(training_set, test_set) - - selector_results = SegmentSelectorResults( - method=method.get_name(), - dataset=dataset, - samples=len(pdfs_data), - precision=round(100 * precision_score(truth, predicted_labels), 2), - recall=round(100 * recall_score(truth, predicted_labels), 2), - seconds=round(time() - start), - ) - - results.append(selector_results) - - print_results(results) - - -if __name__ == "__main__": - get_performance_segment_selector() diff --git a/src/scripts/cache_pdf_data.py b/src/scripts/cache_pdf_data.py deleted file mode 100644 index b1aa731..0000000 --- a/src/scripts/cache_pdf_data.py +++ /dev/null @@ -1,51 +0,0 @@ -import os -import pickle - -from os.path import join, exists -from pathlib import Path - -from fast_trainer.Paragraph import Paragraph -from fast_trainer.ParagraphExtractorTrainer import ParagraphExtractorTrainer -from fast_trainer.download_models import paragraph_extraction_model_path -from fast_trainer.model_configuration import MODEL_CONFIGURATION -from pdf_features.PdfFeatures import PdfFeatures -from pdf_tokens_type_trainer.ModelConfiguration import ModelConfiguration -from pdf_tokens_type_trainer.TokenTypeTrainer import TokenTypeTrainer - -from config import ROOT_PATH -from data.PdfData import PdfData -from performance_report import get_task_pdf_names, PDF_DATA_FOLDER_PATH - -LABELED_DATA_PDFS_PATH = join(ROOT_PATH.parent, "pdf-labeled-data", "pdfs") - - -def cache_pdf_data(): - task_pdf_names = get_task_pdf_names() - for task, pdf_names in task_pdf_names.items(): - if task != "countries_in_favor": - continue - - for pdf_name in pdf_names: - pdf_data_pickle_path = Path(str(join(PDF_DATA_FOLDER_PATH, pdf_name + ".pickle"))) - os.makedirs(pdf_data_pickle_path.parent, exist_ok=True) - - if exists(pdf_data_pickle_path): - continue - - print("caching ", pdf_name) - pdf_features = PdfFeatures.from_poppler_etree(join(LABELED_DATA_PDFS_PATH, pdf_name, "etree.xml")) - - trainer = TokenTypeTrainer([pdf_features], ModelConfiguration()) - trainer.set_token_types() - trainer = ParagraphExtractorTrainer(pdfs_features=[pdf_features], model_configuration=MODEL_CONFIGURATION) - paragraphs: list[Paragraph] = trainer.get_paragraphs(paragraph_extraction_model_path) - - pdf_data = PdfData(pdf_features, file_name=pdf_name) - pdf_data.set_segments_from_paragraphs(paragraphs) - - with open(pdf_data_pickle_path, mode="wb") as file: - pickle.dump(pdf_data, file) - - -if __name__ == "__main__": - cache_pdf_data() diff --git a/src/scripts/check_performance.py b/src/scripts/check_performance.py deleted file mode 100644 index d7303ec..0000000 --- a/src/scripts/check_performance.py +++ /dev/null @@ -1,141 +0,0 @@ -from os.path import dirname, realpath, join -from typing import Type - -import pandas as pd -from datetime import datetime - -from performance.Results import Results -from extractors.text_to_text_extractor.TextToTextMethod import BaseMethod -from extractors.text_to_text_extractor.methods.MT5TrueCaseEnglishSpanishMethod import MT5TrueCaseEnglishSpanishMethod - - -class CheckPerformance: - SCRIPT_PATH = dirname(realpath(__file__)) - - TENANT = "check_performance" - - METHODS: list[Type[BaseMethod]] = [ - # T5ZeroShot, - MT5TrueCaseEnglishSpanishMethod, - # MT5EnglishSpanishMethod, - # T5TransformersMethod, - # T5Method, - # SameInputOutputMethod, - # RegexMethod, - # DateParserMethod, - # DateParserMethod, - # FlanT5TrueCaseEnglishSpanishMethod - ] - - DATASETS: list[str] = [ - # "code_spanish.tsv", - # "country_spanish.tsv", - "date_spanish.tsv", - # "document_code.tsv", - # "judge_name.tsv", - # "vote_english.tsv", - # "year_multilingual.tsv", - ] - - def __init__(self, training_length): - self.training_length = training_length - self.semantic_information_data = None - self.current_dataset = None - self.current_method = None - self.current_method_name = None - self.current_prediction = None - self.current_accuracy = None - - prefix = f"{datetime.now():%Y_%m_%d_%H_%M}" - - self.all_results = Results(results_name=f"all_results_{training_length}____{prefix}") - self.best_results = Results(results_name=f"best_results_{training_length}____{prefix}") - - def dataset_name_to_extraction_id(self): - return self.current_dataset.replace("_", "").replace(".tsv", "") - - def get_semantic_extraction_data(self, file_name): - df = pd.read_csv(join(self.SCRIPT_PATH, "performance", "datasets", file_name), sep="\t") - self.semantic_information_data = [] - for index, row in df.iterrows(): - semantic_extraction_data = SemanticExtractionData( - text=row["output"], segment_text=row["input"], language_iso=row["language"] - ) - self.semantic_information_data.append(semantic_extraction_data) - - def run(self): - for self.current_dataset in self.DATASETS: - self.get_semantic_extraction_data(self.current_dataset) - self.best_results.set_start_time() - - accuracies = list() - method_names = list() - - train, test = BaseMethod.get_train_test(self.semantic_information_data, self.training_length) - - for self.current_method in self.METHODS: - self.run_method(accuracies) - method_names.append(self.current_method_name) - self.all_results.save_result( - dataset=self.current_dataset, - method=self.current_method_name, - accuracy=self.current_accuracy, - train_length=len(train), - test_length=len(test), - ) - - best_method = method_names[accuracies.index(max(accuracies))] - self.best_results.save_result( - dataset=self.current_dataset, - method=best_method, - accuracy=max(accuracies), - train_length=len(train), - test_length=len(test), - ) - - self.write_results() - - def run_method(self, accuracies): - self.all_results.set_start_time() - method_instance = self.current_method(self.TENANT, self.dataset_name_to_extraction_id()) - self.current_accuracy, self.current_prediction = method_instance.performance( - self.semantic_information_data, self.training_length - ) - self.write_mistakes() - self.current_method_name = method_instance.get_name() - accuracies.append(self.current_accuracy) - - def write_results(self): - self.all_results.write_results() - self.best_results.write_results() - - def write_mistakes(self): - _, performance_test_set = BaseMethod.get_train_test(self.semantic_information_data, self.training_length) - correct_path = "../performance_results/mistakes/" - correct_path += f"{self.training_length}_{self.current_method_name}_{self.current_dataset}_correct.txt" - mistakes_path = "../performance_results/mistakes/" - mistakes_path += f"{self.training_length}_{self.current_method_name}_{self.current_dataset}_mistakes.txt" - - with open(mistakes_path, "w") as input_file: - input_file.write("Mistakes\n\n") - - with open(correct_path, "w") as input_file: - input_file.write("Correct\n\n") - - for prediction, semantic_information_data in zip(self.current_prediction, performance_test_set): - text_one_line = semantic_information_data.segment_text.replace("\n", " ") - - file_name = correct_path if prediction == semantic_information_data.text else mistakes_path - - with open(file_name, "a") as input_file: - line = f"prediction:{prediction}\ntarget:{semantic_information_data.text}\ntext:{text_one_line}\n\n" - input_file.write(line) - - -if __name__ == "__main__": - for i in [5]: - check_performance = CheckPerformance(i) - check_performance.run() - # - # check_performance = CheckPerformance(5) - # check_performance.run() diff --git a/src/scripts/paragraph_selector_benchmark.py b/src/scripts/paragraph_selector_benchmark.py deleted file mode 100644 index c7fd7f0..0000000 --- a/src/scripts/paragraph_selector_benchmark.py +++ /dev/null @@ -1,220 +0,0 @@ -import importlib -import json -import os -import pickle -import random -import shutil - -from datetime import datetime -from os.path import join, exists -from pathlib import Path - -import requests -from pdf_features.PdfFeatures import PdfFeatures -from pdf_token_type_labels.PdfLabels import PdfLabels -from pdf_token_type_labels.TaskMistakes import TaskMistakes -from sklearn.metrics import f1_score - -from config import ROOT_PATH, DATA_PATH -from data.SegmentBox import SegmentBox -from data.SegmentationData import SegmentationData -from data.PdfData import PdfData -from performance.Results import Results -from extractors.segment_selector.Paragraphs import Paragraphs -from extractors.segment_selector.evaluate_config import ( - SIZES, - SEED, - LABELED_DATA_TO_USE, - METHODS_TO_EXECUTE, - PDF_LABELED_DATA_PATH, -) - -RANDOM_SEED = 42 - - -def get_segmentation_data(pdf_path: str, pdf_name: str) -> SegmentationData: - pickle_path = join(DATA_PATH, "cached_segments", pdf_name + ".pickle") - - if exists(pickle_path): - with open(pickle_path, "rb") as f: - paragraphs = pickle.load(f) - else: - files = { - "file": open( - pdf_path, - "rb", - ), - } - response = requests.post("http://localhost:5051", files=files) - paragraphs = Paragraphs(**response.json()) - with open(pickle_path, "wb") as f: # open a text file - pickle.dump(paragraphs, f) - - xml_segments_boxes = [ - SegmentBox( - left=paragraph.left, - top=paragraph.top, - width=paragraph.width, - height=paragraph.height, - page_width=paragraphs.page_width, - page_height=paragraphs.page_height, - page_number=paragraph.page_number, - segment_type=paragraph.type, - ) - for paragraph in paragraphs.paragraphs - ] - - return SegmentationData( - page_width=paragraphs.page_width, - page_height=paragraphs.page_height, - xml_segments_boxes=xml_segments_boxes, - label_segments_boxes=[], - ) - - -def load_pdf_segments(task: str, pdf_name: str) -> PdfData: - labeled_data_root_path = join(ROOT_PATH.parent, "pdf-labeled-data") - - pdfs_path = join(labeled_data_root_path, "pdfs") - pdf_features = PdfFeatures.from_poppler_etree(join(pdfs_path, pdf_name, "etree.xml"), pdf_name) - - pdf_path = join(pdfs_path, pdf_name, "document.pdf") - segmentation_data: SegmentationData = get_segmentation_data(pdf_path, pdf_name) - - labeled_data_path = join(labeled_data_root_path, "labeled_data", "paragraph_selector", task, pdf_name, "labels.json") - pdf_labels = PdfLabels(**json.loads(Path(labeled_data_path).read_text())) - segmentation_data.label_segments_boxes = [ - SegmentBox( - left=label.left, - top=label.top, - width=label.width, - height=label.height, - page_width=pdf_features.pages[0].page_width, - page_height=pdf_features.pages[0].page_height, - page_number=page.number, - ) - for page in pdf_labels.pages - for label in page.labels - ] - - pdf_segments = PdfData(pdf_features=pdf_features) - pdf_segments.set_segments_from_segmentation_data(segmentation_data) - pdf_segments.set_ml_label_from_segmentation_data(segmentation_data) - - return pdf_segments - - -def load_training_testing_data(task: str, seed: int) -> (list[PdfData], list[PdfData]): - print() - print("Loading data for", task, "with seed", seed) - - labeled_data_path = join(ROOT_PATH.parent, "pdf-labeled-data", "labeled_data", "paragraph_selector", task) - pdfs_segments = list() - for index, pdf_name in enumerate(os.listdir(labeled_data_path)): - pdfs_segments.append(load_pdf_segments(task, pdf_name)) - - current_pdfs_segments = [x for x in pdfs_segments] - random.seed(seed) - random.shuffle(current_pdfs_segments) - - train_size = int(len(current_pdfs_segments) * 0.6) - - return current_pdfs_segments[:train_size], current_pdfs_segments[train_size:] - - -def get_loop_values(): - for size in SIZES: - for task in LABELED_DATA_TO_USE: - yield size, SEED, task - - -def snake_case_to_pascal_case(name: str): - return "".join(word.title() for word in name.split("_")) - - -def save_mistakes(method_name: str, task: str, testing_pdfs_segments: list[PdfData], predictions_binary: list[int]): - prediction_index = 0 - for pdf_segments in testing_pdfs_segments: - y_true = [segment.ml_label for segment in pdf_segments.pdf_data_segments] - pdf_segments_predictions = predictions_binary[prediction_index : prediction_index + len(y_true)] - prediction_index += len(y_true) - - task_mistakes = TaskMistakes(PDF_LABELED_DATA_PATH, task + "_" + method_name, pdf_segments.pdf_features.file_name) - for segment, truth, prediction in zip(pdf_segments.pdf_data_segments, y_true, pdf_segments_predictions): - if not truth and not prediction: - continue - task_mistakes.add(segment.page_number, segment.bounding_box, truth, prediction) - - task_mistakes.save() - - -def run_one_method( - method_name: str, - task: str, - training_pdfs_segments: list[PdfData], - testing_pdfs_segments: list[PdfData], - results: Results, -): - results.set_start_time() - method_class_name = snake_case_to_pascal_case(method_name) - import_from = f"segment_selector.methods.{method_name}.{method_class_name}" - - model_path = Path(join(ROOT_PATH, "docker_volume", "segment_selector", task, "model")) - - shutil.rmtree(model_path.parent, ignore_errors=True) - os.makedirs(model_path.parent) - - method = importlib.import_module(import_from, method_class_name) - method_class = getattr(method, method_class_name) - method_instance = method_class() - model = method_instance.can_be_used(training_pdfs_segments, model_path) - predictions = method_instance.predict(model, testing_pdfs_segments, model_path) - - y_true = [x.ml_label for test in testing_pdfs_segments for x in test.pdf_data_segments] - prediction_binary = [1 if prediction > 0.5 else 0 for prediction in predictions] - - save_mistakes(method_name, task, testing_pdfs_segments, prediction_binary) - - f1 = round(100 * f1_score(y_true, prediction_binary), 2) - - results.save_result( - dataset=task, - method=method_name, - accuracy=f1, - train_length=len(training_pdfs_segments), - test_length=len(testing_pdfs_segments), - ) - - return f1 - - -def evaluate_methods(): - results_name = f"paragraph_selector_{datetime.now():%Y_%m_%d_%H_%M}" - results = Results(results_name) - - for method_name in METHODS_TO_EXECUTE: - f1s = list() - for size, seed, task in get_loop_values(): - training_pdfs_segments, testing_pdfs_segments = load_training_testing_data(task, seed) - training_pdfs_segments = training_pdfs_segments[:size] - - print( - f"\n\nevaluating time:{datetime.now():%Y/%m/%d %H:%M} size:{size} seed:{seed} task:{task} method:{method_name}" - ) - f1 = run_one_method(method_name, task, training_pdfs_segments, testing_pdfs_segments, results) - f1s.append(f1) - - results.set_start_time() - results.save_result( - dataset="Average", - method="", - accuracy=round((sum(f1s) + 83) / (len(f1s) + 1), 2), - train_length=0, - test_length=0, - ) - - results.write_results() - - -if __name__ == "__main__": - evaluate_methods() diff --git a/src/scripts/pdf_multi_option_classification_benchmark.py b/src/scripts/pdf_multi_option_classification_benchmark.py deleted file mode 100644 index 59b35fa..0000000 --- a/src/scripts/pdf_multi_option_classification_benchmark.py +++ /dev/null @@ -1,210 +0,0 @@ -import json -import pickle -from os import listdir -from os.path import join -from pathlib import Path -from time import time - -import rich -from sklearn.metrics import f1_score - -from config import ROOT_PATH, APP_PATH -from data.ExtractionIdentifier import ExtractionIdentifier -from data.LabeledData import LabeledData -from data.Option import Option -from data.PdfData import PdfData -from data.PredictionSample import PredictionSample -from extractors.ExtractorBase import ExtractorBase -from extractors.pdf_to_multi_option_extractor.PdfMultiOptionMethod import PdfMultiOptionMethod - -from extractors.pdf_to_multi_option_extractor.PdfToMultiOptionExtractor import PdfToMultiOptionExtractor -from data.ExtractionData import ExtractionData -from data.TrainingSample import TrainingSample -from extractors.pdf_to_multi_option_extractor.filter_segments_methods.Beginning750 import Beginning750 -from extractors.pdf_to_multi_option_extractor.filter_segments_methods.CleanBeginningDigits3000 import ( - CleanBeginningDigits3000, -) -from extractors.pdf_to_multi_option_extractor.filter_segments_methods.CleanBeginningDot500 import CleanBeginningDot500 -from extractors.pdf_to_multi_option_extractor.filter_segments_methods.CleanEndDot1000 import CleanEndDot1000 -from extractors.pdf_to_multi_option_extractor.filter_segments_methods.End750 import End750 -from extractors.pdf_to_multi_option_extractor.multi_labels_methods.TfIdfMethod import TfIdfMethod -from extractors.pdf_to_multi_option_extractor.multi_option_extraction_methods.FuzzyAll100 import FuzzyAll100 -from extractors.pdf_to_multi_option_extractor.multi_option_extraction_methods.FuzzyAll75 import FuzzyAll75 -from extractors.pdf_to_multi_option_extractor.multi_option_extraction_methods.FuzzyAll88 import FuzzyAll88 -from extractors.pdf_to_multi_option_extractor.multi_option_extraction_methods.FuzzyFirst import FuzzyFirst -from extractors.pdf_to_multi_option_extractor.multi_option_extraction_methods.FuzzyFirstCleanLabel import ( - FuzzyFirstCleanLabel, -) -from extractors.pdf_to_multi_option_extractor.multi_option_extraction_methods.FuzzyLast import FuzzyLast -from extractors.pdf_to_multi_option_extractor.multi_option_extraction_methods.FuzzyLastCleanLabel import FuzzyLastCleanLabel - -from extractors.pdf_to_multi_option_extractor.results import ( - get_results_table, - add_row, - add_prediction_row, - get_predictions_table, -) - -PDF_MULTI_OPTION_EXTRACTION_LABELED_DATA_PATH = join( - Path(__file__).parent, "extractors", "pdf_to_multi_option_extractor", "labeled_data" -) -PDF_DATA_FOLDER_PATH = join(ROOT_PATH, "data", "pdf_data_cache") -LABELED_DATA_PATH = join(APP_PATH, "pdf_topic_classification", "labeled_data") - -# text_extractors = [CleanBeginningDigits3000, CleanEndDot1000] -# multi_option_extractors = [TfIdfMethod] -# PDF_TOPIC_CLASSIFICATION_METHODS = [PdfMultiOptionMethod(x, y) for x in text_extractors for y in multi_option_extractors] - - -PDF_TOPIC_CLASSIFICATION_METHODS = [ - # FuzzyFirst(), - # FuzzyLast(), - FuzzyFirstCleanLabel(), - # FuzzyLastCleanLabel(), - # FuzzyAll75(), - # FuzzyAll88(), - # FuzzyAll100(), -] - - -def get_multi_option_benchmark_data(filter_by: list[str] = None) -> list[ExtractionData]: - benchmark_data: list[ExtractionData] = list() - for task_name in listdir(str(PDF_MULTI_OPTION_EXTRACTION_LABELED_DATA_PATH)): - if filter_by and task_name not in filter_by: - continue - - print(f"Loading task {task_name}") - - with open(join(PDF_MULTI_OPTION_EXTRACTION_LABELED_DATA_PATH, task_name, "options.json"), mode="r") as file: - options = [Option(id=x, label=x) for x in json.load(file)] - - multi_option_samples = get_samples(task_name) - multi_value: bool = len([sample for sample in multi_option_samples if len(sample.labeled_data.values) > 1]) != 0 - extraction_identifier = ExtractionIdentifier(run_name="benchmark", extraction_name=task_name) - benchmark_data.append( - ExtractionData( - samples=multi_option_samples, - options=options, - multi_value=multi_value, - extraction_identifier=extraction_identifier, - ) - ) - - return benchmark_data - - -def get_samples(task_name): - with open(join(PDF_MULTI_OPTION_EXTRACTION_LABELED_DATA_PATH, task_name, "labels.json"), mode="r") as file: - labels_dict: dict[str, list[str]] = json.load(file) - - multi_option_samples: list[TrainingSample] = list() - for pdf_name in sorted(get_task_pdf_names()[task_name]): - with open(join(PDF_DATA_FOLDER_PATH, f"{pdf_name}.pickle"), mode="rb") as file: - pdf_data: PdfData = pickle.load(file) - - values = [Option(id=x, label=x) for x in labels_dict[pdf_name]] - language_iso = "es" if "cejil" in task_name else "en" - - extraction_sample = TrainingSample( - pdf_data=pdf_data, labeled_data=LabeledData(values=values, language_iso=language_iso) - ) - multi_option_samples.append(extraction_sample) - return multi_option_samples - - -def get_task_pdf_names(): - task_pdf_names: dict[str, set[str]] = dict() - - for task_name in listdir(str(PDF_MULTI_OPTION_EXTRACTION_LABELED_DATA_PATH)): - with open(join(PDF_MULTI_OPTION_EXTRACTION_LABELED_DATA_PATH, task_name, "labels.json"), mode="r") as file: - labels_dict: dict[str, list[str]] = json.load(file) - task_pdf_names.setdefault(task_name, set()).update(labels_dict.keys()) - - return task_pdf_names - - -def loop_datasets_methods(datasets: list[str] = None): - extractions_data: list[ExtractionData] = get_multi_option_benchmark_data(datasets) - - for extraction_data in extractions_data: - for method in PDF_TOPIC_CLASSIFICATION_METHODS: - yield extraction_data, method - - -def get_benchmark_custom_methods(repetitions: int = 4): - results_table = get_results_table() - - # cejil_countries - # cejil_date - # cejil_judge - # cejil_president - # cejil_secretary - # cyrilla_keywords - # d4la_document_type - for extraction_data, method in loop_datasets_methods(["cejil_countries"]): - start = time() - print("Calculating", extraction_data.extraction_identifier, method.get_name()) - performance = method.get_performance(extraction_data, extraction_data) - add_row(results_table, method, round(time() - start), performance) - - -def get_multi_option_extractor_benchmark(): - results_table = get_results_table() - - # cejil_countries - # cejil_date - # cejil_judge - # cejil_president - # cejil_secretary - # cyrilla_keywords - # d4la_document_type - extractions_data: list[ExtractionData] = get_multi_option_benchmark_data(["cyrilla_keywords"]) - for extraction_data in extractions_data: - start = time() - extractor = PdfToMultiOptionExtractor(extraction_identifier=extraction_data.extraction_identifier) - train_set, test_set = ExtractorBase.get_train_test_sets(extraction_data) - values_list = [x.labeled_data.values for x in test_set.samples] - truth_one_hot = PdfMultiOptionMethod.one_hot_to_options_list(values_list, extraction_data.options) - extractor.create_model(train_set) - - test_data = [PredictionSample(pdf_data=x.pdf_data) for x in test_set.samples] - suggestions = extractor.get_suggestions(test_data) - values_list = [x.values for x in suggestions] - predictions_one_hot = PdfMultiOptionMethod.one_hot_to_options_list(values_list, extraction_data.options) - - performance = 100 * f1_score(truth_one_hot, predictions_one_hot, average="micro") - - results_table.add_row( - "Extractor", - extraction_data.extraction_identifier.extraction_name, - f"{round((time() - start) / 60, 1)}", - f"{round(performance, 2)}%", - ) - rich.print(results_table) - - -def check_results(): - prediction_table = get_predictions_table() - extractions_data: list[ExtractionData] = get_multi_option_benchmark_data(["cejil_countries"]) - for extraction_data in extractions_data: - extractor = PdfToMultiOptionExtractor(extraction_identifier=extraction_data.extraction_identifier) - - print(f"Calculating {extractor.extraction_identifier} {extractor.get_name()}") - train_set, test_set = ExtractorBase.get_train_test_sets(extraction_data) - labels = [x.labeled_data.values for x in test_set.samples] - test_data = [PredictionSample(pdf_data=x.pdf_data) for x in test_set.samples] - suggestions = extractor.get_suggestions(test_data) - pdfs_names = [x.pdf_data.file_name for x in test_set.samples] - predictions = [x.values for x in suggestions] - for label, prediction, pdf_name in zip(labels, predictions, pdfs_names): - add_prediction_row(prediction_table, pdf_name, label, prediction) - - add_prediction_row(prediction_table) - - rich.print(prediction_table) - - -if __name__ == "__main__": - # get_benchmark_custom_methods(4) - get_multi_option_extractor_benchmark() - # check_results() diff --git a/src/scripts/wait_for_queues.py b/src/scripts/wait_for_queues.py new file mode 100644 index 0000000..97be5f2 --- /dev/null +++ b/src/scripts/wait_for_queues.py @@ -0,0 +1,28 @@ +from time import sleep + +from rsmq import RedisSMQ + +REDIS_HOST = "127.0.0.1" +REDIS_PORT = "6379" + + +def wait_for_queues(): + queue = RedisSMQ( + host=REDIS_HOST, + port=REDIS_PORT, + qname="information_extraction_tasks", + quiet=False, + ) + + for i in range(60): + try: + queue.getQueueAttributes().exec_command() + print("Queue is ready") + return + except: + print("Waiting for queue") + sleep(5) + + +if __name__ == "__main__": + wait_for_queues() diff --git a/src/send_logs.py b/src/send_logs.py deleted file mode 100644 index 96b3d7d..0000000 --- a/src/send_logs.py +++ /dev/null @@ -1,26 +0,0 @@ -import traceback - -from config import config_logger -from data.ExtractionIdentifier import ExtractionIdentifier -from data.LogsMessage import Severity - - -def send_logs( - extraction_identifier: ExtractionIdentifier, - message: str, - severity: Severity = Severity.info, - exception: Exception = None, -): - if severity != Severity.error: - config_logger.info(message + " for " + extraction_identifier.model_dump_json()) - return - - try: - stacktrace_message = "\n".join(traceback.format_exception(type(exception), exception, exception.__traceback__)) - error_message = message - error_message += f"\nException type: {type(exception).__name__}" - error_message += f"\nException: {exception}" - error_message += f"\nStackTrace: {stacktrace_message}" - config_logger.error(error_message + " for " + extraction_identifier.model_dump_json()) - except: - config_logger.error(message + " for " + extraction_identifier.model_dump_json()) diff --git a/src/start_queue_processor.py b/src/start_queue_processor.py index 6980522..a4cb2c3 100644 --- a/src/start_queue_processor.py +++ b/src/start_queue_processor.py @@ -4,20 +4,25 @@ from queue_processor.QueueProcessor import QueueProcessor from sentry_sdk.integrations.redis import RedisIntegration import sentry_sdk +from trainable_entity_extractor.config import config_logger +from trainable_entity_extractor.data.ExtractionIdentifier import ExtractionIdentifier +from trainable_entity_extractor.send_logs import send_logs from config import ( - config_logger, SERVICE_HOST, SERVICE_PORT, REDIS_HOST, REDIS_PORT, QUEUES_NAMES, + DATA_PATH, ) -from data.ExtractionIdentifier import ExtractionIdentifier from data.ExtractionTask import ExtractionTask from data.ResultsMessage import ResultsMessage from Extractor import Extractor -from send_logs import send_logs + + +def restart_condition(message: dict[str, any]) -> bool: + return ExtractionTask(**message).task == Extractor.CREATE_MODEL_TASK_NAME def process(message: dict[str, any]) -> dict[str, any] | None: @@ -55,7 +60,7 @@ def process(message: dict[str, any]) -> dict[str, any] | None: ) extraction_identifier = ExtractionIdentifier( - run_name=task.tenant, extraction_name=task.params.id, metadata=task.params.metadata + run_name=task.tenant, extraction_name=task.params.id, metadata=task.params.metadata, output_path=DATA_PATH ) send_logs(extraction_identifier, f"Result message: {model_results_message.to_string()}") return model_results_message.model_dump() @@ -87,4 +92,4 @@ def task_to_string(extraction_task: ExtractionTask): config_logger.info(f"Waiting for messages. Is GPU used? {torch.cuda.is_available()}") queues_names = QUEUES_NAMES.split(" ") queue_processor = QueueProcessor(REDIS_HOST, REDIS_PORT, queues_names, config_logger) - queue_processor.start(process) + queue_processor.start(process, restart_condition) diff --git a/src/test/test_extractor_pdf_to_multi_option.py b/src/test/test_extractor_pdf_to_multi_option.py deleted file mode 100644 index 4cd94b0..0000000 --- a/src/test/test_extractor_pdf_to_multi_option.py +++ /dev/null @@ -1,160 +0,0 @@ -import json -import shutil -from os.path import join -from unittest import TestCase - -import mongomock -import pymongo - -from Extractor import Extractor -from config import DATA_PATH, APP_PATH -from data.ExtractionTask import ExtractionTask -from data.Option import Option -from data.Params import Params -from data.SegmentBox import SegmentBox -from data.Suggestion import Suggestion - - -class TestExtractorPdfToMultiOption(TestCase): - @mongomock.patch(servers=["mongodb://127.0.0.1:29017"]) - def test_get_pdf_multi_option_suggestions(self): - mongo_client = pymongo.MongoClient("mongodb://127.0.0.1:29017") - - tenant = "tenant_to_be_removed" - extraction_id = "extraction_id" - - shutil.rmtree(join(DATA_PATH, tenant), ignore_errors=True) - shutil.copytree(f"{APP_PATH}/tenant_test", f"{DATA_PATH}/{tenant}") - - labeled_data_json = { - "id": extraction_id, - "tenant": tenant, - "xml_file_name": "test.xml", - "language_iso": "en", - "values": [{"id": "id15", "label": "15"}], - "page_width": 612, - "page_height": 792, - } - - mongo_client.pdf_metadata_extraction.labeled_data.insert_one(labeled_data_json) - - options = [Option(id=f"id{n}", label=str(n)) for n in range(16)] - - Extractor.calculate_task( - ExtractionTask( - tenant=tenant, - task=Extractor.CREATE_MODEL_TASK_NAME, - params=Params(id=extraction_id, options=options, multi_value=False), - ) - ) - - to_predict_json = [ - { - "xml_file_name": "test.xml", - "id": extraction_id, - "tenant": tenant, - "page_width": 612, - "page_height": 792, - "xml_segments_boxes": [], - } - ] - - mongo_client.pdf_metadata_extraction.prediction_data.insert_many(to_predict_json) - - task_calculated, error = Extractor.calculate_task( - ExtractionTask( - tenant=tenant, - task=Extractor.SUGGESTIONS_TASK_NAME, - params=Params(id=extraction_id), - ) - ) - - suggestions: list[Suggestion] = list() - find_filter = {"id": extraction_id, "tenant": tenant} - for document in mongo_client.pdf_metadata_extraction.suggestions.find(find_filter): - suggestions.append(Suggestion(**document)) - - self.assertTrue(task_calculated) - self.assertEqual(1, len(suggestions)) - self.assertEqual(tenant, suggestions[0].tenant) - self.assertEqual(extraction_id, suggestions[0].id) - self.assertEqual("test.xml", suggestions[0].xml_file_name) - self.assertEqual([Option(id="id15", label="15")], suggestions[0].values) - - self.assertIsNone(mongo_client.pdf_metadata_extraction.labeled_data.find_one({})) - - @mongomock.patch(servers=["mongodb://127.0.0.1:29017"]) - def test_context_multi_option_suggestions(self): - mongo_client = pymongo.MongoClient("mongodb://127.0.0.1:29017") - - tenant = "tenant_to_be_removed" - extraction_id = "extraction_id" - - shutil.rmtree(join(DATA_PATH, tenant), ignore_errors=True) - shutil.copytree(f"{APP_PATH}/tenant_test", f"{DATA_PATH}/{tenant}") - - to_predict_json = [ - { - "xml_file_name": "test.xml", - "id": extraction_id, - "tenant": tenant, - "page_width": 612, - "page_height": 792, - "xml_segments_boxes": [], - } - ] - - mongo_client.pdf_metadata_extraction.prediction_data.insert_many(to_predict_json) - - for i in range(7): - labeled_data_json = { - "id": extraction_id, - "tenant": tenant, - "xml_file_name": "test.xml", - "language_iso": "en", - "values": [{"id": "id15", "label": "15"}], - "page_width": 612, - "page_height": 792, - "xml_segments_boxes": [], - "label_segments_boxes": [ - json.loads( - SegmentBox( - left=397, top=91, width=10, height=9, page_width=612, page_height=792, page_number=1 - ).model_dump_json() - ) - ], - } - - mongo_client.pdf_metadata_extraction.labeled_data.insert_one(labeled_data_json) - - options = [Option(id=f"id{n}", label=str(n)) for n in range(16)] - - Extractor.calculate_task( - ExtractionTask( - tenant=tenant, - task=Extractor.CREATE_MODEL_TASK_NAME, - params=Params(id=extraction_id, options=options, multi_value=False), - ) - ) - - task_calculated, error = Extractor.calculate_task( - ExtractionTask( - tenant=tenant, - task=Extractor.SUGGESTIONS_TASK_NAME, - params=Params(id=extraction_id), - ) - ) - - suggestions: list[Suggestion] = list() - find_filter = {"id": extraction_id, "tenant": tenant} - for document in mongo_client.pdf_metadata_extraction.suggestions.find(find_filter): - suggestions.append(Suggestion(**document)) - - self.assertTrue(task_calculated) - self.assertEqual(1, len(suggestions)) - self.assertEqual(tenant, suggestions[0].tenant) - self.assertEqual(extraction_id, suggestions[0].id) - self.assertEqual("test.xml", suggestions[0].xml_file_name) - self.assertEqual([Option(id="id15", label="15")], suggestions[0].values) - - self.assertIsNone(mongo_client.pdf_metadata_extraction.labeled_data.find_one({})) diff --git a/src/test/test_extractor_pdf_to_text.py b/src/test/test_extractor_pdf_to_text.py deleted file mode 100644 index 50c2ef4..0000000 --- a/src/test/test_extractor_pdf_to_text.py +++ /dev/null @@ -1,601 +0,0 @@ -import json -import os -import shutil -from os.path import exists, join - -from unittest import TestCase - -import mongomock -import pymongo -from pdf_token_type_labels.TokenType import TokenType - -from config import DATA_PATH, APP_PATH, MONGO_HOST, MONGO_PORT -from data.ExtractionTask import ExtractionTask -from data.Params import Params -from data.SegmentBox import SegmentBox -from data.Suggestion import Suggestion -from Extractor import Extractor - - -class TestExtractorPdfToText(TestCase): - test_xml_path = f"{APP_PATH}/tenant_test/extraction_id/xml_to_train/test.xml" - model_path = f"{APP_PATH}/tenant_test/extraction_id/segment_predictor_model/model.model" - - @mongomock.patch(servers=[f"{MONGO_HOST}:{MONGO_PORT}"]) - def test_create_model_when_blank_document(self): - tenant = "segment_test" - extraction_id = "extraction_id" - - base_path = join(DATA_PATH, tenant, extraction_id) - - mongo_client = pymongo.MongoClient(f"{MONGO_HOST}:{MONGO_PORT}") - - json_data = { - "tenant": tenant, - "id": extraction_id, - "xml_file_name": "blank.xml", - "label_text": "text", - "language_iso": "en", - "page_width": 612, - "page_height": 792, - "xml_segments_boxes": [], - "label_segments_boxes": [ - { - "left": 123, - "top": 48, - "width": 83, - "height": 12, - "page_width": 612, - "page_height": 792, - "page_number": 1, - "type": "TEXT", - } - ], - } - mongo_client.pdf_metadata_extraction.labeled_data.insert_one(json_data) - - shutil.rmtree(join(DATA_PATH, tenant), ignore_errors=True) - - os.makedirs(f"{base_path}/xml_to_train") - shutil.copy(self.test_xml_path, f"{base_path}/xml_to_train/test.xml") - - task = ExtractionTask( - tenant=tenant, - task=Extractor.CREATE_MODEL_TASK_NAME, - params=Params(id=extraction_id), - ) - task_calculated, error = Extractor.calculate_task(task) - - self.assertTrue(task_calculated) - - shutil.rmtree(join(DATA_PATH, tenant)) - - @mongomock.patch(servers=["mongodb://127.0.0.1:29017"]) - def test_create_model_should_do_nothing_when_no_xml(self): - tenant = "segment_test" - extraction_id = "extraction_id" - - mongo_client = pymongo.MongoClient("mongodb://127.0.0.1:29017") - json_data = { - "tenant": tenant, - "id": extraction_id, - "xml_file_name": "not_found.xml_to_train", - "language_iso": "en", - "label_text": "text", - "page_width": 612, - "page_height": 792, - "xml_segments_boxes": [], - "label_segments_boxes": [ - { - "left": 125, - "top": 247, - "width": 319, - "height": 29, - "page_width": 612, - "page_height": 792, - "page_number": 1, - } - ], - } - - mongo_client.pdf_metadata_extraction.labeled_data.insert_one(json_data) - - task = ExtractionTask( - tenant=tenant, - task=Extractor.CREATE_MODEL_TASK_NAME, - params=Params(id=extraction_id), - ) - Extractor.calculate_task(task) - - self.assertFalse(os.path.exists(f"{DATA_PATH}/segment_test/extraction_id/xml_to_train")) - self.assertFalse(os.path.exists(f"{DATA_PATH}/segment_test/extraction_id/segment_predictor_model/model.model")) - - @mongomock.patch(servers=["mongodb://127.0.0.1:29017"]) - def test_calculate_suggestions(self): - mongo_client = pymongo.MongoClient("mongodb://127.0.0.1:29017") - - tenant = "segment_test" - extraction_id = "extraction_id" - - shutil.rmtree(join(DATA_PATH, tenant), ignore_errors=True) - shutil.copytree(f"{APP_PATH}/tenant_test", f"{DATA_PATH}/{tenant}") - - labeled_data_json = { - "tenant": tenant, - "id": extraction_id, - "xml_file_name": "test.xml", - "entity_name": "", - "language_iso": "en", - "label_text": "Original: English", - "page_width": 612, - "page_height": 792, - "xml_segments_boxes": [], - "label_segments_boxes": [ - json.loads( - SegmentBox( - left=400, - top=115, - width=74, - height=9, - page_width=612, - page_height=792, - page_number=1, - segment_type=TokenType.TEXT, - ).model_dump_json() - ) - ], - } - - mongo_client.pdf_metadata_extraction.labeled_data.insert_one(labeled_data_json) - - Extractor.calculate_task( - ExtractionTask( - tenant=tenant, - task=Extractor.CREATE_MODEL_TASK_NAME, - params=Params(id=extraction_id), - ) - ) - - to_predict_json = { - "tenant": tenant, - "id": extraction_id, - "xml_file_name": "test.xml", - "entity_name": "", - "page_width": 612, - "page_height": 792, - "xml_segments_boxes": [], - } - - mongo_client.pdf_metadata_extraction.prediction_data.insert_one(to_predict_json) - - task = ExtractionTask( - tenant=tenant, - task=Extractor.SUGGESTIONS_TASK_NAME, - params=Params(id=extraction_id), - ) - task_calculated, error = Extractor.calculate_task(task) - - documents_count = mongo_client.pdf_metadata_extraction.suggestions.count_documents({}) - suggestion = Suggestion(**mongo_client.pdf_metadata_extraction.suggestions.find_one()) - - self.assertTrue(task_calculated) - self.assertEqual(1, documents_count) - - self.assertEqual(tenant, suggestion.tenant) - self.assertEqual(extraction_id, suggestion.id) - self.assertEqual("test.xml", suggestion.xml_file_name) - self.assertTrue("Original: English" in suggestion.segment_text) - self.assertEqual("Original: English", suggestion.text) - self.assertEqual(1, suggestion.page_number) - - self.assertEqual(len(suggestion.segments_boxes), 2) - self.assertEqual(397.0, suggestion.segments_boxes[0].left) - self.assertEqual(90.0, suggestion.segments_boxes[0].top) - self.assertEqual(1, suggestion.segments_boxes[0].page_number) - - self.assertIsNone(mongo_client.pdf_metadata_extraction.prediction_data.find_one()) - - shutil.rmtree(join(DATA_PATH, tenant), ignore_errors=True) - - @mongomock.patch(servers=["mongodb://127.0.0.1:29017"]) - def test_get_semantic_suggestions(self): - mongo_client = pymongo.MongoClient("mongodb://127.0.0.1:29017") - - tenant = "tenant_to_be_removed" - extraction_id = "extraction_id" - - shutil.rmtree(join(DATA_PATH, tenant), ignore_errors=True) - shutil.copytree(f"{APP_PATH}/tenant_test", f"{DATA_PATH}/{tenant}") - - to_predict_json = [ - { - "xml_file_name": "test.xml", - "entity_name": "", - "id": extraction_id, - "tenant": tenant, - "page_width": 612, - "page_height": 792, - "xml_segments_boxes": [], - }, - { - "xml_file_name": "test.xml", - "entity_name": "", - "id": extraction_id, - "tenant": tenant, - "page_width": 612, - "page_height": 792, - "xml_segments_boxes": [], - }, - ] - - mongo_client.pdf_metadata_extraction.prediction_data.insert_many(to_predict_json) - - for i in range(7): - labeled_data_json = { - "id": extraction_id, - "tenant": tenant, - "xml_file_name": "test.xml", - "entity_name": "", - "language_iso": "en", - "label_text": "English1", - "page_width": 612, - "page_height": 792, - "xml_segments_boxes": [], - "label_segments_boxes": [ - SegmentBox( - left=397, top=115, page_width=612, page_height=792, width=74, height=9, page_number=1 - ).to_dict() - ], - } - - mongo_client.pdf_metadata_extraction.labeled_data.insert_one(labeled_data_json) - - Extractor.calculate_task( - ExtractionTask( - tenant=tenant, - task=Extractor.CREATE_MODEL_TASK_NAME, - params=Params(id=extraction_id), - ) - ) - - task_calculated, error = Extractor.calculate_task( - ExtractionTask( - tenant=tenant, - task=Extractor.SUGGESTIONS_TASK_NAME, - params=Params(id=extraction_id), - ) - ) - - suggestions: list[Suggestion] = list() - find_filter = {"id": extraction_id, "tenant": tenant} - for document in mongo_client.pdf_metadata_extraction.suggestions.find(find_filter): - suggestions.append(Suggestion(**document)) - - self.assertTrue(task_calculated) - self.assertEqual(2, len(suggestions)) - self.assertEqual({tenant}, {x.tenant for x in suggestions}) - self.assertEqual({extraction_id}, {x.id for x in suggestions}) - self.assertEqual({"test.xml"}, {x.xml_file_name for x in suggestions}) - self.assertEqual({"Original: English"}, {x.segment_text for x in suggestions}) - self.assertEqual({"English1"}, {x.text for x in suggestions}) - - self.assertEqual({1}, set([len(x.segments_boxes) for x in suggestions])) - self.assertEqual(397.0, suggestions[0].segments_boxes[0].left) - self.assertEqual(114.0, suggestions[0].segments_boxes[0].top) - self.assertEqual(77.0, suggestions[0].segments_boxes[0].width) - self.assertEqual(11.0, suggestions[0].segments_boxes[0].height) - self.assertEqual(1, suggestions[0].segments_boxes[0].page_number) - - shutil.rmtree(join(DATA_PATH, tenant), ignore_errors=True) - - @mongomock.patch(servers=["mongodb://127.0.0.1:29017"]) - def test_get_semantic_suggestions_numeric(self): - mongo_client = pymongo.MongoClient("mongodb://127.0.0.1:29017") - - tenant = "tenant_to_be_removed" - extraction_id = "extraction_id" - - shutil.rmtree(join(DATA_PATH, tenant), ignore_errors=True) - shutil.copytree(f"{APP_PATH}/tenant_test", f"{DATA_PATH}/{tenant}") - - to_predict_json = [ - { - "xml_file_name": "test.xml", - "entity_name": "", - "id": extraction_id, - "tenant": tenant, - "page_width": 612, - "page_height": 792, - "xml_segments_boxes": [], - } - ] - - mongo_client.pdf_metadata_extraction.prediction_data.insert_many(to_predict_json) - - for i in range(7): - labeled_data_json = { - "id": extraction_id, - "tenant": tenant, - "xml_file_name": "test.xml", - "entity_name": "", - "language_iso": "en", - "label_text": "15", - "page_width": 612, - "page_height": 792, - "xml_segments_boxes": [], - "label_segments_boxes": [ - json.loads( - SegmentBox( - left=397, top=91, page_width=612, page_height=792, width=10, height=9, page_number=1 - ).model_dump_json() - ) - ], - } - - mongo_client.pdf_metadata_extraction.labeled_data.insert_one(labeled_data_json) - - Extractor.calculate_task( - ExtractionTask( - tenant=tenant, - task=Extractor.CREATE_MODEL_TASK_NAME, - params=Params(id=extraction_id), - ) - ) - - task_calculated, error = Extractor.calculate_task( - ExtractionTask( - tenant=tenant, - task=Extractor.SUGGESTIONS_TASK_NAME, - params=Params(id=extraction_id), - ) - ) - - suggestions: list[Suggestion] = list() - find_filter = {"id": extraction_id, "tenant": tenant} - for document in mongo_client.pdf_metadata_extraction.suggestions.find(find_filter): - suggestions.append(Suggestion(**document)) - - self.assertTrue(task_calculated) - self.assertEqual(1, len(suggestions)) - self.assertEqual(tenant, suggestions[0].tenant) - self.assertEqual(extraction_id, suggestions[0].id) - self.assertEqual("test.xml", suggestions[0].xml_file_name) - self.assertTrue("15 February 2021" in suggestions[0].segment_text) - self.assertEqual("15", suggestions[0].text) - - shutil.rmtree(join(DATA_PATH, tenant), ignore_errors=True) - - @mongomock.patch(servers=["mongodb://127.0.0.1:29017"]) - def test_get_semantic_suggestions_spanish(self): - mongo_client = pymongo.MongoClient("mongodb://127.0.0.1:29017") - - tenant = "tenant_to_be_removed" - extraction_id = "spa" - - shutil.rmtree(join(DATA_PATH, tenant), ignore_errors=True) - shutil.copytree(f"{APP_PATH}/tenant_test", f"{DATA_PATH}/{tenant}") - shutil.copytree( - f"{DATA_PATH}/{tenant}/extraction_id/xml_to_train", - f"{DATA_PATH}/{tenant}/{extraction_id}/xml_to_train", - ) - shutil.copytree( - f"{DATA_PATH}/{tenant}/extraction_id/xml_to_train", - f"{DATA_PATH}/{tenant}/{extraction_id}/xml_to_predict", - ) - - samples_number = 20 - for i in range(samples_number): - labeled_data_json = { - "tenant": tenant, - "id": extraction_id, - "xml_file_name": "spanish.xml", - "entity_name": "", - "language_iso": "spa", - "label_text": "día", - "page_width": 612, - "page_height": 792, - "xml_segments_boxes": [], - "label_segments_boxes": [ - json.loads( - SegmentBox( - left=289, top=206, page_width=612, page_height=792, width=34, height=10, page_number=1 - ).model_dump_json() - ) - ], - } - - mongo_client.pdf_metadata_extraction.labeled_data.insert_one(labeled_data_json) - to_predict_json = [ - { - "tenant": tenant, - "id": extraction_id, - "xml_file_name": "spanish.xml", - "entity_name": "", - "page_width": 612, - "page_height": 792, - "xml_segments_boxes": [], - }, - { - "id": extraction_id, - "tenant": tenant, - "xml_file_name": "spanish.xml", - "entity_name": "", - "page_width": 612, - "page_height": 792, - "xml_segments_boxes": [], - }, - ] - - mongo_client.pdf_metadata_extraction.prediction_data.insert_many(to_predict_json) - - Extractor.calculate_task( - ExtractionTask( - tenant=tenant, - task=Extractor.CREATE_MODEL_TASK_NAME, - params=Params(id=extraction_id), - ) - ) - - task_calculated, error = Extractor.calculate_task( - ExtractionTask( - tenant=tenant, - task=Extractor.SUGGESTIONS_TASK_NAME, - params=Params(id=extraction_id), - ) - ) - - suggestions: list[Suggestion] = list() - find_filter = {"id": extraction_id, "tenant": tenant} - for document in mongo_client.pdf_metadata_extraction.suggestions.find(find_filter): - suggestions.append(Suggestion(**document)) - - self.assertTrue(task_calculated) - self.assertEqual(2, len(suggestions)) - self.assertEqual({tenant}, {x.tenant for x in suggestions}) - self.assertEqual({extraction_id}, {x.id for x in suggestions}) - self.assertEqual({"spanish.xml"}, {x.xml_file_name for x in suggestions}) - self.assertEqual({"día"}, {x.text for x in suggestions}) - - shutil.rmtree(join(DATA_PATH, tenant), ignore_errors=True) - - @mongomock.patch(servers=["mongodb://127.0.0.1:29017"]) - def test_get_suggestions_no_files_error(self): - tenant = "error_segment_test" - extraction_id = "error_extraction_id" - - base_path = join(DATA_PATH, tenant, extraction_id) - - if not exists(f"{base_path}/segment_predictor_model"): - os.makedirs(f"{base_path}/segment_predictor_model") - - shutil.copy(self.model_path, f"{base_path}/segment_predictor_model/") - - task = ExtractionTask( - tenant=tenant, - task=Extractor.SUGGESTIONS_TASK_NAME, - params=Params(id=extraction_id), - ) - task_calculated, error = Extractor.calculate_task(task) - - self.assertFalse(task_calculated) - self.assertEqual(error, "No data to calculate suggestions") - - shutil.rmtree(join(DATA_PATH, tenant)) - - @mongomock.patch(servers=["mongodb://127.0.0.1:29017"]) - def test_get_suggestions_no_model_error(self): - mongo_client = pymongo.MongoClient("mongodb://127.0.0.1:29017") - - tenant = "error_segment_test" - extraction_id = "error_extraction_id" - - base_path = join(DATA_PATH, tenant, extraction_id) - - os.makedirs(f"{base_path}/xml_to_predict", exist_ok=True) - shutil.copy(self.test_xml_path, f"{base_path}/xml_to_predict/test.xml") - - to_predict_json = [ - { - "tenant": tenant, - "id": extraction_id, - "xml_file_name": "test.xml", - "entity_name": "", - "page_width": 612, - "page_height": 792, - "xml_segments_boxes": [], - } - ] - - mongo_client.pdf_metadata_extraction.prediction_data.insert_many(to_predict_json) - - task = ExtractionTask( - tenant=tenant, - task=Extractor.SUGGESTIONS_TASK_NAME, - params=Params(id=extraction_id), - ) - task_calculated, error = Extractor.calculate_task(task) - - self.assertFalse(task_calculated) - self.assertEqual("No data to calculate suggestions", error) - - shutil.rmtree(join(DATA_PATH, tenant)) - - @mongomock.patch(servers=["mongodb://127.0.0.1:29017"]) - def test_get_suggestions_blank_document(self): - mongo_client = pymongo.MongoClient("mongodb://127.0.0.1:29017") - - tenant = "segment_test" - extraction_id = "extraction_id" - - shutil.rmtree(join(DATA_PATH, tenant), ignore_errors=True) - shutil.copytree(f"{APP_PATH}/tenant_test", f"{DATA_PATH}/{tenant}") - shutil.rmtree( - f"{DATA_PATH}/{tenant}/{extraction_id}/semantic_model", - ignore_errors=True, - ) - - to_predict_json = { - "tenant": tenant, - "id": extraction_id, - "xml_file_name": "blank.xml", - "entity_name": "", - "page_width": 612, - "page_height": 792, - "xml_segments_boxes": [], - } - - mongo_client.pdf_metadata_extraction.prediction_data.insert_one(to_predict_json) - - task = ExtractionTask( - tenant=tenant, - task=Extractor.CREATE_MODEL_TASK_NAME, - params=Params(id=extraction_id), - ) - task_calculated, error = Extractor.calculate_task(task) - - self.assertFalse(task_calculated) - - self.assertIsNone(mongo_client.pdf_metadata_extraction.labeled_data.find_one({})) - self.assertFalse(exists(join(DATA_PATH, tenant, extraction_id, "xml_to_train"))) - - shutil.rmtree(join(DATA_PATH, tenant), ignore_errors=True) - - @mongomock.patch(servers=["mongodb://127.0.0.1:29017"]) - def test_get_suggestions_no_pages_document(self): - mongo_client = pymongo.MongoClient("mongodb://127.0.0.1:29017") - - tenant = "segment_test" - extraction_id = "extraction_id" - - shutil.rmtree(join(DATA_PATH, tenant), ignore_errors=True) - shutil.copytree(f"{APP_PATH}/tenant_test", f"{DATA_PATH}/{tenant}") - shutil.rmtree( - f"{DATA_PATH}/{tenant}/{extraction_id}/semantic_model", - ignore_errors=True, - ) - - to_predict_json = { - "tenant": tenant, - "id": extraction_id, - "xml_file_name": "no_pages.xml", - "entity_name": "", - "page_width": 612, - "page_height": 792, - "xml_segments_boxes": [], - } - - mongo_client.pdf_metadata_extraction.prediction_data.insert_one(to_predict_json) - - task = ExtractionTask( - tenant=tenant, - task=Extractor.CREATE_MODEL_TASK_NAME, - params=Params(id=extraction_id), - ) - task_calculated, error = Extractor.calculate_task(task) - - self.assertFalse(task_calculated) - - self.assertIsNone(mongo_client.pdf_metadata_extraction.labeled_data.find_one({})) - self.assertFalse(exists(join(DATA_PATH, tenant, extraction_id, "xml_to_train"))) - - shutil.rmtree(join(DATA_PATH, tenant), ignore_errors=True) diff --git a/src/test/test_extractor_text_to_multi_option.py b/src/test/test_extractor_text_to_multi_option.py deleted file mode 100644 index 4219481..0000000 --- a/src/test/test_extractor_text_to_multi_option.py +++ /dev/null @@ -1,78 +0,0 @@ -import json -import shutil -from os.path import join -from unittest import TestCase - -import mongomock -import pymongo - -from Extractor import Extractor -from config import DATA_PATH -from data.ExtractionTask import ExtractionTask -from data.Option import Option -from data.Params import Params -from data.Suggestion import Suggestion - - -class TestExtractorTextToMultiOption(TestCase): - @mongomock.patch(servers=["mongodb://127.0.0.1:29017"]) - def test_get_text_multi_option_suggestions(self): - mongo_client = pymongo.MongoClient("mongodb://127.0.0.1:29017") - - tenant = "tenant_to_be_removed" - extraction_id = "extraction_id" - - shutil.rmtree(join(DATA_PATH, tenant), ignore_errors=True) - - options = [Option(id="1", label="abc"), Option(id="2", label="dfg"), Option(id="3", label="hij")] - - labeled_data_json = { - "id": extraction_id, - "tenant": tenant, - "language_iso": "en", - "source_text": "abc dfg", - "values": [{"id": "1", "label": "abc"}, {"id": "2", "label": "dfg"}], - } - - mongo_client.pdf_metadata_extraction.labeled_data.insert_one(labeled_data_json) - - Extractor.calculate_task( - ExtractionTask( - tenant=tenant, - task=Extractor.CREATE_MODEL_TASK_NAME, - params=Params(id=extraction_id, options=options, multi_value=True), - ) - ) - - to_predict_json = [ - { - "tenant": tenant, - "id": extraction_id, - "entity_name": "entity_name_2", - "source_text": "foo var dfg hij foo var", - } - ] - - mongo_client.pdf_metadata_extraction.prediction_data.insert_many(to_predict_json) - - task_calculated, error = Extractor.calculate_task( - ExtractionTask( - tenant=tenant, - task=Extractor.SUGGESTIONS_TASK_NAME, - params=Params(id=extraction_id), - ) - ) - - suggestions: list[Suggestion] = list() - find_filter = {"id": extraction_id, "tenant": tenant} - for document in mongo_client.pdf_metadata_extraction.suggestions.find(find_filter): - suggestions.append(Suggestion(**document)) - - self.assertTrue(task_calculated) - self.assertEqual(1, len(suggestions)) - self.assertEqual(tenant, suggestions[0].tenant) - self.assertEqual(extraction_id, suggestions[0].id) - self.assertEqual("entity_name_2", suggestions[0].entity_name) - self.assertEqual(options[1:], suggestions[0].values) - - self.assertIsNone(mongo_client.pdf_metadata_extraction.labeled_data.find_one({})) diff --git a/src/test/test_filter_valid_segment_pages.py b/src/test/test_filter_valid_segment_pages.py deleted file mode 100644 index 505edb3..0000000 --- a/src/test/test_filter_valid_segment_pages.py +++ /dev/null @@ -1,317 +0,0 @@ -import os -import shutil -from os.path import join -from pathlib import Path - -from unittest import TestCase - -from data.ExtractionIdentifier import ExtractionIdentifier -from data.LabeledData import LabeledData -from data.PredictionData import PredictionData -from data.SegmentBox import SegmentBox -from FilterValidSegmentsPages import FilterValidSegmentsPages - -DOCKER_VOLUME_PATH = ( - f"{os.path.dirname(os.path.dirname(os.path.dirname(os.path.dirname(os.path.realpath(__file__)))))}/docker_volume" -) - - -class TestFilterValidSegmentPages(TestCase): - @staticmethod - def get_labeled_data(labels_page_numbers: list[int], number_of_pages: int = None): - if not number_of_pages: - number_of_pages = max(labels_page_numbers) - - return LabeledData( - tenant="", - id="", - xml_file_name="", - language_iso="", - label_text="", - page_width=0, - page_height=0, - xml_segments_boxes=[ - SegmentBox(left=0, top=0, width=0, page_width=0, page_height=0, height=0, page_number=i + 1) - for i in range(number_of_pages) - ], - label_segments_boxes=[ - SegmentBox(left=0, top=0, page_width=0, page_height=0, width=0, height=0, page_number=label_number) - for label_number in labels_page_numbers - ], - ) - - @staticmethod - def get_prediction_data(page_numbers: list[int]): - return PredictionData( - tenant="", - id="", - xml_file_name="", - page_width=0, - page_height=0, - xml_segments_boxes=[ - SegmentBox(left=0, top=0, width=0, page_width=0, page_height=0, height=0, page_number=page_number) - for page_number in page_numbers - ], - ) - - def test_get_valid_pages_one_document(self): - tenant = "tenant_filter" - extraction_id = "property_filter" - - shutil.rmtree(join(DOCKER_VOLUME_PATH, tenant), ignore_errors=True) - - filter_valid_segment_pages = FilterValidSegmentsPages( - ExtractionIdentifier(run_name=tenant, extraction_name=extraction_id) - ) - labeled_data = self.get_labeled_data(labels_page_numbers=[1, 3, 6]) - - pages_per_document = filter_valid_segment_pages.for_training([labeled_data]) - self.assertEqual([1, 2, 3, 4, 5, 6], pages_per_document[0]) - - def test_get_valid_pages_no_label(self): - tenant = "tenant_filter" - extraction_id = "property_filter" - - shutil.rmtree(join(DOCKER_VOLUME_PATH, tenant), ignore_errors=True) - - filter_valid_segment_pages = FilterValidSegmentsPages( - ExtractionIdentifier(run_name=tenant, extraction_name=extraction_id) - ) - labeled_data_1 = self.get_labeled_data(labels_page_numbers=[1], number_of_pages=10) - labeled_data_2 = self.get_labeled_data(labels_page_numbers=[], number_of_pages=10) - - pages_per_document = filter_valid_segment_pages.for_training([labeled_data_1, labeled_data_2]) - self.assertEqual([1, 2], pages_per_document[1]) - - def test_get_valid_pages_two_documents(self): - tenant = "tenant_filter" - extraction_id = "property_filter" - - shutil.rmtree(join(DOCKER_VOLUME_PATH, tenant), ignore_errors=True) - - filter_valid_segment_pages = FilterValidSegmentsPages( - ExtractionIdentifier(run_name=tenant, extraction_name=extraction_id) - ) - labeled_data_1 = self.get_labeled_data(labels_page_numbers=[1, 3, 6]) - labeled_data_2 = self.get_labeled_data(labels_page_numbers=[2, 4]) - - pages_per_document = filter_valid_segment_pages.for_training([labeled_data_1, labeled_data_2]) - self.assertEqual([1, 2, 3, 4, 5, 6], pages_per_document[0]) - self.assertEqual([1, 2, 3, 4], pages_per_document[1]) - - def test_get_valid_pages_only_first_page(self): - tenant = "tenant_filter" - extraction_id = "property_filter" - - shutil.rmtree(join(DOCKER_VOLUME_PATH, tenant), ignore_errors=True) - - filter_valid_segment_pages = FilterValidSegmentsPages( - ExtractionIdentifier(run_name=tenant, extraction_name=extraction_id) - ) - labeled_data_1 = self.get_labeled_data(labels_page_numbers=[1]) - labeled_data_2 = self.get_labeled_data(labels_page_numbers=[1]) - - pages_per_document = filter_valid_segment_pages.for_training([labeled_data_1, labeled_data_2]) - self.assertEqual([1], pages_per_document[0]) - self.assertEqual([1], pages_per_document[1]) - - def test_get_valid_pages_two_documents_more_variability(self): - tenant = "tenant_filter" - extraction_id = "property_filter" - - shutil.rmtree(join(DOCKER_VOLUME_PATH, tenant), ignore_errors=True) - - filter_valid_segment_pages = FilterValidSegmentsPages( - ExtractionIdentifier(run_name=tenant, extraction_name=extraction_id) - ) - labeled_data_1 = self.get_labeled_data(labels_page_numbers=[2], number_of_pages=18) - labeled_data_2 = self.get_labeled_data(labels_page_numbers=[6], number_of_pages=18) - - pages_per_document = filter_valid_segment_pages.for_training([labeled_data_1, labeled_data_2]) - self.assertEqual([1, 2, 3, 4, 5, 6, 7], pages_per_document[0]) - self.assertEqual([1, 2, 3, 4, 5, 6, 7], pages_per_document[1]) - - def test_get_valid_pages_from_the_end(self): - tenant = "tenant_filter" - extraction_id = "property_filter" - - shutil.rmtree(join(DOCKER_VOLUME_PATH, tenant), ignore_errors=True) - - filter_valid_segment_pages = FilterValidSegmentsPages( - ExtractionIdentifier(run_name=tenant, extraction_name=extraction_id) - ) - labeled_data_1 = self.get_labeled_data(labels_page_numbers=[4, 5]) - labeled_data_2 = self.get_labeled_data(labels_page_numbers=[10, 11, 12]) - - pages_per_document = filter_valid_segment_pages.for_training([labeled_data_1, labeled_data_2]) - self.assertEqual([2, 3, 4, 5], pages_per_document[0]) - self.assertEqual([9, 10, 11, 12], pages_per_document[1]) - - def test_get_valid_pages_from_the_end_different_page_numbers(self): - tenant = "tenant_filter" - extraction_id = "property_filter" - - shutil.rmtree(join(DOCKER_VOLUME_PATH, tenant), ignore_errors=True) - - filter_valid_segment_pages = FilterValidSegmentsPages( - ExtractionIdentifier(run_name=tenant, extraction_name=extraction_id) - ) - labeled_data_1 = self.get_labeled_data(labels_page_numbers=[10, 11, 12, 13]) - labeled_data_2 = self.get_labeled_data(labels_page_numbers=[2]) - - pages_per_document = filter_valid_segment_pages.for_training([labeled_data_1, labeled_data_2]) - self.assertEqual([9, 10, 11, 12, 13], pages_per_document[0]) - self.assertEqual([1, 2], pages_per_document[1]) - - def test_get_valid_pages_two_documents_from_the_end_more_variability(self): - tenant = "tenant_filter" - extraction_id = "property_filter" - - shutil.rmtree(join(DOCKER_VOLUME_PATH, tenant), ignore_errors=True) - - filter_valid_segment_pages = FilterValidSegmentsPages( - ExtractionIdentifier(run_name=tenant, extraction_name=extraction_id) - ) - labeled_data_1 = self.get_labeled_data(labels_page_numbers=[3], number_of_pages=4) - labeled_data_2 = self.get_labeled_data(labels_page_numbers=[6], number_of_pages=6) - - pages_per_document = filter_valid_segment_pages.for_training([labeled_data_1, labeled_data_2]) - self.assertEqual([2, 3, 4], pages_per_document[0]) - self.assertEqual([4, 5, 6], pages_per_document[1]) - - def test_get_valid_pages_for_prediction(self): - tenant = "tenant_filter" - extraction_id = "property_filter" - - shutil.rmtree(join(DOCKER_VOLUME_PATH, tenant), ignore_errors=True) - - filter_valid_segment_pages = FilterValidSegmentsPages( - ExtractionIdentifier(run_name=tenant, extraction_name=extraction_id) - ) - labeled_data = self.get_labeled_data(labels_page_numbers=[1, 2, 3]) - prediction_data = self.get_prediction_data(page_numbers=[2]) - - filter_valid_segment_pages.for_training([labeled_data]) - pages_per_document = filter_valid_segment_pages.for_prediction([prediction_data]) - self.assertEqual(1, len(pages_per_document)) - self.assertEqual([1, 2], pages_per_document[0]) - - def test_get_valid_pages_for_prediction_from_the_end(self): - tenant = "tenant_filter" - extraction_id = "property_filter" - - shutil.rmtree(join(DOCKER_VOLUME_PATH, tenant), ignore_errors=True) - - filter_valid_segment_pages = FilterValidSegmentsPages( - ExtractionIdentifier(run_name=tenant, extraction_name=extraction_id) - ) - labeled_data = self.get_labeled_data(labels_page_numbers=[10, 11, 12, 13]) - prediction_data = self.get_prediction_data(page_numbers=[2]) - - filter_valid_segment_pages.for_training([labeled_data]) - pages_per_document = filter_valid_segment_pages.for_prediction([prediction_data]) - self.assertEqual(1, len(pages_per_document)) - self.assertEqual([1, 2], pages_per_document[0]) - - def test_get_valid_pages_for_prediction_void(self): - tenant = "tenant_filter" - extraction_id = "property_filter" - - shutil.rmtree(join(DOCKER_VOLUME_PATH, tenant), ignore_errors=True) - - filter_valid_segment_pages = FilterValidSegmentsPages( - ExtractionIdentifier(run_name=tenant, extraction_name=extraction_id) - ) - filter_valid_segment_pages.for_training([]) - filter_valid_segment_pages.for_prediction([]) - - prediction_data = self.get_prediction_data(page_numbers=[2]) - pages_per_document = filter_valid_segment_pages.for_prediction([prediction_data]) - self.assertEqual(1, len(pages_per_document)) - self.assertEqual([1, 2], pages_per_document[0]) - - def test_get_valid_pages_for_prediction_empty(self): - tenant = "tenant_filter" - extraction_id = "property_filter" - - shutil.rmtree(join(DOCKER_VOLUME_PATH, tenant), ignore_errors=True) - - filter_valid_segment_pages = FilterValidSegmentsPages( - ExtractionIdentifier(run_name=tenant, extraction_name=extraction_id) - ) - labeled_data_json_path = Path(filter_valid_segment_pages.labeled_data_json_path) - os.makedirs(labeled_data_json_path.parent, exist_ok=True) - labeled_data_json_path.write_text("") - - prediction_data = self.get_prediction_data(page_numbers=[2]) - pages_per_document = filter_valid_segment_pages.for_prediction([prediction_data]) - self.assertEqual(1, len(pages_per_document)) - self.assertEqual([1, 2], pages_per_document[0]) - - def test_get_valid_pages_only_prediction(self): - tenant = "tenant_filter" - extraction_id = "property_filter" - - shutil.rmtree(join(DOCKER_VOLUME_PATH, tenant), ignore_errors=True) - - filter_valid_segment_pages = FilterValidSegmentsPages( - ExtractionIdentifier(run_name=tenant, extraction_name=extraction_id) - ) - prediction_data = self.get_prediction_data(page_numbers=[2]) - pages_per_document = filter_valid_segment_pages.for_prediction([prediction_data]) - self.assertEqual(1, len(pages_per_document)) - self.assertEqual([1, 2], pages_per_document[0]) - - def test_get_valid_pages_prediction_first_page(self): - tenant = "tenant_filter" - extraction_id = "property_filter" - - shutil.rmtree(join(DOCKER_VOLUME_PATH, tenant), ignore_errors=True) - - filter_valid_segment_pages = FilterValidSegmentsPages( - ExtractionIdentifier(run_name=tenant, extraction_name=extraction_id) - ) - labeled_data = self.get_labeled_data(labels_page_numbers=[1]) - filter_valid_segment_pages.for_training([labeled_data]) - prediction_data_1 = self.get_prediction_data(page_numbers=[20]) - pages_per_document = filter_valid_segment_pages.for_prediction([prediction_data_1]) - self.assertEqual(1, len(pages_per_document)) - self.assertEqual([1, 2], pages_per_document[0]) - - def test_get_first_four_and_last_four_when_no_labels(self): - tenant = "tenant_filter" - extraction_id = "property_filter" - - shutil.rmtree(join(DOCKER_VOLUME_PATH, tenant), ignore_errors=True) - - filter_valid_segment_pages = FilterValidSegmentsPages( - ExtractionIdentifier(run_name=tenant, extraction_name=extraction_id) - ) - - labeled_data_1 = self.get_labeled_data(labels_page_numbers=[], number_of_pages=3) - labeled_data_2 = self.get_labeled_data(labels_page_numbers=[], number_of_pages=8) - labeled_data_3 = self.get_labeled_data(labels_page_numbers=[], number_of_pages=9) - labeled_data_4 = self.get_labeled_data(labels_page_numbers=[], number_of_pages=50) - - training_data = [labeled_data_1, labeled_data_2, labeled_data_3, labeled_data_4] - training_pages_per_document = filter_valid_segment_pages.for_training(training_data) - - prediction_data_1 = self.get_prediction_data(page_numbers=list(range(1, 4))) - prediction_data_2 = self.get_prediction_data(page_numbers=list(range(1, 9))) - prediction_data_3 = self.get_prediction_data(page_numbers=list(range(1, 10))) - prediction_data_4 = self.get_prediction_data(page_numbers=list(range(1, 51))) - prediction_data = [prediction_data_1, prediction_data_2, prediction_data_3, prediction_data_4] - - prediction_pages_per_document = filter_valid_segment_pages.for_prediction(prediction_data) - - self.assertEqual([1, 2, 3], training_pages_per_document[0]) - self.assertEqual([1, 2, 3], prediction_pages_per_document[0]) - - self.assertEqual([1, 2, 3, 4, 5, 6, 7, 8], training_pages_per_document[1]) - self.assertEqual([1, 2, 3, 4, 5, 6, 7, 8], prediction_pages_per_document[1]) - - self.assertEqual([1, 2, 3, 4, 6, 7, 8, 9], training_pages_per_document[2]) - self.assertEqual([1, 2, 3, 4, 6, 7, 8, 9], prediction_pages_per_document[2]) - - self.assertEqual([1, 2, 3, 4, 47, 48, 49, 50], training_pages_per_document[3]) - self.assertEqual([1, 2, 3, 4, 47, 48, 49, 50], prediction_pages_per_document[3]) diff --git a/src/test/test_filter_xml_pages.py b/src/test/test_filter_xml_pages.py deleted file mode 100644 index 3879d4d..0000000 --- a/src/test/test_filter_xml_pages.py +++ /dev/null @@ -1,227 +0,0 @@ -from unittest import TestCase - -from FilterValidSegmentsPages import FilterValidSegmentsPages - - -class TestFilterXmlPages(TestCase): - def test_filter_xml_pages(self): - xml_text = """ - - - - - - - - United Nations - A - - - - A/INF/76/1 - - - - - - - Page 3 - - - """ - - xml_expect = """ - - - - - - - - - - - A/INF/76/1 - - - - - - - - - """ - - result = FilterValidSegmentsPages.filter_xml_pages(xml_text, [2]).split() - self.assertEqual(xml_expect.split(), result) - - def test_filter_xml_pages_one_line(self): - xml_text = """ - - - - United Nations - A - - - A/INF/76/1 - - - - - Page 3 - - - """ - - xml_expect = """ - - - - - - A/INF/76/1 - - - - - - - """ - - self.assertEqual(xml_expect.split(), FilterValidSegmentsPages.filter_xml_pages(xml_text, [2]).split()) - - def test_filter_xml_pages_two_pages(self): - xml_text = """ - - - United Nations - A - - - A/INF/76/1 - - - - - Page 3 - - - """ - - xml_expect = """ - - - United Nations - A - - - A/INF/76/1 - - - - - - - """ - - self.assertEqual(xml_expect.split(), FilterValidSegmentsPages.filter_xml_pages(xml_text, [1, 2]).split()) - - def test_filter_xml_pages_last_page(self): - xml_text = """ - - - United Nations - A - - - A/INF/76/1 - - - - - Page 3 - - - """ - - xml_expect = """ - - - - - - - Page 3 - - - """ - - self.assertEqual(xml_expect.split(), FilterValidSegmentsPages.filter_xml_pages(xml_text, [3]).split()) - - def test_filter_xml_pages_id_with_zeros(self): - xml_text = """ - - - United Nations - A - - - A/INF/76/1 - - - - - """ - - xml_expect = """ - - - - - A/INF/76/1 - - - - - """ - - self.assertEqual(xml_expect.split(), FilterValidSegmentsPages.filter_xml_pages(xml_text, [2]).split()) - - def test_filter_xml_should_do_nothing_when_not_matching_tags(self): - xml_text_more_opening_ones = """ - - - - - """ - - xml_text_more_opening_ones_2 = """ - - - - - - """ - - xml_text_more_closing = """ - - - - - - """ - - self.assertEqual( - xml_text_more_opening_ones.split(), - FilterValidSegmentsPages.filter_xml_pages(xml_text_more_opening_ones, [2]).split(), - ) - - self.assertEqual( - xml_text_more_opening_ones_2.split(), - FilterValidSegmentsPages.filter_xml_pages(xml_text_more_opening_ones_2, [2]).split(), - ) - - self.assertEqual( - xml_text_more_closing.split(), FilterValidSegmentsPages.filter_xml_pages(xml_text_more_closing, [2]).split() - ) diff --git a/src/test/test_pdf_segments.py b/src/test/test_pdf_segments.py deleted file mode 100644 index 6de463f..0000000 --- a/src/test/test_pdf_segments.py +++ /dev/null @@ -1,235 +0,0 @@ -import shutil -from os.path import join -from unittest import TestCase - -from config import DATA_PATH, APP_PATH -from data.ExtractionIdentifier import ExtractionIdentifier -from data.SegmentBox import SegmentBox -from data.SegmentationData import SegmentationData -from data.PdfData import PdfData -from XmlFile import XmlFile -from pdf_token_type_labels.TokenType import TokenType - - -class TestPdfSegments(TestCase): - test_file_path = f"{APP_PATH}/tenant_test/extraction_id/xml_to_train/test.xml" - no_pages_file_path = f"{APP_PATH}/tenant_test/extraction_id/xml_to_train/no_pages.xml" - - def test_get_pdf_features(self): - tenant = "tenant_save" - extraction_id = "property_save" - - shutil.rmtree(join(DATA_PATH, tenant), ignore_errors=True) - - segmentation_data = SegmentationData( - page_width=612, - page_height=792, - xml_segments_boxes=[ - SegmentBox( - left=495.1, - top=42.6323, - width=56.96199999999999, - page_width=612, - page_height=792, - height=18.2164, - page_number=1, - type=TokenType.TEXT, - ), - SegmentBox( - left=123.38, - top=48.1103, - page_width=612, - page_height=792, - width=82.9812, - height=12.7624, - page_number=1, - type=TokenType.TEXT, - ), - SegmentBox( - left=123.38, - top=72.8529, - width=148.656, - height=17.895700000000005, - page_width=612, - page_height=792, - page_number=1, - type=TokenType.TEXT, - ), - SegmentBox( - left=123.38, - top=245.184, - width=317.406, - height=27.5377, - page_width=612, - page_height=792, - page_number=1, - type=TokenType.TEXT, - ), - ], - label_segments_boxes=[ - SegmentBox( - left=125, - top=247, - width=319, - height=29, - page_width=612, - page_height=792, - page_number=1, - type=TokenType.TEXT, - ) - ], - ) - - with open(self.test_file_path, "rb") as file: - xml_file = XmlFile( - extraction_identifier=ExtractionIdentifier(run_name=tenant, extraction_name=extraction_id), - to_train=True, - xml_file_name="test.xml", - ) - - xml_file.save(file=file.read()) - - pdf_segments = PdfData.from_xml_file(xml_file, segmentation_data, []) - - self.assertEqual(612, pdf_segments.pdf_features.pages[0].page_width) - self.assertEqual(792, pdf_segments.pdf_features.pages[0].page_height) - self.assertEqual(1, len([segment for segment in pdf_segments.pdf_data_segments if segment.ml_label == 1])) - self.assertEqual("A /INF/76/1", pdf_segments.pdf_data_segments[0].text_content) - self.assertEqual("United Nations", pdf_segments.pdf_data_segments[1].text_content) - self.assertEqual("General Assembly", pdf_segments.pdf_data_segments[2].text_content) - self.assertEqual( - "Opening dates of forthcoming regular sessions of the General Assembly and of the general debate", - [segment for segment in pdf_segments.pdf_data_segments if segment.ml_label == 1][0].text_content, - ) - - shutil.rmtree(join(DATA_PATH, tenant), ignore_errors=True) - - def test_get_pdf_features_when_no_pages(self): - tenant = "tenant_save" - extraction_id = "property_save" - - shutil.rmtree(join(DATA_PATH, tenant), ignore_errors=True) - segmentation_data = SegmentationData( - page_width=1, # 612 - page_height=2, # 396 - xml_segments_boxes=[], - label_segments_boxes=[], - ) - - with open(self.no_pages_file_path, "rb") as file: - xml_file = XmlFile( - extraction_identifier=ExtractionIdentifier(run_name=tenant, extraction_name=extraction_id), - to_train=True, - xml_file_name="no_pages.xml", - ) - - xml_file.save(file=file.read()) - - pdf_features = PdfData.from_xml_file(xml_file, segmentation_data, []) - - self.assertEqual(0, len(pdf_features.pdf_data_segments)) - - shutil.rmtree(join(DATA_PATH, tenant), ignore_errors=True) - - def test_get_pdf_features_when_no_file(self): - tenant = "tenant_save" - extraction_id = "property_save" - - shutil.rmtree(join(DATA_PATH, tenant), ignore_errors=True) - segmentation_data = SegmentationData( - page_width=1, # 612 - page_height=2, # 396 - xml_segments_boxes=[], - label_segments_boxes=[], - ) - - xml_file = XmlFile( - extraction_identifier=ExtractionIdentifier(run_name=tenant, extraction_name=extraction_id), - to_train=True, - xml_file_name="test.xml", - ) - - pdf_segments = PdfData.from_xml_file(xml_file, segmentation_data, []) - - self.assertEqual(0, len(pdf_segments.pdf_data_segments)) - - shutil.rmtree(join(DATA_PATH, tenant), ignore_errors=True) - - def test_get_pdf_features_should_be_empty_when_no_file_because_different_extraction_id( - self, - ): - tenant = "tenant_save" - extraction_id = "property_save" - - shutil.rmtree(join(DATA_PATH, tenant), ignore_errors=True) - - segmentation_data = SegmentationData( - page_width=1, # 612 - page_height=2, # 396 - xml_segments_boxes=[ - SegmentBox(left=0, top=0.3282828, width=1, height=0.1767676, page_width=612, page_height=792, page_number=2), - ], - label_segments_boxes=[ - SegmentBox( - left=0.49019, - top=0.37878, - width=0.008169, - height=0.0126, - page_width=612, - page_height=792, - page_number=2, - ) - ], - ) - with open(self.test_file_path, "rb") as file: - XmlFile( - extraction_identifier=ExtractionIdentifier(run_name=tenant, extraction_name="different_extraction_id"), - to_train=False, - xml_file_name="test.xml", - ).save(file=file.read()) - - xml_file = XmlFile( - extraction_identifier=ExtractionIdentifier(run_name=tenant, extraction_name=extraction_id), - to_train=False, - xml_file_name="test.xml", - ) - - pdf_features = PdfData.from_xml_file(xml_file, segmentation_data, []) - - self.assertEqual(0, len(pdf_features.pdf_data_segments)) - - shutil.rmtree(join(DATA_PATH, tenant), ignore_errors=True) - - def test_filter_valid_segment_pages(self): - tenant = "tenant_save" - extraction_id = "property_save" - - shutil.rmtree(join(DATA_PATH, tenant), ignore_errors=True) - - segmentation_data = SegmentationData( - page_width=612, - page_height=792, - xml_segments_boxes=[ - SegmentBox( - left=1, top=1, width=56.96199999999999, height=18.2164, page_width=612, page_height=792, page_number=1 - ) - ], - label_segments_boxes=[ - SegmentBox(left=125, top=247, width=319, height=29, page_width=612, page_height=792, page_number=1) - ], - ) - - with open(self.test_file_path, "rb") as file: - xml_file = XmlFile( - extraction_identifier=ExtractionIdentifier(run_name=tenant, extraction_name=extraction_id), - to_train=True, - xml_file_name="test.xml", - ) - - xml_file.save(file=file.read()) - - pdf_segments = PdfData.from_xml_file(xml_file, segmentation_data, [1]) - - self.assertEqual(0, len([segment for segment in pdf_segments.pdf_data_segments if segment.page_number > 1])) - - shutil.rmtree(join(DATA_PATH, tenant), ignore_errors=True) diff --git a/src/test/test_remove_models.py b/src/test/test_remove_models.py deleted file mode 100644 index b29683e..0000000 --- a/src/test/test_remove_models.py +++ /dev/null @@ -1,76 +0,0 @@ -import os -import shutil -from os.path import exists, join -from time import time - -from unittest import TestCase - -import mongomock - -from config import DATA_PATH, APP_PATH -from data.ExtractionTask import ExtractionTask -from data.Params import Params -from Extractor import Extractor - - -class TestRemoveModels(TestCase): - test_xml_path = f"{APP_PATH}/tenant_test/extraction_id/xml_to_train/test.xml" - model_path = f"{APP_PATH}/tenant_test/extraction_id/segment_predictor_model/model.model" - - @mongomock.patch(servers=["mongodb://127.0.0.1:29017"]) - def test_remove_models(self): - extraction_id = "extraction_id" - two_days_ago = (time() - (2 * 24 * 3600) - 1, time() - (2 * 24 * 3600) - 1) - - tenant_extractor_to_remove = "to_remove" - - os.makedirs(join(DATA_PATH, "cache", "folder_to_keep"), exist_ok=True) - os.utime(join(DATA_PATH, "cache", "folder_to_keep"), two_days_ago) - - shutil.rmtree(join(DATA_PATH, tenant_extractor_to_remove), ignore_errors=True) - shutil.copytree(join(APP_PATH, "tenant_test"), join(DATA_PATH, tenant_extractor_to_remove)) - os.utime(join(DATA_PATH, tenant_extractor_to_remove, extraction_id), two_days_ago) - - tenant_extractor_to_keep = "to_keep" - - shutil.rmtree(join(DATA_PATH, tenant_extractor_to_keep), ignore_errors=True) - shutil.copytree(join(APP_PATH, "tenant_test"), join(DATA_PATH, tenant_extractor_to_keep)) - os.utime(join(DATA_PATH, tenant_extractor_to_keep, extraction_id), two_days_ago) - - task = ExtractionTask( - tenant=tenant_extractor_to_keep, - task=Extractor.SUGGESTIONS_TASK_NAME, - params=Params(id=extraction_id), - ) - - task_calculated, error = Extractor.calculate_task(task) - - self.assertFalse(task_calculated) - self.assertTrue(exists(join(DATA_PATH, "cache", "folder_to_keep"))) - self.assertTrue(exists(join(DATA_PATH, tenant_extractor_to_keep, extraction_id))) - self.assertTrue(exists(join(DATA_PATH, tenant_extractor_to_remove))) - self.assertFalse(exists(join(DATA_PATH, tenant_extractor_to_remove, extraction_id))) - - shutil.rmtree(join(DATA_PATH, tenant_extractor_to_remove), ignore_errors=True) - shutil.rmtree(join(DATA_PATH, tenant_extractor_to_keep), ignore_errors=True) - - @mongomock.patch(servers=["mongodb://127.0.0.1:29017"]) - def test_do_nothing_set_time_not_existent_extractor(self): - extraction_id = "not_existent_extractor" - - tenant_extractor_to_keep = "to_keep" - - shutil.rmtree(join(DATA_PATH, tenant_extractor_to_keep), ignore_errors=True) - shutil.copytree(join(APP_PATH, "tenant_test"), join(DATA_PATH, tenant_extractor_to_keep)) - - task = ExtractionTask( - tenant=tenant_extractor_to_keep, - task=Extractor.SUGGESTIONS_TASK_NAME, - params=Params(id=extraction_id), - ) - - task_calculated, error = Extractor.calculate_task(task) - - self.assertFalse(task_calculated) - - shutil.rmtree(join(DATA_PATH, tenant_extractor_to_keep), ignore_errors=True) diff --git a/src/test/test_xml_file.py b/src/test/test_xml_file.py deleted file mode 100644 index 6f7bdc7..0000000 --- a/src/test/test_xml_file.py +++ /dev/null @@ -1,52 +0,0 @@ -import os -import shutil -from os.path import join -from unittest import TestCase - -from config import APP_PATH, DATA_PATH -from data.ExtractionIdentifier import ExtractionIdentifier -from XmlFile import XmlFile - - -class TestXmlFile(TestCase): - test_file_path = f"{APP_PATH}/tenant_test/extraction_id/xml_to_train/test.xml" - - def test_save_xml_to_train(self): - tenant = "tenant_save" - extraction_id = "property_save" - - base_path = f"{DATA_PATH}/{tenant}/{extraction_id}" - - shutil.rmtree(join(DATA_PATH, tenant), ignore_errors=True) - with open(self.test_file_path, "rb") as file: - xml_file = XmlFile( - extraction_identifier=ExtractionIdentifier(run_name=tenant, extraction_name=extraction_id), - to_train=True, - xml_file_name="test.xml", - ) - - xml_file.save(file=file.read()) - - self.assertTrue(os.path.exists(f"{base_path}/xml_to_train/test.xml")) - - shutil.rmtree(join(DATA_PATH, tenant), ignore_errors=True) - - def test_save_xml_to_predict(self): - tenant = "tenant_save" - extraction_id = "property_save" - - base_path = f"{DATA_PATH}/{tenant}/{extraction_id}" - - shutil.rmtree(join(DATA_PATH, tenant), ignore_errors=True) - with open(self.test_file_path, "rb") as file: - xml_file = XmlFile( - extraction_identifier=ExtractionIdentifier(run_name=tenant, extraction_name=extraction_id), - to_train=False, - xml_file_name="test.xml", - ) - - xml_file.save(file=file.read()) - - self.assertTrue(os.path.exists(f"{base_path}/xml_to_predict/test.xml")) - - shutil.rmtree(join(DATA_PATH, tenant), ignore_errors=True) diff --git a/src/test_app.py b/src/test_app.py index 670b389..4a5551c 100644 --- a/src/test_app.py +++ b/src/test_app.py @@ -7,9 +7,11 @@ import pymongo from fastapi.testclient import TestClient from unittest import TestCase + +from trainable_entity_extractor.data.Suggestion import Suggestion + from app import app from config import DATA_PATH, APP_PATH, MONGO_HOST, MONGO_PORT -from data.Suggestion import Suggestion class TestApp(TestCase): diff --git a/src/test_end_to_end.py b/src/test_end_to_end.py index a0ab2fb..a96cfd5 100644 --- a/src/test_end_to_end.py +++ b/src/test_end_to_end.py @@ -1,4 +1,6 @@ import json +import os +import shutil import time from unittest import TestCase @@ -6,14 +8,14 @@ from rsmq import RedisSMQ import requests +from trainable_entity_extractor.data.Option import Option +from trainable_entity_extractor.data.SegmentBox import SegmentBox +from trainable_entity_extractor.data.Suggestion import Suggestion -from config import APP_PATH +from config import APP_PATH, DATA_PATH from data.ExtractionTask import ExtractionTask -from data.Option import Option from data.Params import Params from data.ResultsMessage import ResultsMessage -from data.SegmentBox import SegmentBox -from data.Suggestion import Suggestion ROOT_PATH = "./" @@ -31,6 +33,11 @@ class TestEndToEnd(TestCase): + def tearDown(self): + requests.delete(f"{SERVER_URL}/end_to_end_test/extraction_id") + requests.delete(f"{SERVER_URL}/end_to_end_test/pdf_to_multi_option") + requests.delete(f"{SERVER_URL}/end_to_end_test/text_to_multi_option") + def test_redis_message_to_ignore(self): QUEUE.sendMessage().message('{"message_to_ignore":"to_be_written_in_log_file"}').execute() @@ -176,12 +183,29 @@ def test_create_model_without_data(self): def test_pdf_to_multi_option(self): tenant = "end_to_end_test" extraction_id = "pdf_to_multi_option" - test_xml_path = f"{APP_PATH}/tenant_test/extraction_id/xml_to_train/test.xml" - with open(test_xml_path, mode="rb") as stream: - files = {"file": stream} - requests.post(f"{SERVER_URL}/xml_to_train/{tenant}/{extraction_id}", files=files) + for i in range(10): + new_test_xml_path = f"{DATA_PATH}/test_{i}.xml" + shutil.copyfile(test_xml_path, new_test_xml_path) + + with open(new_test_xml_path, mode="rb") as stream: + files = {"file": stream} + requests.post(f"{SERVER_URL}/xml_to_train/{tenant}/{extraction_id}", files=files) + + os.remove(new_test_xml_path) + + labeled_data_json = { + "id": extraction_id, + "tenant": tenant, + "xml_file_name": f"test_{i}.xml", + "language_iso": "en", + "values": [{"id": "1", "label": "United Nations"}], + "page_width": 612, + "page_height": 792, + "xml_segments_boxes": [], + } + requests.post(f"{SERVER_URL}/labeled_data", json=labeled_data_json) options = { "tenant": tenant, @@ -189,18 +213,6 @@ def test_pdf_to_multi_option(self): "options": [Option(id="1", label="United Nations").model_dump(), Option(id="2", label="Other").model_dump()], } - labeled_data_json = { - "id": extraction_id, - "tenant": tenant, - "xml_file_name": "test.xml", - "language_iso": "en", - "values": [{"id": "1", "label": "United Nations"}], - "page_width": 612, - "page_height": 792, - "xml_segments_boxes": [], - } - - requests.post(f"{SERVER_URL}/labeled_data", json=labeled_data_json) requests.post(f"{SERVER_URL}/options", json=options) with open(test_xml_path, mode="rb") as stream: @@ -267,7 +279,7 @@ def test_pdf_to_multi_option(self): def test_text_to_multi_option(self): tenant = "end_to_end_test" - extraction_id = "multi_select_name" + extraction_id = "text_to_multi_option" options = [Option(id="1", label="1"), Option(id="2", label="2"), Option(id="3", label="3")] diff --git a/src/text_to_multi_option_benchmark.py b/src/text_to_multi_option_benchmark.py deleted file mode 100644 index 8c2fc21..0000000 --- a/src/text_to_multi_option_benchmark.py +++ /dev/null @@ -1,122 +0,0 @@ -import json -from os import listdir -from os.path import join -from pathlib import Path -from time import time - -import rich -from sklearn.metrics import f1_score - -from data.ExtractionData import ExtractionData -from data.ExtractionIdentifier import ExtractionIdentifier -from data.LabeledData import LabeledData -from data.Option import Option -from data.PredictionSample import PredictionSample -from data.TrainingSample import TrainingSample -from extractors.ExtractorBase import ExtractorBase -from extractors.pdf_to_multi_option_extractor.PdfMultiOptionMethod import PdfMultiOptionMethod -from extractors.pdf_to_multi_option_extractor.results import get_results_table -from extractors.text_to_multi_option_extractor.TextToMultiOptionExtractor import TextToMultiOptionExtractor - -LABELED_DATA_PATH = join(Path(__file__).parent, "extractors", "text_to_multi_option_extractor", "labeled_data") - - -def get_extraction_data(filter_by: list[str] = None): - extractions_data = list() - for task_name in listdir(str(LABELED_DATA_PATH)): - if filter_by and task_name not in filter_by: - continue - - extraction_identifier = ExtractionIdentifier(run_name="text_benchmark", extraction_name=task_name) - texts_values = json.loads(Path(LABELED_DATA_PATH, task_name, "labels.json").read_text()) - options_text = Path(LABELED_DATA_PATH, task_name, "options.json").read_text() - options = [Option(id=x, label=x) for x in json.loads(options_text)] - - samples: list[TrainingSample] = list() - for i, text_value in enumerate(texts_values): - values = [Option(id=x, label=x) for x in text_value["values"]] - language_iso = "es" if "cejil" in task_name else "en" - labeled_data = LabeledData(values=values, entity_name=str(i), language_iso=language_iso) - extraction_sample = TrainingSample(tags_texts=[text_value["text"]], labeled_data=labeled_data) - samples.append(extraction_sample) - - multi_value: bool = len([sample for sample in samples if len(sample.labeled_data.values) > 1]) > 0 - - extractions_data.append( - ExtractionData( - options=options, samples=samples, multi_value=multi_value, extraction_identifier=extraction_identifier - ) - ) - - return extractions_data - - -def get_benchmark(): - results_table = get_results_table() - - # cejil_countries - # cejil_judge - # cejil_president - # cejil_secretary - # cyrilla_keywords - # d4la_document_type - # cejil_mechanism - # cejil_descriptors - # rightdocs_vote_type - # action - # themes - # issues - extractions_data: list[ExtractionData] = get_extraction_data(filter_by=["issues"]) - for extraction_data in extractions_data: - start = time() - extractor = TextToMultiOptionExtractor(extraction_identifier=extraction_data.extraction_identifier) - train_set, test_set = ExtractorBase.get_train_test_sets(extraction_data, limit_samples=False) - values_list = [x.labeled_data.values for x in test_set.samples] - truth_one_hot = PdfMultiOptionMethod.one_hot_to_options_list(values_list, extraction_data.options) - extractor.create_model(train_set) - - tags_texts = [x.tags_texts for x in test_set.samples] - test_data = [PredictionSample(tags_texts=tag_text, entity_name=str(i)) for i, tag_text in enumerate(tags_texts)] - suggestions = extractor.get_suggestions(test_data) - values_list = [x.values for x in suggestions] - predictions_one_hot = PdfMultiOptionMethod.one_hot_to_options_list(values_list, extraction_data.options) - - performance = 100 * f1_score(truth_one_hot, predictions_one_hot, average="micro") - - results_table.add_row( - "Extractor", - extraction_data.extraction_identifier.extraction_name, - f"{round((time() - start) / 60, 1)}", - f"{round(performance, 2)}%", - ) - rich.print(results_table) - - -def check_results(): - # cejil_countries - # cejil_judge - # cejil_president - # cejil_secretary - # cyrilla_keywords - # d4la_document_type - # cejil_mechanism - # cejil_descriptors - # rightdocs_vote_type - extractions_data: list[ExtractionData] = get_extraction_data(filter_by=[""]) - for extraction_data in extractions_data: - extractor = TextToMultiOptionExtractor(extraction_identifier=extraction_data.extraction_identifier) - train_set, test_set = ExtractorBase.get_train_test_sets(extraction_data, limit_samples=False) - test_data = [ - PredictionSample(tags_texts=x.tags_texts, entity_name=x.labeled_data.entity_name) for x in test_set.samples - ] - suggestions = extractor.get_suggestions(test_data) - for suggestion, sample in zip(suggestions, test_set.samples): - print() - print(" ".join([x for x in sample.tags_texts]).replace("\n", " ")) - print([x.label for x in sample.labeled_data.values]) - print([x.label for x in suggestion.values]) - - -if __name__ == "__main__": - get_benchmark() - # check_results()